From 46169fd838c08651f6efe0a5f3f5fceff334d29b Mon Sep 17 00:00:00 2001 From: Nour Cheour <161816839+Nour-Cheour10@users.noreply.github.com> Date: Fri, 31 May 2024 15:31:58 +0200 Subject: [PATCH 1/5] Take off console logs --- src/geojson.ts | 113 +++++++++++++++++++++++++++++++++++++++++++++++++ src/layer.ts | 42 ++++++++++++++++++ 2 files changed, 155 insertions(+) create mode 100644 src/geojson.ts create mode 100644 src/layer.ts diff --git a/src/geojson.ts b/src/geojson.ts new file mode 100644 index 0000000..c4db11b --- /dev/null +++ b/src/geojson.ts @@ -0,0 +1,113 @@ +import { StyleFunction } from 'ol/style/Style'; +import { DOMWidgetModel, ISerializers } from '@jupyter-widgets/base'; +import 'ol/ol.css'; +import { MODULE_NAME, MODULE_VERSION } from './version'; +import '../css/widget.css'; +import GeoJSON from 'ol/format/GeoJSON.js'; +import { Circle as CircleStyle, Fill, Stroke, Style } from 'ol/style.js'; +import { Vector as VectorSource } from 'ol/source.js'; +import { Vector as VectorLayer } from 'ol/layer.js'; +import { LayerModel, LayerView } from './layer'; + +export class OpenLayersGeoJSONModel extends LayerModel { + defaults() { + return { + ...super.defaults(), + _model_name: OpenLayersGeoJSONModel.model_name, + _model_module: OpenLayersGeoJSONModel.model_module, + _model_module_version: OpenLayersGeoJSONModel.model_module_version, + _view_name: OpenLayersGeoJSONModel.view_name, + _view_module: OpenLayersGeoJSONModel.view_module, + _view_module_version: OpenLayersGeoJSONModel.view_module_version, + layers: [], + }; + } + + static serializers: ISerializers = { + ...DOMWidgetModel.serializers, + // Add any extra serializers here + }; + + static model_name = 'OpenLayersGeoJSONModel'; + static model_module = MODULE_NAME; + static model_module_version = MODULE_VERSION; + static view_name = 'OpenLayersGeoJSONView'; + static view_module = MODULE_NAME; + static view_module_version = MODULE_VERSION; +} + +export class OpenLayersGeoJSONView extends LayerView { + obj: VectorLayer; + render() { + this.initVectorLayer(); + this.create_obj(); + this.modelEvents(); + } + + create_obj() { + this.obj = this.vectorLayer; + } + initVectorLayer() { + this.vectorSource = new VectorSource({ + features: new GeoJSON().readFeatures(this.model.get('data')), + }); + this.vectorLayer = new VectorLayer({ + source: this.vectorSource, + style: this.createStyleFunction(), + }); + } + + createStyleFunction(): StyleFunction { + const modelStyle = this.model.get('style') || {}; + return (feature) => { + return new Style({ + stroke: new Stroke({ + color: modelStyle.strokeColor || '#3399CC', + width: modelStyle.strokeWidth || 1.25, + }), + fill: new Fill({ + color: modelStyle.fillColor || 'rgba(255, 255, 255, 0.4)', + }), + image: new CircleStyle({ + radius: modelStyle.pointRadius || 5, + fill: new Fill({ + color: modelStyle.pointFillColor || '#FF0000', + }), + stroke: new Stroke({ + color: modelStyle.pointStrokeColor || '#000000', + width: modelStyle.pointStrokeWidth || 1, + }), + }), + }); + }; + } + + updateStyle() { + this.vectorLayer.setStyle(this.createStyleFunction()); + } + + invisibleStyle = new Style({ + fill: new Fill({ color: 'rgba(0, 0, 0, 0)' }), + stroke: new Stroke({ color: 'rgba(0, 0, 0, 0)', width: 0 }), + }); + updateVisibility() { + const visibility = this.model.get('visible'); + this.vectorSource.getFeatures().forEach((feature) => { + feature.setStyle(visibility ? undefined : this.invisibleStyle); + }); + } + updateData() { + this.vectorSource.clear(); + this.vectorSource.addFeatures( + new GeoJSON().readFeatures(this.model.get('data')), + ); + } + + modelEvents() { + this.listenTo(this.model, 'change:style', this.updateStyle); + this.listenTo(this.model, 'change:data', this.updateData); + this.listenTo(this.model, 'change:visible', this.updateVisibility); + } + vectorLayer: VectorLayer; + vectorSource: VectorSource; +} diff --git a/src/layer.ts b/src/layer.ts new file mode 100644 index 0000000..3515f77 --- /dev/null +++ b/src/layer.ts @@ -0,0 +1,42 @@ +// Copyright (c) QuantStack +// Distributed under the terms of the Modified BSD License. +import { WidgetModel, WidgetView, ISerializers } from '@jupyter-widgets/base'; +import { MODULE_NAME, MODULE_VERSION } from './version'; +import Layer from 'ol/layer/Layer.js'; + +export class LayerModel extends WidgetModel { + defaults() { + return { + ...super.defaults(), + _model_name: LayerModel.model_name, + _model_module: LayerModel.model_module, + _model_module_version: LayerModel.model_module_version, + _view_name: LayerModel.view_name, + _view_module: LayerModel.view_module, + _view_module_version: LayerModel.view_module_version, + }; + } + + static serializers: ISerializers = { + ...WidgetModel.serializers, + // Add any extra serializers here + }; + + static model_name = 'LayerModel'; + static model_module = MODULE_NAME; + static model_module_version = MODULE_VERSION; + static view_name = 'LayerView'; + static view_module = MODULE_NAME; + static view_module_version = MODULE_VERSION; +} + +export abstract class LayerView extends WidgetView { + obj: Layer; + + render() { + super.render(); + this.create_obj(); + } + + abstract create_obj(): void; +} From 13994fad0d2fdbe644e6fdf2121284e0403acf51 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Fri, 14 Jun 2024 16:51:26 +0200 Subject: [PATCH 2/5] GeoJson layer added --- demo.json | 1 + docs/source/_static/124.embed-bundle.js | 2 + docs/source/_static/124.embed-bundle.js.map | 1 + docs/source/_static/145.embed-bundle.js | 2 + docs/source/_static/145.embed-bundle.js.map | 1 + docs/source/_static/242.embed-bundle.js | 2 + docs/source/_static/242.embed-bundle.js.map | 1 + docs/source/_static/342.embed-bundle.js | 2 + docs/source/_static/342.embed-bundle.js.map | 1 + docs/source/_static/540.embed-bundle.js | 2 + docs/source/_static/540.embed-bundle.js.map | 1 + docs/source/_static/597.embed-bundle.js | 3 + .../_static/597.embed-bundle.js.LICENSE.txt | 1 + docs/source/_static/597.embed-bundle.js.map | 1 + docs/source/_static/64.embed-bundle.js | 2 + docs/source/_static/64.embed-bundle.js.map | 1 + docs/source/_static/709.embed-bundle.js | 2 + docs/source/_static/709.embed-bundle.js.map | 1 + docs/source/_static/749.embed-bundle.js | 2 + docs/source/_static/749.embed-bundle.js.map | 1 + examples/demo.json | 1 + examples/introduction.ipynb | 432 +++++++++++------- ipyopenlayers/{example.py => Map.py} | 30 +- ipyopenlayers/__init__.py | 2 +- ipyopenlayers/nbextension/124.index.js | 2 + ipyopenlayers/nbextension/124.index.js.map | 1 + ipyopenlayers/nbextension/145.index.js | 2 + ipyopenlayers/nbextension/145.index.js.map | 1 + ipyopenlayers/nbextension/242.index.js | 2 + ipyopenlayers/nbextension/242.index.js.map | 1 + ipyopenlayers/nbextension/342.index.js | 2 + ipyopenlayers/nbextension/342.index.js.map | 1 + ipyopenlayers/nbextension/540.index.js | 2 + ipyopenlayers/nbextension/540.index.js.map | 1 + ipyopenlayers/nbextension/597.index.js | 3 + .../nbextension/597.index.js.LICENSE.txt | 1 + ipyopenlayers/nbextension/597.index.js.map | 1 + ipyopenlayers/nbextension/64.index.js | 2 + ipyopenlayers/nbextension/64.index.js.map | 1 + ipyopenlayers/nbextension/709.index.js | 2 + ipyopenlayers/nbextension/709.index.js.map | 1 + ipyopenlayers/nbextension/749.index.js | 2 + ipyopenlayers/nbextension/749.index.js.map | 1 + ipyopenlayers/tests/test_example.py | 2 +- src/baseoverlay.ts | 5 +- src/geojson.ts | 1 - src/layer.ts | 1 + src/scaleline.ts | 2 +- src/tilelayer.ts | 17 +- src/widget.ts | 13 +- tsconfig.json | 2 +- 51 files changed, 369 insertions(+), 198 deletions(-) create mode 100644 demo.json create mode 100644 docs/source/_static/124.embed-bundle.js create mode 100644 docs/source/_static/124.embed-bundle.js.map create mode 100644 docs/source/_static/145.embed-bundle.js create mode 100644 docs/source/_static/145.embed-bundle.js.map create mode 100644 docs/source/_static/242.embed-bundle.js create mode 100644 docs/source/_static/242.embed-bundle.js.map create mode 100644 docs/source/_static/342.embed-bundle.js create mode 100644 docs/source/_static/342.embed-bundle.js.map create mode 100644 docs/source/_static/540.embed-bundle.js create mode 100644 docs/source/_static/540.embed-bundle.js.map create mode 100644 docs/source/_static/597.embed-bundle.js create mode 100644 docs/source/_static/597.embed-bundle.js.LICENSE.txt create mode 100644 docs/source/_static/597.embed-bundle.js.map create mode 100644 docs/source/_static/64.embed-bundle.js create mode 100644 docs/source/_static/64.embed-bundle.js.map create mode 100644 docs/source/_static/709.embed-bundle.js create mode 100644 docs/source/_static/709.embed-bundle.js.map create mode 100644 docs/source/_static/749.embed-bundle.js create mode 100644 docs/source/_static/749.embed-bundle.js.map create mode 100644 examples/demo.json rename ipyopenlayers/{example.py => Map.py} (87%) create mode 100644 ipyopenlayers/nbextension/124.index.js create mode 100644 ipyopenlayers/nbextension/124.index.js.map create mode 100644 ipyopenlayers/nbextension/145.index.js create mode 100644 ipyopenlayers/nbextension/145.index.js.map create mode 100644 ipyopenlayers/nbextension/242.index.js create mode 100644 ipyopenlayers/nbextension/242.index.js.map create mode 100644 ipyopenlayers/nbextension/342.index.js create mode 100644 ipyopenlayers/nbextension/342.index.js.map create mode 100644 ipyopenlayers/nbextension/540.index.js create mode 100644 ipyopenlayers/nbextension/540.index.js.map create mode 100644 ipyopenlayers/nbextension/597.index.js create mode 100644 ipyopenlayers/nbextension/597.index.js.LICENSE.txt create mode 100644 ipyopenlayers/nbextension/597.index.js.map create mode 100644 ipyopenlayers/nbextension/64.index.js create mode 100644 ipyopenlayers/nbextension/64.index.js.map create mode 100644 ipyopenlayers/nbextension/709.index.js create mode 100644 ipyopenlayers/nbextension/709.index.js.map create mode 100644 ipyopenlayers/nbextension/749.index.js create mode 100644 ipyopenlayers/nbextension/749.index.js.map diff --git a/demo.json b/demo.json new file mode 100644 index 0000000..3cba51a --- /dev/null +++ b/demo.json @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.39940577291571, 34.5780540544853], [-77.39940610066606, 34.57805427015046], [-77.39940640189788, 34.57805446836596], [-77.39940680648922, 34.57805473459376], [-77.39940687019617, 34.57805477651398], [-77.39940689381065, 34.57805472199389], [-77.3994073308358, 34.57805432604519], [-77.39940731720131, 34.578054179242265], [-77.39940728534575, 34.578053836252096], [-77.39940728147378, 34.57805380828763], [-77.39940726378504, 34.57805363205166], [-77.39940725501071, 34.57805361742678], [-77.39940719593868, 34.57805349818902], [-77.39940711258689, 34.57805350039165], [-77.39940706262787, 34.57805349996589], [-77.3994070238417, 34.578053501157314], [-77.39940689549977, 34.57805350509971], [-77.3994068702403, 34.5780535173504], [-77.39940683257294, 34.57805352755014], [-77.39940665584797, 34.57805351246129], [-77.39940650171212, 34.578053517196004], [-77.39940646539253, 34.578053518311656], [-77.39940610067742, 34.578053945657025]]]]}, "type": "Feature", "id": "demo0", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.39940610067742, 34.578053945657025], [-77.39940646539254, 34.578053518311656], [-77.39940650171212, 34.578053517196004], [-77.39940665584797, 34.57805351246129], [-77.39940683257294, 34.57805352755014], [-77.3994068702403, 34.5780535173504], [-77.39940689549977, 34.57805350509971], [-77.3994070238417, 34.578053501157314], [-77.39940706262786, 34.57805349996589], [-77.39940711258689, 34.57805350039165], [-77.39940719593868, 34.57805349818902], [-77.39940725501071, 34.57805361742678], [-77.39940726378504, 34.57805363205166], [-77.39940728147378, 34.57805380828763], [-77.39940728534575, 34.578053836252096], [-77.39940731720131, 34.578054179242265], [-77.39940733083579, 34.57805432604519], [-77.39940689381065, 34.57805472199389], [-77.39940687019617, 34.57805477651398], [-77.39940680648922, 34.57805473459376], [-77.39940640189788, 34.57805446836596], [-77.39940610066606, 34.57805427015046], [-77.39940577291571, 34.5780540544853]], [[-77.15253692933524, 34.56151513936439], [-77.15144999595574, 34.559341247413045], [-77.14904546023064, 34.55892756614713], [-77.14743744409338, 34.55867737428063], [-77.14671571532021, 34.55979772058227], [-77.1460046186939, 34.56099495515147], [-77.14491706514983, 34.56169475917134], [-77.14497207062252, 34.56632469366697], [-77.1467862491276, 34.568533382227606], [-77.1468223367107, 34.56857174152883], [-77.15293546566507, 34.56884388206718], [-77.1545505387783, 34.56568527620884], [-77.15420520136999, 34.56541924496929], [-77.15241022744132, 34.56354664885801]], [[-77.39940554864587, 34.57805385245915], [-77.39940533113186, 34.57805388005787], [-77.39940430019209, 34.57805426698911], [-77.39940533109453, 34.578054945339986], [-77.39940577334389, 34.57805523634738], [-77.39940636733915, 34.578055627206076], [-77.39940687015479, 34.57805595806707], [-77.39940699795643, 34.57805553621237], [-77.39940724128886, 34.57805510120852], [-77.39940743965354, 34.578054643232534], [-77.39940755688437, 34.57805453702035], [-77.39940750261498, 34.578053952699676], [-77.3994074890696, 34.578053806856154], [-77.3994074632458, 34.5780536203485], [-77.39940745698588, 34.578053593842995], [-77.39940735796857, 34.57805341115014], [-77.39940730418934, 34.578053365925925], [-77.39940725501948, 34.57805336743631], [-77.39940719426355, 34.5780533693026], [-77.3994070626323, 34.57805337334602], [-77.39940695610295, 34.57805337661838], [-77.39940687024513, 34.57805337925574], [-77.39940660801658, 34.578053387310824], [-77.3994063340491, 34.5780533957265], [-77.39940610068713, 34.578053669162294]]]]}, "type": "Feature", "id": "demo1", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.32933078260577, 34.420286653098714], [-77.33117475736287, 34.42020746565844], [-77.33460597771473, 34.423794493641175], [-77.33473784452963, 34.42503544541048], [-77.33632618419041, 34.42680517558428], [-77.33747700638781, 34.42855603846078], [-77.34182498346473, 34.429486093242005], [-77.3443014336959, 34.4289134511942], [-77.3479590438793, 34.427720262919735], [-77.35374570015937, 34.426020369676905], [-77.35418268857896, 34.425671448613706], [-77.35580765974248, 34.42203473109974], [-77.36126255666461, 34.421004183238395], [-77.36344455408788, 34.42015390029393], [-77.36475455567283, 34.42058572773829], [-77.36473382774254, 34.42118360092122], [-77.36981780251108, 34.42380206211797], [-77.37288890174588, 34.421604550178465], [-77.37235930937102, 34.420589987156944], [-77.37089873650106, 34.41737918573283], [-77.3686879334351, 34.415982921225336], [-77.3692667954851, 34.41197094998541], [-77.36944809133527, 34.410617446370466], [-77.36806448865198, 34.40898670266513], [-77.37020727996773, 34.40545217197258], [-77.3702483920398, 34.4052960566473], [-77.37061425801089, 34.405272949613405], [-77.37897277109447, 34.404792314733655], [-77.37984473264206, 34.401326092299655], [-77.38239321609933, 34.405118642372805], [-77.39091208057313, 34.4058544225021], [-77.39188285015761, 34.406022388789815], [-77.39999147731666, 34.40552217919128], [-77.39831489526793, 34.40129507295282], [-77.39979849639546, 34.39602876048577], [-77.39928119919556, 34.39594021749391], [-77.39952703136558, 34.395787537711655], [-77.39987930422379, 34.39587269928718], [-77.40466993479139, 34.39081240476746], [-77.40677214858167, 34.38980797349567], [-77.4082976008465, 34.38727824052392], [-77.41050913167675, 34.386873977365354], [-77.41149038486083, 34.3857579837607], [-77.41244798185613, 34.383158449744336], [-77.41248853968165, 34.38308409421803], [-77.4125375553666, 34.38309638278298], [-77.41285419480836, 34.38294615830809], [-77.41732982321527, 34.38094308199863], [-77.41791529790049, 34.3809730788182], [-77.4219497207388, 34.380889807031664], [-77.42268488350805, 34.380855760642284], [-77.42276876872671, 34.38093177564485], [-77.42612711490543, 34.382270376889814], [-77.42647003797374, 34.382761855788], [-77.42625977263825, 34.38381273225756], [-77.42950550716348, 34.386144411534], [-77.43035092892055, 34.386324250985595], [-77.44022590989476, 34.38708143255442], [-77.44044868975519, 34.386820865760484], [-77.44164434218094, 34.386681806412255], [-77.4412519525014, 34.38728143460479], [-77.44081443484492, 34.38736787530143], [-77.44230721758807, 34.389466432203506], [-77.44614883918446, 34.390233542319805], [-77.4464065578547, 34.39045408024087], [-77.44682527628366, 34.390475446139774], [-77.44700593866774, 34.39038096794769], [-77.44718659562473, 34.390286486485515], [-77.44712919907474, 34.39007617914795], [-77.44793069982882, 34.387622267359845], [-77.44655660840455, 34.38540935461384], [-77.44625024303005, 34.38427320414274], [-77.44431734387501, 34.382033477276266], [-77.44285854497232, 34.37885634640306], [-77.44785633785028, 34.374538123095576], [-77.44698962543792, 34.37136131829231], [-77.44400000001644, 34.36039999999008], [-77.43458662286403, 34.36532330898005], [-77.4251721160516, 34.37024593650608], [-77.41575647950076, 34.37516788216274], [-77.41104823754901, 34.37762859916338], [-77.40633971313336, 34.38008914554466], [-77.39692181687144, 34.38500972624638], [-77.38750279063719, 34.38992962386249], [-77.37808263435296, 34.3948488379875], [-77.37337213241793, 34.39730818861416], [-77.36866134794137, 34.39976736821598], [-77.35923893132514, 34.404685214142425], [-77.3498153844272, 34.40960237536133], [-77.34039070717066, 34.41451885146718], [-77.33096489947884, 34.41943464205446]], [[-77.3055186605671, 34.43269907488547], [-77.30655327220532, 34.434379757448674], [-77.30869877869708, 34.43652519484434], [-77.31001455285869, 34.43456009430833], [-77.31238461485653, 34.43415500799195], [-77.31306413527085, 34.432780884551285], [-77.3135785735945, 34.432043161588126], [-77.31331479387134, 34.42985190702052], [-77.31362596929779, 34.429343048133894], [-77.3149040292102, 34.4278077101758], [-77.31210989248345, 34.429264165051066], [-77.30739543409321, 34.43172111671741]], [[-77.28289095309782, 34.444486342719294], [-77.289583619529, 34.44313734720211], [-77.29309813089382, 34.445507581635], [-77.30440131269941, 34.44453140229724], [-77.30078595268313, 34.43948411149647], [-77.29935643213052, 34.435909781030205], [-77.29325036283106, 34.4390909411066]], [[-77.22791697396704, 34.473093474483875], [-77.23403834099052, 34.47313092171005], [-77.2356204868993, 34.47203759845746], [-77.24057727316332, 34.47110015858404], [-77.24647425919052, 34.466907064929764], [-77.25377902121352, 34.46187414859207], [-77.25740109040493, 34.46333034485083], [-77.25806090063922, 34.465174589531955], [-77.26018575086117, 34.46526759392394], [-77.26255810254042, 34.46529596709001], [-77.26493314292327, 34.4644256299325], [-77.2667539837912, 34.461961406824216], [-77.26951334401079, 34.463095355871225], [-77.27093955393204, 34.46370540112572], [-77.27483189894548, 34.46420788731779], [-77.27245308319681, 34.468955758761275], [-77.27275803174818, 34.46935281239414], [-77.27306112938923, 34.46953206336318], [-77.27503092112724, 34.470672634343835], [-77.27524965084731, 34.47175333281274], [-77.276250650603, 34.47183225649323], [-77.27842251203616, 34.47075865878416], [-77.27949959258387, 34.471650918455765], [-77.28375416637518, 34.4698451055961], [-77.29011674428948, 34.46551248156134], [-77.29266422143553, 34.46379817219438], [-77.2937666697121, 34.463197264354015], [-77.29897010145473, 34.46252022175499], [-77.30094116912471, 34.46272123457566], [-77.3021081970862, 34.462506529860875], [-77.30255665978021, 34.461256023217686], [-77.30232272016312, 34.45941957108035], [-77.30229156186373, 34.45926889581487], [-77.3008132670316, 34.45758945151065], [-77.30169000659981, 34.45586393974895], [-77.29593294488106, 34.45437322788024], [-77.30188686018919, 34.45125586630647], [-77.30554564961051, 34.44979341631104], [-77.30621294330669, 34.44898000967999], [-77.30561507590004, 34.44684839787881], [-77.30443948674427, 34.44606324948056], [-77.2950479991887, 34.44791950648506], [-77.29600208644707, 34.450446489824785], [-77.2929072855267, 34.45355205667664], [-77.29028847269069, 34.452278610618656], [-77.28813780812303, 34.452387219317686], [-77.28644704890809, 34.45239570971904], [-77.2836885884, 34.45183407023626], [-77.28174771693897, 34.45178354586174], [-77.27999956706383, 34.450711529113626], [-77.27808413764336, 34.45087091721007], [-77.27806393181955, 34.4481940076211], [-77.27607194426412, 34.448037065868554], [-77.26697479678369, 34.45277333894442], [-77.25383372263998, 34.45961253440221], [-77.24069045414564, 34.46645039275779], [-77.23411799695381, 34.469868820179684]], [[-77.13206303244968, 34.59235517377309], [-77.14041560026347, 34.59437956001024], [-77.14630203063625, 34.59520748133121], [-77.14707538403012, 34.59520747990657], [-77.14776996735016, 34.59465941350485], [-77.15300596868484, 34.59172281407314], [-77.15354072780681, 34.59044065501473], [-77.15374073323287, 34.58655386650353], [-77.15364267679375, 34.58423091896078], [-77.15565067363497, 34.581792662723004], [-77.15679489585426, 34.57953712103641], [-77.15587833424617, 34.577206768395236], [-77.15590895028824, 34.576868687399376], [-77.1575640738741, 34.57337375162895], [-77.15777719705378, 34.57315981751765], [-77.16150133404433, 34.571902859545034], [-77.16587012824164, 34.57080838482029], [-77.1667342271194, 34.570615254612676], [-77.16748140226936, 34.570246283495614], [-77.170471670772, 34.56341911199621], [-77.17093713377983, 34.56250083879752], [-77.17037388271528, 34.56192711799848], [-77.17045797122739, 34.55680347045155], [-77.16872683295583, 34.555260268484126], [-77.1736329108138, 34.55271478612764], [-77.18675584530247, 34.54103680974169], [-77.18679441798356, 34.540942656729214], [-77.18710946278068, 34.533292653986514], [-77.1871169963584, 34.53309052775687], [-77.18711587299477, 34.53309029864644], [-77.18999656258332, 34.52544427754455], [-77.19292824962926, 34.522313878613645], [-77.20061968406097, 34.51226601583163], [-77.20511866344556, 34.51327904866838], [-77.21067663337777, 34.5113313932048], [-77.21075262574234, 34.50707675878356], [-77.20635610841191, 34.50757985756697], [-77.21152098940459, 34.50352226269968], [-77.21149902049817, 34.4986079311762], [-77.20906116130391, 34.498414701979904], [-77.2115721526845, 34.49565030153879], [-77.21156384864265, 34.4932345081089], [-77.2141669864611, 34.489466747546984], [-77.21715186140148, 34.48821617728652], [-77.21605671529142, 34.48701951573875], [-77.21676178976817, 34.48516512732725], [-77.21929529165146, 34.48050992390037], [-77.22093112816523, 34.47834501871232], [-77.22172164483297, 34.476764046880014], [-77.22202438711534, 34.47615723992991], [-77.22097143655486, 34.47670467082662], [-77.21439733329747, 34.48012209377758], [-77.20782268130138, 34.48353918163083], [-77.20124748054155, 34.48695593424932], [-77.1880954326309, 34.49378843323389], [-77.16178475054882, 34.50744940235593], [-77.13546528546534, 34.52110499237207], [-77.10913703580583, 34.534755194509884], [-77.09596961627106, 34.54157827238282], [-77.0828000000069, 34.54839999999615], [-77.09208215603842, 34.55668733761411], [-77.09672392733995, 34.56083071254245], [-77.10136616096389, 34.56497389144252], [-77.11065201557464, 34.573259660834395], [-77.11529563675929, 34.5774022511644], [-77.11993972066199, 34.58154464514258], [-77.1292292770173, 34.58982884371971]], [[-77.15241022744132, 34.56354664885801], [-77.15420520136998, 34.565419244969284], [-77.1545505387783, 34.56568527620884], [-77.15293546566505, 34.56884388206718], [-77.1468223367107, 34.56857174152883], [-77.1467862491276, 34.568533382227606], [-77.14497207062252, 34.56632469366697], [-77.14491706514983, 34.56169475917134], [-77.1460046186939, 34.56099495515147], [-77.14671571532021, 34.55979772058227], [-77.14743744409338, 34.55867737428063], [-77.14904546023062, 34.55892756614713], [-77.15144999595574, 34.559341247413045], [-77.15253692933524, 34.56151513936439]], [[-77.39940610068713, 34.578053669162294], [-77.3994063340491, 34.5780533957265], [-77.39940660801658, 34.578053387310824], [-77.39940687024513, 34.57805337925574], [-77.39940695610295, 34.57805337661838], [-77.3994070626323, 34.57805337334602], [-77.39940719426355, 34.5780533693026], [-77.39940725501948, 34.57805336743631], [-77.39940730418934, 34.578053365925925], [-77.39940735796857, 34.57805341115014], [-77.39940745698588, 34.57805359384299], [-77.3994074632458, 34.5780536203485], [-77.3994074890696, 34.578053806856154], [-77.39940750261498, 34.578053952699676], [-77.39940755688437, 34.57805453702035], [-77.39940743965354, 34.578054643232534], [-77.39940724128886, 34.57805510120852], [-77.39940699795643, 34.57805553621237], [-77.39940687015479, 34.57805595806707], [-77.39940636733914, 34.578055627206076], [-77.39940577334389, 34.57805523634738], [-77.39940533109453, 34.578054945339986], [-77.39940430019209, 34.57805426698912], [-77.39940533113186, 34.57805388005788], [-77.39940554864587, 34.57805385245915]], [[-77.11207194343993, 34.55828691362007], [-77.10249413071804, 34.56275346922161], [-77.09830442799088, 34.56024112826809], [-77.09714013272374, 34.56001151325018], [-77.09520735768265, 34.55693761958649], [-77.10029710834748, 34.55362310136736], [-77.10035982177315, 34.553540757695515], [-77.10050521516038, 34.55354546668941], [-77.10706349188865, 34.553757914455105]], [[-77.43241797173333, 34.39776785756878], [-77.43274403871156, 34.39802151447347], [-77.43318626997807, 34.39791482353961], [-77.43354299621332, 34.39769631313794], [-77.43250820386139, 34.397156727669575], [-77.43217545665915, 34.3974228478566], [-77.43176772948128, 34.39760556039392]], [[-77.14608048707832, 34.583219147129064], [-77.14763678109978, 34.582957284823806], [-77.14802091311532, 34.583783486157586], [-77.1466288409394, 34.58428009381285], [-77.14523831607329, 34.584878465051744], [-77.1406814410692, 34.58555388255154], [-77.13006056015922, 34.58819161986236], [-77.12854069186088, 34.58223093555608], [-77.12854055748672, 34.57868319504471], [-77.12933558472513, 34.57803817063931], [-77.12854057606424, 34.577895425740195], [-77.12835002186677, 34.574673005637315], [-77.1303740234601, 34.57177506170022], [-77.13084570272302, 34.570207455489694], [-77.13275864513803, 34.57088492964574], [-77.1372183499914, 34.57409250769384], [-77.13794876224092, 34.57482293908047], [-77.13861756738187, 34.57549171891885]], [[-77.37953825860046, 34.40982282272741], [-77.37493880496706, 34.41090075984324], [-77.37862079745018, 34.4133484397919], [-77.38317419302857, 34.41356171827999], [-77.38736647737954, 34.411541128211795], [-77.38658495056237, 34.40919041391665], [-77.38147310281768, 34.40731079407036]], [[-77.38707117747693, 34.39641549573966], [-77.38562716150848, 34.39852509922709], [-77.38552938894509, 34.400637322135196], [-77.38520450742088, 34.40125243452559], [-77.38078570299993, 34.400392894810224], [-77.37977956869284, 34.40022302620648], [-77.37999885890682, 34.398160087544845], [-77.38099633037876, 34.39770139230592], [-77.37915173481005, 34.395369800920356]], [[-77.41979720706723, 34.39139698708163], [-77.41474483715167, 34.39119854302648], [-77.41462022968778, 34.39132314661886], [-77.4134861717247, 34.39307773843446], [-77.41326253854061, 34.3952555788114], [-77.41743982966304, 34.39500289014426], [-77.41950859604628, 34.394275923013325], [-77.42044178785788, 34.39408768523936], [-77.42038616109168, 34.392159241950424], [-77.42046721764093, 34.39172321914001], [-77.42072533618648, 34.391636022911875], [-77.4201647236619, 34.39134672295856]], [[-77.3893008519995, 34.42408787248524], [-77.38912098487387, 34.42351768856072], [-77.38791266965467, 34.42341178532797], [-77.38816568644584, 34.42401644217105]], [[-77.40714418910046, 34.4047136010784], [-77.4080932241337, 34.40471360187997], [-77.40781515691154, 34.404363084475236], [-77.40712455076913, 34.40424190995614]], [[-77.39954076909424, 34.578127409806115], [-77.39953422441505, 34.57812383838076], [-77.39952805378579, 34.57813051054682], [-77.39952752764859, 34.57813102011227], [-77.39951614300988, 34.57814322919679], [-77.39951517875978, 34.578145030933655], [-77.39951453048835, 34.5781461634614], [-77.3995084794953, 34.578155294151884], [-77.39951086168848, 34.5781675385864], [-77.39950382940395, 34.57816771463075], [-77.39950221748025, 34.57817273924256], [-77.39950163326642, 34.57817456032542], [-77.39950271744948, 34.57818647429149], [-77.39949151546624, 34.57820177851756], [-77.39949130964256, 34.57820236406467], [-77.39949122752424, 34.57820259768264], [-77.39949151532463, 34.57820595517541], [-77.39949912960824, 34.57820145746155], [-77.39951115825104, 34.578194352210836], [-77.39951614138892, 34.57819140869867], [-77.39952831387026, 34.57818412986332], [-77.39954076744962, 34.57817670927362], [-77.3995458778692, 34.578173682842596], [-77.39955106786901, 34.578167427209536], [-77.39955916199055, 34.57814643887056], [-77.39956246145937, 34.57813924730528]], [[-77.34587817987449, 34.534163748533274], [-77.34587816814742, 34.53416430793813], [-77.34587263571262, 34.53416881200081], [-77.34587274110733, 34.534168963604266], [-77.34587265551194, 34.53417275180444], [-77.34587268904204, 34.534172774087374], [-77.34587272821275, 34.53417296032733], [-77.34587343244121, 34.534174097109386], [-77.34587340280538, 34.53417455692852], [-77.34587363262037, 34.53417488840779], [-77.34587362666676, 34.53417500287995], [-77.34587387387907, 34.53417523639314], [-77.34587411886478, 34.53417541021902], [-77.34587415191288, 34.534175438237085], [-77.34587480447664, 34.53417568938707], [-77.34587573056002, 34.53417575408916], [-77.34587654978552, 34.534175509339555], [-77.34587770942314, 34.53417516288933], [-77.3458788217655, 34.534174693843546], [-77.34588066731803, 34.53417427919651], [-77.34588265015962, 34.53417368680798], [-77.34588502596813, 34.534171628174796], [-77.3458909907904, 34.53417023863723], [-77.34589119308563, 34.53417017097578], [-77.34589131942958, 34.53417014457203], [-77.345891940756, 34.53416951980965], [-77.3458912223226, 34.534168902883096], [-77.3458872718327, 34.534165510554494], [-77.3458847657702, 34.53416335857105], [-77.34588260290963, 34.53416150129906], [-77.3458791934352, 34.53415857354539]], [[-77.399407698603, 34.578053840011556], [-77.39940769279347, 34.57805377746021], [-77.3994076812505, 34.578053734438775], [-77.39940763978595, 34.57805358016185], [-77.39940760135697, 34.57805341744715], [-77.399407580538, 34.578053379034905], [-77.3994074104938, 34.578053236040745], [-77.3994072550239, 34.57805324081643], [-77.39940706292012, 34.578053246717445], [-77.39940706263674, 34.57805324672616], [-77.3994070624074, 34.5780532467332], [-77.39940687024958, 34.57805325263587], [-77.39940671432103, 34.57805325742565], [-77.39940620270568, 34.57805327314134], [-77.39940610069681, 34.578053392667556], [-77.39940585938459, 34.578053472791595], [-77.3994053311438, 34.57805353981612], [-77.39940405526329, 34.578054018678245], [-77.39940352316083, 34.57805408938375], [-77.39940338035231, 34.578054843299654], [-77.3994048946155, 34.5780558397099], [-77.39940504912144, 34.57805612121864], [-77.39940533105312, 34.57805612689306], [-77.39940660301015, 34.5780569638618], [-77.3994068701134, 34.57805713962014], [-77.39940737222963, 34.57805548220733], [-77.39940778293298, 34.5780547479955], [-77.39940776879209, 34.57805459574012], [-77.39940775719408, 34.57805447086388]]]]}, "type": "Feature", "id": "demo2", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.3149040292102, 34.4278077101758], [-77.31362596929779, 34.429343048133894], [-77.31331479387134, 34.42985190702052], [-77.3135785735945, 34.432043161588126], [-77.31306413527085, 34.432780884551285], [-77.31238461485653, 34.43415500799195], [-77.31001455285869, 34.43456009430833], [-77.30869877869708, 34.43652519484434], [-77.30655327220533, 34.43437975744868], [-77.3055186605671, 34.43269907488547], [-77.3026806930274, 34.43417789664927], [-77.29935643213052, 34.435909781030205], [-77.30078595268311, 34.43948411149647], [-77.30440131269941, 34.444531402297244], [-77.29309813089382, 34.445507581635], [-77.289583619529, 34.44313734720211], [-77.28289095309782, 34.444486342719294], [-77.28011367677956, 34.44593280748054], [-77.27607194426412, 34.448037065868554], [-77.27806393181955, 34.4481940076211], [-77.27808413764336, 34.45087091721007], [-77.27999956706383, 34.450711529113626], [-77.28174771693897, 34.45178354586174], [-77.2836885884, 34.45183407023626], [-77.28644704890809, 34.45239570971904], [-77.28813780812303, 34.452387219317686], [-77.29028847269069, 34.452278610618656], [-77.2929072855267, 34.45355205667664], [-77.29600208644707, 34.45044648982478], [-77.2950479991887, 34.44791950648506], [-77.30443948674427, 34.44606324948056], [-77.30561507590004, 34.44684839787881], [-77.30621294330669, 34.44898000967999], [-77.30554564961051, 34.44979341631104], [-77.30188686018919, 34.45125586630647], [-77.29593294488106, 34.45437322788024], [-77.30169000659981, 34.45586393974895], [-77.3008132670316, 34.45758945151065], [-77.30229156186373, 34.45926889581487], [-77.30232272016312, 34.45941957108035], [-77.30255665978021, 34.461256023217686], [-77.30210819708618, 34.462506529860875], [-77.30094116912471, 34.46272123457566], [-77.29897010145473, 34.46252022175499], [-77.29376666971208, 34.463197264354015], [-77.29266422143553, 34.46379817219438], [-77.29011674428946, 34.46551248156133], [-77.28375416637518, 34.4698451055961], [-77.27949959258387, 34.471650918455765], [-77.27842251203614, 34.47075865878416], [-77.276250650603, 34.47183225649323], [-77.27524965084731, 34.47175333281274], [-77.27503092112724, 34.470672634343835], [-77.27306112938923, 34.46953206336318], [-77.27275803174818, 34.46935281239414], [-77.27245308319681, 34.468955758761275], [-77.27483189894548, 34.46420788731779], [-77.27093955393205, 34.46370540112572], [-77.26951334401079, 34.463095355871225], [-77.2667539837912, 34.46196140682421], [-77.26493314292327, 34.4644256299325], [-77.26255810254044, 34.465295967090015], [-77.26018575086117, 34.46526759392394], [-77.25806090063922, 34.465174589531955], [-77.25740109040493, 34.46333034485083], [-77.2537790212135, 34.46187414859206], [-77.2464742591905, 34.466907064929764], [-77.24057727316332, 34.47110015858404], [-77.23562048689928, 34.47203759845746], [-77.23403834099052, 34.473130921710045], [-77.22791697396704, 34.473093474483875], [-77.2275449910986, 34.47328691291498], [-77.22425828241435, 34.47499583373232], [-77.22202438711534, 34.47615723992991], [-77.22172164483297, 34.476764046880014], [-77.22093112816523, 34.47834501871232], [-77.21929529165146, 34.48050992390037], [-77.21676178976817, 34.48516512732725], [-77.21605671529142, 34.48701951573875], [-77.21715186140148, 34.48821617728652], [-77.2141669864611, 34.489466747546984], [-77.21156384864267, 34.493234508108905], [-77.2115721526845, 34.49565030153879], [-77.2090611613039, 34.4984147019799], [-77.21149902049817, 34.4986079311762], [-77.21152098940459, 34.50352226269968], [-77.20635610841191, 34.507579857566974], [-77.21075262574234, 34.507076758783555], [-77.21067663337776, 34.5113313932048], [-77.20511866344556, 34.51327904866838], [-77.20061968406097, 34.51226601583163], [-77.19292824962926, 34.522313878613645], [-77.18999656258332, 34.52544427754455], [-77.18711587299477, 34.53309029864644], [-77.1871169963584, 34.53309052775687], [-77.18710946278068, 34.533292653986514], [-77.18679441798358, 34.540942656729214], [-77.18675584530247, 34.54103680974169], [-77.1736329108138, 34.55271478612764], [-77.16872683295584, 34.55526026848413], [-77.17045797122739, 34.55680347045155], [-77.17037388271528, 34.56192711799848], [-77.17093713377983, 34.56250083879751], [-77.170471670772, 34.563419111996204], [-77.16748140226936, 34.570246283495614], [-77.1667342271194, 34.570615254612676], [-77.16587012824164, 34.57080838482029], [-77.16150133404435, 34.571902859545034], [-77.15777719705378, 34.57315981751765], [-77.15756407387408, 34.57337375162895], [-77.15590895028825, 34.576868687399376], [-77.15587833424617, 34.577206768395236], [-77.15679489585426, 34.57953712103641], [-77.15565067363497, 34.581792662723004], [-77.15364267679375, 34.58423091896078], [-77.15374073323287, 34.58655386650353], [-77.15354072780681, 34.59044065501473], [-77.15300596868484, 34.59172281407314], [-77.14776996735016, 34.59465941350485], [-77.14707538403012, 34.59520747990657], [-77.14630203063625, 34.59520748133121], [-77.14041560026347, 34.59437956001024], [-77.13206303244968, 34.59235517377309], [-77.13852068543206, 34.59811225591832], [-77.1478139466977, 34.60639488109072], [-77.15246127239699, 34.610535898339656], [-77.15485401266312, 34.61266764461739], [-77.16020330649829, 34.608579447647664], [-77.1611189964388, 34.60772126164122], [-77.16147090162913, 34.6074809117594], [-77.16531357854211, 34.60573657578637], [-77.16853824840526, 34.60380339645687], [-77.17108173531628, 34.60070174903768], [-77.1800139482095, 34.596131891489705], [-77.18316846235463, 34.59578276371086], [-77.18513597425438, 34.594274586192114], [-77.18699837430869, 34.59175781027504], [-77.18941206785072, 34.58707091331651], [-77.19433244406017, 34.584676172710196], [-77.19935903568214, 34.580317370874084], [-77.20421823801954, 34.574998492683875], [-77.20562672432011, 34.57368773664935], [-77.20675265972135, 34.57336065238147], [-77.20762396652455, 34.572291941350116], [-77.2057940711245, 34.57188808255823], [-77.2063250975792, 34.56578475276357], [-77.21003159298745, 34.563522689269796], [-77.21538170867248, 34.563512540412646], [-77.21789671155305, 34.56356954538566], [-77.22354241735641, 34.56347628282994], [-77.22364171170227, 34.56342410705624], [-77.22364425490557, 34.563383555928745], [-77.2239830300136, 34.562606014343686], [-77.2248839608134, 34.55995681610601], [-77.22518259688952, 34.55973417349531], [-77.2250563308956, 34.556337392336154], [-77.22518394827209, 34.555999596463], [-77.22507757938817, 34.555787989890796], [-77.22417551923171, 34.55348259406031], [-77.22326461187184, 34.55311633084846], [-77.22274583041204, 34.55166578954748], [-77.22279487878134, 34.54735371672994], [-77.220847726151, 34.54661123233644], [-77.2168109697165, 34.546292122958995], [-77.215379733782, 34.54320746687084], [-77.217149243058, 34.54077248313651], [-77.21945661390534, 34.53835627195119], [-77.2222838745125, 34.53587763239513], [-77.22419581664501, 34.53323139708563], [-77.22612372705274, 34.53131311298299], [-77.22705247345753, 34.53174705719635], [-77.2283977782982, 34.533536856042545], [-77.2285384185653, 34.534855183629205], [-77.23093185162409, 34.53656107833721], [-77.23088567531144, 34.538446576052465], [-77.23515898755247, 34.53689490301804], [-77.23909972810259, 34.531808797249006], [-77.24026960375346, 34.52942268870188], [-77.25130622066914, 34.52360609221732], [-77.25227660738155, 34.5239986901836], [-77.25622943975591, 34.5228057610673], [-77.25880006939612, 34.522749990084364], [-77.2630710389455, 34.51690221958784], [-77.26162770773927, 34.51535561035821], [-77.26251597563423, 34.51125402884492], [-77.25904065899894, 34.51276855098882], [-77.25832216663957, 34.51205002109325], [-77.25690916879611, 34.51234503868662], [-77.25581356288413, 34.510988490402475], [-77.25258718191307, 34.51115514252865], [-77.25170258180725, 34.511171926537614], [-77.24767156223652, 34.51230885463156], [-77.2476716572908, 34.51031773364224], [-77.24767062902825, 34.50938784289676], [-77.2481585150673, 34.50794702161971], [-77.24768998257355, 34.50638138068132], [-77.25016843466895, 34.50573241349271], [-77.25142221499613, 34.50667578279976], [-77.25181140219901, 34.50723452714085], [-77.25177946866697, 34.50778269065449], [-77.25262560166433, 34.509566379522646], [-77.25461139986274, 34.5084876889612], [-77.25618233241083, 34.50705110291147], [-77.259209837882, 34.505750013180666], [-77.26312068421646, 34.50135206383629], [-77.25933038265086, 34.50074923588649], [-77.2583492341773, 34.500542725802255], [-77.25732911865185, 34.50048377580573], [-77.25621148716023, 34.499177848996894], [-77.25808461401056, 34.49620984733059], [-77.25570485416605, 34.49580554674138], [-77.25567946339748, 34.49126037673723], [-77.25836166768343, 34.48830355279546], [-77.2638747971866, 34.48403086518153], [-77.26630002762272, 34.480851828811254], [-77.26945949610564, 34.48064277034048], [-77.2680063413342, 34.48328557836939], [-77.26759874662318, 34.48432426405242], [-77.26754452916975, 34.486580557311356], [-77.2674205634676, 34.48747157391448], [-77.26755266336768, 34.488258340438534], [-77.26680457388301, 34.491222558516014], [-77.26698951898463, 34.491577029438766], [-77.2725108085949, 34.49250761515982], [-77.27264564148993, 34.49243551630548], [-77.27266974004029, 34.49250257725352], [-77.27289360830042, 34.492616537888885], [-77.27334551110289, 34.496031918409024], [-77.26759437234571, 34.500074700153405], [-77.26686715413663, 34.506458351203676], [-77.2673140944908, 34.50693279824005], [-77.2721388788933, 34.50803686726922], [-77.2733323456216, 34.50698440730786], [-77.27875512009216, 34.50283410270445], [-77.28056579129075, 34.50109537669617], [-77.28520725823185, 34.49762186258975], [-77.2840939868488, 34.49511874871732], [-77.28410761403309, 34.494312628570086], [-77.28436460224812, 34.49351884312339], [-77.28271417171196, 34.493097188931685], [-77.2825918115267, 34.49294842822782], [-77.28224623333452, 34.492541898919654], [-77.28107857205966, 34.49200774155889], [-77.28153773896437, 34.4902838687252], [-77.28196846797883, 34.489392838719354], [-77.28277393933435, 34.488920595682046], [-77.28278127837554, 34.489180754280255], [-77.284377255511, 34.48958222922523], [-77.28478447604411, 34.490078803325325], [-77.28537635331446, 34.48987757578644], [-77.28555651363979, 34.48981543785467], [-77.2858882408477, 34.48970101528003], [-77.29036288173239, 34.4882049062095], [-77.29208247543201, 34.488323289370605], [-77.29347439341235, 34.48909822921039], [-77.2935725294848, 34.489964115289645], [-77.29517617131881, 34.49022593830297], [-77.2974875026608, 34.489922982631825], [-77.29832137819722, 34.489955720077546], [-77.29941251654778, 34.489804458745525], [-77.30409106257167, 34.488788219871694], [-77.30461235443333, 34.48938800098573], [-77.30795043838617, 34.489728871784365], [-77.31085299763132, 34.49095793893802], [-77.31204676353538, 34.49122838027515], [-77.31289440874465, 34.49370945493135], [-77.31700084394357, 34.496499507120376], [-77.3200344702569, 34.496028396500904], [-77.32959422245818, 34.49489253030541], [-77.33377710953536, 34.49065296323888], [-77.33301315403746, 34.488214286001615], [-77.33165143398777, 34.4872376228373], [-77.3314725292226, 34.48158070528177], [-77.33157473359582, 34.48058716359772], [-77.33170620345108, 34.47947407823541], [-77.3321844872606, 34.47397817271457], [-77.3328627303796, 34.47256774552606], [-77.33644655025893, 34.47012395286294], [-77.34049951101007, 34.47008073904309], [-77.34275196421609, 34.46884962580198], [-77.34765438019761, 34.46739977844058], [-77.3490749769169, 34.46680218994311], [-77.3495999441052, 34.466565839679845], [-77.35426833464413, 34.46557425388613], [-77.36012102792435, 34.46682059052392], [-77.36562032480361, 34.46772141669112], [-77.37167222849311, 34.46780535595368], [-77.37651862355143, 34.4681999454404], [-77.38483069263211, 34.465457007830466], [-77.38574748989834, 34.465148723008134], [-77.38632115526373, 34.46465467793744], [-77.38873453589744, 34.46441341431], [-77.40156588115244, 34.463338782522825], [-77.40408890206338, 34.46104155157412], [-77.40553253862537, 34.46051520595451], [-77.4063758277672, 34.459220562471074], [-77.40712836357773, 34.458914786612326], [-77.40663342197855, 34.45846986686242], [-77.40663672809245, 34.458199335293216], [-77.40744208504408, 34.45669047608503], [-77.40939923257851, 34.45590937305157], [-77.41027947902111, 34.45379227796939], [-77.41291815934792, 34.45608965099241], [-77.41122019204799, 34.45724224454467], [-77.4102244680899, 34.45804434567932], [-77.4105194934495, 34.458669027204], [-77.41021938032513, 34.45945942889027], [-77.41008076748697, 34.46035135256751], [-77.40848638775772, 34.46126706451775], [-77.41275753369482, 34.46287959573599], [-77.41610597412176, 34.462647165149534], [-77.41823975841612, 34.463239117544376], [-77.4219103554497, 34.463729119456104], [-77.42817666525534, 34.46019196869694], [-77.43683509651767, 34.464344223367185], [-77.44005676271283, 34.46426402545796], [-77.44364939237288, 34.46479420400706], [-77.44686775869187, 34.46322786031742], [-77.4503789368665, 34.462628535909545], [-77.45464153173961, 34.46063227344659], [-77.45619920494885, 34.46048858640898], [-77.46040137058799, 34.45989717892991], [-77.46181247961931, 34.45936510755813], [-77.46341896199316, 34.45866562770817], [-77.46508513883882, 34.45733430943524], [-77.46602630786653, 34.456660703634526], [-77.46717573222674, 34.45475072214933], [-77.4660758220553, 34.45339635831678], [-77.46891692320261, 34.45165599863377], [-77.46794124547235, 34.44808705675249], [-77.46494555504135, 34.437126611512795], [-77.46195073296501, 34.426166041271756], [-77.4604536473591, 34.42068570930473], [-77.45895677860105, 34.41520534612215], [-77.45820842551488, 34.41246515282866], [-77.45746012661058, 34.409724951735626], [-77.45671188187816, 34.40698474284451], [-77.45596369130756, 34.40424452615674], [-77.4544674726118, 34.39876406939707], [-77.45297147044315, 34.3932835814682], [-77.45222355053144, 34.390543325818946], [-77.45147568472149, 34.38780306238172], [-77.44998011536677, 34.382322512149194], [-77.44785633785028, 34.374538123095576], [-77.44285854497232, 34.37885634640306], [-77.44431734387501, 34.382033477276266], [-77.44625024303005, 34.38427320414273], [-77.44655660840456, 34.38540935461384], [-77.44793069982882, 34.387622267359845], [-77.44712919907474, 34.39007617914795], [-77.44718659562473, 34.390286486485515], [-77.44700593866774, 34.39038096794769], [-77.44682527628366, 34.390475446139774], [-77.4464065578547, 34.39045408024087], [-77.44614883918446, 34.390233542319805], [-77.44230721758807, 34.389466432203506], [-77.44081443484494, 34.387367875301436], [-77.4412519525014, 34.38728143460479], [-77.44164434218095, 34.386681806412255], [-77.44044868975519, 34.386820865760484], [-77.44022590989476, 34.38708143255442], [-77.43035092892055, 34.386324250985595], [-77.42950550716348, 34.386144411534], [-77.42625977263825, 34.38381273225756], [-77.42647003797374, 34.382761855788], [-77.42612711490543, 34.382270376889814], [-77.4227687687267, 34.38093177564485], [-77.42268488350805, 34.380855760642284], [-77.4219497207388, 34.380889807031664], [-77.41791529790049, 34.38097307881821], [-77.41732982321527, 34.38094308199863], [-77.41285419480836, 34.38294615830809], [-77.4125375553666, 34.38309638278298], [-77.41248853968165, 34.38308409421803], [-77.41244798185613, 34.383158449744336], [-77.41149038486083, 34.3857579837607], [-77.41050913167675, 34.38687397736536], [-77.4082976008465, 34.38727824052392], [-77.40677214858167, 34.389807973495664], [-77.40466993479139, 34.39081240476746], [-77.39987930422377, 34.39587269928718], [-77.39952703136557, 34.395787537711655], [-77.39928119919556, 34.39594021749391], [-77.39979849639546, 34.39602876048577], [-77.39831489526792, 34.40129507295281], [-77.39999147731666, 34.40552217919128], [-77.3918828501576, 34.406022388789815], [-77.39091208057313, 34.4058544225021], [-77.38239321609933, 34.405118642372805], [-77.37984473264206, 34.40132609229966], [-77.37897277109447, 34.40479231473365], [-77.37061425801089, 34.405272949613405], [-77.37024839203978, 34.4052960566473], [-77.37020727996773, 34.40545217197258], [-77.36806448865198, 34.40898670266513], [-77.36944809133527, 34.410617446370466], [-77.3692667954851, 34.41197094998541], [-77.36868793343511, 34.415982921225336], [-77.37089873650106, 34.41737918573283], [-77.37235930937102, 34.420589987156944], [-77.37288890174588, 34.42160455017847], [-77.36981780251108, 34.42380206211797], [-77.36473382774254, 34.42118360092122], [-77.36475455567285, 34.42058572773829], [-77.36344455408786, 34.420153900293926], [-77.3612625566646, 34.421004183238395], [-77.35580765974248, 34.42203473109974], [-77.35418268857896, 34.425671448613706], [-77.35374570015937, 34.42602036967691], [-77.3479590438793, 34.427720262919735], [-77.3443014336959, 34.4289134511942], [-77.34182498346473, 34.42948609324201], [-77.33747700638781, 34.42855603846078], [-77.33632618419041, 34.42680517558428], [-77.33473784452964, 34.42503544541048], [-77.33460597771473, 34.423794493641175], [-77.33117475736287, 34.42020746565844], [-77.32933078260577, 34.420286653098714], [-77.32153796127523, 34.424349746717596]], [[-77.10706349188865, 34.553757914455105], [-77.10050521516038, 34.55354546668941], [-77.10035982177315, 34.553540757695515], [-77.10029710834748, 34.55362310136736], [-77.09520735768265, 34.55693761958649], [-77.09714013272374, 34.56001151325018], [-77.09830442799088, 34.56024112826809], [-77.10249413071804, 34.56275346922161], [-77.11207194343993, 34.55828691362007]], [[-77.43176772948128, 34.39760556039392], [-77.43217545665915, 34.3974228478566], [-77.43250820386139, 34.397156727669575], [-77.43354299621332, 34.39769631313794], [-77.43318626997808, 34.39791482353961], [-77.43274403871156, 34.39802151447347], [-77.43241797173333, 34.39776785756878]], [[-77.13861756738187, 34.57549171891885], [-77.13794876224092, 34.57482293908047], [-77.13721834999139, 34.574092507693834], [-77.13275864513803, 34.57088492964574], [-77.13084570272302, 34.570207455489694], [-77.1303740234601, 34.57177506170022], [-77.12835002186677, 34.57467300563732], [-77.12854057606422, 34.5778954257402], [-77.12933558472513, 34.57803817063931], [-77.12854055748672, 34.57868319504471], [-77.12854069186088, 34.58223093555608], [-77.13006056015922, 34.58819161986236], [-77.1406814410692, 34.58555388255154], [-77.14523831607329, 34.584878465051744], [-77.14662884093941, 34.58428009381285], [-77.14802091311532, 34.583783486157586], [-77.14763678109978, 34.582957284823806], [-77.14608048707832, 34.583219147129064]], [[-77.38147310281768, 34.40731079407036], [-77.38658495056237, 34.40919041391665], [-77.38736647737954, 34.411541128211795], [-77.38317419302857, 34.41356171827999], [-77.37862079745018, 34.4133484397919], [-77.37493880496706, 34.41090075984324], [-77.37953825860046, 34.40982282272741]], [[-77.37915173481005, 34.395369800920356], [-77.38099633037876, 34.39770139230592], [-77.37999885890682, 34.39816008754484], [-77.37977956869284, 34.40022302620648], [-77.38078570299993, 34.400392894810224], [-77.38520450742088, 34.40125243452559], [-77.38552938894509, 34.400637322135196], [-77.3856271615085, 34.39852509922709], [-77.38707117747693, 34.39641549573966]], [[-77.4201647236619, 34.39134672295856], [-77.42072533618649, 34.39163602291188], [-77.42046721764093, 34.39172321914001], [-77.42038616109167, 34.392159241950424], [-77.42044178785788, 34.39408768523936], [-77.41950859604628, 34.394275923013325], [-77.41743982966304, 34.39500289014426], [-77.41326253854061, 34.3952555788114], [-77.4134861717247, 34.39307773843446], [-77.41462022968778, 34.39132314661886], [-77.41474483715167, 34.39119854302648], [-77.41979720706723, 34.39139698708163]], [[-77.38816568644584, 34.42401644217105], [-77.38791266965467, 34.423411785327964], [-77.38912098487387, 34.42351768856072], [-77.3893008519995, 34.42408787248524]], [[-77.40712455076913, 34.40424190995614], [-77.40781515691154, 34.404363084475236], [-77.4080932241337, 34.40471360187997], [-77.40714418910046, 34.4047136010784]], [[-77.39956246145937, 34.57813924730528], [-77.39955916199055, 34.57814643887056], [-77.39955106786901, 34.578167427209536], [-77.3995458778692, 34.578173682842596], [-77.39954076744962, 34.57817670927362], [-77.39952831387026, 34.57818412986332], [-77.39951614138892, 34.57819140869867], [-77.39951115825104, 34.578194352210836], [-77.39949912960823, 34.57820145746155], [-77.39949151532463, 34.57820595517541], [-77.39949122752424, 34.57820259768264], [-77.39949130964256, 34.57820236406467], [-77.39949151546624, 34.57820177851756], [-77.39950271744948, 34.57818647429149], [-77.39950163326642, 34.57817456032542], [-77.39950221748025, 34.57817273924256], [-77.39950382940395, 34.57816771463075], [-77.3995108616885, 34.5781675385864], [-77.3995084794953, 34.578155294151884], [-77.39951453048833, 34.5781461634614], [-77.39951517875978, 34.578145030933655], [-77.39951614300988, 34.57814322919679], [-77.39952752764859, 34.57813102011226], [-77.39952805378579, 34.57813051054682], [-77.39953422441504, 34.57812383838076], [-77.39954076909424, 34.578127409806115]], [[-77.3458791934352, 34.53415857354539], [-77.34588260290963, 34.53416150129906], [-77.3458847657702, 34.53416335857105], [-77.34588727183268, 34.534165510554494], [-77.3458912223226, 34.53416890288309], [-77.345891940756, 34.53416951980965], [-77.34589131942958, 34.53417014457203], [-77.34589119308563, 34.53417017097578], [-77.34589099079038, 34.53417023863723], [-77.34588502596813, 34.534171628174796], [-77.34588265015962, 34.53417368680798], [-77.34588066731801, 34.534174279196506], [-77.3458788217655, 34.534174693843546], [-77.34587770942314, 34.53417516288933], [-77.34587654978552, 34.53417550933955], [-77.34587573056001, 34.53417575408916], [-77.34587480447664, 34.53417568938707], [-77.34587415191288, 34.534175438237085], [-77.34587411886478, 34.53417541021902], [-77.34587387387907, 34.53417523639314], [-77.34587362666676, 34.53417500287995], [-77.34587363262037, 34.53417488840779], [-77.34587340280538, 34.53417455692852], [-77.34587343244121, 34.534174097109386], [-77.34587272821275, 34.53417296032733], [-77.34587268904204, 34.534172774087374], [-77.34587265551194, 34.534172751804434], [-77.34587274110733, 34.534168963604266], [-77.34587263571262, 34.534168812000814], [-77.34587816814742, 34.53416430793813], [-77.34587817987449, 34.534163748533274]], [[-77.39940775719408, 34.57805447086388], [-77.39940776879209, 34.57805459574012], [-77.39940778293298, 34.5780547479955], [-77.39940737222963, 34.578055482207326], [-77.3994068701134, 34.57805713962014], [-77.39940660301015, 34.5780569638618], [-77.3994053310531, 34.57805612689306], [-77.39940504912144, 34.57805612121864], [-77.3994048946155, 34.5780558397099], [-77.39940338035231, 34.578054843299654], [-77.39940352316081, 34.57805408938375], [-77.39940405526329, 34.57805401867825], [-77.3994053311438, 34.57805353981612], [-77.39940585938459, 34.578053472791595], [-77.39940610069681, 34.578053392667556], [-77.39940620270568, 34.578053273141336], [-77.39940671432103, 34.57805325742565], [-77.39940687024958, 34.57805325263587], [-77.3994070624074, 34.5780532467332], [-77.39940706263674, 34.57805324672616], [-77.39940706292012, 34.578053246717445], [-77.39940725502392, 34.57805324081644], [-77.3994074104938, 34.578053236040745], [-77.399407580538, 34.578053379034905], [-77.39940760135696, 34.578053417447144], [-77.39940763978595, 34.57805358016186], [-77.3994076812505, 34.57805373443878], [-77.39940769279347, 34.57805377746021], [-77.399407698603, 34.578053840011556]], [[-77.32336635255756, 34.47393339549667], [-77.31745960000389, 34.47691041903321], [-77.31575897029468, 34.47502702400159], [-77.31659953803607, 34.47433182515806], [-77.31755441221112, 34.47286217797137], [-77.31888072881785, 34.47373780353564]], [[-77.42653449456488, 34.43270473635976], [-77.42651981155315, 34.434389992521616], [-77.4244697410554, 34.433231564151974], [-77.42079005258549, 34.433116123150285], [-77.42026380228296, 34.434407042915154], [-77.4160119740721, 34.43451903487379], [-77.41508169525788, 34.43191991985703], [-77.4150668926425, 34.431881912087796], [-77.41506820685608, 34.43187862993292], [-77.41507470056865, 34.431877833626366], [-77.42042458053874, 34.43177594683839], [-77.42520566538822, 34.43205816912068], [-77.42633816186117, 34.432255408908844]], [[-77.2857468147245, 34.481818504433036], [-77.28297233410018, 34.48553415452647], [-77.28195145960818, 34.486000709888756], [-77.2820299860552, 34.48546005131437], [-77.282030007514, 34.48374956830262], [-77.28221618814975, 34.481881835065266], [-77.28200441520127, 34.48152041118179], [-77.2827587487251, 34.48128344327883], [-77.28574695497782, 34.481812610736135], [-77.28575607068184, 34.48180992708338], [-77.28947409045635, 34.48153069056935], [-77.29224799363026, 34.481345082244644], [-77.29275764188634, 34.48224731009064], [-77.29271762828539, 34.48256415033586], [-77.2927969767708, 34.48420010776607], [-77.29216664627063, 34.48477462821321], [-77.29171910303194, 34.484527918149894], [-77.29113719347531, 34.48420713159882], [-77.29125592649653, 34.4833925246418], [-77.2901455176719, 34.48340633414623], [-77.28896381809366, 34.48299597730349], [-77.28863109631148, 34.4824605622543]], [[-77.34401341900019, 34.45794566388519], [-77.34195740255761, 34.459896230775044], [-77.3371371214773, 34.46049310807359], [-77.33626210247978, 34.460580732727934], [-77.3362544542083, 34.46032852999816], [-77.33243983161671, 34.459613577270886], [-77.33126876095228, 34.45763288554423], [-77.33248573808801, 34.45734824817599], [-77.33572991191994, 34.456789522702], [-77.33901957751499, 34.4566544864807], [-77.34090228698025, 34.45601446410873]], [[-77.24598320171043, 34.51575479288995], [-77.24945148590666, 34.51622327905387], [-77.25095518443524, 34.51634189205361], [-77.25097287782704, 34.51845367582062], [-77.24949558117919, 34.52008113657824], [-77.25133499357125, 34.52241998587798], [-77.24030225044008, 34.528076893209956], [-77.2400939131947, 34.524969027515745], [-77.23928968248192, 34.52400323283908], [-77.23849428839985, 34.52241832685962], [-77.23655914355228, 34.522925721051685], [-77.23850597428128, 34.521407814245066], [-77.2385044373272, 34.518034167310034], [-77.23946024924578, 34.516994552452935], [-77.24137593372338, 34.516541348378524], [-77.2446399149368, 34.515648796820514]], [[-77.38851000257472, 34.45827002896296], [-77.38448635794373, 34.45791849501967], [-77.38296133779313, 34.459037758079546], [-77.38050703145043, 34.45931613878851], [-77.37924710529313, 34.45722935280251], [-77.3799184527417, 34.45709731064406], [-77.38416660723055, 34.456744444538764], [-77.38814516637873, 34.45680682815066], [-77.39079309892179, 34.457078455396385], [-77.39203954392597, 34.4587025651302]], [[-77.4200889721066, 34.44178189172839], [-77.42303694373688, 34.44309651295739], [-77.41895280663645, 34.44327632683012], [-77.41614943418533, 34.443839601035364], [-77.41577242176945, 34.44272470082273], [-77.41403631647296, 34.44181250037796], [-77.41451913931232, 34.44111893308162], [-77.41567317058194, 34.44095758402773], [-77.41781344786764, 34.441938491623276]], [[-77.26446043650002, 34.52058954843337], [-77.2647007150557, 34.52187630182824], [-77.26531918014292, 34.52167317477721], [-77.26815658562359, 34.52034238422989], [-77.27055643804839, 34.52077095141982], [-77.27139091113082, 34.52060408033233], [-77.27183377596802, 34.520776737953085], [-77.27498587878075, 34.52046820261158], [-77.27521836679306, 34.520363029753916], [-77.2752049901312, 34.52022668162846], [-77.27307703377201, 34.51945970378204], [-77.27228024186704, 34.51619425218816], [-77.27230338935765, 34.51598091081355], [-77.2722622044279, 34.5158172043869], [-77.27130620870074, 34.5161176051366], [-77.26538472540297, 34.51894504936354], [-77.26132922635465, 34.52168922016607]], [[-77.26054495219688, 34.49812266781356], [-77.26532709475777, 34.495958469924986], [-77.26525350263698, 34.49293246996203], [-77.26553556150617, 34.49233356611818], [-77.26277924164047, 34.492310742129504], [-77.25972666694302, 34.49535569044899], [-77.25988739417393, 34.49552988652682]], [[-77.29164210666599, 34.50689036743924], [-77.2961597422037, 34.50526031810808], [-77.29734823340267, 34.50470015939739], [-77.29797989495748, 34.50439921820628], [-77.30415128104525, 34.50019627121433], [-77.30424472076726, 34.500111167545946], [-77.30436232185902, 34.499996998098894], [-77.3089737316393, 34.495586761169655], [-77.3068830334565, 34.49439666479912], [-77.30681119660785, 34.49393890682017], [-77.30451324676149, 34.49359310636741], [-77.30202129525395, 34.49462671301859], [-77.30194141386816, 34.495012909634696], [-77.3002268871798, 34.49557107079775], [-77.29816371837151, 34.49662401719935], [-77.29750111866451, 34.49682358487583], [-77.29750961052603, 34.497232824638196], [-77.29487902898785, 34.49952076292994], [-77.29487851128765, 34.49956889837044], [-77.29467978256577, 34.49976614870974], [-77.29292563080558, 34.50180756121992], [-77.2933604162239, 34.50275595523257], [-77.29169966744625, 34.50446335577901], [-77.28965964894287, 34.50428985015316], [-77.2872431662373, 34.50555785408257], [-77.28776669579972, 34.50599370354444], [-77.28791914886733, 34.50620923452389], [-77.29067895632241, 34.50641870050636]], [[-77.44360261575628, 34.43333809679844], [-77.44266815705907, 34.434393522790245], [-77.4400458910527, 34.433156674898086], [-77.44213986688844, 34.43245825139698]], [[-77.3765583220368, 34.45962658103259], [-77.3747214479118, 34.45978051096208], [-77.37427412841492, 34.45995619928118], [-77.37356222424874, 34.459809527429556], [-77.37350420614506, 34.459469234465466], [-77.37368595197658, 34.45927627338355], [-77.37388024882343, 34.45850931269645], [-77.37780316636079, 34.45759681538953]], [[-77.42363592848534, 34.44306002067687], [-77.42406392640027, 34.44100959932992], [-77.42669136538711, 34.44146383488274], [-77.42702779615666, 34.44245153829058]], [[-77.38121536457281, 34.45040828432579], [-77.38224778519464, 34.449698189928085], [-77.38256047757461, 34.44933323686202], [-77.38407450784072, 34.4496289569407], [-77.38478315776591, 34.45041548940956], [-77.3841468198092, 34.450559174070634], [-77.38254385917847, 34.45078551833993]], [[-77.44296694734845, 34.42562946597724], [-77.44167065378599, 34.42513312372412], [-77.44061060366911, 34.42479695221904], [-77.44094182839687, 34.424266014920185], [-77.44234708680627, 34.42388930592597], [-77.44254179003605, 34.42407182323933], [-77.44323341472673, 34.425212843492154]], [[-77.39947745955381, 34.57819319503636], [-77.39947324224285, 34.57820519284209], [-77.3994738800583, 34.578212633627295], [-77.39947028524145, 34.57823215538939], [-77.39944226201023, 34.57826869625585], [-77.3994279209318, 34.578275886722935], [-77.39941591037736, 34.57832146687076], [-77.39945440514934, 34.57834059026487], [-77.39939300477205, 34.57844159480765], [-77.39938715147828, 34.578450130957535], [-77.39937904592142, 34.57845760753936], [-77.39935992767198, 34.57849600695664], [-77.39939300355557, 34.578476469359416], [-77.39940670208581, 34.57846837776139], [-77.39943976841931, 34.57844884571202], [-77.39954600270659, 34.57838609392495], [-77.3995900125878, 34.57836009754711], [-77.39967754515628, 34.57830839248442], [-77.39968530302546, 34.57830380994891], [-77.39968851695147, 34.57830007643763], [-77.39978439099939, 34.578186831576026], [-77.3997840887052, 34.5781837133978], [-77.39971664454346, 34.57806016208057], [-77.39964885002719, 34.578057493602955], [-77.3995900229525, 34.57804346845853], [-77.39957743561621, 34.578096988826225], [-77.39954077002415, 34.578099564070534], [-77.399532743133, 34.57810835034745], [-77.39952789949132, 34.57811769851926], [-77.39952161136077, 34.57812449773688], [-77.39951614346222, 34.578129793412906], [-77.39951503133244, 34.578131624918605], [-77.39951426952531, 34.57813293317928], [-77.39951025462591, 34.57814043516693], [-77.39950629551578, 34.578147351717256], [-77.39950382996643, 34.578151072126076], [-77.39950021229497, 34.57815759935297], [-77.39949247042738, 34.578162614528324], [-77.39949212448106, 34.5781633192988], [-77.39949151672911, 34.57816455742589], [-77.39948989114532, 34.57816786910482], [-77.39948896582547, 34.57816975418871], [-77.39948765780944, 34.578172418910746], [-77.39948546122294, 34.57817689384888], [-77.39947920309257, 34.5781896430595], [-77.39947872446328, 34.578190618134286]], [[-77.34913995704161, 34.551199597910895], [-77.34911526473827, 34.551216934222715], [-77.34911600331347, 34.551219368962336], [-77.3491175973053, 34.55122137922111], [-77.34912205546365, 34.5512298747973], [-77.34913434352433, 34.551231008300356], [-77.34914007482399, 34.55123132629635], [-77.34914190512374, 34.551231427848855], [-77.34914545292946, 34.55123162469491], [-77.34914796693211, 34.55122904786978], [-77.34916021303489, 34.55122328336889], [-77.34915792818228, 34.55121781852132], [-77.34915574581623, 34.55121262717738], [-77.34915463694144, 34.55121133605211], [-77.34915092231132, 34.55120803426691], [-77.34914375902852, 34.55119975233326], [-77.34914318970648, 34.551199132725486], [-77.34914300704152, 34.551198938061], [-77.34914266311708, 34.5511984852793]], [[-77.34591266242347, 34.53416500937523], [-77.3459478663291, 34.53415427867705], [-77.34593931155932, 34.534146932608714], [-77.34593110446129, 34.53413988509017], [-77.34591734337833, 34.5341280683003], [-77.34591242876796, 34.53412384807325], [-77.34590468151578, 34.5341171954206], [-77.34589375308607, 34.534107811054895], [-77.34587717611444, 34.53411668647963], [-77.34587709691742, 34.534120414583434], [-77.34587506792029, 34.53413415154888], [-77.34586974424958, 34.53414106260267], [-77.34586907709533, 34.534143793021904], [-77.34587325476468, 34.53414971370175], [-77.34586881021949, 34.534156853714975], [-77.34586839289832, 34.53415898445264], [-77.34586825138524, 34.53416573491292], [-77.34586752658105, 34.53416632499011], [-77.34587052613129, 34.5341706396491], [-77.34587047130496, 34.53417306610132], [-77.34587144658555, 34.53417371423875], [-77.34587167608197, 34.53417480539576], [-77.34587213698553, 34.53417507736463], [-77.34587267327781, 34.53417534299417], [-77.34587285833584, 34.53417547429929], [-77.3458729957857, 34.53417557182473], [-77.34587345776566, 34.53417596348967], [-77.34587439994104, 34.5341763261015], [-77.34587569552129, 34.53417727380909], [-77.34587708859532, 34.534176987171854], [-77.34587874397114, 34.534178067990595], [-77.34588188345512, 34.534177130046636], [-77.34588736493758, 34.53417598185511], [-77.34589108781972, 34.53417473666703], [-77.34589784997281, 34.53417332349184], [-77.34590351886608, 34.534167623249424]], [[-77.39940792465157, 34.5780540509867], [-77.39940789651735, 34.578053748064264], [-77.39940784061722, 34.57805353972091], [-77.39940778933281, 34.57805334890726], [-77.39940763979892, 34.578053209589726], [-77.39940751679823, 34.57805310615557], [-77.39940725502836, 34.578053114196564], [-77.39940716871186, 34.57805311684801], [-77.39940693157669, 34.578053124132296], [-77.39940687025403, 34.57805312601599], [-77.39940682062549, 34.57805312754047], [-77.39940634976222, 34.57805314200435], [-77.399406171223, 34.578053091780376], [-77.39940602901073, 34.57805311102876], [-77.39940533115572, 34.57805319957436], [-77.3994044571958, 34.57805352758809], [-77.39940311265369, 34.57805370625014], [-77.39940275179829, 34.578055611281044], [-77.39940342189185, 34.5780560522137], [-77.399404097751, 34.57805728362435], [-77.39940533101169, 34.57805730844614], [-77.39940628067352, 34.5780579333393], [-77.39940805717745, 34.57805832106186], [-77.39940740299983, 34.57805656205576], [-77.39940774650282, 34.57805542820229], [-77.39940800898157, 34.578054958970654], [-77.39940797251596, 34.57805456634417], [-77.39940794260774, 34.57805424432129]]]]}, "type": "Feature", "id": "demo3", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.15935199211063, 34.6166747015688], [-77.16322106178758, 34.61516240725311], [-77.1639782702281, 34.614440660081904], [-77.1661849616254, 34.61223398391474], [-77.16737361767383, 34.61172100162369], [-77.1699984629862, 34.61036736608554], [-77.17253641054775, 34.610874941120585], [-77.1751141825493, 34.61089057764221], [-77.17640149138464, 34.61080698769017], [-77.17772298947688, 34.60991597988493], [-77.17930578083528, 34.60889685243659], [-77.17948583426937, 34.6082909645684], [-77.18159123608174, 34.60553239598546], [-77.18169327985544, 34.60531507834534], [-77.18176399806421, 34.605057120115745], [-77.18224408606888, 34.60504040107838], [-77.18529693797171, 34.60414760609798], [-77.19013260340091, 34.602790680602425], [-77.19072876415262, 34.60251535329338], [-77.19149742601167, 34.602321078833334], [-77.1953495476552, 34.601367648608125], [-77.19760140461354, 34.60136764028554], [-77.19987065610218, 34.60109865412282], [-77.20086375692978, 34.601015283501845], [-77.20125209628796, 34.60082090204505], [-77.20288477392904, 34.60051212597013], [-77.20505860057816, 34.599966481568934], [-77.20552397333603, 34.59990251311883], [-77.20675991358118, 34.59975829412698], [-77.20676777680706, 34.59906026970992], [-77.2081706843996, 34.59699739717048], [-77.20813499004227, 34.596096060274014], [-77.20858702053776, 34.59544131331976], [-77.21007615829312, 34.59343258337272], [-77.21177118191311, 34.59337621495213], [-77.21410894109874, 34.59337619087252], [-77.21514424186185, 34.59337618517019], [-77.215661030371, 34.593143020245726], [-77.21577713481425, 34.59292935151611], [-77.21674142300711, 34.59239157117414], [-77.21721408916709, 34.592100183879836], [-77.21737670544148, 34.59203980132624], [-77.2179247509093, 34.59121424992854], [-77.21792437220935, 34.59121358012431], [-77.21792821859032, 34.59120966385942], [-77.21851994200334, 34.590427094916116], [-77.2186993699449, 34.59018978630637], [-77.21860892033331, 34.58938219445818], [-77.21957040418536, 34.58839452350749], [-77.22001067987088, 34.58760748743591], [-77.22092155382936, 34.58730424821148], [-77.22184011245287, 34.586815781768166], [-77.22523241263096, 34.58627624737152], [-77.22552000458707, 34.5862090503988], [-77.22558597813679, 34.58619545190222], [-77.22569483071547, 34.586171014202414], [-77.22773975332717, 34.58548223146164], [-77.22867919323832, 34.584986546031274], [-77.22677729865121, 34.58462567961917], [-77.22604627092205, 34.585169814543164], [-77.22580768008757, 34.584294470073466], [-77.22532688180566, 34.58330200780492], [-77.22565667818745, 34.582397067417475], [-77.2264345116726, 34.58169054268779], [-77.22798958878747, 34.581332051578194], [-77.23091565903283, 34.58041882457399], [-77.23362602861215, 34.57925527812979], [-77.23484245291684, 34.578653692676006], [-77.23792996531145, 34.575823840618455], [-77.24136127129425, 34.57393584442488], [-77.24523636070268, 34.57390716926908], [-77.24670545848615, 34.57343212463826], [-77.24714391623823, 34.57277961720159], [-77.25051472180226, 34.57156258389062], [-77.25212920482001, 34.57033013514331], [-77.2519381619964, 34.569386553726765], [-77.25526555735203, 34.566216328615155], [-77.25533320915403, 34.56588320495685], [-77.25577669086077, 34.565727106128335], [-77.256121328391, 34.56572107947943], [-77.25971709260864, 34.56434299163514], [-77.26005542440114, 34.56427545857129], [-77.26031226874676, 34.56410055247521], [-77.2618003199076, 34.56319870352934], [-77.26260954878879, 34.56289109527298], [-77.26296935350871, 34.5627135909559], [-77.26339896027963, 34.56233480191004], [-77.26330306062893, 34.562039518508506], [-77.26357959372578, 34.56127060079087], [-77.26294400211617, 34.56052189630391], [-77.26227388810976, 34.56000880192559], [-77.26448316285607, 34.55647290026994], [-77.26550428330746, 34.55503769803932], [-77.26648200345628, 34.55393976913359], [-77.26801383178187, 34.55111040570682], [-77.26958024452279, 34.547483029086315], [-77.26819464248307, 34.54528677243675], [-77.26655155401129, 34.5450689336279], [-77.26478597274233, 34.54386762570216], [-77.26422040817462, 34.54347229872567], [-77.26437945022187, 34.54313618963791], [-77.2635116660131, 34.541900285010826], [-77.26488793263684, 34.53962342935007], [-77.26559487751307, 34.53929416981044], [-77.26681611482115, 34.53824126567958], [-77.26766230096024, 34.53619243112951], [-77.26807409410877, 34.53564648941099], [-77.26794245932072, 34.535541246028885], [-77.26655360577392, 34.53449664804239], [-77.26607869460736, 34.534111134222144], [-77.2651984628672, 34.53335645896774], [-77.26725626800655, 34.53281353888489], [-77.26830494713408, 34.5325461567449], [-77.27022254470982, 34.531782978142594], [-77.27158248189417, 34.53127033730824], [-77.27209099586182, 34.531312044754685], [-77.27258874460286, 34.531357653403155], [-77.27603524908261, 34.53079162551989], [-77.27807641020193, 34.53126688039435], [-77.28432235722798, 34.52525333685974], [-77.28427835435463, 34.52501281772566], [-77.28480653813955, 34.52133446583717], [-77.28517400762802, 34.52092860952176], [-77.28960449893366, 34.51755602597705], [-77.29139460484916, 34.51732647068806], [-77.29232780740195, 34.5169837500165], [-77.29892902464559, 34.51342174316203], [-77.30410651466899, 34.51085171146414], [-77.30988023547349, 34.511431150863366], [-77.31036445478057, 34.51175408112657], [-77.3114017143434, 34.51154988431084], [-77.31669391224521, 34.50960691761186], [-77.31981124676184, 34.50769743604766], [-77.32304412385068, 34.506555580680704], [-77.32535538723695, 34.50744587664694], [-77.32779897401932, 34.5085494908829], [-77.32867381185702, 34.50879610620348], [-77.32925887837223, 34.5093055969741], [-77.33266335865585, 34.50963831501255], [-77.33471315048415, 34.51147228546168], [-77.33523388271634, 34.51155445329377], [-77.33548229615425, 34.511698748890275], [-77.33780592097845, 34.513469362804194], [-77.33845118221646, 34.51485169206787], [-77.3385481049184, 34.514883267882624], [-77.33915495462406, 34.514750442308], [-77.34079427608933, 34.513943668707604], [-77.34171661333289, 34.51363481443871], [-77.34563240689411, 34.51232514491879], [-77.34868097035661, 34.50946231323786], [-77.35007913458375, 34.506541809220046], [-77.3544928481937, 34.5041471902313], [-77.35677820471587, 34.501855244889605], [-77.35867002750226, 34.50018971897856], [-77.36089022673572, 34.498950547717186], [-77.3617286492844, 34.49922209989747], [-77.365205632522, 34.49801014832382], [-77.36721762474379, 34.49678577911251], [-77.37142134997592, 34.49574393871825], [-77.37773314609434, 34.497442143900265], [-77.37884939413122, 34.497842712532055], [-77.3797442236577, 34.49806541532945], [-77.38055480648552, 34.497533532871415], [-77.38122800807739, 34.49693816008033], [-77.38501844975639, 34.49316933387094], [-77.38589235647363, 34.492184111811305], [-77.386445826407, 34.492087953431664], [-77.38647205063074, 34.492264340894344], [-77.38675540927856, 34.492604064814444], [-77.3899832420596, 34.49567496600709], [-77.3907174030877, 34.496577431666864], [-77.39233592817382, 34.4964659055582], [-77.39330726912834, 34.49579189872914], [-77.39494769373538, 34.49495841192261], [-77.39715991476385, 34.4936930688031], [-77.398359037968, 34.49078696095978], [-77.39814466240225, 34.490579506695504], [-77.39837579735229, 34.490311534042675], [-77.3985084132359, 34.489614938371396], [-77.40068623751196, 34.489480777117365], [-77.40356981147846, 34.48842566711443], [-77.40413006039452, 34.48835671398676], [-77.40444758844349, 34.4880824444083], [-77.40848081829941, 34.486685396975496], [-77.40939957108282, 34.48616596547531], [-77.41063186775853, 34.48569700943729], [-77.41329656731261, 34.48459657871655], [-77.41471859077441, 34.48528726132523], [-77.41623655206132, 34.48550261519304], [-77.41725668253329, 34.48523362527514], [-77.41859583914362, 34.484280412413625], [-77.41902402688947, 34.48371632937658], [-77.41951964043312, 34.483449583059624], [-77.42063284279828, 34.48212188826166], [-77.42334483360304, 34.4819481412962], [-77.42561160459476, 34.481058743142036], [-77.42613020340629, 34.48004170442441], [-77.42812195441519, 34.47971972348527], [-77.42949452925552, 34.479300961056104], [-77.4320103907394, 34.47868330984369], [-77.43275257104852, 34.47850844518646], [-77.43312029436919, 34.47830230161435], [-77.43476882927284, 34.47711215603939], [-77.43685022275857, 34.47622807362658], [-77.43710223693591, 34.47587003866457], [-77.43776862609958, 34.47560370463255], [-77.43948336235049, 34.47465114924055], [-77.43942162998157, 34.47365703702605], [-77.43984956445635, 34.4724526584815], [-77.44222899744017, 34.47221790753189], [-77.44465235354113, 34.47241102611581], [-77.4453740411959, 34.47240832966361], [-77.4476734272022, 34.47243540180036], [-77.44832576203956, 34.47182021069233], [-77.44938837776766, 34.4714626240008], [-77.45114438967173, 34.47081387391991], [-77.45253721005176, 34.47052774129415], [-77.45318638986252, 34.470304859234346], [-77.45384250932288, 34.46974894396728], [-77.45634722642471, 34.46911455218734], [-77.4570001606524, 34.46890732359787], [-77.45742293989626, 34.468701039084195], [-77.45812116081439, 34.468264009548136], [-77.45900930777138, 34.467898852950455], [-77.45931886626205, 34.46765795802814], [-77.46139570930164, 34.466669072490866], [-77.46187166933741, 34.46652234737003], [-77.4621946220329, 34.46645776832933], [-77.4630593527755, 34.46591142796203], [-77.4633753075787, 34.46585232035062], [-77.46396020398419, 34.46544832113628], [-77.46408261646616, 34.46522060546328], [-77.46448987700371, 34.46500507749665], [-77.46612726518197, 34.46420732606825], [-77.46636394637676, 34.463953049307285], [-77.46683851342088, 34.463747878216296], [-77.46897349304592, 34.46320612230918], [-77.46934532824164, 34.463069408287296], [-77.4693721153142, 34.463038666876976], [-77.4694202954929, 34.463023451647594], [-77.46976390643856, 34.46279289656505], [-77.47109633735826, 34.46175746341786], [-77.47116589178715, 34.461534198118045], [-77.47157914216686, 34.46139271235406], [-77.47093780490079, 34.459047376898006], [-77.46943941652171, 34.45356723246782], [-77.46891692320261, 34.45165599863377], [-77.4660758220553, 34.45339635831678], [-77.46717573222674, 34.45475072214933], [-77.46602630786653, 34.456660703634526], [-77.46508513883882, 34.45733430943524], [-77.46341896199317, 34.45866562770817], [-77.4618124796193, 34.45936510755813], [-77.46040137058799, 34.45989717892991], [-77.45619920494885, 34.46048858640898], [-77.45464153173963, 34.4606322734466], [-77.4503789368665, 34.462628535909545], [-77.44686775869187, 34.46322786031742], [-77.44364939237288, 34.46479420400706], [-77.44005676271283, 34.46426402545796], [-77.43683509651768, 34.46434422336719], [-77.42817666525534, 34.46019196869694], [-77.4219103554497, 34.463729119456104], [-77.41823975841614, 34.463239117544376], [-77.41610597412176, 34.462647165149534], [-77.41275753369482, 34.46287959573599], [-77.40848638775772, 34.46126706451775], [-77.41008076748696, 34.46035135256751], [-77.41021938032512, 34.45945942889027], [-77.41051949344948, 34.458669027204], [-77.4102244680899, 34.45804434567931], [-77.411220192048, 34.45724224454467], [-77.41291815934792, 34.45608965099241], [-77.41027947902111, 34.4537922779694], [-77.4093992325785, 34.45590937305157], [-77.40744208504408, 34.456690476085036], [-77.40663672809245, 34.458199335293216], [-77.40663342197855, 34.45846986686242], [-77.40712836357773, 34.458914786612326], [-77.4063758277672, 34.459220562471074], [-77.40553253862537, 34.46051520595451], [-77.40408890206338, 34.46104155157412], [-77.40156588115244, 34.463338782522825], [-77.38873453589744, 34.46441341431], [-77.38632115526373, 34.46465467793744], [-77.38574748989834, 34.465148723008134], [-77.38483069263211, 34.465457007830466], [-77.37651862355143, 34.4681999454404], [-77.37167222849311, 34.46780535595368], [-77.36562032480363, 34.46772141669112], [-77.36012102792435, 34.46682059052392], [-77.35426833464412, 34.46557425388613], [-77.3495999441052, 34.466565839679845], [-77.3490749769169, 34.46680218994311], [-77.34765438019761, 34.46739977844058], [-77.34275196421609, 34.46884962580197], [-77.34049951101007, 34.47008073904309], [-77.33644655025893, 34.47012395286294], [-77.3328627303796, 34.47256774552606], [-77.3321844872606, 34.47397817271457], [-77.33170620345108, 34.47947407823541], [-77.33157473359582, 34.48058716359772], [-77.3314725292226, 34.48158070528177], [-77.33165143398779, 34.487237622837306], [-77.33301315403747, 34.488214286001615], [-77.33377710953536, 34.49065296323888], [-77.32959422245818, 34.49489253030541], [-77.3200344702569, 34.496028396500904], [-77.31700084394357, 34.49649950712037], [-77.31289440874465, 34.49370945493135], [-77.31204676353538, 34.49122838027515], [-77.31085299763132, 34.49095793893801], [-77.30795043838617, 34.489728871784365], [-77.30461235443333, 34.48938800098572], [-77.30409106257169, 34.488788219871694], [-77.29941251654778, 34.489804458745525], [-77.29832137819722, 34.489955720077546], [-77.2974875026608, 34.489922982631825], [-77.29517617131881, 34.49022593830297], [-77.2935725294848, 34.489964115289645], [-77.29347439341234, 34.48909822921039], [-77.29208247543201, 34.488323289370605], [-77.29036288173239, 34.48820490620951], [-77.2858882408477, 34.48970101528003], [-77.28555651363979, 34.48981543785467], [-77.28537635331446, 34.48987757578644], [-77.28478447604411, 34.49007880332533], [-77.284377255511, 34.48958222922523], [-77.28278127837554, 34.48918075428025], [-77.28277393933433, 34.48892059568205], [-77.28196846797883, 34.489392838719354], [-77.28153773896436, 34.4902838687252], [-77.28107857205966, 34.49200774155889], [-77.28224623333452, 34.492541898919654], [-77.28259181152669, 34.49294842822782], [-77.28271417171196, 34.493097188931685], [-77.28436460224812, 34.49351884312339], [-77.28410761403309, 34.494312628570086], [-77.2840939868488, 34.49511874871732], [-77.28520725823185, 34.49762186258975], [-77.28056579129075, 34.50109537669618], [-77.27875512009216, 34.50283410270445], [-77.2733323456216, 34.50698440730786], [-77.2721388788933, 34.50803686726922], [-77.26731409449081, 34.50693279824006], [-77.26686715413663, 34.506458351203676], [-77.26759437234571, 34.500074700153405], [-77.27334551110289, 34.496031918409024], [-77.27289360830042, 34.49261653788889], [-77.2726697400403, 34.49250257725352], [-77.27264564148993, 34.49243551630548], [-77.2725108085949, 34.49250761515982], [-77.26698951898463, 34.491577029438766], [-77.26680457388302, 34.491222558516014], [-77.26755266336768, 34.488258340438534], [-77.2674205634676, 34.48747157391448], [-77.26754452916975, 34.486580557311356], [-77.26759874662318, 34.48432426405242], [-77.2680063413342, 34.4832855783694], [-77.26945949610564, 34.48064277034048], [-77.26630002762272, 34.480851828811254], [-77.2638747971866, 34.48403086518153], [-77.25836166768343, 34.48830355279546], [-77.25567946339748, 34.49126037673723], [-77.25570485416605, 34.49580554674138], [-77.25808461401056, 34.49620984733059], [-77.25621148716021, 34.499177848996894], [-77.25732911865187, 34.50048377580574], [-77.2583492341773, 34.500542725802255], [-77.25933038265087, 34.50074923588649], [-77.26312068421646, 34.50135206383629], [-77.25920983788198, 34.50575001318066], [-77.25618233241083, 34.50705110291147], [-77.25461139986274, 34.5084876889612], [-77.25262560166433, 34.509566379522646], [-77.25177946866697, 34.50778269065449], [-77.251811402199, 34.50723452714085], [-77.25142221499613, 34.50667578279976], [-77.25016843466895, 34.50573241349271], [-77.24768998257355, 34.50638138068132], [-77.2481585150673, 34.50794702161971], [-77.24767062902825, 34.50938784289676], [-77.2476716572908, 34.51031773364224], [-77.24767156223652, 34.51230885463156], [-77.25170258180725, 34.511171926537614], [-77.25258718191307, 34.51115514252865], [-77.25581356288413, 34.510988490402475], [-77.25690916879611, 34.51234503868662], [-77.25832216663957, 34.51205002109325], [-77.25904065899894, 34.51276855098882], [-77.26251597563423, 34.51125402884492], [-77.26162770773927, 34.51535561035821], [-77.26307103894548, 34.516902219587834], [-77.25880006939612, 34.522749990084364], [-77.25622943975591, 34.5228057610673], [-77.25227660738153, 34.5239986901836], [-77.25130622066914, 34.52360609221732], [-77.24026960375346, 34.52942268870188], [-77.23909972810259, 34.531808797249006], [-77.23515898755247, 34.53689490301804], [-77.23088567531144, 34.538446576052465], [-77.23093185162409, 34.53656107833721], [-77.2285384185653, 34.534855183629205], [-77.22839777829819, 34.533536856042545], [-77.22705247345753, 34.531747057196355], [-77.22612372705272, 34.53131311298299], [-77.22419581664501, 34.533231397085636], [-77.2222838745125, 34.53587763239513], [-77.21945661390534, 34.53835627195119], [-77.217149243058, 34.54077248313651], [-77.215379733782, 34.54320746687084], [-77.2168109697165, 34.546292122958995], [-77.220847726151, 34.54661123233644], [-77.22279487878134, 34.54735371672994], [-77.22274583041204, 34.55166578954748], [-77.22326461187185, 34.55311633084846], [-77.22417551923171, 34.55348259406031], [-77.22507757938817, 34.555787989890796], [-77.22518394827209, 34.555999596463], [-77.2250563308956, 34.556337392336154], [-77.22518259688952, 34.55973417349531], [-77.2248839608134, 34.55995681610601], [-77.2239830300136, 34.562606014343686], [-77.22364425490557, 34.563383555928745], [-77.22364171170227, 34.56342410705624], [-77.22354241735641, 34.56347628282994], [-77.21789671155305, 34.56356954538566], [-77.21538170867247, 34.563512540412646], [-77.21003159298745, 34.563522689269796], [-77.2063250975792, 34.56578475276357], [-77.2057940711245, 34.57188808255823], [-77.20762396652455, 34.572291941350116], [-77.20675265972135, 34.57336065238147], [-77.20562672432011, 34.57368773664935], [-77.20421823801954, 34.574998492683875], [-77.19935903568214, 34.580317370874084], [-77.19433244406017, 34.584676172710196], [-77.18941206785072, 34.58707091331651], [-77.18699837430869, 34.59175781027504], [-77.18513597425438, 34.594274586192114], [-77.18316846235463, 34.59578276371086], [-77.18001394820949, 34.596131891489705], [-77.17108173531628, 34.60070174903768], [-77.16853824840526, 34.60380339645687], [-77.1653135785421, 34.60573657578637], [-77.16147090162914, 34.6074809117594], [-77.1611189964388, 34.60772126164122], [-77.16020330649829, 34.608579447647664], [-77.15485401266312, 34.61266764461739], [-77.15710906160584, 34.614676718589095]], [[-77.31888072881785, 34.47373780353564], [-77.31755441221112, 34.47286217797138], [-77.31659953803609, 34.47433182515806], [-77.31575897029467, 34.47502702400159], [-77.31745960000389, 34.47691041903321], [-77.32336635255756, 34.47393339549667]], [[-77.42633816186117, 34.432255408908844], [-77.42520566538822, 34.43205816912067], [-77.42042458053872, 34.431775946838385], [-77.41507470056865, 34.431877833626366], [-77.41506820685608, 34.43187862993292], [-77.41506689264251, 34.431881912087796], [-77.41508169525788, 34.43191991985703], [-77.4160119740721, 34.43451903487379], [-77.42026380228296, 34.434407042915154], [-77.42079005258549, 34.433116123150285], [-77.42446974105542, 34.433231564151974], [-77.42651981155316, 34.434389992521616], [-77.42653449456488, 34.43270473635976]], [[-77.28863109631148, 34.4824605622543], [-77.28896381809366, 34.48299597730349], [-77.2901455176719, 34.48340633414623], [-77.29125592649653, 34.4833925246418], [-77.29113719347531, 34.48420713159882], [-77.29171910303194, 34.484527918149894], [-77.29216664627063, 34.48477462821321], [-77.29279697677079, 34.48420010776607], [-77.29271762828539, 34.48256415033586], [-77.29275764188633, 34.48224731009064], [-77.29224799363024, 34.481345082244644], [-77.28947409045637, 34.48153069056935], [-77.28575607068184, 34.481809927083376], [-77.28574695497782, 34.481812610736135], [-77.2827587487251, 34.48128344327883], [-77.28200441520127, 34.48152041118178], [-77.28221618814975, 34.481881835065266], [-77.282030007514, 34.48374956830262], [-77.2820299860552, 34.48546005131437], [-77.2819514596082, 34.486000709888756], [-77.28297233410018, 34.48553415452647], [-77.2857468147245, 34.481818504433036]], [[-77.34090228698025, 34.45601446410873], [-77.33901957751499, 34.4566544864807], [-77.33572991191994, 34.456789522702], [-77.33248573808801, 34.45734824817599], [-77.33126876095228, 34.45763288554423], [-77.33243983161672, 34.459613577270886], [-77.33625445420829, 34.46032852999816], [-77.33626210247978, 34.460580732727934], [-77.33713712147731, 34.46049310807359], [-77.34195740255761, 34.459896230775044], [-77.34401341900019, 34.45794566388519]], [[-77.2446399149368, 34.515648796820514], [-77.24137593372338, 34.516541348378524], [-77.2394602492458, 34.516994552452935], [-77.2385044373272, 34.518034167310034], [-77.23850597428128, 34.521407814245066], [-77.23655914355228, 34.522925721051685], [-77.23849428839985, 34.52241832685962], [-77.23928968248192, 34.52400323283907], [-77.2400939131947, 34.52496902751574], [-77.24030225044008, 34.528076893209956], [-77.25133499357125, 34.52241998587798], [-77.24949558117919, 34.52008113657824], [-77.25097287782704, 34.51845367582062], [-77.25095518443524, 34.51634189205361], [-77.24945148590666, 34.51622327905387], [-77.24598320171043, 34.51575479288995]], [[-77.39203954392597, 34.4587025651302], [-77.39079309892179, 34.457078455396385], [-77.38814516637873, 34.45680682815066], [-77.38416660723055, 34.456744444538764], [-77.3799184527417, 34.45709731064406], [-77.37924710529313, 34.45722935280251], [-77.38050703145043, 34.45931613878851], [-77.38296133779313, 34.459037758079546], [-77.38448635794373, 34.45791849501967], [-77.38851000257472, 34.45827002896296]], [[-77.41781344786764, 34.441938491623276], [-77.41567317058195, 34.44095758402773], [-77.41451913931232, 34.44111893308161], [-77.41403631647296, 34.44181250037796], [-77.41577242176945, 34.44272470082273], [-77.41614943418533, 34.443839601035364], [-77.41895280663645, 34.443276326830116], [-77.42303694373688, 34.44309651295739], [-77.4200889721066, 34.44178189172839]], [[-77.26132922635465, 34.52168922016607], [-77.26538472540297, 34.51894504936354], [-77.27130620870074, 34.5161176051366], [-77.2722622044279, 34.5158172043869], [-77.27230338935765, 34.51598091081355], [-77.27228024186704, 34.516194252188164], [-77.27307703377201, 34.51945970378204], [-77.2752049901312, 34.52022668162846], [-77.27521836679306, 34.520363029753916], [-77.27498587878077, 34.52046820261158], [-77.27183377596802, 34.520776737953085], [-77.27139091113082, 34.52060408033233], [-77.27055643804839, 34.52077095141982], [-77.26815658562359, 34.52034238422989], [-77.26531918014292, 34.52167317477721], [-77.2647007150557, 34.521876301828236], [-77.26446043650002, 34.52058954843337]], [[-77.25988739417393, 34.49552988652682], [-77.25972666694302, 34.49535569044899], [-77.26277924164047, 34.492310742129504], [-77.26553556150617, 34.49233356611818], [-77.26525350263698, 34.49293246996202], [-77.26532709475777, 34.495958469924986], [-77.26054495219688, 34.49812266781356]], [[-77.29067895632241, 34.50641870050636], [-77.28791914886733, 34.50620923452389], [-77.28776669579972, 34.50599370354444], [-77.2872431662373, 34.50555785408257], [-77.28965964894287, 34.50428985015316], [-77.29169966744625, 34.50446335577901], [-77.29336041622389, 34.50275595523257], [-77.29292563080558, 34.50180756121992], [-77.29467978256577, 34.49976614870974], [-77.29487851128766, 34.49956889837044], [-77.29487902898785, 34.49952076292994], [-77.29750961052605, 34.4972328246382], [-77.2975011186645, 34.49682358487583], [-77.29816371837151, 34.49662401719936], [-77.3002268871798, 34.49557107079775], [-77.30194141386816, 34.495012909634696], [-77.30202129525395, 34.49462671301859], [-77.30451324676149, 34.49359310636742], [-77.30681119660784, 34.49393890682016], [-77.3068830334565, 34.49439666479912], [-77.3089737316393, 34.49558676116966], [-77.30436232185902, 34.4999969980989], [-77.30424472076727, 34.500111167545946], [-77.30415128104526, 34.50019627121433], [-77.29797989495746, 34.504399218206274], [-77.29734823340267, 34.50470015939739], [-77.2961597422037, 34.50526031810808], [-77.29164210666599, 34.50689036743924]], [[-77.44213986688844, 34.43245825139698], [-77.4400458910527, 34.433156674898086], [-77.44266815705907, 34.434393522790245], [-77.44360261575628, 34.43333809679844]], [[-77.37780316636079, 34.45759681538953], [-77.37388024882343, 34.45850931269645], [-77.37368595197658, 34.45927627338355], [-77.37350420614506, 34.45946923446546], [-77.37356222424873, 34.459809527429556], [-77.37427412841492, 34.45995619928118], [-77.3747214479118, 34.45978051096208], [-77.3765583220368, 34.45962658103259]], [[-77.42702779615666, 34.44245153829058], [-77.42669136538711, 34.44146383488274], [-77.42406392640027, 34.44100959932992], [-77.42363592848534, 34.44306002067687]], [[-77.38254385917847, 34.45078551833993], [-77.3841468198092, 34.450559174070634], [-77.38478315776592, 34.45041548940956], [-77.38407450784071, 34.4496289569407], [-77.38256047757461, 34.44933323686201], [-77.38224778519464, 34.449698189928085], [-77.38121536457281, 34.45040828432579]], [[-77.44323341472673, 34.425212843492154], [-77.44254179003605, 34.42407182323933], [-77.44234708680627, 34.42388930592597], [-77.44094182839687, 34.424266014920185], [-77.44061060366911, 34.42479695221904], [-77.44167065378599, 34.42513312372413], [-77.44296694734845, 34.42562946597724]], [[-77.39947872446328, 34.578190618134286], [-77.39947920309257, 34.5781896430595], [-77.39948546122294, 34.57817689384888], [-77.39948765780943, 34.578172418910746], [-77.39948896582547, 34.578169754188714], [-77.39948989114532, 34.57816786910482], [-77.39949151672911, 34.57816455742589], [-77.39949212448106, 34.57816331929881], [-77.39949247042738, 34.578162614528324], [-77.39950021229497, 34.57815759935297], [-77.39950382996643, 34.578151072126076], [-77.39950629551578, 34.57814735171725], [-77.39951025462591, 34.57814043516693], [-77.39951426952531, 34.57813293317928], [-77.39951503133244, 34.578131624918605], [-77.39951614346222, 34.578129793412906], [-77.39952161136077, 34.57812449773688], [-77.39952789949132, 34.57811769851926], [-77.399532743133, 34.57810835034745], [-77.39954077002415, 34.578099564070534], [-77.3995774356162, 34.57809698882622], [-77.3995900229525, 34.57804346845853], [-77.39964885002719, 34.578057493602955], [-77.39971664454347, 34.57806016208057], [-77.3997840887052, 34.5781837133978], [-77.39978439099939, 34.578186831576026], [-77.39968851695149, 34.57830007643762], [-77.39968530302546, 34.57830380994891], [-77.39967754515628, 34.57830839248442], [-77.3995900125878, 34.57836009754711], [-77.39954600270659, 34.57838609392495], [-77.39943976841931, 34.57844884571202], [-77.39940670208581, 34.57846837776139], [-77.39939300355559, 34.578476469359416], [-77.39935992767198, 34.57849600695664], [-77.39937904592142, 34.57845760753936], [-77.39938715147828, 34.578450130957535], [-77.39939300477205, 34.57844159480765], [-77.39945440514934, 34.57834059026487], [-77.39941591037736, 34.57832146687076], [-77.3994279209318, 34.578275886722935], [-77.39944226201023, 34.57826869625585], [-77.39947028524145, 34.57823215538939], [-77.39947388005828, 34.578212633627295], [-77.39947324224285, 34.57820519284209], [-77.39947745955381, 34.57819319503636]], [[-77.34914266311708, 34.5511984852793], [-77.34914300704152, 34.551198938061], [-77.34914318970648, 34.551199132725486], [-77.34914375902852, 34.55119975233326], [-77.34915092231132, 34.55120803426691], [-77.34915463694145, 34.55121133605211], [-77.34915574581623, 34.55121262717738], [-77.34915792818228, 34.55121781852132], [-77.34916021303489, 34.55122328336889], [-77.34914796693211, 34.55122904786978], [-77.34914545292946, 34.55123162469491], [-77.34914190512376, 34.551231427848855], [-77.34914007482399, 34.55123132629636], [-77.34913434352433, 34.551231008300356], [-77.34912205546367, 34.5512298747973], [-77.3491175973053, 34.55122137922111], [-77.34911600331345, 34.551219368962336], [-77.34911526473827, 34.551216934222715], [-77.34913995704161, 34.551199597910895]], [[-77.34590351886608, 34.534167623249424], [-77.34589784997281, 34.53417332349184], [-77.34589108781972, 34.53417473666703], [-77.34588736493758, 34.53417598185511], [-77.34588188345512, 34.534177130046636], [-77.34587874397114, 34.534178067990595], [-77.34587708859532, 34.534176987171854], [-77.3458756955213, 34.53417727380909], [-77.34587439994104, 34.5341763261015], [-77.34587345776566, 34.53417596348967], [-77.3458729957857, 34.53417557182473], [-77.34587285833584, 34.53417547429929], [-77.34587267327781, 34.53417534299417], [-77.34587213698553, 34.53417507736463], [-77.34587167608197, 34.53417480539576], [-77.34587144658555, 34.53417371423875], [-77.34587047130496, 34.53417306610132], [-77.34587052613129, 34.5341706396491], [-77.34586752658105, 34.53416632499012], [-77.34586825138524, 34.53416573491292], [-77.34586839289832, 34.53415898445264], [-77.34586881021947, 34.534156853714975], [-77.34587325476468, 34.53414971370175], [-77.34586907709533, 34.534143793021904], [-77.34586974424958, 34.53414106260267], [-77.34587506792029, 34.53413415154888], [-77.34587709691742, 34.534120414583434], [-77.34587717611444, 34.53411668647963], [-77.34589375308607, 34.534107811054895], [-77.34590468151578, 34.5341171954206], [-77.34591242876797, 34.53412384807325], [-77.34591734337833, 34.5341280683003], [-77.34593110446129, 34.53413988509017], [-77.3459393115593, 34.534146932608714], [-77.3459478663291, 34.53415427867705], [-77.34591266242347, 34.53416500937523]], [[-77.39940794260774, 34.57805424432129], [-77.39940797251596, 34.57805456634417], [-77.39940800898157, 34.578054958970654], [-77.39940774650282, 34.57805542820229], [-77.39940740299983, 34.57805656205576], [-77.39940805717745, 34.57805832106186], [-77.39940628067352, 34.5780579333393], [-77.39940533101169, 34.57805730844614], [-77.39940409775102, 34.57805728362435], [-77.39940342189185, 34.5780560522137], [-77.39940275179828, 34.578055611281044], [-77.39940311265369, 34.57805370625014], [-77.3994044571958, 34.57805352758809], [-77.39940533115572, 34.57805319957436], [-77.39940602901073, 34.57805311102876], [-77.399406171223, 34.578053091780376], [-77.39940634976222, 34.57805314200435], [-77.3994068206255, 34.57805312754047], [-77.39940687025403, 34.578053126015995], [-77.39940693157669, 34.578053124132296], [-77.39940716871187, 34.57805311684801], [-77.39940725502836, 34.578053114196564], [-77.39940751679825, 34.57805310615557], [-77.39940763979894, 34.57805320958973], [-77.39940778933281, 34.578053348907254], [-77.39940784061722, 34.57805353972091], [-77.39940789651735, 34.578053748064264], [-77.39940792465157, 34.5780540509867]], [[-77.27777438034724, 34.53652844471971], [-77.27794983032936, 34.536570042660195], [-77.28012962406423, 34.53713851039184], [-77.28052378216825, 34.537325031287125], [-77.28260945440385, 34.53778915050383], [-77.28266981032337, 34.53878667106294], [-77.28436918048448, 34.53971750639255], [-77.28528119061932, 34.53973538249042], [-77.28761895390163, 34.53906447578447], [-77.29090808460415, 34.5378426376655], [-77.29226497486054, 34.53715410006264], [-77.29487631172763, 34.53529959043251], [-77.29525260882967, 34.532808635921626], [-77.29513059634822, 34.53144801957623], [-77.29458597718411, 34.53071602244042], [-77.2942345918826, 34.529990927342695], [-77.29356693185764, 34.529133630663345], [-77.293023511088, 34.52803728237754], [-77.29243056546181, 34.52615647111275], [-77.29212790974742, 34.52542318909296], [-77.29239689864643, 34.52465111006002], [-77.29135158929492, 34.519140334063486], [-77.28590574170065, 34.52514065089559], [-77.2847125351098, 34.52528546151291], [-77.2799514370505, 34.53140894072879], [-77.28002934095568, 34.532554087216894], [-77.27797116947693, 34.53567601595087], [-77.27755264341374, 34.53629705792616], [-77.27744906996921, 34.53659220048712]], [[-77.35165953611369, 34.491398604062034], [-77.35165627017827, 34.49141301182714], [-77.35163616787331, 34.49141629689487], [-77.35161328663867, 34.49141314801858], [-77.35163047843676, 34.49140045125625]], [[-77.27683987736995, 34.54467192593351], [-77.2744952500803, 34.54524769279966], [-77.27231388564756, 34.54702589450052], [-77.27445551566367, 34.54690978861579]], [[-77.2336873883077, 34.56694802116336], [-77.23365841849028, 34.567080732744], [-77.23304824672704, 34.567187257099036], [-77.23324379913487, 34.566711690793085]], [[-77.28375605787906, 34.516540330153255], [-77.28394383116024, 34.5171113694809], [-77.28296883143484, 34.51740825059819], [-77.28287842022738, 34.517027643826026]], [[-77.4000254094777, 34.57819664588321], [-77.4000173618565, 34.57811729603198], [-77.39984328408684, 34.577966046350014], [-77.39981040344219, 34.57794560426672], [-77.39978703015294, 34.57794525675241], [-77.39976862582667, 34.577956987615096], [-77.39959002563839, 34.57796182624556], [-77.3995673503265, 34.577981428766876], [-77.39955992855937, 34.57800693339702], [-77.39957363968978, 34.578022609907045], [-77.39955997857079, 34.57808069591464], [-77.39954077060939, 34.578082045004905], [-77.39952410451582, 34.57810028779785], [-77.39951614393851, 34.578115651619015], [-77.3995142490871, 34.57811762641795], [-77.39951425476534, 34.57811966737156], [-77.39951178168491, 34.57812472454746], [-77.3995102827752, 34.57812719301981], [-77.39950626793141, 34.57813408776016], [-77.39950533049203, 34.578135839400204], [-77.39950383039283, 34.57813846006779], [-77.39949838735677, 34.57814849281535], [-77.39949581801, 34.578153498101905], [-77.39949481493845, 34.578155642261606], [-77.39949151694302, 34.57815825554569], [-77.39948927681345, 34.57816066152842], [-77.39948843865491, 34.578160991105754], [-77.39948780858192, 34.57816064918184], [-77.39948689955273, 34.578161124615164], [-77.39948652100162, 34.578161406593985], [-77.39948555862337, 34.57816195336566], [-77.39948536041794, 34.57816221656747], [-77.39948475208664, 34.578163072745085], [-77.39948262780126, 34.57816366231699], [-77.39948228217915, 34.57816349376553], [-77.39948174202499, 34.57816416256851], [-77.39948145059917, 34.57816662562934], [-77.399479203769, 34.57816979421652], [-77.39947607513582, 34.57817161423251], [-77.39947497674211, 34.578173851906016], [-77.39947257053208, 34.57817875389235], [-77.39947051006831, 34.578182951517334], [-77.3994668902839, 34.57819032582364], [-77.39946157671741, 34.57820115073976], [-77.39945663695909, 34.578207588874655], [-77.39944753415416, 34.578229758543536], [-77.39944645972693, 34.57823559325328], [-77.39944226296242, 34.57824106562047], [-77.39940866249997, 34.57825791254176], [-77.3993930091181, 34.578317317248064], [-77.39935478124707, 34.578354965267174], [-77.39932762271778, 34.578394571903324], [-77.39923707570014, 34.578478092653135], [-77.39922202877877, 34.57850831471999], [-77.39920578631474, 34.57858875091113], [-77.39919599231288, 34.578637252941554], [-77.3991700060775, 34.578621916196], [-77.39915865056108, 34.57859555214758], [-77.39913047025246, 34.57856408224264], [-77.39909749241782, 34.57856078576444], [-77.39907828555076, 34.5785864523694], [-77.39905654289925, 34.578610285258165], [-77.39904823872126, 34.578620487144725], [-77.39902891651423, 34.57861427144943], [-77.39900722318647, 34.578608527355456], [-77.39899898787374, 34.578606339630916], [-77.39896269657234, 34.5786238262457], [-77.39891867876344, 34.57864978431917], [-77.39890048300927, 34.578657064725036], [-77.39889049548431, 34.578645006775275], [-77.39884613479927, 34.57864064472483], [-77.39880198114882, 34.57863304842373], [-77.39879069215412, 34.57863647991133], [-77.39871208175134, 34.57865071524185], [-77.39870347751568, 34.578651420892136], [-77.3986990422346, 34.57865708922986], [-77.39866320805359, 34.57865735970315], [-77.39865422638042, 34.578644583879885], [-77.3986186215009, 34.57865876611504], [-77.39860497421816, 34.57866112400127], [-77.39858496785128, 34.57864681477872], [-77.39857687574381, 34.57864921663325], [-77.39855572216578, 34.57867475246377], [-77.39853745531498, 34.57868518295045], [-77.39851793479158, 34.578700354008696], [-77.39850646928812, 34.57870620402787], [-77.39848656567347, 34.57871397258301], [-77.39840796379636, 34.578761044759794], [-77.39837764461741, 34.57878171461518], [-77.39830945815214, 34.5788162055863], [-77.39829378418723, 34.578826484106735], [-77.39823605748934, 34.57886186487356], [-77.39821094967886, 34.57892678663329], [-77.39816208774137, 34.57900512448905], [-77.39814325804795, 34.57906048887382], [-77.39812028436401, 34.57916148833527], [-77.39820864296264, 34.579263341785754], [-77.39821093328621, 34.579263861559554], [-77.39821214801137, 34.579264145023565], [-77.39834651483396, 34.57930963670891], [-77.3984079382675, 34.57931236858927], [-77.39848281780235, 34.57930446971204], [-77.39850644247817, 34.57930008382682], [-77.39853491864945, 34.57929172482933], [-77.39855569529567, 34.579277584937806], [-77.39856337876215, 34.5792735103126], [-77.3986049476008, 34.57926617651448], [-77.3986150293099, 34.57926864249099], [-77.3986506258336, 34.579256493875], [-77.39865419988908, 34.57925482004315], [-77.39865608049055, 34.57925388208802], [-77.39866805466282, 34.579250127976124], [-77.39867882620004, 34.579245126534126], [-77.39868794462896, 34.57923054726799], [-77.39869525683176, 34.579228498891354], [-77.39870345270523, 34.57923073670818], [-77.39872331724018, 34.579215618534384], [-77.39872544590688, 34.5792124736894], [-77.39873083313566, 34.57921156678658], [-77.39875270535683, 34.57920987631965], [-77.39878675138257, 34.57919631569784], [-77.3988019580292, 34.57918789734819], [-77.39881226880959, 34.57918735864759], [-77.39887697072544, 34.5791669125453], [-77.39889678195634, 34.57916008788037], [-77.39890046272194, 34.5791581081025], [-77.39890832931883, 34.579153911346005], [-77.39894971563822, 34.57912816934857], [-77.39896238626125, 34.5791151692444], [-77.39899896921857, 34.57908037930347], [-77.39901698420324, 34.57905997827143], [-77.39903287760191, 34.579038273641885], [-77.39904822341269, 34.57901521682065], [-77.39907126952599, 34.579004495572846], [-77.39909747651215, 34.578976863154054], [-77.39912011753776, 34.579001287731835], [-77.39918292136824, 34.579002553723264], [-77.39919597876799, 34.5790032164725], [-77.39921329941443, 34.57899357695622], [-77.3992605571075, 34.578968864259906], [-77.39929448505998, 34.578918225541855], [-77.39931987229527, 34.57889071971647], [-77.39929448785372, 34.578840164698875], [-77.39927483639617, 34.57881225131632], [-77.39927315542937, 34.578791317081105], [-77.3992490021748, 34.57874578466668], [-77.39934302634433, 34.578728936103616], [-77.39939299501009, 34.578722022576294], [-77.39943985138893, 34.57866112071632], [-77.39954602217338, 34.57859840659334], [-77.39959000568075, 34.57857242584657], [-77.39969620635634, 34.57850969364107], [-77.3997870146419, 34.57845605371863], [-77.3998650222503, 34.578387483756494]], [[-77.34919593967037, 34.551256193015554], [-77.34919462522636, 34.55125293624991], [-77.34919387436796, 34.5512509612608], [-77.34919066882081, 34.55124509092951], [-77.34918072587604, 34.551230739614375], [-77.34918239156744, 34.55122409410123], [-77.34918013709292, 34.551217454972246], [-77.3491766425637, 34.55120365929116], [-77.34916952294581, 34.55119534332469], [-77.34916732698099, 34.5511930597087], [-77.34916045538732, 34.551185736709925], [-77.34914972198594, 34.55117160602584], [-77.34914684123571, 34.55116800466826], [-77.3491457761875, 34.551166673202786], [-77.34914347095525, 34.551163376450035], [-77.3491232539671, 34.55115872588837], [-77.34909447426165, 34.551159841568285], [-77.34906135441149, 34.55121090892474], [-77.34906619939737, 34.55122688062549], [-77.34907024937823, 34.55124023152923], [-77.34909241571803, 34.55124930406579], [-77.34911133155579, 34.5512530733162], [-77.3491275790443, 34.551253974794065], [-77.34914136872428, 34.551254739901765], [-77.34914848276742, 34.55125513461653], [-77.34917075929903, 34.551256370601806], [-77.34918563397956, 34.551257195905215], [-77.34919037049782, 34.551258056452184]], [[-77.34592548989501, 34.534171253494335], [-77.34593223687014, 34.53416919691133], [-77.34595250939515, 34.534170990465334], [-77.34597211108087, 34.53416289864907], [-77.34598624059952, 34.53414875676294], [-77.34598894383315, 34.53412628736431], [-77.34598044390637, 34.534118988390844], [-77.3459542273368, 34.534096475956005], [-77.34595159244746, 34.53409421334912], [-77.3459499209607, 34.53409277802462], [-77.34594244945762, 34.53408636216079], [-77.34591424108511, 34.53406213931893], [-77.34589971231732, 34.534065558678854], [-77.34589958170238, 34.53407323191323], [-77.34588937137966, 34.53410149084824], [-77.34586869799773, 34.53411255951925], [-77.34586839119042, 34.53412700210171], [-77.34586716727352, 34.53413528841421], [-77.34586292349141, 34.534140797584094], [-77.34586286285418, 34.53414355842411], [-77.34586280229982, 34.534146315490865], [-77.3458659425344, 34.5341507658966], [-77.34586258613038, 34.53415615784741], [-77.34586252572385, 34.53415890818374], [-77.34586321130021, 34.53416109034771], [-77.34586309200148, 34.534166477323254], [-77.3458666641765, 34.53416994662153], [-77.34586831115526, 34.53417231569393], [-77.34586828709799, 34.5341733803982], [-77.34587020412906, 34.53417465439013], [-77.34587027819563, 34.5341750065449], [-77.34587137515224, 34.53417565383442], [-77.34587161168398, 34.534175770990345], [-77.34587264909983, 34.534176391653816], [-77.34587276361843, 34.534176488742276], [-77.34587290133308, 34.53417654174404], [-77.34587356249259, 34.53417702537744], [-77.34587261654542, 34.53417780362097], [-77.34587162350562, 34.53417735145143], [-77.34587033001775, 34.534176911743984], [-77.3458697991785, 34.53417684635409], [-77.34586957249952, 34.5341768184313], [-77.34586765619859, 34.5341765823773], [-77.34586651442427, 34.53417644173112], [-77.34586142992002, 34.53417752263843], [-77.3458560071527, 34.53417514742248], [-77.34585428212353, 34.53417493492961], [-77.34584954805388, 34.53417607685475], [-77.34585419082933, 34.53417889455036], [-77.34585709266304, 34.53418080458586], [-77.34585955488507, 34.534182287545185], [-77.3458662861692, 34.53418634169635], [-77.34586819247903, 34.534187489837926], [-77.3458698079388, 34.53418846280475], [-77.34587838520201, 34.53419362875964], [-77.34588029994617, 34.53419341261302], [-77.34590053426723, 34.53419169205455], [-77.34590276638784, 34.53419149687884], [-77.34590296504746, 34.53419164413653], [-77.3459032229807, 34.53419146342864], [-77.34590333943794, 34.53419128840341], [-77.34590364114948, 34.53419083495716], [-77.34591459849045, 34.53417436702663]], [[-77.3986911836658, 34.578212872704604], [-77.39868726723004, 34.578221505927914], [-77.39868898806894, 34.57822784268267], [-77.3986911828362, 34.57823194541551], [-77.39869428944448, 34.57823463275652], [-77.39870310190236, 34.57823628488452], [-77.39870349545336, 34.578236079943096], [-77.39870565130269, 34.57823401812244], [-77.39872241600376, 34.57822777419966], [-77.39871830284426, 34.578218560442], [-77.39871084670314, 34.57821697624158], [-77.39870349644121, 34.57821329103786], [-77.39870165366554, 34.578212367834624], [-77.39869161963904, 34.57821229961207]], [[-77.39940978042989, 34.57805992940372], [-77.39940966136147, 34.578058468885345], [-77.39940902573639, 34.578057896218425], [-77.39940840921246, 34.578057045372816], [-77.39940797125287, 34.57805586775139], [-77.39940812077599, 34.578055374197255], [-77.39940823503015, 34.5780551699458], [-77.39940817623983, 34.57805453694823], [-77.39940815070017, 34.57805426196185], [-77.39940814461048, 34.57805412688912], [-77.3994081280214, 34.57805401777869], [-77.39940810853518, 34.57805380796987], [-77.3994081002412, 34.57805371866831], [-77.3994080832427, 34.578053657882954], [-77.3994080245649, 34.57805343661787], [-77.39940799998395, 34.57805334500305], [-77.39940799312978, 34.57805331950076], [-77.39940763980661, 34.57805299031711], [-77.39940762310269, 34.57805297627039], [-77.39940746461517, 34.578052981138775], [-77.39940725503388, 34.57805295655239], [-77.39940698636639, 34.578052925034505], [-77.39940687026495, 34.57805281394508], [-77.39940648688437, 34.5780527060982], [-77.39940570809001, 34.578052811507746], [-77.39940533116766, 34.57805285933261], [-77.3994048591283, 34.578053036497934], [-77.39940270214657, 34.57805332311653], [-77.39940225287675, 34.57805569490557], [-77.39940169357294, 34.5780563015981], [-77.39940225283735, 34.578056818000555], [-77.39940314638059, 34.578058446030056], [-77.39940533097027, 34.578058489999215], [-77.39940565211951, 34.578058701320714], [-77.39940660668256, 34.57805890965441], [-77.39940707986383, 34.5780602737293]]]]}, "type": "Feature", "id": "demo4", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16249278954537, 34.61947240005365], [-77.16967842754836, 34.616508345459366], [-77.17069651155825, 34.61625225249662], [-77.17173384892759, 34.615838296101515], [-77.17924384421791, 34.61333812512291], [-77.18008923544531, 34.6127300885914], [-77.18461038928726, 34.6102809784648], [-77.18603846663318, 34.609430666759685], [-77.18629552797778, 34.6090923025595], [-77.18700761765207, 34.60895394358331], [-77.18866491637336, 34.60876592473666], [-77.19131371567155, 34.608298202362505], [-77.1939637209861, 34.6067855797756], [-77.19462958434042, 34.60634024644111], [-77.19488976120572, 34.60622008791677], [-77.19517864828788, 34.60614707352007], [-77.1972162304516, 34.605569787608545], [-77.20311215921018, 34.603807169222094], [-77.20373356275802, 34.603569972746314], [-77.2046671115952, 34.603363713475304], [-77.20860196140006, 34.60264231188999], [-77.21097847132673, 34.60159845081918], [-77.21250878671164, 34.600858741785316], [-77.21345988164742, 34.60028808732168], [-77.21462191450517, 34.59906183269917], [-77.21515696159427, 34.59795499583356], [-77.214906467198, 34.59663145927298], [-77.21807832628333, 34.59529450684199], [-77.21838083881212, 34.59471712389823], [-77.21918473603472, 34.593198628363574], [-77.22002595228636, 34.59176748442716], [-77.22024033371495, 34.59139656175396], [-77.22074952565286, 34.59089224260137], [-77.2217511549548, 34.58963044881726], [-77.22251871747912, 34.5887257522358], [-77.22447722009142, 34.58826814052661], [-77.22726849218081, 34.587692802317065], [-77.2282531658368, 34.587471740404595], [-77.23043504746377, 34.586545220656575], [-77.23124472027942, 34.58597142117286], [-77.23274572525578, 34.5852596466177], [-77.23522304715897, 34.584251935578244], [-77.23706130758872, 34.58339657792406], [-77.23721356925425, 34.58330919248705], [-77.2389253096625, 34.5822868404819], [-77.24081991040967, 34.58170816743953], [-77.24150297273749, 34.58128382996934], [-77.24295412042039, 34.580612355062634], [-77.24399611570018, 34.58007314689925], [-77.24594894767407, 34.579161958866806], [-77.24665037726906, 34.57864200277818], [-77.24724536362781, 34.57844382133794], [-77.2481648202343, 34.5776929360487], [-77.24952472409119, 34.57673801673575], [-77.249987006471, 34.57635175695719], [-77.25114544666042, 34.575556197790775], [-77.25341024256699, 34.57413863775707], [-77.25552688954963, 34.57356047466966], [-77.2556439843849, 34.57349661072697], [-77.25576221810338, 34.57345850896316], [-77.25586717169234, 34.573339111552265], [-77.25714677594807, 34.572204318610176], [-77.25734359164102, 34.57169762788661], [-77.258098604151, 34.57103373841348], [-77.25914725535299, 34.5699542353979], [-77.25976412047558, 34.56927443655625], [-77.26181405563219, 34.567796524428424], [-77.26301350512213, 34.56690691762679], [-77.26367640940387, 34.566539932692784], [-77.26552679548239, 34.5653119154627], [-77.26615591529662, 34.564849644657144], [-77.26643147571849, 34.564689448293024], [-77.26753193180794, 34.56315641947124], [-77.267596974744, 34.56307764844036], [-77.26791093656414, 34.562703158559394], [-77.26965037183285, 34.560054844149576], [-77.27052573497859, 34.55937032884886], [-77.27091611707299, 34.55909905593255], [-77.2713385908754, 34.558927042982155], [-77.27656132987812, 34.55590716418497], [-77.27749997310383, 34.555418289897815], [-77.28067335783443, 34.552468176109464], [-77.28085804673493, 34.552307184103576], [-77.28142917431171, 34.55163522539148], [-77.28369976701171, 34.548866670365044], [-77.28392556075214, 34.5486105494082], [-77.28416190195671, 34.54843043434962], [-77.28720296097036, 34.54493035459747], [-77.2877530332316, 34.54466537731337], [-77.29076717026497, 34.54378529643367], [-77.29539152526475, 34.5435017270558], [-77.29707490929982, 34.54268227414918], [-77.29987831662329, 34.541712522328666], [-77.30055039881155, 34.541647239897635], [-77.3033973402352, 34.54094753549669], [-77.3049211806875, 34.54019413210428], [-77.3050837220482, 34.54015021626683], [-77.30657308856223, 34.539457815678794], [-77.30697029467038, 34.53920479174552], [-77.30727299315167, 34.53891734994838], [-77.30784270608129, 34.53764218285002], [-77.30978942839428, 34.53623482181103], [-77.31125138108115, 34.535327589081625], [-77.31355737185447, 34.53409797653233], [-77.31455343410616, 34.532961061527566], [-77.31487911081743, 34.530813334914484], [-77.31450019516996, 34.530045624874624], [-77.31308946690314, 34.52943206557815], [-77.31175461244129, 34.52931567113643], [-77.30993939111792, 34.529850082783895], [-77.30849095919831, 34.529853429168845], [-77.3082644520461, 34.52989723762508], [-77.30678657931931, 34.53038278210234], [-77.30441032062974, 34.531494451970765], [-77.30428599078212, 34.53193405276287], [-77.30358573269109, 34.532952066801855], [-77.30211009160986, 34.53286149791642], [-77.30200575356947, 34.53282677222089], [-77.30199173836223, 34.53280382859582], [-77.30144955221039, 34.5319194333838], [-77.30115841947372, 34.53153732056713], [-77.30049945094396, 34.530658581361905], [-77.30022931872526, 34.53030970482656], [-77.29984864287636, 34.52977180254148], [-77.29880157226245, 34.52838254872667], [-77.29840042892235, 34.527832357756154], [-77.29802040734049, 34.52689312094367], [-77.29819121829097, 34.5265116939574], [-77.29859929241452, 34.52518749390929], [-77.29930280048956, 34.52439369914927], [-77.30049618579156, 34.52213645660284], [-77.30305488535588, 34.51993826185939], [-77.30391787585202, 34.518856618968286], [-77.3055330744154, 34.51958247476455], [-77.30904802784896, 34.5197812705878], [-77.31012650359962, 34.521884017678865], [-77.31047679116081, 34.522561157393525], [-77.31392073137391, 34.52229489202699], [-77.31160401347253, 34.52357396492074], [-77.31254312730165, 34.52445127699489], [-77.31290757752608, 34.52458329550693], [-77.31318244365545, 34.525467320148636], [-77.31382800017629, 34.52465751808805], [-77.31639305850166, 34.52245571042177], [-77.31677057126082, 34.522116044464994], [-77.32204377419345, 34.52153373901308], [-77.32268422591376, 34.52197537628744], [-77.32312438835869, 34.52123633907152], [-77.3255746456765, 34.520793199549686], [-77.32585412414073, 34.52069014026683], [-77.32610932344086, 34.5207028844168], [-77.32836178274079, 34.52061516022907], [-77.32899417592273, 34.520683425128595], [-77.33001386470684, 34.520617268418576], [-77.3305661306215, 34.52059697495212], [-77.33125154035078, 34.52035941352717], [-77.33113538873299, 34.52080019903351], [-77.33156818483508, 34.521085118969914], [-77.33212900967094, 34.52090106174208], [-77.33248932076548, 34.520829219978474], [-77.33336166085972, 34.520693464440036], [-77.33370531353563, 34.520627100915604], [-77.33396514486954, 34.5205543015871], [-77.3343345996159, 34.52034014864641], [-77.3352947225965, 34.51978747500098], [-77.33587202478493, 34.519495647064225], [-77.33687976460277, 34.51913489630383], [-77.33702345843326, 34.519062741229966], [-77.33727107596152, 34.51893853258999], [-77.33798531850013, 34.518537511502686], [-77.33847025237617, 34.51824596733968], [-77.3393292646881, 34.518108600926666], [-77.34004767170916, 34.51792045719621], [-77.34064182698201, 34.51784387586408], [-77.34162159488821, 34.517745603237195], [-77.34266149816547, 34.51751763834112], [-77.34386371979733, 34.5174255031741], [-77.34477286325165, 34.5172465378829], [-77.347058489661, 34.51699384997121], [-77.3479197391342, 34.51693620845599], [-77.34875167265099, 34.516769981866524], [-77.35320156604112, 34.516010387548945], [-77.35423047869634, 34.51557188580804], [-77.35582812493959, 34.51527534306423], [-77.35738772130962, 34.51480424086304], [-77.35837462964778, 34.514554548349864], [-77.36001629747368, 34.51370599545678], [-77.36055915005502, 34.513414021325325], [-77.36248494094846, 34.51258129534369], [-77.36373093307462, 34.512003453643864], [-77.36456926152772, 34.51160886948004], [-77.3648949250901, 34.51104456345054], [-77.36560423719979, 34.51012568300694], [-77.36693807424857, 34.50903818166404], [-77.36986774884755, 34.50850769915256], [-77.370091717056, 34.508411596406226], [-77.37021523430354, 34.508396096471586], [-77.3708182923474, 34.508232326539115], [-77.37325585591446, 34.507321100078954], [-77.37504627985712, 34.5067734926759], [-77.37640623720769, 34.50683269572261], [-77.3776623966638, 34.50646704858879], [-77.37957192910672, 34.50566686907034], [-77.38054505982011, 34.50547574078977], [-77.382663442211, 34.50461042028001], [-77.3827358855531, 34.504573579056625], [-77.38275019597748, 34.50456199292886], [-77.38283937764584, 34.504540362579355], [-77.38481407059832, 34.50357948172329], [-77.38590937049722, 34.50305458465424], [-77.38687010900978, 34.502593175920424], [-77.38870405707542, 34.5017355997721], [-77.38895205413037, 34.5016194556437], [-77.38927089833709, 34.501536383796775], [-77.39225139295823, 34.50022028089566], [-77.39336742997064, 34.499794326323396], [-77.3951616326706, 34.49900471660266], [-77.39542092254122, 34.498861514722755], [-77.3955626333323, 34.49878704435797], [-77.39756720478942, 34.49786426475448], [-77.3985945719376, 34.497314346265256], [-77.40144611909659, 34.49617409195296], [-77.40176150183663, 34.49606162700963], [-77.40199565612906, 34.496045396102566], [-77.40238782106701, 34.49584286440123], [-77.40492977903308, 34.49474418603755], [-77.40637319078095, 34.494201706165235], [-77.40749610783243, 34.493643112585424], [-77.40766851849597, 34.493579702366766], [-77.40872140623446, 34.49296685696983], [-77.41000979860601, 34.49229033532401], [-77.41112609781146, 34.49175948170073], [-77.41248869381332, 34.491505624168674], [-77.41272885324427, 34.49135053335764], [-77.41299092149524, 34.4912222218055], [-77.41395936676896, 34.49076053375154], [-77.41486837219402, 34.49035741426149], [-77.41524807921637, 34.490198833088684], [-77.41585137945098, 34.490017483439644], [-77.41607296873754, 34.48983746984875], [-77.4165763301295, 34.489656358968126], [-77.4169839991605, 34.48939986843622], [-77.41727258530257, 34.48929931842873], [-77.4176295765702, 34.488980144190705], [-77.4179739606039, 34.48877494395652], [-77.41822200664937, 34.48807983400873], [-77.41954457118906, 34.48775690230781], [-77.4199351460494, 34.48752412979689], [-77.42063607611914, 34.486876980945944], [-77.42189616392785, 34.48650642750728], [-77.42241841616298, 34.48629996878273], [-77.42295209995996, 34.48562644333049], [-77.42422582302119, 34.485175820650426], [-77.4243221753596, 34.485104300557474], [-77.42440219689108, 34.48505024953386], [-77.42509534979838, 34.484291891453886], [-77.42587798982814, 34.48377452664171], [-77.42885774505763, 34.48241493733188], [-77.43030639966027, 34.48207229421799], [-77.4313709816621, 34.481757420446726], [-77.43187611152679, 34.481647180628315], [-77.43277003907704, 34.48142424442086], [-77.43342333605658, 34.48121110459232], [-77.43390170529477, 34.48116402860587], [-77.43534488021818, 34.480204528181304], [-77.43577843981726, 34.479979516458435], [-77.43618711201076, 34.47967243601886], [-77.4375857826823, 34.47896773699741], [-77.43788263299497, 34.47862593045528], [-77.43851274533974, 34.47832838325478], [-77.44059132032268, 34.478038251527664], [-77.44108670693394, 34.47789375709519], [-77.44119596965773, 34.47786013575115], [-77.44184826366907, 34.477833943738545], [-77.44237302099702, 34.4776740159197], [-77.44249361496716, 34.477302695728774], [-77.44347705364022, 34.4767870099266], [-77.44360820679807, 34.4766562727618], [-77.44394680391876, 34.476589793468705], [-77.44505782443622, 34.47617269578093], [-77.44600029939349, 34.476166919883454], [-77.44630476908144, 34.47603435857697], [-77.44648616664267, 34.475678768816], [-77.44672963598458, 34.4753804582293], [-77.44817575227975, 34.47427399708504], [-77.44829565269512, 34.47418192020008], [-77.44856920782011, 34.47412305975648], [-77.4498835926054, 34.47376555320456], [-77.4507037626748, 34.473671673393255], [-77.4510101461552, 34.47357176643615], [-77.45131232837856, 34.47327179931859], [-77.45196461879418, 34.472944799683965], [-77.45307060461765, 34.47247966879809], [-77.45366354087047, 34.472038222210045], [-77.45477721735713, 34.471736820886534], [-77.45547989164666, 34.471443187684216], [-77.45622362441254, 34.47090615094689], [-77.45783927648228, 34.47022429128797], [-77.45885705740716, 34.46980970838654], [-77.46029772549745, 34.46936806155257], [-77.46039725844287, 34.46932043202451], [-77.46156353568708, 34.46874875878043], [-77.46265033035078, 34.46812478079159], [-77.46271606730011, 34.46808719971347], [-77.46387201154535, 34.467494377598975], [-77.46442885997574, 34.46714770995751], [-77.46487560174289, 34.46684584118917], [-77.46492456960303, 34.4668177772607], [-77.46497633434952, 34.466784421688544], [-77.46573622393778, 34.46602410649], [-77.46722042975267, 34.46561385636517], [-77.46733324731052, 34.4655573437913], [-77.46756094191193, 34.465510450736495], [-77.46877463005698, 34.465124392109125], [-77.4697830789086, 34.46467028107645], [-77.47020372514908, 34.46441422556366], [-77.47079847373568, 34.46373167952229], [-77.47210586271191, 34.46331880801162], [-77.47206173885613, 34.46315746468277], [-77.47168708061412, 34.46178743737753], [-77.47157914216686, 34.46139271235406], [-77.47116589178715, 34.461534198118045], [-77.47109633735826, 34.46175746341786], [-77.46976390643854, 34.46279289656505], [-77.4694202954929, 34.463023451647594], [-77.4693721153142, 34.463038666876976], [-77.46934532824163, 34.46306940828729], [-77.46897349304592, 34.46320612230918], [-77.46683851342088, 34.463747878216296], [-77.46636394637676, 34.463953049307285], [-77.46612726518195, 34.46420732606824], [-77.46448987700371, 34.46500507749665], [-77.46408261646616, 34.46522060546328], [-77.46396020398419, 34.46544832113628], [-77.4633753075787, 34.46585232035062], [-77.4630593527755, 34.46591142796202], [-77.4621946220329, 34.46645776832933], [-77.46187166933743, 34.46652234737004], [-77.46139570930166, 34.466669072490866], [-77.45931886626205, 34.46765795802814], [-77.45900930777137, 34.467898852950455], [-77.45812116081439, 34.468264009548136], [-77.45742293989626, 34.468701039084195], [-77.4570001606524, 34.46890732359787], [-77.45634722642471, 34.46911455218734], [-77.45384250932288, 34.46974894396728], [-77.45318638986252, 34.470304859234346], [-77.45253721005176, 34.47052774129415], [-77.45114438967173, 34.47081387391991], [-77.44938837776766, 34.4714626240008], [-77.44832576203956, 34.47182021069233], [-77.4476734272022, 34.47243540180036], [-77.4453740411959, 34.472408329663615], [-77.44465235354113, 34.47241102611581], [-77.44222899744017, 34.47221790753189], [-77.43984956445635, 34.4724526584815], [-77.43942162998157, 34.47365703702605], [-77.43948336235049, 34.47465114924055], [-77.4377686260996, 34.47560370463255], [-77.43710223693591, 34.47587003866457], [-77.43685022275857, 34.47622807362657], [-77.43476882927283, 34.47711215603939], [-77.43312029436919, 34.47830230161435], [-77.43275257104852, 34.47850844518646], [-77.4320103907394, 34.47868330984369], [-77.42949452925552, 34.479300961056104], [-77.42812195441519, 34.47971972348527], [-77.42613020340629, 34.4800417044244], [-77.42561160459476, 34.48105874314203], [-77.42334483360304, 34.4819481412962], [-77.42063284279828, 34.48212188826166], [-77.41951964043312, 34.483449583059624], [-77.41902402688947, 34.483716329376584], [-77.41859583914362, 34.484280412413625], [-77.41725668253329, 34.48523362527514], [-77.41623655206132, 34.48550261519304], [-77.41471859077441, 34.48528726132523], [-77.41329656731261, 34.48459657871655], [-77.41063186775853, 34.48569700943729], [-77.40939957108282, 34.48616596547531], [-77.40848081829941, 34.486685396975496], [-77.40444758844349, 34.4880824444083], [-77.40413006039454, 34.48835671398676], [-77.40356981147846, 34.48842566711443], [-77.40068623751196, 34.489480777117365], [-77.3985084132359, 34.489614938371396], [-77.39837579735229, 34.490311534042675], [-77.39814466240225, 34.490579506695504], [-77.39835903796802, 34.49078696095978], [-77.39715991476385, 34.4936930688031], [-77.39494769373539, 34.49495841192262], [-77.39330726912834, 34.49579189872914], [-77.39233592817382, 34.4964659055582], [-77.3907174030877, 34.496577431666864], [-77.3899832420596, 34.49567496600709], [-77.38675540927856, 34.492604064814444], [-77.38647205063074, 34.492264340894344], [-77.386445826407, 34.49208795343166], [-77.38589235647363, 34.492184111811305], [-77.38501844975639, 34.49316933387094], [-77.38122800807737, 34.49693816008033], [-77.38055480648552, 34.497533532871415], [-77.37974422365768, 34.49806541532945], [-77.37884939413124, 34.49784271253206], [-77.37773314609433, 34.497442143900265], [-77.37142134997592, 34.49574393871825], [-77.36721762474379, 34.49678577911251], [-77.36520563252202, 34.49801014832382], [-77.3617286492844, 34.49922209989748], [-77.36089022673573, 34.49895054771719], [-77.35867002750226, 34.50018971897856], [-77.35677820471587, 34.501855244889605], [-77.3544928481937, 34.5041471902313], [-77.35007913458377, 34.506541809220046], [-77.34868097035661, 34.50946231323786], [-77.34563240689411, 34.51232514491879], [-77.34171661333289, 34.51363481443871], [-77.34079427608933, 34.5139436687076], [-77.33915495462406, 34.514750442308], [-77.33854810491839, 34.514883267882624], [-77.33845118221646, 34.51485169206787], [-77.33780592097845, 34.513469362804194], [-77.33548229615425, 34.511698748890275], [-77.33523388271634, 34.51155445329377], [-77.33471315048415, 34.51147228546167], [-77.33266335865585, 34.50963831501255], [-77.32925887837223, 34.5093055969741], [-77.32867381185702, 34.508796106203484], [-77.32779897401933, 34.5085494908829], [-77.32535538723695, 34.50744587664695], [-77.32304412385068, 34.506555580680704], [-77.31981124676184, 34.50769743604766], [-77.31669391224521, 34.50960691761186], [-77.3114017143434, 34.51154988431084], [-77.31036445478057, 34.51175408112657], [-77.30988023547349, 34.511431150863366], [-77.30410651466899, 34.51085171146414], [-77.29892902464559, 34.51342174316203], [-77.29232780740195, 34.5169837500165], [-77.29139460484916, 34.51732647068806], [-77.28960449893364, 34.51755602597705], [-77.28517400762802, 34.52092860952176], [-77.28480653813955, 34.52133446583717], [-77.28427835435463, 34.52501281772566], [-77.28432235722796, 34.52525333685974], [-77.27807641020192, 34.53126688039434], [-77.27603524908261, 34.53079162551988], [-77.27258874460286, 34.53135765340315], [-77.27209099586182, 34.531312044754685], [-77.27158248189417, 34.53127033730824], [-77.27022254470982, 34.531782978142594], [-77.26830494713408, 34.5325461567449], [-77.26725626800655, 34.53281353888489], [-77.26519846286719, 34.53335645896774], [-77.26607869460737, 34.534111134222144], [-77.26655360577392, 34.53449664804239], [-77.26794245932072, 34.53554124602889], [-77.26807409410877, 34.535646489410986], [-77.26766230096024, 34.536192431129514], [-77.26681611482115, 34.53824126567958], [-77.26559487751307, 34.53929416981044], [-77.26488793263684, 34.53962342935007], [-77.2635116660131, 34.541900285010826], [-77.26437945022187, 34.54313618963791], [-77.26422040817462, 34.54347229872567], [-77.26478597274233, 34.54386762570217], [-77.26655155401129, 34.5450689336279], [-77.26819464248308, 34.54528677243675], [-77.26958024452279, 34.547483029086315], [-77.26801383178187, 34.55111040570682], [-77.26648200345628, 34.55393976913359], [-77.26550428330746, 34.55503769803932], [-77.26448316285607, 34.55647290026994], [-77.26227388810976, 34.56000880192559], [-77.26294400211617, 34.56052189630391], [-77.26357959372578, 34.56127060079087], [-77.26330306062893, 34.562039518508506], [-77.26339896027963, 34.56233480191004], [-77.26296935350871, 34.5627135909559], [-77.26260954878879, 34.56289109527298], [-77.2618003199076, 34.56319870352934], [-77.26031226874676, 34.56410055247521], [-77.26005542440114, 34.56427545857128], [-77.25971709260864, 34.56434299163514], [-77.256121328391, 34.56572107947943], [-77.25577669086077, 34.565727106128335], [-77.25533320915403, 34.56588320495685], [-77.25526555735203, 34.56621632861516], [-77.2519381619964, 34.569386553726765], [-77.25212920482001, 34.57033013514331], [-77.25051472180225, 34.57156258389061], [-77.24714391623823, 34.57277961720159], [-77.24670545848615, 34.57343212463826], [-77.24523636070268, 34.57390716926908], [-77.24136127129425, 34.573935844424874], [-77.23792996531145, 34.575823840618455], [-77.23484245291682, 34.578653692676006], [-77.23362602861215, 34.57925527812979], [-77.23091565903283, 34.58041882457399], [-77.22798958878747, 34.581332051578194], [-77.22643451167258, 34.58169054268779], [-77.22565667818745, 34.582397067417475], [-77.22532688180564, 34.58330200780492], [-77.22580768008757, 34.584294470073466], [-77.22604627092207, 34.585169814543164], [-77.22677729865121, 34.58462567961917], [-77.22867919323832, 34.584986546031274], [-77.22773975332717, 34.58548223146165], [-77.22569483071547, 34.586171014202414], [-77.2255859781368, 34.58619545190222], [-77.22552000458708, 34.5862090503988], [-77.22523241263096, 34.586276247371515], [-77.22184011245287, 34.58681578176817], [-77.22092155382937, 34.58730424821149], [-77.22001067987088, 34.58760748743592], [-77.21957040418536, 34.58839452350749], [-77.21860892033331, 34.58938219445818], [-77.2186993699449, 34.59018978630637], [-77.21851994200335, 34.590427094916116], [-77.2179282185903, 34.591209663859416], [-77.21792437220935, 34.59121358012431], [-77.2179247509093, 34.59121424992854], [-77.21737670544148, 34.59203980132624], [-77.21721408916709, 34.592100183879836], [-77.21674142300711, 34.59239157117414], [-77.21577713481425, 34.59292935151611], [-77.215661030371, 34.593143020245726], [-77.21514424186185, 34.59337618517019], [-77.21410894109874, 34.59337619087252], [-77.21177118191311, 34.59337621495213], [-77.21007615829312, 34.59343258337272], [-77.20858702053776, 34.59544131331975], [-77.20813499004225, 34.596096060274014], [-77.2081706843996, 34.59699739717048], [-77.20676777680704, 34.59906026970992], [-77.20675991358118, 34.59975829412698], [-77.20552397333603, 34.59990251311883], [-77.20505860057816, 34.599966481568934], [-77.20288477392904, 34.60051212597013], [-77.20125209628796, 34.60082090204505], [-77.20086375692979, 34.601015283501845], [-77.19987065610218, 34.60109865412282], [-77.19760140461352, 34.60136764028553], [-77.19534954765518, 34.60136764860812], [-77.19149742601167, 34.602321078833334], [-77.19072876415262, 34.60251535329337], [-77.1901326034009, 34.602790680602425], [-77.18529693797171, 34.60414760609798], [-77.18224408606888, 34.60504040107838], [-77.18176399806421, 34.605057120115745], [-77.18169327985544, 34.60531507834534], [-77.18159123608174, 34.60553239598546], [-77.17948583426937, 34.6082909645684], [-77.17930578083528, 34.608896852436594], [-77.17772298947688, 34.60991597988493], [-77.17640149138464, 34.61080698769017], [-77.17511418254928, 34.61089057764221], [-77.17253641054775, 34.610874941120585], [-77.1699984629862, 34.61036736608553], [-77.16737361767383, 34.61172100162369], [-77.1661849616254, 34.61223398391474], [-77.1639782702281, 34.614440660081904], [-77.16322106178758, 34.61516240725311], [-77.15935199211063, 34.6166747015688], [-77.1617573144232, 34.61881734175802]], [[-77.27744906996921, 34.53659220048712], [-77.27755264341374, 34.53629705792616], [-77.27797116947693, 34.53567601595087], [-77.28002934095568, 34.532554087216894], [-77.2799514370505, 34.53140894072879], [-77.2847125351098, 34.52528546151291], [-77.28590574170066, 34.52514065089559], [-77.29135158929492, 34.519140334063486], [-77.29239689864643, 34.52465111006002], [-77.29212790974742, 34.52542318909296], [-77.29243056546181, 34.52615647111275], [-77.293023511088, 34.52803728237754], [-77.29356693185764, 34.529133630663345], [-77.2942345918826, 34.529990927342695], [-77.29458597718411, 34.53071602244042], [-77.29513059634823, 34.53144801957624], [-77.29525260882967, 34.532808635921626], [-77.29487631172763, 34.53529959043251], [-77.29226497486054, 34.537154100062644], [-77.29090808460414, 34.53784263766549], [-77.28761895390164, 34.53906447578447], [-77.2852811906193, 34.53973538249041], [-77.28436918048448, 34.53971750639255], [-77.28266981032337, 34.53878667106294], [-77.28260945440385, 34.53778915050383], [-77.28052378216825, 34.537325031287125], [-77.28012962406423, 34.53713851039184], [-77.27794983032936, 34.536570042660195], [-77.27777438034724, 34.53652844471971]], [[-77.35163047843676, 34.49140045125625], [-77.35161328663867, 34.49141314801858], [-77.35163616787331, 34.49141629689487], [-77.35165627017825, 34.49141301182714], [-77.35165953611369, 34.491398604062034]], [[-77.27445551566367, 34.54690978861579], [-77.27231388564755, 34.54702589450052], [-77.2744952500803, 34.54524769279966], [-77.27683987736995, 34.54467192593351]], [[-77.23324379913487, 34.566711690793085], [-77.23304824672702, 34.567187257099036], [-77.2336584184903, 34.567080732744], [-77.2336873883077, 34.56694802116336]], [[-77.28287842022738, 34.517027643826026], [-77.28296883143486, 34.51740825059819], [-77.28394383116024, 34.5171113694809], [-77.28375605787906, 34.516540330153255]], [[-77.3998650222503, 34.578387483756494], [-77.3997870146419, 34.57845605371863], [-77.39969620635634, 34.57850969364107], [-77.39959000568074, 34.578572425846566], [-77.39954602217338, 34.57859840659334], [-77.39943985138895, 34.57866112071632], [-77.39939299501009, 34.578722022576294], [-77.39934302634431, 34.578728936103616], [-77.3992490021748, 34.57874578466668], [-77.39927315542937, 34.578791317081105], [-77.39927483639617, 34.57881225131632], [-77.39929448785372, 34.578840164698875], [-77.39931987229528, 34.57889071971647], [-77.39929448505998, 34.578918225541855], [-77.3992605571075, 34.578968864259906], [-77.39921329941444, 34.57899357695622], [-77.39919597876799, 34.5790032164725], [-77.39918292136824, 34.579002553723264], [-77.39912011753776, 34.579001287731835], [-77.39909747651215, 34.578976863154054], [-77.39907126952599, 34.579004495572846], [-77.39904822341269, 34.57901521682065], [-77.39903287760191, 34.579038273641885], [-77.39901698420323, 34.57905997827143], [-77.39899896921857, 34.57908037930347], [-77.39896238626125, 34.5791151692444], [-77.39894971563822, 34.57912816934857], [-77.39890832931883, 34.579153911346005], [-77.39890046272194, 34.57915810810249], [-77.39889678195634, 34.57916008788037], [-77.39887697072544, 34.5791669125453], [-77.39881226880959, 34.57918735864759], [-77.39880195802918, 34.57918789734819], [-77.39878675138257, 34.579196315697835], [-77.39875270535683, 34.57920987631965], [-77.39873083313566, 34.57921156678658], [-77.39872544590688, 34.5792124736894], [-77.39872331724018, 34.579215618534384], [-77.39870345270523, 34.57923073670818], [-77.39869525683176, 34.57922849889135], [-77.39868794462896, 34.57923054726799], [-77.39867882620004, 34.579245126534126], [-77.39866805466282, 34.579250127976124], [-77.39865608049055, 34.57925388208802], [-77.39865419988908, 34.57925482004315], [-77.3986506258336, 34.579256493875], [-77.3986150293099, 34.57926864249099], [-77.3986049476008, 34.57926617651448], [-77.39856337876215, 34.5792735103126], [-77.39855569529567, 34.579277584937806], [-77.39853491864945, 34.57929172482933], [-77.39850644247817, 34.57930008382682], [-77.39848281780233, 34.57930446971204], [-77.39840793826748, 34.57931236858927], [-77.39834651483396, 34.57930963670891], [-77.39821214801135, 34.579264145023565], [-77.39821093328621, 34.579263861559554], [-77.39820864296264, 34.579263341785754], [-77.39812028436401, 34.57916148833527], [-77.39814325804795, 34.579060488873814], [-77.39816208774137, 34.57900512448905], [-77.39821094967886, 34.57892678663329], [-77.39823605748936, 34.57886186487356], [-77.39829378418723, 34.578826484106735], [-77.39830945815214, 34.5788162055863], [-77.39837764461741, 34.57878171461518], [-77.39840796379636, 34.578761044759794], [-77.39848656567347, 34.57871397258301], [-77.39850646928812, 34.57870620402787], [-77.39851793479158, 34.578700354008696], [-77.39853745531498, 34.57868518295045], [-77.39855572216577, 34.57867475246377], [-77.39857687574381, 34.57864921663325], [-77.39858496785128, 34.57864681477872], [-77.39860497421817, 34.57866112400127], [-77.39861862150089, 34.57865876611504], [-77.39865422638042, 34.578644583879885], [-77.39866320805359, 34.57865735970315], [-77.3986990422346, 34.57865708922986], [-77.39870347751568, 34.578651420892136], [-77.39871208175134, 34.57865071524185], [-77.39879069215412, 34.57863647991133], [-77.39880198114882, 34.57863304842374], [-77.39884613479926, 34.57864064472483], [-77.39889049548432, 34.578645006775275], [-77.39890048300927, 34.578657064725036], [-77.39891867876344, 34.57864978431917], [-77.39896269657234, 34.5786238262457], [-77.39899898787374, 34.578606339630916], [-77.39900722318649, 34.578608527355456], [-77.39902891651423, 34.57861427144944], [-77.39904823872128, 34.578620487144725], [-77.39905654289925, 34.578610285258165], [-77.39907828555076, 34.5785864523694], [-77.39909749241782, 34.57856078576444], [-77.39913047025246, 34.57856408224264], [-77.39915865056108, 34.578595552147576], [-77.3991700060775, 34.578621916196], [-77.39919599231288, 34.57863725294156], [-77.39920578631474, 34.57858875091113], [-77.39922202877877, 34.57850831471999], [-77.39923707570014, 34.578478092653135], [-77.39932762271779, 34.57839457190333], [-77.39935478124707, 34.578354965267174], [-77.39939300911811, 34.578317317248064], [-77.39940866249997, 34.57825791254176], [-77.39944226296242, 34.57824106562047], [-77.39944645972693, 34.57823559325328], [-77.39944753415416, 34.578229758543536], [-77.39945663695909, 34.578207588874655], [-77.39946157671741, 34.57820115073976], [-77.3994668902839, 34.57819032582364], [-77.39947051006831, 34.578182951517334], [-77.39947257053208, 34.57817875389235], [-77.39947497674211, 34.578173851906016], [-77.39947607513582, 34.57817161423251], [-77.399479203769, 34.578169794216514], [-77.39948145059917, 34.57816662562934], [-77.39948174202499, 34.578164162568505], [-77.39948228217915, 34.57816349376553], [-77.39948262780125, 34.57816366231699], [-77.39948475208664, 34.578163072745085], [-77.39948536041794, 34.57816221656747], [-77.39948555862337, 34.57816195336566], [-77.39948652100162, 34.578161406593985], [-77.39948689955273, 34.578161124615164], [-77.39948780858192, 34.57816064918184], [-77.39948843865491, 34.578160991105754], [-77.39948927681344, 34.57816066152842], [-77.39949151694302, 34.57815825554569], [-77.39949481493845, 34.578155642261606], [-77.39949581800998, 34.578153498101905], [-77.39949838735677, 34.57814849281535], [-77.39950383039283, 34.57813846006779], [-77.39950533049203, 34.578135839400204], [-77.3995062679314, 34.578134087760155], [-77.3995102827752, 34.57812719301981], [-77.39951178168491, 34.57812472454746], [-77.39951425476534, 34.57811966737156], [-77.3995142490871, 34.57811762641795], [-77.39951614393851, 34.578115651619015], [-77.39952410451582, 34.578100287797845], [-77.39954077060939, 34.578082045004905], [-77.39955997857079, 34.57808069591464], [-77.39957363968978, 34.578022609907045], [-77.39955992855937, 34.57800693339702], [-77.3995673503265, 34.577981428766876], [-77.39959002563839, 34.577961826245556], [-77.39976862582665, 34.57795698761509], [-77.39978703015294, 34.57794525675241], [-77.39981040344219, 34.57794560426673], [-77.39984328408684, 34.57796604635002], [-77.4000173618565, 34.57811729603198], [-77.4000254094777, 34.57819664588321]], [[-77.34919037049782, 34.551258056452184], [-77.34918563397954, 34.551257195905215], [-77.34917075929903, 34.551256370601806], [-77.34914848276742, 34.55125513461653], [-77.34914136872428, 34.551254739901765], [-77.3491275790443, 34.551253974794065], [-77.34911133155579, 34.5512530733162], [-77.34909241571805, 34.55124930406579], [-77.34907024937823, 34.55124023152923], [-77.34906619939736, 34.55122688062549], [-77.3490613544115, 34.551210908924745], [-77.34909447426165, 34.551159841568285], [-77.3491232539671, 34.55115872588837], [-77.34914347095525, 34.551163376450035], [-77.3491457761875, 34.551166673202786], [-77.34914684123571, 34.55116800466826], [-77.34914972198592, 34.55117160602584], [-77.3491604553873, 34.551185736709925], [-77.34916732698099, 34.5511930597087], [-77.34916952294583, 34.551195343324686], [-77.3491766425637, 34.55120365929116], [-77.34918013709292, 34.551217454972246], [-77.34918239156744, 34.55122409410123], [-77.34918072587604, 34.55123073961437], [-77.34919066882082, 34.55124509092951], [-77.34919387436797, 34.5512509612608], [-77.34919462522636, 34.55125293624991], [-77.34919593967037, 34.551256193015554]], [[-77.34591459849045, 34.53417436702663], [-77.34590364114948, 34.53419083495716], [-77.34590333943794, 34.53419128840341], [-77.3459032229807, 34.53419146342864], [-77.34590296504746, 34.53419164413653], [-77.34590276638784, 34.53419149687884], [-77.34590053426722, 34.53419169205455], [-77.34588029994616, 34.53419341261302], [-77.34587838520201, 34.53419362875964], [-77.3458698079388, 34.53418846280475], [-77.34586819247903, 34.534187489837926], [-77.34586628616918, 34.53418634169635], [-77.34585955488507, 34.534182287545185], [-77.34585709266304, 34.53418080458586], [-77.34585419082933, 34.53417889455036], [-77.34584954805388, 34.53417607685475], [-77.34585428212353, 34.53417493492961], [-77.3458560071527, 34.53417514742248], [-77.34586142992002, 34.53417752263843], [-77.34586651442427, 34.53417644173112], [-77.34586765619859, 34.5341765823773], [-77.34586957249952, 34.5341768184313], [-77.34586979917852, 34.53417684635409], [-77.34587033001775, 34.534176911743984], [-77.34587162350562, 34.53417735145143], [-77.3458726165454, 34.53417780362096], [-77.3458735624926, 34.53417702537744], [-77.34587290133308, 34.53417654174404], [-77.34587276361843, 34.534176488742276], [-77.34587264909985, 34.534176391653816], [-77.34587161168398, 34.534175770990345], [-77.34587137515223, 34.53417565383441], [-77.34587027819563, 34.53417500654489], [-77.34587020412906, 34.53417465439013], [-77.34586828709799, 34.5341733803982], [-77.34586831115526, 34.53417231569392], [-77.3458666641765, 34.53416994662153], [-77.34586309200148, 34.534166477323254], [-77.34586321130021, 34.53416109034771], [-77.34586252572385, 34.53415890818374], [-77.34586258613038, 34.53415615784741], [-77.3458659425344, 34.5341507658966], [-77.34586280229982, 34.534146315490865], [-77.34586286285418, 34.53414355842411], [-77.34586292349141, 34.534140797584094], [-77.34586716727352, 34.53413528841421], [-77.34586839119042, 34.53412700210171], [-77.34586869799774, 34.53411255951925], [-77.34588937137966, 34.53410149084824], [-77.34589958170238, 34.53407323191323], [-77.34589971231732, 34.534065558678854], [-77.34591424108511, 34.53406213931893], [-77.34594244945762, 34.53408636216079], [-77.3459499209607, 34.53409277802462], [-77.34595159244746, 34.53409421334912], [-77.3459542273368, 34.534096475956005], [-77.34598044390637, 34.534118988390844], [-77.34598894383315, 34.53412628736431], [-77.34598624059952, 34.53414875676294], [-77.34597211108085, 34.53416289864907], [-77.34595250939515, 34.534170990465334], [-77.34593223687014, 34.53416919691133], [-77.34592548989501, 34.534171253494335]], [[-77.39869161963904, 34.57821229961207], [-77.39870165366555, 34.578212367834624], [-77.3987034964412, 34.57821329103786], [-77.39871084670314, 34.57821697624158], [-77.39871830284427, 34.578218560442], [-77.39872241600376, 34.57822777419966], [-77.39870565130269, 34.57823401812244], [-77.39870349545336, 34.578236079943096], [-77.39870310190236, 34.57823628488451], [-77.39869428944448, 34.57823463275652], [-77.3986911828362, 34.57823194541551], [-77.39868898806894, 34.57822784268267], [-77.39868726723004, 34.578221505927914], [-77.3986911836658, 34.578212872704604]], [[-77.39940707986383, 34.5780602737293], [-77.39940660668256, 34.57805890965441], [-77.39940565211951, 34.578058701320714], [-77.39940533097027, 34.578058489999215], [-77.39940314638058, 34.578058446030056], [-77.39940225283733, 34.578056818000555], [-77.39940169357294, 34.5780563015981], [-77.39940225287675, 34.57805569490557], [-77.39940270214657, 34.57805332311653], [-77.39940485912828, 34.57805303649793], [-77.39940533116766, 34.57805285933261], [-77.39940570809001, 34.57805281150775], [-77.39940648688437, 34.5780527060982], [-77.39940687026495, 34.57805281394508], [-77.39940698636639, 34.578052925034505], [-77.39940725503388, 34.57805295655239], [-77.39940746461517, 34.578052981138775], [-77.39940762310269, 34.57805297627039], [-77.39940763980661, 34.57805299031711], [-77.39940799312978, 34.57805331950076], [-77.39940799998395, 34.57805334500305], [-77.3994080245649, 34.57805343661787], [-77.3994080832427, 34.57805365788296], [-77.3994081002412, 34.57805371866831], [-77.39940810853518, 34.57805380796987], [-77.3994081280214, 34.57805401777869], [-77.39940814461048, 34.57805412688912], [-77.39940815070017, 34.57805426196185], [-77.39940817623983, 34.57805453694823], [-77.39940823503017, 34.5780551699458], [-77.399408120776, 34.578055374197255], [-77.39940797125287, 34.57805586775139], [-77.39940840921246, 34.578057045372816], [-77.39940902573639, 34.578057896218425], [-77.39940966136149, 34.578058468885345], [-77.39940978042989, 34.57805992940372]], [[-77.32333697194943, 34.522900503899834], [-77.32404441220093, 34.523671909433574], [-77.32416351643298, 34.5237911191811], [-77.32421190761555, 34.52378902884395], [-77.32432395106278, 34.52380806980703], [-77.32499305484028, 34.523954501309674], [-77.32538748955183, 34.523585045148145], [-77.32500995159621, 34.5232296441527], [-77.32447356479565, 34.523556582356136], [-77.324888474238, 34.52308933358366], [-77.32452413769668, 34.52272988064772], [-77.32424358751425, 34.522430539132976]], [[-77.34505683242998, 34.53428856457524], [-77.3450656785624, 34.53432722498738], [-77.34507314807115, 34.534284183070376], [-77.34516625550208, 34.53422141839511], [-77.34518036268965, 34.53421217712494], [-77.34526507490001, 34.53419180576053], [-77.34526585460046, 34.534191210401524], [-77.34526623828991, 34.53419044913181], [-77.34526514693759, 34.53418868229478], [-77.34521476822448, 34.53416905832546], [-77.34516781638357, 34.53415374383684], [-77.34513935908313, 34.53419221717133], [-77.34514748852074, 34.53420824203063], [-77.34506203165425, 34.53427877175881]], [[-77.4001677214017, 34.57832946598539], [-77.40013199773607, 34.577977229283405], [-77.40007984040389, 34.57793191172264], [-77.39990869384624, 34.577825508936996], [-77.39978703388377, 34.577823700095344], [-77.39969123779707, 34.57788476023534], [-77.39959002808784, 34.577887502205485], [-77.39952600993075, 34.57794284509537], [-77.39950505639959, 34.578014851135556], [-77.39954376639858, 34.578059109899726], [-77.39954252152539, 34.578064403003054], [-77.39954077119465, 34.578064525939276], [-77.39952696506319, 34.57807963820279], [-77.39951280728728, 34.57806680448141], [-77.39949152037289, 34.578057334723745], [-77.39948243766415, 34.578061399474876], [-77.3994496325884, 34.578067985305736], [-77.39944226885005, 34.57807060366519], [-77.39943832039047, 34.57807329780707], [-77.39943263563376, 34.57807837274166], [-77.39943237456082, 34.57808907156229], [-77.39942937266437, 34.57811802047135], [-77.39942543148766, 34.57813248399373], [-77.39942879086931, 34.57814651995616], [-77.39943446028092, 34.578157717074504], [-77.39943746216655, 34.578178644260866], [-77.39942660739379, 34.578185386062756], [-77.39939981452272, 34.5781965808515], [-77.39939301325025, 34.57819942260572], [-77.39936159164846, 34.57821398056832], [-77.39931240972938, 34.57823564700885], [-77.39929450932128, 34.57824432809547], [-77.3992421230594, 34.5782650774548], [-77.39920659299732, 34.57828161285042], [-77.39919600538254, 34.5782865763117], [-77.39918287190038, 34.57828777908596], [-77.39909750166582, 34.57832036461667], [-77.39906656373779, 34.57832374671355], [-77.39904825022782, 34.578325700516096], [-77.39902892828928, 34.578328090498545], [-77.3990073892902, 34.57835201901463], [-77.3990008714002, 34.5783549783802], [-77.39899899761944, 34.57836032916034], [-77.39899667723523, 34.57835606521073], [-77.39897437197574, 34.57836074215331], [-77.3989588738459, 34.57835901926694], [-77.39895188844105, 34.578357719057436], [-77.39894974649866, 34.5783570093906], [-77.39894518805974, 34.5783560818901], [-77.39890049503691, 34.57836211958188], [-77.39886071312499, 34.5783833875329], [-77.39880199100833, 34.578398057548924], [-77.39877596340364, 34.57841043676708], [-77.39872548262485, 34.578422065107375], [-77.39870348723426, 34.57842603486216], [-77.39868090228086, 34.578423464126374], [-77.39867784083631, 34.57842500474965], [-77.39865423517881, 34.57844327366575], [-77.39863819890778, 34.57844108006145], [-77.39861394850001, 34.57845219891145], [-77.39860498330864, 34.578455854259914], [-77.39860041194501, 34.578458886667555], [-77.39858545613224, 34.57846597038781], [-77.39852283910211, 34.578492634242934], [-77.39850647845637, 34.57850441277042], [-77.39846215226211, 34.57853152439808], [-77.39840797295075, 34.578564466056434], [-77.39833723580459, 34.57860792806166], [-77.39825204091704, 34.578664484939125], [-77.39821096129445, 34.57868889327365], [-77.39801820338978, 34.578866245329074], [-77.3980163948552, 34.578869144860455], [-77.39794141324381, 34.57908961105128], [-77.39791624313918, 34.5792002666614], [-77.39791781824272, 34.579408855368584], [-77.39817170617161, 34.57943869735738], [-77.39821092438939, 34.57944759767283], [-77.3982299605775, 34.57945203989107], [-77.39830942802057, 34.57945174185895], [-77.39831706960325, 34.5794517502212], [-77.39837936843522, 34.57942021558408], [-77.39840793388322, 34.57940754517212], [-77.3984376147639, 34.579410608900055], [-77.39847702441263, 34.57940521117995], [-77.39850643822503, 34.57939482490474], [-77.39854281910895, 34.57938821046187], [-77.39856620085187, 34.5793822926438], [-77.39860494310548, 34.579368961093365], [-77.39860778260513, 34.579368027390494], [-77.39861730212812, 34.579363594189786], [-77.3986272523247, 34.57935966170493], [-77.39862956967065, 34.57935431617886], [-77.39864877743273, 34.57935905277792], [-77.39865372127592, 34.57935885035117], [-77.3986541953869, 34.57935915279919], [-77.39865477574014, 34.5793588126599], [-77.39865632901068, 34.579357963198], [-77.39867882196472, 34.579343931858524], [-77.39868472928066, 34.57933369461101], [-77.39868791687303, 34.579326869687975], [-77.39870344928744, 34.57931099044173], [-77.39871107030038, 34.57930520495475], [-77.39872043540458, 34.57930387453108], [-77.39872807544782, 34.579305092868], [-77.39874392487057, 34.57930171001293], [-77.3987527012903, 34.579306683321924], [-77.39879615099981, 34.57929096998606], [-77.39880195373466, 34.5792915515347], [-77.39880660343368, 34.5792882192062], [-77.39882345059958, 34.57928077820848], [-77.39888524350008, 34.579255466916536], [-77.39890045903661, 34.57924961581558], [-77.39893098607929, 34.5792323682665], [-77.39895904369719, 34.57921819753959], [-77.39899896401397, 34.57921335343192], [-77.39902444305054, 34.579198705798404], [-77.39903582720564, 34.5791837125363], [-77.3990482171216, 34.57917828210317], [-77.39907063546876, 34.57916788405308], [-77.3990974693584, 34.57916507440103], [-77.39915755425321, 34.57916782576001], [-77.39919597236263, 34.57917729518485], [-77.39925282886882, 34.579173946502706], [-77.39935686287458, 34.57909766922451], [-77.39938242340035, 34.5790826029445], [-77.39939298292485, 34.57907134437352], [-77.39949646957709, 34.57897674794027], [-77.39958761444782, 34.57885208637987], [-77.39968534268385, 34.57872843525134], [-77.39978700825617, 34.57866838199321], [-77.40015400719616, 34.578345783929535]], [[-77.34477138973556, 34.53390118281592], [-77.34478105898451, 34.533902843799744], [-77.344837641232, 34.53388559573656], [-77.34482725347483, 34.53379189458502], [-77.34480993728452, 34.533767172131434], [-77.34482250802573, 34.53374182924131], [-77.34478436904621, 34.53375936026286], [-77.34477343416873, 34.53376569581362], [-77.34474785961172, 34.53377610428526], [-77.34464056663302, 34.533825213638046], [-77.34460450699424, 34.53385793557938], [-77.34459818368033, 34.53386668033565], [-77.34462189718826, 34.53389362615172], [-77.34468240061348, 34.53390793274811], [-77.34468280339773, 34.53390802344895]], [[-77.34175688665863, 34.537637757447655], [-77.3417605676321, 34.53763335789178], [-77.34175106834036, 34.53762099858382], [-77.341682909458, 34.53760174528151], [-77.3417291062187, 34.537637883807406], [-77.34168864756828, 34.537666638073354], [-77.34169753095613, 34.53767503565758], [-77.34170507415034, 34.53767463454616], [-77.34175064355324, 34.53763938449141]], [[-77.34398044323203, 34.535233029087614], [-77.34399443621001, 34.53524944107849], [-77.34404240978616, 34.53529748701798], [-77.34411605589891, 34.535335927031156], [-77.34415849127691, 34.53536543579465], [-77.34420484867444, 34.53532315158563], [-77.344264589267, 34.53525675164906], [-77.34428614932618, 34.5352337338318], [-77.34433296664596, 34.53518230820132], [-77.34430478212768, 34.53509896198662], [-77.34424268996898, 34.53507288750582], [-77.34416590444883, 34.53504418709859], [-77.34410601128086, 34.535092552805835], [-77.34402980210203, 34.535142459635026], [-77.34398909405971, 34.535217155516165]], [[-77.34579377644991, 34.534169236262414], [-77.3458034459751, 34.53417506008146], [-77.34580518689388, 34.53417610861226], [-77.34582644417024, 34.534188911562666], [-77.3458444581792, 34.53419976113257], [-77.3458535830116, 34.534205256883006], [-77.3458708434394, 34.5342156525755], [-77.34588547040741, 34.53422446216927], [-77.34590197916258, 34.534234405133056], [-77.34595023490405, 34.534215142848886], [-77.34595090454083, 34.53421467370173], [-77.3459515237276, 34.53421374311719], [-77.34597314831888, 34.534181243199114], [-77.34599297921224, 34.53417305676313], [-77.34602246612324, 34.53414354404241], [-77.34602453817715, 34.5341263210379], [-77.34602810748213, 34.53409665261543], [-77.34601302145384, 34.534083698091415], [-77.3459907560773, 34.534064578604394], [-77.3459556576039, 34.534034439157374], [-77.34595340473658, 34.53403250459525], [-77.34587143826292, 34.534051795486214], [-77.34587070137688, 34.534095085321425], [-77.34586723613667, 34.5341046760073], [-77.34586021988103, 34.534108432558874], [-77.34585968546342, 34.534133589620005], [-77.34585926662675, 34.53413642527954], [-77.34585781436178, 34.53413831057293], [-77.34585768273017, 34.534144303818884], [-77.34585755127844, 34.534150288873825], [-77.34585863030412, 34.534151818091445], [-77.3458574769998, 34.53415367083628], [-77.34585734559887, 34.534159653578534], [-77.3458588369171, 34.53416440038874], [-77.34585877717186, 34.534167098206204], [-77.34586441276113, 34.534172571493514], [-77.34585436515208, 34.534171333807045], [-77.34584747887514, 34.534172994875284], [-77.34584212201604, 34.53417029698967], [-77.34584076845626, 34.53416968957101], [-77.34583303486538, 34.53416884013238], [-77.34582989651271, 34.5341684954233], [-77.34582198232582, 34.53416744178196], [-77.34580658527013, 34.53417376985555], [-77.34580522745598, 34.53417434939358]], [[-77.3422485654407, 34.537256112623744], [-77.34224422212938, 34.53726140823761], [-77.34217961972429, 34.53732825507681], [-77.34217567119478, 34.537344826416074], [-77.34218768715606, 34.537424854052226], [-77.3422567343029, 34.53743957072808], [-77.34234304423285, 34.537485391645376], [-77.342499502442, 34.53743027471327], [-77.34254762023637, 34.537401691044444], [-77.34255459340409, 34.53739672018019], [-77.34265333636236, 34.537328954657845], [-77.34274107206106, 34.53724868572566], [-77.34274197193665, 34.53724790360966], [-77.3427427248828, 34.537247245346315], [-77.34274792088098, 34.53724231827671], [-77.34281465556515, 34.53715908729554], [-77.34284141906201, 34.53715311397468], [-77.3428886053277, 34.53710384864191], [-77.34291067593664, 34.53708163116164], [-77.34292133690161, 34.53705077284903], [-77.34291763845681, 34.53703846698819], [-77.34288623147108, 34.53701699836705], [-77.34276091627807, 34.53700872932461], [-77.34274627203251, 34.53702350338511], [-77.34262308982363, 34.53714204706243], [-77.34273303724034, 34.537243554261835], [-77.34254563230405, 34.53721228963678], [-77.3424657363761, 34.53721447965976], [-77.34234848269202, 34.53724992926898], [-77.3422525538053, 34.53725510443251]], [[-77.34499890876808, 34.53296741078922], [-77.34500278335601, 34.533002050008676], [-77.34501785093376, 34.53300279677694], [-77.345007545971, 34.53301028320232], [-77.3450577461935, 34.53308113429869], [-77.3451538554142, 34.53308150569855], [-77.34519325396154, 34.533050860474496], [-77.34524974639696, 34.53300398820283], [-77.34525360122505, 34.53296887453657], [-77.3452750265433, 34.53291672115861], [-77.34528199912563, 34.53290358339467], [-77.34528417199064, 34.5328965499551], [-77.34529115338775, 34.53284106118066], [-77.34526326458956, 34.532804947232904], [-77.3452629041742, 34.5327839210928], [-77.34522452689743, 34.532773922641255], [-77.34521006425497, 34.53273627837914], [-77.3452053705787, 34.53273099475237], [-77.3452075318427, 34.532726445623936], [-77.34520088399405, 34.53272005085574], [-77.34516112564027, 34.53270675873637], [-77.34515419517645, 34.532706467922814], [-77.345145841238, 34.53270501495572], [-77.34510241375612, 34.532734598893875], [-77.34501381913574, 34.532752351801236], [-77.34502763898377, 34.5326953637196], [-77.34500538191536, 34.532686788082415], [-77.3449604453066, 34.532672065292196], [-77.34493903766877, 34.53266644201546], [-77.34495055320549, 34.53267955050754], [-77.3449774275058, 34.53270258863317], [-77.34499112890329, 34.532753898203424], [-77.34499715289557, 34.532760955289916], [-77.3449887245659, 34.532876924404945], [-77.34499064293924, 34.53288430186333], [-77.34499162887569, 34.532889816631226]], [[-77.3450742020195, 34.53316692752426], [-77.34507537891336, 34.533188465777954], [-77.34509156453768, 34.53320495664177], [-77.34511549913076, 34.53318703065132], [-77.34512921315475, 34.53314773024163]], [[-77.3490243448177, 34.55119820813117], [-77.34901145027513, 34.55121809017168], [-77.34901515890213, 34.5512303158174], [-77.34902383901769, 34.55125893023663], [-77.34906110432368, 34.55127215009748], [-77.34907629179628, 34.55127958419549], [-77.3490917332789, 34.551278962285224], [-77.34910970515162, 34.55127632488949], [-77.34914083232489, 34.55127805195461], [-77.34915689071295, 34.55127894293459], [-77.34918975254826, 34.55128491338607], [-77.3492283913162, 34.551271984913335], [-77.34921927173937, 34.551249389561626], [-77.34921406230417, 34.55123568714074], [-77.34921278082324, 34.55123334035959], [-77.34920159577956, 34.55122133057526], [-77.34920161752824, 34.55121493306535], [-77.34919618922953, 34.55119421836058], [-77.3491963662049, 34.55119148052496], [-77.34919575969224, 34.55118919533834], [-77.34919200415547, 34.55118705548603], [-77.34917789117195, 34.55117254485711], [-77.3491709221326, 34.55116453938237], [-77.34916993934937, 34.55116347631031], [-77.3491680588912, 34.551161250319744], [-77.34916236003721, 34.55115412592174], [-77.34915449782252, 34.551142882031755], [-77.3491501052663, 34.551136932372486], [-77.34914897117183, 34.55113408615562], [-77.3491442787936, 34.551128267620626], [-77.34912319592459, 34.55112341787829], [-77.34909545918852, 34.551117037527], [-77.34908196368426, 34.55111613545564], [-77.34905541539437, 34.55111436090526], [-77.34903274102616, 34.55111467949374], [-77.3489964611836, 34.551153627830175], [-77.34899271652532, 34.55115958079185], [-77.34899613928098, 34.551167616717436]], [[-77.39870349781798, 34.57818154490817], [-77.39870205299954, 34.57818223173567], [-77.39867887221692, 34.57818207412526], [-77.3986716381649, 34.578188177060625], [-77.39866377219815, 34.57819957732167], [-77.39866715844084, 34.57821535927225], [-77.39866909404208, 34.5782256146299], [-77.3986717790099, 34.57823358741598], [-77.39867411979618, 34.578240890689116], [-77.39867886929181, 34.57824908878544], [-77.3986846693977, 34.57825965384325], [-77.39869454808908, 34.578264479004915], [-77.39870349387853, 34.57827242996194], [-77.3987183276949, 34.57827159930669], [-77.39873965916206, 34.57827040479759], [-77.39875274551744, 34.57826236376656], [-77.39879070986247, 34.57822406823731], [-77.39875274860248, 34.57819020757495], [-77.39874777652103, 34.57818254941335], [-77.39871235748954, 34.57818230179515]], [[-77.34396346027569, 34.53033908430051], [-77.34396639931487, 34.53034708261967], [-77.34396898975132, 34.530368891132596], [-77.34397141633681, 34.53037345444124], [-77.34397654803496, 34.53038310483409], [-77.3439789650152, 34.53038765007585], [-77.34399103061926, 34.53038878065357], [-77.34400368071104, 34.530379734496684], [-77.34400395543551, 34.53037932682398], [-77.34400407892127, 34.530379143579346], [-77.34400440405837, 34.530378661097636], [-77.3440066696038, 34.53037288579635], [-77.34400950734583, 34.53037071190697], [-77.34401003146974, 34.53037031039499], [-77.3440118329668, 34.53036763709329], [-77.34401460275066, 34.53036615345453], [-77.3440162937523, 34.53036471969741], [-77.34401910133076, 34.53036341315304], [-77.34402448979019, 34.5303609055606], [-77.34402447725584, 34.53035826793003], [-77.34402572979673, 34.530347440018055], [-77.34402341004548, 34.53034575970243], [-77.34401568370907, 34.53033995772316], [-77.34399278370122, 34.53033486513305], [-77.34398684000547, 34.530331615339506], [-77.34398054447018, 34.53031921731686]], [[-77.39941764312252, 34.5780760880991], [-77.39942494457027, 34.57806621457455], [-77.3994207414494, 34.5780634828492], [-77.39941764357832, 34.578063026819066], [-77.39941463362715, 34.57806106840553], [-77.39941271927111, 34.57806001709211], [-77.39941148732372, 34.57805934053931], [-77.39941139585865, 34.578058218609364], [-77.39940987979487, 34.57805685271052], [-77.39940954923802, 34.57805639651923], [-77.39940932192613, 34.578055200879575], [-77.39940883352824, 34.578054814203874], [-77.39940840929027, 34.57805482331263], [-77.39940837996369, 34.57805450755228], [-77.39940837674877, 34.57805447293701], [-77.3994083597478, 34.5780540958463], [-77.39940835028361, 34.57805403359796], [-77.39940834838043, 34.57805389017502], [-77.39940831377815, 34.57805379220745], [-77.39940831375047, 34.57805379085071], [-77.39940831313302, 34.57805378855073], [-77.39940830239962, 34.57805368949825], [-77.39940828303286, 34.578053621078524], [-77.39940825938109, 34.5780535341184], [-77.3994082885221, 34.57805348418918], [-77.39940828748988, 34.578053408329154], [-77.39940821695379, 34.57805338154409], [-77.399408191623, 34.57805329085955], [-77.39940817105861, 34.57805313598018], [-77.39940802458176, 34.5780529554749], [-77.39940797326594, 34.57805290774399], [-77.39940778775389, 34.57805277509584], [-77.39940763981909, 34.57805263422818], [-77.3994073385602, 34.57805267469993], [-77.3994072550441, 34.57805266490249], [-77.39940720415713, 34.57805265893285], [-77.39940687028157, 34.57805233947045], [-77.39940680254574, 34.57805232041602], [-77.3994053871693, 34.57805251198674], [-77.3994053311796, 34.57805251909085], [-77.39940526106078, 34.57805254540777], [-77.39940229163945, 34.57805293998292], [-77.39940225296625, 34.57805314414675], [-77.39940050059568, 34.5780550449923], [-77.3993991747625, 34.57805349554139], [-77.39939355800503, 34.57805747550366], [-77.39939917453911, 34.57805985506105], [-77.39940089542193, 34.57806119630163], [-77.39940290306956, 34.578062761043974], [-77.39940533077376, 34.57806409664563], [-77.3994089743389, 34.578064592734535], [-77.39941100610162, 34.57806822580032]], [[-77.39938042296932, 34.57804640770172], [-77.39938566558754, 34.57805069102757], [-77.39938106227382, 34.578046010613825], [-77.3993808616605, 34.57804587169921], [-77.39937918996164, 34.578044647207896]], [[-77.34401833076802, 34.5303698300787], [-77.3440182725094, 34.530369581097794], [-77.34401809974239, 34.530369513917364], [-77.34401790906433, 34.53036962478369], [-77.3440179726442, 34.53036980800315]], [[-77.34401772511202, 34.53036913706525], [-77.34401779074621, 34.530369082037055], [-77.34401785857457, 34.53036903213375], [-77.34401772923357, 34.53036895848801], [-77.3440176410687, 34.53036906342942]]]]}, "type": "Feature", "id": "demo5", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16498669612761, 34.62169362296926], [-77.16759293100434, 34.62061855872905], [-77.1738360270186, 34.61904814514875], [-77.18019718850748, 34.61650968123487], [-77.18209579533607, 34.61587761137209], [-77.18430080596714, 34.61429168645048], [-77.18535520184736, 34.613517363949704], [-77.1861124475366, 34.61320761100839], [-77.18933647141259, 34.61179979578804], [-77.19250041770424, 34.611429803522554], [-77.19693386056082, 34.610293710178816], [-77.19847823152712, 34.60941462652213], [-77.20066312112226, 34.608639044487845], [-77.2026528932125, 34.60786932699088], [-77.20413026581531, 34.60709222539637], [-77.20662209100875, 34.606141068686384], [-77.20893564799849, 34.605629908949325], [-77.21295543834904, 34.604019134240225], [-77.21496717848767, 34.60304671827717], [-77.21759910989171, 34.60088710700713], [-77.21793644218933, 34.60064186456155], [-77.21803898143226, 34.60051996176575], [-77.21931224238254, 34.59730752969099], [-77.21924923908433, 34.596974639335535], [-77.21973574022287, 34.596769576984926], [-77.2214035097161, 34.593586430609506], [-77.22151150204121, 34.59338244201638], [-77.22162450765485, 34.59319018788622], [-77.22255546564274, 34.59157944469927], [-77.22304655493664, 34.59109305495484], [-77.22413438553761, 34.590163681574055], [-77.22540962909291, 34.58991938392617], [-77.22720080723462, 34.58954990495347], [-77.22899916748554, 34.5892329397239], [-77.23123923612334, 34.588235018675775], [-77.23275188332815, 34.58731258771779], [-77.23454603370443, 34.58686957820971], [-77.23702805791999, 34.585858047414334], [-77.23771289306404, 34.585233983962794], [-77.24021940223496, 34.58381967155138], [-77.2404686320982, 34.58366005413415], [-77.24067526127297, 34.58358217081025], [-77.24452795111144, 34.58201262158084], [-77.24455390476915, 34.582002523743604], [-77.24487650858728, 34.5818631962931], [-77.24826291245635, 34.580409393667615], [-77.24846694256222, 34.580258150126475], [-77.2488268503484, 34.580138269994144], [-77.250777007247, 34.578722051802046], [-77.25154289748029, 34.577735937965244], [-77.25322484766872, 34.57702946180731], [-77.25395701868243, 34.57666337027993], [-77.25527973687431, 34.57580175065239], [-77.2560237372904, 34.57536446333254], [-77.25715084272879, 34.574837073425094], [-77.2587268917037, 34.57389965081666], [-77.2589192121636, 34.5737810132338], [-77.25903805265584, 34.57371638331236], [-77.25922841170951, 34.573549863014065], [-77.26022330759054, 34.57231198019191], [-77.26059903772314, 34.57195386320206], [-77.26168969940264, 34.57098733033243], [-77.26297245266798, 34.57025526102098], [-77.26447663342043, 34.56919777020515], [-77.26506641566077, 34.56873302543761], [-77.26532793724276, 34.568555216916394], [-77.2660885612284, 34.56804082036744], [-77.26674076822484, 34.56759343733921], [-77.26783950136394, 34.56686740550692], [-77.26838862942387, 34.566430292917595], [-77.26964845893774, 34.56512432059204], [-77.27003368731685, 34.5648754271395], [-77.2715772288428, 34.56400882208963], [-77.2723054294475, 34.56371603993942], [-77.27265182290961, 34.563475108660825], [-77.2740963930165, 34.5619325277441], [-77.27455880900848, 34.56165619504351], [-77.27727434466797, 34.560040589077424], [-77.27739134196635, 34.559970004289546], [-77.27747272915907, 34.559916386313716], [-77.2782218720127, 34.559478908247556], [-77.28068682156805, 34.5579785217403], [-77.28108048388444, 34.557760073123035], [-77.28294309197196, 34.55640852321951], [-77.28400249523374, 34.55513134069073], [-77.28651228914627, 34.55368754310582], [-77.28729839530692, 34.553107148888266], [-77.28770711437384, 34.55284502242586], [-77.29058468708172, 34.55148126124132], [-77.29105226766976, 34.551326284980824], [-77.29216613569666, 34.551021845159276], [-77.29256035810145, 34.55082076384348], [-77.2930803709996, 34.550326710209546], [-77.29376098832273, 34.54999543140438], [-77.29581049211684, 34.54839612549674], [-77.29622644716024, 34.54788408881373], [-77.29696247455051, 34.54743907635408], [-77.29948579049487, 34.546312075708045], [-77.30013886995704, 34.545937541009806], [-77.30023729562483, 34.54586282714113], [-77.30036014391403, 34.54578492607869], [-77.30333144801872, 34.54374411717329], [-77.30365431083109, 34.543552220942644], [-77.30415873782876, 34.54328131611503], [-77.30555711150423, 34.54249157722308], [-77.30651865258241, 34.54177184758661], [-77.3071503153025, 34.54128009868659], [-77.30795759121219, 34.540777528823256], [-77.30891038524254, 34.540149925336394], [-77.30971460052828, 34.539420731682576], [-77.31046264035666, 34.53891850316228], [-77.3120511394185, 34.53823128381893], [-77.31289565760972, 34.53769683941987], [-77.31402004176394, 34.536676294611], [-77.3160574789813, 34.535697406681905], [-77.3160833728658, 34.535682751595274], [-77.31754363883479, 34.53441761969989], [-77.32007938644406, 34.533161086923116], [-77.32117186984945, 34.53220990914353], [-77.32246224292027, 34.5314869465331], [-77.32314457711145, 34.53118330562803], [-77.32296201268952, 34.53078841244792], [-77.32316193238228, 34.530339993535065], [-77.32348537444649, 34.52936187129557], [-77.32381529918271, 34.52870728084958], [-77.32390451233668, 34.52857230978867], [-77.32410354435963, 34.52843592379556], [-77.32443671005908, 34.527837813796], [-77.32457240285763, 34.52761921564539], [-77.32491252680366, 34.527085412431305], [-77.32491554357067, 34.52708027249954], [-77.32491606165097, 34.527077582504575], [-77.32492033614359, 34.52707411108796], [-77.32534969489919, 34.5265282440378], [-77.32546022746757, 34.526348919792724], [-77.32572684078484, 34.52615268910777], [-77.32620960215414, 34.52572020758848], [-77.32648742313756, 34.525385454868534], [-77.32653082751493, 34.525338614417265], [-77.32687253737731, 34.52504939669274], [-77.32733291577749, 34.52460541190015], [-77.3279777127291, 34.52419196629455], [-77.32846075045384, 34.52383554927572], [-77.32892754942404, 34.52354739319087], [-77.3302873303037, 34.52288066044205], [-77.33042960356732, 34.52280709181245], [-77.33051523321535, 34.52278658360342], [-77.3306225798373, 34.522765803006315], [-77.33209534065645, 34.52235067574419], [-77.33256923102331, 34.52225830216954], [-77.33315401300695, 34.52214658324038], [-77.33367105118258, 34.522103452869956], [-77.33431955767665, 34.521899295149275], [-77.334564553447, 34.52183985445317], [-77.33525327840324, 34.52157472887346], [-77.3358965954439, 34.52149488821429], [-77.33683103747956, 34.520964322880616], [-77.33683746253323, 34.52096061695866], [-77.33683845676377, 34.520959911604386], [-77.33683879191756, 34.52095925342539], [-77.33684064051748, 34.52095705666456], [-77.3374917367078, 34.52028440558718], [-77.3381120801221, 34.5197968296834], [-77.33829684333415, 34.51968283527149], [-77.33843831566818, 34.519625436171964], [-77.33881306438101, 34.51943740178489], [-77.3388654012204, 34.51942495532436], [-77.3392291115832, 34.5193731646355], [-77.33973712227981, 34.519390560367206], [-77.34001507410366, 34.5193296137838], [-77.3403218056809, 34.51928820754786], [-77.34158648438857, 34.51926462134479], [-77.34168083700573, 34.51928341900304], [-77.34260670238226, 34.519489836703656], [-77.34468782379604, 34.51983001925457], [-77.34469227460012, 34.51984228364509], [-77.34471304176284, 34.519838863575856], [-77.3447343446919, 34.519836580322185], [-77.34754978554122, 34.51961047361629], [-77.34785919203799, 34.51956425329267], [-77.35100878337141, 34.51892024207391], [-77.35101321544788, 34.51891921752277], [-77.35101450948375, 34.51891900028288], [-77.35417377385065, 34.51804118087657], [-77.35606390714527, 34.517403760454606], [-77.3573349541116, 34.517105824183574], [-77.35877991522653, 34.51673881998881], [-77.35891383905411, 34.51671132228284], [-77.3592256163371, 34.51656536750932], [-77.36050164905949, 34.515926175723465], [-77.36093781729176, 34.515802180455026], [-77.3622581618342, 34.515341652256254], [-77.36366806184343, 34.51475471545008], [-77.36524641384621, 34.51392536507387], [-77.36525685302249, 34.5139228372516], [-77.36529370125987, 34.5139023320257], [-77.36684135379511, 34.513277582416066], [-77.36715724524142, 34.51286844476385], [-77.36740750127998, 34.51264113421278], [-77.36844955189214, 34.511591637371886], [-77.36871911373018, 34.51164169314298], [-77.37001293009837, 34.51187062494559], [-77.3703663097001, 34.51199252719003], [-77.37079497887996, 34.51199446511943], [-77.37115945833904, 34.5118358834674], [-77.37159381812621, 34.51138061204974], [-77.37180620859135, 34.5111572020519], [-77.37318905786209, 34.510258585746136], [-77.37364214893148, 34.510063814627244], [-77.37474554716145, 34.50962482201817], [-77.37587789319167, 34.50916497647117], [-77.37635380912705, 34.50914205080967], [-77.37708080166607, 34.50883885389556], [-77.3782469094891, 34.50833097352305], [-77.37952637567702, 34.50767671551552], [-77.38040174381807, 34.50739273337064], [-77.381991859022, 34.50662125259519], [-77.38244906819835, 34.50640217535094], [-77.38269619788717, 34.50632751380298], [-77.3832814420354, 34.50607367769758], [-77.38461661444606, 34.505470099194], [-77.38586614647468, 34.504967955805554], [-77.38685467905646, 34.50457231877124], [-77.3874500531792, 34.504333667881795], [-77.38901293653306, 34.50364970005646], [-77.38902788795679, 34.50364297623764], [-77.38903529897746, 34.50363887932345], [-77.3890718686026, 34.50361866258216], [-77.39093116977307, 34.50258229891954], [-77.3922126432434, 34.50194127015048], [-77.39302996037131, 34.501616728334284], [-77.39379569885301, 34.501339887941825], [-77.39430710323334, 34.50124473371199], [-77.39519706754517, 34.50079849898195], [-77.39530811180343, 34.500738403576534], [-77.39537962036832, 34.50069891047603], [-77.39569061891174, 34.50053547779176], [-77.39855943172914, 34.4988802088068], [-77.39908428839809, 34.49860222133289], [-77.40172030004398, 34.49790065500087], [-77.40172321148036, 34.49789934843089], [-77.40173057434261, 34.49789648653672], [-77.40398973520232, 34.497015303025336], [-77.40489238853903, 34.49641587976559], [-77.40592374179519, 34.49596952199587], [-77.40647505961456, 34.495822449039544], [-77.40780487467555, 34.495218336560036], [-77.40806053066093, 34.49510255727421], [-77.40814760823861, 34.49506471109731], [-77.40820171303123, 34.4950303626708], [-77.4104733776133, 34.49398957602637], [-77.4106555009025, 34.493907501126586], [-77.41083855507162, 34.49381426478645], [-77.41284447560275, 34.49280959313429], [-77.41306778626277, 34.49270378252295], [-77.41328474501324, 34.492588362607194], [-77.4141691655608, 34.492050973703755], [-77.41444085888259, 34.49197197176654], [-77.41520607082262, 34.49159499680216], [-77.41540628008559, 34.49146417001721], [-77.41566214381308, 34.491358899446816], [-77.41670260970466, 34.490906158010915], [-77.4175929424196, 34.490473230460296], [-77.41785253682755, 34.4902769473129], [-77.41816647833221, 34.49013588664578], [-77.41909140131591, 34.48969098941956], [-77.41994084909184, 34.48920889772396], [-77.42023787875598, 34.489060097088014], [-77.42054728175835, 34.48890651535424], [-77.42228168303372, 34.487918876412074], [-77.42248477291379, 34.48777592162163], [-77.42288703048871, 34.48767500634056], [-77.42469743175755, 34.48690351976338], [-77.42517445971367, 34.4867070348046], [-77.42593287870373, 34.48649691725675], [-77.42594979489952, 34.48648985065644], [-77.42596308958178, 34.486481074467704], [-77.42625808644776, 34.486045577917395], [-77.42702437344032, 34.48556304251504], [-77.42727134113294, 34.4853499061732], [-77.42744421106117, 34.485205627281545], [-77.4293198960804, 34.484107725097374], [-77.42945687258661, 34.484035878107136], [-77.42977282574557, 34.48397343647697], [-77.43179547429864, 34.483312087996524], [-77.43273713978891, 34.48325406289214], [-77.43311258037312, 34.48320479574433], [-77.4335888962777, 34.48307400972468], [-77.43394127410811, 34.482835082904955], [-77.4340946176116, 34.4827257268324], [-77.43430921878596, 34.48265635461861], [-77.43497534233526, 34.48196560562548], [-77.4359742889585, 34.48158768090221], [-77.43733208455622, 34.48073478001456], [-77.43894563407002, 34.4799133585833], [-77.43974761880943, 34.47953252457105], [-77.44144423295401, 34.47920266213135], [-77.44147882268784, 34.4791858442307], [-77.4415157815753, 34.4791680668143], [-77.4428351958447, 34.47865693718775], [-77.44385444315698, 34.478168503775976], [-77.44406651480762, 34.478067241567025], [-77.44429787152671, 34.47795873672764], [-77.44495014472841, 34.47730853241337], [-77.44624285098166, 34.477054725772255], [-77.44657557474734, 34.47691040415124], [-77.44695984404318, 34.476743237000086], [-77.44786280223306, 34.476347872246436], [-77.44835886317315, 34.476138937119856], [-77.44861116466548, 34.47586760527924], [-77.44880693969067, 34.47561858766238], [-77.44901269562276, 34.47549668775845], [-77.44978326519366, 34.47490493296341], [-77.4509709252505, 34.47464938594047], [-77.45136166427507, 34.474483920917116], [-77.45189400104542, 34.47429225705322], [-77.4527856130189, 34.47398782183433], [-77.45343361712598, 34.473808039468096], [-77.45365842885946, 34.47370649503339], [-77.45402555818498, 34.47340229342796], [-77.45468313990995, 34.473083081101166], [-77.45512958392678, 34.47275069935347], [-77.4557885014507, 34.47257237232926], [-77.45730228533262, 34.47186520831414], [-77.45766225505065, 34.47160528032417], [-77.4581593903565, 34.471395472459946], [-77.46031411524959, 34.47051776678071], [-77.46058897095494, 34.4704335078505], [-77.46267336359169, 34.46943606286221], [-77.46282500353003, 34.469361733627096], [-77.46296630910435, 34.46928060370345], [-77.46486309161443, 34.468196234373366], [-77.46508365413494, 34.46808311962728], [-77.4652953679005, 34.46795131659478], [-77.46685594201114, 34.46694637804131], [-77.46711037492865, 34.46669180261722], [-77.46760598316946, 34.46655481127772], [-77.47003177000471, 34.46578464792308], [-77.4700831860155, 34.465767751080236], [-77.470091006528, 34.46576397752357], [-77.47009778740758, 34.465759879426855], [-77.47022270112073, 34.465684829732574], [-77.472148006225, 34.46451285923024], [-77.47222483215717, 34.46442469216761], [-77.47239371255318, 34.4643713599876], [-77.47210586271191, 34.46331880801162], [-77.47079847373568, 34.46373167952229], [-77.47020372514908, 34.464414225563665], [-77.46978307890862, 34.46467028107645], [-77.46877463005698, 34.465124392109125], [-77.46756094191193, 34.465510450736495], [-77.46733324731052, 34.465557343791296], [-77.46722042975267, 34.46561385636517], [-77.46573622393778, 34.466024106489996], [-77.4649763343495, 34.466784421688544], [-77.46492456960303, 34.4668177772607], [-77.46487560174289, 34.46684584118917], [-77.46442885997574, 34.46714770995751], [-77.46387201154535, 34.467494377598975], [-77.46271606730011, 34.46808719971347], [-77.4626503303508, 34.46812478079159], [-77.46156353568708, 34.46874875878042], [-77.46039725844287, 34.46932043202451], [-77.46029772549744, 34.46936806155257], [-77.45885705740714, 34.46980970838654], [-77.45783927648228, 34.47022429128798], [-77.45622362441256, 34.47090615094689], [-77.45547989164666, 34.471443187684216], [-77.45477721735713, 34.471736820886534], [-77.45366354087047, 34.472038222210045], [-77.45307060461765, 34.47247966879809], [-77.45196461879416, 34.47294479968396], [-77.45131232837856, 34.47327179931859], [-77.4510101461552, 34.47357176643615], [-77.4507037626748, 34.47367167339325], [-77.4498835926054, 34.47376555320456], [-77.44856920782011, 34.47412305975648], [-77.44829565269512, 34.47418192020008], [-77.44817575227975, 34.47427399708504], [-77.44672963598458, 34.4753804582293], [-77.44648616664267, 34.475678768816], [-77.44630476908144, 34.47603435857696], [-77.44600029939349, 34.476166919883454], [-77.44505782443622, 34.47617269578093], [-77.44394680391876, 34.476589793468705], [-77.44360820679807, 34.4766562727618], [-77.44347705364021, 34.4767870099266], [-77.44249361496716, 34.47730269572878], [-77.44237302099702, 34.4776740159197], [-77.44184826366907, 34.47783394373855], [-77.44119596965773, 34.47786013575115], [-77.44108670693394, 34.47789375709519], [-77.44059132032268, 34.47803825152766], [-77.43851274533974, 34.47832838325478], [-77.43788263299497, 34.47862593045528], [-77.4375857826823, 34.47896773699741], [-77.43618711201077, 34.47967243601886], [-77.43577843981726, 34.479979516458435], [-77.43534488021818, 34.480204528181304], [-77.43390170529477, 34.48116402860587], [-77.43342333605658, 34.48121110459232], [-77.43277003907704, 34.48142424442086], [-77.43187611152679, 34.481647180628315], [-77.4313709816621, 34.481757420446726], [-77.43030639966025, 34.48207229421799], [-77.42885774505763, 34.48241493733188], [-77.42587798982812, 34.48377452664171], [-77.42509534979838, 34.484291891453886], [-77.42440219689108, 34.48505024953386], [-77.4243221753596, 34.485104300557474], [-77.42422582302119, 34.485175820650426], [-77.42295209995996, 34.485626443330496], [-77.42241841616298, 34.48629996878273], [-77.42189616392785, 34.48650642750728], [-77.42063607611914, 34.486876980945944], [-77.41993514604941, 34.48752412979689], [-77.41954457118906, 34.48775690230781], [-77.41822200664936, 34.48807983400873], [-77.4179739606039, 34.48877494395652], [-77.41762957657022, 34.488980144190705], [-77.41727258530257, 34.48929931842873], [-77.4169839991605, 34.48939986843622], [-77.4165763301295, 34.489656358968126], [-77.41607296873754, 34.48983746984875], [-77.41585137945097, 34.490017483439644], [-77.41524807921635, 34.490198833088684], [-77.41486837219402, 34.49035741426149], [-77.41395936676896, 34.49076053375154], [-77.41299092149524, 34.4912222218055], [-77.41272885324427, 34.49135053335764], [-77.41248869381332, 34.49150562416867], [-77.41112609781146, 34.49175948170073], [-77.41000979860601, 34.49229033532401], [-77.40872140623446, 34.49296685696983], [-77.40766851849597, 34.493579702366766], [-77.40749610783243, 34.493643112585424], [-77.40637319078095, 34.494201706165235], [-77.40492977903308, 34.49474418603755], [-77.40238782106701, 34.495842864401226], [-77.40199565612906, 34.496045396102566], [-77.40176150183663, 34.49606162700963], [-77.40144611909659, 34.496174091952966], [-77.3985945719376, 34.497314346265256], [-77.39756720478942, 34.49786426475448], [-77.3955626333323, 34.49878704435797], [-77.39542092254122, 34.49886151472275], [-77.3951616326706, 34.49900471660266], [-77.39336742997065, 34.499794326323396], [-77.39225139295823, 34.50022028089566], [-77.38927089833709, 34.501536383796775], [-77.38895205413037, 34.5016194556437], [-77.38870405707542, 34.5017355997721], [-77.38687010900978, 34.502593175920424], [-77.38590937049722, 34.50305458465424], [-77.38481407059834, 34.50357948172329], [-77.38283937764585, 34.504540362579355], [-77.38275019597748, 34.50456199292886], [-77.3827358855531, 34.504573579056625], [-77.382663442211, 34.50461042028001], [-77.3805450598201, 34.50547574078977], [-77.37957192910672, 34.50566686907034], [-77.3776623966638, 34.50646704858879], [-77.37640623720769, 34.506832695722615], [-77.37504627985712, 34.5067734926759], [-77.37325585591445, 34.507321100078954], [-77.3708182923474, 34.508232326539115], [-77.37021523430353, 34.508396096471586], [-77.370091717056, 34.50841159640622], [-77.36986774884755, 34.50850769915256], [-77.36693807424858, 34.509038181664046], [-77.36560423719979, 34.51012568300694], [-77.3648949250901, 34.51104456345054], [-77.36456926152772, 34.51160886948004], [-77.36373093307462, 34.512003453643864], [-77.36248494094846, 34.51258129534369], [-77.36055915005502, 34.513414021325325], [-77.36001629747368, 34.51370599545678], [-77.35837462964778, 34.514554548349864], [-77.35738772130962, 34.51480424086304], [-77.35582812493959, 34.51527534306423], [-77.35423047869634, 34.51557188580804], [-77.35320156604112, 34.516010387548945], [-77.34875167265099, 34.51676998186652], [-77.3479197391342, 34.51693620845599], [-77.34705848966101, 34.51699384997121], [-77.34477286325165, 34.5172465378829], [-77.34386371979733, 34.5174255031741], [-77.34266149816547, 34.51751763834112], [-77.34162159488821, 34.517745603237195], [-77.34064182698201, 34.51784387586408], [-77.34004767170916, 34.51792045719621], [-77.3393292646881, 34.518108600926666], [-77.33847025237617, 34.51824596733968], [-77.33798531850015, 34.518537511502686], [-77.33727107596152, 34.51893853258999], [-77.33702345843325, 34.519062741229966], [-77.33687976460277, 34.51913489630383], [-77.33587202478493, 34.51949564706423], [-77.3352947225965, 34.51978747500098], [-77.3343345996159, 34.52034014864641], [-77.33396514486954, 34.5205543015871], [-77.33370531353562, 34.520627100915604], [-77.33336166085972, 34.520693464440036], [-77.33248932076548, 34.520829219978474], [-77.33212900967092, 34.52090106174208], [-77.33156818483508, 34.52108511896991], [-77.331135388733, 34.520800199033516], [-77.33125154035078, 34.52035941352717], [-77.33056613062152, 34.52059697495212], [-77.33001386470684, 34.520617268418576], [-77.32899417592273, 34.520683425128595], [-77.32836178274079, 34.52061516022907], [-77.32610932344086, 34.5207028844168], [-77.32585412414075, 34.52069014026683], [-77.32557464567648, 34.520793199549686], [-77.32312438835868, 34.52123633907152], [-77.32268422591376, 34.52197537628744], [-77.32204377419345, 34.52153373901308], [-77.31677057126082, 34.522116044464994], [-77.31639305850166, 34.52245571042177], [-77.31382800017629, 34.52465751808805], [-77.31318244365545, 34.525467320148636], [-77.31290757752608, 34.52458329550693], [-77.31254312730167, 34.52445127699489], [-77.31160401347253, 34.52357396492074], [-77.31392073137391, 34.522294892026984], [-77.31047679116081, 34.522561157393525], [-77.31012650359962, 34.521884017678865], [-77.30904802784897, 34.519781270587806], [-77.3055330744154, 34.51958247476455], [-77.30391787585202, 34.518856618968286], [-77.30305488535588, 34.51993826185939], [-77.30049618579156, 34.52213645660284], [-77.29930280048957, 34.52439369914927], [-77.29859929241451, 34.525187493909286], [-77.29819121829095, 34.526511693957396], [-77.29802040734049, 34.52689312094367], [-77.29840042892233, 34.527832357756154], [-77.29880157226245, 34.52838254872667], [-77.29984864287636, 34.52977180254148], [-77.30022931872524, 34.53030970482656], [-77.30049945094397, 34.530658581361905], [-77.30115841947372, 34.53153732056713], [-77.30144955221039, 34.5319194333838], [-77.30199173836223, 34.53280382859582], [-77.30200575356947, 34.53282677222089], [-77.30211009160988, 34.53286149791643], [-77.30358573269109, 34.532952066801855], [-77.30428599078212, 34.53193405276287], [-77.30441032062974, 34.531494451970765], [-77.30678657931931, 34.53038278210234], [-77.30826445204609, 34.52989723762507], [-77.30849095919831, 34.529853429168845], [-77.30993939111792, 34.529850082783895], [-77.31175461244129, 34.52931567113642], [-77.31308946690314, 34.52943206557815], [-77.31450019516996, 34.530045624874624], [-77.31487911081743, 34.530813334914484], [-77.31455343410616, 34.53296106152756], [-77.31355737185447, 34.53409797653233], [-77.31125138108114, 34.535327589081625], [-77.3097894283943, 34.53623482181103], [-77.30784270608129, 34.53764218285002], [-77.30727299315167, 34.53891734994838], [-77.30697029467038, 34.53920479174552], [-77.30657308856225, 34.539457815678794], [-77.3050837220482, 34.540150216266824], [-77.3049211806875, 34.54019413210428], [-77.3033973402352, 34.54094753549669], [-77.30055039881154, 34.541647239897635], [-77.29987831662329, 34.541712522328666], [-77.29707490929981, 34.54268227414917], [-77.29539152526475, 34.5435017270558], [-77.29076717026497, 34.54378529643367], [-77.2877530332316, 34.54466537731337], [-77.28720296097036, 34.54493035459747], [-77.28416190195671, 34.54843043434962], [-77.28392556075214, 34.5486105494082], [-77.28369976701171, 34.54886667036504], [-77.28142917431171, 34.55163522539148], [-77.28085804673493, 34.552307184103576], [-77.28067335783443, 34.552468176109464], [-77.27749997310383, 34.555418289897815], [-77.27656132987812, 34.55590716418497], [-77.2713385908754, 34.558927042982155], [-77.27091611707299, 34.55909905593255], [-77.27052573497859, 34.55937032884886], [-77.26965037183285, 34.560054844149576], [-77.26791093656415, 34.562703158559394], [-77.267596974744, 34.56307764844036], [-77.26753193180794, 34.56315641947124], [-77.26643147571849, 34.564689448293024], [-77.26615591529661, 34.56484964465714], [-77.26552679548239, 34.5653119154627], [-77.26367640940387, 34.566539932692784], [-77.26301350512213, 34.56690691762678], [-77.26181405563219, 34.567796524428424], [-77.25976412047558, 34.56927443655625], [-77.25914725535299, 34.5699542353979], [-77.258098604151, 34.57103373841348], [-77.257343591641, 34.57169762788661], [-77.25714677594806, 34.57220431861017], [-77.25586717169234, 34.57333911155226], [-77.2557622181034, 34.57345850896316], [-77.2556439843849, 34.57349661072698], [-77.25552688954963, 34.57356047466966], [-77.25341024256699, 34.57413863775707], [-77.25114544666042, 34.575556197790775], [-77.249987006471, 34.57635175695719], [-77.2495247240912, 34.57673801673575], [-77.24816482023431, 34.577692936048706], [-77.24724536362781, 34.57844382133794], [-77.24665037726906, 34.57864200277818], [-77.24594894767407, 34.579161958866806], [-77.24399611570018, 34.58007314689925], [-77.2429541204204, 34.580612355062634], [-77.24150297273749, 34.58128382996934], [-77.24081991040966, 34.58170816743953], [-77.2389253096625, 34.5822868404819], [-77.23721356925424, 34.58330919248705], [-77.23706130758872, 34.58339657792407], [-77.23522304715895, 34.584251935578244], [-77.2327457252558, 34.5852596466177], [-77.23124472027943, 34.58597142117286], [-77.23043504746377, 34.586545220656575], [-77.2282531658368, 34.587471740404595], [-77.22726849218081, 34.58769280231706], [-77.22447722009142, 34.58826814052661], [-77.22251871747912, 34.5887257522358], [-77.2217511549548, 34.58963044881725], [-77.22074952565286, 34.59089224260137], [-77.22024033371495, 34.59139656175396], [-77.22002595228636, 34.59176748442716], [-77.21918473603472, 34.593198628363574], [-77.21838083881212, 34.59471712389823], [-77.21807832628333, 34.59529450684199], [-77.214906467198, 34.59663145927298], [-77.21515696159427, 34.59795499583356], [-77.21462191450519, 34.59906183269917], [-77.21345988164742, 34.60028808732168], [-77.21250878671164, 34.600858741785316], [-77.21097847132673, 34.60159845081918], [-77.20860196140006, 34.60264231188999], [-77.2046671115952, 34.603363713475304], [-77.20373356275802, 34.603569972746314], [-77.20311215921018, 34.60380716922209], [-77.1972162304516, 34.605569787608545], [-77.19517864828788, 34.60614707352006], [-77.19488976120572, 34.60622008791677], [-77.19462958434042, 34.60634024644111], [-77.1939637209861, 34.6067855797756], [-77.19131371567154, 34.608298202362505], [-77.18866491637336, 34.60876592473666], [-77.18700761765206, 34.6089539435833], [-77.18629552797778, 34.6090923025595], [-77.18603846663318, 34.60943066675969], [-77.18461038928724, 34.6102809784648], [-77.18008923544531, 34.6127300885914], [-77.17924384421791, 34.61333812512291], [-77.1717338489276, 34.615838296101515], [-77.17069651155823, 34.61625225249662], [-77.16967842754836, 34.616508345459366], [-77.16249278954537, 34.61947240005365]], [[-77.32424358751425, 34.522430539132976], [-77.32452413769668, 34.522729880647724], [-77.324888474238, 34.52308933358366], [-77.32447356479565, 34.523556582356136], [-77.32500995159621, 34.5232296441527], [-77.32538748955183, 34.523585045148145], [-77.32499305484028, 34.523954501309674], [-77.32432395106278, 34.52380806980703], [-77.32421190761556, 34.52378902884395], [-77.32416351643298, 34.5237911191811], [-77.32404441220093, 34.523671909433574], [-77.32333697194943, 34.522900503899834]], [[-77.34506203165425, 34.53427877175881], [-77.34514748852074, 34.53420824203063], [-77.34513935908313, 34.53419221717133], [-77.34516781638357, 34.53415374383684], [-77.34521476822448, 34.53416905832546], [-77.34526514693759, 34.53418868229478], [-77.34526623828991, 34.53419044913181], [-77.34526585460046, 34.534191210401524], [-77.34526507490001, 34.534191805760535], [-77.34518036268965, 34.53421217712494], [-77.34516625550208, 34.53422141839512], [-77.34507314807115, 34.534284183070376], [-77.3450656785624, 34.53432722498737], [-77.34505683242998, 34.53428856457524]], [[-77.40015400719616, 34.578345783929535], [-77.39978700825617, 34.57866838199321], [-77.39968534268385, 34.57872843525134], [-77.39958761444782, 34.57885208637987], [-77.39949646957709, 34.57897674794027], [-77.39939298292485, 34.57907134437352], [-77.39938242340035, 34.5790826029445], [-77.39935686287458, 34.57909766922451], [-77.39925282886882, 34.579173946502706], [-77.39919597236265, 34.57917729518485], [-77.39915755425321, 34.57916782576001], [-77.3990974693584, 34.57916507440103], [-77.39907063546875, 34.57916788405308], [-77.3990482171216, 34.57917828210317], [-77.39903582720562, 34.5791837125363], [-77.39902444305054, 34.579198705798404], [-77.39899896401397, 34.579213353431925], [-77.39895904369718, 34.57921819753959], [-77.39893098607929, 34.5792323682665], [-77.39890045903661, 34.57924961581558], [-77.39888524350008, 34.579255466916536], [-77.39882345059956, 34.57928077820848], [-77.39880660343368, 34.5792882192062], [-77.39880195373466, 34.5792915515347], [-77.39879615099981, 34.57929096998607], [-77.3987527012903, 34.579306683321924], [-77.39874392487057, 34.57930171001292], [-77.39872807544782, 34.57930509286799], [-77.39872043540458, 34.57930387453108], [-77.39871107030038, 34.57930520495476], [-77.39870344928744, 34.579310990441726], [-77.39868791687303, 34.579326869687975], [-77.39868472928067, 34.57933369461101], [-77.39867882196474, 34.57934393185853], [-77.39865632901068, 34.579357963198], [-77.39865477574014, 34.5793588126599], [-77.3986541953869, 34.57935915279919], [-77.39865372127592, 34.57935885035117], [-77.39864877743273, 34.57935905277792], [-77.39862956967065, 34.57935431617885], [-77.3986272523247, 34.57935966170493], [-77.39861730212812, 34.579363594189786], [-77.39860778260513, 34.579368027390494], [-77.39860494310548, 34.579368961093365], [-77.39856620085187, 34.5793822926438], [-77.39854281910895, 34.57938821046187], [-77.39850643822503, 34.57939482490474], [-77.39847702441263, 34.57940521117996], [-77.3984376147639, 34.579410608900055], [-77.39840793388322, 34.579407545172124], [-77.39837936843522, 34.57942021558408], [-77.39831706960325, 34.5794517502212], [-77.39830942802057, 34.57945174185895], [-77.3982299605775, 34.57945203989107], [-77.39821092438939, 34.57944759767283], [-77.39817170617161, 34.57943869735738], [-77.39791781824272, 34.579408855368584], [-77.39791624313918, 34.5792002666614], [-77.39794141324381, 34.57908961105128], [-77.3980163948552, 34.578869144860455], [-77.39801820338978, 34.57886624532908], [-77.39821096129444, 34.57868889327365], [-77.39825204091704, 34.578664484939125], [-77.39833723580459, 34.57860792806166], [-77.39840797295075, 34.578564466056434], [-77.39846215226211, 34.57853152439808], [-77.39850647845637, 34.578504412770414], [-77.39852283910211, 34.578492634242934], [-77.39858545613224, 34.5784659703878], [-77.39860041194503, 34.578458886667555], [-77.39860498330866, 34.578455854259914], [-77.39861394850001, 34.57845219891145], [-77.39863819890778, 34.57844108006145], [-77.39865423517881, 34.57844327366575], [-77.39867784083631, 34.57842500474964], [-77.39868090228086, 34.578423464126374], [-77.39870348723426, 34.57842603486216], [-77.39872548262485, 34.578422065107375], [-77.39877596340364, 34.578410436767086], [-77.39880199100833, 34.57839805754893], [-77.39886071312498, 34.5783833875329], [-77.39890049503691, 34.57836211958188], [-77.39894518805974, 34.5783560818901], [-77.39894974649866, 34.5783570093906], [-77.39895188844105, 34.578357719057436], [-77.39895887384588, 34.57835901926694], [-77.39897437197574, 34.57836074215331], [-77.39899667723523, 34.57835606521073], [-77.39899899761944, 34.57836032916034], [-77.3990008714002, 34.5783549783802], [-77.3990073892902, 34.57835201901463], [-77.39902892828927, 34.578328090498545], [-77.39904825022782, 34.578325700516096], [-77.39906656373779, 34.578323746713544], [-77.39909750166582, 34.578320364616665], [-77.39918287190038, 34.57828777908596], [-77.39919600538252, 34.5782865763117], [-77.39920659299732, 34.57828161285042], [-77.3992421230594, 34.5782650774548], [-77.39929450932127, 34.57824432809547], [-77.39931240972938, 34.57823564700885], [-77.39936159164846, 34.57821398056832], [-77.39939301325026, 34.57819942260572], [-77.39939981452272, 34.5781965808515], [-77.39942660739379, 34.578185386062756], [-77.39943746216655, 34.578178644260866], [-77.39943446028093, 34.578157717074504], [-77.39942879086931, 34.578146519956164], [-77.39942543148766, 34.578132483993734], [-77.39942937266437, 34.57811802047135], [-77.39943237456082, 34.57808907156229], [-77.39943263563376, 34.57807837274166], [-77.39943832039047, 34.57807329780707], [-77.39944226885005, 34.57807060366519], [-77.3994496325884, 34.578067985305736], [-77.39948243766415, 34.578061399474876], [-77.39949152037289, 34.578057334723745], [-77.39951280728728, 34.57806680448141], [-77.39952696506319, 34.57807963820278], [-77.39954077119464, 34.578064525939276], [-77.39954252152539, 34.578064403003054], [-77.3995437663986, 34.578059109899726], [-77.3995050563996, 34.578014851135556], [-77.39952600993075, 34.57794284509537], [-77.39959002808784, 34.577887502205485], [-77.39969123779707, 34.57788476023535], [-77.39978703388377, 34.577823700095344], [-77.39990869384624, 34.577825508936996], [-77.40007984040389, 34.57793191172264], [-77.40013199773605, 34.5779772292834], [-77.4001677214017, 34.57832946598539]], [[-77.34468280339773, 34.53390802344895], [-77.34468240061348, 34.53390793274811], [-77.34462189718826, 34.53389362615172], [-77.34459818368035, 34.533866680335656], [-77.34460450699424, 34.53385793557938], [-77.34464056663302, 34.53382521363804], [-77.34474785961172, 34.53377610428526], [-77.34477343416872, 34.53376569581362], [-77.34478436904621, 34.53375936026286], [-77.34482250802573, 34.53374182924131], [-77.34480993728452, 34.533767172131434], [-77.34482725347483, 34.53379189458502], [-77.344837641232, 34.53388559573656], [-77.34478105898451, 34.533902843799744], [-77.34477138973556, 34.53390118281592]], [[-77.34175064355324, 34.53763938449141], [-77.34170507415033, 34.53767463454616], [-77.34169753095613, 34.53767503565758], [-77.34168864756828, 34.53766663807336], [-77.3417291062187, 34.537637883807406], [-77.341682909458, 34.53760174528151], [-77.34175106834036, 34.53762099858382], [-77.34176056763211, 34.53763335789178], [-77.34175688665863, 34.537637757447655]], [[-77.34398909405971, 34.535217155516165], [-77.34402980210204, 34.53514245963503], [-77.34410601128086, 34.535092552805835], [-77.34416590444883, 34.53504418709859], [-77.34424268996898, 34.53507288750583], [-77.34430478212768, 34.53509896198662], [-77.34433296664598, 34.53518230820132], [-77.34428614932618, 34.5352337338318], [-77.344264589267, 34.53525675164906], [-77.34420484867442, 34.53532315158562], [-77.34415849127691, 34.53536543579465], [-77.34411605589891, 34.535335927031156], [-77.34404240978616, 34.53529748701798], [-77.34399443621001, 34.53524944107849], [-77.34398044323203, 34.535233029087614]], [[-77.34580522745598, 34.53417434939358], [-77.34580658527013, 34.53417376985555], [-77.34582198232583, 34.53416744178196], [-77.34582989651271, 34.5341684954233], [-77.34583303486538, 34.53416884013238], [-77.34584076845626, 34.53416968957101], [-77.34584212201604, 34.53417029698967], [-77.34584747887514, 34.534172994875284], [-77.34585436515208, 34.534171333807045], [-77.34586441276114, 34.534172571493514], [-77.34585877717186, 34.53416709820621], [-77.3458588369171, 34.53416440038873], [-77.34585734559887, 34.534159653578534], [-77.34585747699978, 34.53415367083628], [-77.34585863030412, 34.534151818091445], [-77.34585755127844, 34.534150288873825], [-77.34585768273017, 34.534144303818884], [-77.34585781436178, 34.53413831057293], [-77.34585926662675, 34.53413642527954], [-77.34585968546341, 34.534133589620005], [-77.34586021988103, 34.534108432558874], [-77.34586723613667, 34.5341046760073], [-77.34587070137688, 34.534095085321425], [-77.34587143826292, 34.534051795486214], [-77.34595340473656, 34.53403250459525], [-77.3459556576039, 34.534034439157374], [-77.3459907560773, 34.53406457860439], [-77.34601302145384, 34.534083698091415], [-77.34602810748213, 34.53409665261543], [-77.34602453817715, 34.5341263210379], [-77.34602246612324, 34.53414354404241], [-77.34599297921223, 34.53417305676313], [-77.34597314831888, 34.534181243199114], [-77.34595152372759, 34.53421374311719], [-77.34595090454083, 34.53421467370173], [-77.34595023490405, 34.534215142848886], [-77.34590197916256, 34.534234405133056], [-77.3458854704074, 34.53422446216927], [-77.3458708434394, 34.5342156525755], [-77.3458535830116, 34.534205256883006], [-77.3458444581792, 34.53419976113257], [-77.34582644417024, 34.534188911562666], [-77.34580518689388, 34.53417610861226], [-77.3458034459751, 34.53417506008146], [-77.34579377644991, 34.534169236262414]], [[-77.3422525538053, 34.53725510443251], [-77.34234848269202, 34.53724992926898], [-77.3424657363761, 34.53721447965976], [-77.34254563230404, 34.53721228963678], [-77.34273303724034, 34.537243554261835], [-77.34262308982363, 34.53714204706243], [-77.34274627203251, 34.53702350338511], [-77.34276091627807, 34.53700872932461], [-77.34288623147108, 34.53701699836705], [-77.34291763845681, 34.53703846698819], [-77.34292133690161, 34.53705077284903], [-77.34291067593664, 34.53708163116164], [-77.34288860532772, 34.53710384864191], [-77.34284141906201, 34.53715311397468], [-77.34281465556515, 34.53715908729554], [-77.34274792088098, 34.53724231827671], [-77.3427427248828, 34.537247245346315], [-77.34274197193665, 34.537247903609654], [-77.34274107206106, 34.53724868572566], [-77.34265333636237, 34.53732895465785], [-77.34255459340409, 34.53739672018019], [-77.34254762023637, 34.537401691044444], [-77.34249950244201, 34.53743027471327], [-77.34234304423285, 34.537485391645376], [-77.3422567343029, 34.53743957072808], [-77.34218768715607, 34.537424854052226], [-77.34217567119478, 34.537344826416074], [-77.3421796197243, 34.53732825507681], [-77.34224422212938, 34.53726140823761], [-77.3422485654407, 34.537256112623744]], [[-77.34499162887569, 34.532889816631226], [-77.34499064293924, 34.53288430186333], [-77.3449887245659, 34.532876924404945], [-77.34499715289559, 34.532760955289916], [-77.34499112890329, 34.532753898203424], [-77.3449774275058, 34.53270258863317], [-77.34495055320549, 34.53267955050754], [-77.34493903766878, 34.53266644201546], [-77.3449604453066, 34.5326720652922], [-77.34500538191536, 34.532686788082415], [-77.34502763898378, 34.5326953637196], [-77.34501381913574, 34.532752351801236], [-77.34510241375612, 34.532734598893875], [-77.34514584123798, 34.53270501495571], [-77.34515419517645, 34.53270646792281], [-77.34516112564027, 34.53270675873637], [-77.34520088399405, 34.53272005085574], [-77.3452075318427, 34.532726445623936], [-77.3452053705787, 34.53273099475237], [-77.34521006425497, 34.53273627837914], [-77.34522452689743, 34.532773922641255], [-77.34526290417419, 34.5327839210928], [-77.34526326458956, 34.532804947232904], [-77.34529115338775, 34.53284106118066], [-77.34528417199064, 34.5328965499551], [-77.34528199912563, 34.53290358339467], [-77.3452750265433, 34.53291672115861], [-77.34525360122505, 34.532968874536564], [-77.34524974639696, 34.53300398820283], [-77.34519325396154, 34.533050860474496], [-77.3451538554142, 34.53308150569855], [-77.3450577461935, 34.53308113429869], [-77.345007545971, 34.53301028320232], [-77.34501785093376, 34.53300279677694], [-77.34500278335601, 34.533002050008676], [-77.34499890876808, 34.53296741078922]], [[-77.34512921315475, 34.53314773024163], [-77.34511549913077, 34.53318703065132], [-77.34509156453768, 34.53320495664177], [-77.34507537891338, 34.533188465777954], [-77.3450742020195, 34.53316692752426]], [[-77.34899613928098, 34.551167616717436], [-77.34899271652532, 34.55115958079185], [-77.34899646118362, 34.551153627830175], [-77.34903274102616, 34.55111467949374], [-77.34905541539437, 34.55111436090526], [-77.34908196368426, 34.55111613545564], [-77.34909545918852, 34.551117037527], [-77.34912319592459, 34.55112341787829], [-77.3491442787936, 34.551128267620626], [-77.34914897117184, 34.55113408615562], [-77.3491501052663, 34.551136932372486], [-77.34915449782252, 34.551142882031755], [-77.34916236003721, 34.55115412592174], [-77.34916805889118, 34.55116125031974], [-77.34916993934937, 34.55116347631031], [-77.3491709221326, 34.55116453938237], [-77.34917789117196, 34.55117254485711], [-77.34919200415547, 34.55118705548603], [-77.34919575969224, 34.55118919533834], [-77.3491963662049, 34.55119148052496], [-77.34919618922954, 34.551194218360585], [-77.34920161752825, 34.55121493306535], [-77.34920159577956, 34.55122133057526], [-77.34921278082324, 34.55123334035959], [-77.34921406230418, 34.55123568714074], [-77.34921927173937, 34.551249389561626], [-77.34922839131622, 34.551271984913335], [-77.34918975254826, 34.55128491338607], [-77.34915689071295, 34.55127894293459], [-77.34914083232489, 34.55127805195461], [-77.34910970515162, 34.55127632488949], [-77.3490917332789, 34.551278962285224], [-77.3490762917963, 34.551279584195484], [-77.34906110432368, 34.55127215009748], [-77.34902383901768, 34.55125893023663], [-77.34901515890212, 34.55123031581739], [-77.34901145027513, 34.55121809017169], [-77.3490243448177, 34.55119820813117]], [[-77.39871235748954, 34.57818230179515], [-77.39874777652105, 34.578182549413356], [-77.39875274860248, 34.57819020757495], [-77.39879070986245, 34.57822406823731], [-77.39875274551744, 34.57826236376656], [-77.39873965916208, 34.5782704047976], [-77.3987183276949, 34.57827159930669], [-77.39870349387853, 34.57827242996194], [-77.39869454808908, 34.57826447900491], [-77.3986846693977, 34.57825965384325], [-77.39867886929181, 34.57824908878544], [-77.39867411979618, 34.578240890689116], [-77.3986717790099, 34.57823358741598], [-77.39866909404208, 34.5782256146299], [-77.39866715844084, 34.57821535927225], [-77.39866377219815, 34.578199577321676], [-77.3986716381649, 34.578188177060625], [-77.39867887221692, 34.57818207412526], [-77.39870205299954, 34.57818223173566], [-77.39870349781798, 34.57818154490817]], [[-77.34398054447018, 34.53031921731686], [-77.34398684000547, 34.530331615339506], [-77.34399278370122, 34.53033486513305], [-77.34401568370907, 34.53033995772315], [-77.34402341004548, 34.53034575970242], [-77.34402572979673, 34.530347440018055], [-77.34402447725584, 34.53035826793003], [-77.34402448979019, 34.5303609055606], [-77.34401910133076, 34.53036341315304], [-77.3440162937523, 34.53036471969741], [-77.34401460275066, 34.53036615345454], [-77.34401183296681, 34.5303676370933], [-77.34401003146975, 34.53037031039499], [-77.34400950734583, 34.53037071190697], [-77.3440066696038, 34.53037288579635], [-77.34400440405835, 34.530378661097636], [-77.34400407892127, 34.530379143579346], [-77.34400395543551, 34.53037932682398], [-77.34400368071104, 34.530379734496684], [-77.34399103061926, 34.53038878065357], [-77.3439789650152, 34.53038765007585], [-77.34397654803496, 34.53038310483409], [-77.34397141633683, 34.53037345444124], [-77.34396898975132, 34.530368891132596], [-77.34396639931487, 34.53034708261966], [-77.34396346027569, 34.53033908430051]], [[-77.39941100610162, 34.57806822580032], [-77.3994089743389, 34.578064592734535], [-77.39940533077376, 34.57806409664563], [-77.39940290306956, 34.578062761043974], [-77.39940089542193, 34.57806119630163], [-77.3993991745391, 34.57805985506105], [-77.39939355800503, 34.57805747550366], [-77.3993991747625, 34.57805349554139], [-77.39940050059568, 34.5780550449923], [-77.39940225296625, 34.57805314414675], [-77.39940229163945, 34.57805293998292], [-77.39940526106078, 34.57805254540777], [-77.3994053311796, 34.57805251909085], [-77.3994053871693, 34.57805251198674], [-77.39940680254574, 34.57805232041602], [-77.39940687028157, 34.578052339470446], [-77.39940720415713, 34.57805265893285], [-77.3994072550441, 34.5780526649025], [-77.3994073385602, 34.57805267469993], [-77.39940763981909, 34.57805263422818], [-77.39940778775389, 34.57805277509584], [-77.39940797326594, 34.57805290774399], [-77.39940802458176, 34.5780529554749], [-77.39940817105861, 34.57805313598017], [-77.39940819162298, 34.57805329085955], [-77.39940821695379, 34.57805338154409], [-77.39940828748988, 34.578053408329154], [-77.3994082885221, 34.57805348418918], [-77.39940825938109, 34.5780535341184], [-77.39940828303286, 34.578053621078524], [-77.39940830239962, 34.57805368949825], [-77.39940831313302, 34.57805378855073], [-77.39940831375047, 34.57805379085071], [-77.39940831377815, 34.578053792207456], [-77.39940834838043, 34.57805389017502], [-77.39940835028361, 34.57805403359796], [-77.3994083597478, 34.5780540958463], [-77.39940837674877, 34.57805447293701], [-77.39940837996369, 34.578054507552274], [-77.39940840929029, 34.57805482331263], [-77.39940883352824, 34.57805481420388], [-77.39940932192613, 34.578055200879575], [-77.39940954923802, 34.57805639651923], [-77.39940987979489, 34.57805685271052], [-77.39941139585865, 34.578058218609364], [-77.39941148732372, 34.57805934053931], [-77.39941271927111, 34.57806001709211], [-77.39941463362715, 34.57806106840553], [-77.39941764357832, 34.578063026819066], [-77.3994207414494, 34.5780634828492], [-77.39942494457027, 34.57806621457455], [-77.39941764312252, 34.5780760880991]], [[-77.39937918996164, 34.578044647207896], [-77.3993808616605, 34.57804587169921], [-77.39938106227382, 34.578046010613825], [-77.39938566558754, 34.57805069102757], [-77.39938042296932, 34.57804640770172]], [[-77.3440179726442, 34.53036980800315], [-77.34401790906432, 34.53036962478368], [-77.34401809974239, 34.530369513917364], [-77.3440182725094, 34.53036958109779], [-77.34401833076802, 34.5303698300787]], [[-77.3440176410687, 34.53036906342942], [-77.34401772923357, 34.530368958488005], [-77.34401785857457, 34.53036903213375], [-77.34401779074621, 34.53036908203706], [-77.34401772511202, 34.53036913706525]], [[-77.30488900656508, 34.52871671328778], [-77.30465855656382, 34.52814027568283], [-77.30589207673593, 34.52795826334247], [-77.30549551240442, 34.52854809762149]], [[-77.34967311015626, 34.55160762380555], [-77.34984184975558, 34.551632604320936], [-77.34986875286297, 34.55163676981193], [-77.34987647168734, 34.5516396033975], [-77.34988222766283, 34.55164362875411], [-77.34988396249584, 34.55165309718994], [-77.34995323310781, 34.55175582100754], [-77.34997916282015, 34.55180326638755], [-77.34998805220164, 34.55187322066416], [-77.35008604423147, 34.55196375934369], [-77.35009195889825, 34.55198067825584], [-77.35011185520837, 34.55201237650295], [-77.35011518411422, 34.55209974633935], [-77.35015013949456, 34.552156624554385], [-77.35024736114272, 34.552246354517386], [-77.35027658522081, 34.552302315503745], [-77.35031596277132, 34.55231567351382], [-77.35031329062976, 34.55235877997399], [-77.35036073744274, 34.552480005980975], [-77.35044218042214, 34.552542330510406], [-77.35050218228459, 34.552614348611556], [-77.35059997261048, 34.552764443683024], [-77.35062743664986, 34.5527923693485], [-77.35087744793438, 34.552813142526574], [-77.35101787968212, 34.552887574696754], [-77.35113287504475, 34.55286124588925], [-77.35125376246387, 34.55281641601278], [-77.35127504462, 34.55278970142495], [-77.35128639274164, 34.552745092375815], [-77.3513061334988, 34.55271770911276], [-77.35128472343388, 34.55266589777247], [-77.35122094205781, 34.55259404611391], [-77.35115960551639, 34.55259965911846], [-77.35118773000043, 34.55255744615893], [-77.35102748279974, 34.55246980027707], [-77.35101942591552, 34.55246435905621], [-77.35101847691716, 34.55245939384006], [-77.35100598638329, 34.552447467394714], [-77.3509494117289, 34.55239665182652], [-77.35089890359714, 34.55235419161416], [-77.35088312951979, 34.55232612092126], [-77.3508355479734, 34.55227926687187], [-77.35079439524995, 34.55224682127848], [-77.35078837004794, 34.55221738383363], [-77.35076476649385, 34.55217431448469], [-77.35075796872741, 34.5521296529386], [-77.35074020589632, 34.5520697559218], [-77.3507216150401, 34.55201247406392], [-77.35069469408258, 34.55198597085804], [-77.35066542683965, 34.55189814980305], [-77.35064878547433, 34.55186380158456], [-77.350613420571, 34.55180610244254], [-77.35058000971178, 34.551788031874324], [-77.35055375242608, 34.55173064409228], [-77.35055371479807, 34.5517305961747], [-77.35049908091298, 34.55167726795623], [-77.35048779515954, 34.55165979136257], [-77.3504756106964, 34.551558235047125], [-77.35046059782617, 34.55151040155908], [-77.35039193024997, 34.551490963384545], [-77.35038971692113, 34.5514481856389], [-77.35043239337372, 34.55142320695023], [-77.35042359758648, 34.551406663363075], [-77.35037771117801, 34.551388708127426], [-77.35037308059415, 34.55138454506095], [-77.35036600400977, 34.55135547224212], [-77.35034558252995, 34.55133212653335], [-77.35031337733383, 34.551309037109384], [-77.35027018742022, 34.55125373194167], [-77.35024940675538, 34.5512235567528], [-77.3502024874172, 34.551151577553185], [-77.35015671967426, 34.551114484847176], [-77.35007823852939, 34.55106400946775], [-77.35003472061734, 34.55103715203319], [-77.34993430492369, 34.55105663668975], [-77.34988096916969, 34.55110564206071], [-77.3498273068958, 34.551128760727195], [-77.34973127195687, 34.55114606399865], [-77.34968352956321, 34.55115466605776], [-77.34951442351365, 34.55118945280894], [-77.34948864705346, 34.5510925270464], [-77.34948785522296, 34.55108887517729], [-77.34948801779126, 34.55108830565083], [-77.34948764715233, 34.55108766576259], [-77.34948883645191, 34.55108429427958], [-77.349549866234, 34.550993751256655], [-77.3495892809643, 34.550984809748044], [-77.34963184692168, 34.5509451974009], [-77.34964447314545, 34.55091559759055], [-77.34964243806851, 34.550913070664365], [-77.34964171750015, 34.55091212270388], [-77.34964009358791, 34.550909399568205], [-77.34962009129114, 34.55090373273664], [-77.34959123311589, 34.55089994941713], [-77.34958926080577, 34.550891472021476], [-77.34958895686195, 34.550890164319796], [-77.34954275953388, 34.55087368194481], [-77.34951187670137, 34.55088968151445], [-77.34950784131087, 34.55087123468152], [-77.34952547348679, 34.550857689145865], [-77.3495635842182, 34.55085055937193], [-77.34959256472885, 34.55084206402408], [-77.34962073640015, 34.55084195072062], [-77.34967773568192, 34.55082453138731], [-77.34969096901565, 34.55083125526155], [-77.34969899322874, 34.5508179366405], [-77.34971533613685, 34.5508107722927], [-77.34979083934664, 34.55075670949853], [-77.3498548111699, 34.5507907007727], [-77.34988246473017, 34.55079031117933], [-77.34988818898367, 34.55079174746929], [-77.34989645354636, 34.550789834046576], [-77.34997712370576, 34.55077903100358], [-77.34998665464205, 34.55077826525503], [-77.349996266914, 34.5507763097736], [-77.35003591109547, 34.55077049634073], [-77.35005372066182, 34.550773220187466], [-77.35006627514545, 34.550771917812476], [-77.35008517226213, 34.550762522021856], [-77.35009587950205, 34.55076268773636], [-77.35009370356264, 34.55075632195806], [-77.3500907108824, 34.550753429400764], [-77.35008554005566, 34.55074652991573], [-77.35004460971253, 34.55072797023877], [-77.34999072064392, 34.55070993695593], [-77.34998932819981, 34.55070945704692], [-77.34997595138292, 34.55070432795024], [-77.3498896393134, 34.5507286918336], [-77.34983253181638, 34.550707411267524], [-77.34981800217804, 34.55067358736647], [-77.34975335736394, 34.550646635870415], [-77.34976360466224, 34.550620210384366], [-77.34969622304061, 34.55060285066964], [-77.34960755657663, 34.55063627055342], [-77.34959067444412, 34.55064103388139], [-77.34949746555185, 34.5507092052761], [-77.34933017986296, 34.550621377501], [-77.34931356825726, 34.550617345238315], [-77.34930422501452, 34.55057575154528], [-77.34928774528223, 34.550516203921326], [-77.3492573753874, 34.550509443918315], [-77.34928553382164, 34.550492543086065], [-77.34930655369267, 34.550474539352315], [-77.34935544306546, 34.55046498346752], [-77.34942195723748, 34.55043473900581], [-77.34942402973539, 34.550413090399964], [-77.34945308806918, 34.550358869598114], [-77.34943239936763, 34.5503464182935], [-77.34942165856725, 34.55031040159618], [-77.34945562476165, 34.550297299337245], [-77.34947026165347, 34.55027195740328], [-77.34946276892086, 34.55026310085315], [-77.34945903300174, 34.55024649361478], [-77.34945103547922, 34.55026260132623], [-77.3494272982655, 34.550259768442444], [-77.34942721219007, 34.55025100813471], [-77.34945468565942, 34.55023622927143], [-77.34944184309884, 34.55021859390036], [-77.34942582901986, 34.55020977928854], [-77.3494108736091, 34.550206588368674], [-77.34936470589807, 34.550216616945384], [-77.34935899285605, 34.55021781033135], [-77.34932977359523, 34.55024304696497], [-77.34931510032804, 34.550256316287005], [-77.34931706392341, 34.550259502362536], [-77.34931144127943, 34.550262108620394], [-77.3493081554189, 34.55025940341951], [-77.34922939290595, 34.55027893472112], [-77.34921276279032, 34.55028486021554], [-77.34915815855176, 34.55030636569444], [-77.34911370340026, 34.55032416272414], [-77.34905232843768, 34.550332284166075], [-77.34894919497127, 34.550328868744515], [-77.3489747220226, 34.55039100124626], [-77.34898283845052, 34.55042654008282], [-77.34901277416166, 34.5504447183199], [-77.34903097344294, 34.55043076137882], [-77.34908156716189, 34.55043084093562], [-77.34909538788865, 34.55044094661969], [-77.34907368362664, 34.55045154568232], [-77.34903569529793, 34.55048013908828], [-77.34904630316365, 34.55050031754149], [-77.34901108810226, 34.550517988874304], [-77.34898671351695, 34.55053341529671], [-77.34896163306038, 34.55053438834835], [-77.34894809698177, 34.550531824464365], [-77.34892344752657, 34.5505268942704], [-77.34891306656345, 34.55051217565829], [-77.34890310888697, 34.55052982101261], [-77.34890726466736, 34.550532548449674], [-77.34891265180308, 34.55053019885246], [-77.34893028076071, 34.550541212258715], [-77.34892051821453, 34.55055269050952], [-77.34892358283207, 34.55055747738791], [-77.34892121701581, 34.55056363854831], [-77.34891175495594, 34.55056917088549], [-77.34888459882752, 34.55057986702282], [-77.34886216883851, 34.55059126375573], [-77.3488596126034, 34.55059575582493], [-77.34885495569334, 34.55059795544237], [-77.34881247497242, 34.55063443567455], [-77.34881221339342, 34.55063470863662], [-77.34881217884343, 34.55063476906115], [-77.34881165391162, 34.55066539172959], [-77.34882106995691, 34.55068827202841], [-77.34882468711697, 34.5506941188356], [-77.34882479770792, 34.5507030061262], [-77.34882670499846, 34.5507244310502], [-77.3488095437496, 34.550745405741765], [-77.34879720127968, 34.55075167296323], [-77.3487911830986, 34.55076014521494], [-77.34879473698439, 34.55076853469652], [-77.3487850791887, 34.55080787018048], [-77.34877475984197, 34.550823713665714], [-77.3487745796571, 34.5508441248744], [-77.34879691765241, 34.55087572747431], [-77.3488028552312, 34.55088087593679], [-77.34880263954543, 34.55088323422645], [-77.34882557632704, 34.55093881151609], [-77.34886627989745, 34.550955762923955], [-77.34890284449972, 34.55095637074379], [-77.34893221164548, 34.55096621869917], [-77.34893448574621, 34.55098434468599], [-77.34893949872983, 34.551007208583044], [-77.34893353897506, 34.551015083514386], [-77.3489411895373, 34.55101976543435], [-77.348950420404, 34.55102164177771], [-77.34899050625734, 34.55103203052613], [-77.34899921236111, 34.5510340702699], [-77.34901077270142, 34.55102745854458], [-77.34901165918059, 34.551034444570114], [-77.34904825967477, 34.55103540205353], [-77.34905879089577, 34.55102766227002], [-77.34906031705046, 34.55100390653856], [-77.34905983224176, 34.550990340301055], [-77.3490491991599, 34.550994573950675], [-77.34900886292323, 34.550973641772806], [-77.34905037435368, 34.55094350244756], [-77.34906677742208, 34.55094495420378], [-77.34909981635786, 34.55092767900962], [-77.34917352358825, 34.55094994684232], [-77.34917345558506, 34.55096471262868], [-77.349197066222, 34.55096705146255], [-77.3492346551504, 34.55096455263782], [-77.34926304476859, 34.55095726904278], [-77.34925186063205, 34.5509692765451], [-77.34925097347659, 34.550972493629644], [-77.34921842573797, 34.55099102776567], [-77.34919636276497, 34.550997624604705], [-77.34918701697816, 34.55100346655347], [-77.34918816965772, 34.551009044438615], [-77.34918928779298, 34.551013073492456], [-77.34919603026472, 34.55101207549272], [-77.34925003629823, 34.55102745074129], [-77.34925384070533, 34.55106079939773], [-77.34922965398654, 34.55108631110297], [-77.34923198977663, 34.55109454641266], [-77.34921628488186, 34.551113326534264], [-77.34920229849752, 34.55112942165838], [-77.3491992581433, 34.5511336156841], [-77.34919305978528, 34.55114117640757], [-77.34919210086689, 34.55113162410427], [-77.34918928237198, 34.551131294708945], [-77.34916889277955, 34.55112500888947], [-77.34916705724868, 34.55112040229011], [-77.3491637965246, 34.55111635900198], [-77.3491641601542, 34.55110430725124], [-77.34915497888237, 34.551099371008455], [-77.34914508009881, 34.551093442731556], [-77.34914061957973, 34.55109239348651], [-77.34913994457139, 34.55108057618733], [-77.34911658308452, 34.551080551079494], [-77.34912102995875, 34.55106471718811], [-77.34909673060224, 34.55106178304901], [-77.34907959026333, 34.55107538164694], [-77.34903974975018, 34.551065874045726], [-77.34899840276496, 34.55106925277338], [-77.3489597966897, 34.55107918244019], [-77.34892951920935, 34.55110746971555], [-77.34894532590738, 34.551137314575485], [-77.34892520880246, 34.55116929515821], [-77.3489344761765, 34.551191053044334], [-77.34894327115973, 34.55122790115951], [-77.34896659154543, 34.55124190389628], [-77.34897615542741, 34.55127343169158], [-77.34897933599787, 34.551283916611666], [-77.34898105742782, 34.55129129849514], [-77.34899312353456, 34.551298671740206], [-77.3490283034098, 34.551315891895754], [-77.34909094157359, 34.55131336912523], [-77.34911630970893, 34.55130964631832], [-77.34917861713434, 34.5513098594708], [-77.34918913459867, 34.55131177031996], [-77.34919651976749, 34.55130929925376], [-77.34922331882402, 34.55131001237404], [-77.34923794214346, 34.55132353000812], [-77.34925987908079, 34.551321701347135], [-77.34927207864547, 34.551355340458876], [-77.34927672673079, 34.5513635320442], [-77.34928035718687, 34.55136654721714], [-77.34927557079303, 34.55142490358721], [-77.34928440091488, 34.55143737642192], [-77.34931039634247, 34.5514644987984], [-77.34935273508425, 34.55147500462593], [-77.34938119020998, 34.551496797566664], [-77.34940867674192, 34.55151081932086], [-77.34947816043274, 34.55154835994894], [-77.34955977783304, 34.55156762075527], [-77.34957317840593, 34.55162605507285], [-77.3495738811907, 34.5516267964771], [-77.34957392502456, 34.551627151428534], [-77.34955668652323, 34.55169047608635], [-77.34952798085222, 34.551728252817725], [-77.34947188237474, 34.55182125552639], [-77.34947082670791, 34.55182463229125], [-77.34947106390833, 34.551825207974034], [-77.34947110852889, 34.5518256214521], [-77.34947163142262, 34.55183216396325], [-77.3495235911424, 34.551906592635866], [-77.34950340010506, 34.55194296509539], [-77.34950606287242, 34.55196597088786], [-77.34951089431296, 34.551972489266696], [-77.34948162096862, 34.55198512492987], [-77.3494811762377, 34.55199902323645], [-77.34951397965213, 34.55200264788354], [-77.34949698572048, 34.552023649712865], [-77.34950406082415, 34.552034677846976], [-77.34948646518619, 34.55204957818799], [-77.34948522420667, 34.55205630022808], [-77.34949590418363, 34.552066454224466], [-77.3494925646131, 34.55208359426815], [-77.34949450174526, 34.552109620560394], [-77.34949036709757, 34.55212845624544], [-77.34948914951009, 34.5521440283666], [-77.34949196817263, 34.55217187711316], [-77.34949306472048, 34.55218927326291], [-77.3494964381992, 34.55220967113856], [-77.34949711795943, 34.55222832049277], [-77.34949932886295, 34.55224957704681], [-77.34949961610741, 34.55227331351892], [-77.34949927316606, 34.55228702955456], [-77.34949788641661, 34.55231098983439], [-77.34949397895954, 34.55233266632456], [-77.34949367337103, 34.55234219871228], [-77.3494951927434, 34.552350456447314], [-77.3494942057174, 34.552357423411074], [-77.34949446841645, 34.55236395247943], [-77.34949073104984, 34.552373224728555], [-77.34950766306429, 34.552399299147915], [-77.34950974369005, 34.55239978700344], [-77.34955661851225, 34.55240465889723], [-77.34964708927706, 34.552411929404165], [-77.34964868224364, 34.552415346581164], [-77.34965458468001, 34.55241297617727], [-77.34965862383568, 34.55241278537231], [-77.34966118014339, 34.55240990166267], [-77.3496634826625, 34.552404148673475], [-77.34971722334195, 34.55234063154175], [-77.34972098981103, 34.552318941907814], [-77.34973709101708, 34.55227656721671], [-77.34973885952347, 34.5522264392595], [-77.34971838749672, 34.5521568482946], [-77.34967562309726, 34.55204848219453], [-77.3496785348689, 34.55204017285945], [-77.34967641879291, 34.55203232268203], [-77.34970764606547, 34.551974778374614], [-77.34969947464536, 34.551935897037275], [-77.34972380505813, 34.551911247748485], [-77.34970133368273, 34.551812609896395], [-77.34971993456402, 34.551789394271694], [-77.34968772401581, 34.55178241012399], [-77.34966962557687, 34.5517591075209], [-77.34962572426423, 34.551708639581626], [-77.34959510685042, 34.55168494721778], [-77.34957533668867, 34.55162710534156]], [[-77.34205040214522, 34.52884043039552], [-77.3420545254788, 34.52884032644508], [-77.34205509067723, 34.528836882702706], [-77.34201449854692, 34.528820839123696]], [[-77.34182183789316, 34.536799983540746], [-77.34166385777704, 34.53691281405706], [-77.34162738848867, 34.53695372256801], [-77.34156948773392, 34.53698477905198], [-77.34145252282752, 34.53706562510426], [-77.34140406200787, 34.53709340392987], [-77.34136957310253, 34.53714206957517], [-77.34133621373341, 34.537204765910076], [-77.34132910941021, 34.537305314831286], [-77.3413191157386, 34.537357990395506], [-77.34131545653368, 34.537452570320085], [-77.34135030076759, 34.53756402936179], [-77.3413530847369, 34.53757363020634], [-77.34137686132757, 34.53768855562734], [-77.34143526222844, 34.5377527959037], [-77.34152913227784, 34.53778906037031], [-77.34155085154256, 34.53779131941951], [-77.34155751496812, 34.53778910103221], [-77.34163778219762, 34.53777343056427], [-77.34174008373431, 34.53775377665723], [-77.34174801732054, 34.537753054849105], [-77.34175564377972, 34.53775173835508], [-77.3417699122547, 34.537754422946705], [-77.34189428011435, 34.53776751723359], [-77.34190081585814, 34.53783202080187], [-77.3419106278558, 34.537856589434774], [-77.34190618645381, 34.53787917973975], [-77.34191050462644, 34.53791781184538], [-77.34189277879432, 34.537949659363434], [-77.34189346234774, 34.537952639894755], [-77.34190719731819, 34.53797949230735], [-77.34187467685035, 34.53800559455098], [-77.34186194284683, 34.53803332510615], [-77.34185522762539, 34.53804817318513], [-77.34185441871088, 34.53805783234124], [-77.34183880869983, 34.53807117417673], [-77.34174429249113, 34.53812233866418], [-77.34173942288567, 34.53812504552251], [-77.34173701630739, 34.53812638325808], [-77.34169917871463, 34.538230659635474], [-77.34169970033824, 34.538254160663826], [-77.34169780195916, 34.538278183642255], [-77.34168212283191, 34.538317893952595], [-77.34168505371905, 34.53834798255699], [-77.34168510542781, 34.538348125050554], [-77.34169445636957, 34.53837732438046], [-77.34169774267305, 34.538398899124786], [-77.34169530617594, 34.538438406797184], [-77.34171205143151, 34.538485323785935], [-77.34169561001828, 34.538499567738256], [-77.34170409760195, 34.538514761692134], [-77.34173011164978, 34.53852806234754], [-77.34175315330029, 34.53850533196303], [-77.34175926579867, 34.53849041055], [-77.3417751174375, 34.538461028812364], [-77.34179780115028, 34.53842366237465], [-77.34181049884263, 34.53840904866941], [-77.34183173184257, 34.538377496099734], [-77.34184543725253, 34.538355604976246], [-77.34185821630004, 34.53830807849828], [-77.3418738821905, 34.538265633433745], [-77.34188805341616, 34.538227065011384], [-77.34189736379001, 34.538202936554015], [-77.3419359568559, 34.5381141589926], [-77.34194096715044, 34.53809996375271], [-77.34194232466506, 34.53809684836137], [-77.34194477482278, 34.538091325616875], [-77.34196616003754, 34.53803221477982], [-77.34197082973003, 34.53801127712455], [-77.34197327509162, 34.53800058888893], [-77.3419748450136, 34.537992256653794], [-77.34197861027481, 34.53796921903073], [-77.34198354646685, 34.53794132020384], [-77.34199226981309, 34.53790604931193], [-77.34199868478804, 34.53787966306977], [-77.34211798627166, 34.53782675924505], [-77.34213936232045, 34.53780579146467], [-77.34220776947612, 34.53773304729082], [-77.34233801074764, 34.53770332071848], [-77.34246716606083, 34.537610923057656], [-77.3426093139638, 34.53751125723196], [-77.34268290038085, 34.537467544302004], [-77.34273690715625, 34.53742904524956], [-77.3428291106744, 34.53735722689323], [-77.34287845322702, 34.5373143414095], [-77.34293701858353, 34.53726314063296], [-77.3429818487073, 34.53721284353099], [-77.34303580185323, 34.53714254117331], [-77.34311197979726, 34.53707171234234], [-77.34311510671986, 34.537056948111086], [-77.34309444032503, 34.536980135111456], [-77.34307085265064, 34.53695521966208], [-77.3429474534023, 34.53685113814454], [-77.34294791964416, 34.53684965204614], [-77.34293261619669, 34.53673028821483], [-77.34290252271023, 34.536642656642485], [-77.34288531672547, 34.536614683656275], [-77.34292041211374, 34.53658957858583], [-77.34295475939278, 34.53649480623607], [-77.34303691774554, 34.536470463632234], [-77.34295552392416, 34.53646169533766], [-77.34293790245266, 34.53637454391672], [-77.34293348820545, 34.53634754791997], [-77.34308626854818, 34.53621854443545], [-77.34315828319689, 34.5361809889299], [-77.34320239558936, 34.5361744209614], [-77.34346577483772, 34.53610987027102], [-77.3435537846741, 34.53605336021533], [-77.34374984055832, 34.53587825561926], [-77.34377117538145, 34.53576174619469], [-77.34386933400592, 34.535616244119055], [-77.34395743365624, 34.53557263880649], [-77.3439771236202, 34.53558823147621], [-77.34430124688858, 34.53555410123925], [-77.34433254035655, 34.53556065139392], [-77.34435046356045, 34.53555194196842], [-77.34435351848754, 34.5355484352193], [-77.34435416230673, 34.53554648781171], [-77.34435759380516, 34.53554169466582], [-77.34454400395214, 34.53527435339072], [-77.34462529161515, 34.535183942766594], [-77.3446479469025, 34.53513698808838], [-77.34468871849427, 34.53509062129159], [-77.34473307170808, 34.53501623928432], [-77.34473406276815, 34.53500218760438], [-77.34474041257886, 34.53499158847134], [-77.3447562818653, 34.5349768791999], [-77.3448466397204, 34.53486357961047], [-77.34489782577401, 34.534819821467565], [-77.34493838945119, 34.53474020858832], [-77.34494771311986, 34.53472662674361], [-77.34495082935786, 34.53472142621579], [-77.3449586966251, 34.53471069215433], [-77.34501685108168, 34.534629367964335], [-77.345039874616, 34.53459095599713], [-77.3450730723387, 34.53453253913874], [-77.34515804615923, 34.53445332667438], [-77.3451603092329, 34.53445121704068], [-77.34516055869027, 34.53445092965209], [-77.34516096859522, 34.53445064109585], [-77.34517266113613, 34.53444226787097], [-77.3453664379862, 34.534302755522695], [-77.3453700642343, 34.53429862552626], [-77.34537019106622, 34.53429280154214], [-77.34540907677047, 34.53423180701283], [-77.34542605582496, 34.53420758020694], [-77.34543972646725, 34.53417984836048], [-77.3454475427445, 34.53416506713701], [-77.34544134258205, 34.534152923432885], [-77.34544000590179, 34.53415085038717], [-77.34543903279452, 34.534150204680515], [-77.34542328768067, 34.534137954756105], [-77.3454186903499, 34.53413542885084], [-77.34538904430714, 34.53411227959576], [-77.34536592371668, 34.534074192152815], [-77.3453532276717, 34.534064288955264], [-77.34534011277863, 34.53405811543726], [-77.34532613183697, 34.53403474258604], [-77.34526226102597, 34.53394690764936], [-77.3453408236065, 34.533832326447595], [-77.34534391298475, 34.53379500560833], [-77.34535142052589, 34.5336892584798], [-77.34535174010512, 34.53355042291881], [-77.34536655582978, 34.533442260808826], [-77.34537726949233, 34.53332205168101], [-77.34537745613666, 34.53331828258766], [-77.34537847551658, 34.53331504505265], [-77.34541102392106, 34.53319104236152], [-77.34547201978856, 34.53311218875981], [-77.34548031690238, 34.5330027282307], [-77.34548668382823, 34.532935335692954], [-77.34549135326073, 34.532873207620185], [-77.34543014605396, 34.53279934362925], [-77.34539560113649, 34.532787354632674], [-77.3453394410121, 34.53274730525105], [-77.34529863995041, 34.532736471172626], [-77.34528041583671, 34.532731632039095], [-77.3452524848899, 34.53272421540011], [-77.34525033686458, 34.53270333505531], [-77.34525026583549, 34.53269410923947], [-77.34525026356054, 34.53269393255624], [-77.34525028758786, 34.532693760640385], [-77.34525062875765, 34.532690679358936], [-77.34525169017948, 34.53267842603969], [-77.34525096025452, 34.53267630655116], [-77.34524230963707, 34.53266996110987], [-77.34522118346192, 34.53266751446361], [-77.34521135293653, 34.53266321724105], [-77.34520239827434, 34.53265439742857], [-77.34517164729886, 34.53263292509286], [-77.34513680870535, 34.532618450273375], [-77.34510996104736, 34.532563352093646], [-77.34510927785328, 34.53256120680604], [-77.34510882586449, 34.53255978752269], [-77.34509064046517, 34.53250268357422], [-77.3450116296806, 34.53241593661586], [-77.34498649194414, 34.53241100859294], [-77.34481503528006, 34.53243005632233], [-77.34465551503673, 34.532466324787045], [-77.34465663126467, 34.532565132658576], [-77.34472359353832, 34.532609940184784], [-77.34472531248112, 34.53261645524195], [-77.3447277432644, 34.532625682490625], [-77.34473339120997, 34.53267649769075], [-77.34477249671751, 34.53277166524902], [-77.34478101681225, 34.5327920548052], [-77.34478514676478, 34.532804710952334], [-77.344804633012, 34.532880967092076], [-77.34481217754913, 34.532909981000465], [-77.34483038563106, 34.53301182665779], [-77.34483204673745, 34.53302953188558], [-77.34484613142044, 34.53305590396438], [-77.34483218177137, 34.533251814790546], [-77.34483426946456, 34.53327403172979], [-77.34484281969688, 34.533302685277974], [-77.34479408444507, 34.53333822095094], [-77.34458146976058, 34.53344152241647], [-77.3443967211722, 34.53354717994441], [-77.34434993743295, 34.533559539485324], [-77.34432131211224, 34.53359265809105], [-77.34431803722137, 34.533640854444364], [-77.34421580747417, 34.533852657892496], [-77.34426647214838, 34.53392121839679], [-77.34428249622187, 34.533965472459414], [-77.34438617340638, 34.53400430795188], [-77.34444530026497, 34.53402725152031], [-77.34453161536909, 34.534052038213815], [-77.34458105010359, 34.53406480456726], [-77.34468676163664, 34.53408589198047], [-77.34477640985826, 34.534104372945365], [-77.34484191022915, 34.53412980114504], [-77.34488352892807, 34.53417835110639], [-77.34488037385916, 34.534190343093854], [-77.34485466902618, 34.534250375154514], [-77.3448379333514, 34.5342938801453], [-77.34478020656444, 34.534383499128914], [-77.3447791488853, 34.53438946129793], [-77.34476955394122, 34.534401561981056], [-77.34469057709379, 34.53447054225296], [-77.34459947347142, 34.53453191353908], [-77.34456314325675, 34.53465690257738], [-77.34436975089918, 34.53471604332929], [-77.34414019021888, 34.53474080889928], [-77.34397650259464, 34.53474637364684], [-77.34392656442228, 34.53484380963537], [-77.34391547963874, 34.53487514675994], [-77.34386058137518, 34.53495237607415], [-77.34376603250624, 34.53514146803525], [-77.34370800367498, 34.53523420511174], [-77.3435694254512, 34.53537577417819], [-77.34351621783487, 34.53542222949645], [-77.34346833523124, 34.535614325968375], [-77.34327715354112, 34.53570144344691], [-77.34320035269036, 34.535732268892794], [-77.34316826813247, 34.53574851126886], [-77.34296999429945, 34.53586804414173], [-77.34296974405243, 34.53586840507935], [-77.3429648876551, 34.535871438921596], [-77.34276986032152, 34.536002027746505], [-77.34274432480369, 34.536022920140745], [-77.34266941634374, 34.53621899821252], [-77.34240686132576, 34.53631628822496], [-77.34237764695109, 34.53632536155883], [-77.34236973596968, 34.53632975539726], [-77.34234759796941, 34.536338494585024], [-77.34212200337114, 34.536449310585496], [-77.34208254210151, 34.53648535481736], [-77.3420207394312, 34.53652421359267], [-77.34197117698582, 34.53658958618281], [-77.34195177308393, 34.536614839201015], [-77.3419348706229, 34.53662900815604]], [[-77.34397531517891, 34.530949427063646], [-77.3439587714758, 34.531016553771565], [-77.3439211670882, 34.53107962784496], [-77.34395196679506, 34.531130252307314], [-77.34398909745123, 34.53119226348591], [-77.34401090741942, 34.53121844864957], [-77.34405445840534, 34.53136856297892], [-77.34407074373024, 34.53141451697648], [-77.3440697955121, 34.531425471924344], [-77.34407306394026, 34.53143759949391], [-77.34410522842325, 34.53150909577441], [-77.34412564460042, 34.531539845865886], [-77.34416554420012, 34.531584128593614], [-77.34420284738354, 34.53165114737659], [-77.34424193339765, 34.53174952399903], [-77.3442530645671, 34.5317592493007], [-77.34424868968564, 34.53177149114599], [-77.34428340872819, 34.531884375360036], [-77.34430319245547, 34.53192222090605], [-77.34432496439258, 34.53194618994683], [-77.34438655546656, 34.531991943857456], [-77.34443158444216, 34.53203625597556], [-77.3444677239361, 34.53207951241894], [-77.34451966774205, 34.53209520065437], [-77.34459972013933, 34.53219076976478], [-77.34461398385818, 34.53220403965394], [-77.34461540329269, 34.53220911233286], [-77.34462362880292, 34.53221931269086], [-77.3446486747741, 34.53221460108639], [-77.34482345280755, 34.532065179814246], [-77.34482901813394, 34.53205068896791], [-77.34482655159502, 34.53204933912164], [-77.34482388824537, 34.53204630480561], [-77.34473248406056, 34.531942169262884], [-77.34469925724156, 34.53190431435315], [-77.34468534429516, 34.531887747237974], [-77.34466218886547, 34.53184858900141], [-77.34465152185906, 34.53183140896459], [-77.3446333089159, 34.531799750005916], [-77.3445802045782, 34.53175305333579], [-77.34456185907085, 34.531675550690466], [-77.34454267572997, 34.53160225083148], [-77.34453250510633, 34.53154780042446], [-77.34450082819485, 34.53148586244641], [-77.34448509381589, 34.531389786486514], [-77.3444845703493, 34.5313657919207], [-77.34444842911932, 34.531306237436304], [-77.34437279080987, 34.5311859619524], [-77.34435010690731, 34.53114031985029], [-77.34426462499623, 34.53103406490817], [-77.3442606310479, 34.5310294861758], [-77.34411233476096, 34.53092971221224], [-77.34410016620478, 34.5309095622669], [-77.34406547428648, 34.53089125308847], [-77.34388145886993, 34.530833709994766], [-77.34387075404231, 34.530824317646584], [-77.34385037199678, 34.53083239876671], [-77.34385340304517, 34.53084455851071], [-77.34385621685988, 34.53085281023954]], [[-77.34558959313678, 34.546676957666484], [-77.34566387145705, 34.546690991312865], [-77.34579054016776, 34.54676627542882], [-77.34585793575677, 34.54678807107407], [-77.3460234644525, 34.546793724048875], [-77.345946056636, 34.54664861418464], [-77.3459809638752, 34.54657412769332], [-77.3459098001288, 34.546490014183085], [-77.34587995675015, 34.54645727374813], [-77.34586602463526, 34.54643715624414], [-77.34583351918852, 34.546371732456734], [-77.34581009907576, 34.54635389191348], [-77.34576861160929, 34.546300165284556], [-77.34569351722614, 34.5462482557309], [-77.34567443613322, 34.54623271766557], [-77.34560353077686, 34.546183712788995], [-77.34552259695775, 34.54615043751465], [-77.34548121696554, 34.546099047422516], [-77.34538887189726, 34.54616967743592], [-77.34538163322532, 34.54623295527538], [-77.34541499066911, 34.54632635879161], [-77.34541988159691, 34.54641003557623], [-77.34542974249266, 34.54650476114826], [-77.34544744951077, 34.54654315087927], [-77.34557221248178, 34.546632938339464]], [[-77.39944049985976, 34.579297888023284], [-77.39964198056221, 34.57911255371888], [-77.39978700089407, 34.578914106566344], [-77.39983148797981, 34.57886483284886], [-77.39988689762234, 34.578808901209136], [-77.40031003418406, 34.578462285734474], [-77.40043619632397, 34.57830506385488], [-77.400359625714, 34.5781236655876], [-77.40031639651063, 34.57789777666529], [-77.40018104144491, 34.577813625952416], [-77.4000069842503, 34.57770541360726], [-77.3997870376146, 34.57770214343828], [-77.39961384976749, 34.5778125328556], [-77.39959003053728, 34.57781317816541], [-77.39952601745406, 34.57786851666901], [-77.39945656314546, 34.57787802916383], [-77.39939302426149, 34.577886731444856], [-77.39933034435957, 34.577895316026655], [-77.39925820836585, 34.57790519568421], [-77.39919601649875, 34.57799024897807], [-77.39911091691731, 34.57798002072384], [-77.39917111653656, 34.57806303615899], [-77.39909750753321, 34.57816838146305], [-77.39908139451275, 34.578164762528516], [-77.39899900567161, 34.57815792774305], [-77.39895648546556, 34.57813982474215], [-77.39894146526272, 34.57814031120852], [-77.39890050378125, 34.5781486495341], [-77.39886322281077, 34.57814763509284], [-77.39885125256846, 34.578150571891754], [-77.39880665913866, 34.57811562354613], [-77.39880447432115, 34.5781132757666], [-77.39880200306784, 34.57811189110537], [-77.39875817466415, 34.578063706409694], [-77.39875275403494, 34.57806336209503], [-77.39872656404887, 34.578045886100476], [-77.39870350436198, 34.57803087896383], [-77.39870025702558, 34.57802833201115], [-77.3986635461548, 34.57804014373318], [-77.39865425279416, 34.57804223621502], [-77.39863975905338, 34.578060097556325], [-77.39863961787881, 34.578070884927634], [-77.39863653899536, 34.57808709801205], [-77.39863267235665, 34.578110907151995], [-77.39865424969263, 34.5781126581751], [-77.39867200560872, 34.5781159188886], [-77.39869175441348, 34.57811954557384], [-77.39870350051177, 34.57811948050113], [-77.39873416969697, 34.57809303579102], [-77.39878476632008, 34.578118782408595], [-77.39870964773719, 34.57813624594764], [-77.39870349980659, 34.57813572072628], [-77.39869651678664, 34.57813904026456], [-77.3986672673641, 34.57814976526346], [-77.39865424808079, 34.57814928181337], [-77.39863992273301, 34.57816621732513], [-77.39863944700296, 34.578176873885496], [-77.39863859592143, 34.5781832734913], [-77.39864193375595, 34.57818418761959], [-77.39864405211591, 34.57819215735798], [-77.39864403659273, 34.57820316066031], [-77.39864555600926, 34.578209112713296], [-77.39864433104137, 34.57821865295924], [-77.39864881438604, 34.57822385773732], [-77.39864926342898, 34.57822584151193], [-77.39864338853235, 34.57823205687373], [-77.39864541078695, 34.57823551427895], [-77.39863243077353, 34.57824387523723], [-77.39862961826002, 34.57824535925873], [-77.39862221572707, 34.57824837974232], [-77.39861066584258, 34.5782561600051], [-77.39861331278016, 34.578276200159806], [-77.39860499106986, 34.57828114438241], [-77.39859716003131, 34.57827853077594], [-77.39859970339367, 34.57825732694876], [-77.39857231283494, 34.57827343822356], [-77.39855573992021, 34.57827964598101], [-77.39853176750772, 34.57828867027908], [-77.39850648737843, 34.578308660885654], [-77.39842502132039, 34.57836461458813], [-77.39840798179259, 34.578375145373634], [-77.398401342188, 34.578379237454854], [-77.3983911401174, 34.57838786387663], [-77.39821097093673, 34.5784920684236], [-77.39811747627887, 34.57853889111674], [-77.397955442799, 34.57866301369673], [-77.39787070260446, 34.57873316497051], [-77.39781693869136, 34.57889124491631], [-77.39775089302506, 34.579045939835126], [-77.3976809103762, 34.57912719595423], [-77.397685674517, 34.57940966669701], [-77.39764189164781, 34.57955739844211], [-77.3977042841221, 34.5796697426093], [-77.39781689889043, 34.57963900183397], [-77.39787993904372, 34.579590980001285], [-77.39810769532285, 34.57960141982606], [-77.3982109176162, 34.57958783531244], [-77.39829155716737, 34.57955055696412], [-77.39830942341123, 34.579549516185395], [-77.3983583578885, 34.57950675469704], [-77.3983592272696, 34.579506380997465], [-77.39840792936783, 34.579505715813355], [-77.39844665302931, 34.57948301356696], [-77.39846755814914, 34.57948016285306], [-77.39850643409031, 34.579487065479555], [-77.39853765795215, 34.57946180151277], [-77.39857703932313, 34.57945253911983], [-77.39860493975313, 34.57944573221134], [-77.39862278931294, 34.5794351075644], [-77.39862956657656, 34.57942563027982], [-77.39864247909105, 34.57942565510303], [-77.39865419266638, 34.579422290273506], [-77.39869715788961, 34.57940514388329], [-77.39870247075832, 34.57940332712506], [-77.39870344542882, 34.57940172658034], [-77.39870552291075, 34.57940169832908], [-77.39874210335263, 34.57938724265718], [-77.39875269815597, 34.579381410077204], [-77.39878281998949, 34.579372169938225], [-77.39880195038151, 34.57937262307774], [-77.39882122232927, 34.57935493727206], [-77.39883588810734, 34.579348558264385], [-77.39885120322077, 34.57934849292716], [-77.398866282171, 34.579343918121694], [-77.39890045581973, 34.57932963311957], [-77.39893424259913, 34.579301198351274], [-77.39897724942696, 34.57928198284213], [-77.39899896077678, 34.57929626039091], [-77.39904817932104, 34.57930138873471], [-77.39904821238494, 34.57930138301945], [-77.39904823133425, 34.57930139643832], [-77.39909746371735, 34.57931397160601], [-77.39918288063464, 34.579335060153085], [-77.39919232016567, 34.57933762723747], [-77.39919596644557, 34.57933848488748], [-77.39937345380636, 34.579328596447546], [-77.3993929739837, 34.57933155818398], [-77.3994148417887, 34.57932515383854]], [[-77.34935199937605, 34.550307551167975], [-77.34932141940212, 34.55030970734254], [-77.34931888295277, 34.55029143560481], [-77.34934897057022, 34.5502888619573]], [[-77.3441438140533, 34.53027317059406], [-77.34412780690042, 34.53025423247986], [-77.3440975121236, 34.530207526699996], [-77.34409149637024, 34.53019825215953], [-77.34409041979525, 34.53019290095341], [-77.3440818310859, 34.530182528013235], [-77.34403767737197, 34.53011213811111], [-77.34399598336145, 34.53008958526038], [-77.34399594802723, 34.53002304172381], [-77.34399704398385, 34.52996702292543], [-77.34389266149283, 34.5298751858238], [-77.34388024472581, 34.52986924864722], [-77.34386263439339, 34.52986395263], [-77.34369796167097, 34.52980747528626], [-77.34365471555421, 34.52979855997483], [-77.34364403400521, 34.529772995770315], [-77.34360141263728, 34.52973893250168], [-77.34358758016002, 34.52972868847601], [-77.34356749341521, 34.52972280371648], [-77.34354467369987, 34.529689994107976], [-77.34352065612308, 34.52966833788495], [-77.34351461473781, 34.52966322850674], [-77.34350520841946, 34.52965546055008], [-77.34345230446687, 34.52964502569444], [-77.34345435721109, 34.529677876997084], [-77.3434533528858, 34.5297095846561], [-77.34343056147908, 34.529742505579456], [-77.34343516038831, 34.52976087741909], [-77.34342965426525, 34.529803840900364], [-77.34341679804467, 34.52987613601509], [-77.34342594669893, 34.52997166654652], [-77.34339696788882, 34.53005336308435], [-77.34344801975544, 34.53013973180456], [-77.34347075871075, 34.53017910212568], [-77.34358317336019, 34.53027139103813], [-77.3436068637539, 34.53031745773241], [-77.34362217332226, 34.530388189451855], [-77.34368264542911, 34.53047097705759], [-77.34369420386987, 34.53049271338858], [-77.34369791943769, 34.53049970071051], [-77.34375951167976, 34.530539770419985], [-77.34381526598304, 34.53060522633791], [-77.34381029827378, 34.530646211199155], [-77.34387533825472, 34.53062570791999], [-77.34389501269074, 34.53060573556148], [-77.34390032144921, 34.530592988350136], [-77.34390074938173, 34.53057776805167], [-77.34394800853762, 34.53050733754631], [-77.34395681423769, 34.53046245027635], [-77.34396944605831, 34.530455675040045], [-77.34397744341923, 34.53045357601997], [-77.34401429848958, 34.53042357679102], [-77.34400439008664, 34.530410587810394], [-77.34400472434132, 34.5304085869023], [-77.34402147680663, 34.53039194151373], [-77.34402226236219, 34.53038823905432], [-77.34402252770937, 34.53038413969759], [-77.34402351481609, 34.53038108643132], [-77.34402819866297, 34.53038038653346], [-77.34403500314792, 34.53037891686605], [-77.34404059813274, 34.53037462520721], [-77.34404177946229, 34.53037371906278], [-77.34404926889013, 34.530370337061235], [-77.34405301372014, 34.530368165450376], [-77.34406232992008, 34.53036499726344], [-77.34407753510658, 34.53036866850782], [-77.34410379994137, 34.53034949404167], [-77.34410896593218, 34.530337300162145], [-77.34417701029861, 34.5303083577083]], [[-77.35934568288079, 34.549550766714724], [-77.35935086507348, 34.54954616366256], [-77.35936899996454, 34.54952551599271], [-77.35937183983205, 34.54948193753652], [-77.35934114676564, 34.54947872119689], [-77.35933375848751, 34.54948742087796], [-77.359314528429, 34.54950639336899], [-77.35931494207581, 34.54953581044922], [-77.35932661459758, 34.549549655489656], [-77.3593185658614, 34.549563682668925], [-77.35933936320266, 34.549556646566174]], [[-77.34502251425079, 34.54541655282746], [-77.34495548793058, 34.545375161827515], [-77.34491076871932, 34.5452988813517], [-77.34473048385723, 34.545407533761065], [-77.34478481030581, 34.54544569272997], [-77.34485571572787, 34.54551192608879], [-77.34489131316136, 34.545515816976604], [-77.34490534423747, 34.54553408642619], [-77.34493291623261, 34.5456050152676], [-77.34496347632489, 34.54561883206935], [-77.34500970306576, 34.545667594222266], [-77.34500586418949, 34.54573514336114], [-77.3450252779198, 34.54581112328304], [-77.3450054583594, 34.545912154472845], [-77.34508353295172, 34.54596878832881], [-77.3451622772026, 34.546034857489154], [-77.34528518794254, 34.54608726390707], [-77.34540672554212, 34.545996776832204], [-77.345346309522, 34.54593098142464], [-77.34533000156645, 34.54590796080417], [-77.3452934825027, 34.545816172212774], [-77.34529149589511, 34.54581369479311], [-77.3452319037315, 34.54574083056298], [-77.3451759351092, 34.545710674533765], [-77.34517546803315, 34.54563583085822], [-77.34513542921468, 34.545572472275964], [-77.34510179429742, 34.54552755538124], [-77.34506230671661, 34.545507120986215], [-77.34493804379844, 34.5455000813625], [-77.34504654894424, 34.545448888765875]], [[-77.35601370000654, 34.55165519283325], [-77.35611848367412, 34.5516028978023], [-77.35615445885588, 34.551475425684906], [-77.35619645221078, 34.551564218917896], [-77.35627017072636, 34.551531605247675], [-77.35634995239269, 34.551511126686975], [-77.35650926929087, 34.55144819600602], [-77.35654798077435, 34.55143624192713], [-77.35657048078208, 34.5514293473493], [-77.35657935972347, 34.55141413758807], [-77.35680427802224, 34.5512947276833], [-77.3568945222372, 34.551246353490626], [-77.35688753459068, 34.55121104954713], [-77.35694597345314, 34.55120194434667], [-77.35701807471139, 34.551183864900125], [-77.35705020250545, 34.5511660084737], [-77.35712481542097, 34.551103092531385], [-77.3571403266538, 34.55108855391658], [-77.3571416077998, 34.55108629502913], [-77.35714494944759, 34.551085645801194], [-77.35724077194955, 34.551012887022175], [-77.35724013605665, 34.551010047223336], [-77.35726477103385, 34.55099718555137], [-77.35734450441609, 34.55094405219267], [-77.3573584375394, 34.55093474078698], [-77.35745462943461, 34.55086603539303], [-77.35754388593215, 34.550809999864796], [-77.3575811496412, 34.55078026472145], [-77.35764781652352, 34.55071165724325], [-77.35769468133952, 34.55067186191389], [-77.35772745650738, 34.55063678864812], [-77.35772604840881, 34.55062553452606], [-77.357744518244, 34.55062131511192], [-77.35778473747723, 34.550567335768626], [-77.35777719125541, 34.550526231978836], [-77.35784472613284, 34.550531684547266], [-77.35792428445589, 34.55048603848851], [-77.35784644416135, 34.550456679720895], [-77.3577881579975, 34.5504804374776], [-77.35774775812774, 34.550479877107655], [-77.35773197974254, 34.55050423479871], [-77.35771371049313, 34.550516356036134], [-77.35762202522784, 34.55057492312909], [-77.35754910955593, 34.55058198430775], [-77.35749373042644, 34.55060923328129], [-77.35747897428183, 34.55062950867075], [-77.35744951299317, 34.550644914148116], [-77.35740572162547, 34.550649150300174], [-77.35735086496271, 34.550666437301125], [-77.35731371287463, 34.55069635659746], [-77.35725655615525, 34.550762027300124], [-77.35725277076612, 34.550766336328095], [-77.35725447450811, 34.550768651683], [-77.35725033820924, 34.55076995317237], [-77.35720983190376, 34.550833724052765], [-77.35724626739427, 34.550888844476944], [-77.35715003276654, 34.55086379979131], [-77.35710403685502, 34.55087744169023], [-77.35700524042787, 34.55089576030447], [-77.35695282172753, 34.5509319313889], [-77.35695236679956, 34.55093212796742], [-77.35695214219238, 34.55093275590775], [-77.35692947351403, 34.5509830824044], [-77.35690056467274, 34.55100066046727], [-77.35682979335262, 34.55105876964518], [-77.35679029392563, 34.55107774160659], [-77.35677603958476, 34.5511256421227], [-77.35677905504045, 34.55114056538648], [-77.35678581219547, 34.55116155702801], [-77.35675071731436, 34.55115590917778], [-77.356738755863, 34.55115385514087], [-77.35674343549275, 34.551145693413424], [-77.35674022799128, 34.551139378227454], [-77.35673505128037, 34.551096315044965], [-77.35667312804613, 34.55110673096134], [-77.35665321671777, 34.55112733297981], [-77.35662346400048, 34.55116296515502], [-77.35660663931561, 34.55119348562488], [-77.35660570042995, 34.55119811059816], [-77.35659967044491, 34.55119875902723], [-77.35655314031716, 34.551211138110524], [-77.35648292415962, 34.55122675846347], [-77.35642843600364, 34.55123604933664], [-77.35635590363839, 34.55125150849234], [-77.35628623934046, 34.5512549043385], [-77.35624644624096, 34.55127168881108], [-77.35624026842807, 34.55127933697377], [-77.35620568888757, 34.55131395162504], [-77.35620455871333, 34.55131671226121], [-77.35618741912631, 34.55134815095559], [-77.35618791909465, 34.551367399060155], [-77.35617285761737, 34.55140104361071], [-77.35618921570946, 34.55140909803409], [-77.35615446233588, 34.551475273888144], [-77.3561544493381, 34.55147530104196], [-77.35615442263672, 34.55147531260255], [-77.35595609838452, 34.551564773002994], [-77.3558942321562, 34.55159706557335], [-77.3558313687317, 34.55164423053041], [-77.35582266288115, 34.55172637752273]], [[-77.34475288518406, 34.54505756616079], [-77.34473771674364, 34.54503926390318], [-77.3447210637008, 34.54501299980012], [-77.34464066317533, 34.545053227139576], [-77.34469350460266, 34.54515286060108], [-77.34461911197107, 34.54523906186632], [-77.34457089421593, 34.545308084327516], [-77.34471261698464, 34.54537921082128], [-77.34479181637687, 34.54527629995266], [-77.34485954847406, 34.545233677047904], [-77.34482706100638, 34.54520240619841], [-77.34482454307788, 34.54514918175528], [-77.34481633567502, 34.545137746348715], [-77.34472703016677, 34.54515741340121]], [[-77.34316868912738, 34.536462042329546], [-77.34328177094615, 34.53659705172076], [-77.34343186322451, 34.536590152927126], [-77.34354099726946, 34.53660733535758], [-77.34367149656495, 34.536501575689], [-77.3437091666506, 34.536476745772276], [-77.34374182298232, 34.53641032846883], [-77.34376794669245, 34.53636528937233], [-77.34374463188962, 34.536288628746945], [-77.34373253170457, 34.53625599118156], [-77.3436764164127, 34.53625604856796], [-77.34354972671687, 34.53622915853643], [-77.34340096582677, 34.53629567844841], [-77.34336616254788, 34.53630977523959], [-77.34316255558109, 34.53645238827078]], [[-77.32397817188112, 34.52706826726191], [-77.32394382456675, 34.52710089659748], [-77.32392905443517, 34.52710542055408], [-77.32392342295182, 34.52709095965293]], [[-77.34737394573521, 34.54846451815586], [-77.34737976606901, 34.54845383095002], [-77.34737268670264, 34.548443918929976], [-77.34732669892117, 34.548379587756926], [-77.34727327969787, 34.54834674309555], [-77.34724687337496, 34.548319306155506], [-77.34719711835649, 34.548304629370065], [-77.34709421826999, 34.54830839681505], [-77.34705873482945, 34.548377613525965], [-77.34709816838935, 34.54843181477463], [-77.34711873326522, 34.54849139068466], [-77.34719155949186, 34.54854596148565], [-77.34722864824852, 34.548574448819934], [-77.34725356341727, 34.548594400286014], [-77.34730580846306, 34.5486367471189], [-77.34730786707082, 34.548647791666085], [-77.34731828457296, 34.54866583083367], [-77.347335879675, 34.54870496598462], [-77.34735183856368, 34.54872259812488], [-77.34750805052258, 34.54880260235737], [-77.34751995995236, 34.54883675319938], [-77.34752479266427, 34.54892260353212], [-77.34757510345858, 34.54893973975184], [-77.34766238481183, 34.54897035027087], [-77.34767248003322, 34.548973480076825], [-77.34768241666713, 34.548967234332906], [-77.34768045934919, 34.54895667521852], [-77.34767371024509, 34.548920057928854], [-77.34765723377842, 34.54890354641826], [-77.34762519826666, 34.5488778080294], [-77.34763083667085, 34.54881793878428], [-77.34760769999716, 34.54878826374347], [-77.34760338458034, 34.54877363484381], [-77.34757970583183, 34.54873989130824], [-77.34746326662207, 34.548686636258424], [-77.34750166395736, 34.54863088152652], [-77.34749188525842, 34.54861664011885], [-77.34745468531331, 34.54856546088883], [-77.34738966238915, 34.548467952736225]], [[-77.34579576254879, 34.53416086443783], [-77.34578797605202, 34.534157682531124], [-77.3457705037464, 34.53415790760903], [-77.34576249624071, 34.5341769627523], [-77.3457678431625, 34.53418018312811], [-77.34580458275163, 34.53420231086388], [-77.34580689548537, 34.534203703790006], [-77.34580885536046, 34.53420488419365], [-77.34583258658168, 34.53421917715418], [-77.34584964042298, 34.534229617929775], [-77.34585297888486, 34.534231459134155], [-77.34589569405551, 34.53425718581189], [-77.34593643421859, 34.53427833370244], [-77.34594984593723, 34.53428651615107], [-77.34597540295908, 34.5342727262615], [-77.34599858613979, 34.53423788394497], [-77.34602043912328, 34.5342050407252], [-77.34602979592322, 34.534190978249924], [-77.34605091671541, 34.53415923543499], [-77.3460610056843, 34.534144072539064], [-77.3460658609411, 34.53412842238021], [-77.34607612193672, 34.53407461813707], [-77.34605331890253, 34.53405503696919], [-77.3460299197034, 34.53403494385812], [-77.34601507603873, 34.534022197439214], [-77.34595708787161, 34.533972402358245], [-77.34594813595169, 34.5339761540142], [-77.34583906910508, 34.534036038867725], [-77.34583934919311, 34.534047483807306], [-77.34584839731069, 34.5340516251817], [-77.345847418891, 34.53410220131466], [-77.34584745703148, 34.53410752212546], [-77.3458516194405, 34.53410952439855], [-77.34585107771805, 34.53413503132288], [-77.34585105672625, 34.53413760664414], [-77.34585263715836, 34.53413892298616], [-77.34585250260602, 34.534145049213414], [-77.34585246870756, 34.534146592621404], [-77.34585236786947, 34.534151183824946], [-77.34585233403993, 34.53415272409332], [-77.34585230025664, 34.53415426225659], [-77.345852199188, 34.53415886395662], [-77.34585118621169, 34.534160539884034], [-77.34585444964, 34.53416766938867], [-77.34585446253399, 34.53416771042977], [-77.34585446234222, 34.534167719089155], [-77.3458544804312, 34.534167736657174], [-77.34585444818063, 34.53416773268447], [-77.34585442607724, 34.53416773801613], [-77.34585440490649, 34.53416772735387], [-77.34584221588133, 34.534166225881705], [-77.34583729139463, 34.53416561927172], [-77.3458360997318, 34.53416547247985], [-77.34583313186748, 34.534165106891095], [-77.34582998261614, 34.534164760984936], [-77.34582575918054, 34.53416419870527], [-77.34582014755868, 34.53416350745165], [-77.34581775128379, 34.53416321227241], [-77.34581178330498, 34.534162477121136], [-77.34580543875649, 34.5341651850817]], [[-77.34855622048744, 34.54976505314282], [-77.3485372788396, 34.54978083272585], [-77.34847673269188, 34.549887316791306], [-77.34849320396555, 34.54998277203083], [-77.34850656209652, 34.550021139302096], [-77.34853138440249, 34.55003691898929], [-77.34858799730229, 34.55008020399916], [-77.3486278662709, 34.550109602947174], [-77.3486311170954, 34.550109921786124], [-77.34862968416236, 34.550111285693745], [-77.34866812274838, 34.55014025968447], [-77.34869519933393, 34.55014316813246], [-77.34872573503844, 34.55012203343409], [-77.3487976479479, 34.55014716325158], [-77.34881046680263, 34.55015324083966], [-77.34883743496235, 34.5501502894943], [-77.34883459095269, 34.550134988514195], [-77.34876678599495, 34.550090399100014], [-77.34876182576346, 34.55006936410345], [-77.34873890327917, 34.55003320627572], [-77.34880134523019, 34.55000853419343], [-77.34880299786977, 34.5499627778603], [-77.3487418886924, 34.54985540752271], [-77.34874085839009, 34.54984930944004], [-77.3487424024489, 34.54984270286744], [-77.34873347339791, 34.549785802750314], [-77.3487213472931, 34.54973795478518]], [[-77.34619446769773, 34.54694337209179], [-77.34606857931259, 34.546939876069914], [-77.3460860226965, 34.54702542001647], [-77.34613502193451, 34.54704160145187], [-77.34614633278349, 34.547050851518364], [-77.34616846793125, 34.547036789185746], [-77.34622354328093, 34.54701529556653]], [[-77.35962247786411, 34.548567777352325], [-77.35961953132008, 34.54855878527739], [-77.35962024564452, 34.548550898896366], [-77.35960793830793, 34.54854326879568], [-77.3595953021809, 34.54855455552621], [-77.35958323286121, 34.548564012012], [-77.35959163076095, 34.54857255393142]], [[-77.35956603473643, 34.548229863338804], [-77.35958905333233, 34.548272780441266], [-77.35958224984248, 34.54828872661273], [-77.35961333773903, 34.54830733465057], [-77.35962906226236, 34.54828198591982], [-77.35962458158868, 34.548258340404054], [-77.35962216071447, 34.548247725514514], [-77.35956603708135, 34.54822985515845], [-77.3595660372069, 34.54822985373685], [-77.35956603501766, 34.548229851050216], [-77.35956603258427, 34.54822985433547], [-77.35956603325421, 34.54822985570954]], [[-77.34943640641777, 34.55087644259471], [-77.34944833988543, 34.55087741406807], [-77.34945782169393, 34.55087843275269], [-77.34948823526577, 34.55087739889985], [-77.3494857866787, 34.550900472429376], [-77.34946574855144, 34.55090789464764], [-77.34944357545169, 34.550918382504236], [-77.34943192739519, 34.55091276166932], [-77.34940581073113, 34.55090959174074], [-77.34940688630128, 34.55089312526826], [-77.34944054431125, 34.55088091905009]], [[-77.35645245565156, 34.551321470811374], [-77.35644337527434, 34.55131130296599], [-77.35644631126715, 34.55130683979328], [-77.35645314153233, 34.5512915483108], [-77.35648046279641, 34.55130596371612]], [[-77.35962469763072, 34.54848718491594], [-77.359566892443, 34.548474555938924], [-77.35956063234089, 34.548465920824476], [-77.35955849431795, 34.548474555202915], [-77.35955825504251, 34.548475799667045], [-77.359558054534, 34.548477273989654], [-77.35956028117695, 34.54848126493261], [-77.35957928575549, 34.54850337438046], [-77.35960321741183, 34.54850344063301], [-77.3596085888716, 34.54851484167176], [-77.35961956772165, 34.54850426938364]], [[-77.34293174736129, 34.528991801972595], [-77.34295662726697, 34.528969016921366], [-77.3429444423054, 34.52895558043286], [-77.34293282160502, 34.528945284884315], [-77.34288509709909, 34.52893419287016], [-77.34290591840005, 34.52896112312552]], [[-77.34905725334409, 34.55056774247573], [-77.34905979243162, 34.550567994538255], [-77.34906042194096, 34.55056928442551], [-77.34905828232564, 34.55056913708421]], [[-77.34927297814745, 34.55033119285699], [-77.34929657829889, 34.55032850226197], [-77.34929097021289, 34.55033994840658], [-77.34927843106054, 34.55034223255734]], [[-77.34876292759985, 34.550638444203926], [-77.34878692815187, 34.55062248113216], [-77.34877497917775, 34.550609464035], [-77.34878298617961, 34.55059640748378], [-77.34873924894256, 34.550599278620716], [-77.34873842477332, 34.55063012241952]], [[-77.34916099339213, 34.550401849456826], [-77.34915921273004, 34.55040115946985], [-77.34916104195021, 34.550399739123435], [-77.34916267913684, 34.55039964117264], [-77.34916285987326, 34.5504006346356]], [[-77.3497039803583, 34.55088245941788], [-77.34969805017191, 34.55087446510315], [-77.3497074402559, 34.550862396441005], [-77.34969040647223, 34.55085571034401], [-77.34968638483197, 34.550873896983724], [-77.3496686311976, 34.55087869868817], [-77.34968315326361, 34.550880772147195], [-77.34968980084419, 34.5508820384213]], [[-77.34931151327935, 34.550950767535184], [-77.34930386579727, 34.55093613654032], [-77.34932779687597, 34.55093844735557], [-77.34932480091813, 34.55094632418987]], [[-77.3493843674016, 34.550292104660656], [-77.34937141226334, 34.55027881534847], [-77.34938489944912, 34.55026897923893], [-77.34939182365312, 34.55027587805059]], [[-77.34898877293452, 34.5509535943917], [-77.34899235775815, 34.55097083534264], [-77.3489631111801, 34.55097300995491], [-77.3489649127291, 34.550957479681784]], [[-77.34731269708114, 34.552885697495526], [-77.34731259721377, 34.55288547565264], [-77.3473122246147, 34.55288546757496], [-77.34731235548692, 34.55288565853216]], [[-77.34937010646566, 34.550911956987534], [-77.34938267959461, 34.55091984863951], [-77.34936971974068, 34.5509287660457], [-77.3493566823499, 34.55092358974566]]]]}, "type": "Feature", "id": "demo6", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16764229531375, 34.6240587373062], [-77.17161026629942, 34.62337085930407], [-77.17313291022201, 34.623002943277875], [-77.17485149622571, 34.622741848402825], [-77.17683553727622, 34.62235677973872], [-77.17755165962575, 34.62235678860806], [-77.18052998324984, 34.62172646812293], [-77.18426864691747, 34.62060364302073], [-77.18624842259916, 34.61957485096954], [-77.18707928356329, 34.61705530016262], [-77.18826640712592, 34.61610928710029], [-77.18905913017427, 34.615326662944724], [-77.19089698893734, 34.61459223502261], [-77.1923593731234, 34.614491072244554], [-77.19731713726459, 34.614347786332544], [-77.19773907159434, 34.6144073998463], [-77.19809058554077, 34.61433118197635], [-77.2016976523925, 34.61444176438076], [-77.20407261950865, 34.614394271431124], [-77.2046146016734, 34.614156082274086], [-77.20793832153996, 34.61257365638042], [-77.20861619517595, 34.611218011907965], [-77.20928906447357, 34.609872236164875], [-77.20952306262356, 34.60940426411146], [-77.2099967112868, 34.609144645235325], [-77.21188256414564, 34.607705283801586], [-77.21534769961787, 34.60629121855284], [-77.2175057189568, 34.605305811316036], [-77.21792052232843, 34.604411506375584], [-77.21885264328897, 34.60335704077623], [-77.2199740576738, 34.60224201031317], [-77.22070335682571, 34.60086043720935], [-77.22112524238558, 34.59956817489196], [-77.2216038750148, 34.59843208225836], [-77.22217442120228, 34.59720568042295], [-77.22271804967889, 34.59603350034492], [-77.2233875508338, 34.59475918502628], [-77.2239433495581, 34.593574500721736], [-77.22423976650033, 34.59288753128569], [-77.22434470475267, 34.5926634772635], [-77.22442674180824, 34.59245542832339], [-77.22471100778981, 34.59199187559966], [-77.22542185283466, 34.59180580641274], [-77.2258237571049, 34.591667113902965], [-77.22615894546051, 34.59160723714035], [-77.22692652215682, 34.591520161364855], [-77.22843081077878, 34.59135712368762], [-77.22972441866213, 34.591202738703814], [-77.22973772054168, 34.59120039145514], [-77.23062356891256, 34.590678445324635], [-77.23107068721337, 34.59036625868343], [-77.23303603338559, 34.589234047522666], [-77.23414871080298, 34.588555523083656], [-77.23620739698882, 34.58804719470353], [-77.23842615932644, 34.58736216199276], [-77.23882480717073, 34.587456724678724], [-77.23905009698605, 34.587224856494], [-77.23932419800235, 34.58688067136482], [-77.24015860772809, 34.586013820615555], [-77.24078987556834, 34.58547661554188], [-77.24179025863884, 34.58483592762475], [-77.24434843864861, 34.5838716903019], [-77.24590487107194, 34.58323761452287], [-77.24759022682888, 34.582581890065875], [-77.24796298538683, 34.582439197311224], [-77.24816253292443, 34.58228688001765], [-77.24873696594244, 34.58188745740684], [-77.24965151555065, 34.5813119834947], [-77.25038444886454, 34.58057651631623], [-77.25281049000293, 34.57892937726726], [-77.25285307271665, 34.57890149094977], [-77.2528783841449, 34.57888756360169], [-77.25300617565479, 34.5788193376009], [-77.25583733175077, 34.577235161892844], [-77.2564456504364, 34.57683890264234], [-77.25757607168036, 34.57617449592243], [-77.2581869687205, 34.57575875070912], [-77.25843595402424, 34.57555435533477], [-77.25960332499842, 34.57487907999366], [-77.25992829421051, 34.574678614781334], [-77.26005291324863, 34.574610842269706], [-77.26119888185318, 34.57388643356644], [-77.26170562816468, 34.57363052276064], [-77.26249975465123, 34.57305937541723], [-77.26250878618019, 34.57304682476234], [-77.26254248967705, 34.57302177146149], [-77.26320711226049, 34.57233708384936], [-77.26343870470056, 34.572177303412346], [-77.26393556700847, 34.57178670319179], [-77.26473212547154, 34.57106459851852], [-77.26570130079153, 34.57046993070011], [-77.26648478577533, 34.56999461817046], [-77.2678158001312, 34.56926125296328], [-77.268235385184, 34.56892282480541], [-77.26840647363937, 34.5687973444753], [-77.26887468001277, 34.56846669783819], [-77.26945561800137, 34.567937169327585], [-77.26974705589767, 34.567638537702685], [-77.27021124657853, 34.56705390386206], [-77.27079350002728, 34.566278074076756], [-77.27094543271959, 34.56607563233772], [-77.27237793925887, 34.56533890629844], [-77.27282714519505, 34.565120511528676], [-77.27351609725928, 34.56465510371273], [-77.27446582505338, 34.56394925692592], [-77.27487951821068, 34.56365019655958], [-77.27734343620708, 34.56197731926841], [-77.27747844493999, 34.56188563041813], [-77.27832840779925, 34.561364232675686], [-77.28029291345217, 34.56013794395984], [-77.28064011439385, 34.55993879181848], [-77.28101518134014, 34.559745556476145], [-77.28336049341729, 34.55841008285957], [-77.28393424787384, 34.55800029052963], [-77.28537332715543, 34.55685646037497], [-77.2856700158921, 34.55662264885321], [-77.28724425778465, 34.55538666089792], [-77.2881009850636, 34.55484471088989], [-77.28990362398261, 34.553777128426944], [-77.29053501790028, 34.553576041730906], [-77.29089529590944, 34.55323760347977], [-77.29142559853997, 34.552941929695244], [-77.29292395933436, 34.552238278952444], [-77.29371841608396, 34.55179374085011], [-77.29494512227996, 34.55123529487734], [-77.29594594454551, 34.550335132202235], [-77.29691164497257, 34.549589577790016], [-77.29798117444507, 34.54873902949626], [-77.29994963425418, 34.54780228010791], [-77.30009685692407, 34.54771784934345], [-77.3016402117625, 34.54654630523982], [-77.30329007488913, 34.54550008724784], [-77.30342215599161, 34.54542678004707], [-77.30362332152842, 34.54531662465727], [-77.30526868728793, 34.54433868766609], [-77.30647349128365, 34.54369164216639], [-77.30712204516774, 34.54325394529394], [-77.30794687297282, 34.54273753471141], [-77.30879181587792, 34.542079747365506], [-77.3096649151583, 34.54153619914271], [-77.31216246586726, 34.54017377552478], [-77.31253125079824, 34.539926175994424], [-77.3128465800635, 34.53978975767614], [-77.31460713047322, 34.53874013541939], [-77.31603191831928, 34.537880538609166], [-77.31627854799027, 34.537776418580904], [-77.31659860714828, 34.53757815966001], [-77.31922333666748, 34.53570479818546], [-77.31964004517309, 34.535438733137596], [-77.32031368093465, 34.535085951877875], [-77.32240169135588, 34.534081567714054], [-77.32363746113678, 34.533410777633264], [-77.3239913970684, 34.53324522730557], [-77.32457729749231, 34.53313030998339], [-77.32494528528457, 34.53305401611532], [-77.32556896584246, 34.53292837632097], [-77.3260893393174, 34.5326174874444], [-77.32621240269086, 34.532279780816985], [-77.32626761822856, 34.532207465548446], [-77.3263742547977, 34.53206108911263], [-77.32641517946358, 34.532005821477746], [-77.32645538813354, 34.53195104044765], [-77.3263756614492, 34.53200069303338], [-77.32611690588098, 34.53196576314977], [-77.32598599809816, 34.53187719120898], [-77.32592958142982, 34.531830803226605], [-77.32579666809238, 34.53172537708136], [-77.32570185165584, 34.53143508385091], [-77.32568403891709, 34.53137646690988], [-77.32567547761263, 34.5313344313079], [-77.32560958395877, 34.53118509764677], [-77.32525679672513, 34.53094824478116], [-77.32523531748068, 34.53070214191465], [-77.32514910065125, 34.53047409590331], [-77.32506563823135, 34.530347876989396], [-77.32506694916646, 34.53013217286047], [-77.32524421161958, 34.53001948218656], [-77.32544616193883, 34.53006004496072], [-77.32563556439695, 34.53007005997464], [-77.32637416607241, 34.529808389359175], [-77.32637199282766, 34.529774069727665], [-77.32630377147999, 34.529328876930805], [-77.32653579706484, 34.52886015126646], [-77.32663714492836, 34.528301701876785], [-77.32725680027886, 34.527874712152524], [-77.32778477067167, 34.52748105664617], [-77.32824383353206, 34.52709148633723], [-77.32855249424665, 34.52686127386714], [-77.32885754154401, 34.526556766866264], [-77.32932488991747, 34.526243762253735], [-77.33009185461128, 34.525846548556], [-77.33045309851774, 34.52545966322314], [-77.33075028631009, 34.52495060254745], [-77.33205187600248, 34.524222061226105], [-77.33267540963186, 34.52390081058648], [-77.33484642346431, 34.52343125845885], [-77.33521365000381, 34.52328369676928], [-77.33537396107431, 34.52322765576809], [-77.33650310932063, 34.52296607264216], [-77.33675102452266, 34.52290459521227], [-77.33679253845605, 34.52289952539797], [-77.3368269521964, 34.522898051172106], [-77.33727600772977, 34.522663421752846], [-77.337368484331, 34.52259678640671], [-77.33758938380615, 34.52238761856833], [-77.33762235881136, 34.52233526378888], [-77.33765953905404, 34.52231010381494], [-77.33792102953322, 34.52207021039722], [-77.33797878605378, 34.5220120126403], [-77.33799171442135, 34.52196273507832], [-77.33813280687592, 34.52175239211249], [-77.33830499288362, 34.52167404611636], [-77.33839534832447, 34.52148138104169], [-77.33879941977307, 34.52116686458373], [-77.33865329579018, 34.521033455286165], [-77.33874542199753, 34.520894890780326], [-77.33893421899258, 34.5208208833322], [-77.3391940830061, 34.52088680990155], [-77.33968327542101, 34.5205500806408], [-77.3398258145132, 34.520427360358674], [-77.33999027864955, 34.52040150102774], [-77.3401665107482, 34.520371071737955], [-77.34031435395173, 34.52045929092207], [-77.34089700017692, 34.52078364494202], [-77.34154467447318, 34.521073503710355], [-77.34171650784461, 34.521236837328665], [-77.3420371993752, 34.52150412448524], [-77.34223595194265, 34.52170113564252], [-77.34298000497193, 34.52196317336642], [-77.34309302383879, 34.522008342225746], [-77.34311036154607, 34.52200480108386], [-77.34328190258634, 34.52199088166594], [-77.34387826776674, 34.521996811802765], [-77.34393530883091, 34.5219315021978], [-77.34465555233184, 34.52180084078906], [-77.34466778776165, 34.521799948731825], [-77.34468242714819, 34.521798464445276], [-77.34615274319567, 34.521633180087974], [-77.3462418615478, 34.52162107540927], [-77.34763169715674, 34.5214792964452], [-77.34781582995923, 34.52144641240317], [-77.34795622498261, 34.52140518743484], [-77.34976873723603, 34.52105730992899], [-77.35097030338576, 34.52081182216075], [-77.35319396573713, 34.519980803951604], [-77.35413465522373, 34.51974468934122], [-77.35553862889554, 34.51935640000311], [-77.35571524824591, 34.51927868925799], [-77.35579481480646, 34.5192598135543], [-77.35606677458597, 34.51917128703159], [-77.35729786523083, 34.51872357517711], [-77.35802044524527, 34.51835613932229], [-77.35888163056795, 34.51811734910661], [-77.36002554774768, 34.517621858384544], [-77.36029579179336, 34.51747665534604], [-77.36046813644474, 34.51739032426411], [-77.36081803592167, 34.517290853747106], [-77.36205154837265, 34.516797319428385], [-77.36250841671811, 34.516566623432404], [-77.36363541023721, 34.516183578822165], [-77.36383183455794, 34.51609425494315], [-77.36464474859031, 34.51561944778527], [-77.366802647405, 34.51468690896052], [-77.36680655751715, 34.51468466436471], [-77.3668092684502, 34.51468396347602], [-77.36681474484277, 34.51468178046228], [-77.36785222425695, 34.514200116255964], [-77.36840202863809, 34.51367639777225], [-77.3685722038003, 34.51355706699816], [-77.36907361076538, 34.513380338305254], [-77.36966169422186, 34.51309384521454], [-77.36998560253666, 34.51307042288951], [-77.37023782323902, 34.513055413650584], [-77.37077157445488, 34.51302244479385], [-77.37123640871626, 34.51286674951804], [-77.37156237502158, 34.512762235494954], [-77.372154541098, 34.512569587363004], [-77.37243525679358, 34.512456733527436], [-77.37314844365834, 34.51204465105846], [-77.37339567694742, 34.51193068639688], [-77.37384826231863, 34.51171281247505], [-77.37531712097052, 34.51087888461496], [-77.37632689837787, 34.51032743717144], [-77.37723931768477, 34.50982744617656], [-77.37947239328666, 34.50894326914613], [-77.379489740224, 34.5089357139537], [-77.37949793558039, 34.50893152323916], [-77.37951629647807, 34.50892556669716], [-77.38173980433541, 34.50804378381826], [-77.3826686664347, 34.50754424063302], [-77.3836973888539, 34.50700954072977], [-77.38576554438288, 34.50607690246445], [-77.38581648459363, 34.50605387441509], [-77.38584184546647, 34.50604368276387], [-77.3859031482158, 34.506019147772925], [-77.388059284319, 34.50515837241877], [-77.38901018132262, 34.50475260362197], [-77.39018846330477, 34.50420758533652], [-77.39193315132702, 34.503228281123306], [-77.3920850251494, 34.5031436275377], [-77.39218671662519, 34.50309275862542], [-77.39245728237526, 34.50298532187054], [-77.39377214766533, 34.50238674541979], [-77.39424730384432, 34.50220892064469], [-77.39535305159649, 34.501880880932454], [-77.39571733749699, 34.501702735960976], [-77.39641202681949, 34.501275392998345], [-77.39851399033388, 34.50031964450855], [-77.39852730142864, 34.50031196417397], [-77.40047667320246, 34.499279490039214], [-77.40169668351834, 34.498954788073775], [-77.40283910029575, 34.4984421038655], [-77.40430117188188, 34.49787380664358], [-77.40486428302168, 34.49767246406981], [-77.40511480691337, 34.49756250863058], [-77.4055651374693, 34.497342659747346], [-77.40716179585837, 34.49657165792189], [-77.40803657276271, 34.49617549647433], [-77.40930133402374, 34.495625798381006], [-77.41008718093839, 34.495126903483154], [-77.41070628578188, 34.494843254190165], [-77.41167862248548, 34.494405065104864], [-77.41265592905714, 34.49390728628691], [-77.41308530658777, 34.493692231190565], [-77.41410592877452, 34.493208632881746], [-77.41509752010441, 34.49268111607263], [-77.41526087033816, 34.49258186170407], [-77.41545959673725, 34.49252407680747], [-77.41660431155232, 34.49208264644243], [-77.41663580422191, 34.492062067550876], [-77.41710069814872, 34.491870795230525], [-77.41788144164083, 34.4915303782767], [-77.4179398889214, 34.491507813994886], [-77.41798921343953, 34.49147792289328], [-77.41890240067443, 34.49078744860286], [-77.42012915925366, 34.49023623960046], [-77.42017116760746, 34.49021603316122], [-77.4202097480118, 34.49019413741544], [-77.42137234892371, 34.48961171829732], [-77.42258011028078, 34.48901220865524], [-77.42258178743728, 34.489011449490995], [-77.42258280800951, 34.48901055621257], [-77.423580161193, 34.48830852017174], [-77.42498477468564, 34.487956141561], [-77.42514320823736, 34.487880173753695], [-77.42532521813527, 34.4877995756394], [-77.42641407963012, 34.48730974640506], [-77.42667739397116, 34.487193096944445], [-77.42705283319413, 34.48702614635494], [-77.42737025755264, 34.48683000386471], [-77.42761201509302, 34.48670385526135], [-77.42781511380839, 34.48657565309535], [-77.42850452067364, 34.48605281895642], [-77.42858931345413, 34.48599069408496], [-77.42912239872837, 34.485594002109806], [-77.42946416220883, 34.48530876304789], [-77.4296225053658, 34.48521607941705], [-77.43071054138998, 34.484645382180226], [-77.43107794634214, 34.484572772163546], [-77.43207777511064, 34.48434595650764], [-77.43237610480145, 34.48426682353129], [-77.43278010705171, 34.484126912279784], [-77.43391895627398, 34.48382859675418], [-77.43455655776272, 34.483562089306815], [-77.43459456971765, 34.48354394702647], [-77.43515399781653, 34.48324072654128], [-77.43579706842291, 34.48292973546383], [-77.43616780268736, 34.4825452957902], [-77.43837537454002, 34.48171012005398], [-77.43879554889558, 34.481446187042685], [-77.43929486714958, 34.481191995453685], [-77.44125078023391, 34.48026320193564], [-77.44170956351141, 34.48017400347429], [-77.44261053657927, 34.479735940677685], [-77.44357321996844, 34.47927288497831], [-77.44386770551614, 34.479158803835254], [-77.4440951955547, 34.47904978835459], [-77.44510044687492, 34.47856979034955], [-77.44619711230187, 34.47805546119376], [-77.44629208265873, 34.47796079206494], [-77.44648029945787, 34.47792383805975], [-77.44763244754556, 34.47742408451998], [-77.4483992021285, 34.47709052630792], [-77.44888717616186, 34.47687777089192], [-77.44892625936943, 34.476864742265974], [-77.4489692553369, 34.476845533993746], [-77.45015172605227, 34.4762721788085], [-77.45019967795903, 34.476232628100625], [-77.45123995761678, 34.475633924353545], [-77.45126022806748, 34.47562276903111], [-77.45128608088558, 34.475612383955216], [-77.4524438318285, 34.475112653341874], [-77.45256619444609, 34.47506932191845], [-77.45366876625769, 34.47466848734004], [-77.45394106567403, 34.474549356388806], [-77.45425959583137, 34.47441258916984], [-77.45522353226018, 34.47398448010575], [-77.45606228965065, 34.47357411956817], [-77.45656485035398, 34.47344819216476], [-77.45683949598956, 34.473192724565045], [-77.458443530451, 34.47243500920436], [-77.4588689838006, 34.47219169389404], [-77.45933460104146, 34.471968503885606], [-77.46082829107715, 34.47130897518334], [-77.46139332642159, 34.47104218596162], [-77.4619852520929, 34.470752140421794], [-77.46320567069264, 34.47015614116481], [-77.46384199011239, 34.46985589141178], [-77.46440366498611, 34.46952393431697], [-77.46555005195026, 34.46888282026365], [-77.46614749540888, 34.46860002724516], [-77.46665451906695, 34.468287181320775], [-77.4678717351701, 34.46752671440272], [-77.46840259140836, 34.46731966459266], [-77.4691833290037, 34.467064497446046], [-77.47033435807126, 34.46668623478088], [-77.47116464874541, 34.46628560260933], [-77.4718845633395, 34.46585051456592], [-77.47266929858209, 34.465379035986345], [-77.47243641069004, 34.464527490031415], [-77.47239371255318, 34.4643713599876], [-77.47222483215717, 34.46442469216761], [-77.472148006225, 34.46451285923024], [-77.47022270112073, 34.465684829732574], [-77.47009778740758, 34.465759879426855], [-77.470091006528, 34.46576397752357], [-77.47008318601549, 34.465767751080236], [-77.47003177000471, 34.46578464792308], [-77.46760598316946, 34.46655481127772], [-77.46711037492865, 34.46669180261721], [-77.46685594201114, 34.46694637804131], [-77.4652953679005, 34.46795131659478], [-77.46508365413494, 34.46808311962728], [-77.46486309161443, 34.468196234373366], [-77.46296630910435, 34.46928060370345], [-77.46282500353003, 34.46936173362709], [-77.46267336359169, 34.46943606286221], [-77.46058897095494, 34.4704335078505], [-77.46031411524959, 34.47051776678071], [-77.4581593903565, 34.471395472459946], [-77.45766225505065, 34.47160528032417], [-77.45730228533262, 34.47186520831414], [-77.45578850145068, 34.47257237232926], [-77.45512958392678, 34.47275069935347], [-77.45468313990995, 34.473083081101166], [-77.45402555818497, 34.47340229342796], [-77.45365842885946, 34.47370649503339], [-77.45343361712597, 34.473808039468096], [-77.4527856130189, 34.47398782183433], [-77.45189400104542, 34.47429225705322], [-77.45136166427508, 34.474483920917116], [-77.45097092525052, 34.474649385940474], [-77.44978326519367, 34.47490493296341], [-77.44901269562277, 34.47549668775845], [-77.44880693969067, 34.47561858766238], [-77.44861116466548, 34.47586760527924], [-77.44835886317315, 34.476138937119856], [-77.44786280223306, 34.476347872246436], [-77.44695984404316, 34.476743237000086], [-77.44657557474734, 34.47691040415124], [-77.44624285098166, 34.477054725772255], [-77.44495014472841, 34.477308532413375], [-77.44429787152671, 34.47795873672764], [-77.44406651480762, 34.478067241567025], [-77.443854443157, 34.478168503775976], [-77.4428351958447, 34.47865693718775], [-77.4415157815753, 34.4791680668143], [-77.44147882268784, 34.4791858442307], [-77.44144423295401, 34.47920266213135], [-77.43974761880943, 34.47953252457105], [-77.43894563407002, 34.4799133585833], [-77.4373320845562, 34.48073478001455], [-77.4359742889585, 34.48158768090221], [-77.43497534233526, 34.48196560562548], [-77.43430921878596, 34.48265635461861], [-77.4340946176116, 34.4827257268324], [-77.43394127410811, 34.482835082904955], [-77.4335888962777, 34.48307400972468], [-77.43311258037312, 34.48320479574433], [-77.4327371397889, 34.48325406289213], [-77.43179547429864, 34.483312087996524], [-77.42977282574557, 34.48397343647697], [-77.42945687258661, 34.484035878107136], [-77.4293198960804, 34.484107725097374], [-77.42744421106117, 34.485205627281545], [-77.42727134113294, 34.4853499061732], [-77.42702437344032, 34.48556304251504], [-77.42625808644776, 34.486045577917395], [-77.42596308958178, 34.486481074467704], [-77.42594979489952, 34.48648985065644], [-77.42593287870373, 34.48649691725675], [-77.42517445971367, 34.4867070348046], [-77.42469743175755, 34.48690351976337], [-77.42288703048871, 34.48767500634056], [-77.42248477291379, 34.487775921621626], [-77.42228168303372, 34.487918876412074], [-77.42054728175835, 34.48890651535424], [-77.42023787875598, 34.489060097088014], [-77.41994084909184, 34.48920889772396], [-77.41909140131591, 34.48969098941956], [-77.4181664783322, 34.490135886645774], [-77.41785253682755, 34.4902769473129], [-77.4175929424196, 34.490473230460296], [-77.41670260970466, 34.490906158010915], [-77.41566214381308, 34.491358899446816], [-77.41540628008559, 34.49146417001721], [-77.41520607082262, 34.49159499680216], [-77.41444085888259, 34.49197197176654], [-77.4141691655608, 34.492050973703755], [-77.41328474501324, 34.492588362607194], [-77.41306778626277, 34.49270378252295], [-77.41284447560275, 34.49280959313429], [-77.41083855507162, 34.49381426478645], [-77.4106555009025, 34.493907501126586], [-77.41047337761329, 34.49398957602637], [-77.40820171303123, 34.49503036267081], [-77.40814760823861, 34.495064711097314], [-77.40806053066093, 34.49510255727421], [-77.40780487467555, 34.495218336560036], [-77.40647505961456, 34.495822449039544], [-77.40592374179519, 34.49596952199587], [-77.40489238853903, 34.49641587976559], [-77.40398973520232, 34.497015303025336], [-77.40173057434261, 34.49789648653672], [-77.40172321148036, 34.49789934843089], [-77.40172030004398, 34.49790065500087], [-77.39908428839809, 34.49860222133289], [-77.39855943172915, 34.4988802088068], [-77.39569061891174, 34.50053547779176], [-77.39537962036832, 34.50069891047603], [-77.39530811180344, 34.50073840357654], [-77.39519706754517, 34.50079849898195], [-77.39430710323334, 34.50124473371199], [-77.39379569885301, 34.501339887941825], [-77.39302996037131, 34.501616728334284], [-77.3922126432434, 34.50194127015048], [-77.39093116977307, 34.50258229891954], [-77.3890718686026, 34.503618662582156], [-77.38903529897746, 34.50363887932345], [-77.38902788795679, 34.50364297623764], [-77.38901293653306, 34.50364970005646], [-77.38745005317921, 34.504333667881795], [-77.38685467905646, 34.50457231877124], [-77.38586614647468, 34.504967955805554], [-77.38461661444606, 34.505470099194], [-77.3832814420354, 34.50607367769758], [-77.38269619788717, 34.50632751380298], [-77.38244906819835, 34.506402175350935], [-77.381991859022, 34.50662125259519], [-77.38040174381807, 34.50739273337064], [-77.37952637567702, 34.50767671551552], [-77.37824690948912, 34.50833097352305], [-77.37708080166607, 34.50883885389556], [-77.37635380912705, 34.509142050809665], [-77.37587789319167, 34.50916497647117], [-77.37474554716145, 34.50962482201817], [-77.37364214893148, 34.510063814627244], [-77.37318905786209, 34.51025858574613], [-77.37180620859135, 34.5111572020519], [-77.37159381812621, 34.51138061204974], [-77.37115945833904, 34.5118358834674], [-77.37079497887994, 34.51199446511943], [-77.3703663097001, 34.51199252719003], [-77.37001293009837, 34.51187062494559], [-77.36871911373018, 34.51164169314298], [-77.36844955189214, 34.511591637371886], [-77.36740750127998, 34.51264113421278], [-77.36715724524142, 34.51286844476385], [-77.36684135379511, 34.51327758241607], [-77.36529370125987, 34.5139023320257], [-77.36525685302249, 34.51392283725159], [-77.36524641384621, 34.51392536507387], [-77.36366806184343, 34.514754715450074], [-77.3622581618342, 34.515341652256254], [-77.36093781729177, 34.515802180455026], [-77.3605016490595, 34.515926175723465], [-77.3592256163371, 34.51656536750932], [-77.35891383905411, 34.51671132228284], [-77.35877991522653, 34.51673881998881], [-77.3573349541116, 34.517105824183574], [-77.35606390714527, 34.517403760454606], [-77.35417377385066, 34.51804118087657], [-77.35101450948375, 34.51891900028288], [-77.35101321544786, 34.518919217522765], [-77.35100878337141, 34.51892024207391], [-77.34785919203799, 34.519564253292664], [-77.34754978554122, 34.51961047361629], [-77.3447343446919, 34.519836580322185], [-77.34471304176284, 34.51983886357586], [-77.34469227460012, 34.51984228364509], [-77.34468782379604, 34.51983001925457], [-77.34260670238226, 34.519489836703656], [-77.34168083700573, 34.51928341900304], [-77.34158648438856, 34.51926462134479], [-77.34032180568092, 34.51928820754786], [-77.34001507410366, 34.5193296137838], [-77.33973712227981, 34.519390560367206], [-77.3392291115832, 34.5193731646355], [-77.33886540122042, 34.51942495532436], [-77.33881306438101, 34.51943740178489], [-77.33843831566818, 34.519625436171964], [-77.33829684333413, 34.51968283527149], [-77.3381120801221, 34.5197968296834], [-77.3374917367078, 34.52028440558718], [-77.3368406405175, 34.52095705666456], [-77.33683879191756, 34.52095925342539], [-77.33683845676377, 34.52095991160438], [-77.33683746253323, 34.52096061695866], [-77.33683103747956, 34.520964322880616], [-77.3358965954439, 34.52149488821429], [-77.33525327840324, 34.52157472887346], [-77.33456455344701, 34.52183985445317], [-77.33431955767665, 34.521899295149275], [-77.33367105118258, 34.522103452869956], [-77.33315401300695, 34.52214658324038], [-77.33256923102331, 34.52225830216954], [-77.33209534065644, 34.52235067574419], [-77.3306225798373, 34.522765803006315], [-77.33051523321535, 34.52278658360342], [-77.33042960356732, 34.52280709181246], [-77.3302873303037, 34.52288066044205], [-77.32892754942404, 34.52354739319087], [-77.32846075045384, 34.52383554927572], [-77.3279777127291, 34.52419196629455], [-77.32733291577748, 34.52460541190015], [-77.32687253737731, 34.52504939669274], [-77.32653082751493, 34.525338614417265], [-77.32648742313756, 34.52538545486853], [-77.32620960215414, 34.52572020758848], [-77.32572684078482, 34.52615268910777], [-77.32546022746757, 34.526348919792724], [-77.32534969489919, 34.5265282440378], [-77.32492033614359, 34.52707411108796], [-77.32491606165097, 34.527077582504575], [-77.32491554357067, 34.52708027249954], [-77.32491252680364, 34.527085412431305], [-77.32457240285763, 34.52761921564539], [-77.32443671005908, 34.52783781379599], [-77.32410354435963, 34.52843592379557], [-77.32390451233668, 34.52857230978867], [-77.32381529918271, 34.52870728084958], [-77.32348537444649, 34.52936187129557], [-77.32316193238228, 34.53033999353506], [-77.32296201268952, 34.53078841244791], [-77.32314457711146, 34.53118330562803], [-77.32246224292027, 34.5314869465331], [-77.32117186984945, 34.53220990914353], [-77.32007938644406, 34.533161086923116], [-77.31754363883479, 34.53441761969989], [-77.3160833728658, 34.535682751595274], [-77.3160574789813, 34.535697406681905], [-77.31402004176394, 34.536676294611], [-77.31289565760972, 34.53769683941987], [-77.3120511394185, 34.53823128381893], [-77.31046264035666, 34.53891850316228], [-77.30971460052827, 34.53942073168257], [-77.30891038524254, 34.540149925336394], [-77.30795759121219, 34.540777528823256], [-77.3071503153025, 34.54128009868659], [-77.30651865258241, 34.54177184758661], [-77.30555711150423, 34.54249157722308], [-77.30415873782876, 34.54328131611503], [-77.30365431083109, 34.543552220942644], [-77.30333144801872, 34.54374411717329], [-77.30036014391403, 34.54578492607869], [-77.30023729562481, 34.54586282714113], [-77.30013886995704, 34.545937541009806], [-77.29948579049487, 34.546312075708045], [-77.29696247455051, 34.54743907635408], [-77.29622644716025, 34.54788408881373], [-77.29581049211684, 34.54839612549674], [-77.29376098832273, 34.54999543140438], [-77.2930803709996, 34.550326710209546], [-77.29256035810144, 34.550820763843475], [-77.29216613569666, 34.551021845159276], [-77.29105226766976, 34.551326284980824], [-77.29058468708172, 34.55148126124132], [-77.28770711437384, 34.55284502242586], [-77.28729839530692, 34.55310714888827], [-77.28651228914627, 34.55368754310582], [-77.28400249523374, 34.55513134069073], [-77.28294309197194, 34.5564085232195], [-77.28108048388442, 34.557760073123035], [-77.28068682156805, 34.5579785217403], [-77.2782218720127, 34.559478908247556], [-77.27747272915909, 34.55991638631372], [-77.27739134196635, 34.559970004289546], [-77.27727434466797, 34.560040589077424], [-77.27455880900848, 34.56165619504351], [-77.2740963930165, 34.56193252774409], [-77.27265182290961, 34.56347510866082], [-77.2723054294475, 34.56371603993942], [-77.27157722884282, 34.56400882208963], [-77.27003368731687, 34.5648754271395], [-77.26964845893772, 34.56512432059204], [-77.26838862942387, 34.566430292917595], [-77.26783950136395, 34.56686740550692], [-77.26674076822484, 34.56759343733921], [-77.2660885612284, 34.56804082036744], [-77.26532793724276, 34.568555216916394], [-77.26506641566077, 34.56873302543761], [-77.26447663342043, 34.56919777020515], [-77.26297245266798, 34.57025526102098], [-77.26168969940264, 34.57098733033243], [-77.26059903772314, 34.57195386320206], [-77.26022330759054, 34.57231198019191], [-77.25922841170951, 34.573549863014065], [-77.25903805265584, 34.57371638331236], [-77.25891921216359, 34.5737810132338], [-77.2587268917037, 34.57389965081666], [-77.25715084272879, 34.574837073425094], [-77.2560237372904, 34.57536446333254], [-77.25527973687433, 34.57580175065239], [-77.25395701868243, 34.57666337027993], [-77.25322484766872, 34.57702946180731], [-77.2515428974803, 34.57773593796525], [-77.250777007247, 34.57872205180204], [-77.24882685034841, 34.58013826999415], [-77.2484669425622, 34.580258150126475], [-77.24826291245635, 34.580409393667615], [-77.24487650858728, 34.58186319629309], [-77.24455390476915, 34.582002523743604], [-77.24452795111144, 34.58201262158084], [-77.24067526127297, 34.58358217081025], [-77.2404686320982, 34.58366005413415], [-77.24021940223496, 34.58381967155138], [-77.23771289306404, 34.585233983962794], [-77.23702805791999, 34.585858047414334], [-77.23454603370443, 34.58686957820971], [-77.23275188332815, 34.58731258771779], [-77.23123923612334, 34.588235018675775], [-77.22899916748553, 34.58923293972389], [-77.22720080723462, 34.589549904953465], [-77.22540962909291, 34.58991938392617], [-77.22413438553761, 34.590163681574055], [-77.22304655493666, 34.59109305495484], [-77.22255546564274, 34.59157944469927], [-77.22162450765485, 34.59319018788623], [-77.22151150204121, 34.59338244201638], [-77.2214035097161, 34.593586430609506], [-77.21973574022287, 34.596769576984926], [-77.21924923908432, 34.596974639335535], [-77.21931224238254, 34.597307529690994], [-77.21803898143226, 34.60051996176575], [-77.21793644218933, 34.60064186456155], [-77.21759910989171, 34.60088710700713], [-77.21496717848767, 34.60304671827717], [-77.21295543834904, 34.604019134240225], [-77.20893564799849, 34.605629908949325], [-77.20662209100875, 34.606141068686384], [-77.20413026581531, 34.60709222539637], [-77.20265289321252, 34.60786932699088], [-77.20066312112225, 34.608639044487845], [-77.19847823152712, 34.60941462652213], [-77.19693386056082, 34.610293710178816], [-77.19250041770424, 34.611429803522554], [-77.18933647141259, 34.61179979578804], [-77.18611244753659, 34.61320761100839], [-77.18535520184736, 34.613517363949704], [-77.18430080596714, 34.61429168645048], [-77.18209579533607, 34.61587761137209], [-77.18019718850748, 34.61650968123487], [-77.1738360270186, 34.61904814514875], [-77.16759293100434, 34.62061855872905], [-77.16498669612761, 34.62169362296926], [-77.16640603094804, 34.62295776776544]], [[-77.43513889327478, 34.754946966530504], [-77.43513557967549, 34.754919420179824], [-77.43508043709993, 34.75487781934234], [-77.43510282199468, 34.754944204230334], [-77.43510740076182, 34.75496010219714], [-77.43512605615759, 34.754952321016525]], [[-77.30549551240442, 34.52854809762149], [-77.30589207673593, 34.52795826334247], [-77.30465855656382, 34.52814027568283], [-77.30488900656508, 34.52871671328778]], [[-77.34957533668867, 34.55162710534156], [-77.3495951068504, 34.55168494721777], [-77.34962572426423, 34.551708639581626], [-77.34966962557687, 34.55175910752091], [-77.34968772401581, 34.55178241012399], [-77.34971993456402, 34.551789394271694], [-77.34970133368273, 34.551812609896395], [-77.34972380505813, 34.551911247748485], [-77.34969947464535, 34.551935897037275], [-77.34970764606547, 34.551974778374614], [-77.34967641879292, 34.55203232268203], [-77.3496785348689, 34.55204017285945], [-77.34967562309726, 34.55204848219453], [-77.34971838749672, 34.5521568482946], [-77.34973885952347, 34.5522264392595], [-77.34973709101709, 34.552276567216715], [-77.34972098981103, 34.552318941907814], [-77.34971722334197, 34.55234063154175], [-77.3496634826625, 34.55240414867347], [-77.34966118014339, 34.55240990166267], [-77.34965862383568, 34.55241278537231], [-77.34965458468001, 34.55241297617727], [-77.34964868224364, 34.552415346581164], [-77.34964708927706, 34.552411929404165], [-77.34955661851225, 34.55240465889723], [-77.34950974369005, 34.55239978700344], [-77.34950766306427, 34.55239929914791], [-77.34949073104984, 34.552373224728555], [-77.34949446841647, 34.55236395247944], [-77.3494942057174, 34.552357423411074], [-77.3494951927434, 34.552350456447314], [-77.34949367337103, 34.55234219871228], [-77.34949397895954, 34.55233266632456], [-77.34949788641661, 34.55231098983438], [-77.34949927316605, 34.55228702955456], [-77.34949961610741, 34.55227331351891], [-77.34949932886295, 34.55224957704681], [-77.34949711795943, 34.55222832049277], [-77.3494964381992, 34.55220967113856], [-77.34949306472046, 34.55218927326291], [-77.34949196817263, 34.55217187711316], [-77.34948914951009, 34.5521440283666], [-77.34949036709757, 34.55212845624544], [-77.34949450174526, 34.552109620560394], [-77.3494925646131, 34.55208359426815], [-77.34949590418363, 34.552066454224466], [-77.34948522420667, 34.55205630022809], [-77.34948646518619, 34.55204957818799], [-77.34950406082415, 34.552034677846976], [-77.34949698572048, 34.552023649712865], [-77.34951397965213, 34.55200264788354], [-77.3494811762377, 34.55199902323645], [-77.34948162096862, 34.55198512492987], [-77.34951089431296, 34.5519724892667], [-77.34950606287242, 34.55196597088786], [-77.34950340010506, 34.55194296509539], [-77.3495235911424, 34.551906592635866], [-77.34947163142262, 34.55183216396325], [-77.34947110852889, 34.5518256214521], [-77.34947106390833, 34.551825207974034], [-77.34947082670791, 34.55182463229125], [-77.34947188237474, 34.551821255526384], [-77.34952798085223, 34.551728252817725], [-77.34955668652321, 34.55169047608635], [-77.34957392502456, 34.551627151428534], [-77.3495738811907, 34.551626796477095], [-77.34957317840593, 34.55162605507285], [-77.34955977783304, 34.55156762075527], [-77.34947816043274, 34.55154835994894], [-77.34940867674192, 34.55151081932086], [-77.34938119020997, 34.551496797566664], [-77.34935273508425, 34.55147500462593], [-77.34931039634247, 34.5514644987984], [-77.34928440091488, 34.55143737642193], [-77.34927557079303, 34.55142490358721], [-77.34928035718687, 34.55136654721714], [-77.34927672673079, 34.5513635320442], [-77.34927207864547, 34.551355340458876], [-77.34925987908078, 34.551321701347135], [-77.34923794214345, 34.55132353000812], [-77.34922331882402, 34.55131001237404], [-77.3491965197675, 34.55130929925376], [-77.34918913459867, 34.55131177031996], [-77.34917861713436, 34.5513098594708], [-77.34911630970893, 34.55130964631832], [-77.34909094157359, 34.55131336912523], [-77.3490283034098, 34.551315891895754], [-77.34899312353456, 34.551298671740206], [-77.34898105742782, 34.55129129849514], [-77.34897933599787, 34.551283916611666], [-77.34897615542741, 34.55127343169158], [-77.34896659154543, 34.55124190389628], [-77.34894327115973, 34.55122790115951], [-77.34893447617648, 34.551191053044334], [-77.34892520880246, 34.55116929515821], [-77.34894532590738, 34.55113731457549], [-77.34892951920935, 34.55110746971555], [-77.3489597966897, 34.55107918244019], [-77.34899840276496, 34.55106925277338], [-77.34903974975018, 34.551065874045726], [-77.34907959026333, 34.55107538164694], [-77.34909673060223, 34.55106178304901], [-77.34912102995875, 34.55106471718811], [-77.34911658308454, 34.551080551079494], [-77.34913994457139, 34.55108057618733], [-77.34914061957973, 34.55109239348651], [-77.34914508009882, 34.551093442731556], [-77.34915497888237, 34.551099371008455], [-77.3491641601542, 34.55110430725124], [-77.3491637965246, 34.55111635900198], [-77.34916705724868, 34.55112040229011], [-77.34916889277955, 34.55112500888947], [-77.34918928237198, 34.55113129470894], [-77.34919210086689, 34.55113162410427], [-77.34919305978528, 34.55114117640757], [-77.3491992581433, 34.5511336156841], [-77.34920229849752, 34.55112942165838], [-77.34921628488186, 34.551113326534264], [-77.34923198977664, 34.55109454641266], [-77.34922965398654, 34.55108631110297], [-77.34925384070533, 34.55106079939773], [-77.34925003629823, 34.55102745074129], [-77.34919603026472, 34.55101207549272], [-77.34918928779298, 34.551013073492456], [-77.34918816965771, 34.55100904443861], [-77.34918701697816, 34.55100346655347], [-77.34919636276496, 34.550997624604705], [-77.34921842573797, 34.55099102776567], [-77.34925097347659, 34.55097249362965], [-77.34925186063205, 34.5509692765451], [-77.34926304476859, 34.55095726904278], [-77.3492346551504, 34.55096455263782], [-77.349197066222, 34.55096705146255], [-77.34917345558506, 34.55096471262868], [-77.34917352358823, 34.55094994684232], [-77.34909981635786, 34.55092767900962], [-77.34906677742208, 34.55094495420378], [-77.34905037435368, 34.55094350244756], [-77.34900886292323, 34.550973641772806], [-77.34904919915991, 34.55099457395067], [-77.34905983224176, 34.550990340301055], [-77.34906031705046, 34.55100390653856], [-77.34905879089575, 34.551027662270016], [-77.34904825967477, 34.55103540205353], [-77.34901165918059, 34.551034444570114], [-77.34901077270142, 34.55102745854459], [-77.34899921236111, 34.5510340702699], [-77.34899050625734, 34.55103203052613], [-77.348950420404, 34.55102164177771], [-77.34894118953731, 34.55101976543435], [-77.34893353897506, 34.551015083514386], [-77.34893949872983, 34.551007208583044], [-77.34893448574621, 34.55098434468599], [-77.34893221164548, 34.55096621869917], [-77.34890284449975, 34.55095637074379], [-77.34886627989745, 34.550955762923955], [-77.34882557632704, 34.55093881151609], [-77.34880263954543, 34.55088323422645], [-77.3488028552312, 34.55088087593679], [-77.34879691765241, 34.55087572747431], [-77.3487745796571, 34.5508441248744], [-77.34877475984197, 34.550823713665714], [-77.34878507918872, 34.55080787018048], [-77.34879473698439, 34.55076853469652], [-77.3487911830986, 34.55076014521494], [-77.3487972012797, 34.55075167296324], [-77.3488095437496, 34.550745405741765], [-77.34882670499846, 34.5507244310502], [-77.34882479770792, 34.5507030061262], [-77.34882468711697, 34.5506941188356], [-77.34882106995691, 34.55068827202841], [-77.34881165391162, 34.55066539172959], [-77.34881217884343, 34.55063476906115], [-77.34881221339342, 34.55063470863662], [-77.34881247497242, 34.550634435674546], [-77.34885495569334, 34.55059795544237], [-77.3488596126034, 34.55059575582493], [-77.34886216883851, 34.55059126375573], [-77.34888459882752, 34.55057986702282], [-77.34891175495595, 34.55056917088549], [-77.3489212170158, 34.55056363854831], [-77.34892358283207, 34.55055747738791], [-77.34892051821453, 34.55055269050952], [-77.34893028076071, 34.550541212258715], [-77.34891265180309, 34.55053019885246], [-77.34890726466736, 34.550532548449674], [-77.34890310888699, 34.55052982101261], [-77.34891306656345, 34.55051217565829], [-77.34892344752657, 34.5505268942704], [-77.34894809698177, 34.550531824464365], [-77.34896163306038, 34.55053438834835], [-77.34898671351695, 34.55053341529671], [-77.34901108810226, 34.55051798887431], [-77.34904630316365, 34.55050031754149], [-77.34903569529794, 34.55048013908828], [-77.34907368362664, 34.55045154568232], [-77.34909538788865, 34.55044094661969], [-77.34908156716189, 34.55043084093562], [-77.34903097344294, 34.55043076137882], [-77.34901277416166, 34.550444718319895], [-77.34898283845052, 34.55042654008282], [-77.34897472202259, 34.55039100124626], [-77.34894919497127, 34.550328868744515], [-77.34905232843768, 34.550332284166075], [-77.34911370340026, 34.55032416272414], [-77.34915815855176, 34.55030636569444], [-77.34921276279032, 34.55028486021554], [-77.34922939290595, 34.55027893472112], [-77.3493081554189, 34.55025940341951], [-77.34931144127943, 34.550262108620394], [-77.34931706392341, 34.550259502362536], [-77.34931510032804, 34.550256316287005], [-77.34932977359523, 34.55024304696497], [-77.34935899285605, 34.55021781033135], [-77.34936470589807, 34.550216616945384], [-77.3494108736091, 34.550206588368674], [-77.34942582901986, 34.55020977928854], [-77.34944184309884, 34.55021859390036], [-77.34945468565942, 34.55023622927143], [-77.34942721219007, 34.550251008134715], [-77.3494272982655, 34.550259768442444], [-77.34945103547922, 34.55026260132623], [-77.34945903300174, 34.55024649361478], [-77.34946276892087, 34.55026310085316], [-77.34947026165347, 34.55027195740328], [-77.34945562476165, 34.550297299337245], [-77.34942165856727, 34.55031040159618], [-77.34943239936763, 34.5503464182935], [-77.34945308806918, 34.550358869598114], [-77.34942402973539, 34.550413090399964], [-77.34942195723748, 34.55043473900581], [-77.34935544306546, 34.55046498346752], [-77.34930655369267, 34.550474539352315], [-77.34928553382164, 34.550492543086065], [-77.3492573753874, 34.550509443918315], [-77.34928774528223, 34.550516203921326], [-77.34930422501452, 34.55057575154528], [-77.34931356825726, 34.550617345238315], [-77.34933017986296, 34.550621377501], [-77.34949746555185, 34.5507092052761], [-77.34959067444412, 34.55064103388139], [-77.34960755657663, 34.55063627055342], [-77.34969622304061, 34.55060285066964], [-77.34976360466224, 34.550620210384366], [-77.34975335736394, 34.550646635870415], [-77.34981800217804, 34.55067358736647], [-77.34983253181638, 34.550707411267524], [-77.3498896393134, 34.5507286918336], [-77.34997595138292, 34.55070432795024], [-77.34998932819981, 34.55070945704692], [-77.34999072064392, 34.55070993695593], [-77.35004460971253, 34.55072797023877], [-77.35008554005566, 34.55074652991573], [-77.3500907108824, 34.550753429400764], [-77.35009370356264, 34.55075632195806], [-77.35009587950205, 34.55076268773636], [-77.35008517226213, 34.550762522021856], [-77.35006627514545, 34.550771917812476], [-77.35005372066182, 34.550773220187466], [-77.35003591109547, 34.55077049634073], [-77.349996266914, 34.5507763097736], [-77.34998665464205, 34.55077826525503], [-77.34997712370576, 34.55077903100358], [-77.34989645354636, 34.550789834046576], [-77.34988818898367, 34.55079174746929], [-77.34988246473017, 34.55079031117932], [-77.3498548111699, 34.5507907007727], [-77.34979083934664, 34.55075670949853], [-77.34971533613685, 34.5508107722927], [-77.34969899322873, 34.5508179366405], [-77.34969096901565, 34.55083125526155], [-77.34967773568192, 34.55082453138732], [-77.34962073640014, 34.55084195072062], [-77.34959256472885, 34.55084206402408], [-77.3495635842182, 34.55085055937193], [-77.34952547348679, 34.550857689145865], [-77.34950784131087, 34.55087123468152], [-77.34951187670137, 34.55088968151445], [-77.34954275953388, 34.55087368194481], [-77.34958895686195, 34.550890164319796], [-77.34958926080577, 34.550891472021476], [-77.34959123311589, 34.55089994941713], [-77.34962009129114, 34.55090373273665], [-77.34964009358791, 34.550909399568205], [-77.34964171750015, 34.55091212270388], [-77.34964243806851, 34.550913070664365], [-77.34964447314545, 34.55091559759055], [-77.34963184692168, 34.55094519740089], [-77.3495892809643, 34.550984809748044], [-77.349549866234, 34.550993751256655], [-77.34948883645191, 34.55108429427958], [-77.34948764715233, 34.55108766576259], [-77.34948801779126, 34.55108830565082], [-77.34948785522296, 34.55108887517729], [-77.34948864705346, 34.5510925270464], [-77.34951442351365, 34.55118945280894], [-77.34968352956321, 34.55115466605776], [-77.34973127195687, 34.551146063998644], [-77.3498273068958, 34.551128760727195], [-77.34988096916969, 34.55110564206071], [-77.34993430492368, 34.55105663668975], [-77.35003472061734, 34.55103715203319], [-77.35007823852939, 34.55106400946775], [-77.35015671967426, 34.551114484847176], [-77.35020248741719, 34.551151577553185], [-77.35024940675538, 34.5512235567528], [-77.35027018742022, 34.55125373194167], [-77.3503133773338, 34.551309037109384], [-77.35034558252995, 34.55133212653336], [-77.35036600400977, 34.55135547224212], [-77.35037308059415, 34.55138454506095], [-77.35037771117803, 34.551388708127426], [-77.35042359758648, 34.551406663363075], [-77.35043239337372, 34.55142320695023], [-77.35038971692113, 34.5514481856389], [-77.35039193024997, 34.551490963384545], [-77.35046059782616, 34.55151040155907], [-77.3504756106964, 34.55155823504712], [-77.35048779515952, 34.55165979136257], [-77.35049908091298, 34.55167726795623], [-77.35055371479807, 34.5517305961747], [-77.35055375242608, 34.55173064409228], [-77.35058000971178, 34.551788031874324], [-77.350613420571, 34.55180610244254], [-77.35064878547433, 34.55186380158456], [-77.35066542683965, 34.55189814980305], [-77.35069469408258, 34.55198597085804], [-77.3507216150401, 34.552012474063915], [-77.35074020589632, 34.5520697559218], [-77.35075796872741, 34.5521296529386], [-77.35076476649385, 34.55217431448469], [-77.35078837004794, 34.55221738383363], [-77.35079439524995, 34.55224682127848], [-77.3508355479734, 34.55227926687187], [-77.35088312951979, 34.55232612092126], [-77.35089890359714, 34.55235419161416], [-77.3509494117289, 34.55239665182652], [-77.35100598638329, 34.55244746739472], [-77.35101847691718, 34.55245939384006], [-77.35101942591552, 34.55246435905621], [-77.35102748279974, 34.55246980027707], [-77.35118773000043, 34.55255744615893], [-77.3511596055164, 34.55259965911846], [-77.35122094205781, 34.55259404611391], [-77.35128472343388, 34.55266589777247], [-77.3513061334988, 34.55271770911276], [-77.35128639274164, 34.55274509237582], [-77.35127504462, 34.55278970142495], [-77.35125376246387, 34.55281641601278], [-77.35113287504475, 34.55286124588925], [-77.35101787968212, 34.552887574696754], [-77.35087744793438, 34.552813142526574], [-77.35062743664986, 34.5527923693485], [-77.35059997261048, 34.552764443683024], [-77.35050218228459, 34.552614348611556], [-77.35044218042215, 34.552542330510406], [-77.35036073744274, 34.552480005980975], [-77.35031329062977, 34.55235877997399], [-77.35031596277132, 34.55231567351382], [-77.35027658522081, 34.55230231550375], [-77.35024736114272, 34.552246354517386], [-77.35015013949456, 34.552156624554385], [-77.35011518411422, 34.55209974633935], [-77.35011185520837, 34.55201237650295], [-77.35009195889825, 34.55198067825583], [-77.35008604423147, 34.55196375934369], [-77.34998805220164, 34.55187322066416], [-77.34997916282015, 34.55180326638755], [-77.34995323310781, 34.55175582100754], [-77.34988396249584, 34.55165309718994], [-77.34988222766283, 34.55164362875411], [-77.34987647168735, 34.5516396033975], [-77.34986875286297, 34.55163676981193], [-77.34984184975558, 34.551632604320936], [-77.34967311015626, 34.55160762380555]], [[-77.34201449854692, 34.528820839123696], [-77.34205509067723, 34.528836882702706], [-77.3420545254788, 34.52884032644508], [-77.34205040214522, 34.52884043039552]], [[-77.3419348706229, 34.53662900815604], [-77.34195177308393, 34.536614839201015], [-77.34197117698582, 34.53658958618281], [-77.3420207394312, 34.53652421359267], [-77.34208254210151, 34.53648535481736], [-77.34212200337114, 34.536449310585496], [-77.34234759796941, 34.536338494585024], [-77.34236973596968, 34.53632975539726], [-77.3423776469511, 34.53632536155884], [-77.34240686132576, 34.53631628822496], [-77.34266941634374, 34.53621899821252], [-77.34274432480369, 34.536022920140745], [-77.34276986032152, 34.536002027746505], [-77.3429648876551, 34.5358714389216], [-77.34296974405243, 34.53586840507935], [-77.34296999429945, 34.53586804414173], [-77.34316826813247, 34.53574851126886], [-77.34320035269036, 34.535732268892794], [-77.34327715354112, 34.53570144344691], [-77.34346833523124, 34.53561432596838], [-77.34351621783487, 34.53542222949645], [-77.3435694254512, 34.53537577417819], [-77.34370800367498, 34.53523420511174], [-77.34376603250624, 34.535141468035256], [-77.34386058137518, 34.53495237607415], [-77.34391547963874, 34.53487514675994], [-77.34392656442228, 34.53484380963536], [-77.34397650259464, 34.53474637364684], [-77.34414019021887, 34.53474080889928], [-77.34436975089919, 34.5347160433293], [-77.34456314325675, 34.53465690257738], [-77.34459947347142, 34.53453191353907], [-77.34469057709379, 34.53447054225296], [-77.34476955394122, 34.534401561981056], [-77.3447791488853, 34.534389461297934], [-77.34478020656444, 34.53438349912892], [-77.34483793335139, 34.53429388014529], [-77.34485466902618, 34.534250375154514], [-77.34488037385917, 34.534190343093854], [-77.34488352892807, 34.53417835110639], [-77.34484191022915, 34.53412980114505], [-77.34477640985824, 34.53410437294536], [-77.34468676163664, 34.53408589198047], [-77.34458105010359, 34.53406480456726], [-77.34453161536909, 34.534052038213815], [-77.34444530026497, 34.53402725152031], [-77.34438617340639, 34.53400430795188], [-77.34428249622187, 34.533965472459414], [-77.34426647214838, 34.53392121839679], [-77.34421580747417, 34.533852657892496], [-77.34431803722137, 34.533640854444364], [-77.34432131211224, 34.53359265809105], [-77.34434993743295, 34.533559539485324], [-77.3443967211722, 34.53354717994441], [-77.34458146976058, 34.53344152241647], [-77.34479408444507, 34.53333822095094], [-77.34484281969688, 34.533302685277974], [-77.34483426946456, 34.53327403172979], [-77.34483218177137, 34.533251814790546], [-77.34484613142044, 34.53305590396438], [-77.34483204673747, 34.53302953188558], [-77.34483038563106, 34.53301182665779], [-77.34481217754913, 34.53290998100047], [-77.34480463301199, 34.53288096709207], [-77.34478514676478, 34.532804710952334], [-77.34478101681225, 34.5327920548052], [-77.34477249671751, 34.53277166524902], [-77.34473339120997, 34.53267649769075], [-77.34472774326439, 34.53262568249062], [-77.34472531248112, 34.53261645524195], [-77.34472359353832, 34.532609940184784], [-77.34465663126467, 34.532565132658576], [-77.34465551503673, 34.532466324787045], [-77.34481503528006, 34.53243005632233], [-77.34498649194414, 34.53241100859294], [-77.3450116296806, 34.53241593661586], [-77.34509064046517, 34.53250268357422], [-77.34510882586449, 34.53255978752269], [-77.34510927785328, 34.53256120680604], [-77.34510996104736, 34.532563352093646], [-77.34513680870535, 34.532618450273375], [-77.34517164729886, 34.53263292509286], [-77.34520239827434, 34.53265439742857], [-77.34521135293653, 34.53266321724105], [-77.34522118346192, 34.53266751446361], [-77.34524230963707, 34.53266996110987], [-77.34525096025452, 34.53267630655116], [-77.34525169017948, 34.53267842603969], [-77.34525062875765, 34.532690679358936], [-77.34525028758786, 34.532693760640385], [-77.34525026356054, 34.53269393255624], [-77.34525026583549, 34.53269410923947], [-77.34525033686458, 34.53270333505531], [-77.3452524848899, 34.53272421540011], [-77.34528041583671, 34.532731632039095], [-77.34529863995041, 34.532736471172626], [-77.3453394410121, 34.53274730525105], [-77.34539560113649, 34.532787354632674], [-77.34543014605394, 34.53279934362925], [-77.34549135326071, 34.532873207620185], [-77.34548668382821, 34.532935335692954], [-77.34548031690238, 34.5330027282307], [-77.34547201978856, 34.53311218875981], [-77.34541102392106, 34.53319104236152], [-77.34537847551658, 34.53331504505265], [-77.34537745613666, 34.53331828258766], [-77.34537726949235, 34.53332205168101], [-77.34536655582978, 34.533442260808826], [-77.3453517401051, 34.53355042291881], [-77.34535142052589, 34.5336892584798], [-77.34534391298473, 34.53379500560833], [-77.3453408236065, 34.533832326447595], [-77.34526226102597, 34.53394690764936], [-77.34532613183697, 34.53403474258604], [-77.34534011277863, 34.53405811543726], [-77.34535322767171, 34.534064288955264], [-77.34536592371668, 34.53407419215281], [-77.34538904430714, 34.53411227959576], [-77.3454186903499, 34.53413542885084], [-77.34542328768066, 34.5341379547561], [-77.34543903279452, 34.534150204680515], [-77.34544000590179, 34.53415085038717], [-77.34544134258205, 34.534152923432885], [-77.3454475427445, 34.53416506713701], [-77.34543972646725, 34.53417984836048], [-77.34542605582496, 34.53420758020694], [-77.34540907677047, 34.53423180701284], [-77.34537019106622, 34.53429280154214], [-77.3453700642343, 34.53429862552626], [-77.3453664379862, 34.534302755522695], [-77.34517266113613, 34.53444226787097], [-77.34516096859522, 34.53445064109585], [-77.34516055869027, 34.53445092965209], [-77.3451603092329, 34.53445121704068], [-77.34515804615924, 34.53445332667438], [-77.3450730723387, 34.53453253913874], [-77.345039874616, 34.53459095599713], [-77.34501685108168, 34.53462936796433], [-77.3449586966251, 34.53471069215432], [-77.34495082935786, 34.53472142621578], [-77.34494771311986, 34.53472662674361], [-77.3449383894512, 34.534740208588325], [-77.34489782577401, 34.534819821467565], [-77.3448466397204, 34.53486357961047], [-77.34475628186529, 34.534976879199895], [-77.34474041257886, 34.53499158847134], [-77.34473406276814, 34.53500218760438], [-77.34473307170808, 34.53501623928432], [-77.34468871849427, 34.53509062129159], [-77.34464794690251, 34.53513698808838], [-77.34462529161515, 34.535183942766594], [-77.34454400395214, 34.53527435339072], [-77.34435759380516, 34.53554169466582], [-77.34435416230673, 34.53554648781171], [-77.34435351848754, 34.5355484352193], [-77.34435046356045, 34.53555194196842], [-77.34433254035655, 34.53556065139392], [-77.34430124688859, 34.53555410123925], [-77.3439771236202, 34.53558823147621], [-77.34395743365624, 34.53557263880649], [-77.34386933400593, 34.535616244119055], [-77.34377117538145, 34.53576174619469], [-77.34374984055833, 34.53587825561926], [-77.3435537846741, 34.53605336021533], [-77.34346577483772, 34.53610987027102], [-77.34320239558936, 34.53617442096141], [-77.34315828319689, 34.5361809889299], [-77.34308626854818, 34.53621854443545], [-77.34293348820545, 34.53634754791997], [-77.34293790245266, 34.536374543916715], [-77.34295552392416, 34.53646169533766], [-77.34303691774554, 34.536470463632234], [-77.34295475939278, 34.53649480623607], [-77.34292041211374, 34.53658957858583], [-77.34288531672547, 34.536614683656275], [-77.34290252271023, 34.536642656642485], [-77.34293261619669, 34.53673028821483], [-77.34294791964416, 34.53684965204614], [-77.3429474534023, 34.53685113814455], [-77.34307085265064, 34.53695521966208], [-77.34309444032505, 34.536980135111456], [-77.34311510671986, 34.537056948111086], [-77.34311197979726, 34.53707171234234], [-77.34303580185323, 34.53714254117331], [-77.3429818487073, 34.53721284353099], [-77.34293701858353, 34.53726314063296], [-77.34287845322702, 34.5373143414095], [-77.3428291106744, 34.53735722689323], [-77.34273690715625, 34.53742904524956], [-77.34268290038085, 34.537467544302004], [-77.34260931396382, 34.53751125723196], [-77.34246716606084, 34.537610923057656], [-77.34233801074764, 34.53770332071848], [-77.34220776947612, 34.53773304729082], [-77.34213936232045, 34.53780579146468], [-77.34211798627166, 34.53782675924505], [-77.34199868478805, 34.53787966306977], [-77.34199226981309, 34.53790604931193], [-77.34198354646685, 34.53794132020384], [-77.34197861027481, 34.53796921903073], [-77.3419748450136, 34.537992256653794], [-77.34197327509162, 34.53800058888893], [-77.34197082973003, 34.53801127712456], [-77.34196616003754, 34.53803221477982], [-77.34194477482276, 34.538091325616875], [-77.34194232466506, 34.53809684836137], [-77.34194096715044, 34.53809996375271], [-77.3419359568559, 34.5381141589926], [-77.34189736379001, 34.538202936554015], [-77.34188805341616, 34.538227065011384], [-77.3418738821905, 34.538265633433745], [-77.34185821630005, 34.53830807849829], [-77.34184543725253, 34.538355604976246], [-77.34183173184257, 34.538377496099734], [-77.34181049884263, 34.53840904866941], [-77.34179780115028, 34.538423662374655], [-77.34177511743752, 34.538461028812364], [-77.34175926579867, 34.53849041055], [-77.34175315330029, 34.53850533196303], [-77.34173011164978, 34.53852806234754], [-77.34170409760196, 34.538514761692134], [-77.34169561001828, 34.538499567738256], [-77.34171205143151, 34.53848532378593], [-77.34169530617594, 34.538438406797184], [-77.34169774267305, 34.538398899124786], [-77.34169445636958, 34.53837732438046], [-77.34168510542781, 34.538348125050554], [-77.34168505371905, 34.53834798255699], [-77.34168212283191, 34.538317893952595], [-77.34169780195916, 34.538278183642255], [-77.34169970033822, 34.538254160663826], [-77.34169917871463, 34.538230659635474], [-77.34173701630738, 34.538126383258074], [-77.34173942288567, 34.53812504552251], [-77.34174429249113, 34.53812233866418], [-77.34183880869983, 34.53807117417673], [-77.34185441871088, 34.53805783234124], [-77.34185522762539, 34.53804817318513], [-77.34186194284683, 34.53803332510615], [-77.34187467685035, 34.53800559455098], [-77.34190719731819, 34.53797949230735], [-77.34189346234774, 34.537952639894755], [-77.34189277879432, 34.537949659363434], [-77.34191050462644, 34.53791781184538], [-77.34190618645381, 34.53787917973975], [-77.3419106278558, 34.53785658943478], [-77.34190081585814, 34.53783202080187], [-77.34189428011435, 34.53776751723359], [-77.3417699122547, 34.537754422946705], [-77.34175564377972, 34.537751738355084], [-77.34174801732055, 34.537753054849105], [-77.3417400837343, 34.53775377665723], [-77.34163778219764, 34.53777343056428], [-77.34155751496812, 34.53778910103221], [-77.34155085154258, 34.53779131941951], [-77.34152913227784, 34.53778906037031], [-77.34143526222844, 34.53775279590371], [-77.34137686132757, 34.53768855562734], [-77.3413530847369, 34.53757363020634], [-77.34135030076759, 34.53756402936179], [-77.34131545653368, 34.537452570320085], [-77.3413191157386, 34.537357990395506], [-77.34132910941021, 34.53730531483129], [-77.34133621373341, 34.537204765910076], [-77.34136957310253, 34.53714206957517], [-77.34140406200787, 34.53709340392987], [-77.34145252282752, 34.53706562510426], [-77.34156948773392, 34.53698477905198], [-77.34162738848867, 34.53695372256801], [-77.34166385777704, 34.53691281405706], [-77.34182183789316, 34.536799983540746]], [[-77.34385621685988, 34.53085281023954], [-77.34385340304517, 34.53084455851071], [-77.3438503719968, 34.53083239876671], [-77.34387075404231, 34.530824317646584], [-77.34388145886993, 34.530833709994766], [-77.34406547428648, 34.53089125308848], [-77.34410016620478, 34.5309095622669], [-77.34411233476096, 34.53092971221224], [-77.3442606310479, 34.5310294861758], [-77.34426462499623, 34.53103406490817], [-77.34435010690731, 34.53114031985029], [-77.34437279080987, 34.5311859619524], [-77.34444842911932, 34.531306237436304], [-77.3444845703493, 34.5313657919207], [-77.34448509381588, 34.531389786486514], [-77.34450082819484, 34.5314858624464], [-77.34453250510634, 34.53154780042446], [-77.34454267572997, 34.53160225083148], [-77.34456185907085, 34.531675550690466], [-77.3445802045782, 34.53175305333579], [-77.3446333089159, 34.53179975000592], [-77.34465152185906, 34.53183140896459], [-77.34466218886547, 34.53184858900141], [-77.34468534429516, 34.531887747237974], [-77.34469925724154, 34.53190431435314], [-77.34473248406056, 34.53194216926288], [-77.34482388824537, 34.53204630480561], [-77.34482655159502, 34.53204933912164], [-77.34482901813394, 34.53205068896791], [-77.34482345280755, 34.532065179814246], [-77.3446486747741, 34.53221460108639], [-77.34462362880294, 34.53221931269086], [-77.34461540329269, 34.53220911233286], [-77.3446139838582, 34.53220403965394], [-77.34459972013933, 34.53219076976478], [-77.34451966774205, 34.53209520065437], [-77.3444677239361, 34.53207951241894], [-77.34443158444216, 34.53203625597556], [-77.34438655546656, 34.531991943857456], [-77.34432496439258, 34.53194618994683], [-77.34430319245547, 34.53192222090605], [-77.34428340872819, 34.531884375360036], [-77.34424868968564, 34.53177149114599], [-77.3442530645671, 34.531759249300706], [-77.34424193339765, 34.53174952399903], [-77.34420284738356, 34.53165114737659], [-77.34416554420011, 34.53158412859361], [-77.34412564460042, 34.531539845865886], [-77.34410522842325, 34.53150909577441], [-77.34407306394026, 34.53143759949391], [-77.3440697955121, 34.531425471924344], [-77.34407074373024, 34.53141451697648], [-77.34405445840534, 34.53136856297892], [-77.3440109074194, 34.53121844864957], [-77.34398909745123, 34.53119226348591], [-77.34395196679506, 34.531130252307314], [-77.3439211670882, 34.53107962784496], [-77.34395877147581, 34.531016553771565], [-77.34397531517891, 34.530949427063646]], [[-77.34557221248178, 34.546632938339464], [-77.34544744951077, 34.54654315087927], [-77.34542974249266, 34.54650476114826], [-77.34541988159691, 34.54641003557623], [-77.3454149906691, 34.5463263587916], [-77.34538163322532, 34.54623295527538], [-77.34538887189726, 34.54616967743592], [-77.34548121696554, 34.546099047422516], [-77.34552259695775, 34.54615043751465], [-77.34560353077686, 34.546183712788995], [-77.34567443613322, 34.54623271766557], [-77.34569351722614, 34.5462482557309], [-77.34576861160929, 34.54630016528455], [-77.34581009907576, 34.54635389191348], [-77.34583351918853, 34.546371732456734], [-77.34586602463526, 34.54643715624414], [-77.34587995675015, 34.54645727374813], [-77.3459098001288, 34.546490014183085], [-77.3459809638752, 34.54657412769332], [-77.345946056636, 34.54664861418464], [-77.3460234644525, 34.546793724048875], [-77.34585793575677, 34.54678807107407], [-77.34579054016776, 34.54676627542882], [-77.34566387145706, 34.546690991312865], [-77.34558959313678, 34.546676957666484]], [[-77.3994148417887, 34.57932515383854], [-77.3993929739837, 34.57933155818398], [-77.39937345380636, 34.579328596447546], [-77.39919596644559, 34.57933848488748], [-77.39919232016567, 34.57933762723747], [-77.39918288063464, 34.579335060153085], [-77.39909746371734, 34.57931397160601], [-77.39904823133425, 34.57930139643832], [-77.39904821238494, 34.57930138301945], [-77.39904817932104, 34.57930138873472], [-77.39899896077678, 34.57929626039091], [-77.39897724942696, 34.57928198284213], [-77.39893424259913, 34.579301198351274], [-77.39890045581973, 34.57932963311957], [-77.398866282171, 34.579343918121694], [-77.39885120322077, 34.57934849292716], [-77.39883588810734, 34.579348558264385], [-77.39882122232927, 34.57935493727206], [-77.39880195038151, 34.57937262307774], [-77.39878281998949, 34.57937216993822], [-77.39875269815597, 34.579381410077204], [-77.39874210335263, 34.57938724265718], [-77.39870552291075, 34.57940169832908], [-77.39870344542882, 34.57940172658034], [-77.39870247075832, 34.57940332712506], [-77.39869715788961, 34.5794051438833], [-77.3986541926664, 34.579422290273506], [-77.39864247909105, 34.57942565510304], [-77.39862956657656, 34.57942563027982], [-77.39862278931294, 34.5794351075644], [-77.39860493975313, 34.57944573221134], [-77.39857703932313, 34.579452539119835], [-77.39853765795215, 34.57946180151277], [-77.39850643409032, 34.579487065479555], [-77.39846755814914, 34.57948016285306], [-77.39844665302931, 34.57948301356695], [-77.39840792936783, 34.579505715813355], [-77.3983592272696, 34.579506380997465], [-77.3983583578885, 34.57950675469705], [-77.39830942341123, 34.579549516185395], [-77.39829155716737, 34.57955055696412], [-77.3982109176162, 34.57958783531243], [-77.39810769532285, 34.57960141982606], [-77.3978799390437, 34.57959098000128], [-77.39781689889043, 34.57963900183397], [-77.3977042841221, 34.5796697426093], [-77.39764189164781, 34.57955739844211], [-77.397685674517, 34.57940966669701], [-77.39768091037621, 34.57912719595423], [-77.39775089302506, 34.579045939835126], [-77.39781693869136, 34.57889124491632], [-77.39787070260445, 34.5787331649705], [-77.397955442799, 34.57866301369673], [-77.39811747627887, 34.57853889111674], [-77.39821097093673, 34.5784920684236], [-77.3983911401174, 34.57838786387663], [-77.398401342188, 34.578379237454854], [-77.39840798179259, 34.578375145373634], [-77.3984250213204, 34.57836461458814], [-77.39850648737843, 34.578308660885654], [-77.39853176750772, 34.57828867027908], [-77.39855573992021, 34.57827964598101], [-77.39857231283494, 34.57827343822356], [-77.39859970339367, 34.57825732694876], [-77.39859716003131, 34.57827853077594], [-77.39860499106986, 34.5782811443824], [-77.39861331278016, 34.578276200159806], [-77.3986106658426, 34.5782561600051], [-77.39862221572707, 34.57824837974232], [-77.39862961826, 34.57824535925872], [-77.39863243077353, 34.57824387523722], [-77.39864541078695, 34.57823551427895], [-77.39864338853234, 34.57823205687373], [-77.39864926342898, 34.57822584151193], [-77.39864881438604, 34.57822385773732], [-77.39864433104137, 34.578218652959244], [-77.39864555600926, 34.578209112713296], [-77.39864403659274, 34.578203160660316], [-77.39864405211591, 34.57819215735798], [-77.39864193375595, 34.578184187619584], [-77.39863859592143, 34.5781832734913], [-77.39863944700296, 34.578176873885496], [-77.39863992273301, 34.57816621732513], [-77.39865424808079, 34.57814928181337], [-77.3986672673641, 34.57814976526346], [-77.39869651678664, 34.57813904026457], [-77.39870349980657, 34.57813572072628], [-77.39870964773719, 34.57813624594764], [-77.39878476632006, 34.578118782408595], [-77.39873416969697, 34.57809303579102], [-77.39870350051177, 34.57811948050113], [-77.39869175441348, 34.57811954557384], [-77.39867200560872, 34.5781159188886], [-77.39865424969264, 34.5781126581751], [-77.39863267235665, 34.578110907151995], [-77.39863653899536, 34.57808709801205], [-77.39863961787881, 34.578070884927634], [-77.39863975905338, 34.57806009755632], [-77.39865425279416, 34.57804223621502], [-77.3986635461548, 34.578040143733176], [-77.39870025702558, 34.57802833201115], [-77.39870350436199, 34.57803087896383], [-77.39872656404887, 34.578045886100476], [-77.39875275403494, 34.57806336209503], [-77.39875817466415, 34.578063706409694], [-77.39880200306784, 34.57811189110537], [-77.39880447432115, 34.5781132757666], [-77.39880665913866, 34.57811562354613], [-77.39885125256846, 34.578150571891754], [-77.39886322281077, 34.57814763509284], [-77.39890050378125, 34.5781486495341], [-77.39894146526272, 34.57814031120853], [-77.39895648546556, 34.57813982474215], [-77.39899900567161, 34.57815792774305], [-77.39908139451275, 34.578164762528516], [-77.39909750753321, 34.57816838146305], [-77.39917111653656, 34.57806303615899], [-77.39911091691731, 34.57798002072384], [-77.39919601649875, 34.57799024897807], [-77.39925820836585, 34.57790519568421], [-77.39933034435957, 34.577895316026655], [-77.39939302426149, 34.577886731444856], [-77.39945656314546, 34.57787802916383], [-77.39952601745406, 34.57786851666901], [-77.3995900305373, 34.57781317816541], [-77.39961384976749, 34.5778125328556], [-77.3997870376146, 34.57770214343829], [-77.4000069842503, 34.57770541360726], [-77.40018104144491, 34.577813625952416], [-77.40031639651063, 34.57789777666529], [-77.400359625714, 34.5781236655876], [-77.40043619632397, 34.578305063854884], [-77.40031003418406, 34.578462285734474], [-77.39988689762234, 34.578808901209136], [-77.39983148797981, 34.57886483284886], [-77.39978700089407, 34.578914106566344], [-77.39964198056221, 34.57911255371888], [-77.39944049985976, 34.579297888023284]], [[-77.34934897057022, 34.5502888619573], [-77.34931888295277, 34.55029143560481], [-77.34932141940212, 34.55030970734254], [-77.34935199937605, 34.550307551167975]], [[-77.34417701029861, 34.5303083577083], [-77.34410896593218, 34.530337300162145], [-77.34410379994135, 34.53034949404167], [-77.34407753510658, 34.530368668507826], [-77.34406232992008, 34.53036499726344], [-77.34405301372014, 34.530368165450376], [-77.34404926889013, 34.530370337061235], [-77.34404177946229, 34.53037371906278], [-77.34404059813274, 34.53037462520721], [-77.34403500314792, 34.53037891686605], [-77.34402819866297, 34.53038038653346], [-77.34402351481609, 34.53038108643132], [-77.34402252770937, 34.53038413969759], [-77.34402226236219, 34.53038823905432], [-77.34402147680663, 34.53039194151373], [-77.34400472434132, 34.5304085869023], [-77.34400439008664, 34.530410587810394], [-77.34401429848958, 34.53042357679102], [-77.34397744341923, 34.53045357601997], [-77.34396944605831, 34.530455675040045], [-77.34395681423769, 34.53046245027635], [-77.34394800853762, 34.53050733754631], [-77.34390074938173, 34.53057776805167], [-77.34390032144921, 34.530592988350136], [-77.34389501269074, 34.53060573556148], [-77.3438753382547, 34.53062570791998], [-77.34381029827378, 34.530646211199155], [-77.34381526598304, 34.53060522633791], [-77.34375951167976, 34.530539770419985], [-77.34369791943769, 34.53049970071051], [-77.34369420386986, 34.53049271338858], [-77.34368264542911, 34.53047097705759], [-77.34362217332226, 34.530388189451855], [-77.34360686375389, 34.53031745773241], [-77.3435831733602, 34.53027139103813], [-77.34347075871075, 34.53017910212568], [-77.34344801975543, 34.53013973180455], [-77.34339696788882, 34.53005336308435], [-77.34342594669894, 34.52997166654652], [-77.34341679804467, 34.52987613601509], [-77.34342965426525, 34.529803840900364], [-77.34343516038831, 34.52976087741909], [-77.3434305614791, 34.52974250557946], [-77.3434533528858, 34.5297095846561], [-77.34345435721109, 34.529677876997084], [-77.34345230446687, 34.52964502569444], [-77.34350520841946, 34.52965546055008], [-77.34351461473781, 34.529663228506735], [-77.34352065612308, 34.52966833788495], [-77.34354467369987, 34.529689994107976], [-77.34356749341521, 34.52972280371648], [-77.34358758016002, 34.52972868847601], [-77.34360141263728, 34.52973893250168], [-77.34364403400522, 34.529772995770315], [-77.34365471555421, 34.52979855997483], [-77.34369796167097, 34.52980747528626], [-77.34386263439337, 34.52986395263], [-77.3438802447258, 34.529869248647216], [-77.34389266149283, 34.5298751858238], [-77.34399704398383, 34.52996702292543], [-77.34399594802723, 34.53002304172381], [-77.34399598336145, 34.53008958526038], [-77.34403767737196, 34.53011213811111], [-77.34408183108592, 34.530182528013235], [-77.34409041979525, 34.53019290095341], [-77.34409149637024, 34.53019825215953], [-77.3440975121236, 34.5302075267], [-77.34412780690042, 34.53025423247986], [-77.3441438140533, 34.53027317059406]], [[-77.35933936320266, 34.549556646566174], [-77.3593185658614, 34.54956368266893], [-77.35932661459759, 34.549549655489656], [-77.35931494207581, 34.549535810449214], [-77.359314528429, 34.54950639336899], [-77.35933375848751, 34.54948742087796], [-77.35934114676564, 34.54947872119689], [-77.35937183983205, 34.54948193753652], [-77.35936899996454, 34.549525515992705], [-77.35935086507348, 34.54954616366257], [-77.35934568288079, 34.549550766714724]], [[-77.34504654894424, 34.545448888765875], [-77.34493804379844, 34.5455000813625], [-77.34506230671661, 34.54550712098622], [-77.34510179429742, 34.54552755538124], [-77.34513542921468, 34.54557247227596], [-77.34517546803315, 34.54563583085822], [-77.34517593510918, 34.545710674533765], [-77.3452319037315, 34.54574083056298], [-77.34529149589511, 34.54581369479311], [-77.34529348250268, 34.545816172212774], [-77.34533000156645, 34.54590796080417], [-77.345346309522, 34.54593098142464], [-77.34540672554212, 34.545996776832204], [-77.34528518794254, 34.546087263907076], [-77.3451622772026, 34.546034857489154], [-77.34508353295172, 34.5459687883288], [-77.3450054583594, 34.545912154472845], [-77.34502527791979, 34.54581112328303], [-77.34500586418949, 34.54573514336114], [-77.34500970306576, 34.545667594222266], [-77.34496347632489, 34.545618832069344], [-77.34493291623261, 34.5456050152676], [-77.34490534423747, 34.54553408642619], [-77.34489131316136, 34.545515816976604], [-77.34485571572786, 34.545511926088786], [-77.34478481030581, 34.54544569272997], [-77.34473048385723, 34.54540753376107], [-77.34491076871932, 34.54529888135169], [-77.34495548793058, 34.54537516182751], [-77.34502251425079, 34.54541655282746]], [[-77.35582266288115, 34.55172637752273], [-77.3558313687317, 34.55164423053041], [-77.3558942321562, 34.55159706557335], [-77.35595609838452, 34.551564773002994], [-77.35615442263672, 34.55147531260255], [-77.3561544493381, 34.55147530104196], [-77.35615446233588, 34.551475273888144], [-77.35618921570946, 34.55140909803409], [-77.35617285761737, 34.55140104361071], [-77.35618791909465, 34.551367399060155], [-77.35618741912631, 34.55134815095559], [-77.35620455871333, 34.55131671226121], [-77.35620568888757, 34.55131395162504], [-77.35624026842807, 34.55127933697377], [-77.35624644624096, 34.55127168881108], [-77.35628623934046, 34.5512549043385], [-77.35635590363839, 34.55125150849234], [-77.35642843600364, 34.55123604933664], [-77.35648292415962, 34.55122675846347], [-77.35655314031716, 34.551211138110524], [-77.35659967044492, 34.55119875902723], [-77.35660570042995, 34.55119811059816], [-77.3566066393156, 34.55119348562488], [-77.35662346400048, 34.55116296515502], [-77.35665321671777, 34.55112733297981], [-77.35667312804613, 34.55110673096134], [-77.35673505128037, 34.551096315044965], [-77.35674022799128, 34.55113937822745], [-77.35674343549275, 34.551145693413424], [-77.356738755863, 34.55115385514087], [-77.35675071731436, 34.55115590917778], [-77.35678581219548, 34.55116155702801], [-77.35677905504045, 34.55114056538648], [-77.35677603958476, 34.5511256421227], [-77.35679029392563, 34.55107774160659], [-77.35682979335262, 34.55105876964518], [-77.35690056467274, 34.55100066046727], [-77.35692947351403, 34.55098308240441], [-77.35695214219238, 34.55093275590775], [-77.35695236679956, 34.55093212796742], [-77.35695282172753, 34.55093193138891], [-77.35700524042787, 34.55089576030447], [-77.35710403685502, 34.55087744169023], [-77.35715003276654, 34.55086379979131], [-77.35724626739426, 34.550888844476944], [-77.35720983190376, 34.550833724052765], [-77.35725033820924, 34.55076995317237], [-77.35725447450811, 34.550768651683], [-77.35725277076611, 34.550766336328095], [-77.35725655615525, 34.550762027300124], [-77.35731371287463, 34.55069635659746], [-77.35735086496271, 34.550666437301125], [-77.35740572162547, 34.550649150300174], [-77.35744951299318, 34.550644914148116], [-77.35747897428183, 34.55062950867075], [-77.35749373042644, 34.550609233281286], [-77.35754910955593, 34.55058198430775], [-77.35762202522784, 34.55057492312909], [-77.35771371049313, 34.550516356036134], [-77.35773197974254, 34.55050423479871], [-77.35774775812774, 34.550479877107655], [-77.3577881579975, 34.55048043747761], [-77.35784644416135, 34.550456679720895], [-77.35792428445589, 34.55048603848851], [-77.35784472613285, 34.550531684547266], [-77.35777719125541, 34.55052623197883], [-77.35778473747723, 34.550567335768626], [-77.357744518244, 34.55062131511192], [-77.35772604840881, 34.55062553452606], [-77.35772745650739, 34.55063678864813], [-77.35769468133952, 34.55067186191389], [-77.35764781652352, 34.55071165724325], [-77.3575811496412, 34.55078026472145], [-77.35754388593215, 34.550809999864796], [-77.35745462943463, 34.55086603539303], [-77.35735843753942, 34.550934740786985], [-77.35734450441609, 34.55094405219267], [-77.35726477103385, 34.55099718555137], [-77.35724013605663, 34.551010047223336], [-77.35724077194955, 34.551012887022175], [-77.35714494944759, 34.551085645801194], [-77.3571416077998, 34.55108629502912], [-77.3571403266538, 34.55108855391658], [-77.35712481542097, 34.551103092531385], [-77.35705020250545, 34.5511660084737], [-77.35701807471139, 34.551183864900125], [-77.35694597345312, 34.55120194434667], [-77.35688753459068, 34.55121104954713], [-77.35689452223718, 34.551246353490626], [-77.35680427802224, 34.5512947276833], [-77.35657935972347, 34.55141413758806], [-77.35657048078208, 34.5514293473493], [-77.35654798077437, 34.551436241927135], [-77.35650926929087, 34.55144819600602], [-77.35634995239269, 34.551511126686975], [-77.35627017072636, 34.55153160524768], [-77.35619645221077, 34.551564218917896], [-77.35615445885588, 34.551475425684906], [-77.35611848367412, 34.5516028978023], [-77.35601370000654, 34.55165519283325]], [[-77.34472703016677, 34.54515741340121], [-77.34481633567502, 34.545137746348715], [-77.34482454307788, 34.54514918175528], [-77.34482706100638, 34.54520240619841], [-77.34485954847406, 34.545233677047904], [-77.34479181637687, 34.54527629995266], [-77.34471261698464, 34.54537921082128], [-77.34457089421593, 34.545308084327516], [-77.34461911197107, 34.545239061866326], [-77.34469350460266, 34.54515286060108], [-77.34464066317533, 34.545053227139576], [-77.3447210637008, 34.54501299980012], [-77.34473771674364, 34.54503926390318], [-77.34475288518406, 34.54505756616079]], [[-77.34316255558109, 34.53645238827078], [-77.34336616254788, 34.53630977523959], [-77.34340096582677, 34.536295678448404], [-77.34354972671687, 34.536229158536436], [-77.3436764164127, 34.53625604856796], [-77.34373253170457, 34.53625599118156], [-77.34374463188962, 34.53628862874694], [-77.34376794669245, 34.53636528937233], [-77.34374182298232, 34.53641032846883], [-77.3437091666506, 34.536476745772276], [-77.34367149656495, 34.536501575689], [-77.34354099726946, 34.53660733535757], [-77.34343186322451, 34.536590152927126], [-77.34328177094615, 34.53659705172076], [-77.34316868912738, 34.536462042329546]], [[-77.32392342295182, 34.52709095965293], [-77.32392905443517, 34.52710542055408], [-77.32394382456675, 34.52710089659748], [-77.32397817188112, 34.52706826726191]], [[-77.34738966238915, 34.548467952736225], [-77.34745468531331, 34.54856546088883], [-77.34749188525842, 34.54861664011885], [-77.34750166395736, 34.54863088152652], [-77.34746326662207, 34.548686636258424], [-77.34757970583183, 34.54873989130824], [-77.34760338458034, 34.54877363484381], [-77.34760769999716, 34.54878826374346], [-77.34763083667085, 34.54881793878428], [-77.34762519826667, 34.54887780802941], [-77.34765723377843, 34.54890354641826], [-77.3476737102451, 34.548920057928854], [-77.34768045934919, 34.54895667521852], [-77.34768241666713, 34.548967234332906], [-77.34767248003322, 34.548973480076825], [-77.34766238481181, 34.54897035027087], [-77.34757510345858, 34.54893973975184], [-77.34752479266427, 34.54892260353212], [-77.34751995995236, 34.54883675319938], [-77.34750805052256, 34.54880260235737], [-77.34735183856367, 34.54872259812488], [-77.347335879675, 34.54870496598462], [-77.34731828457295, 34.54866583083367], [-77.34730786707084, 34.54864779166609], [-77.34730580846306, 34.5486367471189], [-77.34725356341727, 34.54859440028602], [-77.34722864824852, 34.548574448819934], [-77.34719155949186, 34.54854596148566], [-77.34711873326522, 34.54849139068466], [-77.34709816838935, 34.54843181477463], [-77.34705873482945, 34.548377613525965], [-77.34709421827, 34.54830839681506], [-77.34719711835649, 34.548304629370065], [-77.34724687337496, 34.548319306155506], [-77.34727327969787, 34.54834674309555], [-77.34732669892118, 34.548379587756926], [-77.34737268670264, 34.548443918929976], [-77.34737976606901, 34.54845383095002], [-77.34737394573521, 34.54846451815586]], [[-77.34580543875649, 34.5341651850817], [-77.34581178330498, 34.534162477121136], [-77.3458177512838, 34.53416321227241], [-77.34582014755868, 34.53416350745165], [-77.34582575918054, 34.53416419870527], [-77.34582998261614, 34.53416476098493], [-77.34583313186748, 34.534165106891095], [-77.3458360997318, 34.53416547247985], [-77.34583729139462, 34.53416561927172], [-77.34584221588133, 34.534166225881705], [-77.34585440490649, 34.53416772735387], [-77.34585442607725, 34.53416773801614], [-77.34585444818063, 34.53416773268447], [-77.3458544804312, 34.53416773665717], [-77.34585446234222, 34.534167719089155], [-77.34585446253399, 34.53416771042977], [-77.34585444964, 34.53416766938867], [-77.34585118621169, 34.53416053988404], [-77.345852199188, 34.53415886395662], [-77.34585230025664, 34.53415426225659], [-77.34585233403993, 34.534152724093325], [-77.34585236786945, 34.534151183824946], [-77.34585246870756, 34.534146592621404], [-77.34585250260602, 34.534145049213414], [-77.34585263715836, 34.53413892298616], [-77.34585105672625, 34.53413760664414], [-77.34585107771805, 34.53413503132288], [-77.34585161944048, 34.53410952439855], [-77.3458474570315, 34.53410752212546], [-77.345847418891, 34.53410220131466], [-77.34584839731069, 34.5340516251817], [-77.34583934919311, 34.5340474838073], [-77.34583906910508, 34.534036038867725], [-77.34594813595169, 34.5339761540142], [-77.34595708787161, 34.533972402358245], [-77.34601507603873, 34.534022197439214], [-77.3460299197034, 34.53403494385812], [-77.34605331890253, 34.53405503696919], [-77.34607612193672, 34.53407461813707], [-77.3460658609411, 34.53412842238021], [-77.3460610056843, 34.534144072539064], [-77.34605091671541, 34.53415923543499], [-77.34602979592322, 34.534190978249924], [-77.34602043912328, 34.5342050407252], [-77.34599858613979, 34.53423788394497], [-77.34597540295908, 34.5342727262615], [-77.34594984593723, 34.53428651615108], [-77.3459364342186, 34.53427833370244], [-77.34589569405551, 34.53425718581188], [-77.34585297888486, 34.534231459134155], [-77.34584964042298, 34.534229617929775], [-77.34583258658168, 34.53421917715418], [-77.34580885536046, 34.53420488419365], [-77.34580689548537, 34.53420370379], [-77.34580458275163, 34.53420231086388], [-77.3457678431625, 34.53418018312811], [-77.34576249624071, 34.5341769627523], [-77.3457705037464, 34.53415790760903], [-77.34578797605202, 34.534157682531124], [-77.34579576254879, 34.53416086443783]], [[-77.3487213472931, 34.54973795478518], [-77.34873347339791, 34.549785802750314], [-77.3487424024489, 34.54984270286744], [-77.34874085839009, 34.54984930944004], [-77.3487418886924, 34.54985540752271], [-77.34880299786975, 34.5499627778603], [-77.34880134523019, 34.55000853419343], [-77.34873890327917, 34.55003320627572], [-77.34876182576348, 34.55006936410345], [-77.34876678599495, 34.550090399100014], [-77.34883459095268, 34.550134988514195], [-77.34883743496235, 34.5501502894943], [-77.34881046680263, 34.55015324083966], [-77.3487976479479, 34.55014716325158], [-77.34872573503844, 34.55012203343409], [-77.34869519933392, 34.55014316813246], [-77.34866812274838, 34.55014025968447], [-77.34862968416236, 34.55011128569374], [-77.34863111709538, 34.550109921786124], [-77.3486278662709, 34.550109602947174], [-77.34858799730229, 34.55008020399916], [-77.34853138440249, 34.550036918989285], [-77.34850656209652, 34.550021139302096], [-77.34849320396555, 34.54998277203083], [-77.34847673269188, 34.549887316791306], [-77.3485372788396, 34.54978083272585], [-77.34855622048744, 34.54976505314282]], [[-77.34622354328093, 34.54701529556653], [-77.34616846793125, 34.547036789185746], [-77.34614633278349, 34.54705085151837], [-77.34613502193451, 34.54704160145187], [-77.3460860226965, 34.54702542001647], [-77.34606857931259, 34.54693987606992], [-77.34619446769773, 34.54694337209179]], [[-77.35959163076095, 34.54857255393142], [-77.35958323286121, 34.548564012012], [-77.3595953021809, 34.54855455552621], [-77.35960793830793, 34.54854326879568], [-77.35962024564454, 34.548550898896366], [-77.35961953132008, 34.54855878527739], [-77.35962247786411, 34.548567777352325]], [[-77.35956603325421, 34.54822985570954], [-77.35956603258427, 34.54822985433547], [-77.35956603501766, 34.548229851050216], [-77.35956603720692, 34.54822985373685], [-77.35956603708135, 34.54822985515845], [-77.35962216071445, 34.54824772551452], [-77.35962458158868, 34.548258340404054], [-77.35962906226236, 34.54828198591982], [-77.35961333773903, 34.54830733465057], [-77.35958224984249, 34.54828872661273], [-77.35958905333231, 34.548272780441266], [-77.35956603473643, 34.548229863338804]], [[-77.34944054431125, 34.55088091905009], [-77.34940688630128, 34.55089312526826], [-77.34940581073113, 34.55090959174075], [-77.34943192739519, 34.55091276166932], [-77.34944357545169, 34.550918382504236], [-77.34946574855144, 34.55090789464764], [-77.3494857866787, 34.550900472429376], [-77.34948823526577, 34.55087739889985], [-77.34945782169393, 34.55087843275268], [-77.34944833988541, 34.55087741406807], [-77.34943640641777, 34.55087644259471]], [[-77.35648046279641, 34.55130596371612], [-77.35645314153233, 34.5512915483108], [-77.35644631126715, 34.55130683979328], [-77.35644337527434, 34.55131130296599], [-77.35645245565156, 34.551321470811374]], [[-77.35961956772165, 34.54850426938364], [-77.3596085888716, 34.54851484167176], [-77.35960321741183, 34.54850344063301], [-77.35957928575549, 34.54850337438046], [-77.35956028117695, 34.54848126493261], [-77.359558054534, 34.548477273989654], [-77.35955825504251, 34.54847579966705], [-77.35955849431795, 34.548474555202915], [-77.35956063234089, 34.548465920824476], [-77.359566892443, 34.548474555938924], [-77.35962469763072, 34.54848718491594]], [[-77.34290591840005, 34.52896112312552], [-77.34288509709909, 34.52893419287016], [-77.34293282160502, 34.528945284884315], [-77.3429444423054, 34.52895558043286], [-77.34295662726697, 34.528969016921366], [-77.34293174736129, 34.528991801972595]], [[-77.34905828232564, 34.55056913708421], [-77.34906042194096, 34.55056928442551], [-77.34905979243162, 34.550567994538255], [-77.34905725334409, 34.55056774247573]], [[-77.34927843106054, 34.55034223255734], [-77.34929097021289, 34.55033994840658], [-77.34929657829889, 34.55032850226197], [-77.34927297814745, 34.55033119285699]], [[-77.34873842477332, 34.55063012241952], [-77.34873924894256, 34.55059927862071], [-77.3487829861796, 34.55059640748378], [-77.34877497917775, 34.550609464035], [-77.34878692815188, 34.55062248113216], [-77.34876292759985, 34.550638444203926]], [[-77.34916285987326, 34.5504006346356], [-77.34916267913684, 34.55039964117264], [-77.3491610419502, 34.550399739123435], [-77.34915921273004, 34.55040115946985], [-77.34916099339213, 34.550401849456826]], [[-77.34968980084419, 34.5508820384213], [-77.34968315326361, 34.550880772147195], [-77.3496686311976, 34.55087869868818], [-77.34968638483195, 34.550873896983724], [-77.34969040647223, 34.55085571034401], [-77.3497074402559, 34.550862396441005], [-77.34969805017191, 34.55087446510315], [-77.3497039803583, 34.55088245941788]], [[-77.34932480091813, 34.55094632418987], [-77.34932779687597, 34.55093844735557], [-77.34930386579727, 34.550936136540315], [-77.34931151327935, 34.550950767535184]], [[-77.34939182365312, 34.55027587805059], [-77.34938489944912, 34.55026897923893], [-77.34937141226334, 34.55027881534846], [-77.3493843674016, 34.550292104660656]], [[-77.3489649127291, 34.550957479681784], [-77.3489631111801, 34.550973009954916], [-77.34899235775815, 34.55097083534264], [-77.34898877293452, 34.5509535943917]], [[-77.34731235548692, 34.55288565853216], [-77.3473122246147, 34.55288546757496], [-77.34731259721377, 34.552885475652644], [-77.34731269708114, 34.552885697495526]], [[-77.3493566823499, 34.55092358974566], [-77.34936971974068, 34.5509287660457], [-77.34938267959461, 34.55091984863951], [-77.34937010646566, 34.550911956987534]], [[-77.3674751409664, 34.62678604270902], [-77.36903598061572, 34.625563120104545], [-77.36927126260343, 34.62508241212281], [-77.36982465491688, 34.625011540005474], [-77.37017481048485, 34.624699128493276], [-77.37041918938448, 34.6244548770121], [-77.3706134077008, 34.624204151768], [-77.37110906665359, 34.623715486640215], [-77.37081739442016, 34.623127646826475], [-77.37122302559251, 34.62284995832713], [-77.37087429300624, 34.62261980490189], [-77.37061397532094, 34.622572795814555], [-77.3703932164619, 34.62273176323694], [-77.3698254203361, 34.622867209235906], [-77.36974538224891, 34.62306273064268], [-77.36952669954916, 34.623621920194715], [-77.36943012493478, 34.62395723724265], [-77.36926528761049, 34.62422739041121], [-77.36903639156657, 34.62443879285856], [-77.3687975097822, 34.62464025811409], [-77.36816972243778, 34.62498781780065], [-77.367458564767, 34.62675760502957], [-77.36744381596094, 34.62677467641494], [-77.36743580374853, 34.6268161919061], [-77.3674585457581, 34.62680717295705], [-77.36746507279796, 34.62679451583145]], [[-77.34368592093055, 34.5367138246775], [-77.34383528249779, 34.53660042065623], [-77.34388356212277, 34.53656163884244], [-77.3439364615866, 34.53648137279818], [-77.34403002229871, 34.536384538677474], [-77.34426126544678, 34.53609727416281], [-77.34423385364802, 34.53605343663539], [-77.34429662902593, 34.53601753012209], [-77.34434020936254, 34.535996353121746], [-77.34461818180927, 34.53567726870291], [-77.34467676389498, 34.5355000711347], [-77.3447464580769, 34.53540272171447], [-77.34482061500272, 34.535279022921316], [-77.34484109475768, 34.535231606851326], [-77.34489071470769, 34.53513830379785], [-77.34490889864222, 34.53509944111227], [-77.344921778985, 34.53507987459373], [-77.3449922780627, 34.53496503397501], [-77.3450557093469, 34.5348966764411], [-77.3450779019218, 34.534830304058715], [-77.34513861619037, 34.53470937682313], [-77.34514336695986, 34.53469847458354], [-77.3451473563461, 34.53469289575735], [-77.3451557022751, 34.53467897158974], [-77.34526170120222, 34.534559037673176], [-77.34530750019783, 34.53452245815756], [-77.34543505167963, 34.534411684197096], [-77.34549764057903, 34.53436662244524], [-77.34555701209902, 34.53429900319845], [-77.3455728646983, 34.53426944421954], [-77.34556774284445, 34.53426399227038], [-77.34558538307323, 34.53420643794989], [-77.34557432836303, 34.53419867190705], [-77.34555956488458, 34.53418830040397], [-77.34553376586682, 34.5341690276355], [-77.34552002214056, 34.53415463793584], [-77.3455162306447, 34.534152127638876], [-77.34551140454246, 34.534148932341196], [-77.34550109065219, 34.53414206078856], [-77.34550137902447, 34.53413557453584], [-77.34550042047672, 34.534133922322255], [-77.3454940158312, 34.534127777558204], [-77.34548750241407, 34.53412152843542], [-77.34548161726187, 34.53411798179178], [-77.34547008264126, 34.5341048154948], [-77.34546676207293, 34.53410109667331], [-77.34546715898699, 34.53409875352589], [-77.34546358439276, 34.53409481438464], [-77.34542616587275, 34.53404573316049], [-77.3454432702365, 34.53399615539287], [-77.34542495114967, 34.53395865003248], [-77.34547791285644, 34.53391587723242], [-77.34551996978934, 34.53388070732927], [-77.34556921872489, 34.533769657720086], [-77.34563837433359, 34.53368995245121], [-77.3456450436788, 34.533647008319434], [-77.34564417758509, 34.53360278264964], [-77.3456699619642, 34.53339860278692], [-77.34569817238204, 34.5332222768074], [-77.34569600891828, 34.533150034823606], [-77.34568143686863, 34.533091890835905], [-77.34569549648359, 34.53290528863116], [-77.34567166565495, 34.53285793589108], [-77.345590435736, 34.532849577514384], [-77.34550307853557, 34.53274415608119], [-77.34539744289827, 34.53270749467377], [-77.34539466775587, 34.53270551564081], [-77.34539037083546, 34.532704374661364], [-77.34533564258302, 34.53268984244695], [-77.34531562615412, 34.53268452739426], [-77.34529993406085, 34.53268036060189], [-77.34527661743691, 34.532674169226134], [-77.34528337633168, 34.53265856541623], [-77.34528533673013, 34.532648724141225], [-77.34528285225291, 34.53264333959054], [-77.3452869490791, 34.532636182845906], [-77.34528625832819, 34.53263364821915], [-77.34528334020021, 34.532627968140396], [-77.34528258781532, 34.53262439871834], [-77.34528069418911, 34.532615415076975], [-77.34527910509853, 34.53261327630026], [-77.34527907279343, 34.532611974247544], [-77.34526887507519, 34.53259944707961], [-77.34526450495136, 34.532576485136886], [-77.34526704045368, 34.53256074198686], [-77.34524911392106, 34.532541085592314], [-77.34524568082826, 34.53250522341374], [-77.34528468307722, 34.532474762486835], [-77.34532151253161, 34.53239884918107], [-77.34526903361854, 34.53226819852221], [-77.34525821305223, 34.53223375147951], [-77.34521291060271, 34.532198623715175], [-77.34500391345968, 34.53215647802287], [-77.34505714969264, 34.532017862959215], [-77.34494747146123, 34.531957840086605], [-77.34491115125431, 34.53191646099609], [-77.34482925066315, 34.53181385933787], [-77.34482520017181, 34.53180901460809], [-77.34482372054431, 34.531806631553835], [-77.3448208399556, 34.53180162432143], [-77.34477045243145, 34.53160909464092], [-77.34476046022452, 34.53157091425499], [-77.34475078732314, 34.53151912850063], [-77.34476329669721, 34.5313731623671], [-77.3447622642013, 34.53132583500826], [-77.34471961761484, 34.53125556082365], [-77.3446581334506, 34.53109599822002], [-77.3445740014266, 34.531033707252384], [-77.3444572054062, 34.53092589007128], [-77.34443348105296, 34.53089869205685], [-77.344414883732, 34.5308861797515], [-77.34432586687876, 34.53073877650164], [-77.34419989661448, 34.530672293811804], [-77.34427140336709, 34.53054057545134], [-77.34427081118808, 34.53053909123621], [-77.34426994118121, 34.530535844021145], [-77.34424069495033, 34.53044120707871], [-77.34423938409799, 34.530421792746786], [-77.34422973952269, 34.53039609530066], [-77.34427389649763, 34.53036444646534], [-77.34430696800545, 34.53030949432103], [-77.34430281485638, 34.53029025614316], [-77.34430268277376, 34.53027362825525], [-77.34427723671072, 34.530219703609745], [-77.34426279356063, 34.53018313939111], [-77.34425713711323, 34.53017441879585], [-77.34423833724252, 34.53008097246393], [-77.34421890999835, 34.53005750937615], [-77.34421897281183, 34.53001826161156], [-77.34422360915309, 34.52993442335428], [-77.34418400621233, 34.52988073869594], [-77.34409075099502, 34.529796038030646], [-77.3440393898749, 34.52974882424867], [-77.34397598683039, 34.52972523317448], [-77.34384672621994, 34.52965326689446], [-77.34381232706617, 34.52962637159608], [-77.34370409244109, 34.52954189027742], [-77.34369033955609, 34.52953025905582], [-77.34368132115273, 34.52952281144838], [-77.3436603128179, 34.52949789513009], [-77.34356086165069, 34.52938688959195], [-77.34351254229267, 34.52933778983016], [-77.34349302290462, 34.52931755060615], [-77.34348260260197, 34.52930658408654], [-77.34342480480612, 34.529248498565025], [-77.34338660675814, 34.52919798637705], [-77.34332130223831, 34.52912029957875], [-77.34330396446026, 34.52909859364054], [-77.34329542735776, 34.52908869566146], [-77.34327829317475, 34.52906351812377], [-77.34324713913992, 34.529020921012275], [-77.34321816395747, 34.52897740263837], [-77.34319209439927, 34.52894190101469], [-77.34313075543787, 34.528872830330364], [-77.34312817457582, 34.528869596921155], [-77.34312661267128, 34.5288681653686], [-77.3431240841645, 34.52886424457482], [-77.34307544595096, 34.52878882449361], [-77.34304395300319, 34.528757648669384], [-77.34293916814714, 34.528670466125824], [-77.34292235248076, 34.528663325650435], [-77.34290339913481, 34.52865546161742], [-77.34271233054282, 34.52858090395147], [-77.342548533014, 34.528588849898654], [-77.34243330704696, 34.52855069446863], [-77.34235354253661, 34.52853389319167], [-77.34231366767239, 34.528520552590855], [-77.34229605968761, 34.52849802329189], [-77.34229156589439, 34.528476941206655], [-77.34225691435105, 34.52846888682758], [-77.34222821244771, 34.52846454412932], [-77.34215935779447, 34.52844407082135], [-77.34207347555034, 34.52840763724062], [-77.34202771797325, 34.52837491277237], [-77.34190675683695, 34.528309213459714], [-77.34187429704139, 34.52824966202212], [-77.34177306898572, 34.528174435338265], [-77.34171232175545, 34.52813088429994], [-77.34165757462489, 34.52810024403329], [-77.34160296045079, 34.52799948063493], [-77.3415908471349, 34.52798146094654], [-77.34148524155262, 34.52788021827142], [-77.34138966130271, 34.52778024883468], [-77.34130823274494, 34.52771262813089], [-77.34120601544525, 34.52767557039523], [-77.34104795787563, 34.52748086689918], [-77.34102190292442, 34.527457238945075], [-77.34101591918078, 34.52745113517845], [-77.34100508873509, 34.52743660931659], [-77.34090771964779, 34.527291667751435], [-77.34086525704032, 34.52723495577911], [-77.34081477465894, 34.52717953613694], [-77.34075682814105, 34.527164504302306], [-77.34072733206781, 34.52707636100244], [-77.34068289343747, 34.52701637220456], [-77.34062534445154, 34.52688428830926], [-77.34057405840761, 34.52682012432016], [-77.34051303357558, 34.52679598967883], [-77.34048580161902, 34.52671036280354], [-77.34033497681415, 34.526518354340254], [-77.34009693473874, 34.526366211477864], [-77.34004826690672, 34.52625262314017], [-77.33993237314097, 34.52544729590927], [-77.33992559552455, 34.52541158686921], [-77.33990964405825, 34.52539216962168], [-77.33987633197529, 34.525327421984066], [-77.3395837278247, 34.52515610817727], [-77.33959884288281, 34.524968955364976], [-77.33952802541143, 34.524753612373644], [-77.33952429868026, 34.52471840543567], [-77.3395730514323, 34.52448302923162], [-77.33955417725211, 34.5242695402894], [-77.33955474928602, 34.52421269324014], [-77.33941230948679, 34.52420046291972], [-77.3392166567052, 34.52446851804862], [-77.33918171354422, 34.5245393241123], [-77.3392657009819, 34.5246258835118], [-77.33943607344571, 34.52478516265375], [-77.33931763871612, 34.52500940724377], [-77.33932807736525, 34.525153061587936], [-77.33930254753844, 34.52536886723365], [-77.33957832150438, 34.52546154329564], [-77.33963576804283, 34.525599401446016], [-77.3393610034922, 34.526162704749964], [-77.339478036147, 34.52645524082959], [-77.33951465927241, 34.52665638219599], [-77.33972556933632, 34.52690927072578], [-77.33983350297137, 34.52717896365078], [-77.33989632323214, 34.527332940273155], [-77.3398774263197, 34.527377062392496], [-77.3398715232475, 34.52740488488002], [-77.34000422891145, 34.52773396614748], [-77.34009377795064, 34.52783557589215], [-77.34020878488649, 34.52792408400379], [-77.34029512936141, 34.527996529717555], [-77.34033676268137, 34.52804543960606], [-77.34050461491088, 34.528079358823106], [-77.34059692263341, 34.5281135019967], [-77.34061309214425, 34.528128096966164], [-77.34065823548507, 34.52820445860961], [-77.34069033274753, 34.528239394447276], [-77.34068926303047, 34.52829982911243], [-77.34066221594308, 34.528442784931656], [-77.34069294549631, 34.52848383696721], [-77.34077859943798, 34.52859606055185], [-77.34092505325341, 34.5286952640674], [-77.34107833533899, 34.52885194051592], [-77.34135904643617, 34.52910485625024], [-77.34136763088921, 34.529115721072436], [-77.34137310528676, 34.529120444312376], [-77.34144684185819, 34.52916546833908], [-77.34170592536346, 34.52934242609145], [-77.3417450742697, 34.529385926265284], [-77.34190168525889, 34.52953403726703], [-77.34203876247224, 34.52957326104726], [-77.342131159653, 34.52966461560025], [-77.34219801566339, 34.529694100467445], [-77.34222486451023, 34.52973236080557], [-77.34232251667035, 34.52984123561528], [-77.34251811588652, 34.52990571204437], [-77.34255450446689, 34.52990703941786], [-77.3425550830955, 34.529929670897495], [-77.34266068673438, 34.53006803617356], [-77.34290190499301, 34.53028404723322], [-77.34293882510708, 34.53034026183579], [-77.34296638807949, 34.53036013295188], [-77.34299051622071, 34.53041379685651], [-77.34317251871212, 34.530646118030205], [-77.34324732636708, 34.53080935098386], [-77.34326046246643, 34.530820917085784], [-77.34328143917931, 34.53084681968862], [-77.34339781804819, 34.53095832721715], [-77.34343368968098, 34.531027356566], [-77.34351214891555, 34.53116453499563], [-77.34357882035107, 34.53125129464978], [-77.34360979535356, 34.531280617463565], [-77.34366237671563, 34.531349025184866], [-77.34372898475448, 34.531431774162435], [-77.34374766621946, 34.531471820508884], [-77.34378546921675, 34.53150970611545], [-77.3438247192829, 34.53156509633404], [-77.34383869031232, 34.53158113360046], [-77.34384164117218, 34.531587874522494], [-77.34385293740755, 34.5315962209173], [-77.34393797962335, 34.53168925735993], [-77.34397031540266, 34.53173185464874], [-77.34401401450832, 34.53178144571569], [-77.34402983618837, 34.531798450578904], [-77.34403344132386, 34.531804761278536], [-77.34404404380234, 34.53181982130315], [-77.34406087198127, 34.53185518992654], [-77.34407929296891, 34.53189073902635], [-77.34408770587504, 34.53191253382923], [-77.34414106152833, 34.53196467285845], [-77.34415570414839, 34.53197461937691], [-77.34422142158392, 34.53201570411599], [-77.3442258251011, 34.53202120683305], [-77.34423552143075, 34.53202737943044], [-77.34433736130839, 34.53212143192276], [-77.34436824949881, 34.53215478300674], [-77.34442732213738, 34.53222097729952], [-77.3444365572082, 34.532229568913465], [-77.3444384909545, 34.53223647960505], [-77.34447375207266, 34.53228542199617], [-77.34446050740634, 34.5323263194441], [-77.34449515401167, 34.53234354745696], [-77.34446324992601, 34.53237272948415], [-77.34442324704045, 34.53239758557175], [-77.34426222995953, 34.53247635188627], [-77.34422478959343, 34.53249243279127], [-77.34421096541834, 34.53249831024435], [-77.34418874248534, 34.532531958142556], [-77.34410224502216, 34.53264490026547], [-77.34422022900478, 34.532690061754906], [-77.34429211186772, 34.53269508695888], [-77.34437046129294, 34.53272871819599], [-77.34439506487368, 34.53273785800555], [-77.34441521542439, 34.53274566373629], [-77.34452794952796, 34.53275798022756], [-77.3445876092473, 34.532819883619034], [-77.34459756997134, 34.53282597330083], [-77.34460910583925, 34.53284878005431], [-77.34461818367498, 34.53287668929699], [-77.34460808040606, 34.53289322540343], [-77.34457971482958, 34.5329262129199], [-77.3445595532814, 34.53294633025989], [-77.34452707426915, 34.53299998911434], [-77.34449819037926, 34.53307756925999], [-77.34449316405045, 34.53313247391801], [-77.34440463934942, 34.53320401621495], [-77.34423810419813, 34.533256704867085], [-77.34414763199668, 34.53328710285463], [-77.34400979041192, 34.53330400938942], [-77.34389631532096, 34.53333871542545], [-77.34380623201433, 34.53354542804931], [-77.34368645987826, 34.533684000685454], [-77.34368321420976, 34.53373176697479], [-77.34366753000215, 34.53413306834495], [-77.34369974041287, 34.53417172866614], [-77.34386071290106, 34.534228240673386], [-77.34398416592327, 34.53425321589211], [-77.34388149489155, 34.53432508042924], [-77.34390305635932, 34.53438729542174], [-77.3438868230584, 34.53444982963312], [-77.34382734572145, 34.534547115584395], [-77.34381553918297, 34.53464470664772], [-77.34378108901717, 34.53470908321462], [-77.34375767721068, 34.534761596089474], [-77.34375051058299, 34.53477647243157], [-77.34373698363481, 34.53480455137032], [-77.34370110181005, 34.53490599071799], [-77.34357621409373, 34.535081679201795], [-77.34346751131349, 34.53511713419961], [-77.34339082060097, 34.53519545150178], [-77.34317637347937, 34.53539744522156], [-77.34313961660867, 34.53545430690946], [-77.3430968946773, 34.53548255831176], [-77.34277699603683, 34.53569302160185], [-77.34267857028314, 34.535726661343226], [-77.34249664176728, 34.53581373366457], [-77.34226249931994, 34.536020910029414], [-77.34221678966749, 34.536098813454544], [-77.34197906331535, 34.53624821300929], [-77.34177940847724, 34.53628253297637], [-77.34175349283956, 34.536410282015055], [-77.34173794179193, 34.53651074476386], [-77.34157666085707, 34.53667434050712], [-77.34157424660155, 34.53667945467494], [-77.34157193057491, 34.53668121979594], [-77.34156423121493, 34.536689855509124], [-77.34126658664358, 34.536969963323564], [-77.34121951362025, 34.537003564085204], [-77.34117469544611, 34.53708138071299], [-77.34100729624637, 34.53725208111752], [-77.34104149837839, 34.53732669300947], [-77.34102493811537, 34.537405640342044], [-77.34100662601094, 34.537496996132056], [-77.34101748284061, 34.53758620266932], [-77.34104203613505, 34.53766236268643], [-77.34102092361388, 34.537739757878256], [-77.34099948621268, 34.53784115843261], [-77.34103268159963, 34.537906207682674], [-77.34099824842683, 34.53798783802825], [-77.34093646617839, 34.53813017762584], [-77.3409008985707, 34.538246660124855], [-77.34088955501207, 34.538333330501246], [-77.34084880828098, 34.53849897114092], [-77.34081408395073, 34.538705448526734], [-77.34082436372785, 34.53874730633543], [-77.34084877583302, 34.53881027710328], [-77.34090597475961, 34.538980384791564], [-77.3409270830474, 34.539102634585305], [-77.34112267665132, 34.539332213657154], [-77.34126565235675, 34.53901321239091], [-77.34152310502716, 34.538992146060934], [-77.34159315196916, 34.53888153462011], [-77.34177332427612, 34.53876354863406], [-77.34181003368431, 34.538727925991395], [-77.34186360645262, 34.538683298592204], [-77.34192401504869, 34.538631087196045], [-77.34195566573237, 34.53860391359933], [-77.34196038574777, 34.538583887577516], [-77.34195605771521, 34.538565472547894], [-77.3419867719261, 34.5384576823919], [-77.34201092410575, 34.53838241563078], [-77.34202420816185, 34.53832988753156], [-77.3420515411442, 34.53825188839062], [-77.3420670973172, 34.53820130821247], [-77.34207912893456, 34.53816722005785], [-77.34212099288679, 34.53807114551741], [-77.34212381863453, 34.538064776179354], [-77.34213455782294, 34.53801378556099], [-77.34214840448446, 34.53795254586251], [-77.3421654783086, 34.537942336479], [-77.34233442004708, 34.537858783323045], [-77.34238434765015, 34.537819004416455], [-77.34243646043036, 34.53778094341709], [-77.34253414720256, 34.537709597078106], [-77.34261934218198, 34.53768500109077], [-77.34273283443065, 34.537605413226075], [-77.3428097375892, 34.53752928740278], [-77.34285803584814, 34.537475474963486], [-77.34299372338327, 34.5373704536685], [-77.34303351095895, 34.53732782055137], [-77.34313427717737, 34.53722076708998], [-77.34315499708347, 34.53720056408282], [-77.34317003526331, 34.53718576954191], [-77.34326699330754, 34.53709092161891], [-77.34331524322579, 34.537042469003595], [-77.3433216003168, 34.53703326895423], [-77.34333515582293, 34.537021571296286], [-77.34345203035478, 34.536900379720514], [-77.34347395144586, 34.536859036147455], [-77.34353631294175, 34.536810270071165]], [[-77.27117693040852, 34.57318195710064], [-77.27111511821658, 34.57323053098409], [-77.27110482102574, 34.57325150675198], [-77.27109829563936, 34.573276320561675], [-77.27104633562067, 34.57328951162199], [-77.27098689206785, 34.57334154190156], [-77.27091381800038, 34.57339780674819], [-77.27090006602285, 34.57347107814301], [-77.27079842216119, 34.57350252197997], [-77.27069618355824, 34.57356525150089], [-77.2706874670733, 34.57357219930235], [-77.27061256159624, 34.57366582296121], [-77.27058800418965, 34.573682213886954], [-77.27049472541503, 34.573725324018234], [-77.27046325443189, 34.5737503262094], [-77.27042923686335, 34.57378756643109], [-77.27039714962123, 34.573802843341255], [-77.27034851718956, 34.57383924101574], [-77.27034769237608, 34.57384007277504], [-77.2703474045053, 34.573840751750765], [-77.2703459043219, 34.57384123732388], [-77.27029694601092, 34.57387802573111], [-77.27027645769076, 34.57389338952556], [-77.2702342799187, 34.57398659160496], [-77.27019642337372, 34.5740049312499], [-77.2701048380096, 34.574035771580824], [-77.27000573901014, 34.574097218401356], [-77.26999668393097, 34.574103883609325], [-77.26999257033145, 34.57410673900214], [-77.26998852558228, 34.57411189610386], [-77.26995679853917, 34.57416284356472], [-77.26995752968058, 34.57419254711168], [-77.26997860521172, 34.57420746898526], [-77.27002554781119, 34.574227165039304], [-77.27008731032953, 34.5742585991728], [-77.27006882441393, 34.574348400773765], [-77.27000115418781, 34.5743827336158], [-77.27008066491629, 34.57436572300275], [-77.27010252153336, 34.57435104984959], [-77.27016993986945, 34.57425796606442], [-77.270394772045, 34.574161271077294], [-77.27041601899681, 34.57414821791295], [-77.27042223519221, 34.57414051644154], [-77.27044400480094, 34.574124963816764], [-77.27051002868737, 34.57402958453782], [-77.27056416621727, 34.57395137633466], [-77.27067892791123, 34.57392502834086], [-77.27073925236365, 34.57389675431719], [-77.2707970626445, 34.57382990503911], [-77.27084479389518, 34.57379109352097], [-77.2708024517875, 34.573699071494445], [-77.2709305114077, 34.57361999261159], [-77.27104147876055, 34.57353369068259], [-77.2710863105983, 34.57348571843645], [-77.27112102345515, 34.57346082849481], [-77.27119871413896, 34.5734048601319], [-77.27122736034504, 34.573378972537554], [-77.27131208401396, 34.57330215254566], [-77.27137957118691, 34.57327310377724], [-77.27152713804796, 34.57317208159785], [-77.27153118784403, 34.5731684165141], [-77.27153171886506, 34.57316722997815], [-77.27153392383904, 34.57316547642279], [-77.27163905239917, 34.573057833435335], [-77.27169429798039, 34.57298488434498], [-77.27172629034804, 34.57294685728792], [-77.27170840650176, 34.57291638969055], [-77.27165489015479, 34.57291945143141], [-77.2716061994023, 34.57290653644184], [-77.27156199601524, 34.572894811704145], [-77.2714841312127, 34.57292782273164], [-77.27145805507455, 34.572939082998495], [-77.2714152950017, 34.57297657493634], [-77.27141035023033, 34.57298093986063], [-77.27136473443518, 34.57302038561753], [-77.27134789510795, 34.57303494719877], [-77.27131250780828, 34.573064719662526], [-77.27127140910156, 34.573146768296084]], [[-77.37726686963073, 34.69409274649512], [-77.37729844460016, 34.694303360490515], [-77.37805466768508, 34.69398441483823], [-77.37742776711681, 34.69385746818891]], [[-77.33913838522045, 34.523293638382825], [-77.33927461402077, 34.5231398030845], [-77.33938516494871, 34.522893001314394], [-77.33936611688966, 34.52255425194078], [-77.33920090617198, 34.52211029904882], [-77.33920610099892, 34.52206315828478], [-77.33912630417322, 34.52207397301861], [-77.33914293286863, 34.52209672209023], [-77.3390855767972, 34.52215435733534], [-77.3388970238519, 34.52245913711037], [-77.33876532407147, 34.52245397544716], [-77.33866353342944, 34.522655320151365], [-77.33871112071068, 34.52286542367761], [-77.33871755332741, 34.52291550108842], [-77.33901515648401, 34.52309437494377], [-77.33901628640366, 34.52317212463239]], [[-77.35477544089623, 34.553142757964636], [-77.3547592275947, 34.55303182118489], [-77.35471384041867, 34.552906802715306], [-77.35494659879906, 34.5527826968706], [-77.3550547240104, 34.55267884626969], [-77.35508516829465, 34.552608528193275], [-77.35523615807287, 34.55251874891454], [-77.35534691897914, 34.552447399656856], [-77.35545300090276, 34.55237587988155], [-77.3556361400991, 34.552284391722516], [-77.35570283045428, 34.55224906059229], [-77.35574480941627, 34.55221792457134], [-77.35593568674506, 34.552113982634864], [-77.35610819515686, 34.551971613203285], [-77.35612626317901, 34.551958333947226], [-77.35614371980634, 34.551943860898774], [-77.35623226696003, 34.55189917671123], [-77.35638833389697, 34.55183747032918], [-77.35653921302324, 34.55181876778988], [-77.35683339325202, 34.551685676092845], [-77.35693584405885, 34.55164396703233], [-77.35696637340922, 34.551621966284515], [-77.35698221344502, 34.551600963470115], [-77.35703307831344, 34.551534572470075], [-77.35719273007142, 34.55132583246265], [-77.35726933629488, 34.55127262603113], [-77.35733817039662, 34.551220509865445], [-77.35745249395234, 34.551113367806266], [-77.35756786852892, 34.551027000026146], [-77.35765936243797, 34.5509656458844], [-77.35773807535705, 34.55090258158198], [-77.35785707640038, 34.550813469988775], [-77.35804834991586, 34.550712999236005], [-77.3580823916345, 34.55067472314109], [-77.35813714542905, 34.550620973623275], [-77.35827974779802, 34.550591186490266], [-77.3583652536153, 34.55056397464921], [-77.35853299959302, 34.55047969485689], [-77.35861391402813, 34.55043658566327], [-77.35862945694728, 34.550384507781715], [-77.35880521793992, 34.55028129123941], [-77.35883945365438, 34.55023185989663], [-77.3588695496327, 34.55018840583315], [-77.35893357879326, 34.550131954123486], [-77.35895476612308, 34.55010568147917], [-77.35898305678434, 34.55008877127402], [-77.35913324248212, 34.549985372660245], [-77.35923233345892, 34.549992356560395], [-77.35933044349122, 34.54994635696134], [-77.35939885829438, 34.54982500654801], [-77.35942900008543, 34.5497797367573], [-77.3595638014478, 34.549656887142504], [-77.35971312929414, 34.54950646969167], [-77.35972741744078, 34.54949194329005], [-77.35972947516704, 34.54948912329975], [-77.35973360128192, 34.549485671847584], [-77.35980184040912, 34.54943933579775], [-77.35983558166771, 34.54941656264269], [-77.35983543830666, 34.54941390989405], [-77.35983789620809, 34.549353623038], [-77.35984793229706, 34.549298387550174], [-77.35984200897472, 34.54929182481645], [-77.35984274602909, 34.549287689696676], [-77.35985006735969, 34.54922945844512], [-77.35986820928866, 34.549184068837704], [-77.3598770833518, 34.54916436227177], [-77.35990321547646, 34.549121238036285], [-77.3599175249245, 34.54909733287603], [-77.35991817853095, 34.54908419617587], [-77.35993973303589, 34.54905627809684], [-77.36000085724454, 34.54902412736132], [-77.3600243796418, 34.549011681731685], [-77.3600791794577, 34.54895164319112], [-77.36010393712671, 34.54892620453107], [-77.36010305618997, 34.54884931297023], [-77.36009090915864, 34.54882754210287], [-77.36010490187572, 34.548802490117865], [-77.36014300373071, 34.548751848992474], [-77.36017306072434, 34.54871146728111], [-77.36017601536307, 34.54869287496842], [-77.3601750873812, 34.54867411089651], [-77.36017300984756, 34.54863210173856], [-77.36017221071205, 34.54861594281502], [-77.36017902409858, 34.54859018489683], [-77.3601820634807, 34.54856959200577], [-77.36017767526063, 34.548551462222946], [-77.36016000445517, 34.54854216544818], [-77.36015722445774, 34.54851748693955], [-77.36015448900645, 34.54851235664713], [-77.36015379365665, 34.54850919033575], [-77.36014898011308, 34.54849063012021], [-77.36013874976626, 34.54846023020946], [-77.36013784607557, 34.548453547161934], [-77.36013733198223, 34.54844571683603], [-77.36013144174007, 34.54834507063034], [-77.36012787261691, 34.548332571256694], [-77.36011421360354, 34.54831028530995], [-77.36009481440223, 34.54825209949976], [-77.36007380601251, 34.5482179446448], [-77.36005313333317, 34.54816295303675], [-77.3600520360325, 34.548159873484], [-77.36005309470126, 34.54815636539388], [-77.36005499053309, 34.54810120249947], [-77.36005460542592, 34.54809829747412], [-77.36005336322513, 34.54809440410328], [-77.36004243629787, 34.5480805308504], [-77.36003561681483, 34.5480829902141], [-77.36001549205801, 34.54807332669272], [-77.3600201852033, 34.54806719764778], [-77.36001938139617, 34.54804682494827], [-77.36001986024093, 34.54804209467333], [-77.36002791586026, 34.54801993124717], [-77.36004147757944, 34.54800837881558], [-77.36003232327083, 34.54799766670236], [-77.36001942924159, 34.5479809507047], [-77.36000899857117, 34.5479549734793], [-77.36000469288089, 34.54788444862107], [-77.3599946935575, 34.54786210052849], [-77.35998901417884, 34.547849407376205], [-77.3599684017978, 34.54780333931184], [-77.35993420320212, 34.547748398934864], [-77.35994452001438, 34.547730988614745], [-77.35993430214432, 34.54764943284208], [-77.35991377988884, 34.54762892779034], [-77.35991914610165, 34.5475944593084], [-77.3599122068247, 34.54750674227415], [-77.35992646649753, 34.54747383696167], [-77.3599170229787, 34.54742112968616], [-77.35990838666875, 34.54738488036228], [-77.35989591025744, 34.54733478623499], [-77.3598949721863, 34.54731712762284], [-77.35987546320948, 34.547267209188725], [-77.35987840639434, 34.54720897459728], [-77.35987850833013, 34.54720556472503], [-77.3598771404788, 34.54720146999088], [-77.3598610982128, 34.547146865684134], [-77.35985531438416, 34.547105760564236], [-77.35985649904052, 34.54708632196983], [-77.35985507255288, 34.54706654901272], [-77.359852505478, 34.547025690991845], [-77.35985109648703, 34.546988262813414], [-77.35984537181119, 34.54696551223433], [-77.3598463511718, 34.54693812161671], [-77.35984241906506, 34.54690473138834], [-77.35984318585432, 34.54687355971305], [-77.3598439173444, 34.54684330964864], [-77.35984094960872, 34.546811309425465], [-77.3598366909923, 34.54678314419548], [-77.35983746389748, 34.546757200258845], [-77.35983878583895, 34.54672163654777], [-77.3598321668221, 34.54668285211355], [-77.35982733917913, 34.54666207881602], [-77.35983097695761, 34.54655808903542], [-77.35982976654212, 34.54653931725728], [-77.35983188661778, 34.54652004152659], [-77.35983003086729, 34.546416867171274], [-77.35984471572863, 34.54631640523939], [-77.35984617655868, 34.54629213018842], [-77.3598469794054, 34.54626723979709], [-77.359838445236, 34.54617083146252], [-77.35984416675996, 34.54606776983543], [-77.35986243611815, 34.54604496472844], [-77.35987951937639, 34.546001233976824], [-77.35990061883388, 34.545917054457526], [-77.35990553654187, 34.54584926071878], [-77.35991962041973, 34.54579190611469], [-77.35993556728488, 34.5457174371557], [-77.3599417243538, 34.545666311200655], [-77.35994881542211, 34.54562194967843], [-77.35993548676326, 34.545544797269265], [-77.35992029693885, 34.5454876141676], [-77.35991625420606, 34.54542515480422], [-77.35991911415722, 34.54535913031942], [-77.3599140873146, 34.54530305479231], [-77.35991124066922, 34.54525308849487], [-77.35990760817106, 34.54524278180075], [-77.35991278939312, 34.54523186890993], [-77.3599274354818, 34.54517872060759], [-77.35992763650039, 34.54511490855863], [-77.35993292785867, 34.545055517654994], [-77.3599450036152, 34.54499917445164], [-77.35994518200098, 34.54498602180079], [-77.35994592512046, 34.54493123399158], [-77.35994717253267, 34.54487604558862], [-77.35994691201071, 34.54486402269908], [-77.35994881969324, 34.54480840511844], [-77.35995012002176, 34.54475329553717], [-77.35995011706642, 34.54474090726576], [-77.35994956916753, 34.544685885139955], [-77.35995016298308, 34.54462913227591], [-77.35995106394547, 34.54461950085114], [-77.3599618751701, 34.54456170100697], [-77.35996182602058, 34.544510622799486], [-77.35996104949528, 34.544491253838494], [-77.35996458598618, 34.544438898588794], [-77.3599528172676, 34.544382055379124], [-77.35995228406206, 34.54437719785625], [-77.35995295024156, 34.54431816209559], [-77.35994944319646, 34.544258658079876], [-77.35994951837311, 34.54425745030292], [-77.3599496203777, 34.5442563157279], [-77.35993803478391, 34.54419789792567], [-77.35993444631322, 34.54418684058656], [-77.35995406420136, 34.54414059597023], [-77.3599562415288, 34.54413535309715], [-77.3599571878193, 34.54413210703331], [-77.35998274478607, 34.54406904751124], [-77.3599860031098, 34.544025649602645], [-77.35998640615887, 34.54398930424958], [-77.35999151888554, 34.54394537195968], [-77.35999216793422, 34.54390446496347], [-77.35999277793532, 34.54386379215315], [-77.35999233139364, 34.54382284289128], [-77.35998610619744, 34.54377733138952], [-77.3599825006615, 34.54375088040633], [-77.35999030005866, 34.54370072337286], [-77.35998705939714, 34.5436870853715], [-77.35998713181363, 34.54367057659774], [-77.35996533317062, 34.54364813858591], [-77.35995787617392, 34.54364882696842], [-77.35989935969086, 34.54367303193379], [-77.35986624960015, 34.54368908577955], [-77.3598335496085, 34.54370310346838], [-77.35978912707614, 34.54372969260534], [-77.35973441020904, 34.543779050430146], [-77.35970888560472, 34.543837267630074], [-77.35970160223029, 34.543864708279784], [-77.35969246511773, 34.54388282597078], [-77.35969931143072, 34.543965203027426], [-77.35970002328929, 34.543987347667496], [-77.35970401816125, 34.544012631636114], [-77.35971247620031, 34.54407592926097], [-77.35972444987543, 34.54410624226457], [-77.3597148085309, 34.54414206618975], [-77.35971021438861, 34.54419833056364], [-77.35970755093797, 34.544231087727454], [-77.3596981873327, 34.54425816338154], [-77.35969631163013, 34.544293912191826], [-77.35969991342537, 34.54432109543551], [-77.35969941168734, 34.544327195737424], [-77.35969712476, 34.54435500111027], [-77.35969518255459, 34.54438088576899], [-77.35969068134699, 34.54445449246142], [-77.3596842960123, 34.544479260456946], [-77.3596814725705, 34.54449839946895], [-77.35968312231321, 34.544520557996705], [-77.35968460127197, 34.544540422506955], [-77.35968626923369, 34.54456282551306], [-77.3596873754711, 34.544577683929795], [-77.35968523763398, 34.5446015368784], [-77.35968745910216, 34.544625496627944], [-77.35968681918492, 34.544662515143614], [-77.35968599603402, 34.544699417410584], [-77.35968635503541, 34.54472378798748], [-77.3596821387779, 34.54474709237838], [-77.35968064753175, 34.54476380998675], [-77.35967849946789, 34.544786125186306], [-77.35967481754889, 34.54482856690866], [-77.35967164178481, 34.54484831868953], [-77.35967324633944, 34.544866950075125], [-77.35964132193723, 34.54494023332655], [-77.35962315430974, 34.54496676192529], [-77.35952383526174, 34.5450635204457], [-77.35946363742651, 34.545123094769735], [-77.35947490478524, 34.54514299923848], [-77.35949188126878, 34.545329082041725], [-77.35951650685267, 34.545360305696576], [-77.35948813282491, 34.54539780438263], [-77.35943326910262, 34.54545387798812], [-77.3590489083099, 34.54566432204655], [-77.35903568253703, 34.54567192382676], [-77.358658663281, 34.54548382907484], [-77.3586579117929, 34.54547746896428], [-77.35864788858697, 34.54546221584714], [-77.35863804330863, 34.545480925733685], [-77.35863549302309, 34.54548716533782], [-77.35843958098073, 34.54563273173875], [-77.3584378674729, 34.545638032900314], [-77.35840645463306, 34.54566776767142], [-77.3583767234728, 34.54572633286475], [-77.35841453195194, 34.545763804714205], [-77.35840048492842, 34.54586207960636], [-77.35839324246786, 34.54591914282997], [-77.35849608250781, 34.54599688600813], [-77.3583685161983, 34.54609489544808], [-77.35835604331558, 34.54618867076775], [-77.35837040098593, 34.546259806195444], [-77.35843169812745, 34.54633088793619], [-77.35848907032737, 34.54632937566613], [-77.35862789388734, 34.54633541963651], [-77.35888026188464, 34.54627470652792], [-77.35902238897259, 34.546252596779595], [-77.35927414598547, 34.54628716480396], [-77.35941383754856, 34.546302836786964], [-77.35943887870648, 34.54633470906194], [-77.3594324620288, 34.54635170360798], [-77.35949099670951, 34.5463926734161], [-77.35957527773915, 34.54645355080497], [-77.35958429557459, 34.5464660376525], [-77.35959639152827, 34.54657292251414], [-77.35960309874089, 34.54661036374604], [-77.35961721417317, 34.546682504228514], [-77.35961977891483, 34.54669196682025], [-77.35961953677254, 34.5467035827674], [-77.3596256780213, 34.5467967884243], [-77.35962599521235, 34.546813483690286], [-77.35962438936116, 34.54683012805344], [-77.35962610622084, 34.54691715393903], [-77.35962788240236, 34.54693562393474], [-77.35962369873008, 34.546953976316914], [-77.35960561869999, 34.54705334823771], [-77.35960503143525, 34.547061326363114], [-77.35960275550252, 34.54706797085711], [-77.35961494350667, 34.54716698090306], [-77.35961176262717, 34.547182769089524], [-77.35961856428148, 34.54719984674851], [-77.35964440840198, 34.547265371848745], [-77.35965983051119, 34.54729825953365], [-77.35967660061561, 34.54735226797574], [-77.35967909936424, 34.547359807851805], [-77.35967481591108, 34.5474185137062], [-77.35968141039805, 34.5474772365856], [-77.359681570894, 34.54747862709419], [-77.35968164174442, 34.54747873681938], [-77.35968162486374, 34.547478896679564], [-77.35968466364794, 34.54753950763641], [-77.35965099830992, 34.547622453502484], [-77.35965524442841, 34.547666155855914], [-77.35965010403521, 34.54771192897658], [-77.35959384596919, 34.547797408759486], [-77.3596019719133, 34.54790093508464], [-77.35961150245177, 34.54794151637412], [-77.35957266396163, 34.547940200128195], [-77.35951111635093, 34.54796969269105], [-77.35937464041325, 34.54801536367288], [-77.35934028019003, 34.548057925447225], [-77.35931596858468, 34.5480822451179], [-77.35930139058192, 34.54812840821542], [-77.35926408758465, 34.54821212750086], [-77.35924011391823, 34.54825755973481], [-77.35922568867193, 34.548278862581405], [-77.35922932358235, 34.54830363591043], [-77.35926924622134, 34.54833177541329], [-77.35927911103603, 34.54832630280984], [-77.35927082535972, 34.54833356929374], [-77.35926905904668, 34.5483399527434], [-77.35925053861676, 34.54838681623687], [-77.35924387749992, 34.54839865549045], [-77.35924632246152, 34.54841146089518], [-77.35923437859955, 34.54846122920194], [-77.35923531539478, 34.54848013535752], [-77.3592359572023, 34.54849160488607], [-77.35924189679156, 34.54850532707032], [-77.35926544897265, 34.54849767056796], [-77.35927130104506, 34.548501817202954], [-77.35928224217923, 34.54850496718789], [-77.35928413770053, 34.54851182482393], [-77.35926567329739, 34.54851750603207], [-77.35926501874398, 34.54851646651886], [-77.35925225338616, 34.54851183502452], [-77.35926410575655, 34.54851815474792], [-77.35926404558307, 34.548518737837796], [-77.35926492045809, 34.54852076046155], [-77.35927101388549, 34.54854363675226], [-77.35927228487759, 34.54854758001282], [-77.35927556875113, 34.54857036208389], [-77.35928345389037, 34.54857657475737], [-77.35926851890483, 34.54863604183854], [-77.35926779958069, 34.54864003479838], [-77.35926860904543, 34.54864397709391], [-77.35925151275958, 34.54870358586646], [-77.35923083857958, 34.54874978491028], [-77.3592061334526, 34.5488039424159], [-77.35918913193197, 34.548834980011506], [-77.35915679033174, 34.54895665334754], [-77.35915464507244, 34.548961083174184], [-77.35915262577548, 34.548965124440095], [-77.3591559071672, 34.548995235443456], [-77.35915807187408, 34.549084276165985], [-77.35915700945239, 34.54908641804586], [-77.3591584082317, 34.54920212686891], [-77.35915846269633, 34.54920663180094], [-77.35915851958565, 34.549211337284], [-77.35915985401041, 34.54932172195757], [-77.35915993995921, 34.54932883099816], [-77.35915807974114, 34.54933530778769], [-77.35914579907241, 34.54945304740859], [-77.35914574204718, 34.54945328724439], [-77.35914562254558, 34.54945343148063], [-77.35914540849248, 34.549453883269116], [-77.35909387054618, 34.549552437040774], [-77.35897194194243, 34.54958461535239], [-77.35894625282984, 34.549578327247296], [-77.35877394327566, 34.54950682132505], [-77.35877640462537, 34.549491211550716], [-77.35873028384233, 34.54949972479715], [-77.35872456583493, 34.54953044078625], [-77.35884823112588, 34.54961853670564], [-77.35863679962677, 34.54970261112659], [-77.35854777894195, 34.54983423502945], [-77.35851047222667, 34.54988951831992], [-77.35834321013834, 34.54993607489408], [-77.35825833945027, 34.550015216761615], [-77.3581509424443, 34.55001853840337], [-77.35795697296018, 34.54999168505644], [-77.35800836389156, 34.54989359398241], [-77.35798205857384, 34.54985095418705], [-77.35795925810893, 34.54981666026325], [-77.35794661198378, 34.54986354918649], [-77.35776119585195, 34.54989325108235], [-77.35775516904779, 34.5498983286035], [-77.35770596772144, 34.54993919468547], [-77.3576745026999, 34.5499795274977], [-77.35759729249708, 34.550043470586566], [-77.35756095023146, 34.55006513027946], [-77.3575122829007, 34.55014897175429], [-77.35735890754566, 34.55031540837151], [-77.35735472737271, 34.5503206855904], [-77.35735112077991, 34.55032373605586], [-77.35732532615621, 34.55034792527799], [-77.35704989445185, 34.550611926913675], [-77.35700597375923, 34.550647744872556], [-77.3569581023947, 34.55067266803421], [-77.35680144777486, 34.55079660568043], [-77.35675798543116, 34.55083877936994], [-77.35662694274752, 34.55087640508489], [-77.35656024467208, 34.5509011854131], [-77.35652853697006, 34.55091219392203], [-77.3564269808474, 34.55094642867398], [-77.35636229544502, 34.55097267173633], [-77.35632508207037, 34.550984139194064], [-77.35626332179177, 34.55100836709767], [-77.3562501171605, 34.55102510156174], [-77.35621549774959, 34.551067062155354], [-77.35620784716527, 34.5511003871849], [-77.35616233869129, 34.55113170983226], [-77.35610996757931, 34.551205284814834], [-77.35608490264494, 34.551240497818256], [-77.35604630802038, 34.55129849791152], [-77.35596036148777, 34.55137883666781], [-77.35595890819407, 34.5513801601063], [-77.35576143381024, 34.551492919849906], [-77.35569841569337, 34.551501790233836], [-77.35556451438903, 34.55151940584369], [-77.35537203833893, 34.551584617844085], [-77.35536669127698, 34.55158528788152], [-77.35536164582491, 34.55158630695578], [-77.35535966584882, 34.551589723516315], [-77.35532143458026, 34.55162290893337], [-77.35519780837379, 34.551735434667286], [-77.35518233838768, 34.551747438084746], [-77.35506826146096, 34.55187649432318], [-77.35501994452339, 34.55191679876679], [-77.35496563124923, 34.55195301208896], [-77.35487035408278, 34.55202739442946], [-77.3548130313668, 34.55206449828051], [-77.3547652998517, 34.55212815886708], [-77.3546450885548, 34.55213468519055], [-77.3545682529507, 34.55216011670923], [-77.35451248986121, 34.5521666416531], [-77.35449527221351, 34.55220379768715], [-77.35445943427001, 34.55227516402731], [-77.35456337089718, 34.55237289711606], [-77.35463289931981, 34.55238527775615], [-77.35461647577833, 34.552431173263216], [-77.35461013010676, 34.55246252556208], [-77.35456037055994, 34.552503664558046], [-77.35451542401296, 34.55247416752037], [-77.35447527088775, 34.55245149907736], [-77.35428907686241, 34.55240406755345], [-77.35417027610428, 34.55239321406931], [-77.35413739246437, 34.55239815725808], [-77.35407126655505, 34.552430354589816], [-77.35402998785393, 34.552428625200115], [-77.35402359807361, 34.55245530886857], [-77.35399564406288, 34.55247400878576], [-77.35397211118807, 34.55247384443625], [-77.35392654831799, 34.552497352408444], [-77.35392137948256, 34.552499968198234], [-77.3538727997182, 34.55252413074866], [-77.35383753736485, 34.55254329609322], [-77.35379965148087, 34.552564927582104], [-77.35377315287134, 34.55258902281723], [-77.35370578488285, 34.55260405224047], [-77.35365653194765, 34.552619478455405], [-77.35357479656336, 34.55267795185011], [-77.35347813787286, 34.55265561800281], [-77.35347639128122, 34.55265601582558], [-77.35346880105294, 34.55265757681222], [-77.35337820489146, 34.552689998356826], [-77.35334841638604, 34.55271793549403], [-77.35322910620698, 34.552753282849764], [-77.35322089827241, 34.5527800773716], [-77.35315614078735, 34.552778572495], [-77.3529822970682, 34.552832727935716], [-77.35294060924917, 34.5528209695576], [-77.35284011553527, 34.55284317572266], [-77.35278540070045, 34.55285801922318], [-77.35273435082844, 34.552856349670726], [-77.35260370763092, 34.55285233382688], [-77.3525890940779, 34.5528576268584], [-77.35257223978553, 34.55284782659869], [-77.35243732855864, 34.552839721648354], [-77.35223615174554, 34.55279767693132], [-77.35219792018574, 34.55279418276058], [-77.35218479514863, 34.55278943154559], [-77.35217046544469, 34.55278324188686], [-77.3520030462963, 34.55273143203288], [-77.35194796022975, 34.55272726316421], [-77.3518123314304, 34.55271237511654], [-77.35180719539383, 34.55271121444804], [-77.35171137285315, 34.552664907193765], [-77.35161757830603, 34.55261799353448], [-77.35161307414799, 34.55261572973983], [-77.35153249483956, 34.5525588870241], [-77.35142021181174, 34.55246548475639], [-77.35137792960994, 34.552434471422345], [-77.351349748728, 34.552411718029006], [-77.35132459520072, 34.55235414406294], [-77.35132427926618, 34.55235396743266], [-77.35123417986142, 34.552305939848495], [-77.35123140018591, 34.55230397594989], [-77.35109978260523, 34.55220287119185], [-77.3510744016591, 34.552181401515085], [-77.35103577547787, 34.552109036317894], [-77.35097078235827, 34.55201843983576], [-77.35095781385952, 34.55197848149848], [-77.3508549410739, 34.551877205063064], [-77.35084791071021, 34.551870045030526], [-77.35080351584674, 34.55175586604861], [-77.35075785792331, 34.551696818961915], [-77.3507279407463, 34.55164433191714], [-77.35068577294517, 34.55154650453272], [-77.35067835771574, 34.55152905703556], [-77.35067670757397, 34.55151685754067], [-77.35065739392695, 34.551489378369524], [-77.35061951791154, 34.551415114292716], [-77.35059980704119, 34.551380481505376], [-77.35059254037284, 34.55133917887541], [-77.35058533771462, 34.55129762268078], [-77.35057624877143, 34.551244826592274], [-77.35055476217619, 34.55112640159919], [-77.35053865875935, 34.55105951923042], [-77.3505224358729, 34.55103017996751], [-77.35050797546349, 34.55100272970491], [-77.35050270670041, 34.55096065766605], [-77.35050044627607, 34.55094260795173], [-77.35048961349925, 34.550934333653984], [-77.35047397614773, 34.550928575036764], [-77.35043661240707, 34.55091409510372], [-77.3503855432844, 34.55089793871398], [-77.35038045000283, 34.550896248441624], [-77.3503766131712, 34.550894101086], [-77.35032723493131, 34.55084512471515], [-77.3503151271565, 34.55082499264313], [-77.35031402983226, 34.55081642245625], [-77.35028061170908, 34.55080042400643], [-77.35027311450814, 34.55079644005522], [-77.35026269619652, 34.55079320733728], [-77.35027111296279, 34.550785864309105], [-77.35027802880421, 34.55076255179808], [-77.35027783460447, 34.55076042610376], [-77.35026437789372, 34.550742710278456], [-77.35024930837895, 34.55073392871469], [-77.35024082909223, 34.550709031844605], [-77.35021151195109, 34.550662029466864], [-77.35016392991699, 34.55062380506562], [-77.35009225772357, 34.55051254223612], [-77.35009181872422, 34.55051123142127], [-77.35009095880672, 34.550510916254105], [-77.35002219553996, 34.55044322954752], [-77.34994965831008, 34.550409819905695], [-77.3499312345989, 34.55039137219221], [-77.34989848895943, 34.55034393842563], [-77.34986320834098, 34.55032216215339], [-77.34985827304462, 34.550300560586045], [-77.34987261147799, 34.55028146506582], [-77.34986636675879, 34.55019909281521], [-77.34986652505182, 34.550176962569914], [-77.3498555542078, 34.550148972776526], [-77.34984086279475, 34.55011945035184], [-77.34982873256396, 34.550106887824434], [-77.34980641347778, 34.55007963283764], [-77.34979670176803, 34.55007078302664], [-77.34979671882054, 34.55006459781962], [-77.3497914738658, 34.550055693519326], [-77.34977757454291, 34.55002491520056], [-77.34973757273022, 34.55001190419067], [-77.3497103462077, 34.549988885767654], [-77.34965848102667, 34.54999434357813], [-77.34961195496561, 34.54999917047988], [-77.34957943243236, 34.55001460343546], [-77.34954200620109, 34.55002213024765], [-77.34954546344242, 34.54999807300452], [-77.34956258366309, 34.549975881189724], [-77.34961339680198, 34.54993649405084], [-77.34965732154839, 34.549928314861575], [-77.34965045974695, 34.549902029962155], [-77.34966516342045, 34.549870035031056], [-77.34966460740189, 34.549869028894165], [-77.34964385835086, 34.54984177472135], [-77.34961629981065, 34.54981030074502], [-77.34960525700126, 34.54979325489461], [-77.34959523550512, 34.54978756668068], [-77.34956365685605, 34.549758542524785], [-77.34954798279077, 34.549733161440685], [-77.34954215621434, 34.54972031850659], [-77.34952032249446, 34.54971566625043], [-77.34945557936419, 34.54966514452893], [-77.34935637235783, 34.54963832492724], [-77.34934727822602, 34.54962640739539], [-77.34914642701698, 34.54954612661771], [-77.34913196975087, 34.54953033011636], [-77.34901589092425, 34.549394422862534], [-77.34890918680202, 34.5493354452843], [-77.34874695295737, 34.54920011956323], [-77.3486533866718, 34.54918598183652], [-77.34856972769975, 34.54913947302512], [-77.34835939114994, 34.54898059727672], [-77.34833193768347, 34.548946478911304], [-77.34831001180565, 34.548932025250956], [-77.34812263961884, 34.54880889231553], [-77.34800273503186, 34.54873142072352], [-77.34798975945671, 34.5487226600162], [-77.34797309654134, 34.548706123820246], [-77.34789779305801, 34.54855088653434], [-77.34787579608047, 34.548504866109894], [-77.34783324386466, 34.548358369155814], [-77.34775257444534, 34.54827777652974], [-77.34759474056611, 34.54808704127443], [-77.34758191113538, 34.54806581839898], [-77.34756074134016, 34.54806055971012], [-77.34755256219594, 34.54803468346867], [-77.3474068065548, 34.54783788889736], [-77.34733974739578, 34.54776633044137], [-77.34721255305827, 34.547634550507325], [-77.34720546053168, 34.54762657814238], [-77.34720091075025, 34.54762269557886], [-77.34707890236109, 34.54748097778969], [-77.3469444900715, 34.54741477133349], [-77.34685848439668, 34.54720011750018], [-77.34684187705619, 34.547177604340156], [-77.34672402660064, 34.54695685250108], [-77.34661650908814, 34.546865411102026], [-77.34657629813552, 34.5467332889727], [-77.3464514731973, 34.54658711831335], [-77.34639911981037, 34.54654718264141], [-77.34639132336933, 34.54651508409614], [-77.3463274727198, 34.54644490301007], [-77.34616111483395, 34.54624455234871], [-77.34606825149491, 34.54618007196381], [-77.34601174720342, 34.54611621177245], [-77.34597167567794, 34.54608582427688], [-77.34590768239947, 34.54599220316569], [-77.34589156833883, 34.54597494038765], [-77.34588687032189, 34.54596934173249], [-77.34577970705075, 34.545868624999315], [-77.34568537591886, 34.54575817412958], [-77.34561889881866, 34.54568938534419], [-77.3455838774017, 34.54565198102851], [-77.34554109409466, 34.54556539298998], [-77.34551032414622, 34.545530181801475], [-77.34549479688708, 34.54551004145426], [-77.34541737991525, 34.54543111670792], [-77.34537309608749, 34.545392657126676], [-77.34530335510554, 34.54529937510721], [-77.3452512869145, 34.54524346698304], [-77.34522507239971, 34.54521396553557], [-77.34517575387989, 34.545139187142766], [-77.3451347924118, 34.54509025605284], [-77.34503843932394, 34.544995997784966], [-77.34500288301243, 34.54494870790772], [-77.34492133091788, 34.544840906411466], [-77.34488815766323, 34.544794158855595], [-77.34487201809904, 34.544775122038736], [-77.34482913807528, 34.544722091723536], [-77.3447645624669, 34.54464632074723], [-77.34468543026176, 34.5445571473342], [-77.34463489165816, 34.54450307949513], [-77.34458457430858, 34.544449248063515], [-77.34453889706595, 34.54440038079432], [-77.34450287030408, 34.544361616932605], [-77.34448018494412, 34.54434185695709], [-77.34439768123201, 34.54426369903106], [-77.34436058108798, 34.54422792294076], [-77.34434691564994, 34.54421332195921], [-77.34429541658673, 34.54415655157197], [-77.34425701202798, 34.544129145440735], [-77.34421744470264, 34.5440948699982], [-77.34416233729385, 34.54402035654628], [-77.34415526279233, 34.54401206003367], [-77.3440899338181, 34.54394999541313], [-77.34401572082712, 34.54391904027435], [-77.34396290646829, 34.54384132465841], [-77.34393098287251, 34.54382890779095], [-77.3437678783304, 34.543786400653936], [-77.34370166276835, 34.5437610599238], [-77.34357221958899, 34.54375880976959], [-77.34353317378023, 34.54374364292665], [-77.34351424614977, 34.54366150886655], [-77.34337946298312, 34.54360549113645], [-77.34328932827385, 34.54359032998546], [-77.34303579378468, 34.54357037708515], [-77.34289531160718, 34.543405741353624], [-77.34259860375616, 34.54341834136915], [-77.34189402086507, 34.54324498954205], [-77.34183911610599, 34.543239443386135], [-77.34181763671609, 34.543235992959595], [-77.34168795157547, 34.54319314313368], [-77.34103831824252, 34.54298244033284], [-77.34087551048844, 34.54300309072753], [-77.34064346299135, 34.5430805255203], [-77.34053858915314, 34.543130463244054], [-77.34024872887659, 34.54317332687925], [-77.34010769521365, 34.54310129033299], [-77.34005407766469, 34.5431022540374], [-77.33993592160236, 34.54303701031569], [-77.33989612361049, 34.543020011554525], [-77.33988866867126, 34.54298260240361], [-77.3398743790319, 34.54297612739428], [-77.33986080449122, 34.542971601871656], [-77.33985079388879, 34.542963802896196], [-77.33985186466603, 34.54295729380708], [-77.33984454407502, 34.54294786445206], [-77.33984196416756, 34.54294031556303], [-77.33981997651365, 34.542931278130155], [-77.33981289515586, 34.54292125806476], [-77.33980401401267, 34.5429086913161], [-77.33979150991735, 34.54289099809481], [-77.3397807133092, 34.54287572096516], [-77.33978262079864, 34.542864541349246], [-77.33976650000297, 34.54281656076384], [-77.33967033965276, 34.542719542514845], [-77.3396578895802, 34.54271756587933], [-77.3396563967542, 34.542701026355346], [-77.33968956571819, 34.54258280829301], [-77.33965280314993, 34.542480076443205], [-77.33962757315247, 34.542469315967104], [-77.33963067017932, 34.54244010240831], [-77.33965678871928, 34.54234270469293], [-77.33965360925505, 34.54223812919736], [-77.33965155731352, 34.542221048284446], [-77.33962861742575, 34.542190702636915], [-77.33959806162267, 34.54210633359682], [-77.33956396606277, 34.54206460921951], [-77.33949066315375, 34.5420010937817], [-77.33928865349458, 34.5417902165013], [-77.33917283606596, 34.54167785834437], [-77.33910729067479, 34.541602917952], [-77.33902691655875, 34.541505554652446], [-77.33891224438207, 34.541470520920576], [-77.33889732219589, 34.541362260014665], [-77.33890325160813, 34.541349405593586], [-77.33889057218023, 34.541334619396665], [-77.33881121932784, 34.54124023334198], [-77.3387854896421, 34.54120552823064], [-77.33872373060623, 34.54121300775688], [-77.33864000593105, 34.54119492221595], [-77.33861888346927, 34.54120235876665], [-77.33861989132576, 34.54121013933231], [-77.3386189602362, 34.54126788530674], [-77.33862393297878, 34.541284423805294], [-77.33866774133269, 34.54129460741889], [-77.33864996355138, 34.541341689973414], [-77.33867725222646, 34.541381910268505], [-77.33868615167623, 34.54148350773555], [-77.33869068039986, 34.54150238779832], [-77.33871584217624, 34.54155392805968], [-77.33885337802958, 34.54163684038636], [-77.33883102145916, 34.541727020854594], [-77.3387955771488, 34.5417851788602], [-77.33880129662964, 34.54179690885619], [-77.33880804544927, 34.54181074986017], [-77.3388340393192, 34.54184899571569], [-77.33885521768104, 34.54187678440525], [-77.33888923418178, 34.54195497243211], [-77.33889397129137, 34.541962784797256], [-77.33890235385587, 34.54197660915991], [-77.33901944278938, 34.54199388079984], [-77.33903503335674, 34.54215014851967], [-77.33905506394642, 34.54218443304241], [-77.339068136705, 34.542198379083935], [-77.33909242735444, 34.54224541018332], [-77.3391446058798, 34.542293963347035], [-77.3391682791215, 34.54233921318076], [-77.33918118904474, 34.542354189184444], [-77.33922452022688, 34.54240487830499], [-77.33928260690311, 34.542509680505724], [-77.33928633492128, 34.542515980842225], [-77.33929830226283, 34.54251667526364], [-77.33928906883604, 34.54252221377376], [-77.33932211498535, 34.54263565909292], [-77.33935113672652, 34.54270829367399], [-77.3393423505335, 34.54279655189583], [-77.33927496728546, 34.54283995115773], [-77.33922549148248, 34.54289437434121], [-77.33923216715729, 34.54291896459774], [-77.33923526540015, 34.542954173062256], [-77.33925480008071, 34.54300233395955], [-77.3392616801203, 34.54301157834605], [-77.33926440731902, 34.54301524275676], [-77.3392707873457, 34.54302065570306], [-77.33930375096224, 34.543045812871455], [-77.339346766156, 34.54304710231478], [-77.33936848098892, 34.54304026249504], [-77.3393755324517, 34.54303005539498], [-77.339378095579, 34.543025436683315], [-77.33939035500255, 34.543010462631166], [-77.33939157073499, 34.54300681258961], [-77.33938346713052, 34.54299406185649], [-77.33938162598113, 34.54298689916617], [-77.33937003835085, 34.54297293213943], [-77.33935390048362, 34.54294753975613], [-77.33931701322646, 34.542942415386094], [-77.33932181835183, 34.54291075747153], [-77.33939568748993, 34.542915927149444], [-77.33939823604422, 34.542930733166614], [-77.33944042657349, 34.542942415483694], [-77.33945254793429, 34.54297439554573], [-77.33944998555219, 34.54298449452896], [-77.33946001191595, 34.54298793308047], [-77.33946705731633, 34.543012508663345], [-77.3394670439805, 34.543012643257434], [-77.3394671359942, 34.54301271072128], [-77.33946725890036, 34.5430129917958], [-77.33947267364422, 34.543027134662395], [-77.33947770323877, 34.54303488354475], [-77.33948588632558, 34.54304053539857], [-77.33950788804799, 34.54306343472652], [-77.33951124222837, 34.54306984497572], [-77.33951498479057, 34.54307126110175], [-77.33953846804722, 34.543078320739234], [-77.3395637007379, 34.54308672521182], [-77.3395673540808, 34.54308772962603], [-77.33956886449313, 34.543089805089544], [-77.3395707800614, 34.54309404986911], [-77.3395782905181, 34.54310375045867], [-77.33957930009564, 34.54310885940314], [-77.33959830428245, 34.54311617297965], [-77.33960238971743, 34.54312155882983], [-77.33963243394227, 34.54314186630874], [-77.33966015899426, 34.54315975592814], [-77.33969339743955, 34.543173378413655], [-77.33974383175628, 34.54318704822594], [-77.33985358703828, 34.54328371789287], [-77.33989906014455, 34.54325912792436], [-77.33994840353739, 34.54328003298076], [-77.34016987667565, 34.543295586868965], [-77.34010416221642, 34.543380038651584], [-77.34024171297094, 34.54347678913174], [-77.34024626055893, 34.543479139209225], [-77.34024631674855, 34.54348200087273], [-77.34025094906873, 34.54348724491735], [-77.34030937991372, 34.543552057155196], [-77.34035925492657, 34.54358816528703], [-77.34038493965679, 34.54361556362082], [-77.3405921033383, 34.54367708196112], [-77.34060559986719, 34.54368996719729], [-77.34062915589615, 34.54369948321587], [-77.3407618131034, 34.54373592044709], [-77.34101966732769, 34.54378948571996], [-77.34115629431298, 34.54375602829414], [-77.34112081647235, 34.54384584963981], [-77.34109163169296, 34.5438964660471], [-77.3411593832378, 34.54396271138462], [-77.34118197915946, 34.54397793780703], [-77.34121098094714, 34.54400509577823], [-77.34125392256587, 34.544044180414275], [-77.34130633336294, 34.544063982737725], [-77.34134800071288, 34.54409367724966], [-77.34140343257945, 34.5441714956218], [-77.34165634649351, 34.54417134785703], [-77.34179736028794, 34.5441137350936], [-77.34196192418753, 34.54411190148751], [-77.34195803312902, 34.544215056120976], [-77.3421858480097, 34.54429148574958], [-77.34229859391442, 34.54433988036796], [-77.34233010232232, 34.5444063524042], [-77.3423783915604, 34.54445401380023], [-77.34244765803768, 34.54446844909425], [-77.34249322311963, 34.544578699860004], [-77.34252513451598, 34.54462311515776], [-77.34253894934469, 34.544640726034984], [-77.34256969337987, 34.54467034939179], [-77.34286580646751, 34.54487612922521], [-77.34293829201413, 34.545053318045106], [-77.34294254642559, 34.54505941598779], [-77.34295314935297, 34.545066230723776], [-77.34317953246199, 34.54512146735189], [-77.34334195614915, 34.54523044813589], [-77.34351106953471, 34.54535333094691], [-77.34355012642082, 34.545454937961594], [-77.34360185366891, 34.54552599343349], [-77.34361278816948, 34.54556833303005], [-77.34370232212174, 34.54566400176789], [-77.34371729372823, 34.54567570823579], [-77.34372008480442, 34.545677890608225], [-77.34372412496398, 34.54568237433477], [-77.34378864772982, 34.54574669170765], [-77.34384499706307, 34.545779745995084], [-77.34387335121005, 34.5458032815026], [-77.34401269777005, 34.54587802938403], [-77.34403057542814, 34.545925678240124], [-77.3440522271104, 34.5459947522247], [-77.34410832827933, 34.54604630163377], [-77.34415300025131, 34.54607440316095], [-77.34419188956173, 34.54609706923696], [-77.34425112772257, 34.546179510415314], [-77.34428777032923, 34.546213788223255], [-77.34445036325033, 34.54630470269579], [-77.3444939639188, 34.54634828052467], [-77.3446497536045, 34.546422619092056], [-77.34466647360145, 34.54651843046906], [-77.3447971163605, 34.54669364182228], [-77.34484445326753, 34.54673764408335], [-77.34484611262926, 34.54675675711509], [-77.34487671010646, 34.54677566617131], [-77.34515162312552, 34.54700831481201], [-77.3452005856021, 34.54717604565606], [-77.34522401913398, 34.54719489172195], [-77.34525883822589, 34.54723002798109], [-77.34529807393896, 34.54725953881957], [-77.34530428956285, 34.5472835352697], [-77.34534789282671, 34.54733429316198], [-77.34535219126765, 34.547339270055645], [-77.3454017733751, 34.54739191964753], [-77.34545005007028, 34.54745086727817], [-77.3455118065419, 34.54745985942898], [-77.34555305658253, 34.547558340672694], [-77.34559515716307, 34.547608916123174], [-77.34560321704774, 34.54763205082517], [-77.34564167937204, 34.54765364227734], [-77.34577703938595, 34.54774189199072], [-77.34580596243944, 34.547823405919125], [-77.34583330757839, 34.547856505277515], [-77.34588681444984, 34.547900189787214], [-77.34592096597709, 34.547929269311105], [-77.34596274896342, 34.548006123895796], [-77.34599109089362, 34.54804158973174], [-77.34602444906739, 34.54808052618988], [-77.34620999309996, 34.54813838262008], [-77.34632091283164, 34.54842882539844], [-77.34636013754324, 34.54847813098073], [-77.34637386152576, 34.54849710731507], [-77.34640635938356, 34.54854487491582], [-77.34658711858222, 34.54869029229806], [-77.34668472062276, 34.548744622338404], [-77.34678616178779, 34.548906473388705], [-77.34679051541775, 34.54891193426398], [-77.34697240794327, 34.54900966941712], [-77.34704633788864, 34.549113857768404], [-77.347174514356, 34.54928596017787], [-77.34720526834309, 34.5493161986791], [-77.34722266780973, 34.54933330640908], [-77.34723666514394, 34.54937127244071], [-77.3473890389308, 34.54955418768002], [-77.34746146335253, 34.54960507352719], [-77.34755618224673, 34.549761356728695], [-77.34756353610568, 34.54976920157961], [-77.34757012712993, 34.5497729514013], [-77.34773474938413, 34.54988101845511], [-77.34791714765662, 34.55019920788928], [-77.34792688729983, 34.55021125739425], [-77.34793106605753, 34.55021519856235], [-77.34793818034736, 34.55022260282941], [-77.34818668263844, 34.550418694816024], [-77.34821114136119, 34.550486008332186], [-77.34828901699457, 34.55062856299802], [-77.34830519216104, 34.55064646253675], [-77.34831050092674, 34.550652190154665], [-77.3483186822261, 34.550749032061326], [-77.34832077490421, 34.550766630523015], [-77.34832079346198, 34.5507682197363], [-77.34836296029714, 34.550853856199986], [-77.34837634749246, 34.550881044111094], [-77.3483743744422, 34.550918487305154], [-77.3483951590847, 34.550950173158654], [-77.34841162992355, 34.550975282617884], [-77.34842547261499, 34.55099638551682], [-77.34844562035042, 34.55103267299913], [-77.34845273848444, 34.551053667201565], [-77.34845268062708, 34.551080786999826], [-77.34845259327557, 34.551084290675355], [-77.34845403874505, 34.551086642880485], [-77.34845792462218, 34.55109619970467], [-77.34846280487116, 34.55111018010394], [-77.34847684453158, 34.55111140358311], [-77.34849532148024, 34.55111574802967], [-77.34850643005066, 34.551121076099975], [-77.34853097194397, 34.551134217415466], [-77.34853413405652, 34.5511467220766], [-77.34853103907005, 34.55116481032868], [-77.34853433244469, 34.55118261820284], [-77.34852763745994, 34.55119590238088], [-77.34854212519097, 34.5512010152418], [-77.34857100586177, 34.551220264379154], [-77.34860169391862, 34.551246735718905], [-77.34862438851006, 34.551259454206665], [-77.34869863312994, 34.551299613873184], [-77.3487277566858, 34.55130192551553], [-77.34877614867528, 34.5513131550922], [-77.34884556557199, 34.55133347110856], [-77.34889368692585, 34.55135431005568], [-77.34889672830036, 34.55135510122312], [-77.34889733029758, 34.551356922392046], [-77.34892951287202, 34.551390636039095], [-77.34893988640167, 34.55141200373157], [-77.34900111535862, 34.551471866416364], [-77.34905425559754, 34.55151795632893], [-77.34906547134217, 34.551529128582], [-77.34908539845043, 34.55155426880036], [-77.34918768667958, 34.55167801920012], [-77.34921792242729, 34.55173922526424], [-77.34927595326337, 34.55180454253891], [-77.34929726861967, 34.55183646850504], [-77.34930261660975, 34.55184944801846], [-77.34930461223284, 34.55186794052597], [-77.34933155642327, 34.551931205733126], [-77.34934678463415, 34.551965502554225], [-77.34936924324867, 34.552016083615015], [-77.34937158362533, 34.55202160065622], [-77.34937173657454, 34.5520231171185], [-77.34937325236945, 34.5520255344301], [-77.34939096099775, 34.552067279485314], [-77.34938935919781, 34.55208178637698], [-77.34939860793862, 34.552121833468995], [-77.34939958787771, 34.552141519647705], [-77.34940188260225, 34.552163658488304], [-77.34938445258308, 34.552204902831846], [-77.34938724741765, 34.552251107981824], [-77.34938804492776, 34.55226559112333], [-77.34938765443107, 34.55228092675455], [-77.34937899055731, 34.552328099276416], [-77.34937722877628, 34.552337949424995], [-77.34938376401163, 34.552374422739646], [-77.34938685797185, 34.55238817234112], [-77.34938897063785, 34.55240575922298], [-77.34938541671971, 34.55244958491564], [-77.34938311086054, 34.55249559613068], [-77.34939148066594, 34.55250991753589], [-77.34937654603742, 34.552523905162815], [-77.3493567325669, 34.55255987429864], [-77.34934667186477, 34.552577570818606], [-77.34932070178422, 34.552620922298765], [-77.34930073618742, 34.55264538622353], [-77.34928328799182, 34.5526648120774], [-77.34925590086716, 34.552676097367346], [-77.34921698367572, 34.552694643178256], [-77.34920609992531, 34.55270747868118], [-77.34919809998621, 34.5527213608528], [-77.34918962014385, 34.552743423608526], [-77.34915966889795, 34.55278532831309], [-77.34915901973056, 34.55278818969353], [-77.34916332058559, 34.55279272180053], [-77.34915494069304, 34.55279789209145], [-77.34914322488396, 34.552797769562574], [-77.34905569222195, 34.55284528422193], [-77.3490387576474, 34.5528562992006], [-77.34902243518991, 34.552869049276374], [-77.34899842766441, 34.55289876994287], [-77.34898701613294, 34.55290474861747], [-77.34898166418851, 34.55292000331346], [-77.3490049245846, 34.55291866890539], [-77.34901371637984, 34.552931509084516], [-77.349004284215, 34.55294649842475], [-77.34899038027422, 34.55293486711088], [-77.34897967992244, 34.55292150456803], [-77.34895574854883, 34.55292288290675], [-77.348934667257, 34.552929838956935], [-77.34887029877058, 34.55295214656318], [-77.34885673805645, 34.552959921859404], [-77.3488526878378, 34.55295724460164], [-77.34878043748853, 34.552978979803136], [-77.34875749227352, 34.553007180832665], [-77.34868885312186, 34.553020858590955], [-77.3486587123655, 34.55303419207418], [-77.34864776619375, 34.553038611408695], [-77.34862563800704, 34.553048557447504], [-77.34862306097754, 34.55307063516591], [-77.3486379420076, 34.553107992112494], [-77.34865621447993, 34.55314272720104], [-77.34866466272022, 34.55315983895121], [-77.34867681915229, 34.553163603017886], [-77.34871680836551, 34.553241065462764], [-77.3489477289763, 34.55324703027941], [-77.34894007339543, 34.55331350612533], [-77.34904559604563, 34.553284060812715], [-77.34906705214892, 34.553242644380944], [-77.34909382074537, 34.55322600800351], [-77.34920258914777, 34.55311489271255], [-77.34923302455397, 34.55308356634075], [-77.34923884306669, 34.553077856549564], [-77.34924667377909, 34.553077144117715], [-77.3494267417964, 34.55293327982825], [-77.34941223423372, 34.55291384746212], [-77.34930570443714, 34.55282828685989], [-77.34941061536652, 34.552788867789985], [-77.34940229048439, 34.55275318280384], [-77.34941295740187, 34.552727911509514], [-77.34943445172041, 34.55269811079307], [-77.3494449615944, 34.552685837139926], [-77.34944553162543, 34.552681666711806], [-77.34945223266077, 34.552675395607714], [-77.34949514121661, 34.552617410939085], [-77.34949343284634, 34.55258078433992], [-77.34955283588637, 34.55256909197072], [-77.34960691336963, 34.55256762806647], [-77.34965068389528, 34.5525825543832], [-77.34983374943388, 34.55262988897955], [-77.34983999779847, 34.55263263722954], [-77.34984551168723, 34.5526472306076], [-77.34992531415668, 34.552739122714435], [-77.34994497869566, 34.55279456870164], [-77.34999265506656, 34.55285184229126], [-77.34990913271301, 34.553063049028474], [-77.35021366634982, 34.55330383225481], [-77.35021827655578, 34.553309015880544], [-77.35022049799345, 34.5533101923023], [-77.35022284767543, 34.553312353646966], [-77.35046227846298, 34.5536099830793], [-77.35062307483992, 34.553740403119335], [-77.35078179034394, 34.55385096358473], [-77.3509947320687, 34.55389459427684], [-77.35101984413261, 34.55391221418165], [-77.35103095212028, 34.55392652627667], [-77.35111689168446, 34.55408014962346], [-77.35120457201762, 34.55414636101588], [-77.35137833898185, 34.5542875036267], [-77.35141591153163, 34.554336635711714], [-77.35146645445737, 34.554353493272615], [-77.35176521632458, 34.55453823331278], [-77.35182901606406, 34.55450680455521], [-77.352394894796, 34.55436519303433], [-77.35255844777058, 34.55419196541584], [-77.35271594050842, 34.55402464753114], [-77.35309991671298, 34.5540279449732], [-77.35322806898913, 34.55409995288819], [-77.35334426732386, 34.554168242674955], [-77.35345444829414, 34.55424242806956], [-77.35360905515282, 34.55421082938894], [-77.35373833670948, 34.55410584670746], [-77.35379097660135, 34.55405096810764], [-77.35392998221118, 34.55388261944982], [-77.3540144991262, 34.55374193508037], [-77.35406188092043, 34.55368602583175], [-77.35414104062653, 34.5536671644824], [-77.35440613550762, 34.55344074006949], [-77.35437678061211, 34.55334249042833], [-77.35454233454377, 34.5532897533045]], [[-77.39068026031235, 34.70563988940285], [-77.39077086368641, 34.70589622341456], [-77.39146071506357, 34.70620715824099], [-77.3915274151733, 34.706251839599545], [-77.39158362892898, 34.706222251212765], [-77.39167686207395, 34.706213329979526], [-77.39201189675944, 34.70542607073514], [-77.3923449548503, 34.70494591560319], [-77.39119277560137, 34.70408599237289]], [[-77.31960558806361, 34.54571461040343], [-77.3195302279232, 34.545634165183124], [-77.31948219178233, 34.54554758221613], [-77.31949082697412, 34.54548628508671], [-77.31939174220112, 34.54549759165341], [-77.31938707016204, 34.545496596905494], [-77.31902658896891, 34.54553242224719], [-77.31907666795895, 34.5453009699541], [-77.31903157750325, 34.54528735502297], [-77.31899956153005, 34.54527852941976], [-77.31891210892827, 34.545257048676085], [-77.31887957943324, 34.54525411096472], [-77.31880344739432, 34.54527047949297], [-77.31872490732748, 34.54527796101875], [-77.31860644042014, 34.54530062166624], [-77.31842771431579, 34.54528248309296], [-77.31821384882926, 34.545300054710566], [-77.3181147151484, 34.545256790246874], [-77.31810368035546, 34.54519592911093], [-77.31815328016548, 34.545148831295485], [-77.31815377555623, 34.54510660709739], [-77.31813257920682, 34.545069372189815], [-77.31812131005755, 34.54506003984154], [-77.31806446448664, 34.54505349575382], [-77.31802352411296, 34.54504443123204], [-77.31791578643598, 34.545033168668226], [-77.31782674730796, 34.54506473791965], [-77.31777165848366, 34.545033616150754], [-77.3176831807096, 34.54501152043452], [-77.31743592882064, 34.54498841029147], [-77.31724474253785, 34.54507449846019], [-77.31713408936388, 34.54514933715272], [-77.31703867345674, 34.54518722749356], [-77.31692240093209, 34.54519321428661], [-77.31677207940083, 34.545221465151656], [-77.31672036255867, 34.545272224787574], [-77.31666539002435, 34.545293722672056], [-77.31664197879921, 34.54536200016925], [-77.31663043459358, 34.54540091652439], [-77.31662867916263, 34.54540779923686], [-77.31662126567073, 34.54542092003344], [-77.31659260465032, 34.54553538623297], [-77.31655938410267, 34.54561474924988], [-77.31644407925342, 34.545679124730015], [-77.31663012740513, 34.545868440491056], [-77.31675958084219, 34.54571224999014], [-77.31686149636015, 34.54561916937459], [-77.31695716776039, 34.54556004347476], [-77.31703048530235, 34.54553719800729], [-77.31716654967852, 34.54549118026992], [-77.31722847761387, 34.54546499405304], [-77.31727578590682, 34.54546678165413], [-77.31742461076662, 34.54547225297372], [-77.31751704098107, 34.54546744265807], [-77.31771977709482, 34.54549588625272], [-77.31778867576286, 34.54550333301362], [-77.31781641962303, 34.54550633161051], [-77.3178834055695, 34.545514267101275], [-77.31820868368459, 34.545520951829516], [-77.31846917912941, 34.545471338409534], [-77.31859990650517, 34.545580113072475], [-77.31864102500084, 34.54558268592551], [-77.31875886127429, 34.54559143563416], [-77.31893079780306, 34.54560485833433], [-77.31898842613944, 34.545754947445545], [-77.3192618936192, 34.54583707754155], [-77.319364712646, 34.545994026034194], [-77.31937539308808, 34.54599629144599], [-77.31952952213993, 34.54611729109064], [-77.31973465957363, 34.546167394670036], [-77.319764447039, 34.5461484018467], [-77.32006181271898, 34.54607828247569], [-77.32003302525382, 34.54589801643241], [-77.31985334821564, 34.54587241498617], [-77.31977291518326, 34.54578595294784]], [[-77.3942827505902, 34.605940823957106], [-77.39427752236777, 34.60595131031178], [-77.39426848653517, 34.60596433539526], [-77.39393400304823, 34.60647999679138], [-77.39387430171573, 34.60649958052858], [-77.3936078038439, 34.606749777041045], [-77.3934801263017, 34.606866430852286], [-77.39346360446604, 34.606890299949654], [-77.3934419464477, 34.60691121811726], [-77.39307763948085, 34.60737938819408], [-77.39304491153665, 34.6074372259298], [-77.39296774092226, 34.60782874038274], [-77.39286141240107, 34.60802685607018], [-77.39269171606736, 34.60812218082092], [-77.3923850201845, 34.6082431199582], [-77.39220743407515, 34.60826587516948], [-77.39210262278174, 34.60858799274878], [-77.39256790568716, 34.608602220316655], [-77.39269166677778, 34.6086487924622], [-77.39272706920228, 34.608674448617386], [-77.3934681162582, 34.608592945876], [-77.39347998012335, 34.608594265269325], [-77.39349243009399, 34.60858880893922], [-77.39402944682556, 34.60826747708238], [-77.3942683314896, 34.60801404963825], [-77.3944480557111, 34.60780884479919], [-77.39453029355424, 34.60760340706366], [-77.39505668960294, 34.60716323093331], [-77.39524047960333, 34.6068497980788], [-77.39545085976016, 34.60678477055778], [-77.39573543970924, 34.60669848587547], [-77.39584501161367, 34.606665515681044], [-77.39592777317861, 34.60664186702884], [-77.39616510463951, 34.606518487980296], [-77.39621464805546, 34.60648493215795], [-77.39623916847135, 34.60642793944481], [-77.39637519150199, 34.606210126960505], [-77.3966333378288, 34.60588325062497], [-77.39725256089984, 34.60569461122164], [-77.39742162607068, 34.605697487950835], [-77.39763800203534, 34.60568997819178], [-77.39807168936136, 34.60539433689283], [-77.39854391295222, 34.604836847728556], [-77.39899821729418, 34.60406430254219], [-77.39946703452141, 34.60349475931915], [-77.39926054179978, 34.603241977503444], [-77.39899823163125, 34.60338469485181], [-77.39880815246867, 34.603385047762806], [-77.39820997517401, 34.603372182746256], [-77.3978449591946, 34.60372875346634], [-77.39784514252732, 34.60418488749809], [-77.39742168754753, 34.60413468893827], [-77.39713068943045, 34.604145253133446], [-77.39663341058314, 34.60438730663853], [-77.39639215255147, 34.60452757065404], [-77.39606690874419, 34.60459545898079], [-77.39584512492797, 34.604701947773265], [-77.39574083838326, 34.60476905742789], [-77.39545097807212, 34.60488597490105], [-77.39537330296977, 34.60493440191817], [-77.39520359319687, 34.6051169776197], [-77.3950568198747, 34.605212569515984]], [[-77.34306032948442, 34.52342402034836], [-77.3434848818784, 34.52320257774282], [-77.34377138242013, 34.52289972588066], [-77.34368932339396, 34.522532044388385], [-77.34307607080832, 34.52274241307588], [-77.34287009614704, 34.52290325158093], [-77.3427007188051, 34.52305378228256], [-77.34275893880103, 34.52323610427419]], [[-77.33845945727985, 34.55086425403697], [-77.33849949189941, 34.55090439960704], [-77.33887870597951, 34.55077841803915], [-77.3385020488249, 34.550793888142465], [-77.3383181562496, 34.55072980388793], [-77.33815436986085, 34.55066391955725], [-77.33828874198532, 34.55075205389789], [-77.33840554175407, 34.55084646533047]], [[-77.21792823846141, 34.61729473944239], [-77.21808589401418, 34.617387144870456], [-77.21811618012987, 34.617473802074485], [-77.21825040320223, 34.617400138201184], [-77.2183762130169, 34.61725884168709], [-77.21839490001211, 34.61717586834196], [-77.21852050056972, 34.617073254637454], [-77.21831695487217, 34.617077544219065], [-77.21824423498879, 34.61714141537861], [-77.21821090124898, 34.61716133606582], [-77.21798660419842, 34.61724096355789]], [[-77.31137751584313, 34.550544181241946], [-77.31133992809221, 34.55057389255848], [-77.31129946196464, 34.55075460872282], [-77.31101697295739, 34.5508385393308], [-77.310997614261, 34.55085603759587], [-77.31096650270311, 34.550872318783895], [-77.31079729993249, 34.55100691826982], [-77.31076373158918, 34.551056145726804], [-77.31082104774437, 34.551138012121214], [-77.31068958885733, 34.55135347712368], [-77.31100807303821, 34.55121780039069], [-77.31117721318711, 34.55119195562103], [-77.31124915241853, 34.551076544894144], [-77.31134240863788, 34.55102396987962], [-77.31140615575194, 34.55098558561535], [-77.3115051110511, 34.550854769915915], [-77.31180698335493, 34.55063625633841], [-77.31188919455748, 34.55054494985801], [-77.31193787662205, 34.550488035418574], [-77.31222685031803, 34.55021251785821], [-77.31228602014397, 34.550146522585024], [-77.31227773094639, 34.54994961687662], [-77.31239726719956, 34.54982113264695], [-77.31221791819782, 34.54985581643368], [-77.3121735148631, 34.5499380985255], [-77.31201918980668, 34.54995875614602], [-77.31198805926941, 34.54999121107602], [-77.311897853977, 34.550052281516756], [-77.31181918796838, 34.550115962334594], [-77.31179430119184, 34.55014143724556], [-77.31177493816702, 34.55024085865764], [-77.31174526626226, 34.550270882680934], [-77.3115832427402, 34.55039593694008], [-77.31151656730216, 34.55042612538591], [-77.31141769640789, 34.55049369444787]], [[-77.39589359323475, 34.58028465203496], [-77.39593507021125, 34.580228211754374], [-77.3960012716618, 34.58005219337692], [-77.39584678223758, 34.58008648460121], [-77.39565207248293, 34.579629739226164], [-77.39533809980522, 34.579766174581785], [-77.395058765208, 34.57984445497469], [-77.39470909711139, 34.5799326965584], [-77.39466473775268, 34.57995041396457], [-77.39463211035188, 34.57995644276384], [-77.39433469154258, 34.57996556757321], [-77.39427071972011, 34.57994628574895], [-77.39396039318738, 34.57999830551019], [-77.39370407594072, 34.579939453149954], [-77.39373137465856, 34.58027808573162], [-77.39403360571063, 34.58050250311929], [-77.39413421456373, 34.580635007675745], [-77.39427065661178, 34.58061078668403], [-77.39446403090957, 34.58064878681196], [-77.39466466674938, 34.58073734416034], [-77.39472741898692, 34.580759374091606], [-77.39495191149256, 34.580794610791365], [-77.39505868219985, 34.58081499669925], [-77.39520983670445, 34.580757404240764], [-77.39541294531682, 34.5806852516553], [-77.39545271740279, 34.58065554170712], [-77.39568418620479, 34.5804395781041], [-77.3958467651204, 34.580310964518034]], [[-77.27237605187699, 34.57217309615184], [-77.27231364074635, 34.572221325884925], [-77.272296902089, 34.57223661139551], [-77.27224840711202, 34.57228089666477], [-77.27222177721691, 34.57230392348387], [-77.2721419561878, 34.57237294440618], [-77.27212811000155, 34.572384917146906], [-77.27212349061442, 34.57238891149636], [-77.27211462348194, 34.57239676387312], [-77.27200444867503, 34.57249738794856], [-77.27194133717045, 34.57254740419285], [-77.27193543609691, 34.572555757674856], [-77.27192969446058, 34.5725843598035], [-77.27192420701209, 34.57260589338708], [-77.27193758599134, 34.57260996575426], [-77.27197408974716, 34.57263313217211], [-77.27196654786604, 34.57271982116175], [-77.2720502441127, 34.572644257207294], [-77.27210778458229, 34.57262334343595], [-77.2721879495439, 34.57260242723142], [-77.27224636424171, 34.572583154960256], [-77.2723292721535, 34.572563813961274], [-77.27247325192624, 34.57255115622228], [-77.27250151998899, 34.57253645721691], [-77.2725556728688, 34.572436568615814], [-77.27256559955498, 34.57242366046064], [-77.27258743828405, 34.57240332516387], [-77.27262271867185, 34.57231031667478], [-77.27268076483222, 34.57221922852774], [-77.27269484583847, 34.572198152380146], [-77.27275100989158, 34.572158323533664], [-77.27281895216683, 34.57209007343036], [-77.2728608623227, 34.57205080591835], [-77.27294694824931, 34.57198230010601], [-77.27295814184822, 34.57197302523805], [-77.27298967581672, 34.571946573085185], [-77.27305267179868, 34.57189279933662], [-77.27311636901926, 34.57183771447845], [-77.27319789012651, 34.571766356178316], [-77.2732388785304, 34.57172981050991], [-77.27331387633598, 34.571657638690894], [-77.27332717050757, 34.571644037504086], [-77.27338255065935, 34.5715863087337], [-77.27341227761579, 34.571555432218126], [-77.27341785355829, 34.571547977311255], [-77.2734292264347, 34.571536775369054], [-77.27351982974069, 34.571438158603215], [-77.27357792001254, 34.57137415617245], [-77.27361542843238, 34.571327838640826], [-77.27364992477766, 34.571273899292166], [-77.2736525628325, 34.571269377753524], [-77.27362881938758, 34.57121105802297], [-77.273583930104, 34.57118805238545], [-77.27355897960064, 34.57120556936047], [-77.27353656680006, 34.57122098319756], [-77.2734900808768, 34.571259071113616], [-77.27346275897806, 34.571271742667165], [-77.2734172900914, 34.57130926000208], [-77.27341398358037, 34.57131200710352], [-77.27336623594002, 34.57135019537419], [-77.27330397542207, 34.571399990836504], [-77.27335744287787, 34.57142539651317], [-77.27337093036864, 34.571518661779024], [-77.27324031452372, 34.571450906270144], [-77.27314728714055, 34.571526713014336], [-77.27309093747618, 34.57157167127273], [-77.27308259242471, 34.57158054502883], [-77.27307521930251, 34.57158426678795], [-77.27306130718858, 34.571596569219125], [-77.2730187883133, 34.571634446983275], [-77.27298226260008, 34.57166589144287], [-77.27290337237783, 34.571733806731956], [-77.27292754113418, 34.571745108582704], [-77.2729420280647, 34.57179440266019], [-77.27287359841672, 34.57175943861949], [-77.27276845055631, 34.57185043798687], [-77.27271503099233, 34.571896232516586], [-77.27270834418277, 34.57190463048304], [-77.27270081342324, 34.571908472444825], [-77.27268665531649, 34.57192079215306], [-77.27264372187238, 34.57195846798916], [-77.27260598099423, 34.571988429370826], [-77.27250931931063, 34.572065166077074], [-77.27251134036696, 34.572065896386256], [-77.27251248227877, 34.57206957250984], [-77.27250761211296, 34.57206652136716]], [[-77.21309855830836, 34.621440103417335], [-77.21307804767066, 34.62146949663246], [-77.21303523611104, 34.621674574797446], [-77.21327253025119, 34.62148486420148], [-77.21337643789049, 34.62138454416548], [-77.21338197104619, 34.6213756701902], [-77.21321112624885, 34.621327495333745], [-77.2131380879678, 34.62135639913111]], [[-77.22276395525716, 34.6132723530923], [-77.222756660589, 34.61327803037293], [-77.22273281637672, 34.61329374663282], [-77.22274067333942, 34.61334039782842], [-77.2228089684836, 34.61331240168599], [-77.22284109169281, 34.613284696021374], [-77.22315987701785, 34.61313401452941], [-77.22278655333577, 34.61324983187487]], [[-77.37537116814774, 34.68593318412845], [-77.3760306866653, 34.68485438581634], [-77.37480154848, 34.68542841109617], [-77.37489098321946, 34.685646300770095], [-77.374970802076, 34.68567049884536]], [[-77.32288495781012, 34.54702097776182], [-77.32303573173476, 34.54702961962264], [-77.32357113030814, 34.54692175390114], [-77.3236725074297, 34.54692120569938], [-77.32390360855038, 34.546955373637225], [-77.32374244312064, 34.546833931924894], [-77.32371854562322, 34.5468102715251], [-77.32367587578867, 34.5467767434388], [-77.3233223181745, 34.54664948715629], [-77.32329976494871, 34.54664436449485], [-77.32322392946712, 34.54662441013191], [-77.32289527283609, 34.54657876518601], [-77.32278870186784, 34.54672616078204], [-77.32277840874139, 34.54690431697573], [-77.32276863768898, 34.54697385631132], [-77.32282974264635, 34.54699981382955]], [[-77.35925742671837, 34.54067895591084], [-77.35922503920945, 34.54075062137305], [-77.35920725171357, 34.54079048534192], [-77.35920606869594, 34.540998177063386], [-77.35920298985101, 34.541202911151], [-77.359202280035, 34.54124354654863], [-77.35918676850565, 34.54127725852821], [-77.35918523277394, 34.541368413354505], [-77.35916874215977, 34.54139267221632], [-77.35917028374584, 34.541469041997075], [-77.3591904156476, 34.541490078981965], [-77.35919316576027, 34.54152874124863], [-77.35920635380833, 34.54168312087267], [-77.35924273172745, 34.54172736935169], [-77.35926243715332, 34.54181081704478], [-77.35928387980735, 34.54196626798793], [-77.35923883823988, 34.54204770425966], [-77.3592416479016, 34.54213916513566], [-77.35925614933917, 34.542215085195764], [-77.35920754438071, 34.54228084720791], [-77.35920804370544, 34.542285286566575], [-77.3592807562345, 34.54233395382276], [-77.3592856942232, 34.542347207909295], [-77.35940458054152, 34.542438535142665], [-77.35943326580167, 34.542476900401155], [-77.35948736484913, 34.542671438336455], [-77.35948685835277, 34.5426777189704], [-77.3594964927726, 34.542691690379435], [-77.3595092777633, 34.54266828287793], [-77.35958517945049, 34.5424645946389], [-77.35959021277843, 34.5424118041007], [-77.35966073057585, 34.54230474944724], [-77.35967755327607, 34.542261172186265], [-77.3596495166931, 34.54215844018877], [-77.35968439255564, 34.5420161306906], [-77.35968645621551, 34.54180252157813], [-77.35971424558537, 34.541659470952396], [-77.35976039812535, 34.541556375206675], [-77.35976194638269, 34.541504009524814], [-77.35976443121153, 34.54140742012044], [-77.3597733156467, 34.54131429154272], [-77.35977951221676, 34.54124933610686], [-77.35976065174077, 34.54116314015386], [-77.35976337455187, 34.54106108516219], [-77.35974015582784, 34.5407963645098], [-77.35971345783567, 34.54068028808714], [-77.35967646664608, 34.54052205906936], [-77.35967874226998, 34.54036008752219], [-77.3596455123901, 34.54020042440156], [-77.35960198650046, 34.53998907948796], [-77.35959806227538, 34.53993839294985], [-77.35956213415031, 34.53982393313727], [-77.35950022725122, 34.5399395645637], [-77.35946017616527, 34.54004275120182], [-77.35937782918236, 34.54023897151648], [-77.35932948795299, 34.54035322405218]], [[-77.31515725638647, 34.54684318923296], [-77.31521473907424, 34.54694736606693], [-77.3150329530412, 34.54701026468011], [-77.31499388801909, 34.54708824265436], [-77.31492614246298, 34.54712119195206], [-77.31476502132264, 34.54722521544063], [-77.31463222538062, 34.54735664481672], [-77.31461106756932, 34.54739867350082], [-77.31458405699128, 34.54741513139351], [-77.31449225844167, 34.54751330120294], [-77.31462717848981, 34.54757209719012], [-77.31474846661433, 34.54746559161511], [-77.3148140082659, 34.547382106732925], [-77.3149522259306, 34.54731639043815], [-77.31502759943979, 34.54723885599905], [-77.31506902228355, 34.54712483552638], [-77.31513116202817, 34.547091747325226], [-77.31523933558096, 34.54695934536045], [-77.31530543536836, 34.54689844708314], [-77.31539295169561, 34.54680933843531], [-77.3152351886223, 34.54675709197818]], [[-77.34019428481659, 34.550999968306364], [-77.34007093835254, 34.5508635720322], [-77.3398779799794, 34.55100607554537], [-77.33987131943042, 34.55100657300751], [-77.33986610200722, 34.55100688668445], [-77.33977271615873, 34.551025895638276], [-77.33976179943865, 34.55102545245372], [-77.33972485433645, 34.55102395258804], [-77.33969109110237, 34.551018605570064], [-77.33967463650949, 34.55102257099085], [-77.33964055816394, 34.55099649690508], [-77.33963073022892, 34.550976285228465], [-77.3396289092953, 34.550944974183835], [-77.33962150381139, 34.55091640771528], [-77.33961947853007, 34.550891773620855], [-77.33961880167914, 34.550886194113275], [-77.33961330240042, 34.550877247659116], [-77.33961392932825, 34.55085629262661], [-77.33961990656339, 34.55084941221956], [-77.33961318588976, 34.55083619919534], [-77.33959005370042, 34.550834881714856], [-77.33958071005374, 34.55083964302289], [-77.3395599194534, 34.55083345816807], [-77.3395373020273, 34.55083326740543], [-77.33953223806654, 34.55081343003103], [-77.33951955620711, 34.550831617849475], [-77.33948261733906, 34.55083689260992], [-77.33945084006046, 34.55083833738715], [-77.33934624065542, 34.550833587252626], [-77.3393132013739, 34.55082178563442], [-77.339286648553, 34.55082202455253], [-77.33917266875329, 34.55080742278745], [-77.33889821075127, 34.550777583026154], [-77.3388950220645, 34.55077884622376], [-77.33864937103442, 34.55105621719174], [-77.33888666810083, 34.55113998196271], [-77.33897172402753, 34.55120076359956], [-77.33905439115969, 34.55124278708488], [-77.33908045026685, 34.551249417306074], [-77.3391285291009, 34.55126228939481], [-77.33919134633203, 34.55127596874181], [-77.33927549597207, 34.55130424080073], [-77.33939421060921, 34.551316323857776], [-77.33944684087535, 34.551324038155485], [-77.33947127257792, 34.551327468320125], [-77.33952525872812, 34.55133119260339], [-77.33966753784502, 34.55132956633474], [-77.33974316821389, 34.5513412190673], [-77.3398717107558, 34.55137005803978], [-77.33999253236533, 34.55139392503331], [-77.34005820930082, 34.55141417615698], [-77.34021686143515, 34.551465568744796], [-77.34041567894135, 34.551516187602644], [-77.34044832941085, 34.55152266966047], [-77.34045631694552, 34.55152576973862], [-77.34046540285651, 34.551529488134335], [-77.34064317011526, 34.551586422431214], [-77.34068244443219, 34.55159605257889], [-77.34083841672644, 34.55163262211796], [-77.34092280540841, 34.551655568088975], [-77.34105295222786, 34.55168979876706], [-77.3412287812431, 34.551730616978006], [-77.3414011030846, 34.55177643240042], [-77.34152903278202, 34.551809678483515], [-77.34161904463576, 34.55183302506535], [-77.34163834238471, 34.55183830869355], [-77.34166943047062, 34.55184594600251], [-77.34181423921162, 34.55188152069382], [-77.34186996919836, 34.55190443043984], [-77.34193886588564, 34.55192959998599], [-77.34200884025599, 34.551955724997526], [-77.34208838158725, 34.551980548516354], [-77.34222478273614, 34.552010882578735], [-77.34233470395634, 34.55203555298223], [-77.34239919268532, 34.55205435579285], [-77.34257712383757, 34.55209350940463], [-77.34269817914313, 34.55213030930541], [-77.34278939979194, 34.55215931732109], [-77.34280456110503, 34.552162799747144], [-77.34283943070531, 34.55216728754602], [-77.34318074789675, 34.55221488175891], [-77.34334827984908, 34.55223416932266], [-77.34345828118788, 34.55225184966111], [-77.34357201892372, 34.55227380447724], [-77.34359975453316, 34.55228527451329], [-77.34361902816478, 34.55229996110884], [-77.34376621070953, 34.552365844098816], [-77.34380323998208, 34.552372683527615], [-77.34385939449834, 34.55238779284829], [-77.34396137827268, 34.552415607049525], [-77.3440319115087, 34.55244103899669], [-77.34413789756843, 34.55247013793841], [-77.34415629657805, 34.55247618403183], [-77.34425054117978, 34.552516991091], [-77.34435101999235, 34.55254522146108], [-77.34448518388183, 34.55258082900125], [-77.3446922885982, 34.55263520246539], [-77.34472188130472, 34.55264311230474], [-77.34474127513587, 34.55264828497302], [-77.34482989451408, 34.55267098971073], [-77.34493642322421, 34.55269894111125], [-77.34496007180717, 34.55270426577688], [-77.34499061006169, 34.55271469465271], [-77.34513120921366, 34.55276531104245], [-77.34518080180706, 34.5527786282636], [-77.34524744404418, 34.552800154793985], [-77.34532613629102, 34.552825573673374], [-77.34541173671231, 34.55284527035195], [-77.34552123422118, 34.552878435980034], [-77.34564220880166, 34.5529122624113], [-77.34578884288727, 34.552967083841395], [-77.34591067715658, 34.553016857963506], [-77.34610421288684, 34.55304275885381], [-77.34610639101254, 34.55304302563252], [-77.34610721780103, 34.55304317087515], [-77.34610860762928, 34.55304348853147], [-77.34630168043708, 34.553087616860594], [-77.34635756319868, 34.55309512735382], [-77.34644961326205, 34.55311683607423], [-77.34659452570489, 34.553157208084215], [-77.3466925017101, 34.553166300530506], [-77.34684514523593, 34.55320895691955], [-77.34698764951106, 34.55322429116373], [-77.34708354401806, 34.5532354154974], [-77.34713153949399, 34.55323363987595], [-77.34730829505455, 34.553238108897816], [-77.34747576899035, 34.55325319795417], [-77.34776631431325, 34.553172206541205], [-77.34785344365943, 34.55314884372875], [-77.3478400231383, 34.55303919066435], [-77.3477737631332, 34.55298911724885], [-77.34777270298703, 34.55298767217338], [-77.34776463314984, 34.55298143251102], [-77.3476998716769, 34.552936946603225], [-77.34767961539347, 34.55292621694808], [-77.34764094619244, 34.55292124219954], [-77.34758178676604, 34.552911903384775], [-77.34756114248238, 34.552908622366246], [-77.34748420286913, 34.55288696380843], [-77.34745234240552, 34.552870258530405], [-77.34744054425192, 34.5528518501369], [-77.34738753289164, 34.55282234238457], [-77.34737619955203, 34.55280718768395], [-77.34735970045548, 34.5528022772893], [-77.3472908152556, 34.552759796631776], [-77.34727738690664, 34.552761267792], [-77.34722640024688, 34.55276025199443], [-77.3471191197229, 34.55276032838472], [-77.34709454542421, 34.552757786449035], [-77.34703830055585, 34.55275216487427], [-77.34689835543483, 34.552752309525154], [-77.34680934520244, 34.5527533348926], [-77.34678615237354, 34.552753652360785], [-77.34670186168844, 34.55276001755993], [-77.34665404867675, 34.55275014744369], [-77.34657211942792, 34.55273198041602], [-77.34653047790188, 34.552722957881635], [-77.34646825769873, 34.552723143810695], [-77.34631076778119, 34.552693248733966], [-77.34627003684305, 34.55267864021447], [-77.34619729058514, 34.552663499528286], [-77.34615142654964, 34.55264769763562], [-77.34611567237258, 34.55264027894898], [-77.34609777588625, 34.552627948510334], [-77.34605927112688, 34.55262215207067], [-77.34603569706447, 34.55261457556838], [-77.34593386611633, 34.55258727519322], [-77.34592065428494, 34.55258396402497], [-77.34591725481286, 34.55258350576072], [-77.34591332252356, 34.55258194523087], [-77.34581051572448, 34.55254358193715], [-77.34572871984247, 34.552486094514514], [-77.34572662152732, 34.55248491182061], [-77.34560624705063, 34.552456767139404], [-77.34553186711771, 34.5524171837889], [-77.34550978458452, 34.55240906885489], [-77.34547955071892, 34.552399532667955], [-77.34539871682313, 34.55237241975842], [-77.3452179291686, 34.55236305165849], [-77.34514066183482, 34.55235534282589], [-77.34510488945182, 34.55235335844179], [-77.34504842128858, 34.552339148369846], [-77.3449450583092, 34.55232446846555], [-77.34485496700472, 34.55230108140221], [-77.34480534248766, 34.55228645438287], [-77.34474995538031, 34.552271892439244], [-77.34472922552455, 34.5522626595653], [-77.34463504020636, 34.552226111743416], [-77.34461219644581, 34.55221829083082], [-77.34455532540042, 34.55219882015386], [-77.34452394378907, 34.55218948401094], [-77.3444829501951, 34.552175679568805], [-77.34445789615623, 34.55216724271314], [-77.34441389416895, 34.55215206432771], [-77.34436050034564, 34.55213421877913], [-77.34429935655406, 34.552118039853596], [-77.34421402697892, 34.55209195719536], [-77.34418485437178, 34.552083988514475], [-77.34416544592322, 34.5520795722277], [-77.34409463260894, 34.55206476539129], [-77.34406775208623, 34.55205947533714], [-77.34406027316308, 34.55205756208212], [-77.34397013645122, 34.552035990630124], [-77.34393867303638, 34.55202888030705], [-77.3438797007591, 34.55201764293888], [-77.3437747560786, 34.551995489614356], [-77.34368827909722, 34.55197695867757], [-77.34358632228482, 34.551937437382946], [-77.34357983942526, 34.55193490031283], [-77.34347387546867, 34.55189780980078], [-77.34338546098364, 34.55185100109276], [-77.34337901314078, 34.55184890060537], [-77.34337087710041, 34.55184602028753], [-77.34328278417482, 34.55180102508025], [-77.34319210959995, 34.551722619201996], [-77.34311820909332, 34.55168418083592], [-77.3430832982319, 34.55164256980946], [-77.34299922188757, 34.55157417523175], [-77.3429520720374, 34.55156851834455], [-77.34280256523725, 34.55158902162193], [-77.34262197580398, 34.55159643227664], [-77.34259589925061, 34.5515966172652], [-77.34244384977406, 34.5516121433257], [-77.3424093271382, 34.55161544494578], [-77.34228388433804, 34.55159130985223], [-77.342213628253, 34.55158880383794], [-77.34215378413387, 34.551569057447026], [-77.3420702667265, 34.55154347130483], [-77.34204151710853, 34.55153331430503], [-77.34201871259609, 34.5515282533413], [-77.34187517965668, 34.55148135909069], [-77.34182385712005, 34.55146510849923], [-77.34181650616254, 34.551462188742256], [-77.34180394724736, 34.551459369552695], [-77.34172623571214, 34.55144192508794], [-77.34169776238883, 34.55143134503084], [-77.34164117819329, 34.551421577416164], [-77.34162861571264, 34.5514186827889], [-77.3415787113008, 34.551400733749105], [-77.3415162949959, 34.55137833565412], [-77.3414338103907, 34.55135338877569], [-77.34134277303995, 34.551337874086094], [-77.34130772752738, 34.55132937164645], [-77.34123838805806, 34.551314812509474], [-77.34119184231623, 34.55130259434631], [-77.34109720893002, 34.55128229581009], [-77.34104314491015, 34.5512684882773], [-77.34098618548325, 34.551245611600606], [-77.34094568537702, 34.55123831686228], [-77.3409285064452, 34.55122890898551], [-77.34089719440809, 34.55122256536177], [-77.34087174215155, 34.55121151434763], [-77.3408483220629, 34.55120398454106], [-77.34076015399155, 34.55118705586621], [-77.34074710726124, 34.55118512666457], [-77.34074412043441, 34.55118337764977], [-77.34065300978816, 34.551160669831205], [-77.34061996664772, 34.55116063436846], [-77.34056597769717, 34.55114779533764], [-77.3404577003649, 34.551117239468994], [-77.34038443037359, 34.55109746967122], [-77.34033543225158, 34.55105854525142], [-77.3402640547018, 34.55100184243203]], [[-77.26821733502, 34.57580741258282], [-77.26818620553863, 34.57585005857914], [-77.26798167177415, 34.575926427013584], [-77.26790551792757, 34.57599452993263], [-77.2678435783547, 34.57605878587704], [-77.2678482943906, 34.57613640976547], [-77.26765147395948, 34.57625241381823], [-77.26763034770322, 34.576271181155825], [-77.267628854177, 34.576277569670445], [-77.26736526083302, 34.576364028344784], [-77.26731133337096, 34.57637043594705], [-77.26712705110009, 34.576456028154055], [-77.26711520414342, 34.576470242802685], [-77.26711358816507, 34.5764727202425], [-77.26710773608104, 34.57647710099397], [-77.26709593848183, 34.57651754345824], [-77.26716727833735, 34.576638506309834], [-77.26714711641168, 34.576711024650336], [-77.26719986747301, 34.576728692586464], [-77.26721516888959, 34.57671637597487], [-77.2672725218252, 34.57661015448968], [-77.26733792711899, 34.57657457957704], [-77.26717581632346, 34.576477613504245], [-77.26742419047052, 34.57641643773032], [-77.26755493790463, 34.576443286318735], [-77.26760830399958, 34.57639378765997], [-77.26766673747048, 34.576359547622154], [-77.26765324167926, 34.57629154198308], [-77.26764645576716, 34.576278953722394], [-77.26789005879073, 34.57619731925754], [-77.26790447118894, 34.57618637066538], [-77.2679253869791, 34.57617079769812], [-77.26799918274541, 34.57607102100859], [-77.26810253036805, 34.57603391256523], [-77.26814691512618, 34.57599595331129], [-77.26807672114587, 34.57595928391973], [-77.26825503147263, 34.575892322667855], [-77.26828265542322, 34.575865505164934], [-77.26829062018106, 34.57585826851012], [-77.26830597267062, 34.57584451115061], [-77.26830905297632, 34.57578550797865]], [[-77.22880310948685, 34.60878285993907], [-77.228765518295, 34.60880302129486], [-77.22836288505107, 34.60890117698503], [-77.22827493374545, 34.60897043920555], [-77.22825294588361, 34.60899825383327], [-77.22821934237533, 34.609037296226894], [-77.22792490260046, 34.60931650788679], [-77.22782845538045, 34.60943611497838], [-77.22776295733964, 34.60950117137129], [-77.22765735134652, 34.609614896382546], [-77.22765806129702, 34.60965834789731], [-77.22777152928799, 34.60983753800171], [-77.22778595922613, 34.60990412021828], [-77.22723607422128, 34.61001864504236], [-77.22714957197698, 34.61008957857648], [-77.2271258326793, 34.61018109181401], [-77.22723969149389, 34.61028618918694], [-77.22741805129273, 34.61018054402217], [-77.22783602675662, 34.60994137978955], [-77.22786540927511, 34.60992105952748], [-77.227881747125, 34.60991167925534], [-77.22791383087635, 34.60988631444214], [-77.2281810788302, 34.60969962062093], [-77.22826836551411, 34.609622073561695], [-77.22832111310895, 34.60955027155036], [-77.2283566253251, 34.60947779376173], [-77.22849098598958, 34.60930304028657], [-77.22842852003863, 34.60910707881833], [-77.2286076911286, 34.60902624665446], [-77.22878643033025, 34.608897491734865], [-77.22884539095583, 34.60882047593872], [-77.22885628725855, 34.60879901619753]], [[-77.3653321369448, 34.52713031891592], [-77.36531684423714, 34.527142297982735], [-77.36522276644094, 34.52720127928297], [-77.36519376977776, 34.52725434528218], [-77.36524472640454, 34.52727510077726], [-77.3652485559412, 34.52733800973532], [-77.36527878419274, 34.5273926070655], [-77.36513097195063, 34.527543273734544], [-77.36513673805618, 34.52765789700751], [-77.36507863051499, 34.52775204720453], [-77.364939768541, 34.527810722083075], [-77.3648346903937, 34.52776756784033], [-77.36482922752947, 34.52770219853626], [-77.36474637851354, 34.527685237359464], [-77.36467436863353, 34.52767951064823], [-77.36455343390838, 34.527739098037166], [-77.3645488289064, 34.5277419331824], [-77.3645482414404, 34.52774231707114], [-77.36454736969529, 34.527742803615354], [-77.36454442265926, 34.527745919746], [-77.36442313358634, 34.527929801115626], [-77.36433282374747, 34.52801853656085], [-77.36414552979241, 34.52821430251112], [-77.3641072493584, 34.528272814556175], [-77.36408860567548, 34.52829854368904], [-77.3640098706397, 34.528391970343165], [-77.36393372203831, 34.52868510130562], [-77.36396598814889, 34.528805858386235], [-77.36399664716407, 34.52888475384124], [-77.3641296255274, 34.52891064117554], [-77.36426397978228, 34.52884580867827], [-77.364524617288, 34.52880220978776], [-77.36462445608126, 34.52877285617804], [-77.36466813383512, 34.528704708893756], [-77.36477715401963, 34.52859879702911], [-77.36476368428546, 34.528545485324166], [-77.36476998807001, 34.52844521003067], [-77.36481195072861, 34.528367366565575], [-77.36489078980777, 34.52820787562747], [-77.36489244605953, 34.52818274264544], [-77.36488905685388, 34.52815652427758], [-77.36493284342987, 34.52811404865801], [-77.36522896387449, 34.5278894363014], [-77.3652451439839, 34.52783307373815], [-77.36533197546626, 34.527824014724146], [-77.36537151136771, 34.527843955816195], [-77.36547502496427, 34.52785398697887], [-77.36552747458452, 34.527857140412905], [-77.36556030458394, 34.527862251115714], [-77.36554578980376, 34.52784379198409], [-77.36552963432214, 34.527762512709195], [-77.36552009041614, 34.52773147628188], [-77.36550951589007, 34.527726604940646], [-77.36552029271846, 34.52771860041993], [-77.36553067214997, 34.52771704087051], [-77.36559185819299, 34.52759232891094], [-77.36565259782562, 34.52753461887337], [-77.36567206574878, 34.52749573020973], [-77.36568533830814, 34.52745644820669], [-77.36565738147289, 34.52741276585269], [-77.36564754577313, 34.52739359795837], [-77.36557609880114, 34.527349773369394], [-77.36555841625315, 34.5272404281002], [-77.36555052005902, 34.52723104551744], [-77.36555342431097, 34.527223462129655], [-77.36559736296775, 34.52710188381649], [-77.36564562331708, 34.52703450195893], [-77.3656455959852, 34.52703298942773], [-77.36565028676858, 34.526971846057236], [-77.36564911253886, 34.52691201904174], [-77.36564952353245, 34.52690932123649], [-77.36564498864962, 34.5269100123283], [-77.36564032012183, 34.52691628863087], [-77.36563110731666, 34.526974609258495], [-77.36557736532498, 34.52700128716203], [-77.36554663808667, 34.52701750444625], [-77.36545412500493, 34.52706131364095], [-77.3654526521008, 34.527064781651355], [-77.3654397782061, 34.52706810749692], [-77.36534824030856, 34.527111454776346]], [[-77.30743160577002, 34.552851364208315], [-77.30743694744255, 34.55284846258555], [-77.30783372553715, 34.552633194168415], [-77.30792805685986, 34.55259077206287], [-77.30815813172987, 34.552499551283034], [-77.30823023526686, 34.55246860569397], [-77.30831158325549, 34.55242740645857], [-77.30845725848184, 34.552351635168705], [-77.3084491025136, 34.552323445724966], [-77.30850471254976, 34.55220498937027], [-77.30843446834294, 34.552131859519164], [-77.30840480179181, 34.552115662259084], [-77.30825901287992, 34.55213085091515], [-77.30823791851087, 34.552141648468925], [-77.30813022917187, 34.55219234777268], [-77.30791397773123, 34.55228979202724], [-77.30783951635047, 34.552386817520876], [-77.30776878009333, 34.5523552021253], [-77.30760343258632, 34.552432654899945], [-77.30744375013589, 34.5525197575044], [-77.3071957992644, 34.55263769379428], [-77.30743248166644, 34.55284628739092]], [[-77.2669003045993, 34.576904345628996], [-77.26688211467552, 34.57692015301913], [-77.2668823896456, 34.57692587556059], [-77.26687666029389, 34.57693108432481], [-77.26688414320095, 34.57693629939561], [-77.2668906278444, 34.57692772429033], [-77.26689181616062, 34.576926616839984], [-77.26689763805021, 34.57692322595501]], [[-77.32913755175534, 34.548276030549815], [-77.32916803849906, 34.548276537569954], [-77.32916341404835, 34.54825818498061], [-77.3291432778705, 34.54825777349418], [-77.32913800267373, 34.54825663660394], [-77.32877270921097, 34.54829672466808], [-77.32874525157854, 34.54826244813007], [-77.32858833280802, 34.548194855618824], [-77.32856649218466, 34.548099168414], [-77.32855281696037, 34.54809590395357], [-77.32837239696423, 34.54811685528287], [-77.32835604090634, 34.548116041323084], [-77.32826534063761, 34.54808545327357], [-77.32796394252284, 34.54809381400486], [-77.32777925423109, 34.5480972041078], [-77.32776754883915, 34.54809750803685], [-77.32768275263481, 34.54822618643812], [-77.32770550857958, 34.54830971679145], [-77.32769950386351, 34.548384452107804], [-77.32785622696065, 34.548446068130005], [-77.32790743185676, 34.54846851001358], [-77.32795194159556, 34.54860965948205], [-77.3279978559096, 34.54867052682695], [-77.32815729887538, 34.54876216373861], [-77.32815810821486, 34.54876990153692], [-77.32834091165125, 34.54876648610003], [-77.3284752448989, 34.54872431982926], [-77.32847953591013, 34.548686575082726], [-77.32850464495951, 34.54859768675201], [-77.32874217915221, 34.54839456610782], [-77.32881364318946, 34.54835240905705]], [[-77.2165972063386, 34.61891933319171], [-77.21708791308762, 34.61874278819157], [-77.21715264622686, 34.618686822301036], [-77.21718226073018, 34.618494182346645], [-77.2174624283995, 34.61841845750581], [-77.21752292225507, 34.618364683455894], [-77.21752186586653, 34.61828532456597], [-77.21755679337271, 34.61817364211506], [-77.21758174428288, 34.618159012260634], [-77.21754058935994, 34.61815922466606], [-77.21753435821896, 34.61817673244139], [-77.21743887632785, 34.61827876945924], [-77.21735747147085, 34.618325072597884], [-77.21718513734369, 34.618478950576936], [-77.21717098855382, 34.61849329196343], [-77.21699600564314, 34.61866101366795], [-77.21658510720188, 34.61883079346733], [-77.21651632311449, 34.618891772954576], [-77.21649964428615, 34.61891162643222], [-77.21630960325544, 34.619002071541416], [-77.21611759854729, 34.619117129276646], [-77.21629753745678, 34.61935466749178], [-77.21626479389204, 34.619364440013655], [-77.21595592706973, 34.6193794985715], [-77.21591090149259, 34.61951850723082], [-77.21600046715642, 34.619568414178204], [-77.21608085749999, 34.61949065629576], [-77.21631093956454, 34.61937186567153], [-77.21631427781118, 34.61936956231888], [-77.21631533284231, 34.619368432415406], [-77.21631810155773, 34.61936624144878], [-77.2165806023987, 34.61915370428255], [-77.21658060601123, 34.61894896885023]], [[-77.4045150850345, 34.57659680985469], [-77.40466857679301, 34.576585920970274], [-77.40490908559359, 34.576596915112376], [-77.40520531502483, 34.576343043855914], [-77.40490907351158, 34.57619042868974], [-77.4046548940842, 34.576271823782605], [-77.40460047143615, 34.57600577126697], [-77.40451506906837, 34.57595720117195], [-77.40432566384504, 34.575841334089525], [-77.40431806760262, 34.5758382195869], [-77.40431608098993, 34.57583667229591], [-77.40413758579906, 34.575878092694246], [-77.40412107102584, 34.57593697138805], [-77.40408985261215, 34.5760458290285], [-77.40407193027133, 34.576082059481685], [-77.40406432814547, 34.57614430751244], [-77.40407802633314, 34.57650575603614], [-77.4041210865044, 34.57670181509627], [-77.40421059133391, 34.57681475025624]], [[-77.35265063791891, 34.55516234974244], [-77.35285982010718, 34.55517507282037], [-77.35301289492782, 34.55516264856134], [-77.35332264461522, 34.55511008727426], [-77.35346363155773, 34.555045335633004], [-77.35332487832113, 34.555012790952915], [-77.35303009662768, 34.55504623799982], [-77.35293235481282, 34.55500766225768], [-77.35262443217127, 34.5549736366271]], [[-77.36388142063353, 34.52965310726185], [-77.36377646557298, 34.52977558996021], [-77.36395670125106, 34.52968973940234], [-77.36398977076979, 34.529614118819566]], [[-77.31283652189403, 34.5493797580613], [-77.3130148603775, 34.5493573071206], [-77.31301695920008, 34.549355124531175], [-77.3130187713182, 34.549353587554506], [-77.31303209570359, 34.549114055226475], [-77.31306194429176, 34.54910257804619], [-77.31327321380073, 34.54891757750963], [-77.31302164612401, 34.549067852356], [-77.3129973905127, 34.549097152333246], [-77.31298985314614, 34.54911293029334], [-77.31273367032989, 34.549325509750666]], [[-77.30982020516834, 34.55164213523358], [-77.30996288206386, 34.5515942902845], [-77.31001824444378, 34.55156884002676], [-77.31012288224842, 34.55154063589366], [-77.3102158128354, 34.5515155873571], [-77.31045307679676, 34.551435653139905], [-77.31024210128324, 34.551450505520364], [-77.3102172982155, 34.55145231457096], [-77.31014968324828, 34.551399735659416], [-77.31012120223761, 34.55136444124728], [-77.310087563622, 34.55136572665825], [-77.31002963447507, 34.5513698548043], [-77.31002290826896, 34.55137019488738], [-77.31001783861723, 34.55137261161205], [-77.30982407499631, 34.55147732503797], [-77.30977179813311, 34.55150122067964], [-77.30968270217772, 34.55154625681048], [-77.30958638762183, 34.55165936052084], [-77.30942681717458, 34.551674114326694], [-77.30933876479253, 34.551718039144596], [-77.30928346299652, 34.551760263348086], [-77.30922714674898, 34.551816821136285], [-77.30912579856448, 34.55187101772266], [-77.30922511363295, 34.55190338263908], [-77.30936496182801, 34.55183668252557], [-77.30940340858353, 34.55181868467868], [-77.30942377713659, 34.55180355919046], [-77.30947740388423, 34.55178734101033], [-77.30967623206482, 34.55170312039109]], [[-77.22534317082653, 34.61162203086166], [-77.22535166983398, 34.6115974383672], [-77.2253501527078, 34.61158004069388], [-77.22534561256553, 34.61152797238701], [-77.22520883896631, 34.611502517755966], [-77.22498488744668, 34.611568487208174], [-77.2248916243717, 34.611591716519825], [-77.2247691940382, 34.61176887065939], [-77.22473975092022, 34.61178481761369], [-77.224509186829, 34.611866295384196], [-77.22442201711212, 34.61192721092138], [-77.22437321777849, 34.611991564824024], [-77.22430728235574, 34.61201541402985], [-77.22422385126528, 34.61207748849381], [-77.22420161036158, 34.61209585848625], [-77.22412890536661, 34.61218546534697], [-77.2241086115625, 34.61220635730899], [-77.22402690438965, 34.61225867959061], [-77.22401568290358, 34.61241348501997], [-77.2238620688577, 34.6123754353709], [-77.22381229379931, 34.61241864605697], [-77.22376514521709, 34.6125193358711], [-77.22359045562308, 34.6126056070674], [-77.2238703821291, 34.6126129650939], [-77.22399832837394, 34.6125226865185], [-77.22407357541246, 34.612464991758074], [-77.22415036727399, 34.61244533395851], [-77.22453754410287, 34.61229071040491], [-77.22459184225274, 34.612268585136334], [-77.22459195416866, 34.61224451177547], [-77.22465900196535, 34.61220592670908], [-77.22489945420213, 34.61203310403372], [-77.2249438152464, 34.611924229180204], [-77.22514340507337, 34.611927159285045], [-77.22525165476007, 34.61182522421003]], [[-77.30346987563676, 34.554534263874494], [-77.3035156469577, 34.55451234306847], [-77.30347065898708, 34.55450100821662], [-77.30343670790941, 34.55452367176105]], [[-77.39978699089981, 34.57924988539917], [-77.3997891617599, 34.57924757850171], [-77.39999605594973, 34.579018423328066], [-77.4002564510663, 34.57875557510927], [-77.40045234705497, 34.578595105447135], [-77.40057503543976, 34.57844221252317], [-77.40079021551364, 34.57825397780854], [-77.4008647610442, 34.57813084057147], [-77.40088981298926, 34.57790041950895], [-77.40061437973985, 34.57789716140919], [-77.4005750462297, 34.577926530160155], [-77.40055664529605, 34.57788293774938], [-77.40055295246016, 34.57786364128648], [-77.40018104615781, 34.577632425851014], [-77.40010527465435, 34.577585318277535], [-77.39978704134545, 34.577580586781224], [-77.39973400263779, 34.577614393495324], [-77.399444097167, 34.5776540994006], [-77.39939303225297, 34.577661093275466], [-77.39934265766585, 34.57766799251746], [-77.3991960268235, 34.577716476513345], [-77.39913206995564, 34.57771301512986], [-77.39906792759905, 34.57772760184461], [-77.39899902250116, 34.577737245050756], [-77.39897529666626, 34.577747294742714], [-77.39891135790135, 34.5777704070742], [-77.39890051928423, 34.5777721354252], [-77.39889213574662, 34.57777582625534], [-77.39887022811897, 34.57778802103397], [-77.39882440398148, 34.577818758281296], [-77.39880201501704, 34.577829758728555], [-77.39874254812543, 34.57784850784344], [-77.39870351167752, 34.5778629160784], [-77.39860767864431, 34.57793204709707], [-77.39860625789464, 34.57793360048378], [-77.3986050065189, 34.57793485569589], [-77.39855753428716, 34.577992353927755], [-77.39855824568721, 34.577994937572065], [-77.39855575278835, 34.57799483737284], [-77.39853059605475, 34.57802334758165], [-77.39850649938329, 34.57804620767598], [-77.39850265856307, 34.57804920477206], [-77.39840799861439, 34.57801657335234], [-77.39833283273055, 34.57807784666123], [-77.39831857976208, 34.57808969482842], [-77.39826843506646, 34.5781313788409], [-77.39821098649315, 34.57817566762601], [-77.39819586784637, 34.57818746091609], [-77.39817146232065, 34.57820727298527], [-77.39794884449479, 34.57838150063225], [-77.39785534615402, 34.57846516916897], [-77.39781696025075, 34.57848902925031], [-77.3977598986084, 34.57854042494616], [-77.39770242301461, 34.578576102916344], [-77.39761994605999, 34.578644986547204], [-77.39746360349739, 34.57873397538514], [-77.3974424594063, 34.57875806619495], [-77.39742293251035, 34.57877726833872], [-77.39724113413465, 34.57899475946219], [-77.39695214816386, 34.57923233691932], [-77.3968277569912, 34.579458137665725], [-77.39689076578611, 34.579814563046675], [-77.39725983463171, 34.580037092101186], [-77.39735868991417, 34.580091972344036], [-77.39742285602937, 34.58010033153838], [-77.39749350256565, 34.5800795037187], [-77.3976349536135, 34.57998297241973], [-77.3978168833292, 34.579933310545], [-77.39786778076096, 34.57989453862227], [-77.39801389704387, 34.57983657496244], [-77.3981012476975, 34.57979753259686], [-77.39821090807217, 34.57978588105662], [-77.39825534119797, 34.579729053414596], [-77.39830941524048, 34.57972319955658], [-77.39833480285725, 34.579697067694866], [-77.39835487349957, 34.57966681670663], [-77.39835867011365, 34.579662893979005], [-77.39836522882565, 34.579658255488496], [-77.39838873703223, 34.57964125674155], [-77.39840792328543, 34.579638173525524], [-77.39841154970712, 34.579636011043576], [-77.39843083469218, 34.57963116891827], [-77.39843254962051, 34.57963106975721], [-77.3984359622637, 34.579632258538155], [-77.39845717555365, 34.57963274934876], [-77.39848406625352, 34.57962408047758], [-77.39850642843547, 34.57961343631306], [-77.398552480656, 34.57958178421255], [-77.39856389108581, 34.57957474173367], [-77.39860493555283, 34.5795420540015], [-77.39861532374746, 34.579534288188235], [-77.3986458802245, 34.57952763809841], [-77.39865418787973, 34.57953353786003], [-77.39869128694725, 34.57952523013775], [-77.39870343996382, 34.57953049280005], [-77.3987154538044, 34.57952159259384], [-77.39880194507595, 34.579501130114494], [-77.3988054954448, 34.57949948135025], [-77.39881857835216, 34.57949376801565], [-77.39887778713998, 34.579460803872244], [-77.39890045078018, 34.57945518673684], [-77.39892063795646, 34.57945728922296], [-77.39899756344248, 34.579467942780425], [-77.39899865003675, 34.57946811362192], [-77.398998954078, 34.57946816142516], [-77.39907377981646, 34.579482459501335], [-77.39913869642982, 34.5794920167011], [-77.39919596034011, 34.57950548587908], [-77.39923023935108, 34.57950357607582], [-77.39939296726794, 34.57952826628187], [-77.39957526593737, 34.57947487712592]], [[-77.36371935025662, 34.530070970794235], [-77.36371880597069, 34.530060623937715], [-77.36371155997867, 34.530029065603145], [-77.36370345083287, 34.53006323402708], [-77.36369227281696, 34.530069415236525], [-77.36344827586439, 34.53026541146586]], [[-77.2427247159996, 34.59741292096763], [-77.24281150287666, 34.597331670396514], [-77.2428037963398, 34.5970356070224], [-77.24252849004162, 34.59732562959833], [-77.2425124339004, 34.59739619149836], [-77.24247666896409, 34.59745699399923], [-77.24255356770976, 34.597529909975144], [-77.24268881009296, 34.59746824145209]], [[-77.40656345007599, 34.57623146099618], [-77.40659015795524, 34.57614314150395], [-77.40648505987372, 34.57603558332955], [-77.406326001166, 34.576009871204334], [-77.40628805959845, 34.57600373507551], [-77.4061406925789, 34.5762080238321], [-77.40628807705076, 34.57638224847105], [-77.40629397803949, 34.576391826945205], [-77.40633255968373, 34.57639261601963], [-77.40648507859042, 34.57642173164031], [-77.40652938188894, 34.57636420384205]], [[-77.35566859756986, 34.55863575155658], [-77.35577009747144, 34.55873476308601], [-77.35590589112873, 34.558824667960835], [-77.3560019039396, 34.55887603138979], [-77.35606238928511, 34.55887078952916], [-77.35611937607126, 34.55885534457044], [-77.35616087910326, 34.55885628619356], [-77.35623028080649, 34.55877797197682], [-77.35622438238013, 34.55874105304987], [-77.35624240907467, 34.55858238685303], [-77.35623357172473, 34.558565222379194], [-77.35610130977952, 34.55841365231571], [-77.35607012093453, 34.55837647559864], [-77.35606685704445, 34.5583724356175], [-77.35606267561523, 34.558367110949966], [-77.35587631924356, 34.55818078207355], [-77.3557705019494, 34.55799505416377], [-77.35572922501653, 34.55793608650035], [-77.35566901632302, 34.55790550363591], [-77.35548980186425, 34.557842271954605], [-77.35547209061413, 34.55784428463795], [-77.35545877004282, 34.557842009493896], [-77.35531540462179, 34.5578917246423], [-77.35534887782117, 34.557976181496386], [-77.35540244295132, 34.55804803547941], [-77.35544085454431, 34.55822135125425], [-77.35544008612783, 34.55828910917878], [-77.35546672544358, 34.55846333343226]], [[-77.362895362997, 34.53140833314608], [-77.36316865686044, 34.53129318709276], [-77.3632958206184, 34.53104522690167], [-77.36338439600432, 34.53090143720309], [-77.36340469879116, 34.530845315459416], [-77.36346284715728, 34.530737151573646], [-77.36331077012, 34.53039094955932], [-77.36330594617634, 34.530373152978676], [-77.36268391195712, 34.530560574294014], [-77.36251891771545, 34.530688710866926], [-77.36249299106458, 34.5307160352442], [-77.36247869820315, 34.53073387536062], [-77.36249081193108, 34.53074880382426], [-77.3625140146257, 34.530903210502174], [-77.36253300609297, 34.53095824786824], [-77.36263662676737, 34.53095595201437], [-77.36253110894894, 34.53098295001396], [-77.36257253528358, 34.53121000910316], [-77.36250505286098, 34.531295269279546], [-77.36244976071603, 34.53144009688675], [-77.36234633953342, 34.531487415021914], [-77.36227078777185, 34.53160137252353], [-77.36221863914687, 34.531628221209864], [-77.36216744886708, 34.531717726355446], [-77.36234982466468, 34.53173173801811], [-77.36249499184329, 34.53173541941478], [-77.36256186377251, 34.531701196323006], [-77.36277609578627, 34.53159889469832]], [[-77.42927302760737, 34.68330432796168], [-77.42960234380507, 34.68321933250066], [-77.4296636148855, 34.68335358638134], [-77.42975878379502, 34.683368941769366], [-77.42989886328911, 34.68330184274302], [-77.42995372337458, 34.68326286416371], [-77.42992633285142, 34.683206901450724], [-77.429873799788, 34.68318305909348], [-77.42979453596766, 34.6831087475598], [-77.42968276970325, 34.68312239980517], [-77.4296284193397, 34.683129210487046], [-77.42961307821807, 34.68313072245066], [-77.42958461867826, 34.683133771912644], [-77.4292602263475, 34.683294416657134], [-77.4292576788647, 34.683297520768484], [-77.42897107779689, 34.68318643215376], [-77.42896321714137, 34.68319001887857], [-77.42893307131155, 34.68318542807921], [-77.42886694127492, 34.68321957720099], [-77.42880851140187, 34.68319462267746], [-77.42877782287988, 34.68320101320737], [-77.42875340865973, 34.683220921246374], [-77.4287246454894, 34.68320764380764], [-77.42870834372034, 34.6832116544753], [-77.4287157493547, 34.68323838935205], [-77.42873249286147, 34.683240022147956], [-77.42876642292052, 34.68324219922298], [-77.42879473853318, 34.68324222265997], [-77.42883949646097, 34.68325116091427], [-77.42889005099111, 34.68325736086795], [-77.42895623831389, 34.68323771879199], [-77.42899306046907, 34.683238811629735], [-77.42925281407, 34.6833018490809], [-77.42925789553905, 34.68330247225298], [-77.42926093540277, 34.68330284504452]], [[-77.22083017630641, 34.615474774187476], [-77.22082149990536, 34.6154637895866], [-77.22080763367397, 34.61547692213214], [-77.2208001479324, 34.615480361948634], [-77.22050876132244, 34.61553977430614], [-77.22036503366492, 34.615648734527845], [-77.22034684914497, 34.61568024862863], [-77.22030569562423, 34.615687868013225], [-77.22027746258028, 34.61570520539594], [-77.22012193041687, 34.6157803280982], [-77.22010002079087, 34.615833640519874], [-77.22004495476341, 34.61589209014353], [-77.21998421674583, 34.61605937378421], [-77.21996064461598, 34.61612111394268], [-77.21985710350864, 34.616206046549436], [-77.21999486829222, 34.616262982877075], [-77.22009412175248, 34.6161571591271], [-77.22016187887294, 34.61609206513263], [-77.22027330827378, 34.6159101228309], [-77.22044003895563, 34.61580739640737], [-77.22044854277561, 34.61580117958076], [-77.22058760326074, 34.61569925999132], [-77.22061690097416, 34.615635988499776], [-77.22080623306233, 34.615493923645296], [-77.22081621036904, 34.61548455298309], [-77.22081983411377, 34.61548191643231]], [[-77.33694469233933, 34.55022618871856], [-77.33699625436871, 34.55010019199935], [-77.33702130693226, 34.55006625752644], [-77.33707530798176, 34.55001447122589], [-77.3370712860718, 34.54998363590019], [-77.33708682712835, 34.549934427122565], [-77.33705028932863, 34.549904822418576], [-77.33701120789914, 34.54990841411964], [-77.33695187177119, 34.54991614418505], [-77.33678709579792, 34.54995727121844], [-77.33672188464374, 34.54996663623747], [-77.33662800441293, 34.550077610839345], [-77.3366664912736, 34.55011727962778]], [[-77.24486716343277, 34.595461743536525], [-77.24486860864452, 34.59546078789411], [-77.24487538685283, 34.59545699814068], [-77.24486861048169, 34.59545510519424], [-77.24486393819691, 34.59545887459631], [-77.24486249219206, 34.595460305960884], [-77.24485931249126, 34.59546301498846]], [[-77.29251609259187, 34.5597820920944], [-77.29255716309034, 34.559762215825984], [-77.29274786058429, 34.55961695018148], [-77.29275818677968, 34.559611682060165], [-77.29278597754828, 34.55960133666019], [-77.2928651911699, 34.5595182865199], [-77.29275011752969, 34.55952164729764], [-77.29265954948968, 34.559563626134576], [-77.29257099011242, 34.55963216878323], [-77.29245539563428, 34.55971263476073]], [[-77.35422436220061, 34.55297726048744], [-77.35440024039715, 34.553044060710725], [-77.35439217296019, 34.55310160391656], [-77.3543220107462, 34.55310325390112], [-77.35415610789174, 34.55301059951921], [-77.35411436452719, 34.55299309379597], [-77.3541577617579, 34.552938531527666]], [[-77.31399010564985, 34.548090000318645], [-77.31390196941062, 34.54820090256533], [-77.31399475274229, 34.54823419303994], [-77.31402276712987, 34.5482330189524], [-77.31402668688008, 34.548229607039225], [-77.31405739584258, 34.548122773182484], [-77.31422420595644, 34.548014106649845], [-77.31430623441587, 34.54794465087187], [-77.31441896898555, 34.54781000142614], [-77.31422733040327, 34.54788075005192], [-77.31417066707357, 34.54792950065179], [-77.31412236624303, 34.54797105628781]], [[-77.35231120483047, 34.55472155924633], [-77.35238471725688, 34.5545690823204], [-77.35183028379004, 34.55458722608214], [-77.3520034790148, 34.55485753203941], [-77.35214948869165, 34.5549024599625], [-77.3522887749037, 34.554810316329466]], [[-77.22596362535435, 34.610938699425915], [-77.22599299197631, 34.610972218788326], [-77.22604833655306, 34.61097317267989], [-77.2260981913173, 34.610978767437985], [-77.22624473284199, 34.61100170129068], [-77.22638769482865, 34.6110082542661], [-77.22645051437787, 34.61101170114002], [-77.22649957491335, 34.61098099928665], [-77.22649976089262, 34.61096633379407], [-77.22653282912381, 34.61086578395243], [-77.22653081106398, 34.610853177060456], [-77.22640735122775, 34.610817220408194], [-77.22625621018628, 34.610790607153355], [-77.22610102508759, 34.610869154499134], [-77.22604394525877, 34.61093050584727]], [[-77.2236146167879, 34.61287440185852], [-77.22349980867122, 34.61267431925661], [-77.22337546092706, 34.612830143133486], [-77.22331593216893, 34.61285082229246], [-77.22317311969826, 34.612902979387734], [-77.22312717925834, 34.6129380018174], [-77.2230673588487, 34.612984940561525], [-77.2232768920581, 34.61307120213501], [-77.22330446964244, 34.61305992243288]], [[-77.42764252934356, 34.6850096468496], [-77.42760388399374, 34.68499439159843], [-77.42753802374244, 34.68497317172084], [-77.42751652064658, 34.685030851746006], [-77.42757978231013, 34.68504144626169], [-77.42762880859765, 34.68505706344775], [-77.42770550566838, 34.685063575802275], [-77.4277075666306, 34.685063400234654], [-77.42770844393118, 34.68506234954656], [-77.42770546930221, 34.68505997115108]], [[-77.31540556193787, 34.54656271670689], [-77.31534915675206, 34.546624100823735], [-77.31543226334642, 34.54672427275373], [-77.3155280946877, 34.54660310408755], [-77.31560664513252, 34.54653383634578], [-77.31576680373323, 34.5464709249787], [-77.3158318966004, 34.546424367021814], [-77.31597065027455, 34.546321766796495], [-77.31603129303674, 34.54629231795123], [-77.31608240908395, 34.54622069346517], [-77.31615808157137, 34.546164614035135], [-77.31623199414275, 34.5461045005341], [-77.31635527897892, 34.54605909575902], [-77.31639011956999, 34.54602918588054], [-77.31654653297221, 34.54590922002379], [-77.31623735953923, 34.54587526904309], [-77.3161518982603, 34.54591316567753], [-77.31604014221553, 34.54591428283078], [-77.31595229133762, 34.5459945712482], [-77.31589686347326, 34.54603739331683], [-77.31583967058991, 34.54609229679511], [-77.31575628897056, 34.546145127831075], [-77.31575703255317, 34.54621772867459], [-77.31572719410663, 34.54627171186264], [-77.3155844056259, 34.54638209154993], [-77.31543682708185, 34.54652936902036]], [[-77.28145270747113, 34.56457712142738], [-77.28144310026147, 34.5645836839907], [-77.28146600280178, 34.56458894424998], [-77.28152398419016, 34.564553368793646]], [[-77.35404132487369, 34.55654575261706], [-77.35406191061671, 34.556577499062314], [-77.35409407626426, 34.556643821919565], [-77.35418949013909, 34.55684601360319], [-77.35422844942131, 34.55694336913658], [-77.35433474219003, 34.55709295222003], [-77.35437205949324, 34.55713497366193], [-77.35448760848192, 34.55729631075087], [-77.35450070823818, 34.557314601484485], [-77.35451228348838, 34.55732706538523], [-77.35453496687161, 34.55737489106323], [-77.35462975339986, 34.557581329078936], [-77.3547704918609, 34.55759496763462], [-77.35488134643673, 34.557607014354616], [-77.35493153920646, 34.55763715351733], [-77.35501962784845, 34.557678588491356], [-77.35507825352187, 34.557698630020724], [-77.3551760772455, 34.55776287381719], [-77.35518078620163, 34.55776593811535], [-77.35527515574309, 34.557799395316295], [-77.35545779570073, 34.55781236575092], [-77.35538977537938, 34.557625307547], [-77.35534689894791, 34.55755431002407], [-77.35527534779641, 34.557467495165085], [-77.35520429835985, 34.55730413120917], [-77.3551737968082, 34.557231845622496], [-77.35507863433305, 34.55704336124483], [-77.35507546866222, 34.55703713965909], [-77.35507392938973, 34.55703394548318], [-77.35506981624128, 34.55702502220079], [-77.35497929790137, 34.556835291469156], [-77.35488191329199, 34.556635862825885], [-77.35480885382802, 34.55651409274107], [-77.35468505922547, 34.55645853277936], [-77.35468288174067, 34.55645575619066], [-77.35468095185165, 34.55645368539624], [-77.35459959904566, 34.55634529810733], [-77.35448817481807, 34.55633417412745], [-77.35435598524863, 34.556358005929816], [-77.35414214294994, 34.5564795413941], [-77.35409417060416, 34.55648486304464], [-77.35406243997562, 34.55650853019207]], [[-77.35668109729532, 34.559380192063855], [-77.35671047288176, 34.5594959320077], [-77.3568227719725, 34.55951256511254], [-77.35684987821905, 34.55952182373241], [-77.35686940466098, 34.55951403132761], [-77.3568784478537, 34.5595337691852], [-77.35686453426517, 34.55955158540296], [-77.35686749928588, 34.55972850611342], [-77.35688671495518, 34.55974485508968], [-77.35697251947178, 34.55981242942782], [-77.35704664446871, 34.55987870434762], [-77.35710788367835, 34.55985930437674], [-77.35717178930946, 34.55983866517645], [-77.35724364133604, 34.55982197424618], [-77.35732238416854, 34.55980955658198], [-77.35736995368389, 34.559811413509], [-77.35738215565478, 34.559736577495855], [-77.35740266951366, 34.55967057893437], [-77.35742250674352, 34.55964811295398], [-77.35744080774334, 34.55945717420693], [-77.35744184679085, 34.55945266279487], [-77.35744081088505, 34.55945147588932], [-77.35735173694664, 34.55934941794429], [-77.35727725724614, 34.5592640811008], [-77.35724396124195, 34.55924419101332], [-77.35706846000183, 34.559270992071745], [-77.35685879373004, 34.55911204651256], [-77.35685380506764, 34.55910878116193], [-77.3568501100417, 34.55910678457802], [-77.35683930822398, 34.55910320784598], [-77.35665320478937, 34.55900264835691], [-77.3565836932852, 34.55901428133593], [-77.35651925271665, 34.55901656789437], [-77.3564562276313, 34.55902695517756], [-77.35643499344155, 34.55906691682932], [-77.35645615408885, 34.559157480548215], [-77.3564672350606, 34.55915647167112], [-77.35645872335984, 34.55916963878127], [-77.35646169532899, 34.55917519372217], [-77.35651600335522, 34.55930907507398], [-77.35661946960343, 34.55932261033581], [-77.35665302152805, 34.55932930125223], [-77.35669184053792, 34.559306533412844], [-77.35668722617312, 34.5593490206991]], [[-77.33083180869859, 34.54939387166038], [-77.33084698765916, 34.549362665553005], [-77.33068402808001, 34.549308538225326], [-77.33051656952915, 34.549410162499754], [-77.33053012447188, 34.54943651020494], [-77.33061554359746, 34.549518342792624], [-77.33059865431893, 34.54957021391871], [-77.33067772294756, 34.549579942805096], [-77.33099223744149, 34.5495138534163], [-77.33107127557363, 34.54953986089623], [-77.33115170524994, 34.54963456244845], [-77.33143533927581, 34.54962879285678], [-77.33133228479082, 34.54949798293974], [-77.33113694832292, 34.54944339110982], [-77.33109979714631, 34.54943250217621], [-77.331073966135, 34.54942402212244], [-77.33094340544518, 34.54938930024562]], [[-77.281268895661, 34.56474222297841], [-77.28127326460444, 34.56473919824264], [-77.28126849200844, 34.56473987449869], [-77.28126751508778, 34.56474099530771], [-77.2812670518607, 34.564741526759605]], [[-77.32466367206287, 34.5470607378151], [-77.32453092344389, 34.547012409758985], [-77.32459274674483, 34.54711437580166], [-77.32478988367218, 34.54713850450427]], [[-77.3346552846923, 34.549672019742324], [-77.33463332065402, 34.54965575840207], [-77.33460273060197, 34.54963188259676], [-77.33440322571698, 34.54958315621474], [-77.33444108830965, 34.54970281696779], [-77.33452247907177, 34.549739597616174], [-77.33459841684063, 34.549817945705385], [-77.33489419011126, 34.54982215753804]], [[-77.21238182919231, 34.62213164251102], [-77.21243815645018, 34.62212598320546], [-77.21251393632619, 34.62207437015002], [-77.2126125635842, 34.62202192342226], [-77.21262701063709, 34.62200690384362], [-77.2127240150864, 34.62191288842893], [-77.21298109494884, 34.62171603277186], [-77.21255638085839, 34.62178721200398], [-77.2124658303162, 34.62186348737802], [-77.21243176070456, 34.62188979391587], [-77.21235294666624, 34.621927441423324], [-77.21233375401687, 34.62195806719759], [-77.21237771921301, 34.6220033653171], [-77.21237412349365, 34.622110681373705], [-77.21237800121428, 34.62212122959011]], [[-77.32679823345929, 34.547572406190405], [-77.32671644889888, 34.547630621462574], [-77.32679616117028, 34.54766142664696], [-77.32696401537191, 34.547734135193025], [-77.32705297404004, 34.54774358471822], [-77.32701311094938, 34.54769700464553], [-77.32685216731483, 34.547611116409385]], [[-77.34607458100078, 34.53400114903249], [-77.34603409455912, 34.533958255701], [-77.3459585239219, 34.53391011478182], [-77.3458685278393, 34.53398208011074], [-77.34580259261847, 34.5340182828723], [-77.34580343371871, 34.534052651858204], [-77.34583060508325, 34.534065088344846], [-77.34583005067086, 34.53409374683886], [-77.3458301672483, 34.534110010037935], [-77.34584288976154, 34.53411613003864], [-77.3458425762225, 34.53413089298091], [-77.34584251147564, 34.53413883626307], [-77.34584738613671, 34.5341428963686], [-77.34584732248175, 34.53414579460767], [-77.3458472587395, 34.53414869681332], [-77.34584721768559, 34.5341505660039], [-77.3458471539152, 34.53415346948764], [-77.34584713345993, 34.53415440082152], [-77.34584709005753, 34.534156376945035], [-77.34584706963193, 34.53415730692756], [-77.34584505412309, 34.53415974531433], [-77.34584394397669, 34.53416158200567], [-77.34584454810263, 34.5341629018198], [-77.34584229891043, 34.53416262475913], [-77.34584139581023, 34.534162513513095], [-77.34583928092093, 34.534162252995976], [-77.34583710985135, 34.534161985558455], [-77.34583618276116, 34.53416187135726], [-77.34583282389244, 34.53416145760363], [-77.345830066612, 34.53416111795508], [-77.3458249580589, 34.534160488670786], [-77.34582425606759, 34.53416039859672], [-77.3458231995402, 34.53416027205203], [-77.34581783431395, 34.5341596111498], [-77.3458106351973, 34.53415872434374], [-77.34580817662128, 34.534157481365995], [-77.34580564504395, 34.53415623818995], [-77.34579541142783, 34.53415205628212], [-77.34575943530302, 34.534152519725865], [-77.34575650165745, 34.53415950080569], [-77.34573936224062, 34.534153678875484], [-77.34571993646577, 34.534148829815294], [-77.34569561342202, 34.53415250154872], [-77.34569292709185, 34.53416926740866], [-77.34571904304977, 34.534187205169296], [-77.34575554792076, 34.53420086426148], [-77.34578600534688, 34.534219511062496], [-77.34581148230595, 34.53423510867525], [-77.3458523747583, 34.53425766138516], [-77.34587614536487, 34.53427197804889], [-77.34589881689756, 34.53428374665893], [-77.34594920109174, 34.53431448590216], [-77.3460452119005, 34.53426268102216], [-77.34604626773924, 34.534261094187826], [-77.34604865104671, 34.53425751227456], [-77.34609024799806, 34.53419499545509], [-77.3461086872648, 34.53416728274378], [-77.34613757934105, 34.53407415366709], [-77.34613922240423, 34.534065538151154], [-77.3461188227252, 34.53404802076568]], [[-77.32055066212479, 34.546105653795415], [-77.3206653413067, 34.54605198687389], [-77.32055279162799, 34.54601447119995], [-77.32025071639674, 34.54611155429627]], [[-77.32265461220015, 34.546500614507345], [-77.32250511238846, 34.546473784551594], [-77.32236668882702, 34.54645540230524], [-77.32244125731444, 34.54653127001962], [-77.32247874302624, 34.54654134387241], [-77.32250307353571, 34.546561173850364]], [[-77.36940858250286, 34.52017302058754], [-77.36939836896187, 34.52018870110275], [-77.36934427369917, 34.520249731531116], [-77.36942848375477, 34.52029927343252], [-77.36950167643745, 34.520218320899815], [-77.36962709443013, 34.520195061946275], [-77.36968860568722, 34.52014687435283], [-77.36975793384609, 34.520094661491896], [-77.36982611095759, 34.52007300820129], [-77.36983220178678, 34.520064973282814], [-77.36982661714002, 34.52005078333922], [-77.36978017174982, 34.52004038542808], [-77.36973869343151, 34.52001724233186], [-77.36966090096745, 34.5200099941547], [-77.3696330807422, 34.519932249086175], [-77.36961674222017, 34.51992273090316], [-77.36960377532056, 34.51991427226624], [-77.36953611326297, 34.51988173912727], [-77.36951566374313, 34.51992697028639], [-77.36950021098974, 34.519969251446476], [-77.36946662978073, 34.52003639022436], [-77.36950228416723, 34.52005131205617], [-77.36943298730084, 34.5201015776026]], [[-77.33761674283471, 34.550536371641456], [-77.33767162734497, 34.550553142083224], [-77.3376285944802, 34.55052740672912], [-77.33760120585978, 34.550518863646104]], [[-77.21762492290478, 34.61758641748439], [-77.21761066408429, 34.61759717373786], [-77.21761579620298, 34.617629010142316], [-77.2177331664725, 34.617594967138686], [-77.21764914689722, 34.617563189117526]], [[-77.43987311365825, 34.74685951753659], [-77.43982828721644, 34.746852735300706], [-77.43977941574833, 34.74685072935065], [-77.4397527511149, 34.74688424816801], [-77.43973369888896, 34.74691865916539], [-77.43973676603603, 34.74696798722137], [-77.43973434314051, 34.74700352996048], [-77.43977385432345, 34.74702855612609], [-77.43982352099616, 34.747030892714335], [-77.43986484059222, 34.74699023658845], [-77.43987994333042, 34.74696974778718], [-77.43988174194251, 34.74694203676844], [-77.43989477768122, 34.74690505169357]], [[-77.24505980537072, 34.59530442279392], [-77.24517695696031, 34.595262374622216], [-77.2451913236905, 34.59525054073721], [-77.24520074202844, 34.595215385143796], [-77.24516380933497, 34.59524837285926], [-77.24504752096104, 34.595293495469974], [-77.24503805350332, 34.59530426238245]], [[-77.34163600135295, 34.53801850539601], [-77.34154512141731, 34.53803930966075], [-77.34152574614494, 34.53803436609586], [-77.34148634723655, 34.537955486189595], [-77.3413674027514, 34.53793473483824], [-77.34152110777039, 34.53789557696197], [-77.34154837700382, 34.5378984132707], [-77.34157231493967, 34.53789044385428], [-77.34164745119668, 34.53785802364663], [-77.34167483000746, 34.53784621006233], [-77.34173548694905, 34.53782732425158], [-77.34174637976368, 34.537823932723924], [-77.34176201769448, 34.53782655352708], [-77.34180629916177, 34.53783408338298], [-77.34181457935838, 34.53785214046825], [-77.34182493015145, 34.53786891764001], [-77.34182238733197, 34.537882246497986], [-77.341815995567, 34.53791492928005], [-77.3418000073477, 34.53793370761002], [-77.34174231791948, 34.53799974042968], [-77.34173669518572, 34.5380005248563]], [[-77.39633010599837, 34.510305939800645], [-77.3962434192201, 34.510279830415996], [-77.39619470055584, 34.51032548561125], [-77.39624204389666, 34.510341054445036]], [[-77.30495665331537, 34.55375718331938], [-77.30482597063273, 34.55381274551703], [-77.30475774701486, 34.55390753809927], [-77.3049113444184, 34.55385433118184]], [[-77.32200646185208, 34.54641589362468], [-77.32208234231962, 34.54644115117594], [-77.32203623697815, 34.54639337685105], [-77.32192241712337, 34.54636100434413], [-77.32191885372318, 34.54636000473196], [-77.32191482243978, 34.54636209553088], [-77.32191879684022, 34.54636244210974]], [[-77.32137355455176, 34.546220210805096], [-77.32135329131698, 34.54619796125041], [-77.32134015394702, 34.546195869239824], [-77.32133385676477, 34.54619223729486], [-77.32129657126762, 34.54618272235356], [-77.32113820742131, 34.546164191063866], [-77.32103704468294, 34.54624339696964], [-77.3211363292477, 34.54624463642095], [-77.32132772762067, 34.54620526627544], [-77.32133355212888, 34.54620528667793]], [[-77.28193403591243, 34.56430782025825], [-77.28191022377256, 34.56430391960005], [-77.28189616210419, 34.564314351716604], [-77.2818427295764, 34.5643150708901], [-77.2817898103184, 34.56433374156471], [-77.28176877034804, 34.564365346545095], [-77.28173180224961, 34.5643836180449], [-77.28178819414407, 34.564382619022005], [-77.28189067114765, 34.56434259962015], [-77.28191969793475, 34.56433528073725]], [[-77.33444457392284, 34.55052250634999], [-77.33451310412529, 34.55050607202793], [-77.33455872496751, 34.55043616462396], [-77.33453951242957, 34.55042311476939], [-77.33438880547786, 34.55039156985785], [-77.33432757744518, 34.550453586432845], [-77.33438631362738, 34.55049903902626]], [[-77.36391477776083, 34.52917261113014], [-77.3639083073507, 34.5291814059347], [-77.36380951394501, 34.52924557059952], [-77.36380609604544, 34.5292703876407], [-77.36392391491887, 34.5293015703619], [-77.36392443046297, 34.529301899583075], [-77.3639255014593, 34.529301341814396], [-77.36396719506243, 34.529198117931585], [-77.3639765412068, 34.529141360603404]], [[-77.26565529105898, 34.57796501129727], [-77.26561755185207, 34.577982302196254], [-77.2655938158739, 34.57800288102603], [-77.2655983987788, 34.578020169164986], [-77.26561239647752, 34.578004342319744], [-77.26567432288259, 34.57798193759305], [-77.26568037519247, 34.577976266168974]], [[-77.33384795328023, 34.54954328001629], [-77.33401468395566, 34.54959372911619], [-77.334123513154, 34.549503661170974], [-77.33401818079791, 34.54944294789308]], [[-77.33069943327166, 34.54864542339664], [-77.33068519981846, 34.54865147675902], [-77.33069916573108, 34.54865693962995], [-77.3307673396133, 34.54868254978847], [-77.33071543558056, 34.54864713039473]], [[-77.2139228929116, 34.62075523903533], [-77.21398023030684, 34.62071589068864], [-77.21396242459036, 34.620677229761206], [-77.21392520031982, 34.620711542630474]], [[-77.40489258425802, 34.50772301301435], [-77.40483721169745, 34.50765543272853], [-77.40479270371816, 34.50773743836241], [-77.40483488402417, 34.50775952250228]], [[-77.34814784416851, 34.55311730858549], [-77.34806793986898, 34.55311336252007], [-77.34797917400591, 34.55307506667002], [-77.3479402009724, 34.55306686943544], [-77.34792168106421, 34.55311856363892], [-77.3479508726555, 34.553145650826025], [-77.34806691295368, 34.5531579691511]], [[-77.43849679294014, 34.75053951681336], [-77.43849184148195, 34.75052455209846], [-77.43848019768488, 34.750533719549885], [-77.43842616522547, 34.75056251822639], [-77.43848558314582, 34.75054617672716]], [[-77.26990107598304, 34.57445304678942], [-77.26991384442115, 34.57448726046059], [-77.26993935830053, 34.574456056374515], [-77.2699461758835, 34.574423328810376]], [[-77.40187359352066, 34.576698353896646], [-77.4018277559884, 34.57669440064868], [-77.4017727422136, 34.57682158439025], [-77.40178467884441, 34.57683674252018], [-77.40195407788576, 34.576865200873996], [-77.4020354418034, 34.57680055344861], [-77.40195407840723, 34.57676851894426]], [[-77.4347855899323, 34.75391297635319], [-77.43482396654733, 34.753868470904585], [-77.43480333209149, 34.75385168327888], [-77.43479153748065, 34.75385714175061]], [[-77.36942009386402, 34.52030798394121], [-77.36933102777958, 34.520270191864036], [-77.36929301258311, 34.520326297710454], [-77.36932921298555, 34.52034985332044]], [[-77.21171258409103, 34.62261994414676], [-77.21165651469828, 34.6226229412342], [-77.21160806347103, 34.62261812031278], [-77.21156017432328, 34.622645809507226], [-77.21154237377868, 34.62268577730897], [-77.21148967276243, 34.62273282905018], [-77.21162180049375, 34.62275645093406], [-77.21164806946031, 34.62274724250936], [-77.21186197806094, 34.62266966059154]], [[-77.3599867395045, 34.54807431267107], [-77.35999288150018, 34.548076582552284], [-77.3600053412279, 34.54807843135315], [-77.36000229842914, 34.548085082531955], [-77.35999536277303, 34.548085982899806], [-77.35998663039933, 34.548079081049636], [-77.35998451054748, 34.548077787946184]], [[-77.33953745043858, 34.55088259303727], [-77.33953052889308, 34.55088734071127], [-77.33952471845728, 34.55088803716126], [-77.33952520644584, 34.55088435397928], [-77.33953074756586, 34.55087788452778]]]]}, "type": "Feature", "id": "demo7", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.18337339005524, 34.63806456131876], [-77.18565093306229, 34.638245079433304], [-77.18689680409523, 34.63881093323493], [-77.19205094558153, 34.63893607047069], [-77.1932833070197, 34.64017298789065], [-77.1957661004802, 34.641374330827304], [-77.19736051157322, 34.64177726028186], [-77.19771946831963, 34.64211374474167], [-77.19983027664777, 34.64257656813858], [-77.20020945983903, 34.64265259616357], [-77.20045859232499, 34.64274581185113], [-77.20361398387391, 34.642757217013255], [-77.20628821347435, 34.64331951247588], [-77.20706945957703, 34.64336633806168], [-77.20982028858467, 34.64336634750631], [-77.21002629937048, 34.64336634750251], [-77.2092711534609, 34.64220462105509], [-77.20857271004205, 34.64138228454226], [-77.20906173600346, 34.63987785557712], [-77.20906171456865, 34.639344199301426], [-77.20699611524684, 34.637486713083085], [-77.20754328600648, 34.63697303002492], [-77.20955788676083, 34.63391822390154], [-77.20931232722586, 34.631516775656465], [-77.20323444769551, 34.63341831025434], [-77.20323441340273, 34.63469310809048], [-77.20028582997317, 34.636008146500735], [-77.1988835019174, 34.634332321449605], [-77.19776191020118, 34.63432978682535], [-77.19630202836704, 34.63286989169778], [-77.19618571070286, 34.632401914384815], [-77.19561989894964, 34.631898372499904], [-77.19377871604456, 34.63036274816484], [-77.19093320907399, 34.627830120558016], [-77.18912826249873, 34.62622343785512], [-77.1892271402478, 34.624767523020274], [-77.19141993392914, 34.62417859655902], [-77.19400764477861, 34.62176725513636], [-77.1964497988855, 34.621568486304014], [-77.19998932487108, 34.62128267517039], [-77.20112774652861, 34.621034914446426], [-77.20366126084026, 34.61928938259122], [-77.20515949423259, 34.619737920620096], [-77.20618924480081, 34.61984718937536], [-77.20803875773622, 34.62059981949076], [-77.2080889200192, 34.62061548348851], [-77.20811056827564, 34.620618428333], [-77.20811306099074, 34.62060569464358], [-77.20810825308477, 34.62059914008349], [-77.20952791229779, 34.61924922768448], [-77.2107447201337, 34.61892824029039], [-77.21139408136332, 34.61790128742428], [-77.21211718369646, 34.61715124202299], [-77.21249926561492, 34.61663251493705], [-77.21384553159689, 34.615402362807274], [-77.21501245225234, 34.613609590138616], [-77.21501297616946, 34.6136087007784], [-77.21635872479928, 34.61182996330169], [-77.21723461487338, 34.6103250767839], [-77.21748806424624, 34.610033756172314], [-77.21768289296537, 34.60967213990306], [-77.21884203634399, 34.6082552188456], [-77.22014933690538, 34.60765827172346], [-77.22152328130865, 34.60469608445155], [-77.22205540588548, 34.60409411637596], [-77.22284227990414, 34.60291481124184], [-77.22318460798697, 34.60246883886508], [-77.22328664562627, 34.60200718080192], [-77.22341599915917, 34.60165013070208], [-77.2234579831698, 34.60107797717379], [-77.2235184693328, 34.600142375262855], [-77.22352018005803, 34.60013737835931], [-77.22394091322019, 34.59923065946424], [-77.22434277001662, 34.598364555135866], [-77.22478595896027, 34.59741191055457], [-77.22524828537605, 34.59641503522983], [-77.22579724963046, 34.59560633184557], [-77.22599344235503, 34.59480815922049], [-77.22611217852054, 34.594553788776324], [-77.22652549479014, 34.593778390205614], [-77.22682733020034, 34.59361744254536], [-77.2281607770325, 34.593746776934125], [-77.2284539375314, 34.593735550137744], [-77.23087406420697, 34.592236174055586], [-77.23186216728926, 34.59178057509099], [-77.233266201397, 34.5908926829966], [-77.23355339706801, 34.590655608091794], [-77.23362919184194, 34.59056814118259], [-77.23377058322859, 34.59042866652482], [-77.2349878558592, 34.589302186280996], [-77.23615070153875, 34.588881612847004], [-77.23793599095222, 34.58833041291645], [-77.24048691654937, 34.588935514335205], [-77.24156247249573, 34.58782855260004], [-77.241867175336, 34.587533936150315], [-77.2420126541868, 34.58745842807508], [-77.2421333331879, 34.58729872626136], [-77.2427373755218, 34.58657285266913], [-77.24331820567227, 34.58619533644812], [-77.24505956790165, 34.58581316695003], [-77.2461676968058, 34.58539268558084], [-77.24740073972394, 34.584568403895844], [-77.24797081008234, 34.584157159055145], [-77.24931624489116, 34.583643067868884], [-77.25010543965763, 34.5828446659671], [-77.25051603333337, 34.58247227539151], [-77.25074273233926, 34.58228272518083], [-77.25126892867493, 34.58158888385957], [-77.2516161378245, 34.58128976076183], [-77.25210689457526, 34.58086696684965], [-77.25232773641372, 34.5807295789022], [-77.25301381218627, 34.580286076484285], [-77.25381772522442, 34.579759614634746], [-77.25508659675502, 34.579061431376175], [-77.25649628298675, 34.57830882070546], [-77.25775235410637, 34.57800125880124], [-77.25809870066342, 34.577413181168026], [-77.25891215226116, 34.57686587465541], [-77.2591934531044, 34.57665403241862], [-77.25930315534036, 34.576565295505766], [-77.25959965606481, 34.57635009223272], [-77.26038238581042, 34.57570753888936], [-77.26080815835697, 34.575461247258026], [-77.26153985002662, 34.57500393716978], [-77.26247955707157, 34.57431891246997], [-77.26280713814323, 34.57401297382343], [-77.26379302475323, 34.573309764798026], [-77.26398484414419, 34.57316294914503], [-77.2640546992555, 34.57309098510027], [-77.26518044069401, 34.57231431268832], [-77.26568829872753, 34.57191506835695], [-77.26649825272847, 34.57147529649684], [-77.2667766916806, 34.57131591320704], [-77.26737236648864, 34.57078406713856], [-77.26753791579489, 34.5706143862428], [-77.2682855297167, 34.57015711510725], [-77.26898700006396, 34.56959132441515], [-77.26953937410613, 34.56918620019449], [-77.2697990996637, 34.56899921831215], [-77.26993199847179, 34.568917296327825], [-77.27065193630085, 34.56844334243719], [-77.27117657343395, 34.56807247331006], [-77.27187938829735, 34.56734090959969], [-77.27199586476996, 34.567194211076156], [-77.27207882494355, 34.567083669912684], [-77.27235754159008, 34.566946419230476], [-77.27325008684473, 34.5663501320345], [-77.27385704770867, 34.56603648757882], [-77.27435233277089, 34.565679420363836], [-77.2745414490055, 34.56550896269479], [-77.27490429774818, 34.56524309222512], [-77.27541628124825, 34.56479456057466], [-77.2756576507572, 34.564654016251275], [-77.27636551831047, 34.564190136259455], [-77.27689349344259, 34.56380846101624], [-77.27730642623187, 34.563528100270865], [-77.27802565403243, 34.56303964912628], [-77.27895701986012, 34.562416414842744], [-77.2795219264956, 34.562046169307784], [-77.28060532594787, 34.56139885500873], [-77.28196365512316, 34.560613934410675], [-77.28225259803867, 34.56042299061405], [-77.28242666292638, 34.560305531788764], [-77.28390266813429, 34.55932784092439], [-77.28501711232624, 34.558540160978325], [-77.28663684847622, 34.557377598195934], [-77.2872057447126, 34.557008305105775], [-77.28757889416357, 34.5567724993177], [-77.29045831618798, 34.55507949512108], [-77.29049990667473, 34.55505685938834], [-77.29051927302827, 34.55504219327046], [-77.2905576193778, 34.55502483698793], [-77.29209088621144, 34.55419798994211], [-77.29239284529108, 34.55396728295081], [-77.29285610012275, 34.55371599036748], [-77.29368474957893, 34.55321587000451], [-77.2942022859225, 34.55286112428274], [-77.29514580932128, 34.55240835490347], [-77.29527602664771, 34.552341458535444], [-77.29610410044631, 34.55179997047378], [-77.2968748382944, 34.5511468134557], [-77.29769659827697, 34.55058811436014], [-77.29875387332108, 34.54993228980431], [-77.2993907743705, 34.549425791278736], [-77.30006411368576, 34.549105362998304], [-77.30132141790807, 34.548378687014406], [-77.30283427240785, 34.54738832330253], [-77.30304312790018, 34.547229783338516], [-77.30325244862136, 34.547097048021826], [-77.30438671203261, 34.54646751303123], [-77.30484404016764, 34.546199802025505], [-77.30491699676494, 34.54615501009904], [-77.30501534567598, 34.546096059481286], [-77.30643650753088, 34.54526382507266], [-77.30675702029629, 34.545063740161304], [-77.30719730907558, 34.544803615983255], [-77.30803113100663, 34.5442345541061], [-77.30852713319742, 34.54393841426764], [-77.30962471479998, 34.54324783927847], [-77.3103480961349, 34.54283785801124], [-77.31141472648926, 34.54223962308649], [-77.3128078705765, 34.54144054806097], [-77.31420381948719, 34.5407408816011], [-77.31550879984135, 34.53998862137358], [-77.3159890259896, 34.53971262643691], [-77.31610109522059, 34.539677488464164], [-77.31632797943277, 34.53957552559574], [-77.31757479734723, 34.53905194518492], [-77.3182993399634, 34.53876067586793], [-77.31915948093919, 34.53843666924898], [-77.31938594397914, 34.53829617249843], [-77.31963910540247, 34.538120623157894], [-77.3200885389387, 34.537644632850125], [-77.3215680667781, 34.53686421963579], [-77.32200026881105, 34.53658826209465], [-77.32234743552523, 34.53640645180821], [-77.32341461540986, 34.5359401404478], [-77.3240959099464, 34.535621461337094], [-77.3242583366164, 34.53549838518671], [-77.32552498747395, 34.53481589341871], [-77.32602873291125, 34.53457535493894], [-77.32664720610191, 34.53417579657511], [-77.32695798682937, 34.53403420473505], [-77.32711580998824, 34.53393067917004], [-77.32728101061875, 34.533694671055876], [-77.32736479316239, 34.53358302682787], [-77.32751880121731, 34.53348205928537], [-77.32776813227296, 34.53343505038003], [-77.32785294463805, 34.533268044613294], [-77.32791711562601, 34.533234222870554], [-77.32817475595705, 34.53313622855113], [-77.32848435982315, 34.53293246546107], [-77.32854459807547, 34.5328194946264], [-77.32871620549746, 34.53263244109451], [-77.32895788693082, 34.532374765247724], [-77.329164510071, 34.53212770334037], [-77.32919495648038, 34.532095870673885], [-77.32940959306055, 34.53199863453076], [-77.32951835116067, 34.531898741138015], [-77.32962115713171, 34.53185324268634], [-77.3296683168196, 34.53178300571176], [-77.32962995212887, 34.531721489241455], [-77.32954116650819, 34.531565872002034], [-77.329817679494, 34.531579479971896], [-77.32991815530198, 34.53158623480242], [-77.3300033380167, 34.53154251929749], [-77.33031406133227, 34.531441305582405], [-77.33059897019024, 34.53133573969127], [-77.3308824368193, 34.53125664970898], [-77.33110380030634, 34.53124048351982], [-77.33140631195364, 34.531232052518384], [-77.3315617509749, 34.531225392427054], [-77.33168652853936, 34.531248031588646], [-77.33184714476275, 34.531250812489965], [-77.331888390474, 34.531261175866256], [-77.33211245268507, 34.531291426519786], [-77.33225690963097, 34.53141083735388], [-77.33227705275446, 34.53142797271238], [-77.33240728579209, 34.53155102614617], [-77.33264753191816, 34.53159948759854], [-77.3326654048289, 34.53160819492522], [-77.33268048151712, 34.53160409348368], [-77.33273284475023, 34.53158722070551], [-77.33283462988055, 34.53155494807475], [-77.33278072693902, 34.531509836185045], [-77.33272076424129, 34.53146654972262], [-77.33266990332118, 34.53141442245129], [-77.33256970030706, 34.53142815818855], [-77.33260131039779, 34.53136131763133], [-77.33258206010117, 34.5313077551595], [-77.33252795204811, 34.531218419541446], [-77.33244663293877, 34.531138742009816], [-77.33247197394525, 34.53101944572758], [-77.33247845300757, 34.530889350773904], [-77.33249177062976, 34.53076696291049], [-77.33246334832899, 34.530646706663035], [-77.33242475544122, 34.530572524375415], [-77.33233538199644, 34.53042029059428], [-77.33232610451509, 34.530405834363584], [-77.33230147543291, 34.530376183284766], [-77.33220082449631, 34.53025928947265], [-77.33213679473576, 34.53020402843212], [-77.33213657858656, 34.53009717469793], [-77.33230907651873, 34.53004883564191], [-77.33256159271184, 34.52989813244861], [-77.3326453954575, 34.529848118473396], [-77.33270712101566, 34.52981128009691], [-77.33278423603961, 34.529817926703075], [-77.33277164416592, 34.52986792947186], [-77.33285867635757, 34.529951975683154], [-77.33288892029414, 34.52998005247827], [-77.3328992099399, 34.529991144591804], [-77.33294996258601, 34.53005453348823], [-77.33297331000361, 34.530083747897706], [-77.33301093007236, 34.530129071066895], [-77.3330633927538, 34.530193202833615], [-77.3330903701103, 34.5302110584142], [-77.33315344646056, 34.53026257617733], [-77.33321331085172, 34.530294053791216], [-77.33324472081452, 34.5303141859398], [-77.33325380125267, 34.53034943562285], [-77.33328265586783, 34.530382516920334], [-77.3332941211237, 34.530397474706255], [-77.33331514609674, 34.53040181867691], [-77.33334050410073, 34.530435011330916], [-77.33337064611254, 34.53046024286964], [-77.33345573269247, 34.53049112068586], [-77.33339492088793, 34.530441878257015], [-77.33341597566117, 34.530387319960475], [-77.33338159534631, 34.53034775352102], [-77.3333724681423, 34.53033820280619], [-77.33335013976495, 34.53033558273956], [-77.3333592182284, 34.53031991809432], [-77.3333489266563, 34.53027455309235], [-77.33332692524795, 34.53017998734978], [-77.33332192483454, 34.53013511713722], [-77.33329042992092, 34.53004755078014], [-77.33328708638923, 34.530040812039786], [-77.33328556557517, 34.53003884785669], [-77.33322933656243, 34.52996384004891], [-77.33319623967168, 34.52992928422499], [-77.33312059434381, 34.52983110362837], [-77.3331262018088, 34.5298169471045], [-77.33330537048948, 34.529672667316134], [-77.3334987207296, 34.529529319672164], [-77.33396927361214, 34.529695715625685], [-77.33409418190831, 34.52979219783521], [-77.33409277045934, 34.52992277361631], [-77.33427290762066, 34.52999776880926], [-77.33443370833429, 34.53001798026425], [-77.33449562385621, 34.53000383615774], [-77.33456725609436, 34.52991694449275], [-77.3345731961329, 34.52985368696122], [-77.33457576275637, 34.529794448061025], [-77.33482413408272, 34.52972260175811], [-77.3350653341704, 34.52967996027923], [-77.33527578464279, 34.529863553963196], [-77.3354545199229, 34.529824089104125], [-77.33561751085958, 34.52980488297743], [-77.33583462776808, 34.52944075049324], [-77.33577411087589, 34.529436165899575], [-77.3358341014664, 34.529413528911455], [-77.33585646139089, 34.529417935050404], [-77.33586080380933, 34.52942094639747], [-77.33586745047924, 34.52942274238159], [-77.33599709273942, 34.52949289221881], [-77.33621787754836, 34.52963344960683], [-77.33624353501062, 34.529653205127445], [-77.33636075169194, 34.52984143059115], [-77.33643224119061, 34.52995392469555], [-77.33662744002572, 34.53002532974408], [-77.3367738288837, 34.53017814547601], [-77.33701591580827, 34.53020027783486], [-77.33708264399877, 34.530227240370934], [-77.33714905109906, 34.53037691912537], [-77.33718120589148, 34.53045788189769], [-77.33730926816409, 34.530628611972986], [-77.33729003497668, 34.53068704661663], [-77.33739559752392, 34.53075501730116], [-77.33776745496046, 34.530851699587096], [-77.33778636021819, 34.530831408224444], [-77.33780083845612, 34.53084911040011], [-77.33818275158916, 34.53066468279374], [-77.33846701335429, 34.530827749408665], [-77.33861772743852, 34.53098571619452], [-77.33879662096822, 34.5310610348876], [-77.33895581393374, 34.531183227617646], [-77.33907516916503, 34.531332952933994], [-77.33923913648279, 34.53138596839304], [-77.33928433181357, 34.531590233363374], [-77.33928924263087, 34.53162357954307], [-77.33932074331854, 34.53162982043149], [-77.33933798240693, 34.531631223925686], [-77.33958197425366, 34.53173514493388], [-77.33972708406851, 34.53177965928461], [-77.33977387092261, 34.53179868632498], [-77.33977833958754, 34.531830747782585], [-77.34002687243408, 34.53200711089341], [-77.34005728020594, 34.53203789229759], [-77.34011044304398, 34.53217647272972], [-77.34020820160487, 34.53216503981068], [-77.34016615422577, 34.53223189368063], [-77.34030414394483, 34.53228752071711], [-77.34042103007317, 34.53219522964649], [-77.34038026110092, 34.532123796841496], [-77.34050508133814, 34.53208560978869], [-77.34056455924045, 34.53213674971343], [-77.34063220276198, 34.532164851590395], [-77.34068973550727, 34.53227446404873], [-77.34082583044574, 34.53238181616166], [-77.34084694805344, 34.532405764533046], [-77.34089013511155, 34.5324093230385], [-77.34116961233143, 34.532577179499036], [-77.34121726707812, 34.53260824910449], [-77.34127635281025, 34.53268280352914], [-77.34152877389502, 34.532855233091084], [-77.34166417394883, 34.53288699914832], [-77.34175170319673, 34.53292789799419], [-77.34184696646702, 34.532969372572936], [-77.34196427009431, 34.53300840287099], [-77.34205408125813, 34.53300097228349], [-77.34232861151698, 34.53314489975064], [-77.34231239878201, 34.53322767801379], [-77.34243996113155, 34.533289353567795], [-77.34262069582083, 34.5333476971902], [-77.34278193131982, 34.53335509401125], [-77.3428295750681, 34.53341615034645], [-77.3429376115635, 34.533546921600994], [-77.34282178082162, 34.53375366854831], [-77.34279840225828, 34.53379782427154], [-77.3427565209758, 34.53381779426358], [-77.34268923152939, 34.53390792045613], [-77.34252805950682, 34.53409548156384], [-77.34248007549218, 34.534139651681755], [-77.34241842152177, 34.534221905492714], [-77.34219686658625, 34.534280461765974], [-77.3420258415375, 34.53422335402935], [-77.34172742744707, 34.53427004276327], [-77.34123886131111, 34.534304995329805], [-77.34077480663612, 34.53459252157429], [-77.34090177926136, 34.53486169161146], [-77.34047094064957, 34.53512586744283], [-77.33994793692554, 34.53539093180979], [-77.33964374405653, 34.53538270736509], [-77.33950115785458, 34.53535469628654], [-77.33925284298286, 34.53531131558347], [-77.33923827258624, 34.53530318088681], [-77.33923983286462, 34.53529460146332], [-77.33909727551134, 34.53517759375474], [-77.33888630765891, 34.53512248917029], [-77.33886454857357, 34.53512729888519], [-77.33885881309135, 34.535116673367895], [-77.3388536873068, 34.53511368032153], [-77.33866929757518, 34.53508301363486], [-77.33858467335983, 34.53508274501028], [-77.33847311998932, 34.535078771541706], [-77.33838445550735, 34.53512656466706], [-77.33834740171181, 34.535186500555625], [-77.3383631712233, 34.53525032644267], [-77.33836789738612, 34.535305961600436], [-77.3384147205057, 34.53538970270017], [-77.33840076234762, 34.535423643414056], [-77.33846388852919, 34.53547763755317], [-77.3386946151212, 34.53548223539693], [-77.33881389359368, 34.53583244227408], [-77.33881345210304, 34.535853920960946], [-77.3386944584577, 34.53596502352662], [-77.33850299822642, 34.53617788994212], [-77.33813847040636, 34.53644063899028], [-77.33812222910893, 34.53648932009385], [-77.33804644752449, 34.536552746742046], [-77.33726936190531, 34.53706771825288], [-77.33724919476037, 34.53707677017847], [-77.3371347458214, 34.537145021230245], [-77.33680853702973, 34.53734017369161], [-77.33683632358519, 34.537362367528424], [-77.33682889769942, 34.53737640427733], [-77.33684979191926, 34.537372138290486], [-77.33710464559513, 34.53756859565897], [-77.33712783198234, 34.53763291543306], [-77.33710560644741, 34.537733208400645], [-77.33713234505916, 34.537809429399566], [-77.33712851909686, 34.53786856598806], [-77.33713066706501, 34.53787210246932], [-77.33719660527946, 34.537922596348196], [-77.3372287377704, 34.53796013514449], [-77.33733911824281, 34.53795573548079], [-77.33735725899982, 34.53802190000629], [-77.33736940498815, 34.53811004285609], [-77.33750776774055, 34.538245071376316], [-77.33754449450693, 34.538283027291996], [-77.33761220260794, 34.53835319083701], [-77.33774489361235, 34.538455785253554], [-77.33773826634194, 34.53853802452702], [-77.33777397456062, 34.53859208505938], [-77.33784622479095, 34.53868602911855], [-77.33787068503601, 34.5387602539872], [-77.3378711981982, 34.5388048462637], [-77.33790408635092, 34.53886715556166], [-77.33793153620364, 34.53891857703256], [-77.33794333450362, 34.53894662604015], [-77.33798946403112, 34.53901438698972], [-77.33799660027238, 34.53902699582322], [-77.33800034645027, 34.53903108941281], [-77.33805489822902, 34.53910355850215], [-77.33812015551172, 34.539136266732754], [-77.33810121054171, 34.5392115254721], [-77.33813844374411, 34.53928168780481], [-77.33817761855799, 34.53936565829245], [-77.33818291410235, 34.539372058284], [-77.33820558941754, 34.53947222425209], [-77.3382056701612, 34.53951078261859], [-77.33821508650038, 34.53961224856245], [-77.33820256499547, 34.53971584609533], [-77.33818918398273, 34.539860791535816], [-77.33824222046385, 34.53992718022796], [-77.33825378331514, 34.54003101129936], [-77.33820864089908, 34.5401028107716], [-77.33821437561413, 34.54018957946725], [-77.33831620929851, 34.54033215761752], [-77.33835066683804, 34.54036972045413], [-77.33840572798489, 34.54052748624798], [-77.33841269920455, 34.54056309769792], [-77.33843340573642, 34.540615260661305], [-77.33843617579134, 34.5406821300123], [-77.33840731752807, 34.540767618378396], [-77.33841771922454, 34.540807193270666], [-77.33840319312759, 34.54101207310093], [-77.33842404637294, 34.54105110090367], [-77.33837484535367, 34.54108355774839], [-77.33836661448903, 34.54128108030767], [-77.33836995939909, 34.54130369759456], [-77.33838044317181, 34.54133468543686], [-77.33841076806024, 34.54142023716601], [-77.33843399890463, 34.541471437627465], [-77.33844973517706, 34.54153704150044], [-77.33850082457703, 34.54164169075051], [-77.33851862593795, 34.54177195101765], [-77.33859551909217, 34.54183191514765], [-77.33863762912094, 34.541877244458504], [-77.33870680063032, 34.5419446843407], [-77.33872380156993, 34.54197620291271], [-77.33872996812039, 34.54198637268881], [-77.33874310434044, 34.54200803668793], [-77.33879058329103, 34.54216701695943], [-77.33882047136329, 34.542218173630815], [-77.3389123743957, 34.54231621594526], [-77.33891773430196, 34.542326593695094], [-77.3389298016562, 34.54234732320421], [-77.33891247852202, 34.542449758352575], [-77.338997961969, 34.542492803521526], [-77.339022741414, 34.54255630864358], [-77.33903273134055, 34.542587168092794], [-77.33903654634818, 34.54264768792477], [-77.33900670541743, 34.54268102394623], [-77.33896886992403, 34.54275614809785], [-77.33893954175015, 34.542848867765926], [-77.33892198769792, 34.54293802623103], [-77.33899520865856, 34.542977558590096], [-77.33907427896408, 34.543029908848354], [-77.33907832641523, 34.54303534723453], [-77.33908007597803, 34.54303769803999], [-77.33908448969521, 34.54304362854752], [-77.33913578287346, 34.543112548877225], [-77.33921794383077, 34.54314027776204], [-77.33926733039527, 34.543170104604336], [-77.33931002649373, 34.54315341819601], [-77.33936581780014, 34.5431554017965], [-77.3394059217936, 34.54314952165959], [-77.3394639525229, 34.543155945726255], [-77.33947239101713, 34.54315957088022], [-77.33947407025786, 34.54316464387108], [-77.3395138080892, 34.54318857244723], [-77.33952622742633, 34.54319656241965], [-77.33955144688105, 34.54321471925631], [-77.33955214984785, 34.5432199005432], [-77.33956045052106, 34.54322725820274], [-77.33957765263386, 34.54326094154921], [-77.3396569184659, 34.54329987720011], [-77.33968295142547, 34.54331821378393], [-77.33970439462848, 34.54340639635212], [-77.3398494909972, 34.54346084996232], [-77.33991902805249, 34.54348535976866], [-77.33997228763275, 34.5435214156945], [-77.34008259655326, 34.54360295491448], [-77.34010983995091, 34.543624040111304], [-77.34022026805958, 34.543720709457375], [-77.34022965495257, 34.543729215592315], [-77.34022934591266, 34.543733274272384], [-77.34023569904826, 34.54373691266462], [-77.34037179624582, 34.54386684566791], [-77.34053014084297, 34.543930812736846], [-77.3406219056398, 34.54401314691506], [-77.34073920261899, 34.54407157213914], [-77.34092676854713, 34.54406461425557], [-77.3410140555074, 34.5440323161358], [-77.34105128445582, 34.54407681284811], [-77.3411114165975, 34.54406637813836], [-77.34113535178327, 34.54408857738201], [-77.34114242716224, 34.54412853061176], [-77.34120724561686, 34.54416674479889], [-77.3412299919913, 34.54418295515275], [-77.34126189462535, 34.54422774186483], [-77.34118870151943, 34.54432572167005], [-77.34139766943025, 34.544420925652275], [-77.34155297733065, 34.54442128700927], [-77.34174125266156, 34.544491058414735], [-77.34174644700212, 34.544516261756925], [-77.34178838244749, 34.544502376569895], [-77.34183479088192, 34.54450660393563], [-77.34204024446433, 34.54453533385653], [-77.34217713766509, 34.544668624811116], [-77.34217947366675, 34.54467134352535], [-77.34218044773692, 34.544672699267224], [-77.34229822790962, 34.54482284316016], [-77.34256034029998, 34.54507540105686], [-77.34258226886138, 34.54509064001759], [-77.3425876367557, 34.54510376167981], [-77.34260631951874, 34.54513054010008], [-77.34268363396106, 34.54521236151443], [-77.3427073622505, 34.545237344775245], [-77.34275195524906, 34.5452782595801], [-77.34281294347004, 34.54531616914003], [-77.34286831761288, 34.545356918226915], [-77.34294479457414, 34.54542812387091], [-77.3430915660881, 34.54552090627977], [-77.3431513387817, 34.545625487281804], [-77.3433309842119, 34.545705802653394], [-77.34334414554158, 34.54572096431171], [-77.343382335715, 34.545723895697094], [-77.34346322432131, 34.54575154743932], [-77.34352634012076, 34.545746711987185], [-77.34354340943507, 34.54576192835634], [-77.34358464884964, 34.54578035583294], [-77.34360578933185, 34.54580331207761], [-77.34359749103254, 34.54581535288848], [-77.34362259494489, 34.54582883546918], [-77.34363822450115, 34.545860495736264], [-77.3436890556678, 34.54590593835521], [-77.34368262048628, 34.545925515573245], [-77.34369189163314, 34.545940566456764], [-77.34371791382104, 34.54595152505544], [-77.34378793204775, 34.54610925251769], [-77.34382599781823, 34.546149708021396], [-77.34408360807704, 34.54634636864556], [-77.34408878741064, 34.54635672141997], [-77.3440896166932, 34.546363703703705], [-77.34410082566764, 34.546371483366734], [-77.3442750838863, 34.54670608062064], [-77.34448629575107, 34.54668070631665], [-77.34458734217515, 34.54677463453066], [-77.3446018351294, 34.54694156877265], [-77.34486907513256, 34.54710672148153], [-77.34494104794888, 34.547167629393215], [-77.34495386642996, 34.54721154168689], [-77.34507415004751, 34.54730827797885], [-77.34508140791046, 34.5473156019537], [-77.34510776851862, 34.54734162057065], [-77.34516212048908, 34.54742639940514], [-77.34518700393848, 34.54746424557684], [-77.34525186784853, 34.547532328647996], [-77.34530385516108, 34.547617189203564], [-77.3453288615382, 34.54764722937811], [-77.34538190660959, 34.547799487378114], [-77.3455023332861, 34.54786709085434], [-77.3455596660706, 34.547906350437586], [-77.34563498483455, 34.54794403994627], [-77.34565563010085, 34.54796744517019], [-77.34568861293931, 34.54805014345201], [-77.34571367403692, 34.54808150379938], [-77.34578977349315, 34.54817032890454], [-77.34585601386186, 34.54830584409511], [-77.34587186267416, 34.548394203154814], [-77.34601587332732, 34.54845260437205], [-77.3460694534063, 34.54851995469503], [-77.34610838052909, 34.54857377974875], [-77.34614460604611, 34.548670556045764], [-77.34620661281653, 34.548694152213834], [-77.34624270100285, 34.548739847836664], [-77.3462687639687, 34.54881797319091], [-77.34639769365185, 34.54892093550031], [-77.34642879639807, 34.5489382488008], [-77.34644008959543, 34.54895626728329], [-77.34647570063046, 34.54900093516329], [-77.34658605914686, 34.5491800847659], [-77.34665859248301, 34.54924709561067], [-77.34678022399589, 34.54935863620695], [-77.346814602931, 34.54939202126171], [-77.34693948715284, 34.54951728291375], [-77.34699434392799, 34.549610979244406], [-77.34706913310235, 34.54966054935971], [-77.34716307403636, 34.54978263306655], [-77.34719610360034, 34.54980583984273], [-77.34720777077173, 34.5498250903092], [-77.34722243952505, 34.549861124829306], [-77.34728729992167, 34.54993605720698], [-77.34730914697549, 34.54996166755947], [-77.3474133416081, 34.55004033131858], [-77.34743997369995, 34.55010404064737], [-77.34753614485369, 34.55026748170436], [-77.34754014926813, 34.55026960455508], [-77.34754434729321, 34.55027526899545], [-77.34769059627916, 34.55039713389829], [-77.34773068948684, 34.55048430901144], [-77.34773565233293, 34.550492633713844], [-77.34780230090998, 34.550553975199094], [-77.34785255008799, 34.55066454465863], [-77.34789460248649, 34.55070554372262], [-77.3479026356118, 34.55071941907387], [-77.34791291570934, 34.55076411371703], [-77.34792534553856, 34.550780047773095], [-77.34795261064077, 34.55080228657168], [-77.34798246114262, 34.550815311774954], [-77.34802184639732, 34.5508519246535], [-77.34803932561334, 34.55085735733043], [-77.34811919031121, 34.55088718899192], [-77.34813836755146, 34.55091528815561], [-77.34822966292163, 34.55095470708489], [-77.34824783842282, 34.55098110265003], [-77.34826730169311, 34.551019145547635], [-77.3482851493703, 34.551033404923096], [-77.34830900920721, 34.55107296730757], [-77.34830979307307, 34.55107423640184], [-77.34831006882627, 34.55107489028348], [-77.34831110009317, 34.5510784095657], [-77.34831437871787, 34.55108887783342], [-77.34831058176519, 34.55110092642079], [-77.34831008796344, 34.551104540499225], [-77.3483095365173, 34.55110487588327], [-77.34830162247869, 34.551108182915215], [-77.34830202392472, 34.55111114644366], [-77.34830928655784, 34.55111256249214], [-77.34831030895035, 34.551112777859956], [-77.34831143481526, 34.55111225336915], [-77.34831125415187, 34.551105108012656], [-77.34832831409781, 34.55110634047344], [-77.34833488427864, 34.55111120030932], [-77.34833777230911, 34.551114269299276], [-77.34833943956788, 34.55111587426923], [-77.34834074552492, 34.551119459675796], [-77.3483355486181, 34.55112408479902], [-77.34834338366335, 34.55112510859817], [-77.34834677649228, 34.55112759073876], [-77.34834850310874, 34.55112987135372], [-77.3483506545879, 34.55113469229229], [-77.34835272319825, 34.55113691474495], [-77.3483550869136, 34.55113888124553], [-77.34835859865893, 34.55114367181552], [-77.34835863015778, 34.55114371540396], [-77.34835864046644, 34.55114373506469], [-77.34835867306411, 34.551143792044286], [-77.34836280611584, 34.551150765145216], [-77.34836452250491, 34.55115436956996], [-77.34837116987089, 34.55115721228216], [-77.34838273913, 34.551164338705], [-77.34838704747288, 34.55116749705826], [-77.34839467393724, 34.5511767515394], [-77.34838238233847, 34.551179838805375], [-77.3483707040367, 34.5511878818798], [-77.34838035986674, 34.551200833975294], [-77.34838126186635, 34.55120204389592], [-77.34839130806985, 34.55121551962244], [-77.34840565701576, 34.551234766932595], [-77.34841000284231, 34.55124063799899], [-77.34841182305593, 34.551243170179006], [-77.34841645080252, 34.5512494453933], [-77.34843846964787, 34.5512794395438], [-77.34844927815695, 34.551298985683154], [-77.34848537623358, 34.55134508342601], [-77.34849124748028, 34.55135415161398], [-77.34850079036481, 34.55136609682838], [-77.34857132746858, 34.55142027776826], [-77.34862382875073, 34.55145748389652], [-77.34869382844782, 34.55150837875267], [-77.34874329621343, 34.55153152547626], [-77.34877412775914, 34.551558266478466], [-77.34887525945118, 34.551659006009615], [-77.34888413258852, 34.551666327712745], [-77.34888647093473, 34.55166787930522], [-77.34900158889286, 34.55177035581014], [-77.34902735953717, 34.55179932127608], [-77.34907843623701, 34.55185684154934], [-77.34916210177983, 34.55193873449882], [-77.34919107149778, 34.551987909919774], [-77.3492218423279, 34.55201421448267], [-77.34925689150742, 34.55209310269241], [-77.34926012618897, 34.55210038328401], [-77.34926117722787, 34.55210513317312], [-77.34926294125644, 34.552220238729824], [-77.34926250201167, 34.552222451794115], [-77.34926325095691, 34.55234458151834], [-77.34926326641195, 34.55234475219266], [-77.34926327203003, 34.55234490648039], [-77.34926301090644, 34.55236706691822], [-77.34926182194747, 34.55246668270511], [-77.34926176551868, 34.55246737856533], [-77.3492617326342, 34.552468034743555], [-77.34926062994919, 34.55247055266731], [-77.34922601232087, 34.55257484459054], [-77.34920536554785, 34.55259790492214], [-77.3491368136911, 34.552655630873005], [-77.34905839475869, 34.552727833069916], [-77.34904449035075, 34.55273489663079], [-77.34901354872396, 34.55274791765302], [-77.3489250215368, 34.5528009528287], [-77.34885989156541, 34.55282288556215], [-77.3487742561789, 34.55285177935497], [-77.34866187261572, 34.55289687679536], [-77.34854340867582, 34.552937979497905], [-77.34848466748217, 34.552959243599496], [-77.34846395182632, 34.55296658710918], [-77.34844250966623, 34.552965878379325], [-77.3482686386084, 34.552923004287464], [-77.3482004977005, 34.5529076207804], [-77.34809127923538, 34.55288062720057], [-77.34787855099106, 34.55281245945846], [-77.34776708226443, 34.55275281645725], [-77.34755925319766, 34.552712359387485], [-77.34748863229109, 34.55269462023989], [-77.347310097541, 34.55261584326878], [-77.34725202111332, 34.552607782876976], [-77.34709836660934, 34.55259188904123], [-77.3470315673643, 34.55258521257524], [-77.34688046029805, 34.552565206358736], [-77.34676891448085, 34.552542569348844], [-77.3467073432425, 34.552522083612956], [-77.3465524802396, 34.552515742231286], [-77.34648896355954, 34.552513012786655], [-77.34631434674145, 34.55253793104556], [-77.34630141518159, 34.552534225181944], [-77.34626977122001, 34.55253066142759], [-77.34615772126705, 34.552522259529646], [-77.34611836202444, 34.552523566907766], [-77.34604593969217, 34.55250166021185], [-77.34603535524796, 34.55249415838909], [-77.34596377198054, 34.55245227700658], [-77.34595516139058, 34.55243415231456], [-77.34592472377432, 34.55240739486578], [-77.3457894252778, 34.552318186562374], [-77.34566700429932, 34.552250153744794], [-77.3455368652633, 34.55220036612798], [-77.3453507949873, 34.55216732358257], [-77.34514421282731, 34.552201333598475], [-77.34499375282249, 34.552196086576615], [-77.34494787228627, 34.55220243658199], [-77.34476380336265, 34.55214204289114], [-77.34475302918534, 34.55213860641265], [-77.34475149517912, 34.55213801115442], [-77.3447495103706, 34.55213733162472], [-77.34455825380454, 34.55207185200873], [-77.34453185564576, 34.55206282434682], [-77.344497468432, 34.55205118125663], [-77.34436345231094, 34.552006242182955], [-77.34430773961427, 34.5519910239099], [-77.34421361625454, 34.55196960665198], [-77.34416838852366, 34.55195201468261], [-77.34408378013404, 34.55191910493547], [-77.34397299376745, 34.551912142695336], [-77.34388890455486, 34.551893909333444], [-77.34381923479674, 34.5518778895346], [-77.34377783487969, 34.55186205525391], [-77.34363880349068, 34.55180747817465], [-77.34363429162786, 34.55177645396478], [-77.34358517379772, 34.551703733915446], [-77.34351640575008, 34.551624289161026], [-77.34348425402109, 34.551584891557226], [-77.34338886328351, 34.551472884440635], [-77.34335813640175, 34.55135821462868], [-77.34328551028581, 34.55131627104368], [-77.34320109924754, 34.5513331305867], [-77.34311722298402, 34.55134067909411], [-77.34291023371382, 34.55135882398421], [-77.34280767516658, 34.551367672229546], [-77.34254862360442, 34.551391036379485], [-77.34241442719383, 34.551394568282234], [-77.34221902055111, 34.551399035105916], [-77.34221582544467, 34.55139875808531], [-77.34202269313612, 34.55135589658539], [-77.34197682411906, 34.55134091052581], [-77.34189856163755, 34.5513233509233], [-77.3418277029561, 34.55129860142101], [-77.3417497349511, 34.55127135733393], [-77.34163219882855, 34.5512635661282], [-77.3415740952893, 34.551247612586494], [-77.34148937362274, 34.55122697382416], [-77.34143704483859, 34.55121338060756], [-77.34125950836598, 34.55117045244915], [-77.34125636963918, 34.55116189464762], [-77.34124204342012, 34.55115660057167], [-77.34121086812135, 34.55115803013105], [-77.34104666621369, 34.55111609423163], [-77.3410101938319, 34.55110677942113], [-77.3409583520695, 34.55109135974198], [-77.34085157617919, 34.55106316814894], [-77.34077290232773, 34.5510449431096], [-77.34065634194822, 34.55101649094075], [-77.34064754311169, 34.551013654749546], [-77.34057046862965, 34.550956737812655], [-77.34046366098393, 34.550859356504], [-77.34042389401712, 34.55082627695085], [-77.3403922602969, 34.55080555368545], [-77.34031070501402, 34.550719899132645], [-77.34028346504182, 34.55069116727945], [-77.34012575777817, 34.55062987943914], [-77.34007680993848, 34.550609593116256], [-77.34007236211788, 34.550609520112864], [-77.33991664424327, 34.55065229621218], [-77.33987857560263, 34.5506927347], [-77.3398736365883, 34.55069653183514], [-77.33987241057078, 34.55070044121938], [-77.33984109350176, 34.55073972254827], [-77.33979525791696, 34.5507690090248], [-77.33977847211658, 34.55077695601152], [-77.33977019839737, 34.550777760573524], [-77.33976520996559, 34.55077333061624], [-77.33973820765802, 34.550741625610016], [-77.33971422623415, 34.55071945875517], [-77.33968221888216, 34.550694657456184], [-77.3396446579886, 34.55069172286003], [-77.33963341492638, 34.55068280318677], [-77.33962559898343, 34.55067597291424], [-77.33961962189919, 34.55067186049851], [-77.33960939884186, 34.55066018824756], [-77.33960832606166, 34.550658871873736], [-77.33959358724589, 34.55066582695645], [-77.33958710279605, 34.55066888689497], [-77.3395854897456, 34.55066964807526], [-77.33958463170096, 34.550670052976784], [-77.33958427768948, 34.55066952160926], [-77.33957401775612, 34.5506718266988], [-77.33957533874663, 34.550676283528546], [-77.3395782312123, 34.55067781337893], [-77.33957831659694, 34.550677851968516], [-77.33958137760442, 34.550679257210184], [-77.33958438778178, 34.55068060115694], [-77.33958962270438, 34.55068056196602], [-77.33959294623347, 34.55068334759956], [-77.33958924979945, 34.5506883858658], [-77.33959510743513, 34.550690687330174], [-77.33958404102995, 34.55069559629322], [-77.33956018873454, 34.550696145522664], [-77.33955886244767, 34.55069628893557], [-77.33953511047353, 34.55068921711575], [-77.33952325562103, 34.55068572003826], [-77.33950957043086, 34.5506732416635], [-77.33948666695204, 34.550661777649864], [-77.33943498822347, 34.55063721024959], [-77.33942704370543, 34.5506150004909], [-77.33936511237793, 34.550586055317915], [-77.33929295746327, 34.55054924003145], [-77.33921952730968, 34.55053063938399], [-77.3389390530885, 34.55052492145961], [-77.33890101488552, 34.55051978152156], [-77.33870791279274, 34.550434975670214], [-77.33850939725995, 34.5504762859967], [-77.3381666526759, 34.55039118521889], [-77.33815966905127, 34.55036701888186], [-77.3381192446048, 34.550369499988676], [-77.33801003795261, 34.55034526313497], [-77.33790867821045, 34.55031554266068], [-77.33772907911711, 34.55026330740576], [-77.33767715218343, 34.55024934215697], [-77.3375968795357, 34.55022830552265], [-77.33753058217765, 34.55011887837492], [-77.33753192082064, 34.550112534108315], [-77.33753227312747, 34.549992778973596], [-77.3375242844947, 34.54988230801441], [-77.33734609072879, 34.54984714694451], [-77.3373067284545, 34.54980554093818], [-77.33726105235516, 34.54978696453345], [-77.33715300284686, 34.54970795920952], [-77.33713282443547, 34.54969575385186], [-77.33695643276255, 34.549719177627345], [-77.33687884045554, 34.549719518617835], [-77.3367831387801, 34.549718932268945], [-77.33676020685984, 34.54971553067645], [-77.33671160486091, 34.54971322813161], [-77.33656383044413, 34.549718381959934], [-77.33641635431285, 34.54975504292236], [-77.33617335503467, 34.54962576898389], [-77.33597810894264, 34.549603875786445], [-77.33578002702727, 34.54965630323173], [-77.3355849346288, 34.549659946230385], [-77.33558362603743, 34.54966021386397], [-77.33558056391469, 34.54965946662034], [-77.33538834865604, 34.54961563904534], [-77.33533174822243, 34.54961012754034], [-77.33528594220336, 34.54958134119147], [-77.33502843957251, 34.54939069601758], [-77.33501083877671, 34.54937608084919], [-77.33501086078579, 34.54937018929613], [-77.33500145570169, 34.54936853865649], [-77.33476742721433, 34.549166262845276], [-77.33474237809475, 34.54909061254459], [-77.33461670708007, 34.5490290446052], [-77.33451133751223, 34.54895826752093], [-77.33437287800403, 34.54888744518103], [-77.33422708826808, 34.54889970379548], [-77.3340338274316, 34.548906514420345], [-77.33402871675807, 34.54890643897832], [-77.33383502259028, 34.54887590691369], [-77.33374261343195, 34.54888151695219], [-77.33344232593934, 34.54887931388407], [-77.333359778992, 34.54887901791178], [-77.33312978537906, 34.548862396794924], [-77.33305114402397, 34.54881743425821], [-77.33294097409883, 34.54887131249425], [-77.33255228361539, 34.548816553944455], [-77.33238833552397, 34.54877386373725], [-77.33230797315834, 34.54876001885797], [-77.33226769360361, 34.54874054650089], [-77.33209356069696, 34.548680869240314], [-77.33187701834822, 34.54865689676092], [-77.33182348253393, 34.548643823348165], [-77.3317461128586, 34.54862137439902], [-77.33158647443234, 34.5485817640079], [-77.3314868245063, 34.54855254575753], [-77.3311787836964, 34.54845811576796], [-77.3311772808338, 34.54840861608063], [-77.33109744237491, 34.54841328563582], [-77.33092172151113, 34.54838509021181], [-77.33089801747595, 34.5483785160988], [-77.33070715472543, 34.5483130553163], [-77.33066641670544, 34.548312365999934], [-77.33062790999777, 34.54829248907832], [-77.33044363657285, 34.54815233304035], [-77.33035828201487, 34.54808643256689], [-77.33035488033093, 34.54806535550017], [-77.33025830310979, 34.54806210215136], [-77.32992937659506, 34.547992348826625], [-77.3298230120709, 34.547984989794045], [-77.32953556842409, 34.54804369890005], [-77.32942854510313, 34.54804201944904], [-77.32933945207127, 34.54803548078655], [-77.3292191663765, 34.5480053565519], [-77.32917989875367, 34.54798876008681], [-77.3291446622831, 34.547970207993565], [-77.32898058276797, 34.54793685413638], [-77.32875433401665, 34.54787189317311], [-77.32871168333418, 34.54786024876198], [-77.32863496637123, 34.54784451175668], [-77.3283640610682, 34.54777123547643], [-77.32823039152055, 34.54774162610266], [-77.327972729655, 34.5477161106805], [-77.32792461645946, 34.54770179573556], [-77.32771812469446, 34.54764642954654], [-77.32758442785915, 34.54753080622228], [-77.32754924954216, 34.54751093116835], [-77.32754331075249, 34.54729601575875], [-77.3275298101733, 34.54726891077189], [-77.3272022444441, 34.54708268929403], [-77.32719024197169, 34.54708041741595], [-77.32680857421644, 34.54712819330424], [-77.32673299471324, 34.54713861551153], [-77.32641791775248, 34.547181898595355], [-77.32641469388014, 34.54718269839661], [-77.3264099821302, 34.5471820908594], [-77.32615432218921, 34.547139941764144], [-77.32602381220971, 34.54710841412428], [-77.32590476543295, 34.54708736708046], [-77.3257273284531, 34.54703832919991], [-77.3256786318915, 34.54701707819996], [-77.32563335767796, 34.547015817695154], [-77.32547651652129, 34.54697599580318], [-77.32542976842814, 34.5469639789841], [-77.32524289725181, 34.546923507312286], [-77.32508868482346, 34.546885292762695], [-77.32501049020334, 34.546798450874405], [-77.32485261097742, 34.54682375622826], [-77.32468673007924, 34.54680199302779], [-77.32465680171659, 34.54680247722486], [-77.32456241358577, 34.54677931963911], [-77.32446161172585, 34.54675463147415], [-77.3244212486137, 34.54676145999556], [-77.32439330746853, 34.546740405725295], [-77.32430699181424, 34.54665494644667], [-77.32420689645238, 34.54652237929787], [-77.3241926343319, 34.54645173956844], [-77.32407767736433, 34.54638247052513], [-77.32403883064184, 34.546326749654426], [-77.3239611381429, 34.546312880554765], [-77.32378615681931, 34.54627653047184], [-77.3236885807285, 34.54623185493374], [-77.32335631556583, 34.54619202384032], [-77.32328142912615, 34.54617562304062], [-77.32290593926162, 34.54612148926192], [-77.32276253295234, 34.54608542851186], [-77.32256749199817, 34.54602350618978], [-77.32229160591027, 34.545958956873896], [-77.3221264012406, 34.54587820223217], [-77.32182405812301, 34.545829929011234], [-77.32173455900015, 34.54584545213425], [-77.3214943571297, 34.54578218067189], [-77.32134422308184, 34.54574818626716], [-77.32129724121167, 34.54574572096862], [-77.32126853497581, 34.545720513593196], [-77.32095438236081, 34.545629747291876], [-77.32085263316475, 34.54559934364242], [-77.3206817358909, 34.54556000708498], [-77.32056390866829, 34.54553845456016], [-77.32035708446972, 34.54549148720653], [-77.32017365960142, 34.54543757801257], [-77.32013321401647, 34.54541948276906], [-77.32008319746456, 34.54540118453437], [-77.31994519325112, 34.54532036778122], [-77.31978460120217, 34.545285775595175], [-77.31969115617352, 34.545271175156074], [-77.31954480307354, 34.545233718972455], [-77.31943442749062, 34.54522401731076], [-77.31939389693869, 34.54520446082691], [-77.31920584818211, 34.54515557271124], [-77.31919874119673, 34.545155410852026], [-77.31917392089116, 34.545149023219196], [-77.31900362093229, 34.5451048518155], [-77.31896073840842, 34.54509962803168], [-77.31880779963127, 34.54509478223439], [-77.31865829760763, 34.54508703617943], [-77.31861155090752, 34.545082018358045], [-77.31853464781094, 34.5450861274066], [-77.31834612171694, 34.54508180510497], [-77.31834657573138, 34.54503863191646], [-77.31826596821523, 34.544955277880895], [-77.31824736501906, 34.54493047769719], [-77.31824790900063, 34.54491477847845], [-77.31822322992909, 34.544898855063465], [-77.31807791589635, 34.5448020310229], [-77.31788782178019, 34.544771115188986], [-77.31783376056549, 34.544764863954356], [-77.31775281824194, 34.54475670613902], [-77.31753479207538, 34.544730144175894], [-77.31744261639889, 34.54470251941292], [-77.31718971954896, 34.54467955936898], [-77.31692343204719, 34.544709853097466], [-77.31665768131569, 34.54469099407524], [-77.31651190712768, 34.544846317322744], [-77.31650236831126, 34.54493631969167], [-77.31651572117192, 34.54501814789211], [-77.31644308618763, 34.54518964551387], [-77.3164535642399, 34.54530643822428], [-77.31645205585446, 34.54531076280207], [-77.3164512061349, 34.545313627268406], [-77.3164463637461, 34.54533261335825], [-77.31642224803339, 34.545423742078064], [-77.31640092962564, 34.54544051163185], [-77.31633910289906, 34.54550746622147], [-77.31624473517716, 34.545560152354355], [-77.31614642980617, 34.54566206547737], [-77.316044519925, 34.545727268274725], [-77.31603337019047, 34.54573811527641], [-77.31601043428356, 34.54576215443356], [-77.3159560726368, 34.54581779278934], [-77.31589277747533, 34.54588071371294], [-77.3158436506307, 34.54592228743525], [-77.31576662605491, 34.545973963596154], [-77.31567696880352, 34.54603411491541], [-77.31564420621604, 34.54605640819351], [-77.31552799359734, 34.54610617924389], [-77.31544483137111, 34.54618752994301], [-77.31531940731827, 34.546253028446785], [-77.31524356152146, 34.54634117282866], [-77.31504419524082, 34.54653023942497], [-77.31498941001882, 34.54658918457385], [-77.31495063053919, 34.54662805412605], [-77.31480414902798, 34.54679490499814], [-77.31471889301682, 34.546906146108306], [-77.31469949658809, 34.5469448634605], [-77.3146412071286, 34.54697321361162], [-77.31451878849192, 34.5471052909285], [-77.31444724326516, 34.54718996935233], [-77.31439512413912, 34.547293500774025], [-77.31423885843132, 34.54738871548013], [-77.31418989687741, 34.54744198680296], [-77.31415815430842, 34.5474762964404], [-77.31403756240582, 34.547601595385714], [-77.31402561475402, 34.547610414668185], [-77.31398929043644, 34.54765231029226], [-77.31388635007856, 34.547760140283536], [-77.3138750555126, 34.54778552620623], [-77.31383623610759, 34.54781572360794], [-77.3137074531625, 34.54795233717755], [-77.3136350725366, 34.5480228645905], [-77.31362324062907, 34.54803554242224], [-77.31361446528837, 34.548043994896474], [-77.31354130514431, 34.54811985660144], [-77.31343369614778, 34.5482390429933], [-77.3133751930391, 34.548287393650426], [-77.31334161125272, 34.548327987847316], [-77.31323289699532, 34.54843055200087], [-77.31320713412288, 34.548453982665144], [-77.31318457797319, 34.54847294313137], [-77.31303257850188, 34.5486015186575], [-77.31301801732718, 34.54861031560453], [-77.31301007204328, 34.548620407225705], [-77.31285640420235, 34.54875015015189], [-77.31283535727182, 34.5487679009929], [-77.31283393403214, 34.54876910019176], [-77.31283230321174, 34.54877060737569], [-77.31267664795496, 34.548913096075516], [-77.31266364995645, 34.548934605687215], [-77.31263167347457, 34.54895477758667], [-77.3125053171245, 34.549060103293954], [-77.31248186102619, 34.54909450789627], [-77.31238553100881, 34.5491997086111], [-77.31234365024469, 34.5492756347321], [-77.31222951691657, 34.54936125542808], [-77.31215856658886, 34.5494339326429], [-77.31209265354858, 34.549486573167044], [-77.3119818686339, 34.54959631454868], [-77.31182760303285, 34.54975722132804], [-77.31181905746936, 34.54976546056868], [-77.31181110491552, 34.54977181023228], [-77.31162708231489, 34.54992040183011], [-77.3115182033085, 34.55005867634358], [-77.31148135226788, 34.5500978674535], [-77.31142576485581, 34.550149798207784], [-77.31130148646427, 34.55025870705859], [-77.31117047660932, 34.55035341349867], [-77.31110023491732, 34.550409130741066], [-77.31102566548346, 34.55046811696941], [-77.31084804556978, 34.55053474468324], [-77.3107179187038, 34.55066320094915], [-77.31068016684401, 34.55070142310607], [-77.31062703463166, 34.55072373741138], [-77.31038359559801, 34.550805420344], [-77.31022905946263, 34.55095132132695], [-77.31017861434603, 34.550985440827496], [-77.30994238672929, 34.551087415904355], [-77.30983213355734, 34.55113412350186], [-77.30946240096542, 34.551316131528935], [-77.30943493170939, 34.55132859777559], [-77.30942619452571, 34.55133288941028], [-77.30941161869333, 34.55134036675176], [-77.30889750203269, 34.55157227356407], [-77.3086411403608, 34.55169123703138], [-77.30834728471656, 34.55180117309854], [-77.30824526093105, 34.551829195465416], [-77.30800045747864, 34.55193878876706], [-77.30784872077483, 34.551995205801994], [-77.30772444175416, 34.552072191707], [-77.30729860479138, 34.55228417843608], [-77.30705374355932, 34.55240768795264], [-77.3068053042891, 34.55254079916706], [-77.30630220908292, 34.55274004531939], [-77.30626025273939, 34.55275663334798], [-77.30623792931101, 34.55276133858682], [-77.30619965306659, 34.55278068186969], [-77.30574440728913, 34.55301785022297], [-77.30546555000176, 34.55315678380494], [-77.3052311334574, 34.553264740494285], [-77.3047831157962, 34.55347361316308], [-77.3047095178866, 34.55350756713502], [-77.30467165928478, 34.5535221040941], [-77.3045643065749, 34.55357122844211], [-77.30419332049924, 34.55375303217757], [-77.30407460324187, 34.553820106895834], [-77.30387706244338, 34.553917098845716], [-77.303696406476, 34.55400788983866], [-77.30348055552204, 34.55408087007136], [-77.3032708816282, 34.554180259247055], [-77.30318031516178, 34.554253405673975], [-77.30308324799957, 34.55427855281785], [-77.30291465256154, 34.554335656975326], [-77.30287487590122, 34.55435307718751], [-77.3026866983308, 34.554443992054686], [-77.30259132629801, 34.55446341091138], [-77.30249924701215, 34.55453580093847], [-77.30228911763365, 34.554653105185], [-77.30211582658907, 34.554728698673856], [-77.3020224597128, 34.554768773297035], [-77.30189230037146, 34.55482974629932], [-77.30185487587785, 34.55485004058923], [-77.30178816577396, 34.55488264783821], [-77.30159933656861, 34.554974018395875], [-77.30149475316239, 34.555037270417245], [-77.30135569749542, 34.55510379309456], [-77.30111465890292, 34.55521367347377], [-77.30109777483365, 34.55522058559645], [-77.30109177391846, 34.55522368648387], [-77.30108094081766, 34.555228936663454], [-77.30082964361443, 34.55534445317683], [-77.30070052571475, 34.55541530340349], [-77.30057507609403, 34.555468903716466], [-77.30041849872114, 34.555568794880294], [-77.30034860310514, 34.555607040449935], [-77.30030278979373, 34.555630572713454], [-77.30014421940811, 34.55570590332915], [-77.300104207084, 34.555726084294186], [-77.30009290547962, 34.5557309404807], [-77.29990591818222, 34.55580912505665], [-77.29980929693775, 34.555841243668766], [-77.29960525270023, 34.55593028607809], [-77.29954113631696, 34.555959072085386], [-77.29950928743318, 34.55597739689529], [-77.29941353998811, 34.55601690494373], [-77.29911249655771, 34.55615238048346], [-77.29899750880837, 34.556191168877234], [-77.29881563248125, 34.55628838145492], [-77.29874731668657, 34.5563177502921], [-77.29871552081885, 34.55633511941154], [-77.29861592425476, 34.55637848859229], [-77.2984852737132, 34.5564385582186], [-77.29831864143023, 34.55651370154081], [-77.29821993886924, 34.556557762302596], [-77.29805113677749, 34.55664286650635], [-77.29796896217763, 34.55668396096826], [-77.29792130010733, 34.55671176437324], [-77.29777734929041, 34.55677101745501], [-77.29752448668371, 34.55688739985632], [-77.29745238959062, 34.55692923598926], [-77.29734221549444, 34.55698937352588], [-77.29720598577532, 34.557057662020846], [-77.29712677581253, 34.55710093975989], [-77.29694260566009, 34.55717781772048], [-77.29692851295798, 34.55718260161189], [-77.29689798444859, 34.55719436271004], [-77.29673047328195, 34.557254803510034], [-77.29648754513357, 34.557356783487776], [-77.29638177529716, 34.557401530522725], [-77.29633388073108, 34.55742087008187], [-77.2961725269005, 34.55750138003111], [-77.29612545775925, 34.557525126361114], [-77.29593640605482, 34.557624174364335], [-77.29588123632536, 34.557654614916586], [-77.2957808335921, 34.557702963075506], [-77.2955388929528, 34.55782901840605], [-77.29536541408265, 34.55790025321616], [-77.29534068323665, 34.55790828768028], [-77.29526950996176, 34.5579425762036], [-77.29514210589849, 34.5580030819656], [-77.29510838208583, 34.55802350043246], [-77.29505302697982, 34.558052163763925], [-77.29485550639404, 34.55814877237836], [-77.29474461585713, 34.558206786100925], [-77.29460966853752, 34.55827747297411], [-77.29435733236376, 34.55839068156522], [-77.29434747835037, 34.55839550695366], [-77.29434442519687, 34.55839671941869], [-77.2943324712317, 34.55840031949464], [-77.29404491699984, 34.55849927208435], [-77.29395125554757, 34.55854550106781], [-77.29377784641784, 34.558617627883926], [-77.29375293318708, 34.558629386566345], [-77.2936805012811, 34.55866092207823], [-77.29355455374257, 34.55871566578586], [-77.293508902925, 34.558735070979964], [-77.29342266101122, 34.5587756134191], [-77.29325033815454, 34.55885757036979], [-77.29315748085, 34.55890143146685], [-77.29286266405276, 34.559037711709756], [-77.29276046123802, 34.55908486925372], [-77.29273237485545, 34.55910216259416], [-77.29269209016998, 34.55912519434763], [-77.2924965382039, 34.5592357347539], [-77.29236261484206, 34.559303135210826], [-77.29223815092737, 34.55935832011936], [-77.29198057826949, 34.55947203702698], [-77.29197105305732, 34.559476661546014], [-77.2919657319887, 34.55948063942835], [-77.29194697657273, 34.559488433156076], [-77.29171484782421, 34.55960030968404], [-77.29156870629555, 34.55966409704645], [-77.29144518874921, 34.5597174028682], [-77.29119365856432, 34.55982968843219], [-77.29117874413116, 34.559836062055474], [-77.29117184741055, 34.55984043941169], [-77.29114766435475, 34.55985120108083], [-77.29077454636972, 34.560035359834785], [-77.29066676279575, 34.56008356628875], [-77.29048181756102, 34.56017656804101], [-77.29041473793166, 34.56020925069892], [-77.29037723874629, 34.56023047629423], [-77.29031054327167, 34.56026595926551], [-77.29005260825491, 34.56041198076669], [-77.28996596136571, 34.5604529344637], [-77.28989032048628, 34.560489881826875], [-77.28963065245398, 34.56062496481359], [-77.28955499597411, 34.56066214377991], [-77.28948920372932, 34.560692743493846], [-77.28917498750025, 34.56081731388261], [-77.28914947155276, 34.560827949701206], [-77.28914502453217, 34.56082936732482], [-77.28913754309853, 34.56083236386164], [-77.28873466881842, 34.56101271175405], [-77.28841265729554, 34.56116155925257], [-77.28832426767127, 34.56119789077885], [-77.28817605170019, 34.561249097325195], [-77.28791469597672, 34.56134804894046], [-77.28774260039728, 34.5614215879272], [-77.28766341905225, 34.56145495912894], [-77.28750446556974, 34.56152588342266], [-77.28719402749778, 34.56166421288621], [-77.28709396885455, 34.56171485411933], [-77.28700861721302, 34.561752057149526], [-77.2866836659583, 34.56189558334148], [-77.28664658253189, 34.561911825626794], [-77.28630562382814, 34.56208667078084], [-77.28627276994494, 34.56210119857037], [-77.2862467889031, 34.56211320238488], [-77.2859013431652, 34.562277528473835], [-77.28586498507721, 34.562294750796546], [-77.28586212359068, 34.56229621905635], [-77.2858589337339, 34.562297702334845], [-77.28551013061882, 34.56244659772019], [-77.28545192213576, 34.56247243690598], [-77.28537343086, 34.56250568541683], [-77.28504187571578, 34.56264205662927], [-77.28485557871579, 34.56271112735584], [-77.28483704492857, 34.5627187453573], [-77.28482385232836, 34.56272446446165], [-77.28463196996671, 34.56280568634963], [-77.28440615762531, 34.56292193983029], [-77.2842210275304, 34.56301283469889], [-77.28405285645934, 34.563095677076525], [-77.28381054233701, 34.56320067185378], [-77.28369606946153, 34.56324964162187], [-77.2835099776322, 34.56334377008209], [-77.28339990914677, 34.56339464804768], [-77.28331097211444, 34.563434799435996], [-77.28302236560553, 34.563551579727616], [-77.28298984371558, 34.563564682200855], [-77.28296762081584, 34.563573953056384], [-77.28285080719652, 34.56362156067989], [-77.2826221433845, 34.563715447105395], [-77.28257983177674, 34.56373239495832], [-77.28251726488386, 34.56375801430006], [-77.28216953307867, 34.56391207989201], [-77.2818550560297, 34.56408231849552], [-77.28175840895318, 34.56412635167645], [-77.2816744118152, 34.56418402062438], [-77.28155871862523, 34.564264769005284], [-77.28152251845519, 34.56428992387194], [-77.28150952621849, 34.56429909199032], [-77.28136349814993, 34.56439526703771], [-77.28129997296716, 34.56444130233532], [-77.28114554784443, 34.56456631765211], [-77.2811045733354, 34.56459609922687], [-77.28109091210997, 34.56460952311796], [-77.28107913490025, 34.564628236462895], [-77.28094689137004, 34.56478443697988], [-77.2809076079112, 34.564830790643214], [-77.2807690210017, 34.56495482237073], [-77.28061377199559, 34.56504337690704], [-77.28053895240842, 34.56507879100227], [-77.28044394676036, 34.56514787081114], [-77.2804361322803, 34.56515163689895], [-77.28042068816802, 34.565166696697766], [-77.28034737902789, 34.56523699186915], [-77.28031897456876, 34.56525588720041], [-77.28028733864839, 34.565292433507715], [-77.28021317245836, 34.56536540928634], [-77.28017003908278, 34.56540785028004], [-77.28008635426019, 34.56547328060696], [-77.28007377916201, 34.56548653026785], [-77.28003092201433, 34.56552095161669], [-77.27997604900956, 34.5655639028442], [-77.2799160321958, 34.5656153120739], [-77.27983050704543, 34.56568884924918], [-77.27978902006903, 34.56572614598876], [-77.27966808693718, 34.565821926512584], [-77.27958791143907, 34.56587586898905], [-77.27956666631741, 34.56590378961015], [-77.2795344845321, 34.565942026666484], [-77.27946792340231, 34.56601386573846], [-77.27942503894727, 34.566059594391184], [-77.27936087628292, 34.56612328936893], [-77.27924414383897, 34.56622729339999], [-77.27918262115281, 34.56625761431799], [-77.27903693203062, 34.566333507963485], [-77.279015069195, 34.56635214817695], [-77.2789577486825, 34.566393530838], [-77.27880882069901, 34.56649730167301], [-77.27876473642453, 34.56654779069924], [-77.27865327822305, 34.566639712569916], [-77.27851571814246, 34.5667638937671], [-77.27842800118162, 34.56681578006217], [-77.27826806035665, 34.56692426657898], [-77.27819154546228, 34.56697409266054], [-77.27801772799909, 34.56710806712729], [-77.27792905475752, 34.567189136412814], [-77.27771919283974, 34.56735720394755], [-77.27767489301567, 34.56740483426115], [-77.27763269878967, 34.567422804916866], [-77.27756963567109, 34.56747226134384], [-77.27738714306442, 34.567617892818], [-77.27724385807522, 34.56773415417804], [-77.27712509876173, 34.567832970441884], [-77.2770529145717, 34.56789292161422], [-77.2768897711307, 34.56803546125074], [-77.27688335472817, 34.56804964273748], [-77.27686675271909, 34.56805594151554], [-77.27684214467857, 34.568077724524976], [-77.27675160433147, 34.56815712401724], [-77.27668023048942, 34.568218641212866], [-77.27662634286632, 34.5682651149008], [-77.27652094768807, 34.56835739036616], [-77.27650283990141, 34.56837324409224], [-77.27649365024322, 34.56838128980874], [-77.27646544366777, 34.56840607104402], [-77.27638080274235, 34.568481488223604], [-77.27630997762797, 34.56854652441565], [-77.27617776436921, 34.56866970926255], [-77.27614680378257, 34.568698767900756], [-77.27612972315086, 34.568714799223535], [-77.2760703472286, 34.568770793751106], [-77.27595046403142, 34.56888395953826], [-77.27591629374334, 34.568916321319435], [-77.27585183600462, 34.568975560460785], [-77.27579823220401, 34.56902487750372], [-77.275769293374, 34.56905142036773], [-77.27566979163115, 34.5691326178677], [-77.2755791992869, 34.56921094601453], [-77.27546548825238, 34.56930405038961], [-77.27542829989696, 34.56934930790249], [-77.27538814848685, 34.56936962124941], [-77.275314676958, 34.569431937313894], [-77.27519874873214, 34.56952976510024], [-77.27515771568827, 34.56956371145064], [-77.27501085710156, 34.5696912502961], [-77.27492029427899, 34.569780720479294], [-77.274753379713, 34.56993832068862], [-77.27469948649517, 34.5699990348302], [-77.27465062271389, 34.570028050166194], [-77.27454975349863, 34.5701113532658], [-77.27442532814231, 34.57021315637653], [-77.27428061263547, 34.570356157629206], [-77.27420720342954, 34.57043168083092], [-77.27407242495379, 34.5705609099398], [-77.27400297490504, 34.5706512971652], [-77.27392255022241, 34.570694892206966], [-77.27377410518791, 34.570811950553896], [-77.27372756832743, 34.570850074948176], [-77.27370755153106, 34.57086374646585], [-77.27367588871628, 34.570893207234846], [-77.27357995447113, 34.57097155169261], [-77.27353132410452, 34.57100413537734], [-77.27343741187067, 34.57107818209103], [-77.27332968306249, 34.571153396733656], [-77.27329299086657, 34.57118466499654], [-77.27321560993887, 34.57124938558731], [-77.27316434575349, 34.57129238752671], [-77.2731391511591, 34.57131253795857], [-77.27307107270691, 34.57136891141392], [-77.27294933112526, 34.57147231259728], [-77.2729097041337, 34.5715080404341], [-77.27283314927006, 34.57157640362051], [-77.27278850063456, 34.571616347552904], [-77.2727647770695, 34.57163677077682], [-77.27266561378713, 34.5717245221325], [-77.27257848782406, 34.57179968617258], [-77.2725416592528, 34.57183261297537], [-77.27246908811796, 34.57189652549316], [-77.2724189582081, 34.57194080212724], [-77.27239186812044, 34.571962308103146], [-77.27232125968722, 34.57201836171978], [-77.27229451751752, 34.572040025719765], [-77.27228513723608, 34.57204811718584], [-77.27220105119534, 34.57212119770675], [-77.27216464529107, 34.57215647975507], [-77.27209432602407, 34.57222065471261], [-77.27204579610454, 34.57226497139553], [-77.27201914743245, 34.57228801439352], [-77.27193927003685, 34.57235708377942], [-77.27192553447966, 34.57236905637022], [-77.27192019803151, 34.57237293249991], [-77.27183078584832, 34.57244908835466], [-77.27180104317335, 34.57248139990795], [-77.27175417801948, 34.57253181290818], [-77.27170794424354, 34.57259191534605], [-77.27174327913393, 34.572699855405695], [-77.27172227591086, 34.57271087517473], [-77.27153721331777, 34.572735481380974], [-77.27145469561567, 34.57277180032456], [-77.27142598829666, 34.5728054190445], [-77.2713746771417, 34.57285771347608], [-77.27131867698111, 34.572914817114864], [-77.27128209074408, 34.572946888369714], [-77.27120583505527, 34.57301282942864], [-77.27119422636379, 34.57302286788812], [-77.27117151237324, 34.57304197789274], [-77.27109141930815, 34.57310590963085], [-77.27105934889913, 34.573130098880114], [-77.27098327767396, 34.57318806978797], [-77.27091923794083, 34.5732369183942], [-77.27089404458279, 34.57325896985985], [-77.27082366773575, 34.57331315792739], [-77.27069812990997, 34.57341332888915], [-77.27065037800004, 34.57345145021989], [-77.2705437328062, 34.573536461737355], [-77.27051582542927, 34.57355870635949], [-77.27050596859574, 34.57357102632402], [-77.27047062129068, 34.57359461900471], [-77.27037856563348, 34.57366574952921], [-77.2703060237537, 34.573721801872786], [-77.27023609226953, 34.57377238273713], [-77.27020416380563, 34.57379551120658], [-77.27013081072344, 34.573849901625984], [-77.27010322617132, 34.573870040823216], [-77.27009128335959, 34.573878832234016], [-77.27005985332666, 34.57390146072518], [-77.26994610514524, 34.573985252523975], [-77.26990079394778, 34.57401860491644], [-77.26979907549175, 34.574089211242395], [-77.26979607846887, 34.57409129157767], [-77.26976655244775, 34.574153521649286], [-77.26974231483017, 34.57420413788415], [-77.26974233358627, 34.57420489989664], [-77.26974236820139, 34.57420630621671], [-77.26960914125395, 34.57431226207107], [-77.26952935350924, 34.57434545961248], [-77.26943008354483, 34.57440218603163], [-77.26941387835122, 34.57441474447738], [-77.26932038632052, 34.57448821298992], [-77.26927851568485, 34.574521935859515], [-77.26918941910287, 34.57459498717243], [-77.26914766518864, 34.57462948193334], [-77.26912864646668, 34.57464628776304], [-77.26907473587725, 34.574688175086834], [-77.26901269713771, 34.574736704161076], [-77.26893227439253, 34.574800243194275], [-77.26887750976684, 34.57484390901485], [-77.26875691328618, 34.57494073053781], [-77.2687438584767, 34.5749512345812], [-77.26873893613315, 34.57495689719122], [-77.2687229128416, 34.5749671891368], [-77.26859503549744, 34.57505736709545], [-77.26853306952371, 34.5751024093381], [-77.26845073897907, 34.575163855417934], [-77.26838882905973, 34.57521112207141], [-77.26833370865953, 34.57525370780023], [-77.26826298576944, 34.575309481178444], [-77.26819414454052, 34.57537934754683], [-77.26813825880173, 34.57540848482457], [-77.268034148818, 34.575495774665015], [-77.26794848180694, 34.575568307429656], [-77.26790774411276, 34.57559249575323], [-77.26786502774678, 34.5756422763422], [-77.26776254556185, 34.575731546195016], [-77.26766489716603, 34.57580906807311], [-77.26742801538381, 34.575989699346536], [-77.26740268702846, 34.57602411760732], [-77.26736945003552, 34.57603914999426], [-77.26732414770281, 34.57606632957629], [-77.26715776913827, 34.576179493536976], [-77.26708822074102, 34.57623505746564], [-77.266987318289, 34.57631567081518], [-77.26696398292066, 34.57633575237256], [-77.26695621493784, 34.57634251096905], [-77.26694120686915, 34.576355773856285], [-77.26683430589976, 34.57645075830838], [-77.26677918498527, 34.57650000530935], [-77.26661115403174, 34.57664277818651], [-77.26658991573463, 34.57666028211857], [-77.26658244041599, 34.57666661996633], [-77.26656858540555, 34.576679070069915], [-77.26646115425707, 34.57677491602276], [-77.26640562026773, 34.57682498271596], [-77.26631120041003, 34.57688095741983], [-77.266203314373, 34.57697366586713], [-77.26613597143883, 34.5770248371651], [-77.26604514771796, 34.57709570266018], [-77.26600649852355, 34.57712723198105], [-77.26590330577923, 34.57720903030328], [-77.26581130060548, 34.57728223742356], [-77.265776789196, 34.57731026594439], [-77.26571665738506, 34.577365619501506], [-77.26565735418973, 34.577418707100186], [-77.26562981790475, 34.577449441187674], [-77.26554854126474, 34.57752798337568], [-77.26544368014888, 34.577612505268064], [-77.26534646418861, 34.57768799922333], [-77.26529971818269, 34.577744082427024], [-77.26524904051873, 34.57776800834431], [-77.26517283376977, 34.57781998803577], [-77.26504977445131, 34.57791939711396], [-77.2650039370343, 34.57795648775449], [-77.26492683884099, 34.57802889323599], [-77.26488640416497, 34.578065078007896], [-77.26487152052633, 34.57808947405552], [-77.26477112551447, 34.57817384524712], [-77.26467429758327, 34.57824268066659], [-77.26447768931662, 34.57838084373228], [-77.2644707072409, 34.57838588506263], [-77.26446872799669, 34.578388464336896], [-77.26446213673587, 34.57839182564473], [-77.2642758059187, 34.578545496715876], [-77.26421546687652, 34.578601477549306], [-77.26405622334141, 34.578722421429084], [-77.26396768101705, 34.57881765615771], [-77.2638899218917, 34.57885952724874], [-77.26372864148082, 34.57900871084753], [-77.26370885319415, 34.5790271031313], [-77.26370218531576, 34.579032441478326], [-77.2636961699361, 34.57904099421422], [-77.26354010862167, 34.579205640263254], [-77.26349439508715, 34.579251765358755], [-77.26341159348176, 34.57933129361592], [-77.26329861060344, 34.57947203348809], [-77.26317581370611, 34.579538875058276], [-77.26300859612434, 34.579665947644955], [-77.26298622265674, 34.579683129018925], [-77.26297971030243, 34.57969308074516], [-77.26295391774124, 34.57970707480934], [-77.26276890042888, 34.57983420663614], [-77.26269875508189, 34.57989618404979], [-77.26257514436014, 34.579990500896116], [-77.26253807029775, 34.58002589172604], [-77.26244880339317, 34.580112190185616], [-77.26239934516117, 34.580162766103896], [-77.26223335595091, 34.58032372885032], [-77.2622271365524, 34.58033042105999], [-77.26222279751997, 34.58033436616988], [-77.26221078440769, 34.58034295984274], [-77.26207415141178, 34.58043622019908], [-77.2620206602569, 34.580483207039265], [-77.26195305474063, 34.58054452786057], [-77.26183559294093, 34.5806472304543], [-77.26182077699538, 34.58066196412434], [-77.26171813152826, 34.5807617152599], [-77.2616523012926, 34.580812833427224], [-77.26148648170657, 34.58094159421549], [-77.26145514511487, 34.580966105697186], [-77.26144353490989, 34.58097578087189], [-77.26141902977858, 34.580996139977394], [-77.26131386860504, 34.58108341396738], [-77.26126368099597, 34.581124440789594], [-77.26118137990181, 34.58119082477994], [-77.26107095871453, 34.58128165730727], [-77.26099331256003, 34.58133929087887], [-77.26090601946939, 34.58140482953135], [-77.26087318422381, 34.58143438064661], [-77.26076509947988, 34.58153443109711], [-77.26069185959591, 34.581601735095326], [-77.26066204647103, 34.58162130327183], [-77.26059770281739, 34.58167116315734], [-77.26049257220332, 34.581753113578], [-77.26037811121644, 34.58183463224589], [-77.26008817333647, 34.58203936853689], [-77.26008091682563, 34.582044237521735], [-77.26007614095857, 34.58204654186548], [-77.26006984834973, 34.58205256118236], [-77.25978966397705, 34.582259669736246], [-77.25967787955891, 34.5823430277995], [-77.25960396650626, 34.58241074573611], [-77.25953551765136, 34.582475341484724], [-77.25949840587077, 34.58251203074595], [-77.25934008814234, 34.58268494124811], [-77.25933202187528, 34.582692676456816], [-77.25933150020934, 34.582694957475056], [-77.25932857162441, 34.58269758868813], [-77.25910301586116, 34.58291264770199], [-77.2589583267804, 34.5830175674195], [-77.25895362889763, 34.58302171128145], [-77.25883702371974, 34.58312738621323], [-77.25877205285684, 34.583180523599594], [-77.25860242853673, 34.5833098799287], [-77.25857261814699, 34.583331774690215], [-77.25855834081483, 34.583341125468436], [-77.25851940661443, 34.58336803158362], [-77.25825547894502, 34.583552961268715], [-77.25819896953257, 34.58365670975326], [-77.25801699173046, 34.583769863039706], [-77.25797442209426, 34.58378562598984], [-77.257919489372, 34.58382663650694], [-77.25776738537263, 34.58393011672287], [-77.25769922381416, 34.583980524747645], [-77.2575941860783, 34.58408192572436], [-77.25746669009756, 34.58419789421403], [-77.25739880153489, 34.58425955992609], [-77.25725394757782, 34.584393042841505], [-77.25724322879815, 34.584415977530696], [-77.25721809197371, 34.58442746838201], [-77.25717682645971, 34.584461415253735], [-77.25702681627843, 34.58458597918528], [-77.25696812143245, 34.584629995440835], [-77.25683891735348, 34.58473216551487], [-77.2568325559346, 34.58473716088858], [-77.25683040524463, 34.58473992287], [-77.25670379374961, 34.58484486142605], [-77.2566307681179, 34.58489099734336], [-77.25647925585402, 34.58500704621787], [-77.25641176903414, 34.58505754700858], [-77.25624490799191, 34.585205078454905], [-77.25613456162463, 34.58527139784388], [-77.25600576173825, 34.58541156177186], [-77.25593228551931, 34.58549114731366], [-77.25587143134791, 34.58553017591785], [-77.25573305726974, 34.58564876225515], [-77.25566596536463, 34.58570585491351], [-77.25549464035231, 34.58585232657363], [-77.25541056812116, 34.58592142173249], [-77.25523081659065, 34.58606915097553], [-77.25517918179705, 34.58613887846906], [-77.25511415669963, 34.58617119467153], [-77.25500545756452, 34.5862536942172], [-77.25487541229813, 34.58635063670561], [-77.25471250622508, 34.586471236782444], [-77.25458329822177, 34.586563311851286], [-77.25450954292076, 34.586619356948304], [-77.25433929067404, 34.58673719393803], [-77.25430166912838, 34.58676310952978], [-77.25424763492012, 34.5868047037311], [-77.25401134936786, 34.5869896273864], [-77.25390852648003, 34.58707072178259], [-77.25376479422094, 34.58720588798536], [-77.25360417338592, 34.58735693579855], [-77.25355158691173, 34.58741053751296], [-77.25353796714819, 34.5874237014698], [-77.25350576345996, 34.587449888808244], [-77.25327680036855, 34.58763881077357], [-77.25317574107345, 34.58773353773369], [-77.25302916944187, 34.58785498506873], [-77.25279134425129, 34.58804893402904], [-77.25276630007772, 34.588069960217446], [-77.25272512658378, 34.588109579966044], [-77.2526336420081, 34.588295186529216], [-77.25244717115928, 34.588400109584114], [-77.25208422388425, 34.58869458458352], [-77.25206193898964, 34.588714766001125], [-77.2520549056225, 34.588720961563055], [-77.2520381298955, 34.58873420222518], [-77.25168433637273, 34.58903620972897], [-77.2515457862412, 34.58915221588041], [-77.2514841328036, 34.58918679036949], [-77.25132750360999, 34.58935693556497], [-77.25131777759769, 34.58936747887418], [-77.25131556017179, 34.58936975887519], [-77.25131169860835, 34.58937358142781], [-77.25121734283306, 34.58959769633201], [-77.25101781443286, 34.589757985140665], [-77.25064255455119, 34.5899915044034], [-77.25060121533357, 34.59002052181396], [-77.25058547797234, 34.59003074881566], [-77.2505544143039, 34.59005160336667], [-77.25017453124144, 34.59032253928479], [-77.25004059526532, 34.59044771527266], [-77.2497737975128, 34.590623415869516], [-77.24973070145195, 34.5906589821056], [-77.24963976899778, 34.5907343295553], [-77.2494758149501, 34.59087458020948], [-77.24938893938142, 34.59093841517587], [-77.2492420460664, 34.59106692583893], [-77.24922897213973, 34.591090811626785], [-77.24916545013245, 34.591130212408665], [-77.24900766829121, 34.59125660641932], [-77.24895123230661, 34.591304608905645], [-77.2488331912184, 34.59140368658592], [-77.24870652208608, 34.59152100741012], [-77.24862455161056, 34.59157315775338], [-77.24846285270101, 34.59172602638005], [-77.24846014898453, 34.591737274727365], [-77.24843017618419, 34.59175008294757], [-77.2482279763268, 34.59187773866239], [-77.24814287654107, 34.591947956662935], [-77.24787552607847, 34.5921295947891], [-77.24784494035794, 34.59216016136915], [-77.24781750285146, 34.59216995872881], [-77.24778101314892, 34.59219979076922], [-77.24755628626498, 34.59237309652292], [-77.24750593601021, 34.59255015893352], [-77.24744686235834, 34.59260015033055], [-77.24712464455982, 34.59277808105789], [-77.2470738718123, 34.59280644117631], [-77.24706130735578, 34.592812000170866], [-77.24703638599128, 34.5928380940627], [-77.24686348617789, 34.593025540987455], [-77.24679118245368, 34.59322906738938], [-77.24676866992492, 34.59325374528229], [-77.24630602818449, 34.59344817901005], [-77.24630109946236, 34.59345047852041], [-77.24629794704322, 34.59345233484987], [-77.24628649791646, 34.59345922535024], [-77.24595151408998, 34.59366071504931], [-77.24588242387631, 34.59373540900448], [-77.2456665411391, 34.593873936450386], [-77.24549035111852, 34.59404400519965], [-77.24541953646806, 34.594151144919145], [-77.24527259612977, 34.59431424673903], [-77.24518297932431, 34.594427947308944], [-77.24481460707051, 34.5947289344141], [-77.24479876023908, 34.59474353299311], [-77.2447915490827, 34.59474769268967], [-77.24478870638673, 34.59475466654637], [-77.24457542084654, 34.59496633725537], [-77.2444767116523, 34.59511442285017], [-77.24438592343253, 34.59518708006263], [-77.2441833532566, 34.595348645116374], [-77.24414140926618, 34.595403487528586], [-77.24410417969892, 34.59544040770941], [-77.24389398950282, 34.595619665062344], [-77.2436931449399, 34.59573214385702], [-77.24336933233766, 34.59591842162714], [-77.24318378729515, 34.5960350488629], [-77.24295144012967, 34.59617713649856], [-77.24284623330334, 34.59624412247718], [-77.24282422185748, 34.59627394160804], [-77.24252680239996, 34.59645462286751], [-77.24234547343463, 34.596505446069294], [-77.2421877979701, 34.59683034306964], [-77.24224275710904, 34.59690358727581], [-77.24214881323996, 34.5969878865628], [-77.24210429350076, 34.59712835016609], [-77.24206150373479, 34.59723891117574], [-77.24205374136494, 34.597247902839804], [-77.24205345138557, 34.59726861446928], [-77.2420322772169, 34.597358349742734], [-77.24197149904782, 34.59746237660435], [-77.2419618257071, 34.59747893338463], [-77.24176813556086, 34.59757320678868], [-77.24164105792242, 34.59766683698097], [-77.24140876868914, 34.59764434067317], [-77.2412665675823, 34.59776934942478], [-77.24091261760987, 34.59786036977215], [-77.24088363732159, 34.597974842643296], [-77.2406183689226, 34.59815250285823], [-77.24063388913498, 34.598190832277545], [-77.24055903062882, 34.59820322099903], [-77.24052341767423, 34.598208939977354], [-77.24026351223522, 34.598397313095674], [-77.24014528346169, 34.598492556638995], [-77.24011535630015, 34.598524450452786], [-77.24003072887396, 34.598614639230775], [-77.2398185411657, 34.598819225010644], [-77.23980716011778, 34.59883269154493], [-77.23980297235403, 34.5988454415434], [-77.2397706511545, 34.59886306392611], [-77.23956005928862, 34.599048888288685], [-77.2394219727367, 34.59916391135408], [-77.2390418961578, 34.599469733802174], [-77.2390333233187, 34.59947557802711], [-77.23903101868251, 34.599478534506005], [-77.23902578827568, 34.59948328979785], [-77.23877657977184, 34.59969415155993], [-77.23865936154968, 34.599800311542445], [-77.23854242334257, 34.59991136742919], [-77.23832270307301, 34.60011378867641], [-77.23830611991461, 34.60014347953345], [-77.23827010151535, 34.60016138649965], [-77.23811436763197, 34.60030160320924], [-77.23806408784075, 34.60034500803462], [-77.23792663676866, 34.60046330445855], [-77.2375854175699, 34.60075707838104], [-77.23758817412715, 34.60077883821883], [-77.23755968375922, 34.60079427808056], [-77.23751713594191, 34.60081582113469], [-77.23717477178681, 34.60110927658526], [-77.23705747523674, 34.60120834736458], [-77.23679173105013, 34.60141579633888], [-77.23678575290165, 34.60142062354875], [-77.23678354925337, 34.60142242519182], [-77.23677872829266, 34.601426331509245], [-77.23659128927963, 34.601576338120935], [-77.23651913550772, 34.60163725231403], [-77.23641149195342, 34.60174510010677], [-77.23627500510659, 34.601853678632416], [-77.23606399073948, 34.6020203589878], [-77.23602145356651, 34.60205554302822], [-77.23600710186184, 34.60206823006296], [-77.235967981432, 34.602097093052116], [-77.2358248890853, 34.60220939015843], [-77.23571287375455, 34.60228070484358], [-77.23563853599539, 34.60237232162013], [-77.2354707128175, 34.60249728478992], [-77.23526243637403, 34.60269516748774], [-77.23524064522336, 34.60271481919981], [-77.2351912297877, 34.602755124031646], [-77.23507095198485, 34.602937113466815], [-77.23490806683617, 34.60303734592668], [-77.23459769854827, 34.60325076066642], [-77.23449406921515, 34.603326480058854], [-77.23442758611789, 34.603357729214416], [-77.23440451116376, 34.603416875014716], [-77.23400825586496, 34.60379601174327], [-77.23374608903303, 34.60397593537815], [-77.2336026971254, 34.60408426568416], [-77.2334358702476, 34.60422222198163], [-77.23337817597483, 34.60430607151083], [-77.23309538441333, 34.60455219465251], [-77.2330064337615, 34.60463280296523], [-77.23298021824702, 34.60465763757473], [-77.2329274951946, 34.60470427351589], [-77.23262595143768, 34.60495176015623], [-77.2324503397422, 34.60508719621836], [-77.23217447989904, 34.60520756430562], [-77.23185981579691, 34.60547111857038], [-77.23181116585347, 34.60550813250343], [-77.2318009713198, 34.60553272874398], [-77.23172640793246, 34.605590227634124], [-77.23143353961746, 34.60586330064689], [-77.23126909462853, 34.60593672551191], [-77.23114504510583, 34.60610591244384], [-77.23107405248932, 34.606200942243284], [-77.2309140515483, 34.60638007251373], [-77.23064340610821, 34.60647527841395], [-77.23050876611829, 34.606583776973], [-77.23027869062045, 34.606783655095285], [-77.23026412632854, 34.606795314638056], [-77.2302607939374, 34.6067998916294], [-77.23025286217847, 34.606807073064864], [-77.22989826279954, 34.607127287676335], [-77.22974761971233, 34.60723076002055], [-77.22958047730592, 34.60732969583547], [-77.22944669182269, 34.60738301213721], [-77.22900852135979, 34.607626428400884], [-77.22898291407351, 34.60762787759202], [-77.2289778524734, 34.6076413803433], [-77.22896200374507, 34.60765737015555], [-77.22845862799282, 34.608071766783986], [-77.22823014466404, 34.60827311360168], [-77.22821652787962, 34.60828834221437], [-77.22822711297712, 34.60829966024457], [-77.22812490879356, 34.60850822771236], [-77.22812064002176, 34.608516454849486], [-77.22811396491792, 34.6085256708551], [-77.22798634454371, 34.608713690861514], [-77.2279449531769, 34.60873827010261], [-77.22792469638507, 34.60878015712862], [-77.22778168620667, 34.608961064890565], [-77.22767053574944, 34.6090902055703], [-77.2276012182555, 34.60918250309315], [-77.22756561268613, 34.60928185096335], [-77.22754532620291, 34.609307551686], [-77.22740615949549, 34.609402789229094], [-77.227346894851, 34.60945975432004], [-77.22715783560207, 34.60961526430751], [-77.22695234351691, 34.60976621739192], [-77.22686750735588, 34.60983163810447], [-77.22668711193357, 34.609977844839705], [-77.22660129237357, 34.610046307931015], [-77.22656365856912, 34.61007790129861], [-77.22647815974314, 34.61012460459686], [-77.226264362243, 34.61025539570841], [-77.22611938513181, 34.610340130013874], [-77.22599653429039, 34.61046993690326], [-77.22593135216074, 34.6105015867559], [-77.22581673482769, 34.6105978934066], [-77.22574739884095, 34.61066667329585], [-77.22572243909117, 34.61068398307909], [-77.22561821778413, 34.610745047130706], [-77.22552841706788, 34.61080059575309], [-77.22549468760852, 34.61081742436296], [-77.22538236709991, 34.610892821018], [-77.22531490445428, 34.6109393842958], [-77.22523028423792, 34.61099865682163], [-77.22521153360874, 34.61101179077975], [-77.22516897951822, 34.61104417814798], [-77.22511131171521, 34.61108699886051], [-77.22506393244964, 34.611103366082055], [-77.22503550575323, 34.61114669587815], [-77.22492753432071, 34.611252243330505], [-77.22484215346071, 34.61132154013325], [-77.22463716354298, 34.611479376399245], [-77.22456963348587, 34.611535708676755], [-77.2245458330932, 34.611570147348644], [-77.2244562810161, 34.61161865046172], [-77.22426462649383, 34.61174731212362], [-77.22411719035782, 34.61184628883338], [-77.22398250452729, 34.61196072162956], [-77.22392721583188, 34.61200602180451], [-77.2237659807768, 34.61214888432352], [-77.22373486770746, 34.612163643131765], [-77.22373139692515, 34.61217657915038], [-77.22372214421942, 34.61218899273544], [-77.22349713514498, 34.612393765969976], [-77.22336667047934, 34.61249356624306], [-77.22335775494449, 34.61250060296097], [-77.22333539972692, 34.61251732778589], [-77.22321556963348, 34.61260721812153], [-77.22316658616927, 34.61264430567794], [-77.22305054777385, 34.61272870919588], [-77.22294641878258, 34.61277717722591], [-77.22292234205169, 34.61281974906101], [-77.22282559082632, 34.61289168965542], [-77.2226390073863, 34.61303306045214], [-77.22257108399418, 34.613100752821495], [-77.22238137307356, 34.61324840068052], [-77.22237341703514, 34.613253644685486], [-77.2223547523065, 34.61326974713354], [-77.22217198215809, 34.61340318404889], [-77.22213270050167, 34.61346444783362], [-77.22207484621465, 34.61353984034217], [-77.22208144227798, 34.61369608189539], [-77.22200160784728, 34.61390912010506], [-77.22197641977154, 34.61392347091122], [-77.22176100594623, 34.61402457634503], [-77.22154005836634, 34.61412469807274], [-77.22151653314012, 34.61413506306538], [-77.22148455843875, 34.61415500769308], [-77.22119774429805, 34.61433334998145], [-77.22109098031251, 34.61441396452512], [-77.22099078111677, 34.61455268860153], [-77.22073453243256, 34.61475435234162], [-77.22072622969516, 34.61476748058073], [-77.22071535993734, 34.614783007477], [-77.22056483477178, 34.61499041740628], [-77.22042619253631, 34.61513754449816], [-77.2203581262529, 34.615209775811664], [-77.22024499536496, 34.615326274322356], [-77.22014766892275, 34.61542883801884], [-77.22008650700107, 34.61549284946669], [-77.21993414362733, 34.61564765778653], [-77.2199048548027, 34.61565999555879], [-77.2198698917516, 34.615677260237796], [-77.2196457121252, 34.61575819584784], [-77.21961575651062, 34.61576266552478], [-77.21940598742532, 34.615841629857805], [-77.21938199767204, 34.61585232850675], [-77.2193505931523, 34.61586983574125], [-77.21921317710353, 34.615944243567895], [-77.21916783402246, 34.61599054854103], [-77.21906870372486, 34.61605067443205], [-77.21876488509521, 34.61624716102528], [-77.21876021247101, 34.6162619924956], [-77.21874181583755, 34.61626904414961], [-77.21871889624707, 34.61628424424315], [-77.21854978988392, 34.616426962046845], [-77.21849795945266, 34.6164769617883], [-77.21836644688815, 34.61659260577614], [-77.21826766512704, 34.6166944548791], [-77.21802707959611, 34.616890426858866], [-77.2179944026493, 34.616919127599125], [-77.21796726440954, 34.61693534577293], [-77.21779512042576, 34.617070590726065], [-77.21773780946559, 34.617123969087764], [-77.21761406137219, 34.61723826815198], [-77.217503845303, 34.61734117129997], [-77.21729103581124, 34.617533025547495], [-77.21726500337387, 34.61755798803076], [-77.21724842472234, 34.61757049426703], [-77.21720421534135, 34.61760895269767], [-77.21706107700714, 34.6177325776819], [-77.21701022909464, 34.61777354571869], [-77.21689867804633, 34.617863422246444], [-77.21687702840435, 34.617880865349534], [-77.21686826642568, 34.61788980092793], [-77.21675392124405, 34.61798898193001], [-77.2165559377785, 34.618175262269105], [-77.21651910630732, 34.61823668998826], [-77.2164251168165, 34.61831420494378], [-77.21633862574203, 34.6184048852312], [-77.21631245611017, 34.61842547398791], [-77.21615117559459, 34.61856687927585], [-77.21605979591214, 34.61864119725264], [-77.21581568148926, 34.61881941955637], [-77.2157856061842, 34.61885521939701], [-77.21575342317946, 34.61887053606504], [-77.2157074552768, 34.61889818275938], [-77.21534205693487, 34.61916208064288], [-77.215104278283, 34.619272758245], [-77.21501389984698, 34.61948657433906], [-77.21500255948978, 34.61951757398807], [-77.21478159223886, 34.61971863046639], [-77.21460030175828, 34.61981722596627], [-77.21443772804821, 34.61992714609443], [-77.21438524865584, 34.61995466331236], [-77.2143025272436, 34.620006086691845], [-77.21416438604503, 34.62008693135516], [-77.2141104830977, 34.620136973510796], [-77.21396197294825, 34.6202472510479], [-77.21375732915413, 34.62038231597254], [-77.21363582583928, 34.620489434144694], [-77.21354942082023, 34.620564008732], [-77.21351721765365, 34.62059722000325], [-77.21343001347888, 34.62074865475224], [-77.21340407366701, 34.62078820747419], [-77.21329635753122, 34.62086347130735], [-77.21314374431351, 34.62100332006266], [-77.21302466673083, 34.621045563792464], [-77.21287548058588, 34.621157547688405], [-77.21281602778087, 34.62121310804443], [-77.21279552457526, 34.6212344028589], [-77.21264690906511, 34.621367023038296], [-77.21256805234225, 34.62142919620024], [-77.21240810112084, 34.62156292777443], [-77.21230475925918, 34.62164407368031], [-77.21225748854432, 34.6216781061053], [-77.21212981632094, 34.62179666413333], [-77.21206040819021, 34.62186044769535], [-77.21203250393276, 34.62188702936368], [-77.21202021299895, 34.62201293430573], [-77.21199846002557, 34.622083428406775], [-77.21200141619741, 34.622091469816525], [-77.21201036154676, 34.622115803084384], [-77.21195103595142, 34.622149434453306], [-77.2117444303279, 34.6223068447609], [-77.21153372238851, 34.62234928232679], [-77.21136012437657, 34.6224831643289], [-77.2113250985741, 34.62250938914006], [-77.21114410645649, 34.62266019584431], [-77.21108894769316, 34.622726409656465], [-77.21096804602846, 34.622836015402406], [-77.21086385823259, 34.62294430421137], [-77.2108095568797, 34.62302010942154], [-77.21054392388032, 34.62315470170679], [-77.21040209594591, 34.62331514754579], [-77.21028235380973, 34.62345971064959], [-77.21015665903087, 34.62359546235812], [-77.2100712942084, 34.623678399273246], [-77.2097447315074, 34.62402804266575], [-77.20974485603513, 34.624034282282096], [-77.20971979634842, 34.62405524304247], [-77.20932247360642, 34.62432730076186], [-77.20883573110392, 34.624367869775824], [-77.2087179173908, 34.62436755751158], [-77.20842981606324, 34.6244017002595], [-77.2079772855323, 34.624445541333756], [-77.2077962046701, 34.62452168619745], [-77.20669483908546, 34.62461959927269], [-77.20578325850795, 34.62516432535272], [-77.20393241509595, 34.62479190149185], [-77.20086458482137, 34.625688868027936], [-77.19959731108864, 34.62818833396719], [-77.20300734751149, 34.629629384956246], [-77.20318391688988, 34.62978652216152], [-77.2032343137744, 34.63019254648567], [-77.2040505934093, 34.62971189008062], [-77.20946315997372, 34.62971332697178], [-77.20951838257227, 34.62825869444923], [-77.21044925376762, 34.627960306595696], [-77.21078632163642, 34.62694468395273], [-77.21068208408991, 34.626465200870015], [-77.21052741708408, 34.62630680203367], [-77.21053087425355, 34.62598188373879], [-77.21049903353274, 34.62595007539068], [-77.21053302608325, 34.62577957398501], [-77.21054177385155, 34.625747061094486], [-77.21060386497915, 34.62554354470943], [-77.21059603010677, 34.62551566461217], [-77.2106277474011, 34.62548873255443], [-77.2107352500185, 34.625380575140014], [-77.21097643142029, 34.6251413865841], [-77.21104112368344, 34.62507947278287], [-77.21112025910138, 34.62498314657665], [-77.21127828968108, 34.62475237783397], [-77.21140633506013, 34.62463696640161], [-77.21157175500886, 34.62444700644407], [-77.21178244610289, 34.62419532110657], [-77.21188656757357, 34.62397842352867], [-77.21206803540703, 34.62374652181261], [-77.2124729280851, 34.62337539829232], [-77.21250330570261, 34.62330955050113], [-77.21257467329173, 34.6232755067892], [-77.21267191190356, 34.6232237665667], [-77.21312570200841, 34.62288736373954], [-77.21333932313453, 34.62264070161178], [-77.21352849341753, 34.62244782310981], [-77.2138677715693, 34.622119192119555], [-77.21396697726416, 34.62201110202568], [-77.2140392021543, 34.62194827321018], [-77.21426941740533, 34.621736008682994], [-77.21445550311677, 34.621578333439686], [-77.21471745800194, 34.62123661119479], [-77.21478557375212, 34.62113304443665], [-77.214887155311, 34.62100334781563], [-77.2150309238373, 34.6208579504582], [-77.21528660242194, 34.62070126107236], [-77.21550015565887, 34.620617884248176], [-77.21577730439807, 34.620424977263696], [-77.21590732328978, 34.62032259751288], [-77.21594887222338, 34.620282214570274], [-77.21602988954157, 34.62020870747173], [-77.21627984790022, 34.61999648844921], [-77.21647192801088, 34.61985216725681], [-77.21668343234758, 34.61969801628855], [-77.21672525941568, 34.619636496360584], [-77.21681778299072, 34.619546738866], [-77.21693832390815, 34.61941764352847], [-77.21702778841134, 34.61934684761366], [-77.21719928660781, 34.61920257460776], [-77.21727003617059, 34.61914374530145], [-77.21742341471588, 34.61904129773546], [-77.21755413063903, 34.618994919685136], [-77.21750902574041, 34.61892090352602], [-77.21775957782171, 34.618682842715806], [-77.2178945995127, 34.61855044712421], [-77.21808986416892, 34.61835810341456], [-77.21811625904273, 34.61834264534632], [-77.2181253340188, 34.618323083332434], [-77.21831965107276, 34.61811265347921], [-77.21844399733112, 34.61797669772114], [-77.21866816859313, 34.6177527331521], [-77.21874298604429, 34.61767472430559], [-77.21879602757356, 34.61763236541684], [-77.21893236498084, 34.61752767684933], [-77.21918196388951, 34.61731820171238], [-77.21933760710962, 34.617250320292285], [-77.21945889260348, 34.61708967396653], [-77.21953409228982, 34.617030155869436], [-77.21956124299773, 34.61699811660344], [-77.21965160519142, 34.61694049674068], [-77.21976553727879, 34.61685111325776], [-77.21981114505006, 34.616816353151535], [-77.21996647471944, 34.61670112328146], [-77.22011076760688, 34.616604332245345], [-77.22030819230352, 34.61647695555152], [-77.2204032171166, 34.616432167093116], [-77.22044014687017, 34.61639466058172], [-77.22054323717605, 34.61631679459339], [-77.22077454287495, 34.616105009851864], [-77.22096749541947, 34.61596493827223], [-77.22118100283522, 34.61580911350126], [-77.22126374487479, 34.615752649415924], [-77.22149938765189, 34.61559184379204], [-77.22156915493063, 34.615541082773525], [-77.22159709447364, 34.61552178792342], [-77.22172533089886, 34.61513998494298], [-77.22165538233395, 34.61507652830973], [-77.22165874089904, 34.614919111520194], [-77.22166052474508, 34.614841253528716], [-77.22177578688012, 34.61475375899605], [-77.221815129011, 34.61472949038515], [-77.2219831458547, 34.614631045271445], [-77.22203736487371, 34.61459845459119], [-77.2221281546329, 34.61454947530771], [-77.22240503946165, 34.61451841064586], [-77.2225712328297, 34.614507313698624], [-77.22265506271891, 34.614490503327644], [-77.22286900885484, 34.61434487759779], [-77.2230209470174, 34.61424161851433], [-77.22307967096896, 34.614210760577784], [-77.22318775217335, 34.61412278053615], [-77.22356267640833, 34.61381302367349], [-77.22385237172905, 34.613583202554175], [-77.22410251405907, 34.613384277837625], [-77.22461601628723, 34.61296828282183], [-77.22462738633459, 34.61295771117153], [-77.22463162545097, 34.61295468428234], [-77.22464255614098, 34.61294679731155], [-77.22504555774758, 34.61267224799256], [-77.22522536549434, 34.61253018897372], [-77.22542823356363, 34.61235520689646], [-77.22554607192978, 34.61224147692196], [-77.22569503972204, 34.6120959001332], [-77.22578251110345, 34.61201290197718], [-77.22595778525432, 34.61172011084808], [-77.22598296030444, 34.611647265014675], [-77.22597222816282, 34.61152419397702], [-77.22618691124616, 34.61153210961453], [-77.22671934493843, 34.611234022990715], [-77.22692524378053, 34.61105708161817], [-77.22704483967279, 34.610946115510146], [-77.22691864771366, 34.610920016065585], [-77.22690397010716, 34.610815130170906], [-77.22689860796615, 34.610776811661324], [-77.22703374789427, 34.6106927784346], [-77.22725514699611, 34.61069309816013], [-77.22744678251652, 34.610584392709754], [-77.22753595871681, 34.61053380731131], [-77.22766741777974, 34.61040239578244], [-77.22771135386802, 34.61036959174308], [-77.22782246696723, 34.610287856454924], [-77.22807859682382, 34.61011072304116], [-77.22835960064671, 34.60994938649126], [-77.22850609550682, 34.60983357039735], [-77.22858681020051, 34.60973163643243], [-77.22876879993981, 34.6095664760183], [-77.22881189193808, 34.609513717772266], [-77.22884290972151, 34.609475742046264], [-77.22896066063731, 34.60938605445832], [-77.22928498421508, 34.60921155933911], [-77.22945666654041, 34.60909323406487], [-77.2294798614233, 34.60893309972037], [-77.22955179455948, 34.60879145574886], [-77.22977236045078, 34.60864678457198], [-77.22990414627313, 34.60844745419726], [-77.23005606509112, 34.608197810800974], [-77.23025430189612, 34.60810150236412], [-77.2303756260699, 34.60798734472968], [-77.23058886546991, 34.60783639084091], [-77.23065630532035, 34.607801677134894], [-77.23073909225951, 34.60778034108078], [-77.23079608137016, 34.60770594434123], [-77.23135008854584, 34.60735718534855], [-77.23147664722272, 34.60721656236972], [-77.23151387705988, 34.60713442833676], [-77.23157316750759, 34.60704784395139], [-77.23163086943481, 34.60690797870547], [-77.23199808943733, 34.60652149390802], [-77.23199662398497, 34.60646547498393], [-77.23200456566572, 34.606371305548414], [-77.23215881532423, 34.6064016206025], [-77.23250402806907, 34.606158190093566], [-77.23261468262275, 34.60604287233101], [-77.23282652834655, 34.605844165117915], [-77.23284770987193, 34.60582557528746], [-77.23285531680796, 34.60581325691438], [-77.23316433749596, 34.605614871317634], [-77.2332838576339, 34.60553704965141], [-77.23351947779256, 34.605380014359625], [-77.2337123661564, 34.6052608150364], [-77.23382054498231, 34.60519527279268], [-77.23397966838616, 34.60504533325572], [-77.23410087892128, 34.60494900115033], [-77.23431211492573, 34.604762686947836], [-77.23440760932918, 34.60456443351789], [-77.23485858637666, 34.60440089368587], [-77.23492861828784, 34.60437049256655], [-77.23498444764512, 34.604344355683104], [-77.23537228742643, 34.604107748602274], [-77.23554787622194, 34.60391743278602], [-77.23581896992344, 34.60362235416703], [-77.23594357183629, 34.60347728199228], [-77.23598959922138, 34.60334205324075], [-77.23631316667544, 34.60319364813192], [-77.23643849807505, 34.60308396774822], [-77.23652352139565, 34.60305165913751], [-77.23651607083097, 34.60299412643954], [-77.23676697554431, 34.60271875717666], [-77.23687477637094, 34.60260800219249], [-77.23712146551742, 34.60240020768823], [-77.23713466114584, 34.60238842770529], [-77.23743532056486, 34.602180845557456], [-77.237542041144, 34.60209341064756], [-77.23781255823513, 34.60189779965657], [-77.23795942408616, 34.601807293630266], [-77.23806507518687, 34.601759144047335], [-77.238423459642, 34.601562677664965], [-77.23868094533903, 34.601336345215785], [-77.23906109478713, 34.6009395975], [-77.23910280808343, 34.60089825053774], [-77.23913073555632, 34.60087703978748], [-77.23921440741915, 34.60079450297149], [-77.23956515183963, 34.600463345296646], [-77.23963567895237, 34.60035718539717], [-77.23981928792213, 34.60017475145965], [-77.23997311779601, 34.600024152503885], [-77.24017991588624, 34.59983815589646], [-77.24021012877279, 34.59980715989623], [-77.24026070162324, 34.59975589118504], [-77.24034844826772, 34.599582386590185], [-77.24051604809824, 34.59947977127242], [-77.24063412909088, 34.5993692296917], [-77.24082306984738, 34.59917803971601], [-77.24084275549436, 34.599149998412976], [-77.2408600601227, 34.5991283982424], [-77.24093425092008, 34.59906299728941], [-77.241196027317, 34.59876987024799], [-77.24143944067461, 34.598725676743996], [-77.24212505268905, 34.598376387208475], [-77.24220226311616, 34.59835019635447], [-77.24222606934634, 34.59831632358601], [-77.24222104220851, 34.59828744010967], [-77.2425475572218, 34.59799996974083], [-77.24275976607652, 34.59788703285296], [-77.24302410443173, 34.59776649847932], [-77.24322785968955, 34.59745257131148], [-77.24362332630133, 34.59708233229439], [-77.24371801619259, 34.597069009970184], [-77.24375685551473, 34.597022907651876], [-77.24382771314146, 34.596951311957646], [-77.24408375089484, 34.59673697241436], [-77.24411286011622, 34.59657961108715], [-77.24424832179663, 34.59642649035476], [-77.24436645743167, 34.59633108060369], [-77.24463533601401, 34.59614943030504], [-77.2447798072553, 34.59604140090095], [-77.24491415448537, 34.59593572522113], [-77.24511765308813, 34.59579596622096], [-77.2451878672062, 34.59574701742492], [-77.24523351758175, 34.595725213708675], [-77.24530108926774, 34.595665039919425], [-77.24551407116714, 34.595511643750186], [-77.24559371597785, 34.5954506679414], [-77.24578617653981, 34.595308105592544], [-77.24580136461778, 34.595298604519414], [-77.24599505922508, 34.595150312247654], [-77.24632981038633, 34.59491257514696], [-77.24638678968577, 34.594873378026065], [-77.24640572331901, 34.5948582490804], [-77.2464668666278, 34.594796188355126], [-77.2467688536997, 34.59452390530334], [-77.24688112485788, 34.59444097314673], [-77.24689029867365, 34.594335373769], [-77.24705979719425, 34.59412535271041], [-77.24719463426246, 34.59399432271401], [-77.24742720107099, 34.593794813994776], [-77.24751879447408, 34.593732709090794], [-77.2477705911631, 34.593568346070576], [-77.24784855759427, 34.59351226739291], [-77.2480424732505, 34.593349031215205], [-77.24823522228974, 34.593198863902465], [-77.2483688126258, 34.59314412022843], [-77.248483419544, 34.59300420446493], [-77.24885152958956, 34.59271079487297], [-77.2489652132874, 34.592533511317775], [-77.2492808547207, 34.59227326340547], [-77.24936440820805, 34.5922312587794], [-77.24950538165879, 34.59212442807018], [-77.24976216571321, 34.59192772803164], [-77.24990069206041, 34.59185073464795], [-77.25014256211718, 34.591648281959706], [-77.25015994967336, 34.59163548023793], [-77.25016650569665, 34.591630053991864], [-77.25040451681694, 34.59141906734249], [-77.25054117537107, 34.59130598970262], [-77.25078371339201, 34.59104084722924], [-77.25084047942467, 34.590982055004574], [-77.25088532919133, 34.59095478426783], [-77.25096648569561, 34.590903289509676], [-77.2512994232619, 34.590665790152855], [-77.25152009214553, 34.59056422691959], [-77.2516774502547, 34.590344717210264], [-77.25168265844917, 34.59033688846004], [-77.2519084443614, 34.59012346234959], [-77.2520282219057, 34.58999940250892], [-77.25213364919125, 34.5899055234228], [-77.25233863068384, 34.589723889309155], [-77.25237810709432, 34.589689099819395], [-77.25239877603599, 34.58967168575015], [-77.25245814893145, 34.58962166229793], [-77.25259130085021, 34.58951427447407], [-77.25266741781306, 34.589476207254876], [-77.2528179884243, 34.58938724976001], [-77.2530499290172, 34.58927065178683], [-77.25325399477708, 34.58911775274099], [-77.25364944630329, 34.58893350989217], [-77.25379194627347, 34.58893893140363], [-77.25384611510214, 34.58886199270131], [-77.2538747387965, 34.58878133912549], [-77.25406797966434, 34.58852714909142], [-77.25409485309183, 34.58841023193266], [-77.25415501085949, 34.588308994373165], [-77.25435767341352, 34.58812751844071], [-77.2545939009641, 34.587978175553054], [-77.25471801129277, 34.58773078193095], [-77.25480686618396, 34.587523597618656], [-77.25502277296948, 34.587404498635166], [-77.25512893932851, 34.58720950987283], [-77.25502619663104, 34.58706952062251], [-77.2551301631974, 34.586842724294904], [-77.25513071001427, 34.58684207720046], [-77.25513479769097, 34.58683991299272], [-77.2554595063305, 34.58663228781145], [-77.25555521443117, 34.58656349391234], [-77.25567866750623, 34.58658931530163], [-77.25594185840771, 34.58653770544125], [-77.25614837369739, 34.5864940715934], [-77.25621144389724, 34.58648988372411], [-77.25637389444128, 34.58637592474668], [-77.25657340631977, 34.58624862465525], [-77.25662958205892, 34.5862045062334], [-77.25681436888777, 34.58601087581046], [-77.25697073294029, 34.5858506554382], [-77.2569948002164, 34.58581044974864], [-77.25706096843712, 34.58575123152636], [-77.25733377419132, 34.585516276083254], [-77.25749332864142, 34.58537834457223], [-77.25759493273156, 34.58530122068179], [-77.25773241220077, 34.58521355907173], [-77.25775588326299, 34.585163337364385], [-77.25783531385325, 34.585093849214715], [-77.25799475985792, 34.58494646628095], [-77.25807608204158, 34.584861953507115], [-77.25824407049447, 34.5847304161417], [-77.25827319829463, 34.58470863733424], [-77.25835233680351, 34.58463731042728], [-77.25846391977652, 34.584549633547624], [-77.25848823463457, 34.58451396053057], [-77.25856741795194, 34.58445227696522], [-77.25883159950487, 34.58421938597442], [-77.25903746685933, 34.58408584035624], [-77.25923260811359, 34.583918783255726], [-77.25926855817261, 34.58386835547057], [-77.25935668594009, 34.58378928837805], [-77.25950949893732, 34.58365164472033], [-77.2595806821957, 34.58357110134088], [-77.25982418438934, 34.5833943228763], [-77.25998702922723, 34.58327524954989], [-77.26003065401716, 34.58322131255653], [-77.26013432493234, 34.583130645650876], [-77.26028003054547, 34.58300526449931], [-77.2603459725702, 34.582937238025096], [-77.26055295618053, 34.582791068444614], [-77.26073697708424, 34.582627743403776], [-77.26078842594308, 34.58257392600812], [-77.26091577096028, 34.58247056796556], [-77.26105359948666, 34.58235911972683], [-77.26111713725777, 34.582308605402616], [-77.26128582915041, 34.58217140177779], [-77.26132187830358, 34.582144557454406], [-77.26151402459507, 34.58200434559798], [-77.26157689040451, 34.58192895075849], [-77.26173007031895, 34.58179817637898], [-77.2618308662284, 34.58171326231577], [-77.26188096649585, 34.581673454385125], [-77.26202176980607, 34.581549785329265], [-77.2620868274368, 34.58149772972234], [-77.26227056670689, 34.58136271637291], [-77.2623230687931, 34.58128064522951], [-77.26243435788328, 34.58116697920098], [-77.2625400680379, 34.58106204681086], [-77.26258111145586, 34.58098166920911], [-77.26274098226321, 34.580842182861076], [-77.26277491359095, 34.58082541434548], [-77.26283523375373, 34.58077489079893], [-77.26298236483551, 34.58068129873239], [-77.26301416216215, 34.58062800328858], [-77.26310514472269, 34.58054832219159], [-77.2632678182965, 34.5804122874932], [-77.26333352059868, 34.58033637366374], [-77.26351780494198, 34.58019628283165], [-77.26353482256755, 34.58018679050014], [-77.26356983734784, 34.5801558620722], [-77.26372284540156, 34.58002539721555], [-77.26380059823828, 34.579982858092144], [-77.26388216752956, 34.579889866005814], [-77.26402992979382, 34.57976522785569], [-77.26408646012368, 34.57969155591476], [-77.2642560092796, 34.5795473416355], [-77.26427951156347, 34.579534636379975], [-77.26432728073866, 34.579491654153045], [-77.26446317781766, 34.579369370017474], [-77.26453058611057, 34.5793332694228], [-77.26458130017609, 34.57926057633759], [-77.264759318588, 34.57911559108828], [-77.26483772347592, 34.5790452536998], [-77.26487778944022, 34.579007074779334], [-77.26494332740592, 34.57894126130415], [-77.26498278113307, 34.57889749808087], [-77.26501046597976, 34.578870273311324], [-77.26510714037555, 34.57878310065858], [-77.26519461949344, 34.57870544191502], [-77.26525111572737, 34.578682933794965], [-77.26528867961942, 34.57862818998812], [-77.26547945851362, 34.5784652238422], [-77.26557745269277, 34.57838869913319], [-77.2657167061736, 34.57824821403385], [-77.26575669414558, 34.578219500496346], [-77.26585715388413, 34.57813352483387], [-77.26595024078978, 34.5780630245409], [-77.26600769591323, 34.57803543025338], [-77.2660199416379, 34.57798684980239], [-77.26608720030204, 34.57792384864215], [-77.26612419283157, 34.57788912227937], [-77.26623375686134, 34.57781753986336], [-77.26632626243536, 34.57774022684505], [-77.26646271192377, 34.57759987688437], [-77.26650044919775, 34.5775665343515], [-77.26661362482848, 34.57747115451979], [-77.26669395052961, 34.57741001961166], [-77.26671827745947, 34.577384306214306], [-77.26678174296087, 34.577334061122656], [-77.26688845258987, 34.57725439523149], [-77.26695920557387, 34.5772045226924], [-77.26699127492823, 34.57718153807846], [-77.2670060973475, 34.57717127144094], [-77.26709173854363, 34.57710658317069], [-77.26714133372766, 34.57706407179057], [-77.26725902904408, 34.576971556770104], [-77.26727492484696, 34.5769567426897], [-77.26728569189899, 34.57695047155821], [-77.26730728414616, 34.576932946764174], [-77.26747845517622, 34.57679330180129], [-77.26758100730962, 34.57674514279494], [-77.26765961968925, 34.57663777995506], [-77.26779720562628, 34.57652647490516], [-77.26786025458046, 34.57647564877293], [-77.2680398952165, 34.576317700717304], [-77.26804696734541, 34.57631309925177], [-77.26804825525419, 34.57631054719043], [-77.26805328961234, 34.57630659407639], [-77.26824791653631, 34.576163211060035], [-77.26837384533658, 34.57610047961944], [-77.2684561088053, 34.5760197648557], [-77.26852829507267, 34.57594493510271], [-77.26859715513575, 34.57588236992303], [-77.26863399006925, 34.57584936215438], [-77.26874729407808, 34.57575228098302], [-77.26882681141223, 34.575692246671636], [-77.26884718376208, 34.57566636066805], [-77.26890522014435, 34.57562001688968], [-77.26901486865599, 34.57553089464943], [-77.26912726833788, 34.57545271385077], [-77.26921398896808, 34.57537938178848], [-77.26933650648604, 34.575274730852655], [-77.2693749760144, 34.57523652135478], [-77.26940405576167, 34.57521981770178], [-77.26946059947882, 34.57517515939237], [-77.26959866492173, 34.57506429360984], [-77.26965136535273, 34.57502258330564], [-77.26977807777072, 34.5749255889534], [-77.26979643068009, 34.57491157722942], [-77.26993016383068, 34.57480883404129], [-77.26998989738165, 34.57475503779891], [-77.27017619784532, 34.574593480442466], [-77.27017713746419, 34.57459296136333], [-77.27017782810866, 34.574592637007974], [-77.27017794622844, 34.574592068016194], [-77.27037606822975, 34.57444128199908], [-77.270484550876, 34.57438108194857], [-77.27059888166325, 34.57431084229397], [-77.27071761723104, 34.57416373646415], [-77.27076493907342, 34.57412992883508], [-77.27085495364238, 34.57405669899994], [-77.27087858930074, 34.57403789365756], [-77.27096601452214, 34.57398015791394], [-77.27103175898695, 34.573952763725146], [-77.27105413588399, 34.57389637516039], [-77.27114919510858, 34.5738144730752], [-77.27123656011338, 34.57373319576737], [-77.27124918245886, 34.57372173411753], [-77.27133688399903, 34.573652797945705], [-77.27142974453164, 34.57357193585549], [-77.27148835009994, 34.57351732087225], [-77.27152823391205, 34.57349437901224], [-77.27160531054196, 34.57343417248724], [-77.2717243502386, 34.573340199274874], [-77.2717896818802, 34.573305339733324], [-77.27184702112987, 34.57323188273639], [-77.27188844120994, 34.57319526918694], [-77.27190852429948, 34.57317539950746], [-77.27201179675004, 34.57308713160567], [-77.27209257067969, 34.573010486542884], [-77.27222680744052, 34.57290587366365], [-77.27226515544757, 34.572871379089236], [-77.27228276648744, 34.57285104276074], [-77.27232867376966, 34.57283706737235], [-77.2725157658339, 34.572729664894375], [-77.27262246789782, 34.57266379626317], [-77.27273777934371, 34.57259851747667], [-77.2728488876355, 34.572489079633904], [-77.2728801827196, 34.57244838510655], [-77.2729086438674, 34.572421883294794], [-77.27299590436365, 34.57235094545763], [-77.27316800707307, 34.57223533979343], [-77.27331906049557, 34.57212969995998], [-77.27346013924515, 34.57202263255516], [-77.27367124866856, 34.57184875880442], [-77.27370904469085, 34.57181934790812], [-77.27372922256173, 34.57180811352657], [-77.27375247419197, 34.5717830870456], [-77.27397479293039, 34.57159174607777], [-77.27406697896492, 34.57148049490405], [-77.27419866975501, 34.571373673633474], [-77.2744218919966, 34.57119763408308], [-77.27446019515313, 34.571173019978225], [-77.27447823049448, 34.57115997677341], [-77.27451024706855, 34.571131719612865], [-77.27473218212569, 34.57094426685096], [-77.27479913610392, 34.57081727958285], [-77.2748952022073, 34.570721410951634], [-77.2751614906798, 34.57052026146046], [-77.27517914141194, 34.570508057426764], [-77.27518488462854, 34.57050316680599], [-77.27548202956325, 34.570296191258], [-77.27559279613982, 34.57020876416215], [-77.27584295122992, 34.57005397612745], [-77.27601749074844, 34.56992928802153], [-77.27608053903234, 34.56987188770905], [-77.27623347541795, 34.56975113454677], [-77.27638985589545, 34.56960327766392], [-77.27654151625632, 34.569505777422066], [-77.27661232841601, 34.569442339620586], [-77.2767628163515, 34.56927779822357], [-77.27691308622953, 34.569129028959985], [-77.2770183879197, 34.56900291178496], [-77.27708113064725, 34.56890372493783], [-77.27737748458335, 34.56868578520171], [-77.27747232342587, 34.56859446236243], [-77.27750263228741, 34.56856962557525], [-77.27759553496175, 34.568505852703765], [-77.27787836115832, 34.56829840204644], [-77.27805140948676, 34.568186272980284], [-77.27810898723446, 34.56814593062429], [-77.27829934936629, 34.56801563802354], [-77.27835394906725, 34.56792950904034], [-77.27849980371641, 34.567799540915345], [-77.27859999499248, 34.56771317240921], [-77.27863650804218, 34.56765832913561], [-77.27878981902796, 34.56755918955129], [-77.27884591326197, 34.56751598025668], [-77.27886849338284, 34.567498599169284], [-77.27892024062649, 34.56745825985253], [-77.27904303122025, 34.567362704959976], [-77.27913699340341, 34.56728402537644], [-77.27935329539287, 34.56711224697453], [-77.27940687678164, 34.56706956004752], [-77.27942096522935, 34.56704165886079], [-77.27949439379447, 34.56699900753217], [-77.27961937150795, 34.566889530370354], [-77.27965915260347, 34.566853711216204], [-77.27973028779289, 34.566787242289266], [-77.27980052922324, 34.56672206388636], [-77.2799171901375, 34.566638314398524], [-77.28013793990249, 34.566450744630444], [-77.28016372857147, 34.56642201425293], [-77.28018507366339, 34.56640689919843], [-77.28024599686213, 34.56634577555231], [-77.28039866148357, 34.566204802101545], [-77.28054213704823, 34.56606729833485], [-77.28063709968374, 34.56598786491399], [-77.2808161172177, 34.56582913538884], [-77.28087633072411, 34.565770989795894], [-77.28090138318271, 34.56572964042449], [-77.28109241400146, 34.56555229578087], [-77.28129127302442, 34.5654192335449], [-77.28138891722159, 34.56533991829168], [-77.28168718636813, 34.56513522400089], [-77.28169492521802, 34.565128286304486], [-77.28170010837766, 34.56512567550145], [-77.28170710700412, 34.5651225047807], [-77.28212699840557, 34.564848173047736], [-77.2823372526285, 34.56470740055905], [-77.2823386211886, 34.56470676154118], [-77.28257214129282, 34.56458690316482], [-77.28277210712662, 34.56450588399798], [-77.2828246983306, 34.56448293239447], [-77.28288894520922, 34.56445162166949], [-77.28306804152605, 34.564370768559115], [-77.28322722405018, 34.56430595720403], [-77.28337975850229, 34.564241589127846], [-77.28348888794362, 34.564195540092626], [-77.28378969885301, 34.56407691172216], [-77.2841961431655, 34.56389224505827], [-77.28419958934619, 34.56389078622715], [-77.28420072283365, 34.56389019850783], [-77.28461028623914, 34.563717620807964], [-77.28489467220231, 34.56360323246941], [-77.28502032277001, 34.56354867560582], [-77.28520956489474, 34.56347720746997], [-77.28543028360612, 34.56338284157018], [-77.28560095325884, 34.563303329679044], [-77.28617225994934, 34.563060587100075], [-77.28625082384842, 34.56302492016733], [-77.28631423277344, 34.562995705249975], [-77.2868547207239, 34.562752047831], [-77.28704703955371, 34.56266655102247], [-77.28707164981604, 34.5626546561932], [-77.28710712447565, 34.56264177583454], [-77.2877631537843, 34.56235578140924], [-77.28789160520972, 34.56232074367307], [-77.28842181629761, 34.562108316042746], [-77.28871194648383, 34.56197027730896], [-77.28902451175703, 34.561807874427664], [-77.28953281794992, 34.56159715276195], [-77.28990901877233, 34.56142614186163], [-77.29035442181464, 34.561192813904356], [-77.29059511215118, 34.561042557509246], [-77.29094251658364, 34.560844913784145], [-77.29106578368756, 34.560774923886186], [-77.29115036554042, 34.560746826617], [-77.29132895078621, 34.56065466671205], [-77.29143420574272, 34.560599631824516], [-77.29154787190714, 34.560543338656274], [-77.29157380131622, 34.56052548531004], [-77.29161077666014, 34.56050428189471], [-77.29194567930554, 34.56032705922178], [-77.29205738430093, 34.560264141492794], [-77.29223489878285, 34.56016997509324], [-77.29230282849937, 34.56013524910536], [-77.2923433808267, 34.56011515963117], [-77.2925677445131, 34.56001584299103], [-77.29274063312248, 34.559922140969064], [-77.29290227677062, 34.559829460992376], [-77.2930449423846, 34.559751387924436], [-77.29313857855414, 34.559699766855374], [-77.29329256917391, 34.55962355850786], [-77.2935242537217, 34.559495454304766], [-77.29353134158622, 34.5594914152568], [-77.2935362597161, 34.559488463792604], [-77.29357732209411, 34.55946262525272], [-77.2937572887817, 34.55935302359367], [-77.29377878414353, 34.55933654693388], [-77.2939345982009, 34.559249299649], [-77.29402341951001, 34.559234208739234], [-77.29422445583472, 34.559214832414526], [-77.29432697386912, 34.559262024961654], [-77.29458271529288, 34.559185338695954], [-77.29479168949524, 34.559111557050514], [-77.29492223453443, 34.559050140933564], [-77.29504980793887, 34.558988837912246], [-77.29512258029705, 34.55882855907802], [-77.29514327391433, 34.55878590401101], [-77.29514383826296, 34.55877355109206], [-77.29516004945178, 34.55874903906156], [-77.29527427343967, 34.55860125564857], [-77.29548845384724, 34.55850085583628], [-77.29552338682157, 34.55848469526918], [-77.2955365027233, 34.55848053932734], [-77.29555825868665, 34.55846930302935], [-77.29592021697529, 34.558308865300525], [-77.2961210653105, 34.5582683867264], [-77.29631602604127, 34.55817615496504], [-77.29647883971558, 34.55809244640717], [-77.29662399000873, 34.55801646221437], [-77.29671306752616, 34.55799124358106], [-77.2969298128849, 34.557894058867575], [-77.29710970697523, 34.557823267950525], [-77.29716902730064, 34.55778505290542], [-77.29728357640218, 34.55773220058093], [-77.29742882989576, 34.55766315314858], [-77.29750705733264, 34.557625130561505], [-77.2977089337628, 34.557551142938664], [-77.29790343595795, 34.5574680487159], [-77.29797588911124, 34.557432727554364], [-77.29814428063105, 34.55736391941052], [-77.29825413940864, 34.55731981415457], [-77.29830009312472, 34.557299105513344], [-77.29843952854394, 34.55723556693431], [-77.2986968154413, 34.55712733153018], [-77.29883519333525, 34.557105947522246], [-77.29909207677258, 34.55701737317563], [-77.2993474491061, 34.55685856547665], [-77.2998618187905, 34.55664311586063], [-77.29988645060834, 34.55663410869812], [-77.29989581271076, 34.556628772649105], [-77.29991508528926, 34.55662024910439], [-77.30028366142483, 34.55644134266916], [-77.3004226088992, 34.556388472314225], [-77.3006805189801, 34.55626347187693], [-77.30096471613032, 34.55615563005392], [-77.30134977607578, 34.55600099907238], [-77.30147325039708, 34.5559492237897], [-77.30152894163575, 34.55593356143406], [-77.30181861540402, 34.555857503914325], [-77.30186836900361, 34.55584490079927], [-77.30213834917424, 34.55573350068346], [-77.3022645063976, 34.5556973067994], [-77.30265988152591, 34.555493279278075], [-77.30266199514928, 34.55549230276248], [-77.3026630049614, 34.555492155052185], [-77.30305936153744, 34.55529240652653], [-77.30315702980877, 34.55523588771245], [-77.3034406192594, 34.55513512695262], [-77.30374542388918, 34.55502558804558], [-77.30385203010306, 34.55498001156009], [-77.30417571872707, 34.55473827678716], [-77.30425254731901, 34.55464606427246], [-77.30431110336968, 34.55455576864665], [-77.30436384476491, 34.55451301673608], [-77.30450267018556, 34.55440062679548], [-77.30465259440317, 34.55433195038222], [-77.30490155164819, 34.55428136803179], [-77.30525438740145, 34.554269879550475], [-77.30544035611878, 34.554227406814135], [-77.30591982263928, 34.55399417741426], [-77.30623457760558, 34.5538481414866], [-77.30633271254476, 34.55380131215721], [-77.30688055042474, 34.553662177418076], [-77.30700676638926, 34.55363273028638], [-77.30702509397025, 34.55362613211613], [-77.30757168402207, 34.553410987849325], [-77.3078183446747, 34.553287591794636], [-77.30802362072977, 34.553134216308514], [-77.30834460160197, 34.55296239891684], [-77.30851006908455, 34.552874253596116], [-77.308614700622, 34.55281659391447], [-77.30899369579079, 34.552612916339584], [-77.3090744983886, 34.55257448339945], [-77.3094095503013, 34.55240933936545], [-77.30952914985298, 34.55237682146036], [-77.30965696595102, 34.55228437764755], [-77.31001247082395, 34.55211533430267], [-77.31020377297354, 34.552028450563284], [-77.31050007445204, 34.551855932828374], [-77.31060156049894, 34.55180907567879], [-77.31075316775002, 34.55173075750959], [-77.31089613960816, 34.551679878668125], [-77.31099763319003, 34.55166268498415], [-77.31112077288381, 34.55166135441111], [-77.311173721847, 34.55157699353285], [-77.3115902629845, 34.55139312962106], [-77.3116769674914, 34.55125992709313], [-77.31179514730906, 34.551140839240084], [-77.3118924253663, 34.55104340944436], [-77.31194642957509, 34.55097642651562], [-77.31217901400026, 34.55070998724408], [-77.31219396237397, 34.55069338508589], [-77.31243005969921, 34.55041736254988], [-77.31250355856497, 34.550347286177995], [-77.31260158581458, 34.55023795114083], [-77.3128422443045, 34.55001535565437], [-77.31290882110795, 34.549858995717486], [-77.3129395153483, 34.54981428907513], [-77.3130064858851, 34.54971453263014], [-77.31306562280804, 34.54962726689833], [-77.31307674704043, 34.54959007211694], [-77.31320893421633, 34.54945281624289], [-77.31321174135076, 34.549449991082746], [-77.31321455042202, 34.549447878684425], [-77.31324764312168, 34.54941947797994], [-77.3133878097385, 34.54930059344358], [-77.31338852959513, 34.54928765258889], [-77.31340930549153, 34.5492796639796], [-77.31358957656019, 34.54913712914437], [-77.31374102916868, 34.54900505975136], [-77.31375700993638, 34.54897023463426], [-77.31380990159678, 34.548939501692175], [-77.31395496920544, 34.548818207557595], [-77.31404557032792, 34.5487165153737], [-77.31409578476553, 34.54863834942779], [-77.3142114427544, 34.54855886250198], [-77.3142838503263, 34.54848150406552], [-77.31436088618571, 34.5484264227117], [-77.31445700176428, 34.548317394783346], [-77.3145754608451, 34.54815079692921], [-77.31461433880148, 34.548120226204425], [-77.31476521348966, 34.547970625592164], [-77.31485940214284, 34.54786520826083], [-77.31492179586172, 34.54779844721159], [-77.31498707332045, 34.54772446744371], [-77.31501698193671, 34.547692209454546], [-77.31507820014623, 34.54762618229518], [-77.31511771507081, 34.547583299657376], [-77.31521841500987, 34.5474733737318], [-77.3152485256769, 34.54746069748382], [-77.31529605291887, 34.54738811626131], [-77.315364862138, 34.54730299381811], [-77.31537538040891, 34.54727404123756], [-77.3154199460131, 34.54725031092317], [-77.31554609500633, 34.54710874623211], [-77.31563846003667, 34.54701888828028], [-77.31570887532959, 34.54693958708714], [-77.31575106200386, 34.54688031067117], [-77.315823007983, 34.546804049926706], [-77.31585952840368, 34.546764521830866], [-77.3158836057056, 34.54673886863704], [-77.31599906395319, 34.54661526285815], [-77.31601572715552, 34.54659748708235], [-77.31601842012772, 34.54659346910294], [-77.31613795301011, 34.54645752649337], [-77.31618173907194, 34.54642457262355], [-77.3162255436201, 34.546380093466965], [-77.31626381411466, 34.54634032687146], [-77.31630522668364, 34.54631109569121], [-77.31636270016072, 34.54626426844076], [-77.31661404733688, 34.546150248383185], [-77.31662360920971, 34.54614698024653], [-77.31662986655144, 34.54614594832426], [-77.31664088366831, 34.54614047917936], [-77.3169183390026, 34.54603800438893], [-77.31702116146711, 34.545935709689715], [-77.3171183690346, 34.545886987235846], [-77.3171380374919, 34.545824259048274], [-77.3171727897881, 34.54572775293945], [-77.31720397600948, 34.545680244126444], [-77.31722367504868, 34.545670281747356], [-77.31725452438604, 34.545665948489514], [-77.31732236599154, 34.54564723131281], [-77.31741520637993, 34.5456588994631], [-77.31742023128923, 34.54565947440614], [-77.31742687163268, 34.545660365540854], [-77.31752180613742, 34.545705131313824], [-77.31776699977775, 34.545706010472465], [-77.3178116368519, 34.545710834912576], [-77.3178752272754, 34.54571836815267], [-77.3180725153277, 34.54577128691204], [-77.31819997516206, 34.54589338879779], [-77.31822566787929, 34.54591284030264], [-77.31832282976595, 34.54606459207732], [-77.31835691278118, 34.5461387986546], [-77.31841637708979, 34.546270695167664], [-77.31845007920909, 34.546370226989275], [-77.31849032190172, 34.54642052650111], [-77.31858033335516, 34.54641736698494], [-77.31874858697144, 34.546466527200074], [-77.31883034674809, 34.546472297890546], [-77.31897169055361, 34.54647096713965], [-77.31906204984368, 34.5464707874621], [-77.31936442435133, 34.546465675637656], [-77.31946725746579, 34.54646891830047], [-77.3196718316594, 34.54649227032334], [-77.31975610149175, 34.54650560423007], [-77.319905161107, 34.54649885727427], [-77.32026692215595, 34.546524859351194], [-77.32054102608144, 34.5465182574768], [-77.32088915514727, 34.54648118049405], [-77.32093449216953, 34.54648159133719], [-77.3209615095465, 34.54648220572377], [-77.32102909113138, 34.54648935188479], [-77.3212459237044, 34.54650842744586], [-77.32132553454176, 34.54654872853102], [-77.32144561727485, 34.54659871562927], [-77.3217166704658, 34.54661188010129], [-77.32174036664199, 34.546617121231705], [-77.32177671614272, 34.546626750693726], [-77.3219777906279, 34.546678876705315], [-77.32207757504631, 34.546705930407626], [-77.32209500008192, 34.546710890723645], [-77.32210650195893, 34.54673095203597], [-77.32216217720003, 34.54678074032793], [-77.32219298428792, 34.54681175473575], [-77.32214583564237, 34.54703439975258], [-77.32214168519364, 34.54706393796763], [-77.32252796258112, 34.54722802943839], [-77.32287700740696, 34.54736181806726], [-77.32298131409675, 34.54736779658044], [-77.32326981093973, 34.54735366076535], [-77.32344835142277, 34.5473658164495], [-77.32360688902659, 34.54737732101268], [-77.32366150312288, 34.547393159551966], [-77.32402240941089, 34.54752814228865], [-77.32402324423045, 34.54754506440109], [-77.32415726496319, 34.54775357693593], [-77.32431711349876, 34.54780543747397], [-77.32443625780465, 34.547842452936095], [-77.32457641005921, 34.5479381609782], [-77.32468729060918, 34.54800810360402], [-77.32482417814666, 34.5480439269174], [-77.32489972949614, 34.548088752704444], [-77.32500864459071, 34.548120862312246], [-77.32506815826522, 34.54820268447037], [-77.32521344359783, 34.548187741897884], [-77.3254088278835, 34.54818514748318], [-77.32560601296862, 34.54818976775132], [-77.32578747567102, 34.548141307604894], [-77.3259988766688, 34.54817915149579], [-77.32635763074303, 34.548192732712465], [-77.32678507851656, 34.54813751129398], [-77.32695735370501, 34.54822179628689], [-77.32709965620042, 34.548309989386745], [-77.32710259372406, 34.54851300254419], [-77.32710538857033, 34.54859246345209], [-77.32715238370848, 34.54879204032574], [-77.32716214555083, 34.54880559113526], [-77.32724247446808, 34.548971411887564], [-77.32740558152469, 34.5490004647991], [-77.32754947162438, 34.54903305373332], [-77.32780222394504, 34.549030705263014], [-77.32794258861814, 34.54901168717126], [-77.32807282757622, 34.548985393734114], [-77.32818141187238, 34.54898524129076], [-77.32833573257523, 34.54898914822383], [-77.32833591535223, 34.54898916013466], [-77.32847674354971, 34.54900319626626], [-77.3286594905006, 34.54902260701464], [-77.32872751557284, 34.54902511887049], [-77.32882792410258, 34.54904085051261], [-77.32899911010128, 34.549090757875916], [-77.32911773381365, 34.5491283999481], [-77.32935523974211, 34.54920987153893], [-77.32939858476017, 34.549271262811125], [-77.32950669176422, 34.54928593461395], [-77.32970719230767, 34.549404097285915], [-77.32979462334279, 34.549454366871736], [-77.32984722178256, 34.54960086787629], [-77.32979315780526, 34.54963655556129], [-77.32967269809538, 34.54976431523755], [-77.32954821136383, 34.54991657826621], [-77.32983118298775, 34.55033830394304], [-77.32983683562419, 34.55036472209512], [-77.32983626110796, 34.550388146368384], [-77.32987293725928, 34.55042079421545], [-77.33062240647335, 34.5507588465015], [-77.33065027139116, 34.55076160101828], [-77.33068241396359, 34.55075271943202], [-77.33074805781276, 34.550723369994074], [-77.33134032505862, 34.55057618651462], [-77.3314441691062, 34.5503893926051], [-77.3315475984756, 34.55018026884313], [-77.33165789564373, 34.550102949221326], [-77.33184495403685, 34.550037943726956], [-77.33216657256143, 34.54998477925855], [-77.33223908554405, 34.54997297847839], [-77.33232286491628, 34.54995536948365], [-77.33263356451828, 34.54989301051945], [-77.33300160705267, 34.54989447028984], [-77.33302624332607, 34.54989058832634], [-77.33303862111386, 34.549896648702784], [-77.33305256435365, 34.54990244981547], [-77.33311686793009, 34.549950580961415], [-77.33330691476701, 34.55011069818114], [-77.33329717496638, 34.55018373670807], [-77.33331898507336, 34.55035377832341], [-77.33337935025688, 34.550604231041035], [-77.33379371983018, 34.550656673386406], [-77.33382950636218, 34.55074640099142], [-77.33387650833488, 34.5507632552004], [-77.33418001392896, 34.550929725123254], [-77.33424157978693, 34.55091737358109], [-77.33446802622422, 34.55085673958061], [-77.33457447040094, 34.55085081783027], [-77.33485352187861, 34.55079598840473], [-77.33496937248503, 34.55075264969884], [-77.33518941050069, 34.55068310709946], [-77.33536365232436, 34.5506812873713], [-77.33562652793967, 34.55067546442592], [-77.33580619446083, 34.55069923437885], [-77.3361469259829, 34.55076664766685], [-77.33650798705696, 34.55087452236424], [-77.33671377757831, 34.55097805847531], [-77.33683517471933, 34.55126380206411], [-77.33679907976683, 34.55132229859236], [-77.33685709581849, 34.55135231587417], [-77.33691834070976, 34.55136419187714], [-77.33701014480239, 34.55147788078142], [-77.33714730310308, 34.55151704182188], [-77.33719058782357, 34.55158272426645], [-77.33730631311168, 34.55156530353993], [-77.33754330902657, 34.551608493560565], [-77.33769735691996, 34.551633798387506], [-77.33778975024882, 34.551612175142836], [-77.33783784484817, 34.551662557232554], [-77.33808656536343, 34.55178162625762], [-77.3382753412927, 34.5517275317783], [-77.33847957696594, 34.55176513472721], [-77.33872098263112, 34.5516849208731], [-77.33871998109123, 34.55153569772422], [-77.33875306826896, 34.55145213774], [-77.33883059024517, 34.5513973819217], [-77.3388809477047, 34.55138727091754], [-77.33889006740878, 34.55138882826232], [-77.33899749940292, 34.551422602960336], [-77.33907669322446, 34.55141184838975], [-77.33908776254925, 34.55141465838168], [-77.33910563805205, 34.55141903023915], [-77.3391254707798, 34.55142486012629], [-77.33914048558206, 34.55143511069189], [-77.33917350111206, 34.55147017939199], [-77.33917420713439, 34.55147037328279], [-77.33921762240071, 34.55149742964649], [-77.33927023603493, 34.55153167094505], [-77.339379177109, 34.551563303766926], [-77.33939440795695, 34.55160503858421], [-77.33946054018921, 34.55167401098921], [-77.33947268443411, 34.55178716417642], [-77.3397218829925, 34.551881241976545], [-77.339857959163, 34.551978400679175], [-77.33996397824448, 34.55228992767664], [-77.33995857490186, 34.55233683676279], [-77.33999266402643, 34.55235918131777], [-77.3400355758041, 34.55239320898269], [-77.34014940624468, 34.552380179622205], [-77.34042675361081, 34.55245614130747], [-77.3405075693975, 34.55245235914711], [-77.34081621269951, 34.55259347026187], [-77.34094562076795, 34.55260367264728], [-77.34141567003468, 34.552499692899445], [-77.34160514958563, 34.552434558865016], [-77.34189663703557, 34.55236694239408], [-77.3423522519984, 34.552482184482365], [-77.34236570113924, 34.5524947917899], [-77.34238906704564, 34.5524928861778], [-77.34241178754124, 34.5524877132516], [-77.34278071028176, 34.552535727445466], [-77.34286667185508, 34.55259850308873], [-77.34317335901908, 34.55253501665146], [-77.34327957510561, 34.55252749020243], [-77.34337025834913, 34.55250974574421], [-77.34345922221318, 34.55251226063614], [-77.3434683838208, 34.55251115629546], [-77.34349784659273, 34.55251949880521], [-77.34356591159202, 34.552538468352296], [-77.34357736206792, 34.55254356097103], [-77.34359467667227, 34.55254828321283], [-77.34381185336615, 34.55260751438444], [-77.34388851617881, 34.55262842269065], [-77.34395565743728, 34.55266357272051], [-77.34404034009417, 34.55267601021244], [-77.34405358008622, 34.5526737815212], [-77.34409612611638, 34.55268647288363], [-77.34415104217433, 34.552703955843306], [-77.3441727177714, 34.55270994801558], [-77.3442094530701, 34.55278942249727], [-77.34434366930812, 34.552863897134316], [-77.3444366497576, 34.55285889398677], [-77.34454077723936, 34.55282959301866], [-77.34467839796841, 34.5528456523751], [-77.34473636695719, 34.55286111370126], [-77.34474860019331, 34.55286424791889], [-77.3447639805107, 34.55286970815298], [-77.34485655133305, 34.55290325561573], [-77.34493090731712, 34.55293814670336], [-77.34495602037117, 34.55294868011718], [-77.34512442700202, 34.55305946201426], [-77.34512746215759, 34.55306033070108], [-77.34513197577277, 34.55306158634341], [-77.3451603933579, 34.55308022259686], [-77.34526632969585, 34.5531966243626], [-77.3453525411643, 34.55327467383047], [-77.3454119755076, 34.553451047384065], [-77.34540778239018, 34.55351154589766], [-77.34550541657529, 34.55356460384333], [-77.34571110054968, 34.55382554727271], [-77.34600159717232, 34.55391575311846], [-77.34615808006467, 34.55397009899846], [-77.34628166314073, 34.55395632147133], [-77.34640650252456, 34.55393503304977], [-77.34667596363916, 34.553884161317775], [-77.34689055502935, 34.553787854214406], [-77.34695979848216, 34.553707512828474], [-77.34707416431307, 34.55364263919148], [-77.34713524573955, 34.553713543609064], [-77.34721555629083, 34.55374109252425], [-77.34727250977747, 34.55385968910665], [-77.34739089423938, 34.554002842298395], [-77.3477783283314, 34.554149759075585], [-77.34780732280285, 34.55417050376116], [-77.34784655013078, 34.55420235818898], [-77.34793201409789, 34.55418062265357], [-77.34834702783016, 34.554244898957975], [-77.34835240194897, 34.55431197678097], [-77.34846537429634, 34.55444016621235], [-77.34850617456995, 34.55453467069323], [-77.34849005035107, 34.554619407388444], [-77.34861818405687, 34.55479518966474], [-77.3488013673772, 34.5548665919614], [-77.34923602174428, 34.55491929030711], [-77.34907231403014, 34.555144318580105], [-77.34915805033502, 34.5554201496409], [-77.34923856289585, 34.555809939316454], [-77.34891976384418, 34.556433721200186], [-77.34857920116009, 34.556704481201166], [-77.34810801731939, 34.55774162864951], [-77.34700146078589, 34.5597600359977], [-77.34672731258436, 34.55985016255342], [-77.3439267426086, 34.56046518843544], [-77.34384952456334, 34.56042520557023], [-77.34378714319976, 34.56050134935405], [-77.3437575195942, 34.56057278103963], [-77.34377568402078, 34.56064957152629], [-77.34384889280962, 34.56131110563059], [-77.34394658092411, 34.56224376620815], [-77.3450063500599, 34.56254118567514], [-77.34542335689949, 34.56318075018815], [-77.34584650019475, 34.5636686417395], [-77.3464001556244, 34.56423372928792], [-77.34699818834815, 34.564611111259076], [-77.34794828956507, 34.564389978614585], [-77.3491776214747, 34.564237338921316], [-77.35014986798463, 34.56454777057941], [-77.35038306886455, 34.56471412461462], [-77.35137461904269, 34.56494949436663], [-77.35248518958475, 34.56523054909927], [-77.35330109425438, 34.56522788032673], [-77.35378442987762, 34.56540185307261], [-77.35444410588588, 34.5653615477663], [-77.35487703511356, 34.565031137531925], [-77.3551808549773, 34.56539420838946], [-77.35531339795331, 34.565702773333086], [-77.35566446656196, 34.56587488794374], [-77.35645092420346, 34.56553903766582], [-77.35645173979734, 34.56553802164283], [-77.35645257422944, 34.56553700290641], [-77.35645340185218, 34.56553778864245], [-77.35645363044893, 34.565538648115655], [-77.35724038331556, 34.565730634014], [-77.35738479200084, 34.56556012966276], [-77.358017013686, 34.56532599384026], [-77.35802852256207, 34.565318862560886], [-77.35803615649729, 34.565319066495945], [-77.35868964974837, 34.56535337316285], [-77.35881637054112, 34.56544098364149], [-77.35929331487522, 34.5654649569159], [-77.35960391886297, 34.566142469298526], [-77.3599643484863, 34.56634292215652], [-77.36103252229802, 34.56641914127975], [-77.36117962351985, 34.566410810195705], [-77.36128404963797, 34.56642890077119], [-77.36155755980297, 34.566502064174955], [-77.36196744585467, 34.56661297537623], [-77.36220614404904, 34.567000343156614], [-77.3623698584249, 34.56723420995448], [-77.36275490155707, 34.567582848979], [-77.36306449604464, 34.567649627925555], [-77.36339419153121, 34.567935818934444], [-77.36354247898589, 34.5683342881041], [-77.36364436803946, 34.568638948867545], [-77.3637848602614, 34.56872867225807], [-77.36417209378604, 34.569351912013616], [-77.36424200249871, 34.56951195262474], [-77.36426545942587, 34.56957795454821], [-77.36380595359823, 34.57127296563722], [-77.36355044828983, 34.5721693943529], [-77.3629204401037, 34.57309869787401], [-77.36347009088905, 34.57394381200734], [-77.36432768728608, 34.57426550797895], [-77.36489071439183, 34.57451320194738], [-77.36562531604497, 34.57470715202192], [-77.36590347407814, 34.574726428781624], [-77.36679019853798, 34.57519535628827], [-77.3680687670589, 34.57511854412861], [-77.36819725896815, 34.57573522370534], [-77.36905489605753, 34.57614928034427], [-77.36957644238352, 34.576672590095036], [-77.3703108697215, 34.57712901231064], [-77.37052722384072, 34.57720914449584], [-77.37063048433015, 34.57728511181371], [-77.37093702771854, 34.57736915778998], [-77.37141839483078, 34.57758234632774], [-77.37152226710413, 34.5776916569579], [-77.37185579555174, 34.57775557815871], [-77.37220630396277, 34.57789837501237], [-77.37272503605931, 34.57792051250703], [-77.37299433173233, 34.57789346310068], [-77.37369763930307, 34.57833934776575], [-77.37371624882003, 34.5784077096849], [-77.37378218159678, 34.57840710809101], [-77.37422539637784, 34.57874100332888], [-77.37424974419577, 34.578259799712555], [-77.37517875818511, 34.57793237942071], [-77.3753585383269, 34.577490793866005], [-77.3756507050559, 34.57667423010634], [-77.37794232220013, 34.576029458449845], [-77.37828333375897, 34.575734856690595], [-77.3785111287942, 34.57571617694472], [-77.37861580010343, 34.5758195812461], [-77.37996344595824, 34.57560485817302], [-77.38008716777182, 34.57559160607606], [-77.38021711575814, 34.57556159091277], [-77.38135213597236, 34.57520274179963], [-77.38166328353323, 34.575136466061515], [-77.381912294125, 34.57518892151792], [-77.38244627939247, 34.575380293117234], [-77.38245121944635, 34.57538676737584], [-77.38278829926682, 34.57581677723598], [-77.3829302524705, 34.576676175667316], [-77.38302420727149, 34.576995241979446], [-77.38304235159643, 34.57720430545782], [-77.38247041507995, 34.57877333198924], [-77.38227241480485, 34.57945938567754], [-77.38223207725166, 34.579656819915996], [-77.3821768931191, 34.579959190457856], [-77.38229005941896, 34.580325208678055], [-77.38233508059332, 34.58049110268907], [-77.38241152712183, 34.580521532922965], [-77.38244998440298, 34.58056744562078], [-77.3828929765206, 34.58078242747825], [-77.38323790975274, 34.581104682559854], [-77.38342427621653, 34.58118322532604], [-77.38385612677443, 34.58130392105799], [-77.38465093861869, 34.58185552219001], [-77.38473733539645, 34.58192550364058], [-77.38481381424859, 34.58206542982736], [-77.38576565026658, 34.58339308121752], [-77.38596048404696, 34.5838273575759], [-77.3860088638401, 34.58464621417234], [-77.38572985893495, 34.58509650790465], [-77.38605966469757, 34.58540413769959], [-77.38638931023877, 34.58540589030301], [-77.38697504729922, 34.585984035357555], [-77.38717728524028, 34.58606622913767], [-77.38778727785672, 34.58649814711818], [-77.38789674555005, 34.58655622825949], [-77.38796529450875, 34.58659596449525], [-77.38813635518088, 34.586632128631784], [-77.38875338627619, 34.5866618898651], [-77.38927776865575, 34.58656738861211], [-77.38954151908624, 34.58645503631501], [-77.3897165424749, 34.58640853149599], [-77.3903296380663, 34.58631814394479], [-77.39070395789761, 34.586077570426205], [-77.39083821821498, 34.5857569597108], [-77.39111787088257, 34.58527721686329], [-77.39176246936515, 34.585230388769475], [-77.39194675577801, 34.58509313437602], [-77.3919845800993, 34.58504374594878], [-77.39269414431305, 34.58439838970499], [-77.39293373771189, 34.58431585816194], [-77.39339245752811, 34.58399154717895], [-77.39380679152868, 34.58343225788662], [-77.39409426116617, 34.58304118053872], [-77.39427044357612, 34.582878380280754], [-77.39489023736232, 34.58274503878013], [-77.39524709263702, 34.58267170336996], [-77.39584661112667, 34.582357130006294], [-77.39613127762365, 34.58220491384107], [-77.39627556986356, 34.581877377557795], [-77.39698026415203, 34.58129888259447], [-77.397422796546, 34.58114521106063], [-77.39765470014186, 34.58107914885473], [-77.39781682306929, 34.581085313884266], [-77.39793202676567, 34.58108969436253], [-77.39821084630422, 34.581082353720575], [-77.39829354283017, 34.58107256416494], [-77.39849781951236, 34.58101684595016], [-77.39860487673295, 34.58090793236749], [-77.39876912549789, 34.5806684805435], [-77.39886350733148, 34.5805089562509], [-77.39899892341829, 34.58026238335914], [-77.39902562805501, 34.58020689734698], [-77.39915354021781, 34.580021843778276], [-77.39918982249274, 34.57997091921597], [-77.39919285856946, 34.579967156908374], [-77.39937583390281, 34.57973179271858], [-77.39938739829849, 34.57972413043611], [-77.39939296055219, 34.57972497437976], [-77.39973569008603, 34.57962460041328], [-77.39978698146724, 34.57957009509519], [-77.40013782312175, 34.579197267879444], [-77.40016062391965, 34.57917201380728], [-77.40036742128683, 34.578963268265774], [-77.40057502464478, 34.57896929478104], [-77.40074242231015, 34.57886582887231], [-77.40133348067579, 34.57863202247626], [-77.40136305335331, 34.57863321980347], [-77.40140466206526, 34.578634719839286], [-77.40145612241227, 34.57858245740834], [-77.40196663650212, 34.57831003658525], [-77.40215107559374, 34.57828229665826], [-77.40278774347782, 34.57822719142256], [-77.40293909334355, 34.57826017455191], [-77.4032294131401, 34.57801369461814], [-77.40341479483573, 34.577963243876724], [-77.40343131479652, 34.57787282514634], [-77.40372710233255, 34.577757722828096], [-77.40404797622213, 34.57770501681944], [-77.4042209172717, 34.57765130544312], [-77.40451511073468, 34.577605095256004], [-77.40470083588674, 34.57746515501334], [-77.4047291091224, 34.577454903344645], [-77.40490911329886, 34.577514179995994], [-77.4052364768328, 34.5772595023083], [-77.40530311217907, 34.5773442729359], [-77.4059759440402, 34.57793011483781], [-77.4059983740122, 34.57802685100241], [-77.40592869244648, 34.57878608800678], [-77.4060958338362, 34.57960613693706], [-77.40687928234243, 34.58015451773884], [-77.40697625705651, 34.58033318359517], [-77.40703033892584, 34.58048812796335], [-77.40735165521085, 34.581468378796465], [-77.40742220453356, 34.58196712068753], [-77.40714361053173, 34.58229202753855], [-77.4071955534685, 34.58335755670508], [-77.40725924560856, 34.58368895642388], [-77.40766758396401, 34.58415278019707], [-77.40778569577961, 34.58433486399748], [-77.40790200265572, 34.584445327725525], [-77.40817003723927, 34.58471443683595], [-77.40828850641276, 34.585058510130814], [-77.40819695699155, 34.58525190543187], [-77.40830870574065, 34.58539421570079], [-77.40831717010379, 34.58593434149438], [-77.40804487489527, 34.5861230162324], [-77.40781023869611, 34.58631043370899], [-77.40730679176161, 34.58707871507323], [-77.40746694950059, 34.587688310269], [-77.40735655645321, 34.588256114834756], [-77.40707528532893, 34.588810444523375], [-77.4070098902061, 34.58896004286953], [-77.40687984849669, 34.58965652983329], [-77.40668958134373, 34.59035938063122], [-77.40669984903916, 34.59056294696428], [-77.40665428332595, 34.59081262968813], [-77.40631860578875, 34.59171145219382], [-77.40536143296497, 34.59245443250484], [-77.4053037426143, 34.592799014448275], [-77.4050723047322, 34.59394506142436], [-77.4049651912683, 34.59420992561759], [-77.40489573860418, 34.5946596121407], [-77.40470717168081, 34.595302616943634], [-77.40398171467281, 34.59605016010565], [-77.40382476542986, 34.59617756409261], [-77.40372753248703, 34.59622972798671], [-77.40299955464593, 34.597105888776326], [-77.40278406707667, 34.597239444838806], [-77.4021511741233, 34.597650295698806], [-77.40190355110784, 34.59778156713685], [-77.4016830084864, 34.59808016224524], [-77.40136297553569, 34.598558933989224], [-77.40123628071849, 34.59885727649759], [-77.40107179724805, 34.599017499656675], [-77.40057476037757, 34.59940712172468], [-77.40026567859884, 34.59964998137259], [-77.39988063648073, 34.60003850352504], [-77.39978653122697, 34.600124956716215], [-77.39929910179592, 34.60044644952029], [-77.3989982922277, 34.60069677744642], [-77.39840887067952, 34.60131416434129], [-77.39745004825572, 34.602056967398], [-77.39742177127862, 34.60207316518086], [-77.39740349569453, 34.60207445614485], [-77.39738108906413, 34.60209737565749], [-77.39615640479654, 34.60260921639068], [-77.39604172708783, 34.603139708927074], [-77.39584519981872, 34.60342999171273], [-77.39542932997887, 34.60362919902653], [-77.39514235595807, 34.60411856760679], [-77.39507920579928, 34.60415171278631], [-77.39505689119181, 34.60416125866528], [-77.39477409196232, 34.60447629444168], [-77.39463872669093, 34.60458991953833], [-77.39426859730692, 34.60452517571789], [-77.39361826346038, 34.60518751007555], [-77.39353763180414, 34.60526093495123], [-77.39348025519577, 34.60536388289855], [-77.39278258817038, 34.60615716022846], [-77.3927474260916, 34.60622204804331], [-77.39269189188457, 34.60626075848293], [-77.39241199778112, 34.60651207353306], [-77.39225200887302, 34.60660900631643], [-77.39219911304728, 34.60666586695317], [-77.39190355130643, 34.606778730489054], [-77.39166653077238, 34.60674266228689], [-77.3915909100903, 34.606665783119084], [-77.39134370733574, 34.60636464085083], [-77.39126655104255, 34.606212863508915], [-77.39111533619626, 34.60610761033906], [-77.39047119305229, 34.60548610762632], [-77.38972669640083, 34.60489950266794], [-77.3889212252004, 34.60398288914768], [-77.38796255259832, 34.60374662992724], [-77.38782543800569, 34.60362306901983], [-77.38754172725737, 34.60351624603554], [-77.38678403895867, 34.603196820981], [-77.38638612028609, 34.603184282435286], [-77.38581868923657, 34.603153372184494], [-77.38546499719189, 34.603109617442556], [-77.38538519321202, 34.60297798385575], [-77.38480968788421, 34.60272825555634], [-77.38443057190855, 34.602674853987764], [-77.38402147192916, 34.602528994825896], [-77.38357266394095, 34.60239010376914], [-77.38333132937981, 34.60231924530303], [-77.38323327006907, 34.6022796254642], [-77.3830359404007, 34.602254883609646], [-77.3821199319788, 34.60210057915868], [-77.38165681988467, 34.602040329794015], [-77.38088743185473, 34.601948261366914], [-77.3808482939709, 34.60195546819423], [-77.38070282835412, 34.60195456774946], [-77.38015203192202, 34.60195670897252], [-77.38008033937028, 34.60195388216271], [-77.37999018955215, 34.60196015032434], [-77.3793049500442, 34.602142094258596], [-77.37929203864125, 34.602147073383094], [-77.37928392299933, 34.60215028975352], [-77.37850375920117, 34.602247261115274], [-77.37789894969258, 34.60255628883563], [-77.3773059784074, 34.602884975605335], [-77.37692704814748, 34.602953061703026], [-77.37641744741418, 34.60342115563034], [-77.37593546995129, 34.60412107534094], [-77.37534985238712, 34.60515947683562], [-77.37514338445555, 34.60530294340203], [-77.37418291465575, 34.60588278770615], [-77.37384551377073, 34.60633902082113], [-77.37377289263655, 34.606380055091876], [-77.37356143287685, 34.6063799397232], [-77.3731450684921, 34.606267097719964], [-77.37287466271044, 34.6063604347111], [-77.37219627109596, 34.60647230235594], [-77.37163720221432, 34.60690416306976], [-77.37087669334454, 34.60733855336351], [-77.3706193358835, 34.60742285796478], [-77.37047836834911, 34.607521293716786], [-77.37032889159872, 34.607694623270014], [-77.36960395899875, 34.608403932804414], [-77.36904218942519, 34.60883708966987], [-77.36845082151709, 34.60902640337642], [-77.36783339402287, 34.60975220106352], [-77.36763123873426, 34.6099602507852], [-77.36749722251557, 34.61149883286845], [-77.36746447434739, 34.61155625757809], [-77.366471208156, 34.612275258643244], [-77.36588714004812, 34.61311067113574], [-77.36576314703072, 34.61331325940432], [-77.36565413991092, 34.61346240973447], [-77.36503325295575, 34.614330875760295], [-77.3643097830026, 34.614582151323845], [-77.36391987480513, 34.61499053195982], [-77.36282202664181, 34.615568313797425], [-77.36276591242202, 34.61561230364859], [-77.3627325486354, 34.61565527941865], [-77.36222439412946, 34.61650344117621], [-77.36273188885508, 34.61712965814342], [-77.3628028804866, 34.617192796743694], [-77.36283309030709, 34.61726493730769], [-77.36342357202746, 34.61813273236461], [-77.3639461272399, 34.61880293551492], [-77.36422910331541, 34.62037621088585], [-77.3627301756762, 34.62097617588442], [-77.36186716325925, 34.62156946795467], [-77.36115303236411, 34.62155357903084], [-77.36015570203918, 34.622120458676626], [-77.35957570862149, 34.622459832476125], [-77.35931553567549, 34.62258568344868], [-77.35814032308498, 34.62303491394426], [-77.3579984836173, 34.62309823494013], [-77.35794597815561, 34.62311941022955], [-77.35697959421846, 34.62380325958782], [-77.35642094569802, 34.62429305631057], [-77.35516317806405, 34.62516145052465], [-77.35498003981205, 34.62533489288458], [-77.35465863878842, 34.62557366743195], [-77.35373377441414, 34.62605578974435], [-77.35335103978194, 34.6264827195219], [-77.35263955782634, 34.62698145912312], [-77.3525480474138, 34.62706739474643], [-77.3523813238841, 34.627233725464066], [-77.35186786357231, 34.627766714580424], [-77.35156457695618, 34.62800291264403], [-77.35114962358296, 34.62843052477357], [-77.35075415882517, 34.62871422404109], [-77.35046090514498, 34.62888177497218], [-77.35038567884338, 34.629051666359814], [-77.34981673961357, 34.62927401490454], [-77.34933027700555, 34.629626640929594], [-77.34905430819487, 34.62978435962437], [-77.34877242351303, 34.63003622717447], [-77.34871438909003, 34.63016008781142], [-77.34839965870611, 34.630312647770225], [-77.34825563776896, 34.63065014636953], [-77.34812032908452, 34.630939855000456], [-77.34803789717994, 34.63120633270897], [-77.34781708774233, 34.63165332842831], [-77.34775917674698, 34.63193707425497], [-77.3474035656017, 34.63278107292009], [-77.347362227293, 34.63290088109784], [-77.34731310546061, 34.6329938710648], [-77.34736821004304, 34.63424086348881], [-77.34690866193567, 34.63473741139747], [-77.34675143330543, 34.635906914240266], [-77.34668413841152, 34.63627104312412], [-77.34589737566957, 34.6380283777775], [-77.34580092601374, 34.63811533421362], [-77.34382322890723, 34.63784730795638], [-77.34332148532513, 34.63795419134715], [-77.34273281053161, 34.63791983875164], [-77.34264690293197, 34.63788021806326], [-77.34205227572406, 34.63801031694847], [-77.34171883372781, 34.63798195218692], [-77.34146021894091, 34.63793361304256], [-77.34140256257757, 34.637963188900805], [-77.34139152353005, 34.638002039518575], [-77.34133935939805, 34.638034043321504], [-77.34087778494246, 34.63853781389714], [-77.34057610579677, 34.638575214160625], [-77.34050153003409, 34.63899304276103], [-77.34052658831028, 34.63978216662841], [-77.3406308167833, 34.63996079889568], [-77.34103734018626, 34.64060748396602], [-77.34119595479672, 34.64075310046915], [-77.34134927743688, 34.64088416823583], [-77.34223119084106, 34.64099964504847], [-77.34346781674076, 34.6412749600639], [-77.34379442440033, 34.64030738716756], [-77.3456951764154, 34.638733368470625], [-77.34605900126279, 34.63883243502842], [-77.34811915206906, 34.64311950304227], [-77.34897563327795, 34.64458156205151], [-77.35067272524998, 34.647249501760854], [-77.35183669511534, 34.649086836526145], [-77.35297011325649, 34.65078501343687], [-77.35331179862257, 34.651210610237754], [-77.35402562843828, 34.652977037524494], [-77.35445247140512, 34.65395742966007], [-77.35578658038823, 34.65549751130747], [-77.35722194426793, 34.65613248051842], [-77.35760707622947, 34.65648634683003], [-77.35809754244761, 34.65683272328475], [-77.35854117578097, 34.65693353506975], [-77.35871279813446, 34.65717646421664], [-77.35928114959663, 34.65776520505235], [-77.35992168360802, 34.65930011783104], [-77.3601944310586, 34.65992066586473], [-77.36019574290866, 34.6605483827907], [-77.36014424641075, 34.660771575017506], [-77.36011195666734, 34.66081183376175], [-77.36008757375005, 34.66082574149439], [-77.36001562266141, 34.66090512341208], [-77.35947185856159, 34.660948562247775], [-77.35933563657412, 34.66142168781124], [-77.35934966197428, 34.66172476085602], [-77.35927523551334, 34.662371474818144], [-77.35925632825919, 34.66258159600413], [-77.35926962044039, 34.66269428032047], [-77.3592320857831, 34.66293954515004], [-77.35907512993106, 34.663450502170946], [-77.35908704297744, 34.663601232310064], [-77.35902589675834, 34.66378620078586], [-77.35898265935745, 34.663950594248725], [-77.35901388118714, 34.66405177443759], [-77.35907131587497, 34.66430008206075], [-77.35907716017655, 34.66442499828553], [-77.35920308194999, 34.66469452989298], [-77.35922695173628, 34.66524094945439], [-77.35926437202298, 34.66537405222629], [-77.35925409844883, 34.66544368017573], [-77.35926057139932, 34.6657099955466], [-77.35926499583127, 34.66586135406021], [-77.3592078057749, 34.66626774864461], [-77.35919848282941, 34.66635787938068], [-77.3592118177568, 34.666504003120366], [-77.3591901131683, 34.66684641650503], [-77.35929621177036, 34.66698811216796], [-77.35943121342788, 34.667300678599496], [-77.35935527647108, 34.66773106784066], [-77.35939246258785, 34.667940643168585], [-77.35939105753909, 34.668280971691885], [-77.35939885441186, 34.66848594753124], [-77.35941256846445, 34.668596704197014], [-77.35951743452655, 34.66875099692214], [-77.35955057700146, 34.668834896255994], [-77.35968162762836, 34.66905667351051], [-77.35965661493682, 34.669219262908285], [-77.35964399119557, 34.66944012351698], [-77.35958832644808, 34.66952272100536], [-77.35979763842447, 34.6696872754381], [-77.35985035324741, 34.66971520616528], [-77.35988778398627, 34.66973503854125], [-77.36026914156031, 34.67010988340465], [-77.36031492783857, 34.670145969701835], [-77.36035846196397, 34.67017525073503], [-77.36056502657706, 34.670256723427805], [-77.36106470242692, 34.670357158886745], [-77.36154681984665, 34.67020448480862], [-77.36182698464143, 34.670383226879174], [-77.36184234238696, 34.67054689302257], [-77.36201654007786, 34.670648029564504], [-77.36213161999869, 34.67082875722199], [-77.36222463775775, 34.67104100902262], [-77.36245276603887, 34.67120702509712], [-77.362670707191, 34.671242071028885], [-77.36292570206903, 34.67128969936259], [-77.36302485751465, 34.6712977819697], [-77.3632198762266, 34.671334000514], [-77.36361102672484, 34.67134001826233], [-77.36414702383908, 34.671526588834524], [-77.36451328451773, 34.671644287392766], [-77.36469159952215, 34.671740782508294], [-77.36560212342201, 34.67230139873293], [-77.3656522404229, 34.672344290252845], [-77.36570493520064, 34.67237333032977], [-77.3659532495957, 34.67248076601236], [-77.36674882291608, 34.672900606102104], [-77.36684020757923, 34.673006557764694], [-77.36700374751597, 34.67308354193864], [-77.3677613723547, 34.67353594447773], [-77.36813994702769, 34.67358276030616], [-77.36876665471436, 34.67381601169463], [-77.36885705094556, 34.67388475988827], [-77.36894195911992, 34.67385373883444], [-77.36978490530885, 34.67389315126681], [-77.37004102558252, 34.673929194991956], [-77.37039508206479, 34.67386546173559], [-77.37209202849391, 34.67369362916689], [-77.37250044691554, 34.67370265873744], [-77.37287730015841, 34.673513032059795], [-77.37342871359222, 34.67345283765479], [-77.37379034054953, 34.673381839843884], [-77.37422846010853, 34.67343434628306], [-77.37456980912219, 34.673362641870945], [-77.37498104925075, 34.673402980394165], [-77.37570603551728, 34.67346768741228], [-77.37613532474809, 34.67354974832676], [-77.37627524432764, 34.673626378529086], [-77.37695360484474, 34.67366514662369], [-77.37728840572447, 34.673700636778186], [-77.3773663950203, 34.67366301051737], [-77.37787047213186, 34.67375702402497], [-77.37830934664062, 34.67363697987313], [-77.37851694106384, 34.67359130230563], [-77.37870957217325, 34.67357720401971], [-77.37949900917211, 34.673509329599824], [-77.37972665066744, 34.67354687042645], [-77.38018556286686, 34.67360908783079], [-77.38039665521717, 34.67360656890479], [-77.38083044236808, 34.67386774130984], [-77.38117467065892, 34.674059352999315], [-77.38072435256794, 34.674931340283365], [-77.38069904974276, 34.675340298501816], [-77.38054155575058, 34.676096037259356], [-77.37961743401442, 34.67693411752088], [-77.37944837529601, 34.6772212072212], [-77.37847367713405, 34.6778680956383], [-77.37815531789911, 34.67819077079988], [-77.37779479348126, 34.67842343292666], [-77.37691274086991, 34.67912345954244], [-77.37658502912188, 34.67935158072], [-77.37542604730322, 34.680122641626056], [-77.37457382083684, 34.680121656899786], [-77.37419242677832, 34.68024913761285], [-77.37304876455556, 34.681025636887185], [-77.3728909284467, 34.68118270913621], [-77.37270124255451, 34.68126358970027], [-77.37221953301986, 34.681480659028026], [-77.37131487700006, 34.68191655106465], [-77.371051583288, 34.68159143017146], [-77.37078476183302, 34.68133688484435], [-77.3704992357571, 34.68122820165675], [-77.37031632125866, 34.68123255657801], [-77.37001032422526, 34.68118226356602], [-77.36976183043708, 34.68108090613207], [-77.36962554443534, 34.68111239141267], [-77.36921342587858, 34.680908277219245], [-77.36899745140195, 34.68080748157073], [-77.36863696263838, 34.68065733239194], [-77.3682749697611, 34.680575244837804], [-77.36815204181698, 34.680440929655774], [-77.36773138008593, 34.68020527434316], [-77.36762258751172, 34.68020300259965], [-77.36722557372556, 34.67999036921757], [-77.36710351284067, 34.67992930488654], [-77.36705625145464, 34.67993657878405], [-77.36698355434797, 34.67990980003529], [-77.36666247274226, 34.67984551044222], [-77.36655055970341, 34.67977238672136], [-77.36629554745703, 34.67980419338429], [-77.36618653620008, 34.67981769492242], [-77.36591278166338, 34.67990783436095], [-77.36566566733879, 34.67988405560413], [-77.36557251915764, 34.679896184568605], [-77.36530325342912, 34.67994590705746], [-77.36501617830382, 34.67993026490666], [-77.36468375047673, 34.68001835167472], [-77.36424487548167, 34.67979877342439], [-77.3641793684907, 34.679786036215525], [-77.36415616218663, 34.67977401728832], [-77.36408295200675, 34.679757500237976], [-77.36353427508314, 34.67985466963181], [-77.36327146593027, 34.67969653221459], [-77.36301976000738, 34.67956529319012], [-77.36296775129486, 34.67953612021291], [-77.3627423726924, 34.67951783923491], [-77.36250586421887, 34.67949747532152], [-77.36245645940996, 34.67944404525485], [-77.36234048180839, 34.67948930548713], [-77.36130227588153, 34.67963559076464], [-77.36121520238204, 34.67959665763769], [-77.36105356962139, 34.67962492205256], [-77.36085942529795, 34.67977654387334], [-77.36063665776838, 34.68014799610658], [-77.36049392457406, 34.680405244776225], [-77.36049435213334, 34.680801473526195], [-77.35943899631062, 34.681592502160875], [-77.35923094652776, 34.68183853348851], [-77.35872343261055, 34.681995831813545], [-77.35870708264622, 34.68201236478145], [-77.35868018574578, 34.68202546623922], [-77.35824888287692, 34.682244406389884], [-77.35798497772224, 34.682477998743686], [-77.35777739680925, 34.68234900194439], [-77.35760958165096, 34.68231590143093], [-77.35740585940775, 34.68241117676553], [-77.35712362582079, 34.68252333757317], [-77.35708670106158, 34.6827317287358], [-77.35657303439538, 34.683218414645026], [-77.35646052691558, 34.683211979711785], [-77.3559371317743, 34.683347194789825], [-77.35590378898989, 34.68335666914549], [-77.35590399960293, 34.683381552235154], [-77.35583336310208, 34.683451175009026], [-77.35560362866742, 34.683728821237274], [-77.35561015661983, 34.68390929291901], [-77.35554974243941, 34.684000176451406], [-77.35555175435753, 34.684062135636346], [-77.35569294260108, 34.68414161593556], [-77.35570428376882, 34.68414935459445], [-77.35574988347653, 34.68413379582253], [-77.35593885673131, 34.68402600821], [-77.35617895127001, 34.68383117514984], [-77.35648988911916, 34.683504859158575], [-77.35674535880982, 34.68346448676212], [-77.35710356023029, 34.68345266883526], [-77.3575961265021, 34.68314914409477], [-77.3577625022406, 34.68308970471155], [-77.35782382662133, 34.683033219264544], [-77.35841145328872, 34.682549766489124], [-77.35852370649624, 34.68248803580853], [-77.35859189238735, 34.68244904990102], [-77.35869518781955, 34.6824309524802], [-77.35913742359651, 34.682393855894816], [-77.35921820730583, 34.682353250771435], [-77.35960609047574, 34.6821710907118], [-77.35988590483012, 34.68185983564817], [-77.3607607874711, 34.68116251754659], [-77.361004195439, 34.68085758565754], [-77.36179940145348, 34.68082978696162], [-77.36204696239287, 34.680855206507985], [-77.36236237255838, 34.68103221772419], [-77.36245401742597, 34.68111429839253], [-77.36255599382164, 34.681163504129046], [-77.36274126501594, 34.68128739429178], [-77.36295894919141, 34.68131395007917], [-77.36313071001825, 34.681245451212895], [-77.36347155277551, 34.68111941712364], [-77.3638131282034, 34.680956228003225], [-77.36397195465614, 34.680935500003734], [-77.36417728718365, 34.68097033851719], [-77.36437801806571, 34.681072032383], [-77.36454418691878, 34.68108210940446], [-77.3646431324007, 34.681206216866244], [-77.36490191984686, 34.68132910251658], [-77.36516091463886, 34.68139578194945], [-77.36544145747938, 34.68153228965617], [-77.36577775095324, 34.681709371491], [-77.36582215135735, 34.68201897702678], [-77.36588529614063, 34.682065322107015], [-77.36626800462881, 34.682120414968345], [-77.36643922305551, 34.6822189341751], [-77.36680301050552, 34.68249700603647], [-77.36727456038265, 34.68279415361232], [-77.36736637010199, 34.682851769165715], [-77.36743945621464, 34.682897121522466], [-77.36792554672652, 34.68320975372386], [-77.36810729891177, 34.68332454855887], [-77.3684724897739, 34.683462294401075], [-77.36853765061883, 34.68352698910008], [-77.3686266655001, 34.68358310252511], [-77.3689572535318, 34.68399243397127], [-77.36914183802625, 34.68424145614888], [-77.36934189700598, 34.68445958047394], [-77.36934133922122, 34.68448522576909], [-77.3693569016519, 34.684539810232835], [-77.36966944581283, 34.68490195056225], [-77.3697243648459, 34.68497883540723], [-77.36980783404377, 34.6850485141767], [-77.37018760704906, 34.68531811942378], [-77.3702680144687, 34.68534878056917], [-77.3703041909776, 34.68540065144903], [-77.37069131369552, 34.685811381254155], [-77.37108153058192, 34.6861700260704], [-77.37122779413312, 34.68634320413677], [-77.37166433071957, 34.68663926735502], [-77.37228143748754, 34.686837527386345], [-77.37250587805714, 34.686949009285684], [-77.37283722715345, 34.68731326536796], [-77.37327758957036, 34.687530083581336], [-77.37348377812806, 34.68778935796006], [-77.3736856606138, 34.688237091218454], [-77.37369825986151, 34.68827943546364], [-77.3737268961564, 34.6887307230957], [-77.37381177123913, 34.68892852740846], [-77.37376997143114, 34.689619224762055], [-77.3737693135692, 34.68969968263874], [-77.37370006595772, 34.68980306965908], [-77.37346881494241, 34.69062860341414], [-77.37344971504388, 34.690718411374], [-77.37345268480473, 34.69078206970215], [-77.37347777639856, 34.69096680248171], [-77.37353153057406, 34.69150989655728], [-77.37409464253257, 34.69245939571714], [-77.37415632138425, 34.69257084672673], [-77.37416281690639, 34.692600937819435], [-77.37402871491031, 34.69319442018265], [-77.37377530448137, 34.69447636068212], [-77.37368080161453, 34.6945858007968], [-77.37368990373373, 34.69465323424657], [-77.37383245223617, 34.6955397412739], [-77.37404385374023, 34.69584668147883], [-77.37414797486385, 34.6964711551543], [-77.3741900956662, 34.696522637925064], [-77.37419808588137, 34.69673757567137], [-77.37435027706093, 34.69718785520327], [-77.37453224397933, 34.697393115609145], [-77.37479309067427, 34.697635488997456], [-77.37500599975348, 34.69807953019066], [-77.37518131723003, 34.6981251474554], [-77.37522603397606, 34.69827252303994], [-77.37524294842586, 34.69858174388847], [-77.37528223627196, 34.69875219266679], [-77.37533097914044, 34.69879847572442], [-77.37534642711796, 34.69896955623396], [-77.37534930827564, 34.69923036708119], [-77.37551420455442, 34.699445963518514], [-77.37552526186266, 34.69969357161941], [-77.37551014733313, 34.699843363927855], [-77.37562348279452, 34.70007807795437], [-77.37565653682513, 34.70012493835103], [-77.37568493323228, 34.70015901479807], [-77.37571394525992, 34.7002752494852], [-77.37600789840738, 34.70060200731349], [-77.37602003925757, 34.70063364119436], [-77.37596955104043, 34.70085097778101], [-77.37599045877444, 34.70087662991398], [-77.37608565187574, 34.70097740556043], [-77.3761868255106, 34.70106480295675], [-77.37621191413488, 34.70114502230648], [-77.3763348919483, 34.701179800020086], [-77.37643117347855, 34.70142098987439], [-77.37648165816806, 34.70146108749504], [-77.37653595196495, 34.701504197407935], [-77.37660770517911, 34.701561186900726], [-77.3766746274251, 34.701613550502145], [-77.3767348960949, 34.70166040536146], [-77.37690382364998, 34.701855268669185], [-77.37701363810027, 34.70192591471933], [-77.37710976086683, 34.70214997115307], [-77.37711406157905, 34.70215705624092], [-77.37711481496744, 34.70215975502049], [-77.3771284697019, 34.702166545811316], [-77.37737188111015, 34.70230539662073], [-77.37747694018856, 34.702349608598965], [-77.37773999303764, 34.702463726669485], [-77.37790700888402, 34.70252430103136], [-77.3782302260852, 34.7027334271184], [-77.37831921494039, 34.70280636029378], [-77.37839943025861, 34.7028904551176], [-77.37865547203589, 34.70303256286064], [-77.37908171051565, 34.70333359031822], [-77.37948960033927, 34.70355206632079], [-77.38031231526034, 34.70447175699637], [-77.38039508600208, 34.70457136398583], [-77.38046587735967, 34.704606439234425], [-77.3805554059816, 34.70464462670358], [-77.38121717145582, 34.70512131750466], [-77.38151764694491, 34.70540057737415], [-77.3815694499954, 34.705471086620825], [-77.38177227104777, 34.705782543898266], [-77.38201140374204, 34.70590845270233], [-77.3822869522707, 34.705980995887245], [-77.38263100516674, 34.7059823955456], [-77.38318804456746, 34.7059583970469], [-77.38328047840872, 34.705953332281595], [-77.38336364449435, 34.70601186819887], [-77.3837969843404, 34.706382796009954], [-77.38418632551507, 34.70656156596561], [-77.38452992130846, 34.70665702719371], [-77.38501159734831, 34.706615500628], [-77.38553634413203, 34.70680673696666], [-77.38616407472372, 34.7070625088064], [-77.38694671063219, 34.707196197061634], [-77.38738888909955, 34.70726005804815], [-77.387632652945, 34.70724268431413], [-77.38797672826158, 34.707154887686286], [-77.38842479485419, 34.70704178079775], [-77.38871594385103, 34.70710496575652], [-77.38952864473632, 34.70735083619843], [-77.38988124903466, 34.70750777552314], [-77.39049552675891, 34.707435803012245], [-77.39059506761402, 34.70746063159521], [-77.39107652173688, 34.70780723650964], [-77.3916366272876, 34.70780576301273], [-77.39171771357502, 34.70780672518292], [-77.39196505623599, 34.70778214792356], [-77.3923379140509, 34.707878619972334], [-77.39254740017661, 34.70779890761288], [-77.3933832999296, 34.708083536298425], [-77.39354340099399, 34.70814286458716], [-77.39372294564845, 34.70822517275319], [-77.39468397683119, 34.708433925068135], [-77.39472773701722, 34.70848009129599], [-77.39481924400168, 34.708521777250795], [-77.39504968275115, 34.70851206399693], [-77.3952227256376, 34.70820932074859], [-77.39545705219415, 34.70809547437116], [-77.39546543382036, 34.70808209653245], [-77.39561677395393, 34.70804504039535], [-77.39607650164152, 34.70825001455256], [-77.39696304472685, 34.708376396554], [-77.39691184945121, 34.70916372455057], [-77.39609176236618, 34.709106605151014], [-77.39564462343066, 34.70974009142889], [-77.39559665098294, 34.70979342113025], [-77.39559593328408, 34.70982153161904], [-77.3955972691211, 34.70983844004291], [-77.39561514577227, 34.709841794894274], [-77.39577805896725, 34.710209386005424], [-77.3957458754097, 34.7104331542508], [-77.39576003340025, 34.710447776252636], [-77.39585155549234, 34.71062506291352], [-77.39592200678865, 34.710774364978036], [-77.39596627075431, 34.710842098531984], [-77.39616508240874, 34.71094067156792], [-77.39613463446246, 34.71112834621201], [-77.39618208387613, 34.71120338924623], [-77.39627192250208, 34.71134244840418], [-77.39639647636983, 34.71149954794281], [-77.3964113420341, 34.71151829798927], [-77.3966459950918, 34.711632816098344], [-77.39666906076397, 34.71173501608847], [-77.39689628070764, 34.71191918618486], [-77.39693822154875, 34.71191225993036], [-77.39696461199769, 34.71194630332035], [-77.39697849543222, 34.71198278565857], [-77.39718470272629, 34.71230086679722], [-77.39739640957576, 34.71254324583347], [-77.39745695008845, 34.71263368583706], [-77.39749390834046, 34.71272228388721], [-77.3974322346453, 34.7127957910293], [-77.39751243298673, 34.71328791196861], [-77.39749365675917, 34.71351102484723], [-77.39748160416241, 34.713556697902234], [-77.39767915510774, 34.71377959508503], [-77.3977687981101, 34.713842638914954], [-77.39784271771401, 34.713962626295164], [-77.39789757899503, 34.71423527160597], [-77.39789146841431, 34.71425925699665], [-77.39791855073318, 34.714339493397524], [-77.39795556191824, 34.71443425938754], [-77.39802123324502, 34.71458423392383], [-77.39804002613667, 34.7146222070162], [-77.39806135319222, 34.71467282904186], [-77.3981152862268, 34.71481399205545], [-77.39814973353259, 34.7149087678109], [-77.39818572317135, 34.71500778780917], [-77.39824085477757, 34.715159472332246], [-77.39828574720255, 34.715235930098295], [-77.39831371747081, 34.715359939793366], [-77.39832710844686, 34.71539516679496], [-77.39840423962465, 34.715556961231556], [-77.39843036553337, 34.71561158749664], [-77.3985753682754, 34.71573798949466], [-77.39856215283142, 34.71589178463992], [-77.39862629328081, 34.71604156849188], [-77.39869048530677, 34.71613632049917], [-77.3986966784399, 34.71621842447434], [-77.39871520588508, 34.716287792408664], [-77.3987568889378, 34.71633179850401], [-77.39877973178288, 34.716496234497356], [-77.39879053699848, 34.71653083493698], [-77.39879262401213, 34.716540062398145], [-77.39879611835285, 34.71656162184303], [-77.39896537732056, 34.716799845197755], [-77.39903202142094, 34.71688658115489], [-77.39905032887623, 34.71693877708543], [-77.39915746535503, 34.71721835646907], [-77.39919649403934, 34.71726433653101], [-77.39922270874331, 34.717301768398556], [-77.39933749203522, 34.71765187886208], [-77.39930424519058, 34.717828851045255], [-77.39934674678233, 34.71797983010273], [-77.39938882678666, 34.718076802529325], [-77.39943587402493, 34.71815447385101], [-77.399451820559, 34.71834365355745], [-77.39948408959921, 34.71845091261039], [-77.3994433899276, 34.718500380264146], [-77.39945483119463, 34.71871294616541], [-77.39951721114183, 34.71891592928452], [-77.39957451233111, 34.71904168651716], [-77.39947845506808, 34.71913548415479], [-77.39928730753599, 34.7192909737069], [-77.39917761010888, 34.71939177220591], [-77.39918497713946, 34.71946454263983], [-77.39895644421269, 34.71959603513873], [-77.3988879790215, 34.71966640064635], [-77.39879858521604, 34.71988849747396], [-77.39863054617211, 34.72017822125713], [-77.39845493449522, 34.72045478359854], [-77.3982746772389, 34.72082348096024], [-77.39793204499117, 34.721096249353124], [-77.39735397054783, 34.721603038465716], [-77.39734622498189, 34.72161693198326], [-77.39732694574913, 34.72163059230574], [-77.39669560722774, 34.722067412590306], [-77.3961164567902, 34.72211890403187], [-77.39588643532959, 34.72217646615706], [-77.39584559888286, 34.72217393462708], [-77.39579029343739, 34.72219083793807], [-77.39514510046837, 34.722522089428786], [-77.39514387909472, 34.72252297394348], [-77.39513962024586, 34.72252609264959], [-77.39466715386536, 34.72291616395051], [-77.39458371616035, 34.72310352915224], [-77.39432468816088, 34.72314046574222], [-77.39410402135763, 34.72327827936347], [-77.3939443353813, 34.72355453759015], [-77.39385118512747, 34.72374896483522], [-77.39318616069434, 34.72423296769719], [-77.39292396911259, 34.72454284200037], [-77.39276856346964, 34.724625020184654], [-77.39260951559186, 34.72463351989411], [-77.39222619222349, 34.724633088498784], [-77.3919712205971, 34.72462360460014], [-77.39185115489845, 34.72462133388558], [-77.39141273110211, 34.724525824656496], [-77.39135670580725, 34.724531667666874], [-77.39124999485071, 34.72451626222263], [-77.39087133407557, 34.72451556011178], [-77.39073191930953, 34.72447515757288], [-77.39056910982373, 34.72443112549319], [-77.39036121283159, 34.72442961226007], [-77.39007467402635, 34.72453059124337], [-77.38996393204908, 34.72452822411803], [-77.38946380231293, 34.72442608820952], [-77.38939986897704, 34.72442801702327], [-77.38913626567678, 34.724671302082434], [-77.38872302375768, 34.72476958490837], [-77.38780122987069, 34.72469207429011], [-77.38747536546018, 34.724649929529846], [-77.38722558402274, 34.72453977951304], [-77.3866626575135, 34.72427397083608], [-77.38634018240693, 34.72414242522161], [-77.38588197589048, 34.72370671417242], [-77.38583900409314, 34.72365968196391], [-77.38577324603588, 34.72366102365259], [-77.38519306777052, 34.72367609794134], [-77.384660906998, 34.72333838656489], [-77.38315175053017, 34.72305928088194], [-77.38282732879433, 34.72299008928358], [-77.38259393257744, 34.7229510562036], [-77.38190121162452, 34.72292201986957], [-77.38155379757463, 34.72295968055245], [-77.38057612322764, 34.722644089824016], [-77.3803819419586, 34.72257874030993], [-77.3801305021233, 34.722533069713734], [-77.37971548018402, 34.722665907853475], [-77.37967521223042, 34.722667277175255], [-77.37941620430819, 34.72259243542818], [-77.3793827665756, 34.722599682238766], [-77.379283988457, 34.72277577537199], [-77.3790122230299, 34.72287990607473], [-77.37893666661789, 34.72295610205209], [-77.37874490272448, 34.72293559382379], [-77.37830741812644, 34.7230992225639], [-77.37805478297344, 34.72301041112557], [-77.37768113659148, 34.723047852694684], [-77.37763709656058, 34.72307561579123], [-77.37763764645632, 34.72310719264549], [-77.37729047617768, 34.72325709431008], [-77.37727513572555, 34.72327652181046], [-77.37730226586292, 34.72354898640235], [-77.3768306403941, 34.723769321705454], [-77.37673642972543, 34.72384780173003], [-77.37650067594396, 34.72380161348665], [-77.37647117380259, 34.723817252201904], [-77.37630848673251, 34.72389622808862], [-77.37613646984259, 34.723951924911354], [-77.37606481425172, 34.72395459942277], [-77.37598076257692, 34.724108630981796], [-77.37561453316992, 34.7240765699815], [-77.37553563430987, 34.72412893893991], [-77.37542257808528, 34.7242024839541], [-77.37537211233156, 34.7242356985612], [-77.3753594678227, 34.724266879811665], [-77.37523747916495, 34.72438972643039], [-77.37523564115293, 34.72450313218907], [-77.37518351591437, 34.72459424464094], [-77.37496335820185, 34.724967015378255], [-77.37487714033382, 34.72529740879099], [-77.37440785228932, 34.7254898350775], [-77.37421819451858, 34.725716518264385], [-77.37375255089427, 34.72553840122119], [-77.37351833409156, 34.72557955255865], [-77.37326968913916, 34.7256618417662], [-77.3730968008962, 34.72558850465194], [-77.37289650775197, 34.72564146329837], [-77.37281766803923, 34.725670877465426], [-77.37274234006628, 34.72570517288723], [-77.37259882376486, 34.72567104516137], [-77.3724226565606, 34.72570198984235], [-77.37237036200301, 34.72568762661321], [-77.37184983441689, 34.725536794144126], [-77.3718307211321, 34.72553217073822], [-77.37120907331806, 34.725627440558405], [-77.37120535374062, 34.7256237323024], [-77.37117679295373, 34.72560906925315], [-77.37052643245778, 34.72589982049498], [-77.37007143700866, 34.7257144162703], [-77.36998747324171, 34.725693621768684], [-77.36984557761467, 34.725706175603484], [-77.3693047896109, 34.72598264991862], [-77.36892555213906, 34.725807727116766], [-77.36875101402717, 34.7258275039883], [-77.36856107974133, 34.72584465359725], [-77.36811709388739, 34.72594849559164], [-77.3679890607246, 34.72597610000646], [-77.36769019935946, 34.726114850383574], [-77.3675612762541, 34.726235309557744], [-77.36734145074723, 34.726238246259115], [-77.36683176115568, 34.72625071146784], [-77.366399961326, 34.72617423884034], [-77.3662386761607, 34.72623098940085], [-77.36610093851152, 34.7262180111776], [-77.3658203747582, 34.726225987731915], [-77.3656355086216, 34.72624599769328], [-77.3654533398156, 34.72628250009127], [-77.36517718674524, 34.72632667315757], [-77.36498119970977, 34.72643718201086], [-77.36485180806935, 34.726387795430114], [-77.364573355837, 34.726397069399624], [-77.36437466210884, 34.72646378589712], [-77.3639479304872, 34.72648407707192], [-77.36380012891847, 34.726380136471526], [-77.3633683880589, 34.72635001925513], [-77.36315270060487, 34.72654758782091], [-77.36251634196908, 34.72679714459373], [-77.36181462399807, 34.72703132483876], [-77.36128726905838, 34.72705909222342], [-77.36062918375939, 34.72698927087417], [-77.36034535222308, 34.726890646663996], [-77.36009644884825, 34.72676164092402], [-77.36000759015678, 34.726756298517536], [-77.35975896439456, 34.72689276695295], [-77.35965357936149, 34.72683156351982], [-77.35960767083469, 34.72684748560764], [-77.35943863163894, 34.72696481569479], [-77.35914760678645, 34.72702374507911], [-77.35907377206787, 34.727012683733264], [-77.35905857601836, 34.727092244489384], [-77.35910806710297, 34.72729362111175], [-77.35885908666751, 34.72746069024869], [-77.35858572217008, 34.72783986871479], [-77.3585732572046, 34.727854443043476], [-77.35831441045008, 34.72825455322239], [-77.35791982997647, 34.728431547919286], [-77.35779036901896, 34.72851664212755], [-77.35760236162909, 34.72847513684671], [-77.35731773432386, 34.728431597690246], [-77.35721805427998, 34.728425289712995], [-77.35710857350232, 34.728395407601084], [-77.35706226685062, 34.72842163567773], [-77.35688248814245, 34.72854976187303], [-77.35677900422792, 34.72858818175527], [-77.35669580121458, 34.728735178728094], [-77.35652043986755, 34.72904499094063], [-77.35651306848109, 34.729112076865135], [-77.35646922925802, 34.72917266549869], [-77.35638922403427, 34.729217276749246], [-77.35616211987724, 34.72932065640595], [-77.3555660985563, 34.729648966508016], [-77.35543893544468, 34.72987701602125], [-77.35521650773768, 34.73026484223865], [-77.3550918760325, 34.73050527814806], [-77.35510314912685, 34.73052954991779], [-77.35508683391518, 34.730608803744666], [-77.35510421563202, 34.730767641236405], [-77.35527514927212, 34.73079144003858], [-77.35515603303953, 34.7312003526295], [-77.35516623574647, 34.731246510714534], [-77.35503738865536, 34.73173347019701], [-77.35503000870563, 34.73175259483734], [-77.3550200719883, 34.73177608976802], [-77.3554185267276, 34.73218664340993], [-77.35515371947096, 34.732461695238015], [-77.35524716370834, 34.73314987574309], [-77.35528301344429, 34.733180013556726], [-77.35519928175673, 34.73331474519975], [-77.35490628967872, 34.73417025442488], [-77.35487499874075, 34.73421078979314], [-77.35419397971663, 34.73471410185655], [-77.35406596673357, 34.73470224599718], [-77.35375757905715, 34.7347183217387], [-77.35358287811876, 34.73475613787495], [-77.35348767171092, 34.73482814419017], [-77.35349961146896, 34.73488696483105], [-77.35342272627224, 34.734975904089374], [-77.3533148691281, 34.735156013234324], [-77.35321408261859, 34.73522399925021], [-77.35313084875172, 34.735281464964544], [-77.35293695805203, 34.73545157445165], [-77.35287695380507, 34.735563562279395], [-77.35272286351761, 34.735655135428544], [-77.35247753199772, 34.735847937261326], [-77.35195575289998, 34.73623422572429], [-77.3516678744171, 34.73640711097584], [-77.35132525358651, 34.73664753540187], [-77.35101390206569, 34.73710422340643], [-77.35097101736967, 34.73725597902776], [-77.35100534375806, 34.737666200583774], [-77.35117881642539, 34.737884537548055], [-77.35128721587044, 34.73853572295594], [-77.35130135734123, 34.73857867869735], [-77.35130373766278, 34.73860001404959], [-77.35130512670553, 34.7386387532969], [-77.35143814808005, 34.73926185824123], [-77.35163347366672, 34.73940553888297], [-77.35168574510517, 34.73946561399897], [-77.35192391279335, 34.739489664756775], [-77.35211917314268, 34.73952643164467], [-77.35218568056942, 34.739566384941675], [-77.35230954741418, 34.739528606722885], [-77.35229854716205, 34.739438249647215], [-77.35229120100948, 34.73939411143649], [-77.35228747456961, 34.73921594822472], [-77.35227320078593, 34.73901375574958], [-77.35230522334227, 34.73894995190054], [-77.35230510113207, 34.73888641910584], [-77.35227415039768, 34.73861882392266], [-77.35217125945506, 34.7384809556252], [-77.35229692046796, 34.73824092242561], [-77.35229846026193, 34.738219807703324], [-77.35230092882837, 34.73820402520074], [-77.35231370190738, 34.737974024666435], [-77.35235648293764, 34.73776709177383], [-77.35234257776027, 34.737643122592516], [-77.35232830384578, 34.73748463927727], [-77.352370797253, 34.737361879620195], [-77.35246062847547, 34.73710946013176], [-77.35262981151999, 34.736955876142545], [-77.35271943578584, 34.736700502457225], [-77.35273715275272, 34.736685875076766], [-77.35304296828544, 34.73641178834704], [-77.35307992792012, 34.736381633630195], [-77.3531145135956, 34.73636867299102], [-77.35317118192619, 34.73635201224021], [-77.35327326194275, 34.73638017947548], [-77.35370751726643, 34.736388990931225], [-77.35379666729237, 34.73630833854825], [-77.35403074968296, 34.73594752201542], [-77.3544180116017, 34.73539290652499], [-77.35445199767251, 34.73524362045251], [-77.3543207978018, 34.73492801198153], [-77.35487512455695, 34.73443088816477], [-77.35506288823959, 34.734896831318046], [-77.35551960184124, 34.73471360701248], [-77.35599063192977, 34.73471416659639], [-77.35619981590862, 34.73451630716721], [-77.3561688026215, 34.734100661548084], [-77.35600440725642, 34.734172546655486], [-77.35559064087194, 34.73411254922642], [-77.35624752152358, 34.73382960007406], [-77.35661273371065, 34.73312913888962], [-77.3568957497209, 34.73295861182393], [-77.35788381407608, 34.732319457417674], [-77.35840808539182, 34.73232337464212], [-77.35852449389417, 34.73226993044308], [-77.3592528287834, 34.73172958839235], [-77.35938703063458, 34.731641787799], [-77.35976079245768, 34.73081234580687], [-77.3607885735225, 34.73056538568717], [-77.361087130123, 34.730433556996964], [-77.36180694608669, 34.730072224411245], [-77.36222432234248, 34.72974544568392], [-77.3627617823359, 34.729762178806915], [-77.3634818454214, 34.729539319473915], [-77.36433645277774, 34.72976027119917], [-77.36504335679405, 34.72958359955986], [-77.36602781363467, 34.72902042949518], [-77.3662799475577, 34.72892920199061], [-77.36806669964069, 34.72883417237736], [-77.36836164844333, 34.72923225458066], [-77.36933326663359, 34.72930084054339], [-77.3695220376913, 34.729291290053304], [-77.36954311179221, 34.729288044788056], [-77.36956355171527, 34.72928515346379], [-77.36972603716548, 34.72924687381304], [-77.37089578739291, 34.7287538656109], [-77.3712342298775, 34.728917124057844], [-77.37158433307933, 34.7288935497397], [-77.3721842590909, 34.72873321546045], [-77.37262668757256, 34.72862264488356], [-77.3731635387407, 34.72848280572557], [-77.37361800323401, 34.72821190832921], [-77.37432694471379, 34.72809944347233], [-77.37453457679501, 34.72773146889426], [-77.37497984915926, 34.72793831335366], [-77.37615705636864, 34.727621683672496], [-77.37619547426232, 34.72745441221716], [-77.37636728544163, 34.727576470188396], [-77.37651565661855, 34.727609469476306], [-77.37712961561444, 34.727485533574004], [-77.3776393521726, 34.7276122291291], [-77.37767397961369, 34.727593473088056], [-77.37787682253168, 34.72721081190018], [-77.37802950120388, 34.7271587219018], [-77.37923349101682, 34.726537766249734], [-77.37930401745561, 34.72655141127377], [-77.37983229890042, 34.726683928453454], [-77.37984275440733, 34.72668421361097], [-77.37985333311359, 34.72667872609327], [-77.38023494329, 34.72657726169984], [-77.3805353078424, 34.72647087791475], [-77.38103270217319, 34.726385253979885], [-77.38165911858934, 34.726359004809154], [-77.38186464051564, 34.7263091084324], [-77.38197092148455, 34.726423027298594], [-77.38268005849609, 34.72682617557463], [-77.3829339874589, 34.72704365211534], [-77.38337588922474, 34.72742881425816], [-77.38344924507619, 34.7274778883814], [-77.38353005103934, 34.72747650025385], [-77.3840884038497, 34.727484948683696], [-77.38459987853318, 34.72781136777268], [-77.38466272128582, 34.72783230998482], [-77.38519392388186, 34.728094870408405], [-77.38558183741729, 34.72812443862996], [-77.38572084993945, 34.72806616431839], [-77.38598496855957, 34.728126778857096], [-77.38646535323892, 34.728132754650936], [-77.38659947378989, 34.728006390781076], [-77.38765836392822, 34.72832203236319], [-77.38769140739441, 34.72832709728073], [-77.38774609697538, 34.72838496179436], [-77.38871669667043, 34.72877359002545], [-77.38881601687618, 34.728871276569855], [-77.38896079734114, 34.72887484910014], [-77.3891987361355, 34.728830948546396], [-77.38976817743024, 34.728698522146594], [-77.39019029599365, 34.72855446126546], [-77.39100117875289, 34.728714130949605], [-77.39144032410687, 34.7286661267832], [-77.39158217253444, 34.72867171449722], [-77.39232605823906, 34.728806881155634], [-77.39268759873991, 34.7287872840976], [-77.39330408972748, 34.72914907457931], [-77.39376613497639, 34.729347002056954], [-77.39380550914987, 34.72935464941508], [-77.3938401887463, 34.72937102333579], [-77.39403102198736, 34.72940340739312], [-77.39508357944646, 34.729369594811594], [-77.39565191048115, 34.7293404136843], [-77.39641630008899, 34.729195995556395], [-77.3971195138711, 34.72973455172864], [-77.39751425754251, 34.72983226727764], [-77.39779625841466, 34.729853702533504], [-77.39846259023913, 34.729835472833514], [-77.39880450930855, 34.729805170578004], [-77.39947853891681, 34.72961138173241], [-77.40013819344615, 34.729303349312254], [-77.40028657473154, 34.729116256730286], [-77.40068425050809, 34.728589824868536], [-77.40083150871064, 34.728427605726765], [-77.4014198889903, 34.72794193194511], [-77.40169710753831, 34.727612128011046], [-77.40185124851985, 34.72750501144061], [-77.40205938478458, 34.72742401976601], [-77.40262369291023, 34.72727155695527], [-77.40273357637338, 34.72731008401222], [-77.40315958407332, 34.72700543870969], [-77.40328510815502, 34.7268565671331], [-77.40354445863062, 34.72672444338234], [-77.40409815583205, 34.726825380292105], [-77.4041579975729, 34.72681977842377], [-77.40419046102598, 34.726840424640535], [-77.40481647860022, 34.72676001529498], [-77.40497287934872, 34.72662328184057], [-77.4050191496553, 34.72653762998015], [-77.40544820064804, 34.72626252073984], [-77.4055969771638, 34.72614729768874], [-77.40587584913271, 34.72571903377288], [-77.40604021689121, 34.72537562824895], [-77.40607438271448, 34.72522935564208], [-77.40625052251929, 34.7250353277635], [-77.4064867078815, 34.7248144541975], [-77.40654386259591, 34.72470273208556], [-77.40685626396913, 34.723890086248424], [-77.40684270158947, 34.723820731240664], [-77.4068775036833, 34.72375189930767], [-77.40693209808708, 34.72329288102271], [-77.40713639919366, 34.723178930418705], [-77.40739234913931, 34.72309733649526], [-77.40760990193752, 34.72297083757217], [-77.40787597859881, 34.722839127205724], [-77.40811804132707, 34.722787505282525], [-77.40847361915081, 34.72232302238528], [-77.40851579343791, 34.72216945317997], [-77.40880107132259, 34.72185895330615], [-77.40910688165923, 34.72141164716235], [-77.40925049922812, 34.721308195560376], [-77.40962275007362, 34.72095116257359], [-77.40969348071964, 34.7208744397602], [-77.40979145657056, 34.720379176037625], [-77.40976419618511, 34.71999948733299], [-77.40978416856746, 34.71952647001204], [-77.41008657584521, 34.719364171891506], [-77.41015998539423, 34.71894174600148], [-77.40981623708174, 34.71835470860994], [-77.40972166679813, 34.71823183779011], [-77.40977823008588, 34.71813810160924], [-77.40990398578204, 34.71805179698514], [-77.41057589407373, 34.717828438156225], [-77.41102758202568, 34.71745685754155], [-77.41118613791595, 34.717329935231795], [-77.4114127197983, 34.71726964115959], [-77.41165550169777, 34.717117369764566], [-77.41164036219625, 34.71657636565828], [-77.41165890794602, 34.71655945369813], [-77.41307172106818, 34.71596855688195], [-77.41309089858368, 34.71595551535359], [-77.4131311659443, 34.71595616734451], [-77.41441965670276, 34.715741333893966], [-77.41489954799779, 34.71592012709886], [-77.4156362746878, 34.715967503218906], [-77.4161541605535, 34.71644190561822], [-77.4166673267517, 34.71683448314372], [-77.41742377344592, 34.717457385299106], [-77.41756355296808, 34.71763951201018], [-77.41769898946696, 34.717699412629884], [-77.41801591756327, 34.71802243241096], [-77.41823647615168, 34.71825156611858], [-77.41864025270363, 34.71887658657946], [-77.4187120530046, 34.71894593199223], [-77.41961810958507, 34.719927464764694], [-77.42178231490436, 34.72121777015023], [-77.42179846000414, 34.72122950918867], [-77.42180461035822, 34.721232401655804], [-77.4218102802344, 34.72123252321537], [-77.42184070766531, 34.721211886445715], [-77.424390009769, 34.71989318225437], [-77.42447065949214, 34.71959722912388], [-77.42552730086541, 34.71610302752018], [-77.42542392025628, 34.71578208049256], [-77.42552091599678, 34.71533060180765], [-77.42548351293179, 34.71356662661162], [-77.42537828705747, 34.71259417748414], [-77.42549524729176, 34.7122971217382], [-77.42547423035563, 34.71132709811621], [-77.42571536147867, 34.711161119177135], [-77.42588005401774, 34.71059932995081], [-77.42600742918883, 34.71039538823818], [-77.42605331279182, 34.71021772589855], [-77.42603391570722, 34.70964238066346], [-77.42592679518424, 34.709249051857], [-77.42592364588168, 34.70924200921359], [-77.42592358596639, 34.70921868188355], [-77.42584902468028, 34.70882676355431], [-77.4259216267764, 34.7085067190759], [-77.42619551246807, 34.70822486567235], [-77.42648291832516, 34.7079283982736], [-77.42657372571392, 34.707798041105924], [-77.42703138047389, 34.70760589913428], [-77.42718749591339, 34.70758428857311], [-77.42736021125958, 34.707513968495974], [-77.42749395128499, 34.707337322906966], [-77.42751053125767, 34.70724077869829], [-77.4273620587246, 34.70695554622117], [-77.42732969566757, 34.70686984936222], [-77.4274911677426, 34.70658491036692], [-77.4276085819786, 34.70648267530632], [-77.42795027527421, 34.70616453432129], [-77.42802810140381, 34.706070293561346], [-77.42803351085375, 34.70597564988595], [-77.42812125465144, 34.705543796247426], [-77.42804008961188, 34.70523429469446], [-77.427829451404, 34.70484847803273], [-77.42760915472851, 34.70452134032078], [-77.42702834676255, 34.70404351321324], [-77.42689133937921, 34.7039280884995], [-77.4268223726496, 34.70389892875393], [-77.42671265250866, 34.70381664768195], [-77.42612475258147, 34.703355184945906], [-77.42593145561483, 34.702548111187845], [-77.4259274540809, 34.70254041255876], [-77.42592944262562, 34.70253639377175], [-77.42576197280367, 34.7017210417989], [-77.42569677428462, 34.70134159830041], [-77.42568112100257, 34.70119858871131], [-77.42556519472858, 34.700910392734016], [-77.42556390141016, 34.700443057436445], [-77.42561582909906, 34.70019514197959], [-77.4255525176237, 34.70002292868088], [-77.42549926549586, 34.69961249922346], [-77.42545308147993, 34.699171665421474], [-77.42547359589626, 34.699027253349584], [-77.4251829203712, 34.69849111023231], [-77.42509962164443, 34.69842639596777], [-77.42506007846461, 34.69832356521157], [-77.42492296881736, 34.69805372980376], [-77.42495265857924, 34.69794801632978], [-77.42515948924674, 34.697799254404984], [-77.4254057350558, 34.69772127489627], [-77.42571588600232, 34.69769991890992], [-77.42609099758995, 34.697568001309854], [-77.42655295431796, 34.697572537632546], [-77.42707812909134, 34.69735207276515], [-77.4271949448833, 34.69712625406066], [-77.42860087189585, 34.69696540915861], [-77.42883472607167, 34.69694553011676], [-77.42891584272874, 34.696947941660035], [-77.4289841092363, 34.696900444554934], [-77.42912549162534, 34.69674648657726], [-77.4295028201392, 34.696411752297436], [-77.42980024155506, 34.69606770034661], [-77.43004071383406, 34.69579533837668], [-77.43016877200448, 34.69563750570218], [-77.43003673051516, 34.695473447914466], [-77.42985468301598, 34.69496860868718], [-77.43016067198137, 34.69452895383123], [-77.43005709355407, 34.694326441554864], [-77.42976885662317, 34.69382046797115], [-77.42980717017488, 34.69358500285856], [-77.42983689779601, 34.692878530417524], [-77.42986499834721, 34.69273595726079], [-77.42990245609965, 34.69257797641207], [-77.43006680906092, 34.69168839991312], [-77.43041595521295, 34.69085132764704], [-77.43032223334065, 34.69065959086578], [-77.43045167867557, 34.690484455564], [-77.43045911623317, 34.689589332477794], [-77.43039115843254, 34.6890761314603], [-77.43037004686201, 34.688440055362385], [-77.43017920899652, 34.68786973342287], [-77.43009052632316, 34.68741606181987], [-77.43002373885912, 34.68720081467818], [-77.42973570768784, 34.68667137776345], [-77.42978979846053, 34.68655993476563], [-77.42981860813038, 34.68645814854979], [-77.42996164448574, 34.68606096768203], [-77.43000135117404, 34.686009061564825], [-77.43005522756452, 34.68564525479569], [-77.4296985416558, 34.685514006264604], [-77.42957887831619, 34.68551511247036], [-77.42914839692682, 34.685362430214596], [-77.42906575240765, 34.685747643961705], [-77.42894089156464, 34.68577103955863], [-77.42880685494828, 34.68596860918585], [-77.42855422613184, 34.68588673760113], [-77.42868252758511, 34.686172684568426], [-77.42865730052489, 34.68622868451312], [-77.42846834994553, 34.686656847810596], [-77.42832657642464, 34.68701028831322], [-77.42826376996442, 34.68714436831135], [-77.42812507262775, 34.6873435678134], [-77.4281192038959, 34.687373343537125], [-77.42809735649475, 34.68738340821663], [-77.42806197789017, 34.687435535937176], [-77.42794968610441, 34.68759359186686], [-77.42785787361596, 34.68773975022131], [-77.42771754800191, 34.68796002110247], [-77.42780702229389, 34.688102767678146], [-77.42750092526286, 34.68826713273282], [-77.4273729661881, 34.68844272905478], [-77.42733749300399, 34.688497626497316], [-77.42721581013595, 34.6886157879717], [-77.42713391789727, 34.68879979084821], [-77.42702433669677, 34.68880681642905], [-77.42691106749454, 34.68890756047454], [-77.42682925957482, 34.68904958800224], [-77.4265806564576, 34.689232760881794], [-77.42651108937774, 34.689277296698435], [-77.4264785067974, 34.68931534854229], [-77.42639472647153, 34.689404815861494], [-77.4262660346615, 34.68962454618641], [-77.42614775764585, 34.68975874536082], [-77.42609581184286, 34.689800930256], [-77.42600180733389, 34.68994045287262], [-77.42587371504382, 34.69006861293362], [-77.4258715128017, 34.690221204853316], [-77.42581465173183, 34.690382368087256], [-77.42563785530325, 34.69069856020848], [-77.42544314123066, 34.6909489681985], [-77.4253564321181, 34.69112902638041], [-77.42525753132452, 34.691124619521794], [-77.4250079499327, 34.69132264095988], [-77.42471849003094, 34.69158185831665], [-77.42461088795875, 34.69161029406234], [-77.42441862901, 34.691568554095824], [-77.42426726747686, 34.69159205217785], [-77.42400183267101, 34.691500411685396], [-77.42398037576648, 34.69151654748265], [-77.42379751417113, 34.69157194646485], [-77.42364480750062, 34.69162685068479], [-77.42360116334272, 34.69166345425746], [-77.42352550462904, 34.69187514942818], [-77.42321717797866, 34.69199721841925], [-77.42316725798254, 34.692037357647294], [-77.4231230923365, 34.692055324476215], [-77.42284193411865, 34.69218658698081], [-77.42281374380555, 34.69220730491545], [-77.42275191963778, 34.6922640176747], [-77.42284321258883, 34.692516515066174], [-77.42264210438326, 34.69267462167336], [-77.4224809408354, 34.69266934656561], [-77.42245062308041, 34.69283610523888], [-77.42243555466028, 34.692933014000445], [-77.42223634005794, 34.69317175563365], [-77.42211723467274, 34.69331236080349], [-77.42208673410181, 34.693370092602756], [-77.42197009961095, 34.69348297208123], [-77.42184029138676, 34.69360751301094], [-77.42158667010914, 34.693754270756806], [-77.42152710235823, 34.693843404056906], [-77.42140246210744, 34.6938385078976], [-77.42123922540648, 34.69378792155017], [-77.42110489517427, 34.693759489820124], [-77.4210655819064, 34.69383677120378], [-77.42079070649724, 34.6937378925006], [-77.4207691035312, 34.69374784958532], [-77.42059113627944, 34.693809002112616], [-77.42042859709248, 34.69388183450949], [-77.42039076314423, 34.69389505767272], [-77.42031041394543, 34.69409798354379], [-77.41999450109655, 34.69427443970771], [-77.41996917154496, 34.694288012814965], [-77.41985415911145, 34.69426645207592], [-77.41967489043391, 34.694440601880714], [-77.41963156604095, 34.69448399031944], [-77.41925652182282, 34.69461649733045], [-77.41925563402322, 34.694617301926726], [-77.4192542482736, 34.694617673073175], [-77.4192492058138, 34.694618203227904], [-77.41856270122247, 34.69479264378621], [-77.4184771703654, 34.69484043333048], [-77.41829035041121, 34.694837628982455], [-77.4178778641809, 34.694944423690714], [-77.41766433810366, 34.69500737012703], [-77.4176602924857, 34.695176329991035], [-77.4170888718687, 34.69545593300107], [-77.41704772152488, 34.69549515528388], [-77.41698807118212, 34.695500280680314], [-77.41683822368964, 34.695624054638266], [-77.41672871777432, 34.695968653850905], [-77.41660507997162, 34.696267428394094], [-77.41663026676119, 34.696603527271044], [-77.41658436157962, 34.69703635675231], [-77.41660936715186, 34.69711205788854], [-77.41685788454394, 34.69740128824917], [-77.41673571853241, 34.69764840030364], [-77.41678952245528, 34.69806509091191], [-77.41681273595688, 34.69823443948868], [-77.41680387547342, 34.69831653768286], [-77.41688431359623, 34.69837604064614], [-77.41710029098307, 34.6988941220406], [-77.41720533098655, 34.699041781773225], [-77.41722061241391, 34.69921575816997], [-77.4172462744968, 34.699339527383245], [-77.41726705072747, 34.69946239426394], [-77.4173109059709, 34.69952689002541], [-77.41742933479442, 34.699814098422344], [-77.41745296597193, 34.69983119641049], [-77.41765884784202, 34.70012823726157], [-77.41769410229685, 34.70022002124908], [-77.41766355131402, 34.7002422279389], [-77.41759867538109, 34.70033606144808], [-77.41742886094264, 34.70060651815081], [-77.41743119772634, 34.700687158563134], [-77.41734380058392, 34.70076945703974], [-77.41724394124405, 34.7009012083236], [-77.41718401703238, 34.70095421122407], [-77.4171395517093, 34.70107784204625], [-77.41711065437961, 34.70113413568691], [-77.41709579685269, 34.701183979863785], [-77.41702140837867, 34.70122297084547], [-77.41694104233173, 34.70130496244431], [-77.41663435589687, 34.701452912054336], [-77.41658518300838, 34.701471144357164], [-77.41643017119551, 34.7014552122548], [-77.41628889309723, 34.70153921240212], [-77.41618087200905, 34.701558105866255], [-77.41601146772379, 34.70158830497146], [-77.41593274984108, 34.70166239404987], [-77.41587333477338, 34.70180330055547], [-77.41583765178828, 34.701807055960735], [-77.41562107278045, 34.70213887580431], [-77.41536280542621, 34.702200058372625], [-77.4144328174732, 34.702415305388314], [-77.41396929937089, 34.70243027363669], [-77.41315847669253, 34.70238913192884], [-77.4130006589874, 34.7023425525636], [-77.41267001976988, 34.702376319861], [-77.41219675443932, 34.702524190306235], [-77.41182103159142, 34.702580827495154], [-77.4113240530477, 34.702387756537846], [-77.41072861849322, 34.70192648078642], [-77.41059782281954, 34.70179796892022], [-77.41060857332494, 34.70165516783293], [-77.4101777587962, 34.70108047804911], [-77.40978538184211, 34.700757130614406], [-77.40907064237481, 34.699998887411056], [-77.40892719745332, 34.699816692547884], [-77.40883281264384, 34.69962008767501], [-77.4083918735206, 34.69864316773679], [-77.40838145716788, 34.698258938226694], [-77.40803346142056, 34.69795415523886], [-77.40756040027131, 34.69723400548123], [-77.40729328439005, 34.69692743188554], [-77.40720464635037, 34.69639005313131], [-77.4070401721283, 34.6959337324316], [-77.40704987445767, 34.69524359341958], [-77.40669362012025, 34.693728945931845], [-77.40659342203848, 34.69354090799365], [-77.40629563241325, 34.69198746248881], [-77.40573686224057, 34.691004636448746], [-77.40500077063919, 34.688956851243894], [-77.40369933808054, 34.68636603786976], [-77.4034958490993, 34.68601387548374], [-77.40179612866064, 34.685152433277175], [-77.40156575411821, 34.68503356518972], [-77.40152784180083, 34.68501315118831], [-77.40130866730655, 34.684715301234036], [-77.40053383920026, 34.683678639388646], [-77.3994855015063, 34.68321463886335], [-77.39781617472019, 34.681994274503204], [-77.39737528926746, 34.68165066175608], [-77.39725618971268, 34.68147502349715], [-77.39706871092423, 34.68126106618909], [-77.39663999563646, 34.68006971292506], [-77.3965975909688, 34.679977832859635], [-77.39659987967435, 34.67996346347541], [-77.39596605697724, 34.678638424557015], [-77.39594043334931, 34.67845321425884], [-77.39586900925168, 34.678002638875036], [-77.3955550470233, 34.67625789201572], [-77.39547865936055, 34.67507526557385], [-77.39532371248139, 34.67394023815524], [-77.39434196725963, 34.67197882535235], [-77.393542984008, 34.671080105543524], [-77.3932027881083, 34.67066868755058], [-77.39293930390161, 34.670422047582115], [-77.3923160767184, 34.669999853784574], [-77.39164418019536, 34.66953346385413], [-77.39077928360275, 34.66903137392191], [-77.38983974495696, 34.668500752356756], [-77.38967047894023, 34.66843548485972], [-77.38951259933603, 34.66840489087645], [-77.38874002426513, 34.668279846161695], [-77.38845091058732, 34.668221814805214], [-77.38832361886296, 34.66820166171357], [-77.3875576463788, 34.66809082050616], [-77.38730179756254, 34.668057554678626], [-77.38687644775018, 34.66805336081298], [-77.38613056892365, 34.6679695943655], [-77.38586897173566, 34.66781439249126], [-77.38499218531673, 34.66776832875915], [-77.38468165880437, 34.66772804597154], [-77.38407305845558, 34.667620558623454], [-77.38384745524844, 34.66758895453398], [-77.38342787951626, 34.66754946554464], [-77.38227459822099, 34.66742865718289], [-77.38154343182597, 34.66728045667717], [-77.38132866303735, 34.66721457204514], [-77.38081441906519, 34.66697618457717], [-77.3804703584236, 34.66685392824979], [-77.38009766365222, 34.6667396795362], [-77.37988788328659, 34.66643797647957], [-77.37963106201818, 34.66631049586893], [-77.3794632239106, 34.66619999638205], [-77.37875148933088, 34.665957206860554], [-77.37826246058661, 34.66621393232901], [-77.37826211962206, 34.665787742995995], [-77.37814964487237, 34.66542377030133], [-77.37822396379505, 34.66471726321364], [-77.37844666267641, 34.66441083148341], [-77.37899529665569, 34.663645915109726], [-77.37900494484616, 34.663635041250814], [-77.37900708349746, 34.663631365406005], [-77.3790179080647, 34.66360834829284], [-77.37948485402387, 34.66277864742289], [-77.3800544595134, 34.662515867842124], [-77.38043314214578, 34.66234297860875], [-77.3807676839929, 34.66170049797254], [-77.38090571215584, 34.661423961669996], [-77.38087936083397, 34.66131526906581], [-77.38070748818133, 34.66074994037223], [-77.38078325198506, 34.66046600861976], [-77.38080466306477, 34.660104421486054], [-77.38055102249794, 34.659285275640904], [-77.3804496298939, 34.658823842670095], [-77.38015567669592, 34.65816528078308], [-77.3800862933206, 34.65802979633293], [-77.38006567159277, 34.65794871292616], [-77.3794936141562, 34.65726729898884], [-77.37908835090744, 34.65659259917242], [-77.3786024084695, 34.65625177976792], [-77.37753450852298, 34.65523733269646], [-77.3757729919173, 34.65440296444553], [-77.37526467588152, 34.6536730436062], [-77.37450864372559, 34.65293227543006], [-77.37313136400306, 34.65139016400452], [-77.37223638885686, 34.65048150887647], [-77.37127203905189, 34.64957969581346], [-77.37054429351421, 34.648369824594], [-77.36932208882496, 34.647064490682006], [-77.36918930442141, 34.64660131270375], [-77.36883448545736, 34.64522882860107], [-77.36874198313816, 34.64361839442043], [-77.36870612150274, 34.643482374419115], [-77.36822412330105, 34.641936668430915], [-77.3677373905799, 34.64101347833143], [-77.36768482622179, 34.639861252458225], [-77.36793721969647, 34.63937578385833], [-77.36825050456517, 34.6385569554229], [-77.36837800306918, 34.63783993600231], [-77.36903213805101, 34.63619443527645], [-77.36957060271166, 34.635555051762495], [-77.36996672666389, 34.63491846153983], [-77.37011963797315, 34.63266963244802], [-77.36989747117654, 34.63153197373853], [-77.36970828977225, 34.63083317839527], [-77.36971503018111, 34.628894329181094], [-77.36957319641736, 34.62818220925618], [-77.36952107462153, 34.627666500982], [-77.36971788617193, 34.62719812300603], [-77.36982394944204, 34.626996067133504], [-77.36998571080888, 34.62659863436186], [-77.37010593978295, 34.626407275697666], [-77.37029744319187, 34.62604012390098], [-77.3706128641708, 34.62577216239971], [-77.37133456858149, 34.6253091694841], [-77.37154803638992, 34.62519274264514], [-77.37219005994507, 34.62504828175422], [-77.37277432803586, 34.62495396711745], [-77.37376720570943, 34.624394202151365], [-77.37390208686026, 34.62430761321775], [-77.3740821090188, 34.624136457330984], [-77.37483991561271, 34.62348400781223], [-77.37534447626396, 34.62322388060686], [-77.37592509172343, 34.62279793093568], [-77.37679529870407, 34.6220474232078], [-77.3768686073758, 34.62197966092371], [-77.37692173432079, 34.62193484780267], [-77.37704897724075, 34.62187385978837], [-77.378498792268, 34.621240547681154], [-77.37914276017013, 34.62101577352287], [-77.37928728716693, 34.62098955693143], [-77.37940935928674, 34.62095317946758], [-77.38007580684737, 34.62061412849031], [-77.38045863416139, 34.620233623015736], [-77.38136329295085, 34.61969107034064], [-77.38152863823873, 34.61953341914715], [-77.38165291588517, 34.61944088656314], [-77.38193961577639, 34.61929927599874], [-77.38322992182333, 34.618560034234505], [-77.38375079783876, 34.618209687726946], [-77.38436215363328, 34.61756066736639], [-77.38480699436278, 34.617124866872096], [-77.38546125280486, 34.61640852269954], [-77.38611651386623, 34.61560955684984], [-77.38638405402594, 34.61543841023627], [-77.38664410284832, 34.61525345277683], [-77.38717252811794, 34.61480204604311], [-77.38731350730104, 34.614739724448796], [-77.38760235987526, 34.614546252931106], [-77.38796097042042, 34.614300853208725], [-77.38839924226446, 34.61405426304264], [-77.38874942139725, 34.613666119504465], [-77.3894909482564, 34.613424865641086], [-77.38953118234515, 34.61341192495185], [-77.38953781189318, 34.613409895855234], [-77.38954712886881, 34.61340673145399], [-77.39072822683576, 34.61283033457111], [-77.39111460710973, 34.61262815844222], [-77.39123743654736, 34.6124562120454], [-77.39187388815483, 34.61226351169968], [-77.3919029919872, 34.61224979335749], [-77.39192170065745, 34.61224542207507], [-77.3926904218333, 34.61211542561232], [-77.39269134731667, 34.612115817339514], [-77.39269690805199, 34.612113493431245], [-77.39326207343619, 34.611797569353925], [-77.39395137468892, 34.611083457320596], [-77.39409843915827, 34.610879478085856], [-77.39426812742062, 34.61077537653934], [-77.39554865418307, 34.60947387275956], [-77.39584486880428, 34.60921389730355], [-77.39591550784584, 34.60917800279525], [-77.3961458918017, 34.60906868752232], [-77.39604042713798, 34.60887326829357], [-77.39597074292266, 34.60824480677216], [-77.3959772171809, 34.607537192187564], [-77.39600068769258, 34.60739134468207], [-77.3965582263041, 34.60723009037139], [-77.39663327691161, 34.60716146811185], [-77.39672834698158, 34.60718398349541], [-77.39680232777442, 34.6072757230008], [-77.39683032961469, 34.60790852655499], [-77.39742152617887, 34.60834484945226], [-77.39888762365416, 34.60867322409023], [-77.39897485641981, 34.608685707866414], [-77.39899812770673, 34.60868460817334], [-77.39903100648209, 34.608687957602996], [-77.40049566239256, 34.60852643317681], [-77.40057474050649, 34.60851094969099], [-77.40191542257844, 34.60849055226481], [-77.40215135008951, 34.6085609083962], [-77.40253117582657, 34.60855671859199], [-77.40372794806947, 34.60827760788563], [-77.40503534644094, 34.608076168189136], [-77.40688118574124, 34.60875010397786], [-77.41003041990922, 34.608763647859654], [-77.41003386654728, 34.60876372676924], [-77.41003440163578, 34.608763863232106], [-77.410035661424, 34.60876424826137], [-77.41452942490575, 34.61006558095388], [-77.41634119185595, 34.61069963554804], [-77.41880666819246, 34.61163424769309], [-77.41949471184029, 34.61178330251042], [-77.42091691686619, 34.612120244715385], [-77.4226482162076, 34.612501083760286], [-77.4234182628675, 34.61279435511701], [-77.42527322466712, 34.613355772741414], [-77.42800411856352, 34.613985880463105], [-77.42928959695807, 34.61404706653561], [-77.43067273223342, 34.614380901097505], [-77.43334217675152, 34.61435967496688], [-77.43359066700242, 34.61439519923526], [-77.43364962115784, 34.61439908587056], [-77.43539451265572, 34.613839180728235], [-77.43553140025334, 34.613802433579224], [-77.43617885881595, 34.61298032065553], [-77.43618336473105, 34.61287642059425], [-77.4364964065683, 34.612151310757554], [-77.43631935920351, 34.611135876516485], [-77.4361504110086, 34.61077296813737], [-77.43571745218085, 34.61023557361499], [-77.43505883234377, 34.60901998678508], [-77.43441831130855, 34.60831276629183], [-77.43377612889697, 34.606931231519425], [-77.4332170487211, 34.6054144186635], [-77.4330903695327, 34.603097956467266], [-77.43284687321508, 34.60207122737035], [-77.43367278636956, 34.6002612498545], [-77.43367556807256, 34.600248317879945], [-77.43367998907712, 34.60024628812716], [-77.43440571763416, 34.59844916245311], [-77.43487703773343, 34.597973296307316], [-77.4352550998359, 34.597038741296565], [-77.43535326846225, 34.59671971687781], [-77.43536508579865, 34.59661210145671], [-77.43555581169845, 34.596260192535674], [-77.43577441656595, 34.59541478565335], [-77.43599258682062, 34.59482300855352], [-77.43581459497796, 34.59424469349021], [-77.43544076492054, 34.59340605809477], [-77.4353194790553, 34.59322195567713], [-77.4352998271845, 34.593174908788946], [-77.4352535088737, 34.59313434999875], [-77.43422093759457, 34.592794791372654], [-77.4340071939111, 34.591713307315445], [-77.4339531550698, 34.59142309222899], [-77.4336763603452, 34.59091486340716], [-77.43317355079057, 34.590677113687676], [-77.43315185659566, 34.5901385931829], [-77.43209939805844, 34.58896983616828], [-77.4317815955979, 34.588980740427395], [-77.43139926562115, 34.58869357360026], [-77.42992064463286, 34.58785775931871], [-77.4289461027118, 34.58632112058212], [-77.42866382236862, 34.5859962880399], [-77.4283935623613, 34.58573129996424], [-77.4266205881137, 34.585096216128335], [-77.42579315110143, 34.584174100935996], [-77.42501605655852, 34.58365989184915], [-77.42454438447966, 34.582890861108794], [-77.4242166302201, 34.58270865954065], [-77.42365185841524, 34.581929838780354], [-77.42336722822401, 34.581362607258264], [-77.42323065526863, 34.58032053912638], [-77.42312027345417, 34.57969994508417], [-77.42289568870679, 34.57945657103688], [-77.4226396619895, 34.5791865700885], [-77.42160709049315, 34.57822023500002], [-77.42129289765279, 34.57801827657657], [-77.42106331167918, 34.57779723760312], [-77.42030766452324, 34.57759371994196], [-77.42025529212647, 34.577587886130175], [-77.4194871317429, 34.576983286089124], [-77.41939866908211, 34.576936270670195], [-77.41919717125197, 34.576870059981964], [-77.41822503724626, 34.57667215617563], [-77.41791106920391, 34.57663883547736], [-77.41731779321476, 34.57608243225458], [-77.41658114766918, 34.57581493788452], [-77.41633496358365, 34.57596515824735], [-77.41480559869794, 34.57580606458391], [-77.41476407343576, 34.575806549650196], [-77.41475895773323, 34.57580362224727], [-77.41474655617503, 34.575801227913196], [-77.41318296012196, 34.57566546539003], [-77.41204572186007, 34.57573182770762], [-77.41160698148842, 34.575665282729], [-77.4100697188525, 34.57479163389318], [-77.41004447545448, 34.574780672472365], [-77.41003092105831, 34.57477586192866], [-77.4100050033741, 34.57477304833169], [-77.40907146068051, 34.57427135396448], [-77.40845492761892, 34.57436506678098], [-77.40826248055475, 34.57441079610538], [-77.40791767081022, 34.5745233618823], [-77.40766696214507, 34.574581234470585], [-77.40735003070597, 34.5748427373813], [-77.40719221610912, 34.57486953681027], [-77.40687899013685, 34.574755889322184], [-77.40638608214286, 34.57479226866013], [-77.40609100739651, 34.57476380399687], [-77.40578420544622, 34.57489179754894], [-77.40563011673213, 34.57493589428175], [-77.40557670313804, 34.575015703864935], [-77.4053030381471, 34.57519010803702], [-77.4051195728111, 34.57530855582226], [-77.40508543290056, 34.57532111811763], [-77.40490904804452, 34.5753199576023], [-77.40480434229933, 34.575240021031604], [-77.4045150477153, 34.57507838745038], [-77.40419438489957, 34.57513620989181], [-77.40405872388867, 34.57516764221302], [-77.40404148571052, 34.57523730082869], [-77.4037270670774, 34.575515820651084], [-77.40361967872667, 34.575607033276704], [-77.4035098274301, 34.57573861298659], [-77.40333307640955, 34.576001770002236], [-77.40318974196502, 34.57605492724999], [-77.40293907913872, 34.5761316365098], [-77.40261862046789, 34.576212566188154], [-77.40243403856118, 34.57619879327247], [-77.40215108169917, 34.57606954923864], [-77.40206788136052, 34.57603637798393], [-77.4017570836924, 34.57599311334381], [-77.40141591168472, 34.57609773752948], [-77.40136308344357, 34.576139993126695], [-77.40109273340407, 34.576378773968386], [-77.4009547424787, 34.57651648910404], [-77.40091205925127, 34.576538096244256], [-77.4005750686848, 34.576882536790926], [-77.4005097662759, 34.57695035607962], [-77.40039562820766, 34.57703719416065], [-77.40003555288376, 34.5773569384145], [-77.39978705092693, 34.5772712055869], [-77.39965289460127, 34.57728893435312], [-77.39939304334285, 34.577349954161264], [-77.39921741646873, 34.57744253259029], [-77.3991960368238, 34.577452616845896], [-77.39913144160377, 34.57750150480292], [-77.39906592853961, 34.5775134401548], [-77.39899903112973, 34.5775227978571], [-77.39893246598972, 34.57753233941689], [-77.39887083302759, 34.577543647349906], [-77.39880202619472, 34.57756704856089], [-77.3987667853553, 34.57759065981952], [-77.39874353709509, 34.5776371341924], [-77.39868965462468, 34.57761673251055], [-77.39860502071559, 34.577618435505464], [-77.39853417360014, 34.57765402433092], [-77.39840801397358, 34.57769093689661], [-77.39822315227795, 34.57776215416165], [-77.39821100702471, 34.57776039098821], [-77.39818118612828, 34.57778129671898], [-77.39792192716462, 34.57793178024802], [-77.39781698578003, 34.57801615803687], [-77.39757817260438, 34.57812563088393], [-77.3974229654236, 34.57821480132331], [-77.3973236266995, 34.578222553426876], [-77.3968185614659, 34.57840246452713], [-77.39667375873934, 34.57846519718226], [-77.39663492656403, 34.57849997895458], [-77.39654857615338, 34.57853446067374], [-77.39624090283564, 34.57867255519512], [-77.39610238047295, 34.578781101200676], [-77.39596115473832, 34.57882759338186], [-77.39584688078351, 34.57880159856656], [-77.39559758914574, 34.57884723089346], [-77.39525508451189, 34.57883946989164], [-77.39505885166412, 34.57884230222637], [-77.3948058503318, 34.57896543355915], [-77.39466015075809, 34.578713839827756], [-77.39449627207115, 34.57849458102177], [-77.3946309402101, 34.5778689106316], [-77.39455837808752, 34.57756965123268], [-77.39451717499789, 34.577460750658084], [-77.39444269216114, 34.577286457364835], [-77.39427097419102, 34.577301273430045], [-77.39410169156213, 34.57727852983364], [-77.39387696321779, 34.57735015232865], [-77.3935863849498, 34.577281888108146], [-77.39348296644683, 34.57726068503859], [-77.3934082889, 34.577276602554456], [-77.39309967800882, 34.57724064829705], [-77.39286391218383, 34.57709261123715], [-77.39285933002074, 34.57660322081797], [-77.39287532050069, 34.57642386868104], [-77.39279755812464, 34.57632463811769], [-77.39269511839117, 34.57585506901269], [-77.39261030039572, 34.57570437149014], [-77.39261717861845, 34.575611962127596], [-77.39264073381099, 34.575549921452605], [-77.39252161478589, 34.574963685451415], [-77.39241309803008, 34.57479225721764], [-77.39241598926735, 34.57449087549797], [-77.39237073378146, 34.57429898497688], [-77.39228247179904, 34.57396195778759], [-77.39220842983376, 34.57344786359839], [-77.3922299170947, 34.572772962363516], [-77.39179320751575, 34.572334245060986], [-77.39165114572496, 34.571782005067675], [-77.3913078846552, 34.57090865494833], [-77.39122381108271, 34.57071809419758], [-77.39124122719984, 34.57058477431815], [-77.39111984685881, 34.57058438887116], [-77.39086951435985, 34.57049940770293], [-77.39003633754015, 34.57035876815178], [-77.39000394706602, 34.570044893762216], [-77.38964861874479, 34.569983441885], [-77.38954404177892, 34.569986857255586], [-77.38940192722721, 34.56997856492699], [-77.38879510150436, 34.570177163670664], [-77.38875607175707, 34.57013645239165], [-77.3886903281287, 34.57016349681771], [-77.38796804570451, 34.57058496828407], [-77.38739401115015, 34.57019082762741], [-77.3871801603554, 34.57023269838868], [-77.38697520217704, 34.570260801163684], [-77.38639219703887, 34.57031022958411], [-77.38568082674544, 34.57058572220255], [-77.38560419195149, 34.570581796862385], [-77.38554561728972, 34.57062469090447], [-77.38481615399886, 34.570982257630085], [-77.38428983275126, 34.571150849629355], [-77.38378736326727, 34.571200781442215], [-77.38324020858786, 34.57112316295407], [-77.38275244243677, 34.570767096790085], [-77.38221514594771, 34.57031882852937], [-77.38191239548554, 34.57009538403081], [-77.38166467429319, 34.569613876004645], [-77.38158756625587, 34.5695601697308], [-77.38160213535042, 34.56949064046939], [-77.38135464297238, 34.56907887074557], [-77.38107126492798, 34.56878546568164], [-77.38122469766424, 34.568388703305494], [-77.38111635474388, 34.56818766774006], [-77.38094264583955, 34.56795487736623], [-77.38091895890162, 34.56791326595166], [-77.3801523501193, 34.567219667113584], [-77.38015023156737, 34.5671544765419], [-77.38008949277598, 34.56702855746737], [-77.37866849432376, 34.5659018068208], [-77.37851399829327, 34.56584782102248], [-77.37847770266232, 34.56580192152389], [-77.37840302694585, 34.56577355426531], [-77.37601038827577, 34.565420142977004], [-77.37536252575785, 34.56533806641724], [-77.37441272186132, 34.56532500128908], [-77.37302429867069, 34.56567193371322], [-77.37221052099264, 34.56635724495541], [-77.37194167992145, 34.56641494916205], [-77.37063451085578, 34.56680823718507], [-77.370579099621, 34.56684125892561], [-77.36950823915905, 34.56657083743046], [-77.36905869938502, 34.56672661939278], [-77.36857046502111, 34.56634119699983], [-77.36853945994501, 34.56605640961779], [-77.36813357325475, 34.56555501156561], [-77.36795226509146, 34.5650760017282], [-77.36701063694687, 34.564018522615754], [-77.3672424862264, 34.56254787491139], [-77.36719618864375, 34.561982437683156], [-77.36748499214198, 34.56172950763324], [-77.36782337930093, 34.56050500127183], [-77.36767142938021, 34.55902833892941], [-77.36766751147464, 34.55882922360039], [-77.36780836805764, 34.558461922270624], [-77.36748665716277, 34.55786445449432], [-77.36651666508263, 34.5572967659518], [-77.36600612160548, 34.55726805011653], [-77.36591152376431, 34.55665749495831], [-77.36566814888525, 34.55572075823099], [-77.36508882464832, 34.55499350052105], [-77.36433650708248, 34.555299228254476], [-77.36393370016137, 34.55553653698769], [-77.36276002843336, 34.55702753450801], [-77.3618906693037, 34.5570260228575], [-77.3596307949605, 34.55826388889709], [-77.35960803548639, 34.558278095133524], [-77.35957808263782, 34.558263709974405], [-77.35957248911579, 34.55829680551298], [-77.35845825987866, 34.55891663135683], [-77.35803211069864, 34.558704891807736], [-77.35796941556833, 34.55859524038236], [-77.35763820438473, 34.55867035137212], [-77.35751171689864, 34.558593499283596], [-77.35757633208149, 34.558226590419], [-77.35730277330829, 34.5578370190661], [-77.35752324832211, 34.55774273393351], [-77.35744927615835, 34.55753312299387], [-77.35742509782311, 34.55690775949185], [-77.35724526036437, 34.55690220193307], [-77.35648503692386, 34.557013265855105], [-77.35645738075686, 34.55698313341494], [-77.35608483899023, 34.556653314555064], [-77.35599201545418, 34.5566122799567], [-77.35566973997535, 34.55664509627762], [-77.35562610104407, 34.5563648413237], [-77.35565495065111, 34.556313482003965], [-77.35527621648349, 34.55596780485768], [-77.35526588948142, 34.555956073095096], [-77.35524710244613, 34.55594763991714], [-77.35488248661007, 34.55565476808504], [-77.35484181380085, 34.55562528319225], [-77.35467326735375, 34.55560568947543], [-77.35449089345794, 34.55553180539071], [-77.35430008431251, 34.55565940593515], [-77.35412900396081, 34.55572108503587], [-77.35409461627643, 34.55573436294441], [-77.3539852488637, 34.55582253979691], [-77.35347206117893, 34.55577858811196], [-77.35403461726207, 34.55565977150515], [-77.35409585821935, 34.55563603260059], [-77.35444062401564, 34.555360560279986], [-77.35442924543979, 34.555151169887516], [-77.35446108166371, 34.55512213827034], [-77.35450182266118, 34.55505545473613], [-77.35462674234785, 34.554954364095295], [-77.35484660080172, 34.5548462719819], [-77.35490055704402, 34.55478982270575], [-77.35523794175865, 34.55478993961143], [-77.35527701803667, 34.55479433797928], [-77.35552093555354, 34.55499402496969], [-77.35559565252376, 34.55503598230096], [-77.35567415190586, 34.55529940342121], [-77.35593821531212, 34.55509569450309], [-77.3558192325271, 34.55486680675669], [-77.35586237013618, 34.55445522913863], [-77.35579189517945, 34.55440474875148], [-77.35588475671679, 34.554207184007616], [-77.35593160258986, 34.55409898426425], [-77.356160756529, 34.55392262881336], [-77.35610524947951, 34.55368489563979], [-77.35625074330564, 34.55342002879746], [-77.35595044709139, 34.55331928822034], [-77.35593705549064, 34.55322036417177], [-77.35584925190099, 34.553154488949694], [-77.35572641401737, 34.55302016869468], [-77.35571759382641, 34.55301274029394], [-77.35571105698801, 34.55300807530604], [-77.35570756637674, 34.55299648687104], [-77.35557823679734, 34.55278237255254], [-77.3555230763955, 34.5526771848658], [-77.35552002035651, 34.55266834184006], [-77.35552362474708, 34.55265861641395], [-77.35550497961364, 34.55260930134673], [-77.35554025726432, 34.55257717370374], [-77.35558413061443, 34.55256386839791], [-77.35567892656857, 34.552523055205036], [-77.35572375577323, 34.552507615850864], [-77.35573831851168, 34.552500999717296], [-77.35579043111977, 34.5524748820458], [-77.35613255940227, 34.55243067714164], [-77.35638960015231, 34.552334832229484], [-77.35652798987822, 34.55230842092218], [-77.35689667063053, 34.55212054173107], [-77.35692515894662, 34.55211024139597], [-77.35693446643396, 34.552103186652694], [-77.35694330155141, 34.55209621177935], [-77.35699734731747, 34.55204435908659], [-77.35711632138526, 34.5519432938749], [-77.35729188666853, 34.55180120344431], [-77.35730916865062, 34.55178874931329], [-77.35732565204302, 34.551766893451614], [-77.35746848391666, 34.55161789034816], [-77.3576002158139, 34.55151198954531], [-77.35765615750228, 34.55146082871925], [-77.35772683208077, 34.551393411976306], [-77.35811405539465, 34.55119318616465], [-77.35812042124927, 34.55118996675428], [-77.35812416183788, 34.551187893666416], [-77.35813188975979, 34.551185829058355], [-77.35813610508524, 34.55119001150046], [-77.35819060370824, 34.55122411250358], [-77.35848294317346, 34.5514029289176], [-77.35855444520972, 34.55140113133746], [-77.35890561358029, 34.55135353745531], [-77.35896471613987, 34.551315530720366], [-77.35909426015138, 34.55116702466913], [-77.35933401491553, 34.55101753239927], [-77.35948154533752, 34.550858708517985], [-77.35961178563473, 34.55048788891521], [-77.35958022738971, 34.5504099833171], [-77.3594629574402, 34.55026449498794], [-77.35956581706576, 34.5501546043578], [-77.35957421374384, 34.55009435507668], [-77.35966198856215, 34.54999101242916], [-77.35967499387054, 34.54995935305053], [-77.35969317016898, 34.54986411060077], [-77.35972604648589, 34.549815815417276], [-77.35978513107558, 34.549764569190344], [-77.35987679976895, 34.54974467855105], [-77.35992401767112, 34.549743106763415], [-77.35998698147122, 34.54969939156993], [-77.36005895383374, 34.549649421813456], [-77.36012619421827, 34.549486570650444], [-77.36014736223464, 34.54944406678383], [-77.36014788132871, 34.5494313985675], [-77.3601562408383, 34.549412514957446], [-77.36012818683561, 34.54939947574502], [-77.3601036942978, 34.54933159075942], [-77.3600906808736, 34.54931722319616], [-77.36003236074956, 34.54929776293477], [-77.36000220934955, 34.54928770199524], [-77.35998365602481, 34.54928151110492], [-77.3599678539707, 34.54927370376882], [-77.35995669493457, 34.549261801138634], [-77.3599623726688, 34.54922988159045], [-77.35996919272642, 34.54921230497876], [-77.35998585443869, 34.54918542866056], [-77.35999301875104, 34.54918269969316], [-77.36003523982947, 34.54917192850917], [-77.36011441640818, 34.549191393311006], [-77.36012577968964, 34.54919418686517], [-77.36013284384987, 34.5491959235183], [-77.36016312312961, 34.54920336735731], [-77.36016318468015, 34.54918437080727], [-77.36018736909665, 34.54914757724498], [-77.3603047131995, 34.54904157891785], [-77.36030876118217, 34.549025855985214], [-77.36038232459576, 34.54890799072319], [-77.36037837052756, 34.54881135519795], [-77.36037969754923, 34.54878595705191], [-77.36037460802373, 34.548764497525625], [-77.36038764655997, 34.54869168464214], [-77.36040159496947, 34.54866039172332], [-77.36037431864246, 34.54864402609124], [-77.3603676859604, 34.548604068594464], [-77.36035912648235, 34.548595178115], [-77.36034348921054, 34.548569106855695], [-77.36033536298648, 34.54855281680522], [-77.36033325835245, 34.54854782011719], [-77.36032954372554, 34.54853923269162], [-77.3603266434823, 34.548533471145255], [-77.36032617888492, 34.548529594615665], [-77.36031984785015, 34.548529909583564], [-77.36031117440282, 34.54853029557746], [-77.36030650603064, 34.54852939646509], [-77.36030578968084, 34.548527675780555], [-77.36031049351102, 34.548526378795145], [-77.36031997736511, 34.54852424817024], [-77.36032732262126, 34.54852262911822], [-77.36034051857548, 34.54851617162715], [-77.36034182324725, 34.54851416106532], [-77.36033833266501, 34.548490224201046], [-77.36033771268578, 34.54848597265054], [-77.36033695027287, 34.54848074433833], [-77.3603346021742, 34.548432702192635], [-77.36033403025468, 34.54842529687079], [-77.3603328889638, 34.548416676591124], [-77.36034872070385, 34.548340422770465], [-77.3603630930585, 34.54830718799515], [-77.36036657353056, 34.54828781622737], [-77.36041041372044, 34.548169473416635], [-77.36035431698122, 34.54809579330019], [-77.3603424036259, 34.54806472700498], [-77.36033493992585, 34.548057929601946], [-77.36031061979617, 34.54803329108812], [-77.36030726336014, 34.5479706304613], [-77.36030560880542, 34.5479397411915], [-77.3603353334833, 34.547921131312435], [-77.36033443121892, 34.54782937972118], [-77.36030268017964, 34.54781775080058], [-77.36022075739373, 34.54774120296548], [-77.36019887456159, 34.547710286690645], [-77.36018493098102, 34.54770113970064], [-77.3601672696484, 34.547691224548196], [-77.36013217159669, 34.54759747981964], [-77.36012824054342, 34.54757200685386], [-77.36012013914447, 34.54753800646385], [-77.36011723493803, 34.54751099118694], [-77.36011462021916, 34.54747759512784], [-77.36010690698134, 34.54743744346982], [-77.36010208184027, 34.54735698857569], [-77.36009772693563, 34.547284374425736], [-77.36009520229308, 34.547235567161266], [-77.36009200085235, 34.547181823345795], [-77.3601063525089, 34.54703646648189], [-77.36009621445254, 34.54699059728689], [-77.36007310260125, 34.546940939893524], [-77.36007209320722, 34.54692376977959], [-77.36009575147833, 34.54686825189177], [-77.3600977915059, 34.54680156527517], [-77.360089685378, 34.54674671334466], [-77.3600738623796, 34.54667626261515], [-77.36007550977044, 34.54662634256707], [-77.36003581892652, 34.546607086008066], [-77.3600308161937, 34.54653113502573], [-77.36007143892941, 34.54650451670695], [-77.36008724607757, 34.54643440641568], [-77.36016186106635, 34.54627031715927], [-77.36016542488719, 34.54624615856783], [-77.36016659744936, 34.54622464624962], [-77.36018588242305, 34.54601075751921], [-77.3601970835041, 34.54599677553646], [-77.36019894285276, 34.54599201586391], [-77.36020652626769, 34.54597539765045], [-77.36044975468826, 34.54586567826172], [-77.3604300365752, 34.545718405314744], [-77.36032561690496, 34.54566362498388], [-77.36031332592384, 34.545550932625275], [-77.36035424225523, 34.545484495757584], [-77.36028597684646, 34.54545224458024], [-77.36022274312164, 34.54526659814789], [-77.36022072098612, 34.54526025075636], [-77.36022059545634, 34.54525891725456], [-77.36022079272918, 34.545257543375875], [-77.36022431932273, 34.545197706433484], [-77.36023649833783, 34.54501681704899], [-77.36024635107236, 34.54501038415609], [-77.36023679342593, 34.54500670668167], [-77.36023062166824, 34.5449222472632], [-77.36022359720225, 34.54477531356663], [-77.36022346500593, 34.544768855652364], [-77.36022345985228, 34.54476210531759], [-77.36022856789393, 34.544645708725696], [-77.36022251399868, 34.54453475316714], [-77.36022344848148, 34.54452403383719], [-77.36022303066339, 34.54451352857854], [-77.36021285524835, 34.54430068292578], [-77.36021062181484, 34.54428105672122], [-77.36021002092842, 34.544258830692065], [-77.36021499029263, 34.54415801554824], [-77.36021180750011, 34.54406009576727], [-77.36021811602272, 34.54403515333319], [-77.36021835002498, 34.54401451526324], [-77.36020908801466, 34.54382077384494], [-77.36020953241946, 34.543791565205254], [-77.36020543358, 34.54375986265953], [-77.36019722320208, 34.54367092568336], [-77.36018114971077, 34.543623863175476], [-77.36019234192862, 34.54359206770813], [-77.36021683402902, 34.54354568954221], [-77.36020849109839, 34.54351298225653], [-77.36023351850184, 34.54342087480155], [-77.36020472220534, 34.543341317907974], [-77.3601829154683, 34.5433057496947], [-77.360166168179, 34.543244021374704], [-77.360105402382, 34.543072087699045], [-77.36009152633775, 34.54294422765662], [-77.360088504331, 34.542829696918446], [-77.36009603299476, 34.542713159648144], [-77.3603029853216, 34.54255398574564], [-77.36009838574216, 34.542456276796585], [-77.36010573140402, 34.54233756778327], [-77.36011431026124, 34.54222531602069], [-77.36012050371163, 34.54209061630558], [-77.36012861708505, 34.54195063721831], [-77.36013154578895, 34.54173696550552], [-77.36014158136969, 34.541597932606074], [-77.36015610368729, 34.54144707481156], [-77.36015901294994, 34.5413505981397], [-77.36016839851428, 34.541258160194914], [-77.36018448581608, 34.541102105657416], [-77.3602005490892, 34.5409306770707], [-77.36018468145404, 34.54076934620426], [-77.36020315008626, 34.54060976940907], [-77.36021900439208, 34.54043394965314], [-77.36022097729833, 34.54029027007695], [-77.36023675743064, 34.540115281196634], [-77.36024874665117, 34.53992867959295], [-77.36023953635777, 34.53980256362961], [-77.36025063436409, 34.539623634284695], [-77.36025739472827, 34.53943937468455], [-77.36025683426934, 34.53931424351863], [-77.360249898022, 34.539134091797465], [-77.36022313213635, 34.53898254728068], [-77.36011796797584, 34.538749935527974], [-77.36026745947169, 34.538641913740534], [-77.3601109906492, 34.53858466421987], [-77.36004368202204, 34.53821705087239], [-77.36012376944754, 34.53817295841364], [-77.36005353871653, 34.53814538925693], [-77.36002126978305, 34.53794289553788], [-77.36000957716938, 34.53793728342224], [-77.36002124240217, 34.537709393864205], [-77.36003846064492, 34.53769559564989], [-77.36003721098876, 34.53767498897625], [-77.36007002978536, 34.53744622509919], [-77.36003767452213, 34.53743325910139], [-77.36001715158343, 34.53721066505472], [-77.36001955541684, 34.53720866982177], [-77.36001893279665, 34.537206065194496], [-77.36001495360081, 34.5371911707584], [-77.35999474103133, 34.53698299632492], [-77.35997965199915, 34.536969592086066], [-77.35999552457415, 34.536951772086404], [-77.35995521793842, 34.53677153148951], [-77.3599705011724, 34.53672608572841], [-77.35998057563799, 34.53669612860437], [-77.3599953996822, 34.53660008796701], [-77.36000093007019, 34.536581848586586], [-77.36003119235878, 34.536481604510335], [-77.360037492887, 34.53647545566092], [-77.36004305027198, 34.53647081361452], [-77.36017318048265, 34.5362931127047], [-77.36020315694373, 34.5362029317902], [-77.36012168417454, 34.536162778172496], [-77.36010406095559, 34.5360111097427], [-77.36038631124487, 34.53593173066122], [-77.3604189047514, 34.53591594603227], [-77.36043680480235, 34.535910818013974], [-77.36067685947737, 34.535645062298286], [-77.36073457083492, 34.53557281364775], [-77.36081414577782, 34.535380466103675], [-77.36084298001776, 34.535315194109785], [-77.36091340968095, 34.535163101391234], [-77.36093012540562, 34.53511893816007], [-77.36091193517446, 34.535081880536296], [-77.36092342860952, 34.53504379270425], [-77.36101268064469, 34.5349846361717], [-77.36102607798422, 34.53496955847206], [-77.3610802446005, 34.53495448570594], [-77.36124269577965, 34.53500174463376], [-77.36153358855091, 34.534968146655174], [-77.36163696268153, 34.53492644726617], [-77.36173718678643, 34.534757876546095], [-77.36176980414919, 34.53458635523285], [-77.36188652778003, 34.534491541841625], [-77.36177178720646, 34.53443104474682], [-77.36171240409178, 34.53427179648014], [-77.3616829648222, 34.534256894616334], [-77.3616859364742, 34.53404881162954], [-77.36169643589625, 34.53402927166451], [-77.36173395492986, 34.53397691656031], [-77.36181672030196, 34.53386408468445], [-77.36192951342791, 34.533828892454515], [-77.3620543741288, 34.53383877246419], [-77.36222484336761, 34.5338143113517], [-77.36244961844494, 34.53372043576027], [-77.36252665039295, 34.53366486860634], [-77.36266879527219, 34.533533605866786], [-77.36294160341778, 34.5333602738122], [-77.36324865835877, 34.53310934223859], [-77.36367550466323, 34.53303000354254], [-77.364471840819, 34.53265019526147], [-77.36470172017923, 34.53253589200263], [-77.36483797197297, 34.532269579195145], [-77.36549711492884, 34.53192946292188], [-77.36535153154198, 34.53123852634242], [-77.3657087677422, 34.53051339538595], [-77.36535235931261, 34.53027234604235], [-77.36532342882984, 34.53007925969209], [-77.36512270404658, 34.52996342086798], [-77.36515240393283, 34.52977484283144], [-77.3652686061462, 34.52959750591134], [-77.36530398656105, 34.529351878430035], [-77.36530350773754, 34.52934765257549], [-77.36530613774367, 34.52934178080914], [-77.3652973273462, 34.52934195533077], [-77.36515665191058, 34.52921355537681], [-77.36510421680308, 34.52920404505066], [-77.36500779081364, 34.52914542890528], [-77.36496128276137, 34.529120064652474], [-77.36496820036346, 34.529064304635305], [-77.36502866967709, 34.52902000812159], [-77.36506960590671, 34.52898946738807], [-77.36522778027884, 34.52891832073418], [-77.36530705066987, 34.52891597303014], [-77.36538861552579, 34.52889633477881], [-77.36560937392728, 34.52862944401599], [-77.36567373493912, 34.528559836994866], [-77.36568272669157, 34.52854272520985], [-77.36570892588621, 34.52850583427716], [-77.36592339719449, 34.528279041819644], [-77.36605223271569, 34.528225802744274], [-77.36610889780478, 34.52817894116286], [-77.36632127432969, 34.52797689201237], [-77.36628681753479, 34.52784322886086], [-77.36624695329388, 34.52766399045814], [-77.36612195503957, 34.527606668556245], [-77.36607350882058, 34.52755390557742], [-77.36603617236108, 34.52752831574642], [-77.36604514487857, 34.52747727133924], [-77.36600276612593, 34.52736607050709], [-77.36600686547408, 34.527287711963126], [-77.3659471678742, 34.527181234742585], [-77.36594352765724, 34.52716952648968], [-77.36598965208167, 34.52704536571176], [-77.36587201353423, 34.5269822757578], [-77.36587118181522, 34.526940021199664], [-77.36587068388255, 34.52689565621403], [-77.3658680757258, 34.52687926220945], [-77.36587452351228, 34.52685968056431], [-77.36588561044621, 34.52681552937261], [-77.36594674086187, 34.52668460982706], [-77.36594702510803, 34.52668444303716], [-77.36594703110067, 34.526684093558984], [-77.36588093602185, 34.526571376615536], [-77.36581947999596, 34.52653926603023], [-77.36575413115155, 34.526524990926255], [-77.36567866180309, 34.526553855496246], [-77.36555630275005, 34.5265940556873], [-77.3655348085519, 34.526608036028904], [-77.36553081451083, 34.52662181949141], [-77.3654817157149, 34.5267063813873], [-77.36535352974317, 34.52687972636154], [-77.36534756910923, 34.52688946630151], [-77.36534138783371, 34.52689393609348], [-77.36532678126089, 34.52691226156824], [-77.36520369470729, 34.52703618621394], [-77.36518461724751, 34.52705853433133], [-77.36515262275803, 34.527083596219356], [-77.36506252005034, 34.52717893770111], [-77.36502963518572, 34.52723148068235], [-77.36494969295248, 34.52737602439568], [-77.36490648898382, 34.52741991892453], [-77.36457732671545, 34.52747962304376], [-77.36455485581885, 34.52747800357865], [-77.36451252862913, 34.527476575413445], [-77.36445676249585, 34.52747651848888], [-77.36437555645145, 34.527522729416006], [-77.36436552533398, 34.52752922291778], [-77.3643572988553, 34.52753503578283], [-77.36427736357051, 34.527610503619286], [-77.36415667869043, 34.52772617086342], [-77.36410257729418, 34.5277738132824], [-77.36402007316805, 34.52781876508619], [-77.36391555926139, 34.52793117083868], [-77.36375640636774, 34.52806594682735], [-77.36372407922384, 34.52808635712767], [-77.36370853388787, 34.528108469398965], [-77.36352004830069, 34.52823543603123], [-77.36342139675587, 34.52835467609952], [-77.36339113357263, 34.528399016903], [-77.3633727596318, 34.52841212702076], [-77.36335556279218, 34.528430580240915], [-77.36329133572337, 34.52853580544319], [-77.36327051422131, 34.52861073714415], [-77.36326284392064, 34.528662322231355], [-77.36329767685169, 34.52868971691489], [-77.36334839330746, 34.52874435373745], [-77.3633641847802, 34.52876006333003], [-77.36337778704807, 34.52876817749785], [-77.36344639502545, 34.528818523034346], [-77.36352265181911, 34.52886972236264], [-77.36352713398789, 34.528878096705924], [-77.36353382189043, 34.52898723269846], [-77.36353397018361, 34.52899050463797], [-77.36353387058267, 34.528993689892715], [-77.36353732858423, 34.52906484935486], [-77.36354129793813, 34.529111861754735], [-77.3635483413185, 34.52922412115987], [-77.3635449617767, 34.52923374665686], [-77.36354409929305, 34.529240598465464], [-77.36353595942751, 34.52935745597618], [-77.36350784859198, 34.529471322965385], [-77.36348653088093, 34.52951229672865], [-77.36342592905577, 34.52961813129691], [-77.36339244605253, 34.529663531178336], [-77.36333771897547, 34.529753250531], [-77.36332492698301, 34.5297713657064], [-77.36326863281194, 34.52985164686069], [-77.36314554817432, 34.529903344846964], [-77.36312545641148, 34.52991186251074], [-77.36310262013905, 34.529909528465765], [-77.36298592358737, 34.52989124940953], [-77.36293030261916, 34.529863441991516], [-77.36279349726824, 34.52979552791332], [-77.36257434382092, 34.52974079826028], [-77.36254131263402, 34.52970898563997], [-77.36243683017373, 34.52958274917163], [-77.36234210557012, 34.52952942491977], [-77.3622705001037, 34.529467273586434], [-77.36226376871821, 34.52941829617423], [-77.36220764110409, 34.52939416478844], [-77.36215743622787, 34.5293309284909], [-77.36212909718274, 34.52933292899004], [-77.36212172564359, 34.529316343454255], [-77.362132494439, 34.529298776932066], [-77.3620895477405, 34.52924217554685], [-77.36200149078205, 34.5292112493852], [-77.3619867263725, 34.52919931717842], [-77.3618829699239, 34.529177350301566], [-77.36176724193459, 34.52922930020023], [-77.36158652787006, 34.52939343115071], [-77.36152695969176, 34.52950083819403], [-77.36150806355312, 34.52964955698076], [-77.36175042587006, 34.52996465818488], [-77.36181901145407, 34.53005041823418], [-77.36184143500813, 34.530091190207884], [-77.36183819242899, 34.53014902885259], [-77.36185972464067, 34.53050236417578], [-77.36182350021626, 34.53058342313], [-77.36181568274858, 34.53063480949371], [-77.36185901453013, 34.53074428419766], [-77.36189609898884, 34.53081779119647], [-77.36196010625181, 34.53090914453273], [-77.36198254959545, 34.53096437771167], [-77.36202452612966, 34.53104411817321], [-77.36198766481091, 34.531129666387045], [-77.36196864488747, 34.53120597824528], [-77.36196194189166, 34.53129795726344], [-77.36185403518814, 34.531398573850936], [-77.36180873146216, 34.531506492793085], [-77.36178082316425, 34.53156886943149], [-77.36176503400233, 34.53160363121709], [-77.36171018512682, 34.53172438096953], [-77.36166817496765, 34.53180486495746], [-77.36166183040308, 34.53183083301311], [-77.36164228253678, 34.531873867839415], [-77.36158024741542, 34.53201044504581], [-77.36155597911127, 34.532090903619455], [-77.36152482625825, 34.53220415724838], [-77.36152363639178, 34.53221797432465], [-77.36152655972327, 34.532232687056755], [-77.36149576352905, 34.532344401052335], [-77.36154421337491, 34.53248964476485], [-77.36152022808609, 34.53258570215879], [-77.3614872671382, 34.53271030147734], [-77.36129333900351, 34.53278752873588], [-77.36116154875775, 34.5328001690137], [-77.36104398248176, 34.53289911910519], [-77.36094503902213, 34.53294317961155], [-77.36089593757504, 34.53300026260009], [-77.36077562019685, 34.533109105249686], [-77.36075467643096, 34.533185610283496], [-77.36077785041579, 34.53325232696237], [-77.36073841992072, 34.53343277628478], [-77.36071342139726, 34.53357557508228], [-77.36072417971002, 34.533679651649315], [-77.36066833586425, 34.5338020044643], [-77.36066553046628, 34.53382010439905], [-77.36067338719523, 34.5339317912847], [-77.3605980458581, 34.53401616874214], [-77.36049862083547, 34.53418781993574], [-77.36049606610324, 34.53420215357139], [-77.36048868712287, 34.53421132179423], [-77.36047524753593, 34.53423070654501], [-77.36043541763077, 34.534333300245564], [-77.36041844917301, 34.53442551168693], [-77.36040020307857, 34.5344607838791], [-77.36038153128743, 34.53451782523379], [-77.36035353520043, 34.53464229246466], [-77.36033598824845, 34.5347148562153], [-77.36026725177737, 34.53484570304262], [-77.36026644605343, 34.53484828268676], [-77.36022454271927, 34.53497573046867], [-77.36008041085428, 34.535228501222846], [-77.36008441878303, 34.535240734773446], [-77.36007058928027, 34.53524971438313], [-77.36005885565785, 34.53527284164247], [-77.3600113088217, 34.535373675729645], [-77.35999126593781, 34.53545948388557], [-77.35997794545067, 34.53550089252546], [-77.35991954245293, 34.535591639740446], [-77.35991069550207, 34.53563298952285], [-77.35990378588141, 34.535665284415934], [-77.35990036214318, 34.53575688962515], [-77.35983716730236, 34.535881236573694], [-77.35983035758673, 34.535889383310696], [-77.3597475505326, 34.535961812782105], [-77.35974695768718, 34.5359636450903], [-77.35981885653113, 34.53601345166687], [-77.35984514464285, 34.53603470944207], [-77.3599551531889, 34.53604744396835], [-77.35992960435092, 34.53617458689407], [-77.35994338102866, 34.536240342840024], [-77.35975068591904, 34.536335892987836], [-77.35976231806043, 34.53638883000204], [-77.35973315530634, 34.53645154732355], [-77.35972935160632, 34.53645972751052], [-77.35970131283118, 34.53652002742895], [-77.35968672961191, 34.536553140983244], [-77.35966512727049, 34.53662902651932], [-77.35966005592186, 34.53664838085014], [-77.35965634565093, 34.53666254075482], [-77.35963240700752, 34.536753899913926], [-77.35962517769133, 34.53677155905191], [-77.35962070794847, 34.5367764593291], [-77.35962082658132, 34.536783245667344], [-77.35954317351492, 34.536980024938046], [-77.35950045258438, 34.53703860094758], [-77.35944655359718, 34.53715652568344], [-77.35943996161149, 34.53716972419601], [-77.35943954557658, 34.53717796877553], [-77.35937506077447, 34.53730148215676], [-77.35940895108575, 34.53741145108764], [-77.35922251420479, 34.537511231153836], [-77.35912963305283, 34.53758164878852], [-77.35901426394486, 34.537716133867946], [-77.35888474005273, 34.53786173717853], [-77.35901926115201, 34.53796268106137], [-77.3589979880064, 34.53809025373983], [-77.35901962253358, 34.538203785017394], [-77.35901839748777, 34.5382148867957], [-77.35898773871338, 34.538336553542024], [-77.35898322565149, 34.53847270867356], [-77.35899531517362, 34.538700395745906], [-77.35893501575072, 34.53883379343646], [-77.35879568081532, 34.53900803785024], [-77.35864195206452, 34.539025189538016], [-77.35848354609438, 34.53914362784673], [-77.358509885715, 34.53931370559478], [-77.35846013738673, 34.539391822220615], [-77.35850576110653, 34.53945566081821], [-77.35848308630162, 34.539816740547266], [-77.35843725898434, 34.53988476404572], [-77.35850756049217, 34.53995327881454], [-77.35850259391628, 34.540284728882966], [-77.35841709761976, 34.540377314584525], [-77.3588193343925, 34.54052776389635], [-77.358812238001, 34.54059827570943], [-77.35886697330824, 34.54080218221653], [-77.35889566359496, 34.54088724048189], [-77.35890463223895, 34.540919171472886], [-77.3589137621648, 34.54093905241318], [-77.35891447088007, 34.54102057715996], [-77.35890628463903, 34.54104134545197], [-77.35891149613809, 34.54114331486624], [-77.3589090297533, 34.54118401111427], [-77.35891436305297, 34.54128500602914], [-77.35892319304699, 34.54129398059114], [-77.35892114994631, 34.541396382688156], [-77.35892127946701, 34.54140642202007], [-77.35892146342454, 34.54141597819815], [-77.35892352196358, 34.541521722052515], [-77.35891410131843, 34.54152986755378], [-77.35892287780344, 34.541645593772714], [-77.35891994451643, 34.54165850491844], [-77.3588357003142, 34.541785980667626], [-77.35880507891673, 34.54198681432725], [-77.35880820645023, 34.542034763464336], [-77.35889546819617, 34.54212899732589], [-77.35887794530248, 34.54217304505024], [-77.358869498991, 34.54227076153618], [-77.35891561365558, 34.542342570364646], [-77.35891980025723, 34.542382745794654], [-77.35892006301816, 34.54238589249926], [-77.3589206671588, 34.542389628942864], [-77.3587809834396, 34.54252833101153], [-77.35880714871797, 34.54258276330035], [-77.3588138037114, 34.54276842883961], [-77.35894887661382, 34.542843494954866], [-77.35898767670496, 34.5429189745191], [-77.35898654636918, 34.54298837875734], [-77.35900207539416, 34.54304461086545], [-77.35909512744092, 34.54307535521778], [-77.35916045641596, 34.543166123801335], [-77.35918860047947, 34.54320410760556], [-77.35929386206149, 34.54331632547799], [-77.3593325392319, 34.54342820474734], [-77.35941337536575, 34.54345746744528], [-77.35947770921112, 34.543512322296024], [-77.35954282666657, 34.543600875286444], [-77.35957066951578, 34.54363873847948], [-77.3595998442348, 34.543678412947564], [-77.35958741311568, 34.54370752714388], [-77.35954652107962, 34.543764627832395], [-77.35955620199685, 34.54383213132509], [-77.35953580786735, 34.54388858251963], [-77.359539356514, 34.54393251356336], [-77.35954538305917, 34.544081697951384], [-77.35955260666907, 34.544130987506506], [-77.35956803991415, 34.544185240458916], [-77.35956735463057, 34.544194505464134], [-77.35955942022218, 34.54423040548858], [-77.35955507059901, 34.54425062079179], [-77.35955340603013, 34.54425328443572], [-77.35954884644137, 34.54430968461129], [-77.35954826096824, 34.54432089874559], [-77.35953691828468, 34.544378070596565], [-77.35953381594281, 34.54442655582221], [-77.35953013344479, 34.54450145959193], [-77.35956907097409, 34.544546528323984], [-77.3595698466643, 34.54455694700278], [-77.35957072147994, 34.54456869708221], [-77.35957435517642, 34.54461750378324], [-77.35957757713945, 34.544660780199855], [-77.35957727215437, 34.54467828974225], [-77.35957876191007, 34.54469679368614], [-77.35957927659003, 34.54470860411318], [-77.3595780982214, 34.544720730567356], [-77.35957567732865, 34.544739725392404], [-77.35955096614524, 34.54480160899465], [-77.35955065230476, 34.54480453494224], [-77.35955037713595, 34.54480716733926], [-77.35947578568147, 34.54487652149925], [-77.3594662635884, 34.544890425779634], [-77.35944570747381, 34.544910451940495], [-77.35927111035349, 34.54504384165115], [-77.35924553365885, 34.54507985048339], [-77.3591711575121, 34.54508904864228], [-77.35915858980249, 34.54498909370528], [-77.35915405062164, 34.54492284985923], [-77.3591499965261, 34.5448636852268], [-77.35906262688546, 34.54469403227529], [-77.35906224217295, 34.544691245893766], [-77.35906190204898, 34.544688977268486], [-77.35905821158768, 34.54468784343729], [-77.35904596097922, 34.544685923233665], [-77.35853028329288, 34.54460854910228], [-77.35827539879025, 34.54458437251088], [-77.35792520858234, 34.54485496517847], [-77.35804577063756, 34.54497522176115], [-77.35800708657925, 34.54508800007281], [-77.35799124218482, 34.54516621337212], [-77.35800368803197, 34.5453333129218], [-77.35785967677943, 34.545594125053334], [-77.35785524765991, 34.54559678544218], [-77.35785427274432, 34.545599649818456], [-77.35784351131787, 34.545611038414], [-77.35757313035566, 34.54588495223422], [-77.35752281512892, 34.54593177681565], [-77.3574722475501, 34.54613337403261], [-77.35748201043039, 34.54614289503932], [-77.35745104205019, 34.54629414133858], [-77.35743896801029, 34.546387723332884], [-77.35743849220589, 34.54639398407264], [-77.35743809989366, 34.546400590288386], [-77.35743263869776, 34.546633015749094], [-77.35743248226674, 34.5466396727038], [-77.35743241984082, 34.54664626331497], [-77.35743113228408, 34.54670107290614], [-77.3574416697156, 34.546703197342325], [-77.35751030456277, 34.54670801069648], [-77.35755935230765, 34.546743817868354], [-77.3576087811323, 34.54675417500731], [-77.35773391051885, 34.546779604355905], [-77.35783236058826, 34.546786583878585], [-77.35786038301976, 34.54680514755893], [-77.35791941455808, 34.546814387885576], [-77.35802769673418, 34.54682869389698], [-77.35816120245522, 34.54681887345212], [-77.35822406936907, 34.546825555155294], [-77.35847437856805, 34.54689151499392], [-77.35861545261173, 34.54687875480041], [-77.35866482679586, 34.54692049829391], [-77.35866785706853, 34.54695144746813], [-77.35875696177493, 34.54702900691267], [-77.35879925631471, 34.54706014275412], [-77.35888295923309, 34.54716529891217], [-77.35894019971255, 34.54719485770138], [-77.35899905424074, 34.54727099448933], [-77.35899906116803, 34.54727100172771], [-77.35899907396428, 34.5472710196746], [-77.35905495410233, 34.54734939219557], [-77.35907820998216, 34.547382008741955], [-77.35909364434667, 34.54742742601882], [-77.35909803570694, 34.54743747808371], [-77.35910275582769, 34.54743968033156], [-77.35910324961486, 34.54744586215216], [-77.35911519193233, 34.54749909556998], [-77.35908286061945, 34.547569651175735], [-77.35932330543395, 34.547591540905515], [-77.35910611925385, 34.54769562759999], [-77.35909225001376, 34.54774722279879], [-77.3591095384702, 34.54779084018238], [-77.35914318296182, 34.54786230074606], [-77.35914503806758, 34.54796293248972], [-77.3591375819802, 34.547985519278285], [-77.35912229021177, 34.54802256820824], [-77.35902003577327, 34.54812485656946], [-77.35901302090507, 34.54814707004067], [-77.35899826895974, 34.54825040268314], [-77.35900296116472, 34.54826636028147], [-77.3590089644205, 34.54834970796775], [-77.35900433613517, 34.548371940976274], [-77.35902922798167, 34.54839471768291], [-77.35903187120205, 34.54839857922069], [-77.35902817292794, 34.54840281148845], [-77.35899993264975, 34.54843378097236], [-77.35902211191154, 34.54846044741009], [-77.35902204593253, 34.548461922798275], [-77.35902085249236, 34.54846341521072], [-77.35897513837187, 34.54849855700779], [-77.3589726219456, 34.54849996844651], [-77.3589709038052, 34.548501530370864], [-77.35887652198285, 34.548573962485506], [-77.35887658925685, 34.548577429498685], [-77.35878563433039, 34.54864825502436], [-77.35877095734719, 34.54866059705269], [-77.35872977884162, 34.548754369988146], [-77.35856986304157, 34.54886975971116], [-77.35853961996582, 34.548910219871644], [-77.35852084737756, 34.54893120398696], [-77.35835683408797, 34.54906965711357], [-77.35834955843626, 34.549078278523574], [-77.35828744259524, 34.54913710364882], [-77.35827287080868, 34.549152990617095], [-77.35826885489564, 34.549155767249935], [-77.3582208848557, 34.549219216914835], [-77.35820288044182, 34.549243122542954], [-77.35816760584478, 34.54929094828499], [-77.35811876862101, 34.549356331380615], [-77.35807929064362, 34.54943136137233], [-77.35802862664617, 34.54949172169958], [-77.35800133397562, 34.54951761752605], [-77.35796499755727, 34.549566078874335], [-77.35793113230554, 34.5496076467825], [-77.35788688942263, 34.549634540488356], [-77.35782189923951, 34.549678685638284], [-77.35776502711617, 34.54972599708496], [-77.35772525188965, 34.54975584796004], [-77.3576854330321, 34.549785957115375], [-77.35753585531752, 34.54991206933321], [-77.35736577728017, 34.550015570657344], [-77.35720976747923, 34.550099263541014], [-77.35712349349745, 34.55020817929473], [-77.35696568801909, 34.55034165157392], [-77.35692502668472, 34.55038508089233], [-77.35679172533871, 34.55054350248384], [-77.35656561981429, 34.550666676189515], [-77.35654062899185, 34.55068524442112], [-77.3563098056124, 34.55080576978377], [-77.35625124679089, 34.55084931637386], [-77.35620136184343, 34.550877192796], [-77.35616733856224, 34.550913617521935], [-77.35612338280055, 34.55096343848955], [-77.35609658038507, 34.550993993761224], [-77.35601146785918, 34.55110076575124], [-77.35598915342109, 34.551131870468296], [-77.35598141758894, 34.55114273836272], [-77.355965254064, 34.55116544603271], [-77.35587310017775, 34.55127098876499], [-77.3558248458631, 34.551314931442775], [-77.35576472796336, 34.55134925933295], [-77.35566441509778, 34.551363379298365], [-77.35549012045851, 34.55140044273523], [-77.35537056299219, 34.55141647398068], [-77.35530143425302, 34.551432823067984], [-77.3552718604901, 34.55144030346398], [-77.35519140535888, 34.55147992960757], [-77.35517258979893, 34.55148890177786], [-77.35516715958835, 34.55149167772708], [-77.35514250878371, 34.55151692883071], [-77.35503342432315, 34.551636686708044], [-77.35501317508292, 34.55166512983581], [-77.35497132364502, 34.55170486350477], [-77.3546839629831, 34.55193181379067], [-77.35462863930204, 34.55197477991321], [-77.3545721686922, 34.551989452496684], [-77.35445110318584, 34.55204009895044], [-77.35434610341548, 34.552085683754306], [-77.354174915043, 34.55219107110071], [-77.35412261912145, 34.55222531995397], [-77.35406666360454, 34.55226549323853], [-77.35402468787163, 34.552301858045226], [-77.35397561291845, 34.55232127113235], [-77.35389618045622, 34.552363518640185], [-77.3537903458348, 34.55242767773854], [-77.35378291460397, 34.55243259540643], [-77.3537766671292, 34.552435919237304], [-77.35361688450995, 34.55247599848405], [-77.35357916769696, 34.55248753669783], [-77.35352277017343, 34.55250116337929], [-77.35338148812868, 34.55254698875881], [-77.35330483606377, 34.55257254151705], [-77.35318349268975, 34.552620184592115], [-77.35310286390899, 34.552649042393256], [-77.35301661156996, 34.552680676400165], [-77.352985646431, 34.55268686777668], [-77.35294898258269, 34.55269395098039], [-77.35278827951613, 34.55273266357021], [-77.35263316215998, 34.552742476387664], [-77.3525916905065, 34.552744579087616], [-77.3525651782641, 34.55274298633353], [-77.35251827174403, 34.552733183159226], [-77.35232258169323, 34.55268517802773], [-77.35220139846939, 34.552642770415], [-77.35210052282562, 34.55261183009201], [-77.35196117576494, 34.5525685420395], [-77.35187576695294, 34.55254052251753], [-77.351812105559, 34.55249751512177], [-77.35169268475639, 34.55243768376279], [-77.35161696166855, 34.552373260620556], [-77.35152747912815, 34.55232131909895], [-77.35148684074517, 34.552269577098805], [-77.35142610379918, 34.55220910762168], [-77.35139025738286, 34.55218378138232], [-77.35136535326168, 34.55216465076821], [-77.35123843477263, 34.55205729074618], [-77.3511793508692, 34.55194659851138], [-77.35104324069285, 34.55178427096186], [-77.35100830325544, 34.55174868913429], [-77.35100009386849, 34.55172757544296], [-77.35096523361676, 34.551682492439795], [-77.35092551907769, 34.551615897357124], [-77.35090108768117, 34.551588448885724], [-77.35086518901538, 34.55150961920512], [-77.35086398327164, 34.55150234273262], [-77.35085457547787, 34.55145158296789], [-77.35084607158132, 34.5513887136779], [-77.35084211178861, 34.55138307974344], [-77.35084041432778, 34.55137337271348], [-77.35082115009081, 34.551263685676176], [-77.35079161272132, 34.551101243246094], [-77.35077736640616, 34.55102516559885], [-77.35076666643019, 34.55096607060162], [-77.35074517126586, 34.55090738845025], [-77.35067192818988, 34.5508572152152], [-77.35063177722313, 34.55082676974538], [-77.35058051856292, 34.550808673819745], [-77.35051910990973, 34.550791335769404], [-77.35047728531246, 34.55078465900493], [-77.3504578049033, 34.55077738020498], [-77.35042783062981, 34.5507694424407], [-77.35040972133116, 34.55075342102171], [-77.350403429581, 34.55074235143216], [-77.35038879556414, 34.550718939633235], [-77.35038816042568, 34.55071394621605], [-77.35038137756749, 34.55068690752614], [-77.35037876876203, 34.550656160118415], [-77.35037258914272, 34.55064895761791], [-77.35036022246501, 34.55059555623724], [-77.35035114936011, 34.55055637722982], [-77.35028865812026, 34.55045052086846], [-77.35026508540457, 34.55038013473709], [-77.35023431037357, 34.550368855423415], [-77.35011127873871, 34.550273415234116], [-77.35010079910998, 34.550263076944205], [-77.35009699912382, 34.55024827662979], [-77.35007388939678, 34.55016275745166], [-77.35006897125142, 34.55014782854945], [-77.35006144126356, 34.550124971466374], [-77.35004972055555, 34.550089393666994], [-77.3500420652967, 34.5500661563482], [-77.35004009522277, 34.550060176232655], [-77.35003432178544, 34.5500496786058], [-77.3500258378865, 34.550031625378864], [-77.35000422715571, 34.550014232020274], [-77.34996049937527, 34.55000719086492], [-77.34996707153398, 34.5499788772135], [-77.3499596549604, 34.5499512478017], [-77.34995913530372, 34.549947883088386], [-77.34995018233198, 34.54992010247604], [-77.34994350144967, 34.54989937207661], [-77.3499142220656, 34.549804947105386], [-77.34991361856099, 34.5498029538677], [-77.34991112438891, 34.54979459340209], [-77.34988857546219, 34.54969957080271], [-77.34988120200104, 34.54968520840518], [-77.34985587504264, 34.54965236181767], [-77.3497972059699, 34.54952734350451], [-77.34971517097786, 34.54946428067865], [-77.34964569120027, 34.54940062329866], [-77.3495312879387, 34.54923902606945], [-77.34942527704098, 34.54908467565197], [-77.34936167014844, 34.549025509975635], [-77.34909875583944, 34.548787148623546], [-77.34898615909276, 34.54858990617737], [-77.34895365032384, 34.548476084429296], [-77.34876462337913, 34.548432348212856], [-77.34856677778636, 34.54828608460835], [-77.34850740075805, 34.54816915898215], [-77.34840129845465, 34.54792857449485], [-77.34799503056678, 34.547753493935005], [-77.34799491188936, 34.54775334093013], [-77.34799486088686, 34.5477532720682], [-77.34799467037004, 34.54775306876877], [-77.34780835146881, 34.547411783543964], [-77.34775407689843, 34.54729827838149], [-77.347429531814, 34.54698125717047], [-77.34736319934767, 34.54686488263078], [-77.3472901617025, 34.54683843231463], [-77.34723233902093, 34.54677557153092], [-77.34703564754179, 34.546548291698315], [-77.34699749551034, 34.54642786339455], [-77.34680503976764, 34.54624006467085], [-77.34646455192636, 34.54601955932215], [-77.3464622133798, 34.54601674292814], [-77.34646042541384, 34.54601550144002], [-77.34644037308415, 34.546003072169476], [-77.34631710063535, 34.545885183185845], [-77.34622286609682, 34.54580486243954], [-77.34617717497586, 34.54574969888874], [-77.34622847723301, 34.54555923472109], [-77.34598112845246, 34.54541532495333], [-77.34569365312876, 34.54539912813171], [-77.3456896281506, 34.545394522200525], [-77.34568784037484, 34.54539220328357], [-77.34568086099125, 34.545385027732074], [-77.34565532115107, 34.54529980352214], [-77.34565082719215, 34.54527511881109], [-77.3456382005535, 34.54519208173947], [-77.3456319206572, 34.54515542912229], [-77.3454501220232, 34.54502433402548], [-77.3453826287456, 34.54490274566236], [-77.34531538533142, 34.54477764045464], [-77.34530374333484, 34.54472108052193], [-77.34528496074866, 34.544715709768795], [-77.34526861795503, 34.54468760260755], [-77.34519773217691, 34.54455993840615], [-77.34512148025652, 34.544494410993366], [-77.34493655204525, 34.54427758840838], [-77.34493664547901, 34.54427618473651], [-77.34493674417573, 34.5442747019993], [-77.34493443537802, 34.544272701373835], [-77.34493081019784, 34.54427479372827], [-77.3447284912335, 34.544190915513106], [-77.34466459904345, 34.54414522242559], [-77.34464362198551, 34.54407352352905], [-77.34459367238092, 34.54405156977883], [-77.34454718686524, 34.54404101196845], [-77.34449734945038, 34.54397215832611], [-77.34449863420042, 34.54388212666055], [-77.3444896969184, 34.543850849529406], [-77.34449230343665, 34.54364556874007], [-77.34444344376743, 34.54361268455289], [-77.34427293107817, 34.543570195857], [-77.34422065965794, 34.5435223270275], [-77.34416735793556, 34.54348783531988], [-77.3440696439078, 34.54348305010286], [-77.34406924988566, 34.54348295115297], [-77.3440691338348, 34.54348280183186], [-77.34406450528665, 34.54342238313019], [-77.34405371259201, 34.54335109897306], [-77.34403586816539, 34.54326686054432], [-77.34399272447715, 34.54318789067952], [-77.34400520008715, 34.543048716725295], [-77.34379771609149, 34.542971126916086], [-77.34378682211847, 34.54296551298559], [-77.34366389455322, 34.542824251275846], [-77.34363457197053, 34.542749778614855], [-77.34359683941776, 34.54269207309765], [-77.34357547661052, 34.542649801184965], [-77.34355550608234, 34.54261181292823], [-77.3436347976803, 34.54250492680949], [-77.3435978273038, 34.54239154507256], [-77.34340883873527, 34.54233281994355], [-77.34331442846386, 34.5423061975306], [-77.34328631975664, 34.54223239179693], [-77.34325372905572, 34.54216919415112], [-77.34321678876438, 34.542149051571826], [-77.34316651709382, 34.54217407740879], [-77.34307693213172, 34.54218228299074], [-77.34310921312802, 34.54214618440905], [-77.34319048277395, 34.542079209760175], [-77.34321940610405, 34.542035670509236], [-77.34330446813766, 34.5419928308133], [-77.3433301895952, 34.54187000041066], [-77.3433567138987, 34.5418104759824], [-77.34327584962837, 34.54166976808196], [-77.34328872384617, 34.54157543815134], [-77.34328657008363, 34.54148732899824], [-77.34324250874758, 34.54133726773276], [-77.34329103575645, 34.54124110802059], [-77.34327744515525, 34.54118587164198], [-77.34323922712287, 34.54117704262113], [-77.34317173802245, 34.54114517629341], [-77.3431418949747, 34.541141844216], [-77.34310787896054, 34.541133155237034], [-77.34309312358994, 34.541128807852985], [-77.34308756338544, 34.541114739822554], [-77.3430928022638, 34.54108422599339], [-77.3430903253105, 34.54108131123187], [-77.34309246641595, 34.541052829685114], [-77.34307084536526, 34.54104050223314], [-77.34305940454892, 34.541004161323215], [-77.34307041556193, 34.54099479723066], [-77.34305983635836, 34.540988495442065], [-77.34304759954983, 34.540975115025326], [-77.34303526800181, 34.54093864890524], [-77.34302908104193, 34.54089109242329], [-77.3430048483171, 34.54088182038232], [-77.34298717830583, 34.54084480640849], [-77.3429626880191, 34.540699980429764], [-77.34281479162354, 34.54066434318806], [-77.34275757918851, 34.54061381935105], [-77.34266653993348, 34.54047630211159], [-77.34260278087758, 34.54048959442689], [-77.34261027528154, 34.54044894616461], [-77.34258800401645, 34.540259430915], [-77.3425855305045, 34.54020768685372], [-77.34260165526632, 34.54016035374339], [-77.34250243656798, 34.53997482192828], [-77.34254952789746, 34.539886583354715], [-77.34251286757062, 34.53983359220225], [-77.34241942696303, 34.539741944778385], [-77.34238607879996, 34.53968817630038], [-77.3423783234967, 34.539554848309365], [-77.34238367700507, 34.53950226890809], [-77.34236733809222, 34.539461012573156], [-77.34236231889362, 34.53929866101191], [-77.34234373203826, 34.53926319659181], [-77.3423426169355, 34.53923837371922], [-77.34233287915964, 34.5390359336324], [-77.34234156372241, 34.53901868965141], [-77.34232774479315, 34.53900828326922], [-77.34230831671495, 34.53898895563074], [-77.34216940642126, 34.538886738560905], [-77.3420635561396, 34.53881386444776], [-77.34216917570734, 34.53870784814029], [-77.34217741371539, 34.5386393380121], [-77.34219855866755, 34.5385496244757], [-77.34217842351975, 34.53846395290597], [-77.34217207249733, 34.538431025449555], [-77.34216057333215, 34.53841073719417], [-77.3421778723511, 34.53833948614667], [-77.34220903592947, 34.53830329851491], [-77.34223607832925, 34.53824362176434], [-77.34225780179975, 34.53817387367406], [-77.34228918418466, 34.53807208796988], [-77.34230095715472, 34.53804525594209], [-77.342303461533, 34.53802802650007], [-77.3423313490282, 34.53799174598992], [-77.34233561060658, 34.5379815772081], [-77.34233845821026, 34.53797865632848], [-77.34238113377972, 34.53794163829511], [-77.34242717401997, 34.537904688860046], [-77.34243158160292, 34.53790118659804], [-77.34249891613001, 34.53787477535637], [-77.34253086392312, 34.53785176410743], [-77.34262167784146, 34.53782052159248], [-77.34272843303643, 34.53779601423919], [-77.34276288407216, 34.53775487580718], [-77.34278277710578, 34.53773112119708], [-77.34292947477418, 34.53758985567064], [-77.34293099498538, 34.53758831416438], [-77.34293218909463, 34.537587216498025], [-77.3429370884912, 34.537581878251004], [-77.34305846943468, 34.53744663932528], [-77.34309389831152, 34.53741921759843], [-77.34313060348192, 34.53737988733508], [-77.34317350858129, 34.53733377303891], [-77.34320926763428, 34.537302534777744], [-77.3432609508157, 34.537252140935294], [-77.34333143382591, 34.537182799845496], [-77.34338814847047, 34.537154389673894], [-77.34344279021919, 34.537092262509056], [-77.34353156941086, 34.53701576979423], [-77.34353645129566, 34.53701064358592], [-77.34364192208409, 34.536940801755584], [-77.34376105263303, 34.536855919721646], [-77.34385431632069, 34.53679579690906], [-77.34393054086235, 34.5367379227872], [-77.34405784599188, 34.53664647718039], [-77.34421568995072, 34.53654568889999], [-77.34426219542019, 34.53649755634368], [-77.34433060567163, 34.53641257290592], [-77.34466279782201, 34.53627614838753], [-77.3447268931796, 34.53625082627675], [-77.34475504572181, 34.53624067802889], [-77.34476640129586, 34.53622163265429], [-77.34478283406271, 34.53618532260203], [-77.34498702919069, 34.53594506799007], [-77.34493332722627, 34.53583067518198], [-77.34493325918096, 34.53583015499186], [-77.3449328830735, 34.53582977495778], [-77.34489416779297, 34.53571360983202], [-77.3449053579394, 34.53560991902759], [-77.34491511799679, 34.53557341829186], [-77.34498727676427, 34.535455392986236], [-77.3450231367274, 34.53537760653079], [-77.34502521075947, 34.53532752506943], [-77.34505706110993, 34.53525378291689], [-77.34508158497874, 34.53519700364964], [-77.34509820362962, 34.535165754709034], [-77.34514649171183, 34.53507831245755], [-77.34515216666928, 34.53506782647528], [-77.34515442388431, 34.535064113245795], [-77.3452131828621, 34.53497333151104], [-77.34521641396547, 34.53493278368326], [-77.34523416838297, 34.53487842320846], [-77.34525836531259, 34.534804337455284], [-77.34527795411024, 34.534756468288336], [-77.34528677304121, 34.53473904496969], [-77.34534504456276, 34.53467385202648], [-77.3453492965569, 34.53466884352577], [-77.34535227752137, 34.5346659062482], [-77.34546148361699, 34.5345974142453], [-77.34555196088283, 34.53451805193218], [-77.34567412313946, 34.53445253046392], [-77.34575069205525, 34.534411462794225], [-77.3457955116963, 34.534387423769765], [-77.3459088202735, 34.53436792813886], [-77.34594826804755, 34.53435495609118], [-77.345983588627, 34.53435477928156], [-77.34598209348731, 34.534332968507115], [-77.34610075377404, 34.53428761659224], [-77.34614794227411, 34.53420741798867], [-77.34618085765067, 34.53420241342128], [-77.34618142994212, 34.534181874595006], [-77.34616961154451, 34.534170590179656], [-77.34620624525158, 34.53409057586387], [-77.3462026218979, 34.534056415092564], [-77.34620435436369, 34.53402362545317], [-77.34615302701533, 34.53398684849623], [-77.34612821669589, 34.533960563294], [-77.34611504385502, 34.53394660733724], [-77.34595996027386, 34.53384781412305], [-77.34577527326715, 34.533995499008896], [-77.34576611613184, 34.53400052687689], [-77.34576751824432, 34.53405781990911], [-77.34581281285583, 34.534078551507996], [-77.34581268245073, 34.53408529236307], [-77.34581287746511, 34.5341124979504], [-77.3458341600826, 34.53412273567872], [-77.34583407472694, 34.53412675463893], [-77.34583396622506, 34.534140065882], [-77.34584020803338, 34.53414526468457], [-77.34584023696989, 34.53414681417752], [-77.34584144440078, 34.53414739240568], [-77.3458413174923, 34.53415356698756], [-77.34584131557374, 34.53415430959582], [-77.34584189841101, 34.53415459103173], [-77.34584186453829, 34.53415614325857], [-77.34584192455017, 34.534156456795024], [-77.3458418965862, 34.534157729999045], [-77.34584051819235, 34.53415824964695], [-77.345839323865, 34.53415864693565], [-77.34583847979869, 34.53415854296153], [-77.34583692830809, 34.53415835184518], [-77.34583626579052, 34.53415827023467], [-77.34583461577498, 34.53415806698173], [-77.34583264234941, 34.53415782389036], [-77.34583015062395, 34.53415747422706], [-77.34582841506915, 34.53415725153417], [-77.34582429770506, 34.534156758380284], [-77.34581797172201, 34.53415365158865], [-77.3458151339068, 34.53415221687963], [-77.34580584295958, 34.53414765439484], [-77.34580284680364, 34.53414643003311], [-77.34578844948672, 34.53414661549907], [-77.3457571682077, 34.53413059260332], [-77.34574729494805, 34.534128128041125], [-77.34566962806099, 34.53413985240047], [-77.34566105023232, 34.53419338814066], [-77.34566365251956, 34.53419517552314], [-77.34575489192494, 34.53422931473292], [-77.34576492867276, 34.53423545948194], [-77.34577332418893, 34.53424059942073], [-77.34585177063174, 34.53428386363617], [-77.34585659667421, 34.53428677028591], [-77.34586119957652, 34.534289159615426], [-77.34591020699212, 34.53431905889023], [-77.3457965155836, 34.53433223276869], [-77.34575257691966, 34.534329716328706], [-77.34566157357425, 34.53431366656707], [-77.34569469164977, 34.534251914139105], [-77.34564857642717, 34.53420282686391], [-77.34565033416253, 34.53419709194603], [-77.34562931983908, 34.534182329176744], [-77.34561710756722, 34.534166301597416], [-77.34560925838201, 34.53416118271031], [-77.34559307677401, 34.53414412591534], [-77.34557361337407, 34.534138875710866], [-77.34556074948284, 34.53413692975008], [-77.34555646473935, 34.534134092880755], [-77.34554902937576, 34.53412730940401], [-77.34554254729953, 34.534120794252246], [-77.3455517140375, 34.53409510935941], [-77.34552643970642, 34.53409250952953], [-77.34553809160184, 34.534075822962485], [-77.3455626062591, 34.53405640982719], [-77.34558636371557, 34.53403722289083], [-77.34560827181778, 34.5340195294999], [-77.34566260470258, 34.5339756492507], [-77.34570428871885, 34.53397043050028], [-77.34576202132669, 34.53392011360798], [-77.34592414820388, 34.533851666601706], [-77.34595285936237, 34.533843037847475], [-77.3459552589381, 34.533608739654916], [-77.345956270793, 34.53360222428822], [-77.34595172429289, 34.533370064640664], [-77.3459532685224, 34.533357836284615], [-77.34595495804764, 34.53334727610092], [-77.34594796541386, 34.53311377936127], [-77.34590086640156, 34.532925849422945], [-77.3459046835487, 34.53287518743316], [-77.34587191057011, 34.532810066309594], [-77.3458495073483, 34.53276071719444], [-77.34584905779596, 34.53272370374166], [-77.34568649157019, 34.532719806606224], [-77.34559364855842, 34.53271025326829], [-77.3455760110172, 34.53268896853314], [-77.34555298144585, 34.532680975998424], [-77.34548259278753, 34.532638983331424], [-77.34539886195066, 34.53264596369906], [-77.3453949224294, 34.532644985839525], [-77.34538713220299, 34.532643635717484], [-77.34535036347914, 34.5326213001847], [-77.34534633365236, 34.53262141553857], [-77.34532778487518, 34.532621572891806], [-77.34533973544018, 34.53261310690089], [-77.34535078370423, 34.532603079441884], [-77.34536242673605, 34.53258598569966], [-77.34538082238794, 34.53257100958059], [-77.34540097785838, 34.53255421670277], [-77.34545107099217, 34.532512025413226], [-77.34547458858285, 34.53249245800977], [-77.34554001360569, 34.532438022096954], [-77.34556876031988, 34.53241410385945], [-77.34558325811324, 34.53220078720416], [-77.3455791083903, 34.53218757664943], [-77.34552080162831, 34.532142365270865], [-77.34535748849842, 34.53197464652443], [-77.34534307398562, 34.53189983706365], [-77.34522049064206, 34.531869983534925], [-77.34513611606224, 34.53181509384099], [-77.34502572236957, 34.53180499589321], [-77.34500670849489, 34.53178030139082], [-77.34501237454576, 34.531667380967185], [-77.34500607322693, 34.531643403113165], [-77.34507228830978, 34.53152604512825], [-77.34508259248068, 34.53143225942674], [-77.34503412363668, 34.53116822812105], [-77.3449880017171, 34.531048533340126], [-77.34476884450089, 34.53088627033475], [-77.34472102734378, 34.53084212918106], [-77.34460994959598, 34.53076515917547], [-77.34457815852153, 34.5306899089541], [-77.34463005271064, 34.53061039979863], [-77.34454099715114, 34.53057598877655], [-77.34446931695312, 34.530401000550484], [-77.3444656033299, 34.53039169286506], [-77.34446497124775, 34.530389333680716], [-77.3444663305398, 34.53038707505938], [-77.34444113271759, 34.53027035394584], [-77.34444033135117, 34.530169469880555], [-77.34443087053054, 34.530149420751634], [-77.34442417473963, 34.53011815833514], [-77.34444468598537, 34.529924828571005], [-77.344445924369, 34.529902435067086], [-77.34434182330148, 34.529761318520265], [-77.34425749709334, 34.52968472778212], [-77.34419486135116, 34.52963117922694], [-77.34409638573598, 34.529551891312025], [-77.34402973613521, 34.52951478392434], [-77.34398420017018, 34.52947923194522], [-77.3438814399338, 34.529385654299254], [-77.34382830543063, 34.52933128368812], [-77.34377850199675, 34.529264009310516], [-77.34377186291141, 34.52922722592181], [-77.34371159353825, 34.529216943367715], [-77.34360478729421, 34.52911230699878], [-77.34355552396823, 34.52905127258719], [-77.34347243317339, 34.52897111452629], [-77.3434524125619, 34.528943698890025], [-77.34340027322395, 34.52887450646674], [-77.34337044447062, 34.52883308290481], [-77.34336327642596, 34.52881236891092], [-77.34332940310628, 34.5287694430925], [-77.34325451711393, 34.528653322706724], [-77.34320620192624, 34.52861189477491], [-77.34311290162215, 34.52851913884773], [-77.34309303205798, 34.52850576807269], [-77.34294421114251, 34.528452094072186], [-77.34289459866005, 34.52844298378535], [-77.34277290628783, 34.52842941739814], [-77.34275526002551, 34.52842774857182], [-77.34274852980894, 34.52842705484973], [-77.34273621393098, 34.52842701441076], [-77.34259052726118, 34.52843172851849], [-77.34255213735436, 34.52843280632031], [-77.34246212837388, 34.52841777427374], [-77.34245217933527, 34.52841574329138], [-77.34244653235007, 34.52841516963723], [-77.34235726526785, 34.52837274057472], [-77.34235513203127, 34.528368506467416], [-77.34235234442386, 34.52836751599442], [-77.34234549540064, 34.528360991069], [-77.34225134414585, 34.52825963762244], [-77.34222326134454, 34.528226949119706], [-77.34217976929685, 34.52815610725864], [-77.34217540372958, 34.52814815387068], [-77.34217817393797, 34.52814039528641], [-77.34216669131426, 34.528126644110316], [-77.34213373204284, 34.52805335299377], [-77.34210846053591, 34.52803537553081], [-77.34204097005245, 34.527964332349754], [-77.34201169866228, 34.527904352353744], [-77.34201036487585, 34.52780466966048], [-77.34203814980259, 34.52771456077973], [-77.34210280684381, 34.52759407126587], [-77.34206014276839, 34.52755268920217], [-77.34209017893679, 34.52749149331419], [-77.34218215796253, 34.527457182351604], [-77.34220295986078, 34.52740973249619], [-77.34218441440251, 34.527359514364065], [-77.34210728960863, 34.527349338138016], [-77.34199273048387, 34.52731756896691], [-77.34200602971916, 34.52718461893027], [-77.34179524327303, 34.527214834467216], [-77.34172150798315, 34.52715857208956], [-77.34164972368865, 34.527122098411844], [-77.34168497059221, 34.52694487887623], [-77.34160608534918, 34.52688355779981], [-77.34141534508505, 34.52666900259359], [-77.34141483602905, 34.52666660586082], [-77.34141501713587, 34.526666227744535], [-77.34141495019571, 34.526665947023595], [-77.34141543790098, 34.52666498679211], [-77.34141828293146, 34.52666575789555], [-77.34189940355628, 34.526782620353], [-77.34209768908771, 34.52681283063182], [-77.3421962893513, 34.52684551888276], [-77.34226509556345, 34.52683145885831], [-77.3423919996021, 34.526869140923424], [-77.34256116145033, 34.526746148890666], [-77.34255160082937, 34.52672254998062], [-77.34259331312086, 34.52665018595554], [-77.34267029279017, 34.52648562823196], [-77.34274758173368, 34.52632117024949], [-77.3429932425326, 34.52632895082667], [-77.3430896395666, 34.52623930802211], [-77.34317829219788, 34.52616771800357], [-77.34318752622444, 34.52603856796319], [-77.3433934867183, 34.525993948236334], [-77.34354979477833, 34.52586944536137], [-77.34355912793, 34.52572269246408], [-77.34379351053464, 34.52566835165879], [-77.3438557661043, 34.5256187169203], [-77.34390968697963, 34.52557284202201], [-77.34399358167173, 34.52550293622246], [-77.3440316508491, 34.525455951572894], [-77.34419386209713, 34.525328418263854], [-77.34427198728535, 34.52527589065218], [-77.34436247380998, 34.525120223043736], [-77.34459263836098, 34.52505661033992], [-77.34474060769065, 34.52496363883621], [-77.34480510575057, 34.52483892954652], [-77.34499193365829, 34.52476219015323], [-77.34507290759545, 34.52472091457747], [-77.34522167854641, 34.52464959324426], [-77.34527238569117, 34.52456963588364], [-77.34539176374854, 34.52444446094281], [-77.3455736480737, 34.52421951715338], [-77.34568567383442, 34.5240931821533], [-77.3461948145783, 34.523661545589775], [-77.34632409878441, 34.52359129780586], [-77.34704405760425, 34.523408051464536], [-77.34758887526112, 34.52321347014976], [-77.34777588959989, 34.52318007149785], [-77.34803694685814, 34.52310341580916], [-77.3493615579836, 34.5224981963716], [-77.34986303805755, 34.52233347144677], [-77.35057896978435, 34.52214494837532], [-77.35094210642025, 34.522037737091665], [-77.35113706277727, 34.52196012986322], [-77.35189695980753, 34.521730239984684], [-77.35235459905456, 34.521559282339894], [-77.35278826019457, 34.52143822548072], [-77.35410632651686, 34.52097833640587], [-77.35468269868367, 34.520705501651015], [-77.35538580977632, 34.520437549480896], [-77.35569142361511, 34.52031704214227], [-77.35584768536005, 34.52027906020862], [-77.3563193770089, 34.52011420451548], [-77.35704983162844, 34.51987070115364], [-77.3572736861912, 34.51977823353394], [-77.35779995395484, 34.5195756009648], [-77.3588564053293, 34.519218539359336], [-77.35929818264503, 34.518978065986516], [-77.3601546465673, 34.518582561985426], [-77.36044392783255, 34.518447995261155], [-77.36136052010595, 34.51799487768578], [-77.36202934563991, 34.51776814690085], [-77.36361130182108, 34.517105330013], [-77.36361324522704, 34.51710434868877], [-77.36361437831233, 34.517103963573675], [-77.36361738881459, 34.51710259454902], [-77.36520061649011, 34.51638582124064], [-77.36576886978051, 34.51616653969013], [-77.36678622799337, 34.515693894157515], [-77.36681617643377, 34.51568279039075], [-77.36686705082028, 34.51565693436739], [-77.36786659323828, 34.51520054487507], [-77.36837302283095, 34.514948846819095], [-77.36958479060456, 34.51428597765985], [-77.36978357524634, 34.51414658525457], [-77.3699625278324, 34.514083510628915], [-77.37023280596593, 34.51402480453171], [-77.37105315943454, 34.51377099260042], [-77.37154269647239, 34.51362692688037], [-77.37229543120026, 34.51338209826994], [-77.37312696498809, 34.51298921567136], [-77.37370204315344, 34.51271321062967], [-77.37437053336888, 34.51240506336741], [-77.37588418118146, 34.51167639557086], [-77.37630038788066, 34.51149519726146], [-77.37645868491542, 34.51143436901195], [-77.37666522584718, 34.51130669220841], [-77.37788950420995, 34.51064020836392], [-77.37838575326133, 34.51038528541824], [-77.37935379666968, 34.51001430926672], [-77.37947406204438, 34.509984861842824], [-77.37956066853464, 34.50996359311621], [-77.3808603690693, 34.50983889775374], [-77.38104697057169, 34.509842771450366], [-77.38131309233681, 34.50982288040677], [-77.38263435869703, 34.50906045073941], [-77.38294613995193, 34.508630721446096], [-77.38334443183284, 34.508384814668155], [-77.38422984567995, 34.50791853512436], [-77.38492082017424, 34.507604776121994], [-77.38581550634942, 34.50720964811024], [-77.3870968823098, 34.50667680116491], [-77.3881984054452, 34.506211849879435], [-77.38898462974016, 34.50588557174753], [-77.38926761124175, 34.50574621919389], [-77.38996806129674, 34.505470540704934], [-77.39056941127305, 34.50521201774066], [-77.3916401983052, 34.504913817516616], [-77.39215148959345, 34.50465733330592], [-77.3932684028505, 34.503719294283044], [-77.39374799270217, 34.5034604502148], [-77.3942159652739, 34.50318695769458], [-77.39526917872702, 34.50278640529019], [-77.3953330595016, 34.502770280787246], [-77.39535746881914, 34.50274895909185], [-77.39540431865808, 34.50272726431225], [-77.39691957761447, 34.502014269238494], [-77.39749532165574, 34.50180233794461], [-77.39850403442968, 34.50134877587314], [-77.3985606790041, 34.50132729271765], [-77.39870106159242, 34.50127197882855], [-77.39969207875546, 34.50088436134263], [-77.4012059880128, 34.500219443784445], [-77.40167252550577, 34.500033092752865], [-77.4019044103997, 34.49997394692386], [-77.40215557521627, 34.49979380719688], [-77.40325840387663, 34.49930054576707], [-77.40403983364814, 34.499026109780566], [-77.40484040931403, 34.49873986084375], [-77.40625710205161, 34.498118071555886], [-77.40701765177076, 34.49774677539531], [-77.40801227787185, 34.49726353118505], [-77.4083242162225, 34.49713699091144], [-77.40890637012538, 34.49685998642481], [-77.41045505980885, 34.4961868856647], [-77.41098166380685, 34.495852571127244], [-77.41160902848313, 34.49555964768362], [-77.41191440240527, 34.495220442910934], [-77.41212911544474, 34.49512284743536], [-77.41276160402869, 34.49493172273357], [-77.41313839991155, 34.49460753205391], [-77.41331100779601, 34.49451940251335], [-77.41382413199102, 34.49426001078318], [-77.41436371820993, 34.4939946781588], [-77.4144969432195, 34.49393082753152], [-77.41497085348357, 34.493629232998614], [-77.4154511292018, 34.49337475847594], [-77.41566134070153, 34.49326337795998], [-77.4161545229122, 34.49301642411607], [-77.41693266749452, 34.492774982029474], [-77.41757896795673, 34.49252069300985], [-77.41809080559474, 34.49229752341401], [-77.41891198365299, 34.49198049766115], [-77.4196049878722, 34.49156053087151], [-77.41995226452131, 34.49129794989282], [-77.42044998119397, 34.49107431509192], [-77.42119584485566, 34.49071426800813], [-77.42215465463283, 34.490339760590864], [-77.42250681909144, 34.49016333950662], [-77.42284808619767, 34.48999394104101], [-77.42375664199818, 34.48958268360912], [-77.4243095103905, 34.48909877331398], [-77.4246755494722, 34.488841118721844], [-77.42519105735997, 34.48871179207485], [-77.42602812962606, 34.48831042163329], [-77.4269897658203, 34.48788458729804], [-77.42730486621815, 34.48774283796871], [-77.42758552705988, 34.48761850392876], [-77.4283556511852, 34.48727879326425], [-77.42856735815133, 34.48716832499071], [-77.42877354542429, 34.487038173232015], [-77.42912775235905, 34.486846622388796], [-77.4293990422936, 34.48665651945303], [-77.42962233489543, 34.48649292033399], [-77.42991222800698, 34.486277198241176], [-77.430642578037, 34.485800629616556], [-77.43105505503203, 34.48553147669918], [-77.43116435512854, 34.48546015443762], [-77.43130160912784, 34.48540254917519], [-77.43181967263465, 34.485184593661764], [-77.4322783604684, 34.48508053826233], [-77.4334245330986, 34.48477651203086], [-77.43419927364943, 34.484508209267716], [-77.43475884843757, 34.48430284117149], [-77.43483614316423, 34.484274472493645], [-77.43491722567266, 34.48423594061302], [-77.43595245837784, 34.483743283308144], [-77.43610239693604, 34.48370176526026], [-77.43715093276352, 34.48320158359924], [-77.43744968454857, 34.483168444647625], [-77.43788643938953, 34.483036275345164], [-77.43963960029568, 34.48245411789789], [-77.44043928281008, 34.48224518163201], [-77.44120680736071, 34.4818544444635], [-77.44205956780044, 34.48145528983606], [-77.44267072198748, 34.48095339819721], [-77.44297649112534, 34.48059355242284], [-77.44314766662671, 34.4805097788587], [-77.44367331705789, 34.48025251903477], [-77.44423296398308, 34.479982024811655], [-77.4443362045403, 34.47993199440654], [-77.4450959443351, 34.47975578699591], [-77.44594952000016, 34.47939390748661], [-77.44638249020562, 34.479192912143574], [-77.44672732927668, 34.47882799740558], [-77.44683833558847, 34.478763640854986], [-77.44755700171747, 34.47857558180287], [-77.44839076000179, 34.47816713692155], [-77.44880199750567, 34.47799250595024], [-77.44913770688052, 34.47779465358368], [-77.44966635371776, 34.477556538091164], [-77.45007167431825, 34.47742142199348], [-77.4511161961404, 34.47695478615102], [-77.45133648840437, 34.476847971064466], [-77.45152845001022, 34.476689641231275], [-77.45218780827362, 34.47633378349356], [-77.45243648607095, 34.4761944194576], [-77.45271190973985, 34.47609361994167], [-77.45350745228309, 34.47572538601415], [-77.4537438891541, 34.47564165826811], [-77.45391747924334, 34.47557855044193], [-77.45504437572731, 34.47508553340982], [-77.45610111660721, 34.474631800826025], [-77.4563281501909, 34.47454683861378], [-77.45636042365926, 34.474536965651716], [-77.45638906709881, 34.47452087418331], [-77.45796147801673, 34.47412687277677], [-77.45871452296048, 34.473426411675845], [-77.45882170543905, 34.47335680986091], [-77.45890689193216, 34.47329781342671], [-77.45986813751172, 34.472721513686146], [-77.45989788968056, 34.47269167513709], [-77.45990464726357, 34.47267299727318], [-77.46104836922281, 34.47211404222194], [-77.46109949448473, 34.47208748249224], [-77.46115372064783, 34.47206094115233], [-77.4622373747466, 34.47153871744202], [-77.46233303511445, 34.471498804347675], [-77.46342497260238, 34.47095829322771], [-77.46357831785413, 34.470915828862076], [-77.4636751930732, 34.470837980226], [-77.46461511154018, 34.47038721666347], [-77.46477303139883, 34.47030828081103], [-77.46494410083122, 34.47022689774422], [-77.46578359952748, 34.46973700409633], [-77.46592502714643, 34.469679973874506], [-77.46609339000324, 34.46960973171055], [-77.46698068053364, 34.46919141867256], [-77.46721418869824, 34.46911830786285], [-77.46731847996205, 34.468996403570934], [-77.46813604340147, 34.46849331730975], [-77.46824658846, 34.46843189164124], [-77.46838796713561, 34.46837516881768], [-77.46934366127908, 34.46798636638539], [-77.46958091356197, 34.46789216238576], [-77.46982722096249, 34.46777268654589], [-77.47055837569457, 34.46750540975481], [-77.47089745711718, 34.4673437926655], [-77.47132733303475, 34.467173276928385], [-77.4717565354356, 34.46696396270566], [-77.47227512219135, 34.466825107862135], [-77.4729519242816, 34.46641242697504], [-77.47281109611711, 34.46589751342328], [-77.47266929858209, 34.465379035986345], [-77.4718845633395, 34.46585051456592], [-77.47116464874541, 34.46628560260933], [-77.47033435807126, 34.46668623478088], [-77.4691833290037, 34.467064497446046], [-77.46840259140836, 34.46731966459266], [-77.4678717351701, 34.46752671440272], [-77.46665451906695, 34.468287181320775], [-77.46614749540888, 34.46860002724516], [-77.46555005195026, 34.46888282026365], [-77.46440366498612, 34.46952393431697], [-77.46384199011239, 34.46985589141178], [-77.46320567069264, 34.47015614116481], [-77.4619852520929, 34.47075214042179], [-77.46139332642159, 34.47104218596162], [-77.46082829107715, 34.47130897518334], [-77.45933460104146, 34.47196850388561], [-77.4588689838006, 34.47219169389404], [-77.458443530451, 34.47243500920436], [-77.45683949598956, 34.47319272456504], [-77.45656485035398, 34.47344819216476], [-77.45606228965065, 34.47357411956817], [-77.45522353226018, 34.47398448010574], [-77.45425959583137, 34.47441258916984], [-77.45394106567402, 34.474549356388806], [-77.45366876625769, 34.47466848734005], [-77.45256619444609, 34.47506932191845], [-77.4524438318285, 34.475112653341874], [-77.4512860808856, 34.475612383955216], [-77.45126022806748, 34.47562276903111], [-77.45123995761678, 34.475633924353545], [-77.45019967795903, 34.476232628100625], [-77.45015172605228, 34.47627217880851], [-77.4489692553369, 34.47684553399374], [-77.44892625936943, 34.476864742265974], [-77.44888717616186, 34.47687777089192], [-77.44839920212851, 34.47709052630792], [-77.44763244754556, 34.47742408451999], [-77.44648029945787, 34.47792383805975], [-77.44629208265873, 34.47796079206494], [-77.44619711230187, 34.478055461193755], [-77.44510044687492, 34.47856979034955], [-77.4440951955547, 34.47904978835459], [-77.44386770551614, 34.479158803835254], [-77.44357321996844, 34.47927288497831], [-77.44261053657927, 34.479735940677685], [-77.44170956351142, 34.48017400347429], [-77.44125078023391, 34.48026320193564], [-77.43929486714958, 34.481191995453685], [-77.43879554889558, 34.48144618704268], [-77.43837537454002, 34.48171012005398], [-77.43616780268736, 34.4825452957902], [-77.43579706842291, 34.48292973546383], [-77.43515399781653, 34.48324072654128], [-77.43459456971765, 34.48354394702647], [-77.43455655776272, 34.483562089306815], [-77.43391895627398, 34.483828596754186], [-77.43278010705171, 34.484126912279784], [-77.43237610480145, 34.48426682353129], [-77.43207777511064, 34.48434595650764], [-77.43107794634214, 34.484572772163546], [-77.43071054138998, 34.484645382180226], [-77.4296225053658, 34.48521607941706], [-77.42946416220883, 34.48530876304789], [-77.42912239872837, 34.485594002109806], [-77.42858931345413, 34.48599069408496], [-77.42850452067363, 34.48605281895642], [-77.42781511380839, 34.48657565309535], [-77.42761201509302, 34.48670385526135], [-77.42737025755264, 34.48683000386471], [-77.42705283319413, 34.48702614635494], [-77.42667739397116, 34.487193096944445], [-77.42641407963012, 34.48730974640506], [-77.42532521813527, 34.4877995756394], [-77.42514320823736, 34.487880173753695], [-77.42498477468564, 34.487956141561], [-77.423580161193, 34.48830852017174], [-77.4225828080095, 34.48901055621257], [-77.42258178743728, 34.489011449490995], [-77.42258011028078, 34.48901220865524], [-77.42137234892371, 34.48961171829732], [-77.4202097480118, 34.49019413741545], [-77.42017116760746, 34.49021603316122], [-77.42012915925366, 34.49023623960046], [-77.41890240067443, 34.49078744860286], [-77.41798921343953, 34.49147792289328], [-77.4179398889214, 34.491507813994886], [-77.41788144164083, 34.4915303782767], [-77.41710069814872, 34.491870795230525], [-77.41663580422191, 34.492062067550876], [-77.41660431155232, 34.49208264644242], [-77.41545959673725, 34.49252407680747], [-77.41526087033817, 34.49258186170407], [-77.41509752010441, 34.49268111607263], [-77.41410592877452, 34.49320863288174], [-77.41308530658776, 34.49369223119056], [-77.41265592905714, 34.49390728628691], [-77.41167862248548, 34.49440506510487], [-77.41070628578188, 34.494843254190165], [-77.41008718093838, 34.495126903483154], [-77.40930133402372, 34.495625798381006], [-77.40803657276271, 34.49617549647433], [-77.40716179585837, 34.49657165792189], [-77.40556513746928, 34.497342659747346], [-77.40511480691337, 34.49756250863058], [-77.40486428302168, 34.49767246406981], [-77.40430117188188, 34.49787380664358], [-77.40283910029574, 34.4984421038655], [-77.40169668351834, 34.498954788073775], [-77.40047667320245, 34.499279490039214], [-77.39852730142864, 34.50031196417397], [-77.39851399033388, 34.50031964450855], [-77.39641202681949, 34.501275392998345], [-77.39571733749699, 34.501702735960976], [-77.3953530515965, 34.501880880932454], [-77.39424730384432, 34.50220892064469], [-77.39377214766533, 34.50238674541979], [-77.39245728237526, 34.50298532187054], [-77.39218671662519, 34.50309275862542], [-77.3920850251494, 34.5031436275377], [-77.39193315132702, 34.503228281123306], [-77.39018846330478, 34.50420758533653], [-77.38901018132262, 34.50475260362197], [-77.388059284319, 34.50515837241877], [-77.38590314821579, 34.506019147772925], [-77.38584184546647, 34.50604368276387], [-77.38581648459363, 34.50605387441509], [-77.38576554438288, 34.50607690246445], [-77.3836973888539, 34.50700954072977], [-77.3826686664347, 34.50754424063302], [-77.38173980433541, 34.50804378381826], [-77.37951629647807, 34.50892556669716], [-77.3794979355804, 34.50893152323916], [-77.379489740224, 34.5089357139537], [-77.37947239328666, 34.50894326914613], [-77.37723931768477, 34.50982744617656], [-77.37632689837787, 34.51032743717144], [-77.37531712097052, 34.51087888461496], [-77.37384826231863, 34.51171281247505], [-77.37339567694741, 34.51193068639688], [-77.37314844365834, 34.51204465105846], [-77.37243525679358, 34.512456733527436], [-77.372154541098, 34.512569587363004], [-77.37156237502158, 34.512762235494954], [-77.37123640871626, 34.51286674951804], [-77.37077157445488, 34.51302244479385], [-77.37023782323902, 34.513055413650584], [-77.36998560253666, 34.51307042288951], [-77.36966169422186, 34.51309384521454], [-77.36907361076538, 34.513380338305254], [-77.36857220380031, 34.51355706699816], [-77.36840202863809, 34.513676397772244], [-77.36785222425695, 34.514200116255964], [-77.36681474484277, 34.51468178046228], [-77.3668092684502, 34.51468396347602], [-77.36680655751717, 34.51468466436471], [-77.36680264740501, 34.51468690896052], [-77.36464474859031, 34.51561944778526], [-77.36383183455794, 34.51609425494315], [-77.36363541023721, 34.51618357882216], [-77.36250841671811, 34.516566623432404], [-77.36205154837265, 34.516797319428385], [-77.36081803592167, 34.517290853747106], [-77.36046813644475, 34.51739032426411], [-77.36029579179336, 34.51747665534604], [-77.36002554774768, 34.517621858384544], [-77.35888163056795, 34.51811734910661], [-77.35802044524527, 34.51835613932229], [-77.35729786523083, 34.518723575177106], [-77.35606677458597, 34.51917128703159], [-77.35579481480646, 34.5192598135543], [-77.35571524824591, 34.51927868925799], [-77.35553862889554, 34.51935640000311], [-77.35413465522373, 34.51974468934123], [-77.35319396573713, 34.519980803951604], [-77.35097030338576, 34.52081182216075], [-77.34976873723603, 34.52105730992899], [-77.34795622498261, 34.52140518743484], [-77.34781582995922, 34.52144641240317], [-77.34763169715674, 34.5214792964452], [-77.3462418615478, 34.52162107540927], [-77.34615274319567, 34.52163318008798], [-77.34468242714819, 34.521798464445276], [-77.34466778776164, 34.52179994873182], [-77.34465555233184, 34.52180084078906], [-77.34393530883091, 34.5219315021978], [-77.34387826776674, 34.521996811802765], [-77.34328190258634, 34.52199088166594], [-77.34311036154607, 34.52200480108386], [-77.34309302383878, 34.522008342225746], [-77.34298000497193, 34.52196317336642], [-77.34223595194265, 34.52170113564252], [-77.34203719937518, 34.52150412448523], [-77.34171650784461, 34.521236837328665], [-77.34154467447318, 34.521073503710355], [-77.34089700017694, 34.52078364494202], [-77.34031435395174, 34.52045929092207], [-77.3401665107482, 34.520371071737955], [-77.33999027864955, 34.52040150102774], [-77.3398258145132, 34.520427360358674], [-77.33968327542101, 34.5205500806408], [-77.3391940830061, 34.52088680990155], [-77.33893421899258, 34.5208208833322], [-77.33874542199753, 34.520894890780326], [-77.33865329579018, 34.521033455286165], [-77.33879941977307, 34.52116686458373], [-77.33839534832447, 34.52148138104169], [-77.33830499288362, 34.52167404611636], [-77.33813280687592, 34.52175239211249], [-77.33799171442135, 34.52196273507832], [-77.33797878605378, 34.52201201264031], [-77.33792102953322, 34.52207021039722], [-77.33765953905404, 34.52231010381494], [-77.33762235881136, 34.522335263788875], [-77.33758938380615, 34.52238761856833], [-77.337368484331, 34.52259678640671], [-77.33727600772977, 34.522663421752846], [-77.33682695219642, 34.522898051172106], [-77.33679253845604, 34.52289952539797], [-77.33675102452266, 34.52290459521227], [-77.33650310932063, 34.52296607264216], [-77.33537396107431, 34.52322765576809], [-77.3352136500038, 34.523283696769276], [-77.33484642346433, 34.52343125845886], [-77.33267540963185, 34.52390081058648], [-77.33205187600248, 34.524222061226105], [-77.33075028631009, 34.52495060254745], [-77.33045309851774, 34.52545966322314], [-77.33009185461128, 34.525846548556], [-77.32932488991747, 34.52624376225373], [-77.32885754154401, 34.526556766866264], [-77.32855249424665, 34.52686127386714], [-77.32824383353206, 34.52709148633723], [-77.32778477067168, 34.52748105664617], [-77.32725680027886, 34.527874712152524], [-77.32663714492836, 34.528301701876785], [-77.32653579706484, 34.52886015126646], [-77.32630377148, 34.529328876930805], [-77.32637199282766, 34.529774069727665], [-77.32637416607243, 34.529808389359175], [-77.32563556439695, 34.53007005997464], [-77.32544616193883, 34.53006004496072], [-77.32524421161958, 34.53001948218656], [-77.32506694916646, 34.53013217286047], [-77.32506563823135, 34.530347876989396], [-77.32514910065125, 34.53047409590331], [-77.32523531748068, 34.53070214191465], [-77.32525679672513, 34.53094824478116], [-77.32560958395877, 34.53118509764677], [-77.32567547761263, 34.5313344313079], [-77.32568403891709, 34.53137646690988], [-77.32570185165584, 34.53143508385091], [-77.32579666809238, 34.53172537708136], [-77.32592958142982, 34.531830803226605], [-77.32598599809816, 34.53187719120898], [-77.32611690588098, 34.53196576314977], [-77.3263756614492, 34.53200069303338], [-77.32645538813354, 34.53195104044765], [-77.32641517946358, 34.532005821477746], [-77.3263742547977, 34.53206108911263], [-77.32626761822856, 34.532207465548446], [-77.32621240269086, 34.532279780816985], [-77.3260893393174, 34.5326174874444], [-77.32556896584246, 34.53292837632097], [-77.32494528528457, 34.53305401611532], [-77.32457729749231, 34.53313030998339], [-77.3239913970684, 34.53324522730557], [-77.32363746113678, 34.533410777633264], [-77.32240169135588, 34.534081567714054], [-77.32031368093465, 34.535085951877875], [-77.31964004517307, 34.535438733137596], [-77.31922333666748, 34.53570479818546], [-77.31659860714826, 34.53757815966001], [-77.31627854799027, 34.537776418580904], [-77.31603191831928, 34.537880538609166], [-77.31460713047322, 34.53874013541939], [-77.3128465800635, 34.53978975767614], [-77.31253125079824, 34.53992617599442], [-77.31216246586726, 34.54017377552478], [-77.3096649151583, 34.54153619914271], [-77.30879181587792, 34.542079747365506], [-77.30794687297282, 34.54273753471141], [-77.30712204516774, 34.54325394529395], [-77.30647349128364, 34.54369164216638], [-77.30526868728793, 34.54433868766609], [-77.30362332152842, 34.54531662465727], [-77.30342215599163, 34.54542678004707], [-77.30329007488913, 34.54550008724784], [-77.3016402117625, 34.54654630523982], [-77.30009685692407, 34.54771784934345], [-77.29994963425419, 34.54780228010791], [-77.29798117444507, 34.54873902949626], [-77.29691164497255, 34.549589577790016], [-77.29594594454551, 34.550335132202235], [-77.29494512227996, 34.55123529487734], [-77.29371841608396, 34.55179374085011], [-77.29292395933436, 34.552238278952444], [-77.29142559853996, 34.55294192969524], [-77.29089529590944, 34.55323760347977], [-77.29053501790028, 34.553576041730906], [-77.28990362398261, 34.553777128426944], [-77.2881009850636, 34.55484471088988], [-77.28724425778466, 34.55538666089792], [-77.2856700158921, 34.55662264885321], [-77.28537332715543, 34.55685646037497], [-77.28393424787384, 34.55800029052963], [-77.28336049341729, 34.55841008285957], [-77.28101518134014, 34.559745556476145], [-77.28064011439385, 34.55993879181848], [-77.28029291345219, 34.56013794395984], [-77.27832840779925, 34.561364232675686], [-77.27747844493999, 34.56188563041813], [-77.27734343620708, 34.56197731926841], [-77.27487951821068, 34.56365019655958], [-77.27446582505338, 34.56394925692592], [-77.27351609725926, 34.56465510371273], [-77.27282714519505, 34.565120511528676], [-77.27237793925887, 34.56533890629844], [-77.27094543271959, 34.566075632337714], [-77.27079350002728, 34.566278074076756], [-77.27021124657853, 34.56705390386205], [-77.26974705589767, 34.567638537702685], [-77.26945561800139, 34.56793716932759], [-77.26887468001277, 34.56846669783819], [-77.26840647363937, 34.5687973444753], [-77.268235385184, 34.56892282480541], [-77.2678158001312, 34.56926125296327], [-77.26648478577532, 34.56999461817046], [-77.26570130079153, 34.57046993070012], [-77.26473212547153, 34.57106459851852], [-77.26393556700847, 34.57178670319178], [-77.26343870470056, 34.572177303412346], [-77.26320711226049, 34.57233708384936], [-77.26254248967705, 34.57302177146149], [-77.26250878618019, 34.57304682476234], [-77.26249975465123, 34.57305937541723], [-77.26170562816468, 34.57363052276064], [-77.26119888185318, 34.57388643356644], [-77.26005291324861, 34.574610842269706], [-77.25992829421052, 34.574678614781334], [-77.25960332499842, 34.57487907999366], [-77.25843595402424, 34.57555435533477], [-77.2581869687205, 34.57575875070912], [-77.25757607168036, 34.57617449592243], [-77.2564456504364, 34.57683890264234], [-77.25583733175077, 34.577235161892844], [-77.25300617565479, 34.5788193376009], [-77.2528783841449, 34.57888756360169], [-77.25285307271665, 34.57890149094977], [-77.25281049000293, 34.57892937726726], [-77.25038444886454, 34.58057651631623], [-77.24965151555064, 34.5813119834947], [-77.24873696594244, 34.58188745740684], [-77.24816253292444, 34.582286880017655], [-77.24796298538683, 34.58243919731122], [-77.24759022682888, 34.582581890065875], [-77.24590487107193, 34.58323761452287], [-77.24434843864861, 34.58387169030189], [-77.24179025863884, 34.58483592762475], [-77.24078987556834, 34.58547661554188], [-77.24015860772809, 34.586013820615555], [-77.23932419800235, 34.58688067136482], [-77.23905009698603, 34.587224856494], [-77.23882480717073, 34.587456724678724], [-77.23842615932644, 34.58736216199276], [-77.23620739698882, 34.58804719470353], [-77.23414871080298, 34.588555523083656], [-77.23303603338559, 34.589234047522666], [-77.23107068721337, 34.59036625868343], [-77.23062356891256, 34.590678445324635], [-77.22973772054168, 34.59120039145514], [-77.22972441866213, 34.591202738703814], [-77.22843081077878, 34.59135712368762], [-77.22692652215682, 34.591520161364855], [-77.22615894546051, 34.59160723714035], [-77.2258237571049, 34.591667113902965], [-77.22542185283466, 34.59180580641274], [-77.22471100778981, 34.59199187559966], [-77.22442674180824, 34.59245542832339], [-77.22434470475267, 34.5926634772635], [-77.22423976650033, 34.59288753128569], [-77.2239433495581, 34.59357450072174], [-77.22338755083379, 34.59475918502628], [-77.22271804967889, 34.59603350034492], [-77.22217442120228, 34.59720568042295], [-77.2216038750148, 34.59843208225836], [-77.22112524238558, 34.59956817489196], [-77.22070335682571, 34.60086043720935], [-77.2199740576738, 34.60224201031318], [-77.21885264328897, 34.60335704077623], [-77.21792052232843, 34.60441150637559], [-77.2175057189568, 34.60530581131603], [-77.21534769961788, 34.60629121855285], [-77.21188256414564, 34.607705283801586], [-77.2099967112868, 34.609144645235325], [-77.20952306262356, 34.60940426411146], [-77.20928906447357, 34.609872236164875], [-77.20861619517596, 34.611218011907965], [-77.20793832153996, 34.61257365638042], [-77.20461460167341, 34.614156082274086], [-77.20407261950865, 34.614394271431124], [-77.2016976523925, 34.61444176438076], [-77.19809058554077, 34.61433118197635], [-77.19773907159434, 34.61440739984629], [-77.19731713726459, 34.614347786332544], [-77.1923593731234, 34.61449107224456], [-77.19089698893734, 34.61459223502261], [-77.18905913017427, 34.615326662944724], [-77.18826640712592, 34.61610928710029], [-77.18707928356329, 34.61705530016262], [-77.18624842259918, 34.61957485096955], [-77.18426864691747, 34.62060364302073], [-77.18052998324984, 34.62172646812293], [-77.17755165962575, 34.62235678860806], [-77.17683553727622, 34.62235677973872], [-77.1748514962257, 34.622741848402825], [-77.17313291022201, 34.623002943277875], [-77.17161026629942, 34.62337085930407], [-77.16764229531375, 34.6240587373062], [-77.1687305631317, 34.62502790680826], [-77.17105521127934, 34.6270979965303], [-77.17570485551602, 34.6312380279716]], [[-77.43510740076182, 34.75496010219714], [-77.43510282199468, 34.754944204230334], [-77.43508043709991, 34.75487781934233], [-77.43513557967549, 34.754919420179824], [-77.43513889327478, 34.754946966530504], [-77.43578808594091, 34.754676181976464], [-77.43578160371533, 34.7546222944531], [-77.43573649330204, 34.754453837240405], [-77.4355477937356, 34.75398157899298], [-77.43558961177374, 34.75386616588257], [-77.43552637709665, 34.753569320755915], [-77.43549002971885, 34.75346130278641], [-77.43552044882308, 34.75341299016996], [-77.43552450528276, 34.753359945941774], [-77.43552913144094, 34.75313650518716], [-77.43558737060836, 34.75297429947093], [-77.4356259739194, 34.75289081885178], [-77.43565526957292, 34.752825807615295], [-77.43580899590677, 34.752592924084766], [-77.43588182063668, 34.752448104954055], [-77.43589550237584, 34.75242594243075], [-77.43597598533103, 34.75236579849338], [-77.4361312988162, 34.752228799711915], [-77.43618675118556, 34.752198409019975], [-77.43625745485322, 34.7521513594594], [-77.43646213756801, 34.75206485960055], [-77.43651819391985, 34.75199201263081], [-77.43664767273381, 34.7519110002338], [-77.43670522981454, 34.75187026556375], [-77.43684043143313, 34.75177058523652], [-77.43698965062167, 34.75169010879925], [-77.43718400679751, 34.75158400686805], [-77.4374181277462, 34.75146473872224], [-77.43754184913873, 34.75142072943809], [-77.4376466678961, 34.75136059896367], [-77.43778261646776, 34.751313252706154], [-77.43791970456705, 34.7512901363026], [-77.43812823122684, 34.75122697422586], [-77.43830284047463, 34.75116816746517], [-77.43849699089577, 34.75109861458556], [-77.43867326697381, 34.75102544428188], [-77.4387894650435, 34.750921270296445], [-77.43887089774373, 34.75087667411157], [-77.4389992375165, 34.75081012401544], [-77.43914371686031, 34.75076550589969], [-77.43923319508701, 34.75073273684957], [-77.43938608092901, 34.75069421255882], [-77.43962563330341, 34.75048464183827], [-77.43970738811774, 34.75047127970383], [-77.43972682759417, 34.750410173198915], [-77.43991409425666, 34.75027660814921], [-77.44020093139429, 34.75001676150663], [-77.44028724248034, 34.74992293255816], [-77.44044155902645, 34.74988112864534], [-77.44080253869298, 34.749667888744455], [-77.44096878180795, 34.74954064689172], [-77.44121631072478, 34.7492534024271], [-77.44124221611598, 34.74923955049491], [-77.4412846932312, 34.74918354261474], [-77.44151306728916, 34.748934235836565], [-77.44169656075212, 34.74864016159903], [-77.44178484007192, 34.748333952885524], [-77.44172853656588, 34.74779088232822], [-77.44173791985745, 34.74773008137257], [-77.44171147426727, 34.74770864792171], [-77.4416230863381, 34.74761868136018], [-77.44146909084746, 34.747438245920385], [-77.44139524339869, 34.74742663509885], [-77.44114827799794, 34.747438888724304], [-77.44055247398161, 34.747331826805585], [-77.44053783516607, 34.74733241231379], [-77.4405318113678, 34.74733182265415], [-77.44051148378472, 34.747330121751126], [-77.44021903047947, 34.74732611413174], [-77.44006573558018, 34.747318315976074], [-77.44005210862707, 34.7473173706955], [-77.44005985519026, 34.74730871282432], [-77.4400530698611, 34.74716998348035], [-77.44007161999924, 34.74708602598336], [-77.44009731267866, 34.74704568255393], [-77.44009119425472, 34.746986076118944], [-77.44010721276621, 34.74690938448675], [-77.4400499147643, 34.746802539238786], [-77.43993158414233, 34.74669803851335], [-77.43991252158298, 34.74669428689325], [-77.43976568215112, 34.7466767777846], [-77.43966706597256, 34.74666725002032], [-77.43960631462316, 34.74673440201014], [-77.43953660665159, 34.746828015043775], [-77.43949901093812, 34.74687850329576], [-77.43945883052689, 34.74696239350756], [-77.43946946885464, 34.747092191491525], [-77.43936203630571, 34.74720809315856], [-77.43927800137077, 34.747254051326905], [-77.43907754804424, 34.74719978307865], [-77.43886584727403, 34.747142647993485], [-77.43889361443456, 34.746899395414246], [-77.43893733344282, 34.74678021184983], [-77.4388937457687, 34.74668460231592], [-77.43905917145332, 34.746422124176554], [-77.43912650812953, 34.74628727077004], [-77.43925275522503, 34.74608842193852], [-77.43926477269144, 34.74605605897651], [-77.43907925535684, 34.74572494753422], [-77.43907052001985, 34.745718040706976], [-77.43903463923006, 34.74569614777167], [-77.43906881065644, 34.74569021850089], [-77.43910100806187, 34.745649778987556], [-77.4393345031168, 34.74537648775495], [-77.43935643216037, 34.745249537594994], [-77.43940048877934, 34.74513397317393], [-77.43946639158966, 34.74500843813517], [-77.43953565029565, 34.744957349614744], [-77.43960851115094, 34.74477857339012], [-77.43961118629932, 34.744599663003186], [-77.43962155777925, 34.74450361780276], [-77.43962279917832, 34.74435203570585], [-77.4396275532269, 34.744226198358945], [-77.43962413521902, 34.74414785220479], [-77.43962132386399, 34.743851746993585], [-77.43960929958475, 34.74370763362495], [-77.4396160482255, 34.743663151558806], [-77.43963509709158, 34.74362447869444], [-77.43966494263015, 34.743400719194966], [-77.43967731118947, 34.74331960123706], [-77.43969003464245, 34.74322754244509], [-77.43969667661986, 34.743132291797764], [-77.43970725342444, 34.74299468136555], [-77.43972748298688, 34.74276551022126], [-77.4397366864305, 34.742587241887534], [-77.43976473962775, 34.742340926504035], [-77.43977086795168, 34.74230100132338], [-77.4396873086566, 34.74201096309598], [-77.43963887314646, 34.74157519528872], [-77.43959745151058, 34.74148053585001], [-77.43960757721794, 34.74142407994216], [-77.43962230975542, 34.74136066415507], [-77.43971227408304, 34.74098622214197], [-77.43974244602683, 34.74091217040689], [-77.43976533124572, 34.740846608104675], [-77.43992212207607, 34.74045226155978], [-77.43994431844075, 34.74042367025582], [-77.43995372545142, 34.740406659397166], [-77.44001425417743, 34.74027793425953], [-77.44015477487783, 34.739987382182086], [-77.44019069802268, 34.73995071974762], [-77.44019340848828, 34.739892665906524], [-77.4403021590929, 34.73948045953158], [-77.44034335346448, 34.73944502570586], [-77.44034546263536, 34.73938281554445], [-77.44047465810782, 34.739014558067936], [-77.44052672462968, 34.73895006316698], [-77.44055721741596, 34.73840176512037], [-77.44055722246885, 34.73840169204642], [-77.44055722528117, 34.73840164231258], [-77.44070668252871, 34.73789488285224], [-77.44070779014297, 34.737892411124875], [-77.44086672982027, 34.737412017750046], [-77.44088244741535, 34.73739726421409], [-77.44089247037465, 34.73736894453437], [-77.44087549447339, 34.73730147463255], [-77.44090618875971, 34.73691681023551], [-77.44083930679382, 34.7368231656945], [-77.44069535760275, 34.73655836772005], [-77.44050722317004, 34.7363582921261], [-77.44021016848278, 34.73631440071394], [-77.44019356583684, 34.7363125413448], [-77.44017173570889, 34.73631041588465], [-77.43989534430057, 34.73625705917996], [-77.43966739004284, 34.73620076511767], [-77.43959680553444, 34.73618086640128], [-77.43951317614726, 34.73615880379268], [-77.43930875284329, 34.736068434969596], [-77.43913112363964, 34.73607250292098], [-77.43899216682854, 34.73605461443516], [-77.43872478837851, 34.736041336632724], [-77.43867630887536, 34.736038276803264], [-77.43865084402888, 34.73603568468103], [-77.43857386796462, 34.7360316455343], [-77.43819065589271, 34.73603168101257], [-77.43803311846017, 34.73604525193864], [-77.43754318888384, 34.73608791904355], [-77.43738199033162, 34.73607965331312], [-77.43732023315634, 34.73610526595417], [-77.4372646303353, 34.736133220912826], [-77.43697808273939, 34.73629406835132], [-77.43694215374849, 34.73633867787837], [-77.4367693776483, 34.73651920793388], [-77.43690109062655, 34.73691599414711], [-77.43667324786892, 34.73704465550186], [-77.43650962128142, 34.73702424365467], [-77.4364518449968, 34.737078192501386], [-77.43620570516423, 34.73727550609396], [-77.43613889956744, 34.73741698257626], [-77.43608074469026, 34.737590860003095], [-77.43598478680752, 34.73792217120983], [-77.43588230335124, 34.738242647355335], [-77.43588933119985, 34.73844785615784], [-77.43588052324634, 34.73856719185005], [-77.43585431567888, 34.73871514083332], [-77.43586521981034, 34.73896244784063], [-77.4358595022218, 34.738996472491394], [-77.43586419534694, 34.73902040410233], [-77.43586510375127, 34.739105609862634], [-77.43587921642187, 34.739460537822346], [-77.43589154407432, 34.73956670670525], [-77.43590305817798, 34.73977195704275], [-77.43590733723694, 34.73985174452572], [-77.43590999293218, 34.739894098984614], [-77.4359488470664, 34.74014576720102], [-77.43590841380473, 34.74034115823898], [-77.43591568246018, 34.740540279508025], [-77.43591173327519, 34.740691837777334], [-77.43589423931913, 34.74079347201558], [-77.43576963276419, 34.74104942453218], [-77.43571872113091, 34.74118343696186], [-77.43555875858053, 34.741271876258054], [-77.43547183584926, 34.74131070917636], [-77.43530386053526, 34.741318001534744], [-77.43521531720805, 34.741350766557495], [-77.4350773903231, 34.74123887064314], [-77.43499280641238, 34.74116952368318], [-77.4348430298812, 34.741031318661875], [-77.43469925132372, 34.74091835616119], [-77.43465223358702, 34.74086520009822], [-77.43459533792306, 34.740790913940515], [-77.43422284375819, 34.74034894193569], [-77.43412010319392, 34.74019438965564], [-77.43396441791498, 34.74001141344596], [-77.43374635000444, 34.73977984679372], [-77.43334519664273, 34.73979503826682], [-77.4331550646422, 34.73976952047069], [-77.43309912879815, 34.73980061653244], [-77.43294597121593, 34.73979139356136], [-77.43288929775309, 34.73963573019377], [-77.43272239699417, 34.739438263685464], [-77.43277483660779, 34.7391484009955], [-77.43276376539227, 34.73903281762117], [-77.43275541649508, 34.73897809560083], [-77.4327580425478, 34.738763743797705], [-77.43277695341384, 34.7385227173468], [-77.43271313358312, 34.738456077290614], [-77.43263167495026, 34.73813692628791], [-77.43244818790816, 34.73761900010999], [-77.43224016396191, 34.73740746008186], [-77.43216423356799, 34.73714616624518], [-77.43200972558864, 34.73691860668421], [-77.43185954906895, 34.73667345051132], [-77.43184373627598, 34.73647511510261], [-77.4316786308183, 34.73586209964151], [-77.43167743112255, 34.73585794709738], [-77.43167696438152, 34.73585683285814], [-77.43167662302491, 34.73585424346116], [-77.43136037890453, 34.735188094564194], [-77.43131691678177, 34.73511424555224], [-77.43126298765543, 34.735068130859304], [-77.43114078614062, 34.734983422924], [-77.43070068073573, 34.73479565601441], [-77.43012555266881, 34.73482036937377], [-77.42949467992467, 34.73509511309924], [-77.42997032986803, 34.73567596898383], [-77.4299926245007, 34.73582819616671], [-77.430279332655, 34.7362512501675], [-77.43037735722807, 34.73639895986915], [-77.43067956899948, 34.736627324418855], [-77.43060927894528, 34.737106226184636], [-77.43061061376345, 34.737162279459085], [-77.43056225150275, 34.737214611837565], [-77.43044993377781, 34.737665177437385], [-77.43082195213131, 34.738806842893446], [-77.43087518991602, 34.73886963375588], [-77.43091556230836, 34.73894600589114], [-77.43167903066687, 34.740276236051], [-77.4316835173963, 34.74031801752895], [-77.43169531575808, 34.74033659663835], [-77.4322002278539, 34.740690866434164], [-77.43263549225634, 34.740665134102095], [-77.4327455181863, 34.740596006992625], [-77.4328479436005, 34.740668418887886], [-77.43293124270176, 34.740690327023366], [-77.43312720326561, 34.74081127291679], [-77.43314474486378, 34.74084308488626], [-77.43308753159968, 34.7410715264976], [-77.4333159809384, 34.74126673133196], [-77.43336823030384, 34.741400829001975], [-77.43377140419975, 34.741621100717595], [-77.43384307221712, 34.741661040489824], [-77.43406276666568, 34.74200389582737], [-77.4340666208957, 34.74200627094817], [-77.4343376267557, 34.74216777748395], [-77.43457415186704, 34.74223696666559], [-77.43469697836373, 34.74228819029218], [-77.43496801974926, 34.74220520407066], [-77.43513173188836, 34.74245076581357], [-77.43528617576271, 34.74250286963027], [-77.43548829358866, 34.742623107260705], [-77.43580914939403, 34.74261457140814], [-77.43581253966794, 34.74261491214433], [-77.4361145467544, 34.74267484465694], [-77.43649963091693, 34.74277292328927], [-77.43688825973175, 34.742876535085486], [-77.43721844822018, 34.742825504808465], [-77.4373172581264, 34.74282953869697], [-77.43735337403875, 34.74282558324311], [-77.43749773008608, 34.7428029408516], [-77.43773359221089, 34.742761856058024], [-77.43801120633606, 34.742768195874824], [-77.43820340449159, 34.74278151686547], [-77.43832403240219, 34.74279510045034], [-77.43851729858874, 34.74282399286991], [-77.43862880976309, 34.742849817416136], [-77.43876079798457, 34.74294560935501], [-77.43883748509472, 34.74311163817878], [-77.43885350799523, 34.74313013434851], [-77.43885815486787, 34.74316520160189], [-77.43887096616245, 34.74340285016897], [-77.43888500885188, 34.74356339888221], [-77.4388591644371, 34.743678241946895], [-77.43884370860448, 34.74380383266759], [-77.43884165360994, 34.743811881884355], [-77.43884076926045, 34.7438224826878], [-77.43882887000831, 34.74394717312409], [-77.43883293303186, 34.74403153148043], [-77.43882653815399, 34.74417306721931], [-77.43882211210685, 34.74422432714963], [-77.4388147173763, 34.744262334258686], [-77.4387847410453, 34.74447863126359], [-77.4387787552952, 34.744488694916384], [-77.43878177691245, 34.744499280065206], [-77.43877642099963, 34.744555559997586], [-77.43876225351983, 34.744730628303586], [-77.4387608329537, 34.744761948486385], [-77.43875300084851, 34.74480062041083], [-77.43866799959166, 34.744993153131674], [-77.43866130934137, 34.74500669407958], [-77.43865622747089, 34.74501639859594], [-77.4386267929576, 34.74507260746746], [-77.4385362238616, 34.74524250950516], [-77.43844282342832, 34.745415525966834], [-77.43840613992519, 34.745476578802304], [-77.43840384426287, 34.74554976048334], [-77.43841342926518, 34.745758640726635], [-77.43841378886665, 34.74576881491721], [-77.43840248704738, 34.74584769704205], [-77.43838784246502, 34.74600284215474], [-77.43838006518442, 34.746026500005506], [-77.43836650596177, 34.74603854440041], [-77.43834148263642, 34.74605849567213], [-77.43820698050334, 34.74615184050907], [-77.43803195225112, 34.74618439980467], [-77.43800148934395, 34.746190066623], [-77.43798092589476, 34.74619647813975], [-77.43788989601343, 34.746210573401946], [-77.43779475990108, 34.74622627032846], [-77.43764602827989, 34.74624579412181], [-77.43758248214345, 34.74625341224141], [-77.43750027859056, 34.746278169988216], [-77.43746374463214, 34.74638835109154], [-77.43745240358578, 34.74640120255404], [-77.43744812395519, 34.74640781357929], [-77.43741281660914, 34.746527130455476], [-77.437371194364, 34.74665600768132], [-77.43731395788033, 34.74677210945222], [-77.43721202918346, 34.74693976172542], [-77.43719198103268, 34.74700901199959], [-77.43714466034125, 34.747033706306986], [-77.43709897574614, 34.74711627789841], [-77.4370903301876, 34.74713189324364], [-77.43707951341588, 34.7472182440756], [-77.4371110903395, 34.74726026866543], [-77.43717165036735, 34.747330976436835], [-77.43725620509102, 34.74736773703685], [-77.43731013984544, 34.74740638928118], [-77.4374219783224, 34.74748662020725], [-77.43771792355787, 34.74762152929999], [-77.43784460883174, 34.7477753885962], [-77.43787672903775, 34.74780726600418], [-77.43804465125434, 34.74793163481414], [-77.43833525369499, 34.74823047844447], [-77.43834986290406, 34.74824535046977], [-77.43835357180626, 34.74824916902081], [-77.43840142818358, 34.74827008390138], [-77.43885201334463, 34.7484876403309], [-77.43891379848387, 34.748512558482794], [-77.4390142328179, 34.74859167573514], [-77.43928489992322, 34.74875345867643], [-77.43937382466724, 34.7488892935475], [-77.43926526722424, 34.74900163628887], [-77.43922175169992, 34.7491156829841], [-77.43904504432355, 34.7492999278949], [-77.43901055362161, 34.74933331375344], [-77.43892493929195, 34.74957102448318], [-77.43875686205945, 34.74966666232217], [-77.43863752934246, 34.74975013710571], [-77.43854233491739, 34.749796118628176], [-77.43844578928291, 34.74990630593473], [-77.43838454670109, 34.74994127593514], [-77.43833483774175, 34.749959134392974], [-77.43825702994144, 34.74997187221871], [-77.43815144551144, 34.750038857108066], [-77.43802596340976, 34.74994825532979], [-77.43801286532022, 34.749946956319334], [-77.43800318642637, 34.749947809709795], [-77.43790963079086, 34.749965278541204], [-77.43788082312713, 34.74997494207685], [-77.4378837403872, 34.75000758460829], [-77.4379012530228, 34.75005195791267], [-77.43789338500295, 34.750125662786196], [-77.43789859918516, 34.75022458877645], [-77.4379068360293, 34.750333423590575], [-77.43783021270934, 34.750396326664], [-77.43771334730857, 34.750444703314045], [-77.4376517396391, 34.750478693623506], [-77.43758358225895, 34.75050001367408], [-77.43752710880796, 34.75053425392347], [-77.43748709592325, 34.750583645563296], [-77.43732930069109, 34.75066377747518], [-77.43731325306173, 34.75067357469771], [-77.43730358698383, 34.75068171539362], [-77.4371382280891, 34.7507615736985], [-77.43707353919451, 34.75079196431386], [-77.4369718690539, 34.75084534788245], [-77.43696320529747, 34.75084957660336], [-77.43695323477993, 34.75085526924373], [-77.43677679739979, 34.750918986086944], [-77.43665976468584, 34.751015831878945], [-77.43654196951098, 34.751168368068356], [-77.4365101380325, 34.75123117549197], [-77.43650057986574, 34.751239738042], [-77.43647408548999, 34.751265221779946], [-77.43632311080064, 34.75145725658939], [-77.43624173270939, 34.75154051546688], [-77.43608285651072, 34.75164676518019], [-77.43584788726103, 34.751644996101916], [-77.43576957475447, 34.75162131692201], [-77.43566030302208, 34.75171248805621], [-77.43552122544159, 34.75173615179762], [-77.43547387329319, 34.75178186531855], [-77.43541009660085, 34.75175546843507], [-77.4353443100459, 34.75173648363067], [-77.43525751913228, 34.7517287044673], [-77.43519218151606, 34.75169566355052], [-77.4351023092334, 34.751711034857856], [-77.43498844644304, 34.751736778123785], [-77.43491212491989, 34.75180287621278], [-77.43483632828367, 34.75186219305602], [-77.43476658284662, 34.75189178912765], [-77.4347766999156, 34.7519732442625], [-77.43483408084418, 34.75205512986799], [-77.43494255406736, 34.75226294996038], [-77.4349765956689, 34.75233626393413], [-77.43495836466454, 34.75243535295239], [-77.43493223581885, 34.75264845913145], [-77.43473060208342, 34.75281108269092], [-77.4344135493417, 34.75301751577777], [-77.43440512208166, 34.75302334665836], [-77.43440413296176, 34.75302561016285], [-77.43440099461598, 34.753026112169685], [-77.43407859718658, 34.753188791350915], [-77.43406578529186, 34.75322073925605], [-77.43401705246882, 34.753244743160764], [-77.43389631839948, 34.7534046301074], [-77.43377153336029, 34.753487887577336], [-77.43376060495679, 34.753513059113985], [-77.43371339453134, 34.75362024367402], [-77.43371502043445, 34.753734262863276], [-77.43373514175825, 34.753746878285405], [-77.43384901294095, 34.753825242242144], [-77.43408443475361, 34.75399891325911], [-77.43411456130866, 34.75401562140763], [-77.43412103065752, 34.75403232242965], [-77.43412056123017, 34.75404201202572], [-77.43419368448583, 34.75444841593599], [-77.43420925841622, 34.75463203821458], [-77.43422764012942, 34.754980502732735], [-77.43422398516218, 34.75519622256863], [-77.43403720993314, 34.75540647646032], [-77.43439666751935, 34.75525654960577]], [[-77.36746507279796, 34.62679451583145], [-77.3674585457581, 34.62680717295705], [-77.36743580374853, 34.6268161919061], [-77.36744381596094, 34.62677467641494], [-77.367458564767, 34.62675760502956], [-77.36816972243778, 34.62498781780065], [-77.3687975097822, 34.62464025811409], [-77.36903639156657, 34.62443879285856], [-77.36926528761049, 34.6242273904112], [-77.36943012493478, 34.62395723724265], [-77.36952669954917, 34.62362192019472], [-77.36974538224891, 34.62306273064268], [-77.36982542033611, 34.622867209235906], [-77.3703932164619, 34.62273176323694], [-77.37061397532094, 34.622572795814555], [-77.37087429300625, 34.62261980490189], [-77.37122302559251, 34.62284995832713], [-77.37081739442016, 34.62312764682648], [-77.37110906665359, 34.623715486640215], [-77.3706134077008, 34.624204151768], [-77.37041918938448, 34.6244548770121], [-77.37017481048485, 34.624699128493276], [-77.36982465491688, 34.625011540005474], [-77.36927126260343, 34.62508241212281], [-77.36903598061572, 34.625563120104545], [-77.3674751409664, 34.62678604270902]], [[-77.34353631294175, 34.536810270071165], [-77.34347395144586, 34.536859036147455], [-77.34345203035478, 34.53690037972052], [-77.34333515582291, 34.537021571296286], [-77.3433216003168, 34.53703326895423], [-77.34331524322579, 34.537042469003595], [-77.34326699330754, 34.53709092161891], [-77.34317003526331, 34.53718576954191], [-77.34315499708347, 34.53720056408282], [-77.34313427717737, 34.53722076708998], [-77.34303351095895, 34.53732782055137], [-77.34299372338327, 34.5373704536685], [-77.34285803584814, 34.537475474963486], [-77.34280973758919, 34.53752928740278], [-77.34273283443065, 34.53760541322607], [-77.34261934218198, 34.53768500109077], [-77.34253414720256, 34.537709597078106], [-77.34243646043036, 34.53778094341709], [-77.34238434765015, 34.537819004416455], [-77.34233442004708, 34.537858783323045], [-77.34216547830859, 34.537942336479], [-77.34214840448446, 34.53795254586251], [-77.34213455782293, 34.53801378556099], [-77.34212381863453, 34.538064776179354], [-77.34212099288679, 34.53807114551741], [-77.34207912893456, 34.53816722005785], [-77.3420670973172, 34.53820130821247], [-77.3420515411442, 34.53825188839062], [-77.34202420816185, 34.53832988753156], [-77.34201092410574, 34.53838241563078], [-77.3419867719261, 34.53845768239189], [-77.34195605771522, 34.538565472547894], [-77.34196038574777, 34.538583887577516], [-77.34195566573237, 34.53860391359933], [-77.34192401504869, 34.538631087196045], [-77.34186360645262, 34.538683298592204], [-77.34181003368431, 34.538727925991395], [-77.34177332427612, 34.53876354863406], [-77.34159315196916, 34.53888153462011], [-77.34152310502716, 34.538992146060934], [-77.34126565235675, 34.53901321239091], [-77.34112267665132, 34.539332213657154], [-77.3409270830474, 34.539102634585305], [-77.34090597475961, 34.538980384791564], [-77.34084877583302, 34.53881027710328], [-77.34082436372785, 34.538747306335424], [-77.34081408395073, 34.538705448526734], [-77.34084880828098, 34.53849897114092], [-77.34088955501207, 34.538333330501246], [-77.34090089857068, 34.538246660124855], [-77.34093646617839, 34.53813017762584], [-77.34099824842683, 34.53798783802825], [-77.34103268159963, 34.53790620768267], [-77.34099948621268, 34.53784115843261], [-77.34102092361388, 34.53773975787825], [-77.34104203613505, 34.53766236268643], [-77.34101748284061, 34.53758620266932], [-77.34100662601095, 34.537496996132056], [-77.34102493811537, 34.537405640342044], [-77.34104149837839, 34.53732669300947], [-77.34100729624637, 34.53725208111752], [-77.34117469544611, 34.53708138071299], [-77.34121951362025, 34.537003564085204], [-77.34126658664358, 34.536969963323564], [-77.34156423121493, 34.53668985550912], [-77.3415719305749, 34.53668121979593], [-77.34157424660155, 34.53667945467494], [-77.34157666085707, 34.53667434050712], [-77.34173794179192, 34.53651074476386], [-77.34175349283956, 34.536410282015055], [-77.34177940847724, 34.53628253297637], [-77.34197906331535, 34.53624821300929], [-77.34221678966749, 34.536098813454544], [-77.34226249931994, 34.536020910029414], [-77.34249664176728, 34.53581373366457], [-77.34267857028316, 34.53572666134323], [-77.34277699603682, 34.53569302160185], [-77.3430968946773, 34.53548255831176], [-77.34313961660868, 34.53545430690946], [-77.34317637347937, 34.53539744522156], [-77.34339082060097, 34.53519545150178], [-77.34346751131349, 34.53511713419961], [-77.34357621409373, 34.535081679201795], [-77.34370110181007, 34.534905990717995], [-77.34373698363481, 34.53480455137032], [-77.34375051058299, 34.53477647243157], [-77.34375767721068, 34.534761596089474], [-77.34378108901718, 34.53470908321462], [-77.34381553918297, 34.53464470664772], [-77.34382734572145, 34.534547115584395], [-77.3438868230584, 34.53444982963312], [-77.34390305635932, 34.53438729542174], [-77.34388149489155, 34.53432508042924], [-77.34398416592327, 34.53425321589211], [-77.34386071290106, 34.534228240673386], [-77.34369974041286, 34.53417172866614], [-77.34366753000214, 34.53413306834495], [-77.34368321420976, 34.53373176697479], [-77.34368645987826, 34.533684000685454], [-77.34380623201433, 34.53354542804931], [-77.34389631532098, 34.53333871542545], [-77.34400979041192, 34.53330400938942], [-77.34414763199668, 34.53328710285463], [-77.34423810419813, 34.533256704867085], [-77.34440463934942, 34.53320401621495], [-77.34449316405045, 34.53313247391801], [-77.34449819037926, 34.53307756925999], [-77.34452707426915, 34.53299998911433], [-77.3445595532814, 34.53294633025989], [-77.34457971482958, 34.5329262129199], [-77.34460808040606, 34.532893225403434], [-77.34461818367498, 34.53287668929699], [-77.34460910583925, 34.53284878005431], [-77.34459756997136, 34.53282597330084], [-77.3445876092473, 34.53281988361904], [-77.34452794952796, 34.53275798022756], [-77.34441521542439, 34.53274566373629], [-77.34439506487367, 34.53273785800555], [-77.34437046129294, 34.53272871819599], [-77.34429211186772, 34.53269508695888], [-77.34422022900475, 34.532690061754906], [-77.34410224502216, 34.53264490026546], [-77.34418874248536, 34.532531958142556], [-77.34421096541834, 34.53249831024435], [-77.34422478959343, 34.53249243279127], [-77.34426222995953, 34.53247635188626], [-77.34442324704045, 34.53239758557176], [-77.34446324992602, 34.53237272948415], [-77.34449515401167, 34.53234354745696], [-77.34446050740634, 34.5323263194441], [-77.34447375207267, 34.53228542199618], [-77.3444384909545, 34.53223647960505], [-77.3444365572082, 34.532229568913465], [-77.34442732213738, 34.53222097729952], [-77.3443682494988, 34.53215478300674], [-77.34433736130839, 34.53212143192276], [-77.34423552143075, 34.53202737943044], [-77.3442258251011, 34.53202120683305], [-77.34422142158392, 34.53201570411599], [-77.34415570414839, 34.53197461937691], [-77.34414106152833, 34.53196467285844], [-77.34408770587504, 34.53191253382923], [-77.34407929296891, 34.53189073902635], [-77.34406087198127, 34.53185518992654], [-77.34404404380236, 34.53181982130315], [-77.34403344132387, 34.53180476127854], [-77.34402983618838, 34.53179845057891], [-77.34401401450832, 34.53178144571569], [-77.34397031540266, 34.53173185464873], [-77.34393797962335, 34.53168925735992], [-77.34385293740755, 34.5315962209173], [-77.34384164117218, 34.531587874522494], [-77.34383869031232, 34.53158113360046], [-77.34382471928289, 34.53156509633404], [-77.34378546921675, 34.53150970611545], [-77.34374766621946, 34.531471820508884], [-77.34372898475448, 34.531431774162435], [-77.34366237671563, 34.531349025184866], [-77.34360979535356, 34.531280617463565], [-77.34357882035107, 34.53125129464978], [-77.34351214891555, 34.53116453499563], [-77.34343368968098, 34.531027356566], [-77.34339781804819, 34.53095832721715], [-77.34328143917932, 34.53084681968862], [-77.34326046246643, 34.530820917085784], [-77.34324732636708, 34.53080935098386], [-77.34317251871212, 34.530646118030205], [-77.34299051622071, 34.53041379685651], [-77.34296638807949, 34.53036013295188], [-77.34293882510708, 34.53034026183579], [-77.34290190499301, 34.53028404723322], [-77.34266068673438, 34.53006803617355], [-77.3425550830955, 34.5299296708975], [-77.34255450446689, 34.52990703941786], [-77.34251811588652, 34.52990571204437], [-77.34232251667035, 34.52984123561528], [-77.34222486451023, 34.52973236080557], [-77.34219801566339, 34.529694100467445], [-77.342131159653, 34.52966461560025], [-77.34203876247224, 34.52957326104726], [-77.34190168525889, 34.52953403726703], [-77.34174507426968, 34.529385926265284], [-77.34170592536344, 34.529342426091446], [-77.34144684185819, 34.52916546833909], [-77.34137310528676, 34.52912044431237], [-77.34136763088921, 34.529115721072436], [-77.34135904643617, 34.52910485625025], [-77.34107833533899, 34.52885194051592], [-77.34092505325341, 34.5286952640674], [-77.34077859943798, 34.528596060551855], [-77.3406929454963, 34.528483836967204], [-77.34066221594307, 34.528442784931656], [-77.34068926303047, 34.52829982911242], [-77.34069033274754, 34.52823939444728], [-77.34065823548507, 34.52820445860961], [-77.34061309214425, 34.528128096966164], [-77.34059692263341, 34.5281135019967], [-77.34050461491088, 34.528079358823106], [-77.34033676268137, 34.52804543960607], [-77.34029512936141, 34.52799652971755], [-77.34020878488649, 34.52792408400379], [-77.34009377795064, 34.52783557589215], [-77.34000422891147, 34.52773396614748], [-77.3398715232475, 34.52740488488002], [-77.3398774263197, 34.527377062392496], [-77.33989632323214, 34.52733294027316], [-77.33983350297137, 34.52717896365078], [-77.33972556933632, 34.52690927072578], [-77.33951465927241, 34.52665638219599], [-77.339478036147, 34.52645524082959], [-77.3393610034922, 34.526162704749964], [-77.33963576804283, 34.525599401446016], [-77.33957832150438, 34.52546154329564], [-77.33930254753844, 34.52536886723365], [-77.33932807736525, 34.525153061587936], [-77.33931763871612, 34.52500940724377], [-77.3394360734457, 34.52478516265375], [-77.3392657009819, 34.52462588351181], [-77.3391817135442, 34.5245393241123], [-77.3392166567052, 34.52446851804862], [-77.33941230948679, 34.52420046291972], [-77.33955474928602, 34.52421269324014], [-77.33955417725211, 34.5242695402894], [-77.3395730514323, 34.52448302923162], [-77.33952429868026, 34.52471840543567], [-77.33952802541143, 34.524753612373644], [-77.33959884288282, 34.524968955364976], [-77.3395837278247, 34.52515610817727], [-77.33987633197528, 34.525327421984066], [-77.33990964405825, 34.52539216962168], [-77.33992559552455, 34.52541158686922], [-77.33993237314097, 34.52544729590927], [-77.34004826690672, 34.52625262314017], [-77.34009693473874, 34.52636621147787], [-77.34033497681413, 34.526518354340254], [-77.34048580161902, 34.52671036280354], [-77.34051303357558, 34.52679598967883], [-77.34057405840761, 34.52682012432016], [-77.34062534445155, 34.52688428830926], [-77.34068289343747, 34.52701637220456], [-77.34072733206781, 34.52707636100244], [-77.34075682814105, 34.527164504302306], [-77.34081477465894, 34.52717953613694], [-77.3408652570403, 34.5272349557791], [-77.34090771964779, 34.527291667751435], [-77.34100508873509, 34.52743660931658], [-77.34101591918078, 34.52745113517845], [-77.34102190292444, 34.527457238945075], [-77.34104795787563, 34.52748086689918], [-77.34120601544527, 34.52767557039523], [-77.34130823274494, 34.52771262813089], [-77.34138966130271, 34.527780248834674], [-77.34148524155262, 34.52788021827142], [-77.3415908471349, 34.52798146094654], [-77.34160296045077, 34.52799948063493], [-77.34165757462489, 34.52810024403329], [-77.34171232175545, 34.528130884299934], [-77.34177306898572, 34.52817443533826], [-77.34187429704139, 34.52824966202212], [-77.34190675683693, 34.528309213459714], [-77.34202771797325, 34.52837491277237], [-77.34207347555034, 34.52840763724062], [-77.34215935779447, 34.52844407082135], [-77.34222821244771, 34.52846454412932], [-77.34225691435105, 34.528468886827575], [-77.34229156589439, 34.528476941206655], [-77.34229605968763, 34.52849802329189], [-77.34231366767239, 34.528520552590855], [-77.34235354253661, 34.52853389319167], [-77.34243330704696, 34.52855069446863], [-77.342548533014, 34.528588849898654], [-77.34271233054282, 34.52858090395148], [-77.34290339913481, 34.52865546161741], [-77.34292235248074, 34.528663325650435], [-77.34293916814714, 34.52867046612582], [-77.3430439530032, 34.528757648669384], [-77.34307544595096, 34.52878882449361], [-77.34312408416449, 34.52886424457482], [-77.34312661267128, 34.5288681653686], [-77.34312817457582, 34.528869596921155], [-77.34313075543787, 34.528872830330364], [-77.34319209439927, 34.52894190101469], [-77.34321816395749, 34.52897740263837], [-77.34324713913992, 34.529020921012275], [-77.34327829317475, 34.52906351812377], [-77.34329542735776, 34.52908869566146], [-77.34330396446026, 34.52909859364055], [-77.34332130223831, 34.52912029957875], [-77.34338660675814, 34.52919798637705], [-77.34342480480612, 34.529248498565025], [-77.34348260260197, 34.52930658408654], [-77.34349302290462, 34.529317550606144], [-77.34351254229267, 34.52933778983016], [-77.34356086165069, 34.52938688959194], [-77.34366031281792, 34.52949789513009], [-77.34368132115273, 34.52952281144838], [-77.3436903395561, 34.52953025905582], [-77.34370409244109, 34.52954189027742], [-77.34381232706617, 34.52962637159608], [-77.34384672621994, 34.52965326689446], [-77.34397598683039, 34.52972523317448], [-77.3440393898749, 34.52974882424867], [-77.34409075099502, 34.529796038030646], [-77.34418400621233, 34.52988073869594], [-77.34422360915309, 34.52993442335428], [-77.34421897281183, 34.53001826161156], [-77.34421890999835, 34.53005750937615], [-77.34423833724252, 34.53008097246392], [-77.34425713711323, 34.53017441879585], [-77.34426279356063, 34.53018313939111], [-77.34427723671072, 34.530219703609745], [-77.34430268277376, 34.53027362825525], [-77.34430281485638, 34.53029025614316], [-77.34430696800545, 34.53030949432103], [-77.34427389649763, 34.53036444646535], [-77.34422973952269, 34.53039609530065], [-77.34423938409799, 34.530421792746786], [-77.34424069495033, 34.53044120707871], [-77.34426994118121, 34.530535844021145], [-77.3442708111881, 34.53053909123621], [-77.34427140336709, 34.53054057545134], [-77.34419989661448, 34.530672293811804], [-77.34432586687876, 34.53073877650164], [-77.344414883732, 34.5308861797515], [-77.34443348105296, 34.53089869205685], [-77.3444572054062, 34.53092589007129], [-77.3445740014266, 34.531033707252384], [-77.34465813345058, 34.53109599822001], [-77.34471961761486, 34.53125556082365], [-77.3447622642013, 34.53132583500826], [-77.34476329669721, 34.5313731623671], [-77.34475078732314, 34.53151912850063], [-77.34476046022452, 34.531570914255], [-77.34477045243145, 34.53160909464092], [-77.34482083995559, 34.53180162432143], [-77.34482372054431, 34.531806631553835], [-77.34482520017181, 34.53180901460809], [-77.34482925066314, 34.53181385933787], [-77.34491115125431, 34.53191646099609], [-77.34494747146123, 34.531957840086605], [-77.34505714969264, 34.532017862959215], [-77.34500391345969, 34.53215647802288], [-77.34521291060271, 34.532198623715175], [-77.34525821305223, 34.53223375147951], [-77.34526903361854, 34.53226819852221], [-77.34532151253161, 34.53239884918108], [-77.34528468307722, 34.532474762486835], [-77.34524568082826, 34.53250522341374], [-77.34524911392106, 34.532541085592314], [-77.34526704045368, 34.53256074198686], [-77.34526450495136, 34.532576485136886], [-77.34526887507519, 34.53259944707961], [-77.34527907279343, 34.532611974247544], [-77.34527910509853, 34.53261327630026], [-77.34528069418911, 34.532615415076975], [-77.34528258781532, 34.53262439871834], [-77.34528334020021, 34.532627968140396], [-77.3452862583282, 34.53263364821915], [-77.3452869490791, 34.532636182845906], [-77.34528285225291, 34.53264333959054], [-77.34528533673014, 34.53264872414123], [-77.34528337633168, 34.53265856541622], [-77.34527661743691, 34.532674169226134], [-77.34529993406085, 34.53268036060189], [-77.34531562615412, 34.53268452739426], [-77.34533564258302, 34.53268984244695], [-77.34539037083547, 34.53270437466137], [-77.34539466775587, 34.53270551564081], [-77.34539744289827, 34.53270749467377], [-77.34550307853557, 34.53274415608119], [-77.34559043573599, 34.532849577514384], [-77.34567166565495, 34.53285793589108], [-77.34569549648359, 34.53290528863116], [-77.34568143686863, 34.533091890835905], [-77.34569600891828, 34.533150034823606], [-77.34569817238204, 34.53322227680739], [-77.3456699619642, 34.53339860278692], [-77.34564417758509, 34.53360278264964], [-77.3456450436788, 34.533647008319434], [-77.34563837433359, 34.53368995245122], [-77.34556921872488, 34.533769657720086], [-77.34551996978935, 34.53388070732927], [-77.34547791285644, 34.53391587723242], [-77.34542495114967, 34.53395865003248], [-77.3454432702365, 34.53399615539287], [-77.34542616587277, 34.5340457331605], [-77.34546358439276, 34.53409481438464], [-77.34546715898699, 34.53409875352589], [-77.34546676207293, 34.53410109667331], [-77.34547008264126, 34.5341048154948], [-77.34548161726188, 34.53411798179178], [-77.34548750241407, 34.53412152843542], [-77.3454940158312, 34.534127777558204], [-77.34550042047672, 34.534133922322255], [-77.34550137902447, 34.53413557453584], [-77.34550109065219, 34.53414206078856], [-77.34551140454246, 34.534148932341196], [-77.3455162306447, 34.534152127638876], [-77.34552002214056, 34.53415463793584], [-77.34553376586683, 34.5341690276355], [-77.34555956488458, 34.53418830040396], [-77.34557432836303, 34.53419867190705], [-77.34558538307323, 34.53420643794989], [-77.34556774284447, 34.53426399227038], [-77.3455728646983, 34.53426944421954], [-77.34555701209902, 34.53429900319845], [-77.34549764057903, 34.53436662244525], [-77.34543505167962, 34.534411684197096], [-77.34530750019783, 34.53452245815756], [-77.34526170120222, 34.53455903767317], [-77.3451557022751, 34.534678971589734], [-77.3451473563461, 34.534692895757345], [-77.34514336695985, 34.534698474583536], [-77.34513861619037, 34.53470937682313], [-77.3450779019218, 34.534830304058715], [-77.3450557093469, 34.5348966764411], [-77.3449922780627, 34.53496503397501], [-77.344921778985, 34.53507987459373], [-77.34490889864222, 34.53509944111227], [-77.34489071470769, 34.53513830379785], [-77.3448410947577, 34.535231606851326], [-77.34482061500272, 34.53527902292132], [-77.3447464580769, 34.53540272171447], [-77.34467676389498, 34.5355000711347], [-77.34461818180927, 34.53567726870291], [-77.34434020936254, 34.535996353121746], [-77.34429662902593, 34.53601753012209], [-77.34423385364802, 34.53605343663539], [-77.34426126544678, 34.53609727416281], [-77.34403002229871, 34.536384538677474], [-77.3439364615866, 34.53648137279817], [-77.34388356212277, 34.53656163884244], [-77.34383528249779, 34.53660042065623], [-77.34368592093055, 34.5367138246775]], [[-77.27127140910156, 34.573146768296084], [-77.27131250780826, 34.573064719662526], [-77.27134789510795, 34.57303494719877], [-77.27136473443518, 34.57302038561753], [-77.27141035023033, 34.57298093986063], [-77.2714152950017, 34.57297657493634], [-77.27145805507456, 34.572939082998495], [-77.2714841312127, 34.57292782273164], [-77.27156199601524, 34.572894811704145], [-77.2716061994023, 34.57290653644184], [-77.27165489015479, 34.57291945143141], [-77.27170840650176, 34.57291638969055], [-77.27172629034804, 34.57294685728792], [-77.27169429798039, 34.572984884344976], [-77.27163905239917, 34.573057833435335], [-77.27153392383904, 34.57316547642279], [-77.27153171886505, 34.57316722997814], [-77.27153118784402, 34.5731684165141], [-77.27152713804797, 34.57317208159786], [-77.27137957118691, 34.57327310377724], [-77.27131208401396, 34.57330215254566], [-77.27122736034504, 34.573378972537554], [-77.27119871413896, 34.5734048601319], [-77.27112102345515, 34.57346082849481], [-77.2710863105983, 34.57348571843646], [-77.27104147876057, 34.57353369068259], [-77.2709305114077, 34.57361999261159], [-77.27080245178752, 34.57369907149445], [-77.27084479389518, 34.57379109352097], [-77.2707970626445, 34.57382990503911], [-77.27073925236365, 34.57389675431719], [-77.27067892791123, 34.57392502834086], [-77.27056416621727, 34.57395137633466], [-77.27051002868737, 34.57402958453782], [-77.27044400480095, 34.574124963816764], [-77.2704222351922, 34.57414051644154], [-77.27041601899681, 34.57414821791295], [-77.270394772045, 34.574161271077294], [-77.27016993986946, 34.57425796606443], [-77.27010252153335, 34.57435104984959], [-77.27008066491629, 34.57436572300275], [-77.27000115418781, 34.5743827336158], [-77.27006882441393, 34.574348400773765], [-77.27008731032953, 34.5742585991728], [-77.27002554781119, 34.574227165039304], [-77.2699786052117, 34.57420746898526], [-77.26995752968058, 34.57419254711168], [-77.26995679853917, 34.57416284356472], [-77.26998852558228, 34.57411189610386], [-77.26999257033145, 34.57410673900214], [-77.26999668393097, 34.574103883609325], [-77.27000573901014, 34.57409721840135], [-77.2701048380096, 34.574035771580824], [-77.27019642337372, 34.5740049312499], [-77.27023427991868, 34.57398659160496], [-77.27027645769077, 34.573893389525566], [-77.27029694601092, 34.57387802573111], [-77.2703459043219, 34.57384123732388], [-77.2703474045053, 34.573840751750765], [-77.27034769237608, 34.57384007277504], [-77.27034851718956, 34.57383924101574], [-77.27039714962123, 34.57380284334125], [-77.27042923686335, 34.5737875664311], [-77.27046325443189, 34.5737503262094], [-77.27049472541503, 34.573725324018234], [-77.27058800418965, 34.573682213886954], [-77.27061256159624, 34.57366582296121], [-77.2706874670733, 34.57357219930235], [-77.27069618355824, 34.57356525150089], [-77.27079842216119, 34.57350252197997], [-77.27090006602285, 34.57347107814301], [-77.27091381800038, 34.57339780674819], [-77.27098689206785, 34.57334154190157], [-77.27104633562067, 34.573289511621994], [-77.27109829563936, 34.573276320561675], [-77.27110482102574, 34.57325150675198], [-77.27111511821658, 34.573230530984084], [-77.27117693040852, 34.57318195710064]], [[-77.37742776711681, 34.69385746818891], [-77.37805466768506, 34.693984414838226], [-77.37729844460016, 34.694303360490515], [-77.37726686963073, 34.69409274649512]], [[-77.33901628640366, 34.52317212463239], [-77.33901515648401, 34.52309437494376], [-77.33871755332741, 34.52291550108843], [-77.3387111207107, 34.52286542367761], [-77.33866353342943, 34.522655320151365], [-77.33876532407147, 34.52245397544716], [-77.3388970238519, 34.52245913711037], [-77.3390855767972, 34.52215435733534], [-77.33914293286863, 34.52209672209023], [-77.33912630417322, 34.52207397301861], [-77.33920610099892, 34.52206315828478], [-77.33920090617198, 34.52211029904882], [-77.33936611688966, 34.52255425194078], [-77.33938516494871, 34.522893001314394], [-77.33927461402077, 34.5231398030845], [-77.33913838522045, 34.523293638382825]], [[-77.35454233454377, 34.5532897533045], [-77.35437678061211, 34.55334249042833], [-77.35440613550762, 34.55344074006949], [-77.35414104062653, 34.5536671644824], [-77.35406188092043, 34.55368602583175], [-77.35401449912621, 34.55374193508037], [-77.3539299822112, 34.55388261944983], [-77.35379097660136, 34.554050968107646], [-77.3537383367095, 34.554105846707465], [-77.35360905515282, 34.55421082938894], [-77.35345444829414, 34.55424242806956], [-77.35334426732385, 34.554168242674955], [-77.35322806898913, 34.55409995288819], [-77.35309991671298, 34.5540279449732], [-77.35271594050842, 34.55402464753114], [-77.35255844777058, 34.554191965415846], [-77.352394894796, 34.55436519303433], [-77.35182901606406, 34.55450680455521], [-77.35176521632458, 34.55453823331278], [-77.35146645445738, 34.554353493272615], [-77.35141591153163, 34.55433663571172], [-77.35137833898185, 34.5542875036267], [-77.35120457201762, 34.55414636101588], [-77.35111689168446, 34.55408014962346], [-77.35103095212028, 34.55392652627667], [-77.35101984413261, 34.55391221418165], [-77.3509947320687, 34.55389459427684], [-77.35078179034394, 34.55385096358473], [-77.35062307483992, 34.553740403119335], [-77.35046227846298, 34.5536099830793], [-77.35022284767543, 34.553312353646966], [-77.35022049799345, 34.5533101923023], [-77.35021827655578, 34.553309015880544], [-77.3502136663498, 34.55330383225481], [-77.34990913271301, 34.553063049028474], [-77.34999265506657, 34.55285184229126], [-77.34994497869566, 34.55279456870164], [-77.34992531415668, 34.552739122714435], [-77.34984551168722, 34.55264723060759], [-77.34983999779848, 34.55263263722955], [-77.34983374943388, 34.55262988897955], [-77.34965068389528, 34.5525825543832], [-77.34960691336963, 34.55256762806646], [-77.34955283588637, 34.55256909197072], [-77.34949343284634, 34.55258078433992], [-77.34949514121661, 34.552617410939085], [-77.34945223266078, 34.552675395607714], [-77.34944553162543, 34.5526816667118], [-77.3494449615944, 34.552685837139926], [-77.34943445172041, 34.55269811079307], [-77.34941295740187, 34.552727911509514], [-77.34940229048439, 34.55275318280384], [-77.34941061536652, 34.55278886778998], [-77.34930570443714, 34.55282828685989], [-77.34941223423374, 34.55291384746212], [-77.3494267417964, 34.55293327982825], [-77.34924667377909, 34.553077144117715], [-77.34923884306669, 34.553077856549564], [-77.34923302455397, 34.55308356634075], [-77.34920258914777, 34.55311489271255], [-77.34909382074537, 34.55322600800351], [-77.34906705214892, 34.553242644380944], [-77.34904559604563, 34.553284060812715], [-77.34894007339543, 34.55331350612533], [-77.3489477289763, 34.55324703027941], [-77.34871680836551, 34.553241065462764], [-77.34867681915229, 34.553163603017886], [-77.34866466272022, 34.55315983895121], [-77.34865621447993, 34.55314272720104], [-77.3486379420076, 34.553107992112494], [-77.34862306097753, 34.55307063516591], [-77.34862563800704, 34.553048557447504], [-77.34864776619375, 34.55303861140869], [-77.34865871236552, 34.553034192074186], [-77.34868885312186, 34.55302085859095], [-77.34875749227352, 34.553007180832665], [-77.34878043748853, 34.552978979803136], [-77.3488526878378, 34.55295724460164], [-77.34885673805644, 34.5529599218594], [-77.34887029877058, 34.55295214656318], [-77.348934667257, 34.552929838956935], [-77.34895574854883, 34.55292288290675], [-77.34897967992244, 34.55292150456803], [-77.34899038027422, 34.55293486711088], [-77.34900428421501, 34.55294649842476], [-77.34901371637984, 34.552931509084516], [-77.3490049245846, 34.55291866890539], [-77.34898166418851, 34.55292000331345], [-77.34898701613294, 34.55290474861747], [-77.34899842766441, 34.55289876994287], [-77.34902243518991, 34.552869049276374], [-77.3490387576474, 34.5528562992006], [-77.34905569222195, 34.55284528422193], [-77.34914322488395, 34.552797769562574], [-77.34915494069304, 34.552797892091455], [-77.34916332058559, 34.55279272180053], [-77.34915901973056, 34.55278818969353], [-77.34915966889795, 34.55278532831309], [-77.34918962014385, 34.552743423608526], [-77.34919809998622, 34.5527213608528], [-77.34920609992531, 34.55270747868118], [-77.34921698367572, 34.552694643178256], [-77.34925590086716, 34.552676097367346], [-77.34928328799182, 34.5526648120774], [-77.3493007361874, 34.552645386223524], [-77.34932070178422, 34.552620922298765], [-77.34934667186477, 34.552577570818606], [-77.3493567325669, 34.55255987429864], [-77.34937654603742, 34.552523905162815], [-77.34939148066596, 34.5525099175359], [-77.34938311086054, 34.55249559613068], [-77.34938541671971, 34.55244958491564], [-77.34938897063785, 34.55240575922298], [-77.34938685797185, 34.55238817234111], [-77.34938376401163, 34.552374422739646], [-77.34937722877628, 34.552337949424995], [-77.34937899055731, 34.552328099276416], [-77.34938765443107, 34.55228092675455], [-77.34938804492775, 34.55226559112332], [-77.34938724741765, 34.55225110798182], [-77.34938445258308, 34.552204902831846], [-77.34940188260225, 34.552163658488304], [-77.34939958787771, 34.5521415196477], [-77.34939860793862, 34.552121833469], [-77.34938935919781, 34.55208178637698], [-77.34939096099774, 34.552067279485314], [-77.34937325236945, 34.5520255344301], [-77.34937173657454, 34.5520231171185], [-77.34937158362533, 34.55202160065622], [-77.34936924324867, 34.552016083615015], [-77.34934678463415, 34.551965502554225], [-77.34933155642327, 34.551931205733126], [-77.34930461223284, 34.55186794052597], [-77.34930261660975, 34.55184944801846], [-77.34929726861967, 34.55183646850504], [-77.34927595326337, 34.55180454253891], [-77.34921792242729, 34.55173922526424], [-77.34918768667958, 34.551678019200125], [-77.34908539845043, 34.55155426880036], [-77.34906547134217, 34.551529128582], [-77.34905425559754, 34.55151795632893], [-77.34900111535862, 34.551471866416364], [-77.34893988640167, 34.55141200373158], [-77.34892951287202, 34.551390636039095], [-77.34889733029759, 34.55135692239205], [-77.34889672830036, 34.55135510122312], [-77.34889368692586, 34.55135431005568], [-77.34884556557199, 34.55133347110856], [-77.34877614867528, 34.5513131550922], [-77.3487277566858, 34.55130192551553], [-77.34869863312994, 34.551299613873184], [-77.34862438851006, 34.55125945420667], [-77.34860169391862, 34.551246735718905], [-77.34857100586179, 34.551220264379154], [-77.34854212519099, 34.5512010152418], [-77.34852763745994, 34.55119590238088], [-77.34853433244469, 34.55118261820284], [-77.34853103907005, 34.55116481032867], [-77.34853413405651, 34.551146722076595], [-77.34853097194397, 34.551134217415466], [-77.34850643005066, 34.55112107609997], [-77.34849532148024, 34.55111574802967], [-77.34847684453158, 34.55111140358311], [-77.34846280487115, 34.55111018010394], [-77.34845792462218, 34.55109619970467], [-77.34845403874505, 34.551086642880485], [-77.34845259327557, 34.551084290675355], [-77.34845268062708, 34.551080786999826], [-77.34845273848444, 34.55105366720157], [-77.3484456203504, 34.55103267299913], [-77.34842547261499, 34.55099638551682], [-77.34841162992355, 34.550975282617884], [-77.34839515908469, 34.550950173158654], [-77.3483743744422, 34.55091848730515], [-77.34837634749246, 34.550881044111094], [-77.34836296029714, 34.55085385619999], [-77.34832079346198, 34.5507682197363], [-77.34832077490422, 34.550766630523015], [-77.3483186822261, 34.55074903206132], [-77.34831050092673, 34.550652190154665], [-77.34830519216105, 34.55064646253675], [-77.34828901699457, 34.55062856299802], [-77.34821114136119, 34.550486008332186], [-77.34818668263846, 34.550418694816024], [-77.34793818034736, 34.55022260282941], [-77.34793106605753, 34.55021519856234], [-77.34792688729983, 34.55021125739425], [-77.3479171476566, 34.55019920788928], [-77.34773474938413, 34.54988101845511], [-77.34757012712993, 34.5497729514013], [-77.34756353610568, 34.54976920157961], [-77.34755618224673, 34.549761356728695], [-77.34746146335253, 34.54960507352719], [-77.3473890389308, 34.54955418768002], [-77.34723666514394, 34.54937127244071], [-77.34722266780973, 34.54933330640908], [-77.34720526834309, 34.5493161986791], [-77.34717451435598, 34.54928596017787], [-77.34704633788864, 34.549113857768404], [-77.34697240794328, 34.54900966941712], [-77.34679051541775, 34.54891193426398], [-77.34678616178779, 34.548906473388705], [-77.34668472062278, 34.548744622338404], [-77.34658711858222, 34.54869029229806], [-77.34640635938358, 34.54854487491582], [-77.34637386152578, 34.54849710731508], [-77.34636013754324, 34.54847813098073], [-77.34632091283166, 34.54842882539844], [-77.34620999309996, 34.54813838262008], [-77.34602444906737, 34.54808052618988], [-77.34599109089362, 34.54804158973174], [-77.34596274896342, 34.548006123895796], [-77.34592096597709, 34.547929269311105], [-77.34588681444984, 34.547900189787214], [-77.3458333075784, 34.54785650527752], [-77.34580596243944, 34.547823405919125], [-77.34577703938595, 34.54774189199072], [-77.34564167937204, 34.54765364227734], [-77.34560321704774, 34.54763205082517], [-77.34559515716307, 34.547608916123174], [-77.34555305658253, 34.547558340672694], [-77.3455118065419, 34.54745985942898], [-77.34545005007028, 34.54745086727817], [-77.3454017733751, 34.54739191964753], [-77.34535219126766, 34.547339270055645], [-77.34534789282671, 34.54733429316198], [-77.34530428956285, 34.5472835352697], [-77.34529807393895, 34.54725953881956], [-77.34525883822589, 34.54723002798109], [-77.34522401913398, 34.54719489172195], [-77.3452005856021, 34.54717604565606], [-77.34515162312552, 34.54700831481201], [-77.34487671010646, 34.54677566617131], [-77.34484611262926, 34.54675675711509], [-77.34484445326753, 34.54673764408335], [-77.3447971163605, 34.54669364182228], [-77.34466647360145, 34.54651843046906], [-77.3446497536045, 34.546422619092056], [-77.3444939639188, 34.54634828052467], [-77.34445036325033, 34.54630470269579], [-77.34428777032923, 34.546213788223255], [-77.34425112772257, 34.546179510415314], [-77.34419188956173, 34.54609706923695], [-77.34415300025131, 34.54607440316095], [-77.34410832827933, 34.54604630163377], [-77.3440522271104, 34.5459947522247], [-77.34403057542812, 34.545925678240124], [-77.34401269777005, 34.54587802938402], [-77.34387335121005, 34.5458032815026], [-77.34384499706307, 34.54577974599509], [-77.34378864772982, 34.54574669170765], [-77.34372412496398, 34.54568237433477], [-77.3437200848044, 34.545677890608225], [-77.34371729372823, 34.54567570823579], [-77.34370232212173, 34.54566400176788], [-77.34361278816948, 34.54556833303005], [-77.34360185366891, 34.5455259934335], [-77.34355012642082, 34.545454937961594], [-77.34351106953471, 34.54535333094691], [-77.34334195614915, 34.54523044813589], [-77.34317953246199, 34.54512146735189], [-77.34295314935297, 34.54506623072378], [-77.34294254642559, 34.54505941598779], [-77.34293829201413, 34.545053318045106], [-77.34286580646753, 34.54487612922521], [-77.34256969337986, 34.54467034939179], [-77.34253894934469, 34.544640726034984], [-77.34252513451598, 34.544623115157755], [-77.34249322311965, 34.544578699860004], [-77.3424476580377, 34.54446844909426], [-77.3423783915604, 34.54445401380023], [-77.34233010232231, 34.5444063524042], [-77.34229859391442, 34.54433988036795], [-77.3421858480097, 34.54429148574958], [-77.34195803312902, 34.544215056120976], [-77.34196192418754, 34.54411190148751], [-77.34179736028794, 34.5441137350936], [-77.34165634649351, 34.54417134785703], [-77.34140343257945, 34.5441714956218], [-77.34134800071288, 34.544093677249656], [-77.34130633336294, 34.544063982737725], [-77.34125392256587, 34.544044180414275], [-77.34121098094715, 34.54400509577824], [-77.34118197915946, 34.54397793780703], [-77.3411593832378, 34.54396271138462], [-77.34109163169296, 34.5438964660471], [-77.34112081647237, 34.543845849639816], [-77.34115629431298, 34.54375602829414], [-77.34101966732769, 34.54378948571996], [-77.3407618131034, 34.54373592044709], [-77.34062915589615, 34.54369948321587], [-77.34060559986719, 34.54368996719729], [-77.34059210333831, 34.54367708196112], [-77.34038493965679, 34.54361556362081], [-77.34035925492657, 34.54358816528703], [-77.34030937991372, 34.543552057155196], [-77.34025094906873, 34.54348724491735], [-77.34024631674855, 34.54348200087273], [-77.34024626055893, 34.543479139209225], [-77.34024171297094, 34.54347678913174], [-77.34010416221642, 34.543380038651584], [-77.34016987667565, 34.543295586868965], [-77.33994840353739, 34.54328003298076], [-77.33989906014455, 34.54325912792436], [-77.33985358703828, 34.54328371789287], [-77.33974383175628, 34.54318704822594], [-77.33969339743955, 34.543173378413655], [-77.33966015899425, 34.54315975592813], [-77.33963243394227, 34.54314186630874], [-77.33960238971743, 34.54312155882983], [-77.33959830428245, 34.54311617297965], [-77.33957930009564, 34.54310885940314], [-77.33957829051812, 34.54310375045867], [-77.33957078006138, 34.543094049869104], [-77.33956886449313, 34.543089805089544], [-77.3395673540808, 34.54308772962603], [-77.3395637007379, 34.54308672521182], [-77.33953846804722, 34.543078320739234], [-77.33951498479057, 34.54307126110175], [-77.33951124222837, 34.54306984497572], [-77.33950788804799, 34.54306343472652], [-77.33948588632559, 34.543040535398575], [-77.33947770323877, 34.54303488354475], [-77.33947267364422, 34.543027134662395], [-77.33946725890036, 34.5430129917958], [-77.3394671359942, 34.54301271072128], [-77.3394670439805, 34.543012643257434], [-77.33946705731633, 34.543012508663345], [-77.33946001191593, 34.54298793308046], [-77.33944998555219, 34.54298449452896], [-77.33945254793429, 34.54297439554572], [-77.3394404265735, 34.542942415483694], [-77.33939823604422, 34.542930733166614], [-77.33939568748994, 34.542915927149444], [-77.33932181835183, 34.54291075747153], [-77.33931701322646, 34.542942415386094], [-77.33935390048362, 34.54294753975613], [-77.33937003835085, 34.54297293213943], [-77.33938162598113, 34.54298689916617], [-77.33938346713052, 34.54299406185649], [-77.33939157073499, 34.54300681258961], [-77.33939035500255, 34.54301046263117], [-77.339378095579, 34.543025436683315], [-77.3393755324517, 34.54303005539498], [-77.33936848098892, 34.54304026249504], [-77.33934676615598, 34.54304710231477], [-77.33930375096226, 34.543045812871455], [-77.3392707873457, 34.54302065570306], [-77.33926440731902, 34.543015242756766], [-77.3392616801203, 34.54301157834605], [-77.33925480008071, 34.54300233395954], [-77.33923526540015, 34.54295417306225], [-77.33923216715729, 34.54291896459774], [-77.33922549148247, 34.54289437434121], [-77.33927496728546, 34.54283995115773], [-77.33934235053351, 34.54279655189584], [-77.33935113672652, 34.54270829367399], [-77.33932211498535, 34.54263565909292], [-77.33928906883604, 34.54252221377376], [-77.33929830226283, 34.54251667526364], [-77.33928633492128, 34.542515980842225], [-77.33928260690311, 34.542509680505724], [-77.33922452022688, 34.54240487830499], [-77.33918118904474, 34.542354189184444], [-77.3391682791215, 34.54233921318076], [-77.3391446058798, 34.542293963347035], [-77.33909242735444, 34.54224541018331], [-77.339068136705, 34.542198379083935], [-77.3390550639464, 34.5421844330424], [-77.33903503335675, 34.54215014851967], [-77.33901944278938, 34.54199388079984], [-77.33890235385586, 34.54197660915991], [-77.33889397129136, 34.541962784797256], [-77.33888923418178, 34.54195497243211], [-77.33885521768104, 34.54187678440525], [-77.3388340393192, 34.54184899571569], [-77.33880804544927, 34.54181074986016], [-77.33880129662964, 34.54179690885619], [-77.3387955771488, 34.5417851788602], [-77.33883102145916, 34.541727020854594], [-77.33885337802958, 34.54163684038636], [-77.33871584217624, 34.54155392805968], [-77.33869068039986, 34.54150238779832], [-77.33868615167623, 34.54148350773555], [-77.33867725222646, 34.541381910268505], [-77.33864996355138, 34.541341689973414], [-77.33866774133267, 34.54129460741889], [-77.33862393297879, 34.541284423805294], [-77.3386189602362, 34.54126788530674], [-77.33861989132578, 34.54121013933231], [-77.33861888346927, 34.54120235876664], [-77.33864000593107, 34.54119492221595], [-77.33872373060623, 34.54121300775688], [-77.3387854896421, 34.54120552823064], [-77.33881121932784, 34.54124023334198], [-77.33889057218025, 34.54133461939666], [-77.33890325160812, 34.54134940559358], [-77.33889732219589, 34.541362260014665], [-77.33891224438207, 34.54147052092057], [-77.33902691655875, 34.541505554652446], [-77.33910729067479, 34.541602917952], [-77.33917283606596, 34.54167785834437], [-77.33928865349458, 34.5417902165013], [-77.33949066315375, 34.5420010937817], [-77.33956396606277, 34.54206460921951], [-77.33959806162265, 34.54210633359682], [-77.33962861742575, 34.542190702636915], [-77.3396515573135, 34.542221048284446], [-77.33965360925504, 34.54223812919736], [-77.33965678871928, 34.542342704692935], [-77.33963067017932, 34.54244010240831], [-77.33962757315247, 34.542469315967104], [-77.33965280314993, 34.542480076443205], [-77.33968956571819, 34.54258280829302], [-77.3396563967542, 34.542701026355346], [-77.3396578895802, 34.54271756587933], [-77.33967033965276, 34.542719542514845], [-77.33976650000297, 34.54281656076384], [-77.33978262079864, 34.54286454134925], [-77.3397807133092, 34.54287572096516], [-77.33979150991735, 34.54289099809481], [-77.33980401401267, 34.5429086913161], [-77.33981289515586, 34.54292125806476], [-77.33981997651365, 34.542931278130155], [-77.33984196416756, 34.54294031556303], [-77.33984454407502, 34.54294786445206], [-77.33985186466603, 34.54295729380708], [-77.33985079388879, 34.54296380289619], [-77.33986080449122, 34.542971601871656], [-77.33987437903188, 34.54297612739428], [-77.33988866867126, 34.54298260240361], [-77.33989612361049, 34.543020011554525], [-77.33993592160238, 34.54303701031569], [-77.34005407766467, 34.5431022540374], [-77.34010769521365, 34.54310129033299], [-77.34024872887659, 34.54317332687925], [-77.34053858915314, 34.543130463244054], [-77.34064346299137, 34.5430805255203], [-77.34087551048844, 34.54300309072753], [-77.34103831824252, 34.54298244033284], [-77.34168795157547, 34.54319314313368], [-77.34181763671607, 34.543235992959595], [-77.34183911610599, 34.543239443386135], [-77.34189402086507, 34.54324498954205], [-77.34259860375617, 34.54341834136915], [-77.3428953116072, 34.543405741353624], [-77.34303579378468, 34.54357037708515], [-77.34328932827385, 34.54359032998546], [-77.34337946298312, 34.54360549113645], [-77.34351424614977, 34.543661508866556], [-77.34353317378024, 34.54374364292665], [-77.34357221958899, 34.54375880976959], [-77.34370166276835, 34.54376105992381], [-77.3437678783304, 34.543786400653936], [-77.34393098287251, 34.54382890779095], [-77.34396290646829, 34.54384132465841], [-77.34401572082712, 34.54391904027435], [-77.3440899338181, 34.54394999541313], [-77.34415526279233, 34.54401206003367], [-77.34416233729384, 34.54402035654628], [-77.34421744470264, 34.5440948699982], [-77.34425701202798, 34.544129145440735], [-77.34429541658673, 34.54415655157197], [-77.34434691564994, 34.54421332195921], [-77.34436058108798, 34.54422792294076], [-77.34439768123201, 34.54426369903106], [-77.34448018494413, 34.5443418569571], [-77.34450287030408, 34.544361616932605], [-77.34453889706595, 34.54440038079432], [-77.3445845743086, 34.544449248063515], [-77.34463489165816, 34.54450307949513], [-77.34468543026176, 34.5445571473342], [-77.3447645624669, 34.54464632074724], [-77.34482913807528, 34.544722091723536], [-77.34487201809904, 34.544775122038736], [-77.34488815766323, 34.544794158855595], [-77.34492133091788, 34.544840906411466], [-77.34500288301243, 34.54494870790772], [-77.34503843932394, 34.544995997784966], [-77.3451347924118, 34.545090256052845], [-77.3451757538799, 34.545139187142766], [-77.3452250723997, 34.54521396553557], [-77.3452512869145, 34.545243466983045], [-77.34530335510554, 34.54529937510721], [-77.34537309608749, 34.545392657126676], [-77.34541737991523, 34.54543111670791], [-77.34549479688707, 34.54551004145425], [-77.34551032414622, 34.545530181801475], [-77.34554109409466, 34.54556539298998], [-77.3455838774017, 34.54565198102851], [-77.34561889881866, 34.54568938534419], [-77.34568537591886, 34.54575817412959], [-77.34577970705074, 34.545868624999315], [-77.3458868703219, 34.54596934173249], [-77.34589156833883, 34.54597494038765], [-77.34590768239947, 34.54599220316569], [-77.34597167567793, 34.54608582427688], [-77.34601174720342, 34.54611621177245], [-77.34606825149491, 34.54618007196381], [-77.34616111483395, 34.54624455234871], [-77.3463274727198, 34.54644490301007], [-77.34639132336933, 34.54651508409614], [-77.34639911981037, 34.54654718264141], [-77.3464514731973, 34.546587118313354], [-77.3465762981355, 34.5467332889727], [-77.34661650908814, 34.546865411102026], [-77.34672402660063, 34.54695685250108], [-77.34684187705619, 34.547177604340156], [-77.34685848439668, 34.54720011750018], [-77.3469444900715, 34.54741477133349], [-77.34707890236109, 34.54748097778969], [-77.34720091075025, 34.54762269557886], [-77.34720546053168, 34.54762657814238], [-77.34721255305827, 34.54763455050732], [-77.34733974739578, 34.54776633044137], [-77.3474068065548, 34.54783788889737], [-77.34755256219594, 34.54803468346867], [-77.34756074134016, 34.54806055971012], [-77.34758191113539, 34.54806581839898], [-77.34759474056611, 34.54808704127443], [-77.34775257444534, 34.54827777652974], [-77.34783324386466, 34.548358369155814], [-77.34787579608047, 34.548504866109894], [-77.34789779305801, 34.54855088653434], [-77.34797309654132, 34.548706123820246], [-77.34798975945671, 34.5487226600162], [-77.34800273503187, 34.54873142072352], [-77.34812263961884, 34.54880889231553], [-77.34831001180567, 34.548932025250956], [-77.34833193768347, 34.548946478911304], [-77.34835939114996, 34.548980597276724], [-77.34856972769975, 34.54913947302512], [-77.3486533866718, 34.54918598183652], [-77.34874695295736, 34.549200119563224], [-77.34890918680202, 34.5493354452843], [-77.34901589092425, 34.549394422862534], [-77.34913196975087, 34.54953033011636], [-77.34914642701698, 34.54954612661771], [-77.34934727822602, 34.54962640739539], [-77.34935637235783, 34.54963832492724], [-77.34945557936419, 34.54966514452893], [-77.34952032249446, 34.54971566625042], [-77.34954215621434, 34.54972031850659], [-77.34954798279077, 34.54973316144069], [-77.34956365685605, 34.549758542524785], [-77.34959523550512, 34.54978756668068], [-77.34960525700126, 34.54979325489461], [-77.34961629981065, 34.54981030074502], [-77.34964385835086, 34.54984177472135], [-77.34966460740189, 34.549869028894165], [-77.34966516342045, 34.549870035031056], [-77.34965045974694, 34.549902029962155], [-77.34965732154839, 34.549928314861575], [-77.34961339680198, 34.54993649405084], [-77.3495625836631, 34.54997588118973], [-77.34954546344242, 34.54999807300452], [-77.34954200620109, 34.55002213024765], [-77.34957943243236, 34.55001460343546], [-77.34961195496561, 34.54999917047988], [-77.34965848102667, 34.549994343578135], [-77.3497103462077, 34.54998888576766], [-77.3497375727302, 34.55001190419067], [-77.34977757454291, 34.55002491520056], [-77.3497914738658, 34.550055693519326], [-77.34979671882056, 34.55006459781962], [-77.34979670176803, 34.55007078302664], [-77.34980641347778, 34.55007963283764], [-77.34982873256395, 34.550106887824434], [-77.34984086279475, 34.55011945035184], [-77.3498555542078, 34.550148972776526], [-77.34986652505184, 34.550176962569914], [-77.34986636675879, 34.55019909281521], [-77.34987261147798, 34.55028146506582], [-77.34985827304462, 34.55030056058605], [-77.34986320834098, 34.55032216215339], [-77.34989848895941, 34.55034393842562], [-77.3499312345989, 34.55039137219221], [-77.34994965831008, 34.55040981990569], [-77.35002219553996, 34.55044322954752], [-77.35009095880672, 34.55051091625411], [-77.35009181872422, 34.55051123142127], [-77.35009225772357, 34.55051254223611], [-77.35016392991699, 34.55062380506562], [-77.35021151195109, 34.550662029466864], [-77.35024082909223, 34.550709031844605], [-77.35024930837895, 34.55073392871469], [-77.35026437789372, 34.550742710278456], [-77.35027783460447, 34.55076042610375], [-77.35027802880421, 34.55076255179808], [-77.35027111296279, 34.550785864309105], [-77.35026269619654, 34.55079320733728], [-77.35027311450814, 34.55079644005522], [-77.35028061170908, 34.55080042400643], [-77.35031402983226, 34.55081642245624], [-77.35031512715652, 34.55082499264313], [-77.35032723493131, 34.55084512471515], [-77.3503766131712, 34.550894101086], [-77.35038045000283, 34.55089624844162], [-77.3503855432844, 34.55089793871398], [-77.35043661240707, 34.55091409510373], [-77.35047397614773, 34.550928575036764], [-77.35048961349925, 34.550934333653984], [-77.35050044627607, 34.55094260795173], [-77.35050270670041, 34.55096065766605], [-77.35050797546349, 34.55100272970491], [-77.3505224358729, 34.55103017996751], [-77.35053865875935, 34.551059519230414], [-77.35055476217619, 34.551126401599184], [-77.35057624877143, 34.551244826592274], [-77.35058533771462, 34.55129762268078], [-77.35059254037284, 34.55133917887541], [-77.35059980704118, 34.551380481505376], [-77.35061951791154, 34.551415114292716], [-77.35065739392694, 34.551489378369524], [-77.35067670757397, 34.55151685754067], [-77.35067835771574, 34.55152905703556], [-77.35068577294517, 34.55154650453272], [-77.3507279407463, 34.55164433191714], [-77.35075785792331, 34.551696818961915], [-77.35080351584675, 34.551755866048616], [-77.35084791071021, 34.551870045030526], [-77.3508549410739, 34.551877205063064], [-77.35095781385951, 34.55197848149848], [-77.35097078235827, 34.55201843983576], [-77.35103577547787, 34.552109036317894], [-77.3510744016591, 34.552181401515085], [-77.35109978260523, 34.55220287119185], [-77.35123140018591, 34.55230397594989], [-77.35123417986142, 34.55230593984849], [-77.35132427926618, 34.55235396743266], [-77.35132459520072, 34.55235414406294], [-77.351349748728, 34.552411718029006], [-77.35137792960992, 34.552434471422345], [-77.35142021181176, 34.55246548475639], [-77.35153249483955, 34.55255888702409], [-77.351613074148, 34.55261572973983], [-77.35161757830603, 34.55261799353448], [-77.35171137285315, 34.552664907193765], [-77.35180719539383, 34.55271121444804], [-77.3518123314304, 34.55271237511655], [-77.35194796022975, 34.552727263164215], [-77.3520030462963, 34.55273143203288], [-77.35217046544469, 34.55278324188686], [-77.35218479514863, 34.55278943154559], [-77.35219792018574, 34.55279418276058], [-77.35223615174554, 34.55279767693132], [-77.35243732855864, 34.552839721648354], [-77.35257223978553, 34.55284782659869], [-77.35258909407789, 34.55285762685839], [-77.35260370763092, 34.55285233382688], [-77.35273435082844, 34.552856349670726], [-77.35278540070047, 34.55285801922318], [-77.35284011553527, 34.55284317572266], [-77.35294060924917, 34.5528209695576], [-77.3529822970682, 34.552832727935716], [-77.35315614078735, 34.552778572495], [-77.35322089827241, 34.5527800773716], [-77.35322910620698, 34.552753282849764], [-77.35334841638604, 34.55271793549403], [-77.35337820489146, 34.552689998356826], [-77.35346880105294, 34.55265757681222], [-77.35347639128122, 34.55265601582559], [-77.35347813787284, 34.55265561800281], [-77.35357479656336, 34.55267795185011], [-77.35365653194765, 34.552619478455405], [-77.35370578488285, 34.55260405224047], [-77.35377315287134, 34.55258902281723], [-77.35379965148087, 34.5525649275821], [-77.35383753736485, 34.55254329609321], [-77.3538727997182, 34.55252413074866], [-77.35392137948256, 34.55249996819823], [-77.35392654831799, 34.552497352408444], [-77.35397211118807, 34.55247384443625], [-77.35399564406288, 34.55247400878576], [-77.35402359807364, 34.55245530886857], [-77.35402998785395, 34.552428625200115], [-77.35407126655505, 34.552430354589816], [-77.35413739246437, 34.55239815725808], [-77.3541702761043, 34.55239321406931], [-77.35428907686241, 34.55240406755345], [-77.35447527088773, 34.55245149907736], [-77.35451542401296, 34.55247416752037], [-77.35456037055994, 34.55250366455805], [-77.35461013010676, 34.55246252556208], [-77.35461647577833, 34.552431173263216], [-77.35463289931981, 34.552385277756144], [-77.35456337089718, 34.55237289711606], [-77.35445943427001, 34.55227516402731], [-77.35449527221351, 34.55220379768715], [-77.35451248986121, 34.5521666416531], [-77.3545682529507, 34.55216011670923], [-77.3546450885548, 34.55213468519055], [-77.3547652998517, 34.55212815886708], [-77.3548130313668, 34.55206449828051], [-77.35487035408278, 34.55202739442946], [-77.35496563124923, 34.55195301208895], [-77.35501994452339, 34.55191679876679], [-77.35506826146096, 34.55187649432318], [-77.35518233838766, 34.551747438084746], [-77.35519780837379, 34.551735434667286], [-77.35532143458026, 34.55162290893337], [-77.35535966584882, 34.551589723516315], [-77.35536164582491, 34.55158630695578], [-77.35536669127698, 34.55158528788152], [-77.35537203833893, 34.551584617844085], [-77.35556451438903, 34.55151940584369], [-77.35569841569337, 34.551501790233836], [-77.35576143381024, 34.551492919849906], [-77.35595890819405, 34.5513801601063], [-77.35596036148777, 34.55137883666781], [-77.35604630802038, 34.55129849791152], [-77.35608490264494, 34.551240497818256], [-77.35610996757933, 34.55120528481484], [-77.35616233869129, 34.55113170983226], [-77.35620784716527, 34.5511003871849], [-77.35621549774959, 34.551067062155354], [-77.3562501171605, 34.55102510156174], [-77.35626332179177, 34.55100836709767], [-77.35632508207037, 34.550984139194064], [-77.35636229544502, 34.55097267173633], [-77.3564269808474, 34.55094642867398], [-77.35652853697006, 34.55091219392203], [-77.35656024467208, 34.5509011854131], [-77.35662694274751, 34.55087640508489], [-77.35675798543116, 34.55083877936994], [-77.35680144777486, 34.55079660568043], [-77.3569581023947, 34.55067266803421], [-77.35700597375923, 34.550647744872556], [-77.35704989445183, 34.550611926913675], [-77.35732532615621, 34.55034792527799], [-77.35735112077991, 34.55032373605586], [-77.35735472737271, 34.5503206855904], [-77.35735890754566, 34.55031540837151], [-77.3575122829007, 34.55014897175429], [-77.35756095023146, 34.55006513027946], [-77.35759729249708, 34.55004347058656], [-77.3576745026999, 34.5499795274977], [-77.35770596772144, 34.54993919468547], [-77.35775516904779, 34.549898328603504], [-77.35776119585195, 34.54989325108235], [-77.35794661198378, 34.54986354918649], [-77.35795925810893, 34.54981666026325], [-77.35798205857384, 34.54985095418705], [-77.35800836389154, 34.54989359398241], [-77.35795697296018, 34.54999168505644], [-77.3581509424443, 34.55001853840337], [-77.35825833945027, 34.550015216761615], [-77.35834321013834, 34.54993607489408], [-77.35851047222667, 34.54988951831992], [-77.35854777894195, 34.54983423502945], [-77.35863679962677, 34.54970261112659], [-77.35884823112588, 34.54961853670564], [-77.35872456583493, 34.54953044078625], [-77.35873028384233, 34.54949972479715], [-77.35877640462537, 34.549491211550716], [-77.35877394327566, 34.54950682132505], [-77.35894625282984, 34.549578327247296], [-77.35897194194243, 34.54958461535239], [-77.35909387054618, 34.549552437040774], [-77.3591454084925, 34.549453883269116], [-77.35914562254558, 34.54945343148063], [-77.35914574204718, 34.54945328724438], [-77.35914579907242, 34.54945304740859], [-77.35915807974112, 34.54933530778769], [-77.35915993995921, 34.54932883099816], [-77.35915985401041, 34.54932172195757], [-77.35915851958565, 34.549211337284], [-77.35915846269633, 34.54920663180094], [-77.3591584082317, 34.54920212686892], [-77.35915700945239, 34.54908641804586], [-77.35915807187408, 34.54908427616598], [-77.3591559071672, 34.548995235443456], [-77.35915262577548, 34.548965124440095], [-77.35915464507244, 34.548961083174184], [-77.35915679033175, 34.54895665334754], [-77.35918913193197, 34.548834980011506], [-77.3592061334526, 34.5488039424159], [-77.35923083857958, 34.54874978491028], [-77.35925151275957, 34.54870358586646], [-77.35926860904543, 34.54864397709392], [-77.3592677995807, 34.54864003479838], [-77.35926851890483, 34.54863604183854], [-77.35928345389037, 34.54857657475737], [-77.35927556875113, 34.54857036208389], [-77.35927228487759, 34.54854758001282], [-77.35927101388549, 34.54854363675226], [-77.35926492045809, 34.54852076046155], [-77.35926404558307, 34.548518737837796], [-77.35926410575655, 34.54851815474792], [-77.35925225338616, 34.54851183502452], [-77.35926501874398, 34.54851646651886], [-77.35926567329739, 34.54851750603207], [-77.35928413770053, 34.54851182482393], [-77.35928224217923, 34.54850496718789], [-77.35927130104506, 34.548501817202954], [-77.35926544897265, 34.54849767056796], [-77.35924189679156, 34.548505327070316], [-77.3592359572023, 34.54849160488607], [-77.35923531539478, 34.54848013535752], [-77.35923437859955, 34.54846122920194], [-77.35924632246152, 34.54841146089518], [-77.35924387749992, 34.54839865549045], [-77.35925053861676, 34.54838681623687], [-77.35926905904668, 34.5483399527434], [-77.35927082535972, 34.54833356929374], [-77.35927911103603, 34.54832630280984], [-77.35926924622134, 34.54833177541329], [-77.35922932358235, 34.54830363591043], [-77.35922568867193, 34.548278862581405], [-77.35924011391823, 34.54825755973481], [-77.35926408758466, 34.54821212750087], [-77.35930139058192, 34.54812840821542], [-77.35931596858468, 34.5480822451179], [-77.35934028019004, 34.548057925447225], [-77.35937464041325, 34.54801536367288], [-77.35951111635092, 34.54796969269104], [-77.35957266396164, 34.547940200128195], [-77.35961150245177, 34.54794151637412], [-77.35960197191332, 34.54790093508464], [-77.35959384596919, 34.54779740875949], [-77.35965010403521, 34.54771192897658], [-77.35965524442841, 34.547666155855914], [-77.35965099830992, 34.547622453502484], [-77.35968466364795, 34.547539507636415], [-77.35968162486374, 34.547478896679564], [-77.35968164174442, 34.54747873681938], [-77.359681570894, 34.547478627094186], [-77.35968141039807, 34.5474772365856], [-77.35967481591108, 34.5474185137062], [-77.35967909936424, 34.547359807851805], [-77.35967660061561, 34.54735226797574], [-77.35965983051119, 34.54729825953365], [-77.35964440840198, 34.547265371848745], [-77.35961856428148, 34.54719984674851], [-77.35961176262717, 34.547182769089524], [-77.35961494350667, 34.54716698090306], [-77.35960275550252, 34.54706797085711], [-77.35960503143525, 34.54706132636312], [-77.35960561869997, 34.54705334823771], [-77.35962369873008, 34.546953976316914], [-77.35962788240236, 34.54693562393475], [-77.35962610622083, 34.54691715393903], [-77.35962438936116, 34.54683012805344], [-77.35962599521235, 34.546813483690286], [-77.3596256780213, 34.5467967884243], [-77.35961953677254, 34.5467035827674], [-77.35961977891483, 34.54669196682025], [-77.35961721417317, 34.546682504228514], [-77.3596030987409, 34.54661036374604], [-77.35959639152827, 34.54657292251414], [-77.35958429557459, 34.5464660376525], [-77.35957527773917, 34.54645355080497], [-77.35949099670951, 34.5463926734161], [-77.3594324620288, 34.54635170360798], [-77.35943887870648, 34.54633470906194], [-77.35941383754857, 34.54630283678697], [-77.35927414598547, 34.54628716480396], [-77.35902238897259, 34.546252596779595], [-77.35888026188464, 34.54627470652792], [-77.35862789388733, 34.546335419636506], [-77.35848907032737, 34.54632937566613], [-77.35843169812745, 34.54633088793619], [-77.35837040098593, 34.546259806195444], [-77.35835604331558, 34.54618867076775], [-77.3583685161983, 34.54609489544808], [-77.35849608250783, 34.54599688600814], [-77.35839324246786, 34.54591914282997], [-77.35840048492842, 34.54586207960636], [-77.35841453195192, 34.545763804714205], [-77.3583767234728, 34.54572633286475], [-77.35840645463306, 34.54566776767142], [-77.3584378674729, 34.54563803290031], [-77.35843958098073, 34.54563273173875], [-77.35863549302309, 34.54548716533782], [-77.35863804330863, 34.54548092573368], [-77.35864788858697, 34.54546221584714], [-77.3586579117929, 34.54547746896428], [-77.358658663281, 34.54548382907485], [-77.35903568253703, 34.54567192382676], [-77.3590489083099, 34.54566432204655], [-77.35943326910262, 34.54545387798812], [-77.35948813282492, 34.54539780438264], [-77.35951650685267, 34.545360305696576], [-77.35949188126878, 34.545329082041725], [-77.35947490478523, 34.54514299923848], [-77.35946363742651, 34.545123094769735], [-77.35952383526174, 34.5450635204457], [-77.35962315430974, 34.544966761925295], [-77.35964132193723, 34.54494023332655], [-77.35967324633944, 34.544866950075125], [-77.35967164178481, 34.54484831868953], [-77.35967481754889, 34.54482856690866], [-77.35967849946789, 34.544786125186306], [-77.35968064753175, 34.544763809986755], [-77.3596821387779, 34.54474709237838], [-77.35968635503541, 34.54472378798748], [-77.35968599603402, 34.544699417410584], [-77.3596868191849, 34.544662515143614], [-77.35968745910216, 34.544625496627944], [-77.35968523763398, 34.5446015368784], [-77.3596873754711, 34.544577683929795], [-77.35968626923369, 34.54456282551306], [-77.35968460127197, 34.544540422506955], [-77.35968312231321, 34.544520557996705], [-77.3596814725705, 34.54449839946895], [-77.35968429601232, 34.544479260456946], [-77.35969068134699, 34.54445449246142], [-77.35969518255459, 34.54438088576899], [-77.35969712476, 34.54435500111027], [-77.35969941168734, 34.544327195737424], [-77.35969991342537, 34.54432109543551], [-77.35969631163013, 34.544293912191826], [-77.3596981873327, 34.54425816338154], [-77.35970755093797, 34.544231087727454], [-77.35971021438861, 34.54419833056364], [-77.3597148085309, 34.54414206618975], [-77.35972444987542, 34.54410624226456], [-77.35971247620031, 34.54407592926097], [-77.35970401816125, 34.544012631636114], [-77.35970002328929, 34.543987347667496], [-77.35969931143072, 34.543965203027426], [-77.35969246511773, 34.54388282597078], [-77.3597016022303, 34.543864708279784], [-77.35970888560472, 34.543837267630074], [-77.35973441020904, 34.54377905043014], [-77.35978912707614, 34.54372969260534], [-77.3598335496085, 34.54370310346838], [-77.35986624960015, 34.54368908577955], [-77.35989935969086, 34.54367303193379], [-77.35995787617392, 34.54364882696842], [-77.35996533317062, 34.54364813858591], [-77.35998713181363, 34.54367057659774], [-77.35998705939714, 34.5436870853715], [-77.35999030005866, 34.54370072337286], [-77.35998250066152, 34.54375088040633], [-77.35998610619744, 34.54377733138952], [-77.35999233139364, 34.54382284289128], [-77.35999277793532, 34.54386379215315], [-77.35999216793422, 34.54390446496347], [-77.35999151888554, 34.54394537195968], [-77.35998640615887, 34.54398930424958], [-77.3599860031098, 34.54402564960265], [-77.35998274478607, 34.544069047511236], [-77.3599571878193, 34.54413210703331], [-77.3599562415288, 34.54413535309715], [-77.35995406420136, 34.54414059597022], [-77.35993444631322, 34.54418684058656], [-77.3599380347839, 34.54419789792566], [-77.3599496203777, 34.5442563157279], [-77.35994951837311, 34.54425745030292], [-77.35994944319646, 34.544258658079876], [-77.35995295024156, 34.54431816209559], [-77.35995228406205, 34.54437719785624], [-77.3599528172676, 34.544382055379124], [-77.35996458598618, 34.544438898588794], [-77.35996104949528, 34.544491253838494], [-77.35996182602058, 34.544510622799486], [-77.3599618751701, 34.54456170100697], [-77.35995106394546, 34.544619500851134], [-77.35995016298307, 34.54462913227591], [-77.35994956916753, 34.544685885139955], [-77.35995011706642, 34.54474090726576], [-77.35995012002176, 34.54475329553717], [-77.35994881969324, 34.54480840511843], [-77.35994691201071, 34.54486402269908], [-77.35994717253267, 34.54487604558862], [-77.35994592512046, 34.54493123399158], [-77.35994518200098, 34.54498602180079], [-77.35994500361521, 34.54499917445165], [-77.35993292785867, 34.545055517654994], [-77.35992763650039, 34.54511490855863], [-77.3599274354818, 34.54517872060759], [-77.35991278939312, 34.54523186890993], [-77.35990760817104, 34.54524278180075], [-77.35991124066922, 34.54525308849487], [-77.3599140873146, 34.54530305479231], [-77.35991911415722, 34.54535913031942], [-77.35991625420606, 34.54542515480422], [-77.35992029693885, 34.5454876141676], [-77.35993548676326, 34.545544797269265], [-77.3599488154221, 34.54562194967843], [-77.35994172435379, 34.54566631120065], [-77.35993556728486, 34.5457174371557], [-77.35991962041973, 34.54579190611469], [-77.35990553654187, 34.54584926071878], [-77.35990061883388, 34.545917054457526], [-77.35987951937639, 34.546001233976824], [-77.35986243611815, 34.54604496472844], [-77.35984416675994, 34.54606776983543], [-77.359838445236, 34.54617083146252], [-77.35984697940542, 34.54626723979709], [-77.35984617655868, 34.54629213018842], [-77.35984471572863, 34.54631640523939], [-77.35983003086729, 34.54641686717128], [-77.3598318866178, 34.54652004152659], [-77.35982976654212, 34.54653931725728], [-77.35983097695762, 34.546558089035415], [-77.35982733917913, 34.54666207881602], [-77.3598321668221, 34.54668285211354], [-77.35983878583896, 34.54672163654777], [-77.35983746389748, 34.546757200258845], [-77.3598366909923, 34.54678314419548], [-77.35984094960872, 34.546811309425465], [-77.3598439173444, 34.54684330964864], [-77.3598431858543, 34.54687355971304], [-77.35984241906506, 34.54690473138834], [-77.3598463511718, 34.546938121616705], [-77.35984537181119, 34.54696551223433], [-77.35985109648703, 34.546988262813414], [-77.359852505478, 34.547025690991845], [-77.35985507255288, 34.54706654901271], [-77.35985649904052, 34.54708632196983], [-77.35985531438416, 34.547105760564236], [-77.3598610982128, 34.547146865684134], [-77.3598771404788, 34.54720146999089], [-77.35987850833013, 34.54720556472503], [-77.35987840639434, 34.54720897459728], [-77.35987546320948, 34.54726720918873], [-77.3598949721863, 34.54731712762284], [-77.35989591025744, 34.54733478623499], [-77.35990838666875, 34.54738488036228], [-77.3599170229787, 34.54742112968616], [-77.35992646649753, 34.54747383696168], [-77.3599122068247, 34.54750674227415], [-77.35991914610165, 34.5475944593084], [-77.35991377988884, 34.54762892779034], [-77.35993430214432, 34.54764943284208], [-77.35994452001438, 34.547730988614745], [-77.35993420320213, 34.547748398934864], [-77.3599684017978, 34.54780333931185], [-77.35998901417884, 34.547849407376205], [-77.3599946935575, 34.54786210052849], [-77.36000469288089, 34.54788444862107], [-77.36000899857117, 34.54795497347929], [-77.36001942924159, 34.5479809507047], [-77.36003232327081, 34.54799766670236], [-77.36004147757944, 34.548008378815574], [-77.36002791586026, 34.54801993124717], [-77.36001986024093, 34.54804209467333], [-77.36001938139617, 34.54804682494827], [-77.3600201852033, 34.54806719764778], [-77.36001549205801, 34.54807332669272], [-77.36003561681484, 34.5480829902141], [-77.36004243629787, 34.5480805308504], [-77.36005336322513, 34.54809440410329], [-77.36005460542592, 34.54809829747412], [-77.36005499053309, 34.54810120249947], [-77.36005309470126, 34.54815636539388], [-77.36005203603249, 34.548159873483996], [-77.36005313333317, 34.54816295303675], [-77.36007380601252, 34.5482179446448], [-77.36009481440223, 34.54825209949976], [-77.36011421360354, 34.54831028530995], [-77.36012787261691, 34.548332571256694], [-77.36013144174007, 34.54834507063034], [-77.36013733198224, 34.54844571683603], [-77.36013784607557, 34.54845354716193], [-77.36013874976626, 34.54846023020946], [-77.3601489801131, 34.54849063012022], [-77.36015379365664, 34.54850919033575], [-77.36015448900645, 34.54851235664713], [-77.36015722445775, 34.54851748693955], [-77.36016000445517, 34.54854216544818], [-77.36017767526064, 34.548551462222946], [-77.3601820634807, 34.54856959200577], [-77.36017902409858, 34.54859018489683], [-77.36017221071205, 34.54861594281502], [-77.36017300984756, 34.54863210173856], [-77.3601750873812, 34.54867411089651], [-77.36017601536308, 34.54869287496842], [-77.36017306072434, 34.54871146728111], [-77.36014300373071, 34.548751848992474], [-77.36010490187572, 34.548802490117865], [-77.36009090915864, 34.54882754210287], [-77.36010305618997, 34.54884931297023], [-77.3601039371267, 34.54892620453107], [-77.3600791794577, 34.54895164319112], [-77.3600243796418, 34.549011681731685], [-77.36000085724454, 34.54902412736132], [-77.35993973303589, 34.54905627809684], [-77.35991817853095, 34.54908419617587], [-77.3599175249245, 34.54909733287603], [-77.35990321547646, 34.549121238036285], [-77.3598770833518, 34.54916436227177], [-77.35986820928866, 34.549184068837704], [-77.35985006735967, 34.54922945844511], [-77.35984274602909, 34.549287689696676], [-77.35984200897472, 34.54929182481645], [-77.35984793229706, 34.54929838755018], [-77.35983789620809, 34.549353623038], [-77.35983543830666, 34.54941390989406], [-77.35983558166771, 34.5494165626427], [-77.35980184040912, 34.54943933579775], [-77.35973360128192, 34.549485671847584], [-77.35972947516706, 34.54948912329975], [-77.35972741744078, 34.54949194329005], [-77.35971312929415, 34.54950646969167], [-77.3595638014478, 34.5496568871425], [-77.35942900008543, 34.5497797367573], [-77.35939885829437, 34.549825006548005], [-77.35933044349123, 34.54994635696134], [-77.35923233345892, 34.549992356560395], [-77.35913324248212, 34.549985372660245], [-77.35898305678434, 34.55008877127402], [-77.35895476612308, 34.55010568147917], [-77.35893357879326, 34.550131954123486], [-77.3588695496327, 34.55018840583315], [-77.35883945365438, 34.55023185989663], [-77.35880521793993, 34.55028129123941], [-77.35862945694728, 34.550384507781715], [-77.35861391402813, 34.55043658566327], [-77.35853299959302, 34.55047969485689], [-77.3583652536153, 34.55056397464921], [-77.35827974779802, 34.550591186490266], [-77.35813714542907, 34.550620973623275], [-77.3580823916345, 34.550674723141086], [-77.35804834991586, 34.550712999236], [-77.35785707640038, 34.550813469988775], [-77.35773807535705, 34.55090258158198], [-77.35765936243797, 34.550965645884396], [-77.35756786852892, 34.55102700002614], [-77.35745249395234, 34.551113367806266], [-77.35733817039662, 34.551220509865445], [-77.35726933629488, 34.55127262603113], [-77.35719273007142, 34.55132583246265], [-77.35703307831344, 34.551534572470075], [-77.35698221344502, 34.551600963470115], [-77.35696637340921, 34.55162196628451], [-77.35693584405885, 34.55164396703233], [-77.35683339325202, 34.551685676092845], [-77.35653921302324, 34.55181876778988], [-77.35638833389697, 34.55183747032919], [-77.35623226696003, 34.55189917671123], [-77.35614371980634, 34.55194386089877], [-77.35612626317901, 34.551958333947226], [-77.35610819515686, 34.551971613203285], [-77.35593568674506, 34.552113982634864], [-77.35574480941625, 34.55221792457134], [-77.35570283045428, 34.55224906059229], [-77.35563614009908, 34.55228439172251], [-77.35545300090277, 34.55237587988155], [-77.35534691897914, 34.552447399656856], [-77.35523615807287, 34.55251874891454], [-77.35508516829464, 34.552608528193275], [-77.3550547240104, 34.55267884626969], [-77.35494659879906, 34.5527826968706], [-77.35471384041867, 34.552906802715306], [-77.3547592275947, 34.55303182118489], [-77.35477544089623, 34.553142757964636]], [[-77.39119277560137, 34.70408599237289], [-77.39234495485032, 34.70494591560319], [-77.39201189675944, 34.70542607073514], [-77.39167686207395, 34.706213329979526], [-77.39158362892898, 34.706222251212765], [-77.3915274151733, 34.706251839599545], [-77.39146071506357, 34.706207158240986], [-77.39077086368641, 34.70589622341456], [-77.39068026031235, 34.70563988940285]], [[-77.31977291518326, 34.54578595294784], [-77.31985334821564, 34.54587241498617], [-77.32003302525382, 34.54589801643242], [-77.32006181271898, 34.54607828247569], [-77.319764447039, 34.5461484018467], [-77.31973465957363, 34.546167394670036], [-77.31952952213994, 34.54611729109064], [-77.31937539308808, 34.54599629144599], [-77.31936471264599, 34.54599402603419], [-77.3192618936192, 34.54583707754155], [-77.31898842613946, 34.545754947445545], [-77.31893079780306, 34.54560485833433], [-77.31875886127429, 34.54559143563416], [-77.31864102500084, 34.54558268592551], [-77.31859990650517, 34.545580113072475], [-77.31846917912941, 34.545471338409534], [-77.31820868368459, 34.545520951829516], [-77.31788340556952, 34.545514267101275], [-77.31781641962303, 34.54550633161052], [-77.31778867576286, 34.54550333301362], [-77.31771977709482, 34.54549588625272], [-77.31751704098107, 34.54546744265807], [-77.31742461076662, 34.54547225297372], [-77.31727578590682, 34.54546678165413], [-77.31722847761388, 34.54546499405304], [-77.31716654967852, 34.54549118026992], [-77.31703048530235, 34.54553719800729], [-77.31695716776039, 34.54556004347476], [-77.31686149636015, 34.54561916937459], [-77.31675958084219, 34.54571224999014], [-77.31663012740513, 34.545868440491056], [-77.3164440792534, 34.545679124730015], [-77.31655938410267, 34.54561474924988], [-77.31659260465032, 34.54553538623297], [-77.31662126567073, 34.54542092003344], [-77.31662867916263, 34.54540779923686], [-77.31663043459359, 34.54540091652439], [-77.31664197879921, 34.54536200016925], [-77.31666539002434, 34.545293722672056], [-77.31672036255867, 34.545272224787574], [-77.31677207940085, 34.545221465151656], [-77.31692240093209, 34.54519321428661], [-77.31703867345674, 34.54518722749356], [-77.31713408936388, 34.54514933715272], [-77.31724474253785, 34.545074498460195], [-77.31743592882064, 34.54498841029147], [-77.3176831807096, 34.54501152043452], [-77.31777165848366, 34.545033616150754], [-77.31782674730798, 34.54506473791965], [-77.31791578643598, 34.545033168668226], [-77.31802352411297, 34.54504443123204], [-77.31806446448664, 34.54505349575382], [-77.31812131005755, 34.54506003984154], [-77.31813257920683, 34.545069372189815], [-77.31815377555623, 34.54510660709739], [-77.31815328016548, 34.545148831295485], [-77.31810368035548, 34.54519592911093], [-77.3181147151484, 34.54525679024687], [-77.31821384882926, 34.545300054710566], [-77.31842771431579, 34.54528248309296], [-77.31860644042014, 34.54530062166624], [-77.31872490732748, 34.54527796101875], [-77.31880344739432, 34.54527047949297], [-77.31887957943324, 34.54525411096472], [-77.31891210892827, 34.545257048676085], [-77.31899956153005, 34.54527852941976], [-77.31903157750324, 34.545287355022964], [-77.31907666795895, 34.5453009699541], [-77.31902658896892, 34.54553242224719], [-77.31938707016204, 34.545496596905494], [-77.31939174220113, 34.54549759165341], [-77.31949082697412, 34.54548628508671], [-77.31948219178233, 34.54554758221614], [-77.3195302279232, 34.545634165183124], [-77.31960558806361, 34.54571461040343]], [[-77.3950568198747, 34.605212569515984], [-77.39520359319687, 34.6051169776197], [-77.39537330296977, 34.60493440191817], [-77.39545097807212, 34.60488597490105], [-77.39574083838326, 34.60476905742789], [-77.39584512492797, 34.604701947773265], [-77.39606690874419, 34.60459545898079], [-77.39639215255147, 34.60452757065404], [-77.39663341058314, 34.60438730663853], [-77.39713068943045, 34.604145253133446], [-77.39742168754753, 34.60413468893827], [-77.39784514252733, 34.6041848874981], [-77.3978449591946, 34.60372875346634], [-77.39820997517401, 34.603372182746256], [-77.39880815246866, 34.603385047762806], [-77.39899823163125, 34.60338469485181], [-77.39926054179978, 34.603241977503444], [-77.39946703452141, 34.60349475931915], [-77.39899821729418, 34.60406430254219], [-77.39854391295222, 34.60483684772856], [-77.39807168936136, 34.60539433689283], [-77.39763800203534, 34.60568997819178], [-77.39742162607068, 34.605697487950835], [-77.39725256089984, 34.60569461122164], [-77.39663333782882, 34.60588325062498], [-77.39637519150199, 34.606210126960505], [-77.39623916847135, 34.60642793944481], [-77.39621464805546, 34.60648493215795], [-77.39616510463951, 34.606518487980296], [-77.39592777317861, 34.60664186702884], [-77.39584501161367, 34.606665515681044], [-77.39573543970924, 34.60669848587547], [-77.39545085976016, 34.60678477055778], [-77.39524047960333, 34.6068497980788], [-77.39505668960294, 34.60716323093331], [-77.39453029355424, 34.60760340706365], [-77.39444805571111, 34.60780884479919], [-77.3942683314896, 34.60801404963824], [-77.39402944682554, 34.60826747708238], [-77.39349243009399, 34.60858880893922], [-77.39347998012335, 34.608594265269325], [-77.3934681162582, 34.608592945876], [-77.39272706920228, 34.608674448617386], [-77.39269166677778, 34.6086487924622], [-77.39256790568717, 34.608602220316655], [-77.39210262278174, 34.60858799274878], [-77.39220743407515, 34.60826587516948], [-77.3923850201845, 34.6082431199582], [-77.39269171606736, 34.60812218082092], [-77.39286141240107, 34.608026856070175], [-77.39296774092226, 34.60782874038274], [-77.39304491153663, 34.6074372259298], [-77.39307763948085, 34.60737938819408], [-77.3934419464477, 34.60691121811726], [-77.39346360446604, 34.606890299949654], [-77.3934801263017, 34.606866430852286], [-77.3936078038439, 34.606749777041045], [-77.39387430171573, 34.60649958052858], [-77.39393400304823, 34.60647999679138], [-77.39426848653517, 34.60596433539526], [-77.39427752236777, 34.60595131031178], [-77.3942827505902, 34.605940823957106]], [[-77.34275893880103, 34.52323610427419], [-77.3427007188051, 34.52305378228255], [-77.34287009614704, 34.52290325158092], [-77.34307607080832, 34.52274241307588], [-77.34368932339396, 34.522532044388385], [-77.34377138242013, 34.52289972588066], [-77.34348488187838, 34.52320257774282], [-77.34306032948442, 34.52342402034836]], [[-77.33840554175407, 34.55084646533047], [-77.33828874198532, 34.55075205389789], [-77.33815436986085, 34.55066391955725], [-77.3383181562496, 34.55072980388793], [-77.33850204882489, 34.550793888142465], [-77.33887870597951, 34.55077841803916], [-77.33849949189941, 34.55090439960704], [-77.33845945727985, 34.55086425403697]], [[-77.21798660419842, 34.61724096355789], [-77.21821090124898, 34.61716133606582], [-77.21824423498879, 34.61714141537861], [-77.21831695487215, 34.617077544219065], [-77.21852050056972, 34.617073254637454], [-77.21839490001211, 34.61717586834196], [-77.2183762130169, 34.61725884168709], [-77.21825040320223, 34.617400138201184], [-77.21811618012988, 34.617473802074485], [-77.21808589401418, 34.617387144870456], [-77.21792823846141, 34.61729473944239]], [[-77.31141769640789, 34.55049369444787], [-77.31151656730216, 34.55042612538591], [-77.3115832427402, 34.550395936940085], [-77.31174526626226, 34.550270882680934], [-77.31177493816702, 34.55024085865764], [-77.31179430119184, 34.55014143724556], [-77.31181918796838, 34.550115962334594], [-77.311897853977, 34.550052281516756], [-77.31198805926941, 34.54999121107602], [-77.31201918980666, 34.54995875614602], [-77.3121735148631, 34.5499380985255], [-77.31221791819782, 34.54985581643368], [-77.31239726719956, 34.54982113264695], [-77.31227773094639, 34.54994961687661], [-77.31228602014397, 34.550146522585024], [-77.31222685031803, 34.55021251785822], [-77.31193787662204, 34.55048803541857], [-77.31188919455748, 34.55054494985801], [-77.31180698335491, 34.55063625633841], [-77.31150511105112, 34.550854769915915], [-77.31140615575194, 34.55098558561535], [-77.31134240863788, 34.55102396987962], [-77.31124915241851, 34.551076544894144], [-77.31117721318712, 34.55119195562103], [-77.31100807303821, 34.55121780039069], [-77.31068958885733, 34.551353477123676], [-77.31082104774437, 34.551138012121214], [-77.31076373158918, 34.551056145726804], [-77.31079729993249, 34.55100691826982], [-77.31096650270311, 34.550872318783895], [-77.310997614261, 34.55085603759587], [-77.31101697295739, 34.5508385393308], [-77.31129946196464, 34.55075460872282], [-77.31133992809221, 34.55057389255848], [-77.31137751584313, 34.550544181241946]], [[-77.3958467651204, 34.580310964518034], [-77.39568418620479, 34.5804395781041], [-77.39545271740279, 34.58065554170712], [-77.39541294531682, 34.5806852516553], [-77.39520983670445, 34.580757404240764], [-77.39505868219985, 34.58081499669925], [-77.39495191149256, 34.580794610791365], [-77.39472741898692, 34.58075937409161], [-77.39466466674938, 34.58073734416034], [-77.39446403090957, 34.58064878681196], [-77.39427065661178, 34.58061078668403], [-77.39413421456373, 34.580635007675745], [-77.39403360571062, 34.58050250311929], [-77.39373137465856, 34.58027808573162], [-77.39370407594072, 34.579939453149954], [-77.39396039318738, 34.57999830551019], [-77.39427071972011, 34.57994628574895], [-77.39433469154258, 34.57996556757321], [-77.39463211035189, 34.57995644276384], [-77.39466473775268, 34.57995041396457], [-77.39470909711139, 34.5799326965584], [-77.395058765208, 34.57984445497469], [-77.39533809980522, 34.579766174581785], [-77.39565207248293, 34.579629739226164], [-77.39584678223758, 34.58008648460121], [-77.3960012716618, 34.58005219337692], [-77.39593507021125, 34.580228211754374], [-77.39589359323475, 34.58028465203496]], [[-77.27250761211296, 34.57206652136716], [-77.27251248227877, 34.57206957250984], [-77.27251134036696, 34.572065896386256], [-77.27250931931063, 34.57206516607708], [-77.27260598099423, 34.571988429370826], [-77.27264372187238, 34.57195846798916], [-77.27268665531649, 34.57192079215306], [-77.27270081342324, 34.571908472444825], [-77.27270834418277, 34.57190463048304], [-77.27271503099234, 34.571896232516586], [-77.27276845055631, 34.57185043798687], [-77.27287359841672, 34.57175943861949], [-77.2729420280647, 34.57179440266019], [-77.27292754113418, 34.571745108582704], [-77.27290337237781, 34.571733806731956], [-77.27298226260008, 34.57166589144287], [-77.2730187883133, 34.571634446983275], [-77.27306130718858, 34.571596569219125], [-77.27307521930251, 34.57158426678795], [-77.27308259242473, 34.57158054502883], [-77.27309093747618, 34.57157167127273], [-77.27314728714055, 34.571526713014336], [-77.27324031452372, 34.571450906270144], [-77.27337093036864, 34.571518661779024], [-77.27335744287787, 34.57142539651317], [-77.27330397542207, 34.57139999083651], [-77.27336623594002, 34.57135019537419], [-77.27341398358037, 34.57131200710352], [-77.2734172900914, 34.57130926000208], [-77.27346275897807, 34.571271742667165], [-77.2734900808768, 34.571259071113616], [-77.27353656680006, 34.57122098319756], [-77.27355897960062, 34.571205569360465], [-77.27358393010401, 34.57118805238545], [-77.27362881938758, 34.57121105802297], [-77.2736525628325, 34.571269377753524], [-77.27364992477766, 34.571273899292166], [-77.27361542843238, 34.571327838640826], [-77.27357792001254, 34.57137415617245], [-77.27351982974069, 34.571438158603215], [-77.27342922643471, 34.571536775369054], [-77.27341785355829, 34.571547977311255], [-77.27341227761579, 34.57155543221813], [-77.27338255065936, 34.57158630873371], [-77.27332717050757, 34.571644037504086], [-77.27331387633598, 34.571657638690894], [-77.2732388785304, 34.57172981050991], [-77.27319789012651, 34.571766356178316], [-77.27311636901925, 34.57183771447844], [-77.27305267179867, 34.57189279933662], [-77.27298967581672, 34.571946573085185], [-77.27295814184822, 34.57197302523805], [-77.27294694824931, 34.57198230010601], [-77.2728608623227, 34.57205080591835], [-77.27281895216682, 34.57209007343036], [-77.27275100989158, 34.572158323533664], [-77.27269484583847, 34.572198152380146], [-77.27268076483222, 34.57221922852774], [-77.27262271867185, 34.57231031667478], [-77.27258743828405, 34.57240332516387], [-77.27256559955498, 34.57242366046064], [-77.2725556728688, 34.572436568615814], [-77.27250151998899, 34.57253645721691], [-77.27247325192624, 34.57255115622228], [-77.2723292721535, 34.57256381396128], [-77.27224636424171, 34.57258315496025], [-77.2721879495439, 34.57260242723142], [-77.27210778458229, 34.57262334343596], [-77.2720502441127, 34.572644257207294], [-77.27196654786604, 34.57271982116175], [-77.27197408974716, 34.57263313217211], [-77.27193758599134, 34.57260996575426], [-77.27192420701209, 34.57260589338708], [-77.27192969446058, 34.5725843598035], [-77.27193543609691, 34.572555757674856], [-77.27194133717045, 34.57254740419285], [-77.27200444867503, 34.57249738794856], [-77.27211462348194, 34.57239676387312], [-77.27212349061442, 34.57238891149637], [-77.27212811000155, 34.572384917146906], [-77.27214195618778, 34.57237294440618], [-77.2722217772169, 34.57230392348387], [-77.27224840711202, 34.57228089666477], [-77.272296902089, 34.57223661139551], [-77.27231364074635, 34.572221325884925], [-77.27237605187699, 34.57217309615184]], [[-77.2131380879678, 34.62135639913111], [-77.21321112624885, 34.621327495333745], [-77.21338197104619, 34.6213756701902], [-77.21337643789049, 34.62138454416548], [-77.21327253025119, 34.62148486420148], [-77.21303523611104, 34.621674574797446], [-77.21307804767066, 34.62146949663246], [-77.21309855830836, 34.621440103417335]], [[-77.22278655333577, 34.61324983187487], [-77.22315987701785, 34.61313401452941], [-77.22284109169281, 34.613284696021374], [-77.2228089684836, 34.61331240168599], [-77.22274067333943, 34.61334039782842], [-77.22273281637672, 34.61329374663282], [-77.222756660589, 34.61327803037293], [-77.22276395525716, 34.6132723530923]], [[-77.374970802076, 34.68567049884536], [-77.37489098321946, 34.685646300770095], [-77.37480154848, 34.68542841109617], [-77.3760306866653, 34.68485438581634], [-77.37537116814774, 34.68593318412845]], [[-77.32282974264635, 34.54699981382955], [-77.32276863768898, 34.54697385631132], [-77.32277840874139, 34.54690431697573], [-77.32278870186784, 34.54672616078204], [-77.32289527283609, 34.54657876518601], [-77.32322392946712, 34.54662441013191], [-77.32329976494871, 34.54664436449485], [-77.3233223181745, 34.54664948715629], [-77.32367587578867, 34.5467767434388], [-77.32371854562324, 34.54681027152511], [-77.32374244312064, 34.546833931924894], [-77.32390360855038, 34.54695537363722], [-77.3236725074297, 34.54692120569938], [-77.32357113030814, 34.54692175390114], [-77.32303573173476, 34.54702961962264], [-77.32288495781012, 34.54702097776182]], [[-77.35932948795299, 34.54035322405218], [-77.35937782918236, 34.54023897151648], [-77.35946017616527, 34.54004275120182], [-77.35950022725123, 34.5399395645637], [-77.35956213415031, 34.53982393313727], [-77.35959806227538, 34.53993839294985], [-77.35960198650046, 34.53998907948796], [-77.3596455123901, 34.54020042440156], [-77.35967874226998, 34.54036008752219], [-77.35967646664608, 34.54052205906936], [-77.35971345783567, 34.54068028808714], [-77.35974015582784, 34.5407963645098], [-77.35976337455187, 34.54106108516219], [-77.35976065174079, 34.54116314015387], [-77.35977951221676, 34.54124933610686], [-77.3597733156467, 34.54131429154272], [-77.35976443121153, 34.54140742012044], [-77.35976194638269, 34.541504009524814], [-77.35976039812536, 34.541556375206675], [-77.35971424558537, 34.541659470952396], [-77.35968645621553, 34.541802521578134], [-77.35968439255564, 34.5420161306906], [-77.3596495166931, 34.54215844018877], [-77.35967755327607, 34.54226117218626], [-77.35966073057585, 34.54230474944724], [-77.35959021277843, 34.5424118041007], [-77.35958517945049, 34.5424645946389], [-77.3595092777633, 34.54266828287793], [-77.3594964927726, 34.542691690379435], [-77.35948685835278, 34.5426777189704], [-77.35948736484913, 34.542671438336455], [-77.35943326580167, 34.542476900401155], [-77.35940458054151, 34.542438535142665], [-77.35928569422322, 34.542347207909295], [-77.3592807562345, 34.54233395382276], [-77.35920804370544, 34.54228528656658], [-77.35920754438071, 34.54228084720791], [-77.35925614933917, 34.542215085195764], [-77.3592416479016, 34.54213916513566], [-77.35923883823988, 34.54204770425966], [-77.35928387980735, 34.54196626798793], [-77.35926243715332, 34.54181081704478], [-77.35924273172745, 34.54172736935169], [-77.35920635380833, 34.54168312087267], [-77.35919316576027, 34.54152874124863], [-77.3591904156476, 34.541490078981965], [-77.35917028374584, 34.54146904199707], [-77.35916874215978, 34.54139267221632], [-77.35918523277394, 34.541368413354505], [-77.35918676850565, 34.54127725852821], [-77.359202280035, 34.54124354654863], [-77.35920298985101, 34.541202911151], [-77.35920606869594, 34.540998177063386], [-77.35920725171357, 34.54079048534192], [-77.35922503920945, 34.54075062137306], [-77.35925742671837, 34.54067895591084]], [[-77.3152351886223, 34.54675709197818], [-77.31539295169561, 34.54680933843531], [-77.31530543536836, 34.54689844708314], [-77.31523933558096, 34.54695934536045], [-77.31513116202817, 34.547091747325226], [-77.31506902228355, 34.54712483552638], [-77.31502759943979, 34.54723885599904], [-77.3149522259306, 34.547316390438155], [-77.3148140082659, 34.547382106732925], [-77.31474846661433, 34.54746559161511], [-77.31462717848981, 34.54757209719012], [-77.31449225844167, 34.54751330120294], [-77.31458405699128, 34.54741513139351], [-77.31461106756932, 34.54739867350082], [-77.3146322253806, 34.54735664481672], [-77.31476502132264, 34.547225215440626], [-77.31492614246298, 34.54712119195206], [-77.31499388801909, 34.54708824265436], [-77.3150329530412, 34.54701026468011], [-77.31521473907424, 34.54694736606693], [-77.31515725638647, 34.54684318923296]], [[-77.3402640547018, 34.55100184243203], [-77.34033543225158, 34.55105854525142], [-77.34038443037359, 34.55109746967122], [-77.3404577003649, 34.551117239468994], [-77.34056597769718, 34.55114779533764], [-77.34061996664772, 34.55116063436846], [-77.34065300978814, 34.551160669831205], [-77.34074412043442, 34.55118337764977], [-77.34074710726124, 34.55118512666457], [-77.34076015399155, 34.55118705586621], [-77.3408483220629, 34.55120398454106], [-77.34087174215155, 34.55121151434763], [-77.34089719440809, 34.55122256536177], [-77.3409285064452, 34.55122890898551], [-77.34094568537704, 34.55123831686228], [-77.34098618548325, 34.551245611600606], [-77.34104314491015, 34.5512684882773], [-77.34109720893002, 34.55128229581008], [-77.34119184231623, 34.55130259434631], [-77.34123838805806, 34.551314812509474], [-77.34130772752738, 34.55132937164645], [-77.34134277303995, 34.551337874086094], [-77.3414338103907, 34.55135338877569], [-77.3415162949959, 34.55137833565412], [-77.3415787113008, 34.551400733749105], [-77.34162861571262, 34.5514186827889], [-77.34164117819329, 34.551421577416164], [-77.34169776238883, 34.55143134503084], [-77.34172623571216, 34.55144192508795], [-77.34180394724736, 34.55145936955269], [-77.34181650616254, 34.551462188742256], [-77.34182385712005, 34.55146510849923], [-77.34187517965668, 34.55148135909069], [-77.34201871259609, 34.5515282533413], [-77.34204151710853, 34.55153331430503], [-77.3420702667265, 34.55154347130483], [-77.34215378413387, 34.551569057447026], [-77.342213628253, 34.55158880383794], [-77.34228388433804, 34.551591309852235], [-77.3424093271382, 34.55161544494578], [-77.34244384977406, 34.5516121433257], [-77.3425958992506, 34.551596617265204], [-77.34262197580398, 34.55159643227664], [-77.34280256523725, 34.55158902162193], [-77.3429520720374, 34.55156851834455], [-77.34299922188757, 34.55157417523175], [-77.3430832982319, 34.55164256980946], [-77.34311820909332, 34.55168418083592], [-77.34319210959995, 34.551722619201996], [-77.34328278417482, 34.55180102508025], [-77.34337087710041, 34.55184602028753], [-77.34337901314076, 34.551848900605364], [-77.34338546098364, 34.55185100109276], [-77.34347387546867, 34.55189780980078], [-77.34357983942526, 34.55193490031283], [-77.34358632228482, 34.551937437382946], [-77.34368827909721, 34.551976958677564], [-77.3437747560786, 34.551995489614356], [-77.3438797007591, 34.55201764293888], [-77.34393867303638, 34.55202888030705], [-77.34397013645122, 34.552035990630124], [-77.34406027316307, 34.55205756208212], [-77.34406775208623, 34.55205947533714], [-77.34409463260894, 34.55206476539129], [-77.34416544592322, 34.5520795722277], [-77.34418485437178, 34.552083988514475], [-77.34421402697892, 34.55209195719536], [-77.34429935655407, 34.552118039853596], [-77.34436050034563, 34.55213421877913], [-77.34441389416895, 34.55215206432771], [-77.34445789615623, 34.55216724271314], [-77.34448295019511, 34.552175679568805], [-77.34452394378907, 34.55218948401094], [-77.34455532540042, 34.55219882015386], [-77.34461219644581, 34.55221829083082], [-77.34463504020634, 34.552226111743416], [-77.34472922552455, 34.552262659565294], [-77.34474995538031, 34.552271892439244], [-77.34480534248766, 34.55228645438287], [-77.34485496700472, 34.55230108140221], [-77.3449450583092, 34.55232446846554], [-77.34504842128858, 34.552339148369846], [-77.34510488945182, 34.55235335844179], [-77.34514066183482, 34.55235534282589], [-77.3452179291686, 34.55236305165849], [-77.34539871682313, 34.55237241975842], [-77.34547955071892, 34.552399532667955], [-77.34550978458452, 34.55240906885489], [-77.34553186711771, 34.55241718378889], [-77.34560624705063, 34.552456767139404], [-77.3457266215273, 34.55248491182061], [-77.34572871984247, 34.552486094514514], [-77.34581051572448, 34.55254358193715], [-77.34591332252356, 34.55258194523087], [-77.34591725481286, 34.55258350576072], [-77.34592065428494, 34.55258396402497], [-77.34593386611633, 34.55258727519322], [-77.34603569706447, 34.55261457556838], [-77.34605927112688, 34.552622152070676], [-77.34609777588625, 34.55262794851034], [-77.34611567237258, 34.55264027894898], [-77.34615142654964, 34.55264769763562], [-77.34619729058514, 34.552663499528286], [-77.34627003684305, 34.55267864021447], [-77.34631076778119, 34.552693248733966], [-77.34646825769873, 34.552723143810695], [-77.34653047790188, 34.552722957881635], [-77.34657211942792, 34.55273198041603], [-77.34665404867675, 34.55275014744369], [-77.34670186168844, 34.55276001755993], [-77.34678615237354, 34.552753652360785], [-77.34680934520244, 34.5527533348926], [-77.34689835543483, 34.552752309525154], [-77.34703830055585, 34.55275216487427], [-77.34709454542423, 34.55275778644904], [-77.3471191197229, 34.55276032838473], [-77.34722640024688, 34.55276025199443], [-77.34727738690664, 34.552761267792], [-77.3472908152556, 34.552759796631776], [-77.34735970045548, 34.5528022772893], [-77.34737619955203, 34.55280718768395], [-77.34738753289164, 34.55282234238457], [-77.34744054425192, 34.5528518501369], [-77.34745234240552, 34.552870258530405], [-77.34748420286913, 34.55288696380843], [-77.34756114248238, 34.552908622366246], [-77.34758178676604, 34.552911903384775], [-77.34764094619244, 34.552921242199545], [-77.34767961539347, 34.55292621694808], [-77.3476998716769, 34.55293694660323], [-77.34776463314984, 34.55298143251102], [-77.34777270298702, 34.55298767217337], [-77.3477737631332, 34.55298911724885], [-77.3478400231383, 34.55303919066435], [-77.34785344365943, 34.55314884372875], [-77.34776631431325, 34.553172206541205], [-77.34747576899035, 34.55325319795417], [-77.34730829505455, 34.553238108897816], [-77.347131539494, 34.55323363987595], [-77.34708354401806, 34.5532354154974], [-77.34698764951106, 34.55322429116373], [-77.34684514523595, 34.55320895691955], [-77.3466925017101, 34.553166300530506], [-77.34659452570489, 34.553157208084215], [-77.34644961326205, 34.55311683607423], [-77.34635756319868, 34.55309512735382], [-77.34630168043708, 34.553087616860594], [-77.34610860762928, 34.55304348853147], [-77.34610721780103, 34.55304317087515], [-77.34610639101254, 34.55304302563252], [-77.34610421288683, 34.55304275885381], [-77.34591067715658, 34.553016857963506], [-77.34578884288727, 34.552967083841395], [-77.34564220880166, 34.5529122624113], [-77.34552123422117, 34.55287843598003], [-77.34541173671231, 34.55284527035195], [-77.34532613629102, 34.552825573673374], [-77.34524744404419, 34.552800154793985], [-77.34518080180706, 34.5527786282636], [-77.34513120921366, 34.55276531104244], [-77.34499061006169, 34.5527146946527], [-77.34496007180715, 34.55270426577688], [-77.34493642322421, 34.55269894111125], [-77.34482989451408, 34.552670989710734], [-77.34474127513587, 34.55264828497302], [-77.34472188130472, 34.55264311230474], [-77.3446922885982, 34.55263520246539], [-77.34448518388183, 34.55258082900125], [-77.34435101999235, 34.55254522146108], [-77.34425054117978, 34.552516991091], [-77.34415629657805, 34.55247618403183], [-77.34413789756844, 34.55247013793841], [-77.34403191150868, 34.55244103899669], [-77.34396137827268, 34.552415607049525], [-77.34385939449834, 34.55238779284829], [-77.34380323998208, 34.55237268352762], [-77.34376621070953, 34.552365844098816], [-77.34361902816478, 34.55229996110884], [-77.34359975453316, 34.552285274513295], [-77.34357201892372, 34.55227380447724], [-77.34345828118788, 34.55225184966111], [-77.34334827984908, 34.55223416932265], [-77.34318074789675, 34.55221488175891], [-77.34283943070531, 34.55216728754602], [-77.34280456110503, 34.552162799747144], [-77.34278939979194, 34.55215931732109], [-77.34269817914313, 34.55213030930541], [-77.34257712383757, 34.55209350940463], [-77.34239919268532, 34.55205435579285], [-77.34233470395634, 34.552035552982225], [-77.34222478273614, 34.552010882578735], [-77.34208838158725, 34.55198054851636], [-77.34200884025599, 34.551955724997526], [-77.34193886588564, 34.55192959998599], [-77.34186996919836, 34.55190443043984], [-77.34181423921162, 34.55188152069382], [-77.34166943047062, 34.55184594600251], [-77.34163834238471, 34.55183830869355], [-77.34161904463576, 34.55183302506535], [-77.34152903278203, 34.551809678483515], [-77.3414011030846, 34.55177643240042], [-77.3412287812431, 34.551730616978006], [-77.34105295222786, 34.55168979876706], [-77.34092280540843, 34.55165556808898], [-77.34083841672644, 34.55163262211796], [-77.34068244443219, 34.55159605257889], [-77.34064317011526, 34.551586422431214], [-77.34046540285651, 34.551529488134335], [-77.34045631694552, 34.55152576973862], [-77.34044832941085, 34.55152266966047], [-77.34041567894137, 34.55151618760265], [-77.34021686143515, 34.551465568744796], [-77.34005820930082, 34.55141417615698], [-77.33999253236533, 34.55139392503331], [-77.3398717107558, 34.55137005803978], [-77.33974316821389, 34.5513412190673], [-77.33966753784502, 34.55132956633474], [-77.33952525872813, 34.5513311926034], [-77.33947127257792, 34.551327468320125], [-77.33944684087535, 34.551324038155485], [-77.33939421060921, 34.551316323857776], [-77.33927549597207, 34.55130424080073], [-77.33919134633203, 34.55127596874181], [-77.3391285291009, 34.55126228939481], [-77.33908045026685, 34.551249417306074], [-77.33905439115969, 34.55124278708488], [-77.33897172402752, 34.55120076359956], [-77.33888666810083, 34.55113998196271], [-77.3386493710344, 34.55105621719174], [-77.3388950220645, 34.55077884622376], [-77.33889821075128, 34.550777583026154], [-77.33917266875329, 34.55080742278745], [-77.33928664855299, 34.550822024552524], [-77.3393132013739, 34.55082178563442], [-77.33934624065542, 34.550833587252626], [-77.33945084006048, 34.55083833738715], [-77.33948261733906, 34.55083689260992], [-77.33951955620711, 34.550831617849475], [-77.33953223806654, 34.55081343003103], [-77.3395373020273, 34.55083326740543], [-77.3395599194534, 34.550833458168064], [-77.33958071005374, 34.55083964302289], [-77.33959005370042, 34.550834881714856], [-77.33961318588976, 34.550836199195345], [-77.33961990656339, 34.55084941221956], [-77.33961392932825, 34.55085629262661], [-77.33961330240042, 34.550877247659116], [-77.33961880167914, 34.550886194113275], [-77.33961947853007, 34.550891773620855], [-77.33962150381139, 34.55091640771528], [-77.3396289092953, 34.550944974183835], [-77.33963073022892, 34.55097628522847], [-77.33964055816394, 34.55099649690508], [-77.33967463650947, 34.551022570990845], [-77.33969109110237, 34.551018605570064], [-77.33972485433645, 34.55102395258804], [-77.33976179943865, 34.55102545245372], [-77.33977271615873, 34.55102589563827], [-77.33986610200722, 34.55100688668445], [-77.33987131943042, 34.55100657300751], [-77.3398779799794, 34.55100607554537], [-77.34007093835255, 34.5508635720322], [-77.34019428481659, 34.550999968306364]], [[-77.26830905297632, 34.57578550797865], [-77.2683059726706, 34.57584451115061], [-77.26829062018106, 34.575858268510125], [-77.2682826554232, 34.575865505164934], [-77.26825503147263, 34.575892322667855], [-77.26807672114587, 34.57595928391973], [-77.26814691512618, 34.57599595331129], [-77.26810253036805, 34.57603391256523], [-77.26799918274541, 34.57607102100859], [-77.2679253869791, 34.57617079769812], [-77.26790447118894, 34.57618637066538], [-77.26789005879073, 34.57619731925754], [-77.26764645576716, 34.576278953722394], [-77.26765324167926, 34.57629154198308], [-77.26766673747046, 34.57635954762215], [-77.26760830399958, 34.57639378765997], [-77.26755493790463, 34.576443286318735], [-77.2674241904705, 34.576416437730316], [-77.26717581632346, 34.576477613504245], [-77.26733792711899, 34.57657457957704], [-77.2672725218252, 34.57661015448968], [-77.26721516888959, 34.57671637597487], [-77.26719986747301, 34.576728692586464], [-77.26714711641168, 34.576711024650336], [-77.26716727833734, 34.576638506309834], [-77.26709593848183, 34.57651754345824], [-77.26710773608104, 34.57647710099397], [-77.26711358816509, 34.5764727202425], [-77.26711520414342, 34.576470242802685], [-77.26712705110008, 34.576456028154055], [-77.26731133337096, 34.57637043594705], [-77.26736526083302, 34.576364028344784], [-77.26762885417699, 34.576277569670445], [-77.26763034770322, 34.576271181155825], [-77.26765147395948, 34.57625241381824], [-77.2678482943906, 34.57613640976547], [-77.26784357835469, 34.57605878587704], [-77.26790551792757, 34.57599452993263], [-77.26798167177415, 34.575926427013584], [-77.26818620553863, 34.57585005857915], [-77.26821733502, 34.57580741258282]], [[-77.22885628725855, 34.60879901619753], [-77.22884539095581, 34.60882047593872], [-77.22878643033025, 34.608897491734865], [-77.22860769112859, 34.60902624665446], [-77.22842852003865, 34.60910707881833], [-77.22849098598958, 34.60930304028657], [-77.2283566253251, 34.60947779376173], [-77.22832111310895, 34.60955027155036], [-77.22826836551411, 34.60962207356169], [-77.22818107883019, 34.60969962062093], [-77.22791383087636, 34.60988631444214], [-77.227881747125, 34.60991167925534], [-77.2278654092751, 34.60992105952748], [-77.22783602675662, 34.60994137978954], [-77.22741805129273, 34.61018054402217], [-77.22723969149389, 34.61028618918694], [-77.2271258326793, 34.61018109181401], [-77.22714957197698, 34.61008957857648], [-77.22723607422128, 34.61001864504236], [-77.22778595922613, 34.60990412021828], [-77.22777152928799, 34.609837538001706], [-77.22765806129702, 34.60965834789731], [-77.22765735134652, 34.609614896382546], [-77.22776295733964, 34.60950117137129], [-77.22782845538045, 34.60943611497838], [-77.22792490260048, 34.609316507886795], [-77.22821934237533, 34.609037296226894], [-77.22825294588361, 34.60899825383326], [-77.22827493374544, 34.60897043920555], [-77.22836288505107, 34.60890117698503], [-77.228765518295, 34.60880302129487], [-77.22880310948685, 34.60878285993907]], [[-77.36534824030856, 34.527111454776346], [-77.3654397782061, 34.52706810749693], [-77.3654526521008, 34.527064781651355], [-77.36545412500493, 34.52706131364095], [-77.36554663808667, 34.52701750444625], [-77.36557736532498, 34.52700128716202], [-77.36563110731666, 34.526974609258495], [-77.36564032012183, 34.52691628863087], [-77.36564498864963, 34.5269100123283], [-77.36564952353244, 34.52690932123648], [-77.36564911253886, 34.52691201904174], [-77.36565028676858, 34.526971846057236], [-77.3656455959852, 34.52703298942773], [-77.36564562331708, 34.52703450195893], [-77.36559736296775, 34.52710188381649], [-77.36555342431097, 34.527223462129655], [-77.36555052005902, 34.52723104551744], [-77.36555841625317, 34.5272404281002], [-77.36557609880114, 34.527349773369394], [-77.36564754577313, 34.52739359795837], [-77.36565738147289, 34.52741276585269], [-77.36568533830814, 34.52745644820669], [-77.36567206574878, 34.52749573020973], [-77.36565259782562, 34.52753461887337], [-77.36559185819299, 34.52759232891094], [-77.36553067214997, 34.52771704087051], [-77.36552029271846, 34.52771860041993], [-77.36550951589007, 34.527726604940646], [-77.36552009041614, 34.52773147628188], [-77.36552963432214, 34.527762512709195], [-77.36554578980376, 34.52784379198409], [-77.36556030458392, 34.52786225111571], [-77.36552747458452, 34.52785714041291], [-77.36547502496428, 34.52785398697887], [-77.36537151136771, 34.527843955816195], [-77.36533197546626, 34.527824014724146], [-77.3652451439839, 34.52783307373815], [-77.36522896387449, 34.5278894363014], [-77.36493284342986, 34.52811404865801], [-77.36488905685388, 34.52815652427758], [-77.36489244605953, 34.52818274264544], [-77.36489078980777, 34.52820787562747], [-77.36481195072861, 34.528367366565575], [-77.36476998807001, 34.52844521003067], [-77.36476368428546, 34.528545485324166], [-77.36477715401963, 34.52859879702911], [-77.36466813383512, 34.528704708893756], [-77.36462445608126, 34.52877285617804], [-77.364524617288, 34.52880220978776], [-77.36426397978228, 34.52884580867827], [-77.36412962552738, 34.52891064117554], [-77.36399664716407, 34.52888475384124], [-77.36396598814889, 34.528805858386235], [-77.36393372203831, 34.52868510130562], [-77.3640098706397, 34.528391970343165], [-77.36408860567548, 34.52829854368904], [-77.3641072493584, 34.528272814556175], [-77.36414552979241, 34.52821430251112], [-77.36433282374747, 34.52801853656085], [-77.36442313358634, 34.527929801115626], [-77.36454442265925, 34.527745919746], [-77.36454736969529, 34.527742803615354], [-77.3645482414404, 34.52774231707114], [-77.3645488289064, 34.5277419331824], [-77.36455343390837, 34.52773909803716], [-77.36467436863353, 34.52767951064823], [-77.36474637851354, 34.52768523735946], [-77.36482922752947, 34.52770219853626], [-77.36483469039369, 34.52776756784033], [-77.364939768541, 34.527810722083075], [-77.36507863051497, 34.52775204720453], [-77.36513673805618, 34.527657897007515], [-77.36513097195063, 34.52754327373454], [-77.36527878419274, 34.5273926070655], [-77.3652485559412, 34.52733800973532], [-77.36524472640454, 34.52727510077726], [-77.36519376977776, 34.52725434528218], [-77.36522276644095, 34.52720127928297], [-77.36531684423714, 34.527142297982735], [-77.3653321369448, 34.52713031891592]], [[-77.30743248166644, 34.55284628739092], [-77.3071957992644, 34.55263769379428], [-77.30744375013589, 34.55251975750439], [-77.30760343258632, 34.552432654899945], [-77.30776878009333, 34.5523552021253], [-77.30783951635047, 34.552386817520876], [-77.30791397773123, 34.55228979202724], [-77.30813022917187, 34.55219234777268], [-77.30823791851087, 34.552141648468925], [-77.30825901287992, 34.55213085091515], [-77.30840480179181, 34.552115662259084], [-77.30843446834294, 34.552131859519164], [-77.30850471254976, 34.552204989370274], [-77.3084491025136, 34.552323445724966], [-77.30845725848184, 34.552351635168705], [-77.30831158325549, 34.55242740645856], [-77.30823023526686, 34.55246860569397], [-77.30815813172987, 34.552499551283034], [-77.30792805685986, 34.55259077206287], [-77.30783372553715, 34.552633194168415], [-77.30743694744255, 34.55284846258555], [-77.30743160577002, 34.552851364208315]], [[-77.26689763805021, 34.57692322595501], [-77.26689181616062, 34.57692661683999], [-77.2668906278444, 34.57692772429033], [-77.26688414320095, 34.57693629939561], [-77.26687666029389, 34.57693108432481], [-77.2668823896456, 34.57692587556059], [-77.26688211467552, 34.57692015301914], [-77.2669003045993, 34.576904345628996]], [[-77.32881364318946, 34.54835240905705], [-77.32874217915221, 34.54839456610782], [-77.32850464495951, 34.54859768675201], [-77.32847953591013, 34.54868657508272], [-77.32847524489888, 34.54872431982926], [-77.32834091165125, 34.54876648610003], [-77.32815810821486, 34.54876990153692], [-77.32815729887538, 34.54876216373861], [-77.3279978559096, 34.54867052682695], [-77.32795194159557, 34.54860965948205], [-77.32790743185676, 34.54846851001358], [-77.32785622696065, 34.548446068130005], [-77.32769950386351, 34.54838445210781], [-77.32770550857958, 34.54830971679145], [-77.32768275263481, 34.54822618643813], [-77.32776754883915, 34.54809750803685], [-77.32777925423109, 34.548097204107805], [-77.32796394252284, 34.54809381400486], [-77.32826534063761, 34.54808545327358], [-77.32835604090634, 34.548116041323084], [-77.32837239696423, 34.54811685528287], [-77.32855281696037, 34.54809590395357], [-77.32856649218466, 34.548099168414], [-77.32858833280802, 34.54819485561883], [-77.32874525157854, 34.54826244813007], [-77.32877270921097, 34.54829672466808], [-77.32913800267373, 34.54825663660394], [-77.3291432778705, 34.548257773494186], [-77.32916341404834, 34.54825818498061], [-77.32916803849905, 34.548276537569954], [-77.32913755175534, 34.548276030549815]], [[-77.21658060601123, 34.61894896885023], [-77.21658060239868, 34.619153704282546], [-77.21631810155773, 34.61936624144878], [-77.21631533284231, 34.619368432415406], [-77.21631427781118, 34.61936956231888], [-77.21631093956454, 34.61937186567153], [-77.2160808575, 34.61949065629577], [-77.21600046715642, 34.619568414178204], [-77.21591090149258, 34.61951850723082], [-77.21595592706973, 34.6193794985715], [-77.21626479389204, 34.619364440013655], [-77.21629753745678, 34.61935466749178], [-77.21611759854729, 34.619117129276646], [-77.21630960325544, 34.619002071541416], [-77.21649964428615, 34.61891162643222], [-77.21651632311449, 34.618891772954576], [-77.21658510720188, 34.61883079346733], [-77.21699600564315, 34.61866101366795], [-77.21717098855382, 34.61849329196344], [-77.21718513734369, 34.618478950576936], [-77.21735747147085, 34.618325072597884], [-77.21743887632785, 34.61827876945924], [-77.21753435821896, 34.6181767324414], [-77.21754058935994, 34.61815922466606], [-77.21758174428287, 34.618159012260634], [-77.21755679337271, 34.61817364211507], [-77.21752186586653, 34.61828532456597], [-77.21752292225507, 34.618364683455894], [-77.21746242839951, 34.61841845750581], [-77.21718226073018, 34.618494182346645], [-77.21715264622686, 34.618686822301036], [-77.21708791308762, 34.61874278819157], [-77.2165972063386, 34.61891933319171]], [[-77.40421059133391, 34.57681475025624], [-77.40412108650442, 34.57670181509627], [-77.40407802633314, 34.57650575603614], [-77.40406432814547, 34.57614430751244], [-77.40407193027133, 34.57608205948168], [-77.40408985261215, 34.5760458290285], [-77.40412107102584, 34.57593697138805], [-77.40413758579905, 34.575878092694246], [-77.40431608098993, 34.5758366722959], [-77.40431806760262, 34.57583821958689], [-77.40432566384504, 34.575841334089525], [-77.40451506906837, 34.57595720117195], [-77.40460047143615, 34.57600577126697], [-77.40465489408422, 34.576271823782605], [-77.40490907351156, 34.576190428689735], [-77.40520531502483, 34.576343043855914], [-77.4049090855936, 34.57659691511238], [-77.40466857679301, 34.576585920970274], [-77.4045150850345, 34.57659680985469]], [[-77.35262443217127, 34.5549736366271], [-77.35293235481282, 34.55500766225768], [-77.35303009662768, 34.55504623799982], [-77.35332487832113, 34.55501279095291], [-77.35346363155773, 34.555045335633], [-77.35332264461522, 34.55511008727426], [-77.35301289492782, 34.55516264856134], [-77.35285982010718, 34.55517507282037], [-77.35265063791891, 34.55516234974244]], [[-77.36398977076979, 34.529614118819566], [-77.36395670125106, 34.52968973940234], [-77.36377646557298, 34.52977558996021], [-77.36388142063353, 34.52965310726185]], [[-77.31273367032989, 34.549325509750666], [-77.31298985314614, 34.54911293029334], [-77.3129973905127, 34.549097152333246], [-77.31302164612401, 34.549067852356], [-77.31327321380073, 34.54891757750963], [-77.31306194429176, 34.54910257804619], [-77.31303209570359, 34.549114055226475], [-77.3130187713182, 34.549353587554506], [-77.3130169592001, 34.54935512453118], [-77.31301486037752, 34.5493573071206], [-77.31283652189403, 34.5493797580613]], [[-77.30967623206482, 34.55170312039109], [-77.30947740388422, 34.551787341010325], [-77.30942377713659, 34.55180355919046], [-77.30940340858353, 34.55181868467868], [-77.30936496182801, 34.55183668252557], [-77.30922511363295, 34.55190338263909], [-77.30912579856448, 34.55187101772266], [-77.30922714674898, 34.551816821136285], [-77.30928346299652, 34.551760263348086], [-77.30933876479253, 34.551718039144596], [-77.30942681717458, 34.55167411432669], [-77.30958638762183, 34.55165936052084], [-77.30968270217772, 34.55154625681048], [-77.30977179813311, 34.55150122067964], [-77.30982407499631, 34.55147732503798], [-77.31001783861723, 34.55137261161205], [-77.31002290826896, 34.55137019488739], [-77.31002963447509, 34.55136985480431], [-77.310087563622, 34.55136572665825], [-77.31012120223761, 34.55136444124728], [-77.31014968324828, 34.551399735659416], [-77.31021729821552, 34.55145231457096], [-77.31024210128324, 34.551450505520364], [-77.31045307679676, 34.551435653139905], [-77.3102158128354, 34.5515155873571], [-77.31012288224842, 34.55154063589366], [-77.31001824444378, 34.55156884002676], [-77.30996288206387, 34.5515942902845], [-77.30982020516834, 34.55164213523358]], [[-77.22525165476007, 34.61182522421003], [-77.22514340507337, 34.611927159285045], [-77.2249438152464, 34.611924229180204], [-77.22489945420213, 34.61203310403371], [-77.22465900196535, 34.61220592670908], [-77.22459195416866, 34.61224451177547], [-77.22459184225274, 34.612268585136334], [-77.22453754410287, 34.61229071040491], [-77.22415036727399, 34.61244533395851], [-77.22407357541246, 34.61246499175807], [-77.22399832837394, 34.6125226865185], [-77.2238703821291, 34.6126129650939], [-77.22359045562308, 34.6126056070674], [-77.22376514521707, 34.6125193358711], [-77.22381229379931, 34.61241864605697], [-77.22386206885771, 34.6123754353709], [-77.22401568290358, 34.61241348501997], [-77.22402690438965, 34.61225867959061], [-77.2241086115625, 34.61220635730899], [-77.22412890536661, 34.61218546534697], [-77.22420161036158, 34.61209585848625], [-77.2242238512653, 34.61207748849382], [-77.22430728235574, 34.61201541402985], [-77.22437321777849, 34.611991564824024], [-77.22442201711213, 34.61192721092138], [-77.224509186829, 34.611866295384196], [-77.22473975092022, 34.61178481761369], [-77.2247691940382, 34.61176887065939], [-77.2248916243717, 34.611591716519825], [-77.22498488744668, 34.611568487208174], [-77.22520883896631, 34.611502517755966], [-77.22534561256553, 34.61152797238701], [-77.2253501527078, 34.61158004069388], [-77.22535166983398, 34.6115974383672], [-77.22534317082653, 34.61162203086166]], [[-77.30343670790941, 34.55452367176105], [-77.30347065898708, 34.55450100821662], [-77.3035156469577, 34.55451234306847], [-77.30346987563676, 34.554534263874494]], [[-77.39957526593737, 34.57947487712592], [-77.39939296726794, 34.57952826628187], [-77.39923023935108, 34.57950357607582], [-77.39919596034011, 34.57950548587909], [-77.3991386964298, 34.5794920167011], [-77.39907377981646, 34.579482459501335], [-77.398998954078, 34.57946816142516], [-77.39899865003675, 34.57946811362192], [-77.39899756344248, 34.579467942780425], [-77.39892063795646, 34.57945728922296], [-77.39890045078018, 34.57945518673684], [-77.39887778713998, 34.579460803872244], [-77.39881857835216, 34.57949376801565], [-77.3988054954448, 34.57949948135025], [-77.39880194507595, 34.5795011301145], [-77.39871545380439, 34.57952159259384], [-77.39870343996382, 34.57953049280005], [-77.39869128694725, 34.57952523013775], [-77.39865418787973, 34.57953353786003], [-77.3986458802245, 34.57952763809841], [-77.39861532374746, 34.57953428818824], [-77.39860493555284, 34.57954205400151], [-77.39856389108581, 34.57957474173367], [-77.39855248065601, 34.57958178421255], [-77.39850642843547, 34.57961343631306], [-77.39848406625352, 34.57962408047758], [-77.39845717555363, 34.57963274934876], [-77.3984359622637, 34.579632258538155], [-77.3984325496205, 34.57963106975721], [-77.39843083469218, 34.57963116891826], [-77.39841154970712, 34.579636011043576], [-77.39840792328543, 34.579638173525524], [-77.39838873703223, 34.57964125674156], [-77.39836522882565, 34.579658255488496], [-77.39835867011365, 34.579662893979], [-77.39835487349958, 34.57966681670662], [-77.39833480285725, 34.579697067694866], [-77.39830941524048, 34.57972319955658], [-77.39825534119797, 34.579729053414596], [-77.39821090807217, 34.57978588105662], [-77.3981012476975, 34.57979753259686], [-77.39801389704388, 34.57983657496244], [-77.39786778076096, 34.57989453862227], [-77.3978168833292, 34.579933310545], [-77.3976349536135, 34.57998297241973], [-77.39749350256565, 34.5800795037187], [-77.39742285602938, 34.58010033153838], [-77.39735868991417, 34.580091972344036], [-77.39725983463171, 34.58003709210118], [-77.39689076578611, 34.579814563046675], [-77.3968277569912, 34.579458137665725], [-77.39695214816386, 34.57923233691932], [-77.39724113413465, 34.57899475946219], [-77.39742293251035, 34.57877726833871], [-77.3974424594063, 34.57875806619495], [-77.39746360349739, 34.57873397538514], [-77.39761994605999, 34.578644986547204], [-77.39770242301462, 34.57857610291635], [-77.3977598986084, 34.57854042494616], [-77.39781696025075, 34.57848902925031], [-77.39785534615402, 34.57846516916897], [-77.39794884449479, 34.57838150063225], [-77.39817146232065, 34.57820727298527], [-77.39819586784637, 34.57818746091609], [-77.39821098649315, 34.57817566762601], [-77.39826843506646, 34.5781313788409], [-77.39831857976208, 34.57808969482843], [-77.39833283273055, 34.57807784666123], [-77.39840799861439, 34.57801657335234], [-77.39850265856307, 34.57804920477205], [-77.39850649938329, 34.57804620767598], [-77.39853059605475, 34.57802334758165], [-77.39855575278835, 34.57799483737284], [-77.39855824568721, 34.577994937572065], [-77.39855753428716, 34.577992353927755], [-77.3986050065189, 34.57793485569589], [-77.39860625789464, 34.57793360048378], [-77.39860767864431, 34.57793204709707], [-77.39870351167752, 34.5778629160784], [-77.39874254812543, 34.57784850784344], [-77.39880201501704, 34.577829758728555], [-77.39882440398148, 34.577818758281296], [-77.39887022811897, 34.57778802103397], [-77.39889213574662, 34.57777582625534], [-77.39890051928423, 34.5777721354252], [-77.39891135790135, 34.5777704070742], [-77.39897529666626, 34.577747294742714], [-77.39899902250116, 34.577737245050756], [-77.39906792759905, 34.5777276018446], [-77.39913206995564, 34.57771301512986], [-77.39919602682349, 34.577716476513345], [-77.39934265766585, 34.57766799251746], [-77.39939303225297, 34.57766109327546], [-77.39944409716699, 34.57765409940059], [-77.3997340026378, 34.577614393495324], [-77.39978704134545, 34.577580586781224], [-77.40010527465435, 34.577585318277535], [-77.40018104615781, 34.57763242585102], [-77.40055295246016, 34.57786364128648], [-77.40055664529604, 34.57788293774937], [-77.4005750462297, 34.57792653016016], [-77.40061437973986, 34.57789716140919], [-77.40088981298926, 34.57790041950895], [-77.4008647610442, 34.57813084057147], [-77.40079021551364, 34.57825397780854], [-77.40057503543976, 34.57844221252317], [-77.40045234705498, 34.578595105447135], [-77.4002564510663, 34.57875557510927], [-77.39999605594974, 34.579018423328066], [-77.3997891617599, 34.579247578501715], [-77.39978699089981, 34.57924988539917]], [[-77.36344827586439, 34.53026541146586], [-77.36369227281698, 34.530069415236525], [-77.36370345083287, 34.53006323402708], [-77.36371155997867, 34.530029065603145], [-77.36371880597069, 34.530060623937715], [-77.36371935025662, 34.530070970794235]], [[-77.24268881009296, 34.59746824145209], [-77.24255356770976, 34.597529909975144], [-77.24247666896409, 34.59745699399923], [-77.2425124339004, 34.59739619149836], [-77.24252849004162, 34.59732562959832], [-77.2428037963398, 34.5970356070224], [-77.24281150287666, 34.597331670396514], [-77.2427247159996, 34.59741292096763]], [[-77.40652938188894, 34.57636420384205], [-77.40648507859042, 34.57642173164031], [-77.40633255968373, 34.57639261601963], [-77.40629397803949, 34.576391826945205], [-77.40628807705076, 34.57638224847105], [-77.4061406925789, 34.5762080238321], [-77.40628805959847, 34.57600373507551], [-77.40632600116598, 34.576009871204334], [-77.40648505987372, 34.57603558332954], [-77.40659015795524, 34.57614314150395], [-77.40656345007599, 34.57623146099618]], [[-77.35546672544358, 34.55846333343226], [-77.35544008612783, 34.55828910917878], [-77.35544085454431, 34.55822135125425], [-77.35540244295133, 34.55804803547941], [-77.35534887782117, 34.55797618149639], [-77.35531540462179, 34.5578917246423], [-77.35545877004282, 34.557842009493896], [-77.35547209061413, 34.55784428463795], [-77.35548980186425, 34.557842271954605], [-77.35566901632302, 34.5579055036359], [-77.35572922501653, 34.55793608650035], [-77.3557705019494, 34.55799505416377], [-77.35587631924356, 34.55818078207355], [-77.35606267561523, 34.55836711094996], [-77.35606685704445, 34.5583724356175], [-77.35607012093453, 34.55837647559864], [-77.35610130977953, 34.55841365231571], [-77.35623357172473, 34.558565222379194], [-77.35624240907467, 34.55858238685303], [-77.35622438238013, 34.55874105304988], [-77.35623028080647, 34.558777971976816], [-77.35616087910326, 34.55885628619356], [-77.35611937607125, 34.55885534457044], [-77.35606238928511, 34.55887078952916], [-77.3560019039396, 34.55887603138979], [-77.35590589112873, 34.558824667960835], [-77.35577009747144, 34.55873476308601], [-77.35566859756986, 34.55863575155658]], [[-77.36277609578627, 34.53159889469832], [-77.36256186377253, 34.531701196323006], [-77.3624949918433, 34.53173541941479], [-77.36234982466468, 34.53173173801811], [-77.3621674488671, 34.53171772635545], [-77.36221863914687, 34.531628221209864], [-77.36227078777185, 34.53160137252353], [-77.36234633953342, 34.531487415021914], [-77.36244976071605, 34.53144009688675], [-77.36250505286098, 34.531295269279546], [-77.36257253528358, 34.53121000910316], [-77.36253110894894, 34.53098295001396], [-77.36263662676737, 34.53095595201437], [-77.36253300609297, 34.53095824786824], [-77.3625140146257, 34.530903210502174], [-77.3624908119311, 34.53074880382426], [-77.36247869820315, 34.53073387536062], [-77.36249299106458, 34.5307160352442], [-77.36251891771545, 34.530688710866926], [-77.36268391195712, 34.530560574294014], [-77.36330594617634, 34.530373152978676], [-77.36331077012, 34.53039094955932], [-77.36346284715728, 34.53073715157365], [-77.36340469879116, 34.530845315459416], [-77.36338439600434, 34.53090143720309], [-77.3632958206184, 34.53104522690167], [-77.36316865686044, 34.53129318709276], [-77.362895362997, 34.53140833314608]], [[-77.42926093540277, 34.68330284504452], [-77.42925789553907, 34.68330247225298], [-77.42925281407, 34.6833018490809], [-77.42899306046908, 34.683238811629735], [-77.42895623831389, 34.68323771879199], [-77.42889005099111, 34.68325736086795], [-77.42883949646097, 34.68325116091427], [-77.42879473853318, 34.68324222265997], [-77.42876642292052, 34.68324219922298], [-77.42873249286147, 34.683240022147956], [-77.4287157493547, 34.68323838935205], [-77.42870834372034, 34.6832116544753], [-77.4287246454894, 34.68320764380764], [-77.42875340865973, 34.683220921246374], [-77.42877782287988, 34.68320101320737], [-77.42880851140185, 34.68319462267746], [-77.42886694127492, 34.68321957720098], [-77.42893307131155, 34.68318542807921], [-77.42896321714137, 34.68319001887857], [-77.4289710777969, 34.68318643215376], [-77.4292576788647, 34.683297520768484], [-77.4292602263475, 34.683294416657134], [-77.42958461867826, 34.683133771912644], [-77.42961307821807, 34.68313072245066], [-77.42962841933969, 34.683129210487046], [-77.42968276970323, 34.68312239980517], [-77.42979453596767, 34.6831087475598], [-77.429873799788, 34.68318305909348], [-77.42992633285144, 34.683206901450724], [-77.42995372337458, 34.68326286416371], [-77.42989886328911, 34.68330184274302], [-77.42975878379502, 34.68336894176937], [-77.4296636148855, 34.68335358638134], [-77.42960234380507, 34.68321933250066], [-77.42927302760737, 34.68330432796168]], [[-77.22081983411377, 34.61548191643231], [-77.22081621036904, 34.61548455298309], [-77.22080623306233, 34.615493923645296], [-77.22061690097416, 34.615635988499776], [-77.22058760326074, 34.61569925999132], [-77.22044854277561, 34.61580117958076], [-77.22044003895563, 34.61580739640737], [-77.22027330827378, 34.6159101228309], [-77.22016187887294, 34.61609206513263], [-77.22009412175248, 34.6161571591271], [-77.21999486829222, 34.616262982877075], [-77.21985710350864, 34.616206046549436], [-77.21996064461598, 34.61612111394268], [-77.21998421674584, 34.61605937378422], [-77.22004495476341, 34.61589209014353], [-77.22010002079087, 34.615833640519874], [-77.22012193041687, 34.6157803280982], [-77.22027746258028, 34.61570520539594], [-77.22030569562423, 34.615687868013225], [-77.22034684914496, 34.61568024862863], [-77.22036503366492, 34.615648734527845], [-77.22050876132244, 34.61553977430614], [-77.2208001479324, 34.615480361948634], [-77.22080763367397, 34.61547692213214], [-77.22082149990536, 34.6154637895866], [-77.22083017630641, 34.615474774187476]], [[-77.3366664912736, 34.55011727962778], [-77.33662800441292, 34.550077610839345], [-77.33672188464374, 34.54996663623747], [-77.33678709579792, 34.54995727121843], [-77.33695187177119, 34.549916144185055], [-77.33701120789912, 34.549908414119635], [-77.33705028932863, 34.549904822418576], [-77.33708682712835, 34.549934427122565], [-77.3370712860718, 34.54998363590019], [-77.33707530798176, 34.55001447122589], [-77.33702130693226, 34.55006625752644], [-77.33699625436871, 34.55010019199935], [-77.33694469233933, 34.55022618871856]], [[-77.24485931249126, 34.59546301498846], [-77.24486249219207, 34.595460305960884], [-77.24486393819691, 34.59545887459631], [-77.24486861048169, 34.59545510519424], [-77.24487538685283, 34.59545699814068], [-77.24486860864452, 34.59546078789411], [-77.24486716343277, 34.595461743536525]], [[-77.29245539563428, 34.55971263476073], [-77.29257099011242, 34.55963216878323], [-77.29265954948968, 34.559563626134576], [-77.29275011752969, 34.55952164729764], [-77.2928651911699, 34.5595182865199], [-77.29278597754828, 34.55960133666019], [-77.29275818677968, 34.559611682060165], [-77.29274786058427, 34.55961695018148], [-77.29255716309034, 34.559762215825984], [-77.29251609259187, 34.5597820920944]], [[-77.3541577617579, 34.552938531527666], [-77.35411436452719, 34.55299309379597], [-77.35415610789174, 34.55301059951921], [-77.3543220107462, 34.55310325390112], [-77.3543921729602, 34.55310160391656], [-77.35440024039715, 34.55304406071072], [-77.35422436220061, 34.55297726048744]], [[-77.31412236624303, 34.54797105628781], [-77.31417066707357, 34.54792950065179], [-77.31422733040326, 34.54788075005192], [-77.31441896898555, 34.54781000142614], [-77.31430623441587, 34.54794465087187], [-77.31422420595644, 34.548014106649845], [-77.31405739584258, 34.548122773182484], [-77.31402668688008, 34.548229607039225], [-77.31402276712987, 34.5482330189524], [-77.31399475274229, 34.54823419303994], [-77.31390196941061, 34.54820090256533], [-77.31399010564985, 34.548090000318645]], [[-77.3522887749037, 34.554810316329466], [-77.35214948869165, 34.554902459962506], [-77.3520034790148, 34.55485753203941], [-77.35183028379004, 34.55458722608214], [-77.35238471725688, 34.5545690823204], [-77.35231120483047, 34.55472155924633]], [[-77.22604394525877, 34.61093050584727], [-77.2261010250876, 34.610869154499134], [-77.22625621018628, 34.610790607153355], [-77.22640735122775, 34.610817220408194], [-77.22653081106398, 34.610853177060456], [-77.22653282912381, 34.61086578395243], [-77.22649976089262, 34.61096633379407], [-77.22649957491335, 34.61098099928665], [-77.22645051437787, 34.61101170114002], [-77.22638769482865, 34.6110082542661], [-77.22624473284199, 34.61100170129068], [-77.22609819131729, 34.610978767437985], [-77.22604833655306, 34.61097317267989], [-77.22599299197631, 34.610972218788326], [-77.22596362535435, 34.610938699425915]], [[-77.22330446964244, 34.61305992243288], [-77.2232768920581, 34.61307120213501], [-77.22306735884871, 34.612984940561525], [-77.22312717925834, 34.6129380018174], [-77.22317311969826, 34.612902979387734], [-77.22331593216893, 34.61285082229246], [-77.22337546092706, 34.612830143133486], [-77.22349980867122, 34.61267431925661], [-77.2236146167879, 34.61287440185852]], [[-77.42770546930221, 34.68505997115108], [-77.4277084439312, 34.68506234954656], [-77.4277075666306, 34.685063400234654], [-77.42770550566838, 34.68506357580227], [-77.42762880859765, 34.68505706344775], [-77.42757978231013, 34.68504144626169], [-77.42751652064658, 34.685030851746006], [-77.42753802374244, 34.68497317172084], [-77.42760388399374, 34.68499439159842], [-77.42764252934356, 34.6850096468496]], [[-77.31543682708185, 34.54652936902036], [-77.3155844056259, 34.54638209154993], [-77.31572719410663, 34.54627171186264], [-77.31575703255317, 34.54621772867459], [-77.31575628897056, 34.546145127831075], [-77.31583967058991, 34.54609229679511], [-77.31589686347326, 34.54603739331683], [-77.31595229133762, 34.5459945712482], [-77.31604014221551, 34.54591428283078], [-77.3161518982603, 34.54591316567753], [-77.31623735953923, 34.54587526904309], [-77.31654653297223, 34.54590922002379], [-77.31639011956999, 34.54602918588054], [-77.31635527897892, 34.54605909575902], [-77.31623199414275, 34.5461045005341], [-77.31615808157137, 34.546164614035135], [-77.31608240908393, 34.546220693465166], [-77.31603129303676, 34.54629231795123], [-77.31597065027455, 34.546321766796495], [-77.3158318966004, 34.546424367021814], [-77.31576680373323, 34.5464709249787], [-77.31560664513252, 34.54653383634577], [-77.3155280946877, 34.54660310408755], [-77.31543226334642, 34.54672427275373], [-77.31534915675206, 34.546624100823735], [-77.31540556193787, 34.54656271670689]], [[-77.28152398419016, 34.564553368793646], [-77.28146600280176, 34.56458894424997], [-77.28144310026147, 34.5645836839907], [-77.28145270747113, 34.56457712142738]], [[-77.35406243997562, 34.55650853019207], [-77.35409417060416, 34.55648486304464], [-77.35414214294994, 34.5564795413941], [-77.35435598524863, 34.55635800592981], [-77.35448817481807, 34.55633417412745], [-77.35459959904566, 34.55634529810733], [-77.35468095185165, 34.55645368539624], [-77.35468288174067, 34.55645575619066], [-77.35468505922547, 34.55645853277936], [-77.35480885382802, 34.55651409274107], [-77.35488191329199, 34.556635862825885], [-77.35497929790137, 34.556835291469156], [-77.35506981624128, 34.55702502220079], [-77.35507392938973, 34.55703394548318], [-77.3550754686622, 34.55703713965909], [-77.35507863433305, 34.55704336124483], [-77.3551737968082, 34.557231845622496], [-77.35520429835985, 34.55730413120917], [-77.35527534779641, 34.557467495165085], [-77.35534689894791, 34.55755431002407], [-77.35538977537938, 34.557625307547], [-77.35545779570073, 34.55781236575091], [-77.35527515574309, 34.557799395316295], [-77.35518078620163, 34.55776593811535], [-77.3551760772455, 34.5577628738172], [-77.35507825352187, 34.557698630020724], [-77.35501962784845, 34.557678588491356], [-77.35493153920646, 34.55763715351733], [-77.35488134643673, 34.557607014354616], [-77.3547704918609, 34.557594967634614], [-77.35462975339986, 34.557581329078936], [-77.35453496687161, 34.55737489106323], [-77.35451228348838, 34.55732706538523], [-77.35450070823819, 34.557314601484485], [-77.35448760848192, 34.55729631075087], [-77.35437205949324, 34.55713497366193], [-77.35433474219002, 34.557092952220025], [-77.3542284494213, 34.556943369136576], [-77.35418949013909, 34.55684601360319], [-77.35409407626426, 34.556643821919565], [-77.35406191061671, 34.55657749906232], [-77.35404132487369, 34.55654575261706]], [[-77.35668722617312, 34.5593490206991], [-77.35669184053792, 34.559306533412844], [-77.35665302152805, 34.55932930125223], [-77.35661946960343, 34.55932261033581], [-77.35651600335522, 34.55930907507398], [-77.35646169532899, 34.55917519372217], [-77.35645872335984, 34.55916963878127], [-77.3564672350606, 34.55915647167112], [-77.35645615408885, 34.559157480548215], [-77.35643499344155, 34.55906691682932], [-77.3564562276313, 34.55902695517756], [-77.35651925271665, 34.55901656789437], [-77.3565836932852, 34.55901428133593], [-77.35665320478937, 34.55900264835691], [-77.35683930822398, 34.559103207845986], [-77.3568501100417, 34.55910678457802], [-77.35685380506764, 34.55910878116193], [-77.35685879373005, 34.55911204651256], [-77.35706846000183, 34.559270992071745], [-77.35724396124195, 34.55924419101332], [-77.35727725724614, 34.5592640811008], [-77.35735173694664, 34.55934941794429], [-77.35744081088505, 34.55945147588932], [-77.35744184679085, 34.55945266279487], [-77.35744080774334, 34.55945717420693], [-77.35742250674352, 34.55964811295398], [-77.35740266951366, 34.55967057893437], [-77.35738215565478, 34.55973657749586], [-77.35736995368387, 34.559811413509], [-77.35732238416854, 34.55980955658198], [-77.35724364133604, 34.55982197424618], [-77.35717178930948, 34.55983866517646], [-77.35710788367835, 34.55985930437674], [-77.35704664446871, 34.559878704347625], [-77.35697251947178, 34.55981242942782], [-77.35688671495518, 34.55974485508968], [-77.35686749928588, 34.55972850611342], [-77.35686453426517, 34.55955158540296], [-77.35687844785369, 34.5595337691852], [-77.35686940466098, 34.5595140313276], [-77.35684987821905, 34.55952182373241], [-77.3568227719725, 34.55951256511254], [-77.35671047288176, 34.55949593200771], [-77.35668109729532, 34.559380192063855]], [[-77.33094340544518, 34.54938930024562], [-77.331073966135, 34.54942402212244], [-77.3310997971463, 34.54943250217621], [-77.33113694832292, 34.54944339110982], [-77.33133228479083, 34.54949798293974], [-77.33143533927581, 34.54962879285678], [-77.33115170524994, 34.54963456244845], [-77.33107127557362, 34.549539860896225], [-77.33099223744149, 34.5495138534163], [-77.33067772294756, 34.549579942805096], [-77.33059865431893, 34.54957021391872], [-77.33061554359746, 34.549518342792624], [-77.33053012447188, 34.54943651020494], [-77.33051656952915, 34.549410162499754], [-77.33068402808001, 34.549308538225326], [-77.33084698765916, 34.549362665553], [-77.33083180869859, 34.54939387166038]], [[-77.2812670518607, 34.564741526759605], [-77.28126751508778, 34.56474099530771], [-77.28126849200844, 34.56473987449869], [-77.28127326460444, 34.56473919824264], [-77.281268895661, 34.56474222297841]], [[-77.32478988367218, 34.54713850450427], [-77.32459274674483, 34.54711437580166], [-77.32453092344389, 34.547012409758985], [-77.32466367206287, 34.5470607378151]], [[-77.33489419011126, 34.54982215753804], [-77.33459841684063, 34.549817945705385], [-77.33452247907177, 34.549739597616174], [-77.33444108830966, 34.549702816967795], [-77.33440322571698, 34.54958315621474], [-77.33460273060197, 34.54963188259677], [-77.33463332065402, 34.54965575840207], [-77.3346552846923, 34.549672019742324]], [[-77.21237800121428, 34.62212122959011], [-77.21237412349365, 34.622110681373705], [-77.21237771921301, 34.6220033653171], [-77.21233375401687, 34.62195806719759], [-77.21235294666624, 34.621927441423324], [-77.21243176070456, 34.62188979391587], [-77.2124658303162, 34.62186348737802], [-77.21255638085839, 34.62178721200398], [-77.21298109494884, 34.62171603277186], [-77.2127240150864, 34.62191288842893], [-77.21262701063709, 34.62200690384362], [-77.2126125635842, 34.62202192342226], [-77.21251393632619, 34.62207437015002], [-77.21243815645016, 34.62212598320546], [-77.21238182919231, 34.62213164251102]], [[-77.32685216731483, 34.547611116409385], [-77.32701311094938, 34.54769700464553], [-77.32705297404004, 34.54774358471822], [-77.3269640153719, 34.547734135193025], [-77.3267961611703, 34.54766142664696], [-77.32671644889888, 34.547630621462574], [-77.32679823345929, 34.547572406190405]], [[-77.3461188227252, 34.53404802076568], [-77.34613922240423, 34.534065538151154], [-77.34613757934106, 34.53407415366709], [-77.3461086872648, 34.53416728274378], [-77.34609024799806, 34.53419499545508], [-77.34604865104671, 34.53425751227456], [-77.34604626773924, 34.534261094187826], [-77.34604521190052, 34.53426268102216], [-77.34594920109174, 34.53431448590216], [-77.34589881689755, 34.53428374665893], [-77.34587614536487, 34.53427197804889], [-77.3458523747583, 34.53425766138516], [-77.34581148230595, 34.53423510867525], [-77.34578600534688, 34.534219511062496], [-77.34575554792076, 34.53420086426148], [-77.34571904304977, 34.534187205169296], [-77.34569292709185, 34.53416926740866], [-77.34569561342202, 34.53415250154872], [-77.34571993646577, 34.534148829815294], [-77.34573936224061, 34.53415367887548], [-77.34575650165745, 34.53415950080569], [-77.34575943530302, 34.534152519725865], [-77.34579541142783, 34.53415205628212], [-77.34580564504395, 34.534156238189944], [-77.34580817662128, 34.534157481365995], [-77.3458106351973, 34.53415872434374], [-77.34581783431395, 34.5341596111498], [-77.3458231995402, 34.53416027205203], [-77.34582425606759, 34.53416039859672], [-77.3458249580589, 34.534160488670786], [-77.345830066612, 34.53416111795508], [-77.34583282389244, 34.53416145760363], [-77.34583618276116, 34.534161871357256], [-77.34583710985135, 34.534161985558455], [-77.34583928092093, 34.534162252995976], [-77.34584139581023, 34.534162513513095], [-77.34584229891043, 34.53416262475913], [-77.34584454810263, 34.5341629018198], [-77.34584394397669, 34.53416158200567], [-77.3458450541231, 34.53415974531433], [-77.34584706963193, 34.53415730692756], [-77.34584709005753, 34.534156376945035], [-77.34584713345993, 34.53415440082152], [-77.3458471539152, 34.53415346948764], [-77.34584721768559, 34.5341505660039], [-77.3458472587395, 34.53414869681332], [-77.34584732248175, 34.53414579460767], [-77.34584738613673, 34.5341428963686], [-77.34584251147564, 34.53413883626307], [-77.3458425762225, 34.53413089298091], [-77.34584288976154, 34.53411613003864], [-77.34583016724831, 34.534110010037935], [-77.34583005067086, 34.53409374683886], [-77.34583060508325, 34.534065088344846], [-77.34580343371871, 34.534052651858204], [-77.34580259261845, 34.5340182828723], [-77.34586852783931, 34.53398208011074], [-77.3459585239219, 34.53391011478182], [-77.3460340945591, 34.533958255701], [-77.34607458100078, 34.53400114903249]], [[-77.32025071639674, 34.54611155429627], [-77.32055279162799, 34.54601447119995], [-77.3206653413067, 34.54605198687389], [-77.32055066212479, 34.546105653795415]], [[-77.32250307353571, 34.546561173850364], [-77.32247874302624, 34.54654134387241], [-77.32244125731442, 34.54653127001962], [-77.32236668882702, 34.54645540230524], [-77.32250511238846, 34.5464737845516], [-77.32265461220015, 34.546500614507345]], [[-77.36943298730084, 34.5201015776026], [-77.36950228416723, 34.52005131205617], [-77.36946662978073, 34.52003639022436], [-77.36950021098973, 34.51996925144647], [-77.36951566374313, 34.51992697028639], [-77.36953611326297, 34.51988173912727], [-77.36960377532056, 34.51991427226624], [-77.36961674222017, 34.51992273090316], [-77.3696330807422, 34.519932249086175], [-77.36966090096745, 34.5200099941547], [-77.36973869343151, 34.52001724233186], [-77.36978017174982, 34.52004038542809], [-77.36982661714002, 34.52005078333922], [-77.36983220178678, 34.520064973282814], [-77.36982611095759, 34.52007300820129], [-77.36975793384609, 34.520094661491896], [-77.36968860568723, 34.52014687435283], [-77.36962709443014, 34.52019506194628], [-77.36950167643744, 34.52021832089981], [-77.36942848375477, 34.52029927343252], [-77.36934427369917, 34.520249731531116], [-77.36939836896187, 34.52018870110275], [-77.36940858250286, 34.52017302058754]], [[-77.33760120585978, 34.550518863646104], [-77.3376285944802, 34.550527406729124], [-77.33767162734497, 34.55055314208323], [-77.33761674283471, 34.550536371641456]], [[-77.21764914689722, 34.617563189117526], [-77.2177331664725, 34.617594967138686], [-77.21761579620298, 34.617629010142316], [-77.21761066408429, 34.61759717373786], [-77.21762492290478, 34.61758641748439]], [[-77.43989477768122, 34.74690505169357], [-77.43988174194251, 34.74694203676844], [-77.43987994333042, 34.74696974778718], [-77.43986484059222, 34.74699023658845], [-77.43982352099616, 34.747030892714335], [-77.43977385432343, 34.74702855612609], [-77.43973434314051, 34.74700352996048], [-77.43973676603603, 34.74696798722136], [-77.43973369888896, 34.74691865916539], [-77.43975275111488, 34.74688424816801], [-77.43977941574833, 34.74685072935065], [-77.43982828721644, 34.746852735300706], [-77.43987311365825, 34.74685951753659]], [[-77.24503805350332, 34.59530426238245], [-77.24504752096104, 34.595293495469974], [-77.24516380933497, 34.59524837285926], [-77.24520074202844, 34.5952153851438], [-77.2451913236905, 34.59525054073721], [-77.24517695696031, 34.595262374622216], [-77.24505980537072, 34.59530442279392]], [[-77.34173669518572, 34.5380005248563], [-77.34174231791948, 34.53799974042968], [-77.34180000734771, 34.53793370761003], [-77.341815995567, 34.53791492928005], [-77.34182238733197, 34.537882246497986], [-77.34182493015146, 34.53786891764001], [-77.34181457935838, 34.537852140468246], [-77.34180629916177, 34.53783408338298], [-77.34176201769448, 34.53782655352708], [-77.34174637976368, 34.537823932723924], [-77.34173548694905, 34.53782732425158], [-77.34167483000746, 34.53784621006233], [-77.34164745119668, 34.53785802364663], [-77.34157231493967, 34.53789044385428], [-77.34154837700382, 34.5378984132707], [-77.3415211077704, 34.53789557696197], [-77.34136740275142, 34.53793473483824], [-77.34148634723657, 34.5379554861896], [-77.34152574614494, 34.53803436609586], [-77.34154512141731, 34.53803930966075], [-77.34163600135295, 34.53801850539601]], [[-77.39624204389666, 34.510341054445036], [-77.39619470055584, 34.51032548561125], [-77.3962434192201, 34.510279830415996], [-77.39633010599837, 34.510305939800645]], [[-77.3049113444184, 34.55385433118184], [-77.30475774701486, 34.55390753809927], [-77.30482597063273, 34.55381274551703], [-77.30495665331537, 34.55375718331938]], [[-77.32191879684022, 34.54636244210974], [-77.32191482243978, 34.54636209553088], [-77.32191885372318, 34.54636000473196], [-77.32192241712339, 34.54636100434413], [-77.32203623697815, 34.54639337685105], [-77.32208234231962, 34.54644115117594], [-77.32200646185208, 34.54641589362468]], [[-77.32133355212888, 34.54620528667793], [-77.32132772762066, 34.54620526627544], [-77.32113632924768, 34.546244636420944], [-77.32103704468294, 34.54624339696964], [-77.32113820742131, 34.546164191063866], [-77.32129657126762, 34.54618272235356], [-77.32133385676477, 34.54619223729486], [-77.32134015394702, 34.546195869239824], [-77.32135329131697, 34.54619796125041], [-77.32137355455176, 34.546220210805096]], [[-77.28191969793475, 34.56433528073725], [-77.28189067114765, 34.56434259962014], [-77.28178819414407, 34.564382619022005], [-77.28173180224961, 34.5643836180449], [-77.28176877034804, 34.564365346545095], [-77.28178981031839, 34.56433374156471], [-77.2818427295764, 34.5643150708901], [-77.28189616210419, 34.564314351716604], [-77.28191022377256, 34.56430391960006], [-77.28193403591243, 34.56430782025825]], [[-77.33438631362738, 34.55049903902626], [-77.33432757744518, 34.550453586432845], [-77.33438880547786, 34.55039156985785], [-77.33453951242957, 34.55042311476939], [-77.33455872496751, 34.55043616462396], [-77.33451310412529, 34.55050607202793], [-77.33444457392284, 34.55052250634999]], [[-77.3639765412068, 34.529141360603404], [-77.36396719506243, 34.529198117931585], [-77.3639255014593, 34.529301341814396], [-77.36392443046297, 34.529301899583075], [-77.36392391491889, 34.5293015703619], [-77.36380609604544, 34.5292703876407], [-77.36380951394501, 34.52924557059952], [-77.36390830735068, 34.5291814059347], [-77.36391477776083, 34.52917261113014]], [[-77.26568037519247, 34.577976266168974], [-77.2656743228826, 34.57798193759305], [-77.26561239647752, 34.578004342319744], [-77.2655983987788, 34.578020169164986], [-77.2655938158739, 34.57800288102603], [-77.26561755185207, 34.57798230219625], [-77.26565529105898, 34.57796501129727]], [[-77.33401818079791, 34.54944294789308], [-77.334123513154, 34.549503661170974], [-77.33401468395566, 34.54959372911619], [-77.33384795328023, 34.54954328001629]], [[-77.33071543558056, 34.54864713039473], [-77.33076733961329, 34.54868254978847], [-77.33069916573108, 34.54865693962995], [-77.33068519981846, 34.54865147675902], [-77.33069943327166, 34.54864542339664]], [[-77.21392520031982, 34.620711542630474], [-77.21396242459036, 34.620677229761206], [-77.21398023030684, 34.62071589068864], [-77.2139228929116, 34.62075523903533]], [[-77.40483488402417, 34.50775952250228], [-77.40479270371816, 34.50773743836241], [-77.40483721169745, 34.50765543272853], [-77.40489258425802, 34.50772301301435]], [[-77.34806691295368, 34.5531579691511], [-77.3479508726555, 34.553145650826025], [-77.34792168106421, 34.55311856363892], [-77.3479402009724, 34.55306686943544], [-77.34797917400591, 34.55307506667002], [-77.34806793986898, 34.553113362520065], [-77.34814784416851, 34.55311730858549]], [[-77.43848558314582, 34.75054617672716], [-77.43842616522547, 34.75056251822639], [-77.43848019768488, 34.750533719549885], [-77.43849184148195, 34.75052455209846], [-77.43849679294014, 34.75053951681336]], [[-77.2699461758835, 34.574423328810376], [-77.26993935830052, 34.57445605637451], [-77.26991384442115, 34.57448726046059], [-77.26990107598304, 34.57445304678942]], [[-77.40195407840723, 34.57676851894426], [-77.40203544180339, 34.5768005534486], [-77.40195407788576, 34.576865200873996], [-77.40178467884441, 34.576836742520186], [-77.40177274221358, 34.57682158439025], [-77.4018277559884, 34.57669440064868], [-77.40187359352066, 34.576698353896646]], [[-77.43479153748065, 34.75385714175061], [-77.43480333209148, 34.75385168327888], [-77.43482396654733, 34.753868470904585], [-77.4347855899323, 34.75391297635319]], [[-77.36932921298555, 34.52034985332044], [-77.36929301258311, 34.520326297710454], [-77.36933102777958, 34.52027019186404], [-77.36942009386402, 34.52030798394121]], [[-77.21186197806094, 34.62266966059154], [-77.2116480694603, 34.62274724250936], [-77.21162180049375, 34.62275645093407], [-77.21148967276244, 34.62273282905018], [-77.21154237377868, 34.62268577730897], [-77.21156017432328, 34.622645809507226], [-77.21160806347103, 34.62261812031278], [-77.21165651469828, 34.6226229412342], [-77.21171258409103, 34.62261994414676]], [[-77.35998451054748, 34.548077787946184], [-77.35998663039933, 34.548079081049636], [-77.35999536277303, 34.548085982899806], [-77.36000229842914, 34.548085082531955], [-77.3600053412279, 34.54807843135315], [-77.35999288150018, 34.548076582552284], [-77.3599867395045, 34.54807431267107]], [[-77.33953074756586, 34.55087788452778], [-77.33952520644584, 34.55088435397927], [-77.33952471845728, 34.550888037161265], [-77.33953052889308, 34.55088734071128], [-77.33953745043858, 34.55088259303727]], [[-77.22196192619249, 34.623585233007276], [-77.22194247571952, 34.625034320814166], [-77.22215029880888, 34.62563436181104], [-77.22233155213, 34.62580224087459], [-77.22328899852991, 34.62623215230009], [-77.22368480761666, 34.62646116248886], [-77.2248631434576, 34.62569967184567], [-77.22541359757977, 34.62549206366017], [-77.2261398405789, 34.62487703855611], [-77.22613877243735, 34.624857617255444], [-77.22620694716073, 34.624812882126186], [-77.22686591592594, 34.6241539764747], [-77.22703434146813, 34.62398555936268], [-77.22731841567301, 34.62370148951678], [-77.22902039212966, 34.6208106039801], [-77.22944050875458, 34.62040451131], [-77.23109209320461, 34.619350985114075], [-77.23088425836569, 34.61720885545558], [-77.2329911315427, 34.61808037747991], [-77.23452670444884, 34.61703481222441], [-77.23462094215145, 34.61656135393763], [-77.23454699361031, 34.616093711448244], [-77.234202822709, 34.61568790446457], [-77.23347193307532, 34.61552173251847], [-77.23157967087865, 34.61519764211817], [-77.23067237014872, 34.61599750571398], [-77.23014691999984, 34.616552979627336], [-77.22992120536104, 34.61667159522712], [-77.22963608871353, 34.616956711492435], [-77.22730667647407, 34.61928618930936], [-77.22673476490147, 34.62019102582832], [-77.2249408523942, 34.62165185003174], [-77.22481955626307, 34.622333652080975], [-77.22408677534813, 34.62233782289973]], [[-77.34542052252297, 34.56728051522089], [-77.34525198222394, 34.56715053408684], [-77.34438296561495, 34.5666958732579], [-77.34384495982452, 34.566842661512105], [-77.34330882133769, 34.5668522880701], [-77.34226903640217, 34.56692132403934], [-77.34170988937488, 34.56656465507431], [-77.34148133848215, 34.56660055011959], [-77.34105458904189, 34.566445164289995], [-77.3406931614943, 34.56692939177922], [-77.34000030451526, 34.5662076899314], [-77.33939593237983, 34.56599510187321], [-77.33911809939738, 34.56587415581489], [-77.3388896087622, 34.5657646429857], [-77.33861906937412, 34.565868543985765], [-77.33833014351057, 34.56591309296144], [-77.33827144302899, 34.56603175775393], [-77.33829868744552, 34.566418907634436], [-77.33830283442923, 34.56645178606873], [-77.33828949793391, 34.56649701559875], [-77.33829867766411, 34.56726869294553], [-77.33830496733854, 34.567300563631775], [-77.337917183483, 34.56776194721496], [-77.3378617422596, 34.56778883601726], [-77.33787032550792, 34.56785693270165], [-77.33820436415651, 34.56816411316012], [-77.33832832036532, 34.56826551992164], [-77.33885367297171, 34.56835364321476], [-77.33890274595186, 34.56891277664939], [-77.33911561851092, 34.56911589771378], [-77.33956239758007, 34.569185507097], [-77.33962491475621, 34.56965801693236], [-77.33990298918162, 34.5698916448736], [-77.34044437667684, 34.56980594627809], [-77.34069072187793, 34.570200844467536], [-77.34089318923655, 34.5703247212024], [-77.34136408235241, 34.57038035327563], [-77.34177414548274, 34.57051665306503], [-77.34226638213354, 34.57057382995434], [-77.34266442122444, 34.57049022707362], [-77.34323600010708, 34.57083686936413], [-77.34365130492812, 34.5709826548578], [-77.34384203657288, 34.57097344773622], [-77.34424730960163, 34.571128236082004], [-77.34486718877534, 34.57119559523276], [-77.34503901185198, 34.57142662594408], [-77.3454176150909, 34.571503738907424], [-77.34571474917242, 34.57164971232326], [-77.34588291692259, 34.57165282577803], [-77.34620560741467, 34.57147973234978], [-77.34638119434325, 34.57142272058399], [-77.34693199150757, 34.571220876171054], [-77.34699378611185, 34.571175589617084], [-77.34705746290763, 34.57113627108223], [-77.34699406948849, 34.570751736543826], [-77.34682786946208, 34.570499479751824], [-77.34678061331532, 34.57032700407997], [-77.34678709121745, 34.570102565572796], [-77.34616775555234, 34.5679112773687]], [[-77.42918892009848, 34.731158315155476], [-77.42912410667216, 34.730672320521734], [-77.42884642104822, 34.730396078667574], [-77.42878791796979, 34.730328722781024], [-77.42878665155965, 34.72992031944309], [-77.42864785125371, 34.72976761346099], [-77.42846849216882, 34.72960665476524], [-77.42838972604612, 34.72948944701733], [-77.42811865680184, 34.72930620308179], [-77.42774962370748, 34.72889458866049], [-77.42758897216227, 34.7286343921619], [-77.42745428202409, 34.72829134670968], [-77.427350941085, 34.72784092050218], [-77.42717879989783, 34.72757693317711], [-77.42706983005735, 34.72740468927994], [-77.42661609424323, 34.7272546941247], [-77.42649866793047, 34.727163009908985], [-77.42600663478379, 34.72716718909376], [-77.42562090318266, 34.72746005817946], [-77.4255927231386, 34.727681577956986], [-77.42524751347617, 34.72801996115431], [-77.42522277923146, 34.72830522559394], [-77.42517505528494, 34.72855370209413], [-77.42531147565188, 34.728691650413], [-77.42537709665004, 34.72882252167552], [-77.42546052071248, 34.729075859266516], [-77.42559014569869, 34.72925787175055], [-77.42572288181788, 34.72941280137147], [-77.42580001665475, 34.72957627966989], [-77.42590992274978, 34.72978116209845], [-77.42593435451995, 34.729937260512756], [-77.42597698011112, 34.730072323587244], [-77.42601558810648, 34.730183466590304], [-77.42621309067646, 34.73029739379395], [-77.42623072634373, 34.73030315761047], [-77.42646104904945, 34.73032863342219], [-77.426630732045, 34.73037325527475], [-77.42682554483596, 34.730463195692366], [-77.42698846023772, 34.73067041810762], [-77.42714776702962, 34.73092046914557], [-77.42719324512488, 34.73103137823652], [-77.42727586369544, 34.73112238142534], [-77.42745879801954, 34.73136699053766], [-77.42772435254318, 34.73164499085489], [-77.42775899262693, 34.73166825466819], [-77.42783651856783, 34.731720272981555], [-77.42816381645252, 34.73196567062401], [-77.42808525362216, 34.732234673075496], [-77.42810188985136, 34.732372087868775], [-77.42806458961142, 34.732453445782554], [-77.42795724990162, 34.73260106362865], [-77.42792322641843, 34.732717766218634], [-77.42792463869672, 34.73273501588259], [-77.42801716966147, 34.73290153738424], [-77.42801891563158, 34.73291888207022], [-77.42803149626936, 34.732941720194276], [-77.42832071178151, 34.73336720942369], [-77.42848692059856, 34.733583346800714], [-77.42863868565365, 34.733553125041006], [-77.42855690292049, 34.73364924229281], [-77.4289396594593, 34.73423427288191], [-77.4289753683125, 34.7343054551954], [-77.42899603355292, 34.734361780122995], [-77.4293777010511, 34.7349359935362], [-77.42996417244089, 34.73470014240153], [-77.4300583643964, 34.73471060009992], [-77.43010862928746, 34.73462595014097], [-77.43048428665107, 34.7343228626203], [-77.43035010938331, 34.73417838129755], [-77.43029545593208, 34.733980538598594], [-77.43029544605307, 34.733977989824986], [-77.43029486128552, 34.733977133540996], [-77.43021738109027, 34.733787360026454], [-77.43005311885216, 34.733710221713906], [-77.42985652739824, 34.73363304382174], [-77.42975883845881, 34.733619351549486], [-77.42943747583709, 34.733677479534215], [-77.42942737340667, 34.7336796919585], [-77.42938867433641, 34.73368666332605], [-77.42938901819683, 34.733617026318775], [-77.42932074027647, 34.73335715139544], [-77.42936576497951, 34.73324983279728], [-77.42949294316053, 34.7330390146573], [-77.42971106121622, 34.732934513014165], [-77.42968593051167, 34.73260651682538], [-77.42995082525138, 34.732113000644325], [-77.42974711451325, 34.731828999585176]], [[-77.24960249571282, 34.60859165121733], [-77.24971630945123, 34.6087080815593], [-77.2503051831575, 34.60884374815091], [-77.25035177079792, 34.60877734892358], [-77.25058788639684, 34.608437833017526], [-77.25062307491864, 34.608368666537544], [-77.25082529868092, 34.60794926155328], [-77.25080187217422, 34.60788812434947], [-77.25028734789062, 34.60775953958327], [-77.25004050219343, 34.60772633717584], [-77.24981984399429, 34.607754822284356], [-77.24971511579216, 34.607861855298374], [-77.2496660350678, 34.60799210616272], [-77.24936033901383, 34.608305266830726]], [[-77.4270039152053, 34.684187904089725], [-77.42675062741918, 34.68421655181778], [-77.42667694747757, 34.68431319504684], [-77.42665337566783, 34.68434483425106], [-77.42660692493975, 34.68440610598245], [-77.42655054601201, 34.68448047381513], [-77.42649152647608, 34.68455832444521], [-77.42648638506266, 34.68456596398814], [-77.42648560499471, 34.684578787145874], [-77.42647861086586, 34.684682844275066], [-77.42647914133242, 34.684703199300635], [-77.42649605952195, 34.68476533653028], [-77.42651514357591, 34.68485556064176], [-77.42650544015429, 34.68489483639665], [-77.4265424822503, 34.68493583848503], [-77.42661068166049, 34.684952746575526], [-77.42683105109376, 34.6850458437114], [-77.42702096021871, 34.68512607193017], [-77.42712022460785, 34.685153760939045], [-77.42720274816082, 34.685172886217835], [-77.4274180828932, 34.68523166765106], [-77.4276374239581, 34.685248090912374], [-77.42771123164587, 34.68525636275744], [-77.42773181522614, 34.685254717113125], [-77.42779426127834, 34.685249724526436], [-77.42792928292432, 34.68523892947876], [-77.42805980494839, 34.685228494006104], [-77.42826267729966, 34.68541007597216], [-77.42834231186015, 34.68535945489856], [-77.42862967235551, 34.68534745127345], [-77.42869704438591, 34.685372369262], [-77.42872373534584, 34.68530819413332], [-77.42857523258485, 34.685173214834236], [-77.42844397747757, 34.68500810446956], [-77.42843919581058, 34.68498056468816], [-77.4283835322611, 34.68494997202203], [-77.42797601259166, 34.68472749141355], [-77.4278902853843, 34.68470706622012], [-77.42780339983359, 34.68465917421409], [-77.42761169436164, 34.68456258152309], [-77.42742863150457, 34.68450955669737], [-77.42733211030581, 34.68442153077014], [-77.42711062237983, 34.68419589532566], [-77.4270848155955, 34.684168898789565], [-77.42696752138501, 34.68403242752625], [-77.42696487661502, 34.68402976914282], [-77.42696156575371, 34.68403065915032], [-77.4269614872496, 34.68403329562087], [-77.42695783442957, 34.68403647025281]], [[-77.28271293038912, 34.584389984149674], [-77.28367891490564, 34.58406796010239], [-77.2838419025602, 34.583900277438545], [-77.28404752720427, 34.58343282722774], [-77.28369161944138, 34.58314909412432], [-77.28347120612179, 34.58289017880671], [-77.28313993720353, 34.58271308776416], [-77.2829348644196, 34.58256433947022], [-77.28282875248189, 34.58275567108923], [-77.2827319139937, 34.583182118096744]], [[-77.33236223675776, 34.52821975205358], [-77.3323515061739, 34.52822157653883], [-77.33233893884018, 34.528224235524085], [-77.33203250290367, 34.52830759635145], [-77.33202561027346, 34.52838389625142], [-77.33195436299644, 34.528420590899835], [-77.33188111900579, 34.5284822913918], [-77.3318543191503, 34.52850296881486], [-77.33183289821153, 34.528520912949894], [-77.33182880554503, 34.528534601678885], [-77.33180405461994, 34.5285545996443], [-77.33178302664611, 34.52855873062756], [-77.33175454080185, 34.52857390785377], [-77.33167482789757, 34.52861794497399], [-77.33166484990502, 34.528625389366326], [-77.33162454089873, 34.528644036072606], [-77.33157949094635, 34.52858382200191], [-77.33157263892598, 34.52857143395382], [-77.33157529735495, 34.528560630022284], [-77.33156017837173, 34.528492160656484], [-77.3315496726684, 34.52845232822106], [-77.33156126228056, 34.528445500534026], [-77.33167399815326, 34.528381429559175], [-77.33176418848987, 34.528299076597534], [-77.33196290409222, 34.5280528399225], [-77.33217083161574, 34.52812654383364], [-77.33238514206627, 34.52796497566854], [-77.33201267096604, 34.52798842614177], [-77.33222930446289, 34.527658190502706], [-77.33269828748058, 34.5274303167026], [-77.3327633901603, 34.527387532785255], [-77.33282485603908, 34.527373976521346], [-77.33314424609264, 34.52736618994278], [-77.33307372320434, 34.52766833941001], [-77.3330257369542, 34.52787286343546], [-77.33278402456347, 34.52792832084773], [-77.3327508971499, 34.52792565571174]], [[-77.36983810743268, 34.588567539204554], [-77.3701203423206, 34.58873995056908], [-77.37023205230578, 34.588883029013594], [-77.37041004467996, 34.58876953102346], [-77.3706263552935, 34.588245288151654], [-77.37066075230761, 34.58811714211597], [-77.37083518159142, 34.58746757520053], [-77.37141480209291, 34.587358948742384], [-77.37150273437591, 34.58724143596095], [-77.37217587880686, 34.5870790168598], [-77.37220301187384, 34.58709369733383], [-77.37229824541558, 34.58713477149597], [-77.37231225926817, 34.5870301318508], [-77.37257276340725, 34.58659441739961], [-77.37220356065784, 34.585549376487386], [-77.37170099036291, 34.58657710118121], [-77.37141514459215, 34.58641885886274], [-77.37132743496832, 34.58641737559034], [-77.37062688557864, 34.58682534702275], [-77.3701627214863, 34.58683966943558], [-77.3694821094528, 34.58697288061184], [-77.36905062610798, 34.58691802437843], [-77.36872880647194, 34.58719967216224], [-77.36826235568437, 34.587310130615464], [-77.36805654132635, 34.5874214068474], [-77.36752076528239, 34.5877202617444], [-77.36750033575974, 34.58775151579909], [-77.36747404516392, 34.58778116295247], [-77.3671853512366, 34.58830687705433], [-77.36726024816538, 34.58860689235793], [-77.36728781747874, 34.588803107046466], [-77.3674736304064, 34.58879132656381], [-77.36794538579439, 34.588849052842505], [-77.36826167040593, 34.58901798423866], [-77.36839797175514, 34.58914525740505], [-77.36885159553691, 34.58901328357343], [-77.36904991415855, 34.58873406946824], [-77.36948969606199, 34.588661142895454]], [[-77.389332523823, 34.5121129192003], [-77.38890849424656, 34.511989101427815], [-77.38887424031854, 34.5119772053745], [-77.38884732830343, 34.51197376920722], [-77.38821833347096, 34.511991191425565], [-77.38787812955337, 34.51202345585561], [-77.38733627951872, 34.51221593955435], [-77.38728169687066, 34.51222997281445], [-77.38727163547871, 34.51223841314304], [-77.38700728012618, 34.512508237363264], [-77.38700680863391, 34.512592908475035], [-77.38696556108883, 34.51275908878149], [-77.38701091499013, 34.51290580637019], [-77.38725344951362, 34.51304416554717], [-77.38735945976718, 34.51312465501193], [-77.38760322253538, 34.51315675746859], [-77.38780072826191, 34.51327326545069], [-77.38803409516993, 34.51323141489316], [-77.38818312253404, 34.51316513453625], [-77.38872463566726, 34.513056277486996], [-77.38882347338301, 34.51303157070157], [-77.38889350184711, 34.51301404037685], [-77.38912439334655, 34.51293728262384], [-77.38951273222139, 34.51281860532068], [-77.38962010794158, 34.51250963856775], [-77.38966996931732, 34.51239843965188], [-77.38967279795175, 34.51236848747686], [-77.38969185371639, 34.512323592807725], [-77.3896244052055, 34.51231900515627]], [[-77.37583896256763, 34.58090846299778], [-77.37535743806427, 34.58090177368255], [-77.37516144326449, 34.58131388931521], [-77.37516474293393, 34.58152445433832], [-77.37519902084259, 34.58168993283023], [-77.37528989687638, 34.58235554436536], [-77.3753569416393, 34.58244859902021], [-77.37608475626601, 34.582241015205454], [-77.37612160450018, 34.582210407563224], [-77.37576693098566, 34.581437685609416]], [[-77.35051026802259, 34.55751944904907], [-77.35039598811834, 34.556481005935765], [-77.35039024790964, 34.556222120327234], [-77.35049853773941, 34.55599615821703], [-77.35055800857666, 34.55545844359541], [-77.35101049372726, 34.5556088227437], [-77.3511584256077, 34.55562192982394], [-77.35151016389702, 34.55571350224028], [-77.35173854197575, 34.555699170073154], [-77.35191957015115, 34.555757210464535], [-77.35195440566223, 34.55586011760553], [-77.35240060895057, 34.55585824674415], [-77.35251960507509, 34.555883191656875], [-77.35310768780701, 34.555831032672884], [-77.35321755066217, 34.555911286648595], [-77.3533065982952, 34.556055745687495], [-77.35338249425737, 34.556558455010354], [-77.35333176515017, 34.55664788201829], [-77.353377060421, 34.5567177344319], [-77.35335995937002, 34.55743451804054], [-77.35363031773953, 34.55745401160026], [-77.35362545666833, 34.557799494230316], [-77.35330544965541, 34.55796176162163], [-77.3527906007252, 34.55812963568829], [-77.35300132380826, 34.55754454056479], [-77.35210581462434, 34.55726858979564], [-77.3517301437274, 34.557341490808916], [-77.35132336370955, 34.557347625670275]], [[-77.36915031370908, 34.52128912819825], [-77.36921740600864, 34.521194088332685], [-77.36917121412404, 34.521104953513714], [-77.36918060212919, 34.52107697863865], [-77.36918099703132, 34.52105570229367], [-77.36916698787573, 34.520956526976285], [-77.36918603728894, 34.52085233374789], [-77.3691828447743, 34.52080824461927], [-77.36938987560413, 34.52069799738977], [-77.36941982484016, 34.52067938169685], [-77.36942581922479, 34.52067812111249], [-77.3694363724888, 34.52067287885562], [-77.36970542964866, 34.52056582464886], [-77.36981809950944, 34.52042476597644], [-77.36988013337864, 34.52036409975555], [-77.36987945938952, 34.52032730493201], [-77.36998177723913, 34.520203584719674], [-77.37002072378107, 34.52014430084454], [-77.370061062894, 34.52009319756168], [-77.37010149521649, 34.52001348428657], [-77.37009453815787, 34.51996595946614], [-77.37011161648388, 34.51991012516865], [-77.37005252818, 34.5198495999806], [-77.36994312407194, 34.51979630440772], [-77.3698338179621, 34.51973461856046], [-77.36976088192436, 34.5196928945896], [-77.3696720269854, 34.519659608791436], [-77.36956046235939, 34.519603248108524], [-77.36949058927769, 34.519563342896184], [-77.36944570278057, 34.519543397378264], [-77.36928481691112, 34.51957055978751], [-77.36922091217718, 34.51958498439522], [-77.3690488851172, 34.51973419009178], [-77.36903833593466, 34.5197444969151], [-77.36903727722469, 34.519751083665454], [-77.36903617037852, 34.51975882457853], [-77.36902760308769, 34.51987489135408], [-77.36904481931919, 34.51991263245002], [-77.3690694667213, 34.519975010154745], [-77.36908653446639, 34.519988812349446], [-77.36909578799482, 34.52002081103538], [-77.36913509044014, 34.52010422859891], [-77.36911962535434, 34.52015658916892], [-77.36911777808925, 34.52016793028946], [-77.36907464887138, 34.52021248264682], [-77.3690492105093, 34.520239018248276], [-77.36904439915635, 34.52024416163875], [-77.36903707945129, 34.52025232540838], [-77.3689882849899, 34.52027787312862], [-77.36883879363927, 34.520342238988306], [-77.36877752026592, 34.5203626518057], [-77.36863962126016, 34.520471035368594], [-77.36856772448523, 34.52050891936439], [-77.3685455420626, 34.52061309384543], [-77.36854955466353, 34.520800675549474], [-77.36851958641736, 34.520982210221725], [-77.36854844570969, 34.52109368568786], [-77.36858124233258, 34.52128576326544], [-77.36862057321004, 34.521306862756994], [-77.36886169639621, 34.52133930240173], [-77.36901076973534, 34.52140703202112]], [[-77.3842832389464, 34.51424794259983], [-77.384857154552, 34.514042574808826], [-77.3848764154703, 34.51403633066368], [-77.38488034727463, 34.514036770184056], [-77.38492387577388, 34.51403295020608], [-77.38559979088662, 34.51397468753946], [-77.38566300346201, 34.513960749361814], [-77.3857139073904, 34.513950600022895], [-77.38595979175258, 34.51388351426173], [-77.38638333824262, 34.51377959391066], [-77.38645607112099, 34.51359811386334], [-77.38657872196148, 34.51337797994367], [-77.38659740385015, 34.51330186677312], [-77.38664484344375, 34.51318309781457], [-77.38646935258642, 34.513009903334805], [-77.38640325304607, 34.51288323341143], [-77.38638017900183, 34.51284353966775], [-77.38608452737576, 34.51267293950913], [-77.38605252395115, 34.51266603918051], [-77.38569154404372, 34.512697267444395], [-77.38541009212918, 34.51280947286812], [-77.38529515677642, 34.512872239374175], [-77.38499949885743, 34.513042713512334], [-77.38493959892446, 34.513077251364166], [-77.38489741776715, 34.51310695058709], [-77.38436967633537, 34.51329665737697], [-77.38410651171961, 34.513373836281545], [-77.38374255335772, 34.513450012941654], [-77.383689499266, 34.513462425807454], [-77.38331758602527, 34.513552921667], [-77.3830822070205, 34.51366364885669], [-77.38269595702566, 34.51386464306849], [-77.38258832484931, 34.513920046775574], [-77.38252368848275, 34.513951577469186], [-77.38233155221506, 34.51403587869139], [-77.38203921793087, 34.51414957616959], [-77.38180813841659, 34.51443231109674], [-77.3817574707368, 34.514489660893574], [-77.38177015758916, 34.51451535099034], [-77.38172591171131, 34.51452126283024], [-77.38138517257592, 34.51482472757833], [-77.38132581683098, 34.51485921217443], [-77.38101215458823, 34.51503517598999], [-77.38092835877097, 34.515080575259354], [-77.3808841201566, 34.51510527598158], [-77.3806498334178, 34.51530958746305], [-77.38054370672428, 34.515399198814016], [-77.38055861459425, 34.51541595071485], [-77.38052769522099, 34.515443368100364], [-77.38045872153032, 34.51553386990765], [-77.38052547096241, 34.51554157157419], [-77.38065896939027, 34.51554408810697], [-77.38079122737123, 34.51552912058303], [-77.38091840530495, 34.51552012229513], [-77.38099841628431, 34.51552842174486], [-77.38131068968264, 34.51552736798763], [-77.3813198051529, 34.51552643145417], [-77.38166132262377, 34.515455753497406], [-77.38170521039841, 34.51543581387832], [-77.3819687314922, 34.515193685279186], [-77.38201187490012, 34.5151296233436], [-77.38216785016454, 34.51492013585181], [-77.3822637831857, 34.514755503119474], [-77.38251076780213, 34.514522626338994], [-77.38281502464557, 34.5145270086875], [-77.38329453889108, 34.5145719456326], [-77.38372930552575, 34.51442574915053], [-77.38408395362333, 34.51437165081966]], [[-77.37063212669, 34.57298711452821], [-77.37076228564965, 34.572958642957374], [-77.37119215595419, 34.57275647005876], [-77.37124451439882, 34.572559536167226], [-77.37156697288906, 34.57254438797123], [-77.37158385463965, 34.572700040923], [-77.37195917847818, 34.572914219215996], [-77.37202449917763, 34.573287964729744], [-77.37203779725095, 34.57348376238191], [-77.37198307922137, 34.573733815640516], [-77.37193333819012, 34.57405228632771], [-77.37158339187019, 34.574221896196974], [-77.37141961144927, 34.57431281886507], [-77.37136277011703, 34.574368900694196], [-77.37075256228954, 34.574387677487316], [-77.37063159638576, 34.57437104040959], [-77.37029832980936, 34.5741589091024], [-77.37026298932331, 34.574136738422936], [-77.36990286811616, 34.5737913167718], [-77.36989755965901, 34.57300052727463]], [[-77.4297072112259, 34.682856889288416], [-77.42962418219685, 34.682868075096074], [-77.42946219726488, 34.682884039725636], [-77.42937630139262, 34.68289324353561], [-77.42920076023054, 34.682999517911156], [-77.42912893761014, 34.68308703387426], [-77.42901285664813, 34.68304204006678], [-77.42890328726257, 34.68309203529082], [-77.4288409417502, 34.683082540918306], [-77.42873689171138, 34.683116813560815], [-77.42869764089329, 34.68312974222715], [-77.42866386913961, 34.68314086613748], [-77.42863399130067, 34.683150707439935], [-77.42860816977363, 34.68317042603881], [-77.4285669623275, 34.68319714747548], [-77.42856920589733, 34.68329368831348], [-77.42856331912081, 34.68333564088422], [-77.4285729560992, 34.68345506495092], [-77.4286219909705, 34.68356512962846], [-77.42881517471798, 34.683695840241825], [-77.42882394539598, 34.68369493296721], [-77.42903027608439, 34.68367358905547], [-77.42914867550027, 34.68367994977102], [-77.42937058654694, 34.683699078129045], [-77.42946245026624, 34.68370282869468], [-77.42951785417794, 34.68372289215078], [-77.42975699023495, 34.68375312512796], [-77.43002317696484, 34.6838012033977], [-77.43008982833739, 34.68374917747453], [-77.43048356211034, 34.68344816908953], [-77.43029085343429, 34.68305437941709], [-77.43021782385883, 34.682899082640404], [-77.42989095217403, 34.68283717633507]], [[-77.35409163064837, 34.56077480096822], [-77.3541037898009, 34.56078226762567], [-77.3540916159875, 34.56079962934417], [-77.35408057279211, 34.560785609290264]], [[-77.36449382301812, 34.62062330938778], [-77.3658839209938, 34.620977941538364], [-77.36636469816185, 34.62067064976321], [-77.36680550222694, 34.62079534425154], [-77.36698233255004, 34.62124714583028], [-77.36676350681523, 34.62179381561573], [-77.36683173676599, 34.622805520453284], [-77.36588334408462, 34.622399150057696], [-77.36556144206209, 34.62231356181142], [-77.36475714439874, 34.622082632559554]], [[-77.33316647984915, 34.52693203061554], [-77.33312404905988, 34.52687946239808], [-77.33316823326153, 34.52685648932385], [-77.33322528416042, 34.52686490507084]], [[-77.39138474883117, 34.512239259183], [-77.39158458564496, 34.51209261587538], [-77.39158824697655, 34.51208992184364], [-77.3915918614424, 34.51208356117773], [-77.39170164173157, 34.51189675621545], [-77.39173428973393, 34.51174211444073], [-77.39163203196624, 34.511596100236844], [-77.39149028470467, 34.51144407974857], [-77.39137522915317, 34.51138832561457], [-77.39121641401368, 34.5113295836485], [-77.39106935123449, 34.51128007952433], [-77.39082521200874, 34.51127524636776], [-77.39072410032968, 34.51130018581311], [-77.39056750032604, 34.51134508030481], [-77.39042905075942, 34.51144101668109], [-77.39033201888415, 34.511538864247015], [-77.39026684749837, 34.51169548146016], [-77.39014815254872, 34.51181022888062], [-77.39023832205885, 34.51190962438969], [-77.39041436793985, 34.51209263761859], [-77.39048652381906, 34.512204480527444], [-77.39054682075239, 34.512242369500086], [-77.39080084920991, 34.51235668858877], [-77.39092321006017, 34.51235655183075], [-77.39119360368589, 34.512342324507934]], [[-77.39753106364851, 34.50973277500908], [-77.39748175221384, 34.50974179922377], [-77.39713793849117, 34.509764316445], [-77.39685867882613, 34.509791404455754], [-77.39674451429327, 34.50980915566079], [-77.39665451946993, 34.509836084579], [-77.39635029868246, 34.50988920363863], [-77.39608830823204, 34.509973590039515], [-77.39598469844452, 34.5100069283031], [-77.3959546582851, 34.51003262945263], [-77.39576492565011, 34.51026510490085], [-77.39574051316146, 34.510384792992795], [-77.39560295534038, 34.51053331933309], [-77.3957738414862, 34.510613326253754], [-77.39594032510347, 34.51067058696696], [-77.39599302823187, 34.510688713711595], [-77.3961939026934, 34.510692853768546], [-77.3962945839216, 34.510701694647246], [-77.39633206662671, 34.510700865865445], [-77.39637965989603, 34.51069566066923], [-77.39672686985315, 34.51059482191311], [-77.3970888739792, 34.510543971134936], [-77.39751854002462, 34.5102906553944], [-77.39756259271803, 34.51027774476477], [-77.39757411928221, 34.5102487764549], [-77.39757954302135, 34.51021104777725], [-77.39771413405462, 34.509983727758716], [-77.39761032914524, 34.50980433482052], [-77.3975986551508, 34.50975556268606], [-77.39758522979504, 34.50972383062426]], [[-77.3705824902157, 34.5694478261705], [-77.37063350397791, 34.56940904680306], [-77.37100502549971, 34.56938695439456], [-77.37139667202948, 34.56935725523469], [-77.37142147331635, 34.56934828480426], [-77.37146095666647, 34.569363825774346], [-77.37198066032585, 34.56949285761469], [-77.37210342506454, 34.569963850856126], [-77.37213874560739, 34.57007274103955], [-77.37181507551712, 34.570345352828525], [-77.37158191449764, 34.57032625529261], [-77.37142106864876, 34.57042346103946], [-77.37112720974498, 34.5702184706316], [-77.37083371434589, 34.57004473579113], [-77.37063347391012, 34.569486918039544]], [[-77.43731037382575, 34.74064908542129], [-77.4373095915221, 34.74062121163969], [-77.43727227628955, 34.74051303037738], [-77.43719764032093, 34.74024971361362], [-77.4372183575434, 34.740030299916796], [-77.43722211768784, 34.739793098001854], [-77.43718421729439, 34.73945933651219], [-77.43716622648307, 34.73937001308366], [-77.43713043099753, 34.739164595356684], [-77.43706882771492, 34.73896424456604], [-77.4370355596106, 34.73884835983931], [-77.4370336793335, 34.73862794390446], [-77.43696872353712, 34.73826597109328], [-77.43698861434402, 34.73810490408184], [-77.43705923672263, 34.73801807944079], [-77.43707932134666, 34.73795481070705], [-77.4371386741356, 34.7377663176113], [-77.43726107173246, 34.73754483155543], [-77.43726570871985, 34.737531186782086], [-77.43724382813062, 34.7374758329327], [-77.4372947481052, 34.73748896103637], [-77.43746000842363, 34.737319558849144], [-77.43756768972662, 34.73725714990779], [-77.4377168128762, 34.73713830795795], [-77.43787790598907, 34.737016180763945], [-77.437990315792, 34.73694581673498], [-77.43812836848525, 34.736823959178295], [-77.4382185597828, 34.73682493035351], [-77.4384067720178, 34.736969742381305], [-77.43856949460493, 34.736998940415134], [-77.43881279567856, 34.73704787538165], [-77.4390253568777, 34.73704782143356], [-77.43921187870963, 34.737177328250695], [-77.43953615346848, 34.73748592431421], [-77.43953818962618, 34.737487590347015], [-77.43953845364555, 34.73749046180431], [-77.43958869751054, 34.737912924582965], [-77.43953898627724, 34.73804594302835], [-77.43951342497841, 34.73819223762929], [-77.4394753228163, 34.73840663513976], [-77.4394580563263, 34.7385766971148], [-77.43948707124635, 34.73862493738276], [-77.43949282998746, 34.738756067626596], [-77.43949637857911, 34.73884425796034], [-77.43948316582966, 34.738890464982575], [-77.43943212858083, 34.73896584340383], [-77.43936716878906, 34.73907483281536], [-77.43933505875339, 34.7390927536152], [-77.43923016122278, 34.739224884534465], [-77.43913707130562, 34.73930309552366], [-77.43918024132886, 34.73942256379991], [-77.43925671746811, 34.73957203483919], [-77.4392753317087, 34.7396309158418], [-77.43919037071215, 34.73986474492464], [-77.43918270613639, 34.73989502968349], [-77.43916173519294, 34.73990027427029], [-77.43902606032432, 34.74001300936676], [-77.43893270658054, 34.74007023988362], [-77.43887541891769, 34.74014079653472], [-77.43884599362056, 34.74017970188128], [-77.43884855855475, 34.74023055644898], [-77.43887944506858, 34.74033114665757], [-77.43888728289555, 34.740437603419], [-77.43887484909105, 34.740609055820784], [-77.43892230014015, 34.74086940065928], [-77.4389190809639, 34.74090402494167], [-77.43891640142839, 34.740955388684405], [-77.43893509119786, 34.741189133545184], [-77.43889802780515, 34.74132593377719], [-77.43888741263717, 34.7414519910132], [-77.43883481613467, 34.74156979410238], [-77.43878036188407, 34.741694105547694], [-77.43868923722843, 34.74185944827263], [-77.43862391519416, 34.74197299602436], [-77.438555522455, 34.741995165367506], [-77.43825281443438, 34.74206882511905], [-77.43822560850022, 34.7420701175111], [-77.43821294569466, 34.74207107790927], [-77.43819146526263, 34.7420671175792], [-77.43791179201624, 34.74200384872417], [-77.43773277394018, 34.74188713382771], [-77.43766021733353, 34.74184234535312], [-77.43764185261364, 34.74182875998706], [-77.43759699412547, 34.74179107833031], [-77.43726626204091, 34.7415602950309], [-77.43724195291963, 34.74121118299896], [-77.43724994638538, 34.741159406685], [-77.43727976945362, 34.741108256586905], [-77.43729090177109, 34.74082576167871]], [[-77.33381066191961, 34.52743460125289], [-77.33433166790238, 34.527464664868695], [-77.33445232415767, 34.527250238659136], [-77.3346680611176, 34.52714706115198], [-77.3349865982871, 34.52701358115186], [-77.33512793717867, 34.52698011274636], [-77.33529466922394, 34.52695334085322], [-77.33537640879561, 34.5270451920539], [-77.33523641429942, 34.52713522766578], [-77.33524481867852, 34.52747371166372], [-77.33519566326086, 34.52756082003272], [-77.33519057669606, 34.52760972609539], [-77.3352808481677, 34.52779338607323], [-77.33539025127925, 34.52784633427243], [-77.33549950006736, 34.52788385395302], [-77.33559595268791, 34.527932031444024], [-77.33567815829258, 34.527981063870115], [-77.33568555466027, 34.52798490390807], [-77.33569326376147, 34.52799151159274], [-77.33587191775253, 34.52796456800983], [-77.33589012701599, 34.527965462983396], [-77.33611936630003, 34.52806198318932], [-77.3359233193562, 34.52794580528649], [-77.33615138786605, 34.527829167767884], [-77.33619632694158, 34.527719122561535], [-77.33620165588354, 34.52766095769953], [-77.33608892851645, 34.527559051025506], [-77.33608477577273, 34.52754832473428], [-77.33607462849214, 34.527434409928], [-77.33610002760372, 34.527376871107556], [-77.3361720053943, 34.52734239150912], [-77.3362980501045, 34.52730072849113], [-77.33650654238068, 34.527372290752396], [-77.3365464019214, 34.527454255851936], [-77.33668436849327, 34.52756820581893], [-77.33669971831443, 34.527589324563856], [-77.33673251823711, 34.527796099493656], [-77.33677608753065, 34.52782315769812], [-77.3367390896795, 34.527866925764904], [-77.33667732298518, 34.527872299126905], [-77.33629862311217, 34.528149267823736], [-77.33627841283902, 34.52814812647553], [-77.33609138615374, 34.528296766978556], [-77.3360786302113, 34.528300130164176], [-77.33605661412679, 34.52830748574608], [-77.3358811500732, 34.52835276348803], [-77.33578891504817, 34.52839789416453], [-77.3357819923795, 34.528397092801264], [-77.335697138691, 34.52846796810702], [-77.33569436426407, 34.528476058994706], [-77.3356817603316, 34.52848776461329], [-77.33552679254537, 34.5285186678563], [-77.33548323442281, 34.52858547572525], [-77.33528218790597, 34.52852764392223], [-77.33519529038149, 34.528476491318216], [-77.33509476837318, 34.52841056068879], [-77.33500080025952, 34.52832329401693], [-77.33491446846426, 34.52820630035814], [-77.33490734668771, 34.52809191682987], [-77.33488649462902, 34.527986138742094], [-77.3347136740222, 34.52791786172868], [-77.33466764955085, 34.527910384727015], [-77.33432551740802, 34.52772980520815], [-77.33420415188303, 34.52777840147499], [-77.33384581482878, 34.52775493776954]], [[-77.36027012974009, 34.562575030314015], [-77.35999962982002, 34.56275647273163], [-77.35974873741102, 34.56251696419974], [-77.35968062099963, 34.56244618835696], [-77.35972372182769, 34.56222291975989], [-77.3597491253756, 34.56209235498708], [-77.35980303101977, 34.56204013539362], [-77.35995444730659, 34.56201368413554], [-77.36000004299508, 34.56195984155512], [-77.36013576823598, 34.56189045175021], [-77.36015843386033, 34.56203342281951], [-77.36024803719445, 34.562177688072595], [-77.36039379232366, 34.562331059307255], [-77.36046442649686, 34.562337792066884], [-77.36053339644167, 34.562403988277964], [-77.360522011835, 34.56254392719197], [-77.36039370549607, 34.56250003774877]], [[-77.34056181929503, 34.53334551484534], [-77.34053106388113, 34.533190816341815], [-77.34049799458735, 34.533163431625155], [-77.34049388155229, 34.533155579236556], [-77.34048099608162, 34.533127306973725], [-77.3404004290696, 34.53312721757834], [-77.34036155891243, 34.533183057853], [-77.34042075669343, 34.53321090651758], [-77.34038125760839, 34.53336628448707], [-77.34036575341102, 34.53342727289261], [-77.34044124376662, 34.53343674393169], [-77.34047380471686, 34.53343833782865], [-77.3406159670201, 34.53348055083548], [-77.34066966566826, 34.53345610223595], [-77.34068637394827, 34.53338115133004], [-77.34067218837829, 34.53334698232743]], [[-77.36776668378805, 34.52210598697416], [-77.36742005257118, 34.5223191455436], [-77.36732869986085, 34.52238957505375], [-77.36730951353051, 34.52244832249117], [-77.36729785526073, 34.522523323033084], [-77.36727376628184, 34.52257588672084], [-77.36728385862939, 34.52261611419379], [-77.36728847443965, 34.52269618059461], [-77.36740974876321, 34.522771002117324], [-77.36750741736631, 34.522847448037865], [-77.36771583007943, 34.522879428732985], [-77.36762558053559, 34.52299937921385], [-77.36779889441316, 34.5229175198281], [-77.36813982149056, 34.52281833350087], [-77.36818178432502, 34.52280469635272], [-77.3681963699865, 34.52269864686208], [-77.36821612011155, 34.522562512243006], [-77.36824141963567, 34.52233699903322], [-77.36827715105693, 34.522308890698575], [-77.36824481791386, 34.52228915110874], [-77.36820624350831, 34.52226548139162], [-77.36811307749718, 34.52214750025372], [-77.36795404479497, 34.52211062287388], [-77.36787401025254, 34.5220871087074]], [[-77.35246843433093, 34.6866937281887], [-77.35245468312414, 34.68677952617623], [-77.35242839186512, 34.68686027804873], [-77.35240811609485, 34.68690776592627], [-77.35247595742334, 34.687019534851245], [-77.35247624312497, 34.687020257462684], [-77.35247660809763, 34.687020516293856], [-77.35247999445723, 34.687019742378084], [-77.35275832071528, 34.6869507250021], [-77.3528037409242, 34.68692456976429], [-77.35309554812152, 34.68669152968417], [-77.35311285271754, 34.686626760302886], [-77.35309192941281, 34.68654669320332], [-77.35295197287668, 34.68646755255488], [-77.352952667835, 34.686456776852985], [-77.35292355792416, 34.6864589431158], [-77.35263705370329, 34.68646787723691], [-77.35257865105385, 34.68647230383506], [-77.35257266260687, 34.68651963528096]], [[-77.40440448975427, 34.5084200831278], [-77.40462441953035, 34.508397215108864], [-77.40482027264949, 34.50834459828314], [-77.40530281399232, 34.50822228159579], [-77.40541341139229, 34.50821047359804], [-77.4055459156206, 34.50811832907044], [-77.40578982549815, 34.50782287739157], [-77.40577460337295, 34.507381815657524], [-77.40543627781102, 34.50718760234183], [-77.40542028667117, 34.50716738084521], [-77.40539051062156, 34.50716142169285], [-77.40502473720025, 34.50698418938319], [-77.4046599882314, 34.5068068096189], [-77.40424187698974, 34.507070109215476], [-77.40386516526146, 34.50725465944188], [-77.40360530571586, 34.5074192469445], [-77.40375293536934, 34.50746501539395], [-77.4038572950869, 34.50760641551986], [-77.40395729777211, 34.50779308739209], [-77.40399061555787, 34.50785327722906], [-77.40407392076838, 34.50798164580575], [-77.40413040792627, 34.50807792661395], [-77.40416138584763, 34.50812136816073], [-77.4043902307764, 34.508285240313924]], [[-77.40212701151812, 34.50821415275541], [-77.401655236446, 34.508295225402485], [-77.40148658235225, 34.50833311130446], [-77.40126220308431, 34.50849211585034], [-77.40117830997761, 34.508559895644595], [-77.40098270841024, 34.508777309504666], [-77.40109770870328, 34.50899409516041], [-77.40111995828683, 34.50900232910944], [-77.40146940787935, 34.50909976449606], [-77.40169671827796, 34.509023130162035], [-77.4019461195529, 34.508933304541216], [-77.40226368461587, 34.5086776937603], [-77.40247205614594, 34.50856225005273], [-77.40251572200422, 34.50840253439724], [-77.40226968574464, 34.50840969687184]], [[-77.26724585143907, 34.59994033863197], [-77.267347944947, 34.59982221097654], [-77.2673109671387, 34.59964643269204], [-77.26759233532184, 34.59907572862221], [-77.26660937910114, 34.59902265588177], [-77.2661121078387, 34.599294301431215], [-77.26568771365721, 34.599691703712054], [-77.26580458636673, 34.59990216117208], [-77.26606058235186, 34.60038423382747], [-77.26702780435252, 34.600709074459814]], [[-77.35652979150865, 34.5612821671609], [-77.35645493288527, 34.561328048135145], [-77.35639694758554, 34.561301290222666], [-77.35645502225485, 34.56116904276441], [-77.3566235591353, 34.56060085675841], [-77.35681639085772, 34.56039180662623], [-77.35682640478512, 34.56036557465223], [-77.35684941503303, 34.56035173298128], [-77.3568512267681, 34.56038481941237], [-77.35685297294145, 34.56038654048865], [-77.35689588891239, 34.56075458618349], [-77.35724313927176, 34.560729601847385], [-77.35727601568786, 34.560750192595314], [-77.35739998307876, 34.56090148237391], [-77.3572430595728, 34.56087379382372], [-77.35702707009867, 34.56097786796619]], [[-77.39465569202304, 34.51115971761551], [-77.39479631997392, 34.51091881859331], [-77.3947993444136, 34.51086873123302], [-77.39466339544614, 34.51066893583125], [-77.39437223844283, 34.510599385165726], [-77.39427032876327, 34.5106629794388], [-77.39406479767845, 34.5107553342213], [-77.39400495860839, 34.51078222277614], [-77.39397536222872, 34.51079743829868], [-77.3937649719322, 34.51091381211761], [-77.39357798971912, 34.51101746671958], [-77.39340565381201, 34.51109530190371], [-77.39326521108688, 34.51116736651813], [-77.3931808297891, 34.51122795101668], [-77.39309182496356, 34.511263012258034], [-77.39301519432688, 34.511294077195856], [-77.39298175532736, 34.51135513399618], [-77.3928915716825, 34.51141433031948], [-77.3929798233893, 34.51144098906697], [-77.39307140606077, 34.51145347982629], [-77.39317574548318, 34.51145392041439], [-77.393345436821, 34.511487322336365], [-77.39356761151907, 34.51147881655862], [-77.39389902299762, 34.51147565328696], [-77.39395997323045, 34.51148167880723], [-77.39400318024175, 34.511471911906064], [-77.39435441606169, 34.51139198568198], [-77.39455721190112, 34.511299154611635]], [[-77.33527182267036, 34.53634358911725], [-77.33527481088288, 34.53636284217879], [-77.33527186395324, 34.536382362422316], [-77.33530227490529, 34.53639141486162], [-77.33534270498183, 34.53635307876787], [-77.33533838412463, 34.5363320392096], [-77.3353454339583, 34.53623027798304], [-77.33530618612086, 34.536222694983024], [-77.33526983971092, 34.536241148697144]], [[-77.38557755469998, 34.53499421328961], [-77.3855213430928, 34.53503856973482], [-77.38558005749854, 34.53501216852763], [-77.3855840436803, 34.534993277385595], [-77.38558050091112, 34.5349925313144]], [[-77.37065278272173, 34.51824019111874], [-77.37049580907109, 34.51817083047882], [-77.37036877288557, 34.51809023045711], [-77.37026491145461, 34.51803849911996], [-77.37015591027094, 34.51805311877375], [-77.37006831419232, 34.51805455658358], [-77.36997134905667, 34.51808748624093], [-77.3699507840585, 34.51815047119395], [-77.36996807133306, 34.51821006913313], [-77.37000942163681, 34.518297718012064], [-77.37011007824046, 34.51837234121807], [-77.37016330836158, 34.518422595678], [-77.37021653417169, 34.518479412677706], [-77.3702539538442, 34.51851970577849], [-77.3702954190066, 34.518563962043906], [-77.37032381482484, 34.51858636506858], [-77.37044729407874, 34.51864674180018], [-77.37049447087769, 34.518654641597045], [-77.37064237693544, 34.518697259226926], [-77.37080467646322, 34.51866115666051], [-77.37086500019552, 34.518646523714025], [-77.37089078565185, 34.518595955441825], [-77.37091437303371, 34.518501251702226], [-77.37091101689936, 34.51842056118248], [-77.3708729521278, 34.51836805916814], [-77.37074242778742, 34.51828120563203]], [[-77.37379292653016, 34.51710702677365], [-77.37380368257857, 34.51711445657691], [-77.37381792459668, 34.51712120114291], [-77.3741351052558, 34.517346298345274], [-77.37437321174755, 34.517373357444356], [-77.37459681285404, 34.517386491181306], [-77.37484864456052, 34.5172887791592], [-77.37505429958185, 34.517208057365195], [-77.37538821758415, 34.51710084434186], [-77.37563726857529, 34.51699501395959], [-77.37578462509708, 34.516926869218345], [-77.37592402557742, 34.516799804582234], [-77.37582212606826, 34.516588264703856], [-77.37580548486395, 34.51656418956096], [-77.37544092584012, 34.516379794155554], [-77.37540502630937, 34.516360708224646], [-77.37535865069971, 34.516362753434024], [-77.3750122237148, 34.51637605725305], [-77.37483094752977, 34.51646773123567], [-77.37469225907755, 34.516535202160064], [-77.37461548493832, 34.51656464461628], [-77.37443252702015, 34.51663826008121], [-77.37413640352658, 34.51676143355225], [-77.37381869402495, 34.51708734893256], [-77.37379984911365, 34.517094372388975]], [[-77.32906538158551, 34.53118330465409], [-77.32908210883274, 34.531132833573864], [-77.32913152697506, 34.531117968335195], [-77.32924850254301, 34.531044780661794], [-77.32953926179863, 34.53099947251171], [-77.32963207773649, 34.53086489075051], [-77.32985599267114, 34.53077676442597], [-77.32993753733834, 34.53075253711501], [-77.32994573725024, 34.5307638624305], [-77.32993717423899, 34.53076815539942], [-77.32974808752272, 34.53092138496753], [-77.329544876542, 34.53106630653412], [-77.3295374217212, 34.53107860539126], [-77.32916043409159, 34.53113204557136], [-77.32914306746252, 34.531156819387625]], [[-77.36592810002414, 34.52485079859908], [-77.36589007519876, 34.52491820133491], [-77.36589317154309, 34.52503513701506], [-77.36592470656512, 34.525096113652296], [-77.36590061020007, 34.52517168928216], [-77.36592815795, 34.52525004018344], [-77.36599568793034, 34.52533071307508], [-77.36606295162602, 34.525389383038316], [-77.36617101187237, 34.52545662678578], [-77.36626996844163, 34.52547404841639], [-77.36636617891294, 34.525504072688534], [-77.36650038398683, 34.52546354600019], [-77.36656650638498, 34.52532531339075], [-77.3666059079276, 34.52524279343937], [-77.36659523786561, 34.52522779672496], [-77.36664329646642, 34.52511499328327], [-77.3666650372426, 34.5250469468305], [-77.36672087942266, 34.52498140165359], [-77.36668489176061, 34.524918530308724], [-77.36657743402166, 34.52484628810041], [-77.36652239688846, 34.5248001599132], [-77.36646444266088, 34.52477352318533], [-77.36634900808328, 34.52469003680199], [-77.36589283877375, 34.524671184531975]], [[-77.34232808045822, 34.53505924690094], [-77.34263573676913, 34.53491376807934], [-77.34279614587133, 34.534863757202864], [-77.34280865051463, 34.534796399283636], [-77.34281294579158, 34.534788952703394], [-77.34319479482335, 34.53459956646553], [-77.34331634150757, 34.53454675376025], [-77.34346842636268, 34.53452506533019], [-77.34358908626884, 34.53452403727208], [-77.34360843766856, 34.534552094027525], [-77.34362126002742, 34.534650768632176], [-77.34361892099255, 34.53467299536762], [-77.34361162084497, 34.534690496137046], [-77.3435924875796, 34.53473800332666], [-77.34358372749001, 34.53475618733175], [-77.34356338969158, 34.534791214874986], [-77.34352068234985, 34.53480953908173], [-77.34345685597128, 34.53486355195223], [-77.34326832213486, 34.534917817635844], [-77.3431879940583, 34.53489412569026], [-77.34309994130084, 34.534938201090014], [-77.34285127712943, 34.53502825701151], [-77.34281651905155, 34.535259668741205], [-77.3427950695091, 34.535281162614545], [-77.34279532012009, 34.53528670281527], [-77.3428223491347, 34.53539964745691], [-77.3427831760128, 34.53542540339409], [-77.34264704132823, 34.53546291650636], [-77.34244804636083, 34.53553846577533], [-77.3423876250996, 34.53555523878289], [-77.34223495801297, 34.53551070850452], [-77.34217997253032, 34.53549995437384], [-77.34217385932354, 34.53548096511515], [-77.34220301629769, 34.535366338374374], [-77.34236163870314, 34.53512115912069]], [[-77.35715992838078, 34.543768223750234], [-77.35720562913161, 34.543680026431375], [-77.35727748585795, 34.543479285585924], [-77.35712597284626, 34.5433474301465], [-77.3570069132038, 34.54351824233927], [-77.35705681599421, 34.54371805017831], [-77.35705907361115, 34.54379093650226]], [[-77.33782164365678, 34.53035070425049], [-77.33794566957765, 34.530441660697605], [-77.3377931951381, 34.53053621891474], [-77.33775921319356, 34.53039793901003], [-77.33773793440002, 34.53037780836242], [-77.33775464573286, 34.530348653094876]], [[-77.34385219415496, 34.55330103702482], [-77.34394118978575, 34.553290665025784], [-77.34398332665548, 34.553252556851916], [-77.34403245208426, 34.55321976453876], [-77.3441963103933, 34.553107818075986], [-77.34419962512767, 34.55303820521304], [-77.34395502147548, 34.55299038917903], [-77.3439479373397, 34.552998195684424], [-77.3436791806613, 34.553104536336335], [-77.34384845973884, 34.553246232633086]], [[-77.35460709290902, 34.554199677283606], [-77.35461741381356, 34.55414479504519], [-77.35468040137175, 34.55403892100625], [-77.35470725660062, 34.554000036493825], [-77.35472277989244, 34.553981557365795], [-77.35477486654355, 34.55390874443063], [-77.35479004324505, 34.55387512349103], [-77.35482392962606, 34.553851187012754], [-77.35486423848974, 34.553864443352815], [-77.35487853398993, 34.553889002448955], [-77.35489412917161, 34.55396677154919], [-77.35489883593702, 34.55398187439911], [-77.35490339670716, 34.5539908748516], [-77.35491819951775, 34.55402072039532], [-77.35495001169076, 34.55407628818516], [-77.35495272361335, 34.55409652865103], [-77.35497650456983, 34.55413103854309], [-77.35500451945477, 34.55421148400988], [-77.35498053785788, 34.55429456044659], [-77.35501619533682, 34.554332214458555], [-77.3549083314166, 34.55445090784787], [-77.35475942067322, 34.554369176194925], [-77.35461385145751, 34.55433064576481], [-77.35458330124342, 34.55427211654187]], [[-77.39469930867955, 34.57658533437834], [-77.3946746339301, 34.57657856316346], [-77.39465220996246, 34.57657829544779], [-77.39464676318372, 34.576592914346755], [-77.39464099190984, 34.57661966411055], [-77.39459002876043, 34.57702566991232], [-77.39453641538712, 34.5771719551246], [-77.39466499420675, 34.5771488205918], [-77.39483489719439, 34.57699034642705], [-77.39501372401058, 34.576915739613156], [-77.39498090700474, 34.57662891236655]], [[-77.34486883631081, 34.54325106106042], [-77.34479422596904, 34.54331739692483], [-77.34478812042128, 34.54342175592256], [-77.34475257129364, 34.54356820949474], [-77.34492162049818, 34.54377353686584], [-77.34492033061642, 34.543788892855474], [-77.34491730346124, 34.54380671370702], [-77.34494492493202, 34.543817879418626], [-77.3449671754646, 34.543795709601326], [-77.34496940379299, 34.54378183239264], [-77.34536164279837, 34.543490922722846], [-77.34536907563582, 34.543464903609724], [-77.34540777460792, 34.543229121223604], [-77.345351639946, 34.54320533789411], [-77.34507886056196, 34.543201782622305], [-77.3449592022202, 34.54319882546842]], [[-77.37252621245236, 34.518024104031404], [-77.37252649638859, 34.51808158710372], [-77.37261845356443, 34.518092791679855], [-77.37278845720905, 34.518124627788346], [-77.37284072175541, 34.51811778131468], [-77.37301203107194, 34.518043763995394], [-77.37314388217033, 34.51793507124128], [-77.37314233581428, 34.51776783953656], [-77.37320987512982, 34.51768072986509], [-77.37311689607321, 34.517634519794456], [-77.37302178625504, 34.51761474429887], [-77.37288605566519, 34.51756791596591], [-77.372747412608, 34.517575675179444], [-77.37262951297637, 34.51760651413792], [-77.37246797264984, 34.517787670490584], [-77.37246793213318, 34.51788453046768], [-77.3724600534201, 34.51791122620097], [-77.3724923831002, 34.51794828395768]], [[-77.35931080741038, 34.54703507835699], [-77.3593250874894, 34.54705705781423], [-77.35928425872085, 34.54705516995638], [-77.35928103609598, 34.547035624836234], [-77.35927143941208, 34.546986949593006], [-77.35926685104448, 34.546947654564875], [-77.35926147988519, 34.54690192528095], [-77.35932331660459, 34.5469049223322], [-77.35932555021202, 34.54693309843702], [-77.35932007709651, 34.54697994612393]], [[-77.33673519048293, 34.53482040637297], [-77.33672568961869, 34.53479984528731], [-77.33669876220125, 34.53480267038607], [-77.33669808097767, 34.53482073244799]], [[-77.34967584098827, 34.55279373869017], [-77.3496456553037, 34.55280116183229], [-77.34960358048511, 34.55281150865338], [-77.34954694451149, 34.552825194030454], [-77.34952839680831, 34.55279624100908], [-77.34951984254027, 34.55275418443287], [-77.34951630176722, 34.55273677630329], [-77.34952250682036, 34.552719124084916], [-77.34952862249858, 34.55270440071216], [-77.34955039243003, 34.552675310616856], [-77.34955669023492, 34.552673662351076], [-77.34961655505987, 34.55268101275194], [-77.34964800788657, 34.552698888189404], [-77.3496792797868, 34.55271332317419], [-77.34966961576252, 34.552761547018754], [-77.34967264709321, 34.55277548286355]], [[-77.35928274242822, 34.54666390137421], [-77.35930781860512, 34.546646626579324], [-77.35931081008157, 34.54667300860201], [-77.35931122467154, 34.54667775934672], [-77.35929096205004, 34.54668802930829]], [[-77.35948905954963, 34.54750939044707], [-77.3594510225794, 34.547532412665646], [-77.35946484055854, 34.547497606931564], [-77.35947258278725, 34.54744763415758], [-77.35945133845392, 34.547411484195266], [-77.35942827440654, 34.54735563160875], [-77.35949423939925, 34.54737901751085], [-77.35949742245256, 34.54738927497848], [-77.35948892779221, 34.547445280583815], [-77.35949377790104, 34.54744959393791], [-77.35949648628198, 34.54749800657608], [-77.35948988468488, 34.54750634878041]], [[-77.34292358084491, 34.52588695450094], [-77.34291677279472, 34.5259067485633], [-77.34284206950755, 34.52594863501154], [-77.34286524207243, 34.52588166006586]], [[-77.35929890018517, 34.54660967062286], [-77.35923008579346, 34.546613410421784], [-77.35923760389252, 34.54657984701706], [-77.3592801951381, 34.546575488358506]], [[-77.34833398700891, 34.55115017940437], [-77.34833853324572, 34.55114943131305], [-77.34833992923083, 34.55114640637464], [-77.34834412031566, 34.551144388144685], [-77.34834341140044, 34.551140172375256], [-77.34834182994561, 34.551138482230016], [-77.34834213941409, 34.551135662106034], [-77.34834469572337, 34.55113041921761], [-77.34833917458042, 34.551128293124734], [-77.34833457871224, 34.55112447469072], [-77.34832556523267, 34.55112759646033], [-77.3483251338612, 34.55113323407019], [-77.34832708060931, 34.55113744323226], [-77.34832726383304, 34.5511405782198], [-77.34833039941614, 34.551145473073966], [-77.34833120440396, 34.55114766183291], [-77.3483323736087, 34.55114852339411]], [[-77.33875138499296, 34.55242939620653], [-77.33875065064515, 34.55243138114174], [-77.33875396613882, 34.55243065254414], [-77.33875416813038, 34.55242872041298]]]]}, "type": "Feature", "id": "demo8", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19031456423028, 34.644242465966386], [-77.19579313336114, 34.644867969925684], [-77.19922509637607, 34.64595892197913], [-77.20174566315922, 34.64644195046827], [-77.2064995025654, 34.64876032771997], [-77.20693013864486, 34.64895695019093], [-77.20717109531898, 34.649055743361714], [-77.20801839423129, 34.64947139331709], [-77.2094851188515, 34.649471407843805], [-77.21040126854231, 34.649342077984485], [-77.21354872164872, 34.64942192777886], [-77.21373770527407, 34.64941873638309], [-77.21389244066783, 34.64943563430496], [-77.21539977174766, 34.64946916863252], [-77.21541127974143, 34.649471416050744], [-77.21541130398025, 34.649464353106275], [-77.21540867517906, 34.649451603741596], [-77.21417794273995, 34.64918673118936], [-77.21536079187301, 34.64811140107318], [-77.21514474131347, 34.64755784604583], [-77.21485183938088, 34.64722079392992], [-77.21298226356478, 34.64669489587402], [-77.21256249278717, 34.64546841142918], [-77.21241914089262, 34.643966652044796], [-77.21278236966738, 34.64360035561435], [-77.21234912663044, 34.642802285664885], [-77.21169900452355, 34.641629308669565], [-77.21168958213337, 34.6413006286873], [-77.2116781313399, 34.640165187216546], [-77.21167805908188, 34.63836620071192], [-77.21105688995368, 34.63780761556779], [-77.21452185955086, 34.634554707499035], [-77.21478693157978, 34.63444976521246], [-77.2148492676433, 34.63433631038144], [-77.2150058429586, 34.63418339904141], [-77.21751137844407, 34.63077562424457], [-77.22174198798018, 34.630116096651534], [-77.22418014686573, 34.62881339898034], [-77.22602001527028, 34.62767637033778], [-77.22773970560704, 34.626482823391164], [-77.22849783743501, 34.62598644651425], [-77.22871933227447, 34.625802558298794], [-77.22939639786699, 34.62517733478553], [-77.23042952484724, 34.62425338856491], [-77.23158826339086, 34.62309465559353], [-77.23459736114216, 34.620978667472684], [-77.23475753291639, 34.62082384240837], [-77.23486873119352, 34.62075291034196], [-77.23508195833465, 34.620613489318686], [-77.23845242204641, 34.61868089998136], [-77.24003567254906, 34.61749347934612], [-77.24006425401458, 34.617471315021945], [-77.24008155818811, 34.617457278909015], [-77.24009461906998, 34.617377067884405], [-77.24058824250243, 34.615798146465245], [-77.24053421169616, 34.615622943652326], [-77.23860168906417, 34.613663191071424], [-77.23856277720752, 34.61361699765933], [-77.2385074165948, 34.6135778118515], [-77.23821969975391, 34.61321471445439], [-77.23887710982413, 34.613119259010645], [-77.24219206205805, 34.6114886678072], [-77.24125253050323, 34.61002334707714], [-77.24289192601294, 34.60948164200941], [-77.24294823055278, 34.60903685024018], [-77.24331455586929, 34.60830043293892], [-77.24349108392406, 34.60809891866248], [-77.24372412209445, 34.60759232980741], [-77.24374859858776, 34.60739193344756], [-77.2437555283163, 34.60726517524848], [-77.24391333839694, 34.60693356409336], [-77.24376276625672, 34.6068010010953], [-77.2432955291644, 34.606702557362574], [-77.2432853605019, 34.606412738913214], [-77.24316536148476, 34.60631534220565], [-77.24275802129785, 34.606168947699395], [-77.24273044087766, 34.60589766608635], [-77.24263806055797, 34.60569122265784], [-77.24259973151675, 34.60549341714625], [-77.2422790698592, 34.605390749446485], [-77.2422052845232, 34.60492667961873], [-77.24220043889949, 34.60491320423199], [-77.24275244737122, 34.60475598351683], [-77.24275705982872, 34.60469976494397], [-77.2427380376949, 34.60466091760645], [-77.24261791110557, 34.604636318946554], [-77.24219737153746, 34.6048960398644], [-77.24217733296227, 34.60490181771886], [-77.2421537913315, 34.60490952825456], [-77.24215203455093, 34.60492619710154], [-77.24158921103717, 34.6053363865379], [-77.24131376669632, 34.60544846305919], [-77.2410283727945, 34.60553941097788], [-77.24049708424974, 34.605545540075916], [-77.23964440428085, 34.60518310855096], [-77.24082274088076, 34.6050117046717], [-77.24096567042777, 34.60481589576365], [-77.24123271058556, 34.604718981354374], [-77.24124984269524, 34.60452906934876], [-77.24123352686928, 34.60436565530625], [-77.24119526065176, 34.6040282839407], [-77.24121454495472, 34.603807511323616], [-77.24134023432993, 34.6034313645542], [-77.24140749099864, 34.60312499181216], [-77.24143796663144, 34.602989129616674], [-77.24133489331118, 34.602959593013296], [-77.24142700515058, 34.60291965030801], [-77.2414039239911, 34.602493681002144], [-77.24171377442912, 34.602151133779664], [-77.24213301298161, 34.601608438833004], [-77.24253473480898, 34.601275453771585], [-77.24307676627015, 34.60090624741607], [-77.24321372043241, 34.60075090345629], [-77.24334027853504, 34.60067723463643], [-77.24352922349715, 34.60059957374836], [-77.24394724730487, 34.60058044432948], [-77.2445581688255, 34.600445795640496], [-77.24536526605024, 34.60030401047943], [-77.24599103063875, 34.60002702392191], [-77.246196405638, 34.59973859134169], [-77.24629405281004, 34.5993603790373], [-77.246462955492, 34.59912150659586], [-77.24656660871969, 34.5988652370491], [-77.24682515492974, 34.59851807429297], [-77.2469135560823, 34.59821430553261], [-77.24721215897102, 34.59788881003218], [-77.24738637035452, 34.59770256161717], [-77.24754402624492, 34.59732127313276], [-77.24802381516422, 34.596954858583636], [-77.24888960115577, 34.59667286865798], [-77.24924774931682, 34.59672881193442], [-77.2501564784637, 34.59678662162652], [-77.2505105918485, 34.596801925106746], [-77.25175403238852, 34.596923340880736], [-77.25171256894481, 34.597649550064794], [-77.25173783475532, 34.59770898027406], [-77.25231747952326, 34.59818199550538], [-77.25278967353121, 34.59867703495975], [-77.25287059615684, 34.5988027625638], [-77.2530466564725, 34.598792894029806], [-77.25395789556009, 34.598768992999624], [-77.25449399961869, 34.59876547066356], [-77.2545699911892, 34.59877692438478], [-77.25458727170557, 34.59880182819591], [-77.25460147626495, 34.59881965168641], [-77.25497862868055, 34.59902270839611], [-77.25506741134373, 34.59927541314937], [-77.25507984120574, 34.59932864337266], [-77.25462669098954, 34.59949793571918], [-77.25456956786704, 34.59948996591386], [-77.25415049948599, 34.599605843613176], [-77.25390779229805, 34.599558730297694], [-77.25375361468345, 34.59969559920072], [-77.25396843016388, 34.599965607415896], [-77.25399085657466, 34.60049473024507], [-77.25407688050271, 34.600663728197276], [-77.25480032761305, 34.601653994148336], [-77.25480423987193, 34.601659824849044], [-77.2548076578014, 34.60166393026035], [-77.25607981872776, 34.60245798828136], [-77.25626565339451, 34.602582300307276], [-77.25668714444396, 34.60275451208413], [-77.2574411152944, 34.60310036258896], [-77.25828939568368, 34.60329422266079], [-77.25956718222118, 34.60327678672509], [-77.25983943111673, 34.60300250659022], [-77.26004993848181, 34.60263503129478], [-77.26038202570751, 34.602102509010805], [-77.26051100604663, 34.6014870205333], [-77.2612702882009, 34.60070842797181], [-77.2604227385239, 34.60054061261452], [-77.25990010873583, 34.60048667005806], [-77.25960607434077, 34.6004882669545], [-77.25910138545446, 34.600116420530604], [-77.25902195045275, 34.60008066674142], [-77.25905197937092, 34.59991701575644], [-77.25908912525169, 34.5996441171913], [-77.25934936127813, 34.59922325119296], [-77.25932421333108, 34.59919127197089], [-77.25960614551012, 34.59882182719759], [-77.26011169058705, 34.59850296013854], [-77.26010888778765, 34.59831032040882], [-77.26005777088825, 34.59822316699362], [-77.26010075566688, 34.597844314652036], [-77.26018315105863, 34.597373485698355], [-77.26004166545607, 34.59675954794192], [-77.25978721327257, 34.596399660035715], [-77.25926687108594, 34.59615977154787], [-77.25812527005036, 34.59600750477297], [-77.25777296917494, 34.59577968113277], [-77.2575410989785, 34.595491429766625], [-77.25742319762404, 34.59527098352801], [-77.25713387167887, 34.59490909265716], [-77.25714394613584, 34.59430632853149], [-77.25708429521731, 34.59380828024446], [-77.25692989155792, 34.59351584831307], [-77.25639103205117, 34.59330439349714], [-77.25592532383652, 34.593157183854615], [-77.25576949409754, 34.59307432389849], [-77.25511604703574, 34.59272538673946], [-77.25528609599777, 34.59227474501154], [-77.25539108955553, 34.59188760025374], [-77.25542272093496, 34.591814159031536], [-77.25549722963083, 34.59177022734806], [-77.25546224944499, 34.59149355190812], [-77.25525819443305, 34.591329866383354], [-77.25536302652749, 34.59116329913534], [-77.25549228932132, 34.590451258254845], [-77.25567548080232, 34.59042002639268], [-77.25635607046165, 34.58990492796452], [-77.2566813494472, 34.58955651015673], [-77.25729206476605, 34.58897134790976], [-77.25768478516909, 34.58869279899735], [-77.25744108337514, 34.588240820813354], [-77.25740837930286, 34.58819970693333], [-77.25740015751077, 34.5881960625931], [-77.25739977190784, 34.58818622913983], [-77.25733339936257, 34.587722464171314], [-77.25772510439256, 34.58733956474125], [-77.25776480216277, 34.58721418699541], [-77.2582837614581, 34.58685457108703], [-77.25862280482454, 34.58666274928442], [-77.25886524514569, 34.58642899054001], [-77.2590056310618, 34.586345965844075], [-77.25912399270679, 34.586080888898046], [-77.25909035842831, 34.5859753641538], [-77.25909652029833, 34.585769536879766], [-77.25963108158558, 34.58544228182846], [-77.25992620529794, 34.585192927362115], [-77.26004496375421, 34.58510779667348], [-77.2601037259328, 34.58497915861723], [-77.26025589972946, 34.584207258490956], [-77.26025092387376, 34.584189211010646], [-77.26026294790076, 34.58418226992344], [-77.26026464414286, 34.5841794171686], [-77.26027850519144, 34.584162575630415], [-77.2606449793081, 34.58374098823008], [-77.26057950100251, 34.583698743150464], [-77.26079034885126, 34.58333246503073], [-77.26082373347309, 34.58328371316993], [-77.26102907272991, 34.58316295794208], [-77.26120518413487, 34.58304416376371], [-77.2613682448127, 34.58303592984238], [-77.26167698718359, 34.58306451655652], [-77.26195163412876, 34.583050793724524], [-77.26233819868155, 34.5829315198837], [-77.26279942676344, 34.58251206094715], [-77.26281059415246, 34.582500244799796], [-77.26282096774813, 34.582498158825956], [-77.26282591884974, 34.58248998070923], [-77.26350480825909, 34.581803180118044], [-77.26350242094273, 34.58160908578341], [-77.26381916473562, 34.58138312809334], [-77.26405711189236, 34.581181378078256], [-77.26418436858248, 34.58109309113657], [-77.26441862024441, 34.58097752228652], [-77.26466587435493, 34.580757921452495], [-77.2648436636439, 34.580364985788414], [-77.26511334396912, 34.580163538572435], [-77.26545537238151, 34.57987733923279], [-77.26559545333217, 34.579719146658924], [-77.26578514735498, 34.57943193742866], [-77.2659084555013, 34.57934029706823], [-77.26600980480518, 34.579092904687556], [-77.26603952476353, 34.578980605736625], [-77.26615387210491, 34.57890134141336], [-77.26641703246585, 34.578693101177294], [-77.26682924257709, 34.578571371392364], [-77.26708886341405, 34.5784184438035], [-77.2674178475141, 34.57838089654162], [-77.26790651947272, 34.578382396858075], [-77.26829089323398, 34.578321296346196], [-77.26840697473739, 34.578276267746425], [-77.26877176852723, 34.578252771688284], [-77.26925417197836, 34.5780832718231], [-77.2695681869633, 34.57799455079142], [-77.26998441567925, 34.57760397281089], [-77.26982422490444, 34.57739284084652], [-77.27016461470053, 34.577210574424136], [-77.27054052973082, 34.5772063904973], [-77.270752034422, 34.57699444307783], [-77.2708929418204, 34.576543903800335], [-77.27092759004852, 34.57653690915497], [-77.27097246488022, 34.57649895863802], [-77.27138032265589, 34.57562982881056], [-77.27136902942995, 34.57561553250577], [-77.27180414511325, 34.57519180803989], [-77.27164202191695, 34.57502828751255], [-77.27159032797996, 34.57479776661007], [-77.27150071080685, 34.57469662490934], [-77.27160486460815, 34.574548294940065], [-77.27162083669388, 34.57447040094995], [-77.2720251079217, 34.5742707420882], [-77.27203116542188, 34.57427022857599], [-77.27204028718738, 34.57426770326281], [-77.27206842363398, 34.57425121408202], [-77.27204058508306, 34.57424013584346], [-77.27214576209239, 34.57385480951542], [-77.27218344749866, 34.57380762250872], [-77.27218957223953, 34.57375392519001], [-77.27212471739199, 34.57356733997783], [-77.27222257678801, 34.573458600926614], [-77.27231145549155, 34.57334635079184], [-77.27240401204897, 34.57328745380152], [-77.27255399655836, 34.57322485057496], [-77.27283965041964, 34.57322739880026], [-77.27310959131997, 34.57325775386779], [-77.27344815322246, 34.573123348435956], [-77.27379112208516, 34.57323832690156], [-77.27402364250669, 34.5736520427681], [-77.27409735176083, 34.57385844843614], [-77.27419346226347, 34.573965587351196], [-77.27450550018656, 34.57407295129387], [-77.27447952435553, 34.57441729251131], [-77.2744924045091, 34.57444528998929], [-77.27449109741019, 34.57448628920621], [-77.27421971430884, 34.57491031084909], [-77.27392900072341, 34.57539124590531], [-77.27477760129187, 34.57549463351831], [-77.27526428428592, 34.57593504889313], [-77.2757444635782, 34.57618074695793], [-77.2759691625113, 34.57647186286814], [-77.27628707355075, 34.57671230052043], [-77.27653883413652, 34.57697784140642], [-77.27697304197908, 34.57719013723387], [-77.27719791350022, 34.57737558381473], [-77.27819131714837, 34.57805030183564], [-77.27828997540936, 34.57816641608923], [-77.27841840481248, 34.57829567962806], [-77.27881946918174, 34.578702884095634], [-77.27938004026937, 34.579086315496575], [-77.27954623433148, 34.579165428863725], [-77.27962024978444, 34.57925269411594], [-77.28015468440569, 34.579672309014725], [-77.28068147380455, 34.580131164346625], [-77.28076423795176, 34.58017877368255], [-77.2807876419582, 34.58027789235706], [-77.28091951743465, 34.581092506085625], [-77.2808445301204, 34.58161844614021], [-77.28054228473472, 34.58249524189715], [-77.2802027624923, 34.58292152809396], [-77.27999140176394, 34.58340787742714], [-77.2787831905659, 34.58618823230358], [-77.27825242575102, 34.58653898211948], [-77.27830991381367, 34.58697743382618], [-77.27847612408442, 34.58818345584739], [-77.27945400543842, 34.587551671946976], [-77.28015302986641, 34.58744714753394], [-77.2820365012713, 34.58766802339906], [-77.2836453672461, 34.587131695169084], [-77.28444349398407, 34.586907073044635], [-77.28503236796612, 34.58666935887463], [-77.28596397690953, 34.585702367766224], [-77.28640028857558, 34.585278019663974], [-77.28575800402442, 34.58295297852838], [-77.28543335521513, 34.582399223807656], [-77.28471298392655, 34.58185862035861], [-77.28419082895935, 34.58146676573935], [-77.28353112937907, 34.58097167269206], [-77.28320718323383, 34.58072755078562], [-77.28244060312556, 34.58034270709244], [-77.28099115742278, 34.580093739520905], [-77.2809448607201, 34.57996693433428], [-77.28048977077077, 34.57954674262834], [-77.28084462562802, 34.579201322157836], [-77.28067796341092, 34.57882774815031], [-77.28064376934907, 34.57875415358884], [-77.28060397190339, 34.57871109986446], [-77.2805780124004, 34.578584353945956], [-77.28039418952693, 34.57822329949217], [-77.28031283867038, 34.57814328237946], [-77.28021522789378, 34.5780759200797], [-77.27987238432526, 34.577573454023856], [-77.27905161040772, 34.57717521349255], [-77.27902828681074, 34.5771548834001], [-77.27901608087377, 34.577113598200675], [-77.27875866200964, 34.57652104059055], [-77.27875122096273, 34.57620896560335], [-77.27869533677045, 34.5760809789786], [-77.27862421857274, 34.575836544933054], [-77.27858618659926, 34.57572467514657], [-77.27852016294504, 34.57544041325137], [-77.27852546654451, 34.57524857690627], [-77.2784667924836, 34.57516066062006], [-77.27865522252316, 34.574787440933605], [-77.27868808638073, 34.57442833194955], [-77.27867889011448, 34.5743463066786], [-77.27865775818105, 34.57431631185717], [-77.27865802709078, 34.57424874600436], [-77.27846969863442, 34.57383021194477], [-77.2784916931524, 34.57368157880627], [-77.27831773209104, 34.57349386514595], [-77.27803014037855, 34.57348710064798], [-77.27788476560083, 34.57351672876971], [-77.27776726655966, 34.573456686796646], [-77.27754002465291, 34.57336509526762], [-77.27741909977023, 34.573348636681], [-77.27743881902283, 34.57327790744801], [-77.27747055289217, 34.57319284561167], [-77.2774163043424, 34.57304047438136], [-77.27743089589853, 34.5729767808957], [-77.27729004408906, 34.57279489067882], [-77.27736653842486, 34.5726334602476], [-77.2767620108182, 34.57228207785468], [-77.27663652355818, 34.572172143417234], [-77.27694137377445, 34.571408006891154], [-77.27705507119788, 34.57136244221097], [-77.27709463836408, 34.57126560638547], [-77.27741013077879, 34.570510569744656], [-77.27760990878072, 34.570463371013204], [-77.27748348632291, 34.57038502185718], [-77.27770075658916, 34.57011187194219], [-77.2782279904332, 34.57004059548546], [-77.27830334912447, 34.56999058973866], [-77.27905425074854, 34.56963416776353], [-77.27919217299491, 34.5694667052872], [-77.27953061205446, 34.56942787170425], [-77.28004894119918, 34.56891432103096], [-77.28006570626451, 34.56877095546351], [-77.28023857051136, 34.56861766869733], [-77.28039325119731, 34.56832535232002], [-77.28053332204149, 34.568030807949356], [-77.28073474623758, 34.567880842950366], [-77.2808912978588, 34.56763816162777], [-77.28089604566918, 34.56742218438754], [-77.28109633816324, 34.567217226256815], [-77.28238373925583, 34.56706768449271], [-77.28239320624328, 34.56705620247309], [-77.28197031096084, 34.5664988778332], [-77.28187441416071, 34.56645862281805], [-77.2817562259195, 34.56607575406031], [-77.28183479198682, 34.56590254817139], [-77.28226713357816, 34.56568173553128], [-77.28231415645313, 34.56567170369708], [-77.28331136417656, 34.56528308395632], [-77.28344571040529, 34.565363692961114], [-77.28355093880852, 34.565274025745225], [-77.28369201388993, 34.56511868357385], [-77.28431690898005, 34.56486283965131], [-77.28434217077826, 34.564846638491595], [-77.28438638683238, 34.564823485135285], [-77.28511742443051, 34.56445435992353], [-77.28540878461638, 34.56428737956124], [-77.28561875590049, 34.564240529858054], [-77.28691479679304, 34.56369121339375], [-77.28704648684771, 34.56371421506227], [-77.28712140879183, 34.563627280613716], [-77.28786487310352, 34.56344683523224], [-77.28829842743231, 34.563201151228924], [-77.28868885404225, 34.56294344484608], [-77.28908253585001, 34.56279680772539], [-77.29033348549699, 34.56207583815231], [-77.2907289174609, 34.56185475347634], [-77.29161827809355, 34.561541047648205], [-77.29191966859725, 34.56142497173136], [-77.29236627146169, 34.56134275336446], [-77.29302260406246, 34.561231332165114], [-77.29350356677489, 34.56086952635438], [-77.29406298858024, 34.560744304235094], [-77.2942956422663, 34.56036403142666], [-77.2947938558411, 34.560106486423734], [-77.29509422469991, 34.560027345445576], [-77.29560302006554, 34.55986176008837], [-77.29588610635223, 34.55975152717683], [-77.2964865502988, 34.560049777613145], [-77.29642675372841, 34.56020424055544], [-77.29640992495854, 34.56055037839268], [-77.29634194588078, 34.56086065453867], [-77.29577825905494, 34.56113059257538], [-77.29580780281715, 34.56159431364263], [-77.29583305095562, 34.56161790972906], [-77.29584179090251, 34.561625804574966], [-77.29613428824442, 34.561872759565425], [-77.2963238470784, 34.56184570292456], [-77.29645945532152, 34.56162702642403], [-77.2959336971885, 34.56159790803295], [-77.29663279957703, 34.56138742994172], [-77.29687877757998, 34.56112216981035], [-77.29702383614294, 34.560951924104785], [-77.29739907950331, 34.560434424179846], [-77.29738393642697, 34.56041065800195], [-77.29742924709998, 34.56039646752242], [-77.29744293874566, 34.559918774852086], [-77.29740402731719, 34.55991816600013], [-77.29745341390068, 34.55989571005747], [-77.29795095720337, 34.55965675591601], [-77.29824637579402, 34.55957371559963], [-77.29908694105808, 34.559676730922035], [-77.29946534487314, 34.55983783987783], [-77.29980446171574, 34.56010861985907], [-77.3005172465401, 34.560450742244754], [-77.29999424221208, 34.56065209116794], [-77.299778107103, 34.56122548477694], [-77.29956735398632, 34.56143799128343], [-77.29955530184766, 34.561567981340936], [-77.29971794627394, 34.561576981783006], [-77.29976737319409, 34.561680371829915], [-77.30002609786665, 34.56230911791176], [-77.30035986357788, 34.56243177023502], [-77.30015183442755, 34.562716535918454], [-77.30011381817822, 34.56295668487697], [-77.29972920176387, 34.56329802994116], [-77.29953486481276, 34.563409854076184], [-77.29934864206777, 34.563556075405785], [-77.29893569078601, 34.56412298270848], [-77.29870041445136, 34.56424475272731], [-77.29881583391966, 34.56448155697487], [-77.29847714401987, 34.56488610350873], [-77.29814620417012, 34.56536446017314], [-77.29809648716984, 34.56538024311536], [-77.29806712523525, 34.565438006379], [-77.2976048441816, 34.56577057243332], [-77.29740566444937, 34.56632954441376], [-77.29738989984452, 34.566384195468416], [-77.29739356477793, 34.56642314883869], [-77.29750188633787, 34.56706010445403], [-77.29750763441865, 34.56721634808841], [-77.29750736118183, 34.567379789204985], [-77.29747888796025, 34.567936032876446], [-77.29748527743425, 34.568068596338826], [-77.29750552647418, 34.56822827209782], [-77.29763505261575, 34.56859350916981], [-77.29796039081504, 34.56884948443509], [-77.29789835020219, 34.569120359803705], [-77.29797388675965, 34.569696590182105], [-77.2981405276127, 34.56988315208932], [-77.29835378810733, 34.569642094002745], [-77.2984416074557, 34.56910381317931], [-77.29851874256191, 34.56876938754745], [-77.2986744733998, 34.568174023313865], [-77.29869836882963, 34.56789457854381], [-77.2987762632476, 34.56771644870412], [-77.29869210615513, 34.567046432568155], [-77.2990601705531, 34.56628162523294], [-77.29936793410928, 34.56610043768316], [-77.2997216136907, 34.56573809811767], [-77.29996847372004, 34.56543083072836], [-77.30110200275166, 34.565213943659884], [-77.30129820749025, 34.565151508829246], [-77.30145680246768, 34.56512255563419], [-77.30158828221644, 34.56493283376347], [-77.30181083456992, 34.564603525334704], [-77.30181868159897, 34.564339994181935], [-77.30181730368076, 34.56405092696209], [-77.30180165285933, 34.5637447771483], [-77.30246222261883, 34.56310934025918], [-77.30202979441941, 34.562724843866754], [-77.3020354198552, 34.56264016900431], [-77.30230859621562, 34.562514126298], [-77.30288970168255, 34.562493731925706], [-77.30314667358708, 34.56203189858023], [-77.30381679289138, 34.56152017454295], [-77.30449165927735, 34.56116836765008], [-77.30470424097518, 34.56095859957598], [-77.30514381099346, 34.56076606246197], [-77.30570887603608, 34.56045410037057], [-77.3060869710518, 34.56012336079459], [-77.3064591016167, 34.559825691379714], [-77.30760842321988, 34.55947332362404], [-77.30767323585633, 34.559461542988004], [-77.30776240835905, 34.559466654420035], [-77.30924802803528, 34.55928712175067], [-77.31001235640774, 34.55958634460052], [-77.31007085096341, 34.559597124736314], [-77.31081074026298, 34.55962714960955], [-77.31091781191903, 34.55944762912229], [-77.31081921459977, 34.55926600683556], [-77.31065722310201, 34.55909886099938], [-77.31070888554129, 34.558988006315985], [-77.31071663330589, 34.55891784665877], [-77.31071387293149, 34.55857347843485], [-77.31068673091896, 34.558501568685976], [-77.31070275488572, 34.55809932459231], [-77.31067762663977, 34.55801325768547], [-77.31060699529849, 34.55787067557145], [-77.310857193477, 34.55764750667658], [-77.31119700690229, 34.55716424070703], [-77.31132819303353, 34.55694061650213], [-77.31179802497888, 34.55646317249468], [-77.31184797088014, 34.556268448025605], [-77.31169419539677, 34.55590882921176], [-77.31148340971545, 34.55531617643818], [-77.31172874202937, 34.554428331755076], [-77.31175955123385, 34.55394097032487], [-77.31175762726866, 34.553462182779846], [-77.31206168768482, 34.55291835083398], [-77.31204181397818, 34.55260682249074], [-77.31252289654088, 34.55189768803088], [-77.31254411567194, 34.551869843331914], [-77.312557222607, 34.551864074155475], [-77.31256351981597, 34.5518613969471], [-77.31265646969658, 34.551796700960324], [-77.31341891257527, 34.55128997503313], [-77.31345157427295, 34.55119556196649], [-77.31380287040841, 34.55070984770886], [-77.31391076085121, 34.550535755254145], [-77.31416896839073, 34.55037175586827], [-77.31496113280004, 34.55005422344395], [-77.31496167160044, 34.550053907988364], [-77.31496176709585, 34.55005385984952], [-77.31496277057754, 34.55005365689152], [-77.31575544869992, 34.549689915550815], [-77.31586056287053, 34.54949783291231], [-77.31597556898414, 34.5494185780345], [-77.316555337468, 34.549064440580054], [-77.31694491923281, 34.54903217372075], [-77.31693925730153, 34.548558538111486], [-77.31702941634359, 34.54828797135908], [-77.31711773718068, 34.54812259575312], [-77.31721820664276, 34.547771232460754], [-77.3173751418943, 34.54758704581107], [-77.31752605355753, 34.54732770874682], [-77.31808909810064, 34.54715651493133], [-77.318138221007, 34.54712896715338], [-77.31817142657347, 34.54711433085038], [-77.31819725986443, 34.547124718564795], [-77.31826341187933, 34.54713147556924], [-77.318807791206, 34.54714564194363], [-77.31895363410356, 34.54724350276746], [-77.31940760530767, 34.5472502800409], [-77.31973692246528, 34.54732649927496], [-77.31981968815757, 34.54734564924651], [-77.32000000044042, 34.54737163234508], [-77.320288657291, 34.54747361424467], [-77.32038758046704, 34.54772750611819], [-77.32040196838065, 34.54780350948241], [-77.32036557142101, 34.547898048287415], [-77.32029832774069, 34.54818090289437], [-77.31975464130609, 34.54836002383962], [-77.31971252672828, 34.54837068413338], [-77.3196367668976, 34.54835560325299], [-77.31943653009353, 34.54843182696205], [-77.3193334762749, 34.54845633966399], [-77.31945853509586, 34.54858393170956], [-77.31955951889334, 34.548658970855826], [-77.31970254092371, 34.54879809786607], [-77.31978733777697, 34.548817893127634], [-77.31980505338305, 34.54886851010092], [-77.3200736836869, 34.549083958560395], [-77.3202263106617, 34.54963641295895], [-77.3202200924886, 34.549788134010086], [-77.32012478112144, 34.55001051201036], [-77.3201108145723, 34.55007703217033], [-77.32024455348528, 34.55027424406035], [-77.32028841542092, 34.55066037513819], [-77.32032978283931, 34.55075162436866], [-77.32025299476815, 34.550878751657315], [-77.3200953109706, 34.55156006221425], [-77.31985340238455, 34.55179930700997], [-77.31983779401013, 34.55215789849679], [-77.32040567309426, 34.552314017323766], [-77.32062801850192, 34.552525561762074], [-77.32091790742447, 34.55262562918869], [-77.32124539158019, 34.553023929396765], [-77.32195550619218, 34.55320176418549], [-77.32219156338832, 34.55327366984466], [-77.32274022563516, 34.55322587544992], [-77.32293985118807, 34.55331438917488], [-77.32323093847401, 34.55345292965628], [-77.32328495813758, 34.55361003258885], [-77.32325161840646, 34.553759220456094], [-77.32350586911006, 34.554068153492224], [-77.32356982374873, 34.55416188850749], [-77.32363332882785, 34.554194001983134], [-77.32428297239986, 34.55441938742479], [-77.32449712716698, 34.55442589245064], [-77.3250685467391, 34.55440727064346], [-77.32513492906975, 34.55442620150695], [-77.32533477050055, 34.554439148942], [-77.32571685261111, 34.55446876139331], [-77.32585230206865, 34.55447323827791], [-77.32610950827488, 34.5544884072102], [-77.32623600025698, 34.55430964176753], [-77.326649239651, 34.55397294080748], [-77.32678643542008, 34.553824297313696], [-77.32719220885834, 34.55368259661099], [-77.327729347169, 34.553289684968405], [-77.32823892909384, 34.553151042866084], [-77.32872192077474, 34.552779249735465], [-77.32954270177387, 34.55254070532081], [-77.32982431518633, 34.55251291175563], [-77.33006914634792, 34.552441470621076], [-77.3303446400901, 34.55241684005487], [-77.33060813024964, 34.55257559291514], [-77.33069671435463, 34.55263320325325], [-77.33075418952129, 34.55268100997556], [-77.33138564620533, 34.552909567844104], [-77.33154051695386, 34.55296030891752], [-77.33178065047417, 34.553023088018534], [-77.33216728829304, 34.55306603865457], [-77.33283703628706, 34.55294500875158], [-77.3329553425419, 34.55294626488611], [-77.33304429928491, 34.552896169972534], [-77.33317152233505, 34.55282313851287], [-77.33335377245895, 34.55269654344676], [-77.33369495123975, 34.55274788679433], [-77.33373166856205, 34.5527510106595], [-77.3337447518329, 34.55276795231292], [-77.33393988717702, 34.553076175691466], [-77.3342390249068, 34.55347774708704], [-77.3342274091269, 34.55365059884662], [-77.33371217587651, 34.55417249637514], [-77.33368168534791, 34.55420007802968], [-77.33365053687258, 34.55426033031451], [-77.3339974186843, 34.55435376939079], [-77.33388884399838, 34.55418890713021], [-77.3345032583217, 34.553922420801655], [-77.33460760263905, 34.55408556975854], [-77.3345466737743, 34.554547851685584], [-77.33458501904495, 34.55457844938581], [-77.33462513187428, 34.55465932284153], [-77.33464264878474, 34.55544057314231], [-77.33467765119627, 34.5555443955998], [-77.33445684855768, 34.55592425431743], [-77.33417305685391, 34.556426523767286], [-77.33387488211065, 34.55663907332682], [-77.33373064463942, 34.55709565812643], [-77.33372369620436, 34.55720142524587], [-77.33423739076107, 34.557566222458405], [-77.334114854228, 34.55777038144003], [-77.3344152362221, 34.557719177287865], [-77.33480843679962, 34.557729425198914], [-77.3357049211468, 34.5575330851045], [-77.33599150995765, 34.55747575486214], [-77.33609750933206, 34.55736324728561], [-77.33618318876212, 34.55728646289311], [-77.3375908627563, 34.55623474531149], [-77.33836314739494, 34.55697299627549], [-77.33837253140474, 34.55744607581845], [-77.33913589949178, 34.55734025461476], [-77.33914776529384, 34.557349800836874], [-77.33920797299503, 34.557386749890156], [-77.33947617184965, 34.557547390088054], [-77.3395028037492, 34.55755649855311], [-77.33952302357837, 34.55757949731471], [-77.33967979660952, 34.55776292393071], [-77.33970478132534, 34.557982676107514], [-77.33969157207687, 34.55818577349017], [-77.3397103570434, 34.558390613887255], [-77.3397546581416, 34.55860124393128], [-77.33972953525276, 34.55880085038534], [-77.33967961538761, 34.559211666698125], [-77.33952925502669, 34.55948274499678], [-77.33962135703261, 34.55978127072266], [-77.33962039094058, 34.559894182191194], [-77.33966760382167, 34.56005022574455], [-77.3397891654837, 34.56029445355914], [-77.3397857643931, 34.56042899884275], [-77.33980851245681, 34.56071621430238], [-77.33975314675845, 34.560979963240975], [-77.33960739696103, 34.561169679172615], [-77.33956431611993, 34.56165325741918], [-77.33912085345635, 34.56228672985062], [-77.33846898175398, 34.562036096333046], [-77.33833316129046, 34.562030072818395], [-77.33796485924351, 34.56180297849953], [-77.33754705491138, 34.561465956672684], [-77.33754621028706, 34.56146554602146], [-77.33754571686562, 34.56146513105905], [-77.33754363120221, 34.561464200492445], [-77.33752441125911, 34.56146921255704], [-77.33682287695123, 34.561640331782094], [-77.33684090942731, 34.56232630493291], [-77.3368934766844, 34.562409016056996], [-77.33703989590296, 34.56269298474357], [-77.3373104644288, 34.56319814222646], [-77.33729151349598, 34.563473104536236], [-77.33729225849824, 34.56377866867037], [-77.33734716356294, 34.56404194880203], [-77.33705749329135, 34.564409052365946], [-77.33706881145316, 34.56459324728702], [-77.33714920283138, 34.56471258841718], [-77.33733679813739, 34.564892522868774], [-77.3371487395467, 34.565298556176494], [-77.33713989160577, 34.56533587361468], [-77.3371427583089, 34.56534496441306], [-77.33714581351053, 34.56534763647094], [-77.33734460084338, 34.56574048392288], [-77.33739269147848, 34.56642195160376], [-77.33741539284924, 34.56657938863381], [-77.337426823713, 34.56670142674041], [-77.33747158057432, 34.566995851704114], [-77.3374648921021, 34.567079152787954], [-77.33741039129168, 34.56728829875978], [-77.33729990203052, 34.56744507763496], [-77.33714694971091, 34.56756523438728], [-77.33685858324844, 34.56762237780751], [-77.33675276617876, 34.56783296297181], [-77.33658145689839, 34.567733060749575], [-77.33635881577328, 34.5678052495894], [-77.33622262489314, 34.56774677346884], [-77.33609710384174, 34.56776049548335], [-77.33596479226166, 34.56786887991474], [-77.33571615354587, 34.56794064783995], [-77.33518765855862, 34.567760315732514], [-77.33517692595187, 34.56777115036004], [-77.33513468891091, 34.56780186195916], [-77.33468823961738, 34.56814336228396], [-77.3347239891899, 34.56830302801925], [-77.33466190652132, 34.56867342275321], [-77.33457969254347, 34.56889173939433], [-77.33438797132578, 34.56900032625157], [-77.33411275841061, 34.569176905550165], [-77.33438776649876, 34.56924986153933], [-77.33447707411429, 34.569220743121434], [-77.33458480279032, 34.56919302675514], [-77.33474797315208, 34.56912209526021], [-77.33478186171129, 34.56910812433963], [-77.33480058917426, 34.56909819771038], [-77.33488678436424, 34.56906563493112], [-77.33511688149325, 34.568968901753685], [-77.33517600639924, 34.56890371525235], [-77.33538233111122, 34.56879208656107], [-77.33557006537129, 34.5688030727118], [-77.3357190343647, 34.568785477576114], [-77.33596411050668, 34.568718447435025], [-77.33674497728927, 34.56922302940657], [-77.33674899815536, 34.569225321915106], [-77.33675166112661, 34.56922656447546], [-77.33709790471313, 34.569647908594526], [-77.33745896250988, 34.56988309825876], [-77.33753910081563, 34.56988861692233], [-77.33758669979868, 34.5698997902647], [-77.3376377015237, 34.56994375813189], [-77.33811100538537, 34.57010833920554], [-77.33823793734305, 34.570611099713155], [-77.33828766960687, 34.57069938739528], [-77.33830217674634, 34.5707234243603], [-77.338326375078, 34.57078095163236], [-77.33843685238864, 34.57098326536097], [-77.33846020999766, 34.57109912063418], [-77.33852305227725, 34.57119112041614], [-77.33856244894868, 34.571254186848236], [-77.33859923727272, 34.57129140137191], [-77.33871987353139, 34.57141619074062], [-77.33877205362438, 34.5714225915316], [-77.33882999183672, 34.57147049255198], [-77.33900833760163, 34.571558438839425], [-77.33911345474009, 34.57195107166734], [-77.3393752388103, 34.57224117527508], [-77.33957476582998, 34.57256398777816], [-77.33956882147358, 34.572704631140844], [-77.3395067426756, 34.57288007933971], [-77.33947481239161, 34.57304166898916], [-77.33938077195029, 34.57308946523789], [-77.33920563547956, 34.57321501274673], [-77.33911248514876, 34.57322381844625], [-77.33901083242046, 34.57325216904234], [-77.33884742763382, 34.57330515774909], [-77.33871838502745, 34.573357816858106], [-77.33854309606461, 34.57344564977137], [-77.3383241581943, 34.57365451296339], [-77.33830571435887, 34.573668587017025], [-77.33810935642786, 34.573890104313165], [-77.33792997551433, 34.57389063697158], [-77.33776422895974, 34.57392500648775], [-77.33759276459081, 34.573771094240534], [-77.33755244729575, 34.57375925176138], [-77.33753608098543, 34.57375426773011], [-77.33727293047775, 34.57367615086865], [-77.33680014982762, 34.57351641265103], [-77.33674824766298, 34.57354228786569], [-77.33655865561312, 34.57369938253644], [-77.3363034873761, 34.573902066469344], [-77.33623811076151, 34.57396585300895], [-77.33619876503357, 34.574138533232784], [-77.3362344383701, 34.57439092138302], [-77.33632124256697, 34.574837436223106], [-77.33735471449732, 34.57507894329404], [-77.33750987411787, 34.575083757555305], [-77.3375350433917, 34.57508554932326], [-77.33755452087534, 34.575071192270514], [-77.33763812809276, 34.575038196680765], [-77.33818608488892, 34.574811598399414], [-77.33832329623331, 34.57477382247822], [-77.33856139959919, 34.5746489949729], [-77.33879393512653, 34.57452984534839], [-77.33911159525553, 34.57439336933169], [-77.3394906147254, 34.57436346765845], [-77.33951749725587, 34.57435622430107], [-77.3398996099877, 34.57438138388268], [-77.3402497960185, 34.57428542240103], [-77.34033016151972, 34.57426586482371], [-77.34068793579709, 34.5739494390681], [-77.34137954791805, 34.573651127122204], [-77.34143808590346, 34.573601648952646], [-77.34151463758094, 34.573590282092525], [-77.3422644122084, 34.573293290729424], [-77.3429435713803, 34.573543276221415], [-77.34305221498369, 34.57356109002225], [-77.34323118345993, 34.57357768715598], [-77.34384024795389, 34.57350918099576], [-77.3439826385762, 34.573430122444954], [-77.34438471222161, 34.57348135417309], [-77.34462826462223, 34.573478815320485], [-77.3449058276805, 34.57344302219273], [-77.34513291784447, 34.57341665719211], [-77.34528326950733, 34.57351422011414], [-77.34538409586983, 34.57353433360868], [-77.34541621542843, 34.57354327514316], [-77.34566913993851, 34.5736106763188], [-77.34581009123147, 34.57372233525036], [-77.3459744890571, 34.573839338119086], [-77.3460757133683, 34.573962930733245], [-77.34620383514498, 34.57409897266949], [-77.34644559030586, 34.574196117032734], [-77.3465402844712, 34.574244402595234], [-77.34659772871538, 34.574257841002975], [-77.34670290411486, 34.574272441607114], [-77.34699166991007, 34.5743473872044], [-77.34713171640914, 34.57437104144007], [-77.34724155069071, 34.57435087083293], [-77.3472730231077, 34.57419857502981], [-77.34730161246657, 34.57407297494545], [-77.34732075515133, 34.57400002451216], [-77.34738606143867, 34.57375735968989], [-77.34741157935264, 34.57366003559058], [-77.34744323259676, 34.57362805488941], [-77.34753748047581, 34.573352820609855], [-77.34778041565733, 34.57321593467206], [-77.34793437909565, 34.57339137098483], [-77.34817425170652, 34.57346046203278], [-77.34820575410221, 34.57348439453192], [-77.34832100840231, 34.573501775159585], [-77.3485119524554, 34.57353491340165], [-77.34856818668032, 34.57355587657059], [-77.34867510095387, 34.57356604287762], [-77.3488084568506, 34.57343164597254], [-77.34905524030827, 34.573071530187775], [-77.34922998940557, 34.57265849856008], [-77.3492483377532, 34.57251926368728], [-77.34931255150458, 34.57246225926489], [-77.34935692336066, 34.57239342081884], [-77.3496270143396, 34.5719063888708], [-77.35002727206998, 34.571685333577456], [-77.35014527353067, 34.571810404033286], [-77.35031389413044, 34.57169847676696], [-77.35093348277448, 34.57143636184405], [-77.35094240494982, 34.571426418542934], [-77.35093356779545, 34.57129948658459], [-77.3509008448292, 34.57061901830663], [-77.35090358439567, 34.57058290710717], [-77.35091820482053, 34.570563755982164], [-77.35093404835695, 34.5705259276325], [-77.35122890818695, 34.5702185607048], [-77.35172251377959, 34.56970820714305], [-77.35177368775032, 34.569663719589656], [-77.35201385361897, 34.56957404336711], [-77.35251062799249, 34.56944700415691], [-77.35254761596336, 34.56945736744609], [-77.35319814830287, 34.56929528921941], [-77.35329870588845, 34.56923824109678], [-77.35337114741705, 34.569300613570505], [-77.3534870175938, 34.56936204127955], [-77.35408632001395, 34.569815680790846], [-77.35432946528103, 34.569827874697914], [-77.3548351072778, 34.570017123883375], [-77.35487412446383, 34.57008058892998], [-77.3549020826395, 34.57003758533943], [-77.35539867241783, 34.5702197756411], [-77.35547551293456, 34.570349501877445], [-77.35560101957613, 34.57039704669957], [-77.3556618592562, 34.570477262417896], [-77.35582854543091, 34.57054357948392], [-77.35587212907981, 34.57071696696532], [-77.35601085807505, 34.571073437675146], [-77.35596574327238, 34.57112804400319], [-77.35566136246442, 34.571357187735856], [-77.35557161161236, 34.57151270453622], [-77.35538706039982, 34.57150682595611], [-77.35526730673708, 34.57148067517337], [-77.3552039581746, 34.57144996423782], [-77.35514955988978, 34.57137246600308], [-77.3549364924775, 34.57134417250785], [-77.35487337852818, 34.57137975030625], [-77.354556506975, 34.57141399087081], [-77.354479368459, 34.571421853238064], [-77.3543110135018, 34.57154754121246], [-77.35426235753806, 34.57113918402097], [-77.35426767213791, 34.57094789190319], [-77.35408571812515, 34.570846470503], [-77.35333144151511, 34.57104619926754], [-77.35329761733325, 34.57107246192134], [-77.3532889913218, 34.571079449615645], [-77.35326285350246, 34.57109250184501], [-77.35327117724921, 34.57111976493857], [-77.3532975903428, 34.57111800004677], [-77.35393152724444, 34.571845370070456], [-77.35402389854782, 34.57189803041629], [-77.35408503639921, 34.57201560121959], [-77.35426913885055, 34.57244722892193], [-77.35443686009901, 34.572621743981486], [-77.35414908069997, 34.57344235495075], [-77.35487243351128, 34.57302871395981], [-77.3552253570188, 34.572888471268854], [-77.35526650028551, 34.57289944789076], [-77.35528211100221, 34.572907817487135], [-77.35530766662671, 34.5729209659595], [-77.35557379611205, 34.57321398324181], [-77.35562951004782, 34.5732991946889], [-77.35565256415813, 34.57330417480206], [-77.35566026088905, 34.57331173068896], [-77.3557120741348, 34.57334316182622], [-77.35610641334553, 34.573598729126665], [-77.35633846337329, 34.573621704993656], [-77.35644807046336, 34.57363624181166], [-77.35674841430838, 34.573663596658506], [-77.35702977457102, 34.573724516436634], [-77.35721193902688, 34.573495978421626], [-77.35723614408597, 34.57348596900384], [-77.35761140865931, 34.57341825455441], [-77.35763020304591, 34.57336759929723], [-77.3577777587032, 34.57325559599194], [-77.35766833236165, 34.57347142997709], [-77.35751951828692, 34.57387625589468], [-77.35744528015539, 34.57411266343776], [-77.35723553526623, 34.574606222061114], [-77.35720857174408, 34.574741143445465], [-77.35720535150631, 34.57477058234721], [-77.3568412651002, 34.575098588038905], [-77.35672609887574, 34.57514004538691], [-77.35644721890786, 34.575176995688345], [-77.35607397309798, 34.57533551718519], [-77.35603707355752, 34.57534599812131], [-77.35598473323662, 34.575370823523215], [-77.35572859171398, 34.575482632833314], [-77.35565901993995, 34.57551929815159], [-77.3555368683684, 34.57556687622414], [-77.35540020754692, 34.575600675695455], [-77.35526481494743, 34.57587246671574], [-77.35497831592322, 34.575824409909515], [-77.3548708029947, 34.57588142533911], [-77.35482898745826, 34.57591667871411], [-77.35456302040342, 34.575999991605194], [-77.35478300442162, 34.57606282497883], [-77.35487071994197, 34.576026983628196], [-77.35493667587119, 34.57601727836351], [-77.35526479165385, 34.57591363157776], [-77.35534991728585, 34.575886741373154], [-77.3555906698192, 34.57577859913993], [-77.35565886601808, 34.57579353754294], [-77.3556885102236, 34.57580605953263], [-77.35577105397158, 34.575826129145135], [-77.35605282207095, 34.57588391532818], [-77.35626560273336, 34.57595018416433], [-77.35644667902575, 34.576155469921005], [-77.35670383157728, 34.576263824796044], [-77.35680020613106, 34.57652710449519], [-77.35694392874126, 34.57681933167871], [-77.35723408795212, 34.57727565299203], [-77.3572609017522, 34.5772810024237], [-77.35726146258507, 34.57730981700654], [-77.35725463119189, 34.57733296918331], [-77.3573580539974, 34.57801101522901], [-77.35735322903133, 34.57814571207558], [-77.35762746641099, 34.57845933583086], [-77.35771012124809, 34.578429850019766], [-77.35802147876467, 34.57847109290053], [-77.35828204581595, 34.5785802994496], [-77.35841538715125, 34.57868032209478], [-77.35855993665334, 34.578552245852215], [-77.35880967944674, 34.57815719465991], [-77.35887831102076, 34.57800004712981], [-77.35924435254444, 34.57787349242223], [-77.35953761692276, 34.57776630612621], [-77.35959802315986, 34.57755226805549], [-77.35979868221914, 34.577160583285696], [-77.35977199751385, 34.57694842851068], [-77.36038658369867, 34.576494205656225], [-77.36059936790227, 34.57659998021309], [-77.36078056221024, 34.57655462386947], [-77.36100154746846, 34.57658499568875], [-77.3611746052815, 34.576485665196785], [-77.36134316902988, 34.57654057163578], [-77.36138358268202, 34.576716414623505], [-77.36156834278762, 34.577039095898], [-77.3616128876084, 34.57705994573586], [-77.36161722066848, 34.57710733099263], [-77.36171676320494, 34.57725303699127], [-77.36181163454933, 34.577503894031345], [-77.3619067948658, 34.57754979205366], [-77.36196208788488, 34.57758806633536], [-77.36232257963532, 34.577890847333855], [-77.3624391506037, 34.57792776132843], [-77.36274990422073, 34.578031990190155], [-77.36305119034456, 34.57774997627309], [-77.36308532189162, 34.57768174433978], [-77.36322116846162, 34.577642461964274], [-77.36353819474462, 34.57747419975273], [-77.36378362316461, 34.57748441632913], [-77.36403500483922, 34.57749753838459], [-77.36432622422134, 34.57746535532413], [-77.36461621869955, 34.57763662049783], [-77.36472014924493, 34.57765919094793], [-77.36489654178168, 34.577718717692335], [-77.3649711594012, 34.57774401986724], [-77.36511410310501, 34.577792492473485], [-77.36516452498617, 34.57781588037001], [-77.3652568678065, 34.577856924184715], [-77.36550804271408, 34.577960822658724], [-77.36567837910529, 34.578037204131554], [-77.3658150604016, 34.5781074255449], [-77.36590197447235, 34.578150592196536], [-77.3659264038038, 34.57815873565637], [-77.36595034340809, 34.57818161485667], [-77.366149252011, 34.57831100610601], [-77.36645708345581, 34.578533194220206], [-77.36659694367327, 34.578613114041424], [-77.36668978613804, 34.57866390713524], [-77.36684028142409, 34.57874037024293], [-77.36706446447945, 34.578849524876844], [-77.36708372431156, 34.57885239392867], [-77.3670979245598, 34.57885015997337], [-77.36709914011676, 34.57886528482425], [-77.36747765280099, 34.579068303232134], [-77.3675707126707, 34.57912162929914], [-77.36775970686298, 34.57919470599723], [-77.36783308734208, 34.57922564284417], [-77.36787159659436, 34.57925188770256], [-77.36808613175299, 34.579341047943345], [-77.36826553911321, 34.579442749465244], [-77.36833183012696, 34.57946542409314], [-77.36848318181431, 34.57951506352817], [-77.36860083548481, 34.57956134193478], [-77.36875134979768, 34.579575399454114], [-77.36905350169332, 34.57964274617376], [-77.36923505563684, 34.57963570507383], [-77.36944748741766, 34.57973477795127], [-77.36947981193052, 34.57976123218179], [-77.3695606103007, 34.57978443489296], [-77.36976709224703, 34.579834835666546], [-77.36984145018744, 34.57988808321205], [-77.37000213915897, 34.57989398075279], [-77.37023545169419, 34.57994385238153], [-77.37032525140654, 34.58000207017082], [-77.37050657220814, 34.580072734684094], [-77.3706294068773, 34.58012319462044], [-77.37086178397003, 34.58019571085572], [-77.37117617077759, 34.58040083822655], [-77.37132236816724, 34.58048209021013], [-77.37141729910434, 34.58054445191965], [-77.37154444688751, 34.58063530996542], [-77.37169411987743, 34.580750785494054], [-77.37173669426375, 34.5808249555326], [-77.37181118638642, 34.58092475055463], [-77.37193639329031, 34.58100550350112], [-77.37206594322095, 34.58112178124721], [-77.37213790051209, 34.58118384364245], [-77.37220512372203, 34.58117565394906], [-77.37239461577661, 34.5812786467458], [-77.37259908415257, 34.58136796163319], [-77.37268358692256, 34.58136631278281], [-77.37268656841749, 34.58145693336016], [-77.37285802520319, 34.58157770865326], [-77.37293972529699, 34.58178765585384], [-77.37295245764919, 34.58184318831896], [-77.37293909356796, 34.58190311715225], [-77.37298542804078, 34.58267977081931], [-77.3729775322369, 34.58268869602487], [-77.3729811000113, 34.58270062512907], [-77.37299264746261, 34.582703759411466], [-77.37309530689046, 34.5827823699243], [-77.37340854490544, 34.583027486758446], [-77.3734181883294, 34.58308385904115], [-77.37345249656437, 34.58346939024631], [-77.37344806676202, 34.58353647473996], [-77.37338638961812, 34.58355834603108], [-77.37326296610743, 34.58349669512539], [-77.37307678404585, 34.5834325903747], [-77.3729924136912, 34.58337520977902], [-77.37287325563086, 34.58342446875791], [-77.37259836676749, 34.58339810043797], [-77.37243350018046, 34.58336927728519], [-77.37240135782923, 34.58336828791029], [-77.3723193427486, 34.583331973321876], [-77.37220437153759, 34.583275508892605], [-77.37211580695956, 34.58323739583352], [-77.37190952388501, 34.58316028282266], [-77.37181038659345, 34.583127588595204], [-77.37157319588877, 34.583059970895896], [-77.37141638835826, 34.58301948450611], [-77.37133652832827, 34.583011142607916], [-77.37115148017662, 34.58295174979882], [-77.37106679968815, 34.582916097455225], [-77.3710224148783, 34.5828473928432], [-77.37091148920427, 34.58268134516659], [-77.3706286241292, 34.58219469190557], [-77.37062046159859, 34.582187920994954], [-77.37060867032007, 34.5821808218517], [-77.37009061531808, 34.5819860991527], [-77.36993996344185, 34.581852585025764], [-77.36984070135203, 34.58182033549787], [-77.3695621609977, 34.581782579095936], [-77.36922995772754, 34.581721308823816], [-77.3690526704781, 34.581735978418024], [-77.36885680693057, 34.581795050418364], [-77.36839472114984, 34.581790810723874], [-77.3682645873927, 34.58178343234674], [-77.36816180096395, 34.58179488284952], [-77.36797440813123, 34.58171112820673], [-77.36787060178995, 34.581669788419376], [-77.36778967825995, 34.58165053218922], [-77.36767361340443, 34.58160318404064], [-77.36763369478945, 34.581590936184654], [-77.36747662232864, 34.581543814804746], [-77.3672477752904, 34.581569212791294], [-77.36708254749749, 34.58164750354025], [-77.36680347460498, 34.581755848924445], [-77.36668846429377, 34.58176847614972], [-77.36632151404339, 34.58149556036376], [-77.36625984732966, 34.58149610523815], [-77.36590032116798, 34.58194830006323], [-77.36587025036114, 34.58198177145729], [-77.36586717777465, 34.58201459846716], [-77.3659002442448, 34.582125595959546], [-77.36611906988023, 34.582591444261894], [-77.36614601966461, 34.58282355640303], [-77.36629392065576, 34.582959966071826], [-77.36650677224418, 34.58296682101313], [-77.3666879797563, 34.582910523187], [-77.36731642322178, 34.58282703676834], [-77.3674760948351, 34.582815132174176], [-77.36772162267516, 34.58286121306658], [-77.36826411915811, 34.58293866209395], [-77.36855916998755, 34.583007204344895], [-77.36865811373542, 34.583046131644004], [-77.36884662051219, 34.58328373773397], [-77.36892157341464, 34.58341347692431], [-77.36902977041692, 34.58408280136313], [-77.36903578382176, 34.58410560869542], [-77.36902100876011, 34.58414082532729], [-77.36887752708407, 34.58479011294579], [-77.36877430047126, 34.584992384505895], [-77.3687533941965, 34.58531631901529], [-77.36869195658628, 34.58546630646752], [-77.36834026092994, 34.58582072084151], [-77.36826292164281, 34.58590337104825], [-77.36825574255451, 34.58590845181447], [-77.36824258942515, 34.58591807875745], [-77.36774005024294, 34.586276382215125], [-77.36747453654752, 34.5865868406473], [-77.3671452617952, 34.58692522376983], [-77.3668952740068, 34.58718650808152], [-77.36668608787402, 34.587390647465995], [-77.36644976307917, 34.587619983103714], [-77.3660549112586, 34.587931352154136], [-77.36596727163989, 34.588018928127525], [-77.36589762620994, 34.58818962655417], [-77.36576644241251, 34.58811426064418], [-77.36534986035711, 34.588291883962604], [-77.36510941212552, 34.58839008073627], [-77.36476024482653, 34.58854233145204], [-77.36478589794713, 34.58861475346704], [-77.36493973994178, 34.5889410415965], [-77.36479336455508, 34.589302182811046], [-77.36510909979614, 34.58910217540445], [-77.36571908812127, 34.589677934120026], [-77.36581494277151, 34.58975248899443], [-77.36589692182862, 34.589831478257445], [-77.36663079571792, 34.59039576354826], [-77.36666886611818, 34.590407471386115], [-77.36668482072747, 34.59041014613979], [-77.36671225132254, 34.590413587900215], [-77.36722558868745, 34.59057655144797], [-77.36747286751304, 34.590653894004866], [-77.36773371213063, 34.59080496331896], [-77.36805733918243, 34.591039445657145], [-77.36814598660814, 34.59115039206262], [-77.3682607569443, 34.59130257182573], [-77.36856667692246, 34.59148554909261], [-77.36887614614534, 34.59158463121156], [-77.36904878788997, 34.59161911367011], [-77.36960664552001, 34.59166543270656], [-77.36938674105568, 34.59218189212538], [-77.36983679215867, 34.592021217583486], [-77.36993032726302, 34.591719459832944], [-77.3706251593386, 34.59146348551221], [-77.37087885353796, 34.59090617439527], [-77.37106669097746, 34.59060602217031], [-77.3714706327506, 34.58975981167103], [-77.37148548554521, 34.58969658287263], [-77.37220231462808, 34.589063189325834], [-77.372456563454, 34.58898147357826], [-77.37299057535195, 34.588687568062916], [-77.37304212169232, 34.58862323065451], [-77.37335787939742, 34.588124143699915], [-77.3737789711391, 34.587887345512236], [-77.37390198204027, 34.58778273175746], [-77.37412348271968, 34.587618326332944], [-77.37440610484036, 34.587403992013265], [-77.37456730394713, 34.587234136381], [-77.37486301853546, 34.58698117741572], [-77.37517165995081, 34.586816316851994], [-77.37535558708066, 34.586698377941126], [-77.37545449103504, 34.58668399748389], [-77.37603441346653, 34.58661165547438], [-77.3761437252148, 34.58660034929048], [-77.37629086737162, 34.58661547224644], [-77.37653775783821, 34.58666891161486], [-77.37665923066719, 34.586697531026694], [-77.37693175105471, 34.58687167948219], [-77.37714977820232, 34.586947364870156], [-77.37737212794514, 34.58715025652444], [-77.37753825587647, 34.58732184090739], [-77.37768413898533, 34.587916260420506], [-77.3776693946896, 34.58795654657756], [-77.37747823064166, 34.58857341251378], [-77.37726016945055, 34.58886463780782], [-77.37693104842279, 34.58923467806192], [-77.37663483196462, 34.58927386997003], [-77.37647570445132, 34.589336245446226], [-77.37648501553652, 34.589456807513685], [-77.37642635232217, 34.58983390547998], [-77.37653671018793, 34.5901399745622], [-77.37659269084497, 34.59017417680412], [-77.37693066107555, 34.590542978230474], [-77.37695542854068, 34.590580100975345], [-77.37700958550627, 34.59059899315534], [-77.37744782861671, 34.59082769749151], [-77.37756012357418, 34.591368790115276], [-77.37759997882074, 34.59149077359399], [-77.3775751701414, 34.59179118454833], [-77.3777184124487, 34.59191649147518], [-77.37787837082999, 34.59174749549918], [-77.37785238857573, 34.59147088037696], [-77.37788048812838, 34.59132262772478], [-77.3779944808694, 34.590754145759725], [-77.37804964877327, 34.590449127218164], [-77.37823781457463, 34.589863048110374], [-77.3782080226147, 34.589577180686206], [-77.3782552484276, 34.589298823770505], [-77.37843337530205, 34.588695582144744], [-77.37847638891425, 34.588655895491534], [-77.37850750579064, 34.58853264317824], [-77.37859881245691, 34.58792080739265], [-77.37867473592053, 34.587811675200186], [-77.37898203114177, 34.58742919577046], [-77.37908049467661, 34.587328639486245], [-77.37903562388895, 34.58719106650473], [-77.37911804894, 34.58689866440007], [-77.37912654917687, 34.58671473976498], [-77.37912862927125, 34.58622861334251], [-77.37916335599442, 34.58604300881943], [-77.3791677009101, 34.58590378387876], [-77.3791486165729, 34.58577976710181], [-77.3789662228512, 34.58564685488851], [-77.37893524220516, 34.585615899649795], [-77.3789023704821, 34.58560771564627], [-77.37871179569491, 34.5854643330729], [-77.37870538726538, 34.58546051617598], [-77.37850847767386, 34.58528825728973], [-77.37850845664491, 34.58528821198601], [-77.37850841193477, 34.585287678087184], [-77.37842844149542, 34.584875228143865], [-77.37850855371725, 34.58478242567665], [-77.37866838511175, 34.5845882387778], [-77.37880902317985, 34.58439581936048], [-77.37929695829183, 34.58361982045291], [-77.37936915109883, 34.583543734039026], [-77.37950478733092, 34.58344642320916], [-77.37988535205685, 34.583176297036275], [-77.38008519599902, 34.58300971966713], [-77.38015347592635, 34.5829283702308], [-77.38008525590348, 34.582782163173874], [-77.38002206906204, 34.58259088215695], [-77.37998818141975, 34.58252762935618], [-77.37983982320162, 34.5822844195513], [-77.37973989345625, 34.58208660679044], [-77.37966232708646, 34.581725464542565], [-77.37961698058083, 34.581387833986085], [-77.37960017431266, 34.58130985912793], [-77.37929764203743, 34.5811156691606], [-77.37922327841135, 34.58101976904773], [-77.3791719509479, 34.580947011277374], [-77.37899992757893, 34.58065087684498], [-77.3789536800791, 34.58055390482653], [-77.37896571245756, 34.58048544948787], [-77.37893916443116, 34.58013143300649], [-77.37900336765178, 34.57980470774502], [-77.37903018940004, 34.57969375195866], [-77.37929815752187, 34.57923852629396], [-77.37930228448235, 34.57923442002265], [-77.37931423644943, 34.579228251777735], [-77.37982870050746, 34.57887654342042], [-77.38008630948603, 34.5788024899833], [-77.38039662614, 34.57873789285656], [-77.38048035186526, 34.57870057939644], [-77.3807643765808, 34.5789007827892], [-77.38087429947589, 34.57896401290618], [-77.3809030383801, 34.578999259833886], [-77.38098167867811, 34.57972113971938], [-77.38097247490673, 34.57983837987587], [-77.38097566752997, 34.57994741684473], [-77.38104041501691, 34.58049830097647], [-77.38107781091753, 34.5806723256031], [-77.38134280218846, 34.58097789095619], [-77.38166177437795, 34.58122864855687], [-77.38174948745224, 34.58133010310254], [-77.38183184198972, 34.581412770370164], [-77.38208805138531, 34.581765516457764], [-77.38210192094441, 34.58179840597253], [-77.38244961179, 34.582146382654315], [-77.38245999509672, 34.58216016543713], [-77.3824690336943, 34.582170053996826], [-77.38247949094573, 34.582200754797505], [-77.38264361347382, 34.582569454042044], [-77.38264905713379, 34.58277817471235], [-77.38270706745362, 34.58298487252506], [-77.38277572044782, 34.58332664940879], [-77.38277668940323, 34.58347121368338], [-77.38283746426664, 34.58381520610887], [-77.3826762450009, 34.584083124603225], [-77.38244905691661, 34.58451213773397], [-77.38238288716462, 34.58465860258583], [-77.38230617478237, 34.58474091810021], [-77.38225719161636, 34.584954591187994], [-77.38202973859194, 34.58562989249836], [-77.38213681578853, 34.58595051876287], [-77.38215523476003, 34.58603636911326], [-77.38220733757964, 34.58619340821319], [-77.38227379961253, 34.5864438439061], [-77.38225927335831, 34.586649879648704], [-77.38228735211693, 34.587117448485515], [-77.38205440020828, 34.587098510111154], [-77.38192407361127, 34.58705924432606], [-77.38181373753969, 34.58709998913686], [-77.3816603314891, 34.58715663846467], [-77.38164569790041, 34.58717122260762], [-77.3816603130795, 34.587232959950235], [-77.38167720302962, 34.58736073313494], [-77.38170225678354, 34.587375352899386], [-77.38185729894737, 34.58740800094269], [-77.38199674522151, 34.58739495041373], [-77.38205432308078, 34.587424653075615], [-77.38238627423122, 34.58734369531429], [-77.38237200702407, 34.587703383366666], [-77.38241662932288, 34.58773108309982], [-77.3824483012751, 34.58776131823147], [-77.38251638086118, 34.58782149102922], [-77.3825467942406, 34.58785452432359], [-77.38260141394827, 34.58788259965532], [-77.38263058200444, 34.58789425244517], [-77.38264529713751, 34.58790532767783], [-77.38266731606939, 34.58789682200169], [-77.38284238025821, 34.58766724601421], [-77.38321805818036, 34.58800599824187], [-77.38322439033307, 34.58801798133236], [-77.38323635287816, 34.5880481707888], [-77.38329119407945, 34.588148628051485], [-77.38329912835749, 34.588206595092494], [-77.38327042944218, 34.58838621924596], [-77.38350637318163, 34.58825541195382], [-77.38353952888471, 34.58817194246063], [-77.3835604471626, 34.58809355684837], [-77.38355488982893, 34.58803881625081], [-77.38346017920921, 34.58797109772672], [-77.38343340278897, 34.58795485470003], [-77.38324969454898, 34.58798707808075], [-77.3832363738535, 34.5879536034076], [-77.38291334287463, 34.587625355508756], [-77.38323650522548, 34.58736189886821], [-77.38332237262279, 34.58723431612908], [-77.38344748227559, 34.58712379698167], [-77.38363064787234, 34.58696199250335], [-77.38390286184776, 34.58692687221376], [-77.3840247289867, 34.58683325956413], [-77.38413493553553, 34.586905943326116], [-77.38416419254618, 34.58702048318175], [-77.38433728437957, 34.58708328306337], [-77.38441872299482, 34.58711609713735], [-77.38458939585287, 34.58719984734584], [-77.38469790205201, 34.58724437043341], [-77.38481275371628, 34.58723160387362], [-77.38505045663727, 34.58731728829362], [-77.38517500289713, 34.58733357985251], [-77.38525968874298, 34.58734412392561], [-77.3856008327212, 34.5873878775138], [-77.38582732196973, 34.58738583288588], [-77.38599489056446, 34.5873743054115], [-77.38628503009771, 34.58745192561881], [-77.38638893269957, 34.58744478603752], [-77.38643957543141, 34.58748701887566], [-77.38653867040765, 34.587527304489996], [-77.38678296148117, 34.58759296384093], [-77.3870370256976, 34.587606282312926], [-77.38717700194121, 34.58768198603382], [-77.38745677435375, 34.58781950296755], [-77.38754781126849, 34.58783139687948], [-77.38757103213412, 34.58783587734651], [-77.38762612093103, 34.58785444401115], [-77.38776805210868, 34.58788684889416], [-77.38785307874494, 34.58788303765328], [-77.38796507721305, 34.58790817500122], [-77.38818400463038, 34.58790333841726], [-77.38830267210889, 34.588122106362384], [-77.38835909655405, 34.58814473317945], [-77.38841746650202, 34.588168447709755], [-77.38855611357576, 34.5882216786019], [-77.38860075957854, 34.58824330347173], [-77.38868146991452, 34.58827977223092], [-77.38875312890846, 34.588311735521444], [-77.38886307011103, 34.58834741206374], [-77.38903610269607, 34.588440921336996], [-77.38910777875584, 34.588473020117135], [-77.38914716105508, 34.58849027916958], [-77.38928709023355, 34.58855550369289], [-77.38937789679484, 34.588567593231296], [-77.38938948613337, 34.58860224989473], [-77.3895411950921, 34.58866698870081], [-77.3896171657843, 34.58869984618326], [-77.38971484565437, 34.588742440344895], [-77.38973821406506, 34.58874592599842], [-77.38975823702725, 34.5887613615075], [-77.38987327831389, 34.58881152610006], [-77.38993523142013, 34.588838992328945], [-77.3902228849999, 34.58880900858237], [-77.39032927430435, 34.58897428019084], [-77.39038901757634, 34.589030594547914], [-77.39040544152768, 34.58909260293879], [-77.39047733636413, 34.58924179865827], [-77.39049383597764, 34.589327072631896], [-77.39058165273222, 34.58933916162907], [-77.39072328920108, 34.58933234732051], [-77.39102973382236, 34.58933274354417], [-77.39111736334556, 34.58924798918333], [-77.39120754751977, 34.58930432928092], [-77.39136224557828, 34.58937919407164], [-77.3915114008811, 34.58945717943464], [-77.39169137919352, 34.58956237413337], [-77.39170841943614, 34.58956969070805], [-77.39183519746746, 34.58973555809838], [-77.39183129994794, 34.58981598078941], [-77.39178087205094, 34.590033797674884], [-77.39160250329807, 34.59009544767086], [-77.39151132693495, 34.59006715509263], [-77.3913225237845, 34.590012915817425], [-77.39111730848113, 34.589682942919225], [-77.39093779329491, 34.59009618793375], [-77.39072318115468, 34.590159041567205], [-77.39034486907454, 34.59035804072415], [-77.39032908526075, 34.59036956645477], [-77.39032361160088, 34.59037221304909], [-77.39030033475149, 34.59038146651629], [-77.39013203981354, 34.59045112096188], [-77.39003582947844, 34.59052824725724], [-77.39003351170508, 34.59052969278546], [-77.39002858575982, 34.59053210167392], [-77.38993498626898, 34.59058782049469], [-77.38973860984305, 34.59067402817804], [-77.389737606314, 34.59067453679527], [-77.38973752498121, 34.5906753532325], [-77.38973854303048, 34.59067541107015], [-77.38993497052144, 34.590700701956884], [-77.39002124150039, 34.59075332475998], [-77.39009967569832, 34.59080015307512], [-77.39013198901361, 34.59082151103164], [-77.3901389346245, 34.59082182609855], [-77.39014522151096, 34.59082840273643], [-77.39025886764237, 34.590887591526226], [-77.39032900664819, 34.59095300167858], [-77.3905725909036, 34.59092891176858], [-77.39078665839801, 34.59116047496812], [-77.39056449289572, 34.59144629285271], [-77.39058955416377, 34.591613467590456], [-77.39047357230189, 34.59178606512336], [-77.39043590572963, 34.5918479084628], [-77.3903911256067, 34.59192143145719], [-77.39032886482065, 34.59200996989324], [-77.39030029410566, 34.592048972216446], [-77.39025250265288, 34.59208663944975], [-77.39010303667392, 34.59228949989921], [-77.39000245167817, 34.592474297264864], [-77.3899984209579, 34.59254784608165], [-77.39003360958131, 34.59264933363925], [-77.38993469791427, 34.59266544230097], [-77.38982109262152, 34.59269580548546], [-77.38954057772966, 34.59295093867642], [-77.38941499322586, 34.5929212359116], [-77.3892747190028, 34.592938626778114], [-77.38914649652224, 34.59295312849664], [-77.38911510283768, 34.5929213249305], [-77.38898004316728, 34.59293992265865], [-77.38894944860988, 34.59300284620343], [-77.3887923052585, 34.59314632453424], [-77.38894940623106, 34.593286272504685], [-77.38898110997445, 34.593297227590526], [-77.38914642459055, 34.59344211129664], [-77.38922206552154, 34.59342743675448], [-77.38954053187867, 34.59327310039356], [-77.38981236553377, 34.59355547449198], [-77.3899345703731, 34.59359161475712], [-77.39005069298113, 34.59368889511739], [-77.39022774884958, 34.59367978600698], [-77.39032864980096, 34.593624124371374], [-77.39036530620452, 34.593556364642254], [-77.3904146826311, 34.59342962055882], [-77.39051601331565, 34.59332234832483], [-77.3906133941369, 34.593190447950036], [-77.39072279412038, 34.593151800234196], [-77.39079763613749, 34.593069453805384], [-77.39086239042136, 34.59299820657169], [-77.3909198695991, 34.59287626208746], [-77.39093172326425, 34.59283783355477], [-77.39091987821587, 34.592807926823845], [-77.39080504524938, 34.59276753901412], [-77.39074414007175, 34.592463216532664], [-77.39073326380016, 34.59244188272677], [-77.39073450128947, 34.59242919125037], [-77.39072289332957, 34.59237988927993], [-77.3906526992115, 34.592104594758915], [-77.39064066994936, 34.59203066579485], [-77.39065073283211, 34.59195141088924], [-77.39072295579902, 34.591895562887146], [-77.39083998593671, 34.59170341377137], [-77.39111709596357, 34.59137759271377], [-77.3914803014016, 34.591518254865505], [-77.39151115329612, 34.5915081532177], [-77.3915417959424, 34.59150916283474], [-77.3919052305645, 34.59147630129574], [-77.3919759645, 34.591489746047145], [-77.39210226986727, 34.59145315282994], [-77.39221789398695, 34.59137864680798], [-77.39226324501342, 34.5913332398606], [-77.39229932340429, 34.59130025057803], [-77.39264172370926, 34.59094866412549], [-77.39269343907951, 34.5908928053069], [-77.39269803942436, 34.59088978713543], [-77.39271031939634, 34.59088306005824], [-77.39308753058651, 34.59068567253985], [-77.39335475207139, 34.5906534479189], [-77.39348160488028, 34.59063516374131], [-77.39360843151744, 34.5906168882835], [-77.39374640921832, 34.59073362937793], [-77.39414590529508, 34.59080941576898], [-77.39426972750348, 34.5908119908985], [-77.39451102758008, 34.59088332978334], [-77.39481059763395, 34.590846542264046], [-77.39481059715756, 34.59100470890628], [-77.39505784097747, 34.591145825287335], [-77.39519170835034, 34.59123007361589], [-77.3953003257133, 34.59135864185683], [-77.39545187756667, 34.591621118651986], [-77.39555060156908, 34.59164074652127], [-77.39555768755946, 34.59174609091296], [-77.3955759421728, 34.5918771433019], [-77.39533501164752, 34.59190409757646], [-77.39505777171492, 34.592041116349776], [-77.39493476267245, 34.59212799228051], [-77.39468010936004, 34.592297243919006], [-77.39466367349875, 34.592319159206866], [-77.39465107715404, 34.592315002801165], [-77.39440229197642, 34.59248029279388], [-77.39426957977992, 34.59251436765558], [-77.3942324582855, 34.59253410364302], [-77.39417105573897, 34.59256674882675], [-77.39412923352491, 34.59258898391908], [-77.39408845013007, 34.59261201572818], [-77.39407252959407, 34.592641524295175], [-77.39400721543892, 34.592712725290255], [-77.3940298600119, 34.59276964303518], [-77.39403391051817, 34.592815017771095], [-77.39407250880907, 34.59287684191602], [-77.3941397271962, 34.59293961591963], [-77.39426953130878, 34.59307845293585], [-77.39433373944824, 34.593127163351866], [-77.3943875458502, 34.59318858354713], [-77.39459334833512, 34.59323458611478], [-77.39466360073982, 34.59321482123961], [-77.39498486351356, 34.593180884472694], [-77.39505768542499, 34.59316706461454], [-77.39512116277388, 34.59315115768003], [-77.39525472902581, 34.59312339064398], [-77.39543595514787, 34.593054407864585], [-77.39545177461855, 34.59304881889152], [-77.39548349361257, 34.593030507825404], [-77.39569835050997, 34.592840583665875], [-77.3958458853791, 34.59259146541782], [-77.39588437732772, 34.59254811128867], [-77.39603872613299, 34.59230901779193], [-77.39660024278946, 34.592020276556795], [-77.39661986499637, 34.59200213614085], [-77.39663407571678, 34.591992911664406], [-77.39666381039889, 34.591979071681365], [-77.3972417286197, 34.59173325882746], [-77.39742224746806, 34.591541552220505], [-77.39746876563136, 34.591520531870785], [-77.39744708208022, 34.59147354256449], [-77.39742225100464, 34.59146932288037], [-77.39740810794804, 34.591463926978435], [-77.39709485218081, 34.591452521638665], [-77.39702817971931, 34.59145009408145], [-77.39665154784127, 34.59118250463846], [-77.39663412327943, 34.59117928993021], [-77.39663056640164, 34.591170590666955], [-77.39663059895835, 34.591166753252416], [-77.39662913647282, 34.59116159030345], [-77.39653183962068, 34.590866647838624], [-77.39645451960445, 34.59076758084204], [-77.39646436781992, 34.59058322661288], [-77.39646947372341, 34.59051828839937], [-77.39652885530293, 34.590332285641], [-77.39651807006405, 34.59020874235067], [-77.3966341958152, 34.58995410702616], [-77.39665658336857, 34.58988928807423], [-77.39669760938708, 34.589815055720706], [-77.39663420426155, 34.58981264580683], [-77.3964548322841, 34.589687085478786], [-77.39624015457859, 34.58958072272718], [-77.39621706345443, 34.589552998933684], [-77.39593268058081, 34.58966243991297], [-77.39584608514585, 34.589664306277236], [-77.39576935052933, 34.5896753750607], [-77.39564813369708, 34.58961018588209], [-77.39549296704953, 34.589588458185936], [-77.3954520274381, 34.58957797514803], [-77.395362682484, 34.589555097272275], [-77.39516981255588, 34.589558674819294], [-77.39505796941589, 34.58950511787358], [-77.39483675904214, 34.589302650064354], [-77.39481647945323, 34.58914122176105], [-77.39481462939924, 34.58909355652396], [-77.39480283594584, 34.589032615955226], [-77.39477870162753, 34.58897510278764], [-77.39473322670358, 34.5888930124152], [-77.39470880452448, 34.588848219314], [-77.3946639625035, 34.588830054730956], [-77.39453878695119, 34.588786186645336], [-77.39446693721383, 34.588773344756035], [-77.39441776776536, 34.58877920410192], [-77.39426990682475, 34.58877704913867], [-77.39402817575092, 34.58873425471751], [-77.3938758491025, 34.58875034267659], [-77.39380207434388, 34.58868224106174], [-77.3937063013984, 34.5886165608419], [-77.39348182497498, 34.588384269147745], [-77.39335678180977, 34.588377127087256], [-77.39336008087793, 34.588241925777524], [-77.39336619737499, 34.588116433702304], [-77.39348187317574, 34.58789673477574], [-77.39378317125376, 34.58733176083335], [-77.39393465672529, 34.586948520103476], [-77.39396109795089, 34.58688152720546], [-77.39397176108326, 34.58677684865695], [-77.39408857335681, 34.58643856952763], [-77.39417478415513, 34.58632340668372], [-77.39427014929699, 34.58607788099053], [-77.39431237518234, 34.585981717620484], [-77.39443237039293, 34.58571459000314], [-77.39466423363152, 34.5856494918909], [-77.39494255391604, 34.585466247260975], [-77.3950123173421, 34.585406640478524], [-77.39505830311876, 34.58535349386444], [-77.39514740896995, 34.58534068904638], [-77.39560136463804, 34.58510718489835], [-77.395846415924, 34.58500528455721], [-77.39612125740194, 34.584871645710116], [-77.3961751588826, 34.58479349577987], [-77.39624047351599, 34.584776234788706], [-77.39643830623675, 34.58461275834911], [-77.39663453529599, 34.58444687674189], [-77.39667794477435, 34.58441353684235], [-77.39675749700696, 34.58435528938417], [-77.397191020073, 34.584043182806276], [-77.39742264836403, 34.583809752226514], [-77.39772245841823, 34.58368996939199], [-77.39801236491945, 34.58353884658522], [-77.39821073808983, 34.583418145566526], [-77.39832467002445, 34.58340280860611], [-77.39886335560804, 34.58334827692058], [-77.3989988107906, 34.583288606539476], [-77.39909767263227, 34.583275041079865], [-77.39941359557218, 34.58312293448702], [-77.39978689053893, 34.582795519460745], [-77.40010932927039, 34.58267511762206], [-77.40040049704557, 34.58279255539594], [-77.40057495024159, 34.58289619559453], [-77.4006119812156, 34.5829101156644], [-77.40075769755529, 34.58292899061872], [-77.40113685322211, 34.58311796565922], [-77.40136301164625, 34.582991915345104], [-77.40170397092305, 34.58315983088352], [-77.40183085796545, 34.58311916823579], [-77.40215107448223, 34.583070625744625], [-77.40226851353808, 34.582837515490866], [-77.40274293231168, 34.5828539194938], [-77.40293913414827, 34.58274449741755], [-77.40326392083821, 34.583066511400965], [-77.40333316916404, 34.58307224684363], [-77.40368219750425, 34.58335610543428], [-77.4037036631977, 34.58337837595099], [-77.40372720742666, 34.58340580576281], [-77.40399711669096, 34.583868987682436], [-77.40411682594751, 34.58414253055029], [-77.40412125961038, 34.58415756268142], [-77.4042568712444, 34.584400778981944], [-77.40426075446423, 34.584696624072194], [-77.4043361261694, 34.58496003240297], [-77.40434900207181, 34.585137386716184], [-77.40435386334495, 34.58538204886494], [-77.40436434598597, 34.58564241544234], [-77.40435787624877, 34.5858060458252], [-77.40430520563606, 34.58604007912674], [-77.4042860420625, 34.58624098990826], [-77.40422303076109, 34.586359676567156], [-77.40413324630055, 34.58667477581893], [-77.40412980834468, 34.586688114520356], [-77.40412994477754, 34.586697379320455], [-77.40412132842864, 34.58671829194045], [-77.40403204524682, 34.587030590522524], [-77.40400055689281, 34.58713134436203], [-77.4039041760792, 34.587379247008094], [-77.40386911367288, 34.587574890352954], [-77.40381470917427, 34.587676919243506], [-77.40372730833006, 34.58792784718935], [-77.40368973745595, 34.588025353710265], [-77.40360510261871, 34.58833046241292], [-77.40360703978136, 34.58846186422115], [-77.40361401490733, 34.58858294226102], [-77.40362132208526, 34.588672091135585], [-77.40366248996241, 34.588808576661506], [-77.40367675864246, 34.58887637871932], [-77.40372733525138, 34.58903249332103], [-77.40383331588764, 34.589164176173824], [-77.40393063535029, 34.58926431569291], [-77.40383286373367, 34.58939211648722], [-77.4037273461779, 34.589470767975754], [-77.40351994256004, 34.58974816132272], [-77.40341298457332, 34.58984945963709], [-77.40333329649413, 34.590052173136364], [-77.40327143352886, 34.59020860005085], [-77.4032570461534, 34.59055308675521], [-77.40326589168357, 34.5907066131631], [-77.4032906267217, 34.59105498176803], [-77.40329163424869, 34.591434492958605], [-77.40330126285404, 34.59151256925917], [-77.40330196371535, 34.59190249720139], [-77.40330735414534, 34.59192971304897], [-77.40333333984647, 34.592067112497375], [-77.40334006261799, 34.59210204480802], [-77.40334334266255, 34.592108813756795], [-77.40337814363491, 34.5922678126869], [-77.40341101382454, 34.59231133597074], [-77.40352034609663, 34.592497027162324], [-77.40365652775311, 34.59270048155625], [-77.4035576714597, 34.592897648769245], [-77.4034443940631, 34.59358024570405], [-77.4032489094081, 34.59394202169136], [-77.40312431230043, 34.59405101165627], [-77.40293930458336, 34.59418310257685], [-77.40283029882036, 34.5942108791335], [-77.40271526346181, 34.59429323636624], [-77.4025452239957, 34.59442474386999], [-77.40248327244211, 34.594501344421275], [-77.40243373993307, 34.59457523777607], [-77.40239738473059, 34.59463349107621], [-77.40234818524833, 34.594742738929625], [-77.40233023787252, 34.59478312406986], [-77.40229098541892, 34.594869751019246], [-77.40227311349187, 34.59502299079681], [-77.40215114625448, 34.59517540005179], [-77.40205823699613, 34.59537847261028], [-77.40198594354999, 34.59548900294642], [-77.40175706145894, 34.5958798851086], [-77.40173152795418, 34.59592277922772], [-77.40171289334096, 34.595952976849176], [-77.4016165150447, 34.596118301793865], [-77.40157870465586, 34.5961846263329], [-77.4015705492446, 34.59619715043572], [-77.40156001658107, 34.59621114402566], [-77.40138483955363, 34.59642488608321], [-77.40137942912727, 34.59644339877504], [-77.40136297005768, 34.59646128433687], [-77.40103346186994, 34.596900159164605], [-77.40099982242079, 34.59693835500616], [-77.40096887350573, 34.59697457398162], [-77.40089742784315, 34.59699675682913], [-77.40057477415638, 34.59721059625769], [-77.40046032233562, 34.597284124807246], [-77.40037772353148, 34.59733751889751], [-77.40023455042083, 34.59744000020882], [-77.4002042877351, 34.59746980795579], [-77.40018067174745, 34.59751290113524], [-77.40009310115535, 34.597672694823785], [-77.40010598397956, 34.597802663941714], [-77.4000740640758, 34.597887728257604], [-77.39999589426306, 34.59809806212105], [-77.39998283378587, 34.59832546389015], [-77.39986884455692, 34.59843055919893], [-77.39978655587844, 34.59848407701316], [-77.39944491196422, 34.59882764414478], [-77.39941079480013, 34.598852336255824], [-77.39939244302869, 34.59887038079576], [-77.3993592953304, 34.59887570572333], [-77.3989983330058, 34.59899733273167], [-77.3987733218793, 34.59910670182237], [-77.39832827062729, 34.599286009777984], [-77.39821010622026, 34.5993334908217], [-77.39810926680515, 34.599336265460444], [-77.39770470105537, 34.5995032593431], [-77.39749799713647, 34.59961508245035], [-77.39742187269805, 34.59967412735455], [-77.39726402337142, 34.59973687362777], [-77.3970277537561, 34.599837294064535], [-77.3968875661715, 34.599894683222125], [-77.39668790977694, 34.6000160294915], [-77.39663362963196, 34.60006895947149], [-77.39657387960933, 34.600090949782], [-77.39635579072306, 34.60024767782199], [-77.39604500101308, 34.60037676296436], [-77.39584537345773, 34.600553172547365], [-77.3957849228275, 34.60056419774842], [-77.39545125337159, 34.6006209927209], [-77.39540761862152, 34.60063673342449], [-77.39525419196923, 34.600670853718576], [-77.39518548567612, 34.600715777286965], [-77.39513589904446, 34.600807791032096], [-77.39505711879156, 34.600883957605824], [-77.394863448994, 34.60097085120026], [-77.39466298306488, 34.60112857283908], [-77.39457179893334, 34.60113062864393], [-77.39430612078843, 34.60122703151299], [-77.39426885460405, 34.60125262637911], [-77.39424490528178, 34.601250203567446], [-77.39409732783074, 34.60126978003162], [-77.39407179265638, 34.6012812663424], [-77.39397495097052, 34.601314936202236], [-77.39391562537236, 34.60136755168959], [-77.39387472437093, 34.601383166161106], [-77.39382477890216, 34.60139039706121], [-77.39348058708204, 34.601578364150825], [-77.39334979185047, 34.60154599728291], [-77.3932287952345, 34.601575868063435], [-77.39308645516346, 34.601695883465965], [-77.39271051088664, 34.60190225122226], [-77.3926923121935, 34.6019137116315], [-77.39191549907369, 34.60202416982105], [-77.39190405587819, 34.602015449340804], [-77.39185384335877, 34.601991294115415], [-77.39111583768533, 34.60177326504527], [-77.39076346723402, 34.60173307124999], [-77.39032762196172, 34.60154493187851], [-77.39010708837458, 34.601448119186955], [-77.38969623219349, 34.60133841724667], [-77.389539402939, 34.60137069573664], [-77.38937477061025, 34.601376356396415], [-77.38897800444613, 34.601366544106035], [-77.38875116305697, 34.601359706819125], [-77.38865371202833, 34.60133808112956], [-77.38844571447024, 34.601358608100455], [-77.38835704360488, 34.60135073068517], [-77.3882782095327, 34.60137215587761], [-77.3880851233484, 34.60144672910141], [-77.38796289586534, 34.60152402020325], [-77.38772702355382, 34.60153717441228], [-77.3873375151644, 34.60167194831806], [-77.38717462844699, 34.6016690664038], [-77.3868413404615, 34.60149438006991], [-77.38679103057896, 34.60149032752315], [-77.38678053604534, 34.601490972165614], [-77.38676448948107, 34.60148817206914], [-77.38638641806082, 34.60146912593572], [-77.38619353624965, 34.60137099783944], [-77.3861572904333, 34.601346138663644], [-77.38599233676577, 34.601243032403374], [-77.3859488577181, 34.601245305823014], [-77.38585717355869, 34.60121168475803], [-77.38572129618159, 34.601098711653776], [-77.38559825282094, 34.60104285385487], [-77.38542650959566, 34.60103421030788], [-77.38540119317919, 34.60104114099438], [-77.3853911683387, 34.6010557791061], [-77.385204108924, 34.60116994096698], [-77.3849389984831, 34.60120505203784], [-77.3848099661728, 34.60128453180892], [-77.38473038107942, 34.60128837401118], [-77.38441584057115, 34.601306726214], [-77.38422532793635, 34.60122758408609], [-77.38420746555288, 34.60122498952465], [-77.38402174065624, 34.6012007777354], [-77.38390018022356, 34.601200153733956], [-77.38365332575626, 34.601132459415645], [-77.3836276296116, 34.6011529889087], [-77.38358959728684, 34.601154937685166], [-77.3832334762279, 34.60130664641591], [-77.38294556848919, 34.60109242170222], [-77.38283942438485, 34.60098498106707], [-77.38262395996345, 34.60082857738416], [-77.38252636088012, 34.60075537986255], [-77.38244540835359, 34.60051598164604], [-77.38239476189308, 34.600491610140246], [-77.38236314427586, 34.60044160216547], [-77.38234242294126, 34.60034328915061], [-77.38224837802315, 34.6003882942869], [-77.38219044134377, 34.600466492204056], [-77.38215707638575, 34.60058527574949], [-77.38205125762688, 34.60066006526739], [-77.38190306345138, 34.6007728586018], [-77.38185417156829, 34.60077637904], [-77.38167410301149, 34.60094712360503], [-77.38165706859834, 34.60096340123728], [-77.38165413098244, 34.60096518401627], [-77.38126294939497, 34.60095876155323], [-77.38098255274355, 34.60094262568724], [-77.38086883438882, 34.600936550392404], [-77.38069480480094, 34.600919120135565], [-77.38067177797177, 34.6009211200467], [-77.38065766186315, 34.60091487584245], [-77.38056770249722, 34.60091263136974], [-77.38047472012752, 34.60091177041173], [-77.38033234917825, 34.60088763956745], [-77.3801853600252, 34.600868287098365], [-77.38008059398177, 34.60093520633], [-77.37980541013027, 34.600810197651725], [-77.37971220483489, 34.60079594769072], [-77.37968651213667, 34.60078371515109], [-77.37960389317894, 34.60075022590201], [-77.37948947037742, 34.60071322507478], [-77.37942680905485, 34.60071997125214], [-77.37929241770368, 34.60068599784994], [-77.3790764432292, 34.60072332201342], [-77.37889830349863, 34.600666152701216], [-77.37882279209748, 34.60060858579606], [-77.37862278297831, 34.60055604457974], [-77.37853350408855, 34.600537361125006], [-77.37850422332666, 34.600520407431816], [-77.37837345289776, 34.60045107813668], [-77.37830719009816, 34.60042413165403], [-77.37828154757028, 34.600420555693276], [-77.37811013848008, 34.60039656076657], [-77.3779376603785, 34.600415994081544], [-77.37771603225053, 34.600353408708514], [-77.3769442056793, 34.59994877434667], [-77.37693542110348, 34.59994195346147], [-77.37692792342293, 34.599911183809496], [-77.37650194954976, 34.59916336834997], [-77.37669696943794, 34.598886153545955], [-77.37674623523108, 34.59870361188367], [-77.37687655051776, 34.59831611445081], [-77.37681851140712, 34.598268636734694], [-77.376474763095, 34.597957826821094], [-77.37646322684043, 34.597818564890495], [-77.37637513817313, 34.5974833925762], [-77.37667082616792, 34.59716296591011], [-77.376864500053, 34.596988325779], [-77.37689909442503, 34.59695135983145], [-77.37692880296144, 34.59687794324768], [-77.377080119721, 34.596695652144305], [-77.37750999888893, 34.59647075858131], [-77.37725704923477, 34.59615381237871], [-77.37692893657731, 34.59641919600698], [-77.3768365633931, 34.596468291084435], [-77.37653480724533, 34.59651906350354], [-77.37626934968984, 34.59651092756758], [-77.3761407159981, 34.5964891046122], [-77.37549448559828, 34.59660816228705], [-77.37535263629246, 34.596099827109775], [-77.37520004531999, 34.59595444384027], [-77.37489864249582, 34.595637984031214], [-77.3747933125366, 34.59516391804698], [-77.3749980096606, 34.59475193312434], [-77.37499250986929, 34.594674546357346], [-77.37495901323504, 34.59459401829465], [-77.37484277809021, 34.59460701372302], [-77.37456489411464, 34.594680222712725], [-77.37406391311914, 34.59526899573847], [-77.37396691455154, 34.5954881630502], [-77.37377642638154, 34.59553952262699], [-77.37363167791845, 34.59618038207098], [-77.3735784772872, 34.59682437305963], [-77.37357075389147, 34.59703827830671], [-77.37355744662707, 34.597275481314774], [-77.37377572682885, 34.59766533079127], [-77.37394821077335, 34.59783302511376], [-77.37421770976644, 34.59816700922154], [-77.37451238949711, 34.59860087322391], [-77.37453324264958, 34.59863060596976], [-77.37456362036761, 34.59866595657973], [-77.37495454779987, 34.59896506219853], [-77.37499479419864, 34.599845382236765], [-77.37524573964629, 34.600193469904355], [-77.37522056911861, 34.600337953006054], [-77.3751135868226, 34.60080568240264], [-77.37495705388348, 34.60083207871994], [-77.37461487131065, 34.60107743957939], [-77.37456284261444, 34.601117269422296], [-77.37454961952983, 34.60112863260814], [-77.37453934705542, 34.60114435286611], [-77.37434476239781, 34.60136210541926], [-77.37416859774413, 34.60149877489981], [-77.37410642539741, 34.601564325371825], [-77.37401174206073, 34.601644915455246], [-77.37387111982522, 34.601769376234024], [-77.37377436158292, 34.601842437789735], [-77.37361320839045, 34.60191460332334], [-77.3735857232905, 34.601927667759895], [-77.37357726756791, 34.601937109917486], [-77.37352750123898, 34.601980542689176], [-77.37338014403393, 34.602119880804835], [-77.37330973192302, 34.60217059715526], [-77.37322567035243, 34.60244097826414], [-77.37298586989638, 34.602558663168935], [-77.3727058545146, 34.60255921364228], [-77.37222506207587, 34.60235632656451], [-77.37219767789196, 34.60236332647499], [-77.37218091159687, 34.60235125506099], [-77.37218074589924, 34.60233321375729], [-77.37180359206485, 34.60224016644845], [-77.37152667921315, 34.60230112958661], [-77.37140944347077, 34.602297741560015], [-77.37119353097962, 34.60224279652765], [-77.37078611478125, 34.60235639201579], [-77.37077517978193, 34.60211109426777], [-77.37062132501887, 34.601915144833356], [-77.3704513115646, 34.60191631882448], [-77.37047018580107, 34.60173046115305], [-77.37033053679657, 34.601437143512754], [-77.37024573648513, 34.6013184943287], [-77.37000736730037, 34.60094799846363], [-77.36983369233616, 34.60025025986379], [-77.36971202878733, 34.60027246535773], [-77.36971022799929, 34.600141675164984], [-77.36976328646288, 34.60005811295886], [-77.36955759075849, 34.59961222574849], [-77.36907185740145, 34.59941259013116], [-77.36904576578642, 34.59943666514319], [-77.36899829103388, 34.59944622457394], [-77.36793738178305, 34.59954786149317], [-77.36748089521438, 34.59960103816976], [-77.3674692400773, 34.59959327372495], [-77.36745220856093, 34.599599383146185], [-77.36726505995998, 34.5996446751846], [-77.36602840076179, 34.59996901317561], [-77.36589260454498, 34.5999936633401], [-77.36554391928748, 34.600366167057196], [-77.36549831607348, 34.60039205419455], [-77.3652805699248, 34.60077952631369], [-77.36540338915928, 34.601084459375066], [-77.36547519950366, 34.60120059070378], [-77.36569543876192, 34.601568905554146], [-77.36575393481209, 34.60170908049258], [-77.36589177171071, 34.60197409998821], [-77.36608482343334, 34.602153916572675], [-77.36636050624878, 34.60232226010605], [-77.3665297357452, 34.602459571997386], [-77.36667977357314, 34.6025939142185], [-77.36697382647652, 34.60255068281357], [-77.36746805106895, 34.60255435493385], [-77.36787589476512, 34.60251385874929], [-77.3680912914908, 34.60292215676236], [-77.36821218808531, 34.60295211052407], [-77.36825612021175, 34.60304503619477], [-77.3686408345998, 34.60327762890696], [-77.36865725509877, 34.603272853218456], [-77.36904437721776, 34.60306684987776], [-77.36939567889192, 34.60311276023079], [-77.36947548719057, 34.60310753734925], [-77.36983272856527, 34.60283513720152], [-77.3701743413619, 34.603103209026386], [-77.37037727425329, 34.60317967840918], [-77.37062096172937, 34.60291669582671], [-77.37092919774359, 34.60336258745381], [-77.37116801585883, 34.60358776559977], [-77.37114580349586, 34.603897127042465], [-77.37104051582523, 34.6041956723912], [-77.37080984600235, 34.60443294698376], [-77.37062034063285, 34.60463334350433], [-77.3704474675805, 34.60494410556782], [-77.37022603878222, 34.60507618607978], [-77.37009861934122, 34.605180437946274], [-77.36993786650402, 34.60531783157275], [-77.3698317618561, 34.60544068095271], [-77.36958805711376, 34.605678521508125], [-77.36958189797267, 34.60583497970544], [-77.3692500273655, 34.605929066586], [-77.36904324015866, 34.60605765462732], [-77.3689494907302, 34.60609406698723], [-77.36864905260347, 34.60616366725952], [-77.36839697991444, 34.606274595665276], [-77.36828486450477, 34.606323077289595], [-77.36825482990707, 34.606357406421985], [-77.36818656122432, 34.60637842139724], [-77.36772909607373, 34.60665371151677], [-77.36746635805626, 34.60679722777185], [-77.36733247325245, 34.60685243196673], [-77.36713610309555, 34.60694959708403], [-77.36707212638737, 34.60699865353661], [-77.3668307480721, 34.60718458873045], [-77.36667784975448, 34.60730584382686], [-77.36663799392808, 34.607334063747544], [-77.36657857897913, 34.60738553590737], [-77.36618587410467, 34.60776146688876], [-77.36588923423912, 34.608049020462744], [-77.36576882844989, 34.608221617169235], [-77.36555070255086, 34.60838263557088], [-77.3654949166086, 34.60843146460006], [-77.36544118588446, 34.60845626556316], [-77.36525505170817, 34.60859146535619], [-77.36510059855706, 34.60880656530763], [-77.36505531761001, 34.60887851005128], [-77.36493670679802, 34.60914376550307], [-77.36471505485596, 34.60935204983009], [-77.36454078668095, 34.609623647027846], [-77.36431176561909, 34.60998676036043], [-77.36418192041418, 34.610138123447946], [-77.3640591571202, 34.610295581305884], [-77.36381294921608, 34.610643170812565], [-77.3636612938336, 34.61105296835318], [-77.36359080721579, 34.611212110851746], [-77.36356326980139, 34.611259588566064], [-77.36352282489048, 34.61136177022313], [-77.36343774530721, 34.61165869829402], [-77.36332052487924, 34.611882482676265], [-77.36330494696087, 34.61191222207753], [-77.36319722327882, 34.612117874909245], [-77.36317111769887, 34.61216775838065], [-77.36312825648946, 34.6122481966171], [-77.3630763710936, 34.61234754799416], [-77.36301859814, 34.612450129138196], [-77.36294627074811, 34.612578551946136], [-77.36286181114306, 34.61272851683686], [-77.36281616982939, 34.6128095560237], [-77.36278341719975, 34.612867710650164], [-77.36273375659462, 34.61296477768898], [-77.36270927989597, 34.613010878388565], [-77.36270032452593, 34.61303850780413], [-77.36268584827177, 34.61309212947427], [-77.36267752703922, 34.61325406627353], [-77.36273357601702, 34.613366253483505], [-77.36276782149588, 34.61341643794565], [-77.36279248837472, 34.61344979578659], [-77.362850683825, 34.613739661525074], [-77.36294803697564, 34.613851959761064], [-77.36284191455451, 34.61398421927798], [-77.36273326154611, 34.61406604144174], [-77.36239505404063, 34.61435610931552], [-77.36235974378928, 34.61438360734721], [-77.3623389249426, 34.614397951396725], [-77.36230669795242, 34.614403533517354], [-77.3619446724783, 34.61453952495202], [-77.36157442510205, 34.614448483721766], [-77.36155052355144, 34.61445420747128], [-77.36153133402652, 34.614459760738455], [-77.361290683192, 34.61451506172851], [-77.36116863893807, 34.61454592446226], [-77.36115628609747, 34.614559823614954], [-77.36099734090915, 34.614557280804945], [-77.36077694787757, 34.61457299923671], [-77.36076208959675, 34.61457648660927], [-77.36074590037472, 34.61457603218851], [-77.36036788758382, 34.61460422163579], [-77.36004491040421, 34.614617649193676], [-77.35979994053181, 34.614542433290104], [-77.35957939005456, 34.614849887068786], [-77.35927696631853, 34.61470611025679], [-77.35913906698497, 34.614400161738224], [-77.35896982269256, 34.61423225951408], [-77.35883483935568, 34.614019390627185], [-77.35879145008771, 34.61396165271323], [-77.3584683946734, 34.613995494473336], [-77.35836335131523, 34.61405076248987], [-77.3580028923522, 34.61432772522089], [-77.35782264992332, 34.61439550668474], [-77.3576113513814, 34.61462000143666], [-77.35741408894354, 34.61486362760439], [-77.35721420328227, 34.61493485191832], [-77.35696646589031, 34.6151373464873], [-77.35721404631897, 34.615239817391945], [-77.35744268185323, 34.615247126293596], [-77.3576664974805, 34.61546116887493], [-77.3577743377272, 34.615691064711356], [-77.35778622845515, 34.61586849213754], [-77.35800193948441, 34.61621415463377], [-77.35802366553438, 34.61623546703135], [-77.35802456753254, 34.616258747907196], [-77.35819893001434, 34.61642924080161], [-77.3582123782459, 34.61642951443477], [-77.35839596099714, 34.61656541731143], [-77.35844417463433, 34.61657098975397], [-77.35844293250929, 34.61662309784241], [-77.35879000912844, 34.61686960104893], [-77.35884489088201, 34.61693066766349], [-77.35890016532602, 34.61698185352415], [-77.35918409872687, 34.61709493618162], [-77.35945879107015, 34.617030208075434], [-77.35949668925927, 34.617320563094054], [-77.35954379937506, 34.617350806502714], [-77.35957814096948, 34.61742228518887], [-77.35972881169457, 34.617549374090736], [-77.35978806297526, 34.61770318436768], [-77.35980070791703, 34.61794133613729], [-77.35977968335106, 34.61812894264713], [-77.35957767273479, 34.61838910376192], [-77.35943009701616, 34.6184448957428], [-77.35889725063947, 34.61856408238476], [-77.35878915468041, 34.61859961547542], [-77.358647652451, 34.61856398444641], [-77.35859206002559, 34.61858055635085], [-77.35854292903377, 34.61857210852456], [-77.35845932772968, 34.618600558628856], [-77.35839490448069, 34.618683924108204], [-77.35836330774711, 34.618723306253436], [-77.35833347146384, 34.61876160720184], [-77.35827186619919, 34.61906271798924], [-77.35800043985623, 34.61919324887276], [-77.35794789862854, 34.61924164007684], [-77.35786484435305, 34.61953229419297], [-77.35765376088492, 34.61970851424787], [-77.35721148462828, 34.62023514985609], [-77.35690333935149, 34.62033378862148], [-77.3565308583829, 34.62060287515447], [-77.35642281359202, 34.620693260078276], [-77.35641232771458, 34.62072496218282], [-77.35640739366868, 34.62073694699796], [-77.35638753161358, 34.620777753731595], [-77.35619577256949, 34.621372366782595], [-77.35600293947832, 34.62164423779335], [-77.35563363381041, 34.622096539076495], [-77.3554551736639, 34.622380118183116], [-77.3548448274858, 34.62275774092167], [-77.35421418281048, 34.622920720083066], [-77.35348924847517, 34.62346527295076], [-77.35326753948566, 34.62342760523352], [-77.3531778069498, 34.62365235760668], [-77.35296198481976, 34.62377792768601], [-77.3522144392725, 34.62408726952802], [-77.35207474635742, 34.62417201952823], [-77.35187671559137, 34.62443913350634], [-77.3518155121917, 34.624779436071584], [-77.35176689736909, 34.625003774793086], [-77.35162193257496, 34.625103880086606], [-77.3511271480265, 34.62571800250015], [-77.35111638432377, 34.625730790959], [-77.3511103948107, 34.62574366838495], [-77.35107874733549, 34.62577456470912], [-77.35060017535322, 34.62639004751882], [-77.35054119974284, 34.6265281410037], [-77.35033140165832, 34.62667131268205], [-77.35013852250599, 34.62681937258246], [-77.35005094068939, 34.62684237696742], [-77.34994334358704, 34.626875162154576], [-77.34974227838939, 34.62689918412152], [-77.3495129562405, 34.626902508219175], [-77.34945492635408, 34.62706200776395], [-77.34917947256709, 34.627239819228244], [-77.34917051728995, 34.62723948117418], [-77.34916776726521, 34.62724741574958], [-77.34917076280493, 34.62725707032152], [-77.34929578001089, 34.6276575630161], [-77.34918322491315, 34.627929037803185], [-77.3490173063069, 34.62806966534109], [-77.34880663942783, 34.62824463642216], [-77.34873508633873, 34.62825805002465], [-77.34861214092697, 34.628363492712914], [-77.3484630047973, 34.62849687744659], [-77.34840745415079, 34.62853913647212], [-77.34833655844731, 34.62863330941622], [-77.34811079611887, 34.62892936155473], [-77.34794944787343, 34.62912682587235], [-77.34782060851825, 34.62932562974033], [-77.34765105304892, 34.62957145591449], [-77.34753537477619, 34.62972652506952], [-77.34744994313573, 34.629826727030334], [-77.34728178158885, 34.63004416927808], [-77.34722844301275, 34.63010716445741], [-77.34719265324642, 34.630139189791706], [-77.34708774360983, 34.63023433736018], [-77.34692208489689, 34.630385595490424], [-77.34685278031704, 34.63042363472695], [-77.34666909345353, 34.63055030787625], [-77.34664803932846, 34.63056608337061], [-77.3466404621547, 34.63057700826576], [-77.34642770000309, 34.63069396814703], [-77.34638609915656, 34.630904056347376], [-77.3461016889772, 34.63147222396019], [-77.34603513593112, 34.63166187385364], [-77.34592034107375, 34.63177197651389], [-77.34551508679982, 34.63220060181472], [-77.34539493413888, 34.632343147956625], [-77.3453563389227, 34.63236254887988], [-77.34481530066161, 34.6324381913071], [-77.34477353989614, 34.632436731730046], [-77.34470887071014, 34.63242525708412], [-77.34425228872, 34.63240491686456], [-77.34410973864695, 34.63186586527978], [-77.34407878357773, 34.631749986835636], [-77.34409686845449, 34.63156450055618], [-77.34392943589201, 34.63103029025603], [-77.34387665620395, 34.63093374095141], [-77.34384989593245, 34.63090539154034], [-77.34380130922484, 34.630784484478845], [-77.34344789265356, 34.630148611430684], [-77.34323611383259, 34.629824506162606], [-77.34318620301921, 34.62976254194769], [-77.34291064163425, 34.62953794725486], [-77.34276344834988, 34.629612350768994], [-77.34256023547233, 34.62975184905962], [-77.34232518119452, 34.62981026960714], [-77.34228725190391, 34.62983057575779], [-77.34205594797857, 34.62986522359272], [-77.34200595958978, 34.62981459077099], [-77.3416958197428, 34.62954515648869], [-77.34171409566525, 34.6293940329373], [-77.34178857869726, 34.62911042435337], [-77.34161936785836, 34.628873314972424], [-77.3415584202786, 34.62872002321642], [-77.34151952750753, 34.628631197307165], [-77.34144040372945, 34.62859287165243], [-77.3410431221275, 34.62833523121454], [-77.34070299832075, 34.62810888491427], [-77.3406352528295, 34.628086017423165], [-77.34052427971801, 34.627850743067725], [-77.34064996843668, 34.627844928149905], [-77.34074909189606, 34.627143136992544], [-77.34086328099603, 34.626832789064416], [-77.34093985791134, 34.62633474623799], [-77.34067707695563, 34.62638664719851], [-77.34060149149698, 34.626588328275275], [-77.34044256242635, 34.62681254418079], [-77.34008482865752, 34.62687977891588], [-77.33984445859896, 34.62702186876249], [-77.33952982612875, 34.62683069966629], [-77.33940655490596, 34.62680699802273], [-77.33917600939901, 34.62688102446292], [-77.33894713146312, 34.62683644794482], [-77.33849705843545, 34.62660827603914], [-77.33847955560917, 34.62660075421531], [-77.33815304623145, 34.62611273864458], [-77.33780513149856, 34.62597878229812], [-77.33770506206452, 34.62593193040622], [-77.33765719082933, 34.62594654583594], [-77.33729023872246, 34.62616521957888], [-77.33712305773749, 34.62622140345993], [-77.33693124555529, 34.62640119175267], [-77.33721001259467, 34.626757583325016], [-77.33690487873073, 34.62682680573003], [-77.33722860141371, 34.62679516439091], [-77.33723758684327, 34.626791608736085], [-77.33726260422685, 34.626806697114105], [-77.33768729945169, 34.62703493985573], [-77.33772674035953, 34.62724013643852], [-77.33765208819537, 34.62756824420946], [-77.3376173469293, 34.62780525943583], [-77.33766085100808, 34.628235319996286], [-77.33781015422889, 34.62839054172128], [-77.33788374407243, 34.62841498165131], [-77.3381453456971, 34.62842403460003], [-77.33820804608501, 34.62843598442193], [-77.33828322564307, 34.62842708441879], [-77.33874563745076, 34.62838346692716], [-77.33889349765218, 34.628661413280554], [-77.33908686482846, 34.62885586126906], [-77.33911525132203, 34.62905540139393], [-77.33909535013942, 34.62918546129207], [-77.33912435025002, 34.62981057936988], [-77.33912916034991, 34.62989748567238], [-77.33912820814355, 34.62992205381655], [-77.3391127180473, 34.63032173906058], [-77.33910469616956, 34.63052872542034], [-77.33910578662343, 34.63054047658534], [-77.33911278384628, 34.630549678442065], [-77.33911761258501, 34.630540786619605], [-77.3392644755578, 34.630508093404394], [-77.33946819706216, 34.630396917480226], [-77.3395818763071, 34.630307043483974], [-77.33982717632361, 34.63012241759081], [-77.3400425901389, 34.63006998634168], [-77.34020522421648, 34.63008561992392], [-77.34050422534746, 34.63030592602241], [-77.34067846982188, 34.63029662848624], [-77.34074800175158, 34.6305192659314], [-77.34080562547877, 34.630782482729614], [-77.34085005499864, 34.63092725437721], [-77.34087306556087, 34.63105940664516], [-77.34098531182796, 34.631107236113024], [-77.34115228879361, 34.63130776275816], [-77.34128917692841, 34.63138356154265], [-77.34138296372471, 34.6314932409765], [-77.34196423864783, 34.63204029446409], [-77.34192526118443, 34.63242026947627], [-77.34193473270467, 34.63288834082447], [-77.34186166511807, 34.63310303786458], [-77.3419310398352, 34.63355696238035], [-77.34198767518592, 34.63372506876714], [-77.34201053720733, 34.633909283690336], [-77.34216924426528, 34.63423342620527], [-77.34229963312367, 34.63452623873128], [-77.34231948475374, 34.63486498509783], [-77.34233564166601, 34.63494329381619], [-77.34227799357748, 34.63516623358505], [-77.34222580631314, 34.635380370126306], [-77.34222076651616, 34.63544005520984], [-77.34218955839768, 34.63550744581254], [-77.34197148257327, 34.635874548105676], [-77.3419444077874, 34.6358804932282], [-77.34187182494401, 34.635970484898195], [-77.34180856949781, 34.63605606281326], [-77.34169187045337, 34.636216789319846], [-77.34166428652765, 34.63625497201469], [-77.3416268789678, 34.63630658465934], [-77.34135190303249, 34.63663055419533], [-77.34121926980521, 34.63678453568655], [-77.34119262704145, 34.636815466906], [-77.3411780568165, 34.63684591949878], [-77.341046319415, 34.63701248731742], [-77.3409041029369, 34.637075659399386], [-77.34066978411326, 34.6372819594909], [-77.34065320563086, 34.637312698233146], [-77.34063335027368, 34.637321338818026], [-77.34060297114206, 34.6373347231184], [-77.34044045596826, 34.637447685090535], [-77.34035573573433, 34.63753287408599], [-77.34024692175409, 34.63760061298521], [-77.34005897548113, 34.63764912960862], [-77.33977833034753, 34.637819372857386], [-77.3397715863415, 34.63782405777514], [-77.33976680223334, 34.637827900379776], [-77.33957326663366, 34.63797251880424], [-77.33951215856516, 34.63811409874441], [-77.33938134175341, 34.63812695117425], [-77.33926187638275, 34.63831920010515], [-77.33923964182377, 34.63835103249355], [-77.33907168300107, 34.638505088009325], [-77.33897466958759, 34.63862552150453], [-77.33883192982688, 34.638545064059606], [-77.33862450216321, 34.638406678676546], [-77.33839770180728, 34.638256713619626], [-77.33823447813157, 34.638128048335176], [-77.33799088950508, 34.63791408938894], [-77.33771492985674, 34.637905547264396], [-77.3375463229437, 34.63788954951724], [-77.33741612760133, 34.63790397563605], [-77.33721097749084, 34.6378137578338], [-77.33718447428939, 34.63778859028337], [-77.33712775511123, 34.63776810144235], [-77.33693808866872, 34.637702371283545], [-77.33685602117724, 34.63764033987131], [-77.33652578076972, 34.6373706387502], [-77.33622033667143, 34.63717726374891], [-77.3361213987018, 34.63717047228744], [-77.33606226574848, 34.637140287171775], [-77.33600746923422, 34.637077847852105], [-77.33557235813609, 34.63696218795815], [-77.33542795641502, 34.63643736094374], [-77.33543531220326, 34.63631237197543], [-77.33543639287355, 34.636111592586694], [-77.33543203078472, 34.63609202893937], [-77.33539499541348, 34.636072936044116], [-77.33524054416728, 34.63597254518814], [-77.33521153415509, 34.635954567289176], [-77.33507557535792, 34.63594148754365], [-77.33507439291049, 34.635942197385496], [-77.33506701412615, 34.6359409155559], [-77.3349330200919, 34.63593196320024], [-77.33491199975292, 34.63593055878074], [-77.33488315714503, 34.6359286316736], [-77.33463731119812, 34.63615670188227], [-77.33432841008607, 34.635980949366214], [-77.33406091391788, 34.63565697310669], [-77.3339893982867, 34.63550414397639], [-77.33388356783071, 34.63499519872802], [-77.33387619504573, 34.63483833085792], [-77.33387361232019, 34.63465224930232], [-77.33387773595516, 34.634577274369136], [-77.33387563694177, 34.634416413613934], [-77.3337856082183, 34.63430683351191], [-77.33370644840942, 34.63443962799549], [-77.33376210906003, 34.63454812330324], [-77.33366728328141, 34.6345145989509], [-77.33352439221545, 34.634659787326214], [-77.33358899123158, 34.63487773764459], [-77.33322309294067, 34.635490628576676], [-77.33316702661803, 34.63566068588567], [-77.3329929386259, 34.63580350640464], [-77.33298284626639, 34.6358223478973], [-77.33296995135143, 34.6358240768244], [-77.33294916520298, 34.635841536605504], [-77.33277245818368, 34.63595953597587], [-77.33267821748994, 34.63596536943373], [-77.33259662751976, 34.635965462980195], [-77.33242172427693, 34.635965663315766], [-77.33236850924092, 34.63601716439152], [-77.33211470126753, 34.63601260902263], [-77.33204875654056, 34.63601894476291], [-77.3320089380355, 34.635980938769414], [-77.33175902807952, 34.63601412254653], [-77.33172850032265, 34.63601821746361], [-77.33169810846698, 34.63602229689957], [-77.33160804405058, 34.635993508098], [-77.33143335238171, 34.63597245145582], [-77.331398262991, 34.63596778601095], [-77.33133776583611, 34.63595438316807], [-77.33106863096704, 34.63592036613191], [-77.33092039945667, 34.6358982806228], [-77.33090456732513, 34.635900402572624], [-77.33089300946435, 34.635894199696025], [-77.33086005838345, 34.63588512563749], [-77.3307342311456, 34.6358492011496], [-77.33063722000719, 34.63582660488685], [-77.33043621474333, 34.63577977520072], [-77.33040623004536, 34.63580989781626], [-77.33035078109376, 34.635819678932], [-77.33030787617403, 34.63574987860157], [-77.33004987872334, 34.63562940411894], [-77.32988486294795, 34.635594108036955], [-77.32964006325773, 34.63541949460374], [-77.32956579663795, 34.63507786179085], [-77.3293251478359, 34.635208484328736], [-77.32899088429342, 34.63506804171082], [-77.32894907982208, 34.63505827208884], [-77.32891897729085, 34.635096415474564], [-77.32873887947724, 34.63519563373428], [-77.32870994574083, 34.6353330488424], [-77.32869764926049, 34.63549080086213], [-77.32865807091663, 34.63555419454803], [-77.32847569859622, 34.6357606832632], [-77.32835860546994, 34.63584150786455], [-77.32833330443478, 34.63584864106359], [-77.32828113180769, 34.63589899915508], [-77.32819918188581, 34.635977797922585], [-77.32812547971122, 34.636049237521746], [-77.32808403235384, 34.63625242672791], [-77.32793853788247, 34.6362739767021], [-77.3278243511422, 34.63634358009676], [-77.32779336264397, 34.63634808920158], [-77.32774906143814, 34.63637824394894], [-77.32765380046115, 34.636450159722486], [-77.32760367025467, 34.636471156363655], [-77.32735210920629, 34.63654190280864], [-77.32719833705133, 34.63659839167428], [-77.32710930982222, 34.636676812839255], [-77.32706198511934, 34.63669126425862], [-77.3269908014747, 34.636731285910265], [-77.32665553163108, 34.636920370982565], [-77.32650047723963, 34.63708334735138], [-77.32623558786429, 34.63707828143297], [-77.32615403642455, 34.63711936544181], [-77.32603454468193, 34.63717999226246], [-77.32590377238265, 34.63730013253435], [-77.32580081805035, 34.637456843272375], [-77.32540125193665, 34.63758185287052], [-77.3253296488759, 34.63762941715848], [-77.32524156187932, 34.637601893140555], [-77.32507154190752, 34.63766054110959], [-77.32502303310667, 34.63769665851874], [-77.32498506691431, 34.63769602320512], [-77.32475796897702, 34.637707290079874], [-77.32471079249936, 34.63773588061968], [-77.32465924879557, 34.637725407429514], [-77.32438807309335, 34.63772290111617], [-77.32422257091402, 34.63765125106109], [-77.32420713261396, 34.63764976262148], [-77.32404539005766, 34.637610465168194], [-77.3238935022531, 34.63747359828221], [-77.32375362332924, 34.63739961963448], [-77.32367239030597, 34.637346987219935], [-77.3235388844615, 34.63725077037472], [-77.32333153145993, 34.63712866750634], [-77.32331537091989, 34.63711928723591], [-77.3233056446059, 34.6371146550535], [-77.32329369363647, 34.637117380222705], [-77.32310526156103, 34.637159693062486], [-77.32301206415941, 34.637188031343655], [-77.32300690505274, 34.63722113215038], [-77.32282182347852, 34.63734403982883], [-77.32283281658724, 34.63794865181981], [-77.32263525982256, 34.63783717979307], [-77.32283848369912, 34.63804024936362], [-77.32257499127701, 34.63825899129142], [-77.32234664946502, 34.6382350094601], [-77.32225446562983, 34.63825694586817], [-77.32203901455226, 34.638149864299535], [-77.32181749468747, 34.63778829963451], [-77.32176429935541, 34.63769108569399], [-77.32189381721449, 34.63763726250053], [-77.32212388279159, 34.63760633318704], [-77.3221646754668, 34.63767505491245], [-77.32244399783853, 34.637658539936325], [-77.322311748107, 34.63738400495731], [-77.32216343507955, 34.63728882947892], [-77.32208536054503, 34.63725820976519], [-77.32204952671343, 34.63723585727243], [-77.32197832124604, 34.63722358832816], [-77.3214124600479, 34.637251578974706], [-77.32090616227256, 34.63729655812758], [-77.32077096215659, 34.63724521932711], [-77.32048671999726, 34.63697901194114], [-77.32022324593686, 34.6369190802927], [-77.32006959220104, 34.636940509747866], [-77.31994789095172, 34.6368977173157], [-77.31973177389202, 34.63685226292982], [-77.31968327989628, 34.63684756502887], [-77.31957791512659, 34.636883137547784], [-77.3195399803017, 34.63694827809996], [-77.31944944970351, 34.63704055459614], [-77.31927105108144, 34.6372633778789], [-77.31923658560167, 34.63733230257372], [-77.31912635486233, 34.63737584247804], [-77.31890074306243, 34.63749659907356], [-77.318595243331, 34.63727926773652], [-77.31853616794666, 34.63727501165073], [-77.3184408896009, 34.6372564780669], [-77.31820505021199, 34.63722015235965], [-77.31806045265753, 34.637189972538614], [-77.31770359910519, 34.637056254304596], [-77.31758700411606, 34.6369792988598], [-77.31748199444915, 34.63680730236667], [-77.31719653667592, 34.63660443486419], [-77.31701411518334, 34.63630678956595], [-77.31691585530707, 34.63601234192707], [-77.3167927738834, 34.63549315692151], [-77.31669472574693, 34.63495791282343], [-77.31672131036754, 34.63465898114035], [-77.31672693755567, 34.63432056501962], [-77.31671369464267, 34.634117430240096], [-77.31659320054516, 34.633832570129925], [-77.31660503779902, 34.63375870249127], [-77.31655549347794, 34.63378490514124], [-77.31633346373002, 34.633722342436855], [-77.31624120913368, 34.6338138713887], [-77.315885407676, 34.6334614658342], [-77.31576128519183, 34.633418476717864], [-77.31555493718201, 34.63358416905533], [-77.31502066998625, 34.633204130027174], [-77.31491563749782, 34.63308546591185], [-77.31486692556149, 34.632803216761644], [-77.31468610467279, 34.63241403714889], [-77.31468142506337, 34.632406655492], [-77.31467950459269, 34.63240528119849], [-77.31467815869483, 34.63240476372736], [-77.31467435454887, 34.63240305995175], [-77.314503105211, 34.63232994280098], [-77.31439795104222, 34.63238867260217], [-77.31435552172907, 34.63239206432398], [-77.31426310365079, 34.63246398615919], [-77.31418192232219, 34.63261047595472], [-77.31410705416835, 34.63274911854646], [-77.31384387970282, 34.633365406950674], [-77.31384235606522, 34.63362816750691], [-77.31336208504374, 34.63386452544583], [-77.31306055368546, 34.63391505408657], [-77.31261484263901, 34.63353383154576], [-77.3124363399043, 34.633401413874346], [-77.31231823982571, 34.6334058910908], [-77.31208583936615, 34.63332209947802], [-77.31197319546507, 34.63328148601133], [-77.31191032562195, 34.63329478759243], [-77.3116687368066, 34.63335943159165], [-77.31121278603, 34.63352751069324], [-77.31097187352131, 34.633616319060614], [-77.31098220566116, 34.63398369452117], [-77.31119692824007, 34.63419897024076], [-77.31134616139617, 34.634410954617685], [-77.3115243416617, 34.63452722641878], [-77.31173974104688, 34.63477960903673], [-77.31204125240613, 34.63521672645962], [-77.31263513524479, 34.635302800295094], [-77.31338962234024, 34.635959561822624], [-77.31343931779939, 34.63600646786442], [-77.31342433940414, 34.63724243856848], [-77.31329545315393, 34.63766040005312], [-77.31354988009028, 34.63808247861548], [-77.31389036876799, 34.63805185375364], [-77.31417843722548, 34.63794689728935], [-77.31485389294096, 34.63779728665713], [-77.31507957204653, 34.63759704993907], [-77.31517612167363, 34.63754398187099], [-77.31569581043472, 34.63747751557508], [-77.31581178762707, 34.63747033754197], [-77.3161977262567, 34.63743327414325], [-77.31633149718697, 34.63745492332459], [-77.31661158598779, 34.637627918490494], [-77.31664767335866, 34.63769045299089], [-77.31685353761625, 34.63801674113345], [-77.31700237987175, 34.63813608332325], [-77.3171275906, 34.63823179100967], [-77.31719904009715, 34.63832069956453], [-77.31740674548175, 34.63829277751658], [-77.31745294899477, 34.638257932041675], [-77.31752038085361, 34.63825861468667], [-77.3177514757703, 34.638150348547306], [-77.31820659373093, 34.638048302086546], [-77.31837335526757, 34.63805891604339], [-77.31852857365897, 34.63800580740212], [-77.31867798396264, 34.63798175205326], [-77.31882569777693, 34.63797077351228], [-77.31906185381547, 34.638299473074], [-77.31921308311033, 34.63835175718087], [-77.31934188155279, 34.63851962721853], [-77.31960818068944, 34.6390142282138], [-77.31979951661067, 34.63930086665531], [-77.31966036762778, 34.63973039024839], [-77.31959809537341, 34.63988498997837], [-77.3194692817392, 34.64019011047619], [-77.31946885337554, 34.64021892407589], [-77.3194528959987, 34.64024810603189], [-77.31940127963519, 34.64027443906728], [-77.31914374254667, 34.64058267562357], [-77.31907892782169, 34.64066560695544], [-77.31899133073327, 34.640774026883975], [-77.3189462707276, 34.64091395067838], [-77.31890271409169, 34.641024965239154], [-77.3188649190348, 34.64111692902341], [-77.3187907753204, 34.641482447875674], [-77.3187779803256, 34.6419728187155], [-77.31877598953642, 34.642241440674354], [-77.31870755508129, 34.64279464178741], [-77.3189558111786, 34.64240939813669], [-77.31918266536566, 34.64209191807321], [-77.31976741065229, 34.64184505876289], [-77.31977259974107, 34.641841166855684], [-77.31977472469157, 34.64183944344991], [-77.31978381680399, 34.641834940062566], [-77.32015681058714, 34.64152890297228], [-77.32034493332833, 34.641502730481285], [-77.32053841104582, 34.64146700318283], [-77.32090905162805, 34.64156408867462], [-77.32097433548509, 34.641448658400634], [-77.32114444428751, 34.64141536809021], [-77.32158315007725, 34.641292015735914], [-77.32177775583914, 34.641309751404506], [-77.32197623558886, 34.641226021756935], [-77.32219164649177, 34.64113379727677], [-77.32254517780885, 34.64093873459791], [-77.3227948210492, 34.64094907510843], [-77.32304623500016, 34.641094821943994], [-77.32314390786782, 34.64109335595025], [-77.32328480653442, 34.641196527870505], [-77.32336444154004, 34.641187774963], [-77.32345541943972, 34.641050438191535], [-77.32363716641292, 34.64107305190184], [-77.32384853945263, 34.6409725135279], [-77.3240334969459, 34.64074070378438], [-77.32432098512339, 34.6408674549596], [-77.32444196024021, 34.64085935372606], [-77.32468147644468, 34.64077920140782], [-77.32495083709438, 34.64076864713219], [-77.32536464467248, 34.64099297662718], [-77.32547975602385, 34.64105398235537], [-77.32581351119046, 34.641356776142544], [-77.32607840489621, 34.641359104825014], [-77.32619499574798, 34.641161801358514], [-77.32668769918976, 34.64120488530461], [-77.32711140849548, 34.641083556269884], [-77.32728647878287, 34.64099830605032], [-77.32741068961755, 34.640962407144904], [-77.32789465346103, 34.64083853083128], [-77.32796996590955, 34.640817350258246], [-77.32817773279592, 34.640683971257204], [-77.32827134050875, 34.64043144502791], [-77.3284379964838, 34.640355885428185], [-77.32868859944114, 34.640257516934426], [-77.32900121757933, 34.63997226592144], [-77.32915591922188, 34.639922834539576], [-77.32947311725067, 34.639852539223256], [-77.3296090851708, 34.639811008841406], [-77.33011403576316, 34.63973177174059], [-77.33023224283731, 34.63972590213432], [-77.33034397197993, 34.63969762424924], [-77.33073581234108, 34.63964888791354], [-77.3308808076558, 34.63976731592396], [-77.33123902960043, 34.639800672709875], [-77.33150627765276, 34.64022739579016], [-77.33165132371053, 34.640415960562365], [-77.33197868882667, 34.640632315620344], [-77.33250186409803, 34.6417126768776], [-77.33249619053723, 34.641779563523386], [-77.3325358904267, 34.6418251492348], [-77.33258533513275, 34.64187857444277], [-77.33274360822405, 34.641938409234626], [-77.33344284403402, 34.64232569111775], [-77.33392640457515, 34.64217995114653], [-77.334063664186, 34.642244712536254], [-77.3342964648267, 34.6420537812123], [-77.33444629190383, 34.6419340059285], [-77.33450328325537, 34.641864374398764], [-77.33471885557456, 34.64178088398206], [-77.33491457347, 34.64170825276767], [-77.33510021380462, 34.64164863640367], [-77.33519869840848, 34.641719787764124], [-77.33533512676668, 34.641689019130816], [-77.33542375615154, 34.641665607748436], [-77.33553691423134, 34.64162424342754], [-77.33561051436712, 34.641612508641956], [-77.33570567795104, 34.64147539202865], [-77.33578229352618, 34.641439257025056], [-77.33588039422855, 34.641315233404974], [-77.33594601280562, 34.64092483534129], [-77.33622459667995, 34.64087134847058], [-77.33650403274558, 34.64085768388854], [-77.33748937917322, 34.64103132245784], [-77.33753363256035, 34.64101327013704], [-77.3375682659089, 34.64104685164961], [-77.33760513524587, 34.641078552449706], [-77.33805913649128, 34.64122309081769], [-77.33819914546518, 34.6411389432022], [-77.33864043123448, 34.64122031058416], [-77.3388722932653, 34.64130260118779], [-77.33907701846022, 34.64150402360781], [-77.33923584761574, 34.641698743892924], [-77.33928256872638, 34.64175123009364], [-77.33944041911548, 34.64193263560762], [-77.3395541307275, 34.64207705636188], [-77.33970648922411, 34.642267739705076], [-77.3398141820408, 34.64234073749077], [-77.33985584090925, 34.64245764298714], [-77.3399545690149, 34.64266569577632], [-77.34009465735475, 34.6429335397768], [-77.34021682950505, 34.64321428764011], [-77.34022887288528, 34.64324186683831], [-77.34023235938704, 34.643249958282986], [-77.34023853030983, 34.64326443372241], [-77.34036280617991, 34.64355075404009], [-77.34041325967895, 34.64364712565945], [-77.34046728219836, 34.64381162233073], [-77.340562258877, 34.64404867162332], [-77.34062031943856, 34.64418903223842], [-77.34070996236751, 34.64423939695368], [-77.34074503250865, 34.644249660928466], [-77.34085204243951, 34.644304317569336], [-77.34102009203782, 34.644407827615254], [-77.34107469108542, 34.64443756962403], [-77.34110707709173, 34.64445815488965], [-77.34127229357439, 34.644563169781534], [-77.3414433683569, 34.64453849004785], [-77.34155118164635, 34.64464231739224], [-77.3415752896244, 34.64475361765571], [-77.34159740088742, 34.64486668000671], [-77.34163641500115, 34.64516722484261], [-77.34162136283771, 34.64522267048993], [-77.34165475347972, 34.64558540184404], [-77.34165482719638, 34.64558669506523], [-77.34165501388087, 34.64558770570895], [-77.34165457338275, 34.64558942571325], [-77.34162355719278, 34.646012984648436], [-77.34160203969061, 34.64620549129064], [-77.34158925113907, 34.64628915853152], [-77.34156821699888, 34.64644257826674], [-77.34156489771698, 34.64650443740288], [-77.34155123641061, 34.6466682566267], [-77.34153921813486, 34.64681408422933], [-77.34153397319996, 34.64686927597882], [-77.34152893661876, 34.646982642784415], [-77.34152524749264, 34.64713466218839], [-77.34151543222244, 34.647286612893915], [-77.34151502094062, 34.64729387481602], [-77.34149903383243, 34.647443810732135], [-77.34141780417363, 34.647597351553415], [-77.34136756465739, 34.64773611181755], [-77.34142160082182, 34.6480387643314], [-77.3413551672855, 34.64815981048248], [-77.34125592319639, 34.648551340854475], [-77.34103468220042, 34.64887711153311], [-77.34082007224046, 34.64881170472382], [-77.34047344764632, 34.64907227028379], [-77.34043665115702, 34.64908757236347], [-77.34031033386233, 34.6488211321895], [-77.34023000906137, 34.64885589007336], [-77.34015852835066, 34.64883463591235], [-77.34013539429137, 34.648839781103895], [-77.34008408401525, 34.64892633318895], [-77.33995619976793, 34.64898481649639], [-77.34010073816926, 34.649009204792705], [-77.3401996647489, 34.64904022516428], [-77.34042522039498, 34.64913144317091], [-77.34044062660737, 34.649137246965836], [-77.34044688837258, 34.64913851202754], [-77.34046509530201, 34.64914756905773], [-77.34097837567847, 34.649220771635264], [-77.34105582403369, 34.649466888876844], [-77.34121418417031, 34.64977025857418], [-77.34125194441079, 34.649827310719786], [-77.34129313162592, 34.649856314424134], [-77.34167195352519, 34.650143940171816], [-77.34189922867877, 34.6499927100985], [-77.34211067988991, 34.65001649969988], [-77.3423170011899, 34.6500150447517], [-77.34237011669228, 34.65013048528877], [-77.34259552474953, 34.650271121422634], [-77.34272636559723, 34.650352755077705], [-77.3428454782568, 34.65048723220927], [-77.34300262082215, 34.650703584562365], [-77.34310483316618, 34.65075164025986], [-77.34312872199874, 34.65087034975274], [-77.34326669873589, 34.65100527026169], [-77.34330574940276, 34.651057048278815], [-77.34340738270365, 34.65112441303032], [-77.34348066392846, 34.65115575259269], [-77.34363070212686, 34.65122344036691], [-77.3437582432034, 34.651277074924785], [-77.34397969840026, 34.65131594374443], [-77.34409930253446, 34.65138097246388], [-77.34419608448462, 34.65146163615148], [-77.34428258514492, 34.651496360211965], [-77.3443162481899, 34.651510782168955], [-77.34438740077094, 34.65154156204622], [-77.34443535672365, 34.6515620173004], [-77.34445792340665, 34.651572225527005], [-77.3445242223186, 34.65160221638302], [-77.34463402505216, 34.65165188660193], [-77.3446794493884, 34.65165285495161], [-77.34480236862115, 34.65169295365706], [-77.3449597506229, 34.651672002818444], [-77.34510519197164, 34.651865020858274], [-77.34516657574305, 34.651911977532926], [-77.34532689291667, 34.65201783611986], [-77.34535133223889, 34.652034681784784], [-77.34535648110824, 34.652034755057244], [-77.34551831727086, 34.65206898480785], [-77.34578826798675, 34.652193242025085], [-77.3458453714162, 34.65221504027037], [-77.34593930998646, 34.652255862179274], [-77.34620073196766, 34.65227818572186], [-77.34633636864254, 34.65239115597385], [-77.34648934323235, 34.652518988640075], [-77.34658113674172, 34.6525777381341], [-77.34679384819003, 34.65263363799262], [-77.34695005256404, 34.652820131664534], [-77.34737293458429, 34.653241671609706], [-77.34755479588216, 34.65342355881624], [-77.34773376769583, 34.653533082189426], [-77.3479744002947, 34.653741049991595], [-77.34823320509221, 34.653967552113286], [-77.34837892512955, 34.65408840303803], [-77.34851514341327, 34.65423432596159], [-77.34894956003765, 34.65471318959428], [-77.34913102096317, 34.6548958978578], [-77.3493094062368, 34.65508577846455], [-77.34931974263708, 34.65509639438683], [-77.34933039862297, 34.65510397413741], [-77.34957316841046, 34.655168771088036], [-77.34967262810355, 34.65521356413042], [-77.34995508067638, 34.655419115997745], [-77.34983944044161, 34.65578990062502], [-77.34982136645822, 34.65585947912992], [-77.34983411258719, 34.65589100544667], [-77.34957886211693, 34.656314780777805], [-77.35011711474958, 34.656388459630804], [-77.35025259478032, 34.656505276186664], [-77.35054331718109, 34.656692924130446], [-77.35087192644197, 34.65698121632114], [-77.35101384297832, 34.657106180131564], [-77.35136450016361, 34.65736368831787], [-77.35175264969848, 34.65770426815572], [-77.35217836124188, 34.65804897338256], [-77.35255913712439, 34.65842113754792], [-77.35299476019034, 34.65872925353001], [-77.3532547980968, 34.65869581342499], [-77.35384235767835, 34.65896440957185], [-77.35395539098221, 34.6589949739531], [-77.35400097125228, 34.659033680143835], [-77.35405400780202, 34.65907620446882], [-77.35475226262899, 34.65977268138578], [-77.35478600181719, 34.65977611341798], [-77.35482485750012, 34.65981433135205], [-77.35541423009523, 34.659879773190575], [-77.35587547553314, 34.659915668716415], [-77.35610662211724, 34.66013807203771], [-77.3562754199381, 34.660272189773906], [-77.3564196619785, 34.660439270461914], [-77.3565014642047, 34.660508991837034], [-77.35665775718715, 34.66066358402448], [-77.35684999540663, 34.660802159174615], [-77.35688584050858, 34.6608278762835], [-77.35714312961966, 34.660850933066364], [-77.35754552726927, 34.661128614157484], [-77.35757365010495, 34.66114691454026], [-77.35772621726298, 34.661947801044064], [-77.35772394831771, 34.66199785809269], [-77.35770215437232, 34.66256599047806], [-77.35756644714856, 34.66261892665521], [-77.35742664910286, 34.66283296494303], [-77.35738332857579, 34.66293561892749], [-77.3574452328705, 34.663124120546044], [-77.35761672426503, 34.66315338652215], [-77.3576598935629, 34.663083316792516], [-77.35774746122517, 34.66309989261241], [-77.35797671980946, 34.66306642620113], [-77.35840909982514, 34.66354200574132], [-77.35839682393325, 34.663738435840074], [-77.35838371809011, 34.66378918661869], [-77.35838903200883, 34.66385972894585], [-77.35841478337095, 34.66402861223319], [-77.35840434790288, 34.66412685395991], [-77.35840221875776, 34.66415218523122], [-77.35840740849326, 34.66419514522537], [-77.35841089038621, 34.664272840589675], [-77.35843561896496, 34.66442866968096], [-77.35846013056393, 34.66447811698302], [-77.35848479049072, 34.664506381372675], [-77.35847035445478, 34.66457008096749], [-77.35851630732814, 34.66482907688426], [-77.35854508144311, 34.66498548558882], [-77.35854236931789, 34.665091831461474], [-77.35854838450145, 34.66519859196908], [-77.35854922162972, 34.66527825418844], [-77.35857002028621, 34.66546944617244], [-77.3585920317465, 34.665951725466755], [-77.3585923189355, 34.66595319002992], [-77.35859224128451, 34.66595378077359], [-77.35859213613287, 34.665954547172], [-77.35856172720044, 34.66637095394374], [-77.35857915372313, 34.66644296552897], [-77.35859873540836, 34.66673667205732], [-77.35855882043916, 34.66693314583919], [-77.35858274799462, 34.66722270304641], [-77.35859787567355, 34.66741516747955], [-77.35841040699626, 34.66767008722348], [-77.35829158035767, 34.667944632914526], [-77.35814111819073, 34.66810760753117], [-77.3579425395208, 34.66823627647543], [-77.35793529231981, 34.66824423030696], [-77.35790062699851, 34.66845676694973], [-77.35793926316396, 34.66848041980781], [-77.35813277719328, 34.66856530665915], [-77.35820898678043, 34.668613579717906], [-77.35841590278255, 34.6686207199748], [-77.35860123962632, 34.668705805460235], [-77.3588225758898, 34.66884645921877], [-77.35888683898617, 34.668880141217905], [-77.35891314880917, 34.668969338042906], [-77.35908983148481, 34.6692971301978], [-77.35897817526353, 34.66948802482537], [-77.35893623941726, 34.669630535521165], [-77.35883585926099, 34.66981940871874], [-77.35882078916006, 34.669986717562196], [-77.35881409304915, 34.67011878599041], [-77.35904102968742, 34.67027860932686], [-77.35907400098122, 34.670312903990435], [-77.35911525819373, 34.67033500091351], [-77.35935928492077, 34.670487486597885], [-77.35944896670767, 34.67054367468346], [-77.35962171807634, 34.67065191103518], [-77.35964160167241, 34.67066435334793], [-77.35966759589482, 34.67067991696243], [-77.35987618560415, 34.67080610519477], [-77.3599367388792, 34.6708313498527], [-77.36013580320818, 34.67094255409016], [-77.36022116319157, 34.67100659431249], [-77.3603389791241, 34.67107506431506], [-77.36038997500827, 34.67109777308154], [-77.36053664521224, 34.671157928103895], [-77.36066220575894, 34.671190760477025], [-77.36072304106966, 34.67121153426598], [-77.36081624686233, 34.67125318502316], [-77.36088747348805, 34.67128204935113], [-77.36112442051112, 34.671390897611225], [-77.3611994371577, 34.67140165593289], [-77.36122227563706, 34.67141850864634], [-77.3612251103953, 34.671440702770774], [-77.36145458400158, 34.67155352321723], [-77.36151827544819, 34.67158484161242], [-77.36166011327475, 34.67162462763571], [-77.36172838231818, 34.67164111489464], [-77.36188627176853, 34.671695744101825], [-77.36203813539703, 34.67181638026101], [-77.36216287003805, 34.67187701445629], [-77.36224481162182, 34.67192371501884], [-77.36244522826667, 34.67205385045206], [-77.3624948876959, 34.67209306799333], [-77.36257622612436, 34.67215010730321], [-77.36267704853762, 34.6722159784176], [-77.36271396860771, 34.672241171214075], [-77.36274415066805, 34.67226522563731], [-77.36299098754299, 34.672422118503405], [-77.36304926843697, 34.6724591623618], [-77.36325244623396, 34.67257587945565], [-77.36327648462174, 34.67259653839417], [-77.36330181534521, 34.67261751738781], [-77.36349006213523, 34.67278818763556], [-77.3635471222076, 34.67278239893229], [-77.36373507781563, 34.67297499559316], [-77.36377162934775, 34.67300377677007], [-77.3637650233235, 34.67304125486408], [-77.3639692706321, 34.673199109052874], [-77.36399835241482, 34.6732234490698], [-77.36400405580984, 34.67325210231216], [-77.36408500186243, 34.67331587241383], [-77.36412551385419, 34.673322660444015], [-77.36420931789924, 34.673403048198445], [-77.36428370369555, 34.67339798215324], [-77.36434190098123, 34.67344937007281], [-77.3645067713242, 34.67362046958442], [-77.36449765195415, 34.673671661674284], [-77.36467687429048, 34.673854151878736], [-77.36469475888346, 34.67386996678657], [-77.36469243112086, 34.67388858954778], [-77.36478454556608, 34.67399749280964], [-77.36478478290236, 34.67399777196726], [-77.36487097446246, 34.67410774834389], [-77.36488123788511, 34.67412062576433], [-77.3650595975024, 34.674325521613135], [-77.36508484938223, 34.67435809440087], [-77.36511302119848, 34.67441353009788], [-77.3653212459796, 34.67457032139784], [-77.36534928371807, 34.674630533913486], [-77.3655110633563, 34.674750867911555], [-77.36548294235016, 34.674840063064934], [-77.36549023026224, 34.67494215447586], [-77.36551985075359, 34.67499335569717], [-77.36553469701475, 34.67502280613276], [-77.36573299009471, 34.67504178029726], [-77.36583074808412, 34.67519432365734], [-77.36595575030194, 34.675264507203], [-77.36589395602677, 34.67567302803651], [-77.36590758972058, 34.675695827051925], [-77.36592792069571, 34.675730170394495], [-77.36598741633621, 34.67583148548631], [-77.36610794981927, 34.67588731369066], [-77.3661376366178, 34.67591294561938], [-77.36627576134994, 34.67595757493585], [-77.36647449118556, 34.67590899454166], [-77.36657156818528, 34.67597308620576], [-77.367034225958, 34.67599171740201], [-77.36704996264069, 34.67598820500518], [-77.36705852757291, 34.6759923976792], [-77.367173741395, 34.67598452839603], [-77.36735373033676, 34.675972548069446], [-77.36741125361065, 34.675951883782204], [-77.36758538053468, 34.67584209378783], [-77.36777234795593, 34.675560995386604], [-77.36785830848423, 34.67544584843309], [-77.36838253177065, 34.675520534705754], [-77.36861904812456, 34.67557935008944], [-77.36873145248202, 34.67558163625118], [-77.36896571096969, 34.67557316017149], [-77.36941079690878, 34.67554563541994], [-77.36958314999526, 34.675507679518745], [-77.36979628586228, 34.67546139578161], [-77.37061855864961, 34.67533984996453], [-77.37085911920492, 34.67523503187953], [-77.37169540576346, 34.6750180212366], [-77.37212761884179, 34.6749880941463], [-77.37248744131597, 34.6749661913626], [-77.37299459208302, 34.674893260755866], [-77.37336520296962, 34.67484771201185], [-77.3736344156683, 34.67482221764427], [-77.37369962538966, 34.674821279603805], [-77.37379635988248, 34.674965750514986], [-77.37387591986369, 34.67506316716894], [-77.37388255088123, 34.6750746821216], [-77.37389613611678, 34.67508044914612], [-77.37407711369409, 34.67531912356345], [-77.37431691131692, 34.67548992530374], [-77.37436727625848, 34.67551936389507], [-77.37443395808083, 34.67553085385056], [-77.37465016559591, 34.67557566534991], [-77.37479969043622, 34.67555122916028], [-77.37495889420727, 34.67554286911758], [-77.37515155607532, 34.67552872883664], [-77.37558282583154, 34.6754549467918], [-77.37598094135626, 34.67543011532099], [-77.37618818735287, 34.67543105220676], [-77.37642515946463, 34.675482302418665], [-77.37656566752707, 34.67550578225776], [-77.37675661277156, 34.675534525133614], [-77.37685495609699, 34.675545592809925], [-77.37709071917953, 34.675595879700744], [-77.37732001010322, 34.67565533834489], [-77.37761205259963, 34.67575110320819], [-77.37773712310681, 34.67599437761903], [-77.37750793340425, 34.67634085577793], [-77.37747029918344, 34.67651847153277], [-77.37716192927401, 34.67688630091047], [-77.37702969953175, 34.67706646343062], [-77.37698994394417, 34.67715800484848], [-77.37687312271515, 34.67719640753099], [-77.37627522206907, 34.677657617272835], [-77.37619150977253, 34.67772662229274], [-77.37608922693555, 34.6778358982936], [-77.37546386084095, 34.678256587561584], [-77.37541524797743, 34.67831489424479], [-77.37497034786315, 34.67857397077145], [-77.37461399276248, 34.67879560475094], [-77.37451256854986, 34.67879113390948], [-77.37365560743032, 34.67879783009795], [-77.37348729544318, 34.67855349497908], [-77.37312793915021, 34.678840240331006], [-77.37306315205845, 34.679074079949956], [-77.37267976885401, 34.67927430048472], [-77.3723348572873, 34.67941361512016], [-77.37195082713791, 34.679724125669395], [-77.37138080984421, 34.67976090580513], [-77.37133787493401, 34.679774055661284], [-77.3712902228704, 34.67976404697431], [-77.37074953112392, 34.679739139756265], [-77.37048753386523, 34.679660190647716], [-77.36992669811394, 34.67950526526894], [-77.36970510248142, 34.67947412689266], [-77.36963372418153, 34.67945944120913], [-77.36940904171053, 34.67937302716934], [-77.36895694000964, 34.67926167387559], [-77.36895672800796, 34.67915120379232], [-77.36872819646862, 34.679043545655304], [-77.36857735090835, 34.678974882222306], [-77.36856786773915, 34.67896986601705], [-77.36852690531994, 34.67896658812863], [-77.36834351052536, 34.678945483955744], [-77.36820490942375, 34.67894390961794], [-77.36794724206526, 34.6790839388002], [-77.36772878882377, 34.67916006055222], [-77.36730636716612, 34.6792300958861], [-77.36693433506719, 34.679241957000016], [-77.36667940995542, 34.67932827003215], [-77.36651490486807, 34.67936045011746], [-77.3662868167238, 34.67934624821818], [-77.36608128684125, 34.67932705304011], [-77.36583267527503, 34.67930165329405], [-77.36570194169482, 34.67927802563198], [-77.36550614071555, 34.67924664070099], [-77.3653929261883, 34.67924597606198], [-77.36492123408533, 34.67921844029161], [-77.36491703932106, 34.67921812013562], [-77.36491596532332, 34.67921802718128], [-77.36491108617643, 34.679215191211476], [-77.36457523254633, 34.67908703620144], [-77.36442835374466, 34.67883593099616], [-77.3644069918053, 34.67882232763976], [-77.3644069984734, 34.678801715516876], [-77.36433907033526, 34.6787081426656], [-77.36421907207628, 34.67857276998349], [-77.36403586646172, 34.678365324610766], [-77.36401533825767, 34.67833538742534], [-77.36399292105344, 34.67827401862408], [-77.36378560778311, 34.678118020166615], [-77.36375703985982, 34.67805567295037], [-77.36359948220823, 34.67793789950916], [-77.36354164378369, 34.67791161122223], [-77.36350774066979, 34.67788357371725], [-77.3630352951915, 34.67752803419696], [-77.36302584401945, 34.6775202522818], [-77.36301805164032, 34.67750868061223], [-77.36299983072776, 34.67752097310871], [-77.3624782269395, 34.67754761633478], [-77.36240079392839, 34.67757342822358], [-77.36235040753492, 34.6775834815855], [-77.36209620590297, 34.6775918742761], [-77.36190179871966, 34.67759715805947], [-77.3618024924757, 34.677572843519734], [-77.3613540566752, 34.6773384375641], [-77.36125265404247, 34.67740525128061], [-77.36100437729601, 34.67766666285958], [-77.36092743864958, 34.677817647651594], [-77.36074758575126, 34.67807723432779], [-77.36055350439585, 34.67835640909916], [-77.36043500289922, 34.678438349578585], [-77.36023953702836, 34.67887682573535], [-77.36023276900119, 34.67888786070214], [-77.3602292718624, 34.6788941905056], [-77.3602185311715, 34.678906450668], [-77.35954882942264, 34.679469206116785], [-77.35951316692484, 34.679535809774414], [-77.35943951749331, 34.679971608559676], [-77.35911331059567, 34.680457792244006], [-77.35901775598363, 34.680516934728395], [-77.3586943795788, 34.680724638898255], [-77.3584658010308, 34.6808213585054], [-77.35843648291001, 34.68084047569609], [-77.3582995199016, 34.68101282603791], [-77.35829287956835, 34.68110389455216], [-77.35828645611096, 34.68116872451892], [-77.3582269254973, 34.68158670602118], [-77.35822199381056, 34.681601018191465], [-77.35818434464312, 34.68164153948697], [-77.35821271703205, 34.681693348140485], [-77.35821168243105, 34.681724281198704], [-77.35820176395183, 34.68173108613306], [-77.35807765362333, 34.68177349363564], [-77.35801826254215, 34.68176938290051], [-77.35788870552808, 34.68177864805014], [-77.35773391695282, 34.681787886678535], [-77.35758464296981, 34.68179521429753], [-77.35745150126809, 34.681811437943566], [-77.35712096093482, 34.68188273195812], [-77.3569360893941, 34.68196762801209], [-77.3568224537435, 34.68203694467694], [-77.35669684190182, 34.68214498501741], [-77.35635514019178, 34.682344821106824], [-77.35629289514824, 34.68242512244734], [-77.35620222596675, 34.68243392958798], [-77.35611625322913, 34.68244501894679], [-77.35569180573519, 34.6825304868778], [-77.3555391986769, 34.6826561693157], [-77.35533938484308, 34.68285630576865], [-77.35523240527792, 34.68298640186039], [-77.35510786338628, 34.68311116126036], [-77.35496113998221, 34.68315923209141], [-77.35477939621468, 34.68321177062492], [-77.35452127921862, 34.68327847835271], [-77.35464034981598, 34.68306770948752], [-77.35450003425072, 34.68290063142083], [-77.35439202744146, 34.6826546839265], [-77.35438112423334, 34.682615924438885], [-77.35437948989276, 34.682599213890406], [-77.35436392482802, 34.68258119268393], [-77.35394197290199, 34.68214756985028], [-77.35400471365644, 34.68175683142292], [-77.35399150262643, 34.68169466142491], [-77.35400339943367, 34.68167187414814], [-77.35387480484704, 34.68141087296043], [-77.35372509979544, 34.68124386077536], [-77.35360173007926, 34.681083279339354], [-77.35347054480795, 34.68093363626267], [-77.35335749338117, 34.68080695739318], [-77.35317095662003, 34.6805054772027], [-77.35299773709274, 34.68050916145663], [-77.35304176397045, 34.680362929735686], [-77.35294468330213, 34.68015580323439], [-77.35295085295921, 34.68013172204208], [-77.35287539359493, 34.680033515315685], [-77.35278069721178, 34.679911395642684], [-77.35276901121571, 34.67989682279529], [-77.35275051267335, 34.67989211326278], [-77.35270738109054, 34.67988455200475], [-77.35246443252677, 34.67984674151789], [-77.35232471258237, 34.6798446020112], [-77.3521688181045, 34.679834211113764], [-77.3517354188138, 34.67990397890778], [-77.3515539196308, 34.67989067903005], [-77.35133902570371, 34.67981488440806], [-77.35111570920473, 34.67974987757707], [-77.35099877882365, 34.679741312311805], [-77.35064452316212, 34.67996101803827], [-77.35087587054952, 34.68016465529243], [-77.35089348239698, 34.680157804810825], [-77.35088729277068, 34.680171376913414], [-77.35116897521213, 34.680339954224266], [-77.35108967010841, 34.68063097223572], [-77.35126301031701, 34.68089269784272], [-77.35132476068722, 34.68100843030267], [-77.35139568380391, 34.68107633820738], [-77.3517293869161, 34.681347837158974], [-77.35197309959511, 34.68129780502731], [-77.3519409192404, 34.68148885678408], [-77.35219875470588, 34.681792689010415], [-77.35228794740861, 34.68184386104713], [-77.3523467407165, 34.681920516667155], [-77.35258763168585, 34.682331482739926], [-77.35261308810209, 34.68237132749621], [-77.35260742580196, 34.68238635435162], [-77.35254470160808, 34.682868099392124], [-77.35217984339988, 34.683246492425155], [-77.35203389759582, 34.683425621683796], [-77.35163915149629, 34.68391997635906], [-77.35219662665857, 34.68386162591108], [-77.35221431591084, 34.68388823224943], [-77.35245863533686, 34.68407764520369], [-77.35272105191953, 34.68411688697445], [-77.35312379705385, 34.684354088160916], [-77.35355208235339, 34.68467930568118], [-77.35344804679463, 34.684892917742445], [-77.35325785771394, 34.68520709169526], [-77.35309459788058, 34.68533403651868], [-77.3528778220528, 34.68563856138726], [-77.35282268938914, 34.68573124703772], [-77.35275689930917, 34.685763263074215], [-77.35238821915758, 34.68598433887854], [-77.35213625188166, 34.68613119434066], [-77.35186795745712, 34.68616137232684], [-77.35174762843147, 34.68638922405293], [-77.3516935542538, 34.686637442516954], [-77.35169395318628, 34.68664028540336], [-77.35169270053852, 34.686644275209325], [-77.35168471625254, 34.686644244420386], [-77.35138357120306, 34.68666205978465], [-77.35117740203506, 34.6868257109055], [-77.351145265513, 34.68695930993951], [-77.35116723803013, 34.68704250265191], [-77.35104630952466, 34.6873477721478], [-77.35088094981391, 34.68748298103499], [-77.35083636801838, 34.68751595423377], [-77.35071517276589, 34.687505740735624], [-77.35056867904346, 34.68750315515076], [-77.35054152975154, 34.687500654116015], [-77.35050089317181, 34.687502509221936], [-77.35038255901314, 34.687532788207605], [-77.35036269060957, 34.68755413280269], [-77.35029484038033, 34.68763897249958], [-77.35017214654758, 34.68774208749225], [-77.35010925481143, 34.68779358175117], [-77.34987763136763, 34.68786441515701], [-77.34982970395389, 34.68789073049303], [-77.34981647772258, 34.687884947287806], [-77.34958184611608, 34.6879642843073], [-77.34950390597587, 34.68798204578148], [-77.34940056891254, 34.68805175216477], [-77.34938979277103, 34.68811316022496], [-77.34937147556106, 34.688177591323885], [-77.34935822390683, 34.688404319409216], [-77.34904280152816, 34.688539329274285], [-77.3488093050315, 34.68855595298972], [-77.34867213638961, 34.68856850522204], [-77.34855969298827, 34.68853271917884], [-77.34846221049129, 34.68853296485917], [-77.34845135607564, 34.688514787788876], [-77.34831349755643, 34.68845031708501], [-77.34824133264377, 34.688332729857905], [-77.34831155630478, 34.68811465077975], [-77.34830431703743, 34.688080394107274], [-77.34829827698854, 34.6880678508113], [-77.34829705602965, 34.68801549903717], [-77.34813114103892, 34.687860475458365], [-77.34806947678945, 34.687849745934976], [-77.3480915806521, 34.687692449060606], [-77.34793972834875, 34.68755541460594], [-77.34801588196342, 34.68738891609955], [-77.34807558259178, 34.687267129980945], [-77.34799860858254, 34.68711592580249], [-77.34806103484193, 34.68689533780399], [-77.34805844098238, 34.68677593329229], [-77.34802332539563, 34.68670272637308], [-77.34803484559929, 34.686655242531224], [-77.3480365986131, 34.686594260857575], [-77.34803650534329, 34.68659403904824], [-77.3480362009485, 34.68659390827763], [-77.34796434669036, 34.68658464969643], [-77.34790193968155, 34.686599051183435], [-77.34780524727472, 34.68661722520846], [-77.34754092226581, 34.686679786587085], [-77.34742006731652, 34.68668593255171], [-77.3471732119994, 34.68673249814245], [-77.34689035436097, 34.68678625445592], [-77.3466555176539, 34.686600883411224], [-77.3466251888705, 34.68659613843198], [-77.3466134616431, 34.686598849385135], [-77.3466029067468, 34.6865997150855], [-77.34631571644611, 34.686593560549454], [-77.34609478549089, 34.68661013132819], [-77.34600821703357, 34.68662185865801], [-77.34588720744608, 34.686603452451365], [-77.34542140898374, 34.68677026745092], [-77.34537865310119, 34.68679085691243], [-77.34535574156482, 34.686807494503796], [-77.3448157809386, 34.6869300981522], [-77.34471830767825, 34.686941324587046], [-77.34466628508642, 34.686921055440514], [-77.34457384077616, 34.68688659023256], [-77.34419158804846, 34.68669394058577], [-77.34365587178881, 34.687012568267036], [-77.34357057667502, 34.687102654601944], [-77.34364879836392, 34.687309846710356], [-77.34371858903803, 34.687491339432256], [-77.34376532113178, 34.68761434616371], [-77.34435270752414, 34.687891694938926], [-77.34434869204944, 34.68795377652684], [-77.34439790136219, 34.68804453624054], [-77.34483482587989, 34.688223640622965], [-77.34500782260096, 34.68823490974045], [-77.34554268454474, 34.68822484942096], [-77.3459946148105, 34.687975325847454], [-77.34633674408789, 34.68800062513326], [-77.34662202751689, 34.68853161390939], [-77.34663586045652, 34.68855310041643], [-77.34663870545371, 34.68855660570704], [-77.34664001032833, 34.688568587963545], [-77.34699383648622, 34.6890716711909], [-77.34709279670133, 34.68907061474776], [-77.3472797465716, 34.689245831529355], [-77.34734095293605, 34.68924669336755], [-77.34754400705944, 34.68940320954805], [-77.3475786263421, 34.68941001104888], [-77.3475903835385, 34.689418386429026], [-77.34776631150193, 34.689616385593915], [-77.34747254535961, 34.689824167610105], [-77.34728539270425, 34.689758075598185], [-77.34706845843337, 34.68980259911179], [-77.34688066252517, 34.68980109232659], [-77.34666878879924, 34.689849701223224], [-77.34669293393989, 34.69000740560795], [-77.34649620992349, 34.6902429522868], [-77.34639971574421, 34.69053502898718], [-77.3461698728515, 34.69068398730069], [-77.3460251659277, 34.69068572171453], [-77.34593007829206, 34.69067859382591], [-77.34547224015158, 34.690703774126085], [-77.34541152459491, 34.69073753773733], [-77.34521289112267, 34.69083629242131], [-77.345143013094, 34.69070750640798], [-77.3449074902513, 34.69067712459065], [-77.34484865748733, 34.69061452623558], [-77.34453576944168, 34.69051179337058], [-77.34459501423547, 34.69078271244706], [-77.34405423579398, 34.6912887596502], [-77.34399100072451, 34.69130543985052], [-77.34386503538398, 34.691370266995506], [-77.34336485552276, 34.691601302710815], [-77.34295918824705, 34.691667254997185], [-77.34255467426118, 34.69203745421436], [-77.34213269740147, 34.69221112276847], [-77.34198423278325, 34.69223273410925], [-77.34178754102771, 34.692289446339686], [-77.34160787785983, 34.69238412935761], [-77.34153876189012, 34.69248086143314], [-77.34139709597717, 34.692683665376435], [-77.34136004526155, 34.692802732501036], [-77.34118202521647, 34.69293361800456], [-77.34097142749428, 34.693096507170566], [-77.34066767435817, 34.693151080603414], [-77.3405124740817, 34.69317780116897], [-77.34040591879837, 34.69323343763389], [-77.34032344582026, 34.69331333810792], [-77.34032045986578, 34.69331875732061], [-77.34031999052392, 34.69332523239787], [-77.34034983535805, 34.693395623766094], [-77.34032540040597, 34.69348122186838], [-77.34034095496803, 34.69355963339069], [-77.34029231230963, 34.69377106182559], [-77.34028987433692, 34.693810329371466], [-77.34027605700308, 34.69399162827066], [-77.34036199435253, 34.69417457449875], [-77.34033217255916, 34.694291902197335], [-77.3402597154744, 34.69438051622344], [-77.34023869737086, 34.69446651350622], [-77.34027737506985, 34.69454310808459], [-77.34031036891075, 34.69460844718322], [-77.34040922193171, 34.69476870706567], [-77.34036332090406, 34.69496185903702], [-77.34052988385167, 34.69523952754493], [-77.34016498596569, 34.6955732363941], [-77.33971073032123, 34.69593761193261], [-77.33939726059091, 34.6957051121539], [-77.33916643927338, 34.69575053816838], [-77.3388001933399, 34.69563983878761], [-77.33857394878225, 34.69572936884348], [-77.33844818024099, 34.69564698836328], [-77.33841420087995, 34.69552977197746], [-77.33806473164648, 34.695421580033326], [-77.33767187151246, 34.69545593914869], [-77.33746829974973, 34.69541397872767], [-77.33698085493879, 34.695199271638614], [-77.33694250908725, 34.695163247699035], [-77.3367926550328, 34.69513649659731], [-77.33633930593473, 34.69517895023565], [-77.33611545407965, 34.69507675687971], [-77.33526051612617, 34.69505466495799], [-77.33517907936097, 34.69505142156046], [-77.33510198418796, 34.695068148418216], [-77.33493954541682, 34.69503161787072], [-77.33418378004856, 34.69498624370397], [-77.3340060363526, 34.69496799345832], [-77.33374944365876, 34.69499149288954], [-77.3329811414286, 34.69530019377781], [-77.33278359085917, 34.695411801998006], [-77.33267501088613, 34.69542820152593], [-77.33223266359866, 34.695890203533864], [-77.3320276998717, 34.69601830698862], [-77.33187011349317, 34.69613790012391], [-77.33138017990055, 34.696494467895434], [-77.33133490425809, 34.69668076982922], [-77.33110232451111, 34.696719863311735], [-77.33092335802473, 34.69670606630369], [-77.33070212367306, 34.696758037774984], [-77.33044222698433, 34.69693124954414], [-77.33025334708252, 34.696998481067666], [-77.32970608812727, 34.697404246930226], [-77.32956142776185, 34.69766173251577], [-77.32939404295678, 34.697741523129466], [-77.32886288696045, 34.69824555834305], [-77.32874903874932, 34.69821815406886], [-77.3285501114402, 34.69834459104832], [-77.32819551005427, 34.69848191346362], [-77.3277463494866, 34.698605813816485], [-77.32756589634388, 34.69858833726923], [-77.32748490249102, 34.698562633763316], [-77.32710895640528, 34.69867898995759], [-77.32689934836995, 34.69882181039006], [-77.32665166398203, 34.6986048352759], [-77.32648183475544, 34.698545917722896], [-77.32638266645031, 34.698539721539305], [-77.32617546789872, 34.698489566044], [-77.3260131779565, 34.69851227088115], [-77.32600892889303, 34.69844925257329], [-77.32583623427652, 34.698359982764934], [-77.32565103137598, 34.698396702647855], [-77.3253205424144, 34.698369808040425], [-77.32519685013361, 34.698499993481335], [-77.32498409400738, 34.69870987774376], [-77.32478291029764, 34.699064383231224], [-77.32455094103068, 34.699380138696995], [-77.32490991395427, 34.699487009747614], [-77.32534225969223, 34.699422387052714], [-77.32549329584435, 34.699539667972566], [-77.32634751591803, 34.69943743248875], [-77.32631925575981, 34.70011250244861], [-77.32648672796655, 34.70024125479118], [-77.3268726672093, 34.7006099574195], [-77.32729676266878, 34.70095324836104], [-77.3274444997317, 34.70106556605131], [-77.3276687334824, 34.701090756925474], [-77.3280216593021, 34.701139661648355], [-77.32824135183373, 34.70113370092571], [-77.32862511469357, 34.70112328907402], [-77.32917432185896, 34.70114903561996], [-77.32985973972686, 34.70099518362993], [-77.33112613638687, 34.700491302222055], [-77.3312130106801, 34.700458825891516], [-77.33125872596268, 34.7004437300089], [-77.33156366476939, 34.70036827469145], [-77.33238448425942, 34.70016516819531], [-77.33229814409913, 34.699589794065844], [-77.33205341606248, 34.69962710851796], [-77.33181815781143, 34.699662977817596], [-77.331240181435, 34.70036533912317], [-77.33107556428719, 34.69974195785051], [-77.33083733329332, 34.699493121437314], [-77.33067156856085, 34.69926446577651], [-77.33073520223572, 34.69870264154723], [-77.33098910681997, 34.69849757101309], [-77.331225853859, 34.697860901375], [-77.3320022559368, 34.6977431651231], [-77.3328059814717, 34.697622641513114], [-77.33330247546587, 34.6973891124215], [-77.33347418003213, 34.69730101239118], [-77.3339739871458, 34.69713841760688], [-77.33446200485788, 34.69713700793384], [-77.33458448487707, 34.697097673446], [-77.33470750972849, 34.69711786469523], [-77.33557531788465, 34.69706883306732], [-77.33576016346314, 34.697172125498135], [-77.33675521516417, 34.69765682203081], [-77.33681566867578, 34.69766017348162], [-77.33685998518825, 34.697657106703744], [-77.33685050516938, 34.6976937609247], [-77.336938711819, 34.69781952613561], [-77.33735147966878, 34.698599792423664], [-77.33739404592039, 34.698822821049056], [-77.33770987835274, 34.69870339470701], [-77.33782481723813, 34.69860521614724], [-77.33800671222794, 34.698509916111156], [-77.33921891705889, 34.69763047909392], [-77.33944420255129, 34.697487587981925], [-77.34032190841991, 34.697217564917814], [-77.34047117662722, 34.6971214312485], [-77.34056161301413, 34.69713001005895], [-77.34063510512657, 34.69711768074013], [-77.34156674864099, 34.696816094296125], [-77.34192294892594, 34.696565296731464], [-77.34229698224786, 34.69618684347134], [-77.34261418418123, 34.69592830789857], [-77.34278808572826, 34.695461209702756], [-77.34282254062668, 34.69537613158094], [-77.34287942248778, 34.695333419958075], [-77.34349404150231, 34.69483282174194], [-77.34359674198184, 34.694785875757105], [-77.34366554652499, 34.69468792120883], [-77.34373521372626, 34.69455603888107], [-77.34379596688345, 34.694324177800944], [-77.34380440220146, 34.69430285558628], [-77.34379029577458, 34.6942584329078], [-77.34361506050473, 34.694036592214104], [-77.34343167218319, 34.6940011885803], [-77.34324527714233, 34.694073890334025], [-77.34294175049962, 34.6942051484939], [-77.34256383095928, 34.694359024960505], [-77.34227528031741, 34.69402529983883], [-77.34239093761552, 34.69371677910006], [-77.3427452367483, 34.69373450774174], [-77.34320328811381, 34.69356509487638], [-77.34337468727985, 34.69362836099461], [-77.34355778226706, 34.69347466581348], [-77.34404278170584, 34.69338915614024], [-77.34446484829314, 34.69338272812006], [-77.34466054311639, 34.69332323467404], [-77.34486826983455, 34.69335990281154], [-77.34501163315109, 34.69335617027461], [-77.34507827948804, 34.693396973606696], [-77.34523523781166, 34.69340558645748], [-77.34548506007657, 34.69334114791823], [-77.34553709033538, 34.69331455444212], [-77.34560246410602, 34.69329571646878], [-77.34591787763658, 34.69311626433668], [-77.34600200624698, 34.693088424840674], [-77.3464887312999, 34.69300792570549], [-77.34654831240168, 34.693006679358454], [-77.34693241253616, 34.69306069139712], [-77.34701558797876, 34.69337477860537], [-77.34702597539503, 34.693423133713075], [-77.34710310480304, 34.69371769824518], [-77.34709423559089, 34.6938513637747], [-77.34718390295333, 34.69390994805708], [-77.34727707536291, 34.69397800665598], [-77.34741655741712, 34.694023363984236], [-77.3475018265716, 34.69380506232436], [-77.34749720272349, 34.693796054841535], [-77.34750684859004, 34.693784258602385], [-77.34753970798548, 34.69338173459426], [-77.34717852360684, 34.69335241493995], [-77.34755396061128, 34.69318771965635], [-77.34779421408962, 34.69283902199374], [-77.3478212442755, 34.692786377459534], [-77.3478393029775, 34.69277433845379], [-77.34782626656268, 34.692728649856605], [-77.34774618416861, 34.692434493080015], [-77.34728334444179, 34.69253691418735], [-77.34711748701895, 34.69252410239231], [-77.34698693245086, 34.69252696450464], [-77.34673603259333, 34.69246257113899], [-77.34668973313954, 34.69251972451953], [-77.34669490436647, 34.692455103336904], [-77.34668577740545, 34.69244528628211], [-77.34669415064197, 34.692425439376485], [-77.34672489501519, 34.69239865078201], [-77.34696622625471, 34.692028344983356], [-77.3473459873957, 34.6919540938833], [-77.3474534758146, 34.691951078274975], [-77.34764589201197, 34.69199261164398], [-77.34778650812626, 34.69200928596116], [-77.34800754242025, 34.69210442378465], [-77.34828090335424, 34.69202301772326], [-77.3491992124214, 34.69209311544387], [-77.34920858941857, 34.69209116044127], [-77.34988444400236, 34.691424012063216], [-77.3505308179286, 34.69094272307252], [-77.35049966303737, 34.69069285176486], [-77.35082627745112, 34.69064298571818], [-77.35145261391114, 34.690261104762946], [-77.35183945050271, 34.689788294218076], [-77.35193722905811, 34.689414171325225], [-77.35189769998135, 34.68929291539704], [-77.3519545668126, 34.68919590575838], [-77.35219530003349, 34.68876467089148], [-77.3523446356667, 34.688498797289625], [-77.35264785066701, 34.68849235383442], [-77.35299956845691, 34.68816685842784], [-77.35313596740899, 34.687923790113345], [-77.35314044602802, 34.68790382324468], [-77.35315610952067, 34.68787698427409], [-77.35323698833176, 34.68764687480983], [-77.35355260081377, 34.687437701228916], [-77.35377891310154, 34.687572460886315], [-77.35389935801837, 34.68769914905749], [-77.35401581814108, 34.68790388707363], [-77.35418911414006, 34.688003516848156], [-77.35417256109042, 34.68827727746372], [-77.3544930053908, 34.68832196754305], [-77.35487315181294, 34.6881872848334], [-77.35516270424162, 34.68807691289314], [-77.35534865796319, 34.687844283309744], [-77.35531703405249, 34.68779063128924], [-77.35541753329869, 34.68739336365486], [-77.35542394794051, 34.687346559197465], [-77.35543285384188, 34.687307284490615], [-77.35555771667987, 34.68687938235428], [-77.35560429010506, 34.68683440767453], [-77.3558118214637, 34.686466392133745], [-77.35606824534358, 34.68628330523143], [-77.35612301021699, 34.68598767125433], [-77.35627637946286, 34.68576733530743], [-77.35633685575353, 34.68565533305261], [-77.35650333057802, 34.68552053006229], [-77.3567942579811, 34.68547101273073], [-77.35681952970398, 34.68546220324319], [-77.35684683754972, 34.685469180778945], [-77.35712465033615, 34.68544203949994], [-77.35729644816233, 34.68547868009415], [-77.35749728286521, 34.68540754546858], [-77.35780688351824, 34.68515368016528], [-77.3580390129416, 34.6850378561955], [-77.35828960898196, 34.68483344623293], [-77.35854193198432, 34.68468333172981], [-77.35885696920693, 34.68467171003775], [-77.35919903070726, 34.684481525667564], [-77.3593124667406, 34.68446370778944], [-77.3598639829782, 34.68425264180576], [-77.36035035898863, 34.68410729685358], [-77.36071335828083, 34.68403116708468], [-77.36112061951788, 34.68404729515635], [-77.36146406778848, 34.683818091182374], [-77.36182225702436, 34.683691960090236], [-77.36211042578944, 34.68350377724234], [-77.36235120565246, 34.68332804881129], [-77.36257601420024, 34.68315699198646], [-77.36273662893024, 34.68303148852778], [-77.36295465731635, 34.682900394793336], [-77.36312325826802, 34.68273599769786], [-77.36335552157098, 34.68253324649588], [-77.36387558538306, 34.68238530231013], [-77.36361343318217, 34.68280987754104], [-77.36380355764467, 34.683051794168705], [-77.36390660832664, 34.68314988568466], [-77.36410922950449, 34.68322914132904], [-77.36432157822527, 34.68332917338857], [-77.36490507147127, 34.683169693160025], [-77.36496801763381, 34.683163981994234], [-77.36504456784411, 34.68316263356944], [-77.36570028915273, 34.683345963406914], [-77.3661088775725, 34.683357506265985], [-77.36622484469046, 34.68342580912629], [-77.36636489769398, 34.6836227836217], [-77.36678741469935, 34.68383588591616], [-77.36691779387334, 34.683985608468085], [-77.36712969721789, 34.68396477853069], [-77.36745343099355, 34.68402135030876], [-77.36774021028889, 34.684140935525164], [-77.3677908286294, 34.68418537476159], [-77.36819471838145, 34.684419739126966], [-77.36830666761784, 34.68449331952585], [-77.3683292443036, 34.684598766401166], [-77.36852716534656, 34.68497299983618], [-77.368562650184, 34.68505407869199], [-77.36856216831158, 34.68508510967844], [-77.36862341568111, 34.68553311762527], [-77.36873548245582, 34.68574017471251], [-77.36887035560288, 34.68598657069806], [-77.36891734683019, 34.68605493567651], [-77.3691014708691, 34.6862469052455], [-77.36926595178076, 34.686419588222826], [-77.36957634366895, 34.68666980860727], [-77.36987168156875, 34.68689153996395], [-77.37025633243175, 34.68725824388998], [-77.37045670626559, 34.687569038521474], [-77.37054799610759, 34.68770554712384], [-77.3707113194539, 34.68812358053479], [-77.37072271662062, 34.68815275191621], [-77.37073138093774, 34.688167733012065], [-77.37080737181911, 34.688270121445896], [-77.37108751164067, 34.688660411484605], [-77.37114911323322, 34.68867766805111], [-77.37125736103317, 34.688668900958916], [-77.37171236011596, 34.68879931070012], [-77.37187926873489, 34.68883935316974], [-77.37224389641959, 34.68890501492169], [-77.37227798269451, 34.688912767066654], [-77.37229437139129, 34.68891402214603], [-77.37230676144347, 34.68892596087997], [-77.3722987192104, 34.68895359726182], [-77.37235589327179, 34.689162903776754], [-77.37237349517837, 34.68924736611291], [-77.37241362395528, 34.689398664286976], [-77.37237244132828, 34.68965705763811], [-77.3722593405639, 34.68990726798164], [-77.3720592307375, 34.69027784528381], [-77.37201112737473, 34.690428783637806], [-77.37203048419718, 34.69063029325822], [-77.3720812740322, 34.69090653480633], [-77.37209512239022, 34.69103873788643], [-77.37206002138049, 34.69129460061098], [-77.37198922412495, 34.69140658267029], [-77.37180206429986, 34.691704145339436], [-77.37145955436324, 34.69196678525985], [-77.37141960346027, 34.69234733184346], [-77.37140677886643, 34.69246143478347], [-77.3715744105309, 34.69262241126421], [-77.37162861342117, 34.69282671223414], [-77.37165713469149, 34.69291441477385], [-77.37163530751798, 34.692969789316635], [-77.3714985901481, 34.69334962901744], [-77.37114975179705, 34.69347155226865], [-77.37104858245796, 34.69358899809098], [-77.37079691711028, 34.694007443008054], [-77.37108849581567, 34.69417927874476], [-77.37114133223542, 34.694894243091106], [-77.37114862507532, 34.6949215086293], [-77.37114630291111, 34.69493420700639], [-77.37114578428056, 34.69495140659423], [-77.37121025812996, 34.69590020168403], [-77.37108459483079, 34.69617345870395], [-77.37114476593345, 34.696501518301964], [-77.37123105778619, 34.6966482399819], [-77.37130046864428, 34.696775913910116], [-77.37140257495756, 34.696848554963466], [-77.37156472763783, 34.69696673783233], [-77.37167487580605, 34.69718173623796], [-77.37182528336187, 34.69727784491238], [-77.37196314596088, 34.697448545605866], [-77.37212466172957, 34.69769467945914], [-77.37215990268484, 34.69771924272229], [-77.37256528172256, 34.697773522958066], [-77.3726242215582, 34.69803606389309], [-77.37282009827202, 34.69836588114113], [-77.37287259656391, 34.69859606113215], [-77.37342511831481, 34.698688645180084], [-77.37361997608286, 34.69873047555496], [-77.37376483032301, 34.69882138659207], [-77.37394897941009, 34.69893548756392], [-77.3740468584531, 34.69899853524367], [-77.374117776557, 34.69907796317247], [-77.37436565873315, 34.69936559963072], [-77.37446954429004, 34.69946166881287], [-77.37457536605814, 34.69956408243088], [-77.37468759406501, 34.69968807300986], [-77.37475821346521, 34.69979902733824], [-77.37485601307066, 34.69995268665445], [-77.37499950545046, 34.7001655331912], [-77.37503152881666, 34.700211837431915], [-77.37505147617071, 34.700246105304856], [-77.37521666988702, 34.7004487028239], [-77.37522621752436, 34.70045622820512], [-77.37525445904588, 34.70050625859025], [-77.37536945408381, 34.70068978449142], [-77.3753920748186, 34.70072281551071], [-77.3754248607289, 34.70076281204306], [-77.37556891503073, 34.7009809480257], [-77.37569520746412, 34.70113239404969], [-77.37585848338472, 34.70133160914209], [-77.37594488968293, 34.70148005138857], [-77.37602724581255, 34.70157413913944], [-77.37611276370181, 34.701745088582314], [-77.3761301540915, 34.70180368881286], [-77.37618074187907, 34.70196501240091], [-77.37620243944046, 34.70203744842931], [-77.37620770638452, 34.7020662735718], [-77.37623083884792, 34.70211164350982], [-77.37634507694324, 34.702354795383094], [-77.37641146807142, 34.702496105109375], [-77.37649194689, 34.70263600452959], [-77.37653868124598, 34.702722312975155], [-77.37662137431985, 34.702829025951715], [-77.37667090025582, 34.70289251461553], [-77.37671057111228, 34.70294237776939], [-77.37684031040109, 34.70310612830278], [-77.376883295265, 34.70312327925184], [-77.37705886064923, 34.70338105870768], [-77.37705945414557, 34.70338180531052], [-77.37705952470016, 34.70338188743555], [-77.3770596099322, 34.70338198241575], [-77.37726472314962, 34.70361819350645], [-77.37744408269529, 34.70381631697819], [-77.37747495472642, 34.70385062527439], [-77.37751081585479, 34.70389024047112], [-77.37784352676252, 34.70396115423716], [-77.37779677829838, 34.704255218614875], [-77.37780689589617, 34.704383640855646], [-77.37782447015661, 34.704697399277926], [-77.37781543132739, 34.704740051076946], [-77.37768483775201, 34.7048718928488], [-77.3777503372322, 34.70512832658784], [-77.37776976026507, 34.70521918733183], [-77.37818475379912, 34.70525664336935], [-77.37835516680963, 34.70525319328779], [-77.37867913955296, 34.70528649318676], [-77.37898730956279, 34.70528389218073], [-77.37910090408236, 34.70525872397381], [-77.37957890900886, 34.70545437858783], [-77.38014789951302, 34.70556695341149], [-77.38018675967781, 34.70556883584534], [-77.38021812456516, 34.705589839549354], [-77.38073839199708, 34.705877137435465], [-77.38107488399274, 34.70607319337978], [-77.38127552563216, 34.70623544339152], [-77.3814765464903, 34.706352081892184], [-77.38163903733415, 34.70641788369528], [-77.3818439991601, 34.70648569739472], [-77.38206223199371, 34.706554273068534], [-77.38239869373622, 34.70678347117686], [-77.38306985277819, 34.70702689713802], [-77.38445826634421, 34.708159966213124], [-77.38451005678239, 34.70821181321625], [-77.38454434478072, 34.70822686671834], [-77.38457571574018, 34.70822898040101], [-77.38461667518852, 34.70821542004579], [-77.38521822537282, 34.70811367398873], [-77.3853809385811, 34.70804946685356], [-77.3856007353393, 34.70800071649776], [-77.38590309201386, 34.70796258295918], [-77.38635643766972, 34.70814854892595], [-77.38662964750219, 34.70822095488986], [-77.38703910751998, 34.708466435570685], [-77.3875284488595, 34.708569130614], [-77.38787218347619, 34.70859564182601], [-77.38826685668434, 34.7086539303619], [-77.38845507319603, 34.7085882222681], [-77.38878497645854, 34.70855613727251], [-77.38960326641647, 34.70846662792783], [-77.38979431699407, 34.70868703662454], [-77.39010374228289, 34.70895152443364], [-77.39013467323726, 34.70899146690082], [-77.39018780819788, 34.709047144399534], [-77.39048616955859, 34.70929125223304], [-77.39062958497401, 34.70934893578354], [-77.39075179200742, 34.70935187767413], [-77.39094050280526, 34.70938208582739], [-77.39124129191795, 34.709415860096236], [-77.39124783685754, 34.70941495349227], [-77.39125191055498, 34.70941354546926], [-77.39165125442825, 34.70932649636375], [-77.39191994795257, 34.709320465679234], [-77.3921695099356, 34.70942590283914], [-77.39227845544391, 34.709436741580454], [-77.3925259873611, 34.709441252171956], [-77.39268876927501, 34.70952694552999], [-77.39296522159952, 34.709596760458844], [-77.3931116820196, 34.70963222626774], [-77.39322024249822, 34.70964796406811], [-77.39362192028499, 34.70976931095999], [-77.3937137070111, 34.70976686836842], [-77.39375077587906, 34.70976744049716], [-77.39434507868994, 34.70980026623703], [-77.39485755244621, 34.7100811488109], [-77.3948984113295, 34.71010290532967], [-77.39491005316837, 34.710124936732555], [-77.39492987960249, 34.710147599375816], [-77.39524776196328, 34.71043046454872], [-77.39539495901897, 34.710601466278916], [-77.39553021150444, 34.71075902976894], [-77.39566519581979, 34.710964071752414], [-77.39578068382033, 34.71110092635321], [-77.39585833973396, 34.71121447742142], [-77.39600868029831, 34.71145219328249], [-77.39621825454566, 34.711716757000225], [-77.39626563727467, 34.711791387010514], [-77.39629898136035, 34.71190596487888], [-77.3964485087313, 34.71216146699559], [-77.39656649237101, 34.71239776380685], [-77.39668602928661, 34.712782386908856], [-77.3967705717342, 34.712919837807014], [-77.39678092784843, 34.71303194751815], [-77.39689761207147, 34.71341800084116], [-77.39690874140825, 34.713635819079094], [-77.39698706171167, 34.71372222360714], [-77.39704816505468, 34.713744790736705], [-77.39713848095894, 34.71381196168314], [-77.39737910395269, 34.71400510283058], [-77.39753179172348, 34.7142880454368], [-77.39756507910275, 34.71437389107462], [-77.39758887356265, 34.71443295038634], [-77.39772772483585, 34.71471798228274], [-77.39774184721936, 34.71474651810275], [-77.39775149820893, 34.714769425748855], [-77.39780752884354, 34.71490621729028], [-77.39788554203605, 34.715095899812574], [-77.3979000208764, 34.715126897416376], [-77.39791896051504, 34.71516413322746], [-77.39806299029452, 34.715505277673536], [-77.39818497121577, 34.71575981222284], [-77.39824519047261, 34.71587564104822], [-77.39830226164399, 34.71605359334877], [-77.39838955797104, 34.716261777203414], [-77.39841879691627, 34.71640076867095], [-77.39845670055823, 34.71662672874503], [-77.39846773344328, 34.716675509220096], [-77.39847150547217, 34.71669878195043], [-77.39848580646245, 34.71676382500484], [-77.39853809728103, 34.71700165221308], [-77.3985679185075, 34.71708006553769], [-77.39862036469725, 34.71716804090007], [-77.39866022548392, 34.71726474487912], [-77.39871188164224, 34.717342027208005], [-77.39878160650252, 34.717437303206275], [-77.3989558852139, 34.71770696893194], [-77.39901385677908, 34.7177868026353], [-77.39906082970701, 34.717860321610104], [-77.39913681946337, 34.71804984357759], [-77.3991080032099, 34.718193877584596], [-77.3991501863387, 34.71833409007358], [-77.39905738639447, 34.71844688202813], [-77.3989536963344, 34.71870453194386], [-77.39891649601087, 34.71881146955744], [-77.39887555949707, 34.718897807150725], [-77.39867648360715, 34.719186454776676], [-77.39863472331356, 34.71925223256781], [-77.39862127579559, 34.71926732176248], [-77.39856117514164, 34.71931449410847], [-77.39819761497463, 34.71967823621712], [-77.39811318196911, 34.719895888346485], [-77.39787646995667, 34.720125019069215], [-77.39772419169391, 34.720260061957745], [-77.3974772883602, 34.72035254494653], [-77.39706381960141, 34.72032645871036], [-77.39698734925213, 34.7202995977125], [-77.39690464145221, 34.72034414204076], [-77.3969725290215, 34.72042308551781], [-77.39699560472204, 34.72056180112232], [-77.39716519495293, 34.7207890896651], [-77.39697277235668, 34.72102406770287], [-77.39683578135501, 34.72111319009279], [-77.39667214331665, 34.72128072678586], [-77.39658172032829, 34.721349449629], [-77.39636238884853, 34.721522462261596], [-77.3960702251522, 34.72154242499938], [-77.39591924457807, 34.721546051909314], [-77.39556291599258, 34.7215521328893], [-77.39546927582676, 34.72155847823681], [-77.3954257013037, 34.7215540997273], [-77.39531179739444, 34.72156168803914], [-77.39501641948374, 34.721566180322334], [-77.39472885367718, 34.72174626691368], [-77.39467363480715, 34.721753902460065], [-77.39463676673614, 34.72178722958575], [-77.39417346748594, 34.72203618523292], [-77.3939946719756, 34.72214015752153], [-77.39331565017432, 34.72244327383431], [-77.39327926545283, 34.72246681435134], [-77.39320602636307, 34.72257597984352], [-77.39208348718071, 34.723130437473884], [-77.39187282038965, 34.723159999900005], [-77.39167570297045, 34.72354690662743], [-77.39163579210161, 34.723569081601376], [-77.39136880507542, 34.72383242285598], [-77.39100104676987, 34.72386999036732], [-77.39090767941647, 34.72386896878349], [-77.39044213098703, 34.72381355558504], [-77.39028320050963, 34.7238114127769], [-77.38999009095986, 34.723779834252525], [-77.38936621385056, 34.72355057113814], [-77.38909047043065, 34.723502384373276], [-77.38881443123844, 34.72337720754312], [-77.38808909309878, 34.72295845473061], [-77.38798806410587, 34.72288188932917], [-77.3879538278188, 34.72284327132922], [-77.3878946755645, 34.7227829461523], [-77.38747901851582, 34.72242627690497], [-77.38730794511062, 34.722219845989756], [-77.38714054134986, 34.7219598566277], [-77.38702582547911, 34.72177807710604], [-77.38686556695626, 34.7215116092781], [-77.38680129798337, 34.72144685127366], [-77.38672956857991, 34.72134513761162], [-77.38661147190768, 34.721289850783734], [-77.38652266233072, 34.721302217833994], [-77.3862126228294, 34.72135552235625], [-77.38620249591226, 34.721369303542076], [-77.38588303393435, 34.72151975895255], [-77.38581253856732, 34.72154004038654], [-77.38529540378437, 34.72138238656444], [-77.38513159886828, 34.72134164038547], [-77.38510230764692, 34.72106650277253], [-77.38496156190384, 34.72063807685588], [-77.38490043927521, 34.720545381542074], [-77.38483869474322, 34.72047637953768], [-77.38473934894054, 34.72047273766146], [-77.38442457158294, 34.7204501302932], [-77.38417719326351, 34.72054654434184], [-77.38392712070294, 34.7206409883318], [-77.38358498025778, 34.72071544786289], [-77.38347977364904, 34.72074054614333], [-77.3832472631851, 34.72102579445944], [-77.383073772627, 34.72103507504676], [-77.38302715013407, 34.72107938248615], [-77.38290761802674, 34.721218664166095], [-77.38263830867791, 34.721431174910585], [-77.38260311266428, 34.72146902406261], [-77.38258803004837, 34.72148486665819], [-77.38253480753724, 34.72153120268336], [-77.38230580789373, 34.72173116588245], [-77.38190234783143, 34.721804049490295], [-77.38189768323821, 34.721812009098564], [-77.38188754005313, 34.72180905947614], [-77.38187284325839, 34.72180704852655], [-77.38124752717184, 34.72180507658345], [-77.38096165495637, 34.721777730635736], [-77.38059770925273, 34.7218348910712], [-77.3800818702237, 34.72183546568287], [-77.37995366902564, 34.721844786220466], [-77.37937922726299, 34.72195353988675], [-77.37927295159848, 34.72198111157047], [-77.37925555281082, 34.72198067576223], [-77.3792295192451, 34.72198684718282], [-77.37847935808206, 34.72220789154139], [-77.37796980771115, 34.72205279188041], [-77.37793204247987, 34.72206099587719], [-77.37786023980317, 34.722066721711], [-77.3777139077149, 34.72207839086886], [-77.37763966804715, 34.72208571551853], [-77.37750434031278, 34.722109802987724], [-77.37732273291981, 34.72215815965509], [-77.37730910105742, 34.722164659250474], [-77.37729251342721, 34.72217728730738], [-77.37714508553748, 34.72227060277413], [-77.37704210226242, 34.72233951909713], [-77.37688991940601, 34.72260171175097], [-77.37658605429286, 34.72273907027676], [-77.37635181171085, 34.72321494061063], [-77.37635109730654, 34.72321601860484], [-77.3763505199997, 34.72321638301319], [-77.37634975066345, 34.72321679583575], [-77.37602183721664, 34.723427213151496], [-77.37565518989835, 34.723505178593705], [-77.3756233004154, 34.72351066480099], [-77.37561828783574, 34.72351554762653], [-77.37561399296696, 34.7235171801978], [-77.37523872914649, 34.72364313637547], [-77.37512679166586, 34.72372532450624], [-77.37494698972404, 34.72384288033971], [-77.37491760329631, 34.723866336529944], [-77.37486867757885, 34.72390160942029], [-77.37469835107191, 34.72403543865252], [-77.37462122826406, 34.72413003682948], [-77.37447916340096, 34.72423830681514], [-77.37429527427834, 34.7243453412168], [-77.37416243256676, 34.72440702757921], [-77.3740620490929, 34.7244717575956], [-77.37396073377323, 34.72454659784964], [-77.37389154268891, 34.72459179564818], [-77.37373670282368, 34.72492867849535], [-77.37343303748166, 34.72499048521451], [-77.37325605862199, 34.72503966326695], [-77.37299140853325, 34.72520649712776], [-77.37275855435365, 34.72531356276433], [-77.37262569454316, 34.725356752168025], [-77.3725173133529, 34.72537578988489], [-77.37234796884005, 34.72532927770172], [-77.37221404888953, 34.72531602934809], [-77.37211964511664, 34.72527737501311], [-77.37191876061503, 34.7252287820788], [-77.37167942164719, 34.725265461658324], [-77.37151532605466, 34.72510186553015], [-77.37142628784567, 34.725066008336285], [-77.37137422767987, 34.725041799365314], [-77.3710354230417, 34.724972549682406], [-77.37083578671852, 34.724833827215576], [-77.3704197327917, 34.72465785227874], [-77.37034361454681, 34.72446643105488], [-77.37014518525937, 34.7246953026016], [-77.36984711275949, 34.72484371102439], [-77.36967821063587, 34.72491979379066], [-77.36959862955506, 34.724970175143085], [-77.3695401350036, 34.724940511184634], [-77.36904338729113, 34.72499560526038], [-77.36899075886302, 34.72500144214595], [-77.36893417386763, 34.725012579454926], [-77.36844142292483, 34.725100521393074], [-77.36834829417003, 34.72515189766542], [-77.36823587956876, 34.725155698469166], [-77.36781326415706, 34.725182232663656], [-77.36774206981146, 34.72517747872008], [-77.3676881576855, 34.72518294074842], [-77.3675455839544, 34.72515993757202], [-77.36726734592926, 34.72511251854735], [-77.36718423901763, 34.725036322143396], [-77.36698449370463, 34.7250862336858], [-77.3667273365918, 34.72513382107647], [-77.36653770731156, 34.72520076602235], [-77.36641646962929, 34.72522120902309], [-77.36622119818267, 34.72525970539864], [-77.36607534513395, 34.7253619225477], [-77.36596778860277, 34.72546190360929], [-77.36584239634473, 34.72553324837057], [-77.36554529646811, 34.72572579791234], [-77.36516546672613, 34.72580238327078], [-77.36481101215747, 34.72581995287952], [-77.36456668184431, 34.72580229686288], [-77.36408375233324, 34.725707399222564], [-77.36399617607373, 34.72570479041241], [-77.36392796871228, 34.7257109583834], [-77.36390960662533, 34.725659422532246], [-77.36371828575334, 34.7254780655809], [-77.36369743741933, 34.72544487125556], [-77.36350805410954, 34.725323491743445], [-77.36346062490355, 34.72528209067515], [-77.3633878847687, 34.72524369551334], [-77.36337389079561, 34.725078541038684], [-77.36333724104406, 34.72498279352038], [-77.36315364119858, 34.7248834214735], [-77.3630313381903, 34.72490291526549], [-77.36292117093902, 34.72490870979028], [-77.36242064191329, 34.724943868911545], [-77.36206487329709, 34.725195232445394], [-77.36172509656805, 34.72527708091679], [-77.361501980805, 34.72533474096794], [-77.36139523626338, 34.72538198041492], [-77.36124337565396, 34.72553823124924], [-77.3611536624633, 34.725664346681434], [-77.3609587613039, 34.725854097666016], [-77.36030942156948, 34.7261538784862], [-77.36027649414034, 34.72616362305919], [-77.36026989844781, 34.726164239172086], [-77.36025730145582, 34.72616994132516], [-77.3597994618, 34.72637919935045], [-77.35959447294752, 34.72642807707405], [-77.35908010722845, 34.726380089322625], [-77.3590082766998, 34.72638458668214], [-77.35897870488708, 34.72636525120977], [-77.35892815880221, 34.72634355396681], [-77.3587375479024, 34.72628580039657], [-77.358572688555, 34.72628341495661], [-77.35844809007918, 34.72625151755761], [-77.35821276634434, 34.726441785185074], [-77.35816198695893, 34.72659940266045], [-77.3581247390949, 34.72669756489643], [-77.35812216227565, 34.72680780412845], [-77.35801983182334, 34.726955661664434], [-77.35804768463245, 34.72708156393723], [-77.35797551331888, 34.727316091639494], [-77.35778104885864, 34.727475832759], [-77.35760364062921, 34.727624839131366], [-77.35742667182082, 34.72770686151334], [-77.35716358513119, 34.72787318066189], [-77.35697853209533, 34.7279041304635], [-77.35676529125521, 34.72792224281823], [-77.35654622124967, 34.727889064698246], [-77.35649923975294, 34.72787865813616], [-77.35633339205935, 34.72777586623706], [-77.35622481825504, 34.72772125222819], [-77.35617605395811, 34.72773308488384], [-77.35594192976905, 34.72772833546734], [-77.35619315526131, 34.72765161745245], [-77.3561928694339, 34.72732593473434], [-77.35614989283434, 34.727212400782555], [-77.35608342591225, 34.72717707414954], [-77.3560106330709, 34.72707192472873], [-77.35594857345214, 34.72699634771486], [-77.35584916109886, 34.72695271669316], [-77.35553774598995, 34.72704152411963], [-77.35538655947857, 34.72682981241826], [-77.35532079172759, 34.72681422418861], [-77.35530696352289, 34.726757689033846], [-77.35513690871309, 34.72656148215582], [-77.35523996345711, 34.726362554135505], [-77.35521931025507, 34.726150547557815], [-77.35521474021247, 34.726107394296534], [-77.35514938130584, 34.726088588288185], [-77.35508983866958, 34.72620348559742], [-77.35492031022042, 34.726406436725725], [-77.35493457542339, 34.72653649923976], [-77.3549273607037, 34.72672269413826], [-77.35514601305519, 34.72686283527256], [-77.35511101747274, 34.7269756096057], [-77.35524064519745, 34.726986055005234], [-77.35548723826162, 34.727080381478544], [-77.35568418971103, 34.72727633609463], [-77.35559039264393, 34.727395231042124], [-77.3554572682716, 34.72779487255175], [-77.35541709684335, 34.727922764295414], [-77.35526659849502, 34.728107147703255], [-77.35519637587376, 34.72816953212238], [-77.35516459368263, 34.728117021346065], [-77.35493312800054, 34.728044970466655], [-77.35476606617853, 34.72802940606287], [-77.35453552797624, 34.72792140849205], [-77.35438088386275, 34.727884514579955], [-77.35433450964844, 34.72794900345923], [-77.35424803073049, 34.7280337307492], [-77.35404067180767, 34.728297432319266], [-77.35395463483482, 34.72832121396766], [-77.3537681610317, 34.728514129546795], [-77.35366423213688, 34.72860213986712], [-77.35353194147537, 34.72878172093106], [-77.35353119737779, 34.728790348268575], [-77.353510348372, 34.728820002365275], [-77.35341043211251, 34.72901551105335], [-77.35339113753236, 34.72905326475917], [-77.35320804283027, 34.729227992254565], [-77.3529817602375, 34.729596838942925], [-77.35280758825508, 34.72975786979463], [-77.35278383122812, 34.72994853142185], [-77.35307112627119, 34.730071955011475], [-77.35311829805411, 34.73008543797888], [-77.35314024619667, 34.730094302796694], [-77.35337814729507, 34.730263397123636], [-77.35367668330815, 34.730309232761414], [-77.35369826526053, 34.73042769029777], [-77.35368027511271, 34.73047572398213], [-77.3541189068709, 34.730848567511465], [-77.35416624832912, 34.73085609126253], [-77.35417002487985, 34.730895880199704], [-77.35438886793618, 34.73107904092555], [-77.3544382409301, 34.731202639768654], [-77.35449704051493, 34.73133837381896], [-77.35445602015815, 34.731421589213255], [-77.35433397356243, 34.73174849868413], [-77.35423793063418, 34.73186132445249], [-77.35409572800717, 34.73217565641441], [-77.35398372638213, 34.7323836002366], [-77.35401373479219, 34.73255024106811], [-77.3539138554352, 34.73288057461848], [-77.35381650272342, 34.733204750543806], [-77.35361694982565, 34.73340871028827], [-77.35355504405489, 34.73369150381177], [-77.35346278887856, 34.733917253917134], [-77.35334062136457, 34.73405961897926], [-77.3531070121812, 34.734453469541855], [-77.35308596804899, 34.7344722493502], [-77.35305378536513, 34.734515820729456], [-77.35277424211799, 34.734834316119304], [-77.352383895139, 34.73498659714876], [-77.35231394695438, 34.73500106588712], [-77.35169235934052, 34.73512433697486], [-77.35167965642157, 34.735122911988896], [-77.35166325626048, 34.73512650978127], [-77.3513770150921, 34.73513389951492], [-77.35109466733921, 34.73521703897508], [-77.35105811558898, 34.73522861797976], [-77.35104994118973, 34.73522899690478], [-77.3508794338327, 34.73536842221016], [-77.35086570349523, 34.73537727165039], [-77.35085427095456, 34.73538716428198], [-77.3507606306876, 34.73550657138724], [-77.35073816833594, 34.73558340647742], [-77.35061721613374, 34.73568779488286], [-77.3505442860213, 34.73577995148514], [-77.35048168448066, 34.735994425052425], [-77.35040902048475, 34.736042204496684], [-77.3502840187779, 34.736138425735206], [-77.35016797096218, 34.73629688480487], [-77.3501635943451, 34.73631957461138], [-77.35015047806615, 34.73633924140613], [-77.35011973505263, 34.73636949141887], [-77.34946589170309, 34.736902697158484], [-77.3494251464867, 34.73697313227777], [-77.34932858693084, 34.73703122339417], [-77.34909436691127, 34.73712266080798], [-77.34862644726687, 34.73738652964933], [-77.34812397759966, 34.73709682751812], [-77.34810232914097, 34.737129054336094], [-77.34790851003987, 34.73754419816177], [-77.3479448321534, 34.737598789472365], [-77.34796031472537, 34.737617874089665], [-77.34813237314312, 34.73786257143213], [-77.34837183851084, 34.738027579117706], [-77.34842643133283, 34.73807500584543], [-77.34884379277578, 34.73810376839161], [-77.34899138073838, 34.738191954618664], [-77.34937237844532, 34.73848559150522], [-77.34946413621608, 34.738626261761624], [-77.34973774740175, 34.73881491276705], [-77.3498319464907, 34.73892050115556], [-77.34986029081392, 34.739273470017295], [-77.34986675058889, 34.739284591226514], [-77.34987017646213, 34.7392902347433], [-77.35016330820656, 34.73945402059016], [-77.35015578083033, 34.739732309402264], [-77.35012116442302, 34.740142858835675], [-77.35008809263195, 34.740228978296564], [-77.34999105588216, 34.74037489540477], [-77.35017404052755, 34.740704563196104], [-77.34997509290662, 34.74117556121168], [-77.34999210593149, 34.74130504793], [-77.35004255271716, 34.741697367161], [-77.34993170758469, 34.74199731642016], [-77.34976078532009, 34.74237664162651], [-77.3498009726926, 34.7427052771758], [-77.3499060001244, 34.74280547638554], [-77.34993840673067, 34.743178749901816], [-77.3504803836581, 34.74358680818966], [-77.34960966574826, 34.744310307743056], [-77.34922254172011, 34.744452864514834], [-77.34901937678774, 34.74476204296472], [-77.34892629601126, 34.74482868448816], [-77.3489712346742, 34.745101173920986], [-77.34901623810951, 34.74524985308389], [-77.34893263814834, 34.74547257243434], [-77.34877775891897, 34.74576995368095], [-77.34867003234537, 34.7458781980003], [-77.34872232404642, 34.74608098629368], [-77.34899948831927, 34.74622691068122], [-77.34904702803456, 34.74624689625924], [-77.3495404530874, 34.74624016541083], [-77.34957940192263, 34.74647616188645], [-77.34969508338503, 34.74661884772847], [-77.34990584811605, 34.74674753453804], [-77.35005987216265, 34.74688408979737], [-77.35020091246278, 34.7470368207002], [-77.35036531141223, 34.747182558805], [-77.35036909185287, 34.747257434024455], [-77.35050181285722, 34.74742465454425], [-77.35054611994258, 34.747437697873465], [-77.3505596441466, 34.74747497688036], [-77.3508103261839, 34.747628695836724], [-77.35092379266591, 34.74791238895126], [-77.35093167760942, 34.74792956508831], [-77.35079808428817, 34.748401656412966], [-77.35079179326341, 34.748417882571125], [-77.35077671374671, 34.74844294319128], [-77.350587470921, 34.74893329969746], [-77.3503968743276, 34.7493227594768], [-77.35027984308671, 34.749462891155275], [-77.35009075117925, 34.749689841920386], [-77.35004853125955, 34.749791359867146], [-77.34993045025395, 34.74999821254557], [-77.349884616935, 34.750145499776224], [-77.34964332695735, 34.750379536153815], [-77.34938076886554, 34.75056101271429], [-77.34919971336325, 34.75081530872402], [-77.34887751684934, 34.75095361187081], [-77.34861687174019, 34.750892368569154], [-77.34858156555465, 34.75090599126505], [-77.34847453646081, 34.75092903888112], [-77.3482564561185, 34.75102947679996], [-77.34803999146553, 34.75098865643601], [-77.3479730147838, 34.75099331971931], [-77.34796130209946, 34.75099479714126], [-77.34761568423448, 34.751173169617026], [-77.34735990690118, 34.751100316082514], [-77.34733747731855, 34.75109985419545], [-77.34732804167403, 34.751095124422406], [-77.34725583119305, 34.751096235422175], [-77.34703552483504, 34.7511082581526], [-77.34700968320189, 34.75113000344608], [-77.34691115670643, 34.75134105882463], [-77.34688710267419, 34.75139050850047], [-77.34680763347207, 34.751495317699465], [-77.34662666641088, 34.751913613558926], [-77.34650942437939, 34.75226173804783], [-77.34596821191863, 34.75271977884444], [-77.34547922820528, 34.752516835886546], [-77.34549319702776, 34.75229300820534], [-77.34529294368068, 34.75246065318237], [-77.34476639523665, 34.75273266605224], [-77.3444680130466, 34.753006439017476], [-77.34379723279923, 34.753021852510486], [-77.3434775740878, 34.75304490778676], [-77.34265040906365, 34.75311532732294], [-77.34271880905698, 34.752449628463374], [-77.34260705184585, 34.75236033007468], [-77.34261035447777, 34.75197712797054], [-77.34260192059627, 34.75197010677615], [-77.34259796419474, 34.75194913528617], [-77.3424117417329, 34.751760678995986], [-77.3423741583791, 34.75175106948805], [-77.34226634549319, 34.75169422431614], [-77.3420717135995, 34.75169870695567], [-77.34179088770182, 34.75160213635445], [-77.34159093338938, 34.7515649705023], [-77.34151375199161, 34.75155739217803], [-77.34140289929343, 34.75156755850201], [-77.34085464705637, 34.751730527292324], [-77.34035359052378, 34.75191453970549], [-77.3401471444459, 34.75213722372486], [-77.33880266781073, 34.752920508003164], [-77.3387066832637, 34.75297104269452], [-77.33827665484384, 34.75253662649457], [-77.33824222251732, 34.75250805152628], [-77.33805856119014, 34.75211392735057], [-77.33799065679632, 34.75196820887699], [-77.33784453955823, 34.7518153594185], [-77.33764707153502, 34.751682972163074], [-77.33730121653393, 34.75170998079847], [-77.3372803872995, 34.751695338885945], [-77.33705583840509, 34.751504488006034], [-77.33699200471897, 34.75148946798792], [-77.33673942072309, 34.751495564796826], [-77.3366507986133, 34.75142174995348], [-77.33654190931101, 34.7513471180155], [-77.3364961205348, 34.75130217464739], [-77.33628016983117, 34.75131255443667], [-77.33622607338808, 34.7512007915781], [-77.33589882911848, 34.75121159308278], [-77.3356317606009, 34.75118452589082], [-77.33522086710846, 34.750944537769385], [-77.33509638097144, 34.7509655528938], [-77.33500255922334, 34.7510033929867], [-77.3348911820364, 34.75119800551399], [-77.33512534495866, 34.75154131308461], [-77.33498686835266, 34.75191272699152], [-77.33485994694422, 34.752153759208944], [-77.33454600861216, 34.75225166216344], [-77.33405536608704, 34.752485715904214], [-77.33366716541076, 34.75222856839776], [-77.33367437974252, 34.75213348474117], [-77.33335964864347, 34.752101095780255], [-77.33300947257335, 34.75196220575352], [-77.33288447719573, 34.751952472921786], [-77.33275672664422, 34.75186598815343], [-77.33232512723023, 34.75159421628709], [-77.33226757326184, 34.75144566303296], [-77.3319867076853, 34.75135918738349], [-77.33162028568005, 34.75134780953216], [-77.33118153013956, 34.75110714052481], [-77.33099474854288, 34.75104043533423], [-77.33090458590611, 34.750960338016775], [-77.33039479011566, 34.75075058363657], [-77.3305385819445, 34.75119525542193], [-77.33000959440487, 34.75168603350778], [-77.32995793536469, 34.75183748136117], [-77.3299812420073, 34.752075549512064], [-77.32997744438333, 34.75221661088915], [-77.33000525983397, 34.752243081690565], [-77.33023162325692, 34.75241534074176], [-77.33037710528026, 34.75277430899493], [-77.33088558080736, 34.752700871404166], [-77.33073273532369, 34.753118122949566], [-77.33131959432023, 34.753653433038856], [-77.33175878410326, 34.753606126404804], [-77.33166242061075, 34.753965449712325], [-77.3323250811986, 34.75431596189465], [-77.33300948454024, 34.75422118514524], [-77.33314631885705, 34.75473681063724], [-77.3333689465252, 34.75484654520302], [-77.3337286965156, 34.75498160720739], [-77.33391373134049, 34.75503325448451], [-77.33410706018165, 34.75495396783853], [-77.33458133592495, 34.754797538012255], [-77.3349869575292, 34.754819759417614], [-77.33629466710283, 34.75484873573074], [-77.3368874767556, 34.75510755771168], [-77.33757110835276, 34.75455596685291], [-77.33765535917053, 34.75452685222965], [-77.33780672860837, 34.754474542539064], [-77.33831314835794, 34.75432482616258], [-77.33868283389133, 34.75458926994979], [-77.33916840254693, 34.754885996179766], [-77.33932827014038, 34.75495436057282], [-77.33982256142548, 34.75528962670238], [-77.33986668297854, 34.75531312584044], [-77.34034493830623, 34.755578617126936], [-77.34041045934123, 34.755625939652305], [-77.34046531222666, 34.75568291422644], [-77.34060450133461, 34.7557161243781], [-77.34076515890702, 34.75574738732878], [-77.34084961558497, 34.75590334171679], [-77.34110906021125, 34.75587713604722], [-77.34114172522357, 34.75644273368808], [-77.34122374171046, 34.75655366263868], [-77.34123409020893, 34.75656933691861], [-77.34124886586271, 34.756590788667786], [-77.34145181170288, 34.75679610430521], [-77.34156428104987, 34.75681708222964], [-77.34182200198815, 34.756680012581796], [-77.34217327666485, 34.7566355551162], [-77.34245872279311, 34.75655047033083], [-77.34271011613967, 34.75655555084189], [-77.34335812689207, 34.756512878116446], [-77.3435827095407, 34.75671753130171], [-77.3436058941117, 34.75672582145166], [-77.34382420876081, 34.7569428568009], [-77.34393317923346, 34.75715684032661], [-77.34402645871283, 34.75734001120398], [-77.34437106345194, 34.757096782929544], [-77.34436473264753, 34.756744729030004], [-77.34464112546846, 34.75631471832888], [-77.34487836469884, 34.756052449096906], [-77.34493674541272, 34.75597486197392], [-77.34505468005187, 34.75586333515471], [-77.3451757345032, 34.75590364369614], [-77.34564369641417, 34.755897891079876], [-77.34567647308758, 34.755912788822286], [-77.34594310323841, 34.75589831116209], [-77.3459626708621, 34.755889810162174], [-77.34615327116806, 34.75577594256111], [-77.34632332883763, 34.755620619040705], [-77.34633582791004, 34.75560884456261], [-77.34647695442175, 34.75542439003098], [-77.34659929730825, 34.75532901390108], [-77.3467087113795, 34.75499140699217], [-77.34712954699464, 34.75490770576625], [-77.34765965860811, 34.75469617430732], [-77.347709211598, 34.754601127533476], [-77.34782136903758, 34.75458842993752], [-77.34788040795645, 34.754612230176335], [-77.34824811399241, 34.75444022720839], [-77.3484552354082, 34.754343340431625], [-77.34850088378451, 34.754311487879605], [-77.34863828916806, 34.75422652036822], [-77.34868859087071, 34.754192139908916], [-77.34869324157651, 34.754184261998844], [-77.34872387507093, 34.75406279499326], [-77.3487240612262, 34.75396346556442], [-77.34866032197529, 34.75376276900694], [-77.3485241950541, 34.753602810716885], [-77.34858720041854, 34.753280328962596], [-77.3487239734458, 34.75294694708438], [-77.34925957753907, 34.752763261060124], [-77.34958924043866, 34.75262740544294], [-77.34969539508097, 34.75253092434491], [-77.34994792090217, 34.75243271398598], [-77.35105709554387, 34.75169874964277], [-77.35158261178215, 34.75164960786463], [-77.35228296968663, 34.75160292182114], [-77.35283266725975, 34.75159215288153], [-77.35300977413455, 34.752012563195755], [-77.35324812672292, 34.75206104562584], [-77.3533404356427, 34.75208679625461], [-77.35373241277614, 34.752477000891176], [-77.35371257882232, 34.75286779171498], [-77.35372981286851, 34.75288851250047], [-77.35410138929845, 34.752981641269926], [-77.35389064816171, 34.75369397552569], [-77.35390511266642, 34.75383921844818], [-77.35387141684927, 34.75394692981821], [-77.35392262031742, 34.7542068257667], [-77.35442413091651, 34.754742750887004], [-77.35434025333976, 34.755163191831116], [-77.35493093049759, 34.75564795569946], [-77.35516643913029, 34.756104624279956], [-77.35522214468544, 34.75755752374404], [-77.35530689029484, 34.75769021758419], [-77.35595551492688, 34.75865150232508], [-77.3561669015639, 34.758854145274796], [-77.35672130514746, 34.75930129392418], [-77.35705690329894, 34.759381326405105], [-77.35722594067697, 34.759332963474655], [-77.35769716141972, 34.75967735633999], [-77.35772271692056, 34.75968511202447], [-77.3579071478644, 34.759804067821094], [-77.35797667070092, 34.75984202911645], [-77.35799788859954, 34.759840292865874], [-77.35799975732564, 34.759886081174976], [-77.35810462695457, 34.760086185283825], [-77.35812936874464, 34.760133396256734], [-77.35816939134637, 34.76020976335946], [-77.35851500087438, 34.76051723795916], [-77.35853383076079, 34.760610777515296], [-77.35850709801728, 34.76076201532553], [-77.35856834783866, 34.760898719705786], [-77.35867027500893, 34.76090006530947], [-77.3587310655283, 34.76097496310202], [-77.35901156002035, 34.76103181011656], [-77.35889102376504, 34.76144039009207], [-77.35891418547888, 34.76177057953259], [-77.35897580144969, 34.76184776899153], [-77.35895460499773, 34.76191904710395], [-77.35893576657652, 34.76199136160844], [-77.35902709880948, 34.76220254491188], [-77.35921746183497, 34.76237034849037], [-77.35925262445336, 34.762423323215216], [-77.35926037611262, 34.762641249746856], [-77.35946857820112, 34.7628232613031], [-77.35931060543861, 34.76296148132022], [-77.35936873981827, 34.76312247931119], [-77.35939778971655, 34.763199443881845], [-77.35944989668248, 34.76325717751319], [-77.35944118217951, 34.7633144075663], [-77.35945776181761, 34.76341088418813], [-77.35946102764686, 34.763445731916974], [-77.35950368365992, 34.76354952012491], [-77.35955419681983, 34.76369225140583], [-77.3596584517196, 34.76368812549757], [-77.35974645761932, 34.76375988527195], [-77.35970223418083, 34.76394645804367], [-77.35986771826458, 34.76423062425658], [-77.3598778508707, 34.76430785027006], [-77.35983224538656, 34.76472287936362], [-77.35982899071846, 34.76480878714617], [-77.36006395917117, 34.76495318043479], [-77.36000384948676, 34.76548990016706], [-77.36005950856072, 34.76566645133827], [-77.3600733499249, 34.766030132362644], [-77.36059696002653, 34.76636993293589], [-77.36056788192049, 34.766902214863286], [-77.36050533872357, 34.76730057562222], [-77.36050448911632, 34.767439259352244], [-77.36041079828367, 34.76751811547788], [-77.36041402210644, 34.767784838898216], [-77.36041623161258, 34.76796760012337], [-77.36045934816964, 34.768014392120875], [-77.36054182601745, 34.768177887031015], [-77.3606065489891, 34.76821274024538], [-77.36073462077935, 34.768171071563245], [-77.36083971108972, 34.768219746135365], [-77.3611843219645, 34.7683566795907], [-77.36132500192127, 34.768347283088104], [-77.36146340448295, 34.768491180624125], [-77.36170554656022, 34.768585953630556], [-77.36174584963737, 34.76871257679513], [-77.36184172102307, 34.76877712597344], [-77.36207122287487, 34.76887997974855], [-77.36223020638906, 34.768996695106246], [-77.36244343245755, 34.76891434128541], [-77.36285042771537, 34.769001855577244], [-77.36303637906333, 34.76908173911714], [-77.36348547826006, 34.769552403313824], [-77.3638332770056, 34.769485206038794], [-77.3641761278034, 34.7695754453961], [-77.36433496114915, 34.769444348589445], [-77.3642746624908, 34.76931798561149], [-77.36463257495713, 34.769182387031215], [-77.36463055893742, 34.76916292497971], [-77.36466264759665, 34.76913993180008], [-77.36462408778317, 34.769137514000924], [-77.36452639746102, 34.76900871775502], [-77.36429439204937, 34.769168211908536], [-77.36427751395466, 34.76875976254542], [-77.36385580307675, 34.768583315590064], [-77.36382759066613, 34.76856644388748], [-77.36377136717391, 34.768522494938125], [-77.3633354750458, 34.76835367551969], [-77.36327725527701, 34.768252332967094], [-77.36315125260171, 34.7680859929278], [-77.36305363611791, 34.76802475094354], [-77.3629788976303, 34.76797501187865], [-77.36269814472199, 34.76803731312529], [-77.36230547654677, 34.76762224201545], [-77.3621557433561, 34.76769590343881], [-77.3620904522904, 34.76753321523876], [-77.36213690221052, 34.76745137333201], [-77.36216612407529, 34.76739429271036], [-77.36193243023969, 34.76670649354563], [-77.36191356345871, 34.766320803605254], [-77.36186716411838, 34.766238511946995], [-77.36190659456959, 34.766220961401636], [-77.36186416437202, 34.76584240781157], [-77.36175982644824, 34.76564171542169], [-77.36179373557312, 34.765287544526466], [-77.36177554378186, 34.7650879881071], [-77.36185744026449, 34.76495270178802], [-77.36187460546049, 34.764563432767744], [-77.36182113021988, 34.76443012359047], [-77.361589351155, 34.7641718043142], [-77.36133765517555, 34.7638162632627], [-77.36124447099382, 34.76342287696791], [-77.36135536233692, 34.76307281346194], [-77.36146719510225, 34.762743145620355], [-77.36193858192199, 34.762529300758395], [-77.36203591998499, 34.762200883810834], [-77.36210175181277, 34.76184679649459], [-77.36213112802196, 34.76134669417282], [-77.36222095115549, 34.761329290624516], [-77.36222318184994, 34.761230417720725], [-77.3623218620128, 34.7609099242891], [-77.36234088975823, 34.76081204387816], [-77.3625145735918, 34.760476391205614], [-77.36249786502859, 34.76022355279958], [-77.36201777466596, 34.75966365689089], [-77.36193314695014, 34.75962655291862], [-77.36189238750549, 34.75956618605316], [-77.3614521509693, 34.75915468364752], [-77.36080349865564, 34.75939080565254], [-77.36037385481379, 34.759435733879435], [-77.3601846477182, 34.75945895821007], [-77.36009693266406, 34.75940857270197], [-77.359872016763, 34.75935618063251], [-77.35963481959985, 34.75928945375034], [-77.35933450727329, 34.75920651267154], [-77.35943000624643, 34.75892947539883], [-77.35925298173386, 34.75854156080878], [-77.35921834410765, 34.7585074004714], [-77.35922592218132, 34.758470107255405], [-77.35921533147197, 34.75840979192009], [-77.35916980295741, 34.758150506254374], [-77.35909413448667, 34.75800081353135], [-77.3590455602618, 34.75785183580092], [-77.3590545326024, 34.75751886521514], [-77.3590415515508, 34.757460692388534], [-77.35901385203637, 34.75730234369041], [-77.35900390174626, 34.75728212348714], [-77.35900199370418, 34.75726357663106], [-77.35893752197589, 34.757146477679655], [-77.35885900676743, 34.757058321886916], [-77.35880232513186, 34.75699937358183], [-77.35865533382349, 34.7569692904494], [-77.3585583413216, 34.75680815700996], [-77.3583294034746, 34.756825745965514], [-77.35822757323045, 34.75625864642542], [-77.35816557455081, 34.756178743608224], [-77.35816500159498, 34.75616374381634], [-77.35816269520201, 34.75610787771818], [-77.35810032823574, 34.75581926154733], [-77.35798404985171, 34.755716277113564], [-77.35801562737439, 34.75549018250674], [-77.35779991775966, 34.7552944562888], [-77.3577547851852, 34.75526036446356], [-77.35750565718459, 34.75509397056332], [-77.35729547388223, 34.754968797187225], [-77.35698934773713, 34.75470263571723], [-77.35677767268011, 34.75441972004238], [-77.35671265688316, 34.75412700611417], [-77.35677406951831, 34.75393283211026], [-77.35654324551435, 34.753490510388], [-77.35653675510613, 34.75347802324649], [-77.35653520824583, 34.75347505049792], [-77.35653248654111, 34.75347094346659], [-77.35571860814545, 34.752615554059346], [-77.3556780578073, 34.752557438205415], [-77.35562214298628, 34.7524804836739], [-77.3551191487853, 34.751723065457206], [-77.35505044624603, 34.75146329080572], [-77.35509992921581, 34.75093571484362], [-77.35551128489958, 34.750799918077334], [-77.35582061733513, 34.75065201969838], [-77.35609289244645, 34.750538775324024], [-77.35621648090861, 34.75043431649516], [-77.35646325273726, 34.75007642648611], [-77.35637660035482, 34.74988304618861], [-77.3562632751104, 34.749742028877336], [-77.35608798856781, 34.74964055318105], [-77.35593634976972, 34.74933651089272], [-77.35580077058144, 34.74930933296543], [-77.3553912067196, 34.74915111352785], [-77.3547158243266, 34.74885412588252], [-77.35453885735191, 34.74870307450415], [-77.35444369015258, 34.74828883650734], [-77.35422385962642, 34.748156930651625], [-77.35389550969452, 34.748113927154066], [-77.35387180758275, 34.74799520297719], [-77.3539614723943, 34.74788684522761], [-77.35438586416936, 34.74775031632103], [-77.35447959339322, 34.74742440221271], [-77.35431092078922, 34.747301549274006], [-77.35433545684523, 34.74695680136058], [-77.35425208226768, 34.74655838623146], [-77.35423816025681, 34.74634301919107], [-77.35417925927483, 34.746003475068086], [-77.35421460589674, 34.74579879210444], [-77.35409882498719, 34.74535192241152], [-77.35398851900665, 34.74505488968129], [-77.35436527843368, 34.74443459460544], [-77.35455938230494, 34.74407464009719], [-77.35468840862193, 34.74398406215043], [-77.3552480900563, 34.74345732775626], [-77.35528516558676, 34.743441102700025], [-77.35527709925351, 34.743415875386425], [-77.35528153547885, 34.74340129424021], [-77.35556286582157, 34.74288926609081], [-77.3557702348747, 34.742631173095276], [-77.35578287077429, 34.74260553430817], [-77.35600423964003, 34.74234129575571], [-77.3559592794671, 34.74209154194577], [-77.3557279678001, 34.74189183469288], [-77.35538179822312, 34.741747318016024], [-77.355233951972, 34.74144385456014], [-77.35489723903272, 34.74103109914671], [-77.354842696812, 34.74058515791896], [-77.35486268202776, 34.74051393653904], [-77.35498790264036, 34.7400438895886], [-77.35501502969682, 34.74001066698503], [-77.35506721847483, 34.739624030530535], [-77.3549420431883, 34.73956280112008], [-77.35466858652298, 34.73926617843323], [-77.3544830623493, 34.739284953651854], [-77.35447273526015, 34.739139836330565], [-77.35370245531907, 34.738468410736694], [-77.35360365129017, 34.738384579060344], [-77.35311896035569, 34.73841530708983], [-77.35309470046816, 34.73838186338332], [-77.35299065961917, 34.73836849606292], [-77.3530449571343, 34.73826538500539], [-77.3531585581737, 34.73827898041438], [-77.35366144077912, 34.738173298022716], [-77.35381723466489, 34.73807323948408], [-77.35438828180271, 34.73720189699387], [-77.3548709489245, 34.7366918745017], [-77.35495509514361, 34.73663671080903], [-77.35552064405088, 34.7363324623561], [-77.35600994876171, 34.73649190770657], [-77.3560480430215, 34.73650426253518], [-77.35606809533618, 34.73650961820531], [-77.3561290053189, 34.73652993336019], [-77.35661894597564, 34.7366750727675], [-77.35687793717537, 34.736654279467245], [-77.35691453681677, 34.73685510835752], [-77.35713323287371, 34.73696643749556], [-77.35735629865778, 34.737074723721726], [-77.35752219917356, 34.73712591155384], [-77.35769018048624, 34.737110909979506], [-77.35779478611285, 34.73697795270126], [-77.35791012758705, 34.73683134950119], [-77.35829618322123, 34.73666542090476], [-77.35847879332069, 34.73645761777856], [-77.35871963670368, 34.73627203968908], [-77.35925031774829, 34.73586312571457], [-77.35957408215943, 34.73575253986969], [-77.35974375724905, 34.73549189138015], [-77.3601226682597, 34.73496210719091], [-77.36011891419503, 34.734949417230645], [-77.35989095877532, 34.734496907273716], [-77.35987486933189, 34.73434871463434], [-77.36002795422928, 34.733601812607404], [-77.3602727882892, 34.73346970371027], [-77.36088961572166, 34.73308872980854], [-77.36129098616003, 34.732960153791154], [-77.3614538362881, 34.732820133377245], [-77.3616769334317, 34.73250979445736], [-77.36200334860008, 34.732257279921846], [-77.36290583061387, 34.73152343803148], [-77.36318471309234, 34.731292716454355], [-77.36410270126275, 34.731095874188135], [-77.36424678234889, 34.73103000472332], [-77.36433299928564, 34.73103354898045], [-77.36483669516147, 34.731060783546695], [-77.36509822883083, 34.731118360826265], [-77.36515931299232, 34.7311273364911], [-77.36540771608563, 34.73115664150865], [-77.36560831544416, 34.731120118463906], [-77.36583806366025, 34.7310904078934], [-77.36605890228046, 34.73097633280592], [-77.36632995576352, 34.73095908938077], [-77.36669374067344, 34.73085233042349], [-77.36703043706376, 34.73087027695954], [-77.3680040564368, 34.73045824733253], [-77.36800518529897, 34.7304573806438], [-77.36800602004114, 34.73045751698288], [-77.36800638482968, 34.73045760884815], [-77.36800750302388, 34.73045777382], [-77.36879759818592, 34.73063727695044], [-77.36918482801087, 34.73052251673891], [-77.36963809334924, 34.73062743742955], [-77.36987911039478, 34.7305935525206], [-77.3703948602776, 34.730479919844115], [-77.37077605653673, 34.730565762406485], [-77.37141614780046, 34.73062642126757], [-77.37164436261293, 34.730593651474244], [-77.37169878335429, 34.73057818725385], [-77.37211160248587, 34.73067915923425], [-77.3726688585879, 34.730668070926555], [-77.3729347090276, 34.730566625641515], [-77.3732965517173, 34.73073565136715], [-77.37336516096802, 34.73111798844238], [-77.37340461578786, 34.731157096315265], [-77.37348899959717, 34.73116133901429], [-77.37377642673684, 34.7309829073086], [-77.37411624198506, 34.73091457692798], [-77.37455006017896, 34.730751366434006], [-77.37549707797797, 34.730575662960405], [-77.37627366655191, 34.73057679972349], [-77.37677270149166, 34.73059933710334], [-77.37804987874253, 34.73052101649135], [-77.37747458091138, 34.729887643596065], [-77.3770430239486, 34.72966763004987], [-77.37659968340347, 34.72935957855734], [-77.37697753647583, 34.729027279943566], [-77.37708613133013, 34.72891159461988], [-77.37727184657197, 34.72887894409522], [-77.37774310545248, 34.728489231106614], [-77.37803766605796, 34.72827996666363], [-77.37840704647999, 34.72807827165352], [-77.37880528263877, 34.72801382891009], [-77.37889856788195, 34.728022111471034], [-77.3792968925475, 34.72803689705172], [-77.37943402136627, 34.72805685261716], [-77.37958284434046, 34.727982024375805], [-77.37967566054047, 34.72790798074311], [-77.37980289291326, 34.727779449131845], [-77.3800049606138, 34.7276981383411], [-77.38021844730828, 34.72756318669731], [-77.38044989488849, 34.72744671794938], [-77.38068373274884, 34.727311458092906], [-77.38138114008964, 34.727213470084905], [-77.38151398202622, 34.72717258930742], [-77.38162176435097, 34.72714642203865], [-77.38170286882983, 34.72723335510266], [-77.38180322527748, 34.7273611986048], [-77.38243774468353, 34.72781972797081], [-77.38265152926425, 34.72801746493211], [-77.38275305057013, 34.72813463758787], [-77.38289706800077, 34.7283032125494], [-77.38302277963753, 34.72846853757247], [-77.38353499670588, 34.72908565122513], [-77.38352037006821, 34.72915378487286], [-77.38355327937225, 34.72932992759516], [-77.3839560079698, 34.72967027588942], [-77.38462265341006, 34.729466290831375], [-77.38476112674938, 34.72949025080347], [-77.38478703464567, 34.72949779188861], [-77.38484787157734, 34.729493213202375], [-77.38558333426083, 34.729338176902395], [-77.38569763048758, 34.72928330753531], [-77.38597330589401, 34.72922757564821], [-77.38620188315716, 34.72904123389328], [-77.38627742187789, 34.728976543293264], [-77.38630456388567, 34.72893652896121], [-77.3866263055652, 34.72879873849953], [-77.38666393456394, 34.72878270238347], [-77.38694666482408, 34.72868411188702], [-77.38700603577645, 34.728671388747124], [-77.38733957454511, 34.728739548864766], [-77.38756191500414, 34.72877362931161], [-77.38762366150887, 34.72883896042954], [-77.38782225238667, 34.729146339287745], [-77.38784285437313, 34.72919524648168], [-77.38792298758746, 34.729422725591675], [-77.38795569420517, 34.72951431575791], [-77.38797830851718, 34.729548879796134], [-77.38800677707624, 34.72955977083605], [-77.38824975711786, 34.72971839873944], [-77.38849406162898, 34.72975897958111], [-77.38855580655397, 34.72976860246863], [-77.38859754333535, 34.729777577687834], [-77.388809536275, 34.72981309159898], [-77.38910566929819, 34.72986021650343], [-77.38917494623787, 34.72984473046479], [-77.38924988486093, 34.729890302270086], [-77.38963027584023, 34.729969805514344], [-77.38979038282976, 34.72993362898552], [-77.39028467707317, 34.72990535954954], [-77.39050874510053, 34.729909724312805], [-77.39110406702859, 34.72982582842343], [-77.39130223821864, 34.72971066536243], [-77.39171607203056, 34.72971176970795], [-77.39178132998994, 34.72970149059304], [-77.39221924690771, 34.72971360780798], [-77.39241975051108, 34.729711105665515], [-77.39261054801153, 34.72982863380213], [-77.39298537238761, 34.72997181034246], [-77.39337460705337, 34.73010633539637], [-77.39357622561977, 34.73014549429789], [-77.39377116455663, 34.73023753443171], [-77.39389835986563, 34.73047529691892], [-77.39405398263007, 34.73070928227133], [-77.39421840535942, 34.73094375986935], [-77.39428217301219, 34.73102804992565], [-77.39438209569026, 34.73100556018883], [-77.39461089006095, 34.73100007645954], [-77.39481741968551, 34.730969102281605], [-77.39581232061857, 34.731144899067246], [-77.39585126719575, 34.731145123881724], [-77.3958604895663, 34.731151976391985], [-77.39679503217576, 34.73120969237246], [-77.39710674386377, 34.731238081293284], [-77.39740573994317, 34.73114318518039], [-77.3976402702144, 34.73109521462882], [-77.39780075181281, 34.73105594245757], [-77.39821990184781, 34.731061170962796], [-77.39844438163989, 34.73104758791411], [-77.39852113765589, 34.73103899241936], [-77.39866470758926, 34.73102445611097], [-77.39911304756833, 34.73095285405723], [-77.39936726362228, 34.730925960247774], [-77.39976237702521, 34.73092482381164], [-77.4003474477985, 34.73106697254093], [-77.40036059142126, 34.731073144061284], [-77.40037519109187, 34.73107748374665], [-77.40041092510515, 34.73107615548901], [-77.40100155951696, 34.73107395556364], [-77.40133334838258, 34.731147615543456], [-77.402207135641, 34.73114531551355], [-77.4022380510067, 34.73113034418625], [-77.40227022423804, 34.7311213606224], [-77.4022923988781, 34.7311488543953], [-77.40229967536767, 34.73117768407109], [-77.40229203343145, 34.73121860368463], [-77.40215403559858, 34.732099197045294], [-77.40234015277113, 34.73231009814564], [-77.40228009855211, 34.73269552672983], [-77.40220845735628, 34.73282316494334], [-77.40186219266722, 34.732760496062085], [-77.40179272870657, 34.73276891139504], [-77.40146404544417, 34.73285776727947], [-77.40112024152222, 34.73287680780623], [-77.4007336149446, 34.732866429145076], [-77.40061014850626, 34.73295813453333], [-77.40048766294156, 34.73284700418294], [-77.40040765169766, 34.732827188712676], [-77.39958177677501, 34.73277322613264], [-77.39925106233463, 34.73268887021184], [-77.39886795373937, 34.7327729677449], [-77.3986945746776, 34.73281912822658], [-77.39855138314948, 34.73289054884068], [-77.3979310291695, 34.732966874795494], [-77.39788526415383, 34.73297643806958], [-77.39787543082241, 34.73297630785435], [-77.39784902636909, 34.732975678742626], [-77.39741838269288, 34.73297726772083], [-77.3972232017991, 34.73304832298979], [-77.39696310147968, 34.73298111581262], [-77.39670635545008, 34.733135094548956], [-77.39652535293197, 34.733243646948154], [-77.39634779441951, 34.73347159908844], [-77.39626625564603, 34.73354028117248], [-77.39601277872434, 34.73367210358565], [-77.39589148220686, 34.733816972747476], [-77.3961027274722, 34.734042219599985], [-77.39610928815999, 34.734578222001595], [-77.3960875139975, 34.73459604252297], [-77.3960788596439, 34.7346315137173], [-77.39612512663395, 34.73462421551859], [-77.39616280843171, 34.73462238198461], [-77.39687897185864, 34.734340148500586], [-77.3975159063894, 34.7342506050552], [-77.397717048399, 34.734047791666434], [-77.3981075918205, 34.73378592658778], [-77.39826110202519, 34.73367896584201], [-77.39829662138933, 34.733664993154484], [-77.3983295750078, 34.733655745590625], [-77.39849276595453, 34.73362537831113], [-77.39900619170595, 34.73353365392468], [-77.39943470772104, 34.73412540341242], [-77.39947395065725, 34.734132105799844], [-77.39950438809863, 34.73414321184951], [-77.39976038462684, 34.734250027737694], [-77.39988630059696, 34.734247452618995], [-77.40003194735883, 34.734257519273925], [-77.40009204652377, 34.734211914071366], [-77.4002601651558, 34.73409865755124], [-77.40034000187718, 34.73401293658079], [-77.40045656062293, 34.73388778617432], [-77.40090088871118, 34.73363361927792], [-77.4009991870167, 34.73359420638331], [-77.40121843598706, 34.73359514204055], [-77.40145205038738, 34.7335863870065], [-77.4015528491814, 34.733596569146556], [-77.40170641605093, 34.73362478670457], [-77.40198321576992, 34.73370658395724], [-77.40217830112417, 34.73365097610137], [-77.40272899280302, 34.73356435883109], [-77.40254159456279, 34.73312305327195], [-77.4029130776909, 34.73332815920699], [-77.40324617299149, 34.732778556256584], [-77.4034665535618, 34.732704075143715], [-77.40362896347935, 34.7326561769607], [-77.40374917530272, 34.732326890595644], [-77.40374525721418, 34.73224242901448], [-77.40374363456782, 34.73209545333936], [-77.40366552596572, 34.73165541609197], [-77.40359247684071, 34.73149954566823], [-77.40349745491591, 34.73131172850872], [-77.40341670636364, 34.731126487655494], [-77.4033523438449, 34.73098675095228], [-77.40326073640531, 34.730745174526426], [-77.40302728837491, 34.73031392763487], [-77.40305569702738, 34.72993798525293], [-77.40316048599027, 34.7296456424244], [-77.40334041823462, 34.72964106708431], [-77.40358128172457, 34.72938944836515], [-77.40379550155727, 34.729187463816906], [-77.40379921233992, 34.72918168655168], [-77.4039534781557, 34.728960507294225], [-77.40404628112756, 34.72884927934138], [-77.4042987398283, 34.7285466951518], [-77.40431076089405, 34.72853349758507], [-77.40431642578126, 34.72852833136977], [-77.40436214220009, 34.72850066463246], [-77.40484342535792, 34.728153535532414], [-77.4049269400023, 34.72804453875105], [-77.40508191630653, 34.72805665798773], [-77.40533561304932, 34.72796451056917], [-77.40543017461118, 34.72796116011614], [-77.4056523021764, 34.72787733009041], [-77.40570087578875, 34.72781350972615], [-77.40580625474696, 34.72776964133727], [-77.40641922136497, 34.72758644616859], [-77.40646546484501, 34.72756720181395], [-77.40650334003557, 34.72757665984518], [-77.40657066468795, 34.72757988887985], [-77.40697628855294, 34.72765417649055], [-77.40714933678774, 34.72755998473802], [-77.4074074280019, 34.72761087690066], [-77.40768219646382, 34.727469053221455], [-77.40776551117835, 34.7274481418979], [-77.40782152300724, 34.72745291486885], [-77.40804534508803, 34.72731650412223], [-77.40812768833966, 34.72729210139549], [-77.4082119356031, 34.727211892681375], [-77.40834114811443, 34.727140400957964], [-77.40832346404568, 34.72686402627211], [-77.40832134228852, 34.7268499553664], [-77.40836008016109, 34.726587907835004], [-77.408436521466, 34.7263007220974], [-77.40847017296971, 34.726067297913296], [-77.40858735623219, 34.72584634988214], [-77.40872114339189, 34.72559595926745], [-77.40879291485689, 34.72538710820879], [-77.40894597394507, 34.72511547900578], [-77.40902399370715, 34.7250167604781], [-77.40910557376687, 34.72473758157358], [-77.4091432964677, 34.72462537874786], [-77.40919946173786, 34.7245554997469], [-77.40938235751571, 34.72427852997699], [-77.40944757655815, 34.72417268636467], [-77.40946381404005, 34.72414185889553], [-77.40959211068154, 34.723943680218625], [-77.40967047583665, 34.723829294853516], [-77.40974296912891, 34.723716885784306], [-77.40990381127634, 34.72351204177408], [-77.40991385817256, 34.72347907187351], [-77.4099370378654, 34.723470408650556], [-77.41013772711955, 34.7232958383896], [-77.41021461692033, 34.72322265175332], [-77.41034568633866, 34.723166345769535], [-77.41071410847508, 34.72293831098968], [-77.41088561842162, 34.72282341249735], [-77.4111386995214, 34.72264201620189], [-77.41124719231814, 34.72256564088544], [-77.41140620720981, 34.722439200993456], [-77.41149438716354, 34.72237253942599], [-77.41151509855543, 34.722356302054145], [-77.41155357588255, 34.72231642132316], [-77.41170115904498, 34.72216530057236], [-77.41179257760425, 34.72206183562294], [-77.41202326863677, 34.72180157375646], [-77.4120636380793, 34.72175687952023], [-77.41208448323623, 34.721740254436945], [-77.41210567095091, 34.72170116661427], [-77.41224107720734, 34.72151546718745], [-77.41230721492781, 34.721406995707504], [-77.41238184247668, 34.72128514400569], [-77.41252123380136, 34.72100879285438], [-77.41257743586182, 34.720794443975414], [-77.4127075547537, 34.72056531580107], [-77.41270921821769, 34.72056098037616], [-77.41271284110245, 34.720555260102486], [-77.41284025743943, 34.72032725647978], [-77.41292446778782, 34.72017185100196], [-77.41303386951884, 34.719975028711744], [-77.41300213943559, 34.719824767317974], [-77.41311187250636, 34.719730149595826], [-77.41328192483391, 34.71942522768622], [-77.41330805782962, 34.71937265304631], [-77.41332536316693, 34.71933109629519], [-77.4134663066196, 34.71903295684237], [-77.41353577475516, 34.7188931896318], [-77.41379936517463, 34.7186098654705], [-77.41395975375492, 34.71848236454088], [-77.41430670271056, 34.718344806197564], [-77.41449676916345, 34.7182538604561], [-77.41483043599384, 34.71822776181911], [-77.41492030082709, 34.7181981878819], [-77.4150019801194, 34.718157674470774], [-77.41536766373355, 34.71818147104357], [-77.41562490289296, 34.71822036212369], [-77.41614555706418, 34.71823093263007], [-77.41626703254198, 34.718216728282016], [-77.41642723658715, 34.71841751202843], [-77.41651070728645, 34.71852499763414], [-77.416515522705, 34.71853750547568], [-77.41671836044037, 34.71887194477652], [-77.41672636963776, 34.718881410052454], [-77.41674163974437, 34.718896125381605], [-77.41676495314876, 34.71896956761581], [-77.41688436268679, 34.71922558174873], [-77.41684135019389, 34.71927981467093], [-77.41686171339987, 34.71949720766088], [-77.41676234362673, 34.719759126082856], [-77.4167637794263, 34.72002205427188], [-77.41659337016469, 34.720185115056296], [-77.41652019074303, 34.720495967061645], [-77.41661542166713, 34.720713123998905], [-77.41668320982204, 34.72107998373221], [-77.41668434996897, 34.7211124658367], [-77.41651524404605, 34.72155343709073], [-77.41647714642416, 34.72159910265679], [-77.41649538117983, 34.72165590867125], [-77.41649954311512, 34.72184120809314], [-77.41649901371403, 34.72216584332086], [-77.4166983066518, 34.72246399630911], [-77.41683362491125, 34.722841943584136], [-77.41684560728244, 34.72285997498675], [-77.41688151606822, 34.72290015170087], [-77.41708450570101, 34.723141935092826], [-77.417146202447, 34.72316991899564], [-77.41733403219452, 34.723387201119074], [-77.4175162846774, 34.723461933178584], [-77.41754384902208, 34.72364937998704], [-77.41736241567824, 34.72397246765242], [-77.41777843668058, 34.72406645229811], [-77.41783877554772, 34.724220158874985], [-77.41795947537454, 34.72435379888073], [-77.4181698549636, 34.72452844042381], [-77.41820529318683, 34.724806322359896], [-77.4182480806295, 34.72494217888487], [-77.41830980109305, 34.725035381022096], [-77.41815441234175, 34.72542760782006], [-77.41861545670457, 34.72560386115072], [-77.41865598252119, 34.725664785473924], [-77.41880091527298, 34.72576618550472], [-77.41906787184007, 34.72593936481114], [-77.41914154566177, 34.72600111505564], [-77.41932068975416, 34.72613894344571], [-77.41967620704594, 34.7263687807487], [-77.41989734780559, 34.72648614557019], [-77.42024331658276, 34.726624404145866], [-77.42062461650377, 34.72677411685657], [-77.42099486693013, 34.72692112915544], [-77.42100406138562, 34.72709555495924], [-77.4211232770437, 34.727313941394506], [-77.42121255113106, 34.72744798645818], [-77.42126955375073, 34.7275085972096], [-77.42139929374694, 34.72751327373964], [-77.4215443980718, 34.72752937846439], [-77.42158716744045, 34.72751880327916], [-77.42180128759983, 34.72747752224302], [-77.42192580864327, 34.72745638864668], [-77.42195620976864, 34.72745445939685], [-77.42251322128844, 34.72762695117148], [-77.42251402896969, 34.727639141629496], [-77.42258487994758, 34.72804343458472], [-77.42261284819276, 34.72821707403157], [-77.42288345280122, 34.72857755855581], [-77.42312190215421, 34.728712190587544], [-77.42343241282755, 34.728895936309875], [-77.42355936890411, 34.728976098038984], [-77.42386129936601, 34.729071938568154], [-77.42401756214005, 34.72908933392068], [-77.42433929117814, 34.72909716304215], [-77.42464733677902, 34.729128605066265], [-77.42509453370349, 34.72959141283153], [-77.42513954072535, 34.72964304481113], [-77.42514779632658, 34.72965268075029], [-77.42515323833983, 34.729664214463206], [-77.42536591713717, 34.73000807745835], [-77.4253765164923, 34.73005219360252], [-77.42541146537434, 34.73031354879885], [-77.42531731410091, 34.73047472825267], [-77.4254791698786, 34.730684499535734], [-77.42568822559696, 34.73096935938578], [-77.42555431755011, 34.731090597970905], [-77.42532990810136, 34.73120004741448], [-77.42520853001382, 34.73127343821026], [-77.42511207796552, 34.731327033052494], [-77.42485794517097, 34.73144844217619], [-77.42478199027975, 34.731491183546524], [-77.42468609564176, 34.73154157053206], [-77.42455821505308, 34.73165089119379], [-77.42453569883584, 34.73166975413311], [-77.42452810208515, 34.73168196977604], [-77.4245362793764, 34.73169325904832], [-77.42454526801671, 34.73169560814813], [-77.42458482377863, 34.731750027181945], [-77.42460656123376, 34.73177553874856], [-77.42468488383851, 34.73176701711787], [-77.42471765842863, 34.73174823081735], [-77.42473934952639, 34.731628590334815], [-77.42490405413449, 34.73156365530981], [-77.4249181192825, 34.731546769913145], [-77.42527150636607, 34.73140176506232], [-77.42528481634707, 34.73139809388338], [-77.42530189242606, 34.73139338387157], [-77.4256520684041, 34.73125032589887], [-77.42592414536362, 34.73136211602093], [-77.42602248120384, 34.731365731999425], [-77.42606193217966, 34.731172186833334], [-77.42644963748114, 34.731341556046026], [-77.4265748373654, 34.73132918564328], [-77.42666959630498, 34.73141725108158], [-77.42697593346854, 34.73156840702373], [-77.42708482412257, 34.73173706403104], [-77.42708627621465, 34.73174557140767], [-77.4270937192511, 34.73175155242334], [-77.42722447366839, 34.73191111655721], [-77.42732553384499, 34.73205816970687], [-77.42736155108784, 34.73211332055452], [-77.42746489133275, 34.73225721450048], [-77.42753553179683, 34.732440153058846], [-77.42753826863537, 34.732454619625855], [-77.42756967720851, 34.73265988850543], [-77.42757217700589, 34.73274600242366], [-77.42756562300069, 34.7328813087572], [-77.42755881762304, 34.733020864001276], [-77.4275058041269, 34.733132914650845], [-77.42760852642587, 34.73331776894215], [-77.42781102502227, 34.73370329106758], [-77.42791736602462, 34.73385400867497], [-77.4279340551497, 34.733990608627465], [-77.42803406332743, 34.73425171585259], [-77.42815572258445, 34.7345932901841], [-77.42817070831236, 34.734632382706124], [-77.4281712296239, 34.73464088489805], [-77.42809177038589, 34.7349483192293], [-77.42804420424702, 34.735140254412656], [-77.42804677028178, 34.7351481253411], [-77.42804252866217, 34.73515617448527], [-77.42807748626831, 34.73534956393456], [-77.42813274052568, 34.73545770252446], [-77.42818128027419, 34.735529461514254], [-77.42822986095872, 34.735578728713], [-77.42830639133784, 34.73570046755713], [-77.42837095647795, 34.735820489808376], [-77.42839882705044, 34.735885103156015], [-77.42843253701528, 34.735986049834295], [-77.42850533098579, 34.736146983301495], [-77.4285120390688, 34.73628426510193], [-77.428486479652, 34.73641992417183], [-77.42850895829802, 34.73666605473517], [-77.42837159905817, 34.736659303071285], [-77.42822234835782, 34.73671209428324], [-77.4280763637274, 34.736707104163074], [-77.42789005806779, 34.736543703748424], [-77.42767136431219, 34.73640048822179], [-77.42722292686193, 34.73606056533026], [-77.42714182439448, 34.73601482476068], [-77.42708725514855, 34.735985794305165], [-77.4266384773979, 34.73585349533762], [-77.42654724804845, 34.735853811264406], [-77.4262894596317, 34.73587217569837], [-77.42622098620961, 34.73587338024197], [-77.42618808453149, 34.7358654531898], [-77.42606163932467, 34.73585194607817], [-77.42591284114667, 34.73583037375432], [-77.42583441610944, 34.7357725257368], [-77.42583829274761, 34.73561397590059], [-77.42583735064868, 34.73549401818454], [-77.42571373346897, 34.735090401411625], [-77.42565705586904, 34.734871933439756], [-77.42562502927557, 34.734810168209364], [-77.42556896011179, 34.734803501970184], [-77.42550761783718, 34.73475362155145], [-77.42505117126962, 34.73460314251954], [-77.42498378670676, 34.7346100440479], [-77.42493882254088, 34.73462088431514], [-77.42454899852407, 34.734683008921536], [-77.42430067456706, 34.73475484296417], [-77.42418140086633, 34.73483023724866], [-77.4240310443561, 34.73486264426533], [-77.42393718769668, 34.735179076866544], [-77.42356870061666, 34.73506837767502], [-77.42341068670886, 34.73506665856763], [-77.42313795392897, 34.73510953418051], [-77.42304577611677, 34.73521827982154], [-77.42281803741268, 34.73544642859166], [-77.4223924142451, 34.7356464665117], [-77.42241375155842, 34.73597453089842], [-77.42241131844115, 34.73615053429059], [-77.42220282206694, 34.73683248725051], [-77.42212825249948, 34.73699288273752], [-77.4216942601862, 34.737342329542585], [-77.42165639860207, 34.737387019328125], [-77.42210752549347, 34.737900076022335], [-77.42239236860767, 34.73794392927701], [-77.42246949737805, 34.73823031475867], [-77.42221366942607, 34.73834603515185], [-77.42225037700139, 34.73871279753622], [-77.42178722630914, 34.739006137125656], [-77.42172540050046, 34.73904403056738], [-77.42164297514657, 34.739059556095015], [-77.42136153137766, 34.7391973836577], [-77.4210796126749, 34.739235378605585], [-77.42092162408913, 34.73922648797085], [-77.42072075940891, 34.73929626768411], [-77.42060136283484, 34.739451100926104], [-77.42053137011473, 34.73961277654702], [-77.42056009345919, 34.73979918421631], [-77.42082110302096, 34.740128017443865], [-77.4213807812298, 34.740086059075786], [-77.42144982218086, 34.740089573219], [-77.42147432516343, 34.74008662496047], [-77.4215158297571, 34.740094970960335], [-77.42247881188169, 34.740275087281674], [-77.42273300317757, 34.74016876740282], [-77.4228636801254, 34.74042561210241], [-77.42309053569541, 34.74068368571974], [-77.42318662205436, 34.74081666167501], [-77.42332983925465, 34.74112395232548], [-77.4237043498943, 34.74124318413312], [-77.42408256074484, 34.74139967579939], [-77.42426345674407, 34.74152682233363], [-77.42434257941743, 34.741594342589835], [-77.42439764968859, 34.74169961958326], [-77.42453402490392, 34.74196087699958], [-77.42453598963093, 34.74214050821463], [-77.42447723692857, 34.74228650431229], [-77.42442798048495, 34.74245148059384], [-77.42441361595262, 34.742543802604786], [-77.42437364993249, 34.74262314707872], [-77.42436305612172, 34.74270174613763], [-77.42447254045081, 34.742784716038486], [-77.42453243334892, 34.74281243564699], [-77.42477342485334, 34.74275379025478], [-77.42489114295093, 34.74272076198463], [-77.42518247688038, 34.74278206101499], [-77.42545960109103, 34.74290163823004], [-77.42546728431616, 34.74290575694964], [-77.42547336212931, 34.74290825617346], [-77.4257687523467, 34.742971913909074], [-77.42597752929211, 34.74299995447447], [-77.4261687681697, 34.743064608453366], [-77.42636368485239, 34.74313187362247], [-77.42655474249004, 34.74319512218392], [-77.42665606077558, 34.743229436397456], [-77.42677728187479, 34.7432571981388], [-77.42695336601378, 34.74330997486999], [-77.427108179941, 34.7433514405319], [-77.42743979917938, 34.74342726212837], [-77.42754939314364, 34.74346616341087], [-77.42767880519774, 34.74353583227722], [-77.4279675701218, 34.74365352379553], [-77.42804525061332, 34.74396833849931], [-77.4284181165355, 34.74399578709385], [-77.42866835316306, 34.744031023582295], [-77.42887563969163, 34.7439953981953], [-77.42911464033128, 34.74406786771975], [-77.42927929588325, 34.74413571056797], [-77.4294379994212, 34.74429972050628], [-77.429459554259, 34.744370394045035], [-77.42938452973952, 34.74456056243886], [-77.42930727066727, 34.74470050668018], [-77.42914569000615, 34.74494769148623], [-77.42911099073473, 34.745024029285474], [-77.42908388170343, 34.74508338282541], [-77.42906253740718, 34.7454287604234], [-77.42903125533846, 34.74555522113026], [-77.4290322303026, 34.74574680680822], [-77.42903633105834, 34.74588607780145], [-77.42916593340169, 34.74616133865705], [-77.42898732927122, 34.74635290259585], [-77.42906312875525, 34.74654508054549], [-77.42914081919568, 34.74671161774422], [-77.42916427282054, 34.74672549012482], [-77.4291701578388, 34.74672765400923], [-77.42917956145187, 34.7467352782224], [-77.42959802998831, 34.74699096539179], [-77.42971441534937, 34.747062746165476], [-77.42986932059605, 34.74732420287924], [-77.43003878340986, 34.74758445128007], [-77.43004412373665, 34.74769768406826], [-77.42999364122392, 34.7478482036571], [-77.43001236500595, 34.74793412487478], [-77.43002427211239, 34.74799867005842], [-77.4300532786439, 34.74810731505271], [-77.4300802244479, 34.74812901643597], [-77.4302055014347, 34.74820175909339], [-77.43031550422563, 34.74830908663707], [-77.43040083082775, 34.7482700117358], [-77.43051164817831, 34.748163443347366], [-77.43071437775872, 34.74786451894113], [-77.43072112156106, 34.74782287749127], [-77.43073780992756, 34.747785092810005], [-77.43080670280615, 34.74771993698255], [-77.43129528382562, 34.74762222310632], [-77.4322082161141, 34.74730897490154], [-77.4322721804625, 34.7473003230577], [-77.43243028174696, 34.74730198563762], [-77.43294524651938, 34.74697815795068], [-77.43305239437133, 34.747335714269724], [-77.43330187139682, 34.74748670945653], [-77.43342794925626, 34.74752593948565], [-77.43345338758095, 34.74761484807379], [-77.43360918619305, 34.747614794475005], [-77.43371374481433, 34.74764629687151], [-77.43377697303019, 34.74763275858493], [-77.43378964121462, 34.74753567361703], [-77.433804939363, 34.747502769215764], [-77.43382649452046, 34.747459216503174], [-77.43365322132772, 34.74731285388506], [-77.43350621782805, 34.747255547376525], [-77.43337022488623, 34.74720314085224], [-77.43307084310486, 34.74696675587008], [-77.43300566741576, 34.746908809746486], [-77.43290280048974, 34.746834880278556], [-77.4323531651981, 34.74680824621642], [-77.43229967418083, 34.746310502210775], [-77.43171941604606, 34.74639742753127], [-77.43126858536363, 34.74633702418305], [-77.43120179999323, 34.74635515101235], [-77.43119169488496, 34.74632625835269], [-77.43072844021043, 34.74627424141056], [-77.43059914397327, 34.74622178710307], [-77.43040041119946, 34.746209911488606], [-77.43022386858233, 34.74619780536512], [-77.42995204522319, 34.746241938884545], [-77.42975595269276, 34.74603232125476], [-77.42955621623253, 34.7457386662226], [-77.42952878589011, 34.74568068184624], [-77.42962428881098, 34.745482926959866], [-77.42971512072019, 34.74536675366423], [-77.42979594219443, 34.74526338292373], [-77.42998008859867, 34.74505180161875], [-77.42998387523195, 34.74504952850112], [-77.43005432268936, 34.7450150955429], [-77.43031462446919, 34.74488557942909], [-77.43031964465659, 34.744858693955244], [-77.430350706619, 34.74486487289449], [-77.43066253434982, 34.744727626547494], [-77.43068766813997, 34.74471209037867], [-77.4307247468984, 34.74468036508787], [-77.43091792311628, 34.74453734308206], [-77.43089508335197, 34.7443031319414], [-77.43092266045677, 34.74420651889771], [-77.43068162326503, 34.7438957200427], [-77.4306602317605, 34.74379567364134], [-77.4306784647992, 34.74341559425075], [-77.43069343862038, 34.743340797372966], [-77.43069078626924, 34.743221628900365], [-77.4308198578486, 34.74282592246417], [-77.43096563815328, 34.74274067709252], [-77.43125196467152, 34.74264279207786], [-77.43179152724181, 34.74260641140853], [-77.43199278187045, 34.74235741063023], [-77.43232728498262, 34.74246715068917], [-77.4328842500848, 34.742318121001304], [-77.43299870711411, 34.74236285121323], [-77.43316574717838, 34.74237808427823], [-77.43349076763698, 34.74256110823342], [-77.43356831573104, 34.74261029097529], [-77.43360122531585, 34.74264282339813], [-77.4337822924513, 34.74274299206816], [-77.43402677914263, 34.74291170145185], [-77.43420370923285, 34.74297792040596], [-77.43465216826289, 34.74329647947233], [-77.4349992502029, 34.743398829059096], [-77.4352734999112, 34.743365242383625], [-77.43535738845986, 34.74336689436615], [-77.43571955899974, 34.74341988290383], [-77.43589771061983, 34.74342405721113], [-77.43605673351992, 34.743537689008306], [-77.43627076630342, 34.743761202364], [-77.43630076660054, 34.74418198825241], [-77.43630613530124, 34.74422846256111], [-77.43661001192335, 34.74451248387463], [-77.43675847453466, 34.744881156483146], [-77.43716438812943, 34.74517402141858], [-77.43730650793243, 34.74520322538702], [-77.43737111304502, 34.745160527064876], [-77.4374443887337, 34.74514057787355], [-77.43797597374439, 34.745105703968356], [-77.43803725696708, 34.74525628771302], [-77.43798240801055, 34.74532854366799], [-77.43803755420312, 34.74547936647958], [-77.43803729090688, 34.745500873349094], [-77.4379569122388, 34.745599152229474], [-77.43794370444701, 34.74572186013156], [-77.43792604392203, 34.745749088476636], [-77.43784332029966, 34.74583898349455], [-77.43779033002103, 34.74584520158343], [-77.43776062488969, 34.745849821708305], [-77.43764749728214, 34.745865290746366], [-77.43759451109067, 34.7458698689727], [-77.43756909084384, 34.745857706271444], [-77.43744249098663, 34.745841217178175], [-77.43727197416622, 34.745746285146666], [-77.43709162429658, 34.74594571224055], [-77.43687226117127, 34.745841136790645], [-77.43681694480307, 34.746039435526036], [-77.43691552019052, 34.746170647576804], [-77.43700136908112, 34.74625756772882], [-77.43699322018114, 34.746380538269214], [-77.4370103193156, 34.74644045975133], [-77.43700874942802, 34.74657815906767], [-77.43694364708001, 34.746642736093975], [-77.43692435574663, 34.746673901674285], [-77.43686024548364, 34.746893115511845], [-77.43684573750882, 34.746919341064185], [-77.43677045473396, 34.74705542645545], [-77.43672168445086, 34.74709057582714], [-77.4367252815339, 34.74712548092276], [-77.43673500505705, 34.7471387570894], [-77.43674290838987, 34.74715060415582], [-77.43690484480538, 34.747389715730094], [-77.43696750101691, 34.74748243277432], [-77.43697124912717, 34.74748660912808], [-77.43697958335184, 34.74749384199087], [-77.43722190798763, 34.74771125176724], [-77.4373132721563, 34.74779033475596], [-77.43746627290069, 34.74793279709335], [-77.43747583735215, 34.747941725625665], [-77.43747923800647, 34.747944302466244], [-77.43748535853136, 34.74795005540287], [-77.43765168273003, 34.748095567235126], [-77.4377225061392, 34.74819729044828], [-77.43798368985941, 34.74840347048273], [-77.43821454453172, 34.748712924991466], [-77.43825354581003, 34.74873730242599], [-77.43843194845645, 34.74883977584818], [-77.43848476535673, 34.74888712355978], [-77.43852745522858, 34.74906944283762], [-77.43851785273658, 34.749149300425216], [-77.43851644208365, 34.74927403517064], [-77.43851120582961, 34.74929942490995], [-77.43844093969052, 34.74940194646146], [-77.43831879270903, 34.749602895743045], [-77.43829614806955, 34.74963088007694], [-77.43828638070275, 34.74964597671672], [-77.43824351436, 34.74975225059683], [-77.43823983747359, 34.74975688116697], [-77.43823331329907, 34.7497559788982], [-77.43811948347013, 34.749747245124624], [-77.43799796004899, 34.749736734378516], [-77.43792196238162, 34.74972388736247], [-77.43787179216251, 34.74971656804614], [-77.43785326305117, 34.74975567750635], [-77.43770744555403, 34.74982200272085], [-77.43766987189193, 34.749873598389], [-77.43762865077102, 34.74995672644248], [-77.43760454813594, 34.750027791667506], [-77.43751644183499, 34.75016080447831], [-77.43750899890965, 34.75019444264084], [-77.43748517746478, 34.75020667864354], [-77.43745353707632, 34.750234519934516], [-77.43733032103978, 34.75032761336569], [-77.43729113238852, 34.75039784820934], [-77.4371819193065, 34.75045909059703], [-77.43714719648196, 34.75048732308731], [-77.43703722123438, 34.75056508780438], [-77.43702451784023, 34.75057587048481], [-77.43701754580795, 34.75058178835464], [-77.43685988053072, 34.75062389103782], [-77.43682474361442, 34.75062345033077], [-77.43672451491085, 34.75061917695945], [-77.43670004603204, 34.75062220826287], [-77.43659100925953, 34.75061556835744], [-77.43654303561826, 34.750610767897456], [-77.43649052573888, 34.750588760345536], [-77.43644970822872, 34.75057172307426], [-77.43638028968913, 34.750619143738845], [-77.43636947057739, 34.750627603492056], [-77.4363620816199, 34.75063231908606], [-77.43636527331998, 34.75064100789529], [-77.43636410171128, 34.750675073220805], [-77.43635573159045, 34.75086818916436], [-77.43635486706219, 34.75090931598812], [-77.4363359334789, 34.75094667427754], [-77.43626783279672, 34.751007681321454], [-77.43619659305104, 34.75109295316213], [-77.43615858132353, 34.75112026065533], [-77.43608768018068, 34.75120320350476], [-77.43605662034805, 34.75123820000016], [-77.43599786179428, 34.7512406695677], [-77.43587631067345, 34.75125255554147], [-77.43583749852954, 34.75125418418327], [-77.43574959216882, 34.7512568964913], [-77.43561947265795, 34.751271958035574], [-77.43555056763272, 34.75127016340311], [-77.43542479533629, 34.751283185652674], [-77.43541151210371, 34.75130617023567], [-77.43531246654756, 34.75130336611938], [-77.43521334505462, 34.75132742933021], [-77.43519324329594, 34.7513235470097], [-77.43515580154256, 34.75132896933008], [-77.43498102186982, 34.751350800188014], [-77.43486381669706, 34.75142720586855], [-77.43481578190173, 34.751454783390926], [-77.43479398570577, 34.75148208359762], [-77.43474566042113, 34.751539792189945], [-77.43459235612885, 34.75169116085465], [-77.43454198273781, 34.7517553229221], [-77.43448722135889, 34.75187079034048], [-77.43447279205316, 34.75192890907341], [-77.43448877250717, 34.7520933424342], [-77.43450881311404, 34.752448860941804], [-77.43448464279466, 34.752492088671346], [-77.43419200580453, 34.75264035212595], [-77.43417534873387, 34.752651961909145], [-77.43416123631178, 34.7526586222912], [-77.43382525134363, 34.752799610855675], [-77.43380833506077, 34.7528002714137], [-77.43376723479042, 34.75280049182153], [-77.4337755236331, 34.752837240804475], [-77.43361516536328, 34.75302688438586], [-77.43355408236322, 34.75313274504224], [-77.43353795563843, 34.753279430589714], [-77.43349385945768, 34.753401119108304], [-77.43344138534218, 34.75352521296178], [-77.43342537827428, 34.75367026927299], [-77.43337429322588, 34.75378129389682], [-77.43338098880723, 34.75389459323008], [-77.43338757847906, 34.7540654565394], [-77.43336342384981, 34.754316811499784], [-77.43335253606456, 34.75433273489314], [-77.4333530930954, 34.754352624788964], [-77.4333729460576, 34.75436209345603], [-77.43341158371776, 34.7543954657437], [-77.43363110643065, 34.75457799761139], [-77.43371139625006, 34.754649576446894], [-77.43368446630664, 34.75484113208857], [-77.43366771776456, 34.755001888356205], [-77.43350873932796, 34.75518049956122], [-77.43347071445088, 34.75523976134292], [-77.43310787296518, 34.755365342909904], [-77.43309531870544, 34.75537440041109], [-77.43307887995853, 34.75537791170669], [-77.43303519924044, 34.755378005934226], [-77.43287409853734, 34.755386972013945], [-77.43280961539492, 34.75540090356831], [-77.43280517516702, 34.75547394444881], [-77.43276996671028, 34.75552681248269], [-77.4327445225623, 34.75554921618253], [-77.43269806921451, 34.75578121571906], [-77.4325759429858, 34.75600752982704], [-77.43257211285619, 34.75601537369755], [-77.4325703277529, 34.756016109311055], [-77.43222915503522, 34.75609775416444], [-77.43215624117485, 34.75608391265765], [-77.43193202797075, 34.75601643893588], [-77.43188121015801, 34.756008601688805], [-77.43178524621972, 34.75602134991706], [-77.43177466914558, 34.75602153388497], [-77.43176756412208, 34.75603070357704], [-77.43170943932918, 34.75610193628667], [-77.43165591548177, 34.75617646496774], [-77.43163469440084, 34.756248274270654], [-77.43148891305762, 34.75643938012209], [-77.43147325852769, 34.75646395140304], [-77.43146733513596, 34.756469326844226], [-77.43144810753236, 34.756486330155305], [-77.43147905740717, 34.756473422312844], [-77.43184376353258, 34.75632131686902], [-77.43202611607444, 34.75624526375661], [-77.43220846826904, 34.75616921038386], [-77.43257317161654, 34.75601710285736], [-77.43293787357506, 34.755864994289574], [-77.4333025741446, 34.7557128846805], [-77.43366727332518, 34.75556077403017], [-77.43403720993314, 34.75540647646032], [-77.43422398516218, 34.75519622256863], [-77.43422764012942, 34.754980502732735], [-77.43420925841622, 34.75463203821459], [-77.43419368448583, 34.75444841593599], [-77.43412056123016, 34.75404201202572], [-77.43412103065754, 34.75403232242965], [-77.43411456130866, 34.75401562140763], [-77.43408443475361, 34.75399891325911], [-77.43384901294095, 34.753825242242144], [-77.43373514175826, 34.753746878285405], [-77.43371502043445, 34.753734262863276], [-77.43371339453134, 34.75362024367402], [-77.43376060495679, 34.753513059113985], [-77.43377153336029, 34.753487887577336], [-77.43389631839946, 34.7534046301074], [-77.43401705246882, 34.753244743160764], [-77.43406578529186, 34.75322073925605], [-77.43407859718658, 34.753188791350915], [-77.43440099461598, 34.753026112169685], [-77.43440413296177, 34.75302561016285], [-77.43440512208166, 34.75302334665836], [-77.43441354934171, 34.75301751577778], [-77.43473060208342, 34.75281108269092], [-77.43493223581885, 34.75264845913145], [-77.43495836466454, 34.75243535295239], [-77.43497659566891, 34.75233626393414], [-77.43494255406736, 34.75226294996038], [-77.43483408084418, 34.75205512986799], [-77.4347766999156, 34.7519732442625], [-77.43476658284662, 34.75189178912765], [-77.43483632828367, 34.75186219305602], [-77.43491212491989, 34.75180287621278], [-77.43498844644304, 34.751736778123785], [-77.4351023092334, 34.75171103485785], [-77.43519218151606, 34.75169566355052], [-77.43525751913226, 34.7517287044673], [-77.4353443100459, 34.75173648363068], [-77.43541009660083, 34.75175546843507], [-77.43547387329319, 34.75178186531855], [-77.43552122544159, 34.75173615179762], [-77.43566030302206, 34.7517124880562], [-77.43576957475447, 34.751621316922005], [-77.43584788726102, 34.751644996101916], [-77.43608285651072, 34.75164676518019], [-77.43624173270939, 34.75154051546687], [-77.43632311080064, 34.7514572565894], [-77.43647408548999, 34.751265221779946], [-77.43650057986574, 34.751239738042], [-77.4365101380325, 34.75123117549197], [-77.43654196951098, 34.75116836806835], [-77.43665976468583, 34.751015831878945], [-77.43677679739979, 34.750918986086944], [-77.43695323477993, 34.75085526924373], [-77.43696320529747, 34.75084957660336], [-77.4369718690539, 34.75084534788245], [-77.43707353919451, 34.75079196431386], [-77.4371382280891, 34.7507615736985], [-77.43730358698383, 34.75068171539361], [-77.43731325306173, 34.7506735746977], [-77.43732930069109, 34.75066377747518], [-77.43748709592325, 34.7505836455633], [-77.43752710880796, 34.75053425392347], [-77.43758358225895, 34.75050001367408], [-77.4376517396391, 34.750478693623506], [-77.43771334730857, 34.750444703314045], [-77.43783021270934, 34.750396326664], [-77.4379068360293, 34.750333423590575], [-77.43789859918516, 34.750224588776454], [-77.43789338500295, 34.75012566278619], [-77.4379012530228, 34.75005195791267], [-77.4378837403872, 34.75000758460829], [-77.43788082312713, 34.74997494207685], [-77.43790963079087, 34.749965278541204], [-77.43800318642637, 34.749947809709795], [-77.4380128653202, 34.749946956319334], [-77.43802596340976, 34.74994825532979], [-77.43815144551144, 34.750038857108066], [-77.43825702994144, 34.74997187221871], [-77.43833483774175, 34.74995913439297], [-77.43838454670109, 34.74994127593514], [-77.43844578928291, 34.74990630593473], [-77.43854233491739, 34.74979611862817], [-77.43863752934246, 34.74975013710571], [-77.43875686205945, 34.74966666232218], [-77.43892493929197, 34.74957102448318], [-77.43901055362161, 34.74933331375344], [-77.43904504432354, 34.7492999278949], [-77.43922175169992, 34.7491156829841], [-77.43926526722424, 34.74900163628887], [-77.43937382466724, 34.7488892935475], [-77.43928489992322, 34.74875345867643], [-77.4390142328179, 34.74859167573514], [-77.43891379848387, 34.748512558482794], [-77.43885201334464, 34.7484876403309], [-77.43840142818358, 34.74827008390139], [-77.43835357180626, 34.74824916902081], [-77.43834986290405, 34.74824535046977], [-77.438335253695, 34.74823047844447], [-77.43804465125434, 34.74793163481414], [-77.43787672903775, 34.74780726600418], [-77.43784460883174, 34.7477753885962], [-77.43771792355787, 34.74762152929999], [-77.4374219783224, 34.74748662020725], [-77.43731013984544, 34.74740638928118], [-77.43725620509102, 34.74736773703685], [-77.43717165036735, 34.747330976436835], [-77.43711109033949, 34.74726026866543], [-77.43707951341588, 34.7472182440756], [-77.4370903301876, 34.74713189324364], [-77.43709897574614, 34.74711627789841], [-77.43714466034123, 34.747033706306986], [-77.4371919810327, 34.747009011999594], [-77.43721202918346, 34.74693976172542], [-77.43731395788033, 34.74677210945222], [-77.437371194364, 34.74665600768132], [-77.43741281660914, 34.746527130455476], [-77.43744812395519, 34.74640781357929], [-77.43745240358578, 34.74640120255404], [-77.43746374463213, 34.74638835109153], [-77.43750027859056, 34.746278169988216], [-77.43758248214345, 34.74625341224141], [-77.4376460282799, 34.74624579412182], [-77.43779475990108, 34.74622627032846], [-77.43788989601343, 34.746210573401946], [-77.43798092589476, 34.74619647813975], [-77.43800148934395, 34.746190066623], [-77.43803195225112, 34.74618439980467], [-77.43820698050334, 34.74615184050907], [-77.4383414826364, 34.74605849567213], [-77.43836650596175, 34.74603854440041], [-77.4383800651844, 34.7460265000055], [-77.43838784246502, 34.74600284215474], [-77.43840248704738, 34.74584769704205], [-77.43841378886664, 34.74576881491721], [-77.43841342926518, 34.745758640726635], [-77.43840384426287, 34.74554976048334], [-77.43840613992519, 34.745476578802304], [-77.43844282342832, 34.745415525966834], [-77.4385362238616, 34.74524250950516], [-77.4386267929576, 34.74507260746746], [-77.43865622747089, 34.74501639859594], [-77.43866130934138, 34.74500669407958], [-77.43866799959166, 34.744993153131674], [-77.4387530008485, 34.74480062041083], [-77.4387608329537, 34.744761948486385], [-77.43876225351983, 34.744730628303586], [-77.43877642099963, 34.74455555999758], [-77.43878177691245, 34.744499280065206], [-77.4387787552952, 34.744488694916384], [-77.4387847410453, 34.74447863126358], [-77.4388147173763, 34.744262334258686], [-77.43882211210685, 34.74422432714963], [-77.43882653815398, 34.74417306721931], [-77.43883293303186, 34.74403153148043], [-77.43882887000831, 34.74394717312409], [-77.43884076926045, 34.7438224826878], [-77.43884165360994, 34.743811881884355], [-77.43884370860448, 34.74380383266759], [-77.4388591644371, 34.743678241946895], [-77.4388850088519, 34.74356339888221], [-77.43887096616244, 34.74340285016897], [-77.43885815486789, 34.74316520160189], [-77.43885350799522, 34.74313013434851], [-77.43883748509471, 34.743111638178775], [-77.43876079798457, 34.74294560935502], [-77.43862880976309, 34.742849817416136], [-77.43851729858874, 34.74282399286991], [-77.43832403240219, 34.74279510045034], [-77.43820340449159, 34.74278151686547], [-77.43801120633607, 34.742768195874824], [-77.43773359221089, 34.742761856058024], [-77.43749773008608, 34.7428029408516], [-77.43735337403875, 34.74282558324311], [-77.4373172581264, 34.74282953869697], [-77.43721844822018, 34.742825504808465], [-77.43688825973175, 34.742876535085486], [-77.43649963091693, 34.74277292328928], [-77.4361145467544, 34.74267484465694], [-77.43581253966794, 34.74261491214433], [-77.43580914939403, 34.74261457140814], [-77.43548829358866, 34.7426231072607], [-77.43528617576271, 34.74250286963027], [-77.43513173188836, 34.74245076581357], [-77.43496801974926, 34.74220520407066], [-77.43469697836373, 34.74228819029218], [-77.43457415186704, 34.74223696666559], [-77.4343376267557, 34.74216777748396], [-77.4340666208957, 34.74200627094817], [-77.43406276666568, 34.74200389582737], [-77.43384307221712, 34.741661040489824], [-77.43377140419975, 34.741621100717595], [-77.43336823030386, 34.741400829001975], [-77.4333159809384, 34.74126673133196], [-77.43308753159968, 34.7410715264976], [-77.43314474486378, 34.74084308488625], [-77.43312720326561, 34.74081127291679], [-77.43293124270176, 34.74069032702336], [-77.4328479436005, 34.740668418887886], [-77.4327455181863, 34.740596006992625], [-77.43263549225634, 34.740665134102095], [-77.43220022785391, 34.740690866434164], [-77.43169531575808, 34.74033659663835], [-77.4316835173963, 34.74031801752895], [-77.43167903066687, 34.740276236051], [-77.43091556230836, 34.73894600589114], [-77.43087518991604, 34.73886963375588], [-77.43082195213131, 34.738806842893446], [-77.4304499337778, 34.73766517743738], [-77.43056225150275, 34.737214611837565], [-77.43061061376345, 34.737162279459085], [-77.43060927894528, 34.73710622618464], [-77.43067956899947, 34.736627324418855], [-77.43037735722807, 34.73639895986915], [-77.430279332655, 34.7362512501675], [-77.4299926245007, 34.73582819616671], [-77.42997032986803, 34.73567596898383], [-77.42949467992467, 34.73509511309924], [-77.43012555266881, 34.73482036937377], [-77.43070068073573, 34.734795656014406], [-77.43114078614062, 34.734983422924], [-77.43126298765543, 34.735068130859304], [-77.43131691678177, 34.73511424555224], [-77.43136037890453, 34.735188094564194], [-77.43167662302491, 34.735854243461155], [-77.43167696438152, 34.73585683285814], [-77.43167743112255, 34.73585794709738], [-77.4316786308183, 34.735862099641515], [-77.43184373627598, 34.73647511510261], [-77.43185954906895, 34.73667345051132], [-77.43200972558864, 34.73691860668421], [-77.43216423356799, 34.737146166245175], [-77.43224016396191, 34.73740746008186], [-77.43244818790816, 34.73761900010999], [-77.43263167495027, 34.73813692628791], [-77.43271313358312, 34.738456077290614], [-77.43277695341384, 34.7385227173468], [-77.4327580425478, 34.738763743797705], [-77.4327554164951, 34.73897809560083], [-77.43276376539225, 34.739032817621165], [-77.43277483660779, 34.7391484009955], [-77.43272239699417, 34.739438263685464], [-77.43288929775309, 34.73963573019377], [-77.43294597121593, 34.73979139356136], [-77.43309912879815, 34.739800616532435], [-77.4331550646422, 34.73976952047069], [-77.43334519664273, 34.73979503826682], [-77.43374635000444, 34.73977984679372], [-77.43396441791498, 34.74001141344596], [-77.43412010319392, 34.74019438965564], [-77.43422284375819, 34.74034894193569], [-77.43459533792306, 34.740790913940515], [-77.43465223358702, 34.74086520009822], [-77.4346992513237, 34.74091835616119], [-77.4348430298812, 34.741031318661875], [-77.43499280641238, 34.74116952368318], [-77.4350773903231, 34.74123887064314], [-77.43521531720805, 34.741350766557495], [-77.43530386053526, 34.74131800153474], [-77.43547183584926, 34.74131070917636], [-77.43555875858053, 34.741271876258054], [-77.43571872113091, 34.74118343696186], [-77.43576963276419, 34.74104942453218], [-77.43589423931913, 34.74079347201558], [-77.43591173327519, 34.740691837777334], [-77.43591568246018, 34.740540279508025], [-77.43590841380473, 34.74034115823898], [-77.4359488470664, 34.74014576720102], [-77.43590999293218, 34.739894098984614], [-77.43590733723696, 34.73985174452572], [-77.43590305817798, 34.73977195704275], [-77.43589154407432, 34.73956670670525], [-77.43587921642187, 34.73946053782235], [-77.43586510375127, 34.739105609862634], [-77.43586419534694, 34.73902040410233], [-77.43585950222182, 34.738996472491394], [-77.43586521981032, 34.73896244784063], [-77.43585431567888, 34.73871514083332], [-77.43588052324634, 34.73856719185005], [-77.43588933119985, 34.73844785615784], [-77.43588230335124, 34.738242647355335], [-77.43598478680752, 34.73792217120983], [-77.43608074469026, 34.737590860003095], [-77.43613889956744, 34.73741698257626], [-77.43620570516423, 34.73727550609396], [-77.4364518449968, 34.737078192501386], [-77.43650962128142, 34.73702424365467], [-77.43667324786892, 34.73704465550186], [-77.43690109062655, 34.73691599414711], [-77.4367693776483, 34.73651920793388], [-77.43694215374849, 34.736338677878365], [-77.43697808273939, 34.73629406835132], [-77.4372646303353, 34.736133220912826], [-77.43732023315636, 34.73610526595417], [-77.43738199033162, 34.73607965331311], [-77.43754318888384, 34.73608791904355], [-77.43803311846017, 34.73604525193864], [-77.43819065589271, 34.73603168101257], [-77.43857386796462, 34.7360316455343], [-77.43865084402888, 34.73603568468103], [-77.43867630887536, 34.736038276803264], [-77.43872478837851, 34.736041336632724], [-77.43899216682854, 34.73605461443516], [-77.43913112363964, 34.73607250292098], [-77.43930875284329, 34.736068434969596], [-77.43951317614726, 34.73615880379267], [-77.43959680553445, 34.73618086640128], [-77.43966739004284, 34.73620076511767], [-77.43989534430057, 34.73625705917996], [-77.44017173570889, 34.736310415884645], [-77.44019356583685, 34.7363125413448], [-77.44021016848276, 34.73631440071394], [-77.44050722317004, 34.7363582921261], [-77.44069535760276, 34.73655836772006], [-77.4408393067938, 34.7368231656945], [-77.4409061887597, 34.73691681023551], [-77.4408754944734, 34.73730147463255], [-77.44089247037465, 34.73736894453437], [-77.44088244741535, 34.73739726421409], [-77.44086672982027, 34.737412017750046], [-77.44070779014297, 34.737892411124875], [-77.44070668252871, 34.73789488285224], [-77.44055722528117, 34.73840164231258], [-77.44055722246885, 34.73840169204642], [-77.44055721741596, 34.73840176512037], [-77.44052672462966, 34.73895006316698], [-77.44047465810783, 34.739014558067936], [-77.44034546263536, 34.73938281554445], [-77.44034335346448, 34.73944502570587], [-77.4403021590929, 34.73948045953158], [-77.44019340848827, 34.739892665906524], [-77.44019069802269, 34.73995071974762], [-77.44015477487783, 34.73998738218208], [-77.44001425417743, 34.74027793425953], [-77.43995372545142, 34.740406659397166], [-77.43994431844075, 34.74042367025582], [-77.43992212207607, 34.74045226155978], [-77.43976533124571, 34.740846608104675], [-77.43974244602683, 34.74091217040689], [-77.43971227408304, 34.74098622214197], [-77.43962230975544, 34.74136066415507], [-77.43960757721794, 34.74142407994216], [-77.43959745151058, 34.74148053585001], [-77.43963887314646, 34.74157519528872], [-77.4396873086566, 34.74201096309598], [-77.43977086795168, 34.74230100132338], [-77.43976473962775, 34.742340926504035], [-77.4397366864305, 34.742587241887534], [-77.43972748298688, 34.74276551022126], [-77.43970725342446, 34.74299468136556], [-77.43969667661986, 34.74313229179776], [-77.43969003464244, 34.74322754244509], [-77.43967731118947, 34.74331960123706], [-77.43966494263015, 34.743400719194966], [-77.43963509709158, 34.74362447869444], [-77.4396160482255, 34.743663151558806], [-77.43960929958475, 34.74370763362495], [-77.43962132386399, 34.743851746993585], [-77.43962413521902, 34.74414785220479], [-77.4396275532269, 34.744226198358945], [-77.43962279917832, 34.74435203570585], [-77.43962155777925, 34.74450361780276], [-77.43961118629932, 34.744599663003186], [-77.43960851115094, 34.74477857339012], [-77.43953565029565, 34.74495734961474], [-77.43946639158965, 34.745008438135166], [-77.43940048877934, 34.74513397317393], [-77.43935643216038, 34.745249537594994], [-77.4393345031168, 34.745376487754946], [-77.43910100806187, 34.745649778987556], [-77.43906881065644, 34.74569021850089], [-77.43903463923006, 34.74569614777167], [-77.43907052001984, 34.745718040706976], [-77.43907925535684, 34.745724947534214], [-77.43926477269144, 34.74605605897651], [-77.43925275522503, 34.74608842193852], [-77.43912650812953, 34.74628727077005], [-77.43905917145332, 34.746422124176554], [-77.4388937457687, 34.74668460231592], [-77.43893733344282, 34.746780211849824], [-77.43889361443456, 34.746899395414246], [-77.43886584727403, 34.747142647993485], [-77.43907754804422, 34.74719978307865], [-77.43927800137077, 34.747254051326905], [-77.43936203630571, 34.74720809315856], [-77.43946946885465, 34.747092191491525], [-77.43945883052689, 34.74696239350756], [-77.43949901093812, 34.74687850329576], [-77.43953660665159, 34.746828015043775], [-77.43960631462316, 34.74673440201014], [-77.43966706597256, 34.74666725002032], [-77.43976568215112, 34.7466767777846], [-77.43991252158298, 34.74669428689325], [-77.43993158414233, 34.74669803851335], [-77.44004991476432, 34.74680253923879], [-77.44010721276621, 34.74690938448675], [-77.44009119425472, 34.746986076118944], [-77.44009731267866, 34.747045682553924], [-77.44007161999924, 34.74708602598336], [-77.44005306986108, 34.74716998348035], [-77.44005985519026, 34.74730871282432], [-77.44005210862707, 34.74731737069549], [-77.44006573558019, 34.747318315976074], [-77.44021903047947, 34.74732611413174], [-77.44051148378472, 34.747330121751126], [-77.4405318113678, 34.74733182265415], [-77.44053783516607, 34.747332412313796], [-77.44055247398161, 34.74733182680558], [-77.44114827799793, 34.747438888724304], [-77.44139524339869, 34.747426635098854], [-77.44146909084746, 34.747438245920385], [-77.4416230863381, 34.74761868136018], [-77.44171147426727, 34.74770864792171], [-77.44173791985745, 34.74773008137257], [-77.44172853656588, 34.74779088232822], [-77.44178484007192, 34.748333952885524], [-77.44169656075212, 34.74864016159903], [-77.44151306728916, 34.748934235836565], [-77.4412846932312, 34.74918354261474], [-77.44124221611597, 34.74923955049491], [-77.44121631072478, 34.7492534024271], [-77.44096878180795, 34.74954064689172], [-77.44080253869299, 34.749667888744455], [-77.44044155902645, 34.74988112864534], [-77.44028724248034, 34.74992293255816], [-77.44020093139429, 34.75001676150663], [-77.43991409425666, 34.75027660814921], [-77.43972682759417, 34.75041017319892], [-77.43970738811774, 34.75047127970383], [-77.4396256333034, 34.75048464183826], [-77.43938608092901, 34.75069421255881], [-77.43923319508703, 34.75073273684958], [-77.43914371686031, 34.7507655058997], [-77.4389992375165, 34.75081012401544], [-77.43887089774373, 34.75087667411157], [-77.4387894650435, 34.750921270296445], [-77.43867326697381, 34.75102544428188], [-77.43849699089577, 34.75109861458556], [-77.43830284047463, 34.75116816746517], [-77.43812823122684, 34.75122697422586], [-77.43791970456705, 34.7512901363026], [-77.43778261646776, 34.751313252706154], [-77.4376466678961, 34.75136059896367], [-77.43754184913871, 34.75142072943808], [-77.4374181277462, 34.75146473872224], [-77.43718400679751, 34.75158400686805], [-77.43698965062168, 34.75169010879925], [-77.43684043143313, 34.75177058523652], [-77.43670522981454, 34.75187026556375], [-77.43664767273381, 34.7519110002338], [-77.43651819391985, 34.75199201263081], [-77.43646213756801, 34.752064859600544], [-77.43625745485322, 34.7521513594594], [-77.43618675118556, 34.752198409019975], [-77.4361312988162, 34.752228799711915], [-77.43597598533103, 34.75236579849338], [-77.43589550237583, 34.75242594243074], [-77.43588182063668, 34.752448104954055], [-77.43580899590678, 34.752592924084766], [-77.43565526957292, 34.752825807615295], [-77.4356259739194, 34.75289081885178], [-77.43558737060836, 34.75297429947093], [-77.43552913144094, 34.75313650518716], [-77.43552450528276, 34.75335994594178], [-77.43552044882308, 34.75341299016996], [-77.43549002971886, 34.75346130278642], [-77.43552637709665, 34.753569320755915], [-77.43558961177374, 34.75386616588257], [-77.4355477937356, 34.75398157899298], [-77.43573649330204, 34.75445383724041], [-77.43578160371533, 34.7546222944531], [-77.43578808594091, 34.754676181976464], [-77.43585543923982, 34.7546480882626], [-77.43614678406632, 34.7545265635694], [-77.4360185707573, 34.75416680932838], [-77.43600980688421, 34.75414297978354], [-77.43601344146617, 34.754135781381194], [-77.43617834193336, 34.75368004534017], [-77.43619868684294, 34.753649928145855], [-77.43623813218849, 34.753595656231525], [-77.43620096930842, 34.75345433611929], [-77.43616221958995, 34.75318091905535], [-77.4361936981949, 34.75308915069097], [-77.43600940130764, 34.752798261487534], [-77.43604855416626, 34.75272040218122], [-77.43613176279699, 34.75258561571902], [-77.43616236720335, 34.75253242976496], [-77.43617093406934, 34.752522163698906], [-77.43624034828471, 34.75247872667441], [-77.43632444263909, 34.75242327615719], [-77.43648921333543, 34.7523538354905], [-77.43652370768302, 34.75233929822708], [-77.43672432368822, 34.7523286455048], [-77.43711023426576, 34.752291266362626], [-77.43714227636801, 34.75226352837266], [-77.43719624075196, 34.75223138257764], [-77.43726224196598, 34.75227566201055], [-77.43760722621383, 34.75227516035548], [-77.43782426632829, 34.752277238495374], [-77.4378569282507, 34.752272596276235], [-77.4380116108461, 34.75218788447364], [-77.43835575009896, 34.75216733358157], [-77.43851499222686, 34.752106445192446], [-77.4387083042795, 34.752118846899336], [-77.43887188397112, 34.75209744077031], [-77.43920269715993, 34.751946076822094], [-77.4392737011362, 34.75192896633192], [-77.43958547967867, 34.75176746931068], [-77.43997295683971, 34.75150042273452], [-77.44031320499536, 34.75146057845525], [-77.44053757484829, 34.75125240272533], [-77.44046489957358, 34.750939644670396], [-77.44054817497512, 34.750697083147074], [-77.44067730226297, 34.75055990046803], [-77.4409254952563, 34.75042484229803], [-77.44100251728433, 34.75034335307732], [-77.44105097051863, 34.75031369198197], [-77.44136413345109, 34.75018624781387], [-77.441776868497, 34.74969878162237], [-77.44190031099225, 34.74956659420159], [-77.44195149345799, 34.7495102076308], [-77.44211314690395, 34.749359187685315], [-77.44244573039755, 34.74896204125399], [-77.44278653822374, 34.74868385026601], [-77.44298400718175, 34.748345836183766], [-77.44307683688162, 34.74806429717585], [-77.44322322126283, 34.74771834958894], [-77.44332104699396, 34.74740103367931], [-77.44339623396479, 34.74721976587844], [-77.44359869393911, 34.74710683659525], [-77.44382901659698, 34.746857637220664], [-77.44385559120052, 34.7468212033002], [-77.44387488240801, 34.74681025959054], [-77.44389979092884, 34.746794272586484], [-77.44401034506606, 34.74678198105342], [-77.44428079943799, 34.74672552222446], [-77.44458305077515, 34.74664904649833], [-77.44469680297337, 34.746657254635664], [-77.44488026491805, 34.74662010087603], [-77.44489901182592, 34.74641119480333], [-77.4446502310502, 34.74641684485268], [-77.44455174191268, 34.74642038250094], [-77.44432561163708, 34.746426364449974], [-77.44418390253604, 34.746567296395014], [-77.44400377353784, 34.74643487818115], [-77.44379838334862, 34.746424001348984], [-77.44361888434793, 34.74639222770782], [-77.443380977467, 34.746371126605794], [-77.44292215952194, 34.746343170403605], [-77.44275694688912, 34.74631164180923], [-77.4426619679606, 34.74632477625196], [-77.44245945098092, 34.746333521889945], [-77.44210136529725, 34.74636119694943], [-77.44180722044248, 34.746361930013116], [-77.44177284576338, 34.746368027170746], [-77.44176712811736, 34.74637865706569], [-77.44173510143466, 34.74663951464212], [-77.441549125351, 34.74675029237133], [-77.44150191464973, 34.74683756891902], [-77.44130542050789, 34.74689582660935], [-77.441187041117, 34.7469066072654], [-77.44087295124612, 34.74689736787656], [-77.44066127459229, 34.746905834300506], [-77.4405335106896, 34.74689332770346], [-77.44049579125117, 34.746765614832235], [-77.44019935691621, 34.74658632535121], [-77.44012739871431, 34.74653477776161], [-77.43995753980353, 34.746393988611956], [-77.43983456445521, 34.746438743835], [-77.43974716390261, 34.74642423993549], [-77.43970014010159, 34.7464876656341], [-77.43966194693796, 34.74648126686935], [-77.43964786810257, 34.74648159559634], [-77.43962090584988, 34.74645998585955], [-77.43961215291233, 34.746384893441125], [-77.43967564398737, 34.746307439604124], [-77.43975751475284, 34.74622819541866], [-77.43981918917818, 34.746168046665176], [-77.43996152909867, 34.7460199522957], [-77.44011913199694, 34.7457269752101], [-77.44015054707032, 34.74552695781974], [-77.44014728545275, 34.74520859659198], [-77.44012764871562, 34.744959932492705], [-77.44014834819654, 34.74482196748162], [-77.44005706168258, 34.74456188080727], [-77.44005797728018, 34.74441326168407], [-77.44005934552001, 34.74437704504289], [-77.44004174546485, 34.7439736239045], [-77.44004020458684, 34.74381133134252], [-77.44001654642847, 34.74353772860412], [-77.44001825363488, 34.74352414983351], [-77.44002054443817, 34.74350634243013], [-77.44003063094976, 34.74324896007644], [-77.4400501813915, 34.74307728659504], [-77.44007439247385, 34.74284664898964], [-77.44008694552659, 34.742709607169694], [-77.4401091152756, 34.742606289606364], [-77.4401692402522, 34.742253917263085], [-77.44018413686705, 34.74218453497141], [-77.44020606308581, 34.74211943244707], [-77.44018696094331, 34.74189701890468], [-77.44015335260642, 34.74161475344173], [-77.44018207545517, 34.74123662136134], [-77.44022231598835, 34.74107981961817], [-77.44025807769445, 34.7409037359546], [-77.44028513819997, 34.74082225426959], [-77.44036268170227, 34.740714859764424], [-77.4404475088074, 34.740599467005914], [-77.44047894860813, 34.740516832065936], [-77.44064020583282, 34.74033063433658], [-77.44075442365273, 34.7402191109203], [-77.4407901568843, 34.74016014914337], [-77.4408905648709, 34.74004820211256], [-77.44112683002072, 34.73971874402024], [-77.44128924172395, 34.73959733085679], [-77.44139907615488, 34.73938962256299], [-77.44138159924476, 34.7392487257227], [-77.44163611738946, 34.73910470104295], [-77.44179203606855, 34.738923259539064], [-77.44185283778796, 34.73885433327278], [-77.4419710058496, 34.73870457570972], [-77.4419889124338, 34.738342849122844], [-77.44228814984473, 34.738238289972045], [-77.44247499736039, 34.738047871379685], [-77.44244548017552, 34.73794333189784], [-77.44267831368077, 34.73771868305536], [-77.4427847232742, 34.737554081472794], [-77.4429507427127, 34.737560826299685], [-77.44325986631338, 34.737582478782144], [-77.44335627962467, 34.73759151966479], [-77.44343359611031, 34.73764788418475], [-77.44356363816178, 34.737774940651626], [-77.44375454123659, 34.73796037919364], [-77.4438613188787, 34.73806207905674], [-77.44422080057434, 34.73856353188846], [-77.4442572440781, 34.73864344968861], [-77.44425944155486, 34.73885653916845], [-77.44426775301983, 34.73887349631878], [-77.44434442316214, 34.738886225973644], [-77.4444997092296, 34.73885972108147], [-77.44473589524503, 34.73889013863653], [-77.44491250369605, 34.738861160149774], [-77.44517658412798, 34.73889741542085], [-77.4453696372405, 34.738785243500175], [-77.44554646809995, 34.738886105014096], [-77.44600929870843, 34.7388051882283], [-77.44622213348514, 34.73876689164587], [-77.44654334733312, 34.739206844265354], [-77.44667168501535, 34.73886066776173], [-77.44636954571808, 34.738654860310504], [-77.44627896133068, 34.73857044328592], [-77.44623829845513, 34.73826320789738], [-77.44593728540094, 34.738045119233696], [-77.44583834495273, 34.73798368487759], [-77.44570047156692, 34.737830399988674], [-77.44532725672966, 34.737427462754255], [-77.44514965720046, 34.73737822695348], [-77.44477290095587, 34.73712737032524], [-77.44473955533753, 34.73710293857671], [-77.44434351540217, 34.737109487588484], [-77.44413225231045, 34.737125571596245], [-77.44386772129864, 34.737020319340154], [-77.4435317434804, 34.7369850245306], [-77.44336113893999, 34.736785287459966], [-77.4430515574261, 34.73649467615401], [-77.44303651523946, 34.73648058208058], [-77.44303322745206, 34.73647570034474], [-77.44302219559158, 34.736467748315235], [-77.4427667278243, 34.73630500840193], [-77.44260788218091, 34.73620676878314], [-77.44250079171977, 34.73611612589485], [-77.44230577879362, 34.73588641264501], [-77.44205913115346, 34.73557226647293], [-77.44204912441114, 34.735547092429286], [-77.44203473475943, 34.735510891757876], [-77.44167035378013, 34.735258726158676], [-77.44163318737158, 34.73486442872056], [-77.44159345924736, 34.734820026754036], [-77.44142316675456, 34.73458270583477], [-77.44136419822757, 34.73450440800328], [-77.44135309655981, 34.734498282859185], [-77.44135588765153, 34.734488033278126], [-77.44127512337224, 34.73434090390087], [-77.44116514996402, 34.73414187965391], [-77.44115950970739, 34.734132648119555], [-77.44115511468327, 34.734119055856915], [-77.44110762161023, 34.73406731848074], [-77.44091129176249, 34.73385377836736], [-77.44083458329895, 34.73382181622586], [-77.44064642061022, 34.73366125253298], [-77.44031729091336, 34.73328661657529], [-77.44020781959058, 34.73319051865487], [-77.44015007235514, 34.73316079829477], [-77.44007356872775, 34.73312596745379], [-77.43964080877396, 34.73305025213098], [-77.43954292658569, 34.73304328768887], [-77.43953057573873, 34.733026692030364], [-77.43949622060441, 34.73299973206642], [-77.43912851019438, 34.73274804527864], [-77.43907376993481, 34.73244888875871], [-77.43901727196575, 34.73227335023746], [-77.43905660928904, 34.73221249051914], [-77.43909837800646, 34.73186780531752], [-77.4388176724509, 34.73164457405575], [-77.43870442074382, 34.731509579833144], [-77.43863806010704, 34.73152880031128], [-77.43824652250458, 34.731330427682366], [-77.43813860937065, 34.73124926106201], [-77.4378124176861, 34.73092777474143], [-77.43762266838854, 34.73081660744037], [-77.43720964532238, 34.73108268035047], [-77.43702004426473, 34.73112876859613], [-77.43687734517054, 34.731176658208994], [-77.43666639325608, 34.73129875099034], [-77.43629002708724, 34.73125393682345], [-77.43621827519237, 34.73123862488752], [-77.43614889550743, 34.7312010758729], [-77.43570331850255, 34.7310523235906], [-77.43572974986395, 34.730711258959225], [-77.43557511299056, 34.73101144839436], [-77.43557537148861, 34.731070626912576], [-77.43540319113315, 34.731478308949846], [-77.43522531062402, 34.731507337392394], [-77.43479637944263, 34.73172105149453], [-77.43467423685408, 34.73178291057546], [-77.43416807824588, 34.731676669463226], [-77.4340471294198, 34.731654651563105], [-77.43364506374392, 34.73159705582907], [-77.43353782772934, 34.73163902004657], [-77.43346765298777, 34.73153865776566], [-77.43326611985844, 34.73147018136257], [-77.43314967588832, 34.731448117824826], [-77.43310105781848, 34.73145605972918], [-77.4330302417172, 34.731497944439475], [-77.43297204496116, 34.7315584622582], [-77.4329077982033, 34.7316006060415], [-77.43281305134961, 34.731733292556875], [-77.43264599645238, 34.73172403884789], [-77.43220694930096, 34.731806870013344], [-77.43207181677735, 34.73152337227583], [-77.43181145120883, 34.73133681295664], [-77.43180541162403, 34.73115074144633], [-77.43179880826719, 34.73100183717528], [-77.43179153139086, 34.730898731615106], [-77.43179756200958, 34.73086847247145], [-77.43180684076785, 34.7308371576469], [-77.43187536317592, 34.73073734261222], [-77.43193400630885, 34.730636633196006], [-77.43202770422518, 34.730450228739386], [-77.43205905070307, 34.73040080982655], [-77.43220729982204, 34.73027888851699], [-77.43222058774695, 34.73017774052651], [-77.43229070673209, 34.730132149164476], [-77.4323814628205, 34.730096333775094], [-77.43252298550195, 34.73014718848398], [-77.43269008634948, 34.730137605240266], [-77.43276927426123, 34.7301662552549], [-77.43325572437774, 34.73028788911326], [-77.43328233537676, 34.73030652232615], [-77.43379770798374, 34.73050816923695], [-77.4338534470443, 34.73054847951262], [-77.43393520365548, 34.73057557018516], [-77.43393209242429, 34.73049635865539], [-77.43403008808016, 34.73041121988673], [-77.43415045885251, 34.7302931492788], [-77.43417285999232, 34.730216090764785], [-77.43433127793325, 34.73007681771992], [-77.434501777566, 34.73000570689492], [-77.4346565525967, 34.7299888153785], [-77.4348481754362, 34.73006990693592], [-77.4350207223047, 34.73010576835928], [-77.4352786130587, 34.730054716402094], [-77.43572645106948, 34.73051096322274], [-77.43578522237306, 34.73051957005144], [-77.43600965189478, 34.73022589646786], [-77.43620145030373, 34.7301713315378], [-77.4363971642239, 34.73011123734156], [-77.43656053507087, 34.73005588860562], [-77.43689275731113, 34.7301096573455], [-77.43715845402645, 34.73020521346905], [-77.43752421902063, 34.73045698770658], [-77.43776807867289, 34.730159744638236], [-77.4381687136226, 34.730014438528094], [-77.43857081394779, 34.72975557305379], [-77.43902295335383, 34.72991452150227], [-77.43916144451963, 34.72952856535791], [-77.43945394900061, 34.7291232278849], [-77.44012610028912, 34.728811871940266], [-77.44015552661232, 34.72877395543587], [-77.44016888584507, 34.728762530597066], [-77.44028659626228, 34.72869356124593], [-77.44014962420273, 34.72873056665463], [-77.44004697849896, 34.72859664133088], [-77.439596804946, 34.72808857728547], [-77.43958790268287, 34.72800048869102], [-77.439183655582, 34.727637527935926], [-77.43896108557053, 34.72746103023442], [-77.4385748439203, 34.72708745243013], [-77.43829404298044, 34.72684655403913], [-77.43822224179372, 34.726528826261784], [-77.43737107969605, 34.7255487195539], [-77.43740321367437, 34.72543264869652], [-77.43707729555969, 34.72524071734197], [-77.43701430266847, 34.7254240373732], [-77.43595937742667, 34.72548677572965], [-77.43523166942674, 34.72521630568511], [-77.43469119386877, 34.72543836318136], [-77.43438946451678, 34.72490452444342], [-77.4336256500748, 34.724689734383404], [-77.43317764578768, 34.724851378689], [-77.43232580371166, 34.72475074236459], [-77.43219935942346, 34.72474850975725], [-77.43174882570833, 34.724529201053315], [-77.43125682997393, 34.72452990008152], [-77.43115384340392, 34.72453577563205], [-77.43110147948492, 34.7245507937719], [-77.43100745262622, 34.72452998179426], [-77.43046847609989, 34.724522826519404], [-77.43018177015804, 34.724443027055614], [-77.42985414136442, 34.72443035741385], [-77.42964907083899, 34.72420391153332], [-77.42964103370167, 34.72396511725954], [-77.42953430357039, 34.723805404836426], [-77.42945419266327, 34.723597229266716], [-77.42939244362341, 34.723418200604506], [-77.42937381618177, 34.7233126523876], [-77.42940896192417, 34.723180241076676], [-77.42962547155372, 34.723005483983115], [-77.42970148216762, 34.72291041963838], [-77.42978590757974, 34.72289764100001], [-77.42983631242853, 34.722786636126045], [-77.42998300851376, 34.722622634917336], [-77.43035520689683, 34.72253758169373], [-77.43040794563278, 34.72251699432039], [-77.43089152610494, 34.72261156868687], [-77.43168490486818, 34.72244331076152], [-77.43170186916007, 34.72244008414626], [-77.43171520254572, 34.72243029306132], [-77.43298860470934, 34.72178088884928], [-77.43304582797329, 34.72164495880235], [-77.433760872496, 34.72159563045043], [-77.43447994837769, 34.72173765445439], [-77.43536807539593, 34.72149444918913], [-77.43561507794182, 34.71986089677794], [-77.43598063828259, 34.71947235944534], [-77.43574812177312, 34.71898084675299], [-77.43546207324276, 34.718343626415276], [-77.43530890597066, 34.717378531927864], [-77.43454788135568, 34.717072271626265], [-77.43446242030113, 34.716705544133866], [-77.43453605640903, 34.716602391986655], [-77.43446747706413, 34.715944052998836], [-77.43424824781118, 34.71551258553019], [-77.43413402451327, 34.71519040244421], [-77.433855329492, 34.715035063749944], [-77.4335123348587, 34.714929597291004], [-77.43329021392533, 34.714772761049716], [-77.43313130495957, 34.7147160174452], [-77.4328573473359, 34.71446734309142], [-77.4327771308968, 34.7144174090387], [-77.43275894963712, 34.7143934881391], [-77.43234488801792, 34.71415137434638], [-77.43223116413128, 34.71400220723273], [-77.43208723253768, 34.71363908189936], [-77.43216888815662, 34.71348202654908], [-77.43226964114906, 34.71328998950642], [-77.43225622989324, 34.713139105092125], [-77.43218619758069, 34.71305005715207], [-77.43194474262968, 34.712979166042025], [-77.43189251805674, 34.7129573634995], [-77.43130102921803, 34.712801370005295], [-77.43129367986221, 34.712799568033276], [-77.43074085127054, 34.712506951757305], [-77.43045752081366, 34.71226054691154], [-77.43020750919985, 34.712134935482396], [-77.4297106414545, 34.71170810565546], [-77.42969312300485, 34.71169743635778], [-77.42968752177934, 34.711689052376755], [-77.42967458532691, 34.71167752817672], [-77.42935427282985, 34.71138171179895], [-77.42924166652364, 34.71104251703309], [-77.42919412689261, 34.71100214595213], [-77.42914384694647, 34.710781781141506], [-77.42893497841416, 34.71030082634461], [-77.42890412210416, 34.710230378473064], [-77.42886761469381, 34.71012017363054], [-77.42878518185853, 34.709833621190484], [-77.42879962224221, 34.70969443911875], [-77.42882843188646, 34.70951844292972], [-77.42882662822399, 34.70942434910941], [-77.42885112287287, 34.709359723799125], [-77.42879152555591, 34.709132543832425], [-77.42883344928843, 34.70877880182333], [-77.42907359579057, 34.70867209953454], [-77.4293014289571, 34.70862123552836], [-77.42960002868317, 34.708536018402064], [-77.42993788017753, 34.708415211685605], [-77.42997289084794, 34.7083975871834], [-77.43002214763327, 34.708345700336245], [-77.43025240439606, 34.708106589607574], [-77.43050654967004, 34.707776214926874], [-77.430661058266, 34.70754992709829], [-77.43078575361518, 34.707482638980956], [-77.43089352602097, 34.70735167242003], [-77.43092372898644, 34.70733423335198], [-77.43095996383154, 34.70714063096794], [-77.43094045406292, 34.707088549703], [-77.43090837849557, 34.7069352394644], [-77.43086250899094, 34.706734908386466], [-77.43082444525933, 34.706488931248195], [-77.43085387538582, 34.70629212300923], [-77.43087911592879, 34.70613960203039], [-77.4309388267251, 34.70596986251494], [-77.43097697110164, 34.70592562855005], [-77.43103094917305, 34.70577184562427], [-77.4310458110196, 34.70572773712729], [-77.43103167636639, 34.70564113221244], [-77.43102553571497, 34.705550910466854], [-77.4309508547093, 34.70550903865334], [-77.43085129579379, 34.70548054621841], [-77.43076814206441, 34.705435122171465], [-77.43066885667619, 34.705316414147205], [-77.43041457813467, 34.70513626976566], [-77.4303249404908, 34.70508454589628], [-77.43017301104999, 34.70498554143511], [-77.42977978452072, 34.70475352633272], [-77.4294490233876, 34.70464639938431], [-77.42922591242225, 34.70445263541503], [-77.42859314872152, 34.704110757890945], [-77.42843470366714, 34.7034171298262], [-77.42837659918757, 34.70330835334937], [-77.42850610707798, 34.70288303105315], [-77.42850989211894, 34.70280635194028], [-77.42852793045984, 34.70261112887214], [-77.42855544911524, 34.702341651034466], [-77.4285555194091, 34.70234124257705], [-77.42855564427224, 34.70234087808834], [-77.4288985622312, 34.70140679009772], [-77.42896363663853, 34.70136581409864], [-77.42919862024972, 34.70117981104359], [-77.42920392868939, 34.70117030306317], [-77.42894430086601, 34.70099627555207], [-77.42878095910608, 34.70090770976904], [-77.42845914445434, 34.70068852781682], [-77.42840218215132, 34.7006548674517], [-77.42836076054061, 34.70063666713361], [-77.42833279563197, 34.700586162332826], [-77.42837605128459, 34.7005527039], [-77.42833490688119, 34.70020107278007], [-77.42831398106311, 34.7000205160826], [-77.42829575885924, 34.6999152809209], [-77.42826513933883, 34.699783803207374], [-77.42823584957968, 34.69971366135802], [-77.42811642014965, 34.699427657238644], [-77.42809289447041, 34.69940929558115], [-77.42806951372621, 34.69937596286228], [-77.4281586441774, 34.69928175429506], [-77.42830676331613, 34.69894373000765], [-77.42834665568975, 34.698913806362256], [-77.42897782881116, 34.69866571305041], [-77.42904920301905, 34.698661636956935], [-77.42924444077173, 34.69866867525375], [-77.42949883602357, 34.69864876623164], [-77.4296141972619, 34.698681384208115], [-77.42980516193221, 34.69869478177654], [-77.43000509546566, 34.698728454819125], [-77.43025389348048, 34.69868555139032], [-77.43070988269136, 34.698622028892295], [-77.43083648429017, 34.698591757069885], [-77.43092281058526, 34.69858873178201], [-77.43116248218134, 34.69857474700685], [-77.43128036553287, 34.698569480398405], [-77.43160869742422, 34.69843325450777], [-77.4316468781796, 34.69842074219749], [-77.43182930726293, 34.698296467103916], [-77.43221833055736, 34.69803134517297], [-77.43230182018846, 34.697995642886404], [-77.43239288626164, 34.697614880186535], [-77.43232838473867, 34.697510767879145], [-77.4324419983098, 34.697476966090306], [-77.43264553898953, 34.69706481115033], [-77.43264637724691, 34.69706322895125], [-77.43264641248813, 34.69706290938546], [-77.43264652226459, 34.69706263842198], [-77.4327556200924, 34.69682156534815], [-77.43280262723758, 34.69657082701706], [-77.43280447102084, 34.6965591178162], [-77.43280039043661, 34.696529610423575], [-77.43266261112831, 34.69616314200644], [-77.43238418731092, 34.69585310689404], [-77.43238019781963, 34.6957668727834], [-77.43228688498122, 34.695427166804], [-77.43235824424265, 34.69509666770601], [-77.43246480976606, 34.69476318146439], [-77.43267510609986, 34.694372363749665], [-77.43271822674005, 34.6942927344218], [-77.43272206544393, 34.69419576001599], [-77.43292005210255, 34.693900988994656], [-77.43295447850642, 34.69381628588937], [-77.43298291939487, 34.693797506257674], [-77.43320905297286, 34.69349618738856], [-77.43322646271722, 34.69335233163066], [-77.43381142804955, 34.69303508589792], [-77.4338297930223, 34.69301525169059], [-77.43384096774557, 34.69300814393923], [-77.43387679663958, 34.69297804315603], [-77.43416627269877, 34.69256283451696], [-77.43429859798903, 34.6922859787156], [-77.43465601341836, 34.69233085200089], [-77.43480322229443, 34.692226493599], [-77.43506803310241, 34.69204811054854], [-77.43511509189345, 34.69201481258933], [-77.43525460611525, 34.69182526839954], [-77.43550521001964, 34.691610623372064], [-77.43562537525767, 34.691463576049706], [-77.43567135871118, 34.69141193441414], [-77.43574737655493, 34.69130450622047], [-77.43606351043891, 34.69068420694222], [-77.43639260079881, 34.69075830251981], [-77.43660283263678, 34.69061952157889], [-77.43684739967132, 34.690469986463306], [-77.43709117537082, 34.690297200603695], [-77.43712611520161, 34.69024343536328], [-77.4372246045941, 34.69009739346509], [-77.43737319255345, 34.689833915804186], [-77.43847533432397, 34.69016582397275], [-77.43848539167735, 34.690169503952944], [-77.43850224490747, 34.690183853303125], [-77.43902449043362, 34.69052119746259], [-77.43914872353083, 34.69077753611704], [-77.43924970684336, 34.690985899388444], [-77.43944527478305, 34.6912819692818], [-77.43963632552575, 34.69146680269188], [-77.43979996024083, 34.691557114311514], [-77.43998810520576, 34.69162079553932], [-77.44039288509882, 34.69194460150523], [-77.44044168849969, 34.69202342438597], [-77.44045486445947, 34.692222653139225], [-77.44054529521611, 34.692872987184444], [-77.44073881315086, 34.693183608235735], [-77.44089084394113, 34.69362155365288], [-77.44116118475765, 34.6942120013672], [-77.44127086147665, 34.69435573738852], [-77.44192620350391, 34.69471676569797], [-77.44218339821897, 34.69486762377159], [-77.44221586160174, 34.69499696390029], [-77.44370799507362, 34.69757571870356], [-77.44381101355694, 34.69775947028958], [-77.44425440126734, 34.69808879671207], [-77.44629022961924, 34.69863656608864], [-77.4473652688163, 34.69984702543222], [-77.44965371142357, 34.7009299666791], [-77.45060050591471, 34.701461298545084], [-77.45171199341351, 34.70160369961001], [-77.45189827250415, 34.70160682263406], [-77.45216657413803, 34.70141390339327], [-77.45305761344277, 34.700843283301126], [-77.45317475694613, 34.70070213858358], [-77.45342083821096, 34.7005729739619], [-77.45361589664186, 34.7008087696821], [-77.45373366570004, 34.70107951520568], [-77.4540982433563, 34.70221071146888], [-77.45415834768235, 34.70236801461763], [-77.45419683367379, 34.70237176326483], [-77.45421484917418, 34.70236565081667], [-77.45423044539265, 34.702337911061306], [-77.45485914718482, 34.70147277974735], [-77.4554164482715, 34.70137418569911], [-77.45578798956727, 34.70125221113967], [-77.45629267963757, 34.70131060723303], [-77.4564955790112, 34.701392102511115], [-77.45698204123204, 34.70155561265773], [-77.45732785220827, 34.70193745228788], [-77.45749352662882, 34.70200327697228], [-77.45779591269685, 34.70227116804279], [-77.45806667859078, 34.70223759433693], [-77.45818246500883, 34.70247347208732], [-77.45817798894959, 34.702632362950034], [-77.45835836336273, 34.70318984978767], [-77.45839284386264, 34.70326641548846], [-77.4583895676422, 34.70327987761048], [-77.45837294269872, 34.703395340502425], [-77.45845039611737, 34.70334016959757], [-77.45893626276725, 34.703663713129515], [-77.45916264463396, 34.703849944787194], [-77.45970982609617, 34.70390240824344], [-77.46018249172946, 34.70378669439145], [-77.46069319466598, 34.704013742175455], [-77.46091347654338, 34.70401170866139], [-77.46142225404287, 34.70393205133277], [-77.46176799900523, 34.70454775735365], [-77.4619977312017, 34.70508475531], [-77.46208430855258, 34.70530856581322], [-77.46212293444091, 34.70568747048856], [-77.46218038135763, 34.70574409422091], [-77.46258420631541, 34.705992708549154], [-77.46268504164676, 34.7062155360532], [-77.46283966300821, 34.70649681116713], [-77.46302900664246, 34.70669986142628], [-77.46303099727866, 34.707236193643766], [-77.46320437029921, 34.707519534329194], [-77.46360683893516, 34.707882734795874], [-77.46389688305067, 34.708675555952496], [-77.46517771106083, 34.708431422429506], [-77.46522012155754, 34.708417256028326], [-77.46527134998857, 34.708354957843405], [-77.46574144967971, 34.707510387776765], [-77.46616108608585, 34.706964642196596], [-77.46636046654702, 34.706201464933244], [-77.46590175576658, 34.70533050484409], [-77.4658191034371, 34.70464172673631], [-77.46519670058957, 34.70417721248313], [-77.46511334192851, 34.70404357112514], [-77.46510883548594, 34.70393561282529], [-77.4647585729252, 34.70347551897619], [-77.4645580049681, 34.703382589304496], [-77.46422510571882, 34.70310380013291], [-77.46370683379482, 34.70232793212851], [-77.46346882204531, 34.70205165316837], [-77.46330660233882, 34.7018467363741], [-77.46320320940401, 34.70171612912067], [-77.46297854386171, 34.70151454670082], [-77.46286382354403, 34.70141141460757], [-77.46269923614965, 34.701311220152114], [-77.46225735338325, 34.70104221848278], [-77.46195178745708, 34.70089940221524], [-77.46166655460786, 34.70049723410635], [-77.46126667449677, 34.70003508012029], [-77.46090430603014, 34.69955105554983], [-77.46053223396427, 34.69926663868358], [-77.46026587750484, 34.69906303208567], [-77.46008689087436, 34.69899952598], [-77.4598789000471, 34.69875472768253], [-77.45954080936541, 34.69833468207628], [-77.45928797683374, 34.69801182613752], [-77.45901651337365, 34.69766074485025], [-77.45833630707013, 34.69717459208508], [-77.45826370891663, 34.697121138324626], [-77.45821299207661, 34.697103412713055], [-77.45813133965689, 34.69702617483129], [-77.45719724381848, 34.696376513097846], [-77.45655856890076, 34.696476629840596], [-77.45630009374358, 34.6968380967472], [-77.45582688717559, 34.69668334309873], [-77.45526714766133, 34.69654780255127], [-77.45521414482799, 34.69655900975857], [-77.45520489930918, 34.696562619175054], [-77.4545461006636, 34.69668025164415], [-77.45438108193812, 34.696693020162314], [-77.4539660722301, 34.69668872401625], [-77.4538982534722, 34.69670448583191], [-77.45385841223856, 34.696689607519566], [-77.45345688377407, 34.696678146992085], [-77.45326318132607, 34.69668452021533], [-77.45276067190173, 34.69670153891422], [-77.45253277732039, 34.69666341536191], [-77.45193625739685, 34.696840989046215], [-77.45147766137626, 34.69634438870471], [-77.45121754142295, 34.69572822142975], [-77.45110756184887, 34.695606061112834], [-77.45103754147435, 34.69551625792774], [-77.45086387705258, 34.695261380359355], [-77.45069710470459, 34.69498733116146], [-77.45064055127904, 34.694908198886196], [-77.4502982813521, 34.694288936322764], [-77.45024537612153, 34.69418034403927], [-77.45017812758962, 34.694055674254095], [-77.4492747776645, 34.69369274427226], [-77.44918303120608, 34.693064499650816], [-77.44900162179248, 34.69271772578241], [-77.44891687018571, 34.692250666575795], [-77.44886177119932, 34.69210983234671], [-77.44883738691668, 34.69208967341524], [-77.44882537694534, 34.692085076378305], [-77.44879308115844, 34.69204840069504], [-77.44831218518709, 34.69164365045168], [-77.44800035084906, 34.69154631059247], [-77.4480980439874, 34.691283876448175], [-77.44798041134761, 34.69072049916688], [-77.44796392641202, 34.69067798121864], [-77.44796375160149, 34.69066874951723], [-77.44774199264974, 34.690041388363085], [-77.44778175791006, 34.68985189350789], [-77.44793592587015, 34.68915266460095], [-77.44801701605398, 34.689019482909735], [-77.4484974532993, 34.688660221733755], [-77.44845148388706, 34.688053305405255], [-77.44892836415116, 34.687784103656895], [-77.44942708066597, 34.68778732628652], [-77.44997230059654, 34.68746685701906], [-77.45029240467264, 34.6870228034723], [-77.45097363905938, 34.68687063586976], [-77.45132618071307, 34.68682204615096], [-77.45198764894167, 34.68680271313737], [-77.4523148207465, 34.686664317519394], [-77.45310937245438, 34.68632727468547], [-77.45342358124674, 34.68615892055105], [-77.45390619946879, 34.685592335585206], [-77.45397382693326, 34.68551139537959], [-77.45399927389187, 34.68546995023], [-77.45425574625031, 34.68505092268548], [-77.45441622702526, 34.68479086979329], [-77.4545789413134, 34.68460487634849], [-77.45468539670046, 34.68448319081676], [-77.45495094672317, 34.68417964703325], [-77.4549530108406, 34.68417661137231], [-77.45442707542952, 34.683790167380806], [-77.45430730343158, 34.683950936920375], [-77.45425206661871, 34.68402508036601], [-77.45420604068414, 34.684195046783316], [-77.45408488484617, 34.68424948619723], [-77.45396350708378, 34.6842856106615], [-77.45369537867332, 34.68429606968698], [-77.45368120755992, 34.684337390642575], [-77.45362408863801, 34.684351499940924], [-77.45339920972464, 34.68462411289893], [-77.45295146574185, 34.68446177119464], [-77.45241291783377, 34.68434669293789], [-77.4523444719382, 34.68434498160346], [-77.4523068385698, 34.684334214181405], [-77.4521136869632, 34.684302251243395], [-77.45205448390769, 34.68429562231685], [-77.45203618644342, 34.684303154046226], [-77.45183618565488, 34.68431267786944], [-77.45169652707926, 34.68436986437185], [-77.45144048042856, 34.68441360557731], [-77.45107829184882, 34.68429196407435], [-77.45081416205286, 34.6841377022384], [-77.45080352650113, 34.68413417701581], [-77.45079800165651, 34.684128210572155], [-77.4505775549153, 34.6841248378254], [-77.45047587751077, 34.68415933468145], [-77.45034004722439, 34.68411050100236], [-77.44999089932452, 34.68401881346438], [-77.44987601055769, 34.68401789565823], [-77.44977970455217, 34.683942392561434], [-77.44959060287275, 34.68389692989028], [-77.44949815745579, 34.6837781448147], [-77.44941703994556, 34.683723531954044], [-77.44930719681986, 34.68376904204712], [-77.4492049569466, 34.68375073832466], [-77.4489641484455, 34.68376037674648], [-77.4486211379602, 34.68392575620019], [-77.44845340196136, 34.684017712746034], [-77.44789069777387, 34.684235968641524], [-77.44776066991327, 34.68438081969124], [-77.44760870106144, 34.68440460278809], [-77.44719064702045, 34.68444104853041], [-77.44692547335454, 34.68440596368195], [-77.44686643973826, 34.684414643499785], [-77.44669454769915, 34.684502384316296], [-77.44653131015245, 34.68458700086846], [-77.4465176332527, 34.684592212171346], [-77.44650396966755, 34.684599856173904], [-77.44645699423035, 34.68460157185775], [-77.44611257648069, 34.68467785576644], [-77.44580582632679, 34.684798305610535], [-77.44573625126239, 34.684810454342696], [-77.44557237635459, 34.684810801695754], [-77.44546166277316, 34.68488054971671], [-77.4453326167998, 34.68489842356478], [-77.44527567007646, 34.68498659073087], [-77.4451003613914, 34.685022061137225], [-77.44500902946533, 34.685117211893726], [-77.44495175851827, 34.68515286877746], [-77.44463783663409, 34.6852582014409], [-77.44456851639973, 34.6852984053983], [-77.44446901588739, 34.685356113205856], [-77.44434158301752, 34.685430176081184], [-77.44430059492322, 34.6854546784859], [-77.44427045305127, 34.685473719163774], [-77.44418801574358, 34.68554892051069], [-77.44416077780997, 34.68557513474959], [-77.44416103547617, 34.685600412770356], [-77.44414908600663, 34.68571080454304], [-77.44417327847839, 34.68599423770469], [-77.44417335895267, 34.685998804759436], [-77.44417270648, 34.68600172562533], [-77.44417415700445, 34.68600919189266], [-77.4442806059717, 34.68659532540429], [-77.44406817252445, 34.686938194910624], [-77.44402705638595, 34.68706571658433], [-77.44394476862982, 34.68711605451359], [-77.44384499500555, 34.687147523110646], [-77.44366266226943, 34.68710749470995], [-77.44320709562695, 34.687137529597216], [-77.4430099028178, 34.68708349164777], [-77.44221667270706, 34.68681835766593], [-77.442079948929, 34.686603499634394], [-77.44194533493618, 34.68648522749487], [-77.4416511801949, 34.6863581858959], [-77.44145013066657, 34.68656556657859], [-77.44137112069973, 34.68669623128404], [-77.44112805580446, 34.686998544144416], [-77.44070030078636, 34.686942604531666], [-77.44064809497797, 34.68696177809815], [-77.44053366070743, 34.686962476907745], [-77.44024976001525, 34.68705841970382], [-77.44002317658826, 34.68706822331877], [-77.43974746990018, 34.68695635977254], [-77.43956099986131, 34.68645063300226], [-77.43941682314681, 34.68620158209576], [-77.43946522107271, 34.68602987938194], [-77.43958193156438, 34.6859668874588], [-77.43965865011606, 34.685654225862876], [-77.4396898735402, 34.68554938536158], [-77.43970639390304, 34.68542261773838], [-77.43972768502417, 34.68517900209957], [-77.43958072326453, 34.68495218082403], [-77.43978211675419, 34.68479868613021], [-77.43978969633906, 34.684745726079285], [-77.4397956350551, 34.6847042310739], [-77.43980874563599, 34.684612626335465], [-77.43978756674389, 34.6845594449135], [-77.43970712314096, 34.68451797967013], [-77.43966625964998, 34.684423047013496], [-77.43958308545193, 34.68434655911167], [-77.43954344397396, 34.6842957444008], [-77.43937721079081, 34.68398610097228], [-77.43919165607015, 34.683698061496564], [-77.43916942968201, 34.683626438862156], [-77.43912694638483, 34.6835202812953], [-77.43885441221721, 34.683282324174556], [-77.43860306905596, 34.683116118349346], [-77.43853135834618, 34.68300000542402], [-77.43829143730768, 34.68282424962866], [-77.43809027904602, 34.68267363642716], [-77.4377174800197, 34.682446963319826], [-77.43758671073513, 34.682199287019344], [-77.43744962602139, 34.681970847428644], [-77.43755021533764, 34.68189820186484], [-77.43764510733874, 34.68158437633666], [-77.43766470061442, 34.6814870068183], [-77.43770152252947, 34.681397801352915], [-77.43769132454398, 34.68134188274907], [-77.43768168238101, 34.68131707728448], [-77.43766152279619, 34.681242723814464], [-77.43757228322232, 34.68118653923644], [-77.43755885506349, 34.681187900942064], [-77.4375329295482, 34.681184806345556], [-77.4373484002685, 34.68119443394159], [-77.43723009537314, 34.68121688134348], [-77.43713889783785, 34.68122583572905], [-77.43693481582493, 34.68123178015674], [-77.43681637846777, 34.68144636231017], [-77.43630201156543, 34.68125225706957], [-77.43599922368111, 34.68104180025689], [-77.43590274814406, 34.68087087625504], [-77.43577895303254, 34.680577812702694], [-77.43578713178235, 34.68055091976038], [-77.43570352727777, 34.68038610080153], [-77.43569845402757, 34.68038014611617], [-77.43557520410525, 34.68029250290796], [-77.4354911818133, 34.6802515450501], [-77.43537481394179, 34.68021143191465], [-77.43527553493387, 34.680220916283844], [-77.43511869400851, 34.68016661815784], [-77.43495056373052, 34.68023680193053], [-77.43468220639637, 34.680200828937835], [-77.43464441605866, 34.68018761329566], [-77.43457706961523, 34.68018673533804], [-77.43445020431903, 34.68019544185285], [-77.43431094977123, 34.680232864953254], [-77.43426309613334, 34.68026344749391], [-77.43422867678854, 34.680285444239956], [-77.43409055712678, 34.68035527168054], [-77.43393605361838, 34.68042133523791], [-77.4339097362803, 34.68043355669242], [-77.43388493680548, 34.680444761151776], [-77.43356998770867, 34.68057927326888], [-77.43354448438407, 34.680584225691064], [-77.43342220602966, 34.68056246372542], [-77.43308245678712, 34.68057668131815], [-77.43291254497507, 34.68063694769279], [-77.43267289200921, 34.68065490450653], [-77.4322845719284, 34.68059274823138], [-77.4321150787861, 34.68049075971773], [-77.4320142370241, 34.68041976008292], [-77.43187041471796, 34.680423761596415], [-77.43184859257619, 34.68042899112133], [-77.43166923812176, 34.680504858739376], [-77.43166700339323, 34.680506020831224], [-77.4316655385989, 34.680507165010155], [-77.43166224995043, 34.680510650166696], [-77.43158599774208, 34.680619112248394], [-77.43156633977287, 34.68071535761131], [-77.4315550681832, 34.68074806077876], [-77.43150747301124, 34.68099302946621], [-77.43150421333588, 34.681009806585585], [-77.43150142320995, 34.68102416672855], [-77.43146548025902, 34.68120916131984], [-77.43145423136743, 34.68126705818957], [-77.43145335818261, 34.681271552411566], [-77.43145133083357, 34.68127515641514], [-77.43144334383487, 34.681285676776696], [-77.43132830309027, 34.68144793176245], [-77.43129390287775, 34.681495316530025], [-77.43122699331279, 34.68158509940697], [-77.43113200537978, 34.68171822697024], [-77.43107749149418, 34.681785709530786], [-77.43100185007629, 34.681902265535136], [-77.43097373496921, 34.681942406034246], [-77.43095898995858, 34.6819658872734], [-77.43091928663432, 34.681989666122874], [-77.43080619125907, 34.6820899924499], [-77.43050992621635, 34.68233078022255], [-77.4305135991196, 34.68234054330307], [-77.43049660175656, 34.682343246354385], [-77.4301668368318, 34.6825403810442], [-77.43002334324163, 34.68253386938758], [-77.42979359526335, 34.6825583258854], [-77.4296481561608, 34.682596925723], [-77.42932121906057, 34.682653546079024], [-77.42907725405193, 34.682819474840976], [-77.42899962856566, 34.682875617967824], [-77.42895225675545, 34.68291260330223], [-77.42883014620088, 34.68297245156546], [-77.42870584512805, 34.68299579459859], [-77.42864044974556, 34.6830362357119], [-77.42861424122094, 34.68307391589373], [-77.42855968885479, 34.68309116054144], [-77.42850906415418, 34.683122232670094], [-77.42846653961047, 34.68312583055928], [-77.42842990927844, 34.68319891455349], [-77.42841786254934, 34.68328476650542], [-77.42843045062179, 34.68344076133518], [-77.42818865885022, 34.68374598249917], [-77.42821281035106, 34.68377211935274], [-77.4281836021997, 34.68378504251074], [-77.42815112829418, 34.683805614834085], [-77.4281078937695, 34.68377968968346], [-77.42751428903836, 34.68379195183944], [-77.42735922240347, 34.68364576526929], [-77.42727348064551, 34.68351690969888], [-77.42717126174774, 34.683625625350416], [-77.42707067373001, 34.683652179451954], [-77.42696127894594, 34.683656243066096], [-77.42690097846034, 34.68369697703523], [-77.42679943587335, 34.68376557077902], [-77.42675025493182, 34.68381964424851], [-77.42670063598122, 34.68392061935855], [-77.426690375701, 34.683938469206424], [-77.42668236635522, 34.68394810626955], [-77.42662034110575, 34.684053741945], [-77.42656370172, 34.68412803371303], [-77.42645410752829, 34.68427513624994], [-77.4264379751402, 34.684296415988484], [-77.42637573049126, 34.68440487838582], [-77.42632597491306, 34.68448724176342], [-77.42631973870893, 34.684507675996], [-77.42631206147459, 34.68452916141479], [-77.42631457564566, 34.68461620833587], [-77.42630801900765, 34.684754037089434], [-77.42631466088352, 34.684785438035426], [-77.42630458525298, 34.684826220350224], [-77.42628790929234, 34.6849856180009], [-77.42628815767509, 34.68505570618558], [-77.426290613991, 34.68509608359945], [-77.42630867859711, 34.68513276831314], [-77.42630270671033, 34.68514683415983], [-77.42631963204927, 34.68515233162743], [-77.42637631897723, 34.685171911010244], [-77.42640494593014, 34.6851772888274], [-77.42646866250165, 34.68519093449464], [-77.42653851859271, 34.68520870800673], [-77.42670938699612, 34.685256101295074], [-77.42676405242794, 34.685277371079884], [-77.4268146920175, 34.68528630652082], [-77.42706191397794, 34.685355267112996], [-77.42735597986443, 34.68542341846928], [-77.42736211166309, 34.685425092309394], [-77.42737223873753, 34.68542585057867], [-77.42767481703436, 34.685451693163955], [-77.42790567214595, 34.685574265679676], [-77.42797457640481, 34.68552303353843], [-77.42800447705159, 34.685608373319134], [-77.42807230392094, 34.68584670005651], [-77.42810902737615, 34.685972106637024], [-77.42808595721257, 34.68602074912714], [-77.4279398724557, 34.68637805863394], [-77.42789750052094, 34.68645719705487], [-77.42780670420147, 34.68658367197062], [-77.427647653467, 34.68692888572127], [-77.42749344753781, 34.68714394005976], [-77.42730556523162, 34.68736831399722], [-77.42700219103607, 34.687812177529295], [-77.42699747253876, 34.68781963289079], [-77.42699441594614, 34.687823827407065], [-77.42698348922875, 34.68784073733086], [-77.42677057641974, 34.688205753340476], [-77.4267052707446, 34.68827650961138], [-77.42649383687805, 34.6884255569216], [-77.42646700477012, 34.68845732504884], [-77.42632625026822, 34.68854063635793], [-77.42617758274432, 34.68865102525575], [-77.42614045779017, 34.68867133498664], [-77.42609805511114, 34.68868598475388], [-77.42590690177553, 34.688835891756085], [-77.4258195897639, 34.68889463197513], [-77.42570476093157, 34.68902317649776], [-77.42569856853305, 34.689042564616436], [-77.42565011595475, 34.68912662748841], [-77.42558414386548, 34.68925759357084], [-77.42554618722056, 34.689312537417806], [-77.42546310412747, 34.689519286433416], [-77.4253596466347, 34.689638457477194], [-77.4251511759321, 34.689969265827706], [-77.42512220298708, 34.6899981598381], [-77.42505252514317, 34.69008434253547], [-77.42486948583188, 34.6903328912365], [-77.42481741266812, 34.690411608276925], [-77.42458533767221, 34.690606241144366], [-77.4243623495394, 34.69081152554449], [-77.4242708804653, 34.69085003184135], [-77.42417642246195, 34.690897187585435], [-77.4239448628283, 34.69106492651162], [-77.42378766026255, 34.69116960193186], [-77.42361158363434, 34.69126795060711], [-77.423372973635, 34.69145895167142], [-77.42330612099889, 34.69151645710972], [-77.42326854576284, 34.69154711628661], [-77.42308012971014, 34.69168069773747], [-77.42299230792015, 34.69175131270401], [-77.42296466758948, 34.6917625569433], [-77.42273003395336, 34.691917845247815], [-77.42266564767516, 34.69196516471881], [-77.4225566508652, 34.69206515004922], [-77.42235903293212, 34.69221179384526], [-77.42222775157467, 34.69230124547051], [-77.42206860523065, 34.69248489201535], [-77.4217747161519, 34.692552502201146], [-77.42165053440787, 34.692549288930266], [-77.42151768515357, 34.6926119676378], [-77.42132524490799, 34.69276539083658], [-77.4213102489972, 34.692865552619544], [-77.42121634848856, 34.693065654257936], [-77.42116989151066, 34.693259350021805], [-77.42088701346539, 34.693405197849856], [-77.42084090393473, 34.6934694100876], [-77.4208127378565, 34.693483567589276], [-77.42050292636395, 34.693625067274766], [-77.42048342074682, 34.69363287949275], [-77.42014584998763, 34.6937516218772], [-77.42010605925569, 34.693763847381334], [-77.42006097226853, 34.693779701707186], [-77.41977778192569, 34.69391614101084], [-77.41974994261906, 34.69392955378158], [-77.41972261585356, 34.69394089421259], [-77.41942710814057, 34.694020568813684], [-77.41933420207319, 34.69399776953496], [-77.41886974675732, 34.69388379089275], [-77.41882971957484, 34.69387031773521], [-77.41878860188898, 34.69385364741125], [-77.4184288238906, 34.69376787706386], [-77.41826893721525, 34.69375192903246], [-77.41821795140213, 34.69376973923872], [-77.4180608588698, 34.69377490172291], [-77.41783490185541, 34.69379022573699], [-77.41770930517546, 34.69379573320698], [-77.4175529538957, 34.693853017482986], [-77.41745608313069, 34.693918811572], [-77.41746123482264, 34.693988504187686], [-77.4172480779732, 34.69432671115733], [-77.41707283838316, 34.694633458758496], [-77.4169001457511, 34.69491042463853], [-77.41676746713017, 34.6950368867263], [-77.41656424286629, 34.69505434856924], [-77.41634428002673, 34.69509293133302], [-77.416229264356, 34.695104528048375], [-77.41607039167141, 34.695179264027495], [-77.41597859349753, 34.695243000726975], [-77.41583668905936, 34.69535362646922], [-77.41555996787598, 34.695559808590346], [-77.41537260808194, 34.69574818217554], [-77.41535272079678, 34.695766860488234], [-77.41529921646347, 34.69581973015318], [-77.41524016375836, 34.69590563357566], [-77.41522589859498, 34.69600204651382], [-77.41526812623651, 34.69621050876073], [-77.4153122445005, 34.69626065105798], [-77.41531956777905, 34.6964095060644], [-77.41537739215856, 34.69661414462774], [-77.41523620075978, 34.6967387292609], [-77.41521956780912, 34.69699404200861], [-77.41487217883264, 34.69689058377993], [-77.41474313911432, 34.69691686136213], [-77.41471747477362, 34.69692106985826], [-77.4146702018119, 34.69692585792306], [-77.41455709622346, 34.69700600772099], [-77.41454123578416, 34.69700691085119], [-77.41454641327334, 34.6970223297961], [-77.41454817483412, 34.697025743345144], [-77.41465953227373, 34.69720167757837], [-77.41466029891721, 34.697202947758825], [-77.41494496399766, 34.697306576341724], [-77.41493700284907, 34.697354057406784], [-77.41501027014121, 34.69739985543498], [-77.41521059416, 34.6975159189731], [-77.41535502154048, 34.69772452342782], [-77.41528631457106, 34.69785124364179], [-77.4152573394837, 34.697969904395215], [-77.41535914820076, 34.698026508563835], [-77.41527662517292, 34.69825620200173], [-77.41529547639789, 34.69832949982763], [-77.41535474423569, 34.69847470176207], [-77.41532773129103, 34.698553630575816], [-77.41536483425578, 34.69864333538324], [-77.4154105109347, 34.69867461657442], [-77.4154911075648, 34.698760613553226], [-77.41560245810172, 34.69881772315783], [-77.41590572853275, 34.699035367599514], [-77.41598740213462, 34.69910349865211], [-77.41602568831402, 34.69912789963836], [-77.41606134598918, 34.69911854518067], [-77.41661908371128, 34.69928634456796], [-77.41662073544852, 34.69928636767743], [-77.41662280721249, 34.699288561749185], [-77.41691321274595, 34.69961000352094], [-77.41699540743699, 34.6998977964582], [-77.41702653847571, 34.69998651929153], [-77.41702861494609, 34.70000822137426], [-77.41702577083728, 34.70010109259343], [-77.41703877620587, 34.70054989676682], [-77.41697402793793, 34.70061086768265], [-77.41681126186802, 34.70099161117562], [-77.41679948926897, 34.70102529583279], [-77.41678132923046, 34.70104382319166], [-77.41674817671779, 34.701059816404154], [-77.41641024748183, 34.70118511366357], [-77.41639196806734, 34.701183234906736], [-77.41624252157365, 34.70122886315928], [-77.41604028049895, 34.70129103464277], [-77.4160201999397, 34.70129539450527], [-77.41599178493546, 34.701301870269546], [-77.41562351394403, 34.701394821223886], [-77.4153476902872, 34.70146937573575], [-77.41522048310254, 34.70148387389004], [-77.4148845485986, 34.70147366563852], [-77.4146856554878, 34.7015421850173], [-77.4143844146204, 34.70161291345598], [-77.41361685031175, 34.701431414402734], [-77.41345188801014, 34.701375953655244], [-77.41326609998954, 34.701280429062066], [-77.41286888876981, 34.701175833670284], [-77.41268527749757, 34.701078751434366], [-77.4125251427006, 34.70099408202748], [-77.4125274443408, 34.70092867429524], [-77.41253103838116, 34.70082653502079], [-77.41253716135117, 34.700652518831006], [-77.41248777232559, 34.700563319239], [-77.4124270903794, 34.70048815448877], [-77.41236891885218, 34.70038971966797], [-77.41220153754122, 34.700287719635966], [-77.41216682151428, 34.70028026680137], [-77.41212845544541, 34.700266845081345], [-77.41187224237066, 34.70019085376066], [-77.41161873365147, 34.699772112080815], [-77.4116465424581, 34.699575157949326], [-77.41168788593166, 34.69944775470878], [-77.41172947169935, 34.699251741604314], [-77.41175779098855, 34.699188016515066], [-77.41177383608466, 34.699075713601765], [-77.41174569343698, 34.69897786092002], [-77.41163492329802, 34.698797166778405], [-77.41152578502164, 34.6987328302119], [-77.41143092027934, 34.698588182898646], [-77.41131869710377, 34.698372861028474], [-77.41134384131045, 34.69827816257275], [-77.41122195319994, 34.698010022326805], [-77.41116868234482, 34.697989086342204], [-77.4111291304243, 34.69792348899847], [-77.41114969825782, 34.69781952563734], [-77.41096221989777, 34.697305980735365], [-77.41093218998078, 34.697195035370115], [-77.41087435916808, 34.69699716768446], [-77.41077647225822, 34.696813640728266], [-77.41078286473332, 34.69668411757202], [-77.41070242677664, 34.69648431419348], [-77.41067761864053, 34.69640852751513], [-77.41064558447091, 34.696356530794645], [-77.41063997022027, 34.696237800346914], [-77.41060139251637, 34.69606151185713], [-77.41058748168346, 34.69599977850749], [-77.41055930315852, 34.69587199453796], [-77.4105379761425, 34.69579725501673], [-77.41053426922318, 34.69575847013705], [-77.41050954483701, 34.69565043519151], [-77.4104959263392, 34.69559162162527], [-77.41044867174942, 34.69544896426814], [-77.41040197114174, 34.69530874263933], [-77.41029897616941, 34.695227426648096], [-77.41032818829501, 34.69512725238473], [-77.41025274721649, 34.694856389578156], [-77.41024071557722, 34.69481708976839], [-77.41024209486811, 34.69480480736565], [-77.41024207330503, 34.69475435803584], [-77.41024251772043, 34.69458145823872], [-77.41022860127116, 34.694533293015134], [-77.41020369250522, 34.694374480072725], [-77.41010348380695, 34.69420995822084], [-77.41049631300237, 34.69380607628775], [-77.41050061584143, 34.69378979101627], [-77.41050533536443, 34.69377322160037], [-77.41052772558821, 34.693768026705115], [-77.41082921512518, 34.69355478733685], [-77.41091089376472, 34.69355146105711], [-77.41101739835175, 34.69348849125123], [-77.41108993328832, 34.69348649222546], [-77.4111309076059, 34.69345120075213], [-77.41115335141464, 34.693336775039285], [-77.41115887161618, 34.69330653095179], [-77.4111297362262, 34.6931712336633], [-77.4111432054045, 34.69308989209454], [-77.41106675111209, 34.69286963898779], [-77.41125809779251, 34.6927599607962], [-77.41127679978788, 34.69266357359261], [-77.41128747944269, 34.69258336303952], [-77.4112980971453, 34.692531246623375], [-77.41123515145708, 34.69243178150721], [-77.41118325848375, 34.69240366384562], [-77.41096417157739, 34.69227463408791], [-77.41096140890994, 34.69227303195431], [-77.41096079087745, 34.69227265057625], [-77.41052339994631, 34.692009393559374], [-77.41048520802367, 34.691701850299864], [-77.4103910111044, 34.69151497650937], [-77.4104734692486, 34.691476702420104], [-77.4105815621532, 34.69109244067201], [-77.410531948658, 34.69100517289569], [-77.41056687071342, 34.69088132761067], [-77.410625194427, 34.690478682554186], [-77.41054028467538, 34.69021696678736], [-77.41056067867311, 34.689896992316925], [-77.41054543175476, 34.689768474551286], [-77.41054879086846, 34.6896132747707], [-77.41049688300572, 34.68944856101106], [-77.41047494189642, 34.6893515334009], [-77.41046973229189, 34.68930605374393], [-77.41045842926954, 34.68920769370831], [-77.41040497581079, 34.688934373749134], [-77.41039813652007, 34.68872188507475], [-77.41039599206346, 34.688690464784166], [-77.41038488932426, 34.688496407468065], [-77.41036535195107, 34.68843085478269], [-77.41030755221607, 34.68821278060878], [-77.41028244514219, 34.688122286219745], [-77.41027815805631, 34.688094584850475], [-77.41026216385629, 34.68804611139058], [-77.41014870229091, 34.68770224193234], [-77.410033343331, 34.68747600405263], [-77.41019048173524, 34.68727315538199], [-77.41019795811413, 34.68723535020582], [-77.41023814277767, 34.687022590263766], [-77.41024174275519, 34.68698980823957], [-77.41024480139698, 34.68698793088014], [-77.41025436493938, 34.686966573095674], [-77.41033865307493, 34.6867673667976], [-77.4103685322789, 34.686717849731394], [-77.41037484241693, 34.686477263440054], [-77.41039756032623, 34.686259395292666], [-77.41040454309223, 34.686208097673905], [-77.41040149908207, 34.68612201830034], [-77.41038752484246, 34.68592258346488], [-77.41036885721869, 34.68582502352853], [-77.410354811092, 34.685513248039804], [-77.41033285506855, 34.685393697405694], [-77.41029749417862, 34.68533196180613], [-77.410347603192, 34.68528572023438], [-77.41034889475989, 34.68494066116991], [-77.41028977796717, 34.68477014311697], [-77.41034549163788, 34.68453412100223], [-77.41034663790016, 34.68423092145469], [-77.41046407282445, 34.683999922128976], [-77.41016808454592, 34.68360932014694], [-77.4105225074878, 34.683327378819754], [-77.41104970596314, 34.68311357689249], [-77.41144705888337, 34.683343386486], [-77.41160644078165, 34.68340395602534], [-77.41166405814006, 34.68349931922606], [-77.4120532407606, 34.6835867683942], [-77.41217775962991, 34.68364397783848], [-77.41249610739352, 34.68359854838163], [-77.41251600493095, 34.68359556457431], [-77.41252110479174, 34.68358811972891], [-77.41248590761732, 34.68330214605594], [-77.41243852399381, 34.68317622198618], [-77.41239652959959, 34.68288844041264], [-77.41219351494433, 34.682385739814954], [-77.41195712700082, 34.68199888754888], [-77.41235587677892, 34.681837420818404], [-77.41255119009826, 34.681647649997984], [-77.41266977650923, 34.68160274241946], [-77.41278047781098, 34.6814483257881], [-77.41279541769379, 34.681434193361056], [-77.4128839084229, 34.68120501094706], [-77.41288393077798, 34.68120496954886], [-77.41288393685011, 34.68120492572675], [-77.41294364844939, 34.68095691208853], [-77.41268302795805, 34.680876305302604], [-77.41265772302135, 34.68087981721311], [-77.41262250913375, 34.68086771815044], [-77.41236475066987, 34.68078509338921], [-77.41202808164769, 34.68066936448284], [-77.41180351116336, 34.68051033013326], [-77.4114663060657, 34.68014978961785], [-77.411356061186, 34.68005703461202], [-77.41107466714821, 34.67974172393346], [-77.41079147450273, 34.67957942575132], [-77.41067239899078, 34.6794495607121], [-77.4106338870676, 34.67929937248972], [-77.41009757308888, 34.67879668180758], [-77.40979929355011, 34.67858002252868], [-77.40949872923788, 34.678153823746825], [-77.40905506872886, 34.677628606570316], [-77.40897676338167, 34.67747889429583], [-77.40887531068257, 34.67734519162523], [-77.40853914894154, 34.67709031974289], [-77.40834397616202, 34.67696726424688], [-77.40823223757067, 34.67689681265232], [-77.40796850199926, 34.676689206458335], [-77.4078624314033, 34.67641742015615], [-77.40779717646079, 34.67618563000436], [-77.4077897919404, 34.676067533115805], [-77.4077338413469, 34.67577286890322], [-77.40798676429846, 34.675988082741085], [-77.40831790442226, 34.675693240825495], [-77.40831874002738, 34.675233378188075], [-77.40833003135931, 34.67513835927133], [-77.40830930692336, 34.67507930025369], [-77.40830433444489, 34.674891452015935], [-77.40825475542346, 34.674209377646235], [-77.40814024147816, 34.67395368018946], [-77.40844291626452, 34.67323819638748], [-77.40851425410504, 34.672966332114086], [-77.40866004777732, 34.67279902508068], [-77.40891142840218, 34.67279496932826], [-77.4090688022028, 34.67260129898001], [-77.40916414030616, 34.67249096300656], [-77.40927715176358, 34.672312262095666], [-77.40941042731913, 34.672161742478735], [-77.40941970672826, 34.67214604114693], [-77.40951337793095, 34.67195055833148], [-77.40954595476597, 34.67188532467439], [-77.40954205503633, 34.671648687600296], [-77.40961753447154, 34.67137278866073], [-77.40977783970553, 34.67117208821785], [-77.40991861849534, 34.67111720003877], [-77.4101098354384, 34.67075737783788], [-77.40993022680352, 34.67066630045202], [-77.40957638259334, 34.670498564420505], [-77.40933628472004, 34.67045842032869], [-77.40908440266526, 34.670500567660156], [-77.40893666187822, 34.67049509375488], [-77.40865109146729, 34.670539825314606], [-77.40860107747305, 34.67054765939734], [-77.40847869923536, 34.67071738463682], [-77.40835122255173, 34.67079740392261], [-77.40832868865124, 34.670830983658135], [-77.40826626093933, 34.67092259216625], [-77.4082364285095, 34.670983686441254], [-77.40816090905517, 34.67112415163437], [-77.40817430725703, 34.6711699707375], [-77.40815192055409, 34.67121951993012], [-77.40804334017321, 34.67136738991929], [-77.40793055119792, 34.67160553503018], [-77.40791275712289, 34.67163755242355], [-77.40783136361712, 34.67170797626652], [-77.40754680125661, 34.67206859098951], [-77.4074462031526, 34.67230949674669], [-77.40673178973144, 34.67234245211658], [-77.40662280155999, 34.67245874716842], [-77.4062169624274, 34.67327415277187], [-77.40621424030206, 34.673279562960886], [-77.40621150873123, 34.673282259527845], [-77.40619184151916, 34.673335715700226], [-77.40603023898791, 34.67377429069001], [-77.40605389423607, 34.67381203985953], [-77.40647828300176, 34.67405780918686], [-77.40678418361215, 34.674219203230926], [-77.407151612442, 34.67444669333632], [-77.40738927123905, 34.6745704429402], [-77.40740779277596, 34.6748155792286], [-77.40742718112433, 34.67527117269624], [-77.40743149646416, 34.67538300398937], [-77.40729367908824, 34.67550299825378], [-77.40705878989486, 34.67581168525702], [-77.40688874348663, 34.67588668252229], [-77.40673682536864, 34.67618163812353], [-77.40675487427711, 34.67626444417542], [-77.40659648841833, 34.676363534554035], [-77.4064318906521, 34.676635677421274], [-77.40637034590272, 34.67668898895792], [-77.40627107949945, 34.67674669272038], [-77.40620507649554, 34.67684979900855], [-77.40623615508413, 34.6769215873053], [-77.40626786947139, 34.676945086143704], [-77.40639621934608, 34.67699323078473], [-77.40641217497028, 34.67699995062781], [-77.4066765932456, 34.67709943893194], [-77.40672693990594, 34.67711838192083], [-77.40701268039697, 34.67713901583552], [-77.40723378958984, 34.677313335636256], [-77.40738359632596, 34.677602750937915], [-77.40747235154785, 34.67776438988267], [-77.40782587100543, 34.67795901667206], [-77.40775158603137, 34.67829066884178], [-77.40785451661617, 34.678657418246665], [-77.40802297778049, 34.678769469743784], [-77.40800176530149, 34.678937352440094], [-77.4083087093084, 34.67930175837234], [-77.40843087717415, 34.67949198911847], [-77.4085230084668, 34.67967889770217], [-77.40873648012546, 34.68003735964893], [-77.4088510858121, 34.680209374322274], [-77.40888267612956, 34.68036389247476], [-77.40892697239227, 34.680485950205956], [-77.40901534318539, 34.68058719331225], [-77.40918419976457, 34.68070409958874], [-77.40944854535371, 34.68085281649854], [-77.40972026708418, 34.681065778353705], [-77.40982258910638, 34.68125194003048], [-77.40995232136837, 34.681535342824084], [-77.40998417912026, 34.6816986679838], [-77.41001000106893, 34.68187664407498], [-77.40979903110616, 34.682143961700234], [-77.40939699451611, 34.68218210322878], [-77.40936960032077, 34.682189670340385], [-77.40933670956605, 34.682200150220055], [-77.4089837431719, 34.68230665423099], [-77.40868764236026, 34.68241876543874], [-77.40861165059417, 34.682446155090574], [-77.40842391057706, 34.682439837832376], [-77.40824805187437, 34.68259954999775], [-77.40800137641662, 34.682575693982486], [-77.40780671729406, 34.68262578612588], [-77.40775429179817, 34.6827646247505], [-77.40758230911084, 34.68300687619016], [-77.40727496544903, 34.68287122272662], [-77.40704753646506, 34.68288026305713], [-77.40688674361098, 34.682814162299465], [-77.40669209884321, 34.682671111671034], [-77.40654370949416, 34.68251091618688], [-77.40634203468213, 34.68227038042379], [-77.40627957315255, 34.68217475932715], [-77.40622100415872, 34.68208509635595], [-77.40613300827026, 34.6821324017839], [-77.40604535667141, 34.68216654985494], [-77.40576310757908, 34.682275487747084], [-77.40549581804098, 34.682376376041105], [-77.40539241902344, 34.68241728496822], [-77.40522708100593, 34.68243929895314], [-77.40480742676817, 34.68254060115355], [-77.4046013125414, 34.68242846586598], [-77.40446631354963, 34.68239867478581], [-77.4042289603377, 34.68232531375012], [-77.40393569715513, 34.68225976889809], [-77.403921737304, 34.68225599482177], [-77.40362418905005, 34.68220084395848], [-77.40335650383393, 34.68205502223744], [-77.40333554346012, 34.682045221728316], [-77.40306376370224, 34.68192328700999], [-77.4028128853331, 34.68183543558005], [-77.40272896062352, 34.68180108335184], [-77.40247439739375, 34.68174564643928], [-77.40196503904293, 34.6812975707699], [-77.40196437524996, 34.68129668758684], [-77.40196383153176, 34.681295989575], [-77.40195993952744, 34.6812911722626], [-77.40166090839462, 34.6809769332187], [-77.40166922761583, 34.68091445841357], [-77.4014885743924, 34.68072446286323], [-77.40144726656655, 34.68061971417486], [-77.40125734164754, 34.68049071446397], [-77.40123916117484, 34.68047938789498], [-77.40099792789262, 34.68036080152541], [-77.40095878649237, 34.680341194246644], [-77.40050396965937, 34.680120497914324], [-77.40041673376953, 34.68000027599523], [-77.40001535513382, 34.67960610202577], [-77.39990233709993, 34.67956390780504], [-77.39986432937829, 34.67949463127129], [-77.39982819896981, 34.679431307427905], [-77.39985229557692, 34.6793393002744], [-77.39992429414579, 34.67890579860679], [-77.40001660256605, 34.678859838205504], [-77.40021081431561, 34.67845747102496], [-77.40020428361623, 34.67844466355871], [-77.40020958626853, 34.67842730011424], [-77.40018267925149, 34.67787795261539], [-77.40030844708745, 34.67752410048696], [-77.40039026446055, 34.677226327065235], [-77.40058512829904, 34.67720698569101], [-77.40076039468454, 34.67708365406513], [-77.40087750286085, 34.67700288936449], [-77.40093020944622, 34.67698736460271], [-77.40099504811909, 34.67689794673191], [-77.40105375278077, 34.67681536416335], [-77.40106109305233, 34.67676384959552], [-77.40104097080015, 34.67673941890297], [-77.40095949940019, 34.67658306180722], [-77.4008430384163, 34.676470583823075], [-77.4008051571419, 34.67644744407712], [-77.40077704932631, 34.6764359993941], [-77.40075866192578, 34.67640214303618], [-77.40042908493547, 34.67613481052577], [-77.40032674439003, 34.675886932941424], [-77.40025430807351, 34.67576138559918], [-77.40018145337388, 34.675640937132414], [-77.40030411029738, 34.6755887492451], [-77.40036508266164, 34.675268857331474], [-77.40038046397353, 34.675151457686084], [-77.40042155401525, 34.67503261786038], [-77.4005658532295, 34.67473879067806], [-77.40052754821674, 34.67464380039649], [-77.40061296158058, 34.674597516345244], [-77.40067369203808, 34.67441538791715], [-77.40067737084755, 34.67432875942396], [-77.40066152536129, 34.674252560536786], [-77.400617449509, 34.67411612596951], [-77.4005635055391, 34.67396363480805], [-77.40052584935847, 34.67386282775344], [-77.40050077756315, 34.673795709095074], [-77.40038305776937, 34.67348056671669], [-77.40037725218308, 34.67347848493163], [-77.40037871801596, 34.67347340575352], [-77.40037804590075, 34.67346481527491], [-77.40033327299221, 34.67327366706581], [-77.40028624768411, 34.673161460228414], [-77.40025599528344, 34.67308273837491], [-77.40010949008646, 34.67282000675322], [-77.40000491070973, 34.672574004802286], [-77.39988850333285, 34.672343376261814], [-77.39981065840271, 34.672156241700826], [-77.39961491869624, 34.671708361249564], [-77.39955272087285, 34.671590789281424], [-77.3995470984063, 34.671504822753825], [-77.39949047101668, 34.671264089419864], [-77.39946747004146, 34.67118002623644], [-77.39946034418924, 34.67113601515119], [-77.39942246107766, 34.6709020377478], [-77.39939572992213, 34.670763627899014], [-77.39939332460163, 34.67075204963526], [-77.39937398215982, 34.670699301968064], [-77.39933544663491, 34.670591998934434], [-77.39931018775722, 34.67054842515428], [-77.39908347127275, 34.67044755283361], [-77.3989599656156, 34.67039594635622], [-77.39871245052102, 34.6703999657105], [-77.39840604320386, 34.67028379183909], [-77.39816825421724, 34.670066693806035], [-77.39785957934609, 34.669619084979466], [-77.39769857696356, 34.6694762138288], [-77.39750959642815, 34.66931874517458], [-77.39734582219802, 34.669251069149496], [-77.39715686353223, 34.66913440391258], [-77.39703459124058, 34.669070551052016], [-77.39663770478917, 34.66884054334204], [-77.39659834896148, 34.66885059769135], [-77.39655122206408, 34.66877845965923], [-77.39657199357903, 34.6687330004825], [-77.39659074482324, 34.66836304394808], [-77.39665225377249, 34.668254676447226], [-77.39661524215587, 34.66805541299479], [-77.39659468391217, 34.66791508497871], [-77.39639216755607, 34.66760445112138], [-77.39637191349208, 34.66756168564813], [-77.39634272610019, 34.6675213350085], [-77.39619600787212, 34.6673692819642], [-77.39609365126896, 34.667275273853704], [-77.39594360561503, 34.66744738912743], [-77.39587637206341, 34.66759452788895], [-77.39566498446149, 34.66764909172602], [-77.39552358653961, 34.66776552103082], [-77.39505776345638, 34.66769637096204], [-77.39500564491465, 34.667713323930585], [-77.39499064169458, 34.667691483540395], [-77.3947137572558, 34.66761503559933], [-77.39469458612268, 34.66759180596293], [-77.3944666069333, 34.667532362338356], [-77.39441300955943, 34.66754732789649], [-77.39433492083968, 34.66751865778498], [-77.39392497896239, 34.66739427195668], [-77.3938269906301, 34.667358501320365], [-77.39376960658521, 34.667308123846055], [-77.39361250744994, 34.66725704227829], [-77.39354261352315, 34.667234297952874], [-77.39346991177344, 34.66720996207867], [-77.39332568813437, 34.667161796493176], [-77.39324300922034, 34.6671626486211], [-77.39313838981712, 34.667125073652684], [-77.39276132049793, 34.66698647415774], [-77.3926635111567, 34.66695132946328], [-77.39260559011927, 34.666900975702596], [-77.39243938663236, 34.66683374786029], [-77.39238253117091, 34.666815409870566], [-77.39228581191465, 34.66681118799153], [-77.39219206060085, 34.66680313830483], [-77.39205354030156, 34.66684517980238], [-77.39187246037974, 34.66686054658289], [-77.39180122433508, 34.66691184611781], [-77.39154142627893, 34.66702420658727], [-77.39147172741187, 34.66712095685416], [-77.39134625314534, 34.66707486309713], [-77.39121605468736, 34.66703417735607], [-77.39076495236405, 34.66686977248594], [-77.39028153809382, 34.6666696831134], [-77.39018823329971, 34.666648878077574], [-77.38997898436884, 34.666657476145936], [-77.38951778740454, 34.66675141044547], [-77.38942730392014, 34.66676831695588], [-77.38922184479146, 34.66677105260608], [-77.38897790835117, 34.66678116475191], [-77.38886334180611, 34.66679872296142], [-77.38877471277324, 34.66675894957703], [-77.38835260072172, 34.666735461764134], [-77.38829877854177, 34.6667312721523], [-77.38828411515186, 34.66673274299476], [-77.38826586048471, 34.66673246442851], [-77.38769258881969, 34.666709200411105], [-77.38729109505205, 34.66671890674742], [-77.38708743155257, 34.66673268641617], [-77.38682715798612, 34.6666819831414], [-77.38676416176123, 34.666677781112455], [-77.38648803176045, 34.66673630332498], [-77.3863601753321, 34.66664740246195], [-77.38622420103046, 34.66661435693004], [-77.38617910386338, 34.666589731997576], [-77.38600976437023, 34.66657048648263], [-77.38595579644465, 34.66656459617064], [-77.38593949662814, 34.66656442862726], [-77.38591630317198, 34.666564463313925], [-77.38563889379827, 34.66656935129845], [-77.38542931805054, 34.666575842826845], [-77.38533700706832, 34.666578702178086], [-77.38521145630828, 34.666577875516346], [-77.38472696950518, 34.66661901168286], [-77.38445582894816, 34.66654628237026], [-77.38444262082542, 34.66654729030532], [-77.38415980119792, 34.666511423416594], [-77.38387107966517, 34.666377376098986], [-77.38370317741644, 34.6663282744956], [-77.38362146365823, 34.666304377799925], [-77.38338877011641, 34.66617615872135], [-77.38338699493963, 34.66608115148597], [-77.38314348848718, 34.66599008633106], [-77.38311694838197, 34.66599124021314], [-77.38311421630098, 34.66599008701194], [-77.38306408024712, 34.66595092525351], [-77.38259943869635, 34.66570178261554], [-77.38256056444865, 34.66563121710394], [-77.38257145965157, 34.66558138944315], [-77.3823633893212, 34.66548402208784], [-77.38230610571526, 34.66543292519084], [-77.38220370472226, 34.665388286251044], [-77.38210713415032, 34.6653359664588], [-77.38194763469984, 34.665314750289866], [-77.38175974413946, 34.665205666153085], [-77.38163708913439, 34.66515966032463], [-77.38159519398022, 34.665037895306604], [-77.38141649022964, 34.66493528804474], [-77.38137621473112, 34.664771031012734], [-77.38153340048476, 34.66459432412838], [-77.38167231728829, 34.66434394262428], [-77.38172636801087, 34.66423545789236], [-77.3817593465534, 34.66415650179427], [-77.38188536075884, 34.66403695187867], [-77.3820800473907, 34.66380266154367], [-77.38221891162063, 34.66368029207097], [-77.38240357667802, 34.66345133054952], [-77.38246544338122, 34.66333872160296], [-77.38246253982962, 34.663159371693645], [-77.38253783766113, 34.662932252608336], [-77.38288924607873, 34.66222367768263], [-77.38287930245495, 34.6621272276204], [-77.38296938403866, 34.66203859099765], [-77.3830936484226, 34.661932781562825], [-77.38366654566885, 34.66138034993107], [-77.38408373165917, 34.66130354289399], [-77.38413569996573, 34.66146694948627], [-77.38431935515071, 34.661516335169665], [-77.38440321206451, 34.66154321074383], [-77.38483935480724, 34.661510059897424], [-77.3849910608742, 34.661579331147834], [-77.38524341222924, 34.661593100246925], [-77.38534035478642, 34.66158769643886], [-77.38559148612414, 34.6615720591142], [-77.38577392162892, 34.661485214958724], [-77.38586274233272, 34.66141261692905], [-77.38597279401019, 34.66121414490888], [-77.38615643444153, 34.661034855383036], [-77.38644968335993, 34.66067537875732], [-77.38646497235024, 34.66065900817691], [-77.3864606136443, 34.660637665007265], [-77.38643865657956, 34.660278024469015], [-77.38614898662637, 34.660215091803096], [-77.38599535239126, 34.66017860750729], [-77.38559667351626, 34.660138051074284], [-77.38490258686059, 34.65989921485097], [-77.38488426382975, 34.65989159915644], [-77.38487599656143, 34.659888744531514], [-77.38485706615623, 34.65988225457088], [-77.38389818383487, 34.65954732000153], [-77.38348651828102, 34.65934992149826], [-77.38263372666975, 34.658523343337905], [-77.38237721705192, 34.657964597406604], [-77.3822843519399, 34.6577273816584], [-77.38222950998554, 34.657431772778544], [-77.38241137997176, 34.6571928127586], [-77.38239528985237, 34.656919471781116], [-77.38238683162794, 34.65686924709096], [-77.38237256102055, 34.65682457424368], [-77.38228631843083, 34.65657219453811], [-77.38225576951865, 34.65648141629478], [-77.38223984788634, 34.6564674539689], [-77.38208910883499, 34.656237094169754], [-77.38205180937166, 34.65607130947042], [-77.3820139349117, 34.65589687922004], [-77.38191190802976, 34.655439044591574], [-77.38187809915027, 34.6552511764673], [-77.38184516968775, 34.65507255579775], [-77.38183938914322, 34.65443353404923], [-77.38181997141973, 34.65441514037745], [-77.38183236671449, 34.6543936942021], [-77.3818222421217, 34.65426911208899], [-77.38178031659919, 34.65367822529253], [-77.38177740660402, 34.653576962840944], [-77.3819158786359, 34.653137743680794], [-77.38191790620806, 34.65313561419484], [-77.38218550354917, 34.652893737637754], [-77.38229411754914, 34.65282360919957], [-77.38270784820348, 34.65271229778459], [-77.38279609959395, 34.65274588423929], [-77.38294638922753, 34.6527650664887], [-77.38332389059329, 34.6526405632376], [-77.38344086434691, 34.65276760405728], [-77.38348878204455, 34.652888381929706], [-77.3835393091127, 34.65291250711957], [-77.38370256238865, 34.6530393021487], [-77.38399125506916, 34.65327233258941], [-77.38421363740521, 34.653424529155984], [-77.38450499834163, 34.65355183367458], [-77.38434164786355, 34.65322411398226], [-77.38426881587085, 34.65306624988818], [-77.38417469998012, 34.65282507039036], [-77.3840698768056, 34.65271115113019], [-77.38395117682501, 34.65254653761422], [-77.38374488558178, 34.65250944909874], [-77.3837072283857, 34.65250047546442], [-77.3836861400417, 34.65249721175172], [-77.38359562987519, 34.65248273898065], [-77.38341777720088, 34.65245447790755], [-77.38337644021333, 34.652447897187386], [-77.38283458889177, 34.652461098126146], [-77.38273452629716, 34.65244031267254], [-77.38248388001917, 34.65233368411686], [-77.38233080760386, 34.652310334786996], [-77.38206924512096, 34.65231675448757], [-77.38176983885724, 34.65227291199762], [-77.38170972835911, 34.65189820672558], [-77.38172475923602, 34.651625637819684], [-77.38170435621724, 34.65125346995151], [-77.38166536975635, 34.65106027652709], [-77.38143056222714, 34.650736032022515], [-77.38139775804694, 34.650711913423855], [-77.38105180705291, 34.65044532680117], [-77.38086245718347, 34.650326716708946], [-77.38056714939567, 34.65005971544674], [-77.38030178907704, 34.64990105848451], [-77.37982184196497, 34.64923848107411], [-77.37950018104115, 34.64882607876058], [-77.37946717806312, 34.64879222164745], [-77.37943548526182, 34.648779507648186], [-77.37900783390785, 34.64855342692301], [-77.37873206882382, 34.648466444291], [-77.3781543593927, 34.64794660964218], [-77.37795946857452, 34.647809897450664], [-77.37774297646955, 34.64761277937557], [-77.37733495470485, 34.64743588821558], [-77.37726599331562, 34.64740895927693], [-77.37723679048413, 34.64740113649015], [-77.3771731847112, 34.647379932537945], [-77.3768931049811, 34.64728438907679], [-77.37677175617728, 34.64723933518514], [-77.37658281167188, 34.647162670322075], [-77.37654719127028, 34.64715657344271], [-77.37649953279877, 34.647128793331206], [-77.37628538589809, 34.64705412206045], [-77.3760356690999, 34.64698573110721], [-77.37587045030479, 34.64697583111008], [-77.37578217053434, 34.646902293939114], [-77.37552905372053, 34.646840270025024], [-77.37552275479489, 34.646839151836645], [-77.37524172422681, 34.646824247011146], [-77.37519843681511, 34.64681854580776], [-77.37512365848382, 34.646801886912634], [-77.37488620797173, 34.64685796901841], [-77.37470309295155, 34.64674260301121], [-77.37470242065785, 34.64674239661088], [-77.37456480791842, 34.64685185139081], [-77.37444050185714, 34.64683153665192], [-77.37407214024958, 34.64684390461161], [-77.37393790989292, 34.6469185807443], [-77.37376752464814, 34.64687068012401], [-77.3735122262985, 34.64680443038375], [-77.373219168076, 34.64652920959819], [-77.37310889985983, 34.64645466421932], [-77.37304612723669, 34.646337738508976], [-77.37282647782227, 34.646169039384255], [-77.37273393981336, 34.64604869375796], [-77.3726455526845, 34.64597081508827], [-77.37243856100514, 34.645832556406056], [-77.37226422237634, 34.645830495292856], [-77.3720490552886, 34.64563083378826], [-77.37211795136429, 34.645331689038706], [-77.37211624029328, 34.64519958238357], [-77.37219603869195, 34.645071043177076], [-77.37225893899733, 34.644940469644155], [-77.37231089707686, 34.64484470413878], [-77.37235957391087, 34.64474410594156], [-77.3723161855839, 34.64457856256769], [-77.37219197372502, 34.64434514250509], [-77.37210442722777, 34.64398506662159], [-77.37210523997382, 34.64393505779388], [-77.37216301364847, 34.643733122700404], [-77.37232047616332, 34.643061432445165], [-77.37234756052048, 34.64287790780007], [-77.37229176121146, 34.64232903771099], [-77.37228068743786, 34.64222287951959], [-77.37225056898272, 34.64212041080525], [-77.37204923302923, 34.64166068063448], [-77.37200029460755, 34.64141741545665], [-77.37181966462224, 34.64116859111839], [-77.37175793364463, 34.6410889778325], [-77.37167876035709, 34.641039621464735], [-77.37141158559244, 34.64073181467916], [-77.3713651577451, 34.64071836867884], [-77.3712994505396, 34.64066977202905], [-77.3712603348351, 34.64052947080592], [-77.37114749250803, 34.64026771885252], [-77.37107261468827, 34.64020273686435], [-77.37115103381873, 34.63984265106606], [-77.37118055092313, 34.639605610232124], [-77.37139686358532, 34.639269363536], [-77.37170963833432, 34.63924987363003], [-77.37197032317962, 34.638875571896136], [-77.3721856535181, 34.63869393872153], [-77.37228629369481, 34.63872170357416], [-77.37257993884198, 34.63874288008658], [-77.37287514003481, 34.63863854869817], [-77.37297427355938, 34.638633121553354], [-77.37303101442478, 34.63866173851864], [-77.37323925415706, 34.63855358775464], [-77.37336865224566, 34.63837507522818], [-77.37344347225039, 34.63831943521621], [-77.37376307723589, 34.63795429207182], [-77.37397191093575, 34.637963100632945], [-77.37431615834237, 34.63794225450147], [-77.37455170152089, 34.6378488143543], [-77.3749290299987, 34.638043173771656], [-77.37494594277207, 34.63804126819045], [-77.3749640010244, 34.638039371024234], [-77.37514309754562, 34.63801923148258], [-77.37531147405844, 34.63800087233686], [-77.37534025196143, 34.637998044017344], [-77.3756212477895, 34.63792527401884], [-77.37572065639132, 34.637895968511955], [-77.37573458091845, 34.6378814199146], [-77.37575161809099, 34.63788815153431], [-77.37607022034466, 34.6377974296601], [-77.37612890438308, 34.63778071930049], [-77.37622603984198, 34.63773359406551], [-77.3763717006077, 34.63765402849667], [-77.3765232610192, 34.63755184706322], [-77.37686420827522, 34.63732169822601], [-77.37687458510287, 34.63727385610771], [-77.37691763073613, 34.637264580349736], [-77.3769667541079, 34.637254036961735], [-77.37705675157389, 34.637293965958335], [-77.37761709136919, 34.63730921327987], [-77.37770619532074, 34.63734900165184], [-77.37787622611071, 34.637417393681424], [-77.37799253015766, 34.63746752916093], [-77.37810044942363, 34.637506842873556], [-77.37815047052388, 34.637507132726526], [-77.37827078173737, 34.637543664108975], [-77.37849472262516, 34.6375920739623], [-77.3787597526976, 34.637612412680724], [-77.3790459773427, 34.63785656366652], [-77.37916881626597, 34.637962059365826], [-77.37928318470959, 34.6381333839779], [-77.37940188948997, 34.63822985788078], [-77.37953482754584, 34.638364254704065], [-77.37954410359055, 34.63842165325142], [-77.37967739467811, 34.638513046214925], [-77.37977135484802, 34.63850002968094], [-77.3800588767613, 34.63854598819199], [-77.38007168796189, 34.63853581197239], [-77.38009230456444, 34.638532766411366], [-77.3808509807994, 34.638435630381494], [-77.38086030772217, 34.638428161109985], [-77.38090953921423, 34.638437235374106], [-77.38156864789649, 34.63842869552], [-77.38164890091286, 34.638439233135315], [-77.38220291732245, 34.638250899597374], [-77.38269164344848, 34.637604841888674], [-77.38301349783974, 34.63666512972361], [-77.38296987805028, 34.63644214392775], [-77.38243787967069, 34.63647940201888], [-77.38240370653804, 34.63648692232335], [-77.38191947956501, 34.63659348226176], [-77.38170388830883, 34.63668336479442], [-77.38164926242649, 34.63667671069295], [-77.38163123415468, 34.636654428137454], [-77.38161128264099, 34.63663788511362], [-77.38125501459221, 34.63647955557341], [-77.38106293085545, 34.63649914885271], [-77.38086073998487, 34.63641525058094], [-77.38060938100365, 34.63620380681337], [-77.38034527699331, 34.635971145279896], [-77.38019622844628, 34.635859159756244], [-77.38007230801753, 34.63577266908028], [-77.37955207819144, 34.63579645568238], [-77.37940206632453, 34.63525789595214], [-77.37936318679002, 34.63517809580725], [-77.37928402654455, 34.634542701150885], [-77.37926216376118, 34.6344524896853], [-77.37926161533628, 34.634429003976905], [-77.37926210952486, 34.63440529745429], [-77.37925505348873, 34.6336122596029], [-77.3792235190841, 34.6335853671224], [-77.3792373565749, 34.633532861968625], [-77.37893849893626, 34.63314972666472], [-77.37889011244506, 34.633025631864754], [-77.37879905441471, 34.63289547524798], [-77.37855665067143, 34.632832306133494], [-77.37853230999193, 34.632796600918425], [-77.37849591529977, 34.6327194507989], [-77.37845931893726, 34.63280694184233], [-77.37821593691119, 34.63288138450774], [-77.37779745608375, 34.63303875605872], [-77.37770726242705, 34.633150790593845], [-77.37756316034779, 34.633130588595414], [-77.37754375732263, 34.63297820740448], [-77.37705956709097, 34.63289634936332], [-77.37691877164268, 34.63293897081867], [-77.37670617383704, 34.63286990009263], [-77.37635163083364, 34.63291151010869], [-77.37623689751081, 34.6327418797396], [-77.3761302879317, 34.632715107591444], [-77.37603828137341, 34.63267139836144], [-77.37583274070892, 34.63269594008089], [-77.37573652705059, 34.63238983834955], [-77.37573621322015, 34.63238943150934], [-77.37573610744738, 34.63238917136056], [-77.37549023131788, 34.63226510136599], [-77.37543339093355, 34.63168229551348], [-77.3753891853652, 34.6315902911615], [-77.37537579904925, 34.63155590328054], [-77.37534210940024, 34.63143422203998], [-77.37521802275226, 34.63119038217877], [-77.37523227657678, 34.63106994469419], [-77.37518971326134, 34.63093415978352], [-77.37512561331215, 34.63077913098041], [-77.37494812109156, 34.63047880077905], [-77.37486818313475, 34.630477727434716], [-77.37487273464318, 34.63039099087774], [-77.37478388732643, 34.63022685225987], [-77.3747568768043, 34.63018914952109], [-77.37458946255134, 34.630007227694975], [-77.37457249481182, 34.62998975972899], [-77.37455400932569, 34.62997297803676], [-77.37437307679124, 34.62980872213256], [-77.3742552995281, 34.62973360852693], [-77.37415983349318, 34.62969640876041], [-77.37411613433864, 34.62969789222245], [-77.37376562231691, 34.629544122879295], [-77.37351304556796, 34.6295851012855], [-77.37351308304761, 34.62931312226258], [-77.37346100810504, 34.628992411374774], [-77.3734537131355, 34.628897113267136], [-77.37344979166585, 34.628813467267136], [-77.37337168156041, 34.628525799836005], [-77.3733587419874, 34.62848623085892], [-77.37308175609293, 34.62841380998276], [-77.37297747793471, 34.62837160242165], [-77.37239457605249, 34.62777595849694], [-77.37297787835607, 34.62710597903883], [-77.37318959191322, 34.62704032137955], [-77.37376643797, 34.62688341911507], [-77.3739255122342, 34.62687767404576], [-77.37416069576086, 34.62683923534594], [-77.37434479128325, 34.626872283524804], [-77.37436865759486, 34.62686651088498], [-77.3745549404133, 34.62683749790381], [-77.37457398787498, 34.62682525676845], [-77.37470123464597, 34.62675216674903], [-77.37475210506085, 34.62669345109678], [-77.37488115534498, 34.62656873721499], [-77.3748925595826, 34.626506010461384], [-77.37494929984096, 34.6264444449437], [-77.37505145587124, 34.62622959321675], [-77.375343636234, 34.62611823327428], [-77.37539245715129, 34.62607053513544], [-77.37548740756134, 34.625787024238456], [-77.3760704793005, 34.62554831641483], [-77.3761071339911, 34.62551595053876], [-77.37613228760962, 34.62550919585577], [-77.37615401454426, 34.62551288513814], [-77.37637915362711, 34.625345099839876], [-77.37652660958976, 34.625202414685134], [-77.37660690866976, 34.62513294357775], [-77.3767689532623, 34.625023147208964], [-77.37692093856084, 34.6248590500789], [-77.37710617428752, 34.62477511138488], [-77.37712114843015, 34.62476343776663], [-77.37731523646556, 34.62462005583002], [-77.37749610725271, 34.624493841640955], [-77.37754255252595, 34.62430730391632], [-77.37770962060802, 34.62404342713773], [-77.3782696771002, 34.62377932943071], [-77.3784981942299, 34.62359537608266], [-77.37860513279398, 34.62360012409649], [-77.37905219739372, 34.62342055092757], [-77.3792867175912, 34.62331811634556], [-77.37953598760909, 34.62277003545087], [-77.38007534336653, 34.6225810725137], [-77.38021842417216, 34.62255749364164], [-77.38046958742798, 34.62248871153608], [-77.38077170486062, 34.62242290091401], [-77.38086382994886, 34.622399152804675], [-77.381042409112, 34.62247702901307], [-77.38165224546292, 34.62252918207867], [-77.38194672085532, 34.62268634014235], [-77.3821952234234, 34.62270338936255], [-77.38244068455238, 34.622555314660325], [-77.38265694511307, 34.62266824741368], [-77.382942239353, 34.622551096370756], [-77.3832291386739, 34.62250581100423], [-77.38358473406613, 34.62234291945567], [-77.38359855092264, 34.62231416937088], [-77.3836460918534, 34.62230963702573], [-77.38401765317877, 34.62212823662103], [-77.38410008421035, 34.622179867395715], [-77.38428920552201, 34.62210928610179], [-77.38441188631882, 34.622055961780845], [-77.38447384165157, 34.622002509153745], [-77.38451330907446, 34.62189373681688], [-77.38461035816101, 34.62177055255975], [-77.38463753628184, 34.621584998279836], [-77.38480623661444, 34.62132416529177], [-77.38493998039192, 34.621017899450436], [-77.38520053016667, 34.62087874560845], [-77.38527728800578, 34.62082530552618], [-77.38549420415633, 34.62068572691332], [-77.38559478873246, 34.620615091226156], [-77.38584671519037, 34.62047193875299], [-77.38598904008016, 34.62037973127602], [-77.38604369353465, 34.62034913832892], [-77.38618742524174, 34.620269566199646], [-77.38632822150846, 34.620189973139816], [-77.38638329127618, 34.62013127505526], [-77.3865862839641, 34.62000611451438], [-77.38677752722005, 34.619965178706124], [-77.38708241315749, 34.61981222898442], [-77.38717176579172, 34.61977099480049], [-77.38723053169788, 34.61975794223761], [-77.38756598235273, 34.619713625039395], [-77.38788737318274, 34.61959997498013], [-77.387935084686, 34.61956603602226], [-77.3879602155186, 34.61953532973242], [-77.38799658191064, 34.61954506426245], [-77.38835443300846, 34.61945814194677], [-77.38851959994449, 34.61950884140218], [-77.38865219987323, 34.61959357427383], [-77.38874859500177, 34.619793169189094], [-77.38892036380908, 34.62011516261204], [-77.3889875078784, 34.6202905270826], [-77.38894696815171, 34.62051012176609], [-77.38874841510638, 34.62115373141687], [-77.38874534319213, 34.6211712647736], [-77.3887435141655, 34.62117483437523], [-77.38833164138637, 34.621634546545415], [-77.38828109980003, 34.621666057419446], [-77.38795987187625, 34.621964758344106], [-77.38791040856762, 34.622090805115604], [-77.3878529357713, 34.622152341312244], [-77.38780486346477, 34.62232615603028], [-77.3879597933902, 34.62252423152256], [-77.38820920467111, 34.62268148808764], [-77.38836711661082, 34.62292735986911], [-77.38854995726203, 34.6231144608608], [-77.38853284078087, 34.623328039480825], [-77.38874812384142, 34.62337906024081], [-77.38886685383133, 34.62340776508035], [-77.38899165153234, 34.623424193233575], [-77.38908645931711, 34.623460520793294], [-77.38914233695829, 34.62347315061087], [-77.38929193211044, 34.62348207530425], [-77.38940140099571, 34.62348184236538], [-77.38939097739777, 34.62336114514246], [-77.38938233717552, 34.62320558586466], [-77.38933949201339, 34.623128543065945], [-77.38927958524039, 34.62307263907795], [-77.38919267702087, 34.62286249030061], [-77.38916500643445, 34.62281234666528], [-77.38914242686056, 34.622757083526665], [-77.38902405594001, 34.62253560993795], [-77.38888812271809, 34.62242769169255], [-77.38889782606361, 34.62216278084513], [-77.38885865525589, 34.62200737165598], [-77.38891145354995, 34.62182407497242], [-77.38892068702435, 34.62157386234443], [-77.38903431806304, 34.62144087090245], [-77.38914261010919, 34.62130651188913], [-77.38934216745074, 34.621298183067815], [-77.38953684001936, 34.621184653327504], [-77.389622031718, 34.62113993854598], [-77.38973395860238, 34.62108957180689], [-77.38992924767199, 34.62100587395378], [-77.38993107548937, 34.62100503804201], [-77.38993458460727, 34.621003136130156], [-77.38993779428675, 34.62099543846835], [-77.39005083809583, 34.62077409285587], [-77.38998858539003, 34.62063267433904], [-77.38997646884492, 34.62057252985443], [-77.3899761643325, 34.620524073497116], [-77.3897513600545, 34.62041135064941], [-77.38953694964896, 34.62028985292124], [-77.389451093774, 34.62031616267452], [-77.38941982504949, 34.62022820665302], [-77.38946797630952, 34.62014696119404], [-77.3895369720139, 34.62010803875941], [-77.38965838535887, 34.62006305813249], [-77.39003246596357, 34.619824369522675], [-77.39001139124139, 34.61963203158984], [-77.39008307455545, 34.61928345659538], [-77.39004630031616, 34.618988032700514], [-77.39032556510678, 34.61857726296816], [-77.39038469060966, 34.61845450237201], [-77.39101707653535, 34.618404042261254], [-77.39111398926025, 34.618382321318045], [-77.39121856198878, 34.61838324638673], [-77.3917725538407, 34.61833058951901], [-77.39190237746769, 34.618521864798396], [-77.39241770072043, 34.61839185336337], [-77.39268347141625, 34.618908546227274], [-77.39269074458322, 34.61893254521557], [-77.39310172879382, 34.61925470349252], [-77.39347915238426, 34.61891076844541], [-77.39352659650844, 34.618838069222896], [-77.39358487569513, 34.61877857294325], [-77.39390896347908, 34.618345578840064], [-77.39394711569915, 34.61830176967294], [-77.39407671491695, 34.618077474631036], [-77.39407535572975, 34.618065779491474], [-77.39406294410318, 34.618064627581276], [-77.39387342147015, 34.617991578727526], [-77.39377391620121, 34.61800934448986], [-77.39368240594679, 34.617915369478055], [-77.39354900469202, 34.617859457640456], [-77.39347923577952, 34.61782625126612], [-77.39310566633007, 34.6175517677467], [-77.39308506143789, 34.617540528418154], [-77.39298501163563, 34.61748359464276], [-77.39288797150908, 34.617442262078455], [-77.39286574258611, 34.61742021479344], [-77.3928255002294, 34.61740207356351], [-77.39269088211731, 34.617343065051564], [-77.39257968182214, 34.61734500098515], [-77.39234323983686, 34.61725932424959], [-77.39229669519197, 34.617248112452415], [-77.39194751561442, 34.61726789435677], [-77.39190249913773, 34.617256233495176], [-77.39171524024236, 34.617127002818464], [-77.39168976840199, 34.61712440676804], [-77.39150830289321, 34.6172646954277], [-77.39123109698606, 34.61729366520971], [-77.39111409934091, 34.617340659200245], [-77.3910227450916, 34.6173513197063], [-77.39071988848696, 34.617475096952525], [-77.39070184939911, 34.61749597611075], [-77.39046249060297, 34.61767784785178], [-77.39032565253763, 34.61781601629842], [-77.39009809084413, 34.617828110010876], [-77.38993144525966, 34.61789049603716], [-77.38969708694695, 34.61781297282198], [-77.38953725463641, 34.617825048645855], [-77.38939440839927, 34.61783831192939], [-77.3893966835405, 34.617684135131086], [-77.38916497283462, 34.6173165047873], [-77.38914859083795, 34.61729533206455], [-77.38914834911422, 34.61728974071554], [-77.38915555963708, 34.61686975962071], [-77.38914320810645, 34.61665371718669], [-77.38913021248312, 34.61646286956942], [-77.38913021434301, 34.61644884554037], [-77.38913021620503, 34.61643482151088], [-77.38913854070216, 34.61602819232879], [-77.38913379232655, 34.61602376190648], [-77.38913854206281, 34.61601796226801], [-77.38914329545584, 34.61598400228813], [-77.38917585387135, 34.61562814784585], [-77.38921099231521, 34.61558806483729], [-77.38938835248462, 34.61540179045895], [-77.38953757798804, 34.61524962328534], [-77.38960580272385, 34.615180053561424], [-77.38979469302971, 34.6150793481887], [-77.39032602469445, 34.614616977491565], [-77.39053372670581, 34.61474907309231], [-77.39088029212411, 34.6146706988975], [-77.39111441203951, 34.61442118756387], [-77.39145721591088, 34.614470421571134], [-77.39150859091139, 34.61445135597839], [-77.3915799258391, 34.61447423241479], [-77.3919027657269, 34.6145254648636], [-77.39205230861963, 34.61459277746388], [-77.39222284997632, 34.61464946813827], [-77.39229693464179, 34.6146689390764], [-77.39232353481864, 34.61468609594057], [-77.39247990632498, 34.61467699395953], [-77.39249403526463, 34.614569240384085], [-77.39251417984129, 34.61449666509248], [-77.3925082971668, 34.61446047230029], [-77.39247933661713, 34.61426771382389], [-77.39253277871018, 34.61400604775558], [-77.39255439641178, 34.6138323213042], [-77.39261518280348, 34.613741677805336], [-77.39269121000189, 34.613636023143236], [-77.39290220459345, 34.61335760017408], [-77.39294073368578, 34.613196195466905], [-77.39322914857851, 34.61315565400879], [-77.39347961170503, 34.61306856854222], [-77.39368358465104, 34.61304005534476], [-77.39387379056868, 34.613019741282386], [-77.39397728183297, 34.61309109769978], [-77.39426189874712, 34.61315500807169], [-77.3942679557959, 34.6131549515922], [-77.3942732647644, 34.61315417483794], [-77.39429035760097, 34.6131574282173], [-77.39460611992405, 34.61317222167017], [-77.39466212771069, 34.613208175073666], [-77.39482589937461, 34.613256602054676], [-77.39489338200859, 34.61324594840615], [-77.3950563025854, 34.61322022764569], [-77.39529294824992, 34.61318252294297], [-77.39545048176332, 34.613157338902944], [-77.39560350172198, 34.61313287494823], [-77.39584466437348, 34.613016998781376], [-77.39626915355866, 34.61290470097042], [-77.39663302134191, 34.61282884872148], [-77.39689324917254, 34.61292631610143], [-77.39702719256739, 34.6128851489868], [-77.39714456467578, 34.6128722215801], [-77.39722428015685, 34.61286348714138], [-77.39736319755411, 34.61277692301408], [-77.39742137096667, 34.612742714741465], [-77.39749557342545, 34.61269517148354], [-77.39750008958778, 34.612354723372135], [-77.39748951050663, 34.61227147356752], [-77.39751070679716, 34.612172210516015], [-77.39768770765725, 34.61168058335454], [-77.39800685448989, 34.61156624958784], [-77.3982097464088, 34.61153505251788], [-77.39833352714635, 34.61143391426045], [-77.39899808244748, 34.611399824538125], [-77.39927645320942, 34.611464420253895], [-77.39939224784399, 34.61147083783287], [-77.3994480535948, 34.61150428323374], [-77.39957480903831, 34.61154610955686], [-77.3997864134247, 34.611615407273675], [-77.39999175841811, 34.61168934972382], [-77.40018058026054, 34.61180064559101], [-77.40022085044583, 34.611834111485074], [-77.40029234660435, 34.611867174199276], [-77.40048871216874, 34.61193151928425], [-77.40057474863512, 34.61194029132132], [-77.4007409057415, 34.61198143881414], [-77.40077183316025, 34.611990021330364], [-77.40079046293805, 34.61198753575799], [-77.40096891799124, 34.612047236510925], [-77.40111277137231, 34.61201844125856], [-77.40112485582327, 34.61217164872437], [-77.40136309072173, 34.61233680320473], [-77.40148610092443, 34.61241161000463], [-77.40160976610889, 34.61252626642508], [-77.40175726896102, 34.6127780109853], [-77.40186101357173, 34.61280284714783], [-77.40215144420765, 34.61290759448777], [-77.40238859777277, 34.61300760941388], [-77.40279844746776, 34.613203920368136], [-77.402896862308, 34.613235970899176], [-77.40293980417889, 34.61335223434631], [-77.40337590201716, 34.61350002690132], [-77.40372815603138, 34.61341244354128], [-77.40403255865031, 34.61354713653651], [-77.40412233715017, 34.61354690685495], [-77.40434981304351, 34.61364967171402], [-77.40451652209579, 34.61373057812977], [-77.40457333663882, 34.6137357849987], [-77.40465106507892, 34.613785765296655], [-77.40503358408843, 34.61402280092908], [-77.4053049036836, 34.614203993519766], [-77.40559477992305, 34.61418650798484], [-77.40571737110193, 34.614481052596346], [-77.40609329521673, 34.614693944941315], [-77.40645863613186, 34.61476759279026], [-77.4064874819089, 34.61477667860191], [-77.40650375231678, 34.614774626383216], [-77.40688166984883, 34.614864633475754], [-77.4072426090182, 34.61511010346934], [-77.40750452179765, 34.615250615581225], [-77.40767007490874, 34.615336788014275], [-77.40796241691763, 34.61554051569445], [-77.40839145181181, 34.61579346069875], [-77.40843002070002, 34.61581855833357], [-77.40845849093343, 34.61583086893367], [-77.40852953265171, 34.6158500494533], [-77.40885269311656, 34.61599006090495], [-77.40895220926342, 34.61602992340916], [-77.40920585144188, 34.61605630147898], [-77.40924688493408, 34.616042706526585], [-77.40951485790761, 34.61605590131313], [-77.40962434679487, 34.61605811427109], [-77.40964107483454, 34.61607503558037], [-77.40989130164999, 34.6164261467342], [-77.40987329205021, 34.61660327003522], [-77.40982146244895, 34.61686080555397], [-77.40977995995024, 34.61701627001728], [-77.40979318501067, 34.61712576069055], [-77.40979473335125, 34.61728924222694], [-77.40983832804878, 34.617427521213145], [-77.40985332309789, 34.61747693055969], [-77.40986083688296, 34.61749199068376], [-77.40987582073274, 34.61753019753526], [-77.40994425987554, 34.61769223925204], [-77.4100354827332, 34.61790822396494], [-77.41014902186704, 34.617964980351346], [-77.4102003876055, 34.61807985007216], [-77.41017511862289, 34.618233852867164], [-77.41019532938608, 34.61833304818228], [-77.41036304734237, 34.618480951498306], [-77.41037109555603, 34.61854297300828], [-77.41073330497147, 34.61885208847363], [-77.410784529069, 34.6188872087235], [-77.41082400218426, 34.61889629534621], [-77.41136795793348, 34.61902378009206], [-77.41161243034375, 34.619104738260816], [-77.41185015990305, 34.619284014366684], [-77.41236439921529, 34.619465807703754], [-77.41239485637544, 34.61946790485757], [-77.41240088552482, 34.61946850334822], [-77.41241124153456, 34.619470199797775], [-77.41279509251115, 34.61950194207103], [-77.41308523579471, 34.61947382405183], [-77.41318929283477, 34.61949230510125], [-77.41350553150409, 34.61964166078605], [-77.41363889456743, 34.61964676414525], [-77.4138200783433, 34.61968025001751], [-77.41395921267683, 34.619680106414954], [-77.41397772726697, 34.61967508692509], [-77.41427591383783, 34.61961444321166], [-77.41435855964897, 34.61958812785369], [-77.41437191473887, 34.61958956158837], [-77.41437806329813, 34.61959307448814], [-77.41471402798118, 34.61949510830678], [-77.41476609946055, 34.61949361805104], [-77.41481217989178, 34.61948738975687], [-77.41492335874543, 34.61952097148968], [-77.41511732516805, 34.61953926461621], [-77.41516031086249, 34.61954775836798], [-77.41527512413616, 34.619593837596206], [-77.41555452897089, 34.619635033049576], [-77.41570129561747, 34.61967516838389], [-77.4157732127735, 34.6198228542106], [-77.41590211729873, 34.62017850543837], [-77.4159163853747, 34.620261733642046], [-77.41594886876807, 34.6203452617203], [-77.41602841974088, 34.620549532875096], [-77.41615898686379, 34.6206163194587], [-77.41626620126105, 34.62068370791408], [-77.41634316914804, 34.620822758079065], [-77.416622769123, 34.6208504942719], [-77.41681918303541, 34.6208574767499], [-77.41713156087566, 34.62071249545451], [-77.41741812533756, 34.62074315430515], [-77.41761188330338, 34.62073837503663], [-77.41791996329233, 34.62066228955082], [-77.41820635981927, 34.62086144498586], [-77.4183142187373, 34.62088263985387], [-77.41848521977707, 34.62094543391686], [-77.4185333384325, 34.62093405636701], [-77.41870840997538, 34.62081217799689], [-77.41902953874197, 34.62070509357598], [-77.41917757340859, 34.62068579820745], [-77.41949675689864, 34.62053050295798], [-77.41988384496273, 34.62051069846673], [-77.42028515487173, 34.62047882733884], [-77.42075296152088, 34.62045680316673], [-77.4210735490089, 34.62041720304005], [-77.42127890621286, 34.620504991653306], [-77.42179122103911, 34.620652158998], [-77.4218322062535, 34.620678358704], [-77.42186203062289, 34.62069079176599], [-77.42191371364072, 34.62069013361517], [-77.42217756314102, 34.620681092435106], [-77.42225621953907, 34.62062875362139], [-77.422461752916, 34.6205553124719], [-77.4226014557161, 34.6204824345096], [-77.42265037438762, 34.62044516591314], [-77.42269690033751, 34.62047124450923], [-77.42292240495709, 34.62045056645914], [-77.42365368500184, 34.62035170368506], [-77.42431095239803, 34.62032708887162], [-77.4247661513697, 34.62057451175548], [-77.42483521117538, 34.620600525513716], [-77.42485193989087, 34.620639261339534], [-77.42536416130362, 34.6208386367039], [-77.42538217818051, 34.62084621348409], [-77.42540600653251, 34.62085062126836], [-77.42554220998763, 34.620921024394434], [-77.42589789397786, 34.621079696361136], [-77.42592860721082, 34.62109255961597], [-77.42596490991366, 34.62111275622091], [-77.42647990952656, 34.62133295196571], [-77.42658143778502, 34.62144454252218], [-77.42681481544746, 34.62155689236981], [-77.42696239238722, 34.62165744027103], [-77.42701626814976, 34.62186872256437], [-77.42725762835101, 34.622141016010325], [-77.42713810776662, 34.62220323831927], [-77.42726449901066, 34.62220234609513], [-77.4273164268624, 34.62220934427463], [-77.42762318288976, 34.62243425072661], [-77.42770428916711, 34.6225790107491], [-77.4277050890208, 34.622607385382054], [-77.42753312628913, 34.62282914655471], [-77.42752000002294, 34.62285232356324], [-77.42749605012023, 34.62286594920071], [-77.4272828609171, 34.623269692515635], [-77.42720429436416, 34.62336126899912], [-77.42716122797195, 34.6235639931825], [-77.42713461875408, 34.62368116700118], [-77.42719340986272, 34.623976920105335], [-77.42716161054427, 34.62404270942993], [-77.42712156347383, 34.62420514745305], [-77.42775861332895, 34.624241830867575], [-77.42785361113943, 34.62422470209467], [-77.42787119107675, 34.62423722174606], [-77.42833885302574, 34.62437788253366], [-77.4284509748208, 34.62440883150501], [-77.42845391995903, 34.62441293885206], [-77.42902044165946, 34.62459421296337], [-77.42905173241296, 34.6245888134275], [-77.4290789875968, 34.62460405798146], [-77.42914373192866, 34.62465962150534], [-77.4295662465928, 34.62487418401667], [-77.4299608967626, 34.625091220271145], [-77.42996554819265, 34.625300345569464], [-77.42996905806376, 34.62545813187221], [-77.42997152063083, 34.62556882499839], [-77.42985233353099, 34.625712979105906], [-77.42953226146577, 34.62595183810602], [-77.42945303748535, 34.626006797673114], [-77.42941452831334, 34.62603459884903], [-77.42932378925047, 34.626084563642316], [-77.42929307418096, 34.626105670140674], [-77.42929554864762, 34.62611907274306], [-77.42933099847316, 34.6261938075061], [-77.42933254650279, 34.62627435000583], [-77.42939917331485, 34.62635899865036], [-77.429525622027, 34.62665165791098], [-77.4295408929016, 34.62668785103399], [-77.42956025255359, 34.62670971544825], [-77.42963449499396, 34.6268385513433], [-77.42972036347234, 34.62697111803484], [-77.42972960407532, 34.62700331320108], [-77.42975385189483, 34.62704126956496], [-77.42985468912865, 34.627264030184534], [-77.42990313287358, 34.6273231013889], [-77.42993459657819, 34.62741425907279], [-77.42982538132773, 34.627536204385635], [-77.42971270489971, 34.62774660144551], [-77.42962900287749, 34.62792675034127], [-77.42960966874654, 34.62802048812399], [-77.4296846155311, 34.62812384204029], [-77.42979242218061, 34.62825422529433], [-77.42993398375603, 34.62865294925326], [-77.43001834008578, 34.62876721911754], [-77.43020783832375, 34.62893397015735], [-77.43050947491247, 34.62920624581872], [-77.43060780235037, 34.62933772297815], [-77.43090253377119, 34.62955111998383], [-77.43097540640154, 34.62955101727696], [-77.43147813553284, 34.62973301569841], [-77.43157775594527, 34.62972909144767], [-77.43186568601236, 34.62971774825547], [-77.43251630710469, 34.6296837340099], [-77.43252252771805, 34.62955892094828], [-77.43252523805472, 34.629529795756454], [-77.43253413779998, 34.62947453880403], [-77.4325495837416, 34.6292586677754], [-77.43256546606649, 34.629149092242706], [-77.43257927886994, 34.6291141994451], [-77.43257495475194, 34.62896758797079], [-77.43257104899081, 34.62896288149424], [-77.4325651188813, 34.62895438262745], [-77.4324495967289, 34.62881287252529], [-77.43240084166747, 34.628723284196745], [-77.4321564356564, 34.628368666878266], [-77.43195594154292, 34.62835281717245], [-77.43184301566423, 34.62824725356826], [-77.4319188586319, 34.62750047168939], [-77.43191709034365, 34.62748868979054], [-77.43191709135405, 34.62748615769851], [-77.43183641895752, 34.626772178873104], [-77.43179015263854, 34.626205366468355], [-77.43179779434033, 34.626044708132746], [-77.43172967706305, 34.62588691527211], [-77.43144129369134, 34.625755204093736], [-77.43101250064674, 34.625530020798905], [-77.43096907515209, 34.6252985353535], [-77.43086377690474, 34.6252031660988], [-77.4308084026821, 34.625184486127054], [-77.43072355824899, 34.625053744461155], [-77.43063427942734, 34.624940209004286], [-77.43062505632297, 34.624901957242855], [-77.4306113874782, 34.624863613829795], [-77.4304847482687, 34.62466588072566], [-77.43035425789913, 34.62460988915716], [-77.43030948201564, 34.62444821413412], [-77.43027123724184, 34.62426431044417], [-77.43036239037751, 34.62415700765159], [-77.43032870175757, 34.62394245932678], [-77.43022803071514, 34.623907386047414], [-77.43015939481954, 34.623776227166175], [-77.43001244269644, 34.62359958472079], [-77.42997349458196, 34.62346241969092], [-77.42979212261551, 34.62302821663205], [-77.42982492920625, 34.62291454754706], [-77.42978903168483, 34.62277373163238], [-77.42952302489822, 34.62258760348189], [-77.42934118714984, 34.622406905646116], [-77.4293165921795, 34.62232093482183], [-77.42929082935828, 34.62223328888413], [-77.42918862283096, 34.62198816586055], [-77.4292547681517, 34.62160708769849], [-77.42925508803467, 34.621601322280256], [-77.42925594227256, 34.6215997464904], [-77.42926385496537, 34.62158731034484], [-77.42950994365458, 34.62107107801943], [-77.42962239409212, 34.62102903228813], [-77.4299188329912, 34.62078690075365], [-77.43005122009332, 34.620674687934944], [-77.43007315862042, 34.6206487750228], [-77.43022934458725, 34.62058387898681], [-77.43092906832747, 34.620039851145364], [-77.43124904235441, 34.6200753974411], [-77.43178502244209, 34.62000908956237], [-77.43195096784311, 34.61993154659723], [-77.43206880720356, 34.61998768245702], [-77.43247230756488, 34.61994465575669], [-77.43247999070853, 34.61994344895843], [-77.43248919385522, 34.619939843122495], [-77.43291079157976, 34.619783691562546], [-77.43295087883091, 34.61974288476243], [-77.43310875381638, 34.61963086443073], [-77.43355330400638, 34.61938913816404], [-77.43383122736404, 34.61911728556635], [-77.43431803627382, 34.61906706399954], [-77.43491107151144, 34.619249573154086], [-77.434919132083, 34.61925022684075], [-77.4349375750986, 34.61925420651909], [-77.43547470740447, 34.61935916221548], [-77.43556045613211, 34.61937691200926], [-77.43592776959433, 34.619291054965444], [-77.43597965327083, 34.61928308169466], [-77.43603374907143, 34.619255530723535], [-77.43629313116924, 34.619109210795244], [-77.43641310662653, 34.61894576014426], [-77.43678978405443, 34.61871407250131], [-77.43681125839338, 34.618671115054156], [-77.43660607764865, 34.6180989095325], [-77.43658228188157, 34.61803473219634], [-77.43657758925778, 34.61796989714516], [-77.43665477137425, 34.61790763243042], [-77.4367876269826, 34.617877007527134], [-77.43719978055708, 34.617568225280976], [-77.43758733288178, 34.61747297315186], [-77.43768167094098, 34.61735210577015], [-77.43784084415947, 34.617173157571095], [-77.43796729708119, 34.61694025692444], [-77.43803427341642, 34.616882348045294], [-77.43806544227866, 34.6166323318025], [-77.43836373405836, 34.61646774594182], [-77.4387980222674, 34.61633388974502], [-77.43887667655302, 34.61629682063958], [-77.4393391725121, 34.61618983197061], [-77.43970767120847, 34.61613619539452], [-77.43991574753719, 34.61604104298175], [-77.44031093053317, 34.6158984874438], [-77.44073278003403, 34.61579735112772], [-77.44080342028869, 34.61577697498244], [-77.44091498731888, 34.615771319780556], [-77.44130266253009, 34.61568013633123], [-77.44172206801461, 34.6154617806244], [-77.44172982621672, 34.61543705908624], [-77.44183145568078, 34.61536855687517], [-77.4421941858551, 34.61509570002837], [-77.44292913526326, 34.61548688780785], [-77.4429019291049, 34.61584723728867], [-77.44290994570513, 34.61586161048633], [-77.44290706790011, 34.61588220268436], [-77.442989652628, 34.61608105696116], [-77.44306314947167, 34.6161871810226], [-77.44311608197557, 34.616540963228054], [-77.44311585944367, 34.61654140360758], [-77.44311589565852, 34.61654153033107], [-77.44328078345039, 34.61686363171801], [-77.44338284263635, 34.61712913455217], [-77.44345406215963, 34.61727928254556], [-77.44337975015621, 34.61757391714731], [-77.44397925039632, 34.61777548813782], [-77.44438249478239, 34.61773566064147], [-77.44459105441803, 34.61796706045861], [-77.44470406732337, 34.618256841883635], [-77.44471463278727, 34.61833979911184], [-77.44471558932023, 34.61854467752531], [-77.44473399811588, 34.61866481042483], [-77.44482756458675, 34.61899872693068], [-77.44483293434703, 34.61901360157732], [-77.44484888452114, 34.61903156940662], [-77.44511717532023, 34.619123274818186], [-77.44514402410564, 34.61910945875674], [-77.4453551309611, 34.618960247746095], [-77.44549616991073, 34.61881675135224], [-77.44555911521819, 34.618635291286616], [-77.44603185068709, 34.61846224640979], [-77.44626008692973, 34.61842483268292], [-77.44652745888556, 34.61852269977194], [-77.44660403621621, 34.61867705852708], [-77.44662183485468, 34.61886504429829], [-77.4467535481716, 34.619053220951855], [-77.44690925994523, 34.619218238832374], [-77.44704883791735, 34.61938533575408], [-77.44719708383008, 34.61943952924078], [-77.44718908231944, 34.61951531188316], [-77.4473208535241, 34.619629383800735], [-77.44750425667087, 34.61972119731185], [-77.44761173376885, 34.61997289135897], [-77.44768214562312, 34.62003972936945], [-77.4477104989983, 34.62006736389623], [-77.44780779266858, 34.620236944901094], [-77.44792299021077, 34.62034031035772], [-77.44820443755498, 34.62037784544425], [-77.44830303434124, 34.6206011990583], [-77.44847396339675, 34.62074964508322], [-77.4485860505811, 34.62082565304061], [-77.448664424084, 34.620867406429554], [-77.44889461171239, 34.62104113209754], [-77.44900893007974, 34.621138427565064], [-77.44889147535466, 34.62136660663122], [-77.44918366252739, 34.6214212696007], [-77.44915679248531, 34.621132858747075], [-77.44917000921618, 34.62109249571927], [-77.44920613733484, 34.620981917291466], [-77.44930521419622, 34.62068468425115], [-77.44930840957718, 34.62056650512178], [-77.44936495324833, 34.62029839098305], [-77.44917464739925, 34.61990030746419], [-77.4491594290767, 34.61961848276364], [-77.44926083340701, 34.61931106410956], [-77.44926003355695, 34.619087316749656], [-77.44925359396633, 34.61885311721544], [-77.44928809522142, 34.61870120414345], [-77.44927954543758, 34.618606285422075], [-77.4492706179735, 34.61847900554174], [-77.4491620061384, 34.618462005112264], [-77.4489837165142, 34.618510785522545], [-77.448912890444, 34.61851229572659], [-77.44880105912807, 34.61853080403701], [-77.44846091101948, 34.618781795890655], [-77.4481239513897, 34.61864756330915], [-77.44813110799618, 34.61843468605977], [-77.44809279297051, 34.61828299763637], [-77.44808013273997, 34.61824396567814], [-77.44803024639621, 34.61809419072181], [-77.44796581732648, 34.61792655404071], [-77.44784538250701, 34.6177776487825], [-77.44760332679307, 34.61756993824997], [-77.44753709836243, 34.61753635591208], [-77.44739267095598, 34.6175374829433], [-77.44707016895674, 34.61754293744387], [-77.44686623428387, 34.61744219381313], [-77.4467160388071, 34.61736116508797], [-77.4466113552112, 34.61729663317751], [-77.44642607989806, 34.61711075444697], [-77.44640542662796, 34.61709122966396], [-77.44638793219328, 34.61708546701351], [-77.446383853756, 34.617065646973295], [-77.4462762972451, 34.61679193723719], [-77.44624833848296, 34.61675601627558], [-77.44624226625228, 34.61670640090626], [-77.4461302600147, 34.616513316295695], [-77.44595171836195, 34.616471339598206], [-77.44579261226966, 34.6162393576626], [-77.4457008743116, 34.616173610670835], [-77.44567526293841, 34.6161552553961], [-77.44562853922557, 34.616118029117004], [-77.44473884745672, 34.61570940748473], [-77.44533147172712, 34.61503290298445], [-77.4455011342572, 34.614898543784335], [-77.44626798548624, 34.61461291168748], [-77.44633515037593, 34.61457097472133], [-77.44673840012535, 34.61441080855113], [-77.44676685773348, 34.614392638114495], [-77.44705657532833, 34.614204004859424], [-77.44718048811401, 34.61410524605572], [-77.44757085463604, 34.61379412016286], [-77.44759425209375, 34.61377273832457], [-77.44761208848948, 34.61376138844729], [-77.44766674554205, 34.61372053086792], [-77.44787805205078, 34.61356234004856], [-77.44802516815633, 34.61334989543286], [-77.44805990256566, 34.61331626895351], [-77.44810370131191, 34.61327291667148], [-77.44842753795561, 34.612825504016136], [-77.44842644007345, 34.61279170773398], [-77.44832231642533, 34.61247206306656], [-77.44830770813027, 34.612461625107635], [-77.4480703915836, 34.61231269050514], [-77.44788877866964, 34.612017583320586], [-77.44780301276296, 34.61188163971362], [-77.44784376904585, 34.61167543637217], [-77.44783835584572, 34.61138053539769], [-77.44809994664115, 34.61105845113375], [-77.44823012609297, 34.61089821867266], [-77.44836108026949, 34.61073633074848], [-77.44865426077803, 34.610684480661554], [-77.44915548924668, 34.610757435196724], [-77.44936659830407, 34.61072786098482], [-77.44941147660234, 34.610732497874196], [-77.44951339918333, 34.610727848211866], [-77.44992388754528, 34.61068387554693], [-77.45030893140225, 34.61049001721855], [-77.45039095754949, 34.61046965813398], [-77.45082487128641, 34.61065060314336], [-77.45086876991932, 34.61071985181881], [-77.45106232395273, 34.61095214007179], [-77.45094101545429, 34.61122736634123], [-77.45078504137027, 34.611736598098425], [-77.45081968641352, 34.61175985845836], [-77.45125366039065, 34.61170034005592], [-77.45153510859005, 34.61155582142838], [-77.45166052919767, 34.611479113413694], [-77.45170677153644, 34.61143513344289], [-77.45190489476634, 34.6112816876839], [-77.45221497411885, 34.61105370930152], [-77.45253785324881, 34.61063034439019], [-77.45257030192592, 34.61055863905289], [-77.45259738251862, 34.610514332113134], [-77.45270736575699, 34.61030044929822], [-77.45282680253223, 34.61007963723203], [-77.4528153677453, 34.61002499118273], [-77.4529731978945, 34.6099753917745], [-77.45336102389182, 34.60979671877841], [-77.45381324831978, 34.609754733069444], [-77.45387361431034, 34.609748769922476], [-77.45390260350202, 34.6097533046092], [-77.4539237404273, 34.60976676527712], [-77.45394945357731, 34.609802386822196], [-77.45414469202777, 34.610073004753744], [-77.45431057635476, 34.61016883324308], [-77.45447517216408, 34.61034800507765], [-77.45458256826328, 34.61041785664696], [-77.45474871220557, 34.61054748217108], [-77.45485081825116, 34.610610121381484], [-77.45491148177331, 34.61065903871167], [-77.45500479382655, 34.610691545630964], [-77.45504390240046, 34.610804674558395], [-77.45512588343982, 34.6109009261818], [-77.45516797693026, 34.610949209847185], [-77.45534311480975, 34.610909353610865], [-77.45530494952968, 34.6107817132939], [-77.45523906757225, 34.610499378313946], [-77.45521847205679, 34.610430249703384], [-77.45518836883144, 34.61032920789801], [-77.45513727220344, 34.61021795673404], [-77.45511699198399, 34.61016493550206], [-77.4551021395074, 34.6101152948909], [-77.45498118248355, 34.6099537094609], [-77.45492119049312, 34.60987935802617], [-77.4548595763363, 34.60986909680415], [-77.45466589561804, 34.609734334825774], [-77.4546607300059, 34.60955655186953], [-77.45453887168233, 34.60938921691523], [-77.45446066131103, 34.60924435529407], [-77.4544718541115, 34.609057202185255], [-77.45448312884297, 34.60886868448286], [-77.4544419611466, 34.60873592579797], [-77.4544807354266, 34.60850010454546], [-77.45450820395232, 34.60844940949622], [-77.45445455501299, 34.60816394307144], [-77.45443866647634, 34.60814284164924], [-77.45419269279118, 34.60803430562512], [-77.45418563230854, 34.608035591852314], [-77.45393713338726, 34.6080609480709], [-77.45376152691203, 34.60809700505524], [-77.4529408080454, 34.60821070972586], [-77.45292750649077, 34.608213575187584], [-77.45291503379653, 34.60821772620101], [-77.4529023682643, 34.60821177941829], [-77.45277570200784, 34.608152941310145], [-77.45238130921486, 34.607991136032076], [-77.452746643923, 34.60755306978907], [-77.45277253015986, 34.60753244091122], [-77.45277398158366, 34.60750987647014], [-77.45319564838509, 34.60706109438826], [-77.45324821147709, 34.60689590899951], [-77.45332586561355, 34.60661394106841], [-77.4533127808077, 34.60648268760212], [-77.45345425494429, 34.60629753881837], [-77.45416464883967, 34.60577522687387], [-77.45432471075551, 34.60563677049076], [-77.45437968568164, 34.6056172061315], [-77.45482733452846, 34.60555251745181], [-77.45494248773731, 34.605504426478404], [-77.45506379570759, 34.605456161179625], [-77.45508206713701, 34.60537447400209], [-77.45511512346562, 34.60529870246854], [-77.45512445826623, 34.6052700660364], [-77.45513161317791, 34.60526090485316], [-77.45513389555299, 34.60523222345278], [-77.45513855021795, 34.60517373043155], [-77.45514360154974, 34.60511025312763], [-77.45515021157604, 34.60502718741467], [-77.45511042860676, 34.60499712048821], [-77.45508224903116, 34.6049339409316], [-77.45513123785564, 34.604742594461], [-77.4551289196416, 34.60464057762705], [-77.4551477752487, 34.604617203727884], [-77.45514521736688, 34.60457608412095], [-77.45502732410179, 34.60436312324457], [-77.45477785072308, 34.60411092865694], [-77.45465511422805, 34.60401921008435], [-77.45417233604951, 34.60393701197453], [-77.45381086384688, 34.60376023091242], [-77.45343701570086, 34.603628144556936], [-77.4531286762247, 34.603384504467854], [-77.45303942565724, 34.60329008913529], [-77.45284471074545, 34.60305857143231], [-77.4529932538731, 34.60265454024638], [-77.45346931267736, 34.60251285220127], [-77.45368612561855, 34.60227759240911], [-77.45434586435863, 34.6018959852747], [-77.45435106809491, 34.60189349030508], [-77.45435576232927, 34.601892512180726], [-77.45435497928806, 34.60188924990887], [-77.45435399040292, 34.601886047595876], [-77.4542872683472, 34.60124915769615], [-77.45425909722887, 34.601178075690775], [-77.45426382368643, 34.60062156490944], [-77.45447624400163, 34.600377607089314], [-77.45467923244462, 34.6001475325112], [-77.4546296434697, 34.59972011588791], [-77.45437657509206, 34.59966751391506], [-77.45366949030908, 34.599404249151576], [-77.45342329838059, 34.59936662934197], [-77.45322234508045, 34.59925824291093], [-77.45298809648662, 34.59898446811305], [-77.45297334162602, 34.59896001163364], [-77.4529293743995, 34.59891583655794], [-77.45253064806482, 34.59871702903018], [-77.4524668682894, 34.598707514351936], [-77.45242525156418, 34.59869957321357], [-77.45230922133565, 34.598671711078936], [-77.45225212894633, 34.598678846284265], [-77.45216007300493, 34.59869097540537], [-77.45205939986334, 34.598748630304854], [-77.4520070240136, 34.598747923563764], [-77.45203859007037, 34.59877407909644], [-77.45210146846472, 34.59883945076212], [-77.4520932986331, 34.59893296304889], [-77.4520833719604, 34.59917650242343], [-77.45215099885371, 34.599194582381195], [-77.45215307440341, 34.59926357806174], [-77.45238205168096, 34.59949793548522], [-77.45203411054408, 34.59984134336929], [-77.45200449333757, 34.59997489153427], [-77.45194040878758, 34.60011825193138], [-77.45181593339387, 34.6003139665124], [-77.4517723877542, 34.600369153470666], [-77.45165293444148, 34.600444428387824], [-77.45132097388759, 34.600830584426845], [-77.45103842187731, 34.60131409345384], [-77.45101927007676, 34.60134440501019], [-77.45102915225638, 34.60136086907716], [-77.45099545850266, 34.60142127116348], [-77.45096293348404, 34.60174901498378], [-77.45083741864107, 34.60190016657849], [-77.4506928527455, 34.601971926945374], [-77.45067067008996, 34.602017004749065], [-77.45063407884813, 34.602091775788665], [-77.45064086861385, 34.60214108602917], [-77.45069818017097, 34.602193787520314], [-77.45072722552584, 34.60220646214318], [-77.45076094330923, 34.60222063755223], [-77.45112294648357, 34.602179736545445], [-77.45123078266798, 34.602657213932794], [-77.45127739588457, 34.602767099460394], [-77.45112617797979, 34.60309015172871], [-77.45117490962716, 34.60325705925033], [-77.45107245701482, 34.60335846476773], [-77.4509830380727, 34.60349961723866], [-77.45103495379739, 34.60357476744624], [-77.45117062188496, 34.60371701198822], [-77.45133697747531, 34.603746746113664], [-77.4513343120996, 34.603858643203004], [-77.45132996132413, 34.60393071197574], [-77.45143230811647, 34.60408735817139], [-77.45153799908141, 34.60416980636542], [-77.45160679366123, 34.604331176513554], [-77.45191623108687, 34.60452026804904], [-77.45215405965092, 34.60457633343353], [-77.4522995597614, 34.604691108723244], [-77.45238620678286, 34.604919698502805], [-77.45208565922727, 34.605139067230205], [-77.45194548086053, 34.605530621445645], [-77.45165738747005, 34.605903468752466], [-77.45132959638907, 34.6062176738869], [-77.4511117195079, 34.60633192976356], [-77.45058904282982, 34.60649006154827], [-77.45044572919687, 34.60632763234557], [-77.4502944866403, 34.606277145200146], [-77.4501027649257, 34.606170313336165], [-77.44991927020641, 34.60622437108612], [-77.44979224702132, 34.60636281980203], [-77.44968041212317, 34.606450488765354], [-77.44932879788038, 34.60659018459644], [-77.44904031579019, 34.606728455609876], [-77.44893438891903, 34.60680883686982], [-77.44905752562136, 34.60699121081302], [-77.4491709811645, 34.60706044768119], [-77.44917768301605, 34.607301461437245], [-77.44919886550755, 34.60742175230113], [-77.44913094150442, 34.607497017843635], [-77.4491203270501, 34.607748904424064], [-77.44911106488283, 34.60781604941305], [-77.44904953642448, 34.608087933633016], [-77.44889832920659, 34.608245975781195], [-77.44879950828945, 34.60849727952154], [-77.44873728033758, 34.60859807059171], [-77.44851912868302, 34.60872337435044], [-77.4483647750386, 34.60882958381966], [-77.4481410530176, 34.609008838893814], [-77.44792508346997, 34.609143786631506], [-77.44767436335658, 34.60913957588401], [-77.44742679752572, 34.60903488063653], [-77.44696569326206, 34.6090917188829], [-77.44686195743195, 34.60910103755388], [-77.44666415421648, 34.609111428980995], [-77.44635592214573, 34.60917291091575], [-77.44616726177627, 34.60915360382461], [-77.44587703147195, 34.60910756460131], [-77.44580974590822, 34.60909814803084], [-77.44567777775873, 34.60907595659303], [-77.44553921116092, 34.609070092222275], [-77.44548943463161, 34.609068029058875], [-77.44541091986679, 34.60908154866313], [-77.44538734497192, 34.60912917228826], [-77.44532713241819, 34.60925558522084], [-77.44532408565917, 34.60926188758838], [-77.44531868722403, 34.609266778694796], [-77.44491964075267, 34.609687463953776], [-77.44435907223185, 34.609540409291135], [-77.4443568761679, 34.60953840151012], [-77.44407237753074, 34.60925290487885], [-77.44408631850612, 34.60895489753827], [-77.44395016011059, 34.60878106773603], [-77.44369378454086, 34.608622354334784], [-77.44366645711833, 34.60855393360565], [-77.44352169138706, 34.6080116986936], [-77.44351262057829, 34.607935509344756], [-77.44357846001357, 34.60774724336777], [-77.44357051414906, 34.60754975062127], [-77.44361948730807, 34.60742650747886], [-77.44355420800562, 34.60731975806976], [-77.44326006401153, 34.607269021447145], [-77.44322602913472, 34.60726384956114], [-77.44319908851668, 34.607242800006], [-77.4431203091577, 34.6072518046086], [-77.44268856919967, 34.60743197357121], [-77.44227851826443, 34.60757660933377], [-77.4422407960816, 34.60758295958693], [-77.44220746263744, 34.60759485197058], [-77.44216432642366, 34.60758145154897], [-77.44149090179846, 34.607556625860944], [-77.44139705153718, 34.607430970755736], [-77.44109933747518, 34.6072538612634], [-77.44103070190138, 34.60720499128519], [-77.44097204433155, 34.607182900003146], [-77.44083694173597, 34.607072059611035], [-77.440597680651, 34.60692038905971], [-77.44056421842747, 34.60686104027247], [-77.44027455745324, 34.606643267342875], [-77.44046171982662, 34.60632130169057], [-77.44044918377645, 34.606224232381145], [-77.44051512374264, 34.60603028062189], [-77.44050937114277, 34.60601386047485], [-77.44046742450675, 34.60590525791069], [-77.4404495572772, 34.60585842673716], [-77.44044538554319, 34.6058560680066], [-77.44035630814537, 34.605743868561646], [-77.44032223522743, 34.605653052670505], [-77.44025308868069, 34.605541647198514], [-77.44021901414268, 34.60545459931136], [-77.44006392078327, 34.60522633470582], [-77.44005551959279, 34.60519736291701], [-77.44001161655476, 34.60505662391014], [-77.43993429958493, 34.60491757482295], [-77.4399229435358, 34.60490232848314], [-77.43991499866456, 34.60489954755354], [-77.4399124368789, 34.60489018575685], [-77.43967889972176, 34.60459761548135], [-77.43968423065645, 34.60450059234202], [-77.43958231348724, 34.60440453600886], [-77.43942620953861, 34.604300413929955], [-77.43935911272668, 34.60407707489421], [-77.4392791970527, 34.603973082546325], [-77.43925358777493, 34.603892193840885], [-77.43911468266698, 34.60365074130449], [-77.43910710813466, 34.60361416235722], [-77.43906461216488, 34.6034803939688], [-77.43901392174998, 34.603336813485306], [-77.43900759850315, 34.60331202613332], [-77.43899808052991, 34.60329034544339], [-77.43888709387933, 34.60297713742833], [-77.43888432871373, 34.602972305210095], [-77.43884563594224, 34.602860141090936], [-77.43882574818974, 34.60281000483872], [-77.43882645198424, 34.602806616426584], [-77.43874253136181, 34.602688552110315], [-77.43870375110367, 34.6026601645094], [-77.43868818590781, 34.60260335832183], [-77.43859918203394, 34.60240669723338], [-77.43846374787115, 34.60235934584091], [-77.43838633176814, 34.60220980936564], [-77.43833608052512, 34.60202649956382], [-77.4384296941947, 34.60189343904022], [-77.43839452904058, 34.60174268794776], [-77.4382538120391, 34.60168070982975], [-77.4382304545633, 34.60148617273424], [-77.43823036850438, 34.60129294668553], [-77.43827887205747, 34.60114502140172], [-77.43825882322773, 34.601026693058074], [-77.43823669929769, 34.600867437633624], [-77.43822269289122, 34.60066825606536], [-77.43822094270212, 34.60064820480067], [-77.43816255913335, 34.600453563847225], [-77.43818528612884, 34.60026699799526], [-77.43818527323147, 34.60023798278163], [-77.43819163170005, 34.60021490775023], [-77.43818522760225, 34.6000546705531], [-77.43817586933436, 34.60002704561832], [-77.43817558630836, 34.5998540583866], [-77.43817555143164, 34.599775525936714], [-77.43815331166135, 34.59960571339163], [-77.4381749872373, 34.599429992906614], [-77.43817495199357, 34.59935057709605], [-77.43826564394233, 34.59916487690148], [-77.43832037686714, 34.598827447065084], [-77.43823209076572, 34.59874513437356], [-77.43832029257439, 34.59863730291489], [-77.43840851002726, 34.59856670121384], [-77.4386312275036, 34.59826282645391], [-77.43864663510357, 34.59809278593441], [-77.43871714852014, 34.597825807674866], [-77.43876354431201, 34.59743604100078], [-77.4387662773036, 34.59735555752498], [-77.43876599021215, 34.596969557378706], [-77.43851405837701, 34.59689146097179], [-77.43844657733419, 34.59659115081273], [-77.43840758639755, 34.59650091592888], [-77.43831017641287, 34.59629113002246], [-77.43824987294082, 34.59619500013396], [-77.43824979803395, 34.59602523568593], [-77.43826149749323, 34.59550104972225], [-77.43821519035475, 34.59535082739335], [-77.43809891701616, 34.59503577501898], [-77.43840692151299, 34.59500926630135], [-77.43858802072944, 34.594643025016], [-77.43863351399298, 34.59444114887072], [-77.4386569150208, 34.59428287172669], [-77.43865583961635, 34.59416932355045], [-77.43856388089378, 34.59402662399974], [-77.43847459121724, 34.59368848475648], [-77.4385129012391, 34.593609401808386], [-77.43880019022555, 34.59320152956971], [-77.4388169460088, 34.59315891514076], [-77.43919404570786, 34.59272304098706], [-77.43922249612287, 34.5926882712625], [-77.43997093850072, 34.592561401991915], [-77.4399821116005, 34.592563166523746], [-77.44004751588227, 34.59260873751087], [-77.44037625558137, 34.59272358980122], [-77.44055387866152, 34.592698258625376], [-77.44077030779022, 34.592686394812866], [-77.44092351960467, 34.59257673554817], [-77.44109354564117, 34.59238700953249], [-77.44110948198151, 34.59232574195592], [-77.44099876866906, 34.59215428661033], [-77.44078250834212, 34.59200739852336], [-77.44076998609799, 34.5920043550441], [-77.4407652765184, 34.5920048160197], [-77.44057295318044, 34.592004847235714], [-77.44040219948926, 34.59203409956144], [-77.44037593578274, 34.59203864622247], [-77.44034691979022, 34.592039130709516], [-77.44027336551356, 34.592081032390126], [-77.44008807506805, 34.59222217117284], [-77.43998208761758, 34.592511284590074], [-77.43996499925518, 34.59253180088983], [-77.43923653927207, 34.59260972865196], [-77.43919399726104, 34.592616083418626], [-77.43861789701427, 34.59251651692935], [-77.43840576928756, 34.59241555756416], [-77.43800741849847, 34.591984119846614], [-77.4379615021879, 34.59161987743473], [-77.43796109122403, 34.59156622562007], [-77.43785923343597, 34.591417146489015], [-77.43781969633109, 34.59136846312011], [-77.4376932955369, 34.59118035544866], [-77.43766206161912, 34.59113640235393], [-77.43761704544929, 34.59106259119031], [-77.43743780976794, 34.59079270490054], [-77.43761676362006, 34.59041105480215], [-77.43763981153907, 34.59036375772679], [-77.43766171878704, 34.59033573409575], [-77.43801060409635, 34.589910070079966], [-77.43804103884504, 34.58988909243438], [-77.43807706045574, 34.589851080453904], [-77.43809421127575, 34.58975844251258], [-77.43801056639086, 34.589823717619524], [-77.43798487910934, 34.589836726264416], [-77.43761651164314, 34.589827892193526], [-77.43732670126616, 34.58984726771007], [-77.43722245433825, 34.589826359170594], [-77.43707204638889, 34.589733834217036], [-77.43684048971306, 34.58960529544821], [-77.43683254506892, 34.5896018731543], [-77.43682830065825, 34.5895968201442], [-77.43651794631563, 34.58922734002358], [-77.43649164652591, 34.58916909989901], [-77.43643401683755, 34.58905018486059], [-77.43634721509545, 34.58892090437247], [-77.43627409639322, 34.588838005700595], [-77.43616844946952, 34.58871468743466], [-77.43603976000034, 34.58855619336165], [-77.43598914837375, 34.588509127062245], [-77.43596063028514, 34.588458737054445], [-77.43584266363057, 34.588383106697], [-77.43578620703587, 34.58833247046005], [-77.43573071508166, 34.588279683719676], [-77.43564556365394, 34.58819911977989], [-77.43556836029404, 34.588174038125004], [-77.43549316347483, 34.588101734045345], [-77.43542362368865, 34.58792621990303], [-77.43542425993131, 34.58789940034309], [-77.43539004896509, 34.58784147860598], [-77.43529328674276, 34.58770604077356], [-77.43527483627214, 34.587683355108055], [-77.43525129594819, 34.587656054406], [-77.43518861104712, 34.58757638865647], [-77.43513536983194, 34.587516576810145], [-77.4350973294367, 34.58747560436621], [-77.43497053232086, 34.58732811318856], [-77.4348570681085, 34.587200131924696], [-77.43472817077279, 34.5870773993761], [-77.43465995796754, 34.586977630422155], [-77.43464621599001, 34.58696521309903], [-77.43464178580905, 34.58695105157597], [-77.43456139948897, 34.586856676305864], [-77.43456133627808, 34.58685660298517], [-77.43456128747546, 34.586856541960664], [-77.43456091738284, 34.58685607623952], [-77.43448562791522, 34.58676133270252], [-77.43446284010555, 34.5867326566938], [-77.43435582934507, 34.586683088807995], [-77.43424884088591, 34.58658327071258], [-77.43407503957653, 34.58619075845509], [-77.4344625183713, 34.585910597583094], [-77.43449936983633, 34.585737647310445], [-77.4347348448462, 34.585663819710405], [-77.43504032604933, 34.58499664754083], [-77.43498303696809, 34.58477875045413], [-77.43446180619414, 34.584086650026514], [-77.43440388905516, 34.58407570561237], [-77.43367394855883, 34.584619317362254], [-77.43334916623215, 34.584165789792024], [-77.43313709188655, 34.583925478770105], [-77.43288548028134, 34.58353386539766], [-77.4327039047023, 34.58360558060524], [-77.43280403926373, 34.583395416811456], [-77.43279423598423, 34.58329860557875], [-77.43280958131913, 34.58262685790875], [-77.43280280312787, 34.5825464129079], [-77.43249101554127, 34.58233784937755], [-77.432421412789, 34.5822519275557], [-77.43216073189583, 34.582283349006296], [-77.43209697931312, 34.58229911464228], [-77.43197981023702, 34.58236708443185], [-77.4318641574893, 34.58243117372672], [-77.43170307330647, 34.582625862698116], [-77.43150468642898, 34.582734074092556], [-77.43142720850449, 34.58287250548055], [-77.4313092022322, 34.58306075167968], [-77.43121895001256, 34.58287256102793], [-77.43113392911803, 34.582787669371285], [-77.43052094331387, 34.58245459625994], [-77.43026627268077, 34.58263859649786], [-77.43012697651344, 34.58262232597589], [-77.43002033251761, 34.58263897315156], [-77.42973300804158, 34.58278979380434], [-77.42954672248811, 34.582816352482176], [-77.42913348675623, 34.58287370313017], [-77.42896790925633, 34.58267617016794], [-77.42895474170925, 34.582667488265145], [-77.4289449167089, 34.582661630859505], [-77.42870459911609, 34.5825485582872], [-77.4285508129696, 34.58241219995803], [-77.42845582839267, 34.58232559466813], [-77.42826481818224, 34.5822367332195], [-77.42815670646485, 34.5821465035866], [-77.4279501297568, 34.58197409505535], [-77.4279205014996, 34.58180820362124], [-77.42787823970505, 34.581559896539645], [-77.42799806589183, 34.58137189006761], [-77.42799649379268, 34.581290571412225], [-77.42801336813987, 34.58111577769756], [-77.42795934083213, 34.58100259907831], [-77.42793209842038, 34.58094456609369], [-77.42790763211643, 34.58091876540278], [-77.42776225298154, 34.58074389864881], [-77.42775131956213, 34.58074084362994], [-77.42773723902275, 34.580731097912775], [-77.42750788034401, 34.58061372502654], [-77.42736813656295, 34.58041037695519], [-77.42734102079505, 34.5803929880186], [-77.42733706904852, 34.58036434501128], [-77.4273061420063, 34.58030204468895], [-77.42721155007209, 34.58012654255246], [-77.42713355070981, 34.57996917005428], [-77.42704208145162, 34.57963128354251], [-77.4270716610604, 34.57955352630994], [-77.42736778024396, 34.57922864196757], [-77.42745192091388, 34.57916467189047], [-77.42756475286464, 34.57912438387329], [-77.42765096548264, 34.579045212243415], [-77.42769973997194, 34.578971382812725], [-77.42769353394947, 34.578900209788046], [-77.4276365537092, 34.57883500084658], [-77.42760991622902, 34.57879007253696], [-77.42748657692587, 34.57864438259996], [-77.42749667839486, 34.578357519740806], [-77.42744769030692, 34.578225414305884], [-77.42776134415672, 34.577772284402215], [-77.4277694009885, 34.57776301371203], [-77.42777803337597, 34.577753080706366], [-77.42795827537356, 34.577545682167724], [-77.42797312410623, 34.577528596170325], [-77.42800198130419, 34.57750841811638], [-77.42803062107475, 34.577476116795694], [-77.42803093707474, 34.5774258904124], [-77.42797768228567, 34.577405782966046], [-77.42795823109795, 34.5774014072243], [-77.42787871847308, 34.57739962463478], [-77.42783480269843, 34.57739957080045], [-77.42776124411515, 34.5774438528414], [-77.42765793054193, 34.577457189392206], [-77.42739192382663, 34.57738429713688], [-77.42737087708085, 34.57738340440875], [-77.42736722585771, 34.57738321510113], [-77.42736230564921, 34.577383275658704], [-77.42697322622138, 34.5773839859065], [-77.42690148209186, 34.57737786769876], [-77.42677622932435, 34.57739448882305], [-77.42669499483353, 34.57736025878727], [-77.42666472272887, 34.57736924211266], [-77.42657924000167, 34.57743130700344], [-77.42651880816211, 34.57744535777783], [-77.42626722342916, 34.57745850500979], [-77.42618525422567, 34.577481975963764], [-77.42609653539522, 34.57747590843611], [-77.42589576106815, 34.577487909638776], [-77.42579125840712, 34.57749891284008], [-77.42572412777456, 34.57748537663742], [-77.42565419695426, 34.577487740180175], [-77.42559425604773, 34.57749172581273], [-77.42554889110961, 34.57748724838981], [-77.42539771131078, 34.57746021071335], [-77.42539724696337, 34.57746012692557], [-77.42538836105169, 34.57746156194497], [-77.42520542647824, 34.57749357035948], [-77.42519495524847, 34.57749522405295], [-77.42500326980996, 34.577546521587955], [-77.4247771112293, 34.57751848015755], [-77.42444282065009, 34.577565281631735], [-77.42421521806756, 34.577357586134475], [-77.42404616605812, 34.57720076997463], [-77.42398312925837, 34.5770277479388], [-77.42382106730098, 34.57677250735612], [-77.42373535561048, 34.57673131918], [-77.42355681016586, 34.57638009804662], [-77.42348884200467, 34.576249999281025], [-77.42388914245353, 34.57584118723596], [-77.42392364233444, 34.57576258357298], [-77.42408337810404, 34.57559791883166], [-77.4241894180352, 34.57551188447992], [-77.42405571336784, 34.57549027724116], [-77.42382732172648, 34.57535191552827], [-77.42382070250446, 34.57534880355628], [-77.42343766138718, 34.57539643455573], [-77.42342671989132, 34.57538204685092], [-77.42334816083338, 34.57533650724299], [-77.42337601829814, 34.57541712921618], [-77.42318015339985, 34.5756042447769], [-77.42314039016213, 34.575759842247294], [-77.42311096229692, 34.575880015641374], [-77.42307514127631, 34.57593075170092], [-77.42303287057234, 34.57595764858399], [-77.42297620960012, 34.575960547956306], [-77.42271876014223, 34.57602275574891], [-77.4226389101642, 34.576096360921234], [-77.42240003332898, 34.57614988748061], [-77.42224493059969, 34.57616022437443], [-77.42217322778839, 34.576092763508356], [-77.42206541264419, 34.576031088686975], [-77.42185088346469, 34.57593653002992], [-77.42168441020911, 34.575840927683466], [-77.42150346540296, 34.575737937279484], [-77.4214568382992, 34.575712430978], [-77.42144743091747, 34.57570592832048], [-77.42142372433536, 34.575699217252456], [-77.4212598352866, 34.57568378884549], [-77.42118305834056, 34.575651258353865], [-77.42116132794267, 34.57564322814023], [-77.42115004446643, 34.57564477241689], [-77.42106282496097, 34.57562180579905], [-77.42097201709205, 34.57555218733469], [-77.42090463704284, 34.57552007613417], [-77.42072129767925, 34.57543270183894], [-77.42066879954196, 34.57547215011225], [-77.42062738377959, 34.57543430903689], [-77.4206264730855, 34.57538981795834], [-77.42047176873106, 34.575311037543855], [-77.42040839842491, 34.575277314969796], [-77.42031295950454, 34.57522282018259], [-77.4202747492669, 34.57519959050482], [-77.42015156904766, 34.57516658189238], [-77.41996974016033, 34.57506011324132], [-77.41988071868684, 34.575009304261414], [-77.41976813220113, 34.57496791952484], [-77.41963283362516, 34.574951322438444], [-77.41961695580011, 34.57489878746948], [-77.4194866753503, 34.574747745248764], [-77.41946686387988, 34.574729524541134], [-77.41944038053923, 34.57471200454642], [-77.41928964585031, 34.57457338584604], [-77.41925823751258, 34.5745598702226], [-77.4190926310598, 34.5744689697922], [-77.41892224729955, 34.5743622719676], [-77.41886057758911, 34.57419661309123], [-77.41872097419302, 34.573566433366466], [-77.41871238606448, 34.573543420771145], [-77.4187309573103, 34.57350571324295], [-77.41869840942243, 34.57325800188077], [-77.41861406118255, 34.572799260669285], [-77.41861441430885, 34.572708405547644], [-77.41860429490471, 34.572608576513765], [-77.4186982627715, 34.57249608683634], [-77.41908915798768, 34.572211975605306], [-77.41909218485843, 34.57221008757609], [-77.41909782493825, 34.57220790722646], [-77.41937410843283, 34.57205334680199], [-77.41938030120667, 34.571960884896185], [-77.41931954200805, 34.57193687603617], [-77.41921980985029, 34.57177177856971], [-77.41909207111303, 34.571631091140766], [-77.41888128933155, 34.571623255525694], [-77.41891037919011, 34.57139189680683], [-77.41869804294473, 34.57134990746712], [-77.41851932377543, 34.57144839043013], [-77.41854771459302, 34.57170679115542], [-77.4185149992638, 34.57187359890176], [-77.41821374767535, 34.57224418282785], [-77.41791029491165, 34.57243693256689], [-77.41764963816377, 34.57227948211282], [-77.41724313635773, 34.57218755714147], [-77.41712229635331, 34.57219619361858], [-77.41702541280935, 34.572193187514046], [-77.41690025329785, 34.57210685741255], [-77.41650088653739, 34.571985023807976], [-77.41633427285299, 34.57177634667001], [-77.41632160902999, 34.57176585777332], [-77.41605395430386, 34.57168201482916], [-77.41555833270046, 34.571451523294535], [-77.41555184741095, 34.57144645028313], [-77.41554627016343, 34.57144145600948], [-77.41546456379314, 34.57137702303857], [-77.41515224948091, 34.571128577562384], [-77.4151185283434, 34.571126805122724], [-77.41510504892771, 34.57104155733021], [-77.41506889899681, 34.5706730503789], [-77.41515216196345, 34.5705389867552], [-77.41530291045326, 34.57037715616767], [-77.4155461066602, 34.570374298672675], [-77.41573598311892, 34.57037206720597], [-77.41574680088085, 34.5703668439245], [-77.41594005073358, 34.57021594773007], [-77.41599472943157, 34.57017367669074], [-77.41613743942565, 34.56988134265372], [-77.41614382281745, 34.569668623456195], [-77.41618794298434, 34.569504945564894], [-77.41633388281797, 34.569374724599484], [-77.41667754845686, 34.5691127841142], [-77.41672779937245, 34.569088611336575], [-77.4168018560807, 34.56906917257614], [-77.41695070255956, 34.56894315917126], [-77.41701134367491, 34.56890643637692], [-77.41707859630532, 34.56885024439706], [-77.41712170665832, 34.56876384769048], [-77.41714807208916, 34.568702819748665], [-77.41715968672878, 34.568672715936366], [-77.41718241489325, 34.56860397583424], [-77.41716636807153, 34.56824716736789], [-77.41717912692151, 34.56788278641477], [-77.41748679720816, 34.567776295046144], [-77.41790941143864, 34.56755302346356], [-77.41800857451126, 34.56759405397476], [-77.41811209619394, 34.56768596402958], [-77.41830340014525, 34.56773524996668], [-77.41846866994335, 34.56788094607575], [-77.41859692577884, 34.56793222861365], [-77.41869739002837, 34.56791469332335], [-77.41880978237894, 34.567706343855974], [-77.41909128352228, 34.567587484847074], [-77.41919108141798, 34.56753008450775], [-77.41940677292648, 34.56741439301899], [-77.4194851980185, 34.567382001460274], [-77.4195761548059, 34.56737642055026], [-77.41993410665208, 34.56742273426701], [-77.42022012844413, 34.567438519296985], [-77.42027312904781, 34.56749227207717], [-77.42038952817626, 34.56748238596488], [-77.42066708584989, 34.56750330473591], [-77.42090724546402, 34.567447871128415], [-77.42106112584457, 34.56789740740917], [-77.42121590175714, 34.56740445956021], [-77.42145496482489, 34.56736853689755], [-77.42184875778926, 34.567146209804214], [-77.42184886820206, 34.56714620161716], [-77.42184892278767, 34.56714612581148], [-77.42184911608184, 34.56714603903203], [-77.42250518712173, 34.566909478263625], [-77.42263670879927, 34.56687253730622], [-77.42282351544296, 34.566803885951565], [-77.42319043512444, 34.566699873682744], [-77.42342452808334, 34.566533734047056], [-77.42385091131027, 34.56639718652603], [-77.42415537682238, 34.56681276983066], [-77.42419308571627, 34.56682824589931], [-77.42421252279358, 34.56691236808459], [-77.42433628968334, 34.567077865810994], [-77.42440955073067, 34.5671167916532], [-77.42446383429387, 34.56703901246202], [-77.42460647891002, 34.566932261947485], [-77.42480817309493, 34.566718428386075], [-77.4249040143415, 34.56660075714761], [-77.42500031513995, 34.566496599076125], [-77.42524122914483, 34.56639615931446], [-77.42578805792266, 34.56592848444515], [-77.42587919579631, 34.5658127219869], [-77.42614253666267, 34.565676399302085], [-77.42641127848987, 34.565460217786416], [-77.42657581288593, 34.565442165068646], [-77.42679436973356, 34.56534659736014], [-77.42712364309682, 34.565275912210964], [-77.42736351857485, 34.56481807433633], [-77.42770508243807, 34.565082493903034], [-77.42789062428936, 34.56542372743961], [-77.4277202075892, 34.565832478200605], [-77.42770226805884, 34.56593538307652], [-77.42753793151692, 34.56632388661554], [-77.42756584916167, 34.56652690883764], [-77.42756603218895, 34.56653211938759], [-77.42769508486217, 34.56665794782603], [-77.42775546057062, 34.56671703272581], [-77.42775661220533, 34.566718384735694], [-77.42776517267883, 34.56672333503785], [-77.42815201428094, 34.566863787991736], [-77.42832880872695, 34.5668682010389], [-77.4288867914619, 34.56692081297483], [-77.42893992447856, 34.566897124057135], [-77.42898166186944, 34.566919396080685], [-77.42903765112987, 34.566956278541795], [-77.42972794890098, 34.567285828678], [-77.43009608328131, 34.56725567135692], [-77.43028362621229, 34.56762533738488], [-77.42998023082744, 34.5679408718481], [-77.42972822546166, 34.568147752301265], [-77.42957328030563, 34.568410123540524], [-77.429547059177, 34.5685809984448], [-77.42950864694768, 34.56877427307872], [-77.42951712004066, 34.56881307616144], [-77.42959342371665, 34.56899888590102], [-77.42972859525344, 34.569297723047065], [-77.42979967812947, 34.56931705679524], [-77.42987797343167, 34.56938234097369], [-77.42981504638726, 34.56948454508027], [-77.42979037527161, 34.5701779075127], [-77.4298582008629, 34.57023437959941], [-77.43012287655706, 34.57027644963714], [-77.43050534098082, 34.57015317835384], [-77.43051679979025, 34.57014868218233], [-77.43052419751001, 34.57014607489804], [-77.43130471313702, 34.570100100340596], [-77.43137370787173, 34.570089649726384], [-77.43169865789599, 34.57004278725548], [-77.43176473306477, 34.57002997199364], [-77.43202588372004, 34.56992099882022], [-77.43200334206166, 34.569828117722956], [-77.43187462936362, 34.56932835563727], [-77.43180300323532, 34.569104039830336], [-77.43167901121652, 34.56871805339978], [-77.43154128785724, 34.5682926960653], [-77.43132044039127, 34.56749335123595], [-77.4313179031159, 34.567460626237015], [-77.43142306159787, 34.56661142553138], [-77.43130348793879, 34.566498510372455], [-77.4310873103511, 34.56604361339934], [-77.43080141655348, 34.5658521185655], [-77.43051531421001, 34.565652835563526], [-77.42994326914966, 34.565743576406426], [-77.4296587361222, 34.56516813227768], [-77.42927044985714, 34.56486734428896], [-77.42893923498353, 34.56467271689018], [-77.42879661744949, 34.56459727250859], [-77.42851749050502, 34.56448393370583], [-77.4283177954249, 34.56433329965652], [-77.4281976400135, 34.563680991573435], [-77.42815101848134, 34.56354559610623], [-77.42799912976619, 34.56302404928928], [-77.42756847704553, 34.563144191148], [-77.42761281497052, 34.56349641955577], [-77.42809762452711, 34.56369544916898], [-77.42761225799843, 34.56403394815128], [-77.4273634225954, 34.56448740597817], [-77.42732486746313, 34.56461473417056], [-77.42706770484352, 34.564693499768936], [-77.42672889949164, 34.56490762972183], [-77.4265756530848, 34.56487387303611], [-77.42647004046592, 34.56489372158663], [-77.42646610241204, 34.56478045636422], [-77.42618163919616, 34.56460973676282], [-77.42606854949042, 34.56453519503971], [-77.42586964639604, 34.56453042317275], [-77.42578767726314, 34.56452813102099], [-77.42571091101874, 34.564547764296975], [-77.42540265344415, 34.564519184691655], [-77.42539373726298, 34.56452615567539], [-77.42537308684003, 34.56453610580453], [-77.42499981951893, 34.56460937716881], [-77.42477912118963, 34.56478635937558], [-77.42431249406857, 34.565091714886705], [-77.42424785509104, 34.565139621720085], [-77.42421207610589, 34.565150377353255], [-77.42417589048966, 34.565150457205995], [-77.42409977451496, 34.56512245681233], [-77.4235623057276, 34.56505124393305], [-77.42342415872915, 34.56501930216973], [-77.42306934777226, 34.56480455006723], [-77.42303016094776, 34.56478667261068], [-77.42283522621912, 34.56467054411953], [-77.42288801997303, 34.56487298428112], [-77.42283875065664, 34.565086480090315], [-77.42285209501436, 34.565302761773836], [-77.42272054051237, 34.565412494129276], [-77.4226363843942, 34.56549042604593], [-77.42231065121564, 34.565879009831015], [-77.42224253546223, 34.56590728479488], [-77.42215516947816, 34.5659222209325], [-77.42184859549393, 34.5659368762213], [-77.42142365471884, 34.565967167074405], [-77.42106070336959, 34.56594500737559], [-77.42083296684785, 34.5658399461209], [-77.42047845305152, 34.565867400120325], [-77.42027281864239, 34.565991517229754], [-77.42023058686152, 34.56606061245229], [-77.42013034709672, 34.566120626874955], [-77.41996303996186, 34.56623546090775], [-77.41987892337046, 34.566250388041524], [-77.4198223350475, 34.566226112698494], [-77.41968194684662, 34.56623965096449], [-77.41961888916134, 34.566194522845464], [-77.41955612042577, 34.56612688650677], [-77.41948492167211, 34.565981570194495], [-77.41936143619196, 34.56594021387821], [-77.41934196140902, 34.56580994794009], [-77.41921067382282, 34.56553343306815], [-77.41918280506063, 34.56540835774162], [-77.41948476322408, 34.56517529153185], [-77.4196465115003, 34.565091124296984], [-77.41987867391454, 34.565011012629526], [-77.41998485418267, 34.56498233879833], [-77.420232314912, 34.56487554576019], [-77.42027258512346, 34.56485712432255], [-77.4202999749605, 34.564851884652526], [-77.42034493905848, 34.56481586647072], [-77.4205456976101, 34.564656676032754], [-77.42066642358104, 34.56436382293114], [-77.42067359065175, 34.56435152245781], [-77.42106028850137, 34.564015159120295], [-77.42113600868316, 34.56393402348581], [-77.42125565744033, 34.563835105133634], [-77.42138576352171, 34.56374258027013], [-77.4214541379456, 34.56361099501481], [-77.42159613716271, 34.56351439102544], [-77.4218480550719, 34.56352685459518], [-77.42199436797864, 34.5635706762406], [-77.42208802226882, 34.563548876076176], [-77.4222419881783, 34.56351666281421], [-77.42232720762522, 34.56346797319812], [-77.4224080909334, 34.56342304193977], [-77.42243892674352, 34.563390314146574], [-77.42260702582077, 34.56321524462219], [-77.42261498642158, 34.56319160950584], [-77.42263584160806, 34.56316463279311], [-77.42277640629669, 34.562917745422574], [-77.4230296771079, 34.562750929686075], [-77.4230727111173, 34.562723362018005], [-77.42323313051739, 34.56249494457088], [-77.42323154547515, 34.56248276188516], [-77.42316256442402, 34.562285790363745], [-77.42313787455876, 34.5621725923277], [-77.42294323454777, 34.56222445040643], [-77.42271954512154, 34.562349811768016], [-77.42266105804606, 34.5623856375517], [-77.42263566750563, 34.56241491191607], [-77.42242127227425, 34.56258637830265], [-77.42224182285742, 34.56279082618201], [-77.42218257531766, 34.56285199394836], [-77.42199796676282, 34.56304036377344], [-77.42184795872981, 34.5630951533057], [-77.42162068791046, 34.56317816175547], [-77.42129749754712, 34.56323573341777], [-77.4210601222569, 34.56323827598405], [-77.42087320981483, 34.563242651543405], [-77.42052043959902, 34.56309216744519], [-77.42027211059536, 34.56253723758398], [-77.42022004897785, 34.56234247064195], [-77.42022415747984, 34.56228580717024], [-77.41987809915122, 34.56213369045657], [-77.41978012586495, 34.56203095446082], [-77.4195046859502, 34.56196517562121], [-77.41948413571016, 34.561957877548906], [-77.41946942537206, 34.56197027017387], [-77.41940692128045, 34.56232058640696], [-77.41939281948345, 34.562405922797765], [-77.41948428055309, 34.56270372017899], [-77.41964987681564, 34.56303954098246], [-77.41974976498389, 34.56320352012456], [-77.41971019443882, 34.56345257051874], [-77.41948454626227, 34.56406732165264], [-77.41947860811463, 34.56408546307778], [-77.41947963725123, 34.564091718320064], [-77.41948005582468, 34.56409650372917], [-77.419322396311, 34.564788690179476], [-77.41909076515999, 34.56489164081463], [-77.41872924755228, 34.56501437830386], [-77.41869684720655, 34.565023268892986], [-77.41866553050653, 34.56502475316165], [-77.41830290314542, 34.56501854541072], [-77.41804238808137, 34.56500472150968], [-77.41790891321969, 34.56475479028006], [-77.41763700403189, 34.56465096600474], [-77.4176994035815, 34.56434891268349], [-77.41751487263089, 34.56418275907223], [-77.4172913962945, 34.56440785459846], [-77.41735714541817, 34.56465285672402], [-77.41742319442953, 34.56481339847352], [-77.41712110792996, 34.56522594672907], [-77.4170906703981, 34.56525320865746], [-77.41702559929595, 34.56529541847099], [-77.41682252961198, 34.56542750075618], [-77.4167272196344, 34.56556984999085], [-77.41664292946854, 34.56568441496624], [-77.4163333415175, 34.56599793605031], [-77.41617590598128, 34.56609763054832], [-77.41593941952087, 34.5661684046156], [-77.41576029952145, 34.566327359367534], [-77.4156304113011, 34.566437623310115], [-77.41554553101761, 34.56657306118043], [-77.41539562652937, 34.5668046168082], [-77.41532957425267, 34.56700592242506], [-77.41515166916373, 34.567186631949646], [-77.41509404604058, 34.56727275977442], [-77.41496855890631, 34.5675180691409], [-77.41475781594224, 34.56790034087291], [-77.41460838689264, 34.56803100594905], [-77.41429422264578, 34.568237445994484], [-77.414574149918, 34.568395033037305], [-77.41453404173376, 34.568810666625296], [-77.41418129229018, 34.56887523789081], [-77.41396999042594, 34.56857793576867], [-77.41358713645431, 34.568752204900775], [-77.413563082067, 34.56875364728742], [-77.41318206863548, 34.56857915308966], [-77.4128943318592, 34.56843962528487], [-77.4126212688765, 34.56823423994311], [-77.41239407285198, 34.567931133747365], [-77.41229853015325, 34.567779458046076], [-77.41222365722516, 34.56768732028538], [-77.4120000771666, 34.56758557685615], [-77.41170636646535, 34.56776202332352], [-77.41163145473176, 34.56780012084989], [-77.41160614486976, 34.567820375866354], [-77.41156189549747, 34.56783057610079], [-77.41086755731085, 34.56793630295201], [-77.41081824124791, 34.56794839854082], [-77.41045392817423, 34.568367460883685], [-77.41045419414199, 34.56839961491092], [-77.41057372035168, 34.56877474245237], [-77.41061784756995, 34.568984443179644], [-77.41065412838822, 34.56918771199486], [-77.41081837789685, 34.569388015285654], [-77.41094322086636, 34.569436007077655], [-77.41111051917453, 34.56954638843133], [-77.41142472812669, 34.56969674039015], [-77.41160635319035, 34.56981394146008], [-77.41192264628184, 34.5697699887179], [-77.41205983023909, 34.56976974302171], [-77.41210078313756, 34.56982796880657], [-77.41230274468549, 34.56989746951726], [-77.41239431301128, 34.57003751697314], [-77.41249736528448, 34.57008422389879], [-77.41259783780825, 34.57018076840403], [-77.41249905308625, 34.57030787930462], [-77.41239438029294, 34.57062258186796], [-77.41239191365425, 34.57063242849446], [-77.41238765538391, 34.570635702943505], [-77.4122238376612, 34.570900113311126], [-77.41166945194732, 34.571096143096085], [-77.41160648820777, 34.5710920755254], [-77.41153889425243, 34.57111000357249], [-77.41139148470677, 34.571204137471206], [-77.4109368801908, 34.57139728251947], [-77.41081858133147, 34.57150199008345], [-77.41064717816357, 34.57197600835312], [-77.41054689076363, 34.57217525634228], [-77.41042467864246, 34.57228746665111], [-77.41016114634745, 34.57237152528984], [-77.41003071936177, 34.57251210102362], [-77.40989577974528, 34.57241468160524], [-77.4097287983959, 34.57229338153542], [-77.40963671781466, 34.572257889197864], [-77.40944945528085, 34.57211092989512], [-77.40941923356466, 34.572103715748035], [-77.40924272293023, 34.57205775563854], [-77.40915342069366, 34.572048115867815], [-77.4089915960649, 34.57197524286223], [-77.40889517820781, 34.57193911399131], [-77.40868291972188, 34.571841121316496], [-77.4084547544467, 34.57188553258471], [-77.40832041390769, 34.571792336234736], [-77.4078100886731, 34.57172124609799], [-77.40770214895753, 34.57169872203234], [-77.40766678639592, 34.571672113605935], [-77.40761060768648, 34.57168950210463], [-77.4072728073053, 34.571629790041115], [-77.40702620791366, 34.57167559150248], [-77.40687883234247, 34.57166307674098], [-77.40675074819764, 34.571736143714205], [-77.40612147214787, 34.57193206473425], [-77.40609088949434, 34.571935451004755], [-77.40592907447878, 34.57199279648623], [-77.40542407946413, 34.57219624074986], [-77.40530294398796, 34.57229273114061], [-77.40500202043685, 34.57245091389094], [-77.40451499519466, 34.572816391975465], [-77.4042615054714, 34.572809487017295], [-77.40412101205557, 34.57279934159765], [-77.40403145226708, 34.57278780436912], [-77.40374834724905, 34.57275512712754], [-77.40372702893828, 34.57277510843985], [-77.4033750103323, 34.57283126065186], [-77.40346273704185, 34.5731979523263], [-77.40349613083936, 34.57344196747077], [-77.4034259136065, 34.573727912297], [-77.40320616612624, 34.57408413581797], [-77.4029390698122, 34.57436274752591], [-77.40268091377912, 34.57473089869039], [-77.40254507938461, 34.57478289241679], [-77.40232519435426, 34.57506043473552], [-77.4022244907857, 34.57515407154503], [-77.40215108501856, 34.5752163261076], [-77.4019666754643, 34.57531089774322], [-77.4017570883079, 34.57545507920405], [-77.4016836219194, 34.575498432714184], [-77.40150578801625, 34.57560326486294], [-77.40140495124892, 34.57566292744954], [-77.40136308924218, 34.575698471073], [-77.40114868492986, 34.57584833216468], [-77.40071073456286, 34.576142573811694], [-77.4006350455126, 34.57621811158924], [-77.4005750827035, 34.57624846601421], [-77.4004533201962, 34.576310929552534], [-77.40018107815138, 34.576425241504765], [-77.40003736564864, 34.57650945581582], [-77.39978706760498, 34.576738982971435], [-77.39950135204936, 34.57685835668208], [-77.39939305981925, 34.57689073461937], [-77.39924606805312, 34.57693689455598], [-77.3991960557175, 34.57695780848195], [-77.39914649331394, 34.57695174625021], [-77.39899905425058, 34.576952544935835], [-77.39860725302658, 34.57687304383063], [-77.39860505444332, 34.576872813812884], [-77.39860067591215, 34.576876341708406], [-77.39821104809315, 34.57693844201498], [-77.39802986054701, 34.57718332499476], [-77.39798448887743, 34.577385103308536], [-77.39781701360671, 34.57750374284643], [-77.39764375373782, 34.577672146841294], [-77.39756288978056, 34.57771975685063], [-77.39742298953755, 34.57780496307582], [-77.39732829721149, 34.5778023126613], [-77.39713673388769, 34.57781587696192], [-77.39702898517672, 34.5777519061696], [-77.39666990373219, 34.57761239194843], [-77.39663498776038, 34.57760346745552], [-77.39661826153196, 34.57760024117205], [-77.39659098304678, 34.57758615261308], [-77.39658551363618, 34.57753362393245], [-77.39646128907447, 34.57675571831327], [-77.3965118697717, 34.5760320634646], [-77.39642615729072, 34.57591164186627], [-77.39584713931308, 34.575503584494236], [-77.39565479472577, 34.57538105984936], [-77.395618422605, 34.57517902732976], [-77.39541369532671, 34.57482656026344], [-77.39541330765486, 34.57478404655844], [-77.39538594986149, 34.574715514109386], [-77.39523677279475, 34.57438494200724], [-77.39523802200142, 34.574192126341345], [-77.3952130417819, 34.573704890758655], [-77.39523883105574, 34.57353550139368], [-77.39532264123807, 34.573239677458105], [-77.3953566382585, 34.5729897073065], [-77.39563284910244, 34.572860669656386], [-77.39584735898055, 34.57277649833415], [-77.39661907570665, 34.572504763618504], [-77.39663534727225, 34.57250035730287], [-77.3966453907672, 34.57249425542694], [-77.396674353136, 34.572479254001465], [-77.39665612951363, 34.57245949048631], [-77.3966353524508, 34.57242891473383], [-77.39652068494806, 34.571775901642866], [-77.39641263961504, 34.57166786745452], [-77.39605260799156, 34.57149873412584], [-77.39584747569236, 34.571354503244706], [-77.39566236490715, 34.57112647337972], [-77.39553817305989, 34.57094488423155], [-77.39529348226272, 34.570728115383055], [-77.39528636133963, 34.57037643060076], [-77.39532256482042, 34.57012684624759], [-77.39545362795411, 34.56987549917222], [-77.39552425602767, 34.56974927831247], [-77.39557870471714, 34.56966532098026], [-77.39569338674241, 34.56948254922408], [-77.3956793663501, 34.56940756913351], [-77.39559322943828, 34.56923865336013], [-77.39546378080821, 34.56884360004768], [-77.39545912849368, 34.56883342835737], [-77.395459128938, 34.56882760012217], [-77.39545372211686, 34.56881440932711], [-77.39518908091125, 34.568447816061195], [-77.39538435225722, 34.56806990333428], [-77.3954101106549, 34.567991356075375], [-77.39541614444917, 34.56794990467411], [-77.39545379999937, 34.56794379312253], [-77.39548947454233, 34.567941459661185], [-77.395847773561, 34.56780203631722], [-77.39603729967128, 34.56768053823407], [-77.39604476413396, 34.567678844710954], [-77.39606431187191, 34.56766361993792], [-77.39624175845196, 34.567502130772], [-77.39632512978565, 34.5674347684532], [-77.39624177375029, 34.5673126762514], [-77.39607269325555, 34.56722884436613], [-77.3960085537221, 34.567229092957135], [-77.39584782216937, 34.56723257484768], [-77.39555746080345, 34.567232600018556], [-77.39545386209399, 34.56725407735834], [-77.39537633871231, 34.56723063407664], [-77.39510094486934, 34.56723104370523], [-77.3950599059546, 34.567231104722836], [-77.39497263880065, 34.5672993677217], [-77.39483707776063, 34.567409330529145], [-77.39466592458946, 34.567462921134585], [-77.39442870495112, 34.56753944128895], [-77.39427195008837, 34.56760728078397], [-77.394125731349, 34.5675944952212], [-77.39387799291987, 34.56757937521763], [-77.39367763716757, 34.56760806720102], [-77.39348404622373, 34.56746088495013], [-77.39346419865197, 34.56744432963793], [-77.39344667321828, 34.56742546604222], [-77.3933643921308, 34.56730836507635], [-77.3933001343844, 34.56722026622466], [-77.3931687694263, 34.567040983997586], [-77.39313284945878, 34.56700013855632], [-77.39309014748557, 34.566947230113726], [-77.39304022826772, 34.5670057357048], [-77.3930089271033, 34.56706404178079], [-77.3929378561991, 34.567334789107306], [-77.39269608788668, 34.56777741010669], [-77.3926406402884, 34.567906570151166], [-77.39260293603012, 34.56797174735054], [-77.39263512414747, 34.568032770457116], [-77.39269604892206, 34.56809440107084], [-77.39290751222907, 34.568352383265704], [-77.39298146790692, 34.56845864511738], [-77.39299264116161, 34.56865981117155], [-77.39298438182242, 34.56876586558833], [-77.39290175586581, 34.568999589754554], [-77.39269593239237, 34.56904669966143], [-77.39256031941062, 34.56910546698491], [-77.39243235677405, 34.569129532847086], [-77.39230195613231, 34.56911727579936], [-77.3920113023953, 34.569017553394744], [-77.39190800612752, 34.56898241602045], [-77.39187256826352, 34.56896443291748], [-77.39176607196018, 34.56894160074202], [-77.39151405040558, 34.568898439765064], [-77.39139091446796, 34.56886300648035], [-77.391284900017, 34.56883339441204], [-77.39112009980332, 34.568783315136415], [-77.39085361764134, 34.56864863974231], [-77.39084601453101, 34.568520583249935], [-77.39088243507119, 34.56821991364859], [-77.39092628318971, 34.56800459597124], [-77.39112030025521, 34.56736778606785], [-77.39112927076494, 34.56734483596903], [-77.39113500064697, 34.56733434551045], [-77.39114420159464, 34.567307269058595], [-77.39126033899548, 34.566617932702776], [-77.39125676448846, 34.56646764254023], [-77.39153716052083, 34.56602710967627], [-77.39167798705937, 34.56580609484182], [-77.3917519820066, 34.56554707163604], [-77.39190851148143, 34.56517997476842], [-77.39201333216258, 34.56477314244442], [-77.39198220373456, 34.564664722914806], [-77.39217104326495, 34.564354661443275], [-77.39223422684437, 34.56420379876046], [-77.39226722910537, 34.56416092509946], [-77.39230262189258, 34.56393892083623], [-77.39231852456757, 34.56376706838014], [-77.39232116966608, 34.56374672397082], [-77.39234575969732, 34.56355085442024], [-77.39230268800071, 34.56343271727143], [-77.39225855540866, 34.56339871716214], [-77.39200994728051, 34.56338701006221], [-77.39190875728701, 34.563357677063216], [-77.3918901784353, 34.56340428660349], [-77.39179573637445, 34.5637207244264], [-77.39170428963651, 34.5638556701932], [-77.39134926776255, 34.56415315113602], [-77.39112072442632, 34.56440594185926], [-77.39057470876676, 34.56486774084733], [-77.3906499112407, 34.56519874698146], [-77.39033271391729, 34.565181554583276], [-77.39005681492866, 34.565494286145174], [-77.38979785023821, 34.56555615946491], [-77.38954473830515, 34.56565216128985], [-77.38941990295581, 34.56574891641955], [-77.3893477327402, 34.56583210650976], [-77.38932061915729, 34.56589775576637], [-77.38934770765029, 34.565984703348875], [-77.3893950929002, 34.56604822032668], [-77.3895446421309, 34.566245642874385], [-77.3895758169876, 34.566285519112895], [-77.38972580367962, 34.56649317329115], [-77.3898618271786, 34.566668837635646], [-77.38954450555141, 34.56709161660883], [-77.38930767733831, 34.567004004219996], [-77.38909557612664, 34.56714468568086], [-77.3890464246839, 34.56721100668372], [-77.38875649571759, 34.5676330646344], [-77.38873539675706, 34.56765769734191], [-77.38867400993075, 34.567689283904315], [-77.38845764949735, 34.567823026434006], [-77.38836248854707, 34.567894751977654], [-77.3881617002587, 34.5679713612386], [-77.38796848196603, 34.56813943083533], [-77.38756048449338, 34.56828952444912], [-77.38718048537001, 34.568503023521956], [-77.38701726258536, 34.568601454003826], [-77.3867864783262, 34.56871616106294], [-77.38658103204894, 34.56884023905137], [-77.38646733586793, 34.56893731653149], [-77.38639245554238, 34.56899886136379], [-77.38622783092688, 34.5690685638411], [-77.38599844310997, 34.56921684054234], [-77.38584493773712, 34.569205515442334], [-77.38560447453905, 34.56921286377045], [-77.38545966368372, 34.56915799975064], [-77.3849598038186, 34.569074002281184], [-77.38484551272535, 34.56905928912937], [-77.38481657758787, 34.56901816884079], [-77.38438013794706, 34.56877883577914], [-77.38427921599467, 34.568322996284145], [-77.38402891724411, 34.567793863510786], [-77.38383053070665, 34.56775235910762], [-77.38382508681697, 34.567539338614075], [-77.38391397511828, 34.56740255615716], [-77.38402912904262, 34.5668613716705], [-77.38409336796273, 34.566651527054766], [-77.38409572266781, 34.566579488712186], [-77.38402921675167, 34.566476022543355], [-77.38375087427569, 34.566151821262736], [-77.38355069636995, 34.56588063480022], [-77.38353128461368, 34.5653465273609], [-77.38349198491557, 34.565039967805546], [-77.38341463937743, 34.5648647240805], [-77.38324168392222, 34.56487366652765], [-77.38278569164315, 34.56429266421043], [-77.38254940520174, 34.564223849984074], [-77.38245398335275, 34.56407379900684], [-77.3821358153685, 34.56388017472254], [-77.38202799390191, 34.56355276852], [-77.38180179248907, 34.563439305521946], [-77.38166627772105, 34.56335238364728], [-77.38158313729733, 34.56328195847172], [-77.38148190993735, 34.56320692863985], [-77.3813606629027, 34.56312927642639], [-77.38127241185057, 34.56306083370139], [-77.38096745213687, 34.562856527204666], [-77.38093716227796, 34.562797715017396], [-77.38087861328793, 34.562528755319065], [-77.38012293358022, 34.562163730147645], [-77.38009084140464, 34.562147489223214], [-77.38008289358737, 34.562143476986485], [-77.38006591009778, 34.56213735827092], [-77.3800794815904, 34.56212315167937], [-77.38009085095818, 34.56211312934704], [-77.38029987895625, 34.56167906723328], [-77.38025440412872, 34.56143712538184], [-77.3801631171749, 34.56127421737802], [-77.380122522377, 34.561246195149735], [-77.38009109951712, 34.56122036119749], [-77.37991061364289, 34.56108061421784], [-77.37986564876904, 34.561074071989886], [-77.3796972050264, 34.561085133357025], [-77.37943264680221, 34.56124003096691], [-77.37930321511047, 34.56128519827075], [-77.37918371933426, 34.56128660765661], [-77.3790757416833, 34.5614309584924], [-77.37851516059449, 34.56191709200938], [-77.37815128958319, 34.56202120733334], [-77.37810429070593, 34.562013763124455], [-77.37805797332535, 34.56200222060386], [-77.37772726561224, 34.56198882114909], [-77.3776048777616, 34.56206752549103], [-77.37742500152643, 34.56219231842416], [-77.37733324681238, 34.562252002903676], [-77.37720165570913, 34.562267455712714], [-77.37696465838123, 34.56215979778465], [-77.37693933828992, 34.56215784414964], [-77.37661682523606, 34.56213295886196], [-77.37654540757316, 34.56213554113025], [-77.37646294199033, 34.562143231816094], [-77.37634843563686, 34.562144881627326], [-77.37625693757336, 34.56214812320395], [-77.3761514644759, 34.562151691739835], [-77.37587465110236, 34.56219064382274], [-77.37575751555565, 34.56218478914838], [-77.37557395172124, 34.56213351252643], [-77.37554298163008, 34.56213345605081], [-77.37536359469804, 34.562132839184194], [-77.37523103706712, 34.56212794205177], [-77.37507965970906, 34.562125444403044], [-77.374969627906, 34.56221751608474], [-77.37487701365296, 34.56213593887068], [-77.37461764809076, 34.562118654944975], [-77.37457572128663, 34.56212471599838], [-77.37455160084336, 34.56210899014015], [-77.37448743831752, 34.56209223482073], [-77.37437877478193, 34.56205957138137], [-77.37426265384939, 34.56203750185376], [-77.37418182905729, 34.56199305885749], [-77.3739403135499, 34.562006798632225], [-77.3737879399554, 34.56185599276167], [-77.37333461215192, 34.56189778155258], [-77.37303446126799, 34.561452482056055], [-77.37300022908443, 34.56140639129814], [-77.37269047516874, 34.56098692658019], [-77.37252314077713, 34.56067703658576], [-77.3723705999311, 34.56052882387898], [-77.37229531229501, 34.55994956112753], [-77.3723101853827, 34.559858600901], [-77.3723813833366, 34.55966687349011], [-77.37244317423631, 34.559238210435396], [-77.3726083562011, 34.55896651698559], [-77.37265414547196, 34.55858580792997], [-77.37289190730239, 34.55807653914674], [-77.37282774782645, 34.557898506502355], [-77.37300152131976, 34.55786433386569], [-77.37325200825654, 34.558024650017714], [-77.37354860598963, 34.55824124233277], [-77.37378926379408, 34.55812812054964], [-77.37407038210979, 34.558209738766124], [-77.37418314548096, 34.55823524174909], [-77.37422810747245, 34.55826008583108], [-77.37431848544988, 34.55829553068882], [-77.37457700922532, 34.55839691967543], [-77.3747213758316, 34.558237471237504], [-77.37457711213463, 34.55810028950246], [-77.37448101381362, 34.55795117754988], [-77.37440888455932, 34.5578579423818], [-77.37428204785583, 34.55755799847468], [-77.37423072321623, 34.55740808982136], [-77.37411041555058, 34.55705183075173], [-77.37435630361949, 34.55677791303362], [-77.37457764121436, 34.55657803893222], [-77.374586971265, 34.55655859481156], [-77.37458856792884, 34.55654659958041], [-77.37466193138071, 34.55633551155609], [-77.37464869696265, 34.55626095305039], [-77.37465461864215, 34.55623042508303], [-77.37463606385442, 34.556189781594924], [-77.37460836554504, 34.55613095029123], [-77.37461551393606, 34.556089283742416], [-77.37457783097943, 34.556033245040155], [-77.37446301829905, 34.55585115025686], [-77.3743487084676, 34.555743807968746], [-77.37449207266346, 34.5553912596502], [-77.37440758565025, 34.5553107616381], [-77.37379050586178, 34.554655556075744], [-77.37372428061278, 34.55463149720856], [-77.37323127554103, 34.55463115037298], [-77.37233551202993, 34.55463023170658], [-77.37221486119988, 34.55473986850149], [-77.3721862612092, 34.55475091415642], [-77.37205896248412, 34.55480007786857], [-77.37162030200105, 34.555071709649255], [-77.37142691103585, 34.5551080847259], [-77.37119964078883, 34.55516882568788], [-77.37090804064769, 34.55525584195804], [-77.37063894253708, 34.55550461416257], [-77.37039143624558, 34.55530719132704], [-77.36993744244856, 34.555198648526], [-77.36985123354404, 34.55524198024712], [-77.36979542382083, 34.55518638785293], [-77.36978109688185, 34.55512827531699], [-77.36945745727098, 34.55492442687235], [-77.36932581467838, 34.55491120098606], [-77.36906363195163, 34.55473225600134], [-77.36891475333553, 34.55456450957552], [-77.36878354786343, 34.55442287230788], [-77.36866997578275, 34.5541417772325], [-77.3686361118257, 34.554056092508425], [-77.36862341085913, 34.554021383930134], [-77.36847312711345, 34.55390030446296], [-77.36844530873046, 34.55386476230034], [-77.36840143607546, 34.5538410829183], [-77.36827622178284, 34.553794704010194], [-77.36814810786112, 34.5538033794806], [-77.36790277306883, 34.55370064083337], [-77.3678825841666, 34.55369378189546], [-77.36755581951526, 34.55370932902677], [-77.3674906388056, 34.55366368608113], [-77.3669993230598, 34.55334113280773], [-77.36686427838985, 34.55326713853463], [-77.36671891903451, 34.553069659061265], [-77.36625988494609, 34.55316273604117], [-77.36593245847637, 34.55312241737877], [-77.36578303621259, 34.553119889358946], [-77.36549452075917, 34.55306823821688], [-77.36514834514406, 34.55307224171746], [-77.36506376927336, 34.55307762114309], [-77.36457803556438, 34.55306629569067], [-77.36436328148022, 34.55306372242217], [-77.36401674107381, 34.55300830978364], [-77.36386841471175, 34.552992862921755], [-77.3635803889614, 34.55296011506816], [-77.36341791606522, 34.55297872421036], [-77.36321014186612, 34.55290760193707], [-77.36279803605164, 34.55283295487467], [-77.36244474864138, 34.55274966135378], [-77.36221360429991, 34.552684579353546], [-77.36201631146767, 34.55267838878781], [-77.36194646040897, 34.5526439857957], [-77.3619424150332, 34.55260052232909], [-77.36192759076452, 34.552545440181085], [-77.36179844263557, 34.55237643079132], [-77.36178273615636, 34.552285119767916], [-77.36175734890077, 34.55213752402936], [-77.36173568781388, 34.55195535378873], [-77.36176360154948, 34.55181683231456], [-77.36179061347252, 34.55164308451647], [-77.36179253853852, 34.55148628165152], [-77.36181598032823, 34.55129442473909], [-77.36181752723463, 34.55114955952118], [-77.36182428832265, 34.55100499837262], [-77.36184671874268, 34.5507883940452], [-77.36176154396506, 34.5506679719541], [-77.36188003153146, 34.55053538782035], [-77.36199664286637, 34.55019216401724], [-77.36200462567932, 34.550143316967365], [-77.36200910491688, 34.550101452391814], [-77.36203157769465, 34.54968295664239], [-77.36199511692689, 34.54965503683206], [-77.36202900619332, 34.54961440541718], [-77.36182070022817, 34.54935978070251], [-77.36176982422278, 34.54919783247808], [-77.36176161677342, 34.54898759064706], [-77.3617557281822, 34.54892618427319], [-77.3615973400754, 34.548733022308575], [-77.36175188065296, 34.54848612401088], [-77.3617481716776, 34.5484491357118], [-77.36173113403119, 34.54822410596552], [-77.36173288980464, 34.54798015468256], [-77.36173385238666, 34.54797720549563], [-77.36166616993447, 34.547743811724054], [-77.36213985766418, 34.54727275691223], [-77.36223162147382, 34.54722933415042], [-77.36243232903455, 34.54714382413037], [-77.3625377282458, 34.54704221321093], [-77.36259731886652, 34.54691052146064], [-77.36293495520805, 34.54683974226737], [-77.36295557376236, 34.54682364088187], [-77.3631414252173, 34.54667850626541], [-77.36314813216327, 34.54666545363151], [-77.36322943745066, 34.546539372583936], [-77.36324646052196, 34.54648124340366], [-77.36328751999129, 34.546318571802075], [-77.36326738775455, 34.546289081579935], [-77.36326023264412, 34.546239580569264], [-77.36325130338162, 34.54604657254684], [-77.36333210847661, 34.545802051544804], [-77.36331880272259, 34.54577134959908], [-77.36335197811712, 34.5457705218446], [-77.36342321089168, 34.54573310003906], [-77.3637496848128, 34.54554669160763], [-77.3640216754535, 34.54561657622904], [-77.3644529775588, 34.54538384192951], [-77.36449080235681, 34.54534808386416], [-77.36425298635426, 34.545105071965295], [-77.3640987593972, 34.544945211242734], [-77.36398705639814, 34.54482357054076], [-77.36376913565738, 34.544694969705795], [-77.36352342483897, 34.54469170403186], [-77.36326380228996, 34.54475113898187], [-77.36301255279844, 34.54507836331916], [-77.3629883550139, 34.5451051445299], [-77.36298383963536, 34.545111659334836], [-77.36297419054932, 34.545122384728835], [-77.36294845529672, 34.54512687585713], [-77.3625775192092, 34.5453008917615], [-77.3622751369181, 34.5452078643428], [-77.36224899547683, 34.545173490618026], [-77.36218867468769, 34.545136878524744], [-77.36197694779784, 34.545118512158794], [-77.36175778488112, 34.54506249063974], [-77.36175636788272, 34.54503775173419], [-77.36174993032841, 34.545008061574], [-77.36167505361094, 34.54480463754324], [-77.36166534679953, 34.54464968447516], [-77.36161558957701, 34.54456837663939], [-77.36142070598139, 34.54438392965718], [-77.36139872344297, 34.54436870967303], [-77.36135867902071, 34.544360550836394], [-77.36126682088596, 34.54427627934492], [-77.36143048180779, 34.54395639285095], [-77.36145027924096, 34.543868807255876], [-77.36145496156635, 34.5438570358072], [-77.36145378499005, 34.54384427160982], [-77.36143348915033, 34.54382486963321], [-77.36118784953486, 34.5435627776139], [-77.36126594909436, 34.54339460681903], [-77.361084745441, 34.54319422534574], [-77.36120023634727, 34.54307063863225], [-77.36143024940607, 34.54288129643335], [-77.36144027185242, 34.542870473663775], [-77.36145548843871, 34.542862756379265], [-77.36147806092987, 34.54286036794793], [-77.36224563193966, 34.542644884694084], [-77.36247852450532, 34.542585924812656], [-77.36269954556373, 34.54248970338245], [-77.36303796991848, 34.54233076432467], [-77.36333518069499, 34.54230223408721], [-77.36374024612846, 34.54205894662317], [-77.36378163269046, 34.5420227203541], [-77.36383048001437, 34.54200883092065], [-77.36389559464251, 34.54199614358741], [-77.36422603786833, 34.541878292844004], [-77.3645085144839, 34.54187964230234], [-77.36461858127497, 34.54187974569417], [-77.36476307830512, 34.54191161697109], [-77.36499931846151, 34.54211842740965], [-77.36500356358286, 34.54212180204525], [-77.365001062701, 34.54212496753172], [-77.36493688910443, 34.542376231274154], [-77.36520023108714, 34.54271289399373], [-77.3645996920952, 34.542707197103255], [-77.36427708241463, 34.542760492709526], [-77.36420357796646, 34.54286195956837], [-77.3641868675508, 34.54297391794442], [-77.36412075166409, 34.54318115879546], [-77.36387813692181, 34.54345768251977], [-77.3639276341536, 34.543500907671024], [-77.36384993460207, 34.543546125951295], [-77.36391954257613, 34.54390911867074], [-77.3639264258994, 34.543990732561376], [-77.36405676849573, 34.54414347787649], [-77.36410887340337, 34.54424859427316], [-77.3642450617214, 34.544235084507015], [-77.36456683773798, 34.54414641287676], [-77.36482884346549, 34.54386074843353], [-77.36480397984145, 34.543513556966914], [-77.36559527776963, 34.54326069264525], [-77.3656446706336, 34.54292911591537], [-77.36559193520651, 34.54277152441897], [-77.36617365448895, 34.54254754450637], [-77.36672394053599, 34.542608452242426], [-77.36665991983526, 34.542800477267875], [-77.36725056461368, 34.542716939826896], [-77.36773645596492, 34.54287727387494], [-77.36783373358948, 34.54287755241082], [-77.36921522445957, 34.54267927575142], [-77.36931226716008, 34.54263616225828], [-77.36940245743043, 34.542655682409496], [-77.37001506417117, 34.54262393806807], [-77.37009779998905, 34.54261967061343], [-77.37058511405642, 34.542726034600676], [-77.37087791988588, 34.54284104944508], [-77.37117293116195, 34.54263819849652], [-77.37123573527312, 34.542448046387186], [-77.37134305952398, 34.54215227211482], [-77.37148538534156, 34.54179678696046], [-77.37168748898762, 34.54176775056915], [-77.37207779329529, 34.541588259796704], [-77.372104839513, 34.54157559621513], [-77.37247871082232, 34.54150058464783], [-77.37284913019394, 34.5417258902078], [-77.3730024531633, 34.54186169880717], [-77.37321090863135, 34.542163409247884], [-77.37322121069695, 34.54217890674956], [-77.37324640857706, 34.54226835216407], [-77.3734070161427, 34.54252105893986], [-77.37338079028271, 34.54262858252887], [-77.37335997831451, 34.54270864848327], [-77.37323018024213, 34.542982481651535], [-77.37318953354495, 34.54312243687555], [-77.37314992041232, 34.543151510980266], [-77.3728076295015, 34.54343336778656], [-77.37278874499725, 34.54347191964241], [-77.37260769658192, 34.5437193079716], [-77.37267867600103, 34.543867338953994], [-77.37274796241455, 34.54398560460645], [-77.37297849573571, 34.54415552753535], [-77.37309402295195, 34.54456606532246], [-77.37304707492385, 34.5446353007228], [-77.37279558524543, 34.54491517848394], [-77.37319155349778, 34.54468227072402], [-77.3735088707839, 34.544858028091326], [-77.37358001764154, 34.54486375335344], [-77.37372431786123, 34.54493633916707], [-77.37385272830963, 34.544935102775476], [-77.3739712563368, 34.544923159665174], [-77.37404731942446, 34.54493322895666], [-77.37409510317678, 34.54492882006467], [-77.37416857496743, 34.54487805322112], [-77.37418938465274, 34.544850505102374], [-77.37420044356118, 34.544817310211904], [-77.37410350068802, 34.54472788116898], [-77.37415328266025, 34.54458459897472], [-77.37413165208511, 34.544478995310925], [-77.37429345508488, 34.54426407918899], [-77.37432818605448, 34.544172979804955], [-77.3743835069383, 34.54405736741197], [-77.37441385696947, 34.54394866669041], [-77.37451055600756, 34.543764992697675], [-77.37463149188127, 34.54352535336671], [-77.37456754671305, 34.543436858616076], [-77.3745604920094, 34.54329258971059], [-77.37456063417665, 34.54294819593716], [-77.37485720481251, 34.54244353056502], [-77.37489911128603, 34.54240975674823], [-77.37532258349817, 34.54217320186426], [-77.37560837798587, 34.541981304818016], [-77.37575987234614, 34.54188921013386], [-77.37600405659674, 34.54184448953827], [-77.3762809665421, 34.54179377450957], [-77.37639825614087, 34.541772807244044], [-77.37651819632995, 34.54176136737173], [-77.37664142641448, 34.54166896522575], [-77.37673521382617, 34.54161857990718], [-77.37670656028533, 34.54147156330459], [-77.37665175001813, 34.54142264793626], [-77.37640991196209, 34.54125904550586], [-77.37633369454794, 34.541271028700976], [-77.3756841469489, 34.541355689522476], [-77.37562232980028, 34.54136659497186], [-77.3755799246876, 34.54135886915883], [-77.37553360486011, 34.54133898995179], [-77.3751330470293, 34.541214364248404], [-77.37498819717514, 34.540927944514436], [-77.37495332325545, 34.540867607982534], [-77.37487799249767, 34.54046687943245], [-77.3748774987339, 34.540454242740424], [-77.37487340845726, 34.54044528905945], [-77.37486046981444, 34.540341207469055], [-77.37481048317883, 34.54001010797517], [-77.37475360695262, 34.539982441967794], [-77.3748121175172, 34.539938145509836], [-77.37487398920351, 34.53974580440285], [-77.37492917566087, 34.539498394008746], [-77.37503171690452, 34.539452699586526], [-77.37567334623648, 34.5391188621837], [-77.3761277518849, 34.53908802239703], [-77.37646062446325, 34.53902377942619], [-77.37682240554203, 34.53896971672441], [-77.3768720844191, 34.53895338642863], [-77.37725079737965, 34.53880095786132], [-77.37750162303217, 34.53876290992745], [-77.37803955012919, 34.53864058154331], [-77.37866304635548, 34.53854177568391], [-77.37882609712472, 34.53857739756693], [-77.37935352838713, 34.53867029516057], [-77.37960997341577, 34.53863205329822], [-77.3801677709248, 34.538222640204474], [-77.38030381269759, 34.53813913886829], [-77.38035899303765, 34.53795023981204], [-77.38041150617585, 34.53790688294771], [-77.38057145933433, 34.53777264064259], [-77.38067564973454, 34.5377421660349], [-77.38080626566136, 34.53780943364805], [-77.38085498773303, 34.5378477962847], [-77.38088862335594, 34.53792689920569], [-77.38065785726296, 34.538151978568884], [-77.38118321992943, 34.53849868796694], [-77.38121161211981, 34.53854345665401], [-77.38151948811858, 34.53851740321937], [-77.38196884890365, 34.5384758465501], [-77.38260621195695, 34.538453170379825], [-77.382748468724, 34.53871871254596], [-77.38279874399723, 34.53879023716714], [-77.38283394262201, 34.53881752593144], [-77.38298406739824, 34.53913276110267], [-77.38330920337685, 34.539238653758545], [-77.3832450360763, 34.53941800917702], [-77.38322507968866, 34.53955989965684], [-77.38342736889196, 34.53971127640501], [-77.38347244990779, 34.53972866492401], [-77.38351039559055, 34.53974453374742], [-77.38385985806885, 34.53991817223397], [-77.38397577222729, 34.5401218547465], [-77.38408152744236, 34.540233178916395], [-77.3841426380071, 34.540342622914636], [-77.38427833554988, 34.540505054042214], [-77.38430804379088, 34.54054451685949], [-77.38433450126445, 34.54055978558597], [-77.3843336899443, 34.540595702778795], [-77.38444922428604, 34.54092047233911], [-77.38462754027238, 34.541007188047736], [-77.38444623804614, 34.541147096690395], [-77.38425843096886, 34.541386050029374], [-77.38414361783573, 34.54156663870822], [-77.38399249141787, 34.54174917217417], [-77.38394000783617, 34.54184083258056], [-77.38390201212673, 34.5418757590118], [-77.38385190371636, 34.54200372955528], [-77.38381855646864, 34.54210317809206], [-77.38384670941619, 34.54223358855187], [-77.3838967357247, 34.542304536202955], [-77.38398799766502, 34.54241423603302], [-77.3840848409199, 34.54255444048077], [-77.38393586037694, 34.542885542661566], [-77.3837831966594, 34.54308760187291], [-77.38368923924655, 34.543262273610665], [-77.38367381932014, 34.54343904034253], [-77.3837897684239, 34.543576316830226], [-77.38375376063951, 34.54379031274553], [-77.38368751557488, 34.543911527116364], [-77.38386171530144, 34.54384281065217], [-77.38420476868231, 34.543761224841646], [-77.38459233869153, 34.543709267296265], [-77.38499341006468, 34.54360707113584], [-77.38540871315766, 34.54360177613883], [-77.38628038146818, 34.543396800724935], [-77.3865709666342, 34.54328618872134], [-77.38725977581646, 34.5435655416763], [-77.38729501820836, 34.54359423211623], [-77.38734924947785, 34.543590841118274], [-77.38802411911368, 34.543944960665385], [-77.38808110069016, 34.543964728731595], [-77.38812562611966, 34.543980278197786], [-77.3882760001011, 34.54405858052993], [-77.38841966015504, 34.54407257977384], [-77.38851590581567, 34.54408233103801], [-77.38866770627355, 34.54400340057606], [-77.38872820874535, 34.54397428554694], [-77.38891369593634, 34.54385116286451], [-77.38894413817883, 34.54383095584697], [-77.38898013428322, 34.54380706201409], [-77.38932020644135, 34.543517169222106], [-77.38933145140906, 34.54351155209185], [-77.38934702914834, 34.543488977885914], [-77.389249359435, 34.543482720625114], [-77.38892025567321, 34.5435600894735], [-77.38876239607015, 34.54344881794904], [-77.38879930299159, 34.54334348050363], [-77.3886784225279, 34.543205106348395], [-77.38831097249046, 34.542924253961715], [-77.3882063622891, 34.542904123070414], [-77.3881507672566, 34.54286516482931], [-77.38745031876616, 34.54260793557081], [-77.38737202180671, 34.54258121778967], [-77.38736108797235, 34.54257845750474], [-77.38735130889287, 34.54257301015015], [-77.38735150804624, 34.542559887730036], [-77.3870232615653, 34.54213065898459], [-77.38729942507004, 34.54165940672584], [-77.3873015471232, 34.54160085775589], [-77.38732931896023, 34.54155579509381], [-77.38739733768469, 34.541458834526544], [-77.3874453180854, 34.54133528849395], [-77.38747652432278, 34.541283862429616], [-77.38751630416063, 34.54115006956282], [-77.38755782851212, 34.54107422777745], [-77.38752886375195, 34.54100279175198], [-77.38752187827707, 34.54090445457066], [-77.38746734417566, 34.54084244658238], [-77.38741518685725, 34.540667494792544], [-77.38737322867587, 34.540637775397684], [-77.3873606094678, 34.54061300924344], [-77.38736209422962, 34.540578429541355], [-77.38711217421582, 34.540159177522284], [-77.38715776634629, 34.53983519232347], [-77.3871673067185, 34.53966156069561], [-77.38721013614882, 34.53951123096851], [-77.3873313028489, 34.53922090898181], [-77.38736357358344, 34.539143587152154], [-77.38706150672957, 34.53894392644446], [-77.38705998331359, 34.538943500348616], [-77.38667219155633, 34.538800271686945], [-77.38650601185972, 34.538777613551936], [-77.38615138001724, 34.53866581445394], [-77.38588952583746, 34.53869188312902], [-77.38564447422038, 34.53874985265425], [-77.38509908871475, 34.538927673959456], [-77.38464174017088, 34.53884325332601], [-77.38431770257344, 34.538762650121555], [-77.38410349218942, 34.53863444757346], [-77.38391769039731, 34.53842580887556], [-77.38391972675616, 34.53841611781889], [-77.38391692227982, 34.53840637178342], [-77.38388428708313, 34.53817639657615], [-77.38370441723342, 34.53780635947095], [-77.3837566347644, 34.537705142822], [-77.38375640253977, 34.5375822265093], [-77.3838140169947, 34.53736299860005], [-77.38426177139036, 34.53719954355076], [-77.3843535735162, 34.53717500510615], [-77.3844002657242, 34.53715144946074], [-77.38514779982214, 34.53677082871394], [-77.38531503329583, 34.53660300672772], [-77.38564864546646, 34.536452949368346], [-77.38641610611919, 34.53614516738733], [-77.38673564582446, 34.535988293533386], [-77.38689197069758, 34.53587993348202], [-77.38707391763997, 34.53575771282449], [-77.38731803117257, 34.535590477703266], [-77.38753174300939, 34.53550012311848], [-77.38782473607361, 34.53546713090722], [-77.38831771785578, 34.535460466995715], [-77.38846844062321, 34.53546252013548], [-77.38868539850155, 34.53552526022864], [-77.38870861119734, 34.53553351406334], [-77.38872587983715, 34.53551942059033], [-77.38892140172928, 34.53537690085601], [-77.38910839941292, 34.535211923691364], [-77.38925700835769, 34.535043456761215], [-77.38955311990554, 34.534910416781976], [-77.38976585639733, 34.53479425839103], [-77.38990367438699, 34.53475926157548], [-77.39002065373163, 34.53476985680617], [-77.39033247524591, 34.53479798183348], [-77.39059044957266, 34.53482120406706], [-77.39068715775525, 34.534829828952105], [-77.39106654759831, 34.53494351251246], [-77.39116690534888, 34.53497891882587], [-77.39146712093057, 34.53505682204339], [-77.39150454738771, 34.535094674007624], [-77.39155897957605, 34.535110695507996], [-77.3920111836314, 34.53519385144156], [-77.39224828928816, 34.53523042351844], [-77.39227600866136, 34.53523472506756], [-77.39233322768915, 34.53524381860715], [-77.39253950787078, 34.53527660180395], [-77.39263943112672, 34.53529248208483], [-77.39272341395196, 34.535239152944676], [-77.39278655306892, 34.53508949370057], [-77.3928940355002, 34.53491806616182], [-77.39285326987563, 34.53480566009574], [-77.39285026349015, 34.53479979387853], [-77.39279149992319, 34.534688026999596], [-77.39275947218755, 34.53462711132049], [-77.39266455428786, 34.53446151007612], [-77.39265835622508, 34.53445120390821], [-77.39254557785947, 34.53430622028072], [-77.39248616092982, 34.534242416134774], [-77.39227430679276, 34.53407411008085], [-77.39223709782675, 34.53405696792287], [-77.39216928049201, 34.53404330409944], [-77.39188473067749, 34.533942743380834], [-77.3915903324822, 34.53406392649785], [-77.39149155555604, 34.5339713122499], [-77.39142300679349, 34.53390614516048], [-77.39125091365982, 34.533838106762744], [-77.39125923770469, 34.53378221513797], [-77.3914429128463, 34.533658439391715], [-77.3914652731818, 34.5336340853559], [-77.39149952611263, 34.53361722186884], [-77.39162926589721, 34.53355155092284], [-77.39195449415443, 34.5333753420578], [-77.39201867027275, 34.5332566215642], [-77.39209548518392, 34.5330746156303], [-77.39220729572197, 34.53300163418024], [-77.39229995343551, 34.53293428989956], [-77.39255791585575, 34.5326754934531], [-77.3930062605493, 34.532508620198655], [-77.39309517876113, 34.53248206014007], [-77.39317293155254, 34.5324779205698], [-77.3937347063221, 34.53243977817786], [-77.39388102202932, 34.53244674904458], [-77.39425394978159, 34.53227348784412], [-77.39435563873404, 34.532059757612686], [-77.39467410293219, 34.532089325190945], [-77.3950630033392, 34.53191657954809], [-77.3950735246927, 34.53191220215947], [-77.3951107117125, 34.53188044283954], [-77.39544017637989, 34.53161263261638], [-77.39543359640851, 34.53159065736032], [-77.39527190692006, 34.531275442433525], [-77.39475499871494, 34.53122184375019], [-77.39472156438485, 34.53120939874556], [-77.3946937201836, 34.531216389685845], [-77.3946705382529, 34.53121961793365], [-77.3943002421887, 34.5312590770127], [-77.39396218878161, 34.53130168244293], [-77.39390654802173, 34.53131135713], [-77.39386167763595, 34.531322931447335], [-77.39371186116367, 34.5313723760796], [-77.39356001093434, 34.5314245576125], [-77.39351094280995, 34.5314485955398], [-77.39330562860548, 34.53154917621867], [-77.39311481747146, 34.53160889770287], [-77.39297577635236, 34.53156592221345], [-77.39276939010131, 34.531508372916434], [-77.39249158652734, 34.53144976258538], [-77.39233422833166, 34.531411018499576], [-77.3919266649491, 34.53162997054673], [-77.39186083951948, 34.531839880580726], [-77.39153514411349, 34.53203491186801], [-77.39140103799909, 34.53219547845143], [-77.39131347510006, 34.532342063611026], [-77.39120831163135, 34.53251584703803], [-77.3909682431886, 34.532603536499636], [-77.39073480703024, 34.53271390333687], [-77.39062566189858, 34.53272915229267], [-77.3900170634379, 34.532841049725896], [-77.38994704404348, 34.532834181021855], [-77.38984541496883, 34.53284636498378], [-77.38958033647124, 34.532947825062706], [-77.38923733161089, 34.533047298482145], [-77.38915688329861, 34.533060725714265], [-77.3888070557488, 34.5333042140598], [-77.38878197036627, 34.533322501063324], [-77.38865940516875, 34.533386394649156], [-77.3883610139984, 34.53354024119252], [-77.38819831516383, 34.53353531209404], [-77.3877260255792, 34.533610397335785], [-77.3875751342872, 34.533576479463015], [-77.3874251765123, 34.53365597195], [-77.38696696174928, 34.53418524641798], [-77.38686204359608, 34.534319279962105], [-77.38684319952945, 34.53436625127896], [-77.38677159671651, 34.534395156423614], [-77.38672522233136, 34.534368317436076], [-77.38663224029064, 34.53435242672342], [-77.38598924443286, 34.534274722309554], [-77.38520606708015, 34.53455302728469], [-77.38519784984406, 34.53455473659103], [-77.38519344621217, 34.534557237373065], [-77.38518959576412, 34.53456050410188], [-77.38480011598732, 34.53478480428063], [-77.38471606000338, 34.534821724577725], [-77.38445560531213, 34.5348798990791], [-77.3844064469245, 34.534834868882676], [-77.38431124153797, 34.53474779083737], [-77.38429515031785, 34.53468950334859], [-77.38427292603748, 34.53460620712118], [-77.38421823279734, 34.53445576491798], [-77.38418236538921, 34.534362525945745], [-77.38410910459056, 34.53422667120956], [-77.38397267875722, 34.53396351620106], [-77.38394874432633, 34.533760133980365], [-77.38364943682978, 34.53359320387903], [-77.38304770134287, 34.53329033908979], [-77.3828719004706, 34.53326026213819], [-77.3826118296484, 34.53313755288064], [-77.38221738891275, 34.53310979481866], [-77.38208965485728, 34.533135743014434], [-77.38188737067648, 34.53320329456768], [-77.38081754367346, 34.53342226663895], [-77.38051272219558, 34.53343645315262], [-77.38026291944107, 34.533467679764144], [-77.37972407050592, 34.53359477631331], [-77.37940977341944, 34.53363084724491], [-77.37927751193756, 34.533666541721296], [-77.37893106903579, 34.53394490554683], [-77.3788681643912, 34.534003071900315], [-77.37857888672951, 34.534320079239784], [-77.37793367819842, 34.53462745384283], [-77.37757180628299, 34.53482358031149], [-77.37733567679658, 34.535058250669366], [-77.3768856215546, 34.535483172264705], [-77.37662536601232, 34.53579537909457], [-77.37657604955541, 34.53582927518297], [-77.37653226771648, 34.535866008929744], [-77.37620338029392, 34.53614468525693], [-77.37592039613443, 34.53627286335206], [-77.37573662150304, 34.53633107104115], [-77.37532231190256, 34.5364728681587], [-77.37502977215846, 34.53656718002055], [-77.37494552638545, 34.53659530294317], [-77.37482603305543, 34.53661859786971], [-77.37415550875137, 34.5368118660313], [-77.37342542015847, 34.53678013357068], [-77.37337121516515, 34.53677635524296], [-77.37333677760252, 34.53678046856876], [-77.37328116229043, 34.53676706413494], [-77.3728092354585, 34.53669704584695], [-77.37267658304219, 34.53641585303966], [-77.37265560012888, 34.53636756466106], [-77.37263063383439, 34.53634944980869], [-77.37259682941578, 34.536305060805965], [-77.3724060428603, 34.536036671597216], [-77.37233946093185, 34.53592346949907], [-77.37219759183257, 34.535711675589596], [-77.3721906090006, 34.53570009408618], [-77.37217960781142, 34.535677388800345], [-77.37212883444732, 34.53546416827087], [-77.37199256338312, 34.53508969388237], [-77.37199012703952, 34.534994502574705], [-77.3722325631172, 34.53471958170687], [-77.37239144094272, 34.53444701048845], [-77.37252774990554, 34.534356652341806], [-77.37264262419976, 34.534290802169124], [-77.37298261870724, 34.53415172371414], [-77.37343442176017, 34.53399509574943], [-77.3736255627176, 34.533897317025364], [-77.3742245324176, 34.533773384729486], [-77.37431591468187, 34.5336799847397], [-77.37434198185392, 34.533605353673295], [-77.37445706182584, 34.53341481175157], [-77.37441029344045, 34.53328567558603], [-77.37438723822628, 34.533180047090504], [-77.37437359912468, 34.53309859877996], [-77.37424786612281, 34.532746230758136], [-77.3742352323019, 34.5327205438532], [-77.37423312375506, 34.53271260390736], [-77.37423704534106, 34.53270470111094], [-77.37424897033475, 34.53269762330996], [-77.37461693304117, 34.53239281197422], [-77.37490233393972, 34.532215458366124], [-77.3750469795223, 34.532127431139074], [-77.37514232540016, 34.532151706557855], [-77.37551892867606, 34.5322314266056], [-77.37557275902128, 34.53227467666136], [-77.37582721372152, 34.53233984917919], [-77.37604779932002, 34.53231381252064], [-77.37629535661884, 34.532415341803556], [-77.37647054105516, 34.532476553884834], [-77.37649934695033, 34.53263076528506], [-77.3766040840866, 34.53270068501309], [-77.37673282854098, 34.53276078560857], [-77.37690827802152, 34.53276242052645], [-77.37699802793024, 34.532638365490996], [-77.3770482848618, 34.53258218288034], [-77.37706602199695, 34.532508502230286], [-77.37700539063954, 34.53231378951682], [-77.3770052195878, 34.5323131265119], [-77.37700508672368, 34.53231302959581], [-77.37688195625164, 34.53216504402271], [-77.37662214570686, 34.53190462683821], [-77.37660442185387, 34.531892358761674], [-77.37660270844712, 34.53188137731527], [-77.37662337285292, 34.531850541081255], [-77.37685752722052, 34.53149601540648], [-77.37688450627225, 34.531197458477216], [-77.37704625991873, 34.53083811686486], [-77.37717016845822, 34.53065472798167], [-77.37722629968736, 34.53032250288315], [-77.37741769509992, 34.52982807962947], [-77.37741272578492, 34.52980596795995], [-77.37743317377411, 34.52978929795148], [-77.37745570237533, 34.52976597693996], [-77.37791084600158, 34.52924449445976], [-77.37806022127697, 34.529100960094524], [-77.37826353525598, 34.52876023967724], [-77.37831988360793, 34.52869586282314], [-77.37841070936193, 34.528278090404505], [-77.37899830909956, 34.5281083880161], [-77.37906655273706, 34.52796615106601], [-77.3792440586021, 34.52807295470702], [-77.37980324479153, 34.52802168433328], [-77.3798502993209, 34.52802212500731], [-77.37994008293288, 34.52802869285652], [-77.38041866569539, 34.52790358840689], [-77.38064003849733, 34.52781346687796], [-77.38088556897303, 34.52749525988767], [-77.3808536895499, 34.52735119754382], [-77.3809241740054, 34.52717284690461], [-77.38103974690122, 34.526834707281914], [-77.38103681836797, 34.52657548280712], [-77.38108971149717, 34.52633783950708], [-77.38099003429792, 34.526157286835286], [-77.38094694768971, 34.525538415388965], [-77.38086230398892, 34.52539131108971], [-77.3808236928654, 34.525317571277384], [-77.38081642418565, 34.52497824715994], [-77.38086400712761, 34.524901404230654], [-77.38104300386883, 34.524591790767126], [-77.38211376183608, 34.5243406002166], [-77.38228740171523, 34.524395028458784], [-77.38259645672159, 34.52435411337501], [-77.38385198647916, 34.523989894423984], [-77.38386659353793, 34.52398656008461], [-77.38387791381511, 34.52398411732025], [-77.38389230836088, 34.5239750140166], [-77.38439604888168, 34.523242815251535], [-77.38447910292788, 34.522911050428625], [-77.38458315221254, 34.52247042445802], [-77.38483216086217, 34.521880798937104], [-77.38393308379253, 34.5210452902154], [-77.38389833222773, 34.521057670082925], [-77.38277235766591, 34.52145965501238], [-77.3823537506095, 34.5214624403204], [-77.38196039808447, 34.52205801617447], [-77.38180873371965, 34.522316859097394], [-77.38167599364736, 34.52241633946903], [-77.38154055916671, 34.522710076903934], [-77.38148391975281, 34.52281957771415], [-77.38080604306133, 34.52291672939704], [-77.38075127142544, 34.52290101293262], [-77.38033827395238, 34.522788130762315], [-77.38016148175562, 34.52255440332638], [-77.3800865376247, 34.52249593315781], [-77.37997780247673, 34.52239346070482], [-77.37967264734107, 34.52232653225023], [-77.37919483084482, 34.52230562806704], [-77.3786743896111, 34.522116831776486], [-77.37841472792049, 34.52209131648951], [-77.37800050504987, 34.5221183231243], [-77.37762908523857, 34.522121409225505], [-77.3771380146995, 34.522314621907356], [-77.3768373263214, 34.5224210082539], [-77.3767186070475, 34.52248804553235], [-77.37655737884825, 34.52258439722826], [-77.37604080643897, 34.52293007698517], [-77.37569853432848, 34.522921836617456], [-77.37560609089793, 34.52294016846123], [-77.37525413551569, 34.523005008792154], [-77.37460019306485, 34.52335620347267], [-77.37459542728396, 34.5234418416509], [-77.37445779427094, 34.52350551740617], [-77.37421274163297, 34.52356408386713], [-77.37298960071902, 34.52365394118576], [-77.372884614071, 34.52364751871324], [-77.37283606892444, 34.52364086677098], [-77.37274805632778, 34.52362317650382], [-77.37210174275823, 34.523554917168994], [-77.37133586144893, 34.52381116608181], [-77.37131073596846, 34.52381988104715], [-77.3712944315409, 34.523822553848426], [-77.3712839460952, 34.52383419748853], [-77.37125144526074, 34.52387508202608], [-77.37070825574764, 34.524406820843616], [-77.37065031928886, 34.52450256436912], [-77.37079212360342, 34.52488438912062], [-77.37074209158072, 34.525043925847896], [-77.37074593616771, 34.52513587357603], [-77.37071024630657, 34.525250450282755], [-77.37069760718643, 34.52538766577813], [-77.37070769513454, 34.525523896915345], [-77.37047991506905, 34.52583350535629], [-77.37043898319777, 34.52588986110489], [-77.37041662178986, 34.52591781526728], [-77.37007954635888, 34.52617909548505], [-77.37000158225769, 34.526173747296426], [-77.36968778599405, 34.52614655671712], [-77.36956564687469, 34.526117052488786], [-77.36940939582601, 34.52606296350757], [-77.36945261809133, 34.5259066383357], [-77.36935129391901, 34.52558168279787], [-77.36933652570303, 34.52532493231014], [-77.36924880834428, 34.52510679551434], [-77.36945337048603, 34.52491358112732], [-77.36952338091379, 34.52457757548029], [-77.3697328539292, 34.5241676913789], [-77.36978261674498, 34.52408036360297], [-77.36987223045745, 34.524037648794206], [-77.36980668675702, 34.524003373529254], [-77.36980617037602, 34.52359511338621], [-77.36982223672472, 34.523555198901384], [-77.36980910508441, 34.5235187465151], [-77.36981693365027, 34.52310363961059], [-77.36990952302953, 34.523052965080396], [-77.37054890985874, 34.522802816508616], [-77.37118429364875, 34.52277555048687], [-77.3713400065746, 34.52253361064547], [-77.37148079466506, 34.522735822810674], [-77.37198460824158, 34.52266825352764], [-77.3721222793525, 34.522652082495654], [-77.37226277346858, 34.52262653313649], [-77.37274971801371, 34.522543822963755], [-77.37291210656781, 34.52243838836432], [-77.37309525080327, 34.52247899955813], [-77.3734853912454, 34.52240506659988], [-77.37370265706178, 34.52219267630814], [-77.37389060443951, 34.522105522958896], [-77.37390389044714, 34.52186669455136], [-77.37353769282917, 34.52193381383499], [-77.37292343725255, 34.52194006378991], [-77.37244733731362, 34.52200397674598], [-77.37213476263685, 34.522103292593904], [-77.37196204572064, 34.52216057086725], [-77.37141555816085, 34.52230241542731], [-77.37134574928793, 34.52228125361708], [-77.37101650187441, 34.52212176511605], [-77.37084436576961, 34.52193892671536], [-77.37103908747821, 34.52171148165953], [-77.3711134354686, 34.521410494012244], [-77.37137644806415, 34.52093223927271], [-77.37141623345745, 34.520901580833645], [-77.37143896377304, 34.520873921746265], [-77.3721755826609, 34.520308778799176], [-77.37295221632984, 34.52065581056934], [-77.37295237345413, 34.52065595109545], [-77.37295262848558, 34.520656239074015], [-77.37295358003253, 34.52065561399936], [-77.37295266729086, 34.520654532437234], [-77.37228297603862, 34.520197206599384], [-77.37267155329602, 34.519716950617344], [-77.37266704375962, 34.51952338053863], [-77.37298267186858, 34.519334951051], [-77.37355904196451, 34.51860971026024], [-77.37419282554869, 34.51827898262026], [-77.37457943143545, 34.51815153423572], [-77.37514171906416, 34.518032476472335], [-77.37568196360911, 34.51801014817479], [-77.37615715444358, 34.51780468173072], [-77.37677315337703, 34.51754768246261], [-77.3776454305022, 34.517041274976066], [-77.37770587746434, 34.51700811425286], [-77.37774504436487, 34.51700894419806], [-77.37778235818094, 34.516998403636244], [-77.37914585630773, 34.51671533817849], [-77.3793234019843, 34.516632422950416], [-77.37947723909511, 34.516680491139184], [-77.38001703559988, 34.516699301728806], [-77.38010632789259, 34.516719917751225], [-77.38017227363872, 34.51667691555565], [-77.38024180558116, 34.516584288008396], [-77.38048360487734, 34.51637281588928], [-77.38060037414616, 34.51631272464219], [-77.38090348791886, 34.516178879842045], [-77.38097011756291, 34.51611283092679], [-77.38127828351314, 34.516040720844416], [-77.38129880176213, 34.51605245182158], [-77.38137909296472, 34.516013216306234], [-77.38164803387664, 34.51594596418076], [-77.3816939227038, 34.515934489055034], [-77.3819018826812, 34.51580984203217], [-77.38247927596133, 34.515914466619535], [-77.38291320150577, 34.51556811547171], [-77.38358174902298, 34.515503214019375], [-77.38405668579713, 34.515577801597296], [-77.38435175927859, 34.515274611546296], [-77.3850951323359, 34.514987572193874], [-77.38543144946732, 34.514806519791605], [-77.38564523368491, 34.51474741812971], [-77.3859524617071, 34.51467327531947], [-77.38682717894943, 34.51449216421369], [-77.38722396420687, 34.514350560431424], [-77.38738688105154, 34.51426777449912], [-77.3878158731131, 34.51422753154377], [-77.38800976506869, 34.51430984935341], [-77.38852482644579, 34.51449278914108], [-77.38859624724772, 34.514602147108654], [-77.38878592213845, 34.514696728837436], [-77.38941757309722, 34.51494574256911], [-77.38990778240792, 34.51527258065846], [-77.38995226453336, 34.515506464298674], [-77.38974471934945, 34.515911355592465], [-77.38909079155249, 34.51615902702538], [-77.3887521951024, 34.5161923261183], [-77.3885413725694, 34.51631932962843], [-77.38834271830564, 34.516477726093214], [-77.38752354654815, 34.51681754151366], [-77.38715871720945, 34.51724148497932], [-77.38648356435623, 34.51716816905384], [-77.38622311335035, 34.517178280094384], [-77.38557539576729, 34.51783919248551], [-77.38555768468952, 34.517847909976], [-77.38400737833305, 34.51775887080859], [-77.38261794455492, 34.51816458877217], [-77.38242777719923, 34.51819058095906], [-77.38203671779166, 34.51812175254933], [-77.38086313911622, 34.51796071642052], [-77.3803424393808, 34.518290854038526], [-77.37975588694661, 34.51840080301831], [-77.37928255762131, 34.518434654078895], [-77.37918829722477, 34.51834781871414], [-77.378590534884, 34.518431898616896], [-77.37849439368094, 34.51857749575595], [-77.37810693385603, 34.51893337138956], [-77.37810180127026, 34.51918748979982], [-77.37769320549785, 34.519294418319305], [-77.3769344361205, 34.5196129095721], [-77.3761069818232, 34.52001487545892], [-77.37576337678033, 34.52025057213179], [-77.37577251747939, 34.520451711309335], [-77.37548675461966, 34.52078011048786], [-77.37551237554342, 34.520907798980005], [-77.37556535371031, 34.52125843751756], [-77.3756207075744, 34.521532308417875], [-77.37607420530682, 34.5214587597861], [-77.37646969262883, 34.52137356292472], [-77.37730306113033, 34.52122398578157], [-77.377650581511, 34.52117365543347], [-77.37789512547856, 34.52107368359895], [-77.37845772864823, 34.520841428839965], [-77.37856605260598, 34.52040672164897], [-77.37924473521136, 34.52010356693668], [-77.37985977855428, 34.52025347040573], [-77.38008712100302, 34.52015336081628], [-77.38082426732942, 34.5196773489844], [-77.38109765002567, 34.519651614363084], [-77.38227163253947, 34.51939257021103], [-77.38226451999783, 34.52021926888493], [-77.38231145846882, 34.52028570976836], [-77.38231423558176, 34.52032599889951], [-77.38237370734785, 34.52058037569458], [-77.38380587099617, 34.520969068543344], [-77.38397453642528, 34.520999954961184], [-77.38551116973598, 34.52068259562734], [-77.3862867167714, 34.52118016949991], [-77.38642818361261, 34.52165057848207], [-77.38633505831687, 34.522109289643346], [-77.38643990752715, 34.522138554088535], [-77.38704907575146, 34.522099561103204], [-77.38778889708902, 34.5219738747589], [-77.38809467343083, 34.52206189975439], [-77.38861918297529, 34.522090813659425], [-77.38993733524957, 34.521964832516254], [-77.3899860703166, 34.521137288448614], [-77.38878908086708, 34.52121630466133], [-77.38863955473911, 34.521187399226214], [-77.38811856496876, 34.52091705940039], [-77.3880285791146, 34.52082659167122], [-77.38739336168183, 34.520532014658045], [-77.38867699506089, 34.51952707400232], [-77.38934328410548, 34.519689300563485], [-77.3896569776245, 34.51959316103711], [-77.39025239556867, 34.51928116961411], [-77.39154000678289, 34.51895439835899], [-77.39177519904794, 34.51888555290918], [-77.39183151408986, 34.51886962838714], [-77.39189393215229, 34.518864460565055], [-77.39192707787373, 34.518898544444255], [-77.3920676363478, 34.51902778382903], [-77.3930373379332, 34.519717661446606], [-77.39315104497236, 34.51984373809792], [-77.39337817689378, 34.519900198685605], [-77.39398211625202, 34.5201799700644], [-77.39428112444689, 34.5201043188864], [-77.394947061049, 34.519943702607506], [-77.39497290082164, 34.5199279930486], [-77.39509696112125, 34.51950781961749], [-77.39513518884532, 34.51941489932171], [-77.39577257510611, 34.51884312759673], [-77.39655056866096, 34.51844538810426], [-77.39809138620592, 34.51803272852824], [-77.39812986327918, 34.51802362354223], [-77.39951414907675, 34.51878280333901], [-77.39962846838714, 34.5187998718404], [-77.39968144285221, 34.51883731685169], [-77.40030300186012, 34.5192546659549], [-77.40045382167423, 34.51939686114373], [-77.40076198804351, 34.519581996651276], [-77.40074914424956, 34.51977335063895], [-77.40079387602975, 34.51984860976512], [-77.40107350328589, 34.520026694435366], [-77.40121468162603, 34.520471100488564], [-77.40138635835703, 34.52036557269251], [-77.40201171489853, 34.51993064616878], [-77.4020333106786, 34.51990117560461], [-77.40210469228394, 34.519821330803005], [-77.40253966864245, 34.519325327116285], [-77.40268271389141, 34.51922372825805], [-77.4028171014845, 34.519016491455375], [-77.40303857756051, 34.51876361279222], [-77.40322151408901, 34.51849250178561], [-77.40401364053042, 34.5181331355844], [-77.4044132273696, 34.51784083211652], [-77.40457538035679, 34.51794934108468], [-77.40460068140189, 34.51804836332134], [-77.40518959214847, 34.518222932564385], [-77.40587417186286, 34.51793110974713], [-77.40598185902518, 34.51789363379841], [-77.40602798861309, 34.51787069465121], [-77.40629502082878, 34.51780366818916], [-77.40724539644677, 34.51746942265778], [-77.40756786006304, 34.517168428787144], [-77.4080007394553, 34.51728561174945], [-77.40869445517191, 34.51718077388316], [-77.40914119446956, 34.51700977689006], [-77.41015406166984, 34.51661977325427], [-77.41072610037908, 34.51633159347132], [-77.41087316121036, 34.51625368396996], [-77.41104520416077, 34.516138162640964], [-77.41232252310688, 34.515135029593935], [-77.4124321925688, 34.51502531662085], [-77.4126044035901, 34.51493353675973], [-77.41391111326408, 34.51428839896808], [-77.41463573826499, 34.514110288677074], [-77.41479792654742, 34.51406638513943], [-77.41548933596516, 34.51390660019446], [-77.41630269282675, 34.5138918777061], [-77.41705612883473, 34.51403863475553], [-77.41746474823388, 34.51423119907585], [-77.41822322579458, 34.514368218246034], [-77.41861532884717, 34.514512926367665], [-77.41864973090699, 34.51452794844585], [-77.4187125833345, 34.514540535651335], [-77.41916341683378, 34.514621596541616], [-77.42009096249492, 34.51477591770316], [-77.42017974283857, 34.51475282297985], [-77.42028085777248, 34.51474062131823], [-77.42043442416252, 34.51478133955579], [-77.42188548466451, 34.5154563746377], [-77.42197531717103, 34.515691849550684], [-77.42194302838273, 34.516522009271206], [-77.42184282053474, 34.5166205490699], [-77.42193090564625, 34.517013448692886], [-77.42182418131861, 34.51710803924934], [-77.42188999691987, 34.51738499656621], [-77.42190135914333, 34.51750740642943], [-77.42198520226876, 34.517682852477165], [-77.42200937931483, 34.51777751895114], [-77.42242823995154, 34.51792092691469], [-77.42244334516529, 34.517931596602864], [-77.4225364790992, 34.517950796214], [-77.42325104174762, 34.51783233734376], [-77.42377621402338, 34.51788732655303], [-77.42403324057798, 34.51817857871049], [-77.42479697024854, 34.518911200180135], [-77.42485450996514, 34.519002066819176], [-77.4258073074116, 34.5185473951881], [-77.42589825175534, 34.51839862001436], [-77.42605161597464, 34.51816959324262], [-77.42612516309417, 34.518038891406206], [-77.42622541247684, 34.51786162693135], [-77.42627103605933, 34.517779695354115], [-77.42639677582014, 34.5175538874833], [-77.42652197040924, 34.5173290569456], [-77.42664040757174, 34.51696613924322], [-77.42675417990337, 34.516805790497514], [-77.42692811799807, 34.51660943302207], [-77.42703748186452, 34.51638125495647], [-77.42706764533058, 34.51627077427311], [-77.42707317480841, 34.51618339716937], [-77.42700063902265, 34.51592615277097], [-77.42685915662469, 34.51581123255009], [-77.42677095441897, 34.51561723560949], [-77.42671306575605, 34.515015313538825], [-77.42666397192708, 34.51486007782249], [-77.42663147990348, 34.51475690698478], [-77.42651619708144, 34.5143917582869], [-77.42646894351913, 34.51428837548347], [-77.42634974168817, 34.514004426393406], [-77.42628901577632, 34.51393491948864], [-77.42610493002033, 34.51372667626127], [-77.4258685104565, 34.51340317633301], [-77.4254363648022, 34.51307883064911], [-77.42528123449662, 34.51288231792664], [-77.4252110345559, 34.512299133708076], [-77.42528735762713, 34.51212099997406], [-77.42535490249637, 34.511375978432966], [-77.42605316833126, 34.51036503048908], [-77.4260426121686, 34.51005303371147], [-77.42621312439067, 34.50980696366213], [-77.42656902905081, 34.50975977464185], [-77.4268347090626, 34.509772548677326], [-77.42779723536269, 34.50958384221669], [-77.42814744055892, 34.50936238148758], [-77.42891014325664, 34.50913168467429], [-77.42973224797427, 34.50867435821871], [-77.43108627014146, 34.508203218227735], [-77.43131260156119, 34.5081871147475], [-77.4323515447517, 34.50752206466979], [-77.43290461194493, 34.50716975529747], [-77.43294878693588, 34.50712232654033], [-77.43297764300989, 34.50710523479432], [-77.43316365804895, 34.506967113689285], [-77.43380567724304, 34.50647192300674], [-77.43373382750124, 34.506315589790155], [-77.43404342756585, 34.50633474765832], [-77.43489836866857, 34.50585209969556], [-77.4348966913838, 34.50569247487284], [-77.43521718309772, 34.505701371104784], [-77.4360412971767, 34.505464538520044], [-77.43646453770559, 34.50533745019125], [-77.43658538345147, 34.50532489677003], [-77.43675165960623, 34.50527103588665], [-77.43735830951675, 34.505106394525285], [-77.43769896159051, 34.504926229328014], [-77.43828607108682, 34.50496312860632], [-77.43968372984001, 34.50512808758392], [-77.44011022683492, 34.50544216287599], [-77.44060724814005, 34.505712111874935], [-77.4414945372184, 34.505748077247446], [-77.44233201259408, 34.50574094772472], [-77.443109198945, 34.50501088482548], [-77.44311529954467, 34.50493336006652], [-77.44311494288769, 34.50491965532346], [-77.44311676675837, 34.50490087215344], [-77.4431296805149, 34.50375215822122], [-77.44321317945301, 34.503573597232105], [-77.44312775928893, 34.50256302783518], [-77.44338392443505, 34.502231232639325], [-77.44477979620186, 34.50126783351108], [-77.44511062405178, 34.50115016281701], [-77.44607637704969, 34.50108435202499], [-77.44624124725851, 34.5010256352253], [-77.44685162757835, 34.500807937107275], [-77.44729310011783, 34.50060869497243], [-77.44770715333777, 34.50042470531843], [-77.4479489598859, 34.50015294790957], [-77.44852911042994, 34.49979099505957], [-77.44909889290952, 34.49952351826181], [-77.44956444062254, 34.49906444499296], [-77.45003837965264, 34.498791839811965], [-77.45023959398088, 34.49852696015831], [-77.45180822378728, 34.49741966433489], [-77.4519066132321, 34.49732327165061], [-77.45200979773763, 34.49726594556368], [-77.45412220892352, 34.496031961161755], [-77.45412939298502, 34.49602695952985], [-77.45413604515493, 34.496023007987525], [-77.45414690170074, 34.49600786947796], [-77.45468469434687, 34.49537537490306], [-77.45494420342695, 34.49523471374921], [-77.45520907991428, 34.49508171209659], [-77.45582251023157, 34.49475768547179], [-77.45614995551568, 34.494632400315], [-77.45640534309614, 34.49453165898034], [-77.45726852929641, 34.49415564758423], [-77.45743410440275, 34.49406817052291], [-77.45760049793326, 34.49397760057716], [-77.4583490319336, 34.49381239390521], [-77.45888010584483, 34.493732454681094], [-77.45953638333788, 34.493901376132825], [-77.46026682417059, 34.493879027180895], [-77.46076031491388, 34.49411828516017], [-77.46174618865246, 34.49436434500187], [-77.46338628808552, 34.493790817825115], [-77.46387588954988, 34.493633253162365], [-77.46419622288548, 34.49347484939767], [-77.46490534792994, 34.49351813929244], [-77.46521684634632, 34.49388372346802], [-77.46637027145633, 34.49431846983562], [-77.46720909559733, 34.49525225604534], [-77.46730348289019, 34.49534061962277], [-77.46728082482045, 34.49540850289347], [-77.46695604486756, 34.49631736047648], [-77.4668458197599, 34.49666842367377], [-77.46677906541308, 34.49682541295482], [-77.46676251838903, 34.49724523934425], [-77.46674872929236, 34.497339010481284], [-77.46674165623371, 34.49740125092018], [-77.46672477818633, 34.49779577922109], [-77.46672100581226, 34.498013114787], [-77.46662495523323, 34.49853258239704], [-77.46656733450654, 34.49891311026327], [-77.46667224789049, 34.49936166116352], [-77.46643097877029, 34.49962638872401], [-77.46648294677556, 34.49974014731623], [-77.46652562858675, 34.500029735577186], [-77.46663452546184, 34.50031925237528], [-77.46661762167304, 34.50045270978409], [-77.4670109269021, 34.50072986112946], [-77.4671604263585, 34.50116866453048], [-77.46729897942694, 34.50141998155861], [-77.46741498455975, 34.501601921702516], [-77.46854024682024, 34.50215843593814], [-77.46795370660602, 34.502741926103184], [-77.46797592001623, 34.502805333106004], [-77.4679741777612, 34.502875599049545], [-77.46835905236277, 34.502938775224756], [-77.46922879104599, 34.502868862116564], [-77.46945255090542, 34.50284378023423], [-77.4699015006126, 34.50249983279492], [-77.47032519817064, 34.50224893353221], [-77.47059214730453, 34.5016472254369], [-77.47173480003053, 34.50134037747523], [-77.47230759478732, 34.500998401731835], [-77.47200493596026, 34.49995734525264], [-77.4724609280403, 34.49965515846617], [-77.47205864192082, 34.49917518297202], [-77.47119380039648, 34.499363169442915], [-77.46928309802547, 34.49814305036941], [-77.46877933434811, 34.49775716654068], [-77.46846769305331, 34.49742619735886], [-77.4686136551333, 34.49712242748946], [-77.46867795558657, 34.49676135128], [-77.46901282714256, 34.496313927322305], [-77.46910197849982, 34.4961715952811], [-77.46917740778673, 34.49611117082952], [-77.4699186148017, 34.49559587231555], [-77.47006400080868, 34.49548061897902], [-77.4700738535729, 34.495455609194245], [-77.47011834691206, 34.4954323561945], [-77.47026655802215, 34.49541402998899], [-77.47031470481205, 34.495493328709564], [-77.47237177001867, 34.49587968703425], [-77.47289893518104, 34.49682758611286], [-77.47301214704942, 34.49698107555282], [-77.47308127541972, 34.49707479715484], [-77.47336721265562, 34.49746244594485], [-77.47389897740699, 34.49702601001123], [-77.47426005185233, 34.496300590196455], [-77.47364797609995, 34.49521266476879], [-77.47339448053418, 34.49429842124725], [-77.47321994314167, 34.49341956279736], [-77.472759535124, 34.492545158592506], [-77.472580559951, 34.49155514397336], [-77.47193792870267, 34.49042100169075], [-77.47235131467126, 34.48962667150211], [-77.47261743796344, 34.48885498364719], [-77.47301831109127, 34.4885697721778], [-77.47343016594637, 34.48784895653343], [-77.47409578401505, 34.487578900461806], [-77.47513492124479, 34.487221813757515], [-77.47600059264732, 34.48740042843784], [-77.4771123881353, 34.48705624306311], [-77.47714561287451, 34.48701036069068], [-77.47724218637096, 34.48701677909769], [-77.47783969257605, 34.48675346300706], [-77.47784327296237, 34.48675293693588], [-77.47828637622813, 34.48644020273856], [-77.47831396378731, 34.48638981657039], [-77.47837346681112, 34.486230038735165], [-77.47824556311846, 34.48576263260074], [-77.47805812008235, 34.48507763534655], [-77.47768324421894, 34.48370763936858], [-77.47730838196632, 34.48233764143129], [-77.47693353332322, 34.480967641534875], [-77.47618387686052, 34.47822763586535], [-77.4758090690384, 34.476857630092624], [-77.4756216702291, 34.47617262647183], [-77.47552797209983, 34.475830124477845], [-77.47543427482077, 34.47548762236146], [-77.47505949420636, 34.474117612672096], [-77.4746847271939, 34.472747601024686], [-77.47393523396987, 34.47000757185645], [-77.47383809409408, 34.469652423679534], [-77.47355117306826, 34.469820995836685], [-77.47310977616695, 34.46996571154019], [-77.47145125184349, 34.4707702248792], [-77.47090424067119, 34.470911083414755], [-77.47035117439691, 34.47117682077641], [-77.46947480022132, 34.47140463531093], [-77.46902335402035, 34.47173809450842], [-77.46853145986823, 34.47213434447811], [-77.46816901943947, 34.47241712971453], [-77.46672180168123, 34.473168183478904], [-77.46607918260594, 34.47331897324789], [-77.46541770742499, 34.47332261170186], [-77.46430602120927, 34.4735720777651], [-77.4641907565466, 34.47358950425825], [-77.46414913009203, 34.47360694434997], [-77.46398955011367, 34.473640710093726], [-77.46341632120726, 34.47380725064191], [-77.46330300789575, 34.473999544814234], [-77.46326081659439, 34.474194518292435], [-77.46329541101402, 34.47434252740223], [-77.46302093816848, 34.47440476961991], [-77.46277630710668, 34.474684335955814], [-77.46219427226647, 34.47481586760108], [-77.462003190227, 34.47490272196124], [-77.46184819112047, 34.47503969512403], [-77.46115616257116, 34.47543865356262], [-77.4611161199096, 34.47565976744086], [-77.45954522303012, 34.475963504919264], [-77.45941220111388, 34.4759786743647], [-77.4593434625734, 34.47598651254944], [-77.45924268887966, 34.47601695540499], [-77.45816469667298, 34.47634026941291], [-77.45742031573894, 34.47592433789984], [-77.45801739821349, 34.47580140654595], [-77.45843319230426, 34.475544198235866], [-77.45872217922623, 34.47531498448085], [-77.45916294398171, 34.4750668561867], [-77.46012938577309, 34.47518031541975], [-77.45968360644241, 34.47468832086621], [-77.4602950328215, 34.47428314495911], [-77.46122042670657, 34.47452238051929], [-77.46057941481759, 34.47405831774344], [-77.46053044031181, 34.47388279996072], [-77.46083457349869, 34.47339576239052], [-77.46102022517245, 34.473237035019054], [-77.46111939046895, 34.47307247444306], [-77.46125077636493, 34.47285444601407], [-77.46129711734869, 34.47277754495147], [-77.46132504955918, 34.472745163404916], [-77.46182327079006, 34.47248625683208], [-77.46187136900203, 34.47246254359899], [-77.46192359585856, 34.472437809871025], [-77.46241706697046, 34.47219600115246], [-77.46250362295918, 34.47217572473857], [-77.46256935907482, 34.47213285146708], [-77.46314426690023, 34.47189297835357], [-77.46361659416718, 34.47165917546387], [-77.46456670200817, 34.47139607160966], [-77.4648325371942, 34.47118244724994], [-77.46515149027238, 34.47108618816401], [-77.46517852210633, 34.470914316394925], [-77.46540191772823, 34.47080295633273], [-77.46582010897721, 34.47081703306972], [-77.4660515454876, 34.470716966292756], [-77.46715611540345, 34.47041968387363], [-77.46750306747468, 34.470446689002614], [-77.46752533513248, 34.47035793025513], [-77.46799186652692, 34.47009016395562], [-77.46810720799628, 34.469922514129216], [-77.46838734812411, 34.46972616431591], [-77.4684347414834, 34.469711325576206], [-77.46846078361683, 34.46968088536751], [-77.46893195575903, 34.469358888008074], [-77.46899681322492, 34.4691795179921], [-77.46912833685923, 34.46908825213574], [-77.46933534276515, 34.46896086584309], [-77.46959092646884, 34.46889057085002], [-77.4697534816596, 34.46878221486372], [-77.47005435335777, 34.46871618596862], [-77.47045646941649, 34.46848012277037], [-77.47064060990363, 34.468407007476515], [-77.47078569397756, 34.468336631833935], [-77.47121346256553, 34.468091318546975], [-77.4713607764981, 34.46797813683898], [-77.47165611557195, 34.46786546602948], [-77.47186789453235, 34.46781526168643], [-77.47197812573702, 34.46777420199976], [-77.47247973973165, 34.467636665765], [-77.47333148797756, 34.467800215152415], [-77.4731857951386, 34.46726753485821], [-77.4729519242816, 34.46641242697504], [-77.47227512219135, 34.466825107862135], [-77.4717565354356, 34.46696396270566], [-77.47132733303474, 34.46717327692838], [-77.47089745711718, 34.4673437926655], [-77.47055837569458, 34.46750540975481], [-77.46982722096249, 34.46777268654589], [-77.46958091356197, 34.467892162385766], [-77.46934366127908, 34.46798636638539], [-77.46838796713561, 34.46837516881768], [-77.46824658846, 34.46843189164123], [-77.46813604340146, 34.46849331730975], [-77.46731847996205, 34.468996403570934], [-77.46721418869824, 34.46911830786285], [-77.46698068053364, 34.46919141867256], [-77.46609339000324, 34.46960973171055], [-77.46592502714643, 34.469679973874506], [-77.46578359952748, 34.46973700409633], [-77.46494410083122, 34.47022689774422], [-77.46477303139883, 34.47030828081103], [-77.46461511154018, 34.47038721666347], [-77.4636751930732, 34.470837980226], [-77.46357831785411, 34.47091582886207], [-77.46342497260238, 34.4709582932277], [-77.46233303511445, 34.471498804347675], [-77.4622373747466, 34.47153871744202], [-77.46115372064783, 34.47206094115233], [-77.46109949448473, 34.47208748249224], [-77.46104836922281, 34.47211404222194], [-77.45990464726357, 34.47267299727318], [-77.45989788968056, 34.47269167513709], [-77.45986813751172, 34.472721513686146], [-77.45890689193216, 34.47329781342671], [-77.45882170543905, 34.47335680986091], [-77.45871452296048, 34.473426411675845], [-77.45796147801673, 34.47412687277677], [-77.45638906709881, 34.47452087418331], [-77.45636042365928, 34.474536965651716], [-77.4563281501909, 34.47454683861378], [-77.45610111660721, 34.47463180082602], [-77.45504437572731, 34.47508553340982], [-77.45391747924334, 34.47557855044193], [-77.45374388915408, 34.47564165826811], [-77.45350745228309, 34.47572538601414], [-77.45271190973983, 34.47609361994167], [-77.45243648607095, 34.4761944194576], [-77.45218780827364, 34.476333783493565], [-77.45152845001022, 34.476689641231275], [-77.45133648840437, 34.476847971064466], [-77.45111619614039, 34.47695478615101], [-77.45007167431827, 34.47742142199348], [-77.44966635371775, 34.47755653809116], [-77.44913770688052, 34.47779465358367], [-77.44880199750567, 34.47799250595024], [-77.44839076000177, 34.47816713692154], [-77.44755700171747, 34.47857558180287], [-77.44683833558847, 34.478763640854986], [-77.44672732927667, 34.47882799740558], [-77.44638249020562, 34.479192912143574], [-77.44594952000016, 34.47939390748661], [-77.4450959443351, 34.47975578699591], [-77.44433620454032, 34.47993199440654], [-77.44423296398308, 34.479982024811655], [-77.44367331705789, 34.48025251903477], [-77.44314766662673, 34.4805097788587], [-77.44297649112535, 34.480593552422846], [-77.44267072198748, 34.48095339819721], [-77.44205956780044, 34.48145528983606], [-77.44120680736071, 34.4818544444635], [-77.44043928281008, 34.48224518163201], [-77.43963960029566, 34.48245411789788], [-77.43788643938953, 34.483036275345164], [-77.43744968454857, 34.483168444647625], [-77.43715093276352, 34.48320158359924], [-77.43610239693604, 34.48370176526026], [-77.43595245837784, 34.483743283308144], [-77.43491722567266, 34.484235940613026], [-77.43483614316423, 34.48427447249365], [-77.43475884843757, 34.48430284117149], [-77.43419927364943, 34.48450820926772], [-77.4334245330986, 34.48477651203086], [-77.4322783604684, 34.48508053826233], [-77.43181967263465, 34.485184593661764], [-77.43130160912784, 34.48540254917519], [-77.43116435512854, 34.48546015443762], [-77.43105505503205, 34.48553147669918], [-77.430642578037, 34.485800629616556], [-77.42991222800698, 34.486277198241176], [-77.42962233489543, 34.48649292033399], [-77.4293990422936, 34.486656519453035], [-77.42912775235905, 34.486846622388796], [-77.42877354542429, 34.487038173232015], [-77.42856735815133, 34.48716832499071], [-77.42835565118519, 34.48727879326425], [-77.42758552705986, 34.48761850392876], [-77.42730486621815, 34.48774283796871], [-77.4269897658203, 34.48788458729804], [-77.42602812962606, 34.48831042163328], [-77.42519105735997, 34.48871179207485], [-77.4246755494722, 34.488841118721844], [-77.4243095103905, 34.48909877331398], [-77.42375664199818, 34.48958268360912], [-77.42284808619767, 34.48999394104101], [-77.42250681909144, 34.49016333950662], [-77.42215465463283, 34.490339760590864], [-77.42119584485567, 34.490714268008134], [-77.42044998119397, 34.49107431509192], [-77.41995226452131, 34.49129794989282], [-77.4196049878722, 34.49156053087151], [-77.41891198365299, 34.49198049766115], [-77.41809080559474, 34.49229752341401], [-77.41757896795673, 34.49252069300985], [-77.41693266749454, 34.49277498202948], [-77.4161545229122, 34.49301642411607], [-77.41566134070153, 34.49326337795998], [-77.4154511292018, 34.49337475847594], [-77.41497085348357, 34.493629232998614], [-77.4144969432195, 34.49393082753152], [-77.41436371820993, 34.4939946781588], [-77.41382413199102, 34.49426001078318], [-77.41331100779601, 34.49451940251335], [-77.41313839991155, 34.49460753205391], [-77.41276160402869, 34.49493172273357], [-77.41212911544474, 34.495122847435354], [-77.41191440240526, 34.495220442910934], [-77.41160902848313, 34.49555964768362], [-77.41098166380685, 34.49585257112724], [-77.41045505980885, 34.4961868856647], [-77.4089063701254, 34.496859986424816], [-77.4083242162225, 34.49713699091144], [-77.40801227787185, 34.49726353118505], [-77.40701765177076, 34.49774677539531], [-77.40625710205161, 34.498118071555886], [-77.40484040931403, 34.49873986084375], [-77.40403983364814, 34.49902610978056], [-77.40325840387663, 34.49930054576707], [-77.40215557521627, 34.49979380719688], [-77.4019044103997, 34.49997394692385], [-77.40167252550577, 34.500033092752865], [-77.4012059880128, 34.50021944378445], [-77.39969207875546, 34.50088436134263], [-77.39870106159242, 34.50127197882855], [-77.3985606790041, 34.50132729271765], [-77.39850403442968, 34.50134877587314], [-77.39749532165575, 34.50180233794461], [-77.39691957761447, 34.502014269238494], [-77.39540431865808, 34.50272726431225], [-77.39535746881914, 34.50274895909185], [-77.3953330595016, 34.502770280787246], [-77.39526917872702, 34.50278640529019], [-77.3942159652739, 34.50318695769458], [-77.39374799270217, 34.503460450214796], [-77.39326840285051, 34.503719294283044], [-77.39215148959345, 34.50465733330592], [-77.3916401983052, 34.504913817516616], [-77.39056941127303, 34.50521201774066], [-77.38996806129674, 34.505470540704934], [-77.38926761124175, 34.505746219193895], [-77.38898462974016, 34.50588557174753], [-77.38819840544521, 34.506211849879435], [-77.3870968823098, 34.50667680116491], [-77.38581550634942, 34.50720964811024], [-77.38492082017423, 34.507604776121994], [-77.38422984567995, 34.50791853512436], [-77.38334443183282, 34.508384814668155], [-77.38294613995193, 34.508630721446096], [-77.38263435869703, 34.50906045073941], [-77.38131309233681, 34.50982288040677], [-77.38104697057169, 34.509842771450366], [-77.3808603690693, 34.50983889775374], [-77.37956066853465, 34.50996359311621], [-77.3794740620444, 34.509984861842824], [-77.37935379666968, 34.51001430926672], [-77.37838575326133, 34.51038528541824], [-77.37788950420995, 34.51064020836392], [-77.37666522584718, 34.51130669220841], [-77.37645868491542, 34.51143436901195], [-77.37630038788066, 34.51149519726146], [-77.37588418118145, 34.51167639557086], [-77.37437053336888, 34.51240506336741], [-77.37370204315344, 34.51271321062967], [-77.37312696498809, 34.51298921567137], [-77.37229543120026, 34.51338209826994], [-77.37154269647239, 34.51362692688037], [-77.37105315943454, 34.51377099260042], [-77.37023280596593, 34.51402480453171], [-77.3699625278324, 34.514083510628915], [-77.36978357524634, 34.51414658525457], [-77.36958479060456, 34.51428597765985], [-77.36837302283095, 34.514948846819095], [-77.36786659323828, 34.51520054487507], [-77.36686705082028, 34.515656934367385], [-77.36681617643377, 34.51568279039075], [-77.36678622799336, 34.515693894157515], [-77.36576886978051, 34.51616653969013], [-77.36520061649011, 34.51638582124064], [-77.36361738881459, 34.51710259454902], [-77.36361437831233, 34.517103963573675], [-77.36361324522704, 34.51710434868877], [-77.36361130182108, 34.517105330013], [-77.36202934563991, 34.51776814690085], [-77.36136052010595, 34.51799487768578], [-77.36044392783253, 34.518447995261155], [-77.3601546465673, 34.518582561985426], [-77.35929818264503, 34.518978065986516], [-77.3588564053293, 34.519218539359336], [-77.35779995395484, 34.5195756009648], [-77.3572736861912, 34.51977823353394], [-77.35704983162844, 34.519870701153636], [-77.3563193770089, 34.52011420451548], [-77.35584768536005, 34.52027906020862], [-77.35569142361511, 34.52031704214227], [-77.35538580977632, 34.520437549480896], [-77.35468269868367, 34.520705501651015], [-77.35410632651686, 34.52097833640587], [-77.35278826019457, 34.52143822548072], [-77.35235459905456, 34.521559282339894], [-77.35189695980753, 34.521730239984684], [-77.35113706277727, 34.52196012986322], [-77.35094210642025, 34.522037737091665], [-77.35057896978435, 34.52214494837532], [-77.34986303805755, 34.52233347144677], [-77.3493615579836, 34.5224981963716], [-77.34803694685814, 34.52310341580916], [-77.34777588959989, 34.52318007149785], [-77.34758887526112, 34.52321347014976], [-77.34704405760425, 34.52340805146453], [-77.34632409878441, 34.52359129780586], [-77.3461948145783, 34.523661545589775], [-77.34568567383442, 34.5240931821533], [-77.3455736480737, 34.52421951715338], [-77.34539176374854, 34.52444446094282], [-77.34527238569119, 34.52456963588364], [-77.34522167854642, 34.52464959324426], [-77.34507290759545, 34.52472091457747], [-77.34499193365829, 34.52476219015323], [-77.34480510575057, 34.524838929546526], [-77.34474060769065, 34.52496363883621], [-77.34459263836098, 34.52505661033992], [-77.34436247380998, 34.525120223043736], [-77.34427198728535, 34.52527589065218], [-77.34419386209711, 34.525328418263854], [-77.3440316508491, 34.525455951572894], [-77.34399358167173, 34.52550293622246], [-77.34390968697963, 34.52557284202201], [-77.3438557661043, 34.5256187169203], [-77.34379351053464, 34.52566835165879], [-77.34355912793, 34.52572269246408], [-77.34354979477833, 34.52586944536137], [-77.3433934867183, 34.525993948236334], [-77.34318752622444, 34.52603856796319], [-77.34317829219788, 34.52616771800356], [-77.3430896395666, 34.52623930802211], [-77.34299324253261, 34.526328950826674], [-77.34274758173368, 34.52632117024949], [-77.34267029279017, 34.52648562823196], [-77.34259331312086, 34.52665018595554], [-77.34255160082937, 34.52672254998062], [-77.34256116145033, 34.52674614889066], [-77.3423919996021, 34.526869140923424], [-77.34226509556343, 34.52683145885831], [-77.3421962893513, 34.52684551888276], [-77.34209768908771, 34.52681283063182], [-77.34189940355628, 34.526782620353], [-77.34141828293146, 34.52666575789555], [-77.34141543790098, 34.52666498679211], [-77.34141495019571, 34.526665947023595], [-77.34141501713587, 34.526666227744535], [-77.34141483602903, 34.52666660586082], [-77.34141534508505, 34.52666900259359], [-77.34160608534918, 34.52688355779982], [-77.34168497059221, 34.52694487887623], [-77.34164972368865, 34.52712209841184], [-77.34172150798315, 34.52715857208956], [-77.34179524327303, 34.527214834467216], [-77.34200602971916, 34.527184618930264], [-77.34199273048387, 34.52731756896691], [-77.34210728960863, 34.527349338138016], [-77.34218441440251, 34.52735951436407], [-77.34220295986078, 34.52740973249618], [-77.34218215796253, 34.527457182351604], [-77.34209017893679, 34.52749149331419], [-77.34206014276839, 34.52755268920217], [-77.34210280684381, 34.52759407126587], [-77.34203814980259, 34.52771456077973], [-77.34201036487585, 34.52780466966048], [-77.34201169866228, 34.527904352353744], [-77.34204097005245, 34.527964332349754], [-77.3421084605359, 34.528035375530806], [-77.34213373204284, 34.52805335299377], [-77.34216669131425, 34.528126644110316], [-77.34217817393798, 34.52814039528641], [-77.34217540372958, 34.52814815387068], [-77.34217976929685, 34.52815610725864], [-77.34222326134454, 34.528226949119706], [-77.34225134414585, 34.52825963762244], [-77.34234549540064, 34.528360991069], [-77.34235234442386, 34.52836751599442], [-77.34235513203127, 34.528368506467416], [-77.34235726526785, 34.52837274057472], [-77.34244653235008, 34.52841516963723], [-77.34245217933527, 34.52841574329138], [-77.34246212837388, 34.52841777427374], [-77.34255213735435, 34.52843280632031], [-77.34259052726118, 34.52843172851849], [-77.34273621393098, 34.52842701441076], [-77.34274852980893, 34.52842705484973], [-77.34275526002551, 34.52842774857183], [-77.34277290628783, 34.52842941739814], [-77.34289459866005, 34.52844298378534], [-77.34294421114251, 34.528452094072186], [-77.34309303205798, 34.52850576807269], [-77.34311290162215, 34.52851913884773], [-77.34320620192624, 34.52861189477491], [-77.34325451711393, 34.528653322706724], [-77.34332940310628, 34.5287694430925], [-77.34336327642596, 34.52881236891092], [-77.34337044447062, 34.528833082904804], [-77.34340027322395, 34.52887450646674], [-77.3434524125619, 34.528943698890025], [-77.34347243317339, 34.52897111452629], [-77.34355552396822, 34.52905127258719], [-77.34360478729421, 34.52911230699878], [-77.34371159353825, 34.52921694336771], [-77.34377186291142, 34.52922722592181], [-77.34377850199675, 34.529264009310516], [-77.34382830543063, 34.529331283688116], [-77.3438814399338, 34.529385654299254], [-77.34398420017018, 34.52947923194522], [-77.34402973613521, 34.52951478392434], [-77.34409638573598, 34.529551891312025], [-77.34419486135116, 34.52963117922694], [-77.34425749709335, 34.52968472778212], [-77.34434182330148, 34.529761318520265], [-77.344445924369, 34.529902435067086], [-77.34444468598537, 34.529924828571005], [-77.34442417473963, 34.53011815833514], [-77.34443087053054, 34.530149420751634], [-77.34444033135117, 34.530169469880555], [-77.34444113271759, 34.53027035394584], [-77.3444663305398, 34.53038707505938], [-77.34446497124776, 34.530389333680716], [-77.34446560332988, 34.53039169286506], [-77.34446931695312, 34.530401000550484], [-77.34454099715114, 34.53057598877655], [-77.34463005271064, 34.53061039979863], [-77.34457815852153, 34.5306899089541], [-77.34460994959598, 34.53076515917547], [-77.34472102734378, 34.53084212918106], [-77.34476884450089, 34.53088627033475], [-77.34498800171711, 34.531048533340126], [-77.34503412363668, 34.53116822812105], [-77.34508259248068, 34.53143225942674], [-77.34507228830978, 34.53152604512825], [-77.34500607322693, 34.531643403113165], [-77.34501237454576, 34.531667380967185], [-77.34500670849489, 34.53178030139082], [-77.34502572236957, 34.53180499589321], [-77.34513611606224, 34.53181509384099], [-77.34522049064205, 34.53186998353492], [-77.34534307398562, 34.53189983706365], [-77.34535748849842, 34.53197464652443], [-77.34552080162831, 34.532142365270865], [-77.3455791083903, 34.53218757664943], [-77.34558325811324, 34.53220078720416], [-77.34556876031988, 34.53241410385945], [-77.3455400136057, 34.53243802209696], [-77.34547458858285, 34.53249245800977], [-77.34545107099217, 34.532512025413226], [-77.34540097785839, 34.53255421670278], [-77.34538082238794, 34.53257100958059], [-77.34536242673605, 34.53258598569966], [-77.34535078370422, 34.532603079441884], [-77.34533973544018, 34.53261310690089], [-77.34532778487518, 34.532621572891806], [-77.34534633365236, 34.53262141553857], [-77.34535036347914, 34.5326213001847], [-77.345387132203, 34.53264363571749], [-77.3453949224294, 34.532644985839525], [-77.34539886195066, 34.53264596369906], [-77.34548259278753, 34.532638983331424], [-77.34555298144585, 34.532680975998424], [-77.3455760110172, 34.53268896853314], [-77.34559364855842, 34.53271025326829], [-77.34568649157019, 34.532719806606224], [-77.34584905779596, 34.53272370374166], [-77.3458495073483, 34.53276071719445], [-77.34587191057011, 34.532810066309594], [-77.3459046835487, 34.53287518743316], [-77.34590086640156, 34.532925849422945], [-77.34594796541386, 34.533113779361265], [-77.34595495804764, 34.53334727610092], [-77.3459532685224, 34.533357836284615], [-77.34595172429289, 34.53337006464067], [-77.345956270793, 34.53360222428822], [-77.3459552589381, 34.53360873965491], [-77.34595285936238, 34.533843037847475], [-77.34592414820386, 34.5338516666017], [-77.34576202132669, 34.53392011360798], [-77.34570428871885, 34.53397043050029], [-77.34566260470258, 34.5339756492507], [-77.34560827181778, 34.5340195294999], [-77.34558636371557, 34.53403722289083], [-77.3455626062591, 34.53405640982719], [-77.34553809160184, 34.534075822962485], [-77.34552643970642, 34.53409250952953], [-77.3455517140375, 34.53409510935941], [-77.34554254729954, 34.534120794252246], [-77.34554902937577, 34.53412730940401], [-77.34555646473935, 34.534134092880755], [-77.34556074948284, 34.53413692975009], [-77.34557361337407, 34.534138875710866], [-77.34559307677401, 34.53414412591534], [-77.34560925838201, 34.53416118271031], [-77.34561710756721, 34.534166301597416], [-77.34562931983908, 34.534182329176744], [-77.34565033416253, 34.53419709194603], [-77.34564857642717, 34.53420282686391], [-77.34569469164977, 34.534251914139105], [-77.34566157357425, 34.53431366656707], [-77.34575257691966, 34.534329716328706], [-77.3457965155836, 34.53433223276869], [-77.34591020699212, 34.53431905889023], [-77.34586119957652, 34.534289159615426], [-77.34585659667421, 34.53428677028591], [-77.34585177063174, 34.53428386363617], [-77.34577332418891, 34.53424059942072], [-77.34576492867275, 34.53423545948194], [-77.34575489192494, 34.53422931473292], [-77.34566365251955, 34.53419517552314], [-77.34566105023232, 34.53419338814066], [-77.34566962806099, 34.53413985240047], [-77.34574729494805, 34.534128128041125], [-77.3457571682077, 34.53413059260332], [-77.34578844948672, 34.53414661549907], [-77.34580284680365, 34.53414643003311], [-77.34580584295958, 34.53414765439484], [-77.3458151339068, 34.53415221687963], [-77.34581797172201, 34.53415365158865], [-77.34582429770505, 34.53415675838028], [-77.34582841506915, 34.53415725153417], [-77.34583015062395, 34.53415747422706], [-77.34583264234941, 34.53415782389036], [-77.34583461577498, 34.53415806698173], [-77.34583626579052, 34.53415827023467], [-77.34583692830809, 34.53415835184518], [-77.34583847979869, 34.53415854296153], [-77.345839323865, 34.53415864693565], [-77.34584051819236, 34.53415824964696], [-77.3458418965862, 34.53415772999905], [-77.34584192455019, 34.534156456795024], [-77.34584186453829, 34.53415614325857], [-77.34584189841101, 34.53415459103173], [-77.34584131557374, 34.53415430959582], [-77.3458413174923, 34.53415356698756], [-77.34584144440078, 34.53414739240568], [-77.34584023696989, 34.53414681417752], [-77.34584020803338, 34.53414526468457], [-77.34583396622506, 34.534140065882], [-77.34583407472694, 34.53412675463893], [-77.3458341600826, 34.53412273567872], [-77.34581287746511, 34.5341124979504], [-77.34581268245071, 34.534085292363066], [-77.34581281285583, 34.534078551507996], [-77.34576751824432, 34.53405781990911], [-77.34576611613184, 34.53400052687689], [-77.34577527326715, 34.533995499008896], [-77.34595996027386, 34.53384781412305], [-77.34611504385502, 34.53394660733724], [-77.34612821669587, 34.533960563294], [-77.34615302701533, 34.533986848496234], [-77.34620435436369, 34.53402362545317], [-77.3462026218979, 34.534056415092564], [-77.34620624525158, 34.53409057586387], [-77.34616961154451, 34.534170590179656], [-77.34618142994212, 34.534181874595006], [-77.34618085765067, 34.53420241342128], [-77.3461479422741, 34.53420741798867], [-77.34610075377404, 34.53428761659224], [-77.34598209348731, 34.534332968507115], [-77.345983588627, 34.53435477928156], [-77.34594826804755, 34.53435495609118], [-77.3459088202735, 34.53436792813886], [-77.3457955116963, 34.534387423769765], [-77.34575069205525, 34.534411462794225], [-77.34567412313945, 34.53445253046392], [-77.34555196088283, 34.53451805193218], [-77.34546148361699, 34.5345974142453], [-77.34535227752137, 34.5346659062482], [-77.3453492965569, 34.53466884352577], [-77.34534504456276, 34.53467385202648], [-77.34528677304121, 34.53473904496969], [-77.34527795411024, 34.534756468288336], [-77.34525836531259, 34.534804337455284], [-77.34523416838297, 34.53487842320846], [-77.34521641396546, 34.53493278368326], [-77.3452131828621, 34.53497333151104], [-77.34515442388431, 34.535064113245795], [-77.34515216666928, 34.53506782647528], [-77.34514649171183, 34.53507831245755], [-77.34509820362962, 34.535165754709034], [-77.34508158497874, 34.53519700364964], [-77.34505706110993, 34.53525378291689], [-77.34502521075947, 34.53532752506943], [-77.3450231367274, 34.53537760653079], [-77.34498727676427, 34.535455392986236], [-77.34491511799679, 34.53557341829187], [-77.3449053579394, 34.53560991902759], [-77.34489416779297, 34.53571360983202], [-77.34493288307351, 34.53582977495779], [-77.34493325918096, 34.535830154991864], [-77.34493332722627, 34.53583067518198], [-77.34498702919069, 34.53594506799007], [-77.3447828340627, 34.53618532260202], [-77.34476640129586, 34.536221632654296], [-77.34475504572181, 34.53624067802889], [-77.3447268931796, 34.53625082627675], [-77.34466279782201, 34.53627614838753], [-77.34433060567163, 34.53641257290592], [-77.34426219542019, 34.53649755634368], [-77.34421568995072, 34.53654568889999], [-77.34405784599188, 34.5366464771804], [-77.34393054086235, 34.5367379227872], [-77.34385431632069, 34.53679579690906], [-77.343761052633, 34.536855919721646], [-77.3436419220841, 34.536940801755584], [-77.34353645129566, 34.53701064358592], [-77.34353156941086, 34.53701576979422], [-77.34344279021919, 34.537092262509056], [-77.34338814847047, 34.537154389673894], [-77.34333143382591, 34.537182799845496], [-77.3432609508157, 34.537252140935294], [-77.34320926763428, 34.53730253477774], [-77.34317350858129, 34.53733377303891], [-77.34313060348194, 34.53737988733508], [-77.34309389831152, 34.53741921759844], [-77.34305846943468, 34.53744663932528], [-77.3429370884912, 34.537581878251004], [-77.34293218909463, 34.53758721649802], [-77.34293099498538, 34.537588314164374], [-77.34292947477418, 34.53758985567064], [-77.34278277710578, 34.53773112119708], [-77.34276288407216, 34.53775487580718], [-77.34272843303643, 34.53779601423919], [-77.34262167784146, 34.53782052159248], [-77.34253086392312, 34.53785176410743], [-77.34249891613001, 34.53787477535637], [-77.34243158160291, 34.537901186598035], [-77.34242717401997, 34.537904688860046], [-77.34238113377972, 34.53794163829511], [-77.34233845821026, 34.53797865632848], [-77.34233561060658, 34.5379815772081], [-77.3423313490282, 34.53799174598992], [-77.342303461533, 34.538028026500065], [-77.34230095715472, 34.53804525594209], [-77.34228918418466, 34.53807208796988], [-77.34225780179975, 34.53817387367406], [-77.34223607832925, 34.53824362176434], [-77.34220903592947, 34.53830329851491], [-77.3421778723511, 34.53833948614667], [-77.34216057333215, 34.53841073719417], [-77.34217207249733, 34.538431025449555], [-77.34217842351975, 34.538463952905964], [-77.34219855866755, 34.5385496244757], [-77.34217741371539, 34.5386393380121], [-77.34216917570734, 34.53870784814029], [-77.3420635561396, 34.53881386444776], [-77.34216940642126, 34.538886738560905], [-77.34230831671495, 34.53898895563074], [-77.34232774479315, 34.53900828326922], [-77.34234156372241, 34.53901868965141], [-77.34233287915966, 34.5390359336324], [-77.3423426169355, 34.53923837371922], [-77.34234373203826, 34.53926319659181], [-77.34236231889362, 34.53929866101191], [-77.34236733809223, 34.53946101257316], [-77.34238367700507, 34.53950226890809], [-77.3423783234967, 34.539554848309365], [-77.34238607879995, 34.53968817630037], [-77.34241942696303, 34.539741944778385], [-77.34251286757062, 34.53983359220225], [-77.34254952789746, 34.539886583354715], [-77.34250243656798, 34.53997482192828], [-77.34260165526631, 34.54016035374338], [-77.3425855305045, 34.54020768685372], [-77.34258800401645, 34.540259430915], [-77.34261027528156, 34.54044894616461], [-77.34260278087758, 34.54048959442689], [-77.34266653993348, 34.540476302111585], [-77.34275757918851, 34.54061381935105], [-77.34281479162355, 34.54066434318806], [-77.3429626880191, 34.540699980429764], [-77.34298717830583, 34.54084480640849], [-77.3430048483171, 34.54088182038232], [-77.34302908104195, 34.54089109242329], [-77.3430352680018, 34.54093864890524], [-77.34304759954983, 34.540975115025326], [-77.34305983635838, 34.54098849544207], [-77.34307041556193, 34.54099479723066], [-77.34305940454892, 34.541004161323215], [-77.34307084536526, 34.54104050223314], [-77.34309246641595, 34.541052829685114], [-77.3430903253105, 34.54108131123187], [-77.34309280226378, 34.54108422599339], [-77.34308756338542, 34.541114739822554], [-77.34309312358994, 34.541128807852985], [-77.34310787896054, 34.541133155237034], [-77.3431418949747, 34.541141844216], [-77.34317173802245, 34.54114517629341], [-77.34323922712287, 34.54117704262113], [-77.34327744515525, 34.54118587164198], [-77.34329103575645, 34.54124110802059], [-77.34324250874758, 34.54133726773276], [-77.34328657008365, 34.54148732899824], [-77.34328872384617, 34.54157543815134], [-77.34327584962837, 34.54166976808196], [-77.3433567138987, 34.5418104759824], [-77.3433301895952, 34.54187000041066], [-77.34330446813766, 34.54199283081329], [-77.34321940610407, 34.54203567050924], [-77.34319048277393, 34.542079209760175], [-77.34310921312802, 34.54214618440904], [-77.34307693213172, 34.54218228299074], [-77.34316651709382, 34.54217407740878], [-77.34321678876438, 34.542149051571826], [-77.34325372905572, 34.54216919415112], [-77.34328631975664, 34.54223239179693], [-77.34331442846386, 34.5423061975306], [-77.34340883873527, 34.54233281994355], [-77.3435978273038, 34.54239154507256], [-77.3436347976803, 34.54250492680949], [-77.34355550608234, 34.542611812928236], [-77.34357547661052, 34.542649801184965], [-77.34359683941776, 34.54269207309765], [-77.34363457197053, 34.542749778614855], [-77.34366389455322, 34.542824251275846], [-77.34378682211847, 34.54296551298559], [-77.34379771609149, 34.542971126916086], [-77.34400520008715, 34.543048716725295], [-77.34399272447715, 34.54318789067952], [-77.34403586816539, 34.54326686054432], [-77.34405371259201, 34.54335109897306], [-77.34406450528665, 34.54342238313019], [-77.3440691338348, 34.54348280183186], [-77.34406924988568, 34.54348295115297], [-77.3440696439078, 34.54348305010286], [-77.34416735793558, 34.54348783531989], [-77.34422065965795, 34.5435223270275], [-77.34427293107817, 34.543570195857], [-77.34444344376742, 34.54361268455289], [-77.34449230343667, 34.543645568740075], [-77.3444896969184, 34.543850849529406], [-77.34449863420042, 34.54388212666055], [-77.34449734945038, 34.54397215832611], [-77.34454718686524, 34.54404101196846], [-77.34459367238094, 34.54405156977884], [-77.34464362198551, 34.54407352352906], [-77.34466459904345, 34.5441452224256], [-77.3447284912335, 34.544190915513106], [-77.34493081019784, 34.54427479372827], [-77.34493443537802, 34.544272701373835], [-77.34493674417571, 34.5442747019993], [-77.34493664547901, 34.54427618473651], [-77.34493655204525, 34.54427758840838], [-77.34512148025652, 34.544494410993366], [-77.34519773217691, 34.54455993840615], [-77.34526861795503, 34.54468760260755], [-77.34528496074864, 34.544715709768795], [-77.34530374333484, 34.54472108052193], [-77.34531538533142, 34.54477764045464], [-77.34538262874558, 34.54490274566236], [-77.3454501220232, 34.54502433402547], [-77.3456319206572, 34.54515542912229], [-77.3456382005535, 34.54519208173947], [-77.34565082719215, 34.54527511881109], [-77.34565532115107, 34.54529980352214], [-77.34568086099127, 34.545385027732074], [-77.34568784037484, 34.54539220328357], [-77.3456896281506, 34.545394522200525], [-77.34569365312878, 34.54539912813171], [-77.34598112845246, 34.54541532495333], [-77.34622847723301, 34.54555923472109], [-77.34617717497586, 34.54574969888874], [-77.34622286609682, 34.54580486243954], [-77.34631710063535, 34.545885183185845], [-77.34644037308415, 34.546003072169476], [-77.34646042541384, 34.54601550144002], [-77.3464622133798, 34.54601674292814], [-77.34646455192636, 34.546019559322154], [-77.34680503976766, 34.546240064670855], [-77.34699749551034, 34.54642786339455], [-77.34703564754179, 34.546548291698315], [-77.34723233902093, 34.54677557153092], [-77.3472901617025, 34.54683843231463], [-77.34736319934767, 34.54686488263078], [-77.347429531814, 34.54698125717047], [-77.34775407689843, 34.54729827838149], [-77.34780835146881, 34.547411783543964], [-77.34799467037004, 34.54775306876877], [-77.34799486088686, 34.5477532720682], [-77.34799491188936, 34.54775334093013], [-77.34799503056678, 34.547753493935005], [-77.34840129845466, 34.54792857449485], [-77.34850740075805, 34.54816915898215], [-77.34856677778636, 34.54828608460835], [-77.34876462337913, 34.548432348212856], [-77.34895365032384, 34.548476084429296], [-77.34898615909276, 34.54858990617737], [-77.34909875583944, 34.548787148623546], [-77.34936167014844, 34.549025509975635], [-77.34942527704098, 34.549084675651976], [-77.34953128793872, 34.54923902606945], [-77.34964569120027, 34.549400623298666], [-77.34971517097786, 34.54946428067865], [-77.3497972059699, 34.54952734350451], [-77.34985587504264, 34.54965236181767], [-77.34988120200106, 34.54968520840518], [-77.34988857546219, 34.54969957080271], [-77.34991112438891, 34.54979459340209], [-77.34991361856099, 34.5498029538677], [-77.3499142220656, 34.549804947105386], [-77.34994350144967, 34.54989937207661], [-77.34995018233198, 34.54992010247604], [-77.34995913530372, 34.54994788308838], [-77.3499596549604, 34.5499512478017], [-77.34996707153398, 34.5499788772135], [-77.34996049937527, 34.55000719086492], [-77.35000422715571, 34.550014232020274], [-77.3500258378865, 34.550031625378864], [-77.35003432178544, 34.550049678605795], [-77.35004009522277, 34.550060176232655], [-77.35004206529672, 34.5500661563482], [-77.35004972055555, 34.550089393666994], [-77.35006144126356, 34.550124971466374], [-77.35006897125142, 34.55014782854945], [-77.35007388939678, 34.55016275745166], [-77.35009699912382, 34.55024827662979], [-77.35010079910998, 34.55026307694421], [-77.35011127873871, 34.550273415234116], [-77.35023431037357, 34.550368855423415], [-77.35026508540457, 34.55038013473709], [-77.35028865812026, 34.55045052086846], [-77.35035114936011, 34.55055637722982], [-77.35036022246501, 34.55059555623724], [-77.35037258914272, 34.55064895761791], [-77.35037876876203, 34.550656160118415], [-77.35038137756749, 34.55068690752614], [-77.35038816042568, 34.55071394621605], [-77.35038879556414, 34.550718939633235], [-77.350403429581, 34.55074235143216], [-77.35040972133116, 34.55075342102171], [-77.35042783062981, 34.5507694424407], [-77.3504578049033, 34.55077738020498], [-77.35047728531246, 34.55078465900493], [-77.35051910990973, 34.550791335769404], [-77.35058051856292, 34.550808673819745], [-77.35063177722313, 34.55082676974538], [-77.35067192818988, 34.55085721521521], [-77.35074517126586, 34.55090738845025], [-77.35076666643019, 34.55096607060162], [-77.35077736640615, 34.55102516559885], [-77.35079161272132, 34.551101243246094], [-77.3508211500908, 34.551263685676176], [-77.35084041432778, 34.55137337271348], [-77.35084211178861, 34.55138307974344], [-77.3508460715813, 34.5513887136779], [-77.35085457547787, 34.55145158296789], [-77.35086398327164, 34.55150234273262], [-77.35086518901538, 34.55150961920512], [-77.35090108768118, 34.55158844888573], [-77.35092551907769, 34.551615897357124], [-77.35096523361676, 34.55168249243979], [-77.35100009386849, 34.55172757544296], [-77.35100830325544, 34.55174868913429], [-77.35104324069285, 34.55178427096186], [-77.3511793508692, 34.55194659851137], [-77.35123843477263, 34.55205729074617], [-77.35136535326168, 34.55216465076821], [-77.35139025738286, 34.55218378138232], [-77.35142610379918, 34.55220910762168], [-77.35148684074517, 34.552269577098805], [-77.35152747912815, 34.55232131909895], [-77.35161696166855, 34.55237326062056], [-77.3516926847564, 34.55243768376279], [-77.351812105559, 34.55249751512177], [-77.35187576695294, 34.55254052251754], [-77.35196117576494, 34.5525685420395], [-77.35210052282562, 34.55261183009201], [-77.35220139846939, 34.552642770415], [-77.35232258169323, 34.55268517802773], [-77.35251827174403, 34.552733183159226], [-77.35256517826409, 34.55274298633353], [-77.3525916905065, 34.552744579087616], [-77.35263316215998, 34.552742476387664], [-77.35278827951613, 34.55273266357021], [-77.35294898258269, 34.55269395098039], [-77.352985646431, 34.55268686777668], [-77.35301661156997, 34.552680676400165], [-77.35310286390899, 34.552649042393256], [-77.35318349268975, 34.552620184592115], [-77.35330483606377, 34.55257254151705], [-77.35338148812868, 34.55254698875881], [-77.35352277017343, 34.55250116337929], [-77.35357916769696, 34.55248753669783], [-77.35361688450995, 34.55247599848405], [-77.3537766671292, 34.552435919237304], [-77.35378291460397, 34.55243259540642], [-77.3537903458348, 34.55242767773854], [-77.35389618045622, 34.552363518640185], [-77.35397561291845, 34.55232127113235], [-77.35402468787163, 34.55230185804523], [-77.35406666360454, 34.55226549323853], [-77.35412261912145, 34.55222531995396], [-77.354174915043, 34.55219107110071], [-77.35434610341548, 34.552085683754306], [-77.35445110318582, 34.55204009895044], [-77.3545721686922, 34.551989452496684], [-77.35462863930202, 34.55197477991321], [-77.3546839629831, 34.55193181379067], [-77.354971323645, 34.55170486350477], [-77.35501317508293, 34.55166512983582], [-77.35503342432315, 34.55163668670804], [-77.35514250878371, 34.55151692883071], [-77.35516715958835, 34.55149167772708], [-77.35517258979893, 34.55148890177786], [-77.35519140535888, 34.55147992960757], [-77.3552718604901, 34.55144030346398], [-77.35530143425302, 34.551432823067984], [-77.35537056299219, 34.55141647398068], [-77.35549012045851, 34.55140044273523], [-77.35566441509778, 34.551363379298365], [-77.35576472796336, 34.55134925933295], [-77.3558248458631, 34.551314931442775], [-77.35587310017773, 34.55127098876498], [-77.355965254064, 34.55116544603271], [-77.35598141758894, 34.55114273836272], [-77.35598915342109, 34.551131870468296], [-77.35601146785918, 34.55110076575124], [-77.35609658038507, 34.550993993761224], [-77.35612338280055, 34.55096343848955], [-77.35616733856224, 34.550913617521935], [-77.35620136184343, 34.550877192796], [-77.35625124679089, 34.55084931637386], [-77.3563098056124, 34.55080576978377], [-77.35654062899185, 34.55068524442111], [-77.35656561981428, 34.55066667618951], [-77.35679172533871, 34.55054350248384], [-77.35692502668472, 34.55038508089233], [-77.35696568801909, 34.55034165157392], [-77.35712349349745, 34.55020817929473], [-77.35720976747923, 34.550099263541014], [-77.35736577728017, 34.550015570657344], [-77.35753585531751, 34.54991206933321], [-77.3576854330321, 34.549785957115375], [-77.35772525188966, 34.54975584796004], [-77.35776502711617, 34.54972599708496], [-77.35782189923951, 34.549678685638284], [-77.35788688942263, 34.549634540488356], [-77.35793113230554, 34.5496076467825], [-77.35796499755727, 34.549566078874335], [-77.35800133397562, 34.54951761752605], [-77.35802862664617, 34.54949172169958], [-77.3580792906436, 34.54943136137232], [-77.35811876862101, 34.549356331380615], [-77.35816760584478, 34.54929094828499], [-77.35820288044182, 34.549243122542954], [-77.3582208848557, 34.549219216914835], [-77.35826885489564, 34.54915576724994], [-77.35827287080866, 34.549152990617095], [-77.35828744259524, 34.54913710364882], [-77.35834955843626, 34.549078278523574], [-77.35835683408797, 34.54906965711357], [-77.35852084737756, 34.54893120398696], [-77.35853961996582, 34.548910219871644], [-77.35856986304157, 34.54886975971116], [-77.35872977884162, 34.548754369988146], [-77.35877095734719, 34.54866059705269], [-77.35878563433037, 34.548648255024354], [-77.35887658925685, 34.54857742949868], [-77.35887652198285, 34.548573962485506], [-77.3589709038052, 34.548501530370864], [-77.3589726219456, 34.54849996844651], [-77.35897513837187, 34.54849855700779], [-77.35902085249236, 34.54846341521072], [-77.35902204593253, 34.548461922798275], [-77.35902211191154, 34.54846044741009], [-77.35899993264975, 34.54843378097236], [-77.35902817292794, 34.54840281148845], [-77.35903187120205, 34.54839857922069], [-77.35902922798167, 34.54839471768291], [-77.35900433613517, 34.54837194097627], [-77.3590089644205, 34.54834970796775], [-77.35900296116472, 34.54826636028147], [-77.35899826895974, 34.548250402683145], [-77.35901302090505, 34.54814707004067], [-77.35902003577327, 34.54812485656946], [-77.35912229021177, 34.54802256820824], [-77.3591375819802, 34.547985519278285], [-77.35914503806758, 34.54796293248972], [-77.35914318296182, 34.54786230074606], [-77.3591095384702, 34.54779084018238], [-77.35909225001376, 34.54774722279879], [-77.35910611925385, 34.54769562759999], [-77.35932330543395, 34.547591540905515], [-77.35908286061944, 34.54756965117573], [-77.35911519193233, 34.54749909556998], [-77.35910324961486, 34.547445862152166], [-77.35910275582769, 34.54743968033156], [-77.35909803570694, 34.54743747808371], [-77.35909364434667, 34.54742742601882], [-77.35907820998216, 34.547382008741955], [-77.35905495410233, 34.54734939219557], [-77.35899907396428, 34.5472710196746], [-77.35899906116803, 34.54727100172771], [-77.35899905424074, 34.54727099448933], [-77.35894019971255, 34.54719485770138], [-77.35888295923309, 34.54716529891217], [-77.35879925631471, 34.54706014275412], [-77.35875696177493, 34.54702900691267], [-77.35866785706853, 34.54695144746813], [-77.35866482679586, 34.54692049829391], [-77.35861545261173, 34.54687875480041], [-77.35847437856805, 34.54689151499392], [-77.35822406936909, 34.546825555155294], [-77.35816120245522, 34.54681887345212], [-77.35802769673418, 34.54682869389698], [-77.35791941455808, 34.546814387885576], [-77.35786038301976, 34.54680514755893], [-77.35783236058826, 34.546786583878585], [-77.35773391051885, 34.546779604355905], [-77.3576087811323, 34.54675417500731], [-77.35755935230765, 34.546743817868354], [-77.35751030456277, 34.54670801069648], [-77.3574416697156, 34.546703197342325], [-77.35743113228408, 34.54670107290614], [-77.35743241984082, 34.54664626331497], [-77.35743248226674, 34.5466396727038], [-77.35743263869776, 34.546633015749094], [-77.35743809989366, 34.546400590288386], [-77.35743849220587, 34.54639398407264], [-77.35743896801029, 34.546387723332884], [-77.35745104205019, 34.54629414133858], [-77.35748201043039, 34.54614289503932], [-77.3574722475501, 34.54613337403261], [-77.35752281512892, 34.54593177681565], [-77.35757313035566, 34.54588495223422], [-77.35784351131787, 34.545611038414], [-77.35785427274432, 34.545599649818456], [-77.35785524765991, 34.545596785442186], [-77.35785967677943, 34.545594125053334], [-77.35800368803197, 34.5453333129218], [-77.35799124218482, 34.54516621337211], [-77.35800708657925, 34.54508800007281], [-77.35804577063756, 34.54497522176115], [-77.35792520858234, 34.54485496517847], [-77.35827539879025, 34.54458437251088], [-77.35853028329286, 34.54460854910227], [-77.35904596097922, 34.544685923233665], [-77.35905821158767, 34.54468784343729], [-77.35906190204898, 34.544688977268486], [-77.35906224217295, 34.544691245893766], [-77.35906262688546, 34.54469403227529], [-77.3591499965261, 34.5448636852268], [-77.35915405062164, 34.544922849859226], [-77.35915858980249, 34.54498909370529], [-77.3591711575121, 34.54508904864228], [-77.35924553365885, 34.54507985048339], [-77.35927111035349, 34.54504384165115], [-77.35944570747381, 34.544910451940495], [-77.35946626358839, 34.544890425779634], [-77.35947578568148, 34.54487652149925], [-77.35955037713595, 34.54480716733926], [-77.35955065230476, 34.54480453494224], [-77.35955096614524, 34.54480160899465], [-77.35957567732865, 34.54473972539241], [-77.3595780982214, 34.544720730567356], [-77.35957927659003, 34.54470860411318], [-77.35957876191007, 34.54469679368614], [-77.35957727215437, 34.54467828974225], [-77.35957757713945, 34.544660780199855], [-77.35957435517642, 34.54461750378324], [-77.35957072147994, 34.54456869708221], [-77.35956984666431, 34.54455694700279], [-77.35956907097409, 34.544546528323984], [-77.35953013344479, 34.54450145959193], [-77.35953381594281, 34.54442655582221], [-77.35953691828468, 34.544378070596565], [-77.35954826096824, 34.54432089874559], [-77.35954884644137, 34.54430968461129], [-77.35955340603013, 34.544253284435726], [-77.35955507059901, 34.54425062079179], [-77.35955942022218, 34.54423040548858], [-77.35956735463056, 34.54419450546413], [-77.35956803991415, 34.544185240458916], [-77.35955260666907, 34.544130987506506], [-77.35954538305917, 34.544081697951384], [-77.359539356514, 34.54393251356336], [-77.35953580786733, 34.54388858251963], [-77.35955620199687, 34.54383213132509], [-77.35954652107962, 34.543764627832395], [-77.35958741311568, 34.54370752714388], [-77.3595998442348, 34.543678412947564], [-77.35957066951578, 34.54363873847948], [-77.35954282666657, 34.543600875286444], [-77.35947770921112, 34.543512322296024], [-77.35941337536575, 34.54345746744528], [-77.3593325392319, 34.54342820474734], [-77.35929386206149, 34.54331632547799], [-77.35918860047948, 34.54320410760556], [-77.35916045641596, 34.54316612380134], [-77.35909512744092, 34.54307535521778], [-77.35900207539416, 34.54304461086545], [-77.35898654636918, 34.54298837875734], [-77.35898767670496, 34.5429189745191], [-77.35894887661382, 34.542843494954866], [-77.3588138037114, 34.54276842883961], [-77.35880714871799, 34.54258276330035], [-77.35878098343959, 34.54252833101153], [-77.3589206671588, 34.542389628942864], [-77.35892006301816, 34.54238589249926], [-77.35891980025723, 34.542382745794654], [-77.35891561365558, 34.542342570364646], [-77.358869498991, 34.54227076153618], [-77.35887794530248, 34.54217304505024], [-77.35889546819615, 34.54212899732589], [-77.35880820645022, 34.542034763464336], [-77.35880507891672, 34.54198681432725], [-77.35883570031422, 34.541785980667626], [-77.35891994451643, 34.54165850491844], [-77.35892287780342, 34.541645593772714], [-77.35891410131843, 34.54152986755378], [-77.35892352196358, 34.541521722052515], [-77.35892146342454, 34.54141597819815], [-77.35892127946701, 34.54140642202007], [-77.35892114994631, 34.541396382688156], [-77.35892319304699, 34.54129398059114], [-77.35891436305297, 34.54128500602914], [-77.3589090297533, 34.54118401111427], [-77.35891149613808, 34.54114331486624], [-77.35890628463903, 34.54104134545197], [-77.35891447088007, 34.54102057715996], [-77.3589137621648, 34.54093905241318], [-77.35890463223895, 34.540919171472886], [-77.35889566359496, 34.54088724048189], [-77.35886697330824, 34.54080218221653], [-77.358812238001, 34.54059827570943], [-77.3588193343925, 34.54052776389635], [-77.35841709761976, 34.54037731458453], [-77.35850259391628, 34.54028472888297], [-77.35850756049217, 34.53995327881454], [-77.35843725898434, 34.53988476404572], [-77.35848308630162, 34.539816740547266], [-77.35850576110653, 34.53945566081821], [-77.35846013738674, 34.539391822220615], [-77.35850988571498, 34.53931370559478], [-77.35848354609436, 34.53914362784673], [-77.35864195206453, 34.53902518953802], [-77.3587956808153, 34.53900803785023], [-77.35893501575072, 34.53883379343646], [-77.35899531517362, 34.538700395745906], [-77.35898322565149, 34.53847270867356], [-77.35898773871338, 34.53833655354202], [-77.35901839748777, 34.53821488679571], [-77.35901962253358, 34.538203785017394], [-77.35899798800641, 34.53809025373983], [-77.35901926115201, 34.53796268106137], [-77.35888474005273, 34.53786173717853], [-77.35901426394486, 34.537716133867946], [-77.35912963305283, 34.53758164878852], [-77.35922251420479, 34.53751123115383], [-77.35940895108575, 34.53741145108764], [-77.35937506077447, 34.53730148215676], [-77.35943954557658, 34.53717796877553], [-77.3594399616115, 34.53716972419601], [-77.3594465535972, 34.53715652568345], [-77.35950045258438, 34.53703860094758], [-77.35954317351492, 34.53698002493804], [-77.35962082658132, 34.536783245667344], [-77.35962070794847, 34.5367764593291], [-77.35962517769133, 34.53677155905191], [-77.35963240700754, 34.536753899913926], [-77.35965634565093, 34.53666254075482], [-77.35966005592186, 34.53664838085014], [-77.35966512727049, 34.53662902651932], [-77.35968672961191, 34.536553140983244], [-77.35970131283118, 34.53652002742895], [-77.35972935160632, 34.53645972751052], [-77.35973315530634, 34.53645154732355], [-77.35976231806043, 34.53638883000204], [-77.35975068591904, 34.536335892987836], [-77.35994338102866, 34.536240342840024], [-77.35992960435091, 34.53617458689407], [-77.3599551531889, 34.53604744396835], [-77.35984514464285, 34.53603470944207], [-77.35981885653113, 34.53601345166687], [-77.35974695768718, 34.5359636450903], [-77.3597475505326, 34.53596181278211], [-77.35983035758673, 34.535889383310696], [-77.35983716730236, 34.535881236573694], [-77.35990036214318, 34.53575688962515], [-77.35990378588141, 34.535665284415934], [-77.35991069550207, 34.53563298952285], [-77.35991954245293, 34.53559163974045], [-77.35997794545067, 34.53550089252546], [-77.35999126593781, 34.535459483885575], [-77.36001130882171, 34.53537367572965], [-77.36005885565785, 34.53527284164247], [-77.36007058928027, 34.53524971438313], [-77.36008441878303, 34.53524073477344], [-77.36008041085428, 34.535228501222846], [-77.36022454271927, 34.53497573046867], [-77.36026644605343, 34.53484828268676], [-77.36026725177737, 34.53484570304262], [-77.36033598824845, 34.5347148562153], [-77.36035353520043, 34.53464229246466], [-77.36038153128743, 34.53451782523379], [-77.36040020307856, 34.5344607838791], [-77.36041844917301, 34.53442551168693], [-77.36043541763077, 34.534333300245564], [-77.36047524753593, 34.53423070654501], [-77.36048868712287, 34.53421132179423], [-77.36049606610324, 34.53420215357139], [-77.36049862083547, 34.53418781993574], [-77.3605980458581, 34.534016168742134], [-77.36067338719523, 34.533931791284694], [-77.36066553046628, 34.53382010439904], [-77.36066833586425, 34.5338020044643], [-77.36072417971002, 34.533679651649315], [-77.36071342139728, 34.53357557508228], [-77.36073841992072, 34.53343277628478], [-77.36077785041579, 34.53325232696237], [-77.36075467643094, 34.53318561028349], [-77.36077562019685, 34.533109105249686], [-77.36089593757504, 34.53300026260009], [-77.36094503902213, 34.53294317961155], [-77.36104398248175, 34.53289911910519], [-77.36116154875775, 34.5328001690137], [-77.36129333900351, 34.53278752873588], [-77.3614872671382, 34.53271030147734], [-77.36152022808609, 34.53258570215879], [-77.36154421337491, 34.53248964476485], [-77.36149576352905, 34.532344401052335], [-77.36152655972327, 34.53223268705676], [-77.36152363639177, 34.53221797432465], [-77.36152482625825, 34.53220415724838], [-77.36155597911127, 34.532090903619455], [-77.36158024741542, 34.53201044504581], [-77.36164228253678, 34.531873867839415], [-77.36166183040308, 34.53183083301311], [-77.36166817496765, 34.53180486495746], [-77.36171018512682, 34.53172438096953], [-77.36176503400233, 34.53160363121709], [-77.36178082316425, 34.531568869431496], [-77.36180873146216, 34.531506492793085], [-77.36185403518814, 34.531398573850936], [-77.36196194189166, 34.53129795726344], [-77.36196864488747, 34.53120597824528], [-77.36198766481091, 34.53112966638705], [-77.36202452612966, 34.53104411817321], [-77.36198254959547, 34.53096437771167], [-77.36196010625183, 34.53090914453273], [-77.36189609898882, 34.53081779119647], [-77.36185901453013, 34.53074428419766], [-77.36181568274858, 34.53063480949371], [-77.36182350021627, 34.53058342313], [-77.36185972464067, 34.53050236417578], [-77.36183819242899, 34.53014902885259], [-77.36184143500813, 34.53009119020788], [-77.36181901145406, 34.53005041823418], [-77.36175042587006, 34.52996465818488], [-77.36150806355312, 34.52964955698076], [-77.36152695969176, 34.52950083819403], [-77.36158652787005, 34.52939343115071], [-77.36176724193459, 34.52922930020023], [-77.3618829699239, 34.529177350301566], [-77.3619867263725, 34.52919931717842], [-77.36200149078205, 34.5292112493852], [-77.3620895477405, 34.52924217554685], [-77.362132494439, 34.529298776932066], [-77.36212172564359, 34.529316343454255], [-77.36212909718276, 34.529332928990044], [-77.36215743622787, 34.5293309284909], [-77.36220764110409, 34.52939416478844], [-77.36226376871821, 34.52941829617423], [-77.3622705001037, 34.529467273586434], [-77.36234210557011, 34.52952942491977], [-77.36243683017373, 34.52958274917163], [-77.36254131263402, 34.52970898563997], [-77.36257434382092, 34.52974079826028], [-77.36279349726824, 34.52979552791332], [-77.36293030261918, 34.529863441991516], [-77.36298592358737, 34.52989124940953], [-77.36310262013905, 34.529909528465765], [-77.36312545641147, 34.52991186251074], [-77.36314554817432, 34.529903344846964], [-77.36326863281194, 34.52985164686069], [-77.36332492698301, 34.5297713657064], [-77.36333771897547, 34.529753250531], [-77.36339244605253, 34.529663531178336], [-77.36342592905577, 34.52961813129691], [-77.36348653088093, 34.52951229672864], [-77.363507848592, 34.52947132296539], [-77.36353595942751, 34.52935745597618], [-77.36354409929305, 34.529240598465464], [-77.3635449617767, 34.52923374665686], [-77.36354834131849, 34.52922412115987], [-77.36354129793813, 34.529111861754735], [-77.36353732858423, 34.52906484935486], [-77.36353387058267, 34.52899368989271], [-77.3635339701836, 34.52899050463797], [-77.36353382189041, 34.52898723269846], [-77.36352713398789, 34.528878096705924], [-77.36352265181912, 34.52886972236264], [-77.36344639502545, 34.528818523034346], [-77.36337778704805, 34.52876817749785], [-77.3633641847802, 34.52876006333003], [-77.36334839330748, 34.52874435373745], [-77.36329767685169, 34.52868971691489], [-77.36326284392064, 34.528662322231355], [-77.36327051422131, 34.52861073714415], [-77.36329133572337, 34.52853580544319], [-77.36335556279218, 34.528430580240915], [-77.3633727596318, 34.52841212702076], [-77.36339113357263, 34.528399016903], [-77.36342139675588, 34.528354676099525], [-77.36352004830069, 34.52823543603124], [-77.36370853388787, 34.528108469398965], [-77.36372407922384, 34.52808635712768], [-77.36375640636774, 34.52806594682735], [-77.36391555926139, 34.52793117083868], [-77.36402007316804, 34.52781876508619], [-77.36410257729418, 34.5277738132824], [-77.36415667869043, 34.52772617086342], [-77.36427736357051, 34.527610503619286], [-77.3643572988553, 34.52753503578283], [-77.36436552533398, 34.52752922291778], [-77.36437555645145, 34.527522729416006], [-77.36445676249585, 34.52747651848888], [-77.36451252862913, 34.527476575413445], [-77.36455485581887, 34.52747800357865], [-77.36457732671545, 34.52747962304376], [-77.36490648898382, 34.52741991892453], [-77.36494969295248, 34.52737602439568], [-77.36502963518572, 34.52723148068235], [-77.36506252005034, 34.52717893770111], [-77.36515262275803, 34.527083596219356], [-77.36518461724751, 34.52705853433133], [-77.36520369470729, 34.52703618621394], [-77.36532678126089, 34.52691226156825], [-77.3653413878337, 34.52689393609348], [-77.36534756910923, 34.52688946630151], [-77.36535352974317, 34.52687972636154], [-77.3654817157149, 34.5267063813873], [-77.36553081451083, 34.52662181949141], [-77.3655348085519, 34.526608036028904], [-77.36555630275005, 34.5265940556873], [-77.36567866180309, 34.526553855496246], [-77.36575413115155, 34.526524990926255], [-77.36581947999596, 34.52653926603023], [-77.36588093602185, 34.526571376615536], [-77.36594703110067, 34.526684093558984], [-77.36594702510804, 34.52668444303716], [-77.36594674086186, 34.52668460982706], [-77.36588561044621, 34.52681552937261], [-77.36587452351228, 34.52685968056431], [-77.3658680757258, 34.52687926220945], [-77.36587068388255, 34.52689565621403], [-77.36587118181522, 34.526940021199664], [-77.36587201353422, 34.5269822757578], [-77.36598965208167, 34.52704536571176], [-77.36594352765724, 34.52716952648968], [-77.36594716787421, 34.527181234742585], [-77.36600686547408, 34.527287711963126], [-77.36600276612593, 34.52736607050709], [-77.36604514487857, 34.52747727133924], [-77.36603617236106, 34.52752831574642], [-77.36607350882058, 34.52755390557742], [-77.36612195503957, 34.527606668556245], [-77.36624695329388, 34.52766399045814], [-77.36628681753479, 34.52784322886086], [-77.36632127432969, 34.52797689201237], [-77.36610889780479, 34.528178941162864], [-77.36605223271569, 34.528225802744274], [-77.36592339719449, 34.528279041819644], [-77.36570892588621, 34.52850583427716], [-77.36568272669157, 34.52854272520985], [-77.36567373493912, 34.528559836994866], [-77.36560937392728, 34.52862944401599], [-77.36538861552579, 34.52889633477881], [-77.36530705066987, 34.528915973030145], [-77.36522778027884, 34.52891832073418], [-77.36506960590671, 34.52898946738807], [-77.36502866967709, 34.52902000812159], [-77.36496820036346, 34.529064304635305], [-77.36496128276137, 34.529120064652474], [-77.36500779081362, 34.52914542890528], [-77.36510421680308, 34.52920404505066], [-77.36515665191058, 34.52921355537681], [-77.3652973273462, 34.52934195533077], [-77.36530613774367, 34.52934178080914], [-77.36530350773754, 34.52934765257549], [-77.36530398656106, 34.529351878430035], [-77.3652686061462, 34.52959750591134], [-77.36515240393283, 34.52977484283144], [-77.36512270404658, 34.52996342086798], [-77.36532342882983, 34.53007925969209], [-77.36535235931261, 34.53027234604235], [-77.3657087677422, 34.53051339538595], [-77.36535153154198, 34.53123852634242], [-77.36549711492884, 34.53192946292188], [-77.36483797197297, 34.532269579195145], [-77.36470172017923, 34.53253589200263], [-77.364471840819, 34.53265019526146], [-77.36367550466323, 34.53303000354254], [-77.36324865835877, 34.53310934223859], [-77.36294160341778, 34.5333602738122], [-77.36266879527219, 34.533533605866786], [-77.36252665039295, 34.53366486860634], [-77.36244961844494, 34.53372043576027], [-77.36222484336761, 34.5338143113517], [-77.3620543741288, 34.53383877246419], [-77.36192951342791, 34.533828892454515], [-77.36181672030196, 34.53386408468446], [-77.36173395492986, 34.53397691656031], [-77.36169643589625, 34.53402927166451], [-77.3616859364742, 34.53404881162954], [-77.3616829648222, 34.534256894616334], [-77.36171240409178, 34.53427179648014], [-77.36177178720646, 34.53443104474682], [-77.36188652778003, 34.534491541841625], [-77.36176980414919, 34.53458635523285], [-77.36173718678643, 34.534757876546095], [-77.36163696268152, 34.53492644726617], [-77.36153358855093, 34.534968146655174], [-77.36124269577965, 34.53500174463376], [-77.3610802446005, 34.53495448570594], [-77.36102607798422, 34.53496955847206], [-77.36101268064469, 34.5349846361717], [-77.36092342860952, 34.53504379270425], [-77.36091193517446, 34.535081880536296], [-77.36093012540562, 34.53511893816007], [-77.36091340968095, 34.535163101391234], [-77.36084298001776, 34.535315194109785], [-77.36081414577782, 34.535380466103675], [-77.36073457083492, 34.53557281364775], [-77.36067685947737, 34.535645062298286], [-77.36043680480235, 34.535910818013974], [-77.3604189047514, 34.53591594603227], [-77.36038631124487, 34.53593173066122], [-77.36010406095559, 34.536011109742695], [-77.36012168417454, 34.536162778172496], [-77.36020315694374, 34.5362029317902], [-77.36017318048265, 34.536293112704705], [-77.36004305027198, 34.53647081361452], [-77.360037492887, 34.53647545566092], [-77.36003119235878, 34.536481604510335], [-77.36000093007019, 34.536581848586586], [-77.3599953996822, 34.53660008796701], [-77.35998057563799, 34.53669612860437], [-77.35997050117241, 34.53672608572841], [-77.35995521793842, 34.53677153148951], [-77.35999552457415, 34.536951772086404], [-77.35997965199915, 34.536969592086066], [-77.35999474103133, 34.53698299632492], [-77.36001495360081, 34.5371911707584], [-77.36001893279665, 34.537206065194496], [-77.36001955541684, 34.53720866982177], [-77.36001715158343, 34.53721066505472], [-77.36003767452213, 34.5374332591014], [-77.36007002978536, 34.53744622509919], [-77.36003721098876, 34.53767498897625], [-77.36003846064492, 34.53769559564989], [-77.36002124240217, 34.5377093938642], [-77.36000957716938, 34.53793728342224], [-77.36002126978305, 34.53794289553788], [-77.36005353871653, 34.53814538925693], [-77.36012376944754, 34.53817295841364], [-77.36004368202204, 34.53821705087239], [-77.3601109906492, 34.53858466421987], [-77.36026745947169, 34.538641913740534], [-77.36011796797584, 34.538749935527974], [-77.36022313213634, 34.53898254728068], [-77.36024989802202, 34.539134091797465], [-77.36025683426934, 34.53931424351863], [-77.36025739472827, 34.53943937468455], [-77.36025063436409, 34.539623634284695], [-77.36023953635777, 34.53980256362961], [-77.36024874665117, 34.53992867959295], [-77.36023675743064, 34.540115281196634], [-77.36022097729833, 34.54029027007695], [-77.36021900439208, 34.54043394965314], [-77.36020315008626, 34.54060976940907], [-77.36018468145404, 34.54076934620425], [-77.36020054908921, 34.540930677070705], [-77.36018448581606, 34.54110210565741], [-77.36016839851428, 34.541258160194914], [-77.36015901294994, 34.541350598139694], [-77.36015610368729, 34.54144707481156], [-77.36014158136967, 34.54159793260607], [-77.36013154578896, 34.54173696550552], [-77.36012861708505, 34.54195063721831], [-77.36012050371161, 34.54209061630558], [-77.36011431026124, 34.54222531602069], [-77.36010573140402, 34.54233756778327], [-77.36009838574216, 34.542456276796585], [-77.3603029853216, 34.54255398574564], [-77.36009603299476, 34.542713159648144], [-77.36008850433102, 34.542829696918446], [-77.36009152633775, 34.54294422765662], [-77.360105402382, 34.543072087699045], [-77.360166168179, 34.543244021374704], [-77.3601829154683, 34.54330574969471], [-77.36020472220534, 34.543341317907974], [-77.36023351850184, 34.54342087480155], [-77.36020849109838, 34.54351298225653], [-77.36021683402902, 34.54354568954221], [-77.36019234192861, 34.543592067708126], [-77.36018114971077, 34.54362386317548], [-77.36019722320208, 34.543670925683365], [-77.36020543358, 34.54375986265953], [-77.36020953241945, 34.543791565205254], [-77.36020908801466, 34.54382077384494], [-77.36021835002498, 34.54401451526324], [-77.36021811602272, 34.54403515333319], [-77.36021180750011, 34.54406009576728], [-77.36021499029263, 34.54415801554824], [-77.36021002092842, 34.544258830692065], [-77.36021062181484, 34.54428105672122], [-77.36021285524835, 34.54430068292578], [-77.36022303066339, 34.54451352857854], [-77.36022344848148, 34.54452403383719], [-77.36022251399868, 34.54453475316714], [-77.36022856789393, 34.544645708725696], [-77.36022345985228, 34.54476210531759], [-77.36022346500593, 34.544768855652364], [-77.36022359720225, 34.54477531356663], [-77.36023062166824, 34.5449222472632], [-77.36023679342593, 34.54500670668167], [-77.36024635107236, 34.5450103841561], [-77.36023649833783, 34.54501681704898], [-77.36022431932273, 34.545197706433484], [-77.36022079272918, 34.545257543375875], [-77.36022059545634, 34.54525891725456], [-77.36022072098612, 34.54526025075636], [-77.36022274312164, 34.54526659814789], [-77.36028597684646, 34.54545224458024], [-77.36035424225523, 34.545484495757584], [-77.36031332592384, 34.545550932625275], [-77.36032561690496, 34.545663624983874], [-77.3604300365752, 34.54571840531475], [-77.36044975468825, 34.54586567826171], [-77.36020652626769, 34.54597539765045], [-77.36019894285278, 34.54599201586391], [-77.3601970835041, 34.545996775536466], [-77.36018588242307, 34.54601075751921], [-77.36016659744936, 34.54622464624962], [-77.36016542488719, 34.54624615856783], [-77.36016186106635, 34.54627031715927], [-77.36008724607757, 34.54643440641568], [-77.36007143892941, 34.54650451670695], [-77.3600308161937, 34.54653113502573], [-77.36003581892652, 34.546607086008066], [-77.36007550977044, 34.54662634256707], [-77.3600738623796, 34.54667626261515], [-77.360089685378, 34.54674671334466], [-77.3600977915059, 34.54680156527517], [-77.36009575147833, 34.54686825189177], [-77.36007209320724, 34.546923769779596], [-77.36007310260125, 34.546940939893524], [-77.36009621445254, 34.54699059728689], [-77.3601063525089, 34.54703646648189], [-77.36009200085235, 34.547181823345795], [-77.36009520229308, 34.547235567161266], [-77.36009772693563, 34.54728437442573], [-77.36010208184027, 34.54735698857569], [-77.36010690698134, 34.54743744346982], [-77.36011462021916, 34.54747759512784], [-77.36011723493803, 34.54751099118694], [-77.36012013914447, 34.54753800646385], [-77.36012824054342, 34.54757200685386], [-77.36013217159669, 34.54759747981964], [-77.3601672696484, 34.547691224548196], [-77.36018493098102, 34.54770113970064], [-77.36019887456159, 34.547710286690645], [-77.36022075739373, 34.54774120296548], [-77.36030268017964, 34.54781775080058], [-77.36033443121892, 34.54782937972118], [-77.3603353334833, 34.547921131312435], [-77.36030560880542, 34.5479397411915], [-77.36030726336014, 34.5479706304613], [-77.36031061979617, 34.54803329108812], [-77.36033493992583, 34.54805792960194], [-77.3603424036259, 34.54806472700498], [-77.36035431698122, 34.54809579330019], [-77.36041041372044, 34.548169473416635], [-77.36036657353056, 34.54828781622737], [-77.3603630930585, 34.54830718799515], [-77.36034872070385, 34.548340422770465], [-77.3603328889638, 34.548416676591124], [-77.36033403025468, 34.54842529687079], [-77.3603346021742, 34.54843270219264], [-77.36033695027287, 34.54848074433833], [-77.36033771268578, 34.54848597265054], [-77.36033833266501, 34.548490224201046], [-77.36034182324725, 34.54851416106532], [-77.36034051857548, 34.548516171627156], [-77.36032732262126, 34.54852262911822], [-77.36031997736511, 34.54852424817024], [-77.36031049351102, 34.548526378795145], [-77.36030578968082, 34.548527675780555], [-77.36030650603064, 34.54852939646509], [-77.36031117440284, 34.54853029557746], [-77.36031984785015, 34.548529909583564], [-77.36032617888492, 34.548529594615665], [-77.3603266434823, 34.548533471145255], [-77.36032954372554, 34.54853923269162], [-77.36033325835245, 34.54854782011719], [-77.36033536298648, 34.54855281680522], [-77.36034348921054, 34.548569106855695], [-77.36035912648235, 34.548595178115], [-77.3603676859604, 34.548604068594464], [-77.36037431864246, 34.54864402609124], [-77.36040159496946, 34.54866039172332], [-77.36038764655997, 34.54869168464214], [-77.36037460802373, 34.548764497525625], [-77.36037969754923, 34.54878595705191], [-77.36037837052756, 34.54881135519795], [-77.36038232459576, 34.54890799072319], [-77.36030876118217, 34.549025855985214], [-77.3603047131995, 34.54904157891785], [-77.36018736909665, 34.54914757724498], [-77.36016318468015, 34.54918437080727], [-77.36016312312961, 34.54920336735731], [-77.36013284384988, 34.5491959235183], [-77.36012577968964, 34.54919418686517], [-77.36011441640818, 34.549191393311006], [-77.36003523982947, 34.54917192850917], [-77.35999301875104, 34.54918269969316], [-77.35998585443869, 34.54918542866056], [-77.35996919272642, 34.54921230497876], [-77.3599623726688, 34.54922988159045], [-77.35995669493457, 34.549261801138634], [-77.35996785397072, 34.54927370376882], [-77.35998365602481, 34.54928151110492], [-77.36000220934955, 34.54928770199524], [-77.36003236074956, 34.54929776293477], [-77.3600906808736, 34.54931722319617], [-77.3601036942978, 34.54933159075942], [-77.36012818683561, 34.54939947574501], [-77.3601562408383, 34.549412514957446], [-77.36014788132871, 34.5494313985675], [-77.36014736223464, 34.54944406678383], [-77.36012619421827, 34.549486570650444], [-77.36005895383374, 34.549649421813456], [-77.35998698147122, 34.54969939156993], [-77.35992401767112, 34.549743106763415], [-77.35987679976895, 34.54974467855105], [-77.35978513107558, 34.549764569190344], [-77.35972604648589, 34.549815815417276], [-77.35969317016898, 34.54986411060077], [-77.35967499387054, 34.54995935305053], [-77.35966198856215, 34.54999101242916], [-77.35957421374384, 34.55009435507668], [-77.35956581706576, 34.55015460435781], [-77.35946295744019, 34.55026449498794], [-77.35958022738971, 34.5504099833171], [-77.35961178563473, 34.55048788891521], [-77.35948154533752, 34.550858708517985], [-77.35933401491553, 34.55101753239927], [-77.35909426015138, 34.55116702466913], [-77.35896471613987, 34.55131553072036], [-77.35890561358029, 34.55135353745531], [-77.35855444520972, 34.55140113133746], [-77.35848294317346, 34.5514029289176], [-77.35819060370824, 34.55122411250358], [-77.35813610508524, 34.55119001150046], [-77.35813188975979, 34.551185829058355], [-77.35812416183786, 34.551187893666416], [-77.35812042124928, 34.55118996675428], [-77.35811405539465, 34.55119318616465], [-77.35772683208077, 34.551393411976306], [-77.35765615750228, 34.55146082871925], [-77.3576002158139, 34.55151198954531], [-77.35746848391668, 34.55161789034816], [-77.35732565204303, 34.551766893451614], [-77.35730916865062, 34.55178874931329], [-77.35729188666853, 34.55180120344431], [-77.35711632138526, 34.5519432938749], [-77.35699734731747, 34.55204435908659], [-77.35694330155141, 34.55209621177935], [-77.35693446643396, 34.552103186652694], [-77.35692515894662, 34.55211024139597], [-77.35689667063053, 34.55212054173108], [-77.35652798987822, 34.55230842092218], [-77.35638960015231, 34.552334832229484], [-77.35613255940228, 34.55243067714164], [-77.35579043111977, 34.5524748820458], [-77.35573831851168, 34.552500999717296], [-77.35572375577324, 34.552507615850864], [-77.35567892656857, 34.552523055205036], [-77.35558413061443, 34.55256386839791], [-77.35554025726432, 34.55257717370374], [-77.35550497961366, 34.55260930134673], [-77.35552362474708, 34.55265861641395], [-77.35552002035651, 34.55266834184006], [-77.3555230763955, 34.5526771848658], [-77.35557823679734, 34.55278237255254], [-77.35570756637674, 34.55299648687104], [-77.35571105698801, 34.55300807530604], [-77.35571759382641, 34.55301274029394], [-77.35572641401737, 34.55302016869468], [-77.35584925190099, 34.553154488949694], [-77.35593705549064, 34.55322036417177], [-77.3559504470914, 34.55331928822034], [-77.35625074330562, 34.55342002879746], [-77.35610524947951, 34.55368489563979], [-77.356160756529, 34.55392262881336], [-77.35593160258986, 34.55409898426425], [-77.35588475671679, 34.554207184007616], [-77.35579189517945, 34.55440474875147], [-77.35586237013618, 34.55445522913863], [-77.3558192325271, 34.55486680675669], [-77.35593821531212, 34.55509569450309], [-77.35567415190587, 34.55529940342121], [-77.35559565252376, 34.55503598230096], [-77.35552093555354, 34.55499402496969], [-77.35527701803667, 34.55479433797928], [-77.35523794175863, 34.55478993961143], [-77.35490055704402, 34.55478982270574], [-77.35484660080172, 34.5548462719819], [-77.35462674234786, 34.554954364095295], [-77.35450182266118, 34.55505545473612], [-77.35446108166371, 34.55512213827034], [-77.35442924543979, 34.555151169887516], [-77.35444062401564, 34.555360560279986], [-77.35409585821935, 34.555636032600596], [-77.35403461726209, 34.55565977150515], [-77.35347206117893, 34.55577858811196], [-77.35398524886368, 34.55582253979691], [-77.35409461627643, 34.55573436294441], [-77.35412900396081, 34.55572108503587], [-77.35430008431251, 34.55565940593516], [-77.35449089345794, 34.55553180539071], [-77.35467326735375, 34.55560568947543], [-77.35484181380085, 34.55562528319225], [-77.35488248661007, 34.55565476808504], [-77.35524710244613, 34.555947639917136], [-77.35526588948142, 34.555956073095096], [-77.35527621648349, 34.55596780485768], [-77.35565495065111, 34.556313482003965], [-77.35562610104407, 34.5563648413237], [-77.35566973997537, 34.55664509627762], [-77.35599201545418, 34.5566122799567], [-77.35608483899021, 34.55665331455506], [-77.35645738075686, 34.55698313341494], [-77.35648503692386, 34.557013265855105], [-77.35724526036437, 34.55690220193307], [-77.35742509782311, 34.55690775949185], [-77.35744927615835, 34.55753312299387], [-77.35752324832211, 34.55774273393351], [-77.35730277330829, 34.5578370190661], [-77.35757633208149, 34.558226590419], [-77.35751171689866, 34.5585934992836], [-77.35763820438473, 34.55867035137212], [-77.35796941556833, 34.55859524038237], [-77.35803211069864, 34.558704891807736], [-77.35845825987866, 34.55891663135683], [-77.35957248911579, 34.55829680551298], [-77.35957808263782, 34.558263709974405], [-77.35960803548639, 34.558278095133524], [-77.3596307949605, 34.55826388889708], [-77.3618906693037, 34.5570260228575], [-77.36276002843336, 34.55702753450801], [-77.36393370016137, 34.55553653698769], [-77.36433650708248, 34.555299228254476], [-77.36508882464832, 34.55499350052105], [-77.36566814888525, 34.55572075823098], [-77.36591152376431, 34.55665749495831], [-77.36600612160548, 34.55726805011653], [-77.36651666508261, 34.5572967659518], [-77.36748665716277, 34.55786445449432], [-77.36780836805764, 34.558461922270624], [-77.36766751147464, 34.55882922360039], [-77.36767142938021, 34.55902833892941], [-77.36782337930093, 34.560505001271835], [-77.36748499214198, 34.56172950763324], [-77.36719618864375, 34.561982437683156], [-77.3672424862264, 34.56254787491139], [-77.36701063694687, 34.564018522615754], [-77.36795226509146, 34.5650760017282], [-77.36813357325475, 34.565555011565614], [-77.36853945994501, 34.566056409617794], [-77.36857046502111, 34.56634119699983], [-77.36905869938501, 34.56672661939278], [-77.36950823915905, 34.56657083743046], [-77.37057909962098, 34.56684125892561], [-77.37063451085578, 34.56680823718507], [-77.37194167992145, 34.56641494916205], [-77.37221052099262, 34.56635724495541], [-77.37302429867067, 34.56567193371321], [-77.37441272186132, 34.565325001289075], [-77.37536252575785, 34.56533806641724], [-77.37601038827577, 34.565420142977004], [-77.37840302694585, 34.56577355426531], [-77.37847770266232, 34.56580192152389], [-77.37851399829326, 34.56584782102248], [-77.37866849432376, 34.565901806820804], [-77.38008949277598, 34.56702855746736], [-77.38015023156737, 34.5671544765419], [-77.3801523501193, 34.567219667113584], [-77.3809189589016, 34.56791326595166], [-77.38094264583955, 34.56795487736623], [-77.38111635474388, 34.56818766774006], [-77.38122469766424, 34.568388703305494], [-77.38107126492798, 34.56878546568164], [-77.38135464297238, 34.56907887074557], [-77.38160213535042, 34.56949064046939], [-77.38158756625587, 34.5695601697308], [-77.38166467429319, 34.569613876004645], [-77.38191239548554, 34.57009538403081], [-77.3822151459477, 34.57031882852937], [-77.38275244243677, 34.570767096790085], [-77.38324020858786, 34.57112316295407], [-77.38378736326727, 34.571200781442215], [-77.38428983275128, 34.571150849629355], [-77.38481615399886, 34.57098225763009], [-77.38554561728972, 34.570624690904474], [-77.3856041919515, 34.57058179686239], [-77.38568082674544, 34.57058572220255], [-77.38639219703887, 34.57031022958411], [-77.38697520217704, 34.570260801163684], [-77.38718016035538, 34.57023269838868], [-77.38739401115015, 34.57019082762741], [-77.38796804570451, 34.57058496828407], [-77.38869032812869, 34.57016349681771], [-77.38875607175706, 34.57013645239165], [-77.38879510150436, 34.570177163670664], [-77.38940192722721, 34.56997856492699], [-77.38954404177892, 34.569986857255586], [-77.38964861874479, 34.569983441885], [-77.39000394706602, 34.570044893762216], [-77.39003633754015, 34.57035876815178], [-77.39086951435985, 34.57049940770293], [-77.39111984685881, 34.57058438887116], [-77.39124122719984, 34.57058477431815], [-77.39122381108272, 34.57071809419759], [-77.3913078846552, 34.57090865494834], [-77.39165114572496, 34.571782005067675], [-77.39179320751575, 34.572334245060986], [-77.3922299170947, 34.572772962363516], [-77.39220842983374, 34.57344786359839], [-77.39228247179904, 34.57396195778759], [-77.39237073378146, 34.57429898497688], [-77.39241598926735, 34.57449087549797], [-77.39241309803008, 34.57479225721764], [-77.39252161478589, 34.57496368545142], [-77.39264073381099, 34.575549921452605], [-77.39261717861845, 34.575611962127596], [-77.39261030039572, 34.57570437149014], [-77.39269511839117, 34.57585506901269], [-77.39279755812464, 34.57632463811768], [-77.39287532050069, 34.57642386868104], [-77.39285933002074, 34.57660322081797], [-77.39286391218383, 34.57709261123715], [-77.39309967800882, 34.57724064829706], [-77.3934082889, 34.577276602554456], [-77.39348296644683, 34.57726068503859], [-77.3935863849498, 34.577281888108146], [-77.39387696321779, 34.57735015232865], [-77.39410169156213, 34.57727852983364], [-77.39427097419102, 34.577301273430045], [-77.39444269216114, 34.577286457364835], [-77.39451717499789, 34.577460750658084], [-77.39455837808752, 34.57756965123268], [-77.3946309402101, 34.5778689106316], [-77.39449627207115, 34.57849458102177], [-77.39466015075809, 34.578713839827756], [-77.3948058503318, 34.57896543355915], [-77.39505885166412, 34.57884230222637], [-77.39525508451189, 34.57883946989165], [-77.39559758914574, 34.57884723089346], [-77.39584688078352, 34.57880159856656], [-77.39596115473832, 34.57882759338186], [-77.39610238047295, 34.578781101200676], [-77.39624090283564, 34.57867255519512], [-77.39654857615338, 34.57853446067374], [-77.39663492656403, 34.578499978954575], [-77.39667375873934, 34.57846519718226], [-77.3968185614659, 34.57840246452714], [-77.3973236266995, 34.578222553426876], [-77.3974229654236, 34.57821480132331], [-77.39757817260438, 34.57812563088393], [-77.39781698578003, 34.578016158036874], [-77.39792192716462, 34.57793178024802], [-77.39818118612828, 34.57778129671898], [-77.39821100702471, 34.57776039098821], [-77.39822315227794, 34.57776215416165], [-77.39840801397358, 34.5776909368966], [-77.39853417360014, 34.57765402433092], [-77.39860502071559, 34.577618435505464], [-77.39868965462468, 34.57761673251055], [-77.39874353709507, 34.5776371341924], [-77.3987667853553, 34.57759065981952], [-77.39880202619472, 34.57756704856089], [-77.39887083302759, 34.577543647349906], [-77.3989324659897, 34.57753233941689], [-77.39899903112973, 34.5775227978571], [-77.39906592853961, 34.5775134401548], [-77.39913144160377, 34.57750150480292], [-77.3991960368238, 34.577452616845896], [-77.39921741646873, 34.57744253259029], [-77.39939304334285, 34.57734995416126], [-77.39965289460127, 34.57728893435312], [-77.39978705092693, 34.5772712055869], [-77.40003555288376, 34.5773569384145], [-77.40039562820765, 34.57703719416065], [-77.4005097662759, 34.57695035607962], [-77.4005750686848, 34.576882536790926], [-77.40091205925127, 34.576538096244256], [-77.4009547424787, 34.57651648910404], [-77.40109273340407, 34.576378773968386], [-77.40136308344357, 34.576139993126695], [-77.40141591168472, 34.57609773752948], [-77.4017570836924, 34.57599311334382], [-77.40206788136052, 34.57603637798393], [-77.40215108169916, 34.57606954923864], [-77.40243403856118, 34.57619879327247], [-77.40261862046788, 34.576212566188154], [-77.40293907913872, 34.5761316365098], [-77.40318974196502, 34.57605492724999], [-77.40333307640955, 34.57600177000224], [-77.4035098274301, 34.57573861298659], [-77.40361967872667, 34.575607033276704], [-77.4037270670774, 34.575515820651084], [-77.40404148571052, 34.57523730082869], [-77.40405872388867, 34.57516764221302], [-77.40419438489957, 34.5751362098918], [-77.4045150477153, 34.57507838745039], [-77.40480434229931, 34.575240021031604], [-77.40490904804452, 34.575319957602304], [-77.40508543290056, 34.57532111811763], [-77.40511957281109, 34.575308555822254], [-77.4053030381471, 34.57519010803702], [-77.40557670313804, 34.57501570386493], [-77.40563011673213, 34.57493589428175], [-77.40578420544622, 34.57489179754894], [-77.40609100739651, 34.57476380399687], [-77.40638608214286, 34.57479226866013], [-77.40687899013685, 34.574755889322184], [-77.40719221610912, 34.57486953681027], [-77.40735003070597, 34.5748427373813], [-77.40766696214507, 34.574581234470585], [-77.40791767081022, 34.5745233618823], [-77.40826248055475, 34.57441079610538], [-77.40845492761892, 34.57436506678098], [-77.40907146068051, 34.57427135396448], [-77.4100050033741, 34.57477304833169], [-77.41003092105831, 34.57477586192866], [-77.41004447545448, 34.574780672472365], [-77.4100697188525, 34.57479163389318], [-77.41160698148842, 34.57566528272899], [-77.41204572186007, 34.57573182770762], [-77.41318296012196, 34.57566546539004], [-77.41474655617503, 34.575801227913196], [-77.41475895773323, 34.57580362224727], [-77.41476407343576, 34.5758065496502], [-77.41480559869794, 34.57580606458391], [-77.41633496358365, 34.57596515824736], [-77.41658114766919, 34.57581493788452], [-77.41731779321475, 34.57608243225458], [-77.4179110692039, 34.576638835477354], [-77.41822503724626, 34.57667215617563], [-77.41919717125195, 34.576870059981964], [-77.41939866908211, 34.576936270670195], [-77.4194871317429, 34.576983286089124], [-77.42025529212647, 34.577587886130175], [-77.42030766452324, 34.57759371994196], [-77.42106331167918, 34.57779723760312], [-77.42129289765279, 34.57801827657657], [-77.42160709049315, 34.57822023500002], [-77.4226396619895, 34.5791865700885], [-77.42289568870679, 34.57945657103688], [-77.42312027345419, 34.57969994508417], [-77.42323065526863, 34.58032053912638], [-77.42336722822401, 34.58136260725827], [-77.42365185841524, 34.581929838780354], [-77.4242166302201, 34.58270865954065], [-77.42454438447966, 34.582890861108794], [-77.42501605655852, 34.58365989184915], [-77.42579315110143, 34.58417410093599], [-77.4266205881137, 34.585096216128335], [-77.4283935623613, 34.58573129996424], [-77.42866382236862, 34.5859962880399], [-77.4289461027118, 34.58632112058212], [-77.42992064463287, 34.58785775931871], [-77.43139926562115, 34.58869357360026], [-77.43178159559791, 34.588980740427395], [-77.43209939805844, 34.58896983616828], [-77.43315185659566, 34.5901385931829], [-77.43317355079057, 34.590677113687676], [-77.4336763603452, 34.590914863407164], [-77.4339531550698, 34.59142309222899], [-77.43400719391111, 34.59171330731545], [-77.43422093759457, 34.592794791372654], [-77.4352535088737, 34.593134349998756], [-77.4352998271845, 34.593174908788946], [-77.4353194790553, 34.59322195567713], [-77.43544076492054, 34.59340605809477], [-77.43581459497797, 34.59424469349021], [-77.43599258682062, 34.59482300855352], [-77.43577441656595, 34.59541478565335], [-77.43555581169846, 34.596260192535674], [-77.43536508579865, 34.59661210145671], [-77.43535326846225, 34.59671971687781], [-77.4352550998359, 34.597038741296565], [-77.43487703773343, 34.597973296307316], [-77.43440571763416, 34.59844916245311], [-77.43367998907712, 34.60024628812716], [-77.43367556807256, 34.600248317879945], [-77.43367278636956, 34.6002612498545], [-77.43284687321508, 34.60207122737036], [-77.4330903695327, 34.603097956467266], [-77.4332170487211, 34.6054144186635], [-77.43377612889697, 34.606931231519425], [-77.43441831130855, 34.60831276629183], [-77.43505883234376, 34.60901998678508], [-77.43571745218085, 34.61023557361499], [-77.4361504110086, 34.610772968137375], [-77.43631935920351, 34.611135876516485], [-77.4364964065683, 34.612151310757554], [-77.43618336473104, 34.61287642059424], [-77.43617885881594, 34.61298032065553], [-77.43553140025335, 34.613802433579224], [-77.4353945126557, 34.613839180728235], [-77.43364962115784, 34.614399085870566], [-77.43359066700242, 34.61439519923526], [-77.43334217675152, 34.61435967496688], [-77.43067273223343, 34.614380901097505], [-77.42928959695807, 34.61404706653561], [-77.42800411856352, 34.6139858804631], [-77.42527322466712, 34.613355772741414], [-77.4234182628675, 34.61279435511701], [-77.4226482162076, 34.612501083760286], [-77.42091691686618, 34.612120244715385], [-77.41949471184029, 34.61178330251042], [-77.41880666819246, 34.61163424769309], [-77.41634119185595, 34.61069963554804], [-77.41452942490575, 34.61006558095387], [-77.410035661424, 34.60876424826137], [-77.41003440163578, 34.608763863232106], [-77.41003386654728, 34.60876372676924], [-77.41003041990923, 34.60876364785966], [-77.40688118574124, 34.60875010397786], [-77.40503534644094, 34.608076168189136], [-77.40372794806947, 34.60827760788563], [-77.40253117582657, 34.60855671859199], [-77.40215135008953, 34.6085609083962], [-77.40191542257844, 34.60849055226481], [-77.40057474050649, 34.60851094969099], [-77.40049566239254, 34.60852643317681], [-77.39903100648209, 34.60868795760299], [-77.39899812770673, 34.60868460817334], [-77.39897485641981, 34.608685707866414], [-77.39888762365416, 34.60867322409023], [-77.39742152617887, 34.60834484945226], [-77.39683032961469, 34.60790852655499], [-77.39680232777441, 34.60727572300079], [-77.39672834698158, 34.60718398349541], [-77.39663327691161, 34.60716146811185], [-77.3965582263041, 34.60723009037139], [-77.39600068769258, 34.60739134468207], [-77.3959772171809, 34.607537192187564], [-77.39597074292266, 34.60824480677216], [-77.39604042713798, 34.60887326829357], [-77.3961458918017, 34.60906868752232], [-77.39591550784584, 34.60917800279524], [-77.39584486880428, 34.60921389730355], [-77.39554865418306, 34.60947387275956], [-77.39426812742062, 34.61077537653934], [-77.39409843915827, 34.610879478085856], [-77.39395137468892, 34.611083457320596], [-77.39326207343619, 34.611797569353925], [-77.39269690805199, 34.612113493431245], [-77.39269134731667, 34.612115817339514], [-77.3926904218333, 34.61211542561232], [-77.39192170065745, 34.61224542207507], [-77.39190299198718, 34.61224979335749], [-77.39187388815483, 34.61226351169968], [-77.39123743654736, 34.6124562120454], [-77.39111460710973, 34.61262815844222], [-77.39072822683576, 34.6128303345711], [-77.38954712886881, 34.61340673145399], [-77.38953781189318, 34.613409895855234], [-77.38953118234515, 34.61341192495185], [-77.3894909482564, 34.613424865641086], [-77.38874942139725, 34.613666119504465], [-77.38839924226446, 34.61405426304264], [-77.38796097042042, 34.614300853208725], [-77.38760235987526, 34.614546252931106], [-77.38731350730104, 34.614739724448796], [-77.38717252811794, 34.61480204604311], [-77.38664410284832, 34.61525345277683], [-77.38638405402594, 34.61543841023627], [-77.38611651386623, 34.61560955684985], [-77.38546125280486, 34.616408522699544], [-77.38480699436278, 34.617124866872096], [-77.38436215363328, 34.61756066736639], [-77.38375079783876, 34.618209687726946], [-77.38322992182333, 34.618560034234505], [-77.38193961577639, 34.61929927599874], [-77.38165291588517, 34.61944088656314], [-77.38152863823873, 34.61953341914715], [-77.38136329295085, 34.61969107034064], [-77.38045863416139, 34.620233623015736], [-77.38007580684737, 34.62061412849032], [-77.37940935928674, 34.62095317946758], [-77.37928728716693, 34.62098955693143], [-77.37914276017013, 34.62101577352287], [-77.378498792268, 34.621240547681154], [-77.37704897724076, 34.62187385978837], [-77.37692173432079, 34.62193484780267], [-77.3768686073758, 34.62197966092371], [-77.37679529870407, 34.6220474232078], [-77.37592509172342, 34.622797930935675], [-77.37534447626398, 34.62322388060686], [-77.37483991561271, 34.62348400781223], [-77.37408210901881, 34.624136457330984], [-77.37390208686026, 34.62430761321775], [-77.37376720570943, 34.624394202151365], [-77.37277432803586, 34.62495396711745], [-77.37219005994507, 34.62504828175422], [-77.37154803638991, 34.62519274264514], [-77.37133456858149, 34.6253091694841], [-77.3706128641708, 34.62577216239971], [-77.37029744319187, 34.62604012390097], [-77.37010593978295, 34.626407275697666], [-77.36998571080888, 34.62659863436187], [-77.36982394944204, 34.626996067133504], [-77.36971788617193, 34.62719812300603], [-77.36952107462153, 34.627666500982], [-77.36957319641735, 34.62818220925618], [-77.36971503018111, 34.628894329181094], [-77.36970828977225, 34.630833178395264], [-77.36989747117654, 34.63153197373853], [-77.37011963797315, 34.63266963244802], [-77.36996672666389, 34.634918461539826], [-77.36957060271166, 34.635555051762495], [-77.36903213805101, 34.63619443527645], [-77.36837800306918, 34.63783993600231], [-77.36825050456517, 34.6385569554229], [-77.36793721969647, 34.63937578385833], [-77.36768482622179, 34.639861252458225], [-77.3677373905799, 34.64101347833143], [-77.36822412330105, 34.641936668430915], [-77.36870612150274, 34.643482374419115], [-77.36874198313816, 34.64361839442043], [-77.36883448545734, 34.64522882860106], [-77.36918930442143, 34.64660131270375], [-77.36932208882496, 34.647064490682006], [-77.37054429351421, 34.648369824594], [-77.37127203905189, 34.64957969581346], [-77.37223638885685, 34.65048150887647], [-77.37313136400306, 34.651390164004525], [-77.37450864372559, 34.65293227543006], [-77.37526467588152, 34.6536730436062], [-77.3757729919173, 34.65440296444553], [-77.37753450852298, 34.65523733269646], [-77.3786024084695, 34.65625177976793], [-77.37908835090744, 34.65659259917242], [-77.3794936141562, 34.65726729898884], [-77.38006567159277, 34.65794871292616], [-77.38008629332062, 34.65802979633293], [-77.38015567669594, 34.65816528078309], [-77.38044962989392, 34.658823842670095], [-77.38055102249794, 34.659285275640904], [-77.38080466306477, 34.660104421486054], [-77.38078325198506, 34.66046600861976], [-77.38070748818134, 34.66074994037223], [-77.38087936083399, 34.66131526906581], [-77.38090571215584, 34.66142396166999], [-77.3807676839929, 34.66170049797254], [-77.38043314214578, 34.66234297860875], [-77.3800544595134, 34.662515867842124], [-77.37948485402387, 34.66277864742289], [-77.3790179080647, 34.66360834829284], [-77.37900708349746, 34.663631365406005], [-77.37900494484616, 34.663635041250814], [-77.37899529665569, 34.663645915109726], [-77.3784466626764, 34.66441083148341], [-77.37822396379505, 34.664717263213646], [-77.37814964487237, 34.66542377030133], [-77.37826211962206, 34.665787742995995], [-77.37826246058661, 34.666213932329], [-77.37875148933088, 34.665957206860554], [-77.3794632239106, 34.66619999638205], [-77.37963106201818, 34.66631049586893], [-77.37988788328659, 34.66643797647957], [-77.38009766365222, 34.6667396795362], [-77.3804703584236, 34.66685392824979], [-77.38081441906519, 34.66697618457717], [-77.38132866303735, 34.66721457204514], [-77.38154343182597, 34.66728045667717], [-77.38227459822099, 34.66742865718289], [-77.38342787951626, 34.66754946554464], [-77.38384745524844, 34.66758895453398], [-77.38407305845558, 34.667620558623454], [-77.38468165880437, 34.66772804597154], [-77.38499218531672, 34.66776832875915], [-77.38586897173565, 34.66781439249126], [-77.38613056892365, 34.66796959436551], [-77.38687644775018, 34.66805336081298], [-77.38730179756254, 34.668057554678626], [-77.3875576463788, 34.66809082050616], [-77.38832361886296, 34.66820166171357], [-77.38845091058732, 34.668221814805214], [-77.38874002426513, 34.66827984616169], [-77.38951259933603, 34.66840489087645], [-77.38967047894022, 34.66843548485973], [-77.38983974495696, 34.668500752356756], [-77.39077928360275, 34.66903137392191], [-77.39164418019536, 34.66953346385413], [-77.3923160767184, 34.669999853784574], [-77.39293930390161, 34.670422047582115], [-77.3932027881083, 34.670668687550574], [-77.393542984008, 34.671080105543524], [-77.39434196725963, 34.67197882535235], [-77.39532371248139, 34.67394023815524], [-77.39547865936053, 34.67507526557385], [-77.3955550470233, 34.67625789201572], [-77.39586900925168, 34.678002638875036], [-77.39594043334931, 34.678453214258845], [-77.39596605697724, 34.678638424557015], [-77.39659987967435, 34.67996346347541], [-77.3965975909688, 34.679977832859635], [-77.39663999563645, 34.68006971292506], [-77.39706871092423, 34.68126106618909], [-77.39725618971268, 34.68147502349714], [-77.39737528926746, 34.68165066175608], [-77.39781617472019, 34.681994274503204], [-77.3994855015063, 34.68321463886335], [-77.40053383920026, 34.683678639388646], [-77.40130866730655, 34.684715301234036], [-77.40152784180083, 34.68501315118831], [-77.4015657541182, 34.68503356518971], [-77.40179612866064, 34.685152433277175], [-77.4034958490993, 34.68601387548374], [-77.40369933808054, 34.68636603786976], [-77.4050007706392, 34.688956851243894], [-77.40573686224057, 34.691004636448746], [-77.40629563241325, 34.69198746248881], [-77.40659342203848, 34.69354090799365], [-77.40669362012025, 34.693728945931845], [-77.40704987445767, 34.69524359341958], [-77.4070401721283, 34.6959337324316], [-77.40720464635037, 34.69639005313131], [-77.40729328439005, 34.69692743188554], [-77.40756040027132, 34.69723400548123], [-77.40803346142056, 34.69795415523886], [-77.40838145716788, 34.698258938226694], [-77.4083918735206, 34.69864316773679], [-77.40883281264384, 34.69962008767501], [-77.40892719745332, 34.699816692547884], [-77.40907064237481, 34.699998887411056], [-77.40978538184211, 34.700757130614406], [-77.4101777587962, 34.70108047804911], [-77.41060857332494, 34.70165516783293], [-77.41059782281955, 34.70179796892022], [-77.41072861849322, 34.70192648078642], [-77.4113240530477, 34.702387756537846], [-77.41182103159142, 34.702580827495154], [-77.41219675443932, 34.702524190306235], [-77.41267001976988, 34.702376319861], [-77.41300065898741, 34.7023425525636], [-77.41315847669254, 34.70238913192885], [-77.41396929937089, 34.70243027363669], [-77.4144328174732, 34.702415305388314], [-77.41536280542621, 34.702200058372625], [-77.41562107278045, 34.70213887580431], [-77.41583765178828, 34.701807055960735], [-77.4158733347734, 34.701803300555476], [-77.41593274984108, 34.70166239404987], [-77.4160114677238, 34.701588304971466], [-77.41618087200905, 34.701558105866255], [-77.41628889309723, 34.70153921240212], [-77.41643017119551, 34.7014552122548], [-77.41658518300838, 34.701471144357164], [-77.41663435589687, 34.70145291205433], [-77.41694104233173, 34.70130496244432], [-77.41702140837867, 34.701222970845464], [-77.41709579685269, 34.701183979863785], [-77.41711065437961, 34.70113413568691], [-77.4171395517093, 34.70107784204625], [-77.41718401703237, 34.700954211224065], [-77.41724394124405, 34.7009012083236], [-77.41734380058392, 34.70076945703974], [-77.41743119772634, 34.70068715856314], [-77.41742886094264, 34.700606518150806], [-77.41759867538109, 34.700336061448084], [-77.41766355131402, 34.70024222793891], [-77.41769410229685, 34.70022002124908], [-77.41765884784202, 34.70012823726157], [-77.41745296597193, 34.69983119641049], [-77.41742933479442, 34.699814098422344], [-77.4173109059709, 34.69952689002541], [-77.41726705072747, 34.69946239426394], [-77.41724627449679, 34.699339527383245], [-77.41722061241391, 34.69921575816997], [-77.41720533098655, 34.699041781773225], [-77.41710029098307, 34.69889412204059], [-77.41688431359623, 34.698376040646146], [-77.41680387547342, 34.69831653768286], [-77.41681273595688, 34.69823443948868], [-77.41678952245528, 34.69806509091191], [-77.41673571853241, 34.69764840030364], [-77.41685788454394, 34.69740128824917], [-77.41660936715186, 34.69711205788854], [-77.41658436157962, 34.6970363567523], [-77.41663026676119, 34.696603527271044], [-77.41660507997162, 34.696267428394094], [-77.4167287177743, 34.695968653850905], [-77.41683822368964, 34.695624054638266], [-77.41698807118212, 34.69550028068031], [-77.41704772152488, 34.69549515528388], [-77.4170888718687, 34.69545593300107], [-77.4176602924857, 34.695176329991035], [-77.41766433810366, 34.69500737012703], [-77.41787786418088, 34.694944423690714], [-77.41829035041121, 34.69483762898246], [-77.4184771703654, 34.69484043333048], [-77.41856270122247, 34.69479264378621], [-77.4192492058138, 34.694618203227904], [-77.4192542482736, 34.694617673073175], [-77.41925563402322, 34.694617301926726], [-77.41925652182282, 34.69461649733045], [-77.41963156604095, 34.69448399031944], [-77.41967489043392, 34.694440601880714], [-77.41985415911145, 34.69426645207592], [-77.41996917154495, 34.69428801281496], [-77.41999450109655, 34.69427443970771], [-77.42031041394543, 34.69409798354379], [-77.42039076314424, 34.69389505767272], [-77.42042859709248, 34.69388183450949], [-77.42059113627944, 34.693809002112616], [-77.4207691035312, 34.69374784958532], [-77.42079070649724, 34.6937378925006], [-77.4210655819064, 34.69383677120378], [-77.42110489517427, 34.693759489820124], [-77.42123922540648, 34.69378792155017], [-77.42140246210744, 34.6938385078976], [-77.42152710235823, 34.693843404056906], [-77.42158667010914, 34.693754270756806], [-77.42184029138676, 34.69360751301093], [-77.42197009961095, 34.69348297208123], [-77.42208673410181, 34.69337009260275], [-77.42211723467275, 34.69331236080349], [-77.42223634005794, 34.69317175563365], [-77.42243555466028, 34.692933014000445], [-77.42245062308041, 34.69283610523888], [-77.4224809408354, 34.69266934656561], [-77.42264210438326, 34.69267462167336], [-77.42284321258883, 34.69251651506618], [-77.42275191963778, 34.6922640176747], [-77.42281374380555, 34.69220730491545], [-77.42284193411865, 34.69218658698081], [-77.42312309233651, 34.692055324476215], [-77.42316725798253, 34.692037357647294], [-77.42321717797866, 34.69199721841925], [-77.42352550462905, 34.69187514942818], [-77.42360116334272, 34.69166345425746], [-77.42364480750061, 34.69162685068479], [-77.42379751417113, 34.69157194646485], [-77.42398037576648, 34.69151654748265], [-77.42400183267101, 34.691500411685396], [-77.42426726747686, 34.691592052177846], [-77.42441862901002, 34.691568554095824], [-77.42461088795875, 34.69161029406234], [-77.42471849003094, 34.69158185831665], [-77.4250079499327, 34.69132264095988], [-77.42525753132452, 34.691124619521794], [-77.4253564321181, 34.69112902638041], [-77.42544314123066, 34.6909489681985], [-77.42563785530325, 34.69069856020848], [-77.42581465173183, 34.690382368087256], [-77.4258715128017, 34.690221204853316], [-77.42587371504382, 34.69006861293362], [-77.42600180733389, 34.68994045287262], [-77.42609581184286, 34.689800930256], [-77.42614775764585, 34.68975874536082], [-77.4262660346615, 34.68962454618641], [-77.42639472647153, 34.689404815861494], [-77.4264785067974, 34.68931534854229], [-77.42651108937774, 34.689277296698435], [-77.4265806564576, 34.689232760881794], [-77.42682925957483, 34.68904958800224], [-77.42691106749456, 34.68890756047454], [-77.42702433669677, 34.68880681642905], [-77.42713391789727, 34.68879979084821], [-77.42721581013595, 34.6886157879717], [-77.42733749300399, 34.688497626497316], [-77.42737296618809, 34.68844272905477], [-77.42750092526286, 34.68826713273282], [-77.42780702229389, 34.68810276767814], [-77.42771754800191, 34.68796002110247], [-77.42785787361596, 34.68773975022131], [-77.42794968610441, 34.68759359186686], [-77.42806197789017, 34.687435535937176], [-77.42809735649475, 34.68738340821663], [-77.42811920389592, 34.687373343537125], [-77.42812507262774, 34.6873435678134], [-77.42826376996442, 34.68714436831135], [-77.42832657642464, 34.68701028831322], [-77.42846834994553, 34.686656847810596], [-77.42865730052489, 34.68622868451312], [-77.42868252758511, 34.686172684568426], [-77.42855422613184, 34.68588673760114], [-77.42880685494828, 34.68596860918585], [-77.42894089156464, 34.68577103955863], [-77.42906575240765, 34.685747643961705], [-77.42914839692683, 34.685362430214596], [-77.4295788783162, 34.68551511247036], [-77.42969854165578, 34.6855140062646], [-77.43005522756452, 34.68564525479569], [-77.43000135117404, 34.686009061564825], [-77.42996164448573, 34.68606096768203], [-77.42981860813038, 34.68645814854979], [-77.42978979846053, 34.68655993476563], [-77.42973570768784, 34.68667137776345], [-77.43002373885912, 34.687200814678185], [-77.43009052632317, 34.68741606181987], [-77.43017920899652, 34.68786973342288], [-77.43037004686201, 34.688440055362385], [-77.43039115843254, 34.6890761314603], [-77.43045911623317, 34.689589332477794], [-77.43045167867557, 34.69048445556399], [-77.43032223334065, 34.69065959086578], [-77.43041595521294, 34.69085132764704], [-77.43006680906092, 34.69168839991311], [-77.42990245609965, 34.692577976412075], [-77.42986499834721, 34.69273595726079], [-77.42983689779601, 34.692878530417524], [-77.42980717017488, 34.69358500285857], [-77.42976885662317, 34.69382046797115], [-77.43005709355407, 34.694326441554864], [-77.43016067198137, 34.69452895383123], [-77.42985468301598, 34.69496860868718], [-77.43003673051516, 34.695473447914466], [-77.43016877200448, 34.69563750570218], [-77.43004071383406, 34.69579533837668], [-77.42980024155506, 34.69606770034661], [-77.4295028201392, 34.696411752297436], [-77.42912549162534, 34.69674648657726], [-77.42898410923628, 34.696900444554934], [-77.42891584272874, 34.696947941660035], [-77.42883472607167, 34.69694553011676], [-77.42860087189585, 34.69696540915861], [-77.4271949448833, 34.69712625406066], [-77.42707812909134, 34.69735207276515], [-77.42655295431794, 34.697572537632546], [-77.42609099758995, 34.697568001309854], [-77.42571588600232, 34.69769991890992], [-77.4254057350558, 34.69772127489627], [-77.42515948924674, 34.697799254404984], [-77.42495265857923, 34.697948016329775], [-77.42492296881736, 34.69805372980376], [-77.42506007846461, 34.69832356521157], [-77.42509962164442, 34.698426395967765], [-77.42518292037121, 34.69849111023232], [-77.42547359589625, 34.699027253349584], [-77.42545308147993, 34.699171665421474], [-77.42549926549586, 34.69961249922346], [-77.4255525176237, 34.70002292868088], [-77.42561582909906, 34.700195141979584], [-77.42556390141016, 34.700443057436445], [-77.42556519472858, 34.700910392734016], [-77.42568112100257, 34.70119858871131], [-77.42569677428462, 34.70134159830042], [-77.42576197280367, 34.7017210417989], [-77.42592944262563, 34.70253639377175], [-77.4259274540809, 34.70254041255876], [-77.42593145561483, 34.70254811118785], [-77.42612475258147, 34.703355184945906], [-77.42671265250866, 34.703816647681954], [-77.4268223726496, 34.70389892875393], [-77.4268913393792, 34.7039280884995], [-77.42702834676255, 34.70404351321324], [-77.42760915472851, 34.70452134032078], [-77.42782945140398, 34.70484847803273], [-77.42804008961188, 34.70523429469446], [-77.42812125465144, 34.705543796247426], [-77.42803351085375, 34.70597564988595], [-77.42802810140381, 34.706070293561346], [-77.42795027527421, 34.70616453432129], [-77.4276085819786, 34.70648267530631], [-77.4274911677426, 34.706584910366914], [-77.42732969566757, 34.70686984936222], [-77.42736205872461, 34.706955546221174], [-77.42751053125765, 34.70724077869829], [-77.42749395128499, 34.707337322906966], [-77.42736021125958, 34.707513968495974], [-77.42718749591339, 34.70758428857311], [-77.42703138047389, 34.70760589913428], [-77.42657372571392, 34.707798041105924], [-77.42648291832516, 34.7079283982736], [-77.42619551246807, 34.70822486567235], [-77.4259216267764, 34.7085067190759], [-77.42584902468028, 34.70882676355431], [-77.42592358596639, 34.70921868188355], [-77.42592364588167, 34.70924200921359], [-77.42592679518424, 34.709249051857], [-77.42603391570722, 34.70964238066346], [-77.42605331279182, 34.71021772589855], [-77.42600742918883, 34.71039538823818], [-77.42588005401774, 34.71059932995081], [-77.42571536147867, 34.711161119177135], [-77.42547423035563, 34.71132709811621], [-77.42549524729178, 34.7122971217382], [-77.42537828705747, 34.71259417748414], [-77.42548351293179, 34.71356662661163], [-77.42552091599678, 34.71533060180765], [-77.42542392025628, 34.71578208049256], [-77.42552730086543, 34.71610302752018], [-77.42447065949214, 34.71959722912388], [-77.424390009769, 34.719893182254374], [-77.4218407076653, 34.721211886445715], [-77.4218102802344, 34.72123252321537], [-77.42180461035822, 34.721232401655804], [-77.42179846000414, 34.72122950918867], [-77.42178231490438, 34.72121777015023], [-77.41961810958509, 34.719927464764694], [-77.4187120530046, 34.71894593199223], [-77.41864025270363, 34.71887658657946], [-77.41823647615168, 34.71825156611858], [-77.41801591756327, 34.71802243241096], [-77.41769898946694, 34.717699412629884], [-77.41756355296808, 34.71763951201018], [-77.41742377344593, 34.717457385299106], [-77.4166673267517, 34.71683448314372], [-77.4161541605535, 34.71644190561822], [-77.4156362746878, 34.715967503218906], [-77.4148995479978, 34.71592012709886], [-77.41441965670276, 34.715741333893966], [-77.4131311659443, 34.71595616734451], [-77.41309089858368, 34.71595551535359], [-77.41307172106818, 34.71596855688195], [-77.41165890794602, 34.71655945369813], [-77.41164036219625, 34.71657636565828], [-77.41165550169777, 34.717117369764566], [-77.4114127197983, 34.71726964115959], [-77.41118613791595, 34.717329935231795], [-77.41102758202568, 34.71745685754155], [-77.41057589407373, 34.717828438156225], [-77.40990398578205, 34.71805179698514], [-77.40977823008588, 34.718138101609235], [-77.40972166679813, 34.7182318377901], [-77.40981623708174, 34.71835470860994], [-77.41015998539423, 34.71894174600148], [-77.41008657584521, 34.719364171891506], [-77.40978416856746, 34.71952647001204], [-77.40976419618511, 34.71999948733299], [-77.40979145657056, 34.720379176037625], [-77.40969348071964, 34.7208744397602], [-77.40962275007362, 34.7209511625736], [-77.40925049922814, 34.721308195560376], [-77.40910688165923, 34.72141164716235], [-77.40880107132259, 34.72185895330615], [-77.40851579343791, 34.72216945317997], [-77.40847361915081, 34.72232302238528], [-77.40811804132707, 34.722787505282525], [-77.40787597859881, 34.72283912720573], [-77.40760990193752, 34.72297083757217], [-77.40739234913931, 34.72309733649526], [-77.40713639919366, 34.723178930418705], [-77.40693209808708, 34.72329288102271], [-77.4068775036833, 34.723751899307665], [-77.40684270158947, 34.723820731240664], [-77.40685626396913, 34.723890086248424], [-77.40654386259591, 34.724702732085554], [-77.4064867078815, 34.7248144541975], [-77.40625052251929, 34.7250353277635], [-77.40607438271448, 34.72522935564208], [-77.40604021689121, 34.72537562824895], [-77.40587584913271, 34.72571903377288], [-77.4055969771638, 34.72614729768874], [-77.40544820064804, 34.72626252073984], [-77.4050191496553, 34.72653762998015], [-77.4049728793487, 34.72662328184057], [-77.40481647860022, 34.72676001529498], [-77.40419046102598, 34.726840424640535], [-77.4041579975729, 34.72681977842377], [-77.40409815583206, 34.72682538029211], [-77.40354445863062, 34.72672444338234], [-77.40328510815502, 34.7268565671331], [-77.40315958407334, 34.72700543870969], [-77.40273357637338, 34.72731008401222], [-77.40262369291023, 34.72727155695527], [-77.40205938478458, 34.72742401976601], [-77.40185124851985, 34.72750501144061], [-77.40169710753833, 34.727612128011046], [-77.40141988899029, 34.727941931945104], [-77.40083150871065, 34.72842760572677], [-77.40068425050809, 34.728589824868536], [-77.40028657473154, 34.729116256730286], [-77.40013819344614, 34.729303349312254], [-77.3994785389168, 34.72961138173241], [-77.39880450930856, 34.72980517057801], [-77.39846259023913, 34.729835472833514], [-77.39779625841466, 34.729853702533504], [-77.39751425754251, 34.72983226727764], [-77.3971195138711, 34.72973455172864], [-77.39641630008899, 34.729195995556395], [-77.39565191048113, 34.7293404136843], [-77.39508357944646, 34.729369594811594], [-77.39403102198736, 34.72940340739312], [-77.3938401887463, 34.72937102333579], [-77.39380550914989, 34.72935464941508], [-77.3937661349764, 34.729347002056954], [-77.39330408972748, 34.72914907457931], [-77.39268759873991, 34.7287872840976], [-77.39232605823906, 34.728806881155634], [-77.39158217253444, 34.72867171449722], [-77.39144032410687, 34.7286661267832], [-77.39100117875289, 34.728714130949605], [-77.39019029599365, 34.72855446126546], [-77.38976817743024, 34.728698522146594], [-77.38919873613551, 34.728830948546396], [-77.38896079734114, 34.72887484910014], [-77.38881601687618, 34.72887127656985], [-77.38871669667044, 34.72877359002545], [-77.38774609697539, 34.72838496179436], [-77.38769140739443, 34.72832709728074], [-77.38765836392822, 34.72832203236319], [-77.38659947378989, 34.728006390781076], [-77.38646535323892, 34.728132754650936], [-77.38598496855957, 34.728126778857096], [-77.38572084993945, 34.72806616431839], [-77.38558183741729, 34.72812443862996], [-77.38519392388186, 34.72809487040841], [-77.38466272128582, 34.72783230998482], [-77.38459987853317, 34.72781136777268], [-77.3840884038497, 34.727484948683696], [-77.38353005103934, 34.72747650025384], [-77.38344924507619, 34.7274778883814], [-77.38337588922474, 34.72742881425816], [-77.3829339874589, 34.72704365211534], [-77.38268005849609, 34.72682617557462], [-77.38197092148455, 34.726423027298594], [-77.38186464051563, 34.7263091084324], [-77.38165911858934, 34.726359004809154], [-77.38103270217319, 34.726385253979885], [-77.3805353078424, 34.72647087791475], [-77.38023494329, 34.72657726169984], [-77.37985333311359, 34.72667872609327], [-77.37984275440732, 34.72668421361097], [-77.37983229890042, 34.726683928453454], [-77.37930401745561, 34.726551411273775], [-77.37923349101682, 34.726537766249734], [-77.37802950120388, 34.7271587219018], [-77.37787682253169, 34.72721081190018], [-77.37767397961369, 34.727593473088056], [-77.3776393521726, 34.72761222912911], [-77.37712961561444, 34.727485533574004], [-77.37651565661855, 34.727609469476306], [-77.37636728544163, 34.727576470188396], [-77.37619547426232, 34.72745441221716], [-77.37615705636864, 34.727621683672496], [-77.37497984915926, 34.72793831335366], [-77.37453457679501, 34.72773146889426], [-77.37432694471379, 34.72809944347233], [-77.37361800323401, 34.72821190832921], [-77.3731635387407, 34.72848280572557], [-77.37262668757256, 34.72862264488356], [-77.37218425909091, 34.72873321546045], [-77.37158433307931, 34.7288935497397], [-77.3712342298775, 34.72891712405784], [-77.37089578739291, 34.7287538656109], [-77.36972603716548, 34.72924687381304], [-77.36956355171527, 34.72928515346379], [-77.36954311179221, 34.729288044788056], [-77.36952203769128, 34.729291290053304], [-77.36933326663359, 34.72930084054339], [-77.36836164844333, 34.72923225458066], [-77.36806669964069, 34.72883417237736], [-77.3662799475577, 34.72892920199061], [-77.36602781363469, 34.72902042949518], [-77.36504335679405, 34.72958359955986], [-77.36433645277774, 34.72976027119917], [-77.3634818454214, 34.729539319473915], [-77.3627617823359, 34.729762178806915], [-77.36222432234248, 34.72974544568392], [-77.36180694608669, 34.730072224411245], [-77.361087130123, 34.730433556996964], [-77.36078857352251, 34.73056538568717], [-77.35976079245768, 34.73081234580687], [-77.35938703063458, 34.731641787799], [-77.3592528287834, 34.73172958839235], [-77.35852449389417, 34.73226993044309], [-77.35840808539182, 34.73232337464212], [-77.35788381407608, 34.73231945741767], [-77.3568957497209, 34.73295861182393], [-77.35661273371065, 34.73312913888962], [-77.35624752152358, 34.73382960007406], [-77.35559064087194, 34.73411254922641], [-77.3560044072564, 34.734172546655486], [-77.3561688026215, 34.734100661548084], [-77.35619981590862, 34.73451630716721], [-77.35599063192977, 34.73471416659639], [-77.35551960184124, 34.73471360701248], [-77.35506288823959, 34.73489683131805], [-77.35487512455695, 34.73443088816477], [-77.3543207978018, 34.73492801198153], [-77.3544519976725, 34.73524362045251], [-77.3544180116017, 34.73539290652499], [-77.35403074968296, 34.73594752201542], [-77.35379666729237, 34.73630833854825], [-77.35370751726644, 34.736388990931225], [-77.35327326194275, 34.73638017947548], [-77.35317118192619, 34.73635201224021], [-77.3531145135956, 34.73636867299103], [-77.35307992792012, 34.736381633630195], [-77.35304296828544, 34.73641178834704], [-77.35273715275271, 34.736685875076766], [-77.35271943578586, 34.736700502457225], [-77.35262981151999, 34.736955876142545], [-77.35246062847546, 34.73710946013176], [-77.35237079725302, 34.737361879620195], [-77.35232830384578, 34.73748463927727], [-77.35234257776028, 34.73764312259252], [-77.35235648293764, 34.73776709177383], [-77.35231370190738, 34.737974024666435], [-77.35230092882837, 34.738204025200744], [-77.35229846026193, 34.738219807703324], [-77.35229692046796, 34.73824092242561], [-77.35217125945506, 34.7384809556252], [-77.35227415039768, 34.73861882392266], [-77.35230510113206, 34.73888641910584], [-77.35230522334227, 34.73894995190054], [-77.35227320078593, 34.73901375574958], [-77.35228747456961, 34.73921594822472], [-77.35229120100948, 34.73939411143649], [-77.35229854716205, 34.739438249647215], [-77.35230954741417, 34.739528606722885], [-77.35218568056942, 34.739566384941675], [-77.35211917314268, 34.73952643164467], [-77.35192391279335, 34.739489664756775], [-77.35168574510517, 34.73946561399897], [-77.35163347366672, 34.73940553888297], [-77.35143814808004, 34.73926185824123], [-77.35130512670553, 34.7386387532969], [-77.35130373766278, 34.73860001404959], [-77.35130135734121, 34.73857867869735], [-77.35128721587044, 34.73853572295594], [-77.3511788164254, 34.73788453754806], [-77.35100534375806, 34.737666200583774], [-77.35097101736967, 34.73725597902776], [-77.35101390206569, 34.73710422340643], [-77.35132525358651, 34.73664753540187], [-77.3516678744171, 34.73640711097585], [-77.35195575289998, 34.73623422572429], [-77.35247753199772, 34.735847937261326], [-77.35272286351761, 34.735655135428544], [-77.35287695380508, 34.7355635622794], [-77.35293695805203, 34.73545157445165], [-77.35313084875173, 34.735281464964544], [-77.35321408261858, 34.73522399925021], [-77.3533148691281, 34.735156013234324], [-77.35342272627224, 34.734975904089374], [-77.35349961146896, 34.73488696483105], [-77.35348767171092, 34.734828144190175], [-77.35358287811876, 34.73475613787495], [-77.35375757905715, 34.7347183217387], [-77.35406596673357, 34.734702245997184], [-77.35419397971663, 34.73471410185655], [-77.35487499874075, 34.73421078979314], [-77.35490628967872, 34.73417025442488], [-77.35519928175671, 34.73331474519975], [-77.35528301344429, 34.733180013556726], [-77.35524716370834, 34.73314987574309], [-77.35515371947095, 34.732461695238015], [-77.35541852672759, 34.73218664340993], [-77.3550200719883, 34.73177608976802], [-77.35503000870563, 34.73175259483734], [-77.35503738865536, 34.73173347019701], [-77.35516623574647, 34.731246510714534], [-77.35515603303953, 34.7312003526295], [-77.35527514927212, 34.73079144003858], [-77.35510421563202, 34.730767641236405], [-77.35508683391518, 34.730608803744666], [-77.35510314912685, 34.73052954991779], [-77.3550918760325, 34.73050527814806], [-77.35521650773768, 34.73026484223865], [-77.35543893544468, 34.72987701602125], [-77.35556609855628, 34.729648966508016], [-77.35616211987724, 34.72932065640595], [-77.35638922403427, 34.729217276749246], [-77.35646922925802, 34.72917266549869], [-77.35651306848109, 34.729112076865135], [-77.35652043986755, 34.72904499094063], [-77.35669580121458, 34.728735178728094], [-77.35677900422792, 34.72858818175527], [-77.35688248814245, 34.72854976187304], [-77.35706226685062, 34.728421635677726], [-77.35710857350232, 34.728395407601084], [-77.35721805427998, 34.728425289712995], [-77.35731773432386, 34.728431597690246], [-77.35760236162909, 34.72847513684671], [-77.35779036901896, 34.72851664212755], [-77.35791982997648, 34.728431547919286], [-77.35831441045008, 34.72825455322239], [-77.3585732572046, 34.727854443043476], [-77.35858572217008, 34.72783986871479], [-77.35885908666751, 34.72746069024869], [-77.35910806710297, 34.72729362111175], [-77.35905857601836, 34.72709224448939], [-77.35907377206787, 34.72701268373326], [-77.35914760678645, 34.72702374507911], [-77.35943863163894, 34.72696481569479], [-77.35960767083469, 34.72684748560765], [-77.35965357936149, 34.72683156351982], [-77.35975896439456, 34.72689276695295], [-77.36000759015678, 34.72675629851753], [-77.36009644884825, 34.72676164092402], [-77.36034535222308, 34.72689064666399], [-77.36062918375939, 34.72698927087417], [-77.36128726905838, 34.72705909222342], [-77.36181462399807, 34.727031324838755], [-77.36251634196908, 34.72679714459373], [-77.36315270060487, 34.72654758782091], [-77.3633683880589, 34.72635001925513], [-77.36380012891847, 34.726380136471526], [-77.3639479304872, 34.72648407707192], [-77.36437466210883, 34.72646378589712], [-77.364573355837, 34.726397069399624], [-77.36485180806935, 34.726387795430114], [-77.36498119970977, 34.72643718201086], [-77.36517718674524, 34.72632667315757], [-77.36545333981559, 34.726282500091266], [-77.3656355086216, 34.72624599769329], [-77.3658203747582, 34.726225987731915], [-77.36610093851154, 34.72621801117761], [-77.3662386761607, 34.72623098940085], [-77.366399961326, 34.72617423884034], [-77.36683176115568, 34.72625071146784], [-77.36734145074723, 34.726238246259115], [-77.3675612762541, 34.726235309557744], [-77.36769019935946, 34.726114850383574], [-77.3679890607246, 34.72597610000646], [-77.36811709388739, 34.72594849559164], [-77.36856107974133, 34.72584465359726], [-77.36875101402717, 34.7258275039883], [-77.36892555213906, 34.72580772711676], [-77.3693047896109, 34.72598264991862], [-77.36984557761467, 34.725706175603484], [-77.36998747324171, 34.725693621768684], [-77.37007143700866, 34.7257144162703], [-77.37052643245778, 34.72589982049498], [-77.37117679295373, 34.72560906925315], [-77.37120535374062, 34.7256237323024], [-77.37120907331806, 34.725627440558405], [-77.3718307211321, 34.72553217073822], [-77.37184983441689, 34.725536794144126], [-77.37237036200301, 34.72568762661321], [-77.3724226565606, 34.72570198984235], [-77.37259882376486, 34.72567104516137], [-77.37274234006628, 34.72570517288723], [-77.37281766803923, 34.725670877465426], [-77.37289650775197, 34.72564146329837], [-77.3730968008962, 34.72558850465194], [-77.37326968913918, 34.725661841766204], [-77.37351833409156, 34.72557955255865], [-77.37375255089427, 34.72553840122119], [-77.37421819451859, 34.725716518264385], [-77.37440785228932, 34.7254898350775], [-77.37487714033382, 34.72529740879099], [-77.37496335820185, 34.724967015378255], [-77.37518351591437, 34.72459424464094], [-77.37523564115294, 34.72450313218907], [-77.37523747916495, 34.72438972643039], [-77.3753594678227, 34.724266879811665], [-77.37537211233156, 34.724235698561195], [-77.37542257808526, 34.724202483954095], [-77.37553563430987, 34.72412893893991], [-77.37561453316992, 34.7240765699815], [-77.37598076257692, 34.72410863098179], [-77.37606481425172, 34.72395459942277], [-77.37613646984259, 34.723951924911354], [-77.3763084867325, 34.72389622808862], [-77.37647117380259, 34.723817252201904], [-77.37650067594396, 34.72380161348665], [-77.37673642972543, 34.72384780173003], [-77.3768306403941, 34.72376932170545], [-77.37730226586292, 34.72354898640235], [-77.37727513572555, 34.72327652181046], [-77.37729047617768, 34.72325709431008], [-77.37763764645632, 34.72310719264549], [-77.37763709656058, 34.72307561579123], [-77.37768113659148, 34.723047852694684], [-77.37805478297344, 34.72301041112557], [-77.37830741812644, 34.7230992225639], [-77.37874490272446, 34.72293559382379], [-77.37893666661789, 34.72295610205209], [-77.3790122230299, 34.72287990607473], [-77.379283988457, 34.72277577537199], [-77.3793827665756, 34.72259968223876], [-77.3794162043082, 34.72259243542818], [-77.37967521223042, 34.722667277175255], [-77.37971548018402, 34.722665907853475], [-77.3801305021233, 34.722533069713734], [-77.3803819419586, 34.72257874030992], [-77.38057612322764, 34.722644089824016], [-77.38155379757464, 34.72295968055245], [-77.38190121162452, 34.72292201986957], [-77.38259393257744, 34.7229510562036], [-77.38282732879433, 34.72299008928358], [-77.38315175053017, 34.72305928088194], [-77.384660906998, 34.72333838656489], [-77.38519306777053, 34.72367609794134], [-77.38577324603588, 34.72366102365259], [-77.38583900409314, 34.72365968196391], [-77.38588197589048, 34.72370671417242], [-77.38634018240693, 34.72414242522161], [-77.38666265751348, 34.72427397083608], [-77.38722558402274, 34.72453977951304], [-77.38747536546018, 34.724649929529846], [-77.38780122987069, 34.72469207429011], [-77.38872302375768, 34.72476958490837], [-77.3891362656768, 34.724671302082434], [-77.38939986897702, 34.72442801702327], [-77.38946380231293, 34.72442608820952], [-77.38996393204908, 34.72452822411804], [-77.39007467402635, 34.72453059124337], [-77.3903612128316, 34.72442961226007], [-77.39056910982373, 34.72443112549319], [-77.39073191930953, 34.72447515757288], [-77.39087133407557, 34.72451556011178], [-77.3912499948507, 34.72451626222262], [-77.39135670580724, 34.724531667666874], [-77.39141273110211, 34.724525824656496], [-77.39185115489845, 34.72462133388558], [-77.3919712205971, 34.72462360460014], [-77.39222619222349, 34.724633088498784], [-77.39260951559186, 34.72463351989411], [-77.39276856346964, 34.724625020184654], [-77.39292396911259, 34.72454284200037], [-77.39318616069434, 34.7242329676972], [-77.39385118512747, 34.72374896483522], [-77.3939443353813, 34.72355453759015], [-77.39410402135763, 34.72327827936347], [-77.39432468816088, 34.72314046574222], [-77.39458371616035, 34.72310352915224], [-77.39466715386536, 34.72291616395051], [-77.39513962024586, 34.72252609264959], [-77.39514387909472, 34.72252297394348], [-77.39514510046837, 34.722522089428786], [-77.39579029343739, 34.72219083793807], [-77.39584559888286, 34.72217393462708], [-77.39588643532959, 34.72217646615706], [-77.3961164567902, 34.72211890403187], [-77.39669560722774, 34.722067412590306], [-77.39732694574913, 34.72163059230574], [-77.39734622498189, 34.72161693198327], [-77.39735397054783, 34.721603038465716], [-77.39793204499117, 34.721096249353124], [-77.3982746772389, 34.72082348096024], [-77.39845493449522, 34.72045478359854], [-77.39863054617211, 34.72017822125713], [-77.39879858521604, 34.71988849747396], [-77.3988879790215, 34.71966640064635], [-77.39895644421269, 34.71959603513873], [-77.39918497713947, 34.71946454263983], [-77.39917761010888, 34.71939177220591], [-77.39928730753599, 34.719290973706904], [-77.39947845506808, 34.71913548415479], [-77.39957451233111, 34.71904168651716], [-77.39951721114183, 34.71891592928452], [-77.39945483119463, 34.71871294616541], [-77.3994433899276, 34.718500380264146], [-77.39948408959921, 34.71845091261039], [-77.399451820559, 34.71834365355745], [-77.39943587402492, 34.71815447385101], [-77.39938882678666, 34.718076802529325], [-77.39934674678233, 34.71797983010273], [-77.39930424519058, 34.717828851045255], [-77.39933749203522, 34.71765187886208], [-77.39922270874331, 34.717301768398556], [-77.39919649403933, 34.71726433653101], [-77.39915746535503, 34.71721835646907], [-77.39905032887623, 34.71693877708543], [-77.39903202142092, 34.71688658115489], [-77.39896537732056, 34.716799845197755], [-77.39879611835285, 34.71656162184303], [-77.39879262401213, 34.716540062398145], [-77.39879053699848, 34.71653083493698], [-77.39877973178288, 34.716496234497356], [-77.3987568889378, 34.71633179850401], [-77.39871520588508, 34.716287792408664], [-77.3986966784399, 34.71621842447434], [-77.39869048530677, 34.71613632049917], [-77.39862629328081, 34.71604156849188], [-77.39856215283142, 34.71589178463992], [-77.39857536827539, 34.715737989494656], [-77.39843036553337, 34.71561158749664], [-77.39840423962465, 34.71555696123156], [-77.39832710844686, 34.71539516679496], [-77.39831371747081, 34.71535993979336], [-77.39828574720255, 34.715235930098295], [-77.39824085477757, 34.715159472332246], [-77.39818572317134, 34.715007787809164], [-77.39814973353259, 34.7149087678109], [-77.3981152862268, 34.71481399205545], [-77.39806135319222, 34.71467282904186], [-77.39804002613667, 34.7146222070162], [-77.39802123324502, 34.71458423392383], [-77.39795556191824, 34.71443425938754], [-77.39791855073318, 34.71433949339753], [-77.39789146841431, 34.71425925699665], [-77.39789757899503, 34.71423527160597], [-77.39784271771401, 34.713962626295164], [-77.3977687981101, 34.713842638914954], [-77.39767915510774, 34.71377959508503], [-77.39748160416241, 34.713556697902234], [-77.39749365675917, 34.71351102484723], [-77.39751243298673, 34.71328791196861], [-77.3974322346453, 34.7127957910293], [-77.39749390834046, 34.71272228388721], [-77.39745695008845, 34.71263368583706], [-77.39739640957576, 34.71254324583347], [-77.39718470272629, 34.71230086679722], [-77.39697849543222, 34.71198278565857], [-77.39696461199769, 34.71194630332036], [-77.39693822154875, 34.71191225993036], [-77.39689628070762, 34.71191918618485], [-77.39666906076397, 34.71173501608847], [-77.39664599509179, 34.711632816098344], [-77.3964113420341, 34.71151829798927], [-77.39639647636983, 34.71149954794281], [-77.39627192250208, 34.71134244840418], [-77.39618208387613, 34.71120338924623], [-77.39613463446246, 34.71112834621201], [-77.39616508240874, 34.71094067156792], [-77.39596627075431, 34.710842098531984], [-77.39592200678865, 34.710774364978036], [-77.39585155549234, 34.71062506291352], [-77.39576003340025, 34.710447776252636], [-77.3957458754097, 34.7104331542508], [-77.39577805896725, 34.710209386005424], [-77.39561514577228, 34.709841794894274], [-77.3955972691211, 34.70983844004291], [-77.39559593328408, 34.70982153161904], [-77.39559665098294, 34.70979342113026], [-77.39564462343066, 34.70974009142889], [-77.39609176236618, 34.709106605151014], [-77.39691184945121, 34.70916372455057], [-77.39696304472686, 34.70837639655401], [-77.39607650164152, 34.708250014552554], [-77.39561677395393, 34.70804504039535], [-77.39546543382036, 34.70808209653245], [-77.39545705219413, 34.70809547437116], [-77.3952227256376, 34.70820932074859], [-77.39504968275114, 34.70851206399693], [-77.39481924400168, 34.708521777250795], [-77.39472773701722, 34.70848009129599], [-77.3946839768312, 34.70843392506814], [-77.39372294564845, 34.70822517275318], [-77.39354340099399, 34.70814286458716], [-77.39338329992961, 34.708083536298425], [-77.39254740017661, 34.70779890761288], [-77.3923379140509, 34.707878619972334], [-77.39196505623599, 34.70778214792356], [-77.39171771357502, 34.70780672518292], [-77.3916366272876, 34.70780576301273], [-77.39107652173688, 34.70780723650964], [-77.39059506761402, 34.70746063159521], [-77.39049552675891, 34.707435803012245], [-77.38988124903466, 34.70750777552314], [-77.38952864473633, 34.70735083619844], [-77.38871594385103, 34.70710496575652], [-77.38842479485419, 34.70704178079775], [-77.38797672826158, 34.707154887686286], [-77.387632652945, 34.70724268431413], [-77.38738888909955, 34.70726005804815], [-77.38694671063219, 34.707196197061634], [-77.38616407472374, 34.7070625088064], [-77.38553634413203, 34.70680673696666], [-77.38501159734831, 34.706615500628], [-77.38452992130846, 34.70665702719371], [-77.38418632551507, 34.7065615659656], [-77.3837969843404, 34.706382796009954], [-77.38336364449435, 34.70601186819887], [-77.38328047840872, 34.705953332281595], [-77.38318804456746, 34.7059583970469], [-77.38263100516674, 34.7059823955456], [-77.3822869522707, 34.705980995887245], [-77.38201140374204, 34.70590845270233], [-77.38177227104777, 34.70578254389826], [-77.3815694499954, 34.70547108662083], [-77.38151764694491, 34.70540057737415], [-77.38121717145582, 34.70512131750466], [-77.38055540598158, 34.70464462670358], [-77.38046587735965, 34.70460643923443], [-77.38039508600208, 34.70457136398583], [-77.38031231526034, 34.70447175699637], [-77.37948960033927, 34.70355206632079], [-77.37908171051565, 34.703333590318216], [-77.37865547203589, 34.70303256286064], [-77.37839943025861, 34.70289045511759], [-77.37831921494039, 34.70280636029378], [-77.3782302260852, 34.7027334271184], [-77.37790700888404, 34.70252430103136], [-77.37773999303764, 34.702463726669485], [-77.37747694018856, 34.702349608598965], [-77.37737188111015, 34.70230539662073], [-77.3771284697019, 34.702166545811316], [-77.37711481496746, 34.70215975502049], [-77.37711406157905, 34.70215705624092], [-77.37710976086683, 34.70214997115308], [-77.37701363810027, 34.70192591471933], [-77.37690382364998, 34.701855268669185], [-77.3767348960949, 34.70166040536146], [-77.3766746274251, 34.701613550502145], [-77.37660770517911, 34.701561186900726], [-77.37653595196495, 34.701504197407935], [-77.37648165816807, 34.70146108749504], [-77.37643117347855, 34.70142098987439], [-77.3763348919483, 34.701179800020086], [-77.37621191413488, 34.70114502230648], [-77.3761868255106, 34.70106480295675], [-77.37608565187574, 34.70097740556043], [-77.37599045877444, 34.70087662991398], [-77.37596955104043, 34.70085097778101], [-77.37602003925757, 34.70063364119436], [-77.37600789840738, 34.70060200731349], [-77.37571394525992, 34.7002752494852], [-77.3756849332323, 34.70015901479807], [-77.37565653682513, 34.70012493835103], [-77.37562348279452, 34.70007807795437], [-77.37551014733313, 34.699843363927855], [-77.37552526186266, 34.69969357161941], [-77.37551420455442, 34.699445963518514], [-77.37534930827564, 34.69923036708119], [-77.37534642711796, 34.69896955623396], [-77.37533097914044, 34.69879847572442], [-77.37528223627196, 34.69875219266679], [-77.37524294842588, 34.698581743888475], [-77.37522603397605, 34.69827252303994], [-77.37518131723003, 34.6981251474554], [-77.37500599975348, 34.69807953019066], [-77.37479309067427, 34.69763548899746], [-77.37453224397933, 34.697393115609145], [-77.37435027706091, 34.69718785520327], [-77.37419808588137, 34.69673757567137], [-77.3741900956662, 34.696522637925064], [-77.37414797486385, 34.6964711551543], [-77.37404385374023, 34.69584668147883], [-77.37383245223617, 34.6955397412739], [-77.37368990373373, 34.694653234246566], [-77.37368080161453, 34.6945858007968], [-77.37377530448137, 34.69447636068212], [-77.3740287149103, 34.69319442018265], [-77.37416281690639, 34.692600937819435], [-77.37415632138425, 34.69257084672673], [-77.37409464253257, 34.69245939571714], [-77.37353153057406, 34.69150989655728], [-77.37347777639856, 34.69096680248171], [-77.37345268480473, 34.69078206970216], [-77.37344971504389, 34.690718411374], [-77.37346881494241, 34.69062860341413], [-77.37370006595772, 34.68980306965908], [-77.3737693135692, 34.68969968263874], [-77.37376997143114, 34.689619224762055], [-77.37381177123913, 34.68892852740846], [-77.3737268961564, 34.6887307230957], [-77.37369825986151, 34.68827943546365], [-77.3736856606138, 34.68823709121845], [-77.37348377812806, 34.68778935796006], [-77.37327758957036, 34.68753008358133], [-77.37283722715345, 34.68731326536796], [-77.37250587805714, 34.68694900928568], [-77.37228143748754, 34.686837527386345], [-77.37166433071957, 34.68663926735502], [-77.37122779413312, 34.68634320413677], [-77.3710815305819, 34.68617002607041], [-77.37069131369552, 34.685811381254155], [-77.3703041909776, 34.68540065144903], [-77.37026801446869, 34.68534878056917], [-77.37018760704906, 34.68531811942379], [-77.36980783404377, 34.68504851417669], [-77.36972436484588, 34.68497883540723], [-77.36966944581283, 34.68490195056225], [-77.3693569016519, 34.684539810232835], [-77.36934133922124, 34.68448522576909], [-77.36934189700598, 34.68445958047394], [-77.36914183802625, 34.68424145614888], [-77.3689572535318, 34.68399243397127], [-77.3686266655001, 34.68358310252511], [-77.36853765061885, 34.68352698910008], [-77.3684724897739, 34.68346229440107], [-77.36810729891175, 34.68332454855887], [-77.36792554672652, 34.68320975372386], [-77.36743945621464, 34.682897121522466], [-77.36736637010199, 34.682851769165715], [-77.36727456038265, 34.68279415361232], [-77.36680301050552, 34.68249700603647], [-77.36643922305551, 34.6822189341751], [-77.36626800462881, 34.682120414968345], [-77.36588529614063, 34.682065322107015], [-77.36582215135735, 34.68201897702678], [-77.36577775095326, 34.681709371491], [-77.36544145747938, 34.68153228965617], [-77.36516091463886, 34.68139578194945], [-77.36490191984686, 34.68132910251658], [-77.3646431324007, 34.68120621686624], [-77.36454418691879, 34.68108210940446], [-77.3643780180657, 34.681072032383], [-77.36417728718365, 34.68097033851719], [-77.36397195465614, 34.680935500003734], [-77.36381312820342, 34.680956228003225], [-77.36347155277551, 34.68111941712363], [-77.36313071001825, 34.68124545121289], [-77.36295894919141, 34.68131395007917], [-77.36274126501594, 34.68128739429178], [-77.36255599382164, 34.681163504129046], [-77.36245401742596, 34.68111429839253], [-77.36236237255838, 34.681032217724194], [-77.36204696239287, 34.680855206507985], [-77.36179940145348, 34.68082978696162], [-77.361004195439, 34.68085758565754], [-77.3607607874711, 34.68116251754658], [-77.35988590483012, 34.68185983564817], [-77.35960609047572, 34.6821710907118], [-77.35921820730583, 34.682353250771435], [-77.35913742359651, 34.682393855894816], [-77.35869518781954, 34.6824309524802], [-77.35859189238735, 34.68244904990102], [-77.35852370649624, 34.68248803580853], [-77.35841145328872, 34.682549766489124], [-77.35782382662133, 34.683033219264544], [-77.3577625022406, 34.68308970471155], [-77.3575961265021, 34.68314914409477], [-77.35710356023029, 34.68345266883526], [-77.35674535880982, 34.68346448676212], [-77.35648988911916, 34.683504859158575], [-77.35617895127001, 34.68383117514984], [-77.35593885673131, 34.68402600821], [-77.35574988347653, 34.68413379582253], [-77.35570428376882, 34.68414935459445], [-77.35569294260108, 34.68414161593556], [-77.35555175435753, 34.684062135636346], [-77.35554974243941, 34.684000176451406], [-77.35561015661983, 34.68390929291902], [-77.35560362866742, 34.68372882123727], [-77.35583336310208, 34.683451175009026], [-77.35590399960293, 34.683381552235154], [-77.35590378898989, 34.68335666914549], [-77.3559371317743, 34.683347194789825], [-77.35646052691558, 34.683211979711785], [-77.35657303439538, 34.683218414645026], [-77.35708670106158, 34.6827317287358], [-77.3571236258208, 34.68252333757318], [-77.35740585940773, 34.68241117676553], [-77.35760958165096, 34.68231590143093], [-77.35777739680925, 34.68234900194438], [-77.35798497772224, 34.682477998743686], [-77.35824888287692, 34.682244406389884], [-77.35868018574578, 34.68202546623922], [-77.35870708264622, 34.68201236478145], [-77.35872343261055, 34.681995831813545], [-77.35923094652776, 34.68183853348851], [-77.35943899631062, 34.681592502160875], [-77.36049435213334, 34.680801473526195], [-77.36049392457406, 34.680405244776225], [-77.36063665776838, 34.68014799610658], [-77.36085942529795, 34.67977654387334], [-77.3610535696214, 34.67962492205256], [-77.36121520238203, 34.67959665763769], [-77.36130227588151, 34.67963559076465], [-77.36234048180839, 34.67948930548713], [-77.36245645940996, 34.679444045254854], [-77.36250586421886, 34.67949747532152], [-77.3627423726924, 34.67951783923491], [-77.36296775129486, 34.67953612021291], [-77.36301976000738, 34.67956529319012], [-77.36327146593028, 34.67969653221459], [-77.36353427508314, 34.67985466963181], [-77.36408295200674, 34.679757500237976], [-77.36415616218663, 34.67977401728832], [-77.3641793684907, 34.67978603621552], [-77.36424487548166, 34.67979877342439], [-77.36468375047673, 34.68001835167472], [-77.36501617830382, 34.67993026490666], [-77.36530325342912, 34.67994590705746], [-77.36557251915765, 34.67989618456861], [-77.36566566733879, 34.67988405560413], [-77.36591278166338, 34.67990783436095], [-77.36618653620008, 34.67981769492242], [-77.36629554745703, 34.679804193384285], [-77.36655055970341, 34.67977238672137], [-77.36666247274226, 34.67984551044222], [-77.36698355434797, 34.67990980003528], [-77.36705625145464, 34.67993657878405], [-77.36710351284066, 34.679929304886535], [-77.36722557372556, 34.67999036921757], [-77.36762258751172, 34.68020300259964], [-77.36773138008593, 34.68020527434316], [-77.36815204181698, 34.680440929655774], [-77.3682749697611, 34.680575244837804], [-77.36863696263838, 34.68065733239193], [-77.36899745140195, 34.68080748157073], [-77.36921342587858, 34.680908277219245], [-77.36962554443534, 34.68111239141267], [-77.36976183043708, 34.68108090613207], [-77.37001032422526, 34.681182263566015], [-77.37031632125866, 34.68123255657801], [-77.3704992357571, 34.68122820165675], [-77.37078476183304, 34.68133688484435], [-77.371051583288, 34.68159143017146], [-77.37131487700006, 34.68191655106465], [-77.37221953301986, 34.681480659028026], [-77.37270124255451, 34.68126358970027], [-77.3728909284467, 34.68118270913621], [-77.37304876455556, 34.681025636887185], [-77.37419242677832, 34.68024913761285], [-77.37457382083684, 34.680121656899786], [-77.37542604730324, 34.680122641626056], [-77.37658502912188, 34.67935158072], [-77.37691274086991, 34.67912345954244], [-77.37779479348126, 34.678423432926664], [-77.37815531789911, 34.67819077079988], [-77.37847367713405, 34.6778680956383], [-77.37944837529601, 34.677221207221194], [-77.37961743401442, 34.67693411752089], [-77.38054155575058, 34.676096037259356], [-77.38069904974276, 34.675340298501816], [-77.38072435256794, 34.674931340283365], [-77.38117467065892, 34.674059352999315], [-77.38083044236808, 34.67386774130984], [-77.38039665521717, 34.67360656890479], [-77.38018556286686, 34.67360908783079], [-77.37972665066742, 34.67354687042645], [-77.3794990091721, 34.67350932959982], [-77.37870957217325, 34.673577204019715], [-77.37851694106384, 34.67359130230564], [-77.37830934664062, 34.67363697987313], [-77.37787047213187, 34.67375702402498], [-77.37736639502032, 34.67366301051737], [-77.37728840572447, 34.673700636778186], [-77.37695360484474, 34.67366514662369], [-77.37627524432764, 34.673626378529086], [-77.37613532474809, 34.67354974832676], [-77.37570603551728, 34.67346768741228], [-77.37498104925075, 34.673402980394165], [-77.37456980912219, 34.673362641870945], [-77.37422846010853, 34.67343434628306], [-77.37379034054953, 34.673381839843884], [-77.37342871359222, 34.67345283765479], [-77.3728773001584, 34.673513032059795], [-77.37250044691554, 34.67370265873744], [-77.37209202849391, 34.67369362916689], [-77.37039508206479, 34.67386546173559], [-77.37004102558252, 34.673929194991956], [-77.36978490530885, 34.6738931512668], [-77.36894195911992, 34.67385373883444], [-77.36885705094556, 34.67388475988827], [-77.36876665471436, 34.67381601169463], [-77.36813994702769, 34.67358276030616], [-77.3677613723547, 34.67353594447773], [-77.36700374751597, 34.67308354193864], [-77.36684020757924, 34.673006557764694], [-77.36674882291608, 34.672900606102104], [-77.3659532495957, 34.67248076601236], [-77.36570493520064, 34.67237333032977], [-77.3656522404229, 34.67234429025284], [-77.36560212342201, 34.67230139873293], [-77.36469159952215, 34.671740782508294], [-77.36451328451773, 34.671644287392766], [-77.36414702383908, 34.671526588834524], [-77.36361102672483, 34.67134001826232], [-77.36321987622658, 34.671334000514], [-77.36302485751465, 34.6712977819697], [-77.36292570206903, 34.67128969936259], [-77.362670707191, 34.671242071028885], [-77.36245276603887, 34.67120702509712], [-77.36222463775775, 34.67104100902262], [-77.36213161999869, 34.67082875722199], [-77.36201654007786, 34.670648029564504], [-77.36184234238696, 34.67054689302257], [-77.36182698464143, 34.670383226879174], [-77.36154681984667, 34.67020448480862], [-77.36106470242692, 34.670357158886745], [-77.36056502657706, 34.67025672342781], [-77.36035846196397, 34.67017525073503], [-77.36031492783857, 34.670145969701835], [-77.36026914156031, 34.670109883404656], [-77.35988778398625, 34.66973503854124], [-77.35985035324741, 34.669715206165286], [-77.35979763842447, 34.6696872754381], [-77.35958832644808, 34.66952272100536], [-77.35964399119557, 34.669440123516985], [-77.35965661493682, 34.669219262908285], [-77.35968162762836, 34.66905667351051], [-77.35955057700147, 34.668834896255994], [-77.35951743452657, 34.66875099692214], [-77.35941256846445, 34.668596704197014], [-77.35939885441186, 34.66848594753124], [-77.35939105753907, 34.668280971691885], [-77.35939246258785, 34.66794064316859], [-77.35935527647108, 34.66773106784066], [-77.35943121342788, 34.667300678599496], [-77.35929621177036, 34.66698811216796], [-77.3591901131683, 34.66684641650504], [-77.3592118177568, 34.666504003120366], [-77.35919848282941, 34.66635787938068], [-77.3592078057749, 34.66626774864461], [-77.35926499583127, 34.66586135406021], [-77.35926057139932, 34.6657099955466], [-77.35925409844883, 34.66544368017573], [-77.35926437202298, 34.66537405222629], [-77.35922695173628, 34.66524094945439], [-77.35920308194999, 34.66469452989298], [-77.35907716017655, 34.664424998285526], [-77.35907131587498, 34.664300082060755], [-77.35901388118714, 34.66405177443759], [-77.35898265935745, 34.663950594248725], [-77.35902589675834, 34.66378620078586], [-77.35908704297744, 34.663601232310064], [-77.35907512993106, 34.66345050217095], [-77.3592320857831, 34.66293954515004], [-77.35926962044039, 34.66269428032047], [-77.35925632825919, 34.662581596004124], [-77.35927523551334, 34.662371474818144], [-77.35934966197428, 34.66172476085602], [-77.35933563657412, 34.66142168781124], [-77.35947185856159, 34.660948562247775], [-77.36001562266141, 34.66090512341208], [-77.36008757375005, 34.66082574149439], [-77.36011195666734, 34.660811833761755], [-77.36014424641075, 34.660771575017506], [-77.36019574290866, 34.6605483827907], [-77.3601944310586, 34.65992066586473], [-77.35992168360802, 34.65930011783104], [-77.35928114959663, 34.65776520505235], [-77.35871279813446, 34.65717646421665], [-77.35854117578097, 34.65693353506975], [-77.35809754244761, 34.65683272328475], [-77.35760707622947, 34.65648634683003], [-77.35722194426793, 34.65613248051842], [-77.35578658038823, 34.65549751130747], [-77.35445247140512, 34.65395742966007], [-77.35402562843828, 34.652977037524494], [-77.35331179862257, 34.651210610237754], [-77.3529701132565, 34.65078501343687], [-77.35183669511534, 34.64908683652615], [-77.35067272524998, 34.64724950176086], [-77.34897563327795, 34.64458156205151], [-77.34811915206906, 34.64311950304227], [-77.34605900126279, 34.63883243502842], [-77.3456951764154, 34.638733368470625], [-77.34379442440033, 34.64030738716757], [-77.34346781674076, 34.6412749600639], [-77.34223119084106, 34.64099964504847], [-77.34134927743688, 34.64088416823583], [-77.34119595479673, 34.64075310046915], [-77.34103734018626, 34.64060748396602], [-77.34063081678329, 34.63996079889568], [-77.34052658831028, 34.63978216662841], [-77.34050153003409, 34.63899304276103], [-77.34057610579677, 34.638575214160625], [-77.34087778494248, 34.638537813897145], [-77.34133935939805, 34.638034043321504], [-77.34139152353005, 34.638002039518575], [-77.34140256257757, 34.637963188900805], [-77.34146021894091, 34.63793361304257], [-77.34171883372781, 34.63798195218693], [-77.34205227572406, 34.63801031694846], [-77.34264690293197, 34.63788021806326], [-77.34273281053161, 34.63791983875164], [-77.34332148532513, 34.63795419134715], [-77.34382322890724, 34.63784730795638], [-77.34580092601374, 34.63811533421362], [-77.34589737566958, 34.6380283777775], [-77.34668413841152, 34.63627104312411], [-77.34675143330543, 34.635906914240266], [-77.34690866193567, 34.63473741139747], [-77.34736821004304, 34.63424086348881], [-77.34731310546061, 34.6329938710648], [-77.347362227293, 34.63290088109784], [-77.3474035656017, 34.63278107292009], [-77.34775917674698, 34.63193707425497], [-77.34781708774234, 34.631653328428314], [-77.34803789717994, 34.63120633270897], [-77.34812032908452, 34.630939855000456], [-77.34825563776896, 34.63065014636953], [-77.34839965870611, 34.63031264777022], [-77.34871438909005, 34.630160087811426], [-77.34877242351303, 34.63003622717447], [-77.34905430819487, 34.62978435962437], [-77.34933027700555, 34.629626640929594], [-77.34981673961357, 34.62927401490454], [-77.35038567884338, 34.629051666359814], [-77.35046090514498, 34.62888177497218], [-77.35075415882518, 34.6287142240411], [-77.35114962358296, 34.62843052477357], [-77.35156457695618, 34.62800291264403], [-77.35186786357231, 34.62776671458042], [-77.3523813238841, 34.627233725464066], [-77.3525480474138, 34.62706739474643], [-77.35263955782634, 34.62698145912313], [-77.35335103978196, 34.6264827195219], [-77.35373377441414, 34.62605578974435], [-77.35465863878841, 34.62557366743195], [-77.35498003981206, 34.62533489288458], [-77.35516317806405, 34.62516145052465], [-77.35642094569802, 34.62429305631057], [-77.35697959421844, 34.62380325958782], [-77.35794597815561, 34.62311941022954], [-77.3579984836173, 34.62309823494013], [-77.35814032308498, 34.62303491394426], [-77.35931553567549, 34.62258568344868], [-77.35957570862149, 34.622459832476125], [-77.36015570203918, 34.622120458676626], [-77.36115303236411, 34.621553579030845], [-77.36186716325923, 34.62156946795467], [-77.3627301756762, 34.62097617588442], [-77.36422910331541, 34.62037621088585], [-77.3639461272399, 34.61880293551492], [-77.36342357202747, 34.61813273236461], [-77.36283309030709, 34.61726493730769], [-77.3628028804866, 34.617192796743694], [-77.36273188885508, 34.617129658143426], [-77.36222439412946, 34.61650344117621], [-77.3627325486354, 34.615655279418654], [-77.36276591242202, 34.61561230364859], [-77.36282202664181, 34.615568313797425], [-77.36391987480513, 34.61499053195982], [-77.3643097830026, 34.614582151323845], [-77.36503325295575, 34.614330875760295], [-77.36565413991092, 34.61346240973447], [-77.36576314703072, 34.61331325940432], [-77.36588714004812, 34.61311067113574], [-77.366471208156, 34.612275258643244], [-77.36746447434737, 34.61155625757809], [-77.36749722251557, 34.61149883286845], [-77.36763123873428, 34.60996025078521], [-77.36783339402287, 34.60975220106352], [-77.36845082151709, 34.60902640337642], [-77.36904218942519, 34.60883708966986], [-77.36960395899875, 34.608403932804414], [-77.37032889159872, 34.607694623270014], [-77.37047836834911, 34.60752129371678], [-77.3706193358835, 34.60742285796478], [-77.37087669334454, 34.60733855336351], [-77.37163720221432, 34.60690416306976], [-77.37219627109596, 34.60647230235594], [-77.37287466271044, 34.6063604347111], [-77.3731450684921, 34.606267097719964], [-77.37356143287685, 34.6063799397232], [-77.37377289263655, 34.606380055091876], [-77.37384551377073, 34.60633902082113], [-77.37418291465575, 34.60588278770615], [-77.37514338445554, 34.60530294340203], [-77.37534985238713, 34.60515947683562], [-77.37593546995129, 34.60412107534094], [-77.37641744741418, 34.60342115563034], [-77.37692704814748, 34.602953061703026], [-77.3773059784074, 34.602884975605335], [-77.37789894969258, 34.60255628883563], [-77.37850375920115, 34.602247261115274], [-77.37928392299933, 34.60215028975352], [-77.37929203864125, 34.602147073383094], [-77.37930495004422, 34.602142094258596], [-77.37999018955216, 34.601960150324345], [-77.38008033937028, 34.60195388216271], [-77.38015203192202, 34.60195670897252], [-77.38070282835412, 34.601954567749466], [-77.3808482939709, 34.60195546819423], [-77.38088743185473, 34.601948261366914], [-77.38165681988467, 34.602040329794015], [-77.3821199319788, 34.60210057915868], [-77.3830359404007, 34.602254883609646], [-77.38323327006907, 34.6022796254642], [-77.38333132937981, 34.60231924530303], [-77.38357266394095, 34.60239010376914], [-77.38402147192916, 34.60252899482589], [-77.38443057190855, 34.602674853987764], [-77.38480968788421, 34.60272825555634], [-77.38538519321202, 34.60297798385575], [-77.38546499719189, 34.603109617442556], [-77.38581868923657, 34.603153372184494], [-77.38638612028609, 34.60318428243529], [-77.38678403895867, 34.603196820981], [-77.38754172725737, 34.60351624603554], [-77.38782543800569, 34.60362306901983], [-77.38796255259832, 34.60374662992724], [-77.3889212252004, 34.60398288914769], [-77.38972669640083, 34.60489950266794], [-77.39047119305229, 34.60548610762632], [-77.39111533619626, 34.60610761033906], [-77.39126655104255, 34.606212863508915], [-77.39134370733574, 34.60636464085083], [-77.39159091009029, 34.606665783119084], [-77.3916665307724, 34.60674266228689], [-77.39190355130643, 34.606778730489054], [-77.39219911304728, 34.60666586695317], [-77.392252008873, 34.60660900631643], [-77.39241199778112, 34.60651207353306], [-77.39269189188457, 34.60626075848293], [-77.3927474260916, 34.606222048043314], [-77.39278258817038, 34.606157160228456], [-77.39348025519577, 34.60536388289855], [-77.39353763180414, 34.60526093495123], [-77.39361826346038, 34.60518751007555], [-77.39426859730692, 34.604525175717896], [-77.39463872669093, 34.60458991953833], [-77.39477409196232, 34.60447629444168], [-77.39505689119181, 34.60416125866528], [-77.39507920579928, 34.60415171278631], [-77.39514235595807, 34.60411856760679], [-77.39542932997887, 34.60362919902653], [-77.39584519981872, 34.60342999171273], [-77.39604172708783, 34.603139708927074], [-77.39615640479654, 34.602609216390675], [-77.39738108906413, 34.60209737565749], [-77.39740349569453, 34.60207445614485], [-77.39742177127862, 34.60207316518086], [-77.39745004825572, 34.602056967398], [-77.39840887067952, 34.60131416434129], [-77.3989982922277, 34.60069677744642], [-77.39929910179592, 34.60044644952029], [-77.39978653122697, 34.600124956716215], [-77.39988063648073, 34.60003850352504], [-77.40026567859884, 34.59964998137259], [-77.40057476037757, 34.59940712172468], [-77.40107179724805, 34.599017499656675], [-77.40123628071849, 34.59885727649759], [-77.40136297553569, 34.598558933989224], [-77.4016830084864, 34.59808016224524], [-77.40190355110784, 34.597781567136856], [-77.40215117412332, 34.597650295698806], [-77.40278406707667, 34.597239444838806], [-77.40299955464593, 34.597105888776326], [-77.40372753248704, 34.59622972798671], [-77.40382476542986, 34.59617756409261], [-77.40398171467281, 34.59605016010565], [-77.4047071716808, 34.595302616943634], [-77.40489573860418, 34.5946596121407], [-77.4049651912683, 34.59420992561759], [-77.4050723047322, 34.59394506142436], [-77.4053037426143, 34.592799014448275], [-77.40536143296498, 34.592454432504844], [-77.40631860578875, 34.59171145219382], [-77.40665428332595, 34.59081262968813], [-77.40669984903917, 34.59056294696428], [-77.40668958134371, 34.59035938063121], [-77.40687984849669, 34.58965652983329], [-77.4070098902061, 34.58896004286953], [-77.40707528532892, 34.588810444523375], [-77.40735655645321, 34.588256114834756], [-77.40746694950059, 34.587688310269], [-77.40730679176161, 34.58707871507323], [-77.40781023869611, 34.58631043370899], [-77.40804487489527, 34.586123016232406], [-77.40831717010379, 34.58593434149438], [-77.40830870574065, 34.58539421570079], [-77.40819695699155, 34.58525190543187], [-77.40828850641276, 34.585058510130814], [-77.40817003723927, 34.58471443683595], [-77.40790200265572, 34.58444532772552], [-77.40778569577961, 34.58433486399748], [-77.40766758396401, 34.58415278019707], [-77.40725924560856, 34.58368895642388], [-77.4071955534685, 34.58335755670508], [-77.40714361053173, 34.58229202753855], [-77.40742220453356, 34.58196712068753], [-77.40735165521085, 34.581468378796465], [-77.40703033892584, 34.58048812796335], [-77.40697625705651, 34.58033318359517], [-77.40687928234243, 34.58015451773884], [-77.4060958338362, 34.57960613693706], [-77.40592869244648, 34.57878608800678], [-77.40599837401219, 34.57802685100241], [-77.4059759440402, 34.577930114837805], [-77.40530311217907, 34.5773442729359], [-77.40523647683278, 34.5772595023083], [-77.40490911329886, 34.57751417999599], [-77.4047291091224, 34.57745490334465], [-77.40470083588674, 34.577465155013336], [-77.40451511073468, 34.577605095256], [-77.4042209172717, 34.57765130544311], [-77.40404797622213, 34.57770501681944], [-77.40372710233255, 34.577757722828096], [-77.40343131479652, 34.577872825146336], [-77.40341479483573, 34.577963243876724], [-77.4032294131401, 34.57801369461814], [-77.40293909334355, 34.57826017455191], [-77.40278774347782, 34.57822719142256], [-77.40215107559374, 34.57828229665826], [-77.40196663650212, 34.57831003658525], [-77.40145612241227, 34.57858245740834], [-77.40140466206526, 34.578634719839286], [-77.40136305335331, 34.57863321980347], [-77.40133348067579, 34.57863202247626], [-77.40074242231015, 34.57886582887231], [-77.40057502464478, 34.57896929478104], [-77.40036742128683, 34.578963268265774], [-77.40016062391965, 34.57917201380728], [-77.40013782312175, 34.579197267879444], [-77.39978698146724, 34.57957009509519], [-77.39973569008603, 34.57962460041329], [-77.39939296055219, 34.57972497437976], [-77.39938739829849, 34.57972413043611], [-77.39937583390281, 34.57973179271858], [-77.39919285856946, 34.579967156908374], [-77.39918982249273, 34.57997091921596], [-77.39915354021781, 34.580021843778276], [-77.39902562805503, 34.58020689734698], [-77.39899892341829, 34.58026238335914], [-77.39886350733148, 34.5805089562509], [-77.39876912549789, 34.5806684805435], [-77.39860487673295, 34.58090793236749], [-77.39849781951236, 34.58101684595016], [-77.39829354283017, 34.58107256416495], [-77.39821084630422, 34.581082353720575], [-77.39793202676569, 34.58108969436253], [-77.39781682306929, 34.581085313884266], [-77.39765470014186, 34.58107914885473], [-77.397422796546, 34.58114521106063], [-77.39698026415206, 34.581298882594474], [-77.39627556986356, 34.581877377557795], [-77.39613127762365, 34.58220491384107], [-77.39584661112666, 34.582357130006294], [-77.39524709263702, 34.58267170336996], [-77.3948902373623, 34.58274503878013], [-77.39427044357612, 34.582878380280754], [-77.39409426116616, 34.583041180538714], [-77.39380679152866, 34.583432257886614], [-77.39339245752811, 34.58399154717895], [-77.39293373771189, 34.58431585816194], [-77.39269414431307, 34.58439838970499], [-77.3919845800993, 34.58504374594878], [-77.39194675577801, 34.58509313437601], [-77.39176246936515, 34.585230388769475], [-77.39111787088257, 34.58527721686329], [-77.39083821821498, 34.58575695971079], [-77.39070395789761, 34.586077570426205], [-77.3903296380663, 34.58631814394479], [-77.3897165424749, 34.58640853149599], [-77.38954151908624, 34.58645503631501], [-77.38927776865575, 34.58656738861211], [-77.38875338627619, 34.5866618898651], [-77.38813635518088, 34.586632128631784], [-77.38796529450875, 34.58659596449525], [-77.38789674555005, 34.5865562282595], [-77.38778727785672, 34.58649814711818], [-77.38717728524028, 34.58606622913767], [-77.38697504729922, 34.585984035357555], [-77.38638931023877, 34.58540589030301], [-77.38605966469757, 34.58540413769959], [-77.38572985893495, 34.58509650790465], [-77.38600886384012, 34.58464621417234], [-77.38596048404696, 34.5838273575759], [-77.38576565026658, 34.58339308121752], [-77.38481381424859, 34.58206542982736], [-77.38473733539645, 34.58192550364058], [-77.38465093861869, 34.58185552219001], [-77.38385612677443, 34.58130392105799], [-77.38342427621653, 34.58118322532604], [-77.38323790975275, 34.581104682559854], [-77.3828929765206, 34.58078242747825], [-77.38244998440298, 34.58056744562078], [-77.38241152712183, 34.580521532922965], [-77.38233508059332, 34.58049110268907], [-77.38229005941896, 34.580325208678055], [-77.3821768931191, 34.579959190457856], [-77.38223207725166, 34.579656819915996], [-77.38227241480485, 34.57945938567754], [-77.38247041507995, 34.57877333198924], [-77.38304235159643, 34.57720430545782], [-77.38302420727149, 34.576995241979446], [-77.3829302524705, 34.576676175667316], [-77.38278829926682, 34.575816777235985], [-77.38245121944635, 34.57538676737584], [-77.38244627939247, 34.575380293117234], [-77.381912294125, 34.57518892151793], [-77.38166328353323, 34.575136466061515], [-77.38135213597236, 34.57520274179963], [-77.38021711575814, 34.57556159091277], [-77.38008716777182, 34.57559160607606], [-77.37996344595825, 34.57560485817303], [-77.37861580010343, 34.5758195812461], [-77.37851112879422, 34.57571617694472], [-77.37828333375897, 34.575734856690595], [-77.37794232220013, 34.576029458449845], [-77.3756507050559, 34.57667423010634], [-77.3753585383269, 34.577490793866005], [-77.37517875818511, 34.57793237942071], [-77.37424974419575, 34.57825979971255], [-77.37422539637784, 34.57874100332888], [-77.37378218159678, 34.57840710809101], [-77.37371624882005, 34.5784077096849], [-77.37369763930307, 34.57833934776575], [-77.37299433173233, 34.57789346310068], [-77.37272503605931, 34.57792051250703], [-77.37220630396277, 34.57789837501237], [-77.37185579555174, 34.57775557815871], [-77.37152226710413, 34.5776916569579], [-77.37141839483078, 34.57758234632774], [-77.37093702771854, 34.57736915778998], [-77.37063048433015, 34.57728511181371], [-77.37052722384074, 34.57720914449584], [-77.3703108697215, 34.57712901231064], [-77.36957644238352, 34.576672590095036], [-77.36905489605753, 34.57614928034427], [-77.36819725896814, 34.57573522370534], [-77.3680687670589, 34.575118544128614], [-77.36679019853798, 34.57519535628827], [-77.36590347407814, 34.574726428781624], [-77.36562531604497, 34.57470715202193], [-77.36489071439183, 34.57451320194738], [-77.36432768728608, 34.57426550797895], [-77.36347009088905, 34.57394381200734], [-77.3629204401037, 34.57309869787401], [-77.36355044828983, 34.5721693943529], [-77.36380595359823, 34.57127296563722], [-77.36426545942587, 34.56957795454821], [-77.36424200249873, 34.56951195262474], [-77.36417209378604, 34.569351912013616], [-77.3637848602614, 34.56872867225807], [-77.36364436803946, 34.568638948867545], [-77.36354247898589, 34.5683342881041], [-77.36339419153121, 34.567935818934444], [-77.36306449604463, 34.567649627925555], [-77.36275490155707, 34.567582848979], [-77.36236985842488, 34.56723420995447], [-77.36220614404905, 34.56700034315662], [-77.36196744585466, 34.56661297537623], [-77.36155755980296, 34.566502064174955], [-77.36128404963799, 34.56642890077119], [-77.36117962351985, 34.566410810195705], [-77.361032522298, 34.56641914127975], [-77.3599643484863, 34.56634292215652], [-77.35960391886297, 34.566142469298526], [-77.35929331487522, 34.5654649569159], [-77.35881637054112, 34.56544098364149], [-77.35868964974837, 34.56535337316285], [-77.35803615649728, 34.565319066495945], [-77.35802852256205, 34.56531886256088], [-77.358017013686, 34.56532599384026], [-77.35738479200084, 34.56556012966276], [-77.35724038331556, 34.565730634014], [-77.35645363044893, 34.565538648115655], [-77.35645340185218, 34.56553778864245], [-77.35645257422944, 34.56553700290641], [-77.35645173979734, 34.56553802164283], [-77.35645092420346, 34.56553903766582], [-77.35566446656196, 34.56587488794374], [-77.35531339795332, 34.565702773333086], [-77.35518085497729, 34.56539420838946], [-77.35487703511356, 34.565031137531925], [-77.35444410588588, 34.56536154776631], [-77.35378442987762, 34.56540185307261], [-77.35330109425438, 34.56522788032673], [-77.35248518958475, 34.56523054909927], [-77.35137461904269, 34.56494949436663], [-77.35038306886455, 34.56471412461462], [-77.35014986798463, 34.56454777057941], [-77.34917762147468, 34.564237338921316], [-77.34794828956507, 34.564389978614585], [-77.34699818834814, 34.564611111259076], [-77.3464001556244, 34.56423372928792], [-77.34584650019475, 34.5636686417395], [-77.34542335689949, 34.56318075018815], [-77.3450063500599, 34.56254118567514], [-77.3439465809241, 34.56224376620815], [-77.3438488928096, 34.56131110563059], [-77.34377568402077, 34.560649571526284], [-77.3437575195942, 34.56057278103963], [-77.34378714319976, 34.56050134935405], [-77.34384952456334, 34.56042520557023], [-77.3439267426086, 34.56046518843544], [-77.34672731258436, 34.55985016255342], [-77.34700146078589, 34.5597600359977], [-77.34810801731939, 34.55774162864951], [-77.34857920116009, 34.556704481201166], [-77.34891976384418, 34.556433721200186], [-77.34923856289585, 34.555809939316454], [-77.34915805033502, 34.5554201496409], [-77.34907231403014, 34.555144318580105], [-77.34923602174429, 34.55491929030711], [-77.34880136737719, 34.55486659196139], [-77.34861818405687, 34.55479518966474], [-77.34849005035107, 34.554619407388444], [-77.34850617456995, 34.55453467069323], [-77.34846537429635, 34.55444016621236], [-77.34835240194896, 34.554311976780966], [-77.34834702783016, 34.554244898957975], [-77.34793201409788, 34.55418062265356], [-77.34784655013078, 34.55420235818898], [-77.34780732280285, 34.55417050376116], [-77.34777832833142, 34.554149759075585], [-77.34739089423938, 34.554002842298395], [-77.34727250977747, 34.55385968910666], [-77.34721555629085, 34.55374109252425], [-77.34713524573955, 34.553713543609064], [-77.34707416431307, 34.55364263919148], [-77.34695979848217, 34.553707512828474], [-77.34689055502935, 34.553787854214406], [-77.34667596363917, 34.553884161317775], [-77.34640650252456, 34.55393503304977], [-77.34628166314073, 34.55395632147133], [-77.34615808006467, 34.553970098998455], [-77.34600159717232, 34.55391575311846], [-77.34571110054968, 34.55382554727271], [-77.3455054165753, 34.55356460384333], [-77.34540778239018, 34.55351154589766], [-77.3454119755076, 34.553451047384065], [-77.3453525411643, 34.55327467383047], [-77.34526632969585, 34.5531966243626], [-77.3451603933579, 34.55308022259686], [-77.34513197577277, 34.55306158634341], [-77.34512746215759, 34.55306033070108], [-77.345124427002, 34.55305946201426], [-77.34495602037117, 34.55294868011718], [-77.34493090731712, 34.55293814670336], [-77.34485655133305, 34.55290325561573], [-77.3447639805107, 34.55286970815298], [-77.34474860019331, 34.55286424791889], [-77.34473636695719, 34.55286111370126], [-77.34467839796841, 34.5528456523751], [-77.34454077723936, 34.55282959301866], [-77.3444366497576, 34.55285889398677], [-77.34434366930812, 34.552863897134316], [-77.3442094530701, 34.55278942249727], [-77.34417271777139, 34.55270994801558], [-77.34415104217433, 34.552703955843306], [-77.34409612611638, 34.55268647288362], [-77.34405358008622, 34.55267378152121], [-77.34404034009417, 34.55267601021244], [-77.34395565743728, 34.55266357272051], [-77.34388851617881, 34.55262842269065], [-77.34381185336615, 34.55260751438444], [-77.34359467667227, 34.55254828321283], [-77.34357736206792, 34.55254356097103], [-77.34356591159202, 34.552538468352296], [-77.34349784659273, 34.55251949880521], [-77.34346838382079, 34.55251115629546], [-77.34345922221318, 34.55251226063614], [-77.34337025834913, 34.55250974574421], [-77.34327957510561, 34.55252749020243], [-77.34317335901909, 34.55253501665146], [-77.34286667185509, 34.55259850308873], [-77.34278071028176, 34.552535727445466], [-77.34241178754124, 34.5524877132516], [-77.34238906704564, 34.5524928861778], [-77.34236570113924, 34.5524947917899], [-77.3423522519984, 34.552482184482365], [-77.34189663703557, 34.55236694239408], [-77.34160514958562, 34.552434558865016], [-77.34141567003468, 34.552499692899445], [-77.34094562076795, 34.55260367264728], [-77.34081621269951, 34.55259347026187], [-77.3405075693975, 34.55245235914712], [-77.3404267536108, 34.55245614130746], [-77.34014940624468, 34.552380179622205], [-77.3400355758041, 34.55239320898269], [-77.33999266402643, 34.55235918131776], [-77.33995857490186, 34.55233683676279], [-77.33996397824448, 34.55228992767664], [-77.339857959163, 34.551978400679175], [-77.3397218829925, 34.551881241976545], [-77.33947268443411, 34.55178716417642], [-77.33946054018921, 34.55167401098921], [-77.33939440795695, 34.55160503858421], [-77.339379177109, 34.551563303766926], [-77.33927023603493, 34.55153167094505], [-77.33921762240071, 34.55149742964649], [-77.33917420713438, 34.55147037328279], [-77.33917350111204, 34.55147017939199], [-77.33914048558206, 34.55143511069189], [-77.3391254707798, 34.551424860126296], [-77.33910563805205, 34.55141903023915], [-77.33908776254925, 34.55141465838168], [-77.33907669322446, 34.55141184838975], [-77.33899749940294, 34.55142260296034], [-77.33889006740878, 34.55138882826232], [-77.3388809477047, 34.55138727091754], [-77.33883059024518, 34.5513973819217], [-77.33875306826896, 34.55145213774], [-77.33871998109123, 34.55153569772422], [-77.3387209826311, 34.55168492087309], [-77.33847957696594, 34.551765134727205], [-77.3382753412927, 34.5517275317783], [-77.33808656536343, 34.55178162625762], [-77.33783784484817, 34.551662557232554], [-77.33778975024882, 34.551612175142836], [-77.33769735691996, 34.551633798387506], [-77.33754330902657, 34.551608493560565], [-77.33730631311168, 34.55156530353993], [-77.33719058782356, 34.55158272426645], [-77.33714730310308, 34.55151704182188], [-77.33701014480239, 34.55147788078142], [-77.33691834070976, 34.55136419187714], [-77.33685709581849, 34.551352315874176], [-77.33679907976683, 34.55132229859237], [-77.33683517471933, 34.55126380206411], [-77.33671377757831, 34.55097805847531], [-77.33650798705699, 34.55087452236424], [-77.3361469259829, 34.55076664766685], [-77.33580619446083, 34.55069923437885], [-77.33562652793967, 34.55067546442592], [-77.33536365232436, 34.5506812873713], [-77.3351894105007, 34.55068310709946], [-77.33496937248503, 34.55075264969884], [-77.33485352187861, 34.55079598840473], [-77.33457447040095, 34.55085081783027], [-77.33446802622422, 34.55085673958061], [-77.33424157978693, 34.55091737358109], [-77.33418001392897, 34.550929725123254], [-77.33387650833488, 34.5507632552004], [-77.33382950636216, 34.55074640099142], [-77.33379371983018, 34.550656673386406], [-77.33337935025688, 34.550604231041035], [-77.33331898507336, 34.55035377832341], [-77.33329717496636, 34.55018373670807], [-77.33330691476702, 34.55011069818115], [-77.33311686793009, 34.549950580961415], [-77.33305256435365, 34.54990244981547], [-77.33303862111386, 34.549896648702784], [-77.33302624332607, 34.54989058832634], [-77.33300160705267, 34.549894470289836], [-77.33263356451828, 34.54989301051945], [-77.33232286491628, 34.54995536948365], [-77.33223908554405, 34.54997297847839], [-77.33216657256143, 34.54998477925855], [-77.33184495403685, 34.550037943726956], [-77.33165789564374, 34.55010294922133], [-77.3315475984756, 34.55018026884313], [-77.33144416910619, 34.5503893926051], [-77.33134032505862, 34.55057618651461], [-77.33074805781276, 34.550723369994074], [-77.33068241396359, 34.55075271943202], [-77.33065027139116, 34.55076160101828], [-77.33062240647335, 34.5507588465015], [-77.32987293725928, 34.55042079421545], [-77.32983626110796, 34.550388146368384], [-77.32983683562419, 34.55036472209512], [-77.32983118298775, 34.55033830394304], [-77.32954821136383, 34.54991657826621], [-77.32967269809538, 34.54976431523756], [-77.32979315780526, 34.54963655556129], [-77.32984722178256, 34.54960086787629], [-77.32979462334279, 34.549454366871736], [-77.32970719230767, 34.549404097285915], [-77.32950669176422, 34.54928593461395], [-77.32939858476017, 34.549271262811125], [-77.3293552397421, 34.54920987153893], [-77.32911773381365, 34.5491283999481], [-77.32899911010128, 34.549090757875916], [-77.32882792410258, 34.54904085051261], [-77.32872751557282, 34.54902511887049], [-77.3286594905006, 34.54902260701464], [-77.32847674354971, 34.549003196266256], [-77.32833591535223, 34.54898916013466], [-77.32833573257523, 34.54898914822383], [-77.32818141187238, 34.54898524129076], [-77.32807282757622, 34.548985393734114], [-77.32794258861813, 34.54901168717126], [-77.32780222394504, 34.549030705263014], [-77.32754947162438, 34.54903305373332], [-77.32740558152469, 34.5490004647991], [-77.32724247446808, 34.548971411887564], [-77.32716214555083, 34.54880559113526], [-77.32715238370848, 34.54879204032574], [-77.32710538857033, 34.54859246345209], [-77.32710259372406, 34.54851300254418], [-77.32709965620042, 34.548309989386745], [-77.32695735370501, 34.54822179628689], [-77.32678507851656, 34.54813751129398], [-77.32635763074303, 34.548192732712465], [-77.3259988766688, 34.54817915149579], [-77.325787475671, 34.548141307604894], [-77.32560601296862, 34.54818976775132], [-77.3254088278835, 34.54818514748318], [-77.32521344359783, 34.548187741897884], [-77.32506815826522, 34.54820268447037], [-77.32500864459071, 34.548120862312246], [-77.32489972949614, 34.54808875270445], [-77.32482417814666, 34.5480439269174], [-77.32468729060918, 34.54800810360402], [-77.32457641005921, 34.5479381609782], [-77.32443625780465, 34.547842452936095], [-77.32431711349876, 34.54780543747397], [-77.32415726496319, 34.54775357693593], [-77.32402324423045, 34.54754506440109], [-77.32402240941089, 34.547528142288655], [-77.32366150312288, 34.547393159551966], [-77.32360688902659, 34.547377321012675], [-77.32344835142278, 34.5473658164495], [-77.32326981093973, 34.54735366076535], [-77.32298131409674, 34.54736779658044], [-77.32287700740697, 34.54736181806726], [-77.32252796258112, 34.54722802943839], [-77.32214168519364, 34.54706393796763], [-77.32214583564237, 34.54703439975258], [-77.32219298428792, 34.54681175473575], [-77.32216217720003, 34.54678074032793], [-77.32210650195893, 34.54673095203597], [-77.32209500008192, 34.546710890723645], [-77.32207757504631, 34.546705930407626], [-77.3219777906279, 34.546678876705315], [-77.32177671614272, 34.546626750693726], [-77.32174036664199, 34.546617121231705], [-77.3217166704658, 34.54661188010129], [-77.32144561727485, 34.54659871562927], [-77.32132553454177, 34.54654872853102], [-77.3212459237044, 34.54650842744586], [-77.32102909113138, 34.54648935188479], [-77.32096150954649, 34.54648220572377], [-77.32093449216953, 34.54648159133719], [-77.32088915514727, 34.54648118049405], [-77.32054102608144, 34.5465182574768], [-77.32026692215595, 34.54652485935119], [-77.31990516110699, 34.54649885727427], [-77.31975610149175, 34.54650560423007], [-77.3196718316594, 34.54649227032334], [-77.31946725746579, 34.54646891830047], [-77.31936442435132, 34.546465675637656], [-77.31906204984368, 34.5464707874621], [-77.31897169055361, 34.54647096713965], [-77.31883034674809, 34.546472297890546], [-77.31874858697142, 34.546466527200074], [-77.31858033335516, 34.54641736698494], [-77.31849032190173, 34.54642052650111], [-77.31845007920907, 34.546370226989275], [-77.31841637708979, 34.546270695167664], [-77.31835691278118, 34.5461387986546], [-77.31832282976595, 34.546064592077315], [-77.31822566787929, 34.54591284030264], [-77.31819997516206, 34.54589338879779], [-77.3180725153277, 34.54577128691204], [-77.3178752272754, 34.54571836815267], [-77.3178116368519, 34.545710834912576], [-77.31776699977775, 34.545706010472465], [-77.31752180613742, 34.545705131313824], [-77.31742687163268, 34.545660365540854], [-77.31742023128923, 34.54565947440614], [-77.31741520637993, 34.545658899463106], [-77.31732236599154, 34.54564723131281], [-77.31725452438604, 34.545665948489514], [-77.31722367504868, 34.54567028174735], [-77.31720397600947, 34.545680244126444], [-77.3171727897881, 34.54572775293945], [-77.3171380374919, 34.545824259048274], [-77.3171183690346, 34.545886987235846], [-77.3170211614671, 34.54593570968971], [-77.3169183390026, 34.546038004388926], [-77.31664088366831, 34.54614047917936], [-77.31662986655142, 34.54614594832426], [-77.31662360920971, 34.54614698024653], [-77.31661404733688, 34.546150248383185], [-77.31636270016072, 34.54626426844076], [-77.31630522668364, 34.54631109569121], [-77.31626381411466, 34.54634032687146], [-77.3162255436201, 34.546380093466965], [-77.31618173907194, 34.54642457262355], [-77.31613795301011, 34.54645752649337], [-77.31601842012772, 34.54659346910294], [-77.31601572715552, 34.54659748708235], [-77.31599906395319, 34.54661526285815], [-77.3158836057056, 34.54673886863705], [-77.31585952840368, 34.546764521830866], [-77.315823007983, 34.546804049926706], [-77.31575106200387, 34.54688031067117], [-77.31570887532959, 34.54693958708714], [-77.31563846003667, 34.54701888828028], [-77.31554609500633, 34.54710874623211], [-77.3154199460131, 34.54725031092316], [-77.31537538040891, 34.54727404123756], [-77.315364862138, 34.54730299381811], [-77.31529605291887, 34.54738811626131], [-77.3152485256769, 34.54746069748382], [-77.31521841500987, 34.5474733737318], [-77.31511771507081, 34.547583299657376], [-77.31507820014623, 34.54762618229518], [-77.31501698193671, 34.547692209454546], [-77.31498707332045, 34.5477244674437], [-77.31492179586172, 34.54779844721159], [-77.31485940214284, 34.54786520826083], [-77.31476521348966, 34.547970625592164], [-77.31461433880146, 34.548120226204425], [-77.3145754608451, 34.54815079692921], [-77.31445700176428, 34.548317394783346], [-77.31436088618571, 34.5484264227117], [-77.31428385032629, 34.54848150406552], [-77.3142114427544, 34.54855886250198], [-77.31409578476553, 34.54863834942779], [-77.31404557032792, 34.5487165153737], [-77.31395496920544, 34.548818207557595], [-77.3138099015968, 34.548939501692175], [-77.31375700993638, 34.54897023463426], [-77.31374102916868, 34.54900505975136], [-77.31358957656018, 34.54913712914437], [-77.31340930549153, 34.5492796639796], [-77.31338852959513, 34.54928765258889], [-77.3133878097385, 34.54930059344358], [-77.31324764312168, 34.54941947797994], [-77.31321455042202, 34.549447878684425], [-77.31321174135076, 34.549449991082746], [-77.31320893421633, 34.54945281624289], [-77.31307674704041, 34.54959007211694], [-77.31306562280803, 34.54962726689833], [-77.3130064858851, 34.54971453263014], [-77.31293951534829, 34.54981428907512], [-77.31290882110795, 34.549858995717486], [-77.3128422443045, 34.55001535565437], [-77.31260158581458, 34.55023795114083], [-77.31250355856498, 34.550347286177995], [-77.31243005969921, 34.55041736254988], [-77.31219396237397, 34.55069338508589], [-77.31217901400026, 34.55070998724408], [-77.31194642957509, 34.55097642651562], [-77.3118924253663, 34.55104340944436], [-77.31179514730907, 34.551140839240084], [-77.3116769674914, 34.551259927093135], [-77.3115902629845, 34.55139312962106], [-77.311173721847, 34.55157699353285], [-77.31112077288381, 34.55166135441111], [-77.31099763319003, 34.55166268498415], [-77.31089613960819, 34.551679878668125], [-77.31075316775002, 34.55173075750959], [-77.31060156049895, 34.55180907567879], [-77.31050007445205, 34.551855932828374], [-77.31020377297354, 34.552028450563284], [-77.31001247082395, 34.55211533430267], [-77.30965696595102, 34.55228437764755], [-77.30952914985298, 34.55237682146036], [-77.3094095503013, 34.55240933936545], [-77.3090744983886, 34.55257448339945], [-77.30899369579079, 34.55261291633958], [-77.308614700622, 34.55281659391447], [-77.30851006908455, 34.552874253596116], [-77.30834460160196, 34.55296239891683], [-77.30802362072977, 34.553134216308514], [-77.3078183446747, 34.553287591794636], [-77.30757168402207, 34.553410987849325], [-77.30702509397025, 34.55362613211613], [-77.30700676638926, 34.55363273028638], [-77.30688055042474, 34.553662177418076], [-77.30633271254476, 34.55380131215721], [-77.30623457760558, 34.5538481414866], [-77.30591982263928, 34.55399417741426], [-77.30544035611877, 34.554227406814135], [-77.30525438740145, 34.554269879550475], [-77.30490155164819, 34.55428136803179], [-77.30465259440317, 34.55433195038222], [-77.30450267018556, 34.55440062679548], [-77.30436384476491, 34.55451301673608], [-77.30431110336968, 34.55455576864665], [-77.30425254731901, 34.55464606427246], [-77.30417571872707, 34.55473827678716], [-77.30385203010306, 34.55498001156009], [-77.30374542388918, 34.55502558804558], [-77.3034406192594, 34.55513512695262], [-77.30315702980877, 34.55523588771245], [-77.30305936153744, 34.55529240652653], [-77.3026630049614, 34.555492155052185], [-77.30266199514928, 34.55549230276248], [-77.3026598815259, 34.555493279278075], [-77.3022645063976, 34.5556973067994], [-77.30213834917424, 34.55573350068346], [-77.30186836900361, 34.55584490079927], [-77.30181861540403, 34.555857503914325], [-77.30152894163575, 34.55593356143406], [-77.30147325039708, 34.5559492237897], [-77.3013497760758, 34.55600099907238], [-77.30096471613032, 34.55615563005392], [-77.3006805189801, 34.55626347187693], [-77.3004226088992, 34.556388472314225], [-77.30028366142481, 34.55644134266915], [-77.29991508528927, 34.55662024910439], [-77.29989581271076, 34.556628772649105], [-77.29988645060834, 34.55663410869812], [-77.2998618187905, 34.55664311586063], [-77.2993474491061, 34.55685856547665], [-77.29909207677257, 34.557017373175626], [-77.29883519333525, 34.557105947522246], [-77.2986968154413, 34.55712733153018], [-77.29843952854395, 34.55723556693431], [-77.29830009312472, 34.55729910551335], [-77.29825413940864, 34.55731981415457], [-77.29814428063105, 34.55736391941053], [-77.29797588911124, 34.55743272755436], [-77.29790343595795, 34.557468048715904], [-77.2977089337628, 34.557551142938664], [-77.29750705733264, 34.557625130561505], [-77.29742882989576, 34.55766315314858], [-77.29728357640218, 34.55773220058093], [-77.29716902730064, 34.55778505290542], [-77.29710970697523, 34.557823267950525], [-77.2969298128849, 34.557894058867575], [-77.29671306752614, 34.55799124358106], [-77.29662399000873, 34.55801646221437], [-77.29647883971558, 34.558092446407166], [-77.29631602604127, 34.55817615496504], [-77.2961210653105, 34.5582683867264], [-77.29592021697529, 34.558308865300525], [-77.29555825868665, 34.55846930302935], [-77.2955365027233, 34.55848053932734], [-77.29552338682157, 34.55848469526918], [-77.29548845384724, 34.55850085583628], [-77.29527427343967, 34.55860125564857], [-77.29516004945178, 34.55874903906156], [-77.29514383826296, 34.55877355109205], [-77.29514327391433, 34.55878590401101], [-77.29512258029703, 34.55882855907802], [-77.29504980793888, 34.558988837912246], [-77.29492223453443, 34.559050140933564], [-77.29479168949524, 34.559111557050514], [-77.29458271529288, 34.559185338695954], [-77.2943269738691, 34.559262024961654], [-77.29422445583472, 34.559214832414526], [-77.29402341951001, 34.55923420873923], [-77.2939345982009, 34.559249299649], [-77.29377878414353, 34.55933654693388], [-77.2937572887817, 34.55935302359367], [-77.29357732209411, 34.55946262525273], [-77.2935362597161, 34.559488463792604], [-77.29353134158622, 34.5594914152568], [-77.2935242537217, 34.559495454304766], [-77.29329256917391, 34.55962355850785], [-77.29313857855412, 34.559699766855374], [-77.2930449423846, 34.559751387924436], [-77.2929022767706, 34.559829460992376], [-77.29274063312248, 34.559922140969064], [-77.2925677445131, 34.56001584299103], [-77.2923433808267, 34.56011515963117], [-77.29230282849937, 34.56013524910536], [-77.29223489878285, 34.56016997509324], [-77.29205738430093, 34.560264141492794], [-77.29194567930554, 34.56032705922178], [-77.29161077666014, 34.560504281894715], [-77.29157380131622, 34.56052548531004], [-77.29154787190714, 34.560543338656274], [-77.29143420574272, 34.560599631824516], [-77.29132895078621, 34.56065466671205], [-77.29115036554042, 34.560746826617], [-77.29106578368756, 34.560774923886186], [-77.29094251658364, 34.560844913784145], [-77.29059511215118, 34.561042557509246], [-77.29035442181464, 34.561192813904356], [-77.28990901877236, 34.56142614186163], [-77.28953281794992, 34.561597152761955], [-77.28902451175703, 34.561807874427664], [-77.28871194648383, 34.56197027730896], [-77.28842181629761, 34.562108316042746], [-77.28789160520972, 34.56232074367307], [-77.2877631537843, 34.56235578140924], [-77.28710712447565, 34.56264177583454], [-77.28707164981604, 34.5626546561932], [-77.28704703955373, 34.56266655102247], [-77.2868547207239, 34.562752047831], [-77.28631423277344, 34.562995705249975], [-77.2862508238484, 34.56302492016733], [-77.28617225994934, 34.563060587100075], [-77.28560095325884, 34.563303329679044], [-77.28543028360612, 34.56338284157018], [-77.28520956489474, 34.56347720746997], [-77.28502032277001, 34.56354867560583], [-77.28489467220231, 34.56360323246941], [-77.28461028623914, 34.563717620807964], [-77.28420072283365, 34.56389019850783], [-77.28419958934619, 34.56389078622715], [-77.2841961431655, 34.56389224505827], [-77.28378969885301, 34.56407691172216], [-77.28348888794362, 34.564195540092626], [-77.2833797585023, 34.564241589127846], [-77.28322722405018, 34.564305957204034], [-77.28306804152605, 34.564370768559115], [-77.28288894520922, 34.56445162166949], [-77.2828246983306, 34.56448293239447], [-77.28277210712662, 34.56450588399798], [-77.28257214129282, 34.56458690316482], [-77.2823386211886, 34.56470676154118], [-77.28233725262851, 34.56470740055905], [-77.28212699840557, 34.564848173047736], [-77.28170710700412, 34.565122504780696], [-77.28170010837766, 34.56512567550145], [-77.28169492521802, 34.565128286304486], [-77.28168718636813, 34.56513522400089], [-77.28138891722159, 34.56533991829167], [-77.28129127302442, 34.5654192335449], [-77.28109241400148, 34.56555229578087], [-77.28090138318271, 34.56572964042449], [-77.28087633072411, 34.565770989795894], [-77.2808161172177, 34.56582913538883], [-77.28063709968373, 34.56598786491399], [-77.28054213704823, 34.56606729833484], [-77.28039866148357, 34.566204802101545], [-77.28024599686213, 34.56634577555231], [-77.28018507366339, 34.56640689919843], [-77.28016372857147, 34.566422014252936], [-77.28013793990249, 34.566450744630444], [-77.2799171901375, 34.56663831439853], [-77.27980052922322, 34.56672206388636], [-77.27973028779289, 34.566787242289266], [-77.27965915260347, 34.566853711216204], [-77.27961937150795, 34.56688953037035], [-77.27949439379447, 34.56699900753217], [-77.27942096522935, 34.56704165886079], [-77.27940687678165, 34.56706956004753], [-77.27935329539287, 34.56711224697453], [-77.27913699340341, 34.56728402537644], [-77.27904303122025, 34.567362704959976], [-77.2789202406265, 34.567458259852536], [-77.27886849338284, 34.567498599169284], [-77.27884591326197, 34.56751598025668], [-77.27878981902796, 34.56755918955129], [-77.27863650804218, 34.56765832913561], [-77.27859999499248, 34.56771317240921], [-77.27849980371641, 34.567799540915345], [-77.27835394906725, 34.56792950904034], [-77.27829934936629, 34.56801563802354], [-77.27810898723446, 34.56814593062429], [-77.27805140948676, 34.568186272980284], [-77.27787836115832, 34.56829840204644], [-77.27759553496173, 34.568505852703765], [-77.27750263228741, 34.56856962557525], [-77.27747232342587, 34.56859446236243], [-77.27737748458335, 34.56868578520171], [-77.27708113064725, 34.568903724937826], [-77.2770183879197, 34.56900291178496], [-77.27691308622953, 34.569129028959985], [-77.2767628163515, 34.56927779822357], [-77.27661232841601, 34.569442339620586], [-77.27654151625632, 34.569505777422066], [-77.27638985589545, 34.56960327766392], [-77.27623347541797, 34.56975113454677], [-77.27608053903234, 34.56987188770905], [-77.27601749074844, 34.56992928802153], [-77.27584295122992, 34.57005397612745], [-77.27559279613982, 34.57020876416215], [-77.27548202956325, 34.570296191258], [-77.27518488462853, 34.570503166805985], [-77.27517914141194, 34.570508057426764], [-77.2751614906798, 34.570520261460466], [-77.27489520220729, 34.570721410951634], [-77.27479913610392, 34.57081727958285], [-77.2747321821257, 34.57094426685096], [-77.27451024706855, 34.571131719612865], [-77.27447823049447, 34.57115997677341], [-77.27446019515313, 34.571173019978225], [-77.2744218919966, 34.57119763408308], [-77.27419866975501, 34.571373673633474], [-77.27406697896492, 34.57148049490405], [-77.27397479293039, 34.57159174607777], [-77.27375247419198, 34.5717830870456], [-77.27372922256174, 34.57180811352658], [-77.27370904469085, 34.57181934790812], [-77.27367124866856, 34.57184875880442], [-77.27346013924515, 34.57202263255516], [-77.27331906049557, 34.57212969995998], [-77.27316800707305, 34.57223533979343], [-77.27299590436365, 34.57235094545763], [-77.27290864386741, 34.572421883294794], [-77.2728801827196, 34.57244838510655], [-77.27284888763552, 34.572489079633904], [-77.27273777934371, 34.57259851747668], [-77.27262246789783, 34.57266379626318], [-77.2725157658339, 34.572729664894375], [-77.27232867376968, 34.57283706737235], [-77.27228276648744, 34.57285104276073], [-77.27226515544757, 34.572871379089236], [-77.27222680744052, 34.57290587366365], [-77.27209257067969, 34.57301048654289], [-77.27201179675002, 34.57308713160567], [-77.27190852429948, 34.57317539950746], [-77.27188844120994, 34.57319526918694], [-77.27184702112987, 34.57323188273639], [-77.2717896818802, 34.573305339733324], [-77.2717243502386, 34.573340199274874], [-77.27160531054194, 34.57343417248723], [-77.27152823391205, 34.57349437901224], [-77.27148835009994, 34.57351732087225], [-77.27142974453164, 34.57357193585549], [-77.27133688399903, 34.573652797945705], [-77.27124918245886, 34.57372173411753], [-77.27123656011338, 34.57373319576737], [-77.27114919510858, 34.5738144730752], [-77.27105413588399, 34.57389637516039], [-77.27103175898695, 34.573952763725146], [-77.27096601452214, 34.57398015791394], [-77.27087858930074, 34.57403789365756], [-77.27085495364238, 34.57405669899994], [-77.27076493907342, 34.57412992883508], [-77.27071761723104, 34.57416373646415], [-77.27059888166325, 34.57431084229397], [-77.270484550876, 34.57438108194857], [-77.27037606822975, 34.57444128199908], [-77.27017794622844, 34.574592068016194], [-77.27017782810866, 34.574592637007974], [-77.27017713746419, 34.57459296136332], [-77.27017619784532, 34.57459348044246], [-77.26998989738163, 34.57475503779891], [-77.26993016383068, 34.57480883404129], [-77.26979643068007, 34.574911577229415], [-77.26977807777071, 34.57492558895339], [-77.26965136535273, 34.57502258330564], [-77.26959866492173, 34.57506429360984], [-77.26946059947882, 34.57517515939237], [-77.26940405576167, 34.57521981770178], [-77.2693749760144, 34.57523652135478], [-77.26933650648604, 34.575274730852655], [-77.26921398896808, 34.57537938178848], [-77.26912726833788, 34.57545271385077], [-77.26901486865599, 34.57553089464943], [-77.26890522014435, 34.57562001688968], [-77.26884718376208, 34.57566636066805], [-77.26882681141223, 34.575692246671636], [-77.26874729407807, 34.57575228098302], [-77.26863399006923, 34.57584936215437], [-77.26859715513575, 34.57588236992303], [-77.26852829507266, 34.575944935102704], [-77.2684561088053, 34.5760197648557], [-77.26837384533658, 34.57610047961944], [-77.26824791653631, 34.576163211060035], [-77.26805328961234, 34.57630659407639], [-77.26804825525419, 34.576310547190424], [-77.26804696734541, 34.57631309925177], [-77.2680398952165, 34.576317700717304], [-77.26786025458046, 34.57647564877293], [-77.2677972056263, 34.57652647490516], [-77.26765961968925, 34.57663777995506], [-77.26758100730962, 34.57674514279494], [-77.26747845517622, 34.57679330180129], [-77.26730728414616, 34.576932946764174], [-77.26728569189899, 34.57695047155821], [-77.26727492484696, 34.5769567426897], [-77.2672590290441, 34.57697155677011], [-77.26714133372766, 34.57706407179057], [-77.26709173854364, 34.57710658317069], [-77.2670060973475, 34.57717127144094], [-77.26699127492823, 34.57718153807847], [-77.26695920557387, 34.5772045226924], [-77.26688845258987, 34.5772543952315], [-77.26678174296087, 34.577334061122656], [-77.26671827745947, 34.577384306214306], [-77.26669395052961, 34.57741001961166], [-77.26661362482848, 34.57747115451979], [-77.26650044919775, 34.5775665343515], [-77.26646271192377, 34.57759987688437], [-77.26632626243537, 34.57774022684506], [-77.26623375686134, 34.57781753986336], [-77.26612419283158, 34.57788912227937], [-77.26608720030204, 34.57792384864215], [-77.26601994163791, 34.57798684980239], [-77.26600769591323, 34.57803543025338], [-77.26595024078978, 34.5780630245409], [-77.26585715388413, 34.57813352483387], [-77.26575669414558, 34.578219500496346], [-77.2657167061736, 34.57824821403385], [-77.26557745269278, 34.5783886991332], [-77.26547945851362, 34.5784652238422], [-77.26528867961942, 34.57862818998812], [-77.26525111572735, 34.578682933794965], [-77.26519461949344, 34.57870544191502], [-77.26510714037553, 34.57878310065858], [-77.26501046597976, 34.578870273311324], [-77.26498278113307, 34.57889749808087], [-77.26494332740592, 34.57894126130415], [-77.26487778944022, 34.579007074779334], [-77.26483772347592, 34.5790452536998], [-77.264759318588, 34.57911559108828], [-77.26458130017609, 34.57926057633759], [-77.26453058611057, 34.5793332694228], [-77.26446317781766, 34.579369370017474], [-77.26432728073866, 34.579491654153045], [-77.26427951156347, 34.57953463637997], [-77.2642560092796, 34.5795473416355], [-77.26408646012366, 34.57969155591476], [-77.26402992979382, 34.57976522785569], [-77.26388216752956, 34.579889866005814], [-77.26380059823829, 34.57998285809215], [-77.26372284540156, 34.58002539721555], [-77.26356983734784, 34.5801558620722], [-77.26353482256756, 34.58018679050014], [-77.26351780494198, 34.58019628283165], [-77.26333352059868, 34.58033637366374], [-77.26326781829651, 34.58041228749321], [-77.26310514472269, 34.58054832219159], [-77.26301416216215, 34.58062800328858], [-77.26298236483551, 34.58068129873239], [-77.26283523375373, 34.58077489079893], [-77.26277491359095, 34.58082541434548], [-77.26274098226322, 34.58084218286108], [-77.26258111145586, 34.58098166920911], [-77.2625400680379, 34.58106204681086], [-77.26243435788328, 34.58116697920098], [-77.26232306879308, 34.58128064522951], [-77.26227056670689, 34.58136271637291], [-77.2620868274368, 34.58149772972234], [-77.26202176980607, 34.581549785329265], [-77.26188096649585, 34.581673454385125], [-77.2618308662284, 34.58171326231577], [-77.26173007031893, 34.58179817637898], [-77.26157689040451, 34.58192895075849], [-77.26151402459507, 34.58200434559798], [-77.26132187830358, 34.582144557454406], [-77.2612858291504, 34.58217140177779], [-77.26111713725777, 34.582308605402616], [-77.26105359948666, 34.58235911972683], [-77.26091577096028, 34.58247056796556], [-77.26078842594308, 34.58257392600812], [-77.26073697708424, 34.58262774340377], [-77.26055295618055, 34.58279106844462], [-77.2603459725702, 34.582937238025096], [-77.26028003054546, 34.583005264499306], [-77.26013432493234, 34.58313064565087], [-77.26003065401716, 34.58322131255653], [-77.25998702922723, 34.58327524954989], [-77.25982418438934, 34.58339432287631], [-77.25958068219569, 34.58357110134088], [-77.25950949893732, 34.58365164472033], [-77.25935668594009, 34.58378928837805], [-77.25926855817261, 34.58386835547057], [-77.25923260811359, 34.583918783255726], [-77.25903746685933, 34.58408584035624], [-77.25883159950487, 34.58421938597442], [-77.25856741795192, 34.58445227696522], [-77.25848823463457, 34.58451396053057], [-77.25846391977652, 34.58454963354762], [-77.25835233680351, 34.58463731042728], [-77.25827319829463, 34.58470863733424], [-77.25824407049447, 34.58473041614171], [-77.25807608204158, 34.584861953507115], [-77.25799475985792, 34.58494646628095], [-77.25783531385325, 34.585093849214715], [-77.25775588326297, 34.585163337364385], [-77.25773241220077, 34.58521355907173], [-77.25759493273156, 34.58530122068179], [-77.25749332864143, 34.585378344572234], [-77.25733377419132, 34.585516276083254], [-77.25706096843713, 34.58575123152636], [-77.2569948002164, 34.58581044974864], [-77.25697073294029, 34.5858506554382], [-77.25681436888777, 34.58601087581046], [-77.25662958205893, 34.5862045062334], [-77.25657340631976, 34.58624862465525], [-77.25637389444128, 34.58637592474668], [-77.25621144389724, 34.58648988372411], [-77.25614837369739, 34.58649407159341], [-77.25594185840771, 34.58653770544125], [-77.25567866750623, 34.58658931530163], [-77.25555521443118, 34.586563493912344], [-77.2554595063305, 34.58663228781145], [-77.25513479769097, 34.58683991299272], [-77.25513071001427, 34.58684207720046], [-77.25513016319742, 34.586842724294904], [-77.25502619663104, 34.58706952062251], [-77.25512893932851, 34.58720950987283], [-77.25502277296948, 34.587404498635166], [-77.25480686618394, 34.58752359761865], [-77.25471801129277, 34.58773078193095], [-77.2545939009641, 34.587978175553054], [-77.25435767341352, 34.58812751844071], [-77.25415501085949, 34.588308994373165], [-77.25409485309183, 34.588410231932656], [-77.25406797966434, 34.58852714909142], [-77.2538747387965, 34.58878133912549], [-77.25384611510214, 34.58886199270131], [-77.25379194627347, 34.58893893140363], [-77.25364944630329, 34.58893350989217], [-77.25325399477708, 34.58911775274099], [-77.25304992901721, 34.58927065178683], [-77.2528179884243, 34.58938724976001], [-77.25266741781306, 34.589476207254876], [-77.2525913008502, 34.58951427447407], [-77.25245814893145, 34.58962166229793], [-77.25239877603599, 34.58967168575015], [-77.25237810709432, 34.589689099819395], [-77.25233863068384, 34.58972388930915], [-77.25213364919125, 34.5899055234228], [-77.2520282219057, 34.58999940250892], [-77.25190844436139, 34.59012346234959], [-77.25168265844917, 34.59033688846004], [-77.2516774502547, 34.590344717210264], [-77.25152009214553, 34.59056422691959], [-77.2512994232619, 34.590665790152855], [-77.2509664856956, 34.590903289509676], [-77.25088532919132, 34.59095478426783], [-77.25084047942467, 34.590982055004574], [-77.25078371339201, 34.59104084722924], [-77.25054117537107, 34.59130598970262], [-77.25040451681694, 34.59141906734249], [-77.25016650569665, 34.591630053991864], [-77.25015994967335, 34.59163548023793], [-77.25014256211718, 34.591648281959706], [-77.24990069206042, 34.59185073464795], [-77.24976216571321, 34.59192772803164], [-77.24950538165879, 34.59212442807018], [-77.24936440820807, 34.5922312587794], [-77.2492808547207, 34.59227326340547], [-77.2489652132874, 34.592533511317775], [-77.24885152958956, 34.59271079487298], [-77.248483419544, 34.59300420446493], [-77.2483688126258, 34.59314412022843], [-77.24823522228974, 34.59319886390246], [-77.24804247325049, 34.5933490312152], [-77.24784855759427, 34.59351226739291], [-77.2477705911631, 34.593568346070576], [-77.24751879447408, 34.593732709090794], [-77.24742720107098, 34.593794813994776], [-77.24719463426244, 34.59399432271401], [-77.24705979719425, 34.59412535271041], [-77.24689029867365, 34.594335373769006], [-77.24688112485788, 34.59444097314673], [-77.2467688536997, 34.59452390530334], [-77.2464668666278, 34.59479618835513], [-77.24640572331901, 34.5948582490804], [-77.24638678968577, 34.594873378026065], [-77.24632981038633, 34.59491257514696], [-77.24599505922508, 34.595150312247654], [-77.24580136461778, 34.595298604519414], [-77.24578617653981, 34.595308105592544], [-77.24559371597786, 34.5954506679414], [-77.24551407116714, 34.595511643750186], [-77.24530108926774, 34.595665039919425], [-77.24523351758175, 34.59572521370868], [-77.2451878672062, 34.59574701742492], [-77.24511765308813, 34.59579596622096], [-77.24491415448537, 34.59593572522113], [-77.2447798072553, 34.59604140090095], [-77.24463533601401, 34.59614943030504], [-77.24436645743167, 34.59633108060369], [-77.24424832179663, 34.59642649035476], [-77.24411286011622, 34.59657961108715], [-77.24408375089484, 34.59673697241436], [-77.24382771314146, 34.596951311957646], [-77.24375685551475, 34.597022907651876], [-77.2437180161926, 34.597069009970184], [-77.24362332630133, 34.59708233229439], [-77.24322785968955, 34.59745257131148], [-77.24302410443173, 34.597766498479324], [-77.24275976607652, 34.59788703285296], [-77.2425475572218, 34.59799996974083], [-77.24222104220851, 34.59828744010967], [-77.24222606934634, 34.598316323586005], [-77.24220226311616, 34.59835019635447], [-77.24212505268905, 34.598376387208475], [-77.24143944067461, 34.598725676743996], [-77.241196027317, 34.59876987024799], [-77.24093425092008, 34.59906299728941], [-77.24086006012269, 34.5991283982424], [-77.24084275549436, 34.599149998412976], [-77.24082306984738, 34.59917803971601], [-77.24063412909088, 34.5993692296917], [-77.24051604809824, 34.59947977127243], [-77.24034844826771, 34.599582386590185], [-77.24026070162324, 34.59975589118503], [-77.24021012877279, 34.59980715989623], [-77.24017991588624, 34.59983815589646], [-77.23997311779601, 34.600024152503885], [-77.23981928792213, 34.60017475145965], [-77.23963567895237, 34.60035718539717], [-77.23956515183963, 34.600463345296646], [-77.23921440741915, 34.60079450297149], [-77.23913073555632, 34.60087703978748], [-77.23910280808343, 34.60089825053774], [-77.23906109478715, 34.6009395975], [-77.23868094533904, 34.601336345215785], [-77.238423459642, 34.60156267766497], [-77.23806507518687, 34.601759144047335], [-77.23795942408617, 34.601807293630266], [-77.23781255823513, 34.60189779965657], [-77.237542041144, 34.60209341064756], [-77.23743532056486, 34.602180845557456], [-77.23713466114584, 34.6023884277053], [-77.23712146551742, 34.60240020768823], [-77.23687477637094, 34.60260800219249], [-77.23676697554431, 34.60271875717666], [-77.23651607083097, 34.60299412643955], [-77.23652352139567, 34.60305165913751], [-77.23643849807503, 34.60308396774822], [-77.23631316667544, 34.60319364813192], [-77.2359895992214, 34.60334205324075], [-77.2359435718363, 34.60347728199228], [-77.23581896992344, 34.60362235416703], [-77.23554787622194, 34.60391743278602], [-77.23537228742643, 34.60410774860228], [-77.2349844476451, 34.604344355683104], [-77.23492861828784, 34.60437049256655], [-77.23485858637666, 34.60440089368587], [-77.23440760932918, 34.60456443351789], [-77.23431211492573, 34.604762686947836], [-77.23410087892128, 34.604949001150324], [-77.23397966838614, 34.60504533325572], [-77.23382054498231, 34.60519527279268], [-77.2337123661564, 34.6052608150364], [-77.23351947779256, 34.605380014359625], [-77.2332838576339, 34.60553704965141], [-77.23316433749596, 34.605614871317634], [-77.23285531680796, 34.60581325691438], [-77.23284770987195, 34.60582557528746], [-77.23282652834655, 34.605844165117915], [-77.23261468262275, 34.60604287233101], [-77.23250402806909, 34.606158190093566], [-77.23215881532423, 34.6064016206025], [-77.23200456566572, 34.606371305548414], [-77.23199662398497, 34.60646547498393], [-77.23199808943734, 34.60652149390802], [-77.23163086943481, 34.60690797870547], [-77.23157316750759, 34.60704784395139], [-77.23151387705988, 34.607134428336764], [-77.23147664722272, 34.60721656236972], [-77.23135008854584, 34.60735718534854], [-77.23079608137016, 34.60770594434123], [-77.23073909225953, 34.60778034108078], [-77.23065630532035, 34.607801677134894], [-77.23058886546991, 34.60783639084091], [-77.2303756260699, 34.60798734472968], [-77.23025430189612, 34.60810150236412], [-77.2300560650911, 34.608197810800974], [-77.22990414627314, 34.60844745419727], [-77.22977236045078, 34.60864678457198], [-77.22955179455948, 34.60879145574886], [-77.22947986142331, 34.60893309972037], [-77.22945666654041, 34.60909323406487], [-77.2292849842151, 34.609211559339116], [-77.22896066063731, 34.60938605445833], [-77.2288429097215, 34.609475742046264], [-77.22881189193808, 34.609513717772266], [-77.22876879993981, 34.6095664760183], [-77.22858681020053, 34.60973163643243], [-77.22850609550682, 34.60983357039735], [-77.22835960064671, 34.60994938649126], [-77.22807859682382, 34.61011072304116], [-77.22782246696724, 34.610287856454924], [-77.22771135386802, 34.61036959174309], [-77.22766741777974, 34.61040239578244], [-77.22753595871683, 34.61053380731131], [-77.22744678251652, 34.610584392709754], [-77.22725514699611, 34.61069309816012], [-77.22703374789427, 34.6106927784346], [-77.22689860796613, 34.610776811661324], [-77.22690397010716, 34.610815130170906], [-77.22691864771366, 34.610920016065585], [-77.2270448396728, 34.610946115510146], [-77.22692524378053, 34.61105708161817], [-77.22671934493843, 34.611234022990715], [-77.22618691124616, 34.61153210961453], [-77.22597222816282, 34.61152419397702], [-77.22598296030444, 34.611647265014675], [-77.22595778525432, 34.61172011084808], [-77.22578251110345, 34.61201290197718], [-77.22569503972204, 34.6120959001332], [-77.22554607192978, 34.61224147692196], [-77.22542823356363, 34.61235520689645], [-77.22522536549434, 34.61253018897372], [-77.22504555774759, 34.61267224799256], [-77.22464255614098, 34.61294679731156], [-77.22463162545097, 34.61295468428234], [-77.22462738633459, 34.61295771117153], [-77.22461601628723, 34.61296828282183], [-77.22410251405907, 34.61338427783762], [-77.22385237172904, 34.613583202554175], [-77.22356267640833, 34.61381302367349], [-77.22318775217335, 34.61412278053615], [-77.22307967096896, 34.614210760577784], [-77.2230209470174, 34.61424161851433], [-77.22286900885486, 34.61434487759779], [-77.22265506271891, 34.614490503327644], [-77.2225712328297, 34.61450731369863], [-77.22240503946165, 34.61451841064586], [-77.2221281546329, 34.61454947530771], [-77.2220373648737, 34.61459845459119], [-77.2219831458547, 34.614631045271445], [-77.221815129011, 34.61472949038515], [-77.22177578688013, 34.61475375899605], [-77.22166052474508, 34.614841253528716], [-77.22165874089904, 34.614919111520194], [-77.22165538233395, 34.61507652830973], [-77.22172533089886, 34.61513998494298], [-77.22159709447362, 34.61552178792342], [-77.22156915493063, 34.61554108277352], [-77.2214993876519, 34.61559184379204], [-77.22126374487479, 34.615752649415924], [-77.22118100283524, 34.61580911350126], [-77.22096749541947, 34.615964938272235], [-77.22077454287495, 34.616105009851864], [-77.22054323717605, 34.61631679459339], [-77.22044014687017, 34.61639466058172], [-77.2204032171166, 34.616432167093116], [-77.22030819230352, 34.61647695555152], [-77.22011076760688, 34.616604332245345], [-77.21996647471946, 34.616701123281466], [-77.21981114505006, 34.616816353151535], [-77.21976553727879, 34.61685111325776], [-77.21965160519143, 34.61694049674069], [-77.21956124299773, 34.61699811660344], [-77.21953409228982, 34.617030155869436], [-77.2194588926035, 34.61708967396654], [-77.21933760710962, 34.617250320292285], [-77.21918196388951, 34.61731820171238], [-77.21893236498084, 34.61752767684933], [-77.21879602757356, 34.61763236541684], [-77.21874298604429, 34.61767472430559], [-77.21866816859313, 34.6177527331521], [-77.21844399733112, 34.61797669772114], [-77.21831965107276, 34.6181126534792], [-77.2181253340188, 34.61832308333243], [-77.21811625904273, 34.61834264534632], [-77.21808986416892, 34.61835810341456], [-77.2178945995127, 34.61855044712421], [-77.21775957782171, 34.618682842715806], [-77.21750902574041, 34.61892090352602], [-77.21755413063903, 34.618994919685136], [-77.21742341471588, 34.61904129773546], [-77.21727003617059, 34.61914374530144], [-77.21719928660781, 34.61920257460776], [-77.21702778841134, 34.61934684761366], [-77.21693832390815, 34.61941764352847], [-77.21681778299072, 34.619546738866006], [-77.21672525941568, 34.619636496360584], [-77.21668343234758, 34.61969801628855], [-77.21647192801088, 34.61985216725681], [-77.21627984790022, 34.61999648844921], [-77.21602988954157, 34.62020870747173], [-77.21594887222338, 34.620282214570274], [-77.21590732328978, 34.62032259751288], [-77.21577730439807, 34.620424977263696], [-77.21550015565887, 34.620617884248176], [-77.21528660242194, 34.62070126107237], [-77.2150309238373, 34.6208579504582], [-77.214887155311, 34.62100334781563], [-77.21478557375212, 34.62113304443665], [-77.21471745800194, 34.62123661119479], [-77.21445550311677, 34.621578333439686], [-77.21426941740533, 34.621736008682994], [-77.2140392021543, 34.62194827321017], [-77.21396697726416, 34.62201110202568], [-77.2138677715693, 34.622119192119555], [-77.21352849341753, 34.62244782310981], [-77.21333932313453, 34.62264070161178], [-77.21312570200841, 34.62288736373954], [-77.21267191190356, 34.6232237665667], [-77.21257467329173, 34.6232755067892], [-77.21250330570261, 34.62330955050113], [-77.21247292808509, 34.62337539829232], [-77.21206803540701, 34.62374652181261], [-77.21188656757357, 34.62397842352867], [-77.21178244610289, 34.62419532110657], [-77.21157175500886, 34.62444700644407], [-77.21140633506013, 34.62463696640161], [-77.21127828968108, 34.62475237783397], [-77.21112025910138, 34.62498314657665], [-77.21104112368344, 34.62507947278287], [-77.21097643142029, 34.6251413865841], [-77.2107352500185, 34.625380575140014], [-77.2106277474011, 34.62548873255443], [-77.21059603010677, 34.62551566461217], [-77.21060386497915, 34.62554354470942], [-77.21054177385155, 34.62574706109448], [-77.21053302608325, 34.62577957398501], [-77.21049903353274, 34.62595007539068], [-77.21053087425355, 34.62598188373879], [-77.21052741708408, 34.62630680203367], [-77.21068208408991, 34.626465200870015], [-77.21078632163642, 34.62694468395273], [-77.21044925376762, 34.627960306595696], [-77.20951838257227, 34.62825869444923], [-77.20946315997372, 34.62971332697178], [-77.2040505934093, 34.62971189008062], [-77.2032343137744, 34.630192546485674], [-77.20318391688988, 34.62978652216151], [-77.20300734751149, 34.62962938495624], [-77.19959731108865, 34.628188333967195], [-77.20086458482137, 34.62568886802794], [-77.20393241509595, 34.62479190149185], [-77.20578325850795, 34.62516432535273], [-77.20669483908546, 34.62461959927269], [-77.2077962046701, 34.62452168619745], [-77.2079772855323, 34.624445541333756], [-77.20842981606324, 34.6244017002595], [-77.2087179173908, 34.62436755751158], [-77.2088357311039, 34.624367869775824], [-77.20932247360642, 34.62432730076186], [-77.20971979634842, 34.62405524304247], [-77.20974485603514, 34.624034282282096], [-77.2097447315074, 34.62402804266575], [-77.2100712942084, 34.623678399273246], [-77.21015665903087, 34.62359546235812], [-77.21028235380973, 34.62345971064959], [-77.21040209594591, 34.62331514754579], [-77.21054392388032, 34.623154701706795], [-77.2108095568797, 34.62302010942153], [-77.21086385823259, 34.62294430421137], [-77.21096804602846, 34.622836015402406], [-77.21108894769316, 34.622726409656465], [-77.21114410645649, 34.62266019584431], [-77.21132509857408, 34.62250938914006], [-77.21136012437657, 34.6224831643289], [-77.21153372238851, 34.62234928232679], [-77.2117444303279, 34.62230684476091], [-77.21195103595142, 34.622149434453306], [-77.21201036154676, 34.622115803084384], [-77.21200141619741, 34.622091469816525], [-77.21199846002557, 34.622083428406775], [-77.21202021299895, 34.62201293430574], [-77.21203250393276, 34.62188702936368], [-77.21206040819021, 34.62186044769535], [-77.21212981632092, 34.62179666413332], [-77.21225748854432, 34.6216781061053], [-77.21230475925918, 34.62164407368031], [-77.21240810112084, 34.62156292777443], [-77.21256805234225, 34.62142919620024], [-77.21264690906511, 34.621367023038296], [-77.21279552457526, 34.6212344028589], [-77.21281602778087, 34.62121310804442], [-77.21287548058588, 34.6211575476884], [-77.21302466673083, 34.621045563792464], [-77.21314374431351, 34.62100332006266], [-77.21329635753122, 34.62086347130735], [-77.21340407366701, 34.62078820747419], [-77.21343001347887, 34.62074865475224], [-77.21351721765365, 34.62059722000325], [-77.21354942082023, 34.620564008732], [-77.21363582583928, 34.620489434144694], [-77.21375732915413, 34.62038231597254], [-77.21396197294825, 34.6202472510479], [-77.2141104830977, 34.620136973510796], [-77.21416438604503, 34.62008693135516], [-77.2143025272436, 34.620006086691845], [-77.21438524865584, 34.61995466331236], [-77.21443772804821, 34.619927146094426], [-77.2146003017583, 34.61981722596627], [-77.21478159223886, 34.61971863046639], [-77.21500255948978, 34.61951757398807], [-77.215013899847, 34.619486574339064], [-77.215104278283, 34.619272758245], [-77.21534205693487, 34.61916208064288], [-77.2157074552768, 34.61889818275938], [-77.21575342317945, 34.61887053606503], [-77.2157856061842, 34.61885521939701], [-77.21581568148926, 34.61881941955637], [-77.21605979591214, 34.61864119725264], [-77.21615117559459, 34.61856687927585], [-77.21631245611017, 34.61842547398791], [-77.21633862574203, 34.6184048852312], [-77.2164251168165, 34.61831420494378], [-77.21651910630732, 34.61823668998825], [-77.2165559377785, 34.618175262269105], [-77.21675392124403, 34.617988981930004], [-77.21686826642568, 34.61788980092793], [-77.21687702840435, 34.617880865349534], [-77.21689867804635, 34.617863422246444], [-77.21701022909464, 34.61777354571869], [-77.21706107700714, 34.6177325776819], [-77.21720421534135, 34.61760895269767], [-77.21724842472234, 34.61757049426703], [-77.21726500337385, 34.61755798803076], [-77.21729103581124, 34.617533025547495], [-77.21750384530301, 34.61734117129997], [-77.21761406137219, 34.61723826815198], [-77.21773780946558, 34.617123969087764], [-77.21779512042576, 34.617070590726065], [-77.21796726440954, 34.61693534577293], [-77.2179944026493, 34.61691912759913], [-77.21802707959613, 34.61689042685887], [-77.21826766512704, 34.6166944548791], [-77.21836644688815, 34.61659260577614], [-77.21849795945268, 34.6164769617883], [-77.21854978988392, 34.616426962046845], [-77.21871889624707, 34.61628424424315], [-77.21874181583756, 34.61626904414961], [-77.21876021247101, 34.61626199249561], [-77.21876488509521, 34.61624716102528], [-77.21906870372486, 34.61605067443205], [-77.21916783402246, 34.61599054854103], [-77.21921317710353, 34.615944243567895], [-77.2193505931523, 34.61586983574125], [-77.21938199767203, 34.61585232850674], [-77.2194059874253, 34.6158416298578], [-77.21961575651062, 34.61576266552478], [-77.2196457121252, 34.61575819584784], [-77.2198698917516, 34.6156772602378], [-77.2199048548027, 34.61565999555879], [-77.21993414362733, 34.61564765778653], [-77.22008650700107, 34.61549284946669], [-77.22014766892275, 34.61542883801884], [-77.22024499536496, 34.615326274322356], [-77.2203581262529, 34.615209775811664], [-77.22042619253631, 34.615137544498154], [-77.22056483477178, 34.61499041740628], [-77.22071535993734, 34.614783007477], [-77.22072622969516, 34.61476748058073], [-77.22073453243256, 34.61475435234162], [-77.22099078111677, 34.61455268860153], [-77.22109098031251, 34.61441396452512], [-77.22119774429805, 34.61433334998145], [-77.22148455843875, 34.61415500769308], [-77.22151653314012, 34.61413506306538], [-77.22154005836634, 34.61412469807274], [-77.22176100594623, 34.61402457634503], [-77.22197641977152, 34.61392347091122], [-77.22200160784728, 34.61390912010506], [-77.222081442278, 34.61369608189539], [-77.22207484621465, 34.61353984034217], [-77.22213270050169, 34.61346444783363], [-77.22217198215809, 34.61340318404889], [-77.2223547523065, 34.61326974713354], [-77.22237341703514, 34.613253644685486], [-77.22238137307356, 34.61324840068052], [-77.22257108399418, 34.613100752821495], [-77.2226390073863, 34.61303306045214], [-77.22282559082632, 34.61289168965542], [-77.22292234205169, 34.61281974906101], [-77.2229464187826, 34.61277717722591], [-77.22305054777387, 34.61272870919588], [-77.22316658616927, 34.61264430567794], [-77.22321556963348, 34.61260721812153], [-77.22333539972692, 34.61251732778589], [-77.22335775494449, 34.61250060296097], [-77.22336667047934, 34.61249356624306], [-77.22349713514498, 34.612393765969976], [-77.22372214421942, 34.61218899273544], [-77.22373139692515, 34.61217657915038], [-77.22373486770745, 34.612163643131765], [-77.2237659807768, 34.61214888432352], [-77.22392721583188, 34.61200602180452], [-77.22398250452729, 34.61196072162956], [-77.22411719035782, 34.61184628883338], [-77.22426462649383, 34.61174731212362], [-77.2244562810161, 34.61161865046172], [-77.2245458330932, 34.611570147348644], [-77.22456963348587, 34.611535708676755], [-77.22463716354298, 34.611479376399245], [-77.22484215346071, 34.61132154013325], [-77.22492753432071, 34.6112522433305], [-77.22503550575324, 34.61114669587815], [-77.22506393244964, 34.611103366082055], [-77.22511131171521, 34.61108699886051], [-77.22516897951822, 34.61104417814798], [-77.22521153360874, 34.61101179077975], [-77.22523028423792, 34.61099865682163], [-77.22531490445428, 34.6109393842958], [-77.22538236709991, 34.610892821018], [-77.22549468760852, 34.61081742436296], [-77.22552841706786, 34.61080059575309], [-77.22561821778413, 34.610745047130706], [-77.22572243909119, 34.61068398307909], [-77.22574739884095, 34.61066667329585], [-77.2258167348277, 34.610597893406606], [-77.22593135216074, 34.6105015867559], [-77.22599653429037, 34.61046993690326], [-77.22611938513181, 34.61034013001388], [-77.226264362243, 34.6102553957084], [-77.22647815974314, 34.61012460459686], [-77.22656365856912, 34.61007790129862], [-77.22660129237357, 34.610046307931015], [-77.22668711193359, 34.609977844839705], [-77.22686750735588, 34.609831638104474], [-77.22695234351691, 34.60976621739192], [-77.22715783560207, 34.60961526430751], [-77.227346894851, 34.60945975432004], [-77.22740615949547, 34.609402789229094], [-77.22754532620293, 34.609307551686], [-77.22756561268613, 34.60928185096335], [-77.2276012182555, 34.60918250309315], [-77.22767053574944, 34.6090902055703], [-77.22778168620667, 34.608961064890565], [-77.22792469638507, 34.60878015712862], [-77.2279449531769, 34.60873827010261], [-77.22798634454371, 34.608713690861514], [-77.22811396491792, 34.6085256708551], [-77.22812064002176, 34.608516454849486], [-77.22812490879356, 34.60850822771236], [-77.22822711297712, 34.60829966024457], [-77.22821652787962, 34.60828834221437], [-77.22823014466402, 34.60827311360168], [-77.22845862799282, 34.608071766783986], [-77.22896200374507, 34.60765737015555], [-77.2289778524734, 34.60764138034331], [-77.22898291407351, 34.60762787759203], [-77.22900852135979, 34.607626428400884], [-77.22944669182269, 34.60738301213722], [-77.22958047730592, 34.60732969583547], [-77.22974761971233, 34.60723076002055], [-77.22989826279954, 34.607127287676335], [-77.23025286217846, 34.60680707306486], [-77.2302607939374, 34.6067998916294], [-77.23026412632854, 34.606795314638056], [-77.23027869062047, 34.606783655095285], [-77.23050876611829, 34.606583776973], [-77.23064340610821, 34.60647527841395], [-77.2309140515483, 34.60638007251373], [-77.23107405248932, 34.606200942243284], [-77.23114504510583, 34.60610591244384], [-77.23126909462853, 34.60593672551191], [-77.23143353961746, 34.60586330064689], [-77.23172640793246, 34.605590227634124], [-77.2318009713198, 34.60553272874398], [-77.23181116585349, 34.60550813250343], [-77.23185981579691, 34.60547111857038], [-77.23217447989904, 34.605207564305616], [-77.2324503397422, 34.60508719621836], [-77.23262595143768, 34.60495176015623], [-77.2329274951946, 34.60470427351589], [-77.23298021824701, 34.60465763757473], [-77.2330064337615, 34.60463280296523], [-77.23309538441333, 34.60455219465252], [-77.23337817597482, 34.60430607151083], [-77.2334358702476, 34.60422222198163], [-77.2336026971254, 34.60408426568416], [-77.23374608903303, 34.60397593537815], [-77.23400825586496, 34.60379601174327], [-77.23440451116376, 34.603416875014716], [-77.23442758611789, 34.603357729214416], [-77.23449406921515, 34.603326480058854], [-77.23459769854827, 34.60325076066642], [-77.23490806683617, 34.60303734592668], [-77.23507095198485, 34.602937113466815], [-77.2351912297877, 34.602755124031646], [-77.23524064522336, 34.60271481919981], [-77.23526243637403, 34.60269516748774], [-77.2354707128175, 34.60249728478992], [-77.23563853599539, 34.60237232162013], [-77.23571287375455, 34.60228070484358], [-77.2358248890853, 34.60220939015843], [-77.235967981432, 34.60209709305211], [-77.23600710186184, 34.60206823006297], [-77.23602145356651, 34.60205554302822], [-77.23606399073948, 34.6020203589878], [-77.2362750051066, 34.601853678632416], [-77.23641149195342, 34.60174510010676], [-77.23651913550772, 34.60163725231403], [-77.23659128927963, 34.601576338120935], [-77.23677872829266, 34.601426331509245], [-77.23678354925337, 34.60142242519182], [-77.23678575290165, 34.60142062354875], [-77.23679173105012, 34.60141579633888], [-77.23705747523674, 34.60120834736458], [-77.23717477178683, 34.60110927658527], [-77.23751713594191, 34.60081582113469], [-77.23755968375922, 34.60079427808057], [-77.23758817412715, 34.60077883821882], [-77.23758541756989, 34.60075707838104], [-77.23792663676866, 34.60046330445855], [-77.23806408784074, 34.60034500803462], [-77.23811436763197, 34.60030160320923], [-77.23827010151535, 34.60016138649965], [-77.23830611991461, 34.60014347953345], [-77.23832270307301, 34.60011378867641], [-77.23854242334257, 34.59991136742919], [-77.23865936154968, 34.599800311542445], [-77.23877657977184, 34.59969415155993], [-77.23902578827568, 34.59948328979785], [-77.23903101868251, 34.599478534506005], [-77.2390333233187, 34.59947557802711], [-77.2390418961578, 34.599469733802174], [-77.2394219727367, 34.59916391135408], [-77.23956005928864, 34.59904888828869], [-77.2397706511545, 34.59886306392611], [-77.23980297235403, 34.5988454415434], [-77.23980716011778, 34.59883269154493], [-77.2398185411657, 34.598819225010644], [-77.24003072887396, 34.598614639230775], [-77.24011535630015, 34.59852445045278], [-77.24014528346169, 34.598492556638995], [-77.24026351223522, 34.598397313095674], [-77.24052341767423, 34.598208939977354], [-77.24055903062882, 34.598203220999025], [-77.24063388913498, 34.598190832277545], [-77.24061836892258, 34.59815250285823], [-77.24088363732159, 34.597974842643296], [-77.24091261760985, 34.59786036977215], [-77.2412665675823, 34.59776934942478], [-77.24140876868914, 34.59764434067317], [-77.24164105792244, 34.59766683698097], [-77.24176813556086, 34.59757320678868], [-77.2419618257071, 34.59747893338463], [-77.24197149904782, 34.59746237660434], [-77.2420322772169, 34.597358349742734], [-77.24205345138557, 34.59726861446928], [-77.24205374136494, 34.597247902839804], [-77.24206150373479, 34.59723891117574], [-77.24210429350076, 34.59712835016609], [-77.24214881323996, 34.5969878865628], [-77.24224275710904, 34.59690358727581], [-77.2421877979701, 34.59683034306964], [-77.24234547343463, 34.596505446069294], [-77.24252680239996, 34.59645462286751], [-77.24282422185748, 34.59627394160804], [-77.24284623330334, 34.59624412247718], [-77.24295144012967, 34.59617713649856], [-77.24318378729515, 34.59603504886291], [-77.24336933233766, 34.59591842162715], [-77.24369314493991, 34.59573214385702], [-77.24389398950281, 34.595619665062344], [-77.24410417969892, 34.59544040770941], [-77.24414140926618, 34.595403487528586], [-77.2441833532566, 34.595348645116374], [-77.24438592343255, 34.59518708006263], [-77.2444767116523, 34.59511442285017], [-77.24457542084654, 34.59496633725537], [-77.24478870638673, 34.59475466654637], [-77.2447915490827, 34.59474769268967], [-77.24479876023908, 34.59474353299311], [-77.24481460707051, 34.5947289344141], [-77.24518297932431, 34.594427947308944], [-77.24527259612978, 34.59431424673903], [-77.24541953646806, 34.594151144919145], [-77.2454903511185, 34.59404400519965], [-77.2456665411391, 34.593873936450386], [-77.24588242387631, 34.59373540900448], [-77.24595151408998, 34.59366071504931], [-77.24628649791646, 34.59345922535023], [-77.24629794704323, 34.59345233484987], [-77.24630109946236, 34.59345047852041], [-77.24630602818449, 34.593448179010046], [-77.24676866992493, 34.5932537452823], [-77.24679118245369, 34.59322906738938], [-77.24686348617789, 34.593025540987455], [-77.24703638599127, 34.5928380940627], [-77.24706130735578, 34.592812000170866], [-77.2470738718123, 34.59280644117631], [-77.24712464455982, 34.59277808105789], [-77.24744686235834, 34.59260015033055], [-77.24750593601021, 34.59255015893352], [-77.247556286265, 34.59237309652292], [-77.24778101314892, 34.59219979076922], [-77.24781750285146, 34.59216995872881], [-77.24784494035794, 34.59216016136916], [-77.24787552607847, 34.5921295947891], [-77.24814287654107, 34.591947956662935], [-77.2482279763268, 34.59187773866239], [-77.24843017618419, 34.59175008294758], [-77.24846014898453, 34.591737274727365], [-77.24846285270101, 34.591726026380044], [-77.24862455161056, 34.59157315775338], [-77.24870652208608, 34.59152100741012], [-77.24883319121841, 34.59140368658593], [-77.24895123230661, 34.591304608905645], [-77.24900766829121, 34.59125660641932], [-77.24916545013245, 34.591130212408665], [-77.24922897213973, 34.591090811626785], [-77.2492420460664, 34.59106692583893], [-77.24938893938142, 34.59093841517587], [-77.2494758149501, 34.59087458020948], [-77.24963976899778, 34.5907343295553], [-77.24973070145195, 34.5906589821056], [-77.2497737975128, 34.590623415869516], [-77.25004059526532, 34.59044771527266], [-77.25017453124144, 34.59032253928479], [-77.2505544143039, 34.59005160336667], [-77.25058547797232, 34.59003074881566], [-77.25060121533357, 34.59002052181397], [-77.25064255455119, 34.5899915044034], [-77.25101781443286, 34.589757985140665], [-77.25121734283306, 34.58959769633201], [-77.25131169860835, 34.58937358142781], [-77.25131556017179, 34.58936975887519], [-77.25131777759769, 34.58936747887418], [-77.25132750360999, 34.58935693556497], [-77.2514841328036, 34.58918679036949], [-77.2515457862412, 34.58915221588042], [-77.25168433637273, 34.58903620972896], [-77.2520381298955, 34.58873420222518], [-77.2520549056225, 34.588720961563055], [-77.25206193898966, 34.588714766001125], [-77.25208422388424, 34.588694584583514], [-77.25244717115928, 34.588400109584114], [-77.2526336420081, 34.588295186529216], [-77.25272512658378, 34.588109579966044], [-77.25276630007772, 34.588069960217446], [-77.25279134425128, 34.58804893402904], [-77.25302916944187, 34.587854985068724], [-77.25317574107345, 34.58773353773369], [-77.25327680036855, 34.58763881077357], [-77.25350576345996, 34.587449888808244], [-77.25353796714819, 34.587423701469795], [-77.25355158691173, 34.58741053751296], [-77.25360417338592, 34.58735693579855], [-77.25376479422094, 34.58720588798536], [-77.25390852648003, 34.58707072178259], [-77.25401134936786, 34.586989627386416], [-77.25424763492013, 34.5868047037311], [-77.25430166912838, 34.58676310952978], [-77.25433929067404, 34.58673719393803], [-77.25450954292076, 34.586619356948304], [-77.25458329822177, 34.586563311851286], [-77.25471250622508, 34.586471236782444], [-77.25487541229813, 34.58635063670561], [-77.25500545756452, 34.5862536942172], [-77.25511415669963, 34.58617119467153], [-77.25517918179705, 34.58613887846906], [-77.25523081659065, 34.58606915097553], [-77.25541056812116, 34.58592142173249], [-77.25549464035232, 34.58585232657363], [-77.25566596536463, 34.58570585491351], [-77.25573305726974, 34.58564876225515], [-77.25587143134791, 34.58553017591785], [-77.25593228551932, 34.58549114731366], [-77.25600576173825, 34.58541156177186], [-77.25613456162463, 34.58527139784388], [-77.25624490799191, 34.585205078454905], [-77.25641176903414, 34.58505754700858], [-77.25647925585402, 34.58500704621787], [-77.2566307681179, 34.58489099734336], [-77.25670379374961, 34.58484486142605], [-77.25683040524463, 34.58473992287], [-77.2568325559346, 34.58473716088858], [-77.25683891735348, 34.58473216551487], [-77.25696812143245, 34.584629995440835], [-77.25702681627843, 34.58458597918528], [-77.25717682645971, 34.584461415253735], [-77.25721809197371, 34.58442746838201], [-77.25724322879816, 34.584415977530696], [-77.25725394757782, 34.584393042841505], [-77.25739880153489, 34.58425955992609], [-77.25746669009756, 34.58419789421403], [-77.2575941860783, 34.58408192572436], [-77.25769922381416, 34.583980524747645], [-77.25776738537263, 34.58393011672287], [-77.257919489372, 34.58382663650694], [-77.25797442209425, 34.58378562598984], [-77.25801699173046, 34.583769863039706], [-77.25819896953257, 34.58365670975326], [-77.25825547894502, 34.583552961268715], [-77.25851940661443, 34.583368031583625], [-77.25855834081483, 34.583341125468436], [-77.25857261814697, 34.583331774690215], [-77.25860242853673, 34.583309879928706], [-77.25877205285684, 34.583180523599594], [-77.25883702371975, 34.58312738621323], [-77.25895362889763, 34.58302171128145], [-77.2589583267804, 34.5830175674195], [-77.25910301586116, 34.58291264770199], [-77.25932857162441, 34.58269758868813], [-77.25933150020934, 34.582694957475056], [-77.25933202187528, 34.582692676456816], [-77.25934008814234, 34.58268494124811], [-77.25949840587077, 34.58251203074595], [-77.25953551765136, 34.582475341484724], [-77.25960396650626, 34.58241074573611], [-77.25967787955891, 34.5823430277995], [-77.25978966397705, 34.582259669736246], [-77.26006984834973, 34.58205256118236], [-77.26007614095856, 34.58204654186548], [-77.26008091682563, 34.582044237521735], [-77.26008817333647, 34.58203936853689], [-77.26037811121645, 34.58183463224589], [-77.26049257220332, 34.581753113578], [-77.2605977028174, 34.58167116315734], [-77.26066204647103, 34.581621303271824], [-77.26069185959591, 34.581601735095326], [-77.26076509947988, 34.58153443109711], [-77.26087318422381, 34.58143438064661], [-77.26090601946939, 34.58140482953135], [-77.26099331256003, 34.58133929087888], [-77.26107095871451, 34.58128165730727], [-77.26118137990181, 34.58119082477994], [-77.26126368099597, 34.581124440789594], [-77.26131386860504, 34.58108341396738], [-77.26141902977858, 34.580996139977394], [-77.26144353490989, 34.58097578087189], [-77.26145514511488, 34.58096610569719], [-77.26148648170657, 34.58094159421549], [-77.2616523012926, 34.580812833427224], [-77.26171813152826, 34.5807617152599], [-77.26182077699538, 34.58066196412434], [-77.26183559294093, 34.5806472304543], [-77.26195305474063, 34.58054452786057], [-77.2620206602569, 34.580483207039265], [-77.26207415141178, 34.58043622019908], [-77.26221078440767, 34.58034295984274], [-77.26222279751997, 34.58033436616987], [-77.2622271365524, 34.58033042105999], [-77.26223335595091, 34.58032372885032], [-77.26239934516117, 34.580162766103896], [-77.26244880339317, 34.580112190185616], [-77.26253807029775, 34.58002589172604], [-77.26257514436014, 34.579990500896116], [-77.26269875508189, 34.57989618404979], [-77.26276890042888, 34.57983420663614], [-77.26295391774124, 34.57970707480934], [-77.26297971030243, 34.57969308074516], [-77.26298622265674, 34.579683129018925], [-77.26300859612435, 34.579665947644955], [-77.26317581370611, 34.579538875058276], [-77.26329861060344, 34.57947203348809], [-77.26341159348176, 34.57933129361593], [-77.26349439508715, 34.579251765358755], [-77.26354010862167, 34.579205640263254], [-77.26369616993608, 34.57904099421422], [-77.26370218531576, 34.579032441478326], [-77.26370885319415, 34.5790271031313], [-77.26372864148081, 34.57900871084753], [-77.2638899218917, 34.57885952724874], [-77.26396768101704, 34.5788176561577], [-77.26405622334141, 34.578722421429084], [-77.26421546687652, 34.578601477549306], [-77.2642758059187, 34.578545496715876], [-77.26446213673587, 34.57839182564473], [-77.26446872799667, 34.578388464336896], [-77.2644707072409, 34.57838588506263], [-77.26447768931662, 34.57838084373228], [-77.26467429758327, 34.57824268066659], [-77.26477112551447, 34.57817384524712], [-77.26487152052633, 34.57808947405552], [-77.26488640416497, 34.578065078007896], [-77.26492683884099, 34.57802889323599], [-77.2650039370343, 34.57795648775449], [-77.26504977445131, 34.57791939711396], [-77.26517283376977, 34.57781998803577], [-77.26524904051871, 34.57776800834431], [-77.26529971818269, 34.577744082427024], [-77.26534646418861, 34.57768799922333], [-77.26544368014889, 34.577612505268064], [-77.26554854126474, 34.57752798337568], [-77.26562981790475, 34.577449441187674], [-77.26565735418973, 34.577418707100186], [-77.26571665738506, 34.57736561950151], [-77.265776789196, 34.57731026594439], [-77.26581130060548, 34.57728223742356], [-77.26590330577923, 34.57720903030328], [-77.26600649852355, 34.57712723198105], [-77.26604514771796, 34.57709570266019], [-77.26613597143883, 34.5770248371651], [-77.266203314373, 34.57697366586713], [-77.26631120041003, 34.57688095741983], [-77.26640562026773, 34.57682498271596], [-77.26646115425707, 34.57677491602276], [-77.26656858540555, 34.576679070069915], [-77.26658244041597, 34.57666661996633], [-77.26658991573463, 34.57666028211856], [-77.26661115403174, 34.57664277818651], [-77.26677918498527, 34.576500005309356], [-77.26683430589975, 34.57645075830838], [-77.26694120686915, 34.576355773856285], [-77.26695621493782, 34.57634251096905], [-77.26696398292066, 34.576335752372565], [-77.26698731828898, 34.57631567081518], [-77.26708822074102, 34.57623505746564], [-77.26715776913827, 34.576179493536976], [-77.2673241477028, 34.57606632957629], [-77.26736945003552, 34.57603914999426], [-77.26740268702846, 34.57602411760732], [-77.26742801538381, 34.575989699346536], [-77.26766489716603, 34.57580906807311], [-77.26776254556185, 34.575731546195016], [-77.26786502774678, 34.5756422763422], [-77.26790774411276, 34.57559249575323], [-77.26794848180694, 34.575568307429656], [-77.268034148818, 34.575495774665015], [-77.26813825880173, 34.57540848482457], [-77.26819414454052, 34.57537934754683], [-77.26826298576943, 34.575309481178444], [-77.26833370865953, 34.57525370780023], [-77.26838882905975, 34.57521112207141], [-77.26845073897907, 34.575163855417934], [-77.26853306952371, 34.5751024093381], [-77.26859503549744, 34.57505736709545], [-77.2687229128416, 34.5749671891368], [-77.26873893613316, 34.57495689719122], [-77.26874385847671, 34.5749512345812], [-77.26875691328618, 34.57494073053781], [-77.26887750976684, 34.57484390901485], [-77.26893227439253, 34.574800243194275], [-77.26901269713771, 34.57473670416108], [-77.26907473587725, 34.574688175086834], [-77.26912864646668, 34.57464628776304], [-77.26914766518864, 34.57462948193334], [-77.26918941910287, 34.57459498717243], [-77.26927851568485, 34.574521935859515], [-77.26932038632053, 34.57448821298992], [-77.26941387835122, 34.57441474447738], [-77.26943008354483, 34.57440218603163], [-77.26952935350926, 34.57434545961249], [-77.26960914125395, 34.57431226207107], [-77.26974236820139, 34.57420630621671], [-77.26974233358627, 34.57420489989665], [-77.26974231483017, 34.57420413788415], [-77.26976655244775, 34.574153521649286], [-77.26979607846887, 34.57409129157767], [-77.26979907549175, 34.574089211242395], [-77.26990079394778, 34.57401860491644], [-77.26994610514524, 34.573985252523975], [-77.27005985332666, 34.573901460725175], [-77.27009128335959, 34.573878832234016], [-77.27010322617132, 34.57387004082322], [-77.27013081072346, 34.57384990162599], [-77.27020416380563, 34.57379551120658], [-77.27023609226953, 34.57377238273713], [-77.2703060237537, 34.573721801872786], [-77.27037856563348, 34.57366574952921], [-77.27047062129068, 34.57359461900471], [-77.27050596859574, 34.57357102632402], [-77.27051582542926, 34.57355870635949], [-77.27054373280622, 34.573536461737355], [-77.27065037800004, 34.57345145021989], [-77.27069812990999, 34.57341332888915], [-77.27082366773577, 34.573313157927394], [-77.27089404458277, 34.57325896985984], [-77.27091923794083, 34.5732369183942], [-77.27098327767396, 34.57318806978797], [-77.27105934889912, 34.57313009888011], [-77.27109141930814, 34.57310590963085], [-77.27117151237326, 34.57304197789274], [-77.27119422636379, 34.57302286788812], [-77.27120583505527, 34.57301282942864], [-77.27128209074408, 34.572946888369714], [-77.27131867698112, 34.572914817114864], [-77.2713746771417, 34.57285771347609], [-77.27142598829666, 34.5728054190445], [-77.27145469561567, 34.57277180032456], [-77.27153721331777, 34.572735481380974], [-77.27172227591086, 34.57271087517473], [-77.27174327913393, 34.57269985540569], [-77.27170794424354, 34.57259191534605], [-77.27175417801948, 34.57253181290818], [-77.27180104317335, 34.57248139990796], [-77.27183078584832, 34.57244908835466], [-77.27192019803151, 34.5723729324999], [-77.27192553447966, 34.57236905637022], [-77.27193927003685, 34.57235708377942], [-77.27201914743245, 34.57228801439352], [-77.27204579610454, 34.57226497139553], [-77.27209432602407, 34.57222065471261], [-77.27216464529107, 34.57215647975507], [-77.27220105119534, 34.57212119770675], [-77.27228513723608, 34.57204811718584], [-77.27229451751752, 34.572040025719765], [-77.27232125968722, 34.57201836171978], [-77.27239186812044, 34.571962308103146], [-77.27241895820812, 34.571940802127244], [-77.27246908811796, 34.57189652549316], [-77.2725416592528, 34.57183261297537], [-77.27257848782406, 34.57179968617258], [-77.27266561378713, 34.5717245221325], [-77.2727647770695, 34.57163677077682], [-77.27278850063456, 34.571616347552904], [-77.27283314927006, 34.57157640362051], [-77.2729097041337, 34.5715080404341], [-77.27294933112526, 34.57147231259728], [-77.27307107270691, 34.57136891141391], [-77.2731391511591, 34.571312537958576], [-77.27316434575349, 34.57129238752671], [-77.27321560993887, 34.57124938558731], [-77.27329299086657, 34.57118466499654], [-77.27332968306249, 34.57115339673366], [-77.27343741187067, 34.57107818209103], [-77.27353132410452, 34.57100413537734], [-77.27357995447113, 34.57097155169261], [-77.27367588871628, 34.570893207234846], [-77.27370755153107, 34.57086374646585], [-77.27372756832743, 34.570850074948176], [-77.27377410518791, 34.570811950553896], [-77.27392255022242, 34.570694892206966], [-77.27400297490504, 34.5706512971652], [-77.2740724249538, 34.57056090993981], [-77.27420720342954, 34.57043168083092], [-77.27428061263547, 34.570356157629206], [-77.27442532814231, 34.57021315637653], [-77.27454975349863, 34.5701113532658], [-77.27465062271389, 34.57002805016619], [-77.27469948649517, 34.5699990348302], [-77.274753379713, 34.56993832068862], [-77.27492029427899, 34.569780720479294], [-77.27501085710156, 34.5696912502961], [-77.27515771568827, 34.56956371145064], [-77.27519874873214, 34.56952976510024], [-77.27531467695802, 34.5694319373139], [-77.27538814848685, 34.56936962124941], [-77.27542829989696, 34.56934930790249], [-77.27546548825238, 34.56930405038961], [-77.2755791992869, 34.56921094601453], [-77.27566979163115, 34.56913261786771], [-77.27576929337398, 34.56905142036773], [-77.27579823220401, 34.56902487750372], [-77.27585183600462, 34.568975560460785], [-77.27591629374335, 34.568916321319435], [-77.27595046403142, 34.56888395953826], [-77.2760703472286, 34.568770793751106], [-77.27612972315087, 34.568714799223535], [-77.27614680378257, 34.56869876790076], [-77.27617776436921, 34.56866970926255], [-77.27630997762797, 34.56854652441565], [-77.27638080274235, 34.568481488223604], [-77.27646544366777, 34.56840607104402], [-77.27649365024322, 34.56838128980874], [-77.27650283990141, 34.568373244092236], [-77.27652094768807, 34.56835739036616], [-77.27662634286632, 34.5682651149008], [-77.27668023048942, 34.568218641212866], [-77.27675160433145, 34.56815712401724], [-77.27684214467857, 34.568077724524976], [-77.27686675271909, 34.56805594151554], [-77.27688335472817, 34.56804964273747], [-77.27688977113071, 34.568035461250744], [-77.2770529145717, 34.567892921614224], [-77.27712509876173, 34.567832970441884], [-77.27724385807522, 34.56773415417804], [-77.27738714306442, 34.567617892818], [-77.27756963567109, 34.56747226134384], [-77.27763269878967, 34.567422804916866], [-77.27767489301567, 34.56740483426115], [-77.27771919283974, 34.56735720394755], [-77.27792905475752, 34.567189136412814], [-77.27801772799909, 34.56710806712729], [-77.27819154546228, 34.56697409266054], [-77.27826806035665, 34.56692426657898], [-77.27842800118162, 34.56681578006217], [-77.27851571814246, 34.5667638937671], [-77.27865327822306, 34.56663971256992], [-77.27876473642453, 34.56654779069923], [-77.27880882069901, 34.56649730167301], [-77.2789577486825, 34.566393530838], [-77.279015069195, 34.56635214817695], [-77.27903693203062, 34.566333507963485], [-77.27918262115281, 34.56625761431799], [-77.27924414383898, 34.56622729339999], [-77.27936087628292, 34.56612328936893], [-77.27942503894727, 34.566059594391184], [-77.27946792340231, 34.56601386573846], [-77.2795344845321, 34.565942026666484], [-77.27956666631741, 34.56590378961015], [-77.27958791143907, 34.56587586898905], [-77.27966808693716, 34.565821926512584], [-77.27978902006903, 34.56572614598876], [-77.27983050704543, 34.56568884924918], [-77.2799160321958, 34.5656153120739], [-77.27997604900956, 34.5655639028442], [-77.28003092201433, 34.56552095161669], [-77.28007377916201, 34.56548653026785], [-77.28008635426019, 34.56547328060696], [-77.28017003908278, 34.565407850280046], [-77.28021317245836, 34.565365409286336], [-77.28028733864839, 34.565292433507715], [-77.28031897456876, 34.56525588720041], [-77.28034737902789, 34.56523699186915], [-77.28042068816802, 34.565166696697766], [-77.2804361322803, 34.56515163689895], [-77.28044394676036, 34.56514787081114], [-77.28053895240842, 34.56507879100227], [-77.28061377199559, 34.565043376907035], [-77.28076902100169, 34.56495482237073], [-77.28090760791122, 34.564830790643214], [-77.28094689137004, 34.56478443697988], [-77.28107913490025, 34.56462823646289], [-77.28109091210999, 34.56460952311796], [-77.2811045733354, 34.56459609922687], [-77.28114554784443, 34.56456631765211], [-77.28129997296716, 34.56444130233532], [-77.28136349814993, 34.56439526703771], [-77.28150952621849, 34.56429909199032], [-77.28152251845519, 34.56428992387194], [-77.28155871862523, 34.564264769005284], [-77.2816744118152, 34.56418402062438], [-77.28175840895318, 34.56412635167645], [-77.2818550560297, 34.56408231849552], [-77.28216953307867, 34.56391207989201], [-77.28251726488386, 34.56375801430006], [-77.28257983177674, 34.56373239495832], [-77.2826221433845, 34.563715447105395], [-77.28285080719652, 34.56362156067989], [-77.28296762081584, 34.563573953056384], [-77.28298984371558, 34.563564682200855], [-77.28302236560553, 34.563551579727616], [-77.28331097211444, 34.563434799435996], [-77.28339990914677, 34.56339464804768], [-77.2835099776322, 34.56334377008209], [-77.28369606946154, 34.56324964162187], [-77.28381054233701, 34.56320067185378], [-77.28405285645934, 34.563095677076525], [-77.2842210275304, 34.56301283469889], [-77.28440615762531, 34.56292193983029], [-77.28463196996671, 34.56280568634963], [-77.28482385232836, 34.56272446446166], [-77.28483704492857, 34.5627187453573], [-77.28485557871579, 34.56271112735584], [-77.28504187571578, 34.56264205662927], [-77.28537343086, 34.56250568541683], [-77.28545192213576, 34.56247243690598], [-77.2855101306188, 34.56244659772018], [-77.2858589337339, 34.562297702334845], [-77.28586212359068, 34.56229621905635], [-77.28586498507721, 34.562294750796546], [-77.2859013431652, 34.562277528473835], [-77.2862467889031, 34.56211320238488], [-77.28627276994494, 34.56210119857037], [-77.28630562382814, 34.56208667078084], [-77.28664658253189, 34.561911825626794], [-77.2866836659583, 34.56189558334148], [-77.28700861721302, 34.561752057149526], [-77.28709396885455, 34.56171485411933], [-77.28719402749778, 34.56166421288621], [-77.28750446556974, 34.561525883422654], [-77.28766341905225, 34.561454959128945], [-77.28774260039728, 34.5614215879272], [-77.28791469597672, 34.56134804894047], [-77.28817605170019, 34.561249097325195], [-77.28832426767127, 34.56119789077885], [-77.28841265729555, 34.561161559252575], [-77.28873466881842, 34.56101271175405], [-77.28913754309853, 34.56083236386164], [-77.28914502453216, 34.56082936732482], [-77.28914947155278, 34.56082794970121], [-77.28917498750023, 34.56081731388261], [-77.28948920372932, 34.560692743493846], [-77.28955499597411, 34.5606621437799], [-77.28963065245398, 34.5606249648136], [-77.28989032048628, 34.560489881826875], [-77.28996596136571, 34.5604529344637], [-77.29005260825491, 34.56041198076669], [-77.29031054327167, 34.56026595926551], [-77.29037723874629, 34.56023047629423], [-77.29041473793166, 34.56020925069892], [-77.29048181756102, 34.56017656804101], [-77.29066676279575, 34.56008356628875], [-77.29077454636972, 34.560035359834785], [-77.29114766435475, 34.55985120108083], [-77.29117184741055, 34.55984043941169], [-77.29117874413116, 34.55983606205547], [-77.29119365856432, 34.55982968843219], [-77.29144518874921, 34.5597174028682], [-77.29156870629555, 34.55966409704645], [-77.29171484782421, 34.55960030968404], [-77.29194697657273, 34.559488433156076], [-77.29196573198871, 34.55948063942835], [-77.29197105305732, 34.559476661546014], [-77.29198057826949, 34.55947203702698], [-77.29223815092737, 34.55935832011936], [-77.29236261484206, 34.559303135210826], [-77.2924965382039, 34.5592357347539], [-77.29269209016998, 34.55912519434763], [-77.29273237485545, 34.559102162594165], [-77.29276046123802, 34.55908486925372], [-77.29286266405276, 34.559037711709756], [-77.29315748085, 34.55890143146685], [-77.29325033815454, 34.558857570369796], [-77.29342266101122, 34.5587756134191], [-77.293508902925, 34.558735070979964], [-77.29355455374257, 34.55871566578586], [-77.29368050128109, 34.55866092207823], [-77.29375293318708, 34.558629386566345], [-77.29377784641785, 34.558617627883926], [-77.29395125554757, 34.55854550106781], [-77.29404491699984, 34.55849927208435], [-77.29433247123168, 34.55840031949464], [-77.29434442519687, 34.558396719418695], [-77.29434747835037, 34.55839550695366], [-77.29435733236376, 34.55839068156522], [-77.2946096685375, 34.55827747297411], [-77.29474461585713, 34.558206786100925], [-77.29485550639404, 34.55814877237836], [-77.29505302697982, 34.558052163763925], [-77.29510838208583, 34.55802350043246], [-77.29514210589849, 34.5580030819656], [-77.29526950996176, 34.5579425762036], [-77.29534068323665, 34.55790828768028], [-77.29536541408264, 34.55790025321616], [-77.2955388929528, 34.55782901840605], [-77.29578083359209, 34.557702963075506], [-77.29588123632536, 34.55765461491658], [-77.29593640605482, 34.557624174364335], [-77.29612545775925, 34.557525126361114], [-77.2961725269005, 34.55750138003111], [-77.2963338807311, 34.55742087008187], [-77.29638177529716, 34.557401530522725], [-77.29648754513357, 34.557356783487776], [-77.29673047328195, 34.557254803510034], [-77.29689798444859, 34.55719436271004], [-77.29692851295798, 34.55718260161189], [-77.29694260566009, 34.55717781772048], [-77.29712677581253, 34.55710093975989], [-77.29720598577532, 34.557057662020846], [-77.29734221549444, 34.55698937352588], [-77.2974523895906, 34.55692923598925], [-77.2975244866837, 34.55688739985632], [-77.29777734929041, 34.556771017455006], [-77.29792130010733, 34.55671176437324], [-77.29796896217763, 34.55668396096826], [-77.29805113677749, 34.55664286650635], [-77.29821993886924, 34.556557762302596], [-77.29831864143023, 34.55651370154081], [-77.2984852737132, 34.5564385582186], [-77.29861592425476, 34.55637848859229], [-77.29871552081885, 34.55633511941154], [-77.29874731668657, 34.5563177502921], [-77.29881563248125, 34.55628838145492], [-77.29899750880837, 34.556191168877234], [-77.29911249655771, 34.55615238048346], [-77.29941353998811, 34.55601690494373], [-77.29950928743318, 34.55597739689528], [-77.29954113631696, 34.555959072085386], [-77.29960525270023, 34.555930286078095], [-77.29980929693775, 34.555841243668766], [-77.29990591818222, 34.55580912505665], [-77.30009290547962, 34.5557309404807], [-77.300104207084, 34.555726084294186], [-77.30014421940811, 34.55570590332914], [-77.30030278979373, 34.55563057271345], [-77.30034860310514, 34.555607040449935], [-77.30041849872114, 34.555568794880294], [-77.30057507609405, 34.555468903716466], [-77.30070052571475, 34.55541530340349], [-77.30082964361443, 34.55534445317683], [-77.30108094081766, 34.555228936663454], [-77.30109177391846, 34.55522368648387], [-77.30109777483365, 34.55522058559645], [-77.30111465890292, 34.55521367347377], [-77.30135569749541, 34.55510379309455], [-77.30149475316239, 34.555037270417245], [-77.30159933656861, 34.554974018395875], [-77.30178816577396, 34.55488264783821], [-77.30185487587785, 34.55485004058923], [-77.30189230037145, 34.55482974629932], [-77.3020224597128, 34.554768773297035], [-77.30211582658907, 34.554728698673856], [-77.30228911763365, 34.554653105185], [-77.30249924701215, 34.55453580093847], [-77.30259132629801, 34.55446341091138], [-77.3026866983308, 34.55444399205468], [-77.30287487590122, 34.55435307718751], [-77.30291465256154, 34.554335656975326], [-77.30308324799957, 34.554278552817856], [-77.30318031516178, 34.554253405673975], [-77.30327088162821, 34.55418025924706], [-77.30348055552204, 34.55408087007136], [-77.30369640647602, 34.55400788983866], [-77.30387706244338, 34.553917098845716], [-77.30407460324187, 34.55382010689583], [-77.30419332049924, 34.55375303217757], [-77.3045643065749, 34.55357122844211], [-77.30467165928478, 34.5535221040941], [-77.3047095178866, 34.55350756713502], [-77.3047831157962, 34.55347361316308], [-77.3052311334574, 34.553264740494285], [-77.30546555000176, 34.55315678380494], [-77.30574440728913, 34.55301785022297], [-77.30619965306659, 34.5527806818697], [-77.30623792931101, 34.55276133858682], [-77.30626025273939, 34.55275663334798], [-77.30630220908292, 34.55274004531938], [-77.3068053042891, 34.55254079916706], [-77.30705374355932, 34.55240768795264], [-77.30729860479138, 34.55228417843608], [-77.30772444175416, 34.552072191707], [-77.30784872077483, 34.551995205801994], [-77.30800045747864, 34.55193878876706], [-77.30824526093105, 34.551829195465416], [-77.30834728471656, 34.55180117309854], [-77.3086411403608, 34.55169123703138], [-77.30889750203269, 34.55157227356407], [-77.30941161869333, 34.55134036675176], [-77.30942619452571, 34.551332889410276], [-77.30943493170939, 34.55132859777559], [-77.30946240096542, 34.551316131528935], [-77.30983213355734, 34.55113412350186], [-77.30994238672929, 34.551087415904355], [-77.31017861434603, 34.550985440827496], [-77.31022905946263, 34.55095132132695], [-77.31038359559801, 34.550805420344], [-77.31062703463166, 34.55072373741138], [-77.31068016684401, 34.55070142310607], [-77.3107179187038, 34.55066320094915], [-77.31084804556978, 34.55053474468324], [-77.31102566548346, 34.55046811696941], [-77.31110023491732, 34.550409130741066], [-77.31117047660932, 34.55035341349867], [-77.31130148646429, 34.55025870705859], [-77.31142576485581, 34.550149798207784], [-77.31148135226788, 34.5500978674535], [-77.31151820330848, 34.55005867634358], [-77.31162708231489, 34.54992040183011], [-77.3118111049155, 34.54977181023228], [-77.31181905746938, 34.54976546056868], [-77.31182760303285, 34.54975722132804], [-77.31198186863388, 34.54959631454868], [-77.31209265354858, 34.549486573167044], [-77.31215856658886, 34.549433932642906], [-77.31222951691657, 34.54936125542808], [-77.31234365024469, 34.5492756347321], [-77.31238553100881, 34.5491997086111], [-77.31248186102619, 34.54909450789627], [-77.3125053171245, 34.549060103293954], [-77.31263167347458, 34.54895477758667], [-77.31266364995645, 34.548934605687215], [-77.31267664795496, 34.54891309607552], [-77.31283230321174, 34.548770607375694], [-77.31283393403214, 34.54876910019176], [-77.31283535727182, 34.5487679009929], [-77.31285640420235, 34.54875015015189], [-77.31301007204328, 34.548620407225705], [-77.3130180173272, 34.54861031560453], [-77.31303257850188, 34.5486015186575], [-77.31318457797317, 34.548472943131365], [-77.31320713412286, 34.548453982665144], [-77.31323289699532, 34.548430552000866], [-77.31334161125272, 34.548327987847316], [-77.3133751930391, 34.548287393650426], [-77.31343369614778, 34.5482390429933], [-77.31354130514431, 34.54811985660144], [-77.31361446528837, 34.548043994896474], [-77.31362324062907, 34.54803554242225], [-77.3136350725366, 34.5480228645905], [-77.3137074531625, 34.54795233717755], [-77.31383623610759, 34.54781572360794], [-77.3138750555126, 34.54778552620624], [-77.31388635007856, 34.547760140283536], [-77.31398929043644, 34.54765231029226], [-77.31402561475403, 34.547610414668185], [-77.31403756240582, 34.547601595385714], [-77.31415815430842, 34.54747629644041], [-77.31418989687741, 34.54744198680296], [-77.31423885843132, 34.54738871548013], [-77.31439512413912, 34.547293500774025], [-77.31444724326516, 34.54718996935233], [-77.31451878849192, 34.5471052909285], [-77.3146412071286, 34.54697321361162], [-77.31469949658809, 34.546944863460496], [-77.31471889301682, 34.546906146108306], [-77.31480414902798, 34.54679490499814], [-77.31495063053919, 34.54662805412605], [-77.31498941001882, 34.54658918457385], [-77.3150441952408, 34.54653023942497], [-77.31524356152146, 34.54634117282866], [-77.31531940731826, 34.54625302844678], [-77.31544483137111, 34.54618752994301], [-77.31552799359734, 34.54610617924389], [-77.31564420621604, 34.54605640819351], [-77.31567696880352, 34.54603411491541], [-77.31576662605491, 34.545973963596154], [-77.3158436506307, 34.54592228743525], [-77.31589277747534, 34.54588071371294], [-77.3159560726368, 34.54581779278934], [-77.31601043428356, 34.54576215443356], [-77.31603337019047, 34.54573811527641], [-77.31604451992501, 34.54572726827472], [-77.31614642980617, 34.54566206547737], [-77.31624473517718, 34.54556015235436], [-77.31633910289906, 34.545507466221466], [-77.31640092962563, 34.54544051163185], [-77.3164222480334, 34.545423742078064], [-77.3164463637461, 34.54533261335825], [-77.31645120613489, 34.545313627268406], [-77.31645205585446, 34.545310762802075], [-77.31645356423988, 34.54530643822428], [-77.31644308618763, 34.54518964551387], [-77.31651572117192, 34.54501814789211], [-77.31650236831126, 34.54493631969167], [-77.31651190712768, 34.544846317322744], [-77.31665768131569, 34.54469099407524], [-77.31692343204719, 34.544709853097466], [-77.31718971954896, 34.54467955936898], [-77.31744261639889, 34.54470251941292], [-77.31753479207538, 34.54473014417589], [-77.31775281824196, 34.54475670613902], [-77.31783376056548, 34.544764863954356], [-77.31788782178019, 34.544771115188986], [-77.31807791589635, 34.5448020310229], [-77.3182232299291, 34.54489885506347], [-77.31824790900063, 34.54491477847845], [-77.31824736501906, 34.54493047769719], [-77.31826596821523, 34.54495527788089], [-77.3183465757314, 34.54503863191646], [-77.31834612171694, 34.54508180510497], [-77.31853464781094, 34.5450861274066], [-77.31861155090753, 34.545082018358045], [-77.31865829760763, 34.54508703617943], [-77.31880779963127, 34.54509478223439], [-77.31896073840842, 34.54509962803168], [-77.31900362093229, 34.545104851815495], [-77.31917392089116, 34.545149023219196], [-77.31919874119673, 34.545155410852026], [-77.31920584818211, 34.54515557271124], [-77.31939389693868, 34.54520446082691], [-77.31943442749062, 34.54522401731076], [-77.31954480307354, 34.545233718972455], [-77.31969115617352, 34.545271175156074], [-77.31978460120217, 34.54528577559517], [-77.31994519325112, 34.54532036778122], [-77.32008319746454, 34.54540118453437], [-77.32013321401647, 34.54541948276906], [-77.32017365960144, 34.54543757801257], [-77.32035708446972, 34.54549148720653], [-77.32056390866829, 34.54553845456016], [-77.3206817358909, 34.54556000708498], [-77.32085263316475, 34.54559934364242], [-77.32095438236081, 34.545629747291876], [-77.32126853497581, 34.5457205135932], [-77.32129724121165, 34.54574572096861], [-77.32134422308184, 34.54574818626716], [-77.3214943571297, 34.545782180671885], [-77.32173455900015, 34.54584545213425], [-77.32182405812301, 34.545829929011234], [-77.3221264012406, 34.54587820223217], [-77.32229160591028, 34.5459589568739], [-77.32256749199817, 34.54602350618978], [-77.32276253295234, 34.54608542851186], [-77.32290593926162, 34.54612148926192], [-77.32328142912615, 34.54617562304062], [-77.32335631556583, 34.54619202384032], [-77.3236885807285, 34.54623185493374], [-77.32378615681931, 34.54627653047184], [-77.3239611381429, 34.546312880554765], [-77.32403883064184, 34.546326749654426], [-77.32407767736433, 34.54638247052513], [-77.3241926343319, 34.54645173956844], [-77.32420689645238, 34.54652237929787], [-77.32430699181424, 34.546654946446665], [-77.32439330746854, 34.546740405725295], [-77.3244212486137, 34.54676145999556], [-77.32446161172585, 34.54675463147415], [-77.32456241358577, 34.54677931963911], [-77.32465680171659, 34.546802477224865], [-77.32468673007924, 34.54680199302779], [-77.32485261097742, 34.54682375622826], [-77.32501049020334, 34.546798450874405], [-77.32508868482346, 34.546885292762695], [-77.32524289725181, 34.546923507312286], [-77.32542976842814, 34.54696397898411], [-77.32547651652129, 34.54697599580318], [-77.32563335767796, 34.547015817695154], [-77.32567863189149, 34.54701707819996], [-77.3257273284531, 34.54703832919991], [-77.32590476543295, 34.54708736708046], [-77.32602381220971, 34.54710841412429], [-77.32615432218921, 34.547139941764144], [-77.3264099821302, 34.547182090859394], [-77.32641469388014, 34.54718269839661], [-77.32641791775248, 34.547181898595355], [-77.32673299471324, 34.54713861551152], [-77.32680857421644, 34.54712819330424], [-77.32719024197169, 34.54708041741595], [-77.3272022444441, 34.54708268929403], [-77.3275298101733, 34.5472689107719], [-77.32754331075249, 34.54729601575875], [-77.32754924954214, 34.54751093116834], [-77.32758442785915, 34.54753080622228], [-77.32771812469444, 34.54764642954654], [-77.32792461645946, 34.54770179573556], [-77.327972729655, 34.5477161106805], [-77.32823039152055, 34.54774162610266], [-77.3283640610682, 34.54777123547643], [-77.32863496637123, 34.54784451175668], [-77.32871168333416, 34.54786024876198], [-77.32875433401665, 34.54787189317311], [-77.32898058276797, 34.54793685413638], [-77.3291446622831, 34.547970207993565], [-77.32917989875367, 34.54798876008681], [-77.3292191663765, 34.5480053565519], [-77.32933945207127, 34.54803548078655], [-77.32942854510313, 34.54804201944904], [-77.3295355684241, 34.54804369890005], [-77.3298230120709, 34.547984989794045], [-77.32992937659506, 34.547992348826625], [-77.33025830310979, 34.54806210215136], [-77.33035488033093, 34.54806535550017], [-77.33035828201487, 34.54808643256689], [-77.33044363657285, 34.54815233304035], [-77.33062790999777, 34.548292489078314], [-77.33066641670544, 34.548312365999934], [-77.33070715472543, 34.5483130553163], [-77.33089801747595, 34.5483785160988], [-77.33092172151112, 34.54838509021181], [-77.33109744237491, 34.54841328563582], [-77.3311772808338, 34.54840861608063], [-77.3311787836964, 34.548458115767964], [-77.3314868245063, 34.54855254575753], [-77.33158647443234, 34.5485817640079], [-77.3317461128586, 34.548621374399026], [-77.33182348253393, 34.548643823348165], [-77.33187701834822, 34.54865689676092], [-77.33209356069696, 34.548680869240314], [-77.33226769360361, 34.54874054650089], [-77.33230797315834, 34.54876001885797], [-77.33238833552397, 34.54877386373725], [-77.33255228361539, 34.548816553944455], [-77.33294097409883, 34.54887131249425], [-77.33305114402397, 34.54881743425821], [-77.33312978537906, 34.548862396794924], [-77.333359778992, 34.54887901791179], [-77.33344232593934, 34.54887931388407], [-77.33374261343195, 34.54888151695219], [-77.33383502259028, 34.54887590691369], [-77.33402871675807, 34.54890643897832], [-77.3340338274316, 34.548906514420345], [-77.33422708826808, 34.54889970379548], [-77.33437287800405, 34.54888744518103], [-77.33451133751223, 34.54895826752093], [-77.33461670708007, 34.5490290446052], [-77.33474237809475, 34.54909061254459], [-77.33476742721433, 34.549166262845276], [-77.33500145570169, 34.54936853865649], [-77.3350108607858, 34.54937018929613], [-77.33501083877671, 34.54937608084919], [-77.33502843957251, 34.54939069601758], [-77.33528594220334, 34.54958134119147], [-77.33533174822244, 34.54961012754034], [-77.33538834865604, 34.54961563904534], [-77.33558056391469, 34.54965946662034], [-77.33558362603743, 34.54966021386397], [-77.3355849346288, 34.549659946230385], [-77.33578002702727, 34.549656303231735], [-77.33597810894264, 34.549603875786445], [-77.33617335503467, 34.54962576898389], [-77.33641635431285, 34.54975504292236], [-77.33656383044413, 34.549718381959934], [-77.33671160486091, 34.54971322813161], [-77.33676020685984, 34.54971553067645], [-77.3367831387801, 34.549718932268945], [-77.33687884045554, 34.549719518617835], [-77.33695643276255, 34.549719177627345], [-77.33713282443547, 34.54969575385185], [-77.33715300284686, 34.54970795920952], [-77.33726105235516, 34.54978696453345], [-77.33730672845448, 34.54980554093818], [-77.33734609072879, 34.54984714694451], [-77.3375242844947, 34.54988230801442], [-77.33753227312747, 34.549992778973596], [-77.33753192082064, 34.55011253410832], [-77.33753058217765, 34.55011887837492], [-77.3375968795357, 34.55022830552265], [-77.33767715218343, 34.55024934215697], [-77.33772907911711, 34.55026330740576], [-77.33790867821045, 34.55031554266068], [-77.33801003795261, 34.55034526313497], [-77.3381192446048, 34.550369499988676], [-77.33815966905127, 34.55036701888186], [-77.33816665267588, 34.55039118521889], [-77.33850939725995, 34.5504762859967], [-77.33870791279276, 34.550434975670214], [-77.33890101488552, 34.55051978152156], [-77.3389390530885, 34.55052492145961], [-77.33921952730968, 34.55053063938399], [-77.33929295746327, 34.55054924003145], [-77.33936511237792, 34.55058605531791], [-77.33942704370543, 34.5506150004909], [-77.33943498822347, 34.55063721024959], [-77.33948666695204, 34.550661777649864], [-77.33950957043085, 34.5506732416635], [-77.33952325562103, 34.55068572003826], [-77.33953511047353, 34.550689217115746], [-77.33955886244767, 34.55069628893556], [-77.33956018873454, 34.55069614552266], [-77.33958404102995, 34.55069559629322], [-77.33959510743513, 34.550690687330174], [-77.33958924979945, 34.550688385865804], [-77.33959294623347, 34.55068334759956], [-77.33958962270438, 34.55068056196602], [-77.33958438778178, 34.55068060115694], [-77.33958137760442, 34.550679257210184], [-77.33957831659694, 34.550677851968516], [-77.3395782312123, 34.55067781337893], [-77.33957533874664, 34.550676283528546], [-77.33957401775612, 34.5506718266988], [-77.33958427768948, 34.55066952160926], [-77.33958463170096, 34.55067005297678], [-77.3395854897456, 34.55066964807526], [-77.33958710279606, 34.55066888689497], [-77.33959358724589, 34.55066582695645], [-77.33960832606166, 34.550658871873736], [-77.33960939884186, 34.55066018824756], [-77.33961962189919, 34.55067186049851], [-77.33962559898345, 34.55067597291425], [-77.33963341492638, 34.55068280318677], [-77.33964465798859, 34.55069172286003], [-77.33968221888217, 34.55069465745619], [-77.33971422623415, 34.550719458755175], [-77.33973820765802, 34.550741625610016], [-77.3397652099656, 34.55077333061624], [-77.33977019839737, 34.550777760573524], [-77.33977847211658, 34.55077695601152], [-77.33979525791696, 34.5507690090248], [-77.33984109350176, 34.55073972254827], [-77.33987241057078, 34.55070044121938], [-77.3398736365883, 34.55069653183514], [-77.33987857560263, 34.5506927347], [-77.33991664424327, 34.55065229621217], [-77.34007236211788, 34.550609520112864], [-77.34007680993848, 34.550609593116256], [-77.34012575777817, 34.55062987943914], [-77.34028346504182, 34.55069116727945], [-77.34031070501403, 34.550719899132645], [-77.3403922602969, 34.55080555368545], [-77.34042389401712, 34.55082627695085], [-77.34046366098391, 34.550859356504], [-77.34057046862965, 34.550956737812655], [-77.34064754311169, 34.551013654749546], [-77.34065634194822, 34.55101649094075], [-77.34077290232773, 34.5510449431096], [-77.34085157617919, 34.55106316814894], [-77.3409583520695, 34.55109135974198], [-77.3410101938319, 34.55110677942113], [-77.34104666621369, 34.55111609423163], [-77.34121086812135, 34.55115803013104], [-77.34124204342012, 34.55115660057167], [-77.34125636963918, 34.55116189464762], [-77.34125950836598, 34.55117045244915], [-77.34143704483859, 34.55121338060756], [-77.34148937362274, 34.55122697382416], [-77.34157409528932, 34.5512476125865], [-77.34163219882853, 34.5512635661282], [-77.3417497349511, 34.55127135733393], [-77.3418277029561, 34.55129860142101], [-77.34189856163755, 34.5513233509233], [-77.34197682411906, 34.55134091052581], [-77.34202269313612, 34.55135589658539], [-77.34221582544467, 34.55139875808531], [-77.34221902055111, 34.551399035105916], [-77.34241442719383, 34.551394568282234], [-77.34254862360442, 34.551391036379485], [-77.34280767516658, 34.551367672229546], [-77.34291023371384, 34.55135882398421], [-77.34311722298402, 34.55134067909411], [-77.34320109924754, 34.5513331305867], [-77.34328551028581, 34.55131627104368], [-77.34335813640175, 34.55135821462868], [-77.34338886328351, 34.551472884440635], [-77.34348425402109, 34.551584891557226], [-77.34351640575008, 34.551624289161026], [-77.34358517379772, 34.551703733915446], [-77.34363429162786, 34.55177645396478], [-77.34363880349068, 34.55180747817465], [-77.34377783487969, 34.55186205525391], [-77.34381923479674, 34.5518778895346], [-77.34388890455486, 34.551893909333444], [-77.34397299376745, 34.551912142695336], [-77.34408378013404, 34.55191910493547], [-77.34416838852366, 34.55195201468261], [-77.34421361625454, 34.55196960665198], [-77.34430773961427, 34.551991023909906], [-77.34436345231094, 34.552006242182955], [-77.344497468432, 34.55205118125663], [-77.34453185564576, 34.55206282434682], [-77.34455825380454, 34.55207185200873], [-77.3447495103706, 34.55213733162472], [-77.34475149517912, 34.55213801115441], [-77.34475302918536, 34.55213860641265], [-77.34476380336265, 34.55214204289114], [-77.34494787228627, 34.55220243658199], [-77.34499375282249, 34.552196086576615], [-77.34514421282731, 34.552201333598475], [-77.3453507949873, 34.552167323582566], [-77.34553686526328, 34.55220036612798], [-77.34566700429932, 34.552250153744794], [-77.34578942527781, 34.552318186562374], [-77.34592472377432, 34.552407394865774], [-77.34595516139058, 34.55243415231456], [-77.34596377198054, 34.55245227700658], [-77.34603535524798, 34.55249415838909], [-77.34604593969219, 34.55250166021186], [-77.34611836202446, 34.552523566907766], [-77.34615772126705, 34.55252225952965], [-77.34626977122001, 34.55253066142759], [-77.34630141518159, 34.552534225181944], [-77.34631434674147, 34.55253793104556], [-77.34648896355954, 34.552513012786655], [-77.3465524802396, 34.552515742231286], [-77.3467073432425, 34.552522083612956], [-77.34676891448085, 34.552542569348844], [-77.34688046029804, 34.552565206358736], [-77.3470315673643, 34.55258521257524], [-77.34709836660934, 34.55259188904123], [-77.34725202111332, 34.552607782876976], [-77.347310097541, 34.552615843268775], [-77.34748863229109, 34.55269462023989], [-77.34755925319766, 34.552712359387485], [-77.34776708226443, 34.55275281645726], [-77.34787855099106, 34.552812459458465], [-77.34809127923538, 34.55288062720057], [-77.3482004977005, 34.5529076207804], [-77.3482686386084, 34.552923004287464], [-77.34844250966623, 34.552965878379325], [-77.3484639518263, 34.55296658710918], [-77.34848466748217, 34.552959243599496], [-77.34854340867582, 34.552937979497905], [-77.34866187261572, 34.55289687679535], [-77.3487742561789, 34.55285177935497], [-77.34885989156541, 34.55282288556215], [-77.34892502153681, 34.552800952828704], [-77.34901354872396, 34.55274791765302], [-77.34904449035074, 34.55273489663079], [-77.34905839475869, 34.552727833069916], [-77.3491368136911, 34.552655630873005], [-77.34920536554785, 34.55259790492213], [-77.34922601232087, 34.55257484459054], [-77.34926062994917, 34.55247055266731], [-77.34926173263422, 34.552468034743555], [-77.34926176551868, 34.55246737856533], [-77.34926182194747, 34.55246668270511], [-77.34926301090644, 34.55236706691822], [-77.34926327203003, 34.55234490648039], [-77.34926326641195, 34.55234475219266], [-77.34926325095691, 34.55234458151834], [-77.34926250201168, 34.552222451794115], [-77.34926294125644, 34.552220238729824], [-77.34926117722787, 34.55210513317312], [-77.34926012618897, 34.55210038328401], [-77.34925689150742, 34.55209310269241], [-77.3492218423279, 34.55201421448267], [-77.34919107149778, 34.55198790991978], [-77.34916210177983, 34.55193873449882], [-77.34907843623701, 34.55185684154934], [-77.34902735953717, 34.55179932127608], [-77.34900158889286, 34.55177035581014], [-77.34888647093473, 34.55166787930522], [-77.34888413258854, 34.551666327712745], [-77.34887525945118, 34.551659006009615], [-77.34877412775914, 34.551558266478466], [-77.34874329621343, 34.55153152547626], [-77.34869382844782, 34.55150837875267], [-77.34862382875073, 34.55145748389652], [-77.34857132746858, 34.55142027776826], [-77.34850079036481, 34.55136609682838], [-77.34849124748028, 34.55135415161398], [-77.34848537623358, 34.55134508342601], [-77.34844927815695, 34.551298985683154], [-77.34843846964787, 34.5512794395438], [-77.34841645080253, 34.5512494453933], [-77.34841182305593, 34.551243170179006], [-77.34841000284231, 34.55124063799899], [-77.34840565701576, 34.551234766932595], [-77.34839130806986, 34.55121551962244], [-77.34838126186635, 34.55120204389592], [-77.34838035986674, 34.551200833975294], [-77.3483707040367, 34.5511878818798], [-77.34838238233846, 34.551179838805375], [-77.34839467393724, 34.5511767515394], [-77.34838704747288, 34.55116749705826], [-77.34838273913, 34.551164338705], [-77.34837116987089, 34.55115721228216], [-77.34836452250491, 34.55115436956996], [-77.34836280611583, 34.551150765145216], [-77.34835867306411, 34.551143792044286], [-77.34835864046644, 34.55114373506469], [-77.34835863015778, 34.55114371540396], [-77.34835859865893, 34.551143671815524], [-77.3483550869136, 34.551138881245535], [-77.34835272319825, 34.55113691474495], [-77.34835065458792, 34.55113469229229], [-77.34834850310874, 34.55112987135372], [-77.34834677649228, 34.55112759073876], [-77.34834338366335, 34.55112510859817], [-77.3483355486181, 34.551124084799014], [-77.34834074552492, 34.551119459675796], [-77.34833943956788, 34.55111587426922], [-77.34833777230911, 34.551114269299276], [-77.34833488427864, 34.55111120030932], [-77.34832831409781, 34.55110634047344], [-77.34831125415187, 34.551105108012656], [-77.34831143481526, 34.55111225336915], [-77.34831030895035, 34.551112777859956], [-77.34830928655784, 34.55111256249214], [-77.34830202392472, 34.55111114644367], [-77.34830162247869, 34.551108182915215], [-77.3483095365173, 34.55110487588326], [-77.34831008796344, 34.551104540499225], [-77.34831058176519, 34.55110092642079], [-77.34831437871786, 34.55108887783342], [-77.34831110009316, 34.55107840956569], [-77.34831006882627, 34.55107489028348], [-77.34830979307307, 34.55107423640184], [-77.34830900920723, 34.55107296730757], [-77.3482851493703, 34.5510334049231], [-77.34826730169311, 34.551019145547635], [-77.34824783842282, 34.55098110265003], [-77.34822966292163, 34.55095470708489], [-77.34813836755144, 34.55091528815561], [-77.34811919031121, 34.55088718899192], [-77.34803932561334, 34.55085735733043], [-77.3480218463973, 34.5508519246535], [-77.34798246114262, 34.550815311774954], [-77.34795261064077, 34.55080228657168], [-77.34792534553856, 34.550780047773095], [-77.34791291570934, 34.55076411371703], [-77.3479026356118, 34.55071941907387], [-77.34789460248649, 34.55070554372262], [-77.34785255008799, 34.55066454465863], [-77.34780230090998, 34.550553975199094], [-77.34773565233293, 34.55049263371384], [-77.34773068948682, 34.55048430901144], [-77.34769059627916, 34.55039713389829], [-77.34754434729322, 34.550275268995456], [-77.34754014926813, 34.55026960455508], [-77.34753614485369, 34.55026748170437], [-77.34743997369995, 34.55010404064737], [-77.3474133416081, 34.55004033131858], [-77.34730914697549, 34.54996166755947], [-77.34728729992167, 34.54993605720698], [-77.34722243952507, 34.549861124829306], [-77.34720777077172, 34.5498250903092], [-77.34719610360035, 34.54980583984273], [-77.34716307403636, 34.54978263306655], [-77.34706913310235, 34.54966054935971], [-77.34699434392799, 34.549610979244406], [-77.34693948715284, 34.54951728291375], [-77.346814602931, 34.54939202126171], [-77.34678022399589, 34.54935863620695], [-77.34665859248301, 34.54924709561067], [-77.34658605914686, 34.54918008476591], [-77.34647570063046, 34.54900093516329], [-77.34644008959543, 34.54895626728329], [-77.34642879639807, 34.5489382488008], [-77.34639769365185, 34.54892093550031], [-77.3462687639687, 34.54881797319091], [-77.34624270100285, 34.548739847836664], [-77.34620661281653, 34.54869415221384], [-77.34614460604611, 34.54867055604577], [-77.34610838052909, 34.54857377974875], [-77.3460694534063, 34.54851995469503], [-77.34601587332732, 34.54845260437205], [-77.34587186267416, 34.548394203154814], [-77.34585601386186, 34.54830584409511], [-77.34578977349315, 34.54817032890454], [-77.34571367403692, 34.54808150379938], [-77.34568861293931, 34.548050143452], [-77.34565563010085, 34.547967445170194], [-77.34563498483455, 34.54794403994627], [-77.3455596660706, 34.547906350437586], [-77.3455023332861, 34.54786709085434], [-77.34538190660959, 34.54779948737812], [-77.3453288615382, 34.54764722937811], [-77.34530385516108, 34.547617189203564], [-77.34525186784853, 34.547532328647996], [-77.34518700393848, 34.54746424557683], [-77.34516212048908, 34.54742639940514], [-77.34510776851862, 34.54734162057065], [-77.34508140791046, 34.5473156019537], [-77.34507415004751, 34.54730827797885], [-77.34495386642996, 34.54721154168689], [-77.34494104794888, 34.547167629393215], [-77.34486907513256, 34.54710672148153], [-77.3446018351294, 34.54694156877265], [-77.34458734217515, 34.54677463453066], [-77.34448629575107, 34.54668070631665], [-77.34427508388629, 34.54670608062064], [-77.34410082566764, 34.546371483366734], [-77.3440896166932, 34.546363703703705], [-77.34408878741064, 34.54635672141997], [-77.34408360807704, 34.54634636864556], [-77.34382599781823, 34.546149708021396], [-77.34378793204775, 34.54610925251769], [-77.34371791382105, 34.54595152505544], [-77.34369189163314, 34.545940566456764], [-77.34368262048628, 34.54592551557324], [-77.3436890556678, 34.54590593835521], [-77.34363822450115, 34.54586049573626], [-77.34362259494489, 34.54582883546919], [-77.34359749103255, 34.54581535288848], [-77.34360578933185, 34.54580331207761], [-77.34358464884964, 34.545780355832946], [-77.34354340943507, 34.54576192835634], [-77.34352634012077, 34.545746711987185], [-77.34346322432131, 34.54575154743932], [-77.343382335715, 34.545723895697094], [-77.34334414554158, 34.54572096431171], [-77.3433309842119, 34.545705802653394], [-77.3431513387817, 34.545625487281804], [-77.3430915660881, 34.54552090627977], [-77.34294479457414, 34.54542812387091], [-77.34286831761288, 34.545356918226915], [-77.34281294347004, 34.54531616914003], [-77.34275195524906, 34.5452782595801], [-77.3427073622505, 34.545237344775245], [-77.34268363396106, 34.54521236151443], [-77.34260631951874, 34.545130540100075], [-77.3425876367557, 34.54510376167981], [-77.34258226886138, 34.54509064001759], [-77.34256034029998, 34.54507540105686], [-77.34229822790962, 34.54482284316016], [-77.34218044773692, 34.544672699267224], [-77.34217947366675, 34.54467134352535], [-77.3421771376651, 34.544668624811116], [-77.34204024446433, 34.54453533385653], [-77.34183479088192, 34.54450660393563], [-77.34178838244749, 34.544502376569895], [-77.34174644700212, 34.544516261756925], [-77.34174125266156, 34.544491058414735], [-77.34155297733065, 34.544421287009264], [-77.34139766943025, 34.544420925652275], [-77.34118870151943, 34.54432572167005], [-77.34126189462535, 34.54422774186483], [-77.3412299919913, 34.54418295515275], [-77.34120724561687, 34.54416674479889], [-77.34114242716224, 34.54412853061176], [-77.34113535178327, 34.54408857738201], [-77.3411114165975, 34.54406637813836], [-77.34105128445582, 34.54407681284812], [-77.3410140555074, 34.5440323161358], [-77.34092676854715, 34.54406461425557], [-77.34073920261898, 34.54407157213913], [-77.3406219056398, 34.54401314691506], [-77.34053014084297, 34.543930812736846], [-77.34037179624582, 34.54386684566791], [-77.34023569904826, 34.54373691266462], [-77.34022934591266, 34.543733274272384], [-77.34022965495257, 34.54372921559231], [-77.34022026805958, 34.543720709457375], [-77.34010983995091, 34.543624040111304], [-77.34008259655326, 34.54360295491448], [-77.33997228763275, 34.5435214156945], [-77.33991902805249, 34.54348535976866], [-77.3398494909972, 34.54346084996232], [-77.33970439462848, 34.54340639635212], [-77.33968295142547, 34.54331821378393], [-77.3396569184659, 34.54329987720011], [-77.33957765263386, 34.54326094154921], [-77.33956045052105, 34.54322725820274], [-77.33955214984786, 34.5432199005432], [-77.33955144688105, 34.54321471925631], [-77.33952622742633, 34.54319656241965], [-77.3395138080892, 34.54318857244723], [-77.33947407025786, 34.54316464387108], [-77.33947239101713, 34.54315957088022], [-77.3394639525229, 34.543155945726255], [-77.3394059217936, 34.54314952165959], [-77.33936581780014, 34.5431554017965], [-77.33931002649373, 34.54315341819601], [-77.33926733039527, 34.543170104604336], [-77.33921794383077, 34.54314027776204], [-77.33913578287346, 34.543112548877225], [-77.33908448969521, 34.54304362854752], [-77.33908007597803, 34.54303769803999], [-77.33907832641523, 34.54303534723453], [-77.33907427896408, 34.543029908848354], [-77.33899520865856, 34.542977558590096], [-77.33892198769792, 34.54293802623103], [-77.33893954175014, 34.542848867765926], [-77.33896886992402, 34.54275614809785], [-77.33900670541743, 34.54268102394623], [-77.33903654634818, 34.54264768792477], [-77.33903273134055, 34.542587168092794], [-77.33902274141401, 34.54255630864358], [-77.338997961969, 34.542492803521526], [-77.33891247852202, 34.542449758352575], [-77.3389298016562, 34.54234732320421], [-77.33891773430196, 34.542326593695094], [-77.3389123743957, 34.54231621594526], [-77.33882047136329, 34.54221817363081], [-77.33879058329103, 34.54216701695943], [-77.33874310434045, 34.54200803668793], [-77.33872996812039, 34.54198637268881], [-77.33872380156993, 34.54197620291271], [-77.33870680063032, 34.5419446843407], [-77.33863762912094, 34.541877244458504], [-77.33859551909217, 34.54183191514764], [-77.33851862593797, 34.54177195101765], [-77.33850082457703, 34.54164169075051], [-77.33844973517706, 34.54153704150044], [-77.33843399890463, 34.541471437627465], [-77.33841076806026, 34.54142023716601], [-77.3383804431718, 34.54133468543685], [-77.33836995939907, 34.54130369759455], [-77.33836661448903, 34.54128108030767], [-77.33837484535367, 34.54108355774839], [-77.33842404637294, 34.54105110090367], [-77.3384031931276, 34.54101207310093], [-77.33841771922455, 34.54080719327067], [-77.33840731752808, 34.540767618378396], [-77.33843617579134, 34.5406821300123], [-77.33843340573642, 34.540615260661305], [-77.33841269920454, 34.54056309769791], [-77.33840572798489, 34.54052748624798], [-77.33835066683804, 34.54036972045413], [-77.33831620929851, 34.54033215761752], [-77.33821437561413, 34.54018957946725], [-77.33820864089907, 34.5401028107716], [-77.33825378331514, 34.54003101129936], [-77.33824222046385, 34.53992718022796], [-77.33818918398273, 34.539860791535816], [-77.33820256499546, 34.53971584609533], [-77.33821508650038, 34.53961224856245], [-77.3382056701612, 34.53951078261859], [-77.33820558941754, 34.53947222425209], [-77.33818291410235, 34.539372058284], [-77.33817761855798, 34.53936565829245], [-77.33813844374411, 34.53928168780481], [-77.33810121054171, 34.5392115254721], [-77.33812015551172, 34.539136266732754], [-77.33805489822902, 34.53910355850215], [-77.33800034645027, 34.53903108941281], [-77.33799660027238, 34.53902699582322], [-77.33798946403112, 34.53901438698973], [-77.33794333450362, 34.53894662604014], [-77.33793153620364, 34.53891857703256], [-77.33790408635092, 34.53886715556166], [-77.3378711981982, 34.5388048462637], [-77.337870685036, 34.53876025398719], [-77.33784622479095, 34.53868602911855], [-77.33777397456063, 34.53859208505938], [-77.33773826634194, 34.53853802452702], [-77.33774489361235, 34.538455785253554], [-77.33761220260794, 34.53835319083701], [-77.33754449450693, 34.538283027291996], [-77.33750776774056, 34.538245071376316], [-77.33736940498815, 34.53811004285609], [-77.33735725899982, 34.5380219000063], [-77.33733911824282, 34.53795573548079], [-77.3372287377704, 34.53796013514449], [-77.33719660527946, 34.537922596348196], [-77.33713066706501, 34.53787210246932], [-77.33712851909686, 34.537868565988056], [-77.33713234505916, 34.537809429399566], [-77.33710560644741, 34.537733208400645], [-77.33712783198234, 34.53763291543305], [-77.33710464559513, 34.53756859565897], [-77.33684979191926, 34.537372138290486], [-77.3368288976994, 34.53737640427733], [-77.33683632358519, 34.537362367528424], [-77.33680853702973, 34.53734017369161], [-77.3371347458214, 34.537145021230245], [-77.33724919476037, 34.53707677017847], [-77.33726936190531, 34.53706771825288], [-77.33804644752449, 34.536552746742046], [-77.33812222910893, 34.53648932009385], [-77.33813847040636, 34.53644063899027], [-77.33850299822642, 34.53617788994212], [-77.3386944584577, 34.53596502352662], [-77.33881345210303, 34.535853920960946], [-77.33881389359368, 34.53583244227408], [-77.3386946151212, 34.53548223539693], [-77.33846388852919, 34.53547763755317], [-77.33840076234762, 34.535423643414056], [-77.3384147205057, 34.53538970270017], [-77.33836789738612, 34.535305961600436], [-77.3383631712233, 34.53525032644267], [-77.33834740171181, 34.535186500555625], [-77.33838445550735, 34.53512656466706], [-77.3384731199893, 34.535078771541706], [-77.33858467335983, 34.53508274501028], [-77.33866929757518, 34.53508301363487], [-77.3388536873068, 34.53511368032152], [-77.33885881309135, 34.535116673367895], [-77.33886454857357, 34.53512729888519], [-77.33888630765891, 34.53512248917029], [-77.33909727551134, 34.53517759375474], [-77.33923983286462, 34.53529460146332], [-77.33923827258624, 34.5353031808868], [-77.33925284298286, 34.53531131558347], [-77.33950115785458, 34.53535469628654], [-77.33964374405653, 34.53538270736509], [-77.33994793692554, 34.53539093180979], [-77.34047094064958, 34.53512586744284], [-77.34090177926136, 34.53486169161146], [-77.34077480663612, 34.53459252157429], [-77.34123886131111, 34.534304995329805], [-77.34172742744707, 34.53427004276327], [-77.3420258415375, 34.53422335402935], [-77.34219686658626, 34.534280461765974], [-77.34241842152177, 34.534221905492714], [-77.34248007549218, 34.534139651681755], [-77.34252805950682, 34.53409548156384], [-77.34268923152939, 34.53390792045612], [-77.34275652097581, 34.53381779426358], [-77.34279840225828, 34.53379782427154], [-77.34282178082162, 34.53375366854831], [-77.3429376115635, 34.533546921601], [-77.3428295750681, 34.533416150346454], [-77.34278193131982, 34.53335509401125], [-77.34262069582081, 34.5333476971902], [-77.34243996113155, 34.533289353567795], [-77.34231239878201, 34.53322767801379], [-77.34232861151699, 34.533144899750646], [-77.34205408125813, 34.53300097228349], [-77.34196427009432, 34.53300840287099], [-77.34184696646702, 34.532969372572936], [-77.34175170319673, 34.53292789799419], [-77.34166417394883, 34.53288699914832], [-77.34152877389502, 34.532855233091084], [-77.34127635281025, 34.53268280352914], [-77.34121726707812, 34.53260824910449], [-77.34116961233143, 34.532577179499036], [-77.34089013511155, 34.5324093230385], [-77.34084694805344, 34.532405764533046], [-77.34082583044574, 34.53238181616166], [-77.34068973550727, 34.53227446404873], [-77.34063220276198, 34.532164851590395], [-77.34056455924045, 34.53213674971344], [-77.34050508133814, 34.53208560978869], [-77.34038026110092, 34.532123796841496], [-77.34042103007316, 34.53219522964648], [-77.34030414394483, 34.53228752071711], [-77.34016615422577, 34.53223189368063], [-77.34020820160487, 34.53216503981068], [-77.34011044304398, 34.53217647272972], [-77.34005728020594, 34.53203789229759], [-77.34002687243408, 34.53200711089341], [-77.33977833958754, 34.531830747782585], [-77.33977387092261, 34.53179868632499], [-77.33972708406851, 34.53177965928461], [-77.33958197425366, 34.53173514493388], [-77.33933798240693, 34.531631223925686], [-77.33932074331854, 34.53162982043149], [-77.33928924263088, 34.53162357954307], [-77.33928433181357, 34.531590233363374], [-77.33923913648279, 34.53138596839304], [-77.33907516916503, 34.531332952933994], [-77.33895581393374, 34.531183227617646], [-77.33879662096822, 34.5310610348876], [-77.33861772743852, 34.530985716194515], [-77.33846701335429, 34.530827749408665], [-77.33818275158916, 34.53066468279374], [-77.33780083845612, 34.53084911040011], [-77.33778636021819, 34.530831408224444], [-77.33776745496046, 34.530851699587096], [-77.33739559752394, 34.53075501730117], [-77.33729003497668, 34.53068704661663], [-77.33730926816409, 34.530628611972986], [-77.33718120589148, 34.53045788189769], [-77.33714905109905, 34.53037691912537], [-77.33708264399877, 34.530227240370934], [-77.33701591580827, 34.53020027783486], [-77.3367738288837, 34.53017814547601], [-77.33662744002572, 34.53002532974408], [-77.33643224119061, 34.52995392469555], [-77.33636075169194, 34.52984143059115], [-77.33624353501062, 34.529653205127445], [-77.33621787754836, 34.52963344960682], [-77.33599709273942, 34.52949289221881], [-77.33586745047924, 34.52942274238159], [-77.33586080380933, 34.52942094639747], [-77.3358564613909, 34.529417935050404], [-77.3358341014664, 34.529413528911455], [-77.3357741108759, 34.529436165899575], [-77.33583462776808, 34.52944075049324], [-77.33561751085958, 34.52980488297743], [-77.3354545199229, 34.529824089104125], [-77.33527578464279, 34.529863553963196], [-77.3350653341704, 34.52967996027924], [-77.33482413408271, 34.52972260175811], [-77.33457576275637, 34.529794448061025], [-77.3345731961329, 34.52985368696122], [-77.33456725609436, 34.52991694449275], [-77.33449562385621, 34.53000383615774], [-77.33443370833429, 34.53001798026425], [-77.33427290762066, 34.52999776880926], [-77.33409277045934, 34.52992277361631], [-77.33409418190831, 34.52979219783521], [-77.33396927361214, 34.529695715625685], [-77.3334987207296, 34.529529319672164], [-77.33330537048948, 34.529672667316134], [-77.33312620180881, 34.5298169471045], [-77.33312059434381, 34.52983110362837], [-77.33319623967168, 34.52992928422499], [-77.33322933656243, 34.52996384004891], [-77.33328556557515, 34.53003884785669], [-77.33328708638923, 34.530040812039786], [-77.33329042992091, 34.53004755078013], [-77.33332192483454, 34.53013511713722], [-77.33332692524795, 34.53017998734978], [-77.3333489266563, 34.53027455309235], [-77.3333592182284, 34.53031991809432], [-77.33335013976495, 34.53033558273956], [-77.3333724681423, 34.53033820280619], [-77.33338159534631, 34.53034775352102], [-77.33341597566117, 34.53038731996047], [-77.33339492088793, 34.530441878257015], [-77.33345573269247, 34.53049112068586], [-77.33337064611254, 34.53046024286964], [-77.33334050410073, 34.530435011330916], [-77.33331514609674, 34.53040181867691], [-77.3332941211237, 34.53039747470625], [-77.33328265586783, 34.530382516920334], [-77.33325380125265, 34.53034943562285], [-77.33324472081452, 34.5303141859398], [-77.33321331085172, 34.530294053791216], [-77.33315344646056, 34.53026257617733], [-77.3330903701103, 34.5302110584142], [-77.3330633927538, 34.530193202833615], [-77.33301093007236, 34.530129071066895], [-77.33297331000361, 34.530083747897706], [-77.33294996258601, 34.53005453348823], [-77.3328992099399, 34.529991144591804], [-77.33288892029414, 34.52998005247827], [-77.33285867635757, 34.529951975683154], [-77.33277164416592, 34.52986792947186], [-77.33278423603961, 34.529817926703075], [-77.33270712101566, 34.52981128009691], [-77.3326453954575, 34.529848118473396], [-77.33256159271184, 34.52989813244861], [-77.33230907651873, 34.53004883564191], [-77.33213657858656, 34.53009717469793], [-77.33213679473576, 34.53020402843212], [-77.33220082449631, 34.53025928947265], [-77.33230147543291, 34.530376183284766], [-77.33232610451509, 34.530405834363584], [-77.33233538199644, 34.53042029059428], [-77.33242475544122, 34.530572524375415], [-77.33246334832899, 34.530646706663035], [-77.33249177062976, 34.53076696291049], [-77.33247845300757, 34.53088935077391], [-77.33247197394525, 34.53101944572758], [-77.33244663293877, 34.53113874200981], [-77.33252795204811, 34.531218419541446], [-77.33258206010117, 34.531307755159496], [-77.33260131039779, 34.53136131763133], [-77.33256970030706, 34.53142815818855], [-77.33266990332118, 34.53141442245129], [-77.33272076424129, 34.53146654972262], [-77.33278072693902, 34.531509836185045], [-77.33283462988055, 34.53155494807475], [-77.33273284475023, 34.53158722070552], [-77.33268048151712, 34.53160409348368], [-77.3326654048289, 34.53160819492522], [-77.33264753191816, 34.53159948759854], [-77.33240728579209, 34.53155102614616], [-77.33227705275446, 34.531427972712386], [-77.33225690963097, 34.53141083735388], [-77.33211245268507, 34.531291426519786], [-77.331888390474, 34.531261175866256], [-77.33184714476275, 34.531250812489965], [-77.33168652853936, 34.531248031588646], [-77.33156175097488, 34.531225392427054], [-77.33140631195364, 34.531232052518384], [-77.33110380030634, 34.53124048351982], [-77.3308824368193, 34.53125664970898], [-77.33059897019024, 34.53133573969127], [-77.33031406133227, 34.531441305582405], [-77.3300033380167, 34.53154251929749], [-77.32991815530198, 34.53158623480242], [-77.329817679494, 34.531579479971896], [-77.32954116650819, 34.531565872002034], [-77.32962995212887, 34.531721489241455], [-77.3296683168196, 34.53178300571176], [-77.32962115713171, 34.53185324268634], [-77.32951835116067, 34.531898741138015], [-77.32940959306055, 34.531998634530765], [-77.32919495648038, 34.532095870673885], [-77.329164510071, 34.53212770334037], [-77.32895788693082, 34.532374765247724], [-77.32871620549746, 34.53263244109451], [-77.32854459807547, 34.5328194946264], [-77.32848435982315, 34.53293246546107], [-77.32817475595704, 34.53313622855113], [-77.327917115626, 34.533234222870554], [-77.32785294463807, 34.5332680446133], [-77.32776813227296, 34.53343505038003], [-77.32751880121731, 34.53348205928537], [-77.32736479316239, 34.53358302682787], [-77.32728101061875, 34.533694671055876], [-77.32711580998826, 34.53393067917004], [-77.32695798682937, 34.53403420473505], [-77.32664720610192, 34.53417579657511], [-77.32602873291125, 34.53457535493894], [-77.32552498747395, 34.53481589341871], [-77.32425833661641, 34.53549838518671], [-77.3240959099464, 34.535621461337094], [-77.32341461540986, 34.5359401404478], [-77.32234743552523, 34.53640645180821], [-77.32200026881105, 34.53658826209465], [-77.3215680667781, 34.53686421963579], [-77.3200885389387, 34.537644632850125], [-77.31963910540247, 34.538120623157894], [-77.31938594397914, 34.53829617249843], [-77.31915948093919, 34.53843666924898], [-77.31829933996342, 34.538760675867934], [-77.31757479734723, 34.53905194518492], [-77.31632797943277, 34.53957552559574], [-77.31610109522059, 34.539677488464164], [-77.3159890259896, 34.53971262643691], [-77.31550879984135, 34.53998862137358], [-77.31420381948719, 34.54074088160111], [-77.3128078705765, 34.541440548060976], [-77.31141472648926, 34.54223962308649], [-77.3103480961349, 34.54283785801124], [-77.30962471479998, 34.54324783927847], [-77.3085271331974, 34.54393841426764], [-77.30803113100663, 34.5442345541061], [-77.30719730907558, 34.544803615983255], [-77.30675702029629, 34.545063740161304], [-77.30643650753088, 34.54526382507266], [-77.30501534567598, 34.546096059481286], [-77.30491699676494, 34.54615501009904], [-77.30484404016764, 34.546199802025505], [-77.3043867120326, 34.54646751303123], [-77.30325244862136, 34.54709704802183], [-77.30304312790018, 34.547229783338516], [-77.30283427240785, 34.54738832330253], [-77.30132141790808, 34.548378687014406], [-77.30006411368576, 34.549105362998304], [-77.2993907743705, 34.549425791278736], [-77.29875387332106, 34.54993228980431], [-77.29769659827699, 34.55058811436014], [-77.2968748382944, 34.5511468134557], [-77.29610410044631, 34.55179997047378], [-77.29527602664771, 34.552341458535444], [-77.29514580932128, 34.55240835490347], [-77.2942022859225, 34.55286112428274], [-77.29368474957893, 34.55321587000451], [-77.29285610012275, 34.55371599036748], [-77.29239284529108, 34.55396728295081], [-77.29209088621143, 34.55419798994211], [-77.29055761937781, 34.55502483698793], [-77.29051927302827, 34.55504219327046], [-77.29049990667473, 34.55505685938834], [-77.29045831618798, 34.55507949512108], [-77.28757889416357, 34.5567724993177], [-77.2872057447126, 34.557008305105775], [-77.28663684847622, 34.557377598195934], [-77.28501711232624, 34.558540160978325], [-77.28390266813429, 34.55932784092439], [-77.28242666292638, 34.560305531788764], [-77.28225259803867, 34.56042299061405], [-77.28196365512316, 34.56061393441068], [-77.28060532594787, 34.56139885500873], [-77.27952192649559, 34.562046169307784], [-77.27895701986012, 34.562416414842744], [-77.27802565403243, 34.56303964912628], [-77.27730642623187, 34.563528100270865], [-77.27689349344257, 34.56380846101624], [-77.27636551831047, 34.56419013625946], [-77.2756576507572, 34.564654016251275], [-77.27541628124825, 34.56479456057466], [-77.27490429774818, 34.56524309222512], [-77.27454144900551, 34.56550896269479], [-77.2743523327709, 34.565679420363836], [-77.27385704770869, 34.56603648757882], [-77.27325008684473, 34.5663501320345], [-77.27235754159008, 34.566946419230476], [-77.27207882494356, 34.567083669912684], [-77.27199586476996, 34.567194211076156], [-77.27187938829735, 34.56734090959969], [-77.27117657343395, 34.56807247331006], [-77.27065193630085, 34.56844334243719], [-77.26993199847179, 34.568917296327825], [-77.26979909966371, 34.56899921831215], [-77.26953937410613, 34.56918620019449], [-77.26898700006396, 34.56959132441515], [-77.2682855297167, 34.57015711510725], [-77.26753791579489, 34.5706143862428], [-77.26737236648864, 34.57078406713856], [-77.2667766916806, 34.57131591320704], [-77.26649825272847, 34.57147529649684], [-77.26568829872753, 34.57191506835695], [-77.26518044069401, 34.57231431268833], [-77.26405469925548, 34.57309098510027], [-77.2639848441442, 34.57316294914503], [-77.26379302475323, 34.573309764798026], [-77.26280713814324, 34.57401297382343], [-77.26247955707157, 34.57431891246997], [-77.26153985002662, 34.57500393716978], [-77.26080815835695, 34.575461247258026], [-77.26038238581042, 34.57570753888936], [-77.25959965606481, 34.57635009223272], [-77.25930315534036, 34.576565295505766], [-77.25919345310439, 34.57665403241862], [-77.25891215226117, 34.57686587465541], [-77.25809870066342, 34.577413181168026], [-77.25775235410637, 34.57800125880124], [-77.25649628298675, 34.57830882070546], [-77.25508659675504, 34.57906143137618], [-77.25381772522442, 34.579759614634746], [-77.25301381218627, 34.580286076484285], [-77.25232773641372, 34.5807295789022], [-77.25210689457526, 34.580866966849655], [-77.2516161378245, 34.58128976076183], [-77.25126892867493, 34.58158888385957], [-77.25074273233926, 34.58228272518083], [-77.25051603333337, 34.58247227539151], [-77.25010543965762, 34.5828446659671], [-77.24931624489116, 34.583643067868884], [-77.24797081008234, 34.58415715905515], [-77.24740073972396, 34.584568403895844], [-77.2461676968058, 34.58539268558084], [-77.24505956790165, 34.58581316695003], [-77.24331820567227, 34.58619533644813], [-77.2427373755218, 34.58657285266913], [-77.2421333331879, 34.58729872626136], [-77.2420126541868, 34.58745842807508], [-77.24186717533598, 34.587533936150315], [-77.24156247249573, 34.58782855260004], [-77.24048691654936, 34.588935514335205], [-77.23793599095222, 34.58833041291645], [-77.23615070153875, 34.588881612847004], [-77.2349878558592, 34.589302186280996], [-77.23377058322859, 34.59042866652482], [-77.23362919184194, 34.59056814118259], [-77.23355339706801, 34.590655608091794], [-77.233266201397, 34.5908926829966], [-77.23186216728928, 34.59178057509099], [-77.23087406420697, 34.592236174055586], [-77.2284539375314, 34.593735550137744], [-77.22816077703249, 34.593746776934125], [-77.22682733020032, 34.59361744254536], [-77.22652549479014, 34.593778390205614], [-77.22611217852054, 34.594553788776324], [-77.22599344235503, 34.594808159220484], [-77.22579724963046, 34.59560633184557], [-77.22524828537605, 34.59641503522983], [-77.22478595896027, 34.59741191055457], [-77.22434277001663, 34.59836455513587], [-77.22394091322019, 34.59923065946424], [-77.22352018005803, 34.60013737835931], [-77.2235184693328, 34.600142375262855], [-77.2234579831698, 34.60107797717379], [-77.22341599915917, 34.60165013070208], [-77.22328664562627, 34.60200718080192], [-77.22318460798697, 34.60246883886508], [-77.22284227990414, 34.60291481124184], [-77.22205540588548, 34.60409411637596], [-77.22152328130865, 34.60469608445155], [-77.22014933690538, 34.60765827172346], [-77.21884203634399, 34.6082552188456], [-77.21768289296537, 34.60967213990306], [-77.21748806424624, 34.610033756172314], [-77.21723461487338, 34.61032507678391], [-77.21635872479928, 34.61182996330169], [-77.21501297616946, 34.6136087007784], [-77.21501245225234, 34.61360959013861], [-77.21384553159689, 34.615402362807274], [-77.21249926561492, 34.61663251493705], [-77.21211718369646, 34.617151242023], [-77.21139408136332, 34.61790128742428], [-77.2107447201337, 34.61892824029039], [-77.20952791229779, 34.61924922768447], [-77.20810825308477, 34.62059914008349], [-77.20811306099074, 34.62060569464358], [-77.20811056827564, 34.620618428333], [-77.2080889200192, 34.62061548348851], [-77.20803875773622, 34.62059981949076], [-77.20618924480083, 34.61984718937536], [-77.20515949423259, 34.619737920620096], [-77.20366126084026, 34.61928938259122], [-77.20112774652863, 34.621034914446426], [-77.19998932487108, 34.62128267517039], [-77.1964497988855, 34.621568486304014], [-77.19400764477861, 34.62176725513636], [-77.19141993392915, 34.62417859655902], [-77.1892271402478, 34.624767523020274], [-77.18912826249873, 34.62622343785512], [-77.19093320907399, 34.627830120558016], [-77.19377871604456, 34.63036274816484], [-77.19561989894964, 34.63189837249991], [-77.19618571070288, 34.632401914384815], [-77.19630202836706, 34.63286989169778], [-77.19776191020118, 34.63432978682535], [-77.19888350191741, 34.634332321449605], [-77.20028582997315, 34.63600814650073], [-77.20323441340273, 34.63469310809048], [-77.20323444769551, 34.633418310254335], [-77.20931232722586, 34.631516775656465], [-77.20955788676083, 34.63391822390154], [-77.2075432860065, 34.636973030024926], [-77.20699611524682, 34.63748671308308], [-77.20906171456865, 34.639344199301426], [-77.20906173600346, 34.63987785557711], [-77.20857271004205, 34.64138228454226], [-77.2092711534609, 34.64220462105509], [-77.21002629937048, 34.64336634750251], [-77.20982028858467, 34.64336634750631], [-77.20706945957703, 34.64336633806168], [-77.20628821347435, 34.64331951247588], [-77.20361398387391, 34.642757217013255], [-77.20045859232499, 34.64274581185113], [-77.20020945983903, 34.64265259616357], [-77.19983027664777, 34.64257656813858], [-77.19771946831962, 34.642113744741664], [-77.19736051157322, 34.64177726028186], [-77.1957661004802, 34.641374330827304], [-77.1932833070197, 34.640172987890644], [-77.19205094558153, 34.63893607047069], [-77.18689680409523, 34.63881093323493], [-77.18565093306229, 34.638245079433304], [-77.18337339005524, 34.63806456131876], [-77.18500553610146, 34.639517498559236], [-77.18733099634333, 34.64158724275226], [-77.18965657264816, 34.64365693754346]], [[-77.42726645501145, 34.75823022538552], [-77.42728927697492, 34.758084346998075], [-77.42719900280056, 34.75796526340287], [-77.42708496714074, 34.75785952358831], [-77.42704300351606, 34.75782755808191], [-77.42690327434754, 34.75787909705444], [-77.42673819493443, 34.75770359999205], [-77.42662791432699, 34.75772259347232], [-77.42648850879043, 34.75766186717495], [-77.42637050109846, 34.7575041188347], [-77.42623858614527, 34.757635366841235], [-77.42604981498275, 34.757504142305045], [-77.4259734706242, 34.757430256899234], [-77.42568420654243, 34.75747766614895], [-77.42560526217781, 34.75749592852238], [-77.4254801333349, 34.75751824558266], [-77.42539421163663, 34.75755332904635], [-77.42530241110077, 34.75760186762774], [-77.42521094020103, 34.75763767327272], [-77.42498443172171, 34.75783031110163], [-77.4249642131567, 34.75785111088793], [-77.42486055463458, 34.75807430184332], [-77.42449778653062, 34.758434059590286], [-77.42444034619353, 34.75843727515234], [-77.42391794839614, 34.758221601744296], [-77.42379563571663, 34.75813201569966], [-77.42366150783651, 34.75799978025653], [-77.4236026990884, 34.75797245684711], [-77.42337592798853, 34.757878574048384], [-77.42289176958333, 34.757386331401506], [-77.42288513748139, 34.75737890664957], [-77.42288141763993, 34.75737152086189], [-77.42275301037746, 34.75698762408585], [-77.4225536420229, 34.75670910189331], [-77.42250021117313, 34.75664665832741], [-77.42245752377949, 34.75662066940755], [-77.42238593068156, 34.75657708174826], [-77.42217685330738, 34.75648253270161], [-77.42193519130747, 34.75643587790757], [-77.42187464983193, 34.75641874337522], [-77.42157011493836, 34.75636539568934], [-77.4213437004147, 34.75637027746088], [-77.42125036991348, 34.756359778556615], [-77.42118496079998, 34.756302320531944], [-77.4210549798405, 34.75618537082157], [-77.4209659665916, 34.755753192341594], [-77.4208874544041, 34.755567750763], [-77.42087798749364, 34.75553757172345], [-77.42085986244845, 34.75549372474303], [-77.42080764353551, 34.75534371649166], [-77.42070971666088, 34.755334564979655], [-77.4205688401055, 34.75539134523406], [-77.42034132140626, 34.75531496569939], [-77.42027334241148, 34.75530441797615], [-77.41973569724269, 34.755121110110636], [-77.41969433527917, 34.75508918011024], [-77.41956569192129, 34.75474562447181], [-77.41937026963613, 34.75464213899774], [-77.41919040144286, 34.75461477766342], [-77.41904405768236, 34.75464396361505], [-77.4189728511625, 34.75474079276079], [-77.41879427662454, 34.75483620422382], [-77.41898947907848, 34.75530840815845], [-77.4193512868286, 34.75528138689578], [-77.41965518273624, 34.7552243469654], [-77.41978863353366, 34.75532563468075], [-77.42022011765927, 34.75548817050765], [-77.4204375038121, 34.75572123266118], [-77.42045717799517, 34.75597645247687], [-77.42058601749953, 34.75643915998756], [-77.42060633493072, 34.75654357968106], [-77.42061470896601, 34.756590581707826], [-77.42061097935635, 34.756669093259525], [-77.42062705279022, 34.756981312102766], [-77.42066191239388, 34.7571661526649], [-77.42082791551537, 34.75734393369987], [-77.42094500136504, 34.7574140558562], [-77.421105737711, 34.757477349499084], [-77.4212273438808, 34.757546427873876], [-77.42132904113916, 34.75758136195527], [-77.42152199849369, 34.75763629369063], [-77.42169732254538, 34.75769586190063], [-77.42192900587533, 34.75777757726642], [-77.42208896166218, 34.75789318204409], [-77.42252667217228, 34.758302767317296], [-77.42259832588921, 34.75834894963342], [-77.42263844439655, 34.7583745192163], [-77.42279995384425, 34.75847238367525], [-77.4231443454405, 34.75867817300501], [-77.42370447104285, 34.758822774839054], [-77.42373955911785, 34.75883755080493], [-77.42467480893698, 34.75912752368372], [-77.42483893440846, 34.75908834772365], [-77.424919185806, 34.75919361421936], [-77.42525339827459, 34.75877063388988], [-77.42540671399895, 34.75852008145289], [-77.42578060404479, 34.758433774511275], [-77.42615093052828, 34.75852518593694], [-77.42633014585168, 34.75853274913097], [-77.42640880431438, 34.758479237382566], [-77.42643584269284, 34.758576594344575], [-77.42710247556444, 34.75829860640727]], [[-77.22408677534813, 34.62233782289973], [-77.22481955626307, 34.622333652080975], [-77.2249408523942, 34.62165185003174], [-77.22673476490147, 34.620191025828326], [-77.22730667647409, 34.61928618930936], [-77.22963608871353, 34.616956711492435], [-77.22992120536104, 34.61667159522712], [-77.23014691999984, 34.616552979627336], [-77.23067237014872, 34.61599750571398], [-77.23157967087865, 34.61519764211817], [-77.23347193307532, 34.61552173251847], [-77.234202822709, 34.61568790446457], [-77.23454699361031, 34.61609371144825], [-77.23462094215145, 34.61656135393763], [-77.23452670444884, 34.61703481222442], [-77.2329911315427, 34.61808037747991], [-77.23088425836569, 34.61720885545558], [-77.23109209320461, 34.619350985114075], [-77.22944050875458, 34.62040451131], [-77.22902039212966, 34.6208106039801], [-77.22731841567301, 34.62370148951678], [-77.22703434146813, 34.62398555936268], [-77.22686591592594, 34.6241539764747], [-77.22620694716073, 34.624812882126186], [-77.22613877243737, 34.624857617255444], [-77.2261398405789, 34.62487703855611], [-77.22541359757977, 34.62549206366017], [-77.2248631434576, 34.62569967184567], [-77.22368480761666, 34.62646116248886], [-77.22328899852991, 34.62623215230009], [-77.22233155213, 34.62580224087459], [-77.2221502988089, 34.62563436181104], [-77.2219424757195, 34.625034320814166], [-77.22196192619249, 34.623585233007276]], [[-77.34616775555234, 34.5679112773687], [-77.34678709121744, 34.570102565572796], [-77.34678061331532, 34.57032700407997], [-77.34682786946208, 34.570499479751824], [-77.34699406948849, 34.570751736543826], [-77.34705746290763, 34.57113627108224], [-77.34699378611184, 34.571175589617084], [-77.34693199150757, 34.571220876171054], [-77.34638119434325, 34.57142272058398], [-77.34620560741467, 34.57147973234978], [-77.34588291692259, 34.571652825778024], [-77.34571474917242, 34.57164971232326], [-77.3454176150909, 34.571503738907424], [-77.34503901185198, 34.57142662594408], [-77.34486718877534, 34.57119559523276], [-77.34424730960163, 34.571128236082004], [-77.34384203657288, 34.57097344773622], [-77.34365130492812, 34.5709826548578], [-77.34323600010708, 34.57083686936413], [-77.34266442122444, 34.57049022707362], [-77.34226638213354, 34.57057382995434], [-77.34177414548276, 34.57051665306503], [-77.34136408235241, 34.57038035327563], [-77.34089318923657, 34.5703247212024], [-77.34069072187793, 34.570200844467536], [-77.34044437667684, 34.56980594627809], [-77.33990298918162, 34.5698916448736], [-77.33962491475621, 34.56965801693236], [-77.33956239758007, 34.569185507097], [-77.33911561851092, 34.56911589771378], [-77.33890274595186, 34.56891277664939], [-77.33885367297171, 34.56835364321476], [-77.33832832036532, 34.56826551992164], [-77.33820436415651, 34.56816411316012], [-77.33787032550792, 34.56785693270165], [-77.3378617422596, 34.56778883601726], [-77.337917183483, 34.56776194721496], [-77.33830496733854, 34.567300563631775], [-77.33829867766411, 34.56726869294553], [-77.33828949793391, 34.566497015598756], [-77.33830283442923, 34.56645178606874], [-77.33829868744553, 34.566418907634436], [-77.33827144302899, 34.56603175775393], [-77.33833014351057, 34.56591309296144], [-77.33861906937412, 34.565868543985765], [-77.3388896087622, 34.5657646429857], [-77.33911809939738, 34.56587415581489], [-77.33939593237983, 34.56599510187321], [-77.34000030451526, 34.5662076899314], [-77.3406931614943, 34.56692939177922], [-77.34105458904189, 34.566445164289995], [-77.34148133848215, 34.56660055011959], [-77.34170988937488, 34.56656465507431], [-77.34226903640217, 34.56692132403934], [-77.34330882133769, 34.5668522880701], [-77.34384495982452, 34.566842661512105], [-77.34438296561495, 34.5666958732579], [-77.34525198222393, 34.567150534086835], [-77.34542052252297, 34.56728051522089]], [[-77.42974711451325, 34.731828999585176], [-77.42995082525138, 34.732113000644325], [-77.42968593051167, 34.73260651682538], [-77.42971106121621, 34.73293451301416], [-77.42949294316053, 34.7330390146573], [-77.42936576497951, 34.73324983279728], [-77.42932074027647, 34.73335715139544], [-77.42938901819683, 34.733617026318775], [-77.42938867433641, 34.73368666332605], [-77.42942737340667, 34.73367969195851], [-77.42943747583709, 34.733677479534215], [-77.42975883845881, 34.733619351549486], [-77.42985652739824, 34.73363304382174], [-77.43005311885216, 34.733710221713906], [-77.43021738109029, 34.733787360026454], [-77.43029486128552, 34.733977133540996], [-77.43029544605307, 34.733977989824986], [-77.43029545593208, 34.733980538598594], [-77.43035010938331, 34.73417838129755], [-77.43048428665107, 34.7343228626203], [-77.43010862928746, 34.73462595014097], [-77.43005836439642, 34.73471060009992], [-77.42996417244089, 34.73470014240153], [-77.4293777010511, 34.7349359935362], [-77.42899603355292, 34.734361780122995], [-77.4289753683125, 34.7343054551954], [-77.42893965945932, 34.73423427288191], [-77.42855690292049, 34.73364924229281], [-77.42863868565365, 34.733553125041006], [-77.42848692059856, 34.733583346800714], [-77.42832071178151, 34.73336720942369], [-77.42803149626936, 34.732941720194276], [-77.42801891563158, 34.73291888207022], [-77.42801716966147, 34.73290153738424], [-77.42792463869672, 34.73273501588259], [-77.42792322641843, 34.732717766218634], [-77.42795724990161, 34.73260106362864], [-77.42806458961142, 34.732453445782554], [-77.42810188985138, 34.732372087868775], [-77.42808525362216, 34.732234673075496], [-77.42816381645252, 34.73196567062401], [-77.42783651856783, 34.731720272981555], [-77.42775899262693, 34.73166825466819], [-77.42772435254318, 34.731644990854896], [-77.42745879801954, 34.73136699053766], [-77.42727586369546, 34.73112238142534], [-77.42719324512488, 34.73103137823652], [-77.42714776702962, 34.73092046914557], [-77.42698846023772, 34.73067041810762], [-77.42682554483596, 34.730463195692366], [-77.426630732045, 34.73037325527475], [-77.42646104904945, 34.73032863342219], [-77.42623072634373, 34.73030315761047], [-77.42621309067646, 34.73029739379395], [-77.42601558810647, 34.7301834665903], [-77.42597698011112, 34.730072323587244], [-77.42593435451995, 34.729937260512756], [-77.42590992274978, 34.72978116209845], [-77.42580001665473, 34.72957627966989], [-77.42572288181788, 34.72941280137147], [-77.42559014569869, 34.72925787175055], [-77.42546052071248, 34.729075859266516], [-77.42537709665004, 34.72882252167552], [-77.42531147565188, 34.728691650413], [-77.42517505528494, 34.72855370209414], [-77.42522277923146, 34.72830522559394], [-77.42524751347617, 34.72801996115431], [-77.4255927231386, 34.727681577956986], [-77.42562090318266, 34.72746005817946], [-77.4260066347838, 34.72716718909376], [-77.42649866793047, 34.727163009908985], [-77.42661609424323, 34.7272546941247], [-77.42706983005735, 34.72740468927994], [-77.42717879989783, 34.72757693317711], [-77.427350941085, 34.727840920502175], [-77.42745428202409, 34.72829134670968], [-77.42758897216227, 34.728634392161894], [-77.42774962370748, 34.72889458866049], [-77.42811865680184, 34.72930620308179], [-77.42838972604612, 34.72948944701733], [-77.42846849216882, 34.72960665476524], [-77.42864785125371, 34.72976761346099], [-77.42878665155965, 34.72992031944309], [-77.42878791796979, 34.730328722781024], [-77.42884642104822, 34.730396078667574], [-77.42912410667216, 34.730672320521734], [-77.42918892009848, 34.731158315155476]], [[-77.24936033901383, 34.608305266830726], [-77.2496660350678, 34.60799210616272], [-77.24971511579216, 34.607861855298374], [-77.24981984399429, 34.607754822284356], [-77.25004050219341, 34.60772633717583], [-77.25028734789062, 34.60775953958327], [-77.25080187217422, 34.60788812434947], [-77.25082529868091, 34.60794926155327], [-77.25062307491865, 34.608368666537544], [-77.25058788639684, 34.60843783301753], [-77.2503517707979, 34.60877734892358], [-77.2503051831575, 34.60884374815091], [-77.24971630945123, 34.6087080815593], [-77.24960249571282, 34.60859165121733]], [[-77.42695783442957, 34.68403647025281], [-77.4269614872496, 34.68403329562087], [-77.42696156575371, 34.68403065915032], [-77.42696487661502, 34.68402976914282], [-77.42696752138501, 34.68403242752625], [-77.4270848155955, 34.684168898789565], [-77.42711062237984, 34.68419589532566], [-77.42733211030583, 34.68442153077014], [-77.42742863150457, 34.68450955669737], [-77.42761169436164, 34.68456258152309], [-77.42780339983359, 34.68465917421409], [-77.4278902853843, 34.68470706622012], [-77.42797601259166, 34.68472749141355], [-77.4283835322611, 34.68494997202203], [-77.42843919581058, 34.68498056468817], [-77.42844397747757, 34.68500810446956], [-77.42857523258485, 34.685173214834236], [-77.42872373534584, 34.68530819413332], [-77.42869704438593, 34.685372369262], [-77.42862967235551, 34.68534745127345], [-77.42834231186015, 34.68535945489856], [-77.42826267729964, 34.68541007597216], [-77.42805980494839, 34.685228494006104], [-77.42792928292432, 34.68523892947876], [-77.42779426127834, 34.685249724526436], [-77.42773181522614, 34.685254717113125], [-77.42771123164587, 34.68525636275744], [-77.4276374239581, 34.685248090912374], [-77.4274180828932, 34.68523166765106], [-77.42720274816082, 34.685172886217835], [-77.42712022460785, 34.685153760939045], [-77.42702096021871, 34.68512607193017], [-77.42683105109376, 34.6850458437114], [-77.42661068166049, 34.684952746575526], [-77.4265424822503, 34.68493583848503], [-77.42650544015429, 34.68489483639665], [-77.42651514357591, 34.68485556064176], [-77.42649605952195, 34.68476533653028], [-77.42647914133242, 34.68470319930064], [-77.42647861086586, 34.68468284427506], [-77.42648560499471, 34.684578787145874], [-77.42648638506266, 34.68456596398814], [-77.42649152647608, 34.68455832444521], [-77.42655054601201, 34.68448047381512], [-77.42660692493976, 34.684406105982454], [-77.42665337566783, 34.68434483425106], [-77.42667694747757, 34.68431319504684], [-77.42675062741918, 34.68421655181777], [-77.4270039152053, 34.684187904089725]], [[-77.2827319139937, 34.583182118096744], [-77.28282875248189, 34.58275567108923], [-77.2829348644196, 34.582564339470224], [-77.28313993720353, 34.582713087764155], [-77.28347120612179, 34.58289017880671], [-77.28369161944137, 34.58314909412432], [-77.28404752720427, 34.58343282722774], [-77.2838419025602, 34.583900277438545], [-77.28367891490564, 34.58406796010239], [-77.28271293038912, 34.584389984149674]], [[-77.3327508971499, 34.52792565571174], [-77.33278402456347, 34.52792832084773], [-77.3330257369542, 34.52787286343546], [-77.33307372320434, 34.52766833941001], [-77.33314424609264, 34.52736618994278], [-77.33282485603908, 34.527373976521346], [-77.3327633901603, 34.527387532785255], [-77.33269828748058, 34.5274303167026], [-77.33222930446289, 34.527658190502706], [-77.33201267096605, 34.52798842614177], [-77.33238514206627, 34.52796497566854], [-77.33217083161574, 34.52812654383364], [-77.33196290409222, 34.5280528399225], [-77.33176418848987, 34.528299076597534], [-77.33167399815326, 34.528381429559175], [-77.33156126228056, 34.528445500534026], [-77.33154967266839, 34.52845232822106], [-77.33156017837172, 34.528492160656484], [-77.33157529735495, 34.528560630022284], [-77.33157263892598, 34.52857143395382], [-77.33157949094634, 34.52858382200191], [-77.33162454089874, 34.528644036072606], [-77.33166484990502, 34.52862538936632], [-77.33167482789757, 34.528617944973995], [-77.33175454080187, 34.52857390785377], [-77.33178302664612, 34.52855873062756], [-77.33180405461994, 34.5285545996443], [-77.33182880554503, 34.528534601678885], [-77.33183289821153, 34.528520912949894], [-77.33185431915028, 34.52850296881486], [-77.33188111900579, 34.52848229139181], [-77.33195436299644, 34.528420590899835], [-77.33202561027346, 34.52838389625142], [-77.33203250290367, 34.52830759635145], [-77.33233893884017, 34.528224235524085], [-77.3323515061739, 34.52822157653883], [-77.33236223675776, 34.52821975205358]], [[-77.36948969606199, 34.588661142895454], [-77.36904991415855, 34.58873406946824], [-77.36885159553691, 34.58901328357343], [-77.36839797175513, 34.58914525740504], [-77.36826167040591, 34.58901798423866], [-77.36794538579439, 34.588849052842505], [-77.36747363040638, 34.5887913265638], [-77.36728781747874, 34.588803107046466], [-77.3672602481654, 34.58860689235793], [-77.3671853512366, 34.58830687705433], [-77.36747404516392, 34.58778116295247], [-77.36750033575974, 34.58775151579909], [-77.36752076528239, 34.587720261744394], [-77.36805654132635, 34.5874214068474], [-77.36826235568437, 34.587310130615464], [-77.36872880647194, 34.58719967216224], [-77.36905062610799, 34.58691802437843], [-77.3694821094528, 34.58697288061184], [-77.3701627214863, 34.58683966943558], [-77.37062688557864, 34.58682534702275], [-77.37132743496832, 34.58641737559034], [-77.37141514459215, 34.58641885886274], [-77.37170099036291, 34.58657710118121], [-77.37220356065784, 34.585549376487386], [-77.37257276340723, 34.58659441739961], [-77.37231225926817, 34.5870301318508], [-77.37229824541558, 34.58713477149597], [-77.37220301187384, 34.58709369733382], [-77.37217587880686, 34.5870790168598], [-77.37150273437591, 34.58724143596095], [-77.37141480209291, 34.587358948742384], [-77.37083518159142, 34.58746757520053], [-77.37066075230761, 34.58811714211597], [-77.3706263552935, 34.58824528815166], [-77.37041004467996, 34.58876953102346], [-77.3702320523058, 34.588883029013594], [-77.3701203423206, 34.58873995056908], [-77.36983810743268, 34.588567539204554]], [[-77.3896244052055, 34.51231900515627], [-77.38969185371639, 34.512323592807725], [-77.38967279795175, 34.51236848747686], [-77.38966996931732, 34.51239843965188], [-77.38962010794157, 34.51250963856775], [-77.38951273222139, 34.51281860532068], [-77.38912439334655, 34.51293728262384], [-77.38889350184711, 34.51301404037685], [-77.38882347338301, 34.51303157070157], [-77.38872463566726, 34.513056277486996], [-77.38818312253404, 34.51316513453625], [-77.38803409516993, 34.51323141489316], [-77.3878007282619, 34.513273265450685], [-77.38760322253538, 34.51315675746859], [-77.38735945976718, 34.51312465501193], [-77.38725344951362, 34.51304416554717], [-77.38701091499013, 34.51290580637019], [-77.38696556108883, 34.51275908878149], [-77.38700680863391, 34.512592908475035], [-77.3870072801262, 34.512508237363264], [-77.38727163547871, 34.51223841314304], [-77.38728169687066, 34.51222997281445], [-77.38733627951872, 34.51221593955435], [-77.38787812955337, 34.51202345585561], [-77.38821833347097, 34.51199119142557], [-77.38884732830343, 34.51197376920722], [-77.38887424031854, 34.51197720537451], [-77.38890849424655, 34.511989101427815], [-77.389332523823, 34.5121129192003]], [[-77.37576693098566, 34.581437685609416], [-77.37612160450018, 34.582210407563224], [-77.37608475626601, 34.582241015205454], [-77.3753569416393, 34.58244859902021], [-77.37528989687637, 34.58235554436536], [-77.37519902084259, 34.58168993283023], [-77.37516474293393, 34.58152445433833], [-77.37516144326449, 34.58131388931521], [-77.37535743806427, 34.58090177368255], [-77.37583896256763, 34.58090846299778]], [[-77.35132336370955, 34.557347625670275], [-77.3517301437274, 34.557341490808916], [-77.35210581462434, 34.55726858979564], [-77.35300132380826, 34.55754454056479], [-77.3527906007252, 34.55812963568829], [-77.35330544965541, 34.55796176162163], [-77.35362545666833, 34.557799494230316], [-77.35363031773953, 34.55745401160026], [-77.35335995937002, 34.55743451804054], [-77.353377060421, 34.5567177344319], [-77.35333176515017, 34.55664788201829], [-77.35338249425737, 34.556558455010354], [-77.3533065982952, 34.55605574568749], [-77.35321755066217, 34.555911286648595], [-77.35310768780701, 34.555831032672884], [-77.35251960507509, 34.555883191656875], [-77.35240060895057, 34.55585824674415], [-77.35195440566224, 34.55586011760553], [-77.35191957015115, 34.555757210464535], [-77.35173854197575, 34.555699170073154], [-77.35151016389702, 34.55571350224028], [-77.3511584256077, 34.55562192982394], [-77.35101049372726, 34.5556088227437], [-77.35055800857666, 34.55545844359541], [-77.35049853773941, 34.55599615821703], [-77.35039024790964, 34.556222120327234], [-77.35039598811834, 34.556481005935765], [-77.35051026802259, 34.55751944904907]], [[-77.36901076973534, 34.52140703202112], [-77.36886169639622, 34.52133930240173], [-77.36862057321004, 34.521306862756994], [-77.36858124233258, 34.52128576326544], [-77.36854844570969, 34.52109368568786], [-77.36851958641736, 34.520982210221725], [-77.36854955466353, 34.520800675549474], [-77.3685455420626, 34.52061309384543], [-77.36856772448523, 34.52050891936439], [-77.36863962126016, 34.520471035368594], [-77.36877752026592, 34.5203626518057], [-77.36883879363927, 34.52034223898831], [-77.3689882849899, 34.52027787312862], [-77.36903707945129, 34.52025232540838], [-77.36904439915635, 34.52024416163875], [-77.3690492105093, 34.520239018248276], [-77.36907464887138, 34.52021248264682], [-77.36911777808925, 34.52016793028946], [-77.36911962535434, 34.52015658916892], [-77.36913509044014, 34.52010422859891], [-77.36909578799482, 34.52002081103538], [-77.36908653446639, 34.51998881234944], [-77.3690694667213, 34.519975010154745], [-77.3690448193192, 34.51991263245002], [-77.36902760308769, 34.51987489135408], [-77.36903617037852, 34.51975882457853], [-77.36903727722469, 34.519751083665454], [-77.36903833593465, 34.519744496915095], [-77.3690488851172, 34.519734190091775], [-77.36922091217718, 34.51958498439522], [-77.36928481691112, 34.51957055978751], [-77.36944570278057, 34.519543397378264], [-77.36949058927769, 34.519563342896184], [-77.36956046235939, 34.519603248108524], [-77.3696720269854, 34.519659608791436], [-77.36976088192435, 34.519692894589596], [-77.3698338179621, 34.51973461856046], [-77.36994312407194, 34.51979630440772], [-77.37005252818, 34.5198495999806], [-77.37011161648388, 34.51991012516865], [-77.37009453815787, 34.51996595946614], [-77.37010149521649, 34.52001348428657], [-77.370061062894, 34.52009319756168], [-77.37002072378107, 34.52014430084454], [-77.36998177723913, 34.520203584719674], [-77.36987945938952, 34.52032730493201], [-77.36988013337864, 34.52036409975555], [-77.36981809950944, 34.52042476597644], [-77.36970542964866, 34.52056582464886], [-77.3694363724888, 34.52067287885563], [-77.36942581922479, 34.52067812111249], [-77.36941982484016, 34.52067938169685], [-77.36938987560413, 34.52069799738977], [-77.36918284477431, 34.52080824461927], [-77.36918603728894, 34.52085233374789], [-77.36916698787573, 34.520956526976285], [-77.36918099703132, 34.52105570229367], [-77.36918060212919, 34.52107697863865], [-77.36917121412404, 34.521104953513714], [-77.36921740600863, 34.521194088332685], [-77.36915031370908, 34.52128912819825]], [[-77.38408395362333, 34.51437165081966], [-77.38372930552575, 34.51442574915053], [-77.38329453889108, 34.5145719456326], [-77.38281502464557, 34.5145270086875], [-77.38251076780213, 34.514522626338994], [-77.38226378318572, 34.514755503119474], [-77.38216785016454, 34.51492013585181], [-77.38201187490012, 34.5151296233436], [-77.3819687314922, 34.515193685279186], [-77.38170521039841, 34.51543581387832], [-77.38166132262377, 34.51545575349741], [-77.3813198051529, 34.51552643145417], [-77.38131068968265, 34.51552736798764], [-77.38099841628433, 34.51552842174486], [-77.38091840530495, 34.51552012229513], [-77.38079122737123, 34.51552912058303], [-77.38065896939027, 34.51554408810697], [-77.38052547096241, 34.51554157157419], [-77.38045872153032, 34.51553386990765], [-77.380527695221, 34.515443368100364], [-77.38055861459425, 34.51541595071485], [-77.38054370672428, 34.515399198814016], [-77.38064983341782, 34.51530958746305], [-77.3808841201566, 34.51510527598158], [-77.38092835877097, 34.515080575259354], [-77.38101215458823, 34.51503517598999], [-77.38132581683098, 34.51485921217442], [-77.38138517257592, 34.51482472757833], [-77.38172591171131, 34.51452126283024], [-77.38177015758916, 34.51451535099034], [-77.3817574707368, 34.514489660893574], [-77.38180813841659, 34.51443231109675], [-77.38203921793087, 34.51414957616959], [-77.38233155221506, 34.51403587869139], [-77.38252368848275, 34.513951577469186], [-77.38258832484931, 34.513920046775574], [-77.38269595702566, 34.51386464306849], [-77.3830822070205, 34.51366364885669], [-77.38331758602527, 34.513552921667], [-77.383689499266, 34.513462425807454], [-77.38374255335772, 34.513450012941654], [-77.38410651171961, 34.51337383628154], [-77.38436967633538, 34.51329665737697], [-77.38489741776715, 34.51310695058709], [-77.38493959892446, 34.513077251364166], [-77.38499949885743, 34.513042713512334], [-77.38529515677642, 34.51287223937418], [-77.38541009212918, 34.51280947286812], [-77.38569154404372, 34.512697267444395], [-77.38605252395115, 34.5126660391805], [-77.38608452737576, 34.51267293950912], [-77.38638017900183, 34.51284353966775], [-77.38640325304607, 34.51288323341143], [-77.38646935258643, 34.51300990333481], [-77.38664484344375, 34.51318309781457], [-77.38659740385015, 34.51330186677312], [-77.38657872196148, 34.51337797994367], [-77.38645607112099, 34.51359811386334], [-77.38638333824262, 34.51377959391066], [-77.38595979175258, 34.51388351426172], [-77.3857139073904, 34.513950600022895], [-77.38566300346201, 34.513960749361814], [-77.38559979088662, 34.51397468753946], [-77.38492387577386, 34.51403295020608], [-77.38488034727463, 34.514036770184056], [-77.3848764154703, 34.51403633066367], [-77.384857154552, 34.514042574808826], [-77.3842832389464, 34.51424794259983]], [[-77.36989755965901, 34.57300052727463], [-77.36990286811616, 34.5737913167718], [-77.37026298932331, 34.57413673842294], [-77.37029832980936, 34.5741589091024], [-77.37063159638576, 34.57437104040959], [-77.37075256228954, 34.574387677487316], [-77.37136277011702, 34.5743689006942], [-77.37141961144928, 34.57431281886507], [-77.37158339187019, 34.574221896196974], [-77.37193333819012, 34.57405228632771], [-77.37198307922137, 34.573733815640516], [-77.37203779725095, 34.57348376238191], [-77.37202449917763, 34.573287964729744], [-77.37195917847818, 34.572914219215996], [-77.37158385463965, 34.572700040923], [-77.37156697288906, 34.57254438797123], [-77.37124451439882, 34.572559536167226], [-77.37119215595419, 34.57275647005876], [-77.37076228564965, 34.572958642957374], [-77.37063212669, 34.57298711452821]], [[-77.42989095217403, 34.68283717633507], [-77.43021782385883, 34.682899082640404], [-77.43029085343429, 34.68305437941709], [-77.43048356211034, 34.68344816908953], [-77.43008982833739, 34.68374917747453], [-77.43002317696484, 34.6838012033977], [-77.42975699023498, 34.68375312512796], [-77.42951785417794, 34.68372289215078], [-77.42946245026624, 34.68370282869468], [-77.42937058654694, 34.683699078129045], [-77.42914867550027, 34.68367994977102], [-77.42903027608439, 34.68367358905547], [-77.42882394539598, 34.68369493296721], [-77.42881517471798, 34.683695840241825], [-77.4286219909705, 34.68356512962846], [-77.4285729560992, 34.68345506495092], [-77.42856331912081, 34.68333564088422], [-77.42856920589733, 34.68329368831348], [-77.4285669623275, 34.68319714747548], [-77.42860816977363, 34.683170426038814], [-77.42863399130067, 34.683150707439935], [-77.42866386913961, 34.68314086613748], [-77.42869764089328, 34.68312974222715], [-77.42873689171138, 34.683116813560815], [-77.4288409417502, 34.683082540918306], [-77.42890328726257, 34.68309203529082], [-77.42901285664813, 34.68304204006678], [-77.42912893761014, 34.68308703387426], [-77.42920076023054, 34.682999517911156], [-77.42937630139262, 34.68289324353561], [-77.42946219726488, 34.682884039725636], [-77.42962418219685, 34.682868075096074], [-77.4297072112259, 34.682856889288416]], [[-77.35408057279211, 34.560785609290264], [-77.3540916159875, 34.56079962934417], [-77.35410378980092, 34.56078226762567], [-77.35409163064837, 34.56077480096822]], [[-77.36475714439874, 34.622082632559554], [-77.36556144206209, 34.62231356181142], [-77.36588334408462, 34.6223991500577], [-77.36683173676599, 34.622805520453284], [-77.36676350681523, 34.62179381561573], [-77.36698233255004, 34.62124714583028], [-77.36680550222694, 34.62079534425155], [-77.36636469816185, 34.62067064976321], [-77.3658839209938, 34.620977941538364], [-77.36449382301812, 34.62062330938778]], [[-77.33322528416042, 34.52686490507084], [-77.33316823326153, 34.52685648932385], [-77.33312404905988, 34.52687946239808], [-77.33316647984915, 34.52693203061554]], [[-77.39119360368589, 34.512342324507934], [-77.39092321006015, 34.51235655183075], [-77.39080084920991, 34.51235668858877], [-77.39054682075238, 34.51224236950008], [-77.39048652381905, 34.512204480527444], [-77.39041436793985, 34.51209263761859], [-77.39023832205885, 34.51190962438969], [-77.39014815254872, 34.51181022888062], [-77.39026684749837, 34.51169548146016], [-77.39033201888415, 34.511538864247015], [-77.39042905075942, 34.51144101668109], [-77.39056750032604, 34.51134508030481], [-77.39072410032968, 34.51130018581311], [-77.39082521200874, 34.51127524636776], [-77.3910693512345, 34.51128007952434], [-77.39121641401368, 34.5113295836485], [-77.39137522915316, 34.51138832561456], [-77.39149028470469, 34.51144407974858], [-77.39163203196624, 34.511596100236844], [-77.39173428973393, 34.51174211444073], [-77.39170164173157, 34.51189675621545], [-77.3915918614424, 34.51208356117773], [-77.39158824697655, 34.51208992184364], [-77.39158458564496, 34.51209261587538], [-77.39138474883117, 34.512239259183]], [[-77.39758522979504, 34.50972383062426], [-77.3975986551508, 34.50975556268606], [-77.39761032914524, 34.50980433482052], [-77.39771413405462, 34.509983727758716], [-77.39757954302135, 34.51021104777725], [-77.39757411928221, 34.5102487764549], [-77.39756259271803, 34.51027774476477], [-77.39751854002462, 34.5102906553944], [-77.3970888739792, 34.510543971134936], [-77.39672686985315, 34.51059482191311], [-77.39637965989603, 34.51069566066923], [-77.39633206662671, 34.510700865865445], [-77.3962945839216, 34.510701694647246], [-77.3961939026934, 34.510692853768546], [-77.39599302823187, 34.510688713711595], [-77.39594032510347, 34.51067058696696], [-77.3957738414862, 34.510613326253754], [-77.39560295534037, 34.51053331933309], [-77.39574051316146, 34.510384792992795], [-77.39576492565011, 34.51026510490085], [-77.39595465828512, 34.51003262945264], [-77.39598469844452, 34.5100069283031], [-77.39608830823204, 34.509973590039515], [-77.39635029868248, 34.50988920363863], [-77.39665451946995, 34.509836084579], [-77.39674451429327, 34.50980915566079], [-77.39685867882613, 34.509791404455754], [-77.39713793849117, 34.509764316445], [-77.39748175221384, 34.50974179922377], [-77.39753106364851, 34.50973277500908]], [[-77.37063347391012, 34.569486918039544], [-77.37083371434589, 34.57004473579113], [-77.37112720974498, 34.5702184706316], [-77.37142106864876, 34.57042346103946], [-77.37158191449765, 34.57032625529261], [-77.37181507551712, 34.570345352828525], [-77.3721387456074, 34.57007274103955], [-77.37210342506454, 34.569963850856126], [-77.37198066032585, 34.56949285761469], [-77.37146095666647, 34.569363825774346], [-77.37142147331635, 34.56934828480426], [-77.37139667202948, 34.569357255234685], [-77.3710050254997, 34.56938695439456], [-77.37063350397791, 34.56940904680306], [-77.3705824902157, 34.5694478261705]], [[-77.43729090177109, 34.74082576167871], [-77.43727976945362, 34.741108256586905], [-77.43724994638539, 34.741159406685], [-77.43724195291962, 34.74121118299895], [-77.43726626204092, 34.7415602950309], [-77.43759699412547, 34.74179107833031], [-77.43764185261365, 34.74182875998706], [-77.43766021733353, 34.74184234535312], [-77.43773277394018, 34.74188713382771], [-77.43791179201624, 34.74200384872417], [-77.43819146526265, 34.7420671175792], [-77.43821294569466, 34.74207107790927], [-77.43822560850022, 34.74207011751109], [-77.43825281443438, 34.74206882511905], [-77.438555522455, 34.741995165367506], [-77.43862391519416, 34.74197299602436], [-77.43868923722843, 34.74185944827262], [-77.43878036188407, 34.741694105547694], [-77.43883481613467, 34.74156979410238], [-77.43888741263717, 34.7414519910132], [-77.43889802780514, 34.74132593377719], [-77.43893509119786, 34.741189133545184], [-77.4389164014284, 34.740955388684405], [-77.4389190809639, 34.74090402494167], [-77.43892230014015, 34.74086940065927], [-77.43887484909105, 34.740609055820784], [-77.43888728289555, 34.740437603419], [-77.43887944506858, 34.74033114665757], [-77.43884855855475, 34.74023055644898], [-77.43884599362056, 34.74017970188128], [-77.43887541891769, 34.74014079653472], [-77.43893270658056, 34.74007023988362], [-77.43902606032432, 34.74001300936676], [-77.43916173519294, 34.73990027427029], [-77.43918270613639, 34.739895029683495], [-77.43919037071217, 34.73986474492464], [-77.4392753317087, 34.7396309158418], [-77.43925671746811, 34.73957203483919], [-77.43918024132884, 34.73942256379991], [-77.43913707130562, 34.73930309552366], [-77.43923016122278, 34.739224884534465], [-77.43933505875339, 34.7390927536152], [-77.43936716878906, 34.73907483281536], [-77.43943212858083, 34.73896584340383], [-77.43948316582966, 34.738890464982575], [-77.43949637857911, 34.73884425796034], [-77.43949282998746, 34.738756067626596], [-77.43948707124636, 34.73862493738276], [-77.4394580563263, 34.7385766971148], [-77.43947532281632, 34.73840663513977], [-77.43951342497841, 34.73819223762929], [-77.43953898627724, 34.73804594302835], [-77.43958869751054, 34.737912924582965], [-77.43953845364555, 34.73749046180431], [-77.43953818962618, 34.737487590347015], [-77.43953615346848, 34.73748592431421], [-77.43921187870963, 34.737177328250695], [-77.43902535687772, 34.73704782143356], [-77.43881279567856, 34.73704787538165], [-77.43856949460493, 34.736998940415134], [-77.4384067720178, 34.736969742381305], [-77.4382185597828, 34.73682493035351], [-77.43812836848525, 34.736823959178295], [-77.437990315792, 34.73694581673498], [-77.43787790598905, 34.737016180763945], [-77.4377168128762, 34.73713830795795], [-77.43756768972662, 34.73725714990779], [-77.43746000842361, 34.737319558849144], [-77.4372947481052, 34.73748896103637], [-77.43724382813063, 34.7374758329327], [-77.43726570871985, 34.737531186782086], [-77.43726107173246, 34.73754483155543], [-77.4371386741356, 34.7377663176113], [-77.43707932134664, 34.73795481070705], [-77.43705923672265, 34.73801807944079], [-77.43698861434402, 34.73810490408184], [-77.43696872353712, 34.73826597109328], [-77.4370336793335, 34.73862794390446], [-77.4370355596106, 34.73884835983931], [-77.43706882771494, 34.73896424456604], [-77.43713043099753, 34.739164595356684], [-77.43716622648307, 34.73937001308366], [-77.43718421729439, 34.73945933651219], [-77.43722211768784, 34.739793098001854], [-77.4372183575434, 34.74003029991679], [-77.43719764032093, 34.74024971361362], [-77.43727227628955, 34.74051303037738], [-77.4373095915221, 34.7406212116397], [-77.43731037382575, 34.74064908542129]], [[-77.33384581482878, 34.52775493776954], [-77.33420415188303, 34.52777840147499], [-77.33432551740803, 34.52772980520815], [-77.33466764955084, 34.527910384727015], [-77.3347136740222, 34.52791786172868], [-77.334886494629, 34.527986138742094], [-77.33490734668771, 34.52809191682987], [-77.33491446846426, 34.52820630035814], [-77.33500080025952, 34.52832329401693], [-77.33509476837318, 34.52841056068879], [-77.33519529038149, 34.528476491318216], [-77.33528218790597, 34.52852764392224], [-77.33548323442281, 34.52858547572525], [-77.33552679254537, 34.5285186678563], [-77.3356817603316, 34.52848776461329], [-77.33569436426406, 34.528476058994706], [-77.33569713869102, 34.52846796810702], [-77.3357819923795, 34.528397092801264], [-77.33578891504817, 34.52839789416453], [-77.3358811500732, 34.52835276348803], [-77.33605661412679, 34.52830748574608], [-77.3360786302113, 34.528300130164176], [-77.33609138615375, 34.528296766978556], [-77.33627841283902, 34.52814812647553], [-77.33629862311217, 34.528149267823736], [-77.33667732298518, 34.527872299126905], [-77.3367390896795, 34.527866925764904], [-77.33677608753065, 34.52782315769812], [-77.33673251823711, 34.52779609949365], [-77.33669971831443, 34.52758932456385], [-77.33668436849327, 34.52756820581893], [-77.3365464019214, 34.527454255851936], [-77.33650654238068, 34.527372290752396], [-77.33629805010452, 34.52730072849113], [-77.3361720053943, 34.527342391509116], [-77.33610002760372, 34.527376871107556], [-77.33607462849213, 34.52743440992799], [-77.33608477577273, 34.52754832473428], [-77.33608892851645, 34.5275590510255], [-77.33620165588354, 34.52766095769953], [-77.33619632694158, 34.527719122561535], [-77.33615138786605, 34.527829167767884], [-77.3359233193562, 34.52794580528649], [-77.33611936630003, 34.52806198318932], [-77.33589012701599, 34.527965462983396], [-77.33587191775253, 34.52796456800983], [-77.33569326376146, 34.52799151159274], [-77.33568555466029, 34.52798490390807], [-77.33567815829258, 34.527981063870115], [-77.33559595268791, 34.527932031444024], [-77.33549950006734, 34.52788385395302], [-77.33539025127925, 34.52784633427243], [-77.3352808481677, 34.52779338607323], [-77.33519057669606, 34.52760972609539], [-77.33519566326086, 34.52756082003271], [-77.33524481867852, 34.52747371166372], [-77.33523641429942, 34.52713522766578], [-77.33537640879561, 34.5270451920539], [-77.33529466922394, 34.52695334085322], [-77.33512793717867, 34.52698011274635], [-77.3349865982871, 34.52701358115186], [-77.3346680611176, 34.52714706115198], [-77.33445232415767, 34.527250238659136], [-77.33433166790238, 34.527464664868695], [-77.33381066191961, 34.52743460125289]], [[-77.36039370549607, 34.56250003774877], [-77.360522011835, 34.56254392719197], [-77.36053339644167, 34.56240398827797], [-77.36046442649686, 34.562337792066884], [-77.36039379232365, 34.562331059307255], [-77.36024803719445, 34.562177688072595], [-77.36015843386033, 34.56203342281951], [-77.36013576823596, 34.56189045175021], [-77.3600000429951, 34.56195984155513], [-77.3599544473066, 34.56201368413554], [-77.35980303101977, 34.56204013539362], [-77.3597491253756, 34.56209235498708], [-77.35972372182769, 34.56222291975988], [-77.35968062099963, 34.56244618835695], [-77.35974873741102, 34.56251696419974], [-77.35999962982002, 34.56275647273163], [-77.36027012974009, 34.562575030314015]], [[-77.34067218837829, 34.53334698232743], [-77.34068637394827, 34.53338115133004], [-77.34066966566826, 34.533456102235945], [-77.3406159670201, 34.533480550835485], [-77.34047380471686, 34.53343833782865], [-77.34044124376662, 34.53343674393169], [-77.34036575341102, 34.53342727289262], [-77.3403812576084, 34.53336628448707], [-77.34042075669343, 34.53321090651758], [-77.34036155891243, 34.533183057853], [-77.3404004290696, 34.53312721757834], [-77.34048099608164, 34.533127306973725], [-77.34049388155229, 34.533155579236556], [-77.34049799458735, 34.533163431625155], [-77.34053106388113, 34.533190816341815], [-77.34056181929503, 34.53334551484534]], [[-77.36787401025254, 34.5220871087074], [-77.36795404479497, 34.52211062287388], [-77.36811307749718, 34.52214750025372], [-77.36820624350833, 34.52226548139163], [-77.36824481791386, 34.52228915110874], [-77.36827715105693, 34.522308890698575], [-77.36824141963567, 34.52233699903322], [-77.36821612011155, 34.522562512243006], [-77.3681963699865, 34.52269864686208], [-77.36818178432502, 34.52280469635272], [-77.36813982149056, 34.522818333500865], [-77.36779889441316, 34.5229175198281], [-77.36762558053559, 34.52299937921385], [-77.36771583007943, 34.522879428732985], [-77.36750741736631, 34.52284744803787], [-77.36740974876321, 34.522771002117324], [-77.36728847443965, 34.52269618059461], [-77.3672838586294, 34.52261611419379], [-77.36727376628184, 34.52257588672083], [-77.36729785526074, 34.522523323033084], [-77.36730951353051, 34.52244832249117], [-77.36732869986085, 34.52238957505375], [-77.36742005257118, 34.5223191455436], [-77.36776668378805, 34.52210598697416]], [[-77.35257266260687, 34.68651963528096], [-77.35257865105385, 34.68647230383505], [-77.35263705370329, 34.68646787723691], [-77.35292355792416, 34.6864589431158], [-77.352952667835, 34.686456776852985], [-77.35295197287668, 34.68646755255488], [-77.35309192941281, 34.68654669320332], [-77.35311285271754, 34.68662676030289], [-77.35309554812152, 34.68669152968417], [-77.3528037409242, 34.68692456976428], [-77.35275832071528, 34.6869507250021], [-77.35247999445723, 34.687019742378084], [-77.35247660809763, 34.687020516293856], [-77.35247624312497, 34.687020257462684], [-77.35247595742334, 34.687019534851245], [-77.35240811609485, 34.68690776592627], [-77.35242839186512, 34.68686027804873], [-77.35245468312414, 34.68677952617623], [-77.35246843433093, 34.6866937281887]], [[-77.4043902307764, 34.508285240313924], [-77.40416138584763, 34.50812136816073], [-77.40413040792627, 34.50807792661395], [-77.40407392076838, 34.50798164580575], [-77.40399061555787, 34.50785327722906], [-77.40395729777211, 34.50779308739209], [-77.40385729508691, 34.50760641551986], [-77.40375293536934, 34.50746501539395], [-77.40360530571586, 34.5074192469445], [-77.40386516526146, 34.50725465944188], [-77.40424187698976, 34.507070109215476], [-77.4046599882314, 34.5068068096189], [-77.40502473720025, 34.50698418938319], [-77.40539051062157, 34.50716142169285], [-77.40542028667117, 34.50716738084521], [-77.40543627781102, 34.50718760234183], [-77.40577460337293, 34.507381815657524], [-77.40578982549815, 34.50782287739157], [-77.4055459156206, 34.50811832907044], [-77.40541341139229, 34.50821047359804], [-77.40530281399231, 34.50822228159579], [-77.40482027264949, 34.50834459828314], [-77.40462441953035, 34.508397215108864], [-77.40440448975427, 34.5084200831278]], [[-77.40226968574464, 34.50840969687184], [-77.40251572200422, 34.50840253439724], [-77.40247205614594, 34.50856225005273], [-77.40226368461586, 34.5086776937603], [-77.4019461195529, 34.508933304541216], [-77.40169671827796, 34.509023130162035], [-77.40146940787935, 34.50909976449606], [-77.40111995828684, 34.50900232910945], [-77.40109770870328, 34.50899409516041], [-77.40098270841023, 34.508777309504666], [-77.40117830997761, 34.50855989564459], [-77.40126220308431, 34.50849211585034], [-77.40148658235223, 34.50833311130445], [-77.401655236446, 34.508295225402485], [-77.40212701151812, 34.50821415275541]], [[-77.26702780435252, 34.600709074459814], [-77.26606058235186, 34.60038423382747], [-77.26580458636673, 34.59990216117208], [-77.2656877136572, 34.599691703712054], [-77.2661121078387, 34.599294301431215], [-77.26660937910114, 34.599022655881775], [-77.26759233532184, 34.59907572862221], [-77.2673109671387, 34.59964643269204], [-77.267347944947, 34.59982221097654], [-77.26724585143907, 34.59994033863197]], [[-77.35702707009867, 34.56097786796619], [-77.3572430595728, 34.56087379382372], [-77.35739998307878, 34.56090148237391], [-77.35727601568786, 34.560750192595314], [-77.35724313927174, 34.56072960184738], [-77.35689588891239, 34.56075458618349], [-77.35685297294145, 34.56038654048865], [-77.3568512267681, 34.56038481941237], [-77.35684941503303, 34.56035173298129], [-77.35682640478512, 34.56036557465223], [-77.35681639085772, 34.56039180662623], [-77.3566235591353, 34.560600856758406], [-77.35645502225485, 34.56116904276441], [-77.35639694758552, 34.561301290222666], [-77.35645493288527, 34.561328048135145], [-77.35652979150865, 34.5612821671609]], [[-77.39455721190112, 34.511299154611635], [-77.39435441606169, 34.51139198568198], [-77.39400318024175, 34.511471911906064], [-77.39395997323045, 34.51148167880723], [-77.39389902299762, 34.51147565328696], [-77.39356761151907, 34.51147881655863], [-77.39334543682101, 34.51148732233637], [-77.39317574548318, 34.51145392041439], [-77.39307140606077, 34.51145347982629], [-77.3929798233893, 34.51144098906697], [-77.3928915716825, 34.51141433031948], [-77.39298175532736, 34.51135513399618], [-77.39301519432688, 34.511294077195856], [-77.39309182496356, 34.51126301225804], [-77.3931808297891, 34.51122795101668], [-77.39326521108688, 34.51116736651813], [-77.39340565381201, 34.51109530190371], [-77.39357798971912, 34.51101746671958], [-77.3937649719322, 34.51091381211761], [-77.3939753622287, 34.51079743829868], [-77.39400495860839, 34.51078222277614], [-77.39406479767845, 34.5107553342213], [-77.39427032876327, 34.5106629794388], [-77.39437223844283, 34.510599385165726], [-77.39466339544616, 34.51066893583125], [-77.3947993444136, 34.51086873123302], [-77.39479631997392, 34.51091881859331], [-77.39465569202304, 34.51115971761551]], [[-77.33526983971092, 34.536241148697144], [-77.33530618612086, 34.536222694983024], [-77.3353454339583, 34.53623027798304], [-77.33533838412463, 34.5363320392096], [-77.33534270498183, 34.53635307876787], [-77.33530227490529, 34.53639141486162], [-77.33527186395324, 34.536382362422316], [-77.33527481088286, 34.53636284217878], [-77.33527182267036, 34.53634358911725]], [[-77.38558050091112, 34.5349925313144], [-77.3855840436803, 34.534993277385595], [-77.38558005749854, 34.53501216852763], [-77.38552134309279, 34.53503856973482], [-77.38557755469998, 34.53499421328961]], [[-77.37074242778742, 34.51828120563203], [-77.3708729521278, 34.51836805916814], [-77.37091101689936, 34.51842056118248], [-77.37091437303371, 34.51850125170223], [-77.37089078565185, 34.51859595544183], [-77.37086500019552, 34.51864652371403], [-77.37080467646322, 34.51866115666051], [-77.37064237693544, 34.518697259226926], [-77.3704944708777, 34.518654641597045], [-77.37044729407873, 34.51864674180018], [-77.37032381482484, 34.51858636506858], [-77.3702954190066, 34.518563962043906], [-77.3702539538442, 34.51851970577849], [-77.37021653417169, 34.5184794126777], [-77.37016330836158, 34.518422595678], [-77.37011007824046, 34.51837234121806], [-77.37000942163681, 34.518297718012064], [-77.36996807133306, 34.51821006913313], [-77.3699507840585, 34.51815047119395], [-77.36997134905667, 34.51808748624094], [-77.37006831419232, 34.51805455658358], [-77.37015591027094, 34.51805311877375], [-77.37026491145461, 34.51803849911996], [-77.37036877288557, 34.51809023045711], [-77.37049580907109, 34.51817083047882], [-77.37065278272173, 34.51824019111874]], [[-77.37379984911365, 34.517094372388975], [-77.37381869402495, 34.51708734893256], [-77.37413640352658, 34.51676143355225], [-77.37443252702015, 34.51663826008121], [-77.37461548493832, 34.51656464461629], [-77.37469225907755, 34.516535202160064], [-77.37483094752977, 34.51646773123567], [-77.3750122237148, 34.51637605725305], [-77.37535865069971, 34.516362753434024], [-77.37540502630937, 34.516360708224646], [-77.37544092584012, 34.516379794155554], [-77.37580548486395, 34.51656418956097], [-77.37582212606827, 34.51658826470386], [-77.37592402557742, 34.516799804582234], [-77.37578462509708, 34.516926869218345], [-77.37563726857529, 34.51699501395959], [-77.37538821758415, 34.51710084434186], [-77.37505429958183, 34.51720805736519], [-77.37484864456052, 34.5172887791592], [-77.37459681285404, 34.517386491181306], [-77.37437321174755, 34.517373357444356], [-77.3741351052558, 34.517346298345274], [-77.37381792459668, 34.51712120114291], [-77.37380368257857, 34.51711445657691], [-77.37379292653016, 34.51710702677365]], [[-77.32914306746252, 34.531156819387625], [-77.32916043409159, 34.53113204557136], [-77.3295374217212, 34.53107860539126], [-77.329544876542, 34.531066306534115], [-77.32974808752272, 34.53092138496753], [-77.32993717423899, 34.53076815539942], [-77.32994573725024, 34.5307638624305], [-77.32993753733834, 34.530752537115006], [-77.32985599267113, 34.530776764425966], [-77.32963207773649, 34.53086489075051], [-77.32953926179863, 34.53099947251171], [-77.32924850254301, 34.531044780661794], [-77.32913152697508, 34.531117968335195], [-77.32908210883274, 34.531132833573864], [-77.32906538158551, 34.53118330465409]], [[-77.36589283877375, 34.524671184531975], [-77.36634900808326, 34.52469003680199], [-77.36646444266088, 34.52477352318533], [-77.36652239688846, 34.52480015991319], [-77.36657743402166, 34.52484628810041], [-77.36668489176061, 34.524918530308724], [-77.36672087942266, 34.52498140165359], [-77.3666650372426, 34.5250469468305], [-77.3666432964664, 34.52511499328326], [-77.3665952378656, 34.52522779672496], [-77.36660590792762, 34.52524279343937], [-77.36656650638498, 34.52532531339075], [-77.36650038398683, 34.52546354600019], [-77.36636617891294, 34.525504072688534], [-77.36626996844163, 34.52547404841639], [-77.36617101187237, 34.52545662678578], [-77.36606295162603, 34.525389383038316], [-77.36599568793034, 34.52533071307508], [-77.36592815795, 34.52525004018344], [-77.36590061020007, 34.52517168928215], [-77.36592470656512, 34.5250961136523], [-77.36589317154309, 34.52503513701506], [-77.36589007519876, 34.52491820133491], [-77.36592810002414, 34.52485079859908]], [[-77.34236163870314, 34.53512115912069], [-77.34220301629769, 34.53536633837437], [-77.34217385932352, 34.53548096511515], [-77.34217997253032, 34.53549995437384], [-77.34223495801297, 34.53551070850452], [-77.3423876250996, 34.53555523878289], [-77.34244804636083, 34.53553846577533], [-77.34264704132823, 34.53546291650636], [-77.3427831760128, 34.5354254033941], [-77.3428223491347, 34.53539964745691], [-77.34279532012009, 34.53528670281527], [-77.3427950695091, 34.535281162614545], [-77.34281651905155, 34.535259668741205], [-77.34285127712943, 34.53502825701151], [-77.34309994130084, 34.53493820109002], [-77.3431879940583, 34.53489412569026], [-77.34326832213486, 34.534917817635844], [-77.34345685597128, 34.53486355195223], [-77.34352068234985, 34.53480953908173], [-77.34356338969158, 34.534791214874986], [-77.34358372749001, 34.53475618733175], [-77.3435924875796, 34.53473800332666], [-77.34361162084495, 34.534690496137046], [-77.34361892099255, 34.53467299536762], [-77.34362126002742, 34.53465076863218], [-77.34360843766856, 34.534552094027525], [-77.34358908626884, 34.534524037272085], [-77.34346842636268, 34.53452506533019], [-77.34331634150759, 34.53454675376025], [-77.34319479482335, 34.53459956646553], [-77.34281294579158, 34.534788952703394], [-77.34280865051463, 34.53479639928364], [-77.34279614587133, 34.534863757202864], [-77.34263573676913, 34.53491376807934], [-77.34232808045822, 34.53505924690094]], [[-77.35705907361115, 34.54379093650226], [-77.35705681599421, 34.54371805017831], [-77.3570069132038, 34.54351824233927], [-77.35712597284626, 34.5433474301465], [-77.35727748585795, 34.543479285585924], [-77.35720562913161, 34.543680026431375], [-77.35715992838078, 34.543768223750234]], [[-77.33775464573286, 34.530348653094876], [-77.33773793440002, 34.53037780836242], [-77.33775921319356, 34.53039793901003], [-77.3377931951381, 34.53053621891474], [-77.33794566957766, 34.530441660697605], [-77.33782164365678, 34.53035070425049]], [[-77.34384845973884, 34.553246232633086], [-77.34367918066128, 34.553104536336335], [-77.34394793733969, 34.552998195684424], [-77.34395502147547, 34.55299038917902], [-77.34419962512767, 34.55303820521304], [-77.3441963103933, 34.553107818075986], [-77.34403245208426, 34.55321976453877], [-77.34398332665548, 34.553252556851916], [-77.34394118978575, 34.553290665025784], [-77.34385219415496, 34.55330103702482]], [[-77.35458330124342, 34.55427211654187], [-77.35461385145751, 34.55433064576481], [-77.35475942067322, 34.554369176194925], [-77.3549083314166, 34.55445090784787], [-77.35501619533682, 34.554332214458555], [-77.3549805378579, 34.55429456044659], [-77.35500451945478, 34.55421148400988], [-77.35497650456983, 34.55413103854309], [-77.35495272361335, 34.55409652865103], [-77.35495001169076, 34.55407628818516], [-77.35491819951775, 34.55402072039532], [-77.35490339670716, 34.5539908748516], [-77.35489883593701, 34.55398187439911], [-77.35489412917161, 34.55396677154919], [-77.35487853398993, 34.553889002448955], [-77.35486423848974, 34.553864443352815], [-77.35482392962606, 34.553851187012754], [-77.35479004324506, 34.55387512349103], [-77.35477486654355, 34.55390874443063], [-77.35472277989244, 34.553981557365795], [-77.35470725660062, 34.554000036493825], [-77.35468040137175, 34.55403892100625], [-77.35461741381356, 34.55414479504519], [-77.35460709290902, 34.554199677283606]], [[-77.39498090700474, 34.57662891236655], [-77.39501372401058, 34.576915739613156], [-77.39483489719439, 34.57699034642705], [-77.39466499420675, 34.5771488205918], [-77.39453641538712, 34.5771719551246], [-77.39459002876043, 34.57702566991232], [-77.39464099190984, 34.57661966411055], [-77.39464676318372, 34.57659291434676], [-77.39465220996244, 34.57657829544779], [-77.3946746339301, 34.57657856316346], [-77.39469930867955, 34.57658533437834]], [[-77.3449592022202, 34.54319882546842], [-77.34507886056196, 34.5432017826223], [-77.345351639946, 34.54320533789411], [-77.34540777460792, 34.543229121223604], [-77.34536907563582, 34.543464903609724], [-77.34536164279837, 34.543490922722846], [-77.34496940379299, 34.54378183239264], [-77.3449671754646, 34.543795709601326], [-77.34494492493201, 34.543817879418626], [-77.34491730346124, 34.54380671370702], [-77.34492033061642, 34.543788892855474], [-77.34492162049818, 34.54377353686584], [-77.34475257129364, 34.54356820949474], [-77.34478812042128, 34.54342175592256], [-77.34479422596904, 34.54331739692483], [-77.34486883631081, 34.54325106106042]], [[-77.3724923831002, 34.51794828395768], [-77.3724600534201, 34.51791122620097], [-77.37246793213318, 34.517884530467676], [-77.37246797264984, 34.517787670490584], [-77.37262951297637, 34.51760651413792], [-77.372747412608, 34.517575675179444], [-77.37288605566518, 34.517567915965905], [-77.37302178625504, 34.51761474429887], [-77.37311689607321, 34.517634519794456], [-77.37320987512982, 34.51768072986509], [-77.37314233581428, 34.51776783953656], [-77.37314388217033, 34.51793507124128], [-77.37301203107194, 34.51804376399539], [-77.37284072175541, 34.51811778131468], [-77.37278845720905, 34.518124627788346], [-77.37261845356444, 34.518092791679855], [-77.37252649638859, 34.51808158710372], [-77.37252621245236, 34.518024104031404]], [[-77.35932007709651, 34.54697994612393], [-77.35932555021202, 34.54693309843702], [-77.35932331660459, 34.5469049223322], [-77.35926147988519, 34.54690192528095], [-77.35926685104447, 34.54694765456487], [-77.35927143941208, 34.546986949593006], [-77.35928103609598, 34.54703562483624], [-77.35928425872085, 34.54705516995638], [-77.3593250874894, 34.54705705781423], [-77.35931080741038, 34.54703507835699]], [[-77.33669808097767, 34.53482073244799], [-77.33669876220124, 34.534802670386064], [-77.33672568961869, 34.53479984528731], [-77.33673519048293, 34.53482040637297]], [[-77.34967264709321, 34.55277548286355], [-77.34966961576252, 34.552761547018754], [-77.3496792797868, 34.55271332317419], [-77.34964800788657, 34.552698888189404], [-77.34961655505987, 34.55268101275194], [-77.34955669023492, 34.552673662351076], [-77.34955039243005, 34.55267531061686], [-77.34952862249858, 34.55270440071216], [-77.34952250682036, 34.552719124084916], [-77.34951630176724, 34.5527367763033], [-77.34951984254027, 34.55275418443287], [-77.34952839680831, 34.55279624100908], [-77.3495469445115, 34.552825194030454], [-77.34960358048512, 34.55281150865338], [-77.3496456553037, 34.55280116183229], [-77.34967584098827, 34.55279373869017]], [[-77.35929096205004, 34.54668802930829], [-77.35931122467154, 34.54667775934672], [-77.35931081008157, 34.54667300860201], [-77.35930781860512, 34.546646626579324], [-77.35928274242822, 34.54666390137421]], [[-77.35948988468488, 34.54750634878041], [-77.359496486282, 34.54749800657608], [-77.35949377790104, 34.54744959393791], [-77.35948892779221, 34.547445280583815], [-77.35949742245256, 34.547389274978485], [-77.35949423939925, 34.54737901751085], [-77.35942827440654, 34.54735563160875], [-77.35945133845392, 34.547411484195266], [-77.35947258278725, 34.54744763415758], [-77.35946484055854, 34.547497606931564], [-77.3594510225794, 34.547532412665646], [-77.35948905954963, 34.54750939044707]], [[-77.34286524207243, 34.52588166006586], [-77.34284206950755, 34.52594863501154], [-77.34291677279472, 34.5259067485633], [-77.34292358084491, 34.52588695450094]], [[-77.3592801951381, 34.546575488358506], [-77.35923760389252, 34.54657984701706], [-77.35923008579346, 34.54661341042179], [-77.35929890018517, 34.54660967062286]], [[-77.3483323736087, 34.55114852339411], [-77.34833120440396, 34.55114766183291], [-77.34833039941614, 34.55114547307396], [-77.34832726383304, 34.5511405782198], [-77.34832708060931, 34.55113744323226], [-77.3483251338612, 34.55113323407019], [-77.34832556523267, 34.55112759646033], [-77.34833457871224, 34.55112447469072], [-77.34833917458042, 34.551128293124734], [-77.34834469572337, 34.55113041921761], [-77.34834213941409, 34.551135662106034], [-77.34834182994562, 34.551138482230016], [-77.34834341140044, 34.55114017237525], [-77.34834412031566, 34.551144388144685], [-77.34833992923083, 34.55114640637464], [-77.34833853324574, 34.55114943131305], [-77.34833398700891, 34.55115017940437]], [[-77.33875416813038, 34.55242872041298], [-77.33875396613882, 34.55243065254414], [-77.33875065064514, 34.55243138114173], [-77.33875138499296, 34.55242939620653]], [[-77.43130416952543, 34.50245853040128], [-77.43162087051162, 34.502396202568804], [-77.43186518804995, 34.5024367460162], [-77.4326311973756, 34.50254841101801], [-77.43275126649519, 34.50270271049551], [-77.43312975140923, 34.5029899010392], [-77.43319670188741, 34.50303591761163], [-77.4332611002971, 34.50306647991119], [-77.43327793907271, 34.50312338217209], [-77.43317914850316, 34.50317074452791], [-77.43309902758327, 34.503630558720005], [-77.43304970231462, 34.50373123412321], [-77.43294158036386, 34.50395191764872], [-77.432972665448, 34.50406507306273], [-77.43287361321697, 34.504115135921616], [-77.43278167743777, 34.504180813915056], [-77.43257311871211, 34.50438246377631], [-77.4326160628626, 34.50458409393764], [-77.43227593399335, 34.50479452152277], [-77.43138967624455, 34.50476222382902], [-77.43091056061887, 34.50472634658438], [-77.4304381544661, 34.504476257450946], [-77.43026016176333, 34.50426447688379], [-77.43031982224674, 34.50406219032385], [-77.43022792226617, 34.5038032476571], [-77.42982668542535, 34.503566820434855], [-77.4301135155653, 34.50336777365762], [-77.43026487946636, 34.50325141131379], [-77.43046558548173, 34.50309711703966], [-77.43050784451097, 34.502965296023426], [-77.43059467689339, 34.502930468728906], [-77.4307071188922, 34.50277027105042], [-77.43068401847569, 34.502597258639156], [-77.43079950816191, 34.50251291843264], [-77.43096181872312, 34.50244857902942]], [[-77.33557498576968, 34.57448572484134], [-77.33524264931101, 34.57445684827548], [-77.3351714899327, 34.57448223921797], [-77.33512244768181, 34.57449795109166], [-77.33497443670434, 34.57454536987437], [-77.33482601249113, 34.57459339402381], [-77.33478432121102, 34.57460686153489], [-77.33477737429727, 34.57461941944666], [-77.33466840352415, 34.57482832047608], [-77.33470738107954, 34.574959867981065], [-77.3347321994569, 34.575031419806855], [-77.3347416055919, 34.57506821528146], [-77.33511472457128, 34.57540097124744], [-77.33510218870639, 34.57547657934103], [-77.33517045172994, 34.57576840000466], [-77.3353657067784, 34.57536489119452], [-77.33564103182533, 34.574982595554516], [-77.33567350133032, 34.57477946808181]], [[-77.23839492503372, 34.59384131357728], [-77.23768601105361, 34.59433251087505], [-77.23738253263244, 34.59441993545362], [-77.23715909183805, 34.594521143834], [-77.23653951390295, 34.59456854716329], [-77.2364798574987, 34.5945742636417], [-77.23645711906771, 34.594582354973994], [-77.23612551206818, 34.59469062545955], [-77.23522288786374, 34.59477079819089], [-77.23466852763988, 34.594784230313806], [-77.23457716277254, 34.594535302700265], [-77.23444861223697, 34.59440363230317], [-77.2334772572982, 34.59380638645136], [-77.23339259680118, 34.59350909077749], [-77.23340758247667, 34.59315565750252], [-77.23328921633413, 34.59242674521554], [-77.23383928327385, 34.5918724439387], [-77.23440040209957, 34.5914092503546], [-77.23503328418236, 34.5906789066012], [-77.23508816071497, 34.59062477398545], [-77.23571831563483, 34.58995212693679], [-77.23608524769509, 34.58981916916125], [-77.23742876769658, 34.58933234180453], [-77.2387437724477, 34.59002882904578], [-77.23875476260154, 34.590032846543195], [-77.2387590424934, 34.59003552536354], [-77.23878808026062, 34.59005370002205], [-77.23953694307136, 34.590474852963055], [-77.23961063213272, 34.590568531168], [-77.24002279971339, 34.59087013256271], [-77.24018607428127, 34.590966656986794], [-77.24037007048149, 34.59109975754883], [-77.24027855723726, 34.59137974614153], [-77.2399815743733, 34.59177795962134], [-77.24096059236749, 34.59208901412231], [-77.23922093791643, 34.59245409232773], [-77.238885892676, 34.59277035869046], [-77.23826866817757, 34.592819487240305], [-77.23817803444878, 34.59284865079053], [-77.23786027183, 34.59293927472372], [-77.23767114678868, 34.59300445418488], [-77.23716666579624, 34.593180890976484], [-77.23711312206127, 34.59319971984049], [-77.23710869639226, 34.59329539100388], [-77.23731466188478, 34.593510846385435], [-77.23810526364207, 34.593749307647855]], [[-77.26276050112547, 34.59663351737372], [-77.26299353791056, 34.59712380647524], [-77.26229244732156, 34.597813135714816], [-77.26214072077656, 34.59847013091744], [-77.26158483437493, 34.599120990881545], [-77.26255843763812, 34.59965238895014], [-77.26271945838593, 34.60016576862405], [-77.26285010358626, 34.60041126012053], [-77.2635229633344, 34.6013345442653], [-77.26435410289594, 34.60227515828406], [-77.26448442232915, 34.60242511421032], [-77.2644979456052, 34.6024391060965], [-77.26451312648581, 34.6024548127835], [-77.26655965659728, 34.60313667686936], [-77.26843122327544, 34.603271150522005], [-77.26868440361481, 34.60234094212731], [-77.26947685874067, 34.60093218183394], [-77.26996913595151, 34.599380949075076], [-77.27017117311952, 34.59884469675585], [-77.27095476495194, 34.597277662333774], [-77.27174322524215, 34.59570082073165], [-77.2720470644787, 34.595202628612626], [-77.27072622194419, 34.59479663085175], [-77.26823192432312, 34.595103903808536], [-77.26569438471971, 34.59558026505324], [-77.2643619743025, 34.59608763156415]], [[-77.4285779580003, 34.491926697360874], [-77.42766237941565, 34.491972178396956], [-77.42854789252264, 34.492156132895786], [-77.42820921390742, 34.49267564241334], [-77.42830755289803, 34.49298354410473], [-77.42824325551166, 34.493352920782485], [-77.42820163204888, 34.493902465738245], [-77.42832124355624, 34.4940324424668], [-77.42819758303219, 34.494118391877485], [-77.42853316688087, 34.49451212047813], [-77.4288204729819, 34.49473346549742], [-77.42914125395104, 34.4949773713268], [-77.42916733729695, 34.495426709578396], [-77.42890870809, 34.49565238806724], [-77.42894454341021, 34.49575310921735], [-77.42853984611264, 34.49604537903943], [-77.42851802353142, 34.49605662091865], [-77.42832680904779, 34.496059346959704], [-77.42765902188052, 34.4962331913605], [-77.42724184443763, 34.4962233712078], [-77.42696825841733, 34.49611198141457], [-77.4269045670007, 34.495986739330974], [-77.42676332242004, 34.495797766749455], [-77.42658757545789, 34.49563278349672], [-77.42656754457715, 34.49553844547057], [-77.42606385642377, 34.49526826870729], [-77.42644772441999, 34.49481824788203], [-77.42499838712952, 34.494538307474905], [-77.42431087604126, 34.49436842519535], [-77.42444602278607, 34.493482866753226], [-77.42450478306691, 34.493162010013755], [-77.42536521482539, 34.492741425841004], [-77.42553724816375, 34.4925392067895], [-77.42575406957826, 34.49204940639853], [-77.42339822880932, 34.4917543988905], [-77.4233355443873, 34.49174667468034], [-77.42328123594599, 34.49107287731003], [-77.4239294330215, 34.49085503772569], [-77.42393379011884, 34.49076844499072], [-77.42435129107369, 34.490568016022465], [-77.42451673692574, 34.4905464158269], [-77.4246408360516, 34.49046679191958], [-77.42518428422594, 34.49027680414855], [-77.42552197532525, 34.489923974902545], [-77.42611923630776, 34.48954303987975], [-77.42599305919998, 34.48918477412657], [-77.42658873723735, 34.488899345306045], [-77.42694481075326, 34.48875610352712], [-77.42745876808979, 34.488584082249794], [-77.4278082616479, 34.48843432989081], [-77.42877357491938, 34.488651211107324], [-77.42882425352717, 34.48888075951903], [-77.42987095560116, 34.48938276263344], [-77.42893478179381, 34.48972355931579], [-77.4288238805162, 34.490446487079595], [-77.42911348610374, 34.49069517940562], [-77.42936255327871, 34.49111980831051], [-77.42865407150556, 34.49153216545165]], [[-77.44760956182509, 34.48205688456746], [-77.44829329217586, 34.48130975545623], [-77.44779132691836, 34.48083873757279], [-77.44848838556292, 34.480345662417875], [-77.44999661988714, 34.48095097547215], [-77.44999051266073, 34.480956243759145], [-77.44913929167602, 34.48172090310133], [-77.44777410648545, 34.48218891550581], [-77.4476681856247, 34.4822714326115], [-77.44673429357177, 34.482135977313966], [-77.44753280976659, 34.48212833051504]], [[-77.46803174423486, 34.507531821394444], [-77.46802191195421, 34.50753622720144], [-77.46613627475597, 34.50779935333861], [-77.46605257554754, 34.50811186110211], [-77.46599372333935, 34.50832413627674], [-77.46568377210818, 34.508760033755294], [-77.465679641161, 34.50876561836116], [-77.46568117846194, 34.50876853440558], [-77.46566371865534, 34.50878051646966], [-77.46499193851193, 34.50940907996867], [-77.46555466601843, 34.509892938815014], [-77.46584559583468, 34.51012789182948], [-77.46451046263057, 34.51057387097243], [-77.46439530400293, 34.51072983335946], [-77.46398672524882, 34.51091354452387], [-77.46391578491699, 34.511259639720976], [-77.46401644692615, 34.511386124622604], [-77.46431530611883, 34.511667123682784], [-77.46440340037975, 34.51178780754956], [-77.46457276552731, 34.51179215075114], [-77.4647882996475, 34.51158670954391], [-77.46495194247613, 34.51143358375324], [-77.46497518392593, 34.51139356127341], [-77.46504360370818, 34.511343361108004], [-77.46539095807923, 34.51100145486564], [-77.46610476522011, 34.510298831075836], [-77.46634772645427, 34.510153358979665], [-77.46725055404222, 34.50952847279489], [-77.46725692413084, 34.5095139385099], [-77.46757170418039, 34.508864413727196], [-77.46768333941199, 34.50855062912851], [-77.46804667079246, 34.50755063637919], [-77.46805022364846, 34.5075407951875], [-77.46805137442665, 34.50753772118767], [-77.46805281124978, 34.507532182064104], [-77.46848803081917, 34.50620883895122], [-77.46739934273172, 34.50484871236818], [-77.46740539530282, 34.50480292549097], [-77.46751713483336, 34.5046803113855], [-77.46727212158515, 34.504719614627945], [-77.4672500203702, 34.50477619856155], [-77.46724198825326, 34.50479464014571], [-77.46722282412696, 34.504834102474106], [-77.46692381885117, 34.506129516979]], [[-77.3329571542724, 34.63416644539829], [-77.3330183153501, 34.63418718778295], [-77.3330337615119, 34.63410993134731], [-77.33300329150656, 34.6340125418583], [-77.33288651123355, 34.6338146834509], [-77.33257229189839, 34.63371786480704], [-77.33254991049317, 34.63373252890141], [-77.33253584052876, 34.63373662182698], [-77.33237641703704, 34.63366558957425], [-77.33225702673452, 34.63379450702922], [-77.33232017367533, 34.633868875287575], [-77.33243522209797, 34.63398920798032], [-77.33245727716508, 34.63399691254708], [-77.332558565859, 34.63377562859419], [-77.33286058006394, 34.634133692538164], [-77.33293017067624, 34.63415729406774]], [[-77.36376855502148, 34.527611271171935], [-77.36376678176622, 34.52761177512083], [-77.36374865348988, 34.52762416990522], [-77.36336905035786, 34.527840297097384], [-77.36314539996084, 34.52780475738521], [-77.3632019145007, 34.52793662315169], [-77.36309181597042, 34.52812139815904], [-77.36299337825997, 34.5282114878058], [-77.36299826656818, 34.528229889364674], [-77.36305802608689, 34.5283883617289], [-77.36301148462162, 34.52845370482106], [-77.3630052041171, 34.528481630917916], [-77.36303457331378, 34.5286474998045], [-77.3630273247942, 34.528696248286515], [-77.36315568860539, 34.528797201203155], [-77.36315811979375, 34.52879982032165], [-77.36316744566187, 34.52880894694678], [-77.3632080516681, 34.528915040338056], [-77.36327210271372, 34.528950461455466], [-77.36329014262844, 34.528964421607526], [-77.36329170717411, 34.52899359773254], [-77.36321441602374, 34.52903653619859], [-77.3632120607545, 34.52907902273689], [-77.36300473182374, 34.52915285844457], [-77.36294670829119, 34.529145588304964], [-77.36268726254778, 34.5289900577648], [-77.36262498851679, 34.52895755015183], [-77.36256044621055, 34.52887194215969], [-77.36237893535883, 34.52866104107315], [-77.3622754143959, 34.5285597306853], [-77.36220677652332, 34.52834145771618], [-77.36220191752263, 34.52832549282], [-77.36225021916405, 34.528275711193274], [-77.36242787181301, 34.5280481206298], [-77.36249472175118, 34.527984848637075], [-77.36258180750568, 34.5279374475913], [-77.36285469880185, 34.52774181365382], [-77.36262961437049, 34.5275537595852], [-77.36259834492608, 34.52753391530872], [-77.3625960517338, 34.5275311538215], [-77.36259143544534, 34.52751625532888], [-77.36248914610606, 34.52712931387164], [-77.36250617197092, 34.5270575420289], [-77.36251074490765, 34.526999180272945], [-77.36258141535887, 34.52680187858145], [-77.36260851210595, 34.52676920800366], [-77.36292343688906, 34.52670328018792], [-77.36299196322904, 34.5264979144314], [-77.36321293405445, 34.52634742901864], [-77.36340487231273, 34.52595333415294], [-77.36340278862262, 34.52594908449506], [-77.36340211310966, 34.525942760186275], [-77.36341247012484, 34.52594004835979], [-77.36369178815968, 34.52558699673222], [-77.36381465499883, 34.52551619646324], [-77.3639524028886, 34.525380258161036], [-77.3640119550183, 34.52524607239912], [-77.36421658262783, 34.5251034297593], [-77.36451991789308, 34.52510920805726], [-77.36481544392306, 34.52525592595224], [-77.36499701195035, 34.525303431114175], [-77.36526442105128, 34.52535883152839], [-77.3653874648542, 34.52539304953618], [-77.365402759286, 34.525406408236115], [-77.36540815946101, 34.5254153605487], [-77.36546742741024, 34.52545761863437], [-77.3655607730606, 34.52552817241144], [-77.36562574643688, 34.52562883827505], [-77.3655687546726, 34.52576351893393], [-77.36553529088498, 34.52598736586563], [-77.36554766365767, 34.52612973986012], [-77.36544609312637, 34.52633915873759], [-77.36543481990218, 34.52639082340122], [-77.36538704365435, 34.526411950921535], [-77.36536378772979, 34.52643032841441], [-77.36526832855975, 34.52653722272106], [-77.36524793166906, 34.52659261930855], [-77.36517267756372, 34.52667341579786], [-77.36518830791522, 34.526775702528575], [-77.36517120688158, 34.52680364637522], [-77.36497293903791, 34.52694701743379], [-77.36496805071731, 34.52695315034377], [-77.36495903463417, 34.5269668520186], [-77.36479575302768, 34.52711767052655], [-77.364573203172, 34.527249430595475], [-77.36456961866473, 34.52725599307659], [-77.36455994613874, 34.52725508947513], [-77.36455299830789, 34.52725665277178], [-77.36424094133798, 34.52734441618098], [-77.36416393627458, 34.52740841336132], [-77.3637695801401, 34.52761002462091]], [[-77.41795964627488, 34.4962052471993], [-77.41903847546583, 34.49576977274973], [-77.41983403869949, 34.49630107132387], [-77.41948703304936, 34.49688680610677], [-77.4194790304036, 34.49695847144549], [-77.41937679640655, 34.4970092942396], [-77.41918714866213, 34.497043355178945], [-77.41803353941813, 34.49702152847064], [-77.41775727941183, 34.49687044719336], [-77.41788320631673, 34.496470717262326], [-77.41788336856109, 34.49623385977808]], [[-77.30863385752433, 34.54518683383262], [-77.30879631482993, 34.54508667776726], [-77.30881825219008, 34.54507402300852], [-77.30886844075019, 34.54505332374009], [-77.30959016580468, 34.544718868283226], [-77.30995382315683, 34.544633379718185], [-77.31025415621517, 34.54436474894139], [-77.3111818405788, 34.543813023470435], [-77.31170314101534, 34.54349790792337], [-77.31245607652626, 34.54306933443936], [-77.31277405664147, 34.54288257463404], [-77.31336354330783, 34.54257591428305], [-77.31356902766152, 34.542465273953646], [-77.31365469298507, 34.542460940886514], [-77.31370690035902, 34.54240008802896], [-77.31436336006152, 34.542074878424465], [-77.31467133793184, 34.541962360586226], [-77.31550675657489, 34.54165196756398], [-77.31582295980151, 34.541529520824895], [-77.3159481746003, 34.54145755754138], [-77.31623988169122, 34.54136609625696], [-77.3175253353085, 34.54116636475703], [-77.31801014045699, 34.54099259711881], [-77.31831509670471, 34.54097005796768], [-77.31841452285927, 34.540804252501225], [-77.31841935903641, 34.5407439741301], [-77.31879432323015, 34.54049236162643], [-77.31885937221965, 34.54043595153734], [-77.31911597785003, 34.54029784140039], [-77.31925884655814, 34.5402217337452], [-77.31946913733654, 34.54010353909047], [-77.31991170414062, 34.539845695971344], [-77.32028083999316, 34.53975800789676], [-77.32035646874904, 34.539762578043245], [-77.32069939105259, 34.53973739218702], [-77.32113787315188, 34.53937416353943], [-77.32125601375486, 34.539206951572275], [-77.32205647237342, 34.53875254957312], [-77.32216504898598, 34.53865594776063], [-77.32229664855113, 34.53858272341938], [-77.32243818989309, 34.53860905089224], [-77.32356911603885, 34.53834602320149], [-77.32387987779846, 34.53802773892542], [-77.3239129606069, 34.53799615360465], [-77.32436231721145, 34.53773860496254], [-77.32497434001709, 34.53735399379347], [-77.32547501513032, 34.536960693860856], [-77.32603012597457, 34.536563414697326], [-77.32627575387721, 34.53629038580962], [-77.32639598077819, 34.53617042005818], [-77.32655176908968, 34.53598039796266], [-77.32665791917798, 34.535875449694174], [-77.32681824467124, 34.535778839882475], [-77.32707586001436, 34.53564669513189], [-77.32721161946492, 34.53556355821298], [-77.327617072799, 34.53534884881442], [-77.32786971781115, 34.5352709702012], [-77.3281851414803, 34.53522754232584], [-77.3283127901214, 34.53519080233612], [-77.32866122649267, 34.53499591030154], [-77.32877512306867, 34.53491910369296], [-77.32903401175052, 34.5348119706775], [-77.32919786013863, 34.53462812343689], [-77.32945713577064, 34.53453135782536], [-77.3297438983154, 34.5343971846234], [-77.3298896466629, 34.53419933783378], [-77.33025469787447, 34.53399530276954], [-77.33090655044052, 34.533969672932066], [-77.33144682879924, 34.53348583398497], [-77.33168589928816, 34.53335551178269], [-77.33184147806125, 34.533281119542934], [-77.33223921951591, 34.53312609431417], [-77.33263409306561, 34.53295695538504], [-77.33282235175933, 34.53291523690836], [-77.33303037076803, 34.532768519741246], [-77.33342775852013, 34.532587244820256], [-77.33374703728097, 34.53237184477974], [-77.33382590037863, 34.53234584530779], [-77.33422041023377, 34.532109951408366], [-77.33422393923647, 34.53210878430233], [-77.33422536414065, 34.532107931322564], [-77.33422780551584, 34.532106703908354], [-77.33479235411373, 34.53188718861069], [-77.33501410503982, 34.531889327443515], [-77.33520953126472, 34.531844295923094], [-77.33570626940771, 34.53189409192678], [-77.33576132008419, 34.53190949581586], [-77.33579768013803, 34.531954030376], [-77.33583342455287, 34.531897278229025], [-77.33597042033455, 34.53185610361534], [-77.33619356700692, 34.5318094938465], [-77.33623833528925, 34.53181757335381], [-77.33639052382844, 34.53191612391346], [-77.33658276783436, 34.53195348048523], [-77.3369681505939, 34.53195295904351], [-77.3369777545687, 34.53195450500747], [-77.33736499449472, 34.53207645160078], [-77.33745952010217, 34.53207267563315], [-77.33775942245535, 34.531994812975775], [-77.33814660795419, 34.53203275140301], [-77.33814345418615, 34.532037887775324], [-77.33814887443097, 34.532128087272895], [-77.33816749616955, 34.53250236456013], [-77.33819310025311, 34.53251569946933], [-77.33822412996956, 34.53256447162395], [-77.3387486379846, 34.53292542919406], [-77.3387164625634, 34.533052359230865], [-77.33891356374357, 34.53300907475007], [-77.33912038306207, 34.53311677627423], [-77.3392411797483, 34.53313803261595], [-77.33930107101298, 34.53322668203693], [-77.33937318534134, 34.53332523112618], [-77.33947085396497, 34.53344693338402], [-77.33968809759051, 34.53346515534912], [-77.33972585564848, 34.53351932017134], [-77.33972968074593, 34.53373377873426], [-77.33975818170616, 34.533759488338774], [-77.33995006688058, 34.53390156388514], [-77.33967209482248, 34.53415700593533], [-77.3394872315189, 34.534173036415964], [-77.33914340300473, 34.53433755438666], [-77.33897636070836, 34.53442112377048], [-77.33887951813654, 34.53448037587177], [-77.33883701682453, 34.534409158691254], [-77.33870355951845, 34.534400819966216], [-77.33836803851013, 34.5342813064653], [-77.33839031230544, 34.53395623969649], [-77.33810881182653, 34.53385870496595], [-77.33777090850054, 34.53383423670955], [-77.33768750563844, 34.533830845927646], [-77.33732246860025, 34.53391273233919], [-77.33721946416367, 34.534062563899916], [-77.33692507513273, 34.534121988082816], [-77.33686594209924, 34.53413884841202], [-77.33672822877976, 34.53414670621805], [-77.3366102491069, 34.53421225719488], [-77.33655669926782, 34.53423669084504], [-77.33652907895619, 34.534270843222274], [-77.33645472016276, 34.534357033351945], [-77.33641102845394, 34.534414172988235], [-77.33629587085483, 34.53450228664157], [-77.3362281810062, 34.53457355459023], [-77.33612738643718, 34.534665456247474], [-77.33578907017782, 34.53478444407481], [-77.33573260059212, 34.53476191166004], [-77.33545764491944, 34.53469520675138], [-77.33522862621162, 34.53472577858935], [-77.33494582534206, 34.534834086264645], [-77.3345579546545, 34.5347539696707], [-77.33371794296869, 34.53490332142639], [-77.33337213556828, 34.5349842079854], [-77.33316287497884, 34.53506834016528], [-77.3327951527737, 34.53525049952942], [-77.33200299142823, 34.53549722293274], [-77.33177929975034, 34.53595841857272], [-77.33151645162005, 34.53560341518195], [-77.33100133002799, 34.53565087187711], [-77.33082634238458, 34.53591793766226], [-77.33020560340888, 34.536107527565335], [-77.33020204771232, 34.53611077864207], [-77.33019302005806, 34.536114246778496], [-77.32992086099998, 34.536470689642925], [-77.32930054858767, 34.5367321726679], [-77.32860449982492, 34.537434546388894], [-77.32821118522564, 34.53762551256811], [-77.32800652656269, 34.53789744204662], [-77.32751228245607, 34.53827886099176], [-77.32756696369842, 34.538450254575324], [-77.3270021566399, 34.53881260708029], [-77.32645750810988, 34.53875891403808], [-77.32621813256567, 34.5387645016359], [-77.32555005687904, 34.5391511418413], [-77.32542292370093, 34.539196474780354], [-77.32530343607924, 34.53926520850885], [-77.32436486638511, 34.539727242641916], [-77.32383574735869, 34.539920315591736], [-77.3232852396074, 34.53989884641057], [-77.32289186938233, 34.54000362091536], [-77.32226515759419, 34.53993215694862], [-77.32204135838191, 34.53987437553881], [-77.32168176423986, 34.53991115624933], [-77.32147870877542, 34.5399874722205], [-77.32096536005386, 34.54005911829624], [-77.32068889916354, 34.54018662491819], [-77.32024978393352, 34.54048100926305], [-77.3201089525162, 34.540635756436956], [-77.31989157026435, 34.54070742571601], [-77.31958523981582, 34.540877561153145], [-77.31938702094581, 34.54091654602887], [-77.31909954558235, 34.54100086105801], [-77.31891812549007, 34.54104952377988], [-77.31857108712421, 34.54121180045426], [-77.31839876321973, 34.54129344488389], [-77.31830505082809, 34.541399677898006], [-77.31778864567849, 34.5414931632167], [-77.31756214711281, 34.54184635929919], [-77.31750883275461, 34.541871826936536], [-77.31748758475767, 34.54187034151098], [-77.31696033591336, 34.54208348407474], [-77.31671371196325, 34.54229669160259], [-77.31616586942957, 34.54253654277192], [-77.31604234978042, 34.54263012751344], [-77.31591777635188, 34.54275600317369], [-77.3151200334147, 34.54317465793589], [-77.31466584181297, 34.54373122834462], [-77.31454637754996, 34.543889014210045], [-77.31464868903394, 34.54449958940249], [-77.31479000736655, 34.54469263693632], [-77.31522513703686, 34.54502886385258], [-77.31526309727495, 34.545114313934576], [-77.31545699189145, 34.54532628500119], [-77.31544289613821, 34.54534678381347], [-77.31546445109801, 34.54534963333886], [-77.31554115896026, 34.54556399920173], [-77.31558909411974, 34.54563906173283], [-77.31545714605, 34.54566160841256], [-77.31523707089048, 34.545716050810896], [-77.3150629357297, 34.54573005135208], [-77.31483734109996, 34.54590989320634], [-77.31476438965163, 34.54598271278731], [-77.31462081426815, 34.54618580013311], [-77.3144626467228, 34.54633262918195], [-77.31454093172735, 34.546511355314415], [-77.31455902819818, 34.54668429483618], [-77.31452109188686, 34.546767642538796], [-77.3144562005519, 34.546826368786], [-77.31444774767262, 34.54685167005175], [-77.31434364494352, 34.54696003729212], [-77.31433524565999, 34.54701589826766], [-77.31424591062768, 34.547087717188205], [-77.31421209324691, 34.54710133488863], [-77.31407084308115, 34.54713556275777], [-77.31385707410803, 34.54726970941443], [-77.31384895734375, 34.547272870258794], [-77.31348504192403, 34.547309716663385], [-77.31345589270073, 34.54729203833485], [-77.31334597187363, 34.54727939698295], [-77.31339286676194, 34.54734138735849], [-77.31322386298942, 34.547507190796864], [-77.31310173769279, 34.547628004457344], [-77.31308906631709, 34.54765115394637], [-77.31305455938269, 34.54766390169007], [-77.31287091900606, 34.547905959903716], [-77.31278630296114, 34.54800057581529], [-77.31270374733644, 34.54817477538381], [-77.3126866391699, 34.548200476540565], [-77.31264683213391, 34.548308297318066], [-77.31258430551247, 34.54839907675926], [-77.3125633177579, 34.548439750342936], [-77.31258996796927, 34.548469029820325], [-77.31258888070599, 34.548558484535334], [-77.31257373237446, 34.54864236934843], [-77.31257251951271, 34.5486832387358], [-77.31242859690572, 34.54882012336789], [-77.31242118032485, 34.54883792621299], [-77.31227135683235, 34.54897129373953], [-77.31225593561642, 34.54898447098853], [-77.3122378978536, 34.549003899173236], [-77.31208937114575, 34.54915178816501], [-77.312036276353, 34.54923027124404], [-77.3120154333855, 34.549252851851946], [-77.31192416966127, 34.549319769320604], [-77.31183621136006, 34.5493902421774], [-77.31166149322414, 34.549440274812596], [-77.31155940793921, 34.549563141151104], [-77.31151088894649, 34.5496153660043], [-77.31147099746985, 34.54969824044796], [-77.31143569932922, 34.54972636844428], [-77.31128052792602, 34.5497516110984], [-77.31108258747143, 34.549876414367915], [-77.31103877271019, 34.5499095684684], [-77.31073970333748, 34.54998508616006], [-77.31035653730068, 34.55022546848889], [-77.31028016308805, 34.55025815151951], [-77.31024497299603, 34.550273455660516], [-77.30984632129532, 34.55054373361638], [-77.30953571211326, 34.550832933384164], [-77.30948778882119, 34.55086599647753], [-77.30944530376105, 34.5508869572679], [-77.30925009338526, 34.550998669030335], [-77.30923120154804, 34.55100836671329], [-77.30904805483918, 34.55108344145398], [-77.30892523968859, 34.551088888693], [-77.30890811136614, 34.551167843504764], [-77.30865048701405, 34.55129341619836], [-77.30851007044703, 34.55138356577203], [-77.30825891571185, 34.55150212832794], [-77.30825299925051, 34.55149989570187], [-77.30823481219662, 34.55150931012937], [-77.30790044627922, 34.551583527434026], [-77.30785802615574, 34.551599299607325], [-77.30759882458717, 34.55175986465866], [-77.3070668929013, 34.55184845965632], [-77.3068776337965, 34.55207912868765], [-77.30688725151137, 34.55219236816237], [-77.30666350092638, 34.55230569588352], [-77.30652505473438, 34.55240429251495], [-77.30632765003948, 34.55247954419265], [-77.30626733105736, 34.55245571923745], [-77.30589805273941, 34.55257916479148], [-77.30587423543919, 34.55258418490237], [-77.30586163764255, 34.55259055132488], [-77.3057992205521, 34.552547645080566], [-77.30557178181178, 34.55238118776597], [-77.30557841596541, 34.5523221107246], [-77.30506375432705, 34.551964488561154], [-77.3051126731854, 34.551709105975824], [-77.3035078089213, 34.55120857041799], [-77.30338100754228, 34.55108798620194], [-77.30315554584912, 34.5512099273548], [-77.30310539330864, 34.55123543146225], [-77.30300186107395, 34.551281184364534], [-77.30156256586312, 34.55216129767188], [-77.30113141147245, 34.5522614780898], [-77.30046586470053, 34.5526243247986], [-77.30001851844926, 34.553629600853576], [-77.3000865276481, 34.55365797971669], [-77.30004082076944, 34.553717878832046], [-77.30018521543981, 34.554468631688906], [-77.30006905971217, 34.55463970991146], [-77.30004631104168, 34.55471439783618], [-77.30029190696945, 34.55509734645774], [-77.3002253133757, 34.55529852020681], [-77.30024497115771, 34.555348887459125], [-77.30009471013034, 34.5554833587148], [-77.30009630047277, 34.55549262215433], [-77.29997265066118, 34.55554812872227], [-77.29995189323373, 34.55557454336147], [-77.29991102012889, 34.555592918793465], [-77.29983883059352, 34.5556071695905], [-77.29975164924598, 34.55564073043825], [-77.2997140127345, 34.55562166210214], [-77.2996137060494, 34.555624361907576], [-77.29951878679098, 34.555574920793916], [-77.29934926091173, 34.55558297690869], [-77.29913090665941, 34.55537252269208], [-77.29851313489465, 34.555842169417225], [-77.29841360356144, 34.55590671669182], [-77.29833189980619, 34.555952294815796], [-77.29816763405236, 34.55599354199556], [-77.29780276406231, 34.556106066943315], [-77.29753679084385, 34.556366604524904], [-77.29749546708672, 34.556453292047216], [-77.29747918788738, 34.55648011383419], [-77.29746024402385, 34.556528174601254], [-77.29741494083285, 34.55661173316248], [-77.29735684577543, 34.55663422552604], [-77.2972847249408, 34.55675281597012], [-77.29719071920874, 34.55680175941982], [-77.29713183992166, 34.556886634585354], [-77.2971253309004, 34.5568941371372], [-77.29712173490694, 34.556898600487564], [-77.29703236325572, 34.55694208753941], [-77.29698643407778, 34.556950703882094], [-77.29693362078739, 34.55696646772851], [-77.29682637091365, 34.557007235101345], [-77.29673743618207, 34.55696020301163], [-77.2964026738587, 34.556914778655525], [-77.29634301703487, 34.557034389531864], [-77.29627494864043, 34.55714247550997], [-77.29611693084408, 34.55727250535367], [-77.29594380467955, 34.5573112623467], [-77.29587585384608, 34.55740352543389], [-77.29587160736426, 34.55744513778318], [-77.29574284333421, 34.55750696468553], [-77.29568366308868, 34.55755836184639], [-77.2955748071536, 34.55761011382989], [-77.29554371999579, 34.557624907282936], [-77.29539429859395, 34.55766585714472], [-77.29518024596713, 34.55778911162726], [-77.29515782608483, 34.55779912030071], [-77.29514680657533, 34.55780435360176], [-77.29507830323732, 34.55784582972878], [-77.29490884369628, 34.557926288719436], [-77.29490448916894, 34.55795106735044], [-77.2947486902226, 34.55803457006291], [-77.29467189729527, 34.558059320810756], [-77.29460500846554, 34.55811642496243], [-77.29445115237704, 34.55820024602632], [-77.294350838839, 34.55825349331952], [-77.29432981167704, 34.55826536508887], [-77.29427408541073, 34.558286291710886], [-77.29418796274692, 34.558320492650566], [-77.29409322758039, 34.55834902325012], [-77.29395510225204, 34.55838297221136], [-77.29380365946581, 34.55838173338531], [-77.29357688814696, 34.55850869011687], [-77.29356452650109, 34.55851369974765], [-77.29355928081146, 34.55851597981206], [-77.29354507989633, 34.55852201631981], [-77.29336215480949, 34.558549316569035], [-77.29326845662992, 34.55861043785995], [-77.29325150572672, 34.55860966803279], [-77.293163686359, 34.55863934350978], [-77.29305567947694, 34.558705844191394], [-77.29296817123172, 34.558720099095275], [-77.29277120686716, 34.55886904431744], [-77.29276551012971, 34.558871672857045], [-77.29275275544843, 34.55887952616621], [-77.29249213555515, 34.55898511738858], [-77.29250188829417, 34.55903007030603], [-77.29236729446578, 34.559105570674724], [-77.29230559704088, 34.55914270753193], [-77.29217011666772, 34.559199192818895], [-77.29216874315539, 34.55919899027782], [-77.29216605353942, 34.55920063478177], [-77.29201721987047, 34.55925068117766], [-77.29197073185685, 34.55926959659178], [-77.29183376476917, 34.559332743009094], [-77.29157610477051, 34.55935187155652], [-77.29142994576154, 34.55946150233899], [-77.29137603618383, 34.55950925005679], [-77.29130487249732, 34.55956893702198], [-77.29121640795638, 34.559605938015046], [-77.29117698773892, 34.559623553556996], [-77.29101994641711, 34.55970647280154], [-77.29094781104568, 34.55972354802826], [-77.29094590723834, 34.55974281457612], [-77.29077967025015, 34.559819210626095], [-77.29067201592258, 34.559837650716716], [-77.29056708099193, 34.559919538737596], [-77.29044352362067, 34.55997480005907], [-77.29038257413477, 34.560005449180665], [-77.29027394289227, 34.56006707875517], [-77.2899704714178, 34.56026275582705], [-77.28975238676048, 34.56038842220633], [-77.28955910357784, 34.560488970818945], [-77.28937843187572, 34.56057561049767], [-77.28935376695324, 34.56058740166096], [-77.2893135763046, 34.56060008277538], [-77.28914922119169, 34.560652475986494], [-77.28877176483053, 34.56080365849228], [-77.2887392844927, 34.56081819841394], [-77.28871332343347, 34.56083019872589], [-77.28857274187274, 34.56088798314018], [-77.28836404167083, 34.56097592509211], [-77.28832925026204, 34.560987957722965], [-77.28825723646997, 34.56100937341177], [-77.28805666057775, 34.56107547125659], [-77.287920041459, 34.56112287205676], [-77.28771905512626, 34.561213230035136], [-77.2877117841769, 34.561216338418745], [-77.28768963032111, 34.56122604859312], [-77.28753198752179, 34.56129488052314], [-77.28750971238978, 34.56130490775427], [-77.2874748397756, 34.561317109989545], [-77.2873700013657, 34.56135379380874], [-77.28730531485652, 34.56136359615768], [-77.28717030991896, 34.561416255354075], [-77.28710039516878, 34.56144425800286], [-77.28672326022355, 34.56162726114765], [-77.28668968412005, 34.561642225187995], [-77.2866606757912, 34.56165708633991], [-77.28627816911775, 34.56187394551145], [-77.2862191910254, 34.56190440916294], [-77.28607249653845, 34.561986194400646], [-77.28594259680924, 34.56205817349328], [-77.28586685681721, 34.56209703650554], [-77.28579848463029, 34.562128829467255], [-77.28566137859917, 34.562201059139554], [-77.2855057924837, 34.5622699798747], [-77.28545621102873, 34.56229198945749], [-77.28519170339376, 34.562404033565414], [-77.28506571406609, 34.56245793581887], [-77.285046055903, 34.562466218606424], [-77.28501291983524, 34.56247738317189], [-77.28474102946278, 34.56257653136868], [-77.28463658957816, 34.56261140373556], [-77.28449959028192, 34.56268317864085], [-77.28436367399485, 34.56275316706568], [-77.28422547232306, 34.562825942326825], [-77.2840709577558, 34.562895622274226], [-77.28398138903603, 34.562935231981385], [-77.28381534133464, 34.5629989271886], [-77.28361467147302, 34.563100138650825], [-77.28340414554549, 34.56321659070155], [-77.28319914865833, 34.56331936378742], [-77.28319835905071, 34.563319694623445], [-77.28299387367882, 34.56339533590961], [-77.28286842900377, 34.563444058622146], [-77.28278903919252, 34.56347201334418], [-77.28265962143642, 34.563523095549996], [-77.28258409345155, 34.56355334817445], [-77.28226164253385, 34.56368538254395], [-77.28219211416345, 34.56371091283633], [-77.28217412728964, 34.56371910145038], [-77.28215290782668, 34.56372940214445], [-77.28181914745261, 34.563882692996394], [-77.28176362973518, 34.56390709892136], [-77.28170081167914, 34.56393999616883], [-77.28153307771733, 34.5640642961593], [-77.28139110144541, 34.56416177117369], [-77.28137093300023, 34.56417584779562], [-77.2813289520643, 34.564203504757415], [-77.28112400041553, 34.5642848181075], [-77.28104866679162, 34.564370541446245], [-77.2810249911148, 34.56438803904629], [-77.28088656086061, 34.564402230297276], [-77.2808678483428, 34.56452370481153], [-77.28080348589685, 34.56458694909882], [-77.2807752542432, 34.564631807659104], [-77.28075309751432, 34.56470082366988], [-77.28068423286757, 34.564776242593176], [-77.28065482974027, 34.56481093767109], [-77.28063109987288, 34.56483217529343], [-77.28057305944378, 34.56486528174233], [-77.28041804137871, 34.56497126978818], [-77.28037409403143, 34.56502455237355], [-77.28027452524803, 34.56511351585455], [-77.28025242889763, 34.56513282852405], [-77.28024175442621, 34.56514306413445], [-77.28009821783365, 34.565238548137565], [-77.28004664755045, 34.56529812293091], [-77.27998145378778, 34.56534720913211], [-77.27986599173624, 34.56543044962661], [-77.27984375620731, 34.56544625974548], [-77.27982342724027, 34.56545262894413], [-77.2798023362365, 34.565474203276274], [-77.27964071924725, 34.56559426727797], [-77.27953946651535, 34.565659599418595], [-77.27952404733455, 34.56566477772381], [-77.2795212346872, 34.56567141334884], [-77.2794274871301, 34.56573320901148], [-77.27938521862674, 34.56577170501007], [-77.27935808603081, 34.56582441675153], [-77.279312860022, 34.565883853373045], [-77.27927628400417, 34.56592731147338], [-77.279225607199, 34.56599483193119], [-77.27912009999481, 34.56609732624276], [-77.2791135187452, 34.56610385952114], [-77.27910943325335, 34.566107499534205], [-77.27910000102648, 34.56611214812476], [-77.27886688619078, 34.56622037330762], [-77.27860754161492, 34.566299777889355], [-77.27859585750544, 34.56630791920552], [-77.27855738235043, 34.566351984195414], [-77.27832614322185, 34.56651333682971], [-77.2783427092212, 34.56657238333487], [-77.27824373818946, 34.5666519193205], [-77.2780246660643, 34.56672531808593], [-77.27787250406757, 34.566873198924654], [-77.27778069684751, 34.56689727989489], [-77.2777136226329, 34.56699185519813], [-77.27744960677941, 34.567151470264704], [-77.27746665669305, 34.56726812392211], [-77.2774626254762, 34.56727156160577], [-77.27725659150862, 34.56737197122574], [-77.27712213862176, 34.567523921878475], [-77.27703776900593, 34.56755088198284], [-77.27700059734333, 34.567587523865015], [-77.2770068129094, 34.567624165817065], [-77.27685697256368, 34.567718672697396], [-77.27680862008734, 34.56780810592965], [-77.27673695072335, 34.56786906238959], [-77.27668442427581, 34.567893798745125], [-77.27664492187841, 34.56791307697256], [-77.2766242275888, 34.567951253130026], [-77.27651910850729, 34.56802102441501], [-77.27649066433645, 34.56805006175751], [-77.27643153164007, 34.56813197616053], [-77.27636378272791, 34.568190421656], [-77.27631521125073, 34.56822260540878], [-77.27627945214087, 34.56823785972708], [-77.27626296937228, 34.56827034628294], [-77.2761253820021, 34.56838236471557], [-77.27606896238458, 34.56845698636596], [-77.27597426427025, 34.56854411279712], [-77.27595383231973, 34.56855838047564], [-77.27595022716048, 34.568565489631126], [-77.2759415102087, 34.56857452367984], [-77.27586667169732, 34.56864515610195], [-77.27581817942018, 34.56867294672255], [-77.27576394690834, 34.5687180905998], [-77.27572114329827, 34.56878315480988], [-77.27562027945129, 34.568878613752496], [-77.27560619244532, 34.56889195518536], [-77.27559821823142, 34.56889928379468], [-77.27557324115357, 34.56892055029722], [-77.27550315566378, 34.56897903264267], [-77.27545526038243, 34.56899792815845], [-77.27538665583, 34.5690397173432], [-77.27533656047297, 34.56910643375261], [-77.27522569307058, 34.56919121760623], [-77.27519702192662, 34.56919965238535], [-77.2751881611774, 34.569212605539036], [-77.27517711529136, 34.56922839292517], [-77.27510792225759, 34.56928470441505], [-77.27501709065882, 34.56931699561406], [-77.27498290969648, 34.56933781901839], [-77.27488994281615, 34.56943854613277], [-77.27473464268112, 34.56944561163152], [-77.27466336273498, 34.56960461915965], [-77.27444189391342, 34.569743126504946], [-77.27450813645966, 34.56984650009676], [-77.27447897070802, 34.569875399171366], [-77.27427233805055, 34.569965467811826], [-77.27411085265173, 34.5701790803512], [-77.27410041200517, 34.57018762274426], [-77.27409600112996, 34.57019198136962], [-77.27407846554328, 34.57021002193597], [-77.27375475540877, 34.57039612403412], [-77.27379792349078, 34.570480050644335], [-77.27374020552432, 34.57053273120363], [-77.27366327635094, 34.57062460092408], [-77.2736541676027, 34.570632451078495], [-77.27352607265875, 34.57067088233639], [-77.27343951735284, 34.5707980593623], [-77.27338092680345, 34.57083807684147], [-77.27336317275953, 34.570854596149374], [-77.2732986506701, 34.570949443697906], [-77.27327266569974, 34.57097023539331], [-77.27314235857236, 34.57098680614509], [-77.27300773292089, 34.571044412364515], [-77.27300053761296, 34.57114625619701], [-77.27297927568482, 34.571160009057614], [-77.27297565134424, 34.57116713488355], [-77.27293219675167, 34.57122686524227], [-77.27286445244191, 34.571268817613735], [-77.27274453477659, 34.57129018337704], [-77.27260432146998, 34.571458584920805], [-77.27258185589933, 34.57147409537479], [-77.27257012404216, 34.5714813507013], [-77.27253082728606, 34.57150596434782], [-77.27240306846531, 34.57158605360142], [-77.27235437540716, 34.57160037816301], [-77.27219541227136, 34.57168756499512], [-77.27215329692982, 34.57175014116506], [-77.2719624266242, 34.57189461069117], [-77.27194834800987, 34.57190381204614], [-77.27173953809928, 34.572039350154256], [-77.27160388505803, 34.57211240249099], [-77.27153275285067, 34.572184039174914], [-77.2714995782076, 34.572259776447126], [-77.27147051556409, 34.57233758563552], [-77.27143716532768, 34.57242762011639], [-77.27142250874189, 34.57247236554708], [-77.27139527092982, 34.57256733782033], [-77.27140688586806, 34.57257652891215], [-77.27138219925553, 34.57267118175645], [-77.27137527368397, 34.57268359926768], [-77.27136205862459, 34.5726894156802], [-77.27133199839768, 34.572724618770714], [-77.27122514498839, 34.57278963152677], [-77.2712511224223, 34.57281214846409], [-77.27119333650042, 34.57286795663359], [-77.27116546820939, 34.572902773915004], [-77.27111545360351, 34.57294449667041], [-77.27109896338234, 34.57294832324699], [-77.27108921100539, 34.57296466746176], [-77.27102800077793, 34.5730098012711], [-77.27100447059706, 34.573028583488494], [-77.27094482732716, 34.573073569691246], [-77.27083881892078, 34.57311276327965], [-77.2708472244675, 34.57314718695018], [-77.27080466535169, 34.57317948205645], [-77.27072248910207, 34.57322145202403], [-77.27062236880366, 34.573323287416535], [-77.27060893608324, 34.57333400584753], [-77.2705979995398, 34.573342736714835], [-77.27043802621714, 34.573434756888055], [-77.27041080560241, 34.57348639450983], [-77.27040493414796, 34.5734966068552], [-77.27034202433875, 34.573545043408906], [-77.27024997412337, 34.57361426655984], [-77.27017760228685, 34.57360759181083], [-77.27007221257222, 34.57364166575189], [-77.27011962550351, 34.57369535450833], [-77.27002276196731, 34.573755611851496], [-77.26999880205582, 34.57377717234386], [-77.26997780287503, 34.57381099416197], [-77.26991747049738, 34.573855098367765], [-77.26990101390606, 34.57385450291765], [-77.26987500812882, 34.57386182959298], [-77.26974690539868, 34.57388174539841], [-77.26960567768499, 34.57407161584117], [-77.26959958666218, 34.57407584382679], [-77.26959842524968, 34.574078291660285], [-77.2695918116409, 34.57408239082495], [-77.26908256435118, 34.57427086252585], [-77.26908488931531, 34.574278774314], [-77.26897355804552, 34.5744921447717], [-77.26896440224473, 34.5744972396916], [-77.26896236055619, 34.57449840171428], [-77.26890412501551, 34.5746103342065], [-77.26890290473814, 34.57461128875251], [-77.26877686011704, 34.57466202561466], [-77.26874947165192, 34.574716008444774], [-77.26873973089673, 34.57472560959456], [-77.26866839980192, 34.57472986587865], [-77.26859907098047, 34.57479541252977], [-77.2685675705447, 34.5748044929208], [-77.26836346675759, 34.5748446236335], [-77.26827020217219, 34.574868626894954], [-77.26822768920619, 34.57491064983206], [-77.26811109473171, 34.57499896098228], [-77.26808405698658, 34.57501719008137], [-77.2680760474921, 34.57502455520615], [-77.26797222109904, 34.57512623010537], [-77.26789958195513, 34.575196215704665], [-77.2678508402267, 34.57528016934103], [-77.2677960641538, 34.57534804655383], [-77.26772972669289, 34.575373755601206], [-77.26767003986946, 34.575531611639434], [-77.26760728891499, 34.57556887050796], [-77.26759531816124, 34.57558282092622], [-77.26754694565726, 34.575681959471396], [-77.26750021750205, 34.57571820208547], [-77.26736503793234, 34.575706621883334], [-77.26714067006999, 34.57576784588505], [-77.26721766694983, 34.57588478827927], [-77.26720456409038, 34.575892506586364], [-77.26719825802373, 34.57589860262802], [-77.26699749190736, 34.575992254853965], [-77.26695960967199, 34.57600325739756], [-77.26687215500866, 34.57619793093246], [-77.26685065466675, 34.576216375930464], [-77.26684006575886, 34.57622554466171], [-77.26680793230477, 34.57625371550456], [-77.26677657358802, 34.57626946732447], [-77.26677946270472, 34.57627858174887], [-77.26674689733653, 34.5763069867096], [-77.26671485689056, 34.57632353099756], [-77.26668102448458, 34.57636138482004], [-77.26665155914957, 34.57638649912046], [-77.26656958459702, 34.57642994084271], [-77.26647855017816, 34.57652908751813], [-77.26645978808375, 34.57654455064234], [-77.26644284949609, 34.57655891179469], [-77.26635897249332, 34.576619191885264], [-77.2662850726864, 34.57664323460702], [-77.26623427735163, 34.57667259535208], [-77.26613736753015, 34.57674626351668], [-77.2659374283046, 34.57673719347562], [-77.26569488802247, 34.577006355108395], [-77.26559484572087, 34.57706028838029], [-77.26558351405806, 34.577079649401426], [-77.26547608700875, 34.57727202567322], [-77.26545970729276, 34.57728532849734], [-77.26545262395253, 34.577291848974156], [-77.265428916866, 34.57731369590198], [-77.26521777311548, 34.57741158824191], [-77.26518575526259, 34.57749945085922], [-77.26512714361212, 34.577586444592285], [-77.2650844592388, 34.577621633076696], [-77.26488064440274, 34.5777111219957], [-77.26485444838653, 34.577745677604426], [-77.26482153271478, 34.577824307084256], [-77.2647209384037, 34.57792231081048], [-77.26470751405624, 34.57793317350036], [-77.26470180667545, 34.57793853349177], [-77.26468506903228, 34.57795108633511], [-77.2644495203625, 34.57804276713431], [-77.26438258300573, 34.578143284863295], [-77.26437241780442, 34.578152589734714], [-77.26423638993103, 34.578181825723846], [-77.26421412428095, 34.57829585993906], [-77.26412743408451, 34.57835888436672], [-77.26409879851315, 34.57838806843901], [-77.26406593472345, 34.578471881438844], [-77.26395053532339, 34.57857003647703], [-77.26393107660712, 34.57856751383584], [-77.26388717330994, 34.57857565468073], [-77.26390444235057, 34.578595566118025], [-77.26371033721783, 34.57869980622727], [-77.26364675557451, 34.57879241237374], [-77.26360833569305, 34.578829945477274], [-77.26350007647241, 34.57884141852462], [-77.26349521047774, 34.57893255853046], [-77.26340012926168, 34.57900868117381], [-77.26336877661606, 34.57905325872533], [-77.26333897672063, 34.57912170533804], [-77.26325430800668, 34.579206499157856], [-77.26323005391198, 34.57923097161324], [-77.26316139206605, 34.57929691908994], [-77.26302766946398, 34.57940711623619], [-77.26300367882578, 34.57944883302574], [-77.26290966185519, 34.579519296572116], [-77.26284191754331, 34.57957052826819], [-77.26269070684361, 34.57965988167288], [-77.26262424477999, 34.579705550067125], [-77.2624596608521, 34.57985096935169], [-77.26240909106134, 34.579873396688924], [-77.26241959015915, 34.579886561345404], [-77.2622554803446, 34.58003481247809], [-77.26220442891085, 34.58009296520393], [-77.26208461328012, 34.58019573284374], [-77.26207602562188, 34.58020382681123], [-77.2619104440891, 34.58030550611099], [-77.26185981683183, 34.58034015210935], [-77.26174037462424, 34.580439700143884], [-77.26153773284584, 34.5805118526646], [-77.26160411368426, 34.58055940646418], [-77.26149265479222, 34.58067084262876], [-77.26142565842775, 34.580738704801554], [-77.26134681709952, 34.580801097984036], [-77.26130626831804, 34.58083369333441], [-77.261276470539, 34.580844801932], [-77.2612604802077, 34.580871815964606], [-77.26116227685313, 34.58095365212632], [-77.26111542312225, 34.58099257866941], [-77.2610328831991, 34.58106130652631], [-77.26098504066469, 34.58109966460129], [-77.26092194512046, 34.58114912282895], [-77.26087825778497, 34.58116697545186], [-77.26083013705414, 34.5812166988403], [-77.26071977214067, 34.5812979338158], [-77.26064684518394, 34.58135161203168], [-77.26061329488437, 34.58136754484891], [-77.26060533791124, 34.58138117153669], [-77.26057902539435, 34.58140259980408], [-77.26052271565575, 34.58145129590752], [-77.26044306028379, 34.581486237931735], [-77.26031506697942, 34.58159331120454], [-77.26031412733812, 34.58159392794856], [-77.26031384268981, 34.58159414852249], [-77.26031317826757, 34.58159460293302], [-77.2601961570976, 34.58165379089317], [-77.26015978900311, 34.58169961878559], [-77.2601518940929, 34.58170512737318], [-77.26006680824669, 34.581703059752684], [-77.26002744312362, 34.58174284315774], [-77.25996100721818, 34.581725913434134], [-77.25985153569155, 34.58167398733316], [-77.25962745104553, 34.581640913462245], [-77.25921387573311, 34.581638314419685], [-77.2592367986516, 34.58129345303129], [-77.25924623756171, 34.58127422614374], [-77.25923940458327, 34.581261344454184], [-77.25944501519183, 34.58082138553765], [-77.25944689248823, 34.5808186758594], [-77.25945361738904, 34.58081370912901], [-77.25977789959447, 34.580373380278395], [-77.26007591035716, 34.580068006676775], [-77.26031439516797, 34.579944258347666], [-77.26079562747522, 34.57980777991156], [-77.26114588645365, 34.579705169918], [-77.26102330067074, 34.57952869873993], [-77.26103156854222, 34.579487902233346], [-77.26121176980749, 34.57907218825556], [-77.261194411544, 34.57901946924066], [-77.26099645058397, 34.579055246230055], [-77.2607530193692, 34.579355740224514], [-77.25992558346094, 34.579167305918716], [-77.25951475159647, 34.579007181597596], [-77.2594670167042, 34.578463554456704], [-77.25947573742266, 34.57821965345411], [-77.25945070188365, 34.57799093083702], [-77.25970454417724, 34.57778045080671], [-77.25994484925322, 34.57755847616449], [-77.2600885806332, 34.577450234835794], [-77.26045045761153, 34.57715751659166], [-77.26084861437992, 34.576811746839965], [-77.26097504149796, 34.576696862360144], [-77.26126912593405, 34.576459628399654], [-77.26161770467067, 34.5761813192613], [-77.26208694649472, 34.57584166822006], [-77.26322916750418, 34.57499064137052], [-77.26323224363371, 34.57498839894326], [-77.26323461382827, 34.574986185341245], [-77.2639462162409, 34.57430896332205], [-77.26419233587006, 34.57412194815064], [-77.26468412933912, 34.57378682862462], [-77.26477291194576, 34.57372979610442], [-77.26503008047206, 34.573581206281716], [-77.2655513833575, 34.573286172520525], [-77.2658905111482, 34.573068096530754], [-77.26653740153047, 34.57267028689864], [-77.26697789498105, 34.572455689648706], [-77.26733894025611, 34.571981429887515], [-77.26786068074924, 34.57158243986006], [-77.26803582494577, 34.57137415581054], [-77.2681267218065, 34.57113202592961], [-77.26839989917057, 34.570849116768066], [-77.26855117461406, 34.570694065965746], [-77.26887789812436, 34.57049422855475], [-77.26961362316634, 34.57014864461082], [-77.26997432104031, 34.56999273550069], [-77.27039093150451, 34.569896047751804], [-77.27067324487825, 34.56977667270067], [-77.27107395171922, 34.56948485935794], [-77.27161924496457, 34.56930364700403], [-77.27170880120482, 34.569056980412185], [-77.27213038506046, 34.568716576822496], [-77.27230754347423, 34.568601441511746], [-77.27273185529391, 34.56819473019585], [-77.27306126165658, 34.567957419781436], [-77.27312439626472, 34.56775425298964], [-77.27332884867508, 34.56753265678615], [-77.27339632788505, 34.56730429197893], [-77.27404425373413, 34.566944092494396], [-77.27459851451695, 34.566695913373366], [-77.27502001473954, 34.56648923402559], [-77.27543888678368, 34.56612897569581], [-77.27548894502944, 34.5660547548196], [-77.27569153172729, 34.56591244694633], [-77.27606789704512, 34.565628915975374], [-77.27621225314084, 34.565502450419636], [-77.27656145478788, 34.565299117739286], [-77.27705197669542, 34.56493494684852], [-77.27725426835121, 34.564779472357316], [-77.27784424768691, 34.56442868664947], [-77.2779145607885, 34.564387778006896], [-77.27798005144726, 34.564365164472136], [-77.27819642720218, 34.56423886329875], [-77.27868346980046, 34.56394909470944], [-77.27892413770387, 34.56379535943537], [-77.2791764629801, 34.56368512745749], [-77.28018796984958, 34.56308288295109], [-77.28057264783732, 34.56277035407981], [-77.28127615175146, 34.56232828768831], [-77.2813972341469, 34.562243288673386], [-77.2814592389294, 34.56219833891618], [-77.28222406370173, 34.561621550305716], [-77.28362977586139, 34.5606915015705], [-77.2838733461797, 34.56056048261389], [-77.28406246729493, 34.56043398373262], [-77.28456330152629, 34.560062273481044], [-77.28552510003898, 34.559393631372025], [-77.28681860094744, 34.558681588660335], [-77.2871714452101, 34.55845254346762], [-77.28770221698583, 34.55811713078903], [-77.28882129266148, 34.55736225055405], [-77.28970194212354, 34.556939127374704], [-77.29046512568686, 34.55652376269585], [-77.29167678010208, 34.55560617816248], [-77.29206165078912, 34.55543197841565], [-77.29334495139852, 34.55462509296735], [-77.29349992587613, 34.554506687203556], [-77.2936561986831, 34.554421917019454], [-77.29440066027183, 34.553951660813624], [-77.29481118021062, 34.553705273962535], [-77.29525013493054, 34.55343604147242], [-77.29529313628467, 34.55339260946312], [-77.29532885369152, 34.55336131638648], [-77.29604916493045, 34.552855289701554], [-77.29614359810522, 34.55281308817634], [-77.29627743202056, 34.55273563447364], [-77.29684523088406, 34.552399465561344], [-77.29713898978852, 34.55230417595734], [-77.29749917661746, 34.552070752582225], [-77.29843882883137, 34.551424603091725], [-77.29885275663982, 34.55115139037608], [-77.29929887124479, 34.55083332384875], [-77.30003442898092, 34.550363275109945], [-77.30050252377808, 34.54996742676775], [-77.30139328986326, 34.54955357147544], [-77.30162738561033, 34.54941229938649], [-77.30211134018563, 34.54915259671579], [-77.3024227477152, 34.548983574433315], [-77.30250761116636, 34.54895656450039], [-77.30258838685472, 34.5488924559394], [-77.30321796412687, 34.548560674515116], [-77.30346579042512, 34.5484295177238], [-77.30372189073738, 34.54824016380443], [-77.30425009755842, 34.54781776926171], [-77.30458258460371, 34.54762701950651], [-77.30481354209431, 34.54749526083277], [-77.30511364841925, 34.547244624591215], [-77.30555206725575, 34.54699825100604], [-77.30561136962164, 34.54696025323888], [-77.30602705793491, 34.546695768044586], [-77.30640845884707, 34.546456188136695], [-77.30698818437148, 34.546170155589934], [-77.30778861187777, 34.545697964436755], [-77.30790711486752, 34.54562398716422], [-77.30799975900474, 34.54556925267818]], [[-77.36909429461826, 34.517741244881535], [-77.36901210176805, 34.517744871865666], [-77.36830831705994, 34.51778745198399], [-77.36794770024451, 34.51768622664511], [-77.36711747480265, 34.51781630535827], [-77.366785427283, 34.51811696116275], [-77.36675179087467, 34.51813506716666], [-77.36673024786737, 34.518147698140055], [-77.36627019266078, 34.51839741704925], [-77.36537303481823, 34.51867002671025], [-77.36514706662967, 34.51873117727985], [-77.36497435892174, 34.51876023515849], [-77.36436012788431, 34.5188188711021], [-77.36422423596622, 34.51889190064325], [-77.36411169600467, 34.51899184385943], [-77.36403937688249, 34.519298663464376], [-77.3635521183341, 34.51982857972806], [-77.36335703507521, 34.519960046396186], [-77.36317332232301, 34.52010632987042], [-77.36244882301092, 34.52051150352378], [-77.36196071272374, 34.520769204526985], [-77.36135412426938, 34.520972199170416], [-77.36059764333864, 34.521319762198985], [-77.36037568535183, 34.52142954552619], [-77.36031909433319, 34.52146193269759], [-77.3602224342779, 34.5215106930105], [-77.35978929217391, 34.52170081814859], [-77.3595788823787, 34.52194661068435], [-77.35945150389118, 34.52203315742817], [-77.35933936416346, 34.52212752833103], [-77.35936761622597, 34.5222508967051], [-77.35956505626731, 34.522550442916994], [-77.35958115973695, 34.52258235275129], [-77.35956299838634, 34.522640317691305], [-77.3591801210308, 34.522894561585446], [-77.35877358940007, 34.522833871440696], [-77.35836532172195, 34.523009611001285], [-77.35797985195074, 34.523216132488216], [-77.35786580895513, 34.52324836531859], [-77.35783076988335, 34.52332408717278], [-77.35717975192, 34.52387559967714], [-77.35712982722252, 34.52388364861809], [-77.35604293344718, 34.52380204872937], [-77.35560919404003, 34.52390092531922], [-77.35530869435348, 34.52387507324293], [-77.35508188986364, 34.523880359564565], [-77.35498286317123, 34.524121698456554], [-77.3549686106791, 34.524225876128625], [-77.35480880855323, 34.52457168740996], [-77.35469838381565, 34.524687205638045], [-77.354013107719, 34.52503787353162], [-77.35312531227765, 34.525044923009084], [-77.3524364909387, 34.52532570618703], [-77.35209566744194, 34.525407369963126], [-77.35141711735736, 34.52571646629946], [-77.35104230613756, 34.525888160293796], [-77.35085200435891, 34.52595516054637], [-77.35038706730991, 34.526151917372474], [-77.35005966646702, 34.52627358762213], [-77.34989056309071, 34.52632105721242], [-77.34970715400375, 34.526452251510705], [-77.34926487282016, 34.526698422513405], [-77.34897243493256, 34.52673981169271], [-77.34882858582107, 34.52679764776461], [-77.34847665274074, 34.5268374345177], [-77.34841288363805, 34.52688335932564], [-77.34841980346151, 34.527095431307465], [-77.34831673438063, 34.527142018104186], [-77.34821388842118, 34.52749196941426], [-77.3476754452571, 34.52754006882357], [-77.34660440569397, 34.528049159868466], [-77.3460938726918, 34.528039583665134], [-77.3457524403724, 34.528280846423684], [-77.34572312649043, 34.528494551588416], [-77.34580324225254, 34.52865543731595], [-77.34555321663693, 34.529177432190224], [-77.34556862037259, 34.52949606610819], [-77.34556655251751, 34.52979994106191], [-77.34555416370489, 34.529987786261536], [-77.34549140030447, 34.530140911302745], [-77.34529406910231, 34.530270033405394], [-77.3452556167538, 34.53034706526738], [-77.34523306386741, 34.53027881176678], [-77.3450075375273, 34.530222956616626], [-77.3448657632844, 34.53023115135686], [-77.34478186981403, 34.53022132545467], [-77.34471543262512, 34.53020264692429], [-77.34467010746445, 34.530204810632895], [-77.34465511196045, 34.530187955084], [-77.34466202184423, 34.53017736555094], [-77.34465914357631, 34.530124567691345], [-77.34466039345403, 34.530116394940215], [-77.34465578330783, 34.53000643709201], [-77.34465828189992, 34.52998373192368], [-77.34481811977406, 34.52984887981205], [-77.34465441354395, 34.5297661270076], [-77.34456286845618, 34.5296888884951], [-77.34463137767933, 34.52963093057283], [-77.34462050534128, 34.52955043870842], [-77.34449040487357, 34.529487097971014], [-77.3444724672249, 34.52942111412673], [-77.34442846402943, 34.52941530824447], [-77.34441553758354, 34.52936876995098], [-77.34437192163239, 34.52925585145004], [-77.34431135094616, 34.5291873397729], [-77.34410917366671, 34.528997806724874], [-77.34410507278204, 34.528975086059695], [-77.34409589994685, 34.52897352108285], [-77.34408270887047, 34.52895834468296], [-77.34400431735338, 34.52880998275947], [-77.34395272168207, 34.52874930284365], [-77.34393738712735, 34.52861928376686], [-77.34372646611409, 34.52857266663635], [-77.34370291825307, 34.52855536269806], [-77.34370951099585, 34.52853947788764], [-77.3435319842123, 34.52844336433065], [-77.34353053741708, 34.52844281953541], [-77.34342256889227, 34.5284054867941], [-77.34337738793673, 34.52840365014382], [-77.3433380635831, 34.52839435024287], [-77.34329431848018, 34.52838822971804], [-77.3432887118855, 34.52838610419646], [-77.34324044145062, 34.528372367244216], [-77.343217655664, 34.528365427715904], [-77.34317473140928, 34.52835168100142], [-77.34314314862146, 34.52833612526495], [-77.34308598042827, 34.528323168273154], [-77.34306951610256, 34.528310625218225], [-77.34304544564549, 34.528317647769924], [-77.34301628029604, 34.52831496720698], [-77.34298807695441, 34.52831191391257], [-77.34294757583521, 34.528306396135584], [-77.34292016790596, 34.528302964414976], [-77.34284982638869, 34.52829594085661], [-77.34284988454837, 34.52829581154513], [-77.3428496913391, 34.528295781252496], [-77.34284923426848, 34.52829574037909], [-77.34279500920381, 34.52827699952947], [-77.34275191852146, 34.528280331765636], [-77.34274619449664, 34.52828024866705], [-77.34275202669414, 34.528275648151904], [-77.34278213105831, 34.52826307118586], [-77.34281242786037, 34.52826381899989], [-77.34285062176093, 34.528255494203215], [-77.34287979174572, 34.528248517974916], [-77.34292494046868, 34.52823901735812], [-77.34294919675256, 34.5282362072203], [-77.3429980260325, 34.528244049743535], [-77.34304685502252, 34.528256615858254], [-77.34307220839028, 34.52826394498178], [-77.34311689130004, 34.52827477667004], [-77.34314436167412, 34.52828359233649], [-77.34323486221797, 34.52829718463024], [-77.34326202386673, 34.52823663435024], [-77.34334413506211, 34.52813138975568], [-77.34353514374752, 34.528194978489985], [-77.34354266603779, 34.52819393725695], [-77.3435407665046, 34.528197715889306], [-77.34359475994012, 34.52831116930729], [-77.34354726739001, 34.52843179952556], [-77.34372936870588, 34.52844692734451], [-77.34383272334158, 34.52833985205082], [-77.34385526878407, 34.52827368583593], [-77.34384098662501, 34.528209540919065], [-77.34380098405457, 34.52803667745287], [-77.34374281204902, 34.527864567551795], [-77.34363792075771, 34.52788051309754], [-77.34373057465082, 34.52780198897995], [-77.34372981623858, 34.527792961370295], [-77.34374468818804, 34.527783294193355], [-77.3440547573681, 34.527454365053764], [-77.34408586012458, 34.52726122907782], [-77.34410293086646, 34.52722942271325], [-77.34407417430563, 34.52706770532883], [-77.3440149420151, 34.52702661381436], [-77.34376379365689, 34.526955657971605], [-77.34367789047018, 34.52688489069219], [-77.34363293200536, 34.52683676061901], [-77.34349377174327, 34.52678287181642], [-77.34337861245977, 34.52663815553758], [-77.34337385422775, 34.52663227125545], [-77.34336952522472, 34.526629841545045], [-77.34337189695347, 34.5266251239867], [-77.3433502331298, 34.52651020769938], [-77.34336172622983, 34.52649597402669], [-77.34336373770984, 34.52644705980261], [-77.34338358281585, 34.52642288803031], [-77.34341851749761, 34.526399424887025], [-77.34346184234583, 34.52637173924276], [-77.3435831853751, 34.52627788076232], [-77.34365398859264, 34.526265668703516], [-77.34378204009523, 34.52616523864631], [-77.3440944707385, 34.52608696600312], [-77.34422317701146, 34.52626219182982], [-77.34432977447105, 34.526391595532054], [-77.34455680596736, 34.52660946206397], [-77.34470192400462, 34.526592670501756], [-77.34507257046856, 34.52645950846099], [-77.345155031384, 34.5262497871084], [-77.34512699504421, 34.52613213703202], [-77.34488859668107, 34.52596871550421], [-77.34473661044598, 34.52594349295258], [-77.3445740898739, 34.52586043540714], [-77.34445459147862, 34.52581445144173], [-77.34437815828284, 34.52584649324885], [-77.34430512398599, 34.52576076178549], [-77.3442839432089, 34.525702978576035], [-77.3443826888843, 34.52565017279628], [-77.344450755174, 34.52565999332459], [-77.34457909149737, 34.52564368250857], [-77.34464652051142, 34.52566921140709], [-77.34501650773582, 34.52565839624662], [-77.3451945630018, 34.52573717719176], [-77.34536146564075, 34.52575800423419], [-77.34546057848779, 34.525594494627], [-77.34549632272169, 34.52550882043726], [-77.34560945099325, 34.52523052081813], [-77.34576645397799, 34.525216729844345], [-77.3459295733866, 34.52518095438401], [-77.34616063366656, 34.5251440207861], [-77.34624604311485, 34.52504365146376], [-77.34631143284703, 34.52498241098175], [-77.34660377177202, 34.52472102143055], [-77.34696075342536, 34.52448822623458], [-77.34766993725565, 34.52434658369684], [-77.34774928044327, 34.52433508441949], [-77.34783438580487, 34.524326552747056], [-77.34788656983324, 34.524266080420524], [-77.34854381950484, 34.52392073035949], [-77.3487335222362, 34.52377071132077], [-77.34899157599847, 34.52361739531345], [-77.34934005693049, 34.523432240642364], [-77.34970459079832, 34.52324988576312], [-77.35013305004424, 34.5230843319531], [-77.35024690107934, 34.52301711247263], [-77.35063246811592, 34.52289155939981], [-77.35082870845423, 34.522803564414914], [-77.35092502917699, 34.52278020679236], [-77.35107765366783, 34.522732950069134], [-77.35171559426972, 34.52253731930884], [-77.35210054761964, 34.52242914691501], [-77.35250659983379, 34.522275049880236], [-77.3530022684638, 34.52224169728017], [-77.35329016215108, 34.52233655474546], [-77.35360256276671, 34.5221667664992], [-77.35408386336252, 34.52195656213207], [-77.35475164300611, 34.521732579380355], [-77.354875829013, 34.52165185121913], [-77.35511366976841, 34.52141204176942], [-77.35553841616093, 34.52120595533326], [-77.35562378995941, 34.52116358964114], [-77.35567244016252, 34.521144406260824], [-77.35575349853227, 34.521124703718634], [-77.35646139762231, 34.52097024023493], [-77.35698785211463, 34.52083403660344], [-77.35725155223768, 34.52074369497447], [-77.35777891218453, 34.52055702503345], [-77.35804208635385, 34.52050038499019], [-77.35818781191801, 34.52042460175822], [-77.35883195946704, 34.52028571388789], [-77.35886533581495, 34.52025762541327], [-77.35889492559599, 34.520232945145814], [-77.35920946115891, 34.51992837307683], [-77.35963115307855, 34.519637261092306], [-77.3596317693712, 34.51963688345159], [-77.36028963330773, 34.51946062726148], [-77.36042219717133, 34.51939741257967], [-77.36074291094793, 34.51927876033248], [-77.36121412688796, 34.519092080543324], [-77.36142038746314, 34.5190174962825], [-77.36157324680443, 34.518867875706555], [-77.36201016715555, 34.51860674219638], [-77.36243552651793, 34.51851809187207], [-77.36323781619697, 34.51813843586333], [-77.3635939860427, 34.51799636256173], [-77.36386619368724, 34.51787976377616], [-77.36438655195786, 34.51766202957243], [-77.36467975935936, 34.51762340532447], [-77.36503036480818, 34.51739053385913], [-77.36517914665464, 34.51732614340289], [-77.36569844811906, 34.517125721260484], [-77.36662047805613, 34.51675999630676], [-77.36676240515347, 34.516738126861284], [-77.36683797287486, 34.516686842241214], [-77.36713987049129, 34.516596928238144], [-77.36755347392356, 34.5164683064993], [-77.36804502531075, 34.51628081985531], [-77.36834596249588, 34.51613596081493], [-77.36904589040958, 34.51577445416729], [-77.36939236068872, 34.51562678518155], [-77.36992666591968, 34.515658032591446], [-77.37019565500562, 34.515340545234004], [-77.37060705136848, 34.51511795480164], [-77.37120869186582, 34.514840095781274], [-77.37151787606093, 34.514717563562634], [-77.37230980714418, 34.514382509259434], [-77.37231198728188, 34.514381578074705], [-77.3731035562572, 34.51401866574459], [-77.37341431167155, 34.51392656487176], [-77.37383579843495, 34.51367324325739], [-77.3746898844619, 34.51329002226695], [-77.37541785744199, 34.51299519102529], [-77.37548188699577, 34.5129763672208], [-77.37550824438512, 34.5129586738713], [-77.37556484154544, 34.51293432113537], [-77.37627480283135, 34.512622205178204], [-77.37660852357908, 34.51250066426622], [-77.37737924282827, 34.51218305907588], [-77.37772461311154, 34.51205034484156], [-77.37785940802694, 34.51196701906306], [-77.37826306224208, 34.51180606589895], [-77.37865098572027, 34.51167096335805], [-77.37888858302802, 34.51162331921452], [-77.37943981274917, 34.51149601104776], [-77.38074676647406, 34.511534054052994], [-77.38100939310765, 34.511502139653714], [-77.38122142010047, 34.51149679162549], [-77.38160107717746, 34.51157424183451], [-77.38131335870528, 34.5118097219396], [-77.38099960615962, 34.51193432135457], [-77.38011156745996, 34.51233738541914], [-77.37941295828168, 34.51268089684434], [-77.37922175217022, 34.512778794227216], [-77.37888738979736, 34.512944912396904], [-77.37821436339479, 34.51328201636446], [-77.37781748352704, 34.51381531271957], [-77.37761799032737, 34.51398522107457], [-77.37738258222959, 34.51414121552251], [-77.37761947353154, 34.51422479576429], [-77.37780402836017, 34.51440850544858], [-77.37797480559135, 34.51415883325724], [-77.37850089149228, 34.51397996491288], [-77.37914400375762, 34.513734334085925], [-77.37938955889167, 34.51371334481979], [-77.37960294408421, 34.513688280091515], [-77.3808213915485, 34.51364533712286], [-77.3809351260363, 34.51364499468348], [-77.38076318850774, 34.51414339276124], [-77.38040273204267, 34.514346750181346], [-77.37964002280492, 34.51479502403974], [-77.37945187637594, 34.51487749366269], [-77.37936133839943, 34.514958525086506], [-77.37911206172753, 34.51502571992862], [-77.37857451244008, 34.51504379093559], [-77.37823612636346, 34.51527935271821], [-77.37777947217305, 34.51549111242027], [-77.37774681865085, 34.51553797018747], [-77.37700772187159, 34.51565373948582], [-77.376990824463, 34.51565633319764], [-77.37697391477856, 34.515658601589934], [-77.37692988247241, 34.51567546702279], [-77.37650213029687, 34.515925742309626], [-77.37619480960136, 34.51614592825947], [-77.37573665748343, 34.515847500117296], [-77.37568946551285, 34.51568640968141], [-77.3752927639255, 34.51542183537563], [-77.37465313949228, 34.51490730646735], [-77.37409617423957, 34.51496171612481], [-77.37386507051352, 34.51504695853335], [-77.37372627953323, 34.51507177199097], [-77.37307457096506, 34.515293369527924], [-77.37256200519681, 34.515498640276206], [-77.37233215329893, 34.51584861962632], [-77.3720379080137, 34.51623702167059], [-77.37147089804772, 34.516781854672786], [-77.37075564067527, 34.516606470657756], [-77.37097613719713, 34.51702338113805], [-77.37007612604404, 34.51726922638548], [-77.36988958144337, 34.51728624970072], [-77.36954951813819, 34.517509679758945], [-77.36948822587271, 34.51767674868297], [-77.36921059094757, 34.517695590029625]], [[-77.40952721219135, 34.49970581887075], [-77.40952407649189, 34.49970688393265], [-77.40807238448504, 34.499845073615475], [-77.40795424294535, 34.49986264532237], [-77.40788424366022, 34.499902606333116], [-77.40777784327429, 34.49996109932045], [-77.40693920596652, 34.50043621109413], [-77.40635713020076, 34.501099518397744], [-77.4061972001651, 34.50116878297339], [-77.40542277692512, 34.501685137110904], [-77.40538218684084, 34.50188391804443], [-77.40592702867866, 34.50193036954079], [-77.40633580860501, 34.50205363630819], [-77.40640615433361, 34.50207377944719], [-77.40644290248868, 34.5021126467884], [-77.40723783340852, 34.50240936504724], [-77.40732588181005, 34.5026106554289], [-77.40757188686513, 34.50292891932172], [-77.40726644089537, 34.50335357774365], [-77.4071664482738, 34.50352631997501], [-77.40677188342175, 34.50372838334399], [-77.40629297009401, 34.50397063628844], [-77.40613287742815, 34.50401688805476], [-77.40587554020233, 34.50415330612903], [-77.40550078827056, 34.50430193913247], [-77.40493472388908, 34.50428919309189], [-77.40478022208623, 34.50427186103302], [-77.4047217378413, 34.504045810568634], [-77.4044366839128, 34.50418520489445], [-77.40442480723004, 34.504362838658544], [-77.40336665228139, 34.50465803132157], [-77.40313490257563, 34.504817846759835], [-77.402538473926, 34.50524847877676], [-77.40162533648999, 34.50574647237622], [-77.40159467562849, 34.505782695406545], [-77.40154315928149, 34.50580760275366], [-77.4014925386222, 34.50579737637581], [-77.40105382100862, 34.505828996737236], [-77.40010890967235, 34.505879977497294], [-77.39997196207523, 34.50587926234593], [-77.39924090069482, 34.50560109092969], [-77.39928393086504, 34.50553925932841], [-77.3996281181995, 34.50505550856282], [-77.39966512792518, 34.50484423274821], [-77.39999707350438, 34.504759281852074], [-77.40140195957441, 34.50382003109423], [-77.40002354686662, 34.50357856960099], [-77.3992424576507, 34.50363902230218], [-77.39845457376896, 34.50355284585841], [-77.3973025571411, 34.50343257516125], [-77.39704523329269, 34.50337228930123], [-77.39689367361737, 34.50316764067181], [-77.396829380086, 34.50301121611453], [-77.39689785785941, 34.502981336887636], [-77.39748991943978, 34.50279297227601], [-77.39818728271553, 34.502506929615336], [-77.3984729362058, 34.50273457312363], [-77.39862010097136, 34.50234944795599], [-77.39889467519895, 34.50222337013993], [-77.3992723614331, 34.50208111879038], [-77.39973631438804, 34.501899125089416], [-77.40006411482497, 34.50176926039063], [-77.40138291406977, 34.50170676803502], [-77.40163834586092, 34.501558739814435], [-77.40226251948343, 34.50135049308784], [-77.40321802469313, 34.50110441834221], [-77.40371828382969, 34.50085616341756], [-77.40446368311767, 34.500439815853014], [-77.40480625882797, 34.500266744624724], [-77.40547670894391, 34.499724946850215], [-77.40593768053378, 34.49953116923825], [-77.40639718112922, 34.499307304567225], [-77.406572580894, 34.4992647079753], [-77.40670302448126, 34.499137007618124], [-77.40746784538362, 34.49870690443866], [-77.40786533215666, 34.498479427029594], [-77.40798656201149, 34.49841521711671], [-77.40844969668473, 34.498191210084755], [-77.40953855071604, 34.497767921604726], [-77.40957070645867, 34.49775627121452], [-77.40960299372904, 34.49775889185862], [-77.4096400752408, 34.497733349651426], [-77.4111541115269, 34.49712931372127], [-77.41223267161303, 34.497051349921676], [-77.41235441023456, 34.49659406665789], [-77.41251118084094, 34.49652309311194], [-77.41304335149331, 34.496257156595576], [-77.41349895264317, 34.49597708413679], [-77.41367335465442, 34.49584732154726], [-77.41502106528769, 34.49603045994537], [-77.41506759502862, 34.496022019893154], [-77.41597713280385, 34.495428313025975], [-77.41598422393506, 34.49531040665332], [-77.41548436829922, 34.49472755763995], [-77.41551729696236, 34.49426278358683], [-77.41572880974826, 34.494064512906476], [-77.41578822254884, 34.494026702845794], [-77.4158593588897, 34.4939890111914], [-77.41634959506983, 34.49370548268382], [-77.41693453111287, 34.493450633219894], [-77.41699016811856, 34.49342277379569], [-77.41732618096714, 34.493318515994346], [-77.41830010844853, 34.493064438381225], [-77.41855863148146, 34.49299706050831], [-77.41888407433814, 34.4928747737256], [-77.41952942239672, 34.49263496425938], [-77.42053164307151, 34.49276803682142], [-77.42084767759867, 34.49253137637644], [-77.42141002029344, 34.49275197637101], [-77.42152578660793, 34.493009808476245], [-77.42168668584554, 34.49332963818267], [-77.42135674018742, 34.49367671553411], [-77.42124493125607, 34.49370903404889], [-77.42118971989414, 34.49378449246449], [-77.42095687449978, 34.49416315369524], [-77.42056340818333, 34.494311713912005], [-77.42004243320142, 34.49451453344089], [-77.41953244881792, 34.49465893529943], [-77.4189438856855, 34.4954232111123], [-77.41856897649456, 34.495378842272444], [-77.41767579448717, 34.495515178330535], [-77.41744604877499, 34.49602121673478], [-77.41637389181653, 34.49587443238772], [-77.4152171358373, 34.49612580114199], [-77.41567127373823, 34.49676376146142], [-77.41460078434764, 34.49701449245081], [-77.4140643792359, 34.49728028424192], [-77.41400306098662, 34.497318047552454], [-77.41389707887251, 34.49734855624665], [-77.41329411853219, 34.49756751176228], [-77.4117111241379, 34.49805302627678], [-77.41112997078187, 34.4982122775159], [-77.41090785469247, 34.498393450595266], [-77.41071190565191, 34.49855784598712]], [[-77.3243681465633, 34.750777604736456], [-77.32450798459968, 34.75090332022651], [-77.32480120097776, 34.75090075284258], [-77.32496218011326, 34.75079487742297], [-77.32517591382026, 34.7507840145861], [-77.32516110516666, 34.750957358377626], [-77.32549854320285, 34.75101043001279], [-77.32569338398051, 34.751174471771165], [-77.32574457991146, 34.75119434791252], [-77.32583083784596, 34.75126587037773], [-77.32592206356928, 34.751255696663335], [-77.32605450132056, 34.75115861655086], [-77.32626200364857, 34.75113149828059], [-77.32648180320554, 34.751113334796415], [-77.32671454340988, 34.750948927833996], [-77.3268627043394, 34.751063861240134], [-77.32709913904107, 34.751022016088186], [-77.32730436094296, 34.7509806897565], [-77.32762922202778, 34.750868756569915], [-77.32764285907251, 34.750865455739756], [-77.3276936533363, 34.75081922763996], [-77.32789104173871, 34.75058332455876], [-77.32795991119501, 34.7502204325675], [-77.3280047355625, 34.74990932402622], [-77.32854498420848, 34.749518980393056], [-77.32878248277204, 34.74932175572007], [-77.3289913005365, 34.74929973582967], [-77.32912941975853, 34.74932139805071], [-77.32940988384752, 34.74923936100012], [-77.3294667764932, 34.749062056542044], [-77.32941431797076, 34.74891248466804], [-77.32918566501294, 34.74863135567476], [-77.32895082487586, 34.748670445821524], [-77.32867883264578, 34.74852590306329], [-77.32823816459617, 34.748430055117346], [-77.32803772146667, 34.74845898506357], [-77.32787021111363, 34.74851326787534], [-77.32676703335036, 34.74877271502616], [-77.32674600435182, 34.748780981125684], [-77.32673357852438, 34.74878276453457], [-77.32556207268907, 34.74891074389364], [-77.3255114429267, 34.74890640912371], [-77.3253550874006, 34.748837900914886], [-77.32433606314251, 34.74906493720827], [-77.32426871145263, 34.74905989938599], [-77.32411131197266, 34.74901242484209], [-77.32312211734745, 34.74920984142567], [-77.32300965603696, 34.749269478379674], [-77.3229858000773, 34.74929176233661], [-77.32294650701832, 34.74931127970673], [-77.32229486898618, 34.74966735454339], [-77.32215226024174, 34.749829882109125], [-77.32219062141775, 34.749902185235136], [-77.32219589613736, 34.74992177327889], [-77.32216968557282, 34.750097701714466], [-77.32225860970193, 34.750380236348875], [-77.32213330461282, 34.750451540026376], [-77.32213828956574, 34.75075424859169], [-77.32213791985454, 34.75088413227671], [-77.32208217386881, 34.75104468009249], [-77.32201264474963, 34.751244920200634], [-77.32230743350027, 34.75134827709998], [-77.32165395737375, 34.75187059415717], [-77.32160439264958, 34.75189813295555], [-77.32103090004644, 34.75195304702702], [-77.32078654689255, 34.75179320883562], [-77.32077817553915, 34.75179213482752], [-77.32076388069639, 34.75179162874325], [-77.32063243103316, 34.75177830477314], [-77.32056048365247, 34.75183123531279], [-77.32053638732145, 34.75190922710471], [-77.32039724513153, 34.752092421798906], [-77.32040223169926, 34.75209659097891], [-77.3204011797159, 34.75210862222986], [-77.32037339692688, 34.752153895238614], [-77.32021970671991, 34.75260895211429], [-77.32017238319507, 34.75265933857827], [-77.3200958998665, 34.75310774735532], [-77.32009816378502, 34.75311047397986], [-77.3201002921253, 34.75311887673422], [-77.32017048289185, 34.75359041909079], [-77.31998988454566, 34.75398187640157], [-77.31987215931736, 34.75419362047591], [-77.32012428697425, 34.75457147119985], [-77.31997618052915, 34.75478059203069], [-77.31975184756377, 34.75510984036242], [-77.31963994979432, 34.755264755743525], [-77.31946340840433, 34.75556877418405], [-77.31941701391595, 34.755643057955304], [-77.31939824085093, 34.75568900045956], [-77.31921311383476, 34.756142047727195], [-77.31920656282642, 34.75615758991433], [-77.31920568282517, 34.75615936107027], [-77.31920526423605, 34.75616125739347], [-77.31920797219519, 34.756159719987025], [-77.31920839318235, 34.75615921218913], [-77.31920879497397, 34.75615893488589], [-77.31962187489239, 34.75588720969497], [-77.31967304224398, 34.75585167683694], [-77.31982700534766, 34.75574978164203], [-77.31990297874802, 34.75562503635286], [-77.3198153140109, 34.755588511569925], [-77.31982770380559, 34.7554311643445], [-77.32004858612228, 34.755329606216286], [-77.32016186496905, 34.755053688230475], [-77.32028649727641, 34.75456085566457], [-77.32031704505636, 34.75454507277482], [-77.32056846614883, 34.754325384049665], [-77.32069106459996, 34.753642491631496], [-77.32084095789166, 34.753498591541444], [-77.32152266437848, 34.753102618671015], [-77.32188986176834, 34.75311901946938], [-77.3221270777281, 34.7531274596171], [-77.32221216964142, 34.75307526937119], [-77.32221905976706, 34.753066156641665], [-77.32241484500376, 34.75293567133213], [-77.32244472416993, 34.75288331494516], [-77.32248787863789, 34.75278565332292], [-77.32249612108721, 34.75268847828587], [-77.32256373003887, 34.752594795516416], [-77.32250633138273, 34.7525394435456], [-77.3224500222557, 34.75248514245318], [-77.32228506770147, 34.75232606883878], [-77.32222589813267, 34.75226330674019], [-77.32246564419607, 34.751384555768546], [-77.32261870358418, 34.751305639556435], [-77.32286160285624, 34.75098648921585], [-77.32309612319939, 34.75075287855676], [-77.32314069601676, 34.750705953289284], [-77.32321301818018, 34.75062981324135], [-77.32334161720914, 34.75061753297041], [-77.32384863998502, 34.7505041077649], [-77.32412472781866, 34.750803805063775]], [[-77.34319613251044, 34.685687357576356], [-77.34257819312319, 34.686066266589], [-77.34239013140348, 34.68621150600371], [-77.34251942252062, 34.68626860883595], [-77.34273967328292, 34.686365882836476], [-77.34304993651693, 34.686502911259595], [-77.34312033849551, 34.68653400410071], [-77.34313680398168, 34.68659642197155], [-77.34351626459245, 34.68695821551336], [-77.34405687395062, 34.68647015907338], [-77.34401873263992, 34.686223362593545], [-77.34393644480909, 34.68599930765484], [-77.34392828660363, 34.68591228882992], [-77.34389120617631, 34.68566726203781], [-77.34383172356954, 34.685592431523666], [-77.34332507721949, 34.68560829108082], [-77.34330792409715, 34.68561465848048]], [[-77.38417149230037, 34.51049958954373], [-77.38365824509663, 34.51061676245911], [-77.383948323228, 34.51025636090768], [-77.38419187457201, 34.50959804626069], [-77.38434283238746, 34.509310250842766], [-77.3842924548525, 34.509227394319964], [-77.38499653570544, 34.50872093980045], [-77.38516614464157, 34.508717467943626], [-77.38578490482104, 34.508564306168864], [-77.38698197376668, 34.50860754159332], [-77.38785785315908, 34.50840130719654], [-77.38775482216624, 34.508983521486634], [-77.38600117176053, 34.50996022496066], [-77.38584935907966, 34.51004318400911], [-77.38575072319776, 34.51007746638785], [-77.38558908733445, 34.51011992016954]], [[-77.22753102299859, 34.59888808964578], [-77.22775775763778, 34.59953198731087], [-77.22734191839581, 34.59959302216082], [-77.22699720871863, 34.59994211537161], [-77.22670608393665, 34.599684604416396], [-77.22696853322113, 34.599469693287496]], [[-77.24421578771135, 34.59258054776161], [-77.24464765947059, 34.59297051963876], [-77.2449352729947, 34.59334496796766], [-77.24499057973986, 34.59357693385837], [-77.24478606869684, 34.59380456220012], [-77.24485337565272, 34.59399568224517], [-77.24478826092498, 34.594076829083434], [-77.24474428613415, 34.59427261950148], [-77.24471318567831, 34.594415546308994], [-77.24457409345591, 34.59454368225892], [-77.24428906574563, 34.594708098161604], [-77.24421744746616, 34.59488379602887], [-77.24420166686598, 34.59493688642365], [-77.24417137015521, 34.59498574297557], [-77.2440689306788, 34.59508036773938], [-77.24396342948694, 34.595153788001724], [-77.2438710482405, 34.59523302637844], [-77.24364487320808, 34.595374094509346], [-77.24342627795028, 34.59549475218726], [-77.24326474327697, 34.595570078496884], [-77.24278712852305, 34.59587125025347], [-77.24259976137857, 34.595989022799884], [-77.24254297085149, 34.59602375200221], [-77.24244760449918, 34.596073601175995], [-77.2420822741304, 34.59627131307508], [-77.24193218797483, 34.59640775989878], [-77.24176641609877, 34.59658641056112], [-77.24147599940133, 34.59638937255988], [-77.24145297053549, 34.5963727825635], [-77.24144532070221, 34.59637346842433], [-77.2414499860103, 34.596369753923256], [-77.24083446101065, 34.59592897642784], [-77.2407012578002, 34.5959171843085], [-77.24072737353461, 34.59584144366263], [-77.24067871691588, 34.59568011742447], [-77.24048748056669, 34.59535118165125], [-77.24044373347604, 34.59527880386187], [-77.24038475289707, 34.595151743756894], [-77.2403053046508, 34.59496323157014], [-77.24015044936655, 34.59485326108228], [-77.24016449867746, 34.594648548090575], [-77.24002067809495, 34.59420537168606], [-77.23976250561196, 34.59406423904016], [-77.23877180614734, 34.59380186431603], [-77.23944494774685, 34.59326772336267], [-77.23978209528673, 34.59293880529135], [-77.24112119678196, 34.59212939827272], [-77.24291183223578, 34.591825261916355], [-77.243777310508, 34.59256152789865]], [[-77.22436266772682, 34.60937789606304], [-77.2247208273717, 34.60909582556035], [-77.22536995872721, 34.60877071738056], [-77.22602469321676, 34.60852232120943], [-77.22605458444696, 34.608745009704606], [-77.22612728325267, 34.60883049631764], [-77.22650774171522, 34.60923368425753], [-77.22654302179288, 34.60929702120147], [-77.22656554215791, 34.60933644692476], [-77.2264985784192, 34.609362510049195], [-77.22648640560193, 34.609565880919845], [-77.22638078703929, 34.60972507120704], [-77.22630061275011, 34.60978689695518], [-77.22626710044733, 34.6098140579791], [-77.22619075193917, 34.60985950204428], [-77.22605569977233, 34.60995472344003], [-77.2259265480386, 34.60999305299214], [-77.22580550243237, 34.610060871802446], [-77.22535049005839, 34.610183263949565], [-77.22559021694413, 34.61038816024145], [-77.22554666472152, 34.610434428980206], [-77.22554588222118, 34.61048738575078], [-77.2254990412577, 34.61054851010716], [-77.22552403386541, 34.61059659747855], [-77.22550246215266, 34.6106131295883], [-77.22539042795883, 34.61065777714213], [-77.22537611639834, 34.61066509499394], [-77.22535135386697, 34.610684141246495], [-77.22497253429931, 34.61063477849437], [-77.22491785692715, 34.61070744135389], [-77.22487734090538, 34.61065481837189], [-77.22484656640226, 34.61061484732666], [-77.22465774404776, 34.6103696002741], [-77.22462134244756, 34.61032232047511], [-77.22446017103697, 34.61011298496113], [-77.224438148341, 34.61008438138561], [-77.2240737806666, 34.60961111977783]], [[-77.4435130608636, 34.482551019186374], [-77.44471583551473, 34.48214624755453], [-77.4452515959774, 34.48328254715125], [-77.44532692877424, 34.4834153836039], [-77.44529439590427, 34.48343919945101], [-77.444385383635, 34.48416317239035], [-77.4432269382963, 34.48465949065127], [-77.4429608745486, 34.48475456722923], [-77.44222192894684, 34.485014685297514], [-77.44173866700369, 34.485209374389434], [-77.44169524812021, 34.48523209772439], [-77.4416417714925, 34.48531773639617], [-77.44155272325895, 34.48592525910014], [-77.44074488033465, 34.48650039312643], [-77.44047629001467, 34.48701604916091], [-77.43977200919855, 34.4871855853868], [-77.43843935233839, 34.48791874758554], [-77.43722915233627, 34.487622541842605], [-77.43686753496297, 34.48763843928894], [-77.4357698076647, 34.48800456303516], [-77.43543475408386, 34.48813023196401], [-77.43531305746448, 34.48830934039061], [-77.43498130070502, 34.48909805454517], [-77.43405583023424, 34.48959629152942], [-77.43357836746195, 34.489841060391406], [-77.43250990094204, 34.48951742749569], [-77.43131630141488, 34.48914495102328], [-77.43140488375187, 34.48810996859494], [-77.43126225937566, 34.487607623382516], [-77.43126489835831, 34.48742729222692], [-77.43119605918278, 34.487257997505026], [-77.43106237427654, 34.48692923271372], [-77.43122248837903, 34.48674958968029], [-77.43136210732791, 34.48665598968598], [-77.43208249264146, 34.48650064370644], [-77.43206490777736, 34.48611703844411], [-77.43225730669793, 34.48599149122394], [-77.43248630446452, 34.485842059304986], [-77.4325181934277, 34.48582125011734], [-77.43257657457643, 34.485805378498256], [-77.43291109018219, 34.48571518218221], [-77.43349942717342, 34.485514691791096], [-77.43372621988863, 34.485451949621215], [-77.43438144933009, 34.48524169424479], [-77.43495204102098, 34.485010263658346], [-77.4350424388544, 34.48496888745975], [-77.43516449927183, 34.48492408851471], [-77.43573884923656, 34.48471329083396], [-77.4361624028786, 34.48451201045067], [-77.43637722999154, 34.48442949036451], [-77.4368114738947, 34.484332541105054], [-77.43718642482902, 34.4842287170385], [-77.43740321834272, 34.484125300314965], [-77.43807195200534, 34.48405112123522], [-77.43871005470258, 34.483980339420015], [-77.43904377307912, 34.483943318827656], [-77.43963824626834, 34.48380111113879], [-77.43998068364796, 34.48370282978399], [-77.44080210821554, 34.48360976895229], [-77.4417735951835, 34.483234388081556], [-77.44222939822674, 34.48311529858777], [-77.44247841257057, 34.48298852849352]], [[-77.3943030266258, 34.506209138457564], [-77.3928574008423, 34.50654527026761], [-77.39303807464266, 34.506006825527976], [-77.39342082106332, 34.50578000616403], [-77.39447797456995, 34.50531745773195], [-77.3952688415349, 34.50562722780752], [-77.3959246823137, 34.50501140613505], [-77.39631808609083, 34.50488905581486], [-77.39629071923511, 34.505189451416435], [-77.39542938019028, 34.50566166918441], [-77.3952666553546, 34.50572448832981]], [[-77.44526722278461, 34.493195691861125], [-77.44506261714027, 34.492924830836685], [-77.44483672086758, 34.49284781605009], [-77.44514642442414, 34.49275362691784], [-77.44586472472406, 34.49201121170727], [-77.44734286533465, 34.49162433688437], [-77.44750272989072, 34.49152092963194], [-77.44799083948526, 34.49139521142307], [-77.44876811375195, 34.491223847408286], [-77.44899131330884, 34.49115421492721], [-77.45013854453674, 34.49131113203779], [-77.45126158111289, 34.491069220986944], [-77.45142552737634, 34.49109310180237], [-77.45169958968371, 34.491023430568816], [-77.45270944447898, 34.490863863786686], [-77.45319590224513, 34.49124656192851], [-77.4528957462231, 34.49154542450497], [-77.4517174005668, 34.49129070073592], [-77.45257793432427, 34.49189066066387], [-77.45177699289674, 34.49237895295997], [-77.45114620695946, 34.49220129235291], [-77.45034605309995, 34.49207036315725], [-77.44993432626829, 34.49194564720354], [-77.44920632328464, 34.49185276866598], [-77.44898583744147, 34.492020499747014], [-77.44782780302756, 34.491776988141645], [-77.44759727186491, 34.49186687845979], [-77.44722068206337, 34.492670127865296], [-77.44570822575693, 34.49289218311456]], [[-77.4365424629726, 34.68802488937845], [-77.43689871386557, 34.688145541272235], [-77.43711423312982, 34.68826356776049], [-77.43729412628633, 34.6886250393002], [-77.43695781587581, 34.68880432516244], [-77.4367822577664, 34.688868032577076], [-77.43646400046083, 34.68877339741299], [-77.43635647958568, 34.68866784756523], [-77.43612961417297, 34.68846657640411], [-77.43566248535161, 34.68805452780787], [-77.4359779310739, 34.68755330981627]], [[-77.39979660910375, 34.51186087448863], [-77.39980352115623, 34.51188560736951], [-77.39976052093253, 34.51193896903952], [-77.39924288257583, 34.51258482139838], [-77.3990309337899, 34.512844587563215], [-77.39871486420077, 34.51273123244369], [-77.39825343197774, 34.5125165582648], [-77.39791644338729, 34.51237033712705], [-77.39749435247694, 34.512218975597165], [-77.3973370498545, 34.51165792778662], [-77.39828257296044, 34.51121787305086], [-77.39832596479793, 34.511145641988996], [-77.39839618832724, 34.51110944223905], [-77.39953221303347, 34.51073904801489], [-77.39986439774378, 34.51067679985585], [-77.40048353059356, 34.510425310046685], [-77.40065374518097, 34.5104757252644], [-77.40096223487123, 34.5107389605878], [-77.40064262591513, 34.5109718798498], [-77.40029895684103, 34.51111194153414], [-77.39983894660459, 34.51181198819746]], [[-77.33309165869187, 34.569748225861446], [-77.33320520586703, 34.569994502639396], [-77.333316608977, 34.569715890615136], [-77.33343730471476, 34.56952367946914], [-77.33359954673152, 34.56956359493884], [-77.3337319129623, 34.56951360361586], [-77.33383779686845, 34.56947308059043], [-77.33390306485589, 34.56930475943771], [-77.33375457413848, 34.56939529652067], [-77.33359968913595, 34.569392028902165], [-77.33342358571133, 34.56946567059356], [-77.33338999993313, 34.56947946583884], [-77.33320546462818, 34.56968441427774]], [[-77.22002920270297, 34.61369801934448], [-77.22047417478453, 34.61377114841741], [-77.22018734242184, 34.61401788033796], [-77.22052876455169, 34.61437677750587], [-77.22052534205582, 34.61448672004684], [-77.22050537857062, 34.614514359151386], [-77.2204838438551, 34.6145313066385], [-77.22035311339803, 34.61473801686138], [-77.22032646177477, 34.614776087349874], [-77.22020873635837, 34.61494406687281], [-77.2201972789114, 34.61496139245823], [-77.22017410368397, 34.61498543452761], [-77.22004220936628, 34.61512466907008], [-77.2199851115596, 34.615180319200384], [-77.21986796906542, 34.61529840869137], [-77.21977207476881, 34.615399177143026], [-77.21969720822425, 34.615475244991714], [-77.21966445901977, 34.615508519497816], [-77.21960604278011, 34.615565234833795], [-77.21955303337025, 34.615617560718476], [-77.21950662804157, 34.615634447447036], [-77.2194611807814, 34.615651564481965], [-77.21924996419803, 34.61573485281844], [-77.21908816502773, 34.615816529448644], [-77.21901584822183, 34.615855320107364], [-77.21890649766392, 34.61591397521776], [-77.21871642158388, 34.61589793394005], [-77.21869816226774, 34.61578572748971], [-77.2186882465639, 34.61572479555724], [-77.2186620812313, 34.61556400700338], [-77.2186521276502, 34.61555462778023], [-77.21865761891016, 34.615536585210485], [-77.21862045789442, 34.6153082259833], [-77.21860372138612, 34.61520537952312], [-77.21855955799475, 34.614933986734925], [-77.21848184094263, 34.61482591300751], [-77.21832695779972, 34.61457418028259], [-77.2184163651242, 34.6140068318317], [-77.21922996145432, 34.61394226951861]], [[-77.41909555337183, 34.502374610982216], [-77.41888241253933, 34.50247961918122], [-77.41863011947883, 34.50246793613806], [-77.41809460462125, 34.502617121289504], [-77.4177456621165, 34.50243818911497], [-77.4176077878359, 34.502276920450086], [-77.41760205251757, 34.50214505406787], [-77.41767638913541, 34.50195851798574], [-77.41765841427564, 34.50167588980739], [-77.41844153279942, 34.501644906859575], [-77.4186565890943, 34.501816834420865], [-77.41877242076703, 34.50187707187855], [-77.41889217554464, 34.502039776586344], [-77.41908977594227, 34.50211949369556], [-77.41945886803039, 34.50219054540712]], [[-77.4542218568421, 34.47711276592874], [-77.45427097395438, 34.477085926025175], [-77.45431878058459, 34.47704689974707], [-77.45463580376145, 34.47666915805302], [-77.4551411014644, 34.47648398772405], [-77.45532950262925, 34.47641220496549], [-77.45619966622279, 34.47614607312044], [-77.45676694506318, 34.476152216142225], [-77.45783211662003, 34.47662078920876], [-77.45700430034438, 34.47702057663547], [-77.45683465666825, 34.477143619115594], [-77.4567235829531, 34.47723996363027], [-77.45648447340513, 34.477563016690596], [-77.45623741485319, 34.47789077008092], [-77.45636254116094, 34.47810230388096], [-77.45519219329738, 34.47823830738004], [-77.45449629227669, 34.477696383997696], [-77.45399209381327, 34.47729964976676]], [[-77.45725423727782, 34.48267109198498], [-77.45622656250688, 34.48278863910333], [-77.45596170705312, 34.483057688955526], [-77.45578294964885, 34.48316714163214], [-77.45482736058679, 34.483126239818176], [-77.45477478993739, 34.48267726902047], [-77.45503630350389, 34.48255835494082], [-77.4553154634195, 34.482345931315365], [-77.45563724488724, 34.48187068955437], [-77.45706686782148, 34.48131052941284], [-77.45737879791434, 34.4809723026899], [-77.45870337016773, 34.481100846241205], [-77.45872287832404, 34.48139468956828], [-77.45844644592874, 34.48149107279912], [-77.4583425484168, 34.48191614235218]], [[-77.46315550469257, 34.486749083937845], [-77.46285193450093, 34.48700855254083], [-77.46264798456222, 34.487096556045664], [-77.46247833798608, 34.487193154305245], [-77.46212633317214, 34.48743716338447], [-77.46190254233127, 34.48763586138513], [-77.46162548920813, 34.48778787917787], [-77.4615408412515, 34.48823004499481], [-77.46163909819249, 34.48829800025849], [-77.46146344063892, 34.48840600273802], [-77.4613106698207, 34.48882299721088], [-77.46126253003806, 34.48895439371665], [-77.46105998122258, 34.48926423511472], [-77.46105963331469, 34.489281848236004], [-77.46105055527606, 34.48929066404238], [-77.46103399529515, 34.489297730751964], [-77.46089174157936, 34.489352148812216], [-77.46042261789684, 34.48952413548239], [-77.45997558702724, 34.489362464936626], [-77.45840493161556, 34.489085789252755], [-77.45816759088551, 34.48879718182671], [-77.45841294330258, 34.48860329654525], [-77.4582894814578, 34.48836321802567], [-77.45822284130602, 34.48812447226102], [-77.45819370243434, 34.48790273958855], [-77.45842172075145, 34.487511220571115], [-77.4583568640105, 34.48745576312289], [-77.45836548126644, 34.48739215529294], [-77.4584885015171, 34.48737517503115], [-77.45883231945179, 34.48680440047517], [-77.45875182141558, 34.48639177303488], [-77.45958716116692, 34.48646858934316], [-77.4606503969894, 34.48634662641523], [-77.46089445402474, 34.486325120884274], [-77.460991171611, 34.486291658668165], [-77.4610603321165, 34.48624205987316], [-77.4620993559134, 34.48580720439142], [-77.46231706177473, 34.48574773982865], [-77.46333182797004, 34.48572827382388], [-77.46350425538597, 34.48602070290747], [-77.46371954636872, 34.48630857307071], [-77.46375003576003, 34.48644388007274], [-77.4636217348052, 34.4864503065379]], [[-77.25110060950558, 34.61079898676154], [-77.25189018523889, 34.61009874824532], [-77.25209231788637, 34.60993437162394], [-77.25217330201849, 34.60984766626867], [-77.25258889051862, 34.60903076247959], [-77.25300562491078, 34.60821160103912], [-77.25304999828553, 34.60812438082924], [-77.25307125390957, 34.60801695583533], [-77.25334503316736, 34.607204908044864], [-77.25269396321485, 34.60581590962568], [-77.2519015084582, 34.60568571200883], [-77.25030339071616, 34.605555562057816], [-77.24942843071842, 34.605603679357515], [-77.24797646314308, 34.606115460521764], [-77.24735122522907, 34.606733019341604], [-77.24680711104702, 34.607450403047416], [-77.24669274190317, 34.6076031430987], [-77.24668339277403, 34.60762311543763], [-77.24667348708115, 34.60764263242278], [-77.24710107097359, 34.60859869564494], [-77.24771901243838, 34.608980674177566], [-77.24849603194076, 34.60989961854532], [-77.2493917056409, 34.610664451356314], [-77.24991370598288, 34.61130871023784]], [[-77.39590682458739, 34.51122396369877], [-77.39590924179826, 34.51121180828312], [-77.39591745717514, 34.51110001128406], [-77.39593077884928, 34.51109548429866], [-77.39594828070008, 34.51109556201129], [-77.39595319518921, 34.51120179440765], [-77.39598306514036, 34.511212958594584], [-77.39592582118861, 34.51131614709882]], [[-77.31383942808596, 34.69843896761304], [-77.3143182713932, 34.698442145885934], [-77.31427429793419, 34.698838714947186], [-77.31431398396552, 34.69886581293051], [-77.31455790811886, 34.698799868317955], [-77.31477281088561, 34.69859166231664], [-77.31501012045177, 34.698530807763575], [-77.31524332921165, 34.69821862122695], [-77.31515820505929, 34.69819034127321], [-77.3151070242531, 34.69819761812962], [-77.31490247983419, 34.69802162939042], [-77.31487496808633, 34.698014073414505], [-77.31483635498836, 34.698009494853764], [-77.31448943071791, 34.69826258206858], [-77.31411656290967, 34.69788559783217], [-77.314032081627, 34.69787408520061], [-77.31400601138402, 34.697866221407445], [-77.31391172832868, 34.697827809827274], [-77.31370827817098, 34.69786066532694], [-77.31361702660041, 34.69779917775776], [-77.31354090714488, 34.6977207635894], [-77.31345792921283, 34.6976921950325], [-77.31323186072376, 34.69776309167942], [-77.3134065619376, 34.69786880259619], [-77.31347025873636, 34.69791203337789], [-77.31350836423692, 34.697968901087705], [-77.31362905311009, 34.698133054082405], [-77.31370307586654, 34.69812707202597], [-77.3137746152816, 34.698344721064004], [-77.31382179867775, 34.698413332106234]], [[-77.44092190174149, 34.495870431264684], [-77.44059849530636, 34.49582244335585], [-77.43994665795381, 34.49559696105045], [-77.43967678216747, 34.49528711674935], [-77.4400811462493, 34.49514151856732], [-77.44036333842776, 34.4949617185615], [-77.44047755842199, 34.49474006807298], [-77.44063205870947, 34.494660261823356], [-77.44085146255831, 34.49432767373112], [-77.4408529384529, 34.49399598358772], [-77.44128309433653, 34.493399369204184], [-77.44146039004877, 34.49343540197685], [-77.44270253811597, 34.49366599938135], [-77.44312265159152, 34.49393814327545], [-77.44420113504805, 34.49416650635125], [-77.44289574534167, 34.49437311967713], [-77.44216867418012, 34.49496781576252], [-77.44177507114438, 34.495200051347226], [-77.4416068198953, 34.495288872261895], [-77.44165735663576, 34.49538802379129], [-77.4414221507785, 34.495609156582326], [-77.44129026071369, 34.495729134495384]], [[-77.357122824501, 34.570112390363306], [-77.3570938605426, 34.56996116404799], [-77.35709438857513, 34.569904207727326], [-77.35723818142003, 34.569749144876916], [-77.35730675516265, 34.56973524939579], [-77.35757842574162, 34.569680198898176], [-77.35763219218394, 34.56968772162235], [-77.35791702110089, 34.569691130497], [-77.3580261335596, 34.569754325368635], [-77.35859891798391, 34.569707244413856], [-77.35881413672516, 34.56966233467497], [-77.35899258518806, 34.56961094670386], [-77.35936647928239, 34.569618771652785], [-77.35960214650369, 34.5695536479854], [-77.35996610508205, 34.56967079541603], [-77.36001404771119, 34.56967679094197], [-77.36038995037651, 34.56984501880249], [-77.36058646749292, 34.570038315841096], [-77.36078961622565, 34.57042717560607], [-77.36079218933057, 34.570433251218], [-77.36079949812097, 34.57044930569813], [-77.36090057015385, 34.57062992383937], [-77.36096418390316, 34.57063836712318], [-77.3611266020627, 34.570809657231074], [-77.36116112669492, 34.57082224123046], [-77.3611774057454, 34.570845567961705], [-77.3614514695353, 34.571187436952975], [-77.36141112324519, 34.57136566828062], [-77.36141079754739, 34.57161784707888], [-77.36141113361401, 34.57187020995039], [-77.36117673879018, 34.57218480828631], [-77.36106602828178, 34.57239740894944], [-77.36042873801517, 34.57256506220263], [-77.36038859089871, 34.57252253968976], [-77.36031041291004, 34.57254114973071], [-77.35972726375206, 34.57257283013625], [-77.3596006517341, 34.57244320220937], [-77.35937959862437, 34.572148646298835], [-77.35922899501308, 34.571931962511], [-77.3592069419557, 34.57190580344379], [-77.3590050859885, 34.57175724263317], [-77.35881317063928, 34.571495388932604], [-77.35852488493458, 34.57149487139008], [-77.35806094950206, 34.5712510048958], [-77.35804461190597, 34.57123258991714], [-77.35802536178865, 34.571192619331356], [-77.35796563119013, 34.57090470520046], [-77.35785585383547, 34.57085597631264], [-77.35771091716947, 34.57079136226108], [-77.35763160819864, 34.57076627234133], [-77.3574266375033, 34.570696845751755], [-77.35723770107259, 34.57062858491041], [-77.35717565203542, 34.570596220656796], [-77.35694636340448, 34.570562342880976], [-77.35716258422232, 34.570450168323895]], [[-77.34177108716145, 34.6537029045822], [-77.34167777541964, 34.6536698088833], [-77.34163344310038, 34.65366464088312], [-77.34159231041104, 34.65361322601527], [-77.34129709721874, 34.653368822760974], [-77.34119649343123, 34.65338151179957], [-77.34118104984313, 34.6532476751355], [-77.34090944354637, 34.653033115803346], [-77.34082696380702, 34.652964919141176], [-77.3406735134771, 34.652895336759386], [-77.34054952844664, 34.65283540812095], [-77.34030772798808, 34.652844696386595], [-77.33997470469006, 34.652569247091606], [-77.33995230672724, 34.65240018344228], [-77.33975621585303, 34.651755239826066], [-77.33973480605167, 34.65168264916856], [-77.33967709159982, 34.651680609042], [-77.33961199430613, 34.65177503267985], [-77.33931984290287, 34.652081952041186], [-77.33916263969259, 34.65230707528525], [-77.3390433477636, 34.652491094533076], [-77.33863154108627, 34.65271856791526], [-77.33860837578754, 34.65273546961568], [-77.33859554504293, 34.65274032052222], [-77.33851414211709, 34.65276968704032], [-77.33832693865705, 34.653156831015586], [-77.33823060123228, 34.65323059231709], [-77.33836759891348, 34.65324104953388], [-77.33843422276827, 34.65325698292813], [-77.33863596818009, 34.65287277329777], [-77.33890945737056, 34.65331649765177], [-77.33924654858055, 34.65334803977085], [-77.33936549648998, 34.653316488110534], [-77.33957616326802, 34.65314479809685], [-77.33965890114605, 34.653456580366836], [-77.33966753144237, 34.653741023996496], [-77.33944512705929, 34.6537127203988], [-77.33917948016635, 34.65395268636468], [-77.33917342170497, 34.653953936522036], [-77.33916504210929, 34.65395864221775], [-77.33886614100848, 34.654018132945964], [-77.33875448116578, 34.6542232060566], [-77.33839780299581, 34.65432932852944], [-77.33828670042772, 34.65432130406686], [-77.3379905823112, 34.65452951494653], [-77.33779730930719, 34.65466420234739], [-77.33771715047317, 34.654673713166005], [-77.33759858231363, 34.655005300890046], [-77.33763302801168, 34.6551781091769], [-77.33754038347837, 34.65543528173196], [-77.33742250005399, 34.6556488460901], [-77.33728147386849, 34.65569235164571], [-77.33718538038741, 34.65590598905665], [-77.33712501103116, 34.65603840648731], [-77.33712520776822, 34.65627432946276], [-77.33735427407092, 34.656252424693506], [-77.33739562461471, 34.65626040322328], [-77.33742781398256, 34.65624937369354], [-77.33763043857857, 34.65617659082216], [-77.3376821418174, 34.656092836558905], [-77.33782109700307, 34.65602093699431], [-77.33793757900509, 34.65577061510507], [-77.33815343326938, 34.65596111944781], [-77.33836647610397, 34.65586278196591], [-77.33858625160771, 34.655811889620054], [-77.33873432700003, 34.65569344225149], [-77.33871890613152, 34.65552451192452], [-77.3388991185143, 34.65524883213992], [-77.33898411155889, 34.65510482100494], [-77.33908209453642, 34.65509270554205], [-77.33924023654102, 34.654780024626895], [-77.33927757131657, 34.65471150732269], [-77.33930969567012, 34.654632018117994], [-77.33940943166978, 34.654622954714476], [-77.33960079607685, 34.654487299048135], [-77.34011489491688, 34.654374547457856], [-77.34020728775054, 34.65431873846062], [-77.34025388546134, 34.65428837550889], [-77.34069175165631, 34.65415882394345], [-77.34079730253117, 34.65406820817237], [-77.34083817699988, 34.65409085468023], [-77.34132178792085, 34.65395074043218], [-77.34141137630257, 34.653937393008924], [-77.34147377242844, 34.65398073801282], [-77.34167475363688, 34.65394659939873], [-77.34172931077859, 34.653926205515454], [-77.34178049019462, 34.65394761200685], [-77.34185022305743, 34.65394358246988], [-77.34187807092277, 34.65386983025561], [-77.3419138454457, 34.65383616212189], [-77.34188151498013, 34.653747613512124]], [[-77.38254448162654, 34.513396828346416], [-77.38253903181393, 34.51339939205186], [-77.38253614846317, 34.51340089247081], [-77.38252462351471, 34.51340679918919], [-77.3821395341266, 34.51358542566963], [-77.38191386421627, 34.51359191473627], [-77.38174670627384, 34.51360259884162], [-77.38136742384927, 34.51382273864501], [-77.38120267915241, 34.513925194213314], [-77.38102253997457, 34.513654944999566], [-77.38099154263624, 34.513620799289825], [-77.38175670972916, 34.513160667686996], [-77.38198834430746, 34.51313147506802], [-77.38219352363397, 34.513174731333685], [-77.38253641608722, 34.51338906451778], [-77.38254882619111, 34.51338846774948]], [[-77.42912987687154, 34.49820611863881], [-77.4299809653713, 34.49884592665107], [-77.42967997561837, 34.49899803694201], [-77.4295267623917, 34.49916051905234], [-77.42941974618681, 34.49926759668743], [-77.42933403724652, 34.49942402793547], [-77.42920517084261, 34.49948187540548], [-77.42834897014139, 34.50008765889027], [-77.42832878760018, 34.50011268654054], [-77.42831728190347, 34.5001180920708], [-77.42830682960928, 34.50012356326696], [-77.42824350297705, 34.500142725269406], [-77.42762269223417, 34.50037460665347], [-77.42706457889128, 34.500505959114065], [-77.42672914219966, 34.50053440370455], [-77.42631653323161, 34.50068550046818], [-77.42581687111917, 34.50086840233469], [-77.42540828845966, 34.50108063761007], [-77.42523842906081, 34.50130599199676], [-77.42493509319031, 34.50144476983547], [-77.42465477678752, 34.50154444072808], [-77.4245139010587, 34.501606764016486], [-77.42431716164093, 34.50173854274991], [-77.42379844336011, 34.50190799267131], [-77.42363690707683, 34.502002017875064], [-77.42343994244595, 34.50202736614128], [-77.42313780210449, 34.50202556533639], [-77.42237029134203, 34.50198043708967], [-77.42202965324923, 34.502108360479845], [-77.4215055121147, 34.502220187723736], [-77.42132857587569, 34.50192025228651], [-77.42162461655741, 34.50161792696824], [-77.42144992286786, 34.50145024414242], [-77.42149185938166, 34.50131933470226], [-77.42127029980392, 34.501103292128825], [-77.42171219553722, 34.500631536702194], [-77.42175502559884, 34.50049297768249], [-77.42184642154119, 34.50045718649469], [-77.42285068798296, 34.49986902702789], [-77.4228791143616, 34.499851116978995], [-77.42291247778681, 34.49983610838568], [-77.42349825423184, 34.49955794284692], [-77.42405294683141, 34.49934014493151], [-77.42434389232868, 34.49937487588728], [-77.42491394606887, 34.499262796116064], [-77.42535480966707, 34.49917611678906], [-77.42569041116768, 34.498841139081854], [-77.4260275714669, 34.49864412307193], [-77.42650343260576, 34.49845087450173], [-77.42688050962275, 34.49850607439645], [-77.42741832986746, 34.49849280464614], [-77.42785220250934, 34.49845867807867], [-77.42799106409302, 34.49840659866314], [-77.42821178480138, 34.498284357409375], [-77.42900494444069, 34.49817962187577]], [[-77.25891795633473, 34.581853092921676], [-77.25901610761625, 34.58207978956548], [-77.25887994106085, 34.5821880817127], [-77.2592234288364, 34.58236955559302], [-77.25913011910758, 34.582443439957046], [-77.25909243298548, 34.58247957935305], [-77.25904827350833, 34.58267266953526], [-77.25882191791787, 34.58287604072147], [-77.25880727389287, 34.58288321658405], [-77.25880563102754, 34.582889245407735], [-77.25880090776592, 34.582895201150954], [-77.25862578356478, 34.58305042725327], [-77.25849027971802, 34.58310009864701], [-77.25840915008261, 34.583186380883745], [-77.25839609951923, 34.58321052225341], [-77.25833278223908, 34.58325421760384], [-77.25823851653075, 34.583315955870034], [-77.25814525250752, 34.58338040749677], [-77.25798319374533, 34.58346479125862], [-77.25793000414251, 34.58352734643549], [-77.2578162704285, 34.5836141019107], [-77.25779445140284, 34.58362555328871], [-77.25777014595714, 34.583632600589894], [-77.25774247057262, 34.583658988300265], [-77.25760503854899, 34.58373744137094], [-77.25757428381506, 34.58375836459794], [-77.25750757235942, 34.583807700217385], [-77.25720567779737, 34.5839416801902], [-77.25724674406547, 34.58402833379234], [-77.25719610944769, 34.5840792769623], [-77.25712098801849, 34.584155235681685], [-77.25710012313691, 34.58416904331363], [-77.25710128188187, 34.584174658247626], [-77.25701968876257, 34.584250999880226], [-77.25697221275014, 34.58427681116304], [-77.25688938472335, 34.584345860585586], [-77.25683658611659, 34.58438397158481], [-77.256817509486, 34.584399812235056], [-77.25676864900205, 34.58443507945138], [-77.25666459805896, 34.584488269906934], [-77.25663744027445, 34.58453205907089], [-77.25661550917013, 34.58454878415127], [-77.25653694289934, 34.58459605754361], [-77.25644692264798, 34.58465441397604], [-77.25633978963022, 34.5846321865111], [-77.25620291910771, 34.5847866259153], [-77.25617175718922, 34.58480298381083], [-77.25615203731186, 34.58482069557775], [-77.25581675796954, 34.58482425829279], [-77.25569670716814, 34.585159886637726], [-77.25558335991306, 34.585228009593514], [-77.25556013108351, 34.585253287907676], [-77.25543366438825, 34.58545189721362], [-77.25539435986597, 34.58548509384309], [-77.25508141409433, 34.58548477816184], [-77.2546065857496, 34.58562245841362], [-77.25491564155118, 34.58581976561684], [-77.2548344655658, 34.58587607014909], [-77.25480801693013, 34.58589889500111], [-77.25473477173001, 34.585986057690604], [-77.25470985953899, 34.58600484418772], [-77.25461860080935, 34.586059063530435], [-77.2545260881761, 34.58608746478616], [-77.25446488207731, 34.58617225349015], [-77.25441457685552, 34.586206239179106], [-77.2541735388659, 34.586281345203574], [-77.254156973422, 34.58626446991227], [-77.25404167836847, 34.58614701793742], [-77.25393775109754, 34.58604114517823], [-77.25382117018229, 34.5858621835194], [-77.25380740956177, 34.585666176844356], [-77.25391570380323, 34.58556806568424], [-77.25418762193682, 34.585347067998654], [-77.25431889388933, 34.58512846530026], [-77.25445121664126, 34.58489146015428], [-77.25431982639513, 34.58465719320477], [-77.2552417095168, 34.58412068250689], [-77.25551344538462, 34.58389718090524], [-77.2555321264608, 34.583809947916144], [-77.25563739021004, 34.583712480878575], [-77.25625255573117, 34.58324002375697], [-77.25703505638614, 34.58318908956979], [-77.25743334590891, 34.58312131807933], [-77.2575466583614, 34.58307651690343], [-77.25756712773823, 34.58302744524593], [-77.25758277574135, 34.58298397764418], [-77.25760042016668, 34.58279109205576], [-77.2574719752861, 34.58254861403955], [-77.2578157617621, 34.58216191143691], [-77.2578050592959, 34.58210348777541], [-77.25800916789014, 34.58198318152925], [-77.25833217685373, 34.58196851445831]], [[-77.43761357012784, 34.582975955007385], [-77.43751482200922, 34.582820626329934], [-77.43745291169418, 34.582723241314966], [-77.43721093968911, 34.582342621930145], [-77.43695851360435, 34.58194554772763], [-77.43682500446988, 34.58173553338459], [-77.43660318990959, 34.58138661132689], [-77.43638195270778, 34.581179732107], [-77.43567429033831, 34.58082329602531], [-77.43524862130461, 34.580958899252366], [-77.43489894859451, 34.58092177761991], [-77.43485459326197, 34.58092631919856], [-77.43479014518508, 34.580915863922975], [-77.43481477351597, 34.58098174812431], [-77.43482579270677, 34.58101122615733], [-77.43498073229344, 34.58138234416211], [-77.43487636612907, 34.58179893396132], [-77.4348719270011, 34.58184096104378], [-77.43467434535039, 34.58227582882364], [-77.43457327754673, 34.58241126419536], [-77.43446117255162, 34.58245841547545], [-77.43416149325178, 34.58267299728828], [-77.4340183887092, 34.58274259950174], [-77.43403337652117, 34.58282964164161], [-77.43406730130444, 34.58285221906155], [-77.43437980445117, 34.583167599619024], [-77.4344049263104, 34.5832248977567], [-77.43446172142428, 34.58386908107202], [-77.4344876615221, 34.583973280962645], [-77.43449627068283, 34.58399994494621], [-77.43525006600777, 34.58458676386137], [-77.43554551846118, 34.583848236963355], [-77.43560207953101, 34.58337071518938], [-77.43603758615743, 34.58325436415734], [-77.4361901090607, 34.58307028332943], [-77.43670268279881, 34.58296409173572], [-77.43666977891999, 34.58326108025416], [-77.43682567008426, 34.58333200685502], [-77.43698218835681, 34.58347190112637], [-77.43702275434491, 34.58350164224841], [-77.43717426567191, 34.58361272325083], [-77.43720009445056, 34.583630246192975], [-77.43721983025911, 34.58364959831905], [-77.43758109904921, 34.58358916407173], [-77.43761385590298, 34.58364531342886], [-77.4379817491111, 34.58394885042748], [-77.4380080268805, 34.583977747982175], [-77.43818692234261, 34.58412276659258], [-77.4382051808713, 34.58429880956042], [-77.43823831145566, 34.58430803977417], [-77.43837313807487, 34.58431986373871], [-77.43840219890639, 34.58430535501427], [-77.43851570191171, 34.58448022211916], [-77.43857608701407, 34.58449650088403], [-77.43872796746346, 34.5846618221127], [-77.43876597829353, 34.584689105021624], [-77.43898426044358, 34.58482712357241], [-77.43919028605399, 34.58436477886687], [-77.43935825415541, 34.58481448439679], [-77.4393107606394, 34.58500213328452], [-77.43947861830831, 34.58509210720854], [-77.4395329682472, 34.585182294501266], [-77.43958470776843, 34.585231036625956], [-77.43966861178288, 34.58528458917351], [-77.43977298738318, 34.585359879165935], [-77.43997888444287, 34.58554226850828], [-77.44024870834015, 34.58542486330172], [-77.44076159291038, 34.5856356671101], [-77.44062888834125, 34.584959979250826], [-77.44058325213584, 34.584818095921015], [-77.44031787625491, 34.58437314801971], [-77.4401169959933, 34.58403634034674], [-77.4399781205133, 34.583868209063105], [-77.43981877544488, 34.58390774531707], [-77.4391901386864, 34.584034795511904], [-77.4390789194219, 34.58406661092801], [-77.43879615948413, 34.58414749692974], [-77.43844258756081, 34.5842349435101], [-77.43840216001426, 34.5842163703212], [-77.43827453935663, 34.58401563216441], [-77.43819452688967, 34.58388977736892], [-77.43812259380967, 34.58377663139818], [-77.4379473192555, 34.58350093226712], [-77.43781870483008, 34.58329862901395]], [[-77.43820054818349, 34.740724112391256], [-77.43798083763647, 34.740657385683114], [-77.43792705713703, 34.7406150103175], [-77.43784476556911, 34.740573657898025], [-77.43777537881347, 34.74050443629035], [-77.43777303037507, 34.74045606769641], [-77.43784146336452, 34.74032118987285], [-77.43793402759351, 34.740280349605364], [-77.43796877883463, 34.740155301482844], [-77.43806316363315, 34.74004595175969], [-77.43813582827511, 34.73985830347143], [-77.43814982052905, 34.73979671221542], [-77.43817251361611, 34.73974039761973], [-77.43826464218361, 34.73967666594258], [-77.4383279639996, 34.73962046541572], [-77.43846941161965, 34.73962885720699], [-77.43854566435769, 34.73960220734299], [-77.43859833294084, 34.73963142735726], [-77.43862588662992, 34.73965384796533], [-77.43862789647181, 34.739684229481256], [-77.43860399253626, 34.73969747574647], [-77.4386087497543, 34.739817297782736], [-77.43851962167857, 34.73990342963488], [-77.4384957376815, 34.739894493109155], [-77.43843748053995, 34.73989721684539], [-77.43846593197128, 34.74008896386812], [-77.43844524531852, 34.74017561873616], [-77.43844477423117, 34.74017928108177], [-77.43844438392144, 34.740184448292986], [-77.43842963240841, 34.74031374869011], [-77.4384104219665, 34.740413349987605], [-77.43840635722651, 34.740445374627285], [-77.43836530977464, 34.740655373633246], [-77.43837684316391, 34.74071457875888], [-77.4383903230447, 34.740843813892354]], [[-77.22939400891362, 34.59720950079052], [-77.23012977542817, 34.59708672386418], [-77.23048893772679, 34.59739073543547], [-77.23057875487117, 34.59750095159125], [-77.23063536293446, 34.59775348856646], [-77.23078854876432, 34.59788573519664], [-77.2309290317086, 34.59810462643412], [-77.23093498548383, 34.59818767963143], [-77.23083540398416, 34.59836079012922], [-77.2306427178487, 34.59858510006263], [-77.23041026837681, 34.59879860232549], [-77.23000790549082, 34.5989925307133], [-77.2294845756984, 34.598869579938366], [-77.22917490391697, 34.59897228205811], [-77.22830031086848, 34.59863208985038], [-77.22885311413401, 34.59830772448151], [-77.22879408170598, 34.59819970301536], [-77.22874842043535, 34.59818577860524], [-77.22879915900357, 34.598049129831], [-77.22876078511575, 34.59772571557704], [-77.22870216055924, 34.59746835519225], [-77.22893895327212, 34.59706914466365], [-77.22940016173958, 34.59683345784202], [-77.22941579738458, 34.596831481657766], [-77.22941912915736, 34.59683495475752]], [[-77.43131197623893, 34.5009404527302], [-77.4312947441947, 34.50097121022051], [-77.43126373665322, 34.50108859706034], [-77.43121711132915, 34.50123054608718], [-77.43070841490825, 34.5012474289431], [-77.43065378590413, 34.50125380868481], [-77.43061967727306, 34.50125037396259], [-77.43061755157888, 34.50123619670112], [-77.43060765502696, 34.501151810069096], [-77.43057945424871, 34.50092060845379], [-77.43074231444277, 34.50091138959156], [-77.43108579703967, 34.50086965018063], [-77.43120090452216, 34.50085853909677]], [[-77.45178773456348, 34.47923435189524], [-77.45169021353468, 34.479396155432745], [-77.4514848818456, 34.479675645719894], [-77.45112315116415, 34.480133318549655], [-77.44968996170718, 34.47958431899598], [-77.4497523039908, 34.479514983477344], [-77.45016868416003, 34.47925079567786], [-77.45075352958361, 34.47899185745317], [-77.45080494257809, 34.47896889379946], [-77.45084657004259, 34.47898616498673]], [[-77.43686988759859, 34.49696190832504], [-77.43672403430672, 34.4970746218378], [-77.43661184710353, 34.497157514313216], [-77.43566842024079, 34.497493361822016], [-77.43544103298522, 34.49763929534056], [-77.43505103535844, 34.49775347332759], [-77.43446010148044, 34.49799977856732], [-77.43342417342382, 34.49784727437343], [-77.43307964900359, 34.49787600558339], [-77.43280630234509, 34.49776026100044], [-77.43238745708183, 34.497617627651586], [-77.43259546254613, 34.49744447413155], [-77.43290882610306, 34.49725056038875], [-77.43326681738236, 34.49658252558262], [-77.43403788098834, 34.496453961297505], [-77.43413120636166, 34.496408539816926], [-77.43455826628549, 34.4963772765761], [-77.43481078821685, 34.49614471847186], [-77.43530343510487, 34.49615715739802], [-77.43623338101392, 34.495970616422724], [-77.43658468555941, 34.49591784444056], [-77.4367038922767, 34.495876593115874], [-77.43693867774631, 34.49582310776311], [-77.43784992415955, 34.495619930700855], [-77.43864389439429, 34.49591001959192], [-77.4386431613966, 34.496224991957874], [-77.4386730109926, 34.49624927130742], [-77.43863974857568, 34.4962795186274], [-77.43832875704184, 34.49656949253689], [-77.43827015377879, 34.49663782047956], [-77.43814714360062, 34.49670792808856], [-77.4375865450095, 34.49682955171765]], [[-77.39363079197497, 34.50867023731463], [-77.39399422215114, 34.50880684053356], [-77.39481187093611, 34.50892765223408], [-77.39497350220829, 34.50951509128521], [-77.39506164379368, 34.50963211338403], [-77.3949299177119, 34.50980401050711], [-77.39479947035049, 34.51015962515281], [-77.3945878214863, 34.51032076938336], [-77.3943796217369, 34.510271035284696], [-77.39400452895622, 34.510505102871086], [-77.39398170127845, 34.51051558644195], [-77.39397641627758, 34.51052002061047], [-77.3939730629366, 34.51052373973138], [-77.39378331054291, 34.51061250359337], [-77.39369799392637, 34.510632914444514], [-77.39358540922727, 34.510687643025676], [-77.39335436339995, 34.510714090192636], [-77.39292375142175, 34.51084100657331], [-77.39279689238066, 34.51085079875686], [-77.3926684032678, 34.51087707311659], [-77.39220928125081, 34.510899389475455], [-77.39201115430443, 34.51089037659268], [-77.39127782402888, 34.510697308862866], [-77.39123092757559, 34.51068520990481], [-77.391205229695, 34.51069426182347], [-77.39114416673364, 34.510687167691025], [-77.3911636063819, 34.510641749707254], [-77.39123302192067, 34.510592225482554], [-77.39133367562071, 34.510227830093385], [-77.39135532907785, 34.51016702737891], [-77.39143323793766, 34.50977961333878], [-77.39157568075684, 34.50944785153089], [-77.39129350286034, 34.5091966112903], [-77.39132322108694, 34.50873279957292], [-77.39206186906483, 34.50863782511237], [-77.392797964614, 34.50852185255509]], [[-77.45416684912878, 34.680177778309414], [-77.45417579953137, 34.680224148845404], [-77.4542850856092, 34.680354792903245], [-77.45454450581684, 34.680294700506906], [-77.45477392169751, 34.68021859763704], [-77.45488642709714, 34.68011960069752], [-77.4548052115297, 34.680044747580105], [-77.45477490434165, 34.680013173998795], [-77.45469167013034, 34.679918569661424], [-77.45456360891305, 34.67981412632391], [-77.45454663574897, 34.679749185633106], [-77.45450051083867, 34.679675032430296], [-77.45441524464253, 34.679538182917206], [-77.45418697598393, 34.67948243504658], [-77.45401137580947, 34.679194383098576], [-77.45397923673373, 34.679156486295774], [-77.45392127796944, 34.679162891274764], [-77.45391878340985, 34.679189613656305], [-77.45393805478588, 34.67920680678461], [-77.45395542761625, 34.67954843275784], [-77.45406483536505, 34.67983243757876], [-77.45409761625507, 34.679877169178894], [-77.45410644570612, 34.679915506998164], [-77.45414201993586, 34.680049145000815]], [[-77.30193360796103, 34.55411214942524], [-77.3021697021557, 34.55433828464776], [-77.30168785645, 34.55452022184888], [-77.30157475484525, 34.55466846522534], [-77.30150967428933, 34.5546818824628], [-77.30150117518946, 34.55476490679849], [-77.30138822234628, 34.55481763484232], [-77.30131237482829, 34.55483423023628], [-77.30130327064677, 34.5548318092859], [-77.30129511671426, 34.55483601674594], [-77.30128900558103, 34.554822846265964], [-77.30142513090591, 34.55468993549489], [-77.301314064096, 34.554580435824406], [-77.30127813807889, 34.55446622137373], [-77.3011380248252, 34.55425237838926], [-77.30151833120078, 34.55403730851118]], [[-77.41128594386556, 34.671232877546004], [-77.4113686641548, 34.671244979973295], [-77.41159328838086, 34.67127784371179], [-77.41166631632643, 34.67127391024918], [-77.41178167811239, 34.67117250575781], [-77.4120283342985, 34.67088174050331], [-77.41204746807543, 34.67085918512677], [-77.41205466191828, 34.67085070472358], [-77.41207052454388, 34.67083200522312], [-77.4123132563974, 34.6705458639021], [-77.41242038075785, 34.6704195806238], [-77.41244614955552, 34.670389203164405], [-77.412514686916, 34.67030840778635], [-77.412579042469, 34.67023254223674], [-77.4126102901139, 34.67020648599958], [-77.4127348840983, 34.67011342447485], [-77.41275235326736, 34.67010116553619], [-77.41287074886216, 34.67001808180417], [-77.41266715700411, 34.66978177007155], [-77.41256941927755, 34.66991262437998], [-77.41251662810578, 34.669976348009286], [-77.4125192823065, 34.670034856694706], [-77.41246841116424, 34.67005155811201], [-77.41242391550082, 34.670068671868236], [-77.41231748198683, 34.67010401046551], [-77.41230583091394, 34.67015965221829], [-77.41223633269232, 34.67016332359076], [-77.41213337092867, 34.67025158406908], [-77.41205724389854, 34.67029249103288], [-77.41203078038838, 34.67083188529701], [-77.41196923464513, 34.67082080705194], [-77.4115375202088, 34.670773078251855], [-77.41143318914645, 34.67072431878211], [-77.41120363961112, 34.67083242296118], [-77.41112900516278, 34.67085290907022], [-77.41107104790558, 34.670868616138925], [-77.41098329280432, 34.670839292075264], [-77.41076508009556, 34.67081889971102], [-77.41022093084003, 34.67076804582452], [-77.41067584294008, 34.67112710020923], [-77.41086071996935, 34.67116215153952], [-77.41097411085457, 34.67120341430478], [-77.41114475034965, 34.671218272381466]], [[-77.38756081132452, 34.624317282438696], [-77.38744669424513, 34.624461455431685], [-77.38737661657774, 34.62455611467491], [-77.38756527470635, 34.624588030407814], [-77.38764301458285, 34.624517717412616], [-77.38771299954371, 34.624454418445566], [-77.3877624194566, 34.624380388047115], [-77.38785479637765, 34.62427490834089], [-77.3878249838084, 34.62413426349079], [-77.38780230759482, 34.62402728629488], [-77.38772981846081, 34.624045477999104], [-77.38756531494562, 34.62430764277782], [-77.38756259292033, 34.62431409514445]], [[-77.42422251055567, 34.527455277796484], [-77.42413943193223, 34.52727242294422], [-77.42414605979837, 34.526976642645735], [-77.42421252436861, 34.52673400422403], [-77.4242105950252, 34.52670910972329], [-77.42417032901128, 34.52648344739943], [-77.42419548188592, 34.52645349550996], [-77.42423514340013, 34.52623383892502], [-77.42421657441747, 34.52623191825617], [-77.42385419389183, 34.526046022341475], [-77.42374515633527, 34.526300068597074], [-77.42366296592589, 34.52644298016405], [-77.42345455099549, 34.52658692182718], [-77.42305043388652, 34.526894757495995], [-77.42284179323443, 34.527036997553026], [-77.42265249461656, 34.52714085789498], [-77.42258812999636, 34.527201855244], [-77.42241397821579, 34.52732563394833], [-77.42235085633345, 34.527420458165864], [-77.42230213492178, 34.527488039141545], [-77.42230375507313, 34.52752034046627], [-77.42227944479373, 34.52771608756099], [-77.422310944918, 34.52773160869001], [-77.42232061221732, 34.52777680516503], [-77.42230623587571, 34.528178796665856], [-77.42237238754846, 34.528212413121196], [-77.42235202502445, 34.52862710723736], [-77.42243152698151, 34.528823795757376], [-77.42251548110687, 34.52917110133022], [-77.4226683445808, 34.52935340291853], [-77.42280844178302, 34.530000049915934], [-77.42285857096469, 34.5301008808014], [-77.42291187728466, 34.53013486761327], [-77.42297848711027, 34.530145121515886], [-77.42313710447621, 34.53015976492246], [-77.42414566191553, 34.5301658318659], [-77.42454855601393, 34.53014302131445], [-77.42483443187417, 34.53012683453029], [-77.4249901774301, 34.53006717282531], [-77.42502180853785, 34.530033007609376], [-77.42520620783831, 34.52992388083009], [-77.42523026764769, 34.52982682505207], [-77.42519039091071, 34.529763791743996], [-77.42514814016263, 34.52964739583987], [-77.4250097555902, 34.52951092908516], [-77.42476799335925, 34.52933516930195], [-77.4245734691705, 34.5290165436118], [-77.42446790832831, 34.52895555510424], [-77.42447937589509, 34.52888720662214], [-77.42448226288525, 34.52882728301122], [-77.4244049301043, 34.528520264198704], [-77.42418640112177, 34.52843987254097], [-77.42417483914082, 34.5282116303782], [-77.42419784695196, 34.5279485305967], [-77.42442153706156, 34.52780469654398], [-77.42441762561376, 34.52754459645645]], [[-77.24032737272962, 34.60193523302069], [-77.24032633754483, 34.60194058754214], [-77.24033335765634, 34.60240930514684], [-77.24017789091255, 34.60272593826533], [-77.24024435001613, 34.60287364061778], [-77.2402980290318, 34.6030483611394], [-77.240216364559, 34.60315754994233], [-77.24000861524317, 34.60315667037056], [-77.23975474114334, 34.60305831720733], [-77.23922867562165, 34.60308116573647], [-77.23957701824574, 34.60258883143521], [-77.23969899529864, 34.60235930266478], [-77.2403067731128, 34.601942942218365], [-77.2403183909576, 34.601933518788336]], [[-77.30139592424379, 34.559228739896824], [-77.30155185510964, 34.55932306936577], [-77.30157799627145, 34.55943587267879], [-77.30138510285069, 34.55968769612532], [-77.30085216203992, 34.55942346446611], [-77.30116797488728, 34.55923614960457]], [[-77.30819996521298, 34.54857661068935], [-77.30923937884594, 34.54826052937229], [-77.30919823295503, 34.547655438721634], [-77.30864984737366, 34.54797337288488], [-77.30792842865986, 34.54860398778254], [-77.30788915893957, 34.54859663750701], [-77.30780971006398, 34.54863263550635], [-77.30792728053983, 34.548652834816515]], [[-77.3997869251106, 34.58153733290659], [-77.39965349061919, 34.581390024847956], [-77.39964963000317, 34.58068939935768], [-77.39970564100454, 34.58053335203984], [-77.39973564936335, 34.58047373769072], [-77.39978695675288, 34.58042084083459], [-77.39986324202519, 34.580428409890835], [-77.40018098092344, 34.58022963175154], [-77.40030813318698, 34.58015885216853], [-77.40037799191909, 34.58015168037623], [-77.40053446557914, 34.58003286303701], [-77.40057500401016, 34.57999881565206], [-77.40059643626404, 34.580003333643916], [-77.40077201143686, 34.58007409637184], [-77.40085803091714, 34.58006208748901], [-77.40096901976929, 34.58011187199102], [-77.40120487088632, 34.58031701473497], [-77.40130315538443, 34.580367354755154], [-77.40136303461733, 34.58041568026265], [-77.40150914446357, 34.580540239401344], [-77.40167632364091, 34.58067355569665], [-77.40170462120338, 34.580725968690444], [-77.40212903904002, 34.58103279924656], [-77.40173660327049, 34.58149197628291], [-77.40170529168658, 34.58151852555468], [-77.40153964448646, 34.58173274579634], [-77.40136302209288, 34.5817499484288], [-77.40120616054405, 34.581759576227945], [-77.40113070744194, 34.58177569023309], [-77.4009689937767, 34.581949665424496], [-77.40069909737639, 34.58195454337474], [-77.4005749666859, 34.58197447437691], [-77.40043797891266, 34.581849012837566], [-77.40022809418629, 34.58173168789163], [-77.40019840622253, 34.581717157486594], [-77.40018094601739, 34.58170592271367], [-77.39995205416227, 34.58152487565597]], [[-77.35793996979561, 34.53619987357609], [-77.35799963364516, 34.53603060075544], [-77.3578857498401, 34.53592407343652], [-77.3578543590476, 34.53556187258815], [-77.35778844847488, 34.53551496864231], [-77.35770289271554, 34.53530255094485], [-77.35763062657674, 34.53515166897103], [-77.35758413528258, 34.535111136134816], [-77.35754993826892, 34.5350165783528], [-77.35741824393408, 34.53464537601481], [-77.35763074006503, 34.53418608712983], [-77.3576566231088, 34.53407500331908], [-77.35800418469692, 34.53390343787362], [-77.35852430338142, 34.53371702591267], [-77.35865688035014, 34.53356828260963], [-77.35882447345162, 34.53346358592563], [-77.35932802059772, 34.53290298722039], [-77.35932959693639, 34.532902168250715], [-77.35933030150393, 34.532901095320774], [-77.35932982765131, 34.53290007803866], [-77.35947654246453, 34.53239038420809], [-77.35964475877992, 34.53206205482796], [-77.35961248361491, 34.531881160627194], [-77.359827753029, 34.53155768105131], [-77.35994593003775, 34.5313434907268], [-77.35999440303073, 34.53123872549086], [-77.36008614185533, 34.53083364934707], [-77.360163165635, 34.530715055152], [-77.36032721932459, 34.53079892904634], [-77.36065983146548, 34.53092785873593], [-77.36093880432831, 34.531126458348446], [-77.36097030374994, 34.53117561079293], [-77.36098318674071, 34.53119410324505], [-77.36133167338876, 34.53138483687015], [-77.36133494852692, 34.5313882644928], [-77.36134712248955, 34.53140026630836], [-77.36143959869217, 34.531544524766836], [-77.36135795676451, 34.5316297752728], [-77.36137172120873, 34.53166060435928], [-77.36131699003099, 34.531753473984175], [-77.36125045017221, 34.53184995878307], [-77.36122411417882, 34.53189387701222], [-77.36110235477526, 34.53202626022686], [-77.36101090601352, 34.532110399623676], [-77.36093418761446, 34.53218045874235], [-77.36093047223642, 34.53219098625348], [-77.36091430697424, 34.5321972908133], [-77.36058795189325, 34.53252104428523], [-77.36029222966948, 34.53276256315964], [-77.36023164218818, 34.53284439253129], [-77.36025615019145, 34.53316445076885], [-77.36022965803723, 34.53326122339146], [-77.36026265618361, 34.533356223312744], [-77.36023648771715, 34.53366209182558], [-77.36026521480846, 34.533745751441145], [-77.360225555097, 34.533834907585856], [-77.36028607172014, 34.53398757201405], [-77.3603641270382, 34.53404823959154], [-77.36032397563184, 34.53413117031576], [-77.36029658852424, 34.53423088190068], [-77.36027779353236, 34.534282408886966], [-77.36022826664922, 34.53433296569231], [-77.36022816399829, 34.534392529969054], [-77.36017616616415, 34.53449304888299], [-77.36015839634375, 34.5345473347639], [-77.36014030779474, 34.53462062527281], [-77.36009374216188, 34.53473565290871], [-77.36009021190047, 34.53475025196896], [-77.36008507746274, 34.53476002589068], [-77.36006994227861, 34.53478840867773], [-77.36003392313958, 34.53485931803145], [-77.36000617778474, 34.534884766190835], [-77.35996296612156, 34.53494897383149], [-77.35983837144425, 34.5350313444474], [-77.35977541695124, 34.53510607863669], [-77.35974872158238, 34.535289079286414], [-77.35972881998542, 34.5353317737027], [-77.35966116786645, 34.53549743443589], [-77.35958090202196, 34.535508164093095], [-77.35956455132502, 34.53556042577412], [-77.35960638883016, 34.535587282656294], [-77.3595126352271, 34.53572331450618], [-77.35950437457731, 34.53581391592894], [-77.3594963252615, 34.53591196557695], [-77.35948527364386, 34.53593907866325], [-77.35948128605823, 34.535956429649644], [-77.35933128058812, 34.536083666719904], [-77.35934407648594, 34.53626857643659], [-77.35938293045822, 34.53632105277912], [-77.35943343198672, 34.536429883501164], [-77.35943474214652, 34.53644133199967], [-77.35944214741889, 34.53649104957084], [-77.35945356062595, 34.536547777708], [-77.35945715813348, 34.53655518767377], [-77.35944775435591, 34.53656103802744], [-77.35944031534132, 34.53657107890481], [-77.35937896643452, 34.53665175002334], [-77.35931094451375, 34.53677640836989], [-77.35926404943584, 34.53682782047282], [-77.35926433823087, 34.536844340861606], [-77.35923621497051, 34.53691280884169], [-77.35921743746553, 34.53695694483681], [-77.35921929242558, 34.536966465611485], [-77.35919076735333, 34.537056910831055], [-77.35916452148415, 34.53708697691782], [-77.35907991292072, 34.53719264541472], [-77.35904591011308, 34.5372347921468], [-77.3590008710067, 34.53725246914343], [-77.35883606212309, 34.53724461294716], [-77.35860141961413, 34.53731341962915], [-77.35844152468093, 34.53733110761522], [-77.35829614528836, 34.537366687010994], [-77.35820137496609, 34.53747049327751], [-77.35804296583595, 34.5375931012334], [-77.35786208848828, 34.53751934841644], [-77.35777352388646, 34.537457259022204], [-77.35765893951447, 34.53722075113962], [-77.35758379379247, 34.537118105587474], [-77.357596510285, 34.53702622740834], [-77.35789135665274, 34.53653583742108]], [[-77.34551038155473, 34.57465290360756], [-77.3454154658208, 34.57463734181519], [-77.34523043071997, 34.574596048082896], [-77.34521849121806, 34.57459824143785], [-77.34521176184367, 34.57459312482152], [-77.34519136152122, 34.574588804363586], [-77.34502151919665, 34.574555660502], [-77.34492618074569, 34.57462694743203], [-77.34502134021587, 34.574815247623725], [-77.34502358589324, 34.57482278436586], [-77.34502545596534, 34.57482494073326], [-77.34521825945002, 34.57493558062584], [-77.34528512781273, 34.574927816587284], [-77.34541522725024, 34.57498579491529], [-77.34559774688972, 34.575167168042974], [-77.34572205714882, 34.575243029813535], [-77.34613488977489, 34.57551444915254], [-77.34617156496353, 34.57554289441395], [-77.34620282870944, 34.57558957508625], [-77.34634043619926, 34.57563318651104], [-77.34659674182242, 34.57573001776215], [-77.34683507398826, 34.57558157611457], [-77.34699090009319, 34.575503826560016], [-77.34709956253668, 34.57549275763263], [-77.34710914569732, 34.57537430207782], [-77.3470792825853, 34.575283522332526], [-77.34699113049182, 34.575157606858646], [-77.34672331579131, 34.57486949359222], [-77.34659728376543, 34.574921306953094], [-77.3464547320427, 34.57489026965814], [-77.3462033399174, 34.57483214998077], [-77.34601819290467, 34.57488160595291], [-77.34581308062205, 34.57471164807975], [-77.34581036346587, 34.57471102077833], [-77.34580941861961, 34.57471093740942]], [[-77.45166910326614, 34.60993362986566], [-77.45148482207296, 34.60996657594899], [-77.45143179727569, 34.609850599066945], [-77.45161151309675, 34.609811662813954]], [[-77.3422149937771, 34.55103301598971], [-77.34211970223399, 34.55099148154969], [-77.34203331459481, 34.55089599003445], [-77.3419295770353, 34.550893966188724], [-77.34183866970423, 34.55084232854627], [-77.34174910273035, 34.550674807854655], [-77.34177685712035, 34.550606400937184], [-77.34194608289178, 34.55039879385333], [-77.34188775808019, 34.550245501379976], [-77.34180106817976, 34.550113281279025], [-77.34197373815019, 34.54989518698975], [-77.3420267793308, 34.54981637373436], [-77.3419453324189, 34.54960289312784], [-77.34206493920716, 34.54952666038217], [-77.34217107637643, 34.54938981425687], [-77.34234513895527, 34.54937287782154], [-77.3424603303672, 34.54940657677132], [-77.34257035503143, 34.54944384321027], [-77.34277979229819, 34.54948285851151], [-77.34323691103877, 34.54978154665218], [-77.34339563956308, 34.54978488114608], [-77.34346378506964, 34.54987410230626], [-77.34349047955821, 34.5500319790546], [-77.34367904724569, 34.55033277363545], [-77.343645762612, 34.550561042053886], [-77.34369274269766, 34.5508204417131], [-77.34341939644227, 34.550990957752], [-77.34320692164609, 34.55108086786586], [-77.34316682465713, 34.55111642615146], [-77.34300963690714, 34.55112297699365], [-77.34297154729424, 34.551145582229125], [-77.34286017721416, 34.55115534694886], [-77.34281276293875, 34.55114728293187], [-77.34271842134935, 34.55114658305553], [-77.34255376115512, 34.55114580590652], [-77.34242060788034, 34.551126891305124], [-77.342287169533, 34.551106136977644]], [[-77.32142540502701, 34.69810749228493], [-77.32172642204168, 34.69808145344487], [-77.32202710262608, 34.698031073216946], [-77.32205828436092, 34.69825964890952], [-77.32225215903301, 34.69833235834737], [-77.32250052920561, 34.69845515865072], [-77.32274576144191, 34.698652803850564], [-77.32275554431212, 34.698660150652366], [-77.32335648825867, 34.69858504606643], [-77.32331555191465, 34.69879319594938], [-77.3234598872018, 34.698634991069966], [-77.32342664026194, 34.69855949314464], [-77.32340542522633, 34.69854740941132], [-77.3233879936866, 34.69854402569324], [-77.32298524035748, 34.69808237777936], [-77.3229331121188, 34.69804939974809], [-77.32272953187372, 34.69788494573004], [-77.3226557565265, 34.69769040632116], [-77.32261382558951, 34.6975798398349], [-77.32253295133722, 34.697366577928605], [-77.32246819069245, 34.69729775384191], [-77.32248006458727, 34.69722711794004], [-77.32232981790162, 34.69703567677347], [-77.32231676691744, 34.697020119974596], [-77.32227691503404, 34.69701127479112], [-77.32205036169654, 34.69696729027977], [-77.32182295002333, 34.69700581300425], [-77.3216214808343, 34.6970044272669], [-77.32140243307299, 34.697136678883204], [-77.32093820868434, 34.697292148517704], [-77.32046671569395, 34.69725715977839], [-77.32006872904806, 34.697960820886784], [-77.32014902739067, 34.69803390607915], [-77.3205519400366, 34.6980027205975], [-77.3209678308982, 34.698057540375615], [-77.32114010774286, 34.69803890040675]], [[-77.3187450530614, 34.698039924468624], [-77.31883656873823, 34.6981202255365], [-77.31925358450898, 34.69809662370441], [-77.31935063527027, 34.69801622480352], [-77.31989642061596, 34.69802831255078], [-77.32000141185084, 34.69722442364621], [-77.31993384026453, 34.69708866236495], [-77.31968740207687, 34.69707182901822], [-77.31962724149379, 34.697064961067], [-77.31952045769363, 34.69700317522878], [-77.31945830436345, 34.69700120212434], [-77.31934522646328, 34.69700537445535], [-77.31924588296677, 34.697017292706555], [-77.31910443140028, 34.69695862313046], [-77.31906117817948, 34.69695278072957], [-77.31875963344581, 34.69699715392498], [-77.31870589162736, 34.69697230722019], [-77.31844242588095, 34.69702179497865], [-77.31806809676073, 34.69713488112792], [-77.31779521718076, 34.69718865898932], [-77.31765848444522, 34.69732025218704], [-77.31758937660784, 34.69740987585501], [-77.3174901059991, 34.697579361352894], [-77.31738547641112, 34.697925172991965], [-77.31755769536684, 34.69800544459881], [-77.31794905480018, 34.69801457828369], [-77.31845718981631, 34.69802872360249]], [[-77.43137952285468, 34.58367689003583], [-77.43205231685087, 34.583552703491954], [-77.43209743791708, 34.58357105679947], [-77.43243117702549, 34.58387391157691], [-77.43244008573667, 34.583928129554316], [-77.43259078839375, 34.58427542787469], [-77.43209789049091, 34.58482286381752], [-77.43180442413427, 34.58470528536757], [-77.43170382666395, 34.584739765093936], [-77.43153375660927, 34.584669592545076], [-77.43130975525408, 34.584632953148315], [-77.43116967563306, 34.58463180576552], [-77.43102745308849, 34.584501422320116], [-77.4310603987633, 34.58422811843804], [-77.43101665110387, 34.58407839391242], [-77.43130943704313, 34.58372902414532]], [[-77.34308856044365, 34.684193490069255], [-77.34311578391194, 34.684215349048266], [-77.34322027536616, 34.68423867926381], [-77.34339567819734, 34.684282080106776], [-77.34346969153346, 34.6842943672883], [-77.34367931448742, 34.68432655572384], [-77.3436262996448, 34.68417385494166], [-77.34366701537135, 34.68408677089206], [-77.34361646099981, 34.68403711832782], [-77.3435928245783, 34.68400253328666], [-77.34356626286458, 34.68397875312433], [-77.34350036323258, 34.68392163784188], [-77.3434399039977, 34.683923127035854], [-77.3433769250619, 34.68388289207748], [-77.34325139761373, 34.683748420760026], [-77.343130501256, 34.68376705511899], [-77.34305174136281, 34.68368382838325], [-77.34274613400058, 34.683668669086195], [-77.34270778228934, 34.68355928678017], [-77.34247451536123, 34.683483522686565], [-77.34227516989806, 34.68340060440674], [-77.34216806071542, 34.683356753467564], [-77.34209515568921, 34.68338128289806], [-77.3420731121553, 34.68333074494201], [-77.34163557186612, 34.68312932381205], [-77.34094917073799, 34.68347479751559], [-77.34111132483733, 34.68297534342211], [-77.34108401288063, 34.68296755725083], [-77.34076823787294, 34.68302241922693], [-77.34046602275674, 34.68307299132759], [-77.34038506859187, 34.68331319657311], [-77.3402827780612, 34.68357640566077], [-77.34030797364332, 34.683578609454585], [-77.34092953376951, 34.683489907908005], [-77.34093257106097, 34.683488937194895], [-77.34093505290619, 34.68348892508338], [-77.3414362502975, 34.68349415085878], [-77.34152932375216, 34.68349512119853], [-77.34173970479874, 34.68365480118842], [-77.34192267332267, 34.683726371367264], [-77.34205948440662, 34.68373057401758], [-77.3420956075493, 34.6837750928088], [-77.34215480024768, 34.68380691285767], [-77.34228399214749, 34.68398799242899], [-77.342341098085, 34.68398034606604], [-77.34257682183406, 34.684010183789724], [-77.34269586734412, 34.68410150947088], [-77.34298474462963, 34.684180400166156]], [[-77.42455697870642, 34.51922759438146], [-77.42375014382156, 34.51953375872177], [-77.42321481676007, 34.51946873782892], [-77.42291465994126, 34.51950640680869], [-77.42219654374833, 34.51977176456776], [-77.4221336725549, 34.52009836467772], [-77.42214334986733, 34.52041054157192], [-77.42240336446874, 34.520667177344336], [-77.42259076009768, 34.52071793954438], [-77.42317907009793, 34.521083555900546], [-77.42333349405375, 34.521121009173285], [-77.4233524636913, 34.52121512410448], [-77.42342709862703, 34.52136292756338], [-77.42369206523759, 34.52181526096479], [-77.42423297954852, 34.52175458606433], [-77.4242069177942, 34.52158128356382], [-77.42454228222982, 34.52140836584574], [-77.42460719439131, 34.52112162020403], [-77.42443028175961, 34.52105930344453], [-77.42446438895317, 34.520873969300844], [-77.42476479352777, 34.52036597630032], [-77.42486100885361, 34.52001765467142], [-77.42496452180748, 34.51988472338775], [-77.42478933833303, 34.51925625321415]], [[-77.41297641748099, 34.66949594781161], [-77.41281916684628, 34.66962693822542], [-77.41293142640754, 34.66997550137082], [-77.41321492880301, 34.66977655345934], [-77.41340236640957, 34.66964501736345], [-77.41353495520315, 34.66955197211834], [-77.41377412703493, 34.6692777964017], [-77.4138035258511, 34.66924321596244], [-77.41381217191588, 34.669229323200774], [-77.41382623421389, 34.669206727495194], [-77.41395503685743, 34.66899976482995], [-77.41387636710878, 34.66892463299791], [-77.41360290231607, 34.66885356597461], [-77.41356409024417, 34.668851523225754], [-77.41354962454534, 34.668857883288425], [-77.41335472497599, 34.66888307619601], [-77.413265485828, 34.668994358164156], [-77.41323859031158, 34.66902858695273], [-77.41323314209535, 34.66905823430231], [-77.41318536345102, 34.66909837065098], [-77.41307028717816, 34.66924924249924], [-77.41300887128043, 34.66943946296349]], [[-77.32388482281738, 34.69889438252342], [-77.32371799718307, 34.698863912562956], [-77.32359788583483, 34.69885170588544], [-77.32329698669845, 34.69906462791274], [-77.32352372106119, 34.69910680462239], [-77.32377906820845, 34.69904823733176], [-77.32384199819188, 34.69904168514742], [-77.32401683960528, 34.69912895740586], [-77.32400598054656, 34.69887372078595]], [[-77.45419799971383, 34.68219185619315], [-77.45420243951686, 34.68223727730265], [-77.45404483324924, 34.68231532964994], [-77.45404417575769, 34.68232616706742], [-77.45404596114041, 34.68233765364505], [-77.4541332010493, 34.68249257935779], [-77.45414756091625, 34.682506207464805], [-77.45415530472694, 34.68251355664981], [-77.45438595833919, 34.68262986326656], [-77.45459940668059, 34.68293502335378], [-77.45463957671541, 34.68305491787491], [-77.45473486632474, 34.68337701816928], [-77.45498124460653, 34.683627477725565], [-77.4549573778141, 34.68417229578865], [-77.45524898702934, 34.683721052710325], [-77.45537370038451, 34.68336539623036], [-77.45549607119456, 34.68305911463231], [-77.45536959127789, 34.68264520154662], [-77.45580490597389, 34.682575015301005], [-77.45599239252812, 34.68230387078852], [-77.45605070724648, 34.6822291717932], [-77.45610582779474, 34.681911582232686], [-77.45597129864758, 34.68173749971229], [-77.45579598311163, 34.68150892052644], [-77.45531880912452, 34.68150945381571], [-77.45517654790655, 34.68154832917679], [-77.45505114616057, 34.681630862386676], [-77.45464887173132, 34.68183430707893], [-77.45453949383577, 34.68200236202905], [-77.454270614817, 34.68211458722051]], [[-77.46623903941274, 34.476326287760536], [-77.46627492615687, 34.47637409007864], [-77.46625512217207, 34.47638510147835], [-77.46619765479332, 34.476370167893016]], [[-77.40223216468122, 34.510085313376976], [-77.40299607577667, 34.51044527814009], [-77.40300202225585, 34.51044868917897], [-77.40283489066444, 34.51085536233978], [-77.40251797774692, 34.511003991903166], [-77.40232612055235, 34.51110455634469], [-77.40212246129954, 34.511115162259685], [-77.40210563131286, 34.51106353526323], [-77.40194278034073, 34.5109181341615], [-77.40179071168157, 34.51061933427988]], [[-77.40845435725132, 34.56593303316731], [-77.4081169637475, 34.56621834768005], [-77.40807586136414, 34.566587930359944], [-77.4080097323064, 34.56707674414075], [-77.40794246595411, 34.56745634856375], [-77.40795787429289, 34.56776808041001], [-77.40794776790997, 34.56788016215545], [-77.40801449921982, 34.56792013355782], [-77.4082013889958, 34.56799534840722], [-77.4084544931367, 34.56801554951341], [-77.40853529960438, 34.568132834061956], [-77.40864920886341, 34.56820346608686], [-77.40924243511333, 34.56832618608454], [-77.40939521689171, 34.56826041402943], [-77.40963638806745, 34.568231725044555], [-77.40985230018515, 34.568221638467264], [-77.41003034576559, 34.56820392801012], [-77.41038940141112, 34.56833914816698], [-77.41042431757009, 34.56833696930027], [-77.41075982235462, 34.56789870972908], [-77.41066102660643, 34.56774356131953], [-77.41051586563898, 34.5674106028052], [-77.41031436220379, 34.567113873812964], [-77.41042302909501, 34.56667237237964], [-77.41085756905431, 34.5661862717638], [-77.41025666380297, 34.566028931300934], [-77.41003014331199, 34.56580033726641], [-77.40988706825888, 34.56563143984349], [-77.40958243272792, 34.56552124327357], [-77.40935114394345, 34.56543724451923], [-77.40897490858553, 34.56532087635143]], [[-77.34257412198124, 34.5274810243195], [-77.34257033185263, 34.527481641754584], [-77.34257034413457, 34.52747928491147], [-77.34257216061738, 34.52747775309539], [-77.3425743248574, 34.52747224121689], [-77.34263885550959, 34.52734701820222], [-77.34267696609614, 34.52728038082849], [-77.3427763506977, 34.52722248170422], [-77.34290734213198, 34.52722662704501], [-77.3429721563021, 34.5272420170404], [-77.34301264701142, 34.527293237836055], [-77.3429969971616, 34.52740012790553], [-77.3430271470297, 34.52741356111757], [-77.34299322966694, 34.52743435552121], [-77.34296745899167, 34.52744541857907], [-77.34292721471809, 34.52745293223842], [-77.34277031596358, 34.52748376939897], [-77.34257872094578, 34.52748094703885]], [[-77.33545954643077, 34.62455798894787], [-77.33551928727282, 34.62461074474666], [-77.33584877821406, 34.624935279339624], [-77.33607563459036, 34.625030905592624], [-77.33624933046879, 34.6250584094506], [-77.33631257807963, 34.625164931383125], [-77.33652694203703, 34.62519069390973], [-77.33659660367563, 34.62519385860528], [-77.33688580154296, 34.625177926130945], [-77.33692283577844, 34.62522453831084], [-77.336942803151, 34.62517346844914], [-77.33722015815742, 34.625111282763264], [-77.33724487074849, 34.62509216030648], [-77.33736796716512, 34.62490324031163], [-77.33731320203944, 34.62433165543356], [-77.33715977578815, 34.624259847767256], [-77.33683096012342, 34.62413852643505], [-77.33669141028828, 34.62407228147792], [-77.33647337499143, 34.624067775857384], [-77.33636950029327, 34.62406309914753], [-77.33629105933234, 34.62405956734454], [-77.33603339968732, 34.62398325409187], [-77.33575689026554, 34.62396925787583], [-77.33563942612122, 34.623956223298094], [-77.33539830137519, 34.624008309857224], [-77.3353005148697, 34.624093022751424], [-77.33531080348544, 34.62431660990923], [-77.3353540436797, 34.6245076713779]], [[-77.2385457556734, 34.6036824496847], [-77.23863688338639, 34.603600670435604], [-77.23868745469127, 34.603693620080755], [-77.23857129171228, 34.603730217325875]], [[-77.38769940817745, 34.66000170987992], [-77.38771058970288, 34.66008676185127], [-77.38782782526454, 34.66004900648973], [-77.38792873830869, 34.660053388802886], [-77.38812691031083, 34.66004923402565], [-77.3883961893466, 34.65990580653391], [-77.38819507239187, 34.659814029252345], [-77.38799831377662, 34.65986509959213], [-77.38787728110032, 34.65987835300672], [-77.38776648659649, 34.65990959482615]], [[-77.39971680065541, 34.52970030348407], [-77.39990992709582, 34.529498466711026], [-77.39985084840791, 34.5292556373085], [-77.39944470779353, 34.52939747340486], [-77.39921755675704, 34.529457562975594], [-77.39890883627449, 34.52964297732945], [-77.39864973932274, 34.52984119675166], [-77.3983464536189, 34.53002725040534], [-77.39825216322276, 34.53006700806048], [-77.39804206716047, 34.530257763095705], [-77.39810381533385, 34.53040589348858], [-77.3981516264658, 34.530542838358016], [-77.39833982300468, 34.530520646225355], [-77.39863656177596, 34.53042879731933], [-77.39890209478459, 34.5302974145755], [-77.39943346877706, 34.52989884126852]], [[-77.45106906446901, 34.74196046368062], [-77.45086017036158, 34.741441645249935], [-77.4508176019331, 34.741262898589554], [-77.45084105016022, 34.74115546839187], [-77.45071713786292, 34.7409603298009], [-77.45066334121012, 34.74088084553459], [-77.45060736574209, 34.740794352113944], [-77.45049483964337, 34.7406204766809], [-77.45038542725726, 34.74055039647433], [-77.45037365909613, 34.7404332267863], [-77.45027327133033, 34.740278105952285], [-77.4502083898787, 34.74017784945986], [-77.45015126572967, 34.74007605156368], [-77.45006090021398, 34.739903942480346], [-77.44997968304689, 34.73982686568385], [-77.44983654274697, 34.7397255383709], [-77.44979767340413, 34.73970561490398], [-77.44954724104464, 34.73962689514661], [-77.44941927087694, 34.73961431045214], [-77.44918944043826, 34.73959170855263], [-77.44863727988823, 34.739494221823584], [-77.44861063154566, 34.73937607872969], [-77.4485729406607, 34.73896576973405], [-77.44844085492456, 34.738683341011246], [-77.44839834404686, 34.73862528190096], [-77.4482208823112, 34.73850684237676], [-77.44793613781255, 34.73844754095335], [-77.44790484929607, 34.73844002491059], [-77.44758585920606, 34.73848558095199], [-77.4472346331078, 34.738498300479456], [-77.44711421186189, 34.738643987208945], [-77.44684248504444, 34.73892033006202], [-77.44683335047603, 34.738932880179625], [-77.44669944014339, 34.739410041608444], [-77.44673528521938, 34.73944189413736], [-77.44722738363342, 34.73972485464541], [-77.44745004932147, 34.73969156280302], [-77.4477384954069, 34.73966342264278], [-77.44791270538718, 34.73957226133302], [-77.44818421973201, 34.739643740938526], [-77.44833639611481, 34.73961978428359], [-77.4485573911647, 34.73956014364619], [-77.44859536050959, 34.739567585977866], [-77.44903000471407, 34.739776758543016], [-77.44913018718415, 34.739796565851734], [-77.44926662273184, 34.739916179311734], [-77.44947706689807, 34.74003661884477], [-77.44966639676842, 34.74015948983517], [-77.44967457351089, 34.74017740948682], [-77.44968243581272, 34.74019180299749], [-77.44972323936052, 34.74038031423075], [-77.44982240835887, 34.740520192080886], [-77.44991299403559, 34.740747553726976], [-77.4500673448814, 34.74099008318436], [-77.45014674282022, 34.74109643496986], [-77.45018599655597, 34.74120618316319], [-77.45024222289875, 34.741493887371654], [-77.45024588183763, 34.74150149176389], [-77.4504956304256, 34.74172618694278], [-77.45076295284954, 34.74196669012136], [-77.45092294695793, 34.74211179679912], [-77.45084772963493, 34.74255529762579], [-77.45067438219573, 34.74296227453941], [-77.4506624737282, 34.74304959524322], [-77.45067699816488, 34.743107298597884], [-77.4507096395847, 34.74320316917555], [-77.45072647483909, 34.743309866476956], [-77.45080120956726, 34.74337754806281], [-77.45088932949879, 34.74346511952721], [-77.45107358450991, 34.743614066578154], [-77.45124322501388, 34.743575258823725], [-77.45127466668791, 34.74375074181363], [-77.45149205894975, 34.74389832100038], [-77.45174207444116, 34.744067465290094], [-77.45185474970077, 34.74414201002769], [-77.4520137457369, 34.74423665570771], [-77.45213139334157, 34.744286073652766], [-77.45229962068241, 34.74435673755484], [-77.45245684464614, 34.74437757380811], [-77.45288491520331, 34.74455007476402], [-77.45307015330846, 34.74444943877231], [-77.45295670786737, 34.74430183515426], [-77.45246481242297, 34.74414692748203], [-77.45237874638819, 34.7440831487086], [-77.4521629710334, 34.74382646183915], [-77.45198618172944, 34.74351189162487], [-77.45197357000936, 34.74345907105108], [-77.45194574962103, 34.74336323971664], [-77.45164662101485, 34.74305473947542], [-77.45143074924444, 34.742926888518625], [-77.45135694041056, 34.74282354315859], [-77.4511034741827, 34.7426446161387], [-77.4512851475281, 34.74246455345174], [-77.45109544057314, 34.74203981081843]], [[-77.34189998686334, 34.68530400889216], [-77.34171284475715, 34.685252094080774], [-77.3416274636815, 34.685217959802], [-77.34129391771134, 34.68508386912577], [-77.34096941662028, 34.685431696515764], [-77.34151717674433, 34.68559765259005]], [[-77.34282253486836, 34.5381512378903], [-77.34295477660895, 34.53795119533091], [-77.34290356883324, 34.537848583388644], [-77.34292067561263, 34.53783369193683], [-77.34292159178068, 34.53783213270436], [-77.34292460855, 34.53777192136427], [-77.34292529057973, 34.53777106937102], [-77.3429746255599, 34.53773375088636], [-77.34300986004077, 34.53769845178284], [-77.34302563035035, 34.537675826739516], [-77.34306479078961, 34.53765344415808], [-77.34311323963105, 34.537569271345404], [-77.34312368892114, 34.53755966599796], [-77.34312652416062, 34.53755657679943], [-77.34321970750774, 34.53748045978928], [-77.34322699126037, 34.53745579777947], [-77.34330733230186, 34.53741083590017], [-77.34332335147101, 34.537406714400696], [-77.34332633601163, 34.5374036259842], [-77.34350925981033, 34.53737301391819], [-77.3435233874045, 34.53737023224004], [-77.34371079771478, 34.53722272406792], [-77.34372349056848, 34.53720460762438], [-77.34377358492881, 34.537129090369206], [-77.34382533224695, 34.537091490978796], [-77.34387218973808, 34.53705289199865], [-77.34392457949826, 34.53699623414571], [-77.34412030744282, 34.53692796801918], [-77.34429214443846, 34.53702432776283], [-77.34430334148267, 34.5370308235627], [-77.34431612086325, 34.53704034014012], [-77.3445097500576, 34.53723783822452], [-77.34457827383542, 34.53730549169544], [-77.34472179419296, 34.53745214823048], [-77.3445852937781, 34.53764840682402], [-77.34453466575779, 34.53772389242067], [-77.34438603056311, 34.53779980515975], [-77.34429667751758, 34.53788301326877], [-77.3442176208757, 34.53796622200839], [-77.34402415604798, 34.53804216257075], [-77.3438989493336, 34.538106817902765], [-77.34355931578322, 34.53814256485856], [-77.34350462537799, 34.53818304759713], [-77.34341835621115, 34.538183120044444], [-77.342978382253, 34.53819261790513]], [[-77.44477879172808, 34.73039029581868], [-77.44476633410252, 34.73050108887212], [-77.44480955155512, 34.73039484448075], [-77.4448105803304, 34.73038431883841], [-77.4448159221235, 34.73032966539955], [-77.4449000122345, 34.72944687217389], [-77.44425369544231, 34.72948696886269], [-77.4440652538358, 34.72956490187175], [-77.44388846201963, 34.729638017119605], [-77.44370975200694, 34.729721046654745], [-77.44352993864265, 34.72980002450187], [-77.44335346311632, 34.72987523337657], [-77.44319880051115, 34.730156803995456], [-77.4435717929129, 34.730197942610275], [-77.44377341314888, 34.73036343292428], [-77.44393123005663, 34.730455462085295], [-77.44412151634384, 34.73051387732446]], [[-77.35180632180032, 34.684191890076605], [-77.35192026937578, 34.68409780699855], [-77.35175336814322, 34.68414494183224], [-77.35152534311283, 34.68411220247076], [-77.3514037657475, 34.68410113873967], [-77.35120830288808, 34.68417341505025], [-77.35117378808897, 34.68408104332635], [-77.35103683377497, 34.684147948306126], [-77.35103287538246, 34.684189494329544], [-77.35115732524118, 34.68427705147852], [-77.35116369843499, 34.68428590314851], [-77.3511987209284, 34.684291477431834], [-77.35148681076186, 34.684244920620095], [-77.35179612988561, 34.684193350490965]], [[-77.3364637759114, 34.539100609047026], [-77.33641953858259, 34.53899902195269], [-77.33630843875585, 34.538907186136676], [-77.33626275619946, 34.538770020694024], [-77.33615434497105, 34.53868452859203], [-77.33627371423405, 34.53857022730109], [-77.33643387538294, 34.53838018306813], [-77.3365946228973, 34.53822965096442], [-77.3368307903732, 34.538192489830834], [-77.33694333842921, 34.53825515226587], [-77.3370257508269, 34.53824960614314], [-77.33708184607792, 34.538306326539036], [-77.33712345782692, 34.538360219876665], [-77.33721747812137, 34.53844634669305], [-77.3372644486029, 34.53849488915435], [-77.3372898649279, 34.53852122720605], [-77.33744087603, 34.53860275013289], [-77.33747524331471, 34.538658378601596], [-77.33747321383069, 34.538739675645814], [-77.33745345316835, 34.538834567389], [-77.33760033729692, 34.53886566129968], [-77.3376388706062, 34.538935627827435], [-77.33765128475439, 34.53895888309828], [-77.33766905927845, 34.53900113984385], [-77.33768443445851, 34.53907652426503], [-77.33766546037, 34.53915684496596], [-77.33767888769859, 34.539199730644704], [-77.33780516927365, 34.53931580655306], [-77.337639870505, 34.53945015954102], [-77.33758544116083, 34.53950903747286], [-77.33751286035145, 34.53946842593794], [-77.33733597382688, 34.539406107605586], [-77.33719458212053, 34.539435041164715], [-77.33687053973101, 34.539315984269926], [-77.33684049058985, 34.53929828350386], [-77.3368053204888, 34.53929210498375], [-77.33651529709503, 34.53912225504903]], [[-77.33546308146308, 34.53364278310704], [-77.33542793906499, 34.533609682143364], [-77.335366892011, 34.53360402138671], [-77.33501372554797, 34.53346258657105], [-77.33499543311835, 34.533454232173106], [-77.33497842531305, 34.53342811147156], [-77.33490437824867, 34.53347831097265], [-77.33449011742387, 34.53372730244777], [-77.33423469010042, 34.5338194291178], [-77.33435809895568, 34.533936389817484], [-77.3343710802636, 34.534044632567664], [-77.33450077976302, 34.53422931317973], [-77.33449663374655, 34.53431423788587], [-77.33458863040055, 34.53427208792423], [-77.3346091788944, 34.53425521115384], [-77.33496242649662, 34.5341181083745], [-77.33516565233705, 34.534056221146415], [-77.33566826141961, 34.53385809317006], [-77.33565853173063, 34.533799385210116]], [[-77.43462108511847, 34.7380046998609], [-77.43469068026786, 34.73779157866748], [-77.43493427042903, 34.737890883516215], [-77.43496259824609, 34.738057335210854], [-77.43503762742196, 34.738150252602026], [-77.43504180891526, 34.73836514675389], [-77.43496735629533, 34.73868473915388], [-77.43468517316683, 34.73875155771743], [-77.43459940555798, 34.738556167569676], [-77.43472806782846, 34.73815517585514]], [[-77.36348749414861, 34.773516281824506], [-77.36321624958343, 34.77360465249885], [-77.36305040980852, 34.77382741129152], [-77.3629817088285, 34.77389850506325], [-77.36320949748556, 34.774008391063354], [-77.36322783240331, 34.773984636061215], [-77.36329477442366, 34.77373308799988], [-77.36365418294743, 34.77358183116573], [-77.36365942430963, 34.77357644871562], [-77.36369291851439, 34.773448455900784]], [[-77.35793902336212, 34.54698701092543], [-77.35817545290121, 34.547022346396744], [-77.35820693888185, 34.54702563785089], [-77.3582194452794, 34.547027457279746], [-77.35846623540947, 34.547070786488774], [-77.35860906288536, 34.547157807623464], [-77.35864005440442, 34.54718062255485], [-77.35865408850069, 34.54719825362046], [-77.35882148618617, 34.54728469721676], [-77.35882973941757, 34.54729537395734], [-77.35886092504109, 34.54732796003734], [-77.35888096213658, 34.547349204422844], [-77.35888464585098, 34.54735758843232], [-77.35891106561688, 34.54740607576291], [-77.35888909098621, 34.54747491321231], [-77.35887884457674, 34.5475331271072], [-77.3588638181032, 34.54757773729999], [-77.35882655555778, 34.54766306785723], [-77.35878822458541, 34.54778932735864], [-77.35878806990459, 34.54779274076591], [-77.35877728728997, 34.547914985751504], [-77.35876509856739, 34.54802644526185], [-77.35876633263749, 34.54803897493024], [-77.35876475225965, 34.548051764270454], [-77.35880313974523, 34.5481560868927], [-77.35873877309469, 34.548262006531054], [-77.35871900531734, 34.54832776136201], [-77.3586926049247, 34.54841682623549], [-77.3586693739995, 34.548476610707276], [-77.35857534924683, 34.54863016258173], [-77.35855519214618, 34.54866942637375], [-77.35854788418892, 34.5486824875387], [-77.3585133189526, 34.548724793921764], [-77.3584186950574, 34.54885138481545], [-77.35832162686454, 34.54895988824201], [-77.35825201016277, 34.54901865573609], [-77.35818124271026, 34.549102512859406], [-77.35817712937767, 34.54910640827966], [-77.35817166904211, 34.549113533551974], [-77.35810765595456, 34.549196791662126], [-77.35807293794781, 34.549240518226405], [-77.35797044446873, 34.54937699112523], [-77.35796986205992, 34.54937777085201], [-77.35796971593511, 34.54937804856996], [-77.35796929276138, 34.54937855273281], [-77.35785939778955, 34.54951608695029], [-77.35782634177444, 34.54955666156084], [-77.35776809502046, 34.54959206773163], [-77.35763966634096, 34.54967013478643], [-77.35760403926666, 34.54969687251837], [-77.35743937615543, 34.54982138305182], [-77.35740647721823, 34.54984912085985], [-77.35736906932841, 34.54987188550477], [-77.35718832886798, 34.54996884537678], [-77.35697181969152, 34.55007408229187], [-77.35691280962124, 34.550105671234135], [-77.35663758660432, 34.55038560398028], [-77.35659337222138, 34.55043282821786], [-77.35658491516547, 34.55044287898101], [-77.35657057032111, 34.55045069350762], [-77.35618622042237, 34.55073626625963], [-77.3561769286626, 34.550741117989624], [-77.35617119546069, 34.550745381418906], [-77.35605013079794, 34.55087826929481], [-77.35601955772051, 34.55091292186914], [-77.35592703310748, 34.55101840171629], [-77.35587081626772, 34.55108892463629], [-77.35576831282852, 34.551192920806045], [-77.35548237675233, 34.551259754802416], [-77.35537313249465, 34.55130443906812], [-77.35532096653586, 34.55131813927718], [-77.35517538836113, 34.55136689188899], [-77.35516301930629, 34.55137320876488], [-77.35504630427374, 34.55143287403926], [-77.35497590878543, 34.55150498380591], [-77.35486236114849, 34.55159174917766], [-77.35473336531037, 34.55167987955541], [-77.35446148855118, 34.551893449983936], [-77.35426460983346, 34.55199217792724], [-77.35420611831658, 34.55201757154777], [-77.35417850656019, 34.552034569955396], [-77.35398757522732, 34.55215961181351], [-77.3539791849332, 34.55216563562834], [-77.35390770210493, 34.552209902641394], [-77.3537800682541, 34.55228774462376], [-77.35369782986595, 34.55231858323307], [-77.35345120615055, 34.552395383812424], [-77.35338447175907, 34.55241702937129], [-77.35326023181855, 34.5524584460398], [-77.35314847232692, 34.55249645870269], [-77.35298864090136, 34.55255646287153], [-77.35285506928338, 34.55260207337755], [-77.35279090752795, 34.55261822905349], [-77.3527000385794, 34.55264094619799], [-77.35269217371533, 34.55264332140065], [-77.35268020890959, 34.55264117909776], [-77.35259434983836, 34.552628792618336], [-77.35252513374115, 34.55260978470218], [-77.35245761309577, 34.5525830088388], [-77.3522842588994, 34.55252204228861], [-77.3522048637439, 34.55249192445639], [-77.3520201053313, 34.55243131194722], [-77.35187846478169, 34.5523356245801], [-77.35184786528937, 34.5523202702317], [-77.35181669089692, 34.55229795309338], [-77.35167042071961, 34.55221316608579], [-77.35159258630713, 34.55213194725905], [-77.35143187345275, 34.551958054070084], [-77.35140246788616, 34.55193317997726], [-77.35139320240634, 34.55191582132952], [-77.35135768221629, 34.551873459284565], [-77.35125950579354, 34.55169024134068], [-77.35120183259068, 34.55160226067496], [-77.35118343226591, 34.55157877918057], [-77.35115004642083, 34.55152404203079], [-77.35111255798992, 34.55146656854383], [-77.35105688149763, 34.551230326008856], [-77.3510566510957, 34.55122979328513], [-77.35105662163453, 34.55122940685214], [-77.35105605609925, 34.55122675353215], [-77.35101198380532, 34.550991400292375], [-77.35100576822644, 34.55095707221372], [-77.35096509480974, 34.55081593485396], [-77.35089488802194, 34.550763431004455], [-77.35081647092792, 34.55068702611583], [-77.35076199692251, 34.550660145714374], [-77.35069635485667, 34.55055812556392], [-77.35068899304561, 34.55054824152515], [-77.35068572324636, 34.55054459199372], [-77.35067947671094, 34.55052889577883], [-77.35060840783993, 34.550361729763736], [-77.35058299111054, 34.55031867548412], [-77.35053153504707, 34.5501785326105], [-77.35046888457622, 34.55009027585054], [-77.35044858548218, 34.54999993413955], [-77.35044259400962, 34.5499716489814], [-77.35043256718967, 34.54993299633976], [-77.3504151110895, 34.54985319357067], [-77.35040394272971, 34.549794875711854], [-77.35040687474229, 34.54979013324514], [-77.35043486796977, 34.54972793969293], [-77.35040443820446, 34.54967092541483], [-77.35052089936914, 34.54959314777315], [-77.3504467409111, 34.549443128181835], [-77.35100507698883, 34.54933751340805], [-77.35110025781479, 34.54930383261612], [-77.35112254220086, 34.549275225051844], [-77.3518182621976, 34.54920494488715], [-77.35188813095722, 34.54918879107432], [-77.35199548624644, 34.54920325169728], [-77.35225473990697, 34.549116045122865], [-77.35228164686376, 34.549149539601906], [-77.3523103125127, 34.549108069320795], [-77.35231696540818, 34.54908983080026], [-77.35242118426326, 34.548913640560905], [-77.35268417722683, 34.54871779142503], [-77.35301491821059, 34.54870579592607], [-77.35346996329665, 34.548693284806276], [-77.35355001139756, 34.5488600470905], [-77.3535532480328, 34.548911884600436], [-77.35357516645404, 34.54897841338042], [-77.35364443934931, 34.54902996232134], [-77.35370189244783, 34.54904007757665], [-77.35385419603827, 34.54905830516264], [-77.35389459951463, 34.549082037543656], [-77.35397348502913, 34.54909621650335], [-77.3540492840896, 34.54911139450756], [-77.35417455481267, 34.54911156674194], [-77.35424526672071, 34.54912551296106], [-77.35441555674802, 34.54913896203019], [-77.35444125565873, 34.54913935825498], [-77.35445469397519, 34.54914095643986], [-77.35463779133545, 34.54912290969689], [-77.35463794081309, 34.54912286192133], [-77.35481067312222, 34.54908284283184], [-77.35486394003738, 34.549072650516464], [-77.35503290204602, 34.54902050395007], [-77.35521074341929, 34.54905159346953], [-77.35522853170798, 34.54905000281208], [-77.35524915440129, 34.54904782304376], [-77.35532689680818, 34.549040762999326], [-77.35538678717941, 34.54901518132942], [-77.35541322503887, 34.549003468325225], [-77.3554262340482, 34.548989135614505], [-77.35547021919908, 34.54894196498778], [-77.35548973881052, 34.54891651055987], [-77.35552801751012, 34.54887243873546], [-77.35562766412762, 34.54876570490609], [-77.35564662838011, 34.54874447430998], [-77.35570925123407, 34.54867436738802], [-77.35577418812035, 34.54859217732832], [-77.35580127442812, 34.54857134656881], [-77.35582886124224, 34.548552387138685], [-77.35600943424052, 34.54844721331647], [-77.3560307807054, 34.548434643885344], [-77.35622677423531, 34.54832108368312], [-77.35626597832818, 34.54830071030798], [-77.35631335906089, 34.54826973347123], [-77.35649399108024, 34.548163280873645], [-77.35654279506521, 34.54804360432081], [-77.35647677553797, 34.54800138389413], [-77.35639276719441, 34.54786565473786], [-77.35633365924895, 34.547777164974605], [-77.35639935142078, 34.547669407258155], [-77.35647459054411, 34.547512052414774], [-77.35653427463963, 34.54743776165653], [-77.35664304992514, 34.54728856234483], [-77.35666934382512, 34.54723919100911], [-77.35676766479276, 34.54705457642902], [-77.35687512532942, 34.546964741151186], [-77.35704577572626, 34.54684688467185], [-77.35713914072855, 34.546868203728124], [-77.35732840945711, 34.54689947995266], [-77.35739314858229, 34.54691735651498], [-77.3574370376804, 34.546905363227], [-77.35750381751285, 34.54691602083664], [-77.35782804669851, 34.54697490304068]], [[-77.36452016974275, 34.54586840392076], [-77.36452728257915, 34.54587918342963], [-77.36453585449412, 34.545866723800565], [-77.36453771356125, 34.545861287866465], [-77.36453977982386, 34.54585356158548], [-77.36462261595938, 34.54560423304197], [-77.36453829839304, 34.54539661760938], [-77.36425299861827, 34.54565747189194], [-77.36444678520594, 34.54582339183401], [-77.36451740451118, 34.54586421316374]], [[-77.34533382088566, 34.54880126632004], [-77.34561300076439, 34.54889767585276], [-77.34569336956659, 34.54901194642357], [-77.34574065131571, 34.54905690141962], [-77.34590174879983, 34.54921838525157], [-77.3458688969668, 34.54936185041926], [-77.34582219745127, 34.54953480805703], [-77.34611544768156, 34.549658021774405], [-77.34637953853203, 34.54970880361072], [-77.34654022976763, 34.54981935002179], [-77.3467685083778, 34.54986715738587], [-77.3467809279276, 34.54987859807578], [-77.34679714585717, 34.54988417323687], [-77.34691315834473, 34.549958997599546], [-77.3469532103832, 34.549989607018695], [-77.34696197654782, 34.549990494159346], [-77.34704262666243, 34.55004263370119], [-77.34709534019663, 34.550086087750195], [-77.34711489058239, 34.55010863737756], [-77.34715515296006, 34.550126521633246], [-77.34721644908711, 34.55027315431738], [-77.34723832623934, 34.550310334123864], [-77.34738414281031, 34.5503876355167], [-77.34744089576441, 34.55046421288742], [-77.34746152378833, 34.55052303908977], [-77.34750001825783, 34.55054132120756], [-77.34753737383463, 34.55057808015327], [-77.34758083815746, 34.550628281243505], [-77.34760944322385, 34.550699887266674], [-77.34766895931747, 34.55073801168217], [-77.34772907985297, 34.55077806258499], [-77.3477651657106, 34.5508234260068], [-77.34778194806073, 34.55084416387915], [-77.347845137491, 34.55090932390448], [-77.34786270543093, 34.55095495381048], [-77.34786870018617, 34.55098644909579], [-77.34791987909716, 34.551017468445224], [-77.3480221803853, 34.551111684531854], [-77.34811331061907, 34.551142584384564], [-77.34812908535827, 34.551151480242474], [-77.34813954438317, 34.55115993928625], [-77.34814312737564, 34.5511785319417], [-77.3481815696244, 34.55123244954156], [-77.34822212957445, 34.551270466014216], [-77.34830502865606, 34.55134216107184], [-77.3483251077218, 34.551365207283155], [-77.34833271908386, 34.55137696309337], [-77.34835627736226, 34.55140645194297], [-77.34841833166497, 34.55148705412313], [-77.34844754263742, 34.55151393147814], [-77.34849616950797, 34.55156685401158], [-77.34853347568445, 34.55159289569527], [-77.3485999597391, 34.55163997176096], [-77.3486890152554, 34.55171751373753], [-77.34874998420979, 34.55176782250271], [-77.34879796160683, 34.55179965755287], [-77.34888180807482, 34.551870503187914], [-77.34890251499898, 34.551893777177455], [-77.34894454122936, 34.55194110522065], [-77.34896389647201, 34.55202060034149], [-77.34901240625271, 34.55205199241822], [-77.34907321351004, 34.5520838178358], [-77.34909826438593, 34.552107712200254], [-77.34910678018844, 34.55212244990493], [-77.34913039708708, 34.55214374047999], [-77.34913295355675, 34.55215698376442], [-77.34912419969513, 34.55218114841844], [-77.34912735535465, 34.55220638127615], [-77.34912009850588, 34.55224294374546], [-77.34912029518526, 34.55227501604807], [-77.34912836780059, 34.552364164161304], [-77.34912981250386, 34.552403839610704], [-77.34913130222878, 34.55244475306644], [-77.34913081353162, 34.552486222620225], [-77.34913058475384, 34.55250563540346], [-77.3491276127634, 34.55252696135485], [-77.3491193454784, 34.55254907805659], [-77.3490610835413, 34.55261097975774], [-77.34905389287717, 34.55261527988166], [-77.34903755766138, 34.55262205246073], [-77.34896184430022, 34.552657977560315], [-77.34891731598273, 34.55267301081396], [-77.34886291788992, 34.5526913761967], [-77.34875892864056, 34.55272648392146], [-77.34866532448831, 34.552746890448645], [-77.34861253900368, 34.55277308391786], [-77.34849599517216, 34.55280473446229], [-77.34846780441367, 34.55279920645296], [-77.34839584094077, 34.55275983001586], [-77.34827422697524, 34.55268023538301], [-77.34811172197958, 34.55263286524723], [-77.34797566957606, 34.552595006495885], [-77.34788387217124, 34.55258134502913], [-77.34756937332604, 34.55251383199597], [-77.34749323603401, 34.552494707196715], [-77.34747869363846, 34.55248829048584], [-77.34744628926839, 34.55248379310318], [-77.34722570502308, 34.55243833681698], [-77.34710293132622, 34.552393711309605], [-77.34699470410642, 34.55237174777295], [-77.34685244769307, 34.55232441678872], [-77.34671313467399, 34.5522706994138], [-77.34645414762375, 34.552297999846026], [-77.34632077715352, 34.552258868135624], [-77.34622382028704, 34.55223090092302], [-77.34618700513303, 34.55217533952623], [-77.34607548336808, 34.55210177241734], [-77.34593292401972, 34.55205159886485], [-77.34575752224697, 34.551992311054676], [-77.3456824180562, 34.551916439390105], [-77.34554297304267, 34.551935413369684], [-77.34533237294355, 34.55192196651646], [-77.34514977318622, 34.55196017688598], [-77.34499494383401, 34.55195383619276], [-77.34485813332029, 34.551876885124884], [-77.34476014631677, 34.55182999457875], [-77.3446356489017, 34.551742953683664], [-77.34454938911148, 34.551676482685046], [-77.34437511740778, 34.55150052615694], [-77.3443331192513, 34.55148912779725], [-77.34430502617718, 34.551466817810905], [-77.34424160350386, 34.55139111647343], [-77.34410943174176, 34.55125013646793], [-77.34466194438448, 34.55075766563075], [-77.3446907882774, 34.55067686280174], [-77.34471293106894, 34.55062693593691], [-77.34478783739242, 34.55062926486904], [-77.34486342692793, 34.5506052378277], [-77.34531960467088, 34.55042540974182], [-77.34534608287133, 34.55024008842496], [-77.34533423859125, 34.55009465167304], [-77.34537032878711, 34.54995331432097], [-77.34537538105938, 34.549599093223264], [-77.34531876661465, 34.54929535401676], [-77.34515282849054, 34.54914147279381], [-77.34502548707052, 34.54903453776105], [-77.34484561637905, 34.54870438048767], [-77.34484505592059, 34.54869611344342], [-77.34523134507323, 34.54842239130991], [-77.34534271748146, 34.5486245144373]], [[-77.33661046844603, 34.65218692012311], [-77.33658548676945, 34.65217653293856], [-77.3365747491335, 34.65217525869412], [-77.33652239806742, 34.652139479981166], [-77.3364150028513, 34.652213740155176], [-77.33611626509366, 34.65242760376597], [-77.33633021838855, 34.65268181856191], [-77.33642715591765, 34.65271784154227], [-77.33669583693472, 34.652777889776715], [-77.33693095079394, 34.65264072845383], [-77.33724696246396, 34.65294357320931], [-77.33734228216159, 34.65297454870702], [-77.33737885426379, 34.65299020611069], [-77.33745807344886, 34.65301298340334], [-77.33768706940494, 34.652930673733174], [-77.33784550564475, 34.65312647522555], [-77.33801309985323, 34.65319748635555], [-77.33790807784197, 34.65300261390727], [-77.3377185713465, 34.65287885944294], [-77.3376719128845, 34.652855247967025], [-77.33740172119809, 34.65285689111725], [-77.33733713453523, 34.652782584640505], [-77.33700990722754, 34.652484437799814]], [[-77.26010129831559, 34.59925240119767], [-77.26021214355293, 34.599267597074444], [-77.26022263125577, 34.59926976585356], [-77.26025801341935, 34.59926472875547], [-77.26024527264393, 34.59922501882597]], [[-77.32046768452778, 34.54444265849517], [-77.32058893700165, 34.544466780288005], [-77.32115080888455, 34.5444086586004], [-77.32137590005375, 34.54439128060336], [-77.32165099594773, 34.54436788812542], [-77.32216622275537, 34.54417173256654], [-77.32257933892517, 34.54429354696177], [-77.32294980700368, 34.54424086640723], [-77.3231918885122, 34.544312908641416], [-77.32331833649587, 34.54444674158145], [-77.32332930557985, 34.54469159143237], [-77.32336506372341, 34.544929653318604], [-77.32319576914809, 34.54512014172144], [-77.32292699021419, 34.545219026125984], [-77.32261851736877, 34.545335897580884], [-77.32247911679866, 34.54533455006282], [-77.32213792257751, 34.54538447673886], [-77.32203968846181, 34.545425561501595], [-77.3218540371916, 34.5454604775776], [-77.32174275760468, 34.54549418696813], [-77.32168249263643, 34.545454383895944], [-77.32143098887454, 34.545452360789454], [-77.32135137277206, 34.54544192317739], [-77.32132547648777, 34.5454515120002], [-77.32112213327477, 34.54539554249406], [-77.3209616237743, 34.54531961785333], [-77.3207346700355, 34.54530758986393], [-77.32071811423317, 34.545218471562265], [-77.3205719532114, 34.545193998977425], [-77.32044915537145, 34.545273190710404], [-77.32036029793561, 34.5452477597832], [-77.32026139285257, 34.54518175286539], [-77.32032273588888, 34.54512195923061], [-77.32021475828209, 34.545116520902155], [-77.32018092937889, 34.54512635954918], [-77.32000085445569, 34.54504579628227], [-77.31999401604422, 34.54504215112687], [-77.31998671244558, 34.545037115974246], [-77.31993560361241, 34.5450230966721], [-77.31979183410665, 34.54497619826835], [-77.31972593362389, 34.54500357995833], [-77.31965877504416, 34.54497253390748], [-77.31966638283339, 34.544891987435605], [-77.31979672493334, 34.54476686515165], [-77.31981920028088, 34.54471797777526], [-77.31984679210707, 34.54470071126036], [-77.31998239718527, 34.54454902254708]], [[-77.247825064529, 34.591413699434625], [-77.24819369216117, 34.591384414374595], [-77.248174257542, 34.59146667208879], [-77.24815875709753, 34.59147786070853], [-77.24812935995519, 34.591511523899165], [-77.24775532672824, 34.59145730818454], [-77.24775781825628, 34.5916819511245], [-77.24788583857634, 34.59175834126281], [-77.24779672476433, 34.59182280456448], [-77.2477213497351, 34.5919147521392], [-77.24771075302043, 34.59192215466068], [-77.24755228123765, 34.59193403885949], [-77.2474268484256, 34.5920666350923], [-77.2471640028547, 34.59202856321639], [-77.24717245645687, 34.59173635278714], [-77.24713066745642, 34.591632546034326], [-77.24725428869749, 34.591574670991214], [-77.24771603907227, 34.591422360752794]], [[-77.39057901169613, 34.62712816089288], [-77.39061560037672, 34.62684891692782], [-77.39075481946654, 34.62644293509752], [-77.390759487148, 34.62635993283463], [-77.390718955332, 34.62615229701801], [-77.39070120939543, 34.62600656693029], [-77.3906850866006, 34.625989763599904], [-77.39052186245337, 34.62590906167177], [-77.39043999846774, 34.625900974237524], [-77.39032474628961, 34.62588958829356], [-77.39021078986346, 34.62593541822976], [-77.39022944804678, 34.62605544739919], [-77.39023656659953, 34.62614935430267], [-77.39024652883717, 34.626265269295416], [-77.39023818101215, 34.62638559014816], [-77.39023165156395, 34.626479697965074], [-77.39021051170526, 34.62678439607685], [-77.39019296228089, 34.62690984316164], [-77.39016511358078, 34.62708562896736], [-77.3901678692389, 34.62733802881215], [-77.39024450501016, 34.62766534428086], [-77.39027033699485, 34.627747825846996], [-77.39028682175203, 34.62778606859356], [-77.39042427161989, 34.62783304203773], [-77.39043642092018, 34.62772388388118], [-77.39048443462836, 34.627544797085235], [-77.39057633218037, 34.62727914660396]], [[-77.39186770647053, 34.520917116317776], [-77.3920295479946, 34.52084242936636], [-77.39194182229129, 34.52075973071699], [-77.39178927400322, 34.52074592223638], [-77.39157576336774, 34.520554131187026], [-77.39118825489302, 34.52058665751492], [-77.39100524559849, 34.520705429460314], [-77.39034199952033, 34.52108593397875], [-77.39099223450833, 34.52128314324747], [-77.39149773890968, 34.52109611778967], [-77.39178404707917, 34.52097810302554]], [[-77.34128962584052, 34.75912703404781], [-77.34109421886768, 34.75918385446816], [-77.34091118847296, 34.759182593438304], [-77.34074659650179, 34.759284290210374], [-77.34070487260371, 34.75930537342903], [-77.34053927639022, 34.7594197875479], [-77.34049554665211, 34.75950215354656], [-77.34060683261555, 34.75956250397992], [-77.34066344655875, 34.759635305209244], [-77.34076052850367, 34.759692591114145], [-77.3409542795204, 34.759665281287226], [-77.3413373849438, 34.75964324697824], [-77.34156430926927, 34.75962765200377], [-77.34202118331415, 34.75990584804051], [-77.3420799055669, 34.75991490959815], [-77.34218265368415, 34.75991814364609], [-77.3425858509423, 34.75986587102758], [-77.34270955043242, 34.75980979368504], [-77.34311548975367, 34.759705864008424], [-77.34325016618419, 34.75958718813338], [-77.34339235398426, 34.759521770201424], [-77.3435511577149, 34.75915873917343], [-77.34368139101356, 34.758692583560034], [-77.34374185840329, 34.758645208902365], [-77.34439490096477, 34.758133565475525], [-77.34443914544107, 34.758087240562666], [-77.34446032163319, 34.75805929434487], [-77.34452705720923, 34.75797913851929], [-77.34458143724935, 34.75789414109612], [-77.34459295353861, 34.75779741475565], [-77.34459154378943, 34.757583946510216], [-77.3445928750986, 34.75755373716431], [-77.34459072350805, 34.757459773050236], [-77.34446195459243, 34.75757169355151], [-77.34442305639162, 34.75766492778148], [-77.34427966043486, 34.75784038445398], [-77.34430933505273, 34.757972248701606], [-77.34423635439207, 34.758090012035304], [-77.3436914272299, 34.758492764608164], [-77.34357823255998, 34.758601200531714], [-77.3429384774061, 34.75902216287659], [-77.3426359567032, 34.75864483240832], [-77.34246496946767, 34.758590117135356], [-77.34231079063147, 34.75850067287775], [-77.34219652935182, 34.75848311487847], [-77.34205016292859, 34.75850397591096], [-77.34203370747521, 34.758509573573036], [-77.34186676685655, 34.75858708829533], [-77.34171266200138, 34.75867980420297], [-77.34162907995402, 34.75878943524324], [-77.34127461697317, 34.75898356012593]], [[-77.44087905328428, 34.72995580979068], [-77.44043223479923, 34.729969673917914], [-77.4404252082124, 34.72997015278383], [-77.43998411128801, 34.729989250079974], [-77.43974661581723, 34.73012346103041], [-77.4391620513363, 34.730141739795506], [-77.43906916673207, 34.73024900352149], [-77.43882449224996, 34.730528891558336], [-77.4388936369979, 34.73061401536929], [-77.43894137020908, 34.73069067737427], [-77.4391338591011, 34.730960187407874], [-77.43935716937605, 34.731469443395724], [-77.4399637909579, 34.73145135902998], [-77.440088542055, 34.73145465393226], [-77.44067621096303, 34.731342343457385], [-77.44079045979585, 34.73130637399538], [-77.44117129252109, 34.731348893179266], [-77.44162054172568, 34.73116696341328], [-77.44183544528276, 34.730725719729335], [-77.44190199164163, 34.730486148423836], [-77.44164248379998, 34.7302185124739], [-77.44126694776674, 34.73007012062011], [-77.44106019187811, 34.730015173200094]], [[-77.33377579103663, 34.577291597179524], [-77.3335931366127, 34.57731177284028], [-77.33358810055823, 34.577313151055975], [-77.33353309271142, 34.5773264826244], [-77.33358440291715, 34.5773285027992], [-77.33359312501267, 34.577325840336414]], [[-77.45021193337442, 34.697356804365114], [-77.45005803713516, 34.69755904006853], [-77.4497691198319, 34.69768698089473], [-77.44945374045633, 34.69761313604987], [-77.44917828087057, 34.69751397822415], [-77.44890528958008, 34.6974184039901], [-77.44862633082998, 34.69720647868735], [-77.44839743855576, 34.69697868171011], [-77.4482563849094, 34.69679647713977], [-77.44855005986838, 34.69613665670952], [-77.44869402814004, 34.69596430915098], [-77.44902212956957, 34.695837537748105], [-77.44925334673403, 34.695790638626974], [-77.44971975067664, 34.695641155423175], [-77.45017717448347, 34.695804954490704], [-77.45031404567405, 34.6958021603549], [-77.45035721121238, 34.69591935547747], [-77.4503875431553, 34.69599716451173], [-77.45036549354661, 34.696112633959274], [-77.45038445188428, 34.69655509419969], [-77.45035145352341, 34.69681461196308], [-77.45029074672937, 34.69708135642372]], [[-77.37899149053976, 34.73014822034237], [-77.3788213656778, 34.73016868929446], [-77.37876760522295, 34.73016529773626], [-77.37811354602131, 34.73051400021554], [-77.37892602411553, 34.730424460411925]], [[-77.39686649159249, 34.58900986261334], [-77.39689562813426, 34.589148609063], [-77.3970283036422, 34.58918277154905], [-77.39707290556005, 34.589028131641534], [-77.39729382619367, 34.588948215388875], [-77.39736375499099, 34.5888749620509], [-77.39728733651916, 34.58867009150576], [-77.39709330073305, 34.58862256734965], [-77.39702833568549, 34.588607088724885], [-77.39699956817569, 34.58859708851193], [-77.39690613400968, 34.58857957156038], [-77.39683130870911, 34.58856498493853], [-77.3966879940188, 34.588553166622056], [-77.39663428030872, 34.588549470289614], [-77.39655193655466, 34.58854194658974], [-77.39653427302767, 34.58863321513477], [-77.39656971872488, 34.58869765260996], [-77.39663426587103, 34.588787923182295], [-77.39671015576972, 34.58895063857041]], [[-77.30983387545325, 34.54736280177081], [-77.31030833931067, 34.54757427937282], [-77.31057505577627, 34.54725638489431], [-77.31037304877087, 34.54682515397725], [-77.3103808503717, 34.54676133778713], [-77.31025507439301, 34.54676769004808], [-77.31019152535023, 34.54690447592888]], [[-77.4503750880115, 34.62321025966956], [-77.45040783105449, 34.62295507185902], [-77.45047835020875, 34.62283399374088], [-77.45024571903673, 34.62245405281813], [-77.45020112001555, 34.62227550065202], [-77.44988935903038, 34.62207823349904], [-77.44978285359485, 34.622105567416135], [-77.44933434881432, 34.62197154896842], [-77.44915997492605, 34.62195270764252], [-77.4489793693273, 34.62188537113582], [-77.44875740328385, 34.62178475351908], [-77.44872739085305, 34.621957222117956], [-77.44867060701063, 34.62220156004386], [-77.44854140636457, 34.62270892538166], [-77.44857669783218, 34.622738704607116], [-77.44853334027029, 34.62277293604049], [-77.44851338187601, 34.62281376574919], [-77.44838152838172, 34.623339222076936], [-77.44829472053549, 34.62355761974297], [-77.44831266563926, 34.62390290498491], [-77.44848025889613, 34.62424322895568], [-77.4488762203068, 34.62475108761143], [-77.44893678891924, 34.62485156871854], [-77.4490152557936, 34.62487269393695], [-77.4490878174853, 34.62491147622195], [-77.44924107114086, 34.624878727974576], [-77.44959342000547, 34.62483767272116], [-77.44988159198799, 34.624582164871384], [-77.44992051448521, 34.624497026216304], [-77.44999489523477, 34.624383646047235], [-77.450223251478, 34.62398353790865]], [[-77.42392598343406, 34.522801505865445], [-77.42409382075567, 34.52295980593396], [-77.42410353447517, 34.52306529238673], [-77.42411804123162, 34.52318834993139], [-77.42419161844477, 34.523368700215855], [-77.42451375919329, 34.5233806624673], [-77.4245426988588, 34.523102595161234], [-77.42456140109626, 34.52299909784641], [-77.42457443763205, 34.52291361176198], [-77.42457806177438, 34.52259276891915], [-77.42432299906895, 34.522543876263065], [-77.42428788584644, 34.52232968982006], [-77.42361287673438, 34.522446301736466], [-77.4238375238954, 34.52267104792055]], [[-77.4575293876773, 34.598002505269946], [-77.45752609961325, 34.59803049416885], [-77.4580323671486, 34.59806033333462], [-77.45823641895917, 34.59805219638323], [-77.45837460223953, 34.59803391676286], [-77.4584593829536, 34.59777948928028], [-77.45846254519722, 34.5977633259457], [-77.4584535721537, 34.597751858398915], [-77.45833195240323, 34.59723483402564], [-77.45829189566881, 34.59707591328617], [-77.45829131647446, 34.59707364511327], [-77.45829634475609, 34.59706444535138], [-77.45848084586717, 34.59652264671101], [-77.45863724682263, 34.596430203367305], [-77.45867724967486, 34.59622500144883], [-77.45868770582261, 34.59597564753028], [-77.45891597352417, 34.59578762335638], [-77.45895627176043, 34.595759927481566], [-77.45897385702783, 34.59573994473392], [-77.45902407728687, 34.59557214609889], [-77.45901324589101, 34.595470173953586], [-77.45897340650406, 34.59540196957186], [-77.45893529921173, 34.595368462145174], [-77.45886367189757, 34.59533758971265], [-77.45879879298731, 34.59530681397864], [-77.45870055022084, 34.59529518623991], [-77.45863355479727, 34.59528030900715], [-77.45844575064817, 34.5952716129363], [-77.45833256001643, 34.595317584295394], [-77.45816005179881, 34.59540223850926], [-77.45784391421054, 34.5954526548471], [-77.45776816640539, 34.595424337886], [-77.45736330197917, 34.59551224538233], [-77.4573382873782, 34.595525717094596], [-77.45731466129831, 34.59552180259684], [-77.45713085216565, 34.595585755598925], [-77.45709451970473, 34.595595283168294], [-77.4570353689219, 34.59567795627482], [-77.4570506920546, 34.59571255253938], [-77.45705945995098, 34.595763399402514], [-77.45705717276343, 34.595836736357725], [-77.45720952605953, 34.59590521818612], [-77.45723942035295, 34.59608827925169], [-77.45739777149066, 34.59633459264956], [-77.4574933483371, 34.59656277501181], [-77.45760008096455, 34.5968338539217], [-77.45763178942734, 34.59696281212269], [-77.45828316176716, 34.59707597168746], [-77.45772263575891, 34.59749611405364]], [[-77.3039145484741, 34.55357985075134], [-77.30389483863055, 34.55360109928521], [-77.30388814669607, 34.553604378703945], [-77.30388437709135, 34.55360650851371], [-77.30369634231809, 34.55375940339455], [-77.30364721878026, 34.55378192335392], [-77.30348945203974, 34.553703186516], [-77.30313436004698, 34.5537102379933], [-77.30349431099677, 34.55349690973502], [-77.30375254465095, 34.553538324746256], [-77.30388550045892, 34.55355880883759]], [[-77.31852605619105, 34.64300912962548], [-77.31867711225847, 34.64283061799823], [-77.31832581979307, 34.64260788627028], [-77.31810329332933, 34.6429092715151], [-77.31808638211528, 34.642932175729406], [-77.31808631086932, 34.6430096455003], [-77.31808400305171, 34.64333390149879], [-77.31820633590272, 34.6436077539651], [-77.31826130678917, 34.64342927148726], [-77.31833592715594, 34.64345588898669], [-77.31840991555744, 34.64328922917733], [-77.31842713361837, 34.64325044529319], [-77.31844789457064, 34.643216204318705], [-77.31853593303356, 34.64306096281966]], [[-77.41889451545006, 34.56868270339831], [-77.41895882571714, 34.568768100538975], [-77.41903686007535, 34.56876721831997], [-77.41907140784468, 34.56863047358923], [-77.41902921359736, 34.56861493103578], [-77.41894387821073, 34.56857403691934], [-77.41883640489164, 34.56858017940246], [-77.41887764858949, 34.568654999857166]], [[-77.33978110458132, 34.68333183578362], [-77.34041219386742, 34.68307127248684], [-77.33986309128312, 34.68304958890981], [-77.33971151591808, 34.68304225182922], [-77.33926606899257, 34.683193292166024], [-77.33922276602009, 34.68319340539464], [-77.33917950241616, 34.683208820578194], [-77.33869938916013, 34.68323517951437], [-77.33859831186774, 34.6832825750646], [-77.33843304045566, 34.68334281291787], [-77.3381789369213, 34.68359823715269], [-77.33789755213476, 34.68363440335038], [-77.33785364979511, 34.68366598684528], [-77.33787736384966, 34.683703897211245], [-77.33814221343985, 34.68366389483208], [-77.33823171792464, 34.683645045194005], [-77.33854087153337, 34.68348030728956], [-77.33910157347091, 34.68331986377136], [-77.33924918328418, 34.68327061496038]], [[-77.31392369428745, 34.54738756213129], [-77.31400195400943, 34.547401450655215], [-77.31394596943048, 34.54744740403146], [-77.31385766063374, 34.547510550444656], [-77.3138439151912, 34.547488033840146], [-77.31379749151547, 34.54740568591945], [-77.31384836841606, 34.54729800153668]], [[-77.3474515464295, 34.656336092564274], [-77.34743814350577, 34.65652531654262], [-77.34744093420768, 34.65660833632934], [-77.34741025833043, 34.656701354167396], [-77.34737161625357, 34.65692868172145], [-77.34735226700973, 34.657042510301466], [-77.34734714539228, 34.65707264028928], [-77.34736155864714, 34.65725110749778], [-77.34736151785621, 34.657252240207654], [-77.34744811912242, 34.657287740141335], [-77.34747472874427, 34.65731411701252], [-77.34751822360482, 34.65733622476036], [-77.3475402922379, 34.6573480315777], [-77.34761369975399, 34.65732604242261], [-77.34762036332516, 34.657327634698014], [-77.34768326931348, 34.65726288145199], [-77.34770962720953, 34.65724414763442], [-77.3477994578586, 34.65704451234693], [-77.34786761198674, 34.65697175325523], [-77.34793974103953, 34.65679172624681], [-77.34803801208515, 34.65663850168169], [-77.34832519501872, 34.656491466084326], [-77.34832804495201, 34.65648850260315], [-77.34832917025217, 34.65648799613603], [-77.34833731559544, 34.65648526040604], [-77.34832851391715, 34.65648489467877], [-77.34832747744196, 34.65648568043072], [-77.3483256681576, 34.65648472765121], [-77.34800413283487, 34.65647001994047], [-77.34786985845741, 34.65624469583476], [-77.34770573948111, 34.65623973963922], [-77.34763976898265, 34.656250364300476], [-77.34753551997763, 34.6563325154468]], [[-77.25355229703, 34.58669766131641], [-77.25309364462973, 34.58691737358908], [-77.25328395237389, 34.587165540749545], [-77.25328168537763, 34.58716785152075], [-77.2532803151358, 34.58716924821533], [-77.25327475746775, 34.58717491314276], [-77.25313655427274, 34.58727426054374], [-77.2531411466518, 34.58731086152426], [-77.25310690981648, 34.587343660980295], [-77.25303757048584, 34.58738430296833], [-77.2529372014132, 34.58747907414883], [-77.25291219641429, 34.58749912103972], [-77.25270173967846, 34.58759353246303], [-77.25255596763834, 34.58776235985927], [-77.25236307518517, 34.587667995952465], [-77.25228073385334, 34.58779605434197], [-77.25241870939985, 34.58785690886585], [-77.25228468588138, 34.587926926065464], [-77.25224280562404, 34.58802874025831], [-77.25217009784359, 34.588108391942676], [-77.25210998107434, 34.588100184877916], [-77.25210846268861, 34.58815677007652], [-77.25195841426341, 34.58824201863833], [-77.25181621391908, 34.58844989104595], [-77.25179041803294, 34.588473252051706], [-77.25176205125265, 34.58849823981934], [-77.25158218613089, 34.588616690098014], [-77.25155875600205, 34.58868189226164], [-77.25148211669398, 34.58875867899746], [-77.25142650861783, 34.58880687525736], [-77.25128343954077, 34.58889588408962], [-77.25116998434582, 34.58905924127153], [-77.25111033408565, 34.58911792478756], [-77.2510773803649, 34.5891536476776], [-77.2509344903534, 34.589300570003196], [-77.25090214645647, 34.58932643894065], [-77.25089590101234, 34.589336710779165], [-77.250871668583, 34.58935462956287], [-77.25071320310003, 34.589487035930674], [-77.25055720584419, 34.589545710188325], [-77.25029642757144, 34.58972842062058], [-77.25012586635387, 34.58962192464654], [-77.24991083328666, 34.58965738924004], [-77.24979083685497, 34.58957558465549], [-77.24985010892769, 34.58937663534718], [-77.2496483484315, 34.589002783791514], [-77.24975108885295, 34.58885567389188], [-77.25001802246746, 34.58821133876317], [-77.25021884092294, 34.588105023762616], [-77.25082276594829, 34.587855404117036], [-77.2511159628375, 34.587873323922274], [-77.25169858823595, 34.587790664012644], [-77.25175913142955, 34.58778810650307], [-77.25184527551701, 34.58776176455648], [-77.25186257042336, 34.58769773688512], [-77.25213296882829, 34.587463318228785], [-77.2521615897523, 34.58731532746022], [-77.2521818024038, 34.587210812151746], [-77.25225581960217, 34.58691528008683], [-77.25229524192949, 34.58685450716384], [-77.2525619583438, 34.58653027721955], [-77.25319625880431, 34.58649702993576]], [[-77.33986217302834, 34.68509095183962], [-77.33986582712734, 34.685096697987994], [-77.33987120906563, 34.68509896490256], [-77.34047467902842, 34.68506531856631], [-77.34059606985404, 34.684995548244686], [-77.34052033898247, 34.68498723015497], [-77.34049709978999, 34.68498813222304], [-77.33986965833499, 34.68509375005208]], [[-77.34787794597574, 34.73687063829847], [-77.34785798416438, 34.7368611494778], [-77.34774283605421, 34.7368203172003], [-77.34772072368217, 34.73679953352869], [-77.34765749954596, 34.736785300332684], [-77.34760595162494, 34.73677610438427], [-77.34744839092988, 34.73681190089668], [-77.34743645749487, 34.73680680270354], [-77.34744206950533, 34.736816762890705], [-77.3475048000158, 34.73692809635742], [-77.34754266321369, 34.73699394231303], [-77.34760394577506, 34.73708644355753], [-77.34764768378423, 34.737152181298306], [-77.34775102514757, 34.73730750209029], [-77.34811038495174, 34.737088694909794], [-77.3480817485401, 34.73705941142127], [-77.34788294075821, 34.73687185949861]], [[-77.34391712279228, 34.624176200833816], [-77.34379783083583, 34.62411944015844], [-77.34354468318725, 34.62399869732324], [-77.34303017055004, 34.623760838018676], [-77.34287046071665, 34.62365969149122], [-77.34246523300683, 34.62353155052818], [-77.34233781654137, 34.62350091974603], [-77.34232301604767, 34.623551076461354], [-77.3422913376004, 34.623658430310556], [-77.34220026392683, 34.62398992784208], [-77.34217465549352, 34.62405385085269], [-77.3421444818041, 34.624131709211376], [-77.34203041359882, 34.62443524514336], [-77.34225983626565, 34.62470586497844], [-77.34232957882935, 34.62473083104696], [-77.34248399621362, 34.62467633799122], [-77.34256599288004, 34.62463661456729], [-77.34265796168741, 34.62450516433657], [-77.34284798004438, 34.62444707226562], [-77.34306182000654, 34.62442887583626], [-77.34316064273175, 34.624410208186475], [-77.34319635881295, 34.624340675355676], [-77.34374955260624, 34.624215052147136], [-77.34376169717319, 34.62421569237075], [-77.34377798312724, 34.62421655087687]], [[-77.40583849937606, 34.67164669550057], [-77.4057467186753, 34.67155400135218], [-77.40568822934671, 34.67148621702813], [-77.40549058651392, 34.67134886436941], [-77.40548767107013, 34.67134671738812], [-77.40548660554732, 34.67134593924675], [-77.40547857604676, 34.67134466024339], [-77.40548342757685, 34.671348487654015], [-77.40546844865342, 34.671408633364415], [-77.4054206595368, 34.67159783979834], [-77.40541960721654, 34.67160358612364], [-77.40553032379708, 34.671748089502316], [-77.40555398031037, 34.67176538935621], [-77.40566251300599, 34.67184475851472], [-77.40589343529938, 34.67201362922071]], [[-77.34148376006445, 34.55054566109069], [-77.34125623212341, 34.55054248453951], [-77.34113487702447, 34.55052977679893], [-77.34086302524764, 34.55056773009286], [-77.34075899756851, 34.550572780702744], [-77.34066631438552, 34.550584995413274], [-77.34061301426838, 34.55052898463282], [-77.34053341036444, 34.5505020912973], [-77.34047248025563, 34.55047779621436], [-77.34028661118714, 34.55045352186104], [-77.34028412862834, 34.55044932583824], [-77.34008771000977, 34.55035972019329], [-77.3400847996859, 34.55035877248727], [-77.3401092074163, 34.550125026342855], [-77.34013079669414, 34.55010870508612], [-77.34021551699561, 34.54992837218512], [-77.34040619827587, 34.54982427588833], [-77.34065262296109, 34.54964432973163], [-77.34088601380765, 34.5495729460697], [-77.3410575767963, 34.54962288871561], [-77.34138932883982, 34.54968286847386], [-77.34153963482316, 34.55007606302368], [-77.34156894948671, 34.55014666936426], [-77.34155427936733, 34.550212505113414]], [[-77.3385429255936, 34.549027187070415], [-77.33865304162669, 34.549028466636074], [-77.33865392553804, 34.549097021207544], [-77.33894763869199, 34.54928828940396], [-77.33894799265799, 34.549311410391155], [-77.338928117284, 34.549348172716435], [-77.33884287746378, 34.549508645847894], [-77.33855835474368, 34.54958276485474], [-77.33853013015727, 34.54958020579224], [-77.33826261035111, 34.549398115494135], [-77.33835979784644, 34.54925029164063], [-77.33839452788878, 34.54913432629579]], [[-77.3951101113231, 34.51268915134271], [-77.39505806279338, 34.51260431339888], [-77.39488007789183, 34.51259634063187], [-77.39447942670496, 34.512559792329455], [-77.39457681189202, 34.512301960314275], [-77.39502631762107, 34.51214546569981], [-77.39511790498011, 34.512342400941215], [-77.39533890972866, 34.51239154015988], [-77.39536996099079, 34.51252563101729], [-77.39527210907929, 34.512640136811385]], [[-77.26972721800823, 34.57881456784505], [-77.26974941588499, 34.57880096437133], [-77.26974428673428, 34.57878081815967], [-77.2697157221555, 34.578798315668294]], [[-77.33839319914917, 34.762292637834086], [-77.33837705462011, 34.76229175404349], [-77.33809809499364, 34.76227731716344], [-77.3378790543247, 34.76237337037248], [-77.33804399860679, 34.76246339296788], [-77.33834452198573, 34.76233834509522], [-77.338387009729, 34.76231392795209], [-77.33844770538465, 34.76229541018985]], [[-77.39939135775818, 34.5937417777051], [-77.39939149134766, 34.59374046799204], [-77.39919551770568, 34.59360794605562], [-77.39913806400907, 34.59362664218201], [-77.39899847484583, 34.593672066265505], [-77.39861028442202, 34.593853172821], [-77.3986069810395, 34.59385644491677], [-77.39872306702702, 34.59413360262561], [-77.39877947390387, 34.594253337582444], [-77.39880141445472, 34.594296252989025], [-77.39885459368949, 34.594397490086145], [-77.3989728660668, 34.59462244958607], [-77.39898412166696, 34.59464838674305], [-77.39899844626328, 34.59468493011891], [-77.39902170847893, 34.594668025353734], [-77.39901916020044, 34.59464333175544], [-77.39922883474928, 34.59443671288149], [-77.3992312781768, 34.594361894453726], [-77.39926267635263, 34.59418362604322], [-77.3992688573023, 34.59404947356384]], [[-77.21160972401933, 34.621589146418536], [-77.2118259519564, 34.62156400296068], [-77.2119537155425, 34.62154914599097], [-77.21181202144572, 34.62160513414955], [-77.21174196295377, 34.62181198699633], [-77.21171862152414, 34.62183343692602], [-77.21170625950037, 34.62184521302207], [-77.2116600700009, 34.62189132025162], [-77.21152756336653, 34.62193617963086], [-77.21157959808832, 34.62196452723005], [-77.21152789526951, 34.62201530036432], [-77.21141479624009, 34.62204510961348], [-77.21135620650291, 34.62213988335003], [-77.21132334082503, 34.62216208385598], [-77.21122281126327, 34.62218975648721], [-77.21124284940714, 34.622090461814366], [-77.21125455722529, 34.622032445508715], [-77.21126290121482, 34.62199109787063], [-77.21129910082065, 34.62181171696522], [-77.21131766849545, 34.62180174907914], [-77.21144058576836, 34.62160881416197]], [[-77.40307280303807, 34.509944523054926], [-77.40301000316364, 34.51039786949806], [-77.40239152953066, 34.51004290232215], [-77.40302106344609, 34.50990372811366]], [[-77.2590523546049, 34.58491992333676], [-77.25926804524039, 34.58504666546602], [-77.25895357547805, 34.58511516626842], [-77.2589157080182, 34.58505666239032], [-77.25894939439294, 34.58502159135924], [-77.25895711809477, 34.58498828937684]], [[-77.3500214765716, 34.69028939072959], [-77.35002095633077, 34.690268459411456], [-77.35008744047286, 34.69009527275385], [-77.35006610028216, 34.69025504985718], [-77.35006507663662, 34.6903075740904]], [[-77.43659554879677, 34.734173817646536], [-77.43620418534564, 34.73396815542386], [-77.43626244272184, 34.73362967918174], [-77.43645509918449, 34.73361420245468], [-77.43670362379179, 34.733602662429284], [-77.43698383108776, 34.73364287523175], [-77.43691889634114, 34.73377626811715], [-77.43695111757614, 34.73400694651088], [-77.43667488184619, 34.73409189406604]], [[-77.39012473983344, 34.65869952526613], [-77.39004771210932, 34.658720804499424], [-77.38978105667621, 34.65880490689351], [-77.38978037062324, 34.65880585258381], [-77.38975547065952, 34.65911514862448], [-77.38971498226945, 34.6592368739971], [-77.38967847907574, 34.65935929841058], [-77.3898081397829, 34.65940916333646], [-77.38997268645159, 34.659312670421], [-77.39014649047243, 34.65927387233379], [-77.3902657920483, 34.65930112978837], [-77.39043972264952, 34.65929428135564], [-77.3907316394048, 34.659336538964865], [-77.39101934116542, 34.6593587249952], [-77.39131550478336, 34.65938071269931], [-77.39133265926964, 34.65938294910235], [-77.39137245160826, 34.65938176437718], [-77.39165482161982, 34.65937664833956], [-77.39188275410707, 34.65931533104594], [-77.39214676195634, 34.65911910599137], [-77.3921660486625, 34.65910477109677], [-77.39201522908152, 34.65885392951019], [-77.39191647592072, 34.65881542967465], [-77.39154193500516, 34.65869952152335], [-77.3914232779049, 34.658662800742235], [-77.39119751775647, 34.658607658140994], [-77.39111034063527, 34.65858320963821], [-77.39075338334322, 34.658631364911386], [-77.39066398767169, 34.65862861765982], [-77.39042734923135, 34.658833930933156]], [[-77.45447491760314, 34.67720856359675], [-77.4541107677907, 34.67737101591703], [-77.45422972429694, 34.67793595208743], [-77.45425217788663, 34.6779867942518], [-77.45470958666667, 34.67806460154031], [-77.4548164362877, 34.67813348999776], [-77.45498992214242, 34.678145774604225], [-77.45499483044354, 34.67814545183441], [-77.45499581119059, 34.67814409599374], [-77.45509653497464, 34.67802525580293], [-77.45509904425971, 34.67801677496493], [-77.45509032162269, 34.677932524121104], [-77.45504948419124, 34.67784871729819], [-77.45485672329923, 34.677814476490994], [-77.45481818572283, 34.677618281536475], [-77.45463995327307, 34.677434676755894]], [[-77.47357665846458, 34.485871028980974], [-77.47350217379613, 34.48589327319438], [-77.4735368948363, 34.485851716266836], [-77.47357343901292, 34.48585602192516]], [[-77.35760970497726, 34.61236988248373], [-77.35743344385563, 34.612332982293466], [-77.35744559448374, 34.61269767065992], [-77.35760951552544, 34.61274010187202], [-77.35777415404657, 34.6127210567408], [-77.35782818164009, 34.61270153676893], [-77.35782163563637, 34.612663116084136], [-77.35784644027694, 34.612463416633645], [-77.35780677965606, 34.6123988506629], [-77.35771259328878, 34.61237185960612]], [[-77.22120692930334, 34.61320207275996], [-77.22179697798212, 34.61327641187778], [-77.22156913708312, 34.6134199501725], [-77.22169763574627, 34.613497245066995], [-77.2216193387678, 34.61356900709866], [-77.2215848605696, 34.61365687309976], [-77.22149351284698, 34.61372112016444], [-77.22138301006466, 34.61368750135432], [-77.22123443690236, 34.61381629602835], [-77.22119627067835, 34.61362618946134], [-77.22126028953356, 34.61347713952246]], [[-77.4438093990976, 34.73491716142695], [-77.4439162933146, 34.73499117830001], [-77.44396062617625, 34.73498900216301], [-77.4441137267262, 34.734973328756354], [-77.44421310712244, 34.73492723254704], [-77.44421039212784, 34.734868454713634], [-77.44419700490133, 34.73478185283835], [-77.44417567971671, 34.73475917548937], [-77.44412473400297, 34.73475660468206], [-77.44404503796142, 34.73475307106963], [-77.44401671149635, 34.73475461388415], [-77.44393907362803, 34.73475846420173], [-77.4438539350623, 34.734763215781186], [-77.44382290377628, 34.73476407306701], [-77.44349429821479, 34.73489823346637], [-77.44344427188949, 34.73489327562779], [-77.44320323611959, 34.73479621364083], [-77.44309314306975, 34.734815472917184], [-77.44298197585525, 34.73488583581236], [-77.44296531471177, 34.73494158752101], [-77.44302593466529, 34.7349576311196], [-77.44316735036054, 34.73492025496774], [-77.44339753108164, 34.73498444063213], [-77.44346777543862, 34.73498991226751], [-77.4435115329594, 34.7350031278025], [-77.4436210274676, 34.73499989533052]], [[-77.46159490361892, 34.59571386795126], [-77.46158821607371, 34.59575171664257], [-77.46157020864767, 34.59580341306888], [-77.46154855783071, 34.596144283042364], [-77.46138289500193, 34.59629925134683], [-77.46127526298133, 34.5964660108179], [-77.46117877634727, 34.59661906475485], [-77.4612166192006, 34.596860446749446], [-77.46090501561086, 34.59703339775424], [-77.46084215261533, 34.59708438351679], [-77.46076404605498, 34.59724675094578], [-77.46073109025609, 34.59730994959589], [-77.46071911591886, 34.59731426415148], [-77.46069736400061, 34.597328314530536], [-77.46048821278531, 34.597430815425454], [-77.46037187915981, 34.59758783368781], [-77.46055763700139, 34.597684300312636], [-77.46071758306456, 34.59776082679268], [-77.46107671961596, 34.59774055590814], [-77.46109720951112, 34.59773513150481], [-77.46114382648435, 34.59769670401773], [-77.4613752232695, 34.59753530445243], [-77.46150873207502, 34.59731843854753], [-77.46154979263625, 34.59725174098285], [-77.46168895200293, 34.59702569525017], [-77.4617466515954, 34.596826298828894], [-77.46193299239033, 34.59649170647346], [-77.46193300390664, 34.59627413635812], [-77.46189244321508, 34.59604615883472], [-77.4616816456763, 34.59578440378288], [-77.46163955273664, 34.59571859048435]], [[-77.39756523419686, 34.508210618739675], [-77.39768870238073, 34.50827354777333], [-77.39794750120134, 34.50848352724471], [-77.398059461003, 34.50870969440922], [-77.3981621032382, 34.50880383788279], [-77.39811091806945, 34.50905455133264], [-77.39774959281377, 34.50911638886302], [-77.39754386128575, 34.50916269103634], [-77.39731581497684, 34.50916446400802], [-77.39681332444147, 34.50937926095537], [-77.39676300536067, 34.50939221979963], [-77.39675384587213, 34.50939364398939], [-77.3967413756912, 34.50939737540937], [-77.3966923868793, 34.50939671896234], [-77.39667936873758, 34.5093515403268], [-77.39659231496357, 34.508921493436134], [-77.39677133022539, 34.50861511413413], [-77.39682951468863, 34.50843130864056], [-77.39684328377696, 34.5083955937025], [-77.39717387316858, 34.50816391024192], [-77.39736971491408, 34.508197423039405]], [[-77.33975636610636, 34.64888873943381], [-77.33991386371044, 34.64896659801576], [-77.33980630115876, 34.64879439093763], [-77.33973483502366, 34.64878159783098], [-77.33957430120358, 34.64882623127924]], [[-77.37771714945674, 34.59637076575172], [-77.37795467244344, 34.59615086971144], [-77.37813680941157, 34.59598330155647], [-77.37813768085131, 34.59592741214725], [-77.37779190924954, 34.59566133831748], [-77.37771736576579, 34.59560430697607], [-77.37736277398136, 34.59606740982567]], [[-77.36817055626298, 34.60451742274876], [-77.3680756482963, 34.604622637701986], [-77.36818948165266, 34.60467734136492], [-77.36825549564624, 34.60464583832696], [-77.36828760525164, 34.60462669627035], [-77.36838052535639, 34.60457873647101], [-77.36851758211589, 34.604416660327814], [-77.36864971692638, 34.60443534768312], [-77.36879926175584, 34.60435738459557], [-77.36886882969485, 34.604319838822654], [-77.3688793180884, 34.604259661730005], [-77.36876651714104, 34.60409859645802], [-77.36876357433667, 34.60397656486144], [-77.36851228360165, 34.60398697920076], [-77.36844303168895, 34.60414517845015], [-77.36836513280608, 34.60427433854622], [-77.36825558601778, 34.60441393413866]], [[-77.38831368585096, 34.59406446875304], [-77.38824525324802, 34.59419595347666], [-77.38835814630687, 34.59415715825736], [-77.38837824749841, 34.59424577343436], [-77.38851511798569, 34.59420454696411], [-77.38855518425905, 34.5941924786505], [-77.38860811820732, 34.5941772756059], [-77.38868870371155, 34.59415423872663], [-77.38875224186258, 34.59409880922849], [-77.38882877782873, 34.59407265346704], [-77.38894384281278, 34.593973611244], [-77.38907892769178, 34.59360225817531], [-77.38875230769503, 34.59366389072194], [-77.38869227008205, 34.593649999900265], [-77.38847746327662, 34.59374476431803], [-77.38835817594382, 34.59396716082524]], [[-77.36981693646105, 34.59331251511787], [-77.36966322697415, 34.59269311185793], [-77.36917947751724, 34.592717326141155], [-77.36914405535337, 34.593326938261995]], [[-77.3332762720548, 34.65643052611393], [-77.33326662371242, 34.656426990994674], [-77.33324342929888, 34.65641849264382], [-77.33317770599021, 34.65645582732418], [-77.33323955967677, 34.65650318585225], [-77.33342818277245, 34.65684345974892], [-77.33371065726197, 34.657043407991736], [-77.33386674902945, 34.657000402694436], [-77.33403030650571, 34.65704070594161], [-77.33422874289974, 34.65684130079376], [-77.33429671488818, 34.65677301301673], [-77.33431659287558, 34.65675306427569], [-77.33435282429734, 34.656716613274625], [-77.33450433724808, 34.656295837343734], [-77.33428219874013, 34.65670076352392], [-77.33426322281638, 34.65670324053684], [-77.3339532092041, 34.65665697118726], [-77.33370222200863, 34.656735436571594], [-77.33364701924837, 34.65672665894942]], [[-77.39505581988179, 34.62144148007954], [-77.39491037626823, 34.62129151456279], [-77.39475310330457, 34.6212560726714], [-77.3946616177561, 34.62123553961317], [-77.39459745048197, 34.621249093516134], [-77.39451866248228, 34.62119134699979], [-77.39432820451249, 34.6211533335651], [-77.39426741191431, 34.62111595959951], [-77.3935788821816, 34.62058526401209], [-77.39360539021831, 34.6213230354571], [-77.39358808236805, 34.621443054929095], [-77.39352650847005, 34.62175897974235], [-77.39381892191636, 34.62177522251526], [-77.39401026990264, 34.621836904740135], [-77.39426736693129, 34.62180577873669], [-77.39449074638597, 34.6218039336107], [-77.3947705941593, 34.62200415952488], [-77.39496307359194, 34.62207625341468], [-77.3950557848953, 34.622071822451524], [-77.3952092538042, 34.62220018275244], [-77.39530755075799, 34.62219788808386], [-77.39544999535643, 34.6222109215785], [-77.39561640083035, 34.62209447780157], [-77.39558198997273, 34.62202930244058], [-77.39549373348264, 34.621899881582486], [-77.39545001489822, 34.621824700860856], [-77.39516492232882, 34.62182977038448], [-77.39516751029225, 34.621522353379085]], [[-77.24601868763648, 34.59282469485365], [-77.24610306813132, 34.592616968008016], [-77.24626604625576, 34.5927320996905], [-77.24625130151693, 34.592748827629315], [-77.24620560604856, 34.592973711564035], [-77.24632764092168, 34.59307643322137], [-77.24629368430668, 34.593115205619085], [-77.24624084918707, 34.593160510177206], [-77.24608274184871, 34.59319970582185], [-77.24602457970026, 34.59320450546028], [-77.2459928560296, 34.593234024789766], [-77.24594952348212, 34.59321797588324], [-77.24580288550115, 34.59300729970878], [-77.24578278076389, 34.59294039844711]], [[-77.4177958441453, 34.75506166980276], [-77.41777495740145, 34.75507301345306], [-77.41770168612645, 34.75507642735667], [-77.41709449144483, 34.755208017150096], [-77.41681845367927, 34.75496071601857], [-77.41686501393066, 34.75528007059529], [-77.41692924487265, 34.75539847354879], [-77.4168559489323, 34.7558359882093], [-77.4168779974257, 34.75595533228051], [-77.41693453579603, 34.75628899443754], [-77.41707191376597, 34.756470555301526], [-77.4172201588069, 34.756988153652046], [-77.41730583762057, 34.757026921721405], [-77.41724435642811, 34.75708991002006], [-77.41731591920593, 34.757269424445205], [-77.41739018061445, 34.757438122455746], [-77.41740429261043, 34.75745951810586], [-77.4175057482258, 34.75761312324658], [-77.41756123840894, 34.75767021944104], [-77.41767236897176, 34.75764112660453], [-77.41772967347923, 34.75753907146725], [-77.41775441731193, 34.75735790062859], [-77.41776099089647, 34.757283526728294], [-77.41775764913314, 34.757269307801074], [-77.41774766842258, 34.757226840767714], [-77.41766544637007, 34.756876995713036], [-77.41761449318481, 34.75666019131375], [-77.4176947201617, 34.756392373782184], [-77.41811891821868, 34.7557952030256], [-77.41815020356154, 34.75572926047061], [-77.41819579358985, 34.7557151039556], [-77.41823590775297, 34.755695788036206], [-77.4188057709404, 34.75539930170567], [-77.41844848004057, 34.75496196518005], [-77.41781769405837, 34.7550539637331]], [[-77.37430968751504, 34.55928270095508], [-77.37435868868437, 34.55937379443913], [-77.37439492167292, 34.55936231131413], [-77.37445532543106, 34.55933721445133], [-77.3745767342575, 34.55919036283055], [-77.37460338304014, 34.55913229747708], [-77.37466806041243, 34.55909427723158], [-77.37457679607175, 34.559011894397685], [-77.37443405923817, 34.55912799829096]], [[-77.30897960959675, 34.55399727059322], [-77.30882626425168, 34.55387248740228], [-77.3089879976227, 34.5536401755908], [-77.30927092129679, 34.55380865258502]], [[-77.34816168386573, 34.625640878632375], [-77.34809745889388, 34.6259379877181], [-77.34821054639175, 34.62611860909607], [-77.34846991227151, 34.626348588910744], [-77.34865692719676, 34.62627675356759], [-77.34894563625082, 34.62637283080473], [-77.3489830067708, 34.626306610100194], [-77.34896552791236, 34.62601491670608], [-77.3488907813688, 34.625847776803155], [-77.34881403126805, 34.625667008976144], [-77.34857430816024, 34.6256466479655], [-77.34852995062231, 34.625645016100535], [-77.34824501945467, 34.62564572497825]], [[-77.3978162838736, 34.592363863327485], [-77.3979752633083, 34.592499776151065], [-77.39808649699586, 34.592521575863714], [-77.39821035265976, 34.59255942440351], [-77.39826354395144, 34.59257216806419], [-77.39853331883111, 34.59251394086988], [-77.39852442738682, 34.592379552888445], [-77.39848056282247, 34.59230705687214], [-77.39847106041897, 34.592281108750214], [-77.39840740392069, 34.592214423798644], [-77.39838711948791, 34.59220892982607], [-77.39835672827611, 34.59219145980779], [-77.39826257653041, 34.59214879434073], [-77.39821037069888, 34.59209724981403], [-77.3978627028321, 34.592212725698744], [-77.39781629753918, 34.59205216379485], [-77.39771113933918, 34.592171303889586], [-77.39776527670315, 34.592331740702456]], [[-77.36353761263709, 34.770737710758176], [-77.3635402262075, 34.77049971614302], [-77.36344884191016, 34.770147422073336], [-77.36342813272955, 34.76994191528115], [-77.3633694226048, 34.77011962824605], [-77.36336117257027, 34.77012800043979], [-77.36318944902887, 34.77056573596396], [-77.36318303703538, 34.770613622708616], [-77.36303077065848, 34.77068057681109], [-77.3630404719124, 34.7707077616484], [-77.36314711685435, 34.770870880838324], [-77.36315930713275, 34.770867551596], [-77.36323738903046, 34.77091225550727], [-77.36344403698143, 34.770986016133556], [-77.3634827515635, 34.77104547904793], [-77.36350396883185, 34.77096106674482]], [[-77.34477964866508, 34.68881304523873], [-77.34477885922313, 34.68880796830061], [-77.34478201766697, 34.68878296092693], [-77.34477314053046, 34.6888087531358], [-77.34477349892603, 34.688809390246455], [-77.34477319596431, 34.688813335569584]], [[-77.37880990829446, 34.527325374930925], [-77.37896814509308, 34.527555894979876], [-77.3785014054838, 34.52755898456126], [-77.37845124351827, 34.527452774402924], [-77.37850403826707, 34.527330125930334]], [[-77.45408461023496, 34.67692676497384], [-77.4541148613941, 34.67706276235128], [-77.45404245330855, 34.67725032715392], [-77.4544402880624, 34.67717651086186], [-77.45423681423655, 34.677012829816896], [-77.45419574672023, 34.67689508708605], [-77.45410407548151, 34.676815439082496]], [[-77.42569271019183, 34.62593817772107], [-77.42570261910505, 34.62593896319422], [-77.4257084798515, 34.625941601759706], [-77.42571096009557, 34.6259358286542], [-77.42571052793198, 34.625933101068334], [-77.4257116118754, 34.62592797512666], [-77.42552533458633, 34.625616633609766], [-77.42577346833266, 34.62533824478108], [-77.42584666280493, 34.62515584830447], [-77.42591239566718, 34.62507714605667], [-77.4259667283768, 34.624963565780675], [-77.426124026298, 34.624967023226645], [-77.42629742884166, 34.62490219946996], [-77.42645919100569, 34.62484172700017], [-77.42652148556651, 34.62477895510709], [-77.42661837774895, 34.62470481916128], [-77.42666485105966, 34.62463250227742], [-77.42674691256443, 34.62453010655528], [-77.42662411321228, 34.62448358616359], [-77.42647185551445, 34.62454200861309], [-77.42638713403015, 34.624578322431475], [-77.42602662951802, 34.6246290030885], [-77.42588355601049, 34.62465952201316], [-77.42533450686044, 34.624565113073125], [-77.42533199208059, 34.624565303711584], [-77.4253300062108, 34.624566149918955], [-77.42482610127402, 34.62463804749843], [-77.42478243070843, 34.6249913129587], [-77.42474261852463, 34.625101182175314], [-77.42464004589317, 34.625251202021516], [-77.42451788043306, 34.62543344163941], [-77.42445218835138, 34.6254951719413], [-77.42433541135775, 34.62558643186024], [-77.42409078523258, 34.625794271252104], [-77.42391195572718, 34.625925518660075], [-77.42387043117427, 34.625949807465744], [-77.4237905797354, 34.62599008454589], [-77.42363148526668, 34.62603737587546], [-77.42346260802834, 34.62620432901383], [-77.42337719718388, 34.62635778131357], [-77.42325391206779, 34.62657927798518], [-77.42321836406383, 34.62664314373421], [-77.42327772259254, 34.62666632764796], [-77.42353036539518, 34.62655425460686], [-77.42368169105748, 34.62646437861633], [-77.42374982295732, 34.62647000444082], [-77.42379617564721, 34.6264402618493], [-77.42404711460887, 34.626282569806804], [-77.42420418977888, 34.626208857338185], [-77.42442513615309, 34.62610517039636], [-77.42467017101782, 34.625990178817304], [-77.42494522889967, 34.625950342271835], [-77.42518163147616, 34.62593776402734]], [[-77.37011170846668, 34.59414004004084], [-77.36983628542643, 34.593357621258], [-77.3695342949128, 34.59422320085706], [-77.36983589373585, 34.594393143536394]], [[-77.33482942562709, 34.65623712370211], [-77.33483815508062, 34.65622803661774], [-77.33496203364803, 34.65602103866897], [-77.33496120231828, 34.65596557136157], [-77.33493596345987, 34.65599670089392], [-77.33482702871865, 34.6562251941355], [-77.33459532409918, 34.65626135110305]], [[-77.43817158979213, 34.74123422367338], [-77.43814289034215, 34.74147138807091], [-77.4381082559885, 34.741504614652], [-77.43809179132394, 34.74159329321062], [-77.438024256479, 34.741615223450935], [-77.43795160305953, 34.741622588953796], [-77.43793833405746, 34.741614716221406], [-77.437919019926, 34.74156937105677], [-77.43792492100775, 34.74153499192022], [-77.43794236958045, 34.74150143140406], [-77.43801752346198, 34.7414275873117], [-77.438114092992, 34.74120658662675], [-77.43813615707938, 34.74117635169548], [-77.43818442253557, 34.74117724527996], [-77.43818144495636, 34.74120534226723]], [[-77.34872149900711, 34.65618697302761], [-77.34868211397803, 34.65635893371427], [-77.34884476593601, 34.65630201650315], [-77.34892454599019, 34.656270246359], [-77.34900991827655, 34.65628404643337], [-77.34916227207975, 34.65626475146833], [-77.3490950508605, 34.656115479915286], [-77.34902963770404, 34.65614096616784], [-77.34890465825039, 34.656171349378454], [-77.34877302635776, 34.65617892471553]], [[-77.39939250973646, 34.59572600063083], [-77.39953182158082, 34.59563080356189], [-77.39939251499119, 34.59549183938287], [-77.39937439760729, 34.59546074810011], [-77.39931035738192, 34.59545046772627], [-77.39930679459368, 34.59535862743927], [-77.399218401489, 34.59522674875005], [-77.39919547717079, 34.59518589634868], [-77.39915331216919, 34.595215412076385], [-77.39915195194206, 34.5953079227047], [-77.39914938676341, 34.59547369097103], [-77.3991289430883, 34.59561725828695], [-77.3991212140585, 34.595770033330446], [-77.39925448856674, 34.595734405046045]], [[-77.22261972412453, 34.61260133262218], [-77.22259467577834, 34.61246422513294], [-77.22256840763562, 34.61232044345765], [-77.22293306231042, 34.612128173741525], [-77.22295186595161, 34.612124508622124], [-77.22323767818028, 34.61218652138418], [-77.2231184611912, 34.61227273138125], [-77.22311108691802, 34.61236328867535], [-77.22312922653644, 34.61241076450887], [-77.223107990794, 34.612427794270985], [-77.22300797473308, 34.612472988500286], [-77.22298808363503, 34.61248548969543], [-77.22272433266632, 34.61256843525395], [-77.22271610602719, 34.612572264437226], [-77.22263924309988, 34.612708171420664]], [[-77.45070193095489, 34.61229540263294], [-77.45084563922396, 34.61213022839879], [-77.45085298971865, 34.612119619554214], [-77.45080967370163, 34.61199887900683], [-77.45075286595967, 34.61209062881474], [-77.45055794166775, 34.612039543355415], [-77.45036312190467, 34.612259325518], [-77.45036022679062, 34.612262947408084], [-77.45035846175843, 34.61227104099811], [-77.45026643034197, 34.612471529879116], [-77.45042927217202, 34.61252965026019], [-77.45063659420819, 34.61236596327199], [-77.4506433735358, 34.612362016942654], [-77.45064553284892, 34.61235943629029]], [[-77.33289450899765, 34.570625642887315], [-77.33310235932206, 34.570281790844035], [-77.33281097892805, 34.57028485359304], [-77.33267466360965, 34.570510560672844], [-77.33263647965433, 34.57066273189082], [-77.3325266858509, 34.57079717689389], [-77.33254371615524, 34.57096343927731], [-77.33266895217298, 34.570930146693684], [-77.33281058225722, 34.570757724150916], [-77.33286666788055, 34.57069001846919]], [[-77.44184753330842, 34.68602423854533], [-77.44180128999162, 34.68609895480968], [-77.44197501160394, 34.68613978183584], [-77.44198093096423, 34.686070876082006], [-77.4419851113883, 34.6860222127586], [-77.44199258707414, 34.68593519258893], [-77.44197279008364, 34.68586614222538], [-77.44196355104793, 34.68580800942432], [-77.44186385735554, 34.68577119714984], [-77.4418116029565, 34.685869570881756], [-77.44181076714077, 34.68587134406388], [-77.4418103236418, 34.685871979307294]], [[-77.38949711371002, 34.51132105160367], [-77.38941515810781, 34.51142632904711], [-77.38925102034068, 34.5114742599802], [-77.38912067508782, 34.51146881996962], [-77.38904487175516, 34.511365075004946], [-77.38899005082374, 34.511074390987744], [-77.38951765936774, 34.51100692368138]], [[-77.37343294849923, 34.67853584155246], [-77.37319804996602, 34.67851907271847], [-77.3731387369825, 34.67857629319997], [-77.37312990798135, 34.67875401147487]], [[-77.36474032733396, 34.682254775240494], [-77.36492410523172, 34.68236656787727], [-77.36509759196946, 34.682571446673954], [-77.3645687110804, 34.68264016987596]], [[-77.34248224908256, 34.538363455054885], [-77.34249799404958, 34.53826172890901], [-77.34252403960727, 34.53814725955302], [-77.34266338809982, 34.53823793491568], [-77.34268138976677, 34.53825802956226], [-77.34271596044312, 34.53833613748833], [-77.34277349762424, 34.538466913103576], [-77.34278840214793, 34.53865975007833], [-77.34280485561408, 34.53870722061309], [-77.34276005001279, 34.53874708047258], [-77.34274791558403, 34.53896023139653], [-77.34273974467905, 34.53898559233262], [-77.34269929349156, 34.539057899564696], [-77.34268125059553, 34.53898216482686], [-77.34268795233798, 34.53896885791407], [-77.34265611596676, 34.53894488344833], [-77.34265428819111, 34.53876122124123], [-77.34266670718203, 34.538727095301724], [-77.34246386023193, 34.538663955997926], [-77.34247240364417, 34.53860705892828], [-77.3424722436413, 34.538510252286784], [-77.34248250423481, 34.5384085070798], [-77.34247549941892, 34.53838737445904]], [[-77.34393330114503, 34.53906979400088], [-77.34413599127772, 34.53908821732359], [-77.34416446121264, 34.539182314657616], [-77.34406532405873, 34.53926033637535], [-77.3441893546628, 34.539442825501695], [-77.34421848639485, 34.53948311976904], [-77.34424556485357, 34.53948800483314], [-77.34425734536131, 34.539587680462844], [-77.34428152955766, 34.53971886888762], [-77.34427195212356, 34.53973142440987], [-77.34425194116963, 34.53982190124172], [-77.34419402804892, 34.53994188768411], [-77.34417565048673, 34.53997892151543], [-77.34420767984376, 34.53999936245518], [-77.34424507496755, 34.540119486925406], [-77.34428455291297, 34.54020807273391], [-77.3442421618619, 34.54024574298228], [-77.34395346498957, 34.54032157913459], [-77.34373126736364, 34.540359820252455], [-77.3434543384695, 34.54036161691913], [-77.34342966485312, 34.54034666826777], [-77.3434296940537, 34.54033106183379], [-77.3433327464919, 34.54017865143156], [-77.34325856843556, 34.5401108617872], [-77.34327702044608, 34.53999231077268], [-77.34346971127037, 34.539695620966974], [-77.34353227216175, 34.53961976944352], [-77.34354790591064, 34.53957959732319], [-77.34359617229083, 34.53949665220713], [-77.34375850727139, 34.539233104180006], [-77.34387577790767, 34.53911086887255]], [[-77.3453989941993, 34.53065078135075], [-77.34533232215564, 34.53056025684887], [-77.34550828086671, 34.53056808293544], [-77.34563332170929, 34.530706784997804], [-77.34563682077174, 34.53071035253163], [-77.3456329914488, 34.530715061527815], [-77.34555662291761, 34.53091784033238], [-77.34541986276916, 34.53087633817881], [-77.34539540920386, 34.53083936095164], [-77.34536254481792, 34.53074981980146]], [[-77.3706652651392, 34.516562492482365], [-77.37041157454783, 34.516303422514504], [-77.37021401011462, 34.516342901426356], [-77.36996326071909, 34.51664288586982]], [[-77.44183242787173, 34.68441140930912], [-77.44181654120337, 34.684476056259655], [-77.44175590465682, 34.684473255696076], [-77.44173808226397, 34.68456291356268], [-77.44175954940113, 34.68459588959505], [-77.4417409631831, 34.68463575252859], [-77.4417486043576, 34.68478172487628], [-77.44192207165129, 34.68493175836874], [-77.44189911250125, 34.6847188896136], [-77.44191167408167, 34.68464907549685], [-77.4419093149902, 34.68453707494098], [-77.44191542061779, 34.68448887683093]], [[-77.33289133786728, 34.5345633502086], [-77.33312966408164, 34.53455534672714], [-77.33327044809778, 34.534276555915355], [-77.33289298339426, 34.53444010284885]], [[-77.30312425884208, 34.55395649440241], [-77.30309057080015, 34.5539677398803], [-77.3028921997558, 34.55411305932957], [-77.30288281732867, 34.554118458016106], [-77.30286114912185, 34.554097933866736], [-77.3029302727252, 34.553984332990865], [-77.30309535341502, 34.55376474430086]], [[-77.42419067805474, 34.52525628726964], [-77.4241622274546, 34.52532306139269], [-77.42433943296935, 34.525282102029635], [-77.42434921565979, 34.52523336772507], [-77.42441096109013, 34.52513453582369], [-77.42435348305705, 34.525110329000924], [-77.42444231758923, 34.525083831409134], [-77.4244545197508, 34.52498076520615], [-77.42430760770287, 34.52501836622684], [-77.42426781051257, 34.525090828083286], [-77.42424689009451, 34.52512573904825], [-77.42420845375501, 34.52521844998983]], [[-77.35210526318222, 34.729773836878294], [-77.35211839652936, 34.72971534159574], [-77.3520662708303, 34.729712125031305], [-77.35205375200873, 34.72971135250637], [-77.3520313707218, 34.72970836506522], [-77.35190261633787, 34.72971624369682], [-77.35185479449603, 34.72975152158966], [-77.35188514051261, 34.729776410844174], [-77.35201953067435, 34.729748080380254], [-77.35204277726488, 34.72974913745426]], [[-77.43831673466713, 34.74371427625203], [-77.43837048866126, 34.743742464427605], [-77.43837462487018, 34.74377632705114], [-77.43838130832042, 34.74379081131326], [-77.43838323730589, 34.74382289055364], [-77.43835054627836, 34.74381137603801], [-77.43833037164055, 34.743794788960855], [-77.43831072069784, 34.743766150226996]], [[-77.42434610616657, 34.74335880973688], [-77.42434985075958, 34.743376819445274], [-77.42435256814817, 34.74343358883166], [-77.42436241667662, 34.74359476758784], [-77.42436264601176, 34.74364412456158], [-77.42441486130369, 34.74377209488994], [-77.42442455733939, 34.74379204093333], [-77.42455084912363, 34.7438474955249], [-77.42455369973388, 34.743846259827315], [-77.4246322426454, 34.74379350759841], [-77.4246691353639, 34.74375124292153], [-77.42468885615811, 34.7436818159491], [-77.42467281275353, 34.74347299464566], [-77.42466865660741, 34.743449262448344], [-77.42443872531871, 34.74333975456622], [-77.42443868701008, 34.74313618323045], [-77.42434598320713, 34.74332581835275]], [[-77.39624138545415, 34.62285349222563], [-77.3962476926376, 34.622862585458996], [-77.39631989727835, 34.62296668486266], [-77.3963781116849, 34.62304606046959], [-77.39643550523334, 34.623129717265414], [-77.39657472004484, 34.62301770708153], [-77.39657732679142, 34.62295777829413], [-77.39649204062711, 34.62275647185723], [-77.3964355199962, 34.622742026153404], [-77.39637074931565, 34.62269231016153], [-77.39629666216118, 34.622633234950875], [-77.39626108907268, 34.62261394512875], [-77.39623841573135, 34.622595384707125], [-77.39616336658368, 34.62265245756069], [-77.39620420944034, 34.622683403566185], [-77.39623840584267, 34.622838786389096], [-77.39624413685415, 34.62284692284469]], [[-77.39657651957266, 34.53065651676729], [-77.39655970337282, 34.53054143067152], [-77.39641601501022, 34.530578472650014], [-77.39639008333418, 34.530669914301576]], [[-77.42100208603532, 34.56860598012398], [-77.42106128847807, 34.56864572182975], [-77.42113209484734, 34.56865938536259], [-77.42118089195463, 34.56864525086163], [-77.4212582584398, 34.56860057803215], [-77.42139234616594, 34.56848579651976], [-77.42137121041347, 34.56839833852219], [-77.42135658136289, 34.5681726028248], [-77.4211337448236, 34.568176775482975], [-77.42106118768464, 34.56818230453403], [-77.4209438797767, 34.568338302203685], [-77.42092952383211, 34.56841071602828], [-77.42093211074533, 34.56855229525652]], [[-77.43570033580355, 34.620760047677564], [-77.43543971246598, 34.6205758647366], [-77.43537186457694, 34.620521586212874], [-77.43528329725092, 34.62043582630676], [-77.43523278442304, 34.620396409918044], [-77.43519117903386, 34.620462082381174], [-77.43511155915158, 34.62055398023156], [-77.43512569573632, 34.62059390950725], [-77.43517424318003, 34.62065153060841], [-77.43523440697231, 34.62068958643762], [-77.43532521954614, 34.62073418938475]], [[-77.44239570610274, 34.61775263520866], [-77.44249861307955, 34.61764050958743], [-77.44236523759581, 34.61764132780563], [-77.44233223925755, 34.617687942797644]], [[-77.33947186661248, 34.76198497292511], [-77.33950624081032, 34.76203647343159], [-77.33952326271526, 34.76203050389738], [-77.33953639056946, 34.76201329447914]], [[-77.44179533475058, 34.685167436215615], [-77.4418000843841, 34.685206641102354], [-77.44181279032881, 34.685311514876304], [-77.4419169009205, 34.6852971404653], [-77.4419077694375, 34.68520674534497], [-77.4419077445031, 34.685161694514896], [-77.44192210968663, 34.6849334894003], [-77.44178491366445, 34.68508142030737]], [[-77.44192688987935, 34.68560011044107], [-77.44184138808794, 34.685547556619014], [-77.441850094443, 34.685632171331044], [-77.4418600886771, 34.685701908815346], [-77.44195319253299, 34.685730288639974]], [[-77.45594486504461, 34.59811159228759], [-77.45594358826449, 34.59811080107492], [-77.45569674757002, 34.59795783556601], [-77.45553764982745, 34.59785924303821], [-77.45544616367036, 34.59780709597476], [-77.45533825570996, 34.5978197881992], [-77.45524405416276, 34.59782567607563], [-77.45519185859256, 34.59784935839063], [-77.45511913648541, 34.597978452558465], [-77.4551190195926, 34.597978668389224], [-77.45511902473964, 34.5979787195485], [-77.45511899798694, 34.59797889544528], [-77.45510475524866, 34.59812857303373], [-77.45507633417859, 34.59825940385463], [-77.4552254169342, 34.59831757894763], [-77.45551099378801, 34.59845063985907], [-77.45593595105568, 34.59812249433942], [-77.45594949530143, 34.598114461593774]], [[-77.44525459809259, 34.74654429273699], [-77.44542261646237, 34.74653003147259], [-77.44529206073824, 34.74641480316636], [-77.44510145844848, 34.74641785525574]], [[-77.39647527040276, 34.53160053609599], [-77.39653458698572, 34.53152627186178], [-77.39637266112733, 34.531550643640074], [-77.39640777966564, 34.531622324760846]], [[-77.39584421061772, 34.622272413058774], [-77.39583348539364, 34.622263906785534], [-77.39584100704556, 34.62227437356127], [-77.39584421042949, 34.62227653938589], [-77.39584548292368, 34.62227372810659]], [[-77.44157492422258, 34.73820816518561], [-77.44156687298167, 34.73819540556882], [-77.44145176702227, 34.73802840313387], [-77.44146362755613, 34.738013089742125], [-77.44150176534006, 34.73800754150345], [-77.44158313069438, 34.73817980188759], [-77.44158711434368, 34.73820247714625]], [[-77.3567373148972, 34.57047768347901], [-77.3566157750455, 34.57060992843668], [-77.35646344500144, 34.570646636772224], [-77.35644969210912, 34.570710462918846], [-77.35642286144217, 34.570666635169], [-77.35640547289978, 34.570640199379625], [-77.35636334094798, 34.57055311819574], [-77.35630017065877, 34.570443080704266], [-77.35644992481171, 34.57029149502489], [-77.35658519047264, 34.57033556727916], [-77.35665986106633, 34.57037730505588]], [[-77.43595880447945, 34.621128140194855], [-77.43594940157783, 34.62098445279665], [-77.43590498270635, 34.620931470005736], [-77.43588998938057, 34.62100138709353]], [[-77.3832362305726, 34.58860026732008], [-77.38323063546761, 34.58864103324096], [-77.38323096479355, 34.58864664809582], [-77.38321936726149, 34.58874879879045], [-77.38323619147744, 34.58877694731934], [-77.38326745339799, 34.58881431813106], [-77.38330729909636, 34.58881274430274], [-77.38332361829319, 34.58874572619914], [-77.38330590244153, 34.58873632531489], [-77.38327544066544, 34.58867683835212], [-77.38325066018231, 34.588638146805415]], [[-77.33290910122176, 34.57752842266379], [-77.33291198484505, 34.57751268327031], [-77.33289690042417, 34.57751702022025], [-77.33280491690489, 34.57753228943988], [-77.33278974083713, 34.57753946245819], [-77.33280490933348, 34.577541368533176], [-77.33289805540696, 34.577529678521124]], [[-77.43561372913007, 34.62178845150967], [-77.43559997711871, 34.62182253435242], [-77.43558496803253, 34.621860942254116], [-77.43556711532503, 34.62192421146146], [-77.43561025941855, 34.6219673971996], [-77.43562937689194, 34.62199877601119], [-77.43563655883358, 34.62202643336931], [-77.43568311191089, 34.62204198294541], [-77.43569236066342, 34.6219961313471], [-77.43569727276375, 34.62197942396772], [-77.43571116726869, 34.62193524789987], [-77.43572668829333, 34.621878729086916], [-77.43568034163475, 34.621837065597], [-77.4356738446599, 34.621801480175996]], [[-77.3332644341844, 34.53116765034442], [-77.3333600278605, 34.53125222171173], [-77.33326147576244, 34.53129512280123], [-77.33323196099425, 34.53127063680331]], [[-77.34092309807389, 34.626018034581875], [-77.34086694357751, 34.62607196514435], [-77.34095900544413, 34.6261967659968], [-77.34097756518841, 34.62605677900585]], [[-77.34386595441946, 34.629247214744545], [-77.34397482001992, 34.62925860315997], [-77.34400420585942, 34.62922823258337], [-77.34406986817584, 34.62915972338728], [-77.34409113168121, 34.62904097416409], [-77.34410626528737, 34.62900322001892], [-77.3440782880933, 34.62897705959161], [-77.34400477220248, 34.62901715531514], [-77.34394830650466, 34.62904621938367], [-77.34394521178878, 34.62911126053126]], [[-77.37770767765869, 34.631530231078486], [-77.3779046084075, 34.631440264594644], [-77.37770770877393, 34.63140910148405], [-77.37765039711535, 34.63132633997199], [-77.37754461530005, 34.63131646741228], [-77.37751059343867, 34.63134259408964], [-77.37748914499497, 34.631393968915255], [-77.37751057150038, 34.63142719801641], [-77.37755572769738, 34.63144188834991], [-77.37763070467909, 34.63147971869402]], [[-77.34266593425423, 34.53911442484095], [-77.34262765590009, 34.5391794258356], [-77.34259180254934, 34.539170512730635], [-77.34259140480201, 34.539161779508035]], [[-77.32150690982634, 34.64345727555698], [-77.32146406115645, 34.643365001674205], [-77.32143997927852, 34.64339476525423], [-77.32144388736062, 34.643404921366006]], [[-77.3751101501437, 34.55860600641737], [-77.37516777742606, 34.55872823750218], [-77.37522555251519, 34.55865161642691], [-77.37518739349971, 34.558594874726815], [-77.37516782989664, 34.5585737055552]], [[-77.36365125021479, 34.59010374616476], [-77.36364043426711, 34.5900731005914], [-77.36362884056203, 34.59008281926818], [-77.3636279181856, 34.59008837935663]], [[-77.34267693257584, 34.527278320967746], [-77.3426757300136, 34.52721930331669], [-77.34267834136257, 34.52721732745187], [-77.34269071411465, 34.52721714744677]]]]}, "type": "Feature", "id": "demo9", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19415315749714, 34.64765832343758], [-77.19436568185941, 34.6476825879539], [-77.19449881438611, 34.64772490810792], [-77.19526628858908, 34.647871982927434], [-77.20048712386406, 34.64892389118626], [-77.20230841254785, 34.649652837064764], [-77.20355047897954, 34.65021994739885], [-77.20413293251328, 34.650458755606365], [-77.20612335101106, 34.651122226886166], [-77.20774491978939, 34.65159111202921], [-77.21174739417134, 34.65278830433852], [-77.21202955285221, 34.652788307035216], [-77.21240464412014, 34.652788300925884], [-77.21363020580472, 34.653094584529725], [-77.21824460449486, 34.65384519564731], [-77.22064335481151, 34.655439522972664], [-77.22116703849758, 34.653689515223746], [-77.22300204450099, 34.6522769501663], [-77.22278798213121, 34.65193201515613], [-77.22285048285298, 34.651822275469364], [-77.22276903743209, 34.65157792809977], [-77.22218001886873, 34.64999860578518], [-77.22197104209911, 34.64921219205378], [-77.22075799968462, 34.64888627187387], [-77.22014407024739, 34.648425829187055], [-77.21943876792588, 34.64789683907007], [-77.21911343206625, 34.64734171125109], [-77.21822744583906, 34.64591574713975], [-77.21707321521681, 34.64516562818895], [-77.21608179973467, 34.64479421259827], [-77.21552328959608, 34.643816825209676], [-77.21504747122309, 34.64298415783976], [-77.21456883723823, 34.64214651954458], [-77.2143949851133, 34.64184227156524], [-77.21439071135173, 34.6417602912183], [-77.21438169615043, 34.64148975374804], [-77.21434778807885, 34.64030694300145], [-77.21433774093087, 34.63931068466408], [-77.21839369405147, 34.638794355131886], [-77.21914308835272, 34.63875399820001], [-77.22024530107669, 34.639305108275934], [-77.22026105267042, 34.638534514928935], [-77.21979626934083, 34.63826994476541], [-77.22161759013477, 34.63487071331967], [-77.22153535776678, 34.63468085907367], [-77.22359492994609, 34.63176429839439], [-77.22437671966043, 34.631317568588955], [-77.2265986517688, 34.629848420606805], [-77.2296499703405, 34.627962722366085], [-77.2304914332546, 34.6273787070522], [-77.23255924512043, 34.62559425588084], [-77.23463576329372, 34.624585040189565], [-77.23769614955725, 34.62326745366923], [-77.2409843895848, 34.621314600436115], [-77.24124550484878, 34.621164879320396], [-77.24175570897118, 34.62075908703993], [-77.24434937586092, 34.61866610418277], [-77.24495645571989, 34.617856692089184], [-77.24549166573536, 34.616902303318284], [-77.24588933619908, 34.6160448004684], [-77.24596706997812, 34.614845908017834], [-77.2467925840569, 34.61423052692949], [-77.25018069581319, 34.61333424170995], [-77.25298006675376, 34.61191483940579], [-77.25375877580609, 34.61125747465853], [-77.25411455361245, 34.61103619670362], [-77.25400812081513, 34.6107755306786], [-77.25480695682576, 34.60920533042575], [-77.25560351971376, 34.60763952852649], [-77.2569646746592, 34.607489716642675], [-77.2569086752643, 34.60675041238126], [-77.25747651346548, 34.60564465047513], [-77.25856468376324, 34.60501440973235], [-77.25991303023703, 34.60488056848066], [-77.26128669456375, 34.604805696539636], [-77.26186828634857, 34.60434920536878], [-77.26201857019561, 34.6048372010177], [-77.2629176534528, 34.60560813534343], [-77.26332031559683, 34.60610426515395], [-77.26435017605685, 34.60690343456918], [-77.26532538634103, 34.60751545237979], [-77.26604900544899, 34.607736972439795], [-77.26648598916881, 34.60823846279], [-77.26660902823532, 34.608311506607215], [-77.26672059834688, 34.608256902220276], [-77.26749078533612, 34.60769262278476], [-77.26864129509319, 34.606766190204425], [-77.26868697780166, 34.60652609827643], [-77.26937360900521, 34.60618032839395], [-77.2702430482679, 34.605484750864534], [-77.2705865325633, 34.60520994805869], [-77.27145023087554, 34.60207525881468], [-77.27168366075955, 34.60121761545184], [-77.27174401544372, 34.60111032195367], [-77.27178150808477, 34.60099217751849], [-77.27298811861709, 34.597789560382374], [-77.27315755356784, 34.597450722751425], [-77.27332804121832, 34.59710976452784], [-77.27521490503842, 34.59401595513215], [-77.2744532884824, 34.5937818510597], [-77.27504575406783, 34.59337964260534], [-77.27588498392583, 34.59330730326859], [-77.27912496612915, 34.59182751205006], [-77.28017377586457, 34.591149903153294], [-77.28173145929745, 34.59091698433103], [-77.28328934265039, 34.590380791787084], [-77.28503997861522, 34.58988809864595], [-77.2873633570309, 34.588950207028184], [-77.28743905728307, 34.5889203842586], [-77.28771490081641, 34.588254813064644], [-77.2890158607232, 34.585284638086435], [-77.28890842146133, 34.58495313405212], [-77.2870182825101, 34.58045994301182], [-77.28568390304076, 34.58031614220101], [-77.28501252737036, 34.57984139522097], [-77.28425077356732, 34.5795482845711], [-77.28384350090279, 34.57924104213064], [-77.28323043489533, 34.57878043823306], [-77.28281150435528, 34.57841308948953], [-77.28237636512259, 34.57810487296216], [-77.28198707578495, 34.57790551113256], [-77.28169499435367, 34.57762533143998], [-77.28138536853663, 34.577428559671084], [-77.2812795221568, 34.577350163864516], [-77.28103669414688, 34.57713714321013], [-77.28093649997265, 34.57664930956264], [-77.28076763129691, 34.576503090628336], [-77.28075501497665, 34.5763663250035], [-77.28125228587214, 34.575586582851905], [-77.28111873974184, 34.57545223164233], [-77.28125222650137, 34.575241152992575], [-77.28144109283366, 34.57478094406689], [-77.28116862844962, 34.574513494948036], [-77.28110744994751, 34.57417109154985], [-77.2814996291005, 34.57359683241061], [-77.28192682025855, 34.57321253125816], [-77.28230271740074, 34.572717236804166], [-77.28280953085788, 34.57206343411374], [-77.28292423008973, 34.571823382412134], [-77.28307983571209, 34.57160932280116], [-77.28353941877258, 34.571500559125596], [-77.28520439310671, 34.57116585286624], [-77.28555728257089, 34.57118371555242], [-77.2868997530354, 34.57152178846704], [-77.28720047891825, 34.5713370438796], [-77.28770570995515, 34.57123694780516], [-77.28790588559065, 34.57108951136695], [-77.28776125277255, 34.57096398066653], [-77.28766173133381, 34.571017132983684], [-77.28713233062228, 34.571061660439405], [-77.28648068367187, 34.57068748071057], [-77.28648192792257, 34.57068111688368], [-77.2864607359611, 34.570215694111724], [-77.28673310175955, 34.56985796791319], [-77.28685927190614, 34.56977564937363], [-77.28691201988474, 34.56975991259514], [-77.28699856853851, 34.56965899601668], [-77.2874386731021, 34.56934979710576], [-77.28771462287776, 34.56915936320043], [-77.28787640926122, 34.56869451212379], [-77.28769684079074, 34.56842740932777], [-77.28786110004559, 34.567975465577945], [-77.28815226510147, 34.56752050339012], [-77.28785583533373, 34.56723241947432], [-77.28793733779764, 34.56672912754321], [-77.28820729440434, 34.56658217836487], [-77.28857815192202, 34.566533793202865], [-77.28878766533872, 34.566515665789666], [-77.28873550009452, 34.56662362848177], [-77.28877932584413, 34.56688624330748], [-77.28910764620568, 34.56715350632099], [-77.28936483433131, 34.56751398755141], [-77.28956170675863, 34.56772483703398], [-77.28988711175268, 34.56790453358771], [-77.29082497031594, 34.56805077774489], [-77.29090150990979, 34.56802709603323], [-77.29096375972846, 34.56806756119519], [-77.29213290928621, 34.56778759249534], [-77.29284939782107, 34.567880798753876], [-77.29333280359332, 34.56796668645957], [-77.29347982649335, 34.56812532446191], [-77.29402165997126, 34.56837040999347], [-77.29498982041076, 34.568945944288274], [-77.29525370754625, 34.56895336813874], [-77.29537407702915, 34.569220453891504], [-77.295197096972, 34.56946990636648], [-77.29517660944985, 34.57021095814585], [-77.29504777197351, 34.57095553701478], [-77.29543331128622, 34.57149341569726], [-77.29591842214779, 34.572024410842914], [-77.29703247443808, 34.57309076826612], [-77.29751360674639, 34.5734550706643], [-77.29807969481871, 34.57391606861903], [-77.29891429041842, 34.57527069702414], [-77.30039419918184, 34.574330686044284], [-77.30165651424777, 34.57132119323055], [-77.30225310251855, 34.56993171305055], [-77.30193885681061, 34.56897403455138], [-77.3028693266871, 34.569107820141156], [-77.30326296707027, 34.569362327465385], [-77.30423494255416, 34.56964733346348], [-77.30601997079539, 34.57017074401669], [-77.30813654975202, 34.570202894323714], [-77.30917182993952, 34.570220119622185], [-77.30993314465988, 34.56964913018453], [-77.31128469796595, 34.568635484885725], [-77.3119510127552, 34.56813576577997], [-77.31232907986053, 34.56530177819004], [-77.31238061778939, 34.565137272154296], [-77.31252068973927, 34.56506181768002], [-77.31322874019341, 34.56399218093951], [-77.31536000858304, 34.56125788726172], [-77.31537889744826, 34.56118822820419], [-77.31550270998582, 34.560486352189415], [-77.31572095864227, 34.55924756789465], [-77.31573286755923, 34.559122272885396], [-77.31591125665054, 34.55747248133754], [-77.3159575607996, 34.55725510485186], [-77.31585374928616, 34.55710056744846], [-77.31616734773316, 34.55660344592887], [-77.31638173107015, 34.55648339951667], [-77.3171688503455, 34.556106273689835], [-77.31717587024235, 34.55610617157316], [-77.31717752648684, 34.55610161861833], [-77.31717952499694, 34.55610036533632], [-77.31718119974344, 34.55609693664621], [-77.31749648091085, 34.55556521906913], [-77.31719062954343, 34.55547517733104], [-77.31683611537915, 34.5553926773735], [-77.316359427973, 34.55523890361059], [-77.31601674367353, 34.55504701771768], [-77.31563828189194, 34.55469493527866], [-77.31506481155401, 34.554801580482724], [-77.31504515998351, 34.554448409578896], [-77.3149251583763, 34.55394201066542], [-77.31514812393942, 34.55345438135621], [-77.31494744370994, 34.55302814085298], [-77.31497216161178, 34.552941330205286], [-77.31538058449375, 34.552441755681755], [-77.31524464898645, 34.55217912710846], [-77.31569824396178, 34.55213351458603], [-77.31627085028742, 34.55195941564523], [-77.31648955945825, 34.55187538355788], [-77.31667929273692, 34.55188403963268], [-77.31727947731372, 34.55167677952441], [-77.31786569438744, 34.551468053943296], [-77.31779762342067, 34.55111536358068], [-77.31808408729347, 34.5508496391015], [-77.31881027589158, 34.550934305912186], [-77.31855030717568, 34.5502358744247], [-77.31863055631356, 34.55001647361615], [-77.31889393646777, 34.54979765966229], [-77.3189739447337, 34.54991554278934], [-77.31897214264444, 34.54996740701821], [-77.31900385275507, 34.55003484343977], [-77.31888110871205, 34.55095092209498], [-77.31889987662836, 34.55095703447573], [-77.31887798508546, 34.55096727820457], [-77.31886567456849, 34.55100685516457], [-77.3182592496498, 34.551659703753366], [-77.31803400931781, 34.552060652848766], [-77.31824367821054, 34.55239808082356], [-77.31815539325008, 34.55253284253485], [-77.31833874909074, 34.552692147881075], [-77.31866177992441, 34.55294972783249], [-77.31870523163447, 34.55301426880466], [-77.31881701964572, 34.55308859480383], [-77.31942657512758, 34.55343402488243], [-77.31959464052929, 34.55341653488156], [-77.32017354690817, 34.553585597272914], [-77.32037492600955, 34.553630622525134], [-77.32040948631119, 34.55365600105997], [-77.32042023042938, 34.553676375519224], [-77.3205140613966, 34.55375140467966], [-77.32093613919946, 34.55409188498175], [-77.32099628653863, 34.55417749110417], [-77.32165596820772, 34.554478096045145], [-77.32168975259054, 34.55461832623623], [-77.3219210611943, 34.55467791463771], [-77.32327948864908, 34.55509791583648], [-77.32348021265497, 34.55516856039765], [-77.32350417466557, 34.55517675195453], [-77.32361494305303, 34.55517589518263], [-77.32505052469948, 34.555180862766264], [-77.32553743113016, 34.55520356556177], [-77.32583499435023, 34.555216468391855], [-77.32605134176094, 34.55518105531308], [-77.32630677031527, 34.555278727027826], [-77.3266185569796, 34.555291050524175], [-77.32680182209756, 34.555207585358254], [-77.32705543416614, 34.554948935819006], [-77.32718586947311, 34.55466276582733], [-77.32742292475362, 34.55447153526991], [-77.3277129739851, 34.55458701336814], [-77.32783938319305, 34.55479413286854], [-77.32819901008075, 34.55486732099294], [-77.32836407509328, 34.55498306663313], [-77.32860007494939, 34.55518411973605], [-77.32873712236224, 34.55541908009815], [-77.32877717883783, 34.55553281740811], [-77.32896662561427, 34.555627711371926], [-77.32923308063106, 34.55567067090598], [-77.32927510897804, 34.55583138653433], [-77.32951174971458, 34.555942560465546], [-77.32973891082712, 34.556187769447384], [-77.32979748365275, 34.55620910687375], [-77.32986786931549, 34.556235818715066], [-77.32990906771367, 34.5563381668103], [-77.33025214331096, 34.55667021511549], [-77.3302687486081, 34.55681798006633], [-77.33047836529435, 34.55712732941155], [-77.33050190328382, 34.55714829127307], [-77.33078564806121, 34.55739234561545], [-77.33118205516699, 34.55751581154881], [-77.33121458752356, 34.55755059437339], [-77.3312058269367, 34.557963076101736], [-77.33113007759245, 34.5580129132683], [-77.33105348973352, 34.55815506906054], [-77.33068809206762, 34.558566073916595], [-77.3307765699503, 34.55874776843722], [-77.33095598307817, 34.55901719712455], [-77.33103867328224, 34.5592271998537], [-77.33109795503077, 34.56053816685097], [-77.33109728838325, 34.56069504067386], [-77.33100195152969, 34.5609685780163], [-77.33124286473674, 34.56119533738152], [-77.33185472478468, 34.56162454179145], [-77.33203021558163, 34.56181941424427], [-77.33257136045879, 34.561915488074256], [-77.33281804950278, 34.56188553743365], [-77.33310908083709, 34.56156827852202], [-77.33324737427205, 34.561621703641336], [-77.33360596142975, 34.56185939631267], [-77.33380493096777, 34.56200397935952], [-77.33427705833749, 34.562061788609554], [-77.33439369286086, 34.562050873331685], [-77.33476091555559, 34.5623196453446], [-77.33486969121384, 34.56236414854431], [-77.33518122730271, 34.56248782286957], [-77.33529976997838, 34.56251038646771], [-77.33541859507619, 34.56262107125986], [-77.33580921591646, 34.563242324003], [-77.33592513399637, 34.56339732660421], [-77.33593656342309, 34.56342995155215], [-77.33596820758791, 34.5636224217338], [-77.33608443445695, 34.56409784127288], [-77.33610624971152, 34.56422036839147], [-77.33611004914806, 34.564373327238684], [-77.33617803409751, 34.56483196433334], [-77.33619261778807, 34.565057033101894], [-77.33636072199015, 34.56541933402154], [-77.3363702716056, 34.565445718430155], [-77.33637816495263, 34.56545489718143], [-77.3364675702361, 34.56555730311016], [-77.33670230298745, 34.56583283459012], [-77.3367204296167, 34.565866757115124], [-77.33675413730145, 34.56610606659451], [-77.33683443183628, 34.56666291988907], [-77.33684337053482, 34.56675835115894], [-77.33687933986809, 34.567081004547624], [-77.3368520809004, 34.56719139671677], [-77.33675326976308, 34.56719835225222], [-77.33654225155368, 34.56732672791785], [-77.33635916052697, 34.567373377210764], [-77.33616295397056, 34.56739541483887], [-77.33596514144077, 34.5674340126924], [-77.33568884610162, 34.56737892381038], [-77.33548696296778, 34.56737198519794], [-77.33540774038428, 34.56729257930176], [-77.3351774342764, 34.56714555586732], [-77.33504613027009, 34.56706159190078], [-77.33486549549912, 34.56694599395402], [-77.33478367185634, 34.566892205167065], [-77.33459619613701, 34.56676230693141], [-77.33451231564095, 34.566704187422474], [-77.33438991509547, 34.566634849734186], [-77.33432880574783, 34.56659860801285], [-77.33412899913296, 34.566484089203264], [-77.33410033638182, 34.566419182030884], [-77.33399618600816, 34.56634694986041], [-77.33389115136546, 34.56635016631522], [-77.33378176425829, 34.56625270814048], [-77.33366540340879, 34.566201478650946], [-77.33360237917044, 34.566155738974416], [-77.33287039575363, 34.56553463810596], [-77.33284397373556, 34.56550720797611], [-77.33281504785572, 34.56544418723348], [-77.3324967617708, 34.56524517471617], [-77.33248216844682, 34.56559044324896], [-77.33260908567121, 34.56579382745631], [-77.33260418550945, 34.566421982501716], [-77.33281396563886, 34.56672983815217], [-77.33298048018517, 34.56703725660932], [-77.33293351640296, 34.56722372199853], [-77.33309089255606, 34.56750021116671], [-77.33318074163644, 34.567641204053466], [-77.33320715755701, 34.56765769733093], [-77.33353022260987, 34.5679108442818], [-77.33360087374157, 34.5679657853454], [-77.33360855072974, 34.56796749258241], [-77.33361358134675, 34.56797504358158], [-77.3336389793556, 34.568012496263606], [-77.33391626928903, 34.56835607163516], [-77.33363879125895, 34.5687789118498], [-77.33361528749128, 34.56882387756996], [-77.33360592586799, 34.56883144229079], [-77.33360015256781, 34.568833862905464], [-77.33359054252507, 34.56883778659772], [-77.33320604014094, 34.56899505762743], [-77.33297223052256, 34.56908899183344], [-77.33281188888904, 34.56920064328808], [-77.33245356828118, 34.56937681775036], [-77.33202359676788, 34.56959246368579], [-77.33179903329568, 34.56969213512444], [-77.33148113143113, 34.569979716262], [-77.33164067338262, 34.570368691513856], [-77.33165759907038, 34.57080342961273], [-77.3316710575373, 34.571179919087925], [-77.33169412095569, 34.57129379049527], [-77.33171123321142, 34.57164479847681], [-77.3318323016116, 34.57183147688622], [-77.33202166825811, 34.57186648946306], [-77.33222752351344, 34.571792337629326], [-77.33280980250561, 34.57168794928394], [-77.33320436339682, 34.57143018222426], [-77.33346004119653, 34.57124460987829], [-77.33359843100381, 34.57090871206521], [-77.33371613219302, 34.570634122992104], [-77.33375876892123, 34.57050141082415], [-77.33399298045693, 34.57022718292169], [-77.33412673559428, 34.5701680517824], [-77.33438708744241, 34.57007757484876], [-77.33476012595419, 34.569910207107974], [-77.33478121378872, 34.569902298629096], [-77.33482055796884, 34.56988185806538], [-77.33517534948913, 34.569713508221504], [-77.33534875730086, 34.56961052966565], [-77.33591503880939, 34.5693946438592], [-77.33596358704106, 34.56937109584519], [-77.33605582078926, 34.569421541961276], [-77.33641866947204, 34.56962842119663], [-77.33675121988517, 34.56978359146188], [-77.3368691327336, 34.56992707970885], [-77.33702907581441, 34.570031265132364], [-77.33732295092409, 34.57022164639412], [-77.33753866717777, 34.5704429581693], [-77.33773786027373, 34.57056369625418], [-77.33784976202008, 34.570762350911195], [-77.33802811573356, 34.57105786623212], [-77.33806912267232, 34.57115535300743], [-77.3383258155138, 34.57150556729621], [-77.33833991629363, 34.57152574819981], [-77.33835283959387, 34.57153910106948], [-77.33861129148573, 34.57180980451516], [-77.33870795221378, 34.57191258283727], [-77.33870369661024, 34.57193020105264], [-77.33866119815474, 34.57234384705602], [-77.33868582557189, 34.57272924587896], [-77.33864022517139, 34.57277140542445], [-77.33832470256777, 34.572948214500435], [-77.33810746019397, 34.57303854048374], [-77.33793055000012, 34.573149647777385], [-77.3378327718764, 34.573206734372164], [-77.33773345020501, 34.573279635140345], [-77.33763282429365, 34.57323698450317], [-77.33753648131434, 34.573241059955095], [-77.33736411396616, 34.57319365688675], [-77.33705770683991, 34.57309041455715], [-77.33674868448671, 34.572989161242894], [-77.33651214192167, 34.572907782735214], [-77.33609369060083, 34.572856188712095], [-77.33596068835661, 34.5729921436123], [-77.33559502019116, 34.57323996097868], [-77.3352527750231, 34.57368296447655], [-77.33521481616815, 34.57373445485493], [-77.3351720770666, 34.57375553921998], [-77.33509463451064, 34.573789113762224], [-77.33465696305456, 34.57406292339094], [-77.33438372533729, 34.57418391623948], [-77.33399355456116, 34.57428430037374], [-77.33398629645106, 34.57428596081673], [-77.3339715742855, 34.57429167806623], [-77.33398406950812, 34.57429587370574], [-77.33387724540633, 34.574729776363384], [-77.33402961629368, 34.57508862748684], [-77.3340487429523, 34.57512966483956], [-77.33407215684662, 34.57521603514247], [-77.3341917243041, 34.57553365136587], [-77.33418833633525, 34.57574329247417], [-77.33420191978155, 34.57638126539343], [-77.33399107212108, 34.576839915387005], [-77.33359348963428, 34.57688383159338], [-77.33323399216025, 34.57698221517225], [-77.33319938516156, 34.57699060244056], [-77.3331578031295, 34.57700068007161], [-77.33286894788924, 34.5770659760271], [-77.33280529411996, 34.577080054449304], [-77.33273181957742, 34.57709626517332], [-77.33250114550958, 34.57714715881512], [-77.33241117336485, 34.5772038360162], [-77.33214408051279, 34.57738920187102], [-77.33201692672748, 34.577475395453234], [-77.33197386139202, 34.57750421684485], [-77.331895255163, 34.57756188932888], [-77.3318210410203, 34.57778333276629], [-77.33201677870849, 34.57765091574581], [-77.33233200933894, 34.57800822373433], [-77.33251668605874, 34.578011526802605], [-77.33280451088392, 34.57801927622918], [-77.33303963629645, 34.57799317416312], [-77.33336745603481, 34.577956781345065], [-77.33359266156874, 34.5778880362424], [-77.33386256252825, 34.57783743974558], [-77.3343807791976, 34.57779411887522], [-77.3348586383883, 34.577650691188424], [-77.33516899325349, 34.5775775046869], [-77.33553347682235, 34.57749536975257], [-77.33558875024738, 34.57748318089325], [-77.33595717536033, 34.57739573977076], [-77.33631632023747, 34.577313291769734], [-77.33635127386611, 34.57729361123679], [-77.33645770212266, 34.57721600369711], [-77.33674550798618, 34.577017958149035], [-77.33709458068368, 34.5768145086869], [-77.33723437513176, 34.57647160756592], [-77.33753396040925, 34.576476793902174], [-77.3379681588952, 34.576221282120045], [-77.33832235026611, 34.57600353726187], [-77.33845504804924, 34.57591273042469], [-77.33900144146179, 34.575808793437275], [-77.33911049131783, 34.57584584631951], [-77.33979624010428, 34.575687302998105], [-77.34006287338264, 34.57571563316297], [-77.34033105901904, 34.57550007539058], [-77.3405570789591, 34.57532767707507], [-77.34068691414377, 34.575327310095005], [-77.34116071453795, 34.57504197686325], [-77.3414752928197, 34.57482895395389], [-77.3416383855917, 34.57463857539579], [-77.34211976008582, 34.574548650104845], [-77.34226335253332, 34.57475873389029], [-77.3424388640885, 34.57453681558507], [-77.34279106968037, 34.574577824693165], [-77.34305145451036, 34.574626884329696], [-77.34314211462487, 34.57467127595326], [-77.34324777329046, 34.574868901918975], [-77.34353130793154, 34.57503984500883], [-77.34383898974349, 34.57529683454779], [-77.34404563061128, 34.575592079472855], [-77.34462676579862, 34.575637632956074], [-77.3446854723868, 34.57565965971823], [-77.34502075104653, 34.57567024807471], [-77.34502749566973, 34.575673738310094], [-77.34503481223118, 34.57568784995338], [-77.34502073856636, 34.57568836910718], [-77.34476614709897, 34.57586168002839], [-77.34462655922022, 34.57593557051649], [-77.34421334511674, 34.57619488457652], [-77.34396666559243, 34.577385348127194], [-77.3441612587726, 34.57749651090481], [-77.34462540879123, 34.57759622540411], [-77.34495699905867, 34.5778736599749], [-77.34541319677675, 34.57795677478531], [-77.34616643068334, 34.57801973462585], [-77.34620119364229, 34.57801607835397], [-77.34622696569727, 34.57802070871601], [-77.34662499843523, 34.57799122524438], [-77.34698925329347, 34.577982332560836], [-77.3470223227174, 34.57793407117948], [-77.34719957872815, 34.57728560263419], [-77.34727220036551, 34.57704903213275], [-77.34777815658205, 34.57665840826873], [-77.3482021856012, 34.57652294624192], [-77.34834580113863, 34.576045491348054], [-77.34842605877664, 34.57588242289877], [-77.34841095123771, 34.57535519278632], [-77.34836788495105, 34.57519321984728], [-77.34829137751018, 34.574906901170124], [-77.34836591084434, 34.57456166481241], [-77.34841010420621, 34.57433805175397], [-77.34846766167324, 34.57422191684263], [-77.34856773125247, 34.57425922109102], [-77.34880272228864, 34.57428156601229], [-77.34916949398512, 34.57442935772197], [-77.34935559779842, 34.57446987172056], [-77.34967656275278, 34.574501712426326], [-77.35014360728914, 34.57445880657614], [-77.35073276602608, 34.5742182933691], [-77.3509317818047, 34.574180222348794], [-77.35113941467371, 34.574169085501026], [-77.3517198270172, 34.574105013894204], [-77.35195118762678, 34.57442813791664], [-77.35250762652323, 34.57443578356887], [-77.3525818292981, 34.57450690081907], [-77.35301961880707, 34.57452390329027], [-77.3532560829792, 34.574532423979974], [-77.35329557058337, 34.574532142724955], [-77.35336466004517, 34.57454870660547], [-77.35385195988093, 34.57465361597215], [-77.35408325914159, 34.57507120097249], [-77.35426354042946, 34.57499977448133], [-77.35422357066902, 34.5751997426809], [-77.35414429599473, 34.57527704920186], [-77.35408311876806, 34.57531300245896], [-77.35396837523564, 34.575360078161914], [-77.35368898014117, 34.57554234029336], [-77.35353840861859, 34.5755606627568], [-77.35329487765392, 34.57570673209604], [-77.35310371501825, 34.57556697120497], [-77.35290096146765, 34.575554769318174], [-77.35260346161422, 34.57553686459779], [-77.35250677564136, 34.57585535744697], [-77.35218309217441, 34.57634247792558], [-77.35250622306737, 34.576778480527395], [-77.35264878048457, 34.57697083386006], [-77.35329421780034, 34.576826660330454], [-77.35344539356825, 34.57684702473065], [-77.35403009984121, 34.576925786848555], [-77.35405122057763, 34.57695609091081], [-77.35414486572805, 34.57697684238322], [-77.35486991973528, 34.57743102376975], [-77.35507155119123, 34.577407761053436], [-77.35540803657389, 34.57757657979755], [-77.35565779350226, 34.57770711038327], [-77.35598930665529, 34.577984652068295], [-77.35605164975908, 34.577993747976365], [-77.35628919219131, 34.57829886203626], [-77.35629892295457, 34.578455301961746], [-77.35644512239081, 34.57898321928182], [-77.35646854312648, 34.579096848110915], [-77.35649230409817, 34.57911873117698], [-77.35659424033022, 34.57926489663221], [-77.35704775816598, 34.58008701338062], [-77.35753086772108, 34.58013978748539], [-77.35802054916712, 34.580223954174535], [-77.35830912323266, 34.58024448860736], [-77.35880862874362, 34.580173879368395], [-77.35924364112157, 34.58004044484551], [-77.35959692649385, 34.5796948016191], [-77.35991524415249, 34.578968602094264], [-77.36038549735392, 34.578652864012525], [-77.36092770921334, 34.57848026212126], [-77.36114235904549, 34.57841564135461], [-77.36117365762121, 34.57840440425325], [-77.3611967563898, 34.578416632768345], [-77.36126651650265, 34.57843148489316], [-77.36142029859823, 34.57867524305148], [-77.36151397503087, 34.57887802419988], [-77.36152061371553, 34.579244009780474], [-77.36154409974179, 34.57968990613404], [-77.36196109098222, 34.579649557245475], [-77.36260835556102, 34.57993651048003], [-77.3626804987777, 34.57999990094477], [-77.36249688814844, 34.58080166839977], [-77.36274832136397, 34.581375751150226], [-77.3629011695045, 34.58142785332895], [-77.36298598506403, 34.5815803579204], [-77.3635361769841, 34.581823133649806], [-77.36425571380336, 34.581471543770334], [-77.36432440471901, 34.58146719726059], [-77.36450080619693, 34.5820210179097], [-77.36471812018445, 34.58217204725433], [-77.36472268728774, 34.582179404925085], [-77.36485169535638, 34.58244133228729], [-77.36488488142109, 34.58276056577742], [-77.36459834118779, 34.58304642068234], [-77.36454876024231, 34.58329618211136], [-77.36432355741209, 34.58333934101642], [-77.36397540423046, 34.58351114775044], [-77.36390278810367, 34.58354242999839], [-77.3638428337025, 34.583672992678544], [-77.36364361643129, 34.584033000802876], [-77.3637305478969, 34.58423110209705], [-77.36387343210482, 34.584484330378935], [-77.36417793975963, 34.58480517633186], [-77.36424375681412, 34.58488092788331], [-77.36432284740015, 34.58491240564025], [-77.36445869347193, 34.58491111306109], [-77.36459431429479, 34.58474522287929], [-77.36486351640852, 34.58443965099768], [-77.36511129210001, 34.58412150379228], [-77.365412666796, 34.58410297381409], [-77.36589927749701, 34.58435784328918], [-77.36612798126212, 34.584278001293924], [-77.36675782904835, 34.58443367494912], [-77.36721823750989, 34.584644378317165], [-77.36740791007949, 34.585189172006224], [-77.36742640000682, 34.58523897114608], [-77.36722490826135, 34.58579533548862], [-77.36693582691123, 34.586106270716286], [-77.36668653199905, 34.586335867382736], [-77.36636741672378, 34.586693585443136], [-77.36606702731186, 34.58708049485358], [-77.3659692371247, 34.58717125827006], [-77.3658980273337, 34.58725652536389], [-77.3656858109644, 34.58736397945141], [-77.3653870657512, 34.58747711653269], [-77.36510980291982, 34.58750043120034], [-77.36476911827307, 34.5877495673646], [-77.3646606955594, 34.587766733651], [-77.36432151479569, 34.58787524871421], [-77.3641947474349, 34.587911203262124], [-77.36408688956502, 34.58796198991615], [-77.3639273620048, 34.58807593244822], [-77.36375807700225, 34.588262071333446], [-77.36367737014288, 34.58842908406531], [-77.36362559824147, 34.58860599846647], [-77.36363264311832, 34.58870468615316], [-77.36371867619437, 34.588916719691696], [-77.36379540021312, 34.58910580727921], [-77.36368270129057, 34.58928358923021], [-77.36353267961921, 34.58942998619388], [-77.36335260746367, 34.589594114269325], [-77.3632211416977, 34.589702092764014], [-77.36313846887933, 34.58973631069956], [-77.36300050703835, 34.589793412004624], [-77.3627443220168, 34.5898994453103], [-77.36259080413085, 34.58996298476343], [-77.3623501734848, 34.590062578720435], [-77.36196478677275, 34.59020903758071], [-77.36195603089352, 34.59020990718705], [-77.36194635872593, 34.59021070333163], [-77.36189081727673, 34.59022911898456], [-77.36163372823057, 34.59034352032838], [-77.36160948416351, 34.590642747233424], [-77.36177443337493, 34.59067042755728], [-77.36195579660023, 34.59070289735321], [-77.3622954004056, 34.59065413754677], [-77.36238357570045, 34.590619001995115], [-77.36274401917672, 34.59054939633186], [-77.36293012005608, 34.59072801963288], [-77.36334300192829, 34.59086916130735], [-77.36347279535104, 34.59091426039015], [-77.36353193520627, 34.59106075952256], [-77.3638852936048, 34.591640194991385], [-77.36387686044245, 34.59211840036509], [-77.36408987480313, 34.592459850462696], [-77.36431940550911, 34.59259350597444], [-77.36494378437564, 34.59233690435133], [-77.3650719635336, 34.59227993793231], [-77.36510772115865, 34.592254827771846], [-77.3652109521046, 34.592187253193664], [-77.36589606882436, 34.591826139548786], [-77.3664586663483, 34.59187579019851], [-77.36668425549473, 34.5917622177527], [-77.36703566754814, 34.59156507598519], [-77.3670784245919, 34.59154547625087], [-77.36712149298077, 34.59155236970776], [-77.36711531554779, 34.59159966174844], [-77.36711420529387, 34.59163841080194], [-77.36694935643783, 34.59204811641925], [-77.3672857984192, 34.59264812304212], [-77.36739944061515, 34.59283241671432], [-77.36743976606657, 34.592861299900015], [-77.36747190027745, 34.59302408590284], [-77.36767884051784, 34.59426692479796], [-77.36767382631183, 34.59449113169654], [-77.36780965940812, 34.59483623072197], [-77.36761935387723, 34.59603703444742], [-77.3676869665741, 34.59618746661645], [-77.36805053735327, 34.59676008824951], [-77.36747052832058, 34.59640271604722], [-77.36726245186526, 34.596472717543506], [-77.365893824258, 34.597107122560416], [-77.36551153848643, 34.597787421901785], [-77.3652599239616, 34.59823516267271], [-77.36488533408101, 34.59890174877305], [-77.36431616377268, 34.59991455954056], [-77.36425911692987, 34.60001607156967], [-77.36425345320231, 34.60014573394302], [-77.36431598629409, 34.60031794924082], [-77.3645379094804, 34.60149594250769], [-77.3646715460573, 34.60171631984749], [-77.3649311098294, 34.60234251584875], [-77.36497210199599, 34.602522159529805], [-77.3650003897403, 34.602628870039844], [-77.36510311811507, 34.602899878228015], [-77.36511230654786, 34.60292652980836], [-77.36510310265369, 34.60293594303475], [-77.36488156355199, 34.60314576307145], [-77.36451130306374, 34.603437610784766], [-77.3643855600146, 34.60353217645685], [-77.36431454318343, 34.60360667706393], [-77.3640449244958, 34.6039293080438], [-77.36400121128736, 34.604022839255435], [-77.36379428821883, 34.60438994418956], [-77.36413587715398, 34.60499808078206], [-77.36419369191974, 34.60518155537282], [-77.36409949539173, 34.605425897634994], [-77.36395954816282, 34.60606437261362], [-77.36378338918243, 34.60636801210744], [-77.36385207164183, 34.606576594670834], [-77.36405693067327, 34.60662339738666], [-77.36431332381967, 34.60639950612826], [-77.36490322456288, 34.60614233817569], [-77.36510165122453, 34.606331857330396], [-77.36549936434389, 34.60627105813245], [-77.36589008447456, 34.606006487036026], [-77.36593284061243, 34.60578028378278], [-77.36636381217627, 34.6053791194616], [-77.36660632928961, 34.605258759641465], [-77.36667869578505, 34.60522886981384], [-77.36672323887139, 34.60524192673512], [-77.36699138486851, 34.60529103020402], [-77.36707281033965, 34.6053002297036], [-77.3671819850839, 34.60529346971361], [-77.36746692803054, 34.60536521605361], [-77.36762826556796, 34.60536238525252], [-77.36786107457031, 34.6053583003968], [-77.36810861648041, 34.60530906932931], [-77.3682552786727, 34.60520309801255], [-77.3685346593492, 34.60498109864745], [-77.36861556491735, 34.60493286700628], [-77.36864953221989, 34.604915335116715], [-77.36872108969591, 34.6048771886278], [-77.3690437523083, 34.604708437976676], [-77.36919505959213, 34.60462439194041], [-77.36943797631616, 34.604485719064655], [-77.36947797405807, 34.60446377681145], [-77.3695083364837, 34.60441632860477], [-77.36943812555077, 34.60408844044164], [-77.3694135034109, 34.60403197283156], [-77.36942041083783, 34.60400443288634], [-77.36942008642451, 34.603985006224256], [-77.36943823438213, 34.60379891700728], [-77.36945462306706, 34.60359251841731], [-77.3697797946279, 34.60358484002666], [-77.36983243121091, 34.60363515296874], [-77.37012421329491, 34.60379288643828], [-77.37024923540736, 34.60386056512196], [-77.37028318850432, 34.60388018325462], [-77.3702601483469, 34.60391978767986], [-77.37037259419176, 34.604291865620965], [-77.37022622831583, 34.604558064008515], [-77.37017082750923, 34.604685855028855], [-77.37008283390813, 34.60475815317212], [-77.36983193849164, 34.60496361563307], [-77.36965877490042, 34.60505729020346], [-77.36946934227561, 34.605271059573056], [-77.36943766995313, 34.605302230807546], [-77.3693060402096, 34.6054363085511], [-77.36924052260463, 34.60550304465886], [-77.36923199035319, 34.605508329830506], [-77.3690434185619, 34.60558728269919], [-77.36874270585552, 34.60569956666739], [-77.36864921818409, 34.60573237764997], [-77.36858994661756, 34.60575841777086], [-77.36831889236547, 34.60586128288819], [-77.36825501309994, 34.605885884057074], [-77.36799705402791, 34.60605439123783], [-77.36750667313973, 34.60635955476246], [-77.36746652537705, 34.60637646069187], [-77.36745045847464, 34.60639358804008], [-77.36737476757904, 34.60642178559462], [-77.36707231077204, 34.60654027362169], [-77.36678040607208, 34.60661753043435], [-77.36667809679358, 34.60669866619581], [-77.36633374087154, 34.606942487430565], [-77.36611365466565, 34.60684455484638], [-77.36609641793092, 34.60703040026444], [-77.36588961792226, 34.60712630685023], [-77.36573070290773, 34.60733653113733], [-77.36571565893777, 34.60750977532891], [-77.36549516671737, 34.60783629498491], [-77.3654457971809, 34.607920043875154], [-77.365392263903, 34.607980890182276], [-77.36510084139377, 34.60823476601616], [-77.36500505160781, 34.608358070677994], [-77.36492601831277, 34.608472569112905], [-77.36470642888926, 34.608827616987725], [-77.36466604619544, 34.60889108332356], [-77.36460607559138, 34.60894318399107], [-77.36431209793811, 34.60921984883364], [-77.36415031800306, 34.609259112990664], [-77.36397585949155, 34.609458462760955], [-77.36374374160681, 34.60972904710578], [-77.36352342179558, 34.61001163226954], [-77.36331304464602, 34.610176468132124], [-77.3630879848609, 34.610435381521135], [-77.36329596716222, 34.61065012681108], [-77.36322241046683, 34.61094136950822], [-77.3631684944979, 34.611272901066556], [-77.36309696038067, 34.611673768771155], [-77.36309659485634, 34.61170780553836], [-77.36304740025055, 34.61180218832814], [-77.36285695713858, 34.61216685380632], [-77.36281069290526, 34.612256034808986], [-77.36273401320955, 34.61239471241913], [-77.36260997491661, 34.61262695857142], [-77.3625024823117, 34.61281781835835], [-77.36246107207909, 34.612942098328276], [-77.36241658592192, 34.613079348550045], [-77.36239868031032, 34.613145672945045], [-77.36233938421393, 34.61338637172311], [-77.36230871287881, 34.61348644367021], [-77.36229805954434, 34.61352096264456], [-77.36230310827237, 34.613559222150904], [-77.36231507005988, 34.613917140328496], [-77.36222270027335, 34.6139563631515], [-77.3620064695182, 34.61405380380448], [-77.36194488451211, 34.614076937627736], [-77.36188995010943, 34.61406342964382], [-77.36155066692751, 34.614144678429], [-77.36127827108245, 34.61422350721251], [-77.36115643035166, 34.61425150592299], [-77.36103319160786, 34.61426029531061], [-77.3607622089685, 34.61432389738107], [-77.36046695286412, 34.61431560973719], [-77.36036802181276, 34.61432298729616], [-77.36028349432397, 34.614326501469364], [-77.36008161951129, 34.61426451753519], [-77.3598261741115, 34.61403591132591], [-77.35957999636454, 34.61360457092033], [-77.35952700407645, 34.613552331883064], [-77.35948769081409, 34.61350088739373], [-77.35925542865515, 34.6131845177822], [-77.35919326291994, 34.61311094330499], [-77.35879247371082, 34.612751831481646], [-77.35879224131084, 34.612751660397706], [-77.35879205154656, 34.61275139536832], [-77.3584218800457, 34.61235496526424], [-77.3581936415302, 34.61198890207283], [-77.35800419762833, 34.61175150413092], [-77.35763252680931, 34.611620928063985], [-77.35757151020141, 34.611612319623475], [-77.35721594356603, 34.61156215485093], [-77.35649962907891, 34.61146109052499], [-77.35642756428952, 34.6116169306671], [-77.35550659633739, 34.61223305580888], [-77.3554047404503, 34.61323928989667], [-77.35571226420807, 34.613964109364446], [-77.35593750132281, 34.61486084527047], [-77.3558039565115, 34.61554946565514], [-77.355814812195, 34.61572760021949], [-77.35642534810532, 34.61583722947666], [-77.35668264654875, 34.61587987064861], [-77.3568876568548, 34.61592438061024], [-77.35721359582718, 34.61611587223891], [-77.35731898457993, 34.61624669923444], [-77.35740097453771, 34.61634847816842], [-77.3576856401691, 34.616647934978786], [-77.3577567490583, 34.61672183675091], [-77.3580015558585, 34.61697508558639], [-77.35806569330806, 34.61703282573051], [-77.35814088651303, 34.617091112745], [-77.35854193962464, 34.617300340920096], [-77.35878976702962, 34.617359340294136], [-77.35889760902063, 34.617406773312496], [-77.35909417899259, 34.61747512843201], [-77.35918388573968, 34.617530060194724], [-77.35924470085757, 34.61756910182139], [-77.35930570954311, 34.61764133698719], [-77.35935135541285, 34.617766029654774], [-77.35937531457438, 34.617968978777256], [-77.35935221100978, 34.61797818275013], [-77.35918364211396, 34.61802813715564], [-77.35902860403432, 34.6180700758373], [-77.35893320655344, 34.6180958812397], [-77.35878940211596, 34.61809819732099], [-77.3586087161911, 34.61806750770951], [-77.35839524886568, 34.617992685395144], [-77.35809265418933, 34.61804584784076], [-77.35800096266914, 34.61815326393327], [-77.35777554583541, 34.618417337341626], [-77.35769122730018, 34.61852064346763], [-77.35728283882102, 34.61883670734395], [-77.35721217531108, 34.618884851449295], [-77.357182573194, 34.61889533553271], [-77.3571051591506, 34.618938348815696], [-77.35656811136538, 34.61917124690305], [-77.35642354264235, 34.61929324363981], [-77.35604963004997, 34.61953676632477], [-77.35580432641657, 34.619974611783306], [-77.35573217978815, 34.62008997668276], [-77.35563458286884, 34.620303590999825], [-77.35542137046124, 34.62064938682107], [-77.35484561458446, 34.62129526431116], [-77.3545951548406, 34.62157720548205], [-77.35405690182138, 34.62178618700418], [-77.35387833229267, 34.62175756726326], [-77.35357147853715, 34.6216677673706], [-77.35326860630227, 34.62151179184281], [-77.35307401611166, 34.621426103792174], [-77.35279535633057, 34.6212565775147], [-77.35261378135397, 34.621139021849636], [-77.35222982423085, 34.62106805886655], [-77.35201764003281, 34.62186632329698], [-77.35187439721904, 34.62223814598432], [-77.35185714168082, 34.62241934138939], [-77.35174355803355, 34.622524541711456], [-77.35140825829728, 34.62333458928871], [-77.35129706026473, 34.62348780336599], [-77.35090547040501, 34.62406044323339], [-77.35086655714704, 34.624163186199155], [-77.3508061813717, 34.624230326286195], [-77.35065923156797, 34.6243088161495], [-77.35022828015205, 34.62453997065755], [-77.34997036918627, 34.624660820679395], [-77.34964370596798, 34.624816435735326], [-77.34925256503554, 34.62479840678398], [-77.34899334054643, 34.624765593361104], [-77.34886145682887, 34.62495984717914], [-77.34859783507, 34.624946918339994], [-77.34839583747782, 34.62497775798375], [-77.34808150192558, 34.62489881376309], [-77.34804400099017, 34.62489558181052], [-77.34788768282993, 34.62471784546315], [-77.3477718903213, 34.624490850342156], [-77.3478254137305, 34.62399250012204], [-77.3480251377999, 34.6236120669969], [-77.3476340816758, 34.62341092755253], [-77.3467913241836, 34.62302694773789], [-77.34671978448637, 34.62300849073866], [-77.34669219603879, 34.62297993731902], [-77.34664517813874, 34.62295758544291], [-77.34531612855935, 34.622394404395365], [-77.34478293450738, 34.622168461073485], [-77.34363668005864, 34.6216827075699], [-77.34251734947036, 34.62120835574045], [-77.34234919808873, 34.62154784857879], [-77.34220694386569, 34.62187901802294], [-77.34173522457375, 34.62230899690857], [-77.3415704267619, 34.62286746762947], [-77.34139234958843, 34.62332331222718], [-77.3413284015825, 34.62368762730522], [-77.34117511881783, 34.62408611218086], [-77.34097467499394, 34.62426778380411], [-77.34093989260201, 34.62458495878971], [-77.34070538334342, 34.624934322905695], [-77.3405556823208, 34.62521103322736], [-77.34020530687398, 34.62552979664372], [-77.34019396068965, 34.62554050791841], [-77.34018839732883, 34.62554737462041], [-77.34017116782643, 34.62556073869793], [-77.33966841112199, 34.625716994918704], [-77.33958194631637, 34.62571510328904], [-77.33951347288289, 34.62571502182764], [-77.33927125212172, 34.62576179242627], [-77.33896267018848, 34.62572521111779], [-77.33894317579933, 34.62572195062893], [-77.3389191026278, 34.625706352768816], [-77.33854284059217, 34.62534091133409], [-77.33853927786127, 34.62532982278267], [-77.33865368542034, 34.6248987914643], [-77.33869332708944, 34.62480640930417], [-77.33857814688548, 34.6241229687352], [-77.33855782860056, 34.624067956298695], [-77.33822122967528, 34.62372124452043], [-77.33820767017957, 34.6237085350484], [-77.33785612405856, 34.623496997939164], [-77.33775902866105, 34.623448881634964], [-77.33757686732297, 34.62335860906284], [-77.33731073441407, 34.623188543311], [-77.33656415271423, 34.62265361353973], [-77.33637819034172, 34.62251271444661], [-77.33545252143298, 34.62227599700482], [-77.33499640317753, 34.62200700089287], [-77.33456200000788, 34.62228264265831], [-77.3338886518973, 34.62286596226011], [-77.33367628806468, 34.62304992903184], [-77.33320179682568, 34.62368148985375], [-77.33354644401854, 34.626049859190054], [-77.33403426556939, 34.62637675893333], [-77.3348607980015, 34.62790014977457], [-77.33489056409054, 34.627980405152904], [-77.33510480700843, 34.62960581082742], [-77.33528111150133, 34.62979970909898], [-77.33529843634443, 34.62964345504224], [-77.33530059776177, 34.629578943402336], [-77.33540691102918, 34.629254004522195], [-77.33497824565877, 34.62800983444406], [-77.33573784119997, 34.628598807456704], [-77.33638728907525, 34.62893255674606], [-77.33663924324317, 34.62911006353505], [-77.33724201891201, 34.62931250737612], [-77.33761772879268, 34.629468712935434], [-77.33777819101387, 34.62948298334014], [-77.33823943944736, 34.63001960538719], [-77.33825111468144, 34.630510666922035], [-77.3382514571312, 34.6308619482722], [-77.33878631120966, 34.63131459925508], [-77.3389553609596, 34.63141234808079], [-77.33930304520449, 34.631381206419206], [-77.33943349173887, 34.63134940151423], [-77.33960786235879, 34.63126843971905], [-77.33972696407754, 34.63121688711288], [-77.3398012156889, 34.63117912044204], [-77.33999005438496, 34.63108571541152], [-77.34002098607685, 34.63108711296434], [-77.34020800245975, 34.63122820264974], [-77.34032977318947, 34.63142067110144], [-77.3405455245348, 34.631707971133025], [-77.34067753284657, 34.631794931634815], [-77.34087611042892, 34.632156890572105], [-77.34089310452765, 34.6321678310269], [-77.34089737303889, 34.63218675117015], [-77.34089396868065, 34.632199480450325], [-77.34089004037703, 34.63222622120542], [-77.34058392713926, 34.633073772491784], [-77.34095877963313, 34.63359449864302], [-77.34117058896443, 34.63383723576416], [-77.34119708956098, 34.63386213396079], [-77.34122661887241, 34.63390136776762], [-77.34150492430322, 34.63440071556796], [-77.34167784118083, 34.63455390103], [-77.34171745924058, 34.63460615952034], [-77.34179572940624, 34.634709586040984], [-77.34186821597675, 34.634829495566436], [-77.34187008045566, 34.63500720584165], [-77.34184711172611, 34.63509118277094], [-77.34172757358735, 34.63544876624016], [-77.34165483332383, 34.63557890065386], [-77.34159047790511, 34.63571220087914], [-77.34150048848377, 34.63590193719445], [-77.34141416048172, 34.6360214356223], [-77.34116115616872, 34.63637051537391], [-77.34112235434479, 34.63641623067943], [-77.34109751167563, 34.63644507195341], [-77.34100634676874, 34.636536042048334], [-77.34083282007572, 34.63672090295563], [-77.34078325702033, 34.63676687265555], [-77.34066906288736, 34.636860061255874], [-77.34055951566296, 34.63695387783718], [-77.34039774702856, 34.63707418120518], [-77.34028048900424, 34.637158380378004], [-77.34004250596801, 34.637296323358036], [-77.33999442238107, 34.63732785202836], [-77.33995762493578, 34.63733050141176], [-77.33992156392208, 34.6373846612376], [-77.33956573007416, 34.63763185145437], [-77.33943617301927, 34.63773591192377], [-77.33937735226046, 34.637789595356836], [-77.33929758372956, 34.63784277431767], [-77.33927354582167, 34.63785948751023], [-77.33920403010232, 34.63790514316207], [-77.33916866082045, 34.63792837257138], [-77.3391584213312, 34.637946785386504], [-77.33912543417162, 34.63796396579523], [-77.33898941829402, 34.63793459871982], [-77.3388584388053, 34.637918551296615], [-77.33882557480398, 34.63788344279863], [-77.33866265511895, 34.63773214730466], [-77.33847774789376, 34.63758282788628], [-77.33829266196852, 34.63731662928074], [-77.33807638518154, 34.63734113951728], [-77.33789373184914, 34.637405225091904], [-77.33766899036502, 34.63740335880807], [-77.33745054847557, 34.63741281157991], [-77.33721924942033, 34.63733354974913], [-77.33714064257863, 34.63730136101816], [-77.33710296201303, 34.63727607526283], [-77.33675862546609, 34.63701261002124], [-77.33672477988519, 34.63698702755072], [-77.33672107581398, 34.636984002505535], [-77.33671577699353, 34.63698064785105], [-77.33626716304167, 34.6367346445659], [-77.3360551659541, 34.63664930787282], [-77.33605361894348, 34.63635430066272], [-77.33603108919844, 34.63623061687918], [-77.33609233084206, 34.635932783827535], [-77.3358909720674, 34.6360233489462], [-77.33567941579403, 34.63560227417793], [-77.33521624529456, 34.63557237264581], [-77.33515765758345, 34.63555988860956], [-77.33512311645516, 34.63555562986121], [-77.33493805182796, 34.6355366170925], [-77.33484821510366, 34.63552587621784], [-77.33482792304102, 34.63551196841322], [-77.33458505344417, 34.63547288097654], [-77.33441105414605, 34.63482047607688], [-77.33444920836993, 34.634759706099395], [-77.33463494153008, 34.63455115784063], [-77.33473345018018, 34.634454235638614], [-77.33479704376924, 34.63390526146205], [-77.33475229757072, 34.63387412848748], [-77.33477880680337, 34.63367369209637], [-77.33483904323084, 34.63321824091595], [-77.33487514596646, 34.633013281644025], [-77.33492322962078, 34.63250749314782], [-77.3350382792446, 34.6313029174718], [-77.33415004194106, 34.630543014031744], [-77.33310297865862, 34.63151940447911], [-77.3330615167393, 34.631558276964334], [-77.33306409726049, 34.63157380804238], [-77.33244146375247, 34.632313847312815], [-77.33242431917454, 34.632505574725634], [-77.33223112249584, 34.632784732186686], [-77.33208257892798, 34.632999366607294], [-77.33189853447101, 34.63314145127717], [-77.33177893357015, 34.63343810616048], [-77.3316706462388, 34.63359595352521], [-77.33172560856373, 34.634246064599694], [-77.331757197649, 34.634285074214915], [-77.33192147284949, 34.63449751888552], [-77.332076903497, 34.63469852579274], [-77.33210629960531, 34.63471149035759], [-77.33219023556065, 34.634748508480826], [-77.33245751157074, 34.63486638499671], [-77.332554499683, 34.63490097070778], [-77.33279421732006, 34.634986784474386], [-77.33280001192435, 34.63498890349306], [-77.3328076683824, 34.63501602086918], [-77.33293737751704, 34.63529092253276], [-77.33289822735554, 34.63540967066523], [-77.33288835218328, 34.63541777218454], [-77.3328601275285, 34.635443846003554], [-77.33275334538723, 34.635542491046394], [-77.33270891172074, 34.63556653625404], [-77.33260517532958, 34.63560166663213], [-77.33243342681115, 34.63564293274194], [-77.33229397681968, 34.63564603461334], [-77.33217453927121, 34.63565312505506], [-77.33198353509444, 34.635694172139644], [-77.33181296228447, 34.635730828013365], [-77.33167450830382, 34.63574935677257], [-77.33155166208307, 34.63573825742199], [-77.33151185197701, 34.63573640080094], [-77.33145270603703, 34.63572805971525], [-77.33134730851839, 34.63571404618287], [-77.33104970273662, 34.63564811310651], [-77.33102494979423, 34.63563302739953], [-77.33101109193261, 34.63563383140846], [-77.33099134919593, 34.635630874543], [-77.33067141094537, 34.63553635928409], [-77.33051338458651, 34.63549781456485], [-77.33050306994286, 34.635495089713544], [-77.33047647634129, 34.63548370875242], [-77.33032974362187, 34.63542899092066], [-77.33019713670964, 34.63534307761592], [-77.3301357523618, 34.635097490431406], [-77.32990899338623, 34.63462006895098], [-77.32989432450445, 34.634540632698034], [-77.32982385007395, 34.634503728819354], [-77.32979718322092, 34.634515648280995], [-77.32925022820324, 34.63455469861816], [-77.32919479885216, 34.63455928875955], [-77.32912175833577, 34.634552196409146], [-77.32869722601508, 34.63450151509479], [-77.32854436963805, 34.63450837172939], [-77.32833273665527, 34.634754836095574], [-77.32835108179964, 34.63516713231207], [-77.32835241486022, 34.6351741285299], [-77.32811931905682, 34.63558002347014], [-77.32810301431367, 34.63560280418845], [-77.32807093946808, 34.63563472727561], [-77.3278530188835, 34.635848025390146], [-77.32772716620954, 34.63591913896272], [-77.32758351940527, 34.63610010072132], [-77.32757599323328, 34.636111630897666], [-77.3275283623547, 34.6361311368854], [-77.32732900428849, 34.636214636437366], [-77.32728868201885, 34.63622597625825], [-77.32723640261102, 34.63624518132464], [-77.32694615026098, 34.63611428588162], [-77.32665732222527, 34.63624358342637], [-77.32664084405563, 34.63623929229175], [-77.32631546050376, 34.636161743770145], [-77.32598757455156, 34.63642142737956], [-77.32577443742635, 34.63665587054788], [-77.32573057892269, 34.63672387479229], [-77.3256709247031, 34.63680786909263], [-77.3253930302622, 34.637075986675725], [-77.3252348065007, 34.63715696196306], [-77.32517877220768, 34.63720956361519], [-77.32497098618236, 34.63728570795399], [-77.32494199363487, 34.63729295555825], [-77.3249098107832, 34.63729204918334], [-77.3246711140885, 34.63730534399246], [-77.32462004480288, 34.63728380667467], [-77.3244150823713, 34.63723821498981], [-77.32400316134088, 34.63703657238651], [-77.32394853616461, 34.63701387781722], [-77.32392185693764, 34.63699503787211], [-77.32381226909231, 34.636934343059224], [-77.3235597966709, 34.63678604445952], [-77.32350100196422, 34.63675191749056], [-77.32320449358033, 34.636610704599285], [-77.32296484234706, 34.63666535206216], [-77.32277604738145, 34.63663389270714], [-77.32256176283173, 34.636598185970385], [-77.32242685653975, 34.63658240007584], [-77.32221033011146, 34.636438423206485], [-77.32184006872879, 34.636192220510154], [-77.32148836211772, 34.63614443456821], [-77.32117760862953, 34.636081365328835], [-77.32098239124448, 34.63629334750782], [-77.32057766948937, 34.6362820535884], [-77.32032959739331, 34.63614237438337], [-77.3201626561933, 34.636195073320735], [-77.31993445659259, 34.63626710936879], [-77.31963962547992, 34.636360178187196], [-77.31963341929197, 34.63636213728716], [-77.3196286958362, 34.636363728509494], [-77.31959593240987, 34.63637486767878], [-77.31936654723702, 34.63645256886973], [-77.31933866221577, 34.6364884642172], [-77.31914205986483, 34.63657658778383], [-77.31885479898082, 34.63676566670453], [-77.31876375798777, 34.636813939359634], [-77.31869026418347, 34.636821992555454], [-77.31854171221725, 34.63681143591714], [-77.318433326903, 34.63676249398084], [-77.31829589833926, 34.636724086555446], [-77.31806061231887, 34.63650031421594], [-77.31788698617535, 34.636385716863145], [-77.31777511373508, 34.63620247975772], [-77.31756438128144, 34.63587657654403], [-77.31752904412521, 34.63573728503575], [-77.3175464033477, 34.63538985783346], [-77.31759178179456, 34.63467487133502], [-77.31758735279904, 34.63454027327925], [-77.31757864593796, 34.63444875255575], [-77.31755929867563, 34.6341221330227], [-77.31739371853166, 34.63391930947597], [-77.3173557769677, 34.633728044432345], [-77.31713065906538, 34.63336282840834], [-77.31710973586684, 34.63333376880335], [-77.31708025708198, 34.633315744606755], [-77.31673968573378, 34.63310750955373], [-77.3166667297072, 34.63306290198788], [-77.3165264638136, 34.63299774658374], [-77.31638079021933, 34.632914097348376], [-77.3161718875546, 34.632894607511595], [-77.3160366137603, 34.63279404389749], [-77.31539216765536, 34.632309244906715], [-77.3153391696807, 34.632247438768545], [-77.31528398169252, 34.63223349754253], [-77.31494978659089, 34.631992917968645], [-77.3149043450384, 34.63196039988271], [-77.31489230226317, 34.631955769673596], [-77.31456415953994, 34.63183645930829], [-77.31441457930009, 34.631782072712454], [-77.31404262318685, 34.63165023368495], [-77.31381229942201, 34.63127965678387], [-77.31366147599493, 34.63097741346111], [-77.31361992996497, 34.63086419373596], [-77.31365265123532, 34.630781079277455], [-77.31363731179177, 34.63043982785157], [-77.3136369208075, 34.630432649957974], [-77.3135490264864, 34.63005253636475], [-77.3135401668685, 34.630031157008766], [-77.31349561629555, 34.62996689928683], [-77.31322659464865, 34.62954314192813], [-77.31295382470981, 34.62926754274217], [-77.3126886413435, 34.62886906215744], [-77.31245031533928, 34.62878439227465], [-77.31201994995635, 34.62872674302742], [-77.31137706282615, 34.62865500550469], [-77.3113654023856, 34.62865495256833], [-77.31135044087499, 34.62866591895802], [-77.31077478002757, 34.62890190646665], [-77.31048850753277, 34.62915976645699], [-77.30997222576542, 34.629676098278566], [-77.30941473778846, 34.630826481090466], [-77.30905253028672, 34.63308280143605], [-77.30898656837121, 34.63318700292351], [-77.30912145934744, 34.63589244702641], [-77.30935298682218, 34.63651265015798], [-77.30940761034277, 34.63709874116901], [-77.30993975378095, 34.63980812051248], [-77.31025454615586, 34.640012444750504], [-77.31047242421837, 34.640162799978675], [-77.31225364603203, 34.64064691300994], [-77.31317110677996, 34.64084937538632], [-77.3132091803765, 34.63971129867889], [-77.31417030045019, 34.63944726059523], [-77.31426314802978, 34.639360946630354], [-77.31475987944903, 34.639194773351484], [-77.31536747145933, 34.639076001373425], [-77.31537589849752, 34.63907408594705], [-77.31538846135102, 34.63907723673642], [-77.31545898255034, 34.639051844434306], [-77.3159540375433, 34.63876460111511], [-77.31638604858657, 34.638924786072955], [-77.31659314093685, 34.63894581670716], [-77.31663849144157, 34.6389850154006], [-77.31669119616947, 34.63895925311371], [-77.31726902533892, 34.63893668130337], [-77.31730435126752, 34.63886456464846], [-77.31783394239002, 34.63878566956608], [-77.3178804918781, 34.63879332517439], [-77.31800882156729, 34.63885516973349], [-77.31835323659642, 34.63890564793416], [-77.3185363793896, 34.639347946688744], [-77.31856022376576, 34.63947075025714], [-77.31848392905769, 34.63979455833093], [-77.31834277224, 34.640344529568104], [-77.3182806132136, 34.64044389468177], [-77.31823460588748, 34.64055805488843], [-77.31796007246908, 34.6412409584711], [-77.317914340271, 34.6414366278241], [-77.31780215152656, 34.641593581193504], [-77.31739563755781, 34.6421622947915], [-77.31734163212116, 34.642236549638554], [-77.31732816928503, 34.642422203020544], [-77.31722458442997, 34.643029710599265], [-77.31722498470617, 34.643462457293765], [-77.31715971581824, 34.643882571278255], [-77.31731964643737, 34.64439323105421], [-77.3178518096883, 34.64547565594983], [-77.3179496541788, 34.64551925064427], [-77.31797712788881, 34.64545847966128], [-77.3181805753163, 34.64498484845778], [-77.31829708352771, 34.644463821235426], [-77.31838863987973, 34.644516191664664], [-77.31858769117515, 34.644067829138706], [-77.31860911458224, 34.64401957254931], [-77.31876778590068, 34.643662161545144], [-77.3187971417929, 34.64359603697506], [-77.31882985800847, 34.6435243043326], [-77.31898465042157, 34.64321044878717], [-77.31902757271912, 34.643143842468284], [-77.31928293118489, 34.64274757507347], [-77.31929606274905, 34.64272719752073], [-77.31930706589182, 34.64271179873742], [-77.31933542788049, 34.64269982528314], [-77.31986518524184, 34.64230249801185], [-77.32008212278275, 34.64212655442426], [-77.32024615540162, 34.64204530791241], [-77.3204350796006, 34.6419518963988], [-77.32066558268596, 34.64200409548713], [-77.32083569551635, 34.642026320837445], [-77.32114180080694, 34.64228304087587], [-77.32128481922337, 34.64228518682944], [-77.32156512992299, 34.6424347131518], [-77.32131587623316, 34.64261145733671], [-77.3212233747731, 34.642689470643006], [-77.32097685621443, 34.64293735031855], [-77.3209645620854, 34.64295074153913], [-77.32096002549052, 34.64297238390098], [-77.32087601554736, 34.64337316196286], [-77.32110787936998, 34.64370903774052], [-77.32112820757551, 34.643742681356514], [-77.32114092759569, 34.64375883219174], [-77.32121249915338, 34.64384970740067], [-77.32144088884276, 34.644139696802945], [-77.32153961757764, 34.644265052691566], [-77.32206640252566, 34.64418140600602], [-77.32221920526612, 34.64412252039457], [-77.32219114598561, 34.64403683824626], [-77.32217290512574, 34.643970658104095], [-77.32200860082295, 34.64341167763021], [-77.32195938455807, 34.643245559418034], [-77.32195384614471, 34.64322539650823], [-77.32194708657956, 34.643200983985366], [-77.32194339948003, 34.64308684301993], [-77.32189824528845, 34.64248797272487], [-77.3219405618825, 34.642383242015484], [-77.32199455632549, 34.642244226215766], [-77.32208170559926, 34.6421809748555], [-77.32221426535148, 34.64211572849737], [-77.3223713285928, 34.64202898560584], [-77.32267313169132, 34.6418768968355], [-77.32297603961568, 34.6418518870427], [-77.32327420946503, 34.64179132220781], [-77.32329189210446, 34.64178740270094], [-77.32359603543328, 34.641750942936596], [-77.32393177068901, 34.641717625290056], [-77.32420860963619, 34.64161303358237], [-77.32447632082004, 34.64155882058767], [-77.32455508494053, 34.64155184943407], [-77.32487186931624, 34.64172761100658], [-77.32516152228283, 34.64194160077114], [-77.32542951185135, 34.642116730776564], [-77.3256189111082, 34.6422594984211], [-77.32563868106902, 34.64227663157908], [-77.32587450333233, 34.64226581867064], [-77.32593614142242, 34.64226180002975], [-77.32594240387905, 34.6422606362023], [-77.32595707586657, 34.64225449517134], [-77.32619140355294, 34.64215949212723], [-77.32623211125481, 34.642124697659334], [-77.32640705992051, 34.64202720907322], [-77.3267205453033, 34.64185712682884], [-77.32681068420607, 34.641817438345825], [-77.3268702245275, 34.641792390667405], [-77.32712899881278, 34.641671786965475], [-77.32739563227786, 34.64154195019089], [-77.32788104491347, 34.64140165822412], [-77.32800153073066, 34.64137081844326], [-77.32814674068715, 34.641329980173495], [-77.32830442740519, 34.64128499604441], [-77.32842365956688, 34.64124103754662], [-77.32859258113866, 34.64112575125342], [-77.32884101250791, 34.64096344043678], [-77.32895553668357, 34.640876976111485], [-77.32917529761795, 34.64083919708616], [-77.32933566417279, 34.64075802905551], [-77.32945369781304, 34.64063139801763], [-77.3296929873664, 34.64056516340023], [-77.3297690506639, 34.64060762194433], [-77.33006148696941, 34.64076849227685], [-77.33046416911463, 34.640880823625345], [-77.33058721772275, 34.641090852331075], [-77.33065982629371, 34.641187496652], [-77.33062366309731, 34.641293466105125], [-77.33058351032311, 34.641475092061974], [-77.33049921259308, 34.64184458172076], [-77.33045638628867, 34.642059387517364], [-77.33069620446699, 34.64269586001751], [-77.33071157074019, 34.643140406305804], [-77.33159861277642, 34.643590669749805], [-77.33163538178528, 34.643607606735685], [-77.33165032126969, 34.64359896131177], [-77.3316622567406, 34.643597941690324], [-77.33299604491233, 34.64392338606963], [-77.33320420565732, 34.643703109812634], [-77.33358460363871, 34.64366588870747], [-77.33378871842072, 34.64358158461543], [-77.33388424218805, 34.6435638248544], [-77.33409917511656, 34.6433223566161], [-77.3341458395798, 34.643272382754404], [-77.33415936710752, 34.64326036781477], [-77.33417504595738, 34.6432372039963], [-77.33466777389987, 34.642683246857345], [-77.3347825289348, 34.64250763281183], [-77.33517417451705, 34.642342317485785], [-77.3352337958557, 34.64231361995927], [-77.33528503968833, 34.64230954296958], [-77.3358155277213, 34.64222067780754], [-77.33585516465035, 34.64221952348481], [-77.3359083149304, 34.6422242112417], [-77.3364842210564, 34.64216369821185], [-77.33694651533011, 34.64227772800634], [-77.33715953129617, 34.64233810064664], [-77.33740395438696, 34.642520167625676], [-77.33760939625172, 34.6424779276264], [-77.33778617484853, 34.642270261379764], [-77.33822095103119, 34.64183803130151], [-77.33828365896315, 34.641772923291505], [-77.33832190432462, 34.641749937222244], [-77.33836856684624, 34.64175854118703], [-77.3384889184507, 34.641801255408694], [-77.33889756768451, 34.64185929910526], [-77.33900962399, 34.64198609111364], [-77.33926776913397, 34.6422744483171], [-77.33945825152321, 34.64251221187264], [-77.33962240547977, 34.642720419615536], [-77.33988816449876, 34.64327095434995], [-77.33989939320972, 34.64329565877233], [-77.33990541103796, 34.643308213548465], [-77.339924344732, 34.64335191965989], [-77.34017570487067, 34.643921180677665], [-77.34024418573034, 34.644092328623046], [-77.34046511224633, 34.64444983198575], [-77.34047717601086, 34.64447243114504], [-77.34050166845599, 34.64447898501082], [-77.34080677884958, 34.644556921526316], [-77.34097104547011, 34.64464277201839], [-77.34098566753575, 34.64465054935221], [-77.34105730309747, 34.64469608248064], [-77.34116918264242, 34.644767195606725], [-77.34122373844616, 34.64480187236378], [-77.34131795410225, 34.645104075713064], [-77.34133354553117, 34.64520879742929], [-77.34134094778207, 34.64529450616426], [-77.34140545353583, 34.64562092426847], [-77.34138551283196, 34.64600335235596], [-77.34138416345239, 34.64604584426093], [-77.3413583312141, 34.64617227140928], [-77.34130421098729, 34.6464788157957], [-77.34129534320091, 34.64658641592509], [-77.34126943151307, 34.64685908115612], [-77.34126484924097, 34.646906215895434], [-77.34124552805355, 34.64720715318223], [-77.34122176849883, 34.64733412623152], [-77.34110784115386, 34.647648082566015], [-77.34108736975982, 34.647726748997854], [-77.34106020700477, 34.64777829884381], [-77.34088187007644, 34.64811674935116], [-77.34082699112194, 34.64815091930612], [-77.34062968714541, 34.64825938597143], [-77.34038954482736, 34.648409791980555], [-77.34030340918652, 34.64842456483321], [-77.34020454043126, 34.64845651769765], [-77.34011367809369, 34.64848588299094], [-77.34000152282117, 34.64851550268254], [-77.3397493239233, 34.6484793655848], [-77.33967129220085, 34.6484653971766], [-77.33961175736354, 34.64848194973281], [-77.33943580663825, 34.64842324217135], [-77.33933808136013, 34.64840045847558], [-77.33910696973952, 34.64833317718066], [-77.33899426423963, 34.64828273465434], [-77.33886961829552, 34.64822901323671], [-77.33874814899796, 34.64821196137751], [-77.33866365686572, 34.64823074444748], [-77.3384269429549, 34.64856169565463], [-77.33849056010791, 34.64863874459471], [-77.338596195478, 34.648770291175296], [-77.33866732553378, 34.6489507029222], [-77.33870955852957, 34.64911990894039], [-77.33876916626528, 34.64935872282674], [-77.33891117795568, 34.64969867917891], [-77.33874911516509, 34.65018967459223], [-77.33874864931632, 34.65020553044558], [-77.33874614078515, 34.6502118679573], [-77.33874326089112, 34.65022016451461], [-77.33873411022736, 34.65021937834402], [-77.33816327744165, 34.650520504784346], [-77.33798992668409, 34.65054448336558], [-77.33785624092877, 34.65058585935324], [-77.3378274141391, 34.650688711343605], [-77.33759074388988, 34.65085794068166], [-77.3374746359984, 34.65102663849736], [-77.33710613240466, 34.65114593196181], [-77.33702252103785, 34.651216853416344], [-77.33696657077107, 34.651219596686516], [-77.33648127197736, 34.651234804252546], [-77.3363863835473, 34.65123777752408], [-77.3361365463443, 34.650985963568964], [-77.33616055275441, 34.65072164301921], [-77.33576976902599, 34.650769557883606], [-77.33566717175849, 34.650845221583296], [-77.3353023093958, 34.651000419419816], [-77.33513883402493, 34.65140269071561], [-77.33460488289803, 34.65150496176025], [-77.33452221985465, 34.65152079476037], [-77.33444586880061, 34.65153541832833], [-77.33390560327426, 34.651638895811324], [-77.33332066735092, 34.65175092580819], [-77.33328898509463, 34.65175699376907], [-77.33297559018514, 34.6518416288559], [-77.33328185644766, 34.65182774314635], [-77.33332562667673, 34.65193939080167], [-77.33358538044047, 34.652601962244475], [-77.33396592991232, 34.65276965151478], [-77.33414889009866, 34.65284988626716], [-77.33444037416194, 34.65297854205101], [-77.33461990939098, 34.6530324871154], [-77.33484136971197, 34.65310934085648], [-77.33494051706751, 34.65313656903088], [-77.33515055929635, 34.653194251027166], [-77.33517990281157, 34.653200700646856], [-77.33526428027209, 34.653215615306436], [-77.3354646476648, 34.65324711689945], [-77.33551244471491, 34.65326223661156], [-77.33560127636127, 34.65328138698991], [-77.33600038390328, 34.65333469276587], [-77.33619799890971, 34.65348717619855], [-77.336902561681, 34.653828932091564], [-77.33690753370733, 34.6538314412576], [-77.336909125823, 34.65383195863834], [-77.3369125952211, 34.65383344397178], [-77.33691052270441, 34.65383636407575], [-77.33691088174639, 34.65384810305694], [-77.33697000587631, 34.65466955616872], [-77.33682459776361, 34.655090692523814], [-77.33668786725458, 34.655552258668244], [-77.33666312678848, 34.65560723032787], [-77.33663448943487, 34.655659467095994], [-77.33625486158866, 34.655893377712076], [-77.33613262587933, 34.656348802872124], [-77.33577755885949, 34.65607174601465], [-77.33571869854092, 34.65568523382214], [-77.33548207284849, 34.65517194986355], [-77.33537367639317, 34.65488858259066], [-77.33532712935335, 34.654667300762], [-77.3352686129592, 34.65448100328683], [-77.3350958843954, 34.65437611767272], [-77.33486224026636, 34.65443947857845], [-77.33475153128555, 34.65448994662948], [-77.3346782918345, 34.654803565703446], [-77.33463513590937, 34.654989907883916], [-77.33462302034165, 34.655037261895785], [-77.33460242565579, 34.6551073096703], [-77.33447994268325, 34.65557097912765], [-77.33415725565564, 34.655834829970125], [-77.33411662750008, 34.65587667255568], [-77.33409453523653, 34.65587846820492], [-77.33355380666758, 34.655881233910776], [-77.33343854061089, 34.65568896202346], [-77.33319847370221, 34.6554365683819], [-77.33309739316155, 34.65520086543725], [-77.33294668988748, 34.65483447352867], [-77.33293585113623, 34.6548084194667], [-77.33293279080793, 34.65480145255284], [-77.33289211130926, 34.65475590300373], [-77.33275292479433, 34.65459650308361], [-77.33269688998011, 34.654573643115015], [-77.33258337632745, 34.65461977688564], [-77.33242770414202, 34.6548707386411], [-77.33237615327363, 34.65494150583275], [-77.33240660512304, 34.65529562528247], [-77.33232451517571, 34.65556060299208], [-77.33223527007395, 34.65607463374555], [-77.33222195644935, 34.65613216182611], [-77.33222343640493, 34.65616473667899], [-77.33223099021686, 34.65620344520574], [-77.33233590749352, 34.65690585250794], [-77.33234856331865, 34.656991557991994], [-77.33233092271621, 34.6571535769096], [-77.33230252856075, 34.65754199670205], [-77.33206442209985, 34.65768100543679], [-77.33193656780007, 34.65777546971628], [-77.3318814497804, 34.65781619308154], [-77.33159152253606, 34.65793938421334], [-77.33158147259815, 34.658203447829784], [-77.33121710730686, 34.65820998634193], [-77.33073557448026, 34.65817264067509], [-77.33029137589133, 34.658333651703785], [-77.32993396109126, 34.658453575254214], [-77.32943219480515, 34.658060134289656], [-77.32918518464541, 34.65763967497105], [-77.32877220585786, 34.65748207580462], [-77.32796696701317, 34.657141752677205], [-77.3276461822625, 34.65719865882253], [-77.32733271000957, 34.657172250627916], [-77.32710536921564, 34.657164150725684], [-77.32664623234663, 34.656942703255964], [-77.32615118862222, 34.65713750345649], [-77.3260476563522, 34.6571508749559], [-77.32593878536107, 34.65717705313761], [-77.32536714864617, 34.65695103296926], [-77.32487359166572, 34.656989321770666], [-77.3244700138487, 34.65690248346504], [-77.32406534701344, 34.65684621398514], [-77.32324389558772, 34.65709234150483], [-77.32374588034304, 34.65817128115354], [-77.32359785619448, 34.658757606091605], [-77.32364077242846, 34.65942861883825], [-77.32437235443672, 34.65948076712463], [-77.32456764797666, 34.65934774554278], [-77.32471988683275, 34.65958887496461], [-77.32523716175382, 34.65949275063219], [-77.32536096957223, 34.65946811735737], [-77.32562513702615, 34.65931575860958], [-77.32582073890441, 34.65920980795503], [-77.32608206324078, 34.65907502588364], [-77.32614837721205, 34.659057816890936], [-77.32641663050615, 34.65898820285821], [-77.3266413676036, 34.658929880908346], [-77.32681597682772, 34.65888456743209], [-77.32710505449253, 34.65922735252238], [-77.32718742305745, 34.65929733300184], [-77.3272645757277, 34.659376784981234], [-77.3272452933337, 34.65949374103586], [-77.32719687048473, 34.65968451926312], [-77.32719285171395, 34.66011212449109], [-77.32709219051644, 34.66024440352487], [-77.32690933647362, 34.66051476806851], [-77.32679461474284, 34.66087029973813], [-77.32659772913551, 34.661156184084604], [-77.32685382360056, 34.66179763167289], [-77.32698054276192, 34.66200224760261], [-77.32711714893831, 34.66204347907439], [-77.32762731839465, 34.66182770656652], [-77.3277905271689, 34.66133747257979], [-77.32786043661876, 34.660983037220774], [-77.32797053202816, 34.66083819126837], [-77.32805135672356, 34.6607504236667], [-77.32831129491223, 34.66048899490073], [-77.3285731454464, 34.66015984643738], [-77.32903492874244, 34.6602326698352], [-77.32925334353769, 34.66035796061098], [-77.32956035014058, 34.66074991747864], [-77.32976221231422, 34.66108914800108], [-77.33003961752681, 34.66152817106908], [-77.33015392021981, 34.66165312830054], [-77.33048898644373, 34.661946659778344], [-77.33090763746159, 34.662253105607995], [-77.33091623548323, 34.66225991409569], [-77.33132530220772, 34.66258742163312], [-77.33167941373591, 34.66287092443238], [-77.33197359543686, 34.662573368387726], [-77.33203497628766, 34.662098481821666], [-77.3320845086245, 34.6620096048214], [-77.33210429681465, 34.66179807655174], [-77.33213246023763, 34.66138706265275], [-77.33213404055483, 34.66124090896243], [-77.33251637829918, 34.660661552172655], [-77.33263743937597, 34.6605238719034], [-77.33279821623836, 34.66047058268158], [-77.33301056360465, 34.66040019986173], [-77.33309973920187, 34.66037759544424], [-77.33318813768035, 34.66037066665829], [-77.33341409752775, 34.66034849487881], [-77.3336310201253, 34.660320202957045], [-77.33373560914224, 34.66035499631876], [-77.33392074973442, 34.66038727903049], [-77.33387330187887, 34.660158344052526], [-77.33379754128106, 34.65999063707712], [-77.33360584662844, 34.65970915100639], [-77.33347919457786, 34.65947273475908], [-77.33337146601534, 34.659383199195986], [-77.33318477173906, 34.65920708045411], [-77.33308225883661, 34.6591103744112], [-77.33301470543412, 34.65887416306932], [-77.33323163896978, 34.658814734532456], [-77.33347018047044, 34.65903391073297], [-77.33352320763976, 34.65868157533199], [-77.33398379218694, 34.658455213595545], [-77.33399073879102, 34.658450740469554], [-77.33399335194461, 34.658450452468045], [-77.33399784358032, 34.65844625488445], [-77.33434731653874, 34.6581163267352], [-77.33453054159381, 34.65793679252557], [-77.33506619782798, 34.65747973183436], [-77.3350771119106, 34.65746985451425], [-77.33508102587824, 34.65746669347657], [-77.33509118264362, 34.657459304595385], [-77.33561537049658, 34.65696157463292], [-77.33590740453283, 34.65690357289128], [-77.33617654825815, 34.65656738928717], [-77.33649937459113, 34.65693906204406], [-77.33689932917761, 34.65697743370005], [-77.33704954487958, 34.656998113302095], [-77.33736197544823, 34.6569268807129], [-77.33751995300314, 34.656879089327575], [-77.33772029770459, 34.65681848032341], [-77.33790662844477, 34.656768043305235], [-77.33812358219288, 34.656696184112356], [-77.33844369494068, 34.65660212178982], [-77.33871774698017, 34.65646619676803], [-77.33916889538537, 34.65605580287057], [-77.33923460620002, 34.656005906535235], [-77.33925739317094, 34.65596495597122], [-77.33943480580837, 34.65572082235203], [-77.33975925075394, 34.65527572119529], [-77.33982751379202, 34.655224864735075], [-77.33996000165932, 34.65510324356798], [-77.34032111983893, 34.65488511362557], [-77.34065800150378, 34.65466560237589], [-77.34090281466533, 34.654593169453044], [-77.34117064480537, 34.65447689375355], [-77.34122882840474, 34.654465644404354], [-77.34150975632099, 34.65442685180157], [-77.341796104804, 34.65439349125498], [-77.34182237503344, 34.654389210325625], [-77.34184807982825, 34.65438788600305], [-77.34213184294522, 34.65437326610061], [-77.34213898683328, 34.654371433203096], [-77.34242717501873, 34.654315323715224], [-77.34247998535358, 34.65428506991281], [-77.34273801045424, 34.654165738770565], [-77.34292390019826, 34.65411175316877], [-77.34303558150836, 34.6540532441247], [-77.34320939876707, 34.65398920423212], [-77.34333916454571, 34.65397065794703], [-77.34345074424381, 34.65378013269364], [-77.34336234303532, 34.653686408753856], [-77.34327705860903, 34.65366170257924], [-77.34316478293971, 34.65350343535738], [-77.34294910040646, 34.653468050988764], [-77.34291641546821, 34.65346042053486], [-77.34289678056979, 34.65345992240944], [-77.34284747938793, 34.65344094299327], [-77.34257491734144, 34.653354373148694], [-77.34237416454357, 34.653346389340804], [-77.34194219279102, 34.653195389565184], [-77.34190145148702, 34.65318967941999], [-77.34187733233432, 34.65318181297744], [-77.34184705746071, 34.65315626338976], [-77.34145131996573, 34.652877036002025], [-77.34115404456134, 34.65265708172788], [-77.34103153396894, 34.65255993743675], [-77.34086009274294, 34.65244773235021], [-77.34081495941064, 34.6524146177351], [-77.34076862713947, 34.652332482164354], [-77.34063126523135, 34.65220420609059], [-77.34058598368938, 34.651929402870536], [-77.340686678119, 34.65162753909408], [-77.34074824021008, 34.651413624609354], [-77.34075605307014, 34.65080903897329], [-77.34074319389707, 34.65077578891084], [-77.34071599295727, 34.65071627807074], [-77.34060499144663, 34.64995997138533], [-77.34047682018692, 34.649968354688994], [-77.34030386494771, 34.64998205266664], [-77.34034115889546, 34.64969911811342], [-77.34043908400082, 34.64971435951453], [-77.34060908838335, 34.64994559562617], [-77.3406112684676, 34.64994754474268], [-77.34061256725276, 34.64994972365101], [-77.34061312620685, 34.64995300602332], [-77.3407887155166, 34.650744377107806], [-77.34084574579862, 34.65076171357123], [-77.34143556218199, 34.65087173448005], [-77.34150532236008, 34.65078587562701], [-77.34201623341521, 34.65060105784635], [-77.34202047836072, 34.650599532148085], [-77.34202110944874, 34.65059911221882], [-77.34202193932093, 34.650599205584705], [-77.34203529144014, 34.65059844192568], [-77.34232299283978, 34.65057726745749], [-77.34233807037292, 34.650583143772984], [-77.34254061989432, 34.6507204958064], [-77.34271049143696, 34.65084309327822], [-77.34292515839618, 34.65110736440251], [-77.34311730070516, 34.65127411355089], [-77.34312644336939, 34.65128295195184], [-77.34313895663801, 34.651290942994635], [-77.34334417469861, 34.65142597864672], [-77.34348166945975, 34.65149397466508], [-77.34382282068977, 34.651626540296796], [-77.34382876029238, 34.6516278769336], [-77.34384280392729, 34.651633375632166], [-77.34417621039844, 34.65176355759818], [-77.34430683297757, 34.651816479140784], [-77.3444805557582, 34.65189506403966], [-77.34452705054115, 34.65191609634113], [-77.34454287627838, 34.651923255243034], [-77.34457503486756, 34.651937802341365], [-77.3447636197103, 34.652060323596075], [-77.34490986340957, 34.652227667644034], [-77.3451640029483, 34.652415845943246], [-77.34555108105458, 34.65256069620048], [-77.34562285245337, 34.652588952845534], [-77.34565107917783, 34.65259972790877], [-77.34571114390413, 34.652625829613086], [-77.34611427894446, 34.65283088549221], [-77.34633714141891, 34.65296188494186], [-77.34633788165999, 34.6529623003576], [-77.34633840718412, 34.652962963004526], [-77.34653591398279, 34.653144343615736], [-77.3466964910566, 34.65333454713103], [-77.34717040886014, 34.65391608666911], [-77.34726052593189, 34.65400621657928], [-77.34738716976578, 34.654083717385674], [-77.34769726973109, 34.65428977558193], [-77.34790342687828, 34.654376844439106], [-77.34813571244544, 34.65456997441797], [-77.34829416717733, 34.654727713042604], [-77.34835705405091, 34.654794547944384], [-77.3485203206794, 34.654956772067436], [-77.348719519572, 34.65525068280241], [-77.34887252350171, 34.655407740046876], [-77.3490863448772, 34.65553840924745], [-77.34890008127715, 34.65568646373431], [-77.34881382480634, 34.655719652034755], [-77.3487063600367, 34.65573675136498], [-77.34851120242918, 34.65580702832504], [-77.34834000087614, 34.65583092199108], [-77.34821488709163, 34.655925770763155], [-77.3480695789512, 34.65584925066309], [-77.34787882208596, 34.65584684092217], [-77.34761395563235, 34.655820482935674], [-77.34755286374012, 34.65581816849036], [-77.34750301257483, 34.65582272048012], [-77.34727655153634, 34.65578690547387], [-77.34697045089732, 34.655728860385864], [-77.34689003157175, 34.65570653053701], [-77.34675971465047, 34.65569039063439], [-77.34666601861089, 34.65575746766094], [-77.34659418233768, 34.65582759993765], [-77.3465247642335, 34.65589012290133], [-77.34655006860584, 34.656161915909735], [-77.34660528881281, 34.656451853571255], [-77.34660786891992, 34.656722712351865], [-77.34679594814786, 34.65705859564528], [-77.34684626570541, 34.65712303870892], [-77.34686863672798, 34.657126437098015], [-77.34720697360393, 34.657282782609784], [-77.34729379643821, 34.65738527168597], [-77.34740077725642, 34.657450400378856], [-77.34740469257221, 34.65745278397989], [-77.34741076217554, 34.65745647907521], [-77.34751128697458, 34.65752881336991], [-77.34759008449383, 34.65759565185121], [-77.34773112421877, 34.65766770980051], [-77.34789662728996, 34.657752265624495], [-77.34794164659009, 34.6577516157283], [-77.34821067765593, 34.6577117717996], [-77.34832407304626, 34.65764202665206], [-77.34853666766128, 34.65752595031316], [-77.34904476256335, 34.65736341042904], [-77.34914273964301, 34.65735525286716], [-77.34924669467372, 34.65734430235689], [-77.34967894947127, 34.65725606257946], [-77.34976659037734, 34.65727296863808], [-77.35013301767563, 34.65750535601694], [-77.35054594096488, 34.65786998447423], [-77.35085938183921, 34.65836388681818], [-77.35132005549264, 34.65862864447622], [-77.351722743946, 34.658951168511756], [-77.35203617061241, 34.659353341318734], [-77.35226902654344, 34.66016267493723], [-77.35226970070958, 34.66016500280679], [-77.35226984876472, 34.66016525385717], [-77.35226983730496, 34.6601655593067], [-77.35226979498049, 34.660166495191405], [-77.35221163637382, 34.6605952507245], [-77.35236824803857, 34.6606559439006], [-77.35249097996696, 34.66055688677834], [-77.3525889232065, 34.66046332026748], [-77.3526400505485, 34.6604152797388], [-77.3527498392203, 34.66036271020515], [-77.35292851499462, 34.66025745207707], [-77.35348880580045, 34.66004788914413], [-77.3535265742064, 34.660046854927955], [-77.3535839444854, 34.66005754639253], [-77.35421597642916, 34.6602903209662], [-77.35442397308412, 34.66049302764495], [-77.35532216672648, 34.660345273647366], [-77.35551212718012, 34.66036636618108], [-77.35564275603248, 34.66037653211652], [-77.35579687464624, 34.66052482109821], [-77.35604717753723, 34.660724189953655], [-77.35625753465226, 34.660888138594174], [-77.35645760632605, 34.661059955435775], [-77.35671264260915, 34.66124303193154], [-77.35687464786585, 34.661382630276194], [-77.35703235253845, 34.661556026757445], [-77.35728428688532, 34.66171996808376], [-77.35733785212403, 34.66200115361097], [-77.35732807057735, 34.662216952276275], [-77.35730282413905, 34.66242797071061], [-77.35723033006485, 34.66253993678292], [-77.35711982741766, 34.662689759308954], [-77.35695271280295, 34.662898071250055], [-77.35699508006925, 34.6632404740065], [-77.35703635035142, 34.66335955893909], [-77.35710346034097, 34.66334159787482], [-77.35739915457208, 34.66337893872817], [-77.35759086620686, 34.663410009751765], [-77.3580701398164, 34.663588573212266], [-77.35807713702745, 34.663590357682345], [-77.35807787369437, 34.66359943561998], [-77.35813086740407, 34.66394319932217], [-77.3581494494574, 34.66406506435982], [-77.35812804625843, 34.66426655365631], [-77.35811959759513, 34.66434608609163], [-77.35814445915105, 34.66455313645222], [-77.35814942462497, 34.66471733183531], [-77.35817309506116, 34.664944743276266], [-77.35813619654066, 34.66504165853168], [-77.35814568529273, 34.665427777010045], [-77.35814136148208, 34.66551196000937], [-77.35814311669756, 34.66552809485586], [-77.3581444633111, 34.66555759965999], [-77.35813578405444, 34.666016488747054], [-77.35806880775326, 34.66635623743278], [-77.35806033247803, 34.66651424082086], [-77.35806791886836, 34.66676621597611], [-77.35802081583724, 34.66700705619196], [-77.35810261736641, 34.66711862906973], [-77.35812754742076, 34.66745733178267], [-77.35812019478404, 34.667480790959075], [-77.3577697369297, 34.66775425886129], [-77.35774915083006, 34.66776006104521], [-77.35738180327172, 34.66805999830296], [-77.35737223456698, 34.66807092714605], [-77.35735371315803, 34.66815678925196], [-77.35726620859653, 34.66855097412883], [-77.35726338444634, 34.66857326597044], [-77.35727594793664, 34.66861697728445], [-77.35732791243169, 34.6692918849977], [-77.35762294019752, 34.669291088636726], [-77.35791290650712, 34.66918174769092], [-77.35803241338688, 34.669143728724116], [-77.35829030623198, 34.669053509553194], [-77.35849338961832, 34.669135376342275], [-77.35854221365088, 34.66914546053234], [-77.35853261675405, 34.66924957311143], [-77.35853500662175, 34.66937335257775], [-77.35855344465486, 34.6695310258893], [-77.35850244399447, 34.669704460934064], [-77.35835376036954, 34.66988563812215], [-77.35830806415998, 34.67011414647831], [-77.35840099736528, 34.67036653590235], [-77.35849179622899, 34.670421273691964], [-77.35867955797738, 34.67061657163917], [-77.35897538729724, 34.6707750146683], [-77.35898592570487, 34.67078067009929], [-77.35926401975544, 34.67095504197213], [-77.35949222762504, 34.67109813244226], [-77.3595471664712, 34.67113127235946], [-77.35962023318405, 34.67117381118044], [-77.35983964185715, 34.67130031856462], [-77.3600158674347, 34.671355858841025], [-77.36018383778386, 34.67142954855913], [-77.36055871055699, 34.67152757289989], [-77.36056406311117, 34.671528972520534], [-77.36056582179485, 34.67152968522063], [-77.360568504205, 34.671530917460956], [-77.36091896084399, 34.67165202801785], [-77.36110104395107, 34.671740738108085], [-77.36123209462409, 34.67180517053518], [-77.36157557987568, 34.67187993680962], [-77.36163128151561, 34.671892061421055], [-77.36165412287505, 34.6718970332694], [-77.36173428689132, 34.67193158478591], [-77.36195355082522, 34.672038170190554], [-77.36217498265044, 34.672164369738184], [-77.36224371316564, 34.672208998144065], [-77.36231546515842, 34.67226566284563], [-77.36242047265249, 34.672349530203434], [-77.36250145345957, 34.67240478830522], [-77.36266567858888, 34.67253567203947], [-77.36276308359191, 34.67259758398072], [-77.36288463463815, 34.67267484291477], [-77.36303857376986, 34.67277970897031], [-77.36316332204302, 34.67288304292562], [-77.3632797660855, 34.67298824061968], [-77.3633904335233, 34.673092729194934], [-77.36346868440236, 34.67323701819201], [-77.36365156332377, 34.673262830701496], [-77.36379534330665, 34.673379749573684], [-77.36389543661458, 34.673453582596025], [-77.36392501142862, 34.67347703155543], [-77.363952656638, 34.67350286045109], [-77.36404067450252, 34.673585095760274], [-77.36412914135869, 34.67367938338779], [-77.36426499947271, 34.67380661546556], [-77.36439266361037, 34.67392978419563], [-77.3644827868253, 34.6740331690955], [-77.36458237378882, 34.674147409205865], [-77.36458938844792, 34.67415568466065], [-77.36468305719961, 34.67427320996765], [-77.36476396017495, 34.67436614963668], [-77.36487999135423, 34.67451582003741], [-77.36500943950156, 34.67477054441199], [-77.36503560350378, 34.67479024565935], [-77.3650469664099, 34.67481464809689], [-77.36506134631337, 34.6748810601587], [-77.36511099181686, 34.675126437739166], [-77.36519360639315, 34.675281885996704], [-77.36535937279744, 34.67562710010564], [-77.36543191055631, 34.67566782703993], [-77.3654212981278, 34.67573798561244], [-77.36554899380192, 34.67595152536786], [-77.36555641767458, 34.675966204014415], [-77.36567019774168, 34.67619117018558], [-77.36565468175567, 34.67628478490653], [-77.36575173565438, 34.67633743676397], [-77.36613253127842, 34.67646879265093], [-77.36629102455467, 34.67654137451596], [-77.36634539524724, 34.67654146497365], [-77.3664462128903, 34.67657191089942], [-77.36681042178779, 34.67681388109011], [-77.36707096885823, 34.6767713024159], [-77.36744957502724, 34.676673602065904], [-77.36767418932145, 34.676558985431086], [-77.36801481934883, 34.676438831990886], [-77.36811221594243, 34.676452347852326], [-77.36841640601995, 34.67652387191241], [-77.36916499133093, 34.676604078571806], [-77.3692668360594, 34.67659810966463], [-77.36933545369699, 34.6766047325573], [-77.36941292966917, 34.676651531064614], [-77.36974104859625, 34.67708093069536], [-77.36991273056822, 34.6775576127469], [-77.36991126339049, 34.677738379083934], [-77.37006791562831, 34.677962659512986], [-77.3702961913642, 34.67823050063498], [-77.37053558285263, 34.678413557101294], [-77.37056302686936, 34.678443006521626], [-77.37051882360983, 34.67847133281609], [-77.37022782527957, 34.678822432009206], [-77.37007330045876, 34.678796375733285], [-77.36987303534073, 34.678634474887126], [-77.36981455868754, 34.67860134501543], [-77.36926998697543, 34.678650272390854], [-77.3692504687155, 34.67864142165137], [-77.36920864965887, 34.67862918319367], [-77.36923315842829, 34.678260498205915], [-77.36883231222936, 34.67809599927306], [-77.36832437682496, 34.67841163506873], [-77.36814667835387, 34.6783964809626], [-77.36795999262164, 34.67845227497513], [-77.36756251954398, 34.67834715903068], [-77.36713950703839, 34.678637735974434], [-77.36682573093725, 34.67882393102789], [-77.36673029224814, 34.67891318964891], [-77.3665056948768, 34.6790006924105], [-77.36647237059451, 34.67901048540861], [-77.36642863507035, 34.67901128300242], [-77.36619793342055, 34.67902044003989], [-77.36617128027356, 34.67901687320831], [-77.36612090167688, 34.67901120928989], [-77.36577506694806, 34.6789517670158], [-77.36562143760943, 34.67884925556814], [-77.36539830190054, 34.67884760007533], [-77.36532666179323, 34.678833879689925], [-77.36521856111685, 34.67884955350711], [-77.36514670317035, 34.67884418634089], [-77.36505079958869, 34.67875331613814], [-77.36503370206599, 34.67873406682813], [-77.3650211829856, 34.678717314781736], [-77.3647988101511, 34.67852067235668], [-77.36458305268465, 34.67830276493794], [-77.36457766917214, 34.67829669167874], [-77.36457308600508, 34.67829150211726], [-77.36440007103946, 34.6780391867615], [-77.3643265753157, 34.677837986628916], [-77.3642728377969, 34.67774290984072], [-77.36418214224554, 34.67762188014501], [-77.36407524343363, 34.677500802465865], [-77.36395871570714, 34.67740114632967], [-77.36376896281138, 34.67698330243492], [-77.36374699472414, 34.67696505339355], [-77.36374605091791, 34.67694297999979], [-77.36372711926138, 34.67688928787664], [-77.36373047791751, 34.6767014250283], [-77.36376686533757, 34.67660542219404], [-77.36375083520204, 34.67656786548817], [-77.36371859771789, 34.676562634533774], [-77.36357658294651, 34.676615048416906], [-77.36347956489661, 34.676669838946154], [-77.36322033587939, 34.6768115451809], [-77.36303657577241, 34.676915342855864], [-77.36275349439347, 34.67707936563151], [-77.36258773041574, 34.67715565628403], [-77.36251498390098, 34.677179905953814], [-77.36241887533987, 34.67719908204644], [-77.36218997744484, 34.677268722829936], [-77.36195626542455, 34.677188906074676], [-77.36193005022027, 34.67718118380253], [-77.36191831738054, 34.67717369799304], [-77.36182537569813, 34.67711804730963], [-77.36163708209068, 34.67701250234871], [-77.36142653882253, 34.67680603672505], [-77.36139244988247, 34.676806609634625], [-77.36089175489201, 34.67684777423049], [-77.36081996743567, 34.67685311180441], [-77.36081437307635, 34.67685324158908], [-77.36080831589169, 34.67685463415281], [-77.36077823424074, 34.67686337076759], [-77.36014528723032, 34.67709657910639], [-77.36005214397237, 34.67704998997212], [-77.35979692733417, 34.67699818619691], [-77.35968411457425, 34.676939090644], [-77.35960166792964, 34.67690756970065], [-77.35948634849572, 34.67695912210577], [-77.3589880195515, 34.67695986660465], [-77.35878398722025, 34.676974679335814], [-77.35880378083698, 34.67713462016384], [-77.35885069360266, 34.67718645730409], [-77.35890442922438, 34.67724789253009], [-77.35900045820136, 34.677465381600726], [-77.35908975579501, 34.677582722430245], [-77.35910075260904, 34.67760250287219], [-77.3591864126893, 34.677716447248315], [-77.35932340894624, 34.67786638195011], [-77.3594347038038, 34.67791952593778], [-77.35960253569041, 34.67799966612474], [-77.35971710707044, 34.67809634494915], [-77.35983292469221, 34.678172925417], [-77.35999544068825, 34.67827629709259], [-77.35995062631828, 34.67843923385098], [-77.35994568854588, 34.67851170663418], [-77.35991651560644, 34.67861693001378], [-77.35983498704931, 34.67869881393805], [-77.35963730774081, 34.67884697441397], [-77.35952384953976, 34.67890705272065], [-77.35938271357762, 34.67900463877969], [-77.35911803058335, 34.67918551606227], [-77.3587577732909, 34.67981535788612], [-77.35861941796684, 34.68001995126585], [-77.35857656416658, 34.680090153322666], [-77.35793597515774, 34.68058474464788], [-77.35785826955949, 34.68062164983313], [-77.35774666417036, 34.680691536280904], [-77.35766109024439, 34.68086168469158], [-77.35758338161179, 34.68101619483067], [-77.3576061304635, 34.68119822595665], [-77.35761752828844, 34.68128942798307], [-77.35761205544215, 34.681360734986605], [-77.3573812622047, 34.68147129473527], [-77.35737900706657, 34.68147267100618], [-77.35737849725865, 34.68147280130288], [-77.35737731393806, 34.68147334819327], [-77.3570490352665, 34.68157850294106], [-77.35684631791517, 34.68163925392915], [-77.35639444964175, 34.681852036994385], [-77.35637717569483, 34.68186159133337], [-77.35636659889309, 34.68186764615899], [-77.35634949475364, 34.681871280534516], [-77.35572558417547, 34.68201406959007], [-77.35550279760193, 34.68212879864396], [-77.35548006754297, 34.68197761907366], [-77.35530026749719, 34.681890485344525], [-77.3551796899585, 34.681832796243526], [-77.35493903224523, 34.68156453759768], [-77.35486569063286, 34.681436581026276], [-77.35477828220078, 34.68115378464741], [-77.35468685075509, 34.68078583466275], [-77.35457351614085, 34.680639964808165], [-77.35426711119769, 34.680320514810816], [-77.35394552850224, 34.679898964820914], [-77.35389049047413, 34.67982200823748], [-77.35384880125795, 34.67976472168651], [-77.35350991681621, 34.67933784653274], [-77.35350431375602, 34.67933085931996], [-77.35348845673427, 34.67932682229056], [-77.35296500820913, 34.67915324319796], [-77.3527634522531, 34.679112712815225], [-77.35211295436655, 34.67902831893613], [-77.35183567552563, 34.67892016643463], [-77.35134722846625, 34.678625998493175], [-77.34979137641068, 34.6785756272468], [-77.34940243380007, 34.67905531662048], [-77.34908751279339, 34.67944371057774], [-77.34858703402139, 34.680060949190505], [-77.34819812861049, 34.680540564183055], [-77.34841239405041, 34.68088479564979], [-77.34883479385945, 34.681010320390186], [-77.34995518910493, 34.68127414880451], [-77.34995522451837, 34.68127416874013], [-77.34995558421028, 34.68127441124596], [-77.35046804850002, 34.68166780121159], [-77.35081775307154, 34.68203884703011], [-77.3508836510486, 34.682121405981], [-77.35088901918873, 34.68213217726096], [-77.35087243958814, 34.6822379584083], [-77.35078921023755, 34.68299736840917], [-77.35073543640236, 34.68311651937784], [-77.3506768831692, 34.683190524790746], [-77.35046804106125, 34.68403292390355], [-77.35039723632144, 34.68413771669786], [-77.35041723292835, 34.68423689314622], [-77.35039269400141, 34.68448509956482], [-77.35037548480268, 34.68462808473498], [-77.35042950923375, 34.68485095108187], [-77.35088326023836, 34.68504575167243], [-77.35102158625804, 34.685183652630755], [-77.35105077727536, 34.685746732859656], [-77.35129297652972, 34.685763162795], [-77.35104974414611, 34.68599765994092], [-77.35101051506936, 34.686039469442996], [-77.35093127924544, 34.686158308420765], [-77.35075267749455, 34.68644916116725], [-77.35068144466638, 34.68653560704462], [-77.3504607891302, 34.686797812720705], [-77.35044785594366, 34.68681136780035], [-77.35044724462064, 34.686816657765775], [-77.35042129241424, 34.68688401903628], [-77.35035515706757, 34.687067785228706], [-77.35035256534846, 34.68707819489923], [-77.35023857269834, 34.6872699422491], [-77.35021077883867, 34.687331297422304], [-77.35011045168199, 34.687439201381785], [-77.35008822089026, 34.68745578844703], [-77.34993564242774, 34.687525881987774], [-77.34982910897686, 34.68754521014233], [-77.34931440727604, 34.6876980443468], [-77.34928943150828, 34.68770503338065], [-77.34928441008284, 34.68770726806034], [-77.34927994219255, 34.687706577070934], [-77.34897674198147, 34.687746953469876], [-77.3489724124074, 34.68775105613357], [-77.34896487045812, 34.687746027811436], [-77.34873932064934, 34.687728440952064], [-77.34868742619275, 34.68770182042937], [-77.3485678918463, 34.687556832120634], [-77.34855429890479, 34.687476646242146], [-77.34850965482622, 34.68732113574514], [-77.34848795857258, 34.68713351932919], [-77.34846732317266, 34.68697614978973], [-77.34844996695996, 34.68684194878787], [-77.34843681701386, 34.686778696197365], [-77.3484095577126, 34.68660380557894], [-77.34840881351163, 34.686599983154316], [-77.3483759790785, 34.68643133572013], [-77.34830543995756, 34.68637440757013], [-77.3481938623442, 34.686309577586925], [-77.34807460841793, 34.68626908194721], [-77.34792782144183, 34.68619511553881], [-77.34761987671831, 34.68622484827522], [-77.34734677700592, 34.686134807934266], [-77.34726007009168, 34.686107565569], [-77.34680701066786, 34.686142369069685], [-77.34674163474553, 34.68615748185435], [-77.34667599710028, 34.686162865377966], [-77.34621158683613, 34.686252748344174], [-77.34611147097898, 34.68626631092475], [-77.34584144496154, 34.68622523852066], [-77.34560962877302, 34.68619513342847], [-77.34554536231201, 34.68615456613339], [-77.34520793032331, 34.68600115501235], [-77.34499609760667, 34.685984824164755], [-77.34492120876381, 34.68593655261972], [-77.34489589694911, 34.685867633108415], [-77.3448812590899, 34.685711499591804], [-77.34476402484349, 34.68526917442904], [-77.3446862276635, 34.68499079545293], [-77.34467293656392, 34.68494510361944], [-77.34466761820983, 34.684924205984565], [-77.34463711246761, 34.68485668578806], [-77.34454122671309, 34.684652291468], [-77.34448962894658, 34.6844612546473], [-77.34436270632334, 34.684043797617456], [-77.34435267895876, 34.68400905310304], [-77.34434813141154, 34.68399329575892], [-77.34410516511885, 34.68380535719875], [-77.3440814637208, 34.683786204044864], [-77.34387904788161, 34.683648212268224], [-77.34383818984095, 34.68361663768263], [-77.34380134283178, 34.68358095796819], [-77.34340569013415, 34.68321717365169], [-77.3433372720622, 34.68321377985296], [-77.34331836703758, 34.68315986113274], [-77.34294910435247, 34.68272840324447], [-77.3429458532399, 34.68272666316846], [-77.34294431029583, 34.682723816089805], [-77.34268903444476, 34.6825934339747], [-77.34262059861555, 34.682582792218575], [-77.3424054784551, 34.68253932934029], [-77.34219243361996, 34.68251811084353], [-77.34195975289492, 34.68237154462167], [-77.34153198946775, 34.68223801320416], [-77.34132388227384, 34.682141728243984], [-77.34101479442892, 34.68201383518546], [-77.34087892322401, 34.68195223854557], [-77.34046356509792, 34.68179408795332], [-77.34021096287918, 34.681851986302014], [-77.33956823958692, 34.68227682379654], [-77.33948416367815, 34.68229353327743], [-77.33938424024115, 34.68231406765171], [-77.33884463244722, 34.682434628575905], [-77.33793064404504, 34.682644249729506], [-77.33754224752926, 34.68279707280159], [-77.3373174864796, 34.682834260657195], [-77.33690878867513, 34.68291723294003], [-77.33668178947549, 34.68290886949929], [-77.3365919005781, 34.682977855220834], [-77.3364625867925, 34.68312575266716], [-77.33639880465836, 34.68329628764947], [-77.33632924156278, 34.68348227663583], [-77.33629734146612, 34.68363579381182], [-77.33600612535564, 34.683963991607996], [-77.33586993387459, 34.68410403080184], [-77.33558532607026, 34.68422083379136], [-77.33483446177257, 34.68502647998058], [-77.3347728476952, 34.685307022062304], [-77.33547608283513, 34.68532110180688], [-77.33561901258352, 34.68529641206507], [-77.33598696045225, 34.68562786442146], [-77.3360399171259, 34.68567556849602], [-77.33609536494376, 34.68571708451586], [-77.33654175195153, 34.68603913730268], [-77.33655674687023, 34.68606620005443], [-77.33658691224998, 34.68608547027737], [-77.33721651745944, 34.686346848562806], [-77.337625176322, 34.68663236882077], [-77.33848333059018, 34.68694872785896], [-77.33950843072037, 34.6873307193668], [-77.33980913132083, 34.687356492306975], [-77.33995436989309, 34.687393468177405], [-77.34027853234059, 34.68747599296836], [-77.34157578214376, 34.68772249166304], [-77.34210739069829, 34.68768716909756], [-77.34244971350691, 34.68783835533537], [-77.34282150738368, 34.68810182046135], [-77.34293450778215, 34.68825363885624], [-77.34313718330282, 34.68826338269922], [-77.34331754876877, 34.688747224836845], [-77.34350879028318, 34.68898226272785], [-77.34364217318846, 34.68928576112362], [-77.34371488224053, 34.68944136019431], [-77.34384421208846, 34.6898986236734], [-77.343847341271, 34.68991056131646], [-77.34384729408603, 34.68991625570684], [-77.34383369098818, 34.68998714282991], [-77.34379500456913, 34.69016143248417], [-77.34373991868227, 34.69039304200158], [-77.34373513731934, 34.69041333694081], [-77.34373068664702, 34.69043629937985], [-77.34369689046281, 34.69045814139463], [-77.34352365499218, 34.69057190068782], [-77.34350687954705, 34.69057235724407], [-77.34336874203463, 34.69055747251865], [-77.34309418431768, 34.69051027349364], [-77.34308343667477, 34.690509298313316], [-77.34307710688483, 34.69050888661337], [-77.34249382139635, 34.69061628938618], [-77.34242871725623, 34.690702515477795], [-77.34217385653024, 34.69097092730536], [-77.34202309071672, 34.691135641496246], [-77.34144563818232, 34.69160192539366], [-77.34078653580839, 34.69223436910387], [-77.34075564527102, 34.692266823618745], [-77.3407439274545, 34.692285905862065], [-77.34066530578416, 34.69236459477899], [-77.34020014587172, 34.692847887604955], [-77.34008193191806, 34.692946162506395], [-77.33995060473566, 34.693308633795404], [-77.3399231573317, 34.693373264926144], [-77.33991663959155, 34.69343795897995], [-77.33988018958269, 34.69375696120768], [-77.33987332810395, 34.69386747656694], [-77.33986116072768, 34.694027126174475], [-77.33975045407166, 34.69437170938672], [-77.33968971230613, 34.69451346714706], [-77.33957570858232, 34.69477952210842], [-77.3395814700667, 34.694882267720516], [-77.33954617044496, 34.69502455272011], [-77.3393671660564, 34.69505961492097], [-77.33925468658025, 34.695026503454066], [-77.33881942776476, 34.69488442324595], [-77.33854065110611, 34.69478755241591], [-77.33805431256862, 34.69460438970976], [-77.3378363166716, 34.69454113780462], [-77.33772338967557, 34.69453599329945], [-77.33727316321963, 34.69418610669527], [-77.3372354486619, 34.69415500707641], [-77.3368059941962, 34.69380087498962], [-77.33677140494481, 34.69378384307919], [-77.33674769636009, 34.6937733840249], [-77.33662832892134, 34.69369684566966], [-77.33659680802958, 34.693686067986185], [-77.33648171861142, 34.69365864550734], [-77.33641779946693, 34.69366174185377], [-77.33637196655428, 34.69361672116523], [-77.33620905071045, 34.693566934224776], [-77.3360134010228, 34.693578716117074], [-77.33587209985149, 34.693441596009485], [-77.33574357511799, 34.69310866519225], [-77.33561355872766, 34.69309804746586], [-77.3355869044822, 34.69299333935855], [-77.3353637275358, 34.69259261884813], [-77.33532838707768, 34.69252916445629], [-77.33508255821754, 34.69208776593141], [-77.33492510773786, 34.69180505407735], [-77.33378282200849, 34.692266021992225], [-77.33367500662698, 34.69237186577565], [-77.3333477300811, 34.69330043523215], [-77.33327978030607, 34.69334707323657], [-77.33253214909757, 34.693912000919724], [-77.33251579992616, 34.693916059161246], [-77.33223655726613, 34.69442755580863], [-77.33220358771378, 34.694538900167466], [-77.33216134744382, 34.69468155487304], [-77.33210153884615, 34.69480695775006], [-77.33197138572322, 34.69495128862118], [-77.33169314173941, 34.69532568219581], [-77.33160046933416, 34.69548952050788], [-77.33154788430113, 34.695592804081386], [-77.3313981511105, 34.695701960708675], [-77.33068803168058, 34.69610711667348], [-77.3306813270085, 34.69610856482704], [-77.33067487939519, 34.696108959893486], [-77.3300909281642, 34.69621601683677], [-77.33005035950053, 34.69621973356408], [-77.32988927805377, 34.696319133718454], [-77.32964702839715, 34.69646078244745], [-77.3296063899071, 34.69653673155134], [-77.32951673802317, 34.696749962313696], [-77.32930486966666, 34.697162773501475], [-77.32920308454494, 34.69734394407704], [-77.32911238030542, 34.6973871818544], [-77.32886661171928, 34.69749987346698], [-77.32842168155071, 34.697703800432585], [-77.32823383585773, 34.69776125268007], [-77.32776490632456, 34.69790369051983], [-77.32745769582087, 34.698006977567374], [-77.32718206580815, 34.698105378764616], [-77.32710105434515, 34.69812791063554], [-77.32704885450545, 34.69810980134492], [-77.32681443901832, 34.6980951547157], [-77.3265647141853, 34.69808806711383], [-77.32652249580431, 34.69805869751033], [-77.32628659234838, 34.69790787382533], [-77.32612296607147, 34.6977025697662], [-77.32605060311722, 34.69762255087562], [-77.32588818795475, 34.697426092933256], [-77.32572972134182, 34.69726910392132], [-77.32563767026804, 34.697224670991446], [-77.32556850987918, 34.697221509396485], [-77.32545997526017, 34.69721654762002], [-77.32542067360109, 34.69721520686525], [-77.3253920415643, 34.69721654022487], [-77.32526964779512, 34.6972198757052], [-77.32505906076673, 34.697275592874455], [-77.32494918163184, 34.697292556615466], [-77.324825003199, 34.69729185072715], [-77.32369999215332, 34.69753266943136], [-77.3236824086496, 34.69753134168211], [-77.32325400643715, 34.69708748508164], [-77.32279776095993, 34.69669621394306], [-77.32276783071951, 34.69667321268716], [-77.32273956553223, 34.696655918712935], [-77.32264044314823, 34.69663123901569], [-77.32219001245898, 34.69648696389569], [-77.32197781445281, 34.6964926195448], [-77.32159262258483, 34.696482542420895], [-77.32102235187276, 34.69647301280386], [-77.32097313015464, 34.69647712020245], [-77.32036525096184, 34.69658578689554], [-77.32033068634424, 34.69657711286849], [-77.32010143717378, 34.69657833383873], [-77.31982814489179, 34.69656950915052], [-77.31976833207192, 34.696579734847504], [-77.31969715117415, 34.69657455776797], [-77.31918520807537, 34.69652623794262], [-77.31891370885316, 34.69648458470861], [-77.31862024200018, 34.69641029645792], [-77.31853470749745, 34.696381971312455], [-77.31829837752838, 34.69633801462741], [-77.3181149110141, 34.696310728232454], [-77.3180527101697, 34.69630318057557], [-77.317936191138, 34.69628955749239], [-77.31776320229697, 34.69626936906802], [-77.31765275088313, 34.69627206303798], [-77.3174661736738, 34.69626141916651], [-77.31707550163631, 34.696321899398015], [-77.31685762780421, 34.696295340383884], [-77.31665336980404, 34.696252449557726], [-77.316457653055, 34.696255050904064], [-77.31626993664338, 34.69625754561848], [-77.31608188259345, 34.69629785074957], [-77.31582689252917, 34.69633404674629], [-77.31561487589128, 34.69665697285537], [-77.31561678435045, 34.6967053801358], [-77.31568474468278, 34.69684648102794], [-77.31571302994675, 34.696975562302725], [-77.31575642899764, 34.6971736125724], [-77.31535106707952, 34.69735849934979], [-77.31490474770347, 34.69743162777644], [-77.31473453397857, 34.697419840654824], [-77.31463963038863, 34.697406907730155], [-77.31445651485919, 34.69735167300716], [-77.31426526963745, 34.697300712029474], [-77.31418242295803, 34.69725967531094], [-77.31395397482751, 34.69714601939752], [-77.31353902942169, 34.696989978366545], [-77.3132527270939, 34.69689712071799], [-77.31312620550875, 34.69677431212008], [-77.31266765436347, 34.696621964873074], [-77.31261148231033, 34.69660208332044], [-77.31257814617567, 34.69660023409203], [-77.31250919313368, 34.696583597567134], [-77.31199200228947, 34.69655709138669], [-77.31180297219728, 34.69643565808222], [-77.31146126709399, 34.69632346380653], [-77.31144806790347, 34.69631449957632], [-77.31141663200017, 34.696305937345535], [-77.31105410741415, 34.696223369031905], [-77.31090955954649, 34.69616193843508], [-77.31040869293649, 34.695931535059806], [-77.3102708895453, 34.69587498719833], [-77.30983589398836, 34.69573663698646], [-77.30970187200668, 34.69568691521107], [-77.30927195323171, 34.69562731052168], [-77.30926879384127, 34.695628042810284], [-77.30925971036845, 34.69562658847457], [-77.30877178350714, 34.695613961500555], [-77.30867474115209, 34.69561209808554], [-77.30853126722997, 34.69560874472475], [-77.30806280838583, 34.69565761306558], [-77.30779423529697, 34.695593417481575], [-77.30751043953714, 34.69586610484959], [-77.30745078559298, 34.69592728646009], [-77.30730883279426, 34.69619136144867], [-77.30700987509344, 34.6968132786134], [-77.30693293728692, 34.697027785200525], [-77.30706928392526, 34.69701474836924], [-77.30747318369468, 34.69740049725235], [-77.3076487130608, 34.697380070345986], [-77.30817834207987, 34.69731843347645], [-77.3086810090338, 34.697259931694504], [-77.30892132018721, 34.69723196337806], [-77.30944459318303, 34.6970817743304], [-77.30990329247953, 34.69710823404723], [-77.31003978316465, 34.697093842591656], [-77.31038432931189, 34.697422022588086], [-77.31039612245019, 34.697517398993064], [-77.3104327319893, 34.69780114974429], [-77.31049120334522, 34.69823239193622], [-77.31051365148811, 34.698379030948416], [-77.31054516856886, 34.69867259134077], [-77.31057555483176, 34.69895563656377], [-77.31085004759768, 34.699307681953016], [-77.31100610654705, 34.69994643208222], [-77.31136070265083, 34.69992815114202], [-77.31220243720307, 34.699950217389954], [-77.31280044295048, 34.700397361808], [-77.31422381942768, 34.700795071413694], [-77.31434028527214, 34.70083387434949], [-77.31442787491514, 34.70083983174093], [-77.31552491438156, 34.700877906060335], [-77.31581376282114, 34.70057729116436], [-77.31621095832915, 34.70013929287241], [-77.31634761741833, 34.69998859536664], [-77.31671022730451, 34.69947976413291], [-77.31724386536243, 34.69908461216782], [-77.31759287031315, 34.699076634722466], [-77.31785413092962, 34.699044845547455], [-77.3181914135973, 34.69907000010478], [-77.31844675181931, 34.69906574782888], [-77.31872145851753, 34.69899690384217], [-77.31936814547521, 34.698836742264554], [-77.31971698672322, 34.69881525209357], [-77.32004354388266, 34.69876835538648], [-77.32063392843853, 34.69868246525721], [-77.32096247753182, 34.698649817510024], [-77.32119774236186, 34.69866890179274], [-77.32125851518924, 34.698661195698776], [-77.32138676484232, 34.6987117101352], [-77.3215278197365, 34.69876451638948], [-77.3216216812483, 34.698806843803624], [-77.32181497732321, 34.69898239078067], [-77.32202578271779, 34.69911095836576], [-77.32235489002372, 34.69935534708276], [-77.3229555179429, 34.69959878956507], [-77.32305910131012, 34.69967527206281], [-77.32325964800937, 34.69973434593598], [-77.32359839568652, 34.699879587234825], [-77.32367836835553, 34.69991387590182], [-77.32408976396341, 34.70024875683224], [-77.32424186711788, 34.700268694012536], [-77.32438261423077, 34.700377941215855], [-77.32476044561345, 34.700658056474296], [-77.32546312086228, 34.70120457946612], [-77.32607209535196, 34.70166756896485], [-77.32681393522182, 34.70223155480634], [-77.32771332197021, 34.702407181874364], [-77.32824900759579, 34.702417196747064], [-77.32860059806862, 34.702433840023446], [-77.33061641686612, 34.70242784086054], [-77.33064369472116, 34.70241764354435], [-77.33069205371874, 34.70240167466678], [-77.33271385335973, 34.701734044553405], [-77.33327770555631, 34.70159451846788], [-77.33496539129334, 34.701176880280414], [-77.3358580098696, 34.70095598097916], [-77.33697900086298, 34.700408761948175], [-77.33724205688281, 34.70031349616385], [-77.33831230603526, 34.69944274623987], [-77.33854512361509, 34.69924387799262], [-77.33878699064681, 34.699117156872525], [-77.33930585020269, 34.698641641837966], [-77.33960749174764, 34.6982903248295], [-77.3400166969163, 34.697995184882146], [-77.34037491996187, 34.69777264884395], [-77.34043982519147, 34.69773198854924], [-77.3410139643217, 34.69761451173965], [-77.34101963582387, 34.6976140828442], [-77.34102805689997, 34.69761517697186], [-77.34162574181805, 34.697588414269205], [-77.34214582169697, 34.69753200697272], [-77.34233171242168, 34.69749431833471], [-77.34266385128089, 34.6971334410498], [-77.34289874747972, 34.69686401657177], [-77.34296356978132, 34.69677784348885], [-77.34310216870509, 34.6966274721331], [-77.34364327138704, 34.696103793320404], [-77.34389586874349, 34.69575243639483], [-77.34410670363756, 34.69523800812616], [-77.34410689423915, 34.69523610215141], [-77.34410794762147, 34.69523401034048], [-77.34439893722259, 34.69470864741341], [-77.34457431170063, 34.694375930443286], [-77.3447554304353, 34.69417234713111], [-77.34490139347783, 34.694027594608514], [-77.34506469290211, 34.6939927810157], [-77.34540807686744, 34.69383849214867], [-77.34573784409672, 34.69373614900789], [-77.34615016996474, 34.69366261451737], [-77.34635695368137, 34.693665575800516], [-77.34660623367584, 34.6941000316017], [-77.34680026143924, 34.69420033753071], [-77.34689898233256, 34.69426894361479], [-77.34703538813233, 34.694346820174204], [-77.3471956642373, 34.6944348280524], [-77.34731145224458, 34.69450137154141], [-77.34772571982275, 34.69473944932052], [-77.34775599495703, 34.69479201570821], [-77.34798676632113, 34.694848027992315], [-77.34849606730491, 34.69454481600869], [-77.34885064968171, 34.69473804040875], [-77.34903211017156, 34.69476029136543], [-77.34919902575378, 34.69486414576066], [-77.34949958633833, 34.69498334155028], [-77.34954572645489, 34.69499153921661], [-77.34955775527602, 34.69501157839161], [-77.34966253982508, 34.69505703214354], [-77.34963326944947, 34.69496499058542], [-77.3496132738411, 34.694939560373804], [-77.34967268086491, 34.694715889959966], [-77.34965165730264, 34.69468820932262], [-77.34949272132289, 34.69463814250469], [-77.34940034661889, 34.69450958295874], [-77.34926892583412, 34.694416171994675], [-77.34900239659905, 34.694076827521286], [-77.34940357802157, 34.693550878569525], [-77.34940939656386, 34.69353357878676], [-77.34945897962962, 34.69348155354731], [-77.34989253567491, 34.69297987427355], [-77.35003101670586, 34.6928305333967], [-77.35024975242736, 34.692628499730205], [-77.35069961997633, 34.6921466865215], [-77.35102954127314, 34.69184901824565], [-77.35142130635009, 34.69150990815719], [-77.35183624530737, 34.691287722800205], [-77.35226842039269, 34.690984325785934], [-77.35277246658788, 34.69063495595371], [-77.35306197648192, 34.690411268915376], [-77.35337622992677, 34.69006467311734], [-77.3533830005012, 34.69005758790295], [-77.35340924788916, 34.689993219983094], [-77.3535771462439, 34.689591431101164], [-77.35360218137811, 34.6895462637425], [-77.35429342237848, 34.68900945441182], [-77.35438297811277, 34.68902926832094], [-77.35485257438147, 34.68914522006858], [-77.35502887484725, 34.689195025511154], [-77.3553579540799, 34.689255305153466], [-77.35541657476415, 34.68926428855337], [-77.35545101042524, 34.6892643318132], [-77.35548692623038, 34.68928744914791], [-77.35581598226563, 34.68937763243585], [-77.3559533452061, 34.68947716059995], [-77.35623094543767, 34.68967265635291], [-77.35621559423959, 34.6898584794995], [-77.35662572599641, 34.690105822994624], [-77.35670404906053, 34.6902709496618], [-77.35686872619652, 34.69044777685279], [-77.35789021545939, 34.69086174333692], [-77.35782607581011, 34.68994096365319], [-77.3573025637533, 34.689810289165784], [-77.35757219444555, 34.689303375430015], [-77.35756805504573, 34.68900163126261], [-77.35775439821138, 34.688826650541614], [-77.3578667155586, 34.68858764523093], [-77.35777462355706, 34.68848587356131], [-77.35752703221006, 34.688179903609814], [-77.35742573630796, 34.688138640969456], [-77.35734261925892, 34.68805782241044], [-77.35703275323006, 34.68782067003713], [-77.35689720192116, 34.68775702937459], [-77.35666865311003, 34.68766300160963], [-77.35660445232003, 34.687234155830076], [-77.35623768437534, 34.68748216051346], [-77.35623312689223, 34.68747974393204], [-77.35623245144359, 34.687479216825466], [-77.35610264736287, 34.68738306829147], [-77.35609906348881, 34.68735927685443], [-77.35608048290995, 34.68725639510523], [-77.35617988526022, 34.68715028861615], [-77.35621870039483, 34.68714620826692], [-77.35633470612609, 34.687132431368006], [-77.35660507624445, 34.68716959666804], [-77.35662303071203, 34.68717015349516], [-77.35663485272953, 34.68717054073497], [-77.35666699451075, 34.68717584423393], [-77.35718571672824, 34.68729370139234], [-77.35732724701448, 34.687085162351266], [-77.35744880867865, 34.68664105181911], [-77.35750397892066, 34.686573502668686], [-77.35790127615749, 34.6861957666492], [-77.35808899181943, 34.68600576405364], [-77.35812453703366, 34.685963583837605], [-77.35817965444782, 34.68593149557567], [-77.35887562178898, 34.68535292165693], [-77.35895857289447, 34.6853100103293], [-77.35931377061674, 34.685103090234485], [-77.3593225101435, 34.68510179512747], [-77.35960811156278, 34.68513426252101], [-77.36006088195276, 34.6852475115482], [-77.36011597433496, 34.6852794585962], [-77.36026772641408, 34.685310487054245], [-77.36072474029086, 34.68541139063122], [-77.36103794606004, 34.685358196852754], [-77.36184426611827, 34.68543152200556], [-77.36194009217638, 34.68534834607072], [-77.3625216844703, 34.684755570147544], [-77.36293539116832, 34.68468601251364], [-77.36336168592686, 34.684574556340735], [-77.36389645786268, 34.68469774588639], [-77.36393326704518, 34.68470629525587], [-77.36450883652448, 34.68474647110131], [-77.36481959819696, 34.684812438358094], [-77.36515530824296, 34.68503495634942], [-77.36540799745254, 34.68514793988187], [-77.36559495594267, 34.68512873302666], [-77.36580656705415, 34.68523534290077], [-77.36597037663206, 34.68525958515903], [-77.36614788572854, 34.68528585466441], [-77.3662928827153, 34.685255192165506], [-77.36665575235624, 34.68531615500096], [-77.36673042153978, 34.68534094030617], [-77.36691981094096, 34.68527986556986], [-77.36727615596291, 34.685140568072526], [-77.36740125887935, 34.68509167717181], [-77.36765654465296, 34.68499384095483], [-77.36749606858632, 34.68520066908371], [-77.36772787933877, 34.685333168133916], [-77.3677313633483, 34.685544017357685], [-77.36769568413283, 34.68566062645317], [-77.36761555515932, 34.685813888884724], [-77.36773203982733, 34.68601448810462], [-77.36781600606231, 34.68644806053136], [-77.3681913397059, 34.68649435616436], [-77.36823458782202, 34.68656134452197], [-77.36834009837706, 34.68672168944564], [-77.3682427702109, 34.68690800383328], [-77.3684414710523, 34.68702030228204], [-77.36811166592591, 34.68715739894187], [-77.36762143151373, 34.68738634948703], [-77.36729179061948, 34.68753187870661], [-77.36713815235048, 34.687686815397385], [-77.36721460996584, 34.68779788898658], [-77.36788252686011, 34.687973832330364], [-77.36766668931739, 34.68858896004307], [-77.3680358806174, 34.68909315278838], [-77.36834813591727, 34.68919237454971], [-77.36835550731179, 34.68946907615781], [-77.36889759902633, 34.690249090910946], [-77.36903678862053, 34.69023921779692], [-77.36950115703135, 34.69028640069227], [-77.36997191607068, 34.69030780500779], [-77.37008167619547, 34.69029397064262], [-77.37022665731507, 34.69067407562767], [-77.37035219588904, 34.690803550726926], [-77.37044237162995, 34.69111384450621], [-77.37045631963593, 34.69112990144938], [-77.37043404590814, 34.69114254297311], [-77.37041110069539, 34.691136116906115], [-77.37003419026776, 34.691048372957226], [-77.36989358081412, 34.69094231773114], [-77.36955678833276, 34.69099073338535], [-77.36905331733922, 34.69101499634399], [-77.3686912960367, 34.69096016195821], [-77.36847503030369, 34.690914826470106], [-77.36862173732197, 34.690558745276086], [-77.3678933471547, 34.69079288774626], [-77.3675136647054, 34.69089301894149], [-77.36646075948585, 34.690799607702104], [-77.36620990026002, 34.69171350065132], [-77.36566591427712, 34.69264787681273], [-77.36568045322784, 34.69282298817292], [-77.36594261634255, 34.69289310050755], [-77.36593955843857, 34.69272543673878], [-77.367181247306, 34.69203868864582], [-77.3673607471915, 34.69231798903215], [-77.36748602748696, 34.6925129206076], [-77.36718470152671, 34.693241998441366], [-77.36798456394513, 34.693395989477885], [-77.36800142356515, 34.69340177934134], [-77.3680238127978, 34.69341379825109], [-77.36859704624453, 34.69373175263752], [-77.36833362160662, 34.694346003183306], [-77.36864191087915, 34.69525646989411], [-77.3686470089256, 34.69527030066592], [-77.36864674266226, 34.69527775580544], [-77.36866369836714, 34.695304516474515], [-77.36899261648308, 34.69579275219829], [-77.36934436206163, 34.69615666162967], [-77.36945299481079, 34.69622685494407], [-77.36953911767114, 34.69629034710876], [-77.37023768591722, 34.697008667352286], [-77.37034117462564, 34.69712014215707], [-77.37047145921196, 34.69720319478953], [-77.37080782320739, 34.697549425060906], [-77.37115252447443, 34.697857711065254], [-77.37129572470582, 34.697962347074046], [-77.37141649023769, 34.69807236834832], [-77.37160974327473, 34.69828225950992], [-77.37165760322304, 34.698472286240374], [-77.37175631576761, 34.69874950483836], [-77.37161596697938, 34.69929285801695], [-77.37216343230253, 34.699624406971296], [-77.37276232081305, 34.69919889644431], [-77.37291493502494, 34.69909737925889], [-77.37292657907342, 34.69908184860748], [-77.37333175586403, 34.699154789336944], [-77.37348978854445, 34.69917925499564], [-77.3735675511899, 34.69923162082071], [-77.37363442214024, 34.6993160509236], [-77.37375235823436, 34.69944991236787], [-77.37396125815887, 34.69961751844458], [-77.37410026900648, 34.699745957970904], [-77.37419729742487, 34.69983560719521], [-77.37423406869635, 34.69987108552125], [-77.37432984204528, 34.699963491457694], [-77.37441283165391, 34.70009020762732], [-77.37441575103846, 34.700094490265776], [-77.3744199521812, 34.70009983918679], [-77.37450721598586, 34.70022121117387], [-77.37456969668938, 34.700312339610086], [-77.37469745493001, 34.70046902730691], [-77.374855309441, 34.70066262463797], [-77.37489495852186, 34.700711251272736], [-77.37492020763182, 34.70075154749544], [-77.37507022095105, 34.70097059841871], [-77.37510176532554, 34.70100908036365], [-77.37525605121135, 34.70119277120355], [-77.37527072750855, 34.701210511418985], [-77.3752899905525, 34.70122776066064], [-77.3756288328204, 34.701628915500066], [-77.37567561483671, 34.7016873563764], [-77.37571912151162, 34.70181204862392], [-77.37580337305218, 34.70198327705653], [-77.3758347424159, 34.702088001826354], [-77.37587725626344, 34.70232067331436], [-77.3759958383013, 34.70255324948294], [-77.37607282023225, 34.702656404992915], [-77.3761986710058, 34.70286178647679], [-77.37630439668922, 34.70299822248887], [-77.37639003755888, 34.70310874001625], [-77.37649958135364, 34.70324890574801], [-77.3765831120407, 34.70335437927496], [-77.37664969853131, 34.70343814333524], [-77.37678375931034, 34.70359418910334], [-77.37694570873649, 34.703774661015174], [-77.3769920952023, 34.70382808028195], [-77.3770326574612, 34.70387288601297], [-77.37720183341187, 34.70406089238678], [-77.37739834916621, 34.70427798009763], [-77.37742470125349, 34.70428359676275], [-77.37742099858075, 34.70430688788415], [-77.37742380026054, 34.704342449487214], [-77.37744381699457, 34.70454744880427], [-77.37734945877011, 34.70473580601822], [-77.37733454687336, 34.70480617123996], [-77.37720811936101, 34.70493380713012], [-77.37680648323857, 34.70507174785388], [-77.37653682001317, 34.705184293319384], [-77.37627215859732, 34.705170885240676], [-77.37619581041703, 34.70516884479661], [-77.37585399965444, 34.7054744786365], [-77.37583873773234, 34.70549060757566], [-77.37581092653141, 34.705525957813784], [-77.37542883411693, 34.706042972813435], [-77.37526353431048, 34.706257228039505], [-77.37521461235553, 34.706379290212595], [-77.37530805708722, 34.70654697241883], [-77.3753799695861, 34.70664627105592], [-77.37562907468603, 34.70699023441166], [-77.37564861491967, 34.70722801406803], [-77.37574543627699, 34.70791244113603], [-77.37575801611953, 34.707932355530644], [-77.37666031050603, 34.707494620740384], [-77.37690863670446, 34.70704658150295], [-77.37661647434705, 34.70685448413406], [-77.37681512244046, 34.70635558395855], [-77.37683440728303, 34.70633712625779], [-77.3774581459815, 34.706135674847495], [-77.37777568300564, 34.70608441220776], [-77.37851047745475, 34.70607766886428], [-77.37868279273542, 34.706071687138575], [-77.37875900125017, 34.70607104392606], [-77.37914188707768, 34.705986211050615], [-77.379450933708, 34.70589561884165], [-77.37948302290505, 34.70588405238151], [-77.37956186691127, 34.705886591827706], [-77.38008722060431, 34.705912040602335], [-77.38058319797798, 34.706244175127004], [-77.38061398509818, 34.70626527979993], [-77.38062236427729, 34.70627720330379], [-77.38065818221627, 34.70630995826555], [-77.38113188758591, 34.70673071912441], [-77.38138325742632, 34.706837249167116], [-77.3822152155589, 34.70736070617269], [-77.3822286417944, 34.70736985213906], [-77.38223845050821, 34.70737340970953], [-77.38225874160239, 34.70738996904881], [-77.38350014463529, 34.70863272792835], [-77.38432201883836, 34.708993556370935], [-77.3847128299806, 34.70901988807239], [-77.3851190544062, 34.70911797895404], [-77.38565050155488, 34.70883369308294], [-77.38580572591309, 34.70874448437786], [-77.38626674285187, 34.70891929134572], [-77.38655597623271, 34.7091442590233], [-77.3867767808025, 34.70937116540156], [-77.38720199532915, 34.70976759029946], [-77.38727737511601, 34.709855630581536], [-77.38738920777094, 34.709838255223616], [-77.38759202958563, 34.7098759055008], [-77.38768976821663, 34.70985030680613], [-77.38782291367268, 34.70979935385074], [-77.38795186375114, 34.709740354623605], [-77.38818181539408, 34.70963806945993], [-77.38845699727455, 34.709559679013665], [-77.38894348965461, 34.70938727951441], [-77.38927929747652, 34.70928832722401], [-77.38936917307407, 34.709274078610974], [-77.38989746100044, 34.70945108554793], [-77.3899490715071, 34.709485034853806], [-77.38997344768039, 34.7095049785048], [-77.39047725172375, 34.709707615061646], [-77.39052036492754, 34.709725680067834], [-77.39052232862741, 34.70972491004795], [-77.39052671648834, 34.70972492764941], [-77.39097968831766, 34.709724697075735], [-77.39115649890803, 34.709742666842956], [-77.39146002883625, 34.70977791222665], [-77.39146640908439, 34.709779297201656], [-77.39147203025827, 34.709781710458834], [-77.39175983359236, 34.70987279468312], [-77.39205848222092, 34.709992669726134], [-77.39233963186166, 34.71008411793429], [-77.39265307388933, 34.710173196150365], [-77.39293552871894, 34.71023991220084], [-77.39314980347791, 34.71028111585375], [-77.39355017388503, 34.710331032501756], [-77.39364345047547, 34.710340248910214], [-77.3939516013903, 34.71036439992929], [-77.39411727775962, 34.71036695701335], [-77.39417981704426, 34.71037041131014], [-77.39424090722916, 34.71040389432885], [-77.39478818358148, 34.71048319317087], [-77.39490110973986, 34.710574980569035], [-77.39504635278549, 34.710698335989996], [-77.39510721151126, 34.710768809363415], [-77.39521425784363, 34.710890748400516], [-77.39528546191721, 34.710979240440935], [-77.39550035890505, 34.71121779206998], [-77.39552858491592, 34.71124630271306], [-77.39573529378872, 34.71154775305433], [-77.39574600817002, 34.71156169996214], [-77.3957535090194, 34.711576157900296], [-77.39596340550766, 34.71190715242509], [-77.39595955345094, 34.711918991981605], [-77.39596656584553, 34.712187832908405], [-77.39564981040354, 34.71249443783823], [-77.39606890475672, 34.71269976627817], [-77.39609175871414, 34.7127907916161], [-77.39600058344661, 34.713240840298454], [-77.39599730595114, 34.71331688959671], [-77.3963674501922, 34.713881541812626], [-77.3964325724225, 34.713953385961965], [-77.39693402865328, 34.714138587411966], [-77.3969788885077, 34.71417195118001], [-77.39708842801086, 34.714257840819464], [-77.39716631978024, 34.71431697231461], [-77.3971924203142, 34.714353016455306], [-77.39725545060556, 34.714502974219165], [-77.39739305118289, 34.71476673920069], [-77.39744366726624, 34.714870828410774], [-77.39747751709601, 34.71495313142752], [-77.39761431762474, 34.71524600630451], [-77.39779326514498, 34.71559782167903], [-77.39780041074577, 34.71561474652632], [-77.39780646245931, 34.7156273744862], [-77.39789467609921, 34.71579704915221], [-77.39798384221801, 34.715969010835494], [-77.39799069623231, 34.71598173927493], [-77.39799654072083, 34.71600244036573], [-77.39808387283892, 34.716283582484806], [-77.39809698885499, 34.71638374847252], [-77.39813159411194, 34.71664245360927], [-77.39815559080473, 34.71680564017373], [-77.39817040136316, 34.7168730010194], [-77.39829277362328, 34.71719477235121], [-77.39829323815492, 34.71719555157537], [-77.39852838811098, 34.71748539303736], [-77.39856061732709, 34.71752943286374], [-77.39859338777921, 34.71758013938825], [-77.39880629320129, 34.717873335341345], [-77.39885637777611, 34.7179517244637], [-77.39889125140324, 34.71806107872228], [-77.39887405033106, 34.71814705586345], [-77.39885714327005, 34.718231562834106], [-77.39881391201428, 34.71831648303883], [-77.39869858954316, 34.71860839222337], [-77.39861613380938, 34.71870638092436], [-77.39853622307982, 34.718878572973324], [-77.39847001165779, 34.71898286441178], [-77.3983127146707, 34.719159364258395], [-77.39796385650055, 34.719433179220836], [-77.39781805430499, 34.71941323614491], [-77.39766688837852, 34.71949254766555], [-77.39754657790415, 34.71971756090727], [-77.39725445851784, 34.71966874364568], [-77.39698645004586, 34.71954981498476], [-77.3966938545653, 34.719390952503225], [-77.39649608445492, 34.719282739223175], [-77.39628400701866, 34.719149312829664], [-77.39613944221233, 34.71909181082155], [-77.39588696360238, 34.71886977107054], [-77.39573041922297, 34.71870927943469], [-77.39564253691697, 34.71859428716372], [-77.39538411320149, 34.71842585653006], [-77.39472106412268, 34.718237401839836], [-77.39446551989168, 34.7182313102262], [-77.39431464549881, 34.71817336814465], [-77.39386817819634, 34.71808030173129], [-77.39373740341637, 34.71811761509523], [-77.39352186059436, 34.71837340805162], [-77.39346028617886, 34.71876295047274], [-77.3938731635417, 34.71928342773616], [-77.39366952316279, 34.71956835979538], [-77.39350894333629, 34.71984900904557], [-77.3934274591163, 34.7202457766556], [-77.39318145750133, 34.720664427448746], [-77.39317957379403, 34.72071819416815], [-77.39313926122495, 34.720741097931885], [-77.39296424532287, 34.720754966530244], [-77.3924373630444, 34.72080429699395], [-77.39222814379275, 34.72074762730422], [-77.39124010109886, 34.720511049876094], [-77.39032922242421, 34.7200680327406], [-77.38992583316917, 34.719975415265516], [-77.38900907918071, 34.71936070770789], [-77.38854117459391, 34.71920730820792], [-77.38789106314422, 34.719426665709044], [-77.38873004860075, 34.720323029074294], [-77.38918614028512, 34.720544461638205], [-77.38962498129341, 34.72098014749031], [-77.38978140142953, 34.7211194984352], [-77.38990663347666, 34.72113678005832], [-77.39004927539975, 34.721300284648194], [-77.39049274966028, 34.721785103378956], [-77.39073021268524, 34.7222696901902], [-77.39070814053837, 34.7225879478616], [-77.39069402306777, 34.7226442325615], [-77.39074643725719, 34.72281447779497], [-77.39060044646246, 34.72271725444456], [-77.39048835094837, 34.7226795538215], [-77.38968917644428, 34.72258199003531], [-77.3894007067461, 34.722432455114806], [-77.38904718379283, 34.722387594146554], [-77.3887637292294, 34.72241803636435], [-77.38868443110269, 34.72243538736868], [-77.38821709632194, 34.7223366112909], [-77.38814980796423, 34.72232410126191], [-77.38813297224826, 34.72230717157421], [-77.38787894676832, 34.721981874487916], [-77.38769010731684, 34.721698330069266], [-77.38760487126314, 34.721563186784486], [-77.38739838910985, 34.72128955033072], [-77.38721026288391, 34.721142047503996], [-77.38701174703861, 34.72100438726472], [-77.38694020323565, 34.72096784281511], [-77.38684166943351, 34.7209179487578], [-77.38666035684932, 34.720827389293994], [-77.38642904198711, 34.72080093387723], [-77.3860733958134, 34.720640521239716], [-77.38567996721181, 34.72033033824469], [-77.38558571752348, 34.72025979535829], [-77.38555343357893, 34.72022262868161], [-77.3854364962423, 34.72011622633278], [-77.38504416200144, 34.71976788719937], [-77.3847493021559, 34.71971577433426], [-77.38421522147505, 34.719615295199915], [-77.38380523983136, 34.71961833635334], [-77.383337182909, 34.719675865600095], [-77.38318967803707, 34.72001790393543], [-77.38287193024264, 34.72041175617417], [-77.38282148977348, 34.72044821545183], [-77.38274284179866, 34.72055192820247], [-77.38240502648874, 34.72086162829114], [-77.38232638530285, 34.72101629925597], [-77.38229837023914, 34.721103888719355], [-77.38222083540272, 34.72121574729276], [-77.3821204399659, 34.72132120143357], [-77.3820778713962, 34.72135826203585], [-77.38201268519825, 34.72137759690011], [-77.38188277064653, 34.72141334331838], [-77.38175860286356, 34.72140836313302], [-77.38169347165075, 34.72137287870246], [-77.38158545058596, 34.72130119084683], [-77.38142287046686, 34.72120056214824], [-77.38117348830474, 34.72120589165077], [-77.38078489858744, 34.72118955526169], [-77.38053060139106, 34.721323898029304], [-77.37983102864499, 34.721425066302174], [-77.37940195903823, 34.72153638220453], [-77.37897750210671, 34.72152575032406], [-77.3783423930621, 34.721676306920024], [-77.37818313872383, 34.721723233200386], [-77.37807496449255, 34.72169030655063], [-77.37774878964078, 34.721761163721176], [-77.37773346739002, 34.72176238557899], [-77.37766979561515, 34.721773241127295], [-77.3773983274629, 34.72181254775348], [-77.37732653970482, 34.721818888774045], [-77.37722315523835, 34.72184370217088], [-77.37692801039972, 34.721915425409875], [-77.3766820625246, 34.722071369946974], [-77.37657902218612, 34.72209302249337], [-77.37646845277072, 34.72213870247445], [-77.37595089753503, 34.72238152934844], [-77.37585667581996, 34.72240834583784], [-77.37575386751395, 34.722447744446455], [-77.37574085111079, 34.72257693344133], [-77.3755820841712, 34.722946808154816], [-77.37554914558763, 34.7231030825607], [-77.3754344739031, 34.723214785888416], [-77.3751064137196, 34.72333948856478], [-77.37506221853856, 34.72335432254496], [-77.3750180627505, 34.72338674315744], [-77.3747608357044, 34.72360982557287], [-77.37464019821026, 34.7237354783596], [-77.37446559988881, 34.72387538940446], [-77.37417471108982, 34.724083476792536], [-77.37414794311464, 34.724104269189965], [-77.374124868788, 34.72411427468798], [-77.37392376613924, 34.72422652715571], [-77.37381565428606, 34.72428562572504], [-77.37380572441354, 34.72429296078733], [-77.3735378223847, 34.72446796284209], [-77.37350233062355, 34.724545181751644], [-77.37339308938166, 34.72456741623752], [-77.37315316283774, 34.724722506875054], [-77.37296304778893, 34.724825946380214], [-77.37281383208305, 34.72491592935833], [-77.37265878431747, 34.7249990301293], [-77.37262178384499, 34.725015768677416], [-77.37245484477802, 34.725077189761045], [-77.37242464032941, 34.72507420170853], [-77.37229102103018, 34.72505077493448], [-77.37211821000825, 34.72497872210672], [-77.37200808638804, 34.72492095945999], [-77.37175999830426, 34.72480918461168], [-77.37174346333086, 34.72480113159904], [-77.37165333319538, 34.72475492799746], [-77.37148076292833, 34.724674679528775], [-77.37143470419792, 34.724665265394144], [-77.37097700006535, 34.724347217829816], [-77.3708778573031, 34.724305284224094], [-77.37084369583971, 34.72421937539712], [-77.37066584732597, 34.7240741835075], [-77.37051719805152, 34.723868285623396], [-77.36994957655457, 34.72434223961828], [-77.36986140720772, 34.72444393556775], [-77.36973276311929, 34.72450798665019], [-77.36940168009639, 34.724674845019756], [-77.36936821570174, 34.72467855654413], [-77.36907477597742, 34.72471194941505], [-77.36877165847471, 34.724754906256905], [-77.36844660760815, 34.724813155299756], [-77.36813355719508, 34.72484018493961], [-77.36784324271989, 34.72482889293754], [-77.36770085639816, 34.72477891583079], [-77.36730721158808, 34.7247052967578], [-77.36729475241202, 34.724697177415926], [-77.3672820535693, 34.72469931590153], [-77.36726883803955, 34.724699965494224], [-77.36667499641366, 34.72472776924389], [-77.36632423092064, 34.7248403411049], [-77.36607938310617, 34.72492260162423], [-77.36600453186409, 34.724974667505265], [-77.36568380765533, 34.725210338469644], [-77.36534480485832, 34.725409203288095], [-77.36526555956819, 34.7254575610983], [-77.36524268036044, 34.72545772401536], [-77.36480791180026, 34.72542809707953], [-77.36468506867296, 34.725394461278704], [-77.36442518029145, 34.725328361988815], [-77.36413155128213, 34.72523844155444], [-77.36408527477624, 34.725195675020004], [-77.36402663464713, 34.7251559591414], [-77.36384637709742, 34.72498526293642], [-77.36378982526705, 34.72480884038706], [-77.36376512186732, 34.72470449154198], [-77.36372818994437, 34.72456516509753], [-77.36366944851466, 34.72433292857063], [-77.36363040398219, 34.724235607594686], [-77.36355219811061, 34.72414004200621], [-77.36348456490894, 34.724080955438346], [-77.36332600422284, 34.72388786088767], [-77.36323572541382, 34.72387819519025], [-77.36313295263912, 34.723816546301975], [-77.3628046587595, 34.72362105325312], [-77.36259121666407, 34.72358565812987], [-77.36167850313868, 34.723576558447405], [-77.36157191843215, 34.72374210169454], [-77.36111522288411, 34.72435390486751], [-77.36114967217286, 34.72457632570656], [-77.36117832224265, 34.72467282317932], [-77.36106699111517, 34.724949368334585], [-77.36101026374033, 34.7250828582512], [-77.36080810420242, 34.72535820357098], [-77.36044096776227, 34.72557502713374], [-77.36035385468895, 34.72559396155782], [-77.35987509865097, 34.72572613528101], [-77.35980518845302, 34.72574607098887], [-77.3597893915466, 34.725756743162954], [-77.35946611260938, 34.726083868238305], [-77.35934888977894, 34.726080431211926], [-77.35913342674525, 34.7259535593691], [-77.35902901350305, 34.72593232103887], [-77.35879509187035, 34.725874439948136], [-77.35876520881024, 34.72574106877145], [-77.35860285346803, 34.725718510434746], [-77.35842340866489, 34.725798274746374], [-77.35826393458774, 34.725947373957126], [-77.35782293409532, 34.72634219960351], [-77.35772121408169, 34.7264525733715], [-77.35720939417472, 34.72654386621684], [-77.35716671754126, 34.72653983947345], [-77.35661958237496, 34.72660342886135], [-77.35654086027729, 34.726632916501], [-77.35648961987057, 34.72663783242889], [-77.3561279862187, 34.7265874265982], [-77.35597111002454, 34.72653277458937], [-77.35575362562052, 34.72648122657712], [-77.35570885388996, 34.72629818208408], [-77.35565173841687, 34.72616540291867], [-77.35562269926137, 34.725869728368956], [-77.3556227182639, 34.72582262384419], [-77.35562731386284, 34.72578998291496], [-77.35561831386488, 34.72568554310855], [-77.35556970186265, 34.72534251828857], [-77.35560317033985, 34.725214192939106], [-77.35562380023738, 34.72500426450972], [-77.35561299934506, 34.72484919014445], [-77.35537278150824, 34.72446896678636], [-77.35514336148424, 34.72458547078671], [-77.35440978708544, 34.724795034623114], [-77.35448105450749, 34.72509501319011], [-77.35455935361648, 34.725207969540065], [-77.35466444396029, 34.72534813259077], [-77.35464921858667, 34.7254688851995], [-77.35460253066327, 34.72578997099782], [-77.35455779794486, 34.7259688185045], [-77.35448822981527, 34.726141019977405], [-77.35419126403163, 34.7264754435071], [-77.35415709934522, 34.726511208203625], [-77.35411425068055, 34.72655982519325], [-77.35387822276739, 34.72687701087484], [-77.35388638055274, 34.72703575309941], [-77.35387380914175, 34.72713900491226], [-77.3539951312363, 34.72750820628669], [-77.35368899045761, 34.72798583171886], [-77.35366944567963, 34.728040297263206], [-77.35358447809006, 34.72814999759168], [-77.35321203205044, 34.72859046678122], [-77.35310733379384, 34.72874695597139], [-77.35296895883837, 34.729017713478626], [-77.3529175690813, 34.72911826781852], [-77.35278932260015, 34.729240653590416], [-77.35266192626139, 34.72925390656665], [-77.35228326352613, 34.72929329840561], [-77.35217707943535, 34.72928674588238], [-77.3521203661715, 34.72927631207205], [-77.35198446344634, 34.72924634234074], [-77.35161297564068, 34.72916709480539], [-77.35121876758672, 34.729181477890904], [-77.35064259851688, 34.7289431273709], [-77.35053578252486, 34.72891847386256], [-77.35049051226308, 34.72890802514193], [-77.35034438977138, 34.728984053726045], [-77.35044496752852, 34.729064821084144], [-77.3507427985438, 34.72954761579378], [-77.3511151691942, 34.72985303205634], [-77.35123881677073, 34.72995444784749], [-77.35135629463693, 34.73005080151803], [-77.35148682834809, 34.730157863292916], [-77.35172177587717, 34.7302571595897], [-77.35180736726528, 34.73030548630757], [-77.35187503834828, 34.73032664186493], [-77.35206894678811, 34.73037991354965], [-77.35243345962817, 34.73046588380683], [-77.35257219337736, 34.730505537652874], [-77.35279815802029, 34.73059680439163], [-77.35291437965495, 34.73063650875309], [-77.35296992365343, 34.73068072862509], [-77.3531589823085, 34.73084254548165], [-77.35348066486846, 34.73098414616253], [-77.3534870566285, 34.73098962860499], [-77.35341667478595, 34.73143271925829], [-77.3534961331433, 34.731475764920035], [-77.35341487245631, 34.731572426665], [-77.35311926604432, 34.732228450775054], [-77.35299948649208, 34.73248088835738], [-77.35297079755843, 34.73252263692948], [-77.35287973591839, 34.732634169672174], [-77.35246140227136, 34.73328064643991], [-77.35244901625285, 34.73356901661984], [-77.35214262649355, 34.73398958391267], [-77.35214281168372, 34.73409842567233], [-77.35203341417352, 34.734177956688896], [-77.35195441086984, 34.73417701331592], [-77.35171660222642, 34.734317290342844], [-77.3512440675421, 34.73456069692176], [-77.35114616032429, 34.73466836560718], [-77.35111598414966, 34.734726732320766], [-77.35078104757147, 34.73498313560263], [-77.35072120912228, 34.735082953107884], [-77.35059648932885, 34.735285406708115], [-77.3505209739804, 34.735390971981154], [-77.35033606108772, 34.735624805892876], [-77.35021210405827, 34.73575557643998], [-77.35013777172699, 34.735835737502505], [-77.34996256854681, 34.73606068178576], [-77.34991825818324, 34.73610955134777], [-77.34990905782665, 34.73612534248461], [-77.34975598156335, 34.736375509681125], [-77.34944981460403, 34.736613925307076], [-77.34928250737802, 34.736583762234964], [-77.34900137385233, 34.73659766550273], [-77.34885000229238, 34.73661701745942], [-77.34871759368227, 34.736624078826324], [-77.34845998618198, 34.73655334562759], [-77.34828195232363, 34.73651077591403], [-77.34815674376327, 34.73648757937512], [-77.34799704406497, 34.736460696358215], [-77.34792198494421, 34.7364476430253], [-77.34771212639265, 34.73641064884755], [-77.34752404530218, 34.73635952797654], [-77.34718909827646, 34.73626848785426], [-77.34715044995687, 34.736282474062925], [-77.34661397891752, 34.73680662893728], [-77.34686745757662, 34.737256508000904], [-77.34686832323071, 34.737258044371835], [-77.34686889042398, 34.737259034228565], [-77.34687164888116, 34.737263787555655], [-77.3472046423575, 34.73778774055679], [-77.34727373765915, 34.73791956887932], [-77.34746126460041, 34.73815251651866], [-77.3476019717264, 34.73827051548244], [-77.34773470900944, 34.73839440533065], [-77.3480777171538, 34.73869298133456], [-77.3484906502963, 34.738986034611855], [-77.34857100932558, 34.739101951542985], [-77.3487105072881, 34.7391587559599], [-77.34918964644048, 34.73941452049675], [-77.34922946723921, 34.739434036540175], [-77.34949078457672, 34.739823561281746], [-77.34896315198927, 34.7403507257498], [-77.3489347657526, 34.740368289434045], [-77.3488575308485, 34.740397833685], [-77.34841517431866, 34.74054621781406], [-77.34834108298469, 34.74071238558903], [-77.34832113134311, 34.74078203593719], [-77.34831949884762, 34.74087214852646], [-77.34830899985877, 34.74096047727339], [-77.34829457573723, 34.741077646391616], [-77.34826631013223, 34.74130724386255], [-77.34832248975677, 34.741446005325585], [-77.3482224027031, 34.74165197977077], [-77.3482010858747, 34.74175159581985], [-77.34816137449258, 34.74195549091553], [-77.34815581610079, 34.74209878359511], [-77.34816065007367, 34.74217688260746], [-77.34815358431696, 34.74222928586017], [-77.34814990438932, 34.74244444349828], [-77.34814756652857, 34.742581132402876], [-77.34814572706892, 34.74268870649179], [-77.34813098993664, 34.742847544929504], [-77.34811328814651, 34.74293684667565], [-77.3480400221049, 34.74340522854297], [-77.34803204847533, 34.74345835085002], [-77.34800322185306, 34.743654763979464], [-77.347969055092, 34.74390098516246], [-77.34796460889115, 34.74393200412287], [-77.34796193660318, 34.74397432611029], [-77.34795779425508, 34.744303832573635], [-77.34799194024272, 34.744415632915604], [-77.34800140672968, 34.74464757087337], [-77.34803241573306, 34.744897458670124], [-77.34791940045201, 34.74512173333567], [-77.34786917286853, 34.745407234476204], [-77.34772757601363, 34.74568152987521], [-77.34738830205157, 34.74577116347167], [-77.34711866593122, 34.74573754564077], [-77.34706243019542, 34.7457305341669], [-77.3468135256505, 34.74568785473268], [-77.34667766430114, 34.745682511888944], [-77.34633982306173, 34.74572862682197], [-77.34619534394851, 34.74575392521518], [-77.34597127383569, 34.74583157004896], [-77.34577607782595, 34.74586746170507], [-77.34579361532705, 34.745968194636816], [-77.34595653689095, 34.74602734133842], [-77.3461082164778, 34.74605377233176], [-77.34614181118563, 34.74609460279852], [-77.3462157561972, 34.7461214473533], [-77.34637300363158, 34.74617321361019], [-77.34653162447815, 34.746189005001526], [-77.34666388891019, 34.746202838627475], [-77.34689938700257, 34.74622437034893], [-77.34727542036323, 34.746159662999915], [-77.34745558644647, 34.746266807341975], [-77.34774329616579, 34.746333735505566], [-77.34781881141262, 34.74635100250849], [-77.34785089461683, 34.74635698146332], [-77.34790804532405, 34.746376659242436], [-77.34823751489068, 34.74645383514796], [-77.34836194662299, 34.74654322705318], [-77.34879968988349, 34.74674170359816], [-77.34885653262957, 34.746766151466375], [-77.3488847349596, 34.74680548898172], [-77.349325054205, 34.74709674993108], [-77.34938649095444, 34.74714015227909], [-77.34939098778027, 34.74714350224549], [-77.34939533680334, 34.74714735638053], [-77.3498705993313, 34.747535569075346], [-77.34988719102584, 34.747550272353585], [-77.34990053687592, 34.74756541703395], [-77.34997578873003, 34.74767322034676], [-77.35019622302488, 34.748012224611415], [-77.35023563270757, 34.74807068404401], [-77.35025834180675, 34.74826269368366], [-77.35031134962146, 34.74840664781689], [-77.35027975310672, 34.748488143290906], [-77.35011170236947, 34.748767426491696], [-77.34998273997888, 34.74895590047238], [-77.34990909042322, 34.749026383210996], [-77.34991432606643, 34.74910618116402], [-77.34964519826343, 34.74954997166711], [-77.34953492468584, 34.749835726089906], [-77.3494249392615, 34.750067572580534], [-77.3490555438762, 34.75034088830066], [-77.3487755794979, 34.750439589713224], [-77.3483941193949, 34.75055568857088], [-77.34795686286853, 34.75061155125379], [-77.3477776663977, 34.75061570073555], [-77.34751795783322, 34.750602050914594], [-77.34717598974879, 34.7506248536983], [-77.34664340200094, 34.75093656166126], [-77.34655001374759, 34.75102112820629], [-77.34637458255116, 34.75143414761402], [-77.34636068227836, 34.75146272344603], [-77.3463166102751, 34.75152084849619], [-77.34584210706032, 34.75167057238639], [-77.3456856331102, 34.75163079936882], [-77.3456310662273, 34.751611716904954], [-77.34550995215585, 34.75157942208295], [-77.34512663870383, 34.75149303876353], [-77.34490167221526, 34.75147573114682], [-77.34483268678687, 34.75147390030208], [-77.34474017615257, 34.7515084266784], [-77.34450513010697, 34.75157039593468], [-77.34431356073128, 34.75159301038039], [-77.34381062037359, 34.7518989352239], [-77.34352026977993, 34.75165812608654], [-77.34328727445444, 34.75163850986395], [-77.34316652149954, 34.75153596640928], [-77.34305825178393, 34.75142832323061], [-77.34294821698707, 34.75130965681507], [-77.34282522242796, 34.75116719163242], [-77.34267566041251, 34.75099341956862], [-77.34254177913937, 34.75083384215403], [-77.34249196779174, 34.75077492493429], [-77.34237506289188, 34.75065497111468], [-77.34232998606821, 34.750602528287835], [-77.3422468768867, 34.750564850327486], [-77.34211646131575, 34.75051420628825], [-77.34195023928785, 34.75050035915516], [-77.34183468419451, 34.75045318283768], [-77.34132500291568, 34.7502219019051], [-77.34128173014557, 34.7502260602937], [-77.34067085731049, 34.75033542770298], [-77.34032727997598, 34.75061457205193], [-77.34025173388015, 34.750838456759325], [-77.3398128490449, 34.751226419415545], [-77.33969821901458, 34.75133388282306], [-77.33910834896949, 34.7515892418801], [-77.33871981574136, 34.75140758424797], [-77.33856335229467, 34.751403331179816], [-77.33813585069117, 34.75122626899268], [-77.33802403318595, 34.7511978929177], [-77.33796083743141, 34.75120282802371], [-77.33790102239243, 34.75116078103581], [-77.33748343873128, 34.75099684738609], [-77.33726377601334, 34.750950463043374], [-77.33697398298582, 34.75080050911884], [-77.336946344072, 34.75078376997985], [-77.3367570753117, 34.75055173971961], [-77.33661678923116, 34.750362107311474], [-77.33649254044877, 34.75028418872503], [-77.3363249023995, 34.750095718811394], [-77.33626162619852, 34.75004820713248], [-77.33619935589579, 34.74999517108314], [-77.33611392517658, 34.74994367584043], [-77.33605689498387, 34.74990762763132], [-77.33600842101129, 34.74988890585894], [-77.33587893771738, 34.74986485449196], [-77.33571850340925, 34.749855890072524], [-77.33559717864068, 34.74986692977245], [-77.33541538853777, 34.749868268557115], [-77.3351830739875, 34.74988661430682], [-77.33478580638076, 34.749973346485135], [-77.33453867786109, 34.749953978076206], [-77.3344065931143, 34.74999399778467], [-77.33418214515615, 34.74998925980918], [-77.333910064114, 34.75003532408655], [-77.33371756414294, 34.750129591108795], [-77.33350855361947, 34.75024568849789], [-77.33327931441296, 34.75033224887768], [-77.33296810168365, 34.750477378731716], [-77.33278022534408, 34.75045607694623], [-77.33225496498301, 34.75043659689726], [-77.33193079932096, 34.75032082782443], [-77.33164689926802, 34.75006862099596], [-77.33164495348746, 34.74975231930792], [-77.33159102711534, 34.74925707740925], [-77.33160133214714, 34.74910012848177], [-77.33161377866243, 34.74898802415103], [-77.33149670909938, 34.748923977635876], [-77.33131521509469, 34.74865197294938], [-77.3311291466688, 34.74857233849008], [-77.33084470797138, 34.748229087227216], [-77.33070528328696, 34.74810993745932], [-77.33058129038604, 34.747951943131355], [-77.33028203633086, 34.74764706458302], [-77.3301209001184, 34.747475173508235], [-77.32999498767049, 34.74737080325143], [-77.32975562285796, 34.74726350536031], [-77.32958991392884, 34.74724119223857], [-77.32936113020935, 34.74728093020215], [-77.32897077887716, 34.74731035122531], [-77.32870309476198, 34.74728440203343], [-77.32836094266291, 34.74734752553855], [-77.32812039192063, 34.747338235150025], [-77.32797964491684, 34.7473334176887], [-77.32776812399116, 34.747326177506324], [-77.32755307975788, 34.74738023197655], [-77.32736806606918, 34.747429816826205], [-77.327101737725, 34.74755779214572], [-77.32688119649046, 34.74763674091875], [-77.32603591917187, 34.74775827546912], [-77.32584539295605, 34.747758186174394], [-77.32551139575409, 34.7476995640169], [-77.32526502051844, 34.747694022775185], [-77.3249051121677, 34.74783930558994], [-77.3245850290165, 34.74797236478298], [-77.32446246610775, 34.74804676901614], [-77.32404195767357, 34.74818648535458], [-77.32391074031754, 34.748231080806086], [-77.32375725376032, 34.748225487683236], [-77.32337375414919, 34.748228215164886], [-77.32331864612893, 34.748207197584954], [-77.32311559225701, 34.74812989497603], [-77.322774991612, 34.74801678278328], [-77.32268245999603, 34.74797138154841], [-77.32247406708272, 34.74791390191561], [-77.32222393386549, 34.74785182481365], [-77.32159707726375, 34.74801746018886], [-77.32155569416814, 34.74802419336205], [-77.3208423942544, 34.748482471420665], [-77.32054904571521, 34.74840886127001], [-77.32010598886879, 34.74872562147484], [-77.31967531137785, 34.74891134457896], [-77.31982860016392, 34.74925097643872], [-77.3198973079146, 34.74932393429768], [-77.31996474890644, 34.749440134113456], [-77.32005796234286, 34.749594546791315], [-77.32019662784019, 34.74968793477829], [-77.32028717831652, 34.74981246193781], [-77.32041862363154, 34.74993918780636], [-77.3209559065418, 34.75008666115801], [-77.32097258704188, 34.75009420537746], [-77.32102166100096, 34.750104709211186], [-77.32138182272222, 34.75015339149641], [-77.3215010894873, 34.750336749209005], [-77.32152765421975, 34.75043539921863], [-77.32152081655839, 34.75048129441717], [-77.32153015554904, 34.75055541024426], [-77.32152863452276, 34.75072390551026], [-77.32141411874842, 34.75091676067324], [-77.3213788338723, 34.750988105338514], [-77.32128899927032, 34.75106582646562], [-77.32123002091458, 34.751058259803244], [-77.32076065283995, 34.751150299831934], [-77.32065344201654, 34.751191264040635], [-77.3199852942392, 34.75166633045019], [-77.3199447159499, 34.75170403788065], [-77.31987703564053, 34.75180083652356], [-77.3195956704204, 34.75220705341468], [-77.31944026749495, 34.75253386911218], [-77.31939306360462, 34.75272216300256], [-77.31933980982274, 34.75290513640295], [-77.31924252813735, 34.75323014101227], [-77.31913433773234, 34.753539664197305], [-77.3188977135228, 34.753764723048185], [-77.31847295542352, 34.7542304123519], [-77.31795251300292, 34.75475950790638], [-77.31785693435926, 34.75488197101738], [-77.31781562504702, 34.75492475825798], [-77.31776148494238, 34.75495396065046], [-77.31736750074424, 34.755436351243326], [-77.3172148873947, 34.755669270999846], [-77.31694558943917, 34.75598148214934], [-77.3167318552276, 34.75651811722267], [-77.31718857838061, 34.75692293451175], [-77.31766486172589, 34.75734507940697], [-77.31814114994133, 34.75776722221781], [-77.31861744302704, 34.75818936294419], [-77.3190937409831, 34.758611501586024], [-77.31921311475652, 34.75871729989524], [-77.31955916987496, 34.75854776329446], [-77.32014242879605, 34.75826398387393], [-77.32043330975576, 34.758125743559276], [-77.32061136720785, 34.7580411219228], [-77.32062360906046, 34.75791462820871], [-77.32052448989803, 34.75781233933205], [-77.32038671773165, 34.75761781860841], [-77.3202685129793, 34.757475896422335], [-77.32008615916597, 34.757259699425866], [-77.31998170222109, 34.75714090173734], [-77.31988887806551, 34.75704052462016], [-77.31963172069419, 34.75676244258471], [-77.3195068586516, 34.756717651343294], [-77.31948884986502, 34.75660794483254], [-77.31958450643887, 34.7564925631486], [-77.3197418297294, 34.75638398383622], [-77.32008125633023, 34.75603945305244], [-77.32025963375293, 34.755813985233154], [-77.32028184975614, 34.75572794756361], [-77.32034079510316, 34.75551654566332], [-77.32047938302614, 34.755182037644346], [-77.32055413346843, 34.75499996489145], [-77.3205958436016, 34.75483503083556], [-77.32082618992612, 34.754716019547196], [-77.32140154747108, 34.75439653947335], [-77.32149416037595, 34.75435427892949], [-77.32153486972194, 34.754339314777276], [-77.32162771468465, 34.754299463237366], [-77.32198941292387, 34.75415475640606], [-77.32221038027208, 34.75407660528864], [-77.32226816711147, 34.754034158389686], [-77.32234362198085, 34.75383023004148], [-77.3223612199971, 34.753777730530764], [-77.32239465035842, 34.753710001461975], [-77.3226424719952, 34.753251841693555], [-77.32275950839423, 34.75303546886296], [-77.32278482723544, 34.75298866044358], [-77.32280126795803, 34.75295892689495], [-77.32293751528023, 34.75272406287531], [-77.32304679573417, 34.75253808294913], [-77.3231727307759, 34.752323756280035], [-77.32321342062806, 34.75219890467359], [-77.32322344251644, 34.752056191897836], [-77.32343712407393, 34.7519188594065], [-77.32402781234342, 34.751492198741104], [-77.32416532010728, 34.75147492200169], [-77.32428510556372, 34.75146874296557], [-77.32480625489379, 34.75133096107153], [-77.32526298931593, 34.75150530213813], [-77.3253553734286, 34.75150267198195], [-77.32548269527678, 34.75150473753551], [-77.32564897387466, 34.75152306119345], [-77.3257703722546, 34.75150940412034], [-77.3259583375613, 34.75148925155785], [-77.32636937731431, 34.75144307425749], [-77.32685313296737, 34.75144242048296], [-77.32718582881961, 34.75138825549263], [-77.32755964956307, 34.751316353311196], [-77.32822984565001, 34.75138565243388], [-77.32840864698662, 34.75130330351001], [-77.32868397685881, 34.7511496936251], [-77.32886240667852, 34.75110314935083], [-77.32904554565486, 34.75115617673844], [-77.32885061913404, 34.751297372086306], [-77.3287538480408, 34.751439832054174], [-77.32850811227686, 34.75163225347312], [-77.32830764607333, 34.752317842607496], [-77.32837618948204, 34.75246631632968], [-77.32840823559027, 34.753028755519665], [-77.32858986015268, 34.7534117729893], [-77.32888987580492, 34.75376843434973], [-77.32914214247482, 34.75404109047879], [-77.32989584098273, 34.75442927348535], [-77.33025914785104, 34.75475894096179], [-77.33081897055692, 34.75505577557904], [-77.33148616952637, 34.75539221195571], [-77.33194487462877, 34.7556235065627], [-77.33272911735017, 34.75601326542287], [-77.33382284730922, 34.75634177438108], [-77.3341163523612, 34.75639679004588], [-77.3342802849414, 34.75639736191291], [-77.33486209950134, 34.756451107812545], [-77.33647778691994, 34.756516770006854], [-77.33679386807384, 34.75642072352188], [-77.33771566528426, 34.756380128064876], [-77.33815898801289, 34.75635350940637], [-77.33852045685161, 34.75629073712974], [-77.3389821277107, 34.75614512359065], [-77.33927517228105, 34.75606573542729], [-77.33977918490983, 34.75611129692284], [-77.34018476623442, 34.75612965032233], [-77.340244905512, 34.756147389683726], [-77.34027513405837, 34.75619636620861], [-77.34051648721726, 34.75633274520513], [-77.34066601514962, 34.756534986060586], [-77.34072989330608, 34.75662138255389], [-77.340876865155, 34.75684399242417], [-77.34103080962, 34.75706749373948], [-77.34109137581414, 34.757132610997175], [-77.34141073204576, 34.75722185420189], [-77.3416507705496, 34.7572691244059], [-77.34211813805109, 34.75730774388767], [-77.34225004785097, 34.75726842467505], [-77.34237226761061, 34.7572708946642], [-77.34285113691972, 34.757261489335434], [-77.34292850937297, 34.75729462803356], [-77.34323124679823, 34.7573987828364], [-77.34329830230755, 34.75771491947215], [-77.34328516686655, 34.75773309063136], [-77.34296508667708, 34.75790002177479], [-77.34276452473894, 34.75788036736758], [-77.34267487648546, 34.75786792697712], [-77.34260784878552, 34.75787810316054], [-77.34219858623797, 34.75801732429767], [-77.34201413789252, 34.758080068393376], [-77.34170419115371, 34.758217659471114], [-77.34130682110214, 34.75845243949116], [-77.34122343046457, 34.75850320448366], [-77.34084993113149, 34.758737512103515], [-77.3405800842425, 34.758891592469936], [-77.34001739676606, 34.759155951993755], [-77.33993465276886, 34.75920331275938], [-77.33986931848776, 34.759275773255204], [-77.33943810627616, 34.75972275414075], [-77.3394122248562, 34.760017146496395], [-77.33908781765142, 34.76058443488948], [-77.33900017787971, 34.76075754446173], [-77.33892457011501, 34.760861793839005], [-77.33874604438918, 34.76107891757809], [-77.33862519742651, 34.76123491229677], [-77.33821390208406, 34.76125629321771], [-77.33810759933381, 34.761214229890605], [-77.33780250114657, 34.7611444108079], [-77.33754262993251, 34.761096798845585], [-77.33713816461822, 34.761012821126954], [-77.33677509807396, 34.76078578501795], [-77.3359296926152, 34.76076190501498], [-77.33603023009277, 34.76135840631394], [-77.33615890814221, 34.76212180131199], [-77.33625578378204, 34.76276160831729], [-77.33629038838585, 34.76307852665151], [-77.33640314794283, 34.76373476806798], [-77.33645401737549, 34.76403083941603], [-77.33647753864079, 34.76416774066437], [-77.33659420502778, 34.76435894862571], [-77.33679562397157, 34.76471152308032], [-77.3370161324598, 34.76492852837431], [-77.33722368631986, 34.76517075992521], [-77.33745338946761, 34.76552523844639], [-77.33754540189827, 34.76571175865232], [-77.33760381837129, 34.765822710319064], [-77.33787104789295, 34.76624973510493], [-77.33787948805868, 34.766272292674294], [-77.33791701179712, 34.76635257270072], [-77.33811945988906, 34.76672676684011], [-77.33826061787522, 34.76687031489924], [-77.33855264567543, 34.76730239490959], [-77.33889177162922, 34.767595633153256], [-77.33898714648889, 34.76849305762419], [-77.3390083090576, 34.76852874914357], [-77.33900803009331, 34.76855444229782], [-77.33902004334465, 34.76860634514746], [-77.33929646895403, 34.76900227121939], [-77.33936294450385, 34.76904445080908], [-77.33928126817166, 34.769491728878094], [-77.33913589631979, 34.76998562488057], [-77.33906579848143, 34.77000864216543], [-77.33869103467214, 34.77034928140824], [-77.33852777949777, 34.770569773154506], [-77.33842523223436, 34.77063278020824], [-77.33833638284602, 34.771083384847685], [-77.33827230455233, 34.77113565001524], [-77.3383218554129, 34.77142138891425], [-77.33848081168759, 34.77155095806577], [-77.33839241242532, 34.77188037232252], [-77.33842424363665, 34.772130999763725], [-77.33845458299317, 34.77238571306193], [-77.3385389645444, 34.77243697418589], [-77.33851682642597, 34.77252076692026], [-77.33848129227941, 34.77259743238211], [-77.33850931284248, 34.77265684689909], [-77.33864229068004, 34.772747253815844], [-77.33864565334493, 34.77274912311271], [-77.33866415762247, 34.7727594095072], [-77.33898375768086, 34.772626523736314], [-77.33921149167334, 34.772605891225794], [-77.33937678072597, 34.772402873434345], [-77.33981293246808, 34.771861977553016], [-77.33983116422554, 34.77183781823934], [-77.3401277301199, 34.771325171764744], [-77.3404033360722, 34.77110829293583], [-77.3407340130363, 34.77035544247573], [-77.34078921126644, 34.77025973200365], [-77.34078848674102, 34.77017281118444], [-77.34096952858343, 34.769918046557905], [-77.34160537827664, 34.76917307416438], [-77.34119628380236, 34.76913802675093], [-77.34077839761945, 34.7687446574547], [-77.34072353574366, 34.76870318239734], [-77.34043603750095, 34.76835865853264], [-77.34041106311292, 34.76823871626451], [-77.3404739000094, 34.76786609327876], [-77.34050210122498, 34.76740386550334], [-77.34050410520032, 34.76737886077297], [-77.34050493355959, 34.767374464376246], [-77.34050294303532, 34.76736661276606], [-77.34040403831844, 34.76706162346131], [-77.34025044202127, 34.76692198317453], [-77.34017551469076, 34.76684313933868], [-77.33959705462632, 34.76656416360882], [-77.33955202485447, 34.76655003514599], [-77.33953733079352, 34.7665454246979], [-77.33953598458874, 34.76653256612649], [-77.33954001020464, 34.76651363219219], [-77.33943386354753, 34.76583664189393], [-77.33947240846204, 34.765566535086634], [-77.33930832985465, 34.76532737484835], [-77.33922193220573, 34.76521124645097], [-77.33905500265654, 34.765136388900586], [-77.33882210696206, 34.764938982533046], [-77.33855378104894, 34.76493657378468], [-77.3382413874466, 34.76487564059671], [-77.33807853873736, 34.76478288606588], [-77.33803907637855, 34.764543940091315], [-77.33821268709863, 34.76406115232047], [-77.33837422759194, 34.76376760165202], [-77.33865418173463, 34.76328275917002], [-77.33867940901705, 34.76323839008892], [-77.33869377611767, 34.76321067007058], [-77.33873439380007, 34.76317983840358], [-77.33891699238922, 34.76308071681157], [-77.33946760970824, 34.76271856763745], [-77.3395383301632, 34.76268218000524], [-77.33961278978441, 34.76262304567039], [-77.34033292136692, 34.76210943375795], [-77.34057923505674, 34.761802794928386], [-77.34067322165399, 34.76150289800253], [-77.34079764380843, 34.7612444732511], [-77.34114899451089, 34.76105644720907], [-77.34155641992635, 34.76064001227962], [-77.34186695655706, 34.76064753221468], [-77.34224423462788, 34.760522693241995], [-77.34252672392728, 34.76043880155525], [-77.34274681491023, 34.760417906603024], [-77.34311559448848, 34.76047398079147], [-77.34329705338256, 34.76050157153036], [-77.3436340939538, 34.76056558730188], [-77.34368549751254, 34.76057441809677], [-77.34370507139938, 34.76058203441432], [-77.3437235135598, 34.76059722976312], [-77.34392916628086, 34.76076667655923], [-77.34405171171932, 34.760709687580466], [-77.34421333696609, 34.76081958354633], [-77.34465632077934, 34.76083279557402], [-77.34437805791764, 34.76045876695761], [-77.34433501830539, 34.76040091415565], [-77.34419151438905, 34.76020802000407], [-77.34412758160528, 34.760083994177904], [-77.3441200249019, 34.76006589897908], [-77.34411947059536, 34.7600555489448], [-77.34410988657768, 34.759876605697464], [-77.34410054554905, 34.759702185780824], [-77.3440935582795, 34.75957172617609], [-77.3440896105972, 34.75949801929382], [-77.34407918940988, 34.759219853980476], [-77.34404513643173, 34.75913803857917], [-77.34406703038316, 34.759087988220394], [-77.34407907653781, 34.759044870349115], [-77.34414507400821, 34.758993163014274], [-77.34457019426364, 34.75853160106199], [-77.34474198838123, 34.75835551016484], [-77.34493869907068, 34.758056801872875], [-77.3449864605054, 34.75798713064251], [-77.34500221392395, 34.757947734331744], [-77.34513633646739, 34.75751065655971], [-77.345137731324, 34.757479005229285], [-77.34513657402688, 34.75742846382862], [-77.34528164059293, 34.75697188921916], [-77.34535273502847, 34.75689909771779], [-77.34567631860942, 34.75663001093979], [-77.34609658771967, 34.75640086908321], [-77.3461373894587, 34.75636713132096], [-77.34648119265891, 34.75606642596722], [-77.34670605931473, 34.75580174667302], [-77.34680273799142, 34.7557129798711], [-77.3469225915444, 34.755619901108645], [-77.34719230386345, 34.755419788583296], [-77.34765584978831, 34.75515804850684], [-77.34818196511729, 34.755019901518345], [-77.34831282775572, 34.75495868737077], [-77.34901006040344, 34.75451091063364], [-77.34903218351747, 34.75449649707688], [-77.34905685965836, 34.7544597027723], [-77.3493966947007, 34.75397048489177], [-77.3494662277581, 34.753604448434984], [-77.34959758001425, 34.75345554255359], [-77.35016105937859, 34.75294341132119], [-77.35076356115842, 34.75270909106131], [-77.35118423489757, 34.75257322998396], [-77.35162755797039, 34.75251897549147], [-77.35201842014034, 34.752513551028485], [-77.35226867365505, 34.75260164739446], [-77.35247322065962, 34.752657010839926], [-77.35256935957216, 34.7526790630622], [-77.3529791904632, 34.7528866612726], [-77.35309841243595, 34.75291991960526], [-77.35312373472696, 34.75294512739041], [-77.35312237720068, 34.75297187489735], [-77.35333180096178, 34.75317931489747], [-77.3533365711459, 34.7532032108586], [-77.35338060870302, 34.753423818079675], [-77.35338953535984, 34.75352911954968], [-77.35339450842292, 34.75389276226941], [-77.35338347226204, 34.75391080721714], [-77.35323107713438, 34.75438624005331], [-77.3531399145246, 34.75450950992889], [-77.35293758188959, 34.75494675986599], [-77.35285483259517, 34.75532945846824], [-77.35220302874879, 34.756022317471036], [-77.35269197008348, 34.75773815561058], [-77.35272975048022, 34.757899569106286], [-77.352744402904, 34.75796732594102], [-77.35277863390863, 34.75814467479442], [-77.3537470920543, 34.76034987274085], [-77.35379968053297, 34.761651796447026], [-77.35411891097785, 34.76177961266822], [-77.35425093441846, 34.761671797048166], [-77.3544566388407, 34.761561642715755], [-77.35554103082399, 34.761008691746675], [-77.35597452395261, 34.76064536542805], [-77.35633290456822, 34.7603449890788], [-77.3563447679376, 34.76033504579376], [-77.35636156900354, 34.76032543802566], [-77.35675305558242, 34.76005841756575], [-77.35703897870732, 34.7599766126989], [-77.35717694589124, 34.760077446362374], [-77.35748568655946, 34.76017114420148], [-77.35754733173675, 34.76018681209178], [-77.35756853352513, 34.760215926595585], [-77.35769881781682, 34.760464528178005], [-77.35777936333693, 34.76061821703739], [-77.35797967252742, 34.7608629260605], [-77.35805263387498, 34.76098086241764], [-77.358105353751, 34.76106085412583], [-77.35831013706051, 34.76143733631421], [-77.35836538953843, 34.761528777030875], [-77.35852401393207, 34.761978153484066], [-77.35859991248503, 34.762136860243544], [-77.35872399703632, 34.76242537133276], [-77.35872733515919, 34.762433089920094], [-77.3587317912066, 34.76243701789244], [-77.35890179593201, 34.762693140842515], [-77.35890915588904, 34.76290005524034], [-77.35905707088307, 34.76334120519093], [-77.35906299839088, 34.76335762089626], [-77.3590661208813, 34.763365893597694], [-77.35906720376592, 34.76338413204597], [-77.35908789826951, 34.76373269930602], [-77.3591328306172, 34.76384412070237], [-77.35916803392332, 34.76406529647544], [-77.35926326795125, 34.764313600307545], [-77.35928144386654, 34.764372306142754], [-77.35927648167551, 34.764648389960364], [-77.35929101720838, 34.764759173034875], [-77.35928677727951, 34.7647977581714], [-77.35928468118868, 34.764853085015986], [-77.35899667737195, 34.76577399883819], [-77.35900826626919, 34.765810758942784], [-77.35901117831929, 34.76588727288689], [-77.35884540425728, 34.766132493982326], [-77.35755448537404, 34.76698507579236], [-77.35859399823596, 34.76699800841563], [-77.35893225629108, 34.76740045690819], [-77.35923670973591, 34.767728938995276], [-77.35954617414654, 34.767845117851635], [-77.35997918197496, 34.76830969474518], [-77.36003595636896, 34.76836766773102], [-77.36004793123091, 34.768383482338194], [-77.36010704659176, 34.7684186150116], [-77.3605778988076, 34.76871065290849], [-77.3610071483822, 34.76887668410589], [-77.36115069414899, 34.76894742517798], [-77.36159403223138, 34.76949828398225], [-77.36160628664379, 34.76951977851576], [-77.36162025323591, 34.76953965320812], [-77.36179811730557, 34.76988617530199], [-77.36201449733699, 34.77014143017923], [-77.36207364556778, 34.77018756571686], [-77.362095856578, 34.77020848445428], [-77.36209007188546, 34.770231115918136], [-77.36253795873834, 34.770797899097175], [-77.36260932627152, 34.770887242384845], [-77.36268622526863, 34.7709989785581], [-77.36298058344633, 34.7714829320331], [-77.36308991667323, 34.77157968823315], [-77.36302903479162, 34.77180089678027], [-77.36285664790518, 34.77217706889673], [-77.36281878934047, 34.77220578445024], [-77.36275805479153, 34.772249130561185], [-77.36248588768257, 34.772410049547574], [-77.36198877368071, 34.77268877282424], [-77.36180250103328, 34.772789827898364], [-77.361667903761, 34.772879500259045], [-77.36146733036796, 34.7729903894429], [-77.36119306029345, 34.77321938809616], [-77.36116552049053, 34.773245520129244], [-77.36112244441254, 34.7732912020172], [-77.36082864840049, 34.77370424062044], [-77.36073641193443, 34.774041234567306], [-77.36055185895762, 34.77442121177724], [-77.36047484374478, 34.774698876904026], [-77.36035122626521, 34.774908806108805], [-77.35993130199913, 34.77535438685951], [-77.35979554067303, 34.775497503836945], [-77.35978864843418, 34.77557718764917], [-77.35980534905579, 34.77562444048324], [-77.35980059686699, 34.77580434946859], [-77.35981129460782, 34.77606821473587], [-77.35983606096893, 34.77615301180809], [-77.35963348358281, 34.77637964151175], [-77.35952276627819, 34.77654897038848], [-77.35950663579845, 34.77659695375715], [-77.35947022640173, 34.776656426384065], [-77.3593688255338, 34.776828339939875], [-77.3592998536227, 34.77693317901282], [-77.35928314783676, 34.776957417512435], [-77.3592333220104, 34.77706053349443], [-77.35917089427146, 34.77722726379718], [-77.35921295754069, 34.77753986934527], [-77.359223232942, 34.77761623474716], [-77.359200196317, 34.77766131534739], [-77.35898803382368, 34.778093154332865], [-77.35886859465901, 34.778245581268735], [-77.35881759089011, 34.77831312108626], [-77.35879006140358, 34.77834580483829], [-77.35861845171675, 34.77852304444204], [-77.35850749503483, 34.77863245008518], [-77.35827065268232, 34.778862253074585], [-77.35821920375996, 34.77890973403809], [-77.35816518673393, 34.778984592252755], [-77.35783101277133, 34.77936593091824], [-77.35768087007958, 34.77952687294632], [-77.35760494058013, 34.77966401164418], [-77.35752232329438, 34.77981713336041], [-77.35748031379066, 34.779947672200805], [-77.35738436945347, 34.780202056176975], [-77.35741140880718, 34.780337551961836], [-77.35739596009694, 34.78055854415052], [-77.35729879614323, 34.780857376858116], [-77.35716978891622, 34.78093745265452], [-77.35707997850997, 34.78122122757019], [-77.35723540412161, 34.78139442790564], [-77.35745551699318, 34.781668038362625], [-77.35767560201427, 34.78186582676098], [-77.35781776522873, 34.78262982388011], [-77.35784225386618, 34.78268895982642], [-77.35784236317993, 34.78272531352884], [-77.35781962141036, 34.78274919783579], [-77.35775819747097, 34.782834857308536], [-77.35752035928662, 34.78317186020867], [-77.35733834961783, 34.783459708905454], [-77.35698870895152, 34.783545039452015], [-77.35692523402089, 34.783963090237364], [-77.35691702495883, 34.78407918935119], [-77.35697845095311, 34.784368752913096], [-77.35708259043243, 34.78469636649348], [-77.35708685026303, 34.784788318548536], [-77.35692221217622, 34.78519947790892], [-77.35679561749932, 34.78556741662875], [-77.3567952450386, 34.7857142814147], [-77.35682398958544, 34.785790199053366], [-77.356708025522, 34.78624299594724], [-77.35652883793827, 34.786628786544185], [-77.3564818367287, 34.786723077106465], [-77.35588393289186, 34.78707171135408], [-77.35588150000925, 34.78707222554308], [-77.35518289469346, 34.78728126239153], [-77.35510446918374, 34.78729455628899], [-77.35490365342032, 34.78728925785043], [-77.35484900101625, 34.7873261208088], [-77.35480506834102, 34.78729972659979], [-77.35466972884169, 34.78733236248419], [-77.35463088112968, 34.78737221123506], [-77.35466786485648, 34.787486360758194], [-77.35450884066748, 34.787646115165415], [-77.35457535086455, 34.78773360476383], [-77.35456711568338, 34.787913408095804], [-77.35437903082368, 34.78783926273957], [-77.35424202515279, 34.7881761947406], [-77.35421270382884, 34.788215583602174], [-77.35416014813109, 34.78842716204303], [-77.35400627694371, 34.78849386014521], [-77.35393784098316, 34.788553078470834], [-77.3539588799523, 34.78863634642555], [-77.35378775822895, 34.78876981321008], [-77.35375532514956, 34.78883228776919], [-77.35371296871344, 34.78886977002776], [-77.3537650032859, 34.788848117828984], [-77.3541300051703, 34.78869623462076], [-77.35449500566659, 34.788544350367175], [-77.35486000477475, 34.788392465068256], [-77.3555899988267, 34.78808869133445], [-77.35631998732612, 34.78778491341953], [-77.35653201158411, 34.78769667961385], [-77.35671934402134, 34.787365429884666], [-77.35690669383357, 34.78724679567465], [-77.35713968372286, 34.787172358634706], [-77.3575233477921, 34.787087550305], [-77.35757712064229, 34.78684561441242], [-77.3580631195819, 34.786167006645115], [-77.35805990199476, 34.78615684475258], [-77.35805458607413, 34.78612885065817], [-77.35783968404048, 34.78536750179792], [-77.35798774601062, 34.78501312691909], [-77.35804976566475, 34.784623295333716], [-77.35806227596106, 34.78438237325429], [-77.35829209676633, 34.78400116664762], [-77.35843755759933, 34.783759887475426], [-77.35851567259618, 34.783520173608935], [-77.35851119601779, 34.783303047888616], [-77.35852746824017, 34.78324468553952], [-77.3585500870848, 34.7831951087667], [-77.35862962282278, 34.78300081778744], [-77.35873978498032, 34.782756544251775], [-77.35907377789961, 34.78217640998684], [-77.35911237996584, 34.78205129458335], [-77.35914716179235, 34.781925192518585], [-77.35939197272498, 34.78158990704796], [-77.35939722788862, 34.781585376471256], [-77.3594163894457, 34.78154457462979], [-77.35959612057049, 34.781161863209554], [-77.35960977249938, 34.78110689496696], [-77.35959309855457, 34.78106777045629], [-77.35963436816702, 34.780794219439315], [-77.35965488499505, 34.78059580550793], [-77.35963408967388, 34.78055617461919], [-77.35971972773791, 34.780500380504314], [-77.35993400370397, 34.780216871000846], [-77.35997964637123, 34.78011787238238], [-77.3600776968188, 34.77997357529876], [-77.36011214150699, 34.77988462461818], [-77.36016474853734, 34.779845464988384], [-77.36025217977851, 34.77977187530062], [-77.36034709565425, 34.77968723224244], [-77.36036105712772, 34.77941773743352], [-77.36036491854146, 34.779407777545025], [-77.36019864221385, 34.77907605176025], [-77.36018705221208, 34.779035559550486], [-77.36016639741644, 34.77896274639817], [-77.36011193294965, 34.778486477784384], [-77.3603883778487, 34.778198571950064], [-77.36047304169722, 34.778103287515954], [-77.3605129862576, 34.7780675998913], [-77.3605852076314, 34.77797733496026], [-77.36092591752845, 34.777652878524705], [-77.36104024340911, 34.77753340321335], [-77.36120158379363, 34.77727452499376], [-77.36123296805653, 34.77720110466668], [-77.36137888315557, 34.77699752455166], [-77.36150683595663, 34.77679897320249], [-77.36155122173588, 34.776753251562305], [-77.36173189947414, 34.776607529825924], [-77.3619916941702, 34.776348169188815], [-77.36209549803212, 34.77626421123108], [-77.36229451729848, 34.77605414930349], [-77.36241716916173, 34.77593783893978], [-77.3626242952449, 34.77563154399397], [-77.36271462647386, 34.775482708393724], [-77.36287836886154, 34.77523779240724], [-77.36302483945761, 34.775032043921314], [-77.36311343379086, 34.77493402444071], [-77.36330723857438, 34.774776415731004], [-77.36344852602782, 34.77462108868332], [-77.36366155026168, 34.7743329781092], [-77.36413597929621, 34.77382176374693], [-77.36419302782323, 34.77376317957749], [-77.36420373895585, 34.7737222486755], [-77.36425950856719, 34.77370672185262], [-77.36473888296177, 34.77339497580303], [-77.36487715805256, 34.773326162244764], [-77.36505583400339, 34.773173925019066], [-77.36529969683741, 34.77303200639484], [-77.36548705495744, 34.77282618945957], [-77.3658027482314, 34.77281123674567], [-77.36611192217447, 34.77299917762325], [-77.36630413712908, 34.773294028497936], [-77.36634650864531, 34.773398314472864], [-77.3664491860591, 34.77365102761287], [-77.36648181194782, 34.77373771243141], [-77.36655597603482, 34.774030824754625], [-77.36666412184695, 34.77426378340435], [-77.36682848665478, 34.774271356500705], [-77.3669615461838, 34.77434427598705], [-77.36729250340993, 34.774292735072635], [-77.36729753871646, 34.774291950911255], [-77.36729876774884, 34.7742917595086], [-77.36730079045904, 34.77429144449777], [-77.36771676926773, 34.774226661528274], [-77.36787787834824, 34.77404903022409], [-77.36757093424383, 34.773826758225916], [-77.36745338072913, 34.77375526897401], [-77.36723625861268, 34.77342362231238], [-77.3671307021252, 34.772657019751556], [-77.36706213297145, 34.77260358802568], [-77.36712092315318, 34.77255087055307], [-77.36702270475625, 34.77234285328349], [-77.3668572050316, 34.771796378107446], [-77.36674787296782, 34.77176594586021], [-77.36665903875159, 34.771748081944175], [-77.36615504532139, 34.771598064765186], [-77.36577308066833, 34.77135519783325], [-77.36563908892346, 34.77116548096], [-77.36551201881724, 34.77086943742452], [-77.36541984063685, 34.77060973655526], [-77.36532268758783, 34.7700457315323], [-77.36527297038043, 34.769778361849305], [-77.36528778426835, 34.769672532681724], [-77.36529969186553, 34.76952479425573], [-77.3653013013943, 34.76932030783492], [-77.36528108744, 34.76911097099213], [-77.36521021743415, 34.76891196793421], [-77.36505959680109, 34.76874243800374], [-77.36490759109472, 34.76859169889404], [-77.36459768328734, 34.768376564106354], [-77.36453468869222, 34.76834075517835], [-77.36448668649419, 34.7683206707031], [-77.36429751364486, 34.76820754077258], [-77.3639863021894, 34.76801993326964], [-77.3636674369796, 34.76776922074009], [-77.363478499933, 34.76755937427503], [-77.36298576884587, 34.76723747317607], [-77.36293959728438, 34.76720592538441], [-77.3629144345878, 34.76719019140867], [-77.36287883643527, 34.76706255725311], [-77.36271295125958, 34.76653453259908], [-77.36270286793658, 34.766385758586466], [-77.36267761790288, 34.765898961137715], [-77.36264900720352, 34.76551567315187], [-77.36263752161223, 34.765389680970145], [-77.3627042635912, 34.76527942865684], [-77.36291259737834, 34.76508984812662], [-77.36306198492571, 34.764979016328326], [-77.36332834240349, 34.764802739065395], [-77.36333075027302, 34.76478559892085], [-77.36320546598338, 34.764470009211706], [-77.3631596842406, 34.76441056183807], [-77.36312554505668, 34.764356583495946], [-77.36294137668494, 34.76405519304075], [-77.36276454004232, 34.763756460423735], [-77.36273049308177, 34.76369673355573], [-77.3626942405896, 34.763632707924714], [-77.36252128087926, 34.76333757884144], [-77.36253065538509, 34.76311537304282], [-77.3625125875299, 34.76289494382894], [-77.36269576587976, 34.76227038321278], [-77.36278941967993, 34.76208749012284], [-77.36294577805074, 34.76193058750393], [-77.36325169102926, 34.76171314729877], [-77.36326533776315, 34.761704564095936], [-77.36328841248682, 34.76167943880506], [-77.36342183632956, 34.76119039157618], [-77.36341198496754, 34.76116116549647], [-77.36330408436179, 34.76078040336506], [-77.36335421166453, 34.76035239038891], [-77.36348917559808, 34.76009551114555], [-77.36376899904334, 34.75993174101973], [-77.36402106657685, 34.75994573839478], [-77.3643690520525, 34.760074446091856], [-77.36475765959659, 34.76017521170047], [-77.36512151398392, 34.7602483822752], [-77.36541618783998, 34.760210750615286], [-77.3655486596505, 34.76019836524417], [-77.36567839937996, 34.75998364526243], [-77.36578926797638, 34.75984320874781], [-77.36589465673543, 34.759818992231914], [-77.36581608419714, 34.75973452406671], [-77.3657639247372, 34.759689098002745], [-77.36556727934482, 34.75948007554604], [-77.36527122233082, 34.75917669670435], [-77.36515738787593, 34.759116264343334], [-77.3650535499952, 34.75896538704512], [-77.36474867121161, 34.758767109204804], [-77.36463322208328, 34.758700853181836], [-77.36447591688537, 34.75860185223752], [-77.36431539240128, 34.75857432362696], [-77.3641675470525, 34.75855925004683], [-77.3640812253252, 34.75854661224098], [-77.36394986065744, 34.75857908471525], [-77.36371321962949, 34.75869336164139], [-77.36342342787229, 34.7589127003323], [-77.36339898342324, 34.7589280747091], [-77.36335840502473, 34.758931289309295], [-77.36272047342774, 34.75912437089897], [-77.36257923801642, 34.759084593793624], [-77.36217923819936, 34.758779152268666], [-77.36206983017043, 34.758679588280344], [-77.36192468692602, 34.75858697805744], [-77.36168112847362, 34.75843157304077], [-77.36135316022174, 34.758442349454526], [-77.36109282385952, 34.75839457512869], [-77.36072657169231, 34.75847172063603], [-77.36043661189805, 34.75859139944811], [-77.36015111375595, 34.7586003037013], [-77.36012964751066, 34.758594947539635], [-77.36010563429718, 34.75856002892175], [-77.35996177366688, 34.75836908786149], [-77.35994978966954, 34.75833905174651], [-77.35993280517806, 34.75826345627258], [-77.35986600361248, 34.758009263099595], [-77.35984785154517, 34.75789734193958], [-77.35979406303369, 34.757645925924464], [-77.35971654959312, 34.75733575394151], [-77.35964934752461, 34.75717683693988], [-77.35960356333503, 34.757028427505055], [-77.3595586161493, 34.75696227877752], [-77.35937320885554, 34.75681137286411], [-77.35919789275705, 34.75666867847168], [-77.35913306725661, 34.75660184867952], [-77.3590853368129, 34.7565398663433], [-77.358936196729, 34.75635904098693], [-77.35875617081003, 34.75612702723778], [-77.35873558403433, 34.75610049536024], [-77.35872164619741, 34.7557356074586], [-77.3587166960312, 34.755615703142816], [-77.35875363584543, 34.755448144844785], [-77.35883479243573, 34.75511210608309], [-77.35887871107187, 34.754920720336756], [-77.35887241388717, 34.75483119293309], [-77.35884519886302, 34.754789241812496], [-77.3588008885519, 34.75468909358667], [-77.3587486993558, 34.75463654029544], [-77.35868904047375, 34.754578008385025], [-77.35862560291307, 34.75451407904747], [-77.35832706984112, 34.75446219104327], [-77.35804077456167, 34.754246335741925], [-77.35785610498932, 34.75403598344353], [-77.35776384873824, 34.75335622087198], [-77.35775055712783, 34.753328720844735], [-77.3577421575332, 34.75331256054737], [-77.35770681362573, 34.7532446367989], [-77.3575061658634, 34.75285757111645], [-77.35759730380528, 34.75265814966364], [-77.35749020634974, 34.752372376380954], [-77.35788304905176, 34.75212431684898], [-77.35816575062083, 34.751972457189154], [-77.35844801976783, 34.75175350831183], [-77.3586867931413, 34.75155977007197], [-77.35906987963364, 34.751180751028485], [-77.35874784164803, 34.750984746481336], [-77.35851085466457, 34.75078421718065], [-77.35850271274467, 34.75077907149344], [-77.35848010643744, 34.75077433410224], [-77.3581215651646, 34.75067801646531], [-77.35766704728161, 34.750656599578946], [-77.35747766369549, 34.75091194672035], [-77.35714875535132, 34.75134920566042], [-77.35708871496455, 34.75142078679296], [-77.35658118081466, 34.751468599511114], [-77.35675036302396, 34.75112110764097], [-77.35699739292674, 34.75097787402204], [-77.3569304425886, 34.75080574450214], [-77.3570921746622, 34.75047747846574], [-77.35721231654682, 34.75025384338023], [-77.35733795873541, 34.7497038576756], [-77.35727780240458, 34.74947722854314], [-77.35703963136098, 34.74914488309979], [-77.35669141011525, 34.74879917636974], [-77.35661041362376, 34.7486865876851], [-77.35649917032782, 34.74860934422677], [-77.35634563707215, 34.74820977682297], [-77.35629983180574, 34.748137043898986], [-77.35629031295534, 34.748117855577135], [-77.35618311858475, 34.747832599441146], [-77.35610833657671, 34.747688226012], [-77.35601214119512, 34.747569893225254], [-77.35589016402844, 34.747433289705185], [-77.35581496571503, 34.747327340150434], [-77.35574175364259, 34.747251161309244], [-77.35563153754748, 34.74707421280451], [-77.35561708584717, 34.747024582145016], [-77.35547292048493, 34.74680760134989], [-77.35547048467213, 34.746803875823545], [-77.35546853222165, 34.74680128130983], [-77.35545356429803, 34.74678139117334], [-77.35531952343258, 34.746525776726166], [-77.35530820962558, 34.74633590372005], [-77.35538255350758, 34.74608026698397], [-77.35537228714936, 34.74583972525609], [-77.35538543168626, 34.74568665456035], [-77.35554928027224, 34.744951506761126], [-77.3556438687287, 34.744827680032486], [-77.35577734655782, 34.74459676944761], [-77.35618678295458, 34.74377838767558], [-77.35647202160808, 34.74327399706116], [-77.35648330089629, 34.74325030166777], [-77.35648903081662, 34.74323106148679], [-77.35662966473546, 34.74274282406135], [-77.35699853067737, 34.74240594778664], [-77.35711841435324, 34.74218834657455], [-77.35725229661298, 34.74199252281893], [-77.3572992498292, 34.74184923611408], [-77.35731305019078, 34.74167424233175], [-77.35722755901566, 34.74133239704393], [-77.35722279831576, 34.74111960711615], [-77.35696471386827, 34.740747293023], [-77.35739419837232, 34.74019931419656], [-77.3572769878904, 34.73972964972876], [-77.35727431016247, 34.738820957658895], [-77.35843317684517, 34.738677099355854], [-77.35881701507593, 34.73854345145126], [-77.35955343069443, 34.73828703984155], [-77.3601500238495, 34.73807930402408], [-77.36109826790073, 34.737749121739185], [-77.3615687214508, 34.73719083652975], [-77.36154222951214, 34.736220086426655], [-77.36149748219765, 34.735465735270054], [-77.3615970300748, 34.73523740313912], [-77.36149880645803, 34.7349047442558], [-77.36130170644097, 34.73430318438512], [-77.36141450915005, 34.73395264471518], [-77.3614861423121, 34.733790470759054], [-77.36157608217249, 34.73369682822919], [-77.36206951697827, 34.73322296770493], [-77.36228149739836, 34.73304533676245], [-77.36251668876562, 34.7328638115294], [-77.36313529532232, 34.732525291788114], [-77.36367096986132, 34.732028248240155], [-77.36385111930227, 34.73188303191566], [-77.36403321497332, 34.731765674727534], [-77.36429806952515, 34.73164077537147], [-77.36441534364397, 34.73164380079613], [-77.3646604897086, 34.73166777060359], [-77.36494001265089, 34.731571242661545], [-77.36528329272716, 34.731585261935884], [-77.36556472647814, 34.73154790322678], [-77.36591468741571, 34.7314731474205], [-77.36630263141883, 34.731501910984605], [-77.36652090180152, 34.73144777031567], [-77.36672125921186, 34.73144649228855], [-77.3676017049645, 34.731488304704634], [-77.36766432059424, 34.731509332184444], [-77.36770525264477, 34.731493736432625], [-77.36772360451445, 34.73148425472871], [-77.36776801792307, 34.73146545664128], [-77.3683831319469, 34.7312214384895], [-77.36883063666919, 34.731188516566974], [-77.36900529374773, 34.73114109219332], [-77.36913879198552, 34.731163241135334], [-77.36947773939883, 34.73123055583629], [-77.36978635546862, 34.73145345078446], [-77.36999904043576, 34.73184375713742], [-77.3702608627905, 34.73200018908746], [-77.37051535939348, 34.73227427808457], [-77.37076677386068, 34.73204796584306], [-77.37088487931211, 34.73174025982078], [-77.37081378692028, 34.731343244032445], [-77.37123577273027, 34.731317969296725], [-77.37144278638127, 34.73128824381797], [-77.37203065327874, 34.73112119531696], [-77.3722451103604, 34.731173649659766], [-77.37263761991356, 34.73159039334902], [-77.37281937551913, 34.7318269745727], [-77.373021484779, 34.73211609150638], [-77.37321651983227, 34.732554081154724], [-77.37434866291113, 34.73369907292044], [-77.37409932605343, 34.73397142481765], [-77.37447493582653, 34.73409825575783], [-77.37625597672144, 34.73436665525895], [-77.37866938058349, 34.73449603538523], [-77.37949945422616, 34.734462400855236], [-77.38201838068193, 34.734242540277506], [-77.38217074471937, 34.73423515822847], [-77.38468562056872, 34.734269106787835], [-77.38533600305864, 34.733424457518666], [-77.38543413323221, 34.73310530748785], [-77.38532006543058, 34.73286682771341], [-77.38562118649746, 34.73205242063774], [-77.38569346837261, 34.73181863779692], [-77.38579085953029, 34.73155262349357], [-77.38585964228253, 34.73128706342674], [-77.38594829596906, 34.731048542917954], [-77.38631775712076, 34.730665893544725], [-77.38631925708589, 34.730060012284774], [-77.38645890301561, 34.729714479358016], [-77.38659549093792, 34.729597507289014], [-77.38663590485717, 34.72956289721543], [-77.38673356468664, 34.72941892139483], [-77.38690313496639, 34.729251533265284], [-77.38693568875077, 34.729157384777885], [-77.38703952087657, 34.72910038466095], [-77.38714767446965, 34.729096507274136], [-77.38727449344597, 34.72927594416515], [-77.38724813822108, 34.72938558920236], [-77.38734294035288, 34.729528714928975], [-77.38764937032019, 34.72996629258856], [-77.38769441394699, 34.73009221781391], [-77.38781870846874, 34.73009923264429], [-77.38787486987951, 34.73009246345026], [-77.38809619196869, 34.730122645644286], [-77.388373661267, 34.73015983548272], [-77.38843938317257, 34.730170078178865], [-77.3888977985444, 34.73026865737715], [-77.38904487084537, 34.730293295521406], [-77.3892506203589, 34.73033630067212], [-77.38964418378174, 34.730437809576124], [-77.38994785123818, 34.73048919777118], [-77.39075959271959, 34.73060005212879], [-77.39086763400095, 34.730641236073325], [-77.39096170876863, 34.73065052697281], [-77.39116513761864, 34.730637319988034], [-77.39157417392542, 34.73026056654464], [-77.39162161971728, 34.730232994410564], [-77.39162721742106, 34.73023300934844], [-77.3916626867032, 34.730223677501165], [-77.39197678323953, 34.73013313139187], [-77.39201735101284, 34.73013180109159], [-77.39228090187419, 34.7301889726391], [-77.39228118108495, 34.73018903320775], [-77.3922814966979, 34.73018918075558], [-77.39252281024449, 34.73031151373741], [-77.39262272312044, 34.730373451906566], [-77.39283024486227, 34.730506856438595], [-77.39299111305404, 34.730562647659525], [-77.39319381142437, 34.73078795231562], [-77.39324330936539, 34.73129376804877], [-77.39324279074171, 34.73135038097244], [-77.39382168899799, 34.73151050976746], [-77.39387723817056, 34.73153226932783], [-77.39427629598262, 34.73158088644418], [-77.39443738860717, 34.73159853205544], [-77.39472132936041, 34.73162677702447], [-77.39499192848514, 34.73189751652868], [-77.39505386400688, 34.73199785302313], [-77.39527395756357, 34.7322890794503], [-77.39546551737601, 34.73247574326344], [-77.39579171835757, 34.73281512932546], [-77.39581098223498, 34.73295788633804], [-77.39553322545156, 34.73328384608102], [-77.39541181889547, 34.733437739320365], [-77.39513040550426, 34.73370207332912], [-77.39509234910818, 34.7337629266937], [-77.39489276168418, 34.73408562629162], [-77.39481849855422, 34.73415210471204], [-77.39480421122305, 34.73427013411773], [-77.3947216404186, 34.735041587922424], [-77.39470016210892, 34.73520613387389], [-77.39475963930185, 34.73524980964252], [-77.39502532786707, 34.73596324382146], [-77.39635473973759, 34.736476170421724], [-77.39687672467156, 34.736455489598306], [-77.39770431440985, 34.73663195426773], [-77.39834790692377, 34.73674194300905], [-77.39873334022569, 34.73620304859429], [-77.39926865069746, 34.73570881216459], [-77.39927198195366, 34.73525974395961], [-77.39927463479609, 34.73515177067021], [-77.39986499667057, 34.734995235817635], [-77.39997028756642, 34.73490495650543], [-77.40004225531963, 34.73486113724142], [-77.40060313174588, 34.73453101835667], [-77.4006392505751, 34.734510820829115], [-77.40064299286958, 34.734508319288004], [-77.40064898163607, 34.73450273435103], [-77.40096371317128, 34.734284444783135], [-77.40121542143685, 34.7341532189844], [-77.40131634883704, 34.73411275194923], [-77.40140313454161, 34.73411312231208], [-77.40152048366141, 34.73414862370587], [-77.40199235622495, 34.7342925497304], [-77.40249638692828, 34.734545570329594], [-77.40255356938326, 34.73456862334773], [-77.40260205778623, 34.73459042680492], [-77.40309665474352, 34.73477872345441], [-77.40313546835613, 34.73477333079916], [-77.40344402004123, 34.73465313327668], [-77.40345863772403, 34.73462231099], [-77.40351070676849, 34.73439689396159], [-77.40355084817973, 34.734194907346975], [-77.40368278827623, 34.733897954618214], [-77.40381557464141, 34.73370945557632], [-77.4040676186863, 34.73347342502835], [-77.40417231933158, 34.73340817937456], [-77.40444948669456, 34.733249424876036], [-77.40467994855877, 34.73312846233396], [-77.40476468164931, 34.73301653485183], [-77.40481796748838, 34.732773997044475], [-77.4047985256768, 34.73261081193266], [-77.40476677293827, 34.73227177217898], [-77.4047519171818, 34.73203538799336], [-77.40479932227124, 34.731889094509285], [-77.4046652242128, 34.731707289742616], [-77.40441936133335, 34.731154825910565], [-77.40424770767177, 34.73093541245942], [-77.40414166002509, 34.73070370097918], [-77.4041174241994, 34.73038803010106], [-77.40402870556551, 34.73010506908625], [-77.4041886288079, 34.7298302009534], [-77.40419142980936, 34.729602859988894], [-77.40418194203522, 34.729468462188336], [-77.40430402781028, 34.72927068005515], [-77.40443270114653, 34.72912812449776], [-77.40457733772519, 34.72896933234579], [-77.40485452850167, 34.728716542276274], [-77.40489839125107, 34.72868999734566], [-77.4052021688623, 34.7284945177512], [-77.40549963451676, 34.72838305384338], [-77.40557440169142, 34.7283549084953], [-77.40564430841053, 34.72832853277314], [-77.40594667725671, 34.72821537016122], [-77.4062646216823, 34.72809149333011], [-77.40636422927025, 34.72805675933498], [-77.4069108035864, 34.72829527037231], [-77.40693488451633, 34.72830012300749], [-77.40695990039913, 34.72831028515545], [-77.40741419981833, 34.728370092433444], [-77.40759160679922, 34.72824644635062], [-77.40773460150272, 34.728145749861284], [-77.40783523440652, 34.728081692186606], [-77.40834832032542, 34.72784764537607], [-77.40845450481054, 34.72782638339378], [-77.40870102678076, 34.7278253762501], [-77.40889914484386, 34.727805149129296], [-77.40900832381246, 34.727782619780726], [-77.40927740893899, 34.72779035106255], [-77.40936071045272, 34.72781158323907], [-77.40935602305429, 34.727757572156044], [-77.40935002584895, 34.72770971859603], [-77.40933265870544, 34.72754414120749], [-77.40931766523416, 34.727481921195064], [-77.40924859476027, 34.72735601958452], [-77.40919230578115, 34.72714758319429], [-77.4091348487451, 34.72695710172506], [-77.40909532592123, 34.7268450504478], [-77.40909966441657, 34.72652542625373], [-77.40913268146738, 34.72629900276203], [-77.40923361687737, 34.72610757657047], [-77.40943452961523, 34.72584545789549], [-77.40966980076179, 34.72539500584604], [-77.40968195264567, 34.72537287928926], [-77.40968761595497, 34.72535354418462], [-77.4097973441736, 34.72485412485452], [-77.40984947494593, 34.72442739215864], [-77.4099073397979, 34.724333483620086], [-77.40994044066211, 34.72427064038641], [-77.41000743254116, 34.72408893473169], [-77.41014042053706, 34.72387490844684], [-77.4101482882092, 34.72386232407255], [-77.41015422395576, 34.72386071812714], [-77.41017450215864, 34.723845514522246], [-77.41047777395458, 34.7236528656787], [-77.41078540344483, 34.72359077445943], [-77.41085586387945, 34.723618379679195], [-77.41109681833797, 34.72363126517384], [-77.41140493455084, 34.72367238470639], [-77.41187016082793, 34.72334261538512], [-77.41196708975485, 34.723095205152816], [-77.41246222580705, 34.7224994740268], [-77.41252862038536, 34.722454684626975], [-77.41252510845631, 34.72241895720655], [-77.41283997988653, 34.722004469549844], [-77.4130209960181, 34.72182578649911], [-77.41327385897799, 34.721597102632174], [-77.41321365261781, 34.72139266746689], [-77.41319564295556, 34.72124662343236], [-77.41315037166643, 34.72123041683735], [-77.41311184028415, 34.72098133905005], [-77.41303804506347, 34.72086599334594], [-77.41306989378282, 34.720783624367414], [-77.41309955645465, 34.72069749176025], [-77.41317502699859, 34.72058569116242], [-77.41317635422037, 34.7205836294931], [-77.4132820786703, 34.72048177261524], [-77.41340310980942, 34.72026739609221], [-77.4134214318585, 34.72023621042378], [-77.41344853881566, 34.72020100036179], [-77.41374131084213, 34.72008327416752], [-77.41377138091227, 34.72006023364031], [-77.41382815640985, 34.71999705865702], [-77.41398120927293, 34.72002630524599], [-77.41442688867508, 34.72014331799551], [-77.41482000238409, 34.72056920125712], [-77.41487811565364, 34.72103992709866], [-77.41512603023928, 34.721334286084414], [-77.41523518535479, 34.72177956725075], [-77.41530816896359, 34.72215104039208], [-77.41552595031816, 34.72238466826162], [-77.41584699516615, 34.72281903997688], [-77.4161303869227, 34.723115861089525], [-77.41617516719327, 34.723170787738574], [-77.41637654645334, 34.723490909418146], [-77.41635312718557, 34.72353248492654], [-77.41607903987358, 34.723696268034615], [-77.41619604556757, 34.72402373749166], [-77.41632459357757, 34.72440529581118], [-77.41672193262748, 34.725039257181365], [-77.41674210430213, 34.72512389422218], [-77.41666471981455, 34.72557834480442], [-77.41667935504015, 34.72564774880853], [-77.4166590237874, 34.72605126419769], [-77.4167238758863, 34.726158121505094], [-77.41705396213146, 34.726568030394866], [-77.41738735582916, 34.72664023823546], [-77.41761531291685, 34.72684353030725], [-77.41792843433436, 34.726855328897514], [-77.41826403076873, 34.72681736340616], [-77.41862935561785, 34.72701498391072], [-77.41879871994988, 34.727184941643955], [-77.41898473668087, 34.727085802964105], [-77.41987660144298, 34.72738753294048], [-77.42000778837831, 34.72743775814416], [-77.42021465739955, 34.72760000805115], [-77.42053349523009, 34.727836388383636], [-77.4206263341603, 34.72796757530717], [-77.42097521427692, 34.72820363093484], [-77.4210346467817, 34.72831983343595], [-77.42115991684918, 34.72863776852384], [-77.42159729001408, 34.728980190263684], [-77.42201446730148, 34.729364419605076], [-77.42225123102334, 34.72943243518054], [-77.42301826432072, 34.729648165206015], [-77.42320386492726, 34.72968527717616], [-77.4233240812508, 34.72968984214366], [-77.423680544539, 34.729818305467326], [-77.42359046851419, 34.73012515688108], [-77.42351903792837, 34.73021108926287], [-77.42340760420691, 34.73037852223563], [-77.4231694988017, 34.730647971273854], [-77.42309669542811, 34.73081406727281], [-77.42292954521756, 34.73112316407191], [-77.42290559858068, 34.73124969649599], [-77.42293991533793, 34.731466339084186], [-77.42316437772901, 34.73176433004915], [-77.42307691987486, 34.73227756189289], [-77.42307834565389, 34.73230134994413], [-77.42308337098416, 34.73231576019521], [-77.42308974544174, 34.73229852039217], [-77.42308991532026, 34.732297374235884], [-77.42309066733179, 34.73229621083421], [-77.42324122845179, 34.73179815698669], [-77.42327271218241, 34.73180220080879], [-77.42369834192064, 34.731797227158275], [-77.42388683582945, 34.73175524447997], [-77.42403908971038, 34.731900635074815], [-77.42424400198246, 34.73194098749], [-77.42445506592614, 34.73200714954167], [-77.42459740876514, 34.73198573151256], [-77.4247214477905, 34.731973277611], [-77.42479847318103, 34.73192831850317], [-77.4249303781665, 34.73182258823247], [-77.42502061705534, 34.73171425524998], [-77.42520265929262, 34.73163955810149], [-77.4253993822316, 34.731585297685], [-77.42565176850053, 34.73151568320799], [-77.42578192327949, 34.731462510860425], [-77.42588304990936, 34.731504061450806], [-77.42604570775302, 34.73151004266033], [-77.42627669890562, 34.73152311580152], [-77.42652581905921, 34.73149850142866], [-77.42671717566989, 34.731676341154], [-77.42676369344854, 34.73178417932604], [-77.42680102179462, 34.731864557877266], [-77.42682473472374, 34.73192568552342], [-77.42685690614684, 34.73201587697784], [-77.426873921158, 34.73205734076357], [-77.42689319442766, 34.73208938063247], [-77.42689242296666, 34.73215526675955], [-77.42690374039215, 34.73223283275663], [-77.42688591084054, 34.7324693615227], [-77.42689912268197, 34.732493210361454], [-77.42697947316557, 34.732538835682035], [-77.42694343179157, 34.732612535036544], [-77.42703374792845, 34.732837338173546], [-77.4270230022967, 34.73288791948122], [-77.42691796954745, 34.733076401629866], [-77.42699653401365, 34.733345341974335], [-77.42716500577095, 34.73372002783989], [-77.42716612537265, 34.733722202451034], [-77.42709205666743, 34.73419826201497], [-77.42730725758591, 34.73433059339821], [-77.4273337822625, 34.73454381720405], [-77.42754892698368, 34.73460863719524], [-77.42758027935005, 34.734664190731785], [-77.42759289735638, 34.73470996090961], [-77.42755845284059, 34.73473918008705], [-77.42749454806118, 34.73479647191406], [-77.42731979903385, 34.73472316734315], [-77.42715884133953, 34.73461678769211], [-77.42695663986666, 34.73443975074632], [-77.42687958473374, 34.734286887076294], [-77.42654589940068, 34.73420653615719], [-77.42640577855748, 34.73412778404936], [-77.42586727185025, 34.7338455550841], [-77.42584857384033, 34.73383773871327], [-77.42582731670288, 34.733833035006064], [-77.42576314746285, 34.73379088305076], [-77.4258261973003, 34.7337784410123], [-77.42584463088252, 34.73337943339317], [-77.42588315843861, 34.73327376512373], [-77.42576248622532, 34.73302778441213], [-77.42574549771166, 34.732974403028905], [-77.42558301283805, 34.73300715268706], [-77.4254186327542, 34.73310814782619], [-77.42541658248814, 34.73310914053098], [-77.42541484757355, 34.73311007121086], [-77.42540549457917, 34.73311621984246], [-77.42520426826638, 34.73359553217591], [-77.42488445440958, 34.73373538826117], [-77.42462213267405, 34.73364461279628], [-77.42458105394826, 34.73365722433191], [-77.42442463306112, 34.73373191498282], [-77.42425266931237, 34.73381340918284], [-77.42423942350412, 34.733817342266256], [-77.42412452356645, 34.73398941362854], [-77.42383637463537, 34.73414393756147], [-77.42366935665746, 34.734177144133554], [-77.42336742682755, 34.73424807242846], [-77.4231509526837, 34.734296712004905], [-77.42273722574193, 34.73441038180317], [-77.42257231894355, 34.73444462356215], [-77.42199514823989, 34.734538612104615], [-77.421803539539, 34.73452130760903], [-77.42163475413285, 34.734584067855785], [-77.42091717832884, 34.73473163300996], [-77.42068728563032, 34.735084059908644], [-77.42074991126955, 34.735392903847696], [-77.42085419161482, 34.735907192361076], [-77.42086848714082, 34.73599343582867], [-77.42082337999497, 34.73607422339], [-77.42040266189548, 34.73638967293546], [-77.42019891865532, 34.73654965315852], [-77.41969011594533, 34.73739088859126], [-77.41913815454244, 34.73818395300419], [-77.41891636595675, 34.73850078753002], [-77.41858082620465, 34.73910729057897], [-77.4183265828727, 34.73947365551949], [-77.41787127133031, 34.739977407312224], [-77.41823439557771, 34.74057063296538], [-77.41875574310737, 34.740617080692346], [-77.41904190418539, 34.74064257297806], [-77.41973550557525, 34.7408374017208], [-77.41994508934859, 34.74093867085053], [-77.42043264810907, 34.74143187216983], [-77.42043635712302, 34.741437876337876], [-77.42045439304914, 34.7414547511559], [-77.42102105712905, 34.74165176842709], [-77.42135809363481, 34.74143552982071], [-77.42148112766306, 34.741239287373844], [-77.42181203543923, 34.741134733069956], [-77.42202231206163, 34.7412228679821], [-77.42210197884398, 34.741240666230624], [-77.42225143006254, 34.741399371745175], [-77.42234648123662, 34.7415035163965], [-77.42236357393459, 34.741526923701294], [-77.4224415868936, 34.741575003792406], [-77.42288761499297, 34.741849217491065], [-77.4233130651161, 34.74202369834103], [-77.4234130851641, 34.74224902268425], [-77.42349645963775, 34.742393591085346], [-77.42350568290232, 34.7425060031635], [-77.42341738071416, 34.742872945195735], [-77.42345696544189, 34.74304804607637], [-77.42370293908245, 34.7434625072341], [-77.42374635614222, 34.74362850195696], [-77.42377712723258, 34.743719016486274], [-77.42411847248943, 34.74424201022154], [-77.42420623531423, 34.74432946763673], [-77.42457475525372, 34.744447454442195], [-77.42471984332505, 34.74437976588114], [-77.42500558246495, 34.7444034570426], [-77.42510194178183, 34.74418204010398], [-77.42522926394999, 34.7440210382607], [-77.42525787037721, 34.7439570035658], [-77.42533644325091, 34.743858117936554], [-77.42541051093468, 34.74373081738951], [-77.42542904499254, 34.74359957244705], [-77.42558814016981, 34.74359567980106], [-77.42582738798987, 34.74350251195786], [-77.42593813790901, 34.74349424211108], [-77.42602914641559, 34.74345820802786], [-77.42621793950434, 34.74349048204246], [-77.42625744059424, 34.74349881164345], [-77.42629871932625, 34.74352469409694], [-77.42651602369888, 34.74358935205537], [-77.4265282334474, 34.743670920491525], [-77.42666214566381, 34.74375160012696], [-77.42657355590902, 34.74397369751507], [-77.42655702207213, 34.7441315068717], [-77.42655453331592, 34.74424286327949], [-77.42656314999948, 34.74465768558366], [-77.42672229938833, 34.74506565807089], [-77.42666620819264, 34.74528778837082], [-77.42669793388916, 34.74567256481292], [-77.42677713183284, 34.74593555489194], [-77.42688118192767, 34.74597192918221], [-77.42713564941064, 34.74601090423687], [-77.42738913673993, 34.74605391255929], [-77.42745965597899, 34.74599091198378], [-77.42785502669828, 34.74606717339851], [-77.42804525138362, 34.74576971570167], [-77.42816649140421, 34.745764446424985], [-77.42818314729661, 34.74581790448852], [-77.4280869860096, 34.746282027682035], [-77.42807552945773, 34.746339354346624], [-77.42847085632806, 34.74692808678717], [-77.4285423712043, 34.74698487063225], [-77.42893899707494, 34.747090106166524], [-77.42905307720955, 34.747132052718634], [-77.42912328259274, 34.74718897347906], [-77.42932225619745, 34.74730979073769], [-77.4293659603192, 34.747349345193456], [-77.42949485633075, 34.7474803854655], [-77.42953814699464, 34.7476715921478], [-77.42958763700497, 34.74788807666552], [-77.42961165540528, 34.74799425288007], [-77.4296809322359, 34.74828591320084], [-77.42968310491119, 34.74829464755871], [-77.42969551797648, 34.74832588832555], [-77.42981396784423, 34.748623999477516], [-77.42963783952244, 34.748759915060575], [-77.42955954020964, 34.74885156038759], [-77.42951796343604, 34.74884881434576], [-77.42917625400698, 34.74896021762379], [-77.42916976352285, 34.74896266100229], [-77.42916398772105, 34.748963943937746], [-77.42913478707996, 34.74896972485338], [-77.42876216476834, 34.74904464945885], [-77.42848439843266, 34.74909622999166], [-77.4283547819488, 34.749126990856645], [-77.4281906083438, 34.74917485406934], [-77.42815999329756, 34.749182704895006], [-77.42813609237915, 34.749191766099415], [-77.42797240228214, 34.74925017584016], [-77.42781462216732, 34.74952031548255], [-77.4279189043262, 34.74963896695607], [-77.42798487708528, 34.74971403035546], [-77.42815683668174, 34.749823978317885], [-77.42825861018972, 34.74987606338898], [-77.42837110524191, 34.74990146084828], [-77.42851593958152, 34.74984759222234], [-77.42877449822366, 34.749812596311656], [-77.42893442437912, 34.7497568396631], [-77.42919122166026, 34.749745504908134], [-77.42957933537187, 34.74966011853271], [-77.42959486709564, 34.74965705405349], [-77.42960506593886, 34.749655471951044], [-77.43004177797692, 34.749639271503646], [-77.4302685372142, 34.74957885823452], [-77.43069860485113, 34.74921659652166], [-77.43101601081754, 34.749044016267284], [-77.4310716312658, 34.7490199507342], [-77.43148087867885, 34.74899883409573], [-77.43175357503286, 34.74887949464952], [-77.4321481821724, 34.74905205234518], [-77.43226770386518, 34.74931873841743], [-77.43234096969375, 34.749418034741204], [-77.43271797125497, 34.74952395145209], [-77.43290068289862, 34.74934742795776], [-77.43307510322974, 34.749204420438964], [-77.43313067270427, 34.748702552873375], [-77.43313795170384, 34.74866733568544], [-77.43312601588498, 34.74864419187551], [-77.43311510046499, 34.74860671270167], [-77.43311976262903, 34.74838145867522], [-77.43320285369902, 34.748303561342624], [-77.43328829038104, 34.74821226098065], [-77.43338900723035, 34.74819600939756], [-77.43355445023839, 34.74819660829188], [-77.43377718142327, 34.74826304872562], [-77.43385208156266, 34.748276084647955], [-77.43411560938986, 34.748231413098466], [-77.43444405640814, 34.74844639735511], [-77.43477910054327, 34.748404037187925], [-77.4351137803857, 34.748348105770745], [-77.43518514465177, 34.74826451124513], [-77.43519227188769, 34.748228703684504], [-77.4354063957065, 34.747933164140136], [-77.4355515557244, 34.74783348776434], [-77.43597946003875, 34.74757277099371], [-77.43610982483918, 34.747586642561814], [-77.43649231667081, 34.747603125469574], [-77.43656623161203, 34.74758437082526], [-77.43661061535852, 34.74760769762021], [-77.43662859700333, 34.7476295483399], [-77.43674497920384, 34.74769139703081], [-77.43688723249518, 34.747759775703415], [-77.43699318160719, 34.74792386288112], [-77.43713957724506, 34.74799572264065], [-77.43733984575732, 34.74817873600994], [-77.43737349873017, 34.74821161468662], [-77.43739014778154, 34.74823780452563], [-77.43761347906307, 34.748553846860574], [-77.4376155491647, 34.74855704550256], [-77.43761676676344, 34.74856264992277], [-77.43779870142357, 34.7488980698887], [-77.43778876241102, 34.748931192613824], [-77.4378208802394, 34.748965263877615], [-77.43794330629565, 34.749089925723325], [-77.43792305914674, 34.74922102926779], [-77.43781693859205, 34.74936584357367], [-77.43779492552781, 34.74945578205544], [-77.43770398244794, 34.749442514400215], [-77.43764943765441, 34.749557642286845], [-77.43753752225868, 34.74964537522103], [-77.43737867464482, 34.74965891104329], [-77.43733169136404, 34.749852984958494], [-77.43719308073237, 34.75002657285896], [-77.43716327163128, 34.75005480022578], [-77.43713502633457, 34.75006379685519], [-77.43707845629075, 34.75012030763158], [-77.43691722274264, 34.75026722399191], [-77.43693133969687, 34.7504048785491], [-77.43692540317356, 34.75040984026414], [-77.4369238039177, 34.750411391096655], [-77.43691954378127, 34.75041774926334], [-77.43687794381124, 34.75046313957823], [-77.43685789036208, 34.7504906642672], [-77.43685777449991, 34.750491033056356], [-77.43681601981962, 34.7504984717253], [-77.4368020814765, 34.750492980200306], [-77.43674767080965, 34.75048149476022], [-77.4367427048441, 34.750474819434736], [-77.43673010938198, 34.7504688992571], [-77.43662642850072, 34.75042046923699], [-77.4366063912668, 34.75039187153037], [-77.4365292808107, 34.75034939279617], [-77.43647811874669, 34.75028114217569], [-77.43632066187105, 34.75017404806255], [-77.4362739127566, 34.75032199939058], [-77.43617724755674, 34.75031367182811], [-77.43613979241326, 34.75034224051091], [-77.43597210435792, 34.7503524813334], [-77.4358995118136, 34.75047071774227], [-77.43593874393434, 34.75059572741007], [-77.43599882714159, 34.75064517331327], [-77.43601402532204, 34.75077676132186], [-77.43601478339362, 34.75078720957339], [-77.43601288105049, 34.75078984207536], [-77.43601135127851, 34.75079042384257], [-77.43600952679363, 34.75079230350136], [-77.435831822808, 34.750871068846045], [-77.43582038255722, 34.7508918809967], [-77.43572023883186, 34.750967123639086], [-77.4356551193595, 34.75095632794086], [-77.43564217455548, 34.750953673216024], [-77.43540249543338, 34.750917594906475], [-77.43529592647, 34.751098404735465], [-77.43528533499106, 34.75110009979466], [-77.43527867806844, 34.751101715861246], [-77.43502774245643, 34.75105325181936], [-77.43496962340956, 34.751061668628516], [-77.43467215464966, 34.75116000061363], [-77.43464487734438, 34.75117566093844], [-77.43459954551311, 34.75123244003717], [-77.43432198497902, 34.75131718233901], [-77.43435914552056, 34.7514567111143], [-77.43435946231752, 34.75147768195347], [-77.43423208567992, 34.75156529436914], [-77.43421789227394, 34.75175993132098], [-77.43418129937608, 34.75182707132017], [-77.43421745298977, 34.75197301136078], [-77.43421517983501, 34.75198426182932], [-77.43416227613443, 34.752099945309226], [-77.43407999804401, 34.752263845945784], [-77.43403936137466, 34.75233652316802], [-77.43400145044512, 34.75236795010764], [-77.43393920224912, 34.75244129109454], [-77.43392735675, 34.75244688159791], [-77.43383124335057, 34.75246382510568], [-77.43361658635901, 34.75246833940016], [-77.43360536535688, 34.752468777565156], [-77.43358846021319, 34.75246886822213], [-77.43333577621765, 34.75227510513777], [-77.43278639037405, 34.75245781113349], [-77.43292763174566, 34.752744497350804], [-77.4330936420489, 34.75284467944726], [-77.43315878138739, 34.75288652836004], [-77.43322937558717, 34.75306503779929], [-77.43325291518306, 34.753115191791224], [-77.43326076640523, 34.7531825894126], [-77.43321383152856, 34.753294719153196], [-77.43320695255686, 34.75331353348692], [-77.43313856128432, 34.753419415709274], [-77.43305885333582, 34.75358255700459], [-77.43302375903592, 34.75365882846893], [-77.43303051188205, 34.75377309680879], [-77.43284740745857, 34.754117144083324], [-77.43282581892377, 34.75414871733013], [-77.43282692839998, 34.75418833338786], [-77.43275493164278, 34.75428158187169], [-77.43251869019241, 34.75460045907447], [-77.43253019411661, 34.754695843167454], [-77.43238612423401, 34.75496387760748], [-77.43234556726962, 34.75509901945403], [-77.43228642645218, 34.75524390755918], [-77.43227211348893, 34.755352879136936], [-77.43225546549257, 34.755498224485805], [-77.43217903246513, 34.75559988177979], [-77.4321246740389, 34.75565848565372], [-77.43204637291015, 34.7556214722915], [-77.43187675847476, 34.75562745726674], [-77.43172843115264, 34.755612059806325], [-77.43160582038234, 34.755679140399515], [-77.4315075302242, 34.75577217202564], [-77.43140690610544, 34.755889167987824], [-77.43128198872219, 34.75604649693446], [-77.43124460294393, 34.75609050380327], [-77.43122732956465, 34.756105951800265], [-77.43117099055634, 34.756155512105316], [-77.43100368642007, 34.75630733956976], [-77.43084523131117, 34.75644746423427], [-77.43064345047036, 34.756604194021634], [-77.43057068444486, 34.75671510613103], [-77.43045678879604, 34.75689976399717], [-77.43074964098945, 34.7567776300764], [-77.43144810753236, 34.756486330155305], [-77.43146733513598, 34.75646932684423], [-77.43147325852769, 34.75646395140304], [-77.43148891305762, 34.75643938012209], [-77.43163469440084, 34.756248274270654], [-77.43165591548177, 34.75617646496774], [-77.43170943932918, 34.75610193628667], [-77.43176756412208, 34.75603070357704], [-77.43177466914557, 34.75602153388496], [-77.43178524621972, 34.75602134991706], [-77.43188121015801, 34.756008601688805], [-77.43193202797075, 34.75601643893588], [-77.43215624117485, 34.75608391265765], [-77.43222915503522, 34.75609775416444], [-77.4325703277529, 34.756016109311055], [-77.43257211285618, 34.75601537369755], [-77.4325759429858, 34.75600752982704], [-77.43269806921452, 34.75578121571906], [-77.4327445225623, 34.75554921618253], [-77.43276996671028, 34.75552681248269], [-77.43280517516702, 34.75547394444881], [-77.43280961539492, 34.75540090356831], [-77.43287409853734, 34.755386972013945], [-77.43303519924042, 34.755378005934226], [-77.43307887995853, 34.75537791170669], [-77.43309531870544, 34.75537440041109], [-77.43310787296518, 34.755365342909904], [-77.43347071445088, 34.75523976134292], [-77.43350873932796, 34.75518049956122], [-77.43366771776456, 34.755001888356205], [-77.43368446630664, 34.75484113208857], [-77.43371139625006, 34.754649576446894], [-77.43363110643065, 34.75457799761139], [-77.43341158371776, 34.7543954657437], [-77.4333729460576, 34.75436209345603], [-77.4333530930954, 34.75435262478896], [-77.43335253606455, 34.75433273489314], [-77.43336342384983, 34.754316811499784], [-77.43338757847906, 34.7540654565394], [-77.43338098880723, 34.75389459323008], [-77.43337429322588, 34.75378129389682], [-77.43342537827428, 34.75367026927298], [-77.43344138534218, 34.75352521296178], [-77.43349385945768, 34.753401119108304], [-77.43353795563843, 34.753279430589714], [-77.4335540823632, 34.75313274504224], [-77.43361516536328, 34.75302688438586], [-77.4337755236331, 34.752837240804475], [-77.43376723479042, 34.75280049182153], [-77.43380833506077, 34.7528002714137], [-77.43382525134363, 34.752799610855675], [-77.4341612363118, 34.75265862229121], [-77.43417534873386, 34.75265196190914], [-77.43419200580452, 34.75264035212595], [-77.43448464279466, 34.752492088671346], [-77.43450881311404, 34.752448860941804], [-77.43448877250717, 34.7520933424342], [-77.43447279205316, 34.75192890907341], [-77.43448722135889, 34.75187079034048], [-77.4345419827378, 34.7517553229221], [-77.43459235612886, 34.751691160854655], [-77.43474566042111, 34.751539792189945], [-77.43479398570577, 34.75148208359762], [-77.43481578190173, 34.751454783390926], [-77.43486381669706, 34.75142720586855], [-77.43498102186982, 34.75135080018801], [-77.43515580154258, 34.75132896933009], [-77.43519324329594, 34.7513235470097], [-77.43521334505462, 34.75132742933021], [-77.43531246654756, 34.75130336611939], [-77.43541151210371, 34.75130617023567], [-77.43542479533629, 34.751283185652674], [-77.43555056763272, 34.75127016340311], [-77.43561947265795, 34.751271958035574], [-77.43574959216882, 34.7512568964913], [-77.43583749852954, 34.75125418418327], [-77.43587631067345, 34.75125255554147], [-77.43599786179428, 34.7512406695677], [-77.43605662034804, 34.75123820000016], [-77.43608768018068, 34.75120320350476], [-77.43615858132353, 34.75112026065532], [-77.43619659305104, 34.75109295316213], [-77.43626783279672, 34.751007681321454], [-77.43633593347892, 34.75094667427754], [-77.43635486706219, 34.75090931598812], [-77.43635573159045, 34.75086818916436], [-77.43636410171128, 34.750675073220805], [-77.43636527331998, 34.75064100789529], [-77.4363620816199, 34.75063231908606], [-77.43636947057739, 34.750627603492056], [-77.43638028968913, 34.75061914373885], [-77.43644970822872, 34.75057172307426], [-77.43649052573888, 34.75058876034553], [-77.43654303561826, 34.75061076789745], [-77.43659100925953, 34.75061556835744], [-77.43670004603204, 34.75062220826287], [-77.43672451491085, 34.75061917695944], [-77.43682474361442, 34.75062345033077], [-77.43685988053072, 34.75062389103782], [-77.43701754580796, 34.75058178835464], [-77.43702451784023, 34.75057587048481], [-77.43703722123438, 34.75056508780438], [-77.43714719648196, 34.75048732308731], [-77.43718191930651, 34.75045909059703], [-77.43729113238852, 34.75039784820934], [-77.43733032103977, 34.75032761336569], [-77.43745353707632, 34.750234519934516], [-77.4374851774648, 34.750206678643536], [-77.43750899890965, 34.75019444264084], [-77.43751644183499, 34.75016080447831], [-77.43760454813594, 34.750027791667506], [-77.43762865077102, 34.74995672644247], [-77.43766987189193, 34.749873598389], [-77.43770744555403, 34.74982200272085], [-77.43785326305117, 34.74975567750634], [-77.43787179216251, 34.74971656804614], [-77.43792196238162, 34.74972388736247], [-77.43799796004899, 34.749736734378516], [-77.43811948347013, 34.749747245124624], [-77.43823331329907, 34.7497559788982], [-77.43823983747359, 34.74975688116697], [-77.43824351435998, 34.74975225059683], [-77.43828638070275, 34.74964597671672], [-77.43829614806955, 34.749630880076936], [-77.43831879270904, 34.74960289574305], [-77.43844093969052, 34.74940194646146], [-77.43851120582961, 34.74929942490995], [-77.43851644208365, 34.74927403517064], [-77.43851785273658, 34.749149300425216], [-77.4385274552286, 34.74906944283762], [-77.43848476535673, 34.74888712355978], [-77.43843194845645, 34.74883977584818], [-77.43825354581003, 34.74873730242599], [-77.43821454453172, 34.748712924991466], [-77.43798368985941, 34.74840347048273], [-77.43772250613918, 34.748197290448275], [-77.43765168273003, 34.74809556723513], [-77.43748535853136, 34.747950055402875], [-77.43747923800647, 34.747944302466244], [-77.43747583735217, 34.747941725625665], [-77.43746627290069, 34.747932797093355], [-77.4373132721563, 34.74779033475596], [-77.43722190798763, 34.74771125176724], [-77.43697958335184, 34.74749384199087], [-77.43697124912717, 34.74748660912808], [-77.43696750101691, 34.74748243277432], [-77.43690484480538, 34.747389715730094], [-77.43674290838987, 34.74715060415581], [-77.43673500505706, 34.74713875708941], [-77.4367252815339, 34.74712548092276], [-77.43672168445086, 34.74709057582714], [-77.43677045473396, 34.74705542645544], [-77.43684573750882, 34.746919341064185], [-77.43686024548363, 34.746893115511845], [-77.43692435574663, 34.746673901674285], [-77.43694364708001, 34.746642736093975], [-77.43700874942803, 34.74657815906767], [-77.4370103193156, 34.74644045975133], [-77.43699322018114, 34.746380538269214], [-77.43700136908113, 34.74625756772882], [-77.43691552019052, 34.746170647576804], [-77.43681694480307, 34.746039435526036], [-77.43687226117129, 34.745841136790645], [-77.43709162429658, 34.74594571224055], [-77.43727197416621, 34.745746285146666], [-77.43744249098663, 34.745841217178175], [-77.43756909084384, 34.745857706271444], [-77.43759451109065, 34.7458698689727], [-77.43764749728214, 34.74586529074636], [-77.43776062488969, 34.74584982170831], [-77.43779033002103, 34.74584520158343], [-77.43784332029966, 34.74583898349455], [-77.43792604392203, 34.745749088476636], [-77.43794370444701, 34.74572186013156], [-77.4379569122388, 34.745599152229474], [-77.43803729090686, 34.745500873349094], [-77.43803755420312, 34.74547936647958], [-77.43798240801057, 34.745328543667995], [-77.43803725696708, 34.745256287713026], [-77.43797597374439, 34.745105703968356], [-77.43744438873371, 34.74514057787355], [-77.43737111304502, 34.745160527064876], [-77.43730650793243, 34.74520322538702], [-77.43716438812943, 34.74517402141858], [-77.43675847453466, 34.744881156483146], [-77.43661001192336, 34.74451248387463], [-77.43630613530124, 34.74422846256112], [-77.43630076660055, 34.74418198825241], [-77.43627076630342, 34.743761202364], [-77.43605673351992, 34.743537689008306], [-77.43589771061983, 34.74342405721113], [-77.43571955899974, 34.74341988290383], [-77.43535738845986, 34.74336689436615], [-77.4352734999112, 34.743365242383625], [-77.4349992502029, 34.7433988290591], [-77.43465216826289, 34.74329647947232], [-77.43420370923285, 34.74297792040596], [-77.43402677914263, 34.74291170145186], [-77.4337822924513, 34.74274299206816], [-77.43360122531585, 34.74264282339813], [-77.43356831573104, 34.74261029097529], [-77.43349076763698, 34.74256110823342], [-77.43316574717838, 34.742378084278236], [-77.43299870711411, 34.74236285121323], [-77.4328842500848, 34.742318121001304], [-77.43232728498262, 34.74246715068917], [-77.43199278187045, 34.74235741063023], [-77.43179152724181, 34.74260641140853], [-77.43125196467153, 34.74264279207786], [-77.43096563815328, 34.74274067709252], [-77.4308198578486, 34.74282592246417], [-77.43069078626924, 34.743221628900365], [-77.43069343862038, 34.743340797372966], [-77.43067846479921, 34.74341559425075], [-77.4306602317605, 34.74379567364134], [-77.43068162326503, 34.7438957200427], [-77.43092266045677, 34.74420651889771], [-77.43089508335198, 34.74430313194141], [-77.43091792311627, 34.74453734308206], [-77.4307247468984, 34.74468036508787], [-77.43068766813997, 34.74471209037867], [-77.43066253434982, 34.744727626547494], [-77.430350706619, 34.74486487289449], [-77.43031964465659, 34.744858693955244], [-77.43031462446918, 34.74488557942908], [-77.43005432268936, 34.7450150955429], [-77.42998387523195, 34.74504952850111], [-77.42998008859867, 34.74505180161875], [-77.42979594219443, 34.74526338292373], [-77.42971512072019, 34.74536675366423], [-77.42962428881098, 34.745482926959866], [-77.42952878589011, 34.74568068184624], [-77.42955621623253, 34.7457386662226], [-77.42975595269276, 34.74603232125476], [-77.42995204522319, 34.746241938884545], [-77.43022386858233, 34.74619780536512], [-77.43040041119946, 34.746209911488606], [-77.43059914397327, 34.746221787103075], [-77.43072844021043, 34.74627424141056], [-77.43119169488496, 34.74632625835269], [-77.43120179999323, 34.74635515101235], [-77.43126858536363, 34.746337024183056], [-77.43171941604606, 34.746397427531264], [-77.43229967418081, 34.746310502210775], [-77.4323531651981, 34.74680824621642], [-77.43290280048976, 34.746834880278556], [-77.43300566741576, 34.746908809746486], [-77.43307084310487, 34.74696675587008], [-77.43337022488623, 34.74720314085225], [-77.43350621782804, 34.747255547376525], [-77.43365322132772, 34.74731285388506], [-77.43382649452046, 34.747459216503174], [-77.433804939363, 34.747502769215764], [-77.43378964121462, 34.74753567361703], [-77.43377697303019, 34.74763275858493], [-77.43371374481433, 34.747646296871515], [-77.43360918619305, 34.747614794475005], [-77.43345338758095, 34.74761484807379], [-77.43342794925626, 34.74752593948565], [-77.43330187139682, 34.74748670945653], [-77.43305239437132, 34.74733571426972], [-77.43294524651938, 34.74697815795068], [-77.43243028174697, 34.74730198563762], [-77.43227218046249, 34.7473003230577], [-77.4322082161141, 34.74730897490154], [-77.43129528382562, 34.74762222310632], [-77.43080670280617, 34.74771993698255], [-77.43073780992756, 34.747785092810005], [-77.43072112156106, 34.74782287749127], [-77.43071437775872, 34.74786451894113], [-77.43051164817831, 34.748163443347366], [-77.43040083082775, 34.7482700117358], [-77.43031550422563, 34.74830908663707], [-77.4302055014347, 34.74820175909339], [-77.4300802244479, 34.74812901643597], [-77.4300532786439, 34.74810731505271], [-77.43002427211239, 34.74799867005842], [-77.43001236500595, 34.74793412487478], [-77.42999364122392, 34.7478482036571], [-77.43004412373665, 34.74769768406826], [-77.43003878340986, 34.74758445128006], [-77.42986932059605, 34.74732420287924], [-77.42971441534937, 34.747062746165476], [-77.42959802998831, 34.74699096539179], [-77.42917956145189, 34.74673527822241], [-77.4291701578388, 34.746727654009234], [-77.42916427282054, 34.74672549012482], [-77.42914081919568, 34.74671161774422], [-77.42906312875526, 34.746545080545495], [-77.42898732927122, 34.74635290259585], [-77.42916593340169, 34.746161338657046], [-77.42903633105834, 34.74588607780145], [-77.4290322303026, 34.74574680680822], [-77.42903125533846, 34.74555522113026], [-77.42906253740718, 34.7454287604234], [-77.42908388170343, 34.74508338282541], [-77.42911099073474, 34.745024029285474], [-77.42914569000614, 34.74494769148623], [-77.42930727066727, 34.74470050668018], [-77.42938452973952, 34.74456056243886], [-77.429459554259, 34.744370394045035], [-77.4294379994212, 34.74429972050627], [-77.42927929588325, 34.74413571056797], [-77.42911464033128, 34.74406786771975], [-77.42887563969163, 34.7439953981953], [-77.42866835316306, 34.744031023582295], [-77.4284181165355, 34.74399578709385], [-77.42804525061332, 34.74396833849931], [-77.4279675701218, 34.74365352379553], [-77.42767880519776, 34.74353583227722], [-77.42754939314364, 34.74346616341087], [-77.4274397991794, 34.74342726212837], [-77.427108179941, 34.7433514405319], [-77.42695336601378, 34.74330997486999], [-77.42677728187479, 34.7432571981388], [-77.42665606077558, 34.743229436397456], [-77.42655474249004, 34.74319512218392], [-77.42636368485239, 34.74313187362247], [-77.4261687681697, 34.743064608453366], [-77.42597752929211, 34.74299995447447], [-77.4257687523467, 34.742971913909074], [-77.42547336212931, 34.74290825617346], [-77.42546728431616, 34.74290575694964], [-77.42545960109102, 34.74290163823004], [-77.42518247688038, 34.74278206101499], [-77.42489114295093, 34.74272076198463], [-77.42477342485334, 34.74275379025478], [-77.42453243334892, 34.74281243564699], [-77.42447254045081, 34.742784716038486], [-77.42436305612172, 34.74270174613763], [-77.42437364993249, 34.74262314707872], [-77.42441361595262, 34.742543802604786], [-77.42442798048495, 34.74245148059384], [-77.42447723692857, 34.74228650431229], [-77.42453598963093, 34.74214050821463], [-77.42453402490392, 34.74196087699958], [-77.42439764968859, 34.74169961958326], [-77.42434257941744, 34.74159434258984], [-77.42426345674407, 34.74152682233363], [-77.42408256074485, 34.74139967579939], [-77.42370434989428, 34.74124318413311], [-77.42332983925465, 34.74112395232548], [-77.42318662205436, 34.74081666167501], [-77.42309053569541, 34.74068368571974], [-77.4228636801254, 34.74042561210241], [-77.42273300317757, 34.74016876740283], [-77.42247881188167, 34.740275087281674], [-77.4215158297571, 34.740094970960335], [-77.42147432516343, 34.74008662496047], [-77.42144982218086, 34.740089573219], [-77.4213807812298, 34.740086059075786], [-77.42082110302096, 34.740128017443865], [-77.42056009345919, 34.73979918421631], [-77.42053137011473, 34.73961277654702], [-77.42060136283484, 34.739451100926104], [-77.4207207594089, 34.73929626768411], [-77.42092162408915, 34.73922648797085], [-77.4210796126749, 34.739235378605585], [-77.42136153137767, 34.7391973836577], [-77.42164297514657, 34.739059556095015], [-77.42172540050046, 34.73904403056738], [-77.42178722630914, 34.739006137125656], [-77.42225037700139, 34.73871279753622], [-77.42221366942607, 34.73834603515185], [-77.42246949737805, 34.73823031475867], [-77.42239236860767, 34.73794392927701], [-77.42210752549347, 34.737900076022335], [-77.42165639860207, 34.737387019328125], [-77.4216942601862, 34.737342329542585], [-77.42212825249948, 34.73699288273752], [-77.42220282206694, 34.73683248725051], [-77.42241131844115, 34.73615053429059], [-77.42241375155842, 34.735974530898424], [-77.4223924142451, 34.7356464665117], [-77.42281803741268, 34.73544642859166], [-77.42304577611677, 34.73521827982154], [-77.42313795392897, 34.73510953418051], [-77.42341068670886, 34.73506665856763], [-77.42356870061666, 34.73506837767502], [-77.42393718769668, 34.735179076866544], [-77.42403104435608, 34.73486264426533], [-77.42418140086633, 34.734830237248666], [-77.42430067456706, 34.73475484296417], [-77.42454899852409, 34.734683008921536], [-77.4249388225409, 34.73462088431515], [-77.42498378670676, 34.734610044047905], [-77.42505117126962, 34.73460314251954], [-77.42550761783718, 34.73475362155145], [-77.42556896011179, 34.73480350197019], [-77.42562502927557, 34.734810168209364], [-77.42565705586904, 34.734871933439756], [-77.42571373346895, 34.735090401411625], [-77.42583735064868, 34.735494018184546], [-77.42583829274761, 34.73561397590059], [-77.42583441610944, 34.7357725257368], [-77.42591284114667, 34.73583037375432], [-77.42606163932467, 34.73585194607817], [-77.42618808453149, 34.7358654531898], [-77.42622098620961, 34.73587338024197], [-77.4262894596317, 34.73587217569837], [-77.42654724804845, 34.73585381126441], [-77.42663847739792, 34.73585349533762], [-77.42708725514856, 34.73598579430517], [-77.42714182439448, 34.73601482476068], [-77.42722292686193, 34.73606056533026], [-77.42767136431219, 34.73640048822179], [-77.42789005806779, 34.736543703748424], [-77.42807636372741, 34.736707104163074], [-77.42822234835782, 34.73671209428324], [-77.42837159905817, 34.736659303071285], [-77.42850895829802, 34.73666605473517], [-77.42848647965201, 34.73641992417183], [-77.4285120390688, 34.73628426510193], [-77.42850533098579, 34.7361469833015], [-77.42843253701528, 34.735986049834295], [-77.42839882705044, 34.735885103156015], [-77.42837095647795, 34.735820489808376], [-77.42830639133784, 34.73570046755713], [-77.42822986095872, 34.735578728713], [-77.42818128027419, 34.735529461514254], [-77.42813274052568, 34.73545770252446], [-77.42807748626831, 34.73534956393456], [-77.42804252866217, 34.735156174485276], [-77.42804677028178, 34.7351481253411], [-77.42804420424703, 34.735140254412656], [-77.42809177038589, 34.7349483192293], [-77.42817122962389, 34.73464088489805], [-77.42817070831236, 34.734632382706124], [-77.42815572258445, 34.7345932901841], [-77.42803406332743, 34.73425171585259], [-77.4279340551497, 34.733990608627465], [-77.42791736602462, 34.73385400867497], [-77.42781102502227, 34.73370329106758], [-77.42760852642587, 34.73331776894215], [-77.4275058041269, 34.733132914650845], [-77.42755881762304, 34.733020864001276], [-77.42756562300069, 34.7328813087572], [-77.42757217700589, 34.73274600242366], [-77.4275696772085, 34.73265988850543], [-77.42753826863537, 34.732454619625855], [-77.42753553179683, 34.732440153058846], [-77.42746489133275, 34.73225721450048], [-77.42736155108784, 34.73211332055452], [-77.42732553384499, 34.73205816970687], [-77.42722447366839, 34.73191111655721], [-77.42709371925112, 34.73175155242334], [-77.42708627621465, 34.73174557140767], [-77.42708482412257, 34.73173706403104], [-77.42697593346854, 34.73156840702374], [-77.42666959630498, 34.73141725108158], [-77.4265748373654, 34.73132918564328], [-77.42644963748114, 34.73134155604603], [-77.42606193217966, 34.731172186833334], [-77.42602248120384, 34.731365731999425], [-77.42592414536362, 34.73136211602093], [-77.4256520684041, 34.73125032589887], [-77.42530189242606, 34.73139338387157], [-77.42528481634707, 34.73139809388338], [-77.42527150636609, 34.73140176506233], [-77.4249181192825, 34.731546769913145], [-77.42490405413449, 34.73156365530981], [-77.42473934952639, 34.73162859033481], [-77.42471765842863, 34.73174823081735], [-77.42468488383851, 34.73176701711787], [-77.42460656123376, 34.73177553874856], [-77.42458482377863, 34.731750027181945], [-77.42454526801671, 34.73169560814813], [-77.4245362793764, 34.73169325904831], [-77.42452810208515, 34.73168196977604], [-77.42453569883585, 34.73166975413311], [-77.42455821505308, 34.73165089119379], [-77.42468609564176, 34.73154157053206], [-77.42478199027975, 34.731491183546524], [-77.42485794517097, 34.73144844217619], [-77.42511207796552, 34.731327033052494], [-77.42520853001383, 34.73127343821026], [-77.42532990810136, 34.73120004741448], [-77.42555431755011, 34.731090597970905], [-77.42568822559696, 34.73096935938578], [-77.4254791698786, 34.730684499535734], [-77.42531731410091, 34.73047472825267], [-77.42541146537435, 34.730313548798854], [-77.4253765164923, 34.73005219360252], [-77.42536591713717, 34.73000807745835], [-77.42515323833983, 34.72966421446321], [-77.4251477963266, 34.72965268075029], [-77.42513954072535, 34.72964304481113], [-77.42509453370349, 34.72959141283153], [-77.424647336779, 34.729128605066265], [-77.42433929117814, 34.729097163042155], [-77.42401756214004, 34.72908933392068], [-77.42386129936601, 34.729071938568154], [-77.42355936890411, 34.728976098038984], [-77.42343241282755, 34.728895936309875], [-77.42312190215421, 34.72871219058755], [-77.42288345280122, 34.72857755855581], [-77.42261284819276, 34.72821707403157], [-77.42258487994758, 34.72804343458472], [-77.42251402896969, 34.727639141629496], [-77.42251322128844, 34.72762695117149], [-77.42195620976865, 34.72745445939685], [-77.42192580864327, 34.72745638864668], [-77.42180128759983, 34.72747752224302], [-77.42158716744045, 34.72751880327916], [-77.4215443980718, 34.72752937846439], [-77.42139929374694, 34.72751327373964], [-77.42126955375073, 34.7275085972096], [-77.42121255113106, 34.72744798645818], [-77.4211232770437, 34.727313941394506], [-77.42100406138562, 34.72709555495924], [-77.42099486693013, 34.72692112915544], [-77.42062461650377, 34.72677411685657], [-77.42024331658276, 34.726624404145866], [-77.41989734780557, 34.72648614557019], [-77.41967620704594, 34.7263687807487], [-77.41932068975416, 34.72613894344571], [-77.41914154566177, 34.72600111505564], [-77.41906787184007, 34.72593936481114], [-77.41880091527298, 34.72576618550472], [-77.41865598252119, 34.725664785473924], [-77.41861545670457, 34.72560386115072], [-77.41815441234176, 34.72542760782006], [-77.41830980109305, 34.725035381022096], [-77.4182480806295, 34.72494217888487], [-77.41820529318682, 34.724806322359896], [-77.4181698549636, 34.72452844042381], [-77.41795947537454, 34.72435379888073], [-77.41783877554774, 34.724220158874985], [-77.41777843668058, 34.72406645229811], [-77.41736241567824, 34.72397246765243], [-77.41754384902208, 34.72364937998704], [-77.4175162846774, 34.723461933178584], [-77.4173340321945, 34.723387201119074], [-77.417146202447, 34.72316991899564], [-77.41708450570101, 34.723141935092826], [-77.41688151606822, 34.72290015170088], [-77.41684560728244, 34.72285997498675], [-77.41683362491125, 34.722841943584136], [-77.4166983066518, 34.72246399630911], [-77.41649901371403, 34.72216584332086], [-77.41649954311512, 34.72184120809314], [-77.41649538117984, 34.72165590867125], [-77.41647714642416, 34.72159910265679], [-77.41651524404605, 34.72155343709073], [-77.41668434996897, 34.7211124658367], [-77.41668320982205, 34.72107998373221], [-77.41661542166715, 34.720713123998905], [-77.41652019074303, 34.72049596706164], [-77.41659337016469, 34.720185115056296], [-77.4167637794263, 34.72002205427188], [-77.41676234362673, 34.719759126082856], [-77.41686171339987, 34.71949720766087], [-77.41684135019389, 34.71927981467093], [-77.41688436268679, 34.71922558174873], [-77.41676495314874, 34.71896956761581], [-77.41674163974437, 34.718896125381605], [-77.41672636963776, 34.718881410052454], [-77.41671836044037, 34.71887194477652], [-77.416515522705, 34.71853750547567], [-77.41651070728645, 34.71852499763414], [-77.41642723658715, 34.71841751202843], [-77.41626703254198, 34.71821672828201], [-77.4161455570642, 34.71823093263007], [-77.41562490289296, 34.71822036212369], [-77.41536766373355, 34.71818147104358], [-77.4150019801194, 34.718157674470774], [-77.41492030082709, 34.7181981878819], [-77.41483043599385, 34.71822776181911], [-77.41449676916343, 34.7182538604561], [-77.41430670271056, 34.718344806197564], [-77.41395975375492, 34.71848236454088], [-77.41379936517463, 34.7186098654705], [-77.41353577475516, 34.7188931896318], [-77.41346630661961, 34.719032956842376], [-77.41332536316693, 34.71933109629519], [-77.41330805782962, 34.71937265304631], [-77.41328192483391, 34.71942522768622], [-77.41311187250636, 34.71973014959583], [-77.41300213943559, 34.719824767317974], [-77.41303386951884, 34.719975028711744], [-77.41292446778782, 34.720171851001965], [-77.41284025743943, 34.72032725647978], [-77.41271284110245, 34.720555260102486], [-77.41270921821769, 34.72056098037616], [-77.4127075547537, 34.72056531580107], [-77.41257743586182, 34.720794443975414], [-77.41252123380136, 34.72100879285438], [-77.41238184247668, 34.72128514400569], [-77.41230721492781, 34.721406995707504], [-77.41224107720734, 34.72151546718745], [-77.41210567095091, 34.72170116661427], [-77.41208448323623, 34.721740254436945], [-77.4120636380793, 34.72175687952023], [-77.41202326863677, 34.72180157375646], [-77.41179257760425, 34.72206183562294], [-77.41170115904498, 34.722165300572364], [-77.41155357588256, 34.72231642132316], [-77.41151509855543, 34.72235630205414], [-77.41149438716354, 34.72237253942599], [-77.41140620720981, 34.722439200993456], [-77.41124719231814, 34.72256564088544], [-77.4111386995214, 34.72264201620189], [-77.41088561842162, 34.72282341249735], [-77.41071410847508, 34.72293831098968], [-77.41034568633866, 34.72316634576953], [-77.41021461692033, 34.72322265175332], [-77.41013772711955, 34.7232958383896], [-77.4099370378654, 34.723470408650556], [-77.40991385817256, 34.72347907187351], [-77.40990381127635, 34.72351204177408], [-77.40974296912891, 34.723716885784306], [-77.40967047583663, 34.723829294853516], [-77.40959211068154, 34.723943680218625], [-77.40946381404005, 34.72414185889553], [-77.40944757655815, 34.72417268636467], [-77.40938235751571, 34.72427852997699], [-77.40919946173786, 34.7245554997469], [-77.4091432964677, 34.72462537874786], [-77.40910557376687, 34.72473758157358], [-77.40902399370714, 34.7250167604781], [-77.40894597394507, 34.72511547900577], [-77.40879291485689, 34.72538710820879], [-77.40872114339189, 34.72559595926745], [-77.40858735623219, 34.72584634988213], [-77.40847017296971, 34.7260672979133], [-77.408436521466, 34.7263007220974], [-77.40836008016109, 34.726587907835], [-77.40832134228852, 34.7268499553664], [-77.40832346404568, 34.72686402627211], [-77.40834114811442, 34.727140400957964], [-77.4082119356031, 34.727211892681375], [-77.40812768833966, 34.72729210139549], [-77.40804534508803, 34.72731650412223], [-77.40782152300724, 34.72745291486885], [-77.40776551117835, 34.7274481418979], [-77.40768219646382, 34.727469053221455], [-77.4074074280019, 34.72761087690066], [-77.40714933678774, 34.72755998473802], [-77.40697628855294, 34.72765417649055], [-77.40657066468795, 34.72757988887985], [-77.40650334003558, 34.72757665984518], [-77.40646546484501, 34.72756720181395], [-77.40641922136497, 34.727586446168594], [-77.40580625474696, 34.72776964133727], [-77.40570087578875, 34.72781350972615], [-77.4056523021764, 34.727877330090415], [-77.40543017461118, 34.72796116011614], [-77.40533561304932, 34.72796451056917], [-77.40508191630651, 34.72805665798772], [-77.4049269400023, 34.72804453875105], [-77.40484342535792, 34.728153535532414], [-77.4043621422001, 34.72850066463246], [-77.40431642578126, 34.72852833136977], [-77.40431076089405, 34.72853349758507], [-77.4042987398283, 34.7285466951518], [-77.40404628112756, 34.72884927934138], [-77.4039534781557, 34.72896050729422], [-77.40379921233992, 34.72918168655168], [-77.40379550155725, 34.729187463816906], [-77.40358128172457, 34.72938944836515], [-77.40334041823462, 34.72964106708431], [-77.40316048599027, 34.729645642424394], [-77.40305569702738, 34.72993798525293], [-77.40302728837491, 34.73031392763487], [-77.40326073640533, 34.73074517452643], [-77.40335234384492, 34.73098675095228], [-77.40341670636364, 34.731126487655494], [-77.40349745491591, 34.73131172850873], [-77.40359247684071, 34.73149954566823], [-77.40366552596572, 34.73165541609197], [-77.40374363456782, 34.73209545333937], [-77.40374525721417, 34.73224242901448], [-77.40374917530272, 34.732326890595644], [-77.40362896347935, 34.732656176960695], [-77.4034665535618, 34.732704075143715], [-77.40324617299149, 34.732778556256584], [-77.4029130776909, 34.73332815920699], [-77.40254159456279, 34.73312305327195], [-77.40272899280303, 34.73356435883109], [-77.40217830112417, 34.73365097610137], [-77.40198321576992, 34.73370658395724], [-77.40170641605093, 34.73362478670456], [-77.4015528491814, 34.733596569146556], [-77.40145205038739, 34.7335863870065], [-77.40121843598706, 34.73359514204055], [-77.4009991870167, 34.73359420638331], [-77.40090088871116, 34.73363361927792], [-77.40045656062293, 34.73388778617432], [-77.40034000187718, 34.73401293658079], [-77.4002601651558, 34.73409865755124], [-77.40009204652377, 34.734211914071366], [-77.40003194735883, 34.734257519273925], [-77.39988630059696, 34.734247452618995], [-77.39976038462684, 34.734250027737694], [-77.39950438809862, 34.73414321184951], [-77.39947395065725, 34.734132105799844], [-77.39943470772104, 34.73412540341242], [-77.39900619170594, 34.733533653924674], [-77.39849276595454, 34.73362537831113], [-77.3983295750078, 34.73365574559063], [-77.39829662138933, 34.733664993154484], [-77.39826110202519, 34.73367896584201], [-77.3981075918205, 34.73378592658778], [-77.39771704839902, 34.734047791666434], [-77.39751590638939, 34.734250605055195], [-77.39687897185864, 34.734340148500586], [-77.39616280843171, 34.73462238198461], [-77.39612512663395, 34.73462421551859], [-77.3960788596439, 34.7346315137173], [-77.3960875139975, 34.73459604252297], [-77.39610928815998, 34.734578222001595], [-77.3961027274722, 34.734042219599985], [-77.39589148220686, 34.733816972747476], [-77.39601277872434, 34.73367210358565], [-77.39626625564603, 34.73354028117248], [-77.39634779441951, 34.73347159908844], [-77.39652535293197, 34.733243646948154], [-77.39670635545008, 34.733135094548956], [-77.39696310147968, 34.73298111581262], [-77.39722320179911, 34.73304832298979], [-77.39741838269286, 34.73297726772082], [-77.39784902636909, 34.732975678742626], [-77.39787543082241, 34.73297630785435], [-77.39788526415383, 34.73297643806958], [-77.3979310291695, 34.7329668747955], [-77.39855138314948, 34.73289054884068], [-77.3986945746776, 34.73281912822658], [-77.39886795373937, 34.7327729677449], [-77.39925106233463, 34.73268887021183], [-77.39958177677501, 34.73277322613265], [-77.40040765169766, 34.73282718871267], [-77.40048766294156, 34.73284700418294], [-77.40061014850626, 34.73295813453333], [-77.4007336149446, 34.732866429145076], [-77.40112024152222, 34.73287680780623], [-77.40146404544417, 34.73285776727947], [-77.40179272870657, 34.73276891139504], [-77.40186219266722, 34.732760496062085], [-77.40220845735628, 34.73282316494334], [-77.40228009855211, 34.73269552672983], [-77.40234015277113, 34.73231009814563], [-77.40215403559858, 34.732099197045294], [-77.40229203343145, 34.73121860368463], [-77.40229967536767, 34.73117768407109], [-77.40229239887812, 34.7311488543953], [-77.40227022423804, 34.7311213606224], [-77.40223805100672, 34.73113034418625], [-77.402207135641, 34.73114531551355], [-77.4013333483826, 34.73114761554346], [-77.40100155951696, 34.73107395556364], [-77.40041092510515, 34.73107615548902], [-77.40037519109187, 34.73107748374665], [-77.40036059142128, 34.731073144061284], [-77.4003474477985, 34.73106697254093], [-77.39976237702521, 34.73092482381164], [-77.39936726362228, 34.730925960247774], [-77.39911304756833, 34.73095285405723], [-77.39866470758926, 34.73102445611097], [-77.39852113765589, 34.73103899241936], [-77.39844438163989, 34.73104758791411], [-77.39821990184781, 34.731061170962796], [-77.39780075181281, 34.73105594245757], [-77.3976402702144, 34.73109521462882], [-77.39740573994317, 34.73114318518039], [-77.39710674386377, 34.731238081293284], [-77.39679503217576, 34.73120969237246], [-77.3958604895663, 34.731151976391985], [-77.39585126719575, 34.731145123881724], [-77.39581232061857, 34.73114489906725], [-77.39481741968551, 34.730969102281605], [-77.39461089006095, 34.73100007645954], [-77.39438209569026, 34.73100556018883], [-77.39428217301219, 34.731028049925655], [-77.39421840535942, 34.73094375986935], [-77.39405398263007, 34.73070928227133], [-77.39389835986563, 34.73047529691892], [-77.39377116455663, 34.73023753443171], [-77.39357622561977, 34.73014549429789], [-77.39337460705339, 34.73010633539637], [-77.39298537238761, 34.72997181034246], [-77.39261054801153, 34.72982863380213], [-77.39241975051108, 34.729711105665515], [-77.39221924690771, 34.72971360780798], [-77.39178132998994, 34.72970149059303], [-77.39171607203056, 34.72971176970795], [-77.39130223821864, 34.72971066536243], [-77.3911040670286, 34.72982582842343], [-77.39050874510053, 34.729909724312805], [-77.39028467707317, 34.72990535954954], [-77.38979038282974, 34.72993362898551], [-77.38963027584023, 34.729969805514344], [-77.38924988486093, 34.729890302270086], [-77.38917494623789, 34.72984473046479], [-77.38910566929819, 34.72986021650343], [-77.388809536275, 34.72981309159898], [-77.38859754333535, 34.729777577687834], [-77.38855580655397, 34.72976860246863], [-77.38849406162898, 34.72975897958111], [-77.38824975711786, 34.72971839873944], [-77.38800677707624, 34.72955977083605], [-77.38797830851718, 34.72954887979614], [-77.38795569420517, 34.72951431575791], [-77.38792298758746, 34.729422725591675], [-77.38784285437313, 34.72919524648168], [-77.38782225238668, 34.729146339287745], [-77.38762366150887, 34.72883896042954], [-77.38756191500414, 34.72877362931161], [-77.38733957454511, 34.728739548864766], [-77.38700603577645, 34.728671388747124], [-77.38694666482408, 34.72868411188702], [-77.38666393456394, 34.72878270238347], [-77.3866263055652, 34.72879873849953], [-77.38630456388567, 34.72893652896121], [-77.38627742187789, 34.728976543293264], [-77.38620188315714, 34.72904123389327], [-77.38597330589401, 34.72922757564821], [-77.38569763048758, 34.72928330753531], [-77.38558333426083, 34.729338176902395], [-77.38484787157734, 34.729493213202375], [-77.38478703464567, 34.72949779188861], [-77.38476112674938, 34.72949025080347], [-77.38462265341006, 34.729466290831375], [-77.3839560079698, 34.72967027588942], [-77.38355327937225, 34.72932992759516], [-77.38352037006823, 34.72915378487286], [-77.38353499670588, 34.72908565122513], [-77.38302277963753, 34.72846853757247], [-77.38289706800077, 34.728303212549406], [-77.38275305057012, 34.72813463758787], [-77.38265152926424, 34.72801746493211], [-77.38243774468353, 34.72781972797081], [-77.38180322527747, 34.7273611986048], [-77.38170286882983, 34.72723335510266], [-77.38162176435098, 34.72714642203866], [-77.38151398202622, 34.72717258930742], [-77.38138114008964, 34.727213470084905], [-77.38068373274884, 34.7273114580929], [-77.38044989488849, 34.72744671794938], [-77.38021844730828, 34.72756318669731], [-77.3800049606138, 34.7276981383411], [-77.37980289291326, 34.727779449131845], [-77.37967566054047, 34.72790798074311], [-77.37958284434046, 34.727982024375805], [-77.37943402136625, 34.72805685261716], [-77.3792968925475, 34.728036897051716], [-77.37889856788195, 34.728022111471034], [-77.37880528263877, 34.72801382891009], [-77.37840704647999, 34.728078271653516], [-77.37803766605796, 34.72827996666363], [-77.37774310545248, 34.72848923110662], [-77.37727184657197, 34.72887894409522], [-77.37708613133015, 34.72891159461989], [-77.37697753647583, 34.729027279943566], [-77.37659968340347, 34.72935957855734], [-77.3770430239486, 34.72966763004987], [-77.3774745809114, 34.729887643596065], [-77.37804987874253, 34.73052101649135], [-77.37677270149167, 34.73059933710334], [-77.37627366655191, 34.73057679972349], [-77.37549707797797, 34.730575662960405], [-77.37455006017896, 34.730751366434006], [-77.37411624198506, 34.73091457692798], [-77.37377642673684, 34.7309829073086], [-77.37348899959717, 34.73116133901429], [-77.37340461578785, 34.731157096315265], [-77.37336516096802, 34.73111798844238], [-77.3732965517173, 34.73073565136715], [-77.3729347090276, 34.730566625641515], [-77.3726688585879, 34.730668070926555], [-77.37211160248587, 34.73067915923425], [-77.37169878335429, 34.73057818725385], [-77.37164436261294, 34.730593651474244], [-77.37141614780046, 34.73062642126757], [-77.37077605653673, 34.730565762406485], [-77.37039486027759, 34.730479919844115], [-77.36987911039478, 34.7305935525206], [-77.36963809334924, 34.73062743742955], [-77.36918482801087, 34.7305225167389], [-77.36879759818592, 34.73063727695044], [-77.36800750302388, 34.73045777382], [-77.36800638482968, 34.73045760884815], [-77.36800602004114, 34.73045751698288], [-77.36800518529897, 34.7304573806438], [-77.3680040564368, 34.73045824733253], [-77.36703043706375, 34.73087027695954], [-77.36669374067344, 34.73085233042349], [-77.36632995576352, 34.73095908938077], [-77.36605890228046, 34.73097633280592], [-77.36583806366025, 34.7310904078934], [-77.36560831544416, 34.731120118463906], [-77.36540771608563, 34.73115664150865], [-77.36515931299232, 34.7311273364911], [-77.36509822883083, 34.731118360826265], [-77.36483669516147, 34.731060783546695], [-77.36433299928564, 34.73103354898045], [-77.36424678234889, 34.73103000472332], [-77.36410270126275, 34.731095874188135], [-77.36318471309234, 34.731292716454355], [-77.36290583061387, 34.73152343803148], [-77.3620033486001, 34.73225727992185], [-77.36167693343168, 34.73250979445735], [-77.3614538362881, 34.732820133377245], [-77.36129098616003, 34.732960153791154], [-77.36088961572166, 34.73308872980854], [-77.3602727882892, 34.73346970371027], [-77.36002795422928, 34.733601812607404], [-77.35987486933189, 34.73434871463434], [-77.35989095877531, 34.734496907273716], [-77.36011891419503, 34.734949417230645], [-77.3601226682597, 34.73496210719091], [-77.35974375724903, 34.73549189138015], [-77.35957408215941, 34.73575253986969], [-77.35925031774829, 34.73586312571457], [-77.35871963670368, 34.73627203968907], [-77.35847879332067, 34.73645761777856], [-77.35829618322123, 34.736665420904764], [-77.35791012758705, 34.736831349501195], [-77.35779478611285, 34.73697795270126], [-77.35769018048624, 34.737110909979506], [-77.35752219917357, 34.73712591155384], [-77.35735629865778, 34.737074723721726], [-77.35713323287371, 34.73696643749556], [-77.35691453681679, 34.73685510835752], [-77.35687793717537, 34.736654279467245], [-77.35661894597564, 34.7366750727675], [-77.3561290053189, 34.73652993336019], [-77.35606809533618, 34.73650961820531], [-77.3560480430215, 34.73650426253518], [-77.35600994876171, 34.73649190770657], [-77.35552064405088, 34.7363324623561], [-77.35495509514361, 34.73663671080903], [-77.3548709489245, 34.7366918745017], [-77.3543882818027, 34.73720189699387], [-77.3538172346649, 34.73807323948408], [-77.35366144077912, 34.738173298022716], [-77.3531585581737, 34.73827898041438], [-77.3530449571343, 34.73826538500539], [-77.35299065961917, 34.73836849606292], [-77.35309470046818, 34.73838186338332], [-77.35311896035569, 34.73841530708983], [-77.35360365129017, 34.738384579060344], [-77.35370245531907, 34.738468410736694], [-77.35447273526015, 34.739139836330565], [-77.3544830623493, 34.739284953651854], [-77.35466858652298, 34.73926617843323], [-77.3549420431883, 34.73956280112008], [-77.35506721847483, 34.739624030530535], [-77.3550150296968, 34.74001066698503], [-77.35498790264036, 34.74004388958859], [-77.35486268202776, 34.74051393653904], [-77.35484269681199, 34.74058515791896], [-77.35489723903272, 34.74103109914671], [-77.355233951972, 34.74144385456014], [-77.35538179822312, 34.741747318016024], [-77.3557279678001, 34.74189183469288], [-77.3559592794671, 34.74209154194577], [-77.35600423964001, 34.74234129575571], [-77.35578287077429, 34.742605534308176], [-77.3557702348747, 34.742631173095276], [-77.35556286582157, 34.74288926609081], [-77.35528153547885, 34.74340129424021], [-77.3552770992535, 34.743415875386425], [-77.35528516558676, 34.743441102700025], [-77.3552480900563, 34.74345732775626], [-77.35468840862193, 34.74398406215043], [-77.35455938230493, 34.74407464009718], [-77.35436527843368, 34.74443459460544], [-77.35398851900665, 34.74505488968129], [-77.35409882498719, 34.74535192241152], [-77.35421460589674, 34.74579879210444], [-77.35417925927483, 34.746003475068086], [-77.35423816025681, 34.74634301919107], [-77.35425208226766, 34.74655838623146], [-77.35433545684523, 34.74695680136058], [-77.35431092078922, 34.747301549274006], [-77.35447959339322, 34.74742440221271], [-77.35438586416936, 34.74775031632103], [-77.3539614723943, 34.74788684522761], [-77.35387180758275, 34.74799520297719], [-77.35389550969452, 34.748113927154066], [-77.3542238596264, 34.748156930651625], [-77.35444369015258, 34.74828883650734], [-77.35453885735193, 34.74870307450415], [-77.3547158243266, 34.74885412588252], [-77.3553912067196, 34.74915111352785], [-77.35580077058144, 34.74930933296543], [-77.3559363497697, 34.74933651089272], [-77.35608798856781, 34.74964055318105], [-77.3562632751104, 34.74974202887733], [-77.35637660035482, 34.74988304618861], [-77.35646325273726, 34.75007642648611], [-77.35621648090861, 34.75043431649516], [-77.35609289244645, 34.750538775324024], [-77.35582061733514, 34.75065201969838], [-77.35551128489958, 34.750799918077334], [-77.35509992921581, 34.750935714843614], [-77.35505044624603, 34.75146329080572], [-77.3551191487853, 34.7517230654572], [-77.35562214298628, 34.7524804836739], [-77.3556780578073, 34.752557438205415], [-77.35571860814545, 34.752615554059346], [-77.35653248654111, 34.75347094346659], [-77.35653520824583, 34.75347505049792], [-77.35653675510613, 34.75347802324649], [-77.35654324551435, 34.753490510388], [-77.35677406951831, 34.75393283211026], [-77.35671265688316, 34.75412700611417], [-77.3567776726801, 34.75441972004238], [-77.35698934773714, 34.75470263571723], [-77.35729547388223, 34.754968797187225], [-77.35750565718459, 34.75509397056332], [-77.3577547851852, 34.75526036446356], [-77.35779991775966, 34.7552944562888], [-77.35801562737439, 34.75549018250674], [-77.3579840498517, 34.755716277113564], [-77.35810032823574, 34.75581926154733], [-77.35816269520201, 34.75610787771818], [-77.35816500159497, 34.75616374381633], [-77.35816557455081, 34.756178743608224], [-77.35822757323045, 34.75625864642542], [-77.3583294034746, 34.756825745965514], [-77.3585583413216, 34.75680815700996], [-77.35865533382349, 34.7569692904494], [-77.35880232513186, 34.75699937358183], [-77.35885900676743, 34.757058321886916], [-77.35893752197589, 34.757146477679655], [-77.35900199370418, 34.75726357663106], [-77.35900390174626, 34.75728212348714], [-77.35901385203637, 34.75730234369041], [-77.3590415515508, 34.757460692388534], [-77.3590545326024, 34.75751886521514], [-77.3590455602618, 34.75785183580092], [-77.35909413448667, 34.75800081353135], [-77.35916980295741, 34.758150506254374], [-77.35921533147197, 34.75840979192008], [-77.35922592218132, 34.7584701072554], [-77.35921834410765, 34.7585074004714], [-77.35925298173386, 34.75854156080878], [-77.35943000624643, 34.75892947539883], [-77.3593345072733, 34.75920651267154], [-77.35963481959985, 34.75928945375034], [-77.359872016763, 34.75935618063251], [-77.36009693266406, 34.75940857270197], [-77.3601846477182, 34.75945895821007], [-77.36037385481379, 34.75943573387944], [-77.36080349865564, 34.75939080565254], [-77.3614521509693, 34.75915468364752], [-77.36189238750548, 34.75956618605316], [-77.36193314695014, 34.75962655291862], [-77.36201777466596, 34.75966365689089], [-77.36249786502859, 34.76022355279958], [-77.3625145735918, 34.760476391205614], [-77.36234088975823, 34.76081204387816], [-77.3623218620128, 34.7609099242891], [-77.36222318184994, 34.761230417720725], [-77.36222095115548, 34.76132929062451], [-77.36213112802196, 34.76134669417282], [-77.36210175181277, 34.76184679649459], [-77.36203591998499, 34.762200883810834], [-77.36193858192199, 34.762529300758395], [-77.36146719510225, 34.762743145620355], [-77.36135536233692, 34.76307281346193], [-77.36124447099382, 34.76342287696791], [-77.36133765517556, 34.7638162632627], [-77.361589351155, 34.7641718043142], [-77.36182113021988, 34.76443012359047], [-77.36187460546049, 34.764563432767744], [-77.36185744026449, 34.76495270178802], [-77.36177554378186, 34.7650879881071], [-77.36179373557312, 34.765287544526466], [-77.36175982644824, 34.765641715421694], [-77.36186416437202, 34.76584240781157], [-77.36190659456959, 34.766220961401636], [-77.36186716411838, 34.766238511946995], [-77.36191356345871, 34.766320803605254], [-77.36193243023969, 34.76670649354563], [-77.36216612407529, 34.76739429271036], [-77.36213690221052, 34.767451373332015], [-77.3620904522904, 34.76753321523876], [-77.3621557433561, 34.767695903438806], [-77.36230547654677, 34.76762224201545], [-77.36269814472199, 34.76803731312529], [-77.3629788976303, 34.76797501187865], [-77.36305363611791, 34.76802475094354], [-77.36315125260172, 34.7680859929278], [-77.36327725527701, 34.768252332967094], [-77.3633354750458, 34.76835367551969], [-77.36377136717391, 34.768522494938125], [-77.36382759066613, 34.76856644388748], [-77.36385580307675, 34.768583315590064], [-77.36427751395468, 34.76875976254542], [-77.36429439204937, 34.769168211908536], [-77.36452639746102, 34.769008717755014], [-77.36462408778318, 34.769137514000924], [-77.36466264759665, 34.76913993180008], [-77.36463055893742, 34.76916292497971], [-77.36463257495713, 34.769182387031215], [-77.3642746624908, 34.76931798561149], [-77.36433496114915, 34.769444348589445], [-77.3641761278034, 34.7695754453961], [-77.3638332770056, 34.769485206038794], [-77.36348547826006, 34.769552403313824], [-77.36303637906333, 34.76908173911715], [-77.36285042771537, 34.76900185557725], [-77.36244343245755, 34.76891434128541], [-77.36223020638906, 34.768996695106246], [-77.36207122287487, 34.76887997974855], [-77.36184172102307, 34.76877712597344], [-77.36174584963737, 34.76871257679513], [-77.36170554656022, 34.768585953630556], [-77.36146340448293, 34.768491180624125], [-77.36132500192127, 34.76834728308811], [-77.3611843219645, 34.7683566795907], [-77.36083971108972, 34.768219746135365], [-77.36073462077935, 34.768171071563245], [-77.3606065489891, 34.76821274024538], [-77.36054182601745, 34.768177887031015], [-77.36045934816964, 34.768014392120875], [-77.36041623161258, 34.76796760012337], [-77.36041402210645, 34.76778483889822], [-77.36041079828365, 34.76751811547788], [-77.36050448911632, 34.767439259352244], [-77.36050533872357, 34.76730057562222], [-77.3605678819205, 34.766902214863286], [-77.36059696002653, 34.76636993293589], [-77.3600733499249, 34.766030132362644], [-77.36005950856074, 34.76566645133827], [-77.36000384948676, 34.76548990016706], [-77.36006395917117, 34.76495318043479], [-77.35982899071846, 34.76480878714617], [-77.35983224538656, 34.76472287936362], [-77.3598778508707, 34.76430785027006], [-77.3598677182646, 34.764230624256584], [-77.35970223418084, 34.76394645804368], [-77.35974645761932, 34.76375988527195], [-77.3596584517196, 34.76368812549757], [-77.35955419681983, 34.76369225140583], [-77.35950368365992, 34.76354952012491], [-77.35946102764684, 34.763445731916974], [-77.35945776181761, 34.76341088418813], [-77.35944118217952, 34.7633144075663], [-77.35944989668248, 34.76325717751319], [-77.35939778971655, 34.763199443881845], [-77.35936873981827, 34.76312247931119], [-77.3593106054386, 34.76296148132022], [-77.35946857820112, 34.7628232613031], [-77.35926037611263, 34.762641249746856], [-77.35925262445336, 34.762423323215216], [-77.35921746183497, 34.76237034849037], [-77.35902709880948, 34.76220254491188], [-77.35893576657654, 34.76199136160844], [-77.35895460499773, 34.76191904710395], [-77.35897580144969, 34.76184776899153], [-77.35891418547888, 34.76177057953259], [-77.35889102376503, 34.76144039009207], [-77.35901156002035, 34.76103181011656], [-77.3587310655283, 34.76097496310202], [-77.35867027500893, 34.76090006530947], [-77.35856834783866, 34.760898719705786], [-77.35850709801728, 34.76076201532553], [-77.35853383076079, 34.760610777515296], [-77.35851500087438, 34.76051723795916], [-77.35816939134637, 34.76020976335946], [-77.35812936874464, 34.760133396256734], [-77.35810462695457, 34.760086185283825], [-77.35799975732566, 34.759886081174976], [-77.35799788859954, 34.759840292865874], [-77.35797667070092, 34.75984202911645], [-77.3579071478644, 34.759804067821094], [-77.35772271692056, 34.75968511202447], [-77.35769716141974, 34.75967735634], [-77.35722594067697, 34.75933296347466], [-77.35705690329894, 34.759381326405105], [-77.35672130514746, 34.75930129392418], [-77.3561669015639, 34.758854145274796], [-77.35595551492688, 34.75865150232508], [-77.35530689029484, 34.75769021758419], [-77.35522214468544, 34.75755752374404], [-77.35516643913029, 34.756104624279956], [-77.35493093049759, 34.75564795569946], [-77.35434025333976, 34.755163191831116], [-77.35442413091651, 34.754742750887004], [-77.35392262031742, 34.7542068257667], [-77.35387141684927, 34.75394692981821], [-77.35390511266641, 34.75383921844817], [-77.35389064816171, 34.75369397552569], [-77.35410138929845, 34.752981641269926], [-77.35372981286851, 34.75288851250047], [-77.35371257882232, 34.75286779171499], [-77.35373241277614, 34.752477000891176], [-77.35334043564269, 34.75208679625461], [-77.35324812672292, 34.75206104562584], [-77.35300977413455, 34.752012563195755], [-77.35283266725976, 34.75159215288153], [-77.35228296968663, 34.75160292182114], [-77.35158261178215, 34.75164960786463], [-77.35105709554387, 34.75169874964277], [-77.34994792090217, 34.75243271398598], [-77.34969539508097, 34.75253092434491], [-77.34958924043868, 34.75262740544293], [-77.34925957753907, 34.752763261060124], [-77.3487239734458, 34.75294694708438], [-77.34858720041852, 34.753280328962596], [-77.3485241950541, 34.753602810716885], [-77.34866032197529, 34.75376276900694], [-77.3487240612262, 34.753963465564425], [-77.34872387507092, 34.75406279499325], [-77.34869324157651, 34.754184261998844], [-77.34868859087071, 34.754192139908916], [-77.34863828916806, 34.75422652036821], [-77.34850088378451, 34.754311487879605], [-77.3484552354082, 34.754343340431625], [-77.34824811399241, 34.75444022720839], [-77.34788040795645, 34.754612230176335], [-77.34782136903758, 34.75458842993752], [-77.347709211598, 34.754601127533476], [-77.34765965860811, 34.75469617430732], [-77.34712954699464, 34.75490770576625], [-77.3467087113795, 34.75499140699217], [-77.34659929730825, 34.75532901390108], [-77.34647695442175, 34.75542439003098], [-77.34633582791004, 34.7556088445626], [-77.34632332883763, 34.755620619040705], [-77.34615327116806, 34.75577594256111], [-77.3459626708621, 34.755889810162174], [-77.34594310323841, 34.75589831116209], [-77.34567647308758, 34.755912788822286], [-77.34564369641416, 34.755897891079876], [-77.3451757345032, 34.75590364369614], [-77.34505468005187, 34.755863335154714], [-77.34493674541274, 34.75597486197392], [-77.34487836469884, 34.756052449096906], [-77.34464112546846, 34.75631471832888], [-77.34436473264753, 34.75674472903001], [-77.34437106345196, 34.75709678292955], [-77.34402645871283, 34.75734001120398], [-77.34393317923346, 34.75715684032661], [-77.34382420876081, 34.7569428568009], [-77.3436058941117, 34.75672582145166], [-77.3435827095407, 34.75671753130171], [-77.34335812689207, 34.756512878116446], [-77.34271011613967, 34.75655555084189], [-77.34245872279311, 34.75655047033083], [-77.34217327666485, 34.7566355551162], [-77.34182200198815, 34.756680012581796], [-77.34156428104987, 34.75681708222964], [-77.34145181170288, 34.75679610430522], [-77.3412488658627, 34.756590788667786], [-77.34123409020893, 34.75656933691861], [-77.34122374171046, 34.75655366263869], [-77.34114172522355, 34.75644273368808], [-77.34110906021125, 34.75587713604722], [-77.34084961558497, 34.75590334171679], [-77.34076515890702, 34.75574738732878], [-77.34060450133461, 34.7557161243781], [-77.34046531222664, 34.75568291422643], [-77.34041045934121, 34.755625939652305], [-77.34034493830623, 34.755578617126936], [-77.33986668297854, 34.75531312584044], [-77.33982256142548, 34.75528962670238], [-77.33932827014038, 34.75495436057282], [-77.33916840254693, 34.754885996179766], [-77.33868283389133, 34.75458926994979], [-77.33831314835794, 34.75432482616257], [-77.33780672860837, 34.754474542539064], [-77.33765535917053, 34.75452685222966], [-77.33757110835276, 34.75455596685291], [-77.3368874767556, 34.75510755771168], [-77.33629466710283, 34.75484873573074], [-77.3349869575292, 34.754819759417614], [-77.33458133592495, 34.754797538012255], [-77.33410706018165, 34.75495396783853], [-77.33391373134049, 34.75503325448451], [-77.3337286965156, 34.75498160720739], [-77.3333689465252, 34.75484654520302], [-77.33314631885705, 34.75473681063724], [-77.33300948454023, 34.75422118514524], [-77.3323250811986, 34.75431596189465], [-77.33166242061075, 34.753965449712325], [-77.33175878410326, 34.753606126404804], [-77.33131959432023, 34.75365343303885], [-77.33073273532369, 34.753118122949566], [-77.33088558080736, 34.752700871404166], [-77.33037710528026, 34.75277430899493], [-77.33023162325692, 34.75241534074176], [-77.33000525983397, 34.75224308169056], [-77.32997744438333, 34.75221661088915], [-77.3299812420073, 34.752075549512064], [-77.32995793536469, 34.75183748136117], [-77.33000959440487, 34.75168603350778], [-77.3305385819445, 34.75119525542193], [-77.33039479011566, 34.75075058363656], [-77.33090458590611, 34.750960338016775], [-77.33099474854288, 34.75104043533423], [-77.33118153013956, 34.75110714052481], [-77.33162028568003, 34.75134780953216], [-77.3319867076853, 34.75135918738349], [-77.33226757326184, 34.75144566303297], [-77.33232512723023, 34.75159421628709], [-77.33275672664422, 34.75186598815343], [-77.33288447719573, 34.751952472921786], [-77.33300947257335, 34.75196220575352], [-77.33335964864347, 34.752101095780255], [-77.33367437974252, 34.75213348474117], [-77.33366716541074, 34.75222856839776], [-77.33405536608704, 34.752485715904214], [-77.33454600861218, 34.752251662163445], [-77.33485994694422, 34.752153759208944], [-77.33498686835266, 34.75191272699152], [-77.33512534495866, 34.75154131308461], [-77.3348911820364, 34.751198005513984], [-77.33500255922334, 34.7510033929867], [-77.33509638097144, 34.7509655528938], [-77.33522086710845, 34.75094453776938], [-77.33563176060089, 34.75118452589082], [-77.33589882911849, 34.751211593082786], [-77.33622607338808, 34.7512007915781], [-77.33628016983118, 34.75131255443667], [-77.3364961205348, 34.75130217464739], [-77.336541909311, 34.7513471180155], [-77.3366507986133, 34.75142174995348], [-77.33673942072309, 34.751495564796826], [-77.33699200471897, 34.75148946798792], [-77.33705583840509, 34.751504488006034], [-77.3372803872995, 34.751695338885945], [-77.33730121653393, 34.75170998079847], [-77.33764707153502, 34.75168297216307], [-77.33784453955823, 34.7518153594185], [-77.33799065679632, 34.751968208876995], [-77.33805856119014, 34.75211392735057], [-77.33824222251732, 34.75250805152628], [-77.33827665484384, 34.75253662649457], [-77.3387066832637, 34.75297104269452], [-77.33880266781073, 34.752920508003164], [-77.3401471444459, 34.75213722372486], [-77.34035359052378, 34.75191453970549], [-77.34085464705637, 34.751730527292324], [-77.34140289929343, 34.75156755850201], [-77.34151375199161, 34.75155739217803], [-77.34159093338937, 34.7515649705023], [-77.34179088770182, 34.75160213635445], [-77.3420717135995, 34.75169870695567], [-77.34226634549319, 34.75169422431614], [-77.3423741583791, 34.75175106948805], [-77.3424117417329, 34.751760678995986], [-77.34259796419474, 34.75194913528617], [-77.34260192059627, 34.75197010677615], [-77.34261035447777, 34.751977127970534], [-77.34260705184585, 34.75236033007468], [-77.34271880905698, 34.752449628463374], [-77.34265040906365, 34.75311532732294], [-77.3434775740878, 34.75304490778676], [-77.34379723279923, 34.753021852510486], [-77.3444680130466, 34.753006439017476], [-77.34476639523663, 34.75273266605224], [-77.34529294368068, 34.75246065318237], [-77.34549319702776, 34.75229300820534], [-77.34547922820528, 34.752516835886546], [-77.34596821191863, 34.75271977884444], [-77.34650942437939, 34.75226173804783], [-77.34662666641088, 34.75191361355893], [-77.34680763347207, 34.751495317699465], [-77.34688710267419, 34.75139050850047], [-77.34691115670643, 34.75134105882463], [-77.3470096832019, 34.75113000344608], [-77.34703552483504, 34.7511082581526], [-77.34725583119305, 34.751096235422175], [-77.34732804167403, 34.751095124422406], [-77.34733747731855, 34.75109985419545], [-77.34735990690118, 34.751100316082514], [-77.34761568423448, 34.751173169617026], [-77.34796130209946, 34.75099479714126], [-77.3479730147838, 34.75099331971931], [-77.34803999146553, 34.75098865643601], [-77.3482564561185, 34.75102947679996], [-77.34847453646081, 34.75092903888112], [-77.34858156555465, 34.75090599126505], [-77.34861687174019, 34.750892368569154], [-77.34887751684934, 34.750953611870806], [-77.34919971336323, 34.750815308724015], [-77.34938076886554, 34.75056101271429], [-77.34964332695736, 34.75037953615382], [-77.34988461693501, 34.750145499776224], [-77.34993045025395, 34.74999821254557], [-77.35004853125955, 34.749791359867146], [-77.35009075117925, 34.749689841920386], [-77.35027984308671, 34.749462891155275], [-77.3503968743276, 34.7493227594768], [-77.350587470921, 34.748933299697455], [-77.3507767137467, 34.74844294319128], [-77.35079179326341, 34.748417882571125], [-77.35079808428817, 34.748401656412966], [-77.35093167760942, 34.74792956508831], [-77.35092379266591, 34.74791238895126], [-77.3508103261839, 34.747628695836724], [-77.3505596441466, 34.74747497688036], [-77.35054611994258, 34.747437697873465], [-77.35050181285722, 34.74742465454425], [-77.35036909185288, 34.747257434024455], [-77.35036531141223, 34.747182558805], [-77.35020091246278, 34.7470368207002], [-77.35005987216265, 34.74688408979737], [-77.34990584811604, 34.74674753453804], [-77.34969508338503, 34.74661884772847], [-77.34957940192263, 34.746476161886456], [-77.3495404530874, 34.74624016541083], [-77.34904702803456, 34.74624689625924], [-77.34899948831927, 34.74622691068122], [-77.34872232404643, 34.746080986293684], [-77.34867003234537, 34.7458781980003], [-77.34877775891897, 34.74576995368095], [-77.34893263814834, 34.74547257243434], [-77.34901623810951, 34.74524985308389], [-77.34897123467421, 34.74510117392099], [-77.34892629601126, 34.74482868448816], [-77.34901937678774, 34.74476204296472], [-77.34922254172011, 34.744452864514834], [-77.34960966574826, 34.74431030774305], [-77.3504803836581, 34.74358680818966], [-77.34993840673067, 34.743178749901816], [-77.3499060001244, 34.742805476385534], [-77.3498009726926, 34.7427052771758], [-77.34976078532009, 34.74237664162651], [-77.34993170758469, 34.74199731642016], [-77.35004255271716, 34.741697367161], [-77.34999210593149, 34.74130504793], [-77.34997509290662, 34.74117556121169], [-77.35017404052753, 34.740704563196104], [-77.34999105588216, 34.74037489540477], [-77.35008809263195, 34.740228978296564], [-77.350121164423, 34.740142858835675], [-77.35015578083033, 34.739732309402264], [-77.35016330820656, 34.73945402059016], [-77.34987017646213, 34.7392902347433], [-77.34986675058889, 34.739284591226514], [-77.34986029081392, 34.739273470017295], [-77.3498319464907, 34.73892050115556], [-77.34973774740175, 34.73881491276704], [-77.3494641362161, 34.738626261761624], [-77.34937237844532, 34.73848559150522], [-77.34899138073838, 34.738191954618664], [-77.3488437927758, 34.73810376839161], [-77.34842643133283, 34.73807500584543], [-77.34837183851084, 34.738027579117706], [-77.34813237314313, 34.73786257143213], [-77.34796031472536, 34.737617874089665], [-77.3479448321534, 34.737598789472365], [-77.34790851003987, 34.73754419816177], [-77.34810232914096, 34.737129054336094], [-77.34812397759966, 34.73709682751812], [-77.34862644726687, 34.73738652964933], [-77.34909436691127, 34.73712266080798], [-77.34932858693084, 34.73703122339417], [-77.34942514648671, 34.73697313227777], [-77.34946589170309, 34.736902697158484], [-77.35011973505262, 34.73636949141887], [-77.35015047806615, 34.73633924140613], [-77.3501635943451, 34.73631957461138], [-77.35016797096218, 34.73629688480487], [-77.3502840187779, 34.736138425735206], [-77.35040902048475, 34.736042204496684], [-77.35048168448064, 34.735994425052425], [-77.3505442860213, 34.73577995148514], [-77.35061721613376, 34.73568779488286], [-77.35073816833594, 34.73558340647742], [-77.3507606306876, 34.73550657138723], [-77.35085427095456, 34.73538716428198], [-77.35086570349523, 34.73537727165039], [-77.3508794338327, 34.73536842221016], [-77.35104994118973, 34.73522899690478], [-77.35105811558898, 34.73522861797976], [-77.35109466733921, 34.73521703897508], [-77.3513770150921, 34.73513389951492], [-77.35166325626048, 34.73512650978127], [-77.35167965642157, 34.735122911988896], [-77.35169235934052, 34.73512433697486], [-77.35231394695438, 34.73500106588712], [-77.352383895139, 34.73498659714876], [-77.35277424211799, 34.734834316119304], [-77.35305378536513, 34.734515820729456], [-77.35308596804899, 34.7344722493502], [-77.3531070121812, 34.734453469541855], [-77.35334062136457, 34.73405961897926], [-77.35346278887857, 34.73391725391714], [-77.35355504405489, 34.73369150381177], [-77.35361694982565, 34.73340871028827], [-77.35381650272342, 34.733204750543806], [-77.3539138554352, 34.73288057461848], [-77.35401373479219, 34.73255024106811], [-77.35398372638211, 34.7323836002366], [-77.35409572800717, 34.73217565641441], [-77.35423793063418, 34.73186132445248], [-77.35433397356243, 34.73174849868413], [-77.35445602015815, 34.731421589213255], [-77.35449704051491, 34.73133837381895], [-77.3544382409301, 34.731202639768654], [-77.3543888679362, 34.73107904092556], [-77.35417002487985, 34.730895880199704], [-77.35416624832914, 34.73085609126253], [-77.3541189068709, 34.73084856751147], [-77.3536802751127, 34.73047572398213], [-77.35369826526053, 34.73042769029777], [-77.35367668330815, 34.730309232761414], [-77.35337814729507, 34.730263397123636], [-77.35314024619666, 34.730094302796694], [-77.35311829805411, 34.73008543797888], [-77.35307112627119, 34.730071955011475], [-77.35278383122812, 34.72994853142185], [-77.35280758825509, 34.72975786979464], [-77.3529817602375, 34.729596838942925], [-77.35320804283026, 34.729227992254565], [-77.35339113753236, 34.72905326475917], [-77.35341043211251, 34.72901551105335], [-77.353510348372, 34.728820002365275], [-77.35353119737779, 34.728790348268575], [-77.35353194147538, 34.72878172093107], [-77.35366423213688, 34.72860213986712], [-77.3537681610317, 34.728514129546795], [-77.35395463483482, 34.72832121396766], [-77.35404067180767, 34.728297432319266], [-77.35424803073049, 34.7280337307492], [-77.35433450964842, 34.72794900345923], [-77.35438088386273, 34.727884514579955], [-77.35453552797624, 34.72792140849205], [-77.35476606617853, 34.72802940606287], [-77.35493312800054, 34.728044970466655], [-77.35516459368264, 34.728117021346065], [-77.35519637587376, 34.72816953212238], [-77.35526659849504, 34.728107147703255], [-77.35541709684335, 34.727922764295414], [-77.35545726827159, 34.72779487255175], [-77.35559039264393, 34.727395231042124], [-77.35568418971103, 34.727276336094626], [-77.35548723826162, 34.727080381478544], [-77.35524064519745, 34.726986055005234], [-77.35511101747274, 34.7269756096057], [-77.35514601305519, 34.72686283527256], [-77.3549273607037, 34.72672269413826], [-77.35493457542339, 34.72653649923976], [-77.35492031022041, 34.726406436725725], [-77.35508983866958, 34.72620348559742], [-77.35514938130585, 34.726088588288185], [-77.35521474021247, 34.726107394296534], [-77.35521931025508, 34.726150547557815], [-77.35523996345711, 34.726362554135505], [-77.35513690871308, 34.72656148215582], [-77.35530696352289, 34.726757689033846], [-77.35532079172759, 34.72681422418861], [-77.35538655947857, 34.72682981241826], [-77.35553774598995, 34.72704152411963], [-77.35584916109886, 34.72695271669316], [-77.35594857345214, 34.72699634771486], [-77.3560106330709, 34.727071924728726], [-77.35608342591225, 34.72717707414954], [-77.35614989283434, 34.72721240078255], [-77.3561928694339, 34.72732593473434], [-77.35619315526131, 34.72765161745245], [-77.35594192976905, 34.72772833546734], [-77.35617605395811, 34.72773308488384], [-77.35622481825503, 34.72772125222819], [-77.35633339205935, 34.72777586623707], [-77.35649923975294, 34.72787865813616], [-77.35654622124967, 34.727889064698246], [-77.35676529125521, 34.72792224281823], [-77.35697853209533, 34.7279041304635], [-77.35716358513119, 34.72787318066189], [-77.35742667182082, 34.72770686151334], [-77.35760364062921, 34.727624839131366], [-77.35778104885864, 34.727475832759], [-77.35797551331888, 34.727316091639494], [-77.35804768463245, 34.72708156393723], [-77.35801983182334, 34.726955661664434], [-77.35812216227565, 34.72680780412845], [-77.3581247390949, 34.72669756489643], [-77.35816198695893, 34.72659940266045], [-77.35821276634434, 34.72644178518508], [-77.35844809007918, 34.72625151755761], [-77.358572688555, 34.72628341495661], [-77.35873754790238, 34.72628580039656], [-77.35892815880221, 34.7263435539668], [-77.35897870488708, 34.72636525120977], [-77.3590082766998, 34.726384586682144], [-77.35908010722844, 34.72638008932262], [-77.35959447294752, 34.72642807707405], [-77.3597994618, 34.72637919935045], [-77.36025730145582, 34.72616994132516], [-77.36026989844781, 34.726164239172086], [-77.36027649414034, 34.72616362305919], [-77.36030942156948, 34.7261538784862], [-77.3609587613039, 34.725854097666016], [-77.3611536624633, 34.725664346681434], [-77.36124337565396, 34.72553823124924], [-77.36139523626338, 34.72538198041492], [-77.361501980805, 34.72533474096794], [-77.36172509656805, 34.72527708091679], [-77.36206487329709, 34.725195232445394], [-77.36242064191329, 34.724943868911545], [-77.36292117093902, 34.72490870979028], [-77.3630313381903, 34.72490291526549], [-77.36315364119858, 34.7248834214735], [-77.36333724104406, 34.72498279352038], [-77.36337389079561, 34.725078541038684], [-77.36338788476868, 34.72524369551334], [-77.36346062490354, 34.72528209067515], [-77.36350805410954, 34.725323491743445], [-77.36369743741933, 34.72544487125556], [-77.36371828575334, 34.7254780655809], [-77.36390960662533, 34.725659422532246], [-77.36392796871228, 34.725710958383395], [-77.36399617607374, 34.72570479041241], [-77.36408375233324, 34.725707399222564], [-77.36456668184431, 34.72580229686288], [-77.36481101215747, 34.72581995287952], [-77.36516546672613, 34.725802383270775], [-77.36554529646811, 34.72572579791234], [-77.36584239634472, 34.72553324837057], [-77.36596778860277, 34.72546190360929], [-77.36607534513395, 34.7253619225477], [-77.36622119818267, 34.72525970539864], [-77.36641646962929, 34.72522120902309], [-77.36653770731156, 34.72520076602235], [-77.3667273365918, 34.72513382107647], [-77.36698449370463, 34.7250862336858], [-77.36718423901763, 34.725036322143396], [-77.36726734592926, 34.72511251854735], [-77.3675455839544, 34.72515993757202], [-77.3676881576855, 34.72518294074842], [-77.36774206981146, 34.72517747872008], [-77.36781326415706, 34.725182232663656], [-77.36823587956877, 34.72515569846917], [-77.36834829417003, 34.72515189766542], [-77.36844142292483, 34.725100521393074], [-77.36893417386763, 34.725012579454926], [-77.36899075886302, 34.72500144214595], [-77.36904338729113, 34.72499560526038], [-77.3695401350036, 34.724940511184634], [-77.36959862955504, 34.724970175143085], [-77.36967821063587, 34.724919793790654], [-77.3698471127595, 34.72484371102439], [-77.37014518525939, 34.72469530260161], [-77.37034361454681, 34.72446643105488], [-77.3704197327917, 34.72465785227874], [-77.37083578671852, 34.724833827215576], [-77.37103542304172, 34.724972549682406], [-77.37137422767987, 34.725041799365314], [-77.37142628784567, 34.725066008336285], [-77.37151532605466, 34.72510186553015], [-77.37167942164719, 34.72526546165832], [-77.37191876061503, 34.7252287820788], [-77.37211964511664, 34.72527737501311], [-77.37221404888953, 34.72531602934809], [-77.37234796884006, 34.725329277701725], [-77.3725173133529, 34.72537578988489], [-77.37262569454316, 34.725356752168025], [-77.37275855435365, 34.72531356276433], [-77.37299140853325, 34.72520649712776], [-77.37325605862199, 34.72503966326695], [-77.37343303748166, 34.72499048521451], [-77.37373670282368, 34.72492867849535], [-77.37389154268891, 34.72459179564818], [-77.37396073377323, 34.72454659784964], [-77.3740620490929, 34.72447175759561], [-77.37416243256676, 34.72440702757921], [-77.37429527427835, 34.724345341216804], [-77.37447916340096, 34.72423830681514], [-77.37462122826406, 34.72413003682948], [-77.37469835107191, 34.72403543865252], [-77.37486867757885, 34.72390160942029], [-77.37491760329631, 34.723866336529944], [-77.37494698972404, 34.72384288033971], [-77.37512679166585, 34.72372532450624], [-77.3752387291465, 34.72364313637547], [-77.37561399296696, 34.7235171801978], [-77.37561828783574, 34.72351554762654], [-77.3756233004154, 34.72351066480099], [-77.37565518989835, 34.7235051785937], [-77.37602183721664, 34.723427213151496], [-77.37634975066345, 34.72321679583575], [-77.3763505199997, 34.72321638301319], [-77.37635109730654, 34.72321601860484], [-77.37635181171086, 34.72321494061063], [-77.37658605429284, 34.72273907027676], [-77.37688991940601, 34.72260171175097], [-77.37704210226241, 34.722339519097126], [-77.37714508553748, 34.72227060277413], [-77.37729251342721, 34.722177287307375], [-77.37730910105742, 34.72216465925048], [-77.37732273291981, 34.72215815965508], [-77.37750434031278, 34.722109802987724], [-77.37763966804715, 34.72208571551853], [-77.3777139077149, 34.72207839086886], [-77.37786023980317, 34.722066721711], [-77.37793204247987, 34.722060995877186], [-77.37796980771115, 34.72205279188041], [-77.37847935808206, 34.72220789154139], [-77.3792295192451, 34.72198684718282], [-77.3792555528108, 34.721980675762225], [-77.37927295159848, 34.72198111157047], [-77.37937922726299, 34.72195353988675], [-77.37995366902564, 34.721844786220466], [-77.38008187022372, 34.72183546568287], [-77.38059770925273, 34.7218348910712], [-77.38096165495637, 34.721777730635736], [-77.38124752717184, 34.72180507658345], [-77.38187284325839, 34.72180704852655], [-77.38188754005313, 34.72180905947614], [-77.38189768323821, 34.721812009098564], [-77.38190234783141, 34.721804049490295], [-77.38230580789373, 34.72173116588245], [-77.38253480753725, 34.72153120268336], [-77.38258803004837, 34.72148486665819], [-77.3826031126643, 34.72146902406261], [-77.38263830867791, 34.721431174910585], [-77.38290761802674, 34.721218664166095], [-77.38302715013407, 34.72107938248615], [-77.383073772627, 34.72103507504676], [-77.3832472631851, 34.72102579445944], [-77.38347977364904, 34.72074054614333], [-77.38358498025778, 34.72071544786289], [-77.38392712070294, 34.7206409883318], [-77.38417719326351, 34.72054654434184], [-77.38442457158294, 34.7204501302932], [-77.38473934894056, 34.72047273766147], [-77.38483869474322, 34.720476379537686], [-77.38490043927521, 34.720545381542074], [-77.38496156190384, 34.72063807685588], [-77.38510230764692, 34.72106650277253], [-77.38513159886828, 34.72134164038547], [-77.38529540378437, 34.72138238656444], [-77.38581253856732, 34.72154004038654], [-77.38588303393435, 34.72151975895255], [-77.38620249591227, 34.721369303542076], [-77.38621262282942, 34.72135552235625], [-77.38652266233072, 34.721302217833994], [-77.38661147190768, 34.721289850783734], [-77.38672956857991, 34.72134513761162], [-77.38680129798337, 34.72144685127366], [-77.38686556695626, 34.721511609278096], [-77.38702582547911, 34.72177807710604], [-77.38714054134986, 34.72195985662769], [-77.38730794511062, 34.722219845989756], [-77.38747901851582, 34.72242627690497], [-77.3878946755645, 34.7227829461523], [-77.3879538278188, 34.72284327132922], [-77.38798806410587, 34.72288188932917], [-77.38808909309878, 34.72295845473061], [-77.38881443123844, 34.72337720754312], [-77.38909047043065, 34.723502384373276], [-77.38936621385056, 34.72355057113814], [-77.38999009095986, 34.723779834252525], [-77.39028320050963, 34.7238114127769], [-77.39044213098703, 34.72381355558504], [-77.39090767941647, 34.72386896878349], [-77.39100104676987, 34.72386999036732], [-77.39136880507542, 34.72383242285598], [-77.39163579210161, 34.723569081601376], [-77.39167570297045, 34.72354690662743], [-77.39187282038965, 34.723159999900005], [-77.39208348718071, 34.723130437473884], [-77.39320602636307, 34.72257597984352], [-77.39327926545283, 34.72246681435134], [-77.39331565017432, 34.72244327383431], [-77.3939946719756, 34.72214015752153], [-77.39417346748594, 34.72203618523292], [-77.39463676673614, 34.72178722958575], [-77.39467363480715, 34.721753902460065], [-77.39472885367718, 34.72174626691367], [-77.39501641948372, 34.72156618032233], [-77.39531179739444, 34.72156168803914], [-77.3954257013037, 34.72155409972729], [-77.39546927582676, 34.72155847823681], [-77.39556291599258, 34.7215521328893], [-77.39591924457807, 34.721546051909314], [-77.3960702251522, 34.72154242499938], [-77.39636238884853, 34.721522462261596], [-77.39658172032829, 34.721349449629], [-77.39667214331665, 34.72128072678586], [-77.39683578135501, 34.72111319009279], [-77.39697277235668, 34.72102406770287], [-77.39716519495293, 34.7207890896651], [-77.39699560472204, 34.720561801122315], [-77.3969725290215, 34.72042308551781], [-77.39690464145221, 34.72034414204076], [-77.39698734925213, 34.7202995977125], [-77.3970638196014, 34.72032645871036], [-77.3974772883602, 34.72035254494653], [-77.39772419169391, 34.720260061957745], [-77.39787646995667, 34.720125019069215], [-77.39811318196912, 34.719895888346485], [-77.39819761497463, 34.71967823621713], [-77.39856117514164, 34.71931449410847], [-77.39862127579559, 34.71926732176247], [-77.39863472331356, 34.71925223256781], [-77.39867648360715, 34.71918645477667], [-77.39887555949707, 34.718897807150725], [-77.39891649601086, 34.71881146955744], [-77.3989536963344, 34.71870453194386], [-77.39905738639447, 34.71844688202813], [-77.3991501863387, 34.71833409007358], [-77.3991080032099, 34.718193877584596], [-77.39913681946337, 34.71804984357759], [-77.39906082970701, 34.717860321610104], [-77.39901385677908, 34.7177868026353], [-77.3989558852139, 34.71770696893194], [-77.39878160650251, 34.717437303206275], [-77.39871188164224, 34.717342027208005], [-77.39866022548391, 34.71726474487911], [-77.39862036469725, 34.71716804090007], [-77.3985679185075, 34.71708006553769], [-77.39853809728103, 34.71700165221308], [-77.39848580646245, 34.71676382500484], [-77.39847150547217, 34.71669878195043], [-77.39846773344327, 34.716675509220096], [-77.39845670055823, 34.71662672874503], [-77.39841879691627, 34.71640076867095], [-77.39838955797104, 34.716261777203414], [-77.39830226164399, 34.71605359334877], [-77.39824519047261, 34.71587564104822], [-77.39818497121577, 34.71575981222284], [-77.39806299029452, 34.715505277673536], [-77.39791896051504, 34.71516413322746], [-77.3979000208764, 34.715126897416376], [-77.39788554203605, 34.715095899812574], [-77.39780752884353, 34.71490621729028], [-77.39775149820893, 34.714769425748855], [-77.39774184721936, 34.71474651810275], [-77.39772772483585, 34.71471798228274], [-77.39758887356264, 34.71443295038634], [-77.39756507910275, 34.71437389107462], [-77.39753179172348, 34.7142880454368], [-77.39737910395269, 34.71400510283058], [-77.39713848095894, 34.71381196168314], [-77.3970481650547, 34.713744790736705], [-77.39698706171167, 34.71372222360714], [-77.39690874140827, 34.713635819079094], [-77.39689761207147, 34.71341800084116], [-77.39678092784843, 34.71303194751815], [-77.39677057173418, 34.712919837807014], [-77.3966860292866, 34.71278238690885], [-77.39656649237101, 34.71239776380685], [-77.3964485087313, 34.712161466995596], [-77.39629898136035, 34.71190596487888], [-77.39626563727468, 34.711791387010514], [-77.39621825454566, 34.711716757000225], [-77.39600868029831, 34.71145219328249], [-77.39585833973396, 34.71121447742142], [-77.39578068382033, 34.71110092635321], [-77.39566519581979, 34.710964071752414], [-77.39553021150444, 34.71075902976894], [-77.39539495901897, 34.71060146627892], [-77.39524776196328, 34.710430464548715], [-77.39492987960249, 34.71014759937581], [-77.39491005316837, 34.710124936732555], [-77.3948984113295, 34.71010290532967], [-77.39485755244621, 34.7100811488109], [-77.39434507868994, 34.70980026623703], [-77.39375077587906, 34.70976744049716], [-77.39371370701112, 34.70976686836842], [-77.39362192028499, 34.70976931095999], [-77.39322024249822, 34.70964796406811], [-77.3931116820196, 34.70963222626775], [-77.39296522159952, 34.70959676045885], [-77.39268876927501, 34.70952694552999], [-77.3925259873611, 34.709441252171956], [-77.39227845544391, 34.709436741580454], [-77.39216950993561, 34.70942590283915], [-77.39191994795257, 34.709320465679234], [-77.39165125442824, 34.709326496363744], [-77.39125191055498, 34.70941354546926], [-77.39124783685754, 34.70941495349227], [-77.39124129191795, 34.709415860096236], [-77.39094050280525, 34.709382085827386], [-77.39075179200742, 34.70935187767413], [-77.39062958497401, 34.70934893578354], [-77.39048616955859, 34.70929125223304], [-77.39018780819788, 34.709047144399534], [-77.39013467323726, 34.70899146690082], [-77.39010374228289, 34.70895152443364], [-77.38979431699407, 34.70868703662454], [-77.38960326641647, 34.708466627927834], [-77.38878497645854, 34.70855613727251], [-77.38845507319603, 34.70858822226809], [-77.38826685668434, 34.7086539303619], [-77.38787218347618, 34.70859564182601], [-77.3875284488595, 34.708569130614], [-77.38703910751998, 34.708466435570685], [-77.38662964750219, 34.70822095488986], [-77.38635643766973, 34.70814854892595], [-77.38590309201386, 34.70796258295918], [-77.3856007353393, 34.70800071649776], [-77.3853809385811, 34.70804946685356], [-77.38521822537282, 34.70811367398873], [-77.38461667518851, 34.70821542004579], [-77.38457571574018, 34.70822898040101], [-77.38454434478072, 34.70822686671834], [-77.38451005678239, 34.70821181321625], [-77.38445826634421, 34.70815996621313], [-77.38306985277819, 34.70702689713802], [-77.38239869373622, 34.70678347117686], [-77.38206223199371, 34.706554273068534], [-77.3818439991601, 34.70648569739472], [-77.38163903733415, 34.70641788369528], [-77.3814765464903, 34.706352081892184], [-77.38127552563216, 34.70623544339152], [-77.38107488399274, 34.70607319337978], [-77.38073839199708, 34.705877137435465], [-77.38021812456516, 34.70558983954935], [-77.38018675967781, 34.70556883584534], [-77.38014789951302, 34.70556695341149], [-77.37957890900887, 34.70545437858783], [-77.37910090408236, 34.70525872397381], [-77.37898730956279, 34.70528389218073], [-77.37867913955296, 34.70528649318676], [-77.37835516680963, 34.70525319328779], [-77.37818475379912, 34.70525664336935], [-77.37776976026507, 34.70521918733183], [-77.3777503372322, 34.70512832658784], [-77.37768483775201, 34.7048718928488], [-77.37781543132739, 34.704740051076946], [-77.37782447015661, 34.704697399277926], [-77.37780689589616, 34.70438364085564], [-77.37779677829836, 34.704255218614875], [-77.37784352676252, 34.703961154237156], [-77.37751081585479, 34.70389024047112], [-77.37747495472642, 34.70385062527439], [-77.37744408269529, 34.7038163169782], [-77.37726472314964, 34.70361819350645], [-77.3770596099322, 34.70338198241575], [-77.37705952470016, 34.70338188743554], [-77.37705945414557, 34.70338180531052], [-77.37705886064923, 34.70338105870768], [-77.376883295265, 34.70312327925184], [-77.37684031040109, 34.70310612830278], [-77.37671057111228, 34.70294237776939], [-77.37667090025582, 34.70289251461553], [-77.37662137431985, 34.702829025951715], [-77.37653868124598, 34.702722312975155], [-77.37649194689, 34.70263600452958], [-77.37641146807142, 34.702496105109375], [-77.37634507694324, 34.702354795383094], [-77.37623083884792, 34.70211164350982], [-77.37620770638452, 34.7020662735718], [-77.37620243944046, 34.70203744842931], [-77.37618074187907, 34.70196501240091], [-77.37613015409151, 34.70180368881286], [-77.37611276370181, 34.701745088582314], [-77.37602724581255, 34.70157413913944], [-77.37594488968293, 34.70148005138857], [-77.37585848338472, 34.70133160914209], [-77.37569520746412, 34.70113239404969], [-77.37556891503073, 34.700980948025695], [-77.3754248607289, 34.70076281204306], [-77.3753920748186, 34.700722815510716], [-77.37536945408381, 34.70068978449142], [-77.37525445904588, 34.70050625859025], [-77.37522621752437, 34.70045622820512], [-77.37521666988701, 34.7004487028239], [-77.37505147617071, 34.700246105304856], [-77.37503152881666, 34.700211837431915], [-77.37499950545046, 34.7001655331912], [-77.37485601307066, 34.69995268665445], [-77.37475821346521, 34.69979902733823], [-77.37468759406501, 34.69968807300986], [-77.37457536605814, 34.69956408243088], [-77.37446954429004, 34.69946166881287], [-77.37436565873315, 34.69936559963072], [-77.374117776557, 34.69907796317247], [-77.3740468584531, 34.69899853524367], [-77.37394897941009, 34.69893548756392], [-77.37376483032301, 34.698821386592066], [-77.37361997608286, 34.69873047555495], [-77.3734251183148, 34.698688645180084], [-77.37287259656391, 34.69859606113215], [-77.37282009827202, 34.69836588114113], [-77.3726242215582, 34.69803606389309], [-77.37256528172256, 34.697773522958066], [-77.37215990268486, 34.69771924272229], [-77.37212466172957, 34.69769467945914], [-77.37196314596088, 34.697448545605866], [-77.37182528336187, 34.69727784491238], [-77.37167487580604, 34.69718173623796], [-77.37156472763783, 34.69696673783233], [-77.37140257495756, 34.696848554963466], [-77.37130046864428, 34.696775913910116], [-77.37123105778619, 34.6966482399819], [-77.37114476593345, 34.696501518301964], [-77.37108459483079, 34.69617345870396], [-77.37121025812996, 34.69590020168403], [-77.37114578428056, 34.69495140659423], [-77.37114630291111, 34.69493420700638], [-77.37114862507532, 34.6949215086293], [-77.37114133223542, 34.694894243091106], [-77.37108849581567, 34.69417927874476], [-77.37079691711028, 34.694007443008054], [-77.37104858245796, 34.69358899809098], [-77.37114975179705, 34.69347155226865], [-77.3714985901481, 34.69334962901744], [-77.37163530751798, 34.692969789316635], [-77.37165713469149, 34.69291441477385], [-77.37162861342118, 34.69282671223414], [-77.3715744105309, 34.69262241126421], [-77.37140677886643, 34.69246143478347], [-77.37141960346027, 34.69234733184346], [-77.37145955436326, 34.69196678525985], [-77.37180206429986, 34.691704145339436], [-77.37198922412495, 34.69140658267029], [-77.37206002138049, 34.69129460061098], [-77.37209512239022, 34.69103873788643], [-77.37208127403218, 34.690906534806324], [-77.37203048419718, 34.69063029325822], [-77.37201112737472, 34.690428783637806], [-77.3720592307375, 34.690277845283816], [-77.37225934056391, 34.689907267981646], [-77.37237244132828, 34.68965705763811], [-77.37241362395528, 34.689398664286976], [-77.37237349517837, 34.68924736611291], [-77.37235589327179, 34.689162903776754], [-77.3722987192104, 34.68895359726182], [-77.37230676144347, 34.68892596087997], [-77.37229437139129, 34.68891402214603], [-77.37227798269451, 34.688912767066654], [-77.37224389641958, 34.68890501492168], [-77.37187926873489, 34.68883935316974], [-77.37171236011596, 34.68879931070012], [-77.37125736103317, 34.688668900958916], [-77.37114911323322, 34.688677668051106], [-77.37108751164067, 34.688660411484605], [-77.37080737181911, 34.688270121445896], [-77.37073138093776, 34.68816773301207], [-77.37072271662062, 34.68815275191621], [-77.3707113194539, 34.68812358053479], [-77.37054799610759, 34.68770554712384], [-77.37045670626559, 34.687569038521474], [-77.37025633243175, 34.68725824388997], [-77.36987168156875, 34.68689153996395], [-77.36957634366895, 34.68666980860727], [-77.36926595178076, 34.686419588222826], [-77.3691014708691, 34.6862469052455], [-77.36891734683019, 34.68605493567651], [-77.36887035560288, 34.68598657069806], [-77.36873548245582, 34.68574017471251], [-77.36862341568111, 34.68553311762527], [-77.36856216831158, 34.68508510967844], [-77.368562650184, 34.68505407869199], [-77.36852716534656, 34.68497299983618], [-77.3683292443036, 34.684598766401166], [-77.36830666761784, 34.68449331952585], [-77.36819471838145, 34.684419739126966], [-77.3677908286294, 34.68418537476159], [-77.36774021028889, 34.684140935525164], [-77.36745343099355, 34.68402135030876], [-77.36712969721789, 34.68396477853069], [-77.36691779387334, 34.68398560846809], [-77.36678741469935, 34.68383588591616], [-77.36636489769398, 34.68362278362169], [-77.36622484469046, 34.68342580912629], [-77.3661088775725, 34.683357506265985], [-77.36570028915274, 34.683345963406914], [-77.36504456784411, 34.68316263356944], [-77.3649680176338, 34.683163981994234], [-77.36490507147127, 34.683169693160025], [-77.36432157822527, 34.68332917338857], [-77.36410922950449, 34.68322914132904], [-77.36390660832664, 34.68314988568466], [-77.36380355764467, 34.683051794168705], [-77.36361343318217, 34.68280987754104], [-77.36387558538306, 34.68238530231013], [-77.36335552157098, 34.68253324649588], [-77.36312325826802, 34.68273599769786], [-77.36295465731635, 34.682900394793336], [-77.36273662893025, 34.68303148852778], [-77.36257601420024, 34.68315699198646], [-77.36235120565246, 34.68332804881129], [-77.36211042578944, 34.68350377724234], [-77.36182225702436, 34.683691960090236], [-77.36146406778848, 34.683818091182374], [-77.36112061951789, 34.68404729515635], [-77.36071335828083, 34.68403116708468], [-77.36035035898863, 34.68410729685358], [-77.3598639829782, 34.68425264180576], [-77.3593124667406, 34.68446370778943], [-77.35919903070726, 34.684481525667564], [-77.35885696920693, 34.68467171003775], [-77.35854193198432, 34.68468333172981], [-77.35828960898196, 34.68483344623293], [-77.3580390129416, 34.68503785619551], [-77.35780688351824, 34.68515368016528], [-77.35749728286522, 34.68540754546858], [-77.35729644816233, 34.68547868009415], [-77.35712465033615, 34.68544203949994], [-77.35684683754972, 34.685469180778945], [-77.35681952970398, 34.68546220324319], [-77.3567942579811, 34.68547101273073], [-77.35650333057802, 34.68552053006229], [-77.35633685575354, 34.68565533305261], [-77.35627637946286, 34.68576733530743], [-77.35612301021699, 34.68598767125433], [-77.35606824534358, 34.68628330523143], [-77.3558118214637, 34.686466392133745], [-77.35560429010506, 34.68683440767453], [-77.35555771667987, 34.68687938235428], [-77.35543285384186, 34.687307284490615], [-77.35542394794051, 34.687346559197465], [-77.35541753329869, 34.68739336365486], [-77.35531703405249, 34.68779063128924], [-77.35534865796319, 34.687844283309744], [-77.35516270424162, 34.68807691289314], [-77.35487315181294, 34.688187284833404], [-77.3544930053908, 34.68832196754305], [-77.35417256109042, 34.68827727746372], [-77.35418911414006, 34.688003516848156], [-77.35401581814108, 34.68790388707363], [-77.35389935801837, 34.68769914905749], [-77.35377891310154, 34.687572460886315], [-77.35355260081377, 34.687437701228916], [-77.35323698833176, 34.68764687480983], [-77.35315610952065, 34.68787698427409], [-77.35314044602802, 34.68790382324468], [-77.35313596740899, 34.687923790113345], [-77.35299956845691, 34.68816685842784], [-77.352647850667, 34.68849235383442], [-77.3523446356667, 34.688498797289625], [-77.35219530003349, 34.68876467089148], [-77.3519545668126, 34.68919590575838], [-77.35189769998135, 34.68929291539704], [-77.35193722905811, 34.689414171325225], [-77.35183945050271, 34.689788294218076], [-77.35145261391112, 34.690261104762946], [-77.35082627745112, 34.69064298571818], [-77.35049966303737, 34.69069285176486], [-77.3505308179286, 34.69094272307251], [-77.34988444400236, 34.691424012063216], [-77.34920858941857, 34.69209116044127], [-77.3491992124214, 34.69209311544387], [-77.34828090335424, 34.69202301772326], [-77.34800754242025, 34.69210442378465], [-77.34778650812625, 34.69200928596116], [-77.34764589201197, 34.69199261164398], [-77.3474534758146, 34.691951078274975], [-77.34734598739571, 34.691954093883304], [-77.34696622625471, 34.692028344983356], [-77.34672489501519, 34.69239865078201], [-77.34669415064198, 34.692425439376485], [-77.34668577740545, 34.69244528628211], [-77.34669490436647, 34.692455103336904], [-77.34668973313954, 34.69251972451953], [-77.34673603259333, 34.69246257113899], [-77.34698693245086, 34.69252696450464], [-77.34711748701895, 34.69252410239231], [-77.34728334444179, 34.69253691418735], [-77.34774618416861, 34.692434493080015], [-77.34782626656268, 34.692728649856605], [-77.3478393029775, 34.69277433845379], [-77.3478212442755, 34.692786377459534], [-77.34779421408962, 34.692839021993734], [-77.34755396061128, 34.69318771965635], [-77.34717852360684, 34.69335241493995], [-77.34753970798548, 34.69338173459426], [-77.34750684859006, 34.693784258602385], [-77.34749720272349, 34.69379605484153], [-77.3475018265716, 34.69380506232436], [-77.34741655741712, 34.694023363984236], [-77.34727707536291, 34.69397800665598], [-77.34718390295333, 34.69390994805708], [-77.34709423559089, 34.6938513637747], [-77.34710310480304, 34.69371769824518], [-77.34702597539503, 34.69342313371307], [-77.34701558797876, 34.69337477860537], [-77.34693241253616, 34.69306069139713], [-77.34654831240168, 34.693006679358454], [-77.3464887312999, 34.69300792570549], [-77.34600200624698, 34.693088424840674], [-77.34591787763658, 34.69311626433668], [-77.34560246410602, 34.69329571646878], [-77.34553709033538, 34.69331455444212], [-77.34548506007657, 34.69334114791823], [-77.34523523781166, 34.69340558645749], [-77.34507827948804, 34.693396973606696], [-77.34501163315109, 34.69335617027461], [-77.34486826983455, 34.69335990281154], [-77.3446605431164, 34.69332323467404], [-77.34446484829314, 34.69338272812006], [-77.34404278170585, 34.69338915614024], [-77.34355778226706, 34.69347466581348], [-77.34337468727985, 34.69362836099461], [-77.34320328811381, 34.69356509487638], [-77.3427452367483, 34.69373450774174], [-77.34239093761552, 34.69371677910006], [-77.34227528031741, 34.69402529983883], [-77.34256383095928, 34.694359024960505], [-77.34294175049962, 34.6942051484939], [-77.34324527714233, 34.69407389033402], [-77.34343167218319, 34.694001188580295], [-77.34361506050473, 34.694036592214104], [-77.34379029577458, 34.6942584329078], [-77.34380440220146, 34.69430285558628], [-77.34379596688345, 34.694324177800944], [-77.34373521372626, 34.69455603888107], [-77.34366554652497, 34.69468792120883], [-77.34359674198184, 34.694785875757105], [-77.34349404150231, 34.69483282174194], [-77.34287942248778, 34.695333419958075], [-77.34282254062668, 34.69537613158094], [-77.34278808572826, 34.695461209702756], [-77.34261418418123, 34.69592830789857], [-77.34229698224786, 34.69618684347133], [-77.34192294892594, 34.696565296731464], [-77.34156674864099, 34.696816094296125], [-77.34063510512655, 34.69711768074013], [-77.34056161301413, 34.69713001005895], [-77.34047117662722, 34.6971214312485], [-77.34032190841992, 34.69721756491782], [-77.33944420255129, 34.697487587981925], [-77.33921891705889, 34.69763047909392], [-77.33800671222794, 34.698509916111156], [-77.33782481723813, 34.69860521614724], [-77.33770987835274, 34.69870339470701], [-77.33739404592039, 34.698822821049056], [-77.3373514796688, 34.698599792423664], [-77.336938711819, 34.69781952613561], [-77.33685050516938, 34.6976937609247], [-77.33685998518827, 34.697657106703744], [-77.33681566867578, 34.69766017348162], [-77.33675521516419, 34.697656822030815], [-77.33576016346314, 34.697172125498135], [-77.33557531788465, 34.69706883306732], [-77.33470750972849, 34.69711786469523], [-77.33458448487707, 34.697097673446], [-77.33446200485788, 34.69713700793383], [-77.33397398714581, 34.69713841760688], [-77.33347418003214, 34.69730101239118], [-77.33330247546587, 34.6973891124215], [-77.3328059814717, 34.69762264151311], [-77.33200225593679, 34.6977431651231], [-77.331225853859, 34.697860901375], [-77.33098910681997, 34.69849757101309], [-77.33073520223572, 34.69870264154723], [-77.33067156856085, 34.69926446577651], [-77.3308373332933, 34.699493121437314], [-77.33107556428718, 34.69974195785051], [-77.331240181435, 34.70036533912317], [-77.33181815781143, 34.699662977817596], [-77.33205341606248, 34.69962710851796], [-77.33229814409913, 34.699589794065844], [-77.33238448425942, 34.70016516819531], [-77.33156366476939, 34.70036827469145], [-77.33125872596268, 34.7004437300089], [-77.3312130106801, 34.700458825891516], [-77.33112613638687, 34.700491302222055], [-77.32985973972686, 34.700995183629935], [-77.32917432185896, 34.70114903561996], [-77.32862511469357, 34.701123289074026], [-77.32824135183373, 34.7011337009257], [-77.3280216593021, 34.701139661648355], [-77.3276687334824, 34.701090756925474], [-77.3274444997317, 34.70106556605131], [-77.32729676266877, 34.70095324836104], [-77.3268726672093, 34.7006099574195], [-77.32648672796655, 34.70024125479117], [-77.32631925575981, 34.70011250244861], [-77.32634751591803, 34.69943743248875], [-77.32549329584435, 34.699539667972566], [-77.32534225969225, 34.699422387052714], [-77.32490991395427, 34.699487009747614], [-77.3245509410307, 34.699380138696995], [-77.32478291029764, 34.699064383231224], [-77.32498409400738, 34.69870987774376], [-77.32519685013362, 34.698499993481335], [-77.3253205424144, 34.698369808040425], [-77.32565103137598, 34.698396702647855], [-77.32583623427652, 34.698359982764934], [-77.32600892889303, 34.69844925257329], [-77.3260131779565, 34.69851227088115], [-77.32617546789872, 34.698489566044], [-77.32638266645031, 34.698539721539305], [-77.32648183475544, 34.698545917722896], [-77.32665166398203, 34.6986048352759], [-77.32689934836995, 34.69882181039006], [-77.32710895640528, 34.69867898995759], [-77.32748490249102, 34.698562633763316], [-77.32756589634388, 34.69858833726923], [-77.3277463494866, 34.698605813816485], [-77.32819551005427, 34.698481913463624], [-77.3285501114402, 34.69834459104832], [-77.32874903874932, 34.69821815406886], [-77.32886288696045, 34.69824555834305], [-77.32939404295676, 34.697741523129466], [-77.32956142776185, 34.69766173251577], [-77.32970608812727, 34.697404246930226], [-77.33025334708253, 34.696998481067666], [-77.33044222698433, 34.69693124954414], [-77.33070212367306, 34.696758037774984], [-77.33092335802473, 34.69670606630369], [-77.33110232451111, 34.69671986331173], [-77.33133490425809, 34.69668076982922], [-77.33138017990055, 34.696494467895434], [-77.33187011349317, 34.69613790012391], [-77.33202769987172, 34.69601830698862], [-77.33223266359866, 34.695890203533864], [-77.33267501088613, 34.69542820152593], [-77.33278359085917, 34.695411801998006], [-77.3329811414286, 34.69530019377781], [-77.33374944365875, 34.69499149288954], [-77.3340060363526, 34.69496799345832], [-77.33418378004856, 34.69498624370397], [-77.3349395454168, 34.69503161787072], [-77.33510198418797, 34.695068148418216], [-77.33517907936097, 34.69505142156046], [-77.33526051612617, 34.69505466495799], [-77.33611545407966, 34.695076756879715], [-77.33633930593473, 34.69517895023565], [-77.3367926550328, 34.69513649659731], [-77.33694250908725, 34.695163247699035], [-77.33698085493879, 34.695199271638614], [-77.33746829974973, 34.69541397872768], [-77.33767187151244, 34.69545593914868], [-77.33806473164648, 34.695421580033326], [-77.33841420087995, 34.69552977197746], [-77.33844818024099, 34.69564698836327], [-77.33857394878225, 34.69572936884348], [-77.3388001933399, 34.69563983878761], [-77.33916643927338, 34.69575053816838], [-77.33939726059091, 34.6957051121539], [-77.33971073032123, 34.69593761193261], [-77.34016498596567, 34.6955732363941], [-77.34052988385166, 34.69523952754493], [-77.34036332090406, 34.69496185903702], [-77.34040922193171, 34.69476870706567], [-77.34031036891075, 34.69460844718322], [-77.34027737506985, 34.69454310808459], [-77.34023869737086, 34.69446651350622], [-77.3402597154744, 34.69438051622344], [-77.34033217255916, 34.69429190219734], [-77.34036199435253, 34.69417457449875], [-77.34027605700308, 34.69399162827066], [-77.34028987433692, 34.693810329371466], [-77.34029231230963, 34.69377106182559], [-77.34034095496803, 34.6935596333907], [-77.34032540040597, 34.69348122186838], [-77.34034983535805, 34.69339562376609], [-77.34031999052392, 34.693325232397875], [-77.34032045986578, 34.69331875732061], [-77.34032344582026, 34.69331333810792], [-77.34040591879837, 34.69323343763389], [-77.3405124740817, 34.69317780116897], [-77.34066767435816, 34.69315108060341], [-77.34097142749428, 34.693096507170566], [-77.34118202521645, 34.69293361800456], [-77.34136004526155, 34.692802732501036], [-77.34139709597719, 34.692683665376435], [-77.34153876189012, 34.69248086143314], [-77.34160787785981, 34.69238412935761], [-77.34178754102771, 34.692289446339686], [-77.34198423278325, 34.69223273410925], [-77.34213269740147, 34.69221112276846], [-77.34255467426118, 34.69203745421436], [-77.34295918824705, 34.691667254997185], [-77.34336485552276, 34.691601302710815], [-77.34386503538398, 34.691370266995506], [-77.34399100072451, 34.69130543985052], [-77.34405423579398, 34.6912887596502], [-77.34459501423547, 34.69078271244706], [-77.34453576944168, 34.69051179337058], [-77.34484865748733, 34.69061452623558], [-77.34490749025132, 34.69067712459065], [-77.345143013094, 34.690707506407975], [-77.34521289112267, 34.69083629242131], [-77.34541152459491, 34.69073753773733], [-77.34547224015158, 34.690703774126085], [-77.34593007829206, 34.69067859382591], [-77.34602516592768, 34.69068572171453], [-77.3461698728515, 34.69068398730069], [-77.34639971574421, 34.69053502898718], [-77.34649620992349, 34.6902429522868], [-77.34669293393989, 34.69000740560795], [-77.34666878879924, 34.689849701223224], [-77.34688066252517, 34.68980109232659], [-77.34706845843337, 34.68980259911179], [-77.34728539270425, 34.689758075598185], [-77.34747254535961, 34.689824167610105], [-77.34776631150194, 34.68961638559392], [-77.3475903835385, 34.689418386429026], [-77.3475786263421, 34.68941001104888], [-77.34754400705944, 34.68940320954805], [-77.34734095293605, 34.68924669336755], [-77.3472797465716, 34.689245831529355], [-77.34709279670133, 34.68907061474776], [-77.34699383648622, 34.6890716711909], [-77.34664001032833, 34.688568587963545], [-77.34663870545371, 34.68855660570704], [-77.34663586045652, 34.68855310041643], [-77.34662202751689, 34.68853161390939], [-77.3463367440879, 34.68800062513326], [-77.3459946148105, 34.687975325847454], [-77.34554268454474, 34.68822484942096], [-77.34500782260096, 34.68823490974045], [-77.34483482587989, 34.688223640622965], [-77.3443979013622, 34.68804453624055], [-77.34434869204944, 34.68795377652684], [-77.34435270752414, 34.687891694938926], [-77.3437653211318, 34.68761434616372], [-77.34371858903803, 34.687491339432256], [-77.34364879836392, 34.68730984671035], [-77.34357057667502, 34.68710265460195], [-77.34365587178883, 34.687012568267036], [-77.34419158804846, 34.68669394058577], [-77.34457384077618, 34.68688659023256], [-77.34466628508642, 34.686921055440514], [-77.34471830767824, 34.686941324587046], [-77.3448157809386, 34.686930098152196], [-77.34535574156482, 34.68680749450379], [-77.34537865310119, 34.68679085691243], [-77.34542140898374, 34.68677026745092], [-77.34588720744608, 34.686603452451365], [-77.34600821703357, 34.68662185865801], [-77.34609478549089, 34.68661013132819], [-77.3463157164461, 34.686593560549454], [-77.3466029067468, 34.6865997150855], [-77.3466134616431, 34.686598849385135], [-77.3466251888705, 34.68659613843199], [-77.3466555176539, 34.68660088341123], [-77.34689035436097, 34.68678625445591], [-77.3471732119994, 34.686732498142455], [-77.34742006731652, 34.68668593255171], [-77.34754092226581, 34.686679786587085], [-77.34780524727472, 34.686617225208465], [-77.34790193968155, 34.686599051183435], [-77.34796434669036, 34.68658464969643], [-77.3480362009485, 34.68659390827763], [-77.34803650534329, 34.68659403904824], [-77.3480365986131, 34.686594260857575], [-77.34803484559929, 34.686655242531224], [-77.34802332539564, 34.68670272637308], [-77.34805844098238, 34.68677593329229], [-77.34806103484193, 34.68689533780399], [-77.34799860858253, 34.68711592580249], [-77.34807558259178, 34.687267129980945], [-77.34801588196342, 34.68738891609955], [-77.34793972834876, 34.68755541460594], [-77.3480915806521, 34.687692449060606], [-77.34806947678945, 34.687849745934976], [-77.34813114103892, 34.687860475458365], [-77.34829705602965, 34.68801549903717], [-77.34829827698853, 34.6880678508113], [-77.34830431703743, 34.688080394107274], [-77.34831155630478, 34.68811465077975], [-77.34824133264377, 34.688332729857905], [-77.34831349755643, 34.68845031708501], [-77.34845135607564, 34.688514787788876], [-77.34846221049128, 34.68853296485917], [-77.34855969298827, 34.68853271917884], [-77.34867213638961, 34.68856850522204], [-77.3488093050315, 34.68855595298972], [-77.34904280152816, 34.688539329274285], [-77.34935822390683, 34.688404319409216], [-77.34937147556107, 34.68817759132389], [-77.34938979277103, 34.68811316022496], [-77.34940056891254, 34.68805175216477], [-77.34950390597587, 34.68798204578148], [-77.34958184611608, 34.687964284307306], [-77.34981647772258, 34.687884947287806], [-77.34982970395389, 34.68789073049303], [-77.34987763136763, 34.68786441515701], [-77.35010925481144, 34.68779358175118], [-77.35017214654758, 34.68774208749225], [-77.35029484038033, 34.68763897249958], [-77.35036269060957, 34.68755413280269], [-77.35038255901314, 34.687532788207605], [-77.35050089317181, 34.687502509221936], [-77.35054152975154, 34.687500654116015], [-77.35056867904346, 34.68750315515076], [-77.35071517276589, 34.687505740735624], [-77.35083636801838, 34.68751595423377], [-77.35088094981391, 34.68748298103499], [-77.35104630952466, 34.6873477721478], [-77.35116723803013, 34.68704250265191], [-77.351145265513, 34.68695930993951], [-77.35117740203506, 34.686825710905495], [-77.35138357120306, 34.68666205978465], [-77.35168471625254, 34.686644244420386], [-77.35169270053852, 34.686644275209325], [-77.35169395318628, 34.68664028540336], [-77.3516935542538, 34.686637442516954], [-77.35174762843147, 34.68638922405293], [-77.35186795745712, 34.68616137232684], [-77.35213625188166, 34.68613119434066], [-77.35238821915758, 34.68598433887854], [-77.35275689930918, 34.685763263074215], [-77.35282268938914, 34.68573124703772], [-77.3528778220528, 34.68563856138726], [-77.35309459788058, 34.68533403651868], [-77.35325785771394, 34.68520709169526], [-77.35344804679463, 34.684892917742445], [-77.35355208235339, 34.68467930568118], [-77.35312379705385, 34.684354088160916], [-77.35272105191953, 34.68411688697445], [-77.35245863533684, 34.68407764520369], [-77.35221431591084, 34.68388823224943], [-77.35219662665857, 34.683861625911085], [-77.35163915149629, 34.68391997635906], [-77.3520338975958, 34.683425621683796], [-77.35217984339988, 34.683246492425155], [-77.35254470160808, 34.682868099392124], [-77.35260742580196, 34.68238635435162], [-77.35261308810209, 34.68237132749621], [-77.35258763168586, 34.682331482739926], [-77.35234674071648, 34.681920516667155], [-77.35228794740861, 34.68184386104713], [-77.35219875470588, 34.681792689010415], [-77.3519409192404, 34.68148885678408], [-77.35197309959511, 34.68129780502731], [-77.3517293869161, 34.681347837158974], [-77.35139568380391, 34.68107633820738], [-77.35132476068722, 34.68100843030267], [-77.35126301031701, 34.68089269784272], [-77.3510896701084, 34.68063097223572], [-77.35116897521213, 34.680339954224266], [-77.35088729277068, 34.680171376913414], [-77.35089348239698, 34.680157804810825], [-77.35087587054952, 34.68016465529243], [-77.35064452316212, 34.67996101803827], [-77.35099877882365, 34.679741312311805], [-77.35111570920472, 34.679749877577066], [-77.35133902570371, 34.67981488440806], [-77.3515539196308, 34.679890679030045], [-77.3517354188138, 34.67990397890778], [-77.3521688181045, 34.679834211113764], [-77.35232471258237, 34.6798446020112], [-77.35246443252677, 34.67984674151789], [-77.35270738109054, 34.67988455200475], [-77.35275051267334, 34.67989211326278], [-77.35276901121571, 34.67989682279529], [-77.35278069721177, 34.679911395642684], [-77.35287539359493, 34.680033515315685], [-77.35295085295921, 34.68013172204208], [-77.35294468330213, 34.6801558032344], [-77.35304176397045, 34.680362929735686], [-77.35299773709274, 34.68050916145663], [-77.35317095662003, 34.6805054772027], [-77.35335749338117, 34.68080695739318], [-77.35347054480795, 34.68093363626267], [-77.35360173007926, 34.681083279339354], [-77.35372509979544, 34.68124386077536], [-77.35387480484704, 34.68141087296043], [-77.35400339943367, 34.681671874148144], [-77.35399150262641, 34.68169466142491], [-77.35400471365644, 34.681756831422916], [-77.35394197290199, 34.68214756985028], [-77.35436392482802, 34.68258119268393], [-77.35437948989276, 34.682599213890406], [-77.35438112423334, 34.682615924438885], [-77.35439202744146, 34.6826546839265], [-77.35450003425072, 34.68290063142083], [-77.35464034981598, 34.68306770948752], [-77.35452127921862, 34.68327847835271], [-77.35477939621468, 34.68321177062492], [-77.3549611399822, 34.68315923209141], [-77.35510786338628, 34.68311116126036], [-77.35523240527792, 34.68298640186039], [-77.35533938484308, 34.68285630576865], [-77.3555391986769, 34.6826561693157], [-77.35569180573519, 34.6825304868778], [-77.35611625322913, 34.68244501894679], [-77.35620222596675, 34.68243392958798], [-77.35629289514824, 34.68242512244734], [-77.35635514019177, 34.682344821106824], [-77.35669684190182, 34.68214498501741], [-77.3568224537435, 34.68203694467694], [-77.3569360893941, 34.68196762801209], [-77.35712096093482, 34.68188273195812], [-77.35745150126809, 34.681811437943566], [-77.35758464296981, 34.68179521429754], [-77.35773391695284, 34.68178788667854], [-77.35788870552808, 34.681778648050134], [-77.35801826254215, 34.681769382900505], [-77.35807765362333, 34.68177349363564], [-77.35820176395183, 34.68173108613306], [-77.35821168243105, 34.681724281198704], [-77.35821271703205, 34.68169334814049], [-77.35818434464312, 34.68164153948697], [-77.35822199381056, 34.681601018191465], [-77.3582269254973, 34.68158670602118], [-77.35828645611096, 34.68116872451892], [-77.35829287956835, 34.68110389455216], [-77.3582995199016, 34.68101282603791], [-77.35843648291001, 34.68084047569609], [-77.3584658010308, 34.6808213585054], [-77.35869437957881, 34.680724638898255], [-77.35901775598363, 34.680516934728395], [-77.35911331059567, 34.680457792244006], [-77.35943951749331, 34.679971608559676], [-77.35951316692484, 34.679535809774414], [-77.35954882942264, 34.67946920611679], [-77.3602185311715, 34.67890645066801], [-77.3602292718624, 34.67889419050561], [-77.36023276900119, 34.67888786070214], [-77.36023953702836, 34.67887682573535], [-77.36043500289922, 34.678438349578585], [-77.36055350439584, 34.67835640909915], [-77.36074758575126, 34.67807723432779], [-77.36092743864958, 34.677817647651594], [-77.36100437729603, 34.67766666285958], [-77.36125265404247, 34.67740525128061], [-77.3613540566752, 34.6773384375641], [-77.3618024924757, 34.677572843519734], [-77.36190179871966, 34.67759715805947], [-77.36209620590297, 34.6775918742761], [-77.36235040753492, 34.6775834815855], [-77.36240079392839, 34.67757342822358], [-77.3624782269395, 34.67754761633478], [-77.36299983072776, 34.67752097310871], [-77.36301805164031, 34.67750868061223], [-77.36302584401945, 34.6775202522818], [-77.3630352951915, 34.67752803419696], [-77.36350774066979, 34.67788357371725], [-77.36354164378369, 34.67791161122223], [-77.36359948220824, 34.67793789950916], [-77.36375703985982, 34.67805567295037], [-77.36378560778311, 34.67811802016661], [-77.36399292105344, 34.67827401862408], [-77.36401533825767, 34.67833538742534], [-77.36403586646172, 34.678365324610766], [-77.36421907207628, 34.67857276998348], [-77.36433907033526, 34.6787081426656], [-77.3644069984734, 34.67880171551687], [-77.3644069918053, 34.67882232763976], [-77.36442835374466, 34.67883593099615], [-77.36457523254633, 34.67908703620144], [-77.36491108617643, 34.679215191211476], [-77.36491596532332, 34.67921802718128], [-77.36491703932106, 34.679218120135616], [-77.36492123408532, 34.67921844029161], [-77.3653929261883, 34.67924597606198], [-77.36550614071555, 34.67924664070099], [-77.36570194169482, 34.67927802563198], [-77.36583267527503, 34.67930165329405], [-77.36608128684125, 34.67932705304011], [-77.3662868167238, 34.67934624821818], [-77.36651490486808, 34.67936045011746], [-77.36667940995542, 34.67932827003215], [-77.36693433506719, 34.679241957000016], [-77.36730636716612, 34.6792300958861], [-77.36772878882377, 34.67916006055222], [-77.36794724206524, 34.6790839388002], [-77.36820490942375, 34.67894390961794], [-77.36834351052535, 34.67894548395574], [-77.36852690531994, 34.67896658812863], [-77.36856786773915, 34.67896986601705], [-77.36857735090835, 34.678974882222306], [-77.36872819646862, 34.679043545655304], [-77.36895672800796, 34.679151203792316], [-77.36895694000964, 34.67926167387559], [-77.36940904171053, 34.67937302716934], [-77.36963372418153, 34.679459441209126], [-77.36970510248142, 34.679474126892664], [-77.36992669811394, 34.67950526526894], [-77.37048753386523, 34.679660190647716], [-77.37074953112392, 34.679739139756265], [-77.3712902228704, 34.67976404697431], [-77.37133787493401, 34.679774055661284], [-77.37138080984421, 34.67976090580513], [-77.37195082713791, 34.679724125669395], [-77.37233485728731, 34.67941361512017], [-77.37267976885401, 34.67927430048472], [-77.37306315205845, 34.679074079949956], [-77.37312793915021, 34.678840240331006], [-77.37348729544318, 34.67855349497908], [-77.37365560743032, 34.67879783009795], [-77.37451256854985, 34.67879113390948], [-77.37461399276248, 34.67879560475094], [-77.37497034786315, 34.67857397077145], [-77.37541524797743, 34.67831489424479], [-77.37546386084095, 34.67825658756158], [-77.37608922693555, 34.6778358982936], [-77.37619150977253, 34.67772662229274], [-77.37627522206907, 34.67765761727283], [-77.37687312271515, 34.67719640753099], [-77.37698994394417, 34.67715800484848], [-77.37702969953175, 34.67706646343062], [-77.37716192927401, 34.67688630091047], [-77.37747029918344, 34.67651847153277], [-77.37750793340425, 34.67634085577793], [-77.37773712310681, 34.67599437761903], [-77.37761205259963, 34.67575110320819], [-77.37732001010322, 34.67565533834489], [-77.37709071917953, 34.675595879700744], [-77.37685495609699, 34.675545592809925], [-77.37675661277157, 34.675534525133614], [-77.37656566752707, 34.67550578225776], [-77.37642515946463, 34.675482302418665], [-77.37618818735287, 34.67543105220676], [-77.37598094135625, 34.675430115320985], [-77.37558282583154, 34.6754549467918], [-77.37515155607531, 34.67552872883664], [-77.37495889420727, 34.67554286911758], [-77.37479969043622, 34.67555122916028], [-77.37465016559591, 34.67557566534991], [-77.37443395808083, 34.67553085385056], [-77.37436727625848, 34.67551936389506], [-77.37431691131692, 34.67548992530374], [-77.37407711369409, 34.67531912356345], [-77.37389613611678, 34.67508044914612], [-77.37388255088123, 34.675074682121604], [-77.37387591986368, 34.67506316716894], [-77.37379635988248, 34.674965750514986], [-77.37369962538966, 34.6748212796038], [-77.3736344156683, 34.67482221764426], [-77.37336520296962, 34.67484771201185], [-77.37299459208303, 34.674893260755866], [-77.37248744131597, 34.6749661913626], [-77.37212761884179, 34.67498809414629], [-77.37169540576346, 34.6750180212366], [-77.37085911920492, 34.67523503187953], [-77.37061855864961, 34.67533984996453], [-77.36979628586226, 34.6754613957816], [-77.36958314999526, 34.675507679518745], [-77.3694107969088, 34.67554563541994], [-77.36896571096969, 34.67557316017149], [-77.36873145248202, 34.67558163625118], [-77.36861904812456, 34.67557935008944], [-77.36838253177064, 34.675520534705754], [-77.36785830848424, 34.675445848433085], [-77.36777234795593, 34.675560995386604], [-77.36758538053468, 34.67584209378783], [-77.36741125361065, 34.675951883782204], [-77.36735373033676, 34.67597254806945], [-77.36717374139499, 34.67598452839603], [-77.36705852757291, 34.67599239767921], [-77.36704996264069, 34.67598820500519], [-77.36703422595801, 34.67599171740202], [-77.36657156818528, 34.67597308620576], [-77.36647449118556, 34.67590899454166], [-77.36627576134994, 34.67595757493584], [-77.3661376366178, 34.67591294561938], [-77.36610794981927, 34.67588731369066], [-77.36598741633621, 34.67583148548631], [-77.36592792069571, 34.67573017039449], [-77.36590758972056, 34.675695827051925], [-77.36589395602677, 34.67567302803651], [-77.36595575030194, 34.675264507203], [-77.36583074808412, 34.67519432365734], [-77.36573299009471, 34.675041780297256], [-77.36553469701477, 34.675022806132766], [-77.36551985075357, 34.67499335569716], [-77.36549023026225, 34.67494215447586], [-77.36548294235016, 34.674840063064934], [-77.3655110633563, 34.674750867911555], [-77.36534928371809, 34.674630533913486], [-77.36532124597962, 34.67457032139784], [-77.36511302119848, 34.67441353009788], [-77.36508484938223, 34.67435809440087], [-77.3650595975024, 34.674325521613135], [-77.36488123788511, 34.67412062576433], [-77.36487097446246, 34.67410774834389], [-77.36478478290236, 34.673997771967265], [-77.36478454556608, 34.67399749280964], [-77.36469243112086, 34.67388858954778], [-77.36469475888345, 34.67386996678657], [-77.36467687429048, 34.673854151878736], [-77.36449765195417, 34.673671661674284], [-77.3645067713242, 34.67362046958442], [-77.36434190098123, 34.6734493700728], [-77.36428370369555, 34.67339798215324], [-77.36420931789924, 34.673403048198445], [-77.36412551385418, 34.673322660444015], [-77.36408500186243, 34.67331587241383], [-77.36400405580983, 34.67325210231216], [-77.36399835241482, 34.6732234490698], [-77.3639692706321, 34.673199109052874], [-77.3637650233235, 34.67304125486408], [-77.36377162934775, 34.67300377677007], [-77.36373507781563, 34.67297499559316], [-77.3635471222076, 34.67278239893229], [-77.36349006213523, 34.67278818763556], [-77.36330181534521, 34.67261751738781], [-77.36327648462174, 34.67259653839417], [-77.36325244623396, 34.67257587945565], [-77.36304926843697, 34.6724591623618], [-77.362990987543, 34.672422118503405], [-77.36274415066805, 34.67226522563731], [-77.36271396860771, 34.672241171214075], [-77.36267704853762, 34.672215978417604], [-77.36257622612436, 34.67215010730321], [-77.3624948876959, 34.67209306799333], [-77.36244522826667, 34.67205385045206], [-77.36224481162182, 34.67192371501884], [-77.36216287003805, 34.67187701445629], [-77.36203813539703, 34.67181638026101], [-77.36188627176853, 34.671695744101825], [-77.36172838231818, 34.67164111489464], [-77.36166011327477, 34.671624627635715], [-77.36151827544819, 34.67158484161242], [-77.36145458400158, 34.67155352321723], [-77.3612251103953, 34.671440702770774], [-77.36122227563706, 34.67141850864634], [-77.3611994371577, 34.67140165593289], [-77.36112442051112, 34.671390897611225], [-77.36088747348805, 34.67128204935113], [-77.36081624686231, 34.671253185023154], [-77.36072304106966, 34.67121153426598], [-77.36066220575894, 34.671190760477025], [-77.36053664521224, 34.671157928103895], [-77.36038997500827, 34.67109777308154], [-77.36033897912411, 34.67107506431506], [-77.36022116319158, 34.67100659431249], [-77.36013580320818, 34.67094255409017], [-77.3599367388792, 34.6708313498527], [-77.35987618560415, 34.67080610519477], [-77.35966759589482, 34.67067991696243], [-77.35964160167241, 34.67066435334793], [-77.35962171807634, 34.67065191103518], [-77.35944896670767, 34.67054367468346], [-77.35935928492077, 34.670487486597885], [-77.35911525819373, 34.67033500091351], [-77.35907400098122, 34.67031290399044], [-77.35904102968742, 34.67027860932686], [-77.35881409304915, 34.67011878599041], [-77.35882078916006, 34.669986717562196], [-77.35883585926099, 34.66981940871874], [-77.35893623941726, 34.669630535521165], [-77.35897817526353, 34.66948802482537], [-77.3590898314848, 34.6692971301978], [-77.35891314880917, 34.668969338042906], [-77.35888683898617, 34.668880141217905], [-77.3588225758898, 34.66884645921877], [-77.35860123962632, 34.668705805460235], [-77.35841590278255, 34.66862071997479], [-77.35820898678043, 34.668613579717906], [-77.35813277719328, 34.66856530665915], [-77.35793926316396, 34.66848041980781], [-77.35790062699851, 34.66845676694973], [-77.35793529231982, 34.66824423030696], [-77.35794253952082, 34.66823627647543], [-77.35814111819073, 34.66810760753117], [-77.35829158035767, 34.667944632914526], [-77.35841040699626, 34.667670087223485], [-77.35859787567355, 34.66741516747955], [-77.35858274799462, 34.66722270304641], [-77.35855882043917, 34.666933145839195], [-77.35859873540836, 34.66673667205732], [-77.35857915372313, 34.66644296552897], [-77.35856172720045, 34.66637095394374], [-77.35859213613287, 34.665954547172], [-77.35859224128451, 34.66595378077359], [-77.3585923189355, 34.66595319002992], [-77.3585920317465, 34.665951725466755], [-77.35857002028621, 34.66546944617244], [-77.35854922162972, 34.66527825418844], [-77.35854838450143, 34.66519859196907], [-77.35854236931789, 34.665091831461474], [-77.35854508144311, 34.66498548558882], [-77.35851630732814, 34.66482907688426], [-77.35847035445477, 34.66457008096749], [-77.35848479049072, 34.664506381372675], [-77.35846013056393, 34.66447811698302], [-77.35843561896498, 34.66442866968096], [-77.35841089038622, 34.664272840589675], [-77.35840740849326, 34.66419514522537], [-77.35840221875776, 34.66415218523122], [-77.35840434790286, 34.66412685395991], [-77.35841478337093, 34.66402861223318], [-77.35838903200883, 34.66385972894585], [-77.35838371809011, 34.66378918661869], [-77.35839682393325, 34.663738435840074], [-77.35840909982514, 34.66354200574132], [-77.35797671980946, 34.66306642620113], [-77.35774746122519, 34.66309989261241], [-77.3576598935629, 34.663083316792516], [-77.35761672426503, 34.66315338652215], [-77.3574452328705, 34.663124120546044], [-77.35738332857579, 34.662935618927484], [-77.35742664910286, 34.66283296494303], [-77.35756644714856, 34.662618926655206], [-77.3577021543723, 34.66256599047806], [-77.35772394831771, 34.66199785809269], [-77.35772621726296, 34.661947801044064], [-77.35757365010495, 34.66114691454026], [-77.35754552726927, 34.661128614157484], [-77.35714312961966, 34.66085093306636], [-77.35688584050858, 34.6608278762835], [-77.35684999540663, 34.660802159174615], [-77.35665775718715, 34.66066358402448], [-77.3565014642047, 34.660508991837034], [-77.35641966197849, 34.660439270461914], [-77.3562754199381, 34.660272189773906], [-77.35610662211724, 34.66013807203771], [-77.35587547553314, 34.65991566871642], [-77.35541423009523, 34.659879773190575], [-77.35482485750012, 34.65981433135205], [-77.35478600181719, 34.65977611341798], [-77.35475226262899, 34.65977268138578], [-77.35405400780202, 34.65907620446881], [-77.35400097125228, 34.659033680143835], [-77.35395539098221, 34.6589949739531], [-77.35384235767835, 34.65896440957185], [-77.3532547980968, 34.65869581342499], [-77.35299476019034, 34.65872925353001], [-77.35255913712439, 34.65842113754792], [-77.3521783612419, 34.65804897338256], [-77.35175264969848, 34.65770426815572], [-77.35136450016361, 34.65736368831787], [-77.35101384297832, 34.657106180131564], [-77.35087192644197, 34.65698121632114], [-77.35054331718109, 34.656692924130446], [-77.35025259478032, 34.656505276186664], [-77.3501171147496, 34.65638845963081], [-77.34957886211693, 34.656314780777805], [-77.34983411258719, 34.65589100544667], [-77.34982136645822, 34.65585947912993], [-77.34983944044161, 34.65578990062502], [-77.34995508067638, 34.65541911599775], [-77.34967262810355, 34.65521356413042], [-77.34957316841044, 34.655168771088036], [-77.34933039862297, 34.65510397413741], [-77.34931974263708, 34.65509639438683], [-77.34930940623678, 34.65508577846455], [-77.34913102096317, 34.6548958978578], [-77.34894956003765, 34.654713189594275], [-77.34851514341327, 34.65423432596159], [-77.34837892512955, 34.65408840303803], [-77.34823320509221, 34.653967552113286], [-77.3479744002947, 34.653741049991595], [-77.34773376769583, 34.653533082189426], [-77.34755479588216, 34.65342355881624], [-77.34737293458429, 34.653241671609706], [-77.34695005256404, 34.65282013166454], [-77.34679384819003, 34.65263363799262], [-77.34658113674173, 34.6525777381341], [-77.34648934323235, 34.652518988640075], [-77.34633636864254, 34.65239115597385], [-77.34620073196766, 34.65227818572186], [-77.34593930998646, 34.652255862179274], [-77.3458453714162, 34.65221504027037], [-77.34578826798675, 34.652193242025085], [-77.34551831727086, 34.65206898480785], [-77.34535648110824, 34.652034755057244], [-77.34535133223889, 34.652034681784784], [-77.34532689291667, 34.65201783611986], [-77.34516657574305, 34.651911977532926], [-77.34510519197164, 34.651865020858274], [-77.3449597506229, 34.651672002818444], [-77.34480236862115, 34.65169295365706], [-77.34467944938841, 34.651652854951614], [-77.34463402505216, 34.65165188660193], [-77.3445242223186, 34.65160221638302], [-77.34445792340664, 34.651572225527005], [-77.34443535672365, 34.6515620173004], [-77.34438740077094, 34.65154156204622], [-77.3443162481899, 34.651510782168955], [-77.34428258514492, 34.651496360211965], [-77.34419608448461, 34.65146163615148], [-77.34409930253446, 34.65138097246388], [-77.34397969840026, 34.65131594374443], [-77.3437582432034, 34.651277074924785], [-77.34363070212686, 34.65122344036691], [-77.34348066392847, 34.65115575259269], [-77.34340738270365, 34.65112441303032], [-77.34330574940276, 34.65105704827882], [-77.34326669873589, 34.6510052702617], [-77.34312872199874, 34.65087034975274], [-77.34310483316618, 34.650751640259855], [-77.34300262082215, 34.650703584562365], [-77.3428454782568, 34.65048723220927], [-77.34272636559723, 34.650352755077705], [-77.34259552474953, 34.650271121422634], [-77.34237011669228, 34.65013048528877], [-77.3423170011899, 34.6500150447517], [-77.34211067988991, 34.65001649969988], [-77.34189922867877, 34.649992710098495], [-77.34167195352519, 34.650143940171816], [-77.34129313162592, 34.649856314424134], [-77.34125194441079, 34.649827310719786], [-77.34121418417031, 34.64977025857418], [-77.34105582403369, 34.649466888876844], [-77.34097837567847, 34.64922077163527], [-77.340465095302, 34.64914756905773], [-77.34044688837258, 34.64913851202754], [-77.34044062660736, 34.649137246965836], [-77.34042522039498, 34.64913144317091], [-77.3401996647489, 34.64904022516428], [-77.34010073816926, 34.649009204792705], [-77.33995619976793, 34.648984816496395], [-77.34008408401525, 34.64892633318895], [-77.34013539429137, 34.648839781103895], [-77.34015852835066, 34.64883463591235], [-77.34023000906137, 34.64885589007336], [-77.34031033386233, 34.64882113218949], [-77.34043665115702, 34.64908757236347], [-77.34047344764632, 34.64907227028378], [-77.34082007224046, 34.64881170472382], [-77.34103468220042, 34.64887711153311], [-77.34125592319639, 34.648551340854475], [-77.3413551672855, 34.64815981048248], [-77.34142160082182, 34.6480387643314], [-77.34136756465739, 34.64773611181755], [-77.34141780417363, 34.647597351553415], [-77.34149903383245, 34.647443810732135], [-77.34151502094062, 34.64729387481602], [-77.34151543222244, 34.647286612893915], [-77.34152524749264, 34.64713466218839], [-77.34152893661876, 34.646982642784415], [-77.34153397319996, 34.64686927597882], [-77.34153921813486, 34.64681408422932], [-77.34155123641061, 34.6466682566267], [-77.34156489771698, 34.64650443740288], [-77.34156821699888, 34.64644257826674], [-77.34158925113907, 34.64628915853152], [-77.34160203969061, 34.64620549129064], [-77.34162355719278, 34.646012984648436], [-77.34165457338275, 34.64558942571325], [-77.34165501388088, 34.64558770570895], [-77.3416548271964, 34.645586695065234], [-77.34165475347972, 34.64558540184404], [-77.34162136283771, 34.64522267048993], [-77.34163641500115, 34.645167224842616], [-77.34159740088742, 34.64486668000671], [-77.3415752896244, 34.64475361765571], [-77.34155118164635, 34.64464231739224], [-77.3414433683569, 34.64453849004785], [-77.34127229357439, 34.644563169781534], [-77.34110707709173, 34.644458154889655], [-77.34107469108542, 34.64443756962403], [-77.34102009203782, 34.644407827615254], [-77.34085204243951, 34.644304317569336], [-77.34074503250865, 34.644249660928466], [-77.34070996236751, 34.64423939695368], [-77.34062031943856, 34.64418903223842], [-77.340562258877, 34.64404867162332], [-77.34046728219836, 34.64381162233072], [-77.34041325967897, 34.64364712565945], [-77.34036280617991, 34.64355075404009], [-77.34023853030985, 34.643264433722415], [-77.34023235938704, 34.643249958282986], [-77.34022887288529, 34.64324186683831], [-77.34021682950505, 34.64321428764011], [-77.34009465735475, 34.6429335397768], [-77.3399545690149, 34.64266569577633], [-77.33985584090925, 34.64245764298714], [-77.3398141820408, 34.64234073749077], [-77.33970648922411, 34.642267739705076], [-77.3395541307275, 34.64207705636188], [-77.33944041911548, 34.64193263560762], [-77.33928256872636, 34.64175123009363], [-77.33923584761574, 34.64169874389292], [-77.33907701846022, 34.64150402360781], [-77.3388722932653, 34.64130260118779], [-77.33864043123448, 34.64122031058416], [-77.33819914546518, 34.6411389432022], [-77.33805913649128, 34.64122309081769], [-77.33760513524587, 34.641078552449706], [-77.3375682659089, 34.64104685164961], [-77.33753363256035, 34.64101327013704], [-77.33748937917322, 34.64103132245784], [-77.33650403274558, 34.64085768388854], [-77.33622459667995, 34.64087134847058], [-77.33594601280562, 34.64092483534129], [-77.33588039422855, 34.641315233404974], [-77.33578229352618, 34.641439257025056], [-77.33570567795105, 34.64147539202866], [-77.33561051436712, 34.641612508641956], [-77.33553691423134, 34.64162424342754], [-77.33542375615156, 34.641665607748436], [-77.33533512676668, 34.641689019130816], [-77.33519869840848, 34.64171978776412], [-77.33510021380461, 34.64164863640367], [-77.33491457347, 34.641708252767664], [-77.33471885557456, 34.64178088398206], [-77.33450328325537, 34.641864374398764], [-77.33444629190382, 34.6419340059285], [-77.3342964648267, 34.642053781212304], [-77.334063664186, 34.642244712536254], [-77.33392640457514, 34.64217995114653], [-77.33344284403402, 34.64232569111775], [-77.33274360822406, 34.641938409234626], [-77.33258533513275, 34.64187857444277], [-77.3325358904267, 34.6418251492348], [-77.33249619053724, 34.641779563523386], [-77.33250186409803, 34.6417126768776], [-77.33197868882667, 34.640632315620344], [-77.33165132371053, 34.640415960562365], [-77.33150627765276, 34.64022739579016], [-77.33123902960043, 34.639800672709875], [-77.3308808076558, 34.63976731592396], [-77.33073581234108, 34.63964888791354], [-77.33034397197994, 34.63969762424924], [-77.33023224283733, 34.63972590213433], [-77.33011403576316, 34.63973177174059], [-77.3296090851708, 34.639811008841406], [-77.32947311725067, 34.639852539223256], [-77.32915591922188, 34.639922834539576], [-77.32900121757933, 34.63997226592144], [-77.32868859944114, 34.640257516934426], [-77.3284379964838, 34.640355885428185], [-77.32827134050875, 34.64043144502791], [-77.32817773279592, 34.640683971257204], [-77.32796996590955, 34.640817350258246], [-77.32789465346103, 34.64083853083128], [-77.32741068961755, 34.640962407144904], [-77.32728647878287, 34.64099830605032], [-77.32711140849548, 34.641083556269884], [-77.32668769918975, 34.64120488530461], [-77.32619499574798, 34.641161801358514], [-77.32607840489621, 34.641359104825014], [-77.32581351119046, 34.641356776142544], [-77.32547975602385, 34.64105398235537], [-77.32536464467246, 34.64099297662718], [-77.32495083709438, 34.64076864713219], [-77.32468147644468, 34.64077920140782], [-77.32444196024021, 34.64085935372606], [-77.32432098512339, 34.6408674549596], [-77.3240334969459, 34.64074070378438], [-77.32384853945263, 34.6409725135279], [-77.32363716641292, 34.64107305190184], [-77.32345541943971, 34.641050438191535], [-77.32336444154004, 34.641187774963], [-77.32328480653442, 34.64119652787051], [-77.32314390786782, 34.64109335595025], [-77.32304623500015, 34.641094821943994], [-77.3227948210492, 34.64094907510843], [-77.32254517780885, 34.64093873459791], [-77.32219164649177, 34.64113379727677], [-77.32197623558888, 34.641226021756935], [-77.32177775583914, 34.641309751404506], [-77.32158315007725, 34.641292015735914], [-77.32114444428751, 34.64141536809021], [-77.32097433548509, 34.641448658400634], [-77.32090905162805, 34.64156408867463], [-77.32053841104582, 34.64146700318283], [-77.32034493332833, 34.641502730481285], [-77.32015681058714, 34.64152890297228], [-77.31978381680399, 34.641834940062566], [-77.31977472469157, 34.64183944344991], [-77.31977259974107, 34.641841166855684], [-77.31976741065229, 34.64184505876289], [-77.31918266536566, 34.64209191807321], [-77.3189558111786, 34.64240939813669], [-77.31870755508129, 34.64279464178741], [-77.31877598953642, 34.642241440674354], [-77.3187779803256, 34.6419728187155], [-77.31879077532038, 34.641482447875674], [-77.31886491903481, 34.64111692902341], [-77.31890271409169, 34.641024965239154], [-77.3189462707276, 34.64091395067838], [-77.31899133073328, 34.640774026883975], [-77.31907892782169, 34.64066560695544], [-77.31914374254667, 34.64058267562357], [-77.31940127963519, 34.64027443906728], [-77.31945289599871, 34.64024810603188], [-77.31946885337554, 34.64021892407589], [-77.3194692817392, 34.64019011047619], [-77.31959809537341, 34.63988498997837], [-77.31966036762776, 34.63973039024839], [-77.31979951661067, 34.63930086665532], [-77.31960818068944, 34.6390142282138], [-77.31934188155279, 34.63851962721853], [-77.31921308311034, 34.63835175718087], [-77.31906185381547, 34.638299473074], [-77.31882569777693, 34.63797077351228], [-77.31867798396266, 34.637981752053264], [-77.31852857365897, 34.63800580740212], [-77.31837335526757, 34.63805891604339], [-77.31820659373093, 34.63804830208654], [-77.3177514757703, 34.63815034854731], [-77.31752038085361, 34.63825861468667], [-77.31745294899477, 34.638257932041675], [-77.31740674548175, 34.63829277751658], [-77.31719904009715, 34.63832069956453], [-77.3171275906, 34.63823179100967], [-77.31700237987174, 34.63813608332325], [-77.31685353761624, 34.63801674113345], [-77.31664767335866, 34.63769045299089], [-77.31661158598777, 34.637627918490494], [-77.31633149718697, 34.6374549233246], [-77.3161977262567, 34.63743327414324], [-77.31581178762706, 34.63747033754197], [-77.31569581043472, 34.63747751557508], [-77.31517612167363, 34.63754398187099], [-77.31507957204651, 34.63759704993907], [-77.31485389294096, 34.63779728665713], [-77.31417843722548, 34.63794689728935], [-77.313890368768, 34.63805185375364], [-77.31354988009028, 34.63808247861548], [-77.31329545315393, 34.63766040005313], [-77.31342433940415, 34.63724243856848], [-77.31343931779939, 34.63600646786442], [-77.31338962234024, 34.635959561822624], [-77.31263513524479, 34.635302800295094], [-77.31204125240613, 34.63521672645962], [-77.31173974104688, 34.63477960903673], [-77.3115243416617, 34.63452722641878], [-77.31134616139617, 34.634410954617685], [-77.31119692824007, 34.63419897024076], [-77.31098220566115, 34.63398369452116], [-77.31097187352131, 34.633616319060614], [-77.31121278603, 34.63352751069324], [-77.3116687368066, 34.63335943159165], [-77.31191032562195, 34.63329478759243], [-77.31197319546507, 34.63328148601132], [-77.31208583936615, 34.63332209947802], [-77.31231823982571, 34.6334058910908], [-77.3124363399043, 34.633401413874346], [-77.312614842639, 34.633533831545755], [-77.31306055368546, 34.63391505408657], [-77.31336208504374, 34.63386452544583], [-77.31384235606524, 34.63362816750691], [-77.31384387970282, 34.633365406950674], [-77.31410705416835, 34.63274911854646], [-77.31418192232219, 34.63261047595472], [-77.31426310365079, 34.63246398615919], [-77.31435552172907, 34.63239206432398], [-77.31439795104222, 34.63238867260217], [-77.314503105211, 34.63232994280098], [-77.31467435454887, 34.63240305995175], [-77.31467815869483, 34.63240476372735], [-77.3146795045927, 34.63240528119849], [-77.31468142506337, 34.632406655492], [-77.31468610467279, 34.6324140371489], [-77.31486692556149, 34.632803216761644], [-77.31491563749782, 34.633085465911854], [-77.31502066998625, 34.633204130027174], [-77.31555493718201, 34.63358416905533], [-77.31576128519183, 34.633418476717864], [-77.315885407676, 34.6334614658342], [-77.31624120913368, 34.6338138713887], [-77.31633346373002, 34.633722342436855], [-77.31655549347795, 34.63378490514124], [-77.31660503779902, 34.63375870249127], [-77.31659320054514, 34.633832570129925], [-77.31671369464267, 34.634117430240096], [-77.31672693755567, 34.63432056501962], [-77.31672131036753, 34.63465898114035], [-77.31669472574693, 34.63495791282343], [-77.3167927738834, 34.63549315692151], [-77.31691585530707, 34.63601234192707], [-77.31701411518333, 34.63630678956595], [-77.31719653667592, 34.63660443486419], [-77.31748199444915, 34.63680730236668], [-77.31758700411606, 34.6369792988598], [-77.3177035991052, 34.637056254304596], [-77.31806045265753, 34.63718997253862], [-77.31820505021199, 34.63722015235965], [-77.3184408896009, 34.6372564780669], [-77.31853616794666, 34.63727501165073], [-77.318595243331, 34.63727926773652], [-77.31890074306241, 34.63749659907355], [-77.31912635486233, 34.63737584247804], [-77.31923658560167, 34.63733230257372], [-77.31927105108144, 34.6372633778789], [-77.31944944970351, 34.63704055459613], [-77.3195399803017, 34.63694827809996], [-77.31957791512659, 34.636883137547784], [-77.31968327989628, 34.63684756502887], [-77.319731773892, 34.63685226292982], [-77.31994789095172, 34.6368977173157], [-77.32006959220104, 34.636940509747866], [-77.32022324593686, 34.6369190802927], [-77.32048671999726, 34.63697901194114], [-77.32077096215659, 34.637245219327106], [-77.32090616227256, 34.63729655812758], [-77.3214124600479, 34.637251578974706], [-77.32197832124604, 34.63722358832816], [-77.32204952671343, 34.63723585727243], [-77.32208536054503, 34.637258209765186], [-77.32216343507955, 34.63728882947892], [-77.322311748107, 34.63738400495731], [-77.32244399783853, 34.637658539936325], [-77.3221646754668, 34.63767505491245], [-77.32212388279159, 34.63760633318704], [-77.32189381721449, 34.63763726250053], [-77.32176429935541, 34.63769108569399], [-77.32181749468747, 34.63778829963451], [-77.32203901455226, 34.638149864299535], [-77.32225446562983, 34.63825694586817], [-77.32234664946502, 34.6382350094601], [-77.32257499127701, 34.63825899129143], [-77.32283848369912, 34.63804024936362], [-77.32263525982256, 34.63783717979307], [-77.32283281658724, 34.63794865181981], [-77.32282182347852, 34.63734403982883], [-77.32300690505274, 34.63722113215038], [-77.32301206415941, 34.637188031343655], [-77.32310526156101, 34.637159693062486], [-77.32329369363647, 34.637117380222705], [-77.3233056446059, 34.6371146550535], [-77.32331537091989, 34.63711928723592], [-77.32333153145993, 34.63712866750634], [-77.3235388844615, 34.63725077037472], [-77.32367239030597, 34.637346987219935], [-77.32375362332924, 34.63739961963448], [-77.3238935022531, 34.63747359828221], [-77.32404539005766, 34.637610465168194], [-77.32420713261396, 34.63764976262148], [-77.32422257091402, 34.63765125106109], [-77.32438807309335, 34.63772290111617], [-77.32465924879557, 34.637725407429514], [-77.32471079249936, 34.63773588061967], [-77.32475796897702, 34.637707290079874], [-77.32498506691431, 34.63769602320512], [-77.32502303310667, 34.63769665851874], [-77.32507154190752, 34.63766054110959], [-77.32524156187932, 34.637601893140555], [-77.3253296488759, 34.63762941715848], [-77.32540125193665, 34.63758185287051], [-77.32580081805035, 34.637456843272375], [-77.32590377238265, 34.63730013253435], [-77.32603454468193, 34.63717999226246], [-77.32615403642457, 34.63711936544181], [-77.32623558786429, 34.63707828143297], [-77.32650047723963, 34.63708334735138], [-77.32665553163108, 34.636920370982565], [-77.3269908014747, 34.636731285910265], [-77.32706198511934, 34.63669126425862], [-77.32710930982222, 34.636676812839255], [-77.32719833705133, 34.63659839167428], [-77.32735210920629, 34.63654190280864], [-77.32760367025467, 34.636471156363655], [-77.32765380046116, 34.636450159722486], [-77.32774906143814, 34.63637824394894], [-77.32779336264397, 34.63634808920158], [-77.32782435114221, 34.636343580096764], [-77.32793853788247, 34.6362739767021], [-77.32808403235384, 34.63625242672791], [-77.32812547971123, 34.63604923752175], [-77.32819918188581, 34.63597779792259], [-77.32828113180769, 34.63589899915508], [-77.32833330443478, 34.63584864106358], [-77.32835860546994, 34.63584150786455], [-77.32847569859622, 34.6357606832632], [-77.32865807091663, 34.63555419454803], [-77.32869764926048, 34.63549080086213], [-77.32870994574083, 34.6353330488424], [-77.32873887947724, 34.63519563373428], [-77.32891897729085, 34.635096415474564], [-77.3289490798221, 34.63505827208884], [-77.32899088429343, 34.635068041710824], [-77.3293251478359, 34.635208484328736], [-77.32956579663795, 34.63507786179085], [-77.32964006325774, 34.63541949460374], [-77.32988486294795, 34.63559410803695], [-77.33004987872334, 34.63562940411894], [-77.33030787617403, 34.63574987860157], [-77.33035078109376, 34.635819678931995], [-77.33040623004534, 34.63580989781626], [-77.33043621474333, 34.63577977520072], [-77.33063722000719, 34.63582660488685], [-77.3307342311456, 34.6358492011496], [-77.33086005838345, 34.63588512563749], [-77.33089300946435, 34.635894199696025], [-77.33090456732513, 34.635900402572624], [-77.33092039945667, 34.63589828062279], [-77.33106863096705, 34.63592036613191], [-77.33133776583611, 34.63595438316808], [-77.331398262991, 34.63596778601095], [-77.33143335238171, 34.63597245145582], [-77.33160804405058, 34.635993508098], [-77.33169810846698, 34.636022296899576], [-77.33172850032265, 34.636018217463615], [-77.33175902807952, 34.63601412254653], [-77.3320089380355, 34.63598093876942], [-77.33204875654056, 34.63601894476291], [-77.33211470126753, 34.63601260902263], [-77.33236850924092, 34.63601716439152], [-77.33242172427693, 34.63596566331576], [-77.33259662751976, 34.635965462980195], [-77.33267821748996, 34.63596536943373], [-77.33277245818368, 34.63595953597587], [-77.33294916520298, 34.635841536605504], [-77.33296995135144, 34.6358240768244], [-77.33298284626639, 34.6358223478973], [-77.33299293862592, 34.63580350640464], [-77.33316702661803, 34.63566068588567], [-77.33322309294067, 34.635490628576676], [-77.33358899123158, 34.634877737644594], [-77.33352439221545, 34.634659787326214], [-77.33366728328143, 34.6345145989509], [-77.33376210906005, 34.63454812330324], [-77.33370644840942, 34.63443962799549], [-77.3337856082183, 34.63430683351191], [-77.33387563694177, 34.634416413613934], [-77.33387773595516, 34.634577274369136], [-77.33387361232019, 34.63465224930232], [-77.33387619504573, 34.63483833085792], [-77.33388356783072, 34.63499519872803], [-77.3339893982867, 34.63550414397639], [-77.33406091391788, 34.63565697310669], [-77.33432841008609, 34.635980949366214], [-77.33463731119812, 34.63615670188227], [-77.33488315714501, 34.63592863167359], [-77.33491199975292, 34.63593055878074], [-77.3349330200919, 34.63593196320024], [-77.33506701412615, 34.6359409155559], [-77.33507439291049, 34.635942197385496], [-77.33507557535792, 34.63594148754365], [-77.33521153415509, 34.63595456728917], [-77.33524054416728, 34.63597254518814], [-77.33539499541347, 34.636072936044116], [-77.33543203078472, 34.63609202893937], [-77.33543639287355, 34.63611159258669], [-77.33543531220326, 34.63631237197543], [-77.33542795641502, 34.63643736094374], [-77.33557235813609, 34.63696218795815], [-77.3360074692342, 34.6370778478521], [-77.33606226574848, 34.637140287171775], [-77.3361213987018, 34.63717047228744], [-77.33622033667143, 34.63717726374891], [-77.3365257807697, 34.6373706387502], [-77.33685602117724, 34.63764033987131], [-77.33693808866872, 34.637702371283545], [-77.33712775511123, 34.637768101442354], [-77.33718447428939, 34.63778859028337], [-77.33721097749084, 34.6378137578338], [-77.33741612760133, 34.63790397563605], [-77.3375463229437, 34.63788954951724], [-77.33771492985673, 34.637905547264396], [-77.33799088950508, 34.63791408938894], [-77.33823447813157, 34.638128048335176], [-77.33839770180728, 34.638256713619626], [-77.33862450216321, 34.638406678676546], [-77.33883192982688, 34.638545064059606], [-77.33897466958759, 34.63862552150453], [-77.33907168300107, 34.638505088009325], [-77.33923964182377, 34.63835103249355], [-77.33926187638275, 34.638319200105144], [-77.33938134175341, 34.63812695117425], [-77.33951215856516, 34.63811409874441], [-77.33957326663368, 34.63797251880425], [-77.33976680223334, 34.637827900379776], [-77.3397715863415, 34.63782405777514], [-77.33977833034753, 34.63781937285738], [-77.34005897548113, 34.63764912960862], [-77.34024692175409, 34.63760061298521], [-77.34035573573433, 34.63753287408599], [-77.34044045596826, 34.637447685090535], [-77.34060297114206, 34.6373347231184], [-77.34063335027368, 34.637321338818026], [-77.34065320563086, 34.637312698233146], [-77.34066978411326, 34.6372819594909], [-77.3409041029369, 34.637075659399386], [-77.341046319415, 34.63701248731742], [-77.3411780568165, 34.63684591949878], [-77.34119262704145, 34.636815466906], [-77.34121926980521, 34.63678453568655], [-77.3413519030325, 34.636630554195335], [-77.34162687896779, 34.63630658465934], [-77.34166428652763, 34.63625497201469], [-77.34169187045337, 34.636216789319846], [-77.34180856949781, 34.63605606281326], [-77.34187182494401, 34.635970484898195], [-77.3419444077874, 34.6358804932282], [-77.34197148257327, 34.635874548105676], [-77.34218955839768, 34.63550744581254], [-77.34222076651616, 34.63544005520984], [-77.34222580631314, 34.635380370126306], [-77.34227799357748, 34.63516623358505], [-77.34233564166601, 34.63494329381619], [-77.34231948475374, 34.63486498509783], [-77.34229963312367, 34.63452623873128], [-77.34216924426528, 34.63423342620527], [-77.34201053720733, 34.63390928369034], [-77.34198767518592, 34.63372506876714], [-77.3419310398352, 34.63355696238035], [-77.34186166511809, 34.633103037864586], [-77.34193473270467, 34.63288834082447], [-77.34192526118443, 34.63242026947627], [-77.34196423864783, 34.63204029446409], [-77.34138296372471, 34.6314932409765], [-77.34128917692841, 34.63138356154265], [-77.34115228879361, 34.63130776275816], [-77.34098531182796, 34.63110723611303], [-77.34087306556087, 34.63105940664516], [-77.34085005499864, 34.63092725437721], [-77.34080562547877, 34.630782482729614], [-77.34074800175158, 34.6305192659314], [-77.34067846982188, 34.63029662848624], [-77.34050422534744, 34.63030592602241], [-77.34020522421648, 34.63008561992392], [-77.34004259013889, 34.63006998634168], [-77.33982717632361, 34.63012241759081], [-77.3395818763071, 34.63030704348397], [-77.33946819706216, 34.630396917480226], [-77.3392644755578, 34.630508093404394], [-77.33911761258501, 34.630540786619605], [-77.33911278384629, 34.63054967844207], [-77.33910578662342, 34.63054047658534], [-77.33910469616956, 34.63052872542034], [-77.3391127180473, 34.630321739060584], [-77.33912820814355, 34.62992205381656], [-77.33912916034991, 34.62989748567238], [-77.33912435025002, 34.62981057936988], [-77.33909535013942, 34.62918546129207], [-77.33911525132203, 34.62905540139392], [-77.33908686482846, 34.62885586126906], [-77.33889349765218, 34.628661413280554], [-77.33874563745076, 34.62838346692716], [-77.33828322564307, 34.62842708441879], [-77.33820804608501, 34.62843598442193], [-77.3381453456971, 34.62842403460003], [-77.33788374407243, 34.62841498165131], [-77.33781015422889, 34.62839054172128], [-77.33766085100808, 34.62823531999629], [-77.3376173469293, 34.627805259435824], [-77.33765208819536, 34.627568244209456], [-77.33772674035951, 34.62724013643852], [-77.33768729945169, 34.62703493985573], [-77.33726260422685, 34.626806697114105], [-77.33723758684327, 34.626791608736085], [-77.33722860141371, 34.62679516439091], [-77.33690487873073, 34.62682680573003], [-77.33721001259467, 34.626757583325016], [-77.33693124555529, 34.62640119175267], [-77.33712305773749, 34.62622140345993], [-77.33729023872245, 34.62616521957888], [-77.33765719082933, 34.62594654583594], [-77.33770506206452, 34.62593193040622], [-77.33780513149856, 34.62597878229812], [-77.33815304623144, 34.62611273864458], [-77.33847955560917, 34.62660075421531], [-77.33849705843545, 34.62660827603914], [-77.33894713146312, 34.62683644794482], [-77.339176009399, 34.62688102446291], [-77.33940655490596, 34.62680699802273], [-77.33952982612875, 34.626830699666286], [-77.33984445859896, 34.62702186876249], [-77.34008482865752, 34.62687977891588], [-77.34044256242635, 34.62681254418079], [-77.34060149149698, 34.626588328275275], [-77.34067707695563, 34.62638664719851], [-77.34093985791132, 34.62633474623799], [-77.34086328099603, 34.626832789064416], [-77.34074909189606, 34.627143136992544], [-77.34064996843668, 34.627844928149905], [-77.34052427971801, 34.627850743067725], [-77.3406352528295, 34.628086017423165], [-77.34070299832075, 34.62810888491427], [-77.3410431221275, 34.62833523121454], [-77.34144040372945, 34.62859287165243], [-77.34151952750753, 34.628631197307165], [-77.3415584202786, 34.62872002321642], [-77.34161936785836, 34.628873314972424], [-77.34178857869728, 34.62911042435337], [-77.34171409566525, 34.6293940329373], [-77.3416958197428, 34.62954515648869], [-77.34200595958978, 34.62981459077099], [-77.34205594797857, 34.62986522359272], [-77.34228725190391, 34.62983057575779], [-77.34232518119452, 34.62981026960714], [-77.34256023547233, 34.62975184905962], [-77.34276344834988, 34.629612350768994], [-77.34291064163425, 34.62953794725486], [-77.34318620301921, 34.62976254194769], [-77.34323611383259, 34.6298245061626], [-77.34344789265356, 34.630148611430684], [-77.34380130922484, 34.630784484478845], [-77.34384989593244, 34.63090539154034], [-77.34387665620395, 34.63093374095141], [-77.34392943589201, 34.63103029025603], [-77.34409686845449, 34.63156450055618], [-77.34407878357773, 34.631749986835636], [-77.34410973864695, 34.63186586527977], [-77.34425228872, 34.63240491686456], [-77.34470887071015, 34.63242525708412], [-77.34477353989614, 34.632436731730046], [-77.3448153006616, 34.632438191307095], [-77.3453563389227, 34.63236254887988], [-77.34539493413888, 34.632343147956625], [-77.34551508679982, 34.63220060181472], [-77.34592034107375, 34.63177197651389], [-77.34603513593112, 34.631661873853645], [-77.3461016889772, 34.63147222396019], [-77.34638609915656, 34.630904056347376], [-77.34642770000309, 34.63069396814703], [-77.3466404621547, 34.63057700826576], [-77.34664803932846, 34.63056608337061], [-77.34666909345353, 34.63055030787625], [-77.34685278031704, 34.63042363472695], [-77.34692208489689, 34.63038559549042], [-77.34708774360983, 34.63023433736018], [-77.34719265324642, 34.630139189791706], [-77.34722844301275, 34.63010716445741], [-77.34728178158885, 34.63004416927808], [-77.34744994313573, 34.629826727030334], [-77.34753537477619, 34.62972652506952], [-77.34765105304893, 34.62957145591449], [-77.34782060851825, 34.62932562974033], [-77.34794944787343, 34.62912682587235], [-77.34811079611887, 34.62892936155473], [-77.3483365584473, 34.62863330941622], [-77.34840745415079, 34.62853913647212], [-77.3484630047973, 34.62849687744659], [-77.34861214092697, 34.628363492712914], [-77.34873508633873, 34.62825805002464], [-77.34880663942783, 34.62824463642216], [-77.3490173063069, 34.62806966534109], [-77.34918322491315, 34.627929037803185], [-77.34929578001089, 34.6276575630161], [-77.34917076280493, 34.62725707032152], [-77.34916776726521, 34.627247415749586], [-77.34917051728995, 34.627239481174186], [-77.3491794725671, 34.627239819228244], [-77.34945492635408, 34.62706200776395], [-77.3495129562405, 34.626902508219175], [-77.34974227838939, 34.62689918412152], [-77.34994334358706, 34.62687516215458], [-77.35005094068939, 34.62684237696742], [-77.35013852250599, 34.62681937258246], [-77.35033140165832, 34.62667131268205], [-77.35054119974284, 34.6265281410037], [-77.35060017535322, 34.62639004751882], [-77.35107874733549, 34.62577456470912], [-77.3511103948107, 34.62574366838495], [-77.35111638432377, 34.625730790959004], [-77.3511271480265, 34.62571800250015], [-77.35162193257496, 34.625103880086606], [-77.35176689736909, 34.625003774793086], [-77.3518155121917, 34.624779436071584], [-77.35187671559137, 34.62443913350634], [-77.35207474635742, 34.624172019528224], [-77.3522144392725, 34.62408726952802], [-77.35296198481976, 34.623777927686], [-77.35317780694982, 34.62365235760669], [-77.35326753948566, 34.62342760523352], [-77.35348924847519, 34.62346527295076], [-77.3542141828105, 34.622920720083066], [-77.3548448274858, 34.62275774092167], [-77.3554551736639, 34.622380118183116], [-77.35563363381041, 34.622096539076495], [-77.35600293947832, 34.62164423779335], [-77.35619577256949, 34.621372366782595], [-77.35638753161358, 34.620777753731595], [-77.35640739366868, 34.62073694699796], [-77.35641232771458, 34.62072496218282], [-77.35642281359202, 34.620693260078276], [-77.35653085838291, 34.62060287515447], [-77.3569033393515, 34.62033378862148], [-77.35721148462828, 34.62023514985609], [-77.35765376088492, 34.61970851424787], [-77.35786484435305, 34.61953229419297], [-77.35794789862854, 34.61924164007684], [-77.35800043985623, 34.61919324887276], [-77.35827186619919, 34.61906271798924], [-77.35833347146382, 34.61876160720183], [-77.35836330774711, 34.618723306253436], [-77.35839490448069, 34.618683924108204], [-77.35845932772968, 34.618600558628856], [-77.35854292903377, 34.61857210852456], [-77.35859206002559, 34.61858055635085], [-77.358647652451, 34.61856398444641], [-77.35878915468041, 34.618599615475425], [-77.35889725063949, 34.618564082384765], [-77.35943009701617, 34.6184448957428], [-77.35957767273479, 34.61838910376192], [-77.35977968335106, 34.61812894264713], [-77.35980070791703, 34.61794133613729], [-77.35978806297527, 34.61770318436768], [-77.35972881169457, 34.617549374090736], [-77.35957814096948, 34.617422285188866], [-77.35954379937506, 34.617350806502714], [-77.35949668925927, 34.617320563094054], [-77.35945879107015, 34.617030208075434], [-77.35918409872687, 34.61709493618162], [-77.35890016532602, 34.61698185352415], [-77.35884489088203, 34.61693066766349], [-77.35879000912846, 34.61686960104893], [-77.35844293250929, 34.61662309784241], [-77.35844417463433, 34.61657098975397], [-77.35839596099714, 34.61656541731143], [-77.3582123782459, 34.61642951443477], [-77.35819893001434, 34.61642924080161], [-77.35802456753255, 34.616258747907196], [-77.35802366553436, 34.61623546703135], [-77.35800193948441, 34.61621415463377], [-77.35778622845515, 34.61586849213754], [-77.3577743377272, 34.615691064711356], [-77.3576664974805, 34.61546116887493], [-77.35744268185323, 34.615247126293596], [-77.35721404631897, 34.615239817391945], [-77.35696646589031, 34.6151373464873], [-77.35721420328227, 34.61493485191832], [-77.35741408894354, 34.61486362760439], [-77.3576113513814, 34.61462000143666], [-77.35782264992332, 34.61439550668474], [-77.3580028923522, 34.61432772522089], [-77.35836335131523, 34.61405076248987], [-77.35846839467341, 34.613995494473336], [-77.35879145008771, 34.61396165271323], [-77.35883483935568, 34.614019390627185], [-77.35896982269256, 34.61423225951408], [-77.35913906698497, 34.614400161738224], [-77.35927696631853, 34.61470611025679], [-77.35957939005456, 34.614849887068786], [-77.35979994053181, 34.614542433290104], [-77.36004491040421, 34.614617649193676], [-77.36036788758382, 34.61460422163579], [-77.36074590037472, 34.6145760321885], [-77.36076208959675, 34.61457648660927], [-77.36077694787757, 34.61457299923671], [-77.36099734090915, 34.614557280804945], [-77.36115628609747, 34.61455982361495], [-77.36116863893807, 34.61454592446226], [-77.361290683192, 34.61451506172851], [-77.36153133402652, 34.614459760738455], [-77.36155052355144, 34.61445420747128], [-77.36157442510205, 34.614448483721766], [-77.3619446724783, 34.61453952495202], [-77.36230669795242, 34.614403533517354], [-77.3623389249426, 34.614397951396725], [-77.36235974378928, 34.61438360734721], [-77.36239505404063, 34.61435610931552], [-77.3627332615461, 34.61406604144174], [-77.36284191455451, 34.61398421927798], [-77.36294803697564, 34.61385195976106], [-77.362850683825, 34.613739661525074], [-77.36279248837472, 34.61344979578659], [-77.36276782149588, 34.61341643794565], [-77.362733576017, 34.613366253483505], [-77.36267752703922, 34.61325406627353], [-77.36268584827178, 34.613092129474275], [-77.36270032452593, 34.61303850780413], [-77.36270927989597, 34.613010878388565], [-77.36273375659462, 34.61296477768897], [-77.36278341719976, 34.612867710650164], [-77.36281616982939, 34.6128095560237], [-77.36286181114306, 34.61272851683686], [-77.3629462707481, 34.61257855194613], [-77.36301859814, 34.612450129138196], [-77.3630763710936, 34.61234754799417], [-77.36312825648946, 34.6122481966171], [-77.36317111769887, 34.61216775838065], [-77.36319722327882, 34.61211787490925], [-77.36330494696088, 34.61191222207753], [-77.36332052487924, 34.611882482676265], [-77.36343774530721, 34.61165869829402], [-77.36352282489048, 34.61136177022313], [-77.36356326980139, 34.611259588566064], [-77.36359080721579, 34.61121211085175], [-77.36366129383362, 34.61105296835318], [-77.36381294921608, 34.610643170812565], [-77.3640591571202, 34.610295581305884], [-77.36418192041418, 34.610138123447946], [-77.3643117656191, 34.609986760360435], [-77.36454078668095, 34.609623647027846], [-77.36471505485596, 34.60935204983009], [-77.36493670679802, 34.60914376550307], [-77.36505531761001, 34.60887851005128], [-77.36510059855706, 34.60880656530764], [-77.36525505170816, 34.60859146535619], [-77.36544118588446, 34.60845626556316], [-77.3654949166086, 34.60843146460006], [-77.36555070255086, 34.60838263557088], [-77.36576882844989, 34.608221617169235], [-77.36588923423912, 34.608049020462744], [-77.36618587410469, 34.60776146688876], [-77.36657857897913, 34.60738553590737], [-77.36663799392808, 34.607334063747544], [-77.36667784975448, 34.60730584382686], [-77.36683074807212, 34.60718458873045], [-77.36707212638737, 34.60699865353661], [-77.36713610309555, 34.60694959708403], [-77.36733247325245, 34.60685243196673], [-77.36746635805626, 34.60679722777185], [-77.36772909607373, 34.60665371151677], [-77.36818656122432, 34.60637842139724], [-77.36825482990709, 34.606357406421985], [-77.36828486450477, 34.606323077289595], [-77.36839697991442, 34.60627459566527], [-77.36864905260349, 34.60616366725953], [-77.3689494907302, 34.60609406698723], [-77.36904324015866, 34.60605765462732], [-77.3692500273655, 34.605929066586], [-77.36958189797267, 34.60583497970544], [-77.36958805711376, 34.605678521508125], [-77.36983176185609, 34.60544068095271], [-77.369937866504, 34.60531783157274], [-77.37009861934122, 34.605180437946274], [-77.37022603878222, 34.60507618607978], [-77.3704474675805, 34.60494410556782], [-77.37062034063285, 34.60463334350433], [-77.37080984600235, 34.60443294698376], [-77.37104051582523, 34.6041956723912], [-77.37114580349586, 34.60389712704247], [-77.37116801585883, 34.60358776559977], [-77.37092919774359, 34.60336258745381], [-77.37062096172937, 34.60291669582671], [-77.37037727425329, 34.60317967840917], [-77.37017434136192, 34.60310320902639], [-77.36983272856527, 34.60283513720152], [-77.36947548719058, 34.60310753734925], [-77.36939567889192, 34.6031127602308], [-77.36904437721778, 34.60306684987776], [-77.36865725509877, 34.603272853218456], [-77.3686408345998, 34.60327762890696], [-77.36825612021175, 34.60304503619478], [-77.36821218808531, 34.60295211052407], [-77.3680912914908, 34.60292215676236], [-77.36787589476512, 34.60251385874929], [-77.36746805106895, 34.60255435493385], [-77.36697382647652, 34.60255068281357], [-77.36667977357314, 34.6025939142185], [-77.36652973574519, 34.602459571997386], [-77.36636050624878, 34.60232226010606], [-77.36608482343334, 34.602153916572675], [-77.36589177171071, 34.60197409998821], [-77.36575393481209, 34.60170908049258], [-77.36569543876192, 34.601568905554146], [-77.36547519950366, 34.60120059070378], [-77.3654033891593, 34.601084459375066], [-77.3652805699248, 34.60077952631369], [-77.36549831607348, 34.60039205419455], [-77.36554391928748, 34.600366167057196], [-77.36589260454498, 34.5999936633401], [-77.36602840076179, 34.59996901317562], [-77.36726505995998, 34.5996446751846], [-77.36745220856093, 34.59959938314618], [-77.3674692400773, 34.59959327372495], [-77.36748089521438, 34.59960103816975], [-77.36793738178307, 34.59954786149318], [-77.36899829103388, 34.59944622457394], [-77.36904576578642, 34.59943666514319], [-77.36907185740145, 34.59941259013116], [-77.36955759075849, 34.59961222574849], [-77.36976328646288, 34.60005811295886], [-77.3697102279993, 34.600141675164984], [-77.36971202878733, 34.60027246535773], [-77.36983369233616, 34.60025025986379], [-77.37000736730037, 34.60094799846363], [-77.37024573648513, 34.6013184943287], [-77.37033053679656, 34.60143714351275], [-77.37047018580105, 34.60173046115305], [-77.37045131156458, 34.60191631882448], [-77.37062132501887, 34.601915144833356], [-77.37077517978193, 34.60211109426777], [-77.37078611478125, 34.60235639201579], [-77.37119353097962, 34.60224279652765], [-77.37140944347077, 34.602297741560015], [-77.37152667921315, 34.60230112958661], [-77.37180359206485, 34.60224016644845], [-77.37218074589924, 34.60233321375729], [-77.37218091159687, 34.60235125506099], [-77.37219767789196, 34.60236332647499], [-77.37222506207587, 34.60235632656451], [-77.3727058545146, 34.60255921364228], [-77.37298586989638, 34.602558663168935], [-77.37322567035243, 34.602440978264134], [-77.37330973192302, 34.60217059715526], [-77.37338014403393, 34.602119880804835], [-77.37352750123898, 34.601980542689176], [-77.37357726756791, 34.601937109917486], [-77.3735857232905, 34.601927667759895], [-77.37361320839045, 34.60191460332334], [-77.37377436158292, 34.601842437789735], [-77.37387111982522, 34.601769376234024], [-77.37401174206073, 34.601644915455246], [-77.37410642539741, 34.601564325371825], [-77.37416859774413, 34.60149877489981], [-77.37434476239781, 34.601362105419255], [-77.37453934705542, 34.60114435286611], [-77.37454961952983, 34.60112863260814], [-77.37456284261444, 34.601117269422296], [-77.37461487131065, 34.60107743957939], [-77.37495705388348, 34.60083207871995], [-77.3751135868226, 34.60080568240264], [-77.37522056911861, 34.60033795300605], [-77.37524573964627, 34.600193469904355], [-77.37499479419864, 34.599845382236765], [-77.37495454779987, 34.59896506219853], [-77.37456362036761, 34.59866595657974], [-77.37453324264958, 34.59863060596977], [-77.37451238949711, 34.59860087322391], [-77.37421770976644, 34.59816700922154], [-77.37394821077335, 34.59783302511376], [-77.37377572682885, 34.59766533079127], [-77.37355744662707, 34.597275481314774], [-77.37357075389147, 34.59703827830671], [-77.3735784772872, 34.59682437305963], [-77.37363167791845, 34.59618038207098], [-77.37377642638155, 34.59553952262699], [-77.37396691455154, 34.5954881630502], [-77.37406391311914, 34.59526899573847], [-77.37456489411463, 34.594680222712725], [-77.37484277809021, 34.59460701372302], [-77.37495901323504, 34.59459401829465], [-77.37499250986929, 34.594674546357346], [-77.3749980096606, 34.594751933124336], [-77.3747933125366, 34.59516391804698], [-77.37489864249585, 34.595637984031214], [-77.37520004531999, 34.59595444384027], [-77.37535263629246, 34.596099827109775], [-77.37549448559827, 34.59660816228705], [-77.3761407159981, 34.5964891046122], [-77.37626934968984, 34.596510927567586], [-77.37653480724533, 34.59651906350354], [-77.37683656339311, 34.596468291084435], [-77.37692893657731, 34.59641919600698], [-77.37725704923477, 34.59615381237871], [-77.37750999888893, 34.59647075858131], [-77.377080119721, 34.596695652144305], [-77.37692880296144, 34.59687794324768], [-77.37689909442503, 34.59695135983144], [-77.376864500053, 34.596988325779], [-77.37667082616792, 34.597162965910115], [-77.37637513817313, 34.5974833925762], [-77.37646322684043, 34.597818564890495], [-77.37647476309499, 34.597957826821094], [-77.37681851140712, 34.598268636734694], [-77.37687655051776, 34.59831611445081], [-77.37674623523108, 34.59870361188367], [-77.37669696943794, 34.598886153545955], [-77.37650194954976, 34.59916336834997], [-77.37692792342293, 34.599911183809496], [-77.37693542110348, 34.59994195346147], [-77.3769442056793, 34.59994877434667], [-77.37771603225053, 34.600353408708514], [-77.3779376603785, 34.600415994081544], [-77.37811013848008, 34.60039656076657], [-77.37828154757027, 34.60042055569328], [-77.37830719009816, 34.60042413165403], [-77.37837345289778, 34.60045107813668], [-77.37850422332666, 34.600520407431816], [-77.37853350408855, 34.600537361125006], [-77.37862278297831, 34.60055604457974], [-77.37882279209748, 34.60060858579606], [-77.37889830349863, 34.60066615270122], [-77.3790764432292, 34.60072332201342], [-77.37929241770368, 34.60068599784994], [-77.37942680905485, 34.60071997125214], [-77.37948947037741, 34.60071322507477], [-77.37960389317894, 34.60075022590201], [-77.37968651213667, 34.60078371515109], [-77.37971220483489, 34.60079594769072], [-77.37980541013027, 34.60081019765173], [-77.38008059398177, 34.60093520633], [-77.3801853600252, 34.600868287098365], [-77.38033234917825, 34.60088763956745], [-77.38047472012752, 34.600911770411734], [-77.38056770249722, 34.60091263136974], [-77.38065766186315, 34.60091487584245], [-77.38067177797177, 34.6009211200467], [-77.38069480480094, 34.600919120135565], [-77.38086883438882, 34.600936550392404], [-77.38098255274355, 34.60094262568724], [-77.38126294939497, 34.60095876155323], [-77.38165413098244, 34.60096518401627], [-77.38165706859834, 34.60096340123728], [-77.38167410301149, 34.60094712360503], [-77.38185417156829, 34.60077637904], [-77.38190306345138, 34.6007728586018], [-77.38205125762688, 34.60066006526739], [-77.38215707638575, 34.60058527574949], [-77.38219044134377, 34.600466492204056], [-77.38224837802315, 34.60038829428691], [-77.38234242294125, 34.60034328915061], [-77.38236314427586, 34.60044160216547], [-77.38239476189308, 34.600491610140246], [-77.38244540835359, 34.60051598164603], [-77.38252636088012, 34.60075537986255], [-77.38262395996347, 34.60082857738417], [-77.38283942438485, 34.60098498106707], [-77.38294556848919, 34.60109242170222], [-77.3832334762279, 34.60130664641591], [-77.38358959728684, 34.601154937685166], [-77.38362762961158, 34.6011529889087], [-77.38365332575624, 34.601132459415645], [-77.38390018022356, 34.601200153733956], [-77.38402174065624, 34.60120077773541], [-77.38420746555288, 34.60122498952465], [-77.38422532793635, 34.60122758408608], [-77.38441584057115, 34.601306726214], [-77.38473038107942, 34.60128837401118], [-77.3848099661728, 34.60128453180892], [-77.3849389984831, 34.60120505203785], [-77.385204108924, 34.60116994096698], [-77.38539116833869, 34.6010557791061], [-77.38540119317919, 34.60104114099438], [-77.38542650959567, 34.60103421030788], [-77.38559825282094, 34.60104285385487], [-77.38572129618159, 34.601098711653776], [-77.38585717355869, 34.60121168475803], [-77.3859488577181, 34.601245305823014], [-77.38599233676577, 34.601243032403374], [-77.3861572904333, 34.601346138663644], [-77.38619353624965, 34.60137099783944], [-77.38638641806082, 34.60146912593573], [-77.38676448948107, 34.60148817206914], [-77.38678053604534, 34.601490972165614], [-77.38679103057896, 34.60149032752315], [-77.3868413404615, 34.60149438006991], [-77.38717462844699, 34.6016690664038], [-77.3873375151644, 34.60167194831806], [-77.38772702355382, 34.60153717441228], [-77.38796289586534, 34.60152402020325], [-77.3880851233484, 34.60144672910141], [-77.3882782095327, 34.60137215587761], [-77.38835704360488, 34.60135073068517], [-77.38844571447024, 34.601358608100455], [-77.38865371202833, 34.60133808112956], [-77.38875116305695, 34.601359706819125], [-77.38897800444612, 34.601366544106035], [-77.38937477061025, 34.601376356396415], [-77.38953940293898, 34.601370695736634], [-77.38969623219347, 34.60133841724667], [-77.39010708837458, 34.601448119186955], [-77.39032762196172, 34.6015449318785], [-77.39076346723402, 34.60173307124999], [-77.39111583768535, 34.60177326504527], [-77.39185384335877, 34.601991294115415], [-77.39190405587819, 34.602015449340804], [-77.39191549907369, 34.60202416982104], [-77.3926923121935, 34.60191371163149], [-77.39271051088664, 34.60190225122226], [-77.39308645516346, 34.601695883465965], [-77.3932287952345, 34.601575868063435], [-77.39334979185047, 34.60154599728291], [-77.39348058708205, 34.60157836415083], [-77.39382477890214, 34.60139039706121], [-77.39387472437093, 34.6013831661611], [-77.39391562537236, 34.60136755168959], [-77.39397495097052, 34.601314936202236], [-77.39407179265638, 34.6012812663424], [-77.39409732783074, 34.60126978003162], [-77.39424490528178, 34.601250203567446], [-77.39426885460405, 34.60125262637911], [-77.39430612078843, 34.60122703151299], [-77.39457179893334, 34.60113062864393], [-77.39466298306488, 34.60112857283908], [-77.39486344899399, 34.60097085120026], [-77.39505711879156, 34.600883957605824], [-77.39513589904446, 34.600807791032096], [-77.39518548567611, 34.600715777286965], [-77.39525419196923, 34.600670853718576], [-77.39540761862152, 34.60063673342449], [-77.39545125337159, 34.6006209927209], [-77.3957849228275, 34.60056419774842], [-77.39584537345773, 34.600553172547365], [-77.39604500101308, 34.60037676296436], [-77.39635579072305, 34.60024767782198], [-77.39657387960933, 34.600090949782], [-77.39663362963196, 34.60006895947149], [-77.39668790977694, 34.60001602949149], [-77.39688756617151, 34.59989468322213], [-77.3970277537561, 34.599837294064535], [-77.39726402337142, 34.59973687362777], [-77.39742187269805, 34.59967412735455], [-77.39749799713647, 34.59961508245035], [-77.39770470105537, 34.5995032593431], [-77.39810926680515, 34.59933626546044], [-77.39821010622026, 34.5993334908217], [-77.39832827062729, 34.599286009777984], [-77.3987733218793, 34.59910670182237], [-77.3989983330058, 34.59899733273167], [-77.3993592953304, 34.59887570572333], [-77.39939244302869, 34.59887038079576], [-77.39941079480013, 34.59885233625582], [-77.39944491196422, 34.59882764414478], [-77.39978655587844, 34.59848407701316], [-77.39986884455693, 34.59843055919894], [-77.39998283378587, 34.59832546389015], [-77.39999589426306, 34.59809806212105], [-77.4000740640758, 34.597887728257604], [-77.40010598397954, 34.597802663941714], [-77.40009310115536, 34.597672694823785], [-77.40018067174745, 34.59751290113524], [-77.40020428773511, 34.59746980795579], [-77.40023455042083, 34.59744000020882], [-77.40037772353146, 34.597337518897504], [-77.40046032233562, 34.597284124807246], [-77.40057477415638, 34.59721059625769], [-77.40089742784315, 34.59699675682913], [-77.40096887350572, 34.59697457398162], [-77.40099982242079, 34.596938355006166], [-77.40103346186994, 34.596900159164605], [-77.40136297005768, 34.59646128433687], [-77.40137942912727, 34.59644339877504], [-77.40138483955363, 34.59642488608322], [-77.40156001658107, 34.59621114402566], [-77.40157054924461, 34.59619715043572], [-77.40157870465586, 34.5961846263329], [-77.40161651504468, 34.596118301793865], [-77.40171289334096, 34.595952976849176], [-77.40173152795418, 34.59592277922772], [-77.40175706145894, 34.5958798851086], [-77.40198594354999, 34.59548900294642], [-77.40205823699613, 34.59537847261028], [-77.40215114625448, 34.59517540005179], [-77.40227311349186, 34.59502299079681], [-77.40229098541892, 34.594869751019246], [-77.40233023787252, 34.59478312406986], [-77.40234818524833, 34.594742738929625], [-77.4023973847306, 34.59463349107621], [-77.40243373993307, 34.59457523777607], [-77.40248327244211, 34.594501344421275], [-77.4025452239957, 34.59442474386999], [-77.40271526346183, 34.59429323636624], [-77.40283029882036, 34.5942108791335], [-77.40293930458336, 34.59418310257685], [-77.40312431230043, 34.59405101165627], [-77.40324890940812, 34.59394202169137], [-77.4034443940631, 34.59358024570405], [-77.4035576714597, 34.592897648769245], [-77.40365652775311, 34.59270048155625], [-77.40352034609663, 34.592497027162324], [-77.40341101382454, 34.59231133597074], [-77.40337814363491, 34.592267812686906], [-77.40334334266255, 34.592108813756795], [-77.40334006261799, 34.59210204480802], [-77.40333333984647, 34.59206711249738], [-77.40330735414534, 34.59192971304897], [-77.40330196371535, 34.59190249720139], [-77.40330126285404, 34.59151256925917], [-77.40329163424869, 34.591434492958605], [-77.4032906267217, 34.59105498176803], [-77.40326589168357, 34.5907066131631], [-77.40325704615339, 34.59055308675521], [-77.40327143352886, 34.59020860005085], [-77.40333329649414, 34.59005217313637], [-77.40341298457332, 34.58984945963709], [-77.40351994256004, 34.58974816132272], [-77.4037273461779, 34.589470767975754], [-77.40383286373367, 34.58939211648722], [-77.40393063535029, 34.58926431569291], [-77.40383331588764, 34.589164176173824], [-77.40372733525138, 34.58903249332103], [-77.40367675864246, 34.58887637871932], [-77.4036624899624, 34.588808576661506], [-77.40362132208526, 34.588672091135585], [-77.40361401490733, 34.58858294226103], [-77.40360703978136, 34.58846186422115], [-77.40360510261871, 34.58833046241292], [-77.40368973745595, 34.588025353710265], [-77.40372730833005, 34.58792784718934], [-77.40381470917427, 34.587676919243506], [-77.40386911367288, 34.587574890352954], [-77.4039041760792, 34.587379247008094], [-77.40400055689281, 34.58713134436203], [-77.40403204524681, 34.58703059052252], [-77.40412132842864, 34.58671829194045], [-77.40412994477754, 34.586697379320455], [-77.40412980834466, 34.58668811452035], [-77.40413324630055, 34.58667477581892], [-77.40422303076109, 34.586359676567156], [-77.4042860420625, 34.58624098990826], [-77.40430520563606, 34.58604007912675], [-77.40435787624877, 34.5858060458252], [-77.40436434598597, 34.58564241544234], [-77.40435386334497, 34.58538204886494], [-77.40434900207181, 34.585137386716184], [-77.4043361261694, 34.58496003240297], [-77.40426075446423, 34.584696624072194], [-77.4042568712444, 34.584400778981944], [-77.40412125961039, 34.58415756268142], [-77.40411682594751, 34.58414253055029], [-77.40399711669095, 34.583868987682436], [-77.40372720742666, 34.58340580576281], [-77.4037036631977, 34.58337837595099], [-77.40368219750425, 34.58335610543428], [-77.40333316916404, 34.58307224684363], [-77.40326392083821, 34.583066511400965], [-77.40293913414827, 34.58274449741755], [-77.40274293231167, 34.58285391949379], [-77.40226851353808, 34.582837515490866], [-77.40215107448223, 34.583070625744625], [-77.40183085796545, 34.58311916823579], [-77.40170397092305, 34.583159830883524], [-77.40136301164625, 34.582991915345104], [-77.40113685322211, 34.58311796565922], [-77.40075769755529, 34.582928990618726], [-77.4006119812156, 34.5829101156644], [-77.40057495024159, 34.58289619559453], [-77.40040049704555, 34.58279255539593], [-77.40010932927039, 34.58267511762206], [-77.39978689053893, 34.582795519460745], [-77.39941359557218, 34.58312293448703], [-77.39909767263227, 34.583275041079865], [-77.3989988107906, 34.58328860653948], [-77.39886335560804, 34.58334827692058], [-77.39832467002444, 34.5834028086061], [-77.39821073808983, 34.583418145566526], [-77.39801236491945, 34.58353884658522], [-77.39772245841823, 34.583689969392], [-77.39742264836403, 34.583809752226514], [-77.397191020073, 34.584043182806276], [-77.39675749700696, 34.58435528938417], [-77.39667794477435, 34.58441353684235], [-77.39663453529599, 34.58444687674189], [-77.39643830623675, 34.5846127583491], [-77.39624047351599, 34.584776234788706], [-77.3961751588826, 34.58479349577988], [-77.39612125740194, 34.58487164571011], [-77.395846415924, 34.585005284557205], [-77.39560136463804, 34.58510718489835], [-77.39514740896995, 34.58534068904638], [-77.39505830311876, 34.58535349386444], [-77.3950123173421, 34.58540664047853], [-77.39494255391605, 34.58546624726098], [-77.39466423363152, 34.5856494918909], [-77.39443237039293, 34.58571459000314], [-77.39431237518234, 34.585981717620484], [-77.39427014929699, 34.58607788099053], [-77.39417478415513, 34.58632340668372], [-77.39408857335681, 34.58643856952763], [-77.39397176108326, 34.58677684865695], [-77.39396109795088, 34.58688152720546], [-77.39393465672529, 34.586948520103476], [-77.39378317125376, 34.587331760833344], [-77.39348187317574, 34.58789673477574], [-77.39336619737499, 34.5881164337023], [-77.39336008087793, 34.588241925777524], [-77.39335678180977, 34.588377127087256], [-77.39348182497498, 34.588384269147745], [-77.3937063013984, 34.5886165608419], [-77.39380207434388, 34.58868224106174], [-77.3938758491025, 34.58875034267659], [-77.39402817575092, 34.58873425471751], [-77.39426990682475, 34.58877704913867], [-77.39441776776536, 34.58877920410191], [-77.39446693721383, 34.58877334475604], [-77.39453878695119, 34.588786186645336], [-77.3946639625035, 34.588830054730956], [-77.39470880452448, 34.588848219314], [-77.39473322670358, 34.5888930124152], [-77.39477870162753, 34.58897510278764], [-77.39480283594584, 34.589032615955226], [-77.39481462939924, 34.58909355652396], [-77.39481647945323, 34.58914122176105], [-77.39483675904214, 34.589302650064354], [-77.39505796941589, 34.58950511787358], [-77.39516981255588, 34.58955867481929], [-77.395362682484, 34.58955509727228], [-77.3954520274381, 34.58957797514803], [-77.39549296704953, 34.589588458185936], [-77.39564813369708, 34.58961018588209], [-77.39576935052935, 34.5896753750607], [-77.39584608514585, 34.58966430627724], [-77.39593268058081, 34.58966243991297], [-77.39621706345443, 34.589552998933684], [-77.39624015457859, 34.58958072272718], [-77.3964548322841, 34.589687085478786], [-77.39663420426155, 34.58981264580683], [-77.39669760938708, 34.589815055720706], [-77.39665658336857, 34.58988928807423], [-77.39663419581521, 34.58995410702616], [-77.39651807006405, 34.59020874235067], [-77.39652885530293, 34.590332285641], [-77.39646947372343, 34.59051828839937], [-77.39646436781992, 34.59058322661288], [-77.39645451960445, 34.59076758084204], [-77.39653183962068, 34.590866647838624], [-77.39662913647281, 34.59116159030345], [-77.39663059895835, 34.591166753252416], [-77.39663056640164, 34.591170590666955], [-77.39663412327944, 34.59117928993021], [-77.39665154784127, 34.59118250463846], [-77.39702817971931, 34.59145009408145], [-77.39709485218081, 34.591452521638665], [-77.39740810794804, 34.591463926978435], [-77.39742225100464, 34.59146932288037], [-77.39744708208022, 34.59147354256449], [-77.39746876563136, 34.591520531870785], [-77.39742224746806, 34.591541552220505], [-77.39724172861969, 34.59173325882746], [-77.3966638103989, 34.591979071681365], [-77.39663407571678, 34.591992911664406], [-77.39661986499637, 34.59200213614085], [-77.39660024278946, 34.592020276556795], [-77.39603872613299, 34.59230901779193], [-77.39588437732772, 34.59254811128867], [-77.3958458853791, 34.59259146541782], [-77.39569835050997, 34.592840583665875], [-77.39548349361257, 34.593030507825404], [-77.39545177461855, 34.59304881889152], [-77.39543595514787, 34.593054407864585], [-77.39525472902581, 34.59312339064398], [-77.39512116277388, 34.59315115768003], [-77.39505768542499, 34.59316706461454], [-77.39498486351354, 34.59318088447269], [-77.39466360073982, 34.59321482123961], [-77.39459334833512, 34.59323458611478], [-77.3943875458502, 34.59318858354713], [-77.39433373944824, 34.593127163351866], [-77.3942695313088, 34.59307845293585], [-77.3941397271962, 34.59293961591963], [-77.39407250880907, 34.59287684191602], [-77.39403391051817, 34.592815017771095], [-77.3940298600119, 34.59276964303518], [-77.39400721543892, 34.592712725290255], [-77.39407252959407, 34.592641524295175], [-77.39408845013008, 34.59261201572818], [-77.39412923352492, 34.59258898391908], [-77.39417105573897, 34.59256674882675], [-77.3942324582855, 34.59253410364302], [-77.39426957977992, 34.59251436765558], [-77.3944022919764, 34.59248029279388], [-77.39465107715404, 34.592315002801165], [-77.39466367349875, 34.592319159206866], [-77.39468010936004, 34.592297243919006], [-77.39493476267245, 34.59212799228051], [-77.3950577717149, 34.592041116349776], [-77.39533501164752, 34.59190409757646], [-77.3955759421728, 34.5918771433019], [-77.39555768755946, 34.59174609091296], [-77.39555060156908, 34.59164074652127], [-77.39545187756667, 34.591621118651986], [-77.3953003257133, 34.59135864185683], [-77.39519170835034, 34.59123007361589], [-77.39505784097747, 34.59114582528734], [-77.39481059715756, 34.59100470890628], [-77.39481059763395, 34.590846542264046], [-77.39451102758008, 34.590883329783345], [-77.39426972750348, 34.5908119908985], [-77.39414590529508, 34.59080941576898], [-77.39374640921832, 34.59073362937793], [-77.39360843151744, 34.5906168882835], [-77.39348160488028, 34.59063516374131], [-77.39335475207139, 34.5906534479189], [-77.39308753058651, 34.59068567253984], [-77.39271031939634, 34.59088306005824], [-77.39269803942436, 34.59088978713543], [-77.39269343907951, 34.5908928053069], [-77.39264172370926, 34.59094866412549], [-77.39229932340427, 34.59130025057803], [-77.39226324501342, 34.5913332398606], [-77.39221789398695, 34.59137864680798], [-77.39210226986727, 34.59145315282994], [-77.3919759645, 34.591489746047145], [-77.3919052305645, 34.59147630129574], [-77.39154179594239, 34.59150916283473], [-77.39151115329612, 34.5915081532177], [-77.3914803014016, 34.591518254865505], [-77.39111709596357, 34.59137759271377], [-77.39083998593672, 34.59170341377137], [-77.39072295579902, 34.591895562887146], [-77.39065073283211, 34.59195141088923], [-77.39064066994936, 34.59203066579485], [-77.3906526992115, 34.59210459475892], [-77.39072289332958, 34.59237988927993], [-77.39073450128947, 34.59242919125037], [-77.39073326380016, 34.59244188272677], [-77.39074414007175, 34.592463216532664], [-77.39080504524938, 34.59276753901411], [-77.39091987821587, 34.592807926823845], [-77.39093172326425, 34.59283783355477], [-77.3909198695991, 34.59287626208746], [-77.39086239042136, 34.59299820657169], [-77.39079763613748, 34.59306945380538], [-77.39072279412038, 34.593151800234196], [-77.3906133941369, 34.593190447950036], [-77.39051601331565, 34.59332234832483], [-77.3904146826311, 34.59342962055882], [-77.39036530620452, 34.593556364642254], [-77.39032864980096, 34.593624124371374], [-77.39022774884958, 34.59367978600698], [-77.39005069298113, 34.59368889511739], [-77.3899345703731, 34.59359161475713], [-77.38981236553377, 34.59355547449198], [-77.38954053187867, 34.59327310039356], [-77.38922206552155, 34.59342743675449], [-77.38914642459055, 34.59344211129664], [-77.38898110997445, 34.593297227590526], [-77.38894940623106, 34.593286272504685], [-77.3887923052585, 34.59314632453424], [-77.38894944860988, 34.59300284620343], [-77.38898004316728, 34.59293992265865], [-77.38911510283768, 34.59292132493051], [-77.38914649652224, 34.59295312849664], [-77.3892747190028, 34.592938626778114], [-77.38941499322586, 34.5929212359116], [-77.38954057772966, 34.59295093867642], [-77.38982109262152, 34.59269580548546], [-77.38993469791427, 34.59266544230097], [-77.39003360958131, 34.59264933363925], [-77.3899984209579, 34.59254784608165], [-77.39000245167817, 34.592474297264864], [-77.39010303667393, 34.592289499899216], [-77.39025250265288, 34.59208663944975], [-77.39030029410566, 34.592048972216446], [-77.39032886482065, 34.59200996989324], [-77.3903911256067, 34.59192143145719], [-77.39043590572965, 34.5918479084628], [-77.39047357230189, 34.59178606512336], [-77.39058955416375, 34.591613467590456], [-77.39056449289572, 34.59144629285271], [-77.39078665839801, 34.59116047496812], [-77.3905725909036, 34.59092891176858], [-77.39032900664819, 34.59095300167858], [-77.39025886764239, 34.590887591526226], [-77.39014522151096, 34.590828402736435], [-77.3901389346245, 34.59082182609855], [-77.39013198901361, 34.59082151103164], [-77.39009967569832, 34.59080015307512], [-77.39002124150039, 34.59075332475999], [-77.38993497052144, 34.59070070195689], [-77.38973854303048, 34.59067541107015], [-77.38973752498121, 34.5906753532325], [-77.389737606314, 34.59067453679527], [-77.38973860984305, 34.59067402817804], [-77.38993498626898, 34.59058782049469], [-77.39002858575982, 34.59053210167392], [-77.39003351170507, 34.59052969278546], [-77.39003582947845, 34.59052824725724], [-77.39013203981355, 34.59045112096188], [-77.39030033475149, 34.59038146651629], [-77.39032361160088, 34.59037221304909], [-77.39032908526075, 34.59036956645477], [-77.39034486907454, 34.59035804072415], [-77.39072318115467, 34.590159041567205], [-77.39093779329491, 34.59009618793375], [-77.39111730848113, 34.589682942919225], [-77.3913225237845, 34.590012915817425], [-77.39151132693495, 34.59006715509263], [-77.39160250329807, 34.59009544767086], [-77.39178087205094, 34.590033797674884], [-77.39183129994794, 34.58981598078942], [-77.39183519746746, 34.58973555809838], [-77.39170841943614, 34.58956969070805], [-77.39169137919352, 34.58956237413337], [-77.3915114008811, 34.58945717943464], [-77.39136224557828, 34.58937919407164], [-77.39120754751977, 34.58930432928092], [-77.39111736334556, 34.58924798918333], [-77.39102973382236, 34.58933274354417], [-77.39072328920108, 34.58933234732051], [-77.39058165273222, 34.58933916162907], [-77.39049383597765, 34.589327072631896], [-77.39047733636413, 34.58924179865827], [-77.39040544152768, 34.58909260293879], [-77.39038901757634, 34.589030594547914], [-77.39032927430435, 34.58897428019084], [-77.3902228849999, 34.58880900858237], [-77.38993523142013, 34.588838992328945], [-77.38987327831389, 34.58881152610006], [-77.38975823702725, 34.5887613615075], [-77.38973821406506, 34.58874592599842], [-77.38971484565437, 34.588742440344895], [-77.3896171657843, 34.58869984618326], [-77.38954119509208, 34.58866698870081], [-77.38938948613335, 34.58860224989473], [-77.38937789679485, 34.5885675932313], [-77.38928709023355, 34.58855550369289], [-77.38914716105508, 34.58849027916958], [-77.38910777875584, 34.588473020117135], [-77.38903610269607, 34.588440921336996], [-77.38886307011103, 34.58834741206374], [-77.38875312890848, 34.588311735521444], [-77.38868146991452, 34.58827977223091], [-77.38860075957854, 34.58824330347173], [-77.38855611357576, 34.5882216786019], [-77.38841746650202, 34.588168447709755], [-77.38835909655405, 34.58814473317945], [-77.38830267210889, 34.588122106362384], [-77.38818400463038, 34.58790333841726], [-77.38796507721305, 34.58790817500122], [-77.38785307874494, 34.58788303765328], [-77.38776805210868, 34.58788684889416], [-77.38762612093102, 34.58785444401114], [-77.38757103213412, 34.58783587734651], [-77.38754781126849, 34.58783139687948], [-77.38745677435375, 34.58781950296754], [-77.38717700194121, 34.58768198603382], [-77.3870370256976, 34.587606282312926], [-77.38678296148117, 34.58759296384093], [-77.38653867040763, 34.587527304489996], [-77.38643957543141, 34.58748701887566], [-77.38638893269957, 34.58744478603752], [-77.38628503009771, 34.58745192561881], [-77.38599489056446, 34.5873743054115], [-77.38582732196973, 34.58738583288588], [-77.38560083272118, 34.5873878775138], [-77.38525968874299, 34.58734412392562], [-77.38517500289713, 34.58733357985251], [-77.38505045663729, 34.587317288293626], [-77.38481275371628, 34.58723160387362], [-77.38469790205201, 34.58724437043341], [-77.38458939585287, 34.58719984734584], [-77.38441872299482, 34.58711609713735], [-77.38433728437957, 34.58708328306338], [-77.38416419254618, 34.58702048318175], [-77.38413493553553, 34.586905943326116], [-77.3840247289867, 34.58683325956413], [-77.38390286184776, 34.58692687221375], [-77.38363064787234, 34.58696199250335], [-77.38344748227559, 34.58712379698167], [-77.38332237262279, 34.58723431612908], [-77.38323650522548, 34.58736189886821], [-77.38291334287463, 34.587625355508756], [-77.3832363738535, 34.58795360340759], [-77.38324969454898, 34.587987078080744], [-77.38343340278897, 34.58795485470003], [-77.38346017920921, 34.58797109772672], [-77.38355488982893, 34.58803881625081], [-77.3835604471626, 34.58809355684837], [-77.38353952888471, 34.58817194246063], [-77.38350637318163, 34.58825541195382], [-77.38327042944218, 34.58838621924596], [-77.38329912835749, 34.58820659509249], [-77.38329119407945, 34.588148628051485], [-77.38323635287816, 34.5880481707888], [-77.38322439033307, 34.58801798133236], [-77.38321805818036, 34.58800599824187], [-77.38284238025821, 34.58766724601421], [-77.38266731606939, 34.58789682200169], [-77.38264529713751, 34.58790532767783], [-77.38263058200444, 34.58789425244517], [-77.38260141394825, 34.58788259965532], [-77.38254679424058, 34.58785452432359], [-77.38251638086118, 34.58782149102922], [-77.38244830127512, 34.58776131823147], [-77.38241662932288, 34.58773108309982], [-77.38237200702407, 34.587703383366666], [-77.38238627423122, 34.587343695314296], [-77.38205432308078, 34.587424653075615], [-77.38199674522153, 34.58739495041374], [-77.38185729894735, 34.58740800094269], [-77.38170225678354, 34.587375352899386], [-77.38167720302962, 34.58736073313495], [-77.3816603130795, 34.587232959950235], [-77.38164569790041, 34.58717122260762], [-77.3816603314891, 34.58715663846467], [-77.38181373753969, 34.58709998913686], [-77.38192407361127, 34.58705924432606], [-77.38205440020828, 34.587098510111154], [-77.38228735211693, 34.587117448485515], [-77.38225927335831, 34.586649879648704], [-77.38227379961253, 34.5864438439061], [-77.38220733757966, 34.58619340821319], [-77.38215523476002, 34.58603636911326], [-77.38213681578853, 34.58595051876288], [-77.38202973859194, 34.58562989249836], [-77.38225719161636, 34.584954591187994], [-77.38230617478236, 34.58474091810021], [-77.38238288716462, 34.58465860258583], [-77.38244905691661, 34.58451213773397], [-77.38267624500091, 34.58408312460323], [-77.38283746426664, 34.58381520610887], [-77.38277668940322, 34.583471213683374], [-77.38277572044782, 34.58332664940879], [-77.38270706745362, 34.58298487252506], [-77.38264905713379, 34.58277817471235], [-77.38264361347382, 34.58256945404204], [-77.38247949094574, 34.582200754797505], [-77.3824690336943, 34.582170053996826], [-77.38245999509672, 34.58216016543713], [-77.38244961179, 34.582146382654315], [-77.38210192094441, 34.58179840597253], [-77.38208805138532, 34.581765516457764], [-77.38183184198971, 34.581412770370164], [-77.38174948745224, 34.58133010310254], [-77.38166177437793, 34.58122864855687], [-77.38134280218846, 34.58097789095619], [-77.38107781091753, 34.5806723256031], [-77.38104041501691, 34.58049830097647], [-77.38097566752998, 34.57994741684473], [-77.38097247490673, 34.57983837987588], [-77.38098167867811, 34.57972113971939], [-77.38090303838008, 34.578999259833886], [-77.38087429947589, 34.57896401290618], [-77.3807643765808, 34.5789007827892], [-77.38048035186526, 34.57870057939644], [-77.38039662614, 34.57873789285656], [-77.38008630948603, 34.5788024899833], [-77.37982870050746, 34.57887654342042], [-77.37931423644943, 34.579228251777735], [-77.37930228448235, 34.57923442002265], [-77.37929815752186, 34.57923852629396], [-77.37903018940004, 34.57969375195866], [-77.37900336765178, 34.57980470774502], [-77.37893916443116, 34.58013143300649], [-77.37896571245756, 34.58048544948787], [-77.3789536800791, 34.58055390482653], [-77.37899992757893, 34.58065087684498], [-77.37917195094792, 34.580947011277374], [-77.37922327841135, 34.58101976904773], [-77.37929764203743, 34.5811156691606], [-77.37960017431266, 34.58130985912793], [-77.37961698058085, 34.581387833986085], [-77.37966232708646, 34.581725464542565], [-77.37973989345625, 34.58208660679044], [-77.37983982320162, 34.5822844195513], [-77.37998818141976, 34.58252762935618], [-77.38002206906204, 34.58259088215695], [-77.3800852559035, 34.58278216317388], [-77.38015347592636, 34.5829283702308], [-77.38008519599902, 34.58300971966713], [-77.37988535205685, 34.583176297036275], [-77.37950478733092, 34.58344642320915], [-77.37936915109883, 34.583543734039026], [-77.37929695829183, 34.58361982045291], [-77.37880902317985, 34.58439581936048], [-77.37866838511175, 34.5845882387778], [-77.37850855371725, 34.58478242567665], [-77.37842844149542, 34.584875228143865], [-77.37850841193477, 34.585287678087184], [-77.37850845664491, 34.58528821198601], [-77.37850847767386, 34.58528825728973], [-77.37870538726538, 34.58546051617598], [-77.37871179569493, 34.5854643330729], [-77.3789023704821, 34.58560771564627], [-77.37893524220516, 34.585615899649795], [-77.3789662228512, 34.58564685488851], [-77.3791486165729, 34.58577976710181], [-77.37916770091012, 34.58590378387876], [-77.37916335599441, 34.58604300881942], [-77.37912862927125, 34.58622861334251], [-77.37912654917687, 34.58671473976498], [-77.37911804894, 34.58689866440007], [-77.37903562388895, 34.58719106650473], [-77.37908049467661, 34.587328639486245], [-77.37898203114177, 34.58742919577046], [-77.37867473592053, 34.587811675200186], [-77.37859881245691, 34.58792080739265], [-77.37850750579064, 34.58853264317824], [-77.37847638891427, 34.588655895491534], [-77.37843337530205, 34.588695582144744], [-77.3782552484276, 34.589298823770505], [-77.3782080226147, 34.589577180686206], [-77.37823781457463, 34.589863048110374], [-77.37804964877327, 34.590449127218164], [-77.37799448086939, 34.590754145759725], [-77.3778804881284, 34.59132262772478], [-77.37785238857573, 34.59147088037696], [-77.37787837082999, 34.59174749549918], [-77.37771841244871, 34.59191649147518], [-77.3775751701414, 34.591791184548335], [-77.37759997882074, 34.59149077359399], [-77.37756012357418, 34.591368790115276], [-77.37744782861671, 34.59082769749151], [-77.37700958550627, 34.590598993155346], [-77.37695542854067, 34.590580100975345], [-77.37693066107555, 34.590542978230474], [-77.37659269084497, 34.59017417680412], [-77.37653671018793, 34.5901399745622], [-77.37642635232216, 34.58983390547998], [-77.3764850155365, 34.589456807513685], [-77.37647570445132, 34.589336245446226], [-77.37663483196462, 34.58927386997003], [-77.37693104842279, 34.58923467806192], [-77.37726016945055, 34.58886463780782], [-77.37747823064166, 34.58857341251378], [-77.37766939468962, 34.58795654657756], [-77.37768413898533, 34.587916260420506], [-77.37753825587647, 34.5873218409074], [-77.37737212794514, 34.58715025652444], [-77.37714977820234, 34.586947364870156], [-77.37693175105471, 34.586871679482186], [-77.3766592306672, 34.586697531026694], [-77.37653775783821, 34.586668911614865], [-77.37629086737164, 34.58661547224645], [-77.3761437252148, 34.58660034929048], [-77.37603441346653, 34.58661165547438], [-77.37545449103504, 34.58668399748388], [-77.37535558708065, 34.586698377941126], [-77.37517165995081, 34.586816316851994], [-77.37486301853546, 34.58698117741572], [-77.37456730394713, 34.587234136381], [-77.37440610484036, 34.587403992013265], [-77.37412348271968, 34.587618326332944], [-77.37390198204027, 34.58778273175746], [-77.3737789711391, 34.587887345512236], [-77.37335787939742, 34.588124143699915], [-77.37304212169234, 34.58862323065451], [-77.37299057535195, 34.588687568062916], [-77.372456563454, 34.58898147357826], [-77.37220231462808, 34.589063189325834], [-77.37148548554521, 34.58969658287263], [-77.37147063275059, 34.58975981167103], [-77.37106669097746, 34.59060602217031], [-77.37087885353796, 34.59090617439527], [-77.3706251593386, 34.59146348551221], [-77.36993032726302, 34.591719459832944], [-77.36983679215867, 34.592021217583486], [-77.36938674105568, 34.59218189212538], [-77.36960664552001, 34.59166543270656], [-77.36904878788997, 34.59161911367011], [-77.36887614614534, 34.59158463121156], [-77.36856667692246, 34.59148554909261], [-77.3682607569443, 34.59130257182572], [-77.36814598660814, 34.59115039206262], [-77.36805733918243, 34.591039445657145], [-77.36773371213063, 34.59080496331896], [-77.36747286751304, 34.590653894004866], [-77.36722558868745, 34.59057655144797], [-77.36671225132254, 34.590413587900215], [-77.36668482072747, 34.59041014613979], [-77.36666886611818, 34.590407471386115], [-77.36663079571792, 34.59039576354826], [-77.36589692182862, 34.589831478257445], [-77.36581494277151, 34.58975248899443], [-77.36571908812127, 34.589677934120026], [-77.36510909979614, 34.58910217540445], [-77.3647933645551, 34.58930218281105], [-77.36493973994178, 34.5889410415965], [-77.36478589794713, 34.58861475346705], [-77.36476024482653, 34.58854233145204], [-77.36510941212552, 34.58839008073627], [-77.36534986035713, 34.58829188396261], [-77.36576644241251, 34.58811426064418], [-77.36589762620996, 34.58818962655417], [-77.36596727163989, 34.588018928127525], [-77.3660549112586, 34.587931352154136], [-77.36644976307917, 34.58761998310371], [-77.366686087874, 34.587390647465995], [-77.3668952740068, 34.58718650808152], [-77.3671452617952, 34.58692522376983], [-77.36747453654752, 34.5865868406473], [-77.36774005024294, 34.586276382215125], [-77.36824258942515, 34.58591807875745], [-77.36825574255451, 34.58590845181447], [-77.36826292164281, 34.58590337104825], [-77.36834026092994, 34.58582072084151], [-77.36869195658629, 34.58546630646752], [-77.3687533941965, 34.58531631901529], [-77.36877430047126, 34.584992384505895], [-77.36887752708407, 34.58479011294579], [-77.3690210087601, 34.58414082532729], [-77.36903578382176, 34.58410560869541], [-77.36902977041692, 34.58408280136313], [-77.36892157341464, 34.5834134769243], [-77.36884662051219, 34.58328373773397], [-77.36865811373542, 34.583046131644004], [-77.36855916998755, 34.583007204344895], [-77.36826411915811, 34.58293866209395], [-77.36772162267515, 34.58286121306658], [-77.3674760948351, 34.582815132174176], [-77.36731642322178, 34.58282703676834], [-77.3666879797563, 34.58291052318701], [-77.36650677224418, 34.58296682101313], [-77.36629392065576, 34.58295996607182], [-77.36614601966461, 34.582823556403035], [-77.36611906988023, 34.582591444261894], [-77.3659002442448, 34.582125595959546], [-77.36586717777465, 34.58201459846716], [-77.36587025036114, 34.58198177145729], [-77.36590032116798, 34.58194830006323], [-77.36625984732966, 34.58149610523815], [-77.36632151404339, 34.58149556036376], [-77.36668846429377, 34.58176847614972], [-77.36680347460498, 34.581755848924445], [-77.36708254749749, 34.58164750354025], [-77.3672477752904, 34.581569212791294], [-77.36747662232864, 34.581543814804746], [-77.36763369478945, 34.581590936184654], [-77.36767361340443, 34.58160318404064], [-77.36778967825995, 34.581650532189215], [-77.36787060178995, 34.581669788419376], [-77.36797440813123, 34.58171112820673], [-77.36816180096395, 34.58179488284952], [-77.3682645873927, 34.58178343234674], [-77.36839472114984, 34.581790810723874], [-77.36885680693058, 34.581795050418364], [-77.3690526704781, 34.581735978418024], [-77.36922995772753, 34.581721308823816], [-77.3695621609977, 34.58178257909593], [-77.36984070135203, 34.58182033549787], [-77.36993996344185, 34.581852585025764], [-77.37009061531808, 34.5819860991527], [-77.37060867032007, 34.5821808218517], [-77.37062046159859, 34.582187920994954], [-77.3706286241292, 34.58219469190557], [-77.37091148920427, 34.58268134516659], [-77.37102241487828, 34.5828473928432], [-77.37106679968815, 34.58291609745523], [-77.37115148017662, 34.58295174979882], [-77.37133652832827, 34.583011142607916], [-77.37141638835827, 34.58301948450611], [-77.37157319588877, 34.583059970895896], [-77.37181038659344, 34.5831275885952], [-77.37190952388501, 34.58316028282266], [-77.37211580695956, 34.58323739583352], [-77.37220437153759, 34.583275508892605], [-77.3723193427486, 34.583331973321876], [-77.37240135782923, 34.58336828791029], [-77.37243350018046, 34.58336927728519], [-77.3725983667675, 34.58339810043797], [-77.37287325563086, 34.58342446875791], [-77.3729924136912, 34.58337520977902], [-77.37307678404586, 34.5834325903747], [-77.37326296610743, 34.58349669512539], [-77.37338638961812, 34.58355834603108], [-77.37344806676202, 34.58353647473996], [-77.37345249656437, 34.58346939024631], [-77.3734181883294, 34.58308385904115], [-77.37340854490544, 34.583027486758446], [-77.37309530689046, 34.5827823699243], [-77.37299264746261, 34.582703759411466], [-77.3729811000113, 34.58270062512907], [-77.3729775322369, 34.58268869602487], [-77.37298542804078, 34.58267977081931], [-77.37293909356796, 34.58190311715225], [-77.37295245764919, 34.58184318831897], [-77.37293972529699, 34.58178765585383], [-77.37285802520319, 34.58157770865326], [-77.37268656841749, 34.581456933360165], [-77.37268358692256, 34.58136631278281], [-77.37259908415257, 34.58136796163319], [-77.37239461577661, 34.5812786467458], [-77.37220512372204, 34.58117565394906], [-77.37213790051209, 34.58118384364245], [-77.37206594322095, 34.58112178124721], [-77.37193639329033, 34.581005503501125], [-77.37181118638642, 34.58092475055463], [-77.37173669426375, 34.580824955532606], [-77.37169411987743, 34.580750785494054], [-77.37154444688751, 34.58063530996542], [-77.37141729910434, 34.58054445191965], [-77.37132236816724, 34.58048209021013], [-77.37117617077759, 34.58040083822656], [-77.37086178397003, 34.58019571085572], [-77.3706294068773, 34.58012319462044], [-77.37050657220816, 34.580072734684094], [-77.37032525140654, 34.58000207017082], [-77.3702354516942, 34.57994385238153], [-77.37000213915897, 34.57989398075279], [-77.36984145018744, 34.57988808321205], [-77.36976709224703, 34.579834835666546], [-77.3695606103007, 34.57978443489296], [-77.36947981193052, 34.57976123218179], [-77.36944748741766, 34.57973477795127], [-77.36923505563686, 34.57963570507383], [-77.36905350169332, 34.57964274617376], [-77.36875134979768, 34.57957539945412], [-77.3686008354848, 34.57956134193478], [-77.36848318181433, 34.57951506352818], [-77.36833183012696, 34.57946542409314], [-77.36826553911321, 34.579442749465244], [-77.36808613175299, 34.579341047943345], [-77.36787159659436, 34.57925188770256], [-77.36783308734208, 34.57922564284417], [-77.36775970686298, 34.57919470599724], [-77.3675707126707, 34.57912162929914], [-77.36747765280099, 34.579068303232134], [-77.36709914011676, 34.57886528482425], [-77.3670979245598, 34.57885015997336], [-77.36708372431156, 34.57885239392867], [-77.36706446447945, 34.578849524876844], [-77.36684028142409, 34.57874037024293], [-77.36668978613804, 34.57866390713524], [-77.36659694367327, 34.578613114041424], [-77.36645708345583, 34.578533194220206], [-77.366149252011, 34.57831100610601], [-77.36595034340809, 34.57818161485666], [-77.36592640380378, 34.57815873565637], [-77.36590197447234, 34.57815059219653], [-77.3658150604016, 34.5781074255449], [-77.36567837910529, 34.578037204131554], [-77.36550804271408, 34.577960822658724], [-77.36525686780651, 34.577856924184715], [-77.36516452498617, 34.57781588037001], [-77.36511410310501, 34.577792492473485], [-77.3649711594012, 34.57774401986724], [-77.36489654178168, 34.577718717692335], [-77.36472014924493, 34.57765919094793], [-77.36461621869954, 34.57763662049783], [-77.36432622422134, 34.57746535532413], [-77.36403500483922, 34.57749753838459], [-77.36378362316461, 34.57748441632913], [-77.36353819474462, 34.57747419975272], [-77.36322116846162, 34.577642461964274], [-77.36308532189162, 34.57768174433978], [-77.36305119034456, 34.57774997627309], [-77.36274990422073, 34.578031990190155], [-77.36243915060372, 34.57792776132844], [-77.36232257963532, 34.577890847333855], [-77.36196208788486, 34.57758806633536], [-77.3619067948658, 34.57754979205366], [-77.36181163454933, 34.577503894031345], [-77.36171676320494, 34.57725303699127], [-77.36161722066848, 34.57710733099263], [-77.3616128876084, 34.577059945735854], [-77.36156834278762, 34.577039095898], [-77.36138358268204, 34.576716414623505], [-77.36134316902988, 34.57654057163578], [-77.3611746052815, 34.576485665196785], [-77.36100154746846, 34.57658499568875], [-77.36078056221024, 34.57655462386947], [-77.36059936790227, 34.57659998021309], [-77.36038658369867, 34.576494205656225], [-77.35977199751383, 34.57694842851068], [-77.35979868221912, 34.57716058328569], [-77.35959802315986, 34.57755226805549], [-77.35953761692276, 34.57776630612621], [-77.35924435254444, 34.57787349242223], [-77.35887831102076, 34.57800004712981], [-77.35880967944674, 34.57815719465991], [-77.35855993665334, 34.57855224585221], [-77.35841538715125, 34.57868032209478], [-77.35828204581594, 34.5785802994496], [-77.35802147876468, 34.57847109290053], [-77.35771012124809, 34.578429850019766], [-77.35762746641097, 34.578459335830864], [-77.35735322903133, 34.57814571207558], [-77.3573580539974, 34.57801101522901], [-77.35725463119189, 34.57733296918332], [-77.35726146258507, 34.57730981700654], [-77.3572609017522, 34.5772810024237], [-77.35723408795212, 34.57727565299203], [-77.35694392874126, 34.57681933167871], [-77.35680020613106, 34.57652710449519], [-77.35670383157728, 34.57626382479605], [-77.35644667902575, 34.576155469921005], [-77.35626560273336, 34.57595018416433], [-77.35605282207095, 34.57588391532818], [-77.35577105397157, 34.57582612914513], [-77.3556885102236, 34.57580605953263], [-77.35565886601808, 34.575793537542935], [-77.3555906698192, 34.57577859913993], [-77.35534991728585, 34.575886741373154], [-77.35526479165385, 34.57591363157776], [-77.35493667587119, 34.57601727836351], [-77.35487071994197, 34.576026983628196], [-77.35478300442162, 34.57606282497883], [-77.35456302040342, 34.5759999916052], [-77.35482898745828, 34.57591667871411], [-77.3548708029947, 34.57588142533911], [-77.35497831592322, 34.575824409909515], [-77.35526481494743, 34.57587246671574], [-77.35540020754692, 34.575600675695455], [-77.3555368683684, 34.57556687622414], [-77.35565901993995, 34.57551929815159], [-77.35572859171398, 34.575482632833314], [-77.35598473323662, 34.575370823523215], [-77.35603707355752, 34.57534599812131], [-77.35607397309798, 34.57533551718519], [-77.35644721890785, 34.575176995688345], [-77.35672609887574, 34.57514004538692], [-77.3568412651002, 34.575098588038905], [-77.35720535150631, 34.57477058234721], [-77.35720857174408, 34.574741143445465], [-77.35723553526623, 34.574606222061114], [-77.35744528015539, 34.57411266343776], [-77.35751951828692, 34.57387625589468], [-77.35766833236165, 34.57347142997709], [-77.35777775870318, 34.57325559599194], [-77.35763020304591, 34.57336759929723], [-77.3576114086593, 34.57341825455441], [-77.35723614408597, 34.57348596900384], [-77.35721193902687, 34.573495978421626], [-77.35702977457102, 34.573724516436634], [-77.35674841430838, 34.573663596658506], [-77.35644807046336, 34.57363624181167], [-77.35633846337329, 34.573621704993656], [-77.35610641334553, 34.573598729126665], [-77.35571207413481, 34.57334316182622], [-77.35566026088905, 34.57331173068896], [-77.35565256415813, 34.57330417480206], [-77.35562951004783, 34.5732991946889], [-77.35557379611205, 34.5732139832418], [-77.35530766662671, 34.5729209659595], [-77.35528211100221, 34.572907817487135], [-77.35526650028551, 34.57289944789076], [-77.35522535701881, 34.572888471268854], [-77.35487243351128, 34.57302871395981], [-77.35414908069997, 34.57344235495075], [-77.35443686009901, 34.572621743981486], [-77.35426913885055, 34.57244722892193], [-77.35408503639921, 34.57201560121959], [-77.35402389854782, 34.57189803041629], [-77.35393152724444, 34.571845370070456], [-77.35329759034282, 34.57111800004677], [-77.35327117724921, 34.57111976493857], [-77.35326285350244, 34.57109250184501], [-77.3532889913218, 34.571079449615645], [-77.35329761733325, 34.57107246192134], [-77.35333144151511, 34.57104619926755], [-77.35408571812515, 34.570846470503], [-77.35426767213791, 34.57094789190319], [-77.35426235753806, 34.57113918402097], [-77.35431101350181, 34.57154754121246], [-77.354479368459, 34.571421853238064], [-77.354556506975, 34.57141399087081], [-77.35487337852818, 34.57137975030625], [-77.3549364924775, 34.57134417250784], [-77.35514955988978, 34.57137246600308], [-77.35520395817458, 34.57144996423782], [-77.35526730673708, 34.57148067517337], [-77.35538706039982, 34.57150682595611], [-77.35557161161236, 34.57151270453622], [-77.35566136246442, 34.571357187735856], [-77.35596574327238, 34.57112804400318], [-77.35601085807505, 34.571073437675146], [-77.35587212907981, 34.57071696696533], [-77.35582854543091, 34.57054357948392], [-77.3556618592562, 34.570477262417896], [-77.35560101957613, 34.57039704669957], [-77.35547551293456, 34.570349501877445], [-77.35539867241783, 34.5702197756411], [-77.3549020826395, 34.57003758533943], [-77.35487412446382, 34.57008058892998], [-77.35483510727778, 34.570017123883375], [-77.35432946528104, 34.569827874697914], [-77.35408632001395, 34.569815680790846], [-77.3534870175938, 34.56936204127955], [-77.35337114741705, 34.569300613570505], [-77.35329870588845, 34.56923824109678], [-77.35319814830285, 34.56929528921941], [-77.35254761596336, 34.56945736744609], [-77.35251062799249, 34.56944700415691], [-77.35201385361897, 34.56957404336711], [-77.35177368775032, 34.569663719589656], [-77.35172251377959, 34.56970820714305], [-77.35122890818695, 34.57021856070481], [-77.35093404835695, 34.570525927632495], [-77.35091820482053, 34.57056375598216], [-77.35090358439567, 34.57058290710717], [-77.3509008448292, 34.57061901830662], [-77.35093356779545, 34.57129948658459], [-77.35094240494982, 34.571426418542934], [-77.35093348277447, 34.57143636184405], [-77.35031389413044, 34.57169847676696], [-77.35014527353067, 34.571810404033286], [-77.35002727206998, 34.571685333577456], [-77.3496270143396, 34.5719063888708], [-77.34935692336066, 34.572393420818834], [-77.34931255150458, 34.57246225926489], [-77.3492483377532, 34.57251926368728], [-77.34922998940556, 34.572658498560074], [-77.34905524030827, 34.573071530187775], [-77.34880845685062, 34.57343164597254], [-77.34867510095387, 34.57356604287762], [-77.34856818668032, 34.57355587657059], [-77.3485119524554, 34.57353491340165], [-77.34832100840231, 34.573501775159585], [-77.34820575410221, 34.57348439453192], [-77.34817425170652, 34.57346046203278], [-77.34793437909565, 34.57339137098483], [-77.34778041565733, 34.573215934672064], [-77.34753748047581, 34.573352820609855], [-77.34744323259675, 34.57362805488941], [-77.34741157935264, 34.57366003559058], [-77.34738606143867, 34.5737573596899], [-77.34732075515133, 34.57400002451216], [-77.34730161246657, 34.57407297494545], [-77.34727302310769, 34.57419857502981], [-77.34724155069071, 34.57435087083293], [-77.34713171640914, 34.57437104144007], [-77.34699166991007, 34.5743473872044], [-77.34670290411485, 34.57427244160711], [-77.34659772871538, 34.57425784100298], [-77.3465402844712, 34.574244402595234], [-77.34644559030586, 34.574196117032734], [-77.34620383514498, 34.57409897266949], [-77.34607571336831, 34.57396293073325], [-77.34597448905711, 34.573839338119086], [-77.34581009123147, 34.57372233525036], [-77.34566913993851, 34.57361067631879], [-77.34541621542843, 34.57354327514316], [-77.34538409586983, 34.57353433360868], [-77.34528326950735, 34.57351422011415], [-77.34513291784447, 34.57341665719211], [-77.3449058276805, 34.57344302219273], [-77.34462826462224, 34.573478815320485], [-77.34438471222161, 34.57348135417309], [-77.3439826385762, 34.573430122444954], [-77.34384024795389, 34.57350918099576], [-77.34323118345993, 34.57357768715598], [-77.3430522149837, 34.57356109002225], [-77.3429435713803, 34.573543276221415], [-77.3422644122084, 34.57329329072942], [-77.34151463758094, 34.573590282092525], [-77.34143808590346, 34.57360164895265], [-77.34137954791805, 34.573651127122204], [-77.34068793579709, 34.57394943906811], [-77.3403301615197, 34.57426586482371], [-77.3402497960185, 34.574285422401026], [-77.3398996099877, 34.57438138388268], [-77.33951749725587, 34.57435622430107], [-77.3394906147254, 34.57436346765845], [-77.33911159525553, 34.57439336933169], [-77.33879393512653, 34.57452984534839], [-77.33856139959919, 34.574648994972904], [-77.33832329623331, 34.57477382247822], [-77.33818608488892, 34.574811598399414], [-77.33763812809275, 34.575038196680765], [-77.33755452087533, 34.575071192270514], [-77.33753504339171, 34.57508554932326], [-77.33750987411787, 34.5750837575553], [-77.33735471449731, 34.57507894329404], [-77.33632124256697, 34.574837436223106], [-77.33623443837008, 34.574390921383014], [-77.33619876503357, 34.57413853323278], [-77.33623811076151, 34.57396585300895], [-77.33630348737611, 34.573902066469344], [-77.33655865561313, 34.57369938253644], [-77.33674824766298, 34.57354228786569], [-77.33680014982762, 34.57351641265103], [-77.33727293047775, 34.57367615086865], [-77.33753608098543, 34.57375426773011], [-77.33755244729575, 34.57375925176138], [-77.33759276459082, 34.57377109424054], [-77.33776422895974, 34.57392500648774], [-77.33792997551433, 34.57389063697158], [-77.33810935642785, 34.573890104313165], [-77.33830571435885, 34.57366858701702], [-77.3383241581943, 34.57365451296339], [-77.33854309606463, 34.57344564977137], [-77.33871838502745, 34.573357816858106], [-77.33884742763381, 34.57330515774909], [-77.33901083242046, 34.57325216904235], [-77.33911248514876, 34.57322381844625], [-77.33920563547956, 34.57321501274673], [-77.33938077195029, 34.57308946523789], [-77.33947481239161, 34.57304166898916], [-77.3395067426756, 34.57288007933971], [-77.33956882147358, 34.57270463114085], [-77.33957476582998, 34.57256398777816], [-77.3393752388103, 34.57224117527508], [-77.3391134547401, 34.57195107166734], [-77.33900833760163, 34.571558438839425], [-77.33882999183672, 34.57147049255199], [-77.33877205362437, 34.5714225915316], [-77.33871987353139, 34.57141619074062], [-77.33859923727272, 34.57129140137191], [-77.33856244894868, 34.571254186848236], [-77.33852305227725, 34.57119112041614], [-77.33846020999766, 34.57109912063418], [-77.33843685238864, 34.57098326536097], [-77.338326375078, 34.57078095163236], [-77.33830217674634, 34.5707234243603], [-77.33828766960688, 34.57069938739529], [-77.33823793734305, 34.570611099713155], [-77.33811100538537, 34.57010833920554], [-77.3376377015237, 34.569943758131885], [-77.33758669979869, 34.5698997902647], [-77.33753910081562, 34.56988861692233], [-77.33745896250988, 34.56988309825875], [-77.33709790471313, 34.569647908594526], [-77.33675166112661, 34.56922656447546], [-77.33674899815534, 34.569225321915106], [-77.33674497728927, 34.56922302940657], [-77.33596411050668, 34.568718447435025], [-77.3357190343647, 34.568785477576114], [-77.33557006537129, 34.5688030727118], [-77.33538233111122, 34.56879208656106], [-77.33517600639922, 34.56890371525235], [-77.33511688149325, 34.568968901753685], [-77.33488678436424, 34.56906563493112], [-77.33480058917425, 34.56909819771038], [-77.33478186171129, 34.56910812433963], [-77.33474797315209, 34.56912209526022], [-77.33458480279032, 34.569193026755144], [-77.33447707411428, 34.569220743121434], [-77.33438776649876, 34.56924986153933], [-77.33411275841061, 34.569176905550165], [-77.33438797132578, 34.56900032625157], [-77.33457969254346, 34.56889173939433], [-77.33466190652132, 34.56867342275321], [-77.3347239891899, 34.56830302801925], [-77.33468823961738, 34.56814336228396], [-77.33513468891091, 34.56780186195916], [-77.33517692595187, 34.56777115036004], [-77.33518765855862, 34.567760315732514], [-77.33571615354587, 34.56794064783995], [-77.33596479226166, 34.56786887991474], [-77.33609710384174, 34.567760495483355], [-77.33622262489314, 34.56774677346884], [-77.33635881577328, 34.5678052495894], [-77.33658145689839, 34.567733060749575], [-77.33675276617875, 34.567832962971806], [-77.33685858324843, 34.56762237780751], [-77.33714694971091, 34.56756523438729], [-77.33729990203052, 34.56744507763496], [-77.33741039129168, 34.56728829875978], [-77.3374648921021, 34.567079152787954], [-77.33747158057432, 34.566995851704114], [-77.337426823713, 34.56670142674041], [-77.33741539284924, 34.56657938863381], [-77.33739269147848, 34.56642195160376], [-77.33734460084338, 34.56574048392289], [-77.33714581351055, 34.565347636470946], [-77.3371427583089, 34.56534496441306], [-77.33713989160577, 34.56533587361468], [-77.33714873954672, 34.565298556176494], [-77.33733679813739, 34.564892522868774], [-77.33714920283138, 34.56471258841718], [-77.33706881145316, 34.56459324728702], [-77.33705749329135, 34.564409052365946], [-77.33734716356295, 34.56404194880203], [-77.33729225849822, 34.56377866867037], [-77.33729151349598, 34.563473104536236], [-77.3373104644288, 34.56319814222646], [-77.33703989590296, 34.56269298474357], [-77.3368934766844, 34.562409016056996], [-77.33684090942731, 34.56232630493292], [-77.33682287695123, 34.561640331782094], [-77.33752441125912, 34.56146921255704], [-77.3375436312022, 34.561464200492445], [-77.33754571686562, 34.561465131059045], [-77.33754621028706, 34.56146554602146], [-77.33754705491138, 34.561465956672684], [-77.33796485924351, 34.561802978499536], [-77.33833316129045, 34.562030072818395], [-77.33846898175398, 34.562036096333046], [-77.33912085345635, 34.56228672985062], [-77.33956431611993, 34.56165325741919], [-77.33960739696103, 34.561169679172615], [-77.33975314675845, 34.560979963240975], [-77.33980851245681, 34.56071621430238], [-77.3397857643931, 34.56042899884275], [-77.3397891654837, 34.56029445355914], [-77.33966760382167, 34.56005022574455], [-77.33962039094058, 34.559894182191194], [-77.33962135703261, 34.55978127072266], [-77.3395292550267, 34.559482744996785], [-77.33967961538761, 34.559211666698125], [-77.33972953525276, 34.55880085038534], [-77.3397546581416, 34.55860124393128], [-77.3397103570434, 34.558390613887255], [-77.33969157207689, 34.55818577349018], [-77.33970478132534, 34.557982676107514], [-77.3396797966095, 34.55776292393071], [-77.33952302357838, 34.55757949731471], [-77.3395028037492, 34.55755649855311], [-77.33947617184965, 34.557547390088054], [-77.33920797299501, 34.557386749890156], [-77.33914776529383, 34.55734980083688], [-77.33913589949178, 34.55734025461476], [-77.33837253140474, 34.55744607581845], [-77.33836314739494, 34.55697299627549], [-77.3375908627563, 34.556234745311485], [-77.33618318876212, 34.55728646289311], [-77.33609750933206, 34.55736324728561], [-77.33599150995765, 34.55747575486214], [-77.3357049211468, 34.5575330851045], [-77.33480843679962, 34.557729425198914], [-77.3344152362221, 34.557719177287865], [-77.33411485422799, 34.55777038144002], [-77.33423739076107, 34.557566222458405], [-77.33372369620436, 34.55720142524587], [-77.33373064463942, 34.55709565812643], [-77.33387488211065, 34.55663907332682], [-77.33417305685393, 34.556426523767286], [-77.33445684855768, 34.55592425431743], [-77.33467765119626, 34.5555443955998], [-77.33464264878474, 34.55544057314231], [-77.33462513187426, 34.55465932284153], [-77.33458501904495, 34.55457844938581], [-77.3345466737743, 34.554547851685584], [-77.33460760263905, 34.55408556975854], [-77.3345032583217, 34.553922420801655], [-77.33388884399838, 34.55418890713021], [-77.3339974186843, 34.55435376939079], [-77.33365053687258, 34.55426033031451], [-77.33368168534791, 34.55420007802968], [-77.33371217587651, 34.55417249637514], [-77.3342274091269, 34.55365059884662], [-77.3342390249068, 34.55347774708704], [-77.33393988717702, 34.553076175691466], [-77.3337447518329, 34.55276795231292], [-77.33373166856205, 34.5527510106595], [-77.33369495123975, 34.55274788679432], [-77.33335377245895, 34.55269654344676], [-77.33317152233505, 34.55282313851287], [-77.33304429928491, 34.552896169972534], [-77.3329553425419, 34.55294626488611], [-77.33283703628706, 34.55294500875158], [-77.33216728829304, 34.55306603865457], [-77.33178065047417, 34.553023088018534], [-77.33154051695386, 34.55296030891752], [-77.33138564620533, 34.55290956784411], [-77.33075418952129, 34.55268100997556], [-77.33069671435463, 34.55263320325325], [-77.33060813024964, 34.55257559291514], [-77.33034464009012, 34.55241684005487], [-77.33006914634792, 34.552441470621076], [-77.32982431518633, 34.55251291175563], [-77.32954270177387, 34.55254070532081], [-77.32872192077475, 34.552779249735465], [-77.32823892909384, 34.553151042866084], [-77.327729347169, 34.553289684968405], [-77.32719220885834, 34.55368259661099], [-77.32678643542008, 34.553824297313696], [-77.326649239651, 34.55397294080748], [-77.32623600025698, 34.55430964176753], [-77.32610950827488, 34.5544884072102], [-77.32585230206865, 34.55447323827791], [-77.32571685261111, 34.55446876139331], [-77.32533477050055, 34.554439148942], [-77.32513492906975, 34.55442620150695], [-77.3250685467391, 34.55440727064346], [-77.32449712716698, 34.55442589245064], [-77.32428297239986, 34.55441938742479], [-77.32363332882785, 34.554194001983134], [-77.32356982374871, 34.55416188850749], [-77.32350586911006, 34.554068153492224], [-77.32325161840646, 34.553759220456094], [-77.32328495813758, 34.55361003258884], [-77.32323093847403, 34.55345292965628], [-77.32293985118807, 34.553314389174886], [-77.32274022563516, 34.55322587544992], [-77.32219156338832, 34.55327366984466], [-77.32195550619218, 34.55320176418549], [-77.32124539158019, 34.553023929396765], [-77.32091790742447, 34.55262562918869], [-77.32062801850192, 34.552525561762074], [-77.32040567309426, 34.552314017323766], [-77.31983779401013, 34.55215789849679], [-77.31985340238457, 34.55179930700998], [-77.3200953109706, 34.55156006221425], [-77.32025299476817, 34.55087875165732], [-77.32032978283931, 34.55075162436866], [-77.32028841542092, 34.55066037513819], [-77.32024455348528, 34.55027424406035], [-77.32011081457232, 34.55007703217033], [-77.32012478112142, 34.55001051201036], [-77.3202200924886, 34.549788134010086], [-77.3202263106617, 34.54963641295895], [-77.32007368368689, 34.54908395856039], [-77.31980505338305, 34.54886851010092], [-77.31978733777697, 34.548817893127634], [-77.31970254092371, 34.54879809786606], [-77.31955951889334, 34.548658970855826], [-77.31945853509586, 34.54858393170956], [-77.3193334762749, 34.548456339664], [-77.31943653009353, 34.54843182696205], [-77.31963676689762, 34.54835560325299], [-77.31971252672827, 34.54837068413338], [-77.31975464130609, 34.54836002383962], [-77.32029832774069, 34.54818090289437], [-77.32036557142101, 34.54789804828741], [-77.32040196838065, 34.5478035094824], [-77.32038758046704, 34.54772750611819], [-77.320288657291, 34.54747361424467], [-77.32000000044042, 34.54737163234508], [-77.31981968815757, 34.54734564924651], [-77.31973692246528, 34.547326499274966], [-77.31940760530767, 34.5472502800409], [-77.31895363410356, 34.54724350276746], [-77.31880779120601, 34.54714564194364], [-77.31826341187933, 34.54713147556924], [-77.31819725986443, 34.547124718564795], [-77.31817142657346, 34.54711433085038], [-77.318138221007, 34.54712896715338], [-77.31808909810064, 34.54715651493134], [-77.31752605355753, 34.54732770874682], [-77.31737514189429, 34.54758704581107], [-77.31721820664276, 34.547771232460754], [-77.31711773718068, 34.548122595753114], [-77.31702941634359, 34.54828797135908], [-77.31693925730153, 34.54855853811148], [-77.31694491923281, 34.54903217372075], [-77.316555337468, 34.549064440580054], [-77.31597556898414, 34.5494185780345], [-77.31586056287053, 34.5494978329123], [-77.31575544869992, 34.549689915550815], [-77.31496277057754, 34.55005365689153], [-77.31496176709584, 34.55005385984951], [-77.31496167160044, 34.550053907988364], [-77.31496113280004, 34.55005422344395], [-77.31416896839073, 34.55037175586828], [-77.31391076085121, 34.550535755254145], [-77.31380287040841, 34.55070984770886], [-77.31345157427295, 34.55119556196649], [-77.31341891257527, 34.55128997503313], [-77.31265646969659, 34.551796700960324], [-77.31256351981597, 34.5518613969471], [-77.312557222607, 34.551864074155475], [-77.31254411567193, 34.551869843331914], [-77.31252289654088, 34.55189768803088], [-77.31204181397818, 34.55260682249074], [-77.31206168768482, 34.55291835083398], [-77.31175762726866, 34.553462182779846], [-77.31175955123385, 34.55394097032487], [-77.31172874202936, 34.55442833175507], [-77.31148340971546, 34.55531617643818], [-77.31169419539677, 34.55590882921176], [-77.31184797088014, 34.556268448025605], [-77.3117980249789, 34.55646317249468], [-77.31132819303353, 34.55694061650213], [-77.31119700690229, 34.55716424070703], [-77.310857193477, 34.55764750667659], [-77.31060699529849, 34.55787067557145], [-77.31067762663979, 34.55801325768547], [-77.31070275488572, 34.55809932459231], [-77.31068673091896, 34.558501568685976], [-77.31071387293147, 34.55857347843485], [-77.31071663330589, 34.55891784665877], [-77.31070888554129, 34.558988006315985], [-77.31065722310201, 34.55909886099938], [-77.31081921459977, 34.55926600683556], [-77.31091781191903, 34.55944762912229], [-77.31081074026298, 34.55962714960955], [-77.3100708509634, 34.559597124736314], [-77.31001235640774, 34.55958634460051], [-77.30924802803528, 34.55928712175067], [-77.30776240835904, 34.559466654420035], [-77.30767323585633, 34.559461542988004], [-77.30760842321988, 34.55947332362404], [-77.3064591016167, 34.559825691379714], [-77.3060869710518, 34.56012336079459], [-77.30570887603608, 34.56045410037057], [-77.30514381099346, 34.560766062461965], [-77.30470424097518, 34.56095859957598], [-77.30449165927735, 34.56116836765008], [-77.30381679289137, 34.561520174542956], [-77.30314667358708, 34.56203189858022], [-77.30288970168255, 34.562493731925706], [-77.30230859621562, 34.562514126298], [-77.3020354198552, 34.56264016900431], [-77.30202979441941, 34.562724843866754], [-77.30246222261883, 34.56310934025918], [-77.30180165285933, 34.5637447771483], [-77.30181730368076, 34.56405092696209], [-77.30181868159897, 34.564339994181935], [-77.30181083456992, 34.564603525334704], [-77.30158828221644, 34.56493283376347], [-77.30145680246768, 34.56512255563419], [-77.30129820749026, 34.565151508829246], [-77.30110200275166, 34.565213943659884], [-77.29996847372004, 34.56543083072836], [-77.29972161369069, 34.56573809811767], [-77.29936793410928, 34.56610043768316], [-77.29906017055312, 34.566281625232946], [-77.29869210615513, 34.567046432568155], [-77.2987762632476, 34.56771644870411], [-77.29869836882963, 34.56789457854381], [-77.2986744733998, 34.568174023313865], [-77.29851874256191, 34.56876938754745], [-77.29844160745571, 34.56910381317931], [-77.29835378810733, 34.569642094002745], [-77.2981405276127, 34.56988315208932], [-77.29797388675965, 34.569696590182105], [-77.29789835020219, 34.569120359803705], [-77.29796039081504, 34.56884948443509], [-77.29763505261575, 34.56859350916981], [-77.29750552647418, 34.56822827209782], [-77.29748527743423, 34.56806859633882], [-77.29747888796027, 34.56793603287645], [-77.29750736118183, 34.567379789204985], [-77.29750763441865, 34.56721634808841], [-77.29750188633786, 34.56706010445403], [-77.29739356477792, 34.56642314883869], [-77.29738989984452, 34.566384195468416], [-77.29740566444937, 34.56632954441376], [-77.29760484418162, 34.56577057243332], [-77.29806712523525, 34.565438006379], [-77.29809648716984, 34.56538024311536], [-77.29814620417012, 34.56536446017314], [-77.29847714401987, 34.56488610350873], [-77.29881583391966, 34.56448155697486], [-77.29870041445136, 34.56424475272732], [-77.29893569078601, 34.56412298270848], [-77.29934864206777, 34.563556075405785], [-77.29953486481276, 34.563409854076184], [-77.29972920176387, 34.56329802994116], [-77.30011381817822, 34.56295668487697], [-77.30015183442754, 34.562716535918454], [-77.30035986357788, 34.56243177023502], [-77.30002609786665, 34.56230911791176], [-77.29976737319407, 34.56168037182992], [-77.29971794627394, 34.561576981783006], [-77.29955530184766, 34.561567981340936], [-77.29956735398632, 34.56143799128343], [-77.299778107103, 34.56122548477694], [-77.29999424221208, 34.56065209116794], [-77.3005172465401, 34.560450742244754], [-77.29980446171574, 34.56010861985907], [-77.29946534487314, 34.55983783987783], [-77.29908694105806, 34.559676730922035], [-77.29824637579402, 34.55957371559963], [-77.29795095720337, 34.55965675591601], [-77.29745341390068, 34.55989571005747], [-77.29740402731719, 34.55991816600013], [-77.29744293874566, 34.559918774852086], [-77.29742924709998, 34.56039646752242], [-77.29738393642697, 34.56041065800195], [-77.2973990795033, 34.560434424179846], [-77.29702383614294, 34.560951924104785], [-77.29687877757998, 34.56112216981035], [-77.29663279957703, 34.56138742994172], [-77.2959336971885, 34.56159790803295], [-77.29645945532152, 34.56162702642403], [-77.29632384707838, 34.56184570292456], [-77.29613428824442, 34.561872759565425], [-77.29584179090251, 34.561625804574966], [-77.29583305095562, 34.56161790972906], [-77.29580780281717, 34.56159431364263], [-77.29577825905494, 34.56113059257538], [-77.29634194588078, 34.56086065453867], [-77.29640992495854, 34.56055037839268], [-77.29642675372841, 34.56020424055544], [-77.2964865502988, 34.560049777613145], [-77.29588610635223, 34.55975152717683], [-77.29560302006553, 34.55986176008837], [-77.29509422469991, 34.560027345445576], [-77.2947938558411, 34.56010648642374], [-77.2942956422663, 34.56036403142666], [-77.29406298858025, 34.560744304235094], [-77.29350356677489, 34.56086952635438], [-77.29302260406244, 34.561231332165114], [-77.29236627146169, 34.56134275336446], [-77.29191966859725, 34.56142497173136], [-77.29161827809355, 34.561541047648205], [-77.29072891746091, 34.56185475347634], [-77.29033348549699, 34.56207583815231], [-77.28908253585001, 34.56279680772539], [-77.28868885404225, 34.56294344484608], [-77.28829842743231, 34.563201151228924], [-77.28786487310352, 34.56344683523224], [-77.28712140879183, 34.563627280613716], [-77.28704648684771, 34.56371421506227], [-77.28691479679304, 34.56369121339375], [-77.28561875590049, 34.564240529858054], [-77.28540878461638, 34.56428737956124], [-77.28511742443051, 34.56445435992353], [-77.28438638683238, 34.564823485135285], [-77.28434217077826, 34.564846638491595], [-77.28431690898005, 34.56486283965131], [-77.28369201388993, 34.56511868357386], [-77.28355093880852, 34.565274025745225], [-77.28344571040527, 34.56536369296111], [-77.28331136417656, 34.56528308395632], [-77.28231415645313, 34.56567170369708], [-77.28226713357816, 34.56568173553128], [-77.28183479198682, 34.56590254817139], [-77.2817562259195, 34.56607575406031], [-77.28187441416071, 34.56645862281805], [-77.28197031096084, 34.5664988778332], [-77.28239320624328, 34.56705620247309], [-77.28238373925583, 34.56706768449271], [-77.28109633816324, 34.567217226256815], [-77.28089604566918, 34.56742218438754], [-77.2808912978588, 34.56763816162777], [-77.28073474623758, 34.567880842950366], [-77.28053332204149, 34.568030807949356], [-77.28039325119732, 34.56832535232002], [-77.28023857051136, 34.56861766869733], [-77.28006570626451, 34.56877095546351], [-77.28004894119918, 34.56891432103096], [-77.27953061205447, 34.56942787170426], [-77.27919217299491, 34.5694667052872], [-77.27905425074854, 34.56963416776353], [-77.27830334912447, 34.56999058973866], [-77.2782279904332, 34.570040595485466], [-77.27770075658916, 34.57011187194219], [-77.27748348632291, 34.57038502185718], [-77.27760990878072, 34.570463371013204], [-77.27741013077879, 34.570510569744656], [-77.27709463836408, 34.57126560638547], [-77.27705507119788, 34.57136244221097], [-77.27694137377445, 34.571408006891154], [-77.27663652355818, 34.572172143417234], [-77.2767620108182, 34.57228207785468], [-77.27736653842487, 34.5726334602476], [-77.27729004408906, 34.57279489067882], [-77.27743089589853, 34.5729767808957], [-77.27741630434241, 34.57304047438136], [-77.27747055289217, 34.57319284561167], [-77.27743881902283, 34.57327790744801], [-77.27741909977023, 34.573348636681], [-77.27754002465291, 34.57336509526762], [-77.27776726655966, 34.573456686796646], [-77.27788476560083, 34.57351672876971], [-77.27803014037856, 34.57348710064798], [-77.27831773209104, 34.57349386514595], [-77.27849169315239, 34.57368157880627], [-77.27846969863444, 34.57383021194477], [-77.27865802709078, 34.57424874600436], [-77.27865775818105, 34.574316311857174], [-77.27867889011448, 34.57434630667859], [-77.27868808638073, 34.57442833194955], [-77.27865522252316, 34.574787440933605], [-77.2784667924836, 34.57516066062006], [-77.27852546654452, 34.57524857690627], [-77.27852016294504, 34.57544041325137], [-77.27858618659926, 34.57572467514657], [-77.27862421857274, 34.575836544933054], [-77.27869533677045, 34.5760809789786], [-77.27875122096273, 34.57620896560335], [-77.27875866200965, 34.57652104059055], [-77.27901608087377, 34.577113598200675], [-77.27902828681074, 34.5771548834001], [-77.27905161040772, 34.577175213492545], [-77.27987238432526, 34.577573454023856], [-77.28021522789378, 34.57807592007969], [-77.28031283867038, 34.57814328237946], [-77.28039418952693, 34.578223299492166], [-77.28057801240041, 34.578584353945956], [-77.28060397190337, 34.57871109986445], [-77.28064376934907, 34.57875415358883], [-77.28067796341092, 34.57882774815031], [-77.28084462562802, 34.579201322157836], [-77.28048977077077, 34.57954674262834], [-77.28094486072011, 34.57996693433429], [-77.28099115742278, 34.580093739520905], [-77.28244060312556, 34.58034270709245], [-77.28320718323383, 34.58072755078562], [-77.28353112937907, 34.58097167269206], [-77.28419082895935, 34.58146676573935], [-77.28471298392655, 34.5818586203586], [-77.28543335521513, 34.582399223807656], [-77.28575800402442, 34.58295297852839], [-77.28640028857558, 34.585278019663974], [-77.28596397690953, 34.585702367766224], [-77.28503236796612, 34.58666935887464], [-77.28444349398409, 34.586907073044635], [-77.2836453672461, 34.587131695169084], [-77.2820365012713, 34.58766802339906], [-77.28015302986641, 34.58744714753394], [-77.27945400543841, 34.58755167194697], [-77.27847612408442, 34.58818345584739], [-77.27830991381366, 34.58697743382618], [-77.27825242575102, 34.58653898211948], [-77.2787831905659, 34.58618823230358], [-77.27999140176394, 34.58340787742714], [-77.2802027624923, 34.58292152809396], [-77.28054228473472, 34.58249524189715], [-77.2808445301204, 34.58161844614021], [-77.28091951743465, 34.581092506085625], [-77.2807876419582, 34.58027789235706], [-77.28076423795177, 34.58017877368255], [-77.28068147380455, 34.580131164346625], [-77.28015468440569, 34.579672309014725], [-77.27962024978446, 34.579252694115944], [-77.27954623433148, 34.579165428863725], [-77.27938004026937, 34.579086315496575], [-77.27881946918174, 34.578702884095634], [-77.27841840481248, 34.57829567962806], [-77.27828997540936, 34.57816641608923], [-77.27819131714837, 34.57805030183564], [-77.27719791350022, 34.57737558381473], [-77.27697304197908, 34.57719013723387], [-77.27653883413652, 34.57697784140642], [-77.27628707355075, 34.57671230052043], [-77.2759691625113, 34.57647186286814], [-77.2757444635782, 34.57618074695793], [-77.27526428428592, 34.57593504889313], [-77.27477760129187, 34.57549463351831], [-77.2739290007234, 34.57539124590531], [-77.27421971430884, 34.57491031084909], [-77.27449109741019, 34.57448628920621], [-77.27449240450909, 34.57444528998929], [-77.27447952435553, 34.57441729251131], [-77.27450550018656, 34.57407295129387], [-77.27419346226347, 34.573965587351196], [-77.27409735176083, 34.57385844843614], [-77.27402364250669, 34.5736520427681], [-77.27379112208516, 34.57323832690156], [-77.27344815322246, 34.573123348435956], [-77.27310959131997, 34.57325775386779], [-77.27283965041964, 34.57322739880026], [-77.27255399655834, 34.57322485057495], [-77.27240401204897, 34.57328745380152], [-77.27231145549155, 34.57334635079184], [-77.27222257678802, 34.573458600926614], [-77.27212471739199, 34.57356733997783], [-77.27218957223953, 34.57375392519001], [-77.27218344749866, 34.57380762250872], [-77.2721457620924, 34.573854809515424], [-77.27204058508306, 34.57424013584346], [-77.27206842363398, 34.57425121408202], [-77.27204028718738, 34.57426770326281], [-77.27203116542188, 34.57427022857599], [-77.2720251079217, 34.5742707420882], [-77.27162083669388, 34.57447040094995], [-77.27160486460815, 34.574548294940065], [-77.27150071080685, 34.57469662490934], [-77.27159032797996, 34.57479776661007], [-77.27164202191695, 34.57502828751255], [-77.27180414511326, 34.57519180803989], [-77.27136902942995, 34.57561553250577], [-77.27138032265589, 34.575629828810555], [-77.27097246488022, 34.57649895863802], [-77.27092759004853, 34.57653690915497], [-77.27089294182039, 34.576543903800335], [-77.270752034422, 34.57699444307783], [-77.27054052973082, 34.5772063904973], [-77.27016461470053, 34.57721057442413], [-77.26982422490443, 34.577392840846514], [-77.26998441567923, 34.57760397281089], [-77.2695681869633, 34.57799455079142], [-77.26925417197836, 34.5780832718231], [-77.26877176852723, 34.578252771688284], [-77.26840697473739, 34.578276267746425], [-77.26829089323398, 34.578321296346196], [-77.26790651947272, 34.578382396858075], [-77.2674178475141, 34.57838089654162], [-77.26708886341405, 34.5784184438035], [-77.26682924257709, 34.57857137139236], [-77.26641703246585, 34.578693101177294], [-77.26615387210491, 34.57890134141336], [-77.26603952476353, 34.57898060573663], [-77.26600980480518, 34.579092904687556], [-77.26590845550132, 34.57934029706823], [-77.26578514735498, 34.57943193742866], [-77.26559545333218, 34.57971914665893], [-77.26545537238151, 34.57987733923279], [-77.26511334396912, 34.580163538572435], [-77.2648436636439, 34.580364985788414], [-77.26466587435493, 34.580757921452495], [-77.26441862024441, 34.58097752228652], [-77.26418436858248, 34.58109309113657], [-77.26405711189236, 34.581181378078256], [-77.26381916473562, 34.58138312809334], [-77.26350242094273, 34.58160908578341], [-77.26350480825909, 34.581803180118044], [-77.26282591884974, 34.58248998070923], [-77.26282096774813, 34.582498158825956], [-77.26281059415246, 34.582500244799796], [-77.26279942676344, 34.58251206094715], [-77.26233819868155, 34.5829315198837], [-77.26195163412876, 34.583050793724524], [-77.2616769871836, 34.58306451655652], [-77.2613682448127, 34.58303592984238], [-77.26120518413485, 34.58304416376371], [-77.26102907272991, 34.58316295794208], [-77.26082373347309, 34.58328371316993], [-77.26079034885126, 34.58333246503073], [-77.26057950100251, 34.583698743150464], [-77.26064497930811, 34.58374098823008], [-77.26027850519144, 34.584162575630415], [-77.26026464414286, 34.5841794171686], [-77.26026294790076, 34.58418226992344], [-77.26025092387376, 34.584189211010646], [-77.26025589972946, 34.58420725849095], [-77.2601037259328, 34.58497915861723], [-77.26004496375421, 34.58510779667348], [-77.25992620529794, 34.585192927362115], [-77.25963108158558, 34.58544228182846], [-77.25909652029833, 34.58576953687976], [-77.25909035842832, 34.5859753641538], [-77.25912399270679, 34.586080888898046], [-77.2590056310618, 34.586345965844075], [-77.25886524514569, 34.58642899054001], [-77.25862280482454, 34.58666274928442], [-77.2582837614581, 34.58685457108703], [-77.25776480216278, 34.58721418699542], [-77.25772510439256, 34.58733956474125], [-77.25733339936257, 34.58772246417132], [-77.25739977190784, 34.58818622913983], [-77.25740015751077, 34.5881960625931], [-77.25740837930286, 34.58819970693333], [-77.25744108337514, 34.588240820813354], [-77.25768478516909, 34.58869279899735], [-77.25729206476605, 34.588971347909755], [-77.2566813494472, 34.58955651015673], [-77.25635607046166, 34.58990492796452], [-77.25567548080232, 34.59042002639268], [-77.25549228932132, 34.590451258254845], [-77.25536302652749, 34.59116329913534], [-77.25525819443305, 34.591329866383354], [-77.25546224944499, 34.591493551908115], [-77.25549722963083, 34.591770227348064], [-77.25542272093494, 34.591814159031536], [-77.25539108955553, 34.59188760025375], [-77.25528609599777, 34.59227474501154], [-77.25511604703574, 34.59272538673946], [-77.25576949409754, 34.59307432389849], [-77.25592532383652, 34.593157183854615], [-77.25639103205117, 34.59330439349714], [-77.25692989155792, 34.59351584831307], [-77.25708429521731, 34.59380828024446], [-77.25714394613584, 34.59430632853149], [-77.25713387167887, 34.59490909265716], [-77.25742319762404, 34.595270983528], [-77.2575410989785, 34.595491429766625], [-77.25777296917494, 34.59577968113277], [-77.25812527005036, 34.59600750477297], [-77.25926687108594, 34.59615977154787], [-77.25978721327257, 34.596399660035715], [-77.26004166545607, 34.59675954794192], [-77.26018315105863, 34.597373485698355], [-77.26010075566688, 34.597844314652036], [-77.26005777088825, 34.59822316699362], [-77.26010888778765, 34.59831032040882], [-77.26011169058705, 34.59850296013854], [-77.2596061455101, 34.59882182719759], [-77.25932421333108, 34.59919127197089], [-77.25934936127813, 34.59922325119296], [-77.25908912525169, 34.5996441171913], [-77.25905197937092, 34.59991701575644], [-77.25902195045275, 34.60008066674142], [-77.25910138545446, 34.600116420530604], [-77.25960607434077, 34.6004882669545], [-77.25990010873583, 34.60048667005806], [-77.26042273852389, 34.60054061261452], [-77.2612702882009, 34.60070842797181], [-77.26051100604663, 34.6014870205333], [-77.26038202570751, 34.602102509010805], [-77.26004993848181, 34.60263503129478], [-77.25983943111673, 34.60300250659022], [-77.25956718222118, 34.60327678672509], [-77.25828939568368, 34.60329422266079], [-77.2574411152944, 34.60310036258896], [-77.25668714444396, 34.60275451208413], [-77.25626565339451, 34.602582300307276], [-77.25607981872776, 34.60245798828135], [-77.2548076578014, 34.60166393026035], [-77.25480423987193, 34.601659824849044], [-77.25480032761305, 34.601653994148336], [-77.25407688050271, 34.600663728197276], [-77.25399085657466, 34.60049473024507], [-77.25396843016388, 34.599965607415896], [-77.25375361468345, 34.59969559920072], [-77.25390779229805, 34.599558730297694], [-77.25415049948599, 34.599605843613176], [-77.25456956786704, 34.59948996591386], [-77.25462669098954, 34.59949793571918], [-77.25507984120574, 34.59932864337266], [-77.25506741134372, 34.59927541314937], [-77.25497862868055, 34.59902270839611], [-77.25460147626494, 34.59881965168641], [-77.25458727170557, 34.59880182819591], [-77.2545699911892, 34.59877692438478], [-77.25449399961869, 34.59876547066356], [-77.25395789556008, 34.598768992999624], [-77.2530466564725, 34.598792894029806], [-77.25287059615685, 34.5988027625638], [-77.25278967353121, 34.59867703495975], [-77.25231747952326, 34.59818199550538], [-77.25173783475532, 34.59770898027406], [-77.25171256894481, 34.597649550064794], [-77.25175403238852, 34.596923340880736], [-77.2505105918485, 34.596801925106746], [-77.25015647846368, 34.59678662162652], [-77.24924774931682, 34.59672881193442], [-77.24888960115577, 34.59667286865798], [-77.24802381516422, 34.596954858583636], [-77.24754402624492, 34.59732127313276], [-77.24738637035452, 34.59770256161717], [-77.24721215897102, 34.59788881003218], [-77.2469135560823, 34.59821430553261], [-77.24682515492974, 34.59851807429297], [-77.2465666087197, 34.598865237049104], [-77.246462955492, 34.59912150659586], [-77.24629405281004, 34.59936037903729], [-77.24619640563799, 34.59973859134169], [-77.24599103063875, 34.60002702392191], [-77.24536526605024, 34.60030401047943], [-77.2445581688255, 34.600445795640496], [-77.24394724730487, 34.60058044432948], [-77.24352922349715, 34.60059957374836], [-77.24334027853504, 34.60067723463643], [-77.24321372043241, 34.60075090345629], [-77.24307676627015, 34.60090624741607], [-77.24253473480898, 34.601275453771585], [-77.24213301298161, 34.601608438833004], [-77.24171377442912, 34.602151133779664], [-77.2414039239911, 34.602493681002144], [-77.24142700515058, 34.60291965030801], [-77.24133489331118, 34.602959593013296], [-77.24143796663144, 34.602989129616674], [-77.24140749099864, 34.60312499181216], [-77.24134023432993, 34.6034313645542], [-77.24121454495472, 34.603807511323616], [-77.24119526065176, 34.6040282839407], [-77.24123352686928, 34.60436565530625], [-77.24124984269524, 34.60452906934876], [-77.24123271058556, 34.604718981354374], [-77.24096567042777, 34.60481589576365], [-77.24082274088076, 34.6050117046717], [-77.23964440428085, 34.60518310855096], [-77.24049708424974, 34.60554554007592], [-77.2410283727945, 34.60553941097788], [-77.24131376669632, 34.60544846305919], [-77.24158921103717, 34.6053363865379], [-77.24215203455093, 34.60492619710154], [-77.2421537913315, 34.60490952825456], [-77.24217733296227, 34.60490181771886], [-77.24219737153746, 34.6048960398644], [-77.24261791110557, 34.604636318946554], [-77.2427380376949, 34.60466091760645], [-77.24275705982872, 34.60469976494397], [-77.24275244737122, 34.60475598351683], [-77.24220043889949, 34.60491320423199], [-77.24220528452318, 34.60492667961873], [-77.24227906985921, 34.60539074944649], [-77.24259973151673, 34.60549341714625], [-77.24263806055797, 34.60569122265784], [-77.24273044087766, 34.60589766608635], [-77.24275802129785, 34.6061689476994], [-77.24316536148476, 34.60631534220565], [-77.2432853605019, 34.606412738913214], [-77.2432955291644, 34.606702557362574], [-77.24376276625674, 34.606801001095306], [-77.24391333839694, 34.60693356409335], [-77.2437555283163, 34.60726517524848], [-77.24374859858776, 34.60739193344756], [-77.24372412209445, 34.60759232980741], [-77.24349108392406, 34.60809891866248], [-77.24331455586929, 34.60830043293892], [-77.24294823055278, 34.60903685024018], [-77.24289192601294, 34.609481642009406], [-77.24125253050323, 34.61002334707714], [-77.24219206205805, 34.6114886678072], [-77.23887710982413, 34.613119259010645], [-77.23821969975391, 34.61321471445439], [-77.2385074165948, 34.6135778118515], [-77.23856277720752, 34.61361699765933], [-77.23860168906417, 34.613663191071424], [-77.24053421169614, 34.615622943652326], [-77.24058824250243, 34.615798146465245], [-77.24009461906998, 34.617377067884405], [-77.24008155818811, 34.617457278909015], [-77.24006425401458, 34.617471315021945], [-77.24003567254904, 34.61749347934612], [-77.23845242204641, 34.61868089998137], [-77.23508195833465, 34.620613489318686], [-77.23486873119352, 34.62075291034196], [-77.23475753291639, 34.62082384240837], [-77.23459736114216, 34.620978667472684], [-77.23158826339086, 34.62309465559353], [-77.23042952484724, 34.62425338856491], [-77.22939639786699, 34.62517733478553], [-77.22871933227447, 34.625802558298794], [-77.22849783743501, 34.62598644651425], [-77.22773970560705, 34.626482823391164], [-77.22602001527028, 34.62767637033778], [-77.22418014686573, 34.62881339898034], [-77.22174198798018, 34.630116096651534], [-77.21751137844407, 34.63077562424456], [-77.2150058429586, 34.63418339904141], [-77.2148492676433, 34.63433631038144], [-77.21478693157978, 34.63444976521246], [-77.21452185955086, 34.634554707499035], [-77.21105688995368, 34.63780761556779], [-77.21167805908189, 34.63836620071193], [-77.2116781313399, 34.64016518721654], [-77.21168958213337, 34.6413006286873], [-77.21169900452355, 34.641629308669565], [-77.21234912663046, 34.64280228566489], [-77.21278236966737, 34.64360035561435], [-77.21241914089262, 34.643966652044796], [-77.21256249278717, 34.64546841142918], [-77.21298226356478, 34.64669489587402], [-77.2148518393809, 34.64722079392992], [-77.21514474131347, 34.64755784604583], [-77.215360791873, 34.64811140107318], [-77.21417794273995, 34.64918673118936], [-77.21540867517908, 34.649451603741596], [-77.21541130398025, 34.649464353106275], [-77.21541127974143, 34.64947141605074], [-77.21539977174766, 34.649469168632514], [-77.21389244066783, 34.64943563430496], [-77.21373770527407, 34.64941873638309], [-77.21354872164872, 34.64942192777886], [-77.21040126854231, 34.649342077984485], [-77.20948511885152, 34.64947140784381], [-77.20801839423129, 34.649471393317086], [-77.20717109531898, 34.649055743361714], [-77.20693013864486, 34.64895695019093], [-77.2064995025654, 34.64876032771997], [-77.20174566315922, 34.64644195046827], [-77.19922509637607, 34.64595892197913], [-77.19579313336112, 34.644867969925684], [-77.19031456423028, 34.644242465966386]], [[-77.35887472442256, 34.78672173144588], [-77.35809777962615, 34.786199494908935], [-77.35832517148077, 34.78695044068937], [-77.3585099195088, 34.78687355458946]], [[-77.42643584269284, 34.758576594344575], [-77.42640880431438, 34.758479237382566], [-77.42633014585168, 34.75853274913097], [-77.42615093052828, 34.75852518593694], [-77.42578060404479, 34.758433774511275], [-77.42540671399895, 34.75852008145289], [-77.42525339827458, 34.75877063388988], [-77.424919185806, 34.75919361421936], [-77.42483893440846, 34.75908834772365], [-77.42467480893698, 34.75912752368372], [-77.42373955911785, 34.75883755080493], [-77.42370447104285, 34.758822774839054], [-77.4231443454405, 34.75867817300501], [-77.42279995384425, 34.75847238367525], [-77.42263844439655, 34.7583745192163], [-77.42259832588921, 34.75834894963342], [-77.42252667217228, 34.758302767317296], [-77.42208896166218, 34.75789318204409], [-77.42192900587533, 34.75777757726642], [-77.42169732254537, 34.75769586190062], [-77.42152199849369, 34.75763629369063], [-77.42132904113916, 34.75758136195527], [-77.4212273438808, 34.757546427873876], [-77.421105737711, 34.757477349499084], [-77.42094500136504, 34.7574140558562], [-77.42082791551537, 34.75734393369987], [-77.42066191239388, 34.7571661526649], [-77.42062705279022, 34.756981312102766], [-77.42061097935635, 34.756669093259525], [-77.42061470896601, 34.756590581707826], [-77.42060633493072, 34.75654357968106], [-77.42058601749953, 34.75643915998755], [-77.42045717799517, 34.75597645247687], [-77.4204375038121, 34.75572123266118], [-77.42022011765926, 34.75548817050765], [-77.41978863353364, 34.75532563468075], [-77.41965518273625, 34.755224346965406], [-77.4193512868286, 34.75528138689578], [-77.41898947907848, 34.75530840815845], [-77.41879427662454, 34.75483620422382], [-77.4189728511625, 34.75474079276079], [-77.41904405768236, 34.75464396361505], [-77.41919040144286, 34.75461477766342], [-77.41937026963613, 34.75464213899774], [-77.41956569192129, 34.75474562447181], [-77.41969433527917, 34.75508918011024], [-77.41973569724269, 34.755121110110636], [-77.42027334241148, 34.75530441797615], [-77.42034132140624, 34.75531496569939], [-77.4205688401055, 34.75539134523406], [-77.42070971666088, 34.755334564979655], [-77.42080764353551, 34.75534371649166], [-77.42085986244845, 34.75549372474303], [-77.42087798749364, 34.75553757172345], [-77.4208874544041, 34.755567750763], [-77.4209659665916, 34.755753192341594], [-77.4210549798405, 34.75618537082157], [-77.42118496079998, 34.756302320531944], [-77.42125036991348, 34.756359778556615], [-77.4213437004147, 34.75637027746088], [-77.42157011493836, 34.75636539568934], [-77.42187464983193, 34.75641874337522], [-77.42193519130747, 34.75643587790757], [-77.42217685330738, 34.75648253270161], [-77.42238593068154, 34.75657708174826], [-77.4224575237795, 34.75662066940755], [-77.42250021117313, 34.75664665832741], [-77.4225536420229, 34.75670910189331], [-77.42275301037746, 34.75698762408585], [-77.42288141763993, 34.75737152086189], [-77.42288513748139, 34.75737890664957], [-77.42289176958333, 34.757386331401506], [-77.42337592798853, 34.757878574048384], [-77.4236026990884, 34.757972456847114], [-77.42366150783651, 34.757999780256526], [-77.42379563571663, 34.75813201569966], [-77.42391794839614, 34.758221601744296], [-77.42444034619353, 34.75843727515234], [-77.42449778653062, 34.758434059590286], [-77.42486055463458, 34.75807430184332], [-77.4249642131567, 34.75785111088793], [-77.42498443172171, 34.75783031110163], [-77.42521094020101, 34.75763767327271], [-77.42530241110077, 34.75760186762774], [-77.42539421163664, 34.75755332904635], [-77.4254801333349, 34.75751824558266], [-77.42560526217781, 34.75749592852238], [-77.42568420654243, 34.75747766614896], [-77.4259734706242, 34.757430256899234], [-77.42604981498275, 34.757504142305045], [-77.42623858614527, 34.757635366841235], [-77.42637050109846, 34.7575041188347], [-77.42648850879041, 34.757661867174946], [-77.42662791432699, 34.75772259347232], [-77.42673819493443, 34.75770359999205], [-77.42690327434754, 34.75787909705444], [-77.42704300351606, 34.75782755808191], [-77.42708496714074, 34.7578595235883], [-77.42719900280058, 34.75796526340287], [-77.42728927697492, 34.758084346998075], [-77.42726645501145, 34.75823022538552], [-77.42746719835712, 34.75814651346101], [-77.42761088020023, 34.75808659609868], [-77.42745399074946, 34.75786236995175], [-77.4273186859886, 34.757551950820634], [-77.4271335567899, 34.75739287708609], [-77.42691766133339, 34.75724891657355], [-77.42678587874148, 34.7571770934501], [-77.42669617840275, 34.757128884774076], [-77.42631959459452, 34.75701985698626], [-77.42619417392267, 34.75700563835399], [-77.42589376968849, 34.75703767860966], [-77.42587413918532, 34.75704007131719], [-77.42582476051793, 34.75704588758905], [-77.42554560484152, 34.75703054862428], [-77.42539845487205, 34.75701090533322], [-77.42518139125416, 34.757068285216356], [-77.42503039462474, 34.7571575401587], [-77.42484914205022, 34.75722083264765], [-77.4246337632665, 34.75725750377704], [-77.42423699841684, 34.75729734672024], [-77.42420416926635, 34.75730362605949], [-77.42418553245113, 34.75729766207768], [-77.42371459684634, 34.75725176929977], [-77.42357084353088, 34.75720556684762], [-77.42349757214798, 34.7571235382769], [-77.42344587585677, 34.75702089470059], [-77.42323770830035, 34.75678551886686], [-77.42309892345092, 34.75662052489316], [-77.42295796413816, 34.75645578856254], [-77.42257313517318, 34.75622149716451], [-77.42252281284676, 34.756190859680146], [-77.42229456374835, 34.75605949400255], [-77.422122586351, 34.75591136692705], [-77.42206815859969, 34.755750627824675], [-77.42191811586223, 34.75536886696304], [-77.42186342391885, 34.75512668253024], [-77.42179910948062, 34.75504774202001], [-77.42172618799776, 34.754960718981955], [-77.42165954417007, 34.75494707595111], [-77.42152318184893, 34.754951312476564], [-77.4214153073572, 34.754991446914815], [-77.42124914777514, 34.754936441505905], [-77.42102545404448, 34.75492201816906], [-77.42091265088798, 34.75491818005847], [-77.42049809513809, 34.754803228165756], [-77.42042597152792, 34.754777477695356], [-77.4203237102172, 34.75470394580863], [-77.41988023761114, 34.754447380556016], [-77.41959688161123, 34.75428625087643], [-77.41904759773301, 34.75411496735936], [-77.41868305144462, 34.754152185818725], [-77.41849377525762, 34.75417209673783], [-77.41821836254599, 34.75425606647708], [-77.41799009440872, 34.754330347392674], [-77.4177970212514, 34.75431563160466], [-77.41753842996192, 34.7542517640875], [-77.41740906925979, 34.75412210657805], [-77.41708756507656, 34.75368060265783], [-77.41701294116878, 34.753578126056304], [-77.41671692193545, 34.753298872043764], [-77.41641318650483, 34.75313205592025], [-77.41573787692512, 34.753195165984984], [-77.41526745203973, 34.75430584194508], [-77.41524791582572, 34.754714848021585], [-77.41553701649983, 34.75508618211505], [-77.41576298562643, 34.755376421208325], [-77.41581530058772, 34.755472258140145], [-77.41603434463278, 34.755771566738076], [-77.41608458816296, 34.756005631168875], [-77.41604392530863, 34.756111255738986], [-77.41613658549524, 34.75630067172959], [-77.41617175941394, 34.75660700085692], [-77.41647908986894, 34.75733228592388], [-77.41649171286605, 34.757366336175444], [-77.41650474550295, 34.75739049354939], [-77.4169267513862, 34.75800095012631], [-77.41697047273315, 34.7580594656392], [-77.41704890414577, 34.75813976589913], [-77.41727357921576, 34.75837946280069], [-77.41727361496928, 34.75869624005939], [-77.4172436668064, 34.75876691944173], [-77.41717990874486, 34.75886487808981], [-77.41698974528141, 34.75923725767177], [-77.41686368780177, 34.759443074608896], [-77.41685182456193, 34.759468596971665], [-77.41684928976392, 34.7594989357668], [-77.41682913119553, 34.759740207382976], [-77.41677946859932, 34.75992454780616], [-77.41695794279894, 34.760107207162385], [-77.41713039271013, 34.759958182619314], [-77.41724433784645, 34.759885320247406], [-77.41747252800994, 34.759769173324216], [-77.41775642578227, 34.75956496140637], [-77.41779041129973, 34.75954054436331], [-77.41789893798028, 34.75945784074208], [-77.418310438553, 34.759139747990616], [-77.41840516992781, 34.75904897112234], [-77.41856148641648, 34.758288883048806], [-77.41854124763583, 34.75810225236068], [-77.4185304102935, 34.757757682229936], [-77.41850462304987, 34.75753037232286], [-77.41890041048472, 34.757254843707315], [-77.41888849751977, 34.75710545326601], [-77.41901433125034, 34.75705238499253], [-77.41913486775135, 34.75702059893521], [-77.41920889802795, 34.75712622636822], [-77.41955843125632, 34.75733958489485], [-77.42013366800998, 34.75763339527162], [-77.42021628300088, 34.757715617017524], [-77.42034136562457, 34.757724473625274], [-77.42077058943626, 34.75801619748765], [-77.42096384798353, 34.75799346508605], [-77.42126796566866, 34.75805319956032], [-77.42138867570532, 34.75809659072895], [-77.42147798433916, 34.75808545383843], [-77.42161370211838, 34.75813223116458], [-77.42166123796704, 34.75826273818191], [-77.42168956033223, 34.75832378839577], [-77.42177103315105, 34.758564172050114], [-77.4217880622203, 34.75867784794144], [-77.42179616479494, 34.75872571256572], [-77.42191778468543, 34.758803899391005], [-77.42235956165284, 34.759173310902256], [-77.422569220544, 34.75929613189549], [-77.4234388766156, 34.75979286148067], [-77.42346027084254, 34.75980187081979], [-77.42348156511366, 34.75980847307832], [-77.4249141096414, 34.75921114221085], [-77.42564357050469, 34.75890696777626], [-77.42637302581237, 34.75860278917501]], [[-77.43655809501588, 34.75435499757169], [-77.43643542036627, 34.754306081082184], [-77.43642522004741, 34.75428809886075], [-77.43646995068748, 34.754186782290304], [-77.43647770727503, 34.75416893424149], [-77.4364793662555, 34.754167255572895], [-77.43648235327564, 34.7541633898114], [-77.43657277349331, 34.75406012743505], [-77.43671868007529, 34.75388136233269], [-77.43679197503259, 34.75393447780088], [-77.43675320539822, 34.75384364183566], [-77.43677354116352, 34.75381872649529], [-77.43699287071007, 34.75351488019582], [-77.43721184086007, 34.7534448250327], [-77.43734801573125, 34.75334718421327], [-77.43760313678041, 34.75304127278184], [-77.43763049949264, 34.75306083045941], [-77.43764525543773, 34.75303719862381], [-77.43762840905485, 34.75301572840238], [-77.43791948303188, 34.75278509362584], [-77.43801527281333, 34.75272517739738], [-77.43808243153605, 34.75267736698851], [-77.43817923207817, 34.75266470086692], [-77.43830423176225, 34.75266574736766], [-77.43835495256413, 34.75265942441553], [-77.43847855596026, 34.75266109348912], [-77.43895188782844, 34.752812713185754], [-77.43946197746965, 34.75306106258109], [-77.43955252412515, 34.752953217436435], [-77.43991957790897, 34.75271360515135], [-77.44016613850111, 34.75271567340146], [-77.44026089534248, 34.75272144578221], [-77.4408459018136, 34.752478150463816], [-77.44090527201513, 34.75242739840967], [-77.44098862023847, 34.752422776065636], [-77.44158622751375, 34.75217772278763], [-77.44165299742085, 34.75215315808816], [-77.44171600415517, 34.75212526172713], [-77.44233079110401, 34.75187877302346], [-77.44238472748644, 34.751852802725416], [-77.44244038409806, 34.75183810594373], [-77.44255203049039, 34.75185457169889], [-77.44314896447565, 34.75160553169891], [-77.44387828643991, 34.75130125314341], [-77.44533691369928, 34.75069268354396], [-77.44558957901982, 34.750587261831896], [-77.44563789099197, 34.749679775496816], [-77.44517209412106, 34.748975767967664], [-77.44468209035303, 34.748523116292816], [-77.44460529918321, 34.74820109864512], [-77.44413506117468, 34.747622780104514], [-77.44418358852042, 34.747494786313936], [-77.44424829215251, 34.74742000835272], [-77.44436717493295, 34.74739519082117], [-77.44462925524785, 34.747416585382936], [-77.44482984459971, 34.748012424449776], [-77.44550424263052, 34.74797569854726], [-77.44608027178467, 34.7481232868798], [-77.44678343922278, 34.748303441667304], [-77.44713068609423, 34.748925527604065], [-77.44786696717547, 34.748222274774314], [-77.44776664744066, 34.746727146384416], [-77.44765714248484, 34.746153181602715], [-77.44727838125476, 34.7457806833763], [-77.44684774877948, 34.74547037406972], [-77.44671064704985, 34.745460335318626], [-77.44624182211652, 34.74534834704911], [-77.4461767399059, 34.7453959073379], [-77.4458479683138, 34.745546771623445], [-77.4455368718603, 34.74556860426656], [-77.44543138679887, 34.74561408871497], [-77.44527193913484, 34.745638883237575], [-77.4450200894929, 34.74569003188966], [-77.44485651532797, 34.74570383689768], [-77.4444038881181, 34.745724944028325], [-77.44423934230275, 34.74562067246213], [-77.44407864078019, 34.745647837262055], [-77.44366938892836, 34.74563812974161], [-77.44359701106504, 34.74562446279323], [-77.44307603824176, 34.74550577085722], [-77.44299602504198, 34.74548535144142], [-77.44285474805595, 34.74547846618589], [-77.44207743626063, 34.745370222861894], [-77.4417159594787, 34.74547703070424], [-77.44168882880903, 34.74548321549534], [-77.44126519674055, 34.745357320541416], [-77.4415658581479, 34.7455698041478], [-77.44136412086927, 34.7457005592394], [-77.44131788586083, 34.745744708421256], [-77.44127612800278, 34.74569068306731], [-77.44111751370943, 34.74532914406468], [-77.44110998113416, 34.7453135897116], [-77.44111184037872, 34.745303748613814], [-77.44111287850806, 34.74529026175232], [-77.44097424373332, 34.744696657173314], [-77.44102841988148, 34.744454794638386], [-77.44076518738697, 34.74433070877217], [-77.4405948026579, 34.74400507854816], [-77.44047393195169, 34.74379331287713], [-77.44036740431517, 34.74348939639701], [-77.4403531895494, 34.74339727810268], [-77.44035456704594, 34.74336212786291], [-77.4403601273275, 34.743313302731295], [-77.44037951364572, 34.74309133004163], [-77.44039840700104, 34.74293200295977], [-77.44040848884362, 34.74282193936928], [-77.44043665868423, 34.74269065961104], [-77.44045481447054, 34.7425586106237], [-77.44050116144395, 34.742442722376225], [-77.44053060726297, 34.742305575888565], [-77.4405760433581, 34.742170668701874], [-77.4406363664481, 34.74206301065604], [-77.44065858663674, 34.74193063155381], [-77.44064694760608, 34.741787194179494], [-77.44066701608416, 34.741571613309176], [-77.4408258353535, 34.74129066416601], [-77.44088085949345, 34.74117323340059], [-77.44110136828395, 34.74095285592552], [-77.44121516096524, 34.74097158431603], [-77.44128749805627, 34.74077541112986], [-77.44158067793595, 34.740436322374364], [-77.44164994253278, 34.74018642448023], [-77.44165205019306, 34.74017689582509], [-77.44182844654291, 34.73996385776525], [-77.44183874413957, 34.7396525864206], [-77.44193883730871, 34.739443400305056], [-77.44203908708498, 34.739326740323875], [-77.4422979770284, 34.73903325656466], [-77.44233239072253, 34.739021867282055], [-77.4423348753009, 34.73899916503491], [-77.44259599891262, 34.73874106375652], [-77.44296160606044, 34.738682662095954], [-77.44306495944626, 34.738598455786224], [-77.4436088319374, 34.73889998190967], [-77.44361661398369, 34.738907908819755], [-77.44361778310147, 34.73891027668747], [-77.44361871734274, 34.738912219606895], [-77.44406312610278, 34.73958080296786], [-77.44412748072045, 34.7395904302245], [-77.44416388974771, 34.73966168457151], [-77.44456528862133, 34.74006135983667], [-77.44477092127558, 34.740214778364894], [-77.44491728968275, 34.74028922754386], [-77.44516275857224, 34.740212488382284], [-77.44557345184775, 34.740613195962325], [-77.44566548381442, 34.74069113075432], [-77.445689575497, 34.74072428643987], [-77.44659589857, 34.74078774131338], [-77.44693232265575, 34.74062873906807], [-77.44696916322535, 34.7406175187377], [-77.44734284796019, 34.74051240485467], [-77.44780160465614, 34.74037336539835], [-77.44813438693222, 34.74030988364129], [-77.44835043342673, 34.74027563703443], [-77.44852511259091, 34.74020038867222], [-77.44869960072145, 34.740176848922175], [-77.44874243625772, 34.740181500864104], [-77.44892502040886, 34.74026699712073], [-77.44898268743785, 34.740306514870106], [-77.44915652066729, 34.740567116055814], [-77.44914452306054, 34.74062182268559], [-77.44914127654289, 34.74084129288423], [-77.44897914090576, 34.74113726517717], [-77.44900413557096, 34.74135239625961], [-77.44893225541959, 34.74161270808689], [-77.4487553788159, 34.74182451551334], [-77.44842991189313, 34.74225931465598], [-77.44844296682405, 34.74230878733754], [-77.44841164773082, 34.742280708011094], [-77.44803762919727, 34.742691832042304], [-77.44812147774843, 34.743278868805], [-77.44812122135956, 34.74328098126622], [-77.44812379053474, 34.74328264522302], [-77.4487622075871, 34.743285500294064], [-77.44893739822774, 34.74311611193569], [-77.44984355987951, 34.74345510323133], [-77.44999423567732, 34.7434597012099], [-77.4502589515296, 34.74377893708755], [-77.45046817952826, 34.74403799367213], [-77.45050688591377, 34.74407114990791], [-77.45090634053635, 34.744740023075515], [-77.45097061787177, 34.744770489868586], [-77.45135382963059, 34.74496803774482], [-77.45200997422847, 34.745358218510674], [-77.4523132998684, 34.745303113572625], [-77.45304313366168, 34.74533476286116], [-77.4533633372014, 34.74511295849668], [-77.45378630820622, 34.74505319706522], [-77.45412490957584, 34.744817773752956], [-77.45392499568696, 34.74443040672894], [-77.45380104641175, 34.74414568866667], [-77.45368096839984, 34.744014649874906], [-77.45361808635016, 34.74403113206963], [-77.45314664678457, 34.743862373359434], [-77.45308691374903, 34.74385161502053], [-77.4530193595719, 34.7438010726343], [-77.45271138472688, 34.743597589976574], [-77.4526596163828, 34.743213737942426], [-77.45266344532949, 34.74318942057648], [-77.4526749288619, 34.74316636983555], [-77.45266115320632, 34.74310667143432], [-77.45267569911289, 34.74271961365574], [-77.45255098352197, 34.74259115110453], [-77.45236109739912, 34.74240447490394], [-77.45225568364768, 34.742291593407614], [-77.45184846590833, 34.74178680897649], [-77.45182526230774, 34.74173523273382], [-77.45178444298216, 34.74170395715014], [-77.4514568179647, 34.741091029609485], [-77.45146221603014, 34.74099388006807], [-77.45135894281405, 34.74095818941952], [-77.45091960268721, 34.74034440561735], [-77.45091012426582, 34.740331424719955], [-77.45090335818686, 34.740316466738115], [-77.45058924050997, 34.73967002221953], [-77.45060154425165, 34.73956734397939], [-77.4505003886631, 34.73949284868203], [-77.45019477288172, 34.73918924039715], [-77.45000201743085, 34.73899910785514], [-77.44991512819593, 34.73896094812976], [-77.44974021107714, 34.738814475968574], [-77.44925123093564, 34.738345154010155], [-77.44892047538889, 34.73830486123164], [-77.44867580813741, 34.73820392729593], [-77.44836110487478, 34.73802206039255], [-77.44806133786722, 34.73794886776261], [-77.44778662582945, 34.737791502449554], [-77.44734162249482, 34.737520282923526], [-77.44713647848154, 34.73744197414571], [-77.44673800227362, 34.736983549524204], [-77.44615275457306, 34.73644334939997], [-77.44596216136617, 34.736146332753634], [-77.44574027182439, 34.73599972616148], [-77.44541379928327, 34.735867117669386], [-77.44521171878247, 34.73611461685101], [-77.44506181856686, 34.73612864914887], [-77.44472204253267, 34.73623252508285], [-77.44468265677358, 34.736233845415946], [-77.44465097786886, 34.73611646592113], [-77.44472174227428, 34.73594344817285], [-77.44464017594655, 34.73580515378934], [-77.444883861823, 34.7354410676722], [-77.44500569159064, 34.73520062168491], [-77.44503852446388, 34.734936081777036], [-77.44492668462851, 34.73479275960029], [-77.44483780926043, 34.73468665486574], [-77.44479030733025, 34.7344032514482], [-77.44444259026977, 34.73428098016629], [-77.44431999174024, 34.73426032650231], [-77.44407929028253, 34.73425353684899], [-77.44395729386933, 34.7342359736507], [-77.44369588056406, 34.734201436481285], [-77.4434766787405, 34.73419860977943], [-77.4431541091257, 34.73427775155524], [-77.44307113949031, 34.73428386185528], [-77.44302883241124, 34.734290960607005], [-77.44288689548975, 34.73430468837585], [-77.44270499935473, 34.734302221975064], [-77.44264113212353, 34.7343291510325], [-77.44255253895278, 34.73434709234697], [-77.44233684090344, 34.7344666904936], [-77.44226227948114, 34.73445798942056], [-77.44189014005829, 34.734274193727934], [-77.44175995753835, 34.73424455152626], [-77.44162450287098, 34.734022857704716], [-77.44169965600216, 34.73390726447627], [-77.44170601113497, 34.73377182269315], [-77.44196772376542, 34.733348995856396], [-77.44146155545523, 34.73305989640055], [-77.44107354066155, 34.73282928742511], [-77.44089565211505, 34.73237063820477], [-77.44136537441072, 34.732245432137375], [-77.44166855657602, 34.73234442270555], [-77.4420553304731, 34.73241961458002], [-77.44228218393751, 34.73243950976275], [-77.44243908698286, 34.73250393362386], [-77.4426356262355, 34.73241954277784], [-77.44284355729448, 34.73241695211633], [-77.4429438934024, 34.73236839705834], [-77.44321923705564, 34.7322829450314], [-77.44360082385941, 34.73219773741804], [-77.44375446792483, 34.73171058609741], [-77.44374470696572, 34.73168898832603], [-77.44376386587628, 34.73167729019085], [-77.44378187086944, 34.73168796513751], [-77.44379294392974, 34.731694530165036], [-77.4443326992851, 34.732000113797056], [-77.44471185066413, 34.732203901433216], [-77.44510627394942, 34.732374610280644], [-77.44546018574948, 34.73253516012263], [-77.44586330895521, 34.73261622338001], [-77.44619008482022, 34.73264955206806], [-77.44641351769597, 34.732386610692984], [-77.446611559639, 34.73213153100403], [-77.44668132504749, 34.73195672379409], [-77.44695652441456, 34.73126715568485], [-77.4469428010607, 34.73112922441872], [-77.44736244512877, 34.73020490461044], [-77.44735754909507, 34.73015609316411], [-77.4475871947906, 34.72961461215304], [-77.44818792038949, 34.728436933362794], [-77.4484626166922, 34.72830609612994], [-77.44840051625721, 34.72798595511202], [-77.44820770293447, 34.72746919672627], [-77.4474928328437, 34.7273017004826], [-77.44580734193683, 34.72690222973207], [-77.44428050128147, 34.72613406088669], [-77.44495572218898, 34.72315777063624], [-77.44515035684985, 34.72267677240054], [-77.44562057526687, 34.72200342687489], [-77.4474504938199, 34.71900830562186], [-77.44892413798733, 34.717678925465165], [-77.44905806857994, 34.7169973009978], [-77.4475298632106, 34.714563946982736], [-77.447241663565, 34.71418410256743], [-77.44706926910003, 34.71367342515609], [-77.44552948392989, 34.71213360144753], [-77.44309185386108, 34.70969587425665], [-77.44121358718344, 34.70955752685238], [-77.44059172645868, 34.709475588647365], [-77.44040736779576, 34.709746299895855], [-77.44032892257111, 34.709811379775964], [-77.43988365760687, 34.710112590927544], [-77.43902272642131, 34.711590960847495], [-77.43816114503454, 34.71205755484464], [-77.43707144500284, 34.71278141319134], [-77.43690561511033, 34.7129969109091], [-77.43494195459442, 34.7121748901076], [-77.43468566128203, 34.71216551857716], [-77.43448926798918, 34.71203943923664], [-77.43353688488902, 34.71170513646329], [-77.4328080427627, 34.71127976156538], [-77.43247780463722, 34.71093481481144], [-77.43158770116901, 34.710003414883445], [-77.4315004517951, 34.709882148581286], [-77.43142319649338, 34.70893449430713], [-77.43146911549738, 34.70859947146633], [-77.43144084409668, 34.7082791371066], [-77.43147522616044, 34.70783457093837], [-77.43146923804544, 34.70777503084176], [-77.43151071484556, 34.707357203356], [-77.43152022736896, 34.70729124620017], [-77.43149105818281, 34.707139729881405], [-77.43144719457642, 34.7067066552265], [-77.43138470345859, 34.70651700721232], [-77.431426306799, 34.706286102045325], [-77.43149781438733, 34.70616529499654], [-77.43163682066768, 34.70588235151675], [-77.43181696943398, 34.70571781797349], [-77.43177425668271, 34.70546167234095], [-77.4315343914154, 34.70533490704061], [-77.43135654469097, 34.7051895906866], [-77.43115133277593, 34.705088886440706], [-77.43098883416584, 34.70500525889741], [-77.43089234982637, 34.704936904282974], [-77.4304463993158, 34.70467957616766], [-77.43044275816311, 34.70467741579108], [-77.43044178291176, 34.70467700872052], [-77.43000720650403, 34.70441348438132], [-77.42990338816895, 34.704326410690236], [-77.42946321973906, 34.70382541899953], [-77.4294186334712, 34.70378669740544], [-77.42939734370037, 34.70377519470051], [-77.4293920127073, 34.703751857106205], [-77.42921175776254, 34.70341440467614], [-77.42901263667113, 34.703060143391966], [-77.4290080643241, 34.70304486235318], [-77.42902510340923, 34.702931781807585], [-77.42906809197228, 34.702573430218386], [-77.42907668912234, 34.702523474653184], [-77.42923657866884, 34.70205674007181], [-77.42925893636661, 34.70199583904156], [-77.42930420999312, 34.701967331181805], [-77.42982683184368, 34.701667637901494], [-77.42993785897289, 34.701609882179], [-77.43006422473688, 34.70155580958659], [-77.4301703938842, 34.701508234270946], [-77.43029557899516, 34.701446750658434], [-77.43033898483444, 34.70137352695953], [-77.43019140370093, 34.70127647530272], [-77.430141742131, 34.70128793512635], [-77.43013433185011, 34.70123573429092], [-77.43011833870497, 34.70121050182578], [-77.42980461706615, 34.70092693536127], [-77.42963508529016, 34.70082396681813], [-77.42936942460135, 34.70068075571831], [-77.42935037076845, 34.70067010334617], [-77.42910399502577, 34.700576294671265], [-77.42906963841092, 34.700563168839594], [-77.42906842907271, 34.700562680273904], [-77.42882435551157, 34.700443217999904], [-77.42879733252249, 34.70039677491265], [-77.42874177034265, 34.700170102924055], [-77.42872765061085, 34.700037187934925], [-77.42868683288671, 34.699671264080166], [-77.42867872899033, 34.69961121921336], [-77.4286678606007, 34.69958519210738], [-77.42863270179181, 34.69947651793444], [-77.42855781765657, 34.69926717926023], [-77.42869202206838, 34.69915928899556], [-77.42880542128076, 34.69907422717771], [-77.4288665649839, 34.69905019360705], [-77.42896723804627, 34.69904444429193], [-77.42919449859319, 34.699024344833845], [-77.42927923019704, 34.69903764113076], [-77.42950599752879, 34.699055286304215], [-77.42985722330327, 34.69911944126702], [-77.43010191166391, 34.69921076434699], [-77.43033327982235, 34.69926489175956], [-77.43073825605387, 34.69922652417931], [-77.43119633496006, 34.69917994338314], [-77.43139558301463, 34.699169770658585], [-77.43197911166023, 34.699065818839955], [-77.43203111427125, 34.699048776935015], [-77.43208140851041, 34.6990145152857], [-77.4326350692229, 34.69854033289523], [-77.43288176325001, 34.698263311104576], [-77.43284292894035, 34.69787345213949], [-77.43288202884771, 34.69770434774853], [-77.43295470068603, 34.697567180669644], [-77.43299680054339, 34.69718542108285], [-77.43306924282093, 34.697006610344516], [-77.43309028328004, 34.69693857937706], [-77.43310079606456, 34.69687305132912], [-77.43313218643095, 34.69667370246109], [-77.43307643882343, 34.6962705821106], [-77.4330952646323, 34.69610173722901], [-77.43307193573804, 34.695992312552946], [-77.43306004153372, 34.69563218464147], [-77.43303803816346, 34.695522672209805], [-77.43307975896943, 34.6950962638895], [-77.43311217513748, 34.69498953824908], [-77.43315015060372, 34.694895487349356], [-77.43330587596617, 34.69449821097162], [-77.4334797122068, 34.69418164950017], [-77.43354967496742, 34.69405295159972], [-77.43355942260001, 34.694027809607476], [-77.43358556286688, 34.69399237959506], [-77.43390634246818, 34.69359005663236], [-77.43407199960902, 34.69341114658873], [-77.43439889411204, 34.69320322333266], [-77.43470330277695, 34.69294748171744], [-77.43487830114074, 34.692811796749154], [-77.43522474003058, 34.69258014526561], [-77.43537955314602, 34.6925572918535], [-77.43560319837925, 34.69250620166229], [-77.43609406259738, 34.69222964244258], [-77.43630390876325, 34.69196500582272], [-77.43652928242997, 34.6917119003278], [-77.43661669066073, 34.69158837527262], [-77.4367428133036, 34.69122751198742], [-77.436934366734, 34.69110077057522], [-77.437171039504, 34.69099896678585], [-77.43757520540055, 34.69095949884899], [-77.43762117802063, 34.69094180998262], [-77.43811662041895, 34.69104901086507], [-77.43821996978957, 34.69108714093673], [-77.43831023880767, 34.69112754304365], [-77.43840138586566, 34.69124835290908], [-77.43870659628459, 34.69162026611268], [-77.43878548058669, 34.691821970305966], [-77.43895499983871, 34.692000947876565], [-77.43882114720643, 34.692200484409504], [-77.4387905302003, 34.692502487846376], [-77.4385528559002, 34.6928118780668], [-77.43879261239327, 34.693538442680264], [-77.43880863421498, 34.69362690125447], [-77.43857971774389, 34.69458627578856], [-77.43885756742617, 34.69525082093472], [-77.43916574576284, 34.69598790728009], [-77.43919031446933, 34.69611701832469], [-77.43925363476755, 34.696375764216484], [-77.4397565124373, 34.69843057866042], [-77.43917779781792, 34.69969346691424], [-77.44016571504558, 34.70208521687494], [-77.44061352375462, 34.702665439368005], [-77.44302801272633, 34.70404635450906], [-77.44064268650693, 34.70414945187943], [-77.44108793374782, 34.70603870288532], [-77.44131992266776, 34.706958139287195], [-77.44279070173671, 34.70765918774486], [-77.44409824228751, 34.706216269560564], [-77.44617628200469, 34.70514666349652], [-77.44883079180835, 34.70556585060387], [-77.4493450292593, 34.70580350991388], [-77.44987823363905, 34.705940701831615], [-77.45278277587921, 34.70604164955449], [-77.45318700610287, 34.70536050091128], [-77.45479742539497, 34.704679013107054], [-77.45544478495586, 34.70441024742493], [-77.45562812533825, 34.70397744615937], [-77.45650934304932, 34.703172113283166], [-77.45651323530551, 34.703168710023185], [-77.45651411950037, 34.7031671774366], [-77.45651818815999, 34.70316040564253], [-77.45674543386505, 34.70279758044087], [-77.45681795177617, 34.702716182027615], [-77.4569680620073, 34.702712615442536], [-77.45722237215634, 34.70282918792212], [-77.45725124339332, 34.70284152607262], [-77.45726787814762, 34.70285537820332], [-77.45728066687144, 34.702877847657675], [-77.45728528904348, 34.70293195520257], [-77.45732118001925, 34.70317149739374], [-77.45724854127329, 34.70330989351777], [-77.4571999400037, 34.703408633586434], [-77.45695324947552, 34.70387250053125], [-77.45672673125813, 34.70351445537429], [-77.45694773862495, 34.70388193788963], [-77.45695386455087, 34.703885452492685], [-77.45748483565988, 34.70425066754663], [-77.45762976039613, 34.70449003421302], [-77.45801086810755, 34.704648068009426], [-77.45845274835699, 34.70483880747398], [-77.45858735585149, 34.70487091109233], [-77.45958973002274, 34.70520101890362], [-77.45977207852629, 34.70520677308964], [-77.46040771838298, 34.70504223097039], [-77.46045875840915, 34.7050483557871], [-77.4605516559507, 34.70505569958138], [-77.46077327430737, 34.70506887898687], [-77.46093021151785, 34.70527081859406], [-77.46095331731456, 34.70533441741646], [-77.46098555474413, 34.70544316185752], [-77.46105622130244, 34.705737893745024], [-77.46145233575645, 34.7060121904381], [-77.46188172097688, 34.70628606837834], [-77.4620129610525, 34.70632343345654], [-77.46226005989215, 34.70657452567517], [-77.46226064620868, 34.70657523155331], [-77.46227540462641, 34.706597741915004], [-77.46248306277761, 34.70691447379155], [-77.46249204075087, 34.706924101682155], [-77.46249214316597, 34.70695169513046], [-77.46241590421297, 34.707466738942834], [-77.462265541584, 34.70791159045711], [-77.46222966798899, 34.7080177249829], [-77.46207793320059, 34.708466633321024], [-77.4619720181744, 34.70909163821478], [-77.46167753221377, 34.70994293677609], [-77.46251089617817, 34.710853765981255], [-77.46222273697961, 34.711501066331884], [-77.46283140495666, 34.71236253830444], [-77.46487325376245, 34.71167886652646], [-77.4668568831198, 34.711089854793244], [-77.46785738089655, 34.7091479647845], [-77.46824974799446, 34.70838643885318], [-77.46842804275845, 34.707677241378875], [-77.46883500921035, 34.70516793737285], [-77.46877454569542, 34.704098046766404], [-77.46803434556081, 34.7032283158694], [-77.46624785776676, 34.70267681482741], [-77.46566858639166, 34.70254401640338], [-77.4647573697432, 34.701513502219655], [-77.46450401124412, 34.701269414373414], [-77.46370379277684, 34.70047215198735], [-77.463422085084, 34.70028535705932], [-77.46303131026181, 34.6998560458271], [-77.46176937078297, 34.698295477141464], [-77.46121695520739, 34.69763468964595], [-77.46038216468214, 34.69669461700289], [-77.45981978874065, 34.696171597139845], [-77.45828594084142, 34.69528716818881], [-77.45761311358311, 34.69493757336698], [-77.45701502814488, 34.695016239241305], [-77.45670122738294, 34.69540848567216], [-77.45559937412675, 34.695693412269904], [-77.45507068905412, 34.69595672234781], [-77.45487127393997, 34.6959988877639], [-77.45472674131247, 34.696055312769246], [-77.45450281964018, 34.696144430269094], [-77.45416491057472, 34.69619920642009], [-77.45408269879164, 34.696205567653585], [-77.45404259177545, 34.69620515246909], [-77.45396214394435, 34.696199859272156], [-77.45341992724936, 34.69614227800861], [-77.45304549118745, 34.696006057230925], [-77.45254748362919, 34.69589769249292], [-77.45225478340849, 34.69573915004157], [-77.45199166185029, 34.695439748867784], [-77.45186147741418, 34.69529127156863], [-77.45130675005613, 34.694641382685624], [-77.45130070036289, 34.694632562392265], [-77.45129500083017, 34.69462568507697], [-77.45096601025256, 34.69396329092913], [-77.45096463853099, 34.693880025638116], [-77.45066463443712, 34.69329895252836], [-77.45061368641952, 34.69313370690705], [-77.45050869518091, 34.69291223689552], [-77.45031965194491, 34.69236362591123], [-77.45015239551202, 34.69200190510928], [-77.45013662351438, 34.691982637975556], [-77.44956458444459, 34.691786045543054], [-77.44955296250077, 34.69178494785621], [-77.44954596366455, 34.69178347600289], [-77.44900106949682, 34.69157490781604], [-77.44897616236632, 34.691563532958], [-77.44871438955388, 34.69124818143588], [-77.44855394413204, 34.6908842091085], [-77.4485517114326, 34.690869682391174], [-77.44855083920326, 34.69081819611598], [-77.44854342622799, 34.69042671873108], [-77.44850099694685, 34.69030668532286], [-77.44853704260363, 34.69013491563097], [-77.44855813634626, 34.689767641231974], [-77.44896620784172, 34.68938148618792], [-77.44898916481941, 34.689378575640184], [-77.44901819369518, 34.689369428924714], [-77.44975458075756, 34.689134162709635], [-77.45113287369071, 34.68899051885359], [-77.45139571502214, 34.688825589562114], [-77.45170630737485, 34.68876943667019], [-77.45302379784036, 34.68849566638996], [-77.45447766982143, 34.688049022755365], [-77.45463262117656, 34.68797764390741], [-77.45566591600146, 34.686832656723034], [-77.45588934406994, 34.68618083836922], [-77.45632465089798, 34.68539169125961], [-77.45642001203379, 34.6852483056671], [-77.45646176336732, 34.68514313173756], [-77.45668861508729, 34.68422417643217], [-77.4569005995977, 34.6833653976357], [-77.45696245281587, 34.68320189153487], [-77.45703503124713, 34.68308997461337], [-77.45731887174254, 34.682652281080976], [-77.45755151543389, 34.682289767232035], [-77.45750252366803, 34.682167105280534], [-77.45716217915538, 34.68158850598977], [-77.45682238195093, 34.68116920858073], [-77.45668852011588, 34.68098499138425], [-77.45643901802043, 34.68072317167195], [-77.45641841839003, 34.68069271731122], [-77.45635196169158, 34.680631816234104], [-77.45607632953518, 34.68042096098702], [-77.4559977543607, 34.68034788519842], [-77.45582983763491, 34.680231616648406], [-77.45555547709773, 34.679973842268375], [-77.45543701476784, 34.679864660310145], [-77.45518857630965, 34.67960584079035], [-77.45515780820197, 34.67957498049353], [-77.45514543144694, 34.67956041754613], [-77.45510190568434, 34.67949567841042], [-77.45494425544399, 34.67926658581536], [-77.45481728642835, 34.67904691807955], [-77.4546633551239, 34.67880289868663], [-77.4548918376918, 34.67872941248115], [-77.4551591463279, 34.678629185918126], [-77.45537874898474, 34.67858623256334], [-77.45543033302394, 34.67845160798577], [-77.45545039986702, 34.67838378385131], [-77.45550160609804, 34.67821071589806], [-77.45556971887036, 34.677980507399894], [-77.45559641171826, 34.67789029081152], [-77.4556575077826, 34.67768379511418], [-77.4556890367503, 34.67757723077036], [-77.45560455248253, 34.677273771172835], [-77.45559861328941, 34.67717770016397], [-77.45537399605757, 34.67692850040835], [-77.45484056064033, 34.67638736763989], [-77.45480640703092, 34.67635175988339], [-77.45478949689101, 34.67633747600675], [-77.45475427374942, 34.67630828282043], [-77.45434358460446, 34.675967901796014], [-77.45395018598158, 34.6758572883095], [-77.45376894180065, 34.67575563207651], [-77.45346426981271, 34.675906295327245], [-77.45346908168354, 34.67599442024171], [-77.45347561570424, 34.676114061014204], [-77.45349875476032, 34.676537721295816], [-77.45350879779593, 34.67672162594374], [-77.45349308891085, 34.67700715881084], [-77.45349320492417, 34.677095334430476], [-77.45348502746432, 34.677152294501894], [-77.453421921587, 34.677484914439304], [-77.45339180364054, 34.677739079868076], [-77.45323272711074, 34.678239746411606], [-77.4532225873184, 34.67828025704177], [-77.45321930527321, 34.67829815640778], [-77.45320450137166, 34.6783323303753], [-77.45296909394474, 34.67883006901533], [-77.45285866946172, 34.6789901824325], [-77.45279237317848, 34.679141402137205], [-77.45297605496519, 34.67945187474591], [-77.452982035182, 34.67946051001784], [-77.45320216867775, 34.679763127696205], [-77.45333281046786, 34.67994635063732], [-77.45342429582755, 34.68006908107684], [-77.45345717264331, 34.68023941234186], [-77.45352948627507, 34.680408362444524], [-77.45363418175191, 34.68092065090296], [-77.45373513972784, 34.68111592969399], [-77.45380388022227, 34.68151257431836], [-77.4538117482561, 34.68154172056589], [-77.45380324621023, 34.68154683488516], [-77.45375606473868, 34.68200005611877], [-77.45374790794094, 34.682078411694825], [-77.45374194743758, 34.682194164179975], [-77.45375099861434, 34.68244860426213], [-77.45380206611698, 34.68262728801835], [-77.45381085618665, 34.682646822922656], [-77.453830971515, 34.68266644816918], [-77.45396413299726, 34.68280602753384], [-77.45404781923631, 34.68288544902268], [-77.45429738296582, 34.68338846665994], [-77.45415273520466, 34.68362012899641], [-77.45398913126539, 34.68383973399959], [-77.45390402440628, 34.683953971506305], [-77.45373392762154, 34.683971476118515], [-77.45351395692805, 34.684064111369274], [-77.45308735731165, 34.68408355973654], [-77.45307646579424, 34.6840967631478], [-77.45305881766778, 34.684090364341706], [-77.4530375904443, 34.68408582845578], [-77.45242381542855, 34.68407048240311], [-77.4521754612986, 34.68399942488555], [-77.4520839082009, 34.68396994432301], [-77.45182598269352, 34.6839220085085], [-77.45142217225877, 34.68386756459821], [-77.45120225943789, 34.68386310587834], [-77.45111873527766, 34.68388786073767], [-77.45095176365311, 34.68389612487789], [-77.45067729087256, 34.68391404497464], [-77.45055055206544, 34.68390100958833], [-77.45040050811627, 34.68384777006906], [-77.45011790046158, 34.68374749285237], [-77.44995455550136, 34.68374618794666], [-77.44982254198536, 34.68364269046255], [-77.44958129112018, 34.68341708517568], [-77.44944642757373, 34.68328741636502], [-77.44891602146888, 34.68312838001559], [-77.44880984807081, 34.683105070228414], [-77.44853944841475, 34.683052901416104], [-77.44829688941759, 34.68301437347104], [-77.44824785307506, 34.68300057508155], [-77.44807197870973, 34.68303439980741], [-77.44787574366431, 34.68307371420526], [-77.44761188537639, 34.68322651493073], [-77.44756067347541, 34.683269773365446], [-77.4475212591058, 34.683297504686905], [-77.44726548695701, 34.68357159105841], [-77.44707027837029, 34.683657365291836], [-77.44690578864828, 34.683731354825575], [-77.44672510654124, 34.6838349992634], [-77.4465747987327, 34.68393803466443], [-77.44644963671502, 34.6839994261043], [-77.44596013126004, 34.68426462274023], [-77.44588822277197, 34.68431120577911], [-77.44581744130464, 34.68433744688425], [-77.44549347534078, 34.684413694661444], [-77.44524430337958, 34.684524236152654], [-77.44512362561593, 34.68455687342526], [-77.44506443830679, 34.684633233289745], [-77.44480674769522, 34.68478662623816], [-77.44447119890597, 34.68498191554379], [-77.44446942758246, 34.684982971864166], [-77.44446805881019, 34.684983772241715], [-77.44445822224812, 34.68498969274388], [-77.44417285591717, 34.68516008530554], [-77.44413440376867, 34.68518307173907], [-77.44408331591406, 34.68521534403406], [-77.44388668526537, 34.68533955583912], [-77.44382629808256, 34.68542716617388], [-77.44365782426942, 34.68577027804194], [-77.44365868059639, 34.68581887607855], [-77.44356076347843, 34.68625721286797], [-77.44357878505615, 34.686349975122155], [-77.44353884333566, 34.68645265502185], [-77.44350930209626, 34.68660519968245], [-77.44334489326323, 34.686661005213324], [-77.44318984197241, 34.68662992236041], [-77.44287856279176, 34.68654202811479], [-77.4427910403873, 34.686360381326466], [-77.4427173058682, 34.68616294070857], [-77.44268248276225, 34.68603662749003], [-77.44250720809889, 34.68580424422753], [-77.4423839297877, 34.685552328457], [-77.44233181869959, 34.68543105772737], [-77.44232385416034, 34.68535221451143], [-77.44232377792349, 34.685214471868946], [-77.44232149292661, 34.684988959046045], [-77.44231949462531, 34.68479165616236], [-77.44236630550161, 34.68453631798004], [-77.44236878654264, 34.684522804862056], [-77.4423270966627, 34.68423527988363], [-77.4423293442619, 34.684092861646164], [-77.44221468279326, 34.68392175711391], [-77.44181270352139, 34.683496401969755], [-77.4417806001598, 34.683429141757586], [-77.44177154511706, 34.68323835045854], [-77.44167866689325, 34.68341242628857], [-77.4416761379586, 34.68344865515651], [-77.44167514597986, 34.683473168050604], [-77.44153976973897, 34.683960013360775], [-77.44153471069511, 34.683978206448195], [-77.44146893084866, 34.68421476445575], [-77.44143606433069, 34.684398441722216], [-77.44142240279248, 34.68447150129772], [-77.44142150547432, 34.68447770158999], [-77.44142161402507, 34.684487636218726], [-77.44140193147068, 34.68492645525941], [-77.44141501771166, 34.68503446942315], [-77.44144372824361, 34.68527145468739], [-77.44145037881658, 34.68532635091105], [-77.44144302488644, 34.685355707378946], [-77.44143536515735, 34.685600619522425], [-77.44129549988638, 34.685776863203245], [-77.4411924386422, 34.685906729163506], [-77.44110799983918, 34.68604520276702], [-77.44087105722897, 34.68635216621274], [-77.44079612024406, 34.68645602902147], [-77.44075906117102, 34.686482244050275], [-77.44048380747381, 34.686583336177044], [-77.44041113807131, 34.6865744910127], [-77.44017630461511, 34.68653875719659], [-77.44001373891226, 34.686221659551705], [-77.44008242736297, 34.68603723265067], [-77.44009907404649, 34.685971975820024], [-77.44009739008196, 34.68591747302323], [-77.44010003889488, 34.68569279292277], [-77.44012516543498, 34.685359391096625], [-77.44012561172092, 34.68514269436633], [-77.44014206312269, 34.685006013141134], [-77.44016074777565, 34.68487545955594], [-77.44010065356157, 34.68458469069401], [-77.44009994120609, 34.68457719285837], [-77.4400987354454, 34.68457425796087], [-77.44007997575108, 34.68453783648624], [-77.43991592561542, 34.68420760899656], [-77.4397113852927, 34.683935374605014], [-77.43966490023786, 34.68387578740638], [-77.43966060790221, 34.6838677920501], [-77.43965581666183, 34.68386035453321], [-77.43953576694727, 34.68347350459778], [-77.43943611529684, 34.68322449434093], [-77.43943406101943, 34.683069560612665], [-77.43930546388859, 34.682903029575414], [-77.43912927491436, 34.68275039568345], [-77.4387910197201, 34.68246626292992], [-77.43872236346822, 34.682415883936315], [-77.4383963059649, 34.68216358149121], [-77.43830950103259, 34.68191566986304], [-77.43827450238572, 34.681700237674576], [-77.4380998136713, 34.681394554181296], [-77.43809029135673, 34.68135630175188], [-77.4379117582206, 34.68107544187233], [-77.43788478211206, 34.681037921541126], [-77.43783492687466, 34.680987484017294], [-77.43766619352392, 34.68081678005102], [-77.43735398062324, 34.68081311075881], [-77.4373470815994, 34.680812409596136], [-77.43734361742565, 34.680812745471265], [-77.43733583754845, 34.680812962674224], [-77.43689982123058, 34.68083501958638], [-77.43669664911029, 34.680845874531244], [-77.43640528207571, 34.68077434296809], [-77.43639195752577, 34.68076831289987], [-77.43617280510799, 34.680441684866224], [-77.43616073619661, 34.6804184388776], [-77.43613482621065, 34.68039298171302], [-77.43591346340162, 34.680230674713584], [-77.4357737173435, 34.68013360216666], [-77.43563757808923, 34.68007686286806], [-77.4354926801967, 34.68003023127509], [-77.43534538676742, 34.67997942725156], [-77.4351971164184, 34.679927904828546], [-77.43505498574723, 34.67987580312307], [-77.43485917808127, 34.67974236136151], [-77.43445009405708, 34.679751839852884], [-77.43430045785009, 34.67975149057789], [-77.43421157068778, 34.679892912862016], [-77.43410042196355, 34.67996106311583], [-77.43408439641449, 34.67997130480334], [-77.43406211567213, 34.67998554400035], [-77.43381772710205, 34.68014172788662], [-77.43375036463262, 34.68017301020527], [-77.43367806033834, 34.68020567745053], [-77.4335723903298, 34.68025594855216], [-77.43338168803032, 34.68026876467197], [-77.43335472634169, 34.68027400028995], [-77.43331539294383, 34.68026700009718], [-77.43304557742984, 34.68017708223425], [-77.43278489540769, 34.68009020732014], [-77.43269871933596, 34.68007801960893], [-77.43247934467044, 34.67991947504844], [-77.43230849003534, 34.68005914870582], [-77.43216444882742, 34.680122589642856], [-77.43190544279366, 34.680148024151634], [-77.43176256517306, 34.68018226371896], [-77.4316598371837, 34.680225639320895], [-77.43153516308487, 34.68029047169414], [-77.43138386607019, 34.68040865269342], [-77.43138075834175, 34.680411946119335], [-77.43137292324367, 34.68042167512543], [-77.43124868280273, 34.68056992712971], [-77.43113925751632, 34.68072894615317], [-77.43111138208754, 34.68087241731138], [-77.43107881412632, 34.68104003719305], [-77.43098201611295, 34.681240964196846], [-77.4308979069442, 34.68135682084774], [-77.43085246119617, 34.681417802412994], [-77.43067780835145, 34.68171692715155], [-77.43062863601564, 34.68179970323927], [-77.43061954723669, 34.68181853210333], [-77.43058313830697, 34.68185383705999], [-77.43033908685146, 34.68207415243019], [-77.43007550379485, 34.68218732188141], [-77.42998115314887, 34.682236799249424], [-77.42988361877028, 34.682247181709954], [-77.42921651858687, 34.682424231473654], [-77.42918948669212, 34.682431583745654], [-77.42918616964413, 34.68243274481964], [-77.42918331527073, 34.68243434745664], [-77.42917311469702, 34.68244234693652], [-77.42886910881876, 34.682662221122264], [-77.42878288472048, 34.68272954021127], [-77.42866702565286, 34.68281284224667], [-77.42855861950801, 34.6829024444543], [-77.42851081370702, 34.68294195777431], [-77.42842608670541, 34.68300810751553], [-77.42839608960718, 34.68301064549069], [-77.4283607585613, 34.6830811371791], [-77.42824656695618, 34.683140113499974], [-77.42809622851087, 34.68317227184088], [-77.42787288633303, 34.683277021578476], [-77.42766451183692, 34.68327280070251], [-77.42755391149664, 34.68311813322057], [-77.42740628849901, 34.68293095527259], [-77.42728396046036, 34.68278441712552], [-77.42719593419628, 34.68267766793406], [-77.42713939032632, 34.68262156356204], [-77.42699577537776, 34.68259080452618], [-77.42687548688525, 34.6826778563914], [-77.42681698622808, 34.68272483436782], [-77.42683216835906, 34.682827556016896], [-77.42685904010793, 34.68296175508647], [-77.42688646467036, 34.68302867371237], [-77.42695810136141, 34.68327710013154], [-77.42697792358575, 34.68334020099365], [-77.42693991494048, 34.68337438097689], [-77.4267135757209, 34.683527277223526], [-77.42667120148575, 34.68355590173975], [-77.42659816905665, 34.683636199446596], [-77.42651082949916, 34.683735900008855], [-77.42643491104073, 34.68391745488086], [-77.42636163135354, 34.684062097059005], [-77.42625483976667, 34.68420543784375], [-77.42620454382613, 34.6842886957154], [-77.42615527066876, 34.68445014956369], [-77.42609461172196, 34.68461990898735], [-77.42609719576153, 34.68470937493094], [-77.42608907686336, 34.684847807133565], [-77.42594800780793, 34.684936731625996], [-77.42593249943404, 34.68496574965255], [-77.42592243911832, 34.68513813746026], [-77.4259674398347, 34.6852230669103], [-77.42609613157299, 34.68537106721878], [-77.4262272653549, 34.685457303420776], [-77.42623492685436, 34.685460229971405], [-77.42638614592734, 34.68547608184607], [-77.42647930833242, 34.68548584762971], [-77.42669711679804, 34.685508679436936], [-77.42682121070159, 34.68552168728188], [-77.42697528345553, 34.68554887367903], [-77.42700360334803, 34.68555677328695], [-77.42703891605767, 34.685564957198], [-77.427306140134, 34.68561851694167], [-77.42739207014748, 34.68564076393573], [-77.42745517664808, 34.685657101994394], [-77.42752650021347, 34.685702214911764], [-77.42759829239779, 34.68571614811282], [-77.4276564454077, 34.68575362047095], [-77.4276776986962, 34.68582124967746], [-77.42764579776104, 34.68589726210289], [-77.42762916943994, 34.68594404468539], [-77.42760044983794, 34.686000179509776], [-77.42756936116331, 34.686062894734526], [-77.42744450261773, 34.68624761237629], [-77.4274200934441, 34.68627612788263], [-77.42740926828199, 34.686286438380705], [-77.42714863121002, 34.68658018257725], [-77.42707083029546, 34.68672714182672], [-77.4269818639651, 34.686927902171234], [-77.4268061329276, 34.6871936371076], [-77.42671185249179, 34.68736184772821], [-77.42653755588152, 34.68765877613303], [-77.4264813379541, 34.687732861724335], [-77.42630118519601, 34.68810471893548], [-77.42628565614461, 34.68812974878275], [-77.42627463096767, 34.68814280214498], [-77.42625124258971, 34.688156645513104], [-77.4259680063081, 34.68838938270335], [-77.42577050841338, 34.68850864873245], [-77.42563966574443, 34.68860046073231], [-77.42543703560455, 34.68875573387581], [-77.4252195880929, 34.688875036990645], [-77.42504890268648, 34.68913039705608], [-77.42492630269842, 34.68933153562944], [-77.42474710339795, 34.6896459900087], [-77.42466174730694, 34.68979808360707], [-77.4245965396828, 34.689886628904624], [-77.42436962447874, 34.69022964807229], [-77.42435754610405, 34.69024380228148], [-77.42434771235952, 34.69024732622958], [-77.42434898921243, 34.690258492242506], [-77.42407365935188, 34.69052757676716], [-77.42393577957691, 34.690662327879785], [-77.42392058142727, 34.69067403918156], [-77.42378050811364, 34.69079620699268], [-77.42368784487317, 34.690855149574816], [-77.42351304230603, 34.69097501585497], [-77.42344337980421, 34.69099293607163], [-77.42338581744286, 34.691029051261175], [-77.42334160295485, 34.69112522241514], [-77.42316155773923, 34.69128009407973], [-77.42308661335451, 34.69134124427838], [-77.42300995271302, 34.69140618927305], [-77.4229645951004, 34.69144080392821], [-77.42285145587606, 34.69152101624834], [-77.42269333116681, 34.69162546569978], [-77.4226817338618, 34.69163300818164], [-77.42252252195281, 34.69173114975335], [-77.4223609712775, 34.69178875701795], [-77.4221840974171, 34.69192576767512], [-77.42213359027912, 34.691988767878634], [-77.42189358259826, 34.692141853508964], [-77.42185673793759, 34.692138479439045], [-77.42175993976286, 34.692137616367894], [-77.42139294878625, 34.692128120274674], [-77.42123513742618, 34.69220257618437], [-77.42095887273405, 34.692416505312174], [-77.42096504835928, 34.692563216227], [-77.42092214797546, 34.69285427299764], [-77.42093063154272, 34.69296571594753], [-77.42091511257681, 34.69303041824442], [-77.42073004367269, 34.69328814562313], [-77.4205783922132, 34.69336437227325], [-77.42055554257152, 34.6933768134594], [-77.4205315005129, 34.693385195643444], [-77.42037120418814, 34.693449396115724], [-77.42021770949287, 34.693503388725034], [-77.41998962507587, 34.69357346652575], [-77.41986421648639, 34.69361756502884], [-77.41979980078575, 34.69363708063928], [-77.41973118225233, 34.693664344820995], [-77.4196203910056, 34.69371772321912], [-77.4195003598808, 34.693767535359875], [-77.41942350382118, 34.69376978916452], [-77.41924688134308, 34.693726445745895], [-77.41919587867066, 34.69371240213717], [-77.4191478887703, 34.6936931249002], [-77.41890471352508, 34.69361127206456], [-77.4185532234796, 34.69346876762151], [-77.41832110556412, 34.69341343117977], [-77.41801131576852, 34.69334920950095], [-77.41772277971293, 34.69326643293108], [-77.41747707763102, 34.693205114168], [-77.4174230149342, 34.69319501460603], [-77.41735202069802, 34.69317790811669], [-77.41721774508119, 34.6931550654745], [-77.41711207932065, 34.69316218021167], [-77.4169980654823, 34.693169856906756], [-77.41686123226312, 34.69321951508666], [-77.41689524982044, 34.69336847037552], [-77.4168981951756, 34.69351199536379], [-77.41687313598926, 34.693713605188094], [-77.41687071009439, 34.693781930063025], [-77.41683432577076, 34.693840245937416], [-77.41645595666816, 34.69452750269805], [-77.41626091206844, 34.694686810682406], [-77.41611475457641, 34.69471760702638], [-77.41600575163426, 34.694769731244236], [-77.41574064545146, 34.69485389950383], [-77.4152228868697, 34.69526002850348], [-77.41505238808409, 34.69522454207961], [-77.41506539327563, 34.695386794302244], [-77.41489667556152, 34.69554129992415], [-77.41484450694007, 34.6955890741722], [-77.41483292449489, 34.69561372740852], [-77.4148031567402, 34.695854160319264], [-77.41478517542546, 34.69603416812925], [-77.41487816697502, 34.6964357749004], [-77.41487780875725, 34.69643937989599], [-77.41454367937499, 34.69649899785833], [-77.41447460612169, 34.696523920085454], [-77.41415431322989, 34.69673696895604], [-77.41414799949352, 34.69673790651077], [-77.41414696968823, 34.69674281727416], [-77.41414837858099, 34.69674616443158], [-77.41415005136474, 34.696751686900754], [-77.41419562260133, 34.69694963340983], [-77.41424545840609, 34.69705682406162], [-77.41428152386473, 34.69713697660862], [-77.41444383167008, 34.697405772345604], [-77.41449011769811, 34.697496316026985], [-77.41453668030914, 34.697629857161004], [-77.41465494847345, 34.697873911466836], [-77.41473075635203, 34.698065248648035], [-77.41478011255214, 34.69826805368457], [-77.41491104760958, 34.69855040147308], [-77.41494846772933, 34.69864418026459], [-77.41497238363279, 34.698708877250375], [-77.41510245729371, 34.69899609039677], [-77.41511856413766, 34.699019580338465], [-77.41533549643715, 34.69929801877109], [-77.41538086795538, 34.69935651638236], [-77.41544135384255, 34.6994320291823], [-77.41557110907706, 34.69959106554785], [-77.41573327309445, 34.699655866772744], [-77.4158619017794, 34.69969354976586], [-77.41595764233567, 34.69969702010327], [-77.41622748822181, 34.69970701846866], [-77.41642576679938, 34.69971441578477], [-77.41649650883454, 34.69971540553721], [-77.41654286513143, 34.69976449850457], [-77.41659927058862, 34.69983706576255], [-77.4166893590778, 34.69992656648974], [-77.41670499285247, 34.700102161518174], [-77.41670877095464, 34.70014164808479], [-77.4167077354671, 34.70017546078256], [-77.41665713840041, 34.70041640524569], [-77.41666941356789, 34.70060442510591], [-77.41660630016104, 34.70075763892346], [-77.41648610147888, 34.70091567746753], [-77.41646733982012, 34.70092293078221], [-77.4162914792635, 34.70099091875322], [-77.41625485290247, 34.70100054027504], [-77.41611428905807, 34.701035442657464], [-77.41606184926248, 34.701046828324515], [-77.41589088235783, 34.701083948416], [-77.41557475054707, 34.70115599468665], [-77.4154904627233, 34.701177268786], [-77.41542733373319, 34.701194332409536], [-77.41519058741657, 34.70122131504134], [-77.4150956426015, 34.70123306912636], [-77.41506108036819, 34.701223231784425], [-77.41479063803476, 34.701179644790145], [-77.41425463122626, 34.70116537957322], [-77.41405546149211, 34.701075024471606], [-77.41358419443503, 34.70091907880914], [-77.41348700415926, 34.70089356997585], [-77.4131672380407, 34.70072625321517], [-77.4130319010619, 34.70061293903964], [-77.41290628130074, 34.70038875199864], [-77.41256730302935, 34.700137741787394], [-77.41253613813588, 34.700111609600334], [-77.41252160850733, 34.70010285531257], [-77.4124688219782, 34.70006950282901], [-77.4120891294277, 34.69983689875333], [-77.41208966842783, 34.69944008884121], [-77.41208698221713, 34.6993914449832], [-77.41209005877147, 34.69937788911878], [-77.41209239549538, 34.69936114078736], [-77.41214881038806, 34.69891930570637], [-77.41208634381567, 34.69881747862736], [-77.41189127556544, 34.698580378659685], [-77.41175260898531, 34.6983908016802], [-77.41166197052156, 34.69822967678894], [-77.41159543628058, 34.69808662626955], [-77.4114903992612, 34.69785489357633], [-77.41137225008215, 34.69749105723664], [-77.41135482923579, 34.69744333766604], [-77.41125156265278, 34.697061819835824], [-77.4111819827876, 34.69682375285649], [-77.41111589128711, 34.696672063764474], [-77.41102431429283, 34.69647938567101], [-77.41094759863547, 34.69629591440186], [-77.41092075467029, 34.69617324556459], [-77.41085639076395, 34.69588761209048], [-77.41085246190703, 34.695869795510866], [-77.41084008447903, 34.69581694372816], [-77.41078107556038, 34.69556526219548], [-77.41076097653941, 34.69548106435612], [-77.41072002713923, 34.69531702958615], [-77.41064709133332, 34.695082221616985], [-77.41060493407255, 34.694944520320234], [-77.41062962757239, 34.6947246279734], [-77.41063922567291, 34.69463915635172], [-77.41062586917933, 34.694392729563305], [-77.4106749736869, 34.69417789871533], [-77.41071240245307, 34.69411187316276], [-77.41100653676692, 34.69396680072964], [-77.41106375367633, 34.69393836544949], [-77.41112799158788, 34.69390833737538], [-77.41135603751763, 34.69380952453487], [-77.41141773734955, 34.69376916448065], [-77.41155880554318, 34.6936009100657], [-77.41159825226504, 34.6933464236126], [-77.41160018827328, 34.69333583257473], [-77.41160263627248, 34.693323438168605], [-77.41165025071255, 34.69307379101725], [-77.41168147023954, 34.69286536185665], [-77.41169280671446, 34.6928091240813], [-77.41169136794456, 34.69272043763087], [-77.41168368547017, 34.692526376031125], [-77.41170226384669, 34.69241033929721], [-77.41158553313416, 34.6923284029862], [-77.4113650188215, 34.69210467079525], [-77.41133597713362, 34.69208361915995], [-77.41128017810854, 34.69204795029695], [-77.4110644203495, 34.69191480960125], [-77.41093577205567, 34.691837378718134], [-77.41091866157629, 34.69169959532746], [-77.41083242761603, 34.69143414149217], [-77.41085546441107, 34.69135333141567], [-77.41098544344058, 34.691163846130046], [-77.41127986252624, 34.69080115047121], [-77.41129636444276, 34.69071351875582], [-77.41131767589235, 34.69061303158486], [-77.41146750478325, 34.69049384157786], [-77.41139775611197, 34.690305624335146], [-77.41135334712963, 34.69017434169544], [-77.41126464700515, 34.689914802736354], [-77.41111270944953, 34.689535031004624], [-77.41111224476393, 34.68953203096856], [-77.41111190116791, 34.68953074737992], [-77.41090164802083, 34.6891735337645], [-77.41078033514324, 34.688855617235546], [-77.41073763066126, 34.68879560786951], [-77.41072250994087, 34.68866944505002], [-77.4106961452594, 34.688366567397885], [-77.41066556391362, 34.68825634188082], [-77.41062285042898, 34.68798034507339], [-77.41061776680486, 34.687952917339054], [-77.4106138260359, 34.687938257384715], [-77.41051716147024, 34.68764529813592], [-77.41050246146186, 34.68755467136458], [-77.41058142815262, 34.687164456807324], [-77.41060177943871, 34.68711578967757], [-77.41064120779295, 34.68705044717705], [-77.41080409060568, 34.686780511260785], [-77.41097084586953, 34.68668581270042], [-77.41100113759981, 34.68645395324806], [-77.41099482318687, 34.686344343703695], [-77.41104381443206, 34.68615222898299], [-77.41090564734321, 34.68582404669644], [-77.41086614022777, 34.685617576300444], [-77.41086217465953, 34.685529554385226], [-77.41085123997087, 34.68536135946051], [-77.41084094012464, 34.685242565848355], [-77.41084393566663, 34.68518049347974], [-77.41085418076119, 34.68496764014027], [-77.41086608757851, 34.68472490644384], [-77.41086707380171, 34.68463912226394], [-77.41087504707639, 34.684415825073415], [-77.41091449224693, 34.684258367295975], [-77.41099157979542, 34.68409463710806], [-77.41137458475933, 34.684066428893765], [-77.41141482133827, 34.68406570007323], [-77.41143560489724, 34.684072781550014], [-77.41199616530066, 34.68425346609316], [-77.4120002784299, 34.684256910458764], [-77.4120067111708, 34.684258782845845], [-77.41201889440421, 34.684256960304516], [-77.41292622383898, 34.68426651946547], [-77.41340402432826, 34.68383522108951], [-77.41356511238955, 34.683815273007305], [-77.41361961102993, 34.68369883429219], [-77.41363462294693, 34.68356991398835], [-77.41352739194531, 34.683409142836275], [-77.4133569672332, 34.68279304988645], [-77.41315054513804, 34.68249747702551], [-77.41313154433054, 34.68240983669853], [-77.41331499583276, 34.681917859581276], [-77.41331646348195, 34.6819154304586], [-77.41331729590671, 34.68191374692704], [-77.41343828553245, 34.681420071206276], [-77.41344305398718, 34.68140061470073], [-77.41344817570538, 34.68137971648798], [-77.41356013465958, 34.68092288320845], [-77.4135692564486, 34.68088566354282], [-77.41356166672777, 34.68081724605918], [-77.41362751675152, 34.68034693720995], [-77.41375615296378, 34.67994839798161], [-77.41359173607148, 34.67977530752667], [-77.41336655535596, 34.67953824818786], [-77.4132032904957, 34.67963938288521], [-77.41294091804087, 34.67980190910779], [-77.41291490100883, 34.67981802519292], [-77.4127418051261, 34.679925248165596], [-77.41262651046542, 34.67999666664809], [-77.41258864647666, 34.680011829011264], [-77.41255626018295, 34.68000265910561], [-77.41227685186, 34.67998212234188], [-77.41209396669511, 34.67981031418951], [-77.41206977374019, 34.679759274950825], [-77.412049248193, 34.679661650738694], [-77.41189601989589, 34.67918193022918], [-77.41187819260769, 34.67894650680678], [-77.41135465966227, 34.67870345498489], [-77.41109267933324, 34.67853921810448], [-77.41095646454568, 34.67843835927545], [-77.41052519228387, 34.67828609106354], [-77.41028757405877, 34.67805994100439], [-77.41014056540305, 34.67788605828096], [-77.41005255503303, 34.67770541913424], [-77.40986267642224, 34.67735212246296], [-77.40982646890204, 34.67712440854831], [-77.40945978821766, 34.67665200099727], [-77.40948157623393, 34.6763756070186], [-77.40977434182034, 34.67564384203014], [-77.4103028101481, 34.675486512834986], [-77.41054932470699, 34.675355944368775], [-77.4106482889112, 34.67530352728327], [-77.41076418321286, 34.67524781337472], [-77.41100284218038, 34.67513538555917], [-77.41122386924482, 34.67503289171382], [-77.41154380381155, 34.67462254651624], [-77.41153874336351, 34.67458396967045], [-77.41112830505786, 34.67399026788085], [-77.41104781202417, 34.67393679128104], [-77.41029465139408, 34.673976856256076], [-77.40979660234899, 34.67416364087062], [-77.40935881114551, 34.6737487715026], [-77.40946695097657, 34.673299770298115], [-77.40970370190186, 34.67301009231076], [-77.40995421489359, 34.67260767863194], [-77.41008768740535, 34.67239877711545], [-77.41015805932126, 34.6722570833675], [-77.4103977859598, 34.67194818642079], [-77.41044452062185, 34.671926014588365], [-77.41090616120239, 34.67198463974968], [-77.41106381457465, 34.67200006147968], [-77.41132053517504, 34.67203762076788], [-77.41164883112177, 34.67219249524197], [-77.4119291745059, 34.67216192751524], [-77.41290778911416, 34.67227023999878], [-77.41291349850754, 34.67226950161348], [-77.41349293751765, 34.67172756191005], [-77.41379007278786, 34.67145803750098], [-77.41409260369845, 34.67121231503991], [-77.41465926003389, 34.6706467027101], [-77.41466062126676, 34.67064530295473], [-77.41466174097397, 34.67064350373376], [-77.41523250283771, 34.66972637882027], [-77.41556053544016, 34.66912504929848], [-77.41562181611869, 34.66845746658001], [-77.41509931197311, 34.66837056367095], [-77.41465679826598, 34.66840668720966], [-77.41422566372833, 34.668437577122965], [-77.41403577061611, 34.668374006108465], [-77.41372205782008, 34.668357494753884], [-77.41326781464917, 34.66836683855535], [-77.41320601724914, 34.668458072469605], [-77.41302098321815, 34.668650030422924], [-77.4130037132699, 34.66866682850243], [-77.412998131808, 34.66867377448026], [-77.41282785886943, 34.66888484059297], [-77.4127395498194, 34.668998871899205], [-77.41249362751104, 34.66931642261591], [-77.41248857576466, 34.6693252150264], [-77.4124840377926, 34.669328995175455], [-77.41247424005061, 34.66934158842581], [-77.41222733674707, 34.66965717433228], [-77.41201084673742, 34.669717135575716], [-77.41183624172854, 34.66976549609228], [-77.41169003097149, 34.66983721851793], [-77.4114664377961, 34.669908647986176], [-77.410951934275, 34.67017354819722], [-77.41068639048072, 34.670128798355464], [-77.41003804661034, 34.66989464225446], [-77.40978625097009, 34.66977376206244], [-77.40940223032393, 34.66952420098796], [-77.40924617256736, 34.66942619521164], [-77.40918959415605, 34.66935595161067], [-77.40891082554045, 34.669191255857044], [-77.40912215258527, 34.66906597294465], [-77.40908123062965, 34.6686917746522], [-77.40906251922624, 34.66851628649077], [-77.40921023845726, 34.66817780423681], [-77.40922408347593, 34.668002537076475], [-77.40922686488796, 34.66790406155905], [-77.40918830881242, 34.66767785530446], [-77.40918204205958, 34.667608810127106], [-77.40918067695719, 34.667574305916354], [-77.40915992330632, 34.667511321066016], [-77.40872645916858, 34.66687113580158], [-77.40866297339338, 34.6668183362865], [-77.40799353766982, 34.66711409901478], [-77.40789414446924, 34.6671580112644], [-77.40722273197423, 34.66745464122903], [-77.40652414034776, 34.6677632725314], [-77.40648190269833, 34.667781932494826], [-77.40651343741827, 34.66780023206827], [-77.40652040485979, 34.667801915960894], [-77.40707455818607, 34.66807507374463], [-77.40714869985254, 34.66808171937791], [-77.40740361561711, 34.668104568081404], [-77.40729118426043, 34.6675666421439], [-77.40793002164448, 34.66733344648194], [-77.4078789392694, 34.66811741579857], [-77.40836173496851, 34.66805519237403], [-77.40868244594395, 34.66855219317947], [-77.40867361329258, 34.6686785457879], [-77.40864333532235, 34.66909763034145], [-77.40852141636636, 34.66957948031053], [-77.40850890921378, 34.66960970547032], [-77.40848862053463, 34.66964840843629], [-77.4082093808622, 34.67006399224351], [-77.40804420765463, 34.670295098490826], [-77.40789528682308, 34.67051318152095], [-77.40780546706982, 34.67065269105953], [-77.40766503465132, 34.67088469068258], [-77.4076138014454, 34.670973785120594], [-77.40758350970384, 34.671037743766654], [-77.40740510814742, 34.67135874684192], [-77.40736599857301, 34.671430075009894], [-77.40735806088547, 34.67144340039185], [-77.40731138756975, 34.67147856844909], [-77.40706055845418, 34.671678547037224], [-77.40683961825854, 34.67167538480686], [-77.40668591488183, 34.67162966758539], [-77.4064873991806, 34.671418214180584], [-77.40645787762897, 34.671388304292776], [-77.4063892875246, 34.671328474678255], [-77.40618371710357, 34.67115128088265], [-77.40611173587139, 34.67108637216058], [-77.40592323798595, 34.670941173789345], [-77.40577584369183, 34.670780163847425], [-77.40566624282043, 34.67072566151546], [-77.40550007061583, 34.67062178750143], [-77.4051247059103, 34.670383143620825], [-77.40491771059777, 34.67024548786562], [-77.40473675461902, 34.6701210752942], [-77.40458904873928, 34.67002033709952], [-77.40440460332388, 34.670013207973156], [-77.40420891429308, 34.67000564415048], [-77.40395071679004, 34.670012053133156], [-77.40340049830716, 34.670058091233884], [-77.40333426811961, 34.67007099528943], [-77.40329043975649, 34.67007953451242], [-77.40318532681894, 34.67007551170988], [-77.4028646667621, 34.67005085194823], [-77.40267423382038, 34.669994850283544], [-77.40245986663912, 34.669931809412574], [-77.40230648438353, 34.66988575835842], [-77.40208410628148, 34.66982013312672], [-77.40182115259111, 34.66975191829136], [-77.40176247599491, 34.66974385269973], [-77.40171813173124, 34.669794892512186], [-77.40158650017861, 34.66998220297869], [-77.40168038224137, 34.6701079145339], [-77.40180041535552, 34.67020689527354], [-77.40194473577539, 34.67030130017369], [-77.40224749450573, 34.67046672668561], [-77.4024823428581, 34.67065735603357], [-77.4025910941422, 34.670769724730064], [-77.40285535031839, 34.67098553563757], [-77.40293594823541, 34.67107219873799], [-77.40299385367268, 34.67110352411941], [-77.40305804942788, 34.67111555354717], [-77.40317127103215, 34.671096127613914], [-77.40349552181058, 34.67108311450239], [-77.40363673913603, 34.671096120228], [-77.40396660506325, 34.671105668751395], [-77.40426857508302, 34.671126863186714], [-77.40445119515581, 34.671332767194826], [-77.40473953404295, 34.67164510111429], [-77.40474874525994, 34.671654973607595], [-77.40475350502395, 34.67166484397901], [-77.40496248024988, 34.6720121433333], [-77.40521358523388, 34.67228864605559], [-77.40526147542182, 34.67233374726635], [-77.40538431499706, 34.67242993356378], [-77.40553965343086, 34.67266403482906], [-77.40547660356401, 34.67282808419399], [-77.40535410770555, 34.672978494173975], [-77.40519339451663, 34.6731129419898], [-77.40477810304367, 34.67387439117521], [-77.40479499054433, 34.67390105567728], [-77.40514052372183, 34.67461586957626], [-77.4056892343379, 34.67507116324445], [-77.4060265487795, 34.675138929153285], [-77.40582018029201, 34.675378162401856], [-77.40587279157705, 34.675720964487255], [-77.40590047940236, 34.67596540100944], [-77.40595042800247, 34.67606335537677], [-77.40582273884473, 34.676387297300025], [-77.40581859040086, 34.67649587141716], [-77.40578311771696, 34.67657948493682], [-77.40581316278386, 34.676855731636664], [-77.40580112845672, 34.67701830709399], [-77.40584908127306, 34.677065675467894], [-77.406025094089, 34.67723022075001], [-77.40616313070933, 34.67731363278446], [-77.4062967794137, 34.67739839455329], [-77.40668383753722, 34.677542753350835], [-77.40683457211274, 34.67775401243995], [-77.40698493264861, 34.67802235107061], [-77.40674225592265, 34.678411058487434], [-77.40679506004606, 34.678726233877846], [-77.40658308923258, 34.67899996684778], [-77.40687211448241, 34.679249562311675], [-77.40701438121923, 34.679345737730166], [-77.40722416054862, 34.679428219126], [-77.40756545083187, 34.6796555622634], [-77.40778393006751, 34.67976187133662], [-77.40784909142639, 34.67978249007798], [-77.40793494946709, 34.679842816381], [-77.40811137385857, 34.67998316967303], [-77.40819533823039, 34.680123348554886], [-77.40831462281585, 34.68043316777665], [-77.40833657290835, 34.68049982263867], [-77.40836832692207, 34.68074301337086], [-77.40841590759224, 34.68083725632603], [-77.40847806039599, 34.680929707311954], [-77.40868023250655, 34.68113173046729], [-77.40869240716964, 34.68116825266075], [-77.40890401387806, 34.681489605774516], [-77.40854890702516, 34.68159534465802], [-77.40830809166253, 34.681516614824915], [-77.40818710058747, 34.68137904518119], [-77.40774586152514, 34.68124527808269], [-77.40738858129791, 34.6811935849132], [-77.40711723125682, 34.68120322046513], [-77.40655224239393, 34.68122568994147], [-77.40651172785871, 34.68125553923468], [-77.40646378640074, 34.68124684008224], [-77.40604148434763, 34.68160606417061], [-77.40586821125274, 34.681699213498966], [-77.40566953125955, 34.681776616976], [-77.40551056746173, 34.681862348571244], [-77.40532659875419, 34.68191499653281], [-77.4051323617814, 34.68199184471138], [-77.40495971471978, 34.6820148318614], [-77.40466867169363, 34.6819540353783], [-77.40434969404805, 34.68190849410814], [-77.40415720804053, 34.68189298225705], [-77.4039114050823, 34.6818235693068], [-77.40375630858485, 34.68174472813208], [-77.40341568923357, 34.68158400426457], [-77.40319234044428, 34.681479411075834], [-77.40283570729459, 34.68122746458836], [-77.40264784967647, 34.681146864418736], [-77.40257475193569, 34.68104210199483], [-77.40237022772203, 34.680880254507244], [-77.40213116868266, 34.68071832803075], [-77.40181111461439, 34.6804679554323], [-77.40159589027246, 34.68035400591641], [-77.40135021923203, 34.68021386497788], [-77.40132033436498, 34.68019917916656], [-77.40127999122795, 34.68017869048132], [-77.40104060169854, 34.68005877200093], [-77.40086096044926, 34.67997160248132], [-77.40068706353642, 34.67973195088122], [-77.4006451523261, 34.67961528826937], [-77.40064110184551, 34.67922578120794], [-77.40061583353518, 34.67918119182816], [-77.40063328964844, 34.679153982906755], [-77.40064248472684, 34.67913561665092], [-77.40072209245318, 34.678946205206465], [-77.4010440092285, 34.67829600404745], [-77.40110607028356, 34.67820118783002], [-77.40108303764855, 34.67809367341897], [-77.40112703785586, 34.67764938408357], [-77.4014095963202, 34.67739760225014], [-77.40143604618297, 34.67719840770892], [-77.40145862544561, 34.67704436268381], [-77.40149807390816, 34.6766609770957], [-77.40141957639668, 34.67653846488386], [-77.401258988351, 34.67640288703167], [-77.40116385315507, 34.67631521869358], [-77.40113422773445, 34.67628701902687], [-77.40091229599206, 34.67607759424784], [-77.4008089572811, 34.67597636525525], [-77.40066861528135, 34.67581278552652], [-77.40066782057303, 34.67581119759889], [-77.40069845215055, 34.67557613247946], [-77.40071221192017, 34.675508219190334], [-77.40081631309778, 34.675304033082114], [-77.40091683569136, 34.67509474202837], [-77.40110849810429, 34.67484717105192], [-77.40111926874107, 34.67467768604], [-77.4011142528805, 34.67451004771652], [-77.40106975651662, 34.67427446388542], [-77.40096659773681, 34.674125311108455], [-77.4008972370716, 34.67391755623841], [-77.40083402300664, 34.67373428467108], [-77.40079081707799, 34.67361767045344], [-77.4007430138978, 34.673325921118206], [-77.40074200378146, 34.67332100960017], [-77.40073736141211, 34.67330447210487], [-77.40068496441576, 34.673021468054195], [-77.40064747010659, 34.67291944900836], [-77.40059100331064, 34.67276271670832], [-77.40042403375489, 34.67237097495774], [-77.4003525756248, 34.67214980560635], [-77.40021580930973, 34.67184596715708], [-77.40016052825726, 34.671719578465456], [-77.40002031898746, 34.67139574733171], [-77.39988466636171, 34.671063853525325], [-77.39985358232711, 34.67101897351773], [-77.39983351332354, 34.670953762818726], [-77.39974442716486, 34.670618181049896], [-77.39962765233264, 34.6704147244281], [-77.3994407219246, 34.670097817175275], [-77.39915113130752, 34.669973009013404], [-77.39874288734482, 34.6695458117639], [-77.39857551484258, 34.66932046402574], [-77.3985297256127, 34.66881893074248], [-77.39813013219185, 34.669037924409395], [-77.39788078431822, 34.66884726625251], [-77.39762134945133, 34.6688258147938], [-77.39756749885147, 34.66882282229055], [-77.39754011720174, 34.66882068963191], [-77.39731377644169, 34.668730945029274], [-77.39728400646716, 34.66869553888809], [-77.39713116375448, 34.66858395380082], [-77.39718254375063, 34.66844034902949], [-77.39716091336196, 34.66820009469337], [-77.39715564705537, 34.6681513535832], [-77.39715317308787, 34.66812845662898], [-77.39712425296656, 34.66786078258826], [-77.39702937006646, 34.66736283738795], [-77.3969995599328, 34.6672998947373], [-77.39695894418065, 34.667243744753655], [-77.39655911692496, 34.666774421165954], [-77.39605302053151, 34.66692654028663], [-77.39592409901948, 34.666924261005285], [-77.39585563473067, 34.6669910478504], [-77.39564804680839, 34.667220836636794], [-77.39554626766586, 34.667308260992804], [-77.39541338991219, 34.667411731570084], [-77.39533500267376, 34.66745687144104], [-77.39509221893812, 34.667414516510675], [-77.39480058402283, 34.667324440302494], [-77.39479814657429, 34.667323772714255], [-77.39479615476058, 34.66732333684403], [-77.39449711202388, 34.66725705807068], [-77.39426401719973, 34.667200779601174], [-77.39413013235922, 34.667157758555575], [-77.39390625933693, 34.66708492125923], [-77.39369392563849, 34.66701609654609], [-77.39361342231852, 34.66698991877813], [-77.39352958351364, 34.66696191989995], [-77.39332103194612, 34.66689337524513], [-77.39312003642178, 34.66682519087862], [-77.3929419566128, 34.66676069001913], [-77.3927411950789, 34.666683231636306], [-77.3925191051116, 34.66659001562782], [-77.39245531688042, 34.666564219659136], [-77.39236855926002, 34.666553523764264], [-77.39215411744813, 34.666498083134734], [-77.39199995643278, 34.66648869660528], [-77.39159977672043, 34.66648546889461], [-77.3915436584222, 34.666490251356244], [-77.39151172100627, 34.666503843992], [-77.39147324766753, 34.666480610780695], [-77.39096740247885, 34.66629544798427], [-77.39093289050061, 34.66629024225385], [-77.39090366009991, 34.66627185070826], [-77.39039248124428, 34.66610282236152], [-77.39035051972212, 34.66608886425596], [-77.390258911594, 34.66609443395897], [-77.38993059355064, 34.666095217806436], [-77.38968537467309, 34.66617312155996], [-77.38935109759663, 34.66625714126887], [-77.38913921468102, 34.666296730822054], [-77.3890083177011, 34.666298473691064], [-77.38887415009705, 34.666288029852055], [-77.38839919225123, 34.66633567150751], [-77.38780791032832, 34.66632664854445], [-77.38780351276594, 34.666326470086354], [-77.38780043291045, 34.66632654454359], [-77.38776482753035, 34.666328953568], [-77.38723392391606, 34.66636863800013], [-77.387193359691, 34.6663672033719], [-77.38714572294276, 34.666377873146494], [-77.38672410881199, 34.66636705530603], [-77.38659790207643, 34.6663572282294], [-77.38636980999351, 34.66632831294497], [-77.38630948724868, 34.66632010529848], [-77.38627769053727, 34.66631663485658], [-77.38601210938782, 34.66631390498751], [-77.38576888748948, 34.66631426873483], [-77.38563535702633, 34.666315489174565], [-77.38541128817099, 34.66632242975243], [-77.38491955793762, 34.66631919206138], [-77.38481120871134, 34.66632839163459], [-77.38474859778, 34.666311597208676], [-77.38465423407983, 34.66626961519963], [-77.3843696113542, 34.66620922759558], [-77.38426013737683, 34.66616527815815], [-77.38413763510346, 34.66609699857711], [-77.3840597679228, 34.6660535974781], [-77.38400257463489, 34.66602171930234], [-77.38378697324622, 34.66590154774119], [-77.38376425931716, 34.665886925510115], [-77.38374613697745, 34.665874281543935], [-77.3835500033664, 34.66574350948051], [-77.38349535894312, 34.66570732204233], [-77.38348495122877, 34.66570777453771], [-77.38322754755218, 34.665599125406494], [-77.38310998356054, 34.66550729503121], [-77.3828719511016, 34.665391362636086], [-77.3827182486179, 34.665291929479466], [-77.38258287528353, 34.665219736933054], [-77.38240345881867, 34.665117102860755], [-77.38230253119036, 34.66504138464359], [-77.38220818354202, 34.6649873876743], [-77.38203825181317, 34.66492364916958], [-77.38198220479904, 34.66489382984729], [-77.38192877386936, 34.664695010801225], [-77.38204296987631, 34.66445273183417], [-77.38205866739627, 34.66442178767157], [-77.38232403569715, 34.66415322925672], [-77.3823883138915, 34.66407587541099], [-77.38250127304053, 34.66397633392711], [-77.3828933372277, 34.66358749960955], [-77.38301898818028, 34.66335869172605], [-77.38318967393545, 34.66305932401574], [-77.38345908232569, 34.66257332098995], [-77.38349002416452, 34.66250003086448], [-77.38355739897194, 34.66239704583961], [-77.3837642450523, 34.66210500448004], [-77.38395015605491, 34.66207415131432], [-77.3840614218696, 34.66210932818219], [-77.38422393547917, 34.66216171891966], [-77.38476076825815, 34.662350138488705], [-77.38476713025133, 34.662351916020306], [-77.38477054009658, 34.66235167521617], [-77.38530834477633, 34.662548948232086], [-77.38558476391107, 34.662513051669826], [-77.38589726059647, 34.66258140930308], [-77.38594423800185, 34.66263043851442], [-77.38594046829289, 34.66268080172903], [-77.3860872644779, 34.66288769430392], [-77.38609847756152, 34.66290592656378], [-77.38633990209696, 34.6631132351724], [-77.38634133477103, 34.66311361574074], [-77.38634208899703, 34.663113527866585], [-77.38663576006257, 34.66312996268414], [-77.38683847457807, 34.66312448213269], [-77.38693523234778, 34.6631288949261], [-77.38709216494416, 34.66314021843206], [-77.38756845623801, 34.66300847757421], [-77.38770847685282, 34.66304836317957], [-77.38784929234818, 34.66307171052665], [-77.38801190078581, 34.66300913412591], [-77.3881642462241, 34.66301721801249], [-77.38830573029946, 34.662939616298296], [-77.38835590328551, 34.66283577551042], [-77.38827630579348, 34.66280544161104], [-77.3882270213702, 34.662800607935374], [-77.38804922223625, 34.66271229915141], [-77.38795902315783, 34.66269308080469], [-77.38794861461956, 34.66266357591119], [-77.38791678448109, 34.662652512144426], [-77.38768968307653, 34.66259018525878], [-77.38758500052002, 34.66254938344342], [-77.38738941595531, 34.66248139257866], [-77.38722842899895, 34.66242976556451], [-77.38714669232169, 34.66239927208793], [-77.38689017332949, 34.66229603767001], [-77.38683118991295, 34.66227089674723], [-77.3866012173938, 34.6622169362189], [-77.38649488376498, 34.6622062457275], [-77.38647635151274, 34.66211965096079], [-77.38654380505864, 34.662016206646456], [-77.38677617435526, 34.66161326848967], [-77.38678673495735, 34.66159345746477], [-77.38679161143772, 34.6615888607095], [-77.38710502355113, 34.66134190295912], [-77.38754418463063, 34.660988656415206], [-77.3875569661, 34.66098362760567], [-77.38757056393379, 34.66098326013367], [-77.38820357564067, 34.66081695623071], [-77.38869014890507, 34.660728169860256], [-77.38883144813333, 34.660714933728975], [-77.38901899310412, 34.66065601596012], [-77.38950650052702, 34.66045008886182], [-77.38973757828543, 34.66038035852327], [-77.39055790266707, 34.660259036939095], [-77.39075589156896, 34.66026791210069], [-77.39095735024526, 34.66029132416871], [-77.39152103232189, 34.66030699121765], [-77.39186751818275, 34.6602843573411], [-77.39202721274883, 34.66030256253113], [-77.39247321881551, 34.660261569552176], [-77.39274935152463, 34.660231003077364], [-77.39342268500059, 34.65990869935772], [-77.39346493337104, 34.65990550413583], [-77.39350967055617, 34.659885105764225], [-77.39364200415876, 34.65980126457561], [-77.39465611136906, 34.65904749625484], [-77.39444908613501, 34.65862414835415], [-77.3937452869273, 34.658295081629035], [-77.39289779003786, 34.6578868635959], [-77.39222025285814, 34.6576900408509], [-77.39138126894963, 34.65730746907114], [-77.39111046366807, 34.65698354971744], [-77.39008592252404, 34.65689883653857], [-77.38984138678757, 34.65583112728251], [-77.38953306592272, 34.65556072940929], [-77.3888564386633, 34.65500328819191], [-77.38805635081317, 34.65439010008564], [-77.38795569986706, 34.65432905913756], [-77.38765725049424, 34.6541262830215], [-77.38699153593072, 34.653883316588484], [-77.38637829255306, 34.65374162732434], [-77.3859839577929, 34.65341503142896], [-77.38587053808654, 34.653006798580826], [-77.38558970337262, 34.65271938196093], [-77.38547182181209, 34.65234208487284], [-77.38534866823085, 34.65223286107455], [-77.38480114463673, 34.651630712626734], [-77.38474552329633, 34.651530530453634], [-77.38401243112277, 34.6515956417336], [-77.38399722684737, 34.6515948121975], [-77.38391468437563, 34.65159033506628], [-77.38350533120975, 34.651346167231665], [-77.38341458616947, 34.651018640446566], [-77.38349019463787, 34.65080236215957], [-77.38322387302712, 34.650682175983135], [-77.38299926065599, 34.65026585962935], [-77.38257683734967, 34.65008481700873], [-77.38247638990617, 34.650055027245735], [-77.38243528473409, 34.650024380574834], [-77.38208316883166, 34.6496859654795], [-77.38193555367292, 34.64932807237364], [-77.38187033723486, 34.648728967947974], [-77.3819213083735, 34.64848099770205], [-77.3818252078012, 34.648302889740194], [-77.38164692100256, 34.64829056615559], [-77.3812874073719, 34.64811029084714], [-77.38119157457925, 34.64809583738337], [-77.38085827214356, 34.6480972556672], [-77.38057596123915, 34.648129607117916], [-77.38006960517116, 34.648002984777996], [-77.38002352644085, 34.64795486882678], [-77.3799268227196, 34.64791917713365], [-77.37944714631945, 34.647809348377095], [-77.3792809691773, 34.64777858377821], [-77.37883060253523, 34.6475921456088], [-77.37853731807961, 34.64749963696519], [-77.37842905041217, 34.64740221552484], [-77.37828979936432, 34.64730453357092], [-77.3778126914423, 34.64708120524705], [-77.3774941408433, 34.646956813473096], [-77.37712751600293, 34.64685860286107], [-77.37698743589742, 34.64681190502648], [-77.37658088015954, 34.64669558871405], [-77.37647952423394, 34.646669387597186], [-77.3764479329121, 34.646663747087], [-77.37641603871919, 34.64667360652029], [-77.37593509584265, 34.64659923698792], [-77.37577640167801, 34.646508849719545], [-77.37554396655061, 34.64652702101402], [-77.37545677664893, 34.646511543019706], [-77.37540101237809, 34.64650858548832], [-77.37512879415159, 34.64647273276779], [-77.374868533885, 34.64641475275659], [-77.37479302639431, 34.646395265443175], [-77.37462785822385, 34.646339344134674], [-77.37445194060618, 34.646291384357454], [-77.3743504662692, 34.646292362359205], [-77.37392645422302, 34.646216665989904], [-77.37382009964053, 34.64619434499772], [-77.3737869533089, 34.646168943861554], [-77.37372526810388, 34.64616426883774], [-77.37333087599885, 34.646014797762646], [-77.3731467433901, 34.645901888112604], [-77.37308629285484, 34.64586933186198], [-77.3729286704838, 34.64575457323705], [-77.37289480863933, 34.64572991977217], [-77.37271297134373, 34.64560533253143], [-77.37263055277359, 34.64555086529147], [-77.37261303122557, 34.645139308256816], [-77.37261290944782, 34.645131279070206], [-77.37261463891676, 34.645128091433776], [-77.37283186812098, 34.6446791537252], [-77.37282652924128, 34.64465878381885], [-77.37283160724566, 34.644604488021194], [-77.37298719787572, 34.64381376536029], [-77.3730787084683, 34.6435600699988], [-77.37321869204698, 34.643346863166855], [-77.3736051772438, 34.642884746833275], [-77.37357904321465, 34.64269289173752], [-77.37376168301964, 34.64263360449522], [-77.37406251270377, 34.64229457710016], [-77.37397304096848, 34.641983667335445], [-77.3737619428389, 34.64175762265508], [-77.37339706673374, 34.64167371637328], [-77.37334339978932, 34.641675887273514], [-77.37297331036767, 34.641765625549624], [-77.3727444958537, 34.64155788535084], [-77.37264040804834, 34.64132643950393], [-77.37233137746202, 34.64121317367922], [-77.37218492663847, 34.640985335952045], [-77.37201102343118, 34.640755266653514], [-77.371898500876, 34.64058414691837], [-77.37186360221801, 34.6405107494773], [-77.3717908202041, 34.64034673048347], [-77.37172969672305, 34.64024973942743], [-77.37172188226914, 34.64018501865306], [-77.37169065590125, 34.64008157370525], [-77.37173995445026, 34.639757858377735], [-77.37179102239081, 34.63971846363921], [-77.37203597105173, 34.63955436366156], [-77.37218540886595, 34.63946376415264], [-77.3725180493385, 34.639287719357434], [-77.37257977470851, 34.63926712377212], [-77.37261789466648, 34.639247926679424], [-77.3729741183485, 34.63913651217615], [-77.37318383326055, 34.63892657565009], [-77.37336851091098, 34.63884015944426], [-77.37348695975372, 34.63878470896742], [-77.37371256293596, 34.638678859015876], [-77.3737628673478, 34.638655256873086], [-77.37379775586814, 34.63864999813446], [-77.37417846895187, 34.63855760961101], [-77.37450536672091, 34.63846083517146], [-77.37455152931201, 34.6384425224386], [-77.37458687739567, 34.63846073000403], [-77.37494583467344, 34.63842028588361], [-77.374969871895, 34.63841776057808], [-77.37533348666942, 34.638384108700016], [-77.37534014385008, 34.638383454426005], [-77.37534728050252, 34.638381606234205], [-77.37608907690766, 34.63823970765688], [-77.37612878290369, 34.638228733697424], [-77.37620107764431, 34.63818849535291], [-77.3766786582141, 34.63794041944787], [-77.37691749706545, 34.637774714557864], [-77.37693816910988, 34.63775786080036], [-77.37730063157792, 34.6376954406364], [-77.3773118113118, 34.63770145301428], [-77.37735855544132, 34.63772539680948], [-77.37770605652901, 34.63789872310444], [-77.37779521103695, 34.63794071636697], [-77.37800313798553, 34.63800677644025], [-77.37831665762465, 34.63815320308193], [-77.37849455405677, 34.63828663107737], [-77.37873274435668, 34.63849428078501], [-77.37897318517781, 34.638716173169556], [-77.37928299027102, 34.638968581282505], [-77.37958930850424, 34.63914667541146], [-77.37995839984961, 34.63930158067826], [-77.38007150872818, 34.639339235051345], [-77.38011862093701, 34.63934956854208], [-77.38017404901753, 34.63939231440951], [-77.38046573767079, 34.639675343593346], [-77.38053907536333, 34.63968532470004], [-77.38086001047162, 34.639820720695354], [-77.38144124896698, 34.63983560644215], [-77.38164861052697, 34.63986283403371], [-77.38183727655448, 34.63979869849577], [-77.38251330557615, 34.639904430196495], [-77.38442107155657, 34.64004080874375], [-77.38480300399613, 34.64010382899778], [-77.38538793179566, 34.64012004381242], [-77.38686237510397, 34.639277733815334], [-77.38845246823003, 34.63618455636994], [-77.38876919772916, 34.63473301593245], [-77.3879580541566, 34.63535802504502], [-77.38735888696412, 34.635164445283465], [-77.38480399044471, 34.63421821486292], [-77.38341826911535, 34.63488550097285], [-77.38322676013203, 34.63485809117854], [-77.3824797057554, 34.63570851479111], [-77.3824380307436, 34.63571143346802], [-77.38239627361995, 34.63572062274215], [-77.38204372860382, 34.63579820579947], [-77.38173766317948, 34.63586555921551], [-77.38164942559173, 34.63588497688288], [-77.38158977438889, 34.63585609481278], [-77.3814934705635, 34.63580573126127], [-77.38134246488946, 34.63573349003115], [-77.38125518681018, 34.63566315011583], [-77.3811251988385, 34.63557421435462], [-77.38086101076495, 34.63516084192109], [-77.38080272251838, 34.635118893340874], [-77.38062862746257, 34.63508119992632], [-77.38074686715042, 34.63494120423576], [-77.38086106101765, 34.63492864874527], [-77.38094245178232, 34.6349483420678], [-77.38164488320628, 34.63492968639073], [-77.38164962335036, 34.63492804803839], [-77.38165671219507, 34.634925453189084], [-77.38243822304018, 34.634737054958784], [-77.38309057040627, 34.634579789431164], [-77.38293633739745, 34.63336349893266], [-77.38169448949914, 34.63327733251641], [-77.38164996672674, 34.633274243204745], [-77.3815820186527, 34.63331875093874], [-77.38113675709648, 34.63360630866418], [-77.38086133753644, 34.63365426753026], [-77.38071375621429, 34.63352963085712], [-77.38030806643745, 34.63342912884319], [-77.38013302913008, 34.6333895399133], [-77.3800728521786, 34.633367269197294], [-77.37993431023914, 34.633333779495], [-77.3796786117264, 34.63322257930679], [-77.3796013143534, 34.63318962477375], [-77.3792844263538, 34.63285100422981], [-77.37923507534357, 34.632787736265875], [-77.37921545038219, 34.63273740495239], [-77.37920045118453, 34.632649086924715], [-77.37916940718489, 34.63231947534763], [-77.37928460566131, 34.63209503926447], [-77.37939494787308, 34.63198121384147], [-77.37956302681671, 34.631838208984874], [-77.37969386813147, 34.6314107730896], [-77.37969966797274, 34.631393962580695], [-77.37969392498562, 34.631378761606896], [-77.37956181022946, 34.630989259225245], [-77.37948258029465, 34.630787817979616], [-77.37928492177059, 34.63076677404948], [-77.3790365714205, 34.63079749486137], [-77.37889066507748, 34.63074547629057], [-77.3788217303361, 34.63074554304605], [-77.37849636883635, 34.63088443088012], [-77.37824003850089, 34.63090364137605], [-77.37810209883433, 34.63091397914371], [-77.37798079568219, 34.63092306970229], [-77.37770783608954, 34.630913922000914], [-77.37764407597723, 34.630909611456666], [-77.37740734363146, 34.63087504983722], [-77.37733468391076, 34.63086279721158], [-77.3773135870236, 34.63086136189316], [-77.37728093551428, 34.63085809606121], [-77.37691919781147, 34.631336048307226], [-77.37690483873472, 34.63135653489713], [-77.37690291369482, 34.63137226879622], [-77.37690807052293, 34.63138349471036], [-77.37691917872384, 34.63140767598373], [-77.37703300074622, 34.631655453466266], [-77.37709891830178, 34.631768597863555], [-77.37718235107648, 34.631897607859344], [-77.3773132667857, 34.632085487932315], [-77.37736370928683, 34.632155019091826], [-77.37739445103763, 34.63223805564775], [-77.377313231436, 34.632220855666425], [-77.37712178230939, 34.632408321373305], [-77.37691889644216, 34.632468866352895], [-77.37674146836613, 34.63247814906363], [-77.37671152767923, 34.63247225654246], [-77.37652464027434, 34.63241640686791], [-77.37627404214057, 34.63231196903574], [-77.37620438518017, 34.63224235165052], [-77.37613046496033, 34.63207178317214], [-77.37606426742617, 34.63191762212781], [-77.37595250438827, 34.631700902162976], [-77.37586850803767, 34.63152125634176], [-77.37582777534595, 34.631428701204825], [-77.37573644845988, 34.63117276020218], [-77.37572139932668, 34.631134100738045], [-77.3757170814986, 34.63111850548279], [-77.37570866083355, 34.631089770161246], [-77.37569308253386, 34.630697400858026], [-77.37557053896131, 34.63046936249023], [-77.37534243976974, 34.63027817552255], [-77.37520784499316, 34.630063172025615], [-77.37510443586902, 34.629933060631565], [-77.3750312818645, 34.62985423978682], [-77.37494832692256, 34.62977147138611], [-77.3748414758638, 34.62966147024783], [-77.37473205203352, 34.62956213193289], [-77.37455418275289, 34.62938720000109], [-77.37444420472272, 34.62929748712959], [-77.37434681029822, 34.62919305419237], [-77.37416008075854, 34.628875108274336], [-77.37412555849703, 34.62883754650969], [-77.37412458850935, 34.62880049826457], [-77.37410832227238, 34.62874706191389], [-77.37401201178604, 34.62839215092493], [-77.37402379504412, 34.62811290485932], [-77.37394689816267, 34.627976969089005], [-77.37382501779446, 34.62763329388147], [-77.37388745546376, 34.62756096998163], [-77.37444751091897, 34.62736479113624], [-77.37455479057613, 34.62734053195194], [-77.37479461710682, 34.627172107002835], [-77.37494911625764, 34.62707016257238], [-77.37499795935797, 34.62702906028686], [-77.37534347269657, 34.62668441120935], [-77.37543743208427, 34.6265897730369], [-77.37555524520104, 34.62647164863834], [-77.37587975196946, 34.62615314555304], [-77.3761049780101, 34.6259679082809], [-77.3761321645661, 34.62594875488857], [-77.37638041454143, 34.625770963702465], [-77.37652648404969, 34.62565826807101], [-77.3767907789179, 34.6254445645518], [-77.37686865323793, 34.62537719123632], [-77.37692080776606, 34.625341852952495], [-77.37710902825978, 34.62519606551038], [-77.37731512575195, 34.625035709824566], [-77.37736961638166, 34.62499529474661], [-77.37770943403058, 34.624755723216495], [-77.37788588454, 34.62462768208294], [-77.37846617813298, 34.62438836199375], [-77.37849799701644, 34.624375543330764], [-77.37852809229148, 34.62437759063284], [-77.37920108132278, 34.624340183819804], [-77.37928646474592, 34.62435693313059], [-77.37947658070357, 34.62442833833561], [-77.37949294289147, 34.6244285626447], [-77.37950019744933, 34.62439950962765], [-77.37948361341059, 34.62420752394161], [-77.37953873389698, 34.62392801504471], [-77.37962835138167, 34.62370556924087], [-77.37993204779711, 34.62329379237541], [-77.3799812779958, 34.62318554778359], [-77.38007520925986, 34.62315263902661], [-77.38018932414458, 34.6231338335673], [-77.38073176122408, 34.62303649523799], [-77.3808636940529, 34.62300248544432], [-77.38113444011334, 34.623120554519424], [-77.38141745225803, 34.623332451848405], [-77.38156475893958, 34.62348311644688], [-77.38160998620299, 34.62352188049437], [-77.38165203083511, 34.623524587979816], [-77.38197475925035, 34.623501046064824], [-77.38204626724217, 34.62347986671955], [-77.38210526320614, 34.62346876941442], [-77.3824405255941, 34.62332637477236], [-77.38278332219147, 34.62336291119563], [-77.38290496910157, 34.623365633038986], [-77.38322901034346, 34.623158264817555], [-77.38334567118238, 34.62292752410452], [-77.38348204959203, 34.62278228133739], [-77.38362332597995, 34.62268558125208], [-77.38389090913297, 34.62258695572231], [-77.38401757454484, 34.622547281859255], [-77.38420736495578, 34.6224733745011], [-77.38441182653246, 34.62238272897421], [-77.38452627528956, 34.62233048298895], [-77.38472513897216, 34.62217857647568], [-77.3847758308622, 34.62213868155844], [-77.38480609784688, 34.622100688328196], [-77.38497742351893, 34.62190212852528], [-77.3851306073014, 34.62169557641134], [-77.38520041013865, 34.62156761849742], [-77.38539567425877, 34.62144308233956], [-77.3855946679725, 34.62132697658261], [-77.38585696361964, 34.621024195753435], [-77.38598894974568, 34.62092661905775], [-77.38610324872336, 34.62082934686205], [-77.38637038930202, 34.620681562243824], [-77.38638320350378, 34.62067761623813], [-77.38639278509356, 34.62067485302265], [-77.38641372776503, 34.62066151562535], [-77.38700628369608, 34.62039798586209], [-77.38717168243976, 34.62032165814911], [-77.38740252417456, 34.62027038562643], [-77.38762223916662, 34.62048732556654], [-77.38775137641468, 34.62069345421449], [-77.3877222419921, 34.62106598238769], [-77.38774507557339, 34.6213187542789], [-77.38756569336509, 34.62169003834728], [-77.38753933393134, 34.621744596657344], [-77.38751362732614, 34.62177668215351], [-77.38717140785104, 34.62214505761476], [-77.38710481668811, 34.62218846276829], [-77.38695638151128, 34.62228156738935], [-77.38659945787818, 34.62256623654594], [-77.38657789046579, 34.62297518552538], [-77.38673510991745, 34.62316259246697], [-77.38690052177105, 34.62343027905466], [-77.38703910994454, 34.623825700760094], [-77.38710115720598, 34.62395896731311], [-77.3869386879731, 34.624232676573634], [-77.38683170800385, 34.62442236976139], [-77.38680452947155, 34.62445611472507], [-77.38650575301729, 34.62489391495896], [-77.3864447635708, 34.62496973626876], [-77.38638249208759, 34.625157144864275], [-77.3861820604333, 34.62557391778862], [-77.3861056908369, 34.62580070545744], [-77.38600828116107, 34.626217559772186], [-77.38638233079197, 34.62618643158109], [-77.38681308486969, 34.6261626381767], [-77.38717082416419, 34.626076023081964], [-77.38740723357955, 34.62586768213908], [-77.38746070226986, 34.62560541140384], [-77.38761903061776, 34.62521601325189], [-77.38765346929424, 34.625153060768085], [-77.38795946561868, 34.62487647646154], [-77.3880657630539, 34.62478352947706], [-77.38827654883981, 34.62463868360849], [-77.38854473696503, 34.62438112805349], [-77.38870988369605, 34.62415165453488], [-77.38874802953117, 34.624105474461906], [-77.38878566626009, 34.624100198273794], [-77.38894515497364, 34.62401699941283], [-77.38906689053428, 34.624019013757945], [-77.38914226784522, 34.6240257403002], [-77.38919443180404, 34.624025629306274], [-77.389536445771, 34.6244421760033], [-77.389589025589, 34.624392874699105], [-77.38963387206329, 34.62444302983657], [-77.38956813808738, 34.62448664261086], [-77.38953643829396, 34.62450459151167], [-77.38938246938683, 34.62490383791879], [-77.38953635240739, 34.62522307137378], [-77.38956085723746, 34.625276293903525], [-77.38956672553329, 34.62530184521087], [-77.389553699099, 34.625322417117886], [-77.38965924607018, 34.6260051946614], [-77.38967927514045, 34.62613475674986], [-77.38967900788079, 34.62628856150391], [-77.38960620741396, 34.62691897973255], [-77.38959543574069, 34.62699597798502], [-77.38958662109242, 34.62705161756754], [-77.38959518959282, 34.62778146036308], [-77.38961427437093, 34.62784239808837], [-77.3898302682887, 34.62834347921192], [-77.39048249282203, 34.6285663767176], [-77.39060210773818, 34.629099197800734], [-77.39111278055898, 34.6303646829678], [-77.39176016266889, 34.62907921255075], [-77.391802204555, 34.62837612614608], [-77.39169279790204, 34.627767540806495], [-77.39171541075922, 34.62753950309659], [-77.39174484258051, 34.627366487631136], [-77.39212838350359, 34.62663082509235], [-77.39210145034872, 34.62600070910234], [-77.39208990940041, 34.625787235540834], [-77.39200185933008, 34.625692073350166], [-77.39121678310737, 34.62517543057397], [-77.39111329820129, 34.62510069686526], [-77.39110167400632, 34.62509308971232], [-77.39105165510381, 34.62508778106427], [-77.39099199106569, 34.62496572496672], [-77.3905364292747, 34.6243129198412], [-77.39045896661672, 34.62417973915973], [-77.3905238401428, 34.623890166648664], [-77.39032498214057, 34.623747578092306], [-77.39002481808403, 34.62386078885328], [-77.39011195107358, 34.623524975742384], [-77.38990564569728, 34.62315726479785], [-77.38990334493434, 34.62313048020408], [-77.38986658014947, 34.623066579464236], [-77.38967916089432, 34.62273822954429], [-77.38965262099948, 34.622617173439124], [-77.38953673714407, 34.6220287658877], [-77.38951416214553, 34.62193720399469], [-77.38950824603116, 34.62191373196043], [-77.3895152168599, 34.62188953175067], [-77.38953675637293, 34.62187048254746], [-77.38963922429976, 34.6217845045211], [-77.3899310186147, 34.62148947315777], [-77.39000233831767, 34.621494748195104], [-77.39032524336716, 34.621409884079064], [-77.39104349950036, 34.621692407221026], [-77.3910623133412, 34.6217449723983], [-77.39111361534222, 34.62197810798345], [-77.391157641515, 34.62205309634901], [-77.39114630359423, 34.62210215506267], [-77.39131069881977, 34.622231844420305], [-77.39138731433505, 34.62219718266668], [-77.39150781826785, 34.62213021824684], [-77.39156530284431, 34.622103654987626], [-77.39176210836979, 34.621739545182606], [-77.39162727322653, 34.62160824419383], [-77.39150787615816, 34.62153985755413], [-77.39128874100348, 34.6214684969553], [-77.39111366543507, 34.6214914397523], [-77.39094086430347, 34.62085806630498], [-77.39096405509295, 34.62069350275145], [-77.39091239089686, 34.62022994930733], [-77.39087289724046, 34.620018727552875], [-77.39069047167105, 34.61965188411693], [-77.39068665548164, 34.619585466682935], [-77.3906719116164, 34.619198566602286], [-77.39071970699939, 34.61912382520068], [-77.39089643786095, 34.618931949833765], [-77.39093969170044, 34.61892305458869], [-77.39111393619709, 34.618887220758495], [-77.3912784753428, 34.61886376000458], [-77.39133775892788, 34.61886150952926], [-77.3915081210639, 34.619070066667085], [-77.39151392517189, 34.619077172026245], [-77.39166049796901, 34.6193164676864], [-77.39190225885973, 34.61976646854391], [-77.39197595565119, 34.61985969594761], [-77.3920717535101, 34.62002845899332], [-77.39220838935923, 34.62025075327559], [-77.39221788422314, 34.62033396263631], [-77.39228876408188, 34.62066373368059], [-77.39238300954624, 34.62098138973916], [-77.39246439905071, 34.621243986807514], [-77.39249145870713, 34.62148364848514], [-77.39255808633885, 34.62161666840905], [-77.39269051386769, 34.62164816967322], [-77.39294132110291, 34.621997775638505], [-77.39319383880975, 34.62223151592426], [-77.39327345928658, 34.622441276827445], [-77.39347887936064, 34.62254237383883], [-77.39377032951849, 34.622683634005384], [-77.39402607260477, 34.62270084891267], [-77.39426730426285, 34.6227760682972], [-77.394389263291, 34.622776939196555], [-77.3949463814998, 34.62271016436895], [-77.39505575036821, 34.62269902773516], [-77.3951526096016, 34.622693898279], [-77.39526414517005, 34.622782130683404], [-77.39563951573842, 34.6229484208392], [-77.39582476848705, 34.62312585770018], [-77.39584417072523, 34.62315228776871], [-77.39599262858087, 34.62336632486253], [-77.39609345124754, 34.623511682703594], [-77.39623836819933, 34.62377605795193], [-77.39628569935056, 34.62385755195055], [-77.39631725991859, 34.62390397883738], [-77.3963804454018, 34.624047891373245], [-77.39649057835659, 34.62430355569019], [-77.3966325643652, 34.6246155593972], [-77.39678369416926, 34.624947654320295], [-77.39695040603506, 34.62508638582896], [-77.39704113580032, 34.62551334583389], [-77.39712212795436, 34.62591076368551], [-77.39742098063459, 34.62634799716238], [-77.39856064626785, 34.62570329917718], [-77.39877020863513, 34.62542782384567], [-77.39876234748938, 34.62422964509243], [-77.398795028031, 34.62397120550045], [-77.39883243659051, 34.62378756182396], [-77.39873586980151, 34.623412844994476], [-77.39859441610244, 34.623150994315026], [-77.39833749534876, 34.6230502054435], [-77.39820950839965, 34.622909660648034], [-77.39794821466663, 34.62267646554886], [-77.39781529659372, 34.62248699669929], [-77.39774553734779, 34.62242428136055], [-77.39755223236105, 34.62231091143445], [-77.39742108280169, 34.62229295368303], [-77.39721589662688, 34.622279681198144], [-77.39691420376965, 34.62224094148346], [-77.39663264957217, 34.622204786903716], [-77.39660156694993, 34.622198168227634], [-77.39656627384294, 34.62216978186083], [-77.39637392193578, 34.62205160485504], [-77.39613528317268, 34.62180736417585], [-77.39604567936104, 34.62160333621482], [-77.39584426817981, 34.62102434027223], [-77.39583687589189, 34.62100921785032], [-77.39582734365982, 34.62100263016347], [-77.39525552470295, 34.62087003962601], [-77.39505585250097, 34.6208584985231], [-77.39471507674193, 34.6207960006646], [-77.39466164491644, 34.620788711858644], [-77.39463169485902, 34.620782734137926], [-77.39426744850003, 34.620558803407974], [-77.394070311189, 34.620406856591295], [-77.39407074070809, 34.620194910755544], [-77.39402569704279, 34.619988719761714], [-77.39403295471567, 34.61981571051099], [-77.3938423454252, 34.61959058736836], [-77.39402811104473, 34.61930593639542], [-77.39426754791853, 34.61906149916129], [-77.39450420367297, 34.61890088339837], [-77.39474756485325, 34.61861091473039], [-77.39485734573113, 34.618381131230976], [-77.39505232680881, 34.617721816329045], [-77.39505298210776, 34.617717730957644], [-77.39504765284049, 34.617709473670075], [-77.39488248439422, 34.617504681175504], [-77.39482974650883, 34.61750618706065], [-77.39466184528344, 34.617562882867986], [-77.39453799862618, 34.61750081657653], [-77.39426765458651, 34.617481191433654], [-77.39390577511585, 34.61749339782443], [-77.39387345768365, 34.61749288133225], [-77.39385539448499, 34.61748531058914], [-77.39347927608117, 34.61730629778726], [-77.39337151983334, 34.617227122913114], [-77.39320322636053, 34.6171353240521], [-77.39308509997979, 34.617072833918726], [-77.3928841071704, 34.616973257497555], [-77.39269092360772, 34.61686775109613], [-77.39248430913743, 34.61681441445192], [-77.39234967247714, 34.61677681418961], [-77.39229673884496, 34.61677409353628], [-77.39221795538697, 34.61676796344566], [-77.39190255004681, 34.61673051816517], [-77.39170635350646, 34.6167133298631], [-77.39119772505356, 34.61666533878379], [-77.39111416754545, 34.61669890100412], [-77.39101321188907, 34.61671068193817], [-77.39078520383721, 34.61663482139708], [-77.39071998366224, 34.61661756476121], [-77.39069348297514, 34.616648045022664], [-77.39051751017325, 34.61687993944514], [-77.39039874270888, 34.617115106231076], [-77.39032572354583, 34.61720056819142], [-77.39016809801701, 34.6174031810421], [-77.39006992008927, 34.61743799440461], [-77.38993149365473, 34.61748707965483], [-77.38978135632784, 34.61746697293383], [-77.38971189666577, 34.617450646615204], [-77.38958487678067, 34.617283655755635], [-77.38954996042702, 34.617237470859315], [-77.3895488809217, 34.617225185009104], [-77.38953736445045, 34.616946111060834], [-77.38953196967437, 34.616821323658165], [-77.38953206996894, 34.61681548194294], [-77.38953172446756, 34.61680943872789], [-77.38944530492661, 34.61640342199199], [-77.38946479204907, 34.61605433004865], [-77.38946602449928, 34.61597586704361], [-77.38947251369719, 34.61590494191221], [-77.38953750460064, 34.615830805705464], [-77.3898338286343, 34.61549827484406], [-77.389887837338, 34.61544320140832], [-77.39002529368307, 34.61536991764501], [-77.39032595862551, 34.615179952845786], [-77.39048068130244, 34.61514709427939], [-77.39099308727057, 34.615037179114175], [-77.39111434185818, 34.61507133873204], [-77.39125268214856, 34.61501814429665], [-77.39150854356858, 34.61491001030793], [-77.39171904683712, 34.61499973577762], [-77.39190271473137, 34.615044012518766], [-77.39217379159523, 34.615028309450004], [-77.39229689883528, 34.61505143524807], [-77.3923743879457, 34.61504852349587], [-77.39261945393017, 34.61501949548469], [-77.39269108920574, 34.614988713904594], [-77.39297203279534, 34.61492383464528], [-77.39308530523843, 34.614613279820425], [-77.39308896745064, 34.61460437989171], [-77.39308759734497, 34.614602109659266], [-77.39308530666504, 34.6145963678137], [-77.39297371405637, 34.61431664925729], [-77.3929594581032, 34.61419848432162], [-77.39297349272084, 34.61407597884974], [-77.39297999676708, 34.61398323793176], [-77.39308537476481, 34.61379189690926], [-77.39310315759008, 34.61377234590645], [-77.39314080037525, 34.61374776584471], [-77.39335949804774, 34.61358690012778], [-77.3934795733004, 34.613545150232106], [-77.39362175024493, 34.61352527544296], [-77.39387376006735, 34.61342165722499], [-77.39404913395772, 34.61342788745528], [-77.39407084798506, 34.6134280231687], [-77.3941200209738, 34.61344724295124], [-77.39426793092068, 34.61350505519508], [-77.39433115393865, 34.61350801719107], [-77.39441777746808, 34.61356362393602], [-77.3946620955047, 34.613694295425724], [-77.39481927788876, 34.613760988516574], [-77.39491289262989, 34.613762363319594], [-77.39505626853196, 34.61377381823554], [-77.39517419475314, 34.61375209447127], [-77.39532889070506, 34.613725871150876], [-77.39545045211868, 34.613679089699545], [-77.39560009708546, 34.61365650773501], [-77.39584463435725, 34.61359218225329], [-77.3960587505325, 34.61355759679716], [-77.39643139538938, 34.61349037104937], [-77.39663299454006, 34.61345361105408], [-77.39683740695233, 34.61343484518774], [-77.39702717342064, 34.61338787141334], [-77.39725720180095, 34.61333093169251], [-77.39742134952722, 34.61338587811061], [-77.39807214669948, 34.61318474690308], [-77.39820970319722, 34.61330528436133], [-77.3985906726676, 34.61340058376514], [-77.39860387666172, 34.61340308183165], [-77.39861251648826, 34.613392516644836], [-77.39861375156786, 34.613383032622956], [-77.39861552028954, 34.61337023655194], [-77.39867070061568, 34.61295024516178], [-77.39871157309736, 34.61263576294919], [-77.39879526259892, 34.612301579565795], [-77.39873866052346, 34.612091295983156], [-77.39889833426108, 34.61196083042044], [-77.39899807381684, 34.61195571407609], [-77.39906561212084, 34.61197138628627], [-77.3992204248758, 34.61202180281671], [-77.39959735939269, 34.61217106222837], [-77.39978640988241, 34.61222912664171], [-77.40010461912156, 34.6122370090164], [-77.4001805797785, 34.61226161754666], [-77.40021043866712, 34.61227140170984], [-77.40034106457883, 34.61228471996183], [-77.40057475003279, 34.61231283165411], [-77.40064819628248, 34.61231952458898], [-77.40082520095959, 34.612369683460216], [-77.40096892143376, 34.61244813416642], [-77.40116161933598, 34.61259091922359], [-77.40121694349787, 34.61274036253843], [-77.40136309988938, 34.61300601774464], [-77.40150203749096, 34.61324130702795], [-77.40165252243571, 34.613369246949], [-77.40175728134874, 34.61344149060394], [-77.40195910573631, 34.613532202970504], [-77.40215146080216, 34.61361538200036], [-77.4023126287642, 34.61369858741803], [-77.40239513087293, 34.61384880362908], [-77.40248324587344, 34.61409854615483], [-77.4026027393291, 34.614444401549726], [-77.40262395906572, 34.61450282024562], [-77.40293984970364, 34.61471006761988], [-77.40307717625835, 34.614714090707714], [-77.40319114916855, 34.614845562204394], [-77.40347881430027, 34.615072701332956], [-77.40361722338835, 34.61551365539771], [-77.40363217014905, 34.61563108245574], [-77.40361263569203, 34.61575843678747], [-77.40372825867489, 34.615777330168385], [-77.40384880234366, 34.61572966497607], [-77.40436799278594, 34.61568500526122], [-77.40451662220451, 34.615620866756814], [-77.40466273419118, 34.615639760323724], [-77.40530499087663, 34.6155975730726], [-77.40565126338309, 34.61581594402121], [-77.4058397525917, 34.61588851634355], [-77.4060933777982, 34.6158359609849], [-77.40626337794077, 34.61591746867562], [-77.40640273936975, 34.61608045869151], [-77.40666962226868, 34.616270464778516], [-77.4067025715666, 34.61646176850402], [-77.40688181725204, 34.61665970878781], [-77.40703772181546, 34.61667005788404], [-77.40756801264962, 34.616761453276794], [-77.40764987588429, 34.61677153716952], [-77.40767020641412, 34.61676958502181], [-77.40770195368593, 34.61677631752053], [-77.40845857798048, 34.61668898845072], [-77.40856256359197, 34.61672991859777], [-77.40898414847571, 34.616840162061614], [-77.4092469749833, 34.61685362691827], [-77.40928345414598, 34.61689917083206], [-77.4092868871278, 34.61693796130859], [-77.40936707450294, 34.617221652420895], [-77.40938082588966, 34.61734898157584], [-77.40945077513105, 34.61755831015506], [-77.40951430981207, 34.61789105684056], [-77.40959129973314, 34.61816776051086], [-77.40965072811615, 34.61857367840509], [-77.40965255054417, 34.6185834993865], [-77.40965344679621, 34.61859637926658], [-77.40961525375582, 34.61901346027702], [-77.4095987947692, 34.61939445934667], [-77.40958888654002, 34.61949848486652], [-77.40956820935767, 34.61986940765408], [-77.40953936507445, 34.61998360935972], [-77.40964153202435, 34.61998476649407], [-77.40984353274408, 34.62003669025634], [-77.4100357343379, 34.61996474308813], [-77.41061661392706, 34.61994160411914], [-77.4108241264069, 34.61983638595262], [-77.41098623133429, 34.619839334941474], [-77.41138942126004, 34.6198468486375], [-77.41161253590079, 34.61984990536797], [-77.41205709272094, 34.61988051570809], [-77.41240095308606, 34.61991464941441], [-77.41268614115694, 34.619961366942285], [-77.41307027079695, 34.620084776343866], [-77.41318939151674, 34.62010593277795], [-77.41324249892585, 34.62013101476262], [-77.41333736282192, 34.62017451589999], [-77.41358362724067, 34.62029347100486], [-77.41390408007604, 34.620172116997985], [-77.41397782004682, 34.62021932685217], [-77.41401876408895, 34.62012026495896], [-77.41406125170185, 34.62007001404665], [-77.41437197091679, 34.619910506507736], [-77.41462321773756, 34.61983492556257], [-77.41476615460647, 34.6198004894047], [-77.4149036255869, 34.61980033675697], [-77.41496325557951, 34.61979796330085], [-77.41505911377726, 34.61981690434976], [-77.41516036419206, 34.619836910910095], [-77.41529674400377, 34.61989164566567], [-77.4153845252303, 34.62006216286268], [-77.41545032147206, 34.62060620029691], [-77.4154376037379, 34.62072047196708], [-77.41544141856865, 34.62084199267126], [-77.41555478948156, 34.621008603798714], [-77.41575745992978, 34.62130523030825], [-77.41592165659159, 34.621499748491715], [-77.41611077640665, 34.62172293331427], [-77.41634336518406, 34.62180383153495], [-77.41637801355476, 34.62182112790344], [-77.41657621673815, 34.6218298245966], [-77.41670975468273, 34.621840517798894], [-77.41677043448341, 34.621837163702736], [-77.41713176082511, 34.621668205793355], [-77.41736141393636, 34.62153924493106], [-77.41768346897499, 34.62150027894875], [-77.41792014492749, 34.62149323790722], [-77.41813351526342, 34.62141021146923], [-77.41831433908948, 34.62142141902545], [-77.41847381026287, 34.62138405899079], [-77.41870852807308, 34.62132986084399], [-77.41891208009224, 34.62128720238525], [-77.41929071303585, 34.6212353789065], [-77.41949691876394, 34.62121245942482], [-77.41972155638047, 34.62119301274228], [-77.42005203672359, 34.621154595628994], [-77.42028531601265, 34.62113196840156], [-77.42053983756415, 34.6211070294016], [-77.42080845213692, 34.62107980253099], [-77.42107377812842, 34.621311145951374], [-77.4212193461778, 34.62142716923029], [-77.42129584513607, 34.621572874110534], [-77.42136081214146, 34.621872485141765], [-77.42136795969301, 34.62209499782607], [-77.42141579916581, 34.622356716849296], [-77.42158989185131, 34.62241768082357], [-77.42170997845923, 34.62227290662785], [-77.42161826053953, 34.62202512539314], [-77.42180670968669, 34.621876120366316], [-77.42191249124747, 34.62181840262389], [-77.42193746306098, 34.621766106577084], [-77.4220303164656, 34.62154991645299], [-77.42246628687452, 34.62131897621399], [-77.42270194973702, 34.62116558994714], [-77.4228122820732, 34.62111997081256], [-77.42325547485495, 34.62109412849058], [-77.42372545071927, 34.62104251610246], [-77.42384045968682, 34.621034584429346], [-77.42415755928178, 34.62105573572042], [-77.4244450421946, 34.62107727867166], [-77.4249405142362, 34.62121197794856], [-77.42504898320466, 34.62125335292885], [-77.42514231222037, 34.62129498735401], [-77.42560452345172, 34.621488569738126], [-77.42596202120173, 34.62168745963502], [-77.42604630683911, 34.62177587255047], [-77.4261091740435, 34.62178597184259], [-77.42615268455499, 34.621799212216494], [-77.42628031335565, 34.62189381141598], [-77.42627724177748, 34.62203763147902], [-77.42628092518127, 34.62207825337061], [-77.42624591263133, 34.62214002507096], [-77.42611790879167, 34.622232326476805], [-77.42602578337706, 34.62229633691661], [-77.42591884783661, 34.622291811409795], [-77.42576436782875, 34.6223017192501], [-77.42555094804779, 34.622468083463346], [-77.425581530236, 34.6222775356895], [-77.42518108803573, 34.6220914923858], [-77.42508884401288, 34.62211868906435], [-77.42493179985787, 34.62225599726478], [-77.42493864232009, 34.62230222153829], [-77.42510883621132, 34.622412220258305], [-77.42524328527507, 34.62267477713711], [-77.42529537928168, 34.62272830046157], [-77.42531957899165, 34.62275079665481], [-77.42537754266336, 34.62280969487921], [-77.4255225793758, 34.62295977269432], [-77.42559349638273, 34.62301259000333], [-77.42575178581083, 34.623136727436076], [-77.42596329872484, 34.62327645397826], [-77.42604593542802, 34.6233310440735], [-77.4261295015454, 34.62329475337368], [-77.42645974086298, 34.62318571891234], [-77.42652810942249, 34.623171629682204], [-77.42664686650843, 34.623266297459736], [-77.42660260063934, 34.62344393648019], [-77.42658042673602, 34.62345260775776], [-77.4265843074505, 34.62346873946895], [-77.42658527684618, 34.62348935387145], [-77.42649284522025, 34.623731680194325], [-77.42638856241572, 34.62389374701643], [-77.42623852833901, 34.62403508782121], [-77.42590107236683, 34.62414398438284], [-77.42575127102835, 34.62417593841711], [-77.42566192914053, 34.62416057608948], [-77.42550371572389, 34.62414586665825], [-77.42529424120458, 34.624152826848686], [-77.42519177019122, 34.6240526913177], [-77.42505907862287, 34.62398314596041], [-77.42491921946475, 34.62394317184717], [-77.42462255926905, 34.62389393712367], [-77.4244960995184, 34.62406372679578], [-77.4243893677196, 34.62423424141526], [-77.42429422517218, 34.62446067859518], [-77.42428208777005, 34.62449393288854], [-77.4242724672928, 34.624536253227014], [-77.42421751992848, 34.62479355002308], [-77.4239267455483, 34.625194563419875], [-77.42371231865516, 34.625236158161556], [-77.4231959460781, 34.625345582601796], [-77.4229156766092, 34.62534269003997], [-77.42264917977327, 34.62548343796723], [-77.42250558926706, 34.62573852197163], [-77.42215112288447, 34.62639212491526], [-77.42206642086606, 34.62651836746692], [-77.42201388690306, 34.62661705953359], [-77.4217813762656, 34.627073883397244], [-77.42155125073691, 34.62748731370889], [-77.42178579609174, 34.62765907386126], [-77.4217895562897, 34.628157876836404], [-77.42225067061248, 34.62832852918458], [-77.42293668417338, 34.6280619796011], [-77.42298083374081, 34.62781849986236], [-77.42391541483168, 34.6271656683728], [-77.42437760190076, 34.62684281017704], [-77.42451574665515, 34.626756359290646], [-77.42516547605541, 34.626595277877655], [-77.42535406199345, 34.626568102482544], [-77.4255543983071, 34.62650048741973], [-77.4258532664357, 34.62647087289166], [-77.4260829092933, 34.62638835150798], [-77.42610065173808, 34.626381975804335], [-77.42620967237758, 34.62623346188256], [-77.42628202240194, 34.62613950047263], [-77.42628275009498, 34.62613598842461], [-77.42628457305037, 34.62612544947969], [-77.42636598775132, 34.62574634332942], [-77.42639032018856, 34.62555418007342], [-77.42660106656253, 34.62536034770973], [-77.42662509136036, 34.62532663207966], [-77.42665170070197, 34.625295701977834], [-77.42682091307793, 34.62508544884116], [-77.42699710101992, 34.624886020064466], [-77.42737697664695, 34.62480712207715], [-77.42749680659688, 34.624790660138004], [-77.42782089148477, 34.624962553808174], [-77.4279019046894, 34.625079769924916], [-77.4282112471389, 34.62548020128376], [-77.42846424779444, 34.625517700285], [-77.42833889831974, 34.62561681398593], [-77.42861672949914, 34.62603446472295], [-77.42861010330999, 34.62621460983185], [-77.42870712792293, 34.6263651636467], [-77.42881286845119, 34.626526067484654], [-77.4288514678141, 34.62666171961799], [-77.42893530272998, 34.62686041468301], [-77.4291959896969, 34.627154829471074], [-77.42919625658462, 34.627155292612066], [-77.42919652733097, 34.62715592223386], [-77.428882750805, 34.62761386114079], [-77.42886098438834, 34.627657929756346], [-77.42885112211198, 34.627818969725666], [-77.42883406077014, 34.62836620599593], [-77.42903773035816, 34.628958703852156], [-77.42901913175844, 34.62905194239974], [-77.42892177053976, 34.629318100823845], [-77.42927634960299, 34.62937310602925], [-77.42984578458768, 34.63001723534405], [-77.43043547393306, 34.6301253036282], [-77.43054115274275, 34.630152092248906], [-77.43098889261131, 34.63044865974342], [-77.4318440960532, 34.63107034639591], [-77.4319777183901, 34.63106861707305], [-77.43306671574939, 34.63036881418773], [-77.43298687400834, 34.630136719244454], [-77.43297829981535, 34.62984591548607], [-77.43298454470158, 34.62972061540287], [-77.43300172013284, 34.62953604876352], [-77.43301269162923, 34.629390882601825], [-77.4330332986565, 34.62911823478927], [-77.43305442179755, 34.628838741988986], [-77.43303781597794, 34.62864524230352], [-77.43294959574138, 34.62846949732964], [-77.43288864109857, 34.62812718176091], [-77.43281706277963, 34.6279696724492], [-77.43279076680021, 34.62779446539975], [-77.43279114563236, 34.62684509767591], [-77.43281846544414, 34.6265652718721], [-77.43282562040879, 34.62649027481832], [-77.43278988598374, 34.626419570666116], [-77.43278689847773, 34.62576283009442], [-77.43271011602194, 34.625602909828956], [-77.43269859236457, 34.62541875726421], [-77.43233588277184, 34.62515748042147], [-77.43233186896153, 34.625154029497224], [-77.43233052109969, 34.625152657153336], [-77.4323277613635, 34.625151712337704], [-77.4317638372301, 34.62493103946536], [-77.43174091008532, 34.62492859420709], [-77.43157541930792, 34.62489131371415], [-77.43117961130031, 34.62479884877308], [-77.43113601095715, 34.624784140608526], [-77.43112079033425, 34.62476068627546], [-77.43109299402911, 34.62472245903305], [-77.43081611532341, 34.62447827299403], [-77.43075629736069, 34.62433404176015], [-77.43074601663925, 34.62429128568117], [-77.43071628402421, 34.6241374847627], [-77.43068816022665, 34.62396130871028], [-77.43067587118065, 34.6237797639326], [-77.43068624675409, 34.62350552824669], [-77.43062037059138, 34.62342634241238], [-77.4305862523803, 34.623306187033656], [-77.43060646524494, 34.62270411418135], [-77.43060681479588, 34.62269173147719], [-77.43060494718446, 34.62269076478135], [-77.43060080901586, 34.62268344124996], [-77.43045734162357, 34.62241408855751], [-77.43041685593587, 34.62237662791623], [-77.43025640755496, 34.62220258268077], [-77.43005776322653, 34.62210972248354], [-77.4299642297156, 34.62184955282902], [-77.42990752024784, 34.62178330205798], [-77.42991701034148, 34.62170323347482], [-77.42985897701703, 34.62161251740762], [-77.42992507037499, 34.621526118701865], [-77.43010839911824, 34.62135681992977], [-77.43016182077196, 34.62129926420626], [-77.43021075191761, 34.621257789608734], [-77.43057703463936, 34.62082515108416], [-77.43108605940446, 34.62061364879526], [-77.43134292612476, 34.620473791078446], [-77.43175155306602, 34.62037540271897], [-77.43208359478285, 34.62041627199269], [-77.43245438351482, 34.62043059541365], [-77.43263435057972, 34.62050758968796], [-77.43287854702625, 34.62039185065572], [-77.43310129401, 34.62029259786961], [-77.43348621135127, 34.62008370121376], [-77.43356283311248, 34.62005786512151], [-77.43380339545728, 34.620096117261745], [-77.43410933872258, 34.62013364667909], [-77.43429180396537, 34.62016456073639], [-77.434278575062, 34.6202624343813], [-77.43459717381619, 34.62055423427856], [-77.43464958739546, 34.62080106898227], [-77.43485502747853, 34.620937303024355], [-77.43496957385861, 34.621013262263915], [-77.4350548489567, 34.621054802751225], [-77.43524872170622, 34.621221424778966], [-77.43539774421122, 34.6213263118153], [-77.43533773310818, 34.62147747600599], [-77.43522948102046, 34.62174351308354], [-77.43519764799036, 34.62182298838915], [-77.435140475353, 34.62198039646425], [-77.43507657051074, 34.62215633802758], [-77.4351442384716, 34.62242373405088], [-77.43517145276174, 34.622594874564804], [-77.43523964107705, 34.622848344184284], [-77.4354446225804, 34.62309178880042], [-77.43548138978895, 34.62313025630722], [-77.43550030428536, 34.62314329260625], [-77.4355618826873, 34.62318934049574], [-77.43578261049001, 34.6234320711892], [-77.43579061785327, 34.6236665073517], [-77.43584637032578, 34.62378314182745], [-77.43607192177825, 34.62398727766144], [-77.43613583490668, 34.624069880831954], [-77.43618544571896, 34.62409814556418], [-77.436252498974, 34.62412251250505], [-77.43670243851085, 34.62438047979491], [-77.43720397586871, 34.624503918171406], [-77.4373424275836, 34.624512490611835], [-77.43742643394417, 34.624569504080974], [-77.43766762790754, 34.62474100672747], [-77.43779161748215, 34.62487769671531], [-77.43779671858545, 34.62488883398571], [-77.43781968824851, 34.62490864259688], [-77.43795762081305, 34.62502759328578], [-77.43794136025677, 34.625151785422425], [-77.4380991641181, 34.625106315367816], [-77.43815054547133, 34.62512467090709], [-77.4382694787393, 34.62506604530696], [-77.43833557360375, 34.62500952379024], [-77.43844972924384, 34.62488732274691], [-77.43835907689682, 34.62478768524067], [-77.43829647775244, 34.624717756378324], [-77.43818047046526, 34.624594826866286], [-77.43809615783793, 34.62450548338083], [-77.43790588106107, 34.62430385073377], [-77.43787018961464, 34.624269744594685], [-77.43768876227524, 34.624089198663704], [-77.43759502497367, 34.6240232113457], [-77.4372977013158, 34.623796824157736], [-77.43724094417912, 34.62375489256965], [-77.43722516320449, 34.62374160926644], [-77.43719315997582, 34.6237171915105], [-77.4367519239703, 34.623405804192295], [-77.4365350036645, 34.62323356292801], [-77.43652430286062, 34.623226905694146], [-77.43650435764458, 34.62322635536837], [-77.4362490489153, 34.62310622276364], [-77.43630359609745, 34.62291433449983], [-77.43623366947085, 34.622805014065875], [-77.43610383003352, 34.622602030040674], [-77.43609256507796, 34.6224459134634], [-77.43609763932284, 34.6223770879346], [-77.43612814353858, 34.62222585682016], [-77.43614269053619, 34.622153738339996], [-77.43619659441038, 34.621997035359236], [-77.43626093731237, 34.62181876326836], [-77.4363403987253, 34.62160349619219], [-77.43641626332291, 34.621073476114184], [-77.4364245294867, 34.621033647217914], [-77.43642621877333, 34.62101409671561], [-77.4363339677776, 34.62071696549032], [-77.43631361792544, 34.620696017388475], [-77.43614849260243, 34.62048656338986], [-77.43604965856292, 34.62040201141457], [-77.4357811222738, 34.620168885000744], [-77.43574785384003, 34.62011879280253], [-77.43610763041605, 34.61975073096128], [-77.43624836618073, 34.619712979246486], [-77.43699644400671, 34.61945016513866], [-77.43707210368376, 34.619432595602696], [-77.43754352671996, 34.61954683034963], [-77.43764866901236, 34.619567174052406], [-77.43765896730535, 34.61957404675462], [-77.43772542911131, 34.619610491995545], [-77.43810189371584, 34.619817034411696], [-77.43815571301015, 34.61986163337221], [-77.43824254841688, 34.61986706223628], [-77.43831223077918, 34.619815856426754], [-77.43842671962524, 34.61972444033], [-77.43887218092559, 34.61939239129636], [-77.43882379856083, 34.619045035059656], [-77.4388444980816, 34.61886685689566], [-77.43869625329398, 34.618711393368834], [-77.43851566898647, 34.61850744822737], [-77.43806730948899, 34.618349911028595], [-77.43794932671717, 34.618285479028415], [-77.43775983159536, 34.618103280941995], [-77.43772730356933, 34.61807758777463], [-77.43774700647083, 34.61805641858712], [-77.43792609093487, 34.617822424094214], [-77.4380333367341, 34.617621105416276], [-77.43812257336192, 34.61750762898439], [-77.43824979467038, 34.61731628345716], [-77.43847273352145, 34.6171266044383], [-77.43852896750273, 34.61707149552416], [-77.43886192689821, 34.61691108749249], [-77.4391667601502, 34.616797383016895], [-77.43947434057317, 34.616683703356344], [-77.4396997248866, 34.61658486750777], [-77.44032162293983, 34.61629994677493], [-77.44040898801241, 34.61625675269412], [-77.44046201435573, 34.61623221953982], [-77.44084012219247, 34.61612325720292], [-77.44089708013355, 34.61611916590959], [-77.44121941692842, 34.616116727181705], [-77.44142646392798, 34.61613244040879], [-77.44182790903764, 34.61609080440022], [-77.44202240882433, 34.616049385767525], [-77.44205146499829, 34.61610636789389], [-77.44208232568056, 34.616179837942305], [-77.44224506577648, 34.61642042151884], [-77.44218852358162, 34.61676058165615], [-77.4421950247893, 34.61683869664853], [-77.44187383058282, 34.61726475916062], [-77.44180540795574, 34.617321771448545], [-77.44177013580774, 34.61738800427936], [-77.44164285871237, 34.617699857449495], [-77.44161795220245, 34.61787559222677], [-77.44152080271526, 34.618103902764304], [-77.44133999501875, 34.618397743286806], [-77.44111203406321, 34.6188253150805], [-77.44106825541435, 34.61892207097202], [-77.44103501065301, 34.618980893917914], [-77.4410779016244, 34.61903245782666], [-77.44115441197229, 34.61931610341732], [-77.44129468489609, 34.61949259659101], [-77.44140793923123, 34.61954328021137], [-77.44228888166442, 34.619349216929805], [-77.44229610253764, 34.619309475898945], [-77.44250993589749, 34.61880715249724], [-77.44263837276752, 34.618639131714374], [-77.44282141164445, 34.618729721175015], [-77.44322696514804, 34.61886862819296], [-77.44340792258754, 34.6189270301128], [-77.44377150419675, 34.61893719093054], [-77.44377327927573, 34.61893872445543], [-77.44400268199132, 34.6191142560253], [-77.44408579844378, 34.619358585323184], [-77.44421651730886, 34.61955085594184], [-77.44426281124908, 34.61971055049194], [-77.4443299322441, 34.61988777207171], [-77.44455601198803, 34.620142531098686], [-77.44454170959396, 34.62019664415251], [-77.44453439561026, 34.62029284651661], [-77.44467944524736, 34.6203331566588], [-77.44478027322434, 34.620221001285756], [-77.44513536592244, 34.62002738272359], [-77.44552990814934, 34.619863890051334], [-77.44559357136808, 34.6198311707059], [-77.44572417857401, 34.61975268369761], [-77.44574202172157, 34.61985441294276], [-77.44628538491712, 34.619980929162416], [-77.44658725345998, 34.620233847644194], [-77.4466679333205, 34.62032891833061], [-77.44673500030841, 34.62034559598259], [-77.44679572351683, 34.6203811941333], [-77.44704829526981, 34.6205897194071], [-77.44715938380378, 34.62074111073285], [-77.44744392639629, 34.62082829578296], [-77.44746378159378, 34.62084050491828], [-77.44749791265708, 34.62086217262954], [-77.4476762224208, 34.62102360255865], [-77.44774136959343, 34.62113060937415], [-77.44775099828445, 34.62126042134922], [-77.4476413215717, 34.62152839165084], [-77.44752845358803, 34.621801960636304], [-77.44748436882497, 34.6223116560959], [-77.4473925510823, 34.622560924027816], [-77.44729444096423, 34.622958893840796], [-77.44726870379056, 34.62311165935654], [-77.44724123638144, 34.623384035174816], [-77.4472216993258, 34.62355284727719], [-77.44721676769203, 34.62386497803181], [-77.44726843700893, 34.624188600344965], [-77.44688122895147, 34.624534082936734], [-77.44671128390374, 34.62461307813759], [-77.44643368859278, 34.624826760112384], [-77.44644426512414, 34.62513906090549], [-77.44661944469021, 34.6255123047506], [-77.4472484084758, 34.62587501612302], [-77.44804674338785, 34.626056677114974], [-77.448620470315, 34.626418786730326], [-77.4495518203138, 34.62660581758541], [-77.45059800780174, 34.62585490874706], [-77.45106774846357, 34.6255177505098], [-77.45129973421234, 34.62530821475544], [-77.45249378876912, 34.62383726343974], [-77.4525197712913, 34.62354813275809], [-77.45202639513252, 34.62302017038422], [-77.45178844720475, 34.622561368630855], [-77.45154391308948, 34.62235998540052], [-77.45122462654065, 34.62217163625767], [-77.45114109321811, 34.62200745452947], [-77.45081348717727, 34.621712448971195], [-77.45052327681111, 34.62144511633282], [-77.45041020730068, 34.621338584276124], [-77.45020115225289, 34.62116771643517], [-77.45021175152846, 34.62088254294687], [-77.45018277765877, 34.62080369738373], [-77.45022185165557, 34.62065449584915], [-77.45029188611734, 34.620291182966966], [-77.4503773130656, 34.62000970517185], [-77.45074730216963, 34.61945112526057], [-77.45106227423854, 34.61932191496816], [-77.45123000757539, 34.619293832594], [-77.4514294844403, 34.6191780299917], [-77.45167919821874, 34.619014162482095], [-77.45179701433919, 34.618959568612915], [-77.45214576778987, 34.61879796231683], [-77.4523202700162, 34.61871710000762], [-77.45223196520249, 34.61849234223929], [-77.4520676124023, 34.61839782304269], [-77.45197228631059, 34.61840149577989], [-77.45151860801533, 34.618427753711785], [-77.45128254972683, 34.618443297282134], [-77.45084254836902, 34.61839999854467], [-77.45037547374011, 34.61809329717923], [-77.45018644109868, 34.61795468984731], [-77.44996244914854, 34.61791246106899], [-77.44944597066666, 34.61794563684858], [-77.44929536160315, 34.617988959061954], [-77.44909260955035, 34.61801341073618], [-77.44901351716662, 34.61801717673829], [-77.44876988849265, 34.61799004138696], [-77.44864004389788, 34.618016604966925], [-77.44861167273449, 34.617928395179774], [-77.448575437121, 34.617832463934334], [-77.44847049917493, 34.61759939508593], [-77.44838882275221, 34.61740939943753], [-77.44833623742372, 34.61726842418717], [-77.44824698734934, 34.617125635185516], [-77.44823802060102, 34.617111803376716], [-77.44816469977381, 34.61706935280668], [-77.44803196493157, 34.61698593290388], [-77.44800556862653, 34.61696361952342], [-77.44795950230208, 34.616950549479505], [-77.4478144697455, 34.61694681085528], [-77.4474319372395, 34.61694396263203], [-77.44727094872744, 34.616947410421126], [-77.44711893433305, 34.616877027498916], [-77.44695219715496, 34.616645105137366], [-77.44685464433664, 34.616583133748684], [-77.44684062316384, 34.61655918317895], [-77.44678088669208, 34.61648634311361], [-77.44662946496261, 34.616278087497754], [-77.44646227461917, 34.616107414285615], [-77.44635215855965, 34.61598790475739], [-77.44626418708731, 34.6158924289975], [-77.44611804941596, 34.615733824174114], [-77.44610468270528, 34.61568921626139], [-77.44621183912561, 34.615499270003035], [-77.44622884369393, 34.6152845583126], [-77.44634389912707, 34.615193443580566], [-77.44641923616055, 34.61516538249906], [-77.44655353445928, 34.61508152822288], [-77.44702074127217, 34.61481087174869], [-77.44733054695985, 34.614653343366655], [-77.44758868306246, 34.61439019366925], [-77.44809359821264, 34.614014309589066], [-77.44815223912343, 34.61396798093307], [-77.44818723316956, 34.613941830469116], [-77.44830585796738, 34.613853473522056], [-77.44880358475932, 34.61357648463599], [-77.44907119080742, 34.61332996651328], [-77.44938727993394, 34.613445625434146], [-77.44963126700908, 34.613455370967515], [-77.44972722630388, 34.61348716291532], [-77.45007972004817, 34.613447922217624], [-77.45013825128801, 34.61344179298849], [-77.45015286103889, 34.61344022488363], [-77.4510089389691, 34.61329157585903], [-77.45130423965736, 34.613212635124114], [-77.45132278904937, 34.61309341218622], [-77.45137674151495, 34.61284186020144], [-77.45140775387729, 34.61262945929376], [-77.45149935709256, 34.612304536095806], [-77.4516485705723, 34.61209432208211], [-77.45185153786962, 34.611963810576], [-77.45217618713536, 34.61186434879998], [-77.45233883809561, 34.61182345856957], [-77.45255520652098, 34.611792138556595], [-77.45282764451935, 34.6116886092451], [-77.45343410860133, 34.61148024659126], [-77.45367799572516, 34.6109542131303], [-77.45368693860078, 34.6109493165689], [-77.4543532375331, 34.61103108002331], [-77.45445363781604, 34.61109267271854], [-77.4546881239761, 34.61129958864445], [-77.4547739744186, 34.611370565965125], [-77.4548078901164, 34.611389537413785], [-77.45486777964354, 34.611459302618], [-77.45504277794062, 34.61166315762419], [-77.45519085800485, 34.611835655009486], [-77.45563715470169, 34.61186288290057], [-77.45572506566424, 34.612281738393065], [-77.45581165452022, 34.61255163533956], [-77.45591295497995, 34.61278150373106], [-77.4565770593997, 34.61257979093628], [-77.45653803034443, 34.61234444298898], [-77.45638408227491, 34.612205391276945], [-77.45622392913141, 34.61169551094175], [-77.45605525393279, 34.611158489890165], [-77.45612557997792, 34.61098503358381], [-77.45599664894348, 34.61085029214214], [-77.45582964687677, 34.6103309199962], [-77.45573330353349, 34.610257896677865], [-77.45565778884357, 34.61001067793471], [-77.45557912821612, 34.609753157860034], [-77.45562962905487, 34.6096494458287], [-77.45554234594762, 34.609576982687514], [-77.45538566215788, 34.6093497727125], [-77.45536831991124, 34.60933258087322], [-77.4552763463673, 34.60902784596403], [-77.45528169257615, 34.60901016570272], [-77.4552776393027, 34.60898625866247], [-77.45529820909945, 34.608416111090975], [-77.45537215886912, 34.60824583244461], [-77.45529110655005, 34.608055362624974], [-77.45490965019292, 34.60777281576135], [-77.45485002111191, 34.60768033913891], [-77.45482405463451, 34.607663650409876], [-77.45471200154853, 34.60759163338305], [-77.45440932607076, 34.60730483834596], [-77.45408285585748, 34.60713654384665], [-77.45428613587092, 34.60682324683962], [-77.45456871154062, 34.60652781175235], [-77.45477577479878, 34.606200369037936], [-77.4551869175547, 34.60589963849219], [-77.45530242468583, 34.605680879746195], [-77.45534595067951, 34.605645588290066], [-77.45535889445404, 34.605573932122475], [-77.45548092423901, 34.605383119646845], [-77.45546901766832, 34.605264094620566], [-77.45538928352444, 34.60519203154384], [-77.45539659723292, 34.6051001213414], [-77.45540094801913, 34.605045446475835], [-77.45550074102214, 34.60488578160934], [-77.45549810426724, 34.60476974685917], [-77.45576265423074, 34.604441803869236], [-77.45572676636243, 34.60386488314473], [-77.45565439782283, 34.60373415754643], [-77.45522358251188, 34.60343492706059], [-77.45552432002879, 34.6030327364286], [-77.45528307990966, 34.60283636103734], [-77.45557060930639, 34.60250771777331], [-77.45556984468453, 34.60231731191852], [-77.45557910301217, 34.60227858174639], [-77.45552485113015, 34.602282968752725], [-77.4554326893846, 34.60200405697368], [-77.45530871364019, 34.60163287638993], [-77.4553050013649, 34.601618246457996], [-77.45530073875052, 34.601603770100304], [-77.45524315363909, 34.60131189254598], [-77.45516763276177, 34.60093781155427], [-77.45519763272884, 34.60091034803572], [-77.45597013102964, 34.60012738804595], [-77.45623287801519, 34.60007176530457], [-77.45694630291143, 34.59985295256295], [-77.45705974951895, 34.59974169752003], [-77.45708227483097, 34.5996341749739], [-77.45733437497856, 34.599218403247605], [-77.45774494841838, 34.59893027809576], [-77.457898667969, 34.59879646242716], [-77.45853375513448, 34.5986029831634], [-77.45870141415313, 34.598583947552385], [-77.45898310970216, 34.59855650688202], [-77.45941171066214, 34.598443614264504], [-77.45972936183921, 34.59849864592168], [-77.4597564445023, 34.59850196599867], [-77.46013244132253, 34.59847654330052], [-77.46049084567565, 34.59846463830524], [-77.4607670882758, 34.598449047188275], [-77.46090912377667, 34.59844103018904], [-77.46135180497316, 34.598416042103516], [-77.46169747903639, 34.598391232579495], [-77.46201526848071, 34.59837858979386], [-77.46272690660959, 34.59792767679187], [-77.46312077994978, 34.597526608529165], [-77.46312608017163, 34.59717122672437], [-77.46317963925841, 34.59657823485173], [-77.46320325374452, 34.596410664886825], [-77.46320325865531, 34.59631674091877], [-77.4632032813046, 34.595672109264235], [-77.46317766313297, 34.59506905904261], [-77.46314559635728, 34.59479084231869], [-77.46283160288056, 34.59447173894114], [-77.46273724749939, 34.59437584836309], [-77.46200235155828, 34.59465787073885], [-77.46183278678575, 34.59466323345696], [-77.46174224277232, 34.594678479282194], [-77.46151279939461, 34.59479627836423], [-77.46136646918183, 34.59487980616662], [-77.46131490596437, 34.59491850855427], [-77.46122625159468, 34.595005709312716], [-77.46114612508711, 34.59515130280402], [-77.46108830756577, 34.5952671319441], [-77.46100270655033, 34.59547084470053], [-77.46097321607286, 34.595536550074755], [-77.46094790171554, 34.5955771326187], [-77.46090565536039, 34.59570180382958], [-77.46079081672158, 34.59609210457478], [-77.46069451547831, 34.59626480900094], [-77.46064878256956, 34.596352097151026], [-77.46055742441243, 34.59642708619781], [-77.46041397261014, 34.59657963004615], [-77.46028517262555, 34.596689454738204], [-77.45992773570477, 34.59689796839042], [-77.4598580732773, 34.59662662744497], [-77.45952099966907, 34.596480996715435], [-77.45949372647296, 34.596257660550236], [-77.45953616737594, 34.595979938809755], [-77.45954717128046, 34.59591403937165], [-77.45955211889576, 34.59565871682195], [-77.45950774084078, 34.5955827439418], [-77.45941116486993, 34.59541740832792], [-77.45935196108809, 34.595316053131526], [-77.4593409001401, 34.59529711696869], [-77.4592993648068, 34.595260595293944], [-77.45913677781134, 34.59512202298786], [-77.45893355961663, 34.595044071272206], [-77.45876565518326, 34.594979665249454], [-77.45852611680904, 34.594954491272496], [-77.4579843481279, 34.59494562629917], [-77.45785308830352, 34.5948632433902], [-77.45767959605774, 34.59485258993689], [-77.45759265714644, 34.5949731167846], [-77.4572281547664, 34.595123522204084], [-77.45707778872523, 34.59520427222988], [-77.45683461004751, 34.5953272529984], [-77.45677397453052, 34.595384459995024], [-77.45657037055201, 34.59571830184075], [-77.45655975945625, 34.59585046289548], [-77.45655075446, 34.595998911509625], [-77.4565479975326, 34.59609394946643], [-77.45652642355354, 34.59640002121455], [-77.45652296888865, 34.59645697247912], [-77.45649846930071, 34.59652007611929], [-77.45659889506607, 34.59681795831187], [-77.45667794213598, 34.597130580638016], [-77.45624834875267, 34.5973041277454], [-77.45596878863384, 34.59716790609011], [-77.45528087594779, 34.59726112018874], [-77.45518870507229, 34.59727360947732], [-77.45504659573916, 34.597381359500815], [-77.4546850568251, 34.597672020467044], [-77.45437636844932, 34.59814631762758], [-77.45435852145297, 34.59817714816019], [-77.45408424396484, 34.5982738562944], [-77.45343837100944, 34.59856012347218], [-77.4533647553193, 34.59852383184472], [-77.45331041876823, 34.5984945980923], [-77.452876046044, 34.598426166465714], [-77.45271736820922, 34.59840116772388], [-77.45238391930306, 34.598415267269175], [-77.45234714455188, 34.59841428267425], [-77.45233099119206, 34.598416493123565], [-77.45224771608711, 34.598428474269056], [-77.45190729769652, 34.598477451800676], [-77.45174382619204, 34.59850097069989], [-77.45133565925678, 34.598559693739276], [-77.45093914708258, 34.59874704434116], [-77.45070623752765, 34.598757267297756], [-77.45080313074948, 34.59891337751873], [-77.4511638735225, 34.599106888296056], [-77.45134493588273, 34.59916517040933], [-77.45153925203456, 34.59930335713872], [-77.45158688272878, 34.599355491062894], [-77.45157529639629, 34.599435014746355], [-77.4515412247001, 34.59966886515019], [-77.45151469336622, 34.5997453412835], [-77.45131553683349, 34.60011548989574], [-77.45129158345748, 34.60017823914403], [-77.451277569929, 34.60019599899363], [-77.45122007288505, 34.600232231435584], [-77.45077840943493, 34.60036434889008], [-77.45043417297553, 34.600278924658774], [-77.45025203642342, 34.60036173944171], [-77.45011225180858, 34.60040760171096], [-77.4500080206366, 34.60043046161573], [-77.44989745663251, 34.600478074071994], [-77.44977290851222, 34.60053170859176], [-77.44953809903984, 34.60067837375462], [-77.44942420913027, 34.60078622159559], [-77.44943506135768, 34.60104350724211], [-77.44957658439816, 34.60103665444068], [-77.44982434047418, 34.60102465774077], [-77.44991242532429, 34.60104134482489], [-77.45023686594615, 34.60121758869524], [-77.45033240428234, 34.601317728727196], [-77.45045635919843, 34.60152424207909], [-77.45034314385879, 34.60172720084637], [-77.45023795040012, 34.601955795516204], [-77.45021937192807, 34.60199358827831], [-77.45019394881375, 34.60206969068724], [-77.45012571915748, 34.602270515088016], [-77.45009125362142, 34.60236689359816], [-77.45014267854958, 34.60246408675335], [-77.45031334522477, 34.60250581166748], [-77.45043729447674, 34.602561000552754], [-77.45054573508732, 34.602606526035395], [-77.45071402315196, 34.60267978712082], [-77.45076099730107, 34.60280252125406], [-77.45077785285817, 34.60290958033846], [-77.45072520566883, 34.60305014201198], [-77.4506979364011, 34.60309015339213], [-77.45050383181456, 34.603201594017186], [-77.45019156918681, 34.60331865677854], [-77.45001533440255, 34.60333739698438], [-77.44972758784075, 34.60336999409242], [-77.449519021909, 34.60344465753779], [-77.44933196334392, 34.60369122268642], [-77.44962091684602, 34.60381685493349], [-77.44981794256395, 34.603775529940116], [-77.44991908482393, 34.603893028619055], [-77.45044184722042, 34.603926970166526], [-77.45070480112282, 34.604038191709236], [-77.45072050764196, 34.60404340079991], [-77.45074685043532, 34.60408923865128], [-77.45087864915058, 34.60430720375458], [-77.45090539344989, 34.60435023810436], [-77.45092830215026, 34.60440955941354], [-77.45098727009298, 34.60496736827182], [-77.45099431026735, 34.60505205413784], [-77.45099303435923, 34.60506375929379], [-77.45098961723811, 34.60508587612065], [-77.45089574622085, 34.605636961305024], [-77.45048419955252, 34.605703901096405], [-77.45013999251572, 34.605712851342346], [-77.44975632298966, 34.60585765173824], [-77.4496616357436, 34.605885750048195], [-77.44951627169723, 34.60597310608012], [-77.44920657235718, 34.60614373644152], [-77.44883105464474, 34.60615327409168], [-77.44868780166867, 34.606169024907224], [-77.44860826764862, 34.60616902508985], [-77.44830194024762, 34.606200520100884], [-77.44817294447869, 34.60620860827768], [-77.44814611458351, 34.606244959624824], [-77.44810507827872, 34.606327122115424], [-77.44802693979479, 34.606463574397175], [-77.4480252875882, 34.606490710865444], [-77.4480458580664, 34.6066428068262], [-77.448085025856, 34.60680880503692], [-77.44820720444591, 34.60696604930052], [-77.44842888146087, 34.60725134722553], [-77.44843934499451, 34.607269102602984], [-77.44844620504915, 34.60728151931319], [-77.44847445050925, 34.60730994798195], [-77.44855156055672, 34.60742172845446], [-77.448549968043, 34.607585792831756], [-77.44854724283955, 34.60760246734106], [-77.44854423432119, 34.607608445962654], [-77.44834546820819, 34.60784156168724], [-77.44828050567315, 34.60805291301942], [-77.44818903789108, 34.608187667430705], [-77.44805687239688, 34.608359977786094], [-77.44785050649249, 34.60846704632229], [-77.44774255974151, 34.608477071500786], [-77.44735500892062, 34.6086157173564], [-77.44726392232812, 34.60864901218603], [-77.44721247031998, 34.60868389872239], [-77.4469031757409, 34.60871099821237], [-77.44675836859861, 34.60872263484838], [-77.44659604916627, 34.608717902309074], [-77.44653388470824, 34.6087053560071], [-77.44633929177655, 34.6086880415789], [-77.44621937313119, 34.60867409503132], [-77.44614047309574, 34.608663188370855], [-77.44585023437563, 34.60862690673461], [-77.44567914684899, 34.60862105448626], [-77.4454860480266, 34.6086991546833], [-77.44543973220954, 34.60870668018185], [-77.44539508449914, 34.60872623429657], [-77.44520162534742, 34.60879708422231], [-77.44510327029762, 34.60887490584425], [-77.44480976085993, 34.608984709318], [-77.44467712067977, 34.6088014768728], [-77.44462296084286, 34.608726659078314], [-77.44447982551166, 34.608473800267504], [-77.44439623959275, 34.608422055066114], [-77.44434781759819, 34.60830081903777], [-77.44424084730016, 34.60809711296379], [-77.44418897768726, 34.60793552273417], [-77.44438889329282, 34.607748481388946], [-77.44443887926053, 34.60771327265374], [-77.44459109641133, 34.6076279886871], [-77.4447786029496, 34.60752245759504], [-77.44484053024227, 34.60747790444628], [-77.44497963768475, 34.60728310553057], [-77.44498587578786, 34.60714616446128], [-77.44489830849852, 34.607047871345415], [-77.44486864693559, 34.60699496673728], [-77.44471206993849, 34.60687975876065], [-77.44468875045779, 34.60686163864463], [-77.44466922401486, 34.60685205901205], [-77.44432431674082, 34.60683535974322], [-77.44413769488705, 34.60683074051514], [-77.44366292034407, 34.60678489997298], [-77.44362016376714, 34.6067819850618], [-77.44358124646362, 34.60671837474679], [-77.4433795210729, 34.60649645806176], [-77.4434782564851, 34.60634208898124], [-77.44360316848233, 34.606181960193155], [-77.44386100958393, 34.60581985693146], [-77.44396765408366, 34.605690106622035], [-77.44397542670482, 34.60558803588261], [-77.4440229226474, 34.60537529208179], [-77.44407679654802, 34.60518987928256], [-77.4440911600781, 34.60511391480302], [-77.4441348962681, 34.60480405959319], [-77.44414861961639, 34.60451460791272], [-77.44416286121678, 34.6042899211293], [-77.4440441913863, 34.60409142251882], [-77.44403962789227, 34.60398345386831], [-77.4438828068852, 34.60397884430391], [-77.44365529031224, 34.60399622305287], [-77.4433689592298, 34.604022057991756], [-77.44307863266441, 34.60414011986822], [-77.44288309980276, 34.604167539208376], [-77.44276887948183, 34.60434141682457], [-77.44278342817083, 34.60445092659146], [-77.44276940031654, 34.604651309197905], [-77.44279829133518, 34.60481593850064], [-77.44274706305083, 34.605106636125605], [-77.44273791207992, 34.605202405181664], [-77.4427250216551, 34.60525519783741], [-77.44267470646514, 34.605326850645866], [-77.44240712972109, 34.60566597318936], [-77.44234376923642, 34.60574118164255], [-77.44187527531085, 34.60618687120203], [-77.44187972485679, 34.606198188942244], [-77.44187047083099, 34.60622984923647], [-77.44157260558295, 34.606710120123296], [-77.44148250068721, 34.606733065303175], [-77.44144358223987, 34.60670023160584], [-77.44140737461312, 34.60668953039223], [-77.44111056189004, 34.60665024039254], [-77.44105025338195, 34.606527294856924], [-77.44114026628986, 34.60639644016783], [-77.44100576272507, 34.60632124091616], [-77.44097463529923, 34.60607441679343], [-77.44088568550441, 34.60585026850842], [-77.44080983632341, 34.60575215633422], [-77.44076715845776, 34.60569870724149], [-77.44062296239338, 34.605448598832375], [-77.44061850612029, 34.605437460631585], [-77.44056986794376, 34.605319136102636], [-77.44049217308995, 34.60512065438396], [-77.44048282626798, 34.605106897839924], [-77.44047731950756, 34.60508790759086], [-77.44039287875813, 34.60478493056895], [-77.44038457353744, 34.60476566401196], [-77.44021785262021, 34.60454179220406], [-77.44017087227807, 34.604457346617394], [-77.43994617278821, 34.604282564711596], [-77.43981616247169, 34.604189233295116], [-77.4397769153157, 34.604166630002446], [-77.43970363869406, 34.6040746585557], [-77.43956332657729, 34.60389207376683], [-77.43947692273375, 34.6036191611486], [-77.43944148728559, 34.60355756529397], [-77.43942561671756, 34.60348092311379], [-77.43939653854598, 34.60326032577304], [-77.43938246263819, 34.6032051477148], [-77.4392725549034, 34.602954792365196], [-77.43924437640212, 34.60287527169845], [-77.43918911932496, 34.6027787081308], [-77.43911583285666, 34.602689284659746], [-77.43901843802061, 34.60257044357547], [-77.43893511822492, 34.60245310858207], [-77.43885023500312, 34.60224915451667], [-77.43881155563147, 34.602147064520075], [-77.43875915944079, 34.60200876936146], [-77.43873201263987, 34.601913615467225], [-77.43870881423943, 34.60181556578592], [-77.43865081576888, 34.601567520093404], [-77.43860622790652, 34.601335801299406], [-77.43858106830946, 34.6012181604589], [-77.43856178484756, 34.60108111045764], [-77.43851926937386, 34.60082657947724], [-77.43848911263646, 34.6004922530071], [-77.43847832166455, 34.600407906417004], [-77.43847505254315, 34.60033754428908], [-77.43845782391412, 34.59998627638144], [-77.43845732129391, 34.59961383695333], [-77.43851386923296, 34.59955357821379], [-77.43870570986603, 34.59920595125861], [-77.43877446700658, 34.59909130237359], [-77.43877829091231, 34.59906430820668], [-77.43909104838909, 34.59862092974246], [-77.43914127267641, 34.59855395112262], [-77.43919667619315, 34.598502787301335], [-77.4394348285549, 34.598314541977544], [-77.43962620480028, 34.598157294031374], [-77.4396974862865, 34.598108640881584], [-77.43998459117097, 34.59790366082318], [-77.44017364009233, 34.597818912040125], [-77.44018159642398, 34.59781427939651], [-77.4402936569423, 34.5975978329071], [-77.44027191221488, 34.59748615175994], [-77.44024333082105, 34.59732605404709], [-77.44011858582235, 34.59719855563828], [-77.43998413920107, 34.596933635944566], [-77.43992080494692, 34.5968707674377], [-77.43981149700697, 34.59681836972307], [-77.43958998093684, 34.59678502777319], [-77.43930081377442, 34.59677917218435], [-77.43919588814671, 34.59677704741973], [-77.43891119509735, 34.59652396598434], [-77.43884942122858, 34.59648144628719], [-77.43880161547679, 34.59637033312638], [-77.4386791713863, 34.596132923218406], [-77.43876545372339, 34.59573450481005], [-77.43876700176202, 34.59565868050154], [-77.43893163873861, 34.595247226472054], [-77.43902259257929, 34.59504820849307], [-77.43906352776348, 34.59452046882191], [-77.43909157894143, 34.59437490977497], [-77.43909051682309, 34.594262764570665], [-77.43919462309287, 34.59399630427659], [-77.43934122367716, 34.593647744284745], [-77.43944945088317, 34.593473968759625], [-77.43958838174966, 34.593304159805356], [-77.43990665953402, 34.593326173205824], [-77.43998247010254, 34.59333814572586], [-77.44001308830887, 34.59335947922039], [-77.44005829102407, 34.59338592116545], [-77.44056244486185, 34.593537404979784], [-77.44077073461152, 34.59359032752124], [-77.44098606051791, 34.59348380167004], [-77.44134243177774, 34.59320020415037], [-77.441460162147, 34.59307707684137], [-77.44155860801641, 34.59302168414366], [-77.44192106497104, 34.592725827954354], [-77.44196044459673, 34.592694763100546], [-77.44234638082482, 34.5922699129705], [-77.4424277272085, 34.592194041986325], [-77.44244898653, 34.59208031150055], [-77.44234617590273, 34.59185184462037], [-77.44219844785874, 34.59153701975313], [-77.4416783324691, 34.591582985911444], [-77.44155790800549, 34.591566325593746], [-77.4415065546379, 34.591533399695585], [-77.44078514636615, 34.59159896226935], [-77.44076979333178, 34.591595230778324], [-77.4407603750966, 34.59159615263909], [-77.44040046045288, 34.59166466935533], [-77.44037576332326, 34.59166894481725], [-77.44016222713546, 34.591672510282606], [-77.44000065771259, 34.59167545165691], [-77.43998170202582, 34.59167655892705], [-77.43995162639919, 34.591670564596406], [-77.43922496484485, 34.59177427682783], [-77.43919360260637, 34.591743991980515], [-77.43911975219919, 34.59174369735203], [-77.438662667681, 34.591612182902885], [-77.43840533199625, 34.5914282147172], [-77.43829231948489, 34.591215401068034], [-77.43819104134926, 34.59110838001637], [-77.43809920016089, 34.59102672605616], [-77.43801104741088, 34.590924440548775], [-77.43800951096874, 34.59092233326757], [-77.43795578427509, 34.5907772809437], [-77.43792522653753, 34.59072222403044], [-77.43795616308248, 34.590658738554986], [-77.43801090061487, 34.59058871860478], [-77.43817771000649, 34.59044092454763], [-77.43828971445112, 34.590368995171275], [-77.43840483097365, 34.590295067246736], [-77.43845130979393, 34.5902716469637], [-77.43848269444018, 34.59021701687522], [-77.43884791662288, 34.58979267577817], [-77.43887005289915, 34.58973640674269], [-77.43893884321756, 34.58957531273095], [-77.43896544148092, 34.5895103152235], [-77.43897667858006, 34.58948834854026], [-77.43909343056242, 34.589279508884694], [-77.43879834698407, 34.58907827292619], [-77.43864653033457, 34.58908312773134], [-77.4385574466686, 34.58909743824026], [-77.4384043246722, 34.58914761386394], [-77.43824448960687, 34.589230012773754], [-77.43801035498385, 34.589339284326506], [-77.43770967396321, 34.58947961217154], [-77.43763982997285, 34.58951498281464], [-77.43761637629225, 34.58951442035597], [-77.43759792428268, 34.58951565398059], [-77.43754032196136, 34.58950410083045], [-77.43728204766886, 34.58947707484859], [-77.43722229908131, 34.58946277626403], [-77.43701821460206, 34.58937486331811], [-77.43685353882523, 34.58917881528477], [-77.43684474083594, 34.589162175425834], [-77.43682810046269, 34.58912248275873], [-77.43672198018965, 34.58888748247969], [-77.43667024273105, 34.58878072566651], [-77.4364797375791, 34.58843322007904], [-77.43645113314413, 34.58836906552929], [-77.4363763784969, 34.58833683780534], [-77.43603959229708, 34.588149004503805], [-77.4359729149853, 34.588104193618264], [-77.43590706490943, 34.588041889079804], [-77.43564539923338, 34.587794979068335], [-77.43559204578398, 34.58772030090495], [-77.43555483987517, 34.5876682238906], [-77.4354214030478, 34.58750415743963], [-77.43539921795532, 34.58747842845642], [-77.43525116285781, 34.58732478880063], [-77.4352349581417, 34.587307335069724], [-77.43522161244746, 34.587291811276884], [-77.43505880405988, 34.587108172552604], [-77.43488770444515, 34.58691549637143], [-77.43487353142746, 34.58689967740036], [-77.43485694086665, 34.58687940239599], [-77.43469752777199, 34.586690091460696], [-77.43457515083088, 34.5865360933463], [-77.43462483404352, 34.58635419588019], [-77.43471363049107, 34.5859374588577], [-77.43505260928187, 34.58583118010394], [-77.4352505427899, 34.58577867499627], [-77.43548689853894, 34.58580975355168], [-77.43564457906177, 34.585774645034526], [-77.4357379732781, 34.585842767432176], [-77.43584163128467, 34.5858563972176], [-77.43589481597928, 34.585863390320554], [-77.43603650568747, 34.58589787949229], [-77.43603866753706, 34.58589827135438], [-77.43604023954293, 34.58589797487993], [-77.43604781845845, 34.58589857305056], [-77.43623569303739, 34.585913622821344], [-77.43634957367365, 34.58585494089386], [-77.43638595055107, 34.58579934419063], [-77.4364325764538, 34.58558615380389], [-77.43650702409784, 34.58540758087575], [-77.43643243818406, 34.58525248287077], [-77.43635468389087, 34.58508872655969], [-77.43631636394551, 34.58488564348251], [-77.436294376197, 34.58458914239509], [-77.43630815134554, 34.58429605769001], [-77.43637879862962, 34.58409505829364], [-77.43643191733263, 34.58399376019012], [-77.43651297339278, 34.583795779514915], [-77.43668542118345, 34.583683411684234], [-77.43677293283648, 34.58361380218201], [-77.43682579781871, 34.58363785443353], [-77.43683773726295, 34.58364852577447], [-77.43685238921229, 34.58365926791176], [-77.43694903307235, 34.58372483391244], [-77.43702286916343, 34.58377492630289], [-77.43706075078268, 34.583800626218164], [-77.43721996007018, 34.58395674032889], [-77.43729007438975, 34.58394501137182], [-77.43748333102069, 34.58427627748372], [-77.43752093039384, 34.58441178052091], [-77.43754175919369, 34.58448684459379], [-77.43761422832077, 34.58451632327237], [-77.43789471430748, 34.58490485442648], [-77.43812903166274, 34.58487840668458], [-77.43840243606743, 34.584847546589444], [-77.43854986118717, 34.584953363434494], [-77.43875427278448, 34.58508261171437], [-77.43901837001064, 34.58523008429783], [-77.43919072272345, 34.58534164537547], [-77.4392455298128, 34.58537712111354], [-77.43929993589818, 34.58542829343985], [-77.43942220232034, 34.58558589146363], [-77.43966150636976, 34.585800596444386], [-77.43975953940102, 34.5860230080323], [-77.439979175083, 34.5861777777317], [-77.44022104381557, 34.58630830270197], [-77.44073108154694, 34.58645598074524], [-77.44076738885381, 34.58646939661608], [-77.4407808643162, 34.586473378254546], [-77.44082391895887, 34.58648166951601], [-77.44116146541, 34.58654667263391], [-77.44155403158352, 34.58637606907079], [-77.44155498988489, 34.586375462509835], [-77.44155542378077, 34.586374663254055], [-77.44198965257225, 34.585931997658626], [-77.44300057087534, 34.58531763994821], [-77.44296840659828, 34.58514711538838], [-77.44266216306117, 34.58417286367413], [-77.44238506735451, 34.58370828555559], [-77.44207609396832, 34.58319026971442], [-77.44155349598046, 34.582314046510064], [-77.44080891995117, 34.58134135504264], [-77.43976444235966, 34.58069056033985], [-77.43907420699487, 34.580064200556016], [-77.43840026291245, 34.57985797568203], [-77.4371695332497, 34.578994960042515], [-77.43659749482454, 34.57920614946015], [-77.43524809929977, 34.57964213943507], [-77.43524541721479, 34.57964281266618], [-77.43518809364292, 34.57965399170199], [-77.43450162651949, 34.579797953419664], [-77.43446013397009, 34.57977854170241], [-77.43409691337757, 34.58023635638761], [-77.43408489356226, 34.58025812294013], [-77.43406632915642, 34.58031507455122], [-77.43386941858964, 34.58069383997258], [-77.43396290083604, 34.58099318179305], [-77.43399628686564, 34.58110008917768], [-77.43401342483426, 34.581154967177], [-77.4340667145994, 34.58132250018056], [-77.43412921303957, 34.581505462444035], [-77.43413794010945, 34.58158084621688], [-77.4341500442558, 34.58171474668097], [-77.43406690352965, 34.58181562302651], [-77.4339746595039, 34.581852983190174], [-77.43375723362352, 34.5818929725149], [-77.43367290042644, 34.581858870564], [-77.43349587822553, 34.58178775747797], [-77.43314546922416, 34.58164768973856], [-77.4329727634445, 34.581577823355715], [-77.43288476413487, 34.58159692943913], [-77.432818636028, 34.5816236713725], [-77.4324907546999, 34.58162236415506], [-77.43214719718101, 34.581737677750745], [-77.43209678359779, 34.58175524160995], [-77.43205853606682, 34.581763608575564], [-77.43161192385972, 34.58186939008946], [-77.4313406642067, 34.581942929224674], [-77.43130881621704, 34.58196044490051], [-77.43125160760738, 34.58192147751744], [-77.43074886682182, 34.58174828202798], [-77.43052069119321, 34.58171528444724], [-77.43021066145336, 34.58155679506545], [-77.42985814972431, 34.58140906863299], [-77.42979506941924, 34.58170743220459], [-77.42984237085994, 34.582007057019894], [-77.42985303784404, 34.5821236426455], [-77.42978382205476, 34.58218861862936], [-77.42973282112004, 34.582226589937854], [-77.42954095216149, 34.58238653224774], [-77.42953079148631, 34.58238798164462], [-77.42951448918295, 34.582384872939485], [-77.429372084698, 34.58236963864611], [-77.4293388403758, 34.582353658463255], [-77.42925538122823, 34.58229994443573], [-77.42913797799207, 34.58222699924319], [-77.42910926959387, 34.58205383376918], [-77.42894474628626, 34.58213290183641], [-77.428759490382, 34.58205671716334], [-77.42874770977792, 34.58205313607465], [-77.42870933619045, 34.582035315081164], [-77.42855067013602, 34.581962287364156], [-77.4285062231005, 34.5819416097891], [-77.42845731446984, 34.58190079082981], [-77.42829681784956, 34.581772880619], [-77.42828475770604, 34.58163929867732], [-77.42831531665604, 34.581496725214485], [-77.42826457992277, 34.58138755938161], [-77.42825936348544, 34.581080223359606], [-77.42815630729515, 34.58086807001567], [-77.42809640051094, 34.58074370129213], [-77.42804795363057, 34.58068619005232], [-77.42776212396426, 34.58032334533201], [-77.42775033832865, 34.58031731410583], [-77.42774240040538, 34.58030576324199], [-77.42760616829278, 34.58015744953088], [-77.42756951157092, 34.580118456422085], [-77.42756820569453, 34.5801152486945], [-77.42748799517543, 34.579917943412994], [-77.42776186275526, 34.57947058925043], [-77.42777076856282, 34.57946208552741], [-77.42777985587402, 34.57945117232804], [-77.42779896961363, 34.57940840228011], [-77.42804842547602, 34.57898776633613], [-77.42802795533616, 34.5788530858404], [-77.42799961405159, 34.578738374461416], [-77.4279477723529, 34.57857772521383], [-77.42795682958771, 34.5783659506417], [-77.42785947037919, 34.57816589902433], [-77.42801251918776, 34.57798979159239], [-77.42815536508706, 34.57783485847334], [-77.42845406245867, 34.577655369925225], [-77.4285125244073, 34.57760729422037], [-77.42848587863666, 34.577294416552405], [-77.42846168522166, 34.57722967900523], [-77.42837141902132, 34.57700962131079], [-77.42815511080282, 34.57701244967392], [-77.42802506363361, 34.577008341329105], [-77.42787339197646, 34.577011117561604], [-77.4277611127269, 34.57701209063293], [-77.42767749399331, 34.57700854382353], [-77.42736710886079, 34.576992451059866], [-77.42699207184867, 34.57699706698865], [-77.4269600535464, 34.5770080504035], [-77.42688044598755, 34.577033631740996], [-77.42662019161787, 34.57711547495405], [-77.42657915181499, 34.57712741888797], [-77.42652964846344, 34.57713768064239], [-77.42626583001433, 34.577209373738114], [-77.4261851829861, 34.57723246610216], [-77.42610897176529, 34.57722725397653], [-77.42586035624988, 34.577255593224805], [-77.42579119229168, 34.57726347703481], [-77.42572986223963, 34.577266008071305], [-77.4255248947016, 34.577229536973775], [-77.42542375157872, 34.5772155184859], [-77.42539717750945, 34.57720851738752], [-77.42533466792196, 34.577189670332096], [-77.42500316781903, 34.577170670563554], [-77.42478046851062, 34.577152510528734], [-77.42455547294338, 34.576945041168486], [-77.42440306769728, 34.57676446314302], [-77.42432280489354, 34.57624574314528], [-77.42428720546057, 34.57613463400061], [-77.42436939158111, 34.575956217131605], [-77.42444138573708, 34.57568776682634], [-77.42452993500427, 34.57559003741251], [-77.42451341723174, 34.575355437589224], [-77.42426875777647, 34.575288125852346], [-77.42422983211586, 34.57527741648071], [-77.42421467332844, 34.575271759793935], [-77.42416161362556, 34.57524643553841], [-77.42382063538057, 34.57508612746212], [-77.42367686914106, 34.57510400473265], [-77.42357071042528, 34.574964409536044], [-77.42349477342674, 34.574624339354465], [-77.4234747209046, 34.57455369359154], [-77.42347291921266, 34.57450392918504], [-77.42346707528588, 34.57434250514078], [-77.423465557403, 34.57430057840607], [-77.42346325250121, 34.57423691090774], [-77.42342642120519, 34.57418994796795], [-77.423364738605, 34.574211478861045], [-77.42331087533296, 34.57424054218395], [-77.42322945772041, 34.57430813077566], [-77.423182541823, 34.5743330536738], [-77.42303249903699, 34.574448135987176], [-77.42270365129869, 34.57459495088204], [-77.42263855599931, 34.574630075130074], [-77.42259087193005, 34.57463001976946], [-77.4225940756244, 34.57468094424494], [-77.42260900308277, 34.57471065615097], [-77.4226385961033, 34.57479641546455], [-77.42275121305804, 34.57508282497525], [-77.42275902273326, 34.57537665483563], [-77.42273822184023, 34.57550928832978], [-77.42272171717849, 34.57560103906369], [-77.42263879506822, 34.575620574046475], [-77.42250919286732, 34.575682062979496], [-77.422441823709, 34.57572449528014], [-77.422397824869, 34.575723350995105], [-77.42224482952713, 34.57573419201401], [-77.42200463321598, 34.57561528472397], [-77.42189330473477, 34.57558556705671], [-77.42185080187869, 34.57558546995195], [-77.42178853729877, 34.57557940958067], [-77.42145679558385, 34.57552464839581], [-77.42127134316304, 34.57549649386524], [-77.42122126273739, 34.57547465943705], [-77.42106277536026, 34.575399129558235], [-77.42102018245049, 34.575378831124475], [-77.42094628278942, 34.575343612660326], [-77.42077702739535, 34.57525138199776], [-77.42066873657656, 34.57518314410487], [-77.42053907254359, 34.57511757742686], [-77.42035381328924, 34.575004625338295], [-77.42031196012933, 34.57497051881265], [-77.42027469676273, 34.574953037345495], [-77.42007789042918, 34.57483242634244], [-77.41988065845386, 34.57471985625031], [-77.41983570569772, 34.57470333243789], [-77.41979726325074, 34.57466044629829], [-77.4197142066912, 34.574493117418314], [-77.41961893956334, 34.574261623679725], [-77.41959952437976, 34.57414268252571], [-77.41948648428405, 34.573805949859505], [-77.41936863526531, 34.57357556740969], [-77.41932368142615, 34.57345510990775], [-77.41938284721374, 34.57333497819315], [-77.4194863524223, 34.57315434260877], [-77.41969912156532, 34.57278107983463], [-77.41988020457843, 34.572529198242876], [-77.4198827793961, 34.572525168230946], [-77.41998498750183, 34.5721988135416], [-77.41995926620788, 34.57200421184557], [-77.41990159805485, 34.57167327987383], [-77.41988000663731, 34.57156834758379], [-77.41982795394061, 34.57131537584801], [-77.41981113958502, 34.57126176401843], [-77.41979941844366, 34.571176694071404], [-77.41979027028233, 34.57114910303075], [-77.41969320690502, 34.57107759606991], [-77.419682918658, 34.57107092412404], [-77.4196812678992, 34.57107001354782], [-77.4194859355145, 34.57108396587391], [-77.4193552784811, 34.57104383886817], [-77.41909194865556, 34.571006451947525], [-77.41881003564012, 34.57098180882778], [-77.418717065304, 34.57097466210146], [-77.41869797137556, 34.57097561642484], [-77.41867753450747, 34.57097892510311], [-77.41854393275753, 34.571020251013884], [-77.4180064707349, 34.571201784668055], [-77.41791010312446, 34.571384948189696], [-77.41757523091391, 34.571648415391614], [-77.41747922862129, 34.57163845712526], [-77.41712215411054, 34.571372715918876], [-77.417031430257, 34.571336508379794], [-77.41686691157992, 34.571262507135195], [-77.41643474512453, 34.57058425458579], [-77.41635970177856, 34.570486606629906], [-77.41643854035067, 34.570362600302865], [-77.41669546761514, 34.56997851907332], [-77.41685682321874, 34.56956563153908], [-77.41699951595781, 34.56941321249623], [-77.41712180187025, 34.569321407063995], [-77.41737604041442, 34.569066045832365], [-77.4174533263519, 34.568987652111744], [-77.41751568523523, 34.568863458856555], [-77.41770128988563, 34.568594477415274], [-77.41776018161178, 34.568424970834315], [-77.41790954912675, 34.56832056267403], [-77.41805022375249, 34.56839247333634], [-77.41825906900411, 34.56851389972409], [-77.41828870251761, 34.56852561580824], [-77.4183035503216, 34.5685503589398], [-77.4184324795027, 34.56877452496673], [-77.41850581929549, 34.56890283687174], [-77.41869763245883, 34.56919555572396], [-77.41874681703996, 34.56923960641192], [-77.41909067915104, 34.56924193063772], [-77.41909160429131, 34.569241901494216], [-77.4194607874555, 34.56916276837251], [-77.41948554701555, 34.56914021546082], [-77.41963213228583, 34.56900669364869], [-77.42000511827182, 34.56882167217741], [-77.42027338145924, 34.568706661043144], [-77.42036629865649, 34.568958547472775], [-77.42051819574708, 34.569036684903274], [-77.42066742910279, 34.56911710749662], [-77.42086144293737, 34.5692026008343], [-77.42106140344961, 34.56917322653683], [-77.42122980610173, 34.56911537352697], [-77.42145533803605, 34.5690491433129], [-77.42176082068688, 34.56885714049587], [-77.42181540310322, 34.56881277999024], [-77.42184922366839, 34.568714842898714], [-77.42253341704344, 34.567896330226596], [-77.42258116735309, 34.56782932746264], [-77.4226369210895, 34.56777368900263], [-77.42300909866184, 34.56742638749675], [-77.42303078742388, 34.567403649854384], [-77.42303297809651, 34.56740191729302], [-77.42305074810218, 34.567396987930266], [-77.42342471389294, 34.56729325060976], [-77.42349032625374, 34.56733346530518], [-77.4236649552015, 34.56747394143201], [-77.42381873870457, 34.567580999331604], [-77.42387842145011, 34.56763765969926], [-77.42397358945954, 34.567688214888406], [-77.42412257460239, 34.56776385964564], [-77.42421274828104, 34.5677983032848], [-77.42432558619745, 34.56775896826245], [-77.42460667801429, 34.56770047530366], [-77.42487874136636, 34.56755740465043], [-77.42496030179316, 34.5675022068216], [-77.42500056814292, 34.56745629279157], [-77.42508500249885, 34.56743658922011], [-77.42519742103762, 34.567511347831754], [-77.4256670154323, 34.56757441788262], [-77.425788516659, 34.56760930763173], [-77.42592936629651, 34.56767836841659], [-77.4260549551096, 34.567674548101884], [-77.42618248064251, 34.56764543522336], [-77.42635627646058, 34.567556154076435], [-77.42637029221946, 34.567544280739256], [-77.42642972570363, 34.56733324388098], [-77.42628463206213, 34.567039903449995], [-77.42623799597008, 34.56693636724025], [-77.42622286430947, 34.56689480496748], [-77.4261822598413, 34.56685121530447], [-77.42598011508213, 34.56654905128673], [-77.42618210455922, 34.56629165710601], [-77.42626412799981, 34.56617185285378], [-77.4265526095941, 34.566041717923774], [-77.42657597854395, 34.566030452465185], [-77.42665241718336, 34.566027291885405], [-77.42692135868828, 34.56604076617106], [-77.42686978569847, 34.566312447056845], [-77.42686624584435, 34.566420973754724], [-77.42697008898881, 34.566602677349465], [-77.42705311483702, 34.56672910782459], [-77.4270903830576, 34.56681316545132], [-77.42731795097195, 34.56715501610732], [-77.42726919064314, 34.567211908855406], [-77.42735102313407, 34.567214300142716], [-77.42736421943574, 34.567224387437946], [-77.42743660236073, 34.56726570918623], [-77.42815227313179, 34.56772175974744], [-77.42832435934415, 34.56772309656089], [-77.42851994300358, 34.56788029418115], [-77.42879459950511, 34.56799758634027], [-77.42887241201086, 34.56860518792958], [-77.42887928666497, 34.56867752949927], [-77.42889409916191, 34.56872539009308], [-77.42894053108684, 34.56884429640739], [-77.42902735523188, 34.56908071509475], [-77.42911129685737, 34.5693092845739], [-77.42918748795313, 34.56948215627632], [-77.4292498943409, 34.56980622374892], [-77.42923306264812, 34.569900158329744], [-77.42894096471474, 34.57023068815279], [-77.42885428006697, 34.57028606049834], [-77.42865311872161, 34.570408579711426], [-77.42857893519263, 34.57080966377966], [-77.42840826916392, 34.57129315089171], [-77.42866297609649, 34.57155637415071], [-77.42894136833328, 34.5715168908511], [-77.4295666326642, 34.57130095314036], [-77.42972922340455, 34.57124379573661], [-77.4298358161442, 34.57120168651305], [-77.43010877879058, 34.57104733547081], [-77.43041306516002, 34.5708912837011], [-77.43051703309146, 34.570850489091995], [-77.43107030046151, 34.5706554931519], [-77.43130489824142, 34.57064167468531], [-77.43152223312555, 34.57060875502791], [-77.43182912002652, 34.570514464498515], [-77.43209275302212, 34.570415532969896], [-77.43229561177637, 34.57030659273217], [-77.43243289228698, 34.570228804963214], [-77.43260956346897, 34.57012869596], [-77.43288052612431, 34.569975157725494], [-77.4333016169764, 34.569736547167714], [-77.43339562164616, 34.56942912634147], [-77.43366790686082, 34.56849420510255], [-77.43397467042207, 34.5679408587996], [-77.43377790643147, 34.566390332044385], [-77.4337064346146, 34.566238857666654], [-77.43322270336151, 34.565872416324424], [-77.43209086948569, 34.56502132788833], [-77.4319961982232, 34.564932199256546], [-77.43187082321239, 34.564848322788166], [-77.43051463617758, 34.56358543758831], [-77.43039338706673, 34.56349421741285], [-77.43027553362754, 34.563380603454505], [-77.42934173552477, 34.56225186965878], [-77.42901226700869, 34.561864871341484], [-77.42893835925314, 34.561830344936574], [-77.42888126687075, 34.56182227497263], [-77.42736259033178, 34.561607615061405], [-77.4268849678292, 34.56165756433097], [-77.4268737057111, 34.562174009503266], [-77.42689070515058, 34.562680493309855], [-77.42677268820603, 34.56303778820628], [-77.42682841028679, 34.56330263502753], [-77.42686391869702, 34.563562685137455], [-77.42696929730924, 34.563834183708806], [-77.42697467387687, 34.5638577701564], [-77.42696930975934, 34.56387787944342], [-77.42689057015748, 34.564209547265854], [-77.42666976726949, 34.56422479710504], [-77.4265754566944, 34.56417426344834], [-77.42642244869836, 34.56410248007283], [-77.42590124474614, 34.564135440484286], [-77.42578756948015, 34.56413057078939], [-77.42570802791495, 34.56412657747991], [-77.4254333365411, 34.5640805497754], [-77.42499962181964, 34.56385348892751], [-77.42473438220473, 34.56389567913961], [-77.42441557602984, 34.56400799852524], [-77.42421181229325, 34.56410541112609], [-77.42408372812353, 34.564137543340095], [-77.42358306544979, 34.56417646464951], [-77.42342396252263, 34.56421206140903], [-77.42323546718137, 34.564195032069435], [-77.42303000609041, 34.56413648673902], [-77.42291192830663, 34.564147622888086], [-77.4228734270753, 34.56385722993756], [-77.42298865804031, 34.56358468176307], [-77.42302986506651, 34.563543296094686], [-77.42330583511153, 34.56341173576816], [-77.42342375253381, 34.56334564715298], [-77.42403019839229, 34.5625849891819], [-77.42399085514074, 34.562352996738], [-77.42393268288224, 34.56205020481359], [-77.4238765500882, 34.56175802015346], [-77.42380053898995, 34.561362372162996], [-77.42301906081069, 34.561446242968415], [-77.4226354695183, 34.561559902233654], [-77.42192298526162, 34.56195919439981], [-77.42184771210452, 34.56198720756323], [-77.4218009703105, 34.56200758053304], [-77.4217111558622, 34.56207094332487], [-77.42145383583929, 34.562226199553976], [-77.42117460072332, 34.56214847504975], [-77.4210970686667, 34.56211959918313], [-77.42105988367373, 34.56211954359452], [-77.42069753948209, 34.5617586954816], [-77.42027196410741, 34.56181716095931], [-77.4200546810431, 34.5616952902713], [-77.41965852904796, 34.56151836256762], [-77.4195847253058, 34.56142049452619], [-77.41948402589793, 34.561390324155155], [-77.41927208315434, 34.561345767341365], [-77.4190175479676, 34.56161097257352], [-77.41878947043114, 34.56174441189267], [-77.41869632551507, 34.56221255879838], [-77.41864173970752, 34.562455555753424], [-77.41863313374283, 34.562515680924776], [-77.41848482694911, 34.562765171854494], [-77.41839047385477, 34.56307008750441], [-77.41820817584559, 34.56310338280646], [-77.41790863774905, 34.56319364736172], [-77.41756092573132, 34.563144992500405], [-77.41712078202467, 34.56327656551534], [-77.41676145783073, 34.563247967898], [-77.41650457930406, 34.56367234982228], [-77.41637504525646, 34.563736395338], [-77.41633301108504, 34.563910416661216], [-77.41588389561088, 34.56461117469928], [-77.41619980662873, 34.56470924207531], [-77.41633315269006, 34.56480772563987], [-77.4164401379667, 34.56495540834178], [-77.41633319074418, 34.565048203486626], [-77.41617442529292, 34.5652472270093], [-77.41601100684659, 34.56536469144034], [-77.41593929833512, 34.5653823889937], [-77.41584136833598, 34.56546648380241], [-77.41562544584134, 34.565583961996005], [-77.41554539291597, 34.565650384693285], [-77.41518297716172, 34.565952231341065], [-77.41499878159424, 34.56584820524726], [-77.41475750852801, 34.56571670734221], [-77.41466650629683, 34.56573426412673], [-77.41468159459123, 34.5656340041291], [-77.41458456307532, 34.565461661504], [-77.41409578963207, 34.56473332281038], [-77.41396946343073, 34.564559563371695], [-77.41372631500148, 34.564660739973846], [-77.41318158931772, 34.56464032231573], [-77.41282759422171, 34.564584968790946], [-77.41239371983161, 34.564782071240316], [-77.41205608624949, 34.564800139195725], [-77.41160583820063, 34.56483059410111], [-77.41127918455832, 34.56477911733782], [-77.41071646547348, 34.564508327329904], [-77.41028322862134, 34.56429798086205], [-77.4100300178756, 34.5642819753542], [-77.40947204450765, 34.564086663462604], [-77.40845421622016, 34.56372155384525], [-77.40776426428755, 34.56397990849455], [-77.40687847290039, 34.56401129171987], [-77.4056044436744, 34.56387328015005], [-77.40372695412195, 34.565470502580425], [-77.40070266429622, 34.56581673101221], [-77.40057535399993, 34.56586651590062], [-77.40047510123463, 34.565878738439864], [-77.39899954111186, 34.566058632173345], [-77.39758404923556, 34.566231183601126], [-77.39742372887261, 34.56611739887372], [-77.39715944747523, 34.565051853553626], [-77.39718330802438, 34.56476350863427], [-77.39663597290463, 34.564193602992816], [-77.3960043756984, 34.56493361181652], [-77.39590095889659, 34.565005593163825], [-77.3958960819205, 34.565746508194096], [-77.39600806138219, 34.56578222485281], [-77.39584792198448, 34.56607217782462], [-77.3956703857615, 34.56648879302676], [-77.39527075664981, 34.56651058063062], [-77.39505997201579, 34.56653774901133], [-77.3948754067829, 34.566595878810574], [-77.39460398413252, 34.56683393908726], [-77.39439476762378, 34.56699641488014], [-77.39427200627392, 34.567068988126955], [-77.39413071623991, 34.5671745293691], [-77.39403598799647, 34.56717022804564], [-77.3938780564678, 34.56699698437416], [-77.39382637724368, 34.56694611959771], [-77.39366068692124, 34.566779737212606], [-77.39348414525578, 34.566592473238344], [-77.39347481500349, 34.56658232089039], [-77.39344638863064, 34.56657636498957], [-77.39317215143366, 34.56652760184484], [-77.39296965303359, 34.566515222128714], [-77.39269623037124, 34.56662208435845], [-77.39265748985314, 34.56664841882916], [-77.39261469565983, 34.56669633942912], [-77.39246910439309, 34.56689717223908], [-77.39230220615435, 34.56715473966291], [-77.39228639687603, 34.56715122827991], [-77.39228942779438, 34.567167829314556], [-77.39227860859683, 34.56719481549498], [-77.39214754123667, 34.567446224004314], [-77.39204231494541, 34.56762804434936], [-77.39190815422393, 34.56785985997503], [-77.39175805531416, 34.567669046672066], [-77.39190821757067, 34.567381757996046], [-77.39201262835081, 34.56732027099824], [-77.39198014331409, 34.56721244205272], [-77.39199092478006, 34.56712179006397], [-77.39203292870546, 34.566914592787874], [-77.39204599708901, 34.566778372620554], [-77.39207031795692, 34.56652486835615], [-77.39208730049889, 34.56634784446114], [-77.3922523217257, 34.56595339794349], [-77.39228487499973, 34.56587591929713], [-77.39242046018182, 34.56545064563389], [-77.39253837219972, 34.565263326609355], [-77.39269646363834, 34.56474804811713], [-77.39274337324548, 34.56460546108846], [-77.3927623327212, 34.56455218910221], [-77.39282309697923, 34.56383063581775], [-77.39286256439755, 34.56368858845923], [-77.39288700330745, 34.563479879661756], [-77.39291742952972, 34.563256103297704], [-77.39291371148627, 34.563065981056276], [-77.3929528122042, 34.562826428267044], [-77.392963519651, 34.562687856364654], [-77.3929945575981, 34.562608120846534], [-77.39294306280868, 34.56256235547631], [-77.39276271748997, 34.56242927997772], [-77.39269676749228, 34.56233628712215], [-77.3925238708429, 34.562225521123025], [-77.39228644560802, 34.56207341311886], [-77.39190896508464, 34.561831577033836], [-77.39149069531582, 34.561789862147194], [-77.39112110261914, 34.561802260535245], [-77.39087028328365, 34.56200739585341], [-77.39049854979856, 34.56233130836222], [-77.39045903944032, 34.56305035071318], [-77.39048847641031, 34.563181900481226], [-77.39082034533027, 34.56345791326833], [-77.39084126661578, 34.56355558487675], [-77.3907769291071, 34.56361878755061], [-77.39062030116787, 34.56370232469182], [-77.39033298836713, 34.56339687942136], [-77.38992665353825, 34.564112072555105], [-77.3896985868203, 34.56431053839447], [-77.38954488786764, 34.56473248003829], [-77.38948487351759, 34.564960289098906], [-77.38945164101216, 34.565029721127445], [-77.3890352209167, 34.565389752641764], [-77.38894315603193, 34.565751373110004], [-77.38888055794382, 34.565961221713806], [-77.38893119059341, 34.566141915094434], [-77.38890786493369, 34.5666434709962], [-77.3889456293151, 34.56680097420369], [-77.38881806317923, 34.566885585650326], [-77.38875660903486, 34.566968506929086], [-77.38862960983866, 34.56713428237564], [-77.38845424422176, 34.56729640883308], [-77.38840722680075, 34.56735130093916], [-77.38836257961559, 34.56737427412714], [-77.38829131162579, 34.56739670626439], [-77.38796859996494, 34.56748206686457], [-77.38765322916737, 34.567496621945565], [-77.38737299508263, 34.567669606216185], [-77.38718062508407, 34.567762881973216], [-77.38691744380256, 34.56794259368105], [-77.38653895807097, 34.56815487363354], [-77.38639260727064, 34.56823219750432], [-77.38602172134888, 34.56852125567801], [-77.38599858105175, 34.568535341355926], [-77.38597068769899, 34.56853373986925], [-77.38560459897411, 34.568612130425755], [-77.38527712954303, 34.568532038360246], [-77.38521066417391, 34.568461729953135], [-77.38501693902818, 34.568216631435774], [-77.38497859049275, 34.56804778896215], [-77.38490140276885, 34.56747521050013], [-77.38495856153887, 34.567375915115505], [-77.38515502701327, 34.566862692696176], [-77.385233935171, 34.5664870765044], [-77.3853939167124, 34.56584254912248], [-77.38533391178049, 34.56562352751326], [-77.38529837345659, 34.56529788163233], [-77.3856053056999, 34.5652233894501], [-77.3859047286264, 34.565218525716915], [-77.38639324728767, 34.56502123071755], [-77.38673007038643, 34.564936056119606], [-77.3869433942839, 34.56479858698344], [-77.38718120838098, 34.56469538069916], [-77.38726064561087, 34.56458214951255], [-77.38726797158617, 34.56449550480207], [-77.387260348047, 34.564411371287235], [-77.38725741133024, 34.56372981934124], [-77.38732878888395, 34.563637598558735], [-77.38768341912086, 34.563278283276006], [-77.3876584657744, 34.563076027339235], [-77.38757546084031, 34.56306714698738], [-77.3874765786753, 34.56287375949265], [-77.3872374032144, 34.5628016417524], [-77.38720323620855, 34.562783223904596], [-77.38718157489711, 34.562785882056055], [-77.38715261946078, 34.562782660912944], [-77.38698461345177, 34.56274504857748], [-77.38686327800015, 34.56277407269586], [-77.38678763884167, 34.562771827492746], [-77.3864399195607, 34.56286680942547], [-77.38639367989525, 34.56287131751596], [-77.38634625316084, 34.562879037769875], [-77.38605346907292, 34.56297236983142], [-77.38599971292514, 34.563004677488934], [-77.3859888408157, 34.56299340905126], [-77.38569563357001, 34.56312084201324], [-77.38560571893606, 34.56325980262673], [-77.38525878944235, 34.56351152588609], [-77.385254613691, 34.563558363386235], [-77.38502592082763, 34.563969669578654], [-77.38481763318696, 34.56418101614575], [-77.38476233493355, 34.56406729907427], [-77.38466782405173, 34.5640213027514], [-77.38430761930162, 34.56377385862247], [-77.384029815057, 34.56385987066762], [-77.3837774053815, 34.56387765842831], [-77.38324194157795, 34.563794477377925], [-77.38296655024669, 34.563714274547436], [-77.3827936483201, 34.563442386050994], [-77.38257870826382, 34.5633391502694], [-77.38245418275466, 34.56327169777373], [-77.38217461752615, 34.5631070658702], [-77.38211292773074, 34.56305923446085], [-77.38206030018513, 34.563037239521464], [-77.38183154734168, 34.56290995324886], [-77.38166641413088, 34.56282467738998], [-77.38162941488645, 34.56280098136117], [-77.38158605109054, 34.56276735075523], [-77.3814424542205, 34.562604919355806], [-77.38141586053578, 34.56252176854858], [-77.38142841115732, 34.5623655113625], [-77.38154377728563, 34.56205670077666], [-77.38157626049701, 34.56191963218939], [-77.38156549635187, 34.56181213667023], [-77.38145070081336, 34.56132150979854], [-77.38123543643214, 34.56111963580845], [-77.38107012523952, 34.56093752345466], [-77.38087909765582, 34.56072810386148], [-77.38064506048549, 34.56060788654246], [-77.38018052498083, 34.56042257954847], [-77.38038608206075, 34.56007536765185], [-77.38009137318382, 34.5602398835021], [-77.37997324532434, 34.56032516946401], [-77.37930357905104, 34.56002412672382], [-77.3790830522971, 34.55996934451007], [-77.37880742094782, 34.5600857823711], [-77.37851562356852, 34.5603617249984], [-77.37836773486153, 34.56052454567076], [-77.37830028495388, 34.560693605257256], [-77.37801189960246, 34.56104162456262], [-77.37772745489049, 34.56137186668106], [-77.37762112697921, 34.56152607657113], [-77.37749326913313, 34.5616590486357], [-77.37733339691276, 34.56176966969471], [-77.3770747210661, 34.56186518040364], [-77.37693943406038, 34.561854741996115], [-77.37685023693301, 34.56184785949586], [-77.37654549628446, 34.56185887808821], [-77.37648946744085, 34.5618641033012], [-77.37619652026174, 34.561894407847824], [-77.37615154768238, 34.56189592943264], [-77.37611130248705, 34.56190159257733], [-77.37588784879587, 34.561890423904515], [-77.37575761342273, 34.56188824799766], [-77.3754284200767, 34.56188685679146], [-77.37536367671999, 34.56188787709803], [-77.37528067459478, 34.56188847009262], [-77.3749697412494, 34.561883655614665], [-77.37481713410241, 34.56188025239604], [-77.37474082428967, 34.5618778745618], [-77.37457581713156, 34.56184635011027], [-77.37445663318515, 34.56180057881697], [-77.37429021626052, 34.561696093603175], [-77.37422876582345, 34.56165449032556], [-77.37418198064657, 34.561558874729215], [-77.37393953970984, 34.56132206499737], [-77.37393799491582, 34.56116083087471], [-77.37378839371459, 34.56057499444262], [-77.37374206478889, 34.56050139902349], [-77.37373646802523, 34.56044619293742], [-77.37378843502051, 34.56045852560385], [-77.3739284537616, 34.56032368524614], [-77.37418248884262, 34.56010607057726], [-77.37421212135017, 34.560041015008004], [-77.37457650279649, 34.55985945765737], [-77.37472685430649, 34.55967233987148], [-77.37497054698223, 34.559517030432154], [-77.37503952629325, 34.5594653071797], [-77.37524465213964, 34.55930653005548], [-77.37536457560977, 34.559211412295426], [-77.37566277379439, 34.55895092727121], [-77.37571568936383, 34.558897048528785], [-77.37575864798697, 34.55876541170795], [-77.3758687527318, 34.558496680196946], [-77.37575881885174, 34.55825165763824], [-77.37571139163661, 34.558145951043045], [-77.37568463225956, 34.55809865332623], [-77.37557465333448, 34.55791589003729], [-77.37545980116589, 34.55770649335301], [-77.37543549542822, 34.5576341325514], [-77.3753651370278, 34.55754742156654], [-77.3751831996691, 34.55732179400344], [-77.37523909811273, 34.55702521145788], [-77.37525876989666, 34.556886341389855], [-77.37528209102629, 34.55679319792441], [-77.37536541310745, 34.55673134265866], [-77.37546595114512, 34.55674811613928], [-77.3757593036316, 34.55679705781838], [-77.37581445085527, 34.55680625818535], [-77.3760773503672, 34.55685011844358], [-77.37615319716541, 34.5568554584178], [-77.37629054349269, 34.556885685008595], [-77.37672998375545, 34.556052919067135], [-77.37688217487113, 34.55580324756933], [-77.37682338270812, 34.555684521010996], [-77.3763780340337, 34.554785180274024], [-77.3760972410511, 34.55421812644663], [-77.37536676914722, 34.552742924635105], [-77.37532458511669, 34.552676730207445], [-77.37527643157671, 34.55263817817227], [-77.3738060123188, 34.552198078122004], [-77.37350851422126, 34.55271476573185], [-77.37339662846068, 34.55290907999417], [-77.37274019682576, 34.55356942516181], [-77.37248462429788, 34.553889622333216], [-77.37221509001526, 34.55413455123136], [-77.37196843907938, 34.55422981074235], [-77.371821124711, 34.55430260999435], [-77.37174230822184, 34.55433620751662], [-77.37142715249706, 34.554484489682714], [-77.37097402668024, 34.554595624967945], [-77.37063930004989, 34.55460268887768], [-77.37025129655785, 34.55464234943187], [-77.3702415552379, 34.55464150003082], [-77.3698516093641, 34.554316311978866], [-77.36982587197392, 34.55430045400836], [-77.36979446119932, 34.5542772320351], [-77.3690639630162, 34.553935994028066], [-77.36890608748757, 34.55372635880431], [-77.36873148660908, 34.55358125577789], [-77.36867147532112, 34.553534434574715], [-77.3685275642897, 34.55345664780812], [-77.3682831319489, 34.55334624255826], [-77.36811670973663, 34.55328481440131], [-77.36797349063158, 34.55320079997533], [-77.36770469797736, 34.5528720986251], [-77.36763977937817, 34.55275922096775], [-77.36762239932888, 34.552693352132145], [-77.36751418945465, 34.5526302506007], [-77.36698037458167, 34.55236455782426], [-77.36689006991875, 34.55228203934531], [-77.36654052932332, 34.55230582106387], [-77.36594976064387, 34.55236380336069], [-77.36524552226682, 34.55266931490295], [-77.36515751549078, 34.552670332696124], [-77.3650960656611, 34.55267424119611], [-77.36476338674618, 34.552736130647716], [-77.3644317251783, 34.55273166560346], [-77.3643812197273, 34.55273246929801], [-77.36437086687941, 34.55273141372458], [-77.36434734826526, 34.55272912050015], [-77.36381843107712, 34.552675614303105], [-77.36358738053809, 34.55265394788068], [-77.3628391314535, 34.552492154888654], [-77.36280595897452, 34.552486146169485], [-77.36279604110194, 34.552483807862195], [-77.36278143114966, 34.55247969422086], [-77.36233763522294, 34.552347952154385], [-77.36229911395289, 34.552304329490795], [-77.36225794074544, 34.552209420678125], [-77.36224744895269, 34.55218935759691], [-77.36225087362705, 34.552172227083084], [-77.36225766687511, 34.55206547359647], [-77.36229395879757, 34.551898235356944], [-77.36232402194892, 34.551744840148395], [-77.36242276049268, 34.55155204806407], [-77.36245331838785, 34.55131101229111], [-77.3625608392463, 34.55104251320154], [-77.3627385484708, 34.550596228677264], [-77.36274786159638, 34.55052592952489], [-77.36277005724345, 34.55047164753427], [-77.36285766835661, 34.5502227031867], [-77.36293376942982, 34.550009505596655], [-77.36286437076146, 34.54992932555937], [-77.36270231297276, 34.54965810900348], [-77.36266656707862, 34.549558337644655], [-77.36237784237454, 34.54942090125373], [-77.3622437298858, 34.549222139331825], [-77.36218387355237, 34.54913820412633], [-77.36217122346333, 34.54909450281309], [-77.36213409951672, 34.548672075691755], [-77.36216093942406, 34.54865185746231], [-77.36213147326588, 34.548641817240124], [-77.36211259450013, 34.54846560941944], [-77.36208535423314, 34.54819395187383], [-77.3620837920213, 34.54817331849943], [-77.36208395301125, 34.54815095017596], [-77.36212248430687, 34.548032896864676], [-77.36224428506783, 34.54773222387429], [-77.36255791502558, 34.54761538649006], [-77.36279373499576, 34.54750280649481], [-77.36292253803961, 34.547383254828304], [-77.36309444526123, 34.54715237626377], [-77.36315575368107, 34.54703963495568], [-77.36332602679528, 34.54690666572246], [-77.36342367169132, 34.5468158199533], [-77.36349057681187, 34.546746586344696], [-77.36352509651849, 34.546621535579874], [-77.36358988835795, 34.546487457441174], [-77.36361133641252, 34.546410393921605], [-77.36367739677078, 34.5462300284637], [-77.36373695275111, 34.54610421146744], [-77.36384682313505, 34.54613664807721], [-77.36387073859632, 34.546202181087395], [-77.36395890205935, 34.546293207717255], [-77.36403147307526, 34.54642385485895], [-77.36415478396555, 34.546627729428536], [-77.36417110524818, 34.546648568995955], [-77.36425186903212, 34.54672201109608], [-77.36438710117142, 34.5468622833393], [-77.36444269151635, 34.546892601015884], [-77.36450349739441, 34.54692113839286], [-77.36469921374311, 34.54693963946537], [-77.36489552736649, 34.54694612272402], [-77.36506907113963, 34.54690129454826], [-77.36529028708028, 34.54685148172728], [-77.36542961545183, 34.54679824706523], [-77.36568569725523, 34.546728284579274], [-77.36579056947369, 34.54666012510839], [-77.3657807549764, 34.54647235036213], [-77.36608931605754, 34.546245141335426], [-77.36618149040468, 34.54617058093811], [-77.36672711283015, 34.54603556160894], [-77.3668850074423, 34.545784674811145], [-77.3669473150254, 34.54554970251991], [-77.36767606057198, 34.54552733346988], [-77.36864643365303, 34.545382830945286], [-77.36925315182039, 34.545232192599], [-77.36994352329539, 34.54502038516101], [-77.37020135242332, 34.54494774289688], [-77.3708347267808, 34.54473942527759], [-77.37121161376177, 34.54489979747445], [-77.3714103664056, 34.54499816028546], [-77.37138803703822, 34.54522634037514], [-77.37130162296742, 34.54537648257561], [-77.37127812372994, 34.54566957603811], [-77.37127936569348, 34.54606293671298], [-77.37162080551974, 34.54630979761896], [-77.37235827915418, 34.5467980611053], [-77.37249647185838, 34.546262197052855], [-77.37255549893706, 34.546175108927784], [-77.37286568786143, 34.54582773447452], [-77.37302802511115, 34.54561735824109], [-77.37303126983832, 34.545528932527816], [-77.37317335357578, 34.54548317501519], [-77.37355257315072, 34.54530776048551], [-77.37357016591501, 34.54529737729738], [-77.373574844515, 34.54529663391577], [-77.37396320936209, 34.545277420855186], [-77.37429550184618, 34.54522816700339], [-77.37439912878985, 34.545200868843686], [-77.37445285947548, 34.54510904314392], [-77.37459018724712, 34.544902567112814], [-77.37462117844925, 34.5448121806484], [-77.37474945483254, 34.5444016911529], [-77.374747119988, 34.54439029209687], [-77.37475458414384, 34.54438037777247], [-77.37477016217443, 34.544318486842556], [-77.37480987275292, 34.54415892461098], [-77.37483764758557, 34.544132416013895], [-77.37494284793593, 34.54397525754752], [-77.37507537758154, 34.54385332311619], [-77.37524771326514, 34.543626851453155], [-77.37558555687029, 34.542986797873795], [-77.37569734614992, 34.54285217294947], [-77.37573067522982, 34.54277955797742], [-77.37579690646288, 34.54264306967173], [-77.37592072357977, 34.54246413480066], [-77.37620899911954, 34.54233108567557], [-77.37638760134686, 34.54224244763621], [-77.37647025813462, 34.54223473626297], [-77.37704481233843, 34.54218113288293], [-77.37717391370529, 34.54219119119535], [-77.37755649922889, 34.54202671611261], [-77.37742275872804, 34.54189499164473], [-77.37747365122749, 34.54172940191994], [-77.37780938812756, 34.541500602276166], [-77.3775219237354, 34.541337081228825], [-77.37721217190442, 34.54109703465062], [-77.37719920698963, 34.54107585822745], [-77.37709324466188, 34.54069597607258], [-77.37681804465785, 34.5406641888366], [-77.3767526326846, 34.54038533910505], [-77.37669249845393, 34.54019262772566], [-77.37684711146196, 34.5399166662565], [-77.37691346308648, 34.539671117268966], [-77.3771316955646, 34.53957634554132], [-77.37723434282277, 34.539526524271174], [-77.37755795903176, 34.5392869952355], [-77.37770881412128, 34.53926425914663], [-77.378022831184, 34.53937811119897], [-77.37835949128117, 34.5394626624403], [-77.37851877060919, 34.53961668272365], [-77.3788026882088, 34.539610473917826], [-77.37980116332614, 34.53961139785221], [-77.38037554704428, 34.53949513615892], [-77.38076548904951, 34.53935702838216], [-77.38116682121537, 34.53922329263418], [-77.38136281367204, 34.53915086980855], [-77.38170180925442, 34.53913798081129], [-77.38194922795158, 34.53934319188511], [-77.38202268099492, 34.53942417005522], [-77.3820676982029, 34.53949368925926], [-77.38219909651963, 34.53972713976044], [-77.38231111217266, 34.53987224103473], [-77.38271755064909, 34.54008602139655], [-77.38290501244997, 34.54015832862001], [-77.38311471218259, 34.5402460247104], [-77.38349513405068, 34.5404197386383], [-77.38364416334569, 34.54056435458195], [-77.38371552499852, 34.54064904737596], [-77.38391236277398, 34.54084413016544], [-77.38392651306728, 34.54089434942293], [-77.38395865957978, 34.54110364816354], [-77.38366193387476, 34.54151661114544], [-77.38357829775403, 34.54164816174539], [-77.3835368773111, 34.5416981901727], [-77.38346208123582, 34.541882081584234], [-77.38335512871167, 34.5421064671772], [-77.38329748071583, 34.542178318734884], [-77.38314765624563, 34.54250223420203], [-77.38298452842346, 34.54271310842471], [-77.38286369556964, 34.54286080626997], [-77.38264772524789, 34.543174006459246], [-77.38260426287225, 34.5432313064972], [-77.38256690121901, 34.54331145813603], [-77.3824718372887, 34.54376636027882], [-77.38236058112372, 34.544106132989114], [-77.38227746454501, 34.54428404869158], [-77.38207934299999, 34.544646317934486], [-77.38213749469875, 34.544793892518626], [-77.38251874223236, 34.54517638036655], [-77.38256398884158, 34.54522205862572], [-77.38258140815496, 34.545231885676884], [-77.38260074086244, 34.545251903968584], [-77.38279027791481, 34.54555659333268], [-77.3829945199484, 34.54564964049563], [-77.38317075491041, 34.545751368502586], [-77.38337263124127, 34.54583966826322], [-77.38368906463567, 34.54574549902222], [-77.38416285967975, 34.54561621230361], [-77.38464488382462, 34.54560092630117], [-77.38494972768603, 34.545541356133825], [-77.38521836474126, 34.54549584314833], [-77.38573597391768, 34.54549396262374], [-77.38601850781077, 34.5455265642811], [-77.38651910687976, 34.545584485665586], [-77.38694839896465, 34.545343780758245], [-77.38710085819247, 34.545057456341624], [-77.38720910511594, 34.54462503175689], [-77.38712576767361, 34.54443672384023], [-77.38733050779534, 34.54442176977753], [-77.3874337058933, 34.54445495874593], [-77.38765288656978, 34.54448817093892], [-77.38811333377892, 34.544525498213076], [-77.38876674869347, 34.54441127803574], [-77.38890193020954, 34.54437324237994], [-77.38898658417892, 34.544348240100035], [-77.38911511237865, 34.544277257212116], [-77.38946428710635, 34.54408387043598], [-77.38969709333847, 34.543929336116456], [-77.38995863029044, 34.54382759063708], [-77.39048917785492, 34.5436217621353], [-77.39067290985886, 34.54356287092418], [-77.39109048239429, 34.54338464139059], [-77.39081357104048, 34.5428612789175], [-77.39050594331756, 34.542877213832384], [-77.3901291059567, 34.54289673189127], [-77.39008316357388, 34.54289485807941], [-77.3897211449752, 34.54286165576118], [-77.38950564841872, 34.54288597829297], [-77.38942018930645, 34.54276425188638], [-77.3889428354475, 34.542558167873], [-77.38871987329036, 34.54251526166603], [-77.38816738498836, 34.54212810526889], [-77.38802490460691, 34.54207578147438], [-77.38796319450546, 34.54199508678012], [-77.38802296558924, 34.541893091919256], [-77.38807638115358, 34.54148909621923], [-77.38810321082543, 34.541435463487595], [-77.38801632028623, 34.54111653302232], [-77.38800635104545, 34.541009532439745], [-77.38798933811677, 34.54088344153392], [-77.38796380956883, 34.54067342307692], [-77.38789613051087, 34.54053576524296], [-77.38793044915406, 34.54021581045604], [-77.38787454461945, 34.54004921364867], [-77.38795373907305, 34.539872831108596], [-77.38798596535813, 34.539690896424595], [-77.38795775624183, 34.539547545772855], [-77.38818654261595, 34.53905612858257], [-77.38819598369844, 34.53902351772124], [-77.3882074392593, 34.53900290051509], [-77.38823951558295, 34.538928888396356], [-77.38842220271594, 34.538610686140856], [-77.38864223547743, 34.53847801455076], [-77.38865033432512, 34.53846831270567], [-77.38879308426526, 34.53829438940102], [-77.38904455353833, 34.5380447795373], [-77.38925215523102, 34.53789183119825], [-77.38956390493996, 34.537675926838695], [-77.3898421769726, 34.537489043480534], [-77.39020191448344, 34.53726515109631], [-77.39041804215927, 34.53709797944648], [-77.39051733565033, 34.536808113330345], [-77.39041683681901, 34.536744478288945], [-77.39039859435057, 34.53641515566914], [-77.39020564731048, 34.53600141021428], [-77.3906653035575, 34.53580030400699], [-77.39104339421405, 34.535926818608274], [-77.39145146124604, 34.53575250960558], [-77.3916483680141, 34.535709678158966], [-77.39223642713038, 34.535757625215695], [-77.39248887900965, 34.535797839195], [-77.39295145061902, 34.535846671653175], [-77.39301943222179, 34.53584990825333], [-77.39317960783288, 34.535757587570515], [-77.39352770691218, 34.53563023873957], [-77.39349271350275, 34.53552044456099], [-77.39342836752802, 34.53533063350763], [-77.39330094132805, 34.53518279558636], [-77.39335564331309, 34.53504993980113], [-77.39333786793125, 34.5348540241192], [-77.39333874015014, 34.534671271509986], [-77.39329504682243, 34.53461536868327], [-77.39317586782575, 34.534465889140705], [-77.39343405626622, 34.53435047536503], [-77.39328987345657, 34.53422538668892], [-77.3930790047622, 34.5339120397587], [-77.39332725452786, 34.533546231450174], [-77.39348997080097, 34.533363068261814], [-77.39433418875787, 34.53304259102311], [-77.39465583686813, 34.53290214121267], [-77.39530415249762, 34.53252097265272], [-77.39545071842777, 34.532464577319004], [-77.3956759534437, 34.532418106241416], [-77.39623984479303, 34.53228294277086], [-77.39653445021743, 34.532125935534225], [-77.39701296987609, 34.53187531188216], [-77.39702711736005, 34.531868861912606], [-77.39703436229048, 34.53186093882334], [-77.39751012675535, 34.531607090099634], [-77.39782871346647, 34.531445977860656], [-77.3982951847747, 34.53139992121562], [-77.39861201950029, 34.53152317058044], [-77.39877068902203, 34.531621606576394], [-77.3990158047051, 34.53181988435938], [-77.39901825367487, 34.53183070799026], [-77.39908605914424, 34.53187671362376], [-77.39931109444936, 34.532033272859294], [-77.39938521685397, 34.532051361207905], [-77.39942661983316, 34.53204229540318], [-77.39977932359893, 34.5319806076974], [-77.39981631352791, 34.531960343950274], [-77.39999642883407, 34.531822720345545], [-77.40006490857164, 34.53150809114437], [-77.40003887704894, 34.53143854310734], [-77.3999866734251, 34.531321362991186], [-77.39993821422932, 34.5311211430083], [-77.3998161988012, 34.530981014781645], [-77.39993893919063, 34.53080153935083], [-77.40062625283846, 34.53037440245828], [-77.40082182639863, 34.530237572853494], [-77.40087782032316, 34.52984841362834], [-77.40100908439535, 34.52965004404578], [-77.4011512246527, 34.52940450294488], [-77.40128946908176, 34.52929931142775], [-77.40157603393999, 34.52891456364311], [-77.40171103289714, 34.528748776329884], [-77.4015721593832, 34.52861593917388], [-77.40182173949083, 34.52841564513084], [-77.40195601346761, 34.52822373337884], [-77.4018269993207, 34.52818071351402], [-77.40133223017916, 34.52813340646752], [-77.40104282745288, 34.528143527948345], [-77.4008209595847, 34.528250702184984], [-77.40025316180423, 34.528351528735776], [-77.3999438778103, 34.5285142202973], [-77.39963564883803, 34.528667614586], [-77.39945969141247, 34.52872906402859], [-77.39916973269894, 34.528805768475536], [-77.39828785864927, 34.52900551879601], [-77.3978793683979, 34.529188165257224], [-77.3971117432925, 34.529398902436526], [-77.3970776416104, 34.52941030983357], [-77.39629696053976, 34.52973927242785], [-77.39610299374732, 34.529929639803754], [-77.39594025431128, 34.530071450434036], [-77.39549625567109, 34.530437400589506], [-77.3953332141493, 34.53054858794796], [-77.39470524926271, 34.530703367638374], [-77.39405909087267, 34.53083260002989], [-77.39392784522596, 34.530858473163704], [-77.39391668624755, 34.53086041346114], [-77.39390234588225, 34.530864112558795], [-77.39324174676659, 34.531021476770725], [-77.39312720009684, 34.53105835312175], [-77.3929840980163, 34.531076726168365], [-77.3927619005495, 34.53101978592057], [-77.39273570669681, 34.53101280050305], [-77.39252709460911, 34.53093997685658], [-77.39234591266046, 34.53089173886534], [-77.39197509589188, 34.530875177911064], [-77.3919359495427, 34.53088312721253], [-77.39155463959803, 34.53116884413754], [-77.3915030438205, 34.531201425894075], [-77.39113913705486, 34.5314889244116], [-77.39106054519638, 34.5315678577545], [-77.39081101724508, 34.53179093951835], [-77.39075377827831, 34.53187147156876], [-77.3904657874507, 34.53201831725519], [-77.39011342236158, 34.53198340660706], [-77.38996743616819, 34.53192903122667], [-77.3899115008494, 34.53195523690077], [-77.38917226398362, 34.53237830289635], [-77.3889786489152, 34.532424849728294], [-77.38893251033407, 34.532551616599946], [-77.38891384250952, 34.53271082188598], [-77.38880301988614, 34.532836088601584], [-77.38876870286263, 34.53286784140243], [-77.38863951469176, 34.53300489857246], [-77.3883767666279, 34.53311757241116], [-77.38837052139385, 34.53311858286693], [-77.38827981445084, 34.533078295946126], [-77.38817137698167, 34.53303168409846], [-77.38816079903654, 34.53302041668613], [-77.38806835427951, 34.53292111049781], [-77.38805940747066, 34.532875045362616], [-77.38773235332502, 34.53272474631148], [-77.38770490585347, 34.532660647609696], [-77.38725179328529, 34.532578343385126], [-77.38681252758333, 34.53258136052992], [-77.38640698834587, 34.532677844084425], [-77.38633999679298, 34.532435919877955], [-77.38524833907307, 34.53231923845154], [-77.38429843566907, 34.53234319274497], [-77.38367613406643, 34.532412124555144], [-77.38298125804451, 34.532374949484264], [-77.3828917619519, 34.53238196117528], [-77.38260181980314, 34.53230343676579], [-77.38211147658863, 34.532171159777775], [-77.38199846917404, 34.53215347056618], [-77.38181484193095, 34.532109214359586], [-77.38132936925908, 34.53204101718582], [-77.38085320096624, 34.53205502128977], [-77.38054335443502, 34.5320835427065], [-77.38007491452709, 34.532067697094746], [-77.37918257073538, 34.53235437300438], [-77.37896919753712, 34.53226230663263], [-77.3788386442177, 34.53204868821463], [-77.37886491851228, 34.531629229787924], [-77.37885525455935, 34.531556633043614], [-77.37863066867754, 34.5308409324352], [-77.37865310639194, 34.530606457302625], [-77.37860797100237, 34.53036077674675], [-77.37886901633493, 34.5296947873078], [-77.37893859041654, 34.52958597843431], [-77.37898000438004, 34.529548387816725], [-77.3790328770127, 34.52945219979861], [-77.37940535559633, 34.529288656066925], [-77.37994925824641, 34.529026511850745], [-77.38061167635028, 34.52906607408948], [-77.38130518599674, 34.528815693501855], [-77.38155269381642, 34.528813115793845], [-77.38218619682672, 34.5288683649443], [-77.38254312689357, 34.528798205255185], [-77.38258047332405, 34.52879029784521], [-77.38284591084039, 34.528532892192395], [-77.38286075034279, 34.52845603030988], [-77.38298915280919, 34.528075297113844], [-77.38301665936004, 34.528018605211116], [-77.38309528619493, 34.52757677321329], [-77.38308792983118, 34.52751866406781], [-77.38313257409693, 34.52743183997491], [-77.38323476119507, 34.527007823417215], [-77.38351221130398, 34.5267862339115], [-77.3838101507254, 34.52648342484708], [-77.38420402196554, 34.52612940446221], [-77.38464258488604, 34.525825451755836], [-77.3849847213497, 34.525515810309145], [-77.38540657584296, 34.52531328611], [-77.38588391139022, 34.524959855308005], [-77.38687255702102, 34.524599385632634], [-77.38699267330041, 34.52459875752513], [-77.38720061935689, 34.52460697334664], [-77.387774563098, 34.52473568401938], [-77.38798986667258, 34.52471888199838], [-77.38855930806619, 34.52474608735502], [-77.39013525846678, 34.52405967473466], [-77.3901448196335, 34.52405575190291], [-77.39015708860329, 34.52405830529938], [-77.39016234759085, 34.52404985718058], [-77.39172786445417, 34.523473770522344], [-77.3921261086973, 34.52302935679489], [-77.39251207921083, 34.5227314705819], [-77.39283698375206, 34.522381802699115], [-77.39332829735866, 34.522117707584215], [-77.39387314993446, 34.52219409506709], [-77.39433444371852, 34.522116788250074], [-77.3949075849726, 34.52170016703666], [-77.39559250451953, 34.52130757374172], [-77.3961447902239, 34.52101065925052], [-77.3965019003428, 34.52061264376364], [-77.39783227599762, 34.52000494146373], [-77.39801656643012, 34.519934406207625], [-77.39808736108697, 34.519917870448054], [-77.39818865481546, 34.51989068691327], [-77.3982118676584, 34.51995014684202], [-77.39916303506638, 34.5201183252239], [-77.39945235836977, 34.52026074220496], [-77.39934549679084, 34.52058064658154], [-77.39939701512134, 34.52075840429724], [-77.39931556324059, 34.520968603571006], [-77.39936715506133, 34.5215844163178], [-77.39928980479476, 34.52175322528494], [-77.39961334095342, 34.521875075963344], [-77.399770221372, 34.52178041449257], [-77.4011575289258, 34.521504793179844], [-77.40119183773734, 34.52149093690393], [-77.40122108822436, 34.52149267915883], [-77.4012976474642, 34.52146335332058], [-77.40252044644161, 34.5211312618844], [-77.40277462436046, 34.52091440512835], [-77.40322347994497, 34.52047988641131], [-77.40401876608581, 34.52009109702612], [-77.40401777281029, 34.519872885802044], [-77.4043713957048, 34.519711457013486], [-77.40503813083768, 34.51937580118724], [-77.40595307687326, 34.519181791897864], [-77.40681466879963, 34.519150248131936], [-77.40752730677839, 34.518984928197305], [-77.40822306662074, 34.51904895636079], [-77.40838925870776, 34.51901875392286], [-77.40910422173744, 34.518667284244216], [-77.40972831699024, 34.51828711764658], [-77.4102820929335, 34.51795265702417], [-77.41069402695055, 34.517770665094595], [-77.41131855074502, 34.517463385993004], [-77.4114887564977, 34.51732953005811], [-77.41177120362295, 34.51732615151503], [-77.41227292117705, 34.51736243206041], [-77.41267498937974, 34.517129667831725], [-77.41306921198395, 34.516825101448134], [-77.41351169972702, 34.51654328287556], [-77.41385723426541, 34.51574527237365], [-77.41385936342517, 34.515731574223594], [-77.41386772160594, 34.51572321272672], [-77.41387932563532, 34.51571702835944], [-77.41390984648453, 34.51570539938137], [-77.41530854205789, 34.515430510029674], [-77.41545545042422, 34.5154307984788], [-77.4165905958721, 34.515336898174816], [-77.41690724444715, 34.51536563664112], [-77.41702682426245, 34.51535789258392], [-77.41709198440213, 34.51530435173528], [-77.41805582024412, 34.51546108950972], [-77.41859482434815, 34.51543679906875], [-77.41891316046762, 34.51549091356296], [-77.41921625662161, 34.51554754490562], [-77.41937538898756, 34.5156311296485], [-77.41974591607061, 34.515860232927324], [-77.4198378975156, 34.51604237207283], [-77.4201453074161, 34.516305704999226], [-77.42043923024211, 34.516552592653085], [-77.42043446026713, 34.51674007705833], [-77.420527694156, 34.51697442007048], [-77.4206271635343, 34.51737615955168], [-77.42061780727032, 34.5176929448068], [-77.42081119587438, 34.51810532597314], [-77.4208284942564, 34.518189572954235], [-77.42084472299948, 34.51863951526005], [-77.42087123109995, 34.51912319360605], [-77.4208708320567, 34.51912741693916], [-77.42051930860332, 34.51966592371796], [-77.42006068397933, 34.52012193019938], [-77.41949863513406, 34.520446669099705], [-77.41847349085303, 34.52090388743492], [-77.41837472608412, 34.52095525909888], [-77.41738480218531, 34.52140545006898], [-77.41688747124877, 34.5216316181641], [-77.41680411385218, 34.52167192287214], [-77.41633853730508, 34.521890013486036], [-77.41622433532451, 34.522000546508394], [-77.4161454880045, 34.52204445885436], [-77.41609093664005, 34.52215362149499], [-77.41604320860804, 34.52224302569514], [-77.41602989538777, 34.522273485006046], [-77.41608570393863, 34.522389108177364], [-77.4164582341621, 34.52246777944], [-77.41648863259091, 34.52245953688674], [-77.41687281545141, 34.52229144833155], [-77.4170345096169, 34.52222830847104], [-77.41729957253672, 34.52209000461944], [-77.41804208160063, 34.521724932433266], [-77.4184706759601, 34.52103072528133], [-77.4191179349053, 34.5214180491491], [-77.42003938336649, 34.521082535084545], [-77.42047815424485, 34.52092276586079], [-77.42106143394518, 34.52091105847635], [-77.42160189553917, 34.52141398354005], [-77.42163715335067, 34.521440721080396], [-77.42164712326259, 34.52146164552962], [-77.42169842915209, 34.521515860293434], [-77.42219346516649, 34.52198509389751], [-77.42247180599115, 34.52232180423027], [-77.42271305973118, 34.522557299321846], [-77.42313614424455, 34.52302271754205], [-77.42323847719328, 34.5231250955985], [-77.42327877416439, 34.523184524577175], [-77.42334241877823, 34.52330794608322], [-77.42358946681509, 34.5236292964109], [-77.42364946767994, 34.52377962263367], [-77.42399105114941, 34.52406092607261], [-77.42370088617638, 34.52447524201129], [-77.42370054682587, 34.524592612430425], [-77.42360354310291, 34.52478046823223], [-77.42353633276764, 34.5251060386167], [-77.42339513164406, 34.52531973561994], [-77.42326987489722, 34.52551638481819], [-77.42320147884558, 34.52564413247576], [-77.42307135705217, 34.525949522576866], [-77.42300049072841, 34.526121033704115], [-77.42297386381695, 34.52616672239789], [-77.42226123596102, 34.52675485879996], [-77.42225951874474, 34.52675967003919], [-77.42225346436858, 34.52676975045969], [-77.42190238989156, 34.5273009776202], [-77.42180968122551, 34.527528502981895], [-77.42179559968933, 34.52759977521184], [-77.42176344049771, 34.52781074797212], [-77.42172338317506, 34.528137517312906], [-77.42171887772446, 34.52830687508492], [-77.42171439737984, 34.528475289758106], [-77.4216591332017, 34.52880519654904], [-77.4214275876401, 34.52928184318607], [-77.42139555100863, 34.52931343302962], [-77.42133464115538, 34.52934178432592], [-77.42135505294536, 34.5293826869104], [-77.42108169992467, 34.530357713428565], [-77.4210395021567, 34.5305878483838], [-77.42096278653818, 34.53086458691544], [-77.4213851466957, 34.531197615364384], [-77.42147841615606, 34.53122123893828], [-77.42164058114568, 34.53125630575584], [-77.42294646029217, 34.53159203980294], [-77.4235171115874, 34.53160824050404], [-77.4252891312218, 34.53120550946525], [-77.42546443019107, 34.53070354697758], [-77.42581509435453, 34.53046802052509], [-77.42600676111645, 34.530135453880725], [-77.42603865219485, 34.530080119383], [-77.42612681590134, 34.52977015979536], [-77.42621710871678, 34.52967030211951], [-77.42621203935391, 34.52961608678303], [-77.42618047852679, 34.52958966276854], [-77.42613109280559, 34.529576609861465], [-77.4255685733613, 34.529087386514064], [-77.4253589718364, 34.528993804933705], [-77.42517838287353, 34.52878615171484], [-77.4250762587134, 34.528619393899305], [-77.42503384723085, 34.52856220390114], [-77.42503666209019, 34.52852448503522], [-77.42504289471205, 34.52831605143416], [-77.4250414799616, 34.52810595614042], [-77.42510640780758, 34.52781717972863], [-77.42509443330152, 34.52751464609548], [-77.4250907430976, 34.52732975827316], [-77.42503841494347, 34.52711139329571], [-77.42499772726623, 34.52685351668559], [-77.4250102110616, 34.52661243084644], [-77.42499114002914, 34.526364782504785], [-77.42503586431914, 34.52611707989346], [-77.42506990132684, 34.52586370639712], [-77.42511820680052, 34.52556452566232], [-77.42515363830658, 34.52536191371961], [-77.42517816856015, 34.525193160881635], [-77.425200907794, 34.52501881792456], [-77.42522130393907, 34.52486244298571], [-77.42523385388196, 34.52472368501928], [-77.4252538734217, 34.524495646534085], [-77.4252619995347, 34.52436687137425], [-77.42526971749254, 34.52424457615065], [-77.42529940622161, 34.52387177311148], [-77.42532904817496, 34.52347261460907], [-77.4253351543704, 34.523376918745925], [-77.42534283079772, 34.523287033514166], [-77.42538771425383, 34.52287962931175], [-77.42543319578897, 34.52242762195865], [-77.42543371916014, 34.52238329213039], [-77.42543191797947, 34.52233725431312], [-77.42541466333077, 34.521896356697], [-77.42540569767081, 34.52148241335782], [-77.425402751968, 34.5214083929896], [-77.42541691366331, 34.521336888460546], [-77.42560893903854, 34.520888891132635], [-77.42623645588085, 34.51988664077667], [-77.42625597926649, 34.51981596162624], [-77.42628842983176, 34.519774288626536], [-77.42634979902601, 34.51967959072477], [-77.4270092788418, 34.518727657828244], [-77.42727185644685, 34.518266085099704], [-77.4274490999186, 34.518001354724625], [-77.4276861358888, 34.51765040441881], [-77.42775693389528, 34.5175087618883], [-77.42797398863203, 34.517217382416206], [-77.42838648819357, 34.51682165227532], [-77.42851180660236, 34.516229678534046], [-77.42840576537247, 34.51558757827492], [-77.42802866092914, 34.514741412288785], [-77.42801098033686, 34.514677207456856], [-77.42800737674584, 34.5146658128265], [-77.42800197707751, 34.514648667439964], [-77.42783404196939, 34.513845271941385], [-77.42779592690039, 34.51371701024558], [-77.4278322229337, 34.51288058073053], [-77.42768857570397, 34.512753154591245], [-77.4275400284397, 34.51243802848023], [-77.42808777764418, 34.51206423120083], [-77.42887756328332, 34.51208809540948], [-77.42966453102623, 34.51174352902807], [-77.43010238144883, 34.51169723457653], [-77.43123832064346, 34.51155664945698], [-77.43190064250473, 34.511164574589756], [-77.43225907823026, 34.51075927514746], [-77.43284084282081, 34.510064889038006], [-77.43342549028299, 34.50934005772365], [-77.43455823598163, 34.508821339021395], [-77.43473237147286, 34.50798911470815], [-77.43557145744309, 34.50727547732752], [-77.43563052496798, 34.50724049103197], [-77.43563308512337, 34.50723859004864], [-77.4356361970565, 34.50723515561517], [-77.43616755525997, 34.50690420274619], [-77.43620322058933, 34.506845781432794], [-77.4364038878636, 34.50684081007269], [-77.43691709402717, 34.50699392421357], [-77.43808798390378, 34.50736572984451], [-77.4382800616534, 34.5074267223011], [-77.43838843465157, 34.507449724144095], [-77.43870013481714, 34.50754077642346], [-77.44134293467145, 34.508404346664776], [-77.44194518603611, 34.508644040442476], [-77.44626284993589, 34.50883898598559], [-77.44653548472263, 34.50769160517142], [-77.44911106047475, 34.508032912303094], [-77.44938509562202, 34.507979555196414], [-77.44936159288861, 34.50790205773591], [-77.44741069661337, 34.506489321981874], [-77.4478429577446, 34.50556381949519], [-77.44604650473477, 34.50590263675083], [-77.44519505182731, 34.50538111853489], [-77.44525087488898, 34.50502838449117], [-77.44493032539401, 34.5047365402337], [-77.44493985262926, 34.50463170904722], [-77.44518801346823, 34.504349659147366], [-77.44545254943255, 34.50372947202205], [-77.44557926306537, 34.50375421325753], [-77.44605649016083, 34.503718330564524], [-77.44553548004185, 34.50363763176919], [-77.44624851860414, 34.50289122113076], [-77.44648050824449, 34.50256302142962], [-77.446674077338, 34.50250391042464], [-77.44720678398646, 34.50242581936327], [-77.44769748406357, 34.50240707287055], [-77.44777814381456, 34.502383320844395], [-77.44844078474941, 34.50212013755195], [-77.4500553258584, 34.50257072723355], [-77.44822206018753, 34.50266194080571], [-77.44837558282137, 34.503160810597855], [-77.44852381690197, 34.50364248721281], [-77.45019322352628, 34.50361961346343], [-77.45056149958349, 34.502711990818085], [-77.45056380032155, 34.50259659121647], [-77.45058697793318, 34.50143464216527], [-77.45067564903812, 34.50125123037516], [-77.4519372200788, 34.50029373309506], [-77.45238844636793, 34.49998728602445], [-77.45243958749947, 34.4999584559185], [-77.45248814537631, 34.499906867564675], [-77.45326978195666, 34.499173666214666], [-77.45343610327068, 34.498689508174934], [-77.45348870320197, 34.498640668774584], [-77.45473369424847, 34.498696752963994], [-77.45483417622592, 34.49863615956419], [-77.455305343777, 34.49853419190529], [-77.45542466492952, 34.49879058191125], [-77.4562940070519, 34.499049891222796], [-77.45652739379142, 34.49884661820797], [-77.45642232009487, 34.49832899241862], [-77.45643656130358, 34.4979431944729], [-77.45651892423905, 34.4974951465569], [-77.45669892751248, 34.49727527683351], [-77.4570777372539, 34.49699090796387], [-77.45806124137104, 34.4967489949465], [-77.45830307118979, 34.49654710899246], [-77.45863310904228, 34.49679556984417], [-77.45897920781907, 34.49719492335899], [-77.45879637130788, 34.49761084632432], [-77.45957412020341, 34.49786971173102], [-77.46006847925433, 34.49807832152892], [-77.46086008595265, 34.49771565305422], [-77.46177370510358, 34.49736430917699], [-77.46180615287713, 34.49708817786244], [-77.4624260837529, 34.496850432958865], [-77.4632425159736, 34.49716109278437], [-77.46342087021793, 34.49742556941991], [-77.46335320151857, 34.4978422203549], [-77.46436836635215, 34.49849631959544], [-77.46435501450085, 34.498618113373375], [-77.46452976276414, 34.49925296172418], [-77.46499530542864, 34.499734576084464], [-77.46509014893007, 34.499956907494095], [-77.46508344487599, 34.50015993372394], [-77.4654195199457, 34.50064913027132], [-77.46535274068361, 34.50111366584612], [-77.46543373298428, 34.501325362849634], [-77.46533192839522, 34.50146864282104], [-77.46527504102357, 34.501937200769454], [-77.46529947341124, 34.50199406380795], [-77.46527337760728, 34.502034217900984], [-77.46522897035553, 34.5021741889618], [-77.46521950374212, 34.502327762279165], [-77.46521586774972, 34.502600297431854], [-77.46520747523303, 34.50266490696766], [-77.46518346614099, 34.50276798248096], [-77.46589654568123, 34.503375369352355], [-77.46538596198067, 34.50387092440456], [-77.46455908883559, 34.50464880906051], [-77.46455482287448, 34.50465529825093], [-77.46455096369424, 34.50465813232588], [-77.46453247208397, 34.50467400001323], [-77.46409579472481, 34.505620388356824], [-77.46391849855294, 34.50597706276294], [-77.46369731020148, 34.50642204126482], [-77.46364726990025, 34.50659059025393], [-77.4636692263418, 34.50669089788374], [-77.4636043354771, 34.50731214491679], [-77.46354727266939, 34.50773005412989], [-77.4633408124181, 34.5084283367049], [-77.46346077050765, 34.50865588038769], [-77.46327287593556, 34.50878482596282], [-77.4631032538825, 34.50917410493023], [-77.46292882990963, 34.50980577364397], [-77.46285744172341, 34.509976291475354], [-77.4627943784038, 34.51027967617464], [-77.46269525175515, 34.51064357286116], [-77.46265612317869, 34.51086136975384], [-77.4624787643102, 34.51130809303049], [-77.46249927457114, 34.51197323742779], [-77.46250007725033, 34.51199928040558], [-77.46310236504077, 34.512690761658774], [-77.46311056998519, 34.51324617015939], [-77.46437017433547, 34.51380521492623], [-77.46597077314465, 34.513659025112496], [-77.46692120955191, 34.51328288234234], [-77.46781417257627, 34.512929752602055], [-77.46870498750044, 34.51261069913831], [-77.46932554970182, 34.51222450586261], [-77.47044101305065, 34.51107763743266], [-77.47072926677856, 34.510375474456524], [-77.47125682110041, 34.509097860761436], [-77.47127568068785, 34.50905218155322], [-77.47131009722455, 34.50896191169823], [-77.47177264803564, 34.50772632943342], [-77.47194634383874, 34.50705671151082], [-77.47288031005621, 34.50552654688221], [-77.4731878855635, 34.50528364038635], [-77.47371862485868, 34.505122918813896], [-77.47553664978896, 34.504048190341145], [-77.47771413384915, 34.50350384264381], [-77.47812539161242, 34.50264409579956], [-77.47808291989247, 34.50229040554529], [-77.47800261911436, 34.50128688284465], [-77.47794399348379, 34.50046531241176], [-77.47787823274638, 34.49992956734126], [-77.47880352022989, 34.49878179397378], [-77.47892002596417, 34.49863132957554], [-77.47888111725311, 34.49854449046081], [-77.47928835211442, 34.49729894616171], [-77.47863789741095, 34.49605048359508], [-77.48066623206402, 34.49460753051757], [-77.47993270360493, 34.4919275858403], [-77.47955178388486, 34.49053573881685], [-77.47770385457736, 34.49084525887068], [-77.4760939119677, 34.49080230184988], [-77.47625583692566, 34.49014207769562], [-77.4772352789623, 34.48908895226339], [-77.47811234330129, 34.488667756410315], [-77.47890443026951, 34.488170308265424], [-77.47880791264647, 34.48781762142382], [-77.47862045940037, 34.48713262563939], [-77.47843300955776, 34.486447629365024], [-77.47837346681112, 34.486230038735165], [-77.47831396378731, 34.48638981657039], [-77.47828637622813, 34.48644020273856], [-77.47784327296239, 34.48675293693588], [-77.47783969257607, 34.48675346300707], [-77.47724218637096, 34.48701677909769], [-77.47714561287451, 34.48701036069068], [-77.4771123881353, 34.48705624306311], [-77.47600059264732, 34.48740042843784], [-77.47513492124479, 34.487221813757515], [-77.47409578401505, 34.487578900461806], [-77.47343016594637, 34.48784895653343], [-77.47301831109127, 34.4885697721778], [-77.47261743796344, 34.48885498364719], [-77.47235131467126, 34.48962667150211], [-77.47193792870267, 34.49042100169075], [-77.472580559951, 34.49155514397336], [-77.472759535124, 34.492545158592506], [-77.47321994314167, 34.49341956279736], [-77.47339448053418, 34.49429842124725], [-77.47364797609995, 34.49521266476879], [-77.47426005185233, 34.49630059019646], [-77.47389897740699, 34.497026010011226], [-77.47336721265562, 34.49746244594485], [-77.47308127541972, 34.49707479715484], [-77.47301214704943, 34.49698107555282], [-77.47289893518104, 34.49682758611286], [-77.47237177001867, 34.49587968703425], [-77.47031470481204, 34.49549332870956], [-77.47026655802215, 34.49541402998899], [-77.47011834691206, 34.4954323561945], [-77.4700738535729, 34.495455609194245], [-77.47006400080868, 34.49548061897903], [-77.46991861480171, 34.49559587231555], [-77.46917740778673, 34.49611117082952], [-77.46910197849982, 34.4961715952811], [-77.46901282714256, 34.496313927322305], [-77.46867795558657, 34.49676135128], [-77.4686136551333, 34.49712242748946], [-77.46846769305331, 34.49742619735886], [-77.46877933434811, 34.49775716654068], [-77.46928309802549, 34.49814305036941], [-77.47119380039648, 34.499363169442915], [-77.47205864192082, 34.49917518297202], [-77.4724609280403, 34.49965515846617], [-77.47200493596026, 34.49995734525264], [-77.47230759478732, 34.500998401731835], [-77.47173480003053, 34.50134037747523], [-77.47059214730453, 34.5016472254369], [-77.47032519817066, 34.50224893353221], [-77.4699015006126, 34.50249983279492], [-77.46945255090542, 34.50284378023423], [-77.46922879104599, 34.502868862116564], [-77.46835905236277, 34.502938775224756], [-77.46797417776122, 34.502875599049545], [-77.46797592001622, 34.502805333106], [-77.46795370660602, 34.502741926103184], [-77.46854024682023, 34.50215843593814], [-77.46741498455975, 34.501601921702516], [-77.46729897942693, 34.50141998155861], [-77.4671604263585, 34.50116866453048], [-77.4670109269021, 34.50072986112946], [-77.46661762167304, 34.50045270978409], [-77.46663452546184, 34.50031925237527], [-77.46652562858675, 34.500029735577186], [-77.46648294677556, 34.49974014731623], [-77.46643097877029, 34.49962638872401], [-77.46667224789049, 34.49936166116352], [-77.46656733450654, 34.49891311026327], [-77.46662495523323, 34.49853258239704], [-77.46672100581226, 34.498013114787], [-77.46672477818633, 34.49779577922109], [-77.4667416562337, 34.49740125092018], [-77.46674872929236, 34.497339010481284], [-77.46676251838903, 34.497245239344245], [-77.46677906541308, 34.49682541295482], [-77.4668458197599, 34.49666842367377], [-77.46695604486754, 34.49631736047648], [-77.46728082482045, 34.49540850289347], [-77.46730348289019, 34.49534061962277], [-77.46720909559733, 34.49525225604534], [-77.46637027145633, 34.49431846983562], [-77.46521684634632, 34.49388372346802], [-77.46490534792994, 34.49351813929244], [-77.46419622288548, 34.49347484939768], [-77.46387588954988, 34.493633253162365], [-77.46338628808552, 34.493790817825115], [-77.46174618865246, 34.49436434500187], [-77.46076031491388, 34.49411828516017], [-77.46026682417059, 34.493879027180895], [-77.45953638333788, 34.493901376132825], [-77.45888010584483, 34.493732454681094], [-77.4583490319336, 34.49381239390521], [-77.45760049793327, 34.49397760057716], [-77.45743410440275, 34.49406817052291], [-77.45726852929641, 34.49415564758423], [-77.45640534309614, 34.49453165898034], [-77.45614995551568, 34.494632400315], [-77.45582251023157, 34.49475768547179], [-77.45520907991428, 34.49508171209659], [-77.45494420342695, 34.49523471374921], [-77.45468469434687, 34.49537537490306], [-77.45414690170074, 34.49600786947796], [-77.45413604515493, 34.49602300798753], [-77.45412939298502, 34.49602695952985], [-77.45412220892352, 34.496031961161755], [-77.45200979773763, 34.49726594556368], [-77.4519066132321, 34.49732327165061], [-77.45180822378728, 34.49741966433489], [-77.45023959398088, 34.498526960158316], [-77.45003837965263, 34.49879183981196], [-77.44956444062252, 34.49906444499296], [-77.44909889290952, 34.49952351826181], [-77.44852911042993, 34.49979099505957], [-77.4479489598859, 34.50015294790957], [-77.44770715333777, 34.50042470531843], [-77.44729310011785, 34.50060869497243], [-77.44685162757835, 34.500807937107275], [-77.44624124725851, 34.5010256352253], [-77.44607637704969, 34.50108435202499], [-77.44511062405178, 34.50115016281701], [-77.44477979620186, 34.50126783351108], [-77.44338392443507, 34.502231232639325], [-77.44312775928894, 34.50256302783518], [-77.44321317945301, 34.503573597232105], [-77.44312968051491, 34.503752158221225], [-77.44311676675837, 34.50490087215344], [-77.44311494288769, 34.50491965532346], [-77.44311529954467, 34.50493336006652], [-77.443109198945, 34.50501088482548], [-77.44233201259408, 34.50574094772472], [-77.4414945372184, 34.505748077247446], [-77.44060724814005, 34.505712111874935], [-77.44011022683492, 34.50544216287599], [-77.43968372984001, 34.50512808758392], [-77.43828607108682, 34.50496312860632], [-77.43769896159051, 34.50492622932801], [-77.43735830951675, 34.505106394525285], [-77.43675165960623, 34.50527103588665], [-77.43658538345147, 34.50532489677003], [-77.43646453770559, 34.50533745019125], [-77.43604129717669, 34.505464538520044], [-77.43521718309772, 34.505701371104784], [-77.4348966913838, 34.50569247487284], [-77.43489836866857, 34.50585209969556], [-77.43404342756585, 34.50633474765832], [-77.43373382750124, 34.506315589790155], [-77.43380567724304, 34.50647192300674], [-77.43316365804895, 34.506967113689285], [-77.43297764300989, 34.50710523479432], [-77.43294878693588, 34.50712232654033], [-77.43290461194493, 34.50716975529747], [-77.43235154475168, 34.50752206466979], [-77.43131260156119, 34.5081871147475], [-77.43108627014146, 34.508203218227735], [-77.42973224797427, 34.50867435821871], [-77.42891014325664, 34.50913168467429], [-77.42814744055892, 34.50936238148758], [-77.42779723536269, 34.50958384221669], [-77.4268347090626, 34.509772548677326], [-77.42656902905081, 34.50975977464185], [-77.42621312439069, 34.50980696366213], [-77.4260426121686, 34.51005303371147], [-77.42605316833126, 34.51036503048908], [-77.42535490249637, 34.511375978432966], [-77.42528735762713, 34.51212099997406], [-77.4252110345559, 34.512299133708076], [-77.42528123449662, 34.51288231792664], [-77.4254363648022, 34.51307883064911], [-77.4258685104565, 34.51340317633301], [-77.42610493002033, 34.51372667626127], [-77.42628901577632, 34.51393491948865], [-77.42634974168817, 34.514004426393406], [-77.42646894351913, 34.51428837548347], [-77.42651619708144, 34.5143917582869], [-77.42663147990348, 34.51475690698478], [-77.42666397192708, 34.51486007782249], [-77.42671306575605, 34.515015313538825], [-77.42677095441897, 34.5156172356095], [-77.42685915662469, 34.51581123255009], [-77.42700063902265, 34.51592615277097], [-77.42707317480841, 34.51618339716938], [-77.42706764533058, 34.51627077427311], [-77.42703748186452, 34.51638125495647], [-77.42692811799809, 34.51660943302207], [-77.42675417990338, 34.51680579049752], [-77.42664040757175, 34.51696613924323], [-77.42652197040924, 34.5173290569456], [-77.42639677582014, 34.5175538874833], [-77.42627103605933, 34.517779695354115], [-77.42622541247684, 34.51786162693135], [-77.42612516309417, 34.518038891406206], [-77.42605161597466, 34.518169593242625], [-77.42589825175534, 34.51839862001436], [-77.4258073074116, 34.5185473951881], [-77.42485450996516, 34.519002066819176], [-77.42479697024855, 34.518911200180135], [-77.424033240578, 34.51817857871049], [-77.42377621402338, 34.51788732655303], [-77.4232510417476, 34.51783233734376], [-77.4225364790992, 34.517950796214], [-77.42244334516528, 34.517931596602864], [-77.42242823995154, 34.51792092691469], [-77.42200937931483, 34.51777751895114], [-77.42198520226876, 34.517682852477165], [-77.42190135914332, 34.51750740642943], [-77.42188999691987, 34.5173849965662], [-77.42182418131861, 34.51710803924934], [-77.42193090564625, 34.517013448692886], [-77.42184282053474, 34.5166205490699], [-77.42194302838273, 34.51652200927121], [-77.42197531717103, 34.515691849550684], [-77.42188548466451, 34.5154563746377], [-77.42043442416254, 34.51478133955579], [-77.42028085777248, 34.51474062131823], [-77.42017974283856, 34.51475282297985], [-77.42009096249492, 34.51477591770316], [-77.41916341683378, 34.514621596541616], [-77.4187125833345, 34.514540535651335], [-77.41864973090699, 34.51452794844585], [-77.41861532884717, 34.514512926367665], [-77.41822322579458, 34.514368218246034], [-77.41746474823388, 34.51423119907585], [-77.41705612883473, 34.51403863475553], [-77.41630269282675, 34.5138918777061], [-77.41548933596516, 34.51390660019446], [-77.41479792654741, 34.51406638513943], [-77.41463573826499, 34.514110288677074], [-77.41391111326408, 34.51428839896808], [-77.4126044035901, 34.51493353675973], [-77.41243219256879, 34.51502531662085], [-77.41232252310688, 34.515135029593935], [-77.41104520416077, 34.51613816264097], [-77.41087316121035, 34.51625368396995], [-77.41072610037908, 34.51633159347132], [-77.41015406166984, 34.51661977325427], [-77.40914119446956, 34.51700977689006], [-77.40869445517191, 34.51718077388316], [-77.4080007394553, 34.51728561174945], [-77.40756786006304, 34.517168428787144], [-77.40724539644677, 34.51746942265778], [-77.40629502082878, 34.51780366818916], [-77.40602798861309, 34.51787069465121], [-77.40598185902518, 34.51789363379841], [-77.40587417186286, 34.51793110974713], [-77.40518959214847, 34.518222932564385], [-77.40460068140189, 34.51804836332134], [-77.40457538035679, 34.51794934108468], [-77.4044132273696, 34.51784083211652], [-77.40401364053042, 34.5181331355844], [-77.40322151408901, 34.51849250178561], [-77.4030385775605, 34.51876361279222], [-77.4028171014845, 34.519016491455375], [-77.40268271389141, 34.51922372825805], [-77.40253966864245, 34.519325327116285], [-77.40210469228394, 34.519821330803005], [-77.4020333106786, 34.51990117560461], [-77.40201171489853, 34.51993064616878], [-77.40138635835704, 34.52036557269251], [-77.40121468162603, 34.520471100488564], [-77.40107350328589, 34.52002669443536], [-77.40079387602975, 34.51984860976512], [-77.40074914424956, 34.51977335063895], [-77.40076198804351, 34.51958199665128], [-77.40045382167423, 34.51939686114373], [-77.40030300186012, 34.5192546659549], [-77.39968144285221, 34.51883731685169], [-77.39962846838714, 34.5187998718404], [-77.39951414907675, 34.51878280333901], [-77.39812986327918, 34.51802362354223], [-77.39809138620593, 34.51803272852824], [-77.39655056866096, 34.51844538810426], [-77.39577257510611, 34.51884312759673], [-77.39513518884532, 34.51941489932171], [-77.39509696112125, 34.51950781961749], [-77.39497290082164, 34.5199279930486], [-77.394947061049, 34.519943702607506], [-77.39428112444689, 34.5201043188864], [-77.39398211625202, 34.5201799700644], [-77.39337817689378, 34.519900198685605], [-77.39315104497236, 34.51984373809792], [-77.3930373379332, 34.519717661446606], [-77.3920676363478, 34.51902778382903], [-77.39192707787373, 34.518898544444255], [-77.39189393215229, 34.518864460565055], [-77.39183151408986, 34.51886962838714], [-77.39177519904796, 34.51888555290918], [-77.39154000678289, 34.518954398359], [-77.39025239556867, 34.51928116961412], [-77.3896569776245, 34.51959316103711], [-77.38934328410548, 34.519689300563485], [-77.38867699506089, 34.51952707400232], [-77.38739336168183, 34.52053201465804], [-77.3880285791146, 34.52082659167122], [-77.38811856496878, 34.5209170594004], [-77.38863955473911, 34.521187399226214], [-77.38878908086708, 34.52121630466133], [-77.3899860703166, 34.521137288448614], [-77.38993733524957, 34.521964832516254], [-77.38861918297529, 34.522090813659425], [-77.38809467343083, 34.52206189975439], [-77.38778889708902, 34.5219738747589], [-77.38704907575146, 34.522099561103204], [-77.38643990752715, 34.522138554088535], [-77.38633505831687, 34.522109289643346], [-77.38642818361261, 34.52165057848207], [-77.3862867167714, 34.521180169499914], [-77.38551116973598, 34.52068259562734], [-77.3839745364253, 34.520999954961184], [-77.38380587099617, 34.520969068543344], [-77.38237370734784, 34.52058037569458], [-77.38231423558176, 34.52032599889951], [-77.38231145846882, 34.52028570976836], [-77.38226451999783, 34.52021926888493], [-77.38227163253947, 34.51939257021103], [-77.38109765002567, 34.519651614363084], [-77.38082426732942, 34.5196773489844], [-77.38008712100302, 34.52015336081628], [-77.37985977855428, 34.52025347040573], [-77.37924473521136, 34.52010356693668], [-77.37856605260598, 34.52040672164897], [-77.37845772864823, 34.520841428839965], [-77.37789512547856, 34.52107368359894], [-77.377650581511, 34.52117365543347], [-77.37730306113033, 34.52122398578157], [-77.37646969262883, 34.52137356292472], [-77.37607420530681, 34.52145875978609], [-77.3756207075744, 34.521532308417875], [-77.37556535371031, 34.52125843751756], [-77.37551237554342, 34.520907798980005], [-77.37548675461966, 34.52078011048786], [-77.37577251747939, 34.520451711309335], [-77.37576337678033, 34.52025057213179], [-77.3761069818232, 34.52001487545892], [-77.3769344361205, 34.5196129095721], [-77.37769320549785, 34.519294418319305], [-77.37810180127026, 34.51918748979982], [-77.37810693385605, 34.51893337138956], [-77.37849439368094, 34.51857749575594], [-77.378590534884, 34.518431898616896], [-77.37918829722477, 34.51834781871413], [-77.37928255762131, 34.518434654078895], [-77.37975588694661, 34.5184008030183], [-77.3803424393808, 34.518290854038526], [-77.38086313911623, 34.51796071642052], [-77.38203671779166, 34.51812175254933], [-77.38242777719923, 34.51819058095906], [-77.38261794455492, 34.51816458877217], [-77.38400737833305, 34.51775887080859], [-77.38555768468952, 34.517847909976], [-77.38557539576729, 34.51783919248551], [-77.38622311335035, 34.517178280094384], [-77.38648356435623, 34.517168169053846], [-77.38715871720946, 34.51724148497932], [-77.38752354654815, 34.51681754151366], [-77.38834271830562, 34.516477726093214], [-77.3885413725694, 34.51631932962843], [-77.3887521951024, 34.5161923261183], [-77.38909079155249, 34.51615902702538], [-77.38974471934945, 34.515911355592465], [-77.38995226453335, 34.515506464298674], [-77.38990778240792, 34.51527258065846], [-77.38941757309722, 34.51494574256912], [-77.38878592213845, 34.514696728837436], [-77.38859624724772, 34.514602147108654], [-77.38852482644579, 34.51449278914108], [-77.38800976506869, 34.51430984935341], [-77.3878158731131, 34.51422753154377], [-77.38738688105154, 34.514267774499125], [-77.38722396420687, 34.514350560431424], [-77.38682717894943, 34.51449216421369], [-77.3859524617071, 34.51467327531947], [-77.38564523368491, 34.51474741812971], [-77.38543144946732, 34.514806519791605], [-77.3850951323359, 34.514987572193874], [-77.38435175927859, 34.515274611546296], [-77.38405668579713, 34.515577801597296], [-77.38358174902297, 34.515503214019375], [-77.38291320150577, 34.51556811547171], [-77.38247927596133, 34.515914466619535], [-77.3819018826812, 34.51580984203217], [-77.3816939227038, 34.51593448905504], [-77.38164803387664, 34.51594596418076], [-77.38137909296472, 34.516013216306234], [-77.38129880176213, 34.51605245182158], [-77.38127828351314, 34.516040720844416], [-77.38097011756292, 34.516112830926794], [-77.38090348791886, 34.516178879842045], [-77.38060037414616, 34.51631272464219], [-77.38048360487734, 34.51637281588928], [-77.38024180558116, 34.516584288008396], [-77.38017227363872, 34.51667691555565], [-77.38010632789259, 34.516719917751225], [-77.38001703559988, 34.516699301728806], [-77.37947723909511, 34.516680491139184], [-77.3793234019843, 34.51663242295041], [-77.37914585630773, 34.51671533817849], [-77.37778235818094, 34.516998403636244], [-77.37774504436487, 34.51700894419806], [-77.37770587746435, 34.51700811425286], [-77.37764543050218, 34.51704127497606], [-77.37677315337703, 34.51754768246261], [-77.37615715444358, 34.51780468173072], [-77.37568196360911, 34.51801014817479], [-77.37514171906416, 34.518032476472335], [-77.37457943143545, 34.51815153423573], [-77.37419282554869, 34.51827898262026], [-77.37355904196451, 34.51860971026024], [-77.37298267186858, 34.51933495105101], [-77.37266704375962, 34.51952338053863], [-77.37267155329602, 34.519716950617344], [-77.3722829760386, 34.520197206599384], [-77.37295266729086, 34.520654532437234], [-77.37295358003253, 34.52065561399936], [-77.37295262848558, 34.520656239074015], [-77.37295237345413, 34.52065595109545], [-77.37295221632984, 34.52065581056934], [-77.37217558266089, 34.52030877879918], [-77.37143896377304, 34.520873921746265], [-77.37141623345745, 34.520901580833645], [-77.37137644806415, 34.52093223927271], [-77.37111343546859, 34.521410494012244], [-77.37103908747821, 34.52171148165953], [-77.37084436576961, 34.52193892671536], [-77.37101650187441, 34.52212176511605], [-77.37134574928793, 34.52228125361708], [-77.37141555816085, 34.52230241542731], [-77.37196204572064, 34.52216057086725], [-77.37213476263683, 34.522103292593904], [-77.37244733731362, 34.52200397674598], [-77.37292343725255, 34.52194006378991], [-77.37353769282917, 34.52193381383499], [-77.37390389044714, 34.52186669455136], [-77.37389060443951, 34.522105522958896], [-77.37370265706178, 34.52219267630814], [-77.3734853912454, 34.52240506659988], [-77.37309525080327, 34.52247899955813], [-77.37291210656781, 34.52243838836432], [-77.37274971801371, 34.522543822963755], [-77.37226277346856, 34.52262653313649], [-77.3721222793525, 34.522652082495654], [-77.37198460824158, 34.52266825352764], [-77.37148079466506, 34.522735822810674], [-77.3713400065746, 34.52253361064547], [-77.37118429364875, 34.52277555048687], [-77.37054890985874, 34.522802816508616], [-77.36990952302952, 34.523052965080396], [-77.36981693365027, 34.52310363961059], [-77.36980910508441, 34.5235187465151], [-77.36982223672472, 34.52355519890138], [-77.36980617037602, 34.52359511338621], [-77.36980668675702, 34.524003373529254], [-77.36987223045745, 34.524037648794206], [-77.36978261674498, 34.52408036360297], [-77.3697328539292, 34.5241676913789], [-77.36952338091379, 34.52457757548029], [-77.36945337048603, 34.52491358112732], [-77.36924880834428, 34.52510679551434], [-77.36933652570303, 34.52532493231014], [-77.36935129391901, 34.52558168279787], [-77.36945261809132, 34.5259066383357], [-77.36940939582601, 34.52606296350758], [-77.36956564687469, 34.526117052488786], [-77.36968778599405, 34.52614655671712], [-77.37000158225769, 34.526173747296426], [-77.3700795463589, 34.526179095485055], [-77.37041662178986, 34.52591781526728], [-77.37043898319776, 34.52588986110489], [-77.37047991506904, 34.52583350535629], [-77.37070769513454, 34.525523896915345], [-77.37069760718643, 34.525387665778126], [-77.37071024630657, 34.525250450282755], [-77.37074593616771, 34.525135873576026], [-77.37074209158072, 34.525043925847896], [-77.37079212360342, 34.52488438912062], [-77.37065031928886, 34.52450256436912], [-77.37070825574764, 34.52440682084361], [-77.37125144526074, 34.52387508202608], [-77.3712839460952, 34.52383419748853], [-77.3712944315409, 34.523822553848426], [-77.37131073596846, 34.52381988104715], [-77.37133586144893, 34.52381116608181], [-77.37210174275823, 34.523554917168994], [-77.37274805632778, 34.52362317650382], [-77.37283606892444, 34.52364086677098], [-77.372884614071, 34.52364751871324], [-77.37298960071902, 34.52365394118576], [-77.37421274163297, 34.52356408386713], [-77.37445779427094, 34.52350551740617], [-77.37459542728396, 34.5234418416509], [-77.37460019306485, 34.52335620347267], [-77.37525413551569, 34.523005008792154], [-77.37560609089793, 34.52294016846123], [-77.37569853432848, 34.522921836617456], [-77.37604080643897, 34.52293007698517], [-77.37655737884825, 34.52258439722826], [-77.3767186070475, 34.522488045532356], [-77.3768373263214, 34.5224210082539], [-77.3771380146995, 34.522314621907356], [-77.37762908523857, 34.522121409225505], [-77.37800050504987, 34.5221183231243], [-77.37841472792049, 34.52209131648951], [-77.3786743896111, 34.522116831776486], [-77.37919483084482, 34.52230562806704], [-77.37967264734107, 34.52232653225023], [-77.37997780247673, 34.52239346070482], [-77.3800865376247, 34.52249593315781], [-77.38016148175561, 34.522554403326374], [-77.38033827395239, 34.522788130762315], [-77.38075127142544, 34.52290101293262], [-77.38080604306134, 34.522916729397046], [-77.3814839197528, 34.522819577714145], [-77.38154055916672, 34.522710076903934], [-77.38167599364736, 34.52241633946903], [-77.38180873371965, 34.522316859097394], [-77.38196039808447, 34.52205801617447], [-77.3823537506095, 34.5214624403204], [-77.38277235766591, 34.52145965501238], [-77.38389833222773, 34.521057670082925], [-77.38393308379253, 34.521045290215405], [-77.38483216086216, 34.521880798937104], [-77.38458315221254, 34.52247042445803], [-77.38447910292788, 34.522911050428625], [-77.38439604888168, 34.523242815251535], [-77.38389230836088, 34.5239750140166], [-77.38387791381511, 34.52398411732025], [-77.38386659353793, 34.52398656008461], [-77.38385198647916, 34.523989894423984], [-77.38259645672159, 34.52435411337501], [-77.38228740171522, 34.524395028458784], [-77.38211376183608, 34.5243406002166], [-77.38104300386883, 34.524591790767126], [-77.38086400712761, 34.524901404230654], [-77.38081642418567, 34.52497824715994], [-77.3808236928654, 34.525317571277384], [-77.38086230398892, 34.52539131108972], [-77.3809469476897, 34.525538415388965], [-77.38099003429792, 34.52615728683528], [-77.38108971149715, 34.52633783950708], [-77.38103681836796, 34.52657548280712], [-77.38103974690122, 34.526834707281914], [-77.3809241740054, 34.52717284690461], [-77.3808536895499, 34.52735119754382], [-77.38088556897301, 34.52749525988767], [-77.38064003849733, 34.52781346687796], [-77.38041866569539, 34.52790358840689], [-77.37994008293288, 34.52802869285652], [-77.3798502993209, 34.52802212500731], [-77.37980324479153, 34.52802168433328], [-77.3792440586021, 34.52807295470702], [-77.37906655273706, 34.52796615106601], [-77.37899830909956, 34.52810838801611], [-77.37841070936193, 34.528278090404505], [-77.37831988360793, 34.52869586282314], [-77.37826353525598, 34.52876023967724], [-77.37806022127697, 34.529100960094524], [-77.37791084600158, 34.52924449445976], [-77.37745570237533, 34.52976597693996], [-77.37743317377411, 34.52978929795148], [-77.37741272578494, 34.52980596795995], [-77.37741769509992, 34.52982807962947], [-77.37722629968736, 34.53032250288315], [-77.37717016845822, 34.53065472798167], [-77.37704625991873, 34.53083811686486], [-77.37688450627225, 34.531197458477216], [-77.37685752722052, 34.53149601540649], [-77.37662337285292, 34.531850541081255], [-77.37660270844712, 34.53188137731527], [-77.37660442185387, 34.531892358761674], [-77.37662214570686, 34.53190462683821], [-77.37688195625164, 34.53216504402271], [-77.37700508672368, 34.53231302959581], [-77.3770052195878, 34.5323131265119], [-77.37700539063955, 34.53231378951682], [-77.37706602199695, 34.532508502230286], [-77.3770482848618, 34.53258218288034], [-77.37699802793026, 34.532638365491], [-77.37690827802152, 34.53276242052645], [-77.37673282854098, 34.53276078560857], [-77.3766040840866, 34.53270068501309], [-77.37649934695031, 34.53263076528506], [-77.37647054105516, 34.532476553884834], [-77.37629535661884, 34.532415341803556], [-77.37604779932002, 34.53231381252064], [-77.37582721372152, 34.53233984917919], [-77.37557275902127, 34.53227467666136], [-77.37551892867606, 34.5322314266056], [-77.37514232540016, 34.532151706557855], [-77.37504697952228, 34.532127431139074], [-77.37490233393972, 34.532215458366124], [-77.37461693304118, 34.53239281197422], [-77.37424897033475, 34.53269762330996], [-77.37423704534106, 34.53270470111094], [-77.37423312375506, 34.53271260390736], [-77.3742352323019, 34.5327205438532], [-77.37424786612281, 34.532746230758136], [-77.37437359912468, 34.53309859877996], [-77.37438723822628, 34.5331800470905], [-77.37441029344045, 34.53328567558603], [-77.37445706182584, 34.53341481175157], [-77.37434198185392, 34.533605353673295], [-77.37431591468187, 34.5336799847397], [-77.3742245324176, 34.533773384729486], [-77.37362556271762, 34.533897317025364], [-77.37343442176015, 34.53399509574943], [-77.37298261870724, 34.53415172371414], [-77.37264262419976, 34.534290802169124], [-77.37252774990554, 34.534356652341806], [-77.37239144094272, 34.53444701048845], [-77.37223256311721, 34.53471958170687], [-77.37199012703952, 34.534994502574705], [-77.37199256338312, 34.53508969388237], [-77.37212883444732, 34.53546416827087], [-77.37217960781142, 34.535677388800345], [-77.3721906090006, 34.53570009408618], [-77.37219759183257, 34.535711675589596], [-77.37233946093185, 34.53592346949907], [-77.3724060428603, 34.536036671597216], [-77.37259682941578, 34.536305060805965], [-77.37263063383439, 34.53634944980869], [-77.37265560012888, 34.53636756466106], [-77.37267658304219, 34.53641585303966], [-77.3728092354585, 34.53669704584694], [-77.37328116229043, 34.53676706413494], [-77.37333677760253, 34.53678046856876], [-77.37337121516514, 34.53677635524295], [-77.37342542015847, 34.53678013357068], [-77.37415550875137, 34.5368118660313], [-77.37482603305544, 34.53661859786972], [-77.37494552638545, 34.53659530294317], [-77.37502977215846, 34.53656718002055], [-77.37532231190256, 34.5364728681587], [-77.37573662150302, 34.53633107104114], [-77.37592039613445, 34.53627286335207], [-77.37620338029392, 34.53614468525693], [-77.37653226771648, 34.53586600892974], [-77.3765760495554, 34.53582927518297], [-77.37662536601232, 34.53579537909458], [-77.3768856215546, 34.535483172264705], [-77.37733567679659, 34.535058250669366], [-77.37757180628297, 34.53482358031148], [-77.3779336781984, 34.53462745384283], [-77.37857888672951, 34.534320079239784], [-77.3788681643912, 34.53400307190032], [-77.3789310690358, 34.53394490554683], [-77.37927751193756, 34.533666541721296], [-77.37940977341944, 34.53363084724491], [-77.37972407050592, 34.53359477631331], [-77.38026291944107, 34.533467679764144], [-77.38051272219559, 34.53343645315262], [-77.38081754367346, 34.53342226663895], [-77.38188737067648, 34.53320329456768], [-77.38208965485728, 34.533135743014434], [-77.38221738891275, 34.53310979481866], [-77.3826118296484, 34.533137552880646], [-77.3828719004706, 34.5332602621382], [-77.38304770134287, 34.53329033908979], [-77.38364943682978, 34.53359320387903], [-77.38394874432633, 34.533760133980365], [-77.38397267875722, 34.53396351620106], [-77.38410910459056, 34.53422667120957], [-77.38418236538921, 34.534362525945745], [-77.38421823279734, 34.53445576491798], [-77.38427292603748, 34.53460620712118], [-77.38429515031785, 34.53468950334859], [-77.38431124153797, 34.53474779083737], [-77.38440644692452, 34.53483486888268], [-77.38445560531213, 34.5348798990791], [-77.38471606000338, 34.534821724577725], [-77.38480011598732, 34.53478480428063], [-77.3851895957641, 34.534560504101876], [-77.38519344621217, 34.53455723737306], [-77.38519784984406, 34.53455473659103], [-77.38520606708013, 34.53455302728469], [-77.38598924443286, 34.534274722309554], [-77.38663224029064, 34.53435242672343], [-77.38672522233135, 34.53436831743607], [-77.38677159671651, 34.534395156423614], [-77.38684319952947, 34.53436625127896], [-77.38686204359607, 34.534319279962105], [-77.38696696174928, 34.53418524641798], [-77.3874251765123, 34.53365597195], [-77.38757513428719, 34.533576479463015], [-77.3877260255792, 34.533610397335785], [-77.38819831516383, 34.53353531209404], [-77.3883610139984, 34.53354024119252], [-77.38865940516875, 34.533386394649156], [-77.38878197036625, 34.53332250106332], [-77.3888070557488, 34.5333042140598], [-77.3891568832986, 34.533060725714265], [-77.38923733161089, 34.533047298482145], [-77.38958033647124, 34.532947825062706], [-77.38984541496883, 34.53284636498378], [-77.38994704404348, 34.532834181021855], [-77.39001706343791, 34.5328410497259], [-77.3906256618986, 34.53272915229267], [-77.39073480703024, 34.53271390333687], [-77.3909682431886, 34.532603536499636], [-77.39120831163135, 34.53251584703803], [-77.39131347510006, 34.532342063611026], [-77.39140103799909, 34.53219547845143], [-77.39153514411348, 34.53203491186801], [-77.39186083951948, 34.531839880580726], [-77.3919266649491, 34.53162997054673], [-77.39233422833166, 34.531411018499576], [-77.39249158652734, 34.53144976258538], [-77.3927693901013, 34.531508372916434], [-77.39297577635236, 34.53156592221346], [-77.39311481747146, 34.53160889770287], [-77.39330562860548, 34.531549176218675], [-77.39351094280995, 34.5314485955398], [-77.39356001093434, 34.5314245576125], [-77.39371186116367, 34.5313723760796], [-77.39386167763594, 34.531322931447335], [-77.39390654802173, 34.53131135713], [-77.39396218878161, 34.53130168244293], [-77.3943002421887, 34.531259077012706], [-77.3946705382529, 34.53121961793365], [-77.3946937201836, 34.531216389685845], [-77.39472156438485, 34.53120939874557], [-77.39475499871494, 34.53122184375019], [-77.39527190692006, 34.531275442433525], [-77.39543359640851, 34.53159065736032], [-77.39544017637989, 34.53161263261637], [-77.39511071171252, 34.531880442839544], [-77.3950735246927, 34.53191220215947], [-77.3950630033392, 34.53191657954808], [-77.39467410293219, 34.532089325190945], [-77.39435563873404, 34.532059757612686], [-77.39425394978159, 34.53227348784412], [-77.39388102202932, 34.53244674904458], [-77.3937347063221, 34.53243977817786], [-77.39317293155253, 34.5324779205698], [-77.39309517876113, 34.53248206014007], [-77.3930062605493, 34.532508620198655], [-77.39255791585573, 34.53267549345309], [-77.39229995343551, 34.53293428989956], [-77.39220729572196, 34.53300163418024], [-77.39209548518392, 34.533074615630305], [-77.39201867027275, 34.5332566215642], [-77.39195449415442, 34.533375342057795], [-77.3916292658972, 34.53355155092284], [-77.39149952611263, 34.53361722186884], [-77.39146527318181, 34.5336340853559], [-77.3914429128463, 34.53365843939172], [-77.39125923770469, 34.53378221513796], [-77.39125091365982, 34.533838106762744], [-77.39142300679349, 34.53390614516048], [-77.39149155555603, 34.5339713122499], [-77.39159033248218, 34.53406392649784], [-77.39188473067748, 34.533942743380834], [-77.39216928049201, 34.53404330409944], [-77.39223709782675, 34.53405696792287], [-77.39227430679276, 34.53407411008085], [-77.39248616092982, 34.534242416134774], [-77.39254557785947, 34.53430622028072], [-77.39265835622508, 34.534451203908205], [-77.39266455428786, 34.53446151007612], [-77.39275947218755, 34.53462711132049], [-77.39279149992319, 34.534688026999596], [-77.39285026349015, 34.53479979387853], [-77.39285326987563, 34.53480566009574], [-77.3928940355002, 34.53491806616182], [-77.39278655306892, 34.53508949370057], [-77.39272341395196, 34.535239152944676], [-77.39263943112672, 34.53529248208483], [-77.3925395078708, 34.53527660180396], [-77.39233322768915, 34.53524381860715], [-77.39227600866136, 34.53523472506756], [-77.39224828928816, 34.53523042351844], [-77.3920111836314, 34.53519385144156], [-77.39155897957605, 34.535110695507996], [-77.39150454738771, 34.535094674007624], [-77.39146712093057, 34.53505682204339], [-77.39116690534888, 34.53497891882587], [-77.39106654759831, 34.53494351251246], [-77.39068715775525, 34.53482982895211], [-77.39059044957266, 34.534821204067065], [-77.39033247524591, 34.53479798183348], [-77.39002065373163, 34.53476985680617], [-77.38990367438699, 34.53475926157548], [-77.38976585639733, 34.53479425839103], [-77.38955311990554, 34.534910416781976], [-77.38925700835769, 34.53504345676122], [-77.3891083994129, 34.535211923691364], [-77.38892140172928, 34.53537690085601], [-77.38872587983715, 34.53551942059033], [-77.38870861119734, 34.53553351406334], [-77.38868539850155, 34.53552526022864], [-77.38846844062321, 34.53546252013549], [-77.38831771785578, 34.535460466995715], [-77.38782473607361, 34.53546713090722], [-77.38753174300939, 34.53550012311848], [-77.38731803117257, 34.535590477703266], [-77.38707391763998, 34.5357577128245], [-77.38689197069758, 34.53587993348202], [-77.38673564582446, 34.535988293533386], [-77.38641610611919, 34.53614516738733], [-77.38564864546646, 34.536452949368346], [-77.38531503329583, 34.53660300672772], [-77.38514779982214, 34.53677082871394], [-77.3844002657242, 34.53715144946074], [-77.3843535735162, 34.53717500510616], [-77.38426177139037, 34.53719954355076], [-77.3838140169947, 34.53736299860005], [-77.38375640253977, 34.5375822265093], [-77.38375663476438, 34.537705142822], [-77.38370441723342, 34.53780635947095], [-77.38388428708313, 34.53817639657615], [-77.38391692227982, 34.53840637178342], [-77.38391972675616, 34.53841611781889], [-77.38391769039731, 34.53842580887556], [-77.38410349218944, 34.53863444757346], [-77.38431770257344, 34.538762650121555], [-77.38464174017088, 34.53884325332601], [-77.38509908871475, 34.538927673959456], [-77.38564447422038, 34.53874985265425], [-77.38588952583746, 34.53869188312902], [-77.38615138001724, 34.53866581445394], [-77.38650601185971, 34.538777613551936], [-77.38667219155633, 34.538800271686945], [-77.38705998331359, 34.53894350034861], [-77.38706150672957, 34.53894392644446], [-77.38736357358344, 34.539143587152154], [-77.38733130284889, 34.53922090898181], [-77.38721013614882, 34.53951123096851], [-77.3871673067185, 34.53966156069561], [-77.38715776634629, 34.53983519232347], [-77.38711217421582, 34.54015917752228], [-77.38736209422962, 34.540578429541355], [-77.3873606094678, 34.540613009243444], [-77.38737322867587, 34.540637775397684], [-77.38741518685727, 34.540667494792544], [-77.38746734417568, 34.54084244658238], [-77.38752187827707, 34.54090445457065], [-77.38752886375197, 34.54100279175198], [-77.38755782851212, 34.54107422777745], [-77.38751630416063, 34.54115006956282], [-77.38747652432278, 34.54128386242961], [-77.3874453180854, 34.54133528849395], [-77.38739733768469, 34.541458834526544], [-77.38732931896023, 34.54155579509381], [-77.38730154712322, 34.54160085775589], [-77.38729942507004, 34.54165940672584], [-77.3870232615653, 34.54213065898459], [-77.38735150804624, 34.542559887730036], [-77.38735130889287, 34.54257301015015], [-77.38736108797235, 34.54257845750473], [-77.38737202180671, 34.54258121778967], [-77.38745031876616, 34.54260793557081], [-77.3881507672566, 34.54286516482931], [-77.3882063622891, 34.542904123070414], [-77.38831097249046, 34.542924253961715], [-77.3886784225279, 34.543205106348395], [-77.38879930299159, 34.54334348050363], [-77.38876239607015, 34.54344881794904], [-77.38892025567321, 34.5435600894735], [-77.389249359435, 34.543482720625114], [-77.38934702914834, 34.54348897788591], [-77.38933145140906, 34.54351155209185], [-77.38932020644135, 34.543517169222106], [-77.38898013428323, 34.543807062014096], [-77.38894413817883, 34.54383095584697], [-77.38891369593634, 34.54385116286451], [-77.38872820874533, 34.54397428554694], [-77.38866770627355, 34.54400340057606], [-77.38851590581567, 34.54408233103801], [-77.38841966015504, 34.54407257977384], [-77.3882760001011, 34.54405858052993], [-77.38812562611966, 34.543980278197786], [-77.38808110069016, 34.543964728731595], [-77.38802411911368, 34.543944960665385], [-77.38734924947785, 34.543590841118274], [-77.38729501820836, 34.54359423211623], [-77.38725977581646, 34.5435655416763], [-77.38657096663418, 34.54328618872134], [-77.38628038146818, 34.543396800724935], [-77.38540871315766, 34.54360177613883], [-77.38499341006468, 34.54360707113584], [-77.38459233869153, 34.543709267296265], [-77.38420476868231, 34.543761224841646], [-77.38386171530144, 34.54384281065217], [-77.38368751557488, 34.543911527116364], [-77.38375376063951, 34.54379031274553], [-77.3837897684239, 34.543576316830226], [-77.38367381932014, 34.54343904034253], [-77.38368923924655, 34.543262273610665], [-77.3837831966594, 34.54308760187291], [-77.38393586037694, 34.542885542661566], [-77.3840848409199, 34.54255444048077], [-77.38398799766502, 34.54241423603302], [-77.38389673572472, 34.542304536202955], [-77.38384670941619, 34.54223358855187], [-77.38381855646864, 34.54210317809206], [-77.38385190371636, 34.54200372955528], [-77.38390201212673, 34.5418757590118], [-77.38394000783617, 34.54184083258056], [-77.38399249141787, 34.541749172174164], [-77.38414361783573, 34.54156663870822], [-77.38425843096886, 34.541386050029374], [-77.38444623804614, 34.541147096690395], [-77.38462754027238, 34.541007188047736], [-77.38444922428604, 34.54092047233911], [-77.3843336899443, 34.540595702778795], [-77.38433450126445, 34.54055978558597], [-77.38430804379087, 34.54054451685949], [-77.38427833554988, 34.540505054042214], [-77.38414263800712, 34.540342622914636], [-77.38408152744236, 34.540233178916395], [-77.38397577222727, 34.5401218547465], [-77.38385985806885, 34.53991817223397], [-77.38351039559055, 34.53974453374742], [-77.38347244990779, 34.53972866492401], [-77.38342736889196, 34.53971127640501], [-77.38322507968866, 34.53955989965684], [-77.3832450360763, 34.53941800917701], [-77.38330920337685, 34.539238653758545], [-77.38298406739824, 34.53913276110267], [-77.38283394262201, 34.53881752593144], [-77.38279874399723, 34.53879023716714], [-77.382748468724, 34.53871871254596], [-77.38260621195695, 34.538453170379825], [-77.38196884890365, 34.5384758465501], [-77.38151948811858, 34.53851740321937], [-77.38121161211981, 34.53854345665401], [-77.38118321992943, 34.53849868796694], [-77.38065785726296, 34.538151978568884], [-77.38088862335594, 34.537926899205694], [-77.38085498773303, 34.5378477962847], [-77.38080626566136, 34.53780943364805], [-77.38067564973454, 34.5377421660349], [-77.38057145933433, 34.53777264064259], [-77.38041150617585, 34.53790688294771], [-77.38035899303763, 34.53795023981204], [-77.38030381269758, 34.53813913886828], [-77.3801677709248, 34.538222640204474], [-77.37960997341577, 34.53863205329822], [-77.37935352838714, 34.53867029516057], [-77.37882609712472, 34.53857739756693], [-77.37866304635548, 34.53854177568391], [-77.37803955012919, 34.53864058154331], [-77.37750162303217, 34.53876290992744], [-77.37725079737965, 34.53880095786131], [-77.3768720844191, 34.53895338642863], [-77.37682240554203, 34.53896971672441], [-77.37646062446325, 34.53902377942619], [-77.3761277518849, 34.53908802239703], [-77.37567334623648, 34.5391188621837], [-77.37503171690452, 34.539452699586526], [-77.37492917566087, 34.539498394008746], [-77.3748739892035, 34.53974580440284], [-77.3748121175172, 34.539938145509836], [-77.37475360695262, 34.539982441967794], [-77.37481048317883, 34.54001010797517], [-77.37486046981445, 34.540341207469055], [-77.37487340845726, 34.54044528905945], [-77.3748774987339, 34.540454242740424], [-77.37487799249769, 34.54046687943245], [-77.37495332325545, 34.54086760798253], [-77.37498819717514, 34.540927944514436], [-77.37513304702931, 34.541214364248404], [-77.37553360486011, 34.54133898995179], [-77.37557992468759, 34.54135886915882], [-77.37562232980028, 34.54136659497186], [-77.37568414694888, 34.54135568952248], [-77.37633369454794, 34.54127102870097], [-77.37640991196209, 34.54125904550586], [-77.37665175001813, 34.54142264793626], [-77.37670656028533, 34.5414715633046], [-77.37673521382617, 34.54161857990718], [-77.37664142641448, 34.54166896522575], [-77.37651819632995, 34.54176136737173], [-77.37639825614087, 34.541772807244044], [-77.3762809665421, 34.54179377450957], [-77.37600405659674, 34.54184448953827], [-77.37575987234614, 34.54188921013386], [-77.37560837798587, 34.54198130481802], [-77.37532258349817, 34.54217320186426], [-77.37489911128603, 34.54240975674823], [-77.37485720481251, 34.54244353056502], [-77.37456063417666, 34.542948195937164], [-77.3745604920094, 34.54329258971059], [-77.37456754671305, 34.543436858616076], [-77.37463149188127, 34.54352535336671], [-77.37451055600756, 34.543764992697675], [-77.37441385696947, 34.54394866669041], [-77.3743835069383, 34.54405736741197], [-77.37432818605448, 34.544172979804955], [-77.37429345508488, 34.54426407918899], [-77.3741316520851, 34.54447899531092], [-77.37415328266025, 34.54458459897472], [-77.37410350068802, 34.54472788116898], [-77.37420044356116, 34.544817310211904], [-77.37418938465275, 34.544850505102374], [-77.37416857496744, 34.544878053221126], [-77.37409510317678, 34.54492882006466], [-77.37404731942446, 34.54493322895666], [-77.3739712563368, 34.544923159665174], [-77.37385272830963, 34.544935102775476], [-77.37372431786123, 34.54493633916707], [-77.37358001764154, 34.54486375335344], [-77.3735088707839, 34.544858028091326], [-77.37319155349778, 34.54468227072402], [-77.37279558524543, 34.54491517848394], [-77.37304707492385, 34.5446353007228], [-77.37309402295195, 34.544566065322456], [-77.37297849573571, 34.54415552753535], [-77.37274796241456, 34.54398560460644], [-77.37267867600103, 34.543867338953994], [-77.37260769658192, 34.54371930797159], [-77.37278874499724, 34.54347191964241], [-77.3728076295015, 34.543433367786555], [-77.37314992041232, 34.543151510980266], [-77.37318953354495, 34.54312243687555], [-77.37323018024213, 34.542982481651535], [-77.37335997831451, 34.54270864848327], [-77.37338079028271, 34.54262858252887], [-77.3734070161427, 34.54252105893986], [-77.37324640857706, 34.54226835216407], [-77.37322121069695, 34.54217890674956], [-77.37321090863135, 34.54216340924788], [-77.3730024531633, 34.54186169880717], [-77.37284913019394, 34.5417258902078], [-77.37247871082234, 34.54150058464783], [-77.372104839513, 34.54157559621513], [-77.37207779329529, 34.541588259796704], [-77.37168748898762, 34.54176775056915], [-77.37148538534156, 34.54179678696046], [-77.37134305952398, 34.54215227211482], [-77.37123573527312, 34.542448046387186], [-77.37117293116194, 34.54263819849652], [-77.37087791988588, 34.54284104944507], [-77.37058511405641, 34.542726034600676], [-77.37009779998905, 34.54261967061343], [-77.37001506417117, 34.54262393806806], [-77.36940245743044, 34.542655682409496], [-77.36931226716008, 34.54263616225828], [-77.36921522445957, 34.54267927575142], [-77.36783373358948, 34.542877552410815], [-77.36773645596492, 34.542877273874936], [-77.36725056461368, 34.54271693982689], [-77.36665991983526, 34.542800477267875], [-77.36672394053599, 34.542608452242426], [-77.36617365448895, 34.54254754450637], [-77.36559193520651, 34.54277152441897], [-77.3656446706336, 34.54292911591537], [-77.36559527776963, 34.54326069264525], [-77.36480397984145, 34.543513556966914], [-77.36482884346549, 34.543860748433524], [-77.36456683773798, 34.544146412876756], [-77.3642450617214, 34.544235084507015], [-77.36410887340335, 34.54424859427316], [-77.36405676849573, 34.54414347787649], [-77.3639264258994, 34.543990732561376], [-77.36391954257613, 34.54390911867074], [-77.36384993460207, 34.543546125951295], [-77.3639276341536, 34.543500907671024], [-77.36387813692181, 34.54345768251977], [-77.36412075166407, 34.54318115879546], [-77.3641868675508, 34.54297391794442], [-77.36420357796646, 34.54286195956837], [-77.36427708241463, 34.542760492709526], [-77.3645996920952, 34.542707197103255], [-77.36520023108714, 34.54271289399374], [-77.36493688910443, 34.54237623127415], [-77.365001062701, 34.54212496753172], [-77.36500356358286, 34.54212180204525], [-77.36499931846151, 34.54211842740965], [-77.36476307830512, 34.54191161697109], [-77.36461858127497, 34.54187974569416], [-77.3645085144839, 34.54187964230234], [-77.36422603786833, 34.541878292844004], [-77.36389559464251, 34.54199614358741], [-77.36383048001436, 34.54200883092065], [-77.36378163269046, 34.5420227203541], [-77.36374024612846, 34.54205894662317], [-77.36333518069499, 34.54230223408721], [-77.36303796991848, 34.542330764324674], [-77.36269954556373, 34.54248970338245], [-77.36247852450532, 34.542585924812656], [-77.36224563193966, 34.54264488469409], [-77.36147806092987, 34.542860367947924], [-77.36145548843871, 34.542862756379265], [-77.36144027185242, 34.542870473663775], [-77.36143024940607, 34.54288129643334], [-77.36120023634729, 34.54307063863226], [-77.361084745441, 34.54319422534574], [-77.36126594909436, 34.54339460681903], [-77.36118784953486, 34.5435627776139], [-77.36143348915033, 34.54382486963321], [-77.36145378499005, 34.54384427160982], [-77.36145496156635, 34.5438570358072], [-77.36145027924096, 34.543868807255876], [-77.36143048180777, 34.543956392850944], [-77.36126682088596, 34.54427627934492], [-77.36135867902071, 34.544360550836394], [-77.36139872344297, 34.54436870967303], [-77.36142070598139, 34.54438392965718], [-77.36161558957701, 34.54456837663939], [-77.36166534679953, 34.54464968447516], [-77.36167505361095, 34.544804637543244], [-77.36174993032843, 34.545008061574], [-77.36175636788272, 34.54503775173419], [-77.36175778488112, 34.54506249063974], [-77.36197694779784, 34.545118512158794], [-77.36218867468769, 34.545136878524744], [-77.36224899547685, 34.545173490618026], [-77.36227513691811, 34.5452078643428], [-77.3625775192092, 34.5453008917615], [-77.36294845529672, 34.54512687585713], [-77.36297419054932, 34.545122384728835], [-77.36298383963536, 34.54511165933484], [-77.3629883550139, 34.5451051445299], [-77.36301255279844, 34.54507836331916], [-77.36326380228996, 34.54475113898187], [-77.36352342483897, 34.54469170403187], [-77.36376913565738, 34.544694969705795], [-77.36398705639814, 34.54482357054076], [-77.3640987593972, 34.544945211242734], [-77.36425298635426, 34.545105071965295], [-77.36449080235681, 34.54534808386416], [-77.3644529775588, 34.54538384192951], [-77.3640216754535, 34.54561657622904], [-77.3637496848128, 34.54554669160763], [-77.36342321089167, 34.54573310003906], [-77.36335197811712, 34.5457705218446], [-77.36331880272259, 34.54577134959907], [-77.36333210847661, 34.545802051544804], [-77.36325130338162, 34.54604657254684], [-77.36326023264412, 34.546239580569264], [-77.36326738775456, 34.546289081579935], [-77.36328751999127, 34.546318571802075], [-77.36324646052198, 34.54648124340366], [-77.36322943745066, 34.546539372583936], [-77.36314813216327, 34.54666545363151], [-77.3631414252173, 34.54667850626541], [-77.36295557376236, 34.54682364088187], [-77.36293495520805, 34.54683974226737], [-77.36259731886652, 34.54691052146064], [-77.36253772824581, 34.547042213210936], [-77.36243232903455, 34.54714382413037], [-77.36223162147382, 34.54722933415042], [-77.36213985766418, 34.54727275691223], [-77.36166616993447, 34.547743811724054], [-77.36173385238666, 34.54797720549563], [-77.36173288980464, 34.54798015468256], [-77.36173113403119, 34.54822410596552], [-77.3617481716776, 34.5484491357118], [-77.36175188065296, 34.54848612401088], [-77.3615973400754, 34.548733022308575], [-77.3617557281822, 34.54892618427319], [-77.36176161677344, 34.54898759064706], [-77.36176982422278, 34.549197832478086], [-77.36182070022817, 34.54935978070251], [-77.36202900619332, 34.549614405417174], [-77.36199511692689, 34.54965503683206], [-77.36203157769465, 34.54968295664239], [-77.36200910491688, 34.55010145239182], [-77.36200462567932, 34.550143316967365], [-77.36199664286637, 34.55019216401724], [-77.36188003153146, 34.55053538782035], [-77.36176154396506, 34.5506679719541], [-77.36184671874267, 34.5507883940452], [-77.36182428832265, 34.55100499837262], [-77.36181752723465, 34.55114955952118], [-77.36181598032823, 34.55129442473908], [-77.36179253853852, 34.55148628165152], [-77.36179061347251, 34.55164308451646], [-77.36176360154948, 34.55181683231456], [-77.36173568781388, 34.55195535378873], [-77.36175734890077, 34.55213752402936], [-77.36178273615636, 34.552285119767916], [-77.36179844263557, 34.55237643079132], [-77.36192759076452, 34.552545440181085], [-77.3619424150332, 34.55260052232909], [-77.36194646040897, 34.5526439857957], [-77.36201631146767, 34.55267838878781], [-77.36221360429991, 34.552684579353546], [-77.3624447486414, 34.55274966135378], [-77.36279803605164, 34.55283295487467], [-77.36321014186612, 34.552907601937065], [-77.3634179160652, 34.552978724210355], [-77.3635803889614, 34.55296011506816], [-77.36386841471175, 34.552992862921755], [-77.36401674107381, 34.55300830978364], [-77.36436328148022, 34.55306372242217], [-77.36457803556438, 34.55306629569067], [-77.36506376927336, 34.55307762114309], [-77.36514834514406, 34.55307224171745], [-77.3654945207592, 34.55306823821688], [-77.36578303621259, 34.553119889358946], [-77.36593245847635, 34.55312241737877], [-77.36625988494609, 34.55316273604117], [-77.36671891903451, 34.553069659061265], [-77.36686427838985, 34.55326713853463], [-77.3669993230598, 34.55334113280773], [-77.3674906388056, 34.55366368608113], [-77.36755581951526, 34.55370932902677], [-77.3678825841666, 34.553693781895454], [-77.36790277306883, 34.55370064083337], [-77.36814810786112, 34.5538033794806], [-77.36827622178284, 34.553794704010194], [-77.36840143607546, 34.553841082918304], [-77.36844530873046, 34.55386476230034], [-77.36847312711345, 34.55390030446296], [-77.36862341085914, 34.554021383930134], [-77.36863611182568, 34.55405609250842], [-77.36866997578275, 34.5541417772325], [-77.36878354786343, 34.55442287230789], [-77.36891475333553, 34.55456450957552], [-77.36906363195163, 34.55473225600134], [-77.36932581467838, 34.55491120098606], [-77.36945745727098, 34.55492442687235], [-77.36978109688185, 34.55512827531699], [-77.36979542382083, 34.55518638785293], [-77.36985123354404, 34.555241980247125], [-77.36993744244856, 34.555198648526], [-77.37039143624558, 34.55530719132704], [-77.37063894253708, 34.55550461416257], [-77.37090804064769, 34.55525584195804], [-77.37119964078883, 34.55516882568788], [-77.37142691103585, 34.5551080847259], [-77.37162030200105, 34.555071709649255], [-77.37205896248412, 34.55480007786857], [-77.3721862612092, 34.55475091415642], [-77.37221486119988, 34.55473986850149], [-77.37233551202993, 34.55463023170658], [-77.37323127554103, 34.55463115037297], [-77.37372428061278, 34.55463149720856], [-77.37379050586178, 34.554655556075744], [-77.37440758565025, 34.5553107616381], [-77.37449207266346, 34.5553912596502], [-77.3743487084676, 34.555743807968746], [-77.37446301829905, 34.55585115025686], [-77.37457783097943, 34.55603324504015], [-77.37461551393606, 34.556089283742416], [-77.37460836554503, 34.55613095029123], [-77.37463606385442, 34.55618978159492], [-77.37465461864215, 34.55623042508303], [-77.37464869696265, 34.55626095305039], [-77.37466193138071, 34.55633551155609], [-77.37458856792884, 34.55654659958041], [-77.374586971265, 34.55655859481156], [-77.37457764121436, 34.55657803893222], [-77.37435630361949, 34.55677791303362], [-77.37411041555056, 34.55705183075173], [-77.37423072321623, 34.55740808982136], [-77.37428204785583, 34.55755799847468], [-77.37440888455933, 34.5578579423818], [-77.37448101381362, 34.55795117754988], [-77.37457711213463, 34.55810028950246], [-77.3747213758316, 34.5582374712375], [-77.37457700922532, 34.55839691967543], [-77.37431848544988, 34.55829553068882], [-77.37422810747245, 34.55826008583108], [-77.37418314548096, 34.55823524174909], [-77.37407038210978, 34.558209738766124], [-77.37378926379408, 34.55812812054965], [-77.37354860598963, 34.55824124233277], [-77.37325200825654, 34.558024650017714], [-77.37300152131976, 34.55786433386568], [-77.37282774782645, 34.557898506502355], [-77.37289190730239, 34.55807653914674], [-77.37265414547196, 34.55858580792997], [-77.37260835620111, 34.55896651698559], [-77.37244317423631, 34.559238210435396], [-77.37238138333662, 34.55966687349011], [-77.3723101853827, 34.559858600901], [-77.37229531229502, 34.55994956112753], [-77.37237059993109, 34.56052882387898], [-77.37252314077713, 34.56067703658576], [-77.37269047516874, 34.5609869265802], [-77.37300022908441, 34.56140639129814], [-77.37303446126799, 34.561452482056055], [-77.37333461215192, 34.56189778155258], [-77.3737879399554, 34.56185599276167], [-77.3739403135499, 34.562006798632225], [-77.37418182905729, 34.56199305885749], [-77.37426265384939, 34.562037501853766], [-77.37437877478193, 34.56205957138136], [-77.37448743831753, 34.56209223482074], [-77.37455160084336, 34.56210899014015], [-77.37457572128663, 34.56212471599838], [-77.37461764809076, 34.562118654944975], [-77.37487701365296, 34.56213593887068], [-77.374969627906, 34.56221751608474], [-77.37507965970906, 34.562125444403044], [-77.37523103706712, 34.56212794205177], [-77.37536359469804, 34.562132839184194], [-77.37554298163008, 34.56213345605081], [-77.37557395172124, 34.56213351252642], [-77.37575751555566, 34.56218478914838], [-77.37587465110236, 34.56219064382274], [-77.3761514644759, 34.562151691739835], [-77.37625693757336, 34.56214812320395], [-77.37634843563686, 34.562144881627326], [-77.37646294199033, 34.562143231816094], [-77.37654540757316, 34.56213554113025], [-77.37661682523606, 34.56213295886196], [-77.37693933828992, 34.56215784414964], [-77.37696465838121, 34.56215979778465], [-77.37720165570913, 34.56226745571271], [-77.37733324681238, 34.562252002903676], [-77.37742500152643, 34.56219231842416], [-77.3776048777616, 34.56206752549103], [-77.37772726561224, 34.56198882114909], [-77.37805797332535, 34.56200222060386], [-77.37810429070593, 34.562013763124455], [-77.37815128958319, 34.56202120733334], [-77.37851516059449, 34.56191709200938], [-77.3790757416833, 34.5614309584924], [-77.37918371933426, 34.56128660765661], [-77.37930321511047, 34.56128519827075], [-77.37943264680221, 34.56124003096691], [-77.3796972050264, 34.561085133357025], [-77.37986564876904, 34.561074071989886], [-77.37991061364289, 34.56108061421784], [-77.38009109951712, 34.56122036119749], [-77.380122522377, 34.561246195149735], [-77.3801631171749, 34.56127421737802], [-77.38025440412872, 34.56143712538184], [-77.38029987895625, 34.56167906723328], [-77.38009085095818, 34.56211312934704], [-77.3800794815904, 34.56212315167937], [-77.38006591009777, 34.56213735827092], [-77.38008289358737, 34.562143476986485], [-77.38009084140464, 34.562147489223214], [-77.38012293358022, 34.562163730147645], [-77.38087861328792, 34.562528755319065], [-77.38093716227795, 34.562797715017396], [-77.38096745213687, 34.562856527204666], [-77.38127241185057, 34.56306083370139], [-77.3813606629027, 34.563129276426395], [-77.38148190993735, 34.56320692863986], [-77.38158313729733, 34.56328195847172], [-77.38166627772105, 34.56335238364728], [-77.38180179248906, 34.563439305521946], [-77.38202799390191, 34.56355276852], [-77.3821358153685, 34.563880174722534], [-77.38245398335275, 34.56407379900684], [-77.38254940520174, 34.564223849984074], [-77.38278569164314, 34.56429266421043], [-77.38324168392224, 34.56487366652765], [-77.38341463937743, 34.5648647240805], [-77.38349198491557, 34.565039967805546], [-77.38353128461368, 34.5653465273609], [-77.38355069636994, 34.56588063480022], [-77.38375087427569, 34.566151821262736], [-77.38402921675167, 34.56647602254336], [-77.38409572266781, 34.566579488712186], [-77.38409336796275, 34.56665152705477], [-77.38402912904262, 34.5668613716705], [-77.38391397511828, 34.56740255615716], [-77.38382508681697, 34.567539338614075], [-77.38383053070665, 34.56775235910762], [-77.38402891724411, 34.567793863510786], [-77.38427921599467, 34.568322996284145], [-77.38438013794706, 34.56877883577914], [-77.38481657758787, 34.569018168840785], [-77.38484551272535, 34.56905928912936], [-77.3849598038186, 34.56907400228119], [-77.38545966368372, 34.56915799975064], [-77.38560447453904, 34.56921286377045], [-77.38584493773712, 34.569205515442334], [-77.38599844310997, 34.56921684054234], [-77.38622783092688, 34.5690685638411], [-77.38639245554238, 34.56899886136379], [-77.38646733586792, 34.56893731653149], [-77.38658103204894, 34.56884023905137], [-77.3867864783262, 34.56871616106294], [-77.38701726258536, 34.568601454003826], [-77.38718048537001, 34.568503023521956], [-77.38756048449338, 34.56828952444912], [-77.38796848196603, 34.56813943083534], [-77.3881617002587, 34.5679713612386], [-77.38836248854706, 34.56789475197765], [-77.38845764949735, 34.567823026434006], [-77.38867400993075, 34.567689283904315], [-77.38873539675706, 34.56765769734191], [-77.38875649571759, 34.5676330646344], [-77.3890464246839, 34.56721100668372], [-77.38909557612665, 34.56714468568086], [-77.38930767733831, 34.567004004219996], [-77.38954450555141, 34.56709161660883], [-77.3898618271786, 34.566668837635646], [-77.38972580367962, 34.56649317329115], [-77.3895758169876, 34.566285519112895], [-77.3895446421309, 34.566245642874385], [-77.3893950929002, 34.56604822032668], [-77.38934770765029, 34.565984703348875], [-77.38932061915729, 34.56589775576637], [-77.38934773274019, 34.56583210650976], [-77.38941990295581, 34.56574891641955], [-77.38954473830515, 34.56565216128985], [-77.38979785023821, 34.56555615946491], [-77.39005681492864, 34.565494286145174], [-77.39033271391729, 34.565181554583276], [-77.3906499112407, 34.56519874698146], [-77.39057470876676, 34.56486774084733], [-77.39112072442632, 34.56440594185926], [-77.39134926776255, 34.56415315113602], [-77.39170428963651, 34.563855670193206], [-77.39179573637445, 34.5637207244264], [-77.3918901784353, 34.5634042866035], [-77.39190875728701, 34.563357677063216], [-77.39200994728051, 34.56338701006221], [-77.39225855540866, 34.56339871716214], [-77.39230268800071, 34.56343271727144], [-77.39234575969732, 34.56355085442024], [-77.39232116966608, 34.56374672397082], [-77.39231852456756, 34.56376706838014], [-77.39230262189258, 34.56393892083623], [-77.39226722910537, 34.56416092509946], [-77.39223422684437, 34.56420379876046], [-77.39217104326495, 34.564354661443275], [-77.39198220373456, 34.564664722914806], [-77.39201333216256, 34.56477314244442], [-77.39190851148143, 34.56517997476842], [-77.3917519820066, 34.56554707163604], [-77.39167798705938, 34.56580609484182], [-77.39153716052084, 34.56602710967627], [-77.39125676448846, 34.56646764254023], [-77.39126033899548, 34.566617932702776], [-77.39114420159464, 34.567307269058595], [-77.39113500064697, 34.56733434551046], [-77.39112927076494, 34.56734483596903], [-77.39112030025521, 34.56736778606785], [-77.39092628318971, 34.56800459597124], [-77.39088243507119, 34.5682199136486], [-77.39084601453101, 34.568520583249935], [-77.39085361764134, 34.56864863974231], [-77.39112009980332, 34.568783315136415], [-77.39128490001701, 34.56883339441204], [-77.39139091446796, 34.56886300648035], [-77.39151405040558, 34.568898439765064], [-77.39176607196018, 34.56894160074202], [-77.39187256826352, 34.56896443291749], [-77.39190800612752, 34.56898241602045], [-77.3920113023953, 34.569017553394744], [-77.39230195613231, 34.56911727579936], [-77.39243235677405, 34.569129532847086], [-77.39256031941062, 34.56910546698491], [-77.39269593239237, 34.56904669966142], [-77.39290175586581, 34.568999589754554], [-77.39298438182242, 34.56876586558833], [-77.39299264116161, 34.56865981117156], [-77.39298146790692, 34.56845864511738], [-77.39290751222907, 34.568352383265704], [-77.39269604892206, 34.56809440107084], [-77.39263512414749, 34.56803277045712], [-77.39260293603012, 34.56797174735054], [-77.3926406402884, 34.567906570151166], [-77.39269608788669, 34.5677774101067], [-77.3929378561991, 34.567334789107306], [-77.39300892710331, 34.56706404178079], [-77.39304022826772, 34.5670057357048], [-77.39309014748557, 34.566947230113726], [-77.39313284945878, 34.56700013855632], [-77.39316876942631, 34.567040983997586], [-77.3933001343844, 34.56722026622466], [-77.3933643921308, 34.56730836507635], [-77.39344667321829, 34.56742546604222], [-77.39346419865197, 34.56744432963792], [-77.39348404622373, 34.56746088495013], [-77.39367763716757, 34.56760806720102], [-77.39387799291987, 34.56757937521763], [-77.39412573134902, 34.5675944952212], [-77.39427195008837, 34.567607280783974], [-77.39442870495112, 34.56753944128895], [-77.39466592458946, 34.567462921134585], [-77.39483707776063, 34.567409330529145], [-77.39497263880065, 34.5672993677217], [-77.3950599059546, 34.567231104722836], [-77.39510094486934, 34.56723104370523], [-77.39537633871232, 34.56723063407664], [-77.39545386209399, 34.56725407735834], [-77.39555746080345, 34.567232600018556], [-77.39584782216937, 34.56723257484768], [-77.3960085537221, 34.567229092957135], [-77.39607269325555, 34.56722884436613], [-77.39624177375029, 34.567312676251404], [-77.39632512978565, 34.5674347684532], [-77.39624175845196, 34.567502130772], [-77.3960643118719, 34.56766361993792], [-77.39604476413396, 34.567678844710954], [-77.39603729967126, 34.56768053823407], [-77.395847773561, 34.56780203631722], [-77.39548947454233, 34.567941459661185], [-77.39545379999937, 34.56794379312253], [-77.39541614444917, 34.56794990467411], [-77.3954101106549, 34.567991356075375], [-77.39538435225722, 34.56806990333428], [-77.39518908091125, 34.568447816061195], [-77.39545372211687, 34.56881440932711], [-77.395459128938, 34.56882760012217], [-77.39545912849368, 34.56883342835737], [-77.39546378080821, 34.56884360004768], [-77.39559322943829, 34.56923865336013], [-77.3956793663501, 34.56940756913351], [-77.3956933867424, 34.56948254922408], [-77.39557870471714, 34.56966532098026], [-77.39552425602767, 34.56974927831247], [-77.39545362795411, 34.56987549917222], [-77.39532256482042, 34.57012684624759], [-77.39528636133963, 34.57037643060076], [-77.39529348226272, 34.570728115383055], [-77.39553817305989, 34.570944884231544], [-77.39566236490715, 34.57112647337972], [-77.39584747569236, 34.571354503244706], [-77.39605260799156, 34.57149873412584], [-77.39641263961504, 34.57166786745452], [-77.39652068494806, 34.571775901642866], [-77.3966353524508, 34.57242891473383], [-77.39665612951363, 34.57245949048631], [-77.396674353136, 34.572479254001465], [-77.3966453907672, 34.57249425542694], [-77.39663534727225, 34.57250035730287], [-77.39661907570665, 34.572504763618504], [-77.39584735898053, 34.57277649833414], [-77.39563284910244, 34.572860669656386], [-77.3953566382585, 34.5729897073065], [-77.39532264123807, 34.573239677458105], [-77.39523883105574, 34.57353550139368], [-77.39521304178191, 34.57370489075866], [-77.39523802200142, 34.574192126341345], [-77.39523677279475, 34.57438494200724], [-77.39538594986149, 34.574715514109386], [-77.39541330765486, 34.57478404655844], [-77.39541369532671, 34.57482656026344], [-77.395618422605, 34.57517902732976], [-77.39565479472577, 34.57538105984936], [-77.39584713931308, 34.575503584494236], [-77.39642615729072, 34.57591164186627], [-77.3965118697717, 34.5760320634646], [-77.39646128907445, 34.57675571831327], [-77.39658551363618, 34.57753362393245], [-77.39659098304678, 34.57758615261308], [-77.39661826153197, 34.57760024117205], [-77.39663498776038, 34.57760346745552], [-77.39666990373219, 34.577612391948435], [-77.39702898517672, 34.5777519061696], [-77.39713673388768, 34.577815876961914], [-77.39732829721149, 34.577802312661305], [-77.39742298953755, 34.57780496307582], [-77.39756288978054, 34.57771975685062], [-77.39764375373782, 34.577672146841294], [-77.39781701360671, 34.577503742846424], [-77.39798448887743, 34.577385103308536], [-77.39802986054701, 34.57718332499476], [-77.39821104809315, 34.57693844201498], [-77.39860067591215, 34.576876341708406], [-77.39860505444332, 34.576872813812884], [-77.39860725302658, 34.57687304383063], [-77.39899905425058, 34.576952544935835], [-77.39914649331394, 34.57695174625021], [-77.3991960557175, 34.57695780848195], [-77.39924606805312, 34.576936894555985], [-77.39939305981925, 34.57689073461937], [-77.39950135204936, 34.57685835668208], [-77.39978706760498, 34.576738982971435], [-77.40003736564864, 34.57650945581582], [-77.40018107815139, 34.57642524150477], [-77.4004533201962, 34.576310929552534], [-77.4005750827035, 34.57624846601422], [-77.4006350455126, 34.57621811158924], [-77.40071073456286, 34.5761425738117], [-77.40114868492986, 34.57584833216468], [-77.40136308924218, 34.575698471073], [-77.4014049512489, 34.57566292744954], [-77.40150578801625, 34.57560326486294], [-77.40168362191939, 34.57549843271418], [-77.4017570883079, 34.57545507920405], [-77.4019666754643, 34.57531089774322], [-77.40215108501856, 34.5752163261076], [-77.4022244907857, 34.57515407154503], [-77.40232519435426, 34.57506043473552], [-77.40254507938461, 34.57478289241679], [-77.40268091377911, 34.57473089869039], [-77.4029390698122, 34.57436274752591], [-77.40320616612624, 34.57408413581797], [-77.4034259136065, 34.573727912297], [-77.40349613083936, 34.573441967470764], [-77.40346273704185, 34.5731979523263], [-77.4033750103323, 34.57283126065186], [-77.40372702893828, 34.57277510843985], [-77.40374834724905, 34.57275512712754], [-77.40403145226708, 34.57278780436912], [-77.40412101205555, 34.57279934159765], [-77.4042615054714, 34.572809487017295], [-77.40451499519466, 34.572816391975465], [-77.40500202043685, 34.57245091389094], [-77.40530294398796, 34.57229273114061], [-77.40542407946413, 34.57219624074986], [-77.40592907447878, 34.57199279648623], [-77.40609088949434, 34.57193545100476], [-77.40612147214787, 34.571932064734256], [-77.40675074819764, 34.571736143714205], [-77.40687883234247, 34.57166307674098], [-77.40702620791366, 34.57167559150248], [-77.4072728073053, 34.571629790041115], [-77.40761060768648, 34.57168950210463], [-77.40766678639592, 34.571672113605935], [-77.40770214895753, 34.57169872203234], [-77.4078100886731, 34.57172124609799], [-77.40832041390769, 34.571792336234736], [-77.4084547544467, 34.57188553258471], [-77.40868291972188, 34.5718411213165], [-77.40889517820781, 34.57193911399131], [-77.4089915960649, 34.57197524286222], [-77.40915342069366, 34.572048115867815], [-77.40924272293023, 34.57205775563854], [-77.40941923356466, 34.57210371574804], [-77.40944945528085, 34.57211092989512], [-77.40963671781466, 34.572257889197864], [-77.4097287983959, 34.57229338153542], [-77.40989577974528, 34.57241468160524], [-77.41003071936177, 34.57251210102362], [-77.41016114634745, 34.57237152528984], [-77.41042467864244, 34.57228746665111], [-77.41054689076363, 34.57217525634228], [-77.41064717816357, 34.57197600835312], [-77.41081858133147, 34.57150199008345], [-77.4109368801908, 34.57139728251947], [-77.41139148470677, 34.571204137471206], [-77.41153889425243, 34.57111000357249], [-77.41160648820777, 34.5710920755254], [-77.41166945194732, 34.571096143096085], [-77.4122238376612, 34.570900113311126], [-77.4123876553839, 34.570635702943505], [-77.41239191365425, 34.57063242849446], [-77.41239438029294, 34.57062258186796], [-77.41249905308624, 34.57030787930462], [-77.41259783780824, 34.57018076840402], [-77.41249736528448, 34.57008422389879], [-77.41239431301129, 34.570037516973144], [-77.41230274468549, 34.56989746951726], [-77.41210078313756, 34.56982796880657], [-77.41205983023909, 34.56976974302171], [-77.41192264628184, 34.5697699887179], [-77.41160635319035, 34.56981394146008], [-77.41142472812669, 34.56969674039015], [-77.41111051917453, 34.56954638843133], [-77.41094322086636, 34.569436007077655], [-77.41081837789685, 34.569388015285654], [-77.41065412838822, 34.56918771199486], [-77.41061784756995, 34.568984443179644], [-77.41057372035168, 34.56877474245236], [-77.41045419414199, 34.56839961491092], [-77.41045392817423, 34.568367460883685], [-77.41081824124791, 34.56794839854082], [-77.41086755731085, 34.56793630295201], [-77.41156189549747, 34.56783057610079], [-77.41160614486978, 34.567820375866354], [-77.41163145473176, 34.56780012084989], [-77.41170636646535, 34.56776202332352], [-77.41200007716661, 34.56758557685615], [-77.41222365722516, 34.56768732028538], [-77.41229853015325, 34.567779458046076], [-77.41239407285198, 34.567931133747365], [-77.4126212688765, 34.56823423994311], [-77.4128943318592, 34.56843962528487], [-77.41318206863549, 34.56857915308966], [-77.413563082067, 34.56875364728742], [-77.41358713645431, 34.568752204900775], [-77.41396999042595, 34.56857793576867], [-77.41418129229018, 34.56887523789081], [-77.41453404173376, 34.568810666625296], [-77.414574149918, 34.568395033037305], [-77.41429422264578, 34.568237445994484], [-77.41460838689264, 34.56803100594905], [-77.41475781594224, 34.56790034087292], [-77.41496855890631, 34.5675180691409], [-77.4150940460406, 34.56727275977442], [-77.41515166916375, 34.567186631949646], [-77.41532957425267, 34.56700592242506], [-77.41539562652937, 34.5668046168082], [-77.41554553101761, 34.56657306118043], [-77.4156304113011, 34.566437623310115], [-77.41576029952145, 34.566327359367534], [-77.41593941952087, 34.5661684046156], [-77.41617590598128, 34.56609763054832], [-77.4163333415175, 34.56599793605031], [-77.41664292946854, 34.56568441496624], [-77.4167272196344, 34.56556984999085], [-77.41682252961198, 34.565427500756186], [-77.41702559929595, 34.56529541847099], [-77.4170906703981, 34.56525320865746], [-77.41712110792996, 34.56522594672907], [-77.41742319442953, 34.56481339847352], [-77.41735714541815, 34.56465285672401], [-77.4172913962945, 34.56440785459846], [-77.41751487263087, 34.564182759072224], [-77.4176994035815, 34.56434891268349], [-77.41763700403189, 34.564650966004734], [-77.41790891321969, 34.56475479028006], [-77.41804238808137, 34.56500472150968], [-77.41830290314542, 34.56501854541072], [-77.41866553050653, 34.56502475316165], [-77.41869684720656, 34.565023268892986], [-77.41872924755228, 34.56501437830386], [-77.41909076515999, 34.564891640814636], [-77.41932239631102, 34.56478869017948], [-77.41948005582468, 34.56409650372917], [-77.41947963725123, 34.56409171832006], [-77.41947860811463, 34.56408546307778], [-77.41948454626227, 34.56406732165264], [-77.41971019443884, 34.56345257051875], [-77.41974976498389, 34.56320352012456], [-77.41964987681561, 34.56303954098246], [-77.41948428055308, 34.56270372017899], [-77.41939281948345, 34.562405922797765], [-77.41940692128045, 34.56232058640696], [-77.41946942537206, 34.56197027017388], [-77.41948413571016, 34.561957877548906], [-77.4195046859502, 34.56196517562121], [-77.41978012586495, 34.56203095446082], [-77.41987809915122, 34.56213369045657], [-77.42022415747984, 34.56228580717024], [-77.42022004897785, 34.562342470641944], [-77.42027211059536, 34.56253723758398], [-77.420520439599, 34.563092167445184], [-77.42087320981483, 34.563242651543405], [-77.4210601222569, 34.56323827598405], [-77.42129749754712, 34.56323573341777], [-77.42162068791046, 34.56317816175547], [-77.42184795872981, 34.5630951533057], [-77.42199796676282, 34.56304036377344], [-77.42218257531766, 34.56285199394836], [-77.42224182285742, 34.56279082618201], [-77.42242127227425, 34.56258637830265], [-77.42263566750563, 34.56241491191607], [-77.42266105804606, 34.5623856375517], [-77.42271954512154, 34.56234981176802], [-77.42294323454779, 34.56222445040644], [-77.42313787455875, 34.5621725923277], [-77.42316256442402, 34.56228579036374], [-77.42323154547515, 34.56248276188516], [-77.42323313051739, 34.56249494457088], [-77.42307271111731, 34.562723362018005], [-77.4230296771079, 34.562750929686075], [-77.42277640629669, 34.562917745422574], [-77.42263584160806, 34.56316463279311], [-77.42261498642156, 34.56319160950584], [-77.42260702582078, 34.56321524462219], [-77.42243892674352, 34.563390314146574], [-77.4224080909334, 34.56342304193977], [-77.42232720762522, 34.56346797319812], [-77.4222419881783, 34.56351666281421], [-77.42208802226884, 34.563548876076176], [-77.42199436797863, 34.5635706762406], [-77.4218480550719, 34.56352685459518], [-77.42159613716272, 34.56351439102544], [-77.4214541379456, 34.56361099501481], [-77.42138576352171, 34.56374258027013], [-77.42125565744033, 34.563835105133634], [-77.42113600868316, 34.56393402348581], [-77.42106028850137, 34.564015159120295], [-77.42067359065175, 34.56435152245781], [-77.42066642358104, 34.56436382293114], [-77.42054569761011, 34.564656676032754], [-77.42034493905848, 34.56481586647072], [-77.4202999749605, 34.564851884652526], [-77.42027258512346, 34.56485712432255], [-77.420232314912, 34.56487554576019], [-77.41998485418264, 34.56498233879833], [-77.41987867391454, 34.565011012629526], [-77.4196465115003, 34.565091124296984], [-77.41948476322408, 34.56517529153185], [-77.41918280506063, 34.56540835774162], [-77.41921067382282, 34.56553343306815], [-77.41934196140902, 34.56580994794009], [-77.41936143619196, 34.56594021387821], [-77.41948492167211, 34.565981570194495], [-77.41955612042577, 34.56612688650677], [-77.41961888916134, 34.566194522845464], [-77.41968194684662, 34.56623965096449], [-77.4198223350475, 34.56622611269849], [-77.41987892337046, 34.566250388041524], [-77.41996303996186, 34.56623546090775], [-77.4201303470967, 34.566120626874955], [-77.42023058686152, 34.56606061245229], [-77.42027281864239, 34.56599151722976], [-77.42047845305152, 34.565867400120325], [-77.42083296684785, 34.5658399461209], [-77.42106070336959, 34.56594500737559], [-77.42142365471884, 34.565967167074405], [-77.42184859549393, 34.5659368762213], [-77.42215516947817, 34.5659222209325], [-77.42224253546223, 34.56590728479488], [-77.42231065121564, 34.56587900983101], [-77.4226363843942, 34.56549042604593], [-77.42272054051237, 34.565412494129276], [-77.42285209501438, 34.565302761773836], [-77.42283875065662, 34.56508648009031], [-77.42288801997303, 34.56487298428112], [-77.42283522621912, 34.56467054411953], [-77.42303016094775, 34.56478667261068], [-77.42306934777226, 34.56480455006723], [-77.42342415872915, 34.56501930216973], [-77.42356230572761, 34.565051243933056], [-77.42409977451496, 34.56512245681233], [-77.42417589048966, 34.565150457205995], [-77.42421207610589, 34.565150377353255], [-77.42424785509105, 34.565139621720085], [-77.42431249406857, 34.56509171488671], [-77.42477912118963, 34.56478635937558], [-77.42499981951893, 34.56460937716881], [-77.42537308684003, 34.56453610580453], [-77.42539373726298, 34.56452615567539], [-77.42540265344415, 34.564519184691655], [-77.42571091101874, 34.564547764296975], [-77.42578767726314, 34.56452813102099], [-77.42586964639604, 34.56453042317275], [-77.42606854949042, 34.56453519503971], [-77.42618163919616, 34.56460973676282], [-77.42646610241204, 34.564780456364225], [-77.42647004046592, 34.56489372158663], [-77.4265756530848, 34.56487387303611], [-77.42672889949162, 34.56490762972183], [-77.42706770484352, 34.564693499768936], [-77.42732486746314, 34.56461473417056], [-77.4273634225954, 34.56448740597817], [-77.42761225799843, 34.56403394815128], [-77.42809762452711, 34.56369544916898], [-77.4276128149705, 34.56349641955576], [-77.42756847704553, 34.563144191148], [-77.42799912976619, 34.56302404928928], [-77.42815101848134, 34.56354559610623], [-77.4281976400135, 34.563680991573435], [-77.4283177954249, 34.56433329965652], [-77.42851749050502, 34.56448393370583], [-77.42879661744949, 34.56459727250859], [-77.42893923498353, 34.56467271689018], [-77.42927044985714, 34.564867344288956], [-77.4296587361222, 34.56516813227768], [-77.42994326914966, 34.565743576406426], [-77.43051531421001, 34.565652835563526], [-77.43080141655348, 34.5658521185655], [-77.4310873103511, 34.56604361339934], [-77.43130348793878, 34.566498510372455], [-77.43142306159787, 34.56661142553138], [-77.4313179031159, 34.567460626237015], [-77.43132044039127, 34.56749335123595], [-77.43154128785726, 34.568292696065306], [-77.43167901121652, 34.56871805339978], [-77.43180300323532, 34.569104039830336], [-77.43187462936362, 34.56932835563727], [-77.43200334206166, 34.569828117722956], [-77.43202588372004, 34.56992099882022], [-77.43176473306477, 34.57002997199364], [-77.43169865789599, 34.57004278725548], [-77.43137370787173, 34.570089649726384], [-77.43130471313702, 34.570100100340596], [-77.43052419751001, 34.57014607489804], [-77.43051679979024, 34.57014868218232], [-77.43050534098082, 34.57015317835384], [-77.43012287655706, 34.57027644963714], [-77.4298582008629, 34.57023437959941], [-77.42979037527162, 34.5701779075127], [-77.42981504638726, 34.569484545080265], [-77.42987797343167, 34.56938234097369], [-77.42979967812947, 34.56931705679524], [-77.42972859525345, 34.569297723047065], [-77.42959342371665, 34.56899888590102], [-77.42951712004066, 34.56881307616144], [-77.42950864694768, 34.56877427307872], [-77.429547059177, 34.5685809984448], [-77.42957328030565, 34.568410123540524], [-77.42972822546166, 34.568147752301265], [-77.42998023082744, 34.5679408718481], [-77.43028362621229, 34.56762533738488], [-77.43009608328131, 34.56725567135692], [-77.42972794890098, 34.567285828678], [-77.42903765112987, 34.566956278541795], [-77.42898166186944, 34.566919396080685], [-77.42893992447856, 34.56689712405714], [-77.42888679146189, 34.56692081297483], [-77.42832880872695, 34.5668682010389], [-77.42815201428095, 34.566863787991736], [-77.42776517267883, 34.56672333503784], [-77.42775661220533, 34.566718384735694], [-77.42775546057062, 34.56671703272582], [-77.42769508486215, 34.56665794782602], [-77.42756603218895, 34.56653211938759], [-77.42756584916167, 34.56652690883764], [-77.42753793151692, 34.56632388661554], [-77.42770226805882, 34.56593538307652], [-77.4277202075892, 34.565832478200605], [-77.42789062428935, 34.56542372743961], [-77.42770508243807, 34.56508249390303], [-77.42736351857485, 34.56481807433633], [-77.42712364309682, 34.565275912210964], [-77.42679436973356, 34.56534659736014], [-77.42657581288593, 34.565442165068646], [-77.42641127848987, 34.565460217786416], [-77.42614253666267, 34.56567639930208], [-77.42587919579631, 34.56581272198691], [-77.42578805792266, 34.56592848444515], [-77.42524122914483, 34.56639615931446], [-77.42500031513995, 34.566496599076125], [-77.4249040143415, 34.56660075714761], [-77.42480817309493, 34.56671842838608], [-77.42460647891002, 34.56693226194749], [-77.42446383429387, 34.56703901246202], [-77.42440955073067, 34.5671167916532], [-77.42433628968332, 34.567077865810994], [-77.42421252279358, 34.56691236808458], [-77.42419308571627, 34.56682824589931], [-77.42415537682238, 34.56681276983066], [-77.42385091131027, 34.56639718652603], [-77.42342452808333, 34.56653373404705], [-77.42319043512444, 34.566699873682744], [-77.42282351544296, 34.566803885951565], [-77.42263670879927, 34.56687253730622], [-77.42250518712173, 34.566909478263625], [-77.42184911608184, 34.56714603903203], [-77.42184892278767, 34.56714612581148], [-77.42184886820206, 34.56714620161716], [-77.42184875778926, 34.567146209804214], [-77.42145496482489, 34.56736853689755], [-77.42121590175714, 34.56740445956021], [-77.42106112584459, 34.56789740740917], [-77.42090724546402, 34.567447871128415], [-77.42066708584989, 34.56750330473591], [-77.42038952817626, 34.56748238596488], [-77.42027312904783, 34.56749227207717], [-77.42022012844413, 34.567438519296985], [-77.41993410665208, 34.56742273426701], [-77.4195761548059, 34.56737642055026], [-77.4194851980185, 34.567382001460274], [-77.41940677292648, 34.56741439301899], [-77.41919108141798, 34.56753008450775], [-77.41909128352228, 34.567587484847074], [-77.41880978237896, 34.567706343855974], [-77.41869739002837, 34.56791469332335], [-77.41859692577884, 34.56793222861366], [-77.41846866994335, 34.56788094607575], [-77.41830340014525, 34.56773524996668], [-77.41811209619394, 34.56768596402958], [-77.41800857451126, 34.56759405397476], [-77.41790941143864, 34.56755302346356], [-77.41748679720816, 34.56777629504615], [-77.41717912692151, 34.56788278641478], [-77.41716636807153, 34.56824716736789], [-77.41718241489325, 34.56860397583424], [-77.41715968672878, 34.568672715936366], [-77.41714807208915, 34.56870281974866], [-77.41712170665832, 34.56876384769048], [-77.41707859630532, 34.56885024439706], [-77.41701134367491, 34.56890643637692], [-77.41695070255956, 34.56894315917126], [-77.4168018560807, 34.56906917257614], [-77.41672779937245, 34.56908861133657], [-77.41667754845686, 34.5691127841142], [-77.41633388281797, 34.569374724599484], [-77.41618794298434, 34.569504945564894], [-77.41614382281745, 34.569668623456195], [-77.41613743942565, 34.56988134265372], [-77.41599472943157, 34.57017367669074], [-77.41594005073358, 34.57021594773007], [-77.41574680088085, 34.5703668439245], [-77.41573598311892, 34.57037206720597], [-77.4155461066602, 34.570374298672675], [-77.41530291045326, 34.57037715616768], [-77.41515216196345, 34.570538986755196], [-77.41506889899681, 34.5706730503789], [-77.41510504892771, 34.57104155733021], [-77.4151185283434, 34.571126805122724], [-77.41515224948093, 34.57112857756239], [-77.41546456379314, 34.57137702303857], [-77.41554627016343, 34.57144145600948], [-77.41555184741095, 34.57144645028313], [-77.41555833270046, 34.571451523294535], [-77.41605395430386, 34.57168201482916], [-77.41632160902999, 34.57176585777332], [-77.41633427285299, 34.57177634667001], [-77.41650088653739, 34.571985023807976], [-77.41690025329785, 34.57210685741255], [-77.41702541280935, 34.572193187514046], [-77.41712229635331, 34.57219619361858], [-77.41724313635773, 34.57218755714147], [-77.41764963816377, 34.57227948211282], [-77.41791029491165, 34.57243693256689], [-77.41821374767535, 34.57224418282785], [-77.4185149992638, 34.57187359890175], [-77.41854771459302, 34.57170679115542], [-77.41851932377543, 34.57144839043012], [-77.41869804294473, 34.571349907467116], [-77.41891037919011, 34.57139189680683], [-77.41888128933155, 34.571623255525694], [-77.41909207111303, 34.571631091140766], [-77.41921980985029, 34.57177177856971], [-77.41931954200805, 34.57193687603616], [-77.41938030120667, 34.571960884896185], [-77.41937410843285, 34.57205334680199], [-77.41909782493825, 34.57220790722646], [-77.41909218485843, 34.57221008757609], [-77.41908915798768, 34.572211975605306], [-77.4186982627715, 34.57249608683634], [-77.41860429490471, 34.572608576513765], [-77.41861441430886, 34.572708405547644], [-77.41861406118255, 34.572799260669285], [-77.41869840942243, 34.57325800188077], [-77.4187309573103, 34.57350571324295], [-77.41871238606448, 34.573543420771145], [-77.41872097419302, 34.573566433366466], [-77.41886057758911, 34.57419661309123], [-77.41892224729955, 34.5743622719676], [-77.4190926310598, 34.5744689697922], [-77.41925823751258, 34.5745598702226], [-77.41928964585031, 34.57457338584604], [-77.41944038053923, 34.57471200454642], [-77.41946686387988, 34.574729524541134], [-77.4194866753503, 34.574747745248764], [-77.41961695580011, 34.57489878746948], [-77.41963283362516, 34.57495132243845], [-77.41976813220113, 34.57496791952484], [-77.41988071868684, 34.575009304261414], [-77.41996974016033, 34.575060113241314], [-77.42015156904766, 34.57516658189238], [-77.4202747492669, 34.57519959050482], [-77.42031295950454, 34.57522282018259], [-77.42040839842491, 34.575277314969796], [-77.42047176873106, 34.575311037543855], [-77.4206264730855, 34.57538981795834], [-77.42062738377959, 34.57543430903689], [-77.42066879954196, 34.57547215011225], [-77.42072129767925, 34.57543270183894], [-77.42090463704284, 34.57552007613417], [-77.42097201709205, 34.57555218733469], [-77.42106282496097, 34.57562180579905], [-77.42115004446642, 34.57564477241689], [-77.42116132794268, 34.57564322814024], [-77.42118305834056, 34.575651258353865], [-77.4212598352866, 34.57568378884549], [-77.42142372433536, 34.575699217252456], [-77.42144743091747, 34.57570592832048], [-77.4214568382992, 34.575712430978], [-77.42150346540296, 34.57573793727949], [-77.4216844102091, 34.57584092768347], [-77.42185088346469, 34.57593653002992], [-77.42206541264419, 34.576031088686975], [-77.42217322778839, 34.576092763508356], [-77.42224493059969, 34.57616022437443], [-77.42240003332898, 34.57614988748061], [-77.42263891016421, 34.57609636092124], [-77.42271876014223, 34.57602275574891], [-77.42297620960012, 34.575960547956306], [-77.42303287057234, 34.57595764858399], [-77.42307514127633, 34.57593075170092], [-77.42311096229692, 34.575880015641374], [-77.42314039016213, 34.575759842247294], [-77.42318015339985, 34.5756042447769], [-77.42337601829814, 34.57541712921618], [-77.42334816083338, 34.57533650724299], [-77.42342671989132, 34.57538204685092], [-77.42343766138718, 34.57539643455573], [-77.42382070250444, 34.575348803556274], [-77.42382732172648, 34.57535191552827], [-77.42405571336785, 34.57549027724116], [-77.4241894180352, 34.57551188447992], [-77.42408337810404, 34.57559791883166], [-77.42392364233444, 34.575762583572974], [-77.42388914245353, 34.57584118723596], [-77.42348884200467, 34.576249999281025], [-77.42355681016586, 34.57638009804662], [-77.42373535561048, 34.57673131918], [-77.42382106730098, 34.576772507356125], [-77.42398312925837, 34.5770277479388], [-77.42404616605812, 34.57720076997463], [-77.42421521806756, 34.57735758613447], [-77.42444282065009, 34.577565281631735], [-77.4247771112293, 34.57751848015755], [-77.42500326980995, 34.577546521587955], [-77.42519495524847, 34.577495224052946], [-77.42520542647826, 34.57749357035948], [-77.42538836105169, 34.57746156194497], [-77.42539724696337, 34.57746012692557], [-77.42539771131078, 34.57746021071335], [-77.42554889110963, 34.57748724838981], [-77.42559425604776, 34.57749172581273], [-77.42565419695426, 34.577487740180175], [-77.42572412777456, 34.57748537663742], [-77.42579125840712, 34.57749891284008], [-77.42589576106815, 34.577487909638776], [-77.42609653539522, 34.577475908436114], [-77.42618525422567, 34.577481975963764], [-77.42626722342916, 34.57745850500979], [-77.42651880816211, 34.57744535777783], [-77.42657924000167, 34.57743130700343], [-77.42666472272887, 34.57736924211266], [-77.42669499483353, 34.57736025878727], [-77.42677622932435, 34.57739448882305], [-77.42690148209186, 34.57737786769876], [-77.42697322622138, 34.5773839859065], [-77.42736230564921, 34.577383275658704], [-77.4273672258577, 34.57738321510113], [-77.42737087708085, 34.57738340440875], [-77.42739192382663, 34.57738429713688], [-77.42765793054193, 34.577457189392206], [-77.42776124411516, 34.577443852841405], [-77.42783480269843, 34.57739957080045], [-77.42787871847308, 34.57739962463478], [-77.42795823109795, 34.5774014072243], [-77.42797768228567, 34.577405782966046], [-77.42803093707474, 34.5774258904124], [-77.42803062107475, 34.57747611679569], [-77.42800198130419, 34.57750841811638], [-77.42797312410623, 34.577528596170325], [-77.42795827537356, 34.577545682167724], [-77.42777803337597, 34.577753080706366], [-77.4277694009885, 34.57776301371203], [-77.42776134415672, 34.577772284402215], [-77.42744769030692, 34.578225414305884], [-77.42749667839486, 34.57835751974081], [-77.42748657692587, 34.57864438259996], [-77.42760991622902, 34.57879007253696], [-77.42763655370919, 34.57883500084658], [-77.42769353394945, 34.578900209788046], [-77.42769973997194, 34.578971382812725], [-77.42765096548263, 34.579045212243415], [-77.42756475286464, 34.57912438387329], [-77.42745192091388, 34.57916467189047], [-77.42736778024396, 34.57922864196757], [-77.4270716610604, 34.57955352630993], [-77.42704208145162, 34.57963128354251], [-77.42713355070981, 34.579969170054284], [-77.42721155007209, 34.58012654255246], [-77.4273061420063, 34.58030204468895], [-77.42733706904852, 34.58036434501129], [-77.42734102079505, 34.5803929880186], [-77.42736813656295, 34.58041037695519], [-77.42750788034401, 34.58061372502654], [-77.42773723902275, 34.580731097912775], [-77.42775131956215, 34.58074084362994], [-77.42776225298154, 34.58074389864881], [-77.42790763211643, 34.58091876540278], [-77.42793209842037, 34.58094456609369], [-77.42795934083215, 34.58100259907831], [-77.42801336813987, 34.58111577769757], [-77.42799649379268, 34.581290571412225], [-77.42799806589183, 34.581371890067615], [-77.42787823970505, 34.581559896539645], [-77.4279205014996, 34.58180820362125], [-77.4279501297568, 34.58197409505535], [-77.42815670646485, 34.58214650358659], [-77.42826481818224, 34.5822367332195], [-77.42845582839267, 34.58232559466813], [-77.42855081296962, 34.58241219995803], [-77.42870459911607, 34.5825485582872], [-77.4289449167089, 34.582661630859505], [-77.42895474170926, 34.582667488265145], [-77.42896790925633, 34.58267617016794], [-77.42913348675623, 34.58287370313017], [-77.42954672248811, 34.582816352482176], [-77.42973300804158, 34.58278979380434], [-77.43002033251761, 34.58263897315156], [-77.43012697651344, 34.58262232597589], [-77.43026627268077, 34.58263859649786], [-77.43052094331387, 34.58245459625994], [-77.43113392911803, 34.582787669371285], [-77.43121895001256, 34.58287256102793], [-77.4313092022322, 34.58306075167968], [-77.43142720850449, 34.58287250548055], [-77.43150468642898, 34.582734074092556], [-77.43170307330647, 34.582625862698116], [-77.4318641574893, 34.58243117372672], [-77.43197981023702, 34.58236708443185], [-77.43209697931312, 34.58229911464228], [-77.43216073189583, 34.582283349006296], [-77.432421412789, 34.5822519275557], [-77.43249101554127, 34.58233784937755], [-77.43280280312787, 34.582546412907895], [-77.43280958131913, 34.58262685790875], [-77.43279423598423, 34.58329860557875], [-77.43280403926373, 34.583395416811456], [-77.4327039047023, 34.58360558060524], [-77.43288548028134, 34.58353386539766], [-77.43313709188655, 34.583925478770105], [-77.43334916623215, 34.584165789792024], [-77.43367394855883, 34.584619317362254], [-77.43440388905516, 34.58407570561237], [-77.43446180619414, 34.584086650026514], [-77.43498303696809, 34.58477875045413], [-77.43504032604933, 34.58499664754083], [-77.4347348448462, 34.585663819710405], [-77.43449936983633, 34.585737647310445], [-77.43446251837129, 34.585910597583094], [-77.43407503957653, 34.58619075845509], [-77.43424884088591, 34.58658327071258], [-77.43435582934507, 34.586683088808], [-77.43446284010555, 34.5867326566938], [-77.43448562791522, 34.58676133270252], [-77.43456091738284, 34.58685607623952], [-77.43456128747546, 34.586856541960664], [-77.43456133627807, 34.586856602985165], [-77.43456139948897, 34.586856676305864], [-77.43464178580905, 34.586951051575966], [-77.43464621599003, 34.58696521309903], [-77.43465995796754, 34.58697763042216], [-77.43472817077279, 34.5870773993761], [-77.4348570681085, 34.587200131924696], [-77.43497053232086, 34.58732811318856], [-77.4350973294367, 34.587475604366205], [-77.43513536983194, 34.587516576810145], [-77.43518861104712, 34.58757638865647], [-77.43525129594819, 34.587656054406], [-77.43527483627214, 34.587683355108055], [-77.43529328674276, 34.587706040773554], [-77.43539004896509, 34.58784147860598], [-77.43542425993131, 34.58789940034309], [-77.43542362368866, 34.58792621990304], [-77.43549316347483, 34.588101734045345], [-77.43556836029404, 34.588174038125004], [-77.43564556365394, 34.58819911977989], [-77.43573071508166, 34.588279683719676], [-77.43578620703587, 34.58833247046005], [-77.43584266363057, 34.588383106697], [-77.43596063028514, 34.588458737054445], [-77.43598914837375, 34.588509127062245], [-77.43603976000034, 34.58855619336165], [-77.43616844946953, 34.58871468743467], [-77.43627409639322, 34.588838005700595], [-77.43634721509545, 34.58892090437247], [-77.43643401683755, 34.58905018486059], [-77.43649164652591, 34.58916909989901], [-77.43651794631563, 34.58922734002358], [-77.43682830065825, 34.5895968201442], [-77.43683254506891, 34.5896018731543], [-77.43684048971306, 34.58960529544821], [-77.43707204638889, 34.589733834217036], [-77.43722245433825, 34.58982635917059], [-77.43732670126616, 34.58984726771007], [-77.43761651164314, 34.58982789219353], [-77.43798487910932, 34.58983672626441], [-77.43801056639086, 34.58982371761953], [-77.43809421127575, 34.58975844251258], [-77.43807706045574, 34.58985108045391], [-77.43804103884504, 34.58988909243438], [-77.43801060409635, 34.58991007007996], [-77.43766171878704, 34.59033573409576], [-77.43763981153907, 34.59036375772679], [-77.43761676362004, 34.59041105480215], [-77.43743780976794, 34.590792704900544], [-77.4376170454493, 34.59106259119031], [-77.43766206161912, 34.59113640235393], [-77.4376932955369, 34.59118035544866], [-77.43781969633109, 34.59136846312011], [-77.43785923343597, 34.591417146489015], [-77.43796109122403, 34.59156622562007], [-77.4379615021879, 34.59161987743473], [-77.43800741849847, 34.591984119846614], [-77.43840576928754, 34.59241555756416], [-77.43861789701427, 34.59251651692936], [-77.43919399726104, 34.59261608341862], [-77.43923653927207, 34.59260972865196], [-77.43996499925518, 34.59253180088983], [-77.43998208761758, 34.59251128459008], [-77.44008807506805, 34.59222217117284], [-77.44027336551355, 34.592081032390126], [-77.44034691979022, 34.592039130709516], [-77.44037593578274, 34.59203864622247], [-77.44040219948926, 34.59203409956144], [-77.44057295318044, 34.59200484723571], [-77.4407652765184, 34.5920048160197], [-77.44076998609799, 34.5920043550441], [-77.44078250834212, 34.59200739852336], [-77.44099876866906, 34.59215428661033], [-77.44110948198151, 34.59232574195592], [-77.44109354564117, 34.59238700953249], [-77.44092351960467, 34.59257673554817], [-77.44077030779022, 34.59268639481286], [-77.44055387866152, 34.592698258625376], [-77.44037625558137, 34.59272358980122], [-77.44004751588227, 34.59260873751088], [-77.4399821116005, 34.592563166523746], [-77.43997093850072, 34.592561401991915], [-77.43922249612287, 34.5926882712625], [-77.43919404570786, 34.59272304098706], [-77.4388169460088, 34.59315891514076], [-77.43880019022555, 34.59320152956971], [-77.4385129012391, 34.593609401808386], [-77.43847459121724, 34.59368848475648], [-77.43856388089378, 34.59402662399974], [-77.43865583961635, 34.59416932355045], [-77.4386569150208, 34.59428287172669], [-77.43863351399298, 34.59444114887072], [-77.43858802072944, 34.594643025016], [-77.438406921513, 34.59500926630135], [-77.43809891701616, 34.595035775018985], [-77.43821519035475, 34.59535082739335], [-77.43826149749324, 34.59550104972226], [-77.43824979803395, 34.59602523568593], [-77.43824987294082, 34.59619500013397], [-77.43831017641286, 34.59629113002245], [-77.43840758639755, 34.59650091592888], [-77.43844657733419, 34.59659115081273], [-77.43851405837702, 34.59689146097179], [-77.43876599021215, 34.596969557378706], [-77.4387662773036, 34.59735555752498], [-77.43876354431201, 34.59743604100078], [-77.43871714852014, 34.597825807674866], [-77.43864663510358, 34.59809278593442], [-77.4386312275036, 34.59826282645391], [-77.43840851002726, 34.59856670121384], [-77.43832029257439, 34.59863730291489], [-77.43823209076572, 34.59874513437356], [-77.43832037686714, 34.598827447065084], [-77.43826564394233, 34.59916487690149], [-77.43817495199357, 34.59935057709605], [-77.4381749872373, 34.599429992906614], [-77.43815331166137, 34.59960571339164], [-77.43817555143164, 34.599775525936714], [-77.43817558630836, 34.59985405838659], [-77.43817586933436, 34.60002704561832], [-77.43818522760225, 34.60005467055311], [-77.43819163170005, 34.60021490775022], [-77.43818527323145, 34.60023798278163], [-77.43818528612883, 34.60026699799526], [-77.43816255913335, 34.600453563847225], [-77.43822094270212, 34.60064820480067], [-77.4382226928912, 34.60066825606536], [-77.43823669929769, 34.600867437633624], [-77.43825882322773, 34.601026693058074], [-77.43827887205747, 34.60114502140172], [-77.43823036850438, 34.60129294668554], [-77.43823045456331, 34.60148617273424], [-77.4382538120391, 34.60168070982975], [-77.43839452904058, 34.60174268794776], [-77.4384296941947, 34.60189343904022], [-77.43833608052512, 34.60202649956382], [-77.43838633176814, 34.60220980936564], [-77.43846374787115, 34.60235934584091], [-77.43859918203394, 34.60240669723338], [-77.43868818590781, 34.60260335832183], [-77.43870375110367, 34.6026601645094], [-77.43874253136181, 34.60268855211031], [-77.43882645198424, 34.602806616426584], [-77.43882574818974, 34.60281000483872], [-77.43884563594224, 34.602860141090936], [-77.43888432871373, 34.602972305210095], [-77.43888709387933, 34.60297713742833], [-77.4389980805299, 34.603290345443384], [-77.43900759850315, 34.60331202613332], [-77.43901392174998, 34.603336813485306], [-77.43906461216488, 34.60348039396881], [-77.43910710813466, 34.60361416235722], [-77.439114682667, 34.60365074130449], [-77.43925358777493, 34.603892193840885], [-77.43927919705271, 34.60397308254633], [-77.43935911272668, 34.60407707489421], [-77.43942620953861, 34.604300413929955], [-77.43958231348724, 34.604404536008865], [-77.43968423065645, 34.60450059234202], [-77.43967889972176, 34.60459761548135], [-77.4399124368789, 34.60489018575685], [-77.43991499866456, 34.60489954755354], [-77.4399229435358, 34.60490232848314], [-77.43993429958492, 34.60491757482295], [-77.44001161655476, 34.60505662391013], [-77.44005551959279, 34.60519736291701], [-77.44006392078329, 34.60522633470582], [-77.44021901414268, 34.60545459931135], [-77.44025308868069, 34.60554164719851], [-77.44032223522743, 34.605653052670505], [-77.44035630814537, 34.605743868561646], [-77.44044538554319, 34.60585606800661], [-77.4404495572772, 34.60585842673715], [-77.44046742450676, 34.60590525791069], [-77.44050937114277, 34.60601386047485], [-77.44051512374264, 34.60603028062189], [-77.44044918377644, 34.606224232381145], [-77.44046171982662, 34.60632130169057], [-77.44027455745324, 34.606643267342875], [-77.44056421842747, 34.60686104027247], [-77.440597680651, 34.60692038905971], [-77.44083694173597, 34.607072059611035], [-77.44097204433155, 34.607182900003146], [-77.44103070190138, 34.60720499128519], [-77.44109933747518, 34.6072538612634], [-77.44139705153718, 34.607430970755736], [-77.44149090179846, 34.607556625860944], [-77.44216432642366, 34.60758145154897], [-77.44220746263744, 34.60759485197058], [-77.4422407960816, 34.60758295958693], [-77.44227851826444, 34.607576609333776], [-77.44268856919967, 34.60743197357121], [-77.4431203091577, 34.6072518046086], [-77.44319908851668, 34.607242800006], [-77.44322602913472, 34.60726384956114], [-77.44326006401154, 34.607269021447145], [-77.44355420800562, 34.60731975806976], [-77.44361948730807, 34.60742650747886], [-77.44357051414906, 34.60754975062127], [-77.44357846001357, 34.60774724336777], [-77.44351262057829, 34.60793550934475], [-77.44352169138708, 34.6080116986936], [-77.44366645711833, 34.60855393360565], [-77.44369378454087, 34.608622354334784], [-77.44395016011059, 34.608781067736025], [-77.44408631850612, 34.60895489753827], [-77.44407237753074, 34.60925290487885], [-77.44435687616792, 34.60953840151012], [-77.44435907223185, 34.609540409291135], [-77.44491964075267, 34.609687463953776], [-77.44531868722403, 34.60926677869479], [-77.44532408565917, 34.60926188758838], [-77.44532713241817, 34.60925558522084], [-77.44538734497192, 34.60912917228826], [-77.44541091986679, 34.60908154866313], [-77.44548943463161, 34.609068029058875], [-77.44553921116092, 34.609070092222275], [-77.44567777775873, 34.60907595659303], [-77.44580974590822, 34.60909814803083], [-77.44587703147195, 34.60910756460131], [-77.44616726177628, 34.60915360382461], [-77.44635592214574, 34.60917291091575], [-77.44666415421648, 34.609111428980995], [-77.44686195743195, 34.60910103755388], [-77.44696569326206, 34.6090917188829], [-77.44742679752572, 34.60903488063653], [-77.44767436335658, 34.60913957588401], [-77.44792508346997, 34.609143786631506], [-77.4481410530176, 34.609008838893814], [-77.4483647750386, 34.60882958381966], [-77.44851912868302, 34.60872337435044], [-77.44873728033758, 34.60859807059171], [-77.44879950828945, 34.60849727952154], [-77.44889832920659, 34.608245975781195], [-77.44904953642448, 34.608087933633016], [-77.44911106488283, 34.60781604941306], [-77.44912032705008, 34.60774890442406], [-77.44913094150442, 34.607497017843635], [-77.44919886550755, 34.60742175230113], [-77.44917768301605, 34.607301461437245], [-77.4491709811645, 34.6070604476812], [-77.44905752562136, 34.60699121081302], [-77.44893438891904, 34.60680883686982], [-77.4490403157902, 34.60672845560988], [-77.4493287978804, 34.60659018459644], [-77.44968041212317, 34.606450488765354], [-77.44979224702132, 34.60636281980203], [-77.44991927020641, 34.60622437108612], [-77.4501027649257, 34.606170313336165], [-77.4502944866403, 34.606277145200146], [-77.45044572919689, 34.60632763234557], [-77.45058904282982, 34.60649006154827], [-77.4511117195079, 34.60633192976356], [-77.45132959638907, 34.6062176738869], [-77.45165738747005, 34.605903468752466], [-77.45194548086053, 34.605530621445645], [-77.45208565922727, 34.60513906723021], [-77.45238620678285, 34.604919698502805], [-77.4522995597614, 34.604691108723244], [-77.45215405965092, 34.604576333433535], [-77.45191623108687, 34.60452026804904], [-77.45160679366123, 34.604331176513554], [-77.45153799908141, 34.60416980636542], [-77.45143230811647, 34.60408735817139], [-77.45132996132413, 34.60393071197574], [-77.4513343120996, 34.603858643203004], [-77.45133697747531, 34.603746746113664], [-77.45117062188496, 34.60371701198823], [-77.45103495379739, 34.60357476744624], [-77.4509830380727, 34.60349961723866], [-77.45107245701482, 34.60335846476773], [-77.45117490962716, 34.60325705925033], [-77.45112617797979, 34.60309015172871], [-77.45127739588457, 34.602767099460394], [-77.45123078266798, 34.602657213932794], [-77.45112294648357, 34.602179736545445], [-77.45076094330923, 34.602220637552236], [-77.45072722552584, 34.60220646214318], [-77.45069818017097, 34.602193787520314], [-77.45064086861386, 34.60214108602917], [-77.45063407884813, 34.602091775788665], [-77.45067067008996, 34.602017004749065], [-77.4506928527455, 34.601971926945374], [-77.45083741864107, 34.60190016657849], [-77.45096293348404, 34.60174901498378], [-77.45099545850267, 34.60142127116348], [-77.45102915225638, 34.60136086907716], [-77.45101927007676, 34.60134440501019], [-77.45103842187731, 34.60131409345384], [-77.45132097388759, 34.600830584426845], [-77.45165293444148, 34.600444428387824], [-77.4517723877542, 34.600369153470666], [-77.45181593339387, 34.6003139665124], [-77.45194040878758, 34.60011825193138], [-77.45200449333757, 34.59997489153427], [-77.45203411054408, 34.59984134336929], [-77.45238205168096, 34.59949793548522], [-77.45215307440341, 34.59926357806174], [-77.45215099885371, 34.599194582381195], [-77.4520833719604, 34.59917650242343], [-77.4520932986331, 34.59893296304889], [-77.45210146846472, 34.59883945076212], [-77.45203859007037, 34.59877407909644], [-77.4520070240136, 34.598747923563764], [-77.45205939986336, 34.598748630304854], [-77.45216007300493, 34.598690975405376], [-77.45225212894633, 34.598678846284265], [-77.45230922133565, 34.598671711078936], [-77.4524252515642, 34.59869957321357], [-77.4524668682894, 34.598707514351936], [-77.45253064806482, 34.59871702903019], [-77.4529293743995, 34.598915836557936], [-77.452973341626, 34.59896001163364], [-77.45298809648662, 34.598984468113045], [-77.45322234508045, 34.59925824291093], [-77.45342329838059, 34.59936662934198], [-77.45366949030908, 34.599404249151576], [-77.45437657509206, 34.59966751391506], [-77.4546296434697, 34.59972011588791], [-77.45467923244462, 34.6001475325112], [-77.45447624400163, 34.600377607089314], [-77.45426382368643, 34.600621564909446], [-77.45425909722887, 34.601178075690775], [-77.4542872683472, 34.60124915769615], [-77.45435399040292, 34.601886047595876], [-77.45435497928806, 34.60188924990887], [-77.45435576232927, 34.601892512180726], [-77.45435106809491, 34.60189349030508], [-77.45434586435863, 34.6018959852747], [-77.45368612561855, 34.60227759240911], [-77.45346931267736, 34.60251285220127], [-77.4529932538731, 34.60265454024638], [-77.45284471074545, 34.6030585714323], [-77.45303942565724, 34.60329008913529], [-77.4531286762247, 34.603384504467854], [-77.45343701570087, 34.603628144556936], [-77.45381086384688, 34.60376023091242], [-77.45417233604951, 34.60393701197453], [-77.45465511422805, 34.60401921008435], [-77.45477785072308, 34.60411092865694], [-77.45502732410179, 34.60436312324457], [-77.45514521736688, 34.60457608412095], [-77.4551477752487, 34.604617203727884], [-77.4551289196416, 34.60464057762705], [-77.45513123785562, 34.604742594461], [-77.45508224903116, 34.6049339409316], [-77.45511042860676, 34.60499712048821], [-77.45515021157604, 34.60502718741467], [-77.45514360154974, 34.60511025312763], [-77.45513855021795, 34.60517373043155], [-77.45513389555299, 34.60523222345278], [-77.4551316131779, 34.60526090485316], [-77.45512445826623, 34.60527006603639], [-77.45511512346562, 34.60529870246854], [-77.45508206713701, 34.60537447400209], [-77.45506379570759, 34.605456161179625], [-77.4549424877373, 34.6055044264784], [-77.45482733452846, 34.60555251745181], [-77.45437968568164, 34.6056172061315], [-77.45432471075551, 34.60563677049076], [-77.45416464883967, 34.60577522687387], [-77.45345425494429, 34.60629753881837], [-77.45331278080772, 34.60648268760212], [-77.45332586561355, 34.60661394106841], [-77.45324821147709, 34.60689590899951], [-77.45319564838509, 34.60706109438826], [-77.45277398158366, 34.60750987647014], [-77.45277253015986, 34.60753244091122], [-77.452746643923, 34.60755306978907], [-77.45238130921486, 34.607991136032076], [-77.45277570200784, 34.60815294131015], [-77.4529023682643, 34.60821177941829], [-77.45291503379653, 34.60821772620102], [-77.45292750649077, 34.608213575187584], [-77.4529408080454, 34.60821070972586], [-77.45376152691203, 34.60809700505524], [-77.45393713338726, 34.6080609480709], [-77.45418563230854, 34.608035591852314], [-77.45419269279118, 34.608034305625125], [-77.45443866647634, 34.60814284164924], [-77.45445455501299, 34.60816394307144], [-77.45450820395232, 34.60844940949622], [-77.45448073542661, 34.60850010454546], [-77.4544419611466, 34.60873592579797], [-77.45448312884295, 34.60886868448286], [-77.4544718541115, 34.60905720218526], [-77.45446066131103, 34.609244355294074], [-77.45453887168235, 34.60938921691524], [-77.45466073000588, 34.60955655186953], [-77.45466589561804, 34.609734334825774], [-77.4548595763363, 34.609869096804154], [-77.45492119049312, 34.60987935802617], [-77.45498118248355, 34.6099537094609], [-77.4551021395074, 34.6101152948909], [-77.45511699198399, 34.61016493550206], [-77.45513727220344, 34.61021795673404], [-77.45518836883144, 34.61032920789801], [-77.45521847205679, 34.610430249703384], [-77.45523906757225, 34.610499378313946], [-77.45530494952968, 34.6107817132939], [-77.45534311480975, 34.610909353610865], [-77.45516797693026, 34.610949209847185], [-77.45512588343982, 34.6109009261818], [-77.45504390240046, 34.610804674558395], [-77.45500479382655, 34.610691545630964], [-77.45491148177331, 34.61065903871167], [-77.45485081825116, 34.61061012138148], [-77.45474871220557, 34.61054748217108], [-77.45458256826328, 34.61041785664696], [-77.4544751721641, 34.61034800507765], [-77.45431057635476, 34.61016883324308], [-77.45414469202778, 34.610073004753744], [-77.45394945357731, 34.609802386822196], [-77.45392374042729, 34.60976676527712], [-77.45390260350202, 34.6097533046092], [-77.45387361431034, 34.609748769922476], [-77.45381324831978, 34.60975473306945], [-77.45336102389182, 34.60979671877841], [-77.45297319789448, 34.6099753917745], [-77.4528153677453, 34.61002499118273], [-77.45282680253223, 34.61007963723203], [-77.45270736575699, 34.61030044929822], [-77.45259738251862, 34.610514332113134], [-77.45257030192592, 34.61055863905289], [-77.45253785324881, 34.61063034439019], [-77.45221497411886, 34.61105370930153], [-77.45190489476634, 34.6112816876839], [-77.45170677153644, 34.61143513344289], [-77.45166052919767, 34.611479113413694], [-77.45153510859004, 34.61155582142838], [-77.45125366039065, 34.61170034005591], [-77.45081968641352, 34.61175985845836], [-77.45078504137027, 34.611736598098425], [-77.45094101545429, 34.61122736634123], [-77.45106232395273, 34.610952140071795], [-77.45086876991931, 34.61071985181881], [-77.45082487128641, 34.61065060314336], [-77.45039095754949, 34.61046965813398], [-77.45030893140223, 34.61049001721856], [-77.44992388754528, 34.61068387554693], [-77.44951339918333, 34.61072784821187], [-77.44941147660234, 34.610732497874196], [-77.44936659830407, 34.610727860984824], [-77.44915548924668, 34.610757435196724], [-77.44865426077803, 34.610684480661554], [-77.44836108026949, 34.61073633074848], [-77.44823012609297, 34.610898218672666], [-77.44809994664115, 34.61105845113375], [-77.4478383558457, 34.61138053539769], [-77.44784376904586, 34.61167543637217], [-77.44780301276296, 34.61188163971362], [-77.44788877866964, 34.612017583320586], [-77.4480703915836, 34.61231269050514], [-77.44830770813027, 34.612461625107635], [-77.44832231642532, 34.61247206306656], [-77.44842644007345, 34.61279170773398], [-77.44842753795561, 34.612825504016136], [-77.44810370131191, 34.61327291667148], [-77.44805990256566, 34.61331626895351], [-77.44802516815633, 34.61334989543286], [-77.44787805205078, 34.61356234004856], [-77.44766674554205, 34.61372053086792], [-77.44761208848948, 34.61376138844729], [-77.44759425209374, 34.61377273832457], [-77.44757085463604, 34.61379412016286], [-77.44718048811401, 34.61410524605573], [-77.44705657532833, 34.614204004859424], [-77.44676685773348, 34.614392638114495], [-77.44673840012535, 34.61441080855113], [-77.44633515037593, 34.61457097472133], [-77.44626798548624, 34.61461291168748], [-77.4455011342572, 34.614898543784335], [-77.44533147172712, 34.61503290298445], [-77.44473884745672, 34.61570940748473], [-77.44562853922557, 34.61611802911701], [-77.44567526293842, 34.61615525539611], [-77.4457008743116, 34.616173610670835], [-77.44579261226966, 34.61623935766261], [-77.44595171836195, 34.616471339598206], [-77.44613026001468, 34.616513316295695], [-77.44624226625228, 34.61670640090626], [-77.44624833848296, 34.61675601627558], [-77.4462762972451, 34.61679193723719], [-77.44638385375602, 34.6170656469733], [-77.44638793219328, 34.61708546701351], [-77.44640542662796, 34.61709122966396], [-77.44642607989806, 34.61711075444697], [-77.4466113552112, 34.61729663317751], [-77.4467160388071, 34.61736116508797], [-77.44686623428387, 34.61744219381313], [-77.44707016895674, 34.61754293744387], [-77.44739267095598, 34.6175374829433], [-77.44753709836243, 34.61753635591207], [-77.44760332679306, 34.61756993824997], [-77.44784538250701, 34.6177776487825], [-77.44796581732648, 34.61792655404071], [-77.44803024639621, 34.61809419072181], [-77.44808013273997, 34.61824396567814], [-77.44809279297051, 34.61828299763637], [-77.44813110799618, 34.618434686059764], [-77.4481239513897, 34.61864756330915], [-77.44846091101948, 34.618781795890655], [-77.44880105912807, 34.61853080403701], [-77.448912890444, 34.61851229572659], [-77.4489837165142, 34.618510785522545], [-77.4491620061384, 34.618462005112264], [-77.44927061797351, 34.61847900554174], [-77.44927954543758, 34.618606285422075], [-77.44928809522142, 34.61870120414345], [-77.44925359396633, 34.61885311721544], [-77.44926003355695, 34.619087316749656], [-77.44926083340701, 34.61931106410955], [-77.4491594290767, 34.61961848276365], [-77.44917464739925, 34.61990030746419], [-77.44936495324833, 34.62029839098305], [-77.44930840957718, 34.62056650512178], [-77.44930521419622, 34.62068468425115], [-77.44920613733484, 34.620981917291466], [-77.44917000921619, 34.621092495719274], [-77.44915679248531, 34.621132858747075], [-77.44918366252739, 34.6214212696007], [-77.44889147535466, 34.62136660663122], [-77.44900893007974, 34.621138427565064], [-77.44889461171239, 34.62104113209754], [-77.448664424084, 34.620867406429554], [-77.4485860505811, 34.62082565304061], [-77.44847396339675, 34.62074964508322], [-77.44830303434124, 34.6206011990583], [-77.44820443755498, 34.62037784544425], [-77.44792299021077, 34.62034031035772], [-77.44780779266858, 34.620236944901094], [-77.4477104989983, 34.62006736389624], [-77.4476821456231, 34.620039729369445], [-77.44761173376885, 34.61997289135897], [-77.44750425667087, 34.61972119731185], [-77.4473208535241, 34.619629383800735], [-77.44718908231944, 34.61951531188316], [-77.44719708383008, 34.61943952924078], [-77.44704883791735, 34.61938533575408], [-77.44690925994523, 34.619218238832374], [-77.4467535481716, 34.619053220951855], [-77.44662183485468, 34.61886504429829], [-77.44660403621621, 34.61867705852708], [-77.44652745888556, 34.61852269977194], [-77.44626008692973, 34.61842483268292], [-77.44603185068709, 34.61846224640979], [-77.44555911521819, 34.618635291286616], [-77.44549616991074, 34.61881675135224], [-77.4453551309611, 34.618960247746095], [-77.44514402410564, 34.61910945875674], [-77.44511717532023, 34.619123274818186], [-77.44484888452114, 34.61903156940662], [-77.44483293434705, 34.61901360157732], [-77.44482756458675, 34.61899872693068], [-77.44473399811588, 34.61866481042483], [-77.44471558932023, 34.61854467752531], [-77.44471463278727, 34.61833979911184], [-77.44470406732336, 34.61825684188363], [-77.44459105441804, 34.61796706045861], [-77.44438249478239, 34.61773566064148], [-77.44397925039632, 34.61777548813782], [-77.44337975015621, 34.61757391714731], [-77.44345406215965, 34.61727928254557], [-77.44338284263635, 34.61712913455217], [-77.44328078345039, 34.616863631718005], [-77.44311589565852, 34.61654153033107], [-77.44311585944368, 34.61654140360758], [-77.44311608197556, 34.616540963228054], [-77.44306314947167, 34.6161871810226], [-77.442989652628, 34.61608105696116], [-77.4429070679001, 34.61588220268436], [-77.44290994570513, 34.615861610486334], [-77.44290192910492, 34.61584723728867], [-77.44292913526326, 34.61548688780785], [-77.4421941858551, 34.61509570002837], [-77.44183145568077, 34.61536855687517], [-77.4417298262167, 34.61543705908624], [-77.44172206801461, 34.6154617806244], [-77.44130266253009, 34.61568013633123], [-77.44091498731888, 34.615771319780556], [-77.44080342028869, 34.61577697498244], [-77.44073278003403, 34.61579735112772], [-77.44031093053317, 34.6158984874438], [-77.43991574753719, 34.61604104298175], [-77.43970767120845, 34.61613619539451], [-77.43933917251212, 34.61618983197061], [-77.43887667655304, 34.61629682063958], [-77.43879802226739, 34.61633388974502], [-77.43836373405834, 34.61646774594182], [-77.43806544227866, 34.61663233180249], [-77.43803427341642, 34.616882348045294], [-77.4379672970812, 34.61694025692443], [-77.43784084415947, 34.617173157571095], [-77.43768167094098, 34.61735210577015], [-77.43758733288178, 34.61747297315186], [-77.43719978055708, 34.61756822528097], [-77.4367876269826, 34.617877007527134], [-77.43665477137425, 34.61790763243042], [-77.43657758925778, 34.61796989714516], [-77.43658228188157, 34.61803473219634], [-77.43660607764865, 34.618098909532506], [-77.43681125839338, 34.618671115054156], [-77.43678978405443, 34.61871407250131], [-77.43641310662653, 34.61894576014426], [-77.43629313116924, 34.619109210795244], [-77.43603374907143, 34.619255530723535], [-77.43597965327083, 34.61928308169466], [-77.43592776959431, 34.619291054965444], [-77.43556045613211, 34.61937691200926], [-77.43547470740447, 34.61935916221548], [-77.4349375750986, 34.61925420651909], [-77.43491913208298, 34.61925022684075], [-77.43491107151144, 34.619249573154086], [-77.43431803627382, 34.61906706399954], [-77.43383122736404, 34.61911728556635], [-77.43355330400637, 34.61938913816404], [-77.43310875381638, 34.61963086443073], [-77.43295087883091, 34.61974288476243], [-77.43291079157976, 34.619783691562546], [-77.43248919385522, 34.619939843122495], [-77.43247999070853, 34.61994344895843], [-77.43247230756488, 34.61994465575669], [-77.43206880720356, 34.61998768245703], [-77.43195096784311, 34.61993154659723], [-77.43178502244209, 34.62000908956237], [-77.43124904235441, 34.6200753974411], [-77.43092906832749, 34.620039851145364], [-77.43022934458723, 34.62058387898681], [-77.43007315862042, 34.6206487750228], [-77.43005122009332, 34.620674687934944], [-77.4299188329912, 34.62078690075365], [-77.42962239409212, 34.62102903228813], [-77.42950994365458, 34.62107107801943], [-77.42926385496537, 34.62158731034484], [-77.42925594227258, 34.6215997464904], [-77.42925508803467, 34.621601322280256], [-77.4292547681517, 34.621607087698486], [-77.42918862283096, 34.62198816586055], [-77.42929082935828, 34.62223328888413], [-77.4293165921795, 34.62232093482183], [-77.42934118714984, 34.622406905646116], [-77.42952302489822, 34.62258760348189], [-77.42978903168483, 34.62277373163238], [-77.42982492920625, 34.62291454754706], [-77.42979212261551, 34.62302821663205], [-77.42997349458196, 34.62346241969092], [-77.43001244269644, 34.62359958472079], [-77.43015939481954, 34.62377622716618], [-77.43022803071514, 34.623907386047414], [-77.43032870175757, 34.62394245932678], [-77.43036239037752, 34.62415700765159], [-77.43027123724184, 34.62426431044417], [-77.43030948201563, 34.62444821413412], [-77.43035425789913, 34.62460988915716], [-77.4304847482687, 34.62466588072566], [-77.4306113874782, 34.624863613829795], [-77.43062505632295, 34.624901957242855], [-77.43063427942735, 34.624940209004286], [-77.43072355824899, 34.625053744461155], [-77.43080840268209, 34.62518448612705], [-77.43086377690474, 34.6252031660988], [-77.43096907515209, 34.6252985353535], [-77.43101250064674, 34.625530020798905], [-77.43144129369134, 34.62575520409373], [-77.43172967706305, 34.62588691527211], [-77.43179779434033, 34.626044708132746], [-77.43179015263854, 34.626205366468355], [-77.43183641895752, 34.626772178873104], [-77.43191709135405, 34.62748615769851], [-77.43191709034363, 34.62748868979054], [-77.4319188586319, 34.62750047168939], [-77.43184301566423, 34.62824725356826], [-77.43195594154292, 34.62835281717245], [-77.4321564356564, 34.628368666878266], [-77.43240084166747, 34.628723284196745], [-77.4324495967289, 34.62881287252529], [-77.4325651188813, 34.62895438262745], [-77.43257104899082, 34.62896288149424], [-77.43257495475194, 34.62896758797079], [-77.43257927886992, 34.62911419944509], [-77.43256546606649, 34.629149092242706], [-77.4325495837416, 34.6292586677754], [-77.43253413779998, 34.62947453880403], [-77.43252523805472, 34.629529795756454], [-77.43252252771805, 34.62955892094828], [-77.43251630710469, 34.6296837340099], [-77.43186568601237, 34.62971774825547], [-77.43157775594526, 34.62972909144767], [-77.43147813553284, 34.62973301569841], [-77.43097540640154, 34.62955101727696], [-77.43090253377119, 34.62955111998383], [-77.43060780235037, 34.62933772297815], [-77.43050947491247, 34.62920624581872], [-77.43020783832375, 34.62893397015735], [-77.43001834008578, 34.62876721911754], [-77.42993398375602, 34.62865294925325], [-77.42979242218061, 34.62825422529433], [-77.4296846155311, 34.62812384204028], [-77.42960966874654, 34.62802048812399], [-77.42962900287749, 34.62792675034127], [-77.42971270489971, 34.62774660144551], [-77.42982538132773, 34.627536204385635], [-77.4299345965782, 34.6274142590728], [-77.42990313287358, 34.6273231013889], [-77.42985468912865, 34.627264030184534], [-77.42975385189483, 34.62704126956496], [-77.42972960407532, 34.62700331320107], [-77.42972036347234, 34.62697111803484], [-77.42963449499396, 34.6268385513433], [-77.42956025255359, 34.62670971544825], [-77.4295408929016, 34.62668785103399], [-77.429525622027, 34.62665165791098], [-77.42939917331485, 34.62635899865035], [-77.42933254650279, 34.62627435000583], [-77.42933099847315, 34.6261938075061], [-77.42929554864762, 34.62611907274306], [-77.42929307418096, 34.626105670140674], [-77.42932378925047, 34.626084563642316], [-77.42941452831334, 34.62603459884903], [-77.42945303748535, 34.626006797673114], [-77.42953226146577, 34.62595183810602], [-77.42985233353099, 34.625712979105906], [-77.42997152063083, 34.62556882499839], [-77.42996905806376, 34.62545813187221], [-77.42996554819263, 34.62530034556946], [-77.4299608967626, 34.625091220271145], [-77.4295662465928, 34.62487418401667], [-77.42914373192865, 34.62465962150534], [-77.4290789875968, 34.62460405798146], [-77.42905173241296, 34.6245888134275], [-77.42902044165946, 34.62459421296337], [-77.42845391995903, 34.62441293885206], [-77.4284509748208, 34.62440883150501], [-77.42833885302574, 34.62437788253366], [-77.42787119107675, 34.62423722174606], [-77.42785361113943, 34.62422470209467], [-77.42775861332895, 34.624241830867575], [-77.42712156347383, 34.62420514745305], [-77.42716161054427, 34.62404270942993], [-77.42719340986274, 34.623976920105335], [-77.42713461875408, 34.62368116700119], [-77.42716122797195, 34.6235639931825], [-77.42720429436416, 34.62336126899912], [-77.4272828609171, 34.623269692515635], [-77.42749605012023, 34.62286594920071], [-77.42752000002294, 34.62285232356324], [-77.42753312628913, 34.62282914655471], [-77.4277050890208, 34.622607385382054], [-77.42770428916711, 34.62257901074911], [-77.42762318288976, 34.62243425072661], [-77.4273164268624, 34.62220934427463], [-77.42726449901066, 34.62220234609513], [-77.42713810776661, 34.622203238319265], [-77.42725762835101, 34.622141016010325], [-77.42701626814976, 34.62186872256437], [-77.42696239238722, 34.62165744027103], [-77.42681481544746, 34.62155689236981], [-77.42658143778502, 34.62144454252218], [-77.42647990952656, 34.62133295196571], [-77.42596490991366, 34.62111275622091], [-77.42592860721082, 34.621092559615974], [-77.42589789397786, 34.621079696361136], [-77.42554220998763, 34.620921024394434], [-77.42540600653251, 34.62085062126836], [-77.42538217818051, 34.62084621348409], [-77.42536416130362, 34.6208386367039], [-77.42485193989087, 34.620639261339534], [-77.42483521117538, 34.620600525513716], [-77.4247661513697, 34.62057451175548], [-77.42431095239803, 34.62032708887162], [-77.42365368500184, 34.62035170368506], [-77.42292240495709, 34.62045056645914], [-77.42269690033751, 34.62047124450923], [-77.42265037438762, 34.62044516591314], [-77.4226014557161, 34.6204824345096], [-77.422461752916, 34.62055531247191], [-77.42225621953907, 34.62062875362139], [-77.42217756314102, 34.620681092435106], [-77.4219137136407, 34.62069013361517], [-77.42186203062289, 34.62069079176599], [-77.4218322062535, 34.620678358704], [-77.42179122103911, 34.620652158998], [-77.42127890621286, 34.620504991653306], [-77.4210735490089, 34.62041720304005], [-77.42075296152088, 34.62045680316674], [-77.42028515487173, 34.62047882733884], [-77.41988384496273, 34.62051069846673], [-77.41949675689864, 34.62053050295798], [-77.41917757340859, 34.62068579820744], [-77.41902953874197, 34.62070509357598], [-77.41870840997538, 34.62081217799689], [-77.4185333384325, 34.62093405636701], [-77.41848521977707, 34.62094543391686], [-77.4183142187373, 34.62088263985387], [-77.41820635981927, 34.62086144498586], [-77.41791996329233, 34.62066228955082], [-77.41761188330338, 34.62073837503663], [-77.41741812533756, 34.62074315430515], [-77.41713156087566, 34.62071249545451], [-77.41681918303541, 34.62085747674989], [-77.416622769123, 34.6208504942719], [-77.41634316914804, 34.620822758079065], [-77.41626620126105, 34.62068370791409], [-77.41615898686379, 34.6206163194587], [-77.41602841974088, 34.620549532875096], [-77.41594886876807, 34.6203452617203], [-77.4159163853747, 34.620261733642046], [-77.41590211729873, 34.62017850543837], [-77.4157732127735, 34.6198228542106], [-77.41570129561747, 34.61967516838389], [-77.41555452897089, 34.619635033049576], [-77.41527512413616, 34.61959383759621], [-77.41516031086249, 34.61954775836798], [-77.41511732516805, 34.61953926461621], [-77.41492335874543, 34.61952097148968], [-77.41481217989178, 34.61948738975687], [-77.41476609946055, 34.61949361805104], [-77.41471402798118, 34.61949510830678], [-77.41437806329813, 34.61959307448814], [-77.41437191473887, 34.61958956158837], [-77.41435855964897, 34.61958812785368], [-77.41427591383783, 34.61961444321166], [-77.41397772726697, 34.619675086925085], [-77.41395921267684, 34.619680106414954], [-77.4138200783433, 34.61968025001751], [-77.41363889456741, 34.61964676414525], [-77.41350553150409, 34.61964166078605], [-77.41318929283476, 34.61949230510125], [-77.41308523579471, 34.61947382405183], [-77.41279509251115, 34.61950194207104], [-77.41241124153456, 34.619470199797775], [-77.41240088552482, 34.61946850334822], [-77.41239485637544, 34.61946790485757], [-77.41236439921529, 34.619465807703754], [-77.41185015990305, 34.619284014366684], [-77.41161243034375, 34.619104738260816], [-77.41136795793348, 34.61902378009206], [-77.41082400218426, 34.61889629534621], [-77.410784529069, 34.6188872087235], [-77.41073330497147, 34.61885208847363], [-77.41037109555603, 34.61854297300828], [-77.41036304734237, 34.618480951498306], [-77.41019532938608, 34.61833304818228], [-77.41017511862289, 34.618233852867164], [-77.4102003876055, 34.61807985007216], [-77.41014902186704, 34.617964980351346], [-77.41003548273319, 34.61790822396494], [-77.40994425987554, 34.61769223925204], [-77.40987582073274, 34.61753019753526], [-77.40986083688296, 34.61749199068377], [-77.40985332309789, 34.61747693055969], [-77.40983832804878, 34.617427521213145], [-77.40979473335125, 34.61728924222694], [-77.40979318501067, 34.617125760690556], [-77.40977995995024, 34.61701627001728], [-77.40982146244895, 34.61686080555397], [-77.40987329205021, 34.61660327003522], [-77.40989130164999, 34.6164261467342], [-77.40964107483454, 34.61607503558037], [-77.40962434679487, 34.61605811427109], [-77.40951485790761, 34.61605590131313], [-77.40924688493409, 34.616042706526585], [-77.40920585144188, 34.61605630147898], [-77.40895220926342, 34.61602992340916], [-77.40885269311656, 34.61599006090495], [-77.40852953265171, 34.61585004945329], [-77.40845849093343, 34.61583086893367], [-77.40843002070002, 34.61581855833357], [-77.40839145181181, 34.61579346069874], [-77.40796241691763, 34.61554051569445], [-77.40767007490872, 34.615336788014275], [-77.40750452179765, 34.61525061558123], [-77.4072426090182, 34.61511010346934], [-77.40688166984883, 34.614864633475754], [-77.40650375231678, 34.614774626383216], [-77.40648748190888, 34.61477667860191], [-77.40645863613186, 34.61476759279026], [-77.40609329521672, 34.614693944941315], [-77.40571737110193, 34.614481052596346], [-77.40559477992305, 34.61418650798484], [-77.4053049036836, 34.614203993519766], [-77.40503358408843, 34.61402280092908], [-77.40465106507892, 34.613785765296655], [-77.40457333663882, 34.6137357849987], [-77.40451652209579, 34.61373057812977], [-77.40434981304351, 34.61364967171402], [-77.40412233715017, 34.61354690685495], [-77.40403255865031, 34.61354713653651], [-77.40372815603138, 34.61341244354128], [-77.40337590201719, 34.61350002690132], [-77.40293980417889, 34.61335223434631], [-77.402896862308, 34.61323597089917], [-77.40279844746776, 34.613203920368136], [-77.40238859777277, 34.61300760941388], [-77.40215144420765, 34.612907594487766], [-77.40186101357173, 34.61280284714783], [-77.40175726896102, 34.6127780109853], [-77.40160976610889, 34.61252626642508], [-77.40148610092442, 34.61241161000463], [-77.40136309072173, 34.61233680320473], [-77.40112485582327, 34.61217164872437], [-77.40111277137231, 34.61201844125856], [-77.40096891799124, 34.612047236510925], [-77.40079046293805, 34.61198753575799], [-77.40077183316025, 34.611990021330364], [-77.4007409057415, 34.61198143881414], [-77.40057474863512, 34.61194029132132], [-77.40048871216875, 34.611931519284255], [-77.40029234660435, 34.611867174199276], [-77.40022085044583, 34.61183411148507], [-77.40018058026054, 34.61180064559101], [-77.39999175841811, 34.61168934972382], [-77.3997864134247, 34.611615407273675], [-77.39957480903831, 34.61154610955686], [-77.3994480535948, 34.61150428323374], [-77.39939224784399, 34.61147083783287], [-77.39927645320942, 34.611464420253895], [-77.39899808244746, 34.61139982453812], [-77.39833352714636, 34.61143391426045], [-77.3982097464088, 34.61153505251788], [-77.39800685448989, 34.61156624958784], [-77.39768770765725, 34.61168058335454], [-77.39751070679716, 34.612172210516015], [-77.39748951050663, 34.61227147356752], [-77.39750008958778, 34.612354723372135], [-77.39749557342545, 34.61269517148354], [-77.39742137096667, 34.612742714741465], [-77.39736319755411, 34.61277692301408], [-77.39722428015685, 34.61286348714139], [-77.39714456467578, 34.61287222158009], [-77.39702719256739, 34.6128851489868], [-77.39689324917254, 34.61292631610142], [-77.39663302134191, 34.61282884872148], [-77.39626915355866, 34.61290470097042], [-77.39584466437348, 34.613016998781376], [-77.39560350172198, 34.61313287494823], [-77.39545048176333, 34.61315733890295], [-77.39529294824992, 34.61318252294297], [-77.3950563025854, 34.61322022764569], [-77.39489338200859, 34.61324594840615], [-77.39482589937461, 34.613256602054676], [-77.39466212771069, 34.61320817507366], [-77.39460611992405, 34.61317222167017], [-77.39429035760097, 34.61315742821729], [-77.3942732647644, 34.61315417483794], [-77.39426795579588, 34.6131549515922], [-77.39426189874713, 34.61315500807169], [-77.39397728183296, 34.61309109769978], [-77.39387379056868, 34.613019741282386], [-77.39368358465104, 34.61304005534476], [-77.39347961170503, 34.61306856854222], [-77.39322914857851, 34.61315565400879], [-77.39294073368578, 34.613196195466905], [-77.39290220459345, 34.61335760017408], [-77.39269121000189, 34.613636023143236], [-77.39261518280347, 34.61374167780533], [-77.39255439641178, 34.6138323213042], [-77.39253277871018, 34.61400604775558], [-77.39247933661713, 34.61426771382389], [-77.3925082971668, 34.61446047230029], [-77.39251417984129, 34.61449666509248], [-77.39249403526463, 34.614569240384085], [-77.39247990632498, 34.61467699395953], [-77.39232353481863, 34.61468609594056], [-77.39229693464179, 34.6146689390764], [-77.39222284997632, 34.614649468138275], [-77.39205230861964, 34.61459277746388], [-77.3919027657269, 34.6145254648636], [-77.3915799258391, 34.61447423241479], [-77.39150859091139, 34.61445135597839], [-77.39145721591086, 34.61447042157113], [-77.39111441203951, 34.61442118756386], [-77.39088029212411, 34.6146706988975], [-77.39053372670581, 34.61474907309231], [-77.39032602469445, 34.614616977491565], [-77.38979469302971, 34.6150793481887], [-77.38960580272385, 34.61518005356143], [-77.38953757798804, 34.61524962328533], [-77.38938835248462, 34.61540179045895], [-77.38921099231523, 34.61558806483729], [-77.38917585387135, 34.61562814784585], [-77.38914329545584, 34.61598400228814], [-77.3891385420628, 34.61601796226801], [-77.38913379232655, 34.61602376190648], [-77.38913854070216, 34.61602819232879], [-77.38913021620503, 34.61643482151087], [-77.389130214343, 34.61644884554036], [-77.38913021248311, 34.61646286956941], [-77.38914320810645, 34.61665371718669], [-77.38915555963706, 34.61686975962071], [-77.38914834911422, 34.61728974071554], [-77.38914859083795, 34.61729533206455], [-77.38916497283462, 34.6173165047873], [-77.3893966835405, 34.617684135131086], [-77.38939440839927, 34.61783831192939], [-77.38953725463641, 34.617825048645855], [-77.38969708694695, 34.61781297282198], [-77.38993144525966, 34.61789049603716], [-77.39009809084413, 34.61782811001087], [-77.39032565253763, 34.61781601629842], [-77.39046249060297, 34.61767784785177], [-77.39070184939912, 34.61749597611075], [-77.39071988848696, 34.617475096952525], [-77.3910227450916, 34.6173513197063], [-77.39111409934091, 34.617340659200245], [-77.39123109698605, 34.6172936652097], [-77.39150830289321, 34.6172646954277], [-77.39168976840199, 34.61712440676804], [-77.39171524024236, 34.617127002818464], [-77.39190249913773, 34.617256233495176], [-77.39194751561442, 34.61726789435677], [-77.39229669519197, 34.617248112452415], [-77.39234323983686, 34.61725932424959], [-77.39257968182214, 34.61734500098515], [-77.39269088211731, 34.617343065051564], [-77.3928255002294, 34.61740207356351], [-77.39286574258612, 34.61742021479344], [-77.39288797150908, 34.617442262078455], [-77.39298501163563, 34.61748359464276], [-77.39308506143789, 34.617540528418154], [-77.39310566633007, 34.6175517677467], [-77.39347923577952, 34.61782625126612], [-77.39354900469202, 34.617859457640456], [-77.39368240594679, 34.617915369478055], [-77.39377391620121, 34.61800934448986], [-77.39387342147015, 34.617991578727526], [-77.39406294410318, 34.618064627581276], [-77.39407535572975, 34.618065779491474], [-77.39407671491695, 34.618077474631036], [-77.39394711569915, 34.61830176967294], [-77.39390896347909, 34.618345578840064], [-77.39358487569513, 34.61877857294325], [-77.39352659650844, 34.618838069222896], [-77.39347915238426, 34.61891076844541], [-77.39310172879382, 34.61925470349252], [-77.39269074458322, 34.61893254521557], [-77.39268347141625, 34.618908546227274], [-77.39241770072043, 34.61839185336337], [-77.39190237746767, 34.618521864798396], [-77.3917725538407, 34.61833058951901], [-77.39121856198878, 34.61838324638672], [-77.39111398926025, 34.618382321318045], [-77.39101707653535, 34.618404042261254], [-77.39038469060966, 34.61845450237201], [-77.39032556510678, 34.61857726296816], [-77.39004630031616, 34.618988032700514], [-77.39008307455545, 34.61928345659538], [-77.39001139124139, 34.61963203158984], [-77.39003246596357, 34.619824369522675], [-77.38965838535887, 34.62006305813249], [-77.38953697201391, 34.62010803875942], [-77.38946797630952, 34.62014696119404], [-77.38941982504949, 34.62022820665301], [-77.389451093774, 34.62031616267452], [-77.38953694964896, 34.62028985292124], [-77.3897513600545, 34.62041135064941], [-77.3899761643325, 34.620524073497116], [-77.38997646884492, 34.62057252985443], [-77.38998858539003, 34.62063267433904], [-77.39005083809583, 34.62077409285587], [-77.38993779428675, 34.62099543846835], [-77.38993458460727, 34.621003136130156], [-77.38993107548937, 34.62100503804201], [-77.38992924767199, 34.62100587395378], [-77.38973395860238, 34.62108957180689], [-77.389622031718, 34.62113993854598], [-77.38953684001936, 34.6211846533275], [-77.38934216745074, 34.62129818306781], [-77.38914261010919, 34.621306511889124], [-77.38903431806304, 34.62144087090245], [-77.38892068702435, 34.62157386234443], [-77.38891145354995, 34.62182407497243], [-77.38885865525589, 34.62200737165598], [-77.38889782606361, 34.62216278084513], [-77.38888812271809, 34.62242769169255], [-77.38902405594001, 34.62253560993795], [-77.38914242686056, 34.622757083526665], [-77.38916500643444, 34.62281234666528], [-77.38919267702089, 34.62286249030061], [-77.38927958524039, 34.623072639077954], [-77.38933949201339, 34.623128543065945], [-77.38938233717552, 34.62320558586466], [-77.38939097739777, 34.62336114514246], [-77.3894014009957, 34.62348184236537], [-77.38929193211044, 34.62348207530425], [-77.38914233695829, 34.62347315061087], [-77.38908645931711, 34.623460520793294], [-77.38899165153234, 34.623424193233575], [-77.38886685383133, 34.62340776508035], [-77.38874812384142, 34.62337906024081], [-77.38853284078085, 34.62332803948082], [-77.38854995726203, 34.6231144608608], [-77.38836711661082, 34.62292735986912], [-77.38820920467111, 34.62268148808764], [-77.3879597933902, 34.62252423152256], [-77.38780486346477, 34.62232615603028], [-77.3878529357713, 34.62215234131224], [-77.38791040856763, 34.62209080511561], [-77.38795987187625, 34.621964758344106], [-77.38828109980003, 34.621666057419446], [-77.38833164138637, 34.621634546545415], [-77.3887435141655, 34.62117483437523], [-77.38874534319213, 34.6211712647736], [-77.38874841510638, 34.62115373141687], [-77.38894696815171, 34.62051012176609], [-77.3889875078784, 34.6202905270826], [-77.38892036380908, 34.62011516261204], [-77.38874859500177, 34.619793169189094], [-77.38865219987323, 34.61959357427383], [-77.38851959994449, 34.61950884140218], [-77.38835443300846, 34.61945814194677], [-77.38799658191064, 34.61954506426245], [-77.3879602155186, 34.61953532973242], [-77.38793508468599, 34.61956603602226], [-77.38788737318274, 34.61959997498013], [-77.38756598235273, 34.619713625039395], [-77.38723053169788, 34.61975794223761], [-77.38717176579172, 34.61977099480048], [-77.38708241315749, 34.61981222898442], [-77.38677752722005, 34.619965178706124], [-77.3865862839641, 34.62000611451438], [-77.38638329127616, 34.62013127505526], [-77.38632822150846, 34.620189973139816], [-77.38618742524174, 34.620269566199646], [-77.38604369353465, 34.62034913832892], [-77.38598904008015, 34.62037973127602], [-77.38584671519037, 34.62047193875299], [-77.38559478873246, 34.620615091226156], [-77.38549420415633, 34.62068572691332], [-77.38527728800578, 34.62082530552619], [-77.38520053016668, 34.62087874560845], [-77.38493998039192, 34.621017899450436], [-77.38480623661444, 34.62132416529177], [-77.38463753628183, 34.621584998279836], [-77.38461035816101, 34.62177055255975], [-77.38451330907446, 34.62189373681688], [-77.38447384165157, 34.622002509153745], [-77.38441188631882, 34.622055961780845], [-77.38428920552201, 34.62210928610179], [-77.38410008421035, 34.622179867395715], [-77.38401765317879, 34.62212823662103], [-77.38364609185341, 34.62230963702573], [-77.38359855092264, 34.62231416937088], [-77.38358473406612, 34.62234291945567], [-77.3832291386739, 34.62250581100423], [-77.382942239353, 34.622551096370756], [-77.38265694511307, 34.62266824741368], [-77.38244068455236, 34.622555314660325], [-77.3821952234234, 34.62270338936255], [-77.38194672085532, 34.62268634014235], [-77.38165224546292, 34.62252918207867], [-77.381042409112, 34.62247702901307], [-77.38086382994886, 34.622399152804675], [-77.38077170486062, 34.622422900914], [-77.38046958742798, 34.62248871153608], [-77.38021842417216, 34.62255749364164], [-77.38007534336653, 34.6225810725137], [-77.37953598760909, 34.62277003545087], [-77.3792867175912, 34.62331811634556], [-77.37905219739373, 34.62342055092758], [-77.37860513279398, 34.623600124096484], [-77.3784981942299, 34.62359537608266], [-77.3782696771002, 34.62377932943071], [-77.37770962060802, 34.62404342713773], [-77.37754255252597, 34.624307303916325], [-77.37749610725271, 34.624493841640955], [-77.37731523646556, 34.62462005583002], [-77.37712114843015, 34.62476343776663], [-77.3771061742875, 34.62477511138488], [-77.37692093856083, 34.6248590500789], [-77.3767689532623, 34.625023147208964], [-77.37660690866976, 34.62513294357775], [-77.37652660958976, 34.625202414685134], [-77.37637915362711, 34.625345099839876], [-77.37615401454426, 34.62551288513814], [-77.37613228760962, 34.62550919585576], [-77.3761071339911, 34.62551595053876], [-77.3760704793005, 34.62554831641483], [-77.37548740756134, 34.625787024238456], [-77.37539245715129, 34.62607053513544], [-77.375343636234, 34.62611823327428], [-77.37505145587123, 34.62622959321675], [-77.37494929984096, 34.6264444449437], [-77.3748925595826, 34.626506010461384], [-77.37488115534498, 34.62656873721499], [-77.37475210506085, 34.62669345109678], [-77.37470123464597, 34.62675216674903], [-77.37457398787498, 34.62682525676845], [-77.37455494041332, 34.62683749790381], [-77.37436865759486, 34.62686651088498], [-77.37434479128325, 34.626872283524804], [-77.37416069576086, 34.62683923534594], [-77.3739255122342, 34.62687767404576], [-77.37376643797, 34.62688341911507], [-77.37318959191322, 34.62704032137955], [-77.37297787835607, 34.62710597903883], [-77.37239457605249, 34.62777595849694], [-77.37297747793471, 34.62837160242166], [-77.37308175609293, 34.62841380998276], [-77.3733587419874, 34.62848623085892], [-77.37337168156043, 34.628525799836005], [-77.37344979166583, 34.628813467267136], [-77.3734537131355, 34.628897113267136], [-77.37346100810504, 34.628992411374774], [-77.37351308304761, 34.62931312226258], [-77.37351304556796, 34.6295851012855], [-77.37376562231691, 34.629544122879295], [-77.37411613433864, 34.62969789222245], [-77.37415983349318, 34.62969640876041], [-77.3742552995281, 34.62973360852693], [-77.37437307679124, 34.62980872213256], [-77.37455400932569, 34.62997297803676], [-77.37457249481182, 34.62998975972899], [-77.37458946255133, 34.630007227694975], [-77.3747568768043, 34.63018914952109], [-77.37478388732644, 34.63022685225987], [-77.37487273464318, 34.63039099087774], [-77.37486818313475, 34.63047772743472], [-77.37494812109156, 34.63047880077905], [-77.37512561331215, 34.63077913098041], [-77.37518971326134, 34.63093415978352], [-77.37523227657678, 34.63106994469419], [-77.37521802275226, 34.63119038217877], [-77.37534210940024, 34.63143422203998], [-77.37537579904925, 34.63155590328054], [-77.3753891853652, 34.6315902911615], [-77.37543339093355, 34.63168229551348], [-77.3754902313179, 34.63226510136599], [-77.37573610744738, 34.63238917136056], [-77.37573621322015, 34.63238943150934], [-77.3757365270506, 34.63238983834955], [-77.37583274070892, 34.63269594008089], [-77.37603828137341, 34.63267139836144], [-77.3761302879317, 34.632715107591444], [-77.37623689751082, 34.6327418797396], [-77.37635163083364, 34.63291151010869], [-77.37670617383704, 34.63286990009263], [-77.37691877164268, 34.63293897081867], [-77.37705956709097, 34.63289634936332], [-77.37754375732263, 34.63297820740448], [-77.37756316034779, 34.63313058859542], [-77.37770726242705, 34.633150790593845], [-77.37779745608374, 34.63303875605872], [-77.37821593691119, 34.63288138450774], [-77.37845931893726, 34.63280694184233], [-77.37849591529977, 34.632719450798895], [-77.37853230999193, 34.632796600918425], [-77.37855665067143, 34.632832306133494], [-77.37879905441471, 34.63289547524798], [-77.37889011244506, 34.633025631864754], [-77.37893849893626, 34.63314972666472], [-77.3792373565749, 34.633532861968625], [-77.37922351908409, 34.6335853671224], [-77.37925505348873, 34.633612259602906], [-77.37926210952487, 34.6344052974543], [-77.37926161533628, 34.634429003976905], [-77.37926216376118, 34.6344524896853], [-77.37928402654455, 34.634542701150885], [-77.37936318679003, 34.63517809580725], [-77.37940206632453, 34.63525789595214], [-77.37955207819144, 34.63579645568238], [-77.38007230801753, 34.63577266908028], [-77.38019622844627, 34.635859159756244], [-77.38034527699331, 34.635971145279896], [-77.38060938100365, 34.63620380681337], [-77.38086073998487, 34.63641525058094], [-77.38106293085545, 34.63649914885271], [-77.38125501459221, 34.63647955557341], [-77.38161128264099, 34.63663788511362], [-77.38163123415467, 34.636654428137454], [-77.38164926242649, 34.63667671069295], [-77.38170388830885, 34.63668336479442], [-77.38191947956503, 34.636593482261766], [-77.38240370653804, 34.63648692232335], [-77.38243787967069, 34.63647940201888], [-77.38296987805028, 34.63644214392775], [-77.38301349783974, 34.63666512972361], [-77.38269164344848, 34.637604841888674], [-77.38220291732245, 34.638250899597374], [-77.38164890091286, 34.63843923313532], [-77.38156864789649, 34.63842869552], [-77.38090953921423, 34.638437235374106], [-77.38086030772217, 34.638428161109985], [-77.3808509807994, 34.638435630381494], [-77.38009230456444, 34.638532766411366], [-77.38007168796189, 34.63853581197239], [-77.3800588767613, 34.63854598819199], [-77.37977135484802, 34.63850002968094], [-77.37967739467811, 34.638513046214925], [-77.37954410359055, 34.63842165325142], [-77.37953482754584, 34.638364254704065], [-77.37940188948997, 34.63822985788078], [-77.37928318470959, 34.6381333839779], [-77.37916881626597, 34.637962059365826], [-77.3790459773427, 34.63785656366652], [-77.37875975269762, 34.637612412680724], [-77.37849472262518, 34.6375920739623], [-77.37827078173737, 34.637543664108975], [-77.37815047052388, 34.637507132726526], [-77.37810044942361, 34.63750684287355], [-77.37799253015766, 34.63746752916093], [-77.37787622611073, 34.63741739368143], [-77.37770619532074, 34.63734900165185], [-77.37761709136919, 34.63730921327987], [-77.37705675157389, 34.637293965958335], [-77.3769667541079, 34.637254036961735], [-77.37691763073614, 34.63726458034974], [-77.37687458510287, 34.63727385610771], [-77.37686420827522, 34.63732169822601], [-77.3765232610192, 34.63755184706322], [-77.3763717006077, 34.63765402849667], [-77.37622603984198, 34.63773359406551], [-77.37612890438308, 34.63778071930049], [-77.37607022034466, 34.6377974296601], [-77.37575161809099, 34.63788815153431], [-77.37573458091845, 34.6378814199146], [-77.37572065639132, 34.637895968511955], [-77.37562124778948, 34.63792527401884], [-77.37534025196143, 34.637998044017344], [-77.37531147405844, 34.63800087233686], [-77.37514309754562, 34.63801923148258], [-77.3749640010244, 34.638039371024234], [-77.37494594277207, 34.63804126819044], [-77.3749290299987, 34.638043173771656], [-77.37455170152089, 34.6378488143543], [-77.37431615834237, 34.63794225450147], [-77.37397191093574, 34.637963100632945], [-77.37376307723589, 34.63795429207181], [-77.37344347225039, 34.63831943521622], [-77.37336865224566, 34.63837507522818], [-77.37323925415706, 34.63855358775464], [-77.37303101442478, 34.63866173851864], [-77.37297427355938, 34.638633121553354], [-77.37287514003481, 34.63863854869817], [-77.37257993884198, 34.63874288008658], [-77.37228629369481, 34.63872170357416], [-77.3721856535181, 34.63869393872153], [-77.37197032317961, 34.638875571896136], [-77.37170963833432, 34.63924987363003], [-77.37139686358532, 34.639269363536], [-77.37118055092313, 34.63960561023213], [-77.37115103381873, 34.63984265106606], [-77.37107261468829, 34.64020273686435], [-77.37114749250803, 34.64026771885252], [-77.3712603348351, 34.64052947080592], [-77.37129945053958, 34.64066977202905], [-77.3713651577451, 34.64071836867884], [-77.37141158559244, 34.64073181467916], [-77.37167876035709, 34.641039621464735], [-77.37175793364463, 34.64108897783251], [-77.37181966462224, 34.64116859111839], [-77.37200029460755, 34.64141741545665], [-77.37204923302923, 34.64166068063448], [-77.37225056898272, 34.64212041080525], [-77.37228068743786, 34.64222287951959], [-77.37229176121146, 34.64232903771099], [-77.3723475605205, 34.64287790780008], [-77.37232047616331, 34.643061432445165], [-77.37216301364849, 34.643733122700404], [-77.37210523997382, 34.64393505779388], [-77.37210442722777, 34.64398506662159], [-77.37219197372502, 34.64434514250509], [-77.3723161855839, 34.64457856256769], [-77.37235957391087, 34.64474410594156], [-77.37231089707684, 34.64484470413878], [-77.37225893899733, 34.644940469644155], [-77.37219603869195, 34.645071043177076], [-77.37211624029327, 34.64519958238356], [-77.37211795136429, 34.645331689038706], [-77.3720490552886, 34.64563083378826], [-77.37226422237634, 34.645830495292856], [-77.37243856100514, 34.645832556406056], [-77.3726455526845, 34.64597081508826], [-77.37273393981336, 34.64604869375796], [-77.37282647782227, 34.646169039384255], [-77.37304612723669, 34.646337738508976], [-77.37310889985983, 34.64645466421932], [-77.373219168076, 34.64652920959819], [-77.3735122262985, 34.64680443038375], [-77.37376752464814, 34.64687068012401], [-77.37393790989292, 34.6469185807443], [-77.37407214024958, 34.6468439046116], [-77.37444050185714, 34.64683153665192], [-77.37456480791842, 34.64685185139081], [-77.37470242065785, 34.64674239661088], [-77.37470309295153, 34.646742603011205], [-77.37488620797173, 34.64685796901841], [-77.3751236584838, 34.646801886912634], [-77.37519843681511, 34.646818545807754], [-77.37524172422681, 34.64682424701114], [-77.37552275479489, 34.646839151836645], [-77.37552905372053, 34.646840270025024], [-77.37578217053434, 34.646902293939114], [-77.37587045030479, 34.64697583111008], [-77.3760356690999, 34.64698573110721], [-77.37628538589809, 34.64705412206045], [-77.37649953279877, 34.647128793331206], [-77.37654719127028, 34.64715657344271], [-77.37658281167188, 34.647162670322075], [-77.37677175617728, 34.647239335185134], [-77.37689310498108, 34.64728438907678], [-77.3771731847112, 34.647379932537945], [-77.37723679048413, 34.64740113649015], [-77.37726599331562, 34.64740895927693], [-77.37733495470484, 34.64743588821558], [-77.37774297646955, 34.64761277937557], [-77.37795946857452, 34.647809897450664], [-77.3781543593927, 34.64794660964218], [-77.37873206882382, 34.648466444291], [-77.37900783390785, 34.64855342692301], [-77.37943548526181, 34.648779507648186], [-77.37946717806314, 34.648792221647454], [-77.37950018104115, 34.64882607876058], [-77.37982184196497, 34.64923848107411], [-77.38030178907704, 34.64990105848452], [-77.38056714939567, 34.65005971544674], [-77.38086245718347, 34.650326716708946], [-77.38105180705291, 34.65044532680117], [-77.38139775804694, 34.650711913423855], [-77.38143056222714, 34.650736032022515], [-77.38166536975635, 34.65106027652709], [-77.38170435621726, 34.65125346995151], [-77.38172475923601, 34.65162563781968], [-77.38170972835911, 34.65189820672559], [-77.38176983885724, 34.65227291199762], [-77.38206924512096, 34.65231675448757], [-77.38233080760386, 34.652310334786996], [-77.38248388001917, 34.65233368411687], [-77.38273452629716, 34.65244031267254], [-77.38283458889177, 34.652461098126146], [-77.38337644021333, 34.652447897187386], [-77.38341777720088, 34.65245447790755], [-77.38359562987519, 34.65248273898065], [-77.3836861400417, 34.65249721175172], [-77.38370722838569, 34.65250047546442], [-77.38374488558176, 34.65250944909873], [-77.38395117682501, 34.65254653761423], [-77.3840698768056, 34.65271115113019], [-77.38417469998014, 34.65282507039036], [-77.38426881587085, 34.653066249888184], [-77.38434164786355, 34.65322411398226], [-77.38450499834163, 34.65355183367458], [-77.38421363740521, 34.653424529155984], [-77.38399125506916, 34.65327233258941], [-77.38370256238865, 34.6530393021487], [-77.3835393091127, 34.65291250711957], [-77.38348878204455, 34.65288838192971], [-77.38344086434691, 34.65276760405728], [-77.38332389059329, 34.6526405632376], [-77.38294638922753, 34.6527650664887], [-77.38279609959395, 34.65274588423929], [-77.3827078482035, 34.65271229778459], [-77.38229411754914, 34.65282360919957], [-77.38218550354915, 34.652893737637754], [-77.38191790620806, 34.65313561419484], [-77.3819158786359, 34.653137743680794], [-77.38177740660402, 34.65357696284094], [-77.38178031659919, 34.65367822529253], [-77.3818222421217, 34.65426911208899], [-77.38183236671449, 34.65439369420209], [-77.38181997141973, 34.65441514037745], [-77.38183938914322, 34.654433534049225], [-77.38184516968775, 34.65507255579775], [-77.38187809915027, 34.6552511764673], [-77.38191190802976, 34.655439044591574], [-77.3820139349117, 34.65589687922004], [-77.38205180937166, 34.65607130947042], [-77.38208910883499, 34.656237094169754], [-77.38223984788634, 34.6564674539689], [-77.38225576951865, 34.65648141629478], [-77.38228631843083, 34.65657219453811], [-77.38237256102055, 34.65682457424368], [-77.38238683162794, 34.65686924709095], [-77.38239528985237, 34.656919471781116], [-77.38241137997176, 34.6571928127586], [-77.38222950998554, 34.657431772778544], [-77.3822843519399, 34.6577273816584], [-77.38237721705192, 34.657964597406604], [-77.38263372666975, 34.658523343337905], [-77.383486518281, 34.65934992149826], [-77.38389818383487, 34.659547320001536], [-77.38485706615623, 34.65988225457088], [-77.38487599656143, 34.659888744531514], [-77.38488426382975, 34.65989159915643], [-77.38490258686059, 34.65989921485097], [-77.38559667351626, 34.660138051074284], [-77.38599535239126, 34.66017860750729], [-77.38614898662637, 34.6602150918031], [-77.38643865657956, 34.660278024469015], [-77.3864606136443, 34.660637665007265], [-77.38646497235024, 34.66065900817691], [-77.38644968335993, 34.66067537875732], [-77.38615643444153, 34.661034855383036], [-77.38597279401019, 34.66121414490888], [-77.38586274233272, 34.66141261692905], [-77.38577392162892, 34.66148521495873], [-77.38559148612413, 34.6615720591142], [-77.38534035478642, 34.66158769643886], [-77.38524341222924, 34.66159310024692], [-77.3849910608742, 34.661579331147834], [-77.38483935480726, 34.661510059897424], [-77.38440321206451, 34.66154321074383], [-77.38431935515071, 34.661516335169665], [-77.38413569996574, 34.66146694948627], [-77.38408373165917, 34.66130354289399], [-77.38366654566885, 34.66138034993107], [-77.3830936484226, 34.661932781562825], [-77.38296938403866, 34.66203859099765], [-77.38287930245495, 34.6621272276204], [-77.38288924607873, 34.66222367768263], [-77.38253783766113, 34.662932252608336], [-77.38246253982962, 34.663159371693645], [-77.38246544338122, 34.66333872160296], [-77.38240357667803, 34.66345133054952], [-77.38221891162061, 34.663680292070964], [-77.3820800473907, 34.66380266154367], [-77.38188536075884, 34.66403695187867], [-77.38175934655338, 34.66415650179427], [-77.38172636801087, 34.66423545789236], [-77.38167231728829, 34.664343942624285], [-77.38153340048476, 34.66459432412838], [-77.38137621473112, 34.664771031012734], [-77.38141649022964, 34.66493528804474], [-77.38159519398022, 34.6650378953066], [-77.38163708913439, 34.66515966032463], [-77.38175974413946, 34.665205666153085], [-77.38194763469984, 34.665314750289866], [-77.38210713415032, 34.6653359664588], [-77.38220370472226, 34.66538828625105], [-77.38230610571526, 34.66543292519084], [-77.38236338932121, 34.665484022087846], [-77.38257145965157, 34.665581389443155], [-77.38256056444865, 34.66563121710394], [-77.38259943869635, 34.66570178261554], [-77.38306408024712, 34.66595092525351], [-77.38311421630097, 34.66599008701194], [-77.38311694838197, 34.66599124021314], [-77.38314348848718, 34.66599008633106], [-77.38338699493963, 34.66608115148597], [-77.38338877011641, 34.66617615872135], [-77.38362146365823, 34.66630437779992], [-77.38370317741644, 34.6663282744956], [-77.38387107966517, 34.66637737609899], [-77.38415980119794, 34.666511423416594], [-77.38444262082542, 34.66654729030531], [-77.38445582894816, 34.66654628237027], [-77.38472696950518, 34.66661901168287], [-77.38521145630828, 34.666577875516346], [-77.38533700706832, 34.666578702178086], [-77.38542931805054, 34.666575842826845], [-77.38563889379827, 34.66656935129845], [-77.38591630317198, 34.666564463313925], [-77.38593949662814, 34.666564428627254], [-77.38595579644465, 34.66656459617064], [-77.38600976437023, 34.66657048648263], [-77.38617910386338, 34.666589731997576], [-77.38622420103046, 34.66661435693004], [-77.3863601753321, 34.66664740246195], [-77.38648803176045, 34.66673630332498], [-77.38676416176123, 34.666677781112455], [-77.38682715798612, 34.666681983141395], [-77.38708743155257, 34.66673268641617], [-77.38729109505205, 34.66671890674742], [-77.3876925888197, 34.66670920041111], [-77.38826586048471, 34.66673246442851], [-77.38828411515186, 34.66673274299476], [-77.38829877854177, 34.6667312721523], [-77.38835260072172, 34.666735461764134], [-77.38877471277324, 34.66675894957703], [-77.38886334180611, 34.66679872296142], [-77.38897790835117, 34.66678116475192], [-77.38922184479146, 34.66677105260608], [-77.38942730392014, 34.66676831695588], [-77.38951778740456, 34.66675141044547], [-77.38997898436885, 34.66665747614594], [-77.39018823329971, 34.666648878077574], [-77.39028153809382, 34.6666696831134], [-77.39076495236404, 34.66686977248593], [-77.39121605468736, 34.66703417735607], [-77.39134625314534, 34.66707486309713], [-77.39147172741187, 34.66712095685416], [-77.39154142627893, 34.66702420658727], [-77.39180122433508, 34.66691184611781], [-77.39187246037974, 34.66686054658289], [-77.39205354030156, 34.66684517980238], [-77.39219206060085, 34.66680313830483], [-77.39228581191465, 34.666811187991534], [-77.39238253117092, 34.66681540987057], [-77.39243938663236, 34.66683374786029], [-77.39260559011927, 34.666900975702596], [-77.3926635111567, 34.66695132946328], [-77.39276132049793, 34.66698647415774], [-77.39313838981712, 34.667125073652684], [-77.39324300922034, 34.6671626486211], [-77.39332568813437, 34.667161796493176], [-77.39346991177344, 34.66720996207867], [-77.39354261352315, 34.667234297952874], [-77.39361250744994, 34.66725704227829], [-77.39376960658521, 34.667308123846055], [-77.3938269906301, 34.667358501320365], [-77.39392497896239, 34.66739427195669], [-77.39433492083968, 34.66751865778498], [-77.39441300955943, 34.66754732789649], [-77.3944666069333, 34.667532362338356], [-77.39469458612268, 34.66759180596293], [-77.3947137572558, 34.66761503559933], [-77.39499064169458, 34.667691483540395], [-77.39500564491465, 34.667713323930585], [-77.39505776345639, 34.66769637096204], [-77.39552358653961, 34.66776552103082], [-77.39566498446149, 34.66764909172602], [-77.39587637206341, 34.66759452788895], [-77.39594360561503, 34.66744738912743], [-77.39609365126896, 34.667275273853704], [-77.39619600787212, 34.6673692819642], [-77.39634272610017, 34.6675213350085], [-77.39637191349209, 34.66756168564813], [-77.39639216755607, 34.66760445112138], [-77.39659468391217, 34.66791508497871], [-77.39661524215589, 34.66805541299479], [-77.39665225377249, 34.668254676447226], [-77.39659074482324, 34.66836304394808], [-77.39657199357903, 34.6687330004825], [-77.39655122206406, 34.66877845965924], [-77.39659834896148, 34.66885059769135], [-77.39663770478919, 34.66884054334204], [-77.39703459124058, 34.669070551052016], [-77.39715686353222, 34.66913440391258], [-77.39734582219802, 34.669251069149496], [-77.39750959642816, 34.669318745174586], [-77.39769857696356, 34.6694762138288], [-77.39785957934609, 34.669619084979466], [-77.39816825421724, 34.670066693806035], [-77.39840604320388, 34.6702837918391], [-77.39871245052102, 34.6703999657105], [-77.3989599656156, 34.67039594635622], [-77.39908347127275, 34.67044755283361], [-77.39931018775722, 34.67054842515428], [-77.3993354466349, 34.670591998934434], [-77.39937398215982, 34.670699301968064], [-77.39939332460163, 34.67075204963526], [-77.39939572992213, 34.670763627899014], [-77.39942246107766, 34.6709020377478], [-77.39946034418922, 34.671136015151184], [-77.39946747004146, 34.67118002623644], [-77.39949047101668, 34.671264089419864], [-77.3995470984063, 34.671504822753825], [-77.39955272087285, 34.671590789281424], [-77.39961491869624, 34.67170836124957], [-77.39981065840271, 34.672156241700826], [-77.39988850333285, 34.672343376261814], [-77.40000491070973, 34.672574004802286], [-77.40010949008645, 34.67282000675322], [-77.40025599528344, 34.673082738374916], [-77.4002862476841, 34.673161460228414], [-77.40033327299221, 34.67327366706581], [-77.40037804590075, 34.67346481527491], [-77.40037871801596, 34.67347340575352], [-77.40037725218308, 34.67347848493163], [-77.40038305776936, 34.67348056671669], [-77.40050077756317, 34.673795709095074], [-77.40052584935849, 34.67386282775344], [-77.4005635055391, 34.67396363480805], [-77.40061744950899, 34.67411612596951], [-77.40066152536129, 34.674252560536786], [-77.40067737084755, 34.67432875942396], [-77.40067369203808, 34.67441538791715], [-77.40061296158058, 34.674597516345244], [-77.40052754821676, 34.67464380039649], [-77.4005658532295, 34.67473879067806], [-77.40042155401525, 34.67503261786038], [-77.40038046397353, 34.675151457686084], [-77.40036508266164, 34.675268857331474], [-77.40030411029737, 34.6755887492451], [-77.40018145337388, 34.675640937132414], [-77.40025430807351, 34.67576138559918], [-77.40032674439001, 34.675886932941424], [-77.40042908493547, 34.67613481052577], [-77.40075866192578, 34.67640214303618], [-77.40077704932631, 34.6764359993941], [-77.4008051571419, 34.67644744407712], [-77.4008430384163, 34.67647058382307], [-77.40095949940019, 34.67658306180723], [-77.40104097080014, 34.67673941890297], [-77.40106109305233, 34.67676384959552], [-77.40105375278077, 34.67681536416335], [-77.40099504811909, 34.67689794673191], [-77.40093020944623, 34.67698736460271], [-77.40087750286085, 34.67700288936449], [-77.40076039468454, 34.67708365406513], [-77.40058512829906, 34.67720698569101], [-77.40039026446055, 34.677226327065235], [-77.40030844708745, 34.67752410048696], [-77.40018267925149, 34.67787795261539], [-77.40020958626853, 34.67842730011424], [-77.40020428361623, 34.67844466355871], [-77.40021081431561, 34.67845747102496], [-77.40001660256605, 34.678859838205504], [-77.39992429414579, 34.67890579860679], [-77.39985229557692, 34.6793393002744], [-77.3998281989698, 34.679431307427905], [-77.39986432937829, 34.67949463127129], [-77.39990233709993, 34.67956390780504], [-77.40001535513382, 34.67960610202577], [-77.40041673376953, 34.680000275995226], [-77.40050396965937, 34.680120497914324], [-77.40095878649237, 34.680341194246644], [-77.40099792789262, 34.68036080152541], [-77.40123916117484, 34.68047938789498], [-77.40125734164754, 34.68049071446397], [-77.40144726656655, 34.68061971417486], [-77.4014885743924, 34.68072446286324], [-77.40166922761583, 34.68091445841357], [-77.40166090839462, 34.6809769332187], [-77.40195993952744, 34.68129117226259], [-77.40196383153176, 34.681295989575], [-77.40196437524996, 34.68129668758684], [-77.40196503904293, 34.6812975707699], [-77.40247439739375, 34.68174564643928], [-77.40272896062352, 34.68180108335184], [-77.4028128853331, 34.68183543558005], [-77.40306376370224, 34.68192328700998], [-77.4033355434601, 34.682045221728316], [-77.40335650383393, 34.68205502223744], [-77.40362418905002, 34.68220084395848], [-77.403921737304, 34.68225599482177], [-77.40393569715513, 34.68225976889809], [-77.4042289603377, 34.68232531375012], [-77.40446631354965, 34.68239867478581], [-77.40460131254139, 34.68242846586598], [-77.40480742676817, 34.68254060115354], [-77.40522708100593, 34.68243929895314], [-77.40539241902344, 34.682417284968224], [-77.40549581804098, 34.6823763760411], [-77.40576310757909, 34.682275487747084], [-77.40604535667141, 34.68216654985494], [-77.40613300827026, 34.68213240178391], [-77.40622100415872, 34.68208509635595], [-77.40627957315255, 34.68217475932715], [-77.40634203468213, 34.68227038042379], [-77.40654370949416, 34.68251091618688], [-77.40669209884321, 34.682671111671034], [-77.40688674361098, 34.68281416229946], [-77.40704753646506, 34.68288026305713], [-77.40727496544903, 34.68287122272662], [-77.40758230911084, 34.68300687619016], [-77.40775429179817, 34.6827646247505], [-77.40780671729406, 34.68262578612588], [-77.40800137641662, 34.682575693982486], [-77.40824805187435, 34.68259954999775], [-77.40842391057706, 34.682439837832376], [-77.40861165059415, 34.682446155090574], [-77.40868764236026, 34.68241876543874], [-77.4089837431719, 34.68230665423099], [-77.40933670956605, 34.682200150220055], [-77.40936960032077, 34.682189670340385], [-77.4093969945161, 34.68218210322878], [-77.40979903110616, 34.682143961700234], [-77.41001000106891, 34.68187664407498], [-77.40998417912026, 34.68169866798381], [-77.40995232136837, 34.68153534282408], [-77.40982258910637, 34.68125194003048], [-77.40972026708418, 34.681065778353705], [-77.40944854535371, 34.68085281649854], [-77.40918419976457, 34.680704099588745], [-77.40901534318539, 34.68058719331225], [-77.40892697239227, 34.680485950205956], [-77.40888267612958, 34.68036389247476], [-77.4088510858121, 34.680209374322274], [-77.40873648012546, 34.68003735964893], [-77.4085230084668, 34.67967889770216], [-77.40843087717417, 34.67949198911847], [-77.40830870930839, 34.67930175837233], [-77.40800176530149, 34.678937352440094], [-77.40802297778049, 34.678769469743784], [-77.40785451661617, 34.678657418246665], [-77.40775158603137, 34.678290668841775], [-77.40782587100543, 34.67795901667206], [-77.40747235154785, 34.67776438988267], [-77.40738359632596, 34.677602750937915], [-77.40723378958984, 34.677313335636256], [-77.40701268039697, 34.67713901583552], [-77.40672693990594, 34.67711838192083], [-77.4066765932456, 34.67709943893194], [-77.40641217497027, 34.67699995062781], [-77.40639621934608, 34.67699323078473], [-77.40626786947139, 34.676945086143704], [-77.40623615508413, 34.6769215873053], [-77.40620507649554, 34.67684979900855], [-77.40627107949945, 34.67674669272038], [-77.40637034590272, 34.67668898895792], [-77.4064318906521, 34.676635677421274], [-77.40659648841833, 34.676363534554035], [-77.40675487427711, 34.67626444417542], [-77.40673682536864, 34.67618163812353], [-77.40688874348663, 34.67588668252229], [-77.40705878989485, 34.675811685257], [-77.40729367908826, 34.67550299825378], [-77.40743149646416, 34.67538300398937], [-77.40742718112433, 34.67527117269624], [-77.40740779277596, 34.6748155792286], [-77.40738927123905, 34.6745704429402], [-77.407151612442, 34.67444669333632], [-77.40678418361215, 34.674219203230926], [-77.40647828300176, 34.67405780918686], [-77.40605389423607, 34.67381203985953], [-77.40603023898791, 34.67377429069001], [-77.40619184151916, 34.673335715700226], [-77.40621150873123, 34.673282259527845], [-77.40621424030206, 34.67327956296089], [-77.4062169624274, 34.67327415277187], [-77.40662280155999, 34.67245874716842], [-77.40673178973144, 34.67234245211659], [-77.4074462031526, 34.67230949674669], [-77.40754680125661, 34.67206859098951], [-77.40783136361712, 34.67170797626652], [-77.40791275712289, 34.67163755242355], [-77.40793055119792, 34.67160553503018], [-77.40804334017321, 34.67136738991929], [-77.40815192055409, 34.67121951993012], [-77.40817430725703, 34.67116997073751], [-77.40816090905517, 34.67112415163437], [-77.4082364285095, 34.670983686441254], [-77.40826626093933, 34.67092259216625], [-77.40832868865124, 34.67083098365813], [-77.40835122255173, 34.67079740392261], [-77.40847869923536, 34.67071738463682], [-77.40860107747307, 34.67054765939734], [-77.40865109146729, 34.670539825314606], [-77.40893666187822, 34.67049509375488], [-77.40908440266526, 34.670500567660156], [-77.40933628472004, 34.67045842032869], [-77.40957638259334, 34.670498564420505], [-77.40993022680352, 34.67066630045202], [-77.4101098354384, 34.67075737783788], [-77.40991861849534, 34.671117200038765], [-77.40977783970553, 34.67117208821785], [-77.40961753447152, 34.671372788660726], [-77.40954205503633, 34.671648687600296], [-77.40954595476597, 34.67188532467439], [-77.40951337793096, 34.67195055833148], [-77.40941970672824, 34.67214604114693], [-77.40941042731913, 34.672161742478735], [-77.40927715176358, 34.672312262095666], [-77.40916414030616, 34.67249096300656], [-77.4090688022028, 34.67260129898001], [-77.40891142840218, 34.67279496932826], [-77.40866004777732, 34.67279902508068], [-77.40851425410504, 34.672966332114086], [-77.40844291626452, 34.67323819638748], [-77.40814024147816, 34.67395368018946], [-77.40825475542346, 34.674209377646235], [-77.40830433444489, 34.674891452015935], [-77.40830930692336, 34.67507930025369], [-77.40833003135931, 34.67513835927133], [-77.40831874002738, 34.675233378188075], [-77.40831790442226, 34.675693240825495], [-77.40798676429846, 34.675988082741085], [-77.4077338413469, 34.67577286890322], [-77.4077897919404, 34.676067533115805], [-77.40779717646079, 34.67618563000436], [-77.4078624314033, 34.67641742015615], [-77.40796850199926, 34.676689206458335], [-77.40823223757067, 34.67689681265233], [-77.40834397616202, 34.67696726424689], [-77.40853914894154, 34.67709031974288], [-77.40887531068257, 34.67734519162523], [-77.40897676338167, 34.67747889429583], [-77.40905506872886, 34.677628606570316], [-77.40949872923788, 34.678153823746825], [-77.40979929355011, 34.67858002252867], [-77.41009757308888, 34.67879668180758], [-77.4106338870676, 34.67929937248972], [-77.41067239899078, 34.6794495607121], [-77.41079147450274, 34.67957942575133], [-77.41107466714821, 34.67974172393346], [-77.411356061186, 34.68005703461202], [-77.4114663060657, 34.68014978961785], [-77.41180351116336, 34.68051033013327], [-77.41202808164769, 34.68066936448284], [-77.41236475066987, 34.68078509338921], [-77.41262250913375, 34.68086771815044], [-77.41265772302135, 34.68087981721311], [-77.41268302795805, 34.680876305302604], [-77.41294364844937, 34.680956912088526], [-77.4128839368501, 34.68120492572675], [-77.41288393077798, 34.68120496954886], [-77.4128839084229, 34.68120501094706], [-77.41279541769377, 34.68143419336105], [-77.41278047781098, 34.6814483257881], [-77.41266977650923, 34.68160274241946], [-77.41255119009826, 34.681647649997984], [-77.41235587677892, 34.681837420818404], [-77.41195712700082, 34.68199888754888], [-77.41219351494433, 34.682385739814954], [-77.41239652959958, 34.68288844041263], [-77.41243852399381, 34.68317622198618], [-77.41248590761732, 34.68330214605594], [-77.41252110479175, 34.68358811972891], [-77.41251600493095, 34.68359556457431], [-77.41249610739354, 34.68359854838163], [-77.41217775962991, 34.68364397783848], [-77.4120532407606, 34.6835867683942], [-77.41166405814006, 34.68349931922606], [-77.41160644078165, 34.68340395602534], [-77.41144705888337, 34.683343386485994], [-77.41104970596314, 34.68311357689249], [-77.4105225074878, 34.683327378819754], [-77.4101680845459, 34.68360932014694], [-77.41046407282445, 34.683999922128976], [-77.41034663790015, 34.684230921454684], [-77.41034549163787, 34.68453412100223], [-77.41028977796717, 34.68477014311698], [-77.41034889475989, 34.68494066116991], [-77.410347603192, 34.68528572023438], [-77.41029749417862, 34.68533196180613], [-77.41033285506856, 34.685393697405694], [-77.410354811092, 34.685513248039804], [-77.4103688572187, 34.68582502352853], [-77.41038752484245, 34.68592258346487], [-77.41040149908208, 34.68612201830034], [-77.41040454309223, 34.6862080976739], [-77.41039756032623, 34.686259395292666], [-77.41037484241693, 34.686477263440054], [-77.4103685322789, 34.686717849731394], [-77.41033865307493, 34.6867673667976], [-77.41025436493938, 34.686966573095674], [-77.41024480139698, 34.68698793088014], [-77.41024174275519, 34.68698980823957], [-77.41023814277766, 34.687022590263766], [-77.41019795811413, 34.68723535020582], [-77.41019048173524, 34.68727315538199], [-77.410033343331, 34.68747600405263], [-77.41014870229093, 34.68770224193234], [-77.41026216385627, 34.68804611139058], [-77.41027815805631, 34.688094584850475], [-77.41028244514219, 34.688122286219745], [-77.41030755221607, 34.68821278060879], [-77.41036535195107, 34.68843085478269], [-77.41038488932426, 34.688496407468065], [-77.41039599206344, 34.688690464784166], [-77.41039813652007, 34.68872188507475], [-77.41040497581079, 34.688934373749134], [-77.41045842926954, 34.68920769370831], [-77.41046973229189, 34.68930605374393], [-77.41047494189642, 34.6893515334009], [-77.41049688300572, 34.68944856101106], [-77.41054879086846, 34.6896132747707], [-77.41054543175476, 34.689768474551286], [-77.41056067867311, 34.689896992316925], [-77.41054028467538, 34.69021696678736], [-77.410625194427, 34.690478682554186], [-77.41056687071341, 34.69088132761067], [-77.410531948658, 34.69100517289569], [-77.4105815621532, 34.69109244067201], [-77.4104734692486, 34.691476702420104], [-77.4103910111044, 34.69151497650937], [-77.41048520802367, 34.691701850299864], [-77.41052339994631, 34.692009393559374], [-77.41096079087744, 34.69227265057625], [-77.41096140890994, 34.69227303195431], [-77.41096417157739, 34.69227463408791], [-77.41118325848375, 34.69240366384562], [-77.41123515145708, 34.69243178150721], [-77.4112980971453, 34.692531246623375], [-77.41128747944269, 34.69258336303952], [-77.41127679978788, 34.69266357359261], [-77.41125809779251, 34.6927599607962], [-77.41106675111209, 34.69286963898779], [-77.4111432054045, 34.69308989209454], [-77.4111297362262, 34.69317123366331], [-77.41115887161618, 34.69330653095179], [-77.41115335141464, 34.693336775039285], [-77.4111309076059, 34.69345120075212], [-77.41108993328831, 34.69348649222546], [-77.41101739835173, 34.69348849125122], [-77.41091089376472, 34.69355146105712], [-77.41082921512518, 34.69355478733685], [-77.41052772558821, 34.693768026705115], [-77.41050533536443, 34.69377322160037], [-77.41050061584143, 34.69378979101627], [-77.41049631300235, 34.69380607628774], [-77.41010348380695, 34.69420995822084], [-77.41020369250523, 34.694374480072725], [-77.41022860127116, 34.694533293015134], [-77.41024251772043, 34.69458145823872], [-77.41024207330501, 34.69475435803583], [-77.41024209486811, 34.69480480736565], [-77.41024071557722, 34.69481708976839], [-77.41025274721649, 34.694856389578156], [-77.41032818829501, 34.69512725238473], [-77.41029897616941, 34.69522742664809], [-77.41040197114174, 34.69530874263932], [-77.41044867174942, 34.69544896426814], [-77.4104959263392, 34.69559162162527], [-77.41050954483703, 34.69565043519151], [-77.41053426922319, 34.69575847013705], [-77.4105379761425, 34.69579725501673], [-77.41055930315852, 34.69587199453796], [-77.41058748168345, 34.69599977850749], [-77.41060139251637, 34.69606151185713], [-77.41063997022029, 34.696237800346914], [-77.41064558447091, 34.696356530794645], [-77.41067761864053, 34.69640852751513], [-77.41070242677664, 34.69648431419348], [-77.41078286473332, 34.69668411757202], [-77.41077647225822, 34.696813640728266], [-77.41087435916808, 34.69699716768446], [-77.41093218998078, 34.697195035370115], [-77.41096221989777, 34.697305980735365], [-77.41114969825782, 34.69781952563734], [-77.4111291304243, 34.69792348899847], [-77.41116868234482, 34.697989086342204], [-77.41122195319994, 34.698010022326805], [-77.41134384131045, 34.69827816257275], [-77.41131869710377, 34.69837286102848], [-77.41143092027934, 34.69858818289865], [-77.41152578502164, 34.6987328302119], [-77.41163492329804, 34.698797166778405], [-77.41174569343698, 34.69897786092002], [-77.41177383608466, 34.699075713601765], [-77.41175779098855, 34.699188016515066], [-77.41172947169935, 34.699251741604314], [-77.41168788593166, 34.69944775470878], [-77.4116465424581, 34.699575157949326], [-77.41161873365147, 34.699772112080815], [-77.41187224237066, 34.70019085376066], [-77.41212845544541, 34.700266845081345], [-77.41216682151426, 34.70028026680137], [-77.41220153754122, 34.700287719635966], [-77.41236891885218, 34.70038971966797], [-77.4124270903794, 34.70048815448877], [-77.41248777232559, 34.700563319239], [-77.41253716135117, 34.700652518831006], [-77.41253103838116, 34.70082653502079], [-77.4125274443408, 34.700928674295234], [-77.4125251427006, 34.70099408202748], [-77.41268527749757, 34.701078751434366], [-77.41286888876981, 34.701175833670284], [-77.41326609998956, 34.701280429062066], [-77.41345188801014, 34.701375953655244], [-77.41361685031175, 34.701431414402734], [-77.4143844146204, 34.70161291345598], [-77.4146856554878, 34.7015421850173], [-77.41488454859858, 34.70147366563852], [-77.41522048310254, 34.701483873890034], [-77.4153476902872, 34.70146937573575], [-77.41562351394401, 34.70139482122388], [-77.41599178493544, 34.701301870269546], [-77.4160201999397, 34.70129539450527], [-77.41604028049895, 34.70129103464277], [-77.41624252157365, 34.70122886315928], [-77.41639196806734, 34.701183234906736], [-77.41641024748183, 34.70118511366357], [-77.4167481767178, 34.701059816404154], [-77.41678132923047, 34.70104382319166], [-77.41679948926897, 34.70102529583279], [-77.41681126186803, 34.70099161117562], [-77.41697402793793, 34.70061086768265], [-77.41703877620587, 34.70054989676682], [-77.41702577083727, 34.70010109259343], [-77.4170286149461, 34.70000822137426], [-77.41702653847571, 34.69998651929153], [-77.41699540743699, 34.6998977964582], [-77.41691321274595, 34.69961000352094], [-77.41662280721249, 34.699288561749185], [-77.41662073544852, 34.69928636767743], [-77.41661908371128, 34.69928634456796], [-77.41606134598918, 34.69911854518067], [-77.41602568831402, 34.69912789963836], [-77.41598740213463, 34.69910349865211], [-77.41590572853275, 34.699035367599514], [-77.41560245810172, 34.69881772315783], [-77.4154911075648, 34.698760613553226], [-77.41541051093469, 34.69867461657442], [-77.4153648342558, 34.69864333538324], [-77.41532773129103, 34.698553630575816], [-77.41535474423567, 34.69847470176207], [-77.41529547639789, 34.69832949982763], [-77.41527662517292, 34.69825620200173], [-77.41535914820076, 34.69802650856383], [-77.4152573394837, 34.697969904395215], [-77.41528631457105, 34.69785124364179], [-77.41535502154048, 34.69772452342782], [-77.41521059416, 34.6975159189731], [-77.41501027014121, 34.69739985543498], [-77.41493700284909, 34.697354057406784], [-77.41494496399766, 34.697306576341724], [-77.41466029891721, 34.697202947758825], [-77.41465953227373, 34.69720167757837], [-77.41454817483412, 34.69702574334514], [-77.41454641327334, 34.6970223297961], [-77.41454123578416, 34.69700691085119], [-77.41455709622346, 34.69700600772099], [-77.4146702018119, 34.69692585792306], [-77.41471747477362, 34.69692106985826], [-77.41474313911431, 34.696916861362126], [-77.41487217883264, 34.69689058377993], [-77.41521956780912, 34.69699404200861], [-77.41523620075978, 34.6967387292609], [-77.41537739215856, 34.69661414462774], [-77.41531956777905, 34.6964095060644], [-77.4153122445005, 34.69626065105798], [-77.4152681262365, 34.69621050876072], [-77.41522589859498, 34.69600204651381], [-77.41524016375836, 34.695905633575656], [-77.41529921646347, 34.69581973015318], [-77.41535272079678, 34.695766860488234], [-77.41537260808194, 34.69574818217554], [-77.41555996787596, 34.695559808590346], [-77.41583668905936, 34.69535362646922], [-77.41597859349753, 34.695243000726975], [-77.41607039167141, 34.695179264027495], [-77.41622926435602, 34.695104528048375], [-77.41634428002675, 34.69509293133302], [-77.41656424286629, 34.69505434856924], [-77.41676746713017, 34.6950368867263], [-77.4169001457511, 34.69491042463853], [-77.41707283838316, 34.694633458758496], [-77.4172480779732, 34.69432671115733], [-77.41746123482262, 34.69398850418768], [-77.41745608313067, 34.693918811572], [-77.4175529538957, 34.69385301748298], [-77.41770930517546, 34.69379573320698], [-77.41783490185541, 34.69379022573699], [-77.41806085886978, 34.69377490172291], [-77.41821795140213, 34.69376973923872], [-77.41826893721525, 34.69375192903246], [-77.4184288238906, 34.69376787706386], [-77.41878860188896, 34.693853647411245], [-77.41882971957484, 34.69387031773521], [-77.41886974675734, 34.693883790892755], [-77.4193342020732, 34.69399776953496], [-77.41942710814057, 34.69402056881369], [-77.41972261585356, 34.69394089421259], [-77.41974994261906, 34.69392955378158], [-77.41977778192569, 34.69391614101084], [-77.42006097226853, 34.693779701707186], [-77.4201060592557, 34.693763847381334], [-77.42014584998763, 34.69375162187719], [-77.42048342074682, 34.69363287949275], [-77.42050292636395, 34.693625067274766], [-77.4208127378565, 34.69348356758927], [-77.42084090393473, 34.693469410087594], [-77.42088701346539, 34.693405197849856], [-77.42116989151066, 34.693259350021805], [-77.42121634848857, 34.693065654257936], [-77.4213102489972, 34.692865552619544], [-77.42132524490799, 34.69276539083658], [-77.42151768515356, 34.6926119676378], [-77.42165053440787, 34.692549288930266], [-77.4217747161519, 34.692552502201146], [-77.42206860523065, 34.692484892015344], [-77.42222775157467, 34.69230124547051], [-77.42235903293212, 34.69221179384526], [-77.42255665086522, 34.69206515004922], [-77.42266564767516, 34.69196516471881], [-77.42273003395336, 34.691917845247815], [-77.42296466758947, 34.6917625569433], [-77.42299230792015, 34.69175131270401], [-77.42308012971014, 34.69168069773747], [-77.42326854576285, 34.69154711628661], [-77.42330612099889, 34.69151645710972], [-77.423372973635, 34.69145895167142], [-77.42361158363434, 34.69126795060711], [-77.42378766026255, 34.69116960193186], [-77.42394486282831, 34.69106492651162], [-77.42417642246195, 34.69089718758543], [-77.4242708804653, 34.69085003184135], [-77.4243623495394, 34.69081152554449], [-77.42458533767221, 34.690606241144366], [-77.42481741266813, 34.690411608276925], [-77.42486948583189, 34.6903328912365], [-77.42505252514317, 34.69008434253547], [-77.42512220298708, 34.6899981598381], [-77.4251511759321, 34.689969265827706], [-77.4253596466347, 34.689638457477194], [-77.42546310412747, 34.689519286433416], [-77.42554618722055, 34.689312537417806], [-77.42558414386548, 34.68925759357083], [-77.42565011595474, 34.689126627488406], [-77.42569856853305, 34.689042564616436], [-77.42570476093157, 34.68902317649776], [-77.4258195897639, 34.68889463197513], [-77.42590690177553, 34.688835891756085], [-77.42609805511114, 34.68868598475388], [-77.42614045779017, 34.68867133498664], [-77.42617758274432, 34.68865102525575], [-77.42632625026822, 34.68854063635793], [-77.4264670047701, 34.68845732504884], [-77.42649383687805, 34.688425556921594], [-77.4267052707446, 34.68827650961138], [-77.42677057641974, 34.688205753340476], [-77.42698348922876, 34.68784073733086], [-77.42699441594614, 34.687823827407065], [-77.42699747253876, 34.68781963289079], [-77.42700219103608, 34.687812177529295], [-77.42730556523162, 34.68736831399722], [-77.4274934475378, 34.68714394005976], [-77.427647653467, 34.68692888572127], [-77.42780670420146, 34.68658367197062], [-77.42789750052094, 34.68645719705487], [-77.4279398724557, 34.68637805863394], [-77.42808595721256, 34.68602074912714], [-77.42810902737615, 34.68597210663702], [-77.42807230392094, 34.68584670005651], [-77.42800447705159, 34.685608373319134], [-77.42797457640481, 34.68552303353843], [-77.42790567214595, 34.685574265679676], [-77.42767481703436, 34.685451693163955], [-77.42737223873753, 34.685425850578675], [-77.42736211166309, 34.685425092309394], [-77.42735597986442, 34.68542341846928], [-77.42706191397794, 34.685355267112996], [-77.42681469201749, 34.68528630652082], [-77.42676405242794, 34.685277371079884], [-77.42670938699612, 34.68525610129507], [-77.42653851859271, 34.68520870800673], [-77.42646866250165, 34.68519093449464], [-77.42640494593014, 34.68517728882739], [-77.42637631897722, 34.685171911010244], [-77.42631963204927, 34.68515233162743], [-77.42630270671033, 34.68514683415982], [-77.42630867859711, 34.68513276831314], [-77.426290613991, 34.68509608359945], [-77.42628815767509, 34.68505570618558], [-77.42628790929234, 34.6849856180009], [-77.42630458525298, 34.684826220350224], [-77.42631466088352, 34.684785438035426], [-77.42630801900765, 34.684754037089434], [-77.42631457564566, 34.68461620833587], [-77.42631206147459, 34.68452916141479], [-77.42631973870893, 34.684507675995995], [-77.42632597491306, 34.68448724176342], [-77.42637573049126, 34.68440487838582], [-77.4264379751402, 34.68429641598848], [-77.42645410752829, 34.68427513624994], [-77.42656370172, 34.68412803371304], [-77.42662034110575, 34.684053741945], [-77.42668236635522, 34.68394810626955], [-77.426690375701, 34.683938469206424], [-77.42670063598122, 34.683920619358545], [-77.42675025493182, 34.68381964424851], [-77.42679943587335, 34.68376557077902], [-77.42690097846034, 34.683696977035225], [-77.42696127894595, 34.6836562430661], [-77.42707067373001, 34.683652179451954], [-77.42717126174774, 34.683625625350416], [-77.42727348064551, 34.68351690969888], [-77.42735922240347, 34.68364576526929], [-77.42751428903836, 34.68379195183944], [-77.4281078937695, 34.68377968968346], [-77.42815112829418, 34.683805614834085], [-77.4281836021997, 34.68378504251074], [-77.42821281035106, 34.68377211935274], [-77.42818865885022, 34.68374598249916], [-77.42843045062179, 34.68344076133518], [-77.42841786254934, 34.68328476650542], [-77.42842990927842, 34.683198914553486], [-77.42846653961047, 34.683125830559284], [-77.42850906415417, 34.68312223267009], [-77.42855968885479, 34.68309116054144], [-77.42861424122094, 34.68307391589373], [-77.42864044974554, 34.683036235711896], [-77.42870584512805, 34.68299579459859], [-77.42883014620088, 34.68297245156546], [-77.42895225675544, 34.68291260330222], [-77.42899962856566, 34.682875617967824], [-77.42907725405193, 34.682819474840976], [-77.42932121906057, 34.682653546079024], [-77.4296481561608, 34.682596925723], [-77.42979359526335, 34.682558325885395], [-77.43002334324163, 34.68253386938758], [-77.4301668368318, 34.6825403810442], [-77.43049660175656, 34.682343246354385], [-77.4305135991196, 34.68234054330307], [-77.43050992621635, 34.68233078022255], [-77.43080619125907, 34.6820899924499], [-77.43091928663432, 34.681989666122874], [-77.43095898995858, 34.68196588727341], [-77.43097373496921, 34.68194240603425], [-77.43100185007629, 34.681902265535136], [-77.43107749149418, 34.681785709530786], [-77.43113200537978, 34.68171822697024], [-77.43122699331278, 34.68158509940697], [-77.43129390287774, 34.681495316530025], [-77.43132830309027, 34.68144793176245], [-77.43144334383487, 34.681285676776696], [-77.43145133083357, 34.68127515641515], [-77.43145335818261, 34.681271552411566], [-77.43145423136743, 34.68126705818957], [-77.431465480259, 34.68120916131984], [-77.43150142320995, 34.68102416672855], [-77.43150421333588, 34.681009806585585], [-77.43150747301124, 34.68099302946621], [-77.4315550681832, 34.68074806077876], [-77.43156633977289, 34.68071535761131], [-77.43158599774208, 34.680619112248394], [-77.43166224995043, 34.680510650166696], [-77.4316655385989, 34.68050716501016], [-77.43166700339323, 34.680506020831224], [-77.43166923812176, 34.68050485873938], [-77.43184859257619, 34.68042899112133], [-77.43187041471796, 34.680423761596415], [-77.4320142370241, 34.68041976008291], [-77.4321150787861, 34.68049075971773], [-77.4322845719284, 34.68059274823138], [-77.43267289200921, 34.68065490450653], [-77.43291254497507, 34.68063694769279], [-77.43308245678712, 34.68057668131815], [-77.43342220602966, 34.68056246372542], [-77.43354448438407, 34.680584225691064], [-77.43356998770867, 34.68057927326888], [-77.43388493680548, 34.680444761151776], [-77.4339097362803, 34.68043355669242], [-77.43393605361838, 34.68042133523791], [-77.43409055712678, 34.68035527168054], [-77.43422867678854, 34.680285444239956], [-77.43426309613334, 34.6802634474939], [-77.43431094977123, 34.680232864953254], [-77.43445020431903, 34.68019544185286], [-77.43457706961523, 34.68018673533804], [-77.43464441605867, 34.68018761329566], [-77.43468220639639, 34.680200828937835], [-77.43495056373052, 34.68023680193053], [-77.4351186940085, 34.68016661815784], [-77.43527553493387, 34.680220916283844], [-77.43537481394179, 34.68021143191465], [-77.4354911818133, 34.68025154505009], [-77.43557520410525, 34.68029250290797], [-77.43569845402757, 34.680380146116164], [-77.43570352727777, 34.680386100801535], [-77.43578713178233, 34.68055091976038], [-77.43577895303254, 34.680577812702694], [-77.43590274814406, 34.68087087625504], [-77.43599922368111, 34.68104180025689], [-77.43630201156543, 34.68125225706957], [-77.43681637846777, 34.68144636231017], [-77.43693481582493, 34.68123178015674], [-77.43713889783785, 34.68122583572905], [-77.43723009537314, 34.681216881343474], [-77.4373484002685, 34.68119443394159], [-77.4375329295482, 34.68118480634555], [-77.43755885506349, 34.681187900942064], [-77.43757228322232, 34.68118653923644], [-77.43766152279619, 34.681242723814464], [-77.43768168238103, 34.68131707728449], [-77.43769132454398, 34.68134188274907], [-77.43770152252947, 34.681397801352915], [-77.43766470061442, 34.6814870068183], [-77.43764510733874, 34.68158437633666], [-77.43755021533764, 34.68189820186484], [-77.43744962602139, 34.681970847428644], [-77.43758671073513, 34.682199287019344], [-77.4377174800197, 34.682446963319826], [-77.43809027904602, 34.68267363642716], [-77.43829143730768, 34.68282424962866], [-77.43853135834618, 34.68300000542402], [-77.43860306905596, 34.683116118349346], [-77.43885441221721, 34.683282324174556], [-77.43912694638483, 34.6835202812953], [-77.43916942968201, 34.683626438862156], [-77.43919165607015, 34.683698061496564], [-77.43937721079081, 34.68398610097228], [-77.43954344397396, 34.6842957444008], [-77.43958308545193, 34.68434655911167], [-77.43966625964998, 34.684423047013496], [-77.43970712314095, 34.68451797967013], [-77.43978756674389, 34.6845594449135], [-77.43980874563599, 34.684612626335465], [-77.43979563505512, 34.6847042310739], [-77.43978969633906, 34.684745726079285], [-77.43978211675419, 34.68479868613021], [-77.43958072326453, 34.68495218082403], [-77.43972768502417, 34.68517900209957], [-77.43970639390304, 34.68542261773838], [-77.43968987354019, 34.68554938536158], [-77.43965865011606, 34.685654225862876], [-77.43958193156438, 34.6859668874588], [-77.43946522107271, 34.68602987938195], [-77.43941682314681, 34.68620158209576], [-77.43956099986131, 34.68645063300226], [-77.43974746990018, 34.68695635977254], [-77.44002317658827, 34.687068223318775], [-77.44024976001523, 34.68705841970381], [-77.44053366070743, 34.686962476907745], [-77.44064809497797, 34.68696177809815], [-77.44070030078636, 34.686942604531666], [-77.44112805580446, 34.686998544144416], [-77.44137112069973, 34.68669623128404], [-77.44145013066657, 34.68656556657859], [-77.4416511801949, 34.686358185895905], [-77.44194533493618, 34.68648522749487], [-77.442079948929, 34.6866034996344], [-77.44221667270705, 34.68681835766593], [-77.4430099028178, 34.68708349164777], [-77.44320709562696, 34.687137529597216], [-77.44366266226943, 34.68710749470995], [-77.44384499500555, 34.687147523110646], [-77.44394476862982, 34.68711605451359], [-77.44402705638595, 34.68706571658433], [-77.44406817252445, 34.686938194910624], [-77.4442806059717, 34.68659532540429], [-77.44417415700445, 34.68600919189266], [-77.44417270648002, 34.68600172562533], [-77.44417335895268, 34.685998804759436], [-77.4441732784784, 34.68599423770469], [-77.44414908600663, 34.68571080454304], [-77.44416103547617, 34.685600412770356], [-77.44416077780998, 34.68557513474959], [-77.44418801574358, 34.6855489205107], [-77.44427045305127, 34.685473719163774], [-77.44430059492322, 34.6854546784859], [-77.44434158301752, 34.68543017608118], [-77.44446901588738, 34.685356113205856], [-77.44456851639973, 34.6852984053983], [-77.4446378366341, 34.68525820144091], [-77.44495175851827, 34.68515286877746], [-77.44500902946533, 34.685117211893726], [-77.44510036139138, 34.685022061137225], [-77.44527567007646, 34.68498659073087], [-77.4453326167998, 34.68489842356478], [-77.44546166277316, 34.68488054971671], [-77.44557237635459, 34.684810801695754], [-77.44573625126237, 34.684810454342696], [-77.44580582632679, 34.684798305610535], [-77.44611257648069, 34.68467785576644], [-77.44645699423035, 34.68460157185775], [-77.44650396966755, 34.684599856173904], [-77.4465176332527, 34.684592212171346], [-77.44653131015247, 34.68458700086847], [-77.44669454769915, 34.684502384316296], [-77.44686643973826, 34.684414643499785], [-77.44692547335454, 34.68440596368195], [-77.44719064702045, 34.68444104853041], [-77.44760870106144, 34.68440460278809], [-77.44776066991327, 34.68438081969124], [-77.44789069777386, 34.684235968641524], [-77.44845340196136, 34.684017712746034], [-77.4486211379602, 34.68392575620018], [-77.4489641484455, 34.68376037674648], [-77.4492049569466, 34.68375073832466], [-77.44930719681986, 34.68376904204712], [-77.44941703994556, 34.683723531954044], [-77.44949815745578, 34.6837781448147], [-77.44959060287275, 34.68389692989028], [-77.44977970455217, 34.683942392561434], [-77.4498760105577, 34.68401789565823], [-77.44999089932452, 34.68401881346438], [-77.45034004722439, 34.684110501002365], [-77.45047587751077, 34.68415933468145], [-77.4505775549153, 34.6841248378254], [-77.45079800165651, 34.684128210572155], [-77.45080352650112, 34.68413417701581], [-77.45081416205285, 34.6841377022384], [-77.45107829184882, 34.68429196407435], [-77.45144048042856, 34.68441360557731], [-77.45169652707926, 34.68436986437185], [-77.45183618565488, 34.68431267786944], [-77.45203618644342, 34.68430315404622], [-77.45205448390769, 34.68429562231685], [-77.4521136869632, 34.684302251243395], [-77.4523068385698, 34.684334214181405], [-77.4523444719382, 34.68434498160346], [-77.45241291783377, 34.68434669293789], [-77.45295146574185, 34.68446177119464], [-77.45339920972464, 34.68462411289893], [-77.45362408863801, 34.68435149994093], [-77.45368120755992, 34.684337390642575], [-77.45369537867332, 34.68429606968698], [-77.45396350708378, 34.68428561066149], [-77.45408488484617, 34.68424948619723], [-77.45420604068414, 34.684195046783316], [-77.45425206661872, 34.68402508036602], [-77.45430730343158, 34.683950936920375], [-77.45442707542952, 34.683790167380806], [-77.4549530108406, 34.68417661137231], [-77.45495094672317, 34.68417964703325], [-77.45468539670046, 34.68448319081676], [-77.4545789413134, 34.68460487634849], [-77.45441622702526, 34.68479086979329], [-77.45425574625031, 34.68505092268548], [-77.45399927389185, 34.68546995023], [-77.45397382693326, 34.68551139537959], [-77.4539061994688, 34.685592335585206], [-77.45342358124672, 34.68615892055105], [-77.45310937245438, 34.68632727468547], [-77.4523148207465, 34.686664317519394], [-77.45198764894167, 34.68680271313737], [-77.45132618071305, 34.68682204615095], [-77.45097363905938, 34.68687063586976], [-77.45029240467264, 34.6870228034723], [-77.44997230059654, 34.68746685701906], [-77.44942708066597, 34.68778732628652], [-77.44892836415116, 34.687784103656895], [-77.44845148388706, 34.688053305405255], [-77.4484974532993, 34.688660221733755], [-77.44801701605397, 34.689019482909735], [-77.44793592587015, 34.68915266460095], [-77.44778175791006, 34.68985189350789], [-77.44774199264974, 34.690041388363085], [-77.44796375160148, 34.69066874951723], [-77.44796392641202, 34.690677981218634], [-77.44798041134761, 34.69072049916688], [-77.44809804398741, 34.69128387644818], [-77.44800035084906, 34.69154631059247], [-77.44831218518708, 34.69164365045168], [-77.44879308115843, 34.69204840069504], [-77.44882537694535, 34.69208507637831], [-77.44883738691668, 34.69208967341524], [-77.44886177119932, 34.69210983234671], [-77.44891687018571, 34.692250666575795], [-77.44900162179248, 34.69271772578241], [-77.44918303120608, 34.693064499650816], [-77.44927477766448, 34.69369274427226], [-77.45017812758962, 34.69405567425409], [-77.45024537612153, 34.69418034403927], [-77.45029828135209, 34.69428893632276], [-77.45064055127904, 34.694908198886196], [-77.45069710470459, 34.69498733116146], [-77.45086387705258, 34.695261380359355], [-77.45103754147435, 34.69551625792775], [-77.45110756184889, 34.695606061112834], [-77.45121754142295, 34.695728221429746], [-77.45147766137626, 34.69634438870471], [-77.45193625739685, 34.696840989046215], [-77.4525327773204, 34.69666341536191], [-77.45276067190173, 34.69670153891422], [-77.45326318132607, 34.69668452021533], [-77.45345688377407, 34.696678146992085], [-77.45385841223856, 34.696689607519566], [-77.4538982534722, 34.69670448583191], [-77.4539660722301, 34.69668872401625], [-77.45438108193811, 34.69669302016231], [-77.4545461006636, 34.69668025164416], [-77.45520489930918, 34.696562619175054], [-77.45521414482799, 34.69655900975857], [-77.45526714766133, 34.69654780255127], [-77.45582688717559, 34.69668334309873], [-77.45630009374358, 34.6968380967472], [-77.45655856890076, 34.696476629840596], [-77.45719724381848, 34.696376513097846], [-77.45813133965689, 34.69702617483129], [-77.45821299207662, 34.697103412713055], [-77.45826370891663, 34.697121138324626], [-77.45833630707013, 34.69717459208508], [-77.45901651337367, 34.69766074485025], [-77.45928797683374, 34.69801182613751], [-77.45954080936541, 34.69833468207628], [-77.4598789000471, 34.69875472768253], [-77.46008689087436, 34.69899952598], [-77.46026587750484, 34.69906303208567], [-77.46053223396427, 34.69926663868358], [-77.46090430603014, 34.69955105554983], [-77.46126667449677, 34.70003508012029], [-77.46166655460787, 34.70049723410635], [-77.46195178745708, 34.700899402215235], [-77.46225735338325, 34.70104221848278], [-77.46269923614963, 34.70131122015211], [-77.46286382354403, 34.70141141460757], [-77.46297854386171, 34.70151454670082], [-77.46320320940401, 34.701716129120676], [-77.46330660233882, 34.7018467363741], [-77.46346882204531, 34.70205165316837], [-77.46370683379482, 34.70232793212851], [-77.46422510571882, 34.70310380013291], [-77.4645580049681, 34.703382589304496], [-77.4647585729252, 34.70347551897619], [-77.46510883548594, 34.7039356128253], [-77.46511334192851, 34.70404357112515], [-77.46519670058957, 34.70417721248313], [-77.4658191034371, 34.70464172673631], [-77.46590175576658, 34.70533050484409], [-77.466360466547, 34.706201464933244], [-77.46616108608585, 34.706964642196596], [-77.46574144967971, 34.707510387776765], [-77.46527134998858, 34.70835495784341], [-77.46522012155754, 34.708417256028326], [-77.46517771106083, 34.708431422429506], [-77.46389688305067, 34.708675555952496], [-77.46360683893516, 34.707882734795874], [-77.4632043702992, 34.707519534329194], [-77.46303099727866, 34.707236193643766], [-77.46302900664246, 34.70669986142628], [-77.46283966300821, 34.70649681116713], [-77.46268504164676, 34.7062155360532], [-77.46258420631543, 34.705992708549154], [-77.46218038135763, 34.70574409422091], [-77.46212293444091, 34.70568747048856], [-77.46208430855258, 34.70530856581322], [-77.4619977312017, 34.70508475531], [-77.46176799900523, 34.70454775735365], [-77.46142225404287, 34.70393205133277], [-77.46091347654338, 34.70401170866139], [-77.46069319466598, 34.70401374217546], [-77.46018249172946, 34.70378669439145], [-77.45970982609617, 34.70390240824344], [-77.45916264463396, 34.703849944787194], [-77.45893626276727, 34.703663713129515], [-77.45845039611737, 34.70334016959757], [-77.45837294269872, 34.703395340502425], [-77.4583895676422, 34.70327987761048], [-77.45839284386264, 34.70326641548846], [-77.45835836336273, 34.70318984978767], [-77.45817798894957, 34.702632362950034], [-77.45818246500883, 34.70247347208732], [-77.45806667859078, 34.70223759433693], [-77.45779591269685, 34.70227116804279], [-77.45749352662882, 34.70200327697228], [-77.45732785220827, 34.70193745228787], [-77.45698204123204, 34.70155561265773], [-77.4564955790112, 34.701392102511115], [-77.45629267963757, 34.70131060723304], [-77.45578798956727, 34.70125221113967], [-77.4554164482715, 34.70137418569911], [-77.45485914718482, 34.70147277974735], [-77.45423044539265, 34.702337911061306], [-77.45421484917419, 34.70236565081667], [-77.4541968336738, 34.70237176326483], [-77.45415834768237, 34.70236801461763], [-77.4540982433563, 34.70221071146888], [-77.45373366570004, 34.70107951520568], [-77.45361589664186, 34.7008087696821], [-77.45342083821097, 34.7005729739619], [-77.45317475694614, 34.70070213858358], [-77.45305761344277, 34.700843283301126], [-77.45216657413803, 34.70141390339327], [-77.45189827250415, 34.70160682263406], [-77.45171199341353, 34.70160369961001], [-77.45060050591471, 34.701461298545084], [-77.44965371142357, 34.7009299666791], [-77.44736526881631, 34.69984702543222], [-77.44629022961925, 34.69863656608864], [-77.44425440126734, 34.69808879671207], [-77.44381101355694, 34.69775947028959], [-77.44370799507362, 34.69757571870356], [-77.44221586160174, 34.69499696390028], [-77.44218339821897, 34.69486762377159], [-77.44192620350391, 34.69471676569797], [-77.44127086147665, 34.69435573738852], [-77.44116118475765, 34.6942120013672], [-77.44089084394113, 34.69362155365288], [-77.44073881315084, 34.69318360823573], [-77.44054529521611, 34.692872987184444], [-77.44045486445947, 34.692222653139225], [-77.44044168849969, 34.69202342438597], [-77.44039288509882, 34.691944601505234], [-77.43998810520576, 34.69162079553932], [-77.43979996024083, 34.69155711431152], [-77.43963632552575, 34.69146680269188], [-77.43944527478305, 34.6912819692818], [-77.43924970684334, 34.69098589938844], [-77.43914872353083, 34.69077753611704], [-77.43902449043364, 34.690521197462594], [-77.43850224490747, 34.690183853303125], [-77.43848539167733, 34.690169503952944], [-77.43847533432398, 34.69016582397275], [-77.43737319255345, 34.689833915804186], [-77.4372246045941, 34.69009739346509], [-77.43712611520161, 34.69024343536328], [-77.43709117537082, 34.690297200603695], [-77.43684739967132, 34.690469986463306], [-77.43660283263677, 34.69061952157888], [-77.43639260079881, 34.69075830251981], [-77.43606351043891, 34.69068420694222], [-77.43574737655493, 34.69130450622047], [-77.43567135871119, 34.69141193441415], [-77.43562537525766, 34.691463576049706], [-77.43550521001964, 34.691610623372064], [-77.43525460611525, 34.69182526839954], [-77.43511509189345, 34.69201481258933], [-77.43506803310241, 34.69204811054854], [-77.43480322229443, 34.692226493599], [-77.43465601341836, 34.69233085200089], [-77.43429859798903, 34.6922859787156], [-77.43416627269877, 34.69256283451696], [-77.4338767966396, 34.69297804315603], [-77.43384096774557, 34.69300814393923], [-77.4338297930223, 34.69301525169059], [-77.43381142804955, 34.69303508589792], [-77.43322646271722, 34.69335233163066], [-77.43320905297287, 34.69349618738856], [-77.43298291939487, 34.693797506257674], [-77.4329544785064, 34.69381628588936], [-77.43292005210255, 34.693900988994656], [-77.43272206544393, 34.69419576001599], [-77.43271822674004, 34.6942927344218], [-77.43267510609986, 34.694372363749665], [-77.43246480976606, 34.69476318146439], [-77.43235824424265, 34.69509666770602], [-77.43228688498124, 34.695427166804], [-77.43238019781961, 34.6957668727834], [-77.43238418731092, 34.69585310689405], [-77.43266261112831, 34.69616314200644], [-77.43280039043661, 34.696529610423575], [-77.43280447102084, 34.6965591178162], [-77.43280262723758, 34.696570827017055], [-77.4327556200924, 34.69682156534815], [-77.43264652226459, 34.69706263842198], [-77.43264641248814, 34.69706290938546], [-77.4326463772469, 34.69706322895125], [-77.43264553898953, 34.69706481115033], [-77.4324419983098, 34.697476966090306], [-77.43232838473867, 34.697510767879145], [-77.43239288626164, 34.69761488018653], [-77.43230182018846, 34.697995642886404], [-77.43221833055736, 34.69803134517297], [-77.43182930726293, 34.698296467103916], [-77.4316468781796, 34.69842074219749], [-77.43160869742422, 34.69843325450776], [-77.43128036553287, 34.698569480398405], [-77.43116248218134, 34.69857474700685], [-77.43092281058526, 34.69858873178201], [-77.43083648429018, 34.698591757069885], [-77.43070988269136, 34.698622028892295], [-77.43025389348048, 34.69868555139032], [-77.43000509546566, 34.698728454819125], [-77.42980516193221, 34.69869478177654], [-77.4296141972619, 34.698681384208115], [-77.42949883602357, 34.69864876623164], [-77.42924444077173, 34.69866867525374], [-77.42904920301905, 34.698661636956935], [-77.42897782881116, 34.69866571305041], [-77.42834665568975, 34.698913806362256], [-77.42830676331613, 34.69894373000765], [-77.4281586441774, 34.69928175429506], [-77.4280695137262, 34.69937596286227], [-77.42809289447041, 34.69940929558115], [-77.42811642014965, 34.699427657238644], [-77.42823584957966, 34.69971366135801], [-77.42826513933883, 34.699783803207374], [-77.42829575885922, 34.6999152809209], [-77.42831398106313, 34.7000205160826], [-77.42833490688119, 34.70020107278007], [-77.42837605128459, 34.7005527039], [-77.42833279563197, 34.700586162332826], [-77.4283607605406, 34.7006366671336], [-77.42840218215132, 34.7006548674517], [-77.42845914445434, 34.70068852781682], [-77.42878095910608, 34.70090770976904], [-77.428944300866, 34.70099627555207], [-77.42920392868939, 34.701170303063165], [-77.42919862024972, 34.70117981104359], [-77.42896363663854, 34.70136581409864], [-77.4288985622312, 34.70140679009772], [-77.42855564427224, 34.70234087808834], [-77.4285555194091, 34.70234124257705], [-77.42855544911525, 34.702341651034466], [-77.42852793045985, 34.70261112887214], [-77.42850989211894, 34.70280635194028], [-77.42850610707798, 34.70288303105315], [-77.42837659918757, 34.70330835334937], [-77.42843470366714, 34.7034171298262], [-77.42859314872152, 34.704110757890945], [-77.42922591242225, 34.70445263541504], [-77.4294490233876, 34.70464639938431], [-77.42977978452072, 34.70475352633272], [-77.43017301104999, 34.70498554143511], [-77.4303249404908, 34.705084545896284], [-77.43041457813467, 34.70513626976566], [-77.43066885667619, 34.705316414147205], [-77.43076814206441, 34.70543512217147], [-77.43085129579379, 34.70548054621841], [-77.4309508547093, 34.70550903865334], [-77.43102553571497, 34.705550910466854], [-77.43103167636639, 34.705641132212435], [-77.4310458110196, 34.70572773712729], [-77.43103094917305, 34.70577184562427], [-77.43097697110164, 34.70592562855005], [-77.4309388267251, 34.70596986251494], [-77.43087911592879, 34.70613960203039], [-77.43085387538582, 34.70629212300923], [-77.43082444525933, 34.706488931248195], [-77.43086250899094, 34.706734908386466], [-77.43090837849557, 34.7069352394644], [-77.43094045406292, 34.707088549703], [-77.43095996383154, 34.70714063096794], [-77.43092372898644, 34.70733423335198], [-77.43089352602097, 34.70735167242003], [-77.43078575361518, 34.70748263898096], [-77.430661058266, 34.70754992709829], [-77.43050654967004, 34.707776214926874], [-77.43025240439606, 34.708106589607574], [-77.43002214763328, 34.708345700336245], [-77.42997289084792, 34.7083975871834], [-77.42993788017753, 34.708415211685605], [-77.42960002868317, 34.708536018402064], [-77.4293014289571, 34.70862123552836], [-77.42907359579058, 34.70867209953454], [-77.42883344928843, 34.70877880182333], [-77.42879152555591, 34.709132543832425], [-77.42885112287287, 34.709359723799125], [-77.42882662822399, 34.70942434910941], [-77.42882843188646, 34.70951844292972], [-77.42879962224222, 34.70969443911875], [-77.42878518185854, 34.709833621190484], [-77.42886761469381, 34.71012017363054], [-77.42890412210416, 34.710230378473064], [-77.42893497841415, 34.71030082634461], [-77.42914384694647, 34.710781781141506], [-77.42919412689261, 34.71100214595213], [-77.42924166652364, 34.71104251703309], [-77.42935427282985, 34.71138171179895], [-77.42967458532691, 34.71167752817672], [-77.42968752177934, 34.711689052376755], [-77.42969312300485, 34.71169743635779], [-77.4297106414545, 34.71170810565546], [-77.43020750919985, 34.712134935482396], [-77.43045752081366, 34.71226054691154], [-77.43074085127054, 34.712506951757305], [-77.43129367986221, 34.712799568033276], [-77.43130102921803, 34.712801370005295], [-77.43189251805673, 34.7129573634995], [-77.43194474262968, 34.712979166042025], [-77.43218619758069, 34.71305005715207], [-77.43225622989324, 34.713139105092125], [-77.43226964114906, 34.71328998950642], [-77.43216888815662, 34.71348202654908], [-77.43208723253768, 34.71363908189936], [-77.43223116413128, 34.71400220723273], [-77.43234488801792, 34.714151374346386], [-77.43275894963712, 34.7143934881391], [-77.4327771308968, 34.7144174090387], [-77.4328573473359, 34.71446734309142], [-77.43313130495957, 34.7147160174452], [-77.43329021392533, 34.714772761049716], [-77.4335123348587, 34.714929597291004], [-77.433855329492, 34.715035063749944], [-77.43413402451327, 34.715190402444215], [-77.43424824781118, 34.71551258553019], [-77.43446747706415, 34.715944052998836], [-77.43453605640903, 34.716602391986655], [-77.43446242030112, 34.716705544133866], [-77.4345478813557, 34.717072271626265], [-77.43530890597066, 34.717378531927864], [-77.43546207324275, 34.718343626415276], [-77.43574812177312, 34.718980846753], [-77.43598063828259, 34.71947235944534], [-77.43561507794182, 34.71986089677794], [-77.43536807539593, 34.72149444918912], [-77.43447994837769, 34.72173765445439], [-77.433760872496, 34.72159563045043], [-77.43304582797327, 34.721644958802344], [-77.43298860470932, 34.72178088884928], [-77.43171520254572, 34.72243029306132], [-77.43170186916007, 34.72244008414626], [-77.43168490486818, 34.72244331076152], [-77.43089152610494, 34.72261156868687], [-77.43040794563278, 34.72251699432039], [-77.43035520689683, 34.722537581693736], [-77.42998300851376, 34.722622634917336], [-77.42983631242853, 34.722786636126045], [-77.42978590757974, 34.72289764100001], [-77.4297014821676, 34.72291041963838], [-77.42962547155372, 34.72300548398311], [-77.42940896192417, 34.723180241076676], [-77.42937381618177, 34.7233126523876], [-77.42939244362341, 34.723418200604506], [-77.42945419266327, 34.723597229266716], [-77.42953430357039, 34.723805404836426], [-77.42964103370167, 34.72396511725954], [-77.42964907083899, 34.72420391153332], [-77.42985414136442, 34.72443035741385], [-77.43018177015804, 34.724443027055614], [-77.43046847609989, 34.724522826519404], [-77.43100745262622, 34.72452998179426], [-77.43110147948492, 34.7245507937719], [-77.43115384340392, 34.72453577563205], [-77.43125682997393, 34.72452990008152], [-77.43174882570833, 34.724529201053315], [-77.43219935942346, 34.72474850975725], [-77.43232580371166, 34.72475074236459], [-77.43317764578768, 34.724851378689], [-77.4336256500748, 34.724689734383404], [-77.43438946451678, 34.72490452444342], [-77.43469119386879, 34.72543836318137], [-77.43523166942676, 34.72521630568511], [-77.43595937742667, 34.72548677572965], [-77.43701430266847, 34.7254240373732], [-77.43707729555969, 34.72524071734197], [-77.43740321367437, 34.725432648696525], [-77.43737107969605, 34.7255487195539], [-77.43822224179372, 34.72652882626179], [-77.43829404298044, 34.726846554039135], [-77.4385748439203, 34.72708745243013], [-77.43896108557053, 34.72746103023442], [-77.439183655582, 34.727637527935926], [-77.43958790268287, 34.72800048869102], [-77.439596804946, 34.72808857728547], [-77.44004697849896, 34.72859664133088], [-77.44014962420273, 34.72873056665463], [-77.44028659626228, 34.72869356124593], [-77.44016888584507, 34.728762530597066], [-77.44015552661232, 34.72877395543587], [-77.44012610028912, 34.728811871940266], [-77.43945394900061, 34.7291232278849], [-77.43916144451963, 34.72952856535791], [-77.43902295335383, 34.72991452150227], [-77.43857081394779, 34.72975557305379], [-77.4381687136226, 34.730014438528094], [-77.43776807867289, 34.730159744638236], [-77.43752421902063, 34.73045698770658], [-77.43715845402646, 34.73020521346905], [-77.43689275731113, 34.7301096573455], [-77.43656053507087, 34.73005588860562], [-77.4363971642239, 34.73011123734156], [-77.43620145030374, 34.7301713315378], [-77.43600965189478, 34.73022589646786], [-77.43578522237307, 34.73051957005144], [-77.43572645106948, 34.73051096322274], [-77.4352786130587, 34.730054716402094], [-77.4350207223047, 34.73010576835928], [-77.4348481754362, 34.73006990693592], [-77.4346565525967, 34.7299888153785], [-77.434501777566, 34.73000570689492], [-77.43433127793325, 34.73007681771992], [-77.43417285999232, 34.730216090764785], [-77.43415045885251, 34.7302931492788], [-77.43403008808018, 34.73041121988673], [-77.43393209242429, 34.730496358655394], [-77.43393520365548, 34.73057557018516], [-77.4338534470443, 34.73054847951262], [-77.43379770798374, 34.73050816923695], [-77.43328233537677, 34.73030652232615], [-77.43325572437774, 34.73028788911326], [-77.43276927426123, 34.73016625525491], [-77.43269008634948, 34.730137605240266], [-77.43252298550195, 34.73014718848398], [-77.4323814628205, 34.730096333775094], [-77.43229070673209, 34.730132149164476], [-77.43222058774697, 34.730177740526514], [-77.43220729982204, 34.73027888851699], [-77.43205905070307, 34.73040080982655], [-77.43202770422518, 34.730450228739386], [-77.43193400630886, 34.73063663319601], [-77.43187536317592, 34.73073734261222], [-77.43180684076785, 34.7308371576469], [-77.43179756200958, 34.73086847247145], [-77.43179153139086, 34.730898731615106], [-77.43179880826717, 34.73100183717527], [-77.43180541162403, 34.73115074144633], [-77.43181145120883, 34.73133681295664], [-77.43207181677735, 34.73152337227583], [-77.43220694930096, 34.731806870013344], [-77.43264599645238, 34.73172403884789], [-77.43281305134961, 34.731733292556875], [-77.4329077982033, 34.7316006060415], [-77.43297204496116, 34.7315584622582], [-77.4330302417172, 34.731497944439475], [-77.43310105781848, 34.731456059729176], [-77.43314967588832, 34.731448117824826], [-77.43326611985844, 34.73147018136257], [-77.43346765298777, 34.73153865776566], [-77.43353782772935, 34.73163902004657], [-77.43364506374392, 34.73159705582907], [-77.4340471294198, 34.731654651563105], [-77.43416807824588, 34.731676669463226], [-77.43467423685408, 34.73178291057546], [-77.43479637944263, 34.73172105149453], [-77.43522531062402, 34.731507337392394], [-77.43540319113315, 34.731478308949846], [-77.43557537148861, 34.731070626912576], [-77.43557511299056, 34.73101144839436], [-77.43572974986395, 34.730711258959225], [-77.43570331850255, 34.7310523235906], [-77.43614889550742, 34.731201075872896], [-77.43621827519237, 34.73123862488752], [-77.43629002708724, 34.73125393682345], [-77.43666639325608, 34.73129875099034], [-77.43687734517054, 34.731176658208994], [-77.43702004426471, 34.73112876859613], [-77.43720964532238, 34.73108268035047], [-77.43762266838854, 34.73081660744037], [-77.4378124176861, 34.730927774741424], [-77.43813860937067, 34.73124926106201], [-77.43824652250458, 34.731330427682366], [-77.43863806010704, 34.73152880031128], [-77.43870442074382, 34.731509579833144], [-77.43881767245088, 34.73164457405575], [-77.43909837800646, 34.73186780531751], [-77.43905660928904, 34.73221249051914], [-77.43901727196575, 34.73227335023746], [-77.43907376993481, 34.73244888875871], [-77.43912851019438, 34.73274804527864], [-77.43949622060441, 34.73299973206642], [-77.43953057573873, 34.733026692030364], [-77.43954292658569, 34.73304328768887], [-77.43964080877396, 34.73305025213098], [-77.44007356872775, 34.73312596745378], [-77.44015007235514, 34.73316079829477], [-77.44020781959058, 34.73319051865487], [-77.44031729091336, 34.73328661657529], [-77.44064642061024, 34.733661252533], [-77.44083458329895, 34.73382181622586], [-77.44091129176249, 34.73385377836736], [-77.44110762161023, 34.73406731848074], [-77.44115511468327, 34.73411905585691], [-77.44115950970739, 34.734132648119555], [-77.44116514996404, 34.73414187965392], [-77.44127512337224, 34.73434090390087], [-77.44135588765153, 34.734488033278126], [-77.44135309655981, 34.734498282859185], [-77.44136419822757, 34.73450440800328], [-77.44142316675456, 34.73458270583477], [-77.44159345924736, 34.734820026754036], [-77.44163318737158, 34.73486442872056], [-77.44167035378013, 34.735258726158676], [-77.44203473475943, 34.735510891757876], [-77.44204912441114, 34.735547092429286], [-77.44205913115346, 34.73557226647293], [-77.44230577879362, 34.73588641264501], [-77.44250079171977, 34.73611612589485], [-77.44260788218091, 34.73620676878314], [-77.44276672782429, 34.73630500840193], [-77.4430221955916, 34.736467748315235], [-77.44303322745206, 34.73647570034474], [-77.44303651523946, 34.73648058208058], [-77.4430515574261, 34.73649467615401], [-77.44336113893998, 34.736785287459966], [-77.4435317434804, 34.7369850245306], [-77.44386772129866, 34.73702031934016], [-77.44413225231045, 34.737125571596245], [-77.44434351540217, 34.737109487588484], [-77.44473955533753, 34.737102938576705], [-77.44477290095587, 34.73712737032523], [-77.44514965720046, 34.73737822695348], [-77.44532725672966, 34.737427462754255], [-77.44570047156692, 34.737830399988674], [-77.44583834495272, 34.73798368487759], [-77.44593728540094, 34.738045119233696], [-77.44623829845513, 34.73826320789738], [-77.44627896133068, 34.73857044328592], [-77.44636954571808, 34.738654860310504], [-77.44667168501535, 34.73886066776173], [-77.44654334733312, 34.739206844265354], [-77.44622213348514, 34.73876689164587], [-77.44600929870843, 34.738805188228305], [-77.44554646809993, 34.738886105014096], [-77.44536963724052, 34.738785243500175], [-77.44517658412798, 34.73889741542085], [-77.44491250369605, 34.738861160149774], [-77.44473589524503, 34.73889013863653], [-77.4444997092296, 34.73885972108147], [-77.44434442316214, 34.738886225973644], [-77.44426775301983, 34.73887349631878], [-77.44425944155485, 34.73885653916845], [-77.4442572440781, 34.73864344968861], [-77.44422080057434, 34.73856353188846], [-77.4438613188787, 34.73806207905673], [-77.44375454123659, 34.73796037919363], [-77.44356363816178, 34.737774940651626], [-77.44343359611031, 34.73764788418475], [-77.44335627962467, 34.73759151966479], [-77.4432598663134, 34.737582478782144], [-77.44295074271268, 34.73756082629968], [-77.44278472327422, 34.737554081472794], [-77.44267831368077, 34.73771868305536], [-77.44244548017552, 34.73794333189784], [-77.44247499736039, 34.738047871379685], [-77.44228814984473, 34.738238289972045], [-77.4419889124338, 34.738342849122844], [-77.4419710058496, 34.73870457570971], [-77.44185283778796, 34.73885433327278], [-77.44179203606855, 34.738923259539064], [-77.44163611738946, 34.73910470104295], [-77.44138159924476, 34.7392487257227], [-77.44139907615488, 34.739389622562996], [-77.44128924172395, 34.73959733085679], [-77.44112683002072, 34.73971874402024], [-77.4408905648709, 34.74004820211256], [-77.44079015688432, 34.74016014914337], [-77.44075442365273, 34.7402191109203], [-77.44064020583282, 34.74033063433658], [-77.44047894860813, 34.740516832065936], [-77.4404475088074, 34.740599467005914], [-77.44036268170227, 34.740714859764424], [-77.44028513819997, 34.74082225426959], [-77.44025807769445, 34.7409037359546], [-77.44022231598835, 34.74107981961817], [-77.44018207545517, 34.74123662136133], [-77.44015335260642, 34.74161475344173], [-77.44018696094331, 34.74189701890468], [-77.44020606308581, 34.742119432447076], [-77.44018413686705, 34.74218453497141], [-77.44016924025219, 34.742253917263085], [-77.4401091152756, 34.74260628960636], [-77.44008694552659, 34.74270960716969], [-77.44007439247385, 34.74284664898964], [-77.44005018139151, 34.743077286595046], [-77.44003063094976, 34.743248960076436], [-77.44002054443817, 34.74350634243013], [-77.44001825363488, 34.74352414983351], [-77.44001654642847, 34.74353772860412], [-77.44004020458685, 34.74381133134252], [-77.44004174546485, 34.7439736239045], [-77.44005934552001, 34.74437704504289], [-77.44005797728018, 34.74441326168407], [-77.44005706168258, 34.74456188080727], [-77.44014834819654, 34.74482196748162], [-77.44012764871562, 34.744959932492705], [-77.44014728545275, 34.74520859659198], [-77.44015054707032, 34.74552695781974], [-77.44011913199694, 34.7457269752101], [-77.43996152909867, 34.7460199522957], [-77.43981918917818, 34.746168046665176], [-77.43975751475284, 34.74622819541866], [-77.43967564398737, 34.746307439604124], [-77.43961215291233, 34.746384893441125], [-77.43962090584986, 34.746459985859545], [-77.43964786810257, 34.74648159559634], [-77.43966194693796, 34.74648126686935], [-77.43970014010159, 34.7464876656341], [-77.43974716390261, 34.74642423993549], [-77.43983456445523, 34.746438743835], [-77.43995753980353, 34.746393988611956], [-77.44012739871431, 34.74653477776161], [-77.44019935691621, 34.74658632535121], [-77.44049579125118, 34.74676561483224], [-77.44053351068959, 34.74689332770346], [-77.4406612745923, 34.746905834300506], [-77.44087295124612, 34.74689736787656], [-77.441187041117, 34.7469066072654], [-77.4413054205079, 34.74689582660935], [-77.44150191464973, 34.74683756891902], [-77.441549125351, 34.74675029237133], [-77.44173510143466, 34.746639514642126], [-77.44176712811736, 34.74637865706569], [-77.44177284576338, 34.746368027170746], [-77.44180722044248, 34.746361930013116], [-77.44210136529723, 34.74636119694943], [-77.44245945098092, 34.746333521889945], [-77.4426619679606, 34.74632477625196], [-77.44275694688912, 34.74631164180923], [-77.44292215952194, 34.746343170403605], [-77.443380977467, 34.746371126605794], [-77.44361888434793, 34.74639222770782], [-77.44379838334862, 34.746424001348984], [-77.44400377353784, 34.74643487818115], [-77.44418390253604, 34.746567296395014], [-77.44432561163708, 34.746426364449974], [-77.44455174191268, 34.74642038250094], [-77.4446502310502, 34.746416844852675], [-77.44489901182592, 34.74641119480333], [-77.44488026491805, 34.74662010087603], [-77.44469680297337, 34.746657254635664], [-77.44458305077515, 34.74664904649833], [-77.44428079943799, 34.74672552222446], [-77.44401034506606, 34.74678198105342], [-77.44389979092882, 34.746794272586484], [-77.44387488240801, 34.74681025959054], [-77.44385559120052, 34.7468212033002], [-77.44382901659698, 34.746857637220664], [-77.44359869393911, 34.74710683659525], [-77.4433962339648, 34.74721976587845], [-77.44332104699396, 34.74740103367931], [-77.44322322126283, 34.74771834958894], [-77.44307683688162, 34.74806429717585], [-77.44298400718175, 34.748345836183766], [-77.44278653822373, 34.74868385026601], [-77.44244573039754, 34.74896204125398], [-77.44211314690395, 34.749359187685315], [-77.44195149345799, 34.7495102076308], [-77.44190031099225, 34.74956659420159], [-77.441776868497, 34.74969878162237], [-77.44136413345109, 34.75018624781387], [-77.44105097051863, 34.75031369198197], [-77.44100251728433, 34.75034335307732], [-77.4409254952563, 34.75042484229803], [-77.44067730226297, 34.75055990046803], [-77.4405481749751, 34.750697083147074], [-77.44046489957358, 34.750939644670396], [-77.44053757484829, 34.75125240272533], [-77.44031320499536, 34.75146057845526], [-77.43997295683971, 34.75150042273452], [-77.43958547967867, 34.75176746931068], [-77.4392737011362, 34.75192896633192], [-77.43920269715993, 34.751946076822094], [-77.43887188397112, 34.75209744077031], [-77.4387083042795, 34.752118846899336], [-77.43851499222686, 34.752106445192446], [-77.43835575009896, 34.75216733358157], [-77.4380116108461, 34.75218788447364], [-77.4378569282507, 34.752272596276235], [-77.43782426632829, 34.752277238495374], [-77.43760722621383, 34.75227516035548], [-77.43726224196598, 34.75227566201055], [-77.43719624075197, 34.75223138257764], [-77.43714227636801, 34.75226352837266], [-77.43711023426577, 34.75229126636263], [-77.43672432368822, 34.752328645504804], [-77.43652370768302, 34.75233929822708], [-77.43648921333543, 34.752353835490496], [-77.43632444263909, 34.75242327615719], [-77.43624034828471, 34.75247872667441], [-77.43617093406934, 34.752522163698906], [-77.43616236720335, 34.75253242976496], [-77.43613176279699, 34.75258561571902], [-77.43604855416628, 34.75272040218121], [-77.43600940130763, 34.752798261487534], [-77.43619369819488, 34.75308915069097], [-77.43616221958995, 34.75318091905535], [-77.43620096930842, 34.75345433611929], [-77.43623813218849, 34.753595656231525], [-77.43619868684294, 34.753649928145855], [-77.43617834193336, 34.75368004534017], [-77.43601344146617, 34.754135781381194], [-77.43600980688421, 34.75414297978354], [-77.4360185707573, 34.75416680932838], [-77.43614678406632, 34.7545265635694], [-77.43622012869743, 34.75449597032393], [-77.43640247290536, 34.754419910964174]], [[-77.45646195047158, 34.74605023354384], [-77.45633449733336, 34.74592527268683], [-77.45614821437353, 34.745734734083754], [-77.45595052602224, 34.74559670286188], [-77.45580855023374, 34.7455266638675], [-77.45565981178935, 34.74549213308026], [-77.45531840056316, 34.74531216055626], [-77.45523224907055, 34.745302196679106], [-77.45484820842344, 34.74529196834856], [-77.45459078775795, 34.74530305850135], [-77.45421952336089, 34.74540980402743], [-77.45403690266173, 34.745462310787026], [-77.4539121435421, 34.745775082980906], [-77.453942287578, 34.74587198111509], [-77.45410194443471, 34.746142308360746], [-77.4542992728293, 34.746311093399086], [-77.45453439897918, 34.74640826571022], [-77.45462981681567, 34.74643026438189], [-77.45490371037296, 34.74643828701223], [-77.45525746796756, 34.74633123934404], [-77.45542930380637, 34.74624061189766], [-77.45563318963744, 34.74613308001237], [-77.45580921066707, 34.74632266170935], [-77.45627590968232, 34.74612788090358]], [[-77.47333148797756, 34.467800215152415], [-77.47247973973165, 34.467636665765], [-77.47197812573702, 34.46777420199976], [-77.47186789453235, 34.46781526168643], [-77.47165611557196, 34.46786546602948], [-77.4713607764981, 34.46797813683899], [-77.47121346256553, 34.468091318546975], [-77.47078569397756, 34.468336631833935], [-77.47064060990363, 34.46840700747652], [-77.47045646941649, 34.46848012277037], [-77.47005435335777, 34.46871618596862], [-77.4697534816596, 34.46878221486372], [-77.46959092646884, 34.46889057085002], [-77.46933534276515, 34.46896086584309], [-77.46912833685924, 34.46908825213574], [-77.46899681322492, 34.4691795179921], [-77.46893195575903, 34.469358888008074], [-77.46846078361683, 34.46968088536751], [-77.4684347414834, 34.469711325576206], [-77.46838734812411, 34.46972616431591], [-77.46810720799628, 34.469922514129216], [-77.46799186652692, 34.47009016395562], [-77.46752533513246, 34.47035793025513], [-77.46750306747467, 34.470446689002614], [-77.46715611540345, 34.47041968387363], [-77.4660515454876, 34.470716966292756], [-77.46582010897721, 34.47081703306972], [-77.46540191772823, 34.47080295633273], [-77.46517852210633, 34.470914316394925], [-77.46515149027238, 34.47108618816401], [-77.4648325371942, 34.47118244724994], [-77.46456670200817, 34.47139607160966], [-77.46361659416718, 34.47165917546387], [-77.46314426690023, 34.47189297835357], [-77.46256935907482, 34.47213285146708], [-77.46250362295918, 34.47217572473857], [-77.46241706697046, 34.47219600115246], [-77.46192359585856, 34.472437809871025], [-77.46187136900203, 34.47246254359899], [-77.46182327079008, 34.47248625683208], [-77.46132504955918, 34.472745163404916], [-77.46129711734869, 34.47277754495147], [-77.46125077636492, 34.47285444601407], [-77.46111939046895, 34.47307247444306], [-77.46102022517245, 34.473237035019054], [-77.46083457349869, 34.47339576239052], [-77.46053044031181, 34.47388279996072], [-77.46057941481759, 34.47405831774344], [-77.46122042670657, 34.47452238051929], [-77.4602950328215, 34.47428314495911], [-77.45968360644241, 34.47468832086621], [-77.46012938577309, 34.47518031541974], [-77.45916294398171, 34.4750668561867], [-77.45872217922624, 34.47531498448086], [-77.45843319230426, 34.475544198235866], [-77.45801739821349, 34.47580140654595], [-77.45742031573894, 34.47592433789984], [-77.45816469667298, 34.47634026941291], [-77.45924268887964, 34.47601695540499], [-77.4593434625734, 34.47598651254944], [-77.45941220111388, 34.4759786743647], [-77.45954522303012, 34.475963504919264], [-77.4611161199096, 34.47565976744086], [-77.46115616257117, 34.47543865356263], [-77.46184819112047, 34.47503969512403], [-77.462003190227, 34.47490272196124], [-77.46219427226647, 34.47481586760108], [-77.46277630710668, 34.474684335955814], [-77.46302093816848, 34.47440476961991], [-77.463295411014, 34.47434252740223], [-77.46326081659439, 34.474194518292435], [-77.46330300789575, 34.473999544814234], [-77.46341632120726, 34.47380725064191], [-77.46398955011367, 34.473640710093726], [-77.46414913009203, 34.47360694434997], [-77.46419075654659, 34.47358950425825], [-77.46430602120927, 34.47357207776509], [-77.46541770742499, 34.47332261170186], [-77.46607918260595, 34.47331897324789], [-77.46672180168122, 34.4731681834789], [-77.46816901943947, 34.47241712971453], [-77.46853145986822, 34.47213434447811], [-77.46902335402035, 34.47173809450842], [-77.46947480022132, 34.47140463531093], [-77.4703511743969, 34.47117682077641], [-77.47090424067119, 34.470911083414755], [-77.47145125184349, 34.4707702248792], [-77.47310977616695, 34.46996571154019], [-77.47355117306826, 34.469820995836685], [-77.47383809409408, 34.469652423679534], [-77.47356050775576, 34.468637554335984]], [[-77.43096181872312, 34.50244857902942], [-77.43079950816191, 34.50251291843264], [-77.43068401847569, 34.502597258639156], [-77.4307071188922, 34.50277027105042], [-77.43059467689339, 34.502930468728906], [-77.43050784451097, 34.502965296023426], [-77.43046558548173, 34.50309711703966], [-77.43026487946636, 34.50325141131379], [-77.4301135155653, 34.50336777365762], [-77.42982668542534, 34.503566820434855], [-77.43022792226617, 34.5038032476571], [-77.43031982224674, 34.50406219032385], [-77.43026016176333, 34.50426447688379], [-77.4304381544661, 34.50447625745094], [-77.43091056061886, 34.50472634658438], [-77.43138967624455, 34.50476222382902], [-77.43227593399335, 34.50479452152277], [-77.43261606286259, 34.50458409393763], [-77.43257311871211, 34.50438246377631], [-77.43278167743777, 34.504180813915056], [-77.43287361321697, 34.504115135921616], [-77.432972665448, 34.50406507306273], [-77.43294158036387, 34.50395191764872], [-77.43304970231463, 34.50373123412321], [-77.43309902758327, 34.503630558720005], [-77.43317914850314, 34.50317074452791], [-77.43327793907271, 34.50312338217209], [-77.43326110029712, 34.50306647991119], [-77.43319670188741, 34.50303591761163], [-77.43312975140923, 34.5029899010392], [-77.43275126649519, 34.50270271049551], [-77.4326311973756, 34.502548411018005], [-77.43186518804995, 34.5024367460162], [-77.43162087051162, 34.502396202568804], [-77.43130416952543, 34.50245853040128]], [[-77.33567350133032, 34.57477946808181], [-77.33564103182533, 34.574982595554516], [-77.3353657067784, 34.57536489119452], [-77.33517045172994, 34.57576840000466], [-77.33510218870639, 34.57547657934103], [-77.33511472457128, 34.57540097124744], [-77.3347416055919, 34.57506821528146], [-77.3347321994569, 34.57503141980685], [-77.33470738107954, 34.574959867981065], [-77.33466840352415, 34.57482832047608], [-77.33477737429727, 34.57461941944666], [-77.33478432121103, 34.57460686153489], [-77.33482601249113, 34.57459339402381], [-77.33497443670434, 34.57454536987438], [-77.33512244768181, 34.57449795109166], [-77.3351714899327, 34.57448223921797], [-77.33524264931103, 34.57445684827549], [-77.33557498576968, 34.57448572484134]], [[-77.23810526364207, 34.593749307647855], [-77.23731466188478, 34.593510846385435], [-77.23710869639226, 34.59329539100388], [-77.23711312206129, 34.59319971984049], [-77.23716666579624, 34.593180890976484], [-77.23767114678868, 34.59300445418488], [-77.23786027183, 34.59293927472372], [-77.2381780344488, 34.592848650790536], [-77.23826866817757, 34.592819487240305], [-77.238885892676, 34.59277035869046], [-77.23922093791643, 34.59245409232773], [-77.24096059236749, 34.59208901412231], [-77.23998157437329, 34.591777959621325], [-77.24027855723726, 34.59137974614153], [-77.24037007048149, 34.59109975754883], [-77.24018607428127, 34.590966656986794], [-77.24002279971339, 34.59087013256271], [-77.23961063213271, 34.590568531167996], [-77.23953694307136, 34.590474852963055], [-77.23878808026062, 34.59005370002205], [-77.2387590424934, 34.59003552536354], [-77.23875476260154, 34.590032846543195], [-77.2387437724477, 34.59002882904578], [-77.23742876769658, 34.58933234180453], [-77.23608524769509, 34.58981916916125], [-77.23571831563483, 34.589952126936794], [-77.23508816071497, 34.59062477398545], [-77.23503328418236, 34.590678906601205], [-77.23440040209957, 34.5914092503546], [-77.23383928327385, 34.5918724439387], [-77.23328921633413, 34.59242674521554], [-77.23340758247667, 34.59315565750252], [-77.23339259680118, 34.59350909077749], [-77.2334772572982, 34.59380638645136], [-77.23444861223697, 34.59440363230317], [-77.23457716277252, 34.594535302700265], [-77.23466852763988, 34.594784230313806], [-77.23522288786374, 34.59477079819089], [-77.23612551206818, 34.59469062545955], [-77.23645711906772, 34.594582354973994], [-77.2364798574987, 34.5945742636417], [-77.23653951390295, 34.59456854716329], [-77.23715909183807, 34.594521143834], [-77.23738253263244, 34.594419935453615], [-77.23768601105361, 34.59433251087505], [-77.23839492503372, 34.59384131357728]], [[-77.2643619743025, 34.59608763156415], [-77.26569438471971, 34.59558026505324], [-77.26823192432312, 34.595103903808536], [-77.2707262219442, 34.594796630851754], [-77.27204706447871, 34.595202628612626], [-77.27174322524215, 34.59570082073165], [-77.27095476495194, 34.597277662333774], [-77.27017117311951, 34.59884469675584], [-77.26996913595151, 34.599380949075076], [-77.26947685874066, 34.60093218183394], [-77.26868440361481, 34.60234094212731], [-77.26843122327544, 34.603271150522005], [-77.26655965659728, 34.60313667686936], [-77.26451312648581, 34.6024548127835], [-77.2644979456052, 34.6024391060965], [-77.26448442232915, 34.60242511421032], [-77.26435410289594, 34.60227515828406], [-77.2635229633344, 34.6013345442653], [-77.26285010358626, 34.60041126012053], [-77.26271945838593, 34.60016576862405], [-77.26255843763812, 34.59965238895014], [-77.26158483437493, 34.59912099088154], [-77.26214072077656, 34.59847013091744], [-77.26229244732156, 34.597813135714816], [-77.26299353791056, 34.59712380647524], [-77.26276050112547, 34.59663351737372]], [[-77.42865407150556, 34.49153216545165], [-77.4293625532787, 34.49111980831051], [-77.42911348610374, 34.49069517940562], [-77.42882388051622, 34.490446487079595], [-77.42893478179381, 34.48972355931579], [-77.42987095560116, 34.48938276263344], [-77.42882425352715, 34.48888075951903], [-77.42877357491938, 34.488651211107324], [-77.4278082616479, 34.48843432989081], [-77.42745876808979, 34.488584082249794], [-77.42694481075326, 34.48875610352712], [-77.42658873723735, 34.488899345306045], [-77.42599305919998, 34.48918477412657], [-77.42611923630776, 34.48954303987975], [-77.42552197532524, 34.489923974902545], [-77.42518428422594, 34.49027680414855], [-77.4246408360516, 34.49046679191958], [-77.42451673692574, 34.4905464158269], [-77.42435129107369, 34.490568016022465], [-77.42393379011882, 34.49076844499072], [-77.4239294330215, 34.49085503772569], [-77.423281235946, 34.49107287731003], [-77.4233355443873, 34.49174667468034], [-77.42339822880933, 34.4917543988905], [-77.42575406957826, 34.49204940639853], [-77.42553724816375, 34.4925392067895], [-77.42536521482539, 34.492741425841004], [-77.42450478306691, 34.49316201001376], [-77.42444602278607, 34.493482866753226], [-77.42431087604126, 34.49436842519535], [-77.42499838712952, 34.494538307474905], [-77.42644772441999, 34.49481824788203], [-77.42606385642377, 34.49526826870729], [-77.42656754457715, 34.49553844547057], [-77.42658757545787, 34.49563278349672], [-77.42676332242004, 34.495797766749455], [-77.42690456700069, 34.495986739330974], [-77.42696825841733, 34.49611198141457], [-77.42724184443763, 34.4962233712078], [-77.42765902188052, 34.4962331913605], [-77.42832680904777, 34.496059346959704], [-77.42851802353142, 34.49605662091865], [-77.42853984611264, 34.49604537903943], [-77.42894454341021, 34.49575310921735], [-77.42890870809, 34.49565238806724], [-77.42916733729695, 34.495426709578396], [-77.42914125395104, 34.4949773713268], [-77.4288204729819, 34.49473346549742], [-77.42853316688087, 34.49451212047813], [-77.4281975830322, 34.494118391877485], [-77.42832124355624, 34.494032442466796], [-77.42820163204888, 34.493902465738245], [-77.42824325551167, 34.493352920782485], [-77.42830755289802, 34.49298354410473], [-77.42820921390742, 34.49267564241334], [-77.42854789252264, 34.492156132895786], [-77.42766237941565, 34.491972178396956], [-77.4285779580003, 34.491926697360874]], [[-77.44753280976659, 34.48212833051504], [-77.44673429357175, 34.48213597731396], [-77.4476681856247, 34.4822714326115], [-77.44777410648545, 34.48218891550581], [-77.449139291676, 34.48172090310133], [-77.44999051266073, 34.480956243759145], [-77.44999661988714, 34.48095097547215], [-77.44848838556292, 34.480345662417875], [-77.44779132691836, 34.48083873757279], [-77.44829329217586, 34.48130975545622], [-77.44760956182509, 34.48205688456746]], [[-77.46692381885117, 34.506129516979], [-77.46722282412696, 34.504834102474106], [-77.46724198825326, 34.50479464014571], [-77.4672500203702, 34.50477619856155], [-77.46727212158515, 34.504719614627945], [-77.46751713483336, 34.5046803113855], [-77.46740539530282, 34.50480292549097], [-77.46739934273172, 34.50484871236818], [-77.46848803081917, 34.50620883895122], [-77.46805281124978, 34.507532182064104], [-77.46805137442665, 34.50753772118767], [-77.46805022364846, 34.5075407951875], [-77.46804667079246, 34.50755063637919], [-77.46768333941199, 34.50855062912851], [-77.46757170418039, 34.508864413727196], [-77.46725692413082, 34.5095139385099], [-77.46725055404222, 34.50952847279489], [-77.46634772645427, 34.510153358979665], [-77.4661047652201, 34.510298831075836], [-77.46539095807921, 34.51100145486564], [-77.46504360370818, 34.511343361108004], [-77.46497518392593, 34.51139356127341], [-77.46495194247613, 34.51143358375324], [-77.4647882996475, 34.51158670954391], [-77.46457276552731, 34.51179215075114], [-77.46440340037975, 34.51178780754956], [-77.46431530611883, 34.511667123682784], [-77.46401644692614, 34.511386124622604], [-77.46391578491699, 34.51125963972098], [-77.46398672524882, 34.51091354452387], [-77.46439530400292, 34.51072983335946], [-77.46451046263057, 34.51057387097243], [-77.46584559583468, 34.51012789182948], [-77.46555466601843, 34.50989293881502], [-77.46499193851193, 34.50940907996868], [-77.46566371865534, 34.50878051646966], [-77.46568117846194, 34.508768534405576], [-77.465679641161, 34.50876561836116], [-77.46568377210818, 34.508760033755294], [-77.46599372333935, 34.50832413627674], [-77.46605257554754, 34.50811186110211], [-77.46613627475597, 34.50779935333861], [-77.46802191195421, 34.50753622720144], [-77.46803174423486, 34.507531821394444]], [[-77.33293017067624, 34.63415729406774], [-77.33286058006394, 34.634133692538164], [-77.332558565859, 34.63377562859419], [-77.33245727716508, 34.63399691254708], [-77.33243522209797, 34.63398920798032], [-77.33232017367533, 34.633868875287575], [-77.33225702673452, 34.63379450702923], [-77.33237641703705, 34.63366558957425], [-77.33253584052876, 34.63373662182698], [-77.33254991049317, 34.63373252890141], [-77.33257229189839, 34.63371786480704], [-77.33288651123355, 34.63381468345091], [-77.33300329150656, 34.6340125418583], [-77.3330337615119, 34.63410993134731], [-77.3330183153501, 34.63418718778295], [-77.3329571542724, 34.63416644539829]], [[-77.3637695801401, 34.52761002462091], [-77.36416393627458, 34.52740841336132], [-77.36424094133797, 34.52734441618098], [-77.36455299830789, 34.52725665277178], [-77.36455994613874, 34.52725508947513], [-77.36456961866473, 34.52725599307658], [-77.364573203172, 34.527249430595475], [-77.36479575302768, 34.52711767052655], [-77.36495903463417, 34.5269668520186], [-77.36496805071731, 34.52695315034377], [-77.36497293903791, 34.52694701743379], [-77.36517120688158, 34.52680364637522], [-77.36518830791522, 34.526775702528575], [-77.36517267756372, 34.52667341579786], [-77.36524793166906, 34.52659261930855], [-77.36526832855976, 34.52653722272106], [-77.3653637877298, 34.52643032841441], [-77.36538704365435, 34.526411950921535], [-77.36543481990218, 34.52639082340122], [-77.36544609312637, 34.52633915873759], [-77.36554766365767, 34.52612973986012], [-77.36553529088499, 34.52598736586563], [-77.36556875467261, 34.52576351893393], [-77.36562574643688, 34.52562883827505], [-77.36556077306061, 34.52552817241145], [-77.36546742741024, 34.52545761863438], [-77.36540815946101, 34.525415360548706], [-77.365402759286, 34.525406408236115], [-77.3653874648542, 34.52539304953618], [-77.36526442105128, 34.52535883152839], [-77.36499701195034, 34.525303431114175], [-77.36481544392306, 34.52525592595224], [-77.36451991789308, 34.52510920805726], [-77.36421658262783, 34.5251034297593], [-77.3640119550183, 34.52524607239911], [-77.3639524028886, 34.525380258161036], [-77.36381465499883, 34.52551619646324], [-77.36369178815968, 34.52558699673222], [-77.36341247012484, 34.52594004835979], [-77.36340211310967, 34.525942760186275], [-77.36340278862262, 34.52594908449505], [-77.36340487231273, 34.52595333415294], [-77.36321293405445, 34.52634742901865], [-77.36299196322904, 34.5264979144314], [-77.36292343688906, 34.52670328018792], [-77.36260851210595, 34.526769208003664], [-77.36258141535887, 34.52680187858145], [-77.36251074490765, 34.52699918027294], [-77.36250617197092, 34.5270575420289], [-77.36248914610606, 34.52712931387164], [-77.36259143544534, 34.52751625532887], [-77.3625960517338, 34.5275311538215], [-77.36259834492607, 34.52753391530872], [-77.36262961437049, 34.5275537595852], [-77.36285469880185, 34.52774181365382], [-77.36258180750568, 34.5279374475913], [-77.36249472175118, 34.527984848637075], [-77.36242787181301, 34.528048120629805], [-77.36225021916405, 34.528275711193274], [-77.36220191752263, 34.52832549282], [-77.36220677652331, 34.52834145771618], [-77.3622754143959, 34.5285597306853], [-77.36237893535883, 34.52866104107315], [-77.36256044621055, 34.52887194215969], [-77.36262498851677, 34.52895755015183], [-77.36268726254778, 34.5289900577648], [-77.36294670829119, 34.529145588304964], [-77.36300473182374, 34.52915285844457], [-77.36321206075449, 34.52907902273689], [-77.36321441602374, 34.52903653619859], [-77.36329170717411, 34.52899359773254], [-77.36329014262844, 34.528964421607526], [-77.36327210271374, 34.528950461455466], [-77.3632080516681, 34.528915040338056], [-77.36316744566187, 34.52880894694678], [-77.36315811979375, 34.52879982032165], [-77.36315568860539, 34.52879720120316], [-77.3630273247942, 34.528696248286515], [-77.36303457331377, 34.52864749980449], [-77.3630052041171, 34.528481630917916], [-77.36301148462164, 34.52845370482106], [-77.36305802608689, 34.5283883617289], [-77.36299826656818, 34.528229889364674], [-77.36299337825999, 34.5282114878058], [-77.36309181597042, 34.52812139815904], [-77.3632019145007, 34.52793662315169], [-77.36314539996084, 34.52780475738521], [-77.36336905035786, 34.527840297097384], [-77.36374865348988, 34.52762416990522], [-77.36376678176622, 34.52761177512083], [-77.36376855502148, 34.527611271171935]], [[-77.41788336856109, 34.49623385977808], [-77.41788320631674, 34.496470717262326], [-77.41775727941183, 34.49687044719336], [-77.41803353941813, 34.49702152847064], [-77.41918714866213, 34.497043355178945], [-77.41937679640655, 34.4970092942396], [-77.41947903040361, 34.49695847144549], [-77.41948703304936, 34.49688680610677], [-77.41983403869949, 34.49630107132387], [-77.41903847546583, 34.49576977274973], [-77.41795964627488, 34.4962052471993]], [[-77.30799975900474, 34.54556925267818], [-77.30790711486752, 34.54562398716422], [-77.30778861187777, 34.545697964436755], [-77.30698818437148, 34.54617015558993], [-77.30640845884707, 34.546456188136695], [-77.30602705793491, 34.546695768044586], [-77.30561136962164, 34.54696025323888], [-77.30555206725575, 34.54699825100604], [-77.30511364841925, 34.547244624591215], [-77.30481354209431, 34.54749526083277], [-77.30458258460371, 34.547627019506514], [-77.30425009755842, 34.54781776926171], [-77.30372189073738, 34.54824016380443], [-77.30346579042512, 34.5484295177238], [-77.30321796412687, 34.548560674515116], [-77.30258838685472, 34.5488924559394], [-77.30250761116636, 34.54895656450039], [-77.3024227477152, 34.548983574433315], [-77.30211134018563, 34.54915259671579], [-77.30162738561035, 34.54941229938649], [-77.30139328986326, 34.54955357147544], [-77.30050252377808, 34.54996742676775], [-77.30003442898092, 34.550363275109945], [-77.29929887124479, 34.55083332384875], [-77.29885275663982, 34.55115139037608], [-77.29843882883137, 34.551424603091725], [-77.29749917661746, 34.552070752582225], [-77.29713898978852, 34.55230417595734], [-77.29684523088406, 34.55239946556134], [-77.29627743202056, 34.55273563447364], [-77.29614359810522, 34.55281308817634], [-77.29604916493045, 34.55285528970155], [-77.29532885369152, 34.55336131638648], [-77.29529313628467, 34.55339260946312], [-77.29525013493054, 34.55343604147242], [-77.29481118021062, 34.55370527396254], [-77.29440066027183, 34.55395166081363], [-77.2936561986831, 34.55442191701946], [-77.29349992587613, 34.554506687203556], [-77.29334495139852, 34.55462509296735], [-77.29206165078912, 34.55543197841565], [-77.29167678010208, 34.55560617816248], [-77.29046512568686, 34.556523762695846], [-77.28970194212354, 34.556939127374704], [-77.28882129266148, 34.55736225055404], [-77.28770221698585, 34.55811713078903], [-77.2871714452101, 34.55845254346762], [-77.28681860094744, 34.558681588660335], [-77.28552510003898, 34.559393631372025], [-77.28456330152628, 34.560062273481044], [-77.28406246729493, 34.56043398373262], [-77.2838733461797, 34.56056048261389], [-77.28362977586139, 34.5606915015705], [-77.28222406370173, 34.561621550305716], [-77.2814592389294, 34.56219833891618], [-77.2813972341469, 34.562243288673386], [-77.28127615175146, 34.56232828768831], [-77.28057264783732, 34.56277035407981], [-77.28018796984958, 34.56308288295109], [-77.2791764629801, 34.56368512745749], [-77.27892413770387, 34.56379535943537], [-77.27868346980047, 34.56394909470944], [-77.27819642720218, 34.56423886329874], [-77.27798005144724, 34.564365164472136], [-77.27791456078849, 34.564387778006896], [-77.27784424768693, 34.56442868664947], [-77.27725426835121, 34.564779472357316], [-77.27705197669542, 34.56493494684852], [-77.27656145478788, 34.565299117739286], [-77.27621225314083, 34.565502450419636], [-77.27606789704512, 34.565628915975374], [-77.27569153172729, 34.56591244694633], [-77.27548894502944, 34.5660547548196], [-77.27543888678368, 34.56612897569581], [-77.27502001473955, 34.56648923402559], [-77.27459851451695, 34.566695913373366], [-77.27404425373413, 34.566944092494396], [-77.27339632788505, 34.56730429197893], [-77.27332884867508, 34.56753265678615], [-77.27312439626472, 34.56775425298964], [-77.27306126165658, 34.567957419781436], [-77.27273185529391, 34.56819473019585], [-77.27230754347424, 34.568601441511746], [-77.27213038506048, 34.568716576822496], [-77.27170880120482, 34.569056980412185], [-77.27161924496458, 34.56930364700403], [-77.27107395171922, 34.56948485935794], [-77.27067324487825, 34.56977667270067], [-77.27039093150451, 34.569896047751804], [-77.26997432104031, 34.56999273550069], [-77.26961362316634, 34.57014864461082], [-77.26887789812436, 34.57049422855475], [-77.26855117461406, 34.57069406596575], [-77.26839989917057, 34.570849116768066], [-77.2681267218065, 34.57113202592961], [-77.26803582494577, 34.57137415581054], [-77.26786068074924, 34.57158243986006], [-77.26733894025611, 34.571981429887515], [-77.26697789498105, 34.572455689648706], [-77.26653740153047, 34.57267028689864], [-77.26589051114821, 34.573068096530754], [-77.2655513833575, 34.57328617252053], [-77.26503008047206, 34.573581206281716], [-77.26477291194576, 34.573729796104416], [-77.26468412933912, 34.57378682862462], [-77.26419233587006, 34.57412194815063], [-77.2639462162409, 34.57430896332205], [-77.26323461382827, 34.574986185341245], [-77.26323224363371, 34.574988398943255], [-77.26322916750418, 34.57499064137052], [-77.26208694649472, 34.57584166822006], [-77.26161770467067, 34.5761813192613], [-77.26126912593405, 34.576459628399654], [-77.26097504149796, 34.576696862360144], [-77.26084861437992, 34.576811746839965], [-77.26045045761153, 34.57715751659166], [-77.26008858063321, 34.577450234835794], [-77.25994484925322, 34.5775584761645], [-77.25970454417724, 34.57778045080671], [-77.25945070188365, 34.57799093083702], [-77.25947573742266, 34.57821965345411], [-77.2594670167042, 34.578463554456704], [-77.25951475159647, 34.579007181597596], [-77.25992558346093, 34.579167305918716], [-77.2607530193692, 34.579355740224514], [-77.26099645058397, 34.579055246230055], [-77.26119441154398, 34.57901946924066], [-77.26121176980749, 34.57907218825556], [-77.26103156854222, 34.579487902233346], [-77.26102330067074, 34.57952869873993], [-77.26114588645363, 34.579705169918], [-77.26079562747523, 34.57980777991157], [-77.26031439516797, 34.579944258347666], [-77.26007591035716, 34.580068006676775], [-77.25977789959447, 34.580373380278395], [-77.25945361738904, 34.58081370912901], [-77.25944689248823, 34.5808186758594], [-77.25944501519183, 34.58082138553765], [-77.25923940458327, 34.581261344454184], [-77.25924623756171, 34.58127422614374], [-77.2592367986516, 34.58129345303129], [-77.2592138757331, 34.58163831441968], [-77.25962745104553, 34.58164091346225], [-77.25985153569155, 34.58167398733316], [-77.25996100721818, 34.581725913434134], [-77.26002744312362, 34.58174284315774], [-77.26006680824669, 34.581703059752684], [-77.2601518940929, 34.581705127373176], [-77.26015978900311, 34.581699618785585], [-77.2601961570976, 34.58165379089317], [-77.26031317826757, 34.58159460293302], [-77.26031384268981, 34.58159414852249], [-77.26031412733813, 34.58159392794856], [-77.26031506697942, 34.58159331120454], [-77.26044306028379, 34.581486237931735], [-77.26052271565575, 34.58145129590752], [-77.26057902539435, 34.58140259980408], [-77.26060533791124, 34.58138117153669], [-77.26061329488437, 34.58136754484891], [-77.26064684518396, 34.58135161203168], [-77.26071977214067, 34.5812979338158], [-77.26083013705414, 34.5812166988403], [-77.26087825778497, 34.58116697545186], [-77.26092194512046, 34.58114912282895], [-77.26098504066469, 34.58109966460129], [-77.2610328831991, 34.58106130652631], [-77.26111542312225, 34.58099257866941], [-77.26116227685313, 34.58095365212632], [-77.26126048020771, 34.58087181596461], [-77.26127647053902, 34.58084480193201], [-77.26130626831804, 34.580833693334405], [-77.26134681709952, 34.580801097984036], [-77.26142565842775, 34.580738704801554], [-77.26149265479222, 34.58067084262876], [-77.26160411368426, 34.58055940646418], [-77.26153773284584, 34.5805118526646], [-77.26174037462424, 34.580439700143884], [-77.26185981683183, 34.58034015210935], [-77.2619104440891, 34.58030550611099], [-77.26207602562188, 34.58020382681123], [-77.26208461328012, 34.58019573284374], [-77.26220442891085, 34.58009296520393], [-77.2622554803446, 34.58003481247809], [-77.26241959015915, 34.579886561345404], [-77.26240909106134, 34.579873396688924], [-77.2624596608521, 34.57985096935169], [-77.26262424478, 34.57970555006713], [-77.26269070684361, 34.57965988167288], [-77.26284191754331, 34.57957052826819], [-77.26290966185519, 34.579519296572116], [-77.26300367882578, 34.57944883302574], [-77.26302766946397, 34.57940711623619], [-77.26316139206605, 34.57929691908994], [-77.263230053912, 34.579230971613235], [-77.26325430800668, 34.579206499157856], [-77.26333897672063, 34.57912170533804], [-77.26336877661606, 34.57905325872533], [-77.26340012926168, 34.57900868117381], [-77.26349521047774, 34.57893255853046], [-77.26350007647241, 34.57884141852462], [-77.26360833569305, 34.578829945477274], [-77.26364675557451, 34.57879241237373], [-77.26371033721783, 34.57869980622727], [-77.26390444235057, 34.578595566118025], [-77.26388717330994, 34.57857565468073], [-77.26393107660712, 34.57856751383584], [-77.26395053532339, 34.57857003647703], [-77.26406593472345, 34.578471881438844], [-77.26409879851315, 34.57838806843901], [-77.26412743408451, 34.57835888436672], [-77.26421412428095, 34.57829585993906], [-77.26423638993103, 34.57818182572385], [-77.26437241780442, 34.578152589734714], [-77.26438258300573, 34.578143284863295], [-77.2644495203625, 34.57804276713431], [-77.26468506903228, 34.57795108633511], [-77.26470180667545, 34.57793853349177], [-77.26470751405624, 34.57793317350036], [-77.2647209384037, 34.57792231081048], [-77.26482153271478, 34.577824307084256], [-77.26485444838653, 34.577745677604426], [-77.26488064440274, 34.5777111219957], [-77.2650844592388, 34.577621633076696], [-77.26512714361212, 34.57758644459228], [-77.26518575526259, 34.57749945085922], [-77.26521777311548, 34.57741158824191], [-77.265428916866, 34.57731369590198], [-77.26545262395253, 34.577291848974156], [-77.26545970729276, 34.57728532849734], [-77.26547608700875, 34.57727202567322], [-77.26558351405806, 34.577079649401426], [-77.26559484572088, 34.57706028838029], [-77.26569488802247, 34.577006355108395], [-77.2659374283046, 34.57673719347562], [-77.26613736753015, 34.57674626351668], [-77.26623427735163, 34.57667259535208], [-77.2662850726864, 34.57664323460702], [-77.26635897249332, 34.576619191885264], [-77.2664428494961, 34.57655891179469], [-77.26645978808375, 34.57654455064234], [-77.26647855017816, 34.576529087518125], [-77.26656958459702, 34.5764299408427], [-77.26665155914957, 34.57638649912046], [-77.2666810244846, 34.57636138482004], [-77.26671485689056, 34.57632353099756], [-77.26674689733655, 34.5763069867096], [-77.26677946270472, 34.57627858174887], [-77.266776573588, 34.57626946732447], [-77.26680793230477, 34.57625371550456], [-77.26684006575886, 34.57622554466171], [-77.26685065466675, 34.576216375930464], [-77.26687215500866, 34.57619793093246], [-77.26695960967199, 34.57600325739756], [-77.26699749190738, 34.575992254853965], [-77.26719825802371, 34.57589860262802], [-77.26720456409038, 34.575892506586364], [-77.26721766694983, 34.57588478827927], [-77.26714067006999, 34.57576784588505], [-77.26736503793234, 34.57570662188334], [-77.26750021750205, 34.57571820208547], [-77.26754694565726, 34.575681959471396], [-77.26759531816124, 34.57558282092622], [-77.26760728891499, 34.57556887050796], [-77.26767003986946, 34.575531611639434], [-77.26772972669289, 34.575373755601206], [-77.2677960641538, 34.57534804655383], [-77.2678508402267, 34.57528016934103], [-77.26789958195513, 34.575196215704665], [-77.26797222109903, 34.57512623010537], [-77.26807604749212, 34.575024555206156], [-77.26808405698658, 34.575017190081375], [-77.26811109473171, 34.57499896098228], [-77.2682276892062, 34.57491064983206], [-77.26827020217219, 34.57486862689496], [-77.26836346675759, 34.5748446236335], [-77.2685675705447, 34.5748044929208], [-77.26859907098047, 34.57479541252977], [-77.26866839980192, 34.57472986587865], [-77.26873973089673, 34.57472560959456], [-77.26874947165192, 34.574716008444774], [-77.26877686011704, 34.574662025614664], [-77.26890290473814, 34.57461128875251], [-77.26890412501551, 34.5746103342065], [-77.26896236055619, 34.57449840171428], [-77.26896440224473, 34.57449723969161], [-77.26897355804552, 34.5744921447717], [-77.26908488931531, 34.574278774314], [-77.26908256435118, 34.57427086252585], [-77.26959181164091, 34.57408239082495], [-77.26959842524968, 34.574078291660285], [-77.2695995866622, 34.5740758438268], [-77.26960567768499, 34.57407161584117], [-77.26974690539868, 34.57388174539841], [-77.26987500812884, 34.57386182959298], [-77.26990101390605, 34.57385450291765], [-77.26991747049738, 34.573855098367765], [-77.26997780287503, 34.57381099416196], [-77.26999880205582, 34.57377717234386], [-77.27002276196731, 34.573755611851496], [-77.27011962550351, 34.57369535450833], [-77.27007221257222, 34.573641665751886], [-77.27017760228685, 34.57360759181083], [-77.27024997412337, 34.573614266559844], [-77.27034202433875, 34.573545043408906], [-77.27040493414795, 34.5734966068552], [-77.27041080560241, 34.57348639450983], [-77.27043802621714, 34.573434756888055], [-77.2705979995398, 34.573342736714835], [-77.27060893608324, 34.57333400584753], [-77.27062236880366, 34.573323287416535], [-77.27072248910206, 34.57322145202402], [-77.27080466535169, 34.57317948205645], [-77.2708472244675, 34.57314718695018], [-77.27083881892078, 34.57311276327966], [-77.27094482732716, 34.573073569691246], [-77.27100447059706, 34.573028583488494], [-77.27102800077793, 34.5730098012711], [-77.2710892110054, 34.57296466746177], [-77.27109896338234, 34.57294832324699], [-77.27111545360351, 34.57294449667041], [-77.27116546820939, 34.572902773915004], [-77.27119333650042, 34.57286795663359], [-77.2712511224223, 34.57281214846409], [-77.27122514498839, 34.572789631526774], [-77.27133199839768, 34.572724618770714], [-77.27136205862459, 34.5726894156802], [-77.27137527368397, 34.57268359926768], [-77.27138219925553, 34.57267118175645], [-77.27140688586805, 34.57257652891215], [-77.27139527092982, 34.57256733782033], [-77.27142250874189, 34.57247236554708], [-77.27143716532767, 34.57242762011639], [-77.27147051556409, 34.57233758563552], [-77.2714995782076, 34.572259776447126], [-77.27153275285067, 34.572184039174914], [-77.27160388505801, 34.57211240249099], [-77.27173953809928, 34.572039350154256], [-77.27194834800987, 34.571903812046145], [-77.2719624266242, 34.57189461069117], [-77.27215329692982, 34.57175014116506], [-77.27219541227136, 34.57168756499512], [-77.27235437540716, 34.57160037816301], [-77.27240306846531, 34.57158605360142], [-77.27253082728606, 34.57150596434782], [-77.27257012404216, 34.5714813507013], [-77.27258185589933, 34.57147409537479], [-77.27260432146998, 34.571458584920805], [-77.27274453477659, 34.57129018337704], [-77.27286445244192, 34.571268817613735], [-77.27293219675167, 34.57122686524227], [-77.27297565134424, 34.57116713488355], [-77.27297927568482, 34.571160009057614], [-77.27300053761296, 34.57114625619701], [-77.27300773292089, 34.571044412364515], [-77.27314235857236, 34.57098680614509], [-77.27327266569974, 34.57097023539332], [-77.2732986506701, 34.570949443697906], [-77.27336317275955, 34.570854596149374], [-77.27338092680345, 34.57083807684147], [-77.27343951735284, 34.5707980593623], [-77.27352607265875, 34.57067088233638], [-77.2736541676027, 34.570632451078495], [-77.27366327635094, 34.57062460092408], [-77.27374020552432, 34.57053273120363], [-77.27379792349078, 34.570480050644335], [-77.27375475540876, 34.57039612403412], [-77.27407846554328, 34.57021002193597], [-77.27409600112996, 34.57019198136962], [-77.27410041200517, 34.57018762274426], [-77.27411085265175, 34.57017908035121], [-77.27427233805055, 34.569965467811826], [-77.27447897070802, 34.569875399171366], [-77.27450813645966, 34.56984650009676], [-77.27444189391343, 34.56974312650495], [-77.27466336273498, 34.56960461915965], [-77.27473464268112, 34.56944561163152], [-77.27488994281615, 34.56943854613277], [-77.27498290969648, 34.56933781901839], [-77.27501709065882, 34.56931699561406], [-77.27510792225759, 34.56928470441505], [-77.27517711529137, 34.56922839292517], [-77.27518816117741, 34.569212605539036], [-77.27519702192662, 34.56919965238535], [-77.27522569307058, 34.56919121760624], [-77.27533656047297, 34.56910643375261], [-77.27538665583, 34.5690397173432], [-77.27545526038243, 34.56899792815845], [-77.27550315566378, 34.56897903264267], [-77.27557324115357, 34.56892055029722], [-77.27559821823142, 34.56889928379468], [-77.27560619244532, 34.56889195518536], [-77.27562027945129, 34.568878613752496], [-77.27572114329827, 34.56878315480988], [-77.27576394690834, 34.5687180905998], [-77.27581817942018, 34.56867294672255], [-77.27586667169732, 34.56864515610195], [-77.2759415102087, 34.56857452367984], [-77.27595022716048, 34.568565489631126], [-77.27595383231973, 34.56855838047564], [-77.27597426427026, 34.56854411279712], [-77.27606896238458, 34.56845698636596], [-77.2761253820021, 34.56838236471557], [-77.27626296937228, 34.56827034628294], [-77.27627945214087, 34.56823785972707], [-77.27631521125073, 34.56822260540878], [-77.27636378272791, 34.568190421656], [-77.27643153164007, 34.56813197616053], [-77.27649066433645, 34.56805006175751], [-77.27651910850729, 34.56802102441501], [-77.2766242275888, 34.56795125313002], [-77.27664492187841, 34.56791307697256], [-77.27668442427581, 34.567893798745125], [-77.27673695072335, 34.56786906238959], [-77.27680862008734, 34.56780810592965], [-77.27685697256366, 34.567718672697396], [-77.2770068129094, 34.567624165817065], [-77.27700059734332, 34.567587523865015], [-77.27703776900593, 34.56755088198285], [-77.27712213862176, 34.567523921878475], [-77.27725659150862, 34.56737197122574], [-77.2774626254762, 34.56727156160577], [-77.27746665669305, 34.56726812392211], [-77.27744960677941, 34.567151470264704], [-77.2777136226329, 34.56699185519813], [-77.27778069684751, 34.56689727989489], [-77.27787250406757, 34.566873198924654], [-77.2780246660643, 34.56672531808593], [-77.27824373818946, 34.56665191932049], [-77.2783427092212, 34.56657238333487], [-77.27832614322185, 34.56651333682971], [-77.27855738235043, 34.566351984195414], [-77.27859585750544, 34.56630791920552], [-77.27860754161493, 34.566299777889355], [-77.27886688619078, 34.56622037330762], [-77.27910000102648, 34.56611214812476], [-77.27910943325335, 34.566107499534205], [-77.2791135187452, 34.56610385952114], [-77.27912009999481, 34.56609732624276], [-77.279225607199, 34.56599483193119], [-77.27927628400417, 34.56592731147339], [-77.279312860022, 34.565883853373045], [-77.27935808603081, 34.56582441675153], [-77.27938521862674, 34.56577170501007], [-77.2794274871301, 34.56573320901148], [-77.2795212346872, 34.56567141334884], [-77.27952404733455, 34.56566477772381], [-77.27953946651535, 34.565659599418595], [-77.27964071924725, 34.56559426727797], [-77.2798023362365, 34.565474203276274], [-77.27982342724027, 34.56545262894413], [-77.27984375620731, 34.56544625974548], [-77.27986599173624, 34.56543044962661], [-77.27998145378778, 34.56534720913211], [-77.28004664755045, 34.56529812293091], [-77.28009821783365, 34.565238548137565], [-77.28024175442621, 34.56514306413445], [-77.28025242889763, 34.56513282852406], [-77.28027452524803, 34.56511351585455], [-77.28037409403143, 34.56502455237355], [-77.28041804137871, 34.56497126978819], [-77.28057305944378, 34.56486528174233], [-77.28063109987288, 34.56483217529343], [-77.28065482974027, 34.56481093767109], [-77.28068423286757, 34.564776242593176], [-77.28075309751434, 34.56470082366988], [-77.2807752542432, 34.564631807659104], [-77.28080348589685, 34.56458694909882], [-77.28086784834278, 34.56452370481153], [-77.28088656086061, 34.564402230297276], [-77.2810249911148, 34.5643880390463], [-77.28104866679162, 34.564370541446245], [-77.28112400041552, 34.5642848181075], [-77.2813289520643, 34.564203504757415], [-77.28137093300023, 34.56417584779562], [-77.28139110144541, 34.56416177117369], [-77.28153307771733, 34.5640642961593], [-77.28170081167916, 34.56393999616883], [-77.28176362973517, 34.56390709892136], [-77.28181914745261, 34.563882692996394], [-77.28215290782668, 34.56372940214445], [-77.28217412728964, 34.56371910145038], [-77.28219211416345, 34.56371091283633], [-77.28226164253385, 34.56368538254396], [-77.28258409345155, 34.56355334817445], [-77.28265962143642, 34.563523095549996], [-77.28278903919252, 34.56347201334418], [-77.28286842900377, 34.563444058622146], [-77.28299387367882, 34.56339533590961], [-77.28319835905071, 34.563319694623445], [-77.28319914865833, 34.56331936378742], [-77.28340414554549, 34.56321659070155], [-77.283614671473, 34.56310013865082], [-77.28381534133464, 34.56299892718861], [-77.28398138903603, 34.562935231981385], [-77.2840709577558, 34.562895622274226], [-77.28422547232306, 34.562825942326825], [-77.28436367399485, 34.56275316706568], [-77.28449959028192, 34.56268317864085], [-77.28463658957816, 34.56261140373556], [-77.28474102946277, 34.56257653136867], [-77.28501291983525, 34.56247738317189], [-77.285046055903, 34.562466218606424], [-77.28506571406609, 34.56245793581887], [-77.28519170339376, 34.562404033565414], [-77.28545621102873, 34.56229198945749], [-77.2855057924837, 34.5622699798747], [-77.28566137859917, 34.562201059139554], [-77.28579848463029, 34.562128829467255], [-77.28586685681721, 34.56209703650554], [-77.28594259680924, 34.56205817349328], [-77.28607249653845, 34.561986194400646], [-77.2862191910254, 34.56190440916294], [-77.28627816911775, 34.56187394551145], [-77.2866606757912, 34.56165708633991], [-77.28668968412006, 34.561642225187995], [-77.28672326022355, 34.56162726114765], [-77.28710039516878, 34.56144425800286], [-77.28717030991896, 34.561416255354075], [-77.28730531485652, 34.56136359615769], [-77.2873700013657, 34.56135379380874], [-77.2874748397756, 34.561317109989545], [-77.28750971238978, 34.56130490775426], [-77.28753198752179, 34.56129488052314], [-77.28768963032111, 34.56122604859312], [-77.2877117841769, 34.561216338418745], [-77.28771905512626, 34.561213230035136], [-77.287920041459, 34.56112287205676], [-77.28805666057774, 34.56107547125659], [-77.28825723646997, 34.56100937341177], [-77.28832925026204, 34.560987957722965], [-77.28836404167082, 34.56097592509211], [-77.28857274187274, 34.56088798314018], [-77.28871332343347, 34.56083019872589], [-77.2887392844927, 34.56081819841394], [-77.28877176483053, 34.56080365849228], [-77.28914922119169, 34.560652475986494], [-77.28931357630461, 34.56060008277538], [-77.28935376695324, 34.56058740166096], [-77.28937843187572, 34.56057561049767], [-77.28955910357784, 34.560488970818945], [-77.28975238676048, 34.56038842220632], [-77.2899704714178, 34.56026275582704], [-77.29027394289227, 34.56006707875517], [-77.29038257413477, 34.560005449180665], [-77.29044352362067, 34.55997480005907], [-77.29056708099193, 34.559919538737596], [-77.29067201592258, 34.559837650716716], [-77.29077967025015, 34.559819210626095], [-77.29094590723834, 34.55974281457612], [-77.29094781104568, 34.55972354802826], [-77.29101994641711, 34.55970647280154], [-77.29117698773892, 34.559623553556996], [-77.29121640795638, 34.559605938015046], [-77.29130487249732, 34.55956893702198], [-77.29137603618383, 34.55950925005679], [-77.29142994576154, 34.55946150233898], [-77.29157610477051, 34.55935187155652], [-77.29183376476917, 34.559332743009094], [-77.29197073185686, 34.55926959659178], [-77.29201721987047, 34.55925068117766], [-77.29216605353942, 34.55920063478177], [-77.29216874315539, 34.55919899027782], [-77.29217011666772, 34.559199192818895], [-77.29230559704088, 34.55914270753193], [-77.29236729446578, 34.559105570674724], [-77.29250188829417, 34.55903007030603], [-77.29249213555515, 34.55898511738858], [-77.29275275544843, 34.558879526166216], [-77.29276551012971, 34.558871672857045], [-77.29277120686716, 34.55886904431743], [-77.2929681712317, 34.558720099095275], [-77.29305567947694, 34.5587058441914], [-77.29316368635898, 34.55863934350978], [-77.29325150572672, 34.55860966803279], [-77.29326845662992, 34.55861043785995], [-77.29336215480949, 34.55854931656904], [-77.29354507989633, 34.55852201631981], [-77.29355928081146, 34.55851597981206], [-77.29356452650109, 34.55851369974765], [-77.29357688814696, 34.55850869011687], [-77.29380365946581, 34.55838173338531], [-77.29395510225204, 34.55838297221137], [-77.29409322758039, 34.55834902325012], [-77.2941879627469, 34.55832049265056], [-77.29427408541073, 34.558286291710886], [-77.29432981167704, 34.558265365088864], [-77.294350838839, 34.55825349331952], [-77.29445115237704, 34.55820024602632], [-77.29460500846554, 34.55811642496243], [-77.29467189729527, 34.558059320810756], [-77.2947486902226, 34.55803457006291], [-77.29490448916894, 34.55795106735044], [-77.29490884369628, 34.557926288719436], [-77.29507830323732, 34.55784582972878], [-77.29514680657533, 34.55780435360176], [-77.29515782608483, 34.55779912030071], [-77.29518024596713, 34.55778911162726], [-77.29539429859395, 34.55766585714472], [-77.29554371999579, 34.557624907282936], [-77.2955748071536, 34.557610113829895], [-77.29568366308868, 34.55755836184639], [-77.29574284333421, 34.55750696468553], [-77.29587160736426, 34.55744513778318], [-77.29587585384607, 34.55740352543389], [-77.29594380467955, 34.5573112623467], [-77.2961169308441, 34.55727250535367], [-77.29627494864043, 34.55714247550997], [-77.29634301703487, 34.557034389531864], [-77.2964026738587, 34.556914778655525], [-77.29673743618207, 34.55696020301163], [-77.29682637091365, 34.557007235101345], [-77.29693362078739, 34.5569664677285], [-77.29698643407778, 34.556950703882094], [-77.29703236325572, 34.55694208753941], [-77.29712173490694, 34.556898600487564], [-77.2971253309004, 34.5568941371372], [-77.29713183992168, 34.55688663458536], [-77.29719071920874, 34.55680175941983], [-77.2972847249408, 34.55675281597012], [-77.29735684577543, 34.55663422552604], [-77.29741494083285, 34.55661173316248], [-77.29746024402385, 34.556528174601254], [-77.29747918788738, 34.55648011383419], [-77.29749546708672, 34.556453292047216], [-77.29753679084384, 34.5563666045249], [-77.2978027640623, 34.556106066943315], [-77.29816763405236, 34.55599354199556], [-77.2983318998062, 34.555952294815796], [-77.29841360356144, 34.55590671669182], [-77.29851313489465, 34.555842169417225], [-77.29913090665943, 34.55537252269208], [-77.29934926091173, 34.55558297690869], [-77.29951878679098, 34.555574920793916], [-77.2996137060494, 34.555624361907576], [-77.2997140127345, 34.55562166210214], [-77.29975164924598, 34.55564073043825], [-77.29983883059352, 34.5556071695905], [-77.29991102012887, 34.55559291879346], [-77.29995189323373, 34.55557454336147], [-77.29997265066118, 34.55554812872227], [-77.30009630047277, 34.55549262215433], [-77.30009471013034, 34.55548335871481], [-77.30024497115771, 34.555348887459125], [-77.3002253133757, 34.55529852020681], [-77.30029190696946, 34.55509734645774], [-77.30004631104168, 34.55471439783618], [-77.30006905971217, 34.55463970991146], [-77.30018521543981, 34.554468631688906], [-77.30004082076944, 34.55371787883205], [-77.3000865276481, 34.55365797971669], [-77.30001851844926, 34.553629600853576], [-77.30046586470053, 34.55262432479859], [-77.30113141147245, 34.5522614780898], [-77.30156256586312, 34.55216129767188], [-77.30300186107395, 34.551281184364534], [-77.30310539330864, 34.55123543146225], [-77.30315554584912, 34.5512099273548], [-77.3033810075423, 34.55108798620194], [-77.3035078089213, 34.55120857041799], [-77.30511267318542, 34.55170910597583], [-77.30506375432705, 34.551964488561154], [-77.30557841596541, 34.5523221107246], [-77.30557178181178, 34.55238118776597], [-77.3057992205521, 34.552547645080566], [-77.30586163764255, 34.55259055132488], [-77.30587423543919, 34.55258418490237], [-77.30589805273941, 34.55257916479148], [-77.30626733105736, 34.55245571923745], [-77.30632765003948, 34.55247954419265], [-77.30652505473438, 34.55240429251495], [-77.30666350092639, 34.55230569588352], [-77.30688725151137, 34.55219236816237], [-77.3068776337965, 34.55207912868765], [-77.3070668929013, 34.55184845965632], [-77.30759882458717, 34.55175986465866], [-77.30785802615574, 34.551599299607325], [-77.30790044627922, 34.551583527434026], [-77.3082348121966, 34.55150931012937], [-77.30825299925051, 34.551499895701866], [-77.30825891571185, 34.55150212832794], [-77.30851007044703, 34.551383565772035], [-77.30865048701405, 34.55129341619836], [-77.30890811136614, 34.551167843504764], [-77.30892523968859, 34.551088888693], [-77.30904805483918, 34.55108344145398], [-77.30923120154806, 34.5510083667133], [-77.30925009338526, 34.550998669030335], [-77.30944530376105, 34.5508869572679], [-77.30948778882119, 34.55086599647753], [-77.30953571211326, 34.550832933384164], [-77.30984632129532, 34.55054373361638], [-77.31024497299603, 34.550273455660516], [-77.31028016308807, 34.550258151519515], [-77.31035653730068, 34.55022546848889], [-77.31073970333748, 34.54998508616006], [-77.31103877271019, 34.5499095684684], [-77.31108258747143, 34.549876414367915], [-77.31128052792602, 34.5497516110984], [-77.31143569932922, 34.54972636844428], [-77.31147099746985, 34.54969824044796], [-77.31151088894649, 34.5496153660043], [-77.31155940793921, 34.549563141151104], [-77.31166149322414, 34.549440274812596], [-77.31183621136006, 34.5493902421774], [-77.31192416966127, 34.549319769320604], [-77.3120154333855, 34.549252851851946], [-77.31203627635298, 34.54923027124404], [-77.31208937114575, 34.54915178816501], [-77.31223789785359, 34.54900389917323], [-77.31225593561642, 34.54898447098853], [-77.31227135683234, 34.54897129373953], [-77.31242118032485, 34.54883792621299], [-77.31242859690572, 34.54882012336789], [-77.31257251951271, 34.5486832387358], [-77.31257373237446, 34.54864236934843], [-77.31258888070599, 34.548558484535334], [-77.31258996796927, 34.548469029820325], [-77.31256331775789, 34.548439750342936], [-77.31258430551249, 34.54839907675926], [-77.31264683213391, 34.548308297318066], [-77.3126866391699, 34.548200476540565], [-77.31270374733646, 34.54817477538381], [-77.31278630296114, 34.54800057581529], [-77.31287091900603, 34.547905959903716], [-77.31305455938268, 34.54766390169007], [-77.31308906631709, 34.54765115394636], [-77.31310173769279, 34.547628004457344], [-77.31322386298942, 34.547507190796864], [-77.31339286676196, 34.5473413873585], [-77.31334597187362, 34.547279396982944], [-77.31345589270072, 34.54729203833485], [-77.31348504192403, 34.547309716663385], [-77.31384895734377, 34.547272870258794], [-77.31385707410803, 34.54726970941442], [-77.31407084308115, 34.54713556275776], [-77.31421209324691, 34.54710133488864], [-77.31424591062768, 34.547087717188205], [-77.31433524565999, 34.54701589826766], [-77.31434364494353, 34.54696003729212], [-77.31444774767262, 34.54685167005175], [-77.31445620055192, 34.546826368786], [-77.31452109188686, 34.546767642538796], [-77.31455902819818, 34.54668429483618], [-77.31454093172735, 34.54651135531442], [-77.3144626467228, 34.54633262918195], [-77.31462081426815, 34.54618580013311], [-77.31476438965163, 34.54598271278731], [-77.31483734109996, 34.54590989320634], [-77.3150629357297, 34.54573005135208], [-77.31523707089048, 34.545716050810896], [-77.31545714605, 34.54566160841256], [-77.31558909411976, 34.54563906173283], [-77.31554115896026, 34.54556399920173], [-77.31546445109801, 34.54534963333886], [-77.31544289613821, 34.54534678381347], [-77.31545699189144, 34.54532628500119], [-77.31526309727495, 34.545114313934576], [-77.31522513703686, 34.54502886385258], [-77.31479000736655, 34.544692636936325], [-77.31464868903396, 34.5444995894025], [-77.31454637754995, 34.543889014210045], [-77.31466584181297, 34.54373122834461], [-77.3151200334147, 34.54317465793589], [-77.31591777635188, 34.54275600317369], [-77.31604234978042, 34.54263012751345], [-77.31616586942957, 34.54253654277192], [-77.31671371196325, 34.54229669160259], [-77.31696033591336, 34.54208348407474], [-77.31748758475767, 34.54187034151098], [-77.31750883275461, 34.541871826936536], [-77.31756214711281, 34.54184635929919], [-77.31778864567849, 34.54149316321669], [-77.31830505082809, 34.541399677898006], [-77.31839876321973, 34.54129344488389], [-77.31857108712421, 34.54121180045426], [-77.31891812549006, 34.54104952377988], [-77.31909954558235, 34.54100086105801], [-77.31938702094583, 34.54091654602887], [-77.31958523981582, 34.540877561153145], [-77.31989157026435, 34.54070742571601], [-77.3201089525162, 34.540635756436956], [-77.3202497839335, 34.54048100926305], [-77.32068889916354, 34.54018662491819], [-77.32096536005386, 34.54005911829624], [-77.32147870877542, 34.5399874722205], [-77.32168176423986, 34.53991115624933], [-77.32204135838191, 34.53987437553881], [-77.32226515759419, 34.53993215694862], [-77.32289186938233, 34.54000362091536], [-77.3232852396074, 34.53989884641057], [-77.32383574735869, 34.539920315591736], [-77.32436486638511, 34.539727242641916], [-77.32530343607924, 34.53926520850885], [-77.32542292370093, 34.53919647478036], [-77.32555005687904, 34.5391511418413], [-77.32621813256567, 34.5387645016359], [-77.32645750810988, 34.53875891403808], [-77.3270021566399, 34.53881260708029], [-77.32756696369842, 34.538450254575324], [-77.32751228245607, 34.53827886099176], [-77.32800652656267, 34.53789744204662], [-77.32821118522564, 34.53762551256811], [-77.32860449982492, 34.537434546388894], [-77.32930054858767, 34.5367321726679], [-77.32992086099998, 34.536470689642925], [-77.33019302005806, 34.536114246778496], [-77.33020204771232, 34.53611077864207], [-77.33020560340888, 34.536107527565335], [-77.33082634238457, 34.53591793766226], [-77.331001330028, 34.53565087187711], [-77.33151645162003, 34.53560341518195], [-77.33177929975034, 34.53595841857272], [-77.33200299142823, 34.53549722293274], [-77.3327951527737, 34.53525049952942], [-77.33316287497884, 34.53506834016528], [-77.33337213556828, 34.5349842079854], [-77.33371794296869, 34.5349033214264], [-77.3345579546545, 34.5347539696707], [-77.33494582534206, 34.534834086264645], [-77.33522862621162, 34.53472577858935], [-77.33545764491944, 34.53469520675138], [-77.33573260059212, 34.53476191166004], [-77.33578907017782, 34.5347844440748], [-77.33612738643718, 34.534665456247474], [-77.33622818100622, 34.53457355459023], [-77.33629587085481, 34.53450228664157], [-77.33641102845394, 34.534414172988235], [-77.33645472016276, 34.534357033351945], [-77.33652907895619, 34.534270843222274], [-77.33655669926782, 34.53423669084504], [-77.3366102491069, 34.53421225719489], [-77.33672822877978, 34.53414670621805], [-77.33686594209924, 34.53413884841202], [-77.33692507513273, 34.534121988082816], [-77.33721946416367, 34.534062563899916], [-77.33732246860025, 34.53391273233919], [-77.33768750563844, 34.533830845927646], [-77.33777090850054, 34.53383423670955], [-77.33810881182653, 34.53385870496596], [-77.33839031230544, 34.53395623969649], [-77.33836803851013, 34.5342813064653], [-77.33870355951846, 34.534400819966216], [-77.33883701682453, 34.534409158691254], [-77.33887951813654, 34.53448037587177], [-77.33897636070834, 34.53442112377048], [-77.33914340300473, 34.53433755438665], [-77.3394872315189, 34.534173036415964], [-77.33967209482248, 34.53415700593533], [-77.33995006688058, 34.53390156388514], [-77.33975818170616, 34.533759488338774], [-77.33972968074593, 34.53373377873426], [-77.3397258556485, 34.53351932017134], [-77.33968809759051, 34.53346515534912], [-77.33947085396497, 34.53344693338403], [-77.33937318534134, 34.53332523112618], [-77.33930107101298, 34.53322668203693], [-77.3392411797483, 34.53313803261595], [-77.33912038306207, 34.53311677627423], [-77.33891356374357, 34.53300907475007], [-77.3387164625634, 34.533052359230865], [-77.3387486379846, 34.53292542919406], [-77.33822412996955, 34.53256447162395], [-77.33819310025311, 34.53251569946933], [-77.33816749616953, 34.53250236456012], [-77.33814887443097, 34.532128087272895], [-77.33814345418615, 34.532037887775324], [-77.33814660795419, 34.53203275140301], [-77.33775942245535, 34.531994812975775], [-77.33745952010217, 34.53207267563315], [-77.33736499449472, 34.53207645160078], [-77.3369777545687, 34.53195450500747], [-77.33696815059389, 34.53195295904351], [-77.33658276783434, 34.53195348048523], [-77.33639052382844, 34.53191612391346], [-77.33623833528927, 34.53181757335381], [-77.33619356700692, 34.53180949384651], [-77.33597042033455, 34.53185610361534], [-77.33583342455287, 34.53189727822902], [-77.33579768013803, 34.531954030376], [-77.3357613200842, 34.53190949581586], [-77.33570626940771, 34.53189409192678], [-77.33520953126474, 34.531844295923094], [-77.33501410503982, 34.531889327443515], [-77.33479235411373, 34.53188718861069], [-77.33422780551584, 34.532106703908354], [-77.33422536414065, 34.532107931322564], [-77.33422393923647, 34.53210878430233], [-77.33422041023377, 34.532109951408366], [-77.33382590037863, 34.53234584530779], [-77.33374703728097, 34.53237184477974], [-77.33342775852013, 34.53258724482025], [-77.33303037076803, 34.532768519741246], [-77.33282235175935, 34.532915236908366], [-77.33263409306561, 34.532956955385046], [-77.33223921951591, 34.53312609431417], [-77.33184147806125, 34.533281119542934], [-77.33168589928816, 34.53335551178269], [-77.33144682879924, 34.53348583398497], [-77.33090655044052, 34.533969672932066], [-77.33025469787447, 34.53399530276954], [-77.3298896466629, 34.53419933783378], [-77.3297438983154, 34.5343971846234], [-77.32945713577064, 34.53453135782536], [-77.32919786013863, 34.53462812343689], [-77.32903401175052, 34.534811970677495], [-77.32877512306865, 34.53491910369296], [-77.32866122649267, 34.53499591030153], [-77.3283127901214, 34.53519080233612], [-77.3281851414803, 34.53522754232584], [-77.32786971781115, 34.53527097020121], [-77.327617072799, 34.53534884881442], [-77.32721161946492, 34.535563558212985], [-77.32707586001436, 34.53564669513189], [-77.32681824467126, 34.535778839882475], [-77.32665791917798, 34.535875449694174], [-77.32655176908968, 34.53598039796266], [-77.32639598077819, 34.53617042005818], [-77.32627575387721, 34.53629038580962], [-77.32603012597457, 34.536563414697326], [-77.32547501513032, 34.536960693860856], [-77.3249743400171, 34.53735399379347], [-77.32436231721145, 34.53773860496254], [-77.32391296060689, 34.53799615360465], [-77.32387987779845, 34.53802773892542], [-77.32356911603885, 34.53834602320149], [-77.32243818989309, 34.53860905089224], [-77.32229664855113, 34.53858272341938], [-77.32216504898598, 34.53865594776063], [-77.32205647237342, 34.53875254957312], [-77.32125601375486, 34.53920695157227], [-77.32113787315188, 34.53937416353943], [-77.32069939105259, 34.53973739218703], [-77.32035646874904, 34.539762578043245], [-77.32028083999316, 34.53975800789676], [-77.31991170414062, 34.539845695971344], [-77.31946913733654, 34.54010353909047], [-77.31925884655814, 34.5402217337452], [-77.31911597785003, 34.54029784140039], [-77.31885937221963, 34.54043595153733], [-77.31879432323015, 34.54049236162643], [-77.31841935903641, 34.5407439741301], [-77.31841452285926, 34.54080425250122], [-77.31831509670471, 34.54097005796768], [-77.31801014045699, 34.5409925971188], [-77.3175253353085, 34.54116636475703], [-77.31623988169123, 34.54136609625696], [-77.3159481746003, 34.541457557541385], [-77.31582295980151, 34.541529520824895], [-77.31550675657489, 34.54165196756398], [-77.31467133793183, 34.541962360586226], [-77.31436336006152, 34.542074878424465], [-77.31370690035902, 34.54240008802896], [-77.31365469298507, 34.542460940886514], [-77.31356902766152, 34.542465273953646], [-77.31336354330784, 34.54257591428305], [-77.31277405664147, 34.54288257463404], [-77.31245607652626, 34.54306933443936], [-77.31170314101534, 34.54349790792337], [-77.3111818405788, 34.543813023470435], [-77.31025415621517, 34.54436474894139], [-77.30995382315683, 34.544633379718185], [-77.30959016580469, 34.54471886828323], [-77.30886844075019, 34.54505332374009], [-77.30881825219008, 34.54507402300852], [-77.30879631482993, 34.54508667776726], [-77.30863385752433, 34.54518683383262]], [[-77.36921059094757, 34.517695590029625], [-77.36948822587271, 34.517676748682966], [-77.36954951813819, 34.517509679758945], [-77.36988958144337, 34.51728624970072], [-77.37007612604404, 34.51726922638548], [-77.37097613719713, 34.51702338113805], [-77.37075564067527, 34.516606470657756], [-77.3714708980477, 34.516781854672786], [-77.3720379080137, 34.51623702167059], [-77.37233215329893, 34.51584861962632], [-77.37256200519681, 34.515498640276206], [-77.37307457096506, 34.515293369527924], [-77.37372627953323, 34.51507177199097], [-77.37386507051352, 34.51504695853335], [-77.37409617423957, 34.51496171612481], [-77.3746531394923, 34.51490730646736], [-77.3752927639255, 34.51542183537563], [-77.37568946551285, 34.5156864096814], [-77.37573665748343, 34.515847500117296], [-77.37619480960134, 34.51614592825946], [-77.37650213029687, 34.515925742309626], [-77.37692988247242, 34.51567546702279], [-77.37697391477856, 34.515658601589934], [-77.376990824463, 34.51565633319764], [-77.37700772187159, 34.51565373948582], [-77.37774681865085, 34.51553797018747], [-77.37777947217305, 34.51549111242027], [-77.37823612636345, 34.51527935271821], [-77.37857451244008, 34.51504379093559], [-77.37911206172751, 34.515025719928616], [-77.37936133839943, 34.514958525086506], [-77.37945187637594, 34.51487749366269], [-77.37964002280492, 34.51479502403974], [-77.38040273204267, 34.514346750181346], [-77.38076318850774, 34.51414339276124], [-77.3809351260363, 34.51364499468348], [-77.3808213915485, 34.51364533712286], [-77.37960294408421, 34.513688280091515], [-77.37938955889167, 34.51371334481979], [-77.37914400375762, 34.513734334085925], [-77.37850089149228, 34.513979964912885], [-77.37797480559134, 34.51415883325724], [-77.37780402836017, 34.51440850544858], [-77.37761947353154, 34.51422479576429], [-77.37738258222959, 34.51414121552251], [-77.37761799032737, 34.51398522107457], [-77.37781748352704, 34.51381531271957], [-77.37821436339479, 34.51328201636446], [-77.37888738979736, 34.512944912396904], [-77.37922175217021, 34.512778794227216], [-77.37941295828168, 34.51268089684434], [-77.38011156745996, 34.51233738541914], [-77.38099960615962, 34.51193432135457], [-77.38131335870528, 34.5118097219396], [-77.38160107717746, 34.511574241834516], [-77.38122142010047, 34.51149679162549], [-77.38100939310765, 34.511502139653714], [-77.38074676647408, 34.511534054052994], [-77.37943981274917, 34.51149601104776], [-77.37888858302803, 34.51162331921452], [-77.37865098572027, 34.51167096335804], [-77.37826306224208, 34.51180606589895], [-77.37785940802694, 34.51196701906306], [-77.37772461311155, 34.51205034484156], [-77.37737924282827, 34.51218305907588], [-77.37660852357908, 34.51250066426622], [-77.37627480283136, 34.51262220517821], [-77.37556484154544, 34.512934321135376], [-77.37550824438512, 34.5129586738713], [-77.37548188699577, 34.512976367220794], [-77.375417857442, 34.51299519102529], [-77.3746898844619, 34.51329002226695], [-77.37383579843495, 34.51367324325739], [-77.37341431167155, 34.51392656487175], [-77.3731035562572, 34.51401866574459], [-77.37231198728186, 34.514381578074705], [-77.37230980714418, 34.514382509259434], [-77.37151787606093, 34.51471756356263], [-77.37120869186582, 34.514840095781274], [-77.37060705136848, 34.51511795480164], [-77.37019565500562, 34.515340545234004], [-77.36992666591968, 34.515658032591446], [-77.36939236068872, 34.51562678518155], [-77.36904589040958, 34.515774454167286], [-77.36834596249588, 34.51613596081493], [-77.36804502531075, 34.51628081985531], [-77.36755347392356, 34.5164683064993], [-77.36713987049129, 34.516596928238144], [-77.36683797287486, 34.51668684224122], [-77.36676240515347, 34.51673812686129], [-77.36662047805613, 34.51675999630677], [-77.36569844811906, 34.517125721260484], [-77.36517914665464, 34.51732614340289], [-77.36503036480818, 34.51739053385913], [-77.36467975935935, 34.51762340532447], [-77.36438655195786, 34.51766202957243], [-77.36386619368724, 34.51787976377616], [-77.3635939860427, 34.51799636256173], [-77.36323781619697, 34.51813843586333], [-77.36243552651793, 34.51851809187207], [-77.36201016715555, 34.51860674219638], [-77.36157324680443, 34.518867875706555], [-77.36142038746314, 34.5190174962825], [-77.36121412688796, 34.51909208054333], [-77.36074291094793, 34.51927876033248], [-77.36042219717132, 34.519397412579664], [-77.36028963330773, 34.51946062726148], [-77.35963176937119, 34.51963688345159], [-77.35963115307855, 34.519637261092306], [-77.35920946115891, 34.51992837307683], [-77.35889492559599, 34.520232945145814], [-77.35886533581495, 34.520257625413265], [-77.35883195946704, 34.52028571388789], [-77.35818781191801, 34.52042460175822], [-77.35804208635385, 34.5205003849902], [-77.35777891218453, 34.52055702503345], [-77.35725155223768, 34.52074369497447], [-77.35698785211463, 34.52083403660344], [-77.35646139762231, 34.52097024023493], [-77.35575349853227, 34.521124703718634], [-77.35567244016252, 34.521144406260824], [-77.35562378995941, 34.52116358964114], [-77.35553841616093, 34.52120595533326], [-77.35511366976841, 34.52141204176942], [-77.354875829013, 34.52165185121913], [-77.3547516430061, 34.521732579380355], [-77.35408386336252, 34.52195656213207], [-77.35360256276671, 34.5221667664992], [-77.35329016215108, 34.52233655474546], [-77.3530022684638, 34.52224169728017], [-77.35250659983379, 34.522275049880236], [-77.35210054761964, 34.52242914691501], [-77.35171559426972, 34.52253731930883], [-77.35107765366783, 34.522732950069134], [-77.35092502917699, 34.52278020679236], [-77.35082870845423, 34.522803564414914], [-77.35063246811592, 34.52289155939981], [-77.35024690107934, 34.52301711247263], [-77.35013305004424, 34.5230843319531], [-77.34970459079831, 34.52324988576312], [-77.34934005693049, 34.523432240642364], [-77.34899157599847, 34.52361739531345], [-77.3487335222362, 34.52377071132078], [-77.34854381950484, 34.52392073035949], [-77.34788656983324, 34.524266080420524], [-77.34783438580489, 34.524326552747056], [-77.34774928044327, 34.52433508441949], [-77.34766993725565, 34.52434658369684], [-77.34696075342536, 34.52448822623458], [-77.34660377177202, 34.52472102143055], [-77.34631143284703, 34.52498241098175], [-77.34624604311485, 34.52504365146376], [-77.34616063366656, 34.5251440207861], [-77.3459295733866, 34.52518095438401], [-77.34576645397799, 34.525216729844345], [-77.34560945099325, 34.52523052081813], [-77.34549632272169, 34.52550882043726], [-77.34546057848779, 34.525594494627], [-77.34536146564075, 34.52575800423419], [-77.3451945630018, 34.52573717719176], [-77.34501650773583, 34.52565839624662], [-77.34464652051142, 34.52566921140709], [-77.34457909149737, 34.52564368250857], [-77.344450755174, 34.52565999332459], [-77.3443826888843, 34.52565017279628], [-77.3442839432089, 34.525702978576035], [-77.34430512398599, 34.52576076178549], [-77.34437815828284, 34.52584649324885], [-77.34445459147861, 34.52581445144173], [-77.3445740898739, 34.52586043540715], [-77.34473661044598, 34.52594349295258], [-77.34488859668107, 34.52596871550421], [-77.34512699504421, 34.52613213703202], [-77.345155031384, 34.5262497871084], [-77.34507257046855, 34.52645950846099], [-77.34470192400462, 34.526592670501756], [-77.34455680596736, 34.52660946206397], [-77.34432977447103, 34.526391595532054], [-77.34422317701146, 34.52626219182982], [-77.3440944707385, 34.52608696600313], [-77.34378204009523, 34.52616523864631], [-77.34365398859265, 34.52626566870352], [-77.3435831853751, 34.52627788076232], [-77.34346184234583, 34.52637173924276], [-77.34341851749761, 34.526399424887025], [-77.34338358281585, 34.52642288803031], [-77.34336373770984, 34.52644705980261], [-77.34336172622983, 34.52649597402669], [-77.3433502331298, 34.52651020769938], [-77.34337189695347, 34.5266251239867], [-77.34336952522472, 34.526629841545045], [-77.34337385422774, 34.52663227125545], [-77.34337861245977, 34.52663815553759], [-77.34349377174327, 34.52678287181643], [-77.34363293200536, 34.52683676061901], [-77.34367789047019, 34.52688489069219], [-77.34376379365689, 34.526955657971605], [-77.3440149420151, 34.52702661381436], [-77.34407417430563, 34.52706770532883], [-77.34410293086646, 34.52722942271325], [-77.34408586012458, 34.52726122907782], [-77.3440547573681, 34.527454365053764], [-77.34374468818804, 34.52778329419336], [-77.34372981623858, 34.527792961370295], [-77.34373057465082, 34.52780198897996], [-77.34363792075771, 34.52788051309754], [-77.34374281204902, 34.527864567551795], [-77.34380098405457, 34.52803667745286], [-77.34384098662501, 34.528209540919065], [-77.34385526878407, 34.52827368583593], [-77.34383272334158, 34.52833985205082], [-77.34372936870588, 34.52844692734451], [-77.34354726739001, 34.52843179952556], [-77.34359475994012, 34.52831116930729], [-77.3435407665046, 34.528197715889306], [-77.34354266603779, 34.52819393725695], [-77.34353514374752, 34.528194978489985], [-77.34334413506211, 34.52813138975568], [-77.34326202386673, 34.52823663435024], [-77.34323486221797, 34.52829718463024], [-77.34314436167413, 34.52828359233649], [-77.34311689130004, 34.52827477667004], [-77.34307220839028, 34.52826394498178], [-77.34304685502252, 34.528256615858254], [-77.3429980260325, 34.528244049743535], [-77.34294919675256, 34.5282362072203], [-77.34292494046869, 34.52823901735812], [-77.34287979174572, 34.528248517974916], [-77.34285062176095, 34.528255494203215], [-77.34281242786037, 34.52826381899989], [-77.34278213105831, 34.52826307118586], [-77.34275202669414, 34.528275648151904], [-77.34274619449664, 34.52828024866705], [-77.34275191852146, 34.528280331765636], [-77.34279500920381, 34.52827699952947], [-77.34284923426848, 34.52829574037909], [-77.34284969133911, 34.528295781252496], [-77.34284988454839, 34.52829581154513], [-77.34284982638869, 34.528295940856616], [-77.34292016790596, 34.528302964414976], [-77.34294757583521, 34.528306396135584], [-77.3429880769544, 34.52831191391257], [-77.34301628029604, 34.52831496720698], [-77.34304544564549, 34.528317647769924], [-77.34306951610257, 34.52831062521823], [-77.34308598042827, 34.528323168273154], [-77.34314314862146, 34.52833612526495], [-77.34317473140928, 34.52835168100142], [-77.343217655664, 34.528365427715904], [-77.3432404414506, 34.528372367244216], [-77.34328871188549, 34.52838610419646], [-77.34329431848018, 34.52838822971804], [-77.3433380635831, 34.52839435024287], [-77.34337738793673, 34.52840365014382], [-77.34342256889227, 34.5284054867941], [-77.34353053741708, 34.52844281953541], [-77.3435319842123, 34.52844336433065], [-77.34370951099585, 34.52853947788764], [-77.34370291825309, 34.52855536269806], [-77.34372646611409, 34.52857266663636], [-77.34393738712735, 34.52861928376686], [-77.34395272168207, 34.52874930284365], [-77.34400431735338, 34.52880998275947], [-77.34408270887047, 34.52895834468296], [-77.34409589994685, 34.52897352108285], [-77.34410507278204, 34.528975086059695], [-77.34410917366671, 34.528997806724874], [-77.34431135094616, 34.5291873397729], [-77.34437192163239, 34.52925585145003], [-77.34441553758354, 34.52936876995098], [-77.34442846402943, 34.52941530824447], [-77.3444724672249, 34.52942111412673], [-77.34449040487357, 34.529487097971014], [-77.34462050534128, 34.52955043870842], [-77.34463137767933, 34.52963093057283], [-77.34456286845618, 34.52968888849511], [-77.34465441354396, 34.5297661270076], [-77.34481811977406, 34.52984887981205], [-77.34465828189992, 34.52998373192368], [-77.34465578330783, 34.53000643709201], [-77.34466039345403, 34.530116394940215], [-77.34465914357631, 34.530124567691345], [-77.34466202184423, 34.53017736555094], [-77.34465511196045, 34.530187955084], [-77.34467010746445, 34.530204810632895], [-77.34471543262512, 34.53020264692429], [-77.34478186981403, 34.53022132545467], [-77.3448657632844, 34.53023115135686], [-77.3450075375273, 34.530222956616626], [-77.34523306386741, 34.53027881176678], [-77.3452556167538, 34.53034706526738], [-77.34529406910231, 34.530270033405394], [-77.34549140030447, 34.530140911302745], [-77.34555416370489, 34.529987786261536], [-77.34556655251752, 34.52979994106191], [-77.34556862037257, 34.52949606610819], [-77.34555321663692, 34.529177432190224], [-77.34580324225254, 34.52865543731594], [-77.34572312649043, 34.528494551588416], [-77.3457524403724, 34.528280846423684], [-77.3460938726918, 34.52803958366513], [-77.34660440569395, 34.528049159868466], [-77.34767544525708, 34.52754006882357], [-77.34821388842118, 34.52749196941426], [-77.34831673438063, 34.527142018104186], [-77.34841980346151, 34.527095431307465], [-77.34841288363805, 34.52688335932564], [-77.34847665274074, 34.5268374345177], [-77.34882858582107, 34.52679764776461], [-77.34897243493256, 34.52673981169271], [-77.34926487282016, 34.526698422513405], [-77.34970715400375, 34.526452251510705], [-77.3498905630907, 34.526321057212414], [-77.35005966646702, 34.52627358762213], [-77.35038706730991, 34.52615191737247], [-77.35085200435891, 34.52595516054637], [-77.35104230613756, 34.525888160293796], [-77.35141711735736, 34.52571646629946], [-77.35209566744194, 34.525407369963126], [-77.3524364909387, 34.52532570618703], [-77.35312531227767, 34.52504492300909], [-77.354013107719, 34.52503787353163], [-77.35469838381563, 34.524687205638045], [-77.35480880855323, 34.52457168740997], [-77.3549686106791, 34.524225876128625], [-77.35498286317123, 34.524121698456554], [-77.35508188986364, 34.52388035956457], [-77.35530869435348, 34.52387507324293], [-77.35560919404003, 34.52390092531922], [-77.35604293344718, 34.52380204872937], [-77.35712982722252, 34.52388364861809], [-77.35717975192001, 34.52387559967715], [-77.35783076988335, 34.52332408717278], [-77.35786580895513, 34.52324836531859], [-77.35797985195074, 34.523216132488216], [-77.35836532172195, 34.523009611001285], [-77.35877358940007, 34.522833871440696], [-77.3591801210308, 34.522894561585446], [-77.35956299838634, 34.522640317691305], [-77.35958115973695, 34.52258235275129], [-77.35956505626731, 34.522550442916994], [-77.35936761622597, 34.5222508967051], [-77.35933936416346, 34.52212752833103], [-77.35945150389118, 34.52203315742817], [-77.3595788823787, 34.52194661068435], [-77.35978929217391, 34.52170081814859], [-77.36022243427792, 34.521510693010505], [-77.36031909433319, 34.52146193269759], [-77.36037568535181, 34.52142954552618], [-77.36059764333865, 34.521319762198985], [-77.36135412426938, 34.520972199170416], [-77.36196071272374, 34.520769204526985], [-77.36244882301092, 34.52051150352378], [-77.36317332232301, 34.52010632987042], [-77.36335703507521, 34.519960046396186], [-77.3635521183341, 34.51982857972806], [-77.36403937688249, 34.519298663464376], [-77.36411169600467, 34.51899184385943], [-77.36422423596622, 34.51889190064325], [-77.36436012788431, 34.5188188711021], [-77.36497435892174, 34.51876023515849], [-77.36514706662967, 34.51873117727985], [-77.36537303481823, 34.51867002671025], [-77.36627019266078, 34.51839741704925], [-77.36673024786737, 34.518147698140055], [-77.36675179087467, 34.51813506716666], [-77.36678542728302, 34.518116961162754], [-77.36711747480265, 34.51781630535827], [-77.36794770024451, 34.51768622664511], [-77.36830831705994, 34.51778745198399], [-77.36901210176806, 34.51774487186567], [-77.36909429461826, 34.517741244881535]], [[-77.41071190565191, 34.49855784598712], [-77.41090785469247, 34.498393450595266], [-77.41112997078187, 34.49821227751589], [-77.4117111241379, 34.49805302627678], [-77.4132941185322, 34.49756751176228], [-77.41389707887251, 34.49734855624665], [-77.41400306098662, 34.497318047552454], [-77.4140643792359, 34.49728028424192], [-77.41460078434764, 34.49701449245081], [-77.41567127373823, 34.496763761461416], [-77.4152171358373, 34.49612580114199], [-77.41637389181655, 34.49587443238772], [-77.41744604877499, 34.49602121673478], [-77.41767579448717, 34.495515178330535], [-77.41856897649456, 34.495378842272444], [-77.4189438856855, 34.4954232111123], [-77.41953244881792, 34.494658935299434], [-77.4200424332014, 34.49451453344089], [-77.42056340818334, 34.49431171391201], [-77.42095687449978, 34.49416315369524], [-77.42118971989413, 34.49378449246449], [-77.42124493125607, 34.49370903404889], [-77.42135674018742, 34.49367671553411], [-77.42168668584554, 34.493329638182665], [-77.42152578660793, 34.493009808476245], [-77.42141002029344, 34.49275197637102], [-77.42084767759867, 34.49253137637644], [-77.42053164307151, 34.49276803682142], [-77.41952942239672, 34.49263496425938], [-77.41888407433814, 34.4928747737256], [-77.41855863148147, 34.492997060508316], [-77.41830010844853, 34.493064438381225], [-77.41732618096714, 34.493318515994346], [-77.41699016811856, 34.49342277379569], [-77.41693453111289, 34.493450633219894], [-77.41634959506983, 34.49370548268382], [-77.4158593588897, 34.4939890111914], [-77.41578822254885, 34.494026702845794], [-77.41572880974826, 34.494064512906476], [-77.41551729696236, 34.49426278358683], [-77.41548436829922, 34.49472755763995], [-77.41598422393506, 34.49531040665332], [-77.41597713280385, 34.495428313025975], [-77.41506759502862, 34.496022019893154], [-77.41502106528769, 34.49603045994537], [-77.41367335465442, 34.49584732154725], [-77.41349895264317, 34.49597708413679], [-77.41304335149331, 34.496257156595576], [-77.41251118084094, 34.49652309311194], [-77.41235441023456, 34.49659406665789], [-77.41223267161303, 34.497051349921676], [-77.41115411152691, 34.497129313721274], [-77.4096400752408, 34.497733349651426], [-77.40960299372904, 34.49775889185863], [-77.40957070645867, 34.49775627121452], [-77.40953855071604, 34.497767921604726], [-77.40844969668473, 34.498191210084755], [-77.4079865620115, 34.49841521711671], [-77.40786533215665, 34.498479427029594], [-77.40746784538362, 34.49870690443866], [-77.40670302448126, 34.499137007618124], [-77.406572580894, 34.4992647079753], [-77.40639718112922, 34.499307304567225], [-77.40593768053377, 34.49953116923825], [-77.40547670894391, 34.499724946850215], [-77.40480625882797, 34.500266744624724], [-77.40446368311765, 34.500439815853014], [-77.4037182838297, 34.500856163417566], [-77.40321802469313, 34.50110441834221], [-77.40226251948343, 34.50135049308784], [-77.40163834586092, 34.50155873981443], [-77.40138291406977, 34.50170676803502], [-77.40006411482496, 34.501769260390624], [-77.39973631438804, 34.501899125089416], [-77.3992723614331, 34.50208111879038], [-77.39889467519895, 34.50222337013993], [-77.39862010097136, 34.50234944795599], [-77.3984729362058, 34.50273457312363], [-77.39818728271553, 34.502506929615336], [-77.39748991943978, 34.50279297227601], [-77.39689785785941, 34.50298133688763], [-77.396829380086, 34.50301121611453], [-77.39689367361737, 34.50316764067181], [-77.39704523329269, 34.50337228930123], [-77.3973025571411, 34.50343257516125], [-77.39845457376896, 34.50355284585841], [-77.3992424576507, 34.50363902230218], [-77.40002354686662, 34.50357856960099], [-77.40140195957441, 34.50382003109423], [-77.39999707350438, 34.504759281852074], [-77.39966512792516, 34.50484423274821], [-77.3996281181995, 34.50505550856282], [-77.39928393086505, 34.50553925932841], [-77.39924090069482, 34.50560109092968], [-77.39997196207523, 34.50587926234593], [-77.40010890967235, 34.505879977497294], [-77.40105382100862, 34.505828996737236], [-77.4014925386222, 34.50579737637581], [-77.4015431592815, 34.50580760275366], [-77.40159467562849, 34.505782695406545], [-77.40162533648999, 34.50574647237622], [-77.402538473926, 34.50524847877676], [-77.40313490257563, 34.504817846759835], [-77.40336665228139, 34.50465803132157], [-77.40442480723004, 34.50436283865854], [-77.40443668391282, 34.504185204894455], [-77.4047217378413, 34.504045810568634], [-77.40478022208623, 34.50427186103302], [-77.40493472388907, 34.50428919309189], [-77.40550078827056, 34.50430193913247], [-77.40587554020232, 34.50415330612903], [-77.40613287742815, 34.50401688805476], [-77.40629297009401, 34.50397063628844], [-77.40677188342175, 34.503728383344], [-77.4071664482738, 34.50352631997501], [-77.40726644089537, 34.50335357774365], [-77.40757188686513, 34.50292891932172], [-77.40732588181005, 34.5026106554289], [-77.40723783340852, 34.50240936504724], [-77.40644290248868, 34.502112646788405], [-77.40640615433361, 34.50207377944719], [-77.40633580860501, 34.50205363630819], [-77.40592702867866, 34.50193036954079], [-77.40538218684084, 34.50188391804443], [-77.40542277692514, 34.501685137110904], [-77.4061972001651, 34.501168782973394], [-77.40635713020076, 34.501099518397744], [-77.40693920596652, 34.50043621109413], [-77.40777784327429, 34.49996109932045], [-77.40788424366022, 34.499902606333116], [-77.40795424294535, 34.49986264532237], [-77.40807238448504, 34.499845073615475], [-77.40952407649189, 34.49970688393265], [-77.40952721219135, 34.49970581887075]], [[-77.32412472781866, 34.750803805063775], [-77.32384863998502, 34.7505041077649], [-77.32334161720914, 34.75061753297041], [-77.32321301818018, 34.75062981324135], [-77.32314069601676, 34.750705953289284], [-77.32309612319939, 34.75075287855676], [-77.32286160285624, 34.75098648921585], [-77.32261870358418, 34.751305639556435], [-77.32246564419607, 34.751384555768546], [-77.32222589813269, 34.75226330674019], [-77.32228506770147, 34.75232606883878], [-77.32245002225571, 34.75248514245318], [-77.32250633138273, 34.752539443545594], [-77.32256373003887, 34.752594795516416], [-77.3224961210872, 34.75268847828587], [-77.32248787863789, 34.75278565332292], [-77.32244472416993, 34.75288331494516], [-77.32241484500376, 34.75293567133213], [-77.32221905976706, 34.753066156641665], [-77.32221216964142, 34.75307526937119], [-77.32212707772808, 34.7531274596171], [-77.32188986176833, 34.75311901946938], [-77.32152266437849, 34.75310261867102], [-77.32084095789166, 34.753498591541444], [-77.32069106459996, 34.753642491631496], [-77.32056846614884, 34.754325384049665], [-77.32031704505636, 34.75454507277482], [-77.32028649727641, 34.75456085566457], [-77.32016186496905, 34.755053688230475], [-77.32004858612228, 34.755329606216286], [-77.31982770380559, 34.7554311643445], [-77.3198153140109, 34.755588511569925], [-77.31990297874802, 34.75562503635286], [-77.31982700534766, 34.75574978164203], [-77.31967304224398, 34.75585167683694], [-77.31962187489239, 34.75588720969496], [-77.31920879497397, 34.75615893488589], [-77.31920839318235, 34.75615921218913], [-77.3192079721952, 34.75615971998703], [-77.31920526423605, 34.75616125739347], [-77.31920568282516, 34.75615936107027], [-77.31920656282642, 34.75615758991433], [-77.31921311383476, 34.756142047727195], [-77.31939824085093, 34.75568900045956], [-77.31941701391595, 34.755643057955304], [-77.31946340840433, 34.75556877418405], [-77.31963994979432, 34.755264755743525], [-77.31975184756377, 34.75510984036242], [-77.31997618052915, 34.75478059203069], [-77.32012428697425, 34.75457147119985], [-77.31987215931736, 34.75419362047591], [-77.31998988454566, 34.75398187640157], [-77.32017048289185, 34.75359041909079], [-77.3201002921253, 34.75311887673422], [-77.32009816378502, 34.75311047397986], [-77.3200958998665, 34.75310774735532], [-77.32017238319509, 34.75265933857827], [-77.32021970671991, 34.75260895211429], [-77.32037339692688, 34.752153895238614], [-77.3204011797159, 34.75210862222986], [-77.32040223169926, 34.752096590978915], [-77.32039724513153, 34.752092421798906], [-77.32053638732145, 34.75190922710471], [-77.32056048365247, 34.75183123531279], [-77.32063243103316, 34.75177830477314], [-77.32076388069639, 34.75179162874325], [-77.32077817553913, 34.75179213482752], [-77.32078654689255, 34.75179320883562], [-77.32103090004645, 34.75195304702702], [-77.32160439264958, 34.75189813295555], [-77.32165395737375, 34.75187059415716], [-77.32230743350027, 34.75134827709998], [-77.32201264474962, 34.75124492020063], [-77.32208217386881, 34.75104468009249], [-77.32213791985454, 34.75088413227671], [-77.32213828956574, 34.75075424859169], [-77.32213330461282, 34.750451540026376], [-77.32225860970193, 34.750380236348875], [-77.32216968557282, 34.75009770171446], [-77.32219589613737, 34.74992177327889], [-77.32219062141775, 34.749902185235136], [-77.32215226024172, 34.749829882109125], [-77.32229486898618, 34.74966735454339], [-77.32294650701832, 34.74931127970673], [-77.32298580007732, 34.74929176233661], [-77.32300965603694, 34.749269478379674], [-77.32312211734745, 34.74920984142567], [-77.32411131197266, 34.74901242484209], [-77.32426871145263, 34.74905989938599], [-77.32433606314251, 34.74906493720827], [-77.3253550874006, 34.748837900914886], [-77.3255114429267, 34.74890640912371], [-77.32556207268907, 34.74891074389364], [-77.32673357852438, 34.74878276453457], [-77.32674600435182, 34.748780981125684], [-77.32676703335036, 34.74877271502616], [-77.32787021111363, 34.74851326787534], [-77.32803772146667, 34.748458985063564], [-77.32823816459617, 34.748430055117346], [-77.32867883264578, 34.74852590306329], [-77.32895082487586, 34.748670445821524], [-77.32918566501294, 34.74863135567476], [-77.32941431797076, 34.74891248466804], [-77.3294667764932, 34.749062056542044], [-77.32940988384752, 34.74923936100012], [-77.32912941975853, 34.74932139805071], [-77.3289913005365, 34.74929973582967], [-77.32878248277204, 34.74932175572007], [-77.32854498420849, 34.749518980393056], [-77.3280047355625, 34.74990932402621], [-77.32795991119501, 34.7502204325675], [-77.32789104173871, 34.75058332455876], [-77.3276936533363, 34.75081922763996], [-77.32764285907251, 34.750865455739756], [-77.32762922202778, 34.750868756569915], [-77.32730436094297, 34.7509806897565], [-77.32709913904107, 34.751022016088186], [-77.3268627043394, 34.751063861240134], [-77.32671454340988, 34.750948927833996], [-77.32648180320554, 34.751113334796415], [-77.32626200364857, 34.75113149828059], [-77.32605450132056, 34.75115861655085], [-77.32592206356927, 34.751255696663335], [-77.32583083784596, 34.75126587037773], [-77.32574457991144, 34.75119434791252], [-77.32569338398051, 34.751174471771165], [-77.32549854320285, 34.75101043001279], [-77.32516110516664, 34.750957358377626], [-77.32517591382026, 34.7507840145861], [-77.32496218011326, 34.75079487742297], [-77.32480120097777, 34.75090075284258], [-77.32450798459968, 34.75090332022651], [-77.3243681465633, 34.750777604736456]], [[-77.34330792409715, 34.68561465848048], [-77.34332507721949, 34.68560829108082], [-77.34383172356954, 34.685592431523666], [-77.34389120617631, 34.68566726203781], [-77.34392828660363, 34.68591228882992], [-77.34393644480909, 34.68599930765484], [-77.34401873263992, 34.686223362593545], [-77.34405687395062, 34.68647015907338], [-77.34351626459245, 34.68695821551336], [-77.34313680398168, 34.686596421971544], [-77.34312033849551, 34.68653400410071], [-77.34304993651693, 34.68650291125959], [-77.3427396732829, 34.686365882836476], [-77.34251942252062, 34.68626860883595], [-77.34239013140348, 34.68621150600371], [-77.34257819312319, 34.686066266589], [-77.34319613251044, 34.685687357576356]], [[-77.38558908733445, 34.51011992016954], [-77.38575072319776, 34.51007746638785], [-77.38584935907964, 34.51004318400911], [-77.38600117176053, 34.50996022496066], [-77.38775482216624, 34.508983521486634], [-77.38785785315908, 34.50840130719654], [-77.38698197376668, 34.50860754159332], [-77.38578490482104, 34.50856430616886], [-77.38516614464157, 34.508717467943626], [-77.38499653570544, 34.50872093980045], [-77.3842924548525, 34.509227394319964], [-77.38434283238746, 34.509310250842766], [-77.38419187457201, 34.50959804626069], [-77.383948323228, 34.51025636090768], [-77.38365824509663, 34.51061676245911], [-77.38417149230037, 34.51049958954373]], [[-77.22696853322113, 34.599469693287496], [-77.22670608393663, 34.599684604416396], [-77.22699720871863, 34.59994211537161], [-77.22734191839581, 34.59959302216082], [-77.22775775763778, 34.59953198731087], [-77.22753102299859, 34.59888808964578]], [[-77.243777310508, 34.59256152789865], [-77.24291183223578, 34.591825261916355], [-77.24112119678196, 34.59212939827272], [-77.23978209528673, 34.59293880529135], [-77.23944494774685, 34.59326772336267], [-77.23877180614734, 34.59380186431603], [-77.23976250561196, 34.59406423904016], [-77.24002067809495, 34.59420537168606], [-77.24016449867746, 34.594648548090575], [-77.24015044936655, 34.59485326108228], [-77.2403053046508, 34.59496323157014], [-77.24038475289707, 34.595151743756894], [-77.24044373347604, 34.59527880386187], [-77.24048748056669, 34.59535118165125], [-77.24067871691588, 34.59568011742447], [-77.24072737353461, 34.59584144366263], [-77.2407012578002, 34.5959171843085], [-77.24083446101064, 34.59592897642784], [-77.2414499860103, 34.596369753923256], [-77.24144532070221, 34.59637346842433], [-77.24145297053549, 34.5963727825635], [-77.24147599940133, 34.59638937255988], [-77.24176641609877, 34.59658641056112], [-77.24193218797483, 34.59640775989878], [-77.2420822741304, 34.59627131307508], [-77.24244760449918, 34.596073601175995], [-77.24254297085149, 34.59602375200221], [-77.24259976137857, 34.595989022799884], [-77.24278712852305, 34.59587125025346], [-77.24326474327697, 34.595570078496884], [-77.24342627795028, 34.59549475218726], [-77.24364487320808, 34.59537409450934], [-77.2438710482405, 34.59523302637844], [-77.24396342948694, 34.59515378800173], [-77.2440689306788, 34.59508036773938], [-77.24417137015521, 34.59498574297557], [-77.24420166686598, 34.59493688642365], [-77.24421744746616, 34.59488379602887], [-77.24428906574563, 34.594708098161604], [-77.24457409345591, 34.59454368225892], [-77.24471318567831, 34.594415546308994], [-77.24474428613416, 34.59427261950148], [-77.24478826092498, 34.594076829083434], [-77.24485337565272, 34.59399568224517], [-77.24478606869684, 34.59380456220012], [-77.24499057973986, 34.59357693385837], [-77.2449352729947, 34.59334496796766], [-77.24464765947059, 34.59297051963876], [-77.24421578771135, 34.59258054776161]], [[-77.2240737806666, 34.60961111977783], [-77.22443814834098, 34.61008438138561], [-77.22446017103695, 34.61011298496112], [-77.22462134244756, 34.61032232047512], [-77.22465774404776, 34.6103696002741], [-77.22484656640228, 34.61061484732666], [-77.22487734090538, 34.61065481837189], [-77.22491785692715, 34.61070744135389], [-77.22497253429931, 34.61063477849437], [-77.22535135386697, 34.610684141246495], [-77.22537611639834, 34.61066509499394], [-77.22539042795883, 34.61065777714213], [-77.22550246215266, 34.6106131295883], [-77.22552403386541, 34.61059659747855], [-77.2254990412577, 34.61054851010716], [-77.22554588222118, 34.61048738575078], [-77.22554666472152, 34.610434428980206], [-77.22559021694413, 34.61038816024145], [-77.22535049005839, 34.610183263949565], [-77.22580550243237, 34.610060871802446], [-77.2259265480386, 34.60999305299214], [-77.22605569977233, 34.60995472344003], [-77.22619075193917, 34.60985950204429], [-77.22626710044733, 34.6098140579791], [-77.22630061275011, 34.60978689695518], [-77.22638078703929, 34.60972507120704], [-77.22648640560193, 34.609565880919845], [-77.2264985784192, 34.609362510049195], [-77.22656554215791, 34.609336446924765], [-77.22654302179288, 34.60929702120147], [-77.22650774171522, 34.60923368425753], [-77.22612728325267, 34.60883049631764], [-77.22605458444696, 34.608745009704606], [-77.22602469321676, 34.60852232120943], [-77.22536995872721, 34.60877071738056], [-77.2247208273717, 34.60909582556035], [-77.22436266772682, 34.60937789606304]], [[-77.44247841257057, 34.48298852849352], [-77.44222939822674, 34.48311529858777], [-77.4417735951835, 34.483234388081556], [-77.44080210821554, 34.48360976895229], [-77.43998068364795, 34.48370282978398], [-77.43963824626834, 34.48380111113879], [-77.43904377307912, 34.48394331882765], [-77.43871005470258, 34.483980339420015], [-77.43807195200534, 34.48405112123522], [-77.43740321834272, 34.484125300314965], [-77.43718642482902, 34.4842287170385], [-77.4368114738947, 34.484332541105054], [-77.43637722999154, 34.48442949036451], [-77.4361624028786, 34.48451201045067], [-77.43573884923656, 34.48471329083396], [-77.43516449927183, 34.48492408851471], [-77.4350424388544, 34.48496888745974], [-77.43495204102098, 34.485010263658346], [-77.43438144933009, 34.48524169424479], [-77.43372621988863, 34.48545194962121], [-77.43349942717342, 34.485514691791096], [-77.4329110901822, 34.48571518218221], [-77.43257657457643, 34.485805378498256], [-77.4325181934277, 34.48582125011734], [-77.43248630446452, 34.485842059304986], [-77.43225730669793, 34.48599149122394], [-77.43206490777736, 34.48611703844411], [-77.43208249264146, 34.486500643706435], [-77.43136210732791, 34.48665598968598], [-77.43122248837903, 34.48674958968029], [-77.43106237427654, 34.48692923271372], [-77.43119605918278, 34.487257997505026], [-77.43126489835831, 34.48742729222692], [-77.43126225937566, 34.487607623382516], [-77.43140488375187, 34.48810996859494], [-77.43131630141488, 34.48914495102328], [-77.43250990094204, 34.48951742749569], [-77.43357836746195, 34.4898410603914], [-77.43405583023424, 34.48959629152942], [-77.43498130070502, 34.48909805454517], [-77.43531305746448, 34.48830934039061], [-77.43543475408386, 34.48813023196401], [-77.4357698076647, 34.48800456303516], [-77.43686753496297, 34.48763843928894], [-77.43722915233627, 34.487622541842605], [-77.43843935233839, 34.48791874758554], [-77.43977200919855, 34.4871855853868], [-77.44047629001467, 34.48701604916091], [-77.44074488033465, 34.48650039312643], [-77.44155272325895, 34.48592525910014], [-77.4416417714925, 34.48531773639617], [-77.44169524812021, 34.485232097724385], [-77.44173866700368, 34.485209374389434], [-77.44222192894684, 34.485014685297514], [-77.4429608745486, 34.48475456722923], [-77.4432269382963, 34.48465949065127], [-77.44438538363498, 34.48416317239035], [-77.44529439590427, 34.48343919945101], [-77.44532692877425, 34.483415383603905], [-77.4452515959774, 34.48328254715125], [-77.44471583551473, 34.48214624755453], [-77.4435130608636, 34.482551019186374]], [[-77.3952666553546, 34.50572448832981], [-77.39542938019028, 34.50566166918441], [-77.39629071923511, 34.50518945141643], [-77.39631808609084, 34.50488905581486], [-77.3959246823137, 34.50501140613505], [-77.3952688415349, 34.50562722780753], [-77.39447797456995, 34.50531745773195], [-77.3934208210633, 34.50578000616403], [-77.39303807464266, 34.506006825527976], [-77.39285740084232, 34.50654527026761], [-77.3943030266258, 34.506209138457564]], [[-77.44570822575693, 34.49289218311456], [-77.44722068206337, 34.492670127865296], [-77.44759727186491, 34.49186687845979], [-77.44782780302756, 34.491776988141645], [-77.44898583744147, 34.492020499747014], [-77.44920632328464, 34.49185276866598], [-77.44993432626829, 34.49194564720354], [-77.45034605309996, 34.49207036315725], [-77.45114620695946, 34.49220129235291], [-77.45177699289675, 34.49237895295997], [-77.45257793432427, 34.49189066066388], [-77.4517174005668, 34.491290700735924], [-77.4528957462231, 34.49154542450497], [-77.45319590224513, 34.49124656192851], [-77.45270944447898, 34.490863863786686], [-77.45169958968371, 34.491023430568816], [-77.45142552737634, 34.49109310180237], [-77.45126158111289, 34.491069220986944], [-77.45013854453674, 34.49131113203779], [-77.44899131330884, 34.49115421492721], [-77.44876811375195, 34.491223847408286], [-77.44799083948527, 34.49139521142307], [-77.44750272989072, 34.49152092963194], [-77.44734286533465, 34.49162433688437], [-77.44586472472406, 34.492011211707265], [-77.44514642442414, 34.49275362691784], [-77.44483672086758, 34.49284781605009], [-77.44506261714027, 34.492924830836685], [-77.44526722278461, 34.493195691861125]], [[-77.4359779310739, 34.68755330981627], [-77.43566248535161, 34.68805452780787], [-77.43612961417297, 34.68846657640411], [-77.43635647958567, 34.68866784756523], [-77.43646400046083, 34.68877339741299], [-77.43678225776638, 34.688868032577076], [-77.43695781587581, 34.68880432516244], [-77.43729412628635, 34.6886250393002], [-77.43711423312983, 34.68826356776049], [-77.43689871386557, 34.688145541272235], [-77.4365424629726, 34.68802488937845]], [[-77.39983894660459, 34.51181198819746], [-77.40029895684103, 34.51111194153414], [-77.40064262591513, 34.5109718798498], [-77.40096223487123, 34.5107389605878], [-77.40065374518099, 34.5104757252644], [-77.40048353059356, 34.510425310046685], [-77.39986439774378, 34.51067679985585], [-77.39953221303347, 34.51073904801489], [-77.39839618832723, 34.51110944223905], [-77.39832596479793, 34.51114564198899], [-77.39828257296044, 34.51121787305086], [-77.3973370498545, 34.51165792778662], [-77.39749435247693, 34.512218975597165], [-77.39791644338729, 34.51237033712705], [-77.39825343197774, 34.5125165582648], [-77.39871486420077, 34.51273123244369], [-77.3990309337899, 34.512844587563215], [-77.39924288257585, 34.51258482139838], [-77.39976052093253, 34.51193896903952], [-77.39980352115623, 34.51188560736951], [-77.39979660910375, 34.51186087448863]], [[-77.33320546462818, 34.56968441427774], [-77.33338999993313, 34.56947946583884], [-77.33342358571133, 34.56946567059356], [-77.33359968913595, 34.569392028902165], [-77.33375457413848, 34.56939529652066], [-77.33390306485589, 34.56930475943771], [-77.33383779686844, 34.56947308059042], [-77.33373191296232, 34.56951360361587], [-77.3335995467315, 34.56956359493884], [-77.33343730471476, 34.56952367946914], [-77.333316608977, 34.569715890615136], [-77.33320520586703, 34.569994502639396], [-77.33309165869187, 34.569748225861446]], [[-77.21922996145432, 34.61394226951861], [-77.2184163651242, 34.6140068318317], [-77.21832695779972, 34.61457418028259], [-77.21848184094263, 34.61482591300751], [-77.21855955799475, 34.614933986734925], [-77.21860372138612, 34.61520537952312], [-77.21862045789442, 34.6153082259833], [-77.21865761891016, 34.615536585210485], [-77.2186521276502, 34.61555462778023], [-77.2186620812313, 34.61556400700338], [-77.2186882465639, 34.61572479555724], [-77.21869816226774, 34.61578572748971], [-77.21871642158388, 34.61589793394005], [-77.21890649766392, 34.61591397521776], [-77.21901584822183, 34.61585532010736], [-77.21908816502773, 34.615816529448644], [-77.21924996419803, 34.61573485281844], [-77.2194611807814, 34.615651564481965], [-77.21950662804157, 34.615634447447036], [-77.21955303337025, 34.615617560718476], [-77.2196060427801, 34.61556523483379], [-77.21966445901977, 34.615508519497816], [-77.21969720822425, 34.615475244991714], [-77.21977207476881, 34.615399177143026], [-77.21986796906542, 34.61529840869137], [-77.2199851115596, 34.615180319200384], [-77.22004220936628, 34.615124669070084], [-77.22017410368397, 34.61498543452761], [-77.2201972789114, 34.61496139245822], [-77.22020873635837, 34.61494406687281], [-77.22032646177477, 34.614776087349874], [-77.22035311339803, 34.61473801686138], [-77.2204838438551, 34.614531306638504], [-77.22050537857062, 34.614514359151386], [-77.22052534205582, 34.61448672004684], [-77.2205287645517, 34.61437677750587], [-77.22018734242184, 34.61401788033796], [-77.22047417478453, 34.61377114841741], [-77.22002920270297, 34.61369801934448]], [[-77.41945886803039, 34.50219054540712], [-77.41908977594225, 34.50211949369555], [-77.41889217554466, 34.50203977658635], [-77.41877242076703, 34.50187707187855], [-77.4186565890943, 34.501816834420865], [-77.41844153279942, 34.501644906859575], [-77.41765841427564, 34.50167588980739], [-77.41767638913541, 34.50195851798574], [-77.41760205251757, 34.50214505406787], [-77.41760778783592, 34.502276920450086], [-77.4177456621165, 34.50243818911497], [-77.41809460462125, 34.502617121289504], [-77.41863011947883, 34.50246793613806], [-77.41888241253933, 34.50247961918122], [-77.41909555337183, 34.502374610982216]], [[-77.45399209381327, 34.47729964976676], [-77.4544962922767, 34.4776963839977], [-77.45519219329739, 34.47823830738004], [-77.45636254116094, 34.47810230388096], [-77.45623741485319, 34.47789077008092], [-77.45648447340513, 34.477563016690596], [-77.45672358295312, 34.47723996363027], [-77.45683465666825, 34.477143619115594], [-77.45700430034438, 34.47702057663547], [-77.45783211662003, 34.47662078920876], [-77.4567669450632, 34.47615221614223], [-77.45619966622279, 34.47614607312044], [-77.45532950262925, 34.47641220496549], [-77.4551411014644, 34.47648398772405], [-77.45463580376145, 34.47666915805303], [-77.45431878058459, 34.47704689974707], [-77.45427097395438, 34.47708592602517], [-77.4542218568421, 34.47711276592874]], [[-77.4583425484168, 34.48191614235218], [-77.45844644592874, 34.48149107279912], [-77.45872287832405, 34.48139468956828], [-77.45870337016773, 34.481100846241205], [-77.45737879791433, 34.48097230268989], [-77.45706686782148, 34.48131052941284], [-77.45563724488724, 34.48187068955437], [-77.4553154634195, 34.482345931315365], [-77.4550363035039, 34.48255835494083], [-77.45477478993739, 34.48267726902047], [-77.45482736058679, 34.483126239818176], [-77.45578294964885, 34.48316714163214], [-77.45596170705312, 34.483057688955526], [-77.45622656250688, 34.48278863910333], [-77.45725423727782, 34.48267109198498]], [[-77.4636217348052, 34.4864503065379], [-77.46375003576004, 34.48644388007274], [-77.46371954636872, 34.486308573070716], [-77.46350425538597, 34.48602070290747], [-77.46333182797004, 34.48572827382388], [-77.46231706177473, 34.48574773982865], [-77.4620993559134, 34.48580720439142], [-77.4610603321165, 34.48624205987316], [-77.460991171611, 34.486291658668165], [-77.46089445402474, 34.48632512088427], [-77.4606503969894, 34.48634662641523], [-77.45958716116692, 34.48646858934316], [-77.45875182141558, 34.48639177303488], [-77.45883231945179, 34.48680440047517], [-77.4584885015171, 34.48737517503115], [-77.45836548126644, 34.48739215529294], [-77.45835686401048, 34.48745576312289], [-77.45842172075145, 34.487511220571115], [-77.45819370243434, 34.48790273958855], [-77.45822284130602, 34.48812447226102], [-77.4582894814578, 34.48836321802567], [-77.45841294330258, 34.48860329654525], [-77.45816759088551, 34.48879718182671], [-77.45840493161556, 34.48908578925275], [-77.45997558702723, 34.489362464936626], [-77.46042261789684, 34.48952413548239], [-77.46089174157936, 34.489352148812216], [-77.46103399529515, 34.489297730751964], [-77.46105055527606, 34.48929066404238], [-77.46105963331468, 34.489281848236], [-77.46105998122258, 34.48926423511472], [-77.46126253003806, 34.48895439371665], [-77.4613106698207, 34.48882299721088], [-77.46146344063892, 34.48840600273802], [-77.46163909819249, 34.48829800025849], [-77.4615408412515, 34.48823004499481], [-77.46162548920813, 34.48778787917787], [-77.46190254233127, 34.48763586138513], [-77.46212633317214, 34.48743716338447], [-77.46247833798608, 34.487193154305245], [-77.46264798456222, 34.487096556045664], [-77.46285193450093, 34.48700855254083], [-77.46315550469257, 34.486749083937845]], [[-77.24991370598288, 34.61130871023784], [-77.24939170564092, 34.610664451356314], [-77.24849603194076, 34.60989961854532], [-77.24771901243838, 34.608980674177566], [-77.24710107097357, 34.60859869564494], [-77.24667348708115, 34.60764263242279], [-77.24668339277403, 34.60762311543763], [-77.24669274190317, 34.6076031430987], [-77.24680711104702, 34.60745040304742], [-77.24735122522907, 34.60673301934161], [-77.24797646314308, 34.606115460521764], [-77.24942843071842, 34.605603679357515], [-77.25030339071616, 34.605555562057816], [-77.25190150845822, 34.60568571200883], [-77.25269396321485, 34.60581590962569], [-77.25334503316736, 34.607204908044864], [-77.25307125390957, 34.60801695583533], [-77.25304999828552, 34.60812438082924], [-77.25300562491078, 34.60821160103913], [-77.25258889051862, 34.60903076247959], [-77.2521733020185, 34.60984766626867], [-77.25209231788637, 34.60993437162394], [-77.2518901852389, 34.61009874824532], [-77.25110060950558, 34.61079898676154]], [[-77.39592582118861, 34.51131614709882], [-77.39598306514036, 34.511212958594584], [-77.39595319518921, 34.51120179440765], [-77.39594828070008, 34.51109556201129], [-77.39593077884928, 34.51109548429866], [-77.39591745717514, 34.51110001128406], [-77.39590924179826, 34.51121180828312], [-77.39590682458739, 34.51122396369877]], [[-77.31382179867775, 34.698413332106234], [-77.3137746152816, 34.698344721064004], [-77.31370307586654, 34.69812707202597], [-77.31362905311009, 34.698133054082405], [-77.31350836423692, 34.697968901087705], [-77.31347025873636, 34.69791203337789], [-77.3134065619376, 34.6978688025962], [-77.31323186072376, 34.69776309167942], [-77.31345792921283, 34.6976921950325], [-77.31354090714488, 34.6977207635894], [-77.31361702660041, 34.69779917775776], [-77.31370827817096, 34.69786066532694], [-77.31391172832868, 34.69782780982728], [-77.31400601138404, 34.69786622140745], [-77.314032081627, 34.69787408520061], [-77.31411656290967, 34.69788559783217], [-77.31448943071791, 34.69826258206858], [-77.31483635498836, 34.698009494853764], [-77.31487496808633, 34.69801407341451], [-77.31490247983419, 34.69802162939042], [-77.3151070242531, 34.69819761812962], [-77.31515820505929, 34.69819034127321], [-77.31524332921165, 34.69821862122695], [-77.31501012045177, 34.698530807763575], [-77.31477281088561, 34.69859166231664], [-77.31455790811886, 34.698799868317955], [-77.3143139839655, 34.69886581293051], [-77.31427429793419, 34.698838714947186], [-77.3143182713932, 34.698442145885934], [-77.31383942808596, 34.69843896761304]], [[-77.44129026071369, 34.495729134495384], [-77.4414221507785, 34.495609156582326], [-77.44165735663576, 34.49538802379129], [-77.44160681989528, 34.495288872261895], [-77.44177507114436, 34.495200051347226], [-77.44216867418012, 34.49496781576252], [-77.44289574534167, 34.49437311967713], [-77.44420113504805, 34.49416650635125], [-77.44312265159152, 34.49393814327545], [-77.44270253811597, 34.49366599938135], [-77.44146039004877, 34.49343540197685], [-77.44128309433653, 34.493399369204184], [-77.4408529384529, 34.49399598358772], [-77.4408514625583, 34.49432767373112], [-77.44063205870947, 34.494660261823356], [-77.44047755842199, 34.49474006807298], [-77.44036333842776, 34.4949617185615], [-77.4400811462493, 34.49514151856732], [-77.43967678216747, 34.49528711674936], [-77.43994665795381, 34.49559696105045], [-77.44059849530636, 34.49582244335585], [-77.44092190174149, 34.495870431264684]], [[-77.35716258422232, 34.570450168323895], [-77.35694636340448, 34.570562342880976], [-77.35717565203542, 34.570596220656796], [-77.35723770107259, 34.570628584910416], [-77.3574266375033, 34.570696845751755], [-77.35763160819863, 34.57076627234133], [-77.35771091716947, 34.57079136226109], [-77.35785585383547, 34.57085597631264], [-77.35796563119013, 34.57090470520046], [-77.35802536178865, 34.571192619331356], [-77.35804461190597, 34.57123258991714], [-77.35806094950206, 34.5712510048958], [-77.35852488493458, 34.57149487139008], [-77.35881317063928, 34.571495388932604], [-77.35900508598851, 34.571757242633176], [-77.3592069419557, 34.57190580344379], [-77.35922899501307, 34.571931962511], [-77.35937959862437, 34.572148646298835], [-77.3596006517341, 34.57244320220937], [-77.35972726375206, 34.57257283013625], [-77.36031041291004, 34.57254114973071], [-77.36038859089872, 34.572522539689764], [-77.36042873801516, 34.57256506220262], [-77.36106602828178, 34.57239740894944], [-77.36117673879018, 34.57218480828631], [-77.36141113361401, 34.57187020995039], [-77.36141079754739, 34.571617847078876], [-77.36141112324519, 34.57136566828062], [-77.3614514695353, 34.571187436952975], [-77.36117740574541, 34.570845567961705], [-77.36116112669491, 34.57082224123045], [-77.3611266020627, 34.570809657231074], [-77.36096418390316, 34.57063836712318], [-77.36090057015385, 34.57062992383937], [-77.36079949812098, 34.57044930569814], [-77.36079218933057, 34.570433251218], [-77.36078961622565, 34.57042717560607], [-77.36058646749292, 34.570038315841096], [-77.36038995037651, 34.56984501880249], [-77.36001404771119, 34.56967679094197], [-77.35996610508205, 34.56967079541603], [-77.35960214650369, 34.5695536479854], [-77.35936647928239, 34.569618771652785], [-77.35899258518806, 34.56961094670386], [-77.35881413672514, 34.56966233467497], [-77.35859891798391, 34.569707244413856], [-77.35802613355959, 34.569754325368635], [-77.35791702110089, 34.569691130497], [-77.35763219218394, 34.56968772162235], [-77.35757842574162, 34.56968019889817], [-77.35730675516265, 34.56973524939579], [-77.35723818142003, 34.569749144876916], [-77.35709438857513, 34.569904207727326], [-77.35709386054262, 34.56996116404799], [-77.357122824501, 34.570112390363306]], [[-77.34188151498013, 34.653747613512124], [-77.3419138454457, 34.65383616212189], [-77.34187807092277, 34.65386983025561], [-77.34185022305743, 34.65394358246988], [-77.34178049019462, 34.65394761200685], [-77.34172931077859, 34.653926205515454], [-77.34167475363688, 34.65394659939872], [-77.34147377242844, 34.65398073801282], [-77.34141137630257, 34.653937393008924], [-77.34132178792085, 34.65395074043218], [-77.34083817699988, 34.65409085468023], [-77.34079730253117, 34.65406820817237], [-77.34069175165631, 34.65415882394345], [-77.34025388546134, 34.65428837550889], [-77.34020728775054, 34.65431873846062], [-77.34011489491688, 34.654374547457856], [-77.33960079607685, 34.654487299048135], [-77.33940943166978, 34.654622954714476], [-77.33930969567012, 34.654632018117994], [-77.33927757131657, 34.65471150732269], [-77.33924023654102, 34.654780024626895], [-77.33908209453642, 34.65509270554205], [-77.33898411155889, 34.65510482100494], [-77.3388991185143, 34.65524883213992], [-77.33871890613152, 34.65552451192452], [-77.33873432700003, 34.65569344225149], [-77.33858625160771, 34.655811889620054], [-77.33836647610399, 34.65586278196591], [-77.33815343326938, 34.65596111944781], [-77.33793757900509, 34.65577061510506], [-77.33782109700309, 34.65602093699431], [-77.3376821418174, 34.656092836558905], [-77.33763043857857, 34.65617659082216], [-77.33742781398256, 34.65624937369354], [-77.33739562461471, 34.65626040322328], [-77.33735427407092, 34.656252424693506], [-77.33712520776821, 34.65627432946276], [-77.33712501103116, 34.65603840648731], [-77.33718538038741, 34.65590598905665], [-77.33728147386849, 34.65569235164571], [-77.33742250005399, 34.6556488460901], [-77.33754038347837, 34.65543528173196], [-77.33763302801168, 34.6551781091769], [-77.33759858231363, 34.655005300890046], [-77.33771715047317, 34.654673713166005], [-77.33779730930719, 34.65466420234739], [-77.3379905823112, 34.65452951494653], [-77.33828670042772, 34.65432130406686], [-77.33839780299581, 34.65432932852944], [-77.33875448116578, 34.6542232060566], [-77.33886614100848, 34.654018132945964], [-77.33916504210929, 34.65395864221775], [-77.33917342170497, 34.653953936522036], [-77.33917948016634, 34.65395268636468], [-77.33944512705929, 34.6537127203988], [-77.33966753144237, 34.653741023996496], [-77.33965890114605, 34.653456580366836], [-77.33957616326802, 34.65314479809685], [-77.33936549648996, 34.653316488110534], [-77.33924654858053, 34.65334803977085], [-77.33890945737056, 34.65331649765177], [-77.33863596818009, 34.65287277329777], [-77.33843422276826, 34.65325698292813], [-77.33836759891348, 34.65324104953388], [-77.33823060123228, 34.65323059231709], [-77.33832693865705, 34.65315683101559], [-77.33851414211709, 34.65276968704032], [-77.33859554504293, 34.65274032052222], [-77.33860837578754, 34.65273546961568], [-77.33863154108627, 34.65271856791526], [-77.3390433477636, 34.652491094533076], [-77.33916263969257, 34.65230707528525], [-77.33931984290287, 34.652081952041186], [-77.33961199430613, 34.65177503267985], [-77.33967709159982, 34.651680609042], [-77.33973480605167, 34.65168264916856], [-77.33975621585304, 34.651755239826066], [-77.33995230672724, 34.65240018344228], [-77.33997470469006, 34.652569247091606], [-77.34030772798808, 34.652844696386595], [-77.34054952844664, 34.65283540812095], [-77.3406735134771, 34.652895336759386], [-77.34082696380703, 34.652964919141176], [-77.34090944354637, 34.653033115803346], [-77.34118104984313, 34.6532476751355], [-77.34119649343123, 34.653381511799566], [-77.34129709721874, 34.653368822760974], [-77.34159231041104, 34.65361322601527], [-77.34163344310038, 34.65366464088312], [-77.34167777541964, 34.6536698088833], [-77.34177108716145, 34.6537029045822]], [[-77.38254882619111, 34.51338846774948], [-77.38253641608722, 34.51338906451778], [-77.38219352363397, 34.513174731333685], [-77.38198834430746, 34.513131475068015], [-77.38175670972916, 34.513160667686996], [-77.38099154263624, 34.513620799289825], [-77.38102253997457, 34.513654944999566], [-77.38120267915241, 34.513925194213314], [-77.38136742384927, 34.51382273864501], [-77.38174670627384, 34.51360259884162], [-77.38191386421627, 34.51359191473626], [-77.3821395341266, 34.51358542566963], [-77.38252462351471, 34.51340679918919], [-77.38253614846316, 34.51340089247081], [-77.38253903181393, 34.51339939205186], [-77.38254448162654, 34.513396828346416]], [[-77.42900494444069, 34.49817962187577], [-77.42821178480138, 34.49828435740937], [-77.42799106409302, 34.49840659866314], [-77.42785220250934, 34.49845867807867], [-77.42741832986746, 34.49849280464614], [-77.42688050962275, 34.49850607439645], [-77.42650343260576, 34.49845087450173], [-77.4260275714669, 34.49864412307193], [-77.42569041116768, 34.498841139081854], [-77.42535480966707, 34.49917611678906], [-77.42491394606887, 34.49926279611607], [-77.42434389232868, 34.49937487588728], [-77.42405294683141, 34.49934014493151], [-77.42349825423184, 34.49955794284692], [-77.42291247778681, 34.499836108385686], [-77.4228791143616, 34.499851116978995], [-77.42285068798296, 34.49986902702789], [-77.42184642154119, 34.50045718649469], [-77.42175502559884, 34.50049297768249], [-77.42171219553722, 34.500631536702194], [-77.42127029980392, 34.501103292128825], [-77.42149185938166, 34.50131933470226], [-77.42144992286786, 34.50145024414242], [-77.42162461655741, 34.50161792696824], [-77.42132857587569, 34.50192025228651], [-77.42150551211469, 34.502220187723736], [-77.42202965324923, 34.502108360479845], [-77.42237029134202, 34.50198043708967], [-77.42313780210449, 34.50202556533639], [-77.42343994244595, 34.50202736614128], [-77.42363690707683, 34.502002017875064], [-77.42379844336011, 34.50190799267131], [-77.42431716164093, 34.50173854274991], [-77.4245139010587, 34.501606764016486], [-77.4246547767875, 34.501544440728075], [-77.42493509319031, 34.50144476983547], [-77.42523842906081, 34.50130599199676], [-77.42540828845966, 34.50108063761007], [-77.42581687111917, 34.50086840233469], [-77.42631653323163, 34.50068550046819], [-77.42672914219966, 34.50053440370455], [-77.42706457889128, 34.50050595911406], [-77.42762269223417, 34.50037460665347], [-77.42824350297705, 34.500142725269406], [-77.42830682960928, 34.50012356326697], [-77.42831728190349, 34.50011809207081], [-77.4283287876002, 34.50011268654054], [-77.42834897014139, 34.50008765889027], [-77.42920517084261, 34.49948187540548], [-77.42933403724652, 34.49942402793547], [-77.42941974618681, 34.49926759668743], [-77.4295267623917, 34.49916051905234], [-77.42967997561837, 34.49899803694201], [-77.4299809653713, 34.49884592665107], [-77.42912987687154, 34.49820611863881]], [[-77.25833217685373, 34.58196851445831], [-77.25800916789014, 34.58198318152925], [-77.2578050592959, 34.582103487775406], [-77.2578157617621, 34.58216191143691], [-77.2574719752861, 34.58254861403955], [-77.25760042016668, 34.582791092055764], [-77.25758277574135, 34.58298397764418], [-77.25756712773823, 34.58302744524593], [-77.2575466583614, 34.58307651690344], [-77.25743334590891, 34.58312131807933], [-77.25703505638614, 34.58318908956979], [-77.25625255573117, 34.58324002375698], [-77.25563739021004, 34.58371248087857], [-77.2555321264608, 34.583809947916144], [-77.25551344538462, 34.58389718090524], [-77.2552417095168, 34.58412068250689], [-77.25431982639513, 34.58465719320477], [-77.25445121664126, 34.58489146015429], [-77.25431889388933, 34.58512846530026], [-77.25418762193684, 34.585347067998654], [-77.25391570380323, 34.58556806568424], [-77.25380740956177, 34.585666176844356], [-77.25382117018229, 34.5858621835194], [-77.25393775109754, 34.58604114517823], [-77.25404167836847, 34.58614701793742], [-77.254156973422, 34.586264469912265], [-77.2541735388659, 34.586281345203574], [-77.25441457685552, 34.586206239179106], [-77.25446488207731, 34.58617225349014], [-77.2545260881761, 34.58608746478616], [-77.25461860080935, 34.58605906353044], [-77.25470985953899, 34.58600484418772], [-77.25473477173001, 34.5859860576906], [-77.25480801693013, 34.58589889500111], [-77.2548344655658, 34.585876070149084], [-77.25491564155118, 34.58581976561684], [-77.2546065857496, 34.58562245841362], [-77.25508141409435, 34.58548477816185], [-77.25539435986597, 34.58548509384309], [-77.25543366438825, 34.58545189721362], [-77.25556013108351, 34.585253287907676], [-77.25558335991306, 34.585228009593514], [-77.25569670716814, 34.585159886637726], [-77.25581675796954, 34.58482425829279], [-77.25615203731186, 34.58482069557775], [-77.25617175718922, 34.58480298381083], [-77.2562029191077, 34.5847866259153], [-77.25633978963023, 34.5846321865111], [-77.25644692264798, 34.58465441397604], [-77.25653694289936, 34.58459605754361], [-77.25661550917012, 34.584548784151266], [-77.25663744027446, 34.58453205907089], [-77.25666459805896, 34.584488269906934], [-77.25676864900205, 34.58443507945138], [-77.256817509486, 34.584399812235056], [-77.25683658611659, 34.58438397158481], [-77.25688938472335, 34.584345860585586], [-77.25697221275014, 34.584276811163036], [-77.25701968876257, 34.584250999880226], [-77.25710128188187, 34.58417465824762], [-77.25710012313691, 34.58416904331363], [-77.2571209880185, 34.584155235681685], [-77.25719610944769, 34.5840792769623], [-77.25724674406547, 34.58402833379234], [-77.25720567779737, 34.5839416801902], [-77.2575075723594, 34.58380770021738], [-77.25757428381506, 34.583758364597934], [-77.25760503854899, 34.58373744137094], [-77.25774247057262, 34.583658988300265], [-77.25777014595714, 34.583632600589894], [-77.25779445140284, 34.58362555328871], [-77.2578162704285, 34.5836141019107], [-77.25793000414251, 34.58352734643549], [-77.25798319374533, 34.58346479125862], [-77.25814525250752, 34.58338040749676], [-77.25823851653075, 34.583315955870034], [-77.25833278223908, 34.58325421760384], [-77.25839609951923, 34.58321052225342], [-77.25840915008261, 34.58318638088374], [-77.25849027971802, 34.58310009864701], [-77.25862578356478, 34.58305042725327], [-77.25880090776592, 34.582895201150954], [-77.25880563102754, 34.582889245407735], [-77.25880727389287, 34.58288321658405], [-77.25882191791787, 34.58287604072147], [-77.25904827350833, 34.58267266953526], [-77.25909243298548, 34.58247957935305], [-77.25913011910758, 34.582443439957046], [-77.2592234288364, 34.58236955559302], [-77.25887994106085, 34.58218808171271], [-77.25901610761625, 34.58207978956548], [-77.25891795633473, 34.581853092921676]], [[-77.43781870483008, 34.58329862901395], [-77.4379473192555, 34.58350093226712], [-77.43812259380967, 34.58377663139818], [-77.43819452688967, 34.583889777368924], [-77.43827453935663, 34.58401563216441], [-77.43840216001426, 34.5842163703212], [-77.43844258756083, 34.5842349435101], [-77.43879615948413, 34.58414749692974], [-77.4390789194219, 34.58406661092801], [-77.43919013868641, 34.584034795511904], [-77.43981877544488, 34.58390774531707], [-77.4399781205133, 34.58386820906311], [-77.4401169959933, 34.58403634034674], [-77.44031787625491, 34.58437314801971], [-77.44058325213584, 34.584818095921015], [-77.44062888834125, 34.584959979250826], [-77.44076159291038, 34.5856356671101], [-77.44024870834016, 34.585424863301725], [-77.43997888444287, 34.58554226850828], [-77.43977298738318, 34.585359879165935], [-77.43966861178288, 34.58528458917351], [-77.43958470776843, 34.585231036625956], [-77.4395329682472, 34.585182294501266], [-77.43947861830831, 34.58509210720854], [-77.43931076063942, 34.58500213328452], [-77.43935825415541, 34.58481448439679], [-77.43919028605399, 34.58436477886687], [-77.43898426044358, 34.58482712357241], [-77.43876597829353, 34.584689105021624], [-77.43872796746346, 34.5846618221127], [-77.43857608701407, 34.58449650088403], [-77.43851570191171, 34.58448022211917], [-77.43840219890639, 34.584305355014266], [-77.43837313807487, 34.58431986373871], [-77.43823831145566, 34.58430803977417], [-77.4382051808713, 34.58429880956042], [-77.43818692234261, 34.58412276659258], [-77.43800802688051, 34.583977747982175], [-77.4379817491111, 34.58394885042748], [-77.43761385590298, 34.58364531342886], [-77.43758109904921, 34.58358916407173], [-77.43721983025911, 34.58364959831905], [-77.43720009445056, 34.583630246192975], [-77.43717426567191, 34.58361272325083], [-77.43702275434491, 34.58350164224841], [-77.43698218835681, 34.583471901126366], [-77.43682567008426, 34.583332006855024], [-77.43666977891999, 34.58326108025416], [-77.43670268279881, 34.58296409173572], [-77.4361901090607, 34.58307028332943], [-77.43603758615743, 34.58325436415734], [-77.43560207953101, 34.58337071518938], [-77.43554551846118, 34.583848236963355], [-77.43525006600778, 34.584586763861374], [-77.43449627068281, 34.5839999449462], [-77.4344876615221, 34.583973280962645], [-77.43446172142428, 34.58386908107201], [-77.4344049263104, 34.5832248977567], [-77.43437980445117, 34.58316759961903], [-77.43406730130444, 34.58285221906155], [-77.43403337652117, 34.58282964164161], [-77.4340183887092, 34.58274259950174], [-77.43416149325179, 34.582672997288284], [-77.43446117255162, 34.58245841547545], [-77.43457327754673, 34.58241126419536], [-77.43467434535039, 34.58227582882364], [-77.43487192700111, 34.58184096104378], [-77.43487636612907, 34.581798933961316], [-77.43498073229343, 34.58138234416211], [-77.43482579270679, 34.58101122615733], [-77.43481477351597, 34.58098174812431], [-77.43479014518508, 34.580915863922975], [-77.43485459326197, 34.58092631919856], [-77.4348989485945, 34.58092177761991], [-77.43524862130462, 34.58095889925237], [-77.43567429033831, 34.58082329602531], [-77.43638195270776, 34.581179732107], [-77.43660318990959, 34.58138661132689], [-77.43682500446988, 34.58173553338459], [-77.43695851360435, 34.58194554772763], [-77.43721093968911, 34.58234262193015], [-77.4374529116942, 34.582723241314966], [-77.43751482200923, 34.582820626329934], [-77.43761357012784, 34.582975955007385]], [[-77.4383903230447, 34.740843813892354], [-77.43837684316391, 34.74071457875888], [-77.43836530977464, 34.740655373633246], [-77.43840635722651, 34.740445374627285], [-77.4384104219665, 34.740413349987605], [-77.43842963240841, 34.740313748690106], [-77.43844438392144, 34.740184448292986], [-77.43844477423117, 34.74017928108177], [-77.43844524531852, 34.74017561873616], [-77.43846593197128, 34.74008896386812], [-77.43843748053993, 34.73989721684539], [-77.4384957376815, 34.73989449310916], [-77.43851962167857, 34.73990342963488], [-77.4386087497543, 34.739817297782736], [-77.43860399253626, 34.73969747574647], [-77.4386278964718, 34.739684229481256], [-77.43862588662992, 34.73965384796533], [-77.43859833294084, 34.73963142735726], [-77.43854566435769, 34.73960220734299], [-77.43846941161966, 34.73962885720699], [-77.4383279639996, 34.73962046541572], [-77.43826464218361, 34.73967666594258], [-77.43817251361611, 34.73974039761973], [-77.43814982052905, 34.73979671221542], [-77.43813582827511, 34.73985830347143], [-77.43806316363315, 34.74004595175969], [-77.43796877883463, 34.74015530148285], [-77.43793402759351, 34.740280349605364], [-77.43784146336453, 34.74032118987286], [-77.43777303037507, 34.7404560676964], [-77.43777537881348, 34.74050443629035], [-77.43784476556911, 34.740573657898025], [-77.43792705713703, 34.7406150103175], [-77.43798083763646, 34.74065738568311], [-77.43820054818349, 34.740724112391256]], [[-77.22941912915736, 34.59683495475752], [-77.22941579738459, 34.596831481657766], [-77.22940016173958, 34.59683345784202], [-77.22893895327212, 34.59706914466365], [-77.22870216055925, 34.59746835519225], [-77.22876078511575, 34.59772571557705], [-77.22879915900357, 34.598049129831], [-77.22874842043535, 34.59818577860524], [-77.22879408170598, 34.59819970301536], [-77.22885311413401, 34.59830772448151], [-77.22830031086848, 34.59863208985038], [-77.22917490391698, 34.598972282058114], [-77.2294845756984, 34.598869579938366], [-77.23000790549082, 34.5989925307133], [-77.23041026837681, 34.598798602325495], [-77.2306427178487, 34.59858510006263], [-77.23083540398416, 34.59836079012922], [-77.23093498548383, 34.59818767963143], [-77.2309290317086, 34.59810462643412], [-77.23078854876431, 34.59788573519664], [-77.23063536293446, 34.59775348856646], [-77.23057875487117, 34.59750095159125], [-77.23048893772679, 34.59739073543547], [-77.23012977542815, 34.59708672386417], [-77.22939400891362, 34.59720950079052]], [[-77.43120090452216, 34.50085853909677], [-77.43108579703967, 34.50086965018063], [-77.43074231444277, 34.50091138959156], [-77.43057945424871, 34.50092060845379], [-77.43060765502696, 34.501151810069096], [-77.43061755157888, 34.501236196701115], [-77.43061967727304, 34.501250373962584], [-77.43065378590413, 34.50125380868481], [-77.43070841490825, 34.5012474289431], [-77.43121711132915, 34.50123054608718], [-77.43126373665322, 34.50108859706034], [-77.4312947441947, 34.50097121022051], [-77.43131197623893, 34.5009404527302]], [[-77.45084657004259, 34.47898616498673], [-77.45080494257809, 34.47896889379946], [-77.45075352958361, 34.47899185745317], [-77.45016868416003, 34.47925079567786], [-77.4497523039908, 34.479514983477344], [-77.44968996170718, 34.47958431899598], [-77.45112315116415, 34.480133318549655], [-77.4514848818456, 34.479675645719894], [-77.45169021353468, 34.479396155432745], [-77.45178773456348, 34.47923435189524]], [[-77.4375865450095, 34.49682955171765], [-77.43814714360062, 34.49670792808856], [-77.43827015377879, 34.49663782047956], [-77.43832875704184, 34.49656949253689], [-77.4386397485757, 34.4962795186274], [-77.4386730109926, 34.49624927130742], [-77.43864316139661, 34.49622499195788], [-77.43864389439429, 34.49591001959192], [-77.43784992415956, 34.495619930700855], [-77.43693867774631, 34.49582310776311], [-77.4367038922767, 34.495876593115874], [-77.43658468555941, 34.49591784444056], [-77.43623338101392, 34.495970616422724], [-77.43530343510488, 34.49615715739802], [-77.43481078821685, 34.49614471847186], [-77.43455826628549, 34.4963772765761], [-77.43413120636166, 34.496408539816926], [-77.43403788098834, 34.496453961297505], [-77.43326681738236, 34.49658252558262], [-77.43290882610307, 34.49725056038875], [-77.43259546254613, 34.49744447413155], [-77.43238745708183, 34.497617627651586], [-77.43280630234509, 34.49776026100044], [-77.43307964900359, 34.49787600558339], [-77.43342417342382, 34.49784727437343], [-77.43446010148044, 34.49799977856732], [-77.43505103535844, 34.49775347332759], [-77.43544103298522, 34.49763929534056], [-77.43566842024079, 34.497493361822016], [-77.43661184710353, 34.497157514313216], [-77.43672403430672, 34.4970746218378], [-77.43686988759859, 34.49696190832504]], [[-77.392797964614, 34.50852185255509], [-77.39206186906483, 34.50863782511237], [-77.39132322108694, 34.50873279957292], [-77.39129350286034, 34.5091966112903], [-77.39157568075683, 34.50944785153089], [-77.39143323793766, 34.50977961333878], [-77.39135532907784, 34.510167027378905], [-77.39133367562071, 34.510227830093385], [-77.39123302192067, 34.510592225482554], [-77.3911636063819, 34.510641749707254], [-77.39114416673364, 34.510687167691025], [-77.391205229695, 34.51069426182347], [-77.3912309275756, 34.510685209904814], [-77.39127782402886, 34.510697308862866], [-77.39201115430443, 34.51089037659268], [-77.39220928125081, 34.510899389475455], [-77.3926684032678, 34.51087707311659], [-77.39279689238066, 34.51085079875686], [-77.39292375142175, 34.51084100657331], [-77.39335436339996, 34.510714090192636], [-77.39358540922727, 34.510687643025676], [-77.39369799392637, 34.510632914444514], [-77.39378331054291, 34.51061250359337], [-77.3939730629366, 34.51052373973138], [-77.39397641627758, 34.51052002061047], [-77.39398170127845, 34.51051558644195], [-77.3940045289562, 34.510505102871086], [-77.39437962173692, 34.5102710352847], [-77.39458782148631, 34.51032076938337], [-77.39479947035049, 34.51015962515281], [-77.3949299177119, 34.50980401050711], [-77.39506164379368, 34.50963211338403], [-77.39497350220829, 34.50951509128521], [-77.39481187093611, 34.50892765223408], [-77.39399422215114, 34.50880684053356], [-77.39363079197497, 34.50867023731463]], [[-77.45414201993586, 34.680049145000815], [-77.45410644570612, 34.679915506998164], [-77.45409761625507, 34.679877169178894], [-77.45406483536505, 34.67983243757876], [-77.45395542761626, 34.67954843275784], [-77.4539380547859, 34.67920680678461], [-77.45391878340985, 34.679189613656305], [-77.45392127796944, 34.679162891274764], [-77.45397923673373, 34.679156486295774], [-77.45401137580947, 34.67919438309857], [-77.45418697598393, 34.67948243504658], [-77.45441524464253, 34.679538182917206], [-77.45450051083867, 34.679675032430296], [-77.45454663574897, 34.679749185633106], [-77.45456360891306, 34.67981412632391], [-77.45469167013036, 34.679918569661424], [-77.45477490434165, 34.680013173998795], [-77.4548052115297, 34.680044747580105], [-77.45488642709714, 34.68011960069752], [-77.45477392169751, 34.68021859763704], [-77.45454450581684, 34.680294700506906], [-77.45428508560921, 34.68035479290325], [-77.45417579953137, 34.68022414884541], [-77.45416684912878, 34.680177778309414]], [[-77.30151833120078, 34.55403730851118], [-77.3011380248252, 34.55425237838926], [-77.30127813807889, 34.55446622137373], [-77.301314064096, 34.554580435824406], [-77.30142513090591, 34.55468993549489], [-77.30128900558103, 34.554822846265964], [-77.30129511671426, 34.55483601674594], [-77.30130327064677, 34.5548318092859], [-77.30131237482829, 34.55483423023628], [-77.30138822234628, 34.55481763484232], [-77.30150117518946, 34.55476490679849], [-77.30150967428933, 34.5546818824628], [-77.30157475484525, 34.55466846522534], [-77.30168785645, 34.55452022184889], [-77.3021697021557, 34.55433828464776], [-77.30193360796103, 34.55411214942524]], [[-77.41114475034965, 34.671218272381466], [-77.41097411085455, 34.67120341430478], [-77.41086071996935, 34.67116215153952], [-77.41067584294008, 34.67112710020923], [-77.41022093084003, 34.67076804582452], [-77.41076508009556, 34.67081889971102], [-77.41098329280432, 34.670839292075264], [-77.41107104790558, 34.67086861613893], [-77.41112900516278, 34.67085290907022], [-77.4112036396111, 34.67083242296118], [-77.41143318914645, 34.67072431878211], [-77.4115375202088, 34.670773078251855], [-77.41196923464514, 34.67082080705194], [-77.41203078038838, 34.67083188529701], [-77.41205724389854, 34.67029249103288], [-77.41213337092867, 34.67025158406908], [-77.41223633269232, 34.67016332359076], [-77.41230583091394, 34.67015965221829], [-77.41231748198683, 34.67010401046551], [-77.41242391550082, 34.670068671868236], [-77.41246841116426, 34.67005155811201], [-77.4125192823065, 34.670034856694706], [-77.41251662810578, 34.669976348009286], [-77.41256941927755, 34.66991262437998], [-77.41266715700411, 34.66978177007155], [-77.41287074886216, 34.67001808180417], [-77.41275235326736, 34.67010116553619], [-77.41273488409828, 34.67011342447485], [-77.4126102901139, 34.67020648599957], [-77.412579042469, 34.67023254223674], [-77.41251468691601, 34.67030840778636], [-77.41244614955552, 34.670389203164405], [-77.41242038075785, 34.6704195806238], [-77.4123132563974, 34.6705458639021], [-77.41207052454388, 34.67083200522312], [-77.41205466191826, 34.67085070472358], [-77.41204746807543, 34.67085918512677], [-77.4120283342985, 34.67088174050331], [-77.41178167811239, 34.67117250575781], [-77.41166631632643, 34.67127391024918], [-77.41159328838086, 34.67127784371179], [-77.4113686641548, 34.671244979973295], [-77.41128594386556, 34.671232877546004]], [[-77.38756259292033, 34.62431409514445], [-77.38756531494562, 34.62430764277782], [-77.38772981846081, 34.624045477999104], [-77.38780230759482, 34.62402728629488], [-77.3878249838084, 34.62413426349079], [-77.38785479637765, 34.62427490834089], [-77.3877624194566, 34.624380388047115], [-77.38771299954371, 34.624454418445566], [-77.38764301458285, 34.62451771741262], [-77.38756527470635, 34.624588030407814], [-77.38737661657774, 34.62455611467491], [-77.38744669424513, 34.624461455431685], [-77.38756081132452, 34.624317282438696]], [[-77.42441762561376, 34.52754459645645], [-77.42442153706156, 34.52780469654398], [-77.42419784695196, 34.5279485305967], [-77.42417483914082, 34.5282116303782], [-77.42418640112177, 34.52843987254097], [-77.4244049301043, 34.528520264198704], [-77.42448226288525, 34.52882728301121], [-77.42447937589509, 34.52888720662214], [-77.42446790832831, 34.52895555510424], [-77.4245734691705, 34.5290165436118], [-77.42476799335925, 34.52933516930195], [-77.4250097555902, 34.52951092908516], [-77.42514814016263, 34.52964739583987], [-77.42519039091071, 34.529763791743996], [-77.42523026764769, 34.52982682505207], [-77.42520620783831, 34.52992388083009], [-77.42502180853786, 34.530033007609376], [-77.4249901774301, 34.53006717282531], [-77.42483443187417, 34.53012683453029], [-77.42454855601393, 34.53014302131446], [-77.42414566191553, 34.5301658318659], [-77.42313710447621, 34.530159764922466], [-77.42297848711029, 34.53014512151589], [-77.42291187728466, 34.53013486761327], [-77.42285857096469, 34.530100880801406], [-77.42280844178302, 34.530000049915934], [-77.42266834458081, 34.52935340291853], [-77.42251548110687, 34.52917110133023], [-77.42243152698151, 34.528823795757376], [-77.42235202502445, 34.52862710723736], [-77.42237238754848, 34.528212413121196], [-77.42230623587572, 34.528178796665856], [-77.42232061221732, 34.52777680516503], [-77.422310944918, 34.527731608690004], [-77.42227944479373, 34.52771608756099], [-77.42230375507313, 34.52752034046627], [-77.42230213492178, 34.527488039141545], [-77.42235085633345, 34.527420458165864], [-77.42241397821579, 34.52732563394833], [-77.42258812999636, 34.527201855244], [-77.42265249461656, 34.52714085789498], [-77.42284179323443, 34.527036997553026], [-77.42305043388652, 34.526894757495995], [-77.42345455099549, 34.52658692182718], [-77.42366296592589, 34.52644298016405], [-77.42374515633527, 34.526300068597074], [-77.42385419389183, 34.526046022341475], [-77.42421657441747, 34.52623191825617], [-77.42423514340013, 34.52623383892502], [-77.42419548188592, 34.52645349550996], [-77.42417032901128, 34.52648344739943], [-77.42421059502522, 34.52670910972329], [-77.4242125243686, 34.52673400422403], [-77.42414605979836, 34.526976642645735], [-77.42413943193223, 34.52727242294422], [-77.42422251055567, 34.527455277796484]], [[-77.2403183909576, 34.601933518788336], [-77.2403067731128, 34.601942942218365], [-77.23969899529864, 34.60235930266478], [-77.23957701824574, 34.60258883143521], [-77.23922867562165, 34.60308116573646], [-77.23975474114334, 34.60305831720733], [-77.24000861524317, 34.60315667037056], [-77.240216364559, 34.60315754994233], [-77.2402980290318, 34.6030483611394], [-77.24024435001613, 34.60287364061778], [-77.24017789091255, 34.60272593826534], [-77.24033335765634, 34.602409305146836], [-77.24032633754483, 34.60194058754214], [-77.24032737272962, 34.60193523302069]], [[-77.30116797488728, 34.55923614960457], [-77.30085216203992, 34.55942346446611], [-77.3013851028507, 34.55968769612532], [-77.30157799627145, 34.55943587267878], [-77.30155185510964, 34.559323069365774], [-77.30139592424379, 34.559228739896824]], [[-77.30792728053983, 34.548652834816515], [-77.30780971006398, 34.54863263550635], [-77.30788915893957, 34.54859663750701], [-77.30792842865986, 34.54860398778254], [-77.30864984737364, 34.54797337288488], [-77.30919823295503, 34.547655438721634], [-77.30923937884596, 34.54826052937229], [-77.30819996521298, 34.54857661068935]], [[-77.39995205416227, 34.58152487565597], [-77.40018094601739, 34.58170592271366], [-77.40019840622253, 34.581717157486594], [-77.4002280941863, 34.58173168789164], [-77.40043797891266, 34.581849012837566], [-77.4005749666859, 34.58197447437691], [-77.40069909737639, 34.58195454337474], [-77.4009689937767, 34.581949665424496], [-77.40113070744194, 34.58177569023309], [-77.40120616054405, 34.581759576227945], [-77.40136302209288, 34.5817499484288], [-77.40153964448646, 34.58173274579634], [-77.40170529168658, 34.581518525554685], [-77.40173660327049, 34.58149197628291], [-77.40212903904002, 34.58103279924656], [-77.40170462120338, 34.580725968690444], [-77.40167632364091, 34.58067355569665], [-77.40150914446357, 34.58054023940135], [-77.40136303461733, 34.58041568026265], [-77.40130315538443, 34.580367354755154], [-77.40120487088633, 34.58031701473497], [-77.40096901976929, 34.58011187199102], [-77.40085803091714, 34.58006208748901], [-77.40077201143686, 34.58007409637184], [-77.40059643626404, 34.580003333643916], [-77.40057500401015, 34.57999881565206], [-77.40053446557914, 34.580032863037005], [-77.40037799191909, 34.58015168037623], [-77.40030813318698, 34.58015885216853], [-77.40018098092345, 34.58022963175155], [-77.39986324202519, 34.580428409890835], [-77.39978695675288, 34.58042084083459], [-77.39973564936335, 34.58047373769072], [-77.39970564100454, 34.58053335203984], [-77.39964963000315, 34.580689399357674], [-77.39965349061919, 34.581390024847956], [-77.3997869251106, 34.58153733290659]], [[-77.35789135665274, 34.53653583742108], [-77.357596510285, 34.53702622740834], [-77.35758379379247, 34.537118105587474], [-77.35765893951447, 34.53722075113962], [-77.35777352388646, 34.537457259022204], [-77.35786208848828, 34.53751934841644], [-77.35804296583595, 34.5375931012334], [-77.35820137496609, 34.53747049327751], [-77.35829614528836, 34.537366687010994], [-77.35844152468093, 34.53733110761522], [-77.35860141961413, 34.53731341962915], [-77.35883606212309, 34.53724461294716], [-77.3590008710067, 34.53725246914343], [-77.3590459101131, 34.5372347921468], [-77.35907991292072, 34.53719264541472], [-77.35916452148415, 34.53708697691782], [-77.35919076735333, 34.53705691083106], [-77.35921929242558, 34.536966465611485], [-77.35921743746553, 34.53695694483681], [-77.35923621497051, 34.53691280884169], [-77.35926433823087, 34.536844340861606], [-77.35926404943584, 34.53682782047283], [-77.35931094451375, 34.53677640836989], [-77.35937896643452, 34.53665175002334], [-77.35944031534132, 34.53657107890481], [-77.35944775435593, 34.53656103802744], [-77.35945715813348, 34.53655518767377], [-77.35945356062595, 34.536547777708], [-77.35944214741889, 34.53649104957084], [-77.35943474214652, 34.53644133199967], [-77.35943343198672, 34.536429883501164], [-77.35938293045822, 34.53632105277912], [-77.35934407648594, 34.53626857643659], [-77.35933128058811, 34.536083666719904], [-77.35948128605823, 34.535956429649644], [-77.35948527364386, 34.53593907866325], [-77.3594963252615, 34.53591196557695], [-77.35950437457731, 34.53581391592894], [-77.3595126352271, 34.53572331450618], [-77.35960638883016, 34.535587282656294], [-77.35956455132504, 34.53556042577413], [-77.35958090202197, 34.535508164093095], [-77.35966116786645, 34.53549743443589], [-77.35972881998542, 34.5353317737027], [-77.35974872158238, 34.535289079286414], [-77.35977541695124, 34.53510607863669], [-77.35983837144425, 34.53503134444739], [-77.35996296612156, 34.53494897383149], [-77.36000617778474, 34.534884766190835], [-77.36003392313958, 34.53485931803145], [-77.36006994227861, 34.53478840867773], [-77.36008507746274, 34.53476002589068], [-77.36009021190047, 34.53475025196896], [-77.36009374216188, 34.53473565290871], [-77.36014030779474, 34.53462062527281], [-77.36015839634375, 34.5345473347639], [-77.36017616616415, 34.534493048882986], [-77.3602281639983, 34.534392529969054], [-77.36022826664922, 34.53433296569231], [-77.36027779353236, 34.534282408886966], [-77.36029658852424, 34.53423088190068], [-77.36032397563184, 34.53413117031576], [-77.3603641270382, 34.53404823959154], [-77.36028607172014, 34.533987572014055], [-77.360225555097, 34.533834907585856], [-77.36026521480846, 34.533745751441145], [-77.36023648771715, 34.53366209182558], [-77.36026265618361, 34.533356223312744], [-77.36022965803723, 34.53326122339146], [-77.36025615019145, 34.53316445076886], [-77.36023164218818, 34.53284439253129], [-77.36029222966948, 34.53276256315964], [-77.36058795189325, 34.53252104428523], [-77.36091430697424, 34.5321972908133], [-77.36093047223642, 34.53219098625348], [-77.36093418761446, 34.53218045874235], [-77.36101090601352, 34.532110399623676], [-77.36110235477526, 34.532026260226864], [-77.36122411417882, 34.53189387701222], [-77.36125045017221, 34.53184995878307], [-77.36131699003099, 34.53175347398417], [-77.36137172120873, 34.53166060435928], [-77.36135795676451, 34.5316297752728], [-77.36143959869219, 34.53154452476684], [-77.36134712248955, 34.53140026630836], [-77.36133494852692, 34.5313882644928], [-77.36133167338876, 34.53138483687015], [-77.36098318674071, 34.53119410324505], [-77.36097030374994, 34.53117561079293], [-77.36093880432831, 34.531126458348446], [-77.36065983146548, 34.53092785873593], [-77.36032721932459, 34.53079892904634], [-77.360163165635, 34.530715055152], [-77.36008614185532, 34.530833649347066], [-77.35999440303073, 34.531238725490866], [-77.35994593003775, 34.5313434907268], [-77.359827753029, 34.53155768105131], [-77.35961248361492, 34.5318811606272], [-77.35964475877992, 34.53206205482796], [-77.35947654246453, 34.53239038420809], [-77.35932982765131, 34.53290007803866], [-77.35933030150395, 34.532901095320774], [-77.35932959693639, 34.532902168250715], [-77.35932802059772, 34.53290298722039], [-77.35882447345162, 34.53346358592563], [-77.35865688035014, 34.53356828260963], [-77.35852430338142, 34.53371702591267], [-77.35800418469692, 34.53390343787361], [-77.3576566231088, 34.53407500331908], [-77.35763074006503, 34.53418608712983], [-77.35741824393408, 34.53464537601481], [-77.35754993826892, 34.5350165783528], [-77.35758413528258, 34.535111136134816], [-77.35763062657675, 34.53515166897103], [-77.35770289271555, 34.53530255094485], [-77.35778844847488, 34.53551496864231], [-77.3578543590476, 34.53556187258815], [-77.3578857498401, 34.53592407343652], [-77.35799963364516, 34.53603060075544], [-77.35793996979561, 34.53619987357609]], [[-77.34580941861961, 34.57471093740942], [-77.34581036346587, 34.57471102077834], [-77.34581308062205, 34.57471164807975], [-77.34601819290467, 34.57488160595291], [-77.3462033399174, 34.57483214998077], [-77.3464547320427, 34.57489026965814], [-77.34659728376543, 34.574921306953094], [-77.34672331579131, 34.57486949359222], [-77.34699113049182, 34.57515760685864], [-77.34707928258531, 34.57528352233253], [-77.34710914569732, 34.57537430207782], [-77.34709956253668, 34.57549275763263], [-77.34699090009319, 34.575503826560016], [-77.34683507398826, 34.57558157611457], [-77.34659674182242, 34.57573001776215], [-77.34634043619927, 34.57563318651104], [-77.34620282870942, 34.57558957508625], [-77.34617156496353, 34.57554289441395], [-77.34613488977489, 34.57551444915254], [-77.34572205714882, 34.575243029813535], [-77.34559774688972, 34.575167168042974], [-77.34541522725024, 34.57498579491529], [-77.34528512781273, 34.57492781658729], [-77.34521825945002, 34.57493558062584], [-77.34502545596533, 34.574824940733265], [-77.34502358589324, 34.57482278436586], [-77.34502134021587, 34.574815247623725], [-77.34492618074569, 34.57462694743203], [-77.34502151919665, 34.574555660502], [-77.34519136152122, 34.574588804363586], [-77.34521176184367, 34.57459312482152], [-77.34521849121806, 34.57459824143785], [-77.34523043071997, 34.574596048082896], [-77.3454154658208, 34.57463734181519], [-77.34551038155473, 34.57465290360756]], [[-77.45161151309675, 34.609811662813954], [-77.45143179727569, 34.60985059906694], [-77.45148482207296, 34.60996657594899], [-77.45166910326614, 34.60993362986566]], [[-77.342287169533, 34.551106136977644], [-77.34242060788034, 34.551126891305124], [-77.34255376115512, 34.55114580590652], [-77.34271842134935, 34.55114658305553], [-77.34281276293875, 34.55114728293187], [-77.34286017721416, 34.55115534694886], [-77.34297154729424, 34.551145582229125], [-77.34300963690714, 34.551122976993646], [-77.34316682465713, 34.55111642615146], [-77.34320692164609, 34.55108086786586], [-77.34341939644227, 34.55099095775199], [-77.34369274269766, 34.5508204417131], [-77.343645762612, 34.550561042053886], [-77.34367904724569, 34.55033277363545], [-77.34349047955821, 34.5500319790546], [-77.34346378506964, 34.54987410230627], [-77.34339563956307, 34.549784881146074], [-77.34323691103877, 34.54978154665218], [-77.34277979229819, 34.54948285851151], [-77.34257035503143, 34.54944384321027], [-77.3424603303672, 34.54940657677132], [-77.34234513895527, 34.54937287782154], [-77.34217107637643, 34.54938981425687], [-77.34206493920716, 34.54952666038217], [-77.3419453324189, 34.54960289312784], [-77.3420267793308, 34.54981637373436], [-77.34197373815019, 34.54989518698975], [-77.34180106817976, 34.550113281279025], [-77.34188775808019, 34.550245501379976], [-77.34194608289178, 34.55039879385333], [-77.34177685712035, 34.550606400937184], [-77.34174910273035, 34.550674807854655], [-77.34183866970423, 34.55084232854626], [-77.3419295770353, 34.550893966188724], [-77.34203331459483, 34.55089599003445], [-77.34211970223397, 34.55099148154968], [-77.3422149937771, 34.55103301598971]], [[-77.32114010774286, 34.69803890040675], [-77.32096783089821, 34.69805754037562], [-77.3205519400366, 34.6980027205975], [-77.32014902739067, 34.69803390607915], [-77.32006872904806, 34.697960820886784], [-77.32046671569395, 34.69725715977839], [-77.32093820868434, 34.697292148517704], [-77.32140243307299, 34.697136678883204], [-77.3216214808343, 34.6970044272669], [-77.32182295002333, 34.69700581300425], [-77.32205036169654, 34.69696729027977], [-77.32227691503404, 34.69701127479112], [-77.32231676691744, 34.697020119974596], [-77.32232981790162, 34.69703567677347], [-77.32248006458727, 34.69722711794004], [-77.32246819069245, 34.69729775384191], [-77.32253295133722, 34.697366577928605], [-77.32261382558953, 34.6975798398349], [-77.32265575652652, 34.69769040632116], [-77.32272953187372, 34.69788494573003], [-77.32293311211879, 34.69804939974809], [-77.32298524035748, 34.69808237777936], [-77.3233879936866, 34.69854402569324], [-77.32340542522633, 34.69854740941132], [-77.32342664026194, 34.69855949314464], [-77.3234598872018, 34.698634991069966], [-77.32331555191465, 34.69879319594938], [-77.32335648825867, 34.69858504606643], [-77.32275554431212, 34.698660150652366], [-77.32274576144191, 34.698652803850564], [-77.3225005292056, 34.69845515865072], [-77.32225215903301, 34.69833235834737], [-77.32205828436093, 34.69825964890953], [-77.3220271026261, 34.698031073216946], [-77.32172642204168, 34.69808145344487], [-77.32142540502701, 34.69810749228493]], [[-77.31845718981631, 34.69802872360249], [-77.31794905480018, 34.69801457828369], [-77.31755769536684, 34.69800544459881], [-77.31738547641112, 34.697925172991965], [-77.3174901059991, 34.697579361352894], [-77.31758937660784, 34.69740987585501], [-77.31765848444522, 34.69732025218704], [-77.31779521718076, 34.69718865898932], [-77.31806809676071, 34.69713488112792], [-77.31844242588095, 34.69702179497865], [-77.31870589162736, 34.69697230722019], [-77.31875963344581, 34.69699715392499], [-77.31906117817947, 34.69695278072957], [-77.31910443140029, 34.69695862313046], [-77.31924588296677, 34.697017292706555], [-77.31934522646328, 34.69700537445535], [-77.31945830436345, 34.69700120212434], [-77.31952045769364, 34.69700317522878], [-77.31962724149378, 34.697064961067], [-77.31968740207687, 34.69707182901822], [-77.31993384026453, 34.69708866236495], [-77.32000141185084, 34.69722442364621], [-77.31989642061598, 34.69802831255078], [-77.31935063527027, 34.69801622480352], [-77.31925358450898, 34.69809662370441], [-77.31883656873823, 34.698120225536506], [-77.3187450530614, 34.698039924468624]], [[-77.43130943704313, 34.58372902414532], [-77.43101665110387, 34.58407839391242], [-77.4310603987633, 34.58422811843804], [-77.43102745308849, 34.584501422320116], [-77.43116967563306, 34.58463180576551], [-77.43130975525408, 34.584632953148315], [-77.43153375660927, 34.584669592545076], [-77.43170382666393, 34.584739765093936], [-77.43180442413427, 34.58470528536757], [-77.43209789049091, 34.58482286381752], [-77.43259078839375, 34.58427542787469], [-77.43244008573667, 34.583928129554316], [-77.43243117702549, 34.58387391157691], [-77.43209743791708, 34.58357105679947], [-77.43205231685087, 34.583552703491954], [-77.43137952285468, 34.58367689003583]], [[-77.34298474462963, 34.684180400166156], [-77.34269586734412, 34.68410150947088], [-77.34257682183407, 34.684010183789724], [-77.34234109808502, 34.68398034606604], [-77.34228399214749, 34.68398799242899], [-77.34215480024767, 34.68380691285766], [-77.3420956075493, 34.6837750928088], [-77.3420594844066, 34.68373057401758], [-77.34192267332267, 34.683726371367264], [-77.34173970479873, 34.68365480118841], [-77.34152932375216, 34.68349512119853], [-77.3414362502975, 34.68349415085878], [-77.34093505290619, 34.68348892508338], [-77.34093257106097, 34.683488937194895], [-77.34092953376951, 34.68348990790801], [-77.34030797364332, 34.683578609454585], [-77.3402827780612, 34.68357640566077], [-77.34038506859187, 34.68331319657311], [-77.34046602275674, 34.6830729913276], [-77.34076823787294, 34.68302241922693], [-77.34108401288063, 34.68296755725083], [-77.34111132483733, 34.68297534342211], [-77.34094917073799, 34.68347479751559], [-77.34163557186612, 34.68312932381205], [-77.34207311215529, 34.68333074494201], [-77.34209515568921, 34.683381282898054], [-77.34216806071542, 34.683356753467564], [-77.34227516989806, 34.68340060440674], [-77.34247451536123, 34.683483522686565], [-77.34270778228934, 34.68355928678017], [-77.34274613400058, 34.683668669086195], [-77.34305174136281, 34.68368382838326], [-77.343130501256, 34.68376705511899], [-77.34325139761373, 34.683748420760026], [-77.3433769250619, 34.68388289207748], [-77.3434399039977, 34.683923127035854], [-77.34350036323258, 34.68392163784188], [-77.34356626286458, 34.68397875312432], [-77.34359282457828, 34.68400253328666], [-77.34361646099981, 34.68403711832782], [-77.34366701537135, 34.68408677089206], [-77.3436262996448, 34.68417385494166], [-77.34367931448742, 34.68432655572385], [-77.34346969153346, 34.6842943672883], [-77.34339567819734, 34.684282080106776], [-77.34322027536615, 34.6842386792638], [-77.34311578391194, 34.684215349048266], [-77.34308856044365, 34.684193490069255]], [[-77.42478933833303, 34.51925625321415], [-77.42496452180748, 34.51988472338775], [-77.42486100885361, 34.52001765467142], [-77.42476479352777, 34.52036597630032], [-77.42446438895317, 34.520873969300844], [-77.42443028175961, 34.52105930344453], [-77.42460719439133, 34.521121620204035], [-77.42454228222982, 34.52140836584573], [-77.4242069177942, 34.52158128356382], [-77.42423297954852, 34.52175458606433], [-77.42369206523759, 34.52181526096479], [-77.42342709862703, 34.52136292756338], [-77.4233524636913, 34.52121512410448], [-77.42333349405376, 34.52112100917329], [-77.42317907009793, 34.521083555900546], [-77.42259076009768, 34.52071793954438], [-77.42240336446874, 34.520667177344336], [-77.42214334986731, 34.52041054157192], [-77.4221336725549, 34.52009836467772], [-77.42219654374833, 34.51977176456776], [-77.42291465994126, 34.51950640680869], [-77.42321481676007, 34.51946873782892], [-77.42375014382156, 34.51953375872177], [-77.42455697870642, 34.51922759438146]], [[-77.41300887128043, 34.66943946296349], [-77.41307028717816, 34.66924924249924], [-77.41318536345102, 34.66909837065098], [-77.41323314209535, 34.669058234302305], [-77.41323859031158, 34.66902858695273], [-77.413265485828, 34.668994358164156], [-77.413354724976, 34.66888307619602], [-77.41354962454534, 34.668857883288425], [-77.41356409024417, 34.668851523225754], [-77.41360290231607, 34.6688535659746], [-77.41387636710878, 34.66892463299791], [-77.41395503685744, 34.66899976482995], [-77.41382623421389, 34.669206727495194], [-77.41381217191586, 34.669229323200774], [-77.4138035258511, 34.66924321596244], [-77.41377412703491, 34.6692777964017], [-77.41353495520315, 34.66955197211834], [-77.41340236640957, 34.66964501736345], [-77.41321492880301, 34.66977655345934], [-77.41293142640752, 34.66997550137082], [-77.41281916684628, 34.66962693822542], [-77.41297641748099, 34.66949594781161]], [[-77.32400598054656, 34.69887372078595], [-77.32401683960528, 34.69912895740586], [-77.32384199819188, 34.69904168514742], [-77.32377906820845, 34.69904823733176], [-77.32352372106119, 34.69910680462238], [-77.32329698669845, 34.69906462791275], [-77.32359788583483, 34.69885170588544], [-77.32371799718307, 34.698863912562956], [-77.32388482281738, 34.69889438252342]], [[-77.454270614817, 34.68211458722051], [-77.45453949383577, 34.68200236202905], [-77.45464887173134, 34.68183430707893], [-77.45505114616057, 34.681630862386676], [-77.45517654790655, 34.68154832917679], [-77.45531880912452, 34.68150945381571], [-77.45579598311163, 34.68150892052644], [-77.45597129864757, 34.681737499712284], [-77.45610582779474, 34.681911582232686], [-77.45605070724648, 34.6822291717932], [-77.45599239252812, 34.68230387078853], [-77.45580490597389, 34.682575015301005], [-77.45536959127789, 34.68264520154662], [-77.45549607119456, 34.683059114632314], [-77.45537370038451, 34.68336539623036], [-77.45524898702934, 34.683721052710325], [-77.4549573778141, 34.68417229578865], [-77.45498124460653, 34.68362747772557], [-77.45473486632474, 34.68337701816929], [-77.45463957671541, 34.68305491787491], [-77.45459940668059, 34.68293502335378], [-77.45438595833919, 34.68262986326656], [-77.45415530472695, 34.68251355664981], [-77.45414756091624, 34.6825062074648], [-77.4541332010493, 34.68249257935779], [-77.4540459611404, 34.68233765364504], [-77.45404417575769, 34.68232616706742], [-77.45404483324923, 34.68231532964994], [-77.45420243951686, 34.68223727730265], [-77.45419799971383, 34.68219185619315]], [[-77.46619765479332, 34.476370167893016], [-77.46625512217207, 34.47638510147835], [-77.46627492615687, 34.47637409007864], [-77.46623903941274, 34.476326287760536]], [[-77.40179071168157, 34.51061933427988], [-77.40194278034073, 34.5109181341615], [-77.40210563131285, 34.51106353526323], [-77.40212246129954, 34.51111516225968], [-77.40232612055235, 34.51110455634469], [-77.40251797774692, 34.511003991903166], [-77.40283489066444, 34.51085536233978], [-77.40300202225585, 34.51044868917897], [-77.40299607577667, 34.51044527814009], [-77.40223216468122, 34.510085313376976]], [[-77.40897490858553, 34.56532087635143], [-77.40935114394345, 34.56543724451923], [-77.40958243272792, 34.56552124327357], [-77.40988706825888, 34.56563143984349], [-77.41003014331199, 34.56580033726641], [-77.41025666380298, 34.566028931300934], [-77.41085756905431, 34.5661862717638], [-77.41042302909501, 34.56667237237964], [-77.41031436220379, 34.567113873812964], [-77.41051586563898, 34.5674106028052], [-77.41066102660643, 34.56774356131953], [-77.4107598223546, 34.56789870972908], [-77.41042431757009, 34.56833696930026], [-77.41038940141112, 34.56833914816698], [-77.41003034576559, 34.56820392801012], [-77.40985230018515, 34.568221638467264], [-77.40963638806745, 34.568231725044555], [-77.40939521689171, 34.56826041402943], [-77.40924243511331, 34.56832618608453], [-77.40864920886341, 34.56820346608686], [-77.40853529960438, 34.568132834061956], [-77.4084544931367, 34.56801554951341], [-77.4082013889958, 34.56799534840722], [-77.40801449921982, 34.56792013355783], [-77.40794776790999, 34.567880162155454], [-77.40795787429289, 34.56776808041001], [-77.4079424659541, 34.56745634856375], [-77.4080097323064, 34.56707674414075], [-77.40807586136414, 34.566587930359944], [-77.4081169637475, 34.56621834768005], [-77.40845435725132, 34.56593303316731]], [[-77.34257872094578, 34.52748094703885], [-77.34277031596358, 34.52748376939897], [-77.3429272147181, 34.52745293223842], [-77.34296745899167, 34.52744541857907], [-77.34299322966694, 34.52743435552121], [-77.3430271470297, 34.52741356111757], [-77.3429969971616, 34.52740012790553], [-77.34301264701142, 34.527293237836055], [-77.3429721563021, 34.5272420170404], [-77.34290734213198, 34.527226627045], [-77.3427763506977, 34.52722248170422], [-77.34267696609614, 34.52728038082849], [-77.34263885550959, 34.52734701820222], [-77.3425743248574, 34.52747224121689], [-77.34257216061738, 34.52747775309539], [-77.34257034413457, 34.52747928491147], [-77.34257033185263, 34.527481641754584], [-77.34257412198124, 34.5274810243195]], [[-77.3353540436797, 34.6245076713779], [-77.33531080348544, 34.62431660990923], [-77.3353005148697, 34.624093022751424], [-77.33539830137519, 34.624008309857224], [-77.33563942612122, 34.623956223298094], [-77.33575689026554, 34.62396925787583], [-77.33603339968732, 34.623983254091875], [-77.33629105933234, 34.624059567344545], [-77.33636950029327, 34.62406309914753], [-77.33647337499143, 34.624067775857384], [-77.33669141028828, 34.62407228147792], [-77.33683096012342, 34.62413852643505], [-77.33715977578815, 34.624259847767256], [-77.33731320203944, 34.62433165543356], [-77.33736796716511, 34.62490324031163], [-77.33724487074849, 34.62509216030648], [-77.33722015815742, 34.625111282763264], [-77.336942803151, 34.62517346844914], [-77.33692283577844, 34.62522453831084], [-77.33688580154296, 34.625177926130945], [-77.33659660367563, 34.62519385860528], [-77.33652694203701, 34.62519069390973], [-77.33631257807963, 34.625164931383125], [-77.33624933046879, 34.6250584094506], [-77.33607563459036, 34.625030905592624], [-77.33584877821406, 34.624935279339624], [-77.3355192872728, 34.62461074474666], [-77.33545954643077, 34.62455798894787]], [[-77.23857129171228, 34.603730217325875], [-77.23868745469127, 34.60369362008075], [-77.23863688338639, 34.603600670435604], [-77.2385457556734, 34.6036824496847]], [[-77.38776648659649, 34.65990959482615], [-77.38787728110032, 34.65987835300672], [-77.38799831377662, 34.65986509959213], [-77.38819507239187, 34.659814029252345], [-77.3883961893466, 34.65990580653391], [-77.38812691031083, 34.66004923402565], [-77.38792873830867, 34.66005338880288], [-77.38782782526455, 34.660049006489736], [-77.38771058970288, 34.66008676185127], [-77.38769940817745, 34.66000170987992]], [[-77.39943346877706, 34.52989884126852], [-77.39890209478459, 34.5302974145755], [-77.39863656177596, 34.53042879731933], [-77.39833982300469, 34.530520646225355], [-77.3981516264658, 34.530542838358016], [-77.39810381533385, 34.53040589348858], [-77.39804206716047, 34.530257763095705], [-77.39825216322276, 34.53006700806048], [-77.3983464536189, 34.53002725040534], [-77.39864973932275, 34.52984119675166], [-77.39890883627449, 34.52964297732946], [-77.39921755675704, 34.529457562975594], [-77.39944470779353, 34.52939747340486], [-77.39985084840792, 34.52925563730851], [-77.39990992709582, 34.529498466711026], [-77.39971680065541, 34.52970030348407]], [[-77.45109544057314, 34.74203981081843], [-77.4512851475281, 34.74246455345174], [-77.4511034741827, 34.7426446161387], [-77.45135694041056, 34.74282354315859], [-77.45143074924444, 34.74292688851862], [-77.45164662101485, 34.74305473947542], [-77.45194574962103, 34.74336323971664], [-77.45197357000936, 34.74345907105108], [-77.45198618172944, 34.74351189162487], [-77.4521629710334, 34.74382646183915], [-77.4523787463882, 34.7440831487086], [-77.45246481242297, 34.74414692748203], [-77.45295670786736, 34.74430183515425], [-77.45307015330846, 34.74444943877231], [-77.45288491520333, 34.74455007476402], [-77.45245684464614, 34.74437757380811], [-77.45229962068241, 34.74435673755484], [-77.45213139334157, 34.744286073652766], [-77.4520137457369, 34.74423665570771], [-77.45185474970077, 34.74414201002769], [-77.45174207444116, 34.74406746529009], [-77.45149205894975, 34.74389832100038], [-77.45127466668791, 34.74375074181363], [-77.45124322501388, 34.743575258823725], [-77.45107358450991, 34.743614066578154], [-77.4508893294988, 34.74346511952721], [-77.45080120956726, 34.74337754806281], [-77.45072647483909, 34.743309866476956], [-77.45070963958472, 34.74320316917556], [-77.45067699816488, 34.743107298597884], [-77.45066247372822, 34.74304959524322], [-77.45067438219573, 34.74296227453941], [-77.45084772963493, 34.74255529762579], [-77.45092294695793, 34.74211179679912], [-77.45076295284954, 34.74196669012136], [-77.4504956304256, 34.74172618694278], [-77.45024588183763, 34.74150149176389], [-77.45024222289874, 34.741493887371654], [-77.45018599655597, 34.741206183163186], [-77.45014674282022, 34.741096434969855], [-77.4500673448814, 34.74099008318436], [-77.44991299403559, 34.740747553726976], [-77.44982240835887, 34.740520192080886], [-77.44972323936052, 34.74038031423075], [-77.44968243581273, 34.740191802997494], [-77.44967457351089, 34.74017740948682], [-77.44966639676844, 34.74015948983518], [-77.44947706689807, 34.740036618844776], [-77.44926662273184, 34.739916179311734], [-77.44913018718415, 34.739796565851734], [-77.44903000471407, 34.739776758543016], [-77.4485953605096, 34.739567585977866], [-77.4485573911647, 34.73956014364619], [-77.4483363961148, 34.73961978428358], [-77.44818421973201, 34.739643740938526], [-77.44791270538718, 34.73957226133302], [-77.4477384954069, 34.73966342264277], [-77.44745004932147, 34.73969156280302], [-77.44722738363342, 34.73972485464542], [-77.44673528521938, 34.73944189413736], [-77.44669944014339, 34.739410041608444], [-77.44683335047603, 34.738932880179625], [-77.44684248504443, 34.738920330062015], [-77.44711421186189, 34.738643987208945], [-77.4472346331078, 34.73849830047945], [-77.44758585920606, 34.73848558095199], [-77.44790484929607, 34.73844002491059], [-77.44793613781255, 34.73844754095335], [-77.44822088231122, 34.738506842376765], [-77.44839834404686, 34.73862528190096], [-77.44844085492454, 34.738683341011246], [-77.4485729406607, 34.73896576973405], [-77.44861063154566, 34.73937607872969], [-77.44863727988823, 34.739494221823584], [-77.44918944043826, 34.73959170855263], [-77.44941927087693, 34.73961431045214], [-77.44954724104464, 34.73962689514661], [-77.44979767340413, 34.739705614903976], [-77.44983654274698, 34.7397255383709], [-77.44997968304689, 34.73982686568385], [-77.45006090021398, 34.739903942480346], [-77.45015126572967, 34.74007605156368], [-77.4502083898787, 34.74017784945986], [-77.45027327133032, 34.740278105952285], [-77.45037365909614, 34.7404332267863], [-77.45038542725726, 34.74055039647433], [-77.45049483964337, 34.7406204766809], [-77.45060736574209, 34.74079435211394], [-77.45066334121012, 34.74088084553459], [-77.45071713786292, 34.7409603298009], [-77.45084105016022, 34.74115546839187], [-77.4508176019331, 34.741262898589554], [-77.45086017036158, 34.741441645249935], [-77.45106906446901, 34.74196046368062]], [[-77.34151717674433, 34.68559765259005], [-77.34096941662028, 34.685431696515764], [-77.34129391771134, 34.68508386912577], [-77.3416274636815, 34.685217959802], [-77.34171284475715, 34.685252094080774], [-77.34189998686334, 34.68530400889216]], [[-77.342978382253, 34.53819261790513], [-77.34341835621115, 34.53818312004445], [-77.34350462537799, 34.53818304759713], [-77.34355931578322, 34.53814256485856], [-77.3438989493336, 34.538106817902765], [-77.34402415604798, 34.53804216257075], [-77.3442176208757, 34.53796622200839], [-77.34429667751758, 34.53788301326877], [-77.3443860305631, 34.53779980515974], [-77.3445346657578, 34.53772389242067], [-77.3445852937781, 34.53764840682402], [-77.34472179419296, 34.53745214823047], [-77.34457827383544, 34.53730549169545], [-77.3445097500576, 34.53723783822452], [-77.34431612086325, 34.53704034014012], [-77.34430334148267, 34.5370308235627], [-77.34429214443846, 34.53702432776282], [-77.34412030744282, 34.53692796801918], [-77.34392457949826, 34.53699623414571], [-77.34387218973808, 34.53705289199865], [-77.34382533224696, 34.537091490978796], [-77.34377358492881, 34.53712909036921], [-77.34372349056848, 34.53720460762438], [-77.34371079771478, 34.53722272406792], [-77.3435233874045, 34.53737023224004], [-77.34350925981033, 34.53737301391819], [-77.34332633601163, 34.5374036259842], [-77.34332335147101, 34.537406714400696], [-77.34330733230186, 34.53741083590017], [-77.34322699126037, 34.53745579777947], [-77.34321970750776, 34.53748045978928], [-77.34312652416062, 34.53755657679943], [-77.34312368892114, 34.53755966599796], [-77.34311323963105, 34.537569271345404], [-77.34306479078961, 34.53765344415809], [-77.34302563035035, 34.537675826739516], [-77.34300986004077, 34.53769845178284], [-77.3429746255599, 34.53773375088637], [-77.34292529057973, 34.53777106937102], [-77.34292460855, 34.53777192136427], [-77.34292159178068, 34.53783213270436], [-77.34292067561263, 34.53783369193683], [-77.34290356883325, 34.537848583388644], [-77.34295477660896, 34.53795119533091], [-77.34282253486836, 34.5381512378903]], [[-77.44412151634384, 34.73051387732446], [-77.44393123005663, 34.730455462085295], [-77.44377341314888, 34.73036343292428], [-77.44357179291289, 34.730197942610275], [-77.44319880051115, 34.730156803995456], [-77.44335346311632, 34.72987523337657], [-77.44352993864265, 34.72980002450187], [-77.44370975200694, 34.729721046654745], [-77.44388846201963, 34.729638017119605], [-77.44406525383582, 34.729564901871754], [-77.44425369544231, 34.72948696886269], [-77.4449000122345, 34.72944687217388], [-77.4448159221235, 34.73032966539955], [-77.4448105803304, 34.73038431883841], [-77.44480955155512, 34.73039484448074], [-77.44476633410254, 34.73050108887212], [-77.44477879172808, 34.73039029581868]], [[-77.35179612988561, 34.684193350490965], [-77.35148681076186, 34.6842449206201], [-77.3511987209284, 34.684291477431834], [-77.35116369843499, 34.68428590314851], [-77.35115732524118, 34.68427705147852], [-77.35103287538246, 34.684189494329544], [-77.35103683377497, 34.684147948306126], [-77.35117378808897, 34.684081043326344], [-77.35120830288807, 34.68417341505025], [-77.3514037657475, 34.68410113873967], [-77.35152534311283, 34.68411220247076], [-77.35175336814322, 34.68414494183224], [-77.35192026937578, 34.68409780699855], [-77.35180632180032, 34.684191890076605]], [[-77.33651529709503, 34.53912225504903], [-77.3368053204888, 34.53929210498375], [-77.33684049058985, 34.53929828350386], [-77.336870539731, 34.539315984269926], [-77.33719458212053, 34.539435041164715], [-77.33733597382688, 34.539406107605586], [-77.33751286035145, 34.53946842593794], [-77.33758544116084, 34.53950903747286], [-77.337639870505, 34.53945015954102], [-77.33780516927365, 34.53931580655306], [-77.33767888769859, 34.53919973064471], [-77.33766546037, 34.53915684496595], [-77.33768443445852, 34.53907652426503], [-77.33766905927845, 34.53900113984385], [-77.33765128475439, 34.53895888309828], [-77.33763887060621, 34.538935627827435], [-77.33760033729692, 34.53886566129968], [-77.33745345316835, 34.538834567389], [-77.33747321383068, 34.538739675645814], [-77.33747524331471, 34.538658378601596], [-77.33744087603, 34.53860275013289], [-77.3372898649279, 34.53852122720605], [-77.3372644486029, 34.53849488915435], [-77.33721747812137, 34.53844634669305], [-77.33712345782692, 34.538360219876665], [-77.33708184607792, 34.538306326539036], [-77.3370257508269, 34.53824960614314], [-77.33694333842921, 34.53825515226587], [-77.3368307903732, 34.538192489830834], [-77.3365946228973, 34.53822965096442], [-77.33643387538294, 34.53838018306813], [-77.33627371423405, 34.53857022730109], [-77.33615434497105, 34.53868452859203], [-77.33626275619946, 34.538770020694024], [-77.33630843875585, 34.538907186136676], [-77.33641953858259, 34.53899902195269], [-77.3364637759114, 34.539100609047026]], [[-77.33565853173063, 34.533799385210116], [-77.33566826141961, 34.53385809317006], [-77.33516565233705, 34.534056221146415], [-77.33496242649662, 34.5341181083745], [-77.3346091788944, 34.53425521115384], [-77.33458863040055, 34.53427208792423], [-77.33449663374655, 34.53431423788587], [-77.33450077976302, 34.53422931317972], [-77.3343710802636, 34.534044632567664], [-77.33435809895568, 34.53393638981749], [-77.33423469010042, 34.5338194291178], [-77.33449011742387, 34.53372730244777], [-77.33490437824867, 34.53347831097265], [-77.33497842531305, 34.533428111471565], [-77.33499543311835, 34.533454232173106], [-77.33501372554797, 34.53346258657105], [-77.335366892011, 34.53360402138671], [-77.33542793906499, 34.533609682143364], [-77.33546308146308, 34.53364278310704]], [[-77.43472806782846, 34.73815517585514], [-77.43459940555798, 34.738556167569676], [-77.43468517316683, 34.738751557717436], [-77.43496735629533, 34.73868473915388], [-77.43504180891524, 34.73836514675389], [-77.43503762742196, 34.738150252602026], [-77.43496259824609, 34.738057335210854], [-77.43493427042903, 34.737890883516215], [-77.43469068026786, 34.737791578667476], [-77.43462108511847, 34.7380046998609]], [[-77.36369291851439, 34.773448455900784], [-77.36365942430963, 34.77357644871562], [-77.36365418294744, 34.77358183116573], [-77.36329477442366, 34.77373308799988], [-77.36322783240331, 34.773984636061215], [-77.36320949748556, 34.774008391063354], [-77.3629817088285, 34.77389850506325], [-77.36305040980851, 34.773827411291514], [-77.36321624958343, 34.77360465249885], [-77.36348749414861, 34.773516281824506]], [[-77.35782804669851, 34.54697490304068], [-77.35750381751285, 34.54691602083665], [-77.3574370376804, 34.546905363227], [-77.35739314858229, 34.54691735651498], [-77.35732840945712, 34.546899479952664], [-77.35713914072855, 34.546868203728124], [-77.35704577572626, 34.54684688467185], [-77.35687512532942, 34.546964741151186], [-77.35676766479276, 34.54705457642902], [-77.35666934382512, 34.54723919100911], [-77.35664304992514, 34.547288562344825], [-77.35653427463963, 34.54743776165653], [-77.35647459054411, 34.54751205241478], [-77.35639935142078, 34.54766940725816], [-77.35633365924895, 34.54777716497461], [-77.35639276719441, 34.54786565473786], [-77.35647677553797, 34.54800138389413], [-77.35654279506521, 34.54804360432081], [-77.35649399108023, 34.54816328087364], [-77.35631335906089, 34.54826973347123], [-77.35626597832818, 34.54830071030798], [-77.35622677423532, 34.54832108368312], [-77.3560307807054, 34.548434643885344], [-77.35600943424052, 34.54844721331647], [-77.35582886124226, 34.54855238713869], [-77.35580127442812, 34.54857134656881], [-77.35577418812035, 34.54859217732832], [-77.35570925123407, 34.54867436738802], [-77.35564662838011, 34.54874447430997], [-77.35562766412762, 34.54876570490609], [-77.35552801751014, 34.548872438735465], [-77.3554897388105, 34.54891651055987], [-77.35547021919908, 34.54894196498778], [-77.3554262340482, 34.548989135614505], [-77.35541322503887, 34.549003468325225], [-77.35538678717941, 34.54901518132942], [-77.35532689680818, 34.549040762999326], [-77.35524915440129, 34.54904782304376], [-77.355228531708, 34.54905000281208], [-77.35521074341929, 34.54905159346953], [-77.35503290204602, 34.54902050395007], [-77.35486394003736, 34.54907265051646], [-77.35481067312222, 34.54908284283184], [-77.35463794081309, 34.54912286192133], [-77.35463779133546, 34.54912290969689], [-77.35445469397519, 34.54914095643986], [-77.35444125565873, 34.54913935825498], [-77.35441555674801, 34.549138962030185], [-77.35424526672071, 34.549125512961055], [-77.35417455481267, 34.54911156674194], [-77.3540492840896, 34.54911139450756], [-77.35397348502913, 34.54909621650335], [-77.35389459951463, 34.549082037543656], [-77.35385419603826, 34.54905830516264], [-77.35370189244783, 34.54904007757665], [-77.35364443934932, 34.54902996232134], [-77.35357516645404, 34.54897841338042], [-77.3535532480328, 34.548911884600436], [-77.35355001139756, 34.5488600470905], [-77.35346996329665, 34.548693284806276], [-77.3530149182106, 34.54870579592607], [-77.35268417722683, 34.54871779142503], [-77.35242118426326, 34.548913640560905], [-77.35231696540818, 34.54908983080026], [-77.35231031251269, 34.549108069320795], [-77.35228164686376, 34.549149539601906], [-77.35225473990697, 34.549116045122865], [-77.35199548624644, 34.54920325169728], [-77.35188813095722, 34.549188791074315], [-77.3518182621976, 34.54920494488715], [-77.35112254220086, 34.549275225051844], [-77.3511002578148, 34.549303832616125], [-77.35100507698883, 34.54933751340805], [-77.3504467409111, 34.549443128181835], [-77.35052089936914, 34.54959314777315], [-77.35040443820445, 34.54967092541482], [-77.35043486796977, 34.54972793969293], [-77.35040687474229, 34.54979013324514], [-77.35040394272973, 34.549794875711854], [-77.35041511108952, 34.54985319357067], [-77.35043256718969, 34.54993299633976], [-77.35044259400962, 34.5499716489814], [-77.35044858548217, 34.54999993413955], [-77.35046888457622, 34.55009027585054], [-77.35053153504707, 34.5501785326105], [-77.35058299111054, 34.55031867548412], [-77.35060840783993, 34.550361729763736], [-77.35067947671094, 34.55052889577883], [-77.35068572324636, 34.55054459199372], [-77.35068899304561, 34.55054824152515], [-77.35069635485667, 34.55055812556392], [-77.35076199692251, 34.55066014571438], [-77.35081647092792, 34.55068702611583], [-77.35089488802194, 34.550763431004455], [-77.35096509480974, 34.55081593485396], [-77.35100576822644, 34.55095707221372], [-77.35101198380532, 34.550991400292375], [-77.35105605609925, 34.55122675353215], [-77.35105662163453, 34.55122940685214], [-77.3510566510957, 34.551229793285124], [-77.35105688149763, 34.551230326008856], [-77.35111255798992, 34.55146656854383], [-77.35115004642083, 34.55152404203079], [-77.35118343226591, 34.55157877918057], [-77.35120183259066, 34.55160226067496], [-77.35125950579354, 34.55169024134068], [-77.3513576822163, 34.551873459284565], [-77.35139320240636, 34.55191582132953], [-77.35140246788616, 34.55193317997726], [-77.35143187345275, 34.551958054070084], [-77.35159258630713, 34.55213194725905], [-77.35167042071963, 34.55221316608579], [-77.35181669089692, 34.55229795309338], [-77.35184786528937, 34.5523202702317], [-77.35187846478169, 34.5523356245801], [-77.35202010533132, 34.55243131194722], [-77.35220486374392, 34.55249192445639], [-77.3522842588994, 34.55252204228861], [-77.35245761309577, 34.5525830088388], [-77.35252513374115, 34.552609784702184], [-77.35259434983837, 34.552628792618336], [-77.35268020890959, 34.552641179097755], [-77.35269217371533, 34.55264332140065], [-77.3527000385794, 34.55264094619799], [-77.35279090752795, 34.55261822905349], [-77.35285506928338, 34.55260207337755], [-77.35298864090136, 34.55255646287153], [-77.35314847232692, 34.55249645870269], [-77.35326023181855, 34.55245844603979], [-77.35338447175909, 34.55241702937129], [-77.35345120615054, 34.552395383812424], [-77.35369782986595, 34.55231858323307], [-77.3537800682541, 34.55228774462376], [-77.35390770210492, 34.552209902641394], [-77.3539791849332, 34.55216563562834], [-77.35398757522732, 34.5521596118135], [-77.35417850656019, 34.552034569955396], [-77.35420611831658, 34.55201757154778], [-77.35426460983346, 34.55199217792724], [-77.35446148855118, 34.551893449983936], [-77.35473336531037, 34.551679879555415], [-77.35486236114849, 34.55159174917766], [-77.35497590878543, 34.55150498380591], [-77.35504630427374, 34.55143287403926], [-77.35516301930629, 34.55137320876488], [-77.35517538836112, 34.55136689188899], [-77.35532096653586, 34.55131813927718], [-77.35537313249465, 34.55130443906812], [-77.35548237675233, 34.551259754802416], [-77.35576831282852, 34.551192920806045], [-77.35587081626772, 34.55108892463629], [-77.35592703310748, 34.55101840171629], [-77.35601955772053, 34.55091292186914], [-77.35605013079794, 34.55087826929481], [-77.35617119546069, 34.550745381418906], [-77.3561769286626, 34.550741117989624], [-77.35618622042237, 34.550736266259634], [-77.35657057032111, 34.55045069350762], [-77.35658491516547, 34.55044287898101], [-77.35659337222138, 34.55043282821786], [-77.35663758660432, 34.55038560398028], [-77.35691280962124, 34.550105671234135], [-77.35697181969152, 34.550074082291864], [-77.35718832886798, 34.54996884537678], [-77.35736906932841, 34.549871885504764], [-77.35740647721823, 34.54984912085985], [-77.35743937615543, 34.54982138305182], [-77.35760403926666, 34.54969687251837], [-77.35763966634097, 34.54967013478643], [-77.35776809502046, 34.54959206773163], [-77.35782634177444, 34.54955666156084], [-77.35785939778955, 34.54951608695029], [-77.35796929276138, 34.54937855273281], [-77.35796971593511, 34.54937804856996], [-77.35796986205992, 34.54937777085201], [-77.35797044446873, 34.549376991125236], [-77.35807293794781, 34.5492405182264], [-77.35810765595456, 34.549196791662126], [-77.35817166904211, 34.549113533551974], [-77.35817712937767, 34.54910640827966], [-77.35818124271026, 34.549102512859406], [-77.35825201016277, 34.54901865573609], [-77.35832162686454, 34.54895988824201], [-77.3584186950574, 34.54885138481545], [-77.3585133189526, 34.548724793921764], [-77.35854788418892, 34.5486824875387], [-77.35855519214618, 34.54866942637375], [-77.35857534924683, 34.54863016258173], [-77.3586693739995, 34.548476610707276], [-77.3586926049247, 34.54841682623548], [-77.35871900531734, 34.54832776136201], [-77.35873877309469, 34.54826200653105], [-77.35880313974523, 34.5481560868927], [-77.35876475225965, 34.548051764270454], [-77.35876633263747, 34.548038974930236], [-77.35876509856739, 34.54802644526185], [-77.35877728728995, 34.547914985751504], [-77.35878806990459, 34.54779274076591], [-77.35878822458541, 34.54778932735864], [-77.35882655555778, 34.54766306785723], [-77.3588638181032, 34.54757773729999], [-77.35887884457674, 34.5475331271072], [-77.35888909098621, 34.54747491321231], [-77.35891106561688, 34.54740607576291], [-77.35888464585098, 34.54735758843232], [-77.3588809621366, 34.547349204422844], [-77.35886092504109, 34.547327960037336], [-77.35882973941757, 34.54729537395734], [-77.35882148618617, 34.54728469721676], [-77.35865408850069, 34.547198253620465], [-77.35864005440442, 34.54718062255485], [-77.35860906288536, 34.547157807623464], [-77.35846623540947, 34.547070786488774], [-77.3582194452794, 34.547027457279746], [-77.35820693888185, 34.5470256378509], [-77.35817545290121, 34.54702234639675], [-77.35793902336212, 34.54698701092543]], [[-77.36451740451118, 34.54586421316374], [-77.36444678520594, 34.54582339183401], [-77.36425299861827, 34.54565747189194], [-77.36453829839304, 34.54539661760938], [-77.36462261595936, 34.54560423304196], [-77.36453977982386, 34.54585356158548], [-77.36453771356125, 34.545861287866465], [-77.36453585449412, 34.545866723800565], [-77.36452728257915, 34.54587918342963], [-77.36452016974275, 34.54586840392076]], [[-77.34534271748146, 34.5486245144373], [-77.34523134507324, 34.54842239130991], [-77.34484505592059, 34.54869611344342], [-77.34484561637905, 34.54870438048766], [-77.34502548707052, 34.54903453776105], [-77.34515282849054, 34.54914147279381], [-77.34531876661465, 34.54929535401676], [-77.34537538105938, 34.549599093223264], [-77.34537032878711, 34.54995331432097], [-77.34533423859125, 34.55009465167304], [-77.34534608287133, 34.55024008842495], [-77.34531960467088, 34.55042540974182], [-77.34486342692792, 34.5506052378277], [-77.3447878373924, 34.55062926486904], [-77.34471293106894, 34.55062693593691], [-77.3446907882774, 34.55067686280174], [-77.3446619443845, 34.55075766563075], [-77.34410943174176, 34.55125013646793], [-77.34424160350386, 34.55139111647343], [-77.34430502617718, 34.551466817810905], [-77.3443331192513, 34.55148912779725], [-77.34437511740778, 34.551500526156936], [-77.34454938911148, 34.551676482685046], [-77.34463564890169, 34.551742953683664], [-77.34476014631677, 34.55182999457875], [-77.34485813332029, 34.55187688512489], [-77.34499494383401, 34.55195383619276], [-77.34514977318622, 34.55196017688598], [-77.34533237294355, 34.55192196651646], [-77.34554297304267, 34.551935413369684], [-77.3456824180562, 34.551916439390105], [-77.34575752224697, 34.551992311054676], [-77.34593292401972, 34.55205159886485], [-77.34607548336808, 34.55210177241734], [-77.34618700513303, 34.55217533952623], [-77.34622382028704, 34.55223090092302], [-77.34632077715351, 34.552258868135624], [-77.34645414762376, 34.552297999846026], [-77.34671313467399, 34.5522706994138], [-77.34685244769305, 34.55232441678872], [-77.34699470410642, 34.55237174777295], [-77.34710293132622, 34.552393711309605], [-77.34722570502308, 34.55243833681698], [-77.34744628926839, 34.55248379310318], [-77.34747869363846, 34.55248829048584], [-77.34749323603401, 34.552494707196715], [-77.34756937332604, 34.55251383199596], [-77.34788387217124, 34.55258134502913], [-77.34797566957606, 34.552595006495885], [-77.34811172197958, 34.55263286524723], [-77.34827422697524, 34.55268023538301], [-77.34839584094077, 34.55275983001586], [-77.34846780441367, 34.55279920645295], [-77.34849599517216, 34.55280473446229], [-77.34861253900368, 34.55277308391786], [-77.34866532448831, 34.552746890448645], [-77.34875892864055, 34.55272648392146], [-77.34886291788993, 34.5526913761967], [-77.34891731598273, 34.55267301081396], [-77.34896184430022, 34.552657977560315], [-77.34903755766139, 34.552622052460734], [-77.34905389287717, 34.55261527988166], [-77.3490610835413, 34.55261097975774], [-77.34911934547839, 34.55254907805659], [-77.3491276127634, 34.55252696135485], [-77.34913058475384, 34.55250563540346], [-77.34913081353162, 34.552486222620225], [-77.34913130222878, 34.55244475306644], [-77.34912981250386, 34.552403839610704], [-77.34912836780059, 34.552364164161304], [-77.34912029518526, 34.55227501604808], [-77.34912009850588, 34.55224294374546], [-77.34912735535465, 34.55220638127615], [-77.34912419969513, 34.55218114841844], [-77.34913295355675, 34.55215698376442], [-77.34913039708708, 34.55214374047999], [-77.34910678018844, 34.55212244990493], [-77.34909826438592, 34.552107712200254], [-77.34907321351004, 34.5520838178358], [-77.34901240625271, 34.55205199241822], [-77.34896389647201, 34.55202060034149], [-77.34894454122937, 34.551941105220656], [-77.34890251499898, 34.551893777177455], [-77.34888180807482, 34.551870503187914], [-77.34879796160685, 34.55179965755287], [-77.34874998420979, 34.55176782250271], [-77.34868901525539, 34.55171751373753], [-77.34859995973912, 34.55163997176096], [-77.34853347568443, 34.55159289569527], [-77.34849616950797, 34.55156685401158], [-77.34844754263742, 34.55151393147814], [-77.34841833166497, 34.55148705412313], [-77.34835627736226, 34.55140645194297], [-77.34833271908386, 34.55137696309337], [-77.3483251077218, 34.55136520728316], [-77.34830502865606, 34.55134216107184], [-77.34822212957445, 34.551270466014216], [-77.3481815696244, 34.55123244954156], [-77.34814312737564, 34.5511785319417], [-77.34813954438317, 34.551159939286244], [-77.34812908535827, 34.55115148024247], [-77.34811331061908, 34.551142584384564], [-77.3480221803853, 34.551111684531854], [-77.34791987909716, 34.551017468445224], [-77.34786870018615, 34.55098644909579], [-77.34786270543091, 34.55095495381048], [-77.34784513749102, 34.55090932390448], [-77.34778194806073, 34.55084416387915], [-77.3477651657106, 34.55082342600681], [-77.34772907985297, 34.55077806258498], [-77.34766895931747, 34.55073801168217], [-77.34760944322385, 34.550699887266674], [-77.34758083815746, 34.550628281243505], [-77.34753737383463, 34.55057808015327], [-77.34750001825785, 34.55054132120756], [-77.34746152378833, 34.55052303908977], [-77.34744089576441, 34.55046421288742], [-77.34738414281031, 34.55038763551671], [-77.34723832623934, 34.550310334123864], [-77.34721644908711, 34.55027315431738], [-77.34715515296006, 34.550126521633246], [-77.34711489058239, 34.55010863737756], [-77.34709534019663, 34.550086087750195], [-77.34704262666241, 34.55004263370119], [-77.34696197654783, 34.549990494159346], [-77.3469532103832, 34.549989607018695], [-77.34691315834473, 34.549958997599546], [-77.34679714585718, 34.549884173236876], [-77.3467809279276, 34.54987859807578], [-77.3467685083778, 34.54986715738587], [-77.34654022976763, 34.54981935002179], [-77.34637953853203, 34.54970880361072], [-77.34611544768157, 34.549658021774405], [-77.34582219745127, 34.54953480805703], [-77.3458688969668, 34.54936185041926], [-77.34590174879985, 34.54921838525158], [-77.34574065131571, 34.54905690141962], [-77.34569336956659, 34.54901194642357], [-77.34561300076439, 34.54889767585276], [-77.34533382088566, 34.54880126632004]], [[-77.33700990722754, 34.652484437799814], [-77.33733713453523, 34.652782584640505], [-77.33740172119809, 34.65285689111725], [-77.3376719128845, 34.652855247967025], [-77.3377185713465, 34.65287885944294], [-77.33790807784197, 34.65300261390727], [-77.33801309985323, 34.65319748635555], [-77.33784550564475, 34.65312647522555], [-77.33768706940494, 34.652930673733174], [-77.33745807344886, 34.65301298340334], [-77.3373788542638, 34.65299020611069], [-77.33734228216159, 34.65297454870702], [-77.33724696246396, 34.652943573209306], [-77.33693095079394, 34.65264072845383], [-77.33669583693472, 34.652777889776715], [-77.33642715591765, 34.65271784154227], [-77.33633021838855, 34.65268181856191], [-77.33611626509368, 34.65242760376598], [-77.3364150028513, 34.652213740155176], [-77.33652239806742, 34.65213947998117], [-77.3365747491335, 34.65217525869412], [-77.33658548676945, 34.65217653293856], [-77.33661046844603, 34.65218692012311]], [[-77.26024527264393, 34.59922501882597], [-77.26025801341935, 34.59926472875547], [-77.26022263125579, 34.59926976585357], [-77.26021214355293, 34.599267597074444], [-77.26010129831559, 34.59925240119767]], [[-77.31998239718527, 34.54454902254708], [-77.31984679210709, 34.54470071126036], [-77.31981920028089, 34.54471797777526], [-77.31979672493334, 34.54476686515165], [-77.31966638283339, 34.544891987435605], [-77.31965877504416, 34.54497253390748], [-77.31972593362389, 34.54500357995833], [-77.31979183410665, 34.54497619826835], [-77.31993560361241, 34.5450230966721], [-77.31998671244558, 34.545037115974246], [-77.31999401604422, 34.54504215112688], [-77.32000085445569, 34.54504579628227], [-77.32018092937889, 34.54512635954918], [-77.32021475828209, 34.545116520902155], [-77.32032273588888, 34.54512195923061], [-77.32026139285259, 34.54518175286539], [-77.32036029793561, 34.5452477597832], [-77.32044915537145, 34.545273190710404], [-77.32057195321138, 34.54519399897742], [-77.32071811423317, 34.545218471562265], [-77.3207346700355, 34.54530758986393], [-77.3209616237743, 34.54531961785333], [-77.32112213327477, 34.54539554249406], [-77.32132547648777, 34.54545151200019], [-77.32135137277206, 34.54544192317739], [-77.32143098887454, 34.545452360789454], [-77.32168249263643, 34.545454383895944], [-77.32174275760468, 34.54549418696813], [-77.32185403719161, 34.5454604775776], [-77.32203968846181, 34.545425561501595], [-77.32213792257751, 34.54538447673886], [-77.32247911679866, 34.54533455006282], [-77.32261851736877, 34.54533589758089], [-77.3229269902142, 34.545219026125984], [-77.32319576914809, 34.54512014172143], [-77.32336506372341, 34.544929653318604], [-77.32332930557985, 34.54469159143237], [-77.32331833649586, 34.54444674158145], [-77.3231918885122, 34.544312908641416], [-77.32294980700368, 34.54424086640723], [-77.32257933892517, 34.54429354696177], [-77.32216622275536, 34.54417173256654], [-77.32165099594775, 34.54436788812543], [-77.32137590005375, 34.54439128060336], [-77.32115080888455, 34.5444086586004], [-77.32058893700165, 34.544466780288005], [-77.32046768452778, 34.54444265849517]], [[-77.24771603907227, 34.591422360752794], [-77.24725428869749, 34.591574670991214], [-77.24713066745642, 34.591632546034326], [-77.24717245645687, 34.59173635278714], [-77.2471640028547, 34.59202856321639], [-77.2474268484256, 34.5920666350923], [-77.24755228123765, 34.59193403885949], [-77.24771075302043, 34.59192215466068], [-77.24772134973509, 34.5919147521392], [-77.24779672476433, 34.59182280456448], [-77.24788583857634, 34.59175834126281], [-77.24775781825628, 34.5916819511245], [-77.24775532672824, 34.591457308184545], [-77.24812935995519, 34.591511523899165], [-77.24815875709751, 34.59147786070853], [-77.248174257542, 34.59146667208879], [-77.24819369216117, 34.5913844143746], [-77.247825064529, 34.591413699434625]], [[-77.39057633218037, 34.62727914660396], [-77.39048443462836, 34.627544797085235], [-77.39043642092018, 34.62772388388118], [-77.3904242716199, 34.62783304203773], [-77.39028682175203, 34.62778606859356], [-77.39027033699485, 34.627747825846996], [-77.39024450501016, 34.62766534428086], [-77.3901678692389, 34.62733802881215], [-77.39016511358078, 34.62708562896736], [-77.39019296228088, 34.626909843161634], [-77.39021051170526, 34.62678439607684], [-77.39023165156395, 34.626479697965074], [-77.39023818101214, 34.62638559014816], [-77.39024652883717, 34.626265269295416], [-77.39023656659953, 34.62614935430267], [-77.39022944804678, 34.62605544739919], [-77.39021078986346, 34.62593541822976], [-77.39032474628961, 34.62588958829356], [-77.39043999846774, 34.625900974237524], [-77.39052186245337, 34.62590906167177], [-77.3906850866006, 34.625989763599904], [-77.39070120939544, 34.62600656693029], [-77.390718955332, 34.62615229701802], [-77.390759487148, 34.62635993283463], [-77.39075481946654, 34.62644293509752], [-77.3906156003767, 34.62684891692782], [-77.39057901169613, 34.62712816089288]], [[-77.39178404707917, 34.52097810302554], [-77.39149773890968, 34.52109611778967], [-77.39099223450833, 34.52128314324747], [-77.39034199952033, 34.52108593397875], [-77.39100524559849, 34.520705429460314], [-77.39118825489302, 34.52058665751492], [-77.39157576336774, 34.520554131187026], [-77.39178927400323, 34.52074592223638], [-77.3919418222913, 34.52075973071699], [-77.3920295479946, 34.52084242936636], [-77.39186770647053, 34.520917116317776]], [[-77.34127461697317, 34.75898356012593], [-77.34162907995403, 34.75878943524324], [-77.34171266200138, 34.75867980420297], [-77.34186676685655, 34.758587088295336], [-77.34203370747521, 34.758509573573036], [-77.3420501629286, 34.75850397591096], [-77.34219652935182, 34.75848311487847], [-77.34231079063147, 34.75850067287775], [-77.34246496946767, 34.758590117135356], [-77.3426359567032, 34.75864483240832], [-77.3429384774061, 34.75902216287659], [-77.34357823255996, 34.758601200531714], [-77.3436914272299, 34.758492764608164], [-77.34423635439207, 34.75809001203531], [-77.34430933505273, 34.757972248701606], [-77.34427966043486, 34.75784038445398], [-77.34442305639162, 34.75766492778148], [-77.34446195459242, 34.75757169355151], [-77.34459072350805, 34.757459773050236], [-77.3445928750986, 34.75755373716431], [-77.34459154378943, 34.75758394651021], [-77.34459295353861, 34.75779741475565], [-77.34458143724935, 34.75789414109612], [-77.34452705720923, 34.75797913851929], [-77.34446032163319, 34.75805929434487], [-77.34443914544107, 34.758087240562666], [-77.34439490096477, 34.758133565475525], [-77.34374185840329, 34.758645208902365], [-77.34368139101358, 34.758692583560034], [-77.3435511577149, 34.75915873917344], [-77.34339235398426, 34.759521770201424], [-77.34325016618419, 34.75958718813338], [-77.34311548975369, 34.759705864008424], [-77.34270955043242, 34.75980979368504], [-77.3425858509423, 34.75986587102758], [-77.34218265368415, 34.75991814364608], [-77.3420799055669, 34.75991490959815], [-77.34202118331415, 34.7599058480405], [-77.34156430926927, 34.75962765200377], [-77.3413373849438, 34.75964324697824], [-77.34095427952042, 34.759665281287226], [-77.34076052850367, 34.75969259111414], [-77.34066344655875, 34.759635305209244], [-77.34060683261555, 34.75956250397992], [-77.34049554665211, 34.75950215354656], [-77.34053927639022, 34.7594197875479], [-77.34070487260371, 34.75930537342903], [-77.34074659650179, 34.759284290210374], [-77.34091118847296, 34.759182593438304], [-77.34109421886768, 34.75918385446816], [-77.34128962584052, 34.75912703404781]], [[-77.44106019187811, 34.730015173200094], [-77.44126694776674, 34.73007012062011], [-77.44164248379998, 34.7302185124739], [-77.44190199164163, 34.730486148423836], [-77.44183544528276, 34.730725719729335], [-77.44162054172568, 34.73116696341328], [-77.4411712925211, 34.731348893179266], [-77.44079045979585, 34.73130637399538], [-77.44067621096303, 34.731342343457385], [-77.440088542055, 34.73145465393226], [-77.4399637909579, 34.73145135902999], [-77.43935716937605, 34.731469443395724], [-77.4391338591011, 34.730960187407874], [-77.43894137020908, 34.73069067737427], [-77.4388936369979, 34.73061401536929], [-77.43882449224996, 34.730528891558336], [-77.43906916673207, 34.73024900352149], [-77.43916205133631, 34.73014173979551], [-77.43974661581723, 34.73012346103041], [-77.43998411128801, 34.729989250079974], [-77.4404252082124, 34.72997015278383], [-77.44043223479923, 34.72996967391792], [-77.44087905328428, 34.72995580979068]], [[-77.33359312501267, 34.577325840336414], [-77.33358440291714, 34.5773285027992], [-77.33353309271142, 34.57732648262439], [-77.33358810055823, 34.57731315105598], [-77.3335931366127, 34.57731177284028], [-77.33377579103663, 34.577291597179524]], [[-77.45029074672937, 34.69708135642372], [-77.45035145352341, 34.69681461196308], [-77.45038445188429, 34.696555094199695], [-77.45036549354661, 34.696112633959274], [-77.4503875431553, 34.69599716451173], [-77.45035721121238, 34.69591935547747], [-77.45031404567405, 34.6958021603549], [-77.45017717448347, 34.6958049544907], [-77.44971975067665, 34.69564115542318], [-77.44925334673401, 34.695790638626974], [-77.44902212956957, 34.695837537748105], [-77.44869402814003, 34.69596430915098], [-77.44855005986838, 34.69613665670952], [-77.4482563849094, 34.69679647713977], [-77.44839743855576, 34.69697868171011], [-77.44862633082998, 34.69720647868735], [-77.4489052895801, 34.6974184039901], [-77.44917828087057, 34.69751397822415], [-77.44945374045633, 34.69761313604987], [-77.4497691198319, 34.69768698089473], [-77.45005803713516, 34.69755904006853], [-77.45021193337442, 34.697356804365114]], [[-77.37892602411553, 34.730424460411925], [-77.37811354602131, 34.73051400021554], [-77.37876760522296, 34.730165297736264], [-77.37882136567781, 34.73016868929446], [-77.37899149053976, 34.73014822034237]], [[-77.39671015576972, 34.58895063857041], [-77.39663426587103, 34.588787923182295], [-77.39656971872488, 34.58869765260996], [-77.39653427302767, 34.58863321513477], [-77.39655193655466, 34.58854194658974], [-77.39663428030872, 34.588549470289614], [-77.3966879940188, 34.588553166622056], [-77.39683130870911, 34.58856498493853], [-77.39690613400968, 34.58857957156038], [-77.39699956817569, 34.588597088511925], [-77.39702833568549, 34.588607088724885], [-77.39709330073305, 34.58862256734966], [-77.39728733651916, 34.58867009150576], [-77.39736375499099, 34.5888749620509], [-77.39729382619367, 34.588948215388875], [-77.39707290556005, 34.58902813164153], [-77.39702830364223, 34.58918277154905], [-77.39689562813426, 34.58914860906301], [-77.39686649159249, 34.58900986261334]], [[-77.31019152535023, 34.54690447592888], [-77.31025507439301, 34.54676769004808], [-77.3103808503717, 34.54676133778714], [-77.31037304877087, 34.54682515397725], [-77.31057505577627, 34.54725638489431], [-77.31030833931067, 34.54757427937282], [-77.30983387545325, 34.54736280177081]], [[-77.450223251478, 34.62398353790865], [-77.44999489523477, 34.624383646047235], [-77.44992051448521, 34.624497026216304], [-77.44988159198799, 34.62458216487139], [-77.44959342000547, 34.624837672721156], [-77.44924107114086, 34.624878727974576], [-77.4490878174853, 34.62491147622195], [-77.4490152557936, 34.62487269393695], [-77.44893678891924, 34.62485156871854], [-77.4488762203068, 34.62475108761143], [-77.44848025889611, 34.62424322895567], [-77.44831266563926, 34.62390290498491], [-77.4482947205355, 34.62355761974297], [-77.44838152838172, 34.623339222076936], [-77.44851338187601, 34.62281376574919], [-77.44853334027029, 34.62277293604049], [-77.4485766978322, 34.622738704607116], [-77.44854140636457, 34.622708925381666], [-77.44867060701061, 34.62220156004386], [-77.44872739085305, 34.621957222117956], [-77.44875740328385, 34.62178475351908], [-77.4489793693273, 34.62188537113582], [-77.44915997492605, 34.62195270764252], [-77.44933434881432, 34.621971548968425], [-77.44978285359485, 34.622105567416135], [-77.4498893590304, 34.62207823349904], [-77.45020112001555, 34.62227550065202], [-77.45024571903673, 34.62245405281813], [-77.45047835020875, 34.62283399374088], [-77.45040783105449, 34.62295507185902], [-77.4503750880115, 34.62321025966956]], [[-77.4238375238954, 34.52267104792055], [-77.42361287673438, 34.522446301736466], [-77.42428788584644, 34.52232968982006], [-77.42432299906895, 34.522543876263065], [-77.42457806177438, 34.522592768919154], [-77.42457443763205, 34.52291361176198], [-77.42456140109626, 34.5229990978464], [-77.4245426988588, 34.523102595161234], [-77.42451375919327, 34.5233806624673], [-77.42419161844475, 34.523368700215855], [-77.42411804123162, 34.52318834993138], [-77.42410353447517, 34.52306529238673], [-77.42409382075567, 34.52295980593396], [-77.42392598343406, 34.522801505865445]], [[-77.45772263575891, 34.59749611405364], [-77.45828316176716, 34.59707597168746], [-77.45763178942734, 34.59696281212269], [-77.45760008096455, 34.5968338539217], [-77.4574933483371, 34.59656277501182], [-77.45739777149066, 34.59633459264956], [-77.45723942035295, 34.59608827925169], [-77.45720952605953, 34.59590521818612], [-77.45705717276343, 34.595836736357725], [-77.45705945995098, 34.59576339940251], [-77.45705069205458, 34.59571255253938], [-77.4570353689219, 34.59567795627482], [-77.45709451970473, 34.595595283168294], [-77.45713085216565, 34.59558575559893], [-77.45731466129833, 34.59552180259684], [-77.4573382873782, 34.5955257170946], [-77.45736330197917, 34.59551224538233], [-77.45776816640539, 34.595424337886], [-77.45784391421054, 34.5954526548471], [-77.45816005179883, 34.59540223850926], [-77.45833256001643, 34.595317584295394], [-77.45844575064817, 34.5952716129363], [-77.45863355479727, 34.59528030900715], [-77.45870055022084, 34.59529518623991], [-77.45879879298731, 34.59530681397864], [-77.45886367189757, 34.59533758971265], [-77.45893529921173, 34.59536846214517], [-77.45897340650406, 34.59540196957187], [-77.45901324589101, 34.595470173953586], [-77.45902407728687, 34.59557214609889], [-77.45897385702783, 34.59573994473392], [-77.45895627176044, 34.595759927481566], [-77.45891597352417, 34.59578762335638], [-77.45868770582261, 34.59597564753028], [-77.45867724967486, 34.59622500144883], [-77.45863724682263, 34.596430203367305], [-77.45848084586717, 34.59652264671101], [-77.45829634475609, 34.59706444535138], [-77.45829131647446, 34.59707364511327], [-77.45829189566881, 34.59707591328616], [-77.45833195240323, 34.59723483402564], [-77.4584535721537, 34.597751858398915], [-77.45846254519722, 34.5977633259457], [-77.4584593829536, 34.59777948928028], [-77.45837460223953, 34.59803391676286], [-77.45823641895917, 34.59805219638323], [-77.4580323671486, 34.59806033333462], [-77.45752609961325, 34.59803049416885], [-77.4575293876773, 34.598002505269946]], [[-77.30388550045892, 34.55355880883759], [-77.30375254465093, 34.553538324746256], [-77.30349431099677, 34.55349690973502], [-77.30313436004698, 34.5537102379933], [-77.30348945203974, 34.553703186516], [-77.30364721878026, 34.55378192335392], [-77.30369634231808, 34.55375940339455], [-77.30388437709135, 34.55360650851371], [-77.30388814669607, 34.553604378703945], [-77.30389483863055, 34.55360109928521], [-77.3039145484741, 34.55357985075134]], [[-77.31853593303356, 34.64306096281966], [-77.31844789457064, 34.64321620431871], [-77.31842713361837, 34.64325044529319], [-77.31840991555744, 34.64328922917733], [-77.31833592715594, 34.64345588898669], [-77.31826130678917, 34.64342927148726], [-77.31820633590272, 34.6436077539651], [-77.31808400305171, 34.64333390149879], [-77.3180863108693, 34.64300964550029], [-77.31808638211528, 34.642932175729406], [-77.31810329332933, 34.6429092715151], [-77.31832581979307, 34.64260788627027], [-77.31867711225847, 34.64283061799822], [-77.31852605619105, 34.64300912962548]], [[-77.41887764858949, 34.568654999857166], [-77.41883640489164, 34.56858017940246], [-77.41894387821073, 34.56857403691934], [-77.41902921359736, 34.568614931035775], [-77.41907140784468, 34.56863047358923], [-77.41903686007535, 34.56876721831997], [-77.41895882571714, 34.56876810053898], [-77.41889451545006, 34.56868270339831]], [[-77.33924918328418, 34.68327061496038], [-77.33910157347091, 34.68331986377135], [-77.33854087153335, 34.68348030728956], [-77.33823171792464, 34.683645045194], [-77.33814221343985, 34.68366389483208], [-77.33787736384966, 34.683703897211245], [-77.33785364979511, 34.68366598684528], [-77.33789755213476, 34.68363440335038], [-77.3381789369213, 34.68359823715269], [-77.33843304045566, 34.68334281291787], [-77.33859831186774, 34.6832825750646], [-77.33869938916013, 34.68323517951437], [-77.33917950241616, 34.683208820578194], [-77.33922276602009, 34.68319340539464], [-77.33926606899259, 34.683193292166024], [-77.33971151591808, 34.68304225182922], [-77.33986309128312, 34.68304958890981], [-77.34041219386742, 34.68307127248684], [-77.33978110458132, 34.68333183578362]], [[-77.31384836841606, 34.54729800153668], [-77.31379749151549, 34.54740568591946], [-77.3138439151912, 34.54748803384014], [-77.31385766063374, 34.547510550444656], [-77.31394596943048, 34.547447404031466], [-77.31400195400943, 34.547401450655215], [-77.31392369428745, 34.54738756213129]], [[-77.34753551997763, 34.6563325154468], [-77.34763976898265, 34.656250364300476], [-77.34770573948111, 34.65623973963922], [-77.34786985845741, 34.65624469583476], [-77.34800413283487, 34.65647001994047], [-77.3483256681576, 34.65648472765121], [-77.34832747744196, 34.65648568043072], [-77.34832851391715, 34.65648489467877], [-77.34833731559544, 34.65648526040604], [-77.34832917025217, 34.65648799613603], [-77.34832804495201, 34.65648850260315], [-77.3483251950187, 34.656491466084326], [-77.34803801208515, 34.65663850168169], [-77.34793974103951, 34.6567917262468], [-77.34786761198674, 34.65697175325523], [-77.34779945785859, 34.65704451234693], [-77.34770962720953, 34.65724414763442], [-77.34768326931348, 34.65726288145199], [-77.34762036332516, 34.657327634698014], [-77.34761369975399, 34.65732604242261], [-77.3475402922379, 34.6573480315777], [-77.34751822360484, 34.657336224760364], [-77.34747472874427, 34.65731411701252], [-77.34744811912242, 34.657287740141335], [-77.34736151785621, 34.657252240207654], [-77.34736155864715, 34.65725110749778], [-77.34734714539228, 34.65707264028928], [-77.34735226700973, 34.657042510301466], [-77.34737161625357, 34.65692868172145], [-77.34741025833041, 34.65670135416739], [-77.34744093420768, 34.65660833632934], [-77.34743814350577, 34.65652531654262], [-77.3474515464295, 34.656336092564274]], [[-77.25319625880431, 34.58649702993576], [-77.2525619583438, 34.58653027721955], [-77.25229524192949, 34.58685450716384], [-77.25225581960217, 34.58691528008683], [-77.2521818024038, 34.587210812151746], [-77.2521615897523, 34.58731532746022], [-77.25213296882829, 34.587463318228785], [-77.25186257042336, 34.58769773688512], [-77.25184527551701, 34.58776176455648], [-77.25175913142954, 34.58778810650306], [-77.25169858823595, 34.587790664012644], [-77.2511159628375, 34.587873323922274], [-77.25082276594827, 34.587855404117036], [-77.25021884092294, 34.588105023762616], [-77.25001802246746, 34.58821133876317], [-77.24975108885295, 34.58885567389188], [-77.2496483484315, 34.589002783791514], [-77.24985010892769, 34.58937663534718], [-77.24979083685497, 34.58957558465549], [-77.24991083328666, 34.58965738924004], [-77.25012586635388, 34.58962192464655], [-77.25029642757146, 34.58972842062058], [-77.25055720584419, 34.589545710188325], [-77.25071320310003, 34.589487035930674], [-77.25087166858302, 34.58935462956287], [-77.25089590101234, 34.589336710779165], [-77.25090214645647, 34.58932643894065], [-77.25093449035339, 34.58930057000319], [-77.2510773803649, 34.5891536476776], [-77.25111033408565, 34.58911792478756], [-77.25116998434582, 34.58905924127153], [-77.25128343954079, 34.58889588408962], [-77.25142650861783, 34.58880687525736], [-77.25148211669398, 34.58875867899745], [-77.25155875600205, 34.58868189226164], [-77.25158218613088, 34.588616690098014], [-77.25176205125265, 34.58849823981934], [-77.25179041803294, 34.588473252051706], [-77.25181621391908, 34.58844989104595], [-77.25195841426341, 34.588242018638326], [-77.25210846268861, 34.58815677007652], [-77.25210998107436, 34.588100184877916], [-77.25217009784359, 34.588108391942676], [-77.25224280562402, 34.58802874025831], [-77.25228468588138, 34.58792692606547], [-77.25241870939985, 34.58785690886585], [-77.25228073385334, 34.58779605434197], [-77.25236307518517, 34.58766799595246], [-77.25255596763834, 34.58776235985927], [-77.25270173967846, 34.58759353246303], [-77.25291219641427, 34.58749912103971], [-77.2529372014132, 34.58747907414883], [-77.25303757048584, 34.58738430296833], [-77.25310690981648, 34.587343660980295], [-77.2531411466518, 34.58731086152426], [-77.25313655427274, 34.58727426054374], [-77.25327475746774, 34.58717491314275], [-77.2532803151358, 34.58716924821533], [-77.25328168537763, 34.58716785152075], [-77.25328395237389, 34.58716554074955], [-77.25309364462973, 34.58691737358908], [-77.25355229703, 34.58669766131641]], [[-77.33986965833499, 34.68509375005208], [-77.34049709978999, 34.68498813222304], [-77.34052033898247, 34.68498723015496], [-77.34059606985404, 34.684995548244686], [-77.34047467902842, 34.68506531856631], [-77.33987120906563, 34.68509896490256], [-77.33986582712734, 34.685096697987994], [-77.33986217302834, 34.68509095183962]], [[-77.34788294075821, 34.73687185949861], [-77.34808174854008, 34.737059411421264], [-77.34811038495174, 34.7370886949098], [-77.34775102514757, 34.73730750209029], [-77.34764768378423, 34.737152181298306], [-77.34760394577505, 34.73708644355753], [-77.3475426632137, 34.736993942313035], [-77.3475048000158, 34.73692809635742], [-77.34744206950532, 34.736816762890705], [-77.34743645749487, 34.73680680270354], [-77.34744839092988, 34.73681190089668], [-77.34760595162493, 34.73677610438426], [-77.34765749954596, 34.736785300332684], [-77.34772072368217, 34.73679953352868], [-77.34774283605421, 34.73682031720029], [-77.34785798416438, 34.736861149477804], [-77.34787794597574, 34.73687063829847]], [[-77.34377798312724, 34.62421655087687], [-77.34376169717319, 34.62421569237075], [-77.34374955260624, 34.624215052147136], [-77.34319635881295, 34.62434067535567], [-77.34316064273173, 34.624410208186475], [-77.34306182000654, 34.62442887583626], [-77.34284798004438, 34.62444707226561], [-77.34265796168741, 34.62450516433657], [-77.34256599288004, 34.62463661456729], [-77.34248399621362, 34.62467633799122], [-77.34232957882935, 34.62473083104696], [-77.34225983626565, 34.62470586497844], [-77.34203041359882, 34.62443524514336], [-77.3421444818041, 34.62413170921138], [-77.34217465549352, 34.62405385085269], [-77.34220026392683, 34.62398992784208], [-77.3422913376004, 34.623658430310556], [-77.34232301604769, 34.623551076461354], [-77.34233781654137, 34.62350091974603], [-77.34246523300683, 34.62353155052818], [-77.34287046071665, 34.62365969149122], [-77.34303017055004, 34.623760838018676], [-77.34354468318725, 34.62399869732324], [-77.34379783083583, 34.62411944015844], [-77.34391712279228, 34.624176200833816]], [[-77.40589343529938, 34.67201362922071], [-77.40566251300599, 34.67184475851472], [-77.40555398031037, 34.67176538935621], [-77.40553032379708, 34.671748089502316], [-77.40541960721653, 34.67160358612364], [-77.4054206595368, 34.67159783979834], [-77.40546844865342, 34.671408633364415], [-77.40548342757684, 34.671348487654015], [-77.40547857604676, 34.67134466024339], [-77.40548660554732, 34.67134593924675], [-77.40548767107013, 34.67134671738812], [-77.40549058651392, 34.67134886436941], [-77.40568822934671, 34.67148621702813], [-77.4057467186753, 34.67155400135218], [-77.40583849937606, 34.67164669550057]], [[-77.34155427936733, 34.550212505113414], [-77.34156894948671, 34.55014666936426], [-77.34153963482316, 34.55007606302368], [-77.34138932883982, 34.54968286847386], [-77.3410575767963, 34.54962288871561], [-77.34088601380765, 34.5495729460697], [-77.3406526229611, 34.549644329731635], [-77.34040619827587, 34.54982427588833], [-77.34021551699561, 34.54992837218512], [-77.34013079669414, 34.55010870508612], [-77.3401092074163, 34.550125026342855], [-77.3400847996859, 34.55035877248727], [-77.34008771000977, 34.55035972019329], [-77.34028412862834, 34.55044932583824], [-77.34028661118714, 34.55045352186104], [-77.34047248025563, 34.55047779621436], [-77.34053341036444, 34.5505020912973], [-77.34061301426838, 34.55052898463282], [-77.34066631438553, 34.550584995413274], [-77.34075899756851, 34.550572780702744], [-77.34086302524764, 34.55056773009286], [-77.34113487702447, 34.55052977679893], [-77.34125623212341, 34.55054248453951], [-77.34148376006445, 34.55054566109069]], [[-77.33839452788878, 34.54913432629579], [-77.33835979784644, 34.54925029164063], [-77.33826261035111, 34.549398115494135], [-77.33853013015727, 34.54958020579224], [-77.33855835474367, 34.54958276485474], [-77.33884287746378, 34.549508645847894], [-77.33892811728401, 34.549348172716435], [-77.33894799265799, 34.54931141039115], [-77.33894763869199, 34.54928828940396], [-77.33865392553804, 34.549097021207544], [-77.33865304162667, 34.549028466636074], [-77.3385429255936, 34.549027187070415]], [[-77.39527210907929, 34.512640136811385], [-77.39536996099079, 34.51252563101729], [-77.39533890972866, 34.51239154015988], [-77.39511790498011, 34.512342400941215], [-77.39502631762107, 34.51214546569982], [-77.39457681189204, 34.51230196031428], [-77.39447942670496, 34.512559792329455], [-77.39488007789183, 34.51259634063187], [-77.39505806279338, 34.51260431339888], [-77.3951101113231, 34.51268915134271]], [[-77.2697157221555, 34.578798315668294], [-77.26974428673428, 34.57878081815967], [-77.26974941588499, 34.57880096437133], [-77.26972721800823, 34.57881456784505]], [[-77.33844770538465, 34.76229541018985], [-77.338387009729, 34.76231392795209], [-77.33834452198573, 34.762338345095216], [-77.33804399860679, 34.76246339296788], [-77.3378790543247, 34.76237337037248], [-77.33809809499365, 34.76227731716344], [-77.33837705462011, 34.76229175404349], [-77.33839319914917, 34.762292637834086]], [[-77.3992688573023, 34.59404947356384], [-77.39926267635263, 34.59418362604322], [-77.3992312781768, 34.594361894453726], [-77.39922883474928, 34.59443671288149], [-77.39901916020044, 34.59464333175544], [-77.39902170847893, 34.594668025353734], [-77.39899844626328, 34.59468493011891], [-77.39898412166696, 34.59464838674305], [-77.3989728660668, 34.59462244958607], [-77.39885459368949, 34.59439749008614], [-77.39880141445472, 34.59429625298902], [-77.39877947390387, 34.594253337582444], [-77.39872306702702, 34.59413360262561], [-77.3986069810395, 34.59385644491677], [-77.39861028442202, 34.593853172821], [-77.39899847484583, 34.593672066265505], [-77.39913806400907, 34.59362664218201], [-77.39919551770568, 34.59360794605562], [-77.39939149134767, 34.59374046799204], [-77.39939135775818, 34.5937417777051]], [[-77.21144058576836, 34.62160881416197], [-77.21131766849545, 34.62180174907913], [-77.21129910082065, 34.62181171696522], [-77.21126290121482, 34.62199109787063], [-77.21125455722529, 34.62203244550872], [-77.21124284940714, 34.622090461814366], [-77.21122281126327, 34.62218975648721], [-77.21132334082503, 34.62216208385598], [-77.2113562065029, 34.62213988335003], [-77.21141479624009, 34.62204510961348], [-77.21152789526951, 34.62201530036432], [-77.21157959808832, 34.62196452723005], [-77.21152756336653, 34.62193617963086], [-77.2116600700009, 34.62189132025162], [-77.21170625950037, 34.62184521302207], [-77.21171862152414, 34.62183343692602], [-77.21174196295377, 34.62181198699633], [-77.21181202144572, 34.62160513414955], [-77.2119537155425, 34.62154914599097], [-77.2118259519564, 34.62156400296068], [-77.21160972401933, 34.621589146418536]], [[-77.40302106344609, 34.50990372811366], [-77.40239152953066, 34.51004290232215], [-77.40301000316364, 34.51039786949806], [-77.40307280303807, 34.509944523054926]], [[-77.25895711809477, 34.58498828937684], [-77.25894939439294, 34.58502159135924], [-77.2589157080182, 34.58505666239032], [-77.25895357547805, 34.58511516626842], [-77.25926804524039, 34.58504666546602], [-77.2590523546049, 34.58491992333676]], [[-77.35006507663662, 34.6903075740904], [-77.35006610028216, 34.69025504985718], [-77.35008744047285, 34.69009527275385], [-77.35002095633077, 34.69026845941146], [-77.3500214765716, 34.69028939072959]], [[-77.43667488184619, 34.73409189406604], [-77.43695111757614, 34.73400694651088], [-77.43691889634114, 34.73377626811715], [-77.43698383108776, 34.73364287523175], [-77.43670362379179, 34.73360266242928], [-77.43645509918449, 34.73361420245468], [-77.43626244272184, 34.73362967918174], [-77.43620418534564, 34.73396815542386], [-77.43659554879677, 34.734173817646536]], [[-77.39042734923135, 34.658833930933156], [-77.39066398767169, 34.65862861765982], [-77.39075338334321, 34.658631364911386], [-77.39111034063527, 34.65858320963821], [-77.39119751775647, 34.658607658140994], [-77.3914232779049, 34.658662800742235], [-77.39154193500516, 34.658699521523346], [-77.39191647592072, 34.65881542967465], [-77.39201522908152, 34.65885392951019], [-77.3921660486625, 34.65910477109677], [-77.39214676195634, 34.65911910599137], [-77.39188275410709, 34.659315331045946], [-77.39165482161982, 34.65937664833956], [-77.39137245160826, 34.65938176437718], [-77.39133265926964, 34.65938294910235], [-77.39131550478336, 34.65938071269931], [-77.39101934116542, 34.6593587249952], [-77.3907316394048, 34.659336538964865], [-77.39043972264952, 34.65929428135564], [-77.3902657920483, 34.65930112978837], [-77.39014649047243, 34.65927387233379], [-77.38997268645159, 34.659312670421], [-77.3898081397829, 34.65940916333646], [-77.38967847907574, 34.65935929841058], [-77.38971498226945, 34.6592368739971], [-77.38975547065952, 34.65911514862448], [-77.38978037062324, 34.65880585258381], [-77.38978105667623, 34.65880490689351], [-77.39004771210932, 34.658720804499424], [-77.39012473983344, 34.65869952526613]], [[-77.45463995327307, 34.677434676755894], [-77.45481818572284, 34.677618281536475], [-77.45485672329923, 34.677814476490994], [-77.45504948419124, 34.67784871729819], [-77.45509032162269, 34.677932524121104], [-77.45509904425971, 34.67801677496493], [-77.45509653497464, 34.67802525580293], [-77.45499581119059, 34.67814409599374], [-77.45499483044354, 34.67814545183441], [-77.45498992214242, 34.678145774604225], [-77.4548164362877, 34.67813348999776], [-77.45470958666667, 34.678064601540314], [-77.45425217788664, 34.6779867942518], [-77.45422972429694, 34.67793595208743], [-77.4541107677907, 34.67737101591703], [-77.45447491760314, 34.67720856359675]], [[-77.47357343901292, 34.48585602192516], [-77.4735368948363, 34.485851716266836], [-77.47350217379613, 34.48589327319438], [-77.47357665846458, 34.485871028980974]], [[-77.35771259328878, 34.61237185960612], [-77.35780677965606, 34.6123988506629], [-77.35784644027694, 34.612463416633645], [-77.35782163563637, 34.612663116084136], [-77.35782818164009, 34.61270153676893], [-77.35777415404657, 34.6127210567408], [-77.35760951552543, 34.612740101872014], [-77.35744559448374, 34.61269767065992], [-77.35743344385563, 34.612332982293466], [-77.35760970497726, 34.61236988248373]], [[-77.22126028953356, 34.61347713952246], [-77.22119627067835, 34.61362618946134], [-77.22123443690238, 34.61381629602835], [-77.22138301006466, 34.61368750135432], [-77.22149351284696, 34.61372112016444], [-77.2215848605696, 34.61365687309976], [-77.2216193387678, 34.61356900709866], [-77.22169763574627, 34.613497245066995], [-77.22156913708312, 34.6134199501725], [-77.22179697798211, 34.61327641187777], [-77.22120692930334, 34.61320207275996]], [[-77.4436210274676, 34.73499989533052], [-77.4435115329594, 34.7350031278025], [-77.4434677754386, 34.7349899122675], [-77.44339753108164, 34.73498444063213], [-77.44316735036054, 34.73492025496774], [-77.44302593466529, 34.7349576311196], [-77.44296531471178, 34.73494158752101], [-77.44298197585525, 34.734885835812356], [-77.44309314306975, 34.734815472917184], [-77.44320323611959, 34.73479621364083], [-77.44344427188949, 34.73489327562779], [-77.4434942982148, 34.734898233466375], [-77.44382290377628, 34.73476407306702], [-77.4438539350623, 34.734763215781186], [-77.44393907362803, 34.73475846420173], [-77.44401671149635, 34.73475461388415], [-77.44404503796142, 34.73475307106964], [-77.44412473400295, 34.73475660468206], [-77.44417567971671, 34.73475917548937], [-77.44419700490133, 34.73478185283835], [-77.44421039212784, 34.734868454713634], [-77.44421310712244, 34.73492723254704], [-77.4441137267262, 34.734973328756354], [-77.44396062617626, 34.73498900216301], [-77.4439162933146, 34.7349911783], [-77.4438093990976, 34.73491716142695]], [[-77.46163955273664, 34.59571859048435], [-77.4616816456763, 34.59578440378288], [-77.46189244321509, 34.59604615883472], [-77.46193300390664, 34.59627413635812], [-77.46193299239033, 34.59649170647346], [-77.4617466515954, 34.596826298828894], [-77.46168895200293, 34.597025695250174], [-77.46154979263625, 34.59725174098285], [-77.46150873207502, 34.59731843854753], [-77.4613752232695, 34.59753530445243], [-77.46114382648436, 34.59769670401773], [-77.46109720951112, 34.59773513150482], [-77.46107671961596, 34.59774055590814], [-77.46071758306456, 34.59776082679268], [-77.46055763700139, 34.597684300312636], [-77.46037187915981, 34.59758783368781], [-77.46048821278531, 34.597430815425454], [-77.46069736400061, 34.597328314530536], [-77.46071911591886, 34.59731426415148], [-77.46073109025609, 34.59730994959588], [-77.46076404605498, 34.59724675094578], [-77.46084215261533, 34.59708438351679], [-77.46090501561086, 34.59703339775424], [-77.4612166192006, 34.596860446749446], [-77.46117877634727, 34.59661906475485], [-77.46127526298133, 34.5964660108179], [-77.46138289500193, 34.59629925134683], [-77.46154855783071, 34.596144283042364], [-77.46157020864767, 34.59580341306888], [-77.46158821607371, 34.59575171664257], [-77.46159490361892, 34.59571386795126]], [[-77.39736971491408, 34.508197423039405], [-77.39717387316858, 34.508163910241926], [-77.39684328377696, 34.5083955937025], [-77.39682951468863, 34.50843130864056], [-77.39677133022539, 34.50861511413413], [-77.39659231496357, 34.508921493436134], [-77.3966793687376, 34.5093515403268], [-77.39669238687931, 34.50939671896234], [-77.3967413756912, 34.50939737540937], [-77.39675384587213, 34.50939364398939], [-77.39676300536067, 34.50939221979963], [-77.39681332444147, 34.50937926095537], [-77.39731581497685, 34.50916446400802], [-77.39754386128575, 34.50916269103634], [-77.39774959281377, 34.50911638886302], [-77.39811091806945, 34.50905455133264], [-77.3981621032382, 34.50880383788279], [-77.39805946100299, 34.50870969440922], [-77.39794750120134, 34.50848352724471], [-77.39768870238073, 34.50827354777333], [-77.39756523419686, 34.508210618739675]], [[-77.33957430120358, 34.64882623127924], [-77.33973483502366, 34.64878159783098], [-77.33980630115877, 34.64879439093763], [-77.33991386371044, 34.64896659801576], [-77.33975636610636, 34.64888873943381]], [[-77.37736277398136, 34.59606740982567], [-77.37771736576579, 34.59560430697607], [-77.37779190924955, 34.59566133831748], [-77.37813768085131, 34.59592741214725], [-77.37813680941157, 34.59598330155647], [-77.37795467244344, 34.59615086971144], [-77.37771714945674, 34.59637076575172]], [[-77.36825558601778, 34.60441393413866], [-77.36836513280608, 34.60427433854622], [-77.36844303168895, 34.60414517845015], [-77.36851228360165, 34.60398697920076], [-77.36876357433667, 34.60397656486144], [-77.36876651714105, 34.60409859645803], [-77.3688793180884, 34.604259661730005], [-77.36886882969485, 34.604319838822654], [-77.36879926175583, 34.60435738459557], [-77.36864971692638, 34.60443534768312], [-77.36851758211589, 34.604416660327814], [-77.36838052535639, 34.60457873647101], [-77.36828760525164, 34.60462669627036], [-77.36825549564625, 34.60464583832697], [-77.36818948165266, 34.60467734136492], [-77.3680756482963, 34.604622637701986], [-77.36817055626298, 34.60451742274876]], [[-77.38835817594382, 34.59396716082524], [-77.38847746327662, 34.59374476431803], [-77.38869227008205, 34.593649999900265], [-77.38875230769504, 34.59366389072195], [-77.3890789276918, 34.59360225817531], [-77.38894384281278, 34.593973611244], [-77.38882877782873, 34.59407265346704], [-77.38875224186258, 34.594098809228484], [-77.38868870371155, 34.59415423872663], [-77.38860811820732, 34.5941772756059], [-77.38855518425905, 34.5941924786505], [-77.38851511798569, 34.59420454696411], [-77.38837824749841, 34.59424577343436], [-77.38835814630687, 34.59415715825735], [-77.38824525324802, 34.59419595347665], [-77.38831368585096, 34.59406446875304]], [[-77.36914405535337, 34.593326938261995], [-77.36917947751724, 34.592717326141155], [-77.36966322697415, 34.59269311185793], [-77.36981693646105, 34.59331251511787]], [[-77.33364701924837, 34.65672665894942], [-77.33370222200861, 34.65673543657159], [-77.3339532092041, 34.65665697118726], [-77.33426322281638, 34.65670324053684], [-77.33428219874013, 34.65670076352392], [-77.33450433724808, 34.65629583734374], [-77.33435282429734, 34.656716613274625], [-77.33431659287558, 34.65675306427569], [-77.33429671488818, 34.65677301301673], [-77.33422874289974, 34.656841300793765], [-77.33403030650571, 34.65704070594161], [-77.33386674902945, 34.657000402694436], [-77.33371065726199, 34.657043407991736], [-77.33342818277245, 34.65684345974892], [-77.33323955967677, 34.65650318585225], [-77.33317770599021, 34.65645582732418], [-77.33324342929888, 34.65641849264382], [-77.33326662371242, 34.65642699099468], [-77.3332762720548, 34.65643052611393]], [[-77.39516751029225, 34.621522353379085], [-77.39516492232882, 34.62182977038448], [-77.39545001489822, 34.62182470086086], [-77.39549373348264, 34.62189988158248], [-77.39558198997274, 34.62202930244058], [-77.39561640083035, 34.62209447780157], [-77.39544999535643, 34.6222109215785], [-77.39530755075799, 34.62219788808386], [-77.3952092538042, 34.62220018275243], [-77.3950557848953, 34.62207182245153], [-77.39496307359194, 34.62207625341468], [-77.3947705941593, 34.62200415952488], [-77.39449074638597, 34.6218039336107], [-77.39426736693127, 34.62180577873669], [-77.39401026990264, 34.621836904740135], [-77.39381892191635, 34.621775222515254], [-77.39352650847003, 34.62175897974235], [-77.39358808236804, 34.62144305492909], [-77.39360539021831, 34.6213230354571], [-77.3935788821816, 34.62058526401209], [-77.3942674119143, 34.62111595959951], [-77.3943282045125, 34.6211533335651], [-77.39451866248227, 34.62119134699978], [-77.39459745048197, 34.621249093516134], [-77.3946616177561, 34.62123553961317], [-77.39475310330457, 34.6212560726714], [-77.39491037626824, 34.62129151456279], [-77.39505581988179, 34.62144148007954]], [[-77.24578278076389, 34.59294039844711], [-77.24580288550115, 34.59300729970878], [-77.24594952348212, 34.59321797588325], [-77.2459928560296, 34.59323402478977], [-77.24602457970026, 34.59320450546028], [-77.24608274184871, 34.59319970582185], [-77.24624084918707, 34.5931605101772], [-77.24629368430668, 34.593115205619085], [-77.24632764092168, 34.59307643322137], [-77.24620560604856, 34.592973711564035], [-77.24625130151693, 34.592748827629315], [-77.24626604625576, 34.592732099690494], [-77.2461030681313, 34.59261696800801], [-77.24601868763648, 34.59282469485365]], [[-77.41781769405837, 34.7550539637331], [-77.41844848004057, 34.75496196518006], [-77.4188057709404, 34.75539930170567], [-77.41823590775297, 34.755695788036206], [-77.41819579358986, 34.7557151039556], [-77.41815020356154, 34.75572926047061], [-77.41811891821868, 34.7557952030256], [-77.4176947201617, 34.756392373782184], [-77.41761449318481, 34.75666019131375], [-77.41766544637007, 34.756876995713036], [-77.41774766842258, 34.757226840767714], [-77.41775764913314, 34.75726930780108], [-77.41776099089647, 34.757283526728294], [-77.41775441731191, 34.75735790062859], [-77.41772967347923, 34.75753907146726], [-77.41767236897176, 34.75764112660453], [-77.41756123840894, 34.75767021944104], [-77.4175057482258, 34.75761312324658], [-77.41740429261043, 34.757459518105854], [-77.41739018061446, 34.757438122455746], [-77.41731591920593, 34.75726942444521], [-77.41724435642811, 34.75708991002006], [-77.41730583762056, 34.757026921721405], [-77.4172201588069, 34.75698815365204], [-77.41707191376597, 34.756470555301526], [-77.41693453579603, 34.75628899443754], [-77.41687799742571, 34.75595533228051], [-77.4168559489323, 34.7558359882093], [-77.41692924487265, 34.75539847354879], [-77.41686501393067, 34.7552800705953], [-77.41681845367927, 34.75496071601857], [-77.41709449144483, 34.755208017150096], [-77.41770168612645, 34.75507642735667], [-77.41777495740145, 34.755073013453064], [-77.4177958441453, 34.75506166980276]], [[-77.37443405923817, 34.55912799829096], [-77.37457679607175, 34.559011894397685], [-77.37466806041243, 34.55909427723158], [-77.37460338304014, 34.55913229747708], [-77.3745767342575, 34.55919036283055], [-77.37445532543106, 34.55933721445133], [-77.37439492167292, 34.55936231131413], [-77.37435868868437, 34.55937379443913], [-77.37430968751504, 34.55928270095508]], [[-77.30927092129679, 34.55380865258502], [-77.3089879976227, 34.5536401755908], [-77.30882626425168, 34.55387248740227], [-77.30897960959675, 34.55399727059322]], [[-77.34824501945467, 34.62564572497825], [-77.34852995062231, 34.625645016100535], [-77.34857430816024, 34.6256466479655], [-77.34881403126805, 34.625667008976144], [-77.3488907813688, 34.625847776803155], [-77.34896552791236, 34.62601491670608], [-77.3489830067708, 34.626306610100194], [-77.34894563625082, 34.62637283080474], [-77.34865692719676, 34.62627675356759], [-77.34846991227151, 34.626348588910744], [-77.34821054639175, 34.62611860909607], [-77.34809745889388, 34.6259379877181], [-77.34816168386573, 34.625640878632375]], [[-77.39776527670315, 34.592331740702456], [-77.3977111393392, 34.592171303889586], [-77.39781629753918, 34.59205216379485], [-77.3978627028321, 34.592212725698744], [-77.39821037069888, 34.59209724981403], [-77.39826257653041, 34.59214879434073], [-77.39835672827611, 34.59219145980779], [-77.39838711948791, 34.59220892982607], [-77.39840740392069, 34.59221442379865], [-77.39847106041897, 34.592281108750214], [-77.39848056282247, 34.59230705687214], [-77.39852442738682, 34.592379552888445], [-77.39853331883111, 34.59251394086988], [-77.39826354395144, 34.59257216806419], [-77.39821035265976, 34.59255942440351], [-77.39808649699586, 34.592521575863714], [-77.3979752633083, 34.59249977615107], [-77.3978162838736, 34.592363863327485]], [[-77.36350396883185, 34.77096106674482], [-77.3634827515635, 34.77104547904793], [-77.36344403698143, 34.77098601613355], [-77.36323738903046, 34.77091225550727], [-77.36315930713275, 34.770867551596], [-77.36314711685435, 34.770870880838324], [-77.3630404719124, 34.7707077616484], [-77.36303077065848, 34.77068057681109], [-77.36318303703538, 34.770613622708616], [-77.36318944902887, 34.77056573596396], [-77.36336117257027, 34.77012800043979], [-77.3633694226048, 34.77011962824605], [-77.36342813272957, 34.76994191528115], [-77.36344884191014, 34.770147422073336], [-77.3635402262075, 34.77049971614302], [-77.36353761263709, 34.770737710758176]], [[-77.34477319596431, 34.688813335569584], [-77.34477349892603, 34.688809390246455], [-77.34477314053046, 34.6888087531358], [-77.34478201766699, 34.688782960926936], [-77.34477885922313, 34.68880796830061], [-77.34477964866508, 34.68881304523873]], [[-77.37850403826707, 34.527330125930334], [-77.37845124351827, 34.527452774402924], [-77.3785014054838, 34.52755898456126], [-77.37896814509308, 34.527555894979876], [-77.37880990829446, 34.527325374930925]], [[-77.45410407548151, 34.676815439082496], [-77.45419574672023, 34.67689508708605], [-77.45423681423654, 34.67701282981689], [-77.4544402880624, 34.67717651086186], [-77.45404245330855, 34.67725032715392], [-77.45411486139409, 34.67706276235128], [-77.45408461023496, 34.67692676497384]], [[-77.42518163147616, 34.62593776402734], [-77.42494522889967, 34.625950342271835], [-77.42467017101782, 34.625990178817304], [-77.42442513615309, 34.62610517039636], [-77.42420418977888, 34.626208857338185], [-77.42404711460887, 34.626282569806804], [-77.42379617564721, 34.6264402618493], [-77.42374982295732, 34.62647000444082], [-77.42368169105748, 34.62646437861633], [-77.42353036539518, 34.62655425460686], [-77.42327772259254, 34.62666632764795], [-77.42321836406383, 34.62664314373421], [-77.42325391206779, 34.62657927798518], [-77.42337719718388, 34.62635778131357], [-77.42346260802834, 34.62620432901383], [-77.42363148526668, 34.62603737587546], [-77.4237905797354, 34.62599008454589], [-77.42387043117427, 34.625949807465744], [-77.42391195572718, 34.625925518660075], [-77.42409078523258, 34.625794271252104], [-77.42433541135773, 34.62558643186024], [-77.42445218835138, 34.6254951719413], [-77.42451788043306, 34.62543344163941], [-77.42464004589317, 34.625251202021516], [-77.42474261852463, 34.625101182175314], [-77.42478243070843, 34.6249913129587], [-77.42482610127404, 34.624638047498436], [-77.4253300062108, 34.624566149918955], [-77.42533199208059, 34.624565303711584], [-77.42533450686044, 34.624565113073125], [-77.42588355601048, 34.62465952201316], [-77.426026629518, 34.6246290030885], [-77.42638713403015, 34.624578322431475], [-77.42647185551445, 34.6245420086131], [-77.42662411321228, 34.62448358616359], [-77.42674691256443, 34.62453010655528], [-77.42666485105967, 34.62463250227742], [-77.42661837774895, 34.62470481916128], [-77.42652148556651, 34.62477895510708], [-77.42645919100568, 34.62484172700016], [-77.42629742884166, 34.62490219946996], [-77.426124026298, 34.624967023226645], [-77.4259667283768, 34.624963565780675], [-77.42591239566718, 34.62507714605667], [-77.42584666280493, 34.62515584830447], [-77.42577346833266, 34.62533824478108], [-77.42552533458633, 34.625616633609766], [-77.4257116118754, 34.62592797512666], [-77.42571052793198, 34.625933101068334], [-77.42571096009559, 34.6259358286542], [-77.4257084798515, 34.62594160175971], [-77.42570261910505, 34.62593896319422], [-77.42569271019183, 34.62593817772107]], [[-77.36983589373585, 34.594393143536394], [-77.3695342949128, 34.59422320085706], [-77.36983628542643, 34.593357621258], [-77.37011170846668, 34.59414004004084]], [[-77.33459532409918, 34.65626135110305], [-77.33482702871865, 34.6562251941355], [-77.33493596345988, 34.65599670089392], [-77.33496120231828, 34.65596557136157], [-77.33496203364803, 34.656021038668975], [-77.33483815508062, 34.65622803661774], [-77.33482942562709, 34.65623712370211]], [[-77.43818144495636, 34.74120534226723], [-77.43818442253557, 34.74117724527996], [-77.43813615707938, 34.74117635169548], [-77.438114092992, 34.74120658662675], [-77.43801752346197, 34.74142758731169], [-77.43794236958045, 34.74150143140406], [-77.43792492100775, 34.74153499192021], [-77.437919019926, 34.74156937105677], [-77.43793833405746, 34.741614716221406], [-77.43795160305953, 34.741622588953796], [-77.438024256479, 34.741615223450935], [-77.43809179132394, 34.74159329321062], [-77.4381082559885, 34.741504614652], [-77.43814289034215, 34.74147138807092], [-77.43817158979213, 34.74123422367338]], [[-77.34877302635776, 34.65617892471553], [-77.34890465825039, 34.656171349378454], [-77.34902963770402, 34.65614096616784], [-77.3490950508605, 34.656115479915286], [-77.34916227207975, 34.65626475146833], [-77.34900991827655, 34.65628404643337], [-77.34892454599019, 34.656270246359], [-77.34884476593601, 34.65630201650315], [-77.34868211397803, 34.65635893371427], [-77.34872149900711, 34.65618697302761]], [[-77.39925448856674, 34.595734405046045], [-77.3991212140585, 34.595770033330446], [-77.3991289430883, 34.59561725828695], [-77.39914938676341, 34.59547369097103], [-77.39915195194206, 34.5953079227047], [-77.39915331216919, 34.595215412076385], [-77.3991954771708, 34.59518589634868], [-77.39921840148898, 34.59522674875005], [-77.39930679459368, 34.59535862743927], [-77.39931035738192, 34.595450467726266], [-77.39937439760729, 34.59546074810011], [-77.3993925149912, 34.59549183938287], [-77.39953182158082, 34.59563080356189], [-77.39939250973646, 34.59572600063083]], [[-77.22263924309988, 34.612708171420664], [-77.22271610602719, 34.612572264437226], [-77.22272433266632, 34.61256843525395], [-77.22298808363503, 34.61248548969543], [-77.22300797473308, 34.612472988500286], [-77.223107990794, 34.612427794270985], [-77.22312922653644, 34.612410764508866], [-77.22311108691802, 34.61236328867535], [-77.2231184611912, 34.61227273138125], [-77.2232376781803, 34.61218652138419], [-77.22295186595161, 34.612124508622124], [-77.22293306231042, 34.612128173741525], [-77.22256840763562, 34.61232044345765], [-77.22259467577834, 34.61246422513294], [-77.22261972412453, 34.61260133262218]], [[-77.45064553284892, 34.61235943629029], [-77.4506433735358, 34.612362016942654], [-77.45063659420819, 34.61236596327199], [-77.45042927217202, 34.61252965026019], [-77.45026643034197, 34.612471529879116], [-77.45035846175843, 34.61227104099811], [-77.45036022679062, 34.612262947408084], [-77.45036312190467, 34.61225932551801], [-77.45055794166775, 34.612039543355415], [-77.45075286595967, 34.61209062881474], [-77.45080967370161, 34.61199887900683], [-77.45085298971865, 34.612119619554214], [-77.45084563922396, 34.61213022839879], [-77.45070193095489, 34.61229540263294]], [[-77.33286666788055, 34.57069001846919], [-77.33281058225722, 34.570757724150916], [-77.33266895217298, 34.570930146693684], [-77.33254371615524, 34.57096343927731], [-77.3325266858509, 34.57079717689389], [-77.33263647965433, 34.57066273189082], [-77.33267466360965, 34.570510560672844], [-77.33281097892805, 34.57028485359304], [-77.33310235932206, 34.570281790844035], [-77.33289450899765, 34.570625642887315]], [[-77.4418103236418, 34.685871979307294], [-77.44181076714077, 34.68587134406388], [-77.4418116029565, 34.685869570881756], [-77.44186385735556, 34.68577119714985], [-77.44196355104793, 34.68580800942432], [-77.44197279008365, 34.685866142225386], [-77.44199258707414, 34.68593519258893], [-77.4419851113883, 34.6860222127586], [-77.44198093096423, 34.68607087608201], [-77.44197501160394, 34.68613978183585], [-77.44180128999162, 34.68609895480968], [-77.44184753330842, 34.68602423854533]], [[-77.38951765936774, 34.51100692368138], [-77.38899005082374, 34.511074390987744], [-77.38904487175516, 34.511365075004946], [-77.38912067508782, 34.51146881996962], [-77.38925102034068, 34.5114742599802], [-77.38941515810782, 34.51142632904711], [-77.38949711371002, 34.51132105160367]], [[-77.37312990798135, 34.67875401147487], [-77.3731387369825, 34.67857629319997], [-77.37319804996602, 34.67851907271847], [-77.37343294849923, 34.67853584155246]], [[-77.3645687110804, 34.68264016987596], [-77.36509759196946, 34.682571446673954], [-77.36492410523172, 34.68236656787727], [-77.36474032733396, 34.682254775240494]], [[-77.34247549941892, 34.53838737445904], [-77.34248250423481, 34.5384085070798], [-77.3424722436413, 34.538510252286784], [-77.34247240364417, 34.53860705892828], [-77.34246386023193, 34.538663955997926], [-77.34266670718203, 34.538727095301724], [-77.34265428819111, 34.53876122124123], [-77.34265611596676, 34.53894488344833], [-77.34268795233798, 34.538968857914064], [-77.34268125059553, 34.53898216482686], [-77.34269929349156, 34.539057899564696], [-77.34273974467906, 34.53898559233262], [-77.34274791558403, 34.53896023139653], [-77.34276005001279, 34.53874708047258], [-77.34280485561408, 34.53870722061309], [-77.34278840214793, 34.53865975007833], [-77.34277349762424, 34.538466913103576], [-77.34271596044312, 34.53833613748833], [-77.34268138976677, 34.53825802956226], [-77.34266338809981, 34.53823793491567], [-77.34252403960727, 34.538147259553014], [-77.34249799404958, 34.53826172890901], [-77.34248224908256, 34.538363455054885]], [[-77.34387577790767, 34.53911086887255], [-77.34375850727137, 34.539233104180006], [-77.34359617229083, 34.53949665220713], [-77.34354790591065, 34.53957959732319], [-77.34353227216175, 34.53961976944352], [-77.34346971127037, 34.539695620966974], [-77.34327702044608, 34.53999231077268], [-77.34325856843556, 34.5401108617872], [-77.3433327464919, 34.54017865143156], [-77.3434296940537, 34.54033106183379], [-77.34342966485312, 34.54034666826777], [-77.3434543384695, 34.54036161691913], [-77.34373126736364, 34.540359820252455], [-77.34395346498957, 34.54032157913459], [-77.3442421618619, 34.54024574298228], [-77.34428455291297, 34.54020807273391], [-77.34424507496755, 34.540119486925406], [-77.34420767984376, 34.53999936245517], [-77.34417565048673, 34.53997892151543], [-77.3441940280489, 34.5399418876841], [-77.34425194116963, 34.53982190124172], [-77.34427195212358, 34.539731424409865], [-77.34428152955766, 34.53971886888762], [-77.34425734536131, 34.539587680462844], [-77.34424556485357, 34.539488004833146], [-77.34421848639485, 34.53948311976904], [-77.3441893546628, 34.539442825501695], [-77.34406532405873, 34.53926033637535], [-77.34416446121264, 34.539182314657616], [-77.34413599127772, 34.53908821732359], [-77.34393330114503, 34.53906979400088]], [[-77.34536254481792, 34.53074981980146], [-77.34539540920386, 34.53083936095164], [-77.34541986276916, 34.530876338178814], [-77.34555662291761, 34.53091784033238], [-77.3456329914488, 34.530715061527815], [-77.34563682077174, 34.53071035253163], [-77.34563332170929, 34.5307067849978], [-77.34550828086671, 34.53056808293544], [-77.34533232215564, 34.53056025684887], [-77.3453989941993, 34.53065078135075]], [[-77.36996326071909, 34.51664288586982], [-77.37021401011462, 34.516342901426356], [-77.37041157454783, 34.516303422514504], [-77.3706652651392, 34.516562492482365]], [[-77.44191542061779, 34.68448887683093], [-77.4419093149902, 34.68453707494098], [-77.44191167408167, 34.68464907549685], [-77.44189911250125, 34.6847188896136], [-77.44192207165129, 34.68493175836875], [-77.4417486043576, 34.68478172487628], [-77.4417409631831, 34.68463575252859], [-77.44175954940113, 34.684595889595045], [-77.44173808226395, 34.68456291356268], [-77.44175590465682, 34.684473255696076], [-77.44181654120337, 34.684476056259655], [-77.44183242787173, 34.68441140930912]], [[-77.33289298339426, 34.53444010284885], [-77.33327044809778, 34.53427655591536], [-77.33312966408164, 34.53455534672714], [-77.33289133786728, 34.5345633502086]], [[-77.30309535341502, 34.55376474430086], [-77.30293027272522, 34.553984332990865], [-77.30286114912185, 34.554097933866736], [-77.30288281732867, 34.554118458016106], [-77.3028921997558, 34.55411305932957], [-77.30309057080015, 34.5539677398803], [-77.30312425884208, 34.55395649440241]], [[-77.42420845375501, 34.52521844998983], [-77.42424689009451, 34.52512573904825], [-77.42426781051257, 34.525090828083286], [-77.42430760770287, 34.52501836622684], [-77.42445451975081, 34.52498076520615], [-77.42444231758923, 34.525083831409134], [-77.42435348305705, 34.525110329000924], [-77.42441096109013, 34.52513453582369], [-77.42434921565979, 34.52523336772507], [-77.42433943296935, 34.525282102029635], [-77.4241622274546, 34.52532306139269], [-77.42419067805474, 34.52525628726964]], [[-77.35204277726488, 34.72974913745426], [-77.35201953067435, 34.72974808038026], [-77.35188514051261, 34.72977641084417], [-77.35185479449603, 34.72975152158966], [-77.35190261633785, 34.72971624369682], [-77.35203137072179, 34.72970836506522], [-77.35205375200873, 34.72971135250637], [-77.3520662708303, 34.729712125031305], [-77.35211839652936, 34.72971534159574], [-77.35210526318222, 34.729773836878294]], [[-77.43831072069784, 34.743766150226996], [-77.43833037164055, 34.74379478896085], [-77.43835054627834, 34.743811376038], [-77.43838323730589, 34.74382289055364], [-77.43838130832042, 34.74379081131326], [-77.43837462487018, 34.74377632705114], [-77.43837048866126, 34.743742464427605], [-77.43831673466713, 34.74371427625203]], [[-77.42434598320713, 34.74332581835275], [-77.42443868701008, 34.74313618323045], [-77.42443872531871, 34.74333975456623], [-77.42466865660741, 34.743449262448344], [-77.42467281275353, 34.743472994645664], [-77.42468885615811, 34.7436818159491], [-77.4246691353639, 34.74375124292153], [-77.4246322426454, 34.74379350759841], [-77.42455369973388, 34.743846259827315], [-77.42455084912363, 34.7438474955249], [-77.42442455733939, 34.74379204093333], [-77.42441486130369, 34.74377209488994], [-77.42436264601176, 34.74364412456158], [-77.42436241667662, 34.74359476758784], [-77.42435256814817, 34.74343358883166], [-77.42434985075958, 34.743376819445274], [-77.42434610616657, 34.74335880973688]], [[-77.39624413685415, 34.62284692284469], [-77.39623840584267, 34.622838786389096], [-77.39620420944034, 34.622683403566185], [-77.39616336658368, 34.6226524575607], [-77.39623841573135, 34.622595384707125], [-77.39626108907268, 34.62261394512875], [-77.39629666216116, 34.62263323495087], [-77.39637074931565, 34.622692310161526], [-77.3964355199962, 34.622742026153404], [-77.39649204062711, 34.62275647185723], [-77.39657732679142, 34.62295777829413], [-77.39657472004484, 34.62301770708153], [-77.39643550523334, 34.62312971726541], [-77.3963781116849, 34.62304606046959], [-77.39631989727835, 34.62296668486266], [-77.3962476926376, 34.622862585459], [-77.39624138545415, 34.62285349222563]], [[-77.39639008333418, 34.530669914301576], [-77.39641601501022, 34.530578472650014], [-77.39655970337282, 34.53054143067152], [-77.39657651957266, 34.53065651676729]], [[-77.42093211074533, 34.56855229525652], [-77.42092952383211, 34.56841071602828], [-77.4209438797767, 34.568338302203685], [-77.42106118768464, 34.56818230453403], [-77.4211337448236, 34.568176775482975], [-77.42135658136289, 34.5681726028248], [-77.42137121041347, 34.56839833852219], [-77.42139234616593, 34.56848579651976], [-77.4212582584398, 34.56860057803215], [-77.42118089195463, 34.56864525086163], [-77.42113209484734, 34.56865938536259], [-77.42106128847807, 34.56864572182975], [-77.42100208603532, 34.56860598012398]], [[-77.43532521954614, 34.62073418938475], [-77.43523440697231, 34.62068958643762], [-77.43517424318003, 34.62065153060841], [-77.43512569573632, 34.62059390950725], [-77.43511155915158, 34.62055398023156], [-77.43519117903386, 34.620462082381174], [-77.43523278442304, 34.620396409918044], [-77.43528329725092, 34.62043582630676], [-77.43537186457694, 34.620521586212874], [-77.43543971246598, 34.6205758647366], [-77.43570033580355, 34.620760047677564]], [[-77.44233223925755, 34.617687942797644], [-77.44236523759582, 34.61764132780563], [-77.44249861307954, 34.61764050958743], [-77.44239570610274, 34.61775263520866]], [[-77.33953639056946, 34.76201329447914], [-77.33952326271525, 34.76203050389738], [-77.33950624081034, 34.76203647343159], [-77.33947186661248, 34.76198497292511]], [[-77.44178491366445, 34.68508142030737], [-77.44192210968663, 34.684933489400294], [-77.4419077445031, 34.685161694514896], [-77.4419077694375, 34.68520674534497], [-77.44191690092049, 34.6852971404653], [-77.44181279032881, 34.685311514876304], [-77.4418000843841, 34.685206641102354], [-77.44179533475058, 34.685167436215615]], [[-77.44195319253299, 34.685730288639974], [-77.4418600886771, 34.685701908815346], [-77.441850094443, 34.68563217133105], [-77.44184138808794, 34.685547556619014], [-77.44192688987935, 34.68560011044107]], [[-77.45594949530143, 34.598114461593774], [-77.45593595105568, 34.59812249433942], [-77.45551099378801, 34.59845063985906], [-77.45522541693421, 34.59831757894763], [-77.45507633417859, 34.59825940385463], [-77.45510475524864, 34.59812857303373], [-77.45511899798694, 34.59797889544528], [-77.45511902473964, 34.5979787195485], [-77.4551190195926, 34.597978668389224], [-77.45511913648541, 34.597978452558465], [-77.45519185859256, 34.59784935839063], [-77.45524405416278, 34.59782567607563], [-77.45533825570996, 34.5978197881992], [-77.45544616367035, 34.59780709597476], [-77.45553764982745, 34.59785924303821], [-77.45569674757002, 34.59795783556601], [-77.45594358826449, 34.59811080107492], [-77.45594486504461, 34.59811159228759]], [[-77.44510145844848, 34.74641785525574], [-77.44529206073824, 34.74641480316636], [-77.44542261646237, 34.74653003147259], [-77.44525459809259, 34.74654429273699]], [[-77.39640777966564, 34.531622324760846], [-77.39637266112733, 34.53155064364008], [-77.39653458698571, 34.53152627186178], [-77.39647527040276, 34.53160053609599]], [[-77.39584548292368, 34.62227372810659], [-77.39584421042949, 34.62227653938589], [-77.39584100704556, 34.62227437356127], [-77.39583348539364, 34.622263906785534], [-77.39584421061772, 34.622272413058774]], [[-77.44158711434368, 34.73820247714625], [-77.44158313069438, 34.73817980188759], [-77.44150176534006, 34.73800754150345], [-77.44146362755613, 34.738013089742125], [-77.44145176702227, 34.73802840313387], [-77.44156687298167, 34.73819540556882], [-77.44157492422258, 34.73820816518561]], [[-77.35665986106633, 34.57037730505588], [-77.35658519047264, 34.57033556727916], [-77.35644992481173, 34.5702914950249], [-77.35630017065876, 34.570443080704266], [-77.35636334094798, 34.57055311819574], [-77.35640547289977, 34.570640199379625], [-77.35642286144216, 34.570666635169005], [-77.35644969210912, 34.570710462918846], [-77.35646344500144, 34.570646636772224], [-77.3566157750455, 34.57060992843668], [-77.3567373148972, 34.57047768347901]], [[-77.43588998938057, 34.62100138709353], [-77.43590498270635, 34.620931470005736], [-77.43594940157783, 34.62098445279665], [-77.43595880447945, 34.621128140194855]], [[-77.38325066018231, 34.588638146805415], [-77.38327544066544, 34.58867683835212], [-77.38330590244153, 34.58873632531489], [-77.38332361829319, 34.58874572619914], [-77.38330729909636, 34.58881274430274], [-77.38326745339799, 34.58881431813106], [-77.38323619147744, 34.58877694731934], [-77.38321936726147, 34.58874879879045], [-77.38323096479355, 34.58864664809582], [-77.38323063546761, 34.58864103324096], [-77.3832362305726, 34.58860026732008]], [[-77.33289805540696, 34.577529678521124], [-77.33280490933348, 34.577541368533176], [-77.33278974083714, 34.57753946245819], [-77.33280491690488, 34.57753228943988], [-77.33289690042416, 34.57751702022025], [-77.33291198484505, 34.57751268327031], [-77.33290910122176, 34.57752842266379]], [[-77.4356738446599, 34.621801480175996], [-77.43568034163475, 34.621837065597], [-77.43572668829333, 34.621878729086916], [-77.43571116726869, 34.62193524789988], [-77.43569727276376, 34.62197942396772], [-77.43569236066342, 34.6219961313471], [-77.4356831119109, 34.62204198294542], [-77.43563655883358, 34.62202643336931], [-77.43562937689195, 34.62199877601119], [-77.43561025941855, 34.62196739719959], [-77.43556711532504, 34.62192421146146], [-77.43558496803253, 34.621860942254116], [-77.43559997711871, 34.62182253435242], [-77.43561372913007, 34.62178845150967]], [[-77.33323196099425, 34.53127063680331], [-77.33326147576244, 34.53129512280124], [-77.3333600278605, 34.53125222171173], [-77.3332644341844, 34.53116765034442]], [[-77.34097756518841, 34.62605677900585], [-77.34095900544413, 34.6261967659968], [-77.34086694357751, 34.62607196514435], [-77.34092309807389, 34.626018034581875]], [[-77.34394521178878, 34.62911126053126], [-77.34394830650466, 34.62904621938367], [-77.34400477220248, 34.62901715531514], [-77.34407828809331, 34.62897705959161], [-77.34410626528738, 34.62900322001892], [-77.34409113168121, 34.62904097416409], [-77.34406986817585, 34.62915972338728], [-77.34400420585942, 34.62922823258338], [-77.34397482001992, 34.62925860315997], [-77.34386595441946, 34.629247214744545]], [[-77.37763070467909, 34.63147971869402], [-77.37755572769737, 34.63144188834991], [-77.37751057150038, 34.63142719801641], [-77.37748914499497, 34.631393968915255], [-77.37751059343867, 34.63134259408964], [-77.37754461530005, 34.631316467412276], [-77.37765039711536, 34.631326339972], [-77.37770770877393, 34.63140910148405], [-77.3779046084075, 34.631440264594644], [-77.37770767765869, 34.631530231078486]], [[-77.34259140480201, 34.539161779508035], [-77.34259180254934, 34.539170512730635], [-77.34262765590009, 34.5391794258356], [-77.34266593425423, 34.53911442484095]], [[-77.32144388736062, 34.643404921366006], [-77.32143997927852, 34.64339476525423], [-77.32146406115645, 34.643365001674205], [-77.32150690982634, 34.64345727555698]], [[-77.37516782989664, 34.5585737055552], [-77.37518739349971, 34.55859487472681], [-77.37522555251519, 34.5586516164269], [-77.37516777742606, 34.55872823750218], [-77.3751101501437, 34.55860600641737]], [[-77.3636279181856, 34.59008837935663], [-77.36362884056203, 34.59008281926818], [-77.3636404342671, 34.5900731005914], [-77.36365125021479, 34.59010374616476]], [[-77.34269071411465, 34.52721714744677], [-77.34267834136257, 34.52721732745187], [-77.3426757300136, 34.52721930331669], [-77.34267693257584, 34.527278320967746]], [[-77.223880386818, 34.6560450579475], [-77.22417715527936, 34.65595184222736], [-77.22407752290479, 34.655804604188845], [-77.2241082201734, 34.65559550840469], [-77.22151371502652, 34.655602339395216]], [[-77.26233582493151, 34.589964877605695], [-77.26244955655633, 34.58986920862816], [-77.26353327082424, 34.58915290876084], [-77.26405757156995, 34.58886705468162], [-77.26413155878475, 34.58825728754259], [-77.26520638184485, 34.587752540221395], [-77.26568092319278, 34.587681758674734], [-77.26601366200153, 34.58746261930223], [-77.26610524201547, 34.58740187229444], [-77.26607699741353, 34.58715096657317], [-77.26594654168295, 34.58698600584479], [-77.26575377955677, 34.58667040735707], [-77.26546778629088, 34.58664430961589], [-77.26544487757533, 34.58647522139273], [-77.26520146374196, 34.586009219353386], [-77.2649683329763, 34.585495074823925], [-77.26519698616735, 34.58462253682194], [-77.26536881800381, 34.58458389637043], [-77.26648429840827, 34.58445289682192], [-77.26704642353873, 34.58411490070844], [-77.26751928066267, 34.58405885956295], [-77.26776959291564, 34.58382999147917], [-77.26980236575213, 34.58346030478877], [-77.27117849030714, 34.582611705681316], [-77.2716654164382, 34.582488246045784], [-77.27198545518986, 34.582276038759424], [-77.27398029109293, 34.58191795076491], [-77.27430733215499, 34.58151582869546], [-77.27523317891708, 34.58078151559563], [-77.27540355410557, 34.58065929484138], [-77.27545940516899, 34.58060453022107], [-77.27564063448023, 34.58045533166554], [-77.27627524904636, 34.580015657515304], [-77.27701544560226, 34.580113733114885], [-77.27742920669328, 34.580252037811334], [-77.27829573916537, 34.580886471671406], [-77.27849126592474, 34.58103049346195], [-77.27864397957617, 34.581183531566126], [-77.27870554239568, 34.5813899852091], [-77.27837469052852, 34.58180905091483], [-77.27836197989306, 34.581834331824915], [-77.27821727611217, 34.582027422425945], [-77.27770299087632, 34.5825993723438], [-77.27763542204399, 34.58271992501917], [-77.27750342553723, 34.58287037871483], [-77.27689195416689, 34.58450681102865], [-77.27680559999428, 34.584540062614664], [-77.2768029344189, 34.58460258269043], [-77.2743379916975, 34.58623151170285], [-77.27452525172782, 34.58765971220467], [-77.27417102797631, 34.58810373830046], [-77.27334734051074, 34.5888366543935], [-77.27234610241004, 34.58984566087422], [-77.27168646408549, 34.59039300492569], [-77.27050251857985, 34.590615023906544], [-77.26750081437885, 34.59192884002857], [-77.26636216166816, 34.592133819218326], [-77.26497298506632, 34.59230996416775], [-77.2639462961723, 34.59235800404123], [-77.26295867230081, 34.59219566985861], [-77.26198391702991, 34.5922808857142], [-77.26130749633666, 34.59274854481214], [-77.26110579320348, 34.59281448680461], [-77.26087367179228, 34.59350869747327], [-77.26086625210732, 34.59365651226619], [-77.26074253478141, 34.59380594311488], [-77.26042343796578, 34.59387393491048], [-77.26025016900725, 34.59374218269798], [-77.25970667747956, 34.59356529011592], [-77.25911344292005, 34.593433030710294], [-77.25954969297823, 34.59274516880417], [-77.26065867922995, 34.592697506561414], [-77.26044568367533, 34.59219931777781], [-77.26119399710643, 34.59157843090166], [-77.2615657064579, 34.590883502889696], [-77.26230633936947, 34.59003286649277], [-77.26230041954885, 34.58999861984519]], [[-77.37658136423951, 34.533702059581366], [-77.3767690548647, 34.533699009283666], [-77.37697545889557, 34.53363329849493], [-77.37710148859401, 34.53360143483722], [-77.37737117391057, 34.533493057739506], [-77.37776045092521, 34.5334311877975], [-77.37776512754348, 34.53343043505594], [-77.37776870324062, 34.53342930613094], [-77.37778345662015, 34.53342496491989], [-77.37816117910192, 34.533275239521714], [-77.37835615522162, 34.53334239989436], [-77.37815544389628, 34.53352822802102], [-77.37811944745845, 34.53359991791382], [-77.378106704376, 34.533623192918164], [-77.37806744802577, 34.53368156841247], [-77.37786046340348, 34.53397062399928], [-77.37763971796582, 34.53418017513656], [-77.37735172978876, 34.534350414909355], [-77.37707085363368, 34.534436155494944], [-77.37695636914593, 34.534474856670855], [-77.37680424584983, 34.534450217291734], [-77.3765636997856, 34.53448062351371], [-77.37621140886833, 34.53460405465758], [-77.3762640835854, 34.534378483245725], [-77.37598322616883, 34.5340508396891], [-77.37600444221596, 34.533926252641095]], [[-77.36078989468457, 34.570865119079045], [-77.36104873344465, 34.570959464089775], [-77.36117725719077, 34.57114362955356], [-77.36123711728108, 34.571218299427656], [-77.36117708788434, 34.571483481654994], [-77.36114498534373, 34.57162159932359], [-77.361118389092, 34.57165994774482], [-77.36100635370568, 34.57185985605041], [-77.36083756008559, 34.57218399543053], [-77.36071430219098, 34.57221642113683], [-77.36038892084343, 34.57187178785402], [-77.36028029907834, 34.57189764494666], [-77.36018329720567, 34.57179457567432], [-77.359974089035, 34.57142285186928], [-77.35975485486985, 34.571172611269866], [-77.3596351083666, 34.571024390776735], [-77.35960920781264, 34.57101969229293], [-77.35960139061629, 34.571013343353705], [-77.35947094834577, 34.57090740114745], [-77.35940049899173, 34.57085018381881], [-77.35935575704183, 34.57079979481258], [-77.35923009765183, 34.570658144701625], [-77.35924098108393, 34.57062062004468], [-77.35934142829859, 34.57036161806157], [-77.3594759729175, 34.5703337235354], [-77.35960176412166, 34.57029166471972], [-77.35972623398598, 34.570296296682535], [-77.35985039162799, 34.57030091696578], [-77.35999565854084, 34.57045767796414], [-77.36003773906207, 34.57049650390037], [-77.3600639259503, 34.57053810144644], [-77.36008636888484, 34.570632716101514], [-77.36013334186018, 34.57095266107508], [-77.36014881093067, 34.57111583353578], [-77.36006237098282, 34.57131506986055], [-77.36020441097513, 34.571167771586175], [-77.3603893412781, 34.57104337479013], [-77.36045445488564, 34.57097655954208], [-77.3607775432923, 34.570866239314945], [-77.36078341492394, 34.57086315327532]], [[-77.2475956502579, 34.60256098859385], [-77.2501174832414, 34.60276094148185], [-77.25075054557172, 34.60299162477794], [-77.25106062437246, 34.60306130282209], [-77.25288616608184, 34.603398052344886], [-77.25084441717922, 34.60340744318369], [-77.25055213080668, 34.6033836382019], [-77.24916409736825, 34.603771218481214], [-77.24706577161015, 34.603607783128716], [-77.24664335264809, 34.60324520518695], [-77.24636777042952, 34.602884778103736], [-77.24639707801052, 34.60208141141902]], [[-77.33175515770152, 34.684285058874764], [-77.33172267915054, 34.68428572908741], [-77.33166327802272, 34.684313230879354], [-77.33108550357561, 34.684418572294], [-77.3307577077569, 34.68422166880106], [-77.3305690963114, 34.68413582717057], [-77.33031794781584, 34.68416586695166], [-77.3301946293394, 34.68417779548997], [-77.32994179982802, 34.684234668750925], [-77.32950867917836, 34.684566820234515], [-77.32979463818482, 34.6847410595909], [-77.32995070884559, 34.68484250265982], [-77.3303198540322, 34.68492729872292], [-77.33034119312644, 34.684920074285664], [-77.33035411261172, 34.684938266328004], [-77.3306784261862, 34.68507089776379], [-77.33087934548804, 34.68512800619648], [-77.33142593083329, 34.68528407103368], [-77.33144616380687, 34.685287847535946], [-77.33199691240078, 34.685401897985216], [-77.3322870514419, 34.685409831002865], [-77.33315293129552, 34.685524774971974], [-77.3331582603828, 34.68552512890458], [-77.3331637434918, 34.68552360982308], [-77.33435948994983, 34.68531804704666], [-77.33439357308215, 34.684577428291306], [-77.33410110354556, 34.68442441170588], [-77.33407834693581, 34.684418606215345], [-77.33372228852653, 34.68430563377717], [-77.33353156783603, 34.68424036557431], [-77.3331939771675, 34.68428435358151], [-77.33291777143046, 34.68429277568075], [-77.3326975859368, 34.684305741486725], [-77.3323158780397, 34.684304212519784]], [[-77.4240212483204, 34.50100052549957], [-77.42332809296403, 34.50120842586293], [-77.42327394324957, 34.50123140096052], [-77.42322670840333, 34.501246341003245], [-77.42305225231705, 34.501287484106484], [-77.42304077586577, 34.501193749190506], [-77.42311293992474, 34.50115313042189], [-77.42319418146414, 34.50112720066949], [-77.42353485049092, 34.500764069504264], [-77.42373457602032, 34.50064026878922], [-77.42380346203758, 34.500597569227054], [-77.42393849430643, 34.50056406205214], [-77.42416868885711, 34.50047803561283], [-77.42434259756857, 34.50040105181861], [-77.42466859731778, 34.50044365078864], [-77.42461445812593, 34.500598586421354], [-77.42455031336414, 34.500663556290135], [-77.42453670093019, 34.50076350108185], [-77.42445906791747, 34.50082764161131], [-77.42435090949566, 34.50086370227781], [-77.4242330779256, 34.50091687932166]], [[-77.34619518139075, 34.629954127502685], [-77.34598665846724, 34.63011847599902], [-77.34580365420643, 34.63011132152254], [-77.3456292702927, 34.63032369425201], [-77.34538706263938, 34.63038957919923], [-77.34535326615917, 34.63073099379054], [-77.34520881041352, 34.63089036925089], [-77.34513133886539, 34.63103154814246], [-77.3450296364513, 34.63086552384189], [-77.34497204741547, 34.630783339239585], [-77.34463908437772, 34.63049074390019], [-77.34456898155422, 34.630416683886], [-77.34445192638893, 34.6302872798548], [-77.34440411873881, 34.63013904268553], [-77.34445208992673, 34.63001073451551], [-77.3445796797661, 34.62987926986786], [-77.34475764771892, 34.62980190484014], [-77.3448658236245, 34.6297103444079], [-77.34534440303617, 34.62968252833657], [-77.34546469726484, 34.62950480147876], [-77.345861982743, 34.62921714985112], [-77.34603034001117, 34.62913392314248], [-77.34619649704777, 34.6291436788765], [-77.34635178550883, 34.628905880291306], [-77.34607179841576, 34.628801622574635], [-77.3459678491549, 34.62882298160164], [-77.34583340919467, 34.628804671163], [-77.34552898736511, 34.62872839639034], [-77.34520948154164, 34.628234847929306], [-77.34520262815941, 34.62822650633807], [-77.34520226815066, 34.62821973044901], [-77.34520173803126, 34.62821488368102], [-77.34519758014163, 34.628175625050595], [-77.3451428793903, 34.62749270454769], [-77.34522248272455, 34.62737295512251], [-77.34517655086455, 34.626856920125604], [-77.34542050424098, 34.626501762883166], [-77.34503538423174, 34.62626129820843], [-77.34481739906727, 34.62628375162812], [-77.34445670957132, 34.62618478072841], [-77.34396155418676, 34.62609154856425], [-77.3437247120527, 34.62589061584433], [-77.34353210428768, 34.62579385365533], [-77.3433004032256, 34.625105794043975], [-77.34329997627506, 34.62510539239118], [-77.34330013726967, 34.625104913783126], [-77.34330017892067, 34.62510485981982], [-77.34330021417455, 34.62510485316035], [-77.34330224317735, 34.6251009030543], [-77.34353125816904, 34.62466177257929], [-77.34353414093327, 34.62465609149392], [-77.3438048821751, 34.62467956184962], [-77.34385025709676, 34.62465643964315], [-77.34388289202856, 34.624648129504614], [-77.3441124746723, 34.62464448676856], [-77.34418380466511, 34.62472351002485], [-77.34431037234229, 34.62471368090381], [-77.34449464097143, 34.624677551433805], [-77.34466627961834, 34.62469589297632], [-77.34497902129816, 34.62467080990119], [-77.34513045175119, 34.624655999405206], [-77.34525482076248, 34.6245947262899], [-77.34529952061615, 34.624589976120795], [-77.34543437536242, 34.62457564524603], [-77.34557559577931, 34.62456063771272], [-77.34560583614645, 34.62455742404636], [-77.34576892100202, 34.62464767446138], [-77.34585397872816, 34.624640083466545], [-77.34615458953739, 34.624712958510415], [-77.34602557035898, 34.624980793274794], [-77.34599095654349, 34.62557942987044], [-77.34623705554446, 34.62617785550171], [-77.34671649289014, 34.62617741268012], [-77.34683996507897, 34.62630683884566], [-77.34708219840466, 34.62680052274689], [-77.34742574007372, 34.62707039451686], [-77.34749495971919, 34.627131295140984], [-77.3475798570541, 34.62728799405061], [-77.34759434696949, 34.62711277367517], [-77.34804440108998, 34.62719136316158], [-77.34820069433565, 34.62719183772715], [-77.34843502489481, 34.62723048480856], [-77.34858624639291, 34.62726647548973], [-77.34862232319928, 34.62740535662673], [-77.34860198207946, 34.62759584756323], [-77.34860575387884, 34.62772348455292], [-77.34856416413275, 34.62775804763576], [-77.34841534960873, 34.627879311605255], [-77.34835052723486, 34.627937287597355], [-77.34818334127313, 34.628064470920485], [-77.34787968909725, 34.62804638928587], [-77.34782651536428, 34.62828135676973], [-77.34778729523076, 34.628320078645096], [-77.34755897822015, 34.62841415723768], [-77.34741835613153, 34.628759411289536], [-77.34733104449779, 34.628868548979334], [-77.34733442272106, 34.629192938940655], [-77.34732521762521, 34.62920617680506], [-77.34706965783818, 34.62929170917984], [-77.34705165322109, 34.6294376592977], [-77.3469895649723, 34.62966229829179], [-77.34688548907747, 34.62978696615458], [-77.34685053021227, 34.629892391708275], [-77.34682764724886, 34.62991572726188], [-77.34672873459739, 34.629974215792004], [-77.34660599044915, 34.630040173481646], [-77.34651967761059, 34.62997604209048], [-77.34639466003024, 34.629995909273966]], [[-77.38453897265502, 34.6582165564868], [-77.38452829402247, 34.65824185516861], [-77.38388709190495, 34.658159744965076], [-77.38363894419031, 34.65807934451582], [-77.38350193671499, 34.65803406898779], [-77.38314074146858, 34.65763415264839], [-77.38312495477703, 34.65761171877721], [-77.38309931228362, 34.65757607207435], [-77.38277783510739, 34.657170623770824], [-77.38271937517061, 34.6568234903704], [-77.38259712596287, 34.65644080026934], [-77.3825906956916, 34.656419179225466], [-77.38258500923831, 34.6564035252704], [-77.38242316826938, 34.65602021259002], [-77.38233288271184, 34.65575396153858], [-77.3822704878395, 34.655469240982356], [-77.3822680763682, 34.655197518326105], [-77.38230202658512, 34.6550610897085], [-77.38235563944204, 34.654881742896094], [-77.38244501452601, 34.65438247617361], [-77.38244533064747, 34.65432909432297], [-77.38244563210631, 34.6542987610734], [-77.38245225166277, 34.65421755208533], [-77.38264788222921, 34.653980403371456], [-77.38309079736506, 34.6542335786945], [-77.38309693278606, 34.654238801009775], [-77.38309720948155, 34.65423911433221], [-77.38309792148344, 34.654239297825576], [-77.38367484919301, 34.65424351279613], [-77.38375034553297, 34.654303372930606], [-77.38415076858357, 34.65444951970407], [-77.38448919300735, 34.654791871366136], [-77.38484833756499, 34.6548424588538], [-77.38497595614126, 34.655112576627545], [-77.38507109339663, 34.655655840830796], [-77.38533014842382, 34.65578695358924], [-77.38585783667247, 34.65566328342259], [-77.38603297483897, 34.65564375924957], [-77.38649419662943, 34.655207562577516], [-77.38780434531738, 34.655961942754644], [-77.38795556787935, 34.65546049972626], [-77.38811345852417, 34.65591010268715], [-77.38819863995606, 34.65606786139019], [-77.38800952487055, 34.656153287581446], [-77.38797689582607, 34.65620907462545], [-77.38794057750238, 34.65742273270385], [-77.38730686571392, 34.657388589752166], [-77.38692267806445, 34.65733336792894], [-77.38643897336449, 34.657155664924], [-77.38634565474041, 34.65699508217105], [-77.38609531410577, 34.65703566990123], [-77.38595021755225, 34.657222930168984], [-77.38571826419934, 34.657350928493294], [-77.38567759053876, 34.65751081332197], [-77.38530020574885, 34.65762794173144], [-77.38460653267146, 34.65814341464145]], [[-77.35600383401497, 34.550762522645286], [-77.3559145975874, 34.550861852825484], [-77.3557721469879, 34.551025710521735], [-77.35575792781395, 34.5510339979909], [-77.35573679321259, 34.55104578845292], [-77.35537567695518, 34.551193496123226], [-77.35518466188886, 34.55124366190955], [-77.35517455166482, 34.55124689943047], [-77.3549795445672, 34.55134648960455], [-77.35484872350352, 34.55141845181281], [-77.35471546841897, 34.551520276273976], [-77.35441472183489, 34.55172574732211], [-77.35430077917502, 34.551815253989645], [-77.35418217470253, 34.551874730076094], [-77.35388738188291, 34.55204647698667], [-77.3538301642324, 34.55208302012827], [-77.35378412286823, 34.55211110006971], [-77.35365558653166, 34.552159299967045], [-77.35338773057971, 34.55227508354517], [-77.35329213973321, 34.55231798584965], [-77.35300524983543, 34.55241827037305], [-77.35299496877363, 34.552421767262054], [-77.35299170576967, 34.552422992264205], [-77.35298512225397, 34.55242524032773], [-77.35279383953525, 34.552490557419326], [-77.35271440787612, 34.55250939114748], [-77.35263475549841, 34.55249487287685], [-77.35259767357631, 34.55248407823942], [-77.35259156524383, 34.552481655930286], [-77.35258381023363, 34.55247892858806], [-77.35220843344764, 34.55233653280851], [-77.35216444370967, 34.5523221013769], [-77.35213072004547, 34.55229931885703], [-77.35197730090404, 34.55222233552264], [-77.35182099933945, 34.55211044228715], [-77.35181261192348, 34.5521055804355], [-77.35180814874714, 34.55210092319027], [-77.35179426298534, 34.552085898633536], [-77.35159914612773, 34.55188618166358], [-77.35156044723067, 34.551813648797825], [-77.35152304723661, 34.551705545294055], [-77.35151848679534, 34.5516529688334], [-77.35144236021748, 34.55150174708713], [-77.35140701745695, 34.551447012533345], [-77.35139340857414, 34.55142614876472], [-77.3513848722879, 34.551389928201644], [-77.35130043967106, 34.55119470735302], [-77.35128964338661, 34.551053095910035], [-77.35126862100506, 34.55095446527068], [-77.3512179769932, 34.55081195351684], [-77.35119525993625, 34.550720201999766], [-77.35115513041649, 34.5506721483101], [-77.35107233674069, 34.55051848876751], [-77.35105940584685, 34.55050321483671], [-77.35105383442134, 34.55049573458691], [-77.3509311994713, 34.55035885765096], [-77.3508972118393, 34.55027345396067], [-77.35085413999364, 34.550138142258696], [-77.35108168271475, 34.550111907843714], [-77.3512184241088, 34.55006702732695], [-77.3512793110197, 34.55005452455207], [-77.35143355328847, 34.549978759435234], [-77.35147783809822, 34.549958020890905], [-77.35149001979161, 34.54995080823516], [-77.35150723863121, 34.54994083735679], [-77.35170633589999, 34.54980768931443], [-77.35175391171877, 34.54978292432969], [-77.35186824714013, 34.54964985051515], [-77.35187061821485, 34.54964371645426], [-77.35187349484723, 34.549640650082765], [-77.3518777712569, 34.54963965418494], [-77.35188118341024, 34.54964006229245], [-77.35227367198549, 34.549496684098045], [-77.35246231447431, 34.54943041413896], [-77.35247156701288, 34.54942758442803], [-77.35248689959842, 34.5494231078066], [-77.35266914428595, 34.54937230419745], [-77.35300411376821, 34.54927311467004], [-77.35310446138445, 34.549246125907885], [-77.3534584411262, 34.54919514877485], [-77.35370142311395, 34.549228210445875], [-77.35385027969679, 34.54922892209669], [-77.35397824928879, 34.549260108548026], [-77.35416621742388, 34.549313295701594], [-77.35421054026808, 34.54932570507157], [-77.35424047756705, 34.54933419712048], [-77.35438065859174, 34.54937035758006], [-77.35446504091338, 34.549374495635256], [-77.35463274101492, 34.549349486127035], [-77.35473294983261, 34.549293400028034], [-77.35497567880395, 34.54922946740608], [-77.35502842715934, 34.54921557394172], [-77.35507037547013, 34.54920920859683], [-77.35522519747525, 34.54919536416341], [-77.35539283407331, 34.54915517477683], [-77.35542261497882, 34.549146931008025], [-77.35546038090351, 34.54912699826592], [-77.35565422869098, 34.54899654696441], [-77.35577539166792, 34.548865689222296], [-77.35580577104855, 34.54883245344443], [-77.35581233648438, 34.54882510339905], [-77.35582287832456, 34.54881330170175], [-77.35597373073901, 34.548655258798384], [-77.3561819534845, 34.54853347429682], [-77.35620545560556, 34.54851963555144], [-77.35622244797149, 34.54850979004016], [-77.3564512796591, 34.548390872001924], [-77.35662031667732, 34.548280358047826], [-77.35666556369794, 34.548246762522716], [-77.35670577853172, 34.548213237786875], [-77.35679480522481, 34.548061273889225], [-77.35682577137666, 34.547951139262025], [-77.3569127239762, 34.54776366504923], [-77.35686528912271, 34.54770062672734], [-77.35691662106466, 34.54762379987219], [-77.35694471355714, 34.54744436874387], [-77.35703654164988, 34.54724982528873], [-77.35705860883935, 34.54719614149705], [-77.35714168130937, 34.547171187442245], [-77.35743276961985, 34.54709164363555], [-77.35755674147148, 34.54711142870468], [-77.35773796899016, 34.54713916104163], [-77.35782413917127, 34.54714548297103], [-77.35800227565682, 34.54715855179397], [-77.35802778126006, 34.54716121807661], [-77.35821575550546, 34.547188564541734], [-77.35829274182201, 34.547202081112275], [-77.35835673190775, 34.547241068637845], [-77.35847908111087, 34.547302442342584], [-77.3585442170838, 34.547336485484045], [-77.3586035718809, 34.54739761180149], [-77.35864337969734, 34.54741948325211], [-77.35865809763756, 34.54744250007868], [-77.35864149608429, 34.5474695670166], [-77.35862115201799, 34.54767768160586], [-77.35861418004555, 34.547693647297066], [-77.35861127057011, 34.54770323090254], [-77.35860079197246, 34.547934466568485], [-77.3586002620003, 34.54794047498495], [-77.35859966291706, 34.54794595328865], [-77.35861102724803, 34.54806133676615], [-77.35859647383086, 34.54817911151504], [-77.35859882655062, 34.548185505314756], [-77.35859488160116, 34.54819199699354], [-77.35858459903953, 34.54822620054059], [-77.35852923421088, 34.548408426616405], [-77.35850364332586, 34.5484440338076], [-77.35849536180527, 34.548497006136664], [-77.3584364938078, 34.54861167445371], [-77.35838364093684, 34.54870613587988], [-77.35837712180282, 34.54871411502337], [-77.35830352208647, 34.54879534812295], [-77.35817578616765, 34.54893376437474], [-77.35814903355742, 34.5489685530888], [-77.35813716079375, 34.548986448020834], [-77.35809604131418, 34.549040570016075], [-77.35803395961369, 34.549123718653235], [-77.35801313556466, 34.54915080328598], [-77.35792499098989, 34.549261819435145], [-77.3578730302668, 34.54933100657337], [-77.3578209553842, 34.54939921008786], [-77.35777118173617, 34.54945731729437], [-77.35772155132254, 34.54950567627832], [-77.35765632563528, 34.54954532457597], [-77.35757167981956, 34.54959677766122], [-77.35748816400024, 34.54964049371749], [-77.35737236459822, 34.54972805992382], [-77.357258382856, 34.549777065744266], [-77.35700395825806, 34.549884070918594], [-77.35697586107038, 34.54989772789796], [-77.35674234625921, 34.55002273174651], [-77.35657651351099, 34.55019140229278], [-77.35637532943953, 34.55034090395252], [-77.35631786021497, 34.550472492017775], [-77.35617500796326, 34.55057908209473], [-77.35607106435519, 34.550689609024175]], [[-77.40136300368388, 34.58404208505791], [-77.40171953446382, 34.58402350811521], [-77.40175704003948, 34.58402607859092], [-77.40178624660268, 34.58402282349579], [-77.40206512999825, 34.583921441549236], [-77.40215107597412, 34.58388986390622], [-77.40238785447525, 34.58379803135091], [-77.40254511040106, 34.58373107462246], [-77.40285594319057, 34.58356499808071], [-77.40293914280794, 34.58353260457943], [-77.40299568550417, 34.583516108196775], [-77.40323442607274, 34.583527132601446], [-77.40333317740593, 34.583590739865215], [-77.40343954279844, 34.583701093265034], [-77.40372722062449, 34.58403624752507], [-77.40378253715953, 34.58413117431076], [-77.40380707096463, 34.58418723553443], [-77.40384208230161, 34.58430593987053], [-77.40394538854284, 34.58459184922985], [-77.40398844764229, 34.58472875488753], [-77.40407035368082, 34.5849983901222], [-77.40407913682944, 34.58504253451093], [-77.40410345068854, 34.585398965502904], [-77.40410369497032, 34.585418154485936], [-77.40410229954773, 34.58543882146057], [-77.40408622985146, 34.58584525072802], [-77.404014291724, 34.58616489609787], [-77.40399409214376, 34.58628312499244], [-77.40391032062064, 34.58652256395551], [-77.40384786251283, 34.58672880511709], [-77.4038185415301, 34.58683136532098], [-77.40372728928234, 34.58712334674138], [-77.40371534758467, 34.587159638044284], [-77.40371042688699, 34.587173215871616], [-77.40358774919396, 34.5874651381712], [-77.40348113664692, 34.58763088216199], [-77.4033332551342, 34.587987895537964], [-77.40330177226704, 34.58804742044427], [-77.4032993162934, 34.58808169744435], [-77.40330238754328, 34.588114515021125], [-77.40330814418122, 34.58850499926505], [-77.4033302807068, 34.58892315595568], [-77.40333035349325, 34.58892636999884], [-77.40332846793122, 34.58893181995551], [-77.40325705478007, 34.58936152356672], [-77.40314404507197, 34.58959851171926], [-77.40293923294361, 34.59010795931687], [-77.40289347699263, 34.59021384207548], [-77.40282120147151, 34.59027357222535], [-77.40286355538895, 34.59034900032963], [-77.40292604873542, 34.59110759339512], [-77.40293214018565, 34.59111437398705], [-77.40293925049035, 34.59117325495871], [-77.40302301843406, 34.5918525112897], [-77.40302318059011, 34.59194272767668], [-77.40304514702922, 34.592053634461536], [-77.40307561928054, 34.592212831702895], [-77.40310036974165, 34.59235616431963], [-77.4031274455712, 34.59257409800137], [-77.40325119231863, 34.59275897473256], [-77.40293928956662, 34.59338105952065], [-77.40285889032776, 34.593578112856605], [-77.4028099001382, 34.593671806753], [-77.40250369651099, 34.59409583222442], [-77.40247135144187, 34.594145235196265], [-77.40231233618465, 34.5943418510261], [-77.40216984038072, 34.59459317089025], [-77.4021569650216, 34.59461517560437], [-77.40215499377065, 34.594619611308374], [-77.402151140693, 34.59462811473511], [-77.40195343422994, 34.59506911886312], [-77.40188559743754, 34.59521739031891], [-77.40175705868836, 34.59541391478846], [-77.40171392839451, 34.59548178565123], [-77.40167755899982, 34.5955335004111], [-77.4015478512476, 34.59575139841704], [-77.40139516960086, 34.595998820915966], [-77.40138207097442, 34.59602128997565], [-77.40136296936407, 34.5960445981441], [-77.40118477984626, 34.596261779813474], [-77.4009886252417, 34.59648205398177], [-77.40096887476354, 34.59650784618669], [-77.40079420186706, 34.59674649958217], [-77.40070560664475, 34.59680651545523], [-77.40057477640333, 34.59689710038461], [-77.40053067685214, 34.59692519196442], [-77.40042803424302, 34.59698751072449], [-77.40025731809406, 34.597094709373636], [-77.40018067604848, 34.59714723907919], [-77.39982386246828, 34.59749925189616], [-77.39980929472266, 34.59752583424085], [-77.39978657050221, 34.59756729968766], [-77.39950181355341, 34.597970287798276], [-77.39947342435012, 34.59806160797946], [-77.39915431626065, 34.598444993573864], [-77.39906772681539, 34.59853223170851], [-77.39899834395409, 34.598555610408376], [-77.39887853968202, 34.59861384257006], [-77.39860423163448, 34.59878425957257], [-77.39846176331879, 34.59881599532951], [-77.39821012044423, 34.59891711094148], [-77.39792880164637, 34.598924851546016], [-77.3978160117697, 34.59894882956236], [-77.39773042637829, 34.59898277617184], [-77.39742189407613, 34.59918124926496], [-77.3971430262861, 34.59928386259042], [-77.39702777887439, 34.59931324843721], [-77.39670236604313, 34.59957382294444], [-77.39663365259838, 34.599631245259914], [-77.39661969981218, 34.599644738086575], [-77.3965911566523, 34.599663885675085], [-77.39623952630357, 34.599897262462335], [-77.3960606523188, 34.599972283350546], [-77.39584539755135, 34.60016250260007], [-77.39546906995501, 34.60023113856622], [-77.39544064890153, 34.600242952573424], [-77.39541744059028, 34.60025775091428], [-77.39515742958034, 34.60040327832227], [-77.39505714791704, 34.60047248315847], [-77.39490658170705, 34.6005938106528], [-77.39466301343421, 34.60072540082346], [-77.39462007966338, 34.60075107470038], [-77.39449386623009, 34.60081552689062], [-77.39432654707085, 34.60090177827004], [-77.39426888023304, 34.600932058841906], [-77.39418536983581, 34.600949980423934], [-77.39396784757642, 34.600991672844415], [-77.3938747543309, 34.601029054524616], [-77.39363529302764, 34.60110596363504], [-77.39348062392781, 34.601165286281514], [-77.39327391277935, 34.60121414328107], [-77.39308649644734, 34.601256005432404], [-77.39291216062311, 34.60128040172941], [-77.39269236097246, 34.601418817929215], [-77.39237409638449, 34.60146407325419], [-77.39199579247497, 34.60117578037575], [-77.39194617772249, 34.60113766068013], [-77.39190415709065, 34.6010782626191], [-77.39156944076127, 34.60081269105112], [-77.39152870774444, 34.600798486703965], [-77.3914640428756, 34.60077830327364], [-77.39111596645802, 34.60067860404964], [-77.39094939864523, 34.60065696949215], [-77.39036335670232, 34.60060039792853], [-77.39032774109016, 34.60060857186799], [-77.39030236685473, 34.600598161793684], [-77.39007017636214, 34.600604304075844], [-77.38958471530403, 34.60062559643288], [-77.38953950343048, 34.60063569982966], [-77.3887980462403, 34.600737313103025], [-77.38875125232465, 34.6007490378506], [-77.38871554421698, 34.600761150780826], [-77.38863935843142, 34.60081059970133], [-77.38813673382882, 34.60107025568327], [-77.38796295704373, 34.60113045098191], [-77.38776783819715, 34.60114643628668], [-77.38756882928065, 34.60117972853776], [-77.38737495275168, 34.60120860493317], [-77.3871747013772, 34.60122657468358], [-77.38701738736654, 34.601213902771995], [-77.38678058058494, 34.601228448983576], [-77.38641849348599, 34.60116526543904], [-77.38638647131968, 34.60116365225588], [-77.38637013447668, 34.60115534093148], [-77.38634892921726, 34.601140797314464], [-77.3859924031045, 34.600873067817545], [-77.38594268626575, 34.60082835797344], [-77.3858913503474, 34.60078219185874], [-77.38579537599917, 34.6006948469393], [-77.38574298451826, 34.60064774392649], [-77.3856897867719, 34.60059896404117], [-77.38559834563667, 34.60053892188628], [-77.38544011703405, 34.60059311240601], [-77.38536882519959, 34.60061027469093], [-77.38520419091105, 34.600735738303825], [-77.3851392893263, 34.600820701059796], [-77.38504160662444, 34.60090467973038], [-77.38481001204879, 34.601047334572506], [-77.38448873577042, 34.60106284512091], [-77.38441588804136, 34.60106709549967], [-77.38437176522591, 34.60104876614578], [-77.38420750502759, 34.60102490689003], [-77.38406141805791, 34.60100326395772], [-77.38402178363317, 34.60098899569043], [-77.38377560397855, 34.60092780305354], [-77.3836276892387, 34.600865950928394], [-77.3833231568666, 34.60082430288337], [-77.38323357053434, 34.60086246695262], [-77.3831716306871, 34.60081637911177], [-77.38311391859772, 34.60075796207977], [-77.38296786954767, 34.60064072435696], [-77.38283953600288, 34.60047144189201], [-77.38278957537965, 34.60043397234133], [-77.3827722190433, 34.60038264502468], [-77.38275587970278, 34.60029483923758], [-77.38272675568601, 34.60008621642535], [-77.38262261038676, 34.59997964244461], [-77.38252599571143, 34.59990689889832], [-77.38244555708852, 34.59984757996085], [-77.38232267299236, 34.599890502056084], [-77.382051418046, 34.59995373202854], [-77.38194855678313, 34.60007678782895], [-77.38183438532897, 34.60028408723275], [-77.38170537366588, 34.60053639898496], [-77.38167787520945, 34.6005626759435], [-77.38165715679366, 34.60058247391072], [-77.38140685027584, 34.600734379814945], [-77.38126300295554, 34.600732018113554], [-77.38115989404598, 34.6007260845493], [-77.38086888883647, 34.60071053787304], [-77.38082833647287, 34.6007064762757], [-77.38048552946091, 34.60072378570483], [-77.38047476633426, 34.60072368604508], [-77.38046761703211, 34.60072247429017], [-77.38043968769259, 34.600718797136665], [-77.38015079407295, 34.60068487229081], [-77.38008065934913, 34.60067414965943], [-77.37984185763503, 34.60063763976909], [-77.37968656829992, 34.6005637050297], [-77.37958763455246, 34.60052360264883], [-77.37941420155863, 34.6004420067823], [-77.37934834881776, 34.60039132647553], [-77.37929249813138, 34.60037671506075], [-77.37915686943853, 34.60033296861479], [-77.37889840256085, 34.600292100522026], [-77.37875837489523, 34.60026279683602], [-77.37854975448879, 34.600142004679796], [-77.3785043345105, 34.60010811979967], [-77.37828875725148, 34.59998731420398], [-77.37792661290598, 34.59980722836342], [-77.3777162538887, 34.59956010699405], [-77.37743012487576, 34.59933793882198], [-77.37735754916899, 34.59904009614655], [-77.37746050495048, 34.5987495081775], [-77.3776219255339, 34.598254891341895], [-77.37766265249977, 34.598147012526894], [-77.37762292211612, 34.59805173739216], [-77.37752413752628, 34.59774240810114], [-77.37755503244436, 34.597563672818346], [-77.37771684025684, 34.59746894886821], [-77.3778382028934, 34.59740331557893], [-77.3781109992411, 34.5972717750516], [-77.37816713450627, 34.59722519858289], [-77.37835000634331, 34.59703169388276], [-77.37850520807436, 34.59688457227251], [-77.37876203130767, 34.59656693276432], [-77.37929357812192, 34.596249125517964], [-77.3793453750099, 34.59620629395532], [-77.37978779472873, 34.595825716654474], [-77.3799147490194, 34.59569968180741], [-77.380012807318, 34.59561107693161], [-77.38008201167906, 34.595316700569], [-77.38010055791204, 34.59526830887138], [-77.38010163426605, 34.59524818689229], [-77.38009375908746, 34.59523668798092], [-77.38008203511205, 34.59522456092128], [-77.37991281461865, 34.59503319074846], [-77.37969206212837, 34.594882645795195], [-77.3796898549268, 34.59488099858191], [-77.37968292726708, 34.5948784634122], [-77.37929393381492, 34.59490001316931], [-77.37901794680727, 34.594852563665114], [-77.37893511944756, 34.5945671594206], [-77.37891911247257, 34.594165451733005], [-77.37891043460725, 34.594134963877686], [-77.37890005158205, 34.59411991759703], [-77.37869475333656, 34.59375267075289], [-77.37862395285602, 34.59363590101434], [-77.37850618299944, 34.59331872114747], [-77.37835580589984, 34.593114454049754], [-77.37799755177787, 34.59300400907054], [-77.37832175697625, 34.592758435243034], [-77.3785064067552, 34.592504974695714], [-77.37871044181227, 34.592271906994625], [-77.37915162561384, 34.591988582795274], [-77.37923351962142, 34.59191083960029], [-77.3792947415703, 34.59185383768143], [-77.379428974971, 34.59180401138043], [-77.37968885444485, 34.59171900534732], [-77.37979193341042, 34.59158276169649], [-77.3797542891109, 34.591477171567306], [-77.3797635241045, 34.59139548497108], [-77.37983943245445, 34.59104033799485], [-77.37986092379975, 34.5907977999931], [-77.37999121582783, 34.59059390066182], [-77.38004028445246, 34.590540555714], [-77.38008325533406, 34.59046012492292], [-77.3801741189613, 34.59024081167145], [-77.38018549112783, 34.59014133917178], [-77.38017610979298, 34.59004276714545], [-77.38012109152228, 34.589938338440035], [-77.3800833976276, 34.58990857965808], [-77.3799855159593, 34.58985106730139], [-77.37986414308813, 34.58976308648459], [-77.37980728065483, 34.58964427600925], [-77.37957072187407, 34.58938080825946], [-77.37970851302448, 34.58895678653296], [-77.37971660557758, 34.58893522181552], [-77.37970956278177, 34.58891471905247], [-77.37958637295411, 34.58852942603867], [-77.37949103761558, 34.58833268936196], [-77.37954140420135, 34.58795141141363], [-77.37967695333063, 34.58766724535266], [-77.37983134092622, 34.58737271745808], [-77.37989117222024, 34.58721181008704], [-77.37990747838224, 34.586975254792975], [-77.37988054912567, 34.58678877716093], [-77.37986880698917, 34.58655832681343], [-77.38006152624529, 34.5859382438025], [-77.38007071033606, 34.58591224465299], [-77.38004539324109, 34.58587381705621], [-77.38008446168864, 34.58581098639625], [-77.3802167260616, 34.585748709572385], [-77.38087264195923, 34.58548330406521], [-77.38095985374098, 34.585690075635554], [-77.38107758877172, 34.58576712892969], [-77.38126659217005, 34.58587569187154], [-77.38131591620669, 34.58610413867804], [-77.38135884697931, 34.586250653653806], [-77.38144507274197, 34.586563292163746], [-77.38126635971955, 34.58681840728201], [-77.38119394564491, 34.58694606433688], [-77.38112296082194, 34.58703428214889], [-77.38096945810415, 34.58737614552536], [-77.38091761091054, 34.587488442688006], [-77.38100958543936, 34.587623311159], [-77.38102013845217, 34.587685947952515], [-77.38105746551217, 34.587693120327664], [-77.38107608136103, 34.58768538790732], [-77.38126616619695, 34.58760521531502], [-77.38143542483448, 34.58765599948069], [-77.38166022009389, 34.587618718322254], [-77.38179173092699, 34.58764532206898], [-77.38198594833688, 34.58775902812541], [-77.38203363617825, 34.58777435411073], [-77.38205423672478, 34.587790198773924], [-77.38219740841951, 34.587882828402435], [-77.38226037112291, 34.58792191312306], [-77.38226932981848, 34.587930465401065], [-77.38244822746002, 34.58808048419324], [-77.38246564282376, 34.58809568455049], [-77.38248568154133, 34.588111563564226], [-77.38264521722738, 34.588254598405435], [-77.38269853863454, 34.58823572052907], [-77.38272363382673, 34.58837406414841], [-77.38275844533489, 34.588496812670265], [-77.38278082363027, 34.58855969067732], [-77.38284213639106, 34.58874473033289], [-77.38287854828108, 34.588864806533785], [-77.38289418536331, 34.58890181227429], [-77.38303909081088, 34.58908790667551], [-77.38304120622367, 34.58909062338698], [-77.38304342494465, 34.589092583387185], [-77.38323608815227, 34.58924441062832], [-77.3832687234431, 34.58923723135736], [-77.38357591138485, 34.5891696545296], [-77.3836301826317, 34.58910584754949], [-77.38382953903043, 34.588766986427984], [-77.38386600195854, 34.58859111841934], [-77.38387092104102, 34.58833645568179], [-77.3838954301019, 34.58819392597601], [-77.38389156433479, 34.588052108801804], [-77.38388137419437, 34.58791038325282], [-77.38381466245076, 34.58772156061099], [-77.38379102594767, 34.58767180255605], [-77.38378947856077, 34.587499064486636], [-77.3838275685369, 34.5874551973781], [-77.38391442831863, 34.58736233350912], [-77.38402461896968, 34.58734970285904], [-77.38409640006275, 34.587377476171646], [-77.38422163063183, 34.587425929775364], [-77.38424025390111, 34.58743408463979], [-77.38435254981388, 34.58748910960258], [-77.3844186317132, 34.58755482985816], [-77.38466178270905, 34.58763531328144], [-77.38481265758124, 34.58770460200262], [-77.38486555037082, 34.58771152076515], [-77.38507766870215, 34.5877379312139], [-77.38535328601728, 34.58796478729177], [-77.3856007291208, 34.58792307305865], [-77.38573186342768, 34.58778487923234], [-77.38599481643232, 34.58776656600364], [-77.38617666785049, 34.58777542792552], [-77.38619974498485, 34.58777993688195], [-77.38638886380969, 34.5878187682206], [-77.38672512210316, 34.587924990312466], [-77.38676885080147, 34.587933823095796], [-77.38678289984325, 34.58793650733603], [-77.38680479993714, 34.58793709860268], [-77.38717694751848, 34.58799365144099], [-77.38734365557143, 34.58801543177888], [-77.38739196578615, 34.58802174347607], [-77.38757099471756, 34.58805628711613], [-77.38768090377357, 34.58809332993969], [-77.3878909714224, 34.588181467393575], [-77.38793967343814, 34.58820176377198], [-77.38796502717108, 34.588211399870985], [-77.38804087798323, 34.588241581746466], [-77.3883590606247, 34.588369176451266], [-77.38846309725513, 34.5884114444318], [-77.3886544446353, 34.58849595296771], [-77.38871896477362, 34.58852342354426], [-77.38875309375084, 34.58853817513705], [-77.38897358953233, 34.58863692004065], [-77.389147127561, 34.58871297202323], [-77.3892280065927, 34.58875067178211], [-77.38938136828283, 34.58881570456471], [-77.38948630465012, 34.58885968287645], [-77.38954116361904, 34.58888318160197], [-77.3897232098785, 34.58896256432863], [-77.3897381821166, 34.588969093101035], [-77.38974267294736, 34.58897105136055], [-77.38993520082403, 34.58905640647909], [-77.39002828171158, 34.58904670413593], [-77.39008735461417, 34.58913847157134], [-77.39011026487071, 34.58932382409512], [-77.39013891296582, 34.58955560568418], [-77.39016092587956, 34.58973370017769], [-77.39018099156972, 34.58981446901383], [-77.39003005713953, 34.58999587155249], [-77.38996496479868, 34.5900374739209], [-77.38993505945062, 34.590064126034555], [-77.38984464128437, 34.590120015947164], [-77.38954095173466, 34.5903447905751], [-77.38943650869265, 34.590393508273706], [-77.38914685952186, 34.59050336804517], [-77.3891039621877, 34.590507761522154], [-77.38894982178063, 34.59052354831368], [-77.3887791762101, 34.59057236916239], [-77.38875277872997, 34.59057754379131], [-77.38872733406541, 34.59058087036808], [-77.38870264120537, 34.59061184418197], [-77.38870589349486, 34.590661874787365], [-77.38875272462658, 34.590929815558724], [-77.38875949999851, 34.591020899267654], [-77.38876966665337, 34.5910267481538], [-77.38894973941888, 34.591068227820195], [-77.38905983981078, 34.59107857006357], [-77.38914677475515, 34.59107286691398], [-77.38924295888069, 34.59106213032871], [-77.38934381336284, 34.59105505277724], [-77.3894278775745, 34.59105355524411], [-77.38954085029033, 34.59104831635229], [-77.38967660727326, 34.59104223750599], [-77.38978682039944, 34.591039647571336], [-77.38993492362366, 34.59103736034337], [-77.39007432674339, 34.59111299160404], [-77.39021380111467, 34.591243082363505], [-77.39027139318588, 34.591296799771584], [-77.39029868869294, 34.591622843516355], [-77.39028233929466, 34.591657768223854], [-77.3901318450373, 34.591875267870016], [-77.39012429218153, 34.59188470688583], [-77.38993478521577, 34.59203406844995], [-77.38987762522918, 34.59207911945952], [-77.38978200391217, 34.59215448356356], [-77.3896798254405, 34.5923191411401], [-77.38954065332936, 34.59242141322626], [-77.38932762278952, 34.59244950955689], [-77.38896224404358, 34.59249867303113], [-77.38875248022495, 34.59252825091819], [-77.38858458097171, 34.5925708248264], [-77.38841486427305, 34.592776177158285], [-77.38838596095265, 34.592810083979], [-77.38835835341254, 34.5928326180258], [-77.38799992345675, 34.59326057109048], [-77.38798911619634, 34.593288973664606], [-77.38796419520357, 34.593313807053676], [-77.38787316342308, 34.593376909466734], [-77.3877490950793, 34.593489593871915], [-77.38766697952171, 34.59362872476228], [-77.38761964898896, 34.59373996506432], [-77.3876046478134, 34.59377941771268], [-77.38757001360955, 34.59390935961585], [-77.38752100703677, 34.594178754043824], [-77.38750323280965, 34.5945340493949], [-77.38752443801117, 34.594651794677745], [-77.3875698787092, 34.59472583088616], [-77.387668973444, 34.59489976692417], [-77.38783497826934, 34.59498262262484], [-77.38788717057088, 34.595057776952935], [-77.3879638946114, 34.59518622061909], [-77.38803772696971, 34.59503290681147], [-77.38808969289256, 34.594945898835284], [-77.38848174721431, 34.59459803935142], [-77.38875217856226, 34.59451793960082], [-77.38910409977713, 34.59442051645421], [-77.38920854273582, 34.59442709154323], [-77.3895403816406, 34.59433155221127], [-77.38989331788116, 34.59430561365358], [-77.38993447151431, 34.59431253142245], [-77.38997920133362, 34.594297079458926], [-77.39032856483547, 34.59426592305328], [-77.39038717204048, 34.594253203514754], [-77.39052561116964, 34.59424359886937], [-77.3906118555905, 34.594157666130386], [-77.39066656633457, 34.59408932892829], [-77.39072269457034, 34.59392988473411], [-77.39080175348002, 34.593705713728724], [-77.39093812739522, 34.59349351722405], [-77.39110903106074, 34.59323683439202], [-77.39111316314907, 34.59323224953609], [-77.39111686779111, 34.59321534813433], [-77.3912058647912, 34.59289414050239], [-77.39119567659263, 34.592799770262644], [-77.39118758457488, 34.59272481429635], [-77.39111695305601, 34.592526234657], [-77.39108454365868, 34.592426157248546], [-77.39106795522474, 34.592393619036635], [-77.39110909933689, 34.59197165213625], [-77.39110715566484, 34.591963396864635], [-77.39111128440395, 34.591956617982], [-77.39111702461359, 34.591949868745246], [-77.39112454825099, 34.591952782498495], [-77.3915111151807, 34.59182621124444], [-77.39189506027948, 34.59183886150674], [-77.39190518892057, 34.59183794568112], [-77.39191253292367, 34.59183934159237], [-77.39193551783364, 34.591843939334645], [-77.39229925532605, 34.59191669886583], [-77.39255300207353, 34.59175488842727], [-77.39262654640895, 34.59167230153233], [-77.39269336415073, 34.59160013033646], [-77.39293124921889, 34.591444059878405], [-77.39308746675204, 34.5913149580172], [-77.3931363895531, 34.591298888670664], [-77.39332695923254, 34.59121869664398], [-77.39343928217748, 34.59115695300436], [-77.39348155438717, 34.5911568172595], [-77.39369434048879, 34.5911657103543], [-77.3938471282152, 34.59117437540566], [-77.39387562462515, 34.59117106039574], [-77.39390563596078, 34.59116756905252], [-77.3942696953527, 34.59118043784524], [-77.39436635246341, 34.59117292240445], [-77.39451828589284, 34.591203609515205], [-77.39466376141065, 34.59124662232803], [-77.39492004838276, 34.591413493158285], [-77.3949296801469, 34.59155014953782], [-77.39491728192124, 34.591687071781855], [-77.39468516060705, 34.59187194413653], [-77.39467106317903, 34.59188190053611], [-77.39466370883183, 34.591886788496545], [-77.39463721386282, 34.591907403119265], [-77.39426960484352, 34.59222392455177], [-77.39420156990627, 34.59229297206692], [-77.39407255437806, 34.592361564328485], [-77.39402511559993, 34.59239171540214], [-77.39392236679514, 34.59245702035017], [-77.39387550372142, 34.59249424828554], [-77.39368323509703, 34.5926481547455], [-77.39367728789443, 34.592652915341596], [-77.39366534464432, 34.592670007532504], [-77.39352454751857, 34.59288848171884], [-77.39348137664695, 34.59300992617811], [-77.39339271631778, 34.5932365686577], [-77.39336149417515, 34.59333656818074], [-77.39336729549673, 34.59345859217662], [-77.39341697869253, 34.594108439799285], [-77.39341224230304, 34.5941783903828], [-77.393432787874, 34.5942276499386], [-77.39348125853145, 34.594256021952276], [-77.39362628424061, 34.59430376899255], [-77.39387532836722, 34.59443860505005], [-77.3942047778214, 34.59413375150105], [-77.3942694458947, 34.594078761930696], [-77.39428373650856, 34.594068093251366], [-77.39429553737571, 34.594050996066564], [-77.39447539151595, 34.593803202087216], [-77.39463992117373, 34.593576753959965], [-77.39465236188389, 34.59356288154631], [-77.39466357286761, 34.59355972743799], [-77.39467577326278, 34.593558438642646], [-77.39505766114888, 34.593485965450014], [-77.39508910894753, 34.59347808487399], [-77.395379110221, 34.593391875673206], [-77.3954517519447, 34.59336621156306], [-77.39559679128783, 34.59328248176384], [-77.39584584648233, 34.59317239427483], [-77.39600183980157, 34.593123798818354], [-77.39621639094639, 34.59292479140976], [-77.39623994412574, 34.59289809867696], [-77.39630914222514, 34.592911412155715], [-77.39656957321503, 34.59294327905222], [-77.39663402118566, 34.59293609197956], [-77.39673898826678, 34.592962497139574], [-77.39720433134804, 34.59301697911217], [-77.39742216988586, 34.59314381459303], [-77.39770705817627, 34.5932519642099], [-77.39777604393149, 34.593548950158045], [-77.3978162311447, 34.59358231537874], [-77.39800142609701, 34.59374147849124], [-77.39809668425885, 34.593927266993845], [-77.39821029131178, 34.59416314973015], [-77.39827178596269, 34.59426032299589], [-77.39829490617424, 34.59432324394871], [-77.3983309555726, 34.59444805345056], [-77.39832041399545, 34.595050032945], [-77.39834578741132, 34.59516504950642], [-77.39834854196567, 34.595313642474075], [-77.39821024553822, 34.59539345476851], [-77.3980062242874, 34.59543383508745], [-77.3978161483885, 34.59554751602584], [-77.39770438724486, 34.595561746247924], [-77.39761910069153, 34.59559165347784], [-77.39755711598039, 34.59570339584943], [-77.39754059372706, 34.59583349805101], [-77.39742202987757, 34.5961348124947], [-77.39741904056568, 34.59614466648847], [-77.39741289898447, 34.596148772431846], [-77.39696973765274, 34.59657459684369], [-77.39686912877686, 34.596651784213066], [-77.39697424387869, 34.596694434495596], [-77.39707219907376, 34.596670206812675], [-77.39742200853348, 34.59660362988359], [-77.39774294439962, 34.59652573431037], [-77.39780774335497, 34.59650737416765], [-77.39781610918567, 34.59650213529687], [-77.39782801688682, 34.5965006335567], [-77.39821020682149, 34.59645580416853], [-77.39821151492797, 34.596456729983544], [-77.39822544193044, 34.59645613015618], [-77.39856942092068, 34.59644408644737], [-77.39864368908844, 34.59643822474716], [-77.39899840046984, 34.59636643409912], [-77.39921685059062, 34.5963131048681], [-77.39937908138465, 34.59627524621855], [-77.39939249763701, 34.59627194358171], [-77.39940822443114, 34.59626855244941], [-77.39978659434396, 34.596148834659644], [-77.39987249053408, 34.596125975395275], [-77.40006099079594, 34.59606236226307], [-77.40018069112851, 34.59592271786784], [-77.40027079220403, 34.59573647511581], [-77.40018069650313, 34.595506421544954], [-77.40012420831508, 34.59539390912005], [-77.4000676372615, 34.595341211846275], [-77.39978661416481, 34.59503080416901], [-77.39975270747645, 34.59499860490864], [-77.3997309529414, 34.59496521351162], [-77.39973561113428, 34.594909590402445], [-77.39965310377391, 34.59455187133884], [-77.39961497288837, 34.594317732690634], [-77.39962003939713, 34.59413206792757], [-77.39966122180624, 34.59399101136671], [-77.39975543717864, 34.59368795962655], [-77.39976714030833, 34.593665263110225], [-77.39978664032989, 34.593627445334874], [-77.39993575040408, 34.593398013600336], [-77.39998368604023, 34.59334872891648], [-77.40011073739576, 34.593212123541804], [-77.39998369151147, 34.593028796357004], [-77.39998087621329, 34.59302160621229], [-77.39997635839335, 34.593019224754556], [-77.3997866537969, 34.592933401649105], [-77.39969779856212, 34.59294285866649], [-77.3994539885305, 34.59294847005263], [-77.39939257411422, 34.592970380230696], [-77.39930770194755, 34.59299484785428], [-77.39899849282449, 34.5930478798454], [-77.3989059331719, 34.59306109466961], [-77.39888002997526, 34.5929651102996], [-77.39885105343197, 34.59270357647454], [-77.39891282289429, 34.59253580587527], [-77.39890482300378, 34.592436021968936], [-77.39885129915231, 34.59227871780662], [-77.39873823561919, 34.59213642025906], [-77.39868011870949, 34.592063276511], [-77.39860444978846, 34.59198069088339], [-77.39849408025049, 34.591865986856995], [-77.39838776330454, 34.59176240920208], [-77.39835075892452, 34.59161651356068], [-77.39824870177165, 34.59135789820177], [-77.39826292998217, 34.591299251902484], [-77.39831192784754, 34.591033576417836], [-77.39835489005355, 34.59091800558862], [-77.39837222409604, 34.59087754823007], [-77.39835138279201, 34.590766640749436], [-77.39826213802789, 34.59077481823404], [-77.39821042150083, 34.59081558169741], [-77.39814190115013, 34.59087491109439], [-77.39804679823294, 34.59096245291821], [-77.39781633606543, 34.591181610353374], [-77.39768073627953, 34.591293745005025], [-77.3974222618125, 34.59124982098726], [-77.39729921404782, 34.59120287543016], [-77.39722523004588, 34.591174648706414], [-77.39704706833008, 34.59110667538194], [-77.39703457362283, 34.5911016092622], [-77.39702819932717, 34.59108660465328], [-77.39685239707933, 34.59089960574161], [-77.39679470534396, 34.590718507745706], [-77.39680826039368, 34.59047955209368], [-77.39681124057506, 34.590291550096296], [-77.39700432230144, 34.58986492157874], [-77.39701369949158, 34.589837771687606], [-77.39701942276213, 34.58982741601924], [-77.39702826864469, 34.58981601173114], [-77.39738964644674, 34.58935896492838], [-77.39739765593, 34.5893311951415], [-77.39742235807954, 34.58932225933867], [-77.39756797449265, 34.589176354897184], [-77.39781643877302, 34.58891874706418], [-77.39784545286953, 34.58889989522945], [-77.39790316533706, 34.588860309501484], [-77.39821051452117, 34.58854345250547], [-77.39837636816695, 34.58854616490218], [-77.39833690887451, 34.5883731606006], [-77.39830637239265, 34.58827429660127], [-77.39821960238547, 34.58796551149584], [-77.39821053952475, 34.58794750228022], [-77.39809193824443, 34.5876871549742], [-77.39801352645054, 34.58761891075], [-77.39799704870309, 34.587590801528805], [-77.39796597895815, 34.58757752864443], [-77.39786613585045, 34.58753845612062], [-77.39781650417439, 34.58751903321468], [-77.39775171545742, 34.58753863438881], [-77.39761947421593, 34.58758300158136], [-77.3975392280264, 34.58763909482491], [-77.39747124553796, 34.58770148642739], [-77.39742243718294, 34.587777697755016], [-77.39720844205745, 34.58791737444151], [-77.39702836587792, 34.5880689014106], [-77.39696560334116, 34.58807879749564], [-77.39663430920673, 34.58807451286072], [-77.39636822225826, 34.58809471518902], [-77.39624025092962, 34.58810253556883], [-77.39611355983195, 34.588132832877996], [-77.3960432188141, 34.588158239450394], [-77.39587323422793, 34.58830400007237], [-77.39586284026045, 34.58832345111627], [-77.39590249820999, 34.58866364438969], [-77.3959452433817, 34.58871818451995], [-77.39599694751561, 34.58887320988363], [-77.39595241003099, 34.589141722649906], [-77.39584611602156, 34.589219911635794], [-77.39567251306256, 34.589419640795434], [-77.39563541648765, 34.58941444623126], [-77.39545204305739, 34.589367491447064], [-77.39534810668516, 34.589340877259005], [-77.39525501553172, 34.58931704002248], [-77.39516698173733, 34.58925501822507], [-77.39512771286324, 34.589185566317], [-77.39505800960168, 34.588996811133626], [-77.39501526832274, 34.58889838923365], [-77.394997911617, 34.588854833923975], [-77.39494320076619, 34.58873900507377], [-77.39489284954855, 34.58862339716738], [-77.39476294083235, 34.58857077378299], [-77.39466398770791, 34.58853068990169], [-77.3946307455655, 34.58851904010967], [-77.39455271540086, 34.588494477953404], [-77.39426994162875, 34.5883859748073], [-77.39406237006932, 34.58836427855898], [-77.39386852352645, 34.58816859178248], [-77.39427001511373, 34.58756484296159], [-77.39436224900007, 34.58734759290483], [-77.39442648399516, 34.587238971914736], [-77.39444884817335, 34.587043112317026], [-77.39448455857753, 34.58680602404197], [-77.39449163620307, 34.58661912663069], [-77.39450131657418, 34.58637903564601], [-77.39466419463395, 34.58610174798873], [-77.39473909773601, 34.58600086225091], [-77.3949012529067, 34.585896776185464], [-77.39505826765998, 34.58578735556898], [-77.3952933189647, 34.5856688999011], [-77.39574308451128, 34.58546207160101], [-77.39584638582662, 34.585420215530064], [-77.39592328296986, 34.585407630150854], [-77.39656777581477, 34.58523180376175], [-77.39662632007744, 34.585214559017246], [-77.39663448707547, 34.585207655071606], [-77.39666650453717, 34.58518306461357], [-77.39708986507588, 34.58479797503411], [-77.39722265818475, 34.58471275582066], [-77.39742260813964, 34.58454849995012], [-77.39758210463815, 34.58440817362469], [-77.39806464010216, 34.58416670972214], [-77.39816642202398, 34.58410430847084], [-77.3982107079857, 34.58408345933503], [-77.39826805135118, 34.58407557571474], [-77.39885992882337, 34.5839023458677], [-77.39899879095707, 34.58384117466493], [-77.39961386416968, 34.583756776572734], [-77.39978686708206, 34.583673481312324], [-77.39998929269127, 34.58367089963795], [-77.40049997852704, 34.58381532787061], [-77.40055933421381, 34.583823572359606], [-77.40057493429966, 34.58382377298604], [-77.40060565218228, 34.583833178464005], [-77.40114210094114, 34.58396069411344]], [[-77.30666360813595, 34.56351925151653], [-77.30602778342146, 34.56344881308511], [-77.30602504493788, 34.56344709962275], [-77.30602778981441, 34.56344332408182], [-77.30659732753954, 34.563129247404206], [-77.30714246510803, 34.56293523243585], [-77.3075041888134, 34.56323479991064], [-77.30695914307577, 34.56346762872277]], [[-77.40372695533198, 34.565620212845076], [-77.40435618333618, 34.568145112122465], [-77.40530282337053, 34.568264793153446], [-77.40544587205616, 34.568511771337604], [-77.40578923093895, 34.5686163639904], [-77.40609076734295, 34.56884237888452], [-77.406254158743, 34.56872534006327], [-77.40659537746683, 34.56880531828288], [-77.40687870755164, 34.569113801080746], [-77.4071833123119, 34.56926426417422], [-77.40687873186667, 34.56961791825668], [-77.40651232538752, 34.56981540138678], [-77.40576917525652, 34.57031756733856], [-77.40559176252053, 34.57065448727243], [-77.40530288977182, 34.57053189264207], [-77.40510138707229, 34.57063112375118], [-77.40438163749133, 34.57051785867584], [-77.40372700004025, 34.57036309444695], [-77.40355692473645, 34.570636900034614], [-77.40293301953223, 34.57156959470722], [-77.40215110496305, 34.5716379630655], [-77.40074051903419, 34.57274167740302], [-77.40169643146908, 34.57309368881488], [-77.40197282906017, 34.57341298633483], [-77.40206803688284, 34.57348875072777], [-77.40215109242553, 34.57367091950337], [-77.40235038755603, 34.57399287804384], [-77.40232853797687, 34.57421080080087], [-77.40224617828841, 34.574325158122605], [-77.4021510880249, 34.57454023737837], [-77.40211106384237, 34.57466676285083], [-77.40202793382906, 34.57481147240711], [-77.40196841717717, 34.574915076809035], [-77.4018545784142, 34.575023300619726], [-77.40175709125168, 34.575122010469265], [-77.40174542415012, 34.5751315341182], [-77.401717101957, 34.57514819402806], [-77.40146668850146, 34.57529596639719], [-77.40136309383068, 34.5753570349097], [-77.4011025005192, 34.57551770473036], [-77.40096909412401, 34.575592599421825], [-77.40091350962011, 34.57562883967772], [-77.40077781102141, 34.57570831973693], [-77.40057509188743, 34.57584022996641], [-77.40032416666162, 34.57592796114771], [-77.4001810902524, 34.57597873766192], [-77.39999328539037, 34.57604372738952], [-77.39996461953963, 34.57605893369734], [-77.39978708628851, 34.576146754917104], [-77.39962338414247, 34.5761230743002], [-77.39954989433835, 34.57614110935946], [-77.39942412878932, 34.57593710115852], [-77.39941201947197, 34.5759054058993], [-77.39943078864957, 34.57586208095], [-77.3995910792538, 34.57545499363098], [-77.39963210770767, 34.57528203648586], [-77.39951961755315, 34.57490442908524], [-77.39948956590554, 34.574620494032544], [-77.39939315234255, 34.57438737556136], [-77.39929263881596, 34.57433265357628], [-77.39922770444178, 34.574055400742495], [-77.39910950428467, 34.57382618763482], [-77.39909659396567, 34.573083839103326], [-77.39972129981484, 34.57288875820546], [-77.39978719565536, 34.5728396799767], [-77.40035593638251, 34.572560918519784], [-77.40031447650276, 34.57138583140032], [-77.40010773475989, 34.571134694433], [-77.39911884696447, 34.57114856632005], [-77.3989993074082, 34.57104861403982], [-77.39825253795514, 34.57059760715301], [-77.39821138169185, 34.57058230189372], [-77.39819783310146, 34.57057574851012], [-77.39815970789434, 34.57056664841153], [-77.39789162927346, 34.570525347339796], [-77.39781740973189, 34.570556681758234], [-77.39748038495178, 34.570603291815296], [-77.39742343227212, 34.57061933419115], [-77.39679350683299, 34.57059347655573], [-77.39663551072064, 34.57026549418883], [-77.39635340182842, 34.57028214305909], [-77.39624155478161, 34.57005697913963], [-77.39619809873386, 34.57004736331637], [-77.39621986414534, 34.56999739095913], [-77.39624156353094, 34.56994597391617], [-77.39637899340805, 34.56969794336932], [-77.39627014698212, 34.569534794878365], [-77.39624159847487, 34.56950386306532], [-77.3960204992192, 34.56917700959026], [-77.39594182519684, 34.569086884516445], [-77.39584768117389, 34.568892078714086], [-77.39579846391923, 34.56878447148587], [-77.39579849224226, 34.568412949122894], [-77.3957779599789, 34.568362857420084], [-77.39579628678096, 34.568304772150555], [-77.39584773198807, 34.5682912227333], [-77.39602141986563, 34.5681405621483], [-77.3962417228434, 34.56794457999438], [-77.3962957320889, 34.56792178616674], [-77.3966357056643, 34.567661459464084], [-77.39691926501415, 34.56765463765924], [-77.39712337735722, 34.56731959386742], [-77.39742370012756, 34.56654246397407], [-77.39760553602068, 34.566596848411486], [-77.39884702670108, 34.56638608307261], [-77.3989995278042, 34.56633269320083], [-77.4004809810773, 34.56608763614261], [-77.40057534362768, 34.56622024614313], [-77.40084543796873, 34.56622441747186]], [[-77.44706477139263, 34.734078028622775], [-77.4469858862792, 34.73437985916696], [-77.44728493990883, 34.73443758289085], [-77.44746168573616, 34.73418129744766]], [[-77.37224995676794, 34.701389547077106], [-77.37237800227858, 34.70158841457737], [-77.37243693455295, 34.701814979884205], [-77.37247646727712, 34.702062273867966], [-77.37248417877309, 34.70251860852573], [-77.37247677091716, 34.702549626303785], [-77.37247571868289, 34.702573655799256], [-77.37248620658178, 34.702638623718514], [-77.37254323792789, 34.702570935206325], [-77.37257801763528, 34.70253570907962], [-77.37341648522712, 34.70206839097677], [-77.37349446588925, 34.7019223380426], [-77.37365154818823, 34.70166848261688], [-77.37366003306678, 34.70165588106767], [-77.37366269214384, 34.701648413331974], [-77.37377574981778, 34.70139627589844], [-77.3735869260796, 34.700943168642155], [-77.37358407445689, 34.700935230896675], [-77.37358289100844, 34.70093279854699], [-77.37358073781806, 34.70092923412319], [-77.37325560245793, 34.70049299001906], [-77.37321945657027, 34.700424045566045], [-77.37316904726883, 34.700284885655265], [-77.37302920473203, 34.70003671727121], [-77.372989831228, 34.69981228461266], [-77.37272179212546, 34.699763150987714], [-77.37218888910952, 34.69970447367938], [-77.37214056437197, 34.69970323159534], [-77.37204618393984, 34.69975019981274], [-77.3712554652365, 34.70015367380114], [-77.37109501379717, 34.70030258342749], [-77.37088916946487, 34.70046725006085], [-77.37077000655407, 34.70059095134783], [-77.37072078413036, 34.700637119169095], [-77.37067968678772, 34.70080213873817], [-77.37070288026297, 34.70084387399655], [-77.37085721283884, 34.70103172271743], [-77.37088397009688, 34.70103914247258], [-77.37115665775987, 34.701031261822216], [-77.3713604647491, 34.70106659802548], [-77.37173833749327, 34.70108965686094], [-77.37211712227966, 34.70127264535189]], [[-77.37968754264165, 34.72939330406898], [-77.37967196021584, 34.72939905531226], [-77.37963853657897, 34.729399490681786], [-77.37936518421465, 34.729399314280386], [-77.37921448170498, 34.729399216686154], [-77.3790404834538, 34.7294133968405], [-77.37875850003185, 34.72935272379201], [-77.37852419935331, 34.729009459123134], [-77.37852835303175, 34.72900232852018], [-77.37881858595172, 34.72875154754942], [-77.37923596919242, 34.728707506204096], [-77.37924573008159, 34.72870590732645], [-77.37924796823265, 34.72870542927419], [-77.37925020507957, 34.72870438132534], [-77.37962647094747, 34.72857607216757], [-77.37992719086287, 34.72838214383239], [-77.37995682543257, 34.72836795205702], [-77.3799927833553, 34.72834109743951], [-77.38031002354069, 34.72819720105432], [-77.38049733975802, 34.728022511213936], [-77.38076373295314, 34.72789388189907], [-77.3810539295213, 34.72791706909801], [-77.38142326618707, 34.72783073310383], [-77.38145966103241, 34.72783226426037], [-77.38197686936257, 34.72801176624255], [-77.38201039787013, 34.72801718082247], [-77.38204514862625, 34.72804151488004], [-77.38235636458265, 34.728299929636165], [-77.38250383781497, 34.72852664170301], [-77.38259514782217, 34.728646724691664], [-77.38272383388838, 34.72880176428965], [-77.38266823092789, 34.729060773407845], [-77.38262331459765, 34.72932576687117], [-77.38260026822064, 34.72953717542073], [-77.38256633402655, 34.72964260989329], [-77.38233662312938, 34.72964702974467], [-77.38218362260612, 34.72963058675134], [-77.3821205986622, 34.72966199312142], [-77.38197960541794, 34.72965966399156], [-77.38154319727249, 34.72962782247207], [-77.38136584181595, 34.729605233504486], [-77.38122643102446, 34.729614558344544], [-77.38118157590725, 34.729622968761696], [-77.38092470070725, 34.729549460266576], [-77.38089969381213, 34.729536118769516], [-77.38078000005288, 34.729519409027716], [-77.3806619198988, 34.72952142274718], [-77.38053538527804, 34.729504962732385], [-77.38028942102153, 34.729528951980484], [-77.38015137543275, 34.729434777076726]], [[-77.37456555697064, 34.59261970651067], [-77.3745451528344, 34.59263032688402], [-77.3738459646989, 34.59267913453708], [-77.37377740746888, 34.5925744675984], [-77.3734463619225, 34.59231821504936], [-77.37319222978707, 34.591998083859], [-77.37336442647957, 34.591527977576405], [-77.37347570899207, 34.59110812881533], [-77.37328701983857, 34.59081514336881], [-77.37312570303007, 34.59030942973643], [-77.3731828670764, 34.59009350448349], [-77.37304544144271, 34.58989643225283], [-77.37333197754786, 34.58979882414802], [-77.3734504802967, 34.58976675330187], [-77.3737783290947, 34.589806266073424], [-77.37412148062965, 34.58979627827246], [-77.3743284084523, 34.58987971393468], [-77.37456647973471, 34.58976700380683], [-77.3745907037307, 34.58967381833837], [-77.37457522162293, 34.58966666557786], [-77.3745665146791, 34.58965929985902], [-77.37421096697815, 34.589687014717875], [-77.3741251735705, 34.58931632472891], [-77.37411701117978, 34.58895291644866], [-77.37412700335283, 34.588842251078155], [-77.37417279972547, 34.58858768593166], [-77.37449672135837, 34.58848928029847], [-77.3745669174947, 34.58841987937964], [-77.37458290562472, 34.58841848461064], [-77.37533985271416, 34.58830860619586], [-77.37535506883896, 34.58833509563655], [-77.37550482745574, 34.58911755633844], [-77.37559128643223, 34.58935994512674], [-77.37535466366582, 34.58961909575189], [-77.37521655665658, 34.58985949954344], [-77.37481209023808, 34.59006648350765], [-77.37513372716947, 34.590257956655584], [-77.37503471528731, 34.590883531438095], [-77.37535417068398, 34.5911862111915], [-77.37554773976174, 34.59145010809867], [-77.37592254445352, 34.59160474033642], [-77.37614211981779, 34.59184748411531], [-77.37638260165498, 34.59212840120796], [-77.37671171591921, 34.59234015915689], [-77.37692998715309, 34.59282950794451], [-77.37699057790174, 34.593083745524936], [-77.3771913615385, 34.593120173119566], [-77.37705858326632, 34.59327798720891], [-77.3769297714233, 34.59356452219396], [-77.37678899447229, 34.59332988476394], [-77.37614154850394, 34.593730407291076], [-77.37560392953174, 34.59334888996477], [-77.37549008713668, 34.59321817799615], [-77.3753536265017, 34.59292259140929], [-77.37463407511663, 34.592639494675616], [-77.37459531139514, 34.59261302558915]], [[-77.37389966636695, 34.67624429932239], [-77.37416069169979, 34.67623167530946], [-77.37446345927877, 34.6762044175571], [-77.37448188940084, 34.67621145763392], [-77.37473852448471, 34.67630273241975], [-77.37480915841043, 34.67633247707103], [-77.37478564533653, 34.67640026351147], [-77.37475562833596, 34.676454066245185], [-77.37480434201315, 34.676885088352975], [-77.37452485853963, 34.677339941404234], [-77.37456794552998, 34.67740499006878], [-77.37448295927497, 34.6774886497338], [-77.37435233876522, 34.67747279012608], [-77.37386882713064, 34.677501119555764], [-77.37380114364689, 34.677502966286], [-77.37379335768453, 34.677498230598445], [-77.37318422566257, 34.67758374741971], [-77.3731509115451, 34.67758433829971], [-77.37251713205958, 34.67777171095493], [-77.37192143098741, 34.67777092202327], [-77.37191907124877, 34.677770354544144], [-77.3719163795773, 34.677771485577374], [-77.37191771959544, 34.677769376404115], [-77.37191100646326, 34.677761682631726], [-77.37162050492525, 34.67732284244634], [-77.37155381674194, 34.67726214190337], [-77.37155486301333, 34.67696276748143], [-77.37156766820235, 34.676355318128095], [-77.37164566012979, 34.67625021770252], [-77.3717869838286, 34.67616250387033], [-77.37185942646265, 34.676238301420085], [-77.37250058167518, 34.67622705688247], [-77.37287012712724, 34.67624855838448], [-77.3729411337784, 34.67630985191687], [-77.37306812403203, 34.67623469977438]], [[-77.39502887108574, 34.720246973495136], [-77.39528001462881, 34.71978966845028], [-77.39524391550071, 34.71976306734282], [-77.39526256964638, 34.719723743285726], [-77.39530712379916, 34.71975140547686], [-77.39530546673129, 34.719779058754504], [-77.39532741334108, 34.71979228355825], [-77.39586405697321, 34.72004186076294], [-77.39592208882608, 34.72005405190102], [-77.39626351295252, 34.72027232793057], [-77.39636445071726, 34.720527382799034], [-77.39641490481756, 34.72065553805427], [-77.39644078774694, 34.72074099324855], [-77.39638275299968, 34.720807449175254], [-77.39629995863163, 34.72097129298034], [-77.39622003647098, 34.721025597640704], [-77.39610357383988, 34.721099188286374], [-77.39591791819623, 34.72111719594295], [-77.39587161546197, 34.72112168706797], [-77.39565415676344, 34.72111251312383], [-77.3955520634529, 34.721118180585194], [-77.39504107891199, 34.72085817128929], [-77.39498268201544, 34.72087064488334], [-77.39475742799252, 34.72090013891818], [-77.39484549510408, 34.72074196088], [-77.39486344284262, 34.7205676462482]], [[-77.31992647338043, 34.747725155160325], [-77.31987121315217, 34.74770246595114], [-77.31952057030391, 34.74724895750942], [-77.31942204998104, 34.74718726822107], [-77.31892370682526, 34.746938093266216], [-77.31890911470477, 34.746930752496745], [-77.31890114608176, 34.746918685419075], [-77.31882109195047, 34.746952146265066], [-77.31882670570103, 34.747174558988156], [-77.31878193847629, 34.747816672765055], [-77.31916579205134, 34.747879662254746], [-77.31969799150394, 34.74829790059438], [-77.32007230119872, 34.7479862814273], [-77.31999892665976, 34.747765559764446]], [[-77.29265393788482, 34.56358301971447], [-77.2925979049066, 34.56358013744671], [-77.29250411581226, 34.56355861446409], [-77.29250075991996, 34.563461816977224], [-77.2923643252876, 34.56333385833964], [-77.292664826307, 34.56312323056301], [-77.29302464226711, 34.563220095417954], [-77.29306860414951, 34.563224454967845], [-77.29306998698357, 34.56324218604982], [-77.29279998096219, 34.563516184712824]], [[-77.26579943258503, 34.58414642321108], [-77.26515829743097, 34.58451462735649], [-77.26511444144806, 34.584092556615374], [-77.26492349107455, 34.58390883216816], [-77.26499129971685, 34.58378239901205], [-77.26550495617215, 34.58365193068525], [-77.26554500136254, 34.58361759010556], [-77.2656287694617, 34.58358453556609], [-77.26624476032568, 34.58371010330989], [-77.26573631682261, 34.58378772652147]], [[-77.23690032010039, 34.59231865175822], [-77.2363491389113, 34.59240268068173], [-77.23586306734046, 34.59242492572792], [-77.23552009440748, 34.59166001409958], [-77.23575309333677, 34.59129793704624], [-77.23579509651988, 34.591210351738404], [-77.23592425115679, 34.591092189158054], [-77.23623518088064, 34.59077370530721], [-77.23641998784285, 34.59057643658203], [-77.23688405945441, 34.59040828030504], [-77.2374694279859, 34.59051390452992], [-77.23766778337315, 34.59052564555493], [-77.23825100714167, 34.59089068977158], [-77.23830804473648, 34.59092639008225], [-77.23831645162493, 34.590931651930575], [-77.23832578444724, 34.59093857679395], [-77.23817797776111, 34.591718232152914], [-77.23808662070422, 34.59186242394681], [-77.23796357083107, 34.59194978751325], [-77.23775320773265, 34.59202234222456]], [[-77.3999466980003, 34.73203203946409], [-77.39943991545763, 34.732037330985946], [-77.39916125939845, 34.732085656530614], [-77.39877610669633, 34.732181701729694], [-77.39875554975774, 34.732186201618894], [-77.39869826075739, 34.73220074934549], [-77.39836739832234, 34.732284165259244], [-77.39830735898884, 34.73229729896859], [-77.39806760696581, 34.73234739878579], [-77.39795324578054, 34.73235525997431], [-77.397635005718, 34.73234167020488], [-77.39748609684715, 34.732339698319585], [-77.39742901477776, 34.732338338283874], [-77.39733017406347, 34.732324676581285], [-77.39733452102844, 34.73223655514026], [-77.39738071431792, 34.732167382534094], [-77.39747236462934, 34.73172563397493], [-77.39762095638544, 34.73167619445441], [-77.3979419411367, 34.73158849165008], [-77.39804069737698, 34.73158219270677], [-77.3982946485738, 34.73156414711773], [-77.39837910127737, 34.73155502306467], [-77.398534908937, 34.73153818960202], [-77.39880774982736, 34.73150763561334], [-77.39895660857691, 34.73149256381775], [-77.39923759163594, 34.73146220066705], [-77.39941096985248, 34.73145734079338], [-77.39960642654842, 34.731462863853054], [-77.39977004459885, 34.73158453999131], [-77.3999588029612, 34.73167530655098], [-77.39998787875511, 34.73194071068967]], [[-77.42214773124027, 34.7442951743331], [-77.42189078089869, 34.74473692582092], [-77.42191215486548, 34.74521759187092], [-77.42194137853686, 34.7452739722089], [-77.42196651766551, 34.74532247158898], [-77.42230106408415, 34.7459678943148], [-77.4223204216452, 34.74600523984794], [-77.42232187621225, 34.746008046127585], [-77.4223244286396, 34.74600833388731], [-77.42232567664637, 34.74600810736504], [-77.42232672603082, 34.746007443319314], [-77.42312992141453, 34.74582630133426], [-77.42328301446112, 34.74578260095713], [-77.42349321714423, 34.745671965422375], [-77.42355350119797, 34.745494433038054], [-77.42338805174313, 34.74526024163742], [-77.42322764554349, 34.745103815200856], [-77.42288626072218, 34.7448799386456], [-77.42269923264101, 34.74471410715512], [-77.42220108437249, 34.74427292512715], [-77.422173582888, 34.7442638021752]], [[-77.33024314025323, 34.65669386922664], [-77.33029655057516, 34.65667017964153], [-77.33039171306616, 34.65662697821256], [-77.3304168477668, 34.65661566196251], [-77.33035453086474, 34.656473427073465], [-77.3302886585635, 34.65649598084282], [-77.3302619805331, 34.656611962391565], [-77.33024559696766, 34.65662260789231]], [[-77.43251028042005, 34.50364148301845], [-77.43248983847427, 34.503702680690246], [-77.4324249116526, 34.50389705783462], [-77.43229734502704, 34.50403063061903], [-77.43211176721286, 34.50419348973865], [-77.4319114991998, 34.50424166192618], [-77.4309928338061, 34.5041866475391], [-77.43083326902163, 34.50371760673978], [-77.43075968999355, 34.503614425189056], [-77.43079388938821, 34.50350774372543], [-77.43082338566884, 34.503415733919965], [-77.430866227655, 34.5032820917752], [-77.43090578094271, 34.503158710933874], [-77.43137552252234, 34.5029703039377], [-77.43146837466304, 34.502838016202354], [-77.43172760746776, 34.50278699830368], [-77.43206654545281, 34.50284324360831], [-77.43228183362032, 34.50301653418745], [-77.4326102744052, 34.50334212229388], [-77.43260209877268, 34.5033890422727], [-77.43257854222337, 34.50343712239807]], [[-77.36925513899304, 34.7220272376317], [-77.36972524252239, 34.72203824142757], [-77.36982538762625, 34.722125534379586], [-77.37005693471166, 34.722064610840185], [-77.37006233213391, 34.72188978522663], [-77.37006507632489, 34.72177670506392], [-77.37007087485235, 34.72140121942168], [-77.37006584735761, 34.7212969404882], [-77.37005146686842, 34.720998659417084], [-77.36986899988975, 34.72094156736769], [-77.36961175913758, 34.72079839290659], [-77.36910548018125, 34.721046482584796], [-77.36897806894221, 34.7211089172741], [-77.36890556224853, 34.72116857099077], [-77.3681689696099, 34.72166255292155], [-77.36816561378689, 34.721665487225955], [-77.36816185259053, 34.72166797762887], [-77.36791229575414, 34.72194151447513], [-77.3680593037537, 34.72202131897873], [-77.36818631409764, 34.72203980894437], [-77.36858906481481, 34.72204060062661], [-77.36866849863114, 34.72198542199099], [-77.36868550706649, 34.72204989642754], [-77.36899659843183, 34.72203622663669]], [[-77.37411717390184, 34.60120516788565], [-77.3739314486778, 34.60140098446238], [-77.37377446177965, 34.601534604459935], [-77.37369355291086, 34.601603617302246], [-77.37338575014888, 34.60173508751478], [-77.37338159446843, 34.60173711249031], [-77.37338026993321, 34.601738364945135], [-77.37337530102887, 34.60174194394156], [-77.37298607152296, 34.60195592143437], [-77.37279664017811, 34.60204047482211], [-77.3724503487135, 34.602022326794476], [-77.37219783913815, 34.601894825220455], [-77.3719170600778, 34.601824559767515], [-77.37157229344626, 34.60174694583777], [-77.3714096398916, 34.60174224526986], [-77.37130997466622, 34.60171688263797], [-77.37122541149463, 34.60162169144571], [-77.37072361924483, 34.60095466164566], [-77.37065103384563, 34.60085529865709], [-77.3706604283254, 34.600812253870515], [-77.37074330830089, 34.59999289186592], [-77.37062211123819, 34.59975468833481], [-77.37042328934942, 34.59940418038343], [-77.37030907297792, 34.5992063143284], [-77.36983434499899, 34.598506954480115], [-77.36979503783073, 34.59847358627604], [-77.3697007197503, 34.59844481261741], [-77.36957411399554, 34.59818257696175], [-77.36969283481862, 34.597596829993805], [-77.37062311315, 34.59701489335194], [-77.37129613877057, 34.59639247553971], [-77.37217279614057, 34.59554141034581], [-77.37220005209716, 34.59550799367348], [-77.37221228028746, 34.59553572309529], [-77.3722163597458, 34.595552720394316], [-77.372680271425, 34.59664878635928], [-77.37266336791791, 34.59716898460641], [-77.37268715881959, 34.59769112044585], [-77.37272596107243, 34.59800908768872], [-77.37281430652166, 34.59818276430709], [-77.37298730325885, 34.59829045439588], [-77.3731833586084, 34.59858101308409], [-77.37333469894091, 34.59877052149726], [-77.37353194699237, 34.599004248516806], [-77.37377519213021, 34.599296851046354], [-77.37389004348917, 34.59941587903923], [-77.37397297529515, 34.59952769886064], [-77.37416917046473, 34.59971734035588], [-77.37427654337358, 34.599792835590804], [-77.37456314898313, 34.60015013004938], [-77.37465567540434, 34.60027847390441], [-77.3746407284616, 34.60036427189314], [-77.37456301208182, 34.60058201447228], [-77.37454339691078, 34.600698118451426], [-77.37451908033248, 34.60072271188272], [-77.37430856988144, 34.600903612893866], [-77.37416872008622, 34.60111762898855]], [[-77.40931868155464, 34.57057229376362], [-77.4093608139452, 34.570648195977114], [-77.40984795643226, 34.570774655243994], [-77.41003060815412, 34.57124603260457], [-77.41008104574516, 34.571339013948105], [-77.41005807531145, 34.5713966783754], [-77.41005467144582, 34.57142308574309], [-77.41003104709607, 34.57182516072385], [-77.41003094133181, 34.57182548041019], [-77.41003065886062, 34.57182550840766], [-77.41002996568857, 34.571825316868406], [-77.4099896295767, 34.57145074219097], [-77.40963667404426, 34.571731610046854], [-77.4095061796794, 34.57176031211986], [-77.40940636703452, 34.57173897458157], [-77.40924269268834, 34.57167171241028], [-77.40914417748125, 34.571634797638396], [-77.40896900292354, 34.57155392537837], [-77.4089439343908, 34.57123561530509], [-77.40898629219872, 34.57112685049216], [-77.40917804313978, 34.57074417955241], [-77.40917843517768, 34.570674528986316], [-77.40913867648256, 34.57056826390558]], [[-77.2685611362051, 34.582546247624286], [-77.26854439680805, 34.582476906866724], [-77.26815584141532, 34.58233064755701], [-77.2680478072685, 34.58213509671767], [-77.26790089227993, 34.58205872721338], [-77.26784923572733, 34.58195091855653], [-77.26800740311279, 34.58186412884079], [-77.26823978374486, 34.58175553470201], [-77.26847225917528, 34.581620316615144], [-77.26911840165752, 34.58160264710854], [-77.26915555997215, 34.58161150907118], [-77.26961514528135, 34.58208974570992], [-77.26917909060424, 34.58231475939667], [-77.2688381176601, 34.58260285733435]], [[-77.37332963563216, 34.53582024938896], [-77.37330254026091, 34.53578467011979], [-77.37327918336172, 34.535715601427874], [-77.37340317298107, 34.53537011841069], [-77.37398918021493, 34.53532091110907], [-77.37372056392277, 34.53572442137659], [-77.3735316208571, 34.53583840290682], [-77.37339191641004, 34.53586543859785]], [[-77.33636612852126, 34.55867881636446], [-77.33637718064902, 34.55867428639767], [-77.3367060307598, 34.558673325373064], [-77.33675994338377, 34.558821904072246], [-77.33688742338269, 34.558876121136116], [-77.33684012397202, 34.55902035575409], [-77.33681148702509, 34.55908024468913], [-77.33675960568277, 34.55924435776793], [-77.33650709554999, 34.55964553914746], [-77.336365248416, 34.55977343572297], [-77.33624180210785, 34.55966405868222], [-77.3359717970731, 34.55917588266491], [-77.33596373873804, 34.55915506881131], [-77.33595412210671, 34.55914774888209], [-77.33594527476666, 34.55912038934143], [-77.33597183664186, 34.55912695632569], [-77.33615418066057, 34.55892264837079]], [[-77.28869252125915, 34.56977475051196], [-77.2889614625604, 34.569257107395515], [-77.28852637997062, 34.56894436362816], [-77.2882702015284, 34.56935174495317]], [[-77.33387008297403, 34.69128626027729], [-77.33381668074118, 34.69149941256191], [-77.33390999748272, 34.69127383683211], [-77.33391449819246, 34.69116278164656], [-77.33387218053505, 34.69127902331218]], [[-77.2564698144656, 34.60462277431263], [-77.25668274722818, 34.60459894536202], [-77.25700880190917, 34.60466518188894], [-77.25660912114391, 34.60474443136337]], [[-77.36378841303899, 34.58034466640677], [-77.36353698526456, 34.58007759877896], [-77.36342920551668, 34.57993452394527], [-77.36291194612198, 34.579892799145], [-77.36297495453306, 34.579640414506684], [-77.36347316834856, 34.57889352661493], [-77.36353757230127, 34.578812717562265], [-77.36374649159524, 34.578698470198255], [-77.36432584234612, 34.578303215412475], [-77.36451395381795, 34.578166529267705], [-77.36471989482881, 34.578223293511535], [-77.36480260318277, 34.578257759258385], [-77.36511379914911, 34.57847389040734], [-77.36529411567344, 34.57850636397494], [-77.36550780747521, 34.578493813549684], [-77.36577688658208, 34.57863115051754], [-77.365804127187, 34.57873238440897], [-77.36590168710049, 34.57880911137772], [-77.36607777281824, 34.57877753789996], [-77.36633969270068, 34.57892720583671], [-77.36640835301168, 34.57896476913952], [-77.36657786192127, 34.579060773448845], [-77.36668956068841, 34.57919227430616], [-77.36676948958662, 34.57925116621967], [-77.3669512887706, 34.5793111349324], [-77.36704006315257, 34.57967623645488], [-77.36668921965318, 34.5799924867807], [-77.36660106870355, 34.58011576036697], [-77.36598277515749, 34.58029972621795], [-77.36590102741488, 34.58032313845236], [-77.36522953031331, 34.58053388213169], [-77.36511282400767, 34.580664551106075], [-77.36444373782635, 34.5812419913375], [-77.3643244709966, 34.58132102150089]], [[-77.36646148000294, 34.545094522977465], [-77.36676289170313, 34.54545998549111], [-77.3667046709738, 34.54554914216883], [-77.36609793966397, 34.54586705741552], [-77.36594900962602, 34.546057484710076], [-77.36538722341677, 34.546177711237256], [-77.36530549975774, 34.54618478627516], [-77.36522101296227, 34.5460076901298], [-77.36525002767348, 34.545798770663076], [-77.36526444714976, 34.545756607944874], [-77.36527205553125, 34.54572815827324], [-77.36532165350228, 34.54547685245069], [-77.36543360489715, 34.54531003051568], [-77.36562003653276, 34.5452157345711], [-77.36594076739836, 34.54506003924633], [-77.36611768460736, 34.54500138587506], [-77.36624004842828, 34.5450494295536]], [[-77.43259322086212, 34.73047228567627], [-77.43271131595635, 34.7305150122251], [-77.4328727616586, 34.73061404692878], [-77.43300039649984, 34.73072979833066], [-77.43306627907762, 34.73081331876338], [-77.43289525882493, 34.73111984014011], [-77.43281886141511, 34.73122540349371], [-77.43267371081066, 34.73130178847049], [-77.43256981809255, 34.7313359142873], [-77.43239512057308, 34.731356837788844], [-77.43233529241915, 34.73136344415138], [-77.43219363284663, 34.731286420591545], [-77.43208015049665, 34.731224717654335], [-77.4320689889403, 34.73117594114211], [-77.4320584824178, 34.73095966189316], [-77.43214097361849, 34.73075295111713], [-77.43216225493086, 34.730716404151856], [-77.43217504729313, 34.73069095477761], [-77.43223815875362, 34.73059145716336], [-77.4322935699897, 34.73051071040062], [-77.43235900835258, 34.730505642346074], [-77.43250209650164, 34.73047751166386]], [[-77.2820375638839, 34.56292443605592], [-77.28219312352203, 34.56292117255017], [-77.28237501543964, 34.562762453428874], [-77.28289080381151, 34.56246261614587], [-77.28291111839245, 34.562804551933105], [-77.28251023603377, 34.5628819774221], [-77.2821908850074, 34.56301520025327], [-77.2818870733083, 34.56321633037431], [-77.2816987319602, 34.56329779902297], [-77.28136825257741, 34.56346014720371], [-77.2812599570932, 34.56347855228246], [-77.2810735438605, 34.56350830785911], [-77.28103198275453, 34.56339527309958], [-77.28118792540963, 34.56327341861768], [-77.28132715769799, 34.5631723575741], [-77.28137587778363, 34.56313998450665], [-77.28142655514645, 34.563119326420654], [-77.28169322670476, 34.56301062096395], [-77.28177108062336, 34.562978884760675], [-77.28178511489287, 34.5630048075716]], [[-77.22477600862938, 34.65779928749761], [-77.22475270754853, 34.65774328590481], [-77.22475678142757, 34.657645891223936], [-77.22455533035202, 34.65772771784001], [-77.22462797171542, 34.65777020572562], [-77.2246575149873, 34.65784175958089]], [[-77.35739970996767, 34.73825065428778], [-77.35729475879765, 34.73847252782527], [-77.35731611126236, 34.738262131315985], [-77.35736337404828, 34.738236257590835]], [[-77.41826875158588, 34.5638786618115], [-77.41821320573804, 34.56375367290977], [-77.41838592442204, 34.56373541712691], [-77.418457285659, 34.56381483887773], [-77.41862105716014, 34.56387263356282], [-77.41865250361874, 34.564163599081716], [-77.41839229996262, 34.56415229085581], [-77.41830271374678, 34.5639753296754]], [[-77.38758579172062, 34.53661382979611], [-77.38777404417074, 34.536636054042084], [-77.38815130469848, 34.5366684405377], [-77.38813499659162, 34.53698107337283], [-77.38779776944712, 34.537122296929795], [-77.38749214756176, 34.5372555139078], [-77.38713210353227, 34.537218314416975], [-77.38710465945996, 34.53697818723399], [-77.38710562466004, 34.53697714328757], [-77.38741173256378, 34.5366883158251], [-77.38745217945448, 34.53664902092445], [-77.38750685633067, 34.53660342495896]], [[-77.39372215565812, 34.53675724768642], [-77.3937321479137, 34.53678779008526], [-77.3937800326366, 34.53693884359992], [-77.39379843681279, 34.536979032770816], [-77.39391241088512, 34.536974628916894], [-77.39411708746148, 34.536979139523794], [-77.39422499914588, 34.53696255066606], [-77.39426911010473, 34.53686399860756], [-77.39431655143508, 34.536671477169655], [-77.39418228356658, 34.536507039930804], [-77.39408736561558, 34.5365187514762], [-77.39378763551167, 34.53660065560573], [-77.39370694895065, 34.53671065910888]], [[-77.33694930405841, 34.533075984037964], [-77.33700506418887, 34.533176206188585], [-77.33702370742469, 34.53322203797338], [-77.336944144536, 34.53329872882752], [-77.3367696077726, 34.53334672702768], [-77.33655042363088, 34.53334954291518], [-77.33645639070353, 34.53331427075653], [-77.33623690933153, 34.533286680861146], [-77.3361746793564, 34.533286070386694], [-77.33615978758594, 34.533267207469095], [-77.33604629200832, 34.53324296033779], [-77.33595740853444, 34.53320911700727], [-77.33595342829915, 34.5331977457263], [-77.33601459043297, 34.53307383637368], [-77.3360398775558, 34.53299142976077], [-77.33609231976178, 34.532817840855316], [-77.33617149973904, 34.53276178088103], [-77.33629055343036, 34.53278933181248], [-77.33634726294748, 34.532914172044755], [-77.33656094680319, 34.532895333185], [-77.33680293375387, 34.53296045941282], [-77.3368597321357, 34.53300912005983]], [[-77.29375939495363, 34.55603447497759], [-77.29361505016291, 34.55616012656106], [-77.29344358970242, 34.556079769753325], [-77.29362212393337, 34.5558613128535]], [[-77.45412853037159, 34.60307617675221], [-77.45411353202046, 34.603065910233255], [-77.45409984603236, 34.60304174318576], [-77.4540420937318, 34.60290165692097], [-77.4540851644686, 34.60284218463981], [-77.45422290736077, 34.602775107984215], [-77.45443214316671, 34.602704880267744], [-77.45459745417196, 34.60279329230052], [-77.45502401014187, 34.60280619231714], [-77.45465630176156, 34.60300820054312], [-77.45447778063803, 34.603106273855225], [-77.45442783106765, 34.60313371444248], [-77.45432544013167, 34.60312067771543], [-77.45415226917812, 34.60308725282222]], [[-77.43472651222203, 34.74395900182084], [-77.43478404490264, 34.74392583743544], [-77.43480673628514, 34.743925536372906], [-77.43510937297202, 34.74393231037622], [-77.43524260866533, 34.74409179723928], [-77.43526562451952, 34.7441805086866], [-77.4353057976993, 34.744393394316276], [-77.43529942446467, 34.74461280849795], [-77.4353338097734, 34.744823795062814], [-77.43533618557686, 34.74496305083646], [-77.43510530628251, 34.74505411205749], [-77.43488676318114, 34.744806025950695], [-77.43491494823036, 34.74477319311782], [-77.43486359732465, 34.74478146570312], [-77.43482142991931, 34.74473461484098], [-77.43457893210883, 34.744466962888616], [-77.43452844009425, 34.74425605617786], [-77.43448013569326, 34.744104910051796]], [[-77.34252439451706, 34.62605541792904], [-77.34227068242784, 34.62635291930269], [-77.3420005919885, 34.62656029989744], [-77.34197603571504, 34.626579082025955], [-77.34196517126122, 34.62655419280027], [-77.34197977067817, 34.626540857267926], [-77.34182785108428, 34.626151047130506], [-77.34188641625072, 34.62603343161079], [-77.34209259819431, 34.62597896657311], [-77.34219160069449, 34.625959316647055]], [[-77.33914718046555, 34.63323746339422], [-77.33917532376164, 34.63325098297273], [-77.33918638807454, 34.63325102908185], [-77.33931459111284, 34.63324800627551], [-77.3394943073213, 34.63324541521889], [-77.33965199686739, 34.63320169411381], [-77.33977914569724, 34.63316029705896], [-77.33977312784651, 34.63303993967576], [-77.3401778000098, 34.63286527586267], [-77.34028833684009, 34.63241781461709], [-77.34063572427995, 34.632222667724236], [-77.34027709057943, 34.632239490460584], [-77.34025233086741, 34.63223860356434], [-77.3402296899315, 34.632246471513234], [-77.33974159747012, 34.632151710434584], [-77.33957518745852, 34.63205470019101], [-77.3393905427983, 34.63213017424603], [-77.33926109003829, 34.63208456828932], [-77.33919394133466, 34.63208801348317], [-77.33892598273258, 34.632009851971425], [-77.33881807147753, 34.632262885350485], [-77.33867542993485, 34.63235603128908], [-77.33844085391692, 34.63252393818108], [-77.33842720837002, 34.6325651781081], [-77.33869126206245, 34.63308330809865]], [[-77.24167400357724, 34.59555310847129], [-77.24155784832507, 34.5954355528719], [-77.24145975454775, 34.59506014486816], [-77.2426964969822, 34.59505394482973], [-77.24153785340012, 34.5948692993976], [-77.24197629005876, 34.59420487875296], [-77.24300609656112, 34.594319748023246], [-77.24310588711236, 34.594614859849585], [-77.24302391769838, 34.594935125430666], [-77.24300372305106, 34.59505540965767], [-77.24299289137257, 34.59507730510138], [-77.24297052043856, 34.595089328395936], [-77.24291852148178, 34.595143332568135], [-77.24253931091259, 34.595512908090384], [-77.24205616406053, 34.595590702277136], [-77.24181433412856, 34.59565895345269]], [[-77.36740093557734, 34.72106720454778], [-77.36718706867542, 34.721066374099394], [-77.36713932234095, 34.72106495054849], [-77.36712927323791, 34.721074314666545], [-77.36702378748099, 34.72129212972056], [-77.36699412205492, 34.721336578046056], [-77.36704790799698, 34.72137991469963], [-77.36725827153478, 34.72149985349371], [-77.36730814449604, 34.721514808124546], [-77.36748534127693, 34.72139649934425], [-77.36765218217076, 34.72136096383182], [-77.36810597137621, 34.721612652340255], [-77.36770894460531, 34.72122442108171], [-77.36769262158415, 34.72122162844176], [-77.3676228976154, 34.72118471529295], [-77.3674316975508, 34.721089106200424]], [[-77.43208483818583, 34.67869709155635], [-77.43212914327816, 34.67864420300893], [-77.43218782825332, 34.67850571640496], [-77.43206309149372, 34.678409954520205], [-77.43196843907793, 34.67836319679241], [-77.4318426256887, 34.67833284735517], [-77.43168655128271, 34.678294498173045], [-77.43161463960938, 34.67847874417612], [-77.43159468970856, 34.67852566394799], [-77.43159937298502, 34.6785315156566], [-77.43160535275275, 34.67853565586599], [-77.4317327520121, 34.67862417967979], [-77.43180555672153, 34.67866528172236], [-77.43187084618393, 34.67870054572803], [-77.43196650747068, 34.67875221374678]], [[-77.33872813438151, 34.56070179602618], [-77.33850742305589, 34.560665429314696], [-77.3383342298235, 34.56065833141664], [-77.33820040460098, 34.560667138781525], [-77.33807035401179, 34.56054162542402], [-77.33814187483254, 34.56032376014453], [-77.33833472170255, 34.56002751128319], [-77.33872798945235, 34.56002323839239], [-77.33872866054828, 34.560022797326184], [-77.33872892739329, 34.56002266811882], [-77.33912247696524, 34.56017698259106], [-77.33919419725147, 34.56030261804278], [-77.33923636940608, 34.560373950601054], [-77.33927871852934, 34.560536539121074], [-77.33926011240774, 34.56058280767974], [-77.33912205042772, 34.56073076032272], [-77.33903942474757, 34.560737776161645], [-77.33882256348552, 34.56075618990044]], [[-77.34854832518982, 34.55216175073391], [-77.34858852322006, 34.55231943623237], [-77.34843774698979, 34.55243963981982], [-77.34828033887905, 34.552414723524], [-77.34823180903408, 34.552401219320565], [-77.34812776866184, 34.552385735831805], [-77.34798434167006, 34.55234709009406], [-77.34788919335925, 34.55235023059335], [-77.34773561211706, 34.55231975318495], [-77.3477097881256, 34.55231345305225], [-77.34769404969083, 34.552299357585206], [-77.34755863947811, 34.55222280721797], [-77.34754630412485, 34.552195784328745], [-77.34750125584097, 34.55214645559896], [-77.34739864317892, 34.552066144391446], [-77.34728808096696, 34.55188016908187], [-77.34726531523202, 34.551775371907866], [-77.34731705776326, 34.55164516039429], [-77.34730689840586, 34.551392551889485], [-77.3475200175607, 34.55133175100184], [-77.347606669654, 34.55142604949583], [-77.34791118371767, 34.55139513036777], [-77.34794550107377, 34.55141105391766], [-77.34795467373831, 34.551431361123086], [-77.34811454723518, 34.5515245131217], [-77.34813106149176, 34.55152839058958], [-77.34819847401843, 34.55157804472012], [-77.34827015243073, 34.551630786553766], [-77.34828158929318, 34.55163948862438], [-77.34829787648275, 34.55165286183745], [-77.348430478576, 34.55176819821467], [-77.34849033678299, 34.55182026225668], [-77.34850446555981, 34.55184189071319], [-77.34851875613305, 34.55185809809744], [-77.34852156537156, 34.551940640339026], [-77.3485363574102, 34.55195971188141], [-77.34855577939886, 34.5520003074153], [-77.34859973840652, 34.55207300183318]], [[-77.44330678374602, 34.74975402183433], [-77.44321353942237, 34.74995103545585], [-77.44351025304725, 34.75056196661741], [-77.44383493107297, 34.75123046014349], [-77.44339493893698, 34.750755433752225], [-77.44338620545972, 34.75061372063062], [-77.44300258806214, 34.75043637020566], [-77.44287986416172, 34.750319285246775], [-77.44284358506044, 34.750359299657134], [-77.44243788201697, 34.7501165361591], [-77.44259287961954, 34.7499499200006], [-77.44292634238172, 34.749850720929224], [-77.44297367698601, 34.749824140790146], [-77.44303824077049, 34.74977193040998]], [[-77.38127190343768, 34.58361118268499], [-77.38127721535062, 34.58362638115437], [-77.3812596849179, 34.583626104840526], [-77.38126135399507, 34.58361157322848]], [[-77.37550586703067, 34.53350846323387], [-77.3753630586576, 34.53331508492432], [-77.3753515697104, 34.533246879545366], [-77.37569886326753, 34.532990985685935], [-77.37576214077332, 34.532949914194816], [-77.37581323865747, 34.53295554066208], [-77.37582935520753, 34.53296203157084], [-77.375847149396, 34.532969610632115], [-77.37603532302732, 34.53304749465804], [-77.3761011123411, 34.533114808115975], [-77.37612670040139, 34.533174142128374], [-77.37608811970698, 34.533248931179074], [-77.37602030700084, 34.533434307553904], [-77.37579364871787, 34.53381860860763]], [[-77.43381428136682, 34.67902240748661], [-77.43373537469022, 34.67890003085033], [-77.43365971874718, 34.67878409582992], [-77.43345862774555, 34.67874922134524], [-77.43332312402966, 34.678726730093175], [-77.43330421845819, 34.678729252031424], [-77.4331685546291, 34.67879657818219], [-77.43315102437397, 34.678819267792356], [-77.43309480697258, 34.678899417920526], [-77.43302817829132, 34.678992330400256], [-77.43297531069075, 34.6790697853555], [-77.43316779959414, 34.67922059578241], [-77.43329372940926, 34.67931925873051], [-77.43345175924168, 34.67931729528705], [-77.43369024809783, 34.67932693230535], [-77.43376263696489, 34.67918752649088]], [[-77.2894107275259, 34.56030080085806], [-77.28941875978231, 34.56032659686572], [-77.28948877265071, 34.56033439417925], [-77.28946664867867, 34.56036599975838], [-77.28945500069904, 34.56037161486769], [-77.28935905029856, 34.56036468338707], [-77.28935159462723, 34.560365972271626], [-77.28930951607083, 34.560353668829116]], [[-77.38850187787332, 34.5631931864086], [-77.3883983790998, 34.56302102719949], [-77.38832548898287, 34.563028490862195], [-77.38831182142219, 34.56312677742908]], [[-77.42810011077741, 34.736009703470245], [-77.42795064426572, 34.735989504519], [-77.42786307174693, 34.73592251187132], [-77.42783206672524, 34.73589831689321], [-77.427821689528, 34.735881240097164], [-77.42775811705062, 34.7358132334544], [-77.42768969532503, 34.73573451021156], [-77.42768838830688, 34.735699307969085], [-77.42774855273554, 34.73570995990258], [-77.42787278370733, 34.73570475074533], [-77.42793571483523, 34.73572948458853], [-77.42803831945429, 34.73581228549058], [-77.42805739533392, 34.73585066403007], [-77.42807929319035, 34.735906790738724], [-77.42810696570118, 34.73600323924408], [-77.42810788945572, 34.73600645885227], [-77.42810850120416, 34.73600829077442], [-77.42811022749605, 34.736014607699495], [-77.42810459190788, 34.73601143886342]], [[-77.42955254342954, 34.709959828491705], [-77.42955173699629, 34.70995739411334], [-77.42932488999894, 34.709608431138086], [-77.42932426329867, 34.709598333946246], [-77.4293268345493, 34.709585182288116], [-77.42933348772335, 34.70946179332247], [-77.42940137491816, 34.709383286656724], [-77.42942948113318, 34.70937902800235], [-77.42952110324188, 34.709387621800275], [-77.4296746989426, 34.70940588648319], [-77.42971641348477, 34.70940213091022], [-77.42993841896462, 34.709533522165586], [-77.430026789759, 34.709761948389136], [-77.42995746356287, 34.70986801989634], [-77.42957096230059, 34.70996411555488], [-77.42955921998143, 34.70996498180822], [-77.4295540294196, 34.709963221147426]], [[-77.40039672843588, 34.580433631298064], [-77.40050506452721, 34.58034264261859], [-77.40057499845845, 34.58028390656445], [-77.40066155124144, 34.58030215218486], [-77.4008218213315, 34.58037229025696], [-77.40093956512165, 34.58038703398802], [-77.40096901544655, 34.58040527771775], [-77.40118258887753, 34.58051466720475], [-77.40136303222067, 34.58066029392218], [-77.40139122020216, 34.58068432427186], [-77.40142347294677, 34.580710044080355], [-77.40154040113713, 34.580926619501724], [-77.40176078140264, 34.58108594221059], [-77.40155700792374, 34.58132437129733], [-77.40136302444745, 34.58148885100066], [-77.40100758910951, 34.58157762516337], [-77.40096899849596, 34.58160200885632], [-77.40094805822436, 34.58160523434712], [-77.40059270332087, 34.581659970283255], [-77.40057497246724, 34.58165788094241], [-77.40034074875604, 34.581543243056736], [-77.4001809521851, 34.581440421917236], [-77.40004569025942, 34.581333433515894], [-77.400032500671, 34.58107073328202], [-77.40003219273561, 34.58075049450164], [-77.40018097029659, 34.580672194520304]], [[-77.41331504029267, 34.76161162066622], [-77.41335940397562, 34.76160249014403], [-77.41334220059377, 34.76151788657811], [-77.41329022869829, 34.7615783118124]], [[-77.44287717687266, 34.73592324508785], [-77.44276640869238, 34.73581936570132], [-77.44268160643277, 34.735729592343006], [-77.44263999572337, 34.73563497672889], [-77.44256761974796, 34.73547040512956], [-77.44270828975195, 34.735398920976564], [-77.44284383461991, 34.735407819015876], [-77.44320915282344, 34.73550946174569], [-77.4433049656603, 34.735552677192715], [-77.44351059650072, 34.73574919027159], [-77.44361327300527, 34.73578724715837], [-77.4435817072539, 34.73586532829089], [-77.44349556852052, 34.73607410354649], [-77.44329024046252, 34.73613689734768], [-77.44315501323571, 34.73607099308029], [-77.44306272752198, 34.73601697597905]], [[-77.35687264116856, 34.737863758738094], [-77.356845453196, 34.737839361280855], [-77.35679491448212, 34.73775806798582], [-77.35688504019991, 34.7378210644361], [-77.35690264559472, 34.73783150974064]], [[-77.37132338635783, 34.678792401434414], [-77.37134998043545, 34.67882221630394], [-77.37130358451303, 34.678860668236794], [-77.37110874636896, 34.67896505967005], [-77.37098259299823, 34.678935681666296], [-77.37076438266696, 34.678902719541206], [-77.37106803864094, 34.6786411113031], [-77.37117972664831, 34.67873296331603]], [[-77.38451563835716, 34.6268789859912], [-77.38472004027068, 34.62675773943208], [-77.38468912690455, 34.62655454007448], [-77.38451179748779, 34.62656345146746], [-77.3844110671553, 34.62656934085661], [-77.38423283214952, 34.62670745747287], [-77.38427543201811, 34.626767571902334], [-77.38430391236209, 34.62690949690645], [-77.38441100255122, 34.626928764100306]], [[-77.4223199652504, 34.56402197914493], [-77.42229646034315, 34.56416784513537], [-77.42224216223885, 34.564278946873], [-77.42212440809996, 34.56443179120346], [-77.42193946623263, 34.5644871769984], [-77.42196725121957, 34.56428515339864], [-77.4220944316134, 34.5641384892102], [-77.42219934176495, 34.56407722718467], [-77.42224211388974, 34.564067417163486]], [[-77.33646330242969, 34.62612377932058], [-77.33637500353358, 34.626189303606566], [-77.33615996041814, 34.626207085704415], [-77.33591276443914, 34.626118974683216], [-77.33611321174607, 34.625974322166826], [-77.33623591898098, 34.62584789054686], [-77.3362569670739, 34.625849026230156], [-77.33631822746221, 34.62585233155255], [-77.33641432647612, 34.62587993095707], [-77.33652497076906, 34.625892372157026], [-77.33655120852737, 34.62603135428941], [-77.33648920197928, 34.626084430706825]], [[-77.36984108269591, 34.5808355629271], [-77.36954104819067, 34.580636368609944], [-77.36956915173036, 34.58033911043032], [-77.36984119959101, 34.58053392326084], [-77.3698882589139, 34.58053565041281], [-77.37023526544267, 34.5804297866805], [-77.37042976926023, 34.58050835653812], [-77.37038714280627, 34.58077526640951], [-77.37062919003151, 34.58069628007148], [-77.37093574198532, 34.58076580645815], [-77.37104175985594, 34.58082472790882], [-77.37106676949193, 34.58084115715415], [-77.37126570172897, 34.5809756733062], [-77.37132103774772, 34.58112559943913], [-77.37121476685294, 34.58124439704122], [-77.37102292605667, 34.5814748430784], [-77.37081645896372, 34.58150387944819], [-77.37062890372981, 34.58145383789838], [-77.37052669199664, 34.58145364365605], [-77.37026381055067, 34.58141254132966], [-77.37023489457998, 34.581398670842965], [-77.37019912129577, 34.58139069731085], [-77.37008180538405, 34.5811480903807]], [[-77.39532882721805, 34.61823324817843], [-77.39547113143999, 34.61850657168253], [-77.39572790132051, 34.61859499891258], [-77.39584438359928, 34.61859204779725], [-77.39601705730487, 34.618613821373756], [-77.39604148280719, 34.618618619817994], [-77.39605610783067, 34.61861874550403], [-77.39615670721804, 34.61861998937948], [-77.39623858308171, 34.61862346301087], [-77.3963243179902, 34.61871575839146], [-77.3963999649013, 34.618797193320724], [-77.39663276761456, 34.61904780788039], [-77.39688042926772, 34.61872790113448], [-77.39663279283168, 34.61839720750444], [-77.39660325240119, 34.61837512131142], [-77.39659650521216, 34.61834427710891], [-77.39652163481097, 34.61823534530336], [-77.39645222582254, 34.61813500397406], [-77.39627250239778, 34.61800293611125], [-77.39623861134835, 34.617978236631345], [-77.39623353947516, 34.617977514416296], [-77.39622462386936, 34.61797333749018], [-77.39584442084721, 34.61782582660263], [-77.39555197064195, 34.61796074815662], [-77.39506413873512, 34.617724853411026]], [[-77.42805754034198, 34.569748248910514], [-77.42808184662091, 34.56964197791167], [-77.42794776483242, 34.5694403909586], [-77.42780067171961, 34.56921286432512], [-77.42772302382356, 34.569230731254486], [-77.42751254703168, 34.5692996775679], [-77.4273858129881, 34.56934060003665], [-77.42736484404406, 34.569356458963526], [-77.42716545725443, 34.56955948317865], [-77.42693078032778, 34.56980835350301], [-77.42675665221608, 34.57002701844263], [-77.42657716043975, 34.570201039943655], [-77.42621110191976, 34.57030691443997], [-77.42616559941989, 34.570324535963174], [-77.42617177042908, 34.5703550021948], [-77.42618324028433, 34.57036500242014], [-77.42632510650371, 34.570592246612335], [-77.42650121464011, 34.57071961743459], [-77.42653847612826, 34.57075609324056], [-77.42657733935542, 34.57082836805646], [-77.42693881193165, 34.57111607036396], [-77.42697139912889, 34.57114124663248], [-77.42707739843281, 34.57117515424316], [-77.42736531028068, 34.57094026102633], [-77.42768079805178, 34.57088914685603], [-77.42761045375806, 34.5705592920232], [-77.42794780043454, 34.57028932670181]], [[-77.3808794204916, 34.55953253412848], [-77.38090686228156, 34.55949831115778], [-77.38092556481324, 34.55946604878735], [-77.38090753469217, 34.55943837441995], [-77.38087947483115, 34.559331648416915], [-77.38081791227482, 34.5594152411958], [-77.38075519657643, 34.55949060886162], [-77.38062802686748, 34.55977981509741]], [[-77.39151416409157, 34.568066161906486], [-77.391600709079, 34.56811631248936], [-77.39158250315506, 34.56819260538597], [-77.39164016876364, 34.56832290595085], [-77.39151411229926, 34.568444835803646], [-77.3914199894521, 34.56846551756704], [-77.39141366162886, 34.56846382842761], [-77.39140924411814, 34.56845548586773], [-77.39139838808126, 34.56835778002227], [-77.39145528964923, 34.56820071601509], [-77.39148412625295, 34.5681331283383]], [[-77.37179158784727, 34.68978045940596], [-77.37163536076753, 34.689815661204], [-77.37156219682672, 34.68975940544602], [-77.37149767911843, 34.68972453213573], [-77.37145174809099, 34.68969769142293], [-77.37131145725488, 34.689670773503124], [-77.37106232989211, 34.68958442106919], [-77.37130900239909, 34.68935280399625], [-77.37142172862357, 34.68929132094259], [-77.37158225249671, 34.689247819782814], [-77.37186890074022, 34.68922985038148], [-77.37188590136974, 34.68922850839217], [-77.37188712599449, 34.68922849907339], [-77.37197829667312, 34.68933666049941], [-77.37197564133332, 34.68935654759748], [-77.37198428413214, 34.68945768584213], [-77.37185503563619, 34.689646533155646]], [[-77.38201154961398, 34.58270785897407], [-77.38196852492602, 34.58266676330848], [-77.38176494468767, 34.58258458469927], [-77.38174551321517, 34.582364870974935], [-77.38179955642767, 34.58226655374118], [-77.38185854436236, 34.582231336269714], [-77.38188232130507, 34.58225462407858], [-77.38198577356465, 34.582314885055816], [-77.38205551944544, 34.582401104221574], [-77.38208318568897, 34.5824379537536], [-77.3820722095809, 34.58263377472041], [-77.38207657777325, 34.582651188604466], [-77.3820774038994, 34.58267472028679]], [[-77.38568480893001, 34.51588184073918], [-77.38563454667364, 34.51589864732258], [-77.38561917673385, 34.5159009688765], [-77.38559689122398, 34.51590832265494], [-77.38522455682815, 34.515997053663725], [-77.38516217189638, 34.51595723221134], [-77.3852265463367, 34.51590899523889], [-77.38560254824596, 34.51588308143737], [-77.38561963664141, 34.515880608508034], [-77.3856382456474, 34.515876999212885]], [[-77.37648172129028, 34.595287645742566], [-77.3765899664887, 34.59527060828272], [-77.37660543035012, 34.59532740540575], [-77.37659543531768, 34.59539380122341], [-77.3766320434925, 34.5955358519046], [-77.37653506059121, 34.595664120093474], [-77.37638441685803, 34.595571529421875], [-77.37641755118582, 34.59548112673937], [-77.3764682585014, 34.59534716890041]], [[-77.33339885568837, 34.56226407083394], [-77.3333222738809, 34.56207336486912], [-77.33321200341267, 34.56187499358447], [-77.33303460388198, 34.562114718341896], [-77.33306079347346, 34.56227354520554], [-77.33304085839143, 34.562326089116105], [-77.33321160886396, 34.562344782140876], [-77.33340359731321, 34.56227394418348]], [[-77.42694334117567, 34.49964740939447], [-77.42707828236763, 34.49951581358133], [-77.42729194811744, 34.49946539925517], [-77.42721316994471, 34.49958138354769]], [[-77.3349260765333, 34.69795006935501], [-77.33433990130735, 34.69801920438216], [-77.33431552745192, 34.69802323963893], [-77.33425860037497, 34.697996594344126], [-77.33380524801248, 34.69803635596982], [-77.33403531488395, 34.697798598654636], [-77.33421208064007, 34.697723398548476], [-77.33443251408711, 34.697620654594004], [-77.33454040250373, 34.697608080853094], [-77.33481804233553, 34.697651388158796]], [[-77.39676677984701, 34.61916886353332], [-77.396887292494, 34.61930191208749], [-77.39692661357022, 34.619358098278305], [-77.39702695802116, 34.61941763705243], [-77.3971043371619, 34.61946141111996], [-77.39715796716033, 34.61946583508007], [-77.39722405929568, 34.619449927701794], [-77.39733320664016, 34.619417012654594], [-77.39731047114725, 34.619209676458155], [-77.39722620310278, 34.61910260485128], [-77.39722407023143, 34.61910007511948], [-77.39713661164095, 34.618997439729625], [-77.39702697654641, 34.618868778743604]], [[-77.34162214239261, 34.68420591908971], [-77.34174857241962, 34.68435003286036], [-77.34154729175955, 34.68446361663617], [-77.34132931937857, 34.684407561486715], [-77.34129947729053, 34.68438770578174], [-77.34126821293975, 34.68439407619674], [-77.34121917561598, 34.68437923611215], [-77.34110088780811, 34.68434343884729], [-77.34099531145449, 34.68430326937996], [-77.3409101470543, 34.684293132070096], [-77.34087851015674, 34.68407714136043], [-77.34108087669358, 34.684008689925086], [-77.34115012392087, 34.683998824933326], [-77.34126251386675, 34.6840219937128], [-77.34136986114382, 34.684044122862005], [-77.34155076699444, 34.68413348685619], [-77.3415873146529, 34.6841662198654]], [[-77.4457596976653, 34.605537548267144], [-77.44588013916578, 34.605514363553894], [-77.44597391718389, 34.60538740157466], [-77.44595207611181, 34.60530233222191], [-77.4459462012146, 34.60521067870559], [-77.4457770872294, 34.60513788481277], [-77.44567519853585, 34.60518371359305], [-77.44546838924656, 34.60528620674854], [-77.44548684883395, 34.60541400275284], [-77.44550291368365, 34.60552171586769], [-77.44563491022393, 34.60557871497022]], [[-77.44945624385079, 34.611779437674016], [-77.44931682435316, 34.61170306865308], [-77.44930269339778, 34.611583221429605], [-77.44944547973384, 34.61154576385259], [-77.44961134850283, 34.61146250172131], [-77.44986186130141, 34.61146917490551], [-77.44988283665931, 34.61146818792288], [-77.44988539547852, 34.61147740947289], [-77.44978628855485, 34.61168531450302], [-77.44969556005454, 34.61177006785524]], [[-77.44640669092338, 34.607848764914685], [-77.44635542623917, 34.6080092375172], [-77.4465487907162, 34.607957048751736], [-77.44675471135858, 34.607978204722045], [-77.44688895644856, 34.60795128070378], [-77.4468494415461, 34.607862381415075], [-77.44688384141676, 34.607712697479144], [-77.4467110383889, 34.60758954263265], [-77.4466875772912, 34.60760313062285], [-77.44648769811036, 34.60773387514841], [-77.44643834709271, 34.60779359152899]], [[-77.39408667766122, 34.53425630291694], [-77.39423037330104, 34.53436750694023], [-77.39440761835746, 34.53420998996935], [-77.39423667452478, 34.5340871655666]], [[-77.37672821326902, 34.67666428297903], [-77.3765042348471, 34.67665133003439], [-77.37676210110521, 34.67654742440114], [-77.37677492782602, 34.67661410376907]], [[-77.3850368193637, 34.589684028436956], [-77.38514844107591, 34.58963827744739], [-77.38518263125363, 34.58960780668573], [-77.38520634026882, 34.58959789566172], [-77.38525287883343, 34.58951708028725], [-77.38520637272934, 34.58943315322869], [-77.38519539141474, 34.58943105776408], [-77.3850103868452, 34.589447026604056], [-77.38500933702841, 34.58944900629663], [-77.38487978639789, 34.5895374470207], [-77.38496513094299, 34.58971227383108]], [[-77.41621023478294, 34.718873496494915], [-77.41623754501849, 34.718855446322415], [-77.416244063654, 34.7188593874671], [-77.41624663045336, 34.71886279449654], [-77.41631528738756, 34.718941271895424], [-77.41631617641819, 34.718983983404925], [-77.41625214745694, 34.71900449753541], [-77.41619441779011, 34.71902087814436], [-77.41612877373079, 34.71896135348488]], [[-77.26290736514676, 34.586201110709105], [-77.26278547503175, 34.58617927661648], [-77.26281047370462, 34.58611494313837], [-77.26290999121008, 34.5861326417731]], [[-77.43045437036102, 34.74561432835749], [-77.43032222709819, 34.745610693765414], [-77.43027609422357, 34.74559217929429], [-77.43028592439461, 34.74555139277879], [-77.43030801211306, 34.74544232081935], [-77.43035224207861, 34.745413337036624], [-77.43042696610804, 34.74540789619249], [-77.43052325899947, 34.74537636775763], [-77.43073662512629, 34.74559209283908]], [[-77.38249949583322, 34.65369987236502], [-77.38250047711273, 34.65368299810413], [-77.38250147790957, 34.65366732204957], [-77.38251231482201, 34.65367446572893], [-77.38257158875052, 34.653749323036365]], [[-77.27444066109894, 34.567667195227486], [-77.27435351050424, 34.56779234407275], [-77.27410916379284, 34.567791412164], [-77.27420022843545, 34.567656024713806]], [[-77.37198114368404, 34.58198311629292], [-77.37196755341013, 34.58181624321976], [-77.37199992634956, 34.58175954103337], [-77.3720155491677, 34.58175763773126], [-77.3722049232009, 34.58173456648341], [-77.37223906511056, 34.58173368109111], [-77.37238118206278, 34.581735572310365], [-77.37240194059916, 34.58172951281304], [-77.37247861432166, 34.58180531160558], [-77.37246639549909, 34.58184371931206], [-77.37245008879104, 34.581915560927605], [-77.37240182766541, 34.58204667691224], [-77.37231600326086, 34.58205468657745], [-77.37220479333962, 34.5820969149805], [-77.37207932327377, 34.58210415999117]], [[-77.3950454717321, 34.535374966456715], [-77.39506294811017, 34.535538389585014], [-77.39528741712151, 34.5354926064571], [-77.39524797279351, 34.53539824838415]], [[-77.43482998178536, 34.73052389537746], [-77.43483890782639, 34.73053374101759], [-77.43499123779252, 34.73067981637172], [-77.43497619811286, 34.73078075654656], [-77.43492761062605, 34.73084426097692], [-77.43470083375723, 34.73094350007762], [-77.43453832257204, 34.73070821842114], [-77.43456106182254, 34.73063609133605], [-77.43462090296984, 34.73057418683993], [-77.43481006673359, 34.730523662064115], [-77.43481698766463, 34.730520660319044]], [[-77.43160830314162, 34.58420516283526], [-77.43170360355644, 34.58411472447857], [-77.43187442102659, 34.5841666931665], [-77.43170365666559, 34.58426359010783]], [[-77.35071542084333, 34.52336113781077], [-77.35075815052053, 34.52336311117651], [-77.35071386784779, 34.52342865119938], [-77.35069124804028, 34.52337274177302]], [[-77.3497906893352, 34.626112580520115], [-77.34986573478265, 34.625921016458626], [-77.35003599295499, 34.62607888663946], [-77.34993089190641, 34.62624516230316], [-77.34991527222647, 34.62627734644882], [-77.34980058099012, 34.626296681265416], [-77.34977362795756, 34.626145101333826]], [[-77.36307964532914, 34.54297580285191], [-77.36308521983645, 34.54292571101858], [-77.36316698447158, 34.5429096980624], [-77.363177561056, 34.54297063775]], [[-77.4331217138971, 34.754811136050094], [-77.43317725389983, 34.75476048716531], [-77.433246097264, 34.75480028117093], [-77.43332061485673, 34.75481256748312], [-77.43327273478393, 34.75486389724736], [-77.4332490449988, 34.75487773569719], [-77.43322168239706, 34.75488461959074], [-77.43318168802072, 34.75487051188121]], [[-77.35855852615359, 34.53505281270255], [-77.35854283232926, 34.53500301369269], [-77.35861580636424, 34.535009458926034], [-77.3586250614685, 34.53504302899987]]]]}, "type": "Feature", "id": "demo10", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19835926696558, 34.65140069128217], [-77.1991502846017, 34.65156006769236], [-77.19954319081246, 34.65171732302783], [-77.20138770684795, 34.6521271665776], [-77.20519020379145, 34.65296259091954], [-77.20864696715039, 34.6541926197802], [-77.21106465001917, 34.65469155315262], [-77.21517957925552, 34.65584079681624], [-77.21707663048826, 34.65614938474752], [-77.21781827441427, 34.65664231774214], [-77.2187917158065, 34.65727298084161], [-77.219545053076, 34.65793891101572], [-77.2205237132689, 34.658569833686336], [-77.22090120560313, 34.659324878215656], [-77.22155513270386, 34.66063285186786], [-77.22176165396189, 34.66104591183017], [-77.22188256927717, 34.66128773890881], [-77.22234502409917, 34.662212646103], [-77.22299971111103, 34.663521951967994], [-77.22323146410943, 34.66398548696296], [-77.22451961043821, 34.66526658647842], [-77.22458855830297, 34.66586688194054], [-77.22526364030007, 34.66663629794627], [-77.22712317066133, 34.66646076199313], [-77.2288315938136, 34.66560652585078], [-77.22662415672106, 34.665105860860905], [-77.2290231210635, 34.661850816447206], [-77.22862562167545, 34.66141865685824], [-77.22832904797235, 34.660587803698654], [-77.22786635183745, 34.65987422811021], [-77.22740816127614, 34.658934937414216], [-77.227417099409, 34.65889610656121], [-77.22737752505562, 34.6587974060125], [-77.22699607910522, 34.657920193736224], [-77.22687186350257, 34.65680255536443], [-77.22680720294329, 34.65622070849828], [-77.22666364803021, 34.65600856115247], [-77.22672542687584, 34.65558775185051], [-77.22665013249781, 34.65412204659442], [-77.2266078552488, 34.653356311840305], [-77.22642921505705, 34.65221923072948], [-77.22642748248693, 34.65101895713522], [-77.22638901373901, 34.650499249028684], [-77.22639368252598, 34.65033101014953], [-77.22642609538698, 34.650061853777885], [-77.22658394075023, 34.64895690606212], [-77.22636222745322, 34.64844309689374], [-77.22640032793258, 34.64755609030814], [-77.22472756280746, 34.64642869819477], [-77.2270927245515, 34.64539486975282], [-77.22799952221163, 34.644019175425825], [-77.22831991856282, 34.64294122557009], [-77.22889830942867, 34.6417408010922], [-77.22909616330708, 34.64067014516799], [-77.22869886086131, 34.63987565060896], [-77.22847712240166, 34.63943219868956], [-77.22834729505074, 34.639172543857974], [-77.22785813377729, 34.63819420287664], [-77.22702269920332, 34.63652334632514], [-77.22600949003397, 34.63594659389334], [-77.22638441844526, 34.635246844321614], [-77.22567883571978, 34.63361782791816], [-77.22597515750252, 34.63302058322514], [-77.22839998826554, 34.63163498789801], [-77.23005293457732, 34.63054205498193], [-77.23226338615528, 34.62895461642316], [-77.23326571518001, 34.62824784600524], [-77.23924305468358, 34.6257209307533], [-77.24024724080738, 34.62553615640829], [-77.24145178520342, 34.62512218827993], [-77.24387625615586, 34.62338496767126], [-77.24632025813395, 34.621734862207035], [-77.24709622970569, 34.621108684958244], [-77.2492799529403, 34.61819715368432], [-77.24943161846028, 34.617926703085494], [-77.25016334901929, 34.61747935834052], [-77.25233257802435, 34.615247683679186], [-77.25306187612577, 34.61472409174872], [-77.25417942444855, 34.613650617466796], [-77.25534430021129, 34.61266726141223], [-77.25753421862146, 34.61130522966503], [-77.25687909303979, 34.609700752609676], [-77.25704168465596, 34.60938116086189], [-77.25720381361062, 34.60906246433592], [-77.25915862446449, 34.608847313300025], [-77.26107545820082, 34.60924875659545], [-77.2629894478854, 34.610352295541176], [-77.26520984525317, 34.61190880201306], [-77.26576570579786, 34.61225209574837], [-77.26615423965347, 34.61254351000113], [-77.26656986052907, 34.61271908870578], [-77.26690024376109, 34.61244714966378], [-77.26801223051979, 34.61178781959953], [-77.26866650673335, 34.611427906102556], [-77.26883642698861, 34.611251866516575], [-77.27000484397135, 34.61000838151014], [-77.27092988920577, 34.608919403701904], [-77.27181202028278, 34.60789268277601], [-77.27269739199772, 34.607184345787296], [-77.2729554309658, 34.606247824358135], [-77.27382780373291, 34.602899282620896], [-77.27406814086807, 34.60083276789571], [-77.27430833924507, 34.60021395801607], [-77.27500898989335, 34.59866184603944], [-77.27605759116014, 34.5975513016033], [-77.27630040358625, 34.59737657785782], [-77.27665495929655, 34.597103269211644], [-77.27798642781481, 34.5961046418113], [-77.27946875299864, 34.595391666491224], [-77.28088597572533, 34.59471000819444], [-77.28528003414519, 34.59307085167018], [-77.28565318397756, 34.59295260693954], [-77.28595016565343, 34.592869433812865], [-77.2870892711119, 34.592299883969694], [-77.28987791882483, 34.59120127206523], [-77.2902444409458, 34.59031690634274], [-77.29148156668509, 34.587359666249284], [-77.29256279569606, 34.58479902157457], [-77.29190029964106, 34.582409984853804], [-77.29356660581806, 34.5813432159073], [-77.29514274941802, 34.580101190971824], [-77.29848618472394, 34.58035147490134], [-77.30204255539367, 34.5782553033215], [-77.30304745931518, 34.577571287363426], [-77.30353035416343, 34.5772634760065], [-77.30630504658771, 34.57614262694393], [-77.30815377604577, 34.57478592900129], [-77.3091666933677, 34.57480278221977], [-77.31114312507921, 34.573320449616304], [-77.31265044647397, 34.57218995978875], [-77.31547580185058, 34.57007099387626], [-77.31642407087553, 34.568918039191274], [-77.31712009720309, 34.567797605945486], [-77.31788205873124, 34.56688123480322], [-77.31863303484167, 34.564787193556846], [-77.31879587720987, 34.564335669798226], [-77.31926116436193, 34.56409385327153], [-77.31901709271436, 34.5637161975015], [-77.32003237396613, 34.56058681478452], [-77.32088159533845, 34.5598926379095], [-77.32084197558194, 34.55949127716597], [-77.32103633541685, 34.55897427224937], [-77.32103643833715, 34.558973720208016], [-77.32103689165875, 34.558972792560766], [-77.32129377639347, 34.55844712708343], [-77.32143021300135, 34.55817233660434], [-77.32184635996921, 34.55739553172863], [-77.32184611816034, 34.557388528655295], [-77.32181813367056, 34.55736750495622], [-77.32185884993176, 34.55734402963608], [-77.32244924387868, 34.55668108084374], [-77.3226589864421, 34.55670883119578], [-77.32343525809782, 34.55618096483667], [-77.32344435668202, 34.55617188703556], [-77.32345686033338, 34.55617014932958], [-77.32501013926047, 34.55594053215519], [-77.32503282524615, 34.555940610656144], [-77.32504609423871, 34.55594122934426], [-77.32517043506752, 34.55593164373496], [-77.32639761486843, 34.555884441772065], [-77.32660511894053, 34.55586834438645], [-77.32674077008605, 34.55578941853754], [-77.3272844536579, 34.55562785468286], [-77.32739682689564, 34.55559314023981], [-77.32742838533639, 34.55558757449948], [-77.32743392875479, 34.55560637349581], [-77.32757049229366, 34.55596273455027], [-77.32762896487091, 34.55606797207546], [-77.32797119279934, 34.556388434761125], [-77.32805297350893, 34.556496663884715], [-77.32811617724519, 34.55651532715956], [-77.32816017203174, 34.55653714229507], [-77.32839670772161, 34.556595587203034], [-77.3286260609727, 34.55661236417038], [-77.3289447194163, 34.556569940188474], [-77.32905256781572, 34.55653113668819], [-77.3289940919025, 34.556606220615656], [-77.3290828732249, 34.55674953479863], [-77.3290565819044, 34.556842053585655], [-77.32906268051833, 34.556919794858246], [-77.32911744969451, 34.557322934455996], [-77.32891956269808, 34.557651987504556], [-77.328777518372, 34.557774636066725], [-77.32868840579023, 34.55787422688479], [-77.32838970102205, 34.55808267390648], [-77.32839699760059, 34.55816092268448], [-77.32844506350818, 34.55819713541828], [-77.32867052331027, 34.55836642591706], [-77.32887138233585, 34.55881399220457], [-77.32888171240408, 34.55882570326521], [-77.32888505333986, 34.558829668080364], [-77.32889195762831, 34.55883935208211], [-77.3291497578218, 34.55911212451913], [-77.32936425609682, 34.5592459793397], [-77.32946832147795, 34.55944690292414], [-77.32965715948015, 34.56004115133089], [-77.32892953013977, 34.56010435517042], [-77.32888019108981, 34.56009650898348], [-77.32885643354707, 34.56014248125486], [-77.32814277832938, 34.56021610519133], [-77.32809220311538, 34.56022163394808], [-77.32802171562979, 34.5602120298226], [-77.32769822984253, 34.5602602586842], [-77.32750827859164, 34.56014207234086], [-77.32748789474206, 34.56013792495555], [-77.32730443058739, 34.56010757739888], [-77.32718961578453, 34.5601067787824], [-77.3269495130955, 34.560059552763434], [-77.32691026925772, 34.560351402240634], [-77.32670954310153, 34.56047656930236], [-77.32691016482629, 34.56046533860369], [-77.32726834764127, 34.56043483117898], [-77.3273041357135, 34.56043095532506], [-77.32734734039937, 34.560431476514495], [-77.32769804471096, 34.56046435605282], [-77.32796916760486, 34.56042794422606], [-77.32809200120965, 34.56044540460625], [-77.32838268192356, 34.56054948498312], [-77.32866292917235, 34.56042966588521], [-77.3288799338607, 34.56038458605686], [-77.32935350471496, 34.56094567480338], [-77.32953937530601, 34.56105673100903], [-77.3293782154975, 34.56179119841807], [-77.32918168792953, 34.562146323388525], [-77.32904933211324, 34.562502951948446], [-77.3289990428177, 34.56269476821321], [-77.32926316279374, 34.5630723755635], [-77.32926901069963, 34.5630831655147], [-77.32928095673151, 34.56308900955871], [-77.32966525622098, 34.56327991051852], [-77.32997916724929, 34.56340297847039], [-77.32988562413249, 34.563654254193715], [-77.32966469097121, 34.56392133369988], [-77.3295315099104, 34.564173111260594], [-77.329597911894, 34.564306849047426], [-77.32960633661183, 34.56436809760695], [-77.32966417262259, 34.564509777541915], [-77.32978955362827, 34.56499281035488], [-77.33015876140936, 34.56507531782991], [-77.33038093055323, 34.5651194954612], [-77.33045154553085, 34.565133379281555], [-77.33068528781786, 34.56525163699173], [-77.33084534885256, 34.565315315119065], [-77.33089836366827, 34.56533640621362], [-77.33091824516073, 34.56539069806301], [-77.3309617610708, 34.56551007189859], [-77.33105964103952, 34.5657949131088], [-77.33107553108516, 34.56596851100427], [-77.33123839299404, 34.566381190005146], [-77.33129103234954, 34.566553847628896], [-77.33132160289132, 34.566606337987], [-77.33148251215478, 34.5671684943447], [-77.33169425845102, 34.567401851765666], [-77.33202501972491, 34.56791723920236], [-77.3321994200468, 34.56799032191399], [-77.33241715165397, 34.568147023096756], [-77.33254379896204, 34.56841841398372], [-77.33245159667904, 34.56860236779647], [-77.33233001994833, 34.56867926779465], [-77.33202425964078, 34.568811743284876], [-77.33193251263825, 34.56896704029633], [-77.33164048080603, 34.56909648407914], [-77.33163003854595, 34.569096360940385], [-77.3316028220222, 34.56911314915984], [-77.33131748014938, 34.56924203206762], [-77.33123590449122, 34.56927646040014], [-77.33109582017993, 34.56933691283301], [-77.33070016552827, 34.569514891760754], [-77.33044762716217, 34.56964118959156], [-77.33036189830952, 34.56971603981444], [-77.33044742576857, 34.569873321234425], [-77.33051746402477, 34.57004259166349], [-77.3305467530783, 34.57011401031257], [-77.33060932393349, 34.57027985014867], [-77.3307223174301, 34.570640928334264], [-77.33082611757732, 34.5709229351081], [-77.33077525150722, 34.571424626800514], [-77.33078377401525, 34.57177809698438], [-77.33087822057269, 34.572147283922995], [-77.33088415584382, 34.57218820867176], [-77.33095253896828, 34.572300379417676], [-77.3311114325057, 34.572580081894024], [-77.33115747267816, 34.57265485482125], [-77.33123295909675, 34.57271206806426], [-77.33155385938804, 34.57301951272377], [-77.331626639082, 34.57308386330875], [-77.33182668551188, 34.573117403441074], [-77.33202062513836, 34.57309823745867], [-77.33228031245791, 34.572981445668965], [-77.33280897717833, 34.572673295406425], [-77.33298947453085, 34.572504487019856], [-77.33324015062658, 34.57227411681808], [-77.33359750265173, 34.572028995442146], [-77.33406216992776, 34.57180737206923], [-77.3343859760511, 34.571433392935624], [-77.33447863808412, 34.571346779619084], [-77.33459348468841, 34.571230499169516], [-77.33486425251388, 34.5708573502269], [-77.33517457593436, 34.57066775751182], [-77.33532506935563, 34.570438212289794], [-77.33570906484228, 34.57022104343313], [-77.3358870813223, 34.570113652883734], [-77.33596302739802, 34.57006932356545], [-77.3360215453179, 34.57011302523397], [-77.33614194212194, 34.57015881034077], [-77.33656411351834, 34.57029929243429], [-77.33675080541516, 34.570306952615624], [-77.33700251413096, 34.57045962588687], [-77.3370058930775, 34.5706085524012], [-77.33720921758302, 34.570854447853485], [-77.33738648503422, 34.57099248173018], [-77.33753823407616, 34.57099677233332], [-77.3376780347996, 34.57121158425372], [-77.33769085175446, 34.571469431868344], [-77.33793178957954, 34.57155245481944], [-77.33796320254321, 34.571595124459634], [-77.33805351663874, 34.57171343971773], [-77.33809024337212, 34.571830426839895], [-77.33812855214622, 34.57185252382749], [-77.3381954440562, 34.571986274086335], [-77.33812834889551, 34.5721151235794], [-77.33807280015863, 34.57215635756526], [-77.33793123420827, 34.57226777499302], [-77.33765333188201, 34.572488761085616], [-77.33757442792898, 34.572540405131335], [-77.33753701384725, 34.57255871030724], [-77.33750549408373, 34.5725439926474], [-77.33714298076242, 34.572607652348175], [-77.33704607543581, 34.57257606970802], [-77.33683792694876, 34.5725102416625], [-77.33674911083763, 34.57244943029858], [-77.33654232649232, 34.57242565673804], [-77.33625790654236, 34.572369658108556], [-77.33596138368863, 34.57212251372612], [-77.33560294231017, 34.57232052086249], [-77.33517312017884, 34.57246564653063], [-77.33496213215068, 34.572648479517675], [-77.33469483985877, 34.57291408928496], [-77.33454092504476, 34.57310464967426], [-77.33440631042647, 34.57338010633223], [-77.33438436335153, 34.57340350944189], [-77.33409745048431, 34.573540011862534], [-77.33385956984326, 34.57359945669484], [-77.33359618671109, 34.573618833051206], [-77.33335204930484, 34.57369319607216], [-77.33320205210856, 34.57378009592891], [-77.3330614575867, 34.57399795967649], [-77.33301626441514, 34.574229210333385], [-77.33312638704521, 34.5744940550114], [-77.33332617332584, 34.57480898806075], [-77.33343157270558, 34.57497000456711], [-77.33359068161016, 34.57561589406796], [-77.33359108797666, 34.57561998881937], [-77.33359092286199, 34.575623898606615], [-77.33358100358514, 34.57645668412378], [-77.33348183137619, 34.576484771777146], [-77.33287128243661, 34.57664323691018], [-77.33280564623718, 34.57665805129182], [-77.33272958632257, 34.576674832395824], [-77.3321359093303, 34.57680581492743], [-77.33201742387061, 34.57688613252227], [-77.33167120728193, 34.5771178372978], [-77.33160067712724, 34.57715544320042], [-77.3312290033769, 34.5773410829256], [-77.33100433073233, 34.577447955340254], [-77.33083475734138, 34.577606400410595], [-77.33075002197317, 34.57772648023277], [-77.33063122916607, 34.577949115088614], [-77.33044013347701, 34.57830725149084], [-77.33032864900807, 34.57851618684022], [-77.33022586128881, 34.57888121239509], [-77.33060754496007, 34.57877684167244], [-77.33122786251577, 34.57867930611455], [-77.33137221575923, 34.57864163469148], [-77.33162197433906, 34.57857645565171], [-77.33189093272335, 34.57854636560795], [-77.33201603338114, 34.57853505997069], [-77.33211955331713, 34.578490225555214], [-77.33262043862567, 34.57850463047137], [-77.33280405151577, 34.578570513783205], [-77.33330221904463, 34.57852111721952], [-77.33359217638574, 34.578476822921004], [-77.33389851918979, 34.57845308115134], [-77.3343802751614, 34.57841280825155], [-77.33491248892904, 34.578253066237465], [-77.3351684846916, 34.57820897819099], [-77.33545966005107, 34.57821235687165], [-77.33595662930936, 34.57808171690411], [-77.33658512588732, 34.577908881515924], [-77.33674474272163, 34.5779907108068], [-77.33701564454998, 34.57796680393696], [-77.33753306056057, 34.577633978044894], [-77.33831046415618, 34.57750034916767], [-77.33833451751096, 34.57749967162721], [-77.33910916386162, 34.57759524641721], [-77.33955682705852, 34.57767624839132], [-77.33989722744525, 34.57755821928432], [-77.34026070843422, 34.57760003580174], [-77.34068525183346, 34.577573253644644], [-77.3409177385642, 34.57771236013317], [-77.34124303867986, 34.57791619087298], [-77.34184494707462, 34.57827771566399], [-77.34226050887702, 34.57870238228989], [-77.34259181520656, 34.57906315430518], [-77.34328902632929, 34.579320134342495], [-77.3438359962285, 34.57956282208721], [-77.34491778681011, 34.579618430431005], [-77.34641443608245, 34.57995085042744], [-77.34698784143355, 34.58011264617508], [-77.34777674485838, 34.57952322127725], [-77.3493753209489, 34.57931832227051], [-77.35014047944736, 34.57945173351758], [-77.35055674503589, 34.57952430776856], [-77.35195541212798, 34.57977162269295], [-77.35329240064824, 34.57991914399364], [-77.35455165687978, 34.58143668372271], [-77.35519965028193, 34.581360644838526], [-77.3564437932799, 34.58140615049137], [-77.35737948663972, 34.581379288014375], [-77.35801997950742, 34.58130047542625], [-77.35854227260765, 34.58108449806953], [-77.35880817497218, 34.58104652131719], [-77.35909244153598, 34.580985527997925], [-77.3595962965218, 34.58092784976208], [-77.36016293758554, 34.58089909420142], [-77.36038439457596, 34.580851002590066], [-77.36054311976501, 34.58091189692745], [-77.36079071270356, 34.581047307010365], [-77.36103949357661, 34.58115458974341], [-77.36117205939412, 34.58165252760439], [-77.36125055139658, 34.581745592602715], [-77.36125049043136, 34.58183022331006], [-77.3612433157367, 34.58190816681448], [-77.36134536728306, 34.58247850472728], [-77.36145297913973, 34.58265017923043], [-77.36148188312914, 34.58316051059737], [-77.3615704800622, 34.5834823709414], [-77.36165863344107, 34.58399516378055], [-77.36169692950489, 34.58431327458955], [-77.36178455195692, 34.584488356606656], [-77.36248149525069, 34.58504942869449], [-77.36260483011617, 34.585184338721575], [-77.36274646321243, 34.585322621939035], [-77.3634062839335, 34.58590331162121], [-77.36353423976104, 34.586025708761966], [-77.36377900532227, 34.585975414246334], [-77.36398400323918, 34.58604673320768], [-77.36417553485856, 34.58607918886296], [-77.36432226978445, 34.58619493203071], [-77.36452453901009, 34.58623554624276], [-77.36448733873183, 34.58645884845046], [-77.36441177746981, 34.58656634336888], [-77.36432191245734, 34.586989759187304], [-77.36423649234678, 34.58725217389634], [-77.36424818561333, 34.587342394300606], [-77.36392760569292, 34.587538574413905], [-77.36370352065235, 34.58760397692191], [-77.3635334363305, 34.58777664717325], [-77.36309698677822, 34.58835725213019], [-77.36304275422631, 34.58868597224715], [-77.36303066715683, 34.588791355575225], [-77.36295151008895, 34.589004538360555], [-77.36290773044446, 34.589233609285095], [-77.36281344625418, 34.58932136485584], [-77.36274457831247, 34.58934986884672], [-77.36262965358539, 34.589397434993586], [-77.36205935660139, 34.589466685026544], [-77.3619563795974, 34.58947691237821], [-77.36186301361244, 34.58948459760705], [-77.36122506883254, 34.58953710773656], [-77.36116819754027, 34.589564055960956], [-77.36064171180053, 34.58984186814805], [-77.35969508893659, 34.59043357064962], [-77.35959143950494, 34.590508593949565], [-77.35946307493954, 34.59057859276217], [-77.3595912948802, 34.59079602409774], [-77.36003871533686, 34.59171143001822], [-77.36031828215049, 34.592153702057985], [-77.36116660556556, 34.59285249359482], [-77.36229199515375, 34.592355640521696], [-77.36240134936122, 34.59355205370531], [-77.36274250702981, 34.59380436752269], [-77.36358228315078, 34.59417537166139], [-77.36547590481332, 34.59480761691674], [-77.36549565163381, 34.59523457017793], [-77.36456024358984, 34.59689918216078], [-77.3643173033992, 34.59733148720484], [-77.3636817772459, 34.59846237253832], [-77.36330781490595, 34.59912781998574], [-77.36320759094161, 34.601422294241345], [-77.3633817765169, 34.60190199898436], [-77.36355813483878, 34.60269183912438], [-77.36356629925035, 34.60272454696147], [-77.36356853482036, 34.60276934792381], [-77.3635266302231, 34.602803081963664], [-77.36339528280575, 34.602890607989764], [-77.36273813859515, 34.60329906994867], [-77.36256547681221, 34.603717727886675], [-77.36247128463182, 34.60514296170782], [-77.36253874067094, 34.60541979279344], [-77.36259390980314, 34.60556609301673], [-77.36273688078396, 34.60605893637054], [-77.36296841288294, 34.60680639993905], [-77.36303714924301, 34.607046264922964], [-77.3633636116925, 34.607675127272536], [-77.36344107672947, 34.6078372284058], [-77.36344162629445, 34.607926247605405], [-77.3634560951898, 34.608684175516885], [-77.36342515125861, 34.60879505807043], [-77.36324760917111, 34.609265861290595], [-77.36312950666559, 34.609449452579035], [-77.36308532970756, 34.60953911600495], [-77.3628930540892, 34.60961433299124], [-77.36276901041396, 34.6096685586603], [-77.36273523878198, 34.60967896545938], [-77.3626880585248, 34.60969465080693], [-77.36234098992693, 34.60986202251278], [-77.36216265281512, 34.60995198111407], [-77.36214385768812, 34.609969066876054], [-77.36198403753757, 34.61016973185338], [-77.36197470667756, 34.610201275872754], [-77.36195908056187, 34.610584317215704], [-77.3619684780521, 34.61059652510587], [-77.36209087989062, 34.61073450022219], [-77.36232041529038, 34.610992026747056], [-77.36234046816487, 34.61100510036022], [-77.36248183297721, 34.61109949434257], [-77.36273452771721, 34.611253233255454], [-77.36277129406467, 34.61129045772127], [-77.36276469659879, 34.61133102581622], [-77.36275971794133, 34.61135892555215], [-77.36275544392629, 34.61175691179916], [-77.36273428226166, 34.611797511716816], [-77.36259859472214, 34.612058024722344], [-77.36251701615669, 34.612215784984535], [-77.36233976463073, 34.61254965864547], [-77.3622989374719, 34.612627793735555], [-77.36226154675393, 34.61267711051691], [-77.3622102244294, 34.612823884601006], [-77.3620854388417, 34.613127012308865], [-77.36204945739813, 34.61324440964772], [-77.36194858269397, 34.61357126424244], [-77.3619491448305, 34.613575524140316], [-77.36194511149363, 34.61358214348538], [-77.36192757863411, 34.613593165565035], [-77.36168381662445, 34.61375258433425], [-77.36155086082218, 34.613726297924536], [-77.36143698614283, 34.61376752487234], [-77.36115660970981, 34.61386833432407], [-77.36102587562071, 34.613987875662374], [-77.36087834086825, 34.61402492838214], [-77.36076233502854, 34.61405720771266], [-77.36064507646603, 34.61405713460931], [-77.360509160802, 34.614051115338086], [-77.36036825620464, 34.61383213819144], [-77.36033641083546, 34.613803296612595], [-77.36024588001898, 34.613523735309734], [-77.36018001273334, 34.61340125195855], [-77.36001180648225, 34.61304113919212], [-77.35998600713523, 34.61299220119016], [-77.35990514109018, 34.61294155427869], [-77.3595804122295, 34.61275174935401], [-77.35953329978952, 34.61269599077362], [-77.35948447725704, 34.61265224521297], [-77.35910352230624, 34.612371800806514], [-77.35879245669088, 34.61193735905685], [-77.35877735112105, 34.61192118195353], [-77.35876803740342, 34.61190624403127], [-77.35868561186177, 34.61180295406651], [-77.3584030026847, 34.61110967053646], [-77.3587930701886, 34.61070654032826], [-77.3591201878801, 34.61050958339045], [-77.3591873361823, 34.61051374974613], [-77.3595536780168, 34.61009497222911], [-77.35918766694839, 34.60984483974987], [-77.3590533755416, 34.60988704110663], [-77.3587934555969, 34.60993433574718], [-77.35848141182497, 34.60991317245087], [-77.35800476762526, 34.610629701684665], [-77.35734676558494, 34.610552903528486], [-77.35721649238504, 34.6105016381524], [-77.3571729363033, 34.61048449764998], [-77.35642835318778, 34.610120436228236], [-77.3559030215871, 34.61033689012389], [-77.35381185773568, 34.61065061692851], [-77.35355335908586, 34.613203974866295], [-77.35352237046438, 34.61351011139085], [-77.35371112470885, 34.61395499653409], [-77.354366705276, 34.61560593221296], [-77.35484854575046, 34.61587360798573], [-77.35506007480677, 34.616457128698265], [-77.3560526066305, 34.61654248608068], [-77.35599509111219, 34.61701347929016], [-77.35594706641447, 34.61740677308525], [-77.35581596867213, 34.617619448307344], [-77.35487247412618, 34.61841047705944], [-77.35485725873829, 34.618423537428036], [-77.35484715211837, 34.61844620115547], [-77.35428462887575, 34.619588096473784], [-77.35405795791385, 34.61986092889961], [-77.35371362000177, 34.62027538763718], [-77.35348423500193, 34.62054002062786], [-77.35326919937103, 34.62044867931536], [-77.35321067379955, 34.62041078856298], [-77.35301883413005, 34.620375332741474], [-77.35169270587178, 34.619792553145345], [-77.35036987883261, 34.62075635024962], [-77.3502826908411, 34.620949312318245], [-77.35016572915299, 34.62104412235806], [-77.34998237024996, 34.62105618040488], [-77.34900823209328, 34.62109371975529], [-77.34889632913024, 34.62109803189635], [-77.34853959295576, 34.621009399771076], [-77.34780005669383, 34.620785634029446], [-77.34753734113532, 34.620706138863675], [-77.3458577285791, 34.620039725364684], [-77.34478457295813, 34.61974897806094], [-77.34226399697941, 34.618799282551294], [-77.34201190590129, 34.61869245096342], [-77.34115157265366, 34.62042943922552], [-77.34110324616115, 34.62054194384804], [-77.34086948568196, 34.62073363361566], [-77.33993072755591, 34.62107805176597], [-77.33930273665548, 34.62137188236214], [-77.3387573166807, 34.62160983799499], [-77.33812766530323, 34.62157091011897], [-77.33749197408375, 34.62168392457571], [-77.33611950840161, 34.62095534746932], [-77.3359220766721, 34.62088371186521], [-77.33461618036355, 34.62011355845563], [-77.33404141240902, 34.62047826586288], [-77.33320103944648, 34.62101151067274], [-77.332379049835, 34.62172359333814], [-77.33031561306407, 34.62351104038217], [-77.3303277510851, 34.62366641385739], [-77.33033461976818, 34.6268843475352], [-77.33094605759538, 34.62958258270008], [-77.33101713913811, 34.63016667330207], [-77.33110448151146, 34.6308842088241], [-77.33120368790512, 34.63182905338148], [-77.33123411050003, 34.63252094545485], [-77.3312503830355, 34.632891083996306], [-77.33098509403551, 34.63354701394999], [-77.33098305694497, 34.63362114304514], [-77.33108828360422, 34.63437684281832], [-77.33109861130534, 34.634396388374434], [-77.33131622526298, 34.6350564493319], [-77.33143499495668, 34.635173263195455], [-77.33151539321585, 34.635236122439025], [-77.33158739730331, 34.63531557254116], [-77.33163054450056, 34.63535743218269], [-77.33159966719165, 34.63537667301637], [-77.33155957964134, 34.635494203486886], [-77.33153052253806, 34.635493138543126], [-77.33145167167777, 34.63543671981547], [-77.33141841868675, 34.63542808445725], [-77.33125825873023, 34.63527059781304], [-77.33121986355462, 34.63524719783254], [-77.33093675129086, 34.63526362351161], [-77.33086005754367, 34.63525213710544], [-77.33071698286271, 34.63509479928642], [-77.33058050141909, 34.63508363012638], [-77.33056990681249, 34.63509897309786], [-77.3305770707154, 34.63507996209006], [-77.33057262283634, 34.6350443944167], [-77.33060436521603, 34.63493581085537], [-77.3305960315707, 34.63486636479514], [-77.33075184930206, 34.63473987929589], [-77.33104537587188, 34.63438272914923], [-77.33079193127342, 34.63379860115947], [-77.33016130962747, 34.63418837140781], [-77.32971343961356, 34.63395384463631], [-77.32950721019517, 34.634046024378705], [-77.32941736977244, 34.63407353386985], [-77.32936323688973, 34.634110377108954], [-77.32917706188044, 34.63412562695138], [-77.32910915514015, 34.634132737885736], [-77.32902630617465, 34.634129379083944], [-77.32889119730248, 34.634117572162296], [-77.32878374345647, 34.63410629021695], [-77.3286671495929, 34.6341276223214], [-77.3284697033693, 34.63413647910994], [-77.32806174759429, 34.634611577840765], [-77.32793122107748, 34.63464314097591], [-77.3278627059225, 34.634711018188455], [-77.32760342419198, 34.63485486900415], [-77.32758753796031, 34.63512137997125], [-77.32739918451172, 34.63518193820506], [-77.32721408674925, 34.63514160598274], [-77.32679743412554, 34.63505081692888], [-77.32672696083793, 34.635022473729464], [-77.32670158890755, 34.635008239361035], [-77.32599963002285, 34.63458847222792], [-77.32571785614397, 34.63537725185889], [-77.32564122110058, 34.63596796325142], [-77.32563722520472, 34.635972358593094], [-77.3256250190235, 34.63599128473193], [-77.32538390115276, 34.63630504363264], [-77.32531015391415, 34.636331211012696], [-77.32525983317947, 34.63644225553923], [-77.32512130558135, 34.63659155161895], [-77.32501631213381, 34.636724143856846], [-77.32501589800323, 34.63686378406116], [-77.32487392805346, 34.63690395451697], [-77.324864444929, 34.63690663777406], [-77.3247181251895, 34.636638464754405], [-77.32447972921292, 34.63658478943936], [-77.32427958233703, 34.63670342809368], [-77.32413562361593, 34.63664361902038], [-77.32380436491206, 34.63640969560858], [-77.32370244659009, 34.636353248532124], [-77.32349401764449, 34.63626240961767], [-77.32324943896907, 34.636102127976656], [-77.32309959949512, 34.636088101778064], [-77.32278484731606, 34.63597472025774], [-77.32273814117093, 34.6359663687491], [-77.32269270845886, 34.635888659893986], [-77.32283235411046, 34.63577991918569], [-77.3229932828961, 34.635558402501296], [-77.32302966968845, 34.63553599942485], [-77.32325437749151, 34.63545129180419], [-77.3230545229574, 34.635340238828974], [-77.3228128210395, 34.63533345483732], [-77.32227935332341, 34.63519108829723], [-77.32202117749644, 34.63509001097346], [-77.32116024418221, 34.63512466185983], [-77.32097819574592, 34.6350877140641], [-77.3207219297914, 34.635365987515115], [-77.32042221279957, 34.635507403768074], [-77.32037757857435, 34.63572841467809], [-77.32017961603515, 34.63587286262727], [-77.31990911983958, 34.63595825114769], [-77.31987465991743, 34.635969129153615], [-77.31983013811652, 34.635983183272145], [-77.3195736236836, 34.636064156877595], [-77.31948400964615, 34.63609434576147], [-77.31942372120801, 34.63611474020546], [-77.31937479786104, 34.63612656624908], [-77.31927218017374, 34.6361571579493], [-77.31913857129283, 34.636204139125105], [-77.3186347628405, 34.63610272472814], [-77.31862300127725, 34.636112468931586], [-77.31860817170585, 34.63610617073613], [-77.31859183419874, 34.63609052691367], [-77.31818839747592, 34.635789300370746], [-77.31813454157604, 34.63573122553517], [-77.31815258757388, 34.635652319862245], [-77.31814112539371, 34.63530833657853], [-77.31815856161603, 34.63499046969655], [-77.31819756903563, 34.6344566272834], [-77.31818073278743, 34.63434375313428], [-77.31799092045367, 34.63388506636265], [-77.31784070316988, 34.633661573148125], [-77.31764511393345, 34.63342185509111], [-77.31740581644351, 34.63323681924197], [-77.3172606330218, 34.63303517832773], [-77.31707617886917, 34.632922397630544], [-77.31659080720135, 34.63236542569581], [-77.3164563658593, 34.63233170218208], [-77.31624031459134, 34.63219299676233], [-77.31586323157971, 34.631929780029964], [-77.31563451105792, 34.63166304658852], [-77.31514472837297, 34.6315393209132], [-77.31512450954745, 34.63152476583322], [-77.31507850544051, 34.631508264863236], [-77.31466521983283, 34.63128614215158], [-77.31442821955963, 34.63115876327708], [-77.31411554477543, 34.63079627139711], [-77.3140914703074, 34.63052358515919], [-77.31402291811442, 34.63026225199442], [-77.31393503018339, 34.62997704212259], [-77.31364268330296, 34.629436831251276], [-77.31354723322528, 34.62918622030003], [-77.31346531732203, 34.6290707972369], [-77.31326002194588, 34.628411847940534], [-77.31327422533506, 34.628379666902276], [-77.31322085736726, 34.62770778392521], [-77.31341901311906, 34.627515855267006], [-77.31301400107716, 34.627299536769726], [-77.3119971665513, 34.627386322402], [-77.31149397603892, 34.627429265470184], [-77.31045530379863, 34.62730877359982], [-77.30936310984706, 34.62800869812481], [-77.30929117179633, 34.62804103105213], [-77.3082503023241, 34.629082008789965], [-77.30784599378175, 34.62936068921581], [-77.30728859426274, 34.63004375222668], [-77.30574258785828, 34.632735446162954], [-77.3055480987507, 34.63555572996119], [-77.30607305225735, 34.63696194669251], [-77.30621826974648, 34.638520078868964], [-77.30536440546022, 34.64023191666046], [-77.30510557510095, 34.64047031645375], [-77.30543757526708, 34.6405968403872], [-77.3066203695536, 34.642612248854874], [-77.30819820189875, 34.64303992228581], [-77.30850563772506, 34.64312549388208], [-77.30876341318421, 34.642962153502474], [-77.30938259789006, 34.64326030249809], [-77.3108225262134, 34.643478069997144], [-77.3111932570844, 34.64375650410806], [-77.31191997459328, 34.643846721279786], [-77.31386247759994, 34.64429563455851], [-77.3150778442299, 34.64423874835983], [-77.31584250690118, 34.64575103352513], [-77.31623801539503, 34.64653322180887], [-77.31692368133298, 34.64678795403458], [-77.31714850570505, 34.64606074394813], [-77.31814766192878, 34.64650591883793], [-77.31866374183826, 34.645364366299425], [-77.31883482850625, 34.644966071833586], [-77.31892618226996, 34.644484422166784], [-77.31895770370582, 34.64441342016576], [-77.31899254227166, 34.64433494538174], [-77.31925130060979, 34.64402021886398], [-77.31932513457332, 34.64358576276901], [-77.31938057282184, 34.643473545124], [-77.3194412434298, 34.643380382976915], [-77.319652318888, 34.643059941329625], [-77.3197994913969, 34.64292913425065], [-77.31996269073201, 34.64278834202712], [-77.32017451579804, 34.642880258355305], [-77.32014728911975, 34.64262908739946], [-77.32023729366054, 34.64256148930673], [-77.32031185922315, 34.64248908102941], [-77.3203760043879, 34.642455087319114], [-77.32040415338808, 34.64242732989856], [-77.32050600189622, 34.64239181424661], [-77.32051510515089, 34.642530957609964], [-77.32050480883784, 34.64258007617656], [-77.32046863362842, 34.642752650129594], [-77.32045660682249, 34.64281002430675], [-77.32041373390156, 34.64301454849853], [-77.32039810838279, 34.64308909088612], [-77.32032578960859, 34.643448591237046], [-77.32087863408626, 34.64416188375271], [-77.32090084290766, 34.644192579461716], [-77.32091587951601, 34.64421167164175], [-77.32100048621727, 34.6443190967823], [-77.32134216550196, 34.64499720506351], [-77.32141412212644, 34.64547211430479], [-77.32186591480004, 34.64589062563968], [-77.32293753739927, 34.64704812498245], [-77.32370066324447, 34.646840825793205], [-77.32346713621874, 34.64600014661262], [-77.32295185275674, 34.6449210406762], [-77.32278714845006, 34.644799100110205], [-77.32289793688116, 34.644756405558475], [-77.32264204733127, 34.64397501822508], [-77.3224756978975, 34.64337148148112], [-77.32241420610282, 34.64316227994505], [-77.32239859768663, 34.642955278825], [-77.32253020437045, 34.6428204964084], [-77.32270686352923, 34.64257579220345], [-77.32292110259161, 34.64249008651706], [-77.32309195970231, 34.64242937739478], [-77.32325978503806, 34.64242479996726], [-77.32370992889645, 34.64231831658904], [-77.32418945334013, 34.64227542545272], [-77.32434051858236, 34.64227012894683], [-77.32465680566834, 34.64239475175397], [-77.32503158116629, 34.64252316841109], [-77.32517542868675, 34.64261956693968], [-77.32562507544127, 34.642631651406624], [-77.32569792712712, 34.64265307419438], [-77.32573981305572, 34.642650343342325], [-77.32625681784403, 34.64255426213985], [-77.32631358521317, 34.64253050188441], [-77.32640221853046, 34.64248712592021], [-77.32678028977129, 34.64237576007982], [-77.32691120938647, 34.6423181157025], [-77.32710974810472, 34.64223459358085], [-77.32747083928984, 34.64235328578579], [-77.32756412167561, 34.64238110230835], [-77.32762841919842, 34.6423558291185], [-77.32817653777045, 34.642242400988586], [-77.3283337644244, 34.642107603122604], [-77.32848719430268, 34.642329490894454], [-77.32851479521595, 34.642897092843654], [-77.32849998282896, 34.643314344232145], [-77.32833017273889, 34.644038990087545], [-77.3280969026238, 34.64503444892844], [-77.32804215361969, 34.64555619147984], [-77.32792148218255, 34.6457830055949], [-77.32780349669297, 34.64660040144133], [-77.3288915557133, 34.64634935465594], [-77.32958237283808, 34.64605470664071], [-77.33005087973672, 34.64674375633557], [-77.33166556662039, 34.64627029586772], [-77.33213258021138, 34.6460000368444], [-77.33277409980842, 34.6459452332141], [-77.33384105971315, 34.64563235223761], [-77.33410827577576, 34.64493433896369], [-77.33430738284859, 34.64473316768738], [-77.33440204214975, 34.64454781104941], [-77.33462416694323, 34.64401957017024], [-77.33480266959276, 34.643861026894214], [-77.33488109163025, 34.643745166747735], [-77.33527379875176, 34.643293072072794], [-77.3354345041128, 34.64331273558665], [-77.33547182789498, 34.643151238073834], [-77.33562339051697, 34.64303847740962], [-77.33593467874906, 34.64291611355442], [-77.33599475227304, 34.64291436406887], [-77.336319287434, 34.64294298747282], [-77.33659910839101, 34.64296547429834], [-77.33666020222995, 34.64303966335899], [-77.33677410802918, 34.64303259308222], [-77.33733441470885, 34.64320856350436], [-77.33747061920792, 34.643015629467314], [-77.33776670249215, 34.642950068918125], [-77.3379192156379, 34.64293243613906], [-77.33804969392783, 34.642889016633006], [-77.33825388645948, 34.64267750289064], [-77.33846782497972, 34.64247619675366], [-77.33871559576501, 34.64221956298313], [-77.33886289683932, 34.642593921864716], [-77.3390615270321, 34.64268276364625], [-77.3391482107086, 34.64267581990593], [-77.33936425943992, 34.64294710882829], [-77.33944267813177, 34.643076243888494], [-77.33953420422706, 34.6432741183127], [-77.33954926360639, 34.64334371393092], [-77.33962781128815, 34.64346940786676], [-77.33972333304979, 34.643668691443125], [-77.33980744102566, 34.64386284439391], [-77.33992656402805, 34.644135922792486], [-77.33998237389153, 34.64430393786201], [-77.34015144913488, 34.64448209076239], [-77.34032990335135, 34.64476400246699], [-77.3405310551499, 34.644777980094275], [-77.34083401127633, 34.64485536593322], [-77.34085560479896, 34.64487132553625], [-77.3408698778642, 34.64487091140315], [-77.34088965201943, 34.644873190164816], [-77.3409783033453, 34.644915433871404], [-77.34102253190345, 34.64499724352155], [-77.34103331685694, 34.645039008230526], [-77.34104505850281, 34.64507030113932], [-77.34107491036147, 34.64524429766622], [-77.3411233414811, 34.645489377651586], [-77.34115610102079, 34.64565515056665], [-77.34114943666171, 34.64578296140593], [-77.34114002435032, 34.646079354687956], [-77.34112626445665, 34.646146697831036], [-77.341059190435, 34.64636595497993], [-77.34103856775275, 34.646515277506], [-77.34099970505827, 34.64688228441304], [-77.3409937612155, 34.64694342471033], [-77.34099202319534, 34.64697049525525], [-77.34098220799399, 34.6470229485129], [-77.34090858207057, 34.64737711305006], [-77.34088036187373, 34.64753349861421], [-77.34087269664865, 34.647593037100854], [-77.34080314652206, 34.64772503028586], [-77.34075523648843, 34.64775031109669], [-77.3406207128777, 34.64783862110487], [-77.34054377531548, 34.64788652568067], [-77.34047272413301, 34.647925585637616], [-77.34022933325257, 34.64805596021391], [-77.3400901073743, 34.64813025292297], [-77.33993422706591, 34.648180630980235], [-77.33978599733612, 34.648179976149905], [-77.33976557000904, 34.6481774482559], [-77.33960610647038, 34.64814101820237], [-77.33926386284963, 34.6480261585051], [-77.33926281628482, 34.64802591450871], [-77.33926226085356, 34.64802575281137], [-77.33926108220804, 34.64802522529624], [-77.33891103706156, 34.647868558669025], [-77.3387751077145, 34.64784207470897], [-77.33832870949597, 34.64782037996998], [-77.33827357995997, 34.64788279132824], [-77.33819062445606, 34.647851076539624], [-77.337650414261, 34.647854394624034], [-77.33765200646593, 34.64797607480139], [-77.33758685486174, 34.64789825414457], [-77.33741710431212, 34.64797021129486], [-77.33736703633579, 34.64815120567749], [-77.33732844178022, 34.64822107141838], [-77.33734490916001, 34.64837720333358], [-77.33744491018741, 34.64832980641001], [-77.33771967359266, 34.648312843005755], [-77.33787503652701, 34.648475815860806], [-77.33797513952695, 34.64862369688271], [-77.33805122518108, 34.64870105954367], [-77.33813874815806, 34.64880510852629], [-77.33823239673634, 34.64891643997461], [-77.33828769504356, 34.64900280060897], [-77.33832500419217, 34.64915144883556], [-77.33836816459342, 34.64941375344826], [-77.33829027786838, 34.64955920983685], [-77.3381121116899, 34.6496199630378], [-77.33799857584607, 34.64970085776214], [-77.33784454432089, 34.649684225318126], [-77.33766789534909, 34.64964852844857], [-77.33733596279252, 34.6495553992041], [-77.33733060194616, 34.64955355928562], [-77.33732605986249, 34.64954067887503], [-77.33732206404133, 34.649557306411644], [-77.33705357954354, 34.6499662797909], [-77.33706046417763, 34.650015198513785], [-77.33705972384722, 34.65008976867672], [-77.33704754694013, 34.65043896582404], [-77.3369727235779, 34.65055806727982], [-77.33691016026802, 34.65065765226768], [-77.33683487548343, 34.65076301244871], [-77.33671653527853, 34.65076910879291], [-77.33661303768613, 34.650772351981985], [-77.33649158221634, 34.65077615776141], [-77.33642189043277, 34.65077834151559], [-77.33642273411061, 34.65071188212129], [-77.33640326499858, 34.65052737198445], [-77.33640343958407, 34.65052592242582], [-77.33642137846982, 34.65037697759601], [-77.33642910444428, 34.65031282904176], [-77.3364485198564, 34.6501516235367], [-77.33643492197393, 34.65010103337003], [-77.33640843202545, 34.65003125150884], [-77.33644655114884, 34.64967744250684], [-77.33597499944017, 34.649190263250695], [-77.33563460753145, 34.64946672820797], [-77.3353992748182, 34.649511805684014], [-77.33518191412587, 34.64955343882408], [-77.33416607259038, 34.64974801233782], [-77.33306623632869, 34.64995866194417], [-77.3328285570224, 34.64946493301943], [-77.33058246554721, 34.65028303657908], [-77.3304018311207, 34.65013496665655], [-77.33004429058862, 34.65009504481543], [-77.32995187209175, 34.650568422223586], [-77.33039702943744, 34.65065004642973], [-77.32993132940372, 34.65265889467425], [-77.32983737249356, 34.65370095940783], [-77.32924295884654, 34.65404158626679], [-77.32889127111768, 34.654357137721384], [-77.32867887141293, 34.65430946061076], [-77.32856890946302, 34.65426797403819], [-77.32830296331733, 34.654170500209446], [-77.3259352898937, 34.6534023498987], [-77.32452978337275, 34.653078767865594], [-77.32313465061875, 34.65221060767264], [-77.32097471503782, 34.652303806855706], [-77.32060604467794, 34.65237387177437], [-77.32026935286521, 34.65527195445711], [-77.32167996598066, 34.658301537785434], [-77.32174196569746, 34.65844599644013], [-77.32174027846881, 34.65859817498134], [-77.3219996047138, 34.65931552640856], [-77.32259260822197, 34.66150243483918], [-77.32341903505491, 34.66159199119212], [-77.32477973151568, 34.66176587884505], [-77.3250826190897, 34.6619121795784], [-77.32628965451568, 34.66336928114818], [-77.32750952107912, 34.66374447702441], [-77.3280447465179, 34.6639059546549], [-77.32830953401958, 34.663963719608866], [-77.32912891593531, 34.664185011879916], [-77.32939616949358, 34.66425718918526], [-77.33044100683753, 34.66433734165467], [-77.33072318691532, 34.6644868501155], [-77.33119573298002, 34.66451644762567], [-77.33204210178911, 34.66467616323294], [-77.33244711396206, 34.66372991995463], [-77.33277702534909, 34.66332337908235], [-77.3327823884629, 34.66199970258482], [-77.33278240365, 34.66199596042175], [-77.33278254262456, 34.66199393224245], [-77.33278262048118, 34.66198673176731], [-77.3327942313949, 34.661337543135616], [-77.33279311486623, 34.661150505558396], [-77.33290636273925, 34.6610088627491], [-77.33303785225424, 34.66092016178603], [-77.33304757607911, 34.66091484115525], [-77.33305847817697, 34.660916924786825], [-77.33321481034436, 34.66095033149416], [-77.33331591334836, 34.660943828564726], [-77.33365909664302, 34.66103171504069], [-77.3337197383006, 34.66129257340149], [-77.33379148503992, 34.661601195297386], [-77.3338492364486, 34.6618496185125], [-77.33390251447665, 34.66207879906696], [-77.33415848845084, 34.66245963161971], [-77.33474572192483, 34.66249195411852], [-77.33549890952297, 34.662756054810885], [-77.33576087283382, 34.66158736625644], [-77.33549218702969, 34.66122857747875], [-77.33507601293563, 34.6606515087999], [-77.33482035597248, 34.66026227060435], [-77.33477232789143, 34.66003501161807], [-77.33453527812269, 34.65967851264138], [-77.33446364227048, 34.6595594979993], [-77.33429022746019, 34.65925716234766], [-77.33432005961375, 34.659091816753424], [-77.33443255988524, 34.65904276612792], [-77.33453475093336, 34.65895859085546], [-77.33471527925764, 34.658856225414496], [-77.33495187095346, 34.65868069174002], [-77.33509183330378, 34.658303203012125], [-77.33522105839172, 34.65818625341541], [-77.33533624931528, 34.658093221770116], [-77.33549748975256, 34.65796844273205], [-77.33560955426105, 34.657960085191576], [-77.33580047460052, 34.65788278404314], [-77.33604741088529, 34.657833640807155], [-77.3368866707498, 34.65781772373411], [-77.33707335352065, 34.6578434345709], [-77.33722366717083, 34.65780150125997], [-77.33806825230539, 34.657894819920436], [-77.33830898452408, 34.657949354083875], [-77.33840886112887, 34.658115708663324], [-77.3385005387146, 34.65798970094122], [-77.33902883770998, 34.658014108299476], [-77.33926054876721, 34.65773120923369], [-77.3394902312038, 34.65757902428133], [-77.33957230686737, 34.65753184958312], [-77.33964585426702, 34.65759925914456], [-77.33979125630698, 34.65752638978325], [-77.33984809862996, 34.65731091690916], [-77.33989786913241, 34.657292282612985], [-77.33990993637792, 34.657076505425735], [-77.33968572815111, 34.656828869061464], [-77.33960659444305, 34.65652886731629], [-77.33964900411326, 34.65639273179294], [-77.33970977779751, 34.65632461361842], [-77.33997956552321, 34.656371909859146], [-77.34019358042286, 34.65591518051529], [-77.3404012745497, 34.655760446879135], [-77.34048213223424, 34.655686221169546], [-77.34074575684596, 34.6554219437172], [-77.34102501045459, 34.655201130514385], [-77.34113324000796, 34.65510921654408], [-77.34123873168558, 34.65492774662398], [-77.34128534748133, 34.65490336308578], [-77.34157178582205, 34.6548513373333], [-77.34159444823108, 34.654848207940375], [-77.34161687567624, 34.65484559506875], [-77.34191495373295, 34.65483493355673], [-77.34217124285014, 34.65489628936016], [-77.34224615348012, 34.65490458023457], [-77.34260424070649, 34.65514782685405], [-77.34296995616648, 34.65531960726633], [-77.34310124219269, 34.65535152419986], [-77.3431638018936, 34.65550751266237], [-77.34375709510938, 34.65604965346107], [-77.34392463711652, 34.656017823766824], [-77.34440593339428, 34.656091695283294], [-77.34533137030326, 34.656897957229056], [-77.34551647545585, 34.65745927087182], [-77.34597654169073, 34.65753324510631], [-77.34629009252828, 34.65725366446758], [-77.34659988144935, 34.657448416878495], [-77.34664969921334, 34.657512219842914], [-77.34681826215703, 34.65753782629291], [-77.34709938303723, 34.65777019346188], [-77.34730549172107, 34.65777272996201], [-77.34739558607299, 34.65775789292254], [-77.34762867744256, 34.65784855967101], [-77.347633425723, 34.657861146890454], [-77.34765921914236, 34.657864288249186], [-77.34802690521887, 34.658175599463306], [-77.34805679293497, 34.65817123196593], [-77.34827866234265, 34.658181315392085], [-77.3484342264162, 34.65857226669907], [-77.34875283761842, 34.65860089327587], [-77.34903360897985, 34.65847978510283], [-77.34936961100118, 34.65848337575171], [-77.34957126812162, 34.658617650387846], [-77.35016587438177, 34.65925831668277], [-77.35029918928024, 34.65947311140373], [-77.35046932610126, 34.65956851222475], [-77.35054968285746, 34.65989463449576], [-77.35079335423791, 34.66079144661576], [-77.35076809967016, 34.66121549047051], [-77.3507512431791, 34.66141705321144], [-77.35077160014225, 34.66226994182596], [-77.35064329117176, 34.662920635295436], [-77.35095323340343, 34.66317296381893], [-77.35147856330255, 34.66280593306709], [-77.35200458893688, 34.66258663531562], [-77.35210649763637, 34.66253850203602], [-77.35240752027092, 34.66218900630821], [-77.35263524162208, 34.661983239359245], [-77.3528960690705, 34.66208422084166], [-77.35286708764372, 34.66177124019594], [-77.35308462334966, 34.66159302767598], [-77.35316483418089, 34.661432228717885], [-77.35334694136557, 34.66147728951951], [-77.35351191513712, 34.66168267843612], [-77.35362585782696, 34.662073468348666], [-77.35409437550402, 34.662446684447524], [-77.35362198158842, 34.662761589865774], [-77.3538801409681, 34.663866932581676], [-77.35394907260105, 34.66415465525833], [-77.35420511066496, 34.664572674719956], [-77.35422103928181, 34.66458807259381], [-77.35474261248692, 34.664782466259645], [-77.35488577459728, 34.66486472049754], [-77.35548033728607, 34.664919102622235], [-77.3557062275388, 34.66502148773912], [-77.35587643248088, 34.66499941586504], [-77.3560496411846, 34.66497658411906], [-77.35694793964318, 34.66485393220701], [-77.35710748833942, 34.66488131523204], [-77.35761621360723, 34.66512785057161], [-77.35743738693914, 34.665625045186815], [-77.35745343926452, 34.665647376871455], [-77.35746357895343, 34.66571624410201], [-77.3575196792797, 34.66599058728818], [-77.35749232926082, 34.66610488384123], [-77.3574740665558, 34.66623965180161], [-77.35735249911882, 34.66661147896404], [-77.35714796039241, 34.66706517967836], [-77.35714111344763, 34.667127903379686], [-77.35711459128247, 34.66719740511794], [-77.3567906966338, 34.66766342377012], [-77.3566962911418, 34.66810300464055], [-77.35670541129558, 34.668162526400025], [-77.35671572574772, 34.66818635351795], [-77.35666110176325, 34.66848136342164], [-77.35662555209186, 34.66866088209597], [-77.35651867717473, 34.669126461285906], [-77.35652437362833, 34.66922707450072], [-77.35601680805678, 34.66971926895998], [-77.3555806440601, 34.67014222062983], [-77.35507613994021, 34.67049597599273], [-77.3539380830681, 34.67167772888726], [-77.35358718561912, 34.67172879292647], [-77.35302423730336, 34.67207980029412], [-77.35361811768716, 34.672780006355744], [-77.35509125967883, 34.67416731434237], [-77.35553101344497, 34.67443688621167], [-77.35621920981359, 34.67406251959252], [-77.3564196340487, 34.673563019062534], [-77.35765292421195, 34.67278069815058], [-77.35786302716002, 34.672389983238546], [-77.35821333654906, 34.67176391369243], [-77.35847727731519, 34.671330829459336], [-77.35866248267148, 34.6711228328585], [-77.35885642551929, 34.671226912187045], [-77.3588864375676, 34.671245730486326], [-77.35892423336304, 34.67126942913505], [-77.35936440325966, 34.67153860836619], [-77.35945915802287, 34.67159324238345], [-77.35965821969512, 34.67165597981607], [-77.35988516445461, 34.67180626373106], [-77.36005795067884, 34.671920682856836], [-77.360463706872, 34.67187480946451], [-77.36058795283434, 34.67190686602634], [-77.36074389304903, 34.671940390972836], [-77.36083321645097, 34.671981935763434], [-77.36094591279502, 34.67202549904988], [-77.36101339320393, 34.672042798469185], [-77.3611771010709, 34.67207582222712], [-77.36134510015903, 34.67211239069563], [-77.36157698629577, 34.67216286504276], [-77.36171456660358, 34.67222216357217], [-77.36185010161194, 34.672252818039915], [-77.36195720590709, 34.67231488942359], [-77.36204210929569, 34.67236421357063], [-77.3621028681257, 34.6724129002193], [-77.36223709423753, 34.67252012596606], [-77.36226069641438, 34.672590148080246], [-77.3624484892107, 34.672734773257865], [-77.36249076305334, 34.67280724517992], [-77.36258743804925, 34.672805319670715], [-77.36277325575034, 34.67293384247587], [-77.36279561312068, 34.67296676684026], [-77.36283230123051, 34.6729926489277], [-77.36301680781608, 34.673144070542996], [-77.36301444896974, 34.67319251120706], [-77.36306799595837, 34.67321157967322], [-77.3631957517168, 34.67344715210991], [-77.36358225441504, 34.673501705168796], [-77.36360885116333, 34.67352333308772], [-77.36363944593253, 34.67354590107279], [-77.3638254829744, 34.67369468082675], [-77.36385839829524, 34.67372543369266], [-77.36405498809296, 34.673934958326235], [-77.36407453143309, 34.673953260801504], [-77.36409289606065, 34.673970978759705], [-77.36428192175512, 34.674187819698055], [-77.36428260546047, 34.67418860400326], [-77.36428984080801, 34.67419713981242], [-77.3644639458814, 34.67440737894624], [-77.36448154684734, 34.67442835752996], [-77.36449974233979, 34.674464660834374], [-77.36461785783902, 34.67462992302943], [-77.36457552507918, 34.674750235183936], [-77.36458548805643, 34.67487806622194], [-77.36470001493063, 34.67519894319268], [-77.36449551186767, 34.67537782013563], [-77.3645617937731, 34.675549273715276], [-77.36475816485208, 34.67563659830165], [-77.3647884741663, 34.67582495201119], [-77.36496206563235, 34.67602957008942], [-77.36501079954567, 34.676112632721846], [-77.36509036123338, 34.67627085595342], [-77.36507619886729, 34.67633593277779], [-77.3650254706401, 34.67676382774312], [-77.3649799206568, 34.67677342358717], [-77.36502249016343, 34.67677151968999], [-77.36502641007394, 34.676774709238494], [-77.36504014817022, 34.67677683846442], [-77.36554481794673, 34.67705062242861], [-77.36564099453477, 34.67708379865289], [-77.36575136205181, 34.6771547972939], [-77.36594776844257, 34.67724184725988], [-77.36603206932858, 34.67743393544819], [-77.36610456613944, 34.67751536460454], [-77.36615447901215, 34.677586787464826], [-77.36619165444486, 34.677797563542754], [-77.36615650456908, 34.67786961662037], [-77.36620881797768, 34.67785610667073], [-77.36636184778934, 34.67804567945559], [-77.36607650027979, 34.678312171345524], [-77.36605214476445, 34.67831208212503], [-77.36580686388503, 34.67821015451972], [-77.36574363199617, 34.678187491986364], [-77.36555915798391, 34.67815599308986], [-77.3655640957516, 34.6779314787943], [-77.36527148338746, 34.677992710821925], [-77.36503640440846, 34.677943514254935], [-77.36499070055298, 34.67774672268245], [-77.36504606540981, 34.677541839011795], [-77.36477934710896, 34.677626231247814], [-77.36470882254102, 34.677407248156555], [-77.364559016146, 34.677354292988255], [-77.3645356453146, 34.67732186689952], [-77.36450407715446, 34.67717064679645], [-77.36439084703127, 34.67690258248211], [-77.36437065039586, 34.676857150165944], [-77.36436779690108, 34.67681902584075], [-77.36432618220928, 34.67661956587237], [-77.36430812945937, 34.67653303941451], [-77.3642475246243, 34.676386679937465], [-77.3642449892058, 34.6763845348976], [-77.36424256497916, 34.676382337928345], [-77.36411803120396, 34.67628516297944], [-77.36401703388536, 34.67612833746408], [-77.36389984771918, 34.67605890985833], [-77.36353846597252, 34.67608385269636], [-77.36340994396892, 34.67615808663025], [-77.36310314102907, 34.676336148145786], [-77.36276529235253, 34.67653815875841], [-77.36268785350916, 34.676584155426], [-77.36266257159556, 34.676583795307664], [-77.36263498299115, 34.67660826082723], [-77.36232494963556, 34.67680358345963], [-77.36218455657702, 34.676788136622655], [-77.3620908902062, 34.676683020123185], [-77.36208038019416, 34.67667122537622], [-77.36206700805198, 34.67666128744895], [-77.36186368061601, 34.67651379183425], [-77.36157998893815, 34.67627723405946], [-77.36156672401468, 34.67627822033914], [-77.36147416400085, 34.67628036765761], [-77.36098759455764, 34.67625632036106], [-77.3607263041944, 34.67613677457636], [-77.36035333127114, 34.67594696951502], [-77.3605491771625, 34.67548469593066], [-77.36058946926025, 34.67542714087731], [-77.36059770790168, 34.67539148327899], [-77.36054914445687, 34.67509050136878], [-77.36042876404517, 34.67496183159633], [-77.36035693855325, 34.674844251267984], [-77.36023937388768, 34.674710114109786], [-77.359847867763, 34.67472671360315], [-77.35962218770636, 34.67477466308217], [-77.35891882658392, 34.67516926849778], [-77.35892045470136, 34.67518096460918], [-77.3587520909344, 34.676079719940745], [-77.35928465273378, 34.675937747390996], [-77.35934999433829, 34.6760848105509], [-77.35922099564704, 34.67615709511627], [-77.35864041522449, 34.67620916015665], [-77.35860679103892, 34.6762113237957], [-77.35858199534464, 34.6762106630622], [-77.35848830399742, 34.67620318371694], [-77.35803857363848, 34.67610709305728], [-77.3577732288352, 34.67630141094473], [-77.35756103961619, 34.67652869590246], [-77.35758143811042, 34.67698089380635], [-77.35778039125155, 34.67699667221439], [-77.35792778464713, 34.67710848986398], [-77.3580836226033, 34.67723354675763], [-77.35820839916224, 34.67728668516732], [-77.35828268963667, 34.677328053488836], [-77.35844501223957, 34.67749875300007], [-77.35851195538486, 34.67756915041737], [-77.35858844362676, 34.677651588028226], [-77.35864560067466, 34.67773855306202], [-77.35872209588752, 34.677876149041566], [-77.3587990777815, 34.67801462011921], [-77.35887805455522, 34.678099190813526], [-77.3589665203397, 34.67827993723172], [-77.35901755813461, 34.67832372081813], [-77.35908761840975, 34.67838382334382], [-77.35914127073836, 34.67849397462484], [-77.35916254499975, 34.678523252325206], [-77.35919857046275, 34.67854254830601], [-77.35915252351096, 34.67857786498447], [-77.35910800677902, 34.67860859087784], [-77.35876601943347, 34.67887345057431], [-77.35842452073544, 34.67913626562702], [-77.35829568046726, 34.67934539256185], [-77.35813621646614, 34.67959158148815], [-77.35807416187879, 34.67967177864092], [-77.35803404745661, 34.6797861713164], [-77.3578931080115, 34.68001429656825], [-77.35748695965282, 34.680239822629716], [-77.35744828784972, 34.680258189260805], [-77.35742869608774, 34.6802704574735], [-77.3573427908513, 34.68031827811447], [-77.35716799036257, 34.68028363364751], [-77.35629153842078, 34.68033906611408], [-77.35622358110378, 34.68029841947521], [-77.35577876373794, 34.679987056503826], [-77.35576258953907, 34.6799578101985], [-77.35557629427181, 34.679875062408925], [-77.35519666567235, 34.67971246501436], [-77.3551383927614, 34.6796498702501], [-77.35505927916755, 34.679598485013315], [-77.35470007086218, 34.67936141159939], [-77.35462165655436, 34.6792592152342], [-77.35426576345554, 34.678795794969616], [-77.35424064231114, 34.6787640938783], [-77.35418552905628, 34.67874371103256], [-77.35368433106109, 34.67840390355266], [-77.35328513559445, 34.678050481810956], [-77.35301790606891, 34.67792928719766], [-77.35282203113178, 34.67749084478061], [-77.35238328742815, 34.67703384002234], [-77.35168762915907, 34.67678722190487], [-77.34837848247928, 34.677322789990335], [-77.34775327033631, 34.678652110894504], [-77.34743745484776, 34.67904160577294], [-77.34677525242446, 34.6798582594367], [-77.3459771162083, 34.6802999435381], [-77.34590267028018, 34.68085565743428], [-77.34586436044228, 34.68126905721462], [-77.3462455581481, 34.681682359728725], [-77.3465602712647, 34.68231018582262], [-77.34722285803304, 34.68243914777653], [-77.34779861808808, 34.682544933600454], [-77.34815345168498, 34.682660796710714], [-77.34827369314428, 34.68294272637466], [-77.34853464216798, 34.68394414690135], [-77.34896200306235, 34.6843347534377], [-77.34897026984885, 34.68439725648483], [-77.34894062278518, 34.684768509247576], [-77.34887352982602, 34.685260069418895], [-77.34895312806219, 34.68531073417545], [-77.34933261132399, 34.68547988607439], [-77.34939337046524, 34.685648368742434], [-77.34963780080214, 34.68570412281732], [-77.34981607761625, 34.68587623360513], [-77.34993688320272, 34.686018452171695], [-77.34988548024809, 34.686157501882235], [-77.34982587833001, 34.68626576021124], [-77.34978400797684, 34.68665881395705], [-77.3497686944149, 34.686853354641045], [-77.34976530445358, 34.68690507270702], [-77.3497690668392, 34.686935972267804], [-77.34970869383177, 34.68711930534508], [-77.34964898490693, 34.6871647320725], [-77.34948623196135, 34.68724121945906], [-77.3494145209162, 34.687259180109386], [-77.34921273560184, 34.687364114400836], [-77.34907900634201, 34.68738396349542], [-77.3489819201408, 34.687432395188345], [-77.34891160271769, 34.68744513560248], [-77.34890020787874, 34.68740753666485], [-77.34888582696257, 34.68734719887809], [-77.34896801055788, 34.68725821562612], [-77.34898441759168, 34.687145639993574], [-77.34885473035493, 34.68712565719675], [-77.34884727583761, 34.68703109914195], [-77.34883913204905, 34.68698664923233], [-77.34887448966933, 34.686836056429954], [-77.34889029175208, 34.686781503574814], [-77.34883136298876, 34.686660611071616], [-77.34883968916918, 34.68646865652015], [-77.34874300609383, 34.68647974758635], [-77.34871164047742, 34.68631864706698], [-77.34867909122421, 34.686206454479965], [-77.34868222929725, 34.6861956535267], [-77.34866310540177, 34.68619228112456], [-77.34854511400005, 34.68613059185491], [-77.34849873660048, 34.68610418290126], [-77.34852640632266, 34.68592139075303], [-77.34837154047865, 34.68587795279113], [-77.34867338871057, 34.685414095237256], [-77.34809792323202, 34.68560932884823], [-77.3478242623131, 34.68576768977826], [-77.34773259750399, 34.685743926800946], [-77.34748711209278, 34.685651542572884], [-77.3473285549045, 34.68566068579386], [-77.34713665081634, 34.68556008296186], [-77.34694201495859, 34.68546745862262], [-77.3466779149943, 34.685623049394906], [-77.34640887988121, 34.68578936273503], [-77.34622771616243, 34.68586602569276], [-77.34617288492376, 34.685899273356], [-77.34599286918495, 34.68590021686508], [-77.34593536695547, 34.6858421640753], [-77.34577337808307, 34.68574720181297], [-77.34577597700472, 34.68567295254189], [-77.34571482188574, 34.68557105159103], [-77.34565052968182, 34.685375318034076], [-77.34553180585173, 34.68501168076564], [-77.34563296572055, 34.684791713946616], [-77.34555717899659, 34.684658815269486], [-77.34539082989326, 34.684625628736114], [-77.34527547438823, 34.68435340127502], [-77.34514552173059, 34.68418726601582], [-77.34505086375147, 34.68394690389705], [-77.34504130495375, 34.68389816186355], [-77.34505146145463, 34.68386548148334], [-77.3450222097711, 34.68383390331262], [-77.3449886633462, 34.683519638848615], [-77.34451126827142, 34.68353225837639], [-77.34448582930199, 34.683512423999666], [-77.34445480876377, 34.68349127654281], [-77.34452876939135, 34.683085213399025], [-77.3440287570502, 34.683132731565635], [-77.34396238886735, 34.68307147812596], [-77.34396974543944, 34.682727073348765], [-77.34359412541886, 34.68256835823313], [-77.34341766070467, 34.682363594413005], [-77.34316176506938, 34.68220659641149], [-77.34311037410887, 34.68217313447272], [-77.34276910061936, 34.68207435663727], [-77.34254353014381, 34.682064013871496], [-77.34207161765065, 34.681943400251335], [-77.34196009268321, 34.681908586412554], [-77.34191931180831, 34.681889718324236], [-77.3416247466936, 34.68177248192572], [-77.34146403634732, 34.681659195167015], [-77.34133548299457, 34.68160091604465], [-77.34110677961684, 34.681513835589584], [-77.34113267558743, 34.68111074623328], [-77.34113529070524, 34.68102254793404], [-77.34113698638366, 34.68096535250328], [-77.34114980253091, 34.68053317843727], [-77.34127125108239, 34.680073720845165], [-77.3398089175093, 34.67993679359342], [-77.33934901727402, 34.68078026637834], [-77.3392983778585, 34.68087259662106], [-77.33890931659548, 34.68169246659688], [-77.33879917921472, 34.68183045424627], [-77.3376970784982, 34.6822640997874], [-77.33731889757276, 34.68232667173955], [-77.33705727353399, 34.68240612057355], [-77.33687570366341, 34.68244245829943], [-77.33642217278629, 34.6825319358693], [-77.3361561108263, 34.682680419090225], [-77.33594372815864, 34.682892689929204], [-77.33563868660018, 34.68316848119862], [-77.33558970352308, 34.68321710612077], [-77.3355565286706, 34.68325003813989], [-77.33543301057738, 34.68338356905474], [-77.33528255461317, 34.68358309662636], [-77.33511537546113, 34.68362795588599], [-77.33491430172404, 34.68360156313184], [-77.33463898143245, 34.68360035384735], [-77.33384848518222, 34.68358802587668], [-77.33373263155198, 34.68354837858818], [-77.33367167027923, 34.683556321831745], [-77.33276109261034, 34.68363344707014], [-77.33253002376586, 34.68364640731141], [-77.3325064764764, 34.68364827959183], [-77.33247839003775, 34.683649681096654], [-77.3313700303719, 34.68343943734129], [-77.33087040197422, 34.68334673438853], [-77.33079982863413, 34.68334183151438], [-77.33069426211046, 34.68334409031258], [-77.33018860256877, 34.683385392854674], [-77.32932858151865, 34.68340962362339], [-77.32894855324845, 34.68353305372041], [-77.32870587511812, 34.68343546960443], [-77.32828108340894, 34.68327302647849], [-77.32806345162012, 34.683141460397565], [-77.32792072038433, 34.682950493971326], [-77.32675446648746, 34.683360216971785], [-77.32660987875192, 34.68334170306626], [-77.326459884826, 34.683418834434214], [-77.3263386185579, 34.68353933140227], [-77.3264400624745, 34.683602074892065], [-77.32653357731802, 34.683604226322224], [-77.32714039557641, 34.68463975452027], [-77.32805548576779, 34.68525343188713], [-77.3281932115251, 34.68540629183744], [-77.32840763709021, 34.685394278498194], [-77.32874143055349, 34.68544259580017], [-77.32953122104047, 34.68564747529739], [-77.32984350489781, 34.68571320411053], [-77.33058936222206, 34.68588074917167], [-77.3306357479515, 34.68589196800989], [-77.3306558259277, 34.68589717327849], [-77.3307014973099, 34.68590422811825], [-77.33142863753011, 34.68607022896332], [-77.331779412521, 34.686150381158036], [-77.332690694614, 34.686391642010854], [-77.33289508517763, 34.68643083964629], [-77.33300075556204, 34.686437255303055], [-77.3332796470225, 34.686486563227916], [-77.33342043928289, 34.6865085045858], [-77.33343884138169, 34.686619530670164], [-77.33348588000052, 34.686852285666276], [-77.33345341245902, 34.68706808961781], [-77.333221128978, 34.687469331530465], [-77.3328608344791, 34.68781936657122], [-77.33276634688053, 34.688194095942016], [-77.3327379717404, 34.68851033710384], [-77.33276069523701, 34.68895332347592], [-77.33276535852063, 34.688983109508925], [-77.33276210923624, 34.689008636644836], [-77.3327573497807, 34.6894824219335], [-77.33268249361232, 34.689835103979405], [-77.33295621145663, 34.690429889118136], [-77.33292170040689, 34.69122759025484], [-77.33285204579634, 34.69141892334002], [-77.3328005998622, 34.69159642112232], [-77.33279898707973, 34.691913571821395], [-77.33272504914856, 34.692167127175786], [-77.33270227630567, 34.69241420483542], [-77.33217951584112, 34.693013272063226], [-77.33180051048342, 34.69326316547051], [-77.33183032776937, 34.69350851763336], [-77.33189540191658, 34.693593600344066], [-77.33193859705625, 34.69384229665826], [-77.33197108125009, 34.69397658823918], [-77.33183710480493, 34.69442669325794], [-77.33180427264226, 34.694486832855276], [-77.33179102105356, 34.69453158595445], [-77.33171092453192, 34.694625723369384], [-77.33137988601196, 34.695032395764485], [-77.33119311852471, 34.69527819174394], [-77.33085785412449, 34.69550116760496], [-77.33037251206575, 34.695657891416246], [-77.33023181067992, 34.695702527547354], [-77.33019897309055, 34.69570839713424], [-77.33011126671879, 34.69575426054127], [-77.32925727304895, 34.69611513112058], [-77.32897455312289, 34.696628618912094], [-77.3288458503333, 34.69684193970208], [-77.32879738915457, 34.69698415828583], [-77.32860891859829, 34.69705962612979], [-77.32824592261797, 34.69718906602954], [-77.32792953506157, 34.69733731601869], [-77.3277939607455, 34.697371149403324], [-77.327273224365, 34.69753561062206], [-77.3272596973472, 34.69753577919573], [-77.32720295875038, 34.69755452912521], [-77.32694822069159, 34.69762390977813], [-77.32690636435345, 34.697595186033276], [-77.32682373467131, 34.69749473707192], [-77.32670704703729, 34.6974238183203], [-77.3264773857612, 34.69716662036571], [-77.32639201033726, 34.69703858287707], [-77.32621767689257, 34.69704780626498], [-77.32600174076663, 34.69694465184673], [-77.32586738033152, 34.696939414363186], [-77.32565335852769, 34.69692963057707], [-77.32551298579759, 34.69692646719554], [-77.32512985665183, 34.696923763890155], [-77.32505293987083, 34.69693563872293], [-77.32462463502857, 34.696933204037805], [-77.324476200239, 34.69693568265688], [-77.32445718966525, 34.696925584651154], [-77.3243888358136, 34.69690500700417], [-77.32387576058834, 34.69686626414296], [-77.32373340795195, 34.696718776208904], [-77.32358180335085, 34.6965887617587], [-77.3232295814437, 34.69631808079824], [-77.32289695403975, 34.696114563669774], [-77.32257394783669, 34.69603414091377], [-77.32191712419618, 34.695989679002196], [-77.32173728903881, 34.69598497427888], [-77.32161569263836, 34.695982942319134], [-77.32127626618977, 34.69592998606546], [-77.32115950481455, 34.69591313473467], [-77.32085262046076, 34.69598803828288], [-77.3205579791666, 34.69606111715314], [-77.32051558989575, 34.69606873541143], [-77.32048076280596, 34.69606761083445], [-77.31988776406335, 34.696168990864095], [-77.31965537561913, 34.69615208894943], [-77.31936656777877, 34.696136320021296], [-77.31930525381738, 34.696113393772485], [-77.31918364421139, 34.69611906847251], [-77.31872757712259, 34.696041173321845], [-77.31850790724744, 34.69600850251542], [-77.31815099383316, 34.695965193457276], [-77.31806488225256, 34.69595512552924], [-77.31777409601818, 34.69592248048657], [-77.3176181335355, 34.695904609811286], [-77.31757142126713, 34.69589949341234], [-77.31748589929622, 34.695890125864636], [-77.31698332341126, 34.695863108829286], [-77.31663622623799, 34.69587156044267], [-77.31599432899056, 34.69584404632991], [-77.31578273014655, 34.69587422780463], [-77.31518982946152, 34.696276503410985], [-77.31513475545611, 34.69635859376036], [-77.31500318218652, 34.69649612611707], [-77.31483829920286, 34.69646600807904], [-77.31434284949063, 34.69670808278815], [-77.31385117936317, 34.69649700911127], [-77.3137962377727, 34.696479189672154], [-77.31378558472512, 34.69646884925605], [-77.31330014465732, 34.69617628414866], [-77.31321834857904, 34.696135437747614], [-77.31301335356174, 34.696087257299986], [-77.3127515864646, 34.69600393409761], [-77.3124432310376, 34.69594334243309], [-77.31218673993317, 34.69588758639323], [-77.31164561358608, 34.69581747447492], [-77.3116103458994, 34.6958109448195], [-77.31159501671505, 34.69580745345657], [-77.31107674164484, 34.69558719460811], [-77.3109389524544, 34.69552381027799], [-77.31070658100107, 34.69542845624759], [-77.31003779592987, 34.69504255882713], [-77.3094873697896, 34.69506375228734], [-77.30937033879866, 34.69507602155156], [-77.30883368741394, 34.69506571672905], [-77.30847087672595, 34.6950572368944], [-77.30774396846591, 34.694859416040124], [-77.3077171123737, 34.6948487101018], [-77.30770195209766, 34.69484008744324], [-77.30765834178406, 34.69483425876013], [-77.30762796768101, 34.69487529864828], [-77.30676867220149, 34.69532208562968], [-77.30617295806107, 34.695979903444176], [-77.30611430432444, 34.6960186899422], [-77.30608137455641, 34.69606175765646], [-77.30601755842342, 34.69615542044699], [-77.30517209778425, 34.6981356581091], [-77.3055049440679, 34.698275873690264], [-77.30570522196724, 34.698210133917414], [-77.30675265180037, 34.69810306339673], [-77.30771196037355, 34.69800499057856], [-77.30797171617783, 34.69802867344956], [-77.30826057729874, 34.6979229184801], [-77.30893702928384, 34.69785117368634], [-77.30921592082414, 34.697867844134535], [-77.30950129869292, 34.69774651136144], [-77.30959828324004, 34.69773679971056], [-77.30969920195375, 34.69792208570686], [-77.30970210610367, 34.69800280180133], [-77.30972480933463, 34.69803356353191], [-77.30948341191142, 34.69852010471388], [-77.30982143480855, 34.69930766919481], [-77.30980367021185, 34.69945096826272], [-77.30984495421241, 34.699517375839044], [-77.30992457827779, 34.69954798723028], [-77.3102390604197, 34.70079055437425], [-77.31116391597429, 34.70121413292065], [-77.3113243786977, 34.70153228500398], [-77.31162469088255, 34.701936376318564], [-77.31328242001935, 34.70237791054976], [-77.31383740781452, 34.70256281588305], [-77.31406407936274, 34.70257823290147], [-77.31622973610757, 34.70243813081896], [-77.31630245363901, 34.702321696672584], [-77.31680153235229, 34.7014167062186], [-77.31675405057713, 34.701297962027766], [-77.31705489496957, 34.70061596270681], [-77.31723874472874, 34.70038208797272], [-77.3172091158362, 34.70015988614556], [-77.31722306890121, 34.70012661643266], [-77.31725746444445, 34.70006722045959], [-77.31729000852529, 34.70009768141979], [-77.31755719563935, 34.70006592288975], [-77.31787344516486, 34.70006498690095], [-77.31813393338525, 34.70014147039184], [-77.31922848001547, 34.699989868770416], [-77.31938873930375, 34.69994409710512], [-77.31968941924208, 34.69982885179847], [-77.32026425042456, 34.69963156558062], [-77.32069202147656, 34.69957997140103], [-77.32094183779718, 34.69965387650124], [-77.32129151874886, 34.69982681462068], [-77.32144805065064, 34.70005275044288], [-77.32172917245252, 34.70013109949638], [-77.32261748026846, 34.700729767205026], [-77.32360588740484, 34.70145912398451], [-77.32363694122112, 34.70152211878936], [-77.3245506734674, 34.70215626345474], [-77.32568034849372, 34.70301512976692], [-77.32573806173237, 34.703059006418435], [-77.32591066345984, 34.70309271109041], [-77.32786574919373, 34.703735659475946], [-77.32894679356085, 34.70374400814895], [-77.33024011538072, 34.70380612658309], [-77.33196377939413, 34.703622574017196], [-77.33276090839558, 34.70337277985455], [-77.33389282490884, 34.70309267402645], [-77.33534126600784, 34.70273425060213], [-77.33626383741901, 34.702328168879795], [-77.33734412194525, 34.70152504194768], [-77.33790062707153, 34.70122591709336], [-77.33829218236214, 34.70082021092792], [-77.33927967508255, 34.70028479676051], [-77.33958722714253, 34.700167839157224], [-77.33958392882496, 34.69975568476434], [-77.339621632905, 34.699474000036126], [-77.3395928872147, 34.699267079448255], [-77.33979833433328, 34.699078293553875], [-77.34006894204941, 34.69871439748099], [-77.340117099683, 34.69866010834702], [-77.34039650279955, 34.69833193188937], [-77.34054790837341, 34.69820753150012], [-77.34057942349574, 34.698174936725025], [-77.34073065799228, 34.698136240272305], [-77.34085295407296, 34.69809827809593], [-77.34087955911657, 34.69809626614531], [-77.34095273005562, 34.6981057730477], [-77.34129757404956, 34.69818462537707], [-77.34143369576444, 34.69824950676893], [-77.34185816578486, 34.69835115754829], [-77.34228978797513, 34.69820956173368], [-77.34267916818402, 34.698083689649394], [-77.34282167751635, 34.69792871696183], [-77.3428909266548, 34.69783984433167], [-77.34326773538103, 34.69745714052327], [-77.3434831639702, 34.69723850969019], [-77.34381778491657, 34.69703392948154], [-77.34425284001813, 34.69678792688029], [-77.34435718908159, 34.696736739674535], [-77.34450637228582, 34.69664341663952], [-77.34483560246953, 34.696250798256116], [-77.34500694558797, 34.69608734542441], [-77.34501746173231, 34.69604546829204], [-77.34509088533892, 34.695588446033334], [-77.34516295855455, 34.69521057868077], [-77.34516427631928, 34.69509099689115], [-77.34523908184549, 34.69496530647886], [-77.3456696286271, 34.69453426365369], [-77.34593226015961, 34.69430322237429], [-77.34617077226446, 34.69430663802949], [-77.34622190865625, 34.69439576071304], [-77.34631776140353, 34.6944453134095], [-77.34654430679672, 34.69454185859625], [-77.34668193354302, 34.69460777293378], [-77.34672720407517, 34.69463280865571], [-77.34683276035662, 34.69471407570419], [-77.34704902635947, 34.69483232814581], [-77.34716698822034, 34.69499880931033], [-77.34726533618374, 34.695169569813785], [-77.34758232833921, 34.6952465094061], [-77.34792467837322, 34.695450572939336], [-77.34822877468429, 34.695465238727216], [-77.34869443640011, 34.69547539138322], [-77.34882436926283, 34.69547566324005], [-77.34889929332924, 34.6954889749207], [-77.34893486846521, 34.69554824060991], [-77.34912960989345, 34.695705929324724], [-77.34920119697841, 34.695924636177], [-77.34921889397143, 34.695996634279894], [-77.34921098931099, 34.69603749125726], [-77.34924784822492, 34.69607878397298], [-77.34988867004803, 34.69687945495787], [-77.34985687178715, 34.69711721952317], [-77.35084469351693, 34.697381547098864], [-77.35156810230836, 34.69580039218446], [-77.35168411414404, 34.6956582118553], [-77.35147006405064, 34.69538279636655], [-77.35101146633598, 34.69465198220749], [-77.35085801796738, 34.69465675114173], [-77.35051286397318, 34.69424729996037], [-77.3503876557137, 34.69421508248883], [-77.35016520396238, 34.69391720590569], [-77.35014571382504, 34.69374146121491], [-77.35018869708001, 34.6936086067826], [-77.35039080634485, 34.693398853665876], [-77.35052557435456, 34.69326896385975], [-77.35093767892225, 34.692836393981594], [-77.35118220616607, 34.69257450255102], [-77.35156216337944, 34.692231689856946], [-77.35193588857629, 34.6919660857906], [-77.35213886402872, 34.69169671732223], [-77.35236159553945, 34.69153996471871], [-77.35265793326843, 34.69132962726574], [-77.35302768257715, 34.691087298072816], [-77.35310768599807, 34.69103191448771], [-77.35352090582556, 34.690818103239415], [-77.35393226081672, 34.69047570528589], [-77.3540442074566, 34.69000547451946], [-77.35408661951116, 34.689967127124966], [-77.35467991182809, 34.689739981433306], [-77.35520610134162, 34.68975894552965], [-77.3552699647218, 34.68976932045676], [-77.35529732623993, 34.6897768193366], [-77.35532523213092, 34.689797038924844], [-77.35561936153854, 34.68992316927917], [-77.35558378670407, 34.69009374741326], [-77.3554461148043, 34.6901934870875], [-77.35540257575244, 34.690252238073015], [-77.35531950866951, 34.69028520955445], [-77.35521475913194, 34.690404873153234], [-77.35498801858898, 34.69074053256917], [-77.3549207432061, 34.690782494789836], [-77.35489972768252, 34.690871234275846], [-77.35527000542217, 34.69126677600816], [-77.35525994190155, 34.6913824060689], [-77.35538891997905, 34.69142146072773], [-77.3561608739651, 34.692265837448886], [-77.3568363697884, 34.69300120295373], [-77.35722334265753, 34.69335026937539], [-77.35858959428242, 34.69355023527181], [-77.36096032254589, 34.69438430407966], [-77.36131386293839, 34.6946071895337], [-77.36162336695836, 34.69468946916763], [-77.36245961706247, 34.69491176253035], [-77.36384625520668, 34.69528036417892], [-77.36437576600217, 34.69540422256219], [-77.3654488057245, 34.695717208283874], [-77.36606942453028, 34.69587034900319], [-77.3669024733679, 34.69661322053886], [-77.36724053491358, 34.696595995722234], [-77.36822542531891, 34.69669188310052], [-77.36856831624979, 34.69690788152988], [-77.36874536135716, 34.6969629887176], [-77.36902571349054, 34.69717524058047], [-77.36910740211604, 34.697281400589596], [-77.36922505875133, 34.6973727855359], [-77.36955345981825, 34.697726528909314], [-77.37000636983194, 34.69801524586325], [-77.37018378121549, 34.69819474196545], [-77.37062657090641, 34.69847747401572], [-77.37068354830568, 34.69853540901421], [-77.37081757306399, 34.69872469769259], [-77.37081323738647, 34.698879133207114], [-77.37080573821348, 34.699128066255874], [-77.37067171369327, 34.69963643272546], [-77.37059151086844, 34.699884393816426], [-77.37038430683977, 34.7002410013663], [-77.37025589069538, 34.70041791608743], [-77.3702125124674, 34.70050582711856], [-77.37015413919872, 34.700812440173266], [-77.37013325004747, 34.70092216450116], [-77.37006619050231, 34.70127439756314], [-77.37003796640045, 34.70142265273525], [-77.37005761906141, 34.70164486284435], [-77.37005152432351, 34.70190818127556], [-77.37001732625865, 34.702100523316496], [-77.37015455819318, 34.7024218806111], [-77.37066774535813, 34.70218546548581], [-77.37127997027163, 34.7019170850927], [-77.37153081395235, 34.70180495115187], [-77.37173519031876, 34.7018549928053], [-77.37181576462912, 34.70189889674087], [-77.37182062996528, 34.701930694588704], [-77.37173218201275, 34.7021645788584], [-77.37171565838618, 34.702370219741425], [-77.37164552402456, 34.702663882588254], [-77.37162917164184, 34.70303731606806], [-77.37157958003061, 34.703263497378934], [-77.37168007110782, 34.70363392096035], [-77.37164739390303, 34.70399981602117], [-77.37270862087377, 34.70399370459501], [-77.37314523733255, 34.70343252684533], [-77.37332610231044, 34.703264546892214], [-77.37343101363766, 34.702905849694844], [-77.37367536848883, 34.702666542579294], [-77.3738467785976, 34.70244962629904], [-77.37401132557555, 34.70233868109315], [-77.37410522348372, 34.70210776824602], [-77.37429588006904, 34.701812168010434], [-77.37428299584775, 34.70157664273177], [-77.3742889369744, 34.7015651466465], [-77.37430091665763, 34.70154196568558], [-77.37446651212932, 34.70130131572841], [-77.3744521847723, 34.701249257810474], [-77.37442992925243, 34.70109723127795], [-77.37443099804833, 34.701068432314464], [-77.37442024431493, 34.70104337242807], [-77.37444722112231, 34.70103762214467], [-77.37445324156512, 34.70105130822206], [-77.37460433041406, 34.70101192248755], [-77.37462346730698, 34.701036040654124], [-77.37466437978206, 34.70108590001641], [-77.3746922405973, 34.70112482997852], [-77.37469475435329, 34.701148089158906], [-77.37471227328776, 34.701155712714595], [-77.3747432251943, 34.70122233730274], [-77.3747788378044, 34.701258378337805], [-77.37493991207957, 34.70140278034799], [-77.37497145473347, 34.70144090804924], [-77.37517522988794, 34.70162338008702], [-77.37522661407812, 34.70168421375068], [-77.37539937125423, 34.70190002490123], [-77.37540484044136, 34.70191569985767], [-77.37521386779382, 34.70217336150145], [-77.37552786179319, 34.70247139366391], [-77.37554680614234, 34.702575073056906], [-77.37556582252336, 34.70261237008027], [-77.37575094322337, 34.702860431150974], [-77.37557756129343, 34.70309815073347], [-77.37571790178478, 34.70323190732448], [-77.37590198057347, 34.70324535891659], [-77.37597509737465, 34.70342818382685], [-77.37615134625399, 34.70341755571041], [-77.37621031256545, 34.70349855438063], [-77.37629446307747, 34.7035765980981], [-77.37638064411615, 34.70365893774278], [-77.37642663780379, 34.70371251036866], [-77.37636511079837, 34.70391648864401], [-77.37639711773141, 34.70396026697223], [-77.37659629163447, 34.70413279301873], [-77.37675899881182, 34.70415421040003], [-77.37682051539997, 34.704206266641215], [-77.3768816294367, 34.70430740486845], [-77.37694415149754, 34.704295980373736], [-77.37700374358997, 34.704364258258565], [-77.3770319078576, 34.704388852610684], [-77.37705085097132, 34.70444408418827], [-77.37706466074545, 34.70447773172482], [-77.37703044812385, 34.70451442336524], [-77.37692012936755, 34.70453433668183], [-77.37682155729337, 34.70455079225618], [-77.37672856354226, 34.70452326888149], [-77.37661191247821, 34.704515047267584], [-77.37619859363267, 34.704533214610535], [-77.37612760082972, 34.70453128187431], [-77.37596664502982, 34.704617523795875], [-77.37555778058919, 34.70443193139593], [-77.37494468836093, 34.70513473922032], [-77.37451252698159, 34.70559189075283], [-77.37397117910015, 34.70624335826865], [-77.3739122041689, 34.706336265791556], [-77.37373791284796, 34.70712177843636], [-77.37382250402317, 34.70723858462155], [-77.37384860033748, 34.70755613755622], [-77.37388146231655, 34.70820526566881], [-77.37408414707285, 34.70951168515371], [-77.37468647819514, 34.70954576478705], [-77.37558561819691, 34.70909495779988], [-77.37569752147046, 34.70893040763107], [-77.37685115536051, 34.70822823970063], [-77.37715849640925, 34.708068852578165], [-77.37736716946105, 34.70791415671013], [-77.37768365906209, 34.707486471196546], [-77.37770118759593, 34.70745973126429], [-77.3777260343303, 34.707422195631956], [-77.37801214125281, 34.70702158304098], [-77.37809814043304, 34.70686746407851], [-77.37819405199706, 34.70676907795249], [-77.37840758991686, 34.70673850605498], [-77.37856453164004, 34.70674151719815], [-77.37866891908602, 34.70669234171627], [-77.37902541092856, 34.706632372165814], [-77.37929142499529, 34.70644557513528], [-77.379351447375, 34.70641732487809], [-77.37938120257184, 34.70638253257871], [-77.37965871322243, 34.70628435076017], [-77.37971397083442, 34.70626198727492], [-77.37981432041316, 34.70625457776387], [-77.37998768105211, 34.70625524531715], [-77.38015020296669, 34.70637217512579], [-77.38022004572927, 34.70642945716123], [-77.38023986592319, 34.7064908814327], [-77.38043973735924, 34.70675314042586], [-77.38043702267642, 34.706785316549926], [-77.38042144402651, 34.70696997049974], [-77.38039826094972, 34.70724775657844], [-77.38040074494548, 34.70738583391009], [-77.38041020415264, 34.70786118319944], [-77.3801755577227, 34.70823313707867], [-77.38059044797845, 34.7085975959812], [-77.38120204922227, 34.70869704799361], [-77.38180021465249, 34.70884713088201], [-77.38227370360092, 34.709143876541695], [-77.382441840209, 34.70922861698321], [-77.38287552325005, 34.70956032221309], [-77.38318519800441, 34.70965657603729], [-77.38347964856551, 34.70968772601491], [-77.38370419302375, 34.709797056328334], [-77.38404624494436, 34.709944544297386], [-77.38442138470144, 34.71003394576456], [-77.38450866787234, 34.710414332529005], [-77.38450303064836, 34.711104085427614], [-77.38447375038515, 34.71152047101515], [-77.38439794761796, 34.71182889149658], [-77.3845554844383, 34.71266743573443], [-77.38446245986222, 34.71403171537003], [-77.38385751923317, 34.7146598274333], [-77.38425614004106, 34.715458339289526], [-77.38438580306114, 34.717081485683096], [-77.38439321508767, 34.7171864007998], [-77.38415165943637, 34.718117891612884], [-77.38405289978373, 34.71822081543506], [-77.38381068826156, 34.71855772597527], [-77.38356372534378, 34.718549457791084], [-77.38314827056395, 34.71859780761234], [-77.38283080691195, 34.718556857613706], [-77.38263004546994, 34.71870365519452], [-77.38255264555808, 34.718846021223165], [-77.38237842385077, 34.71960437119178], [-77.38239151299048, 34.719738530619196], [-77.38225655843098, 34.71986198907153], [-77.38213114869819, 34.719948354937685], [-77.38182667616223, 34.72004112706591], [-77.38175419734375, 34.7200582556897], [-77.38174171661919, 34.72005976519912], [-77.38118108715932, 34.720310148359836], [-77.38102402403163, 34.72037823878356], [-77.38102207715372, 34.72037948370959], [-77.38101989495482, 34.720379391969516], [-77.37974955548368, 34.72105050011695], [-77.37961406622918, 34.72107009381031], [-77.379530966478, 34.721091652838595], [-77.37931837023383, 34.72108632768618], [-77.37845696325988, 34.720674071611846], [-77.37835115960723, 34.72073822236598], [-77.37798567510728, 34.72099224043481], [-77.37780976071889, 34.721112323330935], [-77.37755003230615, 34.72128961786094], [-77.37748234696792, 34.72132521419693], [-77.37739594020472, 34.721344991578434], [-77.37728520653903, 34.721376956460226], [-77.37720826035243, 34.721362646419735], [-77.37704952202776, 34.72136563214414], [-77.37689176527351, 34.7213485432614], [-77.37636306189526, 34.72142513721765], [-77.37616857913129, 34.72142144306934], [-77.37615210769665, 34.72146875860069], [-77.37598922962438, 34.7215808929929], [-77.375577402195, 34.72182676641522], [-77.37551252581179, 34.721845230915065], [-77.3754594065213, 34.72186558750119], [-77.37512794269331, 34.721964586270346], [-77.37499622955355, 34.72199461527792], [-77.37477071725694, 34.72202933213933], [-77.3746767598963, 34.72197496456289], [-77.37417530718083, 34.72187157660138], [-77.37413616254841, 34.72188140815649], [-77.37414052487989, 34.72199145364419], [-77.37411739836656, 34.72236075994797], [-77.37415438884457, 34.722446994084166], [-77.37450945942248, 34.722929772606534], [-77.37460557140636, 34.723049925804524], [-77.37467521088803, 34.72318853248218], [-77.37449986830579, 34.7231828142237], [-77.37436514756003, 34.72359636667579], [-77.37433437748801, 34.72362841595968], [-77.37432114352374, 34.7236390207453], [-77.37429909513325, 34.72365479306794], [-77.37401032961833, 34.7238790957022], [-77.3737614101629, 34.72398703224821], [-77.3736550438068, 34.72404640434513], [-77.37351873998237, 34.72413438406473], [-77.37330700713758, 34.72422557617836], [-77.37318653820213, 34.724344981665865], [-77.37312599765806, 34.7243830056253], [-77.37297204390866, 34.724426141799434], [-77.37275693302638, 34.72455001851519], [-77.37261702553131, 34.72459389267512], [-77.37247837811867, 34.72465626609927], [-77.37244089811291, 34.72468003001609], [-77.37239807214547, 34.72468186254081], [-77.37219839351641, 34.72465755199047], [-77.37209956547713, 34.72460571416395], [-77.37205214253211, 34.72458434799269], [-77.37198224623111, 34.72455030646252], [-77.37189589706378, 34.724507462560695], [-77.37183908207847, 34.72447162379627], [-77.3717518539755, 34.72442118568467], [-77.37159211214525, 34.724290967089985], [-77.3713916219604, 34.72414407939063], [-77.3712433993061, 34.724023963932666], [-77.37113370579979, 34.72393582652538], [-77.37110783535827, 34.72389636586415], [-77.37103815519446, 34.72378765605869], [-77.3709871928759, 34.72371226366956], [-77.37114781205949, 34.723308998720135], [-77.37110391690433, 34.72320883073655], [-77.37110292321931, 34.72299114863115], [-77.37122759572006, 34.72245906704953], [-77.37123083308292, 34.72221660411351], [-77.37121912373769, 34.721817832773276], [-77.37176672851149, 34.7216257739385], [-77.37227439985867, 34.721476346683914], [-77.37288465106354, 34.72101453121055], [-77.37305529972792, 34.72089182975363], [-77.37298589610675, 34.72031727611601], [-77.37289653371207, 34.720038109957294], [-77.37254660898844, 34.71986683908221], [-77.37229295956368, 34.719812266609665], [-77.37217518439776, 34.719758441607475], [-77.37190510030257, 34.71968697616114], [-77.37181549109562, 34.71964101319248], [-77.37160566051683, 34.71960774244407], [-77.371151205843, 34.719620118779936], [-77.37091291857932, 34.71954714179964], [-77.37018659472912, 34.7194357479941], [-77.37006677046742, 34.71940984076329], [-77.36992557039937, 34.71939571492319], [-77.36934936439081, 34.719550794334836], [-77.36872533306432, 34.71972640278363], [-77.36860846026627, 34.719743658720176], [-77.3676042782752, 34.71989192225277], [-77.36748280087893, 34.71988148865317], [-77.36724525814901, 34.720004256531055], [-77.366652757381, 34.720325283673134], [-77.36641004160191, 34.72064701137776], [-77.36617234498082, 34.72096208760884], [-77.36607561330469, 34.721090308711524], [-77.36582986513112, 34.72145051078667], [-77.36493494931631, 34.722106854023295], [-77.36548575591148, 34.72263604113158], [-77.36596836624952, 34.722563888688114], [-77.36621178899573, 34.72248726334369], [-77.36674202823596, 34.72243379468288], [-77.36688933888149, 34.72264365738668], [-77.3672687713943, 34.72276101426582], [-77.36762055755345, 34.72286944744413], [-77.36781572859606, 34.72286056806878], [-77.36807963422147, 34.722865610817706], [-77.36865613394048, 34.72286101102276], [-77.36899695347964, 34.722916873745945], [-77.36906646890847, 34.72300140942897], [-77.36923227713176, 34.7232061394611], [-77.36935372980096, 34.72335610067087], [-77.36942749763142, 34.72343919405615], [-77.36942651514474, 34.72345091580468], [-77.36943558763741, 34.72346870425528], [-77.36951775069222, 34.72377496004668], [-77.36951872237601, 34.723914050587354], [-77.36954006856082, 34.724152044790245], [-77.36953818825641, 34.72415762990712], [-77.36953328335916, 34.72416370299561], [-77.36941066251333, 34.72436373446148], [-77.36920075431365, 34.72441317159792], [-77.36916335948874, 34.724406721764325], [-77.36910158813899, 34.72440902308557], [-77.36859912516557, 34.7244819067447], [-77.36854676419675, 34.724468060274475], [-77.36842859373219, 34.724451015635175], [-77.36798138757666, 34.724352918700724], [-77.3678518243178, 34.724268485477545], [-77.36738424516655, 34.724347225824786], [-77.36689764128243, 34.724371144224946], [-77.36677686587709, 34.72437679894666], [-77.36662173531562, 34.7244265853035], [-77.36617608000022, 34.724383651405994], [-77.36574336315884, 34.72462493516394], [-77.3654261469785, 34.7249043269289], [-77.3653807565838, 34.724941877455194], [-77.3648947088482, 34.724967064482506], [-77.36481234460476, 34.72495599948677], [-77.36461484147486, 34.72490154017613], [-77.36450528725426, 34.724872480536625], [-77.36444487923384, 34.72485481454326], [-77.36429281267559, 34.724682912559764], [-77.36428518804327, 34.724647604058646], [-77.36428185235287, 34.72463351387494], [-77.3642725115744, 34.72459827559459], [-77.36421281264184, 34.72415560816776], [-77.36411829699132, 34.72398754455622], [-77.36400468418351, 34.72372283641251], [-77.36401543156092, 34.72369533222489], [-77.36399477794367, 34.723646803106675], [-77.36396492063179, 34.7233170868567], [-77.36382455706834, 34.72323416097577], [-77.36414328373644, 34.72239135393286], [-77.36312729957842, 34.72250962777293], [-77.36195881684856, 34.72254852403528], [-77.3619193376215, 34.72254538776493], [-77.36181488604325, 34.72260608987176], [-77.36067263380045, 34.72271456145623], [-77.35995441424497, 34.72332546813496], [-77.35955964305694, 34.723819908465615], [-77.35979945426598, 34.724156861400196], [-77.36024670456987, 34.72418163313394], [-77.36033598385386, 34.7245324918538], [-77.36034990057033, 34.724686159719674], [-77.36047686696267, 34.72481832026885], [-77.36052891899335, 34.724905268916515], [-77.36053533051259, 34.72497045070844], [-77.36050033857336, 34.72508554083015], [-77.36031443972648, 34.72517841636656], [-77.36024951801515, 34.72520318887907], [-77.36018678986929, 34.72519594612294], [-77.36001226771806, 34.7251757953763], [-77.35997140423072, 34.72512984981165], [-77.35970672318295, 34.725018177926515], [-77.35970633881374, 34.72501695765568], [-77.35963314680194, 34.724784588200855], [-77.35954972864943, 34.72451975137941], [-77.35926277139295, 34.72456979582793], [-77.3589681926057, 34.72446025408888], [-77.35867793419226, 34.72474735697488], [-77.35865060494622, 34.72491950880982], [-77.35816227187756, 34.725173543061466], [-77.35779952290909, 34.72524552014257], [-77.35752253441905, 34.7253144664746], [-77.35721804716972, 34.72535455978227], [-77.35720358518297, 34.72535573885006], [-77.3568560608013, 34.72563306212419], [-77.35682527619875, 34.72565752204923], [-77.35682484254613, 34.72565839269984], [-77.35682225693937, 34.72566386492835], [-77.35662379145383, 34.72611848396841], [-77.35637042088828, 34.72618876822591], [-77.35635761119005, 34.72620175911135], [-77.35616189861057, 34.726167123569056], [-77.35610284405102, 34.72607913336289], [-77.35606422397952, 34.72600570206052], [-77.35608931895027, 34.725828750169455], [-77.35608934726555, 34.725758560637644], [-77.35614051271689, 34.7253951503623], [-77.35612935603791, 34.72526568351161], [-77.35615294284713, 34.725063077875774], [-77.35615818659439, 34.72501803354829], [-77.35616078217424, 34.724985344300926], [-77.35617695329711, 34.7247717645662], [-77.35627148608941, 34.72450595822069], [-77.35618082035477, 34.72428384831462], [-77.35611033968148, 34.72384151558737], [-77.35564044977757, 34.723547219159805], [-77.35544798260453, 34.72356268917528], [-77.35471633524556, 34.72351013721696], [-77.35459541458083, 34.72343020201725], [-77.35424292724241, 34.723370699621526], [-77.35318282166624, 34.723762004274626], [-77.35250486386934, 34.72478847350681], [-77.3527449825915, 34.724853799400634], [-77.35286441159772, 34.72485837344005], [-77.35312151972933, 34.724930029176946], [-77.35354549285529, 34.72502635829203], [-77.35385391379653, 34.7255750835081], [-77.353854397636, 34.725577120083386], [-77.35385495158339, 34.725577919222445], [-77.35385828079347, 34.725582852934714], [-77.35387154849424, 34.72595812994436], [-77.35377581036364, 34.7260761657287], [-77.35367733160206, 34.72618310673617], [-77.35342455382316, 34.72647503622409], [-77.35339818529576, 34.72661538456532], [-77.35337914180612, 34.726731148142946], [-77.35331808534892, 34.72711376225336], [-77.35325007151388, 34.72759693141087], [-77.35324541286457, 34.7276111203097], [-77.35323980509548, 34.72762674716306], [-77.35306145598732, 34.728123753228886], [-77.35303778632486, 34.72817636120389], [-77.35282416979011, 34.72849606110084], [-77.35259350013791, 34.72867536697434], [-77.35230040561986, 34.728862139148234], [-77.3518885504921, 34.728772124996546], [-77.35178137843397, 34.72874868612036], [-77.3517376168944, 34.72873797120005], [-77.35162889595993, 34.72871349297841], [-77.35099303295722, 34.72856673355088], [-77.35061499099768, 34.72847947859218], [-77.34939475433652, 34.72911437650945], [-77.3502346569766, 34.72978884688178], [-77.35029726512586, 34.72989033692711], [-77.350375542525, 34.729954539599], [-77.35079328326009, 34.730297170715055], [-77.35088459020474, 34.730372059368975], [-77.35119017877899, 34.73062269947629], [-77.35130829864625, 34.73068939246522], [-77.35155703082323, 34.730767151939496], [-77.35170558555356, 34.7309100395445], [-77.35190598203987, 34.73087377716263], [-77.35204266263108, 34.730912883315625], [-77.35211061796802, 34.73093486359718], [-77.3522519588455, 34.73109077563854], [-77.3522807715569, 34.731123917494635], [-77.35231609372545, 34.731150352388184], [-77.3522472046049, 34.73154393807271], [-77.3522159046131, 34.73165148490876], [-77.35217075899628, 34.731746630116355], [-77.35198143983385, 34.73202213023758], [-77.35155104429202, 34.732717498370306], [-77.35132173992862, 34.73354741053588], [-77.35136497432387, 34.73371779817749], [-77.35109230535511, 34.73400911207531], [-77.35078433572117, 34.734347786652876], [-77.35060787108446, 34.7346891042995], [-77.35056245007262, 34.73478945672083], [-77.35055519293948, 34.734803693286125], [-77.350542800405, 34.734825989190114], [-77.35030861402996, 34.735202819618195], [-77.35020563217827, 34.73533904476928], [-77.35008455147931, 34.73545976678163], [-77.34997470857097, 34.735545242078835], [-77.34966180238015, 34.735884198229584], [-77.34964898101423, 34.735894911938594], [-77.34963927662626, 34.7359041446634], [-77.34964025862587, 34.735914401604596], [-77.34941658875455, 34.7363272795051], [-77.34907916082835, 34.73634597782289], [-77.34894361782932, 34.73629477320184], [-77.3485468982366, 34.736194989313454], [-77.34838494440164, 34.73615626449769], [-77.34831714944056, 34.73614370458606], [-77.3481402228272, 34.73610984183683], [-77.34781830057474, 34.73604519325886], [-77.34752416888836, 34.735965247215255], [-77.34727526189731, 34.735852873564205], [-77.34624498380595, 34.73616073601961], [-77.34522924430652, 34.73580850079743], [-77.34560614786055, 34.73665207105534], [-77.34581637415316, 34.73675138657667], [-77.34603842063544, 34.73710796822731], [-77.3461904538338, 34.73735211189246], [-77.34625378304335, 34.73773068717652], [-77.34663388880878, 34.73806041232932], [-77.34670487975882, 34.738172113981065], [-77.34674604067698, 34.73825064572871], [-77.34706246518522, 34.738646744261985], [-77.34708654522875, 34.738666938123274], [-77.34753415239754, 34.739084710605354], [-77.34755021561607, 34.73909869304767], [-77.34756955345223, 34.73911241685834], [-77.34791309128161, 34.73960796603636], [-77.3485094502431, 34.73985080702461], [-77.34857612373781, 34.739886397344065], [-77.34867602529727, 34.73993535877212], [-77.34854065640832, 34.74001911684299], [-77.34845053662428, 34.74005358987751], [-77.34799516227238, 34.740516158300835], [-77.34794851898367, 34.74076328414363], [-77.3479472341355, 34.74076642424353], [-77.34794714669593, 34.74076983119565], [-77.34794413219521, 34.741010538991574], [-77.34793071462289, 34.741171163791314], [-77.34790602910971, 34.741371680735305], [-77.34788331168109, 34.741506262935324], [-77.3477954530923, 34.74191199208266], [-77.34777096687019, 34.742009055965596], [-77.34775186716995, 34.7420970871876], [-77.34772572876778, 34.742488498550216], [-77.34772495202022, 34.74250274842429], [-77.34772243575635, 34.742513908955], [-77.34770505491731, 34.74261947693466], [-77.34765257729441, 34.74296182178898], [-77.34764478624886, 34.7430011259479], [-77.34763737573296, 34.74304850057326], [-77.34751632333078, 34.74385498184146], [-77.34749557468189, 34.74399635487586], [-77.3474930844038, 34.744197224929025], [-77.34748186669296, 34.74448561424309], [-77.34748870297712, 34.74466459602179], [-77.34751086627844, 34.744851259820415], [-77.34750345218089, 34.74497003183296], [-77.34724767341046, 34.74522441513159], [-77.34721841259748, 34.74523044325288], [-77.34695452754758, 34.745202581892855], [-77.3467535086645, 34.74523000006241], [-77.34632335365187, 34.7453133787506], [-77.34594855361804, 34.745381976939335], [-77.34569153436699, 34.74542638702695], [-77.34540968776864, 34.745475086201864], [-77.34514351574313, 34.745293781741644], [-77.34513484226696, 34.745292270853774], [-77.34513225386112, 34.74528975616094], [-77.34468853132815, 34.74524131436942], [-77.34457979023642, 34.745129667044], [-77.3440399051793, 34.74496753585649], [-77.34427428037723, 34.74541301545456], [-77.34436792017738, 34.745487868414266], [-77.34444361054037, 34.745598296328666], [-77.34454035098871, 34.74574944344786], [-77.34460769388451, 34.745854658913714], [-77.34470942388846, 34.74601360082638], [-77.34475107775174, 34.74607867964902], [-77.34486679976916, 34.74620326506443], [-77.34494838488943, 34.74622401402274], [-77.34520815206037, 34.746259669602914], [-77.34538780532516, 34.74628027105488], [-77.34544288357817, 34.74628209160756], [-77.34555649865412, 34.746311215189486], [-77.3459879011347, 34.74646783088929], [-77.34611835563342, 34.746506821665974], [-77.34653173337499, 34.74656547814821], [-77.34655042982772, 34.74656872603928], [-77.34655734925977, 34.74656949851443], [-77.34700978110871, 34.74660965066353], [-77.34714017618445, 34.74662512206649], [-77.34741429317069, 34.746680542189004], [-77.34770695815112, 34.74673596715333], [-77.34783243985342, 34.7467653603507], [-77.34795989504354, 34.74685692431164], [-77.34812393792521, 34.74693537148277], [-77.34821935673187, 34.74703398866047], [-77.34840464444693, 34.747113680264974], [-77.34868256294305, 34.747501329905816], [-77.3488132798721, 34.74758779611698], [-77.3489914167437, 34.74769015644469], [-77.34916992303943, 34.74788555568144], [-77.34926283359272, 34.74803044523107], [-77.34938060513134, 34.74812413675858], [-77.34944884649624, 34.748482945221056], [-77.34939718039338, 34.7486092418438], [-77.34944039343877, 34.748682276550895], [-77.34912272199442, 34.74913427923123], [-77.34921773864569, 34.749247703553706], [-77.34918981324213, 34.749530008111854], [-77.34918600070985, 34.74961297697305], [-77.34916000226457, 34.74968629801412], [-77.34901598030197, 34.75001428320489], [-77.34850161967123, 34.75019262040278], [-77.34849937729085, 34.75019342571964], [-77.34849776364497, 34.75019348453614], [-77.34796254829389, 34.75021299193179], [-77.34789878297184, 34.750198868413285], [-77.34750691812782, 34.75016919225489], [-77.3473185857082, 34.750134110669364], [-77.34710758903711, 34.75008209729992], [-77.34685364791125, 34.75001354881749], [-77.3467620218243, 34.74998802101304], [-77.34672818421065, 34.74997967878713], [-77.34663273170267, 34.74996326948871], [-77.34647678857704, 34.74993889941414], [-77.34637333528384, 34.74999885393232], [-77.34628447488778, 34.75014760313779], [-77.34623106294866, 34.750361965313026], [-77.3461682889693, 34.75051435969223], [-77.34613034545227, 34.750649345923605], [-77.34605634461724, 34.75101709366502], [-77.34600080657171, 34.75117287561323], [-77.345808902449, 34.75120660071001], [-77.34531412784091, 34.7511189062737], [-77.34535923309278, 34.75103238995235], [-77.34523892829945, 34.75110663379616], [-77.34520343125442, 34.75110476843538], [-77.34464531558942, 34.75108800962543], [-77.34418957804243, 34.75114346148769], [-77.34402567899947, 34.75115893101096], [-77.34383783243908, 34.751171549838446], [-77.34364242369458, 34.75117002438914], [-77.34346585843588, 34.75102402451951], [-77.34340501380467, 34.750958406964926], [-77.3433548238194, 34.750900271666325], [-77.3430199757573, 34.75049708004007], [-77.34300421831547, 34.75047825431481], [-77.34298946990779, 34.750463005036764], [-77.34250526360074, 34.75020698058417], [-77.34239005726404, 34.75016216831075], [-77.34222124753877, 34.75008098938242], [-77.34197471532283, 34.749971378976326], [-77.34175537625767, 34.749861861429004], [-77.3415768943511, 34.7498067543832], [-77.34143798447049, 34.74975705738983], [-77.34138487367576, 34.74975258561268], [-77.34127723258113, 34.749723077844976], [-77.34103385047237, 34.74962833021361], [-77.3409770887992, 34.7492818228591], [-77.34055695708825, 34.74954141162653], [-77.34029509877426, 34.74956728458111], [-77.34013162030807, 34.74953374502033], [-77.33978483332554, 34.7494956260405], [-77.33983049143643, 34.74976528478861], [-77.33987567037735, 34.74991527646469], [-77.33979695004422, 34.75014469392], [-77.33978907136316, 34.750414525573724], [-77.33978396635925, 34.750589377664994], [-77.33973893685211, 34.75073162667044], [-77.3395284252567, 34.75093764025968], [-77.33939362700615, 34.75106401097851], [-77.33924193346502, 34.751129680222014], [-77.33914201657363, 34.75108296435685], [-77.33866028442617, 34.75106986967116], [-77.3386363561738, 34.7510599590915], [-77.33834606076509, 34.75090664329643], [-77.33814279303883, 34.750789348196164], [-77.3379140798932, 34.750671617538046], [-77.33777759251556, 34.750555411006815], [-77.33734828226373, 34.750261818217794], [-77.33724463384483, 34.75017687892812], [-77.33713511004869, 34.75013442326994], [-77.33665842918695, 34.74983928682669], [-77.33662399211019, 34.749832009813574], [-77.33637362583845, 34.74966411034817], [-77.33637216245849, 34.74966353614566], [-77.33610404318107, 34.749559982262674], [-77.33601735589218, 34.74954388020245], [-77.33578709651513, 34.749501109381654], [-77.33553570451238, 34.74945441329081], [-77.3350487943269, 34.749500257081465], [-77.33493155218721, 34.74947203286784], [-77.3346639899253, 34.74942664844902], [-77.33434669931749, 34.749423266170275], [-77.33413742465198, 34.74941265683971], [-77.33377928411446, 34.749314519660004], [-77.33299944880494, 34.74949926192117], [-77.33303060918212, 34.7489042265435], [-77.33275793573338, 34.748706733620836], [-77.33239659971103, 34.74838619715469], [-77.33209529978353, 34.74805768509104], [-77.33194747345524, 34.74794321845172], [-77.33182388324911, 34.747798758358634], [-77.3316327933289, 34.74763370771238], [-77.33144585437962, 34.74754059793237], [-77.33114547863963, 34.747213127151724], [-77.33101595850343, 34.747082838566065], [-77.33089935938524, 34.746858074469024], [-77.33085503082249, 34.746812430637576], [-77.33081796263455, 34.746770646597625], [-77.33065428026366, 34.74667088313835], [-77.33053897475344, 34.74666128285505], [-77.33036638217423, 34.746630951839265], [-77.3299786764697, 34.74655140896626], [-77.32979758395005, 34.74652702440559], [-77.32965638246722, 34.746551550011674], [-77.32880357976643, 34.74678680389049], [-77.32850730548267, 34.74684421877675], [-77.32827219104985, 34.74682741959886], [-77.32755708988078, 34.746958920532904], [-77.3272517180381, 34.747042075153274], [-77.32676571076946, 34.747197273292294], [-77.32659234089911, 34.74724958915267], [-77.32643440269719, 34.74724075523812], [-77.32599593986448, 34.7472405497419], [-77.32574201253263, 34.74719598120075], [-77.32545168852351, 34.74705220491017], [-77.32497223829252, 34.7472217046614], [-77.32477851641931, 34.7473071207656], [-77.32453032878419, 34.747468474191045], [-77.32420739764363, 34.747676455581306], [-77.32411081102941, 34.74773509039208], [-77.32404903484189, 34.7477556158846], [-77.32396929981164, 34.74777043735659], [-77.32373609253034, 34.74780176724983], [-77.32361890932467, 34.74775707483793], [-77.32352997789813, 34.74771402835912], [-77.32347094052746, 34.74768361355685], [-77.32321916628146, 34.747558835430304], [-77.32253610492175, 34.74741803903028], [-77.32236537979028, 34.74736555911762], [-77.32227714053985, 34.74738673420791], [-77.32115157884081, 34.74757169481663], [-77.32110643000088, 34.747574822097434], [-77.32093957245229, 34.7474780778203], [-77.32053874473782, 34.74725455053111], [-77.32005883866007, 34.74705750665838], [-77.31995104348495, 34.746918088380944], [-77.31979288182791, 34.74681905419406], [-77.319649584011, 34.74675570696735], [-77.3195700122261, 34.746678660097004], [-77.31936879580064, 34.74657743537146], [-77.31911307840923, 34.74619019636863], [-77.31853015086585, 34.746433847113835], [-77.31847711255837, 34.74529530607589], [-77.318320640711, 34.745071234523444], [-77.31832787897515, 34.74501297952702], [-77.31827311919143, 34.74495927731999], [-77.31796021626576, 34.74512059163909], [-77.31701420161373, 34.746552455114475], [-77.31654408537946, 34.74726394505752], [-77.31683634127087, 34.74773567051464], [-77.3173217275926, 34.748229366417036], [-77.31753069797762, 34.7487783496729], [-77.31808214225379, 34.749002790832776], [-77.31829137495947, 34.74901461995523], [-77.3183552807821, 34.74901823246253], [-77.3191244148581, 34.74912979671339], [-77.31925407371119, 34.74932966059611], [-77.31932776548325, 34.749367593080926], [-77.31937148162035, 34.74942023504785], [-77.31953966219677, 34.74959881889973], [-77.31963595129747, 34.749764723573705], [-77.31977672522139, 34.750086443214364], [-77.31983193137205, 34.75016236402018], [-77.32023941265116, 34.7505552149864], [-77.32031816476248, 34.7505768308569], [-77.3204355780046, 34.75062993425665], [-77.32028966003944, 34.75073283507095], [-77.3201622492468, 34.75082045601054], [-77.31945597953154, 34.751270839267654], [-77.31901364417041, 34.75179939817187], [-77.3189030610528, 34.75205771187352], [-77.31883209784462, 34.75250716611072], [-77.31875933232818, 34.75280895038276], [-77.31876694544057, 34.75295132790946], [-77.3187061674424, 34.753160156087155], [-77.31854281108667, 34.75332596339283], [-77.31811819968691, 34.75372795403737], [-77.31800055591731, 34.75381169917319], [-77.31791275740277, 34.753899603432515], [-77.31730341076845, 34.75447075007435], [-77.31708038278964, 34.75498830337217], [-77.31681263981548, 34.75531273556303], [-77.31629219658512, 34.755885600177635], [-77.31604881258342, 34.755912696262676], [-77.31623602630016, 34.756078638468544], [-77.3167318552276, 34.75651811722267], [-77.31694558943917, 34.75598148214934], [-77.3172148873947, 34.755669270999846], [-77.31736750074424, 34.75543635124333], [-77.3177614849424, 34.75495396065046], [-77.31781562504702, 34.75492475825798], [-77.31785693435926, 34.75488197101738], [-77.31795251300292, 34.75475950790638], [-77.31847295542352, 34.7542304123519], [-77.3188977135228, 34.75376472304819], [-77.31913433773234, 34.753539664197305], [-77.31924252813735, 34.75323014101227], [-77.31933980982274, 34.75290513640295], [-77.31939306360462, 34.75272216300256], [-77.31944026749495, 34.75253386911218], [-77.3195956704204, 34.75220705341468], [-77.31987703564053, 34.75180083652355], [-77.31994471594992, 34.75170403788065], [-77.3199852942392, 34.75166633045019], [-77.32065344201654, 34.751191264040635], [-77.32076065283995, 34.751150299831934], [-77.32123002091458, 34.751058259803244], [-77.32128899927032, 34.75106582646562], [-77.3213788338723, 34.750988105338514], [-77.32141411874842, 34.750916760673235], [-77.32152863452276, 34.75072390551026], [-77.32153015554903, 34.75055541024426], [-77.32152081655839, 34.75048129441717], [-77.32152765421975, 34.75043539921863], [-77.3215010894873, 34.750336749209005], [-77.32138182272222, 34.75015339149641], [-77.32102166100096, 34.750104709211186], [-77.32097258704188, 34.75009420537746], [-77.3209559065418, 34.75008666115801], [-77.32041862363154, 34.74993918780636], [-77.32028717831652, 34.74981246193781], [-77.32019662784019, 34.74968793477829], [-77.32005796234287, 34.749594546791315], [-77.31996474890644, 34.749440134113456], [-77.3198973079146, 34.74932393429768], [-77.31982860016392, 34.74925097643872], [-77.31967531137785, 34.74891134457896], [-77.32010598886879, 34.74872562147485], [-77.32054904571521, 34.748408861270015], [-77.32084239425441, 34.74848247142067], [-77.32155569416814, 34.74802419336205], [-77.32159707726373, 34.748017460188855], [-77.32222393386549, 34.74785182481365], [-77.32247406708272, 34.74791390191561], [-77.32268245999605, 34.74797138154841], [-77.322774991612, 34.74801678278328], [-77.32311559225701, 34.74812989497603], [-77.32331864612893, 34.74820719758495], [-77.32337375414919, 34.748228215164886], [-77.32375725376032, 34.748225487683236], [-77.32391074031754, 34.748231080806086], [-77.32404195767357, 34.74818648535458], [-77.32446246610775, 34.74804676901614], [-77.32458502901652, 34.74797236478298], [-77.3249051121677, 34.74783930558994], [-77.32526502051844, 34.747694022775185], [-77.32551139575409, 34.7476995640169], [-77.32584539295607, 34.747758186174394], [-77.32603591917187, 34.74775827546912], [-77.32688119649046, 34.74763674091875], [-77.327101737725, 34.74755779214571], [-77.32736806606918, 34.747429816826205], [-77.32755307975788, 34.74738023197655], [-77.32776812399116, 34.747326177506324], [-77.32797964491682, 34.7473334176887], [-77.32812039192063, 34.74733823515003], [-77.32836094266291, 34.74734752553855], [-77.32870309476198, 34.74728440203343], [-77.32897077887716, 34.74731035122531], [-77.32936113020934, 34.74728093020215], [-77.32958991392884, 34.74724119223857], [-77.32975562285796, 34.74726350536031], [-77.32999498767049, 34.74737080325143], [-77.3301209001184, 34.747475173508235], [-77.33028203633086, 34.74764706458302], [-77.33058129038604, 34.747951943131355], [-77.33070528328696, 34.74810993745932], [-77.33084470797138, 34.748229087227216], [-77.3311291466688, 34.74857233849008], [-77.3313152150947, 34.74865197294939], [-77.33149670909938, 34.748923977635876], [-77.33161377866243, 34.74898802415103], [-77.33160133214714, 34.74910012848177], [-77.33159102711534, 34.74925707740925], [-77.33164495348744, 34.749752319307916], [-77.33164689926802, 34.75006862099596], [-77.33193079932096, 34.75032082782443], [-77.33225496498301, 34.75043659689726], [-77.33278022534408, 34.75045607694623], [-77.33296810168365, 34.750477378731716], [-77.33327931441296, 34.75033224887768], [-77.33350855361947, 34.75024568849789], [-77.33371756414294, 34.750129591108795], [-77.333910064114, 34.75003532408655], [-77.33418214515615, 34.749989259809176], [-77.33440659311431, 34.74999399778467], [-77.3345386778611, 34.749953978076206], [-77.33478580638076, 34.749973346485135], [-77.3351830739875, 34.74988661430682], [-77.33541538853777, 34.749868268557115], [-77.33559717864067, 34.749866929772445], [-77.33571850340925, 34.74985589007252], [-77.33587893771738, 34.74986485449196], [-77.33600842101129, 34.74988890585894], [-77.33605689498388, 34.74990762763133], [-77.33611392517658, 34.74994367584043], [-77.3361993558958, 34.74999517108314], [-77.33626162619852, 34.75004820713248], [-77.3363249023995, 34.75009571881139], [-77.33649254044876, 34.75028418872503], [-77.33661678923116, 34.750362107311474], [-77.33675707531171, 34.75055173971961], [-77.336946344072, 34.75078376997985], [-77.33697398298582, 34.75080050911884], [-77.33726377601334, 34.750950463043374], [-77.33748343873128, 34.75099684738609], [-77.33790102239243, 34.75116078103581], [-77.33796083743141, 34.75120282802371], [-77.33802403318595, 34.7511978929177], [-77.33813585069116, 34.75122626899268], [-77.33856335229467, 34.751403331179816], [-77.33871981574137, 34.75140758424797], [-77.33910834896949, 34.7515892418801], [-77.33969821901458, 34.75133388282306], [-77.3398128490449, 34.751226419415545], [-77.34025173388015, 34.750838456759325], [-77.34032727997597, 34.75061457205192], [-77.3406708573105, 34.75033542770298], [-77.34128173014557, 34.7502260602937], [-77.34132500291568, 34.7502219019051], [-77.34183468419451, 34.750453182837674], [-77.34195023928785, 34.75050035915516], [-77.34211646131575, 34.75051420628825], [-77.3422468768867, 34.750564850327486], [-77.34232998606821, 34.750602528287835], [-77.34237506289188, 34.75065497111467], [-77.34249196779176, 34.75077492493429], [-77.34254177913937, 34.75083384215403], [-77.34267566041251, 34.75099341956862], [-77.34282522242796, 34.75116719163242], [-77.34294821698705, 34.75130965681507], [-77.34305825178393, 34.75142832323061], [-77.34316652149954, 34.75153596640928], [-77.34328727445444, 34.75163850986395], [-77.34352026977993, 34.75165812608654], [-77.34381062037359, 34.7518989352239], [-77.34431356073128, 34.75159301038039], [-77.34450513010697, 34.75157039593468], [-77.34474017615257, 34.7515084266784], [-77.34483268678687, 34.75147390030208], [-77.34490167221526, 34.75147573114682], [-77.34512663870383, 34.75149303876353], [-77.34550995215584, 34.75157942208295], [-77.3456310662273, 34.751611716904954], [-77.3456856331102, 34.75163079936882], [-77.34584210706032, 34.75167057238639], [-77.3463166102751, 34.75152084849619], [-77.34636068227836, 34.75146272344603], [-77.34637458255116, 34.75143414761402], [-77.34655001374759, 34.75102112820629], [-77.34664340200094, 34.75093656166126], [-77.34717598974879, 34.7506248536983], [-77.34751795783322, 34.750602050914594], [-77.34777766639769, 34.750615700735544], [-77.34795686286854, 34.75061155125379], [-77.3483941193949, 34.75055568857088], [-77.3487755794979, 34.750439589713224], [-77.3490555438762, 34.75034088830066], [-77.3494249392615, 34.750067572580534], [-77.34953492468584, 34.749835726089906], [-77.34964519826343, 34.74954997166711], [-77.34991432606643, 34.74910618116402], [-77.34990909042322, 34.749026383210996], [-77.34998273997888, 34.74895590047238], [-77.35011170236947, 34.748767426491696], [-77.35027975310672, 34.748488143290906], [-77.35031134962146, 34.74840664781689], [-77.35025834180675, 34.74826269368366], [-77.35023563270755, 34.74807068404401], [-77.35019622302488, 34.748012224611415], [-77.34997578873003, 34.74767322034676], [-77.34990053687592, 34.74756541703395], [-77.34988719102583, 34.747550272353585], [-77.34987059933128, 34.747535569075346], [-77.34939533680334, 34.74714735638053], [-77.34939098778027, 34.74714350224549], [-77.34938649095444, 34.74714015227909], [-77.349325054205, 34.74709674993108], [-77.34888473495961, 34.74680548898172], [-77.34885653262957, 34.746766151466375], [-77.34879968988349, 34.74674170359816], [-77.34836194662299, 34.74654322705318], [-77.34823751489068, 34.74645383514796], [-77.34790804532406, 34.746376659242436], [-77.34785089461684, 34.74635698146332], [-77.34781881141262, 34.74635100250849], [-77.34774329616579, 34.746333735505566], [-77.34745558644647, 34.746266807341975], [-77.34727542036322, 34.74615966299991], [-77.34689938700257, 34.74622437034893], [-77.34666388891019, 34.74620283862747], [-77.34653162447815, 34.746189005001526], [-77.34637300363158, 34.74617321361019], [-77.3462157561972, 34.7461214473533], [-77.34614181118562, 34.74609460279852], [-77.3461082164778, 34.74605377233176], [-77.34595653689095, 34.74602734133842], [-77.34579361532705, 34.745968194636816], [-77.34577607782595, 34.74586746170507], [-77.34597127383569, 34.74583157004896], [-77.3461953439485, 34.74575392521518], [-77.34633982306173, 34.74572862682197], [-77.34667766430114, 34.745682511888944], [-77.3468135256505, 34.74568785473268], [-77.34706243019542, 34.74573053416691], [-77.34711866593122, 34.74573754564077], [-77.34738830205157, 34.74577116347167], [-77.34772757601363, 34.74568152987521], [-77.34786917286853, 34.745407234476204], [-77.34791940045201, 34.74512173333567], [-77.34803241573306, 34.744897458670124], [-77.34800140672968, 34.74464757087337], [-77.34799194024272, 34.744415632915604], [-77.34795779425508, 34.744303832573635], [-77.34796193660318, 34.74397432611029], [-77.34796460889115, 34.74393200412287], [-77.347969055092, 34.743900985162455], [-77.34800322185308, 34.743654763979464], [-77.34803204847535, 34.74345835085002], [-77.3480400221049, 34.74340522854296], [-77.34811328814651, 34.74293684667565], [-77.34813098993664, 34.742847544929504], [-77.34814572706892, 34.74268870649179], [-77.34814756652857, 34.742581132402876], [-77.34814990438932, 34.74244444349828], [-77.34815358431696, 34.74222928586017], [-77.34816065007367, 34.74217688260746], [-77.34815581610079, 34.74209878359511], [-77.34816137449258, 34.74195549091553], [-77.3482010858747, 34.74175159581985], [-77.3482224027031, 34.74165197977077], [-77.34832248975677, 34.741446005325585], [-77.34826631013223, 34.74130724386255], [-77.34829457573724, 34.741077646391616], [-77.34830899985877, 34.74096047727339], [-77.34831949884763, 34.74087214852646], [-77.34832113134311, 34.74078203593719], [-77.34834108298469, 34.74071238558903], [-77.34841517431866, 34.74054621781406], [-77.3488575308485, 34.740397833685], [-77.3489347657526, 34.740368289434045], [-77.34896315198927, 34.740350725749806], [-77.34949078457672, 34.739823561281746], [-77.34922946723921, 34.739434036540175], [-77.34918964644048, 34.73941452049675], [-77.3487105072881, 34.7391587559599], [-77.34857100932558, 34.739101951542985], [-77.3484906502963, 34.738986034611855], [-77.3480777171538, 34.73869298133456], [-77.34773470900944, 34.73839440533065], [-77.34760197172639, 34.738270515482434], [-77.34746126460041, 34.73815251651866], [-77.34727373765915, 34.73791956887932], [-77.34720464235748, 34.73778774055679], [-77.34687164888118, 34.737263787555655], [-77.34686889042396, 34.737259034228565], [-77.3468683232307, 34.737258044371835], [-77.34686745757662, 34.737256508000904], [-77.34661397891752, 34.73680662893728], [-77.34715044995689, 34.736282474062925], [-77.34718909827646, 34.73626848785426], [-77.34752404530218, 34.73635952797654], [-77.34771212639265, 34.73641064884755], [-77.34792198494421, 34.7364476430253], [-77.34799704406497, 34.736460696358215], [-77.34815674376327, 34.73648757937512], [-77.34828195232363, 34.73651077591403], [-77.34845998618198, 34.73655334562759], [-77.34871759368227, 34.736624078826324], [-77.34885000229238, 34.73661701745942], [-77.34900137385233, 34.73659766550273], [-77.34928250737802, 34.736583762234964], [-77.34944981460403, 34.736613925307076], [-77.34975598156335, 34.736375509681125], [-77.34990905782665, 34.73612534248461], [-77.34991825818325, 34.73610955134777], [-77.34996256854681, 34.73606068178576], [-77.35013777172699, 34.735835737502505], [-77.35021210405827, 34.73575557643998], [-77.35033606108772, 34.735624805892876], [-77.3505209739804, 34.735390971981154], [-77.35059648932885, 34.735285406708115], [-77.35072120912228, 34.73508295310789], [-77.35078104757147, 34.73498313560263], [-77.35111598414966, 34.734726732320766], [-77.3511461603243, 34.73466836560718], [-77.3512440675421, 34.73456069692176], [-77.35171660222642, 34.73431729034284], [-77.35195441086984, 34.73417701331592], [-77.35203341417352, 34.734177956688896], [-77.35214281168372, 34.73409842567232], [-77.35214262649355, 34.73398958391267], [-77.35244901625283, 34.73356901661983], [-77.35246140227136, 34.73328064643991], [-77.35287973591839, 34.73263416967217], [-77.35297079755843, 34.732522636929474], [-77.35299948649208, 34.73248088835738], [-77.35311926604432, 34.732228450775054], [-77.35341487245631, 34.731572426665], [-77.35349613314328, 34.731475764920035], [-77.35341667478593, 34.73143271925829], [-77.3534870566285, 34.73098962860499], [-77.35348066486846, 34.73098414616252], [-77.35315898230849, 34.73084254548165], [-77.35296992365343, 34.73068072862509], [-77.35291437965495, 34.73063650875309], [-77.3527981580203, 34.73059680439163], [-77.35257219337736, 34.730505537652874], [-77.35243345962817, 34.73046588380683], [-77.35206894678811, 34.73037991354965], [-77.35187503834828, 34.730326641864934], [-77.35180736726528, 34.73030548630757], [-77.35172177587717, 34.7302571595897], [-77.3514868283481, 34.730157863292916], [-77.35135629463693, 34.73005080151803], [-77.35123881677075, 34.72995444784749], [-77.3511151691942, 34.72985303205634], [-77.35074279854382, 34.72954761579378], [-77.35044496752852, 34.729064821084144], [-77.35034438977138, 34.728984053726045], [-77.35049051226306, 34.728908025141926], [-77.35053578252486, 34.72891847386256], [-77.35064259851688, 34.7289431273709], [-77.35121876758672, 34.729181477890904], [-77.35161297564068, 34.72916709480539], [-77.35198446344634, 34.72924634234074], [-77.35212036617152, 34.72927631207205], [-77.35217707943535, 34.72928674588238], [-77.35228326352613, 34.72929329840561], [-77.35266192626139, 34.72925390656664], [-77.35278932260015, 34.729240653590416], [-77.3529175690813, 34.72911826781852], [-77.35296895883837, 34.729017713478626], [-77.35310733379384, 34.72874695597139], [-77.35321203205044, 34.72859046678122], [-77.35358447809007, 34.72814999759168], [-77.35366944567963, 34.7280402972632], [-77.35368899045761, 34.72798583171886], [-77.35399513123629, 34.72750820628669], [-77.35387380914175, 34.72713900491227], [-77.35388638055272, 34.72703575309941], [-77.35387822276739, 34.726877010874844], [-77.35411425068057, 34.72655982519325], [-77.35415709934522, 34.726511208203625], [-77.35419126403163, 34.72647544350709], [-77.35448822981527, 34.726141019977405], [-77.35455779794486, 34.7259688185045], [-77.35460253066327, 34.72578997099782], [-77.35464921858669, 34.725468885199504], [-77.35466444396029, 34.72534813259077], [-77.35455935361648, 34.725207969540065], [-77.35448105450749, 34.72509501319011], [-77.35440978708544, 34.724795034623114], [-77.35514336148424, 34.72458547078671], [-77.35537278150824, 34.72446896678636], [-77.35561299934506, 34.72484919014445], [-77.35562380023737, 34.72500426450972], [-77.35560317033985, 34.725214192939106], [-77.35556970186263, 34.72534251828857], [-77.35561831386488, 34.72568554310855], [-77.35562731386284, 34.72578998291496], [-77.3556227182639, 34.72582262384419], [-77.35562269926137, 34.725869728368956], [-77.35565173841687, 34.72616540291867], [-77.35570885388995, 34.72629818208408], [-77.35575362562051, 34.72648122657712], [-77.35597111002454, 34.72653277458938], [-77.3561279862187, 34.7265874265982], [-77.35648961987057, 34.72663783242889], [-77.35654086027729, 34.726632916501], [-77.35661958237495, 34.726603428861345], [-77.35716671754126, 34.726539839473446], [-77.3572093941747, 34.72654386621684], [-77.35772121408169, 34.7264525733715], [-77.35782293409532, 34.72634219960351], [-77.35826393458774, 34.725947373957126], [-77.35842340866489, 34.725798274746374], [-77.35860285346803, 34.725718510434746], [-77.35876520881024, 34.72574106877144], [-77.35879509187035, 34.725874439948136], [-77.35902901350306, 34.725932321038876], [-77.35913342674525, 34.7259535593691], [-77.35934888977894, 34.726080431211926], [-77.35946611260938, 34.726083868238305], [-77.3597893915466, 34.725756743162954], [-77.35980518845304, 34.72574607098887], [-77.35987509865097, 34.725726135281015], [-77.36035385468895, 34.72559396155782], [-77.36044096776227, 34.72557502713374], [-77.36080810420243, 34.72535820357098], [-77.36101026374034, 34.7250828582512], [-77.36106699111517, 34.724949368334585], [-77.36117832224265, 34.72467282317932], [-77.36114967217286, 34.72457632570655], [-77.36111522288411, 34.72435390486751], [-77.36157191843215, 34.72374210169454], [-77.36167850313868, 34.723576558447405], [-77.36259121666407, 34.72358565812987], [-77.3628046587595, 34.72362105325312], [-77.36313295263912, 34.723816546301975], [-77.36323572541382, 34.72387819519025], [-77.36332600422284, 34.72388786088767], [-77.36348456490894, 34.724080955438346], [-77.36355219811061, 34.72414004200621], [-77.36363040398219, 34.724235607594686], [-77.36366944851466, 34.72433292857063], [-77.36372818994437, 34.72456516509753], [-77.36376512186732, 34.724704491541985], [-77.36378982526705, 34.72480884038706], [-77.36384637709742, 34.72498526293642], [-77.36402663464713, 34.7251559591414], [-77.36408527477624, 34.72519567502], [-77.36413155128213, 34.72523844155443], [-77.36442518029145, 34.725328361988815], [-77.36468506867296, 34.725394461278704], [-77.36480791180026, 34.72542809707953], [-77.36524268036044, 34.72545772401536], [-77.36526555956819, 34.7254575610983], [-77.36534480485832, 34.725409203288095], [-77.36568380765533, 34.72521033846965], [-77.36600453186409, 34.724974667505265], [-77.36607938310617, 34.72492260162423], [-77.36632423092064, 34.724840341104894], [-77.36667499641366, 34.72472776924389], [-77.36726883803955, 34.724699965494224], [-77.3672820535693, 34.72469931590153], [-77.36729475241202, 34.724697177415926], [-77.36730721158808, 34.7247052967578], [-77.36770085639816, 34.72477891583079], [-77.36784324271989, 34.72482889293754], [-77.36813355719508, 34.72484018493961], [-77.36844660760816, 34.724813155299756], [-77.36877165847471, 34.724754906256905], [-77.36907477597742, 34.724711949415045], [-77.36936821570174, 34.72467855654413], [-77.3694016800964, 34.72467484501976], [-77.36973276311929, 34.72450798665019], [-77.36986140720772, 34.72444393556775], [-77.36994957655457, 34.72434223961828], [-77.37051719805152, 34.723868285623396], [-77.37066584732595, 34.7240741835075], [-77.37084369583971, 34.72421937539712], [-77.3708778573031, 34.724305284224094], [-77.37097700006535, 34.724347217829816], [-77.37143470419794, 34.724665265394144], [-77.37148076292833, 34.724674679528775], [-77.37165333319538, 34.72475492799746], [-77.37174346333086, 34.72480113159904], [-77.37175999830426, 34.724809184611686], [-77.37200808638804, 34.72492095945999], [-77.37211821000825, 34.72497872210673], [-77.37229102103018, 34.72505077493448], [-77.37242464032941, 34.72507420170854], [-77.37245484477802, 34.725077189761045], [-77.37262178384499, 34.725015768677416], [-77.37265878431747, 34.7249990301293], [-77.37281383208305, 34.72491592935833], [-77.37296304778893, 34.724825946380214], [-77.37315316283772, 34.724722506875054], [-77.37339308938166, 34.72456741623752], [-77.37350233062355, 34.724545181751644], [-77.3735378223847, 34.72446796284209], [-77.37380572441354, 34.72429296078733], [-77.37381565428606, 34.72428562572504], [-77.37392376613924, 34.72422652715571], [-77.37412486878802, 34.72411427468798], [-77.37414794311464, 34.724104269189965], [-77.37417471108981, 34.724083476792536], [-77.37446559988881, 34.72387538940446], [-77.37464019821026, 34.7237354783596], [-77.3747608357044, 34.72360982557287], [-77.37501806275051, 34.72338674315745], [-77.37506221853856, 34.723354322544964], [-77.3751064137196, 34.72333948856478], [-77.3754344739031, 34.723214785888416], [-77.37554914558763, 34.7231030825607], [-77.3755820841712, 34.722946808154816], [-77.37574085111079, 34.72257693344133], [-77.37575386751394, 34.722447744446455], [-77.37585667581996, 34.72240834583784], [-77.37595089753503, 34.72238152934844], [-77.37646845277072, 34.722138702474446], [-77.3765790221861, 34.72209302249337], [-77.3766820625246, 34.722071369946974], [-77.37692801039972, 34.721915425409875], [-77.37722315523837, 34.72184370217088], [-77.37732653970484, 34.721818888774045], [-77.3773983274629, 34.72181254775349], [-77.37766979561515, 34.721773241127295], [-77.37773346739002, 34.721762385579], [-77.37774878964078, 34.721761163721176], [-77.37807496449255, 34.72169030655063], [-77.37818313872383, 34.72172323320039], [-77.3783423930621, 34.721676306920024], [-77.37897750210671, 34.72152575032407], [-77.37940195903823, 34.72153638220454], [-77.37983102864499, 34.721425066302174], [-77.38053060139106, 34.721323898029304], [-77.38078489858744, 34.72118955526169], [-77.38117348830474, 34.72120589165077], [-77.38142287046686, 34.72120056214824], [-77.38158545058596, 34.72130119084683], [-77.38169347165075, 34.72137287870246], [-77.38175860286356, 34.72140836313302], [-77.38188277064653, 34.72141334331838], [-77.38201268519823, 34.72137759690011], [-77.3820778713962, 34.72135826203585], [-77.3821204399659, 34.72132120143357], [-77.38222083540272, 34.72121574729276], [-77.38229837023914, 34.721103888719355], [-77.38232638530285, 34.721016299255965], [-77.38240502648875, 34.72086162829114], [-77.38274284179866, 34.72055192820247], [-77.38282148977348, 34.72044821545183], [-77.38287193024264, 34.72041175617417], [-77.38318967803706, 34.72001790393543], [-77.383337182909, 34.719675865600095], [-77.38380523983136, 34.71961833635334], [-77.38421522147505, 34.719615295199915], [-77.38474930215588, 34.719715774334254], [-77.38504416200144, 34.71976788719937], [-77.3854364962423, 34.72011622633278], [-77.38555343357893, 34.72022262868161], [-77.38558571752347, 34.72025979535829], [-77.38567996721183, 34.72033033824469], [-77.38607339581338, 34.720640521239716], [-77.38642904198711, 34.72080093387723], [-77.38666035684932, 34.72082738929399], [-77.38684166943351, 34.7209179487578], [-77.38694020323567, 34.72096784281511], [-77.38701174703861, 34.72100438726472], [-77.38721026288391, 34.72114204750399], [-77.38739838910985, 34.72128955033072], [-77.38760487126315, 34.721563186784486], [-77.38769010731683, 34.721698330069266], [-77.38787894676832, 34.721981874487916], [-77.38813297224826, 34.72230717157421], [-77.38814980796423, 34.72232410126191], [-77.38821709632194, 34.7223366112909], [-77.38868443110269, 34.72243538736868], [-77.3887637292294, 34.72241803636435], [-77.38904718379283, 34.722387594146554], [-77.3894007067461, 34.722432455114806], [-77.38968917644426, 34.7225819900353], [-77.39048835094837, 34.7226795538215], [-77.39060044646246, 34.72271725444456], [-77.39074643725719, 34.72281447779497], [-77.39069402306777, 34.72264423256151], [-77.39070814053837, 34.7225879478616], [-77.39073021268524, 34.7222696901902], [-77.39049274966028, 34.721785103378956], [-77.39004927539975, 34.721300284648194], [-77.38990663347666, 34.72113678005832], [-77.38978140142953, 34.7211194984352], [-77.38962498129341, 34.72098014749031], [-77.38918614028512, 34.720544461638205], [-77.38873004860075, 34.720323029074294], [-77.38789106314422, 34.719426665709044], [-77.38854117459391, 34.71920730820792], [-77.38900907918071, 34.71936070770789], [-77.38992583316916, 34.719975415265516], [-77.39032922242423, 34.7200680327406], [-77.39124010109886, 34.720511049876094], [-77.39222814379276, 34.72074762730422], [-77.3924373630444, 34.720804296993954], [-77.39296424532287, 34.720754966530244], [-77.39313926122495, 34.72074109793189], [-77.39317957379403, 34.72071819416815], [-77.39318145750133, 34.720664427448746], [-77.3934274591163, 34.7202457766556], [-77.39350894333627, 34.71984900904557], [-77.39366952316277, 34.71956835979538], [-77.3938731635417, 34.71928342773616], [-77.39346028617886, 34.71876295047274], [-77.39352186059436, 34.71837340805162], [-77.39373740341635, 34.71811761509523], [-77.39386817819636, 34.71808030173129], [-77.39431464549881, 34.71817336814465], [-77.39446551989168, 34.7182313102262], [-77.39472106412268, 34.718237401839836], [-77.39538411320149, 34.71842585653006], [-77.39564253691697, 34.71859428716372], [-77.39573041922297, 34.71870927943469], [-77.39588696360238, 34.71886977107054], [-77.39613944221233, 34.71909181082155], [-77.39628400701865, 34.71914931282966], [-77.39649608445492, 34.719282739223175], [-77.3966938545653, 34.71939095250322], [-77.39698645004587, 34.71954981498477], [-77.39725445851785, 34.719668743645684], [-77.39754657790417, 34.71971756090727], [-77.39766688837855, 34.71949254766555], [-77.39781805430499, 34.71941323614491], [-77.39796385650055, 34.719433179220836], [-77.3983127146707, 34.719159364258395], [-77.39847001165779, 34.71898286441178], [-77.39853622307982, 34.718878572973324], [-77.3986161338094, 34.71870638092437], [-77.39869858954316, 34.71860839222337], [-77.39881391201426, 34.71831648303883], [-77.39885714327005, 34.718231562834106], [-77.39887405033105, 34.71814705586344], [-77.39889125140326, 34.71806107872228], [-77.39885637777613, 34.7179517244637], [-77.39880629320129, 34.717873335341345], [-77.39859338777921, 34.71758013938825], [-77.39856061732709, 34.71752943286374], [-77.39852838811098, 34.71748539303736], [-77.39829323815492, 34.71719555157537], [-77.39829277362328, 34.71719477235121], [-77.39817040136316, 34.7168730010194], [-77.39815559080473, 34.71680564017373], [-77.39813159411194, 34.71664245360927], [-77.39809698885497, 34.71638374847252], [-77.39808387283892, 34.716283582484806], [-77.39799654072083, 34.71600244036573], [-77.39799069623231, 34.71598173927493], [-77.397983842218, 34.715969010835494], [-77.39789467609923, 34.715797049152215], [-77.39780646245931, 34.7156273744862], [-77.39780041074577, 34.71561474652632], [-77.39779326514498, 34.71559782167904], [-77.39761431762474, 34.71524600630451], [-77.39747751709601, 34.714953131427514], [-77.39744366726624, 34.714870828410774], [-77.39739305118289, 34.71476673920069], [-77.39725545060556, 34.714502974219165], [-77.3971924203142, 34.714353016455306], [-77.39716631978024, 34.71431697231461], [-77.39708842801086, 34.714257840819464], [-77.3969788885077, 34.71417195118001], [-77.39693402865328, 34.714138587411966], [-77.3964325724225, 34.713953385961965], [-77.3963674501922, 34.713881541812626], [-77.39599730595114, 34.71331688959671], [-77.39600058344661, 34.713240840298454], [-77.39609175871412, 34.712790791616094], [-77.39606890475672, 34.71269976627817], [-77.39564981040354, 34.71249443783823], [-77.39596656584553, 34.712187832908405], [-77.39595955345094, 34.711918991981605], [-77.39596340550766, 34.71190715242509], [-77.3957535090194, 34.711576157900296], [-77.39574600817002, 34.71156169996214], [-77.39573529378872, 34.71154775305433], [-77.39552858491592, 34.71124630271306], [-77.39550035890505, 34.71121779206998], [-77.39528546191721, 34.710979240440935], [-77.39521425784363, 34.710890748400516], [-77.39510721151126, 34.710768809363415], [-77.39504635278549, 34.710698335989996], [-77.39490110973986, 34.710574980569035], [-77.39478818358148, 34.71048319317087], [-77.39424090722916, 34.71040389432885], [-77.39417981704426, 34.71037041131014], [-77.39411727775962, 34.71036695701335], [-77.3939516013903, 34.71036439992928], [-77.39364345047547, 34.710340248910214], [-77.39355017388503, 34.710331032501756], [-77.39314980347791, 34.71028111585375], [-77.39293552871894, 34.71023991220084], [-77.39265307388933, 34.710173196150365], [-77.39233963186167, 34.71008411793429], [-77.39205848222092, 34.709992669726134], [-77.39175983359235, 34.70987279468312], [-77.39147203025827, 34.709781710458834], [-77.39146640908439, 34.709779297201656], [-77.39146002883625, 34.70977791222665], [-77.39115649890803, 34.709742666842956], [-77.39097968831766, 34.709724697075735], [-77.39052671648834, 34.70972492764941], [-77.39052232862741, 34.709724910047946], [-77.39052036492754, 34.709725680067834], [-77.39047725172375, 34.709707615061646], [-77.38997344768039, 34.7095049785048], [-77.3899490715071, 34.709485034853806], [-77.38989746100044, 34.70945108554793], [-77.38936917307407, 34.709274078610974], [-77.38927929747652, 34.70928832722401], [-77.38894348965461, 34.70938727951441], [-77.38845699727455, 34.709559679013665], [-77.38818181539409, 34.70963806945993], [-77.38795186375114, 34.709740354623605], [-77.38782291367268, 34.70979935385074], [-77.38768976821663, 34.70985030680613], [-77.38759202958563, 34.7098759055008], [-77.38738920777094, 34.709838255223616], [-77.38727737511601, 34.709855630581536], [-77.38720199532915, 34.70976759029946], [-77.3867767808025, 34.70937116540156], [-77.38655597623273, 34.7091442590233], [-77.38626674285189, 34.70891929134572], [-77.3858057259131, 34.70874448437786], [-77.38565050155489, 34.70883369308294], [-77.3851190544062, 34.70911797895404], [-77.3847128299806, 34.70901988807239], [-77.38432201883836, 34.708993556370935], [-77.38350014463529, 34.70863272792834], [-77.38225874160239, 34.70738996904881], [-77.38223845050821, 34.70737340970953], [-77.3822286417944, 34.70736985213906], [-77.3822152155589, 34.70736070617269], [-77.38138325742634, 34.70683724916712], [-77.38113188758591, 34.70673071912441], [-77.38065818221627, 34.70630995826555], [-77.38062236427729, 34.70627720330379], [-77.38061398509818, 34.70626527979993], [-77.38058319797797, 34.706244175127], [-77.38008722060431, 34.705912040602335], [-77.37956186691127, 34.705886591827706], [-77.37948302290505, 34.70588405238151], [-77.379450933708, 34.70589561884166], [-77.37914188707768, 34.70598621105061], [-77.37875900125017, 34.70607104392606], [-77.37868279273542, 34.706071687138575], [-77.37851047745475, 34.70607766886428], [-77.37777568300564, 34.70608441220776], [-77.3774581459815, 34.7061356748475], [-77.37683440728304, 34.7063371262578], [-77.37681512244046, 34.70635558395854], [-77.37661647434705, 34.70685448413406], [-77.37690863670446, 34.70704658150295], [-77.37666031050603, 34.707494620740384], [-77.37575801611953, 34.707932355530644], [-77.37574543627697, 34.70791244113603], [-77.37564861491967, 34.70722801406803], [-77.37562907468603, 34.70699023441166], [-77.3753799695861, 34.70664627105592], [-77.37530805708722, 34.70654697241883], [-77.37521461235553, 34.706379290212595], [-77.37526353431048, 34.706257228039505], [-77.37542883411693, 34.706042972813435], [-77.37581092653141, 34.705525957813784], [-77.37583873773234, 34.70549060757566], [-77.37585399965442, 34.7054744786365], [-77.37619581041702, 34.70516884479661], [-77.37627215859732, 34.705170885240676], [-77.37653682001316, 34.705184293319384], [-77.37680648323857, 34.70507174785387], [-77.37720811936101, 34.70493380713012], [-77.37733454687336, 34.70480617123996], [-77.37734945877011, 34.70473580601822], [-77.37744381699457, 34.70454744880427], [-77.37742380026054, 34.704342449487214], [-77.37742099858075, 34.70430688788415], [-77.37742470125349, 34.70428359676275], [-77.37739834916621, 34.70427798009763], [-77.37720183341187, 34.70406089238678], [-77.37703265746121, 34.703872886012974], [-77.37699209520228, 34.70382808028195], [-77.37694570873649, 34.703774661015174], [-77.37678375931034, 34.70359418910334], [-77.37664969853131, 34.70343814333524], [-77.37658311204069, 34.703354379274955], [-77.37649958135364, 34.70324890574801], [-77.37639003755888, 34.70310874001625], [-77.37630439668922, 34.70299822248887], [-77.3761986710058, 34.70286178647679], [-77.37607282023225, 34.702656404992915], [-77.3759958383013, 34.70255324948294], [-77.37587725626344, 34.70232067331436], [-77.3758347424159, 34.702088001826354], [-77.37580337305216, 34.70198327705652], [-77.37571912151162, 34.70181204862392], [-77.37567561483671, 34.7016873563764], [-77.3756288328204, 34.701628915500066], [-77.3752899905525, 34.70122776066064], [-77.37527072750855, 34.701210511418985], [-77.37525605121134, 34.70119277120355], [-77.37510176532554, 34.70100908036365], [-77.37507022095105, 34.70097059841871], [-77.37492020763182, 34.70075154749544], [-77.37489495852186, 34.700711251272736], [-77.374855309441, 34.70066262463797], [-77.37469745493001, 34.70046902730691], [-77.37456969668938, 34.700312339610086], [-77.37450721598586, 34.700221211173876], [-77.3744199521812, 34.70009983918679], [-77.37441575103846, 34.700094490265776], [-77.37441283165391, 34.70009020762732], [-77.3743298420453, 34.699963491457694], [-77.37423406869635, 34.69987108552125], [-77.37419729742487, 34.69983560719521], [-77.37410026900648, 34.699745957970904], [-77.37396125815887, 34.69961751844458], [-77.37375235823436, 34.69944991236787], [-77.37363442214024, 34.6993160509236], [-77.3735675511899, 34.69923162082071], [-77.37348978854445, 34.69917925499564], [-77.37333175586403, 34.699154789336944], [-77.37292657907342, 34.69908184860748], [-77.37291493502494, 34.69909737925889], [-77.37276232081305, 34.69919889644431], [-77.37216343230253, 34.699624406971296], [-77.37161596697939, 34.69929285801696], [-77.37175631576761, 34.69874950483836], [-77.37165760322306, 34.698472286240374], [-77.37160974327473, 34.69828225950991], [-77.37141649023769, 34.69807236834832], [-77.37129572470582, 34.697962347074046], [-77.37115252447443, 34.697857711065254], [-77.37080782320739, 34.697549425060906], [-77.37047145921196, 34.69720319478953], [-77.37034117462564, 34.69712014215706], [-77.37023768591722, 34.697008667352286], [-77.36953911767114, 34.69629034710875], [-77.36945299481077, 34.69622685494407], [-77.36934436206163, 34.69615666162967], [-77.36899261648307, 34.69579275219829], [-77.36866369836714, 34.695304516474515], [-77.36864674266226, 34.69527775580544], [-77.3686470089256, 34.69527030066592], [-77.36864191087915, 34.695256469894105], [-77.36833362160662, 34.694346003183306], [-77.36859704624453, 34.69373175263752], [-77.3680238127978, 34.69341379825109], [-77.36800142356515, 34.69340177934135], [-77.36798456394513, 34.693395989477885], [-77.36718470152671, 34.693241998441366], [-77.36748602748696, 34.6925129206076], [-77.3673607471915, 34.692317989032155], [-77.36718124730601, 34.69203868864582], [-77.36593955843857, 34.69272543673878], [-77.36594261634255, 34.69289310050755], [-77.36568045322784, 34.692822988172914], [-77.36566591427713, 34.69264787681273], [-77.36620990026002, 34.69171350065132], [-77.36646075948585, 34.690799607702104], [-77.36751366470538, 34.69089301894149], [-77.3678933471547, 34.69079288774626], [-77.36862173732197, 34.69055874527608], [-77.36847503030369, 34.690914826470106], [-77.3686912960367, 34.69096016195821], [-77.36905331733922, 34.69101499634398], [-77.36955678833276, 34.69099073338535], [-77.36989358081412, 34.69094231773114], [-77.37003419026776, 34.691048372957226], [-77.37041110069539, 34.691136116906115], [-77.37043404590814, 34.69114254297311], [-77.37045631963593, 34.69112990144938], [-77.37044237162995, 34.69111384450622], [-77.37035219588904, 34.690803550726926], [-77.37022665731507, 34.69067407562767], [-77.37008167619547, 34.690293970642614], [-77.36997191607068, 34.69030780500779], [-77.36950115703135, 34.69028640069227], [-77.36903678862053, 34.69023921779692], [-77.36889759902633, 34.690249090910946], [-77.36835550731179, 34.68946907615782], [-77.36834813591727, 34.68919237454971], [-77.3680358806174, 34.68909315278838], [-77.36766668931739, 34.68858896004307], [-77.36788252686011, 34.68797383233037], [-77.36721460996584, 34.68779788898659], [-77.36713815235048, 34.687686815397385], [-77.36729179061948, 34.68753187870661], [-77.36762143151373, 34.68738634948703], [-77.36811166592591, 34.68715739894187], [-77.36844147105228, 34.687020302282036], [-77.3682427702109, 34.68690800383328], [-77.36834009837706, 34.68672168944564], [-77.36823458782202, 34.68656134452197], [-77.3681913397059, 34.68649435616436], [-77.3678160060623, 34.686448060531355], [-77.36773203982733, 34.68601448810462], [-77.36761555515932, 34.685813888884724], [-77.36769568413283, 34.68566062645317], [-77.3677313633483, 34.685544017357685], [-77.36772787933877, 34.685333168133916], [-77.36749606858632, 34.68520066908372], [-77.36765654465296, 34.68499384095483], [-77.36740125887935, 34.68509167717181], [-77.3672761559629, 34.685140568072526], [-77.36691981094096, 34.68527986556986], [-77.36673042153978, 34.68534094030617], [-77.36665575235624, 34.68531615500096], [-77.3662928827153, 34.685255192165506], [-77.36614788572854, 34.68528585466441], [-77.36597037663208, 34.68525958515903], [-77.36580656705415, 34.68523534290077], [-77.36559495594267, 34.68512873302666], [-77.36540799745254, 34.68514793988187], [-77.36515530824296, 34.68503495634942], [-77.36481959819696, 34.684812438358094], [-77.36450883652448, 34.68474647110131], [-77.36393326704518, 34.68470629525587], [-77.36389645786268, 34.68469774588639], [-77.36336168592686, 34.68457455634074], [-77.36293539116832, 34.684686012513644], [-77.3625216844703, 34.684755570147544], [-77.36194009217638, 34.68534834607072], [-77.36184426611827, 34.68543152200555], [-77.36103794606004, 34.685358196852754], [-77.36072474029086, 34.68541139063122], [-77.36026772641408, 34.685310487054245], [-77.36011597433496, 34.6852794585962], [-77.36006088195276, 34.6852475115482], [-77.35960811156279, 34.68513426252101], [-77.35932251014351, 34.68510179512748], [-77.35931377061674, 34.685103090234485], [-77.35895857289447, 34.6853100103293], [-77.35887562178898, 34.68535292165693], [-77.35817965444782, 34.68593149557567], [-77.35812453703366, 34.685963583837605], [-77.35808899181943, 34.68600576405365], [-77.35790127615749, 34.6861957666492], [-77.35750397892066, 34.686573502668686], [-77.35744880867865, 34.68664105181911], [-77.35732724701448, 34.687085162351266], [-77.35718571672824, 34.68729370139234], [-77.35666699451075, 34.68717584423393], [-77.35663485272953, 34.68717054073497], [-77.35662303071204, 34.68717015349517], [-77.35660507624445, 34.68716959666804], [-77.35633470612608, 34.687132431368006], [-77.35621870039483, 34.68714620826692], [-77.35617988526022, 34.68715028861615], [-77.35608048290993, 34.68725639510522], [-77.35609906348881, 34.68735927685443], [-77.35610264736286, 34.68738306829147], [-77.35623245144359, 34.687479216825466], [-77.35623312689223, 34.68747974393203], [-77.35623768437534, 34.68748216051346], [-77.35660445232003, 34.687234155830076], [-77.35666865311003, 34.68766300160963], [-77.35689720192116, 34.68775702937459], [-77.35703275323007, 34.68782067003713], [-77.35734261925892, 34.68805782241044], [-77.35742573630796, 34.688138640969456], [-77.35752703221006, 34.688179903609814], [-77.35777462355706, 34.68848587356131], [-77.3578667155586, 34.68858764523093], [-77.35775439821138, 34.68882665054162], [-77.35756805504573, 34.68900163126261], [-77.35757219444555, 34.68930337543002], [-77.3573025637533, 34.689810289165784], [-77.35782607581011, 34.68994096365319], [-77.35789021545938, 34.69086174333692], [-77.35686872619652, 34.69044777685279], [-77.35670404906053, 34.6902709496618], [-77.35662572599641, 34.69010582299462], [-77.35621559423959, 34.6898584794995], [-77.35623094543769, 34.68967265635291], [-77.3559533452061, 34.68947716059995], [-77.35581598226563, 34.68937763243585], [-77.35548692623037, 34.68928744914791], [-77.35545101042524, 34.6892643318132], [-77.35541657476415, 34.68926428855337], [-77.3553579540799, 34.689255305153466], [-77.35502887484725, 34.689195025511154], [-77.35485257438147, 34.68914522006858], [-77.35438297811277, 34.68902926832094], [-77.35429342237848, 34.68900945441182], [-77.35360218137811, 34.68954626374249], [-77.3535771462439, 34.68959143110116], [-77.35340924788916, 34.689993219983094], [-77.3533830005012, 34.69005758790295], [-77.35337622992677, 34.69006467311734], [-77.35306197648194, 34.690411268915376], [-77.35277246658788, 34.69063495595371], [-77.35226842039269, 34.690984325785934], [-77.35183624530737, 34.69128772280021], [-77.35142130635009, 34.69150990815719], [-77.35102954127314, 34.69184901824565], [-77.35069961997631, 34.6921466865215], [-77.35024975242737, 34.692628499730205], [-77.35003101670587, 34.6928305333967], [-77.34989253567491, 34.69297987427355], [-77.34945897962962, 34.69348155354731], [-77.34940939656386, 34.69353357878676], [-77.34940357802157, 34.69355087856953], [-77.34900239659905, 34.694076827521286], [-77.34926892583412, 34.694416171994675], [-77.34940034661889, 34.69450958295874], [-77.34949272132289, 34.69463814250469], [-77.34965165730264, 34.69468820932262], [-77.34967268086491, 34.694715889959966], [-77.3496132738411, 34.694939560373804], [-77.34963326944947, 34.69496499058542], [-77.34966253982506, 34.69505703214354], [-77.34955775527602, 34.69501157839161], [-77.34954572645489, 34.69499153921661], [-77.34949958633833, 34.69498334155028], [-77.34919902575378, 34.69486414576066], [-77.34903211017156, 34.69476029136543], [-77.34885064968171, 34.69473804040875], [-77.34849606730491, 34.69454481600869], [-77.34798676632113, 34.694848027992315], [-77.34775599495701, 34.6947920157082], [-77.34772571982273, 34.69473944932052], [-77.34731145224458, 34.69450137154141], [-77.34719566423729, 34.6944348280524], [-77.34703538813233, 34.694346820174204], [-77.34689898233256, 34.69426894361479], [-77.34680026143924, 34.69420033753071], [-77.34660623367584, 34.6941000316017], [-77.34635695368137, 34.69366557580051], [-77.34615016996474, 34.69366261451737], [-77.34573784409673, 34.6937361490079], [-77.34540807686744, 34.69383849214867], [-77.34506469290211, 34.6939927810157], [-77.34490139347781, 34.694027594608514], [-77.34475543043528, 34.69417234713111], [-77.34457431170063, 34.694375930443286], [-77.34439893722259, 34.69470864741341], [-77.34410794762145, 34.69523401034048], [-77.34410689423913, 34.69523610215141], [-77.34410670363756, 34.69523800812616], [-77.34389586874347, 34.69575243639483], [-77.34364327138704, 34.696103793320404], [-77.34310216870509, 34.6966274721331], [-77.34296356978133, 34.69677784348886], [-77.34289874747972, 34.69686401657177], [-77.34266385128089, 34.6971334410498], [-77.34233171242168, 34.69749431833471], [-77.34214582169697, 34.69753200697272], [-77.34162574181806, 34.697588414269205], [-77.34102805689997, 34.69761517697186], [-77.34101963582387, 34.69761408284419], [-77.3410139643217, 34.69761451173965], [-77.34043982519147, 34.69773198854925], [-77.34037491996187, 34.69777264884395], [-77.3400166969163, 34.69799518488214], [-77.33960749174764, 34.6982903248295], [-77.33930585020269, 34.698641641837966], [-77.33878699064681, 34.699117156872525], [-77.33854512361509, 34.69924387799262], [-77.33831230603526, 34.69944274623987], [-77.33724205688281, 34.70031349616385], [-77.33697900086298, 34.70040876194818], [-77.33585800986958, 34.70095598097916], [-77.33496539129334, 34.701176880280414], [-77.33327770555631, 34.70159451846788], [-77.33271385335973, 34.701734044553405], [-77.33069205371874, 34.70240167466678], [-77.33064369472116, 34.70241764354435], [-77.33061641686612, 34.70242784086054], [-77.32860059806862, 34.702433840023446], [-77.32824900759579, 34.702417196747064], [-77.32771332197021, 34.702407181874364], [-77.32681393522182, 34.70223155480634], [-77.32607209535196, 34.70166756896485], [-77.32546312086228, 34.70120457946612], [-77.32476044561345, 34.700658056474296], [-77.32438261423077, 34.700377941215855], [-77.32424186711788, 34.700268694012536], [-77.32408976396341, 34.70024875683224], [-77.32367836835553, 34.69991387590182], [-77.32359839568652, 34.699879587234825], [-77.32325964800935, 34.69973434593598], [-77.32305910131012, 34.69967527206281], [-77.3229555179429, 34.69959878956507], [-77.32235489002372, 34.69935534708276], [-77.32202578271779, 34.69911095836576], [-77.32181497732321, 34.69898239078067], [-77.32162168124832, 34.69880684380363], [-77.32152781973652, 34.69876451638948], [-77.32138676484232, 34.6987117101352], [-77.32125851518924, 34.69866119569878], [-77.32119774236186, 34.69866890179275], [-77.32096247753182, 34.698649817510024], [-77.32063392843853, 34.69868246525721], [-77.32004354388266, 34.69876835538648], [-77.31971698672322, 34.69881525209357], [-77.31936814547521, 34.698836742264554], [-77.31872145851753, 34.69899690384217], [-77.31844675181931, 34.69906574782888], [-77.3181914135973, 34.69907000010478], [-77.31785413092962, 34.699044845547455], [-77.31759287031313, 34.699076634722466], [-77.31724386536243, 34.69908461216782], [-77.31671022730451, 34.69947976413291], [-77.31634761741834, 34.69998859536664], [-77.31621095832915, 34.70013929287241], [-77.31581376282114, 34.70057729116436], [-77.31552491438154, 34.700877906060335], [-77.31442787491514, 34.70083983174093], [-77.31434028527212, 34.70083387434949], [-77.31422381942768, 34.700795071413694], [-77.31280044295048, 34.700397361808], [-77.31220243720307, 34.699950217389954], [-77.31136070265083, 34.69992815114202], [-77.31100610654707, 34.69994643208223], [-77.3108500475977, 34.699307681953016], [-77.31057555483176, 34.69895563656377], [-77.31054516856886, 34.69867259134077], [-77.31051365148812, 34.698379030948416], [-77.31049120334522, 34.69823239193622], [-77.3104327319893, 34.69780114974429], [-77.31039612245019, 34.697517398993064], [-77.31038432931189, 34.697422022588086], [-77.31003978316465, 34.697093842591656], [-77.30990329247953, 34.69710823404722], [-77.30944459318303, 34.6970817743304], [-77.30892132018721, 34.69723196337806], [-77.30868100903379, 34.6972599316945], [-77.30817834207987, 34.69731843347645], [-77.3076487130608, 34.697380070345986], [-77.30747318369468, 34.69740049725235], [-77.30706928392526, 34.69701474836924], [-77.30693293728693, 34.69702778520053], [-77.30700987509344, 34.6968132786134], [-77.30730883279426, 34.69619136144867], [-77.30745078559298, 34.69592728646009], [-77.30751043953714, 34.69586610484959], [-77.30779423529697, 34.695593417481575], [-77.30806280838581, 34.69565761306558], [-77.30853126722997, 34.69560874472475], [-77.30867474115209, 34.69561209808554], [-77.30877178350713, 34.69561396150055], [-77.30925971036845, 34.695626588474575], [-77.30926879384128, 34.695628042810284], [-77.30927195323173, 34.69562731052168], [-77.30970187200668, 34.69568691521107], [-77.30983589398836, 34.69573663698646], [-77.31027088954531, 34.69587498719833], [-77.31040869293649, 34.695931535059806], [-77.31090955954649, 34.69616193843508], [-77.31105410741415, 34.696223369031905], [-77.31141663200016, 34.69630593734553], [-77.31144806790347, 34.696314499576324], [-77.31146126709399, 34.69632346380653], [-77.31180297219728, 34.69643565808222], [-77.31199200228947, 34.69655709138669], [-77.31250919313368, 34.696583597567134], [-77.31257814617567, 34.69660023409203], [-77.31261148231033, 34.69660208332044], [-77.31266765436347, 34.696621964873074], [-77.31312620550875, 34.69677431212008], [-77.3132527270939, 34.69689712071799], [-77.31353902942169, 34.696989978366545], [-77.31395397482751, 34.69714601939752], [-77.31418242295803, 34.69725967531094], [-77.31426526963745, 34.697300712029474], [-77.31445651485919, 34.69735167300716], [-77.31463963038863, 34.697406907730155], [-77.31473453397857, 34.69741984065483], [-77.31490474770347, 34.69743162777643], [-77.31535106707952, 34.69735849934979], [-77.31575642899764, 34.6971736125724], [-77.31571302994674, 34.696975562302725], [-77.31568474468278, 34.69684648102794], [-77.31561678435044, 34.6967053801358], [-77.31561487589128, 34.69665697285537], [-77.31582689252917, 34.69633404674628], [-77.31608188259345, 34.69629785074957], [-77.31626993664338, 34.69625754561848], [-77.316457653055, 34.696255050904064], [-77.31665336980404, 34.696252449557726], [-77.31685762780421, 34.696295340383884], [-77.31707550163631, 34.696321899398015], [-77.3174661736738, 34.69626141916651], [-77.31765275088311, 34.69627206303798], [-77.31776320229697, 34.69626936906802], [-77.317936191138, 34.696289557492385], [-77.3180527101697, 34.69630318057557], [-77.3181149110141, 34.696310728232454], [-77.31829837752838, 34.69633801462741], [-77.31853470749745, 34.69638197131246], [-77.31862024200018, 34.69641029645792], [-77.31891370885316, 34.69648458470861], [-77.31918520807537, 34.69652623794262], [-77.31969715117415, 34.69657455776797], [-77.31976833207192, 34.696579734847504], [-77.31982814489177, 34.69656950915052], [-77.32010143717378, 34.69657833383873], [-77.32033068634424, 34.696577112868496], [-77.32036525096184, 34.69658578689554], [-77.32097313015464, 34.69647712020246], [-77.32102235187276, 34.69647301280386], [-77.32159262258483, 34.696482542420895], [-77.32197781445281, 34.6964926195448], [-77.32219001245898, 34.69648696389569], [-77.32264044314823, 34.69663123901569], [-77.32273956553223, 34.696655918712935], [-77.32276783071951, 34.69667321268716], [-77.32279776095992, 34.69669621394306], [-77.32325400643715, 34.69708748508164], [-77.3236824086496, 34.69753134168211], [-77.32369999215332, 34.69753266943136], [-77.324825003199, 34.69729185072715], [-77.32494918163182, 34.69729255661546], [-77.32505906076673, 34.69727559287445], [-77.32526964779512, 34.69721987570521], [-77.3253920415643, 34.69721654022487], [-77.32542067360109, 34.69721520686525], [-77.32545997526017, 34.69721654762002], [-77.32556850987918, 34.697221509396485], [-77.32563767026804, 34.697224670991446], [-77.32572972134182, 34.697269103921315], [-77.32588818795476, 34.697426092933256], [-77.32605060311722, 34.69762255087562], [-77.32612296607147, 34.6977025697662], [-77.32628659234838, 34.69790787382533], [-77.32652249580431, 34.69805869751032], [-77.32656471418528, 34.69808806711383], [-77.32681443901832, 34.6980951547157], [-77.32704885450545, 34.69810980134491], [-77.32710105434515, 34.69812791063555], [-77.32718206580815, 34.698105378764616], [-77.32745769582087, 34.698006977567374], [-77.32776490632457, 34.69790369051983], [-77.32823383585773, 34.69776125268006], [-77.32842168155072, 34.697703800432585], [-77.32886661171928, 34.69749987346698], [-77.32911238030542, 34.6973871818544], [-77.32920308454493, 34.69734394407704], [-77.32930486966666, 34.69716277350148], [-77.32951673802317, 34.696749962313696], [-77.3296063899071, 34.69653673155134], [-77.32964702839715, 34.69646078244745], [-77.32988927805377, 34.696319133718454], [-77.33005035950053, 34.69621973356408], [-77.3300909281642, 34.69621601683677], [-77.33067487939519, 34.696108959893486], [-77.3306813270085, 34.69610856482704], [-77.33068803168058, 34.69610711667348], [-77.3313981511105, 34.695701960708675], [-77.33154788430113, 34.695592804081386], [-77.33160046933416, 34.69548952050787], [-77.33169314173941, 34.69532568219581], [-77.33197138572322, 34.69495128862118], [-77.33210153884615, 34.69480695775006], [-77.33216134744382, 34.69468155487305], [-77.33220358771376, 34.69453890016746], [-77.33223655726613, 34.69442755580863], [-77.33251579992616, 34.693916059161246], [-77.33253214909757, 34.693912000919724], [-77.33327978030607, 34.69334707323657], [-77.3333477300811, 34.69330043523215], [-77.33367500662698, 34.69237186577565], [-77.33378282200849, 34.692266021992225], [-77.33492510773786, 34.69180505407735], [-77.33508255821752, 34.69208776593141], [-77.33532838707768, 34.69252916445629], [-77.3353637275358, 34.69259261884813], [-77.3355869044822, 34.69299333935855], [-77.33561355872764, 34.69309804746586], [-77.335743575118, 34.69310866519225], [-77.33587209985147, 34.693441596009485], [-77.3360134010228, 34.693578716117074], [-77.33620905071045, 34.693566934224776], [-77.33637196655428, 34.69361672116523], [-77.33641779946693, 34.69366174185377], [-77.33648171861142, 34.693658645507334], [-77.33659680802958, 34.693686067986185], [-77.33662832892134, 34.69369684566966], [-77.33674769636009, 34.6937733840249], [-77.33677140494481, 34.69378384307919], [-77.3368059941962, 34.69380087498962], [-77.33723544866189, 34.69415500707641], [-77.33727316321962, 34.69418610669526], [-77.33772338967557, 34.69453599329945], [-77.3378363166716, 34.69454113780462], [-77.33805431256862, 34.69460438970976], [-77.33854065110611, 34.69478755241592], [-77.33881942776478, 34.69488442324595], [-77.33925468658026, 34.695026503454066], [-77.3393671660564, 34.69505961492097], [-77.33954617044496, 34.69502455272011], [-77.3395814700667, 34.694882267720516], [-77.33957570858232, 34.69477952210842], [-77.33968971230614, 34.69451346714706], [-77.33975045407166, 34.694371709386715], [-77.33986116072768, 34.694027126174475], [-77.33987332810395, 34.69386747656694], [-77.33988018958269, 34.69375696120768], [-77.33991663959155, 34.69343795897995], [-77.33992315733171, 34.693373264926144], [-77.33995060473566, 34.693308633795404], [-77.34008193191805, 34.69294616250639], [-77.34020014587172, 34.692847887604955], [-77.34066530578416, 34.69236459477898], [-77.3407439274545, 34.692285905862065], [-77.34075564527102, 34.692266823618745], [-77.34078653580839, 34.692234369103865], [-77.34144563818232, 34.69160192539366], [-77.34202309071671, 34.691135641496246], [-77.34217385653024, 34.69097092730536], [-77.34242871725623, 34.690702515477795], [-77.34249382139635, 34.69061628938618], [-77.34307710688482, 34.69050888661337], [-77.34308343667477, 34.690509298313316], [-77.34309418431766, 34.690510273493636], [-77.34336874203463, 34.69055747251865], [-77.34350687954705, 34.69057235724407], [-77.34352365499218, 34.69057190068782], [-77.34369689046281, 34.69045814139463], [-77.34373068664702, 34.69043629937985], [-77.34373513731934, 34.69041333694081], [-77.34373991868227, 34.69039304200158], [-77.34379500456913, 34.69016143248417], [-77.34383369098818, 34.68998714282991], [-77.34384729408603, 34.68991625570684], [-77.34384734127099, 34.68991056131646], [-77.34384421208846, 34.6898986236734], [-77.34371488224053, 34.68944136019431], [-77.34364217318846, 34.68928576112362], [-77.34350879028318, 34.68898226272785], [-77.34331754876877, 34.688747224836845], [-77.34313718330282, 34.68826338269922], [-77.34293450778215, 34.68825363885624], [-77.34282150738366, 34.68810182046135], [-77.34244971350691, 34.68783835533537], [-77.34210739069827, 34.68768716909756], [-77.34157578214376, 34.68772249166304], [-77.34027853234059, 34.68747599296836], [-77.33995436989309, 34.687393468177405], [-77.33980913132083, 34.687356492306975], [-77.33950843072037, 34.6873307193668], [-77.33848333059018, 34.68694872785896], [-77.337625176322, 34.68663236882077], [-77.33721651745942, 34.686346848562806], [-77.33658691224998, 34.68608547027737], [-77.33655674687023, 34.68606620005443], [-77.33654175195153, 34.68603913730268], [-77.33609536494376, 34.68571708451586], [-77.3360399171259, 34.68567556849602], [-77.33598696045225, 34.68562786442146], [-77.33561901258352, 34.68529641206507], [-77.33547608283513, 34.68532110180688], [-77.3347728476952, 34.685307022062304], [-77.33483446177257, 34.68502647998058], [-77.33558532607026, 34.68422083379136], [-77.33586993387459, 34.68410403080184], [-77.33600612535565, 34.683963991607996], [-77.33629734146612, 34.68363579381182], [-77.33632924156278, 34.683482276635836], [-77.33639880465836, 34.68329628764947], [-77.33646258679252, 34.68312575266716], [-77.3365919005781, 34.682977855220834], [-77.33668178947549, 34.68290886949929], [-77.33690878867513, 34.68291723294003], [-77.3373174864796, 34.682834260657195], [-77.33754224752926, 34.6827970728016], [-77.33793064404504, 34.682644249729506], [-77.33884463244722, 34.682434628575905], [-77.33938424024115, 34.68231406765171], [-77.33948416367815, 34.682293533277424], [-77.33956823958692, 34.68227682379654], [-77.34021096287918, 34.681851986302014], [-77.34046356509792, 34.681794087953314], [-77.34087892322401, 34.68195223854557], [-77.34101479442892, 34.68201383518546], [-77.34132388227384, 34.682141728243984], [-77.34153198946777, 34.68223801320416], [-77.34195975289492, 34.68237154462167], [-77.34219243361996, 34.68251811084353], [-77.3424054784551, 34.68253932934029], [-77.34262059861557, 34.682582792218575], [-77.34268903444476, 34.6825934339747], [-77.34294431029583, 34.682723816089805], [-77.3429458532399, 34.68272666316846], [-77.34294910435247, 34.68272840324447], [-77.34331836703758, 34.68315986113274], [-77.3433372720622, 34.68321377985296], [-77.34340569013416, 34.683217173651684], [-77.3438013428318, 34.68358095796818], [-77.34383818984095, 34.68361663768263], [-77.34387904788161, 34.683648212268224], [-77.34408146372081, 34.683786204044864], [-77.34410516511885, 34.68380535719875], [-77.34434813141154, 34.68399329575891], [-77.34435267895876, 34.68400905310304], [-77.34436270632334, 34.684043797617456], [-77.34448962894658, 34.6844612546473], [-77.34454122671309, 34.684652291468], [-77.34463711246762, 34.68485668578806], [-77.34466761820983, 34.684924205984565], [-77.34467293656392, 34.68494510361944], [-77.3446862276635, 34.68499079545293], [-77.34476402484349, 34.68526917442904], [-77.3448812590899, 34.685711499591804], [-77.34489589694911, 34.685867633108415], [-77.3449212087638, 34.68593655261972], [-77.34499609760667, 34.685984824164755], [-77.34520793032333, 34.68600115501235], [-77.34554536231201, 34.68615456613339], [-77.34560962877302, 34.68619513342847], [-77.34584144496154, 34.686225238520656], [-77.34611147097898, 34.68626631092475], [-77.34621158683613, 34.686252748344174], [-77.34667599710028, 34.68616286537797], [-77.34674163474553, 34.68615748185435], [-77.34680701066786, 34.686142369069685], [-77.34726007009168, 34.686107565569], [-77.34734677700592, 34.686134807934266], [-77.34761987671831, 34.68622484827522], [-77.34792782144183, 34.68619511553881], [-77.34807460841795, 34.686269081947216], [-77.34819386234419, 34.686309577586925], [-77.34830543995756, 34.68637440757013], [-77.3483759790785, 34.68643133572013], [-77.34840881351161, 34.686599983154316], [-77.3484095577126, 34.68660380557894], [-77.34843681701386, 34.686778696197365], [-77.34844996695998, 34.68684194878787], [-77.34846732317266, 34.68697614978973], [-77.34848795857258, 34.68713351932919], [-77.34850965482622, 34.68732113574514], [-77.34855429890479, 34.687476646242146], [-77.3485678918463, 34.687556832120634], [-77.34868742619275, 34.68770182042937], [-77.34873932064933, 34.68772844095206], [-77.34896487045812, 34.687746027811436], [-77.3489724124074, 34.68775105613357], [-77.34897674198147, 34.687746953469876], [-77.34927994219255, 34.687706577070934], [-77.34928441008284, 34.68770726806034], [-77.3492894315083, 34.68770503338065], [-77.34931440727604, 34.68769804434681], [-77.34982910897686, 34.68754521014233], [-77.34993564242774, 34.68752588198778], [-77.35008822089026, 34.68745578844704], [-77.35011045168199, 34.687439201381785], [-77.35021077883867, 34.687331297422304], [-77.35023857269834, 34.6872699422491], [-77.35035256534846, 34.68707819489923], [-77.35035515706757, 34.687067785228706], [-77.35042129241423, 34.68688401903628], [-77.35044724462064, 34.68681665776577], [-77.35044785594366, 34.68681136780035], [-77.3504607891302, 34.686797812720705], [-77.35068144466638, 34.68653560704462], [-77.35075267749455, 34.68644916116725], [-77.35093127924544, 34.686158308420765], [-77.35101051506936, 34.686039469442996], [-77.35104974414611, 34.68599765994092], [-77.35129297652972, 34.685763162795], [-77.35105077727536, 34.685746732859656], [-77.35102158625804, 34.685183652630755], [-77.35088326023836, 34.68504575167243], [-77.35042950923375, 34.68485095108187], [-77.35037548480267, 34.68462808473498], [-77.35039269400141, 34.68448509956481], [-77.35041723292835, 34.68423689314622], [-77.35039723632144, 34.68413771669786], [-77.35046804106125, 34.68403292390355], [-77.3506768831692, 34.683190524790746], [-77.35073543640236, 34.68311651937784], [-77.35078921023755, 34.68299736840917], [-77.35087243958816, 34.6822379584083], [-77.35088901918873, 34.68213217726096], [-77.3508836510486, 34.682121405981], [-77.35081775307154, 34.68203884703011], [-77.35046804850003, 34.68166780121159], [-77.34995558421026, 34.68127441124596], [-77.34995522451837, 34.68127416874014], [-77.34995518910495, 34.68127414880451], [-77.34883479385945, 34.681010320390186], [-77.34841239405041, 34.68088479564979], [-77.34819812861049, 34.680540564183055], [-77.34858703402139, 34.680060949190505], [-77.34908751279339, 34.67944371057774], [-77.34940243380007, 34.67905531662048], [-77.34979137641069, 34.6785756272468], [-77.35134722846625, 34.678625998493175], [-77.35183567552563, 34.67892016643463], [-77.35211295436653, 34.67902831893613], [-77.3527634522531, 34.679112712815225], [-77.35296500820913, 34.67915324319796], [-77.35348845673427, 34.67932682229056], [-77.35350431375602, 34.67933085931996], [-77.3535099168162, 34.67933784653273], [-77.35384880125795, 34.67976472168651], [-77.35389049047413, 34.67982200823748], [-77.35394552850224, 34.679898964820914], [-77.35426711119769, 34.680320514810816], [-77.35457351614085, 34.68063996480816], [-77.3546868507551, 34.68078583466276], [-77.35477828220077, 34.68115378464741], [-77.35486569063286, 34.681436581026276], [-77.35493903224521, 34.68156453759768], [-77.3551796899585, 34.681832796243526], [-77.35530026749719, 34.681890485344525], [-77.35548006754297, 34.68197761907366], [-77.35550279760191, 34.68212879864396], [-77.35572558417546, 34.68201406959007], [-77.35634949475364, 34.681871280534516], [-77.35636659889309, 34.68186764615899], [-77.35637717569483, 34.68186159133337], [-77.35639444964175, 34.681852036994385], [-77.35684631791517, 34.681639253929156], [-77.3570490352665, 34.68157850294106], [-77.35737731393806, 34.68147334819327], [-77.35737849725865, 34.68147280130288], [-77.35737900706657, 34.68147267100619], [-77.35738126220468, 34.68147129473527], [-77.35761205544215, 34.681360734986605], [-77.35761752828844, 34.68128942798307], [-77.3576061304635, 34.68119822595665], [-77.35758338161179, 34.68101619483066], [-77.35766109024439, 34.68086168469158], [-77.35774666417038, 34.680691536280904], [-77.35785826955949, 34.68062164983313], [-77.35793597515774, 34.68058474464789], [-77.35857656416658, 34.680090153322666], [-77.35861941796685, 34.680019951265855], [-77.3587577732909, 34.67981535788612], [-77.35911803058336, 34.67918551606227], [-77.35938271357762, 34.67900463877969], [-77.35952384953976, 34.67890705272065], [-77.35963730774083, 34.67884697441398], [-77.35983498704931, 34.67869881393805], [-77.35991651560646, 34.67861693001379], [-77.35994568854588, 34.67851170663418], [-77.35995062631828, 34.67843923385098], [-77.35999544068825, 34.67827629709259], [-77.35983292469221, 34.678172925417], [-77.35971710707044, 34.67809634494915], [-77.35960253569041, 34.677999666124734], [-77.3594347038038, 34.67791952593778], [-77.35932340894622, 34.6778663819501], [-77.3591864126893, 34.677716447248315], [-77.35910075260904, 34.67760250287219], [-77.35908975579501, 34.67758272243024], [-77.35900045820138, 34.677465381600726], [-77.35890442922438, 34.67724789253009], [-77.35885069360266, 34.67718645730409], [-77.35880378083698, 34.67713462016384], [-77.35878398722025, 34.676974679335814], [-77.3589880195515, 34.67695986660464], [-77.35948634849572, 34.67695912210577], [-77.35960166792964, 34.67690756970065], [-77.35968411457426, 34.676939090644], [-77.35979692733417, 34.67699818619691], [-77.36005214397237, 34.67704998997212], [-77.36014528723034, 34.67709657910639], [-77.36077823424074, 34.67686337076759], [-77.36080831589169, 34.67685463415282], [-77.36081437307635, 34.67685324158908], [-77.36081996743566, 34.676853111804405], [-77.36089175489201, 34.67684777423049], [-77.36139244988246, 34.676806609634625], [-77.36142653882253, 34.67680603672505], [-77.36163708209068, 34.67701250234871], [-77.36182537569813, 34.67711804730963], [-77.36191831738054, 34.67717369799304], [-77.36193005022027, 34.67718118380253], [-77.36195626542455, 34.677188906074676], [-77.36218997744484, 34.677268722829936], [-77.36241887533987, 34.67719908204644], [-77.36251498390098, 34.677179905953814], [-77.36258773041574, 34.67715565628402], [-77.36275349439347, 34.67707936563151], [-77.36303657577241, 34.676915342855864], [-77.36322033587939, 34.6768115451809], [-77.36347956489661, 34.676669838946154], [-77.36357658294651, 34.676615048416906], [-77.36371859771789, 34.676562634533774], [-77.36375083520204, 34.67656786548817], [-77.36376686533757, 34.67660542219403], [-77.36373047791751, 34.676701425028305], [-77.36372711926138, 34.67688928787664], [-77.36374605091791, 34.67694297999979], [-77.36374699472414, 34.67696505339355], [-77.36376896281138, 34.67698330243492], [-77.36395871570714, 34.67740114632967], [-77.36407524343363, 34.677500802465865], [-77.36418214224554, 34.67762188014501], [-77.3642728377969, 34.67774290984072], [-77.3643265753157, 34.677837986628916], [-77.36440007103946, 34.6780391867615], [-77.36457308600507, 34.67829150211726], [-77.36457766917214, 34.67829669167873], [-77.36458305268465, 34.67830276493794], [-77.3647988101511, 34.67852067235668], [-77.3650211829856, 34.678717314781736], [-77.36503370206599, 34.67873406682813], [-77.3650507995887, 34.67875331613815], [-77.36514670317035, 34.67884418634089], [-77.36521856111685, 34.67884955350711], [-77.36532666179323, 34.678833879689925], [-77.36539830190054, 34.67884760007533], [-77.36562143760943, 34.67884925556813], [-77.36577506694806, 34.6789517670158], [-77.36612090167688, 34.67901120928989], [-77.36617128027356, 34.67901687320831], [-77.36619793342055, 34.67902044003989], [-77.36642863507035, 34.67901128300241], [-77.36647237059451, 34.67901048540861], [-77.3665056948768, 34.6790006924105], [-77.36673029224814, 34.6789131896489], [-77.36682573093725, 34.67882393102789], [-77.36713950703839, 34.678637735974434], [-77.36756251954398, 34.67834715903068], [-77.36795999262164, 34.67845227497513], [-77.36814667835387, 34.6783964809626], [-77.36832437682496, 34.67841163506873], [-77.36883231222937, 34.67809599927306], [-77.36923315842829, 34.678260498205915], [-77.36920864965887, 34.67862918319367], [-77.3692504687155, 34.67864142165137], [-77.36926998697543, 34.678650272390854], [-77.36981455868752, 34.67860134501543], [-77.36987303534073, 34.678634474887126], [-77.37007330045876, 34.678796375733285], [-77.37022782527957, 34.678822432009206], [-77.37051882360983, 34.67847133281609], [-77.37056302686936, 34.67844300652163], [-77.37053558285263, 34.678413557101294], [-77.37029619136419, 34.67823050063498], [-77.37006791562831, 34.677962659512986], [-77.36991126339049, 34.677738379083934], [-77.36991273056822, 34.67755761274691], [-77.36974104859627, 34.67708093069536], [-77.36941292966917, 34.676651531064614], [-77.36933545369699, 34.6766047325573], [-77.3692668360594, 34.676598109664624], [-77.36916499133093, 34.676604078571806], [-77.36841640601995, 34.67652387191241], [-77.36811221594243, 34.676452347852326], [-77.36801481934883, 34.676438831990886], [-77.36767418932145, 34.676558985431086], [-77.36744957502725, 34.676673602065904], [-77.36707096885823, 34.6767713024159], [-77.36681042178779, 34.67681388109011], [-77.3664462128903, 34.67657191089942], [-77.36634539524724, 34.67654146497365], [-77.36629102455467, 34.67654137451596], [-77.36613253127844, 34.67646879265094], [-77.36575173565438, 34.67633743676397], [-77.36565468175567, 34.67628478490653], [-77.36567019774168, 34.67619117018558], [-77.36555641767458, 34.675966204014415], [-77.36554899380192, 34.67595152536786], [-77.3654212981278, 34.67573798561244], [-77.36543191055631, 34.67566782703993], [-77.36535937279744, 34.67562710010564], [-77.36519360639315, 34.675281885996704], [-77.36511099181688, 34.675126437739166], [-77.36506134631338, 34.6748810601587], [-77.36504696640989, 34.67481464809689], [-77.36503560350378, 34.67479024565935], [-77.36500943950156, 34.67477054441199], [-77.36487999135421, 34.67451582003741], [-77.36476396017494, 34.674366149636676], [-77.36468305719961, 34.67427320996765], [-77.36458938844792, 34.67415568466065], [-77.3645823737888, 34.67414740920586], [-77.36448278682532, 34.6740331690955], [-77.36439266361037, 34.67392978419563], [-77.36426499947271, 34.67380661546556], [-77.36412914135869, 34.67367938338779], [-77.36404067450252, 34.67358509576027], [-77.363952656638, 34.67350286045109], [-77.36392501142863, 34.67347703155543], [-77.36389543661458, 34.673453582596025], [-77.36379534330665, 34.67337974957368], [-77.36365156332377, 34.673262830701496], [-77.36346868440236, 34.67323701819201], [-77.3633904335233, 34.673092729194934], [-77.3632797660855, 34.67298824061968], [-77.36316332204302, 34.67288304292562], [-77.36303857376986, 34.67277970897031], [-77.36288463463815, 34.67267484291477], [-77.36276308359191, 34.67259758398072], [-77.3626656785889, 34.67253567203947], [-77.36250145345957, 34.67240478830522], [-77.36242047265247, 34.67234953020343], [-77.36231546515842, 34.67226566284563], [-77.36224371316564, 34.672208998144065], [-77.36217498265044, 34.672164369738184], [-77.36195355082523, 34.672038170190554], [-77.36173428689132, 34.67193158478591], [-77.36165412287505, 34.6718970332694], [-77.36163128151561, 34.67189206142106], [-77.36157557987568, 34.67187993680962], [-77.36123209462409, 34.67180517053518], [-77.36110104395107, 34.67174073810808], [-77.36091896084399, 34.67165202801785], [-77.36056850420499, 34.67153091746095], [-77.36056582179485, 34.67152968522062], [-77.36056406311117, 34.671528972520534], [-77.36055871055699, 34.67152757289989], [-77.36018383778386, 34.67142954855913], [-77.3600158674347, 34.67135585884101], [-77.35983964185715, 34.67130031856462], [-77.35962023318405, 34.67117381118044], [-77.35954716647122, 34.67113127235946], [-77.35949222762504, 34.67109813244226], [-77.35926401975544, 34.67095504197213], [-77.35898592570487, 34.67078067009929], [-77.35897538729724, 34.67077501466831], [-77.35867955797738, 34.67061657163917], [-77.35849179622899, 34.670421273691964], [-77.35840099736528, 34.670366535902346], [-77.35830806415998, 34.67011414647831], [-77.35835376036954, 34.66988563812215], [-77.35850244399447, 34.669704460934064], [-77.35855344465487, 34.6695310258893], [-77.35853500662175, 34.66937335257775], [-77.35853261675405, 34.66924957311143], [-77.35854221365088, 34.66914546053234], [-77.35849338961832, 34.669135376342275], [-77.35829030623198, 34.669053509553194], [-77.35803241338688, 34.669143728724116], [-77.35791290650712, 34.669181747690914], [-77.35762294019753, 34.669291088636726], [-77.35732791243169, 34.6692918849977], [-77.35727594793664, 34.66861697728445], [-77.35726338444634, 34.66857326597044], [-77.35726620859653, 34.66855097412883], [-77.35735371315803, 34.66815678925195], [-77.357372234567, 34.66807092714605], [-77.35738180327172, 34.66805999830296], [-77.35774915083006, 34.66776006104521], [-77.3577697369297, 34.66775425886129], [-77.35812019478404, 34.667480790959075], [-77.35812754742076, 34.66745733178267], [-77.35810261736641, 34.66711862906973], [-77.35802081583722, 34.66700705619196], [-77.35806791886836, 34.66676621597611], [-77.35806033247803, 34.66651424082086], [-77.35806880775326, 34.66635623743278], [-77.35813578405444, 34.66601648874706], [-77.3581444633111, 34.66555759965999], [-77.35814311669758, 34.66552809485586], [-77.35814136148208, 34.66551196000937], [-77.35814568529273, 34.66542777701005], [-77.35813619654066, 34.66504165853168], [-77.35817309506116, 34.664944743276266], [-77.35814942462497, 34.66471733183531], [-77.35814445915105, 34.66455313645222], [-77.35811959759513, 34.66434608609163], [-77.35812804625843, 34.66426655365632], [-77.35814944945739, 34.66406506435982], [-77.35813086740407, 34.66394319932217], [-77.35807787369438, 34.66359943561998], [-77.35807713702745, 34.663590357682345], [-77.3580701398164, 34.663588573212266], [-77.35759086620686, 34.663410009751765], [-77.35739915457208, 34.66337893872817], [-77.35710346034097, 34.66334159787482], [-77.35703635035142, 34.66335955893909], [-77.35699508006925, 34.6632404740065], [-77.35695271280296, 34.662898071250055], [-77.35711982741766, 34.662689759308954], [-77.35723033006485, 34.66253993678292], [-77.35730282413905, 34.66242797071061], [-77.35732807057735, 34.662216952276275], [-77.35733785212403, 34.66200115361097], [-77.35728428688532, 34.66171996808376], [-77.35703235253845, 34.661556026757445], [-77.35687464786585, 34.661382630276194], [-77.35671264260915, 34.66124303193154], [-77.35645760632605, 34.661059955435775], [-77.35625753465226, 34.660888138594174], [-77.35604717753723, 34.660724189953655], [-77.35579687464624, 34.66052482109821], [-77.35564275603248, 34.66037653211652], [-77.35551212718012, 34.66036636618108], [-77.35532216672648, 34.660345273647366], [-77.35442397308412, 34.660493027644954], [-77.35421597642916, 34.6602903209662], [-77.3535839444854, 34.66005754639253], [-77.3535265742064, 34.660046854927955], [-77.35348880580045, 34.66004788914414], [-77.35292851499462, 34.66025745207707], [-77.3527498392203, 34.660362710205156], [-77.3526400505485, 34.66041527973881], [-77.3525889232065, 34.66046332026748], [-77.35249097996696, 34.66055688677834], [-77.35236824803857, 34.6606559439006], [-77.35221163637381, 34.6605952507245], [-77.35226979498047, 34.660166495191405], [-77.35226983730496, 34.6601655593067], [-77.35226984876472, 34.66016525385717], [-77.35226970070958, 34.66016500280679], [-77.35226902654344, 34.660162674937226], [-77.35203617061241, 34.659353341318734], [-77.351722743946, 34.658951168511756], [-77.35132005549264, 34.65862864447622], [-77.35085938183921, 34.65836388681818], [-77.35054594096488, 34.65786998447423], [-77.35013301767563, 34.65750535601694], [-77.34976659037733, 34.65727296863808], [-77.34967894947127, 34.65725606257946], [-77.34924669467372, 34.65734430235689], [-77.34914273964301, 34.65735525286716], [-77.34904476256335, 34.65736341042904], [-77.34853666766128, 34.65752595031316], [-77.34832407304626, 34.65764202665206], [-77.34821067765593, 34.6577117717996], [-77.34794164659009, 34.657751615728294], [-77.34789662728996, 34.657752265624495], [-77.34773112421875, 34.65766770980051], [-77.34759008449383, 34.65759565185121], [-77.34751128697458, 34.65752881336991], [-77.34741076217554, 34.65745647907521], [-77.34740469257221, 34.6574527839799], [-77.34740077725642, 34.657450400378856], [-77.34729379643821, 34.65738527168597], [-77.34720697360393, 34.657282782609784], [-77.34686863672798, 34.657126437098015], [-77.34684626570541, 34.65712303870892], [-77.34679594814784, 34.65705859564528], [-77.34660786891992, 34.656722712351865], [-77.3466052888128, 34.656451853571255], [-77.34655006860584, 34.656161915909735], [-77.3465247642335, 34.65589012290133], [-77.34659418233768, 34.65582759993765], [-77.3466660186109, 34.65575746766095], [-77.34675971465047, 34.65569039063439], [-77.34689003157175, 34.65570653053701], [-77.34697045089732, 34.655728860385864], [-77.34727655153635, 34.65578690547387], [-77.34750301257482, 34.65582272048011], [-77.34755286374012, 34.65581816849036], [-77.34761395563235, 34.655820482935674], [-77.34787882208596, 34.65584684092217], [-77.3480695789512, 34.65584925066309], [-77.34821488709163, 34.655925770763155], [-77.34834000087614, 34.65583092199108], [-77.34851120242918, 34.65580702832504], [-77.3487063600367, 34.65573675136498], [-77.34881382480634, 34.655719652034755], [-77.34890008127715, 34.65568646373431], [-77.3490863448772, 34.65553840924745], [-77.34887252350171, 34.655407740046876], [-77.34871951957201, 34.65525068280241], [-77.3485203206794, 34.654956772067436], [-77.34835705405091, 34.654794547944384], [-77.34829416717733, 34.654727713042604], [-77.34813571244543, 34.65456997441796], [-77.34790342687828, 34.654376844439106], [-77.34769726973109, 34.65428977558193], [-77.34738716976578, 34.654083717385674], [-77.34726052593189, 34.65400621657928], [-77.34717040886014, 34.65391608666911], [-77.3466964910566, 34.65333454713103], [-77.34653591398279, 34.653144343615736], [-77.34633840718412, 34.652962963004526], [-77.34633788165999, 34.6529623003576], [-77.3463371414189, 34.65296188494186], [-77.34611427894444, 34.65283088549221], [-77.34571114390413, 34.652625829613086], [-77.34565107917783, 34.65259972790877], [-77.34562285245339, 34.652588952845534], [-77.34555108105458, 34.65256069620049], [-77.3451640029483, 34.652415845943246], [-77.34490986340957, 34.652227667644034], [-77.3447636197103, 34.652060323596075], [-77.34457503486756, 34.651937802341365], [-77.34454287627838, 34.651923255243034], [-77.34452705054115, 34.65191609634113], [-77.3444805557582, 34.65189506403966], [-77.34430683297757, 34.651816479140784], [-77.34417621039844, 34.65176355759817], [-77.34384280392729, 34.651633375632166], [-77.34382876029238, 34.6516278769336], [-77.34382282068978, 34.651626540296796], [-77.34348166945975, 34.65149397466508], [-77.34334417469861, 34.65142597864672], [-77.34313895663801, 34.651290942994635], [-77.34312644336939, 34.65128295195184], [-77.34311730070516, 34.65127411355089], [-77.34292515839618, 34.65110736440251], [-77.34271049143696, 34.65084309327822], [-77.34254061989432, 34.6507204958064], [-77.34233807037292, 34.650583143772984], [-77.34232299283978, 34.65057726745749], [-77.34203529144013, 34.65059844192568], [-77.34202193932093, 34.650599205584705], [-77.34202110944875, 34.65059911221883], [-77.34202047836072, 34.650599532148085], [-77.34201623341521, 34.65060105784635], [-77.34150532236008, 34.65078587562701], [-77.34143556218199, 34.65087173448005], [-77.34084574579862, 34.65076171357123], [-77.3407887155166, 34.650744377107806], [-77.34061312620685, 34.64995300602332], [-77.34061256725276, 34.64994972365101], [-77.3406112684676, 34.64994754474268], [-77.34060908838335, 34.64994559562617], [-77.34043908400082, 34.64971435951453], [-77.34034115889546, 34.64969911811342], [-77.34030386494771, 34.64998205266664], [-77.34047682018691, 34.649968354688994], [-77.34060499144663, 34.64995997138533], [-77.34071599295727, 34.65071627807074], [-77.34074319389705, 34.650775788910835], [-77.34075605307014, 34.65080903897329], [-77.34074824021008, 34.651413624609354], [-77.340686678119, 34.65162753909408], [-77.34058598368938, 34.651929402870536], [-77.34063126523135, 34.65220420609059], [-77.34076862713947, 34.65233248216436], [-77.34081495941064, 34.6524146177351], [-77.34086009274296, 34.65244773235021], [-77.34103153396894, 34.65255993743675], [-77.34115404456132, 34.65265708172788], [-77.34145131996571, 34.652877036002025], [-77.34184705746071, 34.65315626338976], [-77.34187733233432, 34.65318181297744], [-77.34190145148702, 34.65318967941999], [-77.34194219279102, 34.653195389565184], [-77.34237416454357, 34.653346389340804], [-77.34257491734144, 34.653354373148694], [-77.34284747938793, 34.65344094299327], [-77.34289678056979, 34.65345992240943], [-77.34291641546822, 34.65346042053487], [-77.34294910040646, 34.653468050988764], [-77.34316478293971, 34.65350343535738], [-77.34327705860903, 34.65366170257924], [-77.34336234303532, 34.65368640875385], [-77.34345074424381, 34.65378013269364], [-77.34333916454571, 34.65397065794703], [-77.34320939876707, 34.65398920423212], [-77.34303558150836, 34.6540532441247], [-77.34292390019826, 34.65411175316877], [-77.34273801045423, 34.654165738770565], [-77.34247998535358, 34.65428506991282], [-77.34242717501873, 34.654315323715224], [-77.34213898683328, 34.654371433203096], [-77.34213184294524, 34.65437326610061], [-77.34184807982825, 34.65438788600305], [-77.34182237503344, 34.654389210325625], [-77.341796104804, 34.654393491254986], [-77.34150975632099, 34.65442685180157], [-77.34122882840474, 34.654465644404354], [-77.34117064480537, 34.65447689375355], [-77.34090281466533, 34.654593169453044], [-77.3406580015038, 34.6546656023759], [-77.34032111983893, 34.65488511362557], [-77.33996000165932, 34.65510324356798], [-77.33982751379203, 34.655224864735075], [-77.33975925075394, 34.65527572119529], [-77.33943480580837, 34.65572082235203], [-77.33925739317094, 34.65596495597122], [-77.33923460620002, 34.656005906535235], [-77.33916889538537, 34.65605580287057], [-77.33871774698017, 34.65646619676803], [-77.33844369494068, 34.65660212178982], [-77.33812358219286, 34.656696184112356], [-77.33790662844477, 34.656768043305235], [-77.33772029770458, 34.65681848032341], [-77.33751995300314, 34.656879089327575], [-77.33736197544823, 34.6569268807129], [-77.33704954487958, 34.656998113302095], [-77.33689932917761, 34.65697743370005], [-77.33649937459113, 34.65693906204406], [-77.33617654825814, 34.65656738928717], [-77.33590740453283, 34.65690357289128], [-77.33561537049658, 34.65696157463293], [-77.33509118264362, 34.657459304595385], [-77.33508102587824, 34.65746669347657], [-77.3350771119106, 34.65746985451425], [-77.33506619782798, 34.65747973183436], [-77.33453054159381, 34.65793679252557], [-77.33434731653874, 34.6581163267352], [-77.33399784358032, 34.65844625488445], [-77.3339933519446, 34.658450452468045], [-77.33399073879102, 34.658450740469554], [-77.33398379218693, 34.658455213595545], [-77.33352320763976, 34.65868157533199], [-77.33347018047044, 34.65903391073297], [-77.33323163896978, 34.658814734532456], [-77.33301470543412, 34.65887416306932], [-77.33308225883661, 34.65911037441119], [-77.33318477173906, 34.65920708045411], [-77.33337146601534, 34.659383199195986], [-77.33347919457786, 34.65947273475908], [-77.33360584662844, 34.65970915100639], [-77.33379754128107, 34.65999063707712], [-77.33387330187887, 34.660158344052526], [-77.3339207497344, 34.66038727903048], [-77.33373560914224, 34.66035499631876], [-77.3336310201253, 34.660320202957045], [-77.33341409752774, 34.660348494878804], [-77.33318813768035, 34.66037066665829], [-77.33309973920187, 34.66037759544424], [-77.33301056360463, 34.66040019986173], [-77.33279821623836, 34.66047058268158], [-77.33263743937597, 34.66052387190341], [-77.33251637829918, 34.660661552172655], [-77.33213404055485, 34.661240908962434], [-77.33213246023763, 34.66138706265275], [-77.33210429681465, 34.66179807655174], [-77.3320845086245, 34.6620096048214], [-77.33203497628766, 34.662098481821666], [-77.33197359543686, 34.662573368387726], [-77.33167941373591, 34.66287092443238], [-77.3313253022077, 34.66258742163312], [-77.33091623548323, 34.66225991409569], [-77.33090763746159, 34.662253105607995], [-77.33048898644373, 34.661946659778344], [-77.33015392021981, 34.66165312830054], [-77.33003961752681, 34.66152817106908], [-77.32976221231422, 34.66108914800108], [-77.32956035014058, 34.66074991747864], [-77.32925334353769, 34.66035796061098], [-77.32903492874244, 34.660232669835196], [-77.3285731454464, 34.66015984643738], [-77.32831129491223, 34.66048899490073], [-77.32805135672356, 34.6607504236667], [-77.32797053202816, 34.66083819126837], [-77.32786043661876, 34.660983037220774], [-77.3277905271689, 34.66133747257979], [-77.32762731839466, 34.66182770656653], [-77.32711714893831, 34.66204347907439], [-77.32698054276192, 34.66200224760261], [-77.32685382360056, 34.66179763167289], [-77.32659772913551, 34.661156184084604], [-77.32679461474284, 34.66087029973813], [-77.32690933647362, 34.66051476806851], [-77.32709219051644, 34.66024440352487], [-77.32719285171395, 34.66011212449109], [-77.32719687048473, 34.65968451926312], [-77.32724529333372, 34.65949374103586], [-77.3272645757277, 34.659376784981234], [-77.32718742305745, 34.65929733300184], [-77.32710505449253, 34.65922735252238], [-77.32681597682772, 34.65888456743209], [-77.3266413676036, 34.658929880908346], [-77.32641663050615, 34.65898820285821], [-77.32614837721205, 34.659057816890936], [-77.32608206324078, 34.65907502588364], [-77.32582073890443, 34.65920980795504], [-77.32562513702615, 34.65931575860958], [-77.32536096957224, 34.65946811735738], [-77.32523716175382, 34.65949275063219], [-77.32471988683275, 34.65958887496461], [-77.32456764797666, 34.65934774554278], [-77.32437235443672, 34.65948076712463], [-77.32364077242846, 34.65942861883825], [-77.32359785619448, 34.658757606091605], [-77.32374588034304, 34.65817128115354], [-77.32324389558772, 34.65709234150483], [-77.32406534701344, 34.65684621398514], [-77.3244700138487, 34.65690248346504], [-77.32487359166572, 34.65698932177066], [-77.32536714864617, 34.65695103296926], [-77.32593878536107, 34.65717705313761], [-77.3260476563522, 34.657150874955896], [-77.32615118862222, 34.65713750345649], [-77.32664623234663, 34.656942703255964], [-77.32710536921564, 34.657164150725684], [-77.32733271000957, 34.657172250627916], [-77.3276461822625, 34.65719865882253], [-77.32796696701317, 34.657141752677205], [-77.32877220585786, 34.65748207580462], [-77.3291851846454, 34.65763967497105], [-77.32943219480515, 34.658060134289656], [-77.32993396109126, 34.658453575254214], [-77.33029137589133, 34.658333651703785], [-77.33073557448026, 34.6581726406751], [-77.33121710730686, 34.65820998634193], [-77.33158147259815, 34.658203447829784], [-77.33159152253606, 34.65793938421334], [-77.3318814497804, 34.657816193081544], [-77.33193656780007, 34.65777546971628], [-77.33206442209983, 34.657681005436785], [-77.33230252856075, 34.65754199670205], [-77.33233092271621, 34.6571535769096], [-77.33234856331863, 34.656991557991994], [-77.33233590749352, 34.65690585250794], [-77.33223099021686, 34.65620344520574], [-77.33222343640493, 34.65616473667899], [-77.33222195644933, 34.65613216182611], [-77.33223527007394, 34.65607463374555], [-77.33232451517571, 34.65556060299208], [-77.33240660512304, 34.65529562528247], [-77.33237615327363, 34.65494150583275], [-77.33242770414202, 34.6548707386411], [-77.33258337632745, 34.65461977688564], [-77.33269688998011, 34.654573643115015], [-77.33275292479433, 34.65459650308361], [-77.33289211130928, 34.65475590300373], [-77.33293279080794, 34.65480145255284], [-77.33293585113623, 34.65480841946669], [-77.33294668988748, 34.654834473528666], [-77.33309739316155, 34.65520086543725], [-77.3331984737022, 34.6554365683819], [-77.33343854061087, 34.65568896202346], [-77.33355380666757, 34.65588123391077], [-77.33409453523653, 34.65587846820492], [-77.3341166275001, 34.65587667255568], [-77.33415725565565, 34.655834829970125], [-77.33447994268326, 34.65557097912765], [-77.33460242565579, 34.6551073096703], [-77.33462302034165, 34.655037261895785], [-77.33463513590937, 34.654989907883916], [-77.33467829183452, 34.654803565703446], [-77.33475153128555, 34.65448994662948], [-77.33486224026636, 34.65443947857845], [-77.3350958843954, 34.65437611767272], [-77.3352686129592, 34.65448100328683], [-77.33532712935336, 34.65466730076201], [-77.33537367639317, 34.65488858259066], [-77.33548207284849, 34.65517194986355], [-77.33571869854092, 34.65568523382214], [-77.33577755885949, 34.65607174601465], [-77.33613262587933, 34.656348802872124], [-77.33625486158866, 34.655893377712076], [-77.33663448943487, 34.655659467095994], [-77.33666312678848, 34.65560723032787], [-77.33668786725458, 34.655552258668244], [-77.33682459776361, 34.65509069252382], [-77.33697000587632, 34.65466955616872], [-77.33691088174639, 34.65384810305694], [-77.33691052270441, 34.65383636407575], [-77.3369125952211, 34.65383344397178], [-77.336909125823, 34.65383195863834], [-77.33690753370735, 34.6538314412576], [-77.336902561681, 34.653828932091564], [-77.33619799890971, 34.65348717619855], [-77.3360003839033, 34.65333469276587], [-77.33560127636127, 34.65328138698992], [-77.33551244471491, 34.65326223661156], [-77.3354646476648, 34.65324711689946], [-77.33526428027209, 34.653215615306436], [-77.33517990281157, 34.65320070064685], [-77.33515055929635, 34.653194251027166], [-77.33494051706751, 34.65313656903088], [-77.33484136971198, 34.65310934085649], [-77.33461990939098, 34.65303248711539], [-77.33444037416194, 34.65297854205101], [-77.33414889009866, 34.652849886267155], [-77.33396592991232, 34.65276965151478], [-77.33358538044047, 34.652601962244475], [-77.33332562667673, 34.65193939080167], [-77.33328185644766, 34.65182774314635], [-77.33297559018513, 34.65184162885589], [-77.33328898509463, 34.65175699376907], [-77.33332066735092, 34.65175092580818], [-77.33390560327426, 34.651638895811324], [-77.3344458688006, 34.65153541832833], [-77.33452221985465, 34.65152079476037], [-77.33460488289803, 34.65150496176025], [-77.33513883402492, 34.65140269071561], [-77.33530230939581, 34.65100041941982], [-77.33566717175849, 34.650845221583296], [-77.33576976902599, 34.650769557883606], [-77.33616055275441, 34.65072164301921], [-77.33613654634429, 34.650985963568964], [-77.3363863835473, 34.65123777752408], [-77.33648127197735, 34.651234804252546], [-77.33696657077107, 34.651219596686516], [-77.33702252103785, 34.651216853416344], [-77.33710613240466, 34.651145931961814], [-77.3374746359984, 34.65102663849736], [-77.33759074388988, 34.650857940681654], [-77.3378274141391, 34.6506887113436], [-77.33785624092877, 34.65058585935324], [-77.33798992668409, 34.65054448336558], [-77.33816327744164, 34.650520504784346], [-77.33873411022736, 34.65021937834402], [-77.33874326089112, 34.65022016451461], [-77.33874614078515, 34.65021186795731], [-77.33874864931632, 34.65020553044558], [-77.3387491151651, 34.65018967459223], [-77.33891117795568, 34.64969867917891], [-77.33876916626528, 34.64935872282674], [-77.33870955852959, 34.64911990894039], [-77.33866732553378, 34.6489507029222], [-77.338596195478, 34.648770291175296], [-77.33849056010791, 34.64863874459471], [-77.3384269429549, 34.64856169565463], [-77.33866365686572, 34.64823074444748], [-77.33874814899796, 34.64821196137751], [-77.33886961829552, 34.64822901323671], [-77.33899426423963, 34.64828273465433], [-77.3391069697395, 34.64833317718065], [-77.33933808136013, 34.64840045847558], [-77.33943580663825, 34.64842324217135], [-77.33961175736354, 34.64848194973281], [-77.33967129220085, 34.6484653971766], [-77.3397493239233, 34.6484793655848], [-77.34000152282117, 34.64851550268254], [-77.34011367809369, 34.64848588299094], [-77.34020454043126, 34.64845651769765], [-77.3403034091865, 34.648424564833206], [-77.34038954482735, 34.648409791980555], [-77.3406296871454, 34.64825938597143], [-77.34082699112194, 34.64815091930612], [-77.34088187007644, 34.64811674935116], [-77.34106020700477, 34.64777829884382], [-77.34108736975982, 34.647726748997854], [-77.34110784115386, 34.647648082566015], [-77.34122176849883, 34.64733412623152], [-77.34124552805353, 34.64720715318223], [-77.34126484924097, 34.646906215895434], [-77.34126943151307, 34.64685908115612], [-77.34129534320091, 34.64658641592509], [-77.34130421098729, 34.6464788157957], [-77.3413583312141, 34.646172271409284], [-77.34138416345239, 34.64604584426093], [-77.34138551283196, 34.64600335235596], [-77.34140545353583, 34.64562092426847], [-77.34134094778206, 34.64529450616426], [-77.34133354553116, 34.64520879742929], [-77.34131795410227, 34.64510407571307], [-77.34122373844616, 34.64480187236378], [-77.34116918264243, 34.64476719560673], [-77.34105730309747, 34.644696082480635], [-77.34098566753576, 34.644650549352214], [-77.34097104547011, 34.64464277201839], [-77.34080677884958, 34.644556921526316], [-77.34050166845599, 34.64447898501082], [-77.34047717601086, 34.64447243114503], [-77.34046511224633, 34.64444983198575], [-77.34024418573034, 34.64409232862305], [-77.34017570487067, 34.643921180677665], [-77.339924344732, 34.6433519196599], [-77.33990541103796, 34.643308213548465], [-77.33989939320972, 34.643295658772324], [-77.33988816449875, 34.64327095434995], [-77.33962240547979, 34.64272041961554], [-77.33945825152321, 34.64251221187264], [-77.33926776913397, 34.6422744483171], [-77.33900962399, 34.64198609111364], [-77.33889756768451, 34.64185929910526], [-77.3384889184507, 34.641801255408694], [-77.33836856684624, 34.64175854118703], [-77.33832190432462, 34.64174993722224], [-77.33828365896315, 34.641772923291505], [-77.33822095103119, 34.64183803130151], [-77.33778617484853, 34.642270261379764], [-77.33760939625172, 34.6424779276264], [-77.33740395438696, 34.642520167625676], [-77.33715953129617, 34.64233810064664], [-77.33694651533011, 34.642277728006334], [-77.3364842210564, 34.64216369821185], [-77.3359083149304, 34.64222421124169], [-77.33585516465035, 34.64221952348481], [-77.3358155277213, 34.64222067780754], [-77.33528503968833, 34.64230954296957], [-77.33523379585569, 34.64231361995927], [-77.33517417451705, 34.642342317485785], [-77.3347825289348, 34.64250763281183], [-77.33466777389987, 34.642683246857345], [-77.33417504595738, 34.6432372039963], [-77.33415936710752, 34.64326036781477], [-77.3341458395798, 34.643272382754404], [-77.33409917511656, 34.643322356616096], [-77.33388424218806, 34.643563824854404], [-77.3337887184207, 34.64358158461543], [-77.33358460363871, 34.64366588870747], [-77.33320420565732, 34.643703109812634], [-77.33299604491232, 34.64392338606963], [-77.33166225674059, 34.643597941690324], [-77.33165032126969, 34.64359896131177], [-77.33163538178526, 34.643607606735685], [-77.33159861277642, 34.643590669749805], [-77.33071157074019, 34.643140406305804], [-77.33069620446699, 34.64269586001751], [-77.33045638628867, 34.642059387517364], [-77.33049921259308, 34.64184458172076], [-77.33058351032311, 34.64147509206198], [-77.33062366309731, 34.641293466105125], [-77.33065982629371, 34.641187496652], [-77.33058721772275, 34.641090852331075], [-77.33046416911463, 34.640880823625345], [-77.33006148696941, 34.64076849227685], [-77.3297690506639, 34.64060762194433], [-77.3296929873664, 34.64056516340023], [-77.32945369781304, 34.64063139801763], [-77.32933566417279, 34.64075802905551], [-77.32917529761795, 34.640839197086166], [-77.32895553668357, 34.640876976111485], [-77.32884101250791, 34.64096344043678], [-77.32859258113866, 34.64112575125342], [-77.32842365956688, 34.64124103754662], [-77.32830442740519, 34.64128499604441], [-77.32814674068715, 34.641329980173495], [-77.32800153073066, 34.64137081844326], [-77.32788104491347, 34.64140165822412], [-77.32739563227786, 34.64154195019089], [-77.32712899881278, 34.641671786965475], [-77.3268702245275, 34.641792390667405], [-77.32681068420607, 34.641817438345825], [-77.3267205453033, 34.64185712682884], [-77.32640705992051, 34.64202720907322], [-77.32623211125481, 34.642124697659334], [-77.32619140355294, 34.64215949212723], [-77.32595707586657, 34.64225449517134], [-77.32594240387905, 34.6422606362023], [-77.32593614142242, 34.64226180002975], [-77.32587450333233, 34.64226581867064], [-77.32563868106902, 34.64227663157908], [-77.3256189111082, 34.6422594984211], [-77.32542951185134, 34.642116730776564], [-77.32516152228283, 34.64194160077114], [-77.32487186931624, 34.64172761100658], [-77.32455508494053, 34.64155184943407], [-77.32447632082004, 34.64155882058767], [-77.32420860963619, 34.64161303358237], [-77.32393177068901, 34.641717625290056], [-77.32359603543328, 34.641750942936596], [-77.32329189210446, 34.64178740270094], [-77.32327420946503, 34.64179132220781], [-77.32297603961568, 34.6418518870427], [-77.32267313169132, 34.6418768968355], [-77.3223713285928, 34.64202898560584], [-77.32221426535148, 34.64211572849737], [-77.32208170559926, 34.6421809748555], [-77.32199455632549, 34.642244226215766], [-77.3219405618825, 34.642383242015484], [-77.32189824528845, 34.64248797272487], [-77.32194339948003, 34.64308684301993], [-77.32194708657957, 34.643200983985366], [-77.32195384614471, 34.64322539650823], [-77.32195938455807, 34.643245559418034], [-77.32200860082295, 34.64341167763021], [-77.32217290512574, 34.643970658104095], [-77.32219114598561, 34.64403683824626], [-77.32221920526612, 34.64412252039457], [-77.32206640252566, 34.64418140600602], [-77.32153961757764, 34.644265052691566], [-77.32144088884277, 34.64413969680295], [-77.32121249915338, 34.64384970740067], [-77.32114092759569, 34.64375883219174], [-77.32112820757551, 34.643742681356514], [-77.32110787936998, 34.64370903774052], [-77.32087601554736, 34.64337316196286], [-77.32096002549052, 34.64297238390098], [-77.3209645620854, 34.64295074153913], [-77.32097685621443, 34.64293735031855], [-77.3212233747731, 34.642689470643006], [-77.32131587623316, 34.64261145733671], [-77.32156512992297, 34.6424347131518], [-77.32128481922337, 34.64228518682944], [-77.32114180080694, 34.64228304087587], [-77.32083569551635, 34.642026320837445], [-77.32066558268598, 34.64200409548714], [-77.3204350796006, 34.6419518963988], [-77.32024615540162, 34.64204530791241], [-77.32008212278275, 34.64212655442426], [-77.31986518524184, 34.64230249801185], [-77.31933542788049, 34.64269982528314], [-77.31930706589182, 34.64271179873742], [-77.31929606274905, 34.64272719752072], [-77.31928293118489, 34.64274757507347], [-77.31902757271912, 34.643143842468284], [-77.31898465042157, 34.643210448787165], [-77.31882985800846, 34.6435243043326], [-77.3187971417929, 34.64359603697506], [-77.31876778590068, 34.643662161545144], [-77.31860911458224, 34.64401957254931], [-77.31858769117515, 34.644067829138706], [-77.31838863987974, 34.644516191664664], [-77.31829708352771, 34.644463821235426], [-77.3181805753163, 34.64498484845778], [-77.31797712788881, 34.64545847966128], [-77.3179496541788, 34.64551925064427], [-77.3178518096883, 34.64547565594983], [-77.31731964643737, 34.64439323105421], [-77.31715971581824, 34.643882571278255], [-77.31722498470617, 34.643462457293765], [-77.31722458442998, 34.643029710599265], [-77.31732816928503, 34.642422203020544], [-77.31734163212116, 34.642236549638554], [-77.31739563755781, 34.6421622947915], [-77.31780215152656, 34.641593581193504], [-77.317914340271, 34.6414366278241], [-77.31796007246908, 34.6412409584711], [-77.31823460588748, 34.64055805488843], [-77.3182806132136, 34.640443894681766], [-77.31834277224, 34.64034452956811], [-77.31848392905769, 34.63979455833093], [-77.31856022376576, 34.63947075025714], [-77.3185363793896, 34.639347946688744], [-77.31835323659642, 34.63890564793416], [-77.3180088215673, 34.63885516973349], [-77.3178804918781, 34.63879332517438], [-77.31783394239002, 34.63878566956608], [-77.31730435126752, 34.63886456464846], [-77.31726902533892, 34.63893668130337], [-77.31669119616947, 34.63895925311371], [-77.31663849144157, 34.6389850154006], [-77.31659314093685, 34.63894581670716], [-77.31638604858657, 34.638924786072955], [-77.3159540375433, 34.63876460111511], [-77.31545898255034, 34.639051844434306], [-77.31538846135102, 34.63907723673642], [-77.31537589849752, 34.63907408594705], [-77.31536747145933, 34.63907600137343], [-77.31475987944903, 34.639194773351484], [-77.31426314802978, 34.639360946630354], [-77.31417030045019, 34.63944726059523], [-77.3132091803765, 34.63971129867889], [-77.31317110677996, 34.64084937538632], [-77.31225364603203, 34.64064691300994], [-77.31047242421837, 34.640162799978675], [-77.31025454615586, 34.640012444750504], [-77.30993975378095, 34.63980812051248], [-77.30940761034277, 34.63709874116901], [-77.30935298682218, 34.63651265015798], [-77.30912145934744, 34.63589244702641], [-77.30898656837121, 34.63318700292351], [-77.30905253028672, 34.63308280143605], [-77.30941473778846, 34.630826481090466], [-77.30997222576542, 34.629676098278566], [-77.31048850753277, 34.629159766456986], [-77.31077478002757, 34.62890190646665], [-77.31135044087499, 34.62866591895802], [-77.31136540238562, 34.62865495256833], [-77.31137706282615, 34.6286550055047], [-77.31201994995635, 34.62872674302742], [-77.31245031533928, 34.62878439227465], [-77.3126886413435, 34.62886906215744], [-77.31295382470981, 34.62926754274217], [-77.31322659464867, 34.62954314192813], [-77.31349561629555, 34.62996689928683], [-77.3135401668685, 34.630031157008766], [-77.3135490264864, 34.63005253636475], [-77.3136369208075, 34.630432649957974], [-77.31363731179178, 34.63043982785157], [-77.31365265123532, 34.630781079277455], [-77.31361992996497, 34.63086419373596], [-77.31366147599493, 34.63097741346111], [-77.31381229942201, 34.63127965678387], [-77.31404262318685, 34.63165023368495], [-77.31441457930009, 34.631782072712454], [-77.31456415953994, 34.63183645930829], [-77.31489230226317, 34.631955769673596], [-77.3149043450384, 34.63196039988271], [-77.31494978659089, 34.631992917968645], [-77.3152839816925, 34.63223349754253], [-77.3153391696807, 34.632247438768545], [-77.31539216765536, 34.632309244906715], [-77.31603661376029, 34.63279404389748], [-77.31617188755462, 34.632894607511595], [-77.31638079021931, 34.632914097348376], [-77.3165264638136, 34.63299774658374], [-77.31666672970718, 34.63306290198788], [-77.31673968573378, 34.63310750955373], [-77.31708025708197, 34.633315744606755], [-77.31710973586684, 34.633333768803354], [-77.31713065906538, 34.63336282840834], [-77.3173557769677, 34.633728044432345], [-77.31739371853166, 34.63391930947597], [-77.31755929867563, 34.6341221330227], [-77.31757864593794, 34.63444875255575], [-77.31758735279904, 34.63454027327925], [-77.31759178179458, 34.63467487133502], [-77.3175464033477, 34.63538985783345], [-77.31752904412521, 34.63573728503575], [-77.31756438128143, 34.63587657654403], [-77.31777511373507, 34.63620247975772], [-77.31788698617535, 34.63638571686314], [-77.31806061231887, 34.63650031421594], [-77.31829589833926, 34.63672408655544], [-77.31843332690302, 34.63676249398084], [-77.31854171221725, 34.63681143591714], [-77.31869026418347, 34.636821992555454], [-77.31876375798778, 34.636813939359634], [-77.31885479898082, 34.63676566670453], [-77.31914205986484, 34.636576587783836], [-77.31933866221577, 34.6364884642172], [-77.31936654723702, 34.63645256886973], [-77.31959593240988, 34.63637486767878], [-77.3196286958362, 34.636363728509494], [-77.31963341929197, 34.63636213728716], [-77.31963962547992, 34.636360178187196], [-77.31993445659259, 34.63626710936879], [-77.3201626561933, 34.636195073320735], [-77.32032959739331, 34.63614237438337], [-77.32057766948938, 34.6362820535884], [-77.32098239124448, 34.63629334750781], [-77.32117760862953, 34.636081365328835], [-77.32148836211772, 34.63614443456821], [-77.32184006872878, 34.636192220510154], [-77.32221033011146, 34.636438423206485], [-77.32242685653975, 34.63658240007584], [-77.32256176283173, 34.636598185970385], [-77.32277604738144, 34.63663389270714], [-77.32296484234706, 34.63666535206216], [-77.32320449358033, 34.636610704599285], [-77.32350100196422, 34.63675191749056], [-77.32355979667089, 34.63678604445951], [-77.32381226909231, 34.636934343059224], [-77.32392185693764, 34.63699503787211], [-77.32394853616461, 34.63701387781722], [-77.3240031613409, 34.63703657238651], [-77.3244150823713, 34.63723821498981], [-77.32462004480288, 34.637283806674674], [-77.3246711140885, 34.63730534399246], [-77.3249098107832, 34.637292049183344], [-77.32494199363487, 34.63729295555825], [-77.32497098618236, 34.63728570795399], [-77.32517877220768, 34.63720956361519], [-77.3252348065007, 34.63715696196306], [-77.3253930302622, 34.637075986675725], [-77.32567092470309, 34.63680786909263], [-77.32573057892267, 34.63672387479228], [-77.32577443742635, 34.63665587054788], [-77.32598757455156, 34.63642142737956], [-77.32631546050376, 34.636161743770145], [-77.32664084405563, 34.63623929229175], [-77.32665732222527, 34.63624358342637], [-77.32694615026098, 34.63611428588162], [-77.32723640261102, 34.63624518132464], [-77.32728868201885, 34.63622597625825], [-77.32732900428849, 34.636214636437366], [-77.3275283623547, 34.63613113688541], [-77.32757599323328, 34.636111630897666], [-77.32758351940527, 34.63610010072132], [-77.32772716620953, 34.63591913896272], [-77.3278530188835, 34.635848025390146], [-77.32807093946808, 34.63563472727561], [-77.32810301431365, 34.63560280418845], [-77.32811931905682, 34.63558002347014], [-77.3283524148602, 34.6351741285299], [-77.32835108179964, 34.63516713231207], [-77.32833273665527, 34.634754836095574], [-77.32854436963804, 34.63450837172938], [-77.32869722601508, 34.63450151509479], [-77.32912175833577, 34.634552196409146], [-77.32919479885216, 34.63455928875955], [-77.32925022820324, 34.63455469861816], [-77.32979718322092, 34.634515648280995], [-77.32982385007395, 34.634503728819354], [-77.32989432450445, 34.634540632698034], [-77.32990899338623, 34.63462006895098], [-77.3301357523618, 34.635097490431406], [-77.33019713670964, 34.63534307761592], [-77.33032974362187, 34.63542899092066], [-77.33047647634129, 34.63548370875242], [-77.33050306994286, 34.635495089713544], [-77.33051338458652, 34.63549781456484], [-77.33067141094538, 34.63553635928409], [-77.33099134919593, 34.635630874543], [-77.33101109193261, 34.63563383140846], [-77.33102494979423, 34.63563302739953], [-77.33104970273662, 34.63564811310652], [-77.33134730851839, 34.63571404618287], [-77.33145270603703, 34.63572805971525], [-77.33151185197703, 34.635736400800944], [-77.33155166208307, 34.63573825742199], [-77.33167450830382, 34.63574935677257], [-77.33181296228447, 34.635730828013365], [-77.33198353509444, 34.635694172139644], [-77.3321745392712, 34.63565312505506], [-77.33229397681968, 34.63564603461334], [-77.33243342681115, 34.63564293274194], [-77.33260517532958, 34.63560166663213], [-77.33270891172074, 34.63556653625404], [-77.33275334538723, 34.635542491046394], [-77.3328601275285, 34.635443846003554], [-77.33288835218328, 34.63541777218454], [-77.33289822735554, 34.63540967066523], [-77.33293737751703, 34.635290922532754], [-77.3328076683824, 34.63501602086918], [-77.33280001192435, 34.63498890349306], [-77.33279421732006, 34.634986784474386], [-77.332554499683, 34.63490097070778], [-77.33245751157075, 34.63486638499672], [-77.33219023556065, 34.634748508480826], [-77.33210629960531, 34.63471149035759], [-77.332076903497, 34.63469852579274], [-77.33192147284949, 34.63449751888552], [-77.33175719764901, 34.63428507421492], [-77.33172560856373, 34.634246064599694], [-77.3316706462388, 34.63359595352521], [-77.33177893357015, 34.63343810616048], [-77.33189853447101, 34.63314145127717], [-77.33208257892798, 34.632999366607294], [-77.33223112249584, 34.63278473218668], [-77.33242431917454, 34.632505574725634], [-77.33244146375247, 34.632313847312815], [-77.33306409726049, 34.63157380804238], [-77.33306151673932, 34.631558276964334], [-77.33310297865862, 34.63151940447911], [-77.33415004194106, 34.630543014031744], [-77.3350382792446, 34.6313029174718], [-77.33492322962078, 34.63250749314782], [-77.33487514596646, 34.633013281644025], [-77.33483904323086, 34.63321824091595], [-77.33477880680337, 34.63367369209637], [-77.33475229757072, 34.63387412848748], [-77.33479704376924, 34.63390526146205], [-77.3347334501802, 34.63445423563862], [-77.33463494153008, 34.63455115784063], [-77.33444920836993, 34.634759706099395], [-77.33441105414605, 34.63482047607688], [-77.33458505344417, 34.63547288097654], [-77.334827923041, 34.63551196841322], [-77.33484821510366, 34.63552587621784], [-77.33493805182798, 34.6355366170925], [-77.33512311645516, 34.63555562986121], [-77.33515765758345, 34.63555988860956], [-77.33521624529456, 34.63557237264581], [-77.33567941579403, 34.63560227417793], [-77.3358909720674, 34.6360233489462], [-77.33609233084206, 34.63593278382753], [-77.33603108919844, 34.63623061687918], [-77.33605361894348, 34.63635430066272], [-77.3360551659541, 34.63664930787282], [-77.33626716304167, 34.6367346445659], [-77.33671577699353, 34.63698064785105], [-77.33672107581398, 34.636984002505535], [-77.33672477988519, 34.63698702755072], [-77.33675862546609, 34.63701261002124], [-77.33710296201303, 34.63727607526283], [-77.33714064257863, 34.63730136101817], [-77.33721924942031, 34.63733354974913], [-77.33745054847557, 34.63741281157991], [-77.33766899036502, 34.63740335880807], [-77.33789373184914, 34.63740522509191], [-77.33807638518154, 34.637341139517275], [-77.33829266196852, 34.63731662928075], [-77.33847774789376, 34.63758282788628], [-77.33866265511895, 34.63773214730466], [-77.33882557480398, 34.63788344279863], [-77.33885843880529, 34.637918551296615], [-77.33898941829402, 34.63793459871982], [-77.33912543417162, 34.63796396579523], [-77.3391584213312, 34.637946785386504], [-77.33916866082045, 34.63792837257138], [-77.33920403010232, 34.63790514316207], [-77.33927354582167, 34.63785948751023], [-77.33929758372956, 34.63784277431767], [-77.33937735226047, 34.63778959535684], [-77.33943617301927, 34.63773591192377], [-77.33956573007416, 34.63763185145437], [-77.33992156392208, 34.6373846612376], [-77.33995762493576, 34.63733050141176], [-77.33999442238107, 34.637327852028356], [-77.34004250596801, 34.637296323358036], [-77.34028048900424, 34.637158380378004], [-77.34039774702856, 34.63707418120518], [-77.34055951566296, 34.63695387783718], [-77.34066906288736, 34.636860061255874], [-77.34078325702033, 34.636766872655556], [-77.34083282007572, 34.63672090295563], [-77.34100634676875, 34.636536042048334], [-77.34109751167561, 34.6364450719534], [-77.3411223543448, 34.63641623067943], [-77.34116115616872, 34.63637051537391], [-77.34141416048172, 34.6360214356223], [-77.34150048848377, 34.63590193719445], [-77.34159047790513, 34.63571220087915], [-77.34165483332383, 34.63557890065386], [-77.34172757358735, 34.63544876624016], [-77.34184711172611, 34.63509118277094], [-77.34187008045566, 34.63500720584165], [-77.34186821597675, 34.634829495566436], [-77.34179572940624, 34.634709586040984], [-77.34171745924057, 34.63460615952034], [-77.34167784118083, 34.63455390103], [-77.34150492430322, 34.63440071556796], [-77.34122661887241, 34.63390136776762], [-77.34119708956098, 34.63386213396079], [-77.34117058896445, 34.63383723576416], [-77.34095877963313, 34.63359449864303], [-77.34058392713926, 34.633073772491784], [-77.34089004037705, 34.63222622120543], [-77.34089396868065, 34.632199480450325], [-77.34089737303889, 34.63218675117015], [-77.34089310452765, 34.6321678310269], [-77.34087611042892, 34.632156890572105], [-77.34067753284657, 34.631794931634815], [-77.3405455245348, 34.631707971133025], [-77.34032977318947, 34.63142067110144], [-77.34020800245975, 34.63122820264974], [-77.34002098607684, 34.63108711296434], [-77.33999005438496, 34.63108571541153], [-77.33980121568888, 34.63117912044204], [-77.33972696407754, 34.63121688711288], [-77.33960786235879, 34.63126843971905], [-77.33943349173887, 34.63134940151423], [-77.33930304520449, 34.631381206419206], [-77.3389553609596, 34.63141234808079], [-77.33878631120965, 34.63131459925508], [-77.3382514571312, 34.6308619482722], [-77.33825111468144, 34.630510666922035], [-77.33823943944736, 34.63001960538719], [-77.33777819101387, 34.62948298334014], [-77.33761772879268, 34.62946871293543], [-77.33724201891201, 34.62931250737612], [-77.33663924324317, 34.62911006353505], [-77.33638728907525, 34.62893255674606], [-77.33573784119997, 34.628598807456704], [-77.33497824565879, 34.62800983444405], [-77.33540691102918, 34.629254004522195], [-77.33530059776177, 34.629578943402336], [-77.33529843634443, 34.62964345504224], [-77.33528111150133, 34.62979970909899], [-77.33510480700843, 34.629605810827414], [-77.33489056409054, 34.627980405152904], [-77.3348607980015, 34.62790014977457], [-77.3340342655694, 34.62637675893333], [-77.33354644401854, 34.626049859190054], [-77.33320179682568, 34.62368148985375], [-77.33367628806468, 34.62304992903185], [-77.3338886518973, 34.62286596226011], [-77.33456200000788, 34.62228264265831], [-77.33499640317753, 34.62200700089287], [-77.33545252143298, 34.62227599700483], [-77.33637819034172, 34.62251271444661], [-77.33656415271423, 34.62265361353973], [-77.33731073441407, 34.623188543311], [-77.33757686732297, 34.62335860906284], [-77.33775902866105, 34.623448881634964], [-77.33785612405856, 34.623496997939164], [-77.33820767017957, 34.62370853504841], [-77.33822122967528, 34.62372124452043], [-77.33855782860056, 34.624067956298695], [-77.33857814688548, 34.6241229687352], [-77.33869332708946, 34.62480640930417], [-77.33865368542034, 34.6248987914643], [-77.33853927786127, 34.62532982278267], [-77.33854284059217, 34.62534091133409], [-77.3389191026278, 34.625706352768816], [-77.33894317579933, 34.62572195062893], [-77.3389626701885, 34.62572521111779], [-77.33927125212172, 34.62576179242627], [-77.33951347288289, 34.62571502182764], [-77.33958194631637, 34.62571510328904], [-77.33966841112199, 34.625716994918704], [-77.34017116782641, 34.62556073869793], [-77.34018839732884, 34.62554737462041], [-77.34019396068965, 34.62554050791841], [-77.34020530687398, 34.62552979664372], [-77.3405556823208, 34.62521103322736], [-77.34070538334342, 34.6249343229057], [-77.34093989260201, 34.62458495878971], [-77.34097467499394, 34.62426778380411], [-77.34117511881783, 34.62408611218086], [-77.3413284015825, 34.62368762730522], [-77.34139234958843, 34.62332331222718], [-77.3415704267619, 34.62286746762946], [-77.34173522457375, 34.62230899690857], [-77.34220694386569, 34.62187901802294], [-77.34234919808873, 34.62154784857879], [-77.34251734947036, 34.62120835574045], [-77.34363668005864, 34.6216827075699], [-77.34478293450738, 34.622168461073485], [-77.34531612855935, 34.622394404395365], [-77.34664517813874, 34.62295758544291], [-77.34669219603879, 34.62297993731902], [-77.34671978448637, 34.62300849073866], [-77.3467913241836, 34.62302694773789], [-77.3476340816758, 34.62341092755253], [-77.3480251377999, 34.6236120669969], [-77.3478254137305, 34.62399250012204], [-77.3477718903213, 34.624490850342156], [-77.34788768282993, 34.62471784546315], [-77.34804400099017, 34.62489558181052], [-77.34808150192558, 34.62489881376309], [-77.34839583747782, 34.62497775798375], [-77.34859783507, 34.624946918339994], [-77.34886145682889, 34.62495984717914], [-77.34899334054643, 34.6247655933611], [-77.34925256503554, 34.62479840678398], [-77.34964370596796, 34.624816435735326], [-77.34997036918627, 34.624660820679395], [-77.35022828015205, 34.62453997065755], [-77.35065923156799, 34.6243088161495], [-77.3508061813717, 34.624230326286195], [-77.35086655714704, 34.624163186199155], [-77.35090547040501, 34.62406044323339], [-77.35129706026471, 34.62348780336599], [-77.35140825829728, 34.62333458928871], [-77.35174355803355, 34.622524541711456], [-77.35185714168082, 34.62241934138938], [-77.35187439721904, 34.62223814598432], [-77.35201764003281, 34.621866323296985], [-77.35222982423085, 34.62106805886655], [-77.35261378135395, 34.621139021849636], [-77.35279535633057, 34.6212565775147], [-77.35307401611166, 34.621426103792174], [-77.35326860630227, 34.62151179184281], [-77.35357147853715, 34.621667767370596], [-77.35387833229267, 34.62175756726326], [-77.35405690182138, 34.62178618700418], [-77.3545951548406, 34.62157720548204], [-77.35484561458448, 34.62129526431116], [-77.35542137046124, 34.62064938682107], [-77.35563458286884, 34.620303590999825], [-77.35573217978815, 34.62008997668276], [-77.35580432641657, 34.619974611783306], [-77.35604963004997, 34.61953676632477], [-77.35642354264235, 34.61929324363981], [-77.35656811136536, 34.61917124690304], [-77.3571051591506, 34.618938348815696], [-77.357182573194, 34.61889533553271], [-77.35721217531108, 34.618884851449295], [-77.35728283882102, 34.61883670734395], [-77.35769122730018, 34.61852064346763], [-77.35777554583541, 34.618417337341626], [-77.35800096266914, 34.61815326393327], [-77.35809265418933, 34.61804584784076], [-77.35839524886568, 34.617992685395144], [-77.3586087161911, 34.61806750770951], [-77.35878940211596, 34.61809819732099], [-77.35893320655343, 34.61809588123969], [-77.35902860403432, 34.6180700758373], [-77.35918364211396, 34.61802813715564], [-77.35935221100978, 34.61797818275013], [-77.35937531457438, 34.617968978777256], [-77.35935135541285, 34.617766029654774], [-77.3593057095431, 34.61764133698719], [-77.35924470085757, 34.61756910182139], [-77.35918388573968, 34.617530060194724], [-77.35909417899259, 34.61747512843201], [-77.35889760902063, 34.617406773312496], [-77.3587897670296, 34.617359340294136], [-77.35854193962464, 34.617300340920096], [-77.35814088651303, 34.617091112745], [-77.35806569330805, 34.61703282573051], [-77.3580015558585, 34.61697508558639], [-77.35775674905828, 34.61672183675091], [-77.35768564016908, 34.616647934978786], [-77.35740097453771, 34.61634847816842], [-77.35731898457993, 34.61624669923444], [-77.35721359582718, 34.61611587223891], [-77.35688765685481, 34.61592438061024], [-77.35668264654875, 34.61587987064861], [-77.35642534810532, 34.615837229476654], [-77.355814812195, 34.6157276002195], [-77.3558039565115, 34.61554946565514], [-77.35593750132283, 34.61486084527047], [-77.35571226420807, 34.613964109364446], [-77.3554047404503, 34.61323928989667], [-77.35550659633739, 34.61223305580888], [-77.35642756428952, 34.6116169306671], [-77.35649962907891, 34.61146109052498], [-77.35721594356603, 34.61156215485093], [-77.3575715102014, 34.61161231962347], [-77.35763252680931, 34.611620928063985], [-77.35800419762833, 34.61175150413092], [-77.3581936415302, 34.611988902072824], [-77.3584218800457, 34.61235496526424], [-77.35879205154656, 34.61275139536832], [-77.35879224131084, 34.612751660397706], [-77.35879247371082, 34.612751831481646], [-77.35919326291994, 34.61311094330499], [-77.35925542865515, 34.6131845177822], [-77.35948769081409, 34.61350088739373], [-77.35952700407645, 34.613552331883064], [-77.35957999636454, 34.61360457092033], [-77.3598261741115, 34.61403591132591], [-77.36008161951129, 34.61426451753519], [-77.36028349432397, 34.614326501469364], [-77.36036802181276, 34.61432298729616], [-77.36046695286412, 34.61431560973719], [-77.36076220896851, 34.61432389738107], [-77.36103319160786, 34.61426029531061], [-77.36115643035166, 34.61425150592299], [-77.36127827108245, 34.61422350721251], [-77.36155066692751, 34.614144678429], [-77.36188995010943, 34.61406342964382], [-77.36194488451211, 34.614076937627736], [-77.36200646951819, 34.61405380380448], [-77.36222270027335, 34.6139563631515], [-77.36231507005988, 34.613917140328496], [-77.36230310827237, 34.613559222150904], [-77.36229805954434, 34.61352096264456], [-77.36230871287883, 34.61348644367022], [-77.36233938421391, 34.61338637172311], [-77.36239868031032, 34.61314567294504], [-77.36241658592192, 34.61307934855004], [-77.36246107207909, 34.61294209832828], [-77.3625024823117, 34.61281781835835], [-77.36260997491661, 34.61262695857141], [-77.36273401320953, 34.61239471241913], [-77.36281069290526, 34.612256034808986], [-77.36285695713858, 34.61216685380632], [-77.36304740025055, 34.61180218832814], [-77.36309659485634, 34.61170780553836], [-77.36309696038066, 34.611673768771155], [-77.3631684944979, 34.611272901066556], [-77.36322241046685, 34.610941369508225], [-77.36329596716222, 34.61065012681107], [-77.3630879848609, 34.61043538152114], [-77.36331304464602, 34.610176468132124], [-77.36352342179558, 34.61001163226954], [-77.36374374160681, 34.60972904710578], [-77.36397585949155, 34.609458462760955], [-77.36415031800304, 34.609259112990664], [-77.3643120979381, 34.60921984883364], [-77.36460607559138, 34.60894318399107], [-77.36466604619544, 34.60889108332356], [-77.36470642888926, 34.608827616987725], [-77.36492601831277, 34.608472569112905], [-77.36500505160782, 34.608358070678], [-77.36510084139377, 34.60823476601616], [-77.365392263903, 34.607980890182276], [-77.3654457971809, 34.607920043875154], [-77.36549516671737, 34.607836294984914], [-77.36571565893777, 34.60750977532891], [-77.36573070290773, 34.60733653113733], [-77.36588961792226, 34.60712630685023], [-77.36609641793092, 34.60703040026444], [-77.36611365466564, 34.606844554846376], [-77.36633374087154, 34.606942487430565], [-77.36667809679358, 34.60669866619581], [-77.36678040607208, 34.60661753043435], [-77.36707231077203, 34.60654027362169], [-77.36737476757904, 34.60642178559462], [-77.36745045847464, 34.60639358804008], [-77.36746652537705, 34.60637646069187], [-77.36750667313973, 34.60635955476246], [-77.3679970540279, 34.60605439123783], [-77.36825501309994, 34.605885884057074], [-77.36831889236547, 34.60586128288819], [-77.36858994661756, 34.60575841777086], [-77.36864921818409, 34.60573237764997], [-77.36874270585551, 34.60569956666738], [-77.3690434185619, 34.60558728269919], [-77.36923199035319, 34.605508329830506], [-77.36924052260463, 34.60550304465886], [-77.36930604020961, 34.6054363085511], [-77.36943766995313, 34.605302230807546], [-77.36946934227561, 34.605271059573056], [-77.36965877490042, 34.60505729020346], [-77.36983193849163, 34.60496361563307], [-77.37008283390813, 34.60475815317212], [-77.37017082750921, 34.60468585502885], [-77.37022622831583, 34.604558064008515], [-77.37037259419176, 34.604291865620965], [-77.3702601483469, 34.603919787679864], [-77.37028318850432, 34.60388018325462], [-77.37024923540736, 34.60386056512196], [-77.37012421329491, 34.603792886438285], [-77.3698324312109, 34.60363515296874], [-77.3697797946279, 34.60358484002666], [-77.36945462306707, 34.60359251841731], [-77.36943823438213, 34.60379891700728], [-77.36942008642451, 34.603985006224256], [-77.36942041083783, 34.604004432886335], [-77.3694135034109, 34.60403197283156], [-77.36943812555077, 34.60408844044164], [-77.3695083364837, 34.60441632860477], [-77.36947797405807, 34.60446377681145], [-77.36943797631616, 34.604485719064655], [-77.36919505959213, 34.60462439194041], [-77.3690437523083, 34.60470843797668], [-77.36872108969592, 34.6048771886278], [-77.36864953221989, 34.604915335116715], [-77.36861556491735, 34.60493286700628], [-77.3685346593492, 34.60498109864745], [-77.3682552786727, 34.60520309801255], [-77.36810861648041, 34.60530906932931], [-77.36786107457031, 34.6053583003968], [-77.36762826556796, 34.60536238525252], [-77.36746692803055, 34.60536521605361], [-77.3671819850839, 34.60529346971361], [-77.36707281033965, 34.6053002297036], [-77.36699138486851, 34.60529103020402], [-77.36672323887137, 34.60524192673512], [-77.36667869578505, 34.60522886981384], [-77.36660632928961, 34.605258759641465], [-77.36636381217627, 34.6053791194616], [-77.36593284061243, 34.60578028378278], [-77.36589008447456, 34.606006487036026], [-77.36549936434388, 34.60627105813245], [-77.36510165122455, 34.6063318573304], [-77.36490322456288, 34.60614233817569], [-77.36431332381966, 34.606399506128255], [-77.36405693067327, 34.60662339738666], [-77.36385207164183, 34.60657659467084], [-77.36378338918243, 34.60636801210744], [-77.36395954816282, 34.60606437261362], [-77.36409949539173, 34.605425897634994], [-77.36419369191974, 34.60518155537282], [-77.36413587715398, 34.60499808078206], [-77.36379428821883, 34.60438994418956], [-77.36400121128734, 34.604022839255435], [-77.36404492449579, 34.6039293080438], [-77.36431454318343, 34.60360667706393], [-77.3643855600146, 34.60353217645685], [-77.36451130306374, 34.603437610784766], [-77.36488156355199, 34.60314576307145], [-77.36510310265369, 34.60293594303475], [-77.36511230654786, 34.60292652980836], [-77.36510311811509, 34.602899878228015], [-77.3650003897403, 34.602628870039844], [-77.36497210199599, 34.602522159529805], [-77.36493110982939, 34.60234251584875], [-77.3646715460573, 34.60171631984749], [-77.3645379094804, 34.60149594250769], [-77.36431598629409, 34.60031794924082], [-77.36425345320231, 34.60014573394302], [-77.36425911692987, 34.60001607156967], [-77.3643161637727, 34.59991455954056], [-77.36488533408101, 34.59890174877305], [-77.3652599239616, 34.59823516267271], [-77.36551153848643, 34.59778742190179], [-77.365893824258, 34.597107122560416], [-77.36726245186526, 34.596472717543506], [-77.36747052832058, 34.59640271604722], [-77.36805053735327, 34.59676008824951], [-77.3676869665741, 34.59618746661645], [-77.36761935387723, 34.59603703444742], [-77.36780965940812, 34.59483623072197], [-77.36767382631183, 34.59449113169654], [-77.36767884051784, 34.59426692479796], [-77.36747190027745, 34.59302408590284], [-77.36743976606657, 34.59286129990001], [-77.36739944061515, 34.59283241671433], [-77.3672857984192, 34.59264812304212], [-77.36694935643783, 34.59204811641925], [-77.36711420529387, 34.59163841080194], [-77.36711531554779, 34.59159966174844], [-77.36712149298077, 34.59155236970776], [-77.3670784245919, 34.59154547625087], [-77.36703566754812, 34.59156507598518], [-77.36668425549473, 34.5917622177527], [-77.36645866634828, 34.59187579019851], [-77.36589606882436, 34.591826139548786], [-77.3652109521046, 34.59218725319367], [-77.36510772115865, 34.592254827771846], [-77.3650719635336, 34.59227993793231], [-77.36494378437564, 34.59233690435133], [-77.36431940550911, 34.592593505974435], [-77.36408987480313, 34.59245985046269], [-77.36387686044245, 34.59211840036509], [-77.3638852936048, 34.591640194991385], [-77.36353193520627, 34.59106075952256], [-77.36347279535104, 34.59091426039015], [-77.36334300192829, 34.59086916130735], [-77.36293012005608, 34.59072801963288], [-77.36274401917672, 34.59054939633186], [-77.36238357570043, 34.590619001995115], [-77.3622954004056, 34.59065413754677], [-77.36195579660023, 34.59070289735321], [-77.36177443337493, 34.59067042755728], [-77.36160948416351, 34.590642747233424], [-77.36163372823057, 34.59034352032839], [-77.36189081727673, 34.59022911898456], [-77.36194635872593, 34.59021070333162], [-77.36195603089352, 34.59020990718705], [-77.36196478677275, 34.59020903758071], [-77.3623501734848, 34.590062578720435], [-77.36259080413086, 34.58996298476343], [-77.3627443220168, 34.5898994453103], [-77.36300050703835, 34.589793412004624], [-77.36313846887933, 34.58973631069956], [-77.3632211416977, 34.589702092764014], [-77.36335260746367, 34.589594114269325], [-77.36353267961921, 34.58942998619388], [-77.36368270129057, 34.58928358923021], [-77.36379540021312, 34.58910580727921], [-77.36371867619437, 34.588916719691696], [-77.36363264311832, 34.58870468615316], [-77.36362559824147, 34.58860599846647], [-77.36367737014288, 34.58842908406532], [-77.36375807700223, 34.588262071333446], [-77.3639273620048, 34.58807593244822], [-77.36408688956502, 34.58796198991615], [-77.3641947474349, 34.587911203262124], [-77.36432151479569, 34.58787524871421], [-77.36466069555938, 34.587766733651], [-77.36476911827307, 34.5877495673646], [-77.36510980291982, 34.58750043120034], [-77.3653870657512, 34.58747711653269], [-77.3656858109644, 34.58736397945141], [-77.3658980273337, 34.58725652536389], [-77.3659692371247, 34.58717125827006], [-77.36606702731186, 34.58708049485358], [-77.36636741672378, 34.586693585443136], [-77.36668653199905, 34.586335867382736], [-77.36693582691123, 34.586106270716286], [-77.36722490826135, 34.58579533548862], [-77.36742640000682, 34.58523897114608], [-77.36740791007948, 34.58518917200622], [-77.36721823750989, 34.584644378317165], [-77.36675782904835, 34.58443367494912], [-77.36612798126212, 34.584278001293924], [-77.36589927749701, 34.58435784328918], [-77.365412666796, 34.58410297381409], [-77.36511129210001, 34.58412150379228], [-77.36486351640852, 34.58443965099768], [-77.36459431429479, 34.58474522287929], [-77.36445869347193, 34.58491111306109], [-77.36432284740013, 34.58491240564025], [-77.36424375681412, 34.58488092788332], [-77.36417793975961, 34.584805176331855], [-77.36387343210482, 34.584484330378935], [-77.3637305478969, 34.58423110209705], [-77.36364361643129, 34.58403300080287], [-77.36384283370252, 34.583672992678544], [-77.36390278810367, 34.58354242999839], [-77.36397540423047, 34.58351114775044], [-77.36432355741209, 34.58333934101642], [-77.36454876024231, 34.583296182111354], [-77.36459834118779, 34.58304642068234], [-77.36488488142109, 34.58276056577742], [-77.36485169535638, 34.58244133228729], [-77.36472268728774, 34.582179404925085], [-77.36471812018445, 34.58217204725433], [-77.36450080619693, 34.5820210179097], [-77.36432440471901, 34.58146719726059], [-77.36425571380336, 34.581471543770334], [-77.3635361769841, 34.5818231336498], [-77.36298598506403, 34.58158035792041], [-77.3629011695045, 34.58142785332895], [-77.36274832136397, 34.581375751150226], [-77.36249688814846, 34.58080166839977], [-77.3626804987777, 34.57999990094476], [-77.36260835556102, 34.57993651048003], [-77.36196109098222, 34.579649557245475], [-77.36154409974179, 34.57968990613404], [-77.36152061371553, 34.579244009780474], [-77.36151397503087, 34.57887802419988], [-77.36142029859825, 34.57867524305148], [-77.36126651650264, 34.57843148489316], [-77.3611967563898, 34.578416632768345], [-77.36117365762121, 34.57840440425325], [-77.36114235904549, 34.57841564135461], [-77.36092770921334, 34.57848026212126], [-77.36038549735392, 34.578652864012525], [-77.35991524415249, 34.578968602094264], [-77.35959692649385, 34.5796948016191], [-77.35924364112157, 34.580040444845515], [-77.35880862874362, 34.580173879368395], [-77.35830912323266, 34.58024448860736], [-77.35802054916712, 34.580223954174535], [-77.35753086772107, 34.58013978748539], [-77.35704775816598, 34.58008701338062], [-77.35659424033022, 34.57926489663221], [-77.35649230409817, 34.57911873117698], [-77.35646854312648, 34.57909684811091], [-77.35644512239081, 34.57898321928182], [-77.35629892295457, 34.578455301961746], [-77.35628919219131, 34.57829886203626], [-77.35605164975908, 34.577993747976365], [-77.3559893066553, 34.5779846520683], [-77.35565779350226, 34.57770711038327], [-77.35540803657389, 34.57757657979755], [-77.35507155119123, 34.577407761053436], [-77.35486991973528, 34.57743102376975], [-77.35414486572805, 34.57697684238322], [-77.35405122057762, 34.57695609091081], [-77.35403009984121, 34.576925786848555], [-77.35344539356825, 34.576847024730654], [-77.35329421780034, 34.576826660330454], [-77.35264878048457, 34.57697083386006], [-77.35250622306737, 34.576778480527395], [-77.3521830921744, 34.57634247792557], [-77.35250677564136, 34.57585535744697], [-77.35260346161422, 34.57553686459779], [-77.35290096146765, 34.575554769318174], [-77.35310371501825, 34.57556697120498], [-77.35329487765392, 34.57570673209604], [-77.35353840861859, 34.5755606627568], [-77.35368898014116, 34.57554234029336], [-77.35396837523564, 34.575360078161914], [-77.35408311876806, 34.57531300245896], [-77.35414429599473, 34.57527704920186], [-77.35422357066902, 34.5751997426809], [-77.35426354042946, 34.57499977448133], [-77.3540832591416, 34.57507120097249], [-77.35385195988093, 34.57465361597215], [-77.35336466004517, 34.57454870660547], [-77.35329557058336, 34.574532142724955], [-77.3532560829792, 34.574532423979974], [-77.35301961880707, 34.57452390329027], [-77.3525818292981, 34.57450690081907], [-77.35250762652323, 34.57443578356888], [-77.35195118762678, 34.57442813791664], [-77.3517198270172, 34.574105013894204], [-77.35113941467371, 34.574169085501026], [-77.3509317818047, 34.574180222348794], [-77.35073276602608, 34.5742182933691], [-77.35014360728914, 34.57445880657614], [-77.34967656275278, 34.574501712426326], [-77.34935559779842, 34.57446987172056], [-77.34916949398512, 34.57442935772197], [-77.34880272228864, 34.57428156601229], [-77.34856773125249, 34.57425922109102], [-77.34846766167325, 34.57422191684263], [-77.34841010420621, 34.57433805175397], [-77.34836591084434, 34.57456166481241], [-77.34829137751018, 34.574906901170124], [-77.34836788495105, 34.57519321984728], [-77.34841095123771, 34.57535519278632], [-77.34842605877664, 34.57588242289877], [-77.34834580113863, 34.576045491348054], [-77.34820218560118, 34.57652294624192], [-77.34777815658205, 34.57665840826873], [-77.34727220036551, 34.57704903213275], [-77.34719957872815, 34.57728560263419], [-77.3470223227174, 34.57793407117948], [-77.34698925329347, 34.577982332560836], [-77.34662499843523, 34.57799122524438], [-77.34622696569727, 34.57802070871601], [-77.34620119364229, 34.57801607835397], [-77.34616643068334, 34.57801973462585], [-77.34541319677675, 34.57795677478531], [-77.34495699905867, 34.5778736599749], [-77.34462540879123, 34.57759622540411], [-77.3441612587726, 34.5774965109048], [-77.34396666559243, 34.577385348127194], [-77.34421334511674, 34.57619488457652], [-77.34462655922022, 34.57593557051649], [-77.34476614709897, 34.57586168002839], [-77.34502073856635, 34.57568836910718], [-77.34503481223118, 34.57568784995338], [-77.34502749566973, 34.575673738310094], [-77.34502075104653, 34.57567024807471], [-77.3446854723868, 34.57565965971823], [-77.34462676579862, 34.57563763295608], [-77.34404563061128, 34.575592079472855], [-77.34383898974349, 34.575296834547785], [-77.34353130793154, 34.57503984500883], [-77.34324777329046, 34.574868901918975], [-77.34314211462487, 34.574671275953264], [-77.34305145451036, 34.574626884329696], [-77.34279106968037, 34.574577824693165], [-77.3424388640885, 34.57453681558507], [-77.34226335253332, 34.57475873389029], [-77.34211976008582, 34.574548650104845], [-77.3416383855917, 34.57463857539579], [-77.3414752928197, 34.57482895395389], [-77.34116071453795, 34.57504197686325], [-77.34068691414377, 34.575327310095005], [-77.3405570789591, 34.575327677075066], [-77.34033105901904, 34.57550007539058], [-77.34006287338264, 34.57571563316297], [-77.33979624010428, 34.575687302998105], [-77.33911049131783, 34.57584584631951], [-77.33900144146178, 34.575808793437275], [-77.33845504804925, 34.57591273042469], [-77.33832235026611, 34.57600353726187], [-77.3379681588952, 34.576221282120045], [-77.33753396040925, 34.57647679390218], [-77.33723437513174, 34.57647160756592], [-77.33709458068368, 34.5768145086869], [-77.33674550798618, 34.577017958149035], [-77.33645770212267, 34.57721600369711], [-77.33635127386611, 34.57729361123679], [-77.33631632023747, 34.577313291769734], [-77.33595717536033, 34.57739573977076], [-77.3355887502474, 34.57748318089325], [-77.33553347682235, 34.57749536975257], [-77.33516899325349, 34.5775775046869], [-77.33485863838831, 34.577650691188424], [-77.3343807791976, 34.57779411887522], [-77.33386256252825, 34.57783743974558], [-77.33359266156876, 34.577888036242406], [-77.33336745603482, 34.57795678134507], [-77.33303963629645, 34.57799317416312], [-77.33280451088392, 34.57801927622918], [-77.33251668605874, 34.578011526802605], [-77.33233200933894, 34.57800822373433], [-77.33201677870848, 34.5776509157458], [-77.3318210410203, 34.57778333276629], [-77.331895255163, 34.57756188932888], [-77.33197386139202, 34.57750421684485], [-77.33201692672748, 34.577475395453234], [-77.33214408051279, 34.57738920187102], [-77.33241117336485, 34.5772038360162], [-77.33250114550958, 34.57714715881512], [-77.33273181957742, 34.57709626517332], [-77.33280529411996, 34.577080054449304], [-77.33286894788924, 34.5770659760271], [-77.3331578031295, 34.57700068007161], [-77.33319938516156, 34.57699060244055], [-77.33323399216025, 34.57698221517225], [-77.33359348963428, 34.57688383159338], [-77.33399107212108, 34.576839915387005], [-77.33420191978155, 34.57638126539343], [-77.33418833633525, 34.57574329247417], [-77.33419172430412, 34.57553365136587], [-77.33407215684662, 34.57521603514247], [-77.3340487429523, 34.57512966483956], [-77.33402961629368, 34.575088627486835], [-77.33387724540633, 34.574729776363384], [-77.33398406950812, 34.574295873705736], [-77.3339715742855, 34.57429167806623], [-77.33398629645104, 34.57428596081673], [-77.33399355456116, 34.57428430037375], [-77.33438372533729, 34.57418391623948], [-77.33465696305456, 34.57406292339094], [-77.33509463451064, 34.573789113762224], [-77.3351720770666, 34.57375553921998], [-77.33521481616815, 34.57373445485493], [-77.3352527750231, 34.57368296447656], [-77.33559502019116, 34.57323996097868], [-77.3359606883566, 34.5729921436123], [-77.33609369060082, 34.572856188712095], [-77.33651214192169, 34.572907782735214], [-77.33674868448671, 34.572989161242894], [-77.33705770683991, 34.57309041455715], [-77.33736411396617, 34.57319365688675], [-77.33753648131434, 34.573241059955095], [-77.33763282429365, 34.57323698450317], [-77.33773345020502, 34.57327963514035], [-77.3378327718764, 34.573206734372164], [-77.33793055000012, 34.57314964777739], [-77.33810746019397, 34.57303854048374], [-77.33832470256777, 34.572948214500435], [-77.33864022517139, 34.57277140542445], [-77.33868582557189, 34.57272924587896], [-77.33866119815474, 34.57234384705602], [-77.33870369661025, 34.57193020105264], [-77.33870795221377, 34.57191258283727], [-77.33861129148573, 34.57180980451517], [-77.33835283959388, 34.57153910106948], [-77.33833991629363, 34.57152574819981], [-77.3383258155138, 34.5715055672962], [-77.33806912267231, 34.57115535300742], [-77.33802811573356, 34.57105786623212], [-77.3378497620201, 34.5707623509112], [-77.33773786027373, 34.57056369625418], [-77.33753866717777, 34.570442958169295], [-77.33732295092409, 34.570221646394124], [-77.33702907581441, 34.570031265132364], [-77.3368691327336, 34.56992707970885], [-77.33675121988516, 34.56978359146188], [-77.33641866947204, 34.56962842119663], [-77.33605582078926, 34.569421541961276], [-77.33596358704105, 34.56937109584519], [-77.33591503880939, 34.5693946438592], [-77.33534875730086, 34.56961052966565], [-77.33517534948913, 34.569713508221504], [-77.33482055796884, 34.56988185806538], [-77.3347812137887, 34.569902298629096], [-77.33476012595419, 34.569910207107974], [-77.33438708744241, 34.57007757484876], [-77.33412673559428, 34.5701680517824], [-77.33399298045693, 34.57022718292169], [-77.33375876892123, 34.57050141082415], [-77.33371613219302, 34.570634122992104], [-77.33359843100381, 34.57090871206521], [-77.33346004119655, 34.57124460987829], [-77.33320436339682, 34.57143018222426], [-77.33280980250561, 34.57168794928394], [-77.33222752351344, 34.571792337629326], [-77.33202166825811, 34.57186648946306], [-77.33183230161161, 34.57183147688622], [-77.33171123321141, 34.57164479847681], [-77.33169412095569, 34.57129379049527], [-77.3316710575373, 34.571179919087925], [-77.33165759907038, 34.57080342961273], [-77.33164067338265, 34.57036869151386], [-77.33148113143113, 34.569979716262], [-77.33179903329568, 34.56969213512444], [-77.3320235967679, 34.569592463685794], [-77.33245356828118, 34.56937681775036], [-77.33281188888903, 34.56920064328808], [-77.33297223052257, 34.56908899183344], [-77.33320604014092, 34.56899505762743], [-77.33359054252507, 34.56883778659772], [-77.33360015256783, 34.56883386290547], [-77.33360592586799, 34.56883144229079], [-77.33361528749127, 34.56882387756996], [-77.33363879125896, 34.5687789118498], [-77.33391626928903, 34.56835607163516], [-77.3336389793556, 34.568012496263606], [-77.33361358134675, 34.56797504358158], [-77.33360855072974, 34.56796749258242], [-77.33360087374157, 34.5679657853454], [-77.33353022260987, 34.5679108442818], [-77.33320715755701, 34.56765769733092], [-77.33318074163645, 34.567641204053466], [-77.33309089255606, 34.56750021116671], [-77.33293351640296, 34.56722372199853], [-77.33298048018519, 34.567037256609325], [-77.33281396563886, 34.56672983815216], [-77.33260418550945, 34.566421982501716], [-77.33260908567121, 34.56579382745631], [-77.33248216844683, 34.565590443248965], [-77.3324967617708, 34.56524517471616], [-77.33281504785572, 34.56544418723348], [-77.33284397373558, 34.56550720797611], [-77.33287039575363, 34.56553463810596], [-77.33360237917046, 34.56615573897442], [-77.33366540340879, 34.566201478650946], [-77.33378176425829, 34.56625270814048], [-77.33389115136546, 34.56635016631522], [-77.33399618600818, 34.56634694986041], [-77.33410033638184, 34.566419182030884], [-77.33412899913296, 34.566484089203264], [-77.33432880574783, 34.56659860801285], [-77.33438991509547, 34.566634849734186], [-77.33451231564095, 34.566704187422474], [-77.33459619613701, 34.56676230693141], [-77.33478367185634, 34.566892205167065], [-77.33486549549912, 34.56694599395402], [-77.33504613027007, 34.56706159190078], [-77.3351774342764, 34.56714555586733], [-77.33540774038428, 34.56729257930176], [-77.33548696296779, 34.56737198519794], [-77.33568884610162, 34.56737892381038], [-77.33596514144077, 34.5674340126924], [-77.33616295397056, 34.56739541483887], [-77.33635916052697, 34.567373377210764], [-77.33654225155368, 34.567326727917845], [-77.33675326976308, 34.56719835225222], [-77.3368520809004, 34.56719139671677], [-77.33687933986809, 34.567081004547624], [-77.33684337053482, 34.56675835115894], [-77.33683443183627, 34.56666291988907], [-77.33675413730145, 34.56610606659451], [-77.3367204296167, 34.565866757115124], [-77.33670230298743, 34.56583283459012], [-77.3364675702361, 34.56555730311017], [-77.33637816495263, 34.56545489718143], [-77.33637027160562, 34.565445718430155], [-77.33636072199016, 34.56541933402155], [-77.33619261778807, 34.565057033101894], [-77.33617803409751, 34.564831964333344], [-77.33611004914806, 34.564373327238684], [-77.33610624971152, 34.56422036839147], [-77.33608443445695, 34.56409784127288], [-77.33596820758791, 34.56362242173379], [-77.33593656342309, 34.56342995155216], [-77.33592513399638, 34.56339732660421], [-77.33580921591646, 34.56324232400299], [-77.33541859507619, 34.56262107125986], [-77.33529976997838, 34.56251038646771], [-77.33518122730271, 34.56248782286957], [-77.33486969121384, 34.56236414854431], [-77.33476091555559, 34.5623196453446], [-77.33439369286084, 34.562050873331685], [-77.33427705833749, 34.562061788609554], [-77.33380493096779, 34.56200397935952], [-77.33360596142975, 34.56185939631267], [-77.33324737427205, 34.561621703641336], [-77.33310908083709, 34.56156827852202], [-77.33281804950278, 34.56188553743366], [-77.33257136045879, 34.561915488074256], [-77.33203021558163, 34.56181941424427], [-77.33185472478469, 34.56162454179145], [-77.33124286473674, 34.56119533738152], [-77.33100195152969, 34.5609685780163], [-77.33109728838325, 34.56069504067386], [-77.33109795503077, 34.56053816685097], [-77.33103867328224, 34.5592271998537], [-77.33095598307817, 34.55901719712455], [-77.3307765699503, 34.55874776843722], [-77.33068809206762, 34.558566073916595], [-77.33105348973352, 34.55815506906054], [-77.33113007759246, 34.5580129132683], [-77.3312058269367, 34.557963076101736], [-77.33121458752355, 34.55755059437338], [-77.33118205516699, 34.55751581154881], [-77.33078564806121, 34.55739234561545], [-77.33050190328382, 34.55714829127307], [-77.33047836529435, 34.55712732941155], [-77.3302687486081, 34.55681798006633], [-77.33025214331096, 34.55667021511549], [-77.32990906771367, 34.5563381668103], [-77.32986786931548, 34.556235818715066], [-77.32979748365277, 34.55620910687375], [-77.32973891082712, 34.556187769447384], [-77.32951174971458, 34.555942560465546], [-77.32927510897804, 34.55583138653433], [-77.32923308063106, 34.55567067090599], [-77.32896662561427, 34.555627711371926], [-77.32877717883783, 34.5555328174081], [-77.32873712236224, 34.555419080098154], [-77.32860007494939, 34.55518411973605], [-77.32836407509328, 34.55498306663313], [-77.32819901008075, 34.55486732099294], [-77.32783938319305, 34.55479413286854], [-77.3277129739851, 34.55458701336814], [-77.32742292475362, 34.55447153526991], [-77.32718586947311, 34.55466276582733], [-77.32705543416614, 34.554948935819006], [-77.32680182209756, 34.555207585358254], [-77.3266185569796, 34.555291050524175], [-77.32630677031527, 34.555278727027826], [-77.32605134176094, 34.55518105531308], [-77.32583499435023, 34.555216468391855], [-77.32553743113016, 34.55520356556177], [-77.32505052469948, 34.555180862766264], [-77.32361494305304, 34.555175895182636], [-77.32350417466557, 34.55517675195453], [-77.32348021265497, 34.55516856039765], [-77.32327948864908, 34.555097915836484], [-77.3219210611943, 34.55467791463771], [-77.32168975259054, 34.55461832623623], [-77.32165596820774, 34.554478096045145], [-77.32099628653863, 34.55417749110417], [-77.32093613919946, 34.55409188498175], [-77.32051406139658, 34.55375140467965], [-77.32042023042938, 34.553676375519224], [-77.32040948631118, 34.55365600105997], [-77.32037492600955, 34.553630622525134], [-77.32017354690817, 34.553585597272914], [-77.31959464052929, 34.55341653488157], [-77.31942657512758, 34.55343402488243], [-77.31881701964572, 34.55308859480383], [-77.31870523163447, 34.55301426880466], [-77.3186617799244, 34.55294972783249], [-77.31833874909074, 34.552692147881075], [-77.31815539325008, 34.55253284253485], [-77.31824367821055, 34.55239808082356], [-77.31803400931781, 34.552060652848766], [-77.3182592496498, 34.551659703753366], [-77.31886567456847, 34.55100685516457], [-77.31887798508546, 34.55096727820457], [-77.31889987662836, 34.55095703447573], [-77.31888110871205, 34.55095092209498], [-77.31900385275507, 34.55003484343977], [-77.31897214264444, 34.5499674070182], [-77.3189739447337, 34.54991554278934], [-77.31889393646777, 34.54979765966229], [-77.31863055631356, 34.55001647361615], [-77.31855030717568, 34.55023587442469], [-77.31881027589158, 34.550934305912186], [-77.31808408729347, 34.5508496391015], [-77.31779762342067, 34.55111536358068], [-77.31786569438744, 34.551468053943296], [-77.31727947731373, 34.55167677952441], [-77.31667929273692, 34.55188403963268], [-77.31648955945825, 34.55187538355787], [-77.31627085028742, 34.55195941564523], [-77.31569824396178, 34.55213351458603], [-77.31524464898645, 34.55217912710846], [-77.31538058449375, 34.552441755681755], [-77.31497216161178, 34.552941330205286], [-77.31494744370994, 34.55302814085298], [-77.31514812393942, 34.55345438135621], [-77.3149251583763, 34.55394201066542], [-77.31504515998351, 34.554448409578896], [-77.31506481155401, 34.554801580482724], [-77.31563828189194, 34.55469493527866], [-77.31601674367353, 34.55504701771768], [-77.316359427973, 34.55523890361059], [-77.31683611537913, 34.55539267737349], [-77.31719062954343, 34.55547517733104], [-77.31749648091085, 34.55556521906913], [-77.31718119974344, 34.55609693664621], [-77.31717952499693, 34.55610036533632], [-77.31717752648684, 34.55610161861833], [-77.31717587024235, 34.55610617157316], [-77.3171688503455, 34.556106273689835], [-77.31638173107015, 34.55648339951667], [-77.31616734773317, 34.55660344592887], [-77.31585374928616, 34.55710056744845], [-77.31595756079962, 34.55725510485186], [-77.31591125665052, 34.55747248133754], [-77.31573286755923, 34.559122272885396], [-77.31572095864227, 34.55924756789465], [-77.31550270998582, 34.560486352189415], [-77.31537889744826, 34.56118822820419], [-77.31536000858303, 34.56125788726172], [-77.31322874019341, 34.56399218093951], [-77.31252068973927, 34.565061817680025], [-77.31238061778937, 34.565137272154296], [-77.31232907986053, 34.56530177819004], [-77.3119510127552, 34.56813576577997], [-77.31128469796595, 34.56863548488572], [-77.30993314465988, 34.56964913018453], [-77.30917182993952, 34.570220119622185], [-77.30813654975202, 34.570202894323714], [-77.30601997079539, 34.57017074401669], [-77.30423494255416, 34.56964733346348], [-77.30326296707027, 34.569362327465385], [-77.3028693266871, 34.569107820141156], [-77.30193885681061, 34.56897403455139], [-77.30225310251855, 34.56993171305055], [-77.30165651424777, 34.57132119323055], [-77.30039419918184, 34.574330686044284], [-77.29891429041842, 34.57527069702414], [-77.29807969481871, 34.57391606861903], [-77.29751360674639, 34.5734550706643], [-77.29703247443808, 34.57309076826612], [-77.29591842214779, 34.572024410842914], [-77.2954333112862, 34.57149341569726], [-77.29504777197351, 34.57095553701478], [-77.29517660944985, 34.57021095814585], [-77.295197096972, 34.56946990636648], [-77.29537407702915, 34.569220453891504], [-77.29525370754625, 34.56895336813874], [-77.29498982041076, 34.568945944288274], [-77.29402165997126, 34.56837040999347], [-77.29347982649334, 34.56812532446191], [-77.29333280359332, 34.56796668645957], [-77.29284939782107, 34.567880798753876], [-77.29213290928621, 34.56778759249534], [-77.29096375972846, 34.56806756119519], [-77.29090150990979, 34.56802709603323], [-77.29082497031594, 34.56805077774489], [-77.28988711175268, 34.56790453358771], [-77.28956170675863, 34.56772483703398], [-77.28936483433131, 34.56751398755141], [-77.28910764620568, 34.56715350632099], [-77.28877932584413, 34.56688624330748], [-77.28873550009453, 34.56662362848177], [-77.2887876653387, 34.566515665789666], [-77.28857815192202, 34.566533793202865], [-77.28820729440434, 34.56658217836487], [-77.28793733779763, 34.56672912754321], [-77.28785583533373, 34.56723241947432], [-77.28815226510147, 34.56752050339012], [-77.28786110004559, 34.567975465577945], [-77.28769684079074, 34.56842740932776], [-77.28787640926122, 34.56869451212379], [-77.28771462287776, 34.56915936320043], [-77.2874386731021, 34.56934979710576], [-77.28699856853851, 34.56965899601668], [-77.28691201988474, 34.56975991259514], [-77.28685927190614, 34.56977564937363], [-77.28673310175955, 34.56985796791319], [-77.2864607359611, 34.57021569411173], [-77.28648192792257, 34.57068111688368], [-77.28648068367185, 34.57068748071057], [-77.28713233062228, 34.57106166043941], [-77.28766173133381, 34.571017132983684], [-77.28776125277254, 34.57096398066653], [-77.28790588559065, 34.57108951136695], [-77.28770570995516, 34.57123694780516], [-77.28720047891825, 34.5713370438796], [-77.2868997530354, 34.57152178846704], [-77.28555728257089, 34.57118371555242], [-77.28520439310671, 34.57116585286624], [-77.28353941877258, 34.571500559125596], [-77.28307983571207, 34.57160932280116], [-77.28292423008973, 34.571823382412134], [-77.28280953085786, 34.57206343411374], [-77.28230271740074, 34.572717236804166], [-77.28192682025856, 34.573212531258164], [-77.2814996291005, 34.57359683241061], [-77.28110744994751, 34.57417109154985], [-77.28116862844962, 34.574513494948036], [-77.28144109283366, 34.57478094406689], [-77.28125222650135, 34.575241152992575], [-77.28111873974184, 34.57545223164233], [-77.28125228587214, 34.5755865828519], [-77.28075501497665, 34.5763663250035], [-77.28076763129691, 34.576503090628336], [-77.28093649997265, 34.57664930956264], [-77.28103669414688, 34.57713714321013], [-77.2812795221568, 34.577350163864516], [-77.28138536853662, 34.577428559671084], [-77.28169499435367, 34.57762533143998], [-77.28198707578495, 34.57790551113256], [-77.28237636512259, 34.57810487296216], [-77.2828115043553, 34.57841308948953], [-77.28323043489533, 34.57878043823306], [-77.28384350090279, 34.57924104213064], [-77.28425077356732, 34.5795482845711], [-77.28501252737036, 34.57984139522097], [-77.28568390304078, 34.58031614220101], [-77.2870182825101, 34.58045994301181], [-77.28890842146133, 34.58495313405212], [-77.2890158607232, 34.585284638086435], [-77.28771490081643, 34.588254813064644], [-77.28743905728305, 34.5889203842586], [-77.2873633570309, 34.588950207028184], [-77.28503997861522, 34.58988809864595], [-77.28328934265039, 34.590380791787084], [-77.28173145929743, 34.590916984331024], [-77.28017377586458, 34.5911499031533], [-77.27912496612915, 34.59182751205005], [-77.27588498392583, 34.59330730326859], [-77.27504575406783, 34.59337964260534], [-77.2744532884824, 34.5937818510597], [-77.27521490503841, 34.59401595513215], [-77.27332804121832, 34.59710976452784], [-77.27315755356784, 34.59745072275143], [-77.27298811861709, 34.597789560382374], [-77.27178150808477, 34.60099217751849], [-77.27174401544372, 34.60111032195367], [-77.27168366075955, 34.60121761545184], [-77.27145023087554, 34.60207525881468], [-77.2705865325633, 34.60520994805869], [-77.2702430482679, 34.605484750864534], [-77.26937360900521, 34.60618032839395], [-77.26868697780166, 34.60652609827644], [-77.26864129509319, 34.606766190204425], [-77.26749078533612, 34.60769262278476], [-77.26672059834686, 34.608256902220276], [-77.26660902823532, 34.608311506607215], [-77.26648598916881, 34.60823846279], [-77.26604900544899, 34.607736972439795], [-77.26532538634103, 34.60751545237979], [-77.26435017605685, 34.60690343456918], [-77.26332031559683, 34.60610426515395], [-77.2629176534528, 34.60560813534343], [-77.26201857019561, 34.6048372010177], [-77.26186828634856, 34.60434920536878], [-77.26128669456376, 34.60480569653964], [-77.25991303023704, 34.60488056848067], [-77.25856468376325, 34.60501440973235], [-77.25747651346548, 34.60564465047513], [-77.2569086752643, 34.60675041238126], [-77.2569646746592, 34.607489716642675], [-77.25560351971376, 34.60763952852649], [-77.25480695682575, 34.60920533042575], [-77.25400812081513, 34.6107755306786], [-77.25411455361245, 34.61103619670362], [-77.25375877580609, 34.61125747465853], [-77.25298006675376, 34.611914839405785], [-77.25018069581319, 34.61333424170995], [-77.2467925840569, 34.61423052692949], [-77.24596706997812, 34.614845908017834], [-77.2458893361991, 34.6160448004684], [-77.24549166573536, 34.616902303318284], [-77.24495645571989, 34.617856692089184], [-77.24434937586092, 34.61866610418277], [-77.24175570897118, 34.62075908703993], [-77.24124550484878, 34.621164879320396], [-77.2409843895848, 34.621314600436115], [-77.23769614955725, 34.62326745366923], [-77.23463576329372, 34.624585040189565], [-77.23255924512041, 34.62559425588084], [-77.2304914332546, 34.6273787070522], [-77.2296499703405, 34.62796272236608], [-77.2265986517688, 34.629848420606805], [-77.22437671966043, 34.631317568588955], [-77.22359492994609, 34.63176429839439], [-77.2215353577668, 34.63468085907367], [-77.22161759013477, 34.63487071331967], [-77.21979626934083, 34.63826994476541], [-77.22026105267044, 34.638534514928935], [-77.22024530107669, 34.639305108275934], [-77.21914308835272, 34.63875399820001], [-77.21839369405147, 34.638794355131886], [-77.21433774093087, 34.63931068466408], [-77.21434778807885, 34.64030694300144], [-77.21438169615041, 34.64148975374804], [-77.21439071135173, 34.6417602912183], [-77.2143949851133, 34.64184227156524], [-77.21456883723823, 34.64214651954458], [-77.21504747122309, 34.64298415783976], [-77.21552328959608, 34.643816825209676], [-77.21608179973467, 34.64479421259827], [-77.21707321521683, 34.64516562818895], [-77.21822744583906, 34.64591574713975], [-77.21911343206625, 34.64734171125109], [-77.21943876792588, 34.64789683907007], [-77.22014407024739, 34.648425829187055], [-77.22075799968462, 34.64888627187387], [-77.22197104209911, 34.64921219205378], [-77.22218001886871, 34.64999860578518], [-77.22276903743207, 34.65157792809977], [-77.22285048285298, 34.651822275469364], [-77.22278798213121, 34.65193201515613], [-77.22300204450099, 34.652276950166296], [-77.22116703849757, 34.653689515223746], [-77.22064335481151, 34.655439522972664], [-77.21824460449486, 34.65384519564731], [-77.21363020580472, 34.653094584529725], [-77.21240464412014, 34.652788300925884], [-77.21202955285223, 34.652788307035216], [-77.21174739417134, 34.65278830433852], [-77.20774491978939, 34.65159111202921], [-77.20612335101106, 34.651122226886166], [-77.20413293251328, 34.650458755606365], [-77.20355047897954, 34.65021994739885], [-77.20230841254785, 34.649652837064764], [-77.20048712386405, 34.64892389118626], [-77.19526628858908, 34.647871982927434], [-77.19449881438611, 34.64772490810792], [-77.19436568185941, 34.647682587953895], [-77.19415315749714, 34.64765832343758], [-77.19430807349613, 34.64779617887987]], [[-77.32430491264118, 34.763229650904606], [-77.32600725062969, 34.761563463685924], [-77.32703198764644, 34.76053880562962], [-77.32641862318438, 34.759287494225404], [-77.3245667414354, 34.75786189110317], [-77.32459276913553, 34.757537967882385], [-77.32412362503423, 34.75779698848338], [-77.32398635977572, 34.757839891453486], [-77.32293809020476, 34.757753385466685], [-77.3224063313957, 34.75771653159911], [-77.32230535715962, 34.75771963326028], [-77.322193114282, 34.75769966807573], [-77.32176533838056, 34.75766583444637], [-77.3214197956158, 34.75761204128087], [-77.32118217112367, 34.757350765026736], [-77.3209287936713, 34.757201208638236], [-77.32074918451394, 34.757040007398466], [-77.32050550041848, 34.756738340196975], [-77.32028921203687, 34.75649833467083], [-77.32060934531309, 34.7561239312081], [-77.32061683959144, 34.75596610307965], [-77.3206333251637, 34.75585191249618], [-77.32073381992718, 34.75546271876878], [-77.32077285324306, 34.75535058314756], [-77.32088061049735, 34.75508741983542], [-77.32103328805036, 34.754934340509244], [-77.32143540500434, 34.75468122082408], [-77.32172826490627, 34.75456176321141], [-77.32186668095812, 34.75450989514959], [-77.32210882176608, 34.754425720002104], [-77.32250431659739, 34.75424549399607], [-77.32267610252839, 34.754124900469805], [-77.32277606003757, 34.75381094960461], [-77.32280769490312, 34.753716574480826], [-77.32306540975897, 34.753194450683566], [-77.32306572628089, 34.753193865514305], [-77.32306592878867, 34.75319349112496], [-77.32306679030998, 34.753191994276854], [-77.323404464591, 34.75266009958893], [-77.32358756708533, 34.75237890950605], [-77.32397870207707, 34.75209407077895], [-77.32437579204473, 34.75180060475661], [-77.3246941334321, 34.751716441395416], [-77.32489069318154, 34.751791470634956], [-77.32527455344038, 34.75178054221448], [-77.32541467725854, 34.75178281545553], [-77.32575526239651, 34.75174630062437], [-77.32588770559357, 34.75173210082414], [-77.32601145970554, 34.75171819795767], [-77.32672936884047, 34.751717227735], [-77.32674005337142, 34.75261905521689], [-77.32675526605843, 34.75268841398677], [-77.32673374942422, 34.75273944624154], [-77.32658385024622, 34.75368662653738], [-77.32746645106218, 34.75454302648112], [-77.32787635578325, 34.75501408461661], [-77.32851722256703, 34.75537119159231], [-77.32948064117578, 34.755857015066894], [-77.33032659255097, 34.75628358769147], [-77.33155717850462, 34.75690409069661], [-77.33155399589646, 34.756967730710365], [-77.33159994026124, 34.756925652168555], [-77.33285477578858, 34.757493214222436], [-77.33362712826874, 34.75807934456536], [-77.33534180449496, 34.75768760587847], [-77.33612809842872, 34.757719561183976], [-77.33701087540362, 34.75745131480354], [-77.33778737428224, 34.75730095295921], [-77.33873187087299, 34.757006013244784], [-77.33881272286429, 34.756932695639726], [-77.33910947005157, 34.75684357165309], [-77.33940224306505, 34.7567607532831], [-77.33946708603551, 34.756745413243394], [-77.33992111020696, 34.75663800363432], [-77.34003735063688, 34.75663679204816], [-77.34011671735003, 34.75664010968139], [-77.34018862257908, 34.75663161889293], [-77.34023604411311, 34.75668910078124], [-77.34024577570808, 34.756737964373784], [-77.34029546298203, 34.75677930021163], [-77.34034686201255, 34.756857325270616], [-77.34050347605336, 34.75709416516932], [-77.34051964010108, 34.75711864792974], [-77.34053155986129, 34.75713595340473], [-77.34075809468507, 34.757379510502936], [-77.34092055286496, 34.75756998759331], [-77.34093654164583, 34.75758644089912], [-77.3409582115935, 34.75759073903733], [-77.34100633668562, 34.75759943176352], [-77.34135127410903, 34.75766173677498], [-77.34152740548664, 34.75769355052645], [-77.3416631414724, 34.75771184489891], [-77.34149064517891, 34.757820019942734], [-77.34135835249442, 34.75791128376844], [-77.34126013559134, 34.75801079622563], [-77.34074623075784, 34.75832001092414], [-77.34051663119433, 34.75844224141228], [-77.34017400773261, 34.758566873286476], [-77.34006480901039, 34.75860326462511], [-77.33980349215881, 34.758697907443945], [-77.33950230621215, 34.75882029028908], [-77.33936083093147, 34.75896409028013], [-77.33898673800962, 34.75908551039046], [-77.33870051398586, 34.7591747032516], [-77.33843937213604, 34.759155275032555], [-77.33809333792206, 34.75920250307683], [-77.3371611944593, 34.75906017479658], [-77.33703418059295, 34.75901000804594], [-77.33684682406775, 34.759021043324125], [-77.33574909027905, 34.75902316521379], [-77.33399017774974, 34.76046958821815], [-77.33443019082115, 34.761986831308775], [-77.33438826967628, 34.76262061911358], [-77.33466255155267, 34.76276012851537], [-77.33484864163835, 34.76384330867594], [-77.33491705897023, 34.764241512678325], [-77.33506502391302, 34.76510271572678], [-77.33508791583297, 34.76523596460917], [-77.3356800473464, 34.766086417126985], [-77.33588459859429, 34.76620014142467], [-77.33603894078476, 34.76626869260691], [-77.33688428249503, 34.76700828066629], [-77.33700603527197, 34.76706389247493], [-77.33771085575287, 34.767757526829485], [-77.3378646007872, 34.767831313556655], [-77.33795259204047, 34.76792978414953], [-77.33837954111658, 34.768640602616166], [-77.33863725139346, 34.76881398972533], [-77.33866065478657, 34.76908943852262], [-77.33869425404662, 34.76916433065449], [-77.33874672042052, 34.76932003015335], [-77.33888791350998, 34.76940961898107], [-77.33886243429282, 34.76954914893721], [-77.3388170850358, 34.769703221520544], [-77.33861612910964, 34.76976920728995], [-77.3383811122953, 34.76995536612402], [-77.33807174693281, 34.77014491745967], [-77.33796253580249, 34.770222921026985], [-77.33787260016506, 34.77026572226192], [-77.33767584089318, 34.77034134974394], [-77.33739269926858, 34.77035648791232], [-77.33741726570346, 34.77054011447158], [-77.33749237102137, 34.77071171297319], [-77.33763371161058, 34.77108735184916], [-77.33765399219689, 34.77114645616078], [-77.33766397923543, 34.77117556130206], [-77.33767164907995, 34.771241923738856], [-77.33771897279206, 34.77165539484359], [-77.33771871372733, 34.77188501594422], [-77.33778443119334, 34.77261849924324], [-77.3377842529939, 34.77262119142194], [-77.33778379508516, 34.77262330319909], [-77.33778632858628, 34.77262325381076], [-77.3378272435463, 34.77265642176249], [-77.33803294857829, 34.77282594118934], [-77.33803648749043, 34.77283030080971], [-77.33828513278515, 34.772968522660626], [-77.33832871420847, 34.77299274946328], [-77.33838813559422, 34.77302578138318], [-77.33880095635455, 34.7732552656727], [-77.33905516061792, 34.773222657529416], [-77.33936056331866, 34.77337984310567], [-77.33984153080586, 34.77379807337016], [-77.34082339866285, 34.77344005804511], [-77.3410682090128, 34.77370076055537], [-77.34177295312438, 34.77359802895705], [-77.34326796777346, 34.772844094421636], [-77.34381667333146, 34.77249084678273], [-77.3453465402037, 34.77165673507075], [-77.34598251949497, 34.77052229498054], [-77.3470155730763, 34.76867960404103], [-77.34716649151568, 34.76841041347323], [-77.34519245644003, 34.76775756342429], [-77.34438039154804, 34.767552170161544], [-77.34366240718583, 34.76761194458035], [-77.3428163595536, 34.76768709795677], [-77.34244378615031, 34.767809151433134], [-77.34192771971716, 34.76786109394499], [-77.34155715318636, 34.767896634659294], [-77.34142252362216, 34.76785530922709], [-77.34145868017207, 34.767731066205855], [-77.34142179688715, 34.76746169852423], [-77.34144593013536, 34.76724543883799], [-77.34113524517132, 34.76689365819839], [-77.34109909758955, 34.76680562192159], [-77.34079717755729, 34.766388818066844], [-77.34078422158056, 34.76637518487192], [-77.34076200123503, 34.76636446859695], [-77.34068373224163, 34.766250119112016], [-77.34039202674931, 34.76588836406928], [-77.34015245296413, 34.7654732955396], [-77.34004764180865, 34.7653647900141], [-77.33993346076201, 34.76523795418463], [-77.33979959755564, 34.76503430197307], [-77.33972314835886, 34.76482592654486], [-77.33945110771157, 34.76459470704373], [-77.33942165500872, 34.76426938407855], [-77.33920215062236, 34.764141467862046], [-77.33942351610816, 34.7638571261016], [-77.33958978081006, 34.76360094700069], [-77.34003975625185, 34.763126376783354], [-77.34070215516726, 34.76259364690583], [-77.34078384592945, 34.76250889019367], [-77.34084442147845, 34.762454172004595], [-77.34117016268476, 34.76213681175627], [-77.34147203205218, 34.76184188704632], [-77.34182235896672, 34.76134532282982], [-77.34207968947146, 34.76110355343575], [-77.34235748467218, 34.76102105576944], [-77.34265857251616, 34.76099247115397], [-77.34299768359237, 34.760879655456414], [-77.34350894354456, 34.76109302634153], [-77.34353275109446, 34.76109995694799], [-77.34353824049658, 34.761104479919624], [-77.3435439997774, 34.761109225221254], [-77.34401610056244, 34.761498207966845], [-77.34405620570162, 34.761494584878456], [-77.34451327629245, 34.761848900076345], [-77.34470716847449, 34.76192445078309], [-77.34524941071882, 34.76215386913867], [-77.34655166138194, 34.762646214635865], [-77.34654376016027, 34.76273539208306], [-77.34654074855962, 34.76311837138846], [-77.34764134815265, 34.763476785963675], [-77.35097006761598, 34.7643694235892], [-77.35255950062863, 34.762726711219116], [-77.35370993834114, 34.76318733332923], [-77.35488170797346, 34.76223041939866], [-77.35524219901431, 34.76203737712222], [-77.35569577963331, 34.76167493385296], [-77.356027287322, 34.761346084988745], [-77.35604686646549, 34.76132967498727], [-77.35640668904249, 34.76102809221037], [-77.35672266036447, 34.76076326011343], [-77.35677693357187, 34.760717771010746], [-77.35683873808742, 34.76066596902777], [-77.35696651922868, 34.76056656376555], [-77.3570529084028, 34.76056706362731], [-77.35715267589956, 34.7606163894163], [-77.35721581232147, 34.76069557148003], [-77.35725896358386, 34.76080281289914], [-77.3573784963303, 34.76087016781594], [-77.3575968622548, 34.76113065185487], [-77.35760982865949, 34.76132141490078], [-77.35782370068117, 34.76139989612035], [-77.35804873099934, 34.76177231260448], [-77.35813999724687, 34.76203086617033], [-77.35830072720087, 34.76236695861422], [-77.35835320902216, 34.76248898498465], [-77.35843129723845, 34.76266076707056], [-77.35853477580719, 34.76291265218833], [-77.35855029697343, 34.76294931608253], [-77.35855466484979, 34.76296011458924], [-77.35856085025745, 34.762987054265274], [-77.35869105887723, 34.76341737812148], [-77.35868144658161, 34.763651062559354], [-77.35870429539679, 34.76390294583439], [-77.35872628866719, 34.76401080448711], [-77.35875796811455, 34.76437095934741], [-77.3587593449821, 34.7643796099482], [-77.35876049791375, 34.76438261598872], [-77.35876318591447, 34.764391297880366], [-77.35881930662225, 34.76461823565475], [-77.35873136821756, 34.7647953534521], [-77.35869694777347, 34.764878723794745], [-77.35856316228396, 34.765041625561985], [-77.35816035809208, 34.765133868651716], [-77.3579213686417, 34.76518859704632], [-77.35759635500223, 34.765274010034446], [-77.35663305934196, 34.765498761712976], [-77.35588498542282, 34.76567175824538], [-77.35495394200885, 34.767306068666606], [-77.35495786468644, 34.76734144600634], [-77.3561526459046, 34.76796111933452], [-77.35718586416876, 34.76772057679007], [-77.35820380232724, 34.767960664843464], [-77.35830942416639, 34.76797768937166], [-77.35854717083963, 34.76802915628947], [-77.359399746999, 34.76834922967997], [-77.35960393407215, 34.76856830330849], [-77.36036075016915, 34.76906664308311], [-77.36042693284055, 34.76911821359065], [-77.36045534979837, 34.769132575526584], [-77.36049082564168, 34.769146658230454], [-77.36092935062999, 34.76935532078194], [-77.36100367461471, 34.76945360779666], [-77.36114974854222, 34.76970982497175], [-77.3613288613857, 34.76996470552014], [-77.36145544445955, 34.77010709133309], [-77.36168937620306, 34.77037769382889], [-77.36193540565348, 34.77066353408986], [-77.36201263946516, 34.7707632424305], [-77.36216413530916, 34.771072567180425], [-77.3623661802833, 34.771389351009084], [-77.36241009377393, 34.7714615662493], [-77.36246564112713, 34.77162815286485], [-77.36232284011622, 34.771899009452184], [-77.36222685050086, 34.77195666226753], [-77.3622135182599, 34.77196454496396], [-77.36219632093511, 34.77197418720839], [-77.3615261308443, 34.77233777311454], [-77.36143065375364, 34.77240138254707], [-77.36111290556701, 34.77268526631736], [-77.36092943702184, 34.77285935638281], [-77.36053432954536, 34.77327836517649], [-77.36037220643297, 34.7734455018631], [-77.36030351995285, 34.77352045823305], [-77.36018142050482, 34.773682906345456], [-77.35993088441774, 34.77422125093021], [-77.35962909882733, 34.774402884501555], [-77.35932337602463, 34.774725171596934], [-77.35926551698732, 34.775394102080156], [-77.35940571553667, 34.77579078065576], [-77.35940017688128, 34.776000463796116], [-77.35929023106155, 34.77616861277892], [-77.35918417418735, 34.77648410036417], [-77.35910468461398, 34.77661394194808], [-77.35891790006545, 34.77688631794381], [-77.35888245847556, 34.77693774028494], [-77.35886849719932, 34.77697643945301], [-77.3587441487182, 34.77723234707456], [-77.35863636123759, 34.77741084539742], [-77.35844835965675, 34.77778688640913], [-77.35813212040247, 34.77810586265372], [-77.35794632537556, 34.778287817071345], [-77.3578777052694, 34.77835114490419], [-77.35770995110559, 34.77858362303434], [-77.3573833598661, 34.77904023284599], [-77.35734138001872, 34.779194570494354], [-77.35724937085092, 34.77936575257527], [-77.3570834852033, 34.77966354926617], [-77.35699445970056, 34.7799018109847], [-77.35688492310703, 34.78015329282716], [-77.35677083602894, 34.78045739984801], [-77.35671084064447, 34.780651606494615], [-77.35665191156899, 34.78083921935499], [-77.35651138317633, 34.7811410374753], [-77.35643992253583, 34.78148760457062], [-77.3567141577106, 34.782011153041466], [-77.35686953507292, 34.782201296370694], [-77.356913320813, 34.78240018115143], [-77.35678474359851, 34.78255420852527], [-77.35649259935197, 34.78277372258121], [-77.35624853673644, 34.78317487558723], [-77.35617772156697, 34.78326122019345], [-77.35602771679804, 34.78344412056106], [-77.35599953688003, 34.78347848037349], [-77.35599202575824, 34.78350417538551], [-77.35573638586126, 34.78366600402455], [-77.35574906880515, 34.78385564550743], [-77.35546485882446, 34.7841302151596], [-77.35555886747662, 34.784531717398764], [-77.35588092507156, 34.784878944464495], [-77.35598561850085, 34.78524660662238], [-77.35598515141866, 34.78543078155364], [-77.35621689570308, 34.78604284473729], [-77.35621024926078, 34.786068796642944], [-77.3561999791831, 34.78609090810465], [-77.35597353139181, 34.78654519193627], [-77.3556701710778, 34.786722079569884], [-77.35532412611859, 34.78679521606766], [-77.35526471005876, 34.78680777354745], [-77.35519364750814, 34.78683150423272], [-77.35486738730803, 34.78690677729748], [-77.3546276638397, 34.78698362618075], [-77.35436448854574, 34.78710056710207], [-77.35418739421971, 34.78729231952651], [-77.35415516939929, 34.78734704838824], [-77.35404244946393, 34.78754710582204], [-77.35383736652673, 34.78792553061887], [-77.35379854948549, 34.7880209916556], [-77.35375387060677, 34.78808101112038], [-77.35363347651948, 34.788196565889805], [-77.35318748370192, 34.788541774500565], [-77.3530318890642, 34.78867410283081], [-77.3534000000134, 34.78899999999183], [-77.35371296871344, 34.78886977002776], [-77.35375532514956, 34.78883228776919], [-77.35378775822895, 34.78876981321008], [-77.3539588799523, 34.78863634642555], [-77.35393784098316, 34.788553078470834], [-77.35400627694372, 34.78849386014521], [-77.35416014813109, 34.78842716204303], [-77.35421270382885, 34.788215583602174], [-77.35424202515279, 34.7881761947406], [-77.35437903082368, 34.78783926273957], [-77.35456711568338, 34.787913408095804], [-77.35457535086455, 34.78773360476383], [-77.35450884066749, 34.787646115165415], [-77.35466786485648, 34.787486360758194], [-77.35463088112968, 34.78737221123506], [-77.35466972884169, 34.78733236248419], [-77.35480506834102, 34.78729972659979], [-77.35484900101625, 34.7873261208088], [-77.35490365342032, 34.78728925785043], [-77.35510446918374, 34.78729455628899], [-77.35518289469346, 34.78728126239153], [-77.35588150000925, 34.78707222554308], [-77.35588393289186, 34.78707171135408], [-77.3564818367287, 34.786723077106465], [-77.35652883793827, 34.786628786544185], [-77.356708025522, 34.78624299594724], [-77.35682398958544, 34.785790199053366], [-77.3567952450386, 34.7857142814147], [-77.3567956174993, 34.78556741662875], [-77.35692221217623, 34.78519947790892], [-77.35708685026303, 34.784788318548536], [-77.35708259043243, 34.78469636649347], [-77.35697845095311, 34.784368752913096], [-77.35691702495885, 34.78407918935119], [-77.35692523402089, 34.783963090237364], [-77.35698870895152, 34.783545039452015], [-77.35733834961783, 34.783459708905454], [-77.35752035928662, 34.78317186020867], [-77.35775819747099, 34.782834857308536], [-77.35781962141036, 34.78274919783579], [-77.35784236317993, 34.78272531352884], [-77.35784225386618, 34.78268895982642], [-77.35781776522873, 34.78262982388011], [-77.35767560201428, 34.78186582676098], [-77.3574555169932, 34.78166803836263], [-77.35723540412162, 34.78139442790564], [-77.35707997850997, 34.78122122757019], [-77.35716978891622, 34.78093745265451], [-77.35729879614323, 34.780857376858116], [-77.35739596009694, 34.78055854415052], [-77.35741140880718, 34.780337551961836], [-77.35738436945347, 34.780202056176975], [-77.35748031379066, 34.779947672200805], [-77.35752232329438, 34.77981713336041], [-77.35760494058013, 34.77966401164418], [-77.35768087007958, 34.77952687294632], [-77.35783101277133, 34.77936593091824], [-77.35816518673393, 34.778984592252755], [-77.35821920375994, 34.77890973403809], [-77.35827065268232, 34.778862253074585], [-77.35850749503483, 34.77863245008518], [-77.35861845171675, 34.77852304444204], [-77.35879006140358, 34.77834580483829], [-77.35881759089011, 34.77831312108626], [-77.35886859465901, 34.77824558126874], [-77.35898803382368, 34.778093154332865], [-77.359200196317, 34.77766131534739], [-77.35922323294201, 34.77761623474716], [-77.3592129575407, 34.77753986934527], [-77.35917089427146, 34.77722726379718], [-77.3592333220104, 34.77706053349443], [-77.35928314783678, 34.77695741751244], [-77.3592998536227, 34.77693317901282], [-77.35936882553379, 34.776828339939875], [-77.35947022640173, 34.77665642638407], [-77.35950663579845, 34.776596953757156], [-77.35952276627819, 34.776548970388475], [-77.35963348358283, 34.77637964151175], [-77.35983606096893, 34.77615301180809], [-77.35981129460782, 34.77606821473587], [-77.35980059686699, 34.77580434946859], [-77.35980534905579, 34.77562444048324], [-77.35978864843418, 34.77557718764917], [-77.35979554067303, 34.775497503836945], [-77.35993130199913, 34.77535438685951], [-77.36035122626521, 34.7749088061088], [-77.36047484374478, 34.774698876904026], [-77.36055185895762, 34.77442121177724], [-77.36073641193444, 34.774041234567306], [-77.36082864840049, 34.77370424062044], [-77.36112244441254, 34.7732912020172], [-77.36116552049053, 34.773245520129244], [-77.36119306029345, 34.77321938809616], [-77.36146733036796, 34.7729903894429], [-77.361667903761, 34.772879500259045], [-77.36180250103328, 34.772789827898364], [-77.36198877368071, 34.77268877282424], [-77.36248588768257, 34.772410049547574], [-77.36275805479153, 34.772249130561185], [-77.36281878934047, 34.772205784450236], [-77.36285664790516, 34.772177068896724], [-77.36302903479162, 34.77180089678027], [-77.36308991667323, 34.77157968823315], [-77.36298058344633, 34.7714829320331], [-77.36268622526863, 34.7709989785581], [-77.36260932627154, 34.770887242384845], [-77.36253795873836, 34.770797899097175], [-77.36209007188546, 34.770231115918136], [-77.362095856578, 34.77020848445428], [-77.36207364556776, 34.77018756571686], [-77.36201449733699, 34.77014143017923], [-77.36179811730557, 34.76988617530199], [-77.36162025323591, 34.76953965320812], [-77.36160628664378, 34.76951977851576], [-77.36159403223138, 34.76949828398225], [-77.36115069414899, 34.76894742517798], [-77.36100714838219, 34.76887668410589], [-77.3605778988076, 34.76871065290849], [-77.36010704659176, 34.7684186150116], [-77.36004793123091, 34.768383482338194], [-77.36003595636896, 34.76836766773102], [-77.35997918197498, 34.76830969474518], [-77.35954617414654, 34.767845117851635], [-77.35923670973591, 34.767728938995276], [-77.35893225629108, 34.76740045690819], [-77.35859399823596, 34.76699800841563], [-77.35755448537404, 34.76698507579236], [-77.35884540425728, 34.766132493982326], [-77.35901117831929, 34.76588727288689], [-77.35900826626919, 34.765810758942784], [-77.35899667737195, 34.76577399883819], [-77.35928468118868, 34.764853085015986], [-77.35928677727952, 34.7647977581714], [-77.35929101720839, 34.764759173034875], [-77.35927648167551, 34.764648389960364], [-77.35928144386654, 34.764372306142754], [-77.35926326795125, 34.764313600307545], [-77.35916803392332, 34.76406529647544], [-77.35913283061721, 34.76384412070237], [-77.35908789826951, 34.76373269930602], [-77.35906720376592, 34.76338413204597], [-77.3590661208813, 34.76336589359769], [-77.35906299839088, 34.763357620896265], [-77.35905707088307, 34.76334120519093], [-77.35890915588905, 34.76290005524034], [-77.35890179593201, 34.762693140842515], [-77.3587317912066, 34.762437017892445], [-77.35872733515919, 34.762433089920094], [-77.35872399703632, 34.76242537133276], [-77.35859991248502, 34.76213686024354], [-77.35852401393207, 34.761978153484066], [-77.35836538953842, 34.761528777030875], [-77.35831013706051, 34.76143733631421], [-77.35810535375101, 34.76106085412584], [-77.35805263387498, 34.76098086241764], [-77.35797967252742, 34.7608629260605], [-77.35777936333693, 34.76061821703739], [-77.35769881781684, 34.76046452817801], [-77.35756853352513, 34.760215926595585], [-77.35754733173675, 34.76018681209178], [-77.35748568655947, 34.760171144201486], [-77.35717694589124, 34.760077446362374], [-77.35703897870732, 34.7599766126989], [-77.35675305558242, 34.76005841756576], [-77.35636156900354, 34.76032543802566], [-77.35634476793761, 34.76033504579376], [-77.35633290456822, 34.7603449890788], [-77.35597452395261, 34.76064536542805], [-77.35554103082399, 34.761008691746675], [-77.3544566388407, 34.761561642715755], [-77.35425093441846, 34.761671797048166], [-77.35411891097785, 34.76177961266822], [-77.35379968053297, 34.761651796447026], [-77.35374709205429, 34.76034987274085], [-77.35277863390863, 34.75814467479442], [-77.352744402904, 34.75796732594102], [-77.35272975048022, 34.757899569106286], [-77.35269197008348, 34.75773815561058], [-77.35220302874879, 34.756022317471036], [-77.35285483259517, 34.75532945846824], [-77.35293758188959, 34.75494675986599], [-77.3531399145246, 34.75450950992889], [-77.35323107713437, 34.75438624005331], [-77.35338347226204, 34.75391080721714], [-77.35339450842292, 34.75389276226941], [-77.35338953535984, 34.75352911954968], [-77.35338060870302, 34.753423818079675], [-77.3533365711459, 34.7532032108586], [-77.35333180096178, 34.753179314897466], [-77.35312237720068, 34.75297187489735], [-77.35312373472696, 34.75294512739041], [-77.35309841243595, 34.75291991960526], [-77.3529791904632, 34.7528866612726], [-77.35256935957214, 34.7526790630622], [-77.3524732206596, 34.752657010839926], [-77.35226867365503, 34.75260164739445], [-77.35201842014034, 34.752513551028485], [-77.35162755797039, 34.75251897549147], [-77.35118423489757, 34.75257322998395], [-77.35076356115842, 34.75270909106131], [-77.35016105937859, 34.7529434113212], [-77.34959758001425, 34.75345554255359], [-77.3494662277581, 34.753604448434984], [-77.3493966947007, 34.75397048489177], [-77.34905685965836, 34.75445970277231], [-77.34903218351745, 34.75449649707688], [-77.34901006040343, 34.75451091063364], [-77.34831282775572, 34.75495868737077], [-77.34818196511729, 34.755019901518345], [-77.34765584978832, 34.75515804850684], [-77.34719230386345, 34.755419788583296], [-77.3469225915444, 34.755619901108645], [-77.34680273799142, 34.7557129798711], [-77.34670605931473, 34.75580174667302], [-77.34648119265893, 34.75606642596722], [-77.3461373894587, 34.75636713132095], [-77.34609658771969, 34.75640086908321], [-77.34567631860942, 34.75663001093979], [-77.34535273502847, 34.75689909771779], [-77.34528164059293, 34.75697188921916], [-77.34513657402687, 34.75742846382862], [-77.345137731324, 34.757479005229285], [-77.34513633646739, 34.75751065655971], [-77.34500221392393, 34.757947734331744], [-77.34498646050541, 34.75798713064251], [-77.34493869907067, 34.75805680187287], [-77.34474198838123, 34.75835551016484], [-77.34457019426364, 34.75853160106199], [-77.3441450740082, 34.758993163014274], [-77.34407907653781, 34.759044870349115], [-77.34406703038316, 34.759087988220394], [-77.34404513643175, 34.75913803857917], [-77.34407918940988, 34.759219853980476], [-77.3440896105972, 34.75949801929382], [-77.3440935582795, 34.75957172617609], [-77.34410054554905, 34.759702185780824], [-77.34410988657768, 34.759876605697464], [-77.34411947059536, 34.7600555489448], [-77.3441200249019, 34.76006589897908], [-77.34412758160528, 34.760083994177904], [-77.34419151438905, 34.76020802000407], [-77.34433501830539, 34.76040091415565], [-77.34437805791764, 34.76045876695761], [-77.34465632077934, 34.76083279557402], [-77.34421333696609, 34.76081958354633], [-77.34405171171932, 34.760709687580466], [-77.34392916628084, 34.76076667655923], [-77.3437235135598, 34.76059722976313], [-77.34370507139938, 34.76058203441433], [-77.34368549751254, 34.76057441809678], [-77.3436340939538, 34.76056558730188], [-77.34329705338256, 34.76050157153036], [-77.3431155944885, 34.76047398079147], [-77.34274681491023, 34.760417906603024], [-77.34252672392728, 34.76043880155525], [-77.34224423462788, 34.760522693241995], [-77.34186695655706, 34.76064753221468], [-77.34155641992635, 34.76064001227962], [-77.34114899451089, 34.76105644720907], [-77.34079764380843, 34.7612444732511], [-77.34067322165399, 34.76150289800253], [-77.34057923505674, 34.761802794928386], [-77.34033292136691, 34.762109433757956], [-77.33961278978441, 34.762623045670395], [-77.3395383301632, 34.76268218000524], [-77.33946760970824, 34.76271856763745], [-77.33891699238922, 34.76308071681157], [-77.33873439380007, 34.76317983840358], [-77.33869377611767, 34.76321067007058], [-77.33867940901705, 34.76323839008892], [-77.33865418173463, 34.76328275917002], [-77.33837422759194, 34.76376760165202], [-77.33821268709863, 34.76406115232047], [-77.33803907637855, 34.76454394009132], [-77.33807853873736, 34.76478288606588], [-77.3382413874466, 34.76487564059671], [-77.33855378104894, 34.76493657378468], [-77.33882210696206, 34.764938982533046], [-77.33905500265655, 34.765136388900586], [-77.33922193220573, 34.76521124645097], [-77.33930832985465, 34.76532737484835], [-77.33947240846204, 34.765566535086634], [-77.33943386354753, 34.76583664189393], [-77.33954001020464, 34.76651363219219], [-77.33953598458874, 34.76653256612649], [-77.3395373307935, 34.7665454246979], [-77.33955202485447, 34.76655003514599], [-77.33959705462632, 34.76656416360882], [-77.34017551469076, 34.76684313933868], [-77.34025044202127, 34.76692198317453], [-77.34040403831844, 34.767061623461316], [-77.34050294303532, 34.76736661276606], [-77.34050493355959, 34.767374464376246], [-77.34050410520032, 34.76737886077297], [-77.34050210122498, 34.76740386550334], [-77.34047390000941, 34.76786609327876], [-77.34041106311292, 34.76823871626451], [-77.34043603750095, 34.76835865853264], [-77.34072353574365, 34.76870318239733], [-77.34077839761945, 34.7687446574547], [-77.34119628380236, 34.76913802675093], [-77.34160537827664, 34.76917307416438], [-77.34096952858343, 34.769918046557905], [-77.34078848674102, 34.77017281118444], [-77.34078921126644, 34.77025973200365], [-77.3407340130363, 34.77035544247573], [-77.3404033360722, 34.77110829293583], [-77.3401277301199, 34.771325171764744], [-77.33983116422554, 34.77183781823934], [-77.33981293246808, 34.771861977553016], [-77.33937678072597, 34.772402873434345], [-77.33921149167334, 34.772605891225794], [-77.33898375768085, 34.772626523736314], [-77.33866415762247, 34.7727594095072], [-77.33864565334491, 34.77274912311271], [-77.33864229068004, 34.772747253815844], [-77.33850931284248, 34.77265684689908], [-77.33848129227941, 34.77259743238211], [-77.33851682642597, 34.77252076692026], [-77.3385389645444, 34.77243697418589], [-77.33845458299318, 34.77238571306193], [-77.33842424363665, 34.772130999763725], [-77.33839241242532, 34.77188037232252], [-77.33848081168759, 34.77155095806577], [-77.3383218554129, 34.77142138891424], [-77.33827230455233, 34.77113565001524], [-77.33833638284602, 34.771083384847685], [-77.33842523223436, 34.77063278020824], [-77.33852777949777, 34.770569773154506], [-77.33869103467214, 34.770349281408244], [-77.33906579848144, 34.77000864216543], [-77.33913589631979, 34.76998562488057], [-77.33928126817166, 34.769491728878094], [-77.33936294450385, 34.76904445080908], [-77.33929646895403, 34.76900227121939], [-77.33902004334465, 34.76860634514747], [-77.33900803009331, 34.76855444229782], [-77.33900830905762, 34.76852874914357], [-77.33898714648889, 34.76849305762419], [-77.33889177162922, 34.767595633153256], [-77.33855264567543, 34.76730239490959], [-77.33826061787522, 34.76687031489924], [-77.33811945988906, 34.7667267668401], [-77.33791701179712, 34.76635257270072], [-77.33787948805868, 34.766272292674294], [-77.33787104789295, 34.76624973510493], [-77.33760381837129, 34.765822710319064], [-77.33754540189827, 34.76571175865232], [-77.33745338946761, 34.76552523844639], [-77.33722368631986, 34.76517075992521], [-77.33701613245981, 34.76492852837431], [-77.33679562397157, 34.76471152308032], [-77.33659420502778, 34.76435894862571], [-77.33647753864078, 34.76416774066436], [-77.33645401737549, 34.76403083941603], [-77.33640314794283, 34.76373476806798], [-77.33629038838583, 34.76307852665151], [-77.33625578378204, 34.76276160831729], [-77.33615890814221, 34.76212180131199], [-77.33603023009277, 34.76135840631394], [-77.3359296926152, 34.76076190501498], [-77.33677509807396, 34.76078578501795], [-77.33713816461822, 34.761012821126954], [-77.33754262993251, 34.761096798845585], [-77.33780250114657, 34.7611444108079], [-77.33810759933381, 34.761214229890605], [-77.33821390208406, 34.76125629321771], [-77.33862519742651, 34.76123491229677], [-77.33874604438918, 34.76107891757809], [-77.33892457011501, 34.760861793839005], [-77.33900017787971, 34.760757544461725], [-77.33908781765142, 34.76058443488948], [-77.3394122248562, 34.760017146496395], [-77.33943810627616, 34.75972275414075], [-77.33986931848776, 34.759275773255204], [-77.33993465276886, 34.75920331275938], [-77.34001739676606, 34.759155951993755], [-77.3405800842425, 34.758891592469936], [-77.3408499311315, 34.75873751210352], [-77.34122343046457, 34.75850320448366], [-77.34130682110214, 34.75845243949116], [-77.34170419115371, 34.75821765947112], [-77.34201413789252, 34.758080068393376], [-77.34219858623797, 34.75801732429767], [-77.34260784878552, 34.75787810316054], [-77.34267487648546, 34.75786792697712], [-77.34276452473893, 34.75788036736758], [-77.34296508667708, 34.75790002177479], [-77.34328516686655, 34.75773309063136], [-77.34329830230755, 34.75771491947215], [-77.34323124679823, 34.7573987828364], [-77.34292850937295, 34.75729462803356], [-77.34285113691972, 34.757261489335434], [-77.34237226761061, 34.7572708946642], [-77.34225004785097, 34.75726842467505], [-77.34211813805109, 34.75730774388767], [-77.3416507705496, 34.757269124405894], [-77.34141073204576, 34.75722185420189], [-77.34109137581413, 34.757132610997175], [-77.34103080962, 34.75706749373948], [-77.340876865155, 34.75684399242417], [-77.34072989330608, 34.75662138255389], [-77.34066601514962, 34.756534986060586], [-77.34051648721726, 34.75633274520513], [-77.34027513405837, 34.75619636620861], [-77.34024490551198, 34.756147389683726], [-77.34018476623442, 34.75612965032233], [-77.33977918490982, 34.75611129692283], [-77.33927517228105, 34.75606573542729], [-77.3389821277107, 34.75614512359065], [-77.33852045685161, 34.75629073712974], [-77.33815898801289, 34.75635350940637], [-77.33771566528428, 34.756380128064876], [-77.33679386807384, 34.75642072352188], [-77.33647778691994, 34.756516770006854], [-77.33486209950134, 34.756451107812545], [-77.33428028494139, 34.75639736191291], [-77.3341163523612, 34.75639679004588], [-77.33382284730922, 34.75634177438108], [-77.33272911735017, 34.75601326542287], [-77.33194487462876, 34.7556235065627], [-77.33148616952637, 34.75539221195571], [-77.33081897055692, 34.75505577557904], [-77.33025914785104, 34.75475894096179], [-77.32989584098273, 34.75442927348535], [-77.32914214247482, 34.75404109047879], [-77.32888987580492, 34.75376843434972], [-77.32858986015268, 34.753411772989296], [-77.32840823559027, 34.753028755519665], [-77.32837618948204, 34.75246631632968], [-77.32830764607333, 34.752317842607496], [-77.32850811227686, 34.75163225347312], [-77.3287538480408, 34.751439832054174], [-77.32885061913406, 34.751297372086306], [-77.32904554565486, 34.75115617673844], [-77.32886240667852, 34.75110314935083], [-77.32868397685881, 34.7511496936251], [-77.32840864698662, 34.751303303510014], [-77.32822984565001, 34.75138565243388], [-77.32755964956309, 34.7513163533112], [-77.32718582881961, 34.751388255492635], [-77.32685313296737, 34.75144242048296], [-77.32636937731431, 34.75144307425749], [-77.3259583375613, 34.75148925155785], [-77.3257703722546, 34.75150940412034], [-77.32564897387466, 34.75152306119345], [-77.32548269527678, 34.75150473753551], [-77.3253553734286, 34.75150267198195], [-77.32526298931593, 34.75150530213812], [-77.32480625489379, 34.75133096107153], [-77.32428510556372, 34.75146874296557], [-77.32416532010727, 34.75147492200169], [-77.32402781234343, 34.751492198741104], [-77.32343712407393, 34.7519188594065], [-77.32322344251644, 34.752056191897836], [-77.32321342062806, 34.7521989046736], [-77.3231727307759, 34.752323756280035], [-77.32304679573417, 34.75253808294913], [-77.32293751528023, 34.75272406287531], [-77.32280126795804, 34.75295892689495], [-77.32278482723544, 34.75298866044358], [-77.32275950839423, 34.75303546886296], [-77.32264247199518, 34.75325184169355], [-77.32239465035842, 34.753710001461975], [-77.3223612199971, 34.753777730530764], [-77.32234362198083, 34.75383023004147], [-77.32226816711149, 34.754034158389686], [-77.32221038027208, 34.75407660528864], [-77.32198941292387, 34.75415475640606], [-77.32162771468465, 34.754299463237366], [-77.32153486972194, 34.754339314777276], [-77.32149416037595, 34.75435427892949], [-77.32140154747108, 34.75439653947335], [-77.32082618992612, 34.754716019547196], [-77.32059584360158, 34.75483503083555], [-77.32055413346843, 34.75499996489145], [-77.32047938302614, 34.755182037644346], [-77.32034079510316, 34.75551654566332], [-77.32028184975614, 34.75572794756361], [-77.32025963375293, 34.75581398523315], [-77.32008125633023, 34.75603945305244], [-77.3197418297294, 34.75638398383622], [-77.31958450643887, 34.7564925631486], [-77.31948884986502, 34.75660794483254], [-77.3195068586516, 34.756717651343294], [-77.31963172069419, 34.7567624425847], [-77.31988887806551, 34.75704052462016], [-77.31998170222107, 34.75714090173733], [-77.32008615916598, 34.75725969942587], [-77.3202685129793, 34.757475896422335], [-77.32038671773165, 34.75761781860841], [-77.32052448989803, 34.75781233933204], [-77.32062360906046, 34.75791462820871], [-77.32061136720785, 34.7580411219228], [-77.32043330975576, 34.75812574355927], [-77.32014242879605, 34.75826398387393], [-77.31955916987496, 34.75854776329446], [-77.31921311475652, 34.75871729989524], [-77.31957004380969, 34.75903363814322], [-77.32004635150685, 34.75945577261571], [-77.32099898151336, 34.76030003530617], [-77.32290429997806, 34.76198853566663]], [[-77.35832517148077, 34.78695044068937], [-77.35809777962615, 34.786199494908935], [-77.35887472442256, 34.78672173144588], [-77.35923988579776, 34.786569759951504], [-77.36069980171754, 34.785962158134595], [-77.3621596954263, 34.785354539597385], [-77.36312708552114, 34.78495187889233], [-77.36228552069983, 34.784921364872645], [-77.36185437012384, 34.78485520609404], [-77.36050354206384, 34.78477502334855], [-77.3599511595247, 34.78473778353402], [-77.3597731212825, 34.78473426628885], [-77.35947372733379, 34.7846874428849], [-77.35918001123646, 34.78456704697264], [-77.35917354858003, 34.784309624605996], [-77.35917714885368, 34.783918379506176], [-77.35922586295142, 34.783768700515445], [-77.35923193082283, 34.783561477950315], [-77.35922706956825, 34.78320989188872], [-77.35927272484655, 34.78298610468031], [-77.35951678490103, 34.78252973507537], [-77.35973203129188, 34.78226813904092], [-77.35991124367067, 34.78204995307037], [-77.36006355220843, 34.781926375784536], [-77.36013395078024, 34.78184955795731], [-77.36011481644121, 34.78174312465524], [-77.36021981097963, 34.78132037375305], [-77.36003395774098, 34.7808842791695], [-77.36006092280905, 34.78070554422729], [-77.36015592706443, 34.78057984366572], [-77.36031483592853, 34.78023517147724], [-77.3603612524145, 34.78016686211484], [-77.3604934177358, 34.78004585570484], [-77.36064314915602, 34.77987912008992], [-77.36073157762814, 34.779821780122916], [-77.36104145202806, 34.77957243594882], [-77.3611188747483, 34.77939808505487], [-77.36105830824253, 34.77906054177297], [-77.36101180707175, 34.77880139042322], [-77.36101191488409, 34.778692227581224], [-77.36097314357814, 34.77850824693055], [-77.36112061703344, 34.77841365804868], [-77.3612389098626, 34.77832163732106], [-77.36141431403593, 34.77814522706936], [-77.36157893990608, 34.77756370443937], [-77.36170232489647, 34.777365355723134], [-77.36177970711321, 34.77724527751143], [-77.36202063318105, 34.77699710038865], [-77.36206375349092, 34.77696107348748], [-77.3621007213646, 34.77694554808771], [-77.36242152141185, 34.77679744551416], [-77.36280963155212, 34.776634400329534], [-77.3630526117042, 34.77633208287972], [-77.36321727234186, 34.77598922835955], [-77.36338278181934, 34.775716524193854], [-77.36349199038547, 34.77555317660813], [-77.3639179138782, 34.77488291680148], [-77.363998100686, 34.77481340685768], [-77.36397498220153, 34.77478129961261], [-77.36446424282616, 34.774148314212155], [-77.36516612552484, 34.77410369915359], [-77.36529036042845, 34.77400196393772], [-77.3655443929848, 34.773676850127885], [-77.36555283738609, 34.77367181342644], [-77.36555749642025, 34.77367625126765], [-77.36555835600649, 34.7736817361692], [-77.36562024077026, 34.77409639045996], [-77.36569974445473, 34.774290426158515], [-77.36588350939735, 34.77487931042303], [-77.36629577797429, 34.775532208884464], [-77.36690016038807, 34.7751372850409], [-77.36708020112847, 34.77504039696114], [-77.3673807766704, 34.77487864307349], [-77.36763355770933, 34.77483927636378], [-77.36778714923102, 34.774815356480254], [-77.36841641522271, 34.77471735415122], [-77.36847509259051, 34.77471811815311], [-77.36909623059371, 34.77472620284624], [-77.36959266986963, 34.77453415337159], [-77.36930665751147, 34.77400148795016], [-77.36893871586047, 34.77360736638438], [-77.36827318406615, 34.773141521451], [-77.36811919704145, 34.7730560309541], [-77.3677386600654, 34.77277282008783], [-77.36773721122084, 34.77276651863692], [-77.36774637546414, 34.77274624930228], [-77.36805380676999, 34.772531763352426], [-77.3683962754521, 34.77271760335178], [-77.36900640806235, 34.77265140755706], [-77.36904031355833, 34.772647729009115], [-77.36905872503101, 34.7726457314208], [-77.36912089341492, 34.7726389861221], [-77.36971827599919, 34.77258383207079], [-77.37000772650481, 34.77244255630248], [-77.36980714847957, 34.772277741215035], [-77.36965036097521, 34.77214803350476], [-77.36927368387816, 34.771905394347485], [-77.36915433548641, 34.77173252749408], [-77.36880598126079, 34.771515817246396], [-77.36875230978258, 34.77149142149681], [-77.36869449302324, 34.77147771477303], [-77.36826222942682, 34.77137523662473], [-77.36812379781868, 34.771446442322976], [-77.36797695676489, 34.771330189145026], [-77.36760224587043, 34.77103310306744], [-77.36712033533237, 34.77100510331207], [-77.36697900781331, 34.770969971402614], [-77.36667603243775, 34.77102715768684], [-77.3665984416371, 34.77101158307009], [-77.3663398614646, 34.770961620634594], [-77.36620560046359, 34.77083254042142], [-77.36617393842714, 34.77074205225424], [-77.36615673750305, 34.7705358334897], [-77.36612063488954, 34.770317981770646], [-77.36614764730834, 34.76997343565608], [-77.36582072512701, 34.76955031949101], [-77.36581736743011, 34.76929864178632], [-77.36566438264165, 34.76886906490385], [-77.36561904712028, 34.76874176270768], [-77.36552655024556, 34.768637653540026], [-77.36519192268685, 34.768286760963875], [-77.36496455857457, 34.768121722701984], [-77.36467104780284, 34.76787119810807], [-77.36443095271676, 34.76769501928787], [-77.36432201611444, 34.767496710014825], [-77.3637596447513, 34.76700578778133], [-77.3636686258559, 34.76690469594256], [-77.36364199764367, 34.766887299738016], [-77.3636276365766, 34.76685465858856], [-77.36361461758099, 34.766768562250334], [-77.36350819741267, 34.76625363363937], [-77.36363728313847, 34.76599674965503], [-77.36369878650626, 34.765761112623984], [-77.36385117032982, 34.76565796604192], [-77.36406181214964, 34.76555076563526], [-77.36424701309684, 34.76539376091948], [-77.3644696091203, 34.76520397605271], [-77.36447867734509, 34.765195228369414], [-77.36442820156599, 34.765104319858025], [-77.36431223855084, 34.76485736721918], [-77.3643380323545, 34.764812497699495], [-77.3642761148597, 34.7648128013434], [-77.36422713780317, 34.764775429401375], [-77.36379255041169, 34.764268846733515], [-77.36372154447139, 34.764176645860275], [-77.36365231018898, 34.764067177754896], [-77.36349410677052, 34.76382507866768], [-77.36335393559473, 34.7635701290355], [-77.36329268500813, 34.763462680216534], [-77.36323577259682, 34.76336216704271], [-77.36314385251936, 34.76300338989057], [-77.36304679044682, 34.762736797913576], [-77.36303400699124, 34.76267786520286], [-77.36319211559282, 34.7623335622813], [-77.36331220243204, 34.762270468101846], [-77.36352822106927, 34.76213460176257], [-77.36388298535988, 34.76174831085287], [-77.36417608072944, 34.76169685413164], [-77.36449463410243, 34.76156587183415], [-77.36452373387384, 34.761165122789855], [-77.36409359669017, 34.76102303887579], [-77.36402876046715, 34.76084359488635], [-77.36405631179143, 34.760752165285595], [-77.36416430431876, 34.76077954325142], [-77.36463570057644, 34.76095118885611], [-77.36495037286184, 34.76098749089862], [-77.36533723301913, 34.76115859226353], [-77.36557905636651, 34.76099683267133], [-77.36568926755123, 34.7608655445358], [-77.36628402300364, 34.76065252172513], [-77.36685731594554, 34.76034203956848], [-77.36697118713445, 34.76027909659938], [-77.36708429761961, 34.76023534829405], [-77.36734087927815, 34.76013509608741], [-77.36759397519704, 34.7600142517415], [-77.36769753695273, 34.75996977486453], [-77.3681896220069, 34.759638752193226], [-77.36754071031345, 34.759276651923564], [-77.36720817013754, 34.75913363713127], [-77.36640609001205, 34.758879552208505], [-77.36605342621293, 34.758777839172126], [-77.36603354410838, 34.7587605236985], [-77.36602741691256, 34.75875401085064], [-77.36597074773526, 34.75872718648112], [-77.36500119230281, 34.75828878192055], [-77.36489646509257, 34.75825812444845], [-77.36480602474909, 34.75823477639287], [-77.36429511598057, 34.75811992864981], [-77.3641997961767, 34.7581073427439], [-77.36377466280618, 34.758045101716476], [-77.36366768758457, 34.75807154528148], [-77.36297942029123, 34.758239409768386], [-77.36297841125555, 34.75824004440305], [-77.36297725144831, 34.75824013628239], [-77.36297561416188, 34.75823963241687], [-77.36241336754358, 34.757972924681724], [-77.36214958384872, 34.75782976575833], [-77.36143929182761, 34.75767884974053], [-77.36135780599683, 34.757650305571346], [-77.36131387799031, 34.75763340993035], [-77.36114663131775, 34.75756734910894], [-77.36075516490575, 34.757494539170075], [-77.36068580337069, 34.75737871498758], [-77.36031215042058, 34.75695729383843], [-77.36029545558178, 34.75689048902084], [-77.36028371783976, 34.756862732036424], [-77.35984441702027, 34.75650517995527], [-77.35980889432884, 34.756476267477844], [-77.35977132815465, 34.75644569137873], [-77.35955986632746, 34.75627357813863], [-77.3593643732243, 34.75609546739774], [-77.35933119050159, 34.75605523490289], [-77.35930559224053, 34.75602224438377], [-77.35926849356304, 34.755904109981785], [-77.3592323803288, 34.75578860263842], [-77.3592514332468, 34.755722351958134], [-77.35929865109387, 34.75553581191426], [-77.35938990407594, 34.755221617059476], [-77.35943576648127, 34.755029602929895], [-77.3593627963416, 34.75471124345353], [-77.35931966354806, 34.75455815700731], [-77.35930645550161, 34.754497346363664], [-77.35923529162795, 34.75447736278902], [-77.3590502591883, 34.754300175164246], [-77.35888237130656, 34.75413080461567], [-77.35882752640387, 34.75407726509268], [-77.35877241128622, 34.7540086036697], [-77.35847280322288, 34.753699645130084], [-77.35849277420499, 34.75354628950113], [-77.35845240123567, 34.75321505985251], [-77.35859575696658, 34.752755537748186], [-77.35914950636082, 34.75271020296135], [-77.35943817885061, 34.75281911484261], [-77.3596923012317, 34.7529037729946], [-77.35979855777352, 34.752936148800245], [-77.36005441876866, 34.75299512707505], [-77.36019090128232, 34.75302859451699], [-77.36025119787429, 34.753041904905174], [-77.36039652833452, 34.753073985804065], [-77.36062233077891, 34.75291715461737], [-77.36126179382887, 34.7525639148249], [-77.36170970634544, 34.752144896951215], [-77.3622196992469, 34.751723055032386], [-77.3619705255563, 34.75124672493216], [-77.36172887990257, 34.751057097914966], [-77.36143411112573, 34.750856150145154], [-77.36092668314322, 34.750715895990986], [-77.36033501310517, 34.75055235130684], [-77.35981009365197, 34.750435598204874], [-77.3595958809199, 34.75033244152221], [-77.3592588963649, 34.75027101809272], [-77.35914756943961, 34.75019531618645], [-77.35891370370008, 34.750068716886204], [-77.35879826217071, 34.749794609440556], [-77.35876027706384, 34.74976110137539], [-77.35887700069281, 34.74952349096661], [-77.35902318000704, 34.749304914537014], [-77.35921021704853, 34.749211944055006], [-77.35904343338456, 34.74918047630836], [-77.35936704315007, 34.74870302860472], [-77.35913472546079, 34.748636063821145], [-77.3588881019699, 34.74854708044441], [-77.35884684473638, 34.74854324155806], [-77.35884313130208, 34.74853126406614], [-77.35858931935567, 34.74845158352821], [-77.35846040140183, 34.74844626942193], [-77.3582952028967, 34.74836279376625], [-77.35812496595932, 34.74831006149846], [-77.35803909520668, 34.74828369679703], [-77.3572211894511, 34.74821678905855], [-77.35696627921084, 34.74785279894602], [-77.35686939061068, 34.74769895220002], [-77.35681588851695, 34.74759110142503], [-77.3565318855292, 34.74728612864824], [-77.356473860802, 34.74721475071351], [-77.35642288733841, 34.747157664992095], [-77.35608132289964, 34.74677514484509], [-77.35606047061509, 34.74674428931331], [-77.35604589219778, 34.746722030677084], [-77.35603444722123, 34.746657702970715], [-77.35594163599899, 34.74604726217296], [-77.35592882397647, 34.74576333294732], [-77.35591153446606, 34.745676201872215], [-77.3559560315794, 34.74531180575834], [-77.35598714684085, 34.74526794378257], [-77.35607430538997, 34.745156784565964], [-77.35640557019204, 34.74472312238051], [-77.35695172197678, 34.74377830458646], [-77.35701086935485, 34.74369330469415], [-77.35701742785443, 34.743664362832384], [-77.3570288649491, 34.74363409933286], [-77.35741614950122, 34.74277587469487], [-77.35745253993497, 34.74262986171127], [-77.35751960910918, 34.742468165810855], [-77.3577042360418, 34.7421079232178], [-77.357794834607, 34.74183489338583], [-77.35808712768505, 34.741567971063844], [-77.35797028767666, 34.741333042094055], [-77.35796982789886, 34.7407134871918], [-77.3586975542478, 34.74050939409316], [-77.35902386559039, 34.74037074674485], [-77.35931987177878, 34.74029484962271], [-77.36043076335747, 34.74004794998224], [-77.36151769198631, 34.74002693613566], [-77.36278107384486, 34.737632058019955], [-77.36336020206325, 34.73694480904786], [-77.36334925983893, 34.73654385064552], [-77.36318375638227, 34.735019487139915], [-77.36288852348622, 34.734395506097705], [-77.36272908727003, 34.73410716023558], [-77.36263058435796, 34.73380549159295], [-77.362623312788, 34.73363430061626], [-77.36280075934405, 34.73350530760244], [-77.36349185473851, 34.73314283260406], [-77.36363450671307, 34.73313906251756], [-77.36371171860345, 34.73303589145566], [-77.36382214522598, 34.73298226173038], [-77.3644608655762, 34.7324231463145], [-77.36447615735027, 34.73240504459499], [-77.36452616097397, 34.73234701939601], [-77.36476354116542, 34.732121876454016], [-77.36481073584604, 34.73209489395667], [-77.3648809704362, 34.73207401720659], [-77.3651326940705, 34.73210404763932], [-77.365326901814, 34.731913945276844], [-77.36570894456611, 34.73183118204851], [-77.36581849172177, 34.73180453535884], [-77.36594630312425, 34.731824439984415], [-77.36619849738592, 34.731848740427694], [-77.36636507980455, 34.731984579323765], [-77.36657556662996, 34.73211666275664], [-77.36659468976808, 34.732332383183675], [-77.36726078371842, 34.73250992092737], [-77.36729454349674, 34.732582372735266], [-77.36734709082614, 34.73272766099338], [-77.36776940833865, 34.73280110899872], [-77.36756568599327, 34.73246803423286], [-77.36756912350258, 34.732371090636974], [-77.36773616601624, 34.731957222935335], [-77.36807238684065, 34.73179318538192], [-77.36824721152095, 34.73168972646625], [-77.36828553625317, 34.73166290971233], [-77.3685713421545, 34.731599897358485], [-77.36857249808874, 34.73160061765968], [-77.36879576032408, 34.73181164902697], [-77.36878798034168, 34.731827451507336], [-77.36877840113029, 34.73192282603659], [-77.36872405258525, 34.73227090072323], [-77.36874343962711, 34.73230622819178], [-77.36857743650322, 34.732615214406515], [-77.36796955632022, 34.73297838558782], [-77.36792044668046, 34.73339407669009], [-77.36804375660249, 34.73358288611345], [-77.36897956963448, 34.73422334821356], [-77.36919155716777, 34.734625887502304], [-77.3701306314878, 34.73562455968249], [-77.37229098694414, 34.73603914647013], [-77.37376707123558, 34.73653757109024], [-77.37578098724467, 34.73684106443151], [-77.37849481190109, 34.73792513693898], [-77.38106248076166, 34.738410480427326], [-77.38348673889504, 34.7384022903868], [-77.38481629080503, 34.73736248070137], [-77.38492665914747, 34.73660112167115], [-77.38623744135126, 34.73489881380215], [-77.38665729469099, 34.73353331936298], [-77.3861692516586, 34.73251297540429], [-77.38625724258486, 34.73227499659501], [-77.38632656841469, 34.7320507745559], [-77.38654223401959, 34.73146495402101], [-77.38661083412897, 34.73128038715599], [-77.38693115408951, 34.73094863310943], [-77.38739484004837, 34.73080421840389], [-77.3876375671472, 34.73072385850452], [-77.38796741664322, 34.73063675141994], [-77.38820796297642, 34.73063725865278], [-77.3883043678405, 34.73063566236144], [-77.38848032280013, 34.73065731284662], [-77.38870734846058, 34.73070559515721], [-77.38889549787451, 34.73080840297354], [-77.38928916500416, 34.73090874363052], [-77.38949387099838, 34.73095617085619], [-77.38975873095093, 34.73092830393524], [-77.38991078108894, 34.730953795635784], [-77.3900976728055, 34.73108522112511], [-77.39035422921793, 34.73115381645008], [-77.39068250076535, 34.731279709422154], [-77.39090826185317, 34.73131150980053], [-77.39115676519756, 34.73132714611613], [-77.39128342420135, 34.731418694007324], [-77.39151830336166, 34.73187920256661], [-77.39143106516066, 34.73210544858669], [-77.39149271370077, 34.73290835724753], [-77.39151642236395, 34.7329624964478], [-77.39242882724865, 34.73304982758604], [-77.39271040741913, 34.733131754374746], [-77.39293126524304, 34.73326546913501], [-77.39325674978596, 34.73360573397556], [-77.3936757699467, 34.73422547319987], [-77.39379019989966, 34.73469274889333], [-77.3937279623704, 34.734888890548895], [-77.39373634976697, 34.735187984740506], [-77.39334917548007, 34.73587467087448], [-77.39345230240967, 34.73661882047983], [-77.39405003070658, 34.737358001653824], [-77.39533935556474, 34.737809139625625], [-77.39636574780911, 34.7382180522009], [-77.39763368081336, 34.73844667601803], [-77.39876845299278, 34.738778088508695], [-77.3995599464695, 34.73872355709456], [-77.3999813880047, 34.73819464334843], [-77.4001221277455, 34.73740948374233], [-77.4003444833096, 34.73701323702334], [-77.40077983525495, 34.736237390241214], [-77.40078168186027, 34.73623154507842], [-77.40079956835937, 34.73619551813373], [-77.401218980066, 34.735450022112445], [-77.4013992689382, 34.73533578484341], [-77.40147344173161, 34.735117817633345], [-77.40173725151223, 34.73517273300865], [-77.4019978707887, 34.73522698306598], [-77.40227691141905, 34.73552319105101], [-77.40243832928475, 34.73555134307203], [-77.4032704480174, 34.73581104806531], [-77.40348788868691, 34.735769864480815], [-77.40435134570862, 34.7352500248155], [-77.40437106761128, 34.73474564982431], [-77.4044002356013, 34.73470800263264], [-77.4044066443302, 34.734675754652386], [-77.40457818177383, 34.734211115179185], [-77.40457896021984, 34.734209275808325], [-77.40458189676772, 34.73420749912175], [-77.40499933866947, 34.73414833110535], [-77.40514757252603, 34.73385113121482], [-77.40536118218685, 34.733731057107406], [-77.40557568502408, 34.73359419437257], [-77.40563300319329, 34.73346178351238], [-77.40566863755402, 34.73331203321195], [-77.40563975824034, 34.73295077384149], [-77.40568716612665, 34.732921606370105], [-77.4056364732115, 34.73278106002438], [-77.40566675053992, 34.73242014203399], [-77.40566258687592, 34.73235388998375], [-77.40597156121179, 34.73140038620145], [-77.40591522536546, 34.73132400832159], [-77.40558972663777, 34.73062446916571], [-77.40620633263427, 34.73081446898617], [-77.40723659264462, 34.73032416781116], [-77.40753001239743, 34.729652289991606], [-77.40771991320746, 34.72961801530174], [-77.40803388794069, 34.72893289255957], [-77.40813269396803, 34.72879655215784], [-77.40816570666311, 34.72875638491869], [-77.40817871240279, 34.728694799622524], [-77.40836802615826, 34.72854758568266], [-77.40840419932235, 34.72849227418328], [-77.40847024530139, 34.728533314502464], [-77.40852832207054, 34.72854903108839], [-77.40872512290913, 34.72876010396298], [-77.40922862483522, 34.7290918883492], [-77.40926110574013, 34.72912317023325], [-77.40928800968379, 34.72912496860713], [-77.40949257937076, 34.7292204242108], [-77.4096993544517, 34.729846146204224], [-77.41033574617848, 34.729840107388114], [-77.4104804359814, 34.72964201609634], [-77.41064007867611, 34.729621717100805], [-77.41141299388653, 34.729670245011874], [-77.41172314241535, 34.72947749397132], [-77.41218467765171, 34.729435497125124], [-77.41238170509729, 34.729112547614356], [-77.41266883099718, 34.72873076726871], [-77.41269381142902, 34.72866258698676], [-77.41329024791642, 34.72849443078802], [-77.41340280684564, 34.72843440127381], [-77.41362708693762, 34.72842983819726], [-77.4139509416004, 34.728426994009766], [-77.41444783445924, 34.728646467774624], [-77.41453067807784, 34.72863904723283], [-77.41460777800327, 34.72869212391237], [-77.4148602241514, 34.728861033066394], [-77.41480968779234, 34.72923792394603], [-77.41486846157711, 34.72942301120671], [-77.41483107796671, 34.72949171937938], [-77.41499494932732, 34.729540734598366], [-77.4155346000662, 34.72960021917694], [-77.41598568225177, 34.72966401092029], [-77.41676090960078, 34.72979363308755], [-77.417899899048, 34.72999738743725], [-77.41806082253395, 34.730063641350334], [-77.4191082701772, 34.730543927612985], [-77.41968810333651, 34.731037082923756], [-77.42027973949983, 34.73187404879333], [-77.42069265778302, 34.7324035970361], [-77.41981030478055, 34.733946263575504], [-77.41906987136363, 34.73470460166205], [-77.41886500673195, 34.73495127923393], [-77.41834140896502, 34.735669078253686], [-77.4172182126067, 34.73706990192625], [-77.41699879519808, 34.73730380318542], [-77.4166384233334, 34.737665234286034], [-77.4152446189561, 34.73905913276704], [-77.41616186549835, 34.74071682869545], [-77.416512006065, 34.741288843011574], [-77.41813861411562, 34.742158371428296], [-77.41835158314326, 34.74201248381985], [-77.41883682469785, 34.74210488767689], [-77.41899133588896, 34.74260529298001], [-77.41929768599478, 34.74317398380748], [-77.41959436918249, 34.743574460832356], [-77.4199875238402, 34.74407167442809], [-77.42013169239914, 34.74472260907517], [-77.42003200746707, 34.74517744370583], [-77.4200238922594, 34.745202546523096], [-77.42002351444155, 34.745238320389674], [-77.41993425969301, 34.745404284123616], [-77.41877369362649, 34.74618793013428], [-77.41886435787548, 34.74744979574771], [-77.41926795093639, 34.74770476982579], [-77.41990352217009, 34.74803398661969], [-77.42070933102937, 34.74767843093609], [-77.4215768260408, 34.74777623825004], [-77.4218049799432, 34.7478019602373], [-77.42268449813773, 34.74764232131867], [-77.42401690460812, 34.74877117006099], [-77.4240768001158, 34.748814934243235], [-77.42537452160869, 34.74799762445764], [-77.42580123799159, 34.74728903338544], [-77.42586353709319, 34.74810209382426], [-77.42570378863466, 34.74830582597504], [-77.42569610891026, 34.74852298416607], [-77.4253914879533, 34.749314814880194], [-77.42595091454514, 34.74985117943852], [-77.42616541542941, 34.75046073855473], [-77.42620596624637, 34.750637577577095], [-77.42706423707057, 34.75075793644112], [-77.42735832284917, 34.7507705293019], [-77.42752649037209, 34.75076521635822], [-77.42784389088565, 34.750847263581356], [-77.42794838023215, 34.75094752135344], [-77.42828208730481, 34.75144304466583], [-77.42826549966728, 34.751564202534084], [-77.42834046965062, 34.75180825274515], [-77.428781554851, 34.752241751558145], [-77.42947894073899, 34.752979347441425], [-77.42998653195592, 34.753524762810876], [-77.43034716347344, 34.753737484090784], [-77.43087167741652, 34.75398589429885], [-77.4309368758814, 34.75402119377623], [-77.43091970679798, 34.75406434093367], [-77.43096257462429, 34.75461583213276], [-77.43070899697585, 34.75470285028935], [-77.43034808241595, 34.75462623734146], [-77.43007618177575, 34.75467344358383], [-77.42975899256604, 34.754754360764345], [-77.42964990879665, 34.7549814492491], [-77.4294973590915, 34.75522199717271], [-77.42944852202803, 34.755534698713824], [-77.42977673595108, 34.755707691966066], [-77.43008045468707, 34.75598477850693], [-77.43023497277966, 34.75609949127724], [-77.43028710192132, 34.756160056739176], [-77.4303164866264, 34.75628869117817], [-77.43027253695669, 34.75633141466772], [-77.43019078973927, 34.75649270793501], [-77.43012731229075, 34.75650897260059], [-77.43011086768126, 34.75655445469923], [-77.43011956617758, 34.75659401148633], [-77.42995473161672, 34.75677942823164], [-77.42988190154168, 34.756855923017675], [-77.42976593225946, 34.75699298939189], [-77.42976322251215, 34.75718901113529], [-77.43002021901593, 34.75708183367435], [-77.43038493069716, 34.75692973239609], [-77.43045678879604, 34.75689976399717], [-77.43057068444485, 34.75671510613103], [-77.43064345047037, 34.756604194021634], [-77.43084523131117, 34.75644746423427], [-77.43100368642006, 34.75630733956975], [-77.43117099055634, 34.756155512105316], [-77.43122732956465, 34.75610595180026], [-77.43124460294395, 34.75609050380327], [-77.43128198872219, 34.75604649693446], [-77.43140690610544, 34.755889167987824], [-77.43150753022421, 34.75577217202564], [-77.43160582038234, 34.755679140399515], [-77.43172843115264, 34.755612059806325], [-77.43187675847476, 34.75562745726674], [-77.43204637291015, 34.7556214722915], [-77.4321246740389, 34.75565848565372], [-77.43217903246514, 34.755599881779794], [-77.43225546549257, 34.755498224485805], [-77.43227211348893, 34.755352879136936], [-77.43228642645218, 34.75524390755918], [-77.43234556726962, 34.75509901945403], [-77.43238612423401, 34.75496387760748], [-77.43253019411661, 34.754695843167454], [-77.43251869019241, 34.75460045907447], [-77.43275493164278, 34.75428158187169], [-77.43282692839998, 34.75418833338786], [-77.43282581892377, 34.75414871733013], [-77.43284740745857, 34.754117144083324], [-77.43303051188205, 34.753773096808786], [-77.43302375903592, 34.75365882846893], [-77.43305885333584, 34.7535825570046], [-77.43313856128432, 34.753419415709274], [-77.43320695255686, 34.753313533486924], [-77.43321383152856, 34.753294719153196], [-77.43326076640523, 34.7531825894126], [-77.43325291518306, 34.753115191791224], [-77.43322937558717, 34.75306503779929], [-77.43315878138738, 34.75288652836004], [-77.4330936420489, 34.75284467944726], [-77.43292763174566, 34.752744497350804], [-77.43278639037405, 34.75245781113349], [-77.43333577621765, 34.75227510513777], [-77.43358846021319, 34.75246886822213], [-77.43360536535687, 34.752468777565156], [-77.43361658635901, 34.75246833940016], [-77.43383124335057, 34.75246382510568], [-77.43392735675, 34.75244688159791], [-77.43393920224912, 34.75244129109454], [-77.43400145044512, 34.75236795010764], [-77.43403936137466, 34.75233652316802], [-77.43407999804401, 34.752263845945784], [-77.43416227613443, 34.752099945309226], [-77.43421517983501, 34.75198426182932], [-77.43421745298977, 34.75197301136078], [-77.43418129937609, 34.75182707132018], [-77.43421789227392, 34.75175993132098], [-77.43423208567992, 34.751565294369136], [-77.43435946231752, 34.75147768195347], [-77.43435914552057, 34.7514567111143], [-77.43432198497901, 34.75131718233901], [-77.43459954551311, 34.75123244003717], [-77.43464487734438, 34.75117566093844], [-77.43467215464966, 34.75116000061363], [-77.43496962340956, 34.751061668628516], [-77.43502774245643, 34.75105325181936], [-77.43527867806844, 34.75110171586124], [-77.43528533499106, 34.75110009979466], [-77.43529592647002, 34.751098404735465], [-77.43540249543338, 34.75091759490647], [-77.43564217455548, 34.750953673216024], [-77.4356551193595, 34.75095632794086], [-77.43572023883185, 34.750967123639086], [-77.43582038255722, 34.7508918809967], [-77.435831822808, 34.750871068846045], [-77.43600952679363, 34.75079230350136], [-77.43601135127851, 34.75079042384256], [-77.43601288105049, 34.75078984207536], [-77.43601478339362, 34.75078720957339], [-77.43601402532204, 34.75077676132186], [-77.43599882714159, 34.750645173313266], [-77.43593874393436, 34.75059572741008], [-77.4358995118136, 34.75047071774227], [-77.43597210435792, 34.750352481333394], [-77.43613979241324, 34.7503422405109], [-77.43617724755674, 34.75031367182812], [-77.4362739127566, 34.75032199939058], [-77.43632066187105, 34.750174048062554], [-77.43647811874669, 34.75028114217568], [-77.4365292808107, 34.75034939279617], [-77.4366063912668, 34.75039187153037], [-77.43662642850072, 34.75042046923699], [-77.43673010938198, 34.7504688992571], [-77.43674270484411, 34.75047481943474], [-77.43674767080964, 34.75048149476022], [-77.43680208147651, 34.750492980200306], [-77.4368160198196, 34.750498471725294], [-77.43685777449991, 34.750491033056356], [-77.43685789036208, 34.7504906642672], [-77.43687794381124, 34.75046313957823], [-77.43691954378127, 34.75041774926334], [-77.43692380391768, 34.750411391096655], [-77.43692540317356, 34.75040984026413], [-77.43693133969686, 34.7504048785491], [-77.43691722274264, 34.75026722399191], [-77.43707845629075, 34.75012030763158], [-77.43713502633457, 34.75006379685519], [-77.43716327163128, 34.75005480022578], [-77.43719308073237, 34.75002657285896], [-77.43733169136402, 34.749852984958494], [-77.43737867464482, 34.74965891104329], [-77.43753752225868, 34.74964537522103], [-77.43764943765441, 34.749557642286845], [-77.43770398244794, 34.749442514400215], [-77.43779492552781, 34.74945578205544], [-77.43781693859206, 34.74936584357367], [-77.43792305914674, 34.749221029267794], [-77.43794330629565, 34.749089925723325], [-77.4378208802394, 34.748965263877615], [-77.437788762411, 34.74893119261382], [-77.43779870142357, 34.7488980698887], [-77.43761676676344, 34.74856264992277], [-77.4376155491647, 34.74855704550256], [-77.43761347906307, 34.748553846860574], [-77.43739014778154, 34.74823780452563], [-77.43737349873015, 34.74821161468662], [-77.43733984575732, 34.74817873600994], [-77.43713957724508, 34.74799572264065], [-77.43699318160719, 34.74792386288112], [-77.43688723249518, 34.747759775703415], [-77.43674497920384, 34.74769139703081], [-77.43662859700333, 34.7476295483399], [-77.43661061535852, 34.74760769762022], [-77.43656623161203, 34.74758437082526], [-77.43649231667081, 34.747603125469574], [-77.43610982483918, 34.747586642561814], [-77.43597946003875, 34.74757277099371], [-77.4355515557244, 34.747833487764346], [-77.4354063957065, 34.747933164140136], [-77.43519227188769, 34.748228703684504], [-77.43518514465177, 34.74826451124514], [-77.4351137803857, 34.748348105770745], [-77.43477910054327, 34.748404037187925], [-77.43444405640815, 34.74844639735511], [-77.43411560938986, 34.748231413098466], [-77.43385208156266, 34.74827608464796], [-77.43377718142327, 34.74826304872562], [-77.4335544502384, 34.74819660829188], [-77.43338900723035, 34.74819600939756], [-77.43328829038106, 34.74821226098065], [-77.43320285369902, 34.748303561342624], [-77.43311976262903, 34.74838145867522], [-77.43311510046497, 34.74860671270167], [-77.43312601588498, 34.74864419187551], [-77.43313795170384, 34.74866733568544], [-77.43313067270428, 34.748702552873375], [-77.43307510322975, 34.749204420438964], [-77.43290068289863, 34.74934742795776], [-77.43271797125497, 34.74952395145209], [-77.43234096969375, 34.749418034741204], [-77.4322677038652, 34.749318738417436], [-77.4321481821724, 34.74905205234518], [-77.43175357503286, 34.74887949464953], [-77.43148087867885, 34.74899883409573], [-77.4310716312658, 34.74901995073421], [-77.43101601081754, 34.749044016267284], [-77.43069860485113, 34.74921659652166], [-77.4302685372142, 34.74957885823452], [-77.43004177797692, 34.749639271503646], [-77.42960506593886, 34.749655471951044], [-77.42959486709564, 34.74965705405349], [-77.42957933537188, 34.74966011853271], [-77.42919122166026, 34.749745504908134], [-77.42893442437912, 34.7497568396631], [-77.42877449822366, 34.749812596311656], [-77.42851593958152, 34.74984759222234], [-77.42837110524191, 34.749901460848285], [-77.42825861018972, 34.74987606338898], [-77.42815683668174, 34.749823978317885], [-77.42798487708527, 34.74971403035546], [-77.4279189043262, 34.74963896695607], [-77.42781462216732, 34.74952031548255], [-77.42797240228214, 34.74925017584016], [-77.42813609237913, 34.749191766099415], [-77.42815999329756, 34.749182704895006], [-77.4281906083438, 34.74917485406934], [-77.4283547819488, 34.749126990856645], [-77.42848439843266, 34.74909622999166], [-77.42876216476834, 34.749044649458845], [-77.42913478707995, 34.74896972485338], [-77.42916398772105, 34.748963943937746], [-77.42916976352285, 34.74896266100229], [-77.42917625400698, 34.74896021762379], [-77.42951796343603, 34.74884881434576], [-77.42955954020964, 34.74885156038759], [-77.42963783952244, 34.748759915060575], [-77.42981396784423, 34.748623999477516], [-77.42969551797648, 34.74832588832555], [-77.42968310491119, 34.74829464755871], [-77.4296809322359, 34.74828591320084], [-77.42961165540528, 34.74799425288006], [-77.42958763700497, 34.74788807666552], [-77.42953814699464, 34.7476715921478], [-77.42949485633075, 34.7474803854655], [-77.4293659603192, 34.747349345193456], [-77.42932225619745, 34.74730979073769], [-77.42912328259273, 34.74718897347906], [-77.42905307720955, 34.747132052718634], [-77.42893899707494, 34.747090106166524], [-77.4285423712043, 34.74698487063225], [-77.42847085632806, 34.74692808678717], [-77.42807552945773, 34.746339354346624], [-77.4280869860096, 34.746282027682035], [-77.42818314729661, 34.74581790448852], [-77.42816649140421, 34.745764446424985], [-77.42804525138362, 34.74576971570167], [-77.42785502669828, 34.74606717339851], [-77.42745965597899, 34.74599091198378], [-77.42738913673993, 34.74605391255929], [-77.42713564941064, 34.74601090423687], [-77.42688118192767, 34.74597192918221], [-77.42677713183284, 34.745935554891936], [-77.42669793388916, 34.745672564812914], [-77.42666620819264, 34.74528778837082], [-77.42672229938832, 34.74506565807089], [-77.42656314999948, 34.74465768558366], [-77.42655453331592, 34.74424286327948], [-77.42655702207213, 34.7441315068717], [-77.42657355590902, 34.74397369751507], [-77.42666214566381, 34.74375160012696], [-77.42652823344741, 34.743670920491525], [-77.42651602369887, 34.74358935205537], [-77.42629871932624, 34.74352469409694], [-77.42625744059423, 34.74349881164345], [-77.42621793950434, 34.74349048204246], [-77.42602914641559, 34.74345820802786], [-77.42593813790901, 34.74349424211108], [-77.42582738798987, 34.74350251195786], [-77.42558814016981, 34.74359567980106], [-77.42542904499254, 34.74359957244705], [-77.42541051093468, 34.74373081738951], [-77.42533644325091, 34.743858117936554], [-77.42525787037721, 34.7439570035658], [-77.42522926394999, 34.7440210382607], [-77.42510194178185, 34.74418204010398], [-77.42500558246495, 34.7444034570426], [-77.42471984332505, 34.74437976588114], [-77.42457475525372, 34.744447454442195], [-77.42420623531423, 34.74432946763673], [-77.42411847248943, 34.74424201022154], [-77.42377712723258, 34.74371901648627], [-77.42374635614222, 34.74362850195696], [-77.42370293908245, 34.7434625072341], [-77.42345696544189, 34.74304804607637], [-77.42341738071416, 34.742872945195735], [-77.42350568290232, 34.7425060031635], [-77.42349645963775, 34.742393591085346], [-77.4234130851641, 34.74224902268425], [-77.4233130651161, 34.74202369834103], [-77.42288761499297, 34.741849217491065], [-77.4224415868936, 34.74157500379241], [-77.42236357393459, 34.741526923701294], [-77.42234648123663, 34.7415035163965], [-77.42225143006254, 34.741399371745175], [-77.42210197884398, 34.741240666230624], [-77.42202231206164, 34.7412228679821], [-77.42181203543923, 34.74113473306995], [-77.42148112766307, 34.74123928737385], [-77.42135809363481, 34.74143552982071], [-77.42102105712905, 34.74165176842709], [-77.42045439304914, 34.7414547511559], [-77.42043635712302, 34.741437876337876], [-77.42043264810907, 34.74143187216983], [-77.41994508934859, 34.74093867085053], [-77.41973550557523, 34.7408374017208], [-77.41904190418538, 34.74064257297806], [-77.41875574310737, 34.740617080692346], [-77.41823439557771, 34.74057063296538], [-77.41787127133031, 34.739977407312224], [-77.4183265828727, 34.73947365551949], [-77.41858082620465, 34.73910729057897], [-77.41891636595675, 34.73850078753002], [-77.41913815454242, 34.73818395300419], [-77.41969011594533, 34.73739088859126], [-77.4201989186553, 34.73654965315852], [-77.42040266189548, 34.73638967293546], [-77.42082337999497, 34.73607422339], [-77.42086848714082, 34.73599343582867], [-77.42085419161482, 34.735907192361076], [-77.42074991126955, 34.735392903847696], [-77.42068728563032, 34.735084059908644], [-77.42091717832882, 34.73473163300996], [-77.42163475413284, 34.734584067855785], [-77.421803539539, 34.73452130760903], [-77.42199514823989, 34.734538612104615], [-77.42257231894355, 34.73444462356215], [-77.42273722574193, 34.73441038180317], [-77.4231509526837, 34.734296712004905], [-77.42336742682755, 34.73424807242846], [-77.42366935665746, 34.734177144133554], [-77.42383637463539, 34.73414393756147], [-77.42412452356645, 34.73398941362854], [-77.42423942350412, 34.733817342266256], [-77.42425266931237, 34.73381340918284], [-77.42442463306112, 34.73373191498282], [-77.42458105394826, 34.73365722433191], [-77.42462213267405, 34.73364461279628], [-77.42488445440958, 34.73373538826117], [-77.42520426826638, 34.73359553217591], [-77.42540549457917, 34.73311621984246], [-77.42541484757355, 34.73311007121085], [-77.42541658248813, 34.73310914053098], [-77.4254186327542, 34.73310814782619], [-77.42558301283805, 34.73300715268706], [-77.42574549771166, 34.73297440302891], [-77.42576248622532, 34.73302778441213], [-77.42588315843861, 34.73327376512373], [-77.42584463088252, 34.73337943339317], [-77.4258261973003, 34.7337784410123], [-77.42576314746286, 34.733790883050766], [-77.42582731670288, 34.733833035006064], [-77.42584857384033, 34.73383773871327], [-77.42586727185025, 34.7338455550841], [-77.42640577855748, 34.73412778404936], [-77.42654589940068, 34.73420653615719], [-77.42687958473374, 34.734286887076294], [-77.42695663986666, 34.73443975074631], [-77.42715884133953, 34.73461678769211], [-77.42731979903385, 34.73472316734315], [-77.42749454806118, 34.73479647191406], [-77.42755845284059, 34.73473918008704], [-77.42759289735638, 34.73470996090962], [-77.42758027935005, 34.734664190731785], [-77.42754892698368, 34.73460863719524], [-77.4273337822625, 34.73454381720405], [-77.42730725758591, 34.73433059339821], [-77.42709205666743, 34.73419826201497], [-77.42716612537265, 34.733722202451034], [-77.42716500577096, 34.73372002783989], [-77.42699653401365, 34.733345341974335], [-77.42691796954745, 34.733076401629866], [-77.4270230022967, 34.73288791948122], [-77.42703374792845, 34.732837338173546], [-77.42694343179157, 34.732612535036544], [-77.42697947316557, 34.732538835682035], [-77.42689912268197, 34.732493210361454], [-77.42688591084055, 34.7324693615227], [-77.42690374039216, 34.73223283275664], [-77.42689242296666, 34.73215526675955], [-77.42689319442766, 34.73208938063247], [-77.42687392115802, 34.732057340763575], [-77.42685690614685, 34.73201587697784], [-77.42682473472374, 34.73192568552342], [-77.42680102179462, 34.731864557877266], [-77.42676369344855, 34.73178417932604], [-77.42671717566989, 34.731676341154], [-77.42652581905921, 34.73149850142866], [-77.42627669890562, 34.73152311580152], [-77.42604570775302, 34.73151004266033], [-77.42588304990936, 34.731504061450806], [-77.42578192327949, 34.731462510860425], [-77.42565176850053, 34.73151568320799], [-77.42539938223162, 34.731585297685], [-77.42520265929261, 34.73163955810149], [-77.42502061705534, 34.73171425524998], [-77.4249303781665, 34.73182258823247], [-77.42479847318103, 34.731928318503165], [-77.4247214477905, 34.731973277611], [-77.42459740876514, 34.73198573151255], [-77.42445506592614, 34.73200714954167], [-77.42424400198246, 34.73194098749], [-77.42403908971038, 34.731900635074815], [-77.42388683582945, 34.73175524447997], [-77.42369834192064, 34.731797227158275], [-77.42327271218241, 34.73180220080879], [-77.42324122845179, 34.731798156986684], [-77.42309066733179, 34.73229621083421], [-77.42308991532026, 34.732297374235884], [-77.42308974544174, 34.73229852039217], [-77.42308337098416, 34.73231576019521], [-77.42307834565389, 34.73230134994413], [-77.42307691987486, 34.73227756189289], [-77.42316437772901, 34.73176433004915], [-77.42293991533793, 34.731466339084186], [-77.42290559858067, 34.73124969649599], [-77.42292954521756, 34.73112316407192], [-77.42309669542811, 34.73081406727281], [-77.42316949880168, 34.730647971273854], [-77.42340760420691, 34.73037852223563], [-77.42351903792837, 34.73021108926287], [-77.42359046851419, 34.73012515688109], [-77.42368054453898, 34.729818305467326], [-77.4233240812508, 34.72968984214366], [-77.42320386492726, 34.72968527717616], [-77.42301826432072, 34.729648165206015], [-77.42225123102334, 34.72943243518054], [-77.42201446730148, 34.729364419605076], [-77.42159729001408, 34.728980190263684], [-77.42115991684918, 34.72863776852384], [-77.42103464678172, 34.72831983343595], [-77.42097521427692, 34.72820363093484], [-77.4206263341603, 34.72796757530717], [-77.4205334952301, 34.727836388383636], [-77.42021465739957, 34.72760000805115], [-77.42000778837833, 34.72743775814416], [-77.41987660144298, 34.72738753294048], [-77.41898473668087, 34.7270858029641], [-77.41879871994988, 34.727184941643955], [-77.41862935561785, 34.72701498391072], [-77.41826403076873, 34.72681736340616], [-77.41792843433436, 34.726855328897514], [-77.41761531291685, 34.72684353030725], [-77.41738735582916, 34.72664023823546], [-77.41705396213146, 34.726568030394866], [-77.4167238758863, 34.726158121505094], [-77.4166590237874, 34.72605126419769], [-77.41667935504015, 34.72564774880853], [-77.41666471981455, 34.72557834480441], [-77.41674210430213, 34.72512389422218], [-77.41672193262748, 34.725039257181365], [-77.41632459357756, 34.72440529581118], [-77.41619604556757, 34.72402373749166], [-77.41607903987358, 34.723696268034615], [-77.41635312718557, 34.72353248492654], [-77.41637654645334, 34.723490909418146], [-77.41617516719326, 34.723170787738574], [-77.41613038692272, 34.72311586108952], [-77.41584699516615, 34.72281903997688], [-77.41552595031814, 34.72238466826162], [-77.41530816896359, 34.72215104039207], [-77.41523518535479, 34.72177956725075], [-77.41512603023928, 34.721334286084414], [-77.41487811565364, 34.721039927098666], [-77.41482000238409, 34.72056920125712], [-77.41442688867508, 34.72014331799551], [-77.41398120927293, 34.72002630524599], [-77.41382815640983, 34.71999705865702], [-77.41377138091227, 34.72006023364031], [-77.41374131084214, 34.72008327416753], [-77.41344853881566, 34.72020100036179], [-77.4134214318585, 34.72023621042378], [-77.41340310980944, 34.72026739609221], [-77.4132820786703, 34.72048177261524], [-77.41317635422035, 34.7205836294931], [-77.41317502699859, 34.72058569116242], [-77.41309955645465, 34.72069749176025], [-77.41306989378282, 34.720783624367414], [-77.41303804506347, 34.72086599334594], [-77.41311184028415, 34.72098133905004], [-77.41315037166643, 34.721230416837344], [-77.41319564295556, 34.72124662343236], [-77.41321365261783, 34.72139266746689], [-77.41327385897799, 34.721597102632174], [-77.4130209960181, 34.72182578649911], [-77.41283997988653, 34.722004469549844], [-77.41252510845631, 34.72241895720655], [-77.41252862038537, 34.722454684626975], [-77.41246222580705, 34.7224994740268], [-77.41196708975485, 34.723095205152816], [-77.41187016082793, 34.72334261538512], [-77.41140493455084, 34.72367238470639], [-77.41109681833797, 34.72363126517384], [-77.41085586387945, 34.723618379679195], [-77.41078540344483, 34.72359077445943], [-77.41047777395458, 34.7236528656787], [-77.41017450215864, 34.72384551452225], [-77.41015422395576, 34.72386071812714], [-77.4101482882092, 34.72386232407255], [-77.41014042053706, 34.72387490844684], [-77.41000743254116, 34.72408893473169], [-77.40994044066211, 34.72427064038641], [-77.4099073397979, 34.724333483620086], [-77.40984947494593, 34.72442739215863], [-77.4097973441736, 34.72485412485452], [-77.40968761595495, 34.72535354418462], [-77.40968195264567, 34.72537287928926], [-77.40966980076179, 34.72539500584604], [-77.40943452961523, 34.72584545789549], [-77.40923361687737, 34.72610757657047], [-77.40913268146738, 34.72629900276203], [-77.40909966441659, 34.72652542625374], [-77.40909532592121, 34.72684505044779], [-77.40913484874508, 34.72695710172506], [-77.40919230578115, 34.72714758319429], [-77.40924859476027, 34.72735601958452], [-77.40931766523416, 34.727481921195064], [-77.40933265870544, 34.72754414120749], [-77.40935002584895, 34.72770971859603], [-77.40935602305429, 34.727757572156044], [-77.40936071045272, 34.72781158323907], [-77.40927740893898, 34.72779035106255], [-77.40900832381246, 34.727782619780726], [-77.40889914484384, 34.727805149129296], [-77.40870102678076, 34.7278253762501], [-77.40845450481052, 34.72782638339378], [-77.40834832032542, 34.72784764537607], [-77.40783523440652, 34.728081692186606], [-77.40773460150272, 34.72814574986128], [-77.40759160679922, 34.72824644635062], [-77.40741419981833, 34.72837009243344], [-77.40695990039913, 34.72831028515545], [-77.40693488451633, 34.72830012300749], [-77.4069108035864, 34.72829527037231], [-77.40636422927025, 34.72805675933498], [-77.4062646216823, 34.72809149333011], [-77.40594667725671, 34.72821537016122], [-77.40564430841053, 34.72832853277314], [-77.40557440169142, 34.7283549084953], [-77.40549963451676, 34.72838305384338], [-77.4052021688623, 34.7284945177512], [-77.40489839125107, 34.72868999734566], [-77.40485452850167, 34.728716542276274], [-77.40457733772519, 34.72896933234579], [-77.40443270114653, 34.72912812449776], [-77.40430402781028, 34.72927068005515], [-77.40418194203521, 34.729468462188336], [-77.40419142980936, 34.729602859988894], [-77.4041886288079, 34.7298302009534], [-77.40402870556551, 34.73010506908625], [-77.40411742419941, 34.73038803010106], [-77.40414166002509, 34.73070370097918], [-77.40424770767177, 34.73093541245942], [-77.40441936133335, 34.731154825910565], [-77.40466522421282, 34.731707289742616], [-77.40479932227123, 34.731889094509285], [-77.4047519171818, 34.73203538799336], [-77.40476677293827, 34.73227177217898], [-77.40479852567678, 34.73261081193266], [-77.40481796748838, 34.732773997044475], [-77.40476468164931, 34.73301653485183], [-77.40467994855875, 34.73312846233396], [-77.40444948669456, 34.733249424876036], [-77.40417231933158, 34.73340817937456], [-77.4040676186863, 34.73347342502835], [-77.40381557464141, 34.73370945557632], [-77.40368278827623, 34.733897954618214], [-77.40355084817973, 34.734194907346975], [-77.4035107067685, 34.734396893961595], [-77.40345863772403, 34.73462231099], [-77.40344402004123, 34.73465313327668], [-77.40313546835613, 34.73477333079916], [-77.40309665474352, 34.73477872345441], [-77.40260205778623, 34.73459042680492], [-77.40255356938327, 34.73456862334773], [-77.40249638692828, 34.73454557032959], [-77.40199235622495, 34.7342925497304], [-77.40152048366141, 34.73414862370587], [-77.40140313454161, 34.73411312231209], [-77.40131634883704, 34.73411275194923], [-77.40121542143685, 34.7341532189844], [-77.40096371317128, 34.734284444783135], [-77.40064898163607, 34.73450273435103], [-77.40064299286956, 34.734508319288004], [-77.4006392505751, 34.734510820829115], [-77.40060313174588, 34.73453101835667], [-77.40004225531963, 34.73486113724142], [-77.39997028756642, 34.73490495650543], [-77.39986499667057, 34.734995235817635], [-77.39927463479609, 34.735151770670214], [-77.39927198195366, 34.73525974395962], [-77.39926865069746, 34.73570881216459], [-77.3987333402257, 34.73620304859429], [-77.39834790692377, 34.73674194300905], [-77.39770431440985, 34.736631954267736], [-77.39687672467156, 34.736455489598306], [-77.39635473973759, 34.736476170421724], [-77.39502532786707, 34.73596324382146], [-77.39475963930185, 34.73524980964252], [-77.39470016210892, 34.73520613387389], [-77.3947216404186, 34.735041587922424], [-77.39480421122305, 34.73427013411773], [-77.39481849855422, 34.73415210471204], [-77.39489276168416, 34.73408562629162], [-77.39509234910818, 34.7337629266937], [-77.39513040550426, 34.73370207332911], [-77.39541181889547, 34.733437739320365], [-77.39553322545156, 34.733283846081015], [-77.39581098223498, 34.73295788633804], [-77.39579171835757, 34.73281512932546], [-77.39546551737601, 34.73247574326344], [-77.39527395756357, 34.7322890794503], [-77.39505386400688, 34.73199785302313], [-77.39499192848514, 34.73189751652868], [-77.39472132936041, 34.73162677702447], [-77.39443738860717, 34.73159853205544], [-77.39427629598262, 34.73158088644418], [-77.39387723817056, 34.73153226932783], [-77.39382168899799, 34.73151050976746], [-77.39324279074171, 34.73135038097244], [-77.39324330936539, 34.73129376804877], [-77.39319381142437, 34.73078795231562], [-77.39299111305402, 34.730562647659525], [-77.39283024486227, 34.730506856438595], [-77.39262272312044, 34.730373451906566], [-77.39252281024449, 34.73031151373741], [-77.3922814966979, 34.73018918075558], [-77.39228118108497, 34.73018903320775], [-77.39228090187419, 34.7301889726391], [-77.39201735101284, 34.73013180109159], [-77.39197678323953, 34.73013313139187], [-77.3916626867032, 34.730223677501165], [-77.39162721742106, 34.73023300934844], [-77.39162161971728, 34.730232994410564], [-77.39157417392542, 34.73026056654464], [-77.39116513761864, 34.730637319988034], [-77.39096170876863, 34.73065052697281], [-77.39086763400095, 34.730641236073325], [-77.39075959271959, 34.73060005212879], [-77.38994785123818, 34.73048919777118], [-77.38964418378174, 34.730437809576124], [-77.3892506203589, 34.73033630067212], [-77.38904487084537, 34.730293295521406], [-77.3888977985444, 34.73026865737715], [-77.38843938317257, 34.730170078178865], [-77.388373661267, 34.73015983548273], [-77.38809619196869, 34.730122645644286], [-77.38787486987952, 34.73009246345026], [-77.38781870846874, 34.73009923264429], [-77.38769441394699, 34.73009221781391], [-77.38764937032019, 34.72996629258856], [-77.38734294035288, 34.729528714928975], [-77.38724813822108, 34.72938558920236], [-77.38727449344597, 34.72927594416515], [-77.38714767446965, 34.729096507274136], [-77.38703952087657, 34.72910038466095], [-77.38693568875077, 34.729157384777885], [-77.38690313496639, 34.729251533265284], [-77.38673356468664, 34.72941892139484], [-77.38663590485717, 34.72956289721543], [-77.38659549093794, 34.729597507289014], [-77.38645890301561, 34.729714479358016], [-77.38631925708589, 34.730060012284774], [-77.38631775712078, 34.73066589354473], [-77.38594829596906, 34.731048542917954], [-77.38585964228253, 34.73128706342674], [-77.38579085953029, 34.73155262349357], [-77.38569346837261, 34.73181863779692], [-77.38562118649745, 34.73205242063774], [-77.38532006543058, 34.73286682771341], [-77.38543413323221, 34.733105307487854], [-77.38533600305864, 34.733424457518666], [-77.38468562056872, 34.734269106787835], [-77.38217074471937, 34.73423515822847], [-77.38201838068193, 34.7342425402775], [-77.37949945422616, 34.734462400855236], [-77.37866938058349, 34.73449603538523], [-77.37625597672144, 34.73436665525895], [-77.37447493582651, 34.73409825575783], [-77.37409932605343, 34.73397142481765], [-77.37434866291113, 34.73369907292044], [-77.37321651983227, 34.732554081154724], [-77.373021484779, 34.73211609150638], [-77.37281937551913, 34.7318269745727], [-77.37263761991356, 34.731590393349016], [-77.3722451103604, 34.731173649659766], [-77.37203065327874, 34.73112119531696], [-77.37144278638127, 34.73128824381797], [-77.37123577273027, 34.731317969296725], [-77.37081378692028, 34.731343244032445], [-77.37088487931211, 34.73174025982078], [-77.37076677386068, 34.732047965843066], [-77.37051535939348, 34.73227427808457], [-77.3702608627905, 34.73200018908746], [-77.36999904043576, 34.73184375713742], [-77.36978635546862, 34.73145345078446], [-77.36947773939883, 34.73123055583629], [-77.36913879198553, 34.731163241135334], [-77.36900529374773, 34.73114109219332], [-77.36883063666919, 34.731188516566974], [-77.3683831319469, 34.7312214384895], [-77.36776801792307, 34.731465456641274], [-77.36772360451445, 34.73148425472871], [-77.36770525264477, 34.73149373643262], [-77.36766432059424, 34.731509332184444], [-77.3676017049645, 34.731488304704634], [-77.36672125921186, 34.73144649228855], [-77.36652090180152, 34.73144777031567], [-77.36630263141883, 34.731501910984605], [-77.3659146874157, 34.7314731474205], [-77.36556472647814, 34.73154790322678], [-77.36528329272716, 34.731585261935884], [-77.36494001265089, 34.731571242661545], [-77.3646604897086, 34.73166777060359], [-77.36441534364397, 34.73164380079612], [-77.36429806952515, 34.73164077537147], [-77.36403321497332, 34.731765674727534], [-77.36385111930227, 34.73188303191565], [-77.36367096986132, 34.732028248240155], [-77.36313529532232, 34.732525291788114], [-77.36251668876564, 34.7328638115294], [-77.36228149739836, 34.73304533676245], [-77.36206951697827, 34.73322296770493], [-77.36157608217249, 34.73369682822919], [-77.3614861423121, 34.733790470759054], [-77.36141450915005, 34.73395264471518], [-77.36130170644097, 34.73430318438512], [-77.36149880645803, 34.7349047442558], [-77.36159703007482, 34.735237403139124], [-77.36149748219765, 34.735465735270054], [-77.36154222951214, 34.73622008642666], [-77.3615687214508, 34.73719083652975], [-77.36109826790073, 34.737749121739185], [-77.3601500238495, 34.73807930402408], [-77.35955343069443, 34.73828703984155], [-77.35881701507593, 34.73854345145126], [-77.35843317684517, 34.738677099355854], [-77.35727431016247, 34.738820957658895], [-77.3572769878904, 34.73972964972876], [-77.35739419837232, 34.74019931419656], [-77.35696471386828, 34.740747293023], [-77.35722279831575, 34.74111960711615], [-77.35722755901566, 34.74133239704392], [-77.35731305019078, 34.74167424233175], [-77.3572992498292, 34.74184923611408], [-77.35725229661298, 34.74199252281893], [-77.35711841435324, 34.74218834657455], [-77.35699853067737, 34.74240594778664], [-77.35662966473545, 34.74274282406135], [-77.35648903081662, 34.74323106148679], [-77.35648330089629, 34.74325030166777], [-77.35647202160808, 34.74327399706116], [-77.35618678295458, 34.74377838767558], [-77.35577734655782, 34.74459676944761], [-77.3556438687287, 34.744827680032486], [-77.35554928027223, 34.744951506761126], [-77.35538543168626, 34.74568665456035], [-77.35537228714936, 34.74583972525609], [-77.35538255350758, 34.74608026698397], [-77.35530820962558, 34.74633590372005], [-77.35531952343258, 34.746525776726166], [-77.35545356429803, 34.74678139117334], [-77.35546853222165, 34.74680128130983], [-77.35547048467214, 34.746803875823545], [-77.35547292048494, 34.74680760134989], [-77.35561708584717, 34.747024582145016], [-77.35563153754748, 34.74707421280451], [-77.35574175364259, 34.747251161309244], [-77.35581496571503, 34.747327340150434], [-77.35589016402844, 34.747433289705185], [-77.35601214119512, 34.747569893225254], [-77.35610833657672, 34.747688226012], [-77.35618311858475, 34.747832599441146], [-77.35629031295534, 34.748117855577135], [-77.35629983180574, 34.748137043898986], [-77.35634563707217, 34.74820977682297], [-77.35649917032782, 34.74860934422677], [-77.35661041362376, 34.7486865876851], [-77.35669141011525, 34.74879917636974], [-77.35703963136098, 34.74914488309979], [-77.35727780240458, 34.74947722854314], [-77.35733795873541, 34.7497038576756], [-77.35721231654682, 34.75025384338023], [-77.3570921746622, 34.75047747846574], [-77.35693044258862, 34.750805744502145], [-77.35699739292674, 34.75097787402204], [-77.35675036302396, 34.75112110764097], [-77.35658118081464, 34.751468599511114], [-77.35708871496455, 34.75142078679296], [-77.35714875535132, 34.75134920566042], [-77.35747766369549, 34.75091194672035], [-77.35766704728161, 34.750656599578946], [-77.3581215651646, 34.75067801646531], [-77.35848010643744, 34.75077433410224], [-77.35850271274467, 34.75077907149344], [-77.35851085466459, 34.75078421718066], [-77.35874784164803, 34.750984746481336], [-77.35906987963364, 34.751180751028485], [-77.35868679314129, 34.75155977007197], [-77.35844801976783, 34.75175350831183], [-77.35816575062083, 34.751972457189154], [-77.35788304905176, 34.75212431684898], [-77.35749020634974, 34.752372376380954], [-77.35759730380528, 34.75265814966364], [-77.3575061658634, 34.75285757111645], [-77.35770681362573, 34.7532446367989], [-77.3577421575332, 34.75331256054737], [-77.35775055712783, 34.753328720844735], [-77.35776384873824, 34.75335622087198], [-77.35785610498932, 34.75403598344353], [-77.35804077456167, 34.754246335741925], [-77.35832706984112, 34.75446219104327], [-77.35862560291307, 34.75451407904747], [-77.35868904047375, 34.754578008385025], [-77.3587486993558, 34.75463654029544], [-77.3588008885519, 34.75468909358667], [-77.35884519886302, 34.754789241812496], [-77.35887241388717, 34.75483119293309], [-77.35887871107188, 34.754920720336756], [-77.35883479243573, 34.75511210608309], [-77.35875363584543, 34.755448144844785], [-77.3587166960312, 34.75561570314282], [-77.35872164619741, 34.7557356074586], [-77.35873558403433, 34.75610049536024], [-77.35875617081003, 34.75612702723778], [-77.358936196729, 34.75635904098693], [-77.35908533681291, 34.7565398663433], [-77.3591330672566, 34.75660184867952], [-77.35919789275705, 34.75666867847168], [-77.35937320885554, 34.75681137286411], [-77.3595586161493, 34.75696227877752], [-77.35960356333501, 34.75702842750505], [-77.3596493475246, 34.75717683693988], [-77.35971654959312, 34.75733575394151], [-77.35979406303369, 34.757645925924464], [-77.35984785154517, 34.75789734193958], [-77.35986600361248, 34.758009263099595], [-77.35993280517808, 34.75826345627259], [-77.35994978966953, 34.75833905174651], [-77.35996177366687, 34.75836908786148], [-77.36010563429718, 34.75856002892175], [-77.36012964751066, 34.758594947539635], [-77.36015111375595, 34.7586003037013], [-77.36043661189805, 34.75859139944811], [-77.36072657169231, 34.75847172063603], [-77.36109282385952, 34.75839457512869], [-77.36135316022174, 34.758442349454526], [-77.36168112847363, 34.75843157304077], [-77.36192468692603, 34.75858697805744], [-77.36206983017041, 34.758679588280344], [-77.36217923819936, 34.758779152268666], [-77.36257923801642, 34.759084593793624], [-77.36272047342774, 34.759124370898974], [-77.36335840502473, 34.758931289309295], [-77.36339898342324, 34.7589280747091], [-77.36342342787229, 34.7589127003323], [-77.36371321962949, 34.75869336164139], [-77.36394986065744, 34.75857908471525], [-77.3640812253252, 34.75854661224098], [-77.3641675470525, 34.75855925004683], [-77.36431539240128, 34.75857432362696], [-77.36447591688537, 34.75860185223752], [-77.36463322208328, 34.758700853181836], [-77.36474867121161, 34.758767109204804], [-77.3650535499952, 34.75896538704512], [-77.36515738787593, 34.759116264343334], [-77.36527122233082, 34.75917669670435], [-77.36556727934482, 34.75948007554604], [-77.3657639247372, 34.759689098002745], [-77.36581608419714, 34.75973452406671], [-77.36589465673543, 34.759818992231914], [-77.36578926797638, 34.75984320874781], [-77.36567839937996, 34.75998364526243], [-77.3655486596505, 34.76019836524417], [-77.36541618783998, 34.760210750615286], [-77.36512151398392, 34.7602483822752], [-77.36475765959659, 34.76017521170047], [-77.3643690520525, 34.760074446091856], [-77.36402106657685, 34.759945738394784], [-77.36376899904334, 34.75993174101973], [-77.36348917559809, 34.76009551114556], [-77.36335421166453, 34.76035239038891], [-77.36330408436179, 34.76078040336506], [-77.36341198496754, 34.76116116549647], [-77.36342183632956, 34.76119039157618], [-77.36328841248682, 34.76167943880506], [-77.36326533776315, 34.761704564095936], [-77.36325169102926, 34.76171314729877], [-77.36294577805073, 34.76193058750393], [-77.36278941967993, 34.76208749012284], [-77.36269576587976, 34.76227038321278], [-77.3625125875299, 34.76289494382894], [-77.36253065538509, 34.76311537304282], [-77.36252128087926, 34.76333757884144], [-77.3626942405896, 34.763632707924714], [-77.36273049308177, 34.76369673355573], [-77.36276454004232, 34.763756460423735], [-77.36294137668494, 34.76405519304075], [-77.36312554505668, 34.764356583495946], [-77.3631596842406, 34.76441056183807], [-77.36320546598338, 34.764470009211706], [-77.36333075027302, 34.76478559892085], [-77.36332834240349, 34.764802739065395], [-77.36306198492571, 34.764979016328326], [-77.36291259737834, 34.76508984812662], [-77.3627042635912, 34.76527942865684], [-77.36263752161223, 34.765389680970145], [-77.36264900720352, 34.76551567315187], [-77.36267761790286, 34.765898961137715], [-77.36270286793658, 34.766385758586466], [-77.36271295125958, 34.76653453259908], [-77.36287883643527, 34.76706255725311], [-77.3629144345878, 34.76719019140867], [-77.36293959728438, 34.76720592538441], [-77.36298576884587, 34.76723747317607], [-77.363478499933, 34.76755937427503], [-77.3636674369796, 34.76776922074009], [-77.3639863021894, 34.76801993326964], [-77.36429751364484, 34.76820754077258], [-77.36448668649419, 34.7683206707031], [-77.36453468869222, 34.76834075517835], [-77.36459768328734, 34.768376564106354], [-77.36490759109472, 34.76859169889404], [-77.3650595968011, 34.76874243800374], [-77.36521021743415, 34.76891196793421], [-77.36528108744, 34.76911097099213], [-77.36530130139431, 34.76932030783492], [-77.36529969186553, 34.76952479425572], [-77.36528778426835, 34.769672532681724], [-77.36527297038043, 34.769778361849305], [-77.36532268758783, 34.7700457315323], [-77.36541984063685, 34.77060973655526], [-77.36551201881724, 34.77086943742453], [-77.36563908892346, 34.77116548096], [-77.36577308066833, 34.771355197833245], [-77.36615504532139, 34.771598064765186], [-77.36665903875159, 34.771748081944175], [-77.3667478729678, 34.77176594586021], [-77.3668572050316, 34.771796378107446], [-77.36702270475625, 34.77234285328349], [-77.36712092315318, 34.772550870553076], [-77.36706213297145, 34.77260358802568], [-77.36713070212518, 34.77265701975155], [-77.36723625861268, 34.77342362231238], [-77.36745338072913, 34.77375526897401], [-77.36757093424383, 34.77382675822591], [-77.36787787834824, 34.77404903022409], [-77.36771676926773, 34.774226661528274], [-77.36730079045904, 34.77429144449777], [-77.36729876774884, 34.7742917595086], [-77.36729753871646, 34.774291950911255], [-77.36729250340993, 34.774292735072635], [-77.3669615461838, 34.77434427598705], [-77.36682848665478, 34.774271356500705], [-77.36666412184697, 34.77426378340435], [-77.36655597603482, 34.774030824754625], [-77.36648181194782, 34.77373771243141], [-77.3664491860591, 34.77365102761287], [-77.36634650864531, 34.773398314472864], [-77.36630413712908, 34.77329402849794], [-77.36611192217447, 34.77299917762325], [-77.36580274823142, 34.77281123674567], [-77.36548705495744, 34.77282618945957], [-77.36529969683741, 34.77303200639484], [-77.36505583400339, 34.773173925019066], [-77.36487715805256, 34.773326162244764], [-77.36473888296177, 34.77339497580303], [-77.36425950856719, 34.77370672185261], [-77.36420373895585, 34.7737222486755], [-77.36419302782323, 34.77376317957749], [-77.36413597929621, 34.77382176374693], [-77.36366155026168, 34.7743329781092], [-77.36344852602782, 34.77462108868332], [-77.36330723857438, 34.774776415731], [-77.36311343379086, 34.77493402444071], [-77.36302483945761, 34.775032043921314], [-77.36287836886153, 34.77523779240723], [-77.36271462647386, 34.775482708393724], [-77.3626242952449, 34.77563154399397], [-77.36241716916172, 34.77593783893978], [-77.36229451729848, 34.77605414930349], [-77.3620954980321, 34.77626421123108], [-77.3619916941702, 34.77634816918881], [-77.36173189947414, 34.776607529825924], [-77.36155122173588, 34.776753251562305], [-77.36150683595663, 34.77679897320249], [-77.36137888315557, 34.77699752455166], [-77.36123296805653, 34.77720110466668], [-77.36120158379363, 34.77727452499376], [-77.36104024340911, 34.77753340321335], [-77.36092591752845, 34.777652878524705], [-77.3605852076314, 34.77797733496026], [-77.3605129862576, 34.7780675998913], [-77.36047304169722, 34.778103287515954], [-77.3603883778487, 34.778198571950064], [-77.36011193294965, 34.778486477784384], [-77.36016639741644, 34.77896274639817], [-77.36018705221208, 34.779035559550486], [-77.36019864221386, 34.77907605176025], [-77.36036491854146, 34.77940777754503], [-77.36036105712772, 34.77941773743352], [-77.36034709565425, 34.77968723224244], [-77.36025217977851, 34.77977187530062], [-77.36016474853734, 34.779845464988384], [-77.36011214150699, 34.77988462461818], [-77.3600776968188, 34.77997357529876], [-77.35997964637123, 34.78011787238238], [-77.35993400370397, 34.780216871000846], [-77.35971972773791, 34.780500380504314], [-77.35963408967388, 34.78055617461919], [-77.35965488499505, 34.78059580550793], [-77.35963436816702, 34.780794219439315], [-77.35959309855457, 34.78106777045629], [-77.35960977249938, 34.78110689496696], [-77.35959612057049, 34.78116186320955], [-77.3594163894457, 34.78154457462979], [-77.35939722788862, 34.781585376471256], [-77.35939197272498, 34.78158990704796], [-77.35914716179235, 34.781925192518585], [-77.35911237996582, 34.78205129458334], [-77.35907377789961, 34.78217640998684], [-77.35873978498032, 34.782756544251775], [-77.35862962282278, 34.78300081778744], [-77.3585500870848, 34.7831951087667], [-77.35852746824017, 34.78324468553952], [-77.35851119601779, 34.783303047888616], [-77.35851567259618, 34.783520173608935], [-77.35843755759933, 34.783759887475426], [-77.35829209676635, 34.78400116664762], [-77.35806227596106, 34.784382373254296], [-77.35804976566475, 34.784623295333716], [-77.35798774601064, 34.78501312691909], [-77.35783968404048, 34.78536750179792], [-77.35805458607413, 34.78612885065818], [-77.35805990199476, 34.78615684475258], [-77.35806311958191, 34.78616700664512], [-77.35757712064229, 34.78684561441242], [-77.3575233477921, 34.787087550305], [-77.35713968372286, 34.787172358634706], [-77.35690669383357, 34.78724679567465], [-77.35671934402134, 34.787365429884666], [-77.35653201158411, 34.78769667961385], [-77.35704997027294, 34.787481131323624], [-77.3577799476672, 34.787177345046885]], [[-77.41482409729377, 34.76341786321861], [-77.41524226253635, 34.762857315477994], [-77.41570634206138, 34.76270230780954], [-77.41598423352367, 34.76257351654298], [-77.41641406429746, 34.761984494256815], [-77.41655710795727, 34.761881474107625], [-77.41655112932457, 34.76180519236581], [-77.41709212582364, 34.76139159634044], [-77.41728364979856, 34.76119689687342], [-77.41751987502465, 34.761099782629756], [-77.41778744849888, 34.76103161386858], [-77.41788547950746, 34.760668473836226], [-77.41813184958264, 34.76048305776802], [-77.41831421445858, 34.7603962746625], [-77.41848767904096, 34.7603198505967], [-77.4188808372644, 34.760111647656124], [-77.4190813933629, 34.76015369493335], [-77.41963302867183, 34.759729149094746], [-77.41975940954846, 34.759765460361734], [-77.41988416230059, 34.75968972819936], [-77.42062002022425, 34.75967552074117], [-77.4208949872583, 34.7598010059848], [-77.42126691024532, 34.75983912795982], [-77.42186076882994, 34.76020654947769], [-77.42202609417195, 34.76032462491256], [-77.42207020495833, 34.76039694636676], [-77.42272569371842, 34.76012364051326], [-77.42345517124825, 34.759819478579516], [-77.42348156511366, 34.75980847307832], [-77.42346027084254, 34.75980187081979], [-77.4234388766156, 34.75979286148067], [-77.422569220544, 34.75929613189549], [-77.42235956165284, 34.759173310902256], [-77.42191778468543, 34.758803899391005], [-77.42179616479494, 34.75872571256572], [-77.4217880622203, 34.75867784794145], [-77.42177103315105, 34.758564172050114], [-77.42168956033223, 34.75832378839577], [-77.42166123796704, 34.75826273818191], [-77.42161370211838, 34.75813223116458], [-77.42147798433916, 34.75808545383843], [-77.42138867570532, 34.75809659072895], [-77.42126796566866, 34.75805319956032], [-77.42096384798353, 34.75799346508605], [-77.42077058943624, 34.75801619748764], [-77.42034136562457, 34.757724473625274], [-77.42021628300088, 34.757715617017524], [-77.42013366800998, 34.75763339527162], [-77.41955843125632, 34.75733958489485], [-77.41920889802795, 34.75712622636822], [-77.41913486775134, 34.75702059893521], [-77.41901433125034, 34.75705238499253], [-77.41888849751977, 34.75710545326601], [-77.41890041048472, 34.757254843707315], [-77.41850462304987, 34.75753037232286], [-77.4185304102935, 34.757757682229936], [-77.41854124763582, 34.75810225236067], [-77.41856148641648, 34.758288883048806], [-77.41840516992781, 34.75904897112234], [-77.418310438553, 34.759139747990616], [-77.41789893798027, 34.75945784074208], [-77.41779041129973, 34.75954054436331], [-77.41775642578229, 34.75956496140637], [-77.41747252800995, 34.759769173324216], [-77.41724433784645, 34.759885320247406], [-77.41713039271013, 34.759958182619314], [-77.41695794279894, 34.760107207162385], [-77.41677946859932, 34.75992454780616], [-77.41682913119551, 34.759740207382976], [-77.41684928976392, 34.7594989357668], [-77.41685182456195, 34.759468596971665], [-77.41686368780177, 34.759443074608896], [-77.41698974528141, 34.75923725767177], [-77.41717990874486, 34.75886487808981], [-77.4172436668064, 34.75876691944173], [-77.41727361496929, 34.75869624005939], [-77.41727357921576, 34.75837946280069], [-77.41704890414577, 34.75813976589913], [-77.41697047273315, 34.75805946563919], [-77.4169267513862, 34.75800095012631], [-77.41650474550295, 34.75739049354939], [-77.41649171286605, 34.757366336175444], [-77.41647908986894, 34.75733228592388], [-77.41617175941394, 34.75660700085691], [-77.41613658549524, 34.75630067172959], [-77.41604392530863, 34.756111255738986], [-77.41608458816295, 34.75600563116887], [-77.41603434463278, 34.755771566738076], [-77.41581530058772, 34.755472258140145], [-77.41576298562643, 34.755376421208325], [-77.41553701649983, 34.75508618211505], [-77.41524791582572, 34.754714848021585], [-77.41526745203973, 34.75430584194508], [-77.41573787692512, 34.753195165984984], [-77.41641318650483, 34.75313205592025], [-77.41671692193545, 34.75329887204376], [-77.41701294116878, 34.7535781260563], [-77.41708756507656, 34.75368060265783], [-77.41740906925979, 34.75412210657805], [-77.41753842996192, 34.754251764087506], [-77.4177970212514, 34.75431563160467], [-77.41799009440872, 34.754330347392674], [-77.41821836254599, 34.75425606647708], [-77.41849377525762, 34.75417209673783], [-77.41868305144462, 34.754152185818725], [-77.41904759773303, 34.75411496735936], [-77.41959688161123, 34.75428625087643], [-77.41988023761114, 34.754447380556016], [-77.4203237102172, 34.75470394580863], [-77.42042597152792, 34.754777477695356], [-77.42049809513809, 34.754803228165756], [-77.42091265088798, 34.75491818005847], [-77.42102545404448, 34.75492201816907], [-77.42124914777514, 34.754936441505905], [-77.4214153073572, 34.754991446914815], [-77.42152318184893, 34.754951312476564], [-77.42165954417007, 34.75494707595111], [-77.42172618799776, 34.754960718981955], [-77.42179910948063, 34.75504774202002], [-77.42186342391886, 34.75512668253024], [-77.42191811586223, 34.75536886696304], [-77.42206815859969, 34.755750627824675], [-77.422122586351, 34.75591136692705], [-77.42229456374837, 34.75605949400255], [-77.42252281284676, 34.756190859680146], [-77.42257313517318, 34.75622149716451], [-77.42295796413816, 34.75645578856254], [-77.42309892345091, 34.75662052489315], [-77.42323770830035, 34.75678551886686], [-77.42344587585679, 34.75702089470059], [-77.42349757214798, 34.75712353827689], [-77.42357084353088, 34.75720556684762], [-77.42371459684634, 34.75725176929977], [-77.42418553245113, 34.75729766207768], [-77.42420416926635, 34.75730362605949], [-77.42423699841684, 34.757297346720236], [-77.4246337632665, 34.75725750377704], [-77.42484914205022, 34.75722083264765], [-77.42503039462474, 34.7571575401587], [-77.42518139125416, 34.757068285216356], [-77.42539845487205, 34.75701090533322], [-77.42554560484152, 34.75703054862428], [-77.42582476051793, 34.75704588758905], [-77.42587413918532, 34.75704007131719], [-77.42589376968849, 34.75703767860966], [-77.42619417392268, 34.75700563835399], [-77.42631959459452, 34.75701985698626], [-77.42669617840275, 34.75712888477408], [-77.42678587874148, 34.7571770934501], [-77.42691766133339, 34.75724891657355], [-77.42713355678991, 34.75739287708609], [-77.4273186859886, 34.757551950820634], [-77.42745399074946, 34.75786236995175], [-77.42761088020023, 34.75808659609868], [-77.42781528084907, 34.75800135813492], [-77.42780347088289, 34.757984479350554], [-77.42774819983106, 34.75785767529885], [-77.42774754823733, 34.75713683243059], [-77.42710697411715, 34.75662300447833], [-77.42715204313694, 34.75649239959785], [-77.42702001691629, 34.75636852808069], [-77.42688083619814, 34.75644094456351], [-77.42683902976074, 34.75652938125984], [-77.42653228440314, 34.75661944025209], [-77.42631441018334, 34.7565904310388], [-77.42604043035752, 34.75650957129808], [-77.42598823774681, 34.756478608457826], [-77.42576408883501, 34.75627608495397], [-77.42554210848374, 34.75627099086717], [-77.42480294460594, 34.756038151213204], [-77.42457039826898, 34.75596872522278], [-77.42401251828129, 34.75601606149701], [-77.42387042505347, 34.75601058337643], [-77.42375171332735, 34.756009634771054], [-77.42341087226433, 34.756007752335975], [-77.4233019023711, 34.75591967651986], [-77.42318266013996, 34.75581077795686], [-77.4229321749896, 34.75557379161428], [-77.42285492603517, 34.755248540991786], [-77.42282371497836, 34.75512627268249], [-77.42276226415476, 34.75475188974068], [-77.42248291697582, 34.75444810563508], [-77.42245517878943, 34.75441435917192], [-77.42201723388585, 34.75416980132004], [-77.4217505703504, 34.75404334589806], [-77.4217366628428, 34.75418730972814], [-77.42117044851955, 34.75442141773813], [-77.42108883678489, 34.75445810006283], [-77.42099310133483, 34.754486523453764], [-77.42083206369313, 34.754482571272916], [-77.42061513759305, 34.75443213379059], [-77.42053435410465, 34.75440329146251], [-77.42032574933712, 34.75425329238632], [-77.42015446351527, 34.7540537669575], [-77.42006062041555, 34.75382462791481], [-77.41965738265685, 34.75361534018509], [-77.41925440472917, 34.75353630960991], [-77.41892520161916, 34.753316225214306], [-77.41841671999796, 34.75308423893294], [-77.41835991351014, 34.753053681945495], [-77.41833171628357, 34.753028286087805], [-77.41782781474353, 34.75267656953542], [-77.41736426390167, 34.75210006071218], [-77.41716332613365, 34.75172997063601], [-77.41654404243036, 34.751520436018296], [-77.41560432449577, 34.75149651377578], [-77.41467429292813, 34.7514572780229], [-77.41310647086215, 34.75172989496498], [-77.41269902911515, 34.7535911653154], [-77.41258866712485, 34.753785299845894], [-77.41255309089507, 34.75397540499916], [-77.41240655980653, 34.755498507064345], [-77.41241675985786, 34.75596159070565], [-77.4124889046298, 34.75686268354682], [-77.41253934852628, 34.75722857113041], [-77.4132614731316, 34.75849324311872], [-77.41323431072774, 34.758724287396106], [-77.41286288250875, 34.759472110811075], [-77.41243368270871, 34.75976460395755], [-77.41213176382209, 34.76033474763748], [-77.4120256900423, 34.76059406202447], [-77.41179494363757, 34.76110970689791], [-77.41166299318964, 34.76128908798151], [-77.41166106390695, 34.761494381024576], [-77.41154661416572, 34.7623665979752], [-77.41209633309586, 34.76360382549778], [-77.4130201410286, 34.76371492026305], [-77.41334577365491, 34.76371916687287], [-77.41444245210666, 34.763576952701705], [-77.41470107423694, 34.76346914671277]], [[-77.44255203049039, 34.75185457169889], [-77.44244038409806, 34.75183810594373], [-77.44238472748644, 34.751852802725416], [-77.44233079110401, 34.75187877302346], [-77.44171600415517, 34.75212526172713], [-77.44165299742085, 34.75215315808816], [-77.44158622751374, 34.75217772278763], [-77.44098862023847, 34.752422776065636], [-77.44090527201513, 34.75242739840967], [-77.4408459018136, 34.752478150463816], [-77.44026089534248, 34.75272144578221], [-77.44016613850113, 34.75271567340146], [-77.43991957790897, 34.75271360515135], [-77.43955252412515, 34.752953217436435], [-77.43946197746965, 34.75306106258109], [-77.43895188782844, 34.752812713185754], [-77.43847855596026, 34.75266109348911], [-77.43835495256413, 34.75265942441554], [-77.43830423176225, 34.752665747367665], [-77.43817923207817, 34.75266470086692], [-77.43808243153606, 34.752677366988515], [-77.43801527281333, 34.75272517739738], [-77.43791948303188, 34.75278509362584], [-77.43762840905485, 34.75301572840238], [-77.43764525543773, 34.75303719862381], [-77.43763049949264, 34.75306083045941], [-77.43760313678041, 34.75304127278184], [-77.43734801573125, 34.75334718421327], [-77.43721184086007, 34.7534448250327], [-77.43699287071007, 34.75351488019582], [-77.43677354116352, 34.75381872649529], [-77.43675320539822, 34.753843641835665], [-77.43679197503259, 34.75393447780088], [-77.43671868007527, 34.75388136233269], [-77.43657277349331, 34.75406012743505], [-77.43648235327564, 34.7541633898114], [-77.4364793662555, 34.754167255572895], [-77.43647770727505, 34.75416893424149], [-77.43646995068747, 34.754186782290304], [-77.43642522004741, 34.75428809886075], [-77.43643542036627, 34.75430608108219], [-77.43655809501588, 34.75435499757169], [-77.43658481676601, 34.754343851344146], [-77.43676716027944, 34.75426779146383], [-77.43694950344562, 34.75419173132327], [-77.43731418873617, 34.7540396102613], [-77.43767887263772, 34.753887488158284], [-77.43804355515023, 34.75373536501423], [-77.43877291600819, 34.75343111560307], [-77.43950227131, 34.75312686202799], [-77.44023162105562, 34.75282260428913], [-77.44096096524503, 34.752518342386644], [-77.44169030387819, 34.75221407632067], [-77.44241963695508, 34.751909806091376]], [[-77.45580921066707, 34.74632266170935], [-77.45563318963744, 34.74613308001237], [-77.45542930380637, 34.74624061189766], [-77.45525746796756, 34.74633123934404], [-77.45490371037296, 34.74643828701224], [-77.45462981681567, 34.74643026438189], [-77.45453439897918, 34.74640826571022], [-77.4542992728293, 34.746311093399086], [-77.45410194443471, 34.746142308360746], [-77.453942287578, 34.74587198111509], [-77.4539121435421, 34.745775082980906], [-77.45403690266173, 34.745462310787026], [-77.45421952336089, 34.74540980402743], [-77.45459078775795, 34.74530305850135], [-77.45484820842344, 34.74529196834856], [-77.45523224907055, 34.745302196679106], [-77.45531840056316, 34.74531216055626], [-77.45565981178935, 34.74549213308026], [-77.45580855023374, 34.7455266638675], [-77.45595052602224, 34.74559670286188], [-77.45614821437353, 34.745734734083754], [-77.45633449733336, 34.74592527268683], [-77.45646195047158, 34.74605023354384], [-77.45685907862845, 34.7458844851992], [-77.45668172641388, 34.74571060101687], [-77.456537333332, 34.74557232913025], [-77.45645403901975, 34.74551187158369], [-77.45614113519962, 34.745291246222315], [-77.45591894753957, 34.74514489283506], [-77.45555678038761, 34.744953914610186], [-77.4553591069004, 34.74486351295173], [-77.45522686866681, 34.74477994494187], [-77.45493847990898, 34.74454289047118], [-77.4548366671975, 34.74445281027724], [-77.45456439183451, 34.74416355464354], [-77.45435643260286, 34.74389617872534], [-77.4542389326688, 34.7437396150127], [-77.45407682182702, 34.7434741675009], [-77.45399329267269, 34.74293466073904], [-77.45381045707003, 34.74269246107792], [-77.4533712361708, 34.742318615069976], [-77.45304005497067, 34.742121116660236], [-77.45298352861222, 34.74199196850898], [-77.45279203022768, 34.74177819425287], [-77.45272000830673, 34.7415321931852], [-77.45279301925463, 34.74133134607885], [-77.45293513994719, 34.74104833196342], [-77.45310631527197, 34.74095327998849], [-77.45320661063903, 34.74071229836174], [-77.4532447202954, 34.74059745676588], [-77.45329184794078, 34.74050875869335], [-77.45348756546613, 34.74024906562774], [-77.45354289041137, 34.74017119807372], [-77.45356509979403, 34.74015035296672], [-77.45358903074826, 34.74010625570172], [-77.45404308514782, 34.73919929967525], [-77.45425994388603, 34.738352205174394], [-77.45502461477929, 34.737721326123875], [-77.4548152326424, 34.73723299763423], [-77.45585172364467, 34.73650784222403], [-77.45712137923003, 34.73704470254328], [-77.45910563895666, 34.73649533728585], [-77.45842094470225, 34.73318733781528], [-77.45745143095097, 34.73144583201337], [-77.45743329038554, 34.73135861577187], [-77.4574081529335, 34.73112470500704], [-77.45406799576911, 34.726079810078645], [-77.45383250383077, 34.725753383635855], [-77.45382627620276, 34.72572127888213], [-77.45382047340102, 34.72570572681128], [-77.4538290977354, 34.72568971550631], [-77.45452180094992, 34.72147874579491], [-77.4557575165573, 34.717772058644364], [-77.45582386939073, 34.71746165149529], [-77.45572972068949, 34.71683456824291], [-77.45562204019559, 34.71515518123172], [-77.45628196290733, 34.71398159156437], [-77.4561971659554, 34.71312011440062], [-77.45784401373402, 34.711877461339455], [-77.45808750709766, 34.71322774801282], [-77.4587745907696, 34.71402047876948], [-77.46060115431139, 34.715749775658665], [-77.46183258296807, 34.71581863830246], [-77.46247326265998, 34.71588877116356], [-77.46664553379631, 34.71690812030814], [-77.46731700077217, 34.71700405425317], [-77.46966496231134, 34.71567464027087], [-77.47163296651212, 34.717393820383606], [-77.47282054471711, 34.71779031679297], [-77.4740322972966, 34.71796340306703], [-77.47480297641783, 34.71808484755347], [-77.47525339382598, 34.71817402850846], [-77.47591008442343, 34.71828580991252], [-77.47646776238037, 34.71840794135224], [-77.47752400901095, 34.718332188336674], [-77.47788342137603, 34.71713606709653], [-77.47863154783548, 34.716483092859995], [-77.47884290295681, 34.71527476802668], [-77.47735574530664, 34.7153334648265], [-77.47652440129856, 34.71491776184203], [-77.47509871271232, 34.71427151276511], [-77.47323141374598, 34.71459771041406], [-77.47274178514849, 34.71472013202435], [-77.47237916851928, 34.71481079182904], [-77.46994614798314, 34.71541905341736], [-77.47158710272, 34.714023536748556], [-77.46955984902581, 34.71200861639129], [-77.47102764954386, 34.70935655125972], [-77.47151545235356, 34.70762010547607], [-77.47159793783933, 34.70687519348986], [-77.47151514246232, 34.70505518059943], [-77.47190760118373, 34.70388450465571], [-77.47065756211236, 34.703021405402026], [-77.46887860456037, 34.70157801930223], [-77.46852443595058, 34.70153189590649], [-77.46832247341126, 34.70152689550964], [-77.46673345253336, 34.70114927939005], [-77.46611267994822, 34.70100696678057], [-77.46607424492976, 34.70096349980512], [-77.46600181532, 34.70089372047064], [-77.46483536366853, 34.69969510159417], [-77.4641995666781, 34.69875632903951], [-77.46339820212292, 34.697748313608955], [-77.46285006005675, 34.69695263263605], [-77.46232331056484, 34.696378455778984], [-77.46076989918805, 34.69517058136972], [-77.46024904779556, 34.69468618009318], [-77.4600289373301, 34.69455926264056], [-77.45802357797828, 34.693517296464776], [-77.45624098636665, 34.69375175983528], [-77.45530570426446, 34.694920848986506], [-77.45515095424729, 34.69496086556371], [-77.45502494916177, 34.69502362203368], [-77.4544091842838, 34.69524399460457], [-77.45429470059034, 34.69533297710419], [-77.45391608051898, 34.69532622569147], [-77.45368789925521, 34.69521524702509], [-77.45348789334543, 34.69523384252267], [-77.45316095332139, 34.6952893699658], [-77.45303331307888, 34.69526282783702], [-77.45301477812058, 34.69525614196604], [-77.45274247729436, 34.69516049743829], [-77.45271383325903, 34.69513311899083], [-77.45265905437728, 34.69495824449727], [-77.4525666514897, 34.694660314712074], [-77.45241710217542, 34.6944704160862], [-77.45239495444231, 34.69417565821405], [-77.45245669748505, 34.69392524721334], [-77.45177722576301, 34.692957578956744], [-77.45169262924878, 34.69268319725928], [-77.45161138214011, 34.69251181345305], [-77.4509010579928, 34.69155501207604], [-77.45068745165585, 34.69131719972229], [-77.44995444118855, 34.69095581903649], [-77.44978166968488, 34.69099385461373], [-77.44958969398158, 34.69110738351205], [-77.44942717949917, 34.69111175894512], [-77.44937303393496, 34.691127143308236], [-77.44919698733125, 34.69104668193112], [-77.44915872312087, 34.69093207554346], [-77.44913344046849, 34.69080724827663], [-77.44923727128842, 34.690660383443905], [-77.44930701746338, 34.69064549946114], [-77.44941244107582, 34.69062525675001], [-77.44971500096905, 34.690564584490005], [-77.44992222882829, 34.69050765553986], [-77.45061143630245, 34.6905342312774], [-77.4511800217216, 34.6905900152857], [-77.45311877000074, 34.690301958188606], [-77.45379835102062, 34.690399275457025], [-77.45417824155477, 34.690381848030455], [-77.45432418703562, 34.69010584947946], [-77.45691436961263, 34.68887234987093], [-77.45695134926962, 34.68870147179672], [-77.45759155758752, 34.68677571086538], [-77.45807994979718, 34.684797154828395], [-77.45811807689066, 34.684642675684806], [-77.45880747292756, 34.68272868794926], [-77.45870331907004, 34.68252878734816], [-77.45822524845799, 34.68128547716735], [-77.45822299541302, 34.68128365375579], [-77.45734304819442, 34.68053297111929], [-77.45687901561408, 34.680220053422424], [-77.45686163130395, 34.680206754824724], [-77.45685244938048, 34.68019973076496], [-77.4564359717427, 34.67981240191694], [-77.45619812336881, 34.679647711440595], [-77.45597256322445, 34.67946418479041], [-77.45584789327978, 34.67937827782436], [-77.45574286336655, 34.6792876274676], [-77.45567797864933, 34.67924207827414], [-77.45571631235364, 34.6791709271041], [-77.45574233101588, 34.679039101968584], [-77.45577106698315, 34.678795923322745], [-77.45584717318752, 34.67859730053607], [-77.45595270800538, 34.67824060229273], [-77.45601324956665, 34.67803598258358], [-77.4561518185684, 34.67756763045067], [-77.45619937322097, 34.677431758798534], [-77.4561596566622, 34.67684842656962], [-77.45614496762323, 34.676510059060064], [-77.45573833327032, 34.676086111568814], [-77.45529893320855, 34.67571495341733], [-77.45508156470845, 34.675534796882744], [-77.45445159907955, 34.675012673794654], [-77.45441852847944, 34.67498526465888], [-77.45438368442375, 34.67495638504875], [-77.45433421243848, 34.67500929807812], [-77.45291122917345, 34.67571297709341], [-77.45293491028207, 34.67614667445172], [-77.45294570902772, 34.676344404200705], [-77.45295476662972, 34.67651027823445], [-77.45296706399569, 34.67673547304841], [-77.4529746224633, 34.6768738811333], [-77.45296922451406, 34.67697199706656], [-77.45291301766736, 34.67726896679598], [-77.45283839043626, 34.67754563701065], [-77.45278667191862, 34.67766597639354], [-77.45261702673758, 34.678087631495316], [-77.45244097599344, 34.67850303070284], [-77.45237745816887, 34.67862326620685], [-77.4522889587843, 34.6788313117692], [-77.45202853980388, 34.67912067572204], [-77.45216347143698, 34.67954624456337], [-77.45250930065012, 34.67996060650848], [-77.45264021756122, 34.68011274292459], [-77.45290004897507, 34.68047512991864], [-77.45294301625073, 34.68057551660172], [-77.45296580722385, 34.68068703576986], [-77.45328477979041, 34.68130401106668], [-77.45329465351865, 34.6813609841982], [-77.45329532653284, 34.68146438236088], [-77.45342882545276, 34.68196688586881], [-77.45342052591883, 34.68214018405334], [-77.45346625144319, 34.6824911732386], [-77.4534756783418, 34.68254226755056], [-77.45349088874154, 34.68259548958276], [-77.45362891690382, 34.68294602025685], [-77.45392796717331, 34.68324560553529], [-77.45394033316954, 34.683257341345644], [-77.45394413494954, 34.683265004167474], [-77.45393293314756, 34.68328294454622], [-77.45372316507914, 34.68365845653535], [-77.45367095952146, 34.68372853062539], [-77.4534578664304, 34.68381816606986], [-77.45337559304168, 34.68383803024186], [-77.45312849589197, 34.68384929513977], [-77.45292822651322, 34.68385454312386], [-77.45259779292986, 34.68382305908408], [-77.45250491884505, 34.68378989358554], [-77.45199788625918, 34.68362715031961], [-77.45193606839372, 34.6835411594797], [-77.4518448789721, 34.68357936403102], [-77.45171547400932, 34.68360405610963], [-77.45127969482314, 34.683595220711545], [-77.45099185551899, 34.68368053041672], [-77.45060880562771, 34.683699489195035], [-77.45053477613725, 34.68368116469932], [-77.45009991812069, 34.68352686474202], [-77.45003024140944, 34.683484369477], [-77.4498108184747, 34.683245685168416], [-77.44953512078428, 34.68298060692776], [-77.44938075296518, 34.682934321460465], [-77.44860054504176, 34.68276303109032], [-77.44833153075702, 34.682711129560815], [-77.44781963611226, 34.6828012787267], [-77.44772111427412, 34.682821016927555], [-77.44764652731196, 34.682864210347844], [-77.44706396410903, 34.68309613626332], [-77.44700996191423, 34.68315400521308], [-77.44690919245525, 34.683198283096765], [-77.44648512177164, 34.68345280754179], [-77.44633912616825, 34.683552886943446], [-77.44613729083996, 34.68365188631763], [-77.44578998612064, 34.68376882371794], [-77.44563452590414, 34.68389659697463], [-77.44558495888839, 34.683976661972665], [-77.44538064808735, 34.684052682228135], [-77.44526922432956, 34.684047205596414], [-77.44517632674828, 34.68411332150644], [-77.44489824159935, 34.68418852956909], [-77.4446624693426, 34.684492708587165], [-77.44463639963551, 34.68450822684454], [-77.44460245327402, 34.684527983617855], [-77.4443010200178, 34.68470774191347], [-77.44421565895843, 34.68475765604158], [-77.44413317989442, 34.68480725475358], [-77.44407260187933, 34.68484552218104], [-77.4439682138384, 34.684911464684355], [-77.44382455823558, 34.68500221202126], [-77.44363828015352, 34.68511988400152], [-77.44350291858913, 34.68520539132383], [-77.44341720158025, 34.68530297648974], [-77.44333340363252, 34.685369257496774], [-77.44331138907886, 34.68541794777607], [-77.44322966513496, 34.6855026226136], [-77.44313725158986, 34.685636584376404], [-77.4431435466577, 34.685806613652744], [-77.44297748395391, 34.6857156375837], [-77.4429156880123, 34.68563370705359], [-77.44283928949267, 34.68553241565353], [-77.4427876535952, 34.68546395549247], [-77.4427543492715, 34.68537931929418], [-77.44271696437698, 34.68527026251768], [-77.44271834070436, 34.68511167753328], [-77.44273047417042, 34.68493534015605], [-77.44275376408925, 34.68480848833805], [-77.44280835722977, 34.68451114347281], [-77.44292371911037, 34.68444386754568], [-77.44286472135245, 34.68388969304413], [-77.44286504464168, 34.68386920794914], [-77.44286076855809, 34.683862826927744], [-77.4428266905946, 34.68379345253222], [-77.44251286016072, 34.683123424988594], [-77.44206618398363, 34.68246695458398], [-77.44206034215125, 34.68241953312015], [-77.44202396473158, 34.682365464355705], [-77.44195700787706, 34.682372020114315], [-77.44194269579104, 34.682423779712], [-77.44171029659168, 34.68256567595036], [-77.44133311595112, 34.682769687325965], [-77.44130317099201, 34.682798692223955], [-77.44129124178076, 34.683187036496946], [-77.4412825846145, 34.68331105683541], [-77.44126916542531, 34.68364265987698], [-77.44121271595338, 34.6838456656665], [-77.44115525826483, 34.684052292211135], [-77.44114259505754, 34.68410066832632], [-77.4411387242512, 34.68414352498536], [-77.44110902669236, 34.684368450112714], [-77.44108557245013, 34.68461212200341], [-77.44108197704337, 34.684680197708616], [-77.44106267570531, 34.684911282271614], [-77.44105525744504, 34.68507118478875], [-77.4410700614245, 34.68519338315422], [-77.4410642319167, 34.685290641816046], [-77.44104470188502, 34.68536695401677], [-77.44098439211157, 34.685442949707536], [-77.4408606968707, 34.685598816003214], [-77.44078639225818, 34.68569244625313], [-77.44064894957981, 34.685687214658046], [-77.44050299738247, 34.685409140919], [-77.44050327418535, 34.685274737673815], [-77.44050780337544, 34.685237108342264], [-77.4405287601212, 34.68500412897478], [-77.44047441263322, 34.68486726687205], [-77.44042828846035, 34.6846894809774], [-77.44022751220425, 34.68414604368783], [-77.44019932249111, 34.684089298728935], [-77.44015966985347, 34.68403652276996], [-77.43997240982195, 34.6837376237102], [-77.43993527303489, 34.68355362240011], [-77.43991243253396, 34.68339103778115], [-77.43994347110986, 34.68330329981731], [-77.43994529694086, 34.68290624921563], [-77.43994607806503, 34.682855807286494], [-77.43993310172515, 34.682839224087786], [-77.43991984676583, 34.68242035310077], [-77.43989131837526, 34.682265573279274], [-77.43990925658699, 34.682015698831464], [-77.43990359729519, 34.68198073301039], [-77.43990019538965, 34.681954395590395], [-77.43980815631542, 34.681677454549444], [-77.43982856460771, 34.68156565332058], [-77.43969493045384, 34.68155636054732], [-77.43963823535911, 34.68157269787781], [-77.43955036802674, 34.681587317156236], [-77.43902090420002, 34.681671403822534], [-77.43870551659612, 34.68154350687622], [-77.43846524785955, 34.68137716308441], [-77.43840209804945, 34.68126836070656], [-77.43833448043624, 34.68116216462553], [-77.43800897002093, 34.68073932784183], [-77.43786927053321, 34.680597996614864], [-77.43757112167346, 34.68043690304271], [-77.43745898527683, 34.68042550637896], [-77.43712645325476, 34.68045774761204], [-77.43680632508305, 34.68046668512912], [-77.43665849998118, 34.680440529722155], [-77.43651510594813, 34.680365882329376], [-77.43643277458601, 34.680304876327014], [-77.4362509391382, 34.6801715522233], [-77.43604482810224, 34.6800204277866], [-77.43590824682106, 34.67996181954084], [-77.43569639360416, 34.67987352463281], [-77.43548802587875, 34.679806466935915], [-77.43540283095518, 34.67978083251482], [-77.43532083343962, 34.679749299646154], [-77.43511355623855, 34.679673316780566], [-77.43460490592275, 34.67932667461098], [-77.43457286402588, 34.67932741702286], [-77.43449731439246, 34.67932724067786], [-77.43452582786097, 34.67927125039965], [-77.43428943453625, 34.6788109288872], [-77.4341705804015, 34.67858795670856], [-77.43417667828737, 34.678568299998624], [-77.43415522329491, 34.67855613823086], [-77.4341362173438, 34.67856044230261], [-77.434076746284, 34.6785551404768], [-77.43362682078646, 34.67847543864035], [-77.4335420628149, 34.67846079177461], [-77.43341512702833, 34.67843980419166], [-77.43310179564469, 34.67836488010197], [-77.43286981474164, 34.678569702923625], [-77.43273386202665, 34.67827779073804], [-77.43233974636593, 34.678187123589254], [-77.43210746522757, 34.678092872618336], [-77.4320515759578, 34.67807581573703], [-77.43200384370915, 34.67806543308501], [-77.43175088030311, 34.67800780441663], [-77.4311795734553, 34.678100943658535], [-77.43116964243939, 34.67819719561293], [-77.43119712738073, 34.67847285792517], [-77.43147111172861, 34.67876197443052], [-77.43150625081478, 34.67879021483155], [-77.43152146745642, 34.67880080675828], [-77.43154837944395, 34.67881642134966], [-77.43179466244442, 34.67896388805066], [-77.43195374852212, 34.67904981271907], [-77.43204588276421, 34.67920293159831], [-77.43235221225618, 34.67932987700547], [-77.43224852757845, 34.67959293321015], [-77.43209839691927, 34.67971566501804], [-77.43186822332731, 34.67981704175992], [-77.43176282657687, 34.67991485793884], [-77.431686264843, 34.67995535031679], [-77.431403323198, 34.68007492245114], [-77.43113822109021, 34.680282992181375], [-77.43110315965286, 34.68031047735687], [-77.43109554755812, 34.68031956061748], [-77.43107231995324, 34.68035331543929], [-77.4308487404403, 34.68066388012916], [-77.43075926887147, 34.68074926761675], [-77.43064091828518, 34.680936948448256], [-77.43051604683208, 34.68122326719762], [-77.43039780711426, 34.681422310442095], [-77.43026620218339, 34.68169495117438], [-77.43016636467826, 34.68179176145743], [-77.43005585705832, 34.6819009172942], [-77.4299736418096, 34.68193603749377], [-77.42981975103149, 34.681972914272706], [-77.42963877334654, 34.68203457587745], [-77.42927579083283, 34.682133301704695], [-77.42905112140896, 34.6822119432635], [-77.428857789739, 34.68232049265245], [-77.42872418322327, 34.682425269370285], [-77.42850167127561, 34.68259413885221], [-77.4283930486031, 34.68263173635516], [-77.42826544338834, 34.68267238486427], [-77.4280145662205, 34.68276079092769], [-77.42779833357818, 34.682810324509305], [-77.42764939149164, 34.68263190503805], [-77.427448771039, 34.682386740667084], [-77.42737815452034, 34.6822987263537], [-77.42733919390987, 34.68218258173089], [-77.4272110182287, 34.68219484497975], [-77.42713323762705, 34.68227637574822], [-77.42681682320489, 34.682298205475945], [-77.4266167219833, 34.68246488407335], [-77.42647155454092, 34.68248156373784], [-77.42643314011028, 34.68259057340688], [-77.42646791216565, 34.682678610390155], [-77.42648859386581, 34.68290766207009], [-77.42651057720495, 34.68310718213272], [-77.42653512345537, 34.68318532117179], [-77.42647669181471, 34.68323786691458], [-77.42642459067446, 34.68342619779063], [-77.42628719206358, 34.683646785888264], [-77.42627988871655, 34.68365512286437], [-77.42627768786548, 34.68366038608024], [-77.42626156209289, 34.68369221573128], [-77.42606769927488, 34.68406494688573], [-77.42604477394048, 34.684131962171456], [-77.42603112227718, 34.684200028230734], [-77.42599430991454, 34.68431890482033], [-77.42593839192257, 34.68437429091825], [-77.42588205279796, 34.684509311679506], [-77.42573258568747, 34.68458184324152], [-77.42554462704803, 34.68470551044325], [-77.42548637716246, 34.68487373871175], [-77.4255015003776, 34.68506009308774], [-77.4257492045265, 34.68546271777462], [-77.42588307106372, 34.68560094285485], [-77.42600749941077, 34.68567734233501], [-77.42618692430042, 34.68575569606768], [-77.42629316908366, 34.68579737407428], [-77.42644409013471, 34.68581319442845], [-77.42666500401212, 34.686026126862004], [-77.426647020979, 34.686174884238994], [-77.42653807472158, 34.6863298298657], [-77.42631014758584, 34.68646108728809], [-77.4262326122277, 34.68657829847384], [-77.42598203687231, 34.68687251068762], [-77.42594276666149, 34.68689166780389], [-77.42596804575388, 34.68692085731758], [-77.42602286791607, 34.68698327114003], [-77.42621596357826, 34.68724752846935], [-77.42620039635668, 34.68727352926851], [-77.42597931169459, 34.68746352622744], [-77.42601105722694, 34.687711865654045], [-77.4260164630857, 34.68777715967377], [-77.42591111966442, 34.68799875228405], [-77.4258715592366, 34.68806081779741], [-77.42580762450068, 34.688127162398786], [-77.42569222802813, 34.688201731389825], [-77.42557750201497, 34.68827036748511], [-77.42542723674796, 34.68825314187447], [-77.42505835749934, 34.68825956609551], [-77.42489823166719, 34.68840318523128], [-77.42467671438303, 34.68852186717996], [-77.4246283688974, 34.68866824970124], [-77.4246229966075, 34.68880503061099], [-77.4244961395242, 34.688974550000125], [-77.424450521257, 34.68916512473544], [-77.42431134654407, 34.689381452759996], [-77.4242997050129, 34.689401303963834], [-77.42401362510758, 34.68957139302169], [-77.42397651037318, 34.6896208049791], [-77.42389693009211, 34.689648659584854], [-77.42353208732226, 34.689642093877026], [-77.42324462262995, 34.68968826211315], [-77.42267174635089, 34.689619248526505], [-77.42259821041107, 34.689611043950805], [-77.42248672508651, 34.68959640254775], [-77.42193594483297, 34.68978148482636], [-77.42184234498997, 34.68987105319589], [-77.4217911062214, 34.68991217043256], [-77.4217807497381, 34.689991028104366], [-77.42185518120947, 34.690060506437746], [-77.42208152895978, 34.69075826304999], [-77.42225655699622, 34.69088785821461], [-77.42252727541069, 34.69099096871218], [-77.42256620065581, 34.69100239967999], [-77.4228425821733, 34.69107729584728], [-77.42284187027009, 34.69111833647434], [-77.42283710815762, 34.691123583345565], [-77.42281476418172, 34.691173404320644], [-77.42276169059433, 34.69123006279486], [-77.42276846773979, 34.69125277920095], [-77.42271416728931, 34.691296545398615], [-77.42264732427385, 34.691329831562264], [-77.42260040576936, 34.69136046408781], [-77.4225116860676, 34.69133945626062], [-77.4224214901144, 34.69142507151662], [-77.42233220556217, 34.69141997434879], [-77.42209355002602, 34.6914510148618], [-77.42189171423993, 34.691447703544085], [-77.42145425007405, 34.691445618527304], [-77.42141207504962, 34.69145685271471], [-77.420991971175, 34.69147248638119], [-77.42040102775357, 34.6916622866757], [-77.42041388702702, 34.692023216953864], [-77.42039330065288, 34.69221867495739], [-77.42049407128931, 34.69231335821759], [-77.4205368107089, 34.692401063549084], [-77.42056063658339, 34.69273195101155], [-77.42059429476853, 34.69284807057144], [-77.42062374201862, 34.692928804637575], [-77.42059216495367, 34.69306270342006], [-77.42058305552531, 34.69312368407209], [-77.42046948186345, 34.69318712551906], [-77.42044835188851, 34.693201547891256], [-77.42042635193437, 34.693208643830964], [-77.4202892590668, 34.69325622592325], [-77.42025292137083, 34.693255993592366], [-77.42020258457131, 34.69327014535619], [-77.41994389021261, 34.69334234168254], [-77.41981933812679, 34.69329502974582], [-77.4197588335742, 34.69339447121462], [-77.41966711204235, 34.69342012019895], [-77.41958689021553, 34.69347409980383], [-77.41958510172108, 34.6934748100405], [-77.41957290934486, 34.6934788304298], [-77.41948832052758, 34.693501773389656], [-77.41941756269856, 34.69350009061884], [-77.41932148097334, 34.6934721397869], [-77.41927970222713, 34.69342285238557], [-77.41910771588657, 34.693338144041086], [-77.41901217151793, 34.69324008664782], [-77.41869403591602, 34.69306437340606], [-77.4184628877926, 34.69292369258096], [-77.41824555117533, 34.692965672729024], [-77.41799834287238, 34.6929082614116], [-77.41784905635065, 34.69283026436176], [-77.41774069912348, 34.692888163145675], [-77.4172742337648, 34.69276400098397], [-77.41722961454947, 34.69275621574887], [-77.41719435037915, 34.69274279371841], [-77.41713871840098, 34.69275748669059], [-77.41675804114742, 34.69277736045994], [-77.41656219003453, 34.69284789339653], [-77.41622580466355, 34.69265505883247], [-77.416111535653, 34.693249068040316], [-77.4163547452053, 34.69356438051726], [-77.41636135757973, 34.69359120436216], [-77.41636091767433, 34.69360359421552], [-77.41632821614094, 34.69365600740679], [-77.41609999812744, 34.69394542925576], [-77.41597622883468, 34.694028121173794], [-77.41582479376532, 34.694243452147276], [-77.41582115163781, 34.694253422434535], [-77.41578013422546, 34.69428003679615], [-77.41553866190816, 34.694434150866144], [-77.41549285109583, 34.6944486952887], [-77.41544751037617, 34.69448426047635], [-77.41534282238632, 34.694462471450876], [-77.41523138349055, 34.69432665559951], [-77.41500492684918, 34.69415707621294], [-77.41492687058954, 34.69406893984956], [-77.41458251142146, 34.69388693894186], [-77.41436813056566, 34.69378521483468], [-77.41407761759324, 34.69363050264796], [-77.41388722811068, 34.69385641667218], [-77.41406582045877, 34.6941024831693], [-77.41412828749603, 34.69449985799729], [-77.41414974462435, 34.69453941128998], [-77.41424795159219, 34.694657131497145], [-77.41440237907122, 34.69485479223136], [-77.41444155692498, 34.69497373378175], [-77.41452662961179, 34.69519831849019], [-77.4145085037335, 34.69525687526716], [-77.41439400707658, 34.69564404832187], [-77.41433248478673, 34.69568950507063], [-77.41429480498041, 34.69579237500609], [-77.41430561387449, 34.69595965764215], [-77.41417549700266, 34.69603479723342], [-77.41411447685559, 34.69617234415476], [-77.413828149187, 34.69621486222044], [-77.41374679256897, 34.69660282206593], [-77.41385809783333, 34.69686725400289], [-77.41387641370022, 34.696927721358826], [-77.41401053130454, 34.69723350267001], [-77.41401678903465, 34.697247409965954], [-77.41402365749303, 34.69725878472598], [-77.41409802167148, 34.6974042542503], [-77.41419788052623, 34.697599285416885], [-77.41419030762245, 34.69762138097375], [-77.41422931131426, 34.69788983286138], [-77.41436353659141, 34.698227792553276], [-77.41441082495446, 34.69842210083018], [-77.41446082790614, 34.69852992697773], [-77.4147351890171, 34.699157717507525], [-77.41474312994946, 34.699176191290505], [-77.4147553566759, 34.69919206180286], [-77.41499197316699, 34.69951874282288], [-77.4151983409433, 34.699771681961856], [-77.4152636748298, 34.699851759298305], [-77.41566681548328, 34.70006999713243], [-77.41571923784772, 34.70018624582936], [-77.41580790718369, 34.70020023032588], [-77.41612518886852, 34.7003850928585], [-77.41622531697506, 34.700544908436], [-77.41623439899011, 34.700562714656336], [-77.41624652446447, 34.70057875798756], [-77.41625201523911, 34.70069402206397], [-77.41624691939472, 34.70073105001861], [-77.41620615158782, 34.70071818917208], [-77.41611974590835, 34.70071011973448], [-77.41603502510698, 34.700757895590186], [-77.41587326482266, 34.70076106490597], [-77.41566597392837, 34.700716200031515], [-77.41560473197578, 34.70088693185782], [-77.41551093724608, 34.70090561150166], [-77.41535804027795, 34.70096074329259], [-77.41526631972528, 34.700966546160046], [-77.41519170429507, 34.70090132884543], [-77.41498419346551, 34.70086105431473], [-77.41490774026477, 34.70077524810698], [-77.41476772438286, 34.7007435537759], [-77.41405167666716, 34.700357330179], [-77.4137783487862, 34.70024862443163], [-77.41355850782924, 34.70026241270282], [-77.41339582459008, 34.700184552517285], [-77.41318418055397, 34.70008709994168], [-77.41296138453671, 34.69996226074803], [-77.41294002315655, 34.69992832642393], [-77.41271993354128, 34.699598240283805], [-77.41269328832277, 34.69956895990554], [-77.41260413483168, 34.699449875891915], [-77.41245875368855, 34.6992722190966], [-77.41246358804482, 34.69923435600644], [-77.4124650997426, 34.6992225165131], [-77.4126580533038, 34.69901748345964], [-77.41234334255176, 34.698564143825465], [-77.41223462334256, 34.69843716169677], [-77.412098407337, 34.698303331042716], [-77.4120585838513, 34.698248656713545], [-77.41194720357066, 34.69811070108826], [-77.41187294438595, 34.69797528451565], [-77.4118338657696, 34.69789048471864], [-77.4118061372078, 34.697723193519586], [-77.41176880454621, 34.69758816706555], [-77.41167900235891, 34.69732987541447], [-77.41161106847068, 34.697077800436254], [-77.41160288823085, 34.69697100944006], [-77.41157374884362, 34.69692743049569], [-77.41154727263724, 34.69688670866544], [-77.41143648402232, 34.69663323580998], [-77.41142753456215, 34.69654207129131], [-77.41132824595121, 34.69631581104383], [-77.41121979464133, 34.69618237622312], [-77.4111690507082, 34.695979617746765], [-77.41112253898818, 34.69577659618661], [-77.41109907514506, 34.69567651951797], [-77.41102696818427, 34.69537445255124], [-77.41102692671583, 34.69537172061483], [-77.41102648716587, 34.69537031448128], [-77.41102575926608, 34.69536787091487], [-77.41096915313395, 34.69507195026614], [-77.41102393564088, 34.69492503149689], [-77.4110424355329, 34.694651624487534], [-77.41109093255577, 34.694555442913774], [-77.41106687484798, 34.694460773493816], [-77.4111029158267, 34.69437647484135], [-77.41120565620297, 34.69431602428389], [-77.41127905449395, 34.69429047722534], [-77.4115322680298, 34.69415073862435], [-77.41162617438314, 34.69411004877752], [-77.41174750498666, 34.693982187282494], [-77.41209767913722, 34.693789444219675], [-77.41212218064626, 34.69342500241116], [-77.412377350534, 34.69332817851039], [-77.41233824248908, 34.69303774186912], [-77.41206740893973, 34.692877505423795], [-77.41207312087444, 34.69270198763912], [-77.41207154085838, 34.69266207596129], [-77.41214115883082, 34.69222725636694], [-77.4118572941064, 34.69202800436342], [-77.41173905397417, 34.691798268604096], [-77.41161589339053, 34.691848885064374], [-77.41144395685387, 34.69171075007889], [-77.41135916688518, 34.691660764365864], [-77.41130437934886, 34.69163946606687], [-77.41120771749274, 34.691521174517845], [-77.41123166771743, 34.69149077596395], [-77.4113274340031, 34.69137711440149], [-77.41145872431568, 34.69132944033015], [-77.41157067590028, 34.6912731676376], [-77.41172227863795, 34.69127475851218], [-77.41190818521032, 34.69121422152284], [-77.41229904476833, 34.6910643373962], [-77.41238228211238, 34.69085795158177], [-77.41250266702787, 34.69029105359911], [-77.41241325096189, 34.68998607076358], [-77.41261051148857, 34.68973500250465], [-77.41278254353952, 34.68928159919487], [-77.41278739982818, 34.688998756721915], [-77.41260756219376, 34.688799040034894], [-77.41212279486899, 34.688664124982566], [-77.41202067272825, 34.68861266366383], [-77.41190170321575, 34.68857574135804], [-77.41183624518642, 34.688665961067294], [-77.41155036553359, 34.688749234354], [-77.41140116582898, 34.68879328706291], [-77.41132038747034, 34.68881787669455], [-77.41124113955951, 34.6887372944977], [-77.41109195635353, 34.68864780061357], [-77.41106203600744, 34.68860350485819], [-77.41103249138382, 34.68838473107737], [-77.41107155229605, 34.688209965369715], [-77.4109457758334, 34.68789846932984], [-77.4109316024823, 34.68782199968936], [-77.41092220065272, 34.687787024182406], [-77.41090781882608, 34.687698304158154], [-77.41090494770742, 34.68760994574185], [-77.4108831629288, 34.6875614351075], [-77.41087287480302, 34.68749020673322], [-77.4109198118045, 34.68738057193761], [-77.41092873100551, 34.68735844184419], [-77.41108139447616, 34.68728361094277], [-77.41109857424073, 34.68726217155854], [-77.41113712607537, 34.68723769333579], [-77.41125432574242, 34.68724102593869], [-77.41174810704501, 34.68734083791136], [-77.41210449211809, 34.68741117945203], [-77.41246817152674, 34.687067268094694], [-77.41289319582683, 34.68679932794077], [-77.41303710244408, 34.68594407429375], [-77.41395726000518, 34.68635096942454], [-77.41518988759451, 34.686472585034466], [-77.41653666765296, 34.686295477864306], [-77.4174790155991, 34.686167340565056], [-77.41809470521665, 34.68523875478709], [-77.41883219270633, 34.68440435483318], [-77.41836995886413, 34.68337961827547], [-77.41756428232375, 34.68274584520047], [-77.4170610888217, 34.682140311388245], [-77.4155989997396, 34.68115716442888], [-77.4154834948841, 34.68107949573605], [-77.41542258101947, 34.68103853447684], [-77.41522572928947, 34.68090616079152], [-77.41441142467457, 34.680355817583894], [-77.41448002791716, 34.67964638008564], [-77.41433927429526, 34.6794777711936], [-77.41372141832939, 34.67831258873364], [-77.41354095420893, 34.678252777397994], [-77.41338781841452, 34.67802661673837], [-77.4127700892895, 34.677172052853244], [-77.41237566273173, 34.67695356184534], [-77.41168455840524, 34.67649509673639], [-77.41156695772787, 34.676398273158], [-77.41114745043893, 34.676137099440524], [-77.41114298563355, 34.676122823616055], [-77.41115313487023, 34.676117467587076], [-77.41165873100387, 34.676208320217654], [-77.41178782753775, 34.676138435555664], [-77.41255118051367, 34.676171935020015], [-77.41266163662164, 34.675536041650666], [-77.4132723490676, 34.67479404302885], [-77.41337063937334, 34.67466593268969], [-77.41255553334885, 34.673486918283615], [-77.41245938669928, 34.67334784354834], [-77.4123508338985, 34.67319081965425], [-77.41254517347215, 34.67316962950204], [-77.41264422264416, 34.67318059220557], [-77.41295726999427, 34.67314010636984], [-77.41432100335754, 34.67308212622757], [-77.41547655363642, 34.672088919849465], [-77.41550668213657, 34.6720587603093], [-77.4155177469709, 34.67204738234331], [-77.41555042140314, 34.67199487886392], [-77.41644055540628, 34.67056456557542], [-77.41699813152216, 34.6696685534178], [-77.41668494151126, 34.66807559388085], [-77.41669083689571, 34.66801137042775], [-77.41467476623015, 34.66767605747914], [-77.41422724399999, 34.667712589876544], [-77.41332763816713, 34.667941521205975], [-77.41301180287425, 34.66794801795147], [-77.41277758814088, 34.66829379830621], [-77.41276550479914, 34.668303902810266], [-77.4124348123523, 34.668500334784135], [-77.41237943008475, 34.66872789927446], [-77.41224751609184, 34.66894205694424], [-77.41224159347126, 34.668959217616916], [-77.41222135250419, 34.66898368218547], [-77.41206660527885, 34.669177532839456], [-77.41199224618347, 34.669272576859456], [-77.41184141378946, 34.669314352911435], [-77.41160115262316, 34.669380897800394], [-77.41124725272749, 34.66944988856583], [-77.4111960224645, 34.66946625467556], [-77.41114983588464, 34.66949003456092], [-77.41104865667829, 34.66947298368807], [-77.41054109801642, 34.669379593777435], [-77.41013203786105, 34.669221867233574], [-77.40996874962164, 34.66914347702113], [-77.40986322136362, 34.669074898037884], [-77.40985349719662, 34.66896207628797], [-77.40972815798587, 34.66868490785779], [-77.40973050697878, 34.66856494144673], [-77.40973954735244, 34.66836306944805], [-77.40977108872268, 34.66822065269339], [-77.40980420920359, 34.667826578358195], [-77.40979603944908, 34.667527160787756], [-77.40978788150016, 34.667320961171335], [-77.40967457427047, 34.66697708726933], [-77.40955757242367, 34.666622003244335], [-77.40953069524056, 34.66653558349887], [-77.40948297569982, 34.66639561191972], [-77.4089700948929, 34.66587679929812], [-77.40748881034652, 34.664779608403705], [-77.40744560195687, 34.66468877133772], [-77.40729276772265, 34.66471098340706], [-77.40591733208775, 34.66531865482541], [-77.40448617644785, 34.665950911430755], [-77.40446283895696, 34.665956870845896], [-77.40289401406511, 34.66635747906986], [-77.40164381180023, 34.667206541295094], [-77.40163062825451, 34.66728322244073], [-77.40154368490332, 34.667261769200216], [-77.4013885296643, 34.6672544261402], [-77.40144460381474, 34.66713679892287], [-77.40055838720349, 34.66581540724071], [-77.3997231414817, 34.664699129283164], [-77.39887825115682, 34.66577221173893], [-77.39875560746538, 34.66619534898792], [-77.39850110728871, 34.66665167375953], [-77.39849749647499, 34.6666641324504], [-77.39849080580942, 34.66667787811461], [-77.39828395497389, 34.667044631599936], [-77.39820131704217, 34.66711958543539], [-77.39798974653038, 34.667311483366014], [-77.39761986587152, 34.66753621430119], [-77.39758135309184, 34.667057224526246], [-77.39747532308289, 34.66686539146795], [-77.39739662938001, 34.66668795726946], [-77.3972618792965, 34.66656026205316], [-77.39706299999108, 34.66638079921044], [-77.39684811537232, 34.66577686826673], [-77.39623716498413, 34.665939890469716], [-77.39590209219737, 34.666314530712995], [-77.39560441177797, 34.666401034387405], [-77.39554713966098, 34.666749404648655], [-77.39545119416901, 34.66689865224179], [-77.39541913825278, 34.666984165346825], [-77.39532724172795, 34.667069975245184], [-77.39530957329971, 34.66708559106231], [-77.395172666844, 34.6671368525903], [-77.39513414053499, 34.66712812344476], [-77.39489235454919, 34.66706300825613], [-77.39487596833662, 34.66705517543016], [-77.39476805793625, 34.667035765152896], [-77.39459767309101, 34.66699847969738], [-77.39457357930918, 34.66699313963688], [-77.39454270327717, 34.666985684920405], [-77.39427275775346, 34.666925694648285], [-77.39406032078443, 34.66686738250845], [-77.39397713222797, 34.666840317034115], [-77.39388936071731, 34.666811867244526], [-77.39368422010926, 34.66674557634441], [-77.39349037683715, 34.66668293553738], [-77.39339143023464, 34.66665041475226], [-77.39328937427929, 34.66661579397805], [-77.39309896102108, 34.66655414844937], [-77.39290751506067, 34.66647733804082], [-77.3928115797144, 34.666440323994195], [-77.39272605364486, 34.6664044268354], [-77.39228885262929, 34.666213133785725], [-77.39224032165879, 34.666200586850344], [-77.39215686510177, 34.66619550536181], [-77.39192831424695, 34.66617175410231], [-77.39176722998721, 34.666107759834006], [-77.39163276390227, 34.66608612751933], [-77.39148137841767, 34.66603091367439], [-77.39055726413324, 34.66562409343549], [-77.39049145013996, 34.66560253903823], [-77.39036576837066, 34.665603566727484], [-77.38936550573573, 34.66517019802228], [-77.3893169604194, 34.665233462455134], [-77.38910911357549, 34.665565634254165], [-77.38869767878128, 34.66563534553475], [-77.3886136935125, 34.66559552993959], [-77.38851739892355, 34.665679309269315], [-77.38795323762938, 34.665809855785774], [-77.38793516303569, 34.665818106856484], [-77.38744324165604, 34.66600349027354], [-77.38730023960291, 34.665998432743606], [-77.38716261660007, 34.666029257820355], [-77.38697746612416, 34.66607986218655], [-77.38682059059634, 34.666089747398416], [-77.38667863133364, 34.66607869375262], [-77.38659958262659, 34.66606867273032], [-77.38614819588958, 34.6660640336689], [-77.38612615764755, 34.66603905665446], [-77.38609006320524, 34.66604495367235], [-77.38606736039928, 34.66606028414837], [-77.38560354975407, 34.666047325250695], [-77.38548649371474, 34.66606296715928], [-77.38534601328891, 34.6660590708278], [-77.38508148317888, 34.66605517447877], [-77.38489703311618, 34.666032300348974], [-77.38460303676118, 34.66603868527531], [-77.38459360723225, 34.66603668463865], [-77.38458910378115, 34.66603487668257], [-77.38441395614623, 34.665977918799996], [-77.38432828719753, 34.66593016929575], [-77.38426546237424, 34.66589515240733], [-77.38417992914778, 34.66584747822518], [-77.38411892355536, 34.6658108805686], [-77.38407302939439, 34.665778661085724], [-77.38398139277803, 34.66571966945215], [-77.38382299013642, 34.665609151843725], [-77.38371042186228, 34.665534096959426], [-77.38355651667216, 34.66544585563969], [-77.38331913961196, 34.665283155724985], [-77.38313123752863, 34.66519163905257], [-77.38290858969523, 34.665047603794605], [-77.38284404723814, 34.66485796386485], [-77.38267538100088, 34.66475418714154], [-77.38257979690565, 34.6647374944544], [-77.38250592813112, 34.66468756625275], [-77.38244587779103, 34.66468344884689], [-77.38238746635594, 34.66463190297581], [-77.38249510622754, 34.66451362780522], [-77.38251320579472, 34.66450560117409], [-77.38268764039593, 34.66436546904359], [-77.38270442577249, 34.66435603998829], [-77.38307740358887, 34.66405294749919], [-77.38308312716303, 34.6640487875982], [-77.3834934462783, 34.66377919302405], [-77.38368989412257, 34.66318411845265], [-77.38380968638178, 34.66297401343057], [-77.38388056200543, 34.66284615636006], [-77.3840484770416, 34.662767046402905], [-77.38417444594505, 34.66281086135503], [-77.38434429085969, 34.66290045081678], [-77.38509219162282, 34.66329470215782], [-77.38538469761147, 34.66345577905019], [-77.3861022555736, 34.663633342075485], [-77.38615631839926, 34.663649981875054], [-77.38617968149347, 34.66367136220636], [-77.38624713582517, 34.66366742246856], [-77.38678996274786, 34.66363012719333], [-77.38709360867009, 34.6637165552335], [-77.3873093665357, 34.66390244946747], [-77.38765370802616, 34.664073699044394], [-77.38815591877555, 34.664325511517276], [-77.38827123598375, 34.664386602948014], [-77.38835596421748, 34.6644202482604], [-77.38884270708758, 34.664718389386046], [-77.38884995508603, 34.6647294045328], [-77.38885975363388, 34.66474647929888], [-77.38905079083156, 34.664875926634814], [-77.38936224454531, 34.66507720144312], [-77.38948432464042, 34.66507855818895], [-77.39027482599454, 34.665161762827196], [-77.39030707754945, 34.66473543664771], [-77.39038541013196, 34.66438266776437], [-77.38985496493869, 34.66337694653742], [-77.38978757598294, 34.663218435181264], [-77.38978761244655, 34.663126114998136], [-77.38948840861117, 34.662711636299555], [-77.38946784782758, 34.66267611837077], [-77.38946040578956, 34.66267381152129], [-77.38936942474696, 34.66260619503666], [-77.38897253342853, 34.662292694953734], [-77.38895202046089, 34.662284877643415], [-77.38887330041959, 34.66227715700629], [-77.38850995311363, 34.662231128517455], [-77.38839295963166, 34.662228020399496], [-77.38814976978637, 34.662163372498284], [-77.38810392050537, 34.66214961795323], [-77.38784081658699, 34.662068694130745], [-77.38772705855065, 34.66204563339513], [-77.38755139015433, 34.66203511447152], [-77.3874188589941, 34.66198993717189], [-77.38736255279761, 34.66193212999576], [-77.38738774323352, 34.66180706987114], [-77.38763689076417, 34.661720785714714], [-77.38764159440417, 34.66172386308117], [-77.3876483871008, 34.66171904006118], [-77.38795482873866, 34.66167528763347], [-77.38826420206932, 34.66162675156317], [-77.38827286102423, 34.66162515453237], [-77.38858219398548, 34.66157503767753], [-77.3892014365486, 34.661257182206], [-77.38925835092928, 34.66123171476553], [-77.38928438890318, 34.661216557996475], [-77.38963186109969, 34.66092469489315], [-77.38973144110929, 34.660895769532864], [-77.3900017345648, 34.660805768558546], [-77.3902357479328, 34.66082183374382], [-77.39033609265186, 34.66082424957927], [-77.39058082632147, 34.66087206709854], [-77.3909206568596, 34.660909109497965], [-77.39118616034867, 34.66099407045119], [-77.39136892434442, 34.66096507191992], [-77.39180451197332, 34.66096544701017], [-77.39183489214922, 34.660966303171776], [-77.39229224411072, 34.660979617626424], [-77.39309527017484, 34.660858317415034], [-77.39313021443364, 34.66085444926479], [-77.39315163967595, 34.66084419366999], [-77.39399923071886, 34.660780090808096], [-77.39489675261181, 34.66037085663217], [-77.39556488686566, 34.65994755394186], [-77.39721602276299, 34.65890141734117], [-77.39748872994616, 34.65880035981377], [-77.3974550517583, 34.65860963548182], [-77.39629016252044, 34.6575709306065], [-77.39491056200141, 34.65541930898788], [-77.39464498694691, 34.654730319373826], [-77.39426562325677, 34.65470289247444], [-77.39273388083059, 34.653765152589756], [-77.39268020831582, 34.653732294155766], [-77.39111072208195, 34.653705326555176], [-77.39042145071892, 34.65309308685373], [-77.38948141206706, 34.65248645740899], [-77.38869949532713, 34.651798692681055], [-77.38795606190055, 34.65127798889757], [-77.38703974664102, 34.65042841162523], [-77.38559790111839, 34.64964955145288], [-77.38557467022734, 34.64882057042375], [-77.38480165705576, 34.6483940746638], [-77.38446831869007, 34.64847292009577], [-77.3844625704645, 34.6481148800664], [-77.38430769865508, 34.646970992260094], [-77.3832243757275, 34.647855403298344], [-77.38259268408456, 34.64736622375035], [-77.3824357726835, 34.64742415273907], [-77.38223895668904, 34.647374198386714], [-77.38164713592053, 34.647204276171095], [-77.38136800919014, 34.647162977594846], [-77.3802044403734, 34.647175038299174], [-77.38006978643241, 34.647167354602914], [-77.37998846219843, 34.64714873425909], [-77.37972245984625, 34.64709948888418], [-77.37939469670016, 34.64702443963045], [-77.3792811544741, 34.64696064629338], [-77.37893239205695, 34.64673970947902], [-77.37849256566611, 34.64658680566012], [-77.37795002043767, 34.64650565642126], [-77.37775655398602, 34.6464768511801], [-77.3777039148502, 34.646492629450144], [-77.37763534059448, 34.64647714415558], [-77.37721799091292, 34.64635499082152], [-77.37701817181696, 34.64631571595129], [-77.37668718320191, 34.646259588365346], [-77.37668640924585, 34.646259388293046], [-77.37635456062947, 34.64620013798661], [-77.37609617922642, 34.64628001127927], [-77.37595099983525, 34.64623977230039], [-77.37569256606596, 34.64609257645034], [-77.37560758315264, 34.64609922023763], [-77.37538586139928, 34.64615941629991], [-77.3751242907304, 34.64613549894413], [-77.37505915148807, 34.64612691972782], [-77.37501836542934, 34.646117833530475], [-77.37488857591323, 34.646084336867354], [-77.37476461869228, 34.64604616313446], [-77.37471006054201, 34.645983284257284], [-77.37455948082766, 34.6458781654967], [-77.37430604330714, 34.645566885302784], [-77.37404653360895, 34.64574563478868], [-77.37395245000714, 34.64570922968915], [-77.37364729041013, 34.64547537574223], [-77.37360471739376, 34.64547214920086], [-77.37332920897549, 34.64548571004454], [-77.37327236295667, 34.64546259875585], [-77.3731116247614, 34.64530027769986], [-77.3730420823088, 34.645283262671654], [-77.37310644170114, 34.645253433530804], [-77.37315286630795, 34.64521855304762], [-77.3732989423179, 34.645335400321265], [-77.37346087064736, 34.64525060722776], [-77.3736046083498, 34.645263412510566], [-77.37391464343067, 34.64453023704469], [-77.37393987802017, 34.64436352381947], [-77.3740154502587, 34.64412381220882], [-77.3743524553538, 34.64399037966293], [-77.3745780627993, 34.643737952853854], [-77.37463623704437, 34.64367923139066], [-77.37532989075937, 34.643496021662145], [-77.37533872005828, 34.64349509581584], [-77.37535584217922, 34.64348277839457], [-77.3758079078268, 34.643073598292524], [-77.37612761465762, 34.64256443590531], [-77.37614485056213, 34.642538581184986], [-77.37620868259907, 34.64251083779166], [-77.37615084615305, 34.64249417426866], [-77.37612763370632, 34.6424933259964], [-77.3760429035716, 34.6424434695035], [-77.3756565654253, 34.64224849893193], [-77.37556547487517, 34.64217890866083], [-77.37533909733585, 34.64213409589601], [-77.37509597028448, 34.64208375112089], [-77.37494480506867, 34.64204849448575], [-77.37472777880993, 34.641874984027055], [-77.37464295149093, 34.64178772517294], [-77.37455060059727, 34.64166008218046], [-77.37405227867417, 34.64112313826042], [-77.37394272314566, 34.640944525900046], [-77.373762211674, 34.64085302629605], [-77.37370618550537, 34.64080875478252], [-77.37343520466517, 34.64078743692614], [-77.3733808152391, 34.64078138710263], [-77.373350381277, 34.64078076387758], [-77.3729735858476, 34.64086743454992], [-77.37261556916467, 34.64094456208828], [-77.37256629902282, 34.64092650360638], [-77.37252147378427, 34.640856767703085], [-77.37237254588779, 34.64051589157733], [-77.37229405085246, 34.6404098941282], [-77.37218516654451, 34.640227623101495], [-77.37215269056598, 34.64015798052168], [-77.3721374001438, 34.64012519095333], [-77.37209490066918, 34.6400340531142], [-77.37209149412094, 34.64002566116753], [-77.37210054173858, 34.64000941056051], [-77.37213417278352, 34.63991337642668], [-77.37218527690919, 34.63987952481717], [-77.37233778494945, 34.63983597374437], [-77.37244236145098, 34.63980449702065], [-77.37257960880012, 34.63979769440611], [-77.37295784294135, 34.63959986768134], [-77.3729739783075, 34.639590848385176], [-77.37298219438475, 34.63958783640288], [-77.37298983983219, 34.6395778900514], [-77.37336839340816, 34.63922719672594], [-77.37343106151596, 34.639157251055224], [-77.37356558980345, 34.63907807396077], [-77.37356956492184, 34.63907413175774], [-77.37358273125733, 34.63906795693942], [-77.37372102960974, 34.63900310572164], [-77.37376276919714, 34.63898352207747], [-77.3741006355565, 34.63893259555904], [-77.37422493533624, 34.638902431444365], [-77.37455132329573, 34.63915414243704], [-77.37489772991245, 34.63882691918822], [-77.37494572032702, 34.6388216072955], [-77.37498999961613, 34.638817626773076], [-77.37507706646574, 34.6389942425575], [-77.374964935669, 34.639293471988914], [-77.37498127692153, 34.639677132095215], [-77.37498569722898, 34.63971504266166], [-77.37533971149716, 34.63992866055506], [-77.37544805539764, 34.63995635192731], [-77.3759569264583, 34.639815150688804], [-77.37612839722942, 34.63965459961964], [-77.37622880777747, 34.63953601555618], [-77.37633036895416, 34.639314199003834], [-77.37648461839755, 34.63907461195996], [-77.37670653540997, 34.63881579057538], [-77.37691729684171, 34.63854040307672], [-77.377254756002, 34.638600316233216], [-77.3776708849101, 34.63890375619273], [-77.37770579507253, 34.63893660786036], [-77.37806671533093, 34.639307144726345], [-77.37849429233168, 34.63936821890246], [-77.37907784229603, 34.63977090973837], [-77.37928280023239, 34.63978675129208], [-77.37965703701332, 34.639912930114704], [-77.3796770757024, 34.639914224878304], [-77.37972948956768, 34.639937358092055], [-77.38007133809292, 34.6401060642942], [-77.38014036918061, 34.640171947199065], [-77.38022672330078, 34.64023385153594], [-77.38020759094078, 34.64038338152793], [-77.3802909500064, 34.64064916240015], [-77.38032534817454, 34.64079510542972], [-77.3806214941485, 34.641026108296515], [-77.38069397540974, 34.64119412445324], [-77.38140079965609, 34.64149650152909], [-77.38164827748254, 34.641504376863054], [-77.38291582409754, 34.641544700488346], [-77.38317526708704, 34.641561424147255], [-77.38322551463713, 34.641564080049775], [-77.38329825592784, 34.64156792398741], [-77.38480272220174, 34.64181616644322], [-77.3872799124004, 34.641884836764504], [-77.38952547266729, 34.64060200828869], [-77.39111173676949, 34.6416773536629], [-77.39391587814606, 34.64128036349124], [-77.39729771706523, 34.6377734502682], [-77.39735250177142, 34.637692052624224], [-77.39742076192456, 34.63745897360649], [-77.39774886446962, 34.637355076346374], [-77.40171118703468, 34.6349637804576], [-77.40094387462061, 34.63345377371959], [-77.39900958913134, 34.630733391868176], [-77.40087879794947, 34.627394508767004], [-77.40086616053833, 34.62706905292792], [-77.40070316182434, 34.6269544131967], [-77.40077640388574, 34.62368541073532], [-77.4006604590808, 34.623609925330406], [-77.40057484058956, 34.62360851864892], [-77.39986300601446, 34.62288550403633], [-77.3997863912277, 34.622890554762186], [-77.39967657211542, 34.62287663525911], [-77.39925562575672, 34.62277811140529], [-77.39899795145064, 34.62271499405704], [-77.39870582729218, 34.62260039504604], [-77.39845258531926, 34.622322305431986], [-77.39833342157067, 34.622206050525456], [-77.39820952239324, 34.62209065010849], [-77.39794193463294, 34.621835008753465], [-77.39755696495686, 34.62174866321537], [-77.39742109793707, 34.62173005952215], [-77.39733700888856, 34.62172462021502], [-77.39702688276918, 34.621719249646205], [-77.39691729873388, 34.62169458665438], [-77.39671134529308, 34.621639555081664], [-77.39663267746026, 34.62144135272291], [-77.3965793449498, 34.62131875357157], [-77.39652832610363, 34.621013943835294], [-77.39650113434772, 34.62090546083103], [-77.39632113819098, 34.62059585174377], [-77.39628437527874, 34.620512149426354], [-77.39625895907935, 34.62049378295408], [-77.39623850339328, 34.62048102321605], [-77.39616738996084, 34.62045242816926], [-77.3958443013748, 34.62031614069411], [-77.39569411267559, 34.62033445544553], [-77.39545008773808, 34.6204031964873], [-77.39526131256848, 34.62045637316375], [-77.39505587591145, 34.62044273951249], [-77.39491254986075, 34.620439771691466], [-77.39485877106011, 34.62044137445647], [-77.39472978965094, 34.620385127830126], [-77.39466167125887, 34.62035754411625], [-77.39461839337244, 34.620327824782635], [-77.39459164709636, 34.62025625749176], [-77.39453410714265, 34.62012769357408], [-77.39455288975236, 34.62002988137898], [-77.39455214255304, 34.61991280747492], [-77.39455804320798, 34.61980030941007], [-77.39498644831627, 34.6195004417379], [-77.39505593217903, 34.61945221880289], [-77.39507881329267, 34.6194369321348], [-77.39516750700236, 34.61939949908671], [-77.39570920566453, 34.61917582031958], [-77.3958443557664, 34.61917041580177], [-77.39594471657631, 34.61917932529454], [-77.39613993270338, 34.619259265616506], [-77.39621478872718, 34.61927406729477], [-77.39623855403576, 34.619293896222], [-77.39641176273655, 34.61945807535163], [-77.39661523193489, 34.61961529145722], [-77.39663274547375, 34.619625199106395], [-77.39686337863628, 34.61975567091968], [-77.39702694366123, 34.61984820069113], [-77.397122713462, 34.61986352678426], [-77.39733694524247, 34.61984508580545], [-77.39742115104656, 34.61981986165085], [-77.39759001205405, 34.61971741249994], [-77.39796504423674, 34.61958182761009], [-77.3979162667056, 34.61931898082858], [-77.39781537226727, 34.61920108985251], [-77.39770093336897, 34.61903413636512], [-77.39758532034965, 34.61887402232336], [-77.39742118399921, 34.618680136775986], [-77.39740863650388, 34.618665235993255], [-77.39739838074144, 34.61865320046888], [-77.39726652415231, 34.61841422920539], [-77.39715155329336, 34.61826422652044], [-77.39698321322132, 34.617911104269844], [-77.39694385469012, 34.617869610089336], [-77.39663282254119, 34.617641052596106], [-77.39655554964207, 34.61758426956214], [-77.39642644899567, 34.61751965864185], [-77.39622048546698, 34.61714435054708], [-77.39584445706305, 34.61708999501677], [-77.39562262096442, 34.61702537517628], [-77.39509549223905, 34.6169049079028], [-77.39505608086645, 34.61689317952495], [-77.39503553338635, 34.616893236148144], [-77.394740430534, 34.61691366054583], [-77.3943043020941, 34.6169371205014], [-77.39426769301654, 34.61691766548995], [-77.39421209684023, 34.61692996871913], [-77.39387349761668, 34.616945906398314], [-77.39379706090934, 34.616967371005785], [-77.39363576988018, 34.61690443416951], [-77.39347931955457, 34.616747493840855], [-77.39334297059678, 34.616690603906015], [-77.39325902267824, 34.61651543161687], [-77.39295143030967, 34.61632249069501], [-77.39281906906014, 34.61620361711139], [-77.39269100234286, 34.61597134101808], [-77.39248916815964, 34.61617177374087], [-77.39229679182056, 34.616201200008035], [-77.39218226991294, 34.616132179433315], [-77.39190262820499, 34.615927742210076], [-77.39173539052132, 34.616317741548], [-77.39136192735684, 34.6162848659453], [-77.39111424851644, 34.615940752266994], [-77.39097726351523, 34.615905539571614], [-77.39072006206798, 34.6159147707412], [-77.3903844245688, 34.61590652800902], [-77.39032586706388, 34.615963951662515], [-77.39020907881337, 34.616167549948266], [-77.39013073574262, 34.61630460732041], [-77.39005622292675, 34.61644955587334], [-77.39002113794665, 34.61653269195043], [-77.38993158301211, 34.616744898092115], [-77.38986181233, 34.61655566118184], [-77.38978885762175, 34.616507649037224], [-77.38976356304313, 34.616388811261196], [-77.38975710534255, 34.616358472132575], [-77.38975932047747, 34.6163314597364], [-77.38976917518218, 34.616181735296905], [-77.38980636958553, 34.616139085868795], [-77.38993167365943, 34.615995404307036], [-77.39002301081221, 34.61599394533202], [-77.39017753453673, 34.61587329208745], [-77.39025879813904, 34.615789316694546], [-77.39022987803278, 34.6156534617185], [-77.39032591332857, 34.61556724343904], [-77.39044252260774, 34.615536113168424], [-77.39061757994276, 34.615495713341744], [-77.39072009722855, 34.61560063047822], [-77.39090376953385, 34.61554184211151], [-77.39111428490122, 34.61560114811093], [-77.39127813328878, 34.615538145333936], [-77.3917629136699, 34.615494190983995], [-77.39190266725365, 34.61552788132098], [-77.39198578105325, 34.615523066665496], [-77.39261351046214, 34.615438560729594], [-77.39269105008651, 34.61542998158936], [-77.39277279573838, 34.6154110639322], [-77.39311632954116, 34.61544957365683], [-77.39335034951395, 34.61555484079213], [-77.39347941575303, 34.61552228620652], [-77.39357907192957, 34.615490183354666], [-77.39380379692004, 34.615350443288456], [-77.39398087258321, 34.61501583718921], [-77.39393610202555, 34.61490679507641], [-77.39391717712174, 34.61486264308764], [-77.39375233538686, 34.614508723486736], [-77.39378826750715, 34.614170994613474], [-77.39367430696922, 34.61409540535328], [-77.39382361810415, 34.6140199153599], [-77.39387371791078, 34.613979633864666], [-77.3940214818275, 34.61388619322933], [-77.39410564462916, 34.6138584339829], [-77.39426790017916, 34.61393927854249], [-77.39437419738502, 34.61399447912851], [-77.39455035927892, 34.614089398229936], [-77.3946620685736, 34.61410274088822], [-77.39480006835163, 34.61408170282728], [-77.39505624965437, 34.6140825742202], [-77.39528256657343, 34.614044290083164], [-77.39561070859465, 34.61398879127251], [-77.39584461699323, 34.61392726171381], [-77.39610857118888, 34.61388462609209], [-77.39623879906162, 34.613856505910164], [-77.39634897920286, 34.61382836120107], [-77.39652834285842, 34.61379652369023], [-77.3966329809237, 34.61377387422516], [-77.3967347648515, 34.61376367888458], [-77.39691788574677, 34.61374533613087], [-77.39702715789437, 34.61379904816631], [-77.3973869160603, 34.61398456021091], [-77.39739288428916, 34.614014336932016], [-77.39742132649889, 34.61408449065722], [-77.39762898538633, 34.614575103575305], [-77.3979604838631, 34.61475097673823], [-77.39801463923266, 34.61495322645305], [-77.39805562691541, 34.615161826662685], [-77.39820965795971, 34.61526505745873], [-77.39847778178456, 34.61523671512159], [-77.39841024083739, 34.61553525085594], [-77.39860383531774, 34.61568297958655], [-77.39872304390018, 34.61578630544778], [-77.39897416554291, 34.615878483138886], [-77.39899801929629, 34.615887898129955], [-77.39901541318791, 34.61589126818599], [-77.39919511243866, 34.61594696723778], [-77.39938416528072, 34.615819343045665], [-77.39938844292463, 34.61581467144541], [-77.3993922074913, 34.61579144397825], [-77.39949737488847, 34.615378439545985], [-77.39939221184422, 34.615246294477686], [-77.39928032054577, 34.61510569440942], [-77.3991355732664, 34.61500605486966], [-77.39899803578027, 34.61460942920057], [-77.39898971205663, 34.61461148703757], [-77.39898574276917, 34.6146030941552], [-77.39899516036951, 34.614598638483805], [-77.39899803595111, 34.614596607738584], [-77.39919850727463, 34.61414783063984], [-77.3992480910056, 34.613985432402764], [-77.39932547544353, 34.613704942142434], [-77.39933937909333, 34.613335288908814], [-77.39934642680113, 34.613277347288104], [-77.39935248014007, 34.61323365891314], [-77.3993922322554, 34.61297545064312], [-77.39941357024381, 34.61286607114163], [-77.3997147485489, 34.61287682747678], [-77.39978640622633, 34.61289993616975], [-77.39989608847651, 34.612891625352596], [-77.4004960508423, 34.61277170630372], [-77.40057475189242, 34.612769400739445], [-77.40065214557076, 34.61274778040786], [-77.40077183799522, 34.612755851388044], [-77.40081068982363, 34.612811984656005], [-77.4008609730341, 34.61294258694996], [-77.4008321654038, 34.613063021507635], [-77.40088305374114, 34.61314817667764], [-77.40097364826202, 34.613467184436786], [-77.40136311206882, 34.61386481124582], [-77.40158588002615, 34.61398806496987], [-77.40175729459332, 34.614132443255244], [-77.40179285733903, 34.6141598455479], [-77.40180546397721, 34.61419633133803], [-77.4019058487758, 34.614446420481926], [-77.40215148626808, 34.61466728874633], [-77.40225862596708, 34.61486470698339], [-77.40240568366495, 34.614958886084885], [-77.4027148416366, 34.61515665512415], [-77.40293986916208, 34.61527855368308], [-77.4029685015513, 34.615302261116], [-77.4030170885037, 34.615636666572286], [-77.40302608770936, 34.615718527802656], [-77.40301970109952, 34.61580541570059], [-77.40293990727359, 34.616370697837574], [-77.40289223920406, 34.61653564026473], [-77.40287686813579, 34.61658920665333], [-77.40293991743816, 34.61665892555158], [-77.40332451572912, 34.61695954136539], [-77.40333411990996, 34.61696081780804], [-77.40334108460617, 34.61695430828995], [-77.40372829515402, 34.61659511010746], [-77.40378410019707, 34.616518422920194], [-77.40389341926512, 34.61644253966647], [-77.40412247157943, 34.61632413338612], [-77.40440647301048, 34.61624983608113], [-77.40451665352148, 34.616202289550586], [-77.40506608942638, 34.61627333645283], [-77.40525186406272, 34.61630380090859], [-77.40530503807977, 34.61634289838604], [-77.40540651010039, 34.61633351074129], [-77.40581518584696, 34.616464931050004], [-77.40609344717807, 34.61678558389991], [-77.40618790696797, 34.616858878031], [-77.40626837459004, 34.61694900193192], [-77.40688188796176, 34.617510156415406], [-77.4070302381003, 34.61752843014828], [-77.40767027101856, 34.61746697386524], [-77.40803189738872, 34.61754366231547], [-77.40836951719221, 34.617590962305826], [-77.40845868507262, 34.6177371400221], [-77.4089180291232, 34.61826493135554], [-77.40896938905817, 34.61855670081856], [-77.40893153638567, 34.619112138273486], [-77.40888672557662, 34.61957942198238], [-77.40845888864887, 34.61970892203898], [-77.40788355278603, 34.61988306369092], [-77.40751647963177, 34.61999961219203], [-77.40736443113894, 34.62051715905462], [-77.4077826832204, 34.620976246348555], [-77.40810575862696, 34.62131012823747], [-77.40845909469581, 34.62167526691708], [-77.40893547021952, 34.62199516168965], [-77.40937365894156, 34.621731646432465], [-77.4094633695803, 34.62158285201976], [-77.41003582768798, 34.620721609272984], [-77.41006476648268, 34.62067807143121], [-77.41009888162581, 34.62064197340871], [-77.41082418449076, 34.620274212213445], [-77.41103641405209, 34.620278073062224], [-77.41121838935001, 34.620267015227356], [-77.411462750928, 34.620283724544464], [-77.41161259781583, 34.620285777487055], [-77.41171932906644, 34.620293126558614], [-77.41219120416676, 34.62033996779921], [-77.4123455079863, 34.62037748694684], [-77.412401026422, 34.620398562545134], [-77.41260198818414, 34.62049710050276], [-77.41284034283561, 34.620622295782596], [-77.41318951161767, 34.62085020680662], [-77.41331053365617, 34.620897211101635], [-77.41345831652372, 34.621006215674804], [-77.41325476110399, 34.621814653146345], [-77.41326741935613, 34.62188293430819], [-77.41397819629645, 34.62241410506441], [-77.41421224087053, 34.622343613266615], [-77.41476663603106, 34.62246252025177], [-77.41550254237585, 34.62235287447306], [-77.41555504888349, 34.62236960078242], [-77.41556823363908, 34.622385741411065], [-77.41561269901425, 34.62239351871969], [-77.416343574713, 34.622848223339844], [-77.41667584083407, 34.62259793713845], [-77.4167841923975, 34.62259893008493], [-77.41713200616584, 34.62283664786183], [-77.41743823059447, 34.622459840042914], [-77.4179203012582, 34.6222066511944], [-77.4180117034508, 34.62214559508978], [-77.41811008518478, 34.62203293094157], [-77.41855085176744, 34.62179934505506], [-77.41870862697658, 34.621762913546355], [-77.41889005073162, 34.62172489251466], [-77.41910281586762, 34.62166659945319], [-77.41930053808696, 34.621649404131375], [-77.41949701746434, 34.62162756572014], [-77.41967772599472, 34.62161192194027], [-77.420134911303, 34.62157842272121], [-77.4202854227466, 34.62156374892533], [-77.42042414864433, 34.621549346298494], [-77.42048252479961, 34.621551689829154], [-77.42066508524718, 34.621663969568594], [-77.42066659937862, 34.62167781954203], [-77.4206797264893, 34.62193488324674], [-77.42068741192037, 34.62207709048142], [-77.42068785054597, 34.62209397278421], [-77.42057216161125, 34.62252655723405], [-77.42064737079951, 34.62297540866781], [-77.42120530152867, 34.62315514042563], [-77.42128444863373, 34.62322331220258], [-77.42131879662608, 34.623122806815864], [-77.42197365301847, 34.62276903158177], [-77.42215272552312, 34.622553186762204], [-77.42237416431017, 34.62228977908285], [-77.42253650116763, 34.62203743002771], [-77.42253711820322, 34.622036257989805], [-77.42269360307026, 34.62178214309219], [-77.4227897801694, 34.621728776103495], [-77.42296425494567, 34.6216756266142], [-77.42322438270693, 34.62165475953373], [-77.42346426476638, 34.62158144527692], [-77.42379171487183, 34.62154712479864], [-77.42397714898435, 34.62153433620662], [-77.42406612946762, 34.62154027141477], [-77.42418366957071, 34.62156813002388], [-77.42438068600823, 34.621612932587716], [-77.42444337237805, 34.62177526884802], [-77.42441587322591, 34.62187120063594], [-77.42442786159319, 34.622012305278076], [-77.42436700234182, 34.622254355615546], [-77.42438543690682, 34.622374455722344], [-77.42449808748006, 34.62284053211611], [-77.42458566683834, 34.62293051441378], [-77.42481604550858, 34.6231446757856], [-77.42482419937669, 34.6232317828684], [-77.42450013519226, 34.62344637021192], [-77.4243125167697, 34.62358786701655], [-77.42411841501445, 34.62380210349806], [-77.42392739245818, 34.62407251037369], [-77.42375316721625, 34.62455997369327], [-77.42366837801524, 34.624601303978814], [-77.42299852036916, 34.62467278201237], [-77.42273690767098, 34.62468909313213], [-77.42223613846937, 34.62469025649948], [-77.42214970513737, 34.62468909826849], [-77.42172157148964, 34.62482159429411], [-77.42129848754684, 34.625010557887975], [-77.42104826202487, 34.62541523721477], [-77.4207944599033, 34.62607305200334], [-77.42051810570766, 34.62678928486311], [-77.42035880205076, 34.62708855806151], [-77.42032816184981, 34.6271487582103], [-77.4202804830379, 34.627242431340775], [-77.41936136672287, 34.6288495905571], [-77.42021549485574, 34.62958722873575], [-77.41969171256727, 34.630232379290874], [-77.42018320555152, 34.63085433830345], [-77.42119564507968, 34.630588457322574], [-77.42185762258741, 34.63016211696255], [-77.42337978194846, 34.62918174555829], [-77.42468580471564, 34.62867429228849], [-77.42476265975137, 34.628250445689076], [-77.42508939607788, 34.62851632789637], [-77.42513718974278, 34.628681076305185], [-77.42521882478803, 34.62886087968594], [-77.42556358352306, 34.629765055919506], [-77.42644698503132, 34.62929079090734], [-77.42652148813984, 34.629025132923815], [-77.42691596752631, 34.62843340426939], [-77.427119533524, 34.6282872863964], [-77.42762660000965, 34.62815841198933], [-77.42795648050223, 34.62839276086922], [-77.42809033748122, 34.628505854141004], [-77.42808806413292, 34.628578770952565], [-77.42810663754281, 34.62863280310163], [-77.42807101492006, 34.62881138652481], [-77.42802298437479, 34.629222980232626], [-77.4279496564777, 34.62935667691676], [-77.42778986542206, 34.62976083965589], [-77.42749068025046, 34.630534038116714], [-77.42688781908146, 34.63113615448935], [-77.4277935523462, 34.631641018520526], [-77.42844291855359, 34.63173138849042], [-77.4294771714938, 34.63187531320425], [-77.42998016828358, 34.631945308744825], [-77.43081712118986, 34.632486794348566], [-77.4336194449179, 34.631801127988574], [-77.43349616648291, 34.63073006076616], [-77.4337086968441, 34.6305934861834], [-77.43350115029337, 34.62999016135251], [-77.43349850627146, 34.62990048626558], [-77.43348295257093, 34.62937309106523], [-77.43435372581675, 34.62974718835268], [-77.43434104603115, 34.63000891496788], [-77.43490225854896, 34.62977230335033], [-77.43549563963019, 34.6290419557585], [-77.43554404161739, 34.628669466155436], [-77.4355205381033, 34.62856749248088], [-77.43555409408835, 34.62792811577124], [-77.4350931659578, 34.627571397110295], [-77.43435887939856, 34.62826875401734], [-77.43458452296264, 34.62842223269641], [-77.43433221236921, 34.628633548387846], [-77.43432369664832, 34.62895039335516], [-77.43353347546544, 34.629167476990396], [-77.43369832978439, 34.62873153550436], [-77.43360974980547, 34.628482249848446], [-77.43357787139047, 34.628199066117155], [-77.43355253746013, 34.62806107070392], [-77.43380764683494, 34.62791826752551], [-77.43421530793574, 34.628206383354346], [-77.43465994919069, 34.627444465865096], [-77.43427684009161, 34.62707567464541], [-77.4339630998727, 34.62690458438664], [-77.43394924945696, 34.6268310591204], [-77.43396056331817, 34.6263455460447], [-77.43417154061811, 34.62610669620658], [-77.43426187489764, 34.625831558264295], [-77.43419133865096, 34.62562104217344], [-77.43384224473547, 34.62546206325773], [-77.43364478440331, 34.62537482391649], [-77.43340814280171, 34.6252568837872], [-77.4332045036694, 34.62499873227972], [-77.43312291803682, 34.624928587998674], [-77.43279067692075, 34.624590312187266], [-77.43230367780842, 34.624423584520564], [-77.43221383391014, 34.624381117902225], [-77.43207388111524, 34.62422389814546], [-77.43175599681757, 34.62433506947138], [-77.43157221282095, 34.62431206896802], [-77.43152308373216, 34.624311122170596], [-77.43132332101666, 34.624333731698876], [-77.43131519851032, 34.62433356815038], [-77.43131147029129, 34.62433434206428], [-77.4311510051743, 34.6243087558392], [-77.43112572830768, 34.62426932936589], [-77.43109015999246, 34.62421555842539], [-77.43109484374985, 34.62414885666016], [-77.4310898735229, 34.6241019170808], [-77.43114987729803, 34.62401392133414], [-77.43119296530239, 34.62388683987317], [-77.43123340871567, 34.62384243204676], [-77.43137391858254, 34.62358736472623], [-77.43138173587778, 34.623584624547604], [-77.43137702214833, 34.62357549047442], [-77.43145186799207, 34.6231893826433], [-77.43133147379531, 34.62271702571283], [-77.43133807059036, 34.622483336859226], [-77.43094231126828, 34.62227848756012], [-77.43091719693733, 34.62223404142735], [-77.43085574465084, 34.622161614255475], [-77.43066217663674, 34.62193747957824], [-77.43056637128205, 34.6218237921757], [-77.43048367235826, 34.62172165109646], [-77.43047800948563, 34.621620726177426], [-77.43062412972579, 34.621461089785235], [-77.43099371252538, 34.62110452209815], [-77.43108091065828, 34.62100152714552], [-77.43118082541982, 34.620960012071585], [-77.43134740176707, 34.620869315279194], [-77.43163356719478, 34.62069309808071], [-77.43214054261912, 34.62077768669239], [-77.43215293240628, 34.620799004705184], [-77.43219443860484, 34.62082138096646], [-77.43270360653426, 34.621040153362365], [-77.43293025380002, 34.621029394555364], [-77.4332836470189, 34.620959022255974], [-77.4335390470816, 34.62093327851498], [-77.4337750714559, 34.621050318419584], [-77.43406406220332, 34.62120578372581], [-77.43442343251697, 34.62128146972656], [-77.43461447645305, 34.621447252906485], [-77.43483897840825, 34.62148557235561], [-77.43488799155818, 34.62157005521197], [-77.43483720171363, 34.62169683526954], [-77.43470371110928, 34.6218933678368], [-77.43465319448794, 34.622121089759844], [-77.43457365181224, 34.62222403421063], [-77.43452799520279, 34.62231269076029], [-77.43451866210795, 34.62247851726514], [-77.43450975859139, 34.62305637105941], [-77.43466142805757, 34.6232182040727], [-77.43476337718107, 34.62352931568013], [-77.4347671021826, 34.623721508529144], [-77.43478503039913, 34.62398131102656], [-77.43476313766782, 34.62446112196117], [-77.43492847777135, 34.62472017248868], [-77.43520123235783, 34.62492143346882], [-77.4352725510456, 34.62505441804616], [-77.43529176593952, 34.62519035885706], [-77.43546580998115, 34.62509047285233], [-77.43560809439214, 34.62506382339249], [-77.43652631068804, 34.62512297205518], [-77.4368335767058, 34.625134401235606], [-77.43706563768494, 34.62517238269582], [-77.43719167858661, 34.62524591279028], [-77.43721133520059, 34.62558691331212], [-77.43721174131362, 34.62560943894797], [-77.43772275584902, 34.625652145716735], [-77.43802980436095, 34.625500794232266], [-77.43830732251985, 34.62538900250492], [-77.4386288319504, 34.62520551672365], [-77.43864510801366, 34.62519749377254], [-77.43864884781071, 34.62519355370412], [-77.4389701417105, 34.625001521647974], [-77.43905358230879, 34.62471519593137], [-77.43885594917816, 34.6244910633247], [-77.43879296097154, 34.62442024010073], [-77.43865614340119, 34.62427221337036], [-77.43852588523941, 34.62412712302463], [-77.43847069142767, 34.6240477188519], [-77.43830260960732, 34.62392857854727], [-77.43802669662861, 34.623676168012175], [-77.43788483132712, 34.62357135938838], [-77.43757668071486, 34.62331198009714], [-77.43748720251203, 34.62324371020657], [-77.43720994908082, 34.62302523821263], [-77.43715140903187, 34.62291755125499], [-77.43693301330869, 34.62276667090073], [-77.4369086402439, 34.62274187794561], [-77.43671135505721, 34.622541193312124], [-77.43665013426204, 34.62244631671344], [-77.43661651865082, 34.622319566883334], [-77.43660038305504, 34.622275875780836], [-77.43663505344139, 34.622177353755085], [-77.43666811875926, 34.62207194681818], [-77.43671193561465, 34.62195887995259], [-77.43688995096315, 34.621795826540165], [-77.43711737090769, 34.62157464810498], [-77.43724550736574, 34.62130082843099], [-77.43717059634075, 34.62106570158359], [-77.43698446474633, 34.62103351875304], [-77.43687586993806, 34.62090499820148], [-77.43677890509598, 34.620630245338816], [-77.43675935124327, 34.620568966642736], [-77.4367020272191, 34.62049118938144], [-77.43669750758903, 34.6202173507335], [-77.43674261578022, 34.62014981071458], [-77.43702191178483, 34.620124881834364], [-77.43721100579681, 34.620102113271216], [-77.43726135594024, 34.62012411591673], [-77.43756637570004, 34.620338929301795], [-77.43763893506576, 34.62049327490206], [-77.43805557638117, 34.62056872706205], [-77.4384811965093, 34.620739016838115], [-77.43866747013885, 34.620559607178436], [-77.43928759289292, 34.62030658059268], [-77.43942026165645, 34.620328029682966], [-77.43971126132593, 34.62030546261899], [-77.44015516001363, 34.62016036956603], [-77.44015480221924, 34.62046068012192], [-77.44026882097444, 34.62067630923907], [-77.44039140729133, 34.62078583510659], [-77.44058395648953, 34.621324968994074], [-77.44076603875455, 34.6219134236248], [-77.44079061425636, 34.62200455293633], [-77.4408187077723, 34.62209202295721], [-77.44095342846116, 34.62208750524814], [-77.44132979540124, 34.62238155814251], [-77.4418900124841, 34.62230673490596], [-77.44204845847314, 34.62224623844707], [-77.44224121990428, 34.621960264715476], [-77.44227564398456, 34.62182225729988], [-77.44233997337119, 34.6215628606092], [-77.4423508877878, 34.621229167393466], [-77.44265048743004, 34.62073583677907], [-77.44266369724564, 34.62071921094862], [-77.44267572726764, 34.620696264994955], [-77.44294715167007, 34.620198981025965], [-77.4431802989974, 34.619846287189674], [-77.44327203392581, 34.61969324841719], [-77.44343494586184, 34.61962837257758], [-77.44358235042398, 34.61962808451714], [-77.44365915077266, 34.619709766006565], [-77.44370354741699, 34.61984424366986], [-77.4436653246167, 34.61998379554229], [-77.44361591741115, 34.62009134328939], [-77.44358719136218, 34.62018450794909], [-77.44333245215998, 34.62033380533105], [-77.44348273246743, 34.62049856574158], [-77.44353453866297, 34.620600810827675], [-77.44370310963504, 34.620607938198305], [-77.44393089828064, 34.62074004358189], [-77.4440920952705, 34.62083352895007], [-77.44430333312111, 34.62098323531873], [-77.44432375814094, 34.620997288821464], [-77.44432622932894, 34.621004462595415], [-77.44435002182408, 34.62105039261709], [-77.44446780451472, 34.62128854318785], [-77.44452889334373, 34.62137186532955], [-77.44455035895004, 34.621671186353446], [-77.44517482610692, 34.62221728535907], [-77.44518726126161, 34.6222281055523], [-77.44518925503043, 34.622235217322114], [-77.44521727132863, 34.62229760141608], [-77.44567289474602, 34.622828150492246], [-77.44581226874064, 34.62305972571346], [-77.44585553041115, 34.623249354289925], [-77.44586322533465, 34.6235123917593], [-77.44588374851662, 34.623704142009544], [-77.44561713646371, 34.62375806532437], [-77.44535809421396, 34.62385743172526], [-77.44471080937863, 34.624288689596376], [-77.44448347347037, 34.624453027806254], [-77.44429415139209, 34.6246982471434], [-77.4443027803573, 34.62562862223324], [-77.44448027283923, 34.62612218630057], [-77.44550395985678, 34.627185485943215], [-77.44650049255685, 34.627946842820535], [-77.44790686495868, 34.62809926551699], [-77.44994614811614, 34.628045667266804], [-77.45116629657261, 34.62716988436246], [-77.45268157676409, 34.62608227588599], [-77.45337929328633, 34.62522160126477], [-77.45463585628558, 34.623226361884626], [-77.45393445463057, 34.62251611910582], [-77.45309435930614, 34.62218894770895], [-77.45294210575196, 34.62190060255024], [-77.45245842455549, 34.62185944040303], [-77.45230197170514, 34.62167640345441], [-77.4520822799372, 34.62153692506906], [-77.45223284190759, 34.62103576839975], [-77.45226096054931, 34.62098004350259], [-77.45229793285495, 34.620939033560596], [-77.45223250436256, 34.620939393426276], [-77.45221025410129, 34.62095329274515], [-77.4522010058082, 34.62095906986967], [-77.45137314939109, 34.621075671586716], [-77.45112709874758, 34.62083799844829], [-77.45095913081616, 34.62066747414879], [-77.45093080276366, 34.62059038602506], [-77.45094895886074, 34.620521058140405], [-77.45097342142424, 34.62027683481235], [-77.45097731532323, 34.62022128223573], [-77.45098043972898, 34.620206972282915], [-77.45109302982203, 34.61995206749494], [-77.45135884775013, 34.61976430489077], [-77.45138715036424, 34.61974526802459], [-77.45147421634628, 34.61969690022928], [-77.45172137377709, 34.61955249737779], [-77.4518105917886, 34.619493950614974], [-77.45198511297326, 34.619413080639895], [-77.45246186802056, 34.61919216028061], [-77.45274373347755, 34.619061547338006], [-77.45326782023994, 34.61885471907853], [-77.4534212203274, 34.6176957054742], [-77.45348022479872, 34.61764776410266], [-77.45340763490297, 34.61764610062174], [-77.45339541575511, 34.61766058457377], [-77.45240121602691, 34.61781086606833], [-77.45219075022459, 34.61785853354451], [-77.45172490236246, 34.617902453854], [-77.45135435366439, 34.61782795350304], [-77.45092603687651, 34.61763767144002], [-77.45064673707435, 34.61739191823983], [-77.45024425511265, 34.61717754182956], [-77.45014706100781, 34.617121299786106], [-77.4501303331336, 34.61710892484989], [-77.45010392148973, 34.617101622727134], [-77.4500650693026, 34.6171148507331], [-77.44960962265233, 34.61721653585762], [-77.44935135962356, 34.617348208713196], [-77.44920397514807, 34.6174329757652], [-77.44915169648367, 34.617464288238544], [-77.44909984772418, 34.61745445423676], [-77.44909822488334, 34.61742039367256], [-77.44908453167432, 34.61739118529031], [-77.44876022346486, 34.61695532902986], [-77.44863458100039, 34.61681409282276], [-77.44838888680422, 34.61659855683673], [-77.44833879944603, 34.61655621688507], [-77.4478104947111, 34.61640632504617], [-77.44771553202625, 34.616403877114465], [-77.44755169349446, 34.61638437179219], [-77.44722685216252, 34.61612180216153], [-77.4472313461534, 34.6160815008728], [-77.4471113147937, 34.615771435579404], [-77.4474542961739, 34.61558198007714], [-77.4475691925334, 34.61552499357636], [-77.44784445217385, 34.61533192833248], [-77.4481330627566, 34.615480079150224], [-77.4485968108221, 34.61543775034638], [-77.44867784684031, 34.61539069268864], [-77.44906905890103, 34.61524234049593], [-77.44909397875982, 34.61520606193042], [-77.44903684011318, 34.6151246705088], [-77.44891179821256, 34.614941319907174], [-77.44883587176383, 34.614910408621085], [-77.44884198799319, 34.61482872340256], [-77.44868956043565, 34.61458287499844], [-77.44879886383589, 34.614255519300514], [-77.44881081320848, 34.61419841514923], [-77.44889645117314, 34.61415461968801], [-77.44925033877212, 34.61398426565359], [-77.44957908078982, 34.61395995201087], [-77.44972313498765, 34.61394934344479], [-77.44976563755517, 34.613946116982696], [-77.44983624687941, 34.613937805088135], [-77.45027617716694, 34.613890586157126], [-77.45055922484485, 34.61384143787313], [-77.45200036258547, 34.61345618827203], [-77.45209088803955, 34.612874351919565], [-77.45209206151846, 34.61286888060428], [-77.4520945058461, 34.612851099592035], [-77.45217418109495, 34.61278118898983], [-77.4525855952234, 34.61242216120551], [-77.45302209491757, 34.612398689815414], [-77.45331696224076, 34.61229823482934], [-77.4540312244327, 34.6122440620368], [-77.45414823757481, 34.61219616973577], [-77.45416677487133, 34.61228228126262], [-77.45449795348058, 34.61268294910563], [-77.45456949359736, 34.61290593922202], [-77.45500430922644, 34.61389261163706], [-77.45785486865915, 34.61302679250872], [-77.45768734283291, 34.612016599998014], [-77.45716846186757, 34.611547927108546], [-77.45715246855252, 34.61126575079201], [-77.45741546015537, 34.61061709278843], [-77.45709684337592, 34.61028411722213], [-77.45705554437006, 34.60955537935822], [-77.45703810934447, 34.609247674166554], [-77.4570150000647, 34.60901672975534], [-77.45681644523377, 34.60801888629164], [-77.45679005398888, 34.607841373241676], [-77.45668041722269, 34.60766091984483], [-77.45629097712163, 34.60683261373702], [-77.45602807864222, 34.60658167410268], [-77.45624673923317, 34.60627043425603], [-77.45647316239042, 34.60580351908276], [-77.45655614187963, 34.60569250976747], [-77.45688357322118, 34.6052544765698], [-77.45725781045296, 34.60475381057002], [-77.45761757549947, 34.604272516619865], [-77.45793045054846, 34.60344660429411], [-77.45801801797617, 34.60317386013967], [-77.45818486957894, 34.60268752050902], [-77.45848122713558, 34.60145065931409], [-77.45856726921103, 34.600888518001675], [-77.45848206340689, 34.600495124886244], [-77.45830686206399, 34.60002334180649], [-77.45816589453794, 34.5999673647798], [-77.45804405835091, 34.59972905297437], [-77.45803723520936, 34.59966749675374], [-77.45811002358369, 34.599489789488025], [-77.45824295391041, 34.599303042146545], [-77.45834588584484, 34.59920517208329], [-77.45871633107355, 34.59916798718602], [-77.45882799093768, 34.59915756731333], [-77.45885974355652, 34.59916208310385], [-77.45892253105232, 34.5991546875594], [-77.45959474826813, 34.59913421023536], [-77.45990525360735, 34.59914087726996], [-77.4605510527435, 34.5991050713749], [-77.4609426797262, 34.59909015312566], [-77.46113750886624, 34.59907616995844], [-77.46170584938871, 34.59905355936667], [-77.46305645734373, 34.599130799681134], [-77.46407531690258, 34.598377448345445], [-77.46445315096007, 34.59799271235658], [-77.46447112699552, 34.59678741263652], [-77.4644735020006, 34.59676111721596], [-77.46447350589285, 34.596628004983515], [-77.46447353679041, 34.59552240641543], [-77.46447354225516, 34.59499543413146], [-77.46436662793752, 34.59386304473082], [-77.46366742826052, 34.59368518927283], [-77.46337377571847, 34.593898941254075], [-77.46269003038678, 34.59395484974779], [-77.46221249245893, 34.594112024453864], [-77.46220267964664, 34.59411525417144], [-77.46173952274498, 34.59432270633505], [-77.46147097706229, 34.59447196135513], [-77.46128199430855, 34.59457136550569], [-77.4608810587809, 34.59481740262101], [-77.46083167801132, 34.59484636641638], [-77.46080893847946, 34.59485970391517], [-77.46079512138326, 34.59488218761536], [-77.46072719930136, 34.595005603750295], [-77.46055403617257, 34.59532024615058], [-77.46052701978287, 34.59538043920767], [-77.46047510439774, 34.595463667012844], [-77.46016400173042, 34.59569450050759], [-77.4600223261121, 34.59572970200573], [-77.45975781103286, 34.59527686619708], [-77.45970839259206, 34.59519226307918], [-77.45950337352278, 34.59502228709974], [-77.45940363697773, 34.594909949014536], [-77.45933874974745, 34.59487497844182], [-77.45886965253402, 34.594693037483324], [-77.45878101881132, 34.59464270844971], [-77.45865081705655, 34.59456030944313], [-77.4582581615739, 34.59436778379743], [-77.45774276671997, 34.594276019641576], [-77.45786606698084, 34.5939329207481], [-77.45788959673017, 34.59383825788493], [-77.45767529154978, 34.593556739758945], [-77.45767840316228, 34.59345466970941], [-77.45773179866934, 34.593182703611646], [-77.45771960733482, 34.59317483037325], [-77.45721764213741, 34.593165554444184], [-77.45691047614498, 34.59327285061423], [-77.45630000715208, 34.59328203682169], [-77.45665447442136, 34.59358597102489], [-77.45685397924542, 34.59375703213677], [-77.4568742331332, 34.593774398423065], [-77.45688214767475, 34.59378302869741], [-77.45706956906983, 34.593992697288925], [-77.45725204890556, 34.594234554916284], [-77.45733708314876, 34.59439176381096], [-77.45705335508052, 34.59478441174534], [-77.456662655658, 34.59497792032136], [-77.45645288468353, 34.595193682752466], [-77.4562646173433, 34.595436265569234], [-77.45612112014287, 34.595696977662655], [-77.45607953418349, 34.59611803220325], [-77.45607277066291, 34.596229526880535], [-77.45606861764374, 34.596297990740574], [-77.45601245664236, 34.59644264475008], [-77.45580179401402, 34.596457723149236], [-77.45503461692786, 34.59671084964658], [-77.4548086190027, 34.59675799790901], [-77.45453589294016, 34.596809151719754], [-77.45437229798895, 34.596943190837244], [-77.45418734635531, 34.59745595541936], [-77.45417650836946, 34.59749406885388], [-77.45417150372386, 34.597510440926946], [-77.45411560278892, 34.597605562345116], [-77.45388137723128, 34.598010184980325], [-77.4537456131209, 34.59805805436215], [-77.45332957906005, 34.59816277200273], [-77.45323269357465, 34.5981475084974], [-77.45295992219494, 34.598104535542966], [-77.45279341084334, 34.598124341372696], [-77.45253409728916, 34.598158122530506], [-77.45228257984414, 34.59817845413612], [-77.45213435195868, 34.598199780351585], [-77.45136877791937, 34.59830992467754], [-77.45130373273237, 34.59830119155613], [-77.45123771770673, 34.59832386039622], [-77.45024859529693, 34.59842902840322], [-77.44934442074668, 34.598887328724516], [-77.4493681855247, 34.598908407244366], [-77.45013672257251, 34.599399861436936], [-77.45030765919525, 34.5995192787923], [-77.45054870148127, 34.59952527879845], [-77.45075688799689, 34.599592232861205], [-77.45091029337372, 34.59969669126441], [-77.45098555732554, 34.59971163905338], [-77.45092156634506, 34.59976171964124], [-77.45084374834295, 34.599778067890874], [-77.4506064467089, 34.59973621095888], [-77.45036307605523, 34.5998759768759], [-77.45015407052915, 34.60000388579185], [-77.44975762182784, 34.600246505125455], [-77.44971022997791, 34.60026691370642], [-77.44970145416346, 34.60027069286096], [-77.44968455035529, 34.60028125120749], [-77.44923695102825, 34.60049408636114], [-77.44900339782745, 34.60063895565202], [-77.4488177459779, 34.60088296234116], [-77.44839815268259, 34.60104654846195], [-77.44834674766194, 34.6010826483298], [-77.44800364911913, 34.601485265299075], [-77.44809455892829, 34.60155970748024], [-77.44839223356243, 34.601861514178594], [-77.44877275394742, 34.60179704797059], [-77.4490383883952, 34.60168896880529], [-77.44918196426015, 34.60163055127096], [-77.44934796680874, 34.60160717987317], [-77.44952477473467, 34.601545486843094], [-77.44978045169303, 34.60153239493782], [-77.44978307297302, 34.60153229572792], [-77.44978442466955, 34.601533861442825], [-77.44988974186671, 34.60168585250328], [-77.44985135400569, 34.60177834236373], [-77.4497780069419, 34.60183913569724], [-77.44977258377102, 34.60200229632329], [-77.44973887319614, 34.602098139779514], [-77.4497276377303, 34.6021312097936], [-77.44970355667414, 34.60219854941981], [-77.44930927615425, 34.602589922330864], [-77.44933136635598, 34.60261193824038], [-77.44929089125796, 34.60261133821894], [-77.44924286515794, 34.602650041078185], [-77.4491309545293, 34.6026407801624], [-77.44827569900251, 34.6027433937514], [-77.44803284015143, 34.60277692033906], [-77.4480251265085, 34.602956161623226], [-77.44783337859201, 34.603326522093056], [-77.44817434945658, 34.60365211554254], [-77.44830183307668, 34.6038007134871], [-77.44867587780425, 34.60420522725746], [-77.44869593313017, 34.604233159275125], [-77.44870779881924, 34.60423849156726], [-77.44875316126416, 34.604267806940456], [-77.44910664194481, 34.604493998695844], [-77.44918030979352, 34.60455521861059], [-77.44931335449235, 34.604613589373415], [-77.44982266471804, 34.604659044509724], [-77.44980488486203, 34.60470584810054], [-77.44985891667261, 34.60468619568368], [-77.45003756081597, 34.60496701240365], [-77.45005688860553, 34.60503372809198], [-77.45011196917113, 34.60513041968441], [-77.45000988638752, 34.60523763105914], [-77.44983874040952, 34.60526709190182], [-77.44961939778962, 34.605389833063], [-77.44951353713873, 34.605344798332986], [-77.44933469910616, 34.60528077975687], [-77.44895237882923, 34.60521523576567], [-77.44853752588102, 34.60534118781052], [-77.4484489096317, 34.605400144132126], [-77.44797689205652, 34.60549244956977], [-77.44767794141917, 34.605749753405206], [-77.44763130680779, 34.60602251884778], [-77.44760602290603, 34.60605800331337], [-77.44731183230913, 34.606241041196384], [-77.44725345517178, 34.60669042609019], [-77.44682512771055, 34.60652063731347], [-77.44658479819279, 34.606606023521856], [-77.44621718724702, 34.60674567051106], [-77.44587551916344, 34.60697721749081], [-77.44566612953874, 34.607023398563165], [-77.44567003123034, 34.606951072528624], [-77.44556806622953, 34.6068696212012], [-77.44562601052955, 34.60659437132273], [-77.44532941822013, 34.60652078040872], [-77.44509664825283, 34.60649304418283], [-77.44496209680399, 34.60641444036906], [-77.44476164241743, 34.606300675546485], [-77.44471968742592, 34.60626300995405], [-77.4447097637242, 34.60611714210383], [-77.44482387492491, 34.60598976515951], [-77.44481258276564, 34.605455237413736], [-77.44504436931544, 34.605955002101695], [-77.44515960272034, 34.60598886746702], [-77.44550245945544, 34.606055082676484], [-77.44571208846413, 34.606052907372025], [-77.44600319203501, 34.60596390660086], [-77.44626412051335, 34.60587439035087], [-77.44646183927951, 34.60561751352567], [-77.44662333161455, 34.60538068972018], [-77.44654358355248, 34.60503625571779], [-77.44645632219283, 34.60488057973531], [-77.44615528236623, 34.60459906856584], [-77.4461541178299, 34.604598147727735], [-77.44562339172842, 34.60457638158918], [-77.4453186153035, 34.604705401403976], [-77.44514215719242, 34.60473876344689], [-77.44494233466413, 34.60479239446306], [-77.44485468409847, 34.60481548818816], [-77.44486114290576, 34.60476397913746], [-77.44488418311411, 34.60459039622854], [-77.44489901019222, 34.604304148429854], [-77.44490947235978, 34.60416147855826], [-77.44493571954682, 34.60383719447922], [-77.44490265886908, 34.60353967909418], [-77.44489251687126, 34.603397800743544], [-77.44475223063898, 34.603151014347254], [-77.44504136049713, 34.60244994459271], [-77.44506339174637, 34.602357103874155], [-77.44507990289102, 34.60231906974367], [-77.44517378226998, 34.60213961299631], [-77.4453069522051, 34.60188506933066], [-77.4453344342095, 34.60183255126686], [-77.44537617639419, 34.60175266538725], [-77.44553372189127, 34.601451147609325], [-77.44522378630515, 34.601195894170836], [-77.44520802557578, 34.60118345506151], [-77.44520053331753, 34.60117691201396], [-77.44517434094423, 34.60115710564111], [-77.4448648017929, 34.60090340013419], [-77.4447361743297, 34.60084610523127], [-77.44456046100167, 34.60069289603807], [-77.44451793048798, 34.600655812593146], [-77.44449818216857, 34.60063869774306], [-77.444296901022, 34.600468925494226], [-77.44408675418008, 34.6003867717196], [-77.44393598289794, 34.600331808390294], [-77.44371394577249, 34.60049308302861], [-77.44356089025433, 34.600592394002376], [-77.44352767336635, 34.60076057157556], [-77.44349492438562, 34.60092479015996], [-77.44361518838156, 34.60108034399869], [-77.44369967906937, 34.60119914090541], [-77.44373570424395, 34.60122538043088], [-77.44386896218883, 34.60131964044281], [-77.44418242114651, 34.60152317565591], [-77.44428733162817, 34.601615573729916], [-77.44439892003426, 34.6017156051484], [-77.44444898302527, 34.601760482907196], [-77.4444779020603, 34.6018424790274], [-77.44453070555386, 34.60201161300344], [-77.44456897643168, 34.60209551680397], [-77.44483273585676, 34.60227637640922], [-77.44481156596011, 34.602395590117474], [-77.44410859960945, 34.60288317275421], [-77.44361427900762, 34.60273700841056], [-77.44326724780382, 34.60264212297895], [-77.44316775841142, 34.60249508515425], [-77.44302920904256, 34.602264560321586], [-77.4429775403817, 34.60218007571142], [-77.44295598570847, 34.602108422646246], [-77.44281352710622, 34.60199257485245], [-77.44248721506743, 34.60207485602362], [-77.44232613280661, 34.60213240641576], [-77.44209985235312, 34.60243034456258], [-77.44211770842386, 34.60256494578546], [-77.44228023679305, 34.602934611448106], [-77.44232735037743, 34.60310397362568], [-77.44214099799683, 34.603376719950965], [-77.44123079485814, 34.60349335867938], [-77.44132946649742, 34.60412700429598], [-77.44133120914108, 34.60414793149945], [-77.44163924999387, 34.60463252652016], [-77.44166055089465, 34.604771098976954], [-77.44212271181038, 34.604955705643505], [-77.44213022184655, 34.60500643028107], [-77.44214805480657, 34.60505325935563], [-77.44214565783801, 34.60518665373246], [-77.44211957773047, 34.605219257022355], [-77.4419177095432, 34.60528234901015], [-77.44182975843567, 34.605313863655184], [-77.44161769081182, 34.60530620180068], [-77.44145819738024, 34.605431228596096], [-77.44130193529722, 34.60550203745522], [-77.44116020081475, 34.60555537916848], [-77.44110418639028, 34.60548360691963], [-77.44105301550486, 34.605349234801956], [-77.44104020846396, 34.605317224332765], [-77.44102470170398, 34.605279500260835], [-77.44137931021893, 34.60485128910698], [-77.44129423216724, 34.60475441384806], [-77.44127990644976, 34.60415760783151], [-77.44128128579993, 34.6041407420855], [-77.44126817572953, 34.60412586879117], [-77.44104951603532, 34.60352503781654], [-77.44065649370654, 34.60371475245893], [-77.44051466034757, 34.6038621226178], [-77.44034493732981, 34.60403847007989], [-77.4402369979112, 34.6041027490051], [-77.44020359491168, 34.60407876975988], [-77.44013358784977, 34.60403845116688], [-77.44002813643334, 34.6039441726288], [-77.43996363245503, 34.603938361812176], [-77.43991660667922, 34.603892422831755], [-77.43984576674195, 34.603811545917345], [-77.43981514202713, 34.60366278608601], [-77.43979876313644, 34.603611537658836], [-77.43991409578614, 34.60342281704578], [-77.43990439813962, 34.603096555692034], [-77.43990247934823, 34.60305688233434], [-77.43981804081145, 34.602998855634134], [-77.43971901605255, 34.60286608408403], [-77.43973310088737, 34.60273592842428], [-77.43958028476044, 34.60257857989606], [-77.43937910347694, 34.60246761275954], [-77.4393025467745, 34.60246101992594], [-77.43923709748348, 34.60236969312041], [-77.43912847413401, 34.602216724430484], [-77.43911102559886, 34.60217479977679], [-77.43909230410917, 34.60212538643995], [-77.43905277028621, 34.602006786295824], [-77.43902429012807, 34.6018869886939], [-77.43900932938118, 34.60183454887485], [-77.43893842342219, 34.60153485982075], [-77.43892760760146, 34.60148860312267], [-77.43891929265244, 34.60144539113948], [-77.43885404983511, 34.60114032982035], [-77.4388046535495, 34.600789264174175], [-77.43880415572673, 34.60078565400352], [-77.43880463522856, 34.60078517309189], [-77.43880442537856, 34.600784472147375], [-77.43880361207394, 34.600781592481496], [-77.43875076418803, 34.600368512084025], [-77.43873458362226, 34.600020253668085], [-77.4387309798992, 34.59994677874129], [-77.43873087476584, 34.599868875354396], [-77.43910727818432, 34.59946777151336], [-77.43914252962172, 34.59940389375371], [-77.43919705397838, 34.59932831656313], [-77.43958897221191, 34.59897569829903], [-77.43959162794762, 34.59897382420278], [-77.43959202748198, 34.59897308038113], [-77.43998491953099, 34.59860744989104], [-77.44004559127933, 34.59854829272341], [-77.44034562690838, 34.598475414273075], [-77.44037896925681, 34.59850588682946], [-77.4406053868023, 34.59858263622134], [-77.44079685013119, 34.59874015005381], [-77.44089406940786, 34.598820130564675], [-77.440989778683, 34.598685138140425], [-77.44124865042164, 34.59854419945622], [-77.44128027458792, 34.598310577855095], [-77.44128139549112, 34.59823273743434], [-77.44125329645917, 34.59821198781209], [-77.44105264598439, 34.59803580150784], [-77.44098461030359, 34.59792250410267], [-77.44077264632533, 34.59762332066058], [-77.44070994181513, 34.597605179372394], [-77.44071713752218, 34.5975365906286], [-77.44070466269976, 34.597465229845916], [-77.44063119765791, 34.597124423863356], [-77.44076992203787, 34.59668222000101], [-77.44076902818452, 34.59667989593623], [-77.44076638490077, 34.59667401808668], [-77.44053670795049, 34.59611773657801], [-77.44012381695589, 34.596074935860116], [-77.43998373009948, 34.59605426945809], [-77.43987022843685, 34.59608298946011], [-77.43958968148985, 34.59613473134962], [-77.43942324072901, 34.59620468682371], [-77.43928373190664, 34.596140457355695], [-77.43919558726735, 34.59611688400224], [-77.4391059750128, 34.59618691886406], [-77.43909543083616, 34.59618067165174], [-77.43909485633274, 34.59617655235171], [-77.43917937369666, 34.596060591647856], [-77.43918524384766, 34.59604863209357], [-77.43919554944037, 34.59603383280999], [-77.43951729707203, 34.595587130386356], [-77.43954331065612, 34.595533705270945], [-77.43965584067837, 34.595142500235085], [-77.43955610000283, 34.594767834446216], [-77.43956141436273, 34.59470181503899], [-77.43958894140572, 34.5945245803397], [-77.43971391791433, 34.59428491264896], [-77.43989419501267, 34.59416331860543], [-77.43998281041443, 34.59407293068986], [-77.44008916667718, 34.594116074107575], [-77.44060866786927, 34.593980698726234], [-77.44077093858783, 34.59402192869], [-77.44128857117289, 34.59376584593315], [-77.44155886294175, 34.59355074981324], [-77.44178214170981, 34.59337727166711], [-77.44222072203203, 34.59307317486188], [-77.44229958926493, 34.59301095997239], [-77.44234671900166, 34.59295907815015], [-77.44267740929644, 34.59265064651507], [-77.44313455312961, 34.59234587697465], [-77.44331294295978, 34.59225825773791], [-77.44346670554263, 34.59204375869651], [-77.44357819350697, 34.59154918681505], [-77.44374732004783, 34.591153975555926], [-77.44332247512392, 34.59101222726757], [-77.44313383355811, 34.59090510797542], [-77.44309268067363, 34.59086839433853], [-77.44300330012757, 34.590837000772375], [-77.44282463491867, 34.59077133407034], [-77.44259409572784, 34.590739311699146], [-77.44234566229221, 34.59080307962368], [-77.4418686491668, 34.59091167836256], [-77.44155761150209, 34.590948812442626], [-77.44122380934728, 34.59102949580548], [-77.44116359621943, 34.5910454825902], [-77.4411235037688, 34.5910656808333], [-77.44076958093838, 34.591144002492015], [-77.44045243312755, 34.591288745956874], [-77.44037559285431, 34.59130327920206], [-77.44030397463797, 34.591304583013], [-77.43998153905831, 34.591323417639906], [-77.43983798815756, 34.59129480671274], [-77.4396830290562, 34.59121420566112], [-77.43939176373233, 34.59093474321806], [-77.4393132423691, 34.59081673691337], [-77.43919287466552, 34.59013215645158], [-77.43918088874813, 34.59012896335146], [-77.43918897941906, 34.59011488022093], [-77.43919097849785, 34.590112557549084], [-77.43919286366074, 34.59010776558245], [-77.43937759963146, 34.589663008088934], [-77.4394576630512, 34.58951244546319], [-77.43995688222894, 34.58918014210155], [-77.43998054510347, 34.58916522232629], [-77.43999464414476, 34.58916436893357], [-77.44032207000322, 34.58910182250992], [-77.44000219128837, 34.5891247409479], [-77.43998050998398, 34.58908879164062], [-77.43984144283067, 34.5884716840747], [-77.43929575390446, 34.58851270007493], [-77.43919217995321, 34.58858973821126], [-77.4390892824181, 34.588541769497866], [-77.43858072384347, 34.588694750811754], [-77.43840413762717, 34.58872314485504], [-77.43814760125319, 34.58884357439322], [-77.43801015695824, 34.58888515688659], [-77.43788731026306, 34.58889695743807], [-77.43773462194825, 34.589051410836916], [-77.43761620340379, 34.58911373201209], [-77.4375684074286, 34.589126952359784], [-77.43741921064156, 34.58919268130693], [-77.43726574133402, 34.589166157227105], [-77.43722216804068, 34.58915572959283], [-77.43720388413522, 34.589147853481926], [-77.43718913085095, 34.58913028956075], [-77.4371520345976, 34.589060128481556], [-77.43708600052688, 34.58893290533487], [-77.437098828387, 34.588851512955365], [-77.43708201083196, 34.588721185403585], [-77.43713662736567, 34.58838050902702], [-77.43682772088323, 34.58822191983721], [-77.4367373168013, 34.58801915990942], [-77.43656827346317, 34.58794628307514], [-77.43618710239555, 34.587842317004814], [-77.43603945800052, 34.587822706456265], [-77.43583261922286, 34.58762806028939], [-77.43574372953447, 34.58753484581182], [-77.43564525159164, 34.58743184288228], [-77.43556262720057, 34.587331490895615], [-77.43548736272986, 34.587253387506884], [-77.43540401825864, 34.58710063480365], [-77.43525103573252, 34.587008145749536], [-77.43513678188214, 34.58687948388429], [-77.4350077969884, 34.58673551960315], [-77.43485681067274, 34.58655100213887], [-77.43483371900417, 34.586523579640215], [-77.43481599218086, 34.58650127235471], [-77.434856731871, 34.58635211842498], [-77.43492789162005, 34.58613727020951], [-77.43520774688923, 34.58606627680062], [-77.43525065539296, 34.58605980577753], [-77.43530801878771, 34.58606734854018], [-77.43553037799487, 34.58609658669481], [-77.43564472317041, 34.586130174214716], [-77.43582010952433, 34.586167121348836], [-77.43589962350198, 34.58619463745804], [-77.43603880885746, 34.586242803091125], [-77.43609493299786, 34.5862558833078], [-77.43632776896565, 34.58628268675748], [-77.43643287441847, 34.58630454208959], [-77.43679489669896, 34.58624961702044], [-77.43682690030205, 34.58627051052527], [-77.43688086228626, 34.586260860955434], [-77.43692232399522, 34.58619671538115], [-77.43761465391272, 34.58551002714863], [-77.43772707703528, 34.58535237199851], [-77.43827276767095, 34.58529217893381], [-77.43840261970756, 34.585267058441204], [-77.43871135417285, 34.58542142372666], [-77.43881469537045, 34.58547912972232], [-77.43883911616027, 34.585494936898115], [-77.43918154773905, 34.58585987305275], [-77.43919010145378, 34.585868772499076], [-77.43919023405941, 34.58586953447585], [-77.439190959703, 34.58587110228297], [-77.43943358984062, 34.58642156729961], [-77.43974111881553, 34.58663827237493], [-77.43997949648812, 34.58687992682407], [-77.44030372052868, 34.587056817793766], [-77.4407676683369, 34.58706724377811], [-77.44100605195477, 34.587047640318275], [-77.4413538449617, 34.587036665694896], [-77.44155573365411, 34.58702447718057], [-77.44186646530625, 34.58684514911032], [-77.44260655439416, 34.5865072073106], [-77.44313146797555, 34.58614552962308], [-77.4436926473805, 34.58582239503889], [-77.44466800264344, 34.58341922247739], [-77.44465312023843, 34.58338019316244], [-77.44457629546343, 34.583251391138774], [-77.44350070559146, 34.58144811547918], [-77.44278803306226, 34.58025321630107], [-77.44155154485355, 34.578179985729406], [-77.4410139527973, 34.57769214337689], [-77.43972894427117, 34.57729893461035], [-77.43839898774317, 34.57691196899935], [-77.43791887882884, 34.57704326663131], [-77.4372156678627, 34.577662415145355], [-77.43558697262112, 34.5782637090173], [-77.43524759780641, 34.57837336109057], [-77.43480866504463, 34.57848353775979], [-77.43445968472321, 34.57861486252868], [-77.43424244026201, 34.57870739060188], [-77.43406574561362, 34.57878604599455], [-77.43392557675915, 34.57898735277178], [-77.43385807412534, 34.57919774291055], [-77.43378286020628, 34.579737812131725], [-77.43376377122783, 34.57985993072297], [-77.43371897700224, 34.57991685088909], [-77.4336721967778, 34.57999707832554], [-77.43337711781531, 34.5804468537214], [-77.43290033815575, 34.58083394678652], [-77.4328944759001, 34.58084555829211], [-77.43288448786622, 34.58084772685696], [-77.43287044205634, 34.58085340692447], [-77.43232455111249, 34.58116285893132], [-77.43209659924563, 34.58124227630733], [-77.43161299897572, 34.58134806788995], [-77.43130862707633, 34.58142015933705], [-77.4310813031492, 34.581341845661385], [-77.43052053635401, 34.58126075046418], [-77.43047277751083, 34.581236335807915], [-77.43038148256133, 34.5811980770038], [-77.42994361991, 34.581033788018516], [-77.4297324040543, 34.58096733139395], [-77.42963909409175, 34.58098135338259], [-77.4294478828044, 34.581026407105654], [-77.42933843017373, 34.58109753090386], [-77.42899587181137, 34.58134299396111], [-77.42894450265078, 34.581375987408926], [-77.42892731698969, 34.58138974553511], [-77.42889908017717, 34.58141235066918], [-77.42874754552535, 34.581539092268414], [-77.42867558514826, 34.58152219163719], [-77.42867846318673, 34.581444238040596], [-77.42862366409145, 34.58137329974161], [-77.42855042450824, 34.58118744023183], [-77.42850616562401, 34.581092212225435], [-77.42850535866387, 34.581044668681024], [-77.4284622833028, 34.58095599296085], [-77.42832706539839, 34.58064584912124], [-77.42829462152648, 34.58050136753552], [-77.42815615539402, 34.580380552740536], [-77.42806284860238, 34.58025944838873], [-77.42795134140614, 34.580071580475874], [-77.42794331983359, 34.58006442982857], [-77.42789639898734, 34.580003717748866], [-77.42786807950155, 34.579969157239866], [-77.42788478904244, 34.579940578527896], [-77.42791125965093, 34.57985676911912], [-77.42795897291978, 34.57981215309398], [-77.42804072267293, 34.57971388979076], [-77.42815590492859, 34.57957543992943], [-77.42832481537631, 34.57937240726355], [-77.4283986617114, 34.57919886869577], [-77.42836896377514, 34.57894143716455], [-77.4283274255639, 34.57876233483906], [-77.42830899071367, 34.57869078097246], [-77.42826994071183, 34.5785311607093], [-77.42824836327645, 34.57843426219665], [-77.4282556386695, 34.578216568944356], [-77.42842239279756, 34.57808453651312], [-77.42854941592161, 34.577990986791974], [-77.42879296481155, 34.577868881972734], [-77.42894333662755, 34.57773475626491], [-77.42906455720505, 34.5776977722514], [-77.4291159670097, 34.57755969689569], [-77.42894315638912, 34.57716919570017], [-77.42894025894624, 34.57716362569819], [-77.42893992651788, 34.577160553273444], [-77.42893761669163, 34.57715492220482], [-77.42875578466112, 34.57653969554095], [-77.42832746025962, 34.57658577524849], [-77.42815497925683, 34.57658636465449], [-77.42802244142734, 34.5765868171442], [-77.4274384402141, 34.57660539145317], [-77.42736699186388, 34.5766016870186], [-77.4273149500911, 34.57660232754503], [-77.4267374733781, 34.576800422567295], [-77.42657907176743, 34.57685132382745], [-77.42636623073034, 34.57691274496049], [-77.42618511219263, 34.57698435320449], [-77.4260611576006, 34.57701844903866], [-77.4259191165532, 34.5770346400562], [-77.42579113054235, 34.5770434142545], [-77.42558760415854, 34.577015205394986], [-77.42539711034294, 34.57696501865348], [-77.42507962984303, 34.57686929617607], [-77.42503547804955, 34.57684076130635], [-77.42500307270177, 34.57681981785421], [-77.42470818813187, 34.57649838598664], [-77.42466191213344, 34.57644802704924], [-77.42460892729923, 34.57626447559211], [-77.42455493029952, 34.57609594592885], [-77.42460885141166, 34.5759788892295], [-77.42471766930504, 34.57576517047006], [-77.42492861457896, 34.57561735758082], [-77.42487812287206, 34.57533428664061], [-77.4248471514127, 34.57520454259598], [-77.42460862724047, 34.5751338992281], [-77.424456501717, 34.575097066262806], [-77.42439189593354, 34.57507929168084], [-77.42421460602878, 34.575013133786356], [-77.42398660136057, 34.57490431205974], [-77.42391928028123, 34.57480765755879], [-77.42385919488311, 34.57453984072105], [-77.42385741258963, 34.574498393699], [-77.42383774545013, 34.57409536033214], [-77.42383047026769, 34.574066821116986], [-77.42382037240708, 34.574055376001546], [-77.42365533877839, 34.573856218592695], [-77.42355426151077, 34.573830893613504], [-77.42342632555291, 34.57380724874202], [-77.42323012125269, 34.57395134824512], [-77.42322914953627, 34.573952061908955], [-77.42303239606476, 34.574028566494455], [-77.42292043399068, 34.5740885263902], [-77.4226384482775, 34.57418275942763], [-77.42258543805822, 34.57420047409617], [-77.42244147112504, 34.57424858406425], [-77.4222811364598, 34.574301575495454], [-77.42224990266322, 34.574311918260456], [-77.42224449349045, 34.57431373024534], [-77.42223521752382, 34.574318207908846], [-77.4220846829901, 34.574370017415355], [-77.4220780116481, 34.574510386524125], [-77.42208401308226, 34.57454235082954], [-77.42209945411635, 34.57459603723841], [-77.42214095794502, 34.57474641574376], [-77.42224467861395, 34.57509704990259], [-77.42226303605959, 34.57513358892258], [-77.42226953537012, 34.57515242364779], [-77.42227818149972, 34.57518725589535], [-77.42233706487929, 34.57535495928326], [-77.42230476366355, 34.575424293815644], [-77.42224475704847, 34.57542838758421], [-77.42206267640933, 34.575394605446334], [-77.42209914298883, 34.575333940738666], [-77.42204387628026, 34.57539314411513], [-77.42185075713142, 34.575392702902704], [-77.42155785032298, 34.575364193531684], [-77.42145675529277, 34.5753475055983], [-77.4214002404885, 34.575338925781566], [-77.42129532336527, 34.57529318325116], [-77.42113572744547, 34.575237586011355], [-77.42106272863259, 34.57518915100354], [-77.42090032860168, 34.57510065596601], [-77.42067442355868, 34.57495830517116], [-77.42066868648989, 34.57495314043573], [-77.42046317701829, 34.57478566887373], [-77.42027464233078, 34.57469722106964], [-77.4201350139225, 34.574611651047206], [-77.42008875224974, 34.574394006227536], [-77.42001096492774, 34.57420498742965], [-77.419956282204, 34.57386999053184], [-77.41994761728425, 34.57378955511778], [-77.41993581320293, 34.57373160065684], [-77.4198982696699, 34.57339137599912], [-77.41991100443092, 34.57337025994414], [-77.4200864566823, 34.57314246322379], [-77.42027424927079, 34.57284303257583], [-77.42047246744175, 34.57265363205628], [-77.42089587700002, 34.5725579833866], [-77.42106213730847, 34.57251978152809], [-77.42123381079331, 34.57256955963393], [-77.42128698566391, 34.572564595392095], [-77.42145612189726, 34.572548805200036], [-77.4216528331418, 34.57248172257753], [-77.42165306177723, 34.57248165300465], [-77.42165309567758, 34.57248163700361], [-77.42165316120486, 34.5724816045503], [-77.42185006164084, 34.57238184025193], [-77.42194675735549, 34.57233118107115], [-77.4222439935999, 34.572188756928], [-77.42225936992973, 34.57218179067014], [-77.42255236069029, 34.57204723066578], [-77.4226379251646, 34.57200174927857], [-77.42297751539536, 34.571711969124486], [-77.42305328070198, 34.571665616282296], [-77.42304809387709, 34.571625685535054], [-77.42297504194836, 34.57159262266314], [-77.42263778116805, 34.57139880183733], [-77.42252067351455, 34.57142107442865], [-77.4223820223218, 34.57146383293981], [-77.42224384139212, 34.57153883599497], [-77.422085696551, 34.57161184744711], [-77.42184991761557, 34.571754710135764], [-77.42165048434777, 34.57184518326211], [-77.4215046862164, 34.57191873982547], [-77.42145598318625, 34.57193245034707], [-77.42139278749724, 34.571950527369964], [-77.42111860121813, 34.571983011571135], [-77.42106203284074, 34.572045716395735], [-77.42089753700068, 34.57220124545906], [-77.4204705929233, 34.57222850520472], [-77.42036166984633, 34.57170128255489], [-77.4203203826067, 34.57161277551371], [-77.42030549115344, 34.571580970627245], [-77.42027396021612, 34.571472188193496], [-77.42019656577135, 34.57120607926364], [-77.42015687857538, 34.571085721241445], [-77.42011071071786, 34.5709697196036], [-77.42000808891636, 34.570808724848845], [-77.41987982774066, 34.570697126647595], [-77.4196591692993, 34.57067234969491], [-77.41948584911604, 34.5706528880216], [-77.41920410977147, 34.57062125139688], [-77.41909187073134, 34.57060816798124], [-77.41902335655712, 34.57060024330997], [-77.41889488162559, 34.57058561555375], [-77.41872966166821, 34.57060306551667], [-77.41869790055199, 34.57060465295195], [-77.41833872899197, 34.570662801937054], [-77.41825659490908, 34.570688207785274], [-77.41790997695034, 34.570690698121744], [-77.4179057721867, 34.570692388677074], [-77.41790177612015, 34.57068843411954], [-77.41765419471331, 34.57057525039825], [-77.41751597769468, 34.570525670586754], [-77.41728162250737, 34.57035343536073], [-77.4171935949262, 34.57028895746631], [-77.4171412990955, 34.56994912227884], [-77.41715586381524, 34.569910417865984], [-77.41726631431351, 34.569662160672905], [-77.41745117365771, 34.56947977595628], [-77.4175157820757, 34.56941519194417], [-77.41776831402458, 34.569281563397894], [-77.41790967568527, 34.56902427531366], [-77.41807537002387, 34.56921106787119], [-77.41816632237432, 34.56937646557781], [-77.41839459837722, 34.569670171021606], [-77.41869777763725, 34.56995936931363], [-77.41888534501153, 34.56991960714306], [-77.4190917494503, 34.569987100563566], [-77.41926411048536, 34.56982824598201], [-77.4194856792567, 34.56980320219982], [-77.41969367156358, 34.56978081771625], [-77.41987962189043, 34.569691252821535], [-77.42001207931675, 34.56967714884995], [-77.42027355657027, 34.56954619011961], [-77.42047557255981, 34.56967432418888], [-77.42066755002205, 34.56968343729582], [-77.42094903915984, 34.569702382984396], [-77.42106151531439, 34.569685860182034], [-77.42119977186547, 34.56963836355706], [-77.42165297426612, 34.56951019614857], [-77.42184938387295, 34.56941916099906], [-77.42215136252824, 34.56932440553872], [-77.42224331534146, 34.56928252749321], [-77.42229556782377, 34.569260777389346], [-77.42263722286884, 34.56905011551901], [-77.42294806903087, 34.56902060244712], [-77.42327080279075, 34.56880522383014], [-77.42342506141698, 34.56870860304033], [-77.4235004491145, 34.5686870161363], [-77.42359869966303, 34.568591564180046], [-77.42390388125624, 34.56821446684856], [-77.42421288451463, 34.568332496820204], [-77.42440780002354, 34.56826454974936], [-77.42479156575166, 34.56819371519326], [-77.42500074115426, 34.568111046393646], [-77.42520503003954, 34.56813925829043], [-77.42564663619055, 34.56814253076852], [-77.42578867114185, 34.5681735910422], [-77.42587214564162, 34.56817304270079], [-77.42618262670076, 34.56816985174384], [-77.42651887073677, 34.56810735493936], [-77.42657655446988, 34.568068412748524], [-77.42672047876212, 34.56798525498533], [-77.42693864233985, 34.568108863159736], [-77.42714442891202, 34.568316343179056], [-77.42736457074662, 34.568424988549445], [-77.42747118640521, 34.568456478354136], [-77.42736459247638, 34.5684991382224], [-77.42723385782124, 34.56877438478987], [-77.42699251721369, 34.568950253876515], [-77.4269707691095, 34.56896539435596], [-77.42669682670223, 34.56912229160918], [-77.4265768883601, 34.56924481351777], [-77.42630364337364, 34.56960439986382], [-77.42601467850469, 34.56969763460718], [-77.42578907798233, 34.56965533272981], [-77.42557290050087, 34.56977159229401], [-77.4253951528857, 34.569798189663835], [-77.42521777623264, 34.56982251578663], [-77.4251781184311, 34.56982775025302], [-77.42500120234033, 34.56985044744603], [-77.42476910417359, 34.56987062860614], [-77.42460729569257, 34.57007299636984], [-77.42456505465925, 34.57015026230943], [-77.42460733968615, 34.57024135749441], [-77.42469497222832, 34.57046169291981], [-77.42492121562327, 34.570523378355425], [-77.42500138525953, 34.570538057541114], [-77.42525001561216, 34.57063252050568], [-77.42539538183061, 34.570643684283866], [-77.4257854747448, 34.57081883334599], [-77.4257893969735, 34.570813351023844], [-77.42579088195228, 34.57082068235424], [-77.42579245439084, 34.57082205331661], [-77.42618345213828, 34.571119946928455], [-77.42621534173625, 34.57115116411397], [-77.42628946167837, 34.57128900663412], [-77.42627571960612, 34.57160138397403], [-77.42617590079287, 34.57203198467064], [-77.42618061107926, 34.572043060051975], [-77.42630161629678, 34.57214926319762], [-77.42657777353764, 34.57234672771216], [-77.42659042470898, 34.57239145647769], [-77.42659804971555, 34.57240397484098], [-77.42687199700661, 34.57268136077617], [-77.42696908543111, 34.57277794365284], [-77.4273006643005, 34.57315160098913], [-77.42736598453257, 34.57322000607279], [-77.4277351412995, 34.57354024774746], [-77.42776006812701, 34.573563259769735], [-77.42793687413953, 34.573718331928404], [-77.42798749550988, 34.57372196044364], [-77.42815409491669, 34.57371053949863], [-77.4282217323881, 34.57365535461848], [-77.42825100097826, 34.57354331911107], [-77.42829312540606, 34.573432740623915], [-77.42832446439533, 34.57318739979804], [-77.4283819286741, 34.57299531512894], [-77.42894164816269, 34.57240641580938], [-77.42911664750937, 34.572228591528464], [-77.4297294737782, 34.57201713830256], [-77.42977332325032, 34.57199227491469], [-77.4300006317892, 34.5719121494531], [-77.43041988692381, 34.5717465236492], [-77.43051731309053, 34.57169143248352], [-77.43069567389915, 34.571619422454205], [-77.4316067020426, 34.57115585453218], [-77.43209294646309, 34.570965886137415], [-77.43220149480699, 34.57086181639124], [-77.43249675869438, 34.570702101472065], [-77.43278309155949, 34.57055546871654], [-77.43288071538937, 34.570500151165604], [-77.4331039741373, 34.57037364190019], [-77.43366856904207, 34.570287058446056], [-77.43415387129082, 34.570136400741625], [-77.43524375299295, 34.56854529947644], [-77.43640802626729, 34.56758896710363], [-77.435242830882, 34.56615993393698], [-77.4347042903303, 34.565018573628286], [-77.43406140777633, 34.564531570267505], [-77.43209001806588, 34.56256003568997], [-77.43156049998774, 34.562067004433985], [-77.43112800197085, 34.56155898622705], [-77.42893796339621, 34.56053589794606], [-77.4274295868903, 34.56032269009746], [-77.42724620297514, 34.56029676664613], [-77.42701132682443, 34.56045576106361], [-77.4259820205974, 34.560815093780825], [-77.42578694937217, 34.56183422612742], [-77.42536773550606, 34.56193980532686], [-77.4249990982926, 34.56184451650047], [-77.42485071056664, 34.56177714863975], [-77.42489012401893, 34.56161153429178], [-77.42483909061104, 34.561446557912696], [-77.4251376409429, 34.5607265830215], [-77.42465786641812, 34.56031411176379], [-77.42421086850992, 34.56033976930909], [-77.42378891288658, 34.5604666663682], [-77.42263523877776, 34.5605600764936], [-77.42221945741665, 34.560700135713475], [-77.42184746111575, 34.56085524943351], [-77.4213138506785, 34.561005189375564], [-77.42105966220832, 34.56107661469282], [-77.42086261182946, 34.56113198314184], [-77.42027184037039, 34.561207559137074], [-77.42002578007481, 34.56088126891806], [-77.41948389637564, 34.56071891610381], [-77.41887401275908, 34.560590700009776], [-77.41844029685804, 34.56056957058413], [-77.41816295780008, 34.56145999751287], [-77.4180478891194, 34.56175106428422], [-77.41801594459422, 34.56187158670464], [-77.4179084246008, 34.56197885084632], [-77.4177507321399, 34.56196395503184], [-77.41714502074998, 34.56190786901121], [-77.41712055446672, 34.561905967704625], [-77.41710494657414, 34.56190411051363], [-77.4164124241511, 34.562073232874695], [-77.41633273071524, 34.562123138186394], [-77.41588643010822, 34.56254440613897], [-77.41542734695335, 34.562852008077115], [-77.41475712922353, 34.56298539097381], [-77.41423325317973, 34.56286671833449], [-77.41353881899511, 34.56278766475495], [-77.41318136759608, 34.5627869807926], [-77.41289091196604, 34.562809034808296], [-77.41182858751542, 34.562889692714336], [-77.41160564874016, 34.56295266202408], [-77.41144691545624, 34.56287559335959], [-77.41002989632958, 34.56278602326378], [-77.40902798855973, 34.56243531745419], [-77.40716980925569, 34.56193790049073], [-77.40687838250288, 34.56194822562099], [-77.40576102747139, 34.56182718607275], [-77.4040755812112, 34.5616947228743], [-77.40372693097106, 34.56166731797203], [-77.40309733567842, 34.56153311551092], [-77.40057545808283, 34.56251929936339], [-77.39883521043316, 34.561305871944924], [-77.3974240365562, 34.561676606116734], [-77.39677182162069, 34.56242169936273], [-77.39669020205059, 34.56313636495669], [-77.39626321783783, 34.56364533300453], [-77.3960224911329, 34.56408185320994], [-77.3958480771619, 34.564289384350936], [-77.39553078209646, 34.564660014038424], [-77.39518554406054, 34.565051750497275], [-77.39515077165092, 34.56515448199417], [-77.395132472287, 34.5654839795466], [-77.39514350986265, 34.565572318562445], [-77.39506004175712, 34.56580951001015], [-77.39502510597578, 34.56588639810194], [-77.3948910290616, 34.565943384386884], [-77.39435555120617, 34.56611056633787], [-77.39427209927175, 34.56618255609327], [-77.3941368303955, 34.56619796994961], [-77.39387813546357, 34.566276306085456], [-77.39357544416322, 34.56623152622909], [-77.39348419218278, 34.56618265881656], [-77.39345824692809, 34.56617804539349], [-77.39332210481594, 34.56616972236131], [-77.39289894256517, 34.566012379641045], [-77.39282482557749, 34.56581688655983], [-77.39293227801474, 34.56563107676905], [-77.39290574597135, 34.565380642752224], [-77.39305166298622, 34.56497675244716], [-77.39307267127803, 34.564912895380544], [-77.39322478938246, 34.56448547672768], [-77.39324663601815, 34.56422605593909], [-77.39341824209336, 34.56360842776057], [-77.39342577960551, 34.5635440572504], [-77.39348451841926, 34.563362678225666], [-77.39369060767898, 34.56294205381325], [-77.39365705540285, 34.56272483352496], [-77.3935856225449, 34.56262626479608], [-77.39348462576423, 34.56244503672043], [-77.39344618168661, 34.56237212691571], [-77.39342277945373, 34.562334060011985], [-77.39329715001026, 34.56212970750153], [-77.3931444371235, 34.56194964235526], [-77.39301296559725, 34.561627912025344], [-77.39269690734304, 34.561239368901674], [-77.39222534723389, 34.56089223006362], [-77.39119925118386, 34.560531959047005], [-77.39117963197135, 34.560471915428316], [-77.39112129750082, 34.56047202753858], [-77.39106003147113, 34.56048601035187], [-77.39093645729393, 34.56056986496123], [-77.38998496713545, 34.56118078452508], [-77.38954543915366, 34.56137454507089], [-77.3887721030149, 34.561715454780476], [-77.38874922341705, 34.56172554079617], [-77.38871909695033, 34.561738821146236], [-77.38796959521679, 34.56200735718286], [-77.38772846137743, 34.56214154651312], [-77.38748262313322, 34.56224148628642], [-77.38718167463182, 34.56226869645807], [-77.38700222165227, 34.56217984602183], [-77.38660181948552, 34.56226835376155], [-77.38639379776296, 34.56228863463386], [-77.3861912973943, 34.562321598199276], [-77.38585118968875, 34.562416768067145], [-77.38560587048539, 34.56254326298791], [-77.38515455726832, 34.562739208796316], [-77.38481791050174, 34.562922875867386], [-77.38458938772428, 34.562937192088114], [-77.38402999177819, 34.56309115378797], [-77.38386311446496, 34.56310834929799], [-77.38343195950894, 34.56314573583351], [-77.38324209618958, 34.56314831387617], [-77.38292456700304, 34.563081280712424], [-77.38282783580242, 34.563034820684095], [-77.38279586303328, 34.563017501798306], [-77.38258366136563, 34.56290864798005], [-77.38245430700965, 34.56277290196959], [-77.38238886241015, 34.562722159259074], [-77.38226335928567, 34.56266970700079], [-77.38229686932556, 34.562495123152004], [-77.38245443093886, 34.56227611029452], [-77.38248105396066, 34.562242440946164], [-77.38251594651628, 34.56220872658794], [-77.38269156077938, 34.56201433895975], [-77.38273524202253, 34.56175254449787], [-77.38296770642971, 34.561422856280586], [-77.38324257798644, 34.561143530801054], [-77.38338652732898, 34.56096461107174], [-77.3836583377277, 34.560770323795325], [-77.3839013507041, 34.56059601848476], [-77.38403058845364, 34.56050924742866], [-77.38429561404976, 34.5603928293756], [-77.38448311488213, 34.560289938912874], [-77.38481855589689, 34.560014478602454], [-77.38507870953843, 34.55999677539579], [-77.38539359392706, 34.55990037915696], [-77.3856064589418, 34.55977636263337], [-77.38634562397532, 34.55958621455896], [-77.38639433292839, 34.55965741344859], [-77.3865590266081, 34.55968043440311], [-77.38652531983465, 34.55936667146638], [-77.38639439935082, 34.55933267220704], [-77.38625962217239, 34.55940085549531], [-77.38560655597385, 34.55932273130247], [-77.38521033410632, 34.55927533019502], [-77.38481881043998, 34.558875772807234], [-77.38422498526616, 34.55919954698078], [-77.38403089766214, 34.55917948735067], [-77.38388178037785, 34.559200554477], [-77.38327886180029, 34.55912677369593], [-77.38324307632956, 34.55908202079519], [-77.3829082471449, 34.55869205347045], [-77.38250819966485, 34.55838875189845], [-77.38208328930298, 34.5580020491503], [-77.38166775144728, 34.557692662392206], [-77.38121979845167, 34.55735914206015], [-77.38088604139958, 34.556924356065444], [-77.38050277971934, 34.556537298548434], [-77.38003830769208, 34.55534829966001], [-77.37895747438944, 34.55258132039276], [-77.37880043467158, 34.552130236142084], [-77.378733467725, 34.5520078887077], [-77.3785333905315, 34.551495646547096], [-77.37805802882158, 34.55027861792506], [-77.37817006625791, 34.55001498384662], [-77.37857138091123, 34.549818913836326], [-77.37972598479529, 34.548784930730456], [-77.38117989175043, 34.54786992396759], [-77.38147305258472, 34.54764786304068], [-77.38176397208454, 34.54753272866513], [-77.382223660503, 34.54743415408613], [-77.38334823678612, 34.5469189873834], [-77.38372569505165, 34.54675663511355], [-77.38433314489927, 34.54643593432193], [-77.38479074575682, 34.54628122113688], [-77.38493364995583, 34.54625329593278], [-77.38509478626162, 34.546225995922576], [-77.38572401134019, 34.546023899181264], [-77.38648578033644, 34.54611213771414], [-77.38650714504456, 34.5461146096993], [-77.38654631422038, 34.5460926474662], [-77.38729613003083, 34.54594595173151], [-77.38754172858852, 34.54563228624213], [-77.38752016064576, 34.54548664481924], [-77.3877047664223, 34.54523434258721], [-77.38771529075416, 34.54522003025057], [-77.38772763021753, 34.54521188832461], [-77.388102391528, 34.54501083753232], [-77.38823480487792, 34.54497599066444], [-77.388765499467, 34.5448173534075], [-77.38889272838793, 34.54478155535179], [-77.38950552847245, 34.54460056680099], [-77.38968419542115, 34.54450189354469], [-77.39014332990094, 34.54433461071467], [-77.39077273384191, 34.544223425674424], [-77.3912627422755, 34.54413673220643], [-77.39209446511023, 34.5438228124858], [-77.39344958782083, 34.54353837526373], [-77.39345151573642, 34.54279509364582], [-77.39186748664083, 34.54241119185403], [-77.39147720547092, 34.54235870780089], [-77.39130186489788, 34.54239858312338], [-77.3912021624862, 34.54244566444426], [-77.39051485915499, 34.54248126630355], [-77.39027908331461, 34.54249347820439], [-77.3900248732548, 34.54249278173561], [-77.38973005261434, 34.54246623761108], [-77.38932678443005, 34.54228805969552], [-77.38915431985858, 34.54218626996389], [-77.38895514722256, 34.54201186670571], [-77.38875616742476, 34.54188070554329], [-77.38858064951967, 34.54165493580194], [-77.38860424153569, 34.54141295469646], [-77.38848953369786, 34.54124105955209], [-77.3884577325083, 34.541111205624766], [-77.38841828053673, 34.54095011391945], [-77.38840073571481, 34.54082542718794], [-77.38837073521907, 34.54057225359673], [-77.38841546309666, 34.5404608544752], [-77.38845587789609, 34.54011700664503], [-77.3884739406449, 34.53996275366433], [-77.38856199259703, 34.539737556618164], [-77.38862090788453, 34.53945188814666], [-77.38871150712029, 34.53924801528727], [-77.38894857201768, 34.53891495680637], [-77.38897631352746, 34.53888013656707], [-77.38902710797232, 34.538818854454576], [-77.38925552647069, 34.5385192628784], [-77.38952835463046, 34.53834165327436], [-77.38982796289362, 34.53811999459126], [-77.3901186250959, 34.53794566985681], [-77.39051355424836, 34.53770985888316], [-77.39062385195034, 34.5376410583417], [-77.39106010628626, 34.53741019027272], [-77.39119190360644, 34.537122325400404], [-77.39143144267979, 34.53664184768812], [-77.39146548537545, 34.53661402940874], [-77.39152739250723, 34.536584255292645], [-77.39199481341524, 34.53637477949443], [-77.39222396866398, 34.536311331263164], [-77.39239392452447, 34.53635264717994], [-77.39283500401227, 34.53639558837308], [-77.392961013954, 34.53640604163124], [-77.39300546612857, 34.53647087996758], [-77.39312696978557, 34.53684312902642], [-77.39315893299545, 34.536940827999196], [-77.39323635307173, 34.537163295654686], [-77.39333782205374, 34.53730237298524], [-77.39376409202298, 34.537647910971415], [-77.39385351272296, 34.537661665931736], [-77.39415790587307, 34.53759162839085], [-77.39423507053698, 34.53761412971064], [-77.39444947493512, 34.53756832654325], [-77.3945513301837, 34.537552652362734], [-77.39468165050091, 34.53751734433798], [-77.39480210382206, 34.53749146613969], [-77.39494848469404, 34.5373476250519], [-77.3949911424676, 34.53733506519237], [-77.39509223575486, 34.53720636705743], [-77.39520529716725, 34.53703289602004], [-77.39535202737815, 34.53685811306457], [-77.39552526844207, 34.536601508720516], [-77.39560301166192, 34.53648583173144], [-77.39598328631126, 34.53604856610609], [-77.39606295828982, 34.53592978490983], [-77.39609779467017, 34.53588662653822], [-77.39616115556956, 34.53578748402638], [-77.39623948930353, 34.53565947337981], [-77.39618176853676, 34.53543083049474], [-77.39618293399383, 34.53542280027731], [-77.39617053272713, 34.53536985308904], [-77.39610053326342, 34.53499394674535], [-77.39608476710175, 34.534947297074424], [-77.39600310572484, 34.53484733569014], [-77.3961747443888, 34.53445482940218], [-77.3961378141593, 34.53444997133042], [-77.39617605458253, 34.534434801425384], [-77.396191587077, 34.53443215954926], [-77.39677182030766, 34.534227848183875], [-77.39698443968305, 34.53408522816076], [-77.39715417881445, 34.5338136144442], [-77.3971176442133, 34.53340274717388], [-77.3977316873036, 34.532792594646935], [-77.39764013549792, 34.53276413346848], [-77.39778164045404, 34.53273234931658], [-77.39779994114708, 34.532728448715865], [-77.39780735633036, 34.53273527728138], [-77.39784491452625, 34.53273457680281], [-77.3988043373565, 34.53294590112107], [-77.39935881313376, 34.53322924970812], [-77.39987504611737, 34.53275693272051], [-77.40016017869667, 34.53250123081082], [-77.40031087248997, 34.532378624028034], [-77.40085339060433, 34.53223936624102], [-77.40095727891728, 34.531963026158216], [-77.40173996604895, 34.53167717807784], [-77.40254378122289, 34.53122920105592], [-77.40291403028206, 34.53102345977554], [-77.4037112687233, 34.53064914427593], [-77.40413589530036, 34.53024310065784], [-77.40442050672279, 34.529826593208625], [-77.40507151196566, 34.52932403865773], [-77.40514614150734, 34.52923213804838], [-77.4057362549378, 34.52888620585962], [-77.40601528879989, 34.528789663113415], [-77.40653473612673, 34.52854193510682], [-77.40665853458617, 34.52810918594734], [-77.40666330048151, 34.527958022436884], [-77.40654094978116, 34.52800470629302], [-77.40612617131225, 34.527621586243896], [-77.40610091086518, 34.52741822132974], [-77.40578122822048, 34.52687324670312], [-77.40558183701546, 34.52684560591299], [-77.40522284713182, 34.526772680193], [-77.40489857717411, 34.526397381949806], [-77.40422907627257, 34.52607591163418], [-77.40309610463058, 34.525831237885036], [-77.40231105310767, 34.52523441880376], [-77.40265529292179, 34.524176462037715], [-77.40429369921773, 34.52318596152907], [-77.40440721389544, 34.52304186029663], [-77.40488096616028, 34.52290464319276], [-77.40444094189452, 34.5228805924468], [-77.40478888507702, 34.5222342268449], [-77.4053452479936, 34.52219542407532], [-77.405876250621, 34.52262025246772], [-77.40701602394752, 34.52232384856425], [-77.40745789497562, 34.52209415253208], [-77.40895544835783, 34.52128038136765], [-77.40904607987476, 34.521273862806886], [-77.40915041809747, 34.52124399226856], [-77.41061408414359, 34.52135762199137], [-77.41142294068956, 34.52049362259483], [-77.41164643794399, 34.519968741037246], [-77.41222494351719, 34.51951693672809], [-77.41325702069034, 34.51939892470768], [-77.41381117915763, 34.51877979445168], [-77.4145057355017, 34.51911762306092], [-77.41534261641667, 34.51943469323258], [-77.41577358296729, 34.52008871576282], [-77.4158436078803, 34.52034167206423], [-77.41616894094324, 34.520755068642764], [-77.41612790941518, 34.5207944986957], [-77.41561647080864, 34.521353859173466], [-77.41543508395277, 34.52145085596019], [-77.41531490190235, 34.521753004673414], [-77.4151831438992, 34.52190615743172], [-77.41522216523028, 34.52195556344504], [-77.41505676101252, 34.52226009377114], [-77.41477183919702, 34.522455270033326], [-77.41450794373324, 34.522743173106896], [-77.4140013318351, 34.522740194130385], [-77.41370711290352, 34.52345709346119], [-77.41359956433362, 34.52353804073158], [-77.41213225459107, 34.523679379032465], [-77.41068176775538, 34.52402553736854], [-77.41056603247016, 34.52404970856433], [-77.41055390321188, 34.524057950576676], [-77.40975609919983, 34.525138606769055], [-77.40976952398947, 34.52560447608819], [-77.41052181527888, 34.52549777060882], [-77.41184210626031, 34.52483727387261], [-77.41196902711042, 34.52473173234982], [-77.41211941646253, 34.524255921871934], [-77.41328100111946, 34.52390957233289], [-77.41370223249336, 34.52367645039416], [-77.41380559627449, 34.5236381926509], [-77.41526322573783, 34.52407761109559], [-77.41577098171773, 34.52395457326368], [-77.41683609259684, 34.52394479743252], [-77.41740432413158, 34.523401184070835], [-77.41842718722499, 34.52299032390691], [-77.41871198407974, 34.52286525232235], [-77.41957720088152, 34.52247107838403], [-77.42001357321996, 34.52224652000515], [-77.42053310910704, 34.52194258105115], [-77.42080815448043, 34.52181148282118], [-77.42093116907212, 34.521975804569294], [-77.42157927364902, 34.52243505204481], [-77.42158839423827, 34.52244369724809], [-77.42159268395575, 34.522448886541476], [-77.42161038831996, 34.52246616830825], [-77.42206523131816, 34.52304831061033], [-77.42225169919324, 34.52333299442557], [-77.42268760966182, 34.52354261828684], [-77.42287453896793, 34.523732647589455], [-77.42295980541405, 34.52381932867604], [-77.42310547252562, 34.52418587946415], [-77.42310717788337, 34.52418870471644], [-77.42310731379541, 34.524190543764], [-77.42310652077136, 34.52436096796172], [-77.42310560235343, 34.52467861917388], [-77.42309921551399, 34.52469098782128], [-77.42284204281678, 34.52505094223862], [-77.42261821988964, 34.52523875800518], [-77.42240081285543, 34.52569204606964], [-77.42234897701024, 34.52576736625238], [-77.42233623110995, 34.52579821396126], [-77.42204305438781, 34.526301271234644], [-77.42177800836237, 34.52652001544244], [-77.42166162541851, 34.52684609328617], [-77.42147465223123, 34.527157400067104], [-77.42137524107399, 34.52731737076863], [-77.42131178990986, 34.52738634515415], [-77.42126971618141, 34.52751532094758], [-77.42115997647389, 34.527897973567974], [-77.42123558874331, 34.528024195817196], [-77.42120994201859, 34.52823013423094], [-77.42117940758365, 34.52838485097951], [-77.42112159907488, 34.52859359481467], [-77.4211076596868, 34.52867697536036], [-77.4207713683824, 34.52885902171023], [-77.42065110149852, 34.52889748983882], [-77.42048868047655, 34.52887270936361], [-77.42017843235686, 34.52882537484386], [-77.41986874671731, 34.52877812522219], [-77.4193764316945, 34.52895016146344], [-77.4187261273976, 34.52900921702833], [-77.41887832567039, 34.529327642741876], [-77.41904337068019, 34.52967293659473], [-77.4193444579076, 34.53030283321764], [-77.41948125010508, 34.53058902124512], [-77.41955623831905, 34.53074590669087], [-77.4193977895427, 34.53158045389319], [-77.41979904875164, 34.531921608050865], [-77.42025664958395, 34.53214713479552], [-77.42094465852713, 34.53233625352441], [-77.4229083454824, 34.53331403021808], [-77.4244627471375, 34.53282362837378], [-77.42540349913207, 34.53365047912173], [-77.42536889527751, 34.53521653563747], [-77.4253769117062, 34.53599502389177], [-77.42787800802748, 34.53721021365484], [-77.42530700774677, 34.53915873278374], [-77.42527638385633, 34.53954510897459], [-77.42491406100928, 34.54021002797934], [-77.42489779856588, 34.540946052566376], [-77.4246087572291, 34.54160037298779], [-77.42547852161509, 34.54171438048709], [-77.42586078562654, 34.541809955141765], [-77.42838309098961, 34.54144529134487], [-77.42901075307803, 34.54137960776549], [-77.43034036321686, 34.54160409651256], [-77.43215203058674, 34.541342124383156], [-77.43314408594902, 34.541701333408554], [-77.43451227715013, 34.541644676375526], [-77.4350445925556, 34.54026082719875], [-77.43488295186756, 34.54011476780186], [-77.43488896615345, 34.539841638632645], [-77.43484868196275, 34.536544767123615], [-77.43430525396964, 34.53628075965633], [-77.43486381827397, 34.53585739483114], [-77.43300566148393, 34.53407727341755], [-77.43336035091092, 34.53249990027308], [-77.43236412640383, 34.53171040405111], [-77.4305739522323, 34.532056044617136], [-77.43151973321262, 34.530807340137535], [-77.43063209502517, 34.52982940817293], [-77.43003056749966, 34.5290639254745], [-77.42972005458418, 34.528838926519725], [-77.42928936723668, 34.528748888034556], [-77.4278940238689, 34.52829087314201], [-77.42772852707009, 34.528334412528736], [-77.42761611896876, 34.528363983825216], [-77.42642256389755, 34.52844011348223], [-77.42615725460323, 34.52839267369743], [-77.42598690183176, 34.52828729247027], [-77.42595446164114, 34.52818426167836], [-77.4257554241366, 34.52797970913484], [-77.42581500029696, 34.52771473515397], [-77.4258058810797, 34.52748433985262], [-77.42577592294421, 34.527230697848864], [-77.425777567349, 34.526996869226195], [-77.42573806135123, 34.52674648204555], [-77.42575261686406, 34.526465387400634], [-77.42581478216292, 34.526002605674776], [-77.42584856433035, 34.52575112922433], [-77.42588332542269, 34.525535835835], [-77.42596310390815, 34.524924126420004], [-77.42598556091089, 34.524751946500515], [-77.42599900581315, 34.52459898232987], [-77.42603750703866, 34.524254747517716], [-77.42607362703426, 34.52387429550451], [-77.42608284836005, 34.523758502798245], [-77.42609086480203, 34.523650553401666], [-77.42618166197614, 34.522826349119896], [-77.426188548194, 34.52276384336966], [-77.42619419731585, 34.522707700924094], [-77.42626375457587, 34.52179806541749], [-77.42626280220827, 34.521773730143536], [-77.42626223838269, 34.52174769839113], [-77.42630695976803, 34.521618106383876], [-77.4265552454376, 34.520897023457586], [-77.42689888791105, 34.52070237672889], [-77.42738221840534, 34.52030584160954], [-77.42768335403427, 34.519609565217856], [-77.42792913539233, 34.51924871402397], [-77.42905902893604, 34.51913459703367], [-77.42951527234021, 34.51850878054128], [-77.4304957098096, 34.517846651809755], [-77.43116907946659, 34.517146664062935], [-77.43279319323139, 34.51499097257141], [-77.435923520275, 34.51263858061311], [-77.43598976337337, 34.51257221166351], [-77.44138705966824, 34.51226448857979], [-77.44220818489077, 34.51236684218639], [-77.44366617660181, 34.512330057607514], [-77.44765635908905, 34.51190590731264], [-77.45189474620123, 34.51157491060497], [-77.45295528371511, 34.51146765985247], [-77.45468963994516, 34.5113819888386], [-77.45825801019201, 34.511157066237274], [-77.46059671330548, 34.51104924992261], [-77.46091351055748, 34.51101690754675], [-77.46108637790094, 34.51117201113335], [-77.46106091790053, 34.511236138599365], [-77.46106212512444, 34.51127528867242], [-77.461072022462, 34.51159640842967], [-77.46054418200632, 34.51256092984163], [-77.46032198671722, 34.51329192017503], [-77.46115959606244, 34.51426541693896], [-77.46372075344654, 34.515424168563555], [-77.46423811793923, 34.51578880430792], [-77.4652379581799, 34.51697698864197], [-77.46943399977414, 34.51571388752299], [-77.47008106833272, 34.5156548271861], [-77.47024637181987, 34.51558945665409], [-77.4730235522099, 34.51319374586744], [-77.47359315076885, 34.512608110664196], [-77.47432828632878, 34.51081737936528], [-77.47500352723442, 34.510592036761714], [-77.47542222742065, 34.50994486218623], [-77.4762278997491, 34.50930304671311], [-77.47596391804547, 34.50900740553462], [-77.47649731186424, 34.50889981778697], [-77.47789837820272, 34.50803661800305], [-77.47853182985276, 34.50787826196182], [-77.47888720254505, 34.50778942261112], [-77.48140810100158, 34.50689874346678], [-77.48066503009824, 34.504072725696645], [-77.48127222667209, 34.50280336281812], [-77.48118014374333, 34.50203652703822], [-77.48097087869925, 34.50078087766715], [-77.48088506660233, 34.50008177650545], [-77.48121202426981, 34.499676201687116], [-77.48184029599537, 34.49889680190411], [-77.48143261554532, 34.49740751094908], [-77.48066623206402, 34.49460753051757], [-77.47863789741095, 34.49605048359508], [-77.47928835211442, 34.49729894616171], [-77.47888111725311, 34.49854449046081], [-77.47892002596419, 34.49863132957554], [-77.47880352022989, 34.49878179397378], [-77.47787823274638, 34.49992956734126], [-77.47794399348379, 34.50046531241176], [-77.47800261911435, 34.50128688284465], [-77.47808291989247, 34.50229040554529], [-77.47812539161242, 34.50264409579956], [-77.47771413384915, 34.50350384264381], [-77.47553664978896, 34.504048190341145], [-77.47371862485868, 34.505122918813896], [-77.4731878855635, 34.505283640386345], [-77.47288031005621, 34.50552654688221], [-77.47194634383874, 34.50705671151082], [-77.47177264803565, 34.507726329433424], [-77.47131009722455, 34.50896191169823], [-77.47127568068785, 34.50905218155322], [-77.47125682110041, 34.509097860761436], [-77.47072926677856, 34.510375474456524], [-77.47044101305065, 34.51107763743266], [-77.46932554970181, 34.51222450586261], [-77.46870498750046, 34.51261069913831], [-77.46781417257625, 34.51292975260205], [-77.46692120955191, 34.51328288234234], [-77.46597077314465, 34.513659025112496], [-77.46437017433547, 34.513805214926236], [-77.46311056998519, 34.51324617015939], [-77.46310236504077, 34.512690761658774], [-77.46250007725033, 34.51199928040558], [-77.46249927457114, 34.51197323742779], [-77.46247876431022, 34.51130809303049], [-77.46265612317869, 34.51086136975384], [-77.46269525175514, 34.51064357286116], [-77.4627943784038, 34.51027967617464], [-77.46285744172341, 34.509976291475354], [-77.46292882990963, 34.50980577364397], [-77.4631032538825, 34.50917410493023], [-77.46327287593556, 34.50878482596282], [-77.46346077050765, 34.50865588038769], [-77.4633408124181, 34.5084283367049], [-77.46354727266939, 34.50773005412989], [-77.4636043354771, 34.507312144916796], [-77.46366922634182, 34.50669089788374], [-77.46364726990025, 34.50659059025393], [-77.46369731020148, 34.50642204126482], [-77.46391849855294, 34.50597706276294], [-77.46409579472481, 34.505620388356824], [-77.46453247208397, 34.50467400001323], [-77.46455096369424, 34.50465813232587], [-77.46455482287448, 34.50465529825093], [-77.46455908883559, 34.50464880906051], [-77.46538596198067, 34.50387092440455], [-77.46589654568123, 34.503375369352355], [-77.46518346614099, 34.50276798248096], [-77.46520747523303, 34.50266490696766], [-77.46521586774972, 34.502600297431854], [-77.46521950374212, 34.502327762279165], [-77.46522897035553, 34.5021741889618], [-77.46527337760728, 34.502034217900984], [-77.46529947341124, 34.50199406380795], [-77.46527504102357, 34.501937200769454], [-77.46533192839522, 34.50146864282104], [-77.46543373298428, 34.501325362849634], [-77.46535274068361, 34.50111366584612], [-77.4654195199457, 34.50064913027132], [-77.46508344487599, 34.50015993372394], [-77.46509014893007, 34.499956907494095], [-77.46499530542864, 34.499734576084464], [-77.46452976276414, 34.49925296172418], [-77.46435501450084, 34.498618113373375], [-77.46436836635215, 34.498496319595446], [-77.46335320151857, 34.4978422203549], [-77.46342087021794, 34.49742556941991], [-77.4632425159736, 34.49716109278437], [-77.4624260837529, 34.496850432958865], [-77.46180615287713, 34.49708817786244], [-77.46177370510358, 34.497364309176994], [-77.46086008595265, 34.49771565305422], [-77.46006847925433, 34.49807832152892], [-77.45957412020341, 34.49786971173102], [-77.45879637130788, 34.49761084632432], [-77.45897920781908, 34.497194923359], [-77.45863310904228, 34.49679556984417], [-77.45830307118977, 34.49654710899246], [-77.45806124137104, 34.49674899494649], [-77.4570777372539, 34.49699090796387], [-77.45669892751248, 34.49727527683351], [-77.45651892423905, 34.4974951465569], [-77.45643656130358, 34.4979431944729], [-77.45642232009487, 34.49832899241862], [-77.45652739379142, 34.49884661820797], [-77.4562940070519, 34.499049891222796], [-77.45542466492952, 34.49879058191125], [-77.455305343777, 34.49853419190529], [-77.45483417622592, 34.49863615956419], [-77.45473369424847, 34.498696752963994], [-77.45348870320197, 34.498640668774584], [-77.45343610327068, 34.498689508174934], [-77.45326978195666, 34.499173666214666], [-77.45248814537632, 34.499906867564675], [-77.45243958749947, 34.4999584559185], [-77.45238844636793, 34.49998728602445], [-77.4519372200788, 34.50029373309506], [-77.45067564903812, 34.50125123037516], [-77.45058697793318, 34.50143464216527], [-77.45056380032155, 34.50259659121647], [-77.45056149958349, 34.502711990818085], [-77.45019322352628, 34.50361961346343], [-77.44852381690197, 34.50364248721281], [-77.44837558282137, 34.503160810597855], [-77.44822206018753, 34.50266194080571], [-77.4500553258584, 34.50257072723355], [-77.44844078474941, 34.50212013755195], [-77.44777814381457, 34.502383320844395], [-77.44769748406357, 34.502407072870554], [-77.44720678398646, 34.50242581936327], [-77.446674077338, 34.50250391042464], [-77.44648050824449, 34.50256302142962], [-77.44624851860414, 34.50289122113076], [-77.44553548004185, 34.50363763176919], [-77.44605649016083, 34.503718330564524], [-77.44557926306537, 34.50375421325753], [-77.44545254943255, 34.50372947202205], [-77.44518801346823, 34.504349659147366], [-77.44493985262926, 34.50463170904722], [-77.44493032539401, 34.504736540233694], [-77.44525087488898, 34.50502838449117], [-77.44519505182731, 34.50538111853489], [-77.44604650473477, 34.50590263675083], [-77.4478429577446, 34.50556381949519], [-77.44741069661337, 34.506489321981874], [-77.44936159288861, 34.50790205773591], [-77.44938509562202, 34.507979555196414], [-77.44911106047475, 34.508032912303094], [-77.44653548472263, 34.507691605171416], [-77.44626284993589, 34.50883898598559], [-77.44194518603612, 34.508644040442476], [-77.44134293467145, 34.508404346664776], [-77.43870013481714, 34.507540776423454], [-77.43838843465157, 34.507449724144095], [-77.4382800616534, 34.5074267223011], [-77.43808798390378, 34.50736572984451], [-77.43691709402717, 34.50699392421357], [-77.4364038878636, 34.50684081007269], [-77.43620322058933, 34.506845781432794], [-77.43616755525997, 34.50690420274619], [-77.4356361970565, 34.50723515561517], [-77.43563308512337, 34.50723859004864], [-77.43563052496798, 34.50724049103197], [-77.43557145744309, 34.50727547732752], [-77.43473237147286, 34.50798911470815], [-77.43455823598163, 34.508821339021395], [-77.43342549028299, 34.50934005772365], [-77.43284084282081, 34.510064889038006], [-77.43225907823026, 34.510759275147464], [-77.43190064250473, 34.511164574589756], [-77.43123832064346, 34.51155664945698], [-77.43010238144883, 34.51169723457653], [-77.42966453102623, 34.51174352902807], [-77.42887756328332, 34.51208809540948], [-77.42808777764418, 34.51206423120083], [-77.4275400284397, 34.51243802848023], [-77.42768857570397, 34.512753154591245], [-77.4278322229337, 34.51288058073053], [-77.42779592690039, 34.51371701024558], [-77.42783404196939, 34.513845271941385], [-77.42800197707751, 34.51464866743997], [-77.42800737674582, 34.5146658128265], [-77.42801098033686, 34.514677207456856], [-77.42802866092914, 34.514741412288785], [-77.42840576537247, 34.51558757827492], [-77.42851180660236, 34.516229678534046], [-77.42838648819357, 34.51682165227532], [-77.42797398863203, 34.5172173824162], [-77.42775693389528, 34.517508761888294], [-77.42768613588879, 34.51765040441881], [-77.4274490999186, 34.51800135472463], [-77.42727185644685, 34.518266085099704], [-77.4270092788418, 34.51872765782824], [-77.42634979902601, 34.51967959072477], [-77.42628842983177, 34.519774288626536], [-77.42625597926649, 34.51981596162624], [-77.42623645588085, 34.519886640776676], [-77.42560893903854, 34.520888891132635], [-77.42541691366331, 34.52133688846054], [-77.425402751968, 34.5214083929896], [-77.42540569767081, 34.52148241335782], [-77.42541466333077, 34.521896356697], [-77.42543191797947, 34.52233725431312], [-77.42543371916014, 34.52238329213039], [-77.42543319578895, 34.52242762195865], [-77.42538771425383, 34.52287962931175], [-77.4253428307977, 34.523287033514166], [-77.4253351543704, 34.523376918745925], [-77.42532904817494, 34.52347261460907], [-77.4252994062216, 34.52387177311148], [-77.42526971749254, 34.52424457615065], [-77.4252619995347, 34.52436687137425], [-77.4252538734217, 34.524495646534085], [-77.42523385388196, 34.52472368501928], [-77.42522130393907, 34.52486244298571], [-77.425200907794, 34.52501881792456], [-77.42517816856015, 34.525193160881635], [-77.42515363830658, 34.52536191371961], [-77.42511820680053, 34.52556452566232], [-77.42506990132684, 34.525863706397125], [-77.42503586431914, 34.52611707989346], [-77.42499114002914, 34.526364782504785], [-77.42501021106162, 34.52661243084644], [-77.42499772726623, 34.52685351668559], [-77.42503841494347, 34.52711139329571], [-77.4250907430976, 34.52732975827317], [-77.42509443330152, 34.52751464609548], [-77.42510640780759, 34.52781717972863], [-77.4250414799616, 34.52810595614042], [-77.42504289471205, 34.52831605143416], [-77.42503666209018, 34.52852448503522], [-77.42503384723085, 34.52856220390114], [-77.4250762587134, 34.528619393899305], [-77.42517838287353, 34.52878615171485], [-77.4253589718364, 34.528993804933705], [-77.42556857336132, 34.529087386514064], [-77.42613109280559, 34.529576609861465], [-77.42618047852679, 34.52958966276854], [-77.42621203935393, 34.52961608678303], [-77.42621710871678, 34.529670302119506], [-77.42612681590134, 34.52977015979536], [-77.42603865219485, 34.530080119383], [-77.42600676111644, 34.530135453880725], [-77.42581509435453, 34.53046802052509], [-77.42546443019107, 34.53070354697758], [-77.4252891312218, 34.53120550946525], [-77.4235171115874, 34.53160824050404], [-77.42294646029217, 34.53159203980294], [-77.42164058114568, 34.53125630575584], [-77.42147841615606, 34.53122123893827], [-77.4213851466957, 34.531197615364384], [-77.42096278653818, 34.53086458691544], [-77.4210395021567, 34.5305878483838], [-77.42108169992468, 34.530357713428565], [-77.42135505294536, 34.5293826869104], [-77.42133464115538, 34.52934178432592], [-77.42139555100863, 34.52931343302962], [-77.4214275876401, 34.52928184318607], [-77.4216591332017, 34.52880519654904], [-77.42171439737984, 34.528475289758106], [-77.42171887772446, 34.52830687508492], [-77.42172338317505, 34.528137517312906], [-77.42176344049771, 34.52781074797212], [-77.42179559968933, 34.52759977521184], [-77.42180968122551, 34.527528502981895], [-77.42190238989156, 34.5273009776202], [-77.42225346436858, 34.52676975045969], [-77.42225951874474, 34.52675967003919], [-77.42226123596103, 34.52675485879997], [-77.42297386381695, 34.52616672239788], [-77.4230004907284, 34.526121033704115], [-77.42307135705217, 34.525949522576866], [-77.42320147884558, 34.52564413247576], [-77.42326987489722, 34.52551638481819], [-77.42339513164407, 34.52531973561994], [-77.42353633276765, 34.5251060386167], [-77.42360354310291, 34.52478046823223], [-77.42370054682588, 34.52459261243043], [-77.42370088617638, 34.52447524201129], [-77.42399105114943, 34.52406092607261], [-77.42364946767995, 34.523779622633676], [-77.4235894668151, 34.5236292964109], [-77.42334241877823, 34.52330794608322], [-77.42327877416439, 34.523184524577175], [-77.42323847719328, 34.5231250955985], [-77.42313614424455, 34.52302271754205], [-77.4227130597312, 34.522557299321846], [-77.42247180599115, 34.52232180423027], [-77.42219346516649, 34.52198509389751], [-77.42169842915209, 34.521515860293434], [-77.42164712326259, 34.52146164552962], [-77.42163715335069, 34.5214407210804], [-77.42160189553917, 34.52141398354005], [-77.4210614339452, 34.52091105847636], [-77.42047815424485, 34.520922765860796], [-77.42003938336649, 34.521082535084545], [-77.4191179349053, 34.5214180491491], [-77.4184706759601, 34.52103072528133], [-77.41804208160065, 34.52172493243327], [-77.41729957253672, 34.52209000461944], [-77.41703450961688, 34.52222830847104], [-77.41687281545141, 34.52229144833155], [-77.41648863259091, 34.52245953688674], [-77.41645823416209, 34.52246777944], [-77.41608570393863, 34.522389108177364], [-77.41602989538777, 34.522273485006046], [-77.41604320860804, 34.52224302569515], [-77.41609093664005, 34.52215362149499], [-77.4161454880045, 34.52204445885436], [-77.41622433532451, 34.522000546508394], [-77.41633853730507, 34.52189001348603], [-77.41680411385218, 34.52167192287214], [-77.41688747124877, 34.5216316181641], [-77.4173848021853, 34.52140545006898], [-77.41837472608412, 34.52095525909888], [-77.41847349085303, 34.52090388743492], [-77.41949863513406, 34.520446669099705], [-77.42006068397933, 34.52012193019938], [-77.4205193086033, 34.51966592371796], [-77.4208708320567, 34.51912741693916], [-77.42087123109995, 34.51912319360605], [-77.42084472299948, 34.51863951526004], [-77.4208284942564, 34.518189572954235], [-77.42081119587438, 34.51810532597314], [-77.42061780727032, 34.517692944806804], [-77.4206271635343, 34.51737615955168], [-77.420527694156, 34.51697442007048], [-77.42043446026713, 34.51674007705833], [-77.42043923024211, 34.516552592653085], [-77.4201453074161, 34.516305704999226], [-77.4198378975156, 34.51604237207283], [-77.41974591607061, 34.515860232927324], [-77.41937538898756, 34.5156311296485], [-77.4192162566216, 34.515547544905615], [-77.41891316046762, 34.51549091356296], [-77.41859482434815, 34.51543679906875], [-77.41805582024412, 34.51546108950972], [-77.41709198440215, 34.51530435173528], [-77.41702682426245, 34.51535789258392], [-77.41690724444715, 34.51536563664112], [-77.4165905958721, 34.515336898174816], [-77.41545545042422, 34.5154307984788], [-77.41530854205789, 34.515430510029674], [-77.41390984648453, 34.51570539938137], [-77.41387932563532, 34.51571702835944], [-77.41386772160594, 34.51572321272672], [-77.41385936342516, 34.515731574223594], [-77.41385723426542, 34.51574527237365], [-77.41351169972702, 34.51654328287556], [-77.41306921198395, 34.516825101448134], [-77.41267498937974, 34.517129667831725], [-77.41227292117705, 34.51736243206041], [-77.41177120362295, 34.517326151515036], [-77.4114887564977, 34.517329530058106], [-77.41131855074504, 34.517463385993004], [-77.41069402695055, 34.517770665094595], [-77.4102820929335, 34.51795265702417], [-77.40972831699025, 34.51828711764658], [-77.40910422173744, 34.518667284244216], [-77.40838925870776, 34.51901875392286], [-77.40822306662075, 34.51904895636079], [-77.40752730677839, 34.518984928197305], [-77.40681466879963, 34.51915024813194], [-77.40595307687326, 34.519181791897864], [-77.40503813083768, 34.51937580118723], [-77.4043713957048, 34.519711457013486], [-77.40401777281029, 34.519872885802044], [-77.40401876608581, 34.52009109702612], [-77.40322347994497, 34.52047988641131], [-77.40277462436046, 34.52091440512835], [-77.40252044644161, 34.5211312618844], [-77.4012976474642, 34.52146335332058], [-77.40122108822436, 34.52149267915883], [-77.40119183773734, 34.52149093690393], [-77.40115752892581, 34.521504793179844], [-77.399770221372, 34.52178041449257], [-77.39961334095342, 34.521875075963344], [-77.39928980479476, 34.52175322528494], [-77.39936715506134, 34.52158441631781], [-77.39931556324058, 34.520968603571006], [-77.39939701512135, 34.52075840429724], [-77.39934549679084, 34.52058064658154], [-77.39945235836977, 34.52026074220496], [-77.39916303506638, 34.5201183252239], [-77.3982118676584, 34.51995014684202], [-77.39818865481546, 34.51989068691327], [-77.39808736108698, 34.519917870448054], [-77.39801656643012, 34.519934406207625], [-77.39783227599762, 34.52000494146373], [-77.3965019003428, 34.52061264376364], [-77.3961447902239, 34.52101065925052], [-77.39559250451953, 34.52130757374172], [-77.3949075849726, 34.52170016703666], [-77.39433444371852, 34.52211678825008], [-77.39387314993446, 34.52219409506709], [-77.39332829735868, 34.522117707584215], [-77.39283698375206, 34.522381802699115], [-77.39251207921083, 34.5227314705819], [-77.39212610869731, 34.52302935679489], [-77.39172786445417, 34.523473770522344], [-77.39016234759085, 34.52404985718058], [-77.39015708860329, 34.52405830529938], [-77.3901448196335, 34.52405575190291], [-77.39013525846678, 34.52405967473466], [-77.3885593080662, 34.52474608735502], [-77.38798986667257, 34.52471888199838], [-77.387774563098, 34.52473568401938], [-77.38720061935689, 34.52460697334664], [-77.38699267330041, 34.52459875752513], [-77.38687255702102, 34.524599385632634], [-77.38588391139022, 34.524959855308005], [-77.38540657584298, 34.525313286110006], [-77.38498472134971, 34.525515810309145], [-77.38464258488604, 34.525825451755836], [-77.38420402196554, 34.52612940446221], [-77.3838101507254, 34.52648342484708], [-77.38351221130398, 34.5267862339115], [-77.38323476119507, 34.52700782341721], [-77.38313257409693, 34.52743183997491], [-77.38308792983118, 34.52751866406782], [-77.38309528619493, 34.52757677321329], [-77.38301665936004, 34.528018605211116], [-77.38298915280919, 34.528075297113844], [-77.38286075034279, 34.52845603030988], [-77.38284591084039, 34.528532892192395], [-77.38258047332405, 34.52879029784522], [-77.38254312689357, 34.528798205255185], [-77.38218619682672, 34.5288683649443], [-77.38155269381642, 34.528813115793845], [-77.38130518599675, 34.528815693501855], [-77.38061167635028, 34.52906607408948], [-77.3799492582464, 34.529026511850745], [-77.37940535559633, 34.529288656066925], [-77.37903287701272, 34.52945219979861], [-77.37898000438004, 34.529548387816725], [-77.37893859041654, 34.52958597843431], [-77.37886901633493, 34.5296947873078], [-77.37860797100238, 34.53036077674675], [-77.37865310639194, 34.53060645730263], [-77.37863066867754, 34.5308409324352], [-77.37885525455935, 34.531556633043614], [-77.37886491851228, 34.531629229787924], [-77.3788386442177, 34.53204868821464], [-77.37896919753712, 34.53226230663263], [-77.37918257073537, 34.53235437300438], [-77.38007491452709, 34.532067697094746], [-77.38054335443502, 34.5320835427065], [-77.38085320096624, 34.53205502128977], [-77.38132936925908, 34.53204101718582], [-77.38181484193095, 34.532109214359586], [-77.38199846917404, 34.53215347056618], [-77.38211147658863, 34.532171159777775], [-77.38260181980314, 34.53230343676579], [-77.3828917619519, 34.53238196117528], [-77.3829812580445, 34.532374949484264], [-77.38367613406643, 34.532412124555144], [-77.38429843566907, 34.53234319274497], [-77.38524833907307, 34.53231923845154], [-77.386339996793, 34.532435919877955], [-77.38640698834587, 34.532677844084425], [-77.38681252758333, 34.53258136052992], [-77.38725179328529, 34.532578343385126], [-77.38770490585347, 34.532660647609696], [-77.38773235332502, 34.53272474631148], [-77.38805940747066, 34.532875045362616], [-77.3880683542795, 34.53292111049781], [-77.38816079903654, 34.53302041668613], [-77.38817137698169, 34.53303168409846], [-77.38827981445084, 34.533078295946126], [-77.38837052139385, 34.53311858286693], [-77.3883767666279, 34.53311757241116], [-77.38863951469176, 34.53300489857246], [-77.38876870286263, 34.53286784140243], [-77.38880301988614, 34.53283608860158], [-77.38891384250952, 34.53271082188598], [-77.38893251033407, 34.532551616599946], [-77.3889786489152, 34.532424849728294], [-77.38917226398362, 34.53237830289635], [-77.3899115008494, 34.53195523690077], [-77.38996743616819, 34.53192903122667], [-77.3901134223616, 34.53198340660706], [-77.3904657874507, 34.53201831725519], [-77.39075377827831, 34.53187147156876], [-77.39081101724508, 34.53179093951836], [-77.39106054519638, 34.53156785775451], [-77.39113913705486, 34.5314889244116], [-77.3915030438205, 34.531201425894075], [-77.39155463959803, 34.53116884413754], [-77.3919359495427, 34.530883127212526], [-77.39197509589188, 34.530875177911064], [-77.39234591266046, 34.530891738865336], [-77.39252709460911, 34.53093997685658], [-77.39273570669681, 34.53101280050305], [-77.3927619005495, 34.53101978592057], [-77.3929840980163, 34.531076726168365], [-77.39312720009684, 34.53105835312175], [-77.39324174676659, 34.531021476770725], [-77.39390234588225, 34.530864112558795], [-77.39391668624755, 34.53086041346114], [-77.39392784522596, 34.530858473163704], [-77.39405909087267, 34.53083260002989], [-77.39470524926271, 34.530703367638374], [-77.3953332141493, 34.53054858794796], [-77.39549625567109, 34.530437400589506], [-77.39594025431128, 34.53007145043404], [-77.39610299374732, 34.529929639803754], [-77.39629696053977, 34.529739272427854], [-77.3970776416104, 34.52941030983357], [-77.39711174329251, 34.52939890243653], [-77.3978793683979, 34.529188165257224], [-77.39828785864927, 34.52900551879601], [-77.39916973269894, 34.528805768475536], [-77.39945969141247, 34.52872906402859], [-77.39963564883803, 34.528667614586], [-77.3999438778103, 34.5285142202973], [-77.40025316180423, 34.528351528735776], [-77.4008209595847, 34.528250702184984], [-77.40104282745288, 34.528143527948345], [-77.40133223017916, 34.52813340646752], [-77.4018269993207, 34.52818071351402], [-77.40195601346761, 34.52822373337884], [-77.40182173949083, 34.52841564513084], [-77.4015721593832, 34.52861593917388], [-77.40171103289714, 34.528748776329884], [-77.40157603394, 34.52891456364311], [-77.40128946908177, 34.52929931142775], [-77.4011512246527, 34.52940450294488], [-77.40100908439535, 34.52965004404577], [-77.40087782032316, 34.529848413628336], [-77.40082182639863, 34.530237572853494], [-77.40062625283846, 34.53037440245828], [-77.39993893919063, 34.53080153935083], [-77.39981619880122, 34.530981014781645], [-77.39993821422932, 34.53112114300829], [-77.39998667342508, 34.53132136299118], [-77.40003887704894, 34.53143854310734], [-77.40006490857164, 34.53150809114437], [-77.39999642883407, 34.531822720345545], [-77.3998163135279, 34.531960343950274], [-77.39977932359893, 34.5319806076974], [-77.39942661983316, 34.53204229540317], [-77.39938521685397, 34.532051361207905], [-77.39931109444936, 34.532033272859294], [-77.39908605914424, 34.53187671362376], [-77.39901825367487, 34.53183070799026], [-77.39901580470509, 34.53181988435938], [-77.39877068902203, 34.531621606576394], [-77.39861201950029, 34.53152317058044], [-77.39829518477468, 34.53139992121562], [-77.39782871346647, 34.53144597786065], [-77.39751012675535, 34.53160709009964], [-77.39703436229048, 34.53186093882334], [-77.39702711736005, 34.531868861912606], [-77.39701296987609, 34.53187531188216], [-77.39653445021743, 34.532125935534225], [-77.39623984479303, 34.53228294277086], [-77.3956759534437, 34.532418106241416], [-77.39545071842777, 34.532464577319004], [-77.39530415249762, 34.53252097265272], [-77.39465583686811, 34.53290214121267], [-77.39433418875785, 34.53304259102311], [-77.39348997080099, 34.533363068261814], [-77.39332725452786, 34.533546231450174], [-77.39307900476219, 34.5339120397587], [-77.39328987345655, 34.53422538668892], [-77.39343405626622, 34.53435047536503], [-77.39317586782575, 34.534465889140705], [-77.39329504682243, 34.53461536868327], [-77.39333874015014, 34.534671271509986], [-77.39333786793125, 34.5348540241192], [-77.39335564331309, 34.53504993980113], [-77.39330094132805, 34.53518279558636], [-77.393428367528, 34.53533063350763], [-77.39349271350275, 34.53552044456099], [-77.39352770691218, 34.53563023873957], [-77.39317960783288, 34.535757587570515], [-77.39301943222179, 34.53584990825333], [-77.39295145061902, 34.535846671653175], [-77.39248887900965, 34.535797839195], [-77.39223642713038, 34.535757625215695], [-77.3916483680141, 34.535709678158966], [-77.39145146124604, 34.53575250960558], [-77.39104339421405, 34.53592681860827], [-77.3906653035575, 34.53580030400699], [-77.39020564731048, 34.53600141021428], [-77.39039859435057, 34.53641515566914], [-77.39041683681901, 34.536744478288945], [-77.39051733565032, 34.536808113330345], [-77.39041804215924, 34.53709797944647], [-77.39020191448344, 34.53726515109631], [-77.3898421769726, 34.537489043480534], [-77.38956390493996, 34.537675926838695], [-77.38925215523102, 34.53789183119825], [-77.38904455353833, 34.5380447795373], [-77.38879308426526, 34.53829438940102], [-77.38865033432512, 34.53846831270567], [-77.38864223547743, 34.53847801455076], [-77.38842220271594, 34.538610686140856], [-77.38823951558294, 34.538928888396356], [-77.3882074392593, 34.53900290051509], [-77.38819598369842, 34.53902351772124], [-77.38818654261595, 34.53905612858257], [-77.38795775624183, 34.539547545772855], [-77.38798596535814, 34.5396908964246], [-77.38795373907305, 34.539872831108596], [-77.38787454461945, 34.54004921364867], [-77.38793044915406, 34.54021581045604], [-77.38789613051085, 34.54053576524295], [-77.38796380956883, 34.54067342307692], [-77.38798933811675, 34.54088344153392], [-77.38800635104545, 34.541009532439745], [-77.38801632028621, 34.54111653302231], [-77.38810321082543, 34.541435463487595], [-77.38807638115358, 34.54148909621923], [-77.38802296558924, 34.541893091919256], [-77.38796319450546, 34.54199508678012], [-77.38802490460691, 34.54207578147438], [-77.38816738498838, 34.542128105268894], [-77.38871987329034, 34.54251526166603], [-77.3889428354475, 34.542558167873], [-77.38942018930645, 34.54276425188638], [-77.38950564841872, 34.54288597829297], [-77.3897211449752, 34.54286165576118], [-77.39008316357388, 34.54289485807941], [-77.3901291059567, 34.54289673189127], [-77.39050594331758, 34.542877213832384], [-77.39081357104048, 34.5428612789175], [-77.39109048239429, 34.54338464139059], [-77.39067290985886, 34.54356287092418], [-77.39048917785492, 34.5436217621353], [-77.38995863029044, 34.54382759063708], [-77.38969709333847, 34.543929336116456], [-77.38946428710636, 34.54408387043598], [-77.38911511237866, 34.544277257212116], [-77.38898658417892, 34.544348240100035], [-77.38890193020954, 34.54437324237994], [-77.38876674869346, 34.54441127803574], [-77.38811333377892, 34.544525498213076], [-77.38765288656978, 34.54448817093892], [-77.3874337058933, 34.54445495874593], [-77.38733050779535, 34.54442176977753], [-77.38712576767361, 34.54443672384023], [-77.38720910511596, 34.54462503175689], [-77.38710085819247, 34.54505745634162], [-77.38694839896465, 34.545343780758245], [-77.38651910687975, 34.545584485665586], [-77.38601850781077, 34.5455265642811], [-77.38573597391768, 34.54549396262374], [-77.38521836474126, 34.54549584314833], [-77.38494972768603, 34.545541356133825], [-77.38464488382462, 34.54560092630117], [-77.38416285967975, 34.54561621230361], [-77.38368906463567, 34.54574549902222], [-77.38337263124127, 34.54583966826322], [-77.38317075491041, 34.54575136850258], [-77.3829945199484, 34.54564964049563], [-77.38279027791481, 34.54555659333268], [-77.38260074086244, 34.54525190396859], [-77.38258140815498, 34.545231885676884], [-77.3825639888416, 34.545222058625725], [-77.38251874223235, 34.54517638036655], [-77.38213749469875, 34.544793892518626], [-77.38207934299999, 34.544646317934486], [-77.38227746454501, 34.54428404869158], [-77.38236058112372, 34.544106132989114], [-77.3824718372887, 34.54376636027882], [-77.38256690121901, 34.54331145813603], [-77.38260426287225, 34.5432313064972], [-77.38264772524788, 34.54317400645924], [-77.38286369556964, 34.54286080626997], [-77.38298452842346, 34.54271310842471], [-77.38314765624563, 34.54250223420203], [-77.38329748071583, 34.542178318734884], [-77.38335512871167, 34.5421064671772], [-77.38346208123582, 34.541882081584234], [-77.3835368773111, 34.54169819017271], [-77.38357829775403, 34.54164816174539], [-77.38366193387476, 34.54151661114544], [-77.38395865957978, 34.54110364816354], [-77.38392651306728, 34.54089434942293], [-77.38391236277398, 34.54084413016544], [-77.38371552499852, 34.54064904737596], [-77.3836441633457, 34.54056435458196], [-77.38349513405069, 34.540419738638306], [-77.38311471218259, 34.5402460247104], [-77.38290501244997, 34.54015832862001], [-77.38271755064909, 34.54008602139655], [-77.38231111217266, 34.53987224103473], [-77.38219909651963, 34.53972713976044], [-77.3820676982029, 34.53949368925926], [-77.38202268099492, 34.53942417005522], [-77.38194922795158, 34.53934319188511], [-77.38170180925442, 34.53913798081129], [-77.38136281367203, 34.53915086980855], [-77.38116682121537, 34.539223292634176], [-77.38076548904954, 34.53935702838217], [-77.38037554704428, 34.53949513615892], [-77.37980116332614, 34.53961139785221], [-77.3788026882088, 34.539610473917826], [-77.3785187706092, 34.53961668272365], [-77.37835949128119, 34.53946266244031], [-77.378022831184, 34.53937811119897], [-77.37770881412128, 34.53926425914663], [-77.37755795903176, 34.5392869952355], [-77.37723434282277, 34.53952652427118], [-77.3771316955646, 34.53957634554132], [-77.37691346308648, 34.539671117268966], [-77.37684711146196, 34.5399166662565], [-77.37669249845393, 34.54019262772566], [-77.3767526326846, 34.54038533910505], [-77.37681804465785, 34.5406641888366], [-77.37709324466188, 34.54069597607258], [-77.37719920698963, 34.54107585822745], [-77.37721217190442, 34.54109703465061], [-77.3775219237354, 34.541337081228825], [-77.37780938812755, 34.541500602276166], [-77.37747365122749, 34.54172940191994], [-77.37742275872804, 34.54189499164473], [-77.37755649922889, 34.54202671611261], [-77.37717391370529, 34.54219119119535], [-77.37704481233843, 34.54218113288293], [-77.37647025813462, 34.54223473626297], [-77.37638760134685, 34.54224244763621], [-77.37620899911954, 34.54233108567557], [-77.37592072357977, 34.54246413480066], [-77.37579690646288, 34.54264306967173], [-77.37573067522982, 34.54277955797742], [-77.37569734614992, 34.542852172949466], [-77.3755855568703, 34.5429867978738], [-77.37524771326514, 34.543626851453155], [-77.37507537758154, 34.54385332311619], [-77.37494284793593, 34.54397525754752], [-77.37483764758557, 34.544132416013895], [-77.37480987275292, 34.54415892461099], [-77.37477016217443, 34.544318486842556], [-77.37475458414384, 34.54438037777247], [-77.374747119988, 34.54439029209687], [-77.37474945483254, 34.5444016911529], [-77.37462117844925, 34.5448121806484], [-77.37459018724712, 34.544902567112814], [-77.3744528594755, 34.54510904314392], [-77.37439912878983, 34.545200868843686], [-77.37429550184618, 34.54522816700339], [-77.37396320936209, 34.545277420855186], [-77.37357484451502, 34.545296633915775], [-77.37357016591501, 34.54529737729737], [-77.37355257315072, 34.54530776048551], [-77.37317335357578, 34.54548317501519], [-77.37303126983832, 34.545528932527816], [-77.37302802511115, 34.54561735824109], [-77.37286568786143, 34.54582773447452], [-77.37255549893706, 34.546175108927784], [-77.3724964718584, 34.546262197052855], [-77.37235827915418, 34.5467980611053], [-77.37162080551974, 34.54630979761896], [-77.37127936569348, 34.54606293671298], [-77.37127812372994, 34.54566957603811], [-77.37130162296742, 34.54537648257561], [-77.37138803703822, 34.54522634037514], [-77.3714103664056, 34.54499816028546], [-77.37121161376177, 34.54489979747445], [-77.3708347267808, 34.54473942527759], [-77.37020135242331, 34.54494774289687], [-77.36994352329539, 34.54502038516101], [-77.3692531518204, 34.545232192599], [-77.36864643365304, 34.54538283094529], [-77.36767606057198, 34.54552733346988], [-77.3669473150254, 34.54554970251991], [-77.3668850074423, 34.545784674811145], [-77.36672711283015, 34.54603556160894], [-77.36618149040468, 34.54617058093811], [-77.36608931605754, 34.54624514133542], [-77.3657807549764, 34.54647235036213], [-77.36579056947369, 34.54666012510838], [-77.36568569725523, 34.546728284579274], [-77.36542961545183, 34.54679824706523], [-77.36529028708028, 34.54685148172728], [-77.36506907113963, 34.54690129454826], [-77.36489552736649, 34.54694612272402], [-77.36469921374311, 34.54693963946537], [-77.36450349739441, 34.54692113839287], [-77.36444269151635, 34.546892601015884], [-77.36438710117142, 34.5468622833393], [-77.36425186903212, 34.54672201109609], [-77.36417110524818, 34.546648568995955], [-77.36415478396555, 34.546627729428536], [-77.36403147307526, 34.54642385485895], [-77.36395890205935, 34.546293207717255], [-77.36387073859632, 34.546202181087395], [-77.36384682313505, 34.54613664807721], [-77.36373695275111, 34.54610421146744], [-77.36367739677078, 34.5462300284637], [-77.36361133641253, 34.546410393921605], [-77.36358988835795, 34.546487457441174], [-77.36352509651849, 34.546621535579874], [-77.36349057681187, 34.546746586344696], [-77.36342367169132, 34.54681581995331], [-77.36332602679528, 34.54690666572246], [-77.36315575368107, 34.54703963495568], [-77.36309444526123, 34.54715237626377], [-77.36292253803961, 34.547383254828304], [-77.36279373499576, 34.54750280649481], [-77.36255791502558, 34.54761538649006], [-77.36224428506783, 34.54773222387429], [-77.36212248430687, 34.548032896864676], [-77.36208395301125, 34.54815095017596], [-77.3620837920213, 34.54817331849943], [-77.36208535423314, 34.54819395187383], [-77.36211259450013, 34.54846560941944], [-77.36213147326589, 34.54864181724013], [-77.36216093942406, 34.54865185746231], [-77.36213409951671, 34.548672075691755], [-77.36217122346332, 34.549094502813084], [-77.36218387355237, 34.54913820412633], [-77.36224372988579, 34.549222139331825], [-77.36237784237454, 34.54942090125374], [-77.3626665670786, 34.54955833764465], [-77.36270231297276, 34.54965810900349], [-77.36286437076146, 34.54992932555937], [-77.36293376942982, 34.550009505596655], [-77.36285766835661, 34.5502227031867], [-77.36277005724345, 34.55047164753427], [-77.36274786159638, 34.55052592952489], [-77.3627385484708, 34.550596228677264], [-77.3625608392463, 34.55104251320154], [-77.36245331838785, 34.55131101229111], [-77.36242276049268, 34.55155204806407], [-77.36232402194892, 34.551744840148395], [-77.36229395879755, 34.551898235356944], [-77.3622576668751, 34.55206547359647], [-77.36225087362705, 34.55217222708309], [-77.36224744895269, 34.55218935759691], [-77.36225794074544, 34.552209420678125], [-77.36229911395287, 34.552304329490795], [-77.36233763522296, 34.552347952154385], [-77.36278143114966, 34.55247969422086], [-77.36279604110194, 34.552483807862195], [-77.36280595897452, 34.552486146169485], [-77.3628391314535, 34.552492154888654], [-77.36358738053809, 34.55265394788067], [-77.3638184310771, 34.552675614303105], [-77.36434734826527, 34.55272912050016], [-77.36437086687941, 34.55273141372458], [-77.3643812197273, 34.55273246929801], [-77.36443172517829, 34.55273166560346], [-77.36476338674618, 34.552736130647716], [-77.3650960656611, 34.55267424119611], [-77.36515751549078, 34.552670332696124], [-77.3652455222668, 34.55266931490295], [-77.36594976064387, 34.55236380336069], [-77.36654052932332, 34.55230582106387], [-77.36689006991875, 34.5522820393453], [-77.36698037458167, 34.55236455782426], [-77.36751418945465, 34.5526302506007], [-77.36762239932888, 34.552693352132145], [-77.36763977937817, 34.55275922096775], [-77.36770469797736, 34.5528720986251], [-77.36797349063158, 34.55320079997533], [-77.36811670973663, 34.55328481440131], [-77.3682831319489, 34.55334624255826], [-77.36852756428969, 34.55345664780812], [-77.36867147532111, 34.553534434574715], [-77.36873148660908, 34.55358125577789], [-77.36890608748757, 34.55372635880431], [-77.3690639630162, 34.553935994028066], [-77.36979446119932, 34.5542772320351], [-77.36982587197392, 34.55430045400836], [-77.3698516093641, 34.554316311978866], [-77.3702415552379, 34.55464150003082], [-77.37025129655785, 34.55464234943188], [-77.37063930004989, 34.55460268887768], [-77.37097402668024, 34.554595624967945], [-77.37142715249706, 34.55448448968272], [-77.37174230822185, 34.55433620751663], [-77.371821124711, 34.55430260999435], [-77.37196843907938, 34.55422981074235], [-77.37221509001526, 34.55413455123136], [-77.37248462429787, 34.553889622333216], [-77.37274019682576, 34.55356942516181], [-77.37339662846068, 34.55290907999417], [-77.37350851422126, 34.55271476573185], [-77.3738060123188, 34.552198078122004], [-77.37527643157671, 34.55263817817227], [-77.37532458511669, 34.552676730207445], [-77.37536676914722, 34.552742924635105], [-77.3760972410511, 34.55421812644663], [-77.3763780340337, 34.554785180274024], [-77.37682338270812, 34.555684521010996], [-77.37688217487113, 34.55580324756933], [-77.37672998375545, 34.556052919067135], [-77.3762905434927, 34.5568856850086], [-77.37615319716541, 34.55685545841781], [-77.3760773503672, 34.55685011844358], [-77.37581445085527, 34.55680625818535], [-77.3757593036316, 34.55679705781838], [-77.37546595114512, 34.55674811613928], [-77.37536541310745, 34.55673134265866], [-77.37528209102629, 34.55679319792441], [-77.37525876989666, 34.556886341389855], [-77.37523909811273, 34.55702521145788], [-77.3751831996691, 34.55732179400344], [-77.3753651370278, 34.55754742156654], [-77.37543549542822, 34.55763413255141], [-77.37545980116589, 34.55770649335301], [-77.37557465333448, 34.55791589003729], [-77.37568463225956, 34.55809865332623], [-77.37571139163661, 34.558145951043045], [-77.37575881885174, 34.55825165763824], [-77.3758687527318, 34.55849668019695], [-77.37575864798697, 34.55876541170795], [-77.37571568936383, 34.55889704852878], [-77.37566277379439, 34.55895092727121], [-77.37536457560975, 34.559211412295426], [-77.37524465213966, 34.55930653005548], [-77.37503952629325, 34.5594653071797], [-77.37497054698223, 34.559517030432154], [-77.37472685430649, 34.55967233987148], [-77.37457650279649, 34.55985945765737], [-77.37421212135017, 34.560041015008004], [-77.37418248884262, 34.56010607057726], [-77.3739284537616, 34.56032368524614], [-77.37378843502051, 34.56045852560385], [-77.37373646802523, 34.56044619293742], [-77.37374206478889, 34.56050139902349], [-77.37378839371459, 34.56057499444262], [-77.37393799491582, 34.56116083087471], [-77.37393953970984, 34.56132206499737], [-77.37418198064657, 34.561558874729215], [-77.37422876582346, 34.561654490325566], [-77.37429021626053, 34.561696093603175], [-77.37445663318516, 34.56180057881697], [-77.37457581713156, 34.56184635011027], [-77.37474082428967, 34.5618778745618], [-77.37481713410241, 34.56188025239604], [-77.3749697412494, 34.561883655614665], [-77.37528067459478, 34.56188847009261], [-77.37536367671999, 34.56188787709803], [-77.3754284200767, 34.56188685679146], [-77.37575761342273, 34.56188824799766], [-77.37588784879588, 34.561890423904515], [-77.37611130248703, 34.56190159257733], [-77.37615154768238, 34.561895929432644], [-77.37619652026174, 34.561894407847824], [-77.37648946744085, 34.5618641033012], [-77.37654549628445, 34.56185887808821], [-77.37685023693301, 34.56184785949586], [-77.37693943406038, 34.561854741996115], [-77.37707472106611, 34.56186518040364], [-77.37733339691276, 34.56176966969471], [-77.37749326913314, 34.5616590486357], [-77.37762112697921, 34.56152607657112], [-77.3777274548905, 34.561371866681064], [-77.37801189960247, 34.56104162456262], [-77.37830028495388, 34.560693605257256], [-77.37836773486153, 34.56052454567076], [-77.37851562356853, 34.56036172499841], [-77.37880742094782, 34.5600857823711], [-77.37908305229712, 34.55996934451007], [-77.37930357905104, 34.56002412672382], [-77.37997324532434, 34.56032516946401], [-77.38009137318382, 34.5602398835021], [-77.38038608206075, 34.56007536765185], [-77.38018052498083, 34.56042257954847], [-77.38064506048549, 34.56060788654246], [-77.38087909765582, 34.56072810386148], [-77.38107012523952, 34.56093752345466], [-77.38123543643214, 34.56111963580845], [-77.38145070081336, 34.56132150979854], [-77.38156549635187, 34.56181213667023], [-77.38157626049701, 34.56191963218939], [-77.38154377728563, 34.56205670077666], [-77.38142841115732, 34.5623655113625], [-77.38141586053578, 34.56252176854858], [-77.3814424542205, 34.562604919355806], [-77.38158605109054, 34.56276735075523], [-77.38162941488645, 34.56280098136117], [-77.38166641413088, 34.56282467738998], [-77.38183154734168, 34.56290995324886], [-77.38206030018513, 34.56303723952146], [-77.38211292773074, 34.56305923446085], [-77.38217461752613, 34.56310706587019], [-77.38245418275466, 34.56327169777373], [-77.38257870826382, 34.5633391502694], [-77.38279364832009, 34.563442386050994], [-77.38296655024669, 34.563714274547436], [-77.38324194157795, 34.563794477377925], [-77.3837774053815, 34.56387765842831], [-77.384029815057, 34.56385987066762], [-77.38430761930162, 34.56377385862247], [-77.38466782405173, 34.5640213027514], [-77.38476233493355, 34.56406729907427], [-77.38481763318696, 34.56418101614575], [-77.38502592082763, 34.563969669578654], [-77.385254613691, 34.563558363386235], [-77.38525878944236, 34.5635115258861], [-77.38560571893606, 34.56325980262673], [-77.38569563357001, 34.56312084201324], [-77.3859888408157, 34.56299340905126], [-77.38599971292514, 34.563004677488934], [-77.38605346907292, 34.56297236983142], [-77.38634625316084, 34.562879037769875], [-77.38639367989525, 34.56287131751597], [-77.3864399195607, 34.56286680942547], [-77.38678763884167, 34.562771827492746], [-77.38686327800015, 34.56277407269586], [-77.38698461345177, 34.56274504857748], [-77.38715261946078, 34.562782660912944], [-77.38718157489711, 34.562785882056055], [-77.38720323620855, 34.562783223904596], [-77.3872374032144, 34.5628016417524], [-77.3874765786753, 34.56287375949265], [-77.38757546084031, 34.56306714698738], [-77.3876584657744, 34.56307602733924], [-77.38768341912086, 34.563278283276006], [-77.38732878888395, 34.563637598558735], [-77.38725741133024, 34.56372981934124], [-77.387260348047, 34.564411371287235], [-77.38726797158617, 34.56449550480207], [-77.38726064561087, 34.56458214951255], [-77.38718120838098, 34.56469538069916], [-77.3869433942839, 34.564798586983436], [-77.38673007038643, 34.564936056119606], [-77.38639324728767, 34.56502123071755], [-77.38590472862639, 34.56521852571691], [-77.3856053056999, 34.5652233894501], [-77.38529837345659, 34.56529788163233], [-77.38533391178049, 34.56562352751326], [-77.3853939167124, 34.56584254912248], [-77.385233935171, 34.5664870765044], [-77.38515502701327, 34.566862692696176], [-77.38495856153887, 34.567375915115505], [-77.38490140276885, 34.56747521050013], [-77.38497859049275, 34.56804778896215], [-77.38501693902818, 34.568216631435774], [-77.38521066417391, 34.568461729953135], [-77.38527712954303, 34.568532038360246], [-77.38560459897411, 34.568612130425755], [-77.38597068769899, 34.56853373986925], [-77.38599858105175, 34.568535341355926], [-77.38602172134887, 34.56852125567801], [-77.38639260727065, 34.56823219750433], [-77.38653895807097, 34.56815487363354], [-77.38691744380256, 34.56794259368105], [-77.38718062508407, 34.567762881973216], [-77.38737299508264, 34.567669606216185], [-77.38765322916737, 34.567496621945565], [-77.38796859996494, 34.56748206686457], [-77.38829131162579, 34.56739670626438], [-77.38836257961559, 34.56737427412714], [-77.38840722680075, 34.56735130093916], [-77.38845424422176, 34.56729640883308], [-77.38862960983866, 34.56713428237564], [-77.38875660903486, 34.566968506929086], [-77.38881806317923, 34.56688558565032], [-77.38894562931512, 34.56680097420369], [-77.38890786493369, 34.5666434709962], [-77.38893119059341, 34.566141915094434], [-77.38888055794382, 34.565961221713806], [-77.38894315603193, 34.565751373110004], [-77.3890352209167, 34.565389752641764], [-77.38945164101216, 34.565029721127445], [-77.38948487351759, 34.564960289098906], [-77.38954488786764, 34.56473248003829], [-77.38969858682032, 34.56431053839447], [-77.38992665353825, 34.564112072555105], [-77.39033298836713, 34.56339687942136], [-77.39062030116789, 34.56370232469182], [-77.3907769291071, 34.56361878755061], [-77.3908412666158, 34.56355558487675], [-77.39082034533027, 34.56345791326833], [-77.39048847641031, 34.563181900481226], [-77.39045903944032, 34.56305035071318], [-77.39049854979856, 34.56233130836222], [-77.39087028328365, 34.56200739585341], [-77.39112110261914, 34.561802260535245], [-77.39149069531582, 34.561789862147194], [-77.39190896508462, 34.561831577033836], [-77.39228644560802, 34.56207341311887], [-77.3925238708429, 34.56222552112303], [-77.39269676749228, 34.56233628712215], [-77.39276271748997, 34.56242927997772], [-77.39294306280868, 34.56256235547631], [-77.3929945575981, 34.562608120846534], [-77.392963519651, 34.562687856364654], [-77.39295281220421, 34.56282642826705], [-77.39291371148627, 34.563065981056276], [-77.39291742952972, 34.563256103297704], [-77.39288700330745, 34.563479879661756], [-77.39286256439755, 34.56368858845923], [-77.39282309697923, 34.56383063581775], [-77.39276233272119, 34.56455218910221], [-77.39274337324548, 34.56460546108846], [-77.39269646363834, 34.564748048117124], [-77.39253837219972, 34.565263326609355], [-77.39242046018182, 34.56545064563389], [-77.39228487499973, 34.56587591929713], [-77.3922523217257, 34.56595339794349], [-77.3920873004989, 34.56634784446115], [-77.39207031795691, 34.56652486835615], [-77.39204599708901, 34.566778372620554], [-77.39203292870548, 34.56691459278788], [-77.39199092478006, 34.56712179006398], [-77.39198014331409, 34.56721244205272], [-77.39201262835081, 34.567320270998245], [-77.39190821757066, 34.567381757996046], [-77.39175805531414, 34.567669046672066], [-77.39190815422393, 34.56785985997502], [-77.39204231494541, 34.56762804434936], [-77.39214754123667, 34.567446224004314], [-77.39227860859683, 34.56719481549498], [-77.39228942779438, 34.567167829314556], [-77.39228639687602, 34.56715122827991], [-77.39230220615435, 34.56715473966291], [-77.39246910439309, 34.56689717223908], [-77.39261469565983, 34.56669633942912], [-77.39265748985314, 34.56664841882916], [-77.39269623037124, 34.56662208435845], [-77.3929696530336, 34.566515222128714], [-77.39317215143366, 34.56652760184485], [-77.39344638863064, 34.56657636498957], [-77.39347481500349, 34.56658232089039], [-77.3934841452558, 34.566592473238344], [-77.39366068692124, 34.566779737212606], [-77.39382637724368, 34.5669461195977], [-77.3938780564678, 34.56699698437416], [-77.39403598799647, 34.56717022804565], [-77.39413071623991, 34.5671745293691], [-77.39427200627392, 34.567068988126955], [-77.39439476762377, 34.56699641488014], [-77.39460398413252, 34.56683393908726], [-77.3948754067829, 34.566595878810574], [-77.39505997201579, 34.56653774901133], [-77.39527075664981, 34.56651058063062], [-77.3956703857615, 34.56648879302676], [-77.39584792198448, 34.56607217782462], [-77.39600806138219, 34.56578222485281], [-77.3958960819205, 34.565746508194096], [-77.39590095889659, 34.565005593163825], [-77.3960043756984, 34.56493361181652], [-77.39663597290463, 34.56419360299282], [-77.39718330802438, 34.56476350863427], [-77.39715944747523, 34.565051853553626], [-77.39742372887261, 34.56611739887372], [-77.39758404923556, 34.566231183601126], [-77.39899954111186, 34.566058632173345], [-77.40047510123463, 34.565878738439864], [-77.40057535399993, 34.56586651590063], [-77.4007026642962, 34.56581673101221], [-77.40372695412195, 34.565470502580425], [-77.4056044436744, 34.56387328015005], [-77.4068784729004, 34.56401129171987], [-77.40776426428755, 34.56397990849455], [-77.40845421622018, 34.56372155384525], [-77.40947204450765, 34.564086663462604], [-77.4100300178756, 34.5642819753542], [-77.41028322862132, 34.56429798086205], [-77.41071646547347, 34.564508327329904], [-77.41127918455832, 34.56477911733782], [-77.41160583820063, 34.56483059410112], [-77.41205608624949, 34.564800139195725], [-77.41239371983161, 34.56478207124032], [-77.41282759422171, 34.564584968790946], [-77.41318158931772, 34.56464032231573], [-77.4137263150015, 34.564660739973846], [-77.41396946343073, 34.564559563371695], [-77.41409578963207, 34.56473332281038], [-77.41458456307532, 34.565461661504], [-77.41468159459123, 34.5656340041291], [-77.41466650629683, 34.56573426412673], [-77.41475750852801, 34.56571670734221], [-77.41499878159422, 34.56584820524726], [-77.41518297716172, 34.565952231341065], [-77.41554539291597, 34.565650384693285], [-77.41562544584134, 34.565583961996005], [-77.41584136833598, 34.56546648380241], [-77.41593929833512, 34.5653823889937], [-77.41601100684659, 34.56536469144033], [-77.41617442529292, 34.5652472270093], [-77.41633319074418, 34.565048203486626], [-77.41644013796669, 34.56495540834178], [-77.41633315269006, 34.56480772563986], [-77.41619980662873, 34.56470924207531], [-77.41588389561088, 34.56461117469929], [-77.41633301108504, 34.563910416661216], [-77.41637504525646, 34.563736395338], [-77.41650457930406, 34.56367234982228], [-77.41676145783073, 34.563247967898], [-77.41712078202467, 34.56327656551534], [-77.41756092573132, 34.563144992500405], [-77.41790863774905, 34.56319364736172], [-77.41820817584559, 34.56310338280646], [-77.41839047385477, 34.56307008750441], [-77.41848482694911, 34.562765171854494], [-77.41863313374283, 34.562515680924776], [-77.41864173970752, 34.562455555753424], [-77.41869632551506, 34.56221255879838], [-77.41878947043114, 34.561744411892676], [-77.4190175479676, 34.56161097257352], [-77.41927208315434, 34.561345767341365], [-77.41948402589793, 34.561390324155155], [-77.41958472530578, 34.56142049452619], [-77.41965852904796, 34.56151836256762], [-77.4200546810431, 34.5616952902713], [-77.42027196410741, 34.56181716095931], [-77.42069753948209, 34.5617586954816], [-77.42105988367373, 34.56211954359451], [-77.4210970686667, 34.56211959918312], [-77.42117460072332, 34.56214847504975], [-77.42145383583929, 34.562226199553976], [-77.4217111558622, 34.56207094332487], [-77.4218009703105, 34.562007580533034], [-77.42184771210452, 34.56198720756323], [-77.42192298526162, 34.56195919439981], [-77.4226354695183, 34.561559902233654], [-77.42301906081069, 34.561446242968415], [-77.42380053898995, 34.561362372162996], [-77.42387655008818, 34.56175802015346], [-77.42393268288224, 34.56205020481359], [-77.42399085514073, 34.562352996738], [-77.42403019839229, 34.5625849891819], [-77.42342375253381, 34.56334564715298], [-77.42330583511153, 34.56341173576816], [-77.42302986506651, 34.563543296094686], [-77.42298865804031, 34.56358468176307], [-77.42287342707529, 34.563857229937554], [-77.42291192830663, 34.564147622888086], [-77.4230300060904, 34.56413648673902], [-77.42323546718137, 34.564195032069435], [-77.42342396252263, 34.56421206140903], [-77.42358306544978, 34.564176464649506], [-77.42408372812353, 34.564137543340095], [-77.42421181229325, 34.56410541112609], [-77.42441557602984, 34.56400799852524], [-77.42473438220473, 34.56389567913961], [-77.42499962181964, 34.56385348892751], [-77.42543333654109, 34.5640805497754], [-77.42570802791495, 34.56412657747991], [-77.42578756948016, 34.56413057078939], [-77.42590124474614, 34.564135440484286], [-77.42642244869836, 34.56410248007283], [-77.4265754566944, 34.56417426344834], [-77.42666976726949, 34.56422479710504], [-77.4268905701575, 34.564209547265854], [-77.42696930975936, 34.563877879443424], [-77.42697467387687, 34.5638577701564], [-77.42696929730923, 34.563834183708806], [-77.42686391869702, 34.563562685137455], [-77.42682841028679, 34.56330263502753], [-77.42677268820603, 34.56303778820628], [-77.42689070515058, 34.56268049330986], [-77.4268737057111, 34.562174009503266], [-77.4268849678292, 34.56165756433097], [-77.42736259033178, 34.561607615061405], [-77.42888126687075, 34.56182227497263], [-77.42893835925314, 34.561830344936574], [-77.42901226700869, 34.561864871341484], [-77.42934173552476, 34.56225186965878], [-77.43027553362754, 34.563380603454505], [-77.43039338706673, 34.56349421741285], [-77.43051463617758, 34.56358543758831], [-77.43187082321239, 34.564848322788166], [-77.4319961982232, 34.564932199256546], [-77.43209086948569, 34.56502132788833], [-77.43322270336151, 34.565872416324424], [-77.43370643461462, 34.566238857666654], [-77.43377790643147, 34.566390332044385], [-77.43397467042207, 34.5679408587996], [-77.43366790686082, 34.56849420510255], [-77.43339562164616, 34.56942912634147], [-77.4333016169764, 34.56973654716772], [-77.43288052612431, 34.569975157725494], [-77.43260956346897, 34.57012869596], [-77.432432892287, 34.570228804963214], [-77.43229561177637, 34.57030659273217], [-77.43209275302212, 34.57041553296989], [-77.43182912002652, 34.570514464498515], [-77.43152223312555, 34.57060875502791], [-77.43130489824142, 34.57064167468531], [-77.43107030046151, 34.57065549315189], [-77.43051703309146, 34.570850489091995], [-77.43041306516002, 34.5708912837011], [-77.43010877879058, 34.57104733547081], [-77.4298358161442, 34.57120168651305], [-77.42972922340455, 34.571243795736606], [-77.42956663266422, 34.571300953140366], [-77.42894136833328, 34.5715168908511], [-77.42866297609649, 34.57155637415071], [-77.42840826916392, 34.57129315089171], [-77.42857893519263, 34.57080966377966], [-77.42865311872163, 34.570408579711426], [-77.42885428006697, 34.57028606049834], [-77.42894096471474, 34.57023068815279], [-77.42923306264812, 34.569900158329744], [-77.4292498943409, 34.56980622374892], [-77.42918748795312, 34.56948215627632], [-77.42911129685737, 34.5693092845739], [-77.42902735523188, 34.56908071509475], [-77.42894053108685, 34.56884429640739], [-77.42889409916191, 34.568725390093086], [-77.42887928666497, 34.56867752949927], [-77.42887241201086, 34.56860518792958], [-77.42879459950511, 34.56799758634027], [-77.42851994300358, 34.56788029418115], [-77.42832435934416, 34.5677230965609], [-77.42815227313179, 34.56772175974744], [-77.42743660236073, 34.56726570918623], [-77.42736421943574, 34.56722438743795], [-77.42735102313407, 34.567214300142716], [-77.42726919064314, 34.5672119088554], [-77.42731795097195, 34.56715501610732], [-77.4270903830576, 34.56681316545132], [-77.42705311483701, 34.56672910782459], [-77.42697008898881, 34.566602677349465], [-77.42686624584435, 34.566420973754724], [-77.42686978569847, 34.566312447056845], [-77.42692135868828, 34.56604076617106], [-77.42665241718338, 34.566027291885405], [-77.42657597854395, 34.566030452465185], [-77.4265526095941, 34.566041717923774], [-77.42626412799981, 34.56617185285378], [-77.42618210455922, 34.56629165710601], [-77.42598011508211, 34.56654905128672], [-77.4261822598413, 34.56685121530447], [-77.42622286430947, 34.56689480496748], [-77.42623799597007, 34.56693636724025], [-77.42628463206213, 34.567039903449995], [-77.42642972570363, 34.567333243880974], [-77.42637029221946, 34.567544280739256], [-77.42635627646058, 34.567556154076435], [-77.42618248064251, 34.56764543522336], [-77.4260549551096, 34.567674548101884], [-77.42592936629651, 34.56767836841659], [-77.425788516659, 34.56760930763173], [-77.42566701543228, 34.56757441788261], [-77.42519742103761, 34.567511347831754], [-77.42508500249885, 34.56743658922011], [-77.42500056814292, 34.56745629279157], [-77.42496030179318, 34.5675022068216], [-77.42487874136634, 34.56755740465042], [-77.42460667801429, 34.56770047530366], [-77.42432558619745, 34.56775896826245], [-77.42421274828104, 34.5677983032848], [-77.42412257460239, 34.56776385964564], [-77.42397358945954, 34.567688214888406], [-77.42387842145011, 34.56763765969926], [-77.42381873870457, 34.5675809993316], [-77.4236649552015, 34.56747394143201], [-77.42349032625373, 34.56733346530518], [-77.42342471389294, 34.56729325060976], [-77.42305074810218, 34.567396987930266], [-77.42303297809651, 34.56740191729302], [-77.42303078742388, 34.567403649854384], [-77.42300909866182, 34.56742638749675], [-77.4226369210895, 34.56777368900263], [-77.42258116735307, 34.56782932746264], [-77.42253341704344, 34.567896330226596], [-77.42184922366839, 34.568714842898714], [-77.42181540310322, 34.56881277999024], [-77.42176082068688, 34.56885714049587], [-77.42145533803605, 34.5690491433129], [-77.42122980610173, 34.56911537352697], [-77.42106140344961, 34.56917322653683], [-77.42086144293737, 34.5692026008343], [-77.42066742910279, 34.56911710749662], [-77.42051819574708, 34.569036684903274], [-77.42036629865648, 34.568958547472775], [-77.42027338145924, 34.568706661043144], [-77.42000511827182, 34.56882167217741], [-77.41963213228583, 34.56900669364869], [-77.41948554701555, 34.56914021546082], [-77.4194607874555, 34.56916276837251], [-77.41909160429131, 34.569241901494216], [-77.41909067915104, 34.56924193063772], [-77.41874681703996, 34.56923960641191], [-77.41869763245883, 34.56919555572396], [-77.41850581929549, 34.56890283687174], [-77.41843247950271, 34.568774524966734], [-77.41830355032158, 34.5685503589398], [-77.4182887025176, 34.56852561580824], [-77.4182590690041, 34.56851389972408], [-77.41805022375249, 34.56839247333634], [-77.41790954912675, 34.56832056267403], [-77.41776018161178, 34.568424970834315], [-77.41770128988563, 34.568594477415274], [-77.41751568523523, 34.568863458856555], [-77.41745332635189, 34.568987652111744], [-77.41737604041442, 34.56906604583237], [-77.41712180187025, 34.569321407063995], [-77.41699951595781, 34.56941321249623], [-77.41685682321874, 34.56956563153908], [-77.41669546761516, 34.56997851907332], [-77.41643854035067, 34.57036260030286], [-77.41635970177856, 34.570486606629906], [-77.41643474512455, 34.57058425458579], [-77.41686691157992, 34.571262507135195], [-77.417031430257, 34.5713365083798], [-77.41712215411054, 34.571372715918876], [-77.41747922862129, 34.57163845712526], [-77.41757523091391, 34.571648415391614], [-77.41791010312446, 34.571384948189696], [-77.4180064707349, 34.57120178466805], [-77.41854393275753, 34.571020251013884], [-77.41867753450747, 34.57097892510311], [-77.41869797137556, 34.57097561642484], [-77.418717065304, 34.57097466210146], [-77.41881003564012, 34.57098180882778], [-77.41909194865556, 34.571006451947525], [-77.4193552784811, 34.57104383886817], [-77.4194859355145, 34.57108396587391], [-77.4196812678992, 34.57107001354782], [-77.419682918658, 34.57107092412404], [-77.41969320690502, 34.57107759606991], [-77.41979027028233, 34.57114910303075], [-77.41979941844366, 34.571176694071404], [-77.41981113958502, 34.57126176401843], [-77.4198279539406, 34.571315375848], [-77.41988000663731, 34.57156834758379], [-77.41990159805485, 34.57167327987383], [-77.41995926620788, 34.57200421184557], [-77.41998498750183, 34.572198813541604], [-77.4198827793961, 34.572525168230946], [-77.41988020457842, 34.572529198242876], [-77.41969912156532, 34.57278107983463], [-77.4194863524223, 34.57315434260877], [-77.41938284721374, 34.57333497819315], [-77.41932368142615, 34.57345510990775], [-77.41936863526531, 34.57357556740969], [-77.41948648428405, 34.573805949859505], [-77.41959952437978, 34.57414268252571], [-77.41961893956335, 34.574261623679725], [-77.4197142066912, 34.574493117418314], [-77.41979726325074, 34.57466044629829], [-77.41983570569774, 34.57470333243789], [-77.41988065845386, 34.57471985625031], [-77.42007789042918, 34.57483242634244], [-77.42027469676273, 34.574953037345495], [-77.42031196012934, 34.57497051881265], [-77.42035381328924, 34.575004625338295], [-77.42053907254359, 34.57511757742686], [-77.42066873657656, 34.57518314410486], [-77.42077702739535, 34.57525138199776], [-77.42094628278942, 34.575343612660326], [-77.42102018245049, 34.575378831124475], [-77.42106277536027, 34.57539912955824], [-77.42122126273739, 34.57547465943705], [-77.42127134316306, 34.575496493865245], [-77.42145679558386, 34.57552464839582], [-77.42178853729877, 34.57557940958067], [-77.42185080187869, 34.57558546995195], [-77.42189330473477, 34.57558556705671], [-77.42200463321598, 34.57561528472397], [-77.42224482952713, 34.57573419201401], [-77.422397824869, 34.5757233509951], [-77.422441823709, 34.57572449528014], [-77.42250919286732, 34.575682062979496], [-77.42263879506822, 34.575620574046475], [-77.42272171717849, 34.57560103906369], [-77.42273822184023, 34.57550928832978], [-77.42275902273326, 34.57537665483563], [-77.42275121305804, 34.57508282497525], [-77.4226385961033, 34.57479641546455], [-77.42260900308278, 34.57471065615097], [-77.4225940756244, 34.57468094424494], [-77.42259087193004, 34.57463001976946], [-77.4226385559993, 34.574630075130074], [-77.42270365129869, 34.57459495088204], [-77.42303249903699, 34.574448135987176], [-77.423182541823, 34.5743330536738], [-77.42322945772041, 34.57430813077567], [-77.42331087533296, 34.57424054218395], [-77.423364738605, 34.574211478861045], [-77.42342642120519, 34.57418994796795], [-77.42346325250121, 34.57423691090774], [-77.423465557403, 34.57430057840607], [-77.42346707528588, 34.57434250514078], [-77.42347291921266, 34.57450392918504], [-77.4234747209046, 34.57455369359154], [-77.42349477342674, 34.574624339354465], [-77.42357071042528, 34.574964409536044], [-77.42367686914106, 34.57510400473265], [-77.42382063538057, 34.57508612746212], [-77.42416161362556, 34.57524643553841], [-77.42421467332844, 34.575271759793935], [-77.42422983211586, 34.57527741648071], [-77.42426875777647, 34.575288125852346], [-77.42451341723174, 34.575355437589224], [-77.42452993500427, 34.57559003741251], [-77.42444138573708, 34.57568776682634], [-77.42436939158111, 34.575956217131605], [-77.42428720546057, 34.57613463400061], [-77.42432280489355, 34.57624574314528], [-77.42440306769728, 34.57676446314302], [-77.42455547294337, 34.576945041168486], [-77.42478046851062, 34.577152510528734], [-77.42500316781904, 34.577170670563554], [-77.42533466792196, 34.577189670332096], [-77.42539717750945, 34.57720851738752], [-77.42542375157872, 34.5772155184859], [-77.4255248947016, 34.577229536973775], [-77.42572986223963, 34.577266008071305], [-77.4257911922917, 34.57726347703481], [-77.4258603562499, 34.577255593224805], [-77.42610897176529, 34.57722725397653], [-77.4261851829861, 34.57723246610216], [-77.42626583001432, 34.577209373738114], [-77.42652964846343, 34.57713768064238], [-77.42657915181499, 34.57712741888797], [-77.42662019161787, 34.57711547495405], [-77.42688044598754, 34.577033631740996], [-77.42696005354638, 34.5770080504035], [-77.42699207184867, 34.576997066988646], [-77.42736710886079, 34.576992451059866], [-77.42767749399331, 34.57700854382353], [-77.4277611127269, 34.57701209063293], [-77.42787339197646, 34.577011117561604], [-77.42802506363361, 34.577008341329105], [-77.42815511080282, 34.577012449673916], [-77.42837141902132, 34.57700962131079], [-77.42846168522166, 34.57722967900523], [-77.42848587863666, 34.57729441655241], [-77.4285125244073, 34.57760729422037], [-77.42845406245867, 34.577655369925225], [-77.42815536508706, 34.57783485847334], [-77.42801251918776, 34.57798979159239], [-77.42785947037919, 34.57816589902433], [-77.42795682958773, 34.5783659506417], [-77.4279477723529, 34.57857772521383], [-77.42799961405159, 34.578738374461416], [-77.42802795533616, 34.5788530858404], [-77.42804842547602, 34.57898776633613], [-77.42779896961363, 34.57940840228011], [-77.42777985587402, 34.57945117232804], [-77.42777076856282, 34.5794620855274], [-77.42776186275526, 34.57947058925043], [-77.42748799517543, 34.579917943412994], [-77.42756820569453, 34.5801152486945], [-77.42756951157092, 34.580118456422085], [-77.42760616829278, 34.58015744953089], [-77.42774240040538, 34.58030576324199], [-77.42775033832865, 34.58031731410583], [-77.42776212396426, 34.58032334533201], [-77.42804795363057, 34.58068619005231], [-77.42809640051094, 34.58074370129213], [-77.42815630729515, 34.58086807001567], [-77.42825936348545, 34.58108022335961], [-77.42826457992277, 34.58138755938161], [-77.42831531665604, 34.581496725214485], [-77.42828475770604, 34.58163929867732], [-77.42829681784954, 34.581772880619], [-77.42845731446984, 34.58190079082981], [-77.42850622310051, 34.5819416097891], [-77.42855067013602, 34.581962287364156], [-77.42870933619045, 34.582035315081164], [-77.42874770977792, 34.58205313607465], [-77.428759490382, 34.58205671716334], [-77.42894474628626, 34.58213290183641], [-77.42910926959385, 34.58205383376918], [-77.42913797799207, 34.58222699924319], [-77.42925538122823, 34.58229994443573], [-77.4293388403758, 34.582353658463255], [-77.429372084698, 34.58236963864611], [-77.42951448918295, 34.582384872939485], [-77.4295307914863, 34.58238798164462], [-77.42954095216149, 34.58238653224774], [-77.42973282112004, 34.582226589937854], [-77.42978382205474, 34.58218861862936], [-77.42985303784404, 34.5821236426455], [-77.42984237085994, 34.582007057019894], [-77.42979506941924, 34.58170743220459], [-77.42985814972431, 34.58140906863299], [-77.43021066145336, 34.58155679506545], [-77.43052069119321, 34.58171528444724], [-77.43074886682182, 34.58174828202798], [-77.43125160760736, 34.58192147751744], [-77.43130881621705, 34.58196044490051], [-77.4313406642067, 34.581942929224674], [-77.43161192385972, 34.58186939008945], [-77.43205853606683, 34.58176360857557], [-77.43209678359779, 34.58175524160995], [-77.432147197181, 34.581737677750745], [-77.4324907546999, 34.58162236415506], [-77.43281863602802, 34.5816236713725], [-77.43288476413487, 34.58159692943913], [-77.4329727634445, 34.581577823355715], [-77.43314546922416, 34.58164768973856], [-77.43349587822553, 34.58178775747797], [-77.43367290042644, 34.581858870564005], [-77.43375723362352, 34.5818929725149], [-77.4339746595039, 34.581852983190174], [-77.43406690352965, 34.58181562302651], [-77.4341500442558, 34.58171474668097], [-77.43413794010945, 34.58158084621688], [-77.43412921303957, 34.581505462444035], [-77.4340667145994, 34.58132250018057], [-77.43401342483426, 34.58115496717701], [-77.43399628686564, 34.58110008917768], [-77.43396290083604, 34.58099318179305], [-77.43386941858964, 34.58069383997258], [-77.43406632915642, 34.58031507455122], [-77.43408489356227, 34.58025812294014], [-77.43409691337757, 34.58023635638761], [-77.43446013397009, 34.57977854170241], [-77.43450162651949, 34.579797953419664], [-77.43518809364292, 34.57965399170199], [-77.43524541721479, 34.57964281266618], [-77.43524809929977, 34.57964213943507], [-77.43659749482453, 34.57920614946015], [-77.4371695332497, 34.578994960042515], [-77.43840026291245, 34.57985797568203], [-77.43907420699487, 34.580064200556016], [-77.43976444235966, 34.58069056033985], [-77.44080891995117, 34.58134135504264], [-77.44155349598046, 34.582314046510064], [-77.44207609396832, 34.58319026971443], [-77.44238506735451, 34.58370828555559], [-77.44266216306119, 34.58417286367413], [-77.44296840659828, 34.58514711538838], [-77.44300057087534, 34.58531763994821], [-77.44198965257226, 34.58593199765863], [-77.44155542378076, 34.58637466325405], [-77.44155498988489, 34.586375462509835], [-77.44155403158352, 34.58637606907079], [-77.44116146541, 34.58654667263391], [-77.44082391895886, 34.58648166951601], [-77.4407808643162, 34.586473378254546], [-77.44076738885381, 34.586469396616074], [-77.44073108154694, 34.58645598074524], [-77.44022104381558, 34.58630830270197], [-77.43997917508298, 34.58617777773169], [-77.43975953940102, 34.5860230080323], [-77.43966150636976, 34.585800596444386], [-77.43942220232034, 34.58558589146363], [-77.43929993589818, 34.58542829343985], [-77.4392455298128, 34.58537712111354], [-77.43919072272345, 34.58534164537547], [-77.43901837001064, 34.58523008429782], [-77.43875427278448, 34.58508261171437], [-77.43854986118717, 34.58495336343449], [-77.43840243606743, 34.584847546589444], [-77.43812903166274, 34.58487840668458], [-77.43789471430748, 34.58490485442648], [-77.43761422832077, 34.58451632327237], [-77.43754175919369, 34.58448684459378], [-77.43752093039386, 34.58441178052091], [-77.43748333102069, 34.58427627748372], [-77.43729007438974, 34.58394501137182], [-77.4372199600702, 34.58395674032889], [-77.43706075078268, 34.583800626218164], [-77.43702286916343, 34.58377492630289], [-77.43694903307235, 34.58372483391244], [-77.43685238921228, 34.58365926791176], [-77.43683773726295, 34.58364852577447], [-77.43682579781871, 34.583637854433526], [-77.43677293283648, 34.58361380218201], [-77.43668542118345, 34.583683411684234], [-77.43651297339278, 34.583795779514915], [-77.43643191733263, 34.58399376019012], [-77.43637879862962, 34.58409505829364], [-77.43630815134554, 34.58429605769001], [-77.436294376197, 34.58458914239509], [-77.43631636394552, 34.58488564348251], [-77.43635468389088, 34.58508872655969], [-77.43643243818406, 34.58525248287077], [-77.43650702409782, 34.58540758087575], [-77.4364325764538, 34.58558615380389], [-77.43638595055106, 34.58579934419063], [-77.43634957367365, 34.58585494089386], [-77.43623569303739, 34.585913622821344], [-77.43604781845845, 34.58589857305056], [-77.43604023954293, 34.58589797487993], [-77.43603866753706, 34.58589827135438], [-77.43603650568745, 34.585897879492286], [-77.43589481597928, 34.585863390320554], [-77.43584163128467, 34.5858563972176], [-77.4357379732781, 34.585842767432176], [-77.43564457906177, 34.585774645034526], [-77.43548689853894, 34.58580975355168], [-77.4352505427899, 34.58577867499628], [-77.43505260928187, 34.58583118010394], [-77.43471363049106, 34.58593745885769], [-77.43462483404352, 34.58635419588019], [-77.43457515083088, 34.5865360933463], [-77.43469752777199, 34.586690091460696], [-77.43485694086665, 34.58687940239599], [-77.43487353142746, 34.58689967740036], [-77.43488770444515, 34.58691549637143], [-77.43505880405988, 34.587108172552604], [-77.43522161244746, 34.587291811276884], [-77.4352349581417, 34.587307335069724], [-77.43525116285781, 34.587324788800636], [-77.43539921795532, 34.58747842845642], [-77.4354214030478, 34.58750415743963], [-77.43555483987517, 34.5876682238906], [-77.43559204578398, 34.58772030090495], [-77.43564539923338, 34.587794979068335], [-77.43590706490944, 34.588041889079804], [-77.4359729149853, 34.588104193618264], [-77.43603959229708, 34.588149004503805], [-77.4363763784969, 34.58833683780534], [-77.43645113314413, 34.58836906552929], [-77.4364797375791, 34.58843322007904], [-77.43667024273105, 34.58878072566651], [-77.43672198018965, 34.58888748247969], [-77.43682810046269, 34.58912248275873], [-77.43684474083594, 34.589162175425834], [-77.43685353882523, 34.58917881528477], [-77.43701821460206, 34.58937486331811], [-77.43722229908131, 34.58946277626403], [-77.43728204766886, 34.58947707484859], [-77.43754032196136, 34.58950410083046], [-77.43759792428267, 34.58951565398059], [-77.43761637629225, 34.58951442035597], [-77.43763982997285, 34.58951498281464], [-77.43770967396321, 34.589479612171544], [-77.43801035498385, 34.589339284326506], [-77.43824448960687, 34.589230012773754], [-77.4384043246722, 34.58914761386394], [-77.4385574466686, 34.58909743824025], [-77.43864653033458, 34.58908312773134], [-77.43879834698407, 34.58907827292619], [-77.43909343056242, 34.589279508884694], [-77.43897667858006, 34.58948834854026], [-77.43896544148092, 34.5895103152235], [-77.43893884321757, 34.58957531273095], [-77.43887005289915, 34.58973640674269], [-77.43884791662288, 34.58979267577817], [-77.43848269444018, 34.59021701687522], [-77.43845130979393, 34.5902716469637], [-77.43840483097365, 34.59029506724673], [-77.4382897144511, 34.590368995171275], [-77.43817771000647, 34.59044092454763], [-77.43801090061487, 34.59058871860478], [-77.43795616308248, 34.59065873855499], [-77.43792522653752, 34.59072222403044], [-77.43795578427509, 34.5907772809437], [-77.43800951096874, 34.59092233326757], [-77.43801104741088, 34.590924440548775], [-77.43809920016089, 34.59102672605616], [-77.43819104134926, 34.59110838001637], [-77.43829231948489, 34.591215401068034], [-77.43840533199625, 34.5914282147172], [-77.438662667681, 34.591612182902885], [-77.43911975219919, 34.59174369735203], [-77.43919360260635, 34.591743991980515], [-77.43922496484485, 34.59177427682783], [-77.43995162639919, 34.591670564596406], [-77.43998170202582, 34.59167655892705], [-77.44000065771259, 34.59167545165691], [-77.44016222713546, 34.59167251028261], [-77.44037576332326, 34.59166894481725], [-77.44040046045288, 34.59166466935533], [-77.4407603750966, 34.59159615263909], [-77.44076979333178, 34.591595230778324], [-77.44078514636615, 34.59159896226935], [-77.4415065546379, 34.591533399695585], [-77.44155790800549, 34.59156632559374], [-77.4416783324691, 34.591582985911444], [-77.44219844785874, 34.59153701975314], [-77.44234617590273, 34.59185184462037], [-77.44244898653, 34.59208031150055], [-77.4424277272085, 34.592194041986325], [-77.44234638082483, 34.5922699129705], [-77.44196044459673, 34.592694763100546], [-77.44192106497104, 34.592725827954354], [-77.44155860801642, 34.593021684143665], [-77.441460162147, 34.59307707684137], [-77.44134243177774, 34.59320020415037], [-77.44098606051791, 34.59348380167004], [-77.44077073461152, 34.59359032752124], [-77.44056244486185, 34.593537404979784], [-77.44005829102409, 34.59338592116545], [-77.44001308830886, 34.59335947922039], [-77.43998247010252, 34.59333814572586], [-77.43990665953402, 34.59332617320583], [-77.43958838174966, 34.593304159805356], [-77.43944945088317, 34.593473968759625], [-77.43934122367716, 34.59364774428475], [-77.43919462309287, 34.593996304276594], [-77.43909051682309, 34.594262764570665], [-77.43909157894143, 34.59437490977498], [-77.43906352776348, 34.59452046882191], [-77.43902259257929, 34.59504820849307], [-77.43893163873861, 34.595247226472054], [-77.438767001762, 34.59565868050154], [-77.43876545372339, 34.595734504810046], [-77.4386791713863, 34.596132923218406], [-77.43880161547679, 34.59637033312638], [-77.43884942122858, 34.59648144628719], [-77.43891119509735, 34.59652396598434], [-77.43919588814671, 34.59677704741973], [-77.43930081377442, 34.59677917218435], [-77.43958998093683, 34.59678502777319], [-77.43981149700699, 34.596818369723074], [-77.43992080494692, 34.5968707674377], [-77.43998413920107, 34.596933635944566], [-77.44011858582235, 34.59719855563827], [-77.44024333082105, 34.59732605404709], [-77.44027191221488, 34.59748615175994], [-77.4402936569423, 34.5975978329071], [-77.44018159642398, 34.59781427939651], [-77.44017364009233, 34.59781891204012], [-77.43998459117097, 34.59790366082318], [-77.4396974862865, 34.598108640881584], [-77.43962620480028, 34.598157294031374], [-77.43943482855491, 34.598314541977544], [-77.43919667619315, 34.598502787301335], [-77.43914127267641, 34.59855395112262], [-77.43909104838909, 34.59862092974246], [-77.43877829091231, 34.599064308206685], [-77.43877446700658, 34.59909130237359], [-77.43870570986601, 34.599205951258604], [-77.43851386923296, 34.59955357821379], [-77.43845732129391, 34.59961383695333], [-77.43845782391412, 34.59998627638144], [-77.43847505254315, 34.60033754428909], [-77.43847832166455, 34.600407906417004], [-77.43848911263646, 34.6004922530071], [-77.43851926937387, 34.60082657947725], [-77.43856178484756, 34.60108111045764], [-77.43858106830946, 34.6012181604589], [-77.43860622790652, 34.601335801299406], [-77.43865081576888, 34.601567520093404], [-77.43870881423943, 34.60181556578592], [-77.43873201263987, 34.601913615467225], [-77.43875915944079, 34.60200876936146], [-77.43881155563147, 34.602147064520075], [-77.43885023500312, 34.60224915451667], [-77.43893511822492, 34.60245310858207], [-77.43901843802061, 34.60257044357547], [-77.43911583285666, 34.602689284659746], [-77.43918911932496, 34.6027787081308], [-77.43924437640212, 34.60287527169845], [-77.4392725549034, 34.602954792365196], [-77.43938246263819, 34.6032051477148], [-77.43939653854596, 34.603260325773036], [-77.43942561671754, 34.60348092311379], [-77.43944148728559, 34.603557565293976], [-77.43947692273375, 34.6036191611486], [-77.43956332657729, 34.60389207376683], [-77.43970363869406, 34.6040746585557], [-77.4397769153157, 34.604166630002446], [-77.43981616247169, 34.604189233295116], [-77.43994617278821, 34.60428256471159], [-77.44017087227807, 34.604457346617394], [-77.44021785262021, 34.60454179220407], [-77.44038457353744, 34.60476566401196], [-77.44039287875813, 34.60478493056895], [-77.44047731950756, 34.60508790759086], [-77.44048282626798, 34.60510689783992], [-77.44049217308996, 34.60512065438396], [-77.44056986794376, 34.605319136102636], [-77.44061850612027, 34.60543746063158], [-77.44062296239338, 34.605448598832375], [-77.44076715845776, 34.60569870724149], [-77.44080983632341, 34.60575215633421], [-77.4408856855044, 34.60585026850842], [-77.44097463529923, 34.60607441679344], [-77.44100576272507, 34.60632124091617], [-77.44114026628988, 34.60639644016783], [-77.44105025338193, 34.60652729485692], [-77.44111056189004, 34.60665024039254], [-77.44140737461312, 34.606689530392224], [-77.44144358223987, 34.60670023160584], [-77.44148250068723, 34.606733065303175], [-77.44157260558293, 34.606710120123296], [-77.44187047083099, 34.60622984923647], [-77.44187972485679, 34.606198188942244], [-77.44187527531085, 34.60618687120203], [-77.44234376923642, 34.60574118164255], [-77.44240712972109, 34.60566597318936], [-77.44267470646514, 34.605326850645866], [-77.44272502165508, 34.60525519783741], [-77.44273791207992, 34.60520240518167], [-77.44274706305083, 34.605106636125605], [-77.44279829133518, 34.60481593850064], [-77.44276940031654, 34.604651309197905], [-77.44278342817083, 34.60445092659146], [-77.44276887948183, 34.60434141682457], [-77.44288309980276, 34.604167539208376], [-77.44307863266442, 34.60414011986822], [-77.4433689592298, 34.604022057991756], [-77.44365529031222, 34.60399622305287], [-77.44388280688518, 34.6039788443039], [-77.44403962789227, 34.60398345386831], [-77.44404419138628, 34.60409142251881], [-77.44416286121678, 34.60428992112929], [-77.4441486196164, 34.60451460791272], [-77.4441348962681, 34.60480405959319], [-77.4440911600781, 34.60511391480302], [-77.44407679654803, 34.60518987928256], [-77.4440229226474, 34.60537529208178], [-77.44397542670482, 34.605588035882604], [-77.44396765408366, 34.605690106622035], [-77.44386100958393, 34.60581985693146], [-77.44360316848233, 34.606181960193155], [-77.44347825648508, 34.60634208898124], [-77.4433795210729, 34.60649645806176], [-77.44358124646362, 34.60671837474679], [-77.44362016376714, 34.6067819850618], [-77.44366292034407, 34.60678489997298], [-77.44413769488705, 34.60683074051514], [-77.44432431674083, 34.60683535974322], [-77.44466922401486, 34.60685205901205], [-77.44468875045779, 34.60686163864463], [-77.44471206993849, 34.60687975876065], [-77.44486864693559, 34.60699496673729], [-77.44489830849854, 34.607047871345415], [-77.44498587578786, 34.60714616446128], [-77.44497963768475, 34.60728310553057], [-77.44484053024227, 34.60747790444628], [-77.44477860294961, 34.60752245759504], [-77.44459109641133, 34.60762798868709], [-77.44443887926053, 34.60771327265374], [-77.44438889329282, 34.607748481388946], [-77.44418897768726, 34.607935522734174], [-77.44424084730016, 34.60809711296379], [-77.44434781759819, 34.60830081903777], [-77.44439623959275, 34.608422055066114], [-77.44447982551166, 34.608473800267504], [-77.44462296084286, 34.60872665907831], [-77.44467712067977, 34.6088014768728], [-77.44480976085993, 34.608984709318], [-77.44510327029762, 34.60887490584425], [-77.44520162534742, 34.60879708422231], [-77.44539508449913, 34.60872623429657], [-77.44543973220954, 34.608706680181854], [-77.4454860480266, 34.6086991546833], [-77.44567914684899, 34.60862105448626], [-77.44585023437563, 34.60862690673461], [-77.44614047309574, 34.608663188370855], [-77.44621937313119, 34.60867409503132], [-77.44633929177655, 34.6086880415789], [-77.44653388470824, 34.6087053560071], [-77.44659604916629, 34.608717902309074], [-77.44675836859861, 34.60872263484838], [-77.4469031757409, 34.60871099821237], [-77.44721247031998, 34.60868389872239], [-77.44726392232812, 34.60864901218602], [-77.44735500892062, 34.6086157173564], [-77.44774255974153, 34.60847707150079], [-77.44785050649249, 34.60846704632229], [-77.44805687239688, 34.608359977786094], [-77.44818903789108, 34.608187667430705], [-77.44828050567315, 34.60805291301942], [-77.44834546820819, 34.60784156168724], [-77.44854423432119, 34.607608445962654], [-77.44854724283955, 34.60760246734106], [-77.44854996804298, 34.607585792831756], [-77.44855156055672, 34.60742172845446], [-77.44847445050925, 34.60730994798195], [-77.44844620504914, 34.60728151931319], [-77.44843934499451, 34.607269102602984], [-77.44842888146087, 34.60725134722553], [-77.44820720444591, 34.60696604930052], [-77.448085025856, 34.60680880503692], [-77.4480458580664, 34.6066428068262], [-77.44802528758818, 34.606490710865444], [-77.44802693979479, 34.606463574397175], [-77.44810507827872, 34.606327122115424], [-77.44814611458351, 34.606244959624824], [-77.4481729444787, 34.60620860827768], [-77.44830194024762, 34.60620052010088], [-77.44860826764862, 34.60616902508985], [-77.44868780166867, 34.606169024907224], [-77.44883105464474, 34.60615327409168], [-77.44920657235718, 34.60614373644151], [-77.44951627169723, 34.60597310608012], [-77.4496616357436, 34.605885750048195], [-77.44975632298966, 34.60585765173824], [-77.45013999251572, 34.60571285134235], [-77.45048419955252, 34.605703901096405], [-77.45089574622085, 34.605636961305024], [-77.45098961723811, 34.60508587612065], [-77.45099303435923, 34.60506375929379], [-77.45099431026735, 34.60505205413785], [-77.45098727009298, 34.60496736827182], [-77.45092830215026, 34.60440955941354], [-77.45090539344989, 34.60435023810436], [-77.45087864915058, 34.60430720375458], [-77.45074685043534, 34.60408923865128], [-77.45072050764196, 34.60404340079991], [-77.45070480112282, 34.604038191709236], [-77.45044184722042, 34.603926970166526], [-77.44991908482393, 34.603893028619055], [-77.44981794256395, 34.603775529940116], [-77.44962091684602, 34.60381685493349], [-77.44933196334392, 34.60369122268642], [-77.449519021909, 34.60344465753779], [-77.44972758784075, 34.60336999409242], [-77.45001533440255, 34.60333739698438], [-77.45019156918681, 34.60331865677854], [-77.45050383181456, 34.603201594017186], [-77.4506979364011, 34.60309015339213], [-77.45072520566883, 34.60305014201198], [-77.45077785285817, 34.60290958033846], [-77.45076099730107, 34.60280252125407], [-77.45071402315196, 34.60267978712082], [-77.45054573508732, 34.602606526035395], [-77.45043729447674, 34.602561000552754], [-77.45031334522476, 34.60250581166748], [-77.45014267854958, 34.60246408675334], [-77.45009125362141, 34.60236689359815], [-77.45012571915748, 34.602270515088016], [-77.45019394881375, 34.60206969068724], [-77.45021937192807, 34.60199358827831], [-77.45023795040012, 34.601955795516204], [-77.45034314385879, 34.60172720084637], [-77.45045635919843, 34.60152424207909], [-77.45033240428234, 34.601317728727196], [-77.45023686594615, 34.60121758869524], [-77.44991242532427, 34.601041344824885], [-77.44982434047418, 34.60102465774077], [-77.44957658439816, 34.60103665444068], [-77.44943506135768, 34.60104350724211], [-77.44942420913027, 34.6007862215956], [-77.44953809903984, 34.60067837375462], [-77.44977290851222, 34.60053170859175], [-77.44989745663251, 34.600478074071994], [-77.4500080206366, 34.60043046161573], [-77.45011225180858, 34.60040760171096], [-77.45025203642341, 34.60036173944171], [-77.45043417297553, 34.600278924658774], [-77.45077840943495, 34.60036434889008], [-77.45122007288505, 34.600232231435584], [-77.451277569929, 34.60019599899363], [-77.45129158345748, 34.60017823914403], [-77.45131553683349, 34.60011548989574], [-77.45151469336622, 34.5997453412835], [-77.4515412247001, 34.59966886515019], [-77.45157529639629, 34.59943501474636], [-77.45158688272878, 34.599355491062894], [-77.45153925203456, 34.59930335713872], [-77.45134493588273, 34.59916517040932], [-77.4511638735225, 34.599106888296056], [-77.45080313074948, 34.59891337751873], [-77.45070623752765, 34.598757267297756], [-77.45093914708258, 34.59874704434117], [-77.45133565925678, 34.598559693739276], [-77.45174382619206, 34.59850097069989], [-77.45190729769652, 34.598477451800676], [-77.4522477160871, 34.598428474269056], [-77.45233099119206, 34.598416493123565], [-77.45234714455188, 34.598414282674256], [-77.45238391930306, 34.598415267269175], [-77.45271736820922, 34.59840116772388], [-77.452876046044, 34.598426166465714], [-77.45331041876823, 34.5984945980923], [-77.4533647553193, 34.59852383184472], [-77.45343837100943, 34.59856012347218], [-77.45408424396484, 34.5982738562944], [-77.45435852145297, 34.59817714816019], [-77.45437636844932, 34.59814631762758], [-77.4546850568251, 34.597672020467044], [-77.45504659573916, 34.597381359500815], [-77.45518870507229, 34.59727360947732], [-77.45528087594778, 34.59726112018873], [-77.45596878863384, 34.59716790609011], [-77.45624834875267, 34.5973041277454], [-77.45667794213598, 34.597130580638016], [-77.45659889506607, 34.59681795831187], [-77.45649846930071, 34.59652007611929], [-77.45652296888865, 34.59645697247912], [-77.45652642355353, 34.59640002121455], [-77.4565479975326, 34.59609394946643], [-77.45655075446, 34.595998911509625], [-77.45655975945625, 34.59585046289548], [-77.45657037055201, 34.59571830184075], [-77.45677397453053, 34.59538445999503], [-77.45683461004751, 34.5953272529984], [-77.45707778872523, 34.59520427222988], [-77.45722815476641, 34.595123522204084], [-77.45759265714642, 34.5949731167846], [-77.45767959605774, 34.59485258993689], [-77.45785308830352, 34.5948632433902], [-77.4579843481279, 34.59494562629917], [-77.45852611680904, 34.594954491272496], [-77.45876565518326, 34.594979665249454], [-77.45893355961663, 34.595044071272206], [-77.45913677781135, 34.59512202298786], [-77.4592993648068, 34.595260595293944], [-77.4593409001401, 34.59529711696869], [-77.45935196108809, 34.595316053131526], [-77.45941116486993, 34.59541740832792], [-77.45950774084078, 34.5955827439418], [-77.45955211889574, 34.59565871682195], [-77.45954717128046, 34.59591403937165], [-77.45953616737594, 34.595979938809755], [-77.45949372647296, 34.596257660550236], [-77.45952099966905, 34.59648099671543], [-77.4598580732773, 34.59662662744497], [-77.45992773570477, 34.59689796839042], [-77.46028517262555, 34.596689454738204], [-77.46041397261014, 34.59657963004615], [-77.46055742441243, 34.59642708619781], [-77.46064878256956, 34.596352097151026], [-77.4606945154783, 34.59626480900094], [-77.46079081672158, 34.59609210457478], [-77.46090565536039, 34.59570180382958], [-77.46094790171554, 34.5955771326187], [-77.46097321607286, 34.595536550074755], [-77.46100270655033, 34.59547084470053], [-77.46108830756577, 34.5952671319441], [-77.46114612508711, 34.59515130280401], [-77.46122625159468, 34.595005709312716], [-77.46131490596437, 34.59491850855427], [-77.46136646918184, 34.59487980616662], [-77.4615127993946, 34.59479627836423], [-77.46174224277232, 34.594678479282194], [-77.46183278678575, 34.594663233456956], [-77.46200235155828, 34.59465787073885], [-77.46273724749938, 34.59437584836309], [-77.46283160288056, 34.59447173894114], [-77.46314559635728, 34.594790842318695], [-77.46317766313297, 34.595069059042615], [-77.4632032813046, 34.595672109264235], [-77.4632032586553, 34.596316740918766], [-77.46320325374452, 34.596410664886825], [-77.46317963925841, 34.59657823485173], [-77.46312608017163, 34.59717122672437], [-77.46312077994978, 34.597526608529165], [-77.46272690660959, 34.59792767679187], [-77.46201526848071, 34.59837858979386], [-77.46169747903639, 34.598391232579495], [-77.46135180497318, 34.598416042103516], [-77.46090912377669, 34.59844103018904], [-77.4607670882758, 34.59844904718827], [-77.46049084567565, 34.59846463830524], [-77.46013244132253, 34.598476543300514], [-77.4597564445023, 34.59850196599867], [-77.45972936183921, 34.59849864592168], [-77.45941171066214, 34.598443614264504], [-77.45898310970216, 34.59855650688202], [-77.45870141415311, 34.598583947552385], [-77.45853375513448, 34.5986029831634], [-77.457898667969, 34.59879646242716], [-77.45774494841838, 34.598930278095764], [-77.45733437497856, 34.599218403247605], [-77.45708227483097, 34.5996341749739], [-77.45705974951895, 34.59974169752003], [-77.45694630291143, 34.599852952562955], [-77.45623287801519, 34.60007176530458], [-77.45597013102964, 34.60012738804595], [-77.45519763272884, 34.60091034803572], [-77.45516763276177, 34.60093781155427], [-77.45524315363909, 34.60131189254598], [-77.45530073875052, 34.601603770100304], [-77.4553050013649, 34.601618246457996], [-77.45530871364019, 34.60163287638992], [-77.45543268938458, 34.60200405697368], [-77.45552485113015, 34.60228296875272], [-77.45557910301217, 34.60227858174639], [-77.45556984468453, 34.60231731191852], [-77.4555706093064, 34.60250771777331], [-77.45528307990966, 34.60283636103735], [-77.45552432002879, 34.6030327364286], [-77.45522358251188, 34.60343492706059], [-77.45565439782283, 34.60373415754643], [-77.45572676636243, 34.60386488314473], [-77.45576265423074, 34.604441803869236], [-77.45549810426724, 34.604769746859176], [-77.45550074102214, 34.60488578160934], [-77.45540094801913, 34.605045446475835], [-77.4553965972329, 34.605100121341394], [-77.45538928352444, 34.605192031543844], [-77.45546901766832, 34.605264094620566], [-77.45548092423901, 34.605383119646845], [-77.45535889445405, 34.60557393212248], [-77.45534595067951, 34.605645588290066], [-77.45530242468583, 34.605680879746195], [-77.45518691755468, 34.60589963849219], [-77.45477577479878, 34.606200369037936], [-77.45456871154062, 34.60652781175235], [-77.45428613587092, 34.60682324683962], [-77.45408285585748, 34.60713654384665], [-77.45440932607076, 34.60730483834596], [-77.45471200154853, 34.60759163338305], [-77.45482405463451, 34.607663650409876], [-77.45485002111192, 34.60768033913891], [-77.45490965019292, 34.60777281576136], [-77.45529110655005, 34.608055362624974], [-77.45537215886912, 34.60824583244461], [-77.45529820909945, 34.608416111090975], [-77.4552776393027, 34.60898625866247], [-77.45528169257616, 34.60901016570272], [-77.4552763463673, 34.60902784596403], [-77.45536831991124, 34.609332580873215], [-77.45538566215788, 34.6093497727125], [-77.45554234594763, 34.609576982687514], [-77.45562962905487, 34.6096494458287], [-77.45557912821612, 34.60975315786003], [-77.45565778884357, 34.61001067793471], [-77.45573330353349, 34.610257896677865], [-77.45582964687677, 34.6103309199962], [-77.45599664894348, 34.61085029214213], [-77.45612557997792, 34.61098503358381], [-77.45605525393279, 34.61115848989017], [-77.45622392913143, 34.61169551094175], [-77.45638408227491, 34.612205391276945], [-77.45653803034443, 34.61234444298898], [-77.4565770593997, 34.61257979093629], [-77.45591295497995, 34.61278150373106], [-77.4558116545202, 34.61255163533956], [-77.45572506566424, 34.612281738393065], [-77.45563715470169, 34.61186288290057], [-77.45519085800485, 34.611835655009486], [-77.45504277794062, 34.611663157624186], [-77.45486777964354, 34.611459302618], [-77.4548078901164, 34.611389537413785], [-77.4547739744186, 34.611370565965125], [-77.4546881239761, 34.61129958864445], [-77.45445363781604, 34.61109267271854], [-77.4543532375331, 34.61103108002331], [-77.45368693860078, 34.6109493165689], [-77.45367799572514, 34.6109542131303], [-77.45343410860131, 34.61148024659126], [-77.45282764451935, 34.61168860924511], [-77.45255520652098, 34.61179213855659], [-77.45233883809561, 34.611823458569575], [-77.45217618713536, 34.61186434879998], [-77.45185153786962, 34.611963810576], [-77.4516485705723, 34.61209432208211], [-77.45149935709256, 34.612304536095806], [-77.45140775387729, 34.61262945929376], [-77.45137674151495, 34.61284186020144], [-77.45132278904937, 34.61309341218622], [-77.45130423965736, 34.613212635124114], [-77.4510089389691, 34.61329157585903], [-77.45015286103889, 34.61344022488363], [-77.45013825128801, 34.61344179298849], [-77.45007972004815, 34.613447922217624], [-77.44972722630389, 34.61348716291532], [-77.44963126700908, 34.613455370967515], [-77.44938727993394, 34.613445625434146], [-77.44907119080742, 34.61332996651328], [-77.44880358475932, 34.61357648463599], [-77.4483058579674, 34.61385347352206], [-77.44818723316956, 34.61394183046912], [-77.44815223912343, 34.61396798093307], [-77.44809359821265, 34.614014309589066], [-77.44758868306246, 34.61439019366925], [-77.44733054695985, 34.61465334336665], [-77.44702074127217, 34.61481087174869], [-77.44655353445928, 34.61508152822288], [-77.44641923616055, 34.61516538249906], [-77.44634389912707, 34.615193443580566], [-77.44622884369393, 34.6152845583126], [-77.44621183912561, 34.615499270003035], [-77.44610468270528, 34.61568921626139], [-77.44611804941596, 34.615733824174114], [-77.44626418708731, 34.6158924289975], [-77.44635215855965, 34.61598790475739], [-77.44646227461917, 34.616107414285615], [-77.44662946496261, 34.616278087497754], [-77.44678088669208, 34.61648634311361], [-77.44684062316384, 34.61655918317895], [-77.44685464433664, 34.616583133748684], [-77.44695219715496, 34.616645105137366], [-77.44711893433305, 34.616877027498916], [-77.44727094872744, 34.616947410421126], [-77.44743193723951, 34.616943962632035], [-77.4478144697455, 34.61694681085528], [-77.44795950230207, 34.616950549479505], [-77.44800556862653, 34.61696361952342], [-77.44803196493157, 34.61698593290388], [-77.44816469977381, 34.61706935280668], [-77.44823802060102, 34.617111803376716], [-77.44824698734934, 34.617125635185516], [-77.44833623742372, 34.61726842418717], [-77.4483888227522, 34.61740939943753], [-77.44847049917493, 34.61759939508593], [-77.44857543712101, 34.61783246393434], [-77.44861167273449, 34.617928395179774], [-77.44864004389788, 34.618016604966925], [-77.44876988849265, 34.61799004138696], [-77.44901351716662, 34.61801717673829], [-77.44909260955035, 34.61801341073618], [-77.44929536160316, 34.61798895906196], [-77.44944597066666, 34.61794563684858], [-77.44996244914854, 34.61791246106898], [-77.45018644109868, 34.61795468984731], [-77.45037547374011, 34.61809329717923], [-77.45084254836902, 34.61839999854467], [-77.45128254972683, 34.618443297282134], [-77.45151860801533, 34.618427753711785], [-77.45197228631059, 34.61840149577989], [-77.4520676124023, 34.61839782304269], [-77.45223196520249, 34.61849234223929], [-77.4523202700162, 34.61871710000762], [-77.45214576778987, 34.61879796231683], [-77.45179701433919, 34.618959568612915], [-77.45167919821874, 34.619014162482095], [-77.4514294844403, 34.6191780299917], [-77.45123000757539, 34.619293832594], [-77.45106227423854, 34.61932191496816], [-77.45074730216963, 34.61945112526057], [-77.4503773130656, 34.62000970517185], [-77.45029188611736, 34.620291182966966], [-77.45022185165557, 34.62065449584915], [-77.45018277765877, 34.62080369738373], [-77.45021175152846, 34.62088254294687], [-77.45020115225289, 34.62116771643517], [-77.45041020730069, 34.62133858427613], [-77.45052327681111, 34.62144511633282], [-77.45081348717727, 34.621712448971195], [-77.45114109321811, 34.62200745452947], [-77.45122462654065, 34.62217163625767], [-77.4515439130895, 34.62235998540052], [-77.45178844720475, 34.622561368630855], [-77.45202639513252, 34.62302017038422], [-77.4525197712913, 34.62354813275809], [-77.45249378876912, 34.62383726343974], [-77.45129973421234, 34.62530821475544], [-77.45106774846357, 34.6255177505098], [-77.45059800780174, 34.62585490874706], [-77.4495518203138, 34.62660581758541], [-77.44862047031499, 34.626418786730326], [-77.44804674338785, 34.626056677114974], [-77.4472484084758, 34.62587501612302], [-77.44661944469021, 34.6255123047506], [-77.44644426512414, 34.6251390609055], [-77.44643368859278, 34.624826760112384], [-77.44671128390374, 34.62461307813759], [-77.44688122895147, 34.624534082936734], [-77.44726843700893, 34.624188600344965], [-77.44721676769203, 34.62386497803181], [-77.4472216993258, 34.62355284727719], [-77.44724123638144, 34.623384035174816], [-77.44726870379057, 34.62311165935654], [-77.44729444096423, 34.622958893840796], [-77.4473925510823, 34.62256092402782], [-77.44748436882497, 34.6223116560959], [-77.44752845358803, 34.621801960636304], [-77.4476413215717, 34.62152839165084], [-77.44775099828445, 34.62126042134922], [-77.44774136959343, 34.62113060937415], [-77.4476762224208, 34.621023602558644], [-77.44749791265708, 34.62086217262954], [-77.44746378159378, 34.62084050491828], [-77.4474439263963, 34.62082829578296], [-77.44715938380378, 34.62074111073285], [-77.44704829526981, 34.62058971940709], [-77.44679572351683, 34.6203811941333], [-77.4467350003084, 34.620345595982585], [-77.44666793332051, 34.62032891833061], [-77.44658725346, 34.620233847644194], [-77.44628538491712, 34.619980929162416], [-77.44574202172157, 34.61985441294276], [-77.44572417857401, 34.61975268369761], [-77.44559357136808, 34.61983117070589], [-77.44552990814935, 34.619863890051334], [-77.44513536592245, 34.62002738272359], [-77.44478027322434, 34.620221001285756], [-77.44467944524736, 34.6203331566588], [-77.44453439561025, 34.620292846516605], [-77.44454170959396, 34.62019664415251], [-77.44455601198803, 34.620142531098686], [-77.4443299322441, 34.61988777207171], [-77.44426281124908, 34.61971055049194], [-77.44421651730886, 34.61955085594183], [-77.44408579844378, 34.619358585323184], [-77.44400268199132, 34.61911425602529], [-77.44377327927573, 34.61893872445543], [-77.44377150419675, 34.61893719093054], [-77.44340792258754, 34.6189270301128], [-77.44322696514804, 34.61886862819296], [-77.44282141164445, 34.618729721175015], [-77.44263837276752, 34.618639131714374], [-77.44250993589749, 34.61880715249724], [-77.44229610253764, 34.619309475898945], [-77.44228888166442, 34.619349216929805], [-77.44140793923123, 34.619543280211374], [-77.44129468489608, 34.61949259659101], [-77.44115441197229, 34.61931610341731], [-77.4410779016244, 34.61903245782667], [-77.44103501065301, 34.618980893917914], [-77.44106825541435, 34.61892207097202], [-77.44111203406321, 34.6188253150805], [-77.44133999501875, 34.618397743286806], [-77.44152080271526, 34.618103902764304], [-77.44161795220245, 34.61787559222677], [-77.44164285871237, 34.617699857449495], [-77.44177013580776, 34.61738800427936], [-77.44180540795574, 34.617321771448545], [-77.44187383058282, 34.61726475916062], [-77.4421950247893, 34.61683869664853], [-77.44218852358162, 34.61676058165616], [-77.44224506577648, 34.61642042151884], [-77.44208232568057, 34.616179837942305], [-77.44205146499829, 34.61610636789389], [-77.44202240882433, 34.616049385767525], [-77.44182790903764, 34.61609080440022], [-77.44142646392798, 34.61613244040879], [-77.44121941692842, 34.6161167271817], [-77.44089708013355, 34.61611916590959], [-77.44084012219247, 34.61612325720292], [-77.44046201435573, 34.61623221953982], [-77.44040898801241, 34.61625675269412], [-77.44032162293982, 34.61629994677492], [-77.4396997248866, 34.61658486750777], [-77.43947434057317, 34.616683703356344], [-77.4391667601502, 34.616797383016895], [-77.43886192689823, 34.61691108749249], [-77.43852896750273, 34.61707149552416], [-77.43847273352145, 34.6171266044383], [-77.43824979467038, 34.61731628345716], [-77.43812257336194, 34.61750762898439], [-77.4380333367341, 34.617621105416276], [-77.43792609093487, 34.617822424094214], [-77.43774700647081, 34.61805641858712], [-77.43772730356933, 34.61807758777463], [-77.43775983159536, 34.618103280941995], [-77.43794932671717, 34.618285479028415], [-77.43806730948899, 34.618349911028595], [-77.43851566898647, 34.61850744822737], [-77.43869625329398, 34.618711393368834], [-77.43884449808161, 34.61886685689566], [-77.43882379856085, 34.61904503505966], [-77.43887218092559, 34.61939239129636], [-77.43842671962524, 34.61972444033], [-77.43831223077916, 34.61981585642675], [-77.43824254841688, 34.61986706223628], [-77.43815571301015, 34.61986163337221], [-77.43810189371584, 34.619817034411696], [-77.43772542911131, 34.619610491995545], [-77.43765896730535, 34.61957404675462], [-77.43764866901236, 34.619567174052406], [-77.43754352671996, 34.61954683034963], [-77.43707210368376, 34.619432595602696], [-77.43699644400671, 34.61945016513866], [-77.43624836618073, 34.61971297924649], [-77.43610763041605, 34.61975073096128], [-77.43574785384003, 34.62011879280253], [-77.4357811222738, 34.620168885000744], [-77.43604965856292, 34.62040201141457], [-77.43614849260243, 34.62048656338986], [-77.43631361792544, 34.620696017388475], [-77.4363339677776, 34.62071696549032], [-77.43642621877333, 34.62101409671561], [-77.4364245294867, 34.62103364721791], [-77.43641626332291, 34.621073476114184], [-77.4363403987253, 34.62160349619219], [-77.43626093731237, 34.62181876326836], [-77.43619659441038, 34.621997035359236], [-77.43614269053619, 34.622153738339996], [-77.43612814353858, 34.62222585682016], [-77.43609763932284, 34.6223770879346], [-77.43609256507796, 34.62244591346341], [-77.43610383003352, 34.622602030040674], [-77.43623366947085, 34.622805014065875], [-77.43630359609745, 34.62291433449983], [-77.43624904891531, 34.62310622276364], [-77.43650435764458, 34.62322635536837], [-77.43652430286062, 34.62322690569414], [-77.43653500366449, 34.62323356292801], [-77.4367519239703, 34.623405804192295], [-77.43719315997582, 34.6237171915105], [-77.43722516320449, 34.62374160926644], [-77.43724094417912, 34.62375489256965], [-77.43729770131581, 34.62379682415774], [-77.43759502497367, 34.6240232113457], [-77.43768876227524, 34.6240891986637], [-77.43787018961464, 34.624269744594685], [-77.43790588106107, 34.62430385073377], [-77.43809615783793, 34.62450548338083], [-77.43818047046527, 34.624594826866286], [-77.43829647775244, 34.624717756378324], [-77.43835907689682, 34.62478768524067], [-77.43844972924384, 34.62488732274691], [-77.43833557360375, 34.62500952379024], [-77.4382694787393, 34.62506604530696], [-77.43815054547134, 34.6251246709071], [-77.43809916411811, 34.62510631536782], [-77.43794136025677, 34.625151785422425], [-77.43795762081305, 34.62502759328578], [-77.43781968824851, 34.62490864259688], [-77.43779671858545, 34.62488883398571], [-77.43779161748216, 34.62487769671531], [-77.43766762790754, 34.62474100672747], [-77.43742643394417, 34.62456950408097], [-77.4373424275836, 34.624512490611835], [-77.43720397586871, 34.624503918171406], [-77.43670243851085, 34.62438047979491], [-77.436252498974, 34.62412251250505], [-77.43618544571896, 34.624098145564176], [-77.43613583490668, 34.624069880831954], [-77.43607192177825, 34.62398727766144], [-77.43584637032578, 34.62378314182745], [-77.43579061785329, 34.6236665073517], [-77.43578261049002, 34.6234320711892], [-77.4355618826873, 34.62318934049574], [-77.43550030428536, 34.62314329260625], [-77.43548138978896, 34.62313025630723], [-77.4354446225804, 34.62309178880043], [-77.43523964107705, 34.622848344184284], [-77.43517145276174, 34.622594874564804], [-77.4351442384716, 34.62242373405088], [-77.43507657051074, 34.62215633802758], [-77.435140475353, 34.621980396464245], [-77.43519764799036, 34.62182298838915], [-77.43522948102044, 34.62174351308354], [-77.43533773310818, 34.62147747600599], [-77.43539774421122, 34.6213263118153], [-77.43524872170623, 34.621221424778966], [-77.4350548489567, 34.621054802751225], [-77.43496957385861, 34.621013262263915], [-77.43485502747853, 34.620937303024355], [-77.43464958739546, 34.62080106898227], [-77.43459717381619, 34.62055423427856], [-77.434278575062, 34.6202624343813], [-77.43429180396537, 34.62016456073639], [-77.43410933872258, 34.62013364667909], [-77.43380339545728, 34.620096117261745], [-77.43356283311248, 34.62005786512151], [-77.43348621135127, 34.62008370121376], [-77.43310129401, 34.62029259786961], [-77.43287854702625, 34.62039185065572], [-77.43263435057972, 34.62050758968796], [-77.43245438351482, 34.62043059541365], [-77.43208359478285, 34.62041627199269], [-77.43175155306602, 34.62037540271897], [-77.43134292612476, 34.620473791078446], [-77.43108605940446, 34.62061364879526], [-77.43057703463936, 34.62082515108416], [-77.43021075191761, 34.621257789608734], [-77.43016182077196, 34.62129926420626], [-77.43010839911824, 34.62135681992977], [-77.42992507037499, 34.621526118701865], [-77.42985897701703, 34.62161251740762], [-77.42991701034148, 34.62170323347482], [-77.42990752024784, 34.62178330205798], [-77.42996422971561, 34.62184955282902], [-77.43005776322653, 34.62210972248354], [-77.43025640755496, 34.62220258268077], [-77.43041685593587, 34.62237662791623], [-77.43045734162357, 34.62241408855751], [-77.43060080901584, 34.62268344124996], [-77.43060494718446, 34.622690764781346], [-77.43060681479588, 34.62269173147719], [-77.43060646524492, 34.622704114181346], [-77.43058625238028, 34.62330618703365], [-77.43062037059138, 34.62342634241237], [-77.43068624675409, 34.62350552824669], [-77.43067587118065, 34.6237797639326], [-77.43068816022665, 34.62396130871028], [-77.43071628402421, 34.6241374847627], [-77.43074601663925, 34.62429128568117], [-77.43075629736069, 34.62433404176015], [-77.43081611532341, 34.62447827299403], [-77.43109299402911, 34.62472245903305], [-77.43112079033426, 34.62476068627546], [-77.43113601095715, 34.62478414060853], [-77.43117961130031, 34.62479884877308], [-77.43157541930792, 34.62489131371415], [-77.43174091008534, 34.62492859420709], [-77.4317638372301, 34.62493103946536], [-77.4323277613635, 34.625151712337704], [-77.43233052109969, 34.625152657153336], [-77.43233186896153, 34.625154029497224], [-77.43233588277184, 34.62515748042147], [-77.43269859236457, 34.62541875726421], [-77.43271011602194, 34.625602909828956], [-77.43278689847773, 34.62576283009442], [-77.43278988598374, 34.626419570666116], [-77.43282562040879, 34.626490274818316], [-77.43281846544414, 34.6265652718721], [-77.43279114563238, 34.62684509767591], [-77.43279076680021, 34.62779446539975], [-77.43281706277963, 34.6279696724492], [-77.43288864109857, 34.6281271817609], [-77.43294959574138, 34.62846949732965], [-77.43303781597797, 34.62864524230353], [-77.43305442179755, 34.628838741988986], [-77.4330332986565, 34.62911823478927], [-77.43301269162924, 34.629390882601825], [-77.43300172013284, 34.62953604876351], [-77.4329845447016, 34.62972061540287], [-77.43297829981535, 34.62984591548607], [-77.43298687400834, 34.630136719244454], [-77.43306671574939, 34.63036881418773], [-77.4319777183901, 34.63106861707304], [-77.4318440960532, 34.63107034639591], [-77.43098889261132, 34.63044865974342], [-77.43054115274276, 34.63015209224891], [-77.43043547393306, 34.6301253036282], [-77.42984578458768, 34.63001723534405], [-77.42927634960299, 34.62937310602925], [-77.42892177053976, 34.629318100823845], [-77.42901913175844, 34.62905194239974], [-77.42903773035816, 34.628958703852156], [-77.42883406077014, 34.628366205995924], [-77.42885112211198, 34.627818969725666], [-77.42886098438834, 34.62765792975635], [-77.428882750805, 34.62761386114079], [-77.42919652733097, 34.62715592223386], [-77.42919625658462, 34.627155292612066], [-77.4291959896969, 34.627154829471074], [-77.42893530272998, 34.62686041468301], [-77.4288514678141, 34.62666171961799], [-77.42881286845119, 34.626526067484654], [-77.42870712792293, 34.6263651636467], [-77.42861010331, 34.62621460983185], [-77.42861672949914, 34.62603446472295], [-77.42833889831972, 34.62561681398593], [-77.42846424779444, 34.625517700285], [-77.4282112471389, 34.62548020128376], [-77.4279019046894, 34.625079769924916], [-77.42782089148477, 34.624962553808174], [-77.42749680659688, 34.624790660138004], [-77.42737697664695, 34.624807122077144], [-77.42699710101992, 34.624886020064466], [-77.42682091307793, 34.62508544884116], [-77.42665170070197, 34.625295701977834], [-77.42662509136036, 34.62532663207966], [-77.42660106656253, 34.62536034770973], [-77.42639032018856, 34.62555418007342], [-77.42636598775132, 34.62574634332942], [-77.42628457305037, 34.626125449479694], [-77.42628275009498, 34.62613598842461], [-77.42628202240194, 34.62613950047263], [-77.42620967237758, 34.62623346188256], [-77.42610065173808, 34.626381975804335], [-77.4260829092933, 34.62638835150798], [-77.4258532664357, 34.62647087289166], [-77.4255543983071, 34.62650048741973], [-77.42535406199343, 34.626568102482544], [-77.42516547605541, 34.626595277877655], [-77.42451574665515, 34.626756359290646], [-77.42437760190076, 34.62684281017703], [-77.42391541483168, 34.6271656683728], [-77.42298083374081, 34.62781849986236], [-77.42293668417338, 34.6280619796011], [-77.42225067061248, 34.62832852918458], [-77.4217895562897, 34.62815787683641], [-77.42178579609174, 34.62765907386127], [-77.42155125073691, 34.62748731370889], [-77.42178137626559, 34.627073883397244], [-77.42201388690306, 34.62661705953359], [-77.42206642086605, 34.626518367466915], [-77.42215112288449, 34.62639212491526], [-77.42250558926706, 34.62573852197163], [-77.42264917977327, 34.62548343796723], [-77.4229156766092, 34.62534269003997], [-77.4231959460781, 34.625345582601796], [-77.42371231865516, 34.625236158161556], [-77.4239267455483, 34.625194563419875], [-77.42421751992848, 34.624793550023085], [-77.4242724672928, 34.624536253227014], [-77.42428208777005, 34.62449393288854], [-77.42429422517218, 34.62446067859518], [-77.42438936771961, 34.62423424141526], [-77.4244960995184, 34.62406372679578], [-77.42462255926905, 34.62389393712367], [-77.42491921946475, 34.62394317184717], [-77.42505907862285, 34.62398314596041], [-77.42519177019122, 34.6240526913177], [-77.42529424120458, 34.624152826848686], [-77.42550371572389, 34.62414586665825], [-77.42566192914053, 34.62416057608948], [-77.42575127102835, 34.62417593841711], [-77.42590107236684, 34.62414398438284], [-77.42623852833901, 34.62403508782121], [-77.42638856241572, 34.62389374701643], [-77.42649284522027, 34.623731680194325], [-77.42658527684618, 34.62348935387145], [-77.4265843074505, 34.62346873946895], [-77.42658042673601, 34.623452607757756], [-77.42660260063934, 34.62344393648019], [-77.42664686650843, 34.623266297459736], [-77.42652810942249, 34.623171629682204], [-77.42645974086298, 34.62318571891234], [-77.4261295015454, 34.62329475337368], [-77.42604593542802, 34.6233310440735], [-77.42596329872484, 34.62327645397826], [-77.42575178581083, 34.623136727436076], [-77.42559349638273, 34.62301259000333], [-77.42552257937578, 34.62295977269432], [-77.42537754266336, 34.62280969487921], [-77.42531957899165, 34.62275079665481], [-77.42529537928168, 34.62272830046157], [-77.42524328527507, 34.62267477713711], [-77.42510883621132, 34.622412220258305], [-77.42493864232009, 34.62230222153829], [-77.42493179985787, 34.62225599726478], [-77.42508884401288, 34.62211868906435], [-77.42518108803573, 34.6220914923858], [-77.425581530236, 34.6222775356895], [-77.42555094804779, 34.622468083463346], [-77.42576436782873, 34.6223017192501], [-77.4259188478366, 34.622291811409795], [-77.42602578337706, 34.62229633691661], [-77.42611790879167, 34.622232326476805], [-77.42624591263133, 34.62214002507096], [-77.42628092518127, 34.62207825337061], [-77.42627724177748, 34.62203763147901], [-77.42628031335565, 34.62189381141598], [-77.42615268455499, 34.621799212216494], [-77.4261091740435, 34.6217859718426], [-77.42604630683911, 34.62177587255047], [-77.42596202120173, 34.62168745963502], [-77.42560452345172, 34.621488569738126], [-77.42514231222037, 34.62129498735401], [-77.42504898320466, 34.62125335292885], [-77.4249405142362, 34.62121197794857], [-77.4244450421946, 34.62107727867166], [-77.42415755928178, 34.62105573572042], [-77.42384045968683, 34.62103458442935], [-77.42372545071927, 34.62104251610246], [-77.42325547485495, 34.62109412849058], [-77.4228122820732, 34.62111997081256], [-77.42270194973702, 34.62116558994714], [-77.42246628687452, 34.62131897621399], [-77.4220303164656, 34.62154991645299], [-77.42193746306098, 34.621766106577084], [-77.42191249124748, 34.62181840262389], [-77.42180670968669, 34.621876120366316], [-77.42161826053953, 34.62202512539314], [-77.42170997845923, 34.62227290662785], [-77.42158989185131, 34.62241768082357], [-77.4214157991658, 34.622356716849296], [-77.421367959693, 34.62209499782606], [-77.42136081214147, 34.621872485141765], [-77.42129584513609, 34.621572874110534], [-77.4212193461778, 34.62142716923029], [-77.42107377812842, 34.621311145951374], [-77.42080845213692, 34.62107980253099], [-77.42053983756415, 34.6211070294016], [-77.42028531601265, 34.62113196840156], [-77.42005203672359, 34.621154595628994], [-77.41972155638047, 34.62119301274228], [-77.41949691876394, 34.62121245942482], [-77.41929071303585, 34.6212353789065], [-77.41891208009224, 34.62128720238525], [-77.4187085280731, 34.621329860844], [-77.41847381026287, 34.62138405899079], [-77.41831433908948, 34.62142141902545], [-77.41813351526342, 34.62141021146924], [-77.41792014492749, 34.62149323790722], [-77.41768346897499, 34.62150027894875], [-77.41736141393636, 34.62153924493106], [-77.41713176082511, 34.621668205793355], [-77.4167704344834, 34.621837163702736], [-77.41670975468273, 34.621840517798894], [-77.41657621673815, 34.6218298245966], [-77.41637801355476, 34.62182112790344], [-77.41634336518405, 34.62180383153495], [-77.41611077640665, 34.62172293331427], [-77.41592165659159, 34.621499748491715], [-77.41575745992978, 34.62130523030825], [-77.41555478948158, 34.621008603798714], [-77.41544141856865, 34.62084199267126], [-77.4154376037379, 34.62072047196708], [-77.41545032147206, 34.620606200296905], [-77.4153845252303, 34.62006216286268], [-77.41529674400377, 34.61989164566567], [-77.41516036419206, 34.619836910910095], [-77.41505911377726, 34.619816904349754], [-77.41496325557951, 34.61979796330084], [-77.41490362558692, 34.61980033675697], [-77.41476615460647, 34.6198004894047], [-77.41462321773756, 34.61983492556257], [-77.41437197091679, 34.619910506507736], [-77.41406125170185, 34.62007001404665], [-77.41401876408895, 34.62012026495896], [-77.41397782004681, 34.620219326852165], [-77.41390408007605, 34.620172116997985], [-77.41358362724067, 34.62029347100486], [-77.41333736282192, 34.62017451589999], [-77.41324249892585, 34.62013101476261], [-77.41318939151674, 34.620105932777946], [-77.41307027079694, 34.620084776343866], [-77.41268614115694, 34.619961366942285], [-77.41240095308606, 34.61991464941441], [-77.41205709272094, 34.61988051570809], [-77.41161253590079, 34.61984990536797], [-77.41138942126004, 34.6198468486375], [-77.41098623133429, 34.619839334941474], [-77.4108241264069, 34.619836385952624], [-77.41061661392706, 34.619941604119134], [-77.4100357343379, 34.61996474308813], [-77.40984353274408, 34.62003669025634], [-77.40964153202435, 34.61998476649407], [-77.40953936507445, 34.61998360935972], [-77.40956820935767, 34.61986940765408], [-77.40958888654, 34.61949848486652], [-77.40959879476921, 34.61939445934668], [-77.40961525375583, 34.61901346027702], [-77.40965344679621, 34.61859637926658], [-77.40965255054418, 34.6185834993865], [-77.40965072811615, 34.61857367840509], [-77.40959129973314, 34.61816776051086], [-77.40951430981207, 34.61789105684056], [-77.40945077513106, 34.61755831015506], [-77.40938082588967, 34.61734898157584], [-77.40936707450294, 34.617221652420895], [-77.4092868871278, 34.61693796130859], [-77.40928345414596, 34.61689917083206], [-77.4092469749833, 34.61685362691827], [-77.40898414847571, 34.616840162061614], [-77.40856256359197, 34.61672991859777], [-77.40845857798048, 34.61668898845072], [-77.40770195368593, 34.61677631752053], [-77.40767020641414, 34.61676958502181], [-77.40764987588427, 34.61677153716952], [-77.40756801264962, 34.616761453276794], [-77.40703772181546, 34.61667005788404], [-77.40688181725204, 34.61665970878781], [-77.4067025715666, 34.61646176850402], [-77.4066696222687, 34.616270464778516], [-77.40640273936975, 34.61608045869151], [-77.40626337794077, 34.61591746867562], [-77.4060933777982, 34.6158359609849], [-77.4058397525917, 34.615888516343546], [-77.40565126338309, 34.61581594402121], [-77.40530499087663, 34.61559757307259], [-77.40466273419118, 34.615639760323724], [-77.40451662220451, 34.615620866756814], [-77.40436799278594, 34.61568500526122], [-77.40384880234366, 34.61572966497607], [-77.40372825867487, 34.615777330168385], [-77.40361263569203, 34.61575843678748], [-77.40363217014904, 34.615631082455735], [-77.40361722338834, 34.615513655397706], [-77.40347881430027, 34.61507270133295], [-77.40319114916855, 34.614845562204394], [-77.40307717625835, 34.614714090707714], [-77.40293984970364, 34.61471006761989], [-77.40262395906572, 34.61450282024561], [-77.40260273932908, 34.614444401549726], [-77.40248324587344, 34.61409854615483], [-77.40239513087293, 34.61384880362908], [-77.4023126287642, 34.61369858741803], [-77.40215146080216, 34.61361538200036], [-77.40195910573631, 34.613532202970504], [-77.40175728134874, 34.61344149060394], [-77.40165252243571, 34.613369246949], [-77.40150203749096, 34.61324130702795], [-77.40136309988938, 34.61300601774464], [-77.40121694349787, 34.61274036253843], [-77.401161619336, 34.61259091922359], [-77.40096892143377, 34.61244813416643], [-77.40082520095959, 34.612369683460216], [-77.40064819628248, 34.61231952458898], [-77.40057475003279, 34.61231283165411], [-77.40034106457883, 34.61228471996183], [-77.40021043866713, 34.61227140170984], [-77.4001805797785, 34.61226161754666], [-77.40010461912158, 34.6122370090164], [-77.39978640988241, 34.61222912664171], [-77.39959735939267, 34.61217106222837], [-77.39922042487581, 34.61202180281672], [-77.39906561212084, 34.61197138628627], [-77.39899807381683, 34.61195571407609], [-77.39889833426108, 34.61196083042045], [-77.39873866052346, 34.612091295983156], [-77.39879526259892, 34.612301579565795], [-77.39871157309736, 34.61263576294919], [-77.39867070061568, 34.61295024516178], [-77.39861552028954, 34.61337023655194], [-77.39861375156786, 34.613383032622956], [-77.39861251648826, 34.613392516644836], [-77.39860387666172, 34.61340308183165], [-77.39859067266758, 34.61340058376514], [-77.39820970319721, 34.61330528436133], [-77.39807214669948, 34.61318474690308], [-77.39742134952722, 34.61338587811062], [-77.39725720180095, 34.61333093169251], [-77.39702717342064, 34.61338787141334], [-77.39683740695233, 34.61343484518774], [-77.39663299454006, 34.61345361105408], [-77.39643139538938, 34.61349037104937], [-77.39605875053249, 34.61355759679716], [-77.39584463435725, 34.61359218225329], [-77.39560009708546, 34.61365650773501], [-77.39545045211868, 34.613679089699545], [-77.39532889070506, 34.61372587115087], [-77.39517419475314, 34.61375209447127], [-77.39505626853196, 34.61377381823554], [-77.39491289262989, 34.613762363319594], [-77.39481927788876, 34.613760988516574], [-77.39466209550469, 34.613694295425724], [-77.39441777746808, 34.61356362393602], [-77.39433115393865, 34.61350801719107], [-77.39426793092068, 34.61350505519508], [-77.3941200209738, 34.61344724295124], [-77.39407084798506, 34.6134280231687], [-77.39404913395772, 34.61342788745528], [-77.39387376006735, 34.61342165722499], [-77.39362175024493, 34.61352527544295], [-77.3934795733004, 34.613545150232106], [-77.39335949804774, 34.61358690012778], [-77.39314080037525, 34.613747765844714], [-77.39310315759008, 34.61377234590645], [-77.39308537476481, 34.613791896909255], [-77.39297999676708, 34.61398323793176], [-77.39297349272084, 34.61407597884974], [-77.3929594581032, 34.61419848432162], [-77.39297371405637, 34.61431664925729], [-77.39308530666504, 34.61459636781369], [-77.39308759734497, 34.614602109659266], [-77.39308896745064, 34.61460437989171], [-77.39308530523843, 34.614613279820425], [-77.39297203279534, 34.61492383464529], [-77.39269108920574, 34.614988713904594], [-77.39261945393017, 34.61501949548469], [-77.3923743879457, 34.61504852349587], [-77.39229689883528, 34.61505143524807], [-77.39217379159521, 34.615028309450004], [-77.39190271473137, 34.615044012518766], [-77.39171904683712, 34.61499973577763], [-77.39150854356858, 34.61491001030794], [-77.39125268214856, 34.615018144296656], [-77.39111434185818, 34.61507133873204], [-77.39099308727057, 34.615037179114175], [-77.39048068130244, 34.61514709427939], [-77.39032595862551, 34.615179952845786], [-77.39002529368307, 34.61536991764501], [-77.389887837338, 34.61544320140832], [-77.3898338286343, 34.61549827484406], [-77.38953750460064, 34.615830805705464], [-77.38947251369719, 34.61590494191221], [-77.3894660244993, 34.61597586704361], [-77.38946479204907, 34.61605433004865], [-77.38944530492661, 34.61640342199199], [-77.38953172446756, 34.61680943872789], [-77.38953206996892, 34.61681548194294], [-77.38953196967437, 34.616821323658165], [-77.38953736445046, 34.616946111060834], [-77.38954888092168, 34.617225185009104], [-77.38954996042702, 34.617237470859315], [-77.38958487678067, 34.617283655755635], [-77.38971189666576, 34.617450646615204], [-77.38978135632784, 34.61746697293383], [-77.38993149365471, 34.61748707965482], [-77.39006992008927, 34.61743799440462], [-77.390168098017, 34.61740318104209], [-77.39032572354583, 34.61720056819142], [-77.3903987427089, 34.617115106231076], [-77.39051751017325, 34.61687993944514], [-77.39069348297514, 34.616648045022664], [-77.39071998366224, 34.61661756476121], [-77.39078520383723, 34.61663482139708], [-77.39101321188909, 34.61671068193818], [-77.39111416754545, 34.61669890100412], [-77.39119772505356, 34.61666533878379], [-77.39170635350646, 34.6167133298631], [-77.39190255004681, 34.61673051816517], [-77.39221795538697, 34.61676796344565], [-77.39229673884496, 34.61677409353628], [-77.39234967247714, 34.61677681418961], [-77.39248430913743, 34.61681441445192], [-77.3926909236077, 34.61686775109613], [-77.3928841071704, 34.616973257497555], [-77.39308509997979, 34.617072833918726], [-77.39320322636053, 34.6171353240521], [-77.39337151983334, 34.61722712291311], [-77.39347927608117, 34.61730629778726], [-77.39385539448499, 34.61748531058914], [-77.39387345768364, 34.61749288133225], [-77.39390577511585, 34.61749339782443], [-77.39426765458651, 34.617481191433654], [-77.39453799862618, 34.61750081657653], [-77.39466184528344, 34.617562882867986], [-77.39482974650883, 34.61750618706065], [-77.39488248439422, 34.617504681175504], [-77.39504765284049, 34.617709473670075], [-77.39505298210776, 34.617717730957644], [-77.39505232680881, 34.617721816329045], [-77.39485734573114, 34.618381131230976], [-77.39474756485325, 34.61861091473039], [-77.39450420367297, 34.61890088339837], [-77.39426754791853, 34.61906149916129], [-77.39402811104472, 34.61930593639542], [-77.39384234542521, 34.61959058736836], [-77.39403295471567, 34.61981571051099], [-77.39402569704279, 34.619988719761714], [-77.39407074070809, 34.620194910755544], [-77.394070311189, 34.620406856591295], [-77.39426744850003, 34.620558803407974], [-77.39463169485902, 34.620782734137926], [-77.39466164491644, 34.620788711858644], [-77.39471507674193, 34.6207960006646], [-77.39505585250097, 34.6208584985231], [-77.39525552470295, 34.62087003962601], [-77.39582734365982, 34.621002630163474], [-77.39583687589189, 34.62100921785032], [-77.39584426817981, 34.62102434027223], [-77.39604567936104, 34.62160333621482], [-77.39613528317268, 34.62180736417585], [-77.39637392193578, 34.62205160485504], [-77.39656627384294, 34.62216978186083], [-77.39660156694993, 34.622198168227634], [-77.39663264957217, 34.622204786903716], [-77.39691420376964, 34.622240941483454], [-77.39721589662688, 34.622279681198144], [-77.39742108280169, 34.62229295368303], [-77.39755223236105, 34.622310911434454], [-77.39774553734779, 34.62242428136055], [-77.39781529659372, 34.62248699669929], [-77.39794821466663, 34.62267646554886], [-77.39820950839963, 34.62290966064803], [-77.39833749534876, 34.6230502054435], [-77.39859441610244, 34.62315099431502], [-77.39873586980151, 34.62341284499448], [-77.39883243659051, 34.62378756182396], [-77.398795028031, 34.62397120550045], [-77.39876234748938, 34.62422964509243], [-77.39877020863513, 34.62542782384567], [-77.39856064626785, 34.62570329917718], [-77.39742098063459, 34.62634799716238], [-77.39712212795436, 34.62591076368551], [-77.39704113580032, 34.625513345833895], [-77.39695040603506, 34.62508638582895], [-77.39678369416926, 34.624947654320295], [-77.3966325643652, 34.6246155593972], [-77.39649057835659, 34.62430355569019], [-77.3963804454018, 34.624047891373245], [-77.39631725991859, 34.62390397883738], [-77.39628569935056, 34.62385755195055], [-77.39623836819933, 34.62377605795193], [-77.39609345124754, 34.623511682703594], [-77.39599262858087, 34.62336632486254], [-77.39584417072521, 34.62315228776871], [-77.39582476848705, 34.62312585770018], [-77.39563951573842, 34.6229484208392], [-77.39526414517005, 34.622782130683404], [-77.39515260960158, 34.622693898279], [-77.39505575036821, 34.62269902773516], [-77.3949463814998, 34.622710164368954], [-77.394389263291, 34.622776939196555], [-77.39426730426285, 34.6227760682972], [-77.39402607260477, 34.62270084891267], [-77.39377032951849, 34.622683634005384], [-77.39347887936064, 34.62254237383883], [-77.39327345928658, 34.622441276827445], [-77.39319383880975, 34.62223151592427], [-77.39294132110291, 34.621997775638505], [-77.39269051386769, 34.62164816967322], [-77.39255808633885, 34.62161666840905], [-77.39249145870713, 34.62148364848514], [-77.39246439905072, 34.621243986807514], [-77.39238300954624, 34.62098138973916], [-77.39228876408188, 34.62066373368059], [-77.39221788422314, 34.62033396263631], [-77.39220838935923, 34.62025075327559], [-77.3920717535101, 34.62002845899332], [-77.39197595565119, 34.61985969594761], [-77.39190225885973, 34.61976646854391], [-77.39166049796903, 34.6193164676864], [-77.39151392517189, 34.619077172026245], [-77.39150812106391, 34.61907006666709], [-77.39133775892788, 34.61886150952926], [-77.3912784753428, 34.61886376000458], [-77.39111393619709, 34.618887220758495], [-77.39093969170044, 34.61892305458869], [-77.39089643786095, 34.618931949833765], [-77.39071970699939, 34.61912382520068], [-77.3906719116164, 34.619198566602286], [-77.39068665548164, 34.619585466682935], [-77.39069047167104, 34.61965188411692], [-77.39087289724044, 34.620018727552875], [-77.39091239089686, 34.62022994930733], [-77.39096405509295, 34.62069350275145], [-77.39094086430347, 34.62085806630498], [-77.39111366543507, 34.6214914397523], [-77.39128874100348, 34.6214684969553], [-77.39150787615816, 34.62153985755413], [-77.39162727322653, 34.62160824419383], [-77.39176210836979, 34.621739545182606], [-77.39156530284431, 34.622103654987626], [-77.39150781826785, 34.62213021824684], [-77.39138731433505, 34.62219718266668], [-77.39131069881975, 34.6222318444203], [-77.39114630359423, 34.62210215506267], [-77.39115764151501, 34.62205309634901], [-77.39111361534222, 34.62197810798345], [-77.3910623133412, 34.62174497239829], [-77.39104349950034, 34.621692407221026], [-77.39032524336717, 34.621409884079064], [-77.39000233831767, 34.621494748195104], [-77.38993101861469, 34.62148947315777], [-77.38963922429976, 34.6217845045211], [-77.38953675637293, 34.62187048254746], [-77.3895152168599, 34.62188953175067], [-77.38950824603116, 34.62191373196043], [-77.38951416214553, 34.62193720399469], [-77.38953673714407, 34.6220287658877], [-77.38965262099948, 34.622617173439124], [-77.38967916089432, 34.62273822954429], [-77.38986658014949, 34.623066579464236], [-77.38990334493435, 34.62313048020409], [-77.38990564569728, 34.62315726479785], [-77.39011195107358, 34.623524975742384], [-77.39002481808403, 34.62386078885328], [-77.39032498214058, 34.623747578092306], [-77.3905238401428, 34.623890166648664], [-77.39045896661672, 34.62417973915973], [-77.3905364292747, 34.62431291984121], [-77.39099199106569, 34.62496572496672], [-77.39105165510381, 34.625087781064266], [-77.39110167400632, 34.62509308971232], [-77.39111329820129, 34.62510069686526], [-77.39121678310737, 34.62517543057397], [-77.39200185933008, 34.625692073350166], [-77.39208990940041, 34.625787235540834], [-77.39210145034872, 34.62600070910234], [-77.39212838350359, 34.62663082509235], [-77.39174484258051, 34.627366487631136], [-77.39171541075922, 34.62753950309659], [-77.39169279790204, 34.627767540806495], [-77.391802204555, 34.62837612614608], [-77.39176016266889, 34.62907921255075], [-77.39111278055898, 34.6303646829678], [-77.39060210773818, 34.629099197800734], [-77.39048249282204, 34.6285663767176], [-77.3898302682887, 34.62834347921192], [-77.38961427437093, 34.62784239808837], [-77.38959518959284, 34.62778146036308], [-77.38958662109243, 34.627051617567545], [-77.38959543574069, 34.62699597798502], [-77.38960620741396, 34.62691897973255], [-77.38967900788079, 34.62628856150391], [-77.38967927514045, 34.62613475674987], [-77.38965924607018, 34.626005194661396], [-77.38955369909901, 34.625322417117886], [-77.38956672553329, 34.62530184521087], [-77.38956085723746, 34.625276293903525], [-77.38953635240739, 34.62522307137379], [-77.38938246938685, 34.62490383791879], [-77.38953643829396, 34.62450459151167], [-77.38956813808738, 34.62448664261086], [-77.38963387206329, 34.62444302983657], [-77.38958902558902, 34.624392874699105], [-77.38953644577101, 34.6244421760033], [-77.38919443180404, 34.624025629306274], [-77.38914226784522, 34.624025740300205], [-77.3890668905343, 34.624019013757945], [-77.38894515497363, 34.62401699941283], [-77.38878566626009, 34.62410019827379], [-77.38874802953117, 34.624105474461906], [-77.38870988369605, 34.62415165453488], [-77.38854473696503, 34.6243811280535], [-77.3882765488398, 34.62463868360848], [-77.3880657630539, 34.62478352947705], [-77.38795946561868, 34.62487647646154], [-77.38765346929424, 34.625153060768085], [-77.38761903061776, 34.62521601325189], [-77.38746070226986, 34.625605411403846], [-77.38740723357955, 34.62586768213908], [-77.38717082416419, 34.626076023081964], [-77.38681308486969, 34.6261626381767], [-77.38638233079197, 34.62618643158109], [-77.38600828116107, 34.626217559772186], [-77.3861056908369, 34.62580070545744], [-77.3861820604333, 34.62557391778862], [-77.38638249208759, 34.625157144864275], [-77.3864447635708, 34.62496973626876], [-77.38650575301729, 34.62489391495896], [-77.38680452947155, 34.62445611472507], [-77.38683170800385, 34.62442236976139], [-77.3869386879731, 34.624232676573634], [-77.38710115720598, 34.62395896731311], [-77.38703910994454, 34.623825700760094], [-77.38690052177105, 34.62343027905466], [-77.38673510991745, 34.62316259246697], [-77.38657789046579, 34.62297518552538], [-77.38659945787818, 34.62256623654594], [-77.38695638151128, 34.62228156738935], [-77.38710481668811, 34.62218846276829], [-77.38717140785104, 34.62214505761476], [-77.38751362732614, 34.62177668215351], [-77.38753933393134, 34.621744596657344], [-77.38756569336509, 34.62169003834728], [-77.3877450755734, 34.6213187542789], [-77.38772224199208, 34.62106598238769], [-77.38775137641468, 34.62069345421449], [-77.38762223916662, 34.62048732556654], [-77.38740252417456, 34.62027038562643], [-77.38717168243976, 34.62032165814911], [-77.38700628369608, 34.62039798586209], [-77.38641372776503, 34.62066151562535], [-77.38639278509356, 34.62067485302265], [-77.38638320350378, 34.62067761623813], [-77.38637038930202, 34.62068156224383], [-77.38610324872336, 34.62082934686205], [-77.38598894974568, 34.62092661905775], [-77.38585696361964, 34.621024195753435], [-77.3855946679725, 34.62132697658261], [-77.38539567425877, 34.62144308233956], [-77.38520041013865, 34.62156761849742], [-77.3851306073014, 34.62169557641134], [-77.38497742351893, 34.62190212852528], [-77.38480609784689, 34.622100688328196], [-77.3847758308622, 34.62213868155843], [-77.38472513897216, 34.62217857647568], [-77.38452627528956, 34.62233048298895], [-77.38441182653246, 34.62238272897421], [-77.38420736495578, 34.6224733745011], [-77.38401757454484, 34.62254728185926], [-77.38389090913297, 34.62258695572231], [-77.38362332597995, 34.62268558125208], [-77.38348204959203, 34.62278228133739], [-77.38334567118238, 34.62292752410452], [-77.38322901034346, 34.623158264817555], [-77.38290496910157, 34.623365633038986], [-77.38278332219147, 34.623362911195635], [-77.3824405255941, 34.62332637477236], [-77.38210526320614, 34.62346876941442], [-77.38204626724217, 34.62347986671955], [-77.38197475925035, 34.623501046064824], [-77.38165203083511, 34.623524587979816], [-77.38160998620299, 34.62352188049438], [-77.38156475893958, 34.623483116446884], [-77.38141745225803, 34.623332451848405], [-77.38113444011333, 34.62312055451942], [-77.3808636940529, 34.62300248544432], [-77.38073176122408, 34.62303649523799], [-77.38018932414458, 34.6231338335673], [-77.38007520925986, 34.6231526390266], [-77.3799812779958, 34.62318554778359], [-77.37993204779711, 34.62329379237541], [-77.37962835138167, 34.62370556924087], [-77.37953873389698, 34.62392801504471], [-77.37948361341059, 34.62420752394161], [-77.37950019744935, 34.62439950962766], [-77.37949294289147, 34.6244285626447], [-77.37947658070357, 34.624428338335605], [-77.37928646474592, 34.62435693313059], [-77.37920108132278, 34.624340183819804], [-77.37852809229148, 34.62437759063284], [-77.37849799701644, 34.624375543330764], [-77.37846617813298, 34.62438836199375], [-77.37788588454, 34.62462768208294], [-77.37770943403058, 34.624755723216495], [-77.37736961638166, 34.624995294746604], [-77.37731512575195, 34.625035709824566], [-77.37710902825978, 34.62519606551037], [-77.37692080776606, 34.625341852952495], [-77.37686865323793, 34.62537719123632], [-77.3767907789179, 34.6254445645518], [-77.37652648404969, 34.62565826807101], [-77.37638041454143, 34.625770963702465], [-77.3761321645661, 34.625948754888576], [-77.37610497801009, 34.6259679082809], [-77.37587975196946, 34.62615314555304], [-77.37555524520104, 34.62647164863834], [-77.37543743208427, 34.6265897730369], [-77.37534347269657, 34.62668441120935], [-77.37499795935796, 34.62702906028686], [-77.37494911625764, 34.62707016257238], [-77.37479461710682, 34.627172107002835], [-77.37455479057613, 34.62734053195194], [-77.37444751091897, 34.62736479113624], [-77.37388745546376, 34.62756096998163], [-77.37382501779446, 34.62763329388147], [-77.37394689816267, 34.627976969089005], [-77.37402379504412, 34.62811290485932], [-77.37401201178604, 34.62839215092493], [-77.37410832227238, 34.62874706191389], [-77.37412458850936, 34.62880049826457], [-77.37412555849703, 34.62883754650969], [-77.37416008075854, 34.62887510827433], [-77.37434681029822, 34.62919305419236], [-77.37444420472272, 34.62929748712959], [-77.37455418275289, 34.62938720000109], [-77.37473205203352, 34.62956213193289], [-77.3748414758638, 34.62966147024783], [-77.37494832692256, 34.62977147138611], [-77.3750312818645, 34.629854239786816], [-77.375104435869, 34.62993306063156], [-77.37520784499316, 34.630063172025615], [-77.37534243976974, 34.63027817552255], [-77.37557053896131, 34.63046936249024], [-77.37569308253384, 34.630697400858026], [-77.37570866083355, 34.631089770161246], [-77.3757170814986, 34.63111850548279], [-77.37572139932668, 34.631134100738045], [-77.37573644845988, 34.63117276020218], [-77.37582777534595, 34.631428701204825], [-77.37586850803766, 34.63152125634176], [-77.37595250438827, 34.631700902162976], [-77.37606426742617, 34.63191762212781], [-77.37613046496033, 34.63207178317214], [-77.37620438518017, 34.63224235165052], [-77.37627404214057, 34.63231196903574], [-77.37652464027433, 34.63241640686791], [-77.37671152767923, 34.63247225654246], [-77.37674146836613, 34.63247814906363], [-77.37691889644216, 34.632468866352895], [-77.37712178230939, 34.6324083213733], [-77.37731323143602, 34.63222085566642], [-77.37739445103763, 34.63223805564775], [-77.37736370928684, 34.632155019091826], [-77.3773132667857, 34.632085487932315], [-77.37718235107648, 34.631897607859344], [-77.37709891830178, 34.631768597863555], [-77.37703300074622, 34.631655453466266], [-77.37691917872385, 34.63140767598373], [-77.37690807052293, 34.63138349471036], [-77.3769029136948, 34.63137226879622], [-77.37690483873472, 34.63135653489713], [-77.37691919781147, 34.631336048307226], [-77.37728093551428, 34.63085809606121], [-77.37731358702358, 34.63086136189316], [-77.37733468391076, 34.63086279721158], [-77.37740734363146, 34.63087504983722], [-77.37764407597723, 34.63090961145666], [-77.37770783608954, 34.630913922000914], [-77.37798079568219, 34.63092306970229], [-77.37810209883435, 34.63091397914371], [-77.37824003850089, 34.63090364137605], [-77.37849636883635, 34.63088443088012], [-77.37882173033611, 34.63074554304605], [-77.37889066507748, 34.63074547629057], [-77.3790365714205, 34.630797494861376], [-77.37928492177059, 34.630766774049484], [-77.37948258029465, 34.63078781797962], [-77.37956181022946, 34.630989259225245], [-77.37969392498562, 34.631378761606896], [-77.37969966797274, 34.631393962580695], [-77.37969386813147, 34.631410773089605], [-77.37956302681671, 34.63183820898487], [-77.37939494787308, 34.63198121384147], [-77.3792846056613, 34.63209503926447], [-77.37916940718489, 34.63231947534763], [-77.37920045118453, 34.632649086924715], [-77.37921545038219, 34.63273740495239], [-77.37923507534357, 34.632787736265875], [-77.3792844263538, 34.63285100422981], [-77.3796013143534, 34.63318962477375], [-77.37967861172639, 34.63322257930679], [-77.37993431023914, 34.633333779495], [-77.3800728521786, 34.633367269197294], [-77.38013302913008, 34.6333895399133], [-77.38030806643745, 34.6334291288432], [-77.38071375621429, 34.63352963085712], [-77.38086133753646, 34.63365426753026], [-77.38113675709648, 34.63360630866417], [-77.38158201865268, 34.633318750938734], [-77.38164996672674, 34.633274243204745], [-77.38169448949915, 34.63327733251641], [-77.38293633739747, 34.63336349893266], [-77.38309057040627, 34.634579789431164], [-77.38243822304017, 34.634737054958784], [-77.38165671219507, 34.634925453189084], [-77.38164962335036, 34.63492804803839], [-77.38164488320628, 34.634929686390734], [-77.38094245178232, 34.6349483420678], [-77.38086106101765, 34.63492864874527], [-77.38074686715042, 34.63494120423576], [-77.38062862746257, 34.63508119992632], [-77.38080272251838, 34.635118893340874], [-77.38086101076495, 34.63516084192109], [-77.3811251988385, 34.63557421435462], [-77.38125518681018, 34.63566315011583], [-77.38134246488946, 34.63573349003115], [-77.3814934705635, 34.63580573126127], [-77.38158977438889, 34.63585609481278], [-77.38164942559175, 34.63588497688288], [-77.38173766317948, 34.6358655592155], [-77.38204372860382, 34.63579820579947], [-77.38239627361996, 34.63572062274215], [-77.3824380307436, 34.63571143346802], [-77.3824797057554, 34.63570851479111], [-77.38322676013203, 34.63485809117854], [-77.38341826911535, 34.63488550097285], [-77.38480399044471, 34.63421821486292], [-77.38735888696412, 34.635164445283465], [-77.3879580541566, 34.63535802504502], [-77.38876919772918, 34.63473301593245], [-77.38845246823004, 34.63618455636994], [-77.38686237510397, 34.639277733815334], [-77.38538793179566, 34.64012004381242], [-77.38480300399611, 34.64010382899777], [-77.38442107155657, 34.64004080874375], [-77.38251330557615, 34.639904430196495], [-77.38183727655448, 34.63979869849577], [-77.38164861052697, 34.63986283403371], [-77.38144124896698, 34.63983560644215], [-77.38086001047162, 34.639820720695354], [-77.38053907536333, 34.63968532470004], [-77.38046573767078, 34.639675343593346], [-77.38017404901753, 34.63939231440951], [-77.38011862093701, 34.63934956854208], [-77.38007150872818, 34.639339235051345], [-77.37995839984961, 34.63930158067826], [-77.37958930850424, 34.63914667541146], [-77.37928299027102, 34.638968581282505], [-77.37897318517781, 34.638716173169556], [-77.37873274435667, 34.63849428078501], [-77.37849455405677, 34.63828663107737], [-77.37831665762464, 34.63815320308193], [-77.37800313798553, 34.63800677644025], [-77.37779521103694, 34.63794071636697], [-77.37770605652901, 34.63789872310444], [-77.37735855544132, 34.63772539680948], [-77.3773118113118, 34.63770145301428], [-77.37730063157792, 34.637695440636406], [-77.37693816910986, 34.63775786080036], [-77.37691749706545, 34.637774714557864], [-77.3766786582141, 34.63794041944787], [-77.37620107764431, 34.63818849535291], [-77.37612878290369, 34.638228733697424], [-77.37608907690766, 34.63823970765688], [-77.37534728050252, 34.638381606234205], [-77.37534014385008, 34.638383454426005], [-77.37533348666942, 34.638384108700016], [-77.374969871895, 34.63841776057808], [-77.37494583467344, 34.63842028588361], [-77.37458687739567, 34.63846073000402], [-77.374551529312, 34.6384425224386], [-77.3745053667209, 34.63846083517146], [-77.37417846895187, 34.63855760961101], [-77.37379775586814, 34.63864999813446], [-77.3737628673478, 34.638655256873086], [-77.37371256293596, 34.63867885901587], [-77.37348695975372, 34.63878470896742], [-77.37336851091098, 34.638840159444264], [-77.37318383326055, 34.63892657565009], [-77.3729741183485, 34.63913651217615], [-77.37261789466648, 34.639247926679424], [-77.37257977470851, 34.63926712377212], [-77.37251804933848, 34.63928771935743], [-77.37218540886595, 34.63946376415264], [-77.37203597105173, 34.63955436366156], [-77.37179102239082, 34.63971846363921], [-77.37173995445026, 34.639757858377735], [-77.37169065590125, 34.64008157370525], [-77.37172188226914, 34.640185018653064], [-77.37172969672305, 34.64024973942743], [-77.37179082020411, 34.64034673048347], [-77.37186360221803, 34.6405107494773], [-77.371898500876, 34.64058414691837], [-77.37201102343118, 34.640755266653514], [-77.37218492663847, 34.640985335952045], [-77.37233137746202, 34.64121317367922], [-77.37264040804834, 34.64132643950393], [-77.3727444958537, 34.64155788535084], [-77.37297331036767, 34.641765625549624], [-77.37334339978932, 34.641675887273514], [-77.37339706673374, 34.64167371637328], [-77.3737619428389, 34.64175762265508], [-77.37397304096847, 34.64198366733544], [-77.37406251270377, 34.64229457710016], [-77.37376168301964, 34.64263360449522], [-77.37357904321465, 34.64269289173752], [-77.3736051772438, 34.642884746833275], [-77.37321869204698, 34.643346863166855], [-77.3730787084683, 34.6435600699988], [-77.37298719787572, 34.64381376536029], [-77.37283160724566, 34.644604488021194], [-77.37282652924128, 34.64465878381885], [-77.37283186812098, 34.64467915372519], [-77.37261463891676, 34.645128091433776], [-77.37261290944782, 34.645131279070206], [-77.37261303122557, 34.645139308256816], [-77.37263055277359, 34.64555086529147], [-77.37271297134373, 34.64560533253143], [-77.37289480863933, 34.64572991977217], [-77.3729286704838, 34.64575457323705], [-77.37308629285484, 34.64586933186198], [-77.3731467433901, 34.645901888112604], [-77.37333087599885, 34.646014797762646], [-77.37372526810388, 34.64616426883774], [-77.3737869533089, 34.646168943861554], [-77.37382009964053, 34.64619434499772], [-77.37392645422302, 34.646216665989904], [-77.3743504662692, 34.646292362359205], [-77.37445194060619, 34.646291384357454], [-77.37462785822385, 34.646339344134674], [-77.37479302639431, 34.646395265443175], [-77.374868533885, 34.64641475275659], [-77.37512879415158, 34.64647273276778], [-77.37540101237809, 34.64650858548832], [-77.37545677664893, 34.646511543019706], [-77.37554396655061, 34.646527021014016], [-77.37577640167801, 34.646508849719545], [-77.37593509584265, 34.64659923698792], [-77.37641603871917, 34.64667360652029], [-77.3764479329121, 34.646663747087], [-77.37647952423394, 34.64666938759718], [-77.37658088015954, 34.64669558871405], [-77.37698743589742, 34.64681190502648], [-77.37712751600293, 34.64685860286107], [-77.3774941408433, 34.646956813473096], [-77.3778126914423, 34.64708120524705], [-77.37828979936432, 34.64730453357092], [-77.37842905041217, 34.64740221552485], [-77.37853731807961, 34.64749963696519], [-77.37883060253523, 34.6475921456088], [-77.3792809691773, 34.64777858377821], [-77.37944714631945, 34.647809348377095], [-77.3799268227196, 34.64791917713365], [-77.38002352644085, 34.64795486882678], [-77.38006960517116, 34.648002984777996], [-77.38057596123915, 34.648129607117916], [-77.38085827214354, 34.648097255667196], [-77.38119157457923, 34.648095837383366], [-77.38128740737191, 34.64811029084714], [-77.38164692100256, 34.64829056615559], [-77.3818252078012, 34.648302889740194], [-77.3819213083735, 34.64848099770205], [-77.38187033723487, 34.648728967947974], [-77.38193555367292, 34.64932807237364], [-77.38208316883166, 34.6496859654795], [-77.3824352847341, 34.65002438057484], [-77.38247638990617, 34.650055027245735], [-77.38257683734967, 34.65008481700873], [-77.38299926065599, 34.65026585962935], [-77.38322387302712, 34.650682175983135], [-77.38349019463787, 34.65080236215957], [-77.38341458616947, 34.651018640446566], [-77.38350533120975, 34.651346167231665], [-77.38391468437563, 34.65159033506628], [-77.38399722684737, 34.6515948121975], [-77.38401243112278, 34.6515956417336], [-77.38474552329633, 34.651530530453634], [-77.38480114463673, 34.651630712626734], [-77.38534866823085, 34.652232861074545], [-77.38547182181208, 34.65234208487284], [-77.38558970337262, 34.65271938196093], [-77.38587053808654, 34.653006798580826], [-77.3859839577929, 34.65341503142896], [-77.38637829255306, 34.65374162732434], [-77.38699153593072, 34.653883316588484], [-77.38765725049424, 34.6541262830215], [-77.38795569986706, 34.65432905913756], [-77.38805635081319, 34.65439010008564], [-77.3888564386633, 34.65500328819191], [-77.3895330659227, 34.65556072940929], [-77.38984138678758, 34.65583112728251], [-77.39008592252404, 34.65689883653857], [-77.39111046366807, 34.65698354971744], [-77.39138126894963, 34.65730746907114], [-77.39222025285814, 34.6576900408509], [-77.39289779003786, 34.6578868635959], [-77.3937452869273, 34.658295081629035], [-77.39444908613501, 34.65862414835415], [-77.39465611136906, 34.65904749625484], [-77.39364200415876, 34.65980126457561], [-77.39350967055617, 34.659885105764225], [-77.39346493337104, 34.65990550413583], [-77.39342268500059, 34.65990869935772], [-77.39274935152463, 34.660231003077364], [-77.39247321881551, 34.66026156955218], [-77.39202721274883, 34.66030256253113], [-77.39186751818275, 34.6602843573411], [-77.39152103232189, 34.660306991217645], [-77.39095735024526, 34.66029132416871], [-77.39075589156897, 34.66026791210069], [-77.39055790266707, 34.660259036939095], [-77.38973757828543, 34.66038035852327], [-77.38950650052702, 34.66045008886182], [-77.38901899310412, 34.66065601596012], [-77.38883144813333, 34.660714933728975], [-77.38869014890507, 34.660728169860256], [-77.38820357564067, 34.66081695623071], [-77.38757056393379, 34.66098326013367], [-77.38755696610001, 34.66098362760567], [-77.38754418463063, 34.660988656415206], [-77.38710502355113, 34.66134190295912], [-77.3867916114377, 34.6615888607095], [-77.38678673495735, 34.66159345746477], [-77.38677617435526, 34.66161326848967], [-77.38654380505864, 34.662016206646456], [-77.38647635151274, 34.66211965096079], [-77.386494883765, 34.6622062457275], [-77.3866012173938, 34.6622169362189], [-77.38683118991295, 34.66227089674723], [-77.38689017332949, 34.66229603767002], [-77.3871466923217, 34.66239927208793], [-77.38722842899895, 34.66242976556451], [-77.38738941595531, 34.66248139257866], [-77.38758500052002, 34.66254938344342], [-77.38768968307652, 34.66259018525878], [-77.3879167844811, 34.66265251214443], [-77.38794861461956, 34.66266357591119], [-77.38795902315783, 34.66269308080469], [-77.38804922223625, 34.66271229915141], [-77.3882270213702, 34.662800607935374], [-77.38827630579348, 34.66280544161104], [-77.38835590328551, 34.66283577551042], [-77.38830573029945, 34.66293961629829], [-77.38816424622411, 34.66301721801249], [-77.38801190078581, 34.66300913412591], [-77.38784929234819, 34.66307171052666], [-77.38770847685282, 34.66304836317957], [-77.38756845623801, 34.66300847757421], [-77.38709216494416, 34.66314021843206], [-77.38693523234778, 34.6631288949261], [-77.38683847457807, 34.66312448213269], [-77.38663576006257, 34.66312996268414], [-77.38634208899703, 34.663113527866585], [-77.38634133477103, 34.66311361574074], [-77.38633990209696, 34.6631132351724], [-77.38609847756152, 34.66290592656378], [-77.38608726447788, 34.66288769430392], [-77.38594046829289, 34.66268080172903], [-77.38594423800185, 34.66263043851442], [-77.38589726059647, 34.66258140930307], [-77.38558476391107, 34.662513051669826], [-77.38530834477633, 34.662548948232086], [-77.38477054009658, 34.66235167521617], [-77.38476713025133, 34.662351916020306], [-77.38476076825815, 34.662350138488705], [-77.38422393547917, 34.66216171891966], [-77.38406142186959, 34.66210932818218], [-77.38395015605491, 34.66207415131432], [-77.3837642450523, 34.66210500448004], [-77.38355739897194, 34.66239704583961], [-77.38349002416452, 34.66250003086448], [-77.38345908232569, 34.66257332098995], [-77.38318967393543, 34.663059324015734], [-77.38301898818028, 34.66335869172605], [-77.3828933372277, 34.66358749960955], [-77.38250127304053, 34.66397633392711], [-77.3823883138915, 34.66407587541099], [-77.38232403569715, 34.66415322925672], [-77.38205866739627, 34.66442178767157], [-77.38204296987631, 34.66445273183417], [-77.38192877386936, 34.664695010801225], [-77.38198220479904, 34.66489382984729], [-77.38203825181317, 34.66492364916958], [-77.38220818354202, 34.6649873876743], [-77.38230253119038, 34.66504138464359], [-77.38240345881867, 34.665117102860755], [-77.38258287528353, 34.665219736933054], [-77.3827182486179, 34.665291929479466], [-77.3828719511016, 34.665391362636086], [-77.38310998356056, 34.66550729503121], [-77.38322754755218, 34.665599125406494], [-77.38348495122877, 34.66570777453771], [-77.38349535894312, 34.66570732204234], [-77.3835500033664, 34.66574350948051], [-77.38374613697745, 34.665874281543935], [-77.38376425931716, 34.665886925510115], [-77.38378697324623, 34.66590154774119], [-77.38400257463489, 34.66602171930234], [-77.3840597679228, 34.6660535974781], [-77.38413763510346, 34.66609699857712], [-77.38426013737683, 34.66616527815815], [-77.3843696113542, 34.66620922759558], [-77.38465423407983, 34.66626961519963], [-77.38474859778, 34.666311597208676], [-77.38481120871134, 34.666328391634586], [-77.38491955793762, 34.66631919206138], [-77.38541128817099, 34.66632242975242], [-77.38563535702633, 34.666315489174565], [-77.38576888748948, 34.66631426873483], [-77.38601210938782, 34.66631390498751], [-77.38627769053727, 34.66631663485658], [-77.3863094872487, 34.666320105298475], [-77.38636980999351, 34.66632831294497], [-77.38659790207643, 34.6663572282294], [-77.38672410881199, 34.66636705530604], [-77.38714572294278, 34.6663778731465], [-77.38719335969098, 34.6663672033719], [-77.38723392391607, 34.66636863800013], [-77.38776482753035, 34.666328953568005], [-77.38780043291045, 34.66632654454359], [-77.38780351276594, 34.666326470086354], [-77.38780791032832, 34.66632664854445], [-77.38839919225123, 34.66633567150751], [-77.38887415009705, 34.666288029852055], [-77.3890083177011, 34.66629847369106], [-77.38913921468102, 34.666296730822054], [-77.38935109759663, 34.66625714126887], [-77.38968537467309, 34.66617312155996], [-77.38993059355064, 34.666095217806436], [-77.390258911594, 34.66609443395897], [-77.39035051972212, 34.66608886425596], [-77.39039248124428, 34.66610282236152], [-77.39090366009992, 34.66627185070826], [-77.39093289050061, 34.66629024225385], [-77.39096740247885, 34.66629544798427], [-77.39147324766753, 34.6664806107807], [-77.39151172100627, 34.66650384399199], [-77.3915436584222, 34.666490251356244], [-77.39159977672043, 34.66648546889461], [-77.39199995643278, 34.66648869660528], [-77.39215411744814, 34.666498083134734], [-77.39236855926002, 34.666553523764264], [-77.39245531688042, 34.666564219659136], [-77.3925191051116, 34.66659001562782], [-77.3927411950789, 34.666683231636306], [-77.3929419566128, 34.66676069001913], [-77.39312003642178, 34.66682519087862], [-77.39332103194612, 34.66689337524513], [-77.39352958351363, 34.66696191989995], [-77.39361342231852, 34.66698991877813], [-77.39369392563849, 34.66701609654609], [-77.39390625933694, 34.66708492125924], [-77.39413013235922, 34.667157758555575], [-77.39426401719973, 34.66720077960118], [-77.39449711202388, 34.66725705807069], [-77.39479615476058, 34.66732333684403], [-77.39479814657429, 34.667323772714255], [-77.39480058402283, 34.667324440302494], [-77.39509221893812, 34.667414516510675], [-77.39533500267376, 34.66745687144105], [-77.3954133899122, 34.667411731570084], [-77.39554626766586, 34.667308260992804], [-77.39564804680839, 34.6672208366368], [-77.39585563473067, 34.6669910478504], [-77.39592409901948, 34.666924261005285], [-77.39605302053151, 34.666926540286624], [-77.39655911692498, 34.666774421165954], [-77.39695894418064, 34.667243744753655], [-77.3969995599328, 34.6672998947373], [-77.39702937006646, 34.66736283738794], [-77.39712425296656, 34.66786078258826], [-77.39715317308787, 34.66812845662898], [-77.39715564705537, 34.6681513535832], [-77.39716091336197, 34.66820009469337], [-77.39718254375063, 34.66844034902949], [-77.39713116375447, 34.66858395380082], [-77.39728400646715, 34.66869553888809], [-77.39731377644169, 34.668730945029274], [-77.39754011720174, 34.66882068963191], [-77.39756749885147, 34.66882282229055], [-77.39762134945134, 34.6688258147938], [-77.39788078431822, 34.66884726625251], [-77.39813013219185, 34.669037924409395], [-77.3985297256127, 34.66881893074248], [-77.39857551484258, 34.66932046402574], [-77.39874288734484, 34.6695458117639], [-77.39915113130752, 34.669973009013404], [-77.3994407219246, 34.670097817175275], [-77.39962765233264, 34.6704147244281], [-77.39974442716485, 34.670618181049896], [-77.39983351332354, 34.670953762818726], [-77.39985358232711, 34.67101897351773], [-77.39988466636171, 34.671063853525325], [-77.40002031898746, 34.671395747331715], [-77.40016052825726, 34.671719578465456], [-77.40021580930973, 34.67184596715708], [-77.4003525756248, 34.67214980560635], [-77.40042403375489, 34.67237097495773], [-77.40059100331064, 34.67276271670832], [-77.40064747010659, 34.67291944900836], [-77.40068496441577, 34.673021468054195], [-77.40073736141211, 34.673304472104874], [-77.40074200378146, 34.67332100960017], [-77.40074301389781, 34.673325921118206], [-77.40079081707799, 34.67361767045344], [-77.40083402300664, 34.67373428467108], [-77.40089723707162, 34.67391755623841], [-77.40096659773681, 34.674125311108455], [-77.4010697565166, 34.67427446388541], [-77.40111425288052, 34.674510047716524], [-77.40111926874107, 34.67467768604], [-77.40110849810429, 34.674847171051915], [-77.40091683569136, 34.67509474202837], [-77.40081631309778, 34.675304033082114], [-77.40071221192017, 34.67550821919034], [-77.40069845215054, 34.67557613247946], [-77.40066782057303, 34.67581119759889], [-77.40066861528135, 34.67581278552652], [-77.4008089572811, 34.67597636525525], [-77.40091229599206, 34.67607759424784], [-77.40113422773445, 34.67628701902688], [-77.40116385315508, 34.67631521869359], [-77.401258988351, 34.67640288703167], [-77.40141957639668, 34.67653846488386], [-77.40149807390814, 34.6766609770957], [-77.4014586254456, 34.6770443626838], [-77.40143604618297, 34.67719840770892], [-77.4014095963202, 34.67739760225013], [-77.40112703785586, 34.677649384083566], [-77.40108303764855, 34.67809367341897], [-77.40110607028356, 34.67820118783002], [-77.4010440092285, 34.67829600404745], [-77.40072209245318, 34.678946205206465], [-77.40064248472684, 34.67913561665092], [-77.40063328964845, 34.679153982906755], [-77.40061583353518, 34.67918119182816], [-77.40064110184551, 34.67922578120794], [-77.40064515232612, 34.67961528826937], [-77.40068706353642, 34.67973195088122], [-77.40086096044926, 34.67997160248132], [-77.40104060169854, 34.68005877200093], [-77.40127999122795, 34.68017869048131], [-77.40132033436498, 34.680199179166564], [-77.40135021923203, 34.68021386497788], [-77.40159589027246, 34.68035400591641], [-77.40181111461439, 34.6804679554323], [-77.40213116868266, 34.68071832803075], [-77.40237022772203, 34.680880254507244], [-77.40257475193569, 34.68104210199483], [-77.40264784967647, 34.681146864418736], [-77.40283570729459, 34.68122746458836], [-77.40319234044428, 34.681479411075834], [-77.40341568923357, 34.68158400426457], [-77.40375630858486, 34.68174472813209], [-77.4039114050823, 34.6818235693068], [-77.40415720804053, 34.68189298225705], [-77.40434969404804, 34.68190849410814], [-77.40466867169363, 34.6819540353783], [-77.40495971471978, 34.6820148318614], [-77.4051323617814, 34.68199184471138], [-77.40532659875419, 34.68191499653281], [-77.40551056746173, 34.681862348571244], [-77.40566953125955, 34.681776616976], [-77.40586821125274, 34.681699213498966], [-77.40604148434763, 34.68160606417061], [-77.40646378640072, 34.68124684008224], [-77.40651172785871, 34.68125553923468], [-77.40655224239391, 34.68122568994147], [-77.40711723125682, 34.68120322046513], [-77.40738858129791, 34.6811935849132], [-77.40774586152514, 34.68124527808269], [-77.40818710058748, 34.68137904518119], [-77.40830809166255, 34.681516614824915], [-77.40854890702516, 34.68159534465802], [-77.40890401387806, 34.681489605774516], [-77.40869240716964, 34.68116825266075], [-77.40868023250655, 34.681131730467285], [-77.40847806039599, 34.680929707311954], [-77.40841590759224, 34.68083725632603], [-77.40836832692207, 34.68074301337086], [-77.40833657290837, 34.68049982263868], [-77.40831462281585, 34.68043316777665], [-77.40819533823039, 34.680123348554886], [-77.40811137385856, 34.67998316967303], [-77.40793494946709, 34.679842816381], [-77.40784909142637, 34.67978249007798], [-77.40778393006751, 34.67976187133662], [-77.40756545083187, 34.6796555622634], [-77.40722416054862, 34.679428219126], [-77.40701438121923, 34.679345737730166], [-77.40687211448241, 34.679249562311675], [-77.40658308923258, 34.67899996684779], [-77.40679506004606, 34.678726233877846], [-77.40674225592264, 34.678411058487434], [-77.40698493264861, 34.67802235107061], [-77.40683457211273, 34.67775401243995], [-77.40668383753722, 34.677542753350835], [-77.4062967794137, 34.67739839455329], [-77.40616313070932, 34.67731363278446], [-77.406025094089, 34.67723022075002], [-77.40584908127308, 34.6770656754679], [-77.40580112845672, 34.67701830709399], [-77.40581316278386, 34.676855731636664], [-77.40578311771696, 34.67657948493682], [-77.40581859040086, 34.67649587141716], [-77.40582273884473, 34.676387297300025], [-77.40595042800247, 34.67606335537677], [-77.40590047940236, 34.67596540100944], [-77.40587279157705, 34.675720964487255], [-77.40582018029201, 34.675378162401856], [-77.4060265487795, 34.67513892915328], [-77.4056892343379, 34.67507116324445], [-77.40514052372183, 34.67461586957626], [-77.40479499054433, 34.67390105567727], [-77.40477810304367, 34.67387439117521], [-77.40519339451663, 34.6731129419898], [-77.40535410770555, 34.672978494173975], [-77.40547660356401, 34.67282808419398], [-77.40553965343086, 34.67266403482906], [-77.40538431499706, 34.67242993356378], [-77.40526147542182, 34.67233374726635], [-77.40521358523388, 34.67228864605559], [-77.40496248024988, 34.6720121433333], [-77.40475350502395, 34.67166484397901], [-77.40474874525994, 34.671654973607595], [-77.40473953404295, 34.67164510111429], [-77.40445119515583, 34.671332767194826], [-77.40426857508302, 34.67112686318671], [-77.40396660506323, 34.671105668751395], [-77.40363673913603, 34.671096120228], [-77.40349552181058, 34.67108311450239], [-77.40317127103215, 34.671096127613914], [-77.40305804942788, 34.67111555354717], [-77.40299385367268, 34.67110352411941], [-77.40293594823541, 34.67107219873799], [-77.40285535031839, 34.67098553563757], [-77.4025910941422, 34.670769724730064], [-77.4024823428581, 34.67065735603357], [-77.40224749450572, 34.67046672668561], [-77.40194473577539, 34.67030130017368], [-77.40180041535552, 34.67020689527354], [-77.40168038224137, 34.6701079145339], [-77.40158650017861, 34.66998220297869], [-77.40171813173123, 34.669794892512186], [-77.40176247599491, 34.66974385269973], [-77.40182115259111, 34.66975191829136], [-77.40208410628148, 34.66982013312672], [-77.40230648438353, 34.66988575835841], [-77.40245986663912, 34.669931809412574], [-77.40267423382036, 34.669994850283544], [-77.4028646667621, 34.67005085194823], [-77.40318532681894, 34.67007551170988], [-77.40329043975649, 34.67007953451242], [-77.40333426811961, 34.67007099528943], [-77.40340049830716, 34.670058091233884], [-77.40395071679004, 34.670012053133156], [-77.40420891429308, 34.670005644150486], [-77.40440460332388, 34.670013207973156], [-77.40458904873928, 34.67002033709952], [-77.40473675461902, 34.6701210752942], [-77.40491771059776, 34.67024548786562], [-77.4051247059103, 34.670383143620825], [-77.40550007061584, 34.67062178750144], [-77.40566624282043, 34.67072566151546], [-77.40577584369183, 34.67078016384743], [-77.40592323798595, 34.670941173789345], [-77.40611173587139, 34.67108637216058], [-77.40618371710357, 34.67115128088265], [-77.4063892875246, 34.67132847467826], [-77.40645787762897, 34.671388304292776], [-77.40648739918062, 34.67141821418059], [-77.40668591488182, 34.67162966758539], [-77.40683961825854, 34.67167538480686], [-77.40706055845418, 34.671678547037224], [-77.40731138756975, 34.67147856844909], [-77.40735806088547, 34.67144340039185], [-77.40736599857301, 34.671430075009894], [-77.40740510814742, 34.67135874684192], [-77.40758350970385, 34.671037743766654], [-77.4076138014454, 34.670973785120594], [-77.40766503465132, 34.67088469068258], [-77.40780546706984, 34.67065269105953], [-77.40789528682308, 34.67051318152095], [-77.40804420765463, 34.670295098490826], [-77.40820938086222, 34.67006399224351], [-77.40848862053463, 34.66964840843629], [-77.40850890921378, 34.66960970547032], [-77.40852141636636, 34.669579480310524], [-77.40864333532235, 34.66909763034145], [-77.40867361329258, 34.6686785457879], [-77.40868244594395, 34.66855219317947], [-77.40836173496851, 34.66805519237403], [-77.4078789392694, 34.66811741579857], [-77.40793002164448, 34.66733344648194], [-77.40729118426043, 34.6675666421439], [-77.40740361561711, 34.668104568081404], [-77.40714869985253, 34.66808171937791], [-77.40707455818607, 34.66807507374463], [-77.40652040485979, 34.667801915960894], [-77.40651343741827, 34.66780023206827], [-77.40648190269833, 34.667781932494826], [-77.40652414034776, 34.6677632725314], [-77.40722273197423, 34.667454641229035], [-77.40789414446924, 34.6671580112644], [-77.40799353766982, 34.66711409901478], [-77.40866297339338, 34.6668183362865], [-77.40872645916858, 34.66687113580158], [-77.40915992330632, 34.667511321066016], [-77.40918067695718, 34.667574305916354], [-77.40918204205958, 34.667608810127106], [-77.40918830881242, 34.66767785530446], [-77.40922686488796, 34.66790406155905], [-77.40922408347593, 34.668002537076475], [-77.40921023845726, 34.66817780423681], [-77.40906251922624, 34.66851628649077], [-77.40908123062965, 34.6686917746522], [-77.40912215258527, 34.66906597294465], [-77.40891082554045, 34.669191255857044], [-77.40918959415605, 34.66935595161067], [-77.40924617256736, 34.66942619521164], [-77.40940223032393, 34.66952420098796], [-77.40978625097009, 34.66977376206244], [-77.41003804661034, 34.66989464225446], [-77.41068639048072, 34.670128798355464], [-77.410951934275, 34.67017354819722], [-77.4114664377961, 34.669908647986176], [-77.41169003097149, 34.66983721851793], [-77.41183624172854, 34.66976549609228], [-77.41201084673742, 34.669717135575716], [-77.41222733674707, 34.669657174332286], [-77.41247424005061, 34.66934158842581], [-77.4124840377926, 34.669328995175455], [-77.41248857576466, 34.6693252150264], [-77.41249362751104, 34.66931642261591], [-77.4127395498194, 34.668998871899205], [-77.41282785886943, 34.66888484059297], [-77.412998131808, 34.66867377448026], [-77.4130037132699, 34.66866682850243], [-77.41302098321815, 34.66865003042292], [-77.41320601724914, 34.668458072469605], [-77.41326781464917, 34.66836683855535], [-77.41372205782008, 34.668357494753884], [-77.41403577061611, 34.668374006108465], [-77.41422566372833, 34.66843757712297], [-77.41465679826598, 34.66840668720966], [-77.41509931197311, 34.66837056367094], [-77.41562181611869, 34.66845746658], [-77.41556053544018, 34.669125049298486], [-77.41523250283771, 34.66972637882027], [-77.41466174097397, 34.67064350373376], [-77.41466062126676, 34.67064530295473], [-77.4146592600339, 34.67064670271011], [-77.41409260369845, 34.67121231503991], [-77.41379007278786, 34.67145803750098], [-77.41349293751765, 34.67172756191005], [-77.41291349850755, 34.67226950161348], [-77.41290778911416, 34.67227023999878], [-77.4119291745059, 34.67216192751524], [-77.41164883112177, 34.67219249524197], [-77.41132053517504, 34.67203762076788], [-77.41106381457465, 34.67200006147968], [-77.41090616120239, 34.67198463974968], [-77.41044452062187, 34.67192601458837], [-77.4103977859598, 34.67194818642079], [-77.41015805932126, 34.6722570833675], [-77.41008768740535, 34.67239877711545], [-77.40995421489359, 34.672607678631934], [-77.40970370190188, 34.67301009231077], [-77.40946695097657, 34.673299770298115], [-77.40935881114551, 34.6737487715026], [-77.40979660234899, 34.67416364087062], [-77.41029465139408, 34.673976856256076], [-77.41104781202415, 34.67393679128104], [-77.41112830505786, 34.67399026788086], [-77.41153874336351, 34.67458396967045], [-77.41154380381155, 34.67462254651625], [-77.41122386924482, 34.67503289171382], [-77.41100284218038, 34.67513538555917], [-77.41076418321286, 34.67524781337472], [-77.4106482889112, 34.67530352728327], [-77.41054932470699, 34.675355944368775], [-77.4103028101481, 34.675486512834986], [-77.40977434182034, 34.67564384203014], [-77.40948157623393, 34.6763756070186], [-77.40945978821766, 34.67665200099727], [-77.40982646890204, 34.67712440854831], [-77.40986267642224, 34.67735212246296], [-77.41005255503302, 34.67770541913424], [-77.41014056540305, 34.67788605828096], [-77.41028757405877, 34.67805994100439], [-77.41052519228387, 34.67828609106354], [-77.41095646454568, 34.67843835927545], [-77.41109267933324, 34.67853921810448], [-77.41135465966227, 34.67870345498489], [-77.4118781926077, 34.67894650680678], [-77.41189601989589, 34.67918193022918], [-77.412049248193, 34.679661650738694], [-77.41206977374019, 34.679759274950825], [-77.41209396669512, 34.67981031418951], [-77.41227685186, 34.67998212234188], [-77.41255626018295, 34.68000265910561], [-77.41258864647666, 34.680011829011264], [-77.41262651046542, 34.67999666664809], [-77.41274180512612, 34.679925248165596], [-77.41291490100883, 34.67981802519292], [-77.41294091804089, 34.67980190910779], [-77.4132032904957, 34.67963938288521], [-77.41336655535596, 34.67953824818786], [-77.41359173607148, 34.67977530752667], [-77.41375615296378, 34.67994839798161], [-77.41362751675152, 34.68034693720995], [-77.41356166672779, 34.68081724605918], [-77.4135692564486, 34.68088566354282], [-77.41356013465958, 34.68092288320845], [-77.41344817570538, 34.68137971648798], [-77.41344305398718, 34.68140061470073], [-77.41343828553245, 34.681420071206276], [-77.41331729590671, 34.68191374692704], [-77.41331646348195, 34.6819154304586], [-77.41331499583276, 34.681917859581276], [-77.41313154433053, 34.68240983669853], [-77.41315054513804, 34.68249747702551], [-77.4133569672332, 34.68279304988645], [-77.41352739194532, 34.683409142836275], [-77.41363462294693, 34.68356991398835], [-77.41361961102993, 34.68369883429219], [-77.41356511238955, 34.683815273007305], [-77.41340402432826, 34.68383522108951], [-77.41292622383898, 34.68426651946547], [-77.41201889440421, 34.68425696030452], [-77.4120067111708, 34.684258782845845], [-77.4120002784299, 34.684256910458764], [-77.41199616530066, 34.68425346609316], [-77.41143560489722, 34.684072781550014], [-77.41141482133827, 34.68406570007323], [-77.41137458475933, 34.684066428893765], [-77.41099157979542, 34.68409463710806], [-77.41091449224693, 34.684258367295975], [-77.41087504707639, 34.684415825073415], [-77.41086707380171, 34.68463912226394], [-77.41086608757851, 34.68472490644385], [-77.41085418076119, 34.68496764014027], [-77.41084393566663, 34.68518049347974], [-77.41084094012464, 34.685242565848355], [-77.41085123997087, 34.68536135946051], [-77.41086217465953, 34.685529554385226], [-77.41086614022777, 34.685617576300444], [-77.41090564734321, 34.685824046696446], [-77.41104381443206, 34.68615222898299], [-77.41099482318687, 34.686344343703695], [-77.41100113759983, 34.68645395324807], [-77.41097084586951, 34.68668581270042], [-77.41080409060568, 34.686780511260785], [-77.41064120779295, 34.68705044717704], [-77.41060177943871, 34.68711578967757], [-77.41058142815262, 34.687164456807324], [-77.41050246146187, 34.68755467136458], [-77.41051716147024, 34.68764529813592], [-77.4106138260359, 34.687938257384715], [-77.41061776680488, 34.68795291733906], [-77.41062285042898, 34.68798034507339], [-77.41066556391362, 34.68825634188082], [-77.4106961452594, 34.688366567397885], [-77.41072250994087, 34.68866944505002], [-77.41073763066126, 34.68879560786951], [-77.41078033514326, 34.688855617235546], [-77.41090164802084, 34.6891735337645], [-77.41111190116791, 34.68953074737992], [-77.41111224476394, 34.68953203096856], [-77.41111270944953, 34.689535031004624], [-77.41126464700515, 34.689914802736354], [-77.41135334712965, 34.69017434169544], [-77.41139775611197, 34.690305624335146], [-77.41146750478325, 34.69049384157786], [-77.41131767589235, 34.69061303158486], [-77.41129636444276, 34.69071351875582], [-77.41127986252624, 34.69080115047121], [-77.41098544344058, 34.691163846130046], [-77.41085546441109, 34.69135333141568], [-77.41083242761603, 34.69143414149217], [-77.41091866157629, 34.69169959532746], [-77.41093577205567, 34.691837378718134], [-77.4110644203495, 34.69191480960124], [-77.41128017810854, 34.69204795029695], [-77.41133597713362, 34.69208361915996], [-77.4113650188215, 34.69210467079525], [-77.41158553313416, 34.69232840298619], [-77.41170226384669, 34.69241033929721], [-77.41168368547017, 34.692526376031125], [-77.41169136794456, 34.69272043763087], [-77.41169280671446, 34.69280912408129], [-77.41168147023956, 34.69286536185665], [-77.41165025071255, 34.69307379101724], [-77.41160263627248, 34.693323438168605], [-77.41160018827328, 34.69333583257474], [-77.41159825226504, 34.6933464236126], [-77.41155880554318, 34.6936009100657], [-77.41141773734955, 34.69376916448065], [-77.41135603751762, 34.69380952453487], [-77.41112799158786, 34.69390833737538], [-77.41106375367633, 34.69393836544949], [-77.41100653676692, 34.69396680072964], [-77.41071240245307, 34.69411187316276], [-77.4106749736869, 34.69417789871533], [-77.41062586917933, 34.69439272956331], [-77.41063922567291, 34.69463915635172], [-77.41062962757239, 34.6947246279734], [-77.41060493407255, 34.694944520320234], [-77.41064709133332, 34.695082221616985], [-77.41072002713923, 34.69531702958615], [-77.41076097653941, 34.695481064356116], [-77.41078107556038, 34.69556526219548], [-77.41084008447903, 34.69581694372816], [-77.41085246190703, 34.695869795510866], [-77.41085639076395, 34.69588761209048], [-77.41092075467029, 34.69617324556459], [-77.41094759863547, 34.69629591440186], [-77.41102431429285, 34.69647938567101], [-77.41111589128712, 34.69667206376448], [-77.4111819827876, 34.69682375285649], [-77.41125156265278, 34.69706181983582], [-77.41135482923579, 34.69744333766603], [-77.41137225008215, 34.69749105723665], [-77.4114903992612, 34.69785489357633], [-77.41159543628058, 34.69808662626955], [-77.41166197052156, 34.69822967678894], [-77.4117526089853, 34.6983908016802], [-77.41189127556544, 34.69858037865968], [-77.41208634381567, 34.69881747862736], [-77.41214881038806, 34.69891930570637], [-77.41209239549536, 34.69936114078736], [-77.41209005877147, 34.69937788911878], [-77.41208698221713, 34.6993914449832], [-77.41208966842783, 34.69944008884121], [-77.4120891294277, 34.699836898753325], [-77.41246882197821, 34.70006950282901], [-77.41252160850733, 34.70010285531258], [-77.41253613813588, 34.700111609600334], [-77.41256730302933, 34.700137741787394], [-77.41290628130074, 34.70038875199864], [-77.4130319010619, 34.700612939039644], [-77.4131672380407, 34.70072625321517], [-77.41348700415926, 34.70089356997585], [-77.41358419443503, 34.70091907880914], [-77.41405546149211, 34.701075024471606], [-77.41425463122627, 34.70116537957322], [-77.41479063803476, 34.701179644790145], [-77.41506108036819, 34.701223231784425], [-77.41509564260149, 34.70123306912636], [-77.41519058741657, 34.70122131504133], [-77.41542733373319, 34.701194332409536], [-77.4154904627233, 34.701177268786], [-77.41557475054707, 34.70115599468665], [-77.41589088235783, 34.701083948416], [-77.41606184926248, 34.701046828324515], [-77.41611428905807, 34.70103544265747], [-77.41625485290247, 34.70100054027504], [-77.4162914792635, 34.70099091875321], [-77.41646733982012, 34.70092293078222], [-77.41648610147888, 34.70091567746752], [-77.41660630016104, 34.70075763892346], [-77.41666941356789, 34.70060442510591], [-77.41665713840041, 34.70041640524569], [-77.4167077354671, 34.70017546078256], [-77.41670877095464, 34.70014164808479], [-77.41670499285247, 34.700102161518174], [-77.4166893590778, 34.69992656648974], [-77.41659927058862, 34.69983706576255], [-77.41654286513143, 34.69976449850457], [-77.41649650883454, 34.69971540553721], [-77.41642576679938, 34.69971441578477], [-77.41622748822181, 34.69970701846866], [-77.41595764233567, 34.69969702010327], [-77.4158619017794, 34.69969354976586], [-77.41573327309445, 34.699655866772744], [-77.41557110907706, 34.69959106554784], [-77.41544135384255, 34.6994320291823], [-77.41538086795538, 34.69935651638236], [-77.41533549643715, 34.69929801877109], [-77.41511856413766, 34.69901958033846], [-77.41510245729371, 34.69899609039677], [-77.41497238363279, 34.698708877250375], [-77.41494846772933, 34.69864418026459], [-77.41491104760958, 34.69855040147308], [-77.41478011255214, 34.69826805368457], [-77.41473075635203, 34.698065248648035], [-77.41465494847345, 34.69787391146683], [-77.41453668030914, 34.697629857161004], [-77.41449011769811, 34.697496316026985], [-77.41444383167008, 34.697405772345604], [-77.41428152386473, 34.69713697660862], [-77.4142454584061, 34.69705682406162], [-77.41419562260133, 34.69694963340983], [-77.41415005136473, 34.69675168690075], [-77.41414837858099, 34.69674616443158], [-77.41414696968822, 34.696742817274156], [-77.41414799949352, 34.69673790651076], [-77.41415431322989, 34.69673696895604], [-77.41447460612169, 34.696523920085454], [-77.41454367937499, 34.69649899785833], [-77.41487780875725, 34.69643937989599], [-77.41487816697502, 34.6964357749004], [-77.41478517542546, 34.69603416812925], [-77.4148031567402, 34.695854160319264], [-77.4148329244949, 34.69561372740853], [-77.41484450694007, 34.695589074172204], [-77.41489667556152, 34.69554129992415], [-77.41506539327563, 34.695386794302244], [-77.41505238808409, 34.69522454207961], [-77.4152228868697, 34.69526002850348], [-77.41574064545146, 34.69485389950384], [-77.41600575163426, 34.694769731244236], [-77.41611475457641, 34.69471760702638], [-77.41626091206844, 34.694686810682406], [-77.41645595666816, 34.69452750269805], [-77.41683432577076, 34.693840245937416], [-77.41687071009439, 34.693781930063025], [-77.41687313598926, 34.693713605188094], [-77.4168981951756, 34.69351199536379], [-77.41689524982044, 34.69336847037552], [-77.41686123226312, 34.69321951508666], [-77.4169980654823, 34.693169856906756], [-77.41711207932065, 34.69316218021167], [-77.41721774508119, 34.69315506547451], [-77.417352020698, 34.69317790811669], [-77.4174230149342, 34.69319501460603], [-77.41747707763102, 34.693205114168], [-77.41772277971293, 34.69326643293108], [-77.41801131576852, 34.69334920950095], [-77.41832110556413, 34.69341343117977], [-77.4185532234796, 34.69346876762151], [-77.41890471352508, 34.69361127206456], [-77.4191478887703, 34.6936931249002], [-77.41919587867066, 34.69371240213717], [-77.4192468813431, 34.693726445745895], [-77.41942350382118, 34.69376978916452], [-77.4195003598808, 34.693767535359875], [-77.4196203910056, 34.69371772321912], [-77.41973118225233, 34.693664344820995], [-77.41979980078575, 34.69363708063928], [-77.41986421648639, 34.69361756502883], [-77.41998962507586, 34.69357346652575], [-77.42021770949287, 34.693503388725034], [-77.42037120418814, 34.693449396115724], [-77.4205315005129, 34.693385195643444], [-77.42055554257152, 34.6933768134594], [-77.4205783922132, 34.69336437227325], [-77.42073004367269, 34.69328814562313], [-77.4209151125768, 34.69303041824442], [-77.42093063154272, 34.69296571594753], [-77.42092214797546, 34.69285427299764], [-77.42096504835928, 34.692563216227], [-77.42095887273405, 34.69241650531217], [-77.42123513742618, 34.69220257618438], [-77.42139294878625, 34.692128120274674], [-77.42175993976286, 34.692137616367894], [-77.42185673793759, 34.692138479439045], [-77.42189358259826, 34.69214185350896], [-77.42213359027912, 34.691988767878634], [-77.4221840974171, 34.69192576767512], [-77.42236097127751, 34.69178875701795], [-77.42252252195281, 34.69173114975335], [-77.4226817338618, 34.69163300818163], [-77.42269333116681, 34.69162546569978], [-77.42285145587606, 34.691521016248345], [-77.4229645951004, 34.69144080392821], [-77.42300995271302, 34.691406189273046], [-77.42308661335451, 34.69134124427838], [-77.42316155773923, 34.69128009407974], [-77.42334160295485, 34.69112522241513], [-77.42338581744286, 34.691029051261175], [-77.42344337980421, 34.69099293607163], [-77.42351304230603, 34.690975015854974], [-77.42368784487317, 34.690855149574816], [-77.42378050811364, 34.69079620699268], [-77.42392058142727, 34.69067403918156], [-77.42393577957691, 34.690662327879785], [-77.42407365935188, 34.69052757676715], [-77.42434898921243, 34.690258492242506], [-77.42434771235952, 34.69024732622958], [-77.42435754610405, 34.69024380228148], [-77.42436962447874, 34.69022964807228], [-77.4245965396828, 34.689886628904624], [-77.42466174730694, 34.689798083607066], [-77.42474710339793, 34.68964599000869], [-77.42492630269842, 34.68933153562944], [-77.42504890268648, 34.68913039705608], [-77.4252195880929, 34.688875036990645], [-77.42543703560455, 34.68875573387581], [-77.42563966574443, 34.68860046073231], [-77.4257705084134, 34.68850864873245], [-77.42596800630808, 34.68838938270335], [-77.42625124258971, 34.688156645513104], [-77.42627463096767, 34.688142802144974], [-77.42628565614461, 34.68812974878275], [-77.42630118519601, 34.68810471893548], [-77.4264813379541, 34.687732861724335], [-77.42653755588152, 34.68765877613303], [-77.42671185249179, 34.68736184772822], [-77.4268061329276, 34.6871936371076], [-77.4269818639651, 34.686927902171234], [-77.42707083029546, 34.686727141826715], [-77.42714863121002, 34.68658018257725], [-77.42740926828199, 34.686286438380705], [-77.4274200934441, 34.68627612788263], [-77.42744450261773, 34.68624761237629], [-77.42756936116331, 34.686062894734526], [-77.42760044983794, 34.686000179509776], [-77.42762916943994, 34.68594404468539], [-77.42764579776104, 34.685897262102884], [-77.4276776986962, 34.68582124967746], [-77.4276564454077, 34.68575362047095], [-77.42759829239779, 34.68571614811282], [-77.42752650021347, 34.68570221491176], [-77.42745517664808, 34.685657101994394], [-77.42739207014748, 34.68564076393572], [-77.427306140134, 34.68561851694167], [-77.42703891605767, 34.685564957198], [-77.42700360334803, 34.68555677328695], [-77.42697528345553, 34.68554887367903], [-77.42682121070159, 34.68552168728188], [-77.42669711679804, 34.685508679436936], [-77.42647930833242, 34.68548584762971], [-77.42638614592734, 34.68547608184607], [-77.42623492685436, 34.685460229971405], [-77.4262272653549, 34.685457303420776], [-77.42609613157299, 34.685371067218774], [-77.42596743983468, 34.6852230669103], [-77.42592243911832, 34.68513813746026], [-77.42593249943404, 34.68496574965255], [-77.42594800780793, 34.684936731625996], [-77.42608907686336, 34.684847807133565], [-77.42609719576153, 34.68470937493095], [-77.42609461172196, 34.68461990898735], [-77.42615527066876, 34.68445014956369], [-77.42620454382613, 34.6842886957154], [-77.42625483976667, 34.68420543784375], [-77.42636163135354, 34.684062097059005], [-77.42643491104073, 34.68391745488087], [-77.42651082949916, 34.683735900008855], [-77.42659816905666, 34.683636199446596], [-77.42667120148575, 34.68355590173975], [-77.4267135757209, 34.683527277223526], [-77.42693991494048, 34.68337438097689], [-77.42697792358575, 34.68334020099365], [-77.42695810136141, 34.68327710013154], [-77.42688646467036, 34.68302867371237], [-77.42685904010794, 34.682961755086474], [-77.42683216835906, 34.682827556016896], [-77.42681698622808, 34.68272483436782], [-77.42687548688527, 34.6826778563914], [-77.42699577537778, 34.68259080452618], [-77.42713939032632, 34.68262156356204], [-77.42719593419628, 34.68267766793406], [-77.42728396046034, 34.68278441712552], [-77.42740628849901, 34.68293095527259], [-77.42755391149664, 34.68311813322057], [-77.42766451183692, 34.68327280070252], [-77.42787288633303, 34.683277021578476], [-77.42809622851085, 34.68317227184088], [-77.42824656695618, 34.683140113499974], [-77.4283607585613, 34.6830811371791], [-77.42839608960718, 34.68301064549069], [-77.42842608670541, 34.68300810751553], [-77.42851081370702, 34.68294195777432], [-77.42855861950801, 34.6829024444543], [-77.42866702565286, 34.682812842246676], [-77.42878288472048, 34.68272954021126], [-77.42886910881876, 34.682662221122264], [-77.42917311469702, 34.68244234693652], [-77.42918331527073, 34.68243434745664], [-77.42918616964413, 34.68243274481964], [-77.42918948669212, 34.682431583745654], [-77.42921651858687, 34.682424231473654], [-77.42988361877028, 34.682247181709954], [-77.42998115314887, 34.682236799249424], [-77.43007550379485, 34.6821873218814], [-77.43033908685145, 34.68207415243019], [-77.43058313830697, 34.68185383705999], [-77.43061954723669, 34.68181853210333], [-77.43062863601564, 34.68179970323927], [-77.43067780835143, 34.68171692715155], [-77.43085246119617, 34.681417802412994], [-77.43089790694418, 34.68135682084773], [-77.43098201611295, 34.681240964196846], [-77.43107881412632, 34.68104003719305], [-77.43111138208754, 34.68087241731138], [-77.4311392575163, 34.68072894615317], [-77.43124868280273, 34.68056992712971], [-77.43137292324367, 34.68042167512543], [-77.43138075834175, 34.680411946119335], [-77.43138386607019, 34.68040865269342], [-77.43153516308487, 34.680290471694136], [-77.4316598371837, 34.680225639320895], [-77.43176256517306, 34.68018226371896], [-77.43190544279366, 34.68014802415163], [-77.43216444882742, 34.680122589642856], [-77.43230849003534, 34.68005914870582], [-77.43247934467044, 34.67991947504845], [-77.43269871933596, 34.68007801960893], [-77.43278489540768, 34.68009020732014], [-77.43304557742985, 34.68017708223425], [-77.43331539294383, 34.68026700009718], [-77.43335472634169, 34.68027400028995], [-77.43338168803032, 34.68026876467197], [-77.4335723903298, 34.68025594855216], [-77.43367806033834, 34.68020567745053], [-77.43375036463262, 34.68017301020527], [-77.43381772710205, 34.68014172788662], [-77.43406211567213, 34.67998554400035], [-77.43408439641449, 34.67997130480334], [-77.43410042196355, 34.67996106311583], [-77.43421157068778, 34.679892912862016], [-77.43430045785009, 34.67975149057789], [-77.43445009405708, 34.679751839852884], [-77.43485917808125, 34.67974236136151], [-77.43505498574723, 34.67987580312307], [-77.43519711641838, 34.679927904828546], [-77.43534538676742, 34.67997942725156], [-77.4354926801967, 34.6800302312751], [-77.43563757808923, 34.68007686286806], [-77.43577371734348, 34.68013360216666], [-77.43591346340162, 34.680230674713584], [-77.43613482621065, 34.68039298171302], [-77.43616073619661, 34.6804184388776], [-77.43617280510799, 34.680441684866224], [-77.43639195752577, 34.68076831289988], [-77.43640528207571, 34.68077434296809], [-77.43669664911029, 34.680845874531244], [-77.43689982123058, 34.68083501958638], [-77.43733583754845, 34.680812962674224], [-77.43734361742565, 34.68081274547127], [-77.4373470815994, 34.68081240959614], [-77.43735398062324, 34.68081311075881], [-77.43766619352394, 34.68081678005102], [-77.43783492687466, 34.680987484017294], [-77.43788478211206, 34.681037921541126], [-77.4379117582206, 34.68107544187233], [-77.43809029135673, 34.68135630175188], [-77.4380998136713, 34.681394554181296], [-77.43827450238574, 34.681700237674576], [-77.43830950103259, 34.68191566986304], [-77.43839630596489, 34.68216358149121], [-77.43872236346822, 34.682415883936315], [-77.4387910197201, 34.68246626292992], [-77.43912927491436, 34.68275039568345], [-77.43930546388859, 34.682903029575414], [-77.43943406101943, 34.68306956061266], [-77.43943611529684, 34.68322449434093], [-77.43953576694726, 34.68347350459777], [-77.43965581666183, 34.68386035453321], [-77.43966060790221, 34.6838677920501], [-77.43966490023786, 34.68387578740638], [-77.4397113852927, 34.683935374605014], [-77.43991592561542, 34.68420760899656], [-77.44007997575108, 34.68453783648624], [-77.4400987354454, 34.68457425796087], [-77.44009994120607, 34.68457719285837], [-77.44010065356157, 34.68458469069401], [-77.44016074777565, 34.68487545955593], [-77.44014206312269, 34.685006013141134], [-77.44012561172092, 34.68514269436633], [-77.44012516543498, 34.685359391096625], [-77.44010003889488, 34.68569279292277], [-77.44009739008195, 34.685917473023224], [-77.44009907404649, 34.68597197582002], [-77.44008242736297, 34.68603723265067], [-77.44001373891224, 34.686221659551705], [-77.44017630461512, 34.68653875719659], [-77.44041113807131, 34.6865744910127], [-77.4404838074738, 34.686583336177044], [-77.44075906117102, 34.686482244050275], [-77.44079612024406, 34.68645602902148], [-77.44087105722897, 34.68635216621274], [-77.44110799983918, 34.68604520276702], [-77.4411924386422, 34.685906729163506], [-77.44129549988638, 34.685776863203245], [-77.44143536515736, 34.68560061952243], [-77.44144302488644, 34.685355707378946], [-77.44145037881658, 34.68532635091104], [-77.44144372824361, 34.68527145468739], [-77.44141501771168, 34.68503446942315], [-77.4414019314707, 34.68492645525941], [-77.44142161402507, 34.684487636218726], [-77.44142150547432, 34.68447770159], [-77.44142240279248, 34.68447150129772], [-77.44143606433069, 34.684398441722216], [-77.44146893084866, 34.68421476445575], [-77.44153471069511, 34.683978206448195], [-77.44153976973897, 34.68396001336077], [-77.44167514597986, 34.683473168050604], [-77.4416761379586, 34.68344865515651], [-77.44167866689325, 34.68341242628857], [-77.44177154511706, 34.68323835045854], [-77.44178060015982, 34.683429141757586], [-77.44181270352139, 34.683496401969755], [-77.44221468279326, 34.68392175711391], [-77.4423293442619, 34.684092861646164], [-77.4423270966627, 34.68423527988363], [-77.44236878654264, 34.684522804862056], [-77.44236630550161, 34.68453631798004], [-77.44231949462531, 34.68479165616236], [-77.44232149292661, 34.684988959046045], [-77.44232377792349, 34.685214471868946], [-77.44232385416034, 34.68535221451143], [-77.44233181869959, 34.68543105772737], [-77.44238392978771, 34.685552328457], [-77.44250720809887, 34.68580424422753], [-77.44268248276225, 34.68603662749003], [-77.4427173058682, 34.68616294070857], [-77.4427910403873, 34.686360381326466], [-77.44287856279176, 34.68654202811479], [-77.44318984197241, 34.68662992236041], [-77.44334489326322, 34.68666100521332], [-77.44350930209626, 34.68660519968245], [-77.44353884333566, 34.68645265502185], [-77.44357878505615, 34.686349975122155], [-77.44356076347843, 34.68625721286797], [-77.44365868059637, 34.68581887607855], [-77.44365782426944, 34.68577027804194], [-77.44382629808257, 34.68542716617389], [-77.44388668526537, 34.68533955583912], [-77.44408331591406, 34.68521534403406], [-77.44413440376867, 34.68518307173906], [-77.44417285591717, 34.68516008530554], [-77.44445822224812, 34.68498969274388], [-77.44446805881017, 34.684983772241715], [-77.44446942758248, 34.684982971864166], [-77.44447119890596, 34.68498191554379], [-77.44480674769522, 34.68478662623816], [-77.44506443830679, 34.684633233289745], [-77.44512362561593, 34.68455687342526], [-77.44524430337958, 34.68452423615266], [-77.4454934753408, 34.684413694661444], [-77.44581744130464, 34.68433744688425], [-77.44588822277197, 34.68431120577911], [-77.44596013126004, 34.68426462274023], [-77.44644963671502, 34.6839994261043], [-77.44657479873268, 34.68393803466443], [-77.44672510654124, 34.6838349992634], [-77.44690578864828, 34.683731354825575], [-77.44707027837029, 34.683657365291836], [-77.44726548695701, 34.68357159105841], [-77.44752125910581, 34.68329750468691], [-77.44756067347542, 34.683269773365446], [-77.44761188537639, 34.68322651493073], [-77.44787574366431, 34.683073714205264], [-77.44807197870973, 34.68303439980741], [-77.44824785307506, 34.68300057508155], [-77.44829688941759, 34.68301437347104], [-77.44853944841475, 34.683052901416104], [-77.44880984807082, 34.683105070228414], [-77.44891602146888, 34.683128380015596], [-77.44944642757373, 34.68328741636501], [-77.44958129112017, 34.68341708517568], [-77.44982254198536, 34.68364269046255], [-77.44995455550136, 34.68374618794665], [-77.45011790046158, 34.683747492852376], [-77.45040050811627, 34.68384777006906], [-77.45055055206544, 34.68390100958833], [-77.45067729087256, 34.68391404497464], [-77.45095176365312, 34.68389612487789], [-77.45111873527766, 34.68388786073767], [-77.45120225943789, 34.68386310587834], [-77.45142217225876, 34.6838675645982], [-77.45182598269352, 34.6839220085085], [-77.4520839082009, 34.68396994432301], [-77.4521754612986, 34.68399942488555], [-77.45242381542855, 34.68407048240311], [-77.4530375904443, 34.684085828455785], [-77.45305881766778, 34.6840903643417], [-77.45307646579424, 34.6840967631478], [-77.45308735731165, 34.68408355973654], [-77.45351395692805, 34.684064111369274], [-77.45373392762154, 34.683971476118515], [-77.45390402440628, 34.683953971506305], [-77.45398913126539, 34.68383973399959], [-77.45415273520466, 34.68362012899641], [-77.45429738296582, 34.68338846665994], [-77.45404781923631, 34.68288544902268], [-77.45396413299724, 34.68280602753384], [-77.453830971515, 34.68266644816918], [-77.45381085618665, 34.682646822922656], [-77.45380206611698, 34.68262728801835], [-77.45375099861434, 34.68244860426213], [-77.45374194743756, 34.682194164179975], [-77.45374790794094, 34.682078411694825], [-77.45375606473868, 34.68200005611877], [-77.45380324621023, 34.68154683488516], [-77.4538117482561, 34.68154172056589], [-77.45380388022225, 34.681512574318354], [-77.45373513972784, 34.68111592969399], [-77.45363418175191, 34.68092065090296], [-77.45352948627507, 34.680408362444524], [-77.45345717264331, 34.68023941234186], [-77.45342429582756, 34.68006908107684], [-77.45333281046786, 34.67994635063732], [-77.45320216867775, 34.679763127696205], [-77.452982035182, 34.67946051001784], [-77.45297605496519, 34.67945187474591], [-77.45279237317848, 34.679141402137205], [-77.45285866946172, 34.6789901824325], [-77.45296909394474, 34.67883006901534], [-77.45320450137166, 34.6783323303753], [-77.45321930527321, 34.67829815640778], [-77.4532225873184, 34.67828025704177], [-77.45323272711074, 34.678239746411606], [-77.45339180364053, 34.677739079868076], [-77.453421921587, 34.677484914439304], [-77.45348502746432, 34.677152294501894], [-77.45349320492417, 34.677095334430476], [-77.45349308891085, 34.67700715881084], [-77.45350879779593, 34.67672162594374], [-77.45349875476033, 34.676537721295816], [-77.45347561570424, 34.676114061014204], [-77.45346908168354, 34.67599442024171], [-77.4534642698127, 34.675906295327245], [-77.45376894180065, 34.67575563207651], [-77.45395018598158, 34.6758572883095], [-77.45434358460446, 34.675967901796014], [-77.45475427374942, 34.67630828282043], [-77.454789496891, 34.67633747600675], [-77.45480640703092, 34.67635175988339], [-77.45484056064032, 34.67638736763989], [-77.45537399605757, 34.67692850040835], [-77.45559861328941, 34.67717770016397], [-77.45560455248254, 34.677273771172835], [-77.45568903675029, 34.67757723077036], [-77.4556575077826, 34.67768379511418], [-77.45559641171826, 34.67789029081152], [-77.45556971887036, 34.677980507399894], [-77.45550160609804, 34.67821071589806], [-77.45545039986702, 34.67838378385131], [-77.45543033302394, 34.678451607985764], [-77.45537874898474, 34.67858623256335], [-77.4551591463279, 34.678629185918126], [-77.4548918376918, 34.67872941248115], [-77.45466335512391, 34.678802898686634], [-77.45481728642835, 34.67904691807955], [-77.45494425544399, 34.67926658581536], [-77.45510190568434, 34.67949567841042], [-77.45514543144694, 34.67956041754613], [-77.45515780820197, 34.67957498049352], [-77.45518857630965, 34.67960584079035], [-77.45543701476784, 34.679864660310145], [-77.45555547709773, 34.679973842268375], [-77.45582983763491, 34.680231616648406], [-77.4559977543607, 34.68034788519843], [-77.45607632953518, 34.68042096098702], [-77.45635196169158, 34.680631816234104], [-77.45641841839003, 34.68069271731122], [-77.45643901802043, 34.68072317167195], [-77.45668852011589, 34.68098499138425], [-77.45682238195093, 34.68116920858073], [-77.45716217915538, 34.68158850598977], [-77.45750252366803, 34.682167105280534], [-77.45755151543389, 34.682289767232035], [-77.45731887174254, 34.682652281080976], [-77.45703503124713, 34.68308997461337], [-77.45696245281587, 34.68320189153487], [-77.4569005995977, 34.6833653976357], [-77.45668861508729, 34.68422417643217], [-77.45646176336732, 34.68514313173756], [-77.45642001203379, 34.6852483056671], [-77.456324650898, 34.68539169125961], [-77.45588934406994, 34.68618083836922], [-77.45566591600146, 34.686832656723034], [-77.45463262117656, 34.68797764390741], [-77.45447766982144, 34.688049022755365], [-77.45302379784036, 34.68849566638996], [-77.45170630737483, 34.68876943667019], [-77.45139571502214, 34.688825589562114], [-77.45113287369071, 34.68899051885359], [-77.44975458075756, 34.689134162709635], [-77.44901819369518, 34.689369428924714], [-77.44898916481941, 34.689378575640184], [-77.44896620784172, 34.68938148618792], [-77.44855813634626, 34.68976764123198], [-77.44853704260363, 34.69013491563097], [-77.44850099694685, 34.69030668532286], [-77.44854342622799, 34.69042671873108], [-77.44855083920326, 34.69081819611598], [-77.4485517114326, 34.690869682391174], [-77.44855394413204, 34.6908842091085], [-77.44871438955388, 34.69124818143588], [-77.44897616236632, 34.691563532958], [-77.44900106949682, 34.69157490781604], [-77.44954596366455, 34.69178347600289], [-77.44955296250077, 34.69178494785621], [-77.44956458444459, 34.691786045543054], [-77.45013662351438, 34.69198263797556], [-77.450152395512, 34.69200190510928], [-77.45031965194491, 34.69236362591123], [-77.45050869518091, 34.69291223689552], [-77.45061368641952, 34.693133706907055], [-77.45066463443712, 34.69329895252836], [-77.45096463853099, 34.69388002563811], [-77.45096601025254, 34.693963290929126], [-77.45129500083017, 34.69462568507697], [-77.45130070036289, 34.694632562392265], [-77.45130675005613, 34.69464138268562], [-77.45186147741418, 34.69529127156863], [-77.45199166185029, 34.695439748867784], [-77.45225478340849, 34.69573915004157], [-77.45254748362919, 34.69589769249292], [-77.45304549118745, 34.696006057230925], [-77.45341992724936, 34.69614227800861], [-77.45396214394435, 34.696199859272156], [-77.45404259177545, 34.69620515246908], [-77.45408269879164, 34.696205567653585], [-77.4541649105747, 34.69619920642009], [-77.4545028196402, 34.6961444302691], [-77.45472674131247, 34.696055312769246], [-77.45487127393997, 34.6959988877639], [-77.45507068905412, 34.69595672234781], [-77.45559937412675, 34.695693412269904], [-77.45670122738294, 34.69540848567216], [-77.45701502814488, 34.695016239241305], [-77.45761311358311, 34.69493757336698], [-77.45828594084142, 34.69528716818881], [-77.45981978874065, 34.696171597139845], [-77.46038216468214, 34.69669461700289], [-77.46121695520739, 34.69763468964595], [-77.46176937078297, 34.698295477141464], [-77.46303131026181, 34.6998560458271], [-77.46342208508402, 34.70028535705933], [-77.46370379277684, 34.70047215198735], [-77.46450401124412, 34.701269414373414], [-77.4647573697432, 34.701513502219655], [-77.46566858639164, 34.70254401640338], [-77.46624785776676, 34.70267681482741], [-77.46803434556081, 34.7032283158694], [-77.46877454569542, 34.704098046766404], [-77.46883500921035, 34.705167937372856], [-77.46842804275846, 34.70767724137888], [-77.46824974799446, 34.70838643885318], [-77.46785738089655, 34.7091479647845], [-77.4668568831198, 34.711089854793244], [-77.46487325376245, 34.71167886652646], [-77.46283140495666, 34.71236253830444], [-77.46222273697961, 34.711501066331884], [-77.46251089617817, 34.710853765981255], [-77.46167753221377, 34.70994293677609], [-77.4619720181744, 34.70909163821478], [-77.46207793320059, 34.708466633321024], [-77.46222966798899, 34.7080177249829], [-77.462265541584, 34.70791159045711], [-77.46241590421297, 34.707466738942834], [-77.46249214316597, 34.70695169513046], [-77.46249204075087, 34.706924101682155], [-77.46248306277761, 34.70691447379155], [-77.46227540462641, 34.706597741915004], [-77.46226064620868, 34.70657523155331], [-77.46226005989215, 34.70657452567517], [-77.4620129610525, 34.70632343345654], [-77.46188172097689, 34.70628606837835], [-77.46145233575645, 34.7060121904381], [-77.46105622130244, 34.705737893745024], [-77.46098555474413, 34.70544316185751], [-77.46095331731456, 34.70533441741646], [-77.46093021151785, 34.70527081859406], [-77.46077327430737, 34.70506887898687], [-77.4605516559507, 34.70505569958138], [-77.46045875840915, 34.705048355787106], [-77.46040771838298, 34.70504223097039], [-77.45977207852629, 34.70520677308964], [-77.45958973002276, 34.70520101890362], [-77.45858735585149, 34.70487091109233], [-77.45845274835699, 34.70483880747398], [-77.45801086810755, 34.704648068009426], [-77.45762976039613, 34.70449003421302], [-77.4574848356599, 34.70425066754663], [-77.45695386455085, 34.703885452492685], [-77.45694773862495, 34.70388193788963], [-77.45672673125813, 34.70351445537429], [-77.45695324947552, 34.70387250053124], [-77.4571999400037, 34.703408633586434], [-77.45724854127329, 34.70330989351777], [-77.45732118001924, 34.70317149739374], [-77.45728528904348, 34.70293195520257], [-77.45728066687144, 34.702877847657675], [-77.45726787814762, 34.70285537820332], [-77.45725124339332, 34.70284152607262], [-77.45722237215634, 34.70282918792212], [-77.4569680620073, 34.702712615442536], [-77.45681795177617, 34.702716182027615], [-77.45674543386505, 34.70279758044087], [-77.45651818815999, 34.70316040564253], [-77.45651411950037, 34.7031671774366], [-77.45651323530551, 34.703168710023185], [-77.45650934304932, 34.703172113283166], [-77.45562812533825, 34.70397744615937], [-77.45544478495586, 34.70441024742494], [-77.45479742539497, 34.70467901310705], [-77.45318700610287, 34.70536050091128], [-77.45278277587921, 34.70604164955449], [-77.44987823363905, 34.705940701831615], [-77.4493450292593, 34.70580350991387], [-77.44883079180835, 34.70556585060387], [-77.44617628200469, 34.70514666349652], [-77.44409824228751, 34.706216269560564], [-77.4427907017367, 34.70765918774486], [-77.44131992266776, 34.706958139287195], [-77.44108793374782, 34.70603870288532], [-77.44064268650693, 34.70414945187943], [-77.44302801272633, 34.70404635450906], [-77.44061352375462, 34.70266543936801], [-77.44016571504558, 34.70208521687494], [-77.4391777978179, 34.69969346691424], [-77.4397565124373, 34.69843057866042], [-77.43925363476755, 34.696375764216484], [-77.43919031446933, 34.69611701832469], [-77.43916574576284, 34.69598790728009], [-77.43885756742617, 34.69525082093472], [-77.43857971774389, 34.69458627578856], [-77.43880863421498, 34.69362690125447], [-77.43879261239329, 34.693538442680264], [-77.4385528559002, 34.6928118780668], [-77.4387905302003, 34.692502487846376], [-77.43882114720643, 34.692200484409504], [-77.4389549998387, 34.692000947876565], [-77.43878548058669, 34.691821970305966], [-77.43870659628459, 34.69162026611268], [-77.43840138586566, 34.691248352909085], [-77.43831023880767, 34.69112754304365], [-77.43821996978957, 34.69108714093672], [-77.43811662041895, 34.691049010865065], [-77.43762117802063, 34.69094180998262], [-77.43757520540053, 34.690959498849], [-77.437171039504, 34.69099896678585], [-77.436934366734, 34.69110077057522], [-77.4367428133036, 34.69122751198742], [-77.43661669066073, 34.69158837527262], [-77.43652928242997, 34.6917119003278], [-77.43630390876324, 34.691965005822716], [-77.43609406259736, 34.69222964244258], [-77.43560319837925, 34.69250620166229], [-77.43537955314602, 34.6925572918535], [-77.43522474003058, 34.69258014526561], [-77.43487830114074, 34.692811796749154], [-77.43470330277695, 34.69294748171744], [-77.43439889411204, 34.69320322333266], [-77.43407199960902, 34.69341114658873], [-77.43390634246818, 34.69359005663236], [-77.43358556286687, 34.69399237959506], [-77.43355942260001, 34.694027809607476], [-77.43354967496744, 34.69405295159972], [-77.4334797122068, 34.69418164950017], [-77.43330587596617, 34.69449821097162], [-77.43315015060372, 34.694895487349356], [-77.43311217513747, 34.69498953824908], [-77.43307975896944, 34.6950962638895], [-77.43303803816346, 34.695522672209805], [-77.43306004153372, 34.69563218464147], [-77.43307193573803, 34.695992312552946], [-77.4330952646323, 34.69610173722901], [-77.43307643882342, 34.6962705821106], [-77.43313218643097, 34.69667370246109], [-77.43310079606456, 34.69687305132913], [-77.43309028328004, 34.69693857937706], [-77.43306924282093, 34.697006610344516], [-77.43299680054339, 34.69718542108285], [-77.43295470068603, 34.697567180669644], [-77.43288202884773, 34.69770434774853], [-77.43284292894035, 34.69787345213949], [-77.43288176325001, 34.69826331110458], [-77.43263506922288, 34.69854033289522], [-77.43208140851043, 34.6990145152857], [-77.43203111427125, 34.699048776935015], [-77.43197911166023, 34.699065818839955], [-77.43139558301463, 34.69916977065858], [-77.43119633496006, 34.69917994338314], [-77.43073825605387, 34.69922652417931], [-77.43033327982235, 34.69926489175956], [-77.43010191166391, 34.69921076434699], [-77.42985722330329, 34.69911944126703], [-77.42950599752879, 34.69905528630421], [-77.42927923019704, 34.69903764113076], [-77.42919449859319, 34.699024344833845], [-77.42896723804628, 34.69904444429193], [-77.4288665649839, 34.69905019360705], [-77.42880542128076, 34.69907422717771], [-77.42869202206838, 34.69915928899556], [-77.42855781765655, 34.69926717926023], [-77.4286327017918, 34.69947651793444], [-77.4286678606007, 34.69958519210738], [-77.42867872899033, 34.69961121921336], [-77.42868683288671, 34.69967126408017], [-77.42872765061085, 34.700037187934925], [-77.42874177034265, 34.700170102924055], [-77.42879733252249, 34.70039677491265], [-77.42882435551158, 34.70044321799991], [-77.42906842907271, 34.700562680273904], [-77.42906963841092, 34.70056316883959], [-77.42910399502577, 34.700576294671265], [-77.42935037076845, 34.70067010334617], [-77.42936942460135, 34.70068075571831], [-77.42963508529014, 34.70082396681813], [-77.42980461706615, 34.70092693536127], [-77.43011833870497, 34.70121050182578], [-77.43013433185011, 34.701235734290925], [-77.430141742131, 34.70128793512636], [-77.43019140370095, 34.70127647530272], [-77.43033898483444, 34.70137352695953], [-77.43029557899516, 34.701446750658434], [-77.4301703938842, 34.701508234270946], [-77.43006422473688, 34.70155580958659], [-77.42993785897289, 34.701609882179], [-77.42982683184368, 34.701667637901494], [-77.42930420999312, 34.701967331181805], [-77.42925893636661, 34.70199583904156], [-77.42923657866882, 34.70205674007181], [-77.42907668912233, 34.702523474653184], [-77.42906809197228, 34.702573430218386], [-77.42902510340923, 34.702931781807585], [-77.4290080643241, 34.70304486235318], [-77.42901263667113, 34.703060143391966], [-77.42921175776254, 34.70341440467614], [-77.42939201270731, 34.703751857106205], [-77.42939734370037, 34.70377519470051], [-77.4294186334712, 34.70378669740544], [-77.42946321973906, 34.703825418999536], [-77.42990338816895, 34.704326410690236], [-77.43000720650403, 34.70441348438132], [-77.43044178291176, 34.70467700872053], [-77.4304427581631, 34.70467741579108], [-77.4304463993158, 34.70467957616766], [-77.43089234982637, 34.704936904282974], [-77.43098883416584, 34.70500525889741], [-77.43115133277593, 34.705088886440706], [-77.43135654469097, 34.7051895906866], [-77.4315343914154, 34.70533490704061], [-77.43177425668271, 34.70546167234095], [-77.43181696943398, 34.70571781797349], [-77.43163682066766, 34.70588235151675], [-77.43149781438733, 34.70616529499654], [-77.431426306799, 34.706286102045325], [-77.43138470345859, 34.70651700721232], [-77.43144719457642, 34.7067066552265], [-77.43149105818283, 34.70713972988141], [-77.43152022736896, 34.70729124620017], [-77.43151071484556, 34.707357203356], [-77.43146923804544, 34.70777503084176], [-77.43147522616044, 34.70783457093837], [-77.43144084409668, 34.7082791371066], [-77.43146911549738, 34.70859947146633], [-77.43142319649338, 34.70893449430713], [-77.4315004517951, 34.709882148581286], [-77.43158770116901, 34.710003414883445], [-77.43247780463722, 34.71093481481144], [-77.4328080427627, 34.71127976156538], [-77.43353688488902, 34.71170513646329], [-77.43448926798919, 34.71203943923665], [-77.43468566128203, 34.71216551857716], [-77.43494195459442, 34.7121748901076], [-77.43690561511033, 34.7129969109091], [-77.43707144500284, 34.71278141319134], [-77.43816114503454, 34.71205755484464], [-77.43902272642131, 34.711590960847495], [-77.43988365760688, 34.710112590927544], [-77.44032892257111, 34.70981137977596], [-77.44040736779574, 34.709746299895855], [-77.44059172645868, 34.709475588647365], [-77.44121358718344, 34.70955752685238], [-77.44309185386108, 34.70969587425665], [-77.44552948392989, 34.71213360144753], [-77.44706926910003, 34.71367342515609], [-77.447241663565, 34.71418410256743], [-77.4475298632106, 34.714563946982736], [-77.44905806857994, 34.7169973009978], [-77.44892413798733, 34.717678925465165], [-77.4474504938199, 34.719008305621855], [-77.44562057526687, 34.72200342687489], [-77.44515035684985, 34.72267677240054], [-77.44495572218898, 34.72315777063624], [-77.44428050128147, 34.72613406088669], [-77.44580734193683, 34.72690222973207], [-77.4474928328437, 34.7273017004826], [-77.44820770293447, 34.72746919672627], [-77.44840051625721, 34.72798595511202], [-77.4484626166922, 34.72830609612994], [-77.44818792038949, 34.728436933362794], [-77.4475871947906, 34.72961461215305], [-77.44735754909507, 34.73015609316411], [-77.44736244512877, 34.73020490461044], [-77.4469428010607, 34.73112922441872], [-77.44695652441456, 34.73126715568485], [-77.44668132504748, 34.731956723794084], [-77.446611559639, 34.73213153100403], [-77.44641351769599, 34.73238661069299], [-77.44619008482023, 34.73264955206806], [-77.44586330895521, 34.732616223380006], [-77.44546018574948, 34.73253516012263], [-77.44510627394942, 34.73237461028065], [-77.44471185066413, 34.732203901433216], [-77.4443326992851, 34.732000113797056], [-77.44379294392974, 34.731694530165036], [-77.44378187086944, 34.73168796513751], [-77.44376386587629, 34.73167729019085], [-77.44374470696572, 34.73168898832603], [-77.44375446792483, 34.7317105860974], [-77.44360082385941, 34.73219773741804], [-77.44321923705564, 34.7322829450314], [-77.4429438934024, 34.73236839705834], [-77.44284355729448, 34.73241695211633], [-77.4426356262355, 34.73241954277784], [-77.44243908698286, 34.73250393362386], [-77.44228218393751, 34.73243950976275], [-77.4420553304731, 34.73241961458002], [-77.44166855657602, 34.73234442270555], [-77.44136537441072, 34.732245432137375], [-77.44089565211505, 34.73237063820477], [-77.44107354066155, 34.73282928742511], [-77.44146155545525, 34.73305989640055], [-77.44196772376543, 34.733348995856396], [-77.44170601113498, 34.73377182269316], [-77.44169965600216, 34.73390726447627], [-77.44162450287098, 34.734022857704716], [-77.44175995753835, 34.73424455152626], [-77.44189014005829, 34.734274193727934], [-77.44226227948114, 34.73445798942056], [-77.44233684090344, 34.7344666904936], [-77.44255253895278, 34.73434709234697], [-77.44264113212353, 34.7343291510325], [-77.44270499935473, 34.734302221975064], [-77.44288689548975, 34.73430468837585], [-77.44302883241126, 34.73429096060701], [-77.44307113949031, 34.73428386185528], [-77.4431541091257, 34.73427775155524], [-77.4434766787405, 34.73419860977944], [-77.44369588056406, 34.734201436481285], [-77.44395729386935, 34.734235973650705], [-77.44407929028253, 34.73425353684899], [-77.44431999174024, 34.73426032650231], [-77.44444259026977, 34.73428098016629], [-77.44479030733025, 34.7344032514482], [-77.44483780926043, 34.73468665486574], [-77.44492668462851, 34.73479275960029], [-77.44503852446388, 34.734936081777036], [-77.44500569159065, 34.73520062168491], [-77.444883861823, 34.7354410676722], [-77.44464017594653, 34.73580515378934], [-77.44472174227428, 34.73594344817285], [-77.44465097786886, 34.73611646592113], [-77.44468265677358, 34.736233845415946], [-77.44472204253267, 34.73623252508285], [-77.44506181856686, 34.73612864914887], [-77.44521171878247, 34.73611461685101], [-77.44541379928327, 34.735867117669386], [-77.44574027182439, 34.73599972616148], [-77.44596216136617, 34.736146332753634], [-77.44615275457306, 34.73644334939997], [-77.44673800227362, 34.736983549524204], [-77.44713647848154, 34.73744197414571], [-77.44734162249482, 34.737520282923526], [-77.44778662582945, 34.73779150244956], [-77.44806133786722, 34.73794886776261], [-77.44836110487478, 34.73802206039255], [-77.44867580813741, 34.73820392729592], [-77.44892047538889, 34.73830486123164], [-77.44925123093564, 34.738345154010155], [-77.44974021107714, 34.738814475968574], [-77.44991512819594, 34.73896094812976], [-77.45000201743085, 34.73899910785515], [-77.45019477288172, 34.73918924039715], [-77.4505003886631, 34.73949284868203], [-77.45060154425165, 34.73956734397939], [-77.45058924050997, 34.73967002221953], [-77.45090335818686, 34.74031646673812], [-77.45091012426582, 34.74033142471996], [-77.45091960268721, 34.74034440561735], [-77.45135894281405, 34.74095818941952], [-77.45146221603014, 34.74099388006807], [-77.4514568179647, 34.741091029609485], [-77.45178444298216, 34.74170395715014], [-77.45182526230774, 34.74173523273382], [-77.45184846590833, 34.74178680897649], [-77.45225568364768, 34.742291593407614], [-77.45236109739913, 34.74240447490395], [-77.45255098352197, 34.74259115110453], [-77.45267569911289, 34.74271961365574], [-77.45266115320634, 34.743106671434326], [-77.4526749288619, 34.74316636983555], [-77.45266344532949, 34.74318942057648], [-77.45265961638279, 34.743213737942426], [-77.45271138472688, 34.743597589976574], [-77.4530193595719, 34.7438010726343], [-77.45308691374905, 34.74385161502054], [-77.45314664678457, 34.743862373359434], [-77.45361808635018, 34.74403113206963], [-77.45368096839984, 34.744014649874906], [-77.45380104641175, 34.74414568866667], [-77.45392499568696, 34.74443040672894], [-77.45412490957584, 34.744817773752956], [-77.45378630820622, 34.74505319706522], [-77.45336333720141, 34.74511295849668], [-77.45304313366167, 34.74533476286116], [-77.45231329986841, 34.74530311357263], [-77.45200997422847, 34.745358218510674], [-77.45135382963059, 34.74496803774482], [-77.45097061787177, 34.744770489868586], [-77.45090634053635, 34.744740023075515], [-77.45050688591375, 34.74407114990791], [-77.45046817952826, 34.74403799367213], [-77.4502589515296, 34.74377893708754], [-77.44999423567732, 34.7434597012099], [-77.44984355987951, 34.74345510323133], [-77.44893739822774, 34.74311611193569], [-77.4487622075871, 34.743285500294064], [-77.44812379053474, 34.74328264522302], [-77.44812122135957, 34.74328098126622], [-77.44812147774843, 34.743278868805], [-77.44803762919726, 34.7426918320423], [-77.44841164773082, 34.742280708011094], [-77.44844296682405, 34.74230878733754], [-77.44842991189313, 34.74225931465598], [-77.4487553788159, 34.74182451551334], [-77.44893225541959, 34.74161270808689], [-77.44900413557096, 34.74135239625961], [-77.44897914090576, 34.74113726517717], [-77.44914127654289, 34.74084129288423], [-77.44914452306055, 34.7406218226856], [-77.4491565206673, 34.740567116055814], [-77.44898268743785, 34.740306514870106], [-77.44892502040886, 34.74026699712073], [-77.44874243625772, 34.740181500864104], [-77.44869960072145, 34.740176848922175], [-77.44852511259091, 34.74020038867222], [-77.44835043342673, 34.74027563703443], [-77.44813438693222, 34.74030988364129], [-77.44780160465612, 34.74037336539834], [-77.44734284796019, 34.74051240485467], [-77.44696916322535, 34.7406175187377], [-77.44693232265575, 34.740628739068065], [-77.44659589857, 34.74078774131338], [-77.445689575497, 34.74072428643988], [-77.44566548381442, 34.74069113075432], [-77.44557345184775, 34.740613195962325], [-77.44516275857224, 34.740212488382284], [-77.44491728968276, 34.74028922754386], [-77.44477092127558, 34.740214778364894], [-77.44456528862133, 34.74006135983667], [-77.44416388974771, 34.73966168457151], [-77.44412748072045, 34.7395904302245], [-77.44406312610279, 34.73958080296786], [-77.44361871734273, 34.738912219606895], [-77.44361778310147, 34.73891027668747], [-77.44361661398368, 34.738907908819755], [-77.4436088319374, 34.73889998190967], [-77.44306495944626, 34.738598455786224], [-77.44296160606044, 34.738682662095954], [-77.44259599891264, 34.73874106375652], [-77.4423348753009, 34.73899916503491], [-77.44233239072253, 34.739021867282055], [-77.4422979770284, 34.73903325656466], [-77.44203908708498, 34.739326740323875], [-77.44193883730873, 34.73944340030506], [-77.44183874413957, 34.7396525864206], [-77.44182844654291, 34.73996385776525], [-77.44165205019306, 34.74017689582509], [-77.44164994253278, 34.740186424480235], [-77.44158067793595, 34.740436322374364], [-77.44128749805627, 34.74077541112986], [-77.44121516096524, 34.74097158431603], [-77.44110136828395, 34.74095285592552], [-77.44088085949345, 34.74117323340059], [-77.44082583535348, 34.741290664166], [-77.44066701608416, 34.741571613309176], [-77.44064694760607, 34.741787194179494], [-77.44065858663674, 34.74193063155381], [-77.4406363664481, 34.74206301065604], [-77.4405760433581, 34.742170668701874], [-77.44053060726297, 34.742305575888565], [-77.44050116144395, 34.74244272237622], [-77.44045481447054, 34.742558610623696], [-77.44043665868423, 34.74269065961105], [-77.44040848884363, 34.74282193936928], [-77.44039840700106, 34.74293200295977], [-77.44037951364572, 34.74309133004163], [-77.4403601273275, 34.743313302731295], [-77.44035456704594, 34.74336212786291], [-77.44035318954941, 34.74339727810268], [-77.44036740431517, 34.74348939639701], [-77.44047393195169, 34.74379331287714], [-77.4405948026579, 34.74400507854816], [-77.44076518738697, 34.74433070877217], [-77.44102841988148, 34.744454794638386], [-77.44097424373332, 34.744696657173314], [-77.44111287850806, 34.74529026175232], [-77.44111184037871, 34.745303748613814], [-77.44110998113416, 34.7453135897116], [-77.44111751370943, 34.74532914406468], [-77.44127612800278, 34.74569068306731], [-77.44131788586083, 34.745744708421256], [-77.44136412086928, 34.74570055923941], [-77.4415658581479, 34.7455698041478], [-77.44126519674055, 34.745357320541416], [-77.44168882880903, 34.74548321549534], [-77.44171595947871, 34.74547703070424], [-77.44207743626063, 34.745370222861894], [-77.44285474805595, 34.74547846618589], [-77.44299602504198, 34.74548535144142], [-77.44307603824177, 34.74550577085722], [-77.44359701106502, 34.74562446279323], [-77.44366938892836, 34.74563812974161], [-77.44407864078019, 34.74564783726205], [-77.44423934230275, 34.74562067246213], [-77.4444038881181, 34.745724944028325], [-77.44485651532797, 34.74570383689768], [-77.4450200894929, 34.745690031889666], [-77.44527193913484, 34.745638883237575], [-77.44543138679886, 34.74561408871497], [-77.4455368718603, 34.74556860426656], [-77.4458479683138, 34.745546771623445], [-77.4461767399059, 34.7453959073379], [-77.44624182211652, 34.74534834704911], [-77.44671064704985, 34.745460335318626], [-77.44684774877948, 34.745470374069725], [-77.44727838125476, 34.7457806833763], [-77.44765714248484, 34.746153181602715], [-77.44776664744066, 34.746727146384416], [-77.44786696717547, 34.748222274774314], [-77.44713068609423, 34.74892552760406], [-77.44678343922278, 34.7483034416673], [-77.44608027178467, 34.7481232868798], [-77.4455042426305, 34.74797569854726], [-77.44482984459972, 34.748012424449776], [-77.44462925524785, 34.747416585382936], [-77.44436717493295, 34.74739519082117], [-77.44424829215252, 34.74742000835272], [-77.44418358852042, 34.747494786313936], [-77.44413506117468, 34.747622780104514], [-77.44460529918321, 34.74820109864512], [-77.44468209035303, 34.748523116292816], [-77.44517209412106, 34.748975767967664], [-77.44563789099197, 34.749679775496816], [-77.44558957901982, 34.750587261831896], [-77.44679551873291, 34.75008409729423], [-77.44971266212202, 34.7488668748487], [-77.45262971660524, 34.74764958581654], [-77.45408821050653, 34.74704091633349], [-77.45481744912198, 34.74673657535074], [-77.45554668218058, 34.74643223020739]], [[-77.52010028734605, 34.719465124951896], [-77.51984787061338, 34.71911171960701], [-77.5191178758376, 34.718089641152474], [-77.51826814866496, 34.71689987891108], [-77.51815187911566, 34.71670729289191], [-77.51804635470461, 34.716468514343205], [-77.51747479085645, 34.715204149573154], [-77.5169016885227, 34.71418802765875], [-77.51668672948601, 34.71374740806569], [-77.51494144222183, 34.71126902087712], [-77.51460738550014, 34.7106142104129], [-77.51281704008038, 34.708220498189135], [-77.51251481318918, 34.707920405323726], [-77.51076274264092, 34.70616838305584], [-77.51016396700832, 34.705757352533006], [-77.50726861337304, 34.70533586995103], [-77.50669567572001, 34.706157219024746], [-77.5062208192924, 34.70661327922176], [-77.50540733740027, 34.70696193874768], [-77.50477091325439, 34.707234710638154], [-77.50414528828739, 34.70750283431332], [-77.50373859277235, 34.708443541588146], [-77.50492777652447, 34.708624517340645], [-77.50607394882383, 34.70936036889256], [-77.50705120165566, 34.71014983007525], [-77.50765233013664, 34.71037977942709], [-77.50908894167357, 34.71129180681865], [-77.50925072838106, 34.71141148317492], [-77.50941424203945, 34.711576468107225], [-77.51068178516013, 34.712685639766455], [-77.51303939085051, 34.714748540889865], [-77.51378432551284, 34.71346868568526], [-77.51415222243709, 34.71480712093832], [-77.51366234900351, 34.715293608259245], [-77.5148259357621, 34.71631167868054], [-77.51536127880924, 34.71689013535818], [-77.5154343671174, 34.71695041280403], [-77.51550940802542, 34.7170554686832], [-77.51592560289593, 34.71763814210689], [-77.51702847231978, 34.71870288387345], [-77.51730039410148, 34.71905588166918], [-77.5189455908693, 34.71994793867728], [-77.51969742712268, 34.71963358238522]], [[-77.47890443026951, 34.488170308265424], [-77.47811234330129, 34.488667756410315], [-77.4772352789623, 34.48908895226339], [-77.47625583692566, 34.49014207769562], [-77.4760939119677, 34.49080230184988], [-77.47770385457736, 34.49084525887068], [-77.47955178388486, 34.49053573881685], [-77.47918282934974, 34.48918761152276]], [[-77.22151371502652, 34.655602339395216], [-77.2241082201734, 34.65559550840469], [-77.22407752290479, 34.655804604188845], [-77.22417715527936, 34.65595184222736], [-77.223880386818, 34.6560450579475]], [[-77.26230041954885, 34.58999861984519], [-77.26230633936949, 34.59003286649277], [-77.2615657064579, 34.59088350288969], [-77.26119399710643, 34.59157843090166], [-77.26044568367533, 34.59219931777781], [-77.26065867922996, 34.592697506561414], [-77.25954969297821, 34.59274516880417], [-77.25911344292005, 34.593433030710294], [-77.25970667747956, 34.59356529011592], [-77.26025016900725, 34.59374218269798], [-77.26042343796578, 34.59387393491048], [-77.26074253478141, 34.59380594311488], [-77.26086625210732, 34.59365651226619], [-77.26087367179228, 34.593508697473276], [-77.26110579320348, 34.59281448680461], [-77.26130749633667, 34.59274854481214], [-77.26198391702991, 34.5922808857142], [-77.26295867230081, 34.59219566985862], [-77.2639462961723, 34.59235800404123], [-77.26497298506632, 34.59230996416775], [-77.26636216166817, 34.592133819218326], [-77.26750081437885, 34.59192884002857], [-77.27050251857985, 34.590615023906544], [-77.27168646408549, 34.590393004925694], [-77.27234610241004, 34.58984566087422], [-77.27334734051074, 34.5888366543935], [-77.27417102797631, 34.58810373830046], [-77.27452525172784, 34.58765971220467], [-77.2743379916975, 34.58623151170285], [-77.2768029344189, 34.58460258269043], [-77.27680559999428, 34.584540062614664], [-77.27689195416689, 34.58450681102865], [-77.27750342553723, 34.58287037871483], [-77.27763542204399, 34.58271992501917], [-77.27770299087632, 34.5825993723438], [-77.27821727611217, 34.582027422425945], [-77.27836197989308, 34.581834331824915], [-77.27837469052852, 34.58180905091483], [-77.27870554239568, 34.5813899852091], [-77.27864397957617, 34.581183531566126], [-77.27849126592474, 34.58103049346195], [-77.27829573916537, 34.580886471671406], [-77.27742920669327, 34.580252037811334], [-77.27701544560225, 34.580113733114885], [-77.27627524904636, 34.580015657515304], [-77.27564063448023, 34.58045533166554], [-77.27545940516899, 34.58060453022107], [-77.27540355410557, 34.58065929484138], [-77.27523317891708, 34.58078151559563], [-77.27430733215499, 34.58151582869546], [-77.27398029109294, 34.58191795076492], [-77.27198545518986, 34.582276038759424], [-77.2716654164382, 34.582488246045784], [-77.27117849030712, 34.582611705681316], [-77.26980236575213, 34.58346030478877], [-77.26776959291564, 34.58382999147917], [-77.26751928066267, 34.58405885956295], [-77.26704642353873, 34.58411490070844], [-77.26648429840827, 34.58445289682192], [-77.26536881800381, 34.58458389637043], [-77.26519698616735, 34.58462253682194], [-77.2649683329763, 34.585495074823925], [-77.26520146374196, 34.586009219353386], [-77.26544487757532, 34.58647522139273], [-77.26546778629088, 34.58664430961589], [-77.26575377955677, 34.58667040735706], [-77.26594654168295, 34.58698600584479], [-77.26607699741353, 34.58715096657317], [-77.26610524201547, 34.58740187229444], [-77.26601366200153, 34.58746261930223], [-77.26568092319278, 34.587681758674734], [-77.26520638184485, 34.587752540221395], [-77.26413155878475, 34.58825728754259], [-77.26405757156995, 34.58886705468162], [-77.26353327082425, 34.58915290876084], [-77.26244955655633, 34.58986920862815], [-77.26233582493151, 34.589964877605695]], [[-77.37600444221596, 34.533926252641095], [-77.37598322616883, 34.534050839689094], [-77.3762640835854, 34.534378483245725], [-77.37621140886833, 34.53460405465758], [-77.37656369978559, 34.53448062351371], [-77.37680424584983, 34.534450217291734], [-77.37695636914593, 34.53447485667086], [-77.37707085363367, 34.534436155494944], [-77.37735172978876, 34.534350414909355], [-77.37763971796582, 34.53418017513657], [-77.37786046340348, 34.533970623999274], [-77.37806744802577, 34.53368156841247], [-77.378106704376, 34.533623192918164], [-77.37811944745843, 34.53359991791381], [-77.37815544389628, 34.53352822802102], [-77.37835615522162, 34.53334239989436], [-77.37816117910192, 34.53327523952171], [-77.37778345662015, 34.53342496491989], [-77.37776870324062, 34.53342930613094], [-77.37776512754348, 34.53343043505594], [-77.37776045092522, 34.5334311877975], [-77.37737117391057, 34.533493057739506], [-77.37710148859401, 34.53360143483722], [-77.37697545889557, 34.53363329849493], [-77.3767690548647, 34.533699009283666], [-77.37658136423951, 34.533702059581366]], [[-77.36078341492394, 34.57086315327532], [-77.3607775432923, 34.570866239314945], [-77.36045445488563, 34.57097655954208], [-77.3603893412781, 34.57104337479013], [-77.36020441097514, 34.571167771586175], [-77.36006237098283, 34.57131506986056], [-77.36014881093067, 34.57111583353578], [-77.36013334186018, 34.570952661075076], [-77.36008636888484, 34.570632716101514], [-77.3600639259503, 34.57053810144644], [-77.36003773906207, 34.57049650390037], [-77.35999565854084, 34.57045767796414], [-77.35985039162799, 34.57030091696578], [-77.35972623398598, 34.57029629668253], [-77.35960176412166, 34.57029166471972], [-77.3594759729175, 34.5703337235354], [-77.35934142829858, 34.57036161806156], [-77.35924098108393, 34.57062062004468], [-77.35923009765185, 34.57065814470163], [-77.35935575704183, 34.57079979481258], [-77.35940049899173, 34.57085018381882], [-77.35947094834577, 34.57090740114745], [-77.35960139061629, 34.571013343353705], [-77.35960920781264, 34.571019692292936], [-77.3596351083666, 34.571024390776735], [-77.35975485486985, 34.571172611269866], [-77.359974089035, 34.57142285186928], [-77.36018329720567, 34.57179457567432], [-77.36028029907834, 34.57189764494666], [-77.36038892084343, 34.57187178785402], [-77.36071430219097, 34.57221642113683], [-77.36083756008559, 34.57218399543053], [-77.36100635370568, 34.57185985605041], [-77.361118389092, 34.57165994774482], [-77.36114498534373, 34.57162159932359], [-77.36117708788434, 34.571483481654994], [-77.36123711728108, 34.571218299427656], [-77.36117725719077, 34.57114362955356], [-77.36104873344466, 34.570959464089775], [-77.36078989468457, 34.570865119079045]], [[-77.24639707801052, 34.60208141141902], [-77.24636777042952, 34.602884778103736], [-77.24664335264809, 34.60324520518695], [-77.24706577161015, 34.603607783128716], [-77.24916409736825, 34.603771218481214], [-77.25055213080668, 34.6033836382019], [-77.25084441717922, 34.60340744318369], [-77.25288616608184, 34.603398052344886], [-77.25106062437247, 34.6030613028221], [-77.25075054557172, 34.60299162477794], [-77.2501174832414, 34.60276094148185], [-77.2475956502579, 34.60256098859385]], [[-77.3323158780397, 34.684304212519784], [-77.3326975859368, 34.684305741486725], [-77.33291777143046, 34.68429277568075], [-77.3331939771675, 34.6842843535815], [-77.33353156783605, 34.68424036557431], [-77.33372228852653, 34.684305633777164], [-77.33407834693581, 34.684418606215345], [-77.33410110354555, 34.68442441170588], [-77.33439357308215, 34.684577428291306], [-77.33435948994983, 34.68531804704666], [-77.3331637434918, 34.68552360982308], [-77.3331582603828, 34.68552512890458], [-77.3331529312955, 34.685524774971974], [-77.3322870514419, 34.685409831002865], [-77.33199691240078, 34.68540189798522], [-77.33144616380687, 34.685287847535946], [-77.33142593083329, 34.68528407103368], [-77.33087934548803, 34.68512800619647], [-77.3306784261862, 34.68507089776379], [-77.3303541126117, 34.684938266328004], [-77.33034119312644, 34.684920074285664], [-77.3303198540322, 34.68492729872292], [-77.3299507088456, 34.68484250265982], [-77.32979463818482, 34.6847410595909], [-77.32950867917836, 34.684566820234515], [-77.32994179982802, 34.684234668750925], [-77.3301946293394, 34.68417779548997], [-77.33031794781584, 34.68416586695166], [-77.3305690963114, 34.68413582717057], [-77.3307577077569, 34.68422166880106], [-77.33108550357561, 34.684418572294], [-77.33166327802272, 34.684313230879354], [-77.33172267915054, 34.68428572908741], [-77.33175515770152, 34.684285058874764]], [[-77.4242330779256, 34.50091687932166], [-77.42435090949566, 34.50086370227781], [-77.42445906791747, 34.50082764161131], [-77.42453670093018, 34.50076350108185], [-77.42455031336412, 34.50066355629013], [-77.42461445812593, 34.500598586421354], [-77.42466859731778, 34.50044365078864], [-77.42434259756857, 34.500401051818606], [-77.42416868885711, 34.50047803561283], [-77.42393849430643, 34.50056406205214], [-77.42380346203758, 34.500597569227054], [-77.42373457602031, 34.50064026878922], [-77.42353485049092, 34.500764069504264], [-77.42319418146414, 34.50112720066948], [-77.42311293992472, 34.50115313042188], [-77.42304077586577, 34.501193749190506], [-77.42305225231706, 34.501287484106484], [-77.42322670840333, 34.501246341003245], [-77.42327394324957, 34.50123140096052], [-77.42332809296403, 34.50120842586293], [-77.4240212483204, 34.50100052549957]], [[-77.34639466003024, 34.629995909273966], [-77.34651967761059, 34.62997604209048], [-77.34660599044915, 34.630040173481646], [-77.34672873459738, 34.629974215792], [-77.34682764724886, 34.629915727261874], [-77.34685053021228, 34.629892391708275], [-77.34688548907747, 34.62978696615458], [-77.3469895649723, 34.62966229829179], [-77.34705165322109, 34.6294376592977], [-77.34706965783818, 34.62929170917984], [-77.34732521762521, 34.62920617680506], [-77.34733442272106, 34.629192938940655], [-77.34733104449779, 34.628868548979334], [-77.34741835613153, 34.628759411289536], [-77.34755897822015, 34.62841415723768], [-77.34778729523076, 34.6283200786451], [-77.34782651536428, 34.62828135676973], [-77.34787968909725, 34.62804638928587], [-77.34818334127313, 34.628064470920485], [-77.34835052723486, 34.627937287597355], [-77.34841534960873, 34.627879311605255], [-77.34856416413275, 34.62775804763576], [-77.34860575387886, 34.62772348455292], [-77.34860198207946, 34.62759584756323], [-77.3486223231993, 34.62740535662673], [-77.34858624639291, 34.62726647548973], [-77.34843502489481, 34.62723048480856], [-77.34820069433565, 34.62719183772715], [-77.34804440108998, 34.62719136316158], [-77.34759434696949, 34.62711277367517], [-77.3475798570541, 34.62728799405061], [-77.34749495971919, 34.627131295140984], [-77.34742574007372, 34.62707039451686], [-77.34708219840468, 34.62680052274689], [-77.34683996507897, 34.62630683884566], [-77.34671649289014, 34.62617741268012], [-77.34623705554446, 34.6261778555017], [-77.34599095654349, 34.62557942987044], [-77.34602557035898, 34.624980793274794], [-77.3461545895374, 34.624712958510415], [-77.34585397872816, 34.624640083466545], [-77.34576892100202, 34.62464767446138], [-77.34560583614645, 34.62455742404636], [-77.34557559577931, 34.624560637712726], [-77.34543437536242, 34.62457564524603], [-77.34529952061615, 34.624589976120795], [-77.34525482076248, 34.6245947262899], [-77.3451304517512, 34.624655999405206], [-77.34497902129816, 34.62467080990118], [-77.34466627961834, 34.62469589297632], [-77.34449464097142, 34.624677551433805], [-77.34431037234229, 34.62471368090381], [-77.34418380466511, 34.62472351002485], [-77.3441124746723, 34.62464448676856], [-77.34388289202856, 34.62464812950462], [-77.34385025709676, 34.62465643964315], [-77.3438048821751, 34.62467956184962], [-77.34353414093327, 34.62465609149392], [-77.34353125816904, 34.62466177257929], [-77.34330224317735, 34.6251009030543], [-77.34330021417455, 34.62510485316035], [-77.34330017892067, 34.62510485981982], [-77.34330013726967, 34.625104913783126], [-77.34329997627508, 34.62510539239118], [-77.3433004032256, 34.625105794043975], [-77.34353210428766, 34.625793853655324], [-77.3437247120527, 34.62589061584433], [-77.34396155418676, 34.62609154856425], [-77.34445670957132, 34.62618478072841], [-77.34481739906727, 34.62628375162812], [-77.34503538423174, 34.62626129820843], [-77.34542050424098, 34.626501762883166], [-77.34517655086455, 34.626856920125604], [-77.34522248272455, 34.62737295512251], [-77.3451428793903, 34.627492704547684], [-77.34519758014163, 34.628175625050595], [-77.34520173803126, 34.62821488368102], [-77.34520226815064, 34.62821973044901], [-77.34520262815941, 34.62822650633807], [-77.34520948154164, 34.628234847929306], [-77.34552898736511, 34.62872839639034], [-77.34583340919467, 34.62880467116301], [-77.3459678491549, 34.62882298160164], [-77.34607179841576, 34.628801622574635], [-77.34635178550883, 34.628905880291306], [-77.34619649704777, 34.6291436788765], [-77.34603034001117, 34.629133923142476], [-77.345861982743, 34.629217149851115], [-77.34546469726484, 34.62950480147876], [-77.34534440303617, 34.62968252833657], [-77.3448658236245, 34.6297103444079], [-77.34475764771892, 34.62980190484014], [-77.3445796797661, 34.62987926986786], [-77.34445208992673, 34.63001073451551], [-77.34440411873881, 34.63013904268553], [-77.34445192638893, 34.6302872798548], [-77.34456898155422, 34.630416683886], [-77.34463908437772, 34.63049074390019], [-77.34497204741547, 34.630783339239585], [-77.3450296364513, 34.63086552384189], [-77.34513133886539, 34.63103154814247], [-77.34520881041352, 34.63089036925089], [-77.34535326615915, 34.630730993790536], [-77.34538706263938, 34.63038957919923], [-77.34562927029269, 34.630323694252006], [-77.34580365420643, 34.63011132152254], [-77.34598665846724, 34.63011847599902], [-77.34619518139075, 34.629954127502685]], [[-77.38460653267146, 34.65814341464145], [-77.38530020574885, 34.65762794173145], [-77.38567759053876, 34.65751081332197], [-77.38571826419934, 34.657350928493294], [-77.38595021755226, 34.657222930168984], [-77.38609531410577, 34.65703566990123], [-77.38634565474041, 34.65699508217105], [-77.38643897336449, 34.657155664924], [-77.38692267806444, 34.65733336792894], [-77.38730686571392, 34.657388589752166], [-77.38794057750238, 34.65742273270385], [-77.38797689582607, 34.65620907462545], [-77.38800952487057, 34.656153287581446], [-77.38819863995606, 34.65606786139019], [-77.38811345852417, 34.65591010268715], [-77.38795556787935, 34.65546049972626], [-77.38780434531738, 34.655961942754644], [-77.38649419662941, 34.65520756257751], [-77.38603297483897, 34.65564375924957], [-77.38585783667247, 34.65566328342259], [-77.38533014842382, 34.655786953589235], [-77.38507109339663, 34.655655840830796], [-77.38497595614126, 34.655112576627545], [-77.38484833756499, 34.6548424588538], [-77.38448919300735, 34.654791871366136], [-77.38415076858357, 34.65444951970407], [-77.38375034553297, 34.654303372930606], [-77.38367484919301, 34.65424351279613], [-77.38309792148344, 34.654239297825576], [-77.38309720948155, 34.65423911433221], [-77.38309693278606, 34.654238801009775], [-77.38309079736504, 34.6542335786945], [-77.38264788222921, 34.653980403371456], [-77.38245225166277, 34.65421755208533], [-77.38244563210631, 34.6542987610734], [-77.38244533064747, 34.65432909432297], [-77.38244501452601, 34.65438247617361], [-77.38235563944204, 34.654881742896094], [-77.38230202658512, 34.6550610897085], [-77.3822680763682, 34.655197518326105], [-77.3822704878395, 34.655469240982356], [-77.38233288271184, 34.65575396153858], [-77.38242316826938, 34.65602021259002], [-77.38258500923831, 34.656403525270406], [-77.3825906956916, 34.656419179225466], [-77.38259712596287, 34.65644080026934], [-77.38271937517061, 34.6568234903704], [-77.38277783510739, 34.657170623770824], [-77.38309931228362, 34.65757607207435], [-77.38312495477703, 34.65761171877721], [-77.38314074146858, 34.65763415264839], [-77.38350193671499, 34.65803406898779], [-77.3836389441903, 34.65807934451582], [-77.38388709190495, 34.65815974496507], [-77.38452829402247, 34.65824185516861], [-77.38453897265502, 34.6582165564868]], [[-77.35607106435519, 34.550689609024175], [-77.35617500796326, 34.55057908209473], [-77.35631786021497, 34.55047249201778], [-77.35637532943954, 34.55034090395252], [-77.35657651351099, 34.550191402292775], [-77.35674234625921, 34.55002273174651], [-77.35697586107038, 34.54989772789796], [-77.35700395825806, 34.549884070918594], [-77.357258382856, 34.549777065744266], [-77.35737236459822, 34.54972805992382], [-77.35748816400024, 34.54964049371749], [-77.35757167981956, 34.54959677766123], [-77.35765632563528, 34.54954532457597], [-77.35772155132254, 34.54950567627832], [-77.35777118173617, 34.54945731729437], [-77.3578209553842, 34.54939921008786], [-77.3578730302668, 34.54933100657337], [-77.35792499098989, 34.549261819435145], [-77.35801313556466, 34.54915080328598], [-77.35803395961369, 34.549123718653235], [-77.35809604131418, 34.549040570016075], [-77.35813716079375, 34.548986448020834], [-77.35814903355742, 34.5489685530888], [-77.35817578616765, 34.54893376437474], [-77.35830352208647, 34.54879534812295], [-77.35837712180282, 34.54871411502337], [-77.35838364093684, 34.54870613587988], [-77.3584364938078, 34.54861167445371], [-77.35849536180527, 34.548497006136664], [-77.35850364332586, 34.5484440338076], [-77.35852923421088, 34.548408426616405], [-77.35858459903953, 34.5482262005406], [-77.35859488160116, 34.54819199699354], [-77.35859882655062, 34.548185505314756], [-77.35859647383086, 34.54817911151504], [-77.35861102724803, 34.548061336766146], [-77.35859966291706, 34.54794595328865], [-77.3586002620003, 34.54794047498495], [-77.35860079197245, 34.54793446656848], [-77.35861127057011, 34.54770323090254], [-77.35861418004555, 34.547693647297066], [-77.35862115201799, 34.54767768160586], [-77.35864149608427, 34.54746956701659], [-77.35865809763756, 34.54744250007868], [-77.35864337969734, 34.54741948325211], [-77.35860357188089, 34.547397611801486], [-77.3585442170838, 34.547336485484045], [-77.35847908111089, 34.547302442342584], [-77.35835673190773, 34.547241068637845], [-77.35829274182201, 34.547202081112275], [-77.35821575550546, 34.547188564541734], [-77.35802778126006, 34.54716121807662], [-77.35800227565682, 34.54715855179398], [-77.35782413917127, 34.54714548297103], [-77.35773796899016, 34.54713916104163], [-77.35755674147148, 34.54711142870469], [-77.35743276961983, 34.54709164363555], [-77.35714168130937, 34.547171187442245], [-77.35705860883935, 34.547196141497054], [-77.35703654164988, 34.54724982528873], [-77.35694471355714, 34.54744436874387], [-77.35691662106466, 34.547623799872184], [-77.35686528912271, 34.54770062672734], [-77.3569127239762, 34.54776366504923], [-77.35682577137666, 34.547951139262025], [-77.35679480522481, 34.548061273889225], [-77.35670577853172, 34.548213237786875], [-77.35666556369794, 34.548246762522716], [-77.35662031667732, 34.548280358047826], [-77.3564512796591, 34.548390872001924], [-77.35622244797149, 34.54850979004016], [-77.35620545560558, 34.54851963555144], [-77.3561819534845, 34.54853347429682], [-77.35597373073901, 34.548655258798384], [-77.35582287832456, 34.54881330170175], [-77.35581233648438, 34.54882510339905], [-77.35580577104854, 34.54883245344443], [-77.35577539166792, 34.548865689222296], [-77.35565422869098, 34.54899654696441], [-77.35546038090351, 34.54912699826592], [-77.35542261497882, 34.549146931008025], [-77.35539283407331, 34.54915517477683], [-77.35522519747525, 34.54919536416341], [-77.35507037547013, 34.54920920859683], [-77.35502842715934, 34.54921557394172], [-77.35497567880394, 34.54922946740608], [-77.35473294983262, 34.549293400028034], [-77.35463274101492, 34.54934948612703], [-77.35446504091338, 34.549374495635256], [-77.35438065859174, 34.54937035758006], [-77.35424047756703, 34.54933419712048], [-77.35421054026808, 34.54932570507157], [-77.35416621742387, 34.549313295701594], [-77.3539782492888, 34.549260108548026], [-77.35385027969679, 34.54922892209669], [-77.35370142311395, 34.549228210445875], [-77.3534584411262, 34.54919514877485], [-77.35310446138445, 34.549246125907885], [-77.35300411376821, 34.54927311467004], [-77.35266914428595, 34.54937230419745], [-77.35248689959842, 34.5494231078066], [-77.35247156701287, 34.54942758442803], [-77.35246231447431, 34.54943041413896], [-77.35227367198549, 34.549496684098045], [-77.35188118341026, 34.549640062292454], [-77.3518777712569, 34.54963965418494], [-77.35187349484723, 34.549640650082765], [-77.35187061821485, 34.54964371645426], [-77.35186824714013, 34.54964985051515], [-77.35175391171877, 34.54978292432969], [-77.3517063359, 34.549807689314434], [-77.35150723863121, 34.54994083735679], [-77.3514900197916, 34.54995080823516], [-77.3514778380982, 34.549958020890905], [-77.35143355328847, 34.54997875943523], [-77.35127931101971, 34.55005452455207], [-77.3512184241088, 34.550067027326946], [-77.35108168271475, 34.550111907843714], [-77.35085413999364, 34.550138142258696], [-77.3508972118393, 34.55027345396067], [-77.3509311994713, 34.55035885765096], [-77.35105383442134, 34.55049573458691], [-77.35105940584685, 34.55050321483671], [-77.35107233674069, 34.55051848876751], [-77.35115513041649, 34.5506721483101], [-77.35119525993625, 34.55072020199976], [-77.35121797699321, 34.55081195351684], [-77.35126862100506, 34.55095446527068], [-77.35128964338661, 34.551053095910035], [-77.35130043967106, 34.55119470735302], [-77.3513848722879, 34.551389928201644], [-77.35139340857413, 34.55142614876471], [-77.35140701745695, 34.551447012533345], [-77.35144236021749, 34.55150174708714], [-77.35151848679534, 34.5516529688334], [-77.35152304723661, 34.551705545294055], [-77.35156044723067, 34.55181364879783], [-77.35159914612773, 34.55188618166358], [-77.35179426298534, 34.552085898633536], [-77.35180814874712, 34.552100923190274], [-77.35181261192348, 34.5521055804355], [-77.35182099933945, 34.55211044228715], [-77.35197730090404, 34.55222233552265], [-77.35213072004547, 34.55229931885703], [-77.35216444370968, 34.55232210137691], [-77.35220843344764, 34.55233653280851], [-77.35258381023363, 34.55247892858806], [-77.35259156524383, 34.552481655930286], [-77.3525976735763, 34.55248407823942], [-77.35263475549841, 34.55249487287685], [-77.35271440787612, 34.55250939114748], [-77.35279383953525, 34.552490557419326], [-77.35298512225397, 34.55242524032773], [-77.35299170576965, 34.552422992264205], [-77.35299496877363, 34.55242176726206], [-77.35300524983543, 34.55241827037305], [-77.35329213973321, 34.55231798584965], [-77.35338773057971, 34.55227508354517], [-77.35365558653164, 34.552159299967045], [-77.35378412286823, 34.55211110006971], [-77.3538301642324, 34.55208302012827], [-77.35388738188291, 34.55204647698667], [-77.35418217470253, 34.551874730076094], [-77.35430077917502, 34.551815253989645], [-77.35441472183487, 34.55172574732211], [-77.35471546841899, 34.551520276273976], [-77.35484872350352, 34.55141845181281], [-77.3549795445672, 34.55134648960455], [-77.35517455166482, 34.55124689943047], [-77.35518466188886, 34.55124366190955], [-77.35537567695518, 34.551193496123226], [-77.35573679321259, 34.551045788452925], [-77.35575792781395, 34.5510339979909], [-77.3557721469879, 34.551025710521735], [-77.3559145975874, 34.550861852825484], [-77.35600383401497, 34.550762522645286]], [[-77.40114210094114, 34.58396069411344], [-77.40060565218228, 34.583833178464005], [-77.40057493429964, 34.58382377298604], [-77.40055933421381, 34.5838235723596], [-77.40049997852704, 34.58381532787061], [-77.39998929269126, 34.58367089963795], [-77.39978686708206, 34.583673481312324], [-77.39961386416968, 34.583756776572734], [-77.39899879095708, 34.58384117466493], [-77.39885992882337, 34.5839023458677], [-77.39826805135118, 34.58407557571474], [-77.3982107079857, 34.58408345933503], [-77.39816642202398, 34.58410430847084], [-77.39806464010216, 34.58416670972213], [-77.39758210463815, 34.58440817362469], [-77.39742260813965, 34.584548499950124], [-77.39722265818475, 34.58471275582066], [-77.39708986507588, 34.58479797503411], [-77.39666650453717, 34.58518306461357], [-77.39663448707547, 34.585207655071606], [-77.39662632007744, 34.585214559017246], [-77.39656777581477, 34.58523180376175], [-77.39592328296986, 34.585407630150854], [-77.39584638582662, 34.585420215530064], [-77.39574308451128, 34.585462071601015], [-77.3952933189647, 34.5856688999011], [-77.39505826765998, 34.58578735556898], [-77.3949012529067, 34.585896776185464], [-77.39473909773601, 34.58600086225092], [-77.39466419463395, 34.58610174798873], [-77.39450131657418, 34.58637903564601], [-77.39449163620307, 34.58661912663069], [-77.39448455857752, 34.58680602404196], [-77.39444884817335, 34.587043112317026], [-77.39442648399516, 34.587238971914736], [-77.39436224900007, 34.58734759290483], [-77.39427001511373, 34.5875648429616], [-77.39386852352645, 34.58816859178248], [-77.39406237006932, 34.58836427855898], [-77.39426994162875, 34.5883859748073], [-77.39455271540086, 34.588494477953404], [-77.3946307455655, 34.58851904010967], [-77.39466398770791, 34.58853068990169], [-77.39476294083235, 34.58857077378299], [-77.39489284954855, 34.58862339716738], [-77.39494320076619, 34.58873900507377], [-77.394997911617, 34.588854833923975], [-77.39501526832274, 34.58889838923365], [-77.39505800960168, 34.58899681113363], [-77.39512771286324, 34.589185566317], [-77.39516698173733, 34.589255018225074], [-77.39525501553172, 34.58931704002248], [-77.39534810668516, 34.589340877259005], [-77.39545204305739, 34.589367491447064], [-77.39563541648765, 34.58941444623126], [-77.39567251306256, 34.58941964079543], [-77.39584611602157, 34.5892199116358], [-77.39595241003099, 34.589141722649906], [-77.39599694751561, 34.58887320988363], [-77.3959452433817, 34.58871818451995], [-77.39590249820999, 34.58866364438969], [-77.39586284026045, 34.58832345111627], [-77.39587323422793, 34.58830400007237], [-77.3960432188141, 34.588158239450394], [-77.39611355983195, 34.588132832877996], [-77.39624025092962, 34.58810253556883], [-77.39636822225825, 34.588094715189015], [-77.39663430920675, 34.58807451286072], [-77.39696560334116, 34.58807879749564], [-77.39702836587793, 34.58806890141061], [-77.39720844205745, 34.5879173744415], [-77.39742243718294, 34.587777697755016], [-77.39747124553796, 34.58770148642739], [-77.3975392280264, 34.58763909482491], [-77.39761947421593, 34.58758300158135], [-77.39775171545743, 34.58753863438881], [-77.39781650417439, 34.58751903321468], [-77.39786613585045, 34.58753845612062], [-77.39796597895815, 34.58757752864443], [-77.39799704870309, 34.587590801528805], [-77.39801352645054, 34.58761891075], [-77.39809193824443, 34.5876871549742], [-77.39821053952475, 34.58794750228022], [-77.39821960238547, 34.58796551149584], [-77.39830637239265, 34.58827429660127], [-77.39833690887451, 34.5883731606006], [-77.39837636816695, 34.58854616490218], [-77.39821051452118, 34.58854345250547], [-77.39790316533706, 34.588860309501484], [-77.39784545286953, 34.58889989522945], [-77.39781643877302, 34.58891874706417], [-77.39756797449265, 34.589176354897184], [-77.39742235807952, 34.58932225933867], [-77.39739765593, 34.5893311951415], [-77.39738964644674, 34.58935896492838], [-77.39702826864469, 34.58981601173114], [-77.39701942276213, 34.58982741601924], [-77.39701369949158, 34.589837771687606], [-77.39700432230144, 34.58986492157874], [-77.39681124057506, 34.590291550096296], [-77.39680826039367, 34.59047955209368], [-77.39679470534396, 34.590718507745706], [-77.39685239707933, 34.59089960574161], [-77.39702819932717, 34.59108660465328], [-77.39703457362283, 34.5911016092622], [-77.39704706833008, 34.59110667538194], [-77.39722523004588, 34.591174648706414], [-77.39729921404782, 34.59120287543016], [-77.3974222618125, 34.59124982098726], [-77.39768073627954, 34.59129374500503], [-77.39781633606543, 34.591181610353374], [-77.39804679823294, 34.59096245291821], [-77.39814190115013, 34.59087491109439], [-77.39821042150083, 34.59081558169741], [-77.39826213802789, 34.59077481823404], [-77.39835138279201, 34.590766640749436], [-77.39837222409602, 34.59087754823007], [-77.39835489005355, 34.59091800558862], [-77.39831192784754, 34.59103357641784], [-77.39826292998217, 34.591299251902484], [-77.39824870177165, 34.59135789820177], [-77.39835075892454, 34.59161651356068], [-77.39838776330454, 34.59176240920208], [-77.39849408025049, 34.591865986856995], [-77.39860444978846, 34.59198069088339], [-77.39868011870949, 34.592063276511], [-77.39873823561919, 34.59213642025906], [-77.39885129915231, 34.59227871780662], [-77.39890482300378, 34.592436021968936], [-77.39891282289429, 34.59253580587527], [-77.39885105343197, 34.59270357647454], [-77.39888002997526, 34.5929651102996], [-77.3989059331719, 34.59306109466961], [-77.39899849282449, 34.5930478798454], [-77.39930770194755, 34.59299484785428], [-77.39939257411422, 34.592970380230696], [-77.3994539885305, 34.59294847005263], [-77.39969779856213, 34.59294285866649], [-77.39978665379691, 34.592933401649105], [-77.39997635839335, 34.59301922475455], [-77.39998087621329, 34.59302160621229], [-77.39998369151147, 34.593028796357004], [-77.40011073739576, 34.593212123541804], [-77.39998368604023, 34.59334872891648], [-77.39993575040407, 34.593398013600336], [-77.3997866403299, 34.593627445334874], [-77.39976714030833, 34.59366526311023], [-77.39975543717864, 34.59368795962655], [-77.39966122180624, 34.59399101136671], [-77.39962003939713, 34.59413206792756], [-77.39961497288837, 34.594317732690634], [-77.39965310377391, 34.59455187133884], [-77.39973561113428, 34.59490959040245], [-77.3997309529414, 34.59496521351162], [-77.39975270747645, 34.59499860490864], [-77.39978661416481, 34.595030804169006], [-77.4000676372615, 34.595341211846275], [-77.40012420831508, 34.595393909120055], [-77.40018069650313, 34.595506421544954], [-77.40027079220403, 34.59573647511581], [-77.40018069112851, 34.59592271786784], [-77.40006099079594, 34.59606236226307], [-77.39987249053408, 34.59612597539527], [-77.39978659434396, 34.596148834659644], [-77.39940822443114, 34.596268552449416], [-77.39939249763701, 34.59627194358171], [-77.39937908138467, 34.59627524621855], [-77.39921685059062, 34.5963131048681], [-77.39899840046984, 34.59636643409912], [-77.39864368908844, 34.59643822474716], [-77.39856942092067, 34.59644408644737], [-77.39822544193044, 34.59645613015618], [-77.39821151492797, 34.596456729983544], [-77.39821020682149, 34.59645580416853], [-77.3978280168868, 34.596500633556694], [-77.39781610918567, 34.59650213529687], [-77.39780774335497, 34.59650737416766], [-77.39774294439962, 34.59652573431037], [-77.39742200853348, 34.59660362988359], [-77.39707219907376, 34.596670206812675], [-77.39697424387867, 34.596694434495596], [-77.39686912877686, 34.596651784213066], [-77.39696973765274, 34.59657459684369], [-77.39741289898448, 34.596148772431846], [-77.39741904056568, 34.59614466648847], [-77.39742202987757, 34.5961348124947], [-77.39754059372706, 34.59583349805101], [-77.39755711598039, 34.59570339584943], [-77.39761910069151, 34.59559165347783], [-77.39770438724486, 34.595561746247924], [-77.3978161483885, 34.59554751602584], [-77.3980062242874, 34.59543383508745], [-77.39821024553822, 34.59539345476851], [-77.39834854196567, 34.595313642474075], [-77.39834578741132, 34.59516504950642], [-77.39832041399545, 34.595050032945], [-77.3983309555726, 34.59444805345056], [-77.39829490617424, 34.59432324394871], [-77.39827178596269, 34.5942603229959], [-77.39821029131178, 34.59416314973015], [-77.39809668425885, 34.593927266993845], [-77.39800142609701, 34.59374147849124], [-77.3978162311447, 34.59358231537874], [-77.39777604393149, 34.593548950158045], [-77.39770705817627, 34.5932519642099], [-77.39742216988586, 34.593143814593034], [-77.39720433134804, 34.59301697911217], [-77.39673898826678, 34.592962497139574], [-77.39663402118566, 34.59293609197956], [-77.39656957321503, 34.59294327905222], [-77.39630914222514, 34.592911412155715], [-77.39623994412574, 34.59289809867696], [-77.39621639094639, 34.59292479140976], [-77.39600183980157, 34.593123798818354], [-77.39584584648233, 34.59317239427483], [-77.39559679128783, 34.59328248176384], [-77.3954517519447, 34.59336621156306], [-77.395379110221, 34.593391875673206], [-77.39508910894753, 34.59347808487399], [-77.39505766114888, 34.593485965450014], [-77.39467577326278, 34.593558438642646], [-77.39466357286761, 34.59355972743799], [-77.39465236188389, 34.59356288154631], [-77.39463992117372, 34.593576753959965], [-77.39447539151595, 34.593803202087216], [-77.39429553737571, 34.594050996066564], [-77.39428373650856, 34.594068093251366], [-77.3942694458947, 34.594078761930696], [-77.3942047778214, 34.594133751501055], [-77.39387532836722, 34.59443860505005], [-77.39362628424061, 34.59430376899256], [-77.39348125853145, 34.594256021952276], [-77.393432787874, 34.5942276499386], [-77.39341224230304, 34.5941783903828], [-77.39341697869253, 34.594108439799285], [-77.39336729549673, 34.59345859217662], [-77.39336149417515, 34.59333656818074], [-77.39339271631778, 34.593236568657694], [-77.39348137664693, 34.593009926178105], [-77.39352454751857, 34.59288848171884], [-77.39366534464432, 34.592670007532504], [-77.39367728789443, 34.592652915341596], [-77.39368323509703, 34.5926481547455], [-77.39387550372142, 34.59249424828554], [-77.39392236679512, 34.59245702035017], [-77.39402511559993, 34.592391715402144], [-77.39407255437806, 34.59236156432848], [-77.39420156990627, 34.59229297206692], [-77.39426960484352, 34.59222392455177], [-77.39463721386282, 34.591907403119265], [-77.39466370883183, 34.591886788496545], [-77.39467106317903, 34.59188190053611], [-77.39468516060705, 34.59187194413653], [-77.39491728192124, 34.591687071781855], [-77.3949296801469, 34.59155014953782], [-77.39492004838277, 34.59141349315829], [-77.39466376141065, 34.59124662232803], [-77.39451828589284, 34.591203609515205], [-77.39436635246341, 34.59117292240445], [-77.3942696953527, 34.59118043784524], [-77.39390563596078, 34.59116756905252], [-77.39387562462515, 34.59117106039574], [-77.3938471282152, 34.59117437540566], [-77.39369434048879, 34.591165710354296], [-77.39348155438717, 34.5911568172595], [-77.39343928217748, 34.59115695300436], [-77.39332695923254, 34.591218696643985], [-77.3931363895531, 34.591298888670664], [-77.39308746675204, 34.5913149580172], [-77.39293124921889, 34.591444059878405], [-77.39269336415073, 34.59160013033646], [-77.39262654640895, 34.591672301532334], [-77.39255300207353, 34.59175488842727], [-77.39229925532605, 34.59191669886584], [-77.39193551783366, 34.591843939334645], [-77.39191253292367, 34.59183934159237], [-77.39190518892057, 34.59183794568112], [-77.39189506027948, 34.59183886150674], [-77.3915111151807, 34.59182621124443], [-77.39112454825099, 34.591952782498495], [-77.39111702461359, 34.59194986874524], [-77.39111128440395, 34.59195661798201], [-77.39110715566484, 34.591963396864635], [-77.3911090993369, 34.59197165213625], [-77.39106795522474, 34.592393619036635], [-77.39108454365868, 34.592426157248546], [-77.39111695305601, 34.592526234657], [-77.39118758457488, 34.59272481429635], [-77.39119567659263, 34.592799770262644], [-77.3912058647912, 34.59289414050239], [-77.39111686779111, 34.59321534813433], [-77.39111316314906, 34.59323224953609], [-77.39110903106074, 34.59323683439202], [-77.39093812739522, 34.59349351722405], [-77.39080175348002, 34.593705713728724], [-77.39072269457034, 34.59392988473411], [-77.39066656633457, 34.59408932892829], [-77.39061185559049, 34.594157666130386], [-77.39052561116964, 34.59424359886937], [-77.39038717204048, 34.594253203514754], [-77.39032856483547, 34.59426592305328], [-77.38997920133362, 34.594297079458926], [-77.38993447151431, 34.59431253142245], [-77.38989331788116, 34.59430561365358], [-77.38954038164061, 34.59433155221127], [-77.38920854273582, 34.59442709154323], [-77.38910409977713, 34.59442051645421], [-77.38875217856226, 34.59451793960082], [-77.38848174721431, 34.59459803935142], [-77.38808969289256, 34.594945898835284], [-77.38803772696971, 34.59503290681147], [-77.3879638946114, 34.59518622061909], [-77.38788717057088, 34.595057776952935], [-77.38783497826932, 34.59498262262484], [-77.387668973444, 34.59489976692417], [-77.38756987870919, 34.59472583088616], [-77.38752443801117, 34.594651794677745], [-77.38750323280965, 34.5945340493949], [-77.38752100703677, 34.594178754043824], [-77.38757001360955, 34.59390935961585], [-77.3876046478134, 34.59377941771268], [-77.38761964898896, 34.59373996506432], [-77.38766697952171, 34.59362872476228], [-77.3877490950793, 34.593489593871915], [-77.38787316342308, 34.59337690946674], [-77.38796419520357, 34.593313807053676], [-77.38798911619635, 34.593288973664606], [-77.38799992345673, 34.593260571090475], [-77.38835835341254, 34.5928326180258], [-77.38838596095265, 34.592810083978996], [-77.38841486427305, 34.592776177158285], [-77.38858458097171, 34.5925708248264], [-77.38875248022495, 34.59252825091819], [-77.38896224404358, 34.59249867303113], [-77.38932762278952, 34.59244950955689], [-77.38954065332936, 34.59242141322626], [-77.3896798254405, 34.5923191411401], [-77.38978200391217, 34.59215448356356], [-77.38987762522916, 34.59207911945951], [-77.38993478521577, 34.59203406844995], [-77.39012429218153, 34.59188470688583], [-77.3901318450373, 34.591875267870016], [-77.39028233929466, 34.591657768223854], [-77.39029868869294, 34.591622843516355], [-77.39027139318587, 34.59129679977158], [-77.39021380111467, 34.591243082363505], [-77.3900743267434, 34.59111299160404], [-77.38993492362366, 34.591037360343364], [-77.38978682039945, 34.591039647571336], [-77.38967660727327, 34.59104223750599], [-77.38954085029033, 34.59104831635229], [-77.3894278775745, 34.59105355524411], [-77.38934381336284, 34.59105505277724], [-77.38924295888069, 34.59106213032871], [-77.38914677475515, 34.59107286691398], [-77.38905983981078, 34.59107857006357], [-77.38894973941888, 34.591068227820195], [-77.38876966665337, 34.5910267481538], [-77.38875949999851, 34.591020899267654], [-77.38875272462658, 34.590929815558724], [-77.38870589349486, 34.590661874787365], [-77.38870264120537, 34.59061184418197], [-77.3887273340654, 34.59058087036807], [-77.38875277872997, 34.59057754379131], [-77.38877917621011, 34.59057236916239], [-77.38894982178061, 34.59052354831368], [-77.3891039621877, 34.590507761522154], [-77.38914685952184, 34.59050336804517], [-77.38943650869265, 34.590393508273706], [-77.38954095173466, 34.5903447905751], [-77.38984464128438, 34.590120015947164], [-77.38993505945062, 34.590064126034555], [-77.38996496479868, 34.5900374739209], [-77.39003005713954, 34.58999587155249], [-77.39018099156972, 34.58981446901383], [-77.39016092587956, 34.58973370017769], [-77.39013891296582, 34.58955560568418], [-77.39011026487071, 34.58932382409512], [-77.39008735461417, 34.58913847157134], [-77.39002828171158, 34.589046704135924], [-77.38993520082403, 34.58905640647909], [-77.38974267294736, 34.58897105136055], [-77.38973818211662, 34.588969093101035], [-77.3897232098785, 34.58896256432863], [-77.38954116361904, 34.58888318160197], [-77.38948630465012, 34.58885968287645], [-77.38938136828283, 34.58881570456471], [-77.3892280065927, 34.58875067178211], [-77.38914712756102, 34.58871297202323], [-77.38897358953233, 34.58863692004064], [-77.38875309375084, 34.58853817513706], [-77.38871896477362, 34.58852342354426], [-77.3886544446353, 34.58849595296771], [-77.38846309725513, 34.5884114444318], [-77.3883590606247, 34.588369176451266], [-77.38804087798322, 34.588241581746466], [-77.38796502717108, 34.588211399870985], [-77.38793967343814, 34.58820176377198], [-77.3878909714224, 34.58818146739358], [-77.38768090377356, 34.58809332993969], [-77.38757099471756, 34.58805628711613], [-77.38739196578615, 34.58802174347607], [-77.38734365557144, 34.58801543177888], [-77.38717694751848, 34.58799365144099], [-77.38680479993714, 34.58793709860268], [-77.38678289984324, 34.58793650733603], [-77.38676885080149, 34.5879338230958], [-77.38672512210317, 34.58792499031246], [-77.38638886380969, 34.5878187682206], [-77.38619974498486, 34.58777993688195], [-77.38617666785048, 34.587775427925514], [-77.3859948164323, 34.58776656600364], [-77.38573186342768, 34.58778487923234], [-77.38560072912078, 34.58792307305865], [-77.38535328601728, 34.58796478729177], [-77.38507766870215, 34.5877379312139], [-77.38486555037082, 34.58771152076515], [-77.38481265758124, 34.58770460200262], [-77.38466178270905, 34.58763531328144], [-77.3844186317132, 34.58755482985816], [-77.38435254981388, 34.58748910960258], [-77.38424025390111, 34.587434084639796], [-77.38422163063183, 34.58742592977537], [-77.38409640006275, 34.587377476171646], [-77.38402461896968, 34.58734970285904], [-77.38391442831863, 34.58736233350912], [-77.3838275685369, 34.5874551973781], [-77.38378947856077, 34.587499064486636], [-77.38379102594769, 34.58767180255606], [-77.38381466245076, 34.58772156061099], [-77.38388137419437, 34.58791038325282], [-77.38389156433479, 34.588052108801804], [-77.3838954301019, 34.58819392597601], [-77.38387092104102, 34.58833645568179], [-77.38386600195854, 34.58859111841934], [-77.38382953903043, 34.588766986427984], [-77.3836301826317, 34.58910584754949], [-77.38357591138485, 34.5891696545296], [-77.3832687234431, 34.58923723135736], [-77.38323608815227, 34.589244410628325], [-77.38304342494466, 34.589092583387185], [-77.38304120622367, 34.58909062338698], [-77.38303909081088, 34.58908790667551], [-77.38289418536331, 34.58890181227429], [-77.38287854828108, 34.588864806533785], [-77.38284213639106, 34.58874473033289], [-77.38278082363026, 34.58855969067732], [-77.38275844533489, 34.588496812670265], [-77.38272363382673, 34.58837406414841], [-77.38269853863456, 34.58823572052908], [-77.38264521722736, 34.588254598405435], [-77.38248568154133, 34.58811156356423], [-77.38246564282376, 34.58809568455049], [-77.38244822746002, 34.58808048419324], [-77.38226932981848, 34.587930465401065], [-77.38226037112291, 34.58792191312307], [-77.3821974084195, 34.587882828402435], [-77.38205423672478, 34.587790198773924], [-77.38203363617825, 34.58777435411073], [-77.38198594833688, 34.58775902812541], [-77.38179173092699, 34.58764532206898], [-77.38166022009389, 34.587618718322254], [-77.38143542483448, 34.58765599948069], [-77.38126616619695, 34.58760521531502], [-77.38107608136104, 34.58768538790732], [-77.38105746551217, 34.587693120327664], [-77.38102013845217, 34.587685947952515], [-77.38100958543936, 34.587623311159], [-77.38091761091054, 34.587488442688006], [-77.38096945810415, 34.587376145525354], [-77.38112296082195, 34.58703428214889], [-77.38119394564491, 34.586946064336885], [-77.38126635971955, 34.58681840728201], [-77.38144507274197, 34.586563292163746], [-77.38135884697931, 34.5862506536538], [-77.38131591620669, 34.58610413867804], [-77.38126659217005, 34.58587569187154], [-77.38107758877172, 34.58576712892969], [-77.38095985374098, 34.585690075635554], [-77.38087264195923, 34.58548330406521], [-77.3802167260616, 34.585748709572385], [-77.38008446168863, 34.58581098639625], [-77.38004539324109, 34.58587381705621], [-77.38007071033604, 34.58591224465299], [-77.38006152624529, 34.5859382438025], [-77.37986880698917, 34.58655832681343], [-77.37988054912566, 34.586788777160926], [-77.37990747838224, 34.586975254792975], [-77.37989117222024, 34.58721181008704], [-77.37983134092622, 34.58737271745808], [-77.37967695333063, 34.58766724535266], [-77.37954140420135, 34.587951411413634], [-77.37949103761558, 34.58833268936196], [-77.3795863729541, 34.58852942603867], [-77.37970956278177, 34.58891471905247], [-77.37971660557758, 34.58893522181551], [-77.37970851302448, 34.58895678653296], [-77.37957072187407, 34.58938080825946], [-77.37980728065483, 34.58964427600926], [-77.37986414308813, 34.58976308648459], [-77.3799855159593, 34.58985106730139], [-77.38008339762759, 34.58990857965808], [-77.38012109152228, 34.589938338440035], [-77.38017610979298, 34.59004276714545], [-77.38018549112783, 34.59014133917178], [-77.38017411896129, 34.59024081167145], [-77.38008325533406, 34.59046012492292], [-77.38004028445245, 34.59054055571399], [-77.37999121582783, 34.59059390066182], [-77.37986092379975, 34.5907977999931], [-77.37983943245445, 34.59104033799485], [-77.37976352410452, 34.59139548497109], [-77.3797542891109, 34.591477171567306], [-77.37979193341043, 34.59158276169649], [-77.37968885444485, 34.59171900534732], [-77.379428974971, 34.59180401138043], [-77.3792947415703, 34.59185383768143], [-77.37923351962142, 34.59191083960029], [-77.37915162561384, 34.591988582795274], [-77.37871044181227, 34.592271906994625], [-77.3785064067552, 34.592504974695714], [-77.37832175697625, 34.592758435243034], [-77.37799755177787, 34.59300400907054], [-77.37835580589984, 34.593114454049754], [-77.37850618299944, 34.59331872114747], [-77.37862395285602, 34.59363590101434], [-77.37869475333656, 34.59375267075289], [-77.37890005158205, 34.59411991759703], [-77.37891043460726, 34.59413496387769], [-77.37891911247257, 34.594165451733005], [-77.37893511944756, 34.594567159420606], [-77.37901794680727, 34.594852563665114], [-77.37929393381492, 34.59490001316931], [-77.37968292726708, 34.5948784634122], [-77.3796898549268, 34.59488099858191], [-77.37969206212838, 34.594882645795195], [-77.37991281461865, 34.59503319074846], [-77.38008203511205, 34.59522456092128], [-77.38009375908746, 34.59523668798093], [-77.38010163426605, 34.59524818689229], [-77.38010055791204, 34.59526830887138], [-77.38008201167906, 34.595316700569], [-77.380012807318, 34.59561107693161], [-77.3799147490194, 34.59569968180741], [-77.37978779472873, 34.595825716654474], [-77.3793453750099, 34.59620629395532], [-77.37929357812192, 34.596249125517964], [-77.37876203130767, 34.59656693276432], [-77.37850520807436, 34.596884572272515], [-77.37835000634331, 34.59703169388276], [-77.37816713450627, 34.5972251985829], [-77.3781109992411, 34.597271775051595], [-77.3778382028934, 34.59740331557893], [-77.37771684025682, 34.59746894886821], [-77.37755503244438, 34.597563672818346], [-77.37752413752628, 34.59774240810114], [-77.37762292211612, 34.59805173739216], [-77.37766265249977, 34.598147012526894], [-77.3776219255339, 34.598254891341895], [-77.37746050495048, 34.5987495081775], [-77.37735754916899, 34.59904009614655], [-77.37743012487576, 34.59933793882198], [-77.3777162538887, 34.59956010699405], [-77.37792661290598, 34.59980722836342], [-77.37828875725148, 34.59998731420398], [-77.37850433451051, 34.60010811979967], [-77.37854975448879, 34.600142004679796], [-77.37875837489523, 34.60026279683602], [-77.37889840256085, 34.600292100522026], [-77.37915686943853, 34.60033296861479], [-77.37929249813138, 34.60037671506075], [-77.37934834881776, 34.60039132647553], [-77.37941420155863, 34.6004420067823], [-77.37958763455246, 34.60052360264883], [-77.37968656829992, 34.6005637050297], [-77.37984185763501, 34.60063763976909], [-77.38008065934913, 34.60067414965943], [-77.38015079407295, 34.60068487229081], [-77.38043968769259, 34.600718797136665], [-77.38046761703211, 34.60072247429017], [-77.38047476633426, 34.60072368604508], [-77.38048552946091, 34.60072378570483], [-77.38082833647287, 34.6007064762757], [-77.38086888883647, 34.60071053787304], [-77.38115989404598, 34.6007260845493], [-77.38126300295554, 34.600732018113554], [-77.38140685027584, 34.600734379814945], [-77.38165715679365, 34.60058247391071], [-77.38167787520945, 34.6005626759435], [-77.38170537366588, 34.60053639898496], [-77.38183438532897, 34.60028408723275], [-77.38194855678314, 34.60007678782895], [-77.382051418046, 34.59995373202854], [-77.38232267299236, 34.59989050205608], [-77.38244555708852, 34.59984757996085], [-77.38252599571143, 34.59990689889832], [-77.38262261038676, 34.59997964244461], [-77.38272675568601, 34.60008621642535], [-77.38275587970278, 34.60029483923758], [-77.38277221904332, 34.60038264502468], [-77.38278957537963, 34.60043397234133], [-77.38283953600288, 34.60047144189201], [-77.38296786954767, 34.60064072435696], [-77.3831139185977, 34.60075796207976], [-77.3831716306871, 34.60081637911177], [-77.38323357053434, 34.60086246695262], [-77.3833231568666, 34.60082430288337], [-77.3836276892387, 34.600865950928394], [-77.38377560397855, 34.60092780305354], [-77.38402178363317, 34.60098899569043], [-77.38406141805791, 34.60100326395772], [-77.38420750502759, 34.60102490689003], [-77.38437176522591, 34.60104876614578], [-77.38441588804136, 34.60106709549967], [-77.38448873577042, 34.60106284512091], [-77.38481001204879, 34.601047334572506], [-77.38504160662444, 34.60090467973038], [-77.3851392893263, 34.600820701059796], [-77.38520419091107, 34.60073573830383], [-77.38536882519959, 34.600610274690936], [-77.38544011703404, 34.60059311240601], [-77.38559834563667, 34.60053892188628], [-77.38568978677189, 34.60059896404117], [-77.38574298451826, 34.60064774392649], [-77.38579537599915, 34.6006948469393], [-77.3858913503474, 34.60078219185874], [-77.38594268626575, 34.60082835797344], [-77.3859924031045, 34.600873067817545], [-77.38634892921726, 34.601140797314464], [-77.38637013447668, 34.60115534093148], [-77.38638647131968, 34.60116365225587], [-77.38641849348598, 34.60116526543904], [-77.38678058058493, 34.601228448983576], [-77.38701738736654, 34.601213902771995], [-77.3871747013772, 34.60122657468358], [-77.38737495275168, 34.60120860493317], [-77.38756882928065, 34.60117972853776], [-77.38776783819715, 34.60114643628668], [-77.38796295704373, 34.60113045098191], [-77.38813673382882, 34.60107025568327], [-77.38863935843142, 34.60081059970133], [-77.38871554421696, 34.600761150780826], [-77.38875125232465, 34.6007490378506], [-77.3887980462403, 34.600737313103025], [-77.38953950343048, 34.60063569982966], [-77.38958471530401, 34.60062559643288], [-77.39007017636214, 34.600604304075844], [-77.39030236685473, 34.60059816179368], [-77.39032774109016, 34.60060857186798], [-77.39036335670232, 34.600600397928524], [-77.39094939864523, 34.60065696949215], [-77.39111596645802, 34.600678604049634], [-77.3914640428756, 34.600778303273636], [-77.39152870774444, 34.600798486703965], [-77.39156944076127, 34.60081269105112], [-77.39190415709065, 34.6010782626191], [-77.39194617772249, 34.60113766068013], [-77.39199579247497, 34.60117578037575], [-77.39237409638447, 34.60146407325419], [-77.39269236097246, 34.601418817929215], [-77.39291216062311, 34.60128040172941], [-77.39308649644734, 34.601256005432404], [-77.39327391277935, 34.60121414328107], [-77.39348062392783, 34.601165286281514], [-77.39363529302764, 34.60110596363505], [-77.3938747543309, 34.601029054524616], [-77.39396784757642, 34.60099167284443], [-77.39418536983581, 34.600949980423934], [-77.39426888023304, 34.600932058841906], [-77.39432654707085, 34.60090177827004], [-77.39449386623009, 34.60081552689062], [-77.39462007966338, 34.60075107470038], [-77.39466301343421, 34.60072540082346], [-77.39490658170705, 34.6005938106528], [-77.39505714791704, 34.60047248315847], [-77.39515742958034, 34.600403278322275], [-77.39541744059028, 34.60025775091428], [-77.39544064890153, 34.600242952573424], [-77.39546906995501, 34.60023113856623], [-77.39584539755137, 34.60016250260007], [-77.3960606523188, 34.599972283350546], [-77.39623952630357, 34.599897262462335], [-77.3965911566523, 34.599663885675085], [-77.39661969981218, 34.599644738086575], [-77.39663365259838, 34.599631245259914], [-77.39670236604313, 34.59957382294444], [-77.39702777887439, 34.59931324843721], [-77.39714302628612, 34.599283862590426], [-77.39742189407613, 34.59918124926496], [-77.39773042637827, 34.59898277617184], [-77.39781601176969, 34.59894882956236], [-77.39792880164637, 34.598924851546016], [-77.39821012044423, 34.59891711094148], [-77.39846176331879, 34.59881599532951], [-77.39860423163447, 34.59878425957257], [-77.39887853968202, 34.59861384257006], [-77.3989983439541, 34.598555610408376], [-77.39906772681539, 34.59853223170851], [-77.39915431626065, 34.598444993573864], [-77.39947342435012, 34.59806160797946], [-77.3995018135534, 34.597970287798276], [-77.39978657050221, 34.59756729968766], [-77.39980929472266, 34.59752583424085], [-77.3998238624683, 34.59749925189617], [-77.40018067604848, 34.5971472390792], [-77.40025731809406, 34.597094709373636], [-77.40042803424302, 34.59698751072449], [-77.40053067685214, 34.59692519196442], [-77.40057477640333, 34.59689710038461], [-77.40070560664475, 34.59680651545523], [-77.40079420186706, 34.59674649958217], [-77.40096887476354, 34.59650784618669], [-77.4009886252417, 34.59648205398177], [-77.40118477984626, 34.596261779813474], [-77.40136296936407, 34.5960445981441], [-77.40138207097444, 34.59602128997565], [-77.40139516960086, 34.595998820915966], [-77.4015478512476, 34.59575139841704], [-77.40167755899981, 34.5955335004111], [-77.40171392839451, 34.59548178565123], [-77.40175705868836, 34.59541391478846], [-77.40188559743754, 34.59521739031891], [-77.40195343422994, 34.59506911886312], [-77.402151140693, 34.59462811473511], [-77.40215499377065, 34.594619611308374], [-77.4021569650216, 34.59461517560437], [-77.40216984038072, 34.59459317089025], [-77.40231233618465, 34.5943418510261], [-77.40247135144187, 34.594145235196265], [-77.40250369651099, 34.59409583222442], [-77.4028099001382, 34.593671806753], [-77.40285889032776, 34.593578112856605], [-77.40293928956662, 34.59338105952065], [-77.40325119231863, 34.59275897473256], [-77.4031274455712, 34.59257409800137], [-77.40310036974165, 34.59235616431963], [-77.40307561928054, 34.592212831702895], [-77.40304514702922, 34.592053634461536], [-77.4030231805901, 34.591942727676674], [-77.40302301843406, 34.5918525112897], [-77.40293925049035, 34.591173254958704], [-77.40293214018564, 34.59111437398705], [-77.40292604873542, 34.59110759339512], [-77.40286355538895, 34.59034900032964], [-77.40282120147151, 34.59027357222535], [-77.40289347699263, 34.59021384207548], [-77.40293923294361, 34.59010795931687], [-77.40314404507197, 34.58959851171926], [-77.40325705478007, 34.58936152356672], [-77.40332846793122, 34.58893181995551], [-77.40333035349325, 34.58892636999884], [-77.4033302807068, 34.58892315595568], [-77.40330814418122, 34.58850499926505], [-77.40330238754329, 34.588114515021125], [-77.4032993162934, 34.58808169744435], [-77.40330177226704, 34.58804742044427], [-77.4033332551342, 34.587987895537964], [-77.40348113664692, 34.58763088216199], [-77.40358774919397, 34.587465138171204], [-77.40371042688699, 34.587173215871616], [-77.40371534758467, 34.587159638044284], [-77.40372728928234, 34.587123346741386], [-77.4038185415301, 34.58683136532098], [-77.40384786251283, 34.58672880511709], [-77.40391032062064, 34.58652256395551], [-77.40399409214376, 34.58628312499244], [-77.404014291724, 34.58616489609787], [-77.40408622985147, 34.58584525072802], [-77.40410229954773, 34.58543882146056], [-77.40410369497033, 34.585418154485936], [-77.40410345068855, 34.585398965502904], [-77.40407913682944, 34.58504253451093], [-77.40407035368082, 34.5849983901222], [-77.40398844764229, 34.58472875488753], [-77.40394538854284, 34.58459184922985], [-77.40384208230161, 34.58430593987053], [-77.40380707096463, 34.58418723553443], [-77.40378253715954, 34.58413117431077], [-77.40372722062449, 34.58403624752507], [-77.40343954279845, 34.583701093265034], [-77.40333317740593, 34.583590739865215], [-77.40323442607273, 34.583527132601446], [-77.40299568550417, 34.583516108196775], [-77.40293914280794, 34.583532604579425], [-77.40285594319057, 34.58356499808071], [-77.40254511040106, 34.58373107462246], [-77.40238785447525, 34.58379803135091], [-77.40215107597412, 34.58388986390622], [-77.40206512999825, 34.583921441549236], [-77.40178624660268, 34.58402282349579], [-77.4017570400395, 34.58402607859092], [-77.40171953446382, 34.58402350811521], [-77.40136300368388, 34.58404208505791]], [[-77.30695914307577, 34.56346762872277], [-77.3075041888134, 34.56323479991064], [-77.30714246510803, 34.56293523243585], [-77.30659732753954, 34.563129247404206], [-77.30602778981441, 34.56344332408182], [-77.30602504493788, 34.56344709962275], [-77.30602778342146, 34.56344881308511], [-77.30666360813595, 34.56351925151653]], [[-77.40084543796873, 34.56622441747186], [-77.40057534362768, 34.56622024614313], [-77.4004809810773, 34.56608763614261], [-77.3989995278042, 34.56633269320082], [-77.39884702670108, 34.56638608307261], [-77.39760553602068, 34.566596848411486], [-77.39742370012756, 34.56654246397407], [-77.39712337735723, 34.56731959386742], [-77.39691926501415, 34.56765463765924], [-77.3966357056643, 34.567661459464084], [-77.3962957320889, 34.56792178616674], [-77.3962417228434, 34.56794457999438], [-77.39602141986563, 34.5681405621483], [-77.39584773198807, 34.5682912227333], [-77.39579628678096, 34.568304772150555], [-77.3957779599789, 34.568362857420084], [-77.39579849224226, 34.5684129491229], [-77.39579846391923, 34.56878447148587], [-77.39584768117389, 34.568892078714086], [-77.39594182519684, 34.569086884516445], [-77.39602049921922, 34.56917700959026], [-77.39624159847487, 34.569503863065314], [-77.39627014698212, 34.569534794878365], [-77.39637899340805, 34.56969794336931], [-77.39624156353094, 34.56994597391617], [-77.39621986414534, 34.56999739095914], [-77.39619809873386, 34.57004736331637], [-77.39624155478161, 34.57005697913963], [-77.39635340182843, 34.570282143059096], [-77.39663551072064, 34.57026549418883], [-77.39679350683299, 34.57059347655573], [-77.39742343227212, 34.57061933419115], [-77.39748038495178, 34.570603291815296], [-77.39781740973189, 34.570556681758234], [-77.39789162927346, 34.570525347339796], [-77.39815970789434, 34.57056664841153], [-77.39819783310148, 34.57057574851012], [-77.39821138169185, 34.57058230189372], [-77.39825253795514, 34.57059760715301], [-77.39899930740819, 34.57104861403982], [-77.39911884696447, 34.571148566320055], [-77.40010773475989, 34.571134694433], [-77.40031447650276, 34.57138583140032], [-77.40035593638251, 34.57256091851978], [-77.39978719565536, 34.5728396799767], [-77.39972129981484, 34.57288875820546], [-77.39909659396567, 34.573083839103326], [-77.39910950428467, 34.573826187634815], [-77.39922770444178, 34.574055400742495], [-77.39929263881596, 34.57433265357627], [-77.39939315234255, 34.57438737556136], [-77.39948956590555, 34.574620494032544], [-77.39951961755317, 34.57490442908524], [-77.39963210770767, 34.57528203648586], [-77.3995910792538, 34.575454993630984], [-77.39943078864957, 34.57586208095], [-77.39941201947197, 34.5759054058993], [-77.39942412878932, 34.57593710115852], [-77.39954989433835, 34.57614110935946], [-77.39962338414247, 34.5761230743002], [-77.39978708628851, 34.576146754917104], [-77.39996461953965, 34.57605893369734], [-77.39999328539037, 34.57604372738952], [-77.4001810902524, 34.57597873766192], [-77.40032416666162, 34.57592796114771], [-77.40057509188743, 34.57584022996641], [-77.40077781102141, 34.57570831973693], [-77.40091350962011, 34.57562883967771], [-77.40096909412401, 34.575592599421825], [-77.40110250051922, 34.57551770473036], [-77.40136309383068, 34.5753570349097], [-77.40146668850144, 34.57529596639719], [-77.401717101957, 34.57514819402806], [-77.40174542415012, 34.5751315341182], [-77.40175709125168, 34.575122010469265], [-77.4018545784142, 34.575023300619726], [-77.40196841717717, 34.574915076809035], [-77.40202793382906, 34.57481147240711], [-77.40211106384237, 34.57466676285083], [-77.4021510880249, 34.57454023737837], [-77.40224617828841, 34.574325158122605], [-77.40232853797687, 34.57421080080087], [-77.40235038755603, 34.57399287804384], [-77.40215109242553, 34.57367091950337], [-77.40206803688284, 34.57348875072777], [-77.40197282906017, 34.57341298633483], [-77.40169643146908, 34.57309368881488], [-77.40074051903419, 34.57274167740302], [-77.40215110496305, 34.571637963065506], [-77.40293301953223, 34.57156959470723], [-77.40355692473645, 34.570636900034614], [-77.40372700004025, 34.57036309444695], [-77.40438163749133, 34.570517858675835], [-77.40510138707229, 34.57063112375118], [-77.40530288977182, 34.57053189264207], [-77.40559176252053, 34.570654487272435], [-77.40576917525652, 34.57031756733856], [-77.40651232538752, 34.56981540138678], [-77.40687873186668, 34.56961791825668], [-77.4071833123119, 34.56926426417422], [-77.40687870755164, 34.569113801080746], [-77.40659537746683, 34.56880531828288], [-77.406254158743, 34.56872534006327], [-77.40609076734295, 34.56884237888452], [-77.40578923093895, 34.5686163639904], [-77.40544587205616, 34.568511771337604], [-77.40530282337053, 34.568264793153446], [-77.40435618333618, 34.568145112122465], [-77.40372695533198, 34.565620212845076]], [[-77.44746168573616, 34.73418129744766], [-77.44728493990883, 34.73443758289085], [-77.4469858862792, 34.73437985916696], [-77.44706477139263, 34.734078028622775]], [[-77.37211712227966, 34.70127264535189], [-77.37173833749327, 34.70108965686094], [-77.3713604647491, 34.70106659802548], [-77.37115665775987, 34.701031261822216], [-77.37088397009688, 34.70103914247258], [-77.37085721283884, 34.70103172271743], [-77.37070288026297, 34.70084387399655], [-77.37067968678772, 34.700802138738176], [-77.37072078413036, 34.70063711916909], [-77.37077000655407, 34.70059095134783], [-77.37088916946487, 34.70046725006085], [-77.37109501379717, 34.70030258342749], [-77.3712554652365, 34.70015367380114], [-77.37204618393983, 34.69975019981274], [-77.37214056437197, 34.69970323159534], [-77.37218888910952, 34.69970447367938], [-77.37272179212547, 34.699763150987714], [-77.372989831228, 34.69981228461267], [-77.37302920473203, 34.70003671727121], [-77.37316904726882, 34.70028488565526], [-77.37321945657027, 34.70042404556604], [-77.37325560245793, 34.70049299001905], [-77.37358073781806, 34.70092923412319], [-77.37358289100844, 34.70093279854699], [-77.37358407445689, 34.700935230896675], [-77.3735869260796, 34.700943168642155], [-77.37377574981778, 34.70139627589844], [-77.37366269214384, 34.701648413331974], [-77.37366003306678, 34.70165588106767], [-77.37365154818823, 34.70166848261688], [-77.37349446588925, 34.7019223380426], [-77.37341648522714, 34.70206839097678], [-77.37257801763526, 34.70253570907961], [-77.37254323792789, 34.702570935206325], [-77.37248620658178, 34.702638623718514], [-77.37247571868289, 34.702573655799256], [-77.37247677091716, 34.702549626303785], [-77.37248417877309, 34.70251860852573], [-77.37247646727712, 34.702062273867966], [-77.37243693455295, 34.701814979884205], [-77.37237800227858, 34.70158841457738], [-77.37224995676794, 34.701389547077106]], [[-77.38015137543275, 34.729434777076726], [-77.38028942102153, 34.729528951980484], [-77.38053538527804, 34.729504962732385], [-77.3806619198988, 34.729521422747176], [-77.38078000005288, 34.729519409027716], [-77.38089969381213, 34.72953611876952], [-77.38092470070725, 34.729549460266576], [-77.38118157590725, 34.729622968761696], [-77.38122643102446, 34.729614558344544], [-77.38136584181595, 34.729605233504486], [-77.38154319727249, 34.72962782247207], [-77.38197960541794, 34.72965966399156], [-77.3821205986622, 34.72966199312142], [-77.38218362260614, 34.72963058675134], [-77.38233662312936, 34.729647029744655], [-77.38256633402655, 34.72964260989329], [-77.38260026822066, 34.72953717542073], [-77.38262331459765, 34.72932576687117], [-77.38266823092789, 34.72906077340785], [-77.38272383388838, 34.72880176428965], [-77.38259514782217, 34.728646724691664], [-77.38250383781497, 34.72852664170302], [-77.38235636458265, 34.728299929636165], [-77.38204514862625, 34.72804151488004], [-77.38201039787013, 34.72801718082247], [-77.38197686936257, 34.72801176624255], [-77.3814596610324, 34.72783226426037], [-77.38142326618707, 34.72783073310383], [-77.3810539295213, 34.72791706909801], [-77.38076373295313, 34.72789388189907], [-77.38049733975802, 34.728022511213936], [-77.38031002354069, 34.72819720105432], [-77.3799927833553, 34.72834109743951], [-77.37995682543257, 34.72836795205702], [-77.37992719086287, 34.72838214383239], [-77.37962647094747, 34.72857607216757], [-77.37925020507957, 34.72870438132534], [-77.37924796823265, 34.72870542927419], [-77.37924573008159, 34.72870590732645], [-77.37923596919242, 34.728707506204096], [-77.37881858595172, 34.72875154754942], [-77.37852835303175, 34.72900232852018], [-77.37852419935331, 34.729009459123134], [-77.37875850003184, 34.72935272379201], [-77.3790404834538, 34.7294133968405], [-77.37921448170496, 34.72939921668615], [-77.37936518421465, 34.729399314280386], [-77.37963853657897, 34.729399490681786], [-77.37967196021584, 34.729399055312264], [-77.37968754264165, 34.72939330406898]], [[-77.37459531139514, 34.59261302558915], [-77.37463407511663, 34.592639494675616], [-77.3753536265017, 34.59292259140929], [-77.37549008713668, 34.59321817799615], [-77.37560392953174, 34.59334888996477], [-77.37614154850394, 34.593730407291076], [-77.37678899447229, 34.59332988476394], [-77.3769297714233, 34.59356452219396], [-77.3770585832663, 34.59327798720891], [-77.3771913615385, 34.593120173119566], [-77.37699057790172, 34.593083745524936], [-77.37692998715308, 34.59282950794451], [-77.37671171591921, 34.5923401591569], [-77.37638260165498, 34.59212840120796], [-77.37614211981779, 34.59184748411531], [-77.37592254445352, 34.59160474033642], [-77.37554773976174, 34.59145010809867], [-77.37535417068398, 34.59118621119149], [-77.37503471528731, 34.590883531438095], [-77.37513372716947, 34.59025795665558], [-77.37481209023808, 34.590066483507655], [-77.37521655665658, 34.58985949954344], [-77.37535466366582, 34.58961909575189], [-77.37559128643223, 34.589359945126745], [-77.37550482745574, 34.58911755633844], [-77.37535506883896, 34.58833509563655], [-77.37533985271416, 34.58830860619586], [-77.37458290562472, 34.58841848461064], [-77.3745669174947, 34.58841987937964], [-77.37449672135837, 34.58848928029847], [-77.37417279972547, 34.58858768593166], [-77.37412700335283, 34.588842251078155], [-77.37411701117978, 34.58895291644867], [-77.3741251735705, 34.58931632472892], [-77.37421096697815, 34.589687014717875], [-77.3745665146791, 34.58965929985902], [-77.37457522162293, 34.58966666557786], [-77.3745907037307, 34.58967381833837], [-77.37456647973471, 34.58976700380683], [-77.3743284084523, 34.58987971393468], [-77.37412148062965, 34.58979627827246], [-77.3737783290947, 34.589806266073424], [-77.3734504802967, 34.58976675330187], [-77.37333197754786, 34.58979882414802], [-77.37304544144273, 34.58989643225283], [-77.3731828670764, 34.59009350448349], [-77.37312570303006, 34.59030942973643], [-77.37328701983857, 34.59081514336881], [-77.37347570899207, 34.59110812881533], [-77.37336442647957, 34.591527977576405], [-77.37319222978707, 34.59199808385901], [-77.3734463619225, 34.59231821504936], [-77.37377740746888, 34.5925744675984], [-77.37384596469892, 34.59267913453708], [-77.37454515283439, 34.59263032688402], [-77.37456555697064, 34.59261970651067]], [[-77.37306812403203, 34.67623469977438], [-77.3729411337784, 34.67630985191687], [-77.37287012712724, 34.67624855838448], [-77.37250058167518, 34.67622705688247], [-77.37185942646265, 34.676238301420085], [-77.3717869838286, 34.67616250387033], [-77.37164566012979, 34.67625021770252], [-77.37156766820235, 34.676355318128095], [-77.37155486301333, 34.67696276748143], [-77.37155381674194, 34.67726214190337], [-77.37162050492525, 34.67732284244634], [-77.37191100646326, 34.677761682631726], [-77.37191771959544, 34.677769376404115], [-77.3719163795773, 34.677771485577374], [-77.37191907124877, 34.677770354544144], [-77.37192143098741, 34.67777092202327], [-77.37251713205958, 34.67777171095493], [-77.3731509115451, 34.67758433829971], [-77.37318422566257, 34.67758374741971], [-77.37379335768453, 34.677498230598445], [-77.37380114364689, 34.677502966286], [-77.37386882713064, 34.677501119555764], [-77.37435233876522, 34.67747279012608], [-77.37448295927497, 34.6774886497338], [-77.37456794552999, 34.67740499006879], [-77.37452485853963, 34.677339941404234], [-77.37480434201315, 34.676885088352975], [-77.37475562833596, 34.676454066245185], [-77.37478564533653, 34.67640026351147], [-77.37480915841043, 34.67633247707103], [-77.37473852448471, 34.67630273241975], [-77.37448188940084, 34.67621145763392], [-77.37446345927877, 34.67620441755711], [-77.37416069169979, 34.67623167530946], [-77.37389966636695, 34.67624429932239]], [[-77.39486344284262, 34.7205676462482], [-77.39484549510408, 34.72074196088], [-77.39475742799252, 34.72090013891818], [-77.39498268201544, 34.72087064488334], [-77.39504107891199, 34.72085817128929], [-77.3955520634529, 34.721118180585194], [-77.39565415676344, 34.72111251312383], [-77.39587161546197, 34.72112168706797], [-77.39591791819623, 34.72111719594295], [-77.39610357383988, 34.721099188286374], [-77.39622003647098, 34.721025597640704], [-77.39629995863163, 34.72097129298034], [-77.39638275299968, 34.720807449175254], [-77.39644078774694, 34.72074099324855], [-77.39641490481756, 34.72065553805427], [-77.39636445071727, 34.720527382799034], [-77.39626351295252, 34.72027232793058], [-77.39592208882608, 34.72005405190102], [-77.39586405697321, 34.72004186076294], [-77.39532741334108, 34.71979228355825], [-77.3953054667313, 34.71977905875451], [-77.39530712379916, 34.71975140547686], [-77.39526256964638, 34.719723743285726], [-77.39524391550071, 34.71976306734282], [-77.39528001462881, 34.71978966845028], [-77.39502887108574, 34.720246973495136]], [[-77.31999892665976, 34.747765559764446], [-77.32007230119872, 34.7479862814273], [-77.31969799150394, 34.74829790059438], [-77.31916579205132, 34.747879662254746], [-77.31878193847629, 34.747816672765055], [-77.31882670570103, 34.74717455898816], [-77.31882109195047, 34.746952146265066], [-77.31890114608176, 34.746918685419075], [-77.31890911470477, 34.746930752496745], [-77.31892370682526, 34.74693809326621], [-77.31942204998104, 34.747187268221076], [-77.31952057030391, 34.74724895750942], [-77.31987121315215, 34.74770246595114], [-77.31992647338043, 34.747725155160325]], [[-77.29279998096219, 34.563516184712824], [-77.29306998698357, 34.56324218604982], [-77.29306860414951, 34.56322445496784], [-77.29302464226711, 34.563220095417954], [-77.292664826307, 34.56312323056301], [-77.29236432528761, 34.56333385833964], [-77.29250075991996, 34.563461816977224], [-77.29250411581226, 34.56355861446409], [-77.2925979049066, 34.56358013744671], [-77.29265393788482, 34.56358301971447]], [[-77.26573631682261, 34.58378772652147], [-77.26624476032566, 34.58371010330989], [-77.26562876946171, 34.5835845355661], [-77.26554500136254, 34.58361759010557], [-77.26550495617215, 34.58365193068525], [-77.26499129971685, 34.58378239901205], [-77.26492349107455, 34.58390883216816], [-77.26511444144805, 34.584092556615374], [-77.26515829743097, 34.58451462735649], [-77.26579943258503, 34.58414642321108]], [[-77.23775320773265, 34.59202234222456], [-77.23796357083107, 34.591949787513244], [-77.23808662070422, 34.59186242394681], [-77.23817797776111, 34.591718232152914], [-77.23832578444723, 34.59093857679395], [-77.23831645162493, 34.590931651930575], [-77.23830804473648, 34.59092639008225], [-77.23825100714167, 34.590890689771584], [-77.23766778337315, 34.59052564555493], [-77.2374694279859, 34.59051390452992], [-77.23688405945441, 34.59040828030504], [-77.23641998784285, 34.59057643658203], [-77.23623518088064, 34.59077370530721], [-77.23592425115679, 34.591092189158054], [-77.23579509651988, 34.591210351738404], [-77.23575309333677, 34.59129793704624], [-77.23552009440748, 34.59166001409958], [-77.23586306734046, 34.59242492572792], [-77.23634913891131, 34.59240268068173], [-77.23690032010039, 34.59231865175822]], [[-77.39998787875511, 34.73194071068967], [-77.3999588029612, 34.73167530655098], [-77.39977004459885, 34.73158453999131], [-77.39960642654842, 34.731462863853054], [-77.39941096985248, 34.73145734079338], [-77.39923759163594, 34.73146220066705], [-77.39895660857691, 34.73149256381775], [-77.39880774982736, 34.73150763561334], [-77.398534908937, 34.73153818960202], [-77.39837910127736, 34.73155502306467], [-77.3982946485738, 34.73156414711773], [-77.39804069737697, 34.73158219270677], [-77.3979419411367, 34.73158849165008], [-77.39762095638542, 34.73167619445441], [-77.39747236462934, 34.73172563397494], [-77.39738071431792, 34.732167382534094], [-77.39733452102844, 34.73223655514026], [-77.39733017406347, 34.732324676581285], [-77.39742901477776, 34.732338338283874], [-77.39748609684715, 34.732339698319585], [-77.397635005718, 34.73234167020488], [-77.39795324578053, 34.73235525997431], [-77.39806760696581, 34.73234739878579], [-77.39830735898884, 34.73229729896859], [-77.39836739832234, 34.732284165259244], [-77.3986982607574, 34.73220074934549], [-77.39875554975774, 34.732186201618894], [-77.39877610669632, 34.732181701729694], [-77.39916125939845, 34.73208565653062], [-77.39943991545765, 34.73203733098595], [-77.3999466980003, 34.73203203946409]], [[-77.422173582888, 34.7442638021752], [-77.42220108437249, 34.74427292512715], [-77.42269923264101, 34.74471410715512], [-77.42288626072217, 34.744879938645596], [-77.42322764554349, 34.745103815200856], [-77.42338805174312, 34.74526024163742], [-77.42355350119797, 34.745494433038054], [-77.42349321714423, 34.745671965422375], [-77.42328301446112, 34.74578260095713], [-77.42312992141453, 34.745826301334255], [-77.42232672603082, 34.746007443319314], [-77.42232567664637, 34.74600810736504], [-77.4223244286396, 34.74600833388731], [-77.42232187621225, 34.74600804612758], [-77.4223204216452, 34.74600523984794], [-77.42230106408415, 34.7459678943148], [-77.42196651766551, 34.74532247158898], [-77.42194137853686, 34.7452739722089], [-77.42191215486548, 34.74521759187092], [-77.42189078089869, 34.74473692582092], [-77.42214773124027, 34.7442951743331]], [[-77.33024559696766, 34.65662260789231], [-77.3302619805331, 34.65661196239157], [-77.33028865856349, 34.65649598084282], [-77.33035453086474, 34.656473427073465], [-77.3304168477668, 34.65661566196251], [-77.33039171306616, 34.656626978212564], [-77.33029655057516, 34.65667017964153], [-77.33024314025323, 34.65669386922664]], [[-77.43257854222337, 34.50343712239807], [-77.43260209877268, 34.5033890422727], [-77.4326102744052, 34.50334212229388], [-77.43228183362032, 34.50301653418745], [-77.43206654545281, 34.50284324360831], [-77.43172760746776, 34.50278699830368], [-77.43146837466304, 34.502838016202354], [-77.43137552252234, 34.5029703039377], [-77.43090578094271, 34.503158710933874], [-77.430866227655, 34.5032820917752], [-77.43082338566884, 34.50341573391997], [-77.43079388938823, 34.50350774372543], [-77.43075968999355, 34.503614425189056], [-77.43083326902163, 34.50371760673978], [-77.43099283380612, 34.5041866475391], [-77.4319114991998, 34.50424166192618], [-77.43211176721286, 34.50419348973865], [-77.43229734502704, 34.50403063061903], [-77.43242491165262, 34.50389705783462], [-77.43248983847427, 34.50370268069024], [-77.43251028042005, 34.50364148301845]], [[-77.36899659843183, 34.72203622663669], [-77.36868550706649, 34.72204989642754], [-77.36866849863114, 34.72198542199099], [-77.36858906481481, 34.72204060062661], [-77.36818631409764, 34.72203980894437], [-77.3680593037537, 34.72202131897873], [-77.36791229575414, 34.72194151447513], [-77.36816185259053, 34.72166797762886], [-77.36816561378689, 34.72166548722595], [-77.36816896960991, 34.72166255292155], [-77.36890556224853, 34.72116857099077], [-77.36897806894221, 34.7211089172741], [-77.36910548018125, 34.721046482584796], [-77.36961175913758, 34.72079839290658], [-77.36986899988975, 34.72094156736769], [-77.37005146686842, 34.720998659417084], [-77.37006584735761, 34.7212969404882], [-77.37007087485236, 34.72140121942168], [-77.37006507632489, 34.72177670506392], [-77.37006233213393, 34.72188978522663], [-77.37005693471167, 34.72206461084019], [-77.36982538762625, 34.722125534379586], [-77.36972524252239, 34.72203824142757], [-77.36925513899304, 34.7220272376317]], [[-77.37416872008622, 34.60111762898855], [-77.37430856988144, 34.600903612893866], [-77.37451908033248, 34.60072271188272], [-77.37454339691078, 34.600698118451426], [-77.37456301208182, 34.60058201447228], [-77.3746407284616, 34.60036427189314], [-77.37465567540434, 34.60027847390441], [-77.37456314898313, 34.60015013004938], [-77.37427654337358, 34.59979283559081], [-77.37416917046474, 34.59971734035588], [-77.37397297529515, 34.59952769886064], [-77.37389004348917, 34.59941587903923], [-77.37377519213021, 34.599296851046354], [-77.37353194699237, 34.599004248516806], [-77.37333469894091, 34.59877052149725], [-77.3731833586084, 34.5985810130841], [-77.37298730325885, 34.59829045439589], [-77.37281430652165, 34.59818276430709], [-77.37272596107242, 34.59800908768872], [-77.37268715881957, 34.59769112044585], [-77.3726633679179, 34.597168984606405], [-77.372680271425, 34.59664878635928], [-77.3722163597458, 34.595552720394316], [-77.37221228028747, 34.595535723095296], [-77.37220005209716, 34.59550799367348], [-77.37217279614059, 34.59554141034581], [-77.37129613877057, 34.59639247553971], [-77.37062311315002, 34.59701489335195], [-77.36969283481862, 34.597596829993805], [-77.36957411399554, 34.59818257696175], [-77.3697007197503, 34.5984448126174], [-77.36979503783073, 34.59847358627604], [-77.36983434499899, 34.598506954480115], [-77.37030907297792, 34.5992063143284], [-77.37042328934942, 34.59940418038343], [-77.37062211123819, 34.59975468833481], [-77.37074330830089, 34.59999289186592], [-77.37066042832538, 34.600812253870515], [-77.37065103384563, 34.60085529865709], [-77.37072361924484, 34.60095466164566], [-77.37122541149463, 34.60162169144571], [-77.37130997466622, 34.601716882637966], [-77.3714096398916, 34.60174224526986], [-77.37157229344626, 34.60174694583777], [-77.37191706007779, 34.60182455976751], [-77.37219783913815, 34.601894825220455], [-77.3724503487135, 34.602022326794476], [-77.37279664017811, 34.60204047482211], [-77.37298607152296, 34.60195592143437], [-77.37337530102887, 34.601741943941555], [-77.37338026993321, 34.601738364945135], [-77.37338159446843, 34.601737112490305], [-77.37338575014888, 34.60173508751478], [-77.37369355291086, 34.60160361730224], [-77.37377446177965, 34.601534604459935], [-77.37393144867781, 34.60140098446238], [-77.37411717390184, 34.60120516788565]], [[-77.40913867648256, 34.57056826390558], [-77.40917843517768, 34.570674528986316], [-77.40917804313976, 34.570744179552406], [-77.40898629219872, 34.57112685049216], [-77.4089439343908, 34.57123561530509], [-77.40896900292354, 34.57155392537837], [-77.40914417748125, 34.571634797638396], [-77.40924269268834, 34.57167171241028], [-77.40940636703452, 34.57173897458157], [-77.4095061796794, 34.57176031211986], [-77.40963667404426, 34.571731610046854], [-77.4099896295767, 34.57145074219096], [-77.41002996568857, 34.571825316868406], [-77.41003065886062, 34.57182550840766], [-77.41003094133181, 34.57182548041019], [-77.41003104709607, 34.57182516072385], [-77.41005467144583, 34.57142308574309], [-77.41005807531145, 34.57139667837539], [-77.41008104574516, 34.571339013948105], [-77.41003060815412, 34.57124603260457], [-77.40984795643226, 34.570774655243994], [-77.40936081394518, 34.570648195977114], [-77.40931868155464, 34.57057229376362]], [[-77.2688381176601, 34.58260285733435], [-77.26917909060424, 34.58231475939667], [-77.26961514528135, 34.58208974570992], [-77.26915555997215, 34.58161150907117], [-77.26911840165752, 34.58160264710854], [-77.26847225917528, 34.581620316615144], [-77.26823978374486, 34.58175553470201], [-77.26800740311279, 34.58186412884079], [-77.26784923572733, 34.58195091855653], [-77.26790089227993, 34.582058727213386], [-77.2680478072685, 34.58213509671767], [-77.26815584141532, 34.58233064755701], [-77.26854439680805, 34.582476906866724], [-77.2685611362051, 34.582546247624286]], [[-77.37339191641004, 34.53586543859785], [-77.3735316208571, 34.53583840290682], [-77.37372056392277, 34.53572442137659], [-77.37398918021492, 34.53532091110907], [-77.37340317298107, 34.53537011841069], [-77.37327918336172, 34.535715601427874], [-77.37330254026091, 34.53578467011979], [-77.37332963563216, 34.53582024938896]], [[-77.33615418066057, 34.55892264837079], [-77.33597183664186, 34.55912695632569], [-77.33594527476664, 34.55912038934143], [-77.33595412210671, 34.55914774888209], [-77.33596373873804, 34.55915506881131], [-77.3359717970731, 34.55917588266491], [-77.33624180210785, 34.55966405868222], [-77.33636524841602, 34.55977343572297], [-77.33650709554999, 34.55964553914745], [-77.33675960568277, 34.55924435776793], [-77.33681148702509, 34.55908024468913], [-77.33684012397202, 34.55902035575409], [-77.33688742338269, 34.558876121136116], [-77.33675994338378, 34.558821904072246], [-77.3367060307598, 34.558673325373064], [-77.33637718064901, 34.55867428639767], [-77.33636612852126, 34.55867881636446]], [[-77.2882702015284, 34.56935174495317], [-77.28852637997063, 34.56894436362816], [-77.2889614625604, 34.569257107395515], [-77.28869252125915, 34.56977475051196]], [[-77.33387218053505, 34.69127902331218], [-77.33391449819246, 34.69116278164656], [-77.3339099974827, 34.69127383683211], [-77.33381668074117, 34.69149941256191], [-77.33387008297403, 34.69128626027729]], [[-77.25660912114391, 34.60474443136337], [-77.25700880190917, 34.60466518188894], [-77.25668274722818, 34.60459894536202], [-77.2564698144656, 34.60462277431263]], [[-77.3643244709966, 34.58132102150089], [-77.36444373782635, 34.5812419913375], [-77.36511282400767, 34.580664551106075], [-77.36522953031331, 34.58053388213169], [-77.36590102741488, 34.58032313845236], [-77.36598277515749, 34.58029972621795], [-77.36660106870355, 34.58011576036697], [-77.36668921965318, 34.579992486780704], [-77.36704006315257, 34.57967623645488], [-77.3669512887706, 34.5793111349324], [-77.36676948958662, 34.57925116621967], [-77.36668956068843, 34.57919227430616], [-77.36657786192126, 34.579060773448845], [-77.36640835301168, 34.57896476913952], [-77.36633969270068, 34.57892720583671], [-77.36607777281824, 34.57877753789996], [-77.36590168710049, 34.57880911137772], [-77.365804127187, 34.57873238440897], [-77.36577688658208, 34.57863115051754], [-77.36550780747521, 34.578493813549684], [-77.36529411567344, 34.57850636397494], [-77.36511379914911, 34.57847389040734], [-77.36480260318277, 34.578257759258385], [-77.36471989482881, 34.578223293511535], [-77.36451395381796, 34.578166529267705], [-77.36432584234612, 34.578303215412475], [-77.36374649159524, 34.57869847019825], [-77.36353757230127, 34.57881271756227], [-77.36347316834856, 34.57889352661493], [-77.36297495453306, 34.579640414506684], [-77.36291194612198, 34.579892799145], [-77.36342920551668, 34.579934523945276], [-77.36353698526456, 34.58007759877896], [-77.36378841303899, 34.58034466640677]], [[-77.36624004842828, 34.5450494295536], [-77.36611768460737, 34.545001385875054], [-77.36594076739837, 34.54506003924633], [-77.36562003653275, 34.5452157345711], [-77.36543360489716, 34.54531003051568], [-77.36532165350228, 34.54547685245069], [-77.36527205553124, 34.54572815827324], [-77.36526444714976, 34.545756607944874], [-77.36525002767348, 34.545798770663076], [-77.36522101296227, 34.5460076901298], [-77.36530549975774, 34.54618478627516], [-77.36538722341677, 34.546177711237256], [-77.36594900962602, 34.546057484710076], [-77.36609793966397, 34.54586705741552], [-77.3667046709738, 34.54554914216883], [-77.36676289170313, 34.54545998549111], [-77.36646148000294, 34.545094522977465]], [[-77.43250209650164, 34.73047751166386], [-77.43235900835258, 34.730505642346074], [-77.4322935699897, 34.73051071040062], [-77.43223815875362, 34.73059145716336], [-77.43217504729311, 34.73069095477761], [-77.43216225493086, 34.730716404151856], [-77.43214097361849, 34.73075295111713], [-77.4320584824178, 34.73095966189316], [-77.4320689889403, 34.73117594114211], [-77.43208015049666, 34.73122471765434], [-77.43219363284663, 34.731286420591545], [-77.43233529241915, 34.73136344415138], [-77.43239512057308, 34.731356837788844], [-77.43256981809255, 34.7313359142873], [-77.43267371081066, 34.73130178847048], [-77.43281886141511, 34.73122540349371], [-77.43289525882491, 34.73111984014011], [-77.43306627907764, 34.73081331876338], [-77.43300039649982, 34.73072979833066], [-77.4328727616586, 34.73061404692878], [-77.43271131595634, 34.7305150122251], [-77.43259322086212, 34.73047228567627]], [[-77.28178511489287, 34.5630048075716], [-77.28177108062336, 34.56297888476067], [-77.28169322670476, 34.56301062096395], [-77.28142655514645, 34.563119326420654], [-77.28137587778363, 34.56313998450665], [-77.281327157698, 34.56317235757411], [-77.28118792540963, 34.56327341861768], [-77.28103198275451, 34.56339527309958], [-77.2810735438605, 34.56350830785911], [-77.2812599570932, 34.56347855228246], [-77.28136825257741, 34.56346014720371], [-77.2816987319602, 34.56329779902297], [-77.2818870733083, 34.56321633037431], [-77.2821908850074, 34.56301520025327], [-77.28251023603377, 34.5628819774221], [-77.28291111839243, 34.5628045519331], [-77.28289080381151, 34.56246261614587], [-77.28237501543965, 34.562762453428874], [-77.28219312352203, 34.56292117255017], [-77.2820375638839, 34.56292443605592]], [[-77.2246575149873, 34.65784175958089], [-77.22462797171542, 34.65777020572562], [-77.22455533035202, 34.65772771784001], [-77.22475678142757, 34.657645891223936], [-77.22475270754853, 34.65774328590481], [-77.22477600862938, 34.65779928749761]], [[-77.35736337404828, 34.738236257590835], [-77.35731611126236, 34.738262131315985], [-77.35729475879765, 34.73847252782527], [-77.35739970996767, 34.73825065428778]], [[-77.41830271374678, 34.5639753296754], [-77.4183922999626, 34.56415229085581], [-77.41865250361874, 34.56416359908172], [-77.41862105716014, 34.56387263356282], [-77.418457285659, 34.56381483887773], [-77.41838592442205, 34.56373541712691], [-77.41821320573804, 34.56375367290977], [-77.41826875158588, 34.5638786618115]], [[-77.38750685633067, 34.53660342495896], [-77.38745217945448, 34.53664902092445], [-77.38741173256378, 34.5366883158251], [-77.38710562466004, 34.53697714328757], [-77.38710465945996, 34.53697818723399], [-77.38713210353228, 34.537218314416975], [-77.38749214756177, 34.5372555139078], [-77.38779776944712, 34.53712229692979], [-77.3881349965916, 34.53698107337283], [-77.38815130469848, 34.5366684405377], [-77.38777404417074, 34.536636054042084], [-77.38758579172062, 34.53661382979611]], [[-77.39370694895065, 34.53671065910888], [-77.39378763551169, 34.53660065560574], [-77.39408736561558, 34.53651875147621], [-77.39418228356658, 34.5365070399308], [-77.39431655143508, 34.536671477169655], [-77.39426911010474, 34.53686399860756], [-77.39422499914588, 34.53696255066606], [-77.39411708746148, 34.536979139523794], [-77.39391241088512, 34.536974628916894], [-77.39379843681279, 34.536979032770816], [-77.39378003263658, 34.53693884359991], [-77.3937321479137, 34.53678779008526], [-77.39372215565812, 34.53675724768642]], [[-77.3368597321357, 34.53300912005983], [-77.33680293375387, 34.53296045941282], [-77.33656094680319, 34.532895333185], [-77.33634726294748, 34.532914172044755], [-77.33629055343036, 34.53278933181248], [-77.33617149973904, 34.53276178088103], [-77.33609231976178, 34.532817840855316], [-77.3360398775558, 34.53299142976077], [-77.33601459043298, 34.53307383637368], [-77.33595342829915, 34.5331977457263], [-77.33595740853445, 34.53320911700727], [-77.33604629200832, 34.53324296033779], [-77.33615978758594, 34.533267207469095], [-77.3361746793564, 34.533286070386694], [-77.33623690933153, 34.53328668086115], [-77.33645639070355, 34.53331427075653], [-77.33655042363088, 34.53334954291518], [-77.3367696077726, 34.53334672702768], [-77.336944144536, 34.53329872882752], [-77.33702370742469, 34.53322203797339], [-77.33700506418887, 34.533176206188585], [-77.33694930405841, 34.533075984037964]], [[-77.29362212393337, 34.5558613128535], [-77.29344358970242, 34.556079769753325], [-77.29361505016291, 34.55616012656106], [-77.29375939495363, 34.55603447497759]], [[-77.45415226917812, 34.60308725282222], [-77.45432544013165, 34.603120677715424], [-77.45442783106765, 34.60313371444248], [-77.45447778063803, 34.603106273855225], [-77.45465630176156, 34.603008200543115], [-77.45502401014187, 34.60280619231714], [-77.45459745417196, 34.60279329230052], [-77.45443214316671, 34.602704880267744], [-77.45422290736077, 34.602775107984215], [-77.4540851644686, 34.60284218463981], [-77.4540420937318, 34.60290165692097], [-77.45409984603236, 34.60304174318576], [-77.45411353202046, 34.603065910233255], [-77.45412853037159, 34.60307617675221]], [[-77.43448013569326, 34.744104910051796], [-77.43452844009424, 34.74425605617786], [-77.43457893210883, 34.744466962888616], [-77.43482142991931, 34.74473461484098], [-77.43486359732465, 34.74478146570312], [-77.43491494823037, 34.74477319311782], [-77.43488676318114, 34.74480602595069], [-77.43510530628251, 34.74505411205749], [-77.43533618557687, 34.74496305083646], [-77.4353338097734, 34.744823795062814], [-77.43529942446467, 34.744612808497955], [-77.4353057976993, 34.744393394316276], [-77.43526562451952, 34.7441805086866], [-77.43524260866533, 34.74409179723928], [-77.43510937297202, 34.74393231037622], [-77.43480673628514, 34.743925536372906], [-77.43478404490263, 34.74392583743544], [-77.43472651222203, 34.74395900182084]], [[-77.34219160069449, 34.625959316647055], [-77.34209259819431, 34.62597896657311], [-77.34188641625072, 34.62603343161079], [-77.34182785108428, 34.626151047130506], [-77.34197977067817, 34.626540857267926], [-77.34196517126122, 34.62655419280027], [-77.34197603571502, 34.62657908202596], [-77.3420005919885, 34.62656029989744], [-77.34227068242784, 34.62635291930269], [-77.34252439451706, 34.62605541792904]], [[-77.33869126206245, 34.63308330809865], [-77.33842720837002, 34.6325651781081], [-77.33844085391692, 34.63252393818108], [-77.33867542993485, 34.63235603128908], [-77.33881807147753, 34.632262885350485], [-77.33892598273258, 34.632009851971425], [-77.33919394133466, 34.63208801348317], [-77.33926109003829, 34.63208456828932], [-77.3393905427983, 34.63213017424603], [-77.33957518745851, 34.632054700191006], [-77.33974159747011, 34.632151710434584], [-77.3402296899315, 34.632246471513234], [-77.34025233086741, 34.63223860356434], [-77.34027709057943, 34.632239490460584], [-77.34063572427995, 34.63222266772423], [-77.34028833684009, 34.63241781461709], [-77.34017780000978, 34.63286527586267], [-77.33977312784651, 34.63303993967576], [-77.33977914569724, 34.633160297058964], [-77.33965199686739, 34.63320169411381], [-77.33949430732129, 34.63324541521889], [-77.33931459111284, 34.6332480062755], [-77.33918638807454, 34.63325102908185], [-77.33917532376164, 34.63325098297273], [-77.33914718046555, 34.63323746339422]], [[-77.24181433412856, 34.59565895345269], [-77.24205616406053, 34.595590702277136], [-77.24253931091259, 34.595512908090384], [-77.24291852148178, 34.595143332568135], [-77.24297052043855, 34.595089328395936], [-77.24299289137257, 34.59507730510138], [-77.24300372305106, 34.59505540965767], [-77.24302391769838, 34.594935125430666], [-77.24310588711235, 34.594614859849585], [-77.24300609656112, 34.594319748023246], [-77.24197629005876, 34.59420487875296], [-77.24153785340012, 34.5948692993976], [-77.2426964969822, 34.59505394482973], [-77.24145975454775, 34.59506014486816], [-77.24155784832507, 34.5954355528719], [-77.24167400357724, 34.59555310847129]], [[-77.3674316975508, 34.721089106200424], [-77.3676228976154, 34.72118471529295], [-77.36769262158415, 34.72122162844176], [-77.36770894460531, 34.72122442108171], [-77.36810597137621, 34.721612652340255], [-77.36765218217076, 34.72136096383182], [-77.36748534127693, 34.72139649934425], [-77.36730814449604, 34.72151480812455], [-77.36725827153478, 34.72149985349371], [-77.36704790799698, 34.72137991469963], [-77.36699412205492, 34.721336578046056], [-77.36702378748099, 34.72129212972056], [-77.36712927323791, 34.721074314666545], [-77.36713932234093, 34.72106495054849], [-77.3671870686754, 34.72106637409939], [-77.36740093557734, 34.72106720454778]], [[-77.43196650747068, 34.67875221374678], [-77.43187084618393, 34.67870054572803], [-77.43180555672153, 34.67866528172236], [-77.4317327520121, 34.67862417967979], [-77.43160535275275, 34.67853565586599], [-77.43159937298502, 34.6785315156566], [-77.43159468970856, 34.67852566394799], [-77.43161463960938, 34.67847874417611], [-77.43168655128272, 34.678294498173045], [-77.4318426256887, 34.67833284735517], [-77.43196843907793, 34.67836319679241], [-77.43206309149372, 34.6784099545202], [-77.43218782825332, 34.67850571640496], [-77.43212914327816, 34.67864420300893], [-77.43208483818583, 34.67869709155635]], [[-77.33882256348552, 34.56075618990044], [-77.33903942474757, 34.560737776161645], [-77.33912205042772, 34.56073076032272], [-77.33926011240774, 34.56058280767974], [-77.33927871852936, 34.560536539121074], [-77.33923636940608, 34.560373950601054], [-77.33919419725147, 34.56030261804278], [-77.33912247696524, 34.56017698259106], [-77.33872892739329, 34.56002266811882], [-77.3387286605483, 34.560022797326184], [-77.33872798945235, 34.56002323839239], [-77.33833472170255, 34.56002751128319], [-77.33814187483254, 34.56032376014453], [-77.33807035401179, 34.56054162542402], [-77.33820040460098, 34.560667138781525], [-77.3383342298235, 34.56065833141663], [-77.33850742305589, 34.560665429314696], [-77.33872813438151, 34.56070179602618]], [[-77.34859973840652, 34.55207300183318], [-77.34855577939886, 34.5520003074153], [-77.34853635741021, 34.55195971188141], [-77.34852156537157, 34.551940640339026], [-77.34851875613306, 34.55185809809745], [-77.34850446555981, 34.55184189071319], [-77.34849033678299, 34.55182026225668], [-77.348430478576, 34.551768198214674], [-77.34829787648275, 34.55165286183745], [-77.34828158929318, 34.55163948862438], [-77.34827015243073, 34.551630786553766], [-77.34819847401843, 34.55157804472012], [-77.34813106149176, 34.55152839058958], [-77.3481145472352, 34.5515245131217], [-77.34795467373831, 34.55143136112309], [-77.34794550107375, 34.551411053917654], [-77.34791118371767, 34.55139513036777], [-77.347606669654, 34.55142604949583], [-77.3475200175607, 34.55133175100184], [-77.34730689840586, 34.55139255188949], [-77.34731705776326, 34.55164516039429], [-77.34726531523202, 34.551775371907866], [-77.34728808096696, 34.55188016908187], [-77.34739864317892, 34.552066144391446], [-77.34750125584097, 34.55214645559896], [-77.34754630412485, 34.552195784328745], [-77.34755863947811, 34.55222280721797], [-77.34769404969083, 34.552299357585206], [-77.3477097881256, 34.55231345305225], [-77.34773561211706, 34.55231975318495], [-77.34788919335924, 34.55235023059335], [-77.34798434167006, 34.55234709009406], [-77.34812776866184, 34.55238573583181], [-77.34823180903408, 34.552401219320565], [-77.34828033887905, 34.552414723523995], [-77.34843774698979, 34.55243963981982], [-77.34858852322006, 34.55231943623237], [-77.34854832518982, 34.55216175073391]], [[-77.44303824077049, 34.74977193040998], [-77.44297367698601, 34.749824140790146], [-77.44292634238172, 34.749850720929224], [-77.44259287961954, 34.7499499200006], [-77.44243788201697, 34.7501165361591], [-77.44284358506044, 34.750359299657134], [-77.44287986416172, 34.750319285246775], [-77.44300258806214, 34.75043637020566], [-77.44338620545972, 34.75061372063062], [-77.44339493893698, 34.750755433752225], [-77.44383493107297, 34.75123046014349], [-77.44351025304726, 34.75056196661741], [-77.44321353942237, 34.74995103545585], [-77.44330678374602, 34.74975402183433]], [[-77.38126135399507, 34.58361157322848], [-77.3812596849179, 34.583626104840526], [-77.38127721535062, 34.58362638115437], [-77.38127190343768, 34.58361118268499]], [[-77.37579364871787, 34.53381860860763], [-77.37602030700084, 34.533434307553904], [-77.37608811970698, 34.533248931179074], [-77.3761267004014, 34.533174142128374], [-77.3761011123411, 34.53311480811597], [-77.37603532302734, 34.53304749465804], [-77.375847149396, 34.532969610632115], [-77.37582935520753, 34.53296203157084], [-77.37581323865747, 34.53295554066208], [-77.37576214077332, 34.532949914194816], [-77.37569886326753, 34.532990985685935], [-77.37535156971039, 34.533246879545366], [-77.3753630586576, 34.53331508492432], [-77.37550586703067, 34.53350846323387]], [[-77.43376263696489, 34.67918752649088], [-77.43369024809783, 34.67932693230535], [-77.43345175924168, 34.67931729528705], [-77.43329372940926, 34.67931925873051], [-77.43316779959414, 34.67922059578242], [-77.43297531069076, 34.67906978535551], [-77.43302817829132, 34.678992330400256], [-77.43309480697256, 34.678899417920526], [-77.43315102437397, 34.678819267792356], [-77.4331685546291, 34.67879657818219], [-77.43330421845819, 34.678729252031424], [-77.43332312402967, 34.678726730093175], [-77.43345862774558, 34.67874922134524], [-77.4336597187472, 34.67878409582992], [-77.43373537469022, 34.67890003085033], [-77.43381428136682, 34.67902240748661]], [[-77.28930951607083, 34.560353668829116], [-77.28935159462725, 34.56036597227163], [-77.28935905029856, 34.56036468338707], [-77.28945500069904, 34.56037161486769], [-77.28946664867867, 34.56036599975838], [-77.28948877265071, 34.56033439417925], [-77.28941875978231, 34.56032659686572], [-77.2894107275259, 34.56030080085806]], [[-77.38831182142219, 34.56312677742908], [-77.38832548898287, 34.563028490862195], [-77.38839837909981, 34.56302102719949], [-77.38850187787332, 34.5631931864086]], [[-77.42810459190788, 34.73601143886342], [-77.42811022749605, 34.736014607699495], [-77.42810850120416, 34.736008290774414], [-77.42810788945572, 34.73600645885227], [-77.42810696570119, 34.73600323924408], [-77.42807929319035, 34.73590679073873], [-77.42805739533392, 34.73585066403007], [-77.42803831945429, 34.73581228549058], [-77.42793571483523, 34.73572948458853], [-77.42787278370733, 34.73570475074533], [-77.42774855273554, 34.73570995990258], [-77.42768838830688, 34.735699307969085], [-77.42768969532503, 34.73573451021156], [-77.42775811705062, 34.7358132334544], [-77.42782168952799, 34.735881240097164], [-77.42783206672524, 34.73589831689321], [-77.42786307174693, 34.73592251187132], [-77.42795064426572, 34.735989504519], [-77.42810011077741, 34.736009703470245]], [[-77.4295540294196, 34.709963221147426], [-77.42955921998143, 34.70996498180822], [-77.42957096230059, 34.70996411555488], [-77.42995746356287, 34.70986801989634], [-77.43002678975898, 34.70976194838913], [-77.42993841896462, 34.709533522165586], [-77.42971641348477, 34.70940213091022], [-77.42967469894262, 34.70940588648319], [-77.42952110324188, 34.709387621800275], [-77.42942948113318, 34.70937902800235], [-77.42940137491816, 34.709383286656724], [-77.42933348772335, 34.70946179332247], [-77.4293268345493, 34.70958518228812], [-77.42932426329867, 34.709598333946246], [-77.42932488999894, 34.70960843113809], [-77.42955173699629, 34.70995739411334], [-77.42955254342954, 34.709959828491705]], [[-77.40018097029659, 34.580672194520304], [-77.40003219273561, 34.58075049450164], [-77.400032500671, 34.58107073328202], [-77.40004569025942, 34.581333433515894], [-77.4001809521851, 34.581440421917236], [-77.40034074875605, 34.581543243056736], [-77.40057497246724, 34.58165788094241], [-77.40059270332087, 34.581659970283255], [-77.40094805822436, 34.58160523434712], [-77.40096899849596, 34.58160200885632], [-77.40100758910951, 34.58157762516337], [-77.40136302444745, 34.58148885100066], [-77.40155700792374, 34.58132437129733], [-77.40176078140264, 34.58108594221059], [-77.40154040113713, 34.580926619501724], [-77.40142347294677, 34.580710044080355], [-77.40139122020216, 34.58068432427186], [-77.40136303222067, 34.58066029392218], [-77.40118258887753, 34.58051466720475], [-77.40096901544653, 34.58040527771775], [-77.40093956512165, 34.58038703398802], [-77.40082182133149, 34.58037229025696], [-77.40066155124144, 34.58030215218486], [-77.40057499845845, 34.58028390656445], [-77.4005050645272, 34.58034264261859], [-77.40039672843588, 34.580433631298064]], [[-77.41329022869829, 34.7615783118124], [-77.41334220059379, 34.76151788657812], [-77.41335940397562, 34.76160249014403], [-77.41331504029267, 34.76161162066622]], [[-77.44306272752198, 34.73601697597905], [-77.4431550132357, 34.73607099308029], [-77.44329024046252, 34.73613689734768], [-77.44349556852052, 34.73607410354649], [-77.4435817072539, 34.73586532829089], [-77.44361327300525, 34.73578724715837], [-77.44351059650072, 34.7357491902716], [-77.4433049656603, 34.735552677192715], [-77.44320915282344, 34.73550946174569], [-77.44284383461991, 34.73540781901588], [-77.44270828975193, 34.735398920976564], [-77.44256761974795, 34.73547040512956], [-77.44263999572337, 34.73563497672888], [-77.44268160643279, 34.735729592343006], [-77.44276640869236, 34.73581936570131], [-77.44287717687266, 34.73592324508785]], [[-77.35690264559472, 34.73783150974064], [-77.35688504019991, 34.7378210644361], [-77.35679491448212, 34.73775806798582], [-77.356845453196, 34.737839361280855], [-77.35687264116856, 34.737863758738094]], [[-77.37117972664831, 34.67873296331603], [-77.37106803864094, 34.6786411113031], [-77.37076438266696, 34.678902719541206], [-77.37098259299823, 34.678935681666296], [-77.37110874636898, 34.67896505967005], [-77.37130358451303, 34.678860668236794], [-77.37134998043545, 34.67882221630394], [-77.37132338635783, 34.678792401434414]], [[-77.38441100255122, 34.626928764100306], [-77.38430391236209, 34.62690949690645], [-77.38427543201811, 34.626767571902334], [-77.38423283214952, 34.62670745747287], [-77.3844110671553, 34.62656934085661], [-77.38451179748779, 34.62656345146746], [-77.38468912690455, 34.62655454007448], [-77.38472004027068, 34.62675773943208], [-77.38451563835716, 34.6268789859912]], [[-77.42224211388974, 34.564067417163486], [-77.42219934176495, 34.56407722718467], [-77.4220944316134, 34.5641384892102], [-77.42196725121957, 34.564285153398636], [-77.42193946623263, 34.56448717699839], [-77.42212440809996, 34.56443179120346], [-77.42224216223885, 34.564278946873], [-77.42229646034315, 34.56416784513537], [-77.4223199652504, 34.56402197914493]], [[-77.33648920197928, 34.626084430706825], [-77.33655120852738, 34.62603135428941], [-77.33652497076906, 34.625892372157026], [-77.33641432647612, 34.62587993095707], [-77.33631822746221, 34.62585233155255], [-77.3362569670739, 34.625849026230156], [-77.33623591898098, 34.62584789054686], [-77.33611321174607, 34.625974322166826], [-77.33591276443914, 34.626118974683216], [-77.33615996041814, 34.62620708570441], [-77.33637500353358, 34.626189303606566], [-77.33646330242969, 34.62612377932058]], [[-77.37008180538405, 34.5811480903807], [-77.37019912129577, 34.58139069731085], [-77.37023489457998, 34.58139867084297], [-77.37026381055067, 34.581412541329655], [-77.37052669199664, 34.58145364365605], [-77.37062890372982, 34.58145383789838], [-77.37081645896372, 34.58150387944819], [-77.37102292605667, 34.5814748430784], [-77.37121476685294, 34.581244397041225], [-77.37132103774772, 34.58112559943913], [-77.37126570172897, 34.5809756733062], [-77.37106676949193, 34.58084115715415], [-77.37104175985594, 34.58082472790882], [-77.37093574198532, 34.58076580645815], [-77.37062919003151, 34.58069628007148], [-77.37038714280627, 34.58077526640951], [-77.37042976926021, 34.58050835653812], [-77.37023526544267, 34.5804297866805], [-77.3698882589139, 34.58053565041281], [-77.36984119959101, 34.58053392326084], [-77.36956915173036, 34.580339110430316], [-77.36954104819067, 34.580636368609944], [-77.36984108269591, 34.5808355629271]], [[-77.39506413873512, 34.617724853411026], [-77.39555197064195, 34.61796074815662], [-77.39584442084721, 34.61782582660263], [-77.39622462386936, 34.617973337490184], [-77.39623353947515, 34.617977514416296], [-77.39623861134835, 34.617978236631345], [-77.39627250239778, 34.61800293611125], [-77.39645222582254, 34.61813500397406], [-77.39652163481097, 34.61823534530336], [-77.39659650521216, 34.61834427710891], [-77.39660325240119, 34.61837512131142], [-77.39663279283168, 34.61839720750444], [-77.39688042926772, 34.618727901134484], [-77.39663276761456, 34.61904780788039], [-77.3963999649013, 34.618797193320724], [-77.39632431799019, 34.61871575839145], [-77.39623858308171, 34.61862346301087], [-77.39615670721804, 34.61861998937948], [-77.39605610783067, 34.61861874550404], [-77.39604148280719, 34.618618619817994], [-77.39601705730487, 34.618613821373756], [-77.39584438359928, 34.61859204779725], [-77.39572790132051, 34.61859499891258], [-77.39547113143999, 34.61850657168254], [-77.39532882721805, 34.61823324817843]], [[-77.42794780043454, 34.57028932670181], [-77.42761045375805, 34.57055929202319], [-77.4276807980518, 34.57088914685603], [-77.42736531028068, 34.57094026102633], [-77.4270773984328, 34.57117515424315], [-77.42697139912889, 34.57114124663248], [-77.42693881193165, 34.57111607036396], [-77.42657733935542, 34.57082836805645], [-77.42653847612826, 34.57075609324056], [-77.42650121464011, 34.57071961743459], [-77.4263251065037, 34.570592246612335], [-77.42618324028433, 34.57036500242014], [-77.42617177042908, 34.570355002194795], [-77.42616559941989, 34.570324535963174], [-77.42621110191976, 34.57030691443997], [-77.42657716043975, 34.570201039943655], [-77.42675665221608, 34.57002701844263], [-77.42693078032778, 34.56980835350301], [-77.42716545725443, 34.56955948317865], [-77.42736484404406, 34.569356458963526], [-77.4273858129881, 34.56934060003665], [-77.42751254703168, 34.5692996775679], [-77.42772302382356, 34.569230731254486], [-77.42780067171961, 34.56921286432512], [-77.42794776483242, 34.56944039095859], [-77.42808184662091, 34.56964197791167], [-77.42805754034198, 34.569748248910514]], [[-77.38062802686748, 34.55977981509741], [-77.38075519657643, 34.55949060886162], [-77.38081791227484, 34.5594152411958], [-77.38087947483115, 34.55933164841691], [-77.38090753469217, 34.55943837441995], [-77.38092556481324, 34.55946604878735], [-77.38090686228156, 34.55949831115778], [-77.3808794204916, 34.55953253412848]], [[-77.39148412625295, 34.5681331283383], [-77.39145528964922, 34.56820071601509], [-77.39139838808126, 34.56835778002227], [-77.39140924411814, 34.56845548586773], [-77.39141366162885, 34.5684638284276], [-77.39141998945212, 34.56846551756704], [-77.39151411229926, 34.568444835803646], [-77.39164016876364, 34.56832290595085], [-77.39158250315506, 34.568192605385974], [-77.391600709079, 34.56811631248936], [-77.39151416409157, 34.568066161906486]], [[-77.37185503563619, 34.689646533155646], [-77.37198428413214, 34.68945768584213], [-77.37197564133332, 34.68935654759748], [-77.37197829667312, 34.68933666049941], [-77.37188712599449, 34.68922849907339], [-77.37188590136974, 34.68922850839217], [-77.37186890074022, 34.68922985038148], [-77.37158225249671, 34.689247819782814], [-77.37142172862357, 34.68929132094259], [-77.37130900239909, 34.68935280399625], [-77.37106232989211, 34.6895844210692], [-77.37131145725488, 34.689670773503124], [-77.37145174809099, 34.68969769142293], [-77.37149767911843, 34.68972453213572], [-77.37156219682672, 34.68975940544602], [-77.37163536076753, 34.689815661204], [-77.37179158784727, 34.68978045940596]], [[-77.3820774038994, 34.58267472028679], [-77.38207657777325, 34.582651188604466], [-77.3820722095809, 34.58263377472041], [-77.38208318568897, 34.5824379537536], [-77.38205551944544, 34.582401104221574], [-77.38198577356465, 34.582314885055816], [-77.38188232130507, 34.58225462407858], [-77.38185854436236, 34.582231336269714], [-77.38179955642767, 34.58226655374118], [-77.38174551321517, 34.582364870974935], [-77.38176494468767, 34.58258458469927], [-77.38196852492604, 34.58266676330848], [-77.38201154961398, 34.58270785897407]], [[-77.3856382456474, 34.515876999212885], [-77.38561963664141, 34.515880608508034], [-77.38560254824596, 34.51588308143737], [-77.38522654633671, 34.515908995238895], [-77.38516217189638, 34.51595723221134], [-77.38522455682815, 34.515997053663725], [-77.38559689122398, 34.51590832265494], [-77.38561917673385, 34.5159009688765], [-77.38563454667364, 34.51589864732258], [-77.38568480893001, 34.51588184073918]], [[-77.3764682585014, 34.59534716890041], [-77.37641755118584, 34.59548112673937], [-77.37638441685804, 34.595571529421875], [-77.37653506059121, 34.595664120093474], [-77.3766320434925, 34.5955358519046], [-77.37659543531768, 34.59539380122341], [-77.37660543035012, 34.59532740540575], [-77.3765899664887, 34.59527060828272], [-77.37648172129028, 34.595287645742566]], [[-77.33340359731321, 34.56227394418348], [-77.33321160886396, 34.562344782140876], [-77.33304085839141, 34.562326089116105], [-77.33306079347346, 34.562273545205535], [-77.33303460388197, 34.562114718341896], [-77.33321200341267, 34.56187499358447], [-77.3333222738809, 34.56207336486912], [-77.33339885568837, 34.56226407083394]], [[-77.42721316994471, 34.49958138354769], [-77.42729194811744, 34.49946539925517], [-77.42707828236763, 34.49951581358133], [-77.42694334117567, 34.49964740939447]], [[-77.33481804233553, 34.697651388158796], [-77.33454040250373, 34.697608080853094], [-77.33443251408711, 34.697620654594004], [-77.33421208064007, 34.697723398548476], [-77.33403531488395, 34.697798598654636], [-77.33380524801248, 34.69803635596982], [-77.33425860037497, 34.697996594344126], [-77.33431552745192, 34.69802323963893], [-77.33433990130736, 34.69801920438216], [-77.3349260765333, 34.69795006935501]], [[-77.39702697654641, 34.618868778743604], [-77.39713661164095, 34.618997439729625], [-77.39722407023143, 34.61910007511948], [-77.39722620310276, 34.61910260485128], [-77.39731047114725, 34.619209676458155], [-77.39733320664016, 34.619417012654594], [-77.39722405929568, 34.619449927701794], [-77.39715796716033, 34.61946583508007], [-77.39710433716192, 34.61946141111996], [-77.39702695802116, 34.61941763705243], [-77.39692661357022, 34.61935809827831], [-77.396887292494, 34.61930191208749], [-77.39676677984701, 34.61916886353332]], [[-77.3415873146529, 34.6841662198654], [-77.34155076699444, 34.68413348685619], [-77.34136986114382, 34.684044122862005], [-77.34126251386675, 34.6840219937128], [-77.34115012392087, 34.683998824933326], [-77.34108087669358, 34.684008689925086], [-77.34087851015674, 34.68407714136043], [-77.3409101470543, 34.684293132070096], [-77.3409953114545, 34.68430326937997], [-77.34110088780811, 34.68434343884729], [-77.34121917561598, 34.68437923611215], [-77.34126821293975, 34.684394076196746], [-77.34129947729053, 34.68438770578174], [-77.34132931937857, 34.684407561486715], [-77.34154729175955, 34.68446361663617], [-77.3417485724196, 34.68435003286036], [-77.34162214239261, 34.68420591908971]], [[-77.44563491022393, 34.60557871497022], [-77.44550291368365, 34.605521715867695], [-77.44548684883395, 34.60541400275284], [-77.44546838924656, 34.60528620674854], [-77.44567519853585, 34.60518371359305], [-77.4457770872294, 34.60513788481277], [-77.4459462012146, 34.60521067870559], [-77.44595207611182, 34.60530233222192], [-77.44597391718389, 34.60538740157466], [-77.44588013916578, 34.605514363553894], [-77.4457596976653, 34.605537548267144]], [[-77.44969556005454, 34.61177006785524], [-77.44978628855485, 34.61168531450302], [-77.44988539547852, 34.61147740947289], [-77.44988283665931, 34.61146818792288], [-77.44986186130141, 34.61146917490551], [-77.44961134850283, 34.61146250172131], [-77.44944547973384, 34.61154576385259], [-77.44930269339778, 34.611583221429605], [-77.44931682435316, 34.61170306865307], [-77.44945624385079, 34.611779437674016]], [[-77.44643834709271, 34.60779359152899], [-77.44648769811036, 34.60773387514841], [-77.44668757729119, 34.60760313062284], [-77.4467110383889, 34.60758954263265], [-77.44688384141676, 34.607712697479144], [-77.4468494415461, 34.607862381415075], [-77.44688895644856, 34.60795128070378], [-77.44675471135858, 34.607978204722045], [-77.4465487907162, 34.607957048751736], [-77.44635542623917, 34.6080092375172], [-77.44640669092338, 34.607848764914685]], [[-77.39423667452478, 34.5340871655666], [-77.39440761835746, 34.53420998996935], [-77.39423037330104, 34.53436750694023], [-77.39408667766122, 34.53425630291694]], [[-77.37677492782602, 34.67661410376907], [-77.37676210110521, 34.67654742440114], [-77.3765042348471, 34.67665133003439], [-77.37672821326902, 34.67666428297903]], [[-77.38496513094299, 34.58971227383108], [-77.38487978639789, 34.5895374470207], [-77.38500933702841, 34.58944900629663], [-77.3850103868452, 34.589447026604056], [-77.38519539141474, 34.58943105776409], [-77.38520637272934, 34.58943315322869], [-77.38525287883343, 34.58951708028725], [-77.38520634026882, 34.58959789566172], [-77.38518263125363, 34.58960780668573], [-77.38514844107591, 34.58963827744739], [-77.3850368193637, 34.589684028436956]], [[-77.41612877373079, 34.71896135348488], [-77.41619441779011, 34.71902087814436], [-77.41625214745694, 34.71900449753541], [-77.41631617641819, 34.718983983404925], [-77.41631528738756, 34.71894127189543], [-77.41624663045336, 34.71886279449653], [-77.416244063654, 34.718859387467106], [-77.41623754501849, 34.718855446322415], [-77.41621023478294, 34.718873496494915]], [[-77.26290999121008, 34.5861326417731], [-77.26281047370462, 34.58611494313837], [-77.26278547503175, 34.586179276616484], [-77.26290736514676, 34.586201110709105]], [[-77.43073662512629, 34.74559209283908], [-77.43052325899947, 34.74537636775763], [-77.43042696610803, 34.74540789619249], [-77.43035224207861, 34.745413337036624], [-77.43030801211306, 34.74544232081935], [-77.43028592439461, 34.74555139277879], [-77.43027609422357, 34.74559217929429], [-77.43032222709819, 34.745610693765414], [-77.43045437036102, 34.74561432835749]], [[-77.38257158875052, 34.653749323036365], [-77.38251231482201, 34.65367446572893], [-77.38250147790957, 34.653667322049564], [-77.38250047711273, 34.65368299810413], [-77.38249949583322, 34.65369987236502]], [[-77.27420022843545, 34.567656024713806], [-77.27410916379284, 34.567791412164], [-77.27435351050424, 34.56779234407275], [-77.27444066109894, 34.567667195227486]], [[-77.37207932327377, 34.58210415999117], [-77.37220479333962, 34.5820969149805], [-77.37231600326086, 34.58205468657745], [-77.37240182766541, 34.58204667691224], [-77.37245008879104, 34.581915560927605], [-77.37246639549909, 34.58184371931206], [-77.37247861432166, 34.58180531160558], [-77.37240194059916, 34.58172951281304], [-77.37238118206278, 34.581735572310365], [-77.37223906511056, 34.58173368109111], [-77.3722049232009, 34.58173456648341], [-77.3720155491677, 34.581757637731265], [-77.37199992634956, 34.58175954103337], [-77.37196755341013, 34.58181624321976], [-77.37198114368404, 34.58198311629292]], [[-77.39524797279351, 34.53539824838415], [-77.39528741712151, 34.5354926064571], [-77.39506294811017, 34.535538389585014], [-77.3950454717321, 34.535374966456715]], [[-77.43481698766463, 34.730520660319044], [-77.43481006673359, 34.73052366206411], [-77.43462090296983, 34.73057418683993], [-77.43456106182254, 34.73063609133605], [-77.43453832257204, 34.73070821842114], [-77.43470083375723, 34.730943500077615], [-77.43492761062605, 34.73084426097692], [-77.43497619811288, 34.73078075654656], [-77.43499123779252, 34.73067981637172], [-77.43483890782638, 34.73053374101759], [-77.43482998178536, 34.73052389537746]], [[-77.43170365666559, 34.58426359010783], [-77.4318744210266, 34.5841666931665], [-77.43170360355644, 34.58411472447857], [-77.43160830314162, 34.58420516283526]], [[-77.35069124804028, 34.52337274177302], [-77.35071386784779, 34.52342865119938], [-77.35075815052052, 34.5233631111765], [-77.35071542084333, 34.52336113781077]], [[-77.34977362795756, 34.626145101333826], [-77.34980058099012, 34.626296681265416], [-77.34991527222647, 34.626277346448816], [-77.34993089190641, 34.62624516230316], [-77.35003599295499, 34.62607888663946], [-77.34986573478265, 34.62592101645862], [-77.3497906893352, 34.626112580520115]], [[-77.363177561056, 34.54297063775], [-77.36316698447158, 34.5429096980624], [-77.36308521983644, 34.54292571101858], [-77.36307964532914, 34.54297580285191]], [[-77.43318168802072, 34.75487051188121], [-77.43322168239706, 34.75488461959074], [-77.43324904499879, 34.75487773569719], [-77.43327273478393, 34.75486389724736], [-77.43332061485673, 34.75481256748312], [-77.433246097264, 34.75480028117093], [-77.43317725389983, 34.75476048716531], [-77.4331217138971, 34.754811136050094]], [[-77.3586250614685, 34.53504302899987], [-77.35861580636426, 34.53500945892604], [-77.35854283232925, 34.53500301369269], [-77.35855852615359, 34.53505281270255]], [[-77.35875653122957, 34.68869117571832], [-77.35857321055089, 34.68869989098343], [-77.35847291415857, 34.68812105000731], [-77.35831053676867, 34.6879248775982], [-77.35809412015945, 34.687624183761315], [-77.3579799113873, 34.68748290499755], [-77.35791320160982, 34.68736922642947], [-77.35795283819782, 34.68708785011815], [-77.35796983897865, 34.68699690261995], [-77.35811368340795, 34.68682069992748], [-77.35821362538941, 34.68668078991284], [-77.35842607629506, 34.686580244712026], [-77.35861370648551, 34.68649820258656], [-77.35872052058812, 34.68649189150558], [-77.35931393982527, 34.6861478235803], [-77.35975874659925, 34.68634286910116], [-77.36044243458555, 34.686384113243555], [-77.36140634056162, 34.68631976363133], [-77.36165509294642, 34.686330403783664], [-77.36183548631104, 34.686321168348904], [-77.36226527313995, 34.68629027214513], [-77.36282091413017, 34.68633049413132], [-77.36283934929675, 34.686336865720406], [-77.36284540089629, 34.686353693840935], [-77.36328956316049, 34.68677874778676], [-77.36334192095184, 34.6880353965776], [-77.36319295463895, 34.6882289309178], [-77.36259863081621, 34.68992937991317], [-77.36082692567632, 34.68918399415629], [-77.36031341240063, 34.68906968230726], [-77.35907680736986, 34.6887943950382]], [[-77.43564095362264, 34.70370036941556], [-77.43630231946872, 34.70446482054162], [-77.43644182255413, 34.70609579081234], [-77.43646315353598, 34.706223982983325], [-77.43615713500046, 34.708096599098546], [-77.43600665819949, 34.70830058670871], [-77.43589954757056, 34.708362048207434], [-77.43576992951151, 34.70841811638896], [-77.43519375432041, 34.708704168154], [-77.43486935553454, 34.708634016076324], [-77.43442407550884, 34.7086390318249], [-77.43428696390072, 34.70843065691907], [-77.43394055850793, 34.70815173689292], [-77.43392680654698, 34.708142398406906], [-77.43391704951736, 34.7081386287875], [-77.43338118869345, 34.70781287218161], [-77.43298455905818, 34.7076349657241], [-77.43285962726014, 34.707200448459155], [-77.43272845745122, 34.70684905365154], [-77.4326106144973, 34.706045703465264], [-77.43259944075876, 34.70601010937581], [-77.43261427103282, 34.70599656458397], [-77.43261144633702, 34.705979625064224], [-77.43275654509748, 34.70505176610609], [-77.43197813487261, 34.70465605077185], [-77.43185913428357, 34.70453347380858], [-77.43177687698622, 34.70449692754767], [-77.43170599029155, 34.704499798184244], [-77.4315872073011, 34.704519374583356], [-77.4306709282738, 34.70430370964698], [-77.43056849046843, 34.704242931027075], [-77.4304922222405, 34.7042110966188], [-77.43027435734206, 34.704151914947566], [-77.43010642019075, 34.70400164553425], [-77.4300552628304, 34.703947045522], [-77.43002650762269, 34.70390096449921], [-77.42986145725045, 34.70363646508139], [-77.42987367606268, 34.703576432074065], [-77.42969778792968, 34.70329970712852], [-77.42966123806951, 34.7032186926729], [-77.42959227510042, 34.70318667702737], [-77.42950949077087, 34.7029543376964], [-77.42962385125742, 34.70278790821224], [-77.42965704000137, 34.702726396555725], [-77.42967480235474, 34.702675579006375], [-77.42975372005318, 34.702628794050334], [-77.43029890029267, 34.70220000328582], [-77.4305488766841, 34.702095841671934], [-77.43084461979174, 34.702023505600145], [-77.43104514074695, 34.70192407543648], [-77.43134376516397, 34.701177424944454], [-77.43119516080739, 34.70102794976604], [-77.43094851235026, 34.700714793443176], [-77.43061847663301, 34.70058731463796], [-77.43035602378944, 34.700547439773985], [-77.430220980206, 34.7005769905035], [-77.42995612931246, 34.700417325263885], [-77.42982397067284, 34.700171246447916], [-77.42956135221814, 34.70013567810853], [-77.42936078585242, 34.69982748818005], [-77.4296936210293, 34.699714997440864], [-77.42991945634783, 34.6998412784529], [-77.43017681443112, 34.69987884740641], [-77.43053121093794, 34.699942035002785], [-77.43084917432245, 34.70010813747771], [-77.43100450445019, 34.6998431671195], [-77.4312057057765, 34.69982597050745], [-77.43146123749281, 34.699789237054944], [-77.431579915202, 34.69980690797337], [-77.4318557641067, 34.69979434683448], [-77.43211681018234, 34.69967302186979], [-77.43240722201013, 34.69966351417713], [-77.4325719464745, 34.69953418637359], [-77.43297733176196, 34.6994148363958], [-77.43313016087956, 34.69934953861025], [-77.4333076936573, 34.6992063835976], [-77.43364650600112, 34.69932365823428], [-77.43392796017332, 34.69974720231084], [-77.43397657293075, 34.700078693724535], [-77.43416078863628, 34.70094670253674], [-77.43395553094011, 34.701873051952646], [-77.43488306259681, 34.70262215160015]], [[-77.39614236456399, 34.58773511227264], [-77.39595898754365, 34.5878670580142], [-77.39586843595156, 34.587904069314504], [-77.39584620692243, 34.58792313057111], [-77.39573689530128, 34.58801686401692], [-77.39545212731996, 34.58823882729378], [-77.39538571276427, 34.588302771964564], [-77.39534503772936, 34.58838019146438], [-77.39535483958213, 34.58848357863432], [-77.39545209878057, 34.588619740067436], [-77.39549942115522, 34.58873149821315], [-77.39552090802198, 34.58877939446619], [-77.39556093636828, 34.588868621648984], [-77.3955853696855, 34.58891370947423], [-77.39561934448648, 34.58897748117208], [-77.3956031032753, 34.58902938061105], [-77.39556739544228, 34.589109237544854], [-77.39552850670822, 34.589120506019995], [-77.39545205868765, 34.589157007743836], [-77.39536000001944, 34.589127987906075], [-77.39535073387111, 34.58912539965127], [-77.39534491951969, 34.58911391394517], [-77.39530387734708, 34.589022986098314], [-77.39529296584949, 34.58898369889006], [-77.3952550514928, 34.58884888992413], [-77.39524661023911, 34.58881896079098], [-77.39520429919224, 34.588667475116836], [-77.39511322097039, 34.58847307149679], [-77.39512148941972, 34.588412437193625], [-77.39509127764234, 34.58838100358527], [-77.39505805822637, 34.58838479714731], [-77.3949933336306, 34.588361184255035], [-77.39482119463052, 34.58828639451876], [-77.3946640150503, 34.58820692312544], [-77.39438072296346, 34.58809471474516], [-77.3943770050267, 34.58797993543168], [-77.39456509374546, 34.58753690644907], [-77.39466408610224, 34.587369510969516], [-77.39472672876838, 34.587263148802414], [-77.3947705275011, 34.5871893467319], [-77.3948024790659, 34.58690923568092], [-77.39481056796038, 34.5867589997925], [-77.39481966032366, 34.58659013560133], [-77.3948231331754, 34.58650390277903], [-77.39484468668425, 34.58632950713354], [-77.39486120112244, 34.5863076295641], [-77.39497872822975, 34.58622450989576], [-77.3950582358403, 34.58617815993928], [-77.3952255222499, 34.58609433470639], [-77.3954522952799, 34.586025050880444], [-77.3956206301857, 34.58597437768452], [-77.39584635422055, 34.58585783814476], [-77.39615801900113, 34.58580425353284], [-77.39630012678444, 34.58575933302939], [-77.3966344573038, 34.58568183050048], [-77.39689298549042, 34.58546343104809], [-77.39730521899698, 34.58512541758431], [-77.39737383928451, 34.585063000435696], [-77.39742258207166, 34.585031720032525], [-77.39756550208226, 34.58493387852285], [-77.39789576409926, 34.58470090209751], [-77.39821068901944, 34.58450763730757], [-77.39861276121633, 34.584520856293956], [-77.3989987711302, 34.58439988194649], [-77.39944240367683, 34.58433906152882], [-77.39978684840378, 34.58438860352983], [-77.40009670685481, 34.58438879449524], [-77.40031148583904, 34.58440782069807], [-77.40057492427377, 34.58442803835915], [-77.40070678184273, 34.584492558521454], [-77.40100310509868, 34.58459187692726], [-77.40136299902527, 34.584706092785865], [-77.40187942927318, 34.58446542142478], [-77.40210347771777, 34.584381801763186], [-77.40215107705424, 34.58436371531415], [-77.40222763172807, 34.58433268556817], [-77.4025451137893, 34.58422198421469], [-77.40284779635984, 34.58422724171931], [-77.40293915030834, 34.58418190898787], [-77.40302336607078, 34.584209596479226], [-77.40333318784482, 34.58423160016667], [-77.40335133311476, 34.58425300802704], [-77.40357674633351, 34.58438262047086], [-77.40363018380467, 34.58453277174837], [-77.4035917360937, 34.584642889011754], [-77.40372723762533, 34.5848312429286], [-77.40377646626783, 34.584987764541076], [-77.40379190139735, 34.58503857709222], [-77.40380892317549, 34.58512412909911], [-77.40384224340147, 34.585243599764496], [-77.40383920619621, 34.58533569293533], [-77.40384073907754, 34.58545610483759], [-77.40381849254935, 34.58578558813123], [-77.40381458345418, 34.58588445563084], [-77.40379708387094, 34.58596221218287], [-77.40373588880617, 34.58632038917371], [-77.40372727130506, 34.586345020044135], [-77.40358862924734, 34.58661682725683], [-77.4035657625676, 34.58676951738451], [-77.40349710118375, 34.58695598633984], [-77.40348243444416, 34.58699383114284], [-77.40344127690256, 34.58709565061867], [-77.40339676161221, 34.587218482981996], [-77.40337610178496, 34.58726764484783], [-77.40333324268875, 34.58733427525712], [-77.40320543971076, 34.5875329626497], [-77.4030592914088, 34.587691760284635], [-77.40301234137334, 34.587777345201914], [-77.40297890761423, 34.58808515515891], [-77.4029758102847, 34.58812838329539], [-77.40300815530534, 34.58847400323449], [-77.40300924815546, 34.58854813343907], [-77.40301345059177, 34.588627517028826], [-77.40302122878896, 34.588970980127584], [-77.4029392187278, 34.58920801888588], [-77.4028620751553, 34.589335403429885], [-77.402829399088, 34.589423238435174], [-77.40274233104813, 34.58964794268948], [-77.40261149014039, 34.58995071852414], [-77.40224995927295, 34.590249495932625], [-77.40215110373194, 34.59018449722461], [-77.40203447288357, 34.590261438495304], [-77.40208608347805, 34.59037965256435], [-77.40215110576173, 34.59048056692705], [-77.40239717583894, 34.59091879320149], [-77.40241875985834, 34.591180796892466], [-77.4026589410959, 34.59144815046172], [-77.40269230016558, 34.591724399444274], [-77.4027443971619, 34.591982957532764], [-77.40277776153992, 34.592152148484615], [-77.4028236896159, 34.592396090777704], [-77.40286585447795, 34.59273547587201], [-77.40285171574352, 34.59281662198133], [-77.40279866293156, 34.59297577849652], [-77.40263727446114, 34.59337133120242], [-77.40245325403522, 34.59372327086366], [-77.402312824055, 34.59391773586432], [-77.40215113616692, 34.59416469351197], [-77.40214115493674, 34.59418212817394], [-77.40213389296734, 34.594193929717676], [-77.4019777410771, 34.59445422286412], [-77.40189206782671, 34.594653398711785], [-77.40175705611658, 34.59495570843862], [-77.40171295817254, 34.59505630790679], [-77.40168461521625, 34.59510790752452], [-77.4015600132433, 34.59530133025491], [-77.40154436848368, 34.59532357612867], [-77.40137605717926, 34.59556290307404], [-77.40136502049891, 34.59557859646897], [-77.40136417454102, 34.595580017606366], [-77.40136296873574, 34.595581971628754], [-77.40119359349113, 34.595845429191975], [-77.40102355448109, 34.596052439765664], [-77.40099617965713, 34.5960858048594], [-77.40096887594906, 34.5961164658862], [-77.40078870186491, 34.59631679115433], [-77.40059241031894, 34.59653922063179], [-77.40058418006186, 34.59655053623722], [-77.40057477892664, 34.59655782478855], [-77.40052419494384, 34.5966035583437], [-77.40047625419808, 34.59664877388977], [-77.40046447232596, 34.59665113001398], [-77.40037772973582, 34.59669125214293], [-77.40026080303703, 34.59667338193803], [-77.40018068160889, 34.59668500973474], [-77.39997027936705, 34.59662898000228], [-77.40018068367922, 34.596516185792346], [-77.40032136147094, 34.59642677067611], [-77.40037773268678, 34.596394302994966], [-77.40039556687327, 34.59637454729408], [-77.40040548588024, 34.59635390292606], [-77.40044026476181, 34.59628151775799], [-77.40050700563151, 34.596126968565486], [-77.40057478364155, 34.59595423988354], [-77.40065250903177, 34.59576513661868], [-77.4006670223701, 34.595679306950785], [-77.40067286262021, 34.595572801691155], [-77.40057479055744, 34.595126991070146], [-77.40052810876725, 34.5949004960663], [-77.40048896029376, 34.59485584943997], [-77.40039298747493, 34.59467382423638], [-77.4002734333415, 34.59436247646955], [-77.40018071245028, 34.59432433206655], [-77.40004927575822, 34.594211746315736], [-77.39998367335525, 34.59410730548476], [-77.3999774020678, 34.59408050904769], [-77.39998367477278, 34.59402134772445], [-77.39999959687499, 34.59388217136911], [-77.40001166902412, 34.59386327807812], [-77.40018072136061, 34.59369384752692], [-77.40023255680725, 34.593674967251275], [-77.40027273362843, 34.59361332459591], [-77.40042144415365, 34.59333252362501], [-77.40054071705406, 34.59315008515463], [-77.40043154063216, 34.59301148059639], [-77.40024041593135, 34.59276883927163], [-77.4002146056713, 34.59273607188204], [-77.40018073577214, 34.592716158370145], [-77.40008337390908, 34.59268660025028], [-77.39978666099802, 34.59257015465133], [-77.39965187631353, 34.59257439420116], [-77.39939258596878, 34.592486977210356], [-77.39937169680398, 34.59246960286466], [-77.39923133153789, 34.59223902037139], [-77.39911987688035, 34.59208136025882], [-77.39899852429265, 34.59197837842627], [-77.3988770145451, 34.59182274420933], [-77.39880149482877, 34.59173812416034], [-77.3987731064328, 34.591706816222086], [-77.39870629988039, 34.59160673507383], [-77.39866247261229, 34.591360694679096], [-77.39873443451202, 34.59128782198024], [-77.39899855327644, 34.59101746049256], [-77.3991357581724, 34.59095317149459], [-77.39925913515734, 34.59078754763578], [-77.39899856438024, 34.59065590122442], [-77.39869028137335, 34.59053746659124], [-77.39860450167114, 34.59050115992934], [-77.39858598794909, 34.590480039682305], [-77.39833925127925, 34.59049568850605], [-77.39821043410285, 34.59050222809612], [-77.39816071282334, 34.59052144594337], [-77.39788452986812, 34.59063473596353], [-77.39781635769398, 34.59069820200059], [-77.3976476656953, 34.59083829034081], [-77.39751839228633, 34.59093512773871], [-77.39742227358596, 34.59101090350698], [-77.39738197488468, 34.591014944521405], [-77.39730372504326, 34.59098509030442], [-77.3972252417011, 34.59094941894556], [-77.39717562548424, 34.59092930149181], [-77.39710036680191, 34.590752148256875], [-77.39709033017292, 34.59067586204197], [-77.39708465026325, 34.590615888091776], [-77.39708925514404, 34.59031718174816], [-77.39709203431559, 34.59025104365412], [-77.39716159376465, 34.59009734585633], [-77.39720526633714, 34.590000847577635], [-77.39735969068182, 34.58978785901945], [-77.39742233854183, 34.5897091741148], [-77.39759591352592, 34.589516210999605], [-77.39778866477054, 34.589301401055806], [-77.39781642246177, 34.589272621874045], [-77.39806899960917, 34.589108510521044], [-77.3982104950581, 34.58901145696238], [-77.39850200374445, 34.58888441256783], [-77.39866616636756, 34.58881660487336], [-77.39873230982725, 34.588603056687454], [-77.39879995663276, 34.58830635517131], [-77.39872388905312, 34.58802129187917], [-77.39880727086629, 34.58788072646804], [-77.39899866051246, 34.587638514140224], [-77.39911620036577, 34.58770950913565], [-77.39928402281214, 34.58769483371742], [-77.39939271417629, 34.587644540368075], [-77.39970084914113, 34.58732722739657], [-77.39946074769671, 34.587010579879674], [-77.39943695398632, 34.58694072922636], [-77.39960580174638, 34.58672135916907], [-77.39959576660776, 34.58669906276532], [-77.39958305959796, 34.586700136076374], [-77.39939273461606, 34.58692678805321], [-77.39938236155491, 34.58693742971436], [-77.3989986740487, 34.58723063748463], [-77.39886893725676, 34.587307472947316], [-77.39860461570342, 34.587397392385036], [-77.39845284212711, 34.58724624959544], [-77.39821056565265, 34.58733183279824], [-77.39807572049692, 34.58728241469266], [-77.39783928973155, 34.58719576685164], [-77.39781651989507, 34.587186856082816], [-77.39780309668919, 34.587190917138635], [-77.39750789820569, 34.587311095803514], [-77.3974224583967, 34.58736910860535], [-77.3972414707107, 34.587487051565], [-77.3970283895732, 34.58764903484547], [-77.39697832859923, 34.587666074821534], [-77.39668160411016, 34.58771188322443], [-77.39663433120317, 34.58771462812854], [-77.39656537144496, 34.587705283301105], [-77.39624027610157, 34.58772024232564]], [[-77.37545197556122, 34.54887251226139], [-77.37502043967527, 34.549024758927644], [-77.37362656618525, 34.54895868560962], [-77.37312788420437, 34.5485261318657], [-77.37360881768659, 34.547981939411834], [-77.3738273397539, 34.54790290967205], [-77.37341615782017, 34.54734228796933], [-77.3732092729764, 34.54706020713739], [-77.37318846494377, 34.54703183628165], [-77.3731399252585, 34.54695423139517], [-77.3728950448347, 34.546771137649266], [-77.37296724239685, 34.546491180190955], [-77.37315680296805, 34.54621150389487], [-77.3732222946703, 34.54611854261001], [-77.37329473369958, 34.54606857872405], [-77.37358437184827, 34.54579796161748], [-77.37395437669258, 34.54566627284923], [-77.37472786645665, 34.54538367513914], [-77.37475413445726, 34.54537353937696], [-77.37475834017671, 34.54536798931251], [-77.37475904837322, 34.54536006960543], [-77.37498394051009, 34.544988623739236], [-77.37523737918686, 34.54480928863815], [-77.37521629805431, 34.54460495007228], [-77.37555433477164, 34.544362447889455], [-77.37570535420186, 34.54425218092139], [-77.3759828299608, 34.5439844020414], [-77.37624952150756, 34.54368408596062], [-77.37654896216767, 34.54326638636764], [-77.37668201789634, 34.54313208876094], [-77.37715886842847, 34.542854632438235], [-77.37778646388573, 34.54297288408756], [-77.37788707796048, 34.542991953036136], [-77.37794055283656, 34.54300775054013], [-77.3782316833611, 34.54309144863832], [-77.37833067122246, 34.543116288090175], [-77.37850442215874, 34.54286938566737], [-77.37853988516798, 34.54274466679611], [-77.37873532173657, 34.542583519394945], [-77.37887360143495, 34.54241029441511], [-77.37898973055626, 34.542309762390275], [-77.379031244879, 34.54212569399094], [-77.37904420912999, 34.54199659391535], [-77.37899892874749, 34.54181877655819], [-77.37893781274, 34.541713595964794], [-77.37876287498425, 34.54136751922101], [-77.37876164883643, 34.541364137314], [-77.37876062963258, 34.541363471755574], [-77.37876001963478, 34.541361696650796], [-77.3786478505737, 34.541134900463874], [-77.3787734697441, 34.540872350984934], [-77.37877329513259, 34.5408719861864], [-77.3787741278848, 34.54087090132374], [-77.37927148862691, 34.54061710185648], [-77.3799614135911, 34.540455750425295], [-77.38035659612115, 34.54033217282763], [-77.38091270702706, 34.540563538015654], [-77.38100075031156, 34.540634497969094], [-77.38131892381956, 34.54061953575422], [-77.3819198131377, 34.540643486444864], [-77.38221096053667, 34.54068385624791], [-77.38270346431015, 34.54070897488728], [-77.38284570062785, 34.540774478871185], [-77.38295114884934, 34.54108910133982], [-77.38337510988197, 34.54118779974638], [-77.38336213898448, 34.541260759026464], [-77.38312622382276, 34.54149848303267], [-77.38307570233351, 34.541608157484866], [-77.38299157413587, 34.54173276861947], [-77.38289381647331, 34.54188212394126], [-77.38266873017876, 34.54224506841908], [-77.38265406892795, 34.54226219613729], [-77.38263485954698, 34.54229429729618], [-77.3822088469299, 34.542824957615984], [-77.38209023939021, 34.54298132772753], [-77.3818555383003, 34.5434848299915], [-77.38165983667125, 34.543765350764886], [-77.38158498883678, 34.543894232699145], [-77.38102171983753, 34.54444836113093], [-77.38100647124485, 34.544467306995045], [-77.38096343367238, 34.54452551975733], [-77.3807480032357, 34.544811917473574], [-77.38064512704437, 34.5449282730271], [-77.38056199805493, 34.54502105062219], [-77.38064201139534, 34.545065921169645], [-77.38072451434599, 34.54518925764774], [-77.38080344260928, 34.54523107050359], [-77.38102816710446, 34.54535011997645], [-77.381134615738, 34.5453616061404], [-77.38125722759155, 34.545410474604836], [-77.381466594382, 34.545658049309424], [-77.38114739113485, 34.54591596973856], [-77.3802185219266, 34.546430893361254], [-77.37963534904567, 34.546754169052264], [-77.37862346760261, 34.54752006811983], [-77.37783296522122, 34.54786432586696], [-77.37611562618537, 34.54859996055596], [-77.37587144460198, 34.54889708673056]], [[-77.36080774503839, 34.571067842355184], [-77.36093634000787, 34.571096686902095], [-77.3609802512476, 34.571172110949895], [-77.36103126551737, 34.57124793762808], [-77.36098012308932, 34.571428136582064], [-77.36097004047438, 34.57145818089512], [-77.36095703548271, 34.57147090201705], [-77.3608719015688, 34.5715996847134], [-77.36079812731234, 34.571706057832884], [-77.36078297741373, 34.57173309027914], [-77.36076190152421, 34.571711273414095], [-77.36071478552853, 34.57164452617347], [-77.36061969091972, 34.571519471144875], [-77.36060542176867, 34.571500706363494], [-77.36058611449984, 34.57147531600258], [-77.36047420013668, 34.57132814100167], [-77.36058624818529, 34.571210728233496], [-77.36063032188548, 34.57114084225016], [-77.36075467770887, 34.57107548273832], [-77.36078331566173, 34.57106043106912]], [[-77.34547622205632, 34.6550447946584], [-77.34558261412104, 34.655031805759194], [-77.34601813176802, 34.65455503821432], [-77.34610550396216, 34.65441258753574], [-77.34641293791574, 34.654536116047424], [-77.34666047209221, 34.65460549206852], [-77.34666678504296, 34.654607657917076], [-77.34666913889943, 34.654607921098766], [-77.34668030049993, 34.65461547789798], [-77.34688311127995, 34.6547534893516], [-77.34702860642619, 34.65480327699924], [-77.34733205660395, 34.65493528493722], [-77.34709277045997, 34.65512239238241], [-77.34683900470723, 34.655097200384766], [-77.34676251914442, 34.65507235172], [-77.34671977607863, 34.655076884601655], [-77.3464587912126, 34.65515422494578], [-77.34620045066326, 34.65516840627754], [-77.34614953663777, 34.65520861229785], [-77.3455168281031, 34.65519754501231], [-77.34552597785152, 34.65529227525129], [-77.34543644883978, 34.65519553673237]], [[-77.3758964359561, 34.62837387116239], [-77.37558251838155, 34.628423925020954], [-77.3753428351088, 34.62889885600422], [-77.37528375747142, 34.6289945239924], [-77.37514670517369, 34.62907785240111], [-77.37515247612876, 34.62928189400134], [-77.37514902391824, 34.6292934922638], [-77.37514559440424, 34.629292148118914], [-77.37514490390224, 34.62929113600271], [-77.37494850968365, 34.62914439667091], [-77.3749148765947, 34.62911124130693], [-77.37474248888445, 34.62893343266516], [-77.37464082966622, 34.628819276095804], [-77.37456689364076, 34.62873679830796], [-77.37456381206968, 34.62872708329554], [-77.37455439758718, 34.62866263935719], [-77.37451309961585, 34.62836455359909], [-77.37450146031296, 34.62832166194046], [-77.37450377985799, 34.62826669209937], [-77.37455453321495, 34.62820594145399], [-77.3748356014948, 34.627726942836965], [-77.37494894986524, 34.62763813686852], [-77.37505937407389, 34.6275110638853], [-77.37521499867294, 34.62736977530139], [-77.37529286251446, 34.627304251576966], [-77.37534330836905, 34.62725393190678], [-77.37573085650413, 34.62686358403269], [-77.37579812628972, 34.626796136509185], [-77.37613197373251, 34.62663165457172], [-77.37622353231146, 34.626473944960246], [-77.37625139783634, 34.62637137915081], [-77.37640972575214, 34.62622300329181], [-77.37647673924634, 34.62612664097149], [-77.37652636525037, 34.626090088058234], [-77.37664043630161, 34.626013603050296], [-77.3768040750031, 34.62586721052524], [-77.37692069114757, 34.62577285735546], [-77.37716989752471, 34.625658295190064], [-77.37731500278025, 34.625497942185724], [-77.37737256978085, 34.62542273371106], [-77.37745727962374, 34.62534855783723], [-77.3776193625726, 34.625228342764494], [-77.37770932699327, 34.62516491782472], [-77.37800689189768, 34.62494899015303], [-77.37810363143863, 34.6248963805146], [-77.37813276734298, 34.624858057564246], [-77.37825553126507, 34.624809005942], [-77.37849791227548, 34.62471135950855], [-77.37879368587424, 34.62473148020531], [-77.37887480297063, 34.62473846392358], [-77.37889213642451, 34.624748025817354], [-77.37892230183702, 34.624745436963345], [-77.37928635825472, 34.624795419214195], [-77.37951888506375, 34.62480115002363], [-77.37986322025279, 34.62477406995554], [-77.38005279968972, 34.62414940388445], [-77.38005909248585, 34.62412461490526], [-77.38006112871172, 34.624109398769036], [-77.38007499637, 34.6240619869014], [-77.38014078079702, 34.623759052807586], [-77.38024929378798, 34.6236726488469], [-77.38037823886438, 34.62355595712562], [-77.38056506758944, 34.62352406940045], [-77.38072782278655, 34.62360370404817], [-77.38081986327848, 34.62363749268929], [-77.38086354137573, 34.62368150996946], [-77.38101630085852, 34.62382215502023], [-77.3811682160304, 34.62396481549425], [-77.38125768704016, 34.62405578085561], [-77.38146565442767, 34.624122537490656], [-77.38165190947524, 34.62408921953703], [-77.38177081194453, 34.62400602276692], [-77.38204617323413, 34.62392680247033], [-77.3821202334892, 34.62390739775985], [-77.38237555928492, 34.62386069982249], [-77.38244041566696, 34.623860546266165], [-77.38256747842624, 34.623900047148936], [-77.38301412149309, 34.62393009981254], [-77.38322881685853, 34.624144551923834], [-77.38352130562342, 34.62394070659728], [-77.3835535552002, 34.62362110673874], [-77.38362318989115, 34.6233948519181], [-77.38367999350507, 34.62323946489556], [-77.38369028768881, 34.62317683838847], [-77.3838203775119, 34.62300083129115], [-77.38383925580474, 34.62296341251698], [-77.38388946565274, 34.62293585335971], [-77.38401751195079, 34.622881261597115], [-77.38414359101922, 34.62282272048753], [-77.38434130830265, 34.622734333045294], [-77.38441175784732, 34.62275855844654], [-77.38458420007677, 34.622623452955], [-77.38475614433494, 34.62254496020937], [-77.38480602546686, 34.6225068573807], [-77.3850809195016, 34.62225586198231], [-77.38520030293364, 34.622184500966924], [-77.38529242254086, 34.622196033968294], [-77.3855945346771, 34.622114673143095], [-77.38563106985083, 34.62208735808261], [-77.38598035427748, 34.62200674104539], [-77.38598877155638, 34.622009058369116], [-77.38599643323207, 34.622003608546386], [-77.38600879278923, 34.62199357670669], [-77.38618591022731, 34.621828876571904], [-77.38625623722103, 34.621821369895834], [-77.3863830287411, 34.621769658116555], [-77.38653811575398, 34.62191728652643], [-77.38638299216353, 34.621998834834216], [-77.38628972054873, 34.6220535296637], [-77.38618587096887, 34.6220713798494], [-77.38614247957062, 34.622139872358396], [-77.38611283193303, 34.62219086503082], [-77.38611349293411, 34.622268684725555], [-77.38608224272679, 34.62240755669836], [-77.38598863805052, 34.622823521225115], [-77.3859774243327, 34.62283515497287], [-77.38597913849641, 34.62285720747428], [-77.3858866408578, 34.623284879223306], [-77.3862925899813, 34.62397848352846], [-77.38631855062135, 34.62407176328429], [-77.3863109456798, 34.62415008202431], [-77.38614377465524, 34.62452151894166], [-77.38606980954924, 34.624619911455184], [-77.38587097304973, 34.62498540118712], [-77.3857673508692, 34.62518700275728], [-77.38567600028321, 34.62543806692073], [-77.38559394207658, 34.62565049313561], [-77.38546573268614, 34.62575488152614], [-77.38488503918023, 34.62589088455044], [-77.38480542691096, 34.62589160913575], [-77.38471678409601, 34.62590540872449], [-77.3843761692308, 34.62604995352055], [-77.38404847124288, 34.62613116902439], [-77.38401690304232, 34.62615349404367], [-77.3838838967362, 34.62626410730518], [-77.38355072904406, 34.626516072876775], [-77.38327448474188, 34.627008056567654], [-77.38324481299088, 34.62706211340063], [-77.38322824088455, 34.62710161611265], [-77.38294114192723, 34.62764593343985], [-77.38274962954645, 34.62798259403917], [-77.38278680016697, 34.628351243128094], [-77.38261558218082, 34.62842647353602], [-77.38279237876307, 34.62844553087912], [-77.38285823151327, 34.62841788866304], [-77.38322801332203, 34.62827928070747], [-77.38342753822556, 34.628099742454154], [-77.38399506667929, 34.627826315994234], [-77.38401659674022, 34.62781533153055], [-77.38402820657723, 34.6278108587958], [-77.38409081338513, 34.62778933512833], [-77.38468444854094, 34.62757382422173], [-77.38480514304625, 34.627513376762074], [-77.38504990426676, 34.62738755993314], [-77.3860576754862, 34.62715642546828], [-77.38638218352693, 34.62712942009929], [-77.38666499440029, 34.6271137985792], [-77.38717067841688, 34.627069310505235], [-77.38737605818835, 34.627094697063384], [-77.38791136756218, 34.627187268050875], [-77.38795915082986, 34.62716334985236], [-77.38804995591217, 34.627120963900374], [-77.38852386187884, 34.626909416616044], [-77.38852531830551, 34.62672566254706], [-77.38853010483447, 34.62653475680712], [-77.38853851579533, 34.626299192572176], [-77.38848226332803, 34.626021354423145], [-77.3885502902716, 34.625872928403545], [-77.38874781657543, 34.62575676545741], [-77.38883752917621, 34.62583152491808], [-77.3889971496553, 34.62596453984487], [-77.38910651993659, 34.62617910849755], [-77.38912846442761, 34.626214155600465], [-77.3891276239982, 34.62622975257382], [-77.38907792632159, 34.62657705747058], [-77.38897149217945, 34.626661349877736], [-77.3889728991423, 34.62684316764888], [-77.38887139780189, 34.62710034519027], [-77.38882148124108, 34.627877052901695], [-77.38882299114925, 34.62795645769076], [-77.38891136248685, 34.62812016653091], [-77.38858492446731, 34.62883990505444], [-77.38905147012738, 34.62994935856579], [-77.38795848295317, 34.63211064976696], [-77.38790657280842, 34.632278341203865], [-77.38561522085217, 34.63179130004342], [-77.38480436841718, 34.63199614767285], [-77.38399861879209, 34.632029727417645], [-77.38322730544303, 34.631976219424395], [-77.38271120372976, 34.63194041083896], [-77.38219391874033, 34.63204464974237], [-77.381650201116, 34.63215090656246], [-77.38151195776047, 34.632257717857364], [-77.38089647930637, 34.63245767159254], [-77.38086163265898, 34.632299830437184], [-77.38076670564817, 34.631767149423936], [-77.38070879120014, 34.631673146372975], [-77.38073125987799, 34.63152933635276], [-77.38066177253965, 34.63104630899629], [-77.3805992207429, 34.63083980567115], [-77.38040671069253, 34.63037719708897], [-77.38028372320335, 34.630036132765824], [-77.38018483906359, 34.629930628555485], [-77.38007366671785, 34.62980071442682], [-77.37982975463443, 34.62951514060887], [-77.37928628607501, 34.62933180183999], [-77.3792852645004, 34.629332204907236], [-77.37892068045488, 34.62984001730148], [-77.37869573085476, 34.630264898982084], [-77.37855259115707, 34.630345918491166], [-77.37849649341997, 34.630382060512076], [-77.37830355823253, 34.630538232869306], [-77.37829561101786, 34.63053881666231], [-77.37820951974894, 34.63054721958006], [-77.37810683338127, 34.63055701009552], [-77.37810219045252, 34.63055132079432], [-77.3779756518326, 34.63050490309494], [-77.37781456392399, 34.630506648339015], [-77.37770794786744, 34.63047970885048], [-77.3776557587856, 34.630470908193445], [-77.37739075101217, 34.63045287849377], [-77.37755787996585, 34.630267143672235], [-77.37770802749841, 34.630170860607265], [-77.37804657867133, 34.62987377715831], [-77.37830857519695, 34.629471545585005], [-77.37842090264257, 34.62937369343517], [-77.37849677013133, 34.62926901392663], [-77.37887018664516, 34.62894355590856], [-77.3790106821769, 34.62852127967603], [-77.3787705851621, 34.62826127034133], [-77.37849707880818, 34.628031493140526], [-77.37831764033497, 34.62796524478347], [-77.37784549378527, 34.62798743299562], [-77.37770856460752, 34.62809344406715], [-77.37720949083217, 34.62878074165457], [-77.3771410075926, 34.629028802976705], [-77.37691978079762, 34.6291546012669], [-77.3766144996396, 34.62919517779649], [-77.37648522803181, 34.62888506392497], [-77.37613143590669, 34.62856224234598]], [[-77.45438890777898, 34.503281653031316], [-77.45582454421576, 34.50225835183089], [-77.45652270616682, 34.50194201368994], [-77.45835913638378, 34.50167711639599], [-77.45837382159043, 34.5016531445336], [-77.45838556932553, 34.50164308711972], [-77.45900166862415, 34.50077003475783], [-77.46071728252417, 34.5004507745286], [-77.4607604335427, 34.500436290342414], [-77.4609093646692, 34.50042022075378], [-77.46200486945138, 34.50023444853534], [-77.4627305869281, 34.50020518470088], [-77.46333265134434, 34.5001650946847], [-77.46392588321926, 34.500191731825566], [-77.46405809963626, 34.500224299270776], [-77.46409941428931, 34.500276015600626], [-77.46440597680919, 34.50059770456658], [-77.46442069547741, 34.500817760209166], [-77.46439270333732, 34.50101247859691], [-77.46446257437727, 34.501276087177985], [-77.4645040999379, 34.50155710595838], [-77.46450243181775, 34.5019536214306], [-77.46449738329379, 34.502251348374145], [-77.46448706377384, 34.502348938658216], [-77.46445100655612, 34.50262652405753], [-77.46431199068184, 34.503223345152406], [-77.46440141993979, 34.50329951920332], [-77.46433738623965, 34.50336166811952], [-77.46423368581408, 34.503459224764505], [-77.4637154027239, 34.50424761396383], [-77.46324654053592, 34.50459193335149], [-77.46278813171973, 34.50498529486386], [-77.46233507767246, 34.50522119333928], [-77.4622403855056, 34.505313287792035], [-77.46206876832409, 34.50539219156244], [-77.46188966997883, 34.50553634305445], [-77.46194283264799, 34.505762792717], [-77.46197046120186, 34.5058781998935], [-77.46199954531028, 34.50599742442578], [-77.46225243700464, 34.50710120170808], [-77.46228664680446, 34.50724527415109], [-77.46228377461537, 34.50741476162521], [-77.4621279847645, 34.50822879905499], [-77.46200451551626, 34.50858198010593], [-77.46177442421485, 34.50924016034571], [-77.4617697858873, 34.509242881239665], [-77.46047715250886, 34.50942157932146], [-77.4587851063763, 34.50924260033155], [-77.45764907974358, 34.5089305481716], [-77.45510468852014, 34.50823158102486], [-77.4548913694912, 34.508145098057696], [-77.45399838269498, 34.506824297257154], [-77.45392745939749, 34.50551708706319], [-77.45393678535413, 34.505438242914316], [-77.45409184272623, 34.50412697035499]], [[-77.33923065757585, 34.636607568461805], [-77.33921243174198, 34.63662230850857], [-77.33888624993102, 34.63633015324761], [-77.33881683414899, 34.63627883840836], [-77.33853504081006, 34.636437339250556], [-77.33811693290652, 34.63627908732746], [-77.3378620913241, 34.63627446232029], [-77.33772704518525, 34.63658230988847], [-77.3376018796324, 34.636572641374904], [-77.3375092864808, 34.63657151949978], [-77.33724062547503, 34.636367850504534], [-77.33704862255372, 34.6366161136296], [-77.33696269894841, 34.636577857743035], [-77.33693446520769, 34.63656153932086], [-77.33679818495646, 34.636555671344176], [-77.33678810850978, 34.63654872637584], [-77.33668641016483, 34.63647863293055], [-77.3366427921469, 34.63640398757941], [-77.33665233633572, 34.63635636107851], [-77.33669741446171, 34.636288170846946], [-77.33683665086072, 34.636181189119334], [-77.33690127586189, 34.63627209422748], [-77.33695151961152, 34.636104305430244], [-77.33710993506807, 34.63600608413759], [-77.33714636009009, 34.63589860479092], [-77.33769149082168, 34.63588183502875], [-77.3375824762035, 34.634882585181934], [-77.33756595872192, 34.634430064880966], [-77.33859930129202, 34.63441343026836], [-77.3387434866695, 34.63428816367036], [-77.33889912803971, 34.634340376181356], [-77.3394032628584, 34.63438554065473], [-77.3396351508388, 34.634658623615294], [-77.33988580834222, 34.63485758785762], [-77.340197298038, 34.635151133199365], [-77.34048772054541, 34.63526671329213], [-77.34064863903774, 34.6355968728528], [-77.34075119377542, 34.63589313783442], [-77.34079424194596, 34.635998883937525], [-77.34082597952465, 34.63613951069174], [-77.34084470336445, 34.636202955938906], [-77.34074739173697, 34.63629574366172], [-77.3407246481029, 34.63637852478637], [-77.34067974155617, 34.63643659832174], [-77.34062568799132, 34.636486623752845], [-77.3405170635366, 34.63651833200097], [-77.34047682819138, 34.6365423536368], [-77.34038187079388, 34.636624394722574], [-77.33992650844348, 34.636634190254966], [-77.33998894517786, 34.63695341584936], [-77.33992730940552, 34.63699383076158], [-77.33962068954605, 34.63701590711931], [-77.33955270494543, 34.63711801279386], [-77.33946136397965, 34.637025830120265], [-77.33931527101574, 34.63673073638942], [-77.3392807039575, 34.636628629895554]], [[-77.39034890998362, 34.710317089667555], [-77.39014238456157, 34.71032716954827], [-77.39023617880075, 34.71018240549737], [-77.39036475379517, 34.7102155489965], [-77.39037687540876, 34.71022062811393], [-77.39073274454701, 34.7100810821904], [-77.39048063763136, 34.71026796491529], [-77.39041264536579, 34.71029389534152]], [[-77.40617751067595, 34.6697199248456], [-77.4059857896733, 34.669622262014414], [-77.40511352340498, 34.66927113108018], [-77.40522282763146, 34.66845945491425], [-77.40585247608678, 34.66820547329392], [-77.406317873777, 34.668475543211265], [-77.40676280213088, 34.66858307358306], [-77.40690976487699, 34.6686441453061], [-77.40699971517222, 34.668586163081144], [-77.40710275134722, 34.668558385505726], [-77.4074272882986, 34.66853753890077], [-77.40758427096421, 34.66852745475158], [-77.4076472961921, 34.66852340610112], [-77.40777759043625, 34.668515036018405], [-77.4078673042244, 34.6685092728474], [-77.4080354114005, 34.66849847331525], [-77.40809565434527, 34.66888288546413], [-77.4081071829851, 34.668909966235105], [-77.40810439551578, 34.66891603185694], [-77.40792687947453, 34.669354943053314], [-77.40786416953668, 34.66938403363995], [-77.40766371751909, 34.669672572880486], [-77.4075433758014, 34.66983087666526], [-77.40757068692773, 34.67003137541183], [-77.4074939481437, 34.670143010640814], [-77.40715241348431, 34.67025315981906], [-77.4071237167874, 34.67028546752277], [-77.40704448167537, 34.670391486107285], [-77.4069529314143, 34.67028910028992], [-77.40667480669813, 34.6700859820546]], [[-77.39382148529947, 34.623470242727066], [-77.394267268089, 34.623341799843345], [-77.39457265033165, 34.623210725858975], [-77.39474644901199, 34.623189865493174], [-77.39505572575774, 34.62314924366993], [-77.39519594924626, 34.623216535941424], [-77.39534121230075, 34.62331268653023], [-77.39544993200451, 34.62347860975569], [-77.39553412363674, 34.623592341297716], [-77.39562028683065, 34.62382100054435], [-77.3958441178502, 34.62433826635793], [-77.39586160088798, 34.62437542929367], [-77.39586923811734, 34.624393158474085], [-77.39589063361356, 34.62444017348775], [-77.3962318624643, 34.62519000760351], [-77.39615139483357, 34.625719764637346], [-77.39621692314276, 34.62604130343541], [-77.39697422866712, 34.62714927184045], [-77.39584399162263, 34.627271769729774], [-77.395313335677, 34.626743108670425], [-77.39516050663612, 34.62619364246911], [-77.39505557106831, 34.626044091145786], [-77.39479693394605, 34.62567548631874], [-77.39447395009047, 34.62544349904344], [-77.39426713858093, 34.62539411470317], [-77.39415777351309, 34.62537130656357], [-77.3937089008825, 34.625305871636144], [-77.39347868040394, 34.62527203802268], [-77.3928894084334, 34.62482282812757], [-77.3927896456348, 34.624730175935866], [-77.39269029490266, 34.624285296135845], [-77.3924054770239, 34.62404346143751], [-77.39248820457239, 34.62340011781476], [-77.39190188568304, 34.62376340171032], [-77.39167272431327, 34.62354678839442], [-77.39150768357433, 34.62351395529583], [-77.39129218536574, 34.62335482977351], [-77.39150772131958, 34.6231247714077], [-77.39161964554224, 34.62300357819343], [-77.39182988517017, 34.62293036586062], [-77.39190196175753, 34.62293798599932], [-77.39216317048565, 34.62280468879789], [-77.39227282743863, 34.6227637077844], [-77.39233393968554, 34.62273942419007], [-77.3926903987586, 34.62302670752727], [-77.39272321477202, 34.6231131616266], [-77.39277876808065, 34.623140502058156], [-77.39347881374023, 34.62343456911019]], [[-77.39859128417643, 34.527730125584], [-77.39823979689295, 34.527988908452414], [-77.3980596270882, 34.52829654201564], [-77.39789797540769, 34.528358815425335], [-77.3971743052312, 34.528464064035624], [-77.39696560695172, 34.52854378066109], [-77.39632301630257, 34.52857888736096], [-77.39609156220052, 34.52893082697582], [-77.39595624990257, 34.529089800132425], [-77.39547831978942, 34.52962588911668], [-77.39547858757675, 34.529648409287184], [-77.39544681418933, 34.52969424768134], [-77.39520755587996, 34.5299908566496], [-77.39482756534179, 34.53016330660336], [-77.39471639819132, 34.53020726359466], [-77.39466611727242, 34.53022420556444], [-77.39433869727806, 34.53030258116161], [-77.39392703977933, 34.53039989490889], [-77.39385600377345, 34.530416316778364], [-77.393657484858, 34.5304008845541], [-77.39321602227257, 34.53041816654588], [-77.39314210363362, 34.53039572971159], [-77.39246892687031, 34.53008272365639], [-77.39244064094994, 34.53003967646001], [-77.392367586732, 34.529928496856854], [-77.39209583197673, 34.52996759680323], [-77.39157643423769, 34.530200646071094], [-77.39154355675016, 34.5302162453748], [-77.39107665295202, 34.53046525362815], [-77.3907836988665, 34.53054283826259], [-77.39005705177989, 34.53092038408856], [-77.39000736664653, 34.53093854007218], [-77.38998961939163, 34.53094438716224], [-77.38994981888088, 34.53096045443982], [-77.38973834523082, 34.53096636299179], [-77.38866230493227, 34.53096981915099], [-77.38841743020247, 34.5310381725674], [-77.3882232747406, 34.53106419459075], [-77.38722677734197, 34.531091266585555], [-77.38684671157219, 34.53106656274073], [-77.38639124940448, 34.53095953543941], [-77.38685642593056, 34.530636093104405], [-77.38710884587633, 34.53052220462491], [-77.38759812993878, 34.530295779761644], [-77.3881292202776, 34.53002514917392], [-77.38845218106319, 34.52949699141788], [-77.38902796234314, 34.52972713059793], [-77.38932320819578, 34.5296125257646], [-77.39002656840222, 34.52930435407657], [-77.39139235456823, 34.52890211199506], [-77.39160526132054, 34.528920053333955], [-77.3917783520384, 34.52881992609584], [-77.39191862188952, 34.52869312304547], [-77.3927504775908, 34.52829939436705], [-77.39300584674075, 34.52768000041655], [-77.39257956016547, 34.52761841634982], [-77.39254420407026, 34.52720580673443], [-77.39253938468333, 34.5270675391199], [-77.39297026424613, 34.52658270197285], [-77.39305247618663, 34.52645970724196], [-77.3932060335723, 34.52559679572164], [-77.39320149512525, 34.52556999832365], [-77.39321151634115, 34.52554377616037], [-77.39325222662517, 34.52549968255245], [-77.39469481574521, 34.52437515431294], [-77.39476940689211, 34.52431485008875], [-77.39485136150677, 34.52420183896797], [-77.39496239813879, 34.52426636673847], [-77.39494808682213, 34.52433860233356], [-77.39498849231101, 34.52442139101787], [-77.39549469452717, 34.525239051825416], [-77.39616159938974, 34.52528956611359], [-77.39639112092603, 34.52554592104302], [-77.39650338184184, 34.52558314123594], [-77.39690976221836, 34.52568862989239], [-77.39760924886085, 34.52591319218623], [-77.3977119874761, 34.526046737986675], [-77.39793831624554, 34.52656077271355], [-77.39892441945005, 34.52705992713127]], [[-77.36362456870421, 34.55102545653891], [-77.36368941668904, 34.551369626080294], [-77.36366893327082, 34.55140565443048], [-77.36367382025975, 34.55161669763473], [-77.36363482290797, 34.55184901790881], [-77.3636384840906, 34.55186661200581], [-77.36365346109228, 34.55189485090307], [-77.36360268719986, 34.5519836579105], [-77.36355795407663, 34.55190719278626], [-77.36356064530158, 34.551877822545116], [-77.36310435117872, 34.55176770664318], [-77.36313890802884, 34.551644536987816], [-77.36315986913817, 34.55144589275319], [-77.36322497920054, 34.5513305993459], [-77.36352619540766, 34.551336216796344]], [[-77.35582897865572, 34.55078769481123], [-77.35580866231233, 34.550810309186375], [-77.35577623076647, 34.5508476144586], [-77.35559361492216, 34.55095404983817], [-77.35537841518926, 34.55107410435144], [-77.35535649980143, 34.55108705365746], [-77.35530363839136, 34.55110814351536], [-77.35505380172867, 34.55118814682885], [-77.35498233968487, 34.55122464251269], [-77.35464711734434, 34.55140904202149], [-77.35458471869646, 34.55144247276918], [-77.35457024685667, 34.55144961644362], [-77.35455295426996, 34.55146102740143], [-77.35418586712163, 34.55171383246295], [-77.35414419982675, 34.55173906736524], [-77.35405322037083, 34.55177778369605], [-77.35378844727747, 34.55192270177942], [-77.35362479272777, 34.55198309153729], [-77.35341492680881, 34.55211448163541], [-77.35339118207168, 34.55212474555005], [-77.35313307353213, 34.5522405877207], [-77.3529947842805, 34.552288927769624], [-77.35282998515564, 34.552341489428485], [-77.35279699764435, 34.55235304051057], [-77.35276357039719, 34.55235151007304], [-77.35260162810067, 34.55231189988372], [-77.35244439381938, 34.55225417270502], [-77.35230606702441, 34.55221494448513], [-77.35221208578672, 34.55217754412876], [-77.35219296362293, 34.55216794965348], [-77.35210804734186, 34.55212340861246], [-77.352032040431, 34.552068699647975], [-77.3519548026416, 34.55199799458386], [-77.3518262862468, 34.55188034738707], [-77.35180328308243, 34.55185680189568], [-77.3517925499221, 34.551836684865584], [-77.35174268612998, 34.55174311242061], [-77.35174769172102, 34.55167197414609], [-77.35174323749476, 34.551620622217946], [-77.3517056916966, 34.551546039315056], [-77.35172267005893, 34.55137876078358], [-77.35162701324705, 34.551280557093], [-77.35161205259217, 34.55125209414918], [-77.35161070071067, 34.551150054190096], [-77.35158727485772, 34.550991656384205], [-77.35152484229302, 34.55087513708025], [-77.35147809845111, 34.55067949576247], [-77.3514726251034, 34.550673283950815], [-77.35146172433765, 34.55065916652988], [-77.35134965355142, 34.550524965701804], [-77.35131374817492, 34.55045832771676], [-77.35124950681218, 34.55035937824719], [-77.35122659151186, 34.550319383047054], [-77.35138063075271, 34.55020388048179], [-77.3514463743068, 34.55017795081165], [-77.35147307097311, 34.55016544878216], [-77.35167969761845, 34.55004310726427], [-77.35187104694151, 34.54993230300161], [-77.35190892817288, 34.54990627256756], [-77.35196050838817, 34.54987560035528], [-77.35213260395349, 34.54976673460948], [-77.35226917885433, 34.549692269347446], [-77.35257629371256, 34.54959683122773], [-77.35266459819289, 34.54957023520686], [-77.3527199741801, 34.54955579198834], [-77.35302342200558, 34.54947779086849], [-77.35338223171591, 34.549381288028755], [-77.35345440624488, 34.54937089407076], [-77.35350394894027, 34.549377635164255], [-77.35371232238086, 34.549378631352155], [-77.35384681417088, 34.549379899174944], [-77.3540600291571, 34.54943959443353], [-77.35423690733299, 34.54948976790187], [-77.35429343345861, 34.54950434912415], [-77.35437295441574, 34.54952835889296], [-77.35443177091078, 34.54955269252506], [-77.35450718219795, 34.54958397651533], [-77.3546008209651, 34.54960167282312], [-77.35462697902149, 34.54960061305302], [-77.35476229551355, 34.54955605495408], [-77.35483050508938, 34.549462494379384], [-77.35494675217484, 34.54939743177798], [-77.35502472649813, 34.54937689401007], [-77.35511866502375, 34.54936263953586], [-77.35522188012158, 34.549339989787875], [-77.35529230970643, 34.549317196420176], [-77.3554195175258, 34.54928198352671], [-77.35580796944484, 34.549076959765614], [-77.3558128049777, 34.54907370565803], [-77.35581701129671, 34.54906916277355], [-77.35597624865244, 34.54890485820941], [-77.35609940947892, 34.54879018048966], [-77.35614749212726, 34.54873980594727], [-77.35621812171456, 34.548698496391665], [-77.35638814954469, 34.548608528587145], [-77.35653170507729, 34.54853474224156], [-77.3566154568649, 34.548492380587014], [-77.3566372484263, 34.54848135837548], [-77.35665825662929, 34.54846490262592], [-77.3568150558173, 34.54834865134813], [-77.35684681333244, 34.54833495223494], [-77.35701503425473, 34.54818833217443], [-77.3570322970804, 34.54817682917553], [-77.35703421295742, 34.54816595295084], [-77.35705557232912, 34.548138313712315], [-77.35713087513771, 34.547976421120175], [-77.35738139410813, 34.54789175010034], [-77.35741451480388, 34.54788838167565], [-77.35747848677518, 34.547897183266954], [-77.35773686513184, 34.54781996446732], [-77.35752857284956, 34.547780372467194], [-77.35761062186596, 34.54759331782657], [-77.35749652262054, 34.54756325190927], [-77.35742276173443, 34.54752844088118], [-77.35734605031612, 34.54743574735189], [-77.35734411372849, 34.5473868655871], [-77.3573500761896, 34.54733795979471], [-77.35734929980666, 34.547324913128975], [-77.3574285015642, 34.54727792404018], [-77.3574990427181, 34.54728625554209], [-77.35753691396336, 34.54729131088646], [-77.3576240858127, 34.54730924866007], [-77.35780510289227, 34.547310986818424], [-77.35782032234928, 34.547312103403435], [-77.35782768446431, 34.54731264351838], [-77.35784884284433, 34.54731419577966], [-77.3580151492501, 34.547376500557064], [-77.35810565287508, 34.54733303625485], [-77.35811792316359, 34.547334377996876], [-77.35814643786702, 34.54735288042596], [-77.35814892523497, 34.54739340126298], [-77.35821017815334, 34.54743208973367], [-77.35822979663047, 34.54749109243128], [-77.35823724308538, 34.54750309677504], [-77.35825274532618, 34.54752879013494], [-77.35824811911732, 34.54771860297151], [-77.35829196579706, 34.54774004119281], [-77.35834667289444, 34.547822861314565], [-77.35838386033986, 34.54785725571263], [-77.35829920045737, 34.54798382300753], [-77.35844540013817, 34.548052061396376], [-77.35844882383999, 34.54808469158473], [-77.35844715421251, 34.54812012078092], [-77.35844670334347, 34.548146202830395], [-77.35843559650328, 34.54818016887231], [-77.35842766400323, 34.54821015007593], [-77.35838586653944, 34.54833224903677], [-77.3583803715492, 34.548335998191746], [-77.35838028478875, 34.54834271494329], [-77.3582848232857, 34.54847554020461], [-77.3582757662326, 34.54853347318823], [-77.35827456579142, 34.54859942896428], [-77.35825692719956, 34.54864849242769], [-77.358256090109, 34.54866329505093], [-77.35822167378049, 34.54870412131018], [-77.35819911348156, 34.54873270451177], [-77.35819166555127, 34.548740924903], [-77.35817991091992, 34.54875366236973], [-77.3580512468192, 34.54892097533737], [-77.3579941459065, 34.549007039288426], [-77.35797729409367, 34.54902921986425], [-77.35791861526772, 34.549104814838415], [-77.35788678114343, 34.54914490921733], [-77.35777933327992, 34.54928023738651], [-77.35777704403195, 34.549283120643885], [-77.3577763926621, 34.54928398796081], [-77.35777511381147, 34.549285662897056], [-77.35770634239077, 34.549374090798096], [-77.35767392665126, 34.549418099561784], [-77.35767261311196, 34.5494197727468], [-77.35767090779915, 34.549420813456436], [-77.35761676102567, 34.549454690876644], [-77.35757434423896, 34.5494804744812], [-77.35738096273138, 34.549581699338596], [-77.35737566919627, 34.54958382727445], [-77.35737329970694, 34.54958460670263], [-77.35736672853149, 34.54958701917419], [-77.35707876734637, 34.54968967366588], [-77.35697984463052, 34.549723896836205], [-77.35680467870644, 34.54980468741204], [-77.35664704845018, 34.549895697615035], [-77.35658247447417, 34.54993133573361], [-77.35657115832927, 34.54993943967246], [-77.35655653798865, 34.54994848503265], [-77.35618310130936, 34.550226055183145], [-77.35616314620465, 34.55023766493347], [-77.35615876114223, 34.55025057354027], [-77.35616220336419, 34.5502625869701], [-77.35609891622687, 34.55045478689007], [-77.35609210302046, 34.55050499263898], [-77.35597760539177, 34.55062674194596], [-77.35596638266624, 34.550638675431756], [-77.35595840460793, 34.55064665139584], [-77.35592531782495, 34.550683211661806]], [[-77.33925963399217, 34.689248070434914], [-77.3395334532187, 34.68929392917483], [-77.34030080719964, 34.68942243892577], [-77.34097184908467, 34.68976380485731], [-77.3410732413337, 34.69029121641703], [-77.34120372427115, 34.690373708801204], [-77.34130925302782, 34.69043490893329], [-77.34157933400344, 34.6904437728071], [-77.34181753635562, 34.69018909314991], [-77.34205210044854, 34.68993830222831], [-77.34223208391538, 34.68974586660951], [-77.34274898982103, 34.689578874610994], [-77.34258631310867, 34.68983991646882], [-77.34240393964907, 34.68989824933007], [-77.34203807142177, 34.69015883299501], [-77.34197501054247, 34.690203700082876], [-77.34160545914112, 34.690466937871825], [-77.34138785261068, 34.690735426936506], [-77.34113824029647, 34.69102363012914], [-77.3409264561298, 34.69114157128207], [-77.34094270109155, 34.69128388093995], [-77.34071264491668, 34.691539863189504], [-77.34035708623507, 34.691913423687396], [-77.34007172492458, 34.69237812920284], [-77.33977558347652, 34.692674523946145], [-77.33966324722496, 34.6929215464614], [-77.3396135587451, 34.693173798436064], [-77.33952219185502, 34.69342827341676], [-77.33947889781076, 34.693671555074054], [-77.33947730947281, 34.69368677046918], [-77.33944422627066, 34.69392634524545], [-77.33934577696422, 34.69416812394675], [-77.33933574383298, 34.69419960874827], [-77.33928799344824, 34.694212580595135], [-77.33903372934071, 34.694146780865715], [-77.33846459787179, 34.69406553182446], [-77.33845727417979, 34.69406340684193], [-77.33786848524073, 34.69403658395771], [-77.33766901022165, 34.693881564997525], [-77.33746202929363, 34.693710887456604], [-77.33741292861473, 34.693684437542906], [-77.3373881898253, 34.69362929282486], [-77.33719823148057, 34.6935809925643], [-77.33709874840378, 34.69353200662832], [-77.33707285466603, 34.69352058359266], [-77.33685913445805, 34.69338983666994], [-77.33681016809918, 34.693359880570256], [-77.33668909662894, 34.693329535200846], [-77.33701004832484, 34.69287041637323], [-77.33705549414798, 34.692816041543665], [-77.33708403082137, 34.6927879891753], [-77.33708154952684, 34.69275695451381], [-77.33668299262247, 34.691868246178245], [-77.3380960496217, 34.690399841886375], [-77.33634739036674, 34.69103048383447], [-77.33607042456373, 34.690381737809744], [-77.33591759189957, 34.690023736648115], [-77.33724805927365, 34.68789915098873], [-77.33723255679902, 34.68789387299889], [-77.33723130293687, 34.68786489361298], [-77.33726106508817, 34.687885687722435], [-77.33726410283305, 34.68788680758874], [-77.3372694738397, 34.6878888090312]], [[-77.39692866675068, 34.71811596396403], [-77.39676436703816, 34.71738561848825], [-77.39605274593893, 34.71717909546044], [-77.39562144658052, 34.716969435566014], [-77.39534559945386, 34.71686619075621], [-77.39488736247998, 34.7167760528339], [-77.39437160590364, 34.716769826558405], [-77.39406909721774, 34.71672391578183], [-77.39365845930797, 34.71659215833851], [-77.39351250468893, 34.71636145122558], [-77.39374352491431, 34.71596700372238], [-77.39350361258924, 34.71579918276605], [-77.39339514776395, 34.71521959625459], [-77.39378987201235, 34.714321588277954], [-77.39426824605842, 34.71448856452342], [-77.39507175313179, 34.71452068282377], [-77.39551847239005, 34.714598787171624], [-77.39568298487933, 34.71442466705069], [-77.39616087352903, 34.714594253833795], [-77.39634699237988, 34.71488170041977], [-77.3966953636843, 34.714962024559405], [-77.39683690218311, 34.71512378373092], [-77.39695596308289, 34.71532978316364], [-77.39695820872433, 34.71551953192102], [-77.39711144246661, 34.71573835259842], [-77.397222111659, 34.71585583478635], [-77.39748899717098, 34.71607543877276], [-77.3975785919306, 34.71615354283279], [-77.39761963187762, 34.7161969038051], [-77.39773004715992, 34.7163135632874], [-77.39765400712224, 34.7164127477629], [-77.39767725632416, 34.71655873195631], [-77.39762311414943, 34.716681510577395], [-77.3978048099051, 34.716951877916124], [-77.3979677988826, 34.717207594931324], [-77.39800733054061, 34.71731377117949], [-77.39808286730171, 34.71740151714612], [-77.39825247143747, 34.71765789672696], [-77.398446569701, 34.717767693954926], [-77.39848671971323, 34.71782238958865], [-77.39859639999156, 34.717960838830294], [-77.39863107350114, 34.71801268133218], [-77.39864776416265, 34.71805100636568], [-77.3986343151782, 34.718129134712505], [-77.3986224441891, 34.71814944756106], [-77.39860853916237, 34.718178939882335], [-77.39852601562288, 34.71832616457025], [-77.39843478079337, 34.7183633593349], [-77.39838299280773, 34.71849612961105], [-77.39829933883033, 34.718595542280184], [-77.3982707908684, 34.71865705757463], [-77.39820552246564, 34.71884228947893], [-77.39810389940628, 34.71895000164757], [-77.39794768810883, 34.71887694454182], [-77.39761025496448, 34.718913588860524], [-77.39750362011992, 34.71889900316246], [-77.3974728918825, 34.71891512520328], [-77.39741072288692, 34.718901452515155], [-77.39720780508554, 34.71877277761286], [-77.39699866815232, 34.71833933209057], [-77.3969906471346, 34.71818393059529]], [[-77.38935385727873, 34.547506684098494], [-77.3890396300306, 34.54710191670266], [-77.38884605624312, 34.5468525623579], [-77.38880354884354, 34.54679780604496], [-77.3887845052354, 34.54677327459315], [-77.38873454885484, 34.54670892215224], [-77.38856746831647, 34.546493694390726], [-77.38841934436417, 34.54633627964647], [-77.38808217349516, 34.54590760571288], [-77.38772177687963, 34.546168318052324], [-77.38728594599003, 34.54639747778562], [-77.38695128770564, 34.54633848873169], [-77.38727021539485, 34.54650202437749], [-77.38727574468956, 34.546506061390964], [-77.38728335213611, 34.54651248063933], [-77.38751252050785, 34.54680964532927], [-77.3876146047591, 34.54694201756358], [-77.38766509428173, 34.54699363748661], [-77.38776857931565, 34.54709862917222], [-77.38784922472618, 34.5471530100382], [-77.38805102761383, 34.547289089882966], [-77.3881154839217, 34.54731882407291], [-77.38825272337769, 34.54733964351216], [-77.3886080664889, 34.54742870776259]], [[-77.39131342422604, 34.71503272705462], [-77.39061230529961, 34.715111004772645], [-77.39046869892275, 34.715296265442184], [-77.39009449393006, 34.715617132150626], [-77.38997855856334, 34.71557114903275], [-77.38949601382829, 34.71505964875334], [-77.38954689837736, 34.71486502452031], [-77.38965021955607, 34.714450653066514], [-77.38992400509608, 34.71399393172868], [-77.389928995117, 34.713993228105224], [-77.39063894709682, 34.71373920413503], [-77.39090150183843, 34.71377024288402], [-77.39162380245793, 34.71377198570265], [-77.39221900137858, 34.71392462585863], [-77.39213724490341, 34.714611858583076], [-77.39167442512218, 34.71459017320992]], [[-77.42550586922624, 34.731759300161784], [-77.42552655480026, 34.731751448969696], [-77.42584195715155, 34.73164599723926], [-77.42588881840499, 34.73163717871591], [-77.42606749073835, 34.73166099771539], [-77.42637161647245, 34.73167820997057], [-77.42647680075304, 34.73166781721404], [-77.42655759593214, 34.73174290525208], [-77.42660300977954, 34.7318481842751], [-77.42666850246943, 34.732112983424216], [-77.42667681898163, 34.73213955623368], [-77.42667896523623, 34.732154265973], [-77.42667721062149, 34.732177542882575], [-77.42667985545296, 34.73243410897835], [-77.42655282934473, 34.73263765568742], [-77.42655357085106, 34.73266950074637], [-77.42653058370817, 34.73268581099465], [-77.4264998215578, 34.73269562681966], [-77.42636522668926, 34.73271590750347], [-77.42615592862359, 34.732776136025755], [-77.42612938210726, 34.732778116522596], [-77.42608935642497, 34.73278677313459], [-77.42570378094328, 34.732830553604124], [-77.42552607225998, 34.73286941534232], [-77.42550172144877, 34.73287432337299], [-77.4254830008301, 34.73288582532288], [-77.42532633696607, 34.732961679364344], [-77.42519376957642, 34.73303279399041], [-77.42470653651033, 34.733353099606965], [-77.42465838170678, 34.7333659836687], [-77.42458679208224, 34.73337969500183], [-77.42426737774166, 34.73347495574137], [-77.42400595472435, 34.73355826481459], [-77.42388051876222, 34.73359070153592], [-77.42372799876327, 34.733638570795975], [-77.42330067454458, 34.733779639869425], [-77.42305559218737, 34.73340352323172], [-77.42305662299137, 34.73320315799835], [-77.4231096482991, 34.73307894628679], [-77.42312663992716, 34.73286928574528], [-77.42313852569734, 34.73272262391967], [-77.42321790413018, 34.732507943920254], [-77.42324127186463, 34.7323502837723], [-77.42334471521544, 34.73219025142552], [-77.4233898351622, 34.73204099534217], [-77.42362893736492, 34.732071706021955], [-77.42378177666833, 34.732118088852616], [-77.42392045169825, 34.7321601727067], [-77.42433736320226, 34.73222260315852], [-77.4243937657114, 34.73221886805066], [-77.42441297529085, 34.732217100046334], [-77.42443455523603, 34.73220833994161], [-77.42482006117466, 34.73213441571615], [-77.42509447730859, 34.73190681090841], [-77.42511781209905, 34.73188810658346], [-77.42512311482818, 34.73188174058683], [-77.42513381221914, 34.73187735114065], [-77.42522619978035, 34.73185186866476]], [[-77.43461170988036, 34.699129586978245], [-77.43452281205559, 34.69895793783826], [-77.43459322894348, 34.69886169255786], [-77.43403211982184, 34.69826993847957], [-77.43389439897453, 34.69805831069323], [-77.43370606424719, 34.69782950414328], [-77.43347527365927, 34.697609549925645], [-77.43345420522608, 34.697592452866836], [-77.43342579985618, 34.697335417890535], [-77.43338952059389, 34.69719894603889], [-77.43339835324122, 34.69717064301128], [-77.43347968312807, 34.69707473035007], [-77.43349162625184, 34.69694920358735], [-77.4336636100464, 34.69685951111592], [-77.43352754042836, 34.6966949512054], [-77.43355712150131, 34.69630847248565], [-77.43356258416014, 34.696265134292226], [-77.43354762817673, 34.69624017511653], [-77.43354203458847, 34.69618133391703], [-77.43350418622863, 34.69596518837048], [-77.43352912811234, 34.69580150337061], [-77.43354462583176, 34.69569980034718], [-77.43356285096297, 34.69557005392923], [-77.43369801122225, 34.69519437660003], [-77.43369649775035, 34.695040719580234], [-77.43375119754941, 34.69481603581596], [-77.43384220684948, 34.69468574008141], [-77.43388671935409, 34.69460385843701], [-77.43404432183235, 34.694197355601176], [-77.4341622851442, 34.69403747040852], [-77.4343234781654, 34.693822195148826], [-77.43447854123052, 34.69379012620683], [-77.43485733510578, 34.69346158100834], [-77.4349568204785, 34.69339830272609], [-77.43497154726043, 34.6933859303746], [-77.43499744043866, 34.693365854100804], [-77.43517766005621, 34.69332788402708], [-77.43589553041357, 34.69340064480923], [-77.43625977339877, 34.69329481538728], [-77.43630008206969, 34.69329346967943], [-77.43638782624615, 34.69326917376006], [-77.43633626314147, 34.693321558632114], [-77.4365935794317, 34.69362969145628], [-77.43657420705553, 34.693963796524876], [-77.43644447028181, 34.694297847610656], [-77.43629035048168, 34.694982647935845], [-77.43604073417184, 34.69564603207598], [-77.4361578809673, 34.69682041318907], [-77.4361162192743, 34.69715795906889], [-77.43605209208698, 34.697426882780604], [-77.43593331460063, 34.698212109023146], [-77.43557894122765, 34.69851715674165], [-77.43543169800718, 34.6986245577044], [-77.43478540612827, 34.698928881518924]], [[-77.31482557223723, 34.639886327172846], [-77.31489402581883, 34.63986342715955], [-77.31497775688084, 34.63984705942645], [-77.31550685158805, 34.639726798673564], [-77.3159257073257, 34.63983184854979], [-77.31609389410504, 34.63993361936181], [-77.31619785759285, 34.639979835217616], [-77.31686148969482, 34.64054756390601], [-77.31691283467381, 34.64060820945816], [-77.31705327696915, 34.64129977657312], [-77.31703844192964, 34.64136728163538], [-77.31680262342596, 34.641733082499], [-77.31656175573353, 34.64179347754121], [-77.31632188775083, 34.64177743700449], [-77.31623982544265, 34.64178449054006], [-77.31613752291122, 34.64177927065688], [-77.31593142710337, 34.641842942171905], [-77.31543424991483, 34.64178979658399], [-77.31511672630404, 34.641866961237696], [-77.3146250723841, 34.64171409452025], [-77.31393052036945, 34.641918959220874], [-77.31398027844283, 34.64043161603707], [-77.31434753753032, 34.640330722935026]], [[-77.43266080806563, 34.701442114479036], [-77.43244791941903, 34.70146595964169], [-77.43258833363699, 34.701692588970594], [-77.43318667400271, 34.70172424612562]], [[-77.39988232320438, 34.66857336326168], [-77.40012018533756, 34.668909711013555], [-77.39994079458575, 34.66900773879049], [-77.3997970643374, 34.66935573631354], [-77.39965821741478, 34.66934700756134], [-77.39961659703009, 34.66929255437627], [-77.39933962745172, 34.66900174171383], [-77.39932070898828, 34.66874130863795], [-77.39962754993064, 34.66873723864101], [-77.3997390565537, 34.66867760202211]], [[-77.33360298342375, 34.56287979977695], [-77.33360511005186, 34.562879064314366], [-77.33360804916377, 34.5628781960808], [-77.33365005397036, 34.562875324066475], [-77.33435012426294, 34.56282094901674], [-77.33439305636223, 34.562821963382554], [-77.33445207503136, 34.56282362865274], [-77.33492875440501, 34.56296315498739], [-77.33518048212551, 34.5634014484132], [-77.3352499905261, 34.56349439321442], [-77.33528908504404, 34.56360598731675], [-77.33549319638303, 34.56397101517294], [-77.33561968455285, 34.56429032317785], [-77.33566883579957, 34.56460501622375], [-77.33568703100383, 34.56482776466766], [-77.33561559149292, 34.565139993149906], [-77.33562540332726, 34.56550636082925], [-77.33587668982184, 34.56585485233231], [-77.3359377192392, 34.56594276280605], [-77.3359487586915, 34.56596010619446], [-77.33596630341307, 34.56598804885468], [-77.33614494558033, 34.56633751020185], [-77.3362276448429, 34.56646812175623], [-77.33625208447796, 34.56663062249958], [-77.3362691647677, 34.56674419194921], [-77.33628025136487, 34.56682809986451], [-77.33623939488294, 34.567043669774684], [-77.33607649188357, 34.56707675184576], [-77.3359653980809, 34.56711448220754], [-77.33579353168771, 34.56705185784295], [-77.33575710143616, 34.567042334871864], [-77.33557158268019, 34.56692411790365], [-77.33546976988276, 34.5668591209799], [-77.33534785339984, 34.56669339960147], [-77.33517781831225, 34.56667313488897], [-77.33493443811169, 34.566511542238345], [-77.33484898354745, 34.5664538334177], [-77.33478406585948, 34.56641043173637], [-77.33441831283665, 34.56616120062618], [-77.33440237455409, 34.56615049486884], [-77.33439032023816, 34.56614239792426], [-77.33428621401366, 34.566067938595396], [-77.33399658689503, 34.565862574212645], [-77.33395730483608, 34.56584527973743], [-77.33360285179484, 34.565588036367544], [-77.33344292678339, 34.56545233716833], [-77.33314359826545, 34.56514158800093], [-77.33311312975856, 34.565075206340595], [-77.33301667570038, 34.564881299352436], [-77.33292081290821, 34.564678312195426], [-77.33289749722161, 34.56459358605689], [-77.3328159118468, 34.564418848111266], [-77.33246475918386, 34.56427333428621], [-77.33236047452262, 34.56426792838887], [-77.33202818198923, 34.56420244901189], [-77.3318216400078, 34.564209801387705], [-77.33146818801936, 34.564038037257646], [-77.33176600071839, 34.563712244128844], [-77.33202861769472, 34.56369148937375], [-77.33249332088897, 34.56354224894163], [-77.33281675666122, 34.5634170538678], [-77.33306633742131, 34.56322802254899], [-77.33359771350918, 34.56288284844395]], [[-77.37196714230478, 34.733900761138216], [-77.37178978029287, 34.7331484009423], [-77.37186193807466, 34.732828594791066], [-77.37176973527839, 34.73226421269448], [-77.37178665713712, 34.73221932906267], [-77.37185458004424, 34.73170760241556], [-77.37197309273711, 34.73167057182787], [-77.37206324516185, 34.7317806495586], [-77.37184083968286, 34.73223459390892], [-77.37233630928958, 34.73262868450213], [-77.37244601317411, 34.73287504619456], [-77.37268495070724, 34.733116695428706]], [[-77.3674847438822, 34.550866370684105], [-77.36748067452861, 34.55082353033788], [-77.36600027130213, 34.550149183976686], [-77.36575481427792, 34.550244538597745], [-77.36442457796026, 34.55037841012688], [-77.36384358978586, 34.55072546647936], [-77.364275091419, 34.55030597160395], [-77.3643405123683, 34.55024218877653], [-77.3640531385039, 34.54984828858564], [-77.3641819037376, 34.54950386644484], [-77.36420525743648, 34.54933672749286], [-77.36412978216055, 34.54914622962105], [-77.3644676759024, 34.54849038178925], [-77.36468142438945, 34.54828884180169], [-77.36561504711611, 34.547881891048775], [-77.36567330071242, 34.547656320068626], [-77.36606384569727, 34.54736184218778], [-77.36619519178859, 34.54717067967145], [-77.3662901129131, 34.547077817783695], [-77.36646549534451, 34.54696507467287], [-77.36670884738865, 34.54692383997257], [-77.36685960915517, 34.54689867124283], [-77.36715716172912, 34.546952914257716], [-77.36737951041688, 34.54708369242196], [-77.36763815616249, 34.54719054845812], [-77.36825497393177, 34.54738663035217], [-77.36859858818883, 34.547724559518926], [-77.36894555956327, 34.54782950405699], [-77.36918891991633, 34.54805297146491], [-77.36975646237613, 34.547909623251535], [-77.36997736095147, 34.547910947657854], [-77.37029513988502, 34.54777356255751], [-77.37076194849554, 34.54793815926204], [-77.37096961816978, 34.54822862550999], [-77.37121175738729, 34.5483273600576], [-77.37172819297622, 34.548868689374665], [-77.37198933698399, 34.54919462384651], [-77.37212536540405, 34.54928501110361], [-77.37229601031203, 34.54953719004292], [-77.3730973041489, 34.55048053855643], [-77.37344728891773, 34.55094314671928], [-77.37270591267202, 34.551331022839506], [-77.372701706768, 34.55202990752917], [-77.37268782200451, 34.55231561641836], [-77.37273986407168, 34.55251406645392], [-77.37266732538842, 34.5527372723523], [-77.37249346022338, 34.55303922749939], [-77.37233897474913, 34.55319463398952], [-77.37221538713135, 34.55334947224996], [-77.3719653820725, 34.55369511729637], [-77.37182132941086, 34.55376809042641], [-77.37167446116761, 34.55384809380193], [-77.37154145819035, 34.553902565067716], [-77.37142736833069, 34.55392744011637], [-77.37127403970995, 34.553898780768506], [-77.37084865637253, 34.553899995167626], [-77.37063961323418, 34.553813778210674], [-77.37036972124821, 34.55363620619634], [-77.36973455174807, 34.55343674311939], [-77.36936115969145, 34.55330851637348], [-77.36907018402962, 34.553267477780935], [-77.368939497398, 34.55314486657434], [-77.36870641231434, 34.5530952148233], [-77.36868237500114, 34.55305584436754], [-77.36862795468139, 34.55289786875343], [-77.36858283819734, 34.552802525919844], [-77.36851541567046, 34.55263307682384], [-77.36842163794799, 34.55222740869637], [-77.36839450687941, 34.55216084244779], [-77.368382036798, 34.55211840597705], [-77.36831677301984, 34.551869421281964], [-77.36825639254042, 34.551730708216766], [-77.36819159264357, 34.551700421589416], [-77.36801063777601, 34.55143391894858], [-77.36755419792603, 34.55087464088516]], [[-77.32035316084102, 34.55562897984439], [-77.32039185408033, 34.55563894777572], [-77.3205215663488, 34.55574248938198], [-77.32032232854532, 34.555882897212356], [-77.32024466147831, 34.55571101797236], [-77.32026612906388, 34.55565700853577], [-77.320166184769, 34.555569448702606], [-77.32033045880081, 34.55553474957662]], [[-77.41391207577007, 34.72630410549909], [-77.41353806684577, 34.726162307184886], [-77.41391161900475, 34.72627389879732], [-77.41394463587578, 34.726235280299015], [-77.41448188301874, 34.725709964971294], [-77.41477667927934, 34.725943548633495], [-77.41530655092087, 34.72596033791659], [-77.41538508136361, 34.726249081405726], [-77.41554746741224, 34.726514824303116], [-77.4155770163901, 34.7267520020458], [-77.41560324924205, 34.726884464156086], [-77.41556529252958, 34.726953749130075], [-77.41538488606352, 34.72718598312444], [-77.4150495852171, 34.727249959213424], [-77.41491896033111, 34.727298518748526], [-77.41442284972854, 34.72710955109572], [-77.41425605408335, 34.727053372245415], [-77.41392464635074, 34.72630429262843]], [[-77.39198198191548, 34.600328632673005], [-77.39193212613118, 34.6003057820986], [-77.39190424149712, 34.600301040470086], [-77.39184061795625, 34.600280475232104], [-77.39136256462405, 34.60015236540685], [-77.39111604244128, 34.60003676778325], [-77.3907885223228, 34.60000441890392], [-77.3903278112264, 34.60006010024588], [-77.3900443510569, 34.60006425367427], [-77.38983282347527, 34.600105296938544], [-77.3895395672565, 34.60017083025328], [-77.38922679989194, 34.6002136935718], [-77.38875131337187, 34.60033283212527], [-77.38838847295493, 34.60045591511507], [-77.38827065373975, 34.6005323865062], [-77.38796301613232, 34.600750997641434], [-77.387873234951, 34.60082434708723], [-77.38765427773006, 34.60086062362323], [-77.38756888180768, 34.60085222784578], [-77.38727787350226, 34.6008957978665], [-77.38717475809548, 34.60088315220215], [-77.38709066061051, 34.600943287245954], [-77.38678062594997, 34.60096127180461], [-77.38664803972694, 34.60095484855876], [-77.3865467317964, 34.600939683795445], [-77.38638652683812, 34.600845725814864], [-77.38623942550255, 34.60073201596122], [-77.38612888862473, 34.600600972063404], [-77.38599246902858, 34.600505925785946], [-77.385916056753, 34.60043639315209], [-77.3858080265605, 34.60036963649206], [-77.38570188969068, 34.60027344435856], [-77.38559841118985, 34.600183898762964], [-77.38546348227804, 34.60027396609315], [-77.38520426637334, 34.60033671356577], [-77.38505759409927, 34.60047780925356], [-77.38493868371009, 34.60063347501141], [-77.38481007076683, 34.60074404468023], [-77.38471297658418, 34.600847475744786], [-77.38452570277191, 34.60086078855451], [-77.3844159295657, 34.6008576381059], [-77.38423609219207, 34.60082704987597], [-77.38420900913952, 34.600823037494344], [-77.38402183102278, 34.60075565396549], [-77.38393438215986, 34.60073391688684], [-77.38376683848699, 34.60066385671412], [-77.38367468399991, 34.60062656749406], [-77.38362774165034, 34.60061378174599], [-77.38351702760967, 34.600580587852896], [-77.38338260186971, 34.60055876216593], [-77.38329578252485, 34.60051946796878], [-77.38325568820504, 34.60050150302246], [-77.38323365864338, 34.60044805963999], [-77.38319215204996, 34.60036685331161], [-77.38316295718622, 34.60032632931486], [-77.38315391399297, 34.59998907834635], [-77.38313956861852, 34.599905135241094], [-77.3828397305513, 34.59957843977226], [-77.38281205020203, 34.59955759856195], [-77.38244568195404, 34.599287422688676], [-77.38229498461573, 34.59934005965073], [-77.38188893949948, 34.59948566779861], [-77.38165734802286, 34.59975827152516], [-77.38149045025989, 34.59996306729952], [-77.38149588201311, 34.60014202558092], [-77.38149309434925, 34.60031922990933], [-77.38147625856756, 34.60037449283356], [-77.38142854436978, 34.60039804921245], [-77.38126305697894, 34.60050340873294], [-77.38116098659489, 34.60050489730825], [-77.38099940701954, 34.600497592079776], [-77.3808689479678, 34.600465325117725], [-77.38067395518192, 34.600470527994844], [-77.38047481541456, 34.600524080762504], [-77.38028118241543, 34.600525665337074], [-77.38027775573926, 34.60052585047534], [-77.38027301674666, 34.60052542818622], [-77.38008070398455, 34.600496026218885], [-77.37997151043514, 34.60047933184745], [-77.37978184473765, 34.60038903019276], [-77.37972362097783, 34.600357561905916], [-77.37968663272429, 34.60031144202712], [-77.37951926528469, 34.60018263595056], [-77.37929256408015, 34.60012332736286], [-77.379103218941, 34.60006225491039], [-77.37902584516637, 34.599936217038795], [-77.37868153120303, 34.59969845391686], [-77.37858516641349, 34.59962540278204], [-77.37850450804207, 34.59946572459241], [-77.37806783177929, 34.59893775597887], [-77.37818657330327, 34.598414328156935], [-77.37831539648687, 34.59805296008006], [-77.37836267518759, 34.59789289521181], [-77.37850496454388, 34.59778051145327], [-77.37913669007366, 34.597085491144924], [-77.37921448058931, 34.59698927967367], [-77.37929339597495, 34.59694209684662], [-77.37959982717095, 34.59668870465499], [-77.38008175616159, 34.59632292562941], [-77.38021839833061, 34.596227665953165], [-77.38041279994954, 34.596052471555446], [-77.38065818010693, 34.595788823554294], [-77.38077439019507, 34.59557579883291], [-77.38067973468132, 34.59537005195551], [-77.38069079511561, 34.5951632818567], [-77.38044626923367, 34.59480623834256], [-77.38041887788059, 34.59477790524214], [-77.3800822246371, 34.594480386170154], [-77.3800423200827, 34.594450605785404], [-77.37995801888968, 34.59441975585342], [-77.37984229980738, 34.594177868919786], [-77.38008231810366, 34.594114136095094], [-77.38033443010899, 34.59378790338067], [-77.38048767332636, 34.593494299222435], [-77.38062270134488, 34.593207639811176], [-77.38046556571543, 34.59264835776927], [-77.38047537527673, 34.59222400306041], [-77.3804756672459, 34.5922223389041], [-77.38047564488069, 34.59222100967992], [-77.38040429104439, 34.59180806093106], [-77.38034789039456, 34.59153078349082], [-77.38034289145678, 34.591392346340136], [-77.38035388919798, 34.59125799117416], [-77.38041752054701, 34.590957027433255], [-77.38047724060405, 34.590798538950224], [-77.38058639187982, 34.59062567595757], [-77.38057071451783, 34.59040978420001], [-77.38060815422028, 34.59008042602447], [-77.38048127681795, 34.589678190667414], [-77.38048061552384, 34.589674243078235], [-77.38048165667, 34.5896696431765], [-77.3804077748081, 34.589260176346954], [-77.38056465253216, 34.588906664468574], [-77.3807107600498, 34.58854096806734], [-77.38047782746878, 34.58848504033931], [-77.3804445310229, 34.58840575207314], [-77.38037550083668, 34.588305403882515], [-77.38047786751144, 34.588327732229175], [-77.38072673955679, 34.588208619689276], [-77.3808719410142, 34.58827657473143], [-77.38098063158469, 34.58821140072457], [-77.38126604845209, 34.588084821128284], [-77.38135508933846, 34.58794585160417], [-77.38157712652333, 34.5879074036401], [-77.38166015929684, 34.58787109343612], [-77.38174631260412, 34.58788639428594], [-77.3819011467531, 34.587936155101815], [-77.38205417451032, 34.58805385456523], [-77.38211833931118, 34.588095368089796], [-77.38218841394213, 34.58815441049337], [-77.38223671353154, 34.58837526194217], [-77.38236522755022, 34.58855349018609], [-77.38244806731427, 34.58877409106698], [-77.38249569202154, 34.58890790584727], [-77.38251192950293, 34.58895690996854], [-77.38266526010493, 34.58916891042036], [-77.38244794528578, 34.589303544774026], [-77.38226461969919, 34.58941712081579], [-77.38218968305237, 34.589574303410735], [-77.38221176225979, 34.58963702186256], [-77.38223854254362, 34.58964640361512], [-77.38229769161984, 34.58967512874425], [-77.38244788846795, 34.58955039342845], [-77.38258379871755, 34.58964922676], [-77.38257215189496, 34.58979735924808], [-77.38300238249687, 34.589986961911364], [-77.38323581911513, 34.59046501290631], [-77.38326801886184, 34.59051148562131], [-77.38328520393588, 34.59054371116032], [-77.38337716545534, 34.59068279004813], [-77.38323578485034, 34.590620788447296], [-77.38319594073167, 34.59059950988355], [-77.38258973030256, 34.59079708106282], [-77.38244756026002, 34.5909799169963], [-77.38238147540979, 34.59109853711118], [-77.38244752137962, 34.59114966828938], [-77.38266001548165, 34.59125399299276], [-77.38282811293706, 34.59145872547532], [-77.38302831346085, 34.59165314799955], [-77.38323552000847, 34.591827846219104], [-77.38341556826896, 34.59202915564687], [-77.38373008310595, 34.59217784628021], [-77.38393349530227, 34.59224558587214], [-77.38402357949026, 34.59227598497355], [-77.38429741477137, 34.59239111361603], [-77.38441762706442, 34.5924281445856], [-77.38445517097763, 34.592457439162835], [-77.38451578014049, 34.592489157214516], [-77.38481165575824, 34.59268189363466], [-77.3850026834787, 34.592637739573405], [-77.3850122154166, 34.59263365997993], [-77.38520578489856, 34.59243198165106], [-77.38522736478498, 34.59240982531514], [-77.38523231475395, 34.59235730032294], [-77.38520581894332, 34.59225744101204], [-77.38515645708479, 34.59202546569525], [-77.38509490258903, 34.591981109473494], [-77.38493329141632, 34.59187353327796], [-77.38481183391727, 34.591790263969614], [-77.38442845709287, 34.59165261318472], [-77.38442309595528, 34.59164766603854], [-77.384232032283, 34.5912563613357], [-77.38419917982034, 34.59107218060142], [-77.38430914702063, 34.590703424047895], [-77.3846091320452, 34.590352870482974], [-77.38473565956437, 34.59025222924882], [-77.38481214848997, 34.590222833021926], [-77.38493436476924, 34.59017432238649], [-77.38520624806401, 34.590066463708766], [-77.38535435165824, 34.5899804240361], [-77.38560036002761, 34.58983750637354], [-77.38568978790872, 34.589772519782684], [-77.38578566053647, 34.58953371153575], [-77.38578379525485, 34.589334400760194], [-77.38575850768821, 34.589167795224604], [-77.38560770530054, 34.58893522009862], [-77.3857241261603, 34.5886269655411], [-77.38591815320879, 34.58846589782331], [-77.38599469865585, 34.58839094217846], [-77.38612888595, 34.588290961508484], [-77.38620563038184, 34.58822711480236], [-77.38622717489301, 34.588209063597084], [-77.38633169790458, 34.58813246502683], [-77.38638880364452, 34.58814575158472], [-77.38656641775732, 34.58813923507135], [-77.38659580709832, 34.588145171440175], [-77.38678285606343, 34.58818090941906], [-77.3870744339492, 34.58818878154422], [-77.38717691076249, 34.5882043542765], [-77.38723611952376, 34.58821208987656], [-77.38737393641837, 34.58822621007607], [-77.38745145191835, 34.5882448379478], [-77.38753946345062, 34.58826608247867], [-77.3875709568716, 34.5882792961299], [-77.38767051718423, 34.588320528794604], [-77.38779869891196, 34.58837394803834], [-77.38796498997478, 34.58843714966426], [-77.38825684477455, 34.58855328191093], [-77.38832519650646, 34.58857987604321], [-77.388359024801, 34.58859303778979], [-77.38846688275268, 34.58863921324593], [-77.38858350936651, 34.58868886906513], [-77.3887530590139, 34.58876215363329], [-77.38883940030881, 34.588800819964156], [-77.38899913045078, 34.58887082072461], [-77.38909630643232, 34.58891153202302], [-77.38914709451555, 34.58893280924944], [-77.38930909302205, 34.58900067691219], [-77.38935508809072, 34.58901995321764], [-77.38937574191453, 34.589028800240214], [-77.38948401022165, 34.58907473630734], [-77.38954113214041, 34.58909964479112], [-77.38961206686714, 34.58913057644169], [-77.38974215410911, 34.58918824915881], [-77.38978846059263, 34.589339628562655], [-77.38980361601554, 34.58946224591477], [-77.38975218714103, 34.58961137109307], [-77.389665208376, 34.589757696123584], [-77.38954102092674, 34.58986635841729], [-77.38943010291366, 34.5899628945148], [-77.38919063835992, 34.590069814205435], [-77.38914692267099, 34.59008014969998], [-77.38910761850893, 34.59008653725952], [-77.38875284931862, 34.590118900345935], [-77.38842002405532, 34.590162035447406], [-77.3883061234174, 34.59018772604272], [-77.387964644009, 34.59054725778674], [-77.38785003811034, 34.59061131087117], [-77.38778125065767, 34.590744693000374], [-77.38772200240999, 34.590916448985524], [-77.38773078345663, 34.59100384716092], [-77.38779848851732, 34.59116677528281], [-77.3879645243008, 34.59128174458023], [-77.38812955807404, 34.591296848915256], [-77.38816155753092, 34.59130280340963], [-77.38817694380836, 34.59130791568624], [-77.388358590661, 34.59132517733312], [-77.38863530127594, 34.591344247938316], [-77.3887526569395, 34.59137128102801], [-77.388809468315, 34.591384367474404], [-77.38912880935534, 34.59138022570559], [-77.38914672926597, 34.591379050114675], [-77.38916285472277, 34.59137725010515], [-77.38953596143764, 34.59133560168764], [-77.38954080898743, 34.59133537689187], [-77.38954484406158, 34.59133519621169], [-77.38960374129128, 34.59133105089433], [-77.38973784746322, 34.59132204688459], [-77.38974819431992, 34.59132136905175], [-77.38990512061598, 34.5913196604844], [-77.38993488315126, 34.59132819295452], [-77.39009032028319, 34.591473172630714], [-77.39007184122381, 34.591540533530605], [-77.39004763513937, 34.59160084554753], [-77.38996141051365, 34.591704045429864], [-77.38994829100507, 34.5917204412479], [-77.3899348272087, 34.59173105285616], [-77.38988134399384, 34.591773205994535], [-77.3897377689296, 34.59187834122326], [-77.38966971607778, 34.591885072884], [-77.38954072033053, 34.59195325987706], [-77.3893077891349, 34.59197190957799], [-77.38898871015121, 34.592014444804], [-77.3887525541616, 34.5920434223101], [-77.3885433145563, 34.59210766985933], [-77.3883584587652, 34.5921619732399], [-77.38814638513361, 34.59239031883115], [-77.388068576054, 34.592513854321936], [-77.38796429209178, 34.59271367453239], [-77.38792480387878, 34.59280430662027], [-77.38787909306394, 34.59285342441009], [-77.38770998584243, 34.593028448331374], [-77.38757013879966, 34.5931542370167], [-77.38736809237146, 34.593351665278554], [-77.38727731602722, 34.59347390336359], [-77.38717593889331, 34.59384458255276], [-77.3870412359178, 34.5941028475827], [-77.38699851981767, 34.59425408082413], [-77.38700990541497, 34.594431204630176], [-77.38717578000654, 34.594779434764824], [-77.3872197973391, 34.59502384806439], [-77.38724656207549, 34.595067455660406], [-77.38729930173156, 34.595193001118936], [-77.38747004735968, 34.59556720428253], [-77.38756973075542, 34.59562468911483], [-77.38768845310716, 34.59572496233731], [-77.38793516519362, 34.59578646584994], [-77.38796379763211, 34.595793579346356], [-77.38798602382141, 34.59578603745263], [-77.38832369469749, 34.595724443586086], [-77.38835791247554, 34.595662500072265], [-77.3884725350333, 34.5954387180927], [-77.38875210825152, 34.59498457838139], [-77.38883009112924, 34.59492315235884], [-77.3893597316299, 34.59495730740207], [-77.38954029185396, 34.594966696741906], [-77.38986849913778, 34.59504302481075], [-77.3899343710206, 34.59504825135302], [-77.38999463711201, 34.595030879254594], [-77.39032848146871, 34.59489816606214], [-77.39051206537837, 34.594794392099665], [-77.39072259781656, 34.59468928860263], [-77.39085891777478, 34.59454660884903], [-77.39098259433274, 34.59438426990292], [-77.3911167640762, 34.594057953716], [-77.39125075270749, 34.59378528377055], [-77.39128441014054, 34.59363611312014], [-77.39148734170894, 34.59320771484606], [-77.39150138477099, 34.59318025470141], [-77.39150365458545, 34.59317206249576], [-77.39145935685751, 34.59276174587549], [-77.39145267595143, 34.59269986096784], [-77.39142417258503, 34.59243584129344], [-77.3913965707824, 34.592346230654236], [-77.39138354851545, 34.59227320352044], [-77.39138258486732, 34.59220982137212], [-77.39146840416907, 34.59216955857162], [-77.39151107712337, 34.59214426925912], [-77.39154223910359, 34.59214651283101], [-77.39165631706163, 34.592152293568624], [-77.39170811274059, 34.592167285438805], [-77.39181205962734, 34.59218602074692], [-77.39190514662764, 34.592206179405096], [-77.39210384961768, 34.59224423334226], [-77.39222446357813, 34.59230737133523], [-77.3922992109612, 34.59231972430993], [-77.39251315461156, 34.59241571400572], [-77.39269327443593, 34.59245118748636], [-77.39306624244036, 34.59208265589573], [-77.39308739358228, 34.5920398448372], [-77.39319719762068, 34.5919682585561], [-77.39348149964356, 34.59172486225275], [-77.39355000953921, 34.591684905166005], [-77.39379865384531, 34.59165811540637], [-77.39387558069566, 34.5916502982659], [-77.39417934531002, 34.59161762959321], [-77.39418764447537, 34.59194370275345], [-77.39400916622324, 34.59211341320714], [-77.39389774781426, 34.59219780018491], [-77.39387552952894, 34.59221060349032], [-77.39375860988521, 34.592304195325724], [-77.39356667379198, 34.5924578353936], [-77.3935136953919, 34.59250024335943], [-77.3934814208684, 34.59254643198578], [-77.3931985055155, 34.592815711188294], [-77.392952965981, 34.592826172708214], [-77.39304178055696, 34.59295810776364], [-77.39303372193746, 34.59301698824231], [-77.39291378171305, 34.59340113757437], [-77.39292560723825, 34.59364987362803], [-77.39287396809033, 34.59406116694595], [-77.39285977883765, 34.59425806662067], [-77.39283928791745, 34.59441855090749], [-77.39283079242816, 34.59453842751942], [-77.39298122956862, 34.59466512151652], [-77.39304383650315, 34.594702732298835], [-77.39325649683416, 34.594807902300985], [-77.39348119422101, 34.59493942759211], [-77.39353159239266, 34.59495602026072], [-77.39411825527199, 34.594762884010265], [-77.39426939881928, 34.59463436125855], [-77.39461447678875, 34.594376742779815], [-77.39489943440663, 34.59396389404742], [-77.39497318856115, 34.5938622792866], [-77.3950576338649, 34.59384570890269], [-77.39516433157718, 34.593810736658426], [-77.39545172448004, 34.59375192591699], [-77.39562690194096, 34.59362311447463], [-77.39568434376616, 34.59360007538205], [-77.39584582000506, 34.59356962655877], [-77.39599323675141, 34.59354037250701], [-77.3961159607458, 34.593497385796276], [-77.39623990697004, 34.593497394313694], [-77.39636969494353, 34.59346707680983], [-77.39663399233575, 34.59343970197764], [-77.39678853948315, 34.59343333538717], [-77.39685217829, 34.59344715569083], [-77.39702806953679, 34.59352602962415], [-77.39718254376263, 34.5936345669326], [-77.3972916385544, 34.59375942744759], [-77.3974221373422, 34.59382609811123], [-77.3976251306427, 34.59399529343272], [-77.3977216776718, 34.594083211187964], [-77.39781620147045, 34.594279472849514], [-77.39786701254306, 34.59438497264004], [-77.39781827260609, 34.594814321063815], [-77.39781821698901, 34.59481878064936], [-77.39781617869268, 34.59481988908086], [-77.39781231793316, 34.59482159503261], [-77.39742208096368, 34.59502796380656], [-77.39724022656836, 34.59512861970231], [-77.39703696444565, 34.595353856436475], [-77.39698720746861, 34.595741707336146], [-77.39663385538924, 34.59587599590806], [-77.39640649777485, 34.59604901305422], [-77.39614287512596, 34.5963319706448], [-77.39595863584657, 34.59648029089567], [-77.39584562085464, 34.59661623884047], [-77.39571197904274, 34.59681869565536], [-77.39564918508043, 34.59704072881924], [-77.39554186152768, 34.59726780411613], [-77.39563559358999, 34.59748049060112], [-77.39584556726604, 34.597454032604475], [-77.39598636582485, 34.59747657545223], [-77.39610039233742, 34.59746177078282], [-77.39623966873145, 34.597443687638645], [-77.39642210315516, 34.597368874134474], [-77.39663377629532, 34.59731836679691], [-77.39676484498585, 34.597232596994026], [-77.39734549138342, 34.59709005090051], [-77.3974219877685, 34.59706316298498], [-77.39749891478593, 34.59706838483206], [-77.39810313154915, 34.59701368049161], [-77.3982101853266, 34.59705749295227], [-77.39839241472679, 34.597052935553634], [-77.39878313214007, 34.59703214448044], [-77.39899838296091, 34.597030623629294], [-77.3992764592117, 34.59702865799929], [-77.39958925208771, 34.59689654066406], [-77.3996623938917, 34.59709797346103], [-77.39944510432059, 34.5971860177815], [-77.39918954764318, 34.59759076391856], [-77.39910410745946, 34.59771700839066], [-77.39899836197203, 34.597844177483324], [-77.39869800894898, 34.59818725734204], [-77.39860424604052, 34.598300352966206], [-77.39838200951564, 34.598371250322515], [-77.39821013499196, 34.59849245552405], [-77.39815077943524, 34.598525822505785], [-77.3978567284159, 34.598588334846646], [-77.397816025498, 34.5985971716975], [-77.3976533083304, 34.59866152804192], [-77.39746583447798, 34.59873588771417], [-77.3974219122356, 34.598764142076014], [-77.39734079995586, 34.59879398848014], [-77.39688585210081, 34.59904389349859], [-77.39670424624728, 34.599223001137226], [-77.39663367102509, 34.59928197929919], [-77.39643589861436, 34.59947323205812], [-77.39623954303943, 34.5996049531348], [-77.39616494320514, 34.599644999780836], [-77.39584645680698, 34.59977130071005], [-77.39584563226722, 34.599771646527266], [-77.39584542164499, 34.599771832652785], [-77.39584505341638, 34.59977189981163], [-77.39521604112993, 34.60003336639256], [-77.39505717192044, 34.600134666340224], [-77.39481491190372, 34.600344653061], [-77.39472082046119, 34.60042047272173], [-77.394663034122, 34.60045169236354], [-77.39452648294062, 34.60053334832244], [-77.39446596711132, 34.60057145520427], [-77.39443970316691, 34.600582760581375], [-77.39426890167128, 34.60066474618725], [-77.39410599210309, 34.600695971132474], [-77.39387477882633, 34.60074028769307], [-77.39359459046581, 34.6008224798056], [-77.39348065539853, 34.60081354203149], [-77.39337300865111, 34.60086121547376], [-77.3931810841596, 34.600902992732294], [-77.3930865337052, 34.60086028646723], [-77.39284077466215, 34.60089410348567], [-77.39269242076098, 34.60081385414152], [-77.39239871326137, 34.6005849645113]], [[-77.35018146212926, 34.758067532463066], [-77.35024028684602, 34.75824115892468], [-77.35028721199518, 34.758472216637024], [-77.35054395559736, 34.75965946961998], [-77.35084245548066, 34.76120598023574], [-77.34714391655056, 34.762273921859645], [-77.34671197553511, 34.76252919905802], [-77.3461843624473, 34.76143499355247], [-77.34587324862713, 34.76078975389706], [-77.34543943086894, 34.76043104063061], [-77.34497275442632, 34.76026794420203], [-77.34484666503171, 34.76009846042141], [-77.34475036745974, 34.75996901956289], [-77.34466012161671, 34.759847714446735], [-77.34456564527687, 34.75960738408225], [-77.34454505039535, 34.75954201395629], [-77.344543337809, 34.75951003818435], [-77.3445403065677, 34.75945344210362], [-77.3445303806009, 34.75926812701587], [-77.34472559119689, 34.759009019010655], [-77.34473080432761, 34.75899694960567], [-77.34474908101701, 34.7589762175686], [-77.34503018566087, 34.75861080332468], [-77.34514318550902, 34.758453010915304], [-77.3452686324758, 34.75819729011906], [-77.34543739869608, 34.75792527903057], [-77.3454929731531, 34.75774417332099], [-77.34584189328628, 34.75727729194935], [-77.34609956566304, 34.75700493660845], [-77.34638479729593, 34.75682057022469], [-77.346862099077, 34.75640384236922], [-77.34692093166345, 34.756259649115805], [-77.34709076866245, 34.75600781627138], [-77.34710968240717, 34.75598487877881], [-77.34745282222191, 34.75569930616823], [-77.34748276772694, 34.7556770881596], [-77.34750939642147, 34.75566205233214], [-77.34755650079056, 34.755649683700454], [-77.34816463813988, 34.755468679413326], [-77.34861050912572, 34.75539950828383], [-77.3488210647745, 34.75527121262246], [-77.3493743720034, 34.75479960650672], [-77.34962583290702, 34.75456318802812], [-77.34972391736682, 34.75447097089821], [-77.34978107791306, 34.75440512624872], [-77.34996674054909, 34.75404780222296], [-77.35012524294743, 34.753870524730516], [-77.35055674039673, 34.753420953924824], [-77.35062546295455, 34.7533547808849], [-77.35068822697988, 34.75330589752115], [-77.35126973549797, 34.75302869028502], [-77.35150971402737, 34.753003806502605], [-77.35157903370536, 34.75299501212256], [-77.3516833143858, 34.75301530572508], [-77.35186615186379, 34.75303767731381], [-77.35194906745735, 34.75306011955369], [-77.35214755745193, 34.75310564893784], [-77.3524089199386, 34.75323132832354], [-77.35265825158427, 34.75324062730014], [-77.3527122626269, 34.75326158063955], [-77.35272800838985, 34.75326968585895], [-77.35286766242105, 34.753339169754994], [-77.35294375204202, 34.75345230346703], [-77.3529542848407, 34.753469653740694], [-77.35295674671873, 34.75348198657892], [-77.35295885777704, 34.753506889243944], [-77.35290736231251, 34.753732454485146], [-77.35283324714518, 34.753832687537006], [-77.35269659849628, 34.75391283204474], [-77.35249129494645, 34.7540332415178], [-77.35210591707096, 34.75427430624618], [-77.35183131618462, 34.754422890973586], [-77.35131602895049, 34.75493121552564], [-77.35115573333694, 34.75510098302717], [-77.35001382909462, 34.75533678697287], [-77.34999923075094, 34.75533980153378], [-77.34998201535744, 34.755337848570555], [-77.3499469708631, 34.75535712464557], [-77.34995992228167, 34.75537824145456], [-77.34979745456434, 34.75635239192692], [-77.34989270384742, 34.75700671121892]], [[-77.29161093806087, 34.64188685022381], [-77.29201037593296, 34.641682655052165], [-77.29227255365919, 34.64151078821777], [-77.29221458422494, 34.64127889396432], [-77.29201009230147, 34.641265509493664], [-77.29147777367913, 34.641222159636584], [-77.2911937122984, 34.641530925598396]], [[-77.36370759614495, 34.547389706495736], [-77.363734763754, 34.54742839933805], [-77.36376401840235, 34.547441678340306], [-77.36420872798833, 34.54755245573686], [-77.36448908644388, 34.547552441031776], [-77.36464182505208, 34.547560070160245], [-77.36473324656993, 34.54763824886702], [-77.36486900562248, 34.54777217254957], [-77.36447345895387, 34.54823704028895], [-77.36433928672251, 34.548254705304444], [-77.3636887710106, 34.5482140459318], [-77.36330731763768, 34.548234682427434], [-77.36329566498821, 34.548235911629185], [-77.36328402541103, 34.54823805832857], [-77.36290045865704, 34.548349697660754], [-77.36267287256078, 34.548437461008184], [-77.36248574403257, 34.548373699319654], [-77.36248266099112, 34.548344923285256], [-77.36246234015563, 34.548118801341104], [-77.3625148193947, 34.548044754175294], [-77.3628063698987, 34.54800568038675], [-77.36290876181403, 34.547986256954005], [-77.36315275711718, 34.54786888530189], [-77.36330446066152, 34.54785083402389], [-77.36336666860029, 34.54778153848392], [-77.3634471451068, 34.547732142284346], [-77.3636013931672, 34.547529340034885], [-77.36367875526155, 34.54745395883952], [-77.36368460605358, 34.547439488623354]], [[-77.38840543702489, 34.565651035397714], [-77.3883813970996, 34.56603320928541], [-77.38836279482908, 34.56614879828906], [-77.38800958112506, 34.566086830024126], [-77.38798658749363, 34.56607103475848], [-77.38817733408672, 34.565438059688546], [-77.38813198135033, 34.56522004176361], [-77.3883630316603, 34.56480722187433], [-77.38837928955155, 34.5647773238356], [-77.3887300927326, 34.56473820551166], [-77.38864459407361, 34.56502503452864], [-77.38850605896553, 34.565166094049616], [-77.38846686616391, 34.5654842809632]], [[-77.39565766795864, 34.52325209950463], [-77.39566936573269, 34.52324792514513], [-77.395661276469, 34.52325633143917], [-77.39565747768492, 34.52326056932489], [-77.39565111241059, 34.523257798400415]], [[-77.40393827773562, 34.67669186993453], [-77.40452905582852, 34.67651542092402], [-77.40464310421223, 34.67660870329131], [-77.40520893490978, 34.676729525241775], [-77.4052381084683, 34.6768068350423], [-77.40524696447117, 34.676854928963735], [-77.40544515194271, 34.67716680208568], [-77.40565597773993, 34.6773984549813], [-77.40575559263706, 34.6774836374743], [-77.40611537551553, 34.677718010583966], [-77.40593126814798, 34.67785669023648], [-77.40584000199873, 34.67791198066533], [-77.40555330071507, 34.67801435777581], [-77.40546849959802, 34.67804576525383], [-77.40546503613919, 34.67804674884404], [-77.40545398666691, 34.67804565497859], [-77.40483326067078, 34.678026596762116], [-77.40438010843819, 34.67766978567454], [-77.40434276281144, 34.67762665209808], [-77.40433397445764, 34.67753804626887], [-77.40410464012032, 34.67731751826735], [-77.4037659213989, 34.6772869271698], [-77.40339887031993, 34.67765930101759], [-77.40337223814198, 34.67787614620458], [-77.40327474198328, 34.678072150912925], [-77.40352341743085, 34.67812415625105], [-77.40376199527606, 34.678761569085054], [-77.40394517354301, 34.678880376959924], [-77.40403591539598, 34.67909364298241], [-77.4043305461153, 34.6793298447009], [-77.40440764135354, 34.67938491943497], [-77.40443480011932, 34.67940230122615], [-77.40448116047153, 34.67943001759034], [-77.4050154326388, 34.679610040358995], [-77.40505418577064, 34.679619268954184], [-77.40553290688528, 34.67980820446537], [-77.40557088815548, 34.67990471329748], [-77.40570762564514, 34.68037095622897], [-77.40572116146588, 34.68062234665294], [-77.40567068307136, 34.68091715824155], [-77.40566525123509, 34.68109200456159], [-77.40558899655757, 34.681242434951905], [-77.40545932424924, 34.68139613690003], [-77.40545666737738, 34.681400060807256], [-77.40545420439295, 34.68140052535362], [-77.40526343329373, 34.68145804850579], [-77.40510880270472, 34.6815001043867], [-77.40482508400393, 34.681489147568854], [-77.40448217630859, 34.68145111019635], [-77.40433899734398, 34.68144215016417], [-77.40399813265628, 34.68134106240049], [-77.40388770076214, 34.68129111883601], [-77.40376470903479, 34.68125084787013], [-77.40331793367369, 34.68104583138472], [-77.40311126641593, 34.68093003915286], [-77.40300587585024, 34.680862279463724], [-77.40277524384038, 34.6807070763311], [-77.40235852205844, 34.68044674932575], [-77.40223422714678, 34.68036255825251], [-77.40217496227572, 34.680316196399204], [-77.40182143023912, 34.68012902052468], [-77.40174582084232, 34.680048862357836], [-77.40171937579034, 34.67992772794782], [-77.40160360702713, 34.67995989061561], [-77.40142703281575, 34.679830854919395], [-77.40131053649635, 34.67985452464767], [-77.40123733052012, 34.679814623450355], [-77.40123487888573, 34.67973073654173], [-77.40131346812588, 34.679671645744236], [-77.40138366183557, 34.67960002657709], [-77.40160014037887, 34.679492419587994], [-77.40169797958563, 34.679366016591764], [-77.4020677431248, 34.67872512397529], [-77.40213661608773, 34.67858714024164], [-77.40217469529135, 34.67857525015061], [-77.4022708945831, 34.67849086960331], [-77.40242291120121, 34.67755901958475], [-77.40242324047196, 34.677543967792516], [-77.40243033215599, 34.67753171018336], [-77.40242744063303, 34.67748337520795], [-77.40214440945648, 34.676758315554125], [-77.40182567067345, 34.676581820126856], [-77.40153736187946, 34.67613185238414], [-77.401527068445, 34.67612316206271], [-77.40148989165107, 34.67609896955582], [-77.40131174185916, 34.67580468918312], [-77.40114349663591, 34.675839769041666], [-77.40114131415702, 34.675837737502896], [-77.40114035963673, 34.67583682816845], [-77.40114062799421, 34.67583507521038], [-77.40127459794118, 34.6757440330397], [-77.40130443295618, 34.67572895607696], [-77.40145704016078, 34.675706044955945], [-77.4015969894019, 34.67592600740573], [-77.40195776771989, 34.67594351101577], [-77.40240000662217, 34.676024998291616], [-77.4028226274931, 34.67611906719955], [-77.40356869281281, 34.67644063755304]], [[-77.38864623962125, 34.710950809611894], [-77.38847998273975, 34.71162277145673], [-77.38847708768446, 34.71180339268723], [-77.38839419225557, 34.711948473213226], [-77.38819142893412, 34.71264760728715], [-77.38737422060089, 34.71237360659011], [-77.38732374103567, 34.71190669333422], [-77.38726677617156, 34.71137976791931], [-77.38735294018733, 34.71127585017379], [-77.38751306761998, 34.711253734426144], [-77.38801509306091, 34.71086221893506], [-77.38832929729317, 34.71064963032895]], [[-77.4114200520323, 34.727098946382434], [-77.4110998539004, 34.727202537595794], [-77.41089907492713, 34.72691675451463], [-77.41120476941481, 34.72684037480822]], [[-77.38323523249646, 34.65492510500713], [-77.38335245505036, 34.65488249476836], [-77.3835431806562, 34.654864295277704], [-77.38371181540657, 34.65499885835617], [-77.3836262801423, 34.65527665848528], [-77.38351844792749, 34.65529934087371], [-77.38337277232995, 34.65560762547136], [-77.38331584236074, 34.65577728897359], [-77.38332852687333, 34.655895636429506], [-77.38336470688438, 34.65600748835516], [-77.38346671887783, 34.65629863853281], [-77.38348770367035, 34.656338354528906], [-77.3835581837335, 34.65652768312301], [-77.38361472689762, 34.65666124187338], [-77.38363660388123, 34.65669727940471], [-77.38360615823375, 34.65676574019033], [-77.3835564638372, 34.656776716202685], [-77.38332755032894, 34.656972178298915], [-77.38314128537561, 34.65676543645191], [-77.38303293850008, 34.65666503251143], [-77.38296628376656, 34.656451639150376], [-77.38293673915551, 34.656371564480786], [-77.38291732478008, 34.656319536047874], [-77.38282709125255, 34.6560777179018], [-77.3827945705738, 34.65598819333911], [-77.38278695534814, 34.655970157037316], [-77.38277742078695, 34.6559420397281], [-77.38264059131701, 34.65556827897727], [-77.38263164831298, 34.655472626631074], [-77.3826502753719, 34.65535593784815], [-77.38266901287942, 34.655293255953694], [-77.38272195238537, 34.65522339318578], [-77.38287135398764, 34.655114508889284], [-77.38294126460544, 34.655055295127525], [-77.38313919137897, 34.65494562472831]], [[-77.39261622899934, 34.71063486713026], [-77.39275563986355, 34.71086047695357], [-77.3929767296234, 34.71074638123235], [-77.39330795267735, 34.7107928214747], [-77.39340353700274, 34.710836901644576], [-77.39346954823773, 34.710804154451225], [-77.39361970607162, 34.71080740629174], [-77.39373014406804, 34.71081594043241], [-77.39396446222035, 34.710865351688696], [-77.39403422389144, 34.710872693600194], [-77.39421498110354, 34.71086101678264], [-77.39448654129751, 34.710970980971084], [-77.3945954321446, 34.71086928955306], [-77.3946736314228, 34.71087839793849], [-77.39468992749781, 34.71088617748817], [-77.39471838309024, 34.71091231626711], [-77.39473317053988, 34.71109130757105], [-77.39505403328378, 34.711309352261424], [-77.39509459513496, 34.711386950565476], [-77.39514135717877, 34.71147640916897], [-77.39519037344432, 34.71157018000078], [-77.39520056225531, 34.71164020540323], [-77.39508682761858, 34.71166453741627], [-77.39491965665997, 34.711679437121646], [-77.39484940304996, 34.711796895869206], [-77.3943579224862, 34.71196757304038], [-77.39421100982794, 34.712017003311956], [-77.39381952449469, 34.71199564611609], [-77.39370174308057, 34.71201969838117], [-77.39314883533342, 34.711776288857436], [-77.39305454706044, 34.71179108219376], [-77.39247689174064, 34.71182205930504], [-77.39226671596883, 34.71183009101223], [-77.3916172158846, 34.71149762261395], [-77.39144073284385, 34.71097353959318], [-77.39137506276688, 34.71070594715564], [-77.39130628610087, 34.71055693251064], [-77.39123959062964, 34.710316111050616], [-77.39119175307131, 34.710237266537305], [-77.39125465505126, 34.71017451480154], [-77.39132577370631, 34.710264420246276], [-77.39134297942597, 34.710273013270985], [-77.39155737827764, 34.710571173334635], [-77.39184501294153, 34.71039186225647], [-77.39198892663137, 34.71045005522075], [-77.39220641889537, 34.710543654375186], [-77.3924238269242, 34.710590318246744]], [[-77.4309690356714, 34.67628076778966], [-77.43092945113247, 34.676308800695956], [-77.43092093995956, 34.67635620951029], [-77.43094103905794, 34.6763775418098], [-77.43107926814879, 34.67655375604279], [-77.43140815291959, 34.67697767874557], [-77.43145320429738, 34.67702680825286], [-77.43185831704548, 34.677079675309884], [-77.432017162045, 34.67708734256606], [-77.43213515221774, 34.67703750108069], [-77.43225004991123, 34.67697232657762], [-77.43236677084855, 34.67683897827282], [-77.43231516179699, 34.67666700975205], [-77.43230195612715, 34.67653677849624], [-77.4322793569216, 34.67627242188549], [-77.43227732314828, 34.67624863189213], [-77.43227332343012, 34.67620184561925], [-77.43187002928443, 34.67596004201467], [-77.43156775311962, 34.67585677069586]], [[-77.39899935092649, 34.57008954930736], [-77.39862039448043, 34.57005942117718], [-77.3985824985821, 34.57005640824437], [-77.3982114160082, 34.56995883797485], [-77.3980329564416, 34.56992811389246], [-77.39747608654301, 34.569872833491466], [-77.3974234794568, 34.56988765180475], [-77.39737286976363, 34.56988557434143], [-77.39734830390233, 34.569834578344036], [-77.39696766015054, 34.56953160635837], [-77.39663558703565, 34.569237950097474], [-77.39658057566987, 34.56915549427743], [-77.39653228352682, 34.569103170577], [-77.39637077838307, 34.568987300967144], [-77.39624164950592, 34.568861450497366], [-77.39618212955216, 34.568793267378396], [-77.39615314861089, 34.56873329909427], [-77.39610737141211, 34.56859517036219], [-77.39609032983631, 34.56853007628246], [-77.39624169069106, 34.56834550580648], [-77.39627243261356, 34.568324645278814], [-77.3964089333052, 34.568271822323844], [-77.39658920411081, 34.56819574161519], [-77.39663566791391, 34.56816016305988], [-77.39670156998172, 34.56815857760326], [-77.39740069655865, 34.56810404780948], [-77.39742359755579, 34.56808179737515], [-77.3974582370155, 34.56808309298561], [-77.39750468517163, 34.56811372212494], [-77.39796804321786, 34.56830924502051], [-77.39821150188024, 34.56842111422705], [-77.39858559050575, 34.56840374437343], [-77.3989994204315, 34.568591089301975], [-77.39986563280885, 34.56947133358469], [-77.39987821898399, 34.57022067286773], [-77.3998490112471, 34.570389407170204], [-77.39973886730006, 34.57039095224377], [-77.39968565229891, 34.57034645684096]], [[-77.38608271380973, 34.53013451955053], [-77.38651739411696, 34.53045167550434], [-77.38606722022004, 34.53082079485244], [-77.38573530623711, 34.53084749345115], [-77.38528189561512, 34.53083348568911], [-77.3848362420844, 34.530970204392446], [-77.38431275164338, 34.53076965717194], [-77.38529630609294, 34.53019545171085], [-77.38587981041937, 34.53017989808091]], [[-77.43981722087668, 34.6196592052686], [-77.44007032787762, 34.61925590445931], [-77.44006840392947, 34.61919159517415], [-77.43985346242519, 34.6185792323765], [-77.43957537275057, 34.61839962857559], [-77.43947544862641, 34.61824850850569], [-77.43930094162496, 34.61799824623559], [-77.43897486014944, 34.61794617039506], [-77.43876449446716, 34.617932072226125], [-77.43858779834034, 34.6178322948897], [-77.43856038204663, 34.6177346981068], [-77.43849711753953, 34.61767352204206], [-77.43859159015204, 34.61750043450727], [-77.43861722346095, 34.61745466119441], [-77.43862250102738, 34.61744672354039], [-77.43862993095941, 34.61744040206609], [-77.43864945019881, 34.617429710806505], [-77.43885933632724, 34.617318098544686], [-77.43900286806435, 34.617270128292716], [-77.43910018383748, 34.61723760403467], [-77.43945554121737, 34.61711883741562], [-77.43958076659314, 34.61707255495696], [-77.43975043412581, 34.61699815211005], [-77.44005721312584, 34.61689240008578], [-77.44055889826565, 34.616885549823174], [-77.44057540092425, 34.616864755107024], [-77.44060805038976, 34.61686406093014], [-77.44061765543108, 34.61688438650526], [-77.44062602955755, 34.616909043120984], [-77.4408822848329, 34.61744308273494], [-77.4408854780595, 34.61754653014386], [-77.44085177871096, 34.617607469344975], [-77.44085018784503, 34.61786868777685], [-77.44084683375925, 34.61791545060623], [-77.44084983913666, 34.61792593875383], [-77.44083315951582, 34.61796025518388], [-77.44072635741233, 34.61818300102595], [-77.44066455458076, 34.61834800819922], [-77.44053588525227, 34.61864124962922], [-77.4402765589458, 34.618645015488], [-77.44032438161193, 34.61903928600395], [-77.44022723624326, 34.61921117404087], [-77.4402694835677, 34.619261964151505], [-77.44026407132215, 34.61956906010907]], [[-77.40335162294292, 34.66892270028387], [-77.40363124437089, 34.66890284688408], [-77.4039859946364, 34.66914477173039], [-77.40365072805898, 34.669092292650575], [-77.40357795300055, 34.66908684685567], [-77.40342457918346, 34.669083045796135]], [[-77.35630571164596, 34.6617209367967], [-77.35627787901137, 34.66157060919051], [-77.35641700873687, 34.661680742922954], [-77.35644239189821, 34.66170216128466], [-77.35652035696226, 34.6620842526403], [-77.35679889743753, 34.66198723704168], [-77.35686979982172, 34.66206545235114], [-77.35702150085407, 34.662240385352085], [-77.35702187513388, 34.66226480991975], [-77.3569861253197, 34.66231044161383], [-77.35685359849867, 34.66225909479221], [-77.35657937132967, 34.66218548155835], [-77.35651440219942, 34.66216478902042], [-77.35638190724202, 34.66213247411508], [-77.35635253414938, 34.66197382601991]], [[-77.42818610606085, 34.748472614692716], [-77.4280745155946, 34.74829699682702], [-77.42799790827519, 34.74810471929386], [-77.42772625119882, 34.747894470499915], [-77.42754186743254, 34.74740214710169], [-77.42767611517766, 34.74727054276852], [-77.42775222624843, 34.747314414856284], [-77.4283173126337, 34.74745841214996], [-77.42844022326263, 34.74747385959586], [-77.42884519890039, 34.74768468480082], [-77.42889257889765, 34.747686411908816], [-77.42905156803869, 34.74764789385347], [-77.4290634436031, 34.74764998913371], [-77.42906723235468, 34.74765873813608], [-77.42908759877723, 34.7477067506334], [-77.42902464676378, 34.74778913189171], [-77.42896911530238, 34.747887104681936], [-77.42881996851767, 34.74820825200054], [-77.42877640226725, 34.748261440921254], [-77.42872509563033, 34.748264889411836], [-77.42840126826995, 34.748455120382985]], [[-77.41033616854219, 34.72790998512599], [-77.41022812877735, 34.72784028120883], [-77.4102196613253, 34.72779736923749], [-77.41004464615659, 34.7274704404562], [-77.40983087103629, 34.7271565303168], [-77.40981267341196, 34.72712081871158], [-77.40980615820598, 34.72709364910724], [-77.40961913422024, 34.72675517179076], [-77.40962092794447, 34.72674074967938], [-77.40963818252156, 34.726715091346186], [-77.40974942101221, 34.72657675055068], [-77.40992038522097, 34.72657448714853], [-77.40996897257497, 34.72656161147263], [-77.41001733759197, 34.72651289106088], [-77.41014491370971, 34.72665301002141], [-77.41038685496687, 34.72688140104526], [-77.41052672526973, 34.7269677202534], [-77.41078984116945, 34.72743766135173], [-77.41063669586624, 34.727653163601424], [-77.41063389870017, 34.72766268042324], [-77.41060109150628, 34.727684766445755], [-77.41036420854773, 34.72784791970014]], [[-77.34214340976055, 34.651506885520234], [-77.3421928633303, 34.651453631129506], [-77.34225942324967, 34.6514898142724], [-77.34252251057367, 34.65150076187216], [-77.34267314704053, 34.65160629706923], [-77.34283487863684, 34.65146192573212], [-77.34312946891916, 34.6516347388751], [-77.34320031961359, 34.65168712408473], [-77.34320929019545, 34.651693026822386], [-77.343556164005, 34.651864568179505], [-77.3436785703651, 34.65191213323284], [-77.34389572461427, 34.65196100120971], [-77.34402819938985, 34.65201287089035], [-77.34417735332103, 34.65207283197584], [-77.34426211983472, 34.65219091698795], [-77.34456502439288, 34.65236117533856], [-77.34449351874218, 34.65259509192214], [-77.34450853635491, 34.65279092851851], [-77.34461942179122, 34.653025501732664], [-77.34433007643315, 34.652918684731304], [-77.34386749832832, 34.653413342969586], [-77.34362441537556, 34.65316755845494], [-77.34350725611957, 34.65321405946542], [-77.34338752605323, 34.65321006613592], [-77.34318491397606, 34.65320330863548], [-77.34303467592184, 34.65318692070091], [-77.3428518393514, 34.65313916440101], [-77.34262510013541, 34.65304946968746], [-77.34254483712465, 34.65300850138679], [-77.3424795866282, 34.65288010536405], [-77.34225318632033, 34.652818455021226], [-77.34210083676086, 34.65273933584947], [-77.34206230767211, 34.652704721317726], [-77.34198990869405, 34.65257269675617], [-77.34186583728771, 34.65230969072788], [-77.3418699326557, 34.652048301501594], [-77.34178694903085, 34.65171600606807]], [[-77.33236197446452, 34.653517645143005], [-77.33244648718447, 34.653481126448135], [-77.33290642321832, 34.65304022759433], [-77.33328353443237, 34.65311943109863], [-77.33358980042502, 34.65325438855615], [-77.3336971284297, 34.653301682628054], [-77.33392026597748, 34.65340000705158], [-77.3339343164771, 34.65340619833691], [-77.3339417449149, 34.65341251197501], [-77.33415791093357, 34.65353761911362], [-77.33423839710163, 34.65401089461738], [-77.33415116475521, 34.654212317232854], [-77.334124126862, 34.65432031799876], [-77.33404485462054, 34.654497499711155], [-77.33397077119594, 34.65505597110848], [-77.33396538881755, 34.65508179070247], [-77.3339637115606, 34.65508904097471], [-77.33396107356268, 34.65510242285608], [-77.33393405841599, 34.65512863436617], [-77.33394098972992, 34.65508513793672], [-77.33392752169323, 34.65505525469875], [-77.33363247917865, 34.65457758176039], [-77.33352854349775, 34.65429773259531], [-77.33332386524292, 34.654040460096084], [-77.33308803233213, 34.653944250039594], [-77.33284299159949, 34.65384428347385], [-77.33246544842348, 34.65369025909675], [-77.33239050769544, 34.65365968594346], [-77.33235333922799, 34.65366548376633], [-77.33229781635163, 34.653622577522036]], [[-77.44217255935375, 34.74389899844201], [-77.44223438076864, 34.74395164364229], [-77.44270844418116, 34.74418442192342], [-77.44272536852141, 34.74419320338395], [-77.44249626451358, 34.74455898783357], [-77.4421033791097, 34.74445271458038], [-77.44208570817347, 34.74419916445777], [-77.4420917914109, 34.74401113586875], [-77.44204663264895, 34.74395323350907], [-77.44203055602294, 34.743798455733604]], [[-77.42701851030773, 34.625774080010785], [-77.42702454558132, 34.625558698840294], [-77.42707578088286, 34.62548439723959], [-77.42713226672902, 34.62538010101369], [-77.42714544469612, 34.625353917858014], [-77.42723386180876, 34.62531444024079], [-77.4273321016093, 34.62526439178791], [-77.42738516712424, 34.6252541516975], [-77.42740933455065, 34.62529142705887], [-77.42746832257465, 34.62543225011251], [-77.4274879985478, 34.62558553696114], [-77.42750415347176, 34.625634348244134], [-77.42751639019352, 34.625787787516686], [-77.4275419287132, 34.62595730082847], [-77.4276288787955, 34.62632746893826], [-77.42774079732874, 34.62646231270614], [-77.42803613818299, 34.626743911758105], [-77.42803891464695, 34.62674660241733], [-77.4280402631713, 34.62675119696263], [-77.42786618149381, 34.627165054765044], [-77.42779406328158, 34.62728447606901], [-77.42770997460354, 34.62749176012125], [-77.4273050996863, 34.627637171560124], [-77.42723613459029, 34.627344577308286], [-77.4267938985522, 34.62734773330757], [-77.42660429372016, 34.627294151611935], [-77.42614447539654, 34.62722718445683], [-77.42562517686048, 34.62714472953076], [-77.42551067284613, 34.62714060236246], [-77.42540259587268, 34.62712853238901], [-77.42547397359324, 34.62709179997169], [-77.42549643696695, 34.62708856298031], [-77.42551495825369, 34.627082311902086], [-77.42622383824461, 34.62673482915629], [-77.42643092147924, 34.626660414272195], [-77.4266939894643, 34.62639135189304], [-77.42674117661842, 34.626296461374075], [-77.42702617183573, 34.62592746836778]], [[-77.35770524508477, 34.66412608840495], [-77.35720224774668, 34.664554792372], [-77.35699310662795, 34.66422391769052], [-77.35727388365153, 34.66381457794409], [-77.35716583291523, 34.66371280369735], [-77.35742652764766, 34.66364303234323], [-77.35745296829644, 34.663646371320745], [-77.35747011093727, 34.66364914965706], [-77.35751296704957, 34.6636651166028], [-77.35786381921442, 34.663754592993776], [-77.35788809865784, 34.664053788279155]], [[-77.38721996802472, 34.56624278810058], [-77.3879435340534, 34.56612363233131], [-77.38766512346457, 34.56665842303722], [-77.38750333986863, 34.56666140502196]], [[-77.38784627923374, 34.52869060499545], [-77.38811527927113, 34.528752183892095], [-77.38804475457665, 34.52899076555765], [-77.38724128010318, 34.529148805640396], [-77.38755331191626, 34.5287517529925]], [[-77.33086354202955, 34.56368232669692], [-77.33090310403803, 34.56375550344779], [-77.33081966766477, 34.56373586322179], [-77.33079653270008, 34.563655883185824]], [[-77.35765181923595, 34.665067594505615], [-77.35741701210945, 34.66465307105854], [-77.3578563646763, 34.664362748242205], [-77.35783484589857, 34.66456531765925], [-77.35783843143709, 34.66459517850336], [-77.3578400726613, 34.6646494495444]], [[-77.40127594534277, 34.58082517126483], [-77.40136302800276, 34.581102908084674], [-77.40137618107089, 34.581127270313], [-77.40139252376527, 34.58113908517461], [-77.40137741257696, 34.58115676631175], [-77.40136302738391, 34.58116896359955], [-77.40133666943807, 34.581175546807025], [-77.40096900118749, 34.581407860027966], [-77.40077452791594, 34.58143781531033], [-77.40077198864792, 34.581438206441874], [-77.40076781675154, 34.58143702449246], [-77.40057497698488, 34.581414300938945], [-77.40048309128957, 34.58136932862688], [-77.40035740325686, 34.58128845463399], [-77.40029997856237, 34.58116849234161], [-77.40029263777635, 34.58099356006955], [-77.40030978550647, 34.58087075138676], [-77.4005749929565, 34.58056899746661], [-77.40068194808026, 34.58050772202367], [-77.40082602307965, 34.58052576291602], [-77.40096901241907, 34.580614341187136], [-77.40106202237062, 34.580661979654344], [-77.40116737075094, 34.58074700101641]], [[-77.43488857332571, 34.67754707934919], [-77.43483438110064, 34.6776241575422], [-77.43483226156967, 34.67770124937983], [-77.43481754269872, 34.6778543834848], [-77.43495380368262, 34.67801046060505], [-77.4351692888328, 34.67800600481368], [-77.43527609909232, 34.67800379611265], [-77.43553289287671, 34.677946272728065], [-77.43536880057387, 34.67768330518015], [-77.43535875927041, 34.6776284532342], [-77.43533035722868, 34.67759591591518], [-77.43513203288802, 34.67739428732715], [-77.43498527493381, 34.67747523384644]], [[-77.40136311060061, 34.57415774916851], [-77.4014184447653, 34.57428251265656], [-77.40144772057303, 34.574337919614955], [-77.4015117634876, 34.574488874544016], [-77.40152269465148, 34.57457969662284], [-77.4015601001418, 34.5746028083805], [-77.40160939963296, 34.57473916204356], [-77.40159497161082, 34.574778824716205], [-77.40160817746829, 34.57484548223174], [-77.40156009670352, 34.574898332512056], [-77.40151093702708, 34.574912683976166], [-77.40143952850411, 34.574975964534566], [-77.40136309844625, 34.57501840435058], [-77.40117987667556, 34.575028280163345], [-77.40109298308221, 34.57510476744588], [-77.40096910504889, 34.57499636555896], [-77.40089051681231, 34.57492759533393], [-77.4008074378057, 34.574854894908576], [-77.4005751233305, 34.57448077437741], [-77.40057278738749, 34.57446669996074], [-77.40057223105607, 34.57446426262834], [-77.40055781647649, 34.57444769153874], [-77.4005751238917, 34.57445701642736], [-77.40090378723485, 34.57392143056385], [-77.40100571288858, 34.57393770385442], [-77.40110949265735, 34.573962155513236]], [[-77.37173487356277, 34.599350404278844], [-77.3719049642885, 34.59897646168737], [-77.37180440266461, 34.59856689933332], [-77.37180459008381, 34.59856605034757], [-77.37180487817037, 34.598565692039955], [-77.3718060962936, 34.59856483169862], [-77.37180557491554, 34.59856621870637], [-77.37219892988429, 34.59873628372047], [-77.37226112388771, 34.59885811771571], [-77.37235275098615, 34.59891196422655], [-77.37270281989589, 34.59916768177281], [-77.37298700790022, 34.59916669325456], [-77.37304659404673, 34.59923658208275], [-77.37316820677395, 34.59944832503656], [-77.37330974518082, 34.59962323573992], [-77.3735500091475, 34.59983101536213], [-77.3737130380699, 34.59998970304139], [-77.37377494375585, 34.600056535229584], [-77.37393624206341, 34.600208300230214], [-77.37397194505513, 34.60023372983132], [-77.37410251661764, 34.60035815882518], [-77.37413563018201, 34.600389286629934], [-77.37416221445295, 34.60055463644075], [-77.374160183853, 34.600562131929266], [-77.37405687673603, 34.60066865647876], [-77.3739826576815, 34.600799984679696], [-77.37377457793966, 34.60117793029636], [-77.37374639810257, 34.6012282393485], [-77.37373247077811, 34.60126058400405], [-77.37357744505468, 34.601395724926576], [-77.37350930137217, 34.6014316173617], [-77.37343404589117, 34.601458021829565], [-77.37338035737442, 34.60147359262168], [-77.37319072717152, 34.601542868600276], [-77.37317258778342, 34.60154200236944], [-77.37298621583759, 34.60152496999935], [-77.37280047158238, 34.601594893691015], [-77.37231023371439, 34.6014654443279], [-77.37222852303832, 34.601444327287844], [-77.37219799810629, 34.60143306304518], [-77.37204664770678, 34.601340336934776], [-77.37175420011191, 34.601174579144015], [-77.3714099854918, 34.60076627026454], [-77.37139658141474, 34.600747921269146], [-77.37141001382656, 34.600686374987106], [-77.37153963922484, 34.600017580446405], [-77.37158848893954, 34.59987116303459], [-77.3717495592526, 34.59948264994257]], [[-77.37967873564646, 34.63268869069838], [-77.37966339027761, 34.63267287641156], [-77.37965710488868, 34.63265047963111], [-77.37967875754654, 34.63259444218998], [-77.3797626220099, 34.63256827968528], [-77.3800199667962, 34.63256436270819], [-77.38007302955872, 34.6325870561318], [-77.38008928963632, 34.63259401009059], [-77.38031335295577, 34.63257924149681], [-77.38009513869878, 34.63263449799087], [-77.38007302062226, 34.632626312375145], [-77.38006451063556, 34.632624255258555]], [[-77.3943674311039, 34.52761444500708], [-77.39439516015187, 34.52760928557951], [-77.39444722946556, 34.52755399974127], [-77.39468005966887, 34.52731530225626], [-77.39452070104048, 34.527173701461905], [-77.39447217346552, 34.527052206523784], [-77.39431555484326, 34.52707394133725], [-77.39399897952653, 34.5272001082618], [-77.39355950767276, 34.5274770098203], [-77.39399160128121, 34.52752827912583]], [[-77.3829259166112, 34.530871611415535], [-77.38320658716339, 34.530929189380814], [-77.38317184155346, 34.53109068400971], [-77.38321630197319, 34.53117262014037], [-77.3829160471127, 34.53130804759033], [-77.38272919154593, 34.53124286738167], [-77.38278637758782, 34.53107397098806], [-77.38276936444332, 34.5309922426323]], [[-77.44078461894918, 34.59666425064369], [-77.44077672961076, 34.59667878216091], [-77.44116630821375, 34.596725452683565], [-77.44129302510414, 34.596740632711644], [-77.44140597958705, 34.59675416404305], [-77.44156041957035, 34.59677266488417], [-77.44172242459497, 34.59679207173161], [-77.44184330824282, 34.5968292866008], [-77.44195454779667, 34.5968536444247], [-77.44200258902163, 34.59687433861343], [-77.44214403311524, 34.596879008330255], [-77.44251656940173, 34.59706587893326], [-77.4426855874685, 34.59672457841683], [-77.44274609593012, 34.59659066780943], [-77.44284439765038, 34.59634306096602], [-77.4428591799048, 34.596305826408106], [-77.44281628433858, 34.59624032653553], [-77.44268503404942, 34.596039912524866], [-77.44234823443155, 34.596038576766354], [-77.44233971418716, 34.59603731626532], [-77.44226968864518, 34.59603826500213], [-77.4419937503692, 34.596035505704805], [-77.44191095177126, 34.596043604943326], [-77.44156010601401, 34.59612487851567], [-77.44122936208699, 34.59612047783483], [-77.4411660196078, 34.5961234110216], [-77.44107267491421, 34.59611082159101]], [[-77.32611283866612, 34.56013777887711], [-77.32580359690058, 34.56026310812517], [-77.32582713416024, 34.560496876119984], [-77.32606896373403, 34.56051120189758], [-77.32612257426044, 34.560153548021084], [-77.32616725993918, 34.560178139522904], [-77.32612382603209, 34.560134869682784], [-77.32612125801177, 34.56013513219771]], [[-77.43133267238767, 34.50380640875102], [-77.43121223172031, 34.503637512053785], [-77.43122132451596, 34.50360914802107], [-77.43125235611267, 34.50351234638], [-77.43126252123811, 34.5034806367565], [-77.4312679583805, 34.503471470845874], [-77.43131198015695, 34.50335614095037], [-77.43164141205955, 34.503321636940555], [-77.43185511812209, 34.50325384901062], [-77.43197038982728, 34.50333841805775], [-77.43197695731766, 34.503382274029065], [-77.43206396027654, 34.50351207499513], [-77.43201730877102, 34.50365173608371], [-77.43200849244327, 34.50367812979091], [-77.43200373963741, 34.50369235868445], [-77.43198130572534, 34.50371584884174], [-77.43180311708682, 34.50389191818266], [-77.43149261294232, 34.5039256987839]], [[-77.37563182188153, 34.5616384184172], [-77.37536375887093, 34.561642642888486], [-77.37502009736347, 34.56164509811976], [-77.37496982254457, 34.561644319666726], [-77.3749327210952, 34.561643492285135], [-77.37477285547236, 34.56164186065772], [-77.37473631722096, 34.56163180920958], [-77.37462312096903, 34.56159723236518], [-77.37457592101649, 34.56154473820577], [-77.3744438938364, 34.56146166789171], [-77.37444549810154, 34.5613897761846], [-77.37444641428738, 34.561249023977425], [-77.37444503856543, 34.56110800118525], [-77.37457616424646, 34.560839549637414], [-77.37468564158542, 34.560483284889365], [-77.3748017394062, 34.56034869721323], [-77.37497033506133, 34.560138380794825], [-77.37515070369349, 34.56006821541442], [-77.37536431969247, 34.559971998017545], [-77.37560060688192, 34.5596389904727], [-77.37592052327132, 34.5593383427144], [-77.37606126889958, 34.55921981706857], [-77.37615248593644, 34.55902216474222], [-77.37635212992592, 34.5586420541663], [-77.37646261248621, 34.55841109257121], [-77.3765466876526, 34.55815983099913], [-77.37670002622653, 34.558117564858705], [-77.3769406074062, 34.55815756925598], [-77.37757935231254, 34.5582501383966], [-77.37766472668336, 34.55830645807126], [-77.37772837184124, 34.55839473378076], [-77.37781256324408, 34.558307236405504], [-77.37823968266736, 34.55845298201356], [-77.37831120480479, 34.55877294693148], [-77.37812811328831, 34.55902016854071], [-77.37795116501468, 34.559654257628736], [-77.37780984680927, 34.5599151684481], [-77.37776643171354, 34.55996296706113], [-77.37772785825715, 34.56005964936675], [-77.37752568389693, 34.56058753008115], [-77.37745251906138, 34.56081579633196], [-77.37733363897519, 34.560992981168226], [-77.37717320783977, 34.56110774834074], [-77.37712254984075, 34.56128791655101], [-77.37704922895992, 34.561416666098125], [-77.37700223397465, 34.56151753847732], [-77.37693953013388, 34.56155081585031], [-77.37675228947704, 34.56156404889708], [-77.37673468899288, 34.561564578963335], [-77.37654560956143, 34.561505875913745], [-77.37642667120717, 34.561516389652006], [-77.37615164778549, 34.56158847534016], [-77.37592600977112, 34.56164176247905], [-77.37575769576821, 34.56163895037368]], [[-77.38047925946066, 34.72887453908541], [-77.38066647650696, 34.72878032826108], [-77.38093972649187, 34.72873653323881], [-77.38117123709287, 34.72869957220582], [-77.38162615418743, 34.728976777965556], [-77.38169212664755, 34.729022991765085], [-77.38140898488402, 34.7292464390416], [-77.38133179731602, 34.72925132529464], [-77.38122467637803, 34.729319205309515], [-77.38099426358431, 34.72931376732909], [-77.38099311201063, 34.7293136268823], [-77.38099261988883, 34.729313862178145], [-77.38099107793872, 34.729313692141055], [-77.38083782581822, 34.72929632004931], [-77.38074461123746, 34.72928242249369], [-77.3806788662769, 34.72929167606512], [-77.38044751403413, 34.72917067818177], [-77.38039177598903, 34.72917611439357], [-77.38017450847728, 34.72902789417741]], [[-77.3474299659354, 34.65498157284575], [-77.34773370922181, 34.655125171174454], [-77.34784770325832, 34.655140237896944], [-77.3478946238154, 34.65512924720014], [-77.34797548750903, 34.65515712706449], [-77.34806664487023, 34.65518855598372], [-77.34809911645598, 34.655216601254956], [-77.34813351416051, 34.655247242278634], [-77.34820127312202, 34.65530141242416], [-77.34826544798555, 34.655427750851615], [-77.34818806885983, 34.65545075177309], [-77.34812198943072, 34.65546378955156], [-77.34810192974427, 34.65546257925306], [-77.34798173433511, 34.65544901902238], [-77.34795358234207, 34.65542245632264], [-77.34790465773406, 34.655424613210215], [-77.34778481951955, 34.65537935280902], [-77.34773122193563, 34.65537087037951]], [[-77.44394200182201, 34.73346341129448], [-77.4439100768981, 34.73346102670836], [-77.44387446258779, 34.73344617674139], [-77.4438402237101, 34.73339941638226], [-77.44388318549046, 34.73336735005553], [-77.44394433847171, 34.733342593720266], [-77.44405298664688, 34.73337167967577], [-77.44399388404273, 34.7334530996748]], [[-77.4007488282007, 34.670645547214114], [-77.40078080676035, 34.67038235653226], [-77.40093885401005, 34.67056628225651], [-77.40098656004436, 34.67071904802214]], [[-77.39076116099392, 34.622961724921836], [-77.3908643565039, 34.623148191407935], [-77.39068474529185, 34.62305502852317], [-77.39061715770492, 34.623027576944956], [-77.39059080171707, 34.62289298734436], [-77.39071929314795, 34.62295212880511]], [[-77.46172558118695, 34.70722559957337], [-77.46173493762413, 34.7072097881193], [-77.46177769587977, 34.707137530386596], [-77.46175418214868, 34.70723222954734], [-77.46175300855391, 34.707235180507794], [-77.46175210771244, 34.70723782874964], [-77.46170540646905, 34.70738767180601], [-77.46171098278468, 34.70725026912947]], [[-77.44029049288861, 34.60257700411922], [-77.44024740291111, 34.6026772128727], [-77.44073532399885, 34.60270050562922], [-77.44048971023591, 34.60238097542061], [-77.44031592001457, 34.60255370152678]], [[-77.37805830867038, 34.62743289644808], [-77.37813265529243, 34.62740602548264], [-77.37824436164914, 34.62735798653404], [-77.37844727326642, 34.62727491716926], [-77.37838623780314, 34.627032620608745], [-77.37820899621272, 34.627052581096734], [-77.37810301139746, 34.62731866702151], [-77.37807995056102, 34.62735684671899]], [[-77.42451706193788, 34.68377325941435], [-77.42424086959304, 34.68405438353968], [-77.42472689066409, 34.684116355637286], [-77.42473007962253, 34.6838502300545]], [[-77.43256102096485, 34.730855768115084], [-77.43259597633323, 34.73089792566884], [-77.4325654755832, 34.73095493930403], [-77.43254088411419, 34.730988492907755], [-77.43242659648143, 34.731047985248956], [-77.43238725198101, 34.73103764739416], [-77.43233372121946, 34.73100733454833], [-77.4323287446469, 34.73094206054038], [-77.43232168273107, 34.73091188500305], [-77.4323287654757, 34.73089780384379], [-77.43237225803753, 34.73082620975413], [-77.4324499600372, 34.730816953842634], [-77.43247417075686, 34.730805769612246], [-77.43249678688646, 34.730805473256574], [-77.4325195902759, 34.73081819459611]], [[-77.33144885917163, 34.65694158540054], [-77.33149692874377, 34.65678989550124], [-77.33168415250067, 34.656711739508324], [-77.33172076148877, 34.656998865943656], [-77.33173589079566, 34.65707559771822], [-77.33165551703684, 34.65717337227231], [-77.33154598796656, 34.65716935361625], [-77.3314983749565, 34.65718807684163], [-77.33135395157335, 34.65712798617281]], [[-77.40125246348309, 34.673797272029844], [-77.4012474467521, 34.673777522683636], [-77.40127161253191, 34.67373116563439], [-77.40138115752936, 34.673824330114506]], [[-77.39490674075489, 34.73298599307717], [-77.39474284033415, 34.732956762375785], [-77.3947814286797, 34.73278107865329], [-77.3948927588847, 34.73289427817883]], [[-77.43818719354381, 34.67756366926927], [-77.43815874762552, 34.677606676865786], [-77.4381856152101, 34.6776362020272], [-77.43823276636635, 34.677632560459884], [-77.43822848542797, 34.67758589253771], [-77.43823965073558, 34.67754176932036], [-77.43820562514698, 34.6775485224217]], [[-77.3868092496589, 34.621488061327156], [-77.38682530012682, 34.62145132794089], [-77.38697441573865, 34.62137409506131], [-77.38715982226364, 34.621390512220685], [-77.38717152141781, 34.62138881434389], [-77.38717567544035, 34.621396351742725], [-77.3871761507627, 34.621400758323894], [-77.38717465886407, 34.62140435487783], [-77.38717151747048, 34.62141504548309], [-77.38712787603248, 34.62157302402738], [-77.3870515610811, 34.6216309993886], [-77.38700073942351, 34.6216667228979], [-77.38690483136068, 34.621727031295144]], [[-77.42922274142398, 34.69949968590538], [-77.42934598059277, 34.69952067260378], [-77.42936667436777, 34.699536737358166], [-77.42945181757354, 34.699579786774606], [-77.42933301212771, 34.69965306095099]], [[-77.42524718030447, 34.57541020844774], [-77.42532081135164, 34.57534838613829], [-77.42525764008451, 34.57529502769743], [-77.42511534218698, 34.57528722045749], [-77.4250817615778, 34.57551004448659]], [[-77.3802809230663, 34.58799341417739], [-77.38028875244811, 34.58800363908176], [-77.38028091049173, 34.58804231085119], [-77.38026958083482, 34.588006402074164]], [[-77.37622476124768, 34.631156394685796], [-77.37621899247577, 34.6311412697338], [-77.37628046443419, 34.6310884081124], [-77.37623909814124, 34.63116003009539]], [[-77.39030714804059, 34.62285998440238], [-77.39032508772702, 34.62279814674264], [-77.39041678966532, 34.6228441783242], [-77.39032507780848, 34.62288706332807]], [[-77.41466178146155, 34.620195607697255], [-77.41476621460421, 34.620134072411524], [-77.41483586258146, 34.62009545304056], [-77.41486475616784, 34.62008134119766], [-77.41490516677078, 34.62009784601369], [-77.41496331525268, 34.6201253794354], [-77.41498102041452, 34.62013045024944], [-77.41499675935799, 34.620183256338045], [-77.41497852585066, 34.6203621696064], [-77.41496336707137, 34.620409334500344], [-77.41480852584243, 34.620386712760435], [-77.4147727249484, 34.620384918036194], [-77.41476625882059, 34.620379577967]], [[-77.38574394778234, 34.56789952300881], [-77.3856047303527, 34.567978877370834], [-77.38557661428926, 34.567923650752185], [-77.38560475225104, 34.56787350670065]], [[-77.45605819284728, 34.60140425774103], [-77.45605856903191, 34.60140327727398], [-77.456069287354, 34.60125329375676], [-77.45624108949646, 34.60111688078349], [-77.45644309563787, 34.60107439284592], [-77.45652759873002, 34.60105661923807], [-77.4565101752064, 34.60109786298363], [-77.45650817378007, 34.60113240112996], [-77.4564687332089, 34.60128626784348], [-77.4563876681248, 34.601364690643884], [-77.45638414923833, 34.6014027138235], [-77.45633396911316, 34.60145605468489], [-77.45626903808963, 34.60147802941752], [-77.45610635033374, 34.60157180677243]], [[-77.38698661024165, 34.59659973745775], [-77.3870179297155, 34.59675609607525], [-77.38712620465226, 34.59673002314992], [-77.38713582741602, 34.59661211306308]]]]}, "type": "Feature", "id": "demo11", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.20203171647525, 34.65466781624104], [-77.20409560766348, 34.655121261691065], [-77.20515414884336, 34.655497925079985], [-77.2101347417707, 34.65652576212924], [-77.21045273066655, 34.656614572094774], [-77.21443563656702, 34.657906685222244], [-77.21573736478598, 34.65879138570572], [-77.21589380281844, 34.65892969576174], [-77.21642471404421, 34.66010201089861], [-77.21677302804268, 34.66088451051831], [-77.21723226889378, 34.66273889109321], [-77.21895886229015, 34.66482792581185], [-77.21926760984368, 34.665145694244124], [-77.22064420122221, 34.66734130719468], [-77.22321513801822, 34.66893454762147], [-77.22390809884605, 34.669310684866076], [-77.22835530691684, 34.67033647034867], [-77.22957530367506, 34.67145057560633], [-77.23371658400892, 34.6723216748089], [-77.23683658270456, 34.670444925066406], [-77.23723088447242, 34.670194510997995], [-77.2372308880662, 34.67000009709456], [-77.23718991507133, 34.66974760353058], [-77.23694492769744, 34.66712486018237], [-77.23683113153773, 34.66623683034738], [-77.23321904070211, 34.66426035578315], [-77.23052172400651, 34.663648582047614], [-77.2316916726957, 34.66206113246462], [-77.23046733229603, 34.66073003495915], [-77.23022831371637, 34.660060422852446], [-77.22933830898091, 34.658596188900766], [-77.22913860635327, 34.658287925161076], [-77.22904908837786, 34.658082060432704], [-77.22899626410819, 34.657606770456965], [-77.22892556111576, 34.65542862495063], [-77.22886742220429, 34.65429687367853], [-77.2287708401003, 34.6525475575477], [-77.22874798484004, 34.652402079173164], [-77.22874758642173, 34.652126066700504], [-77.22897503509691, 34.65053452914984], [-77.22912625875071, 34.64947569891706], [-77.22924133456614, 34.6486701381551], [-77.22941426468779, 34.64745923264564], [-77.230043586526, 34.646847955877575], [-77.23110803590814, 34.645795584512726], [-77.23290903187963, 34.643303012431026], [-77.23387449771786, 34.64182202327741], [-77.23372783661014, 34.640775834534125], [-77.23311405145537, 34.63954837662839], [-77.2328877772646, 34.63925207645882], [-77.23267953731681, 34.638679324457264], [-77.23171558348596, 34.636751529004485], [-77.23115124159793, 34.63562278254417], [-77.23047767934156, 34.63427557108058], [-77.23105139076571, 34.633136308655786], [-77.23209202815019, 34.63192613108996], [-77.23403539700038, 34.630530498325385], [-77.23686969799586, 34.62853195288804], [-77.23807817337031, 34.62802107093906], [-77.24219075005334, 34.62726434004532], [-77.24584526932418, 34.62600838426026], [-77.24719167654787, 34.62557424250927], [-77.24997403610135, 34.62366744608849], [-77.25093305813927, 34.62209798895861], [-77.25168982786661, 34.620460841245446], [-77.25309799232497, 34.61849763141419], [-77.25398517092688, 34.61671708517373], [-77.25399873000556, 34.61668318946636], [-77.25406343511352, 34.61663328270703], [-77.25560242755304, 34.61552587984106], [-77.25609473188322, 34.614962731574394], [-77.25692988203792, 34.61407702361939], [-77.25941395734566, 34.61253203466211], [-77.26160200286218, 34.613811109551236], [-77.26202962117111, 34.61402880907225], [-77.26411578017874, 34.61559349814398], [-77.26432962120904, 34.61572918394797], [-77.26450754540994, 34.61579788579719], [-77.2646389091382, 34.615865423518805], [-77.26540463377083, 34.61639100469779], [-77.26629135746651, 34.61685687855149], [-77.26740730897397, 34.61690729864359], [-77.26928185680717, 34.6155309772736], [-77.26965917462155, 34.615366071750046], [-77.27010286642412, 34.61487774822363], [-77.27269591669345, 34.612525331342184], [-77.27392443521666, 34.611092471622534], [-77.27594566197284, 34.60732744326129], [-77.27629688966209, 34.60520865880018], [-77.27656515680786, 34.60386701234898], [-77.27674685299414, 34.60295844776735], [-77.27723312933196, 34.602039563313355], [-77.2777097618019, 34.60118797254289], [-77.27873178956966, 34.600194917539255], [-77.28070333288942, 34.59864580720088], [-77.28158825929181, 34.59822017373277], [-77.2829292772148, 34.59771992133109], [-77.28638792901944, 34.59662393436952], [-77.28914059328478, 34.59585301915072], [-77.29115138955221, 34.59484762611161], [-77.2928623225207, 34.59399214417397], [-77.2933745607627, 34.59316796536332], [-77.29406978249322, 34.59134429747327], [-77.29433331693428, 34.59002654289663], [-77.29498194389187, 34.58841299892151], [-77.29817347077679, 34.58591176390061], [-77.29931533746496, 34.58449227059324], [-77.29956102204639, 34.584233139348314], [-77.30039137437812, 34.58372686762867], [-77.3038137872866, 34.58139730656876], [-77.30627412367416, 34.57982901590526], [-77.30916238075831, 34.57866229190482], [-77.31518489624592, 34.574867986052155], [-77.31536791789571, 34.574730719962766], [-77.31547100901332, 34.574653403471586], [-77.31855190913726, 34.57090748523697], [-77.31862697133995, 34.57078665333151], [-77.32016194010271, 34.56736072543893], [-77.32063335028307, 34.56605361538617], [-77.321784073908, 34.56545556751627], [-77.32285047773311, 34.564726649754675], [-77.32483882814391, 34.56339914388302], [-77.32493778467196, 34.5633206418291], [-77.32496318530691, 34.56330207370142], [-77.32500743481435, 34.56326836196555], [-77.32581344041381, 34.56239711575442], [-77.32582788626915, 34.5623014031697], [-77.32651502735605, 34.56176638306448], [-77.32679646971108, 34.56161629843805], [-77.32701740348344, 34.56158926186204], [-77.32730311772528, 34.561547972497905], [-77.32773682618787, 34.56155968719787], [-77.32809085038255, 34.561721447286885], [-77.32823988234156, 34.5617941201803], [-77.32848464854442, 34.56188541069578], [-77.32850837428141, 34.56191621066099], [-77.32848450985723, 34.56204010771008], [-77.3284415271723, 34.562304289518856], [-77.32839958706953, 34.56235638179871], [-77.32808991734368, 34.56275685352677], [-77.32805523180303, 34.56279306282994], [-77.32802860678797, 34.562834232465796], [-77.32801076730826, 34.56292193007129], [-77.32792467178668, 34.56369824202923], [-77.32801809850234, 34.56376123532078], [-77.32808897002165, 34.56380902009273], [-77.3285183150325, 34.56399914356216], [-77.32873282222067, 34.56443117458064], [-77.32884254092276, 34.565228840756575], [-77.32885056442663, 34.565263330355954], [-77.32885144720912, 34.56528919018778], [-77.32887552143124, 34.565335524968845], [-77.32912234964495, 34.56580691029996], [-77.32954877259607, 34.566012061673334], [-77.32960888763326, 34.566061524954776], [-77.32966276808834, 34.56610566005186], [-77.33032671420804, 34.56688220684326], [-77.33044973677423, 34.567212294994555], [-77.33056513902187, 34.56756413957227], [-77.33069482840332, 34.56812960970444], [-77.33079135793608, 34.56838070215772], [-77.33085895601793, 34.56877763633692], [-77.33085044551648, 34.56880549276534], [-77.33082759849829, 34.568815897468006], [-77.33044819580854, 34.56898601161593], [-77.33023822478226, 34.56908310963791], [-77.32966102350186, 34.56939100003446], [-77.32965988185333, 34.569391248832616], [-77.32965908118291, 34.56939164674383], [-77.32965710082358, 34.56939279374233], [-77.32941111739032, 34.56958480771137], [-77.32943382534259, 34.56966820763017], [-77.3295342146493, 34.56983499150825], [-77.32965931852402, 34.570033537630145], [-77.32973219577188, 34.57015243501284], [-77.32977621922073, 34.57022474947196], [-77.32992439263194, 34.57048951436209], [-77.329998038231, 34.57061740861551], [-77.32999101892271, 34.570684918398314], [-77.32999422057739, 34.57104249436953], [-77.32995835423522, 34.57137113129402], [-77.32979621115626, 34.571920026543374], [-77.3296573688582, 34.57225896193374], [-77.32942852748175, 34.5725756596214], [-77.32926303633994, 34.57264276497834], [-77.32910705190983, 34.57286813983371], [-77.3290036885609, 34.57302844667418], [-77.32898613484593, 34.57318336722746], [-77.32917439288676, 34.573282999786656], [-77.32922813272371, 34.57331225126356], [-77.32932483539966, 34.57332861897394], [-77.32965654331838, 34.57320241819198], [-77.33003227231669, 34.573139967662044], [-77.33044460886916, 34.5731245704786], [-77.33058526456401, 34.57335300659149], [-77.33075359234971, 34.57348058687266], [-77.3310497820863, 34.57363454187652], [-77.33123206224828, 34.57376008254064], [-77.3314933476079, 34.57394164166758], [-77.33184468613567, 34.57417284861132], [-77.33201962251157, 34.574283327850786], [-77.33238933664123, 34.57454504037547], [-77.33241340686351, 34.57454426887895], [-77.33252549810476, 34.574620381243626], [-77.33280724280363, 34.57474647371777], [-77.33284502920577, 34.57483734993009], [-77.33286874697414, 34.57487473742785], [-77.33298078052422, 34.57504588882243], [-77.3331311165738, 34.575261564836474], [-77.33314369756773, 34.5753212523107], [-77.33317189891112, 34.57564942672489], [-77.33316751000135, 34.5756808730593], [-77.33315016935822, 34.57605403813171], [-77.33280607335118, 34.57614642610632], [-77.3324473795633, 34.57624706450142], [-77.33236983917709, 34.576265448088016], [-77.33201791196547, 34.57630786227827], [-77.3316568278629, 34.57635806554416], [-77.33122963457735, 34.576601281574284], [-77.33067163162907, 34.576888669710854], [-77.33049553864718, 34.57697243375881], [-77.33044121526216, 34.57705251385623], [-77.3300035712738, 34.57783375215637], [-77.32986877231674, 34.57808638167019], [-77.32965160789625, 34.578857588227436], [-77.3293100130335, 34.57963156657289], [-77.32965065689152, 34.57995005063309], [-77.3311054412649, 34.57950469271661], [-77.33122713401517, 34.579534663875194], [-77.3314240085796, 34.579539892229164], [-77.33201528939318, 34.57941825004448], [-77.3325695542606, 34.579415025076884], [-77.3328033031547, 34.579469120508], [-77.33298686944237, 34.57930077875743], [-77.33359158031611, 34.57920054811701], [-77.3336881082467, 34.579106277923394], [-77.33424025434289, 34.57907327785901], [-77.33437969731783, 34.57912233004411], [-77.33456395203531, 34.57907494538142], [-77.33516787702084, 34.57896395535185], [-77.33528618632471, 34.578900061688515], [-77.3357746758719, 34.578897768915105], [-77.33595591034319, 34.57898556421546], [-77.33651438733108, 34.57919799240565], [-77.33674374499364, 34.57926015024081], [-77.33683931609106, 34.57929545177045], [-77.33699160533217, 34.579376560499874], [-77.33753147945691, 34.57967029399769], [-77.33792772144328, 34.57966413570021], [-77.33872932511164, 34.5799758087866], [-77.33894144414634, 34.580123950929355], [-77.3394443250751, 34.580236271042516], [-77.3406836293608, 34.579769531426194], [-77.34133412439886, 34.58059790594326], [-77.34278786641174, 34.581090378439406], [-77.34350777125866, 34.58133914683459], [-77.34383467981102, 34.58144498132786], [-77.34453611162122, 34.5815947872729], [-77.34698647991203, 34.58217255669122], [-77.34856272602073, 34.58195793921488], [-77.35013857911903, 34.58249959903703], [-77.35254102991733, 34.58227567005416], [-77.35329097202978, 34.58235841753792], [-77.35354534960656, 34.582664969984734], [-77.35625554388753, 34.58234694182521], [-77.35644327434476, 34.582353808236086], [-77.3565844624096, 34.58234975491979], [-77.35801951797585, 34.58217317146508], [-77.35817076861805, 34.582110626671955], [-77.35880766047265, 34.58203716054952], [-77.35902711865893, 34.58191390478351], [-77.35935728212914, 34.581845742941276], [-77.35959579826104, 34.58190483787346], [-77.35988430094301, 34.581716154686504], [-77.36036165803783, 34.581958181634704], [-77.36010609502311, 34.582545137317], [-77.3602853223899, 34.58292390318464], [-77.36031013359514, 34.58366380984778], [-77.36042465466399, 34.584451117438746], [-77.36042957695797, 34.58449572453774], [-77.36042944515007, 34.58454627099308], [-77.36058158837398, 34.58510819807757], [-77.36076514846573, 34.585296523230355], [-77.360925608254, 34.58553690091388], [-77.36117002893684, 34.58580132752605], [-77.3616677299409, 34.58632830084532], [-77.36195775785038, 34.58658734381873], [-77.36217005636558, 34.586792484921695], [-77.36254384717834, 34.58695614176284], [-77.36274564372667, 34.587070331047315], [-77.36280259196603, 34.58712597364886], [-77.36282695631611, 34.58745921887646], [-77.362856811661, 34.58754272185868], [-77.36274535027572, 34.587697457960175], [-77.36265861256929, 34.58766472278735], [-77.36235125890295, 34.58776112075337], [-77.36207525075, 34.58778244167135], [-77.36195717588193, 34.58780590461118], [-77.36177315344256, 34.58789694803589], [-77.36145730132542, 34.58805488733763], [-77.36116877625379, 34.588372768018736], [-77.36107050163174, 34.58854320597419], [-77.36091138375852, 34.588671900292155], [-77.36038028489395, 34.589103009908314], [-77.36004033493273, 34.58928024015532], [-77.35959189513376, 34.589604828848216], [-77.35849224802463, 34.59020448025279], [-77.35801515708066, 34.59047297056068], [-77.3577947500014, 34.59058132437188], [-77.35756177051844, 34.591340197585744], [-77.35825929822069, 34.59245005680321], [-77.35958940875922, 34.594554315145004], [-77.3601512451265, 34.59496868007238], [-77.36089923133869, 34.59546649560461], [-77.36095825007516, 34.59693385209893], [-77.36209467995647, 34.59869084495411], [-77.36152324277612, 34.600083396218736], [-77.36144335865207, 34.60078504315065], [-77.36185034045022, 34.602122446713025], [-77.36140705627903, 34.603619905016785], [-77.3612910562019, 34.60390117370442], [-77.3612823523165, 34.60403287329812], [-77.36165142829995, 34.60554751463369], [-77.36195327824528, 34.606347975192875], [-77.36195741842661, 34.6063622470461], [-77.36198074456017, 34.607198327140324], [-77.36224472840739, 34.60768963848828], [-77.36242989619632, 34.6079827851455], [-77.36255584809649, 34.60815862106357], [-77.36255798918378, 34.60862202240864], [-77.3625113165805, 34.60882017329509], [-77.3624297268909, 34.60916123760836], [-77.36240580753375, 34.60925991492563], [-77.36236898341481, 34.609295088119794], [-77.3623412428881, 34.60930852765538], [-77.36227722623796, 34.60934735591934], [-77.36194702129181, 34.60943431174158], [-77.36182567393713, 34.60963737036185], [-77.36171466341611, 34.60978395031796], [-77.36146473023535, 34.61014991689103], [-77.36137621910878, 34.61044696233257], [-77.3613484779381, 34.61068576344536], [-77.36136340941106, 34.61090485591072], [-77.36140037902635, 34.611266157034066], [-77.3616901817787, 34.611485688164045], [-77.3618352719079, 34.61158409896303], [-77.36194580610503, 34.61207054740002], [-77.36215580311656, 34.612041610179574], [-77.36200231083367, 34.612289869997596], [-77.36199394158929, 34.61234305448712], [-77.36194564670237, 34.612417069676326], [-77.36159445692306, 34.612773126931415], [-77.36156730788296, 34.612794283168576], [-77.36152444540403, 34.61281211114449], [-77.36115703117763, 34.61296888221671], [-77.36085504305584, 34.61278034750925], [-77.3607629607261, 34.61273519826214], [-77.36038761285697, 34.61252226932877], [-77.36037650288942, 34.612515664113744], [-77.36036889000066, 34.612506696511396], [-77.36033457633417, 34.61249293737475], [-77.359907027295, 34.61223991956358], [-77.3597777257985, 34.612185490304476], [-77.35958078811274, 34.611981794151546], [-77.35947396150723, 34.61191974546304], [-77.35945192983691, 34.61180782469337], [-77.35941841811794, 34.61163758283614], [-77.35950033220874, 34.61103890711698], [-77.35952673369452, 34.61094795461372], [-77.35955924070215, 34.61091950892669], [-77.35958131965226, 34.610894483307355], [-77.35984020408905, 34.610624143934444], [-77.35997569034232, 34.61048349401007], [-77.35998819011827, 34.610470447078654], [-77.36002095757358, 34.61040355966299], [-77.36022308449242, 34.60999863136192], [-77.35958210457227, 34.60929197379722], [-77.35955447055719, 34.609275526314384], [-77.35938124056108, 34.60927068354681], [-77.35879383332187, 34.60917832531356], [-77.35830613142033, 34.609101640918276], [-77.35800563023643, 34.608934819225965], [-77.35711395142428, 34.60885920951605], [-77.35642923460482, 34.608453214118576], [-77.35441790410398, 34.6087546537011], [-77.3532761719194, 34.60806125995098], [-77.352128589804, 34.609078775397876], [-77.35198897124211, 34.61033430339626], [-77.3518290328027, 34.61191355671498], [-77.35163998025223, 34.61378089132788], [-77.35148838735546, 34.61527802807508], [-77.35146548142953, 34.61550419362433], [-77.35145099348905, 34.61576910853694], [-77.35169478255654, 34.61620532202209], [-77.35236136862888, 34.61707351735101], [-77.35169393078868, 34.61767470741508], [-77.35096130334387, 34.61818439226495], [-77.35011661345598, 34.618505650773365], [-77.34928487461204, 34.61841181789885], [-77.34853993939761, 34.618238283173895], [-77.34716197180629, 34.617821319180855], [-77.34703339683371, 34.61776442987935], [-77.34696343931607, 34.61771227722667], [-77.34669160951438, 34.617596116223396], [-77.34410362726584, 34.616359821845165], [-77.34305001992863, 34.61641522122669], [-77.34197510140555, 34.615860481315025], [-77.34137675473657, 34.61553064033227], [-77.34107863168967, 34.61572709471085], [-77.33973642835207, 34.61643875196943], [-77.33902048826606, 34.61654634437637], [-77.33806286143613, 34.61710716061557], [-77.3366378248688, 34.617430792915876], [-77.33614129416648, 34.61841924011192], [-77.33417151436184, 34.617899046865176], [-77.3322979671166, 34.6193386229363], [-77.331915011393, 34.61941237722796], [-77.33153462550207, 34.61945499517195], [-77.33102194867692, 34.6200381755567], [-77.32812672276319, 34.62161046699587], [-77.32772725757437, 34.62406036008521], [-77.32407405189358, 34.62774307782328], [-77.32492442677686, 34.62929713841628], [-77.3234868843035, 34.628448583268806], [-77.32284716687465, 34.62886483867736], [-77.31920450834502, 34.62929325094356], [-77.3187562307362, 34.630395248781184], [-77.31778324688052, 34.63063527386901], [-77.31813030450984, 34.63193392956746], [-77.31873745489807, 34.63240779952978], [-77.31931058872303, 34.633158107738474], [-77.31943196322123, 34.633443438009536], [-77.31946580454863, 34.63354189834212], [-77.31937769137905, 34.63349252623601], [-77.31918932924418, 34.633808640420995], [-77.31888788914279, 34.63424202407614], [-77.31862788257143, 34.63355366684693], [-77.31829739941112, 34.633278603094766], [-77.31804320084467, 34.63322284798485], [-77.31803508310253, 34.633212942337565], [-77.31801215829373, 34.633185135940124], [-77.31788025241377, 34.63295656435544], [-77.3177222844324, 34.632833833883666], [-77.31762000524719, 34.63270897319394], [-77.31752759636386, 34.632506915539885], [-77.31738122210686, 34.63226202189345], [-77.3177030192154, 34.63199250257191], [-77.31704378269538, 34.63143231942526], [-77.316986696654, 34.63128230092053], [-77.31651497153122, 34.630785336510705], [-77.31697258428446, 34.63040468229546], [-77.31618486045832, 34.630341910694774], [-77.31614248674619, 34.63043735742441], [-77.31514020345014, 34.63034629603296], [-77.31491257779354, 34.63038201955799], [-77.31476871945011, 34.63048884513249], [-77.31460638670026, 34.630451270820316], [-77.31453912194786, 34.63038824879722], [-77.31449218893337, 34.63023049700965], [-77.31459226698448, 34.62988696737623], [-77.31441247908151, 34.629491437533915], [-77.31414918332031, 34.62910372419625], [-77.31406078486702, 34.62903994342804], [-77.31399245818145, 34.628986300502106], [-77.31382011427175, 34.62872683889509], [-77.31390384121562, 34.628544489169784], [-77.31401096574388, 34.6284459801078], [-77.31410563847845, 34.6282657232974], [-77.31440638289203, 34.627858444178955], [-77.31480050019626, 34.627848701265734], [-77.31510353132317, 34.62728498568355], [-77.31524949306944, 34.62567896962853], [-77.31541838263185, 34.62575614860955], [-77.31541600748164, 34.62555421667753], [-77.31536025806042, 34.62532119906748], [-77.31513185723324, 34.62548844858514], [-77.3126474083235, 34.62547163442682], [-77.31065225588027, 34.62545809279456], [-77.31011737883229, 34.625623549483656], [-77.30992246235365, 34.62596089377423], [-77.3092610656752, 34.62639767995822], [-77.30809387730862, 34.62692227877977], [-77.30786347260913, 34.627152707444715], [-77.30649356392644, 34.62809695347238], [-77.30460494085553, 34.63041135905976], [-77.30413359912092, 34.631231994527575], [-77.30398681183385, 34.63336055490123], [-77.29993938805053, 34.63747246744491], [-77.29973518002012, 34.63770055609329], [-77.29957697218266, 34.63765502941717], [-77.29431294668747, 34.63620026900248], [-77.2918198041534, 34.63517862495332], [-77.29153415568801, 34.63511204306059], [-77.29128427349828, 34.635246085924926], [-77.28926934869898, 34.6365893620539], [-77.28794873304857, 34.6374697378523], [-77.28710273384158, 34.638557575533795], [-77.28632544396045, 34.63966518194043], [-77.28635346746952, 34.64132007237883], [-77.28674654552304, 34.64298333680633], [-77.2874650504568, 34.64378844659495], [-77.29039246605585, 34.64586027733081], [-77.29088779850788, 34.64619570907511], [-77.2912168589723, 34.64631129187835], [-77.29145317257723, 34.64608609458194], [-77.29288366923578, 34.64551938534391], [-77.29348216798947, 34.645311650762316], [-77.29356847781793, 34.645265974585136], [-77.2953536352603, 34.64438997535797], [-77.29593458116204, 34.644293160073275], [-77.2965893945444, 34.64409728278252], [-77.30039713668461, 34.64376192019141], [-77.30091320205757, 34.64357754855805], [-77.30143709487304, 34.64368679262679], [-77.30245385237589, 34.644209276499026], [-77.3054331384837, 34.64496047860503], [-77.30635094069868, 34.64515175682862], [-77.30803687264182, 34.64555918986087], [-77.30904727272721, 34.64582605217663], [-77.3095937747521, 34.645908702387246], [-77.31198531125818, 34.647704844529315], [-77.31324664217021, 34.64786143041875], [-77.31401327372093, 34.64937757782228], [-77.31512247579502, 34.650575460513565], [-77.31597379475252, 34.65164581252418], [-77.316374239411, 34.6524299200691], [-77.3178017347013, 34.65467991441314], [-77.31838436574068, 34.65553032081188], [-77.31853484963762, 34.65575920377682], [-77.31893027119943, 34.65678598578589], [-77.31975935968123, 34.658717752782046], [-77.31973626105207, 34.6608011192994], [-77.3197362992786, 34.66182576914317], [-77.31954056064102, 34.66212362697769], [-77.32009214345268, 34.66257383725024], [-77.32061232583189, 34.66264374441823], [-77.3228905099585, 34.663752627698734], [-77.32372187385364, 34.66385887028893], [-77.32544334737938, 34.664690376302566], [-77.32559911866926, 34.66473558577433], [-77.32566305978175, 34.664802444839275], [-77.32735828267346, 34.665845915938476], [-77.32849229304631, 34.66613398524972], [-77.32955632470615, 34.66608795626333], [-77.3303196224049, 34.66636784552975], [-77.33119417721306, 34.666831213972735], [-77.33149163869719, 34.66684984521307], [-77.33248852441244, 34.66710017506164], [-77.33288816292233, 34.668691068968855], [-77.33301849777357, 34.66908209594567], [-77.33404912325607, 34.67078508491513], [-77.33436122227342, 34.671201863634955], [-77.33455638917764, 34.672472793590984], [-77.33555853161343, 34.6744770144458], [-77.33636912692467, 34.675962970108536], [-77.33737289467113, 34.677776315917185], [-77.33755983483279, 34.67810148319974], [-77.33759476673444, 34.67817299369472], [-77.3376564402809, 34.67828325266418], [-77.33753916714691, 34.680053815483355], [-77.33774228803219, 34.68065747071714], [-77.33775463491577, 34.68099900773785], [-77.3378620127858, 34.68112049142817], [-77.33766945157066, 34.681498069562274], [-77.33758422053312, 34.681728381767385], [-77.33755452720602, 34.68176771794896], [-77.3375073099093, 34.6817875602192], [-77.33719036264347, 34.68194799871279], [-77.33708291598714, 34.68198784342338], [-77.33660550792808, 34.68208729866639], [-77.33655949408823, 34.68205925919135], [-77.33648841350939, 34.68209897942374], [-77.33600218327189, 34.682214160156676], [-77.33590853079112, 34.68223967744497], [-77.33550233051558, 34.682501218633064], [-77.33519022970692, 34.68265185262832], [-77.33497541666792, 34.682553239330886], [-77.33471404397787, 34.68239085064351], [-77.33468729320875, 34.682380789924146], [-77.33467214887997, 34.68237487794974], [-77.33411260895333, 34.68242881551431], [-77.33407625144773, 34.682365737582835], [-77.33366623985273, 34.6821495675056], [-77.33291966869191, 34.682226262784084], [-77.33251144860048, 34.68208420051933], [-77.33192582613962, 34.68179851043139], [-77.3319074019254, 34.681590136272845], [-77.33164540942175, 34.681836965617684], [-77.33094565208313, 34.68229020670388], [-77.33082562373812, 34.682436756500984], [-77.33052972509189, 34.682559718439016], [-77.33044186623309, 34.68251387209155], [-77.32988467702968, 34.6826260023153], [-77.32975454337068, 34.6826287238972], [-77.32931571271335, 34.68264379904907], [-77.32921452682824, 34.682617846398784], [-77.32917721427162, 34.68228464383033], [-77.32909815785531, 34.682186258355806], [-77.32923366367228, 34.68145298734339], [-77.3287920335633, 34.68125348767222], [-77.32735448833256, 34.68077972008825], [-77.32510011942497, 34.681480020432005], [-77.32434324976163, 34.681541215265234], [-77.32202179513935, 34.683847935582435], [-77.32169129361147, 34.68417634044451], [-77.32390974661749, 34.68554846297466], [-77.32561692239614, 34.68558773876575], [-77.32555921060907, 34.68695647818781], [-77.32553846884981, 34.68744843000663], [-77.32553424898485, 34.687548544295886], [-77.32552787415423, 34.68769981842059], [-77.32548348096003, 34.69064351087824], [-77.3254380892862, 34.691460661204076], [-77.32540614533595, 34.69227942146412], [-77.32539030630485, 34.692685516377665], [-77.32554442761192, 34.693395560399246], [-77.32595503130361, 34.69343364538126], [-77.3260276611768, 34.693582553722045], [-77.32649942355027, 34.69423939012593], [-77.32666639821727, 34.69446290256573], [-77.32663514739522, 34.694708154627335], [-77.32686112314695, 34.694834241179755], [-77.32718213144355, 34.69463317334639], [-77.32729679464302, 34.694376435318], [-77.32739428245884, 34.69411672123299], [-77.3285305802689, 34.69320980755011], [-77.32874223899799, 34.69310461419059], [-77.3298238355944, 34.69287957458762], [-77.3300213156761, 34.69296213191045], [-77.33059600378076, 34.69301667605968], [-77.33053534542073, 34.69319871345533], [-77.33090118647091, 34.693292204573424], [-77.3310802025847, 34.69343244884289], [-77.33112574392473, 34.693605130957124], [-77.3312651989491, 34.69368426333011], [-77.33135265424232, 34.69379860861425], [-77.33145497954114, 34.69393239621147], [-77.33147448222557, 34.69404468305145], [-77.3314483646335, 34.6942277098598], [-77.33144719952375, 34.69429210981002], [-77.3313895469106, 34.69437685291837], [-77.33129330962495, 34.69455689623527], [-77.33105363932123, 34.69482749739454], [-77.33082044474344, 34.69494769537323], [-77.33052283334632, 34.69504355795285], [-77.33037870531173, 34.695089982515306], [-77.32994945484211, 34.695228525699655], [-77.32976463929981, 34.69528822132247], [-77.32960382212072, 34.69535635764853], [-77.32905944079818, 34.69550960014974], [-77.32874092358108, 34.695657205084814], [-77.32835833071238, 34.69593403576016], [-77.3281147999443, 34.6963788017618], [-77.3280578532106, 34.696462598743395], [-77.32801033273918, 34.69658205396533], [-77.32785245762655, 34.696784583947135], [-77.32768513486414, 34.696832186101304], [-77.32747851654199, 34.69682935236039], [-77.32696310020667, 34.696612672280786], [-77.32696028207582, 34.69660149788913], [-77.3269445183426, 34.69660687529078], [-77.32693256861789, 34.69660720815539], [-77.32635272213354, 34.696583236752275], [-77.32609692819099, 34.69647733394748], [-77.32576291572079, 34.69655275120089], [-77.3255157841488, 34.69662758347206], [-77.32539178538687, 34.696625584542936], [-77.32514264780235, 34.69662705038775], [-77.32507793003707, 34.69662739150689], [-77.32489361722503, 34.69661463889918], [-77.32467495990363, 34.69652030893319], [-77.32458837776576, 34.69647431837367], [-77.32453471106228, 34.69645816223247], [-77.32427056449089, 34.69630564277343], [-77.32406097208828, 34.69622918226361], [-77.32384597089703, 34.6960651915691], [-77.3237259018799, 34.69593635751358], [-77.32324372814364, 34.69566036292618], [-77.32312724835622, 34.69560859844691], [-77.3230499062415, 34.69558846604083], [-77.32289966437716, 34.69558419611613], [-77.32218908953104, 34.69554195042406], [-77.3218705057761, 34.69552678077007], [-77.32145129943625, 34.69541863553714], [-77.32135854846922, 34.69539253158619], [-77.32132143168636, 34.69535620606863], [-77.32116161908824, 34.69531955541987], [-77.32074576073049, 34.695277109302125], [-77.32037970940377, 34.69535715740254], [-77.31977476243793, 34.69536639463344], [-77.3194897121403, 34.69547902296075], [-77.3192571673401, 34.69543229170858], [-77.31864817855626, 34.69564409351754], [-77.318265022713, 34.69557305686878], [-77.31804355112885, 34.69557745362566], [-77.31796003035626, 34.69559250424114], [-77.31785842466236, 34.695582059185085], [-77.31766973967008, 34.69556139250093], [-77.31721553156135, 34.69551164135416], [-77.31716336463222, 34.69546618684221], [-77.31710635882423, 34.695440020528636], [-77.3169276518762, 34.69539492318509], [-77.31600068339824, 34.69512477564588], [-77.31544833451146, 34.695359699724406], [-77.31532323154264, 34.69539565041057], [-77.31472598788734, 34.69585267840649], [-77.31467360764545, 34.69594951023429], [-77.31462277123217, 34.69611049749605], [-77.3144844038545, 34.69622137312345], [-77.31429865510086, 34.69615489314745], [-77.3143171139458, 34.696078656035624], [-77.31398271037692, 34.695954488245924], [-77.31396545099373, 34.69594722898357], [-77.31391724472583, 34.69559801581492], [-77.31346692273561, 34.69560286953724], [-77.31331175519776, 34.695559026703926], [-77.31313603075822, 34.69541061653761], [-77.31260177252668, 34.695388620800216], [-77.31234792192348, 34.69533343875255], [-77.31223114883294, 34.69531830885649], [-77.31175843824391, 34.695301811354724], [-77.31172988614611, 34.69528831803756], [-77.3115840859291, 34.69502774964403], [-77.3112814322162, 34.69488349195129], [-77.31053323035793, 34.694477477679676], [-77.31036116683893, 34.69439187974211], [-77.31025229953455, 34.69430515138843], [-77.30980513611101, 34.69418462468292], [-77.30907625873807, 34.694231861802834], [-77.30859401395004, 34.69417447250195], [-77.30820452777401, 34.69404168307594], [-77.30797259751927, 34.69390976889492], [-77.3077642542493, 34.69388192303005], [-77.307366218829, 34.69354234056224], [-77.30695763072166, 34.693282811847205], [-77.30541568144467, 34.69420346171764], [-77.30498892859022, 34.69502017387123], [-77.30491232199516, 34.69542903318041], [-77.30423531137538, 34.69631447215217], [-77.30326746415614, 34.69773497927338], [-77.30280822454276, 34.698194177722065], [-77.3025132558623, 34.69849959948204], [-77.30295643566744, 34.69880384383987], [-77.30354957501768, 34.69885195830292], [-77.30514212328842, 34.699522838803226], [-77.30618147086494, 34.69918168047362], [-77.30742712355452, 34.69977636871882], [-77.3074588506988, 34.699791515675734], [-77.3081151943587, 34.7008472804056], [-77.30940261431947, 34.70134222770469], [-77.30942198677214, 34.7014187712345], [-77.30947895891168, 34.70144486414807], [-77.31002638351144, 34.702530251914084], [-77.31105090979463, 34.703908824591046], [-77.31200351391671, 34.70416254959312], [-77.3155736557636, 34.704509072786266], [-77.31563933662308, 34.704519531397644], [-77.31569317356097, 34.70451630546526], [-77.31575448769162, 34.704484303618635], [-77.31900578757563, 34.70234636145496], [-77.32033547464975, 34.70190726826165], [-77.32107063583317, 34.70162377025328], [-77.32127833220585, 34.70168165553327], [-77.32133236752027, 34.7017180721867], [-77.32139249182563, 34.7017624385901], [-77.3219235660375, 34.70283975920104], [-77.32288541459442, 34.70350729734886], [-77.32376476163967, 34.70457650788913], [-77.32528688985364, 34.70436849442074], [-77.32729941375696, 34.705011039150776], [-77.32786056742168, 34.70509151784837], [-77.32983888202763, 34.705186536585146], [-77.33138462763853, 34.705021930507115], [-77.33337263710082, 34.70487179064575], [-77.3348245066199, 34.704512518843075], [-77.33743267028619, 34.703364501918934], [-77.33758605885895, 34.703250466689454], [-77.33778673833984, 34.70325046572369], [-77.33897777783167, 34.703250455149494], [-77.33998084074899, 34.70325044734914], [-77.34018764612271, 34.70308449234792], [-77.34011152850759, 34.702800620655154], [-77.33991942449452, 34.7016098105552], [-77.34025453793491, 34.70112581336804], [-77.34036105812243, 34.70085392036917], [-77.34045651897841, 34.70040830987831], [-77.34043971267819, 34.70012565914133], [-77.34039762918675, 34.70005946266468], [-77.34041427492697, 34.6996978675822], [-77.34041643988697, 34.699650837030205], [-77.3404168736196, 34.699641416836386], [-77.34041752454299, 34.69962727772916], [-77.34043301742304, 34.69939551410513], [-77.34055176890617, 34.69922459178745], [-77.34062822052675, 34.69917572953516], [-77.34102816500729, 34.699180210060135], [-77.34115077787015, 34.699223396085934], [-77.34147485567405, 34.69928800660797], [-77.34182033602727, 34.699359063525364], [-77.34225664374955, 34.69953822030409], [-77.34341775519863, 34.69891836983886], [-77.3436045111521, 34.69901994257451], [-77.34450906849369, 34.69965538677156], [-77.34497203750385, 34.699835124530445], [-77.34483673105355, 34.699403281542814], [-77.34467576174175, 34.69945394264792], [-77.34389519385695, 34.69867679715066], [-77.34403953037604, 34.698439980881794], [-77.34406044807756, 34.698166743410226], [-77.34434908706504, 34.698006209412064], [-77.34494950947872, 34.697739831641854], [-77.34520158230868, 34.69764361568744], [-77.34539177873988, 34.69765396063361], [-77.34654809214885, 34.697129801766295], [-77.3473895240923, 34.696871770669524], [-77.34783496636464, 34.696821278999565], [-77.34806715326616, 34.69691766030982], [-77.34812886498703, 34.69712101466364], [-77.34837116138658, 34.69774199434168], [-77.34830661967531, 34.69807137516638], [-77.34745780823262, 34.698963223170054], [-77.34685337053646, 34.70022033746573], [-77.35023845079081, 34.70091341407341], [-77.35146967912502, 34.70048864883152], [-77.3522913877707, 34.69947387580212], [-77.35480946968498, 34.69834288409773], [-77.35640538491187, 34.696167922244], [-77.3584258102852, 34.696830038097666], [-77.35863725177296, 34.69672804139093], [-77.35880025157739, 34.69677418693541], [-77.3608594081985, 34.69732160035193], [-77.36162152312986, 34.697524186982456], [-77.36344518385684, 34.697942034828515], [-77.36474978058192, 34.698270228752506], [-77.36533220632862, 34.69841082943673], [-77.3663724787466, 34.698379420178085], [-77.36664845173225, 34.69838573685382], [-77.36686176500389, 34.69844740121955], [-77.36762760829629, 34.69875217648814], [-77.36798974755652, 34.69893024832626], [-77.36819924924939, 34.69923838341177], [-77.36909665297529, 34.69965518933638], [-77.3697314406477, 34.69975379099773], [-77.36978959668994, 34.69991028910151], [-77.3697610543314, 34.69999853280582], [-77.36971991021576, 34.70006934369867], [-77.36964024457228, 34.70081376818327], [-77.36960580740302, 34.700994654320766], [-77.3695651021822, 34.701208460580844], [-77.36946434210438, 34.70173768301366], [-77.36945850937352, 34.701989681633606], [-77.36934706927005, 34.70261646028384], [-77.36949362051028, 34.70295964068306], [-77.3697942574631, 34.70366365623674], [-77.37012775409117, 34.70359254805493], [-77.37008814256838, 34.70385271888049], [-77.3700873752686, 34.704223787602444], [-77.37017809380784, 34.70481513881034], [-77.37056518799983, 34.70513311329034], [-77.37219475637305, 34.705155507580926], [-77.3724377348966, 34.70645414230361], [-77.37205888199762, 34.70823833114198], [-77.37201180956566, 34.70845047500018], [-77.37201240213084, 34.708462180037984], [-77.37201594237685, 34.708484998953715], [-77.37082265009933, 34.71251990107143], [-77.37086893479858, 34.712518481508724], [-77.37086185367482, 34.712567571502575], [-77.37385563849568, 34.71600711927575], [-77.37368416423308, 34.71662564223599], [-77.37331253192193, 34.7180313543601], [-77.37225555963732, 34.71890719412957], [-77.37142940860312, 34.7186613864978], [-77.37112481232916, 34.71859552966829], [-77.37001514954216, 34.71848451754688], [-77.36916996741076, 34.7181942686584], [-77.36718464744807, 34.718873444200355], [-77.3666319407815, 34.71903052870038], [-77.36649743461929, 34.719150502019964], [-77.3653067838973, 34.72010621700636], [-77.36512735860009, 34.72025023791514], [-77.36470235755625, 34.720384171944254], [-77.36377981912982, 34.72026175117675], [-77.36199109912451, 34.720024360964906], [-77.36146707587153, 34.719978076066944], [-77.36018125966736, 34.720709255165936], [-77.35869637581638, 34.72127169236099], [-77.3567785674567, 34.720511587184674], [-77.35655384058104, 34.720401710248886], [-77.35650165321927, 34.72038673954385], [-77.35419469580589, 34.720277678296206], [-77.34986920683238, 34.72320067894698], [-77.35004342674642, 34.724755537557456], [-77.34799671883565, 34.725123635541195], [-77.34640050449136, 34.72757571130669], [-77.34662676772592, 34.72798347096168], [-77.3469806683185, 34.72862120182655], [-77.34784246154011, 34.73020182046101], [-77.34889112764463, 34.73029074353806], [-77.34934609301507, 34.73062199336924], [-77.34992466437676, 34.73085602330948], [-77.34999656773878, 34.73091002625138], [-77.35007681737629, 34.730970296766216], [-77.3502015401539, 34.73154073763205], [-77.35053959170502, 34.731881548640544], [-77.35027727974295, 34.73262199076846], [-77.35039664620956, 34.73287592788177], [-77.35034307425667, 34.733008644733346], [-77.35047849813466, 34.733072764945966], [-77.3506664928754, 34.7338136560891], [-77.35044661954744, 34.73404856421409], [-77.35035828514819, 34.73434333454172], [-77.35028535675207, 34.73454394804113], [-77.35026672143105, 34.734599590649566], [-77.35023145103465, 34.73467128232434], [-77.35013452684551, 34.73486142180809], [-77.35006482718362, 34.734986821254964], [-77.34986295645896, 34.735191751891165], [-77.34972500596515, 34.73532400177817], [-77.34958892199069, 34.7354236740712], [-77.34934611513957, 34.735626566802345], [-77.3490581465113, 34.73590053926738], [-77.34885877652819, 34.73572710844444], [-77.34856048181697, 34.735552034222366], [-77.34797736080844, 34.735690358362774], [-77.34792447394585, 34.73567973759819], [-77.34790297386034, 34.7356738937981], [-77.34739401806186, 34.73544411631754], [-77.34703865214195, 34.735550304953], [-77.34649300122825, 34.73536108569854], [-77.34564050588929, 34.735048932487956], [-77.34518082714025, 34.734816165353415], [-77.34417889727334, 34.73487777089874], [-77.34215944115343, 34.73595554393464], [-77.34286282376546, 34.73718519345413], [-77.34463426532169, 34.73669722505898], [-77.34486780527645, 34.737219924719845], [-77.34538230021144, 34.73746298343555], [-77.34554973529814, 34.737669076171215], [-77.34563912237364, 34.73820342260852], [-77.34583728486614, 34.73837531991727], [-77.34608657731948, 34.73864764963562], [-77.3464174168628, 34.73878311021593], [-77.34642222479714, 34.73878891529524], [-77.34654798772856, 34.73908114388907], [-77.34663319728102, 34.739093494551646], [-77.34677019049116, 34.73922208959179], [-77.34678359070794, 34.739294124213075], [-77.34684404629849, 34.739398503426], [-77.34692034023968, 34.739583132282334], [-77.3472410343404, 34.74009358534088], [-77.34725517323763, 34.74011398052973], [-77.34728516433994, 34.74012619308859], [-77.3472763723752, 34.74017552826829], [-77.34738174616494, 34.74060032067392], [-77.34752236289316, 34.740696854781376], [-77.34757546864759, 34.74100399065683], [-77.34757585521692, 34.74104989961955], [-77.34757571510951, 34.74106108719222], [-77.34757431971691, 34.74107779175343], [-77.34756167979363, 34.74130670224642], [-77.34752154825256, 34.7414858517985], [-77.34750944422714, 34.7415575582577], [-77.34749108724702, 34.74164233041253], [-77.34738522258162, 34.742061980101106], [-77.34736250404147, 34.74216669068953], [-77.34728609438423, 34.7423192697978], [-77.34730115546984, 34.74243147877835], [-77.34729542075529, 34.74244813329101], [-77.34723258976841, 34.74257029977933], [-77.34721309210809, 34.74267259813175], [-77.34705216794829, 34.743029396934226], [-77.34701528559714, 34.74308749143076], [-77.34685853432435, 34.743471505131104], [-77.34679510146347, 34.74357883869847], [-77.3467914694246, 34.74362407484059], [-77.34679577757981, 34.743687492341294], [-77.34678273265153, 34.74409415264728], [-77.3467481691517, 34.74444574026862], [-77.34679486075183, 34.74457986694422], [-77.34672684541286, 34.74479493809874], [-77.34648310715016, 34.74476358035392], [-77.34628202445968, 34.74480422822242], [-77.34581851894407, 34.7449893773367], [-77.34554973634701, 34.74497320620006], [-77.34552625328756, 34.744964516110876], [-77.3453362877037, 34.74477996044685], [-77.34531779084381, 34.74475740071286], [-77.34529503621316, 34.74472956259841], [-77.34491085504864, 34.74435094220068], [-77.34494519196039, 34.74425558416149], [-77.34487313132583, 34.74412019151129], [-77.34448475717888, 34.74382131343306], [-77.34335758919232, 34.7435892426043], [-77.34371043588139, 34.74284009030234], [-77.34394909745475, 34.74233385565749], [-77.34441834623355, 34.741494232437724], [-77.34442053930326, 34.74071730337265], [-77.34366695332074, 34.74002615945754], [-77.3435207874869, 34.73983256399781], [-77.34314847300489, 34.73971891535672], [-77.34149658440451, 34.73925045587108], [-77.3395411895883, 34.739739598560575], [-77.33898220441714, 34.73965845423883], [-77.33814060124003, 34.74040570701348], [-77.33819287878356, 34.740776409937446], [-77.33834724127836, 34.741843071365174], [-77.33839759503866, 34.74219562005735], [-77.33843725481942, 34.74231453323401], [-77.33952822669019, 34.74290282177094], [-77.34031951596668, 34.743300556591876], [-77.34075793431478, 34.74353388020096], [-77.34142203972854, 34.74385471044765], [-77.34201715486316, 34.74414221670765], [-77.34241496862612, 34.74433439795746], [-77.34260121544482, 34.74526976437371], [-77.34332996355803, 34.74530811775199], [-77.34344499741232, 34.74552676390407], [-77.34387272374464, 34.745868676017], [-77.34392710406797, 34.745948013801254], [-77.3442184593753, 34.74637308668187], [-77.34422620927951, 34.74638519507885], [-77.34423362076086, 34.74639334727211], [-77.34471153020317, 34.74673758645234], [-77.34478253672864, 34.746745729012545], [-77.34513325116772, 34.74675732150281], [-77.34529476069865, 34.746791832299046], [-77.3453510778967, 34.74676751488102], [-77.34569348832466, 34.7468335540434], [-77.3458751115921, 34.746855987358245], [-77.34601895059913, 34.74687951246432], [-77.34612520165857, 34.746895738457916], [-77.34616040654339, 34.746904860645536], [-77.34622939595384, 34.746907370632236], [-77.34645195378181, 34.7469322166589], [-77.34657602104281, 34.746943227305415], [-77.34698078267812, 34.74699125235793], [-77.34702721432419, 34.74701389051459], [-77.34705373501232, 34.74699939630245], [-77.34744488930531, 34.74706340552641], [-77.34759639763608, 34.74711648036745], [-77.34765165233921, 34.74714290379329], [-77.34773829638138, 34.74723194899376], [-77.34785505605134, 34.747358686792765], [-77.3477118156857, 34.7476464994862], [-77.34778493854424, 34.74785568435317], [-77.34779009682163, 34.74829002819657], [-77.34779408650296, 34.74837160542313], [-77.34780885029734, 34.748446827472804], [-77.34784741468778, 34.748821871766395], [-77.34796607195042, 34.74902771659265], [-77.34820541899835, 34.749143537960556], [-77.34829527649457, 34.74924780589832], [-77.34848447327116, 34.74941742647314], [-77.3486732482178, 34.74959501168555], [-77.34870919910998, 34.74963879378844], [-77.34870941222677, 34.74967836620748], [-77.34871920041938, 34.74975137761252], [-77.34866933100153, 34.74980571022797], [-77.34860463418276, 34.74983116277929], [-77.34850798442406, 34.74982784689057], [-77.34848733998264, 34.7498094119453], [-77.34843284832141, 34.74981684274543], [-77.34831723441661, 34.74978950086858], [-77.34813086707521, 34.749757741500055], [-77.34814714776223, 34.749676841392926], [-77.34806961917836, 34.749610914807036], [-77.3479704405269, 34.74972634378227], [-77.34746708365202, 34.749623050263], [-77.34726659684341, 34.74956563129758], [-77.34690191205864, 34.749506595323574], [-77.3468401669359, 34.74949937880572], [-77.34655605071275, 34.74948641041471], [-77.34640967247816, 34.749436249153185], [-77.34623417626166, 34.749464756285086], [-77.3459992847204, 34.7497518373624], [-77.34564002184598, 34.750099447774204], [-77.34561670058159, 34.75019430414745], [-77.345520187088, 34.75060326335473], [-77.34535570973327, 34.75070476746523], [-77.34493960783107, 34.75068290141506], [-77.34480290951507, 34.750671832465905], [-77.34476785722245, 34.75066633281814], [-77.34468135223842, 34.750642248606354], [-77.34416785278727, 34.75066971113737], [-77.3439910425634, 34.750507777206984], [-77.3437776485531, 34.750354902408766], [-77.34372683666255, 34.75012601525536], [-77.34360020500185, 34.7500199690174], [-77.34329166778701, 34.75004937177292], [-77.34316527751531, 34.749997115569165], [-77.34308994015932, 34.74996184919331], [-77.34297671846065, 34.749711056966476], [-77.3426248951667, 34.74979535242545], [-77.34218340281289, 34.74959880422962], [-77.3421270937792, 34.74957603473168], [-77.34210235294569, 34.74953221297482], [-77.34190853761613, 34.749462267467514], [-77.3415697068979, 34.749303845781206], [-77.34149411724033, 34.74927441904541], [-77.3414597543997, 34.74906464762154], [-77.34180264213423, 34.74867627111021], [-77.34145488133844, 34.74778368696827], [-77.34159831324692, 34.74772954361765], [-77.34146797277174, 34.74771786087006], [-77.34144325810969, 34.74767790143552], [-77.34138447012403, 34.747721300826505], [-77.33906065206017, 34.74763169837807], [-77.33840700351817, 34.74763645907498], [-77.33792561642097, 34.74823316944297], [-77.33781403082507, 34.7483877356276], [-77.33802790592304, 34.748706518374895], [-77.33802414824972, 34.74878922839927], [-77.33813107301191, 34.74876893169865], [-77.3385363820047, 34.7491241728774], [-77.33857798892672, 34.749151697831735], [-77.3386057000709, 34.74919687160185], [-77.33904644741914, 34.749541607809924], [-77.33894141623891, 34.74966057387092], [-77.33907745687327, 34.74963470082865], [-77.33918284931801, 34.750010278023865], [-77.33925868525728, 34.75020494459121], [-77.3392578175732, 34.75030534572103], [-77.33926885354404, 34.75048585927747], [-77.33926570423313, 34.750593705983285], [-77.33925694499952, 34.75062374089593], [-77.33906771654631, 34.750757125955694], [-77.33905684888342, 34.75076561955417], [-77.33904237483682, 34.75076542048048], [-77.33903071518598, 34.75076219949721], [-77.33884008470329, 34.75072387887954], [-77.33877312392391, 34.750681680485755], [-77.33869757345845, 34.75063637428924], [-77.33859597833818, 34.75057812165546], [-77.33844428044041, 34.750436969700736], [-77.33828760318036, 34.750291183428494], [-77.33820866398453, 34.750223973915915], [-77.33811107289222, 34.750157234207606], [-77.33770403046002, 34.749823665249956], [-77.337273914566, 34.74965693569874], [-77.33706435452238, 34.749527186822945], [-77.33673296272418, 34.74945715932091], [-77.3366848014069, 34.749424861602186], [-77.33659636847892, 34.749390162199795], [-77.33638053015153, 34.74926465369768], [-77.33620692796768, 34.74920607371794], [-77.33580039173907, 34.74915689356088], [-77.33563132820596, 34.7491254899919], [-77.33552297213258, 34.74913569198252], [-77.33529602638498, 34.74908105833904], [-77.3350801651722, 34.74896085135904], [-77.33485000372147, 34.748864807474334], [-77.33433423371781, 34.74872553246609], [-77.33407150465075, 34.7486750581693], [-77.33397383126581, 34.74864537239702], [-77.33303569011379, 34.74792879042175], [-77.33302358584926, 34.74790416669819], [-77.33299957327611, 34.7478756488108], [-77.33250761426666, 34.747512581739834], [-77.33250615398747, 34.74751244197499], [-77.33249775291254, 34.74750704188668], [-77.33200483932475, 34.747176401254], [-77.33195309831234, 34.747150630304176], [-77.33191382923853, 34.747107819009706], [-77.33151080516124, 34.746702403770385], [-77.33149786620717, 34.74667746179508], [-77.33131597650235, 34.746459756144745], [-77.33113240911891, 34.74624018098551], [-77.33112616407723, 34.74620985600578], [-77.33109283581832, 34.7461926769718], [-77.33097997165099, 34.746161983229776], [-77.33054314351031, 34.74602305345091], [-77.33038086102624, 34.74599458406336], [-77.33000811878858, 34.745802990587606], [-77.3295806940155, 34.745821489371], [-77.32917376017832, 34.74583805494287], [-77.32875399173528, 34.74599590877533], [-77.32830245449642, 34.74634267669603], [-77.32772371123079, 34.74646082516105], [-77.32744968520308, 34.74636134111063], [-77.32719305989104, 34.7466362889118], [-77.32673066417621, 34.746773965185], [-77.32664848786959, 34.74679206853003], [-77.32626816402258, 34.746791522478645], [-77.32614210914707, 34.7467379619134], [-77.3257382578474, 34.74649199127646], [-77.32574273836403, 34.74640720270962], [-77.32553423118021, 34.74603257753171], [-77.32560357874905, 34.74572595191988], [-77.3253924564519, 34.74519622013206], [-77.32453715205867, 34.74555918907998], [-77.32406306526664, 34.74623413207526], [-77.32396987617221, 34.74633328164359], [-77.32383627810874, 34.74642756675582], [-77.32320940441699, 34.746936137275576], [-77.32254931078721, 34.74673322833214], [-77.32210310930292, 34.746840304907195], [-77.32168244897649, 34.746859617320624], [-77.32130896157184, 34.74687858557675], [-77.32110767810507, 34.74681724932312], [-77.32087655239931, 34.74678374919162], [-77.32074973499003, 34.74674173728508], [-77.32066470635105, 34.746699646243954], [-77.32053465984364, 34.74646950413299], [-77.32022079254804, 34.74650078847924], [-77.32005796000178, 34.74644181985893], [-77.31994638636712, 34.746414469240335], [-77.31985162653514, 34.7463236459438], [-77.31981199276396, 34.74623678632448], [-77.31972254741851, 34.74615432674542], [-77.31951983572742, 34.745881724786976], [-77.3195517098209, 34.745648666303154], [-77.3193307531914, 34.74544195735986], [-77.31900629895001, 34.74497733086776], [-77.31907303415457, 34.74444023260559], [-77.31856816098517, 34.74394511006095], [-77.31582906116981, 34.74535722859809], [-77.3157028106446, 34.74538993999184], [-77.31563373437946, 34.745507350143725], [-77.31426706499634, 34.747575714200664], [-77.31516295382369, 34.74902175371267], [-77.31549288798848, 34.749357336191885], [-77.31651047928383, 34.74956244593382], [-77.3169499412191, 34.749507204278025], [-77.31742018080695, 34.74946632013529], [-77.31814798587261, 34.74950746712145], [-77.31859980045095, 34.7495330075714], [-77.31873735281235, 34.74954078331708], [-77.31897368527359, 34.7496397347248], [-77.31900415596262, 34.74965327190907], [-77.3191517762377, 34.74983103303707], [-77.31917598022555, 34.7498783419194], [-77.31920632786995, 34.74998791705879], [-77.31932223568168, 34.750295050567075], [-77.31896145023873, 34.750829621052084], [-77.31895958374922, 34.750830851106166], [-77.31895546600343, 34.750832642322656], [-77.31895556795286, 34.750835922314415], [-77.3179899535811, 34.751939584988506], [-77.31799357502302, 34.75236344241214], [-77.31797492244115, 34.752512004955285], [-77.31771393541365, 34.75295210517385], [-77.3174300482336, 34.75330601869562], [-77.31685671930532, 34.753945498527834], [-77.3167312585821, 34.75396361171524], [-77.31551983805184, 34.754422116465065], [-77.31459071766257, 34.7546202444029], [-77.31528349369911, 34.75523433408888], [-77.31604881258342, 34.755912696262676], [-77.31629219658512, 34.755885600177635], [-77.31681263981548, 34.75531273556303], [-77.31708038278964, 34.75498830337217], [-77.31730341076845, 34.75447075007435], [-77.31791275740277, 34.753899603432515], [-77.31800055591731, 34.75381169917319], [-77.31811819968692, 34.75372795403737], [-77.31854281108666, 34.75332596339283], [-77.3187061674424, 34.75316015608715], [-77.31876694544057, 34.75295132790946], [-77.31875933232817, 34.75280895038276], [-77.31883209784462, 34.75250716611072], [-77.3189030610528, 34.75205771187352], [-77.31901364417041, 34.75179939817187], [-77.31945597953154, 34.751270839267654], [-77.3201622492468, 34.75082045601054], [-77.32028966003944, 34.75073283507095], [-77.3204355780046, 34.75062993425665], [-77.32031816476248, 34.7505768308569], [-77.32023941265116, 34.750555214986406], [-77.31983193137205, 34.75016236402018], [-77.31977672522139, 34.750086443214364], [-77.31963595129747, 34.749764723573705], [-77.31953966219677, 34.74959881889973], [-77.31937148162035, 34.74942023504785], [-77.31932776548325, 34.749367593080926], [-77.31925407371119, 34.74932966059611], [-77.3191244148581, 34.74912979671339], [-77.3183552807821, 34.74901823246253], [-77.31829137495947, 34.74901461995523], [-77.31808214225379, 34.749002790832776], [-77.31753069797762, 34.7487783496729], [-77.3173217275926, 34.748229366417036], [-77.31683634127089, 34.74773567051464], [-77.31654408537946, 34.74726394505752], [-77.31701420161373, 34.746552455114475], [-77.31796021626576, 34.745120591639086], [-77.31827311919143, 34.74495927731999], [-77.31832787897515, 34.74501297952702], [-77.318320640711, 34.745071234523444], [-77.31847711255837, 34.74529530607589], [-77.31853015086585, 34.74643384711384], [-77.31911307840923, 34.74619019636862], [-77.31936879580064, 34.74657743537146], [-77.3195700122261, 34.746678660097004], [-77.319649584011, 34.74675570696735], [-77.31979288182791, 34.74681905419406], [-77.31995104348495, 34.746918088380944], [-77.32005883866007, 34.74705750665838], [-77.32053874473782, 34.74725455053111], [-77.32093957245229, 34.7474780778203], [-77.32110643000088, 34.747574822097434], [-77.32115157884083, 34.74757169481663], [-77.32227714053985, 34.74738673420791], [-77.32236537979028, 34.74736555911761], [-77.32253610492175, 34.74741803903028], [-77.32321916628148, 34.74755883543031], [-77.32347094052746, 34.74768361355685], [-77.32352997789813, 34.74771402835912], [-77.32361890932467, 34.747757074837935], [-77.32373609253034, 34.747801767249825], [-77.32396929981164, 34.74777043735659], [-77.32404903484189, 34.7477556158846], [-77.32411081102941, 34.74773509039207], [-77.32420739764362, 34.7476764555813], [-77.32453032878419, 34.747468474191045], [-77.32477851641931, 34.7473071207656], [-77.32497223829252, 34.7472217046614], [-77.32545168852351, 34.747052204910176], [-77.32574201253263, 34.74719598120075], [-77.32599593986448, 34.7472405497419], [-77.32643440269719, 34.74724075523812], [-77.32659234089911, 34.74724958915267], [-77.32676571076946, 34.747197273292294], [-77.3272517180381, 34.747042075153274], [-77.32755708988078, 34.746958920532904], [-77.32827219104985, 34.74682741959886], [-77.32850730548267, 34.74684421877675], [-77.32880357976643, 34.74678680389049], [-77.3296563824672, 34.746551550011674], [-77.32979758395005, 34.746527024405594], [-77.3299786764697, 34.74655140896626], [-77.33036638217423, 34.746630951839265], [-77.33053897475344, 34.74666128285505], [-77.33065428026366, 34.74667088313836], [-77.33081796263455, 34.74677064659763], [-77.33085503082249, 34.746812430637576], [-77.33089935938524, 34.746858074469024], [-77.33101595850343, 34.747082838566065], [-77.33114547863963, 34.747213127151724], [-77.33144585437962, 34.747540597932364], [-77.3316327933289, 34.74763370771239], [-77.33182388324911, 34.747798758358634], [-77.33194747345524, 34.74794321845172], [-77.33209529978353, 34.74805768509104], [-77.33239659971102, 34.74838619715469], [-77.33275793573338, 34.748706733620836], [-77.33303060918212, 34.7489042265435], [-77.33299944880494, 34.74949926192117], [-77.33377928411446, 34.749314519660004], [-77.33413742465198, 34.749412656839716], [-77.33434669931749, 34.749423266170275], [-77.3346639899253, 34.74942664844902], [-77.33493155218721, 34.74947203286784], [-77.3350487943269, 34.74950025708146], [-77.33553570451238, 34.74945441329081], [-77.33578709651513, 34.749501109381654], [-77.33601735589218, 34.749543880202445], [-77.33610404318107, 34.74955998226268], [-77.33637216245847, 34.74966353614566], [-77.33637362583845, 34.74966411034817], [-77.33662399211019, 34.74983200981357], [-77.33665842918695, 34.749839286826685], [-77.33713511004869, 34.75013442326994], [-77.33724463384483, 34.75017687892812], [-77.33734828226373, 34.750261818217794], [-77.33777759251556, 34.750555411006815], [-77.33791407989318, 34.750671617538046], [-77.33814279303883, 34.750789348196164], [-77.33834606076509, 34.75090664329643], [-77.3386363561738, 34.7510599590915], [-77.33866028442617, 34.75106986967116], [-77.33914201657363, 34.75108296435685], [-77.33924193346502, 34.751129680222014], [-77.33939362700616, 34.75106401097852], [-77.33952842525669, 34.75093764025968], [-77.33973893685211, 34.75073162667044], [-77.33978396635925, 34.750589377664994], [-77.33978907136317, 34.75041452557373], [-77.33979695004422, 34.75014469392], [-77.33987567037735, 34.74991527646469], [-77.33983049143643, 34.74976528478861], [-77.33978483332552, 34.7494956260405], [-77.34013162030807, 34.74953374502033], [-77.34029509877426, 34.74956728458111], [-77.34055695708825, 34.74954141162653], [-77.3409770887992, 34.7492818228591], [-77.34103385047237, 34.74962833021361], [-77.34127723258113, 34.749723077844976], [-77.34138487367576, 34.74975258561268], [-77.34143798447049, 34.74975705738983], [-77.3415768943511, 34.7498067543832], [-77.34175537625767, 34.749861861429004], [-77.34197471532283, 34.749971378976326], [-77.34222124753877, 34.75008098938242], [-77.34239005726403, 34.750162168310744], [-77.34250526360074, 34.75020698058417], [-77.34298946990779, 34.750463005036764], [-77.34300421831546, 34.75047825431481], [-77.3430199757573, 34.75049708004008], [-77.3433548238194, 34.750900271666325], [-77.34340501380467, 34.750958406964926], [-77.34346585843588, 34.75102402451951], [-77.34364242369458, 34.75117002438914], [-77.34383783243908, 34.751171549838446], [-77.34402567899949, 34.75115893101096], [-77.34418957804243, 34.75114346148769], [-77.34464531558942, 34.75108800962543], [-77.3452034312544, 34.75110476843538], [-77.34523892829945, 34.75110663379616], [-77.34535923309278, 34.75103238995235], [-77.34531412784091, 34.7511189062737], [-77.345808902449, 34.75120660071001], [-77.34600080657171, 34.75117287561323], [-77.34605634461724, 34.75101709366502], [-77.34613034545227, 34.750649345923605], [-77.3461682889693, 34.75051435969223], [-77.34623106294865, 34.75036196531302], [-77.34628447488778, 34.75014760313779], [-77.34637333528384, 34.74999885393232], [-77.34647678857704, 34.74993889941414], [-77.34663273170268, 34.74996326948872], [-77.34672818421065, 34.74997967878713], [-77.3467620218243, 34.74998802101304], [-77.34685364791125, 34.75001354881749], [-77.34710758903711, 34.75008209729992], [-77.3473185857082, 34.750134110669364], [-77.34750691812782, 34.750169192254894], [-77.34789878297184, 34.750198868413285], [-77.34796254829388, 34.75021299193179], [-77.34849776364499, 34.75019348453614], [-77.34849937729085, 34.750193425719644], [-77.34850161967123, 34.75019262040277], [-77.34901598030197, 34.75001428320489], [-77.34916000226457, 34.74968629801412], [-77.34918600070985, 34.74961297697305], [-77.34918981324213, 34.749530008111854], [-77.34921773864569, 34.749247703553706], [-77.34912272199442, 34.74913427923123], [-77.34944039343877, 34.748682276550895], [-77.34939718039338, 34.7486092418438], [-77.34944884649624, 34.748482945221056], [-77.34938060513133, 34.74812413675857], [-77.34926283359272, 34.74803044523107], [-77.34916992303943, 34.74788555568145], [-77.3489914167437, 34.74769015644469], [-77.3488132798721, 34.74758779611698], [-77.34868256294305, 34.74750132990581], [-77.34840464444693, 34.74711368026497], [-77.34821935673187, 34.74703398866046], [-77.34812393792521, 34.74693537148278], [-77.34795989504354, 34.74685692431164], [-77.34783243985342, 34.7467653603507], [-77.34770695815112, 34.74673596715332], [-77.34741429317069, 34.746680542189004], [-77.34714017618445, 34.74662512206649], [-77.34700978110871, 34.74660965066354], [-77.34655734925977, 34.74656949851443], [-77.34655042982772, 34.74656872603928], [-77.34653173337499, 34.74656547814822], [-77.34611835563342, 34.746506821665974], [-77.34598790113469, 34.74646783088929], [-77.34555649865412, 34.746311215189486], [-77.34544288357819, 34.74628209160756], [-77.34538780532516, 34.74628027105488], [-77.34520815206037, 34.746259669602914], [-77.34494838488943, 34.74622401402274], [-77.34486679976916, 34.74620326506443], [-77.34475107775174, 34.74607867964902], [-77.34470942388846, 34.74601360082639], [-77.34460769388453, 34.745854658913714], [-77.34454035098871, 34.74574944344786], [-77.34444361054038, 34.74559829632867], [-77.34436792017738, 34.745487868414266], [-77.34427428037723, 34.74541301545456], [-77.3440399051793, 34.74496753585649], [-77.34457979023642, 34.745129667044], [-77.34468853132815, 34.74524131436942], [-77.34513225386111, 34.74528975616094], [-77.34513484226696, 34.745292270853774], [-77.34514351574313, 34.74529378174164], [-77.34540968776864, 34.74547508620187], [-77.345691534367, 34.74542638702696], [-77.34594855361804, 34.74538197693933], [-77.34632335365187, 34.7453133787506], [-77.3467535086645, 34.74523000006241], [-77.34695452754758, 34.74520258189285], [-77.34721841259748, 34.745230443252886], [-77.34724767341048, 34.745224415131595], [-77.3475034521809, 34.74497003183297], [-77.34751086627844, 34.744851259820415], [-77.34748870297712, 34.74466459602179], [-77.34748186669296, 34.744485614243075], [-77.3474930844038, 34.744197224929025], [-77.34749557468189, 34.74399635487586], [-77.34751632333078, 34.743854981841466], [-77.34763737573296, 34.74304850057326], [-77.34764478624886, 34.7430011259479], [-77.3476525772944, 34.74296182178898], [-77.34770505491731, 34.74261947693466], [-77.34772243575635, 34.742513908955], [-77.34772495202022, 34.74250274842429], [-77.34772572876778, 34.742488498550216], [-77.34775186716993, 34.7420970871876], [-77.34777096687019, 34.742009055965596], [-77.34779545309232, 34.74191199208266], [-77.34788331168109, 34.741506262935324], [-77.34790602910971, 34.741371680735305], [-77.3479307146229, 34.74117116379132], [-77.34794413219521, 34.741010538991574], [-77.34794714669593, 34.74076983119565], [-77.3479472341355, 34.74076642424353], [-77.34794851898369, 34.74076328414363], [-77.34799516227238, 34.74051615830083], [-77.34845053662428, 34.74005358987751], [-77.34854065640832, 34.74001911684298], [-77.34867602529727, 34.73993535877212], [-77.34857612373781, 34.739886397344065], [-77.3485094502431, 34.73985080702461], [-77.34791309128161, 34.73960796603636], [-77.34756955345223, 34.73911241685834], [-77.34755021561607, 34.73909869304767], [-77.34753415239754, 34.739084710605354], [-77.34708654522875, 34.738666938123274], [-77.34706246518522, 34.738646744261985], [-77.34674604067698, 34.73825064572872], [-77.34670487975883, 34.738172113981065], [-77.34663388880878, 34.73806041232932], [-77.34625378304334, 34.73773068717652], [-77.3461904538338, 34.73735211189246], [-77.34603842063544, 34.73710796822731], [-77.34581637415316, 34.73675138657667], [-77.34560614786055, 34.73665207105534], [-77.34522924430652, 34.73580850079744], [-77.34624498380595, 34.73616073601961], [-77.34727526189731, 34.735852873564205], [-77.34752416888836, 34.73596524721526], [-77.34781830057474, 34.73604519325886], [-77.3481402228272, 34.73610984183683], [-77.34831714944056, 34.73614370458606], [-77.34838494440164, 34.73615626449769], [-77.3485468982366, 34.736194989313454], [-77.34894361782932, 34.73629477320184], [-77.34907916082835, 34.73634597782289], [-77.34941658875454, 34.73632727950509], [-77.34964025862587, 34.735914401604596], [-77.34963927662626, 34.7359041446634], [-77.34964898101423, 34.735894911938594], [-77.34966180238015, 34.73588419822959], [-77.34997470857098, 34.73554524207884], [-77.35008455147931, 34.73545976678163], [-77.35020563217827, 34.73533904476928], [-77.35030861402996, 34.735202819618195], [-77.350542800405, 34.734825989190114], [-77.35055519293948, 34.734803693286125], [-77.35056245007262, 34.734789456720826], [-77.35060787108446, 34.7346891042995], [-77.35078433572117, 34.734347786652876], [-77.35109230535511, 34.73400911207531], [-77.35136497432387, 34.73371779817749], [-77.35132173992862, 34.73354741053588], [-77.35155104429202, 34.732717498370306], [-77.35198143983385, 34.73202213023758], [-77.35217075899628, 34.73174663011636], [-77.3522159046131, 34.73165148490876], [-77.3522472046049, 34.73154393807271], [-77.35231609372545, 34.731150352388184], [-77.3522807715569, 34.731123917494635], [-77.3522519588455, 34.73109077563854], [-77.35211061796802, 34.73093486359718], [-77.35204266263108, 34.730912883315625], [-77.35190598203987, 34.73087377716263], [-77.35170558555356, 34.7309100395445], [-77.35155703082323, 34.730767151939496], [-77.35130829864625, 34.73068939246522], [-77.35119017877899, 34.73062269947629], [-77.35088459020474, 34.730372059368975], [-77.35079328326009, 34.730297170715055], [-77.350375542525, 34.729954539599], [-77.35029726512585, 34.72989033692711], [-77.3502346569766, 34.72978884688178], [-77.34939475433653, 34.72911437650945], [-77.35061499099768, 34.72847947859218], [-77.35099303295722, 34.72856673355088], [-77.35162889595993, 34.72871349297841], [-77.3517376168944, 34.72873797120005], [-77.35178137843396, 34.72874868612036], [-77.3518885504921, 34.728772124996546], [-77.35230040561986, 34.728862139148234], [-77.35259350013791, 34.72867536697434], [-77.3528241697901, 34.72849606110084], [-77.35303778632486, 34.72817636120389], [-77.35306145598732, 34.728123753228886], [-77.35323980509548, 34.72762674716306], [-77.35324541286458, 34.7276111203097], [-77.35325007151388, 34.72759693141087], [-77.35331808534892, 34.72711376225336], [-77.35337914180612, 34.726731148142946], [-77.35339818529576, 34.72661538456532], [-77.35342455382316, 34.72647503622409], [-77.35367733160206, 34.72618310673617], [-77.35377581036364, 34.7260761657287], [-77.35387154849424, 34.72595812994436], [-77.35385828079347, 34.725582852934714], [-77.35385495158339, 34.725577919222445], [-77.353854397636, 34.725577120083386], [-77.35385391379653, 34.7255750835081], [-77.35354549285529, 34.725026358292034], [-77.35312151972934, 34.724930029176946], [-77.35286441159774, 34.72485837344006], [-77.3527449825915, 34.724853799400634], [-77.35250486386934, 34.72478847350681], [-77.35318282166624, 34.723762004274626], [-77.35424292724241, 34.723370699621526], [-77.35459541458083, 34.72343020201725], [-77.35471633524557, 34.72351013721696], [-77.35544798260453, 34.72356268917528], [-77.35564044977757, 34.723547219159805], [-77.35611033968148, 34.72384151558737], [-77.35618082035477, 34.72428384831462], [-77.35627148608941, 34.72450595822069], [-77.35617695329711, 34.7247717645662], [-77.35616078217424, 34.724985344300926], [-77.35615818659439, 34.72501803354829], [-77.35615294284713, 34.725063077875774], [-77.35612935603791, 34.72526568351161], [-77.35614051271688, 34.7253951503623], [-77.35608934726555, 34.725758560637644], [-77.35608931895027, 34.725828750169455], [-77.35606422397953, 34.72600570206052], [-77.35610284405102, 34.72607913336289], [-77.35616189861057, 34.726167123569056], [-77.35635761119005, 34.72620175911135], [-77.35637042088828, 34.72618876822592], [-77.35662379145383, 34.72611848396841], [-77.35682225693937, 34.72566386492835], [-77.35682484254613, 34.72565839269984], [-77.35682527619875, 34.72565752204923], [-77.3568560608013, 34.72563306212419], [-77.35720358518297, 34.72535573885006], [-77.35721804716972, 34.72535455978227], [-77.35752253441905, 34.72531446647459], [-77.35779952290909, 34.72524552014257], [-77.35816227187756, 34.72517354306147], [-77.35865060494622, 34.72491950880982], [-77.35867793419226, 34.72474735697488], [-77.3589681926057, 34.72446025408889], [-77.35926277139295, 34.72456979582793], [-77.35954972864941, 34.724519751379404], [-77.35963314680194, 34.724784588200855], [-77.35970633881374, 34.72501695765568], [-77.35970672318295, 34.725018177926515], [-77.35997140423072, 34.72512984981165], [-77.36001226771806, 34.7251757953763], [-77.36018678986929, 34.72519594612294], [-77.36024951801515, 34.725203188879064], [-77.36031443972647, 34.72517841636656], [-77.36050033857336, 34.72508554083015], [-77.36053533051258, 34.72497045070844], [-77.36052891899335, 34.724905268916515], [-77.36047686696267, 34.72481832026886], [-77.36034990057033, 34.724686159719674], [-77.36033598385387, 34.7245324918538], [-77.36024670456987, 34.72418163313394], [-77.35979945426598, 34.724156861400196], [-77.35955964305694, 34.723819908465615], [-77.35995441424497, 34.72332546813496], [-77.36067263380045, 34.72271456145623], [-77.36181488604325, 34.72260608987176], [-77.3619193376215, 34.72254538776493], [-77.36195881684856, 34.72254852403528], [-77.36312729957842, 34.72250962777293], [-77.36414328373644, 34.72239135393286], [-77.36382455706836, 34.72323416097577], [-77.36396492063179, 34.7233170868567], [-77.36399477794367, 34.723646803106675], [-77.36401543156092, 34.72369533222489], [-77.36400468418351, 34.72372283641251], [-77.36411829699132, 34.72398754455622], [-77.36421281264184, 34.72415560816776], [-77.36427251157438, 34.72459827559459], [-77.36428185235287, 34.72463351387495], [-77.36428518804327, 34.724647604058646], [-77.36429281267559, 34.724682912559764], [-77.36444487923386, 34.72485481454326], [-77.36450528725426, 34.72487248053662], [-77.36461484147486, 34.72490154017613], [-77.36481234460476, 34.72495599948677], [-77.3648947088482, 34.724967064482506], [-77.3653807565838, 34.724941877455194], [-77.3654261469785, 34.7249043269289], [-77.36574336315886, 34.724624935163945], [-77.36617608000022, 34.724383651405994], [-77.36662173531562, 34.7244265853035], [-77.36677686587709, 34.72437679894666], [-77.36689764128242, 34.72437114422494], [-77.36738424516655, 34.724347225824786], [-77.3678518243178, 34.724268485477545], [-77.36798138757666, 34.724352918700724], [-77.36842859373219, 34.724451015635175], [-77.36854676419675, 34.724468060274475], [-77.36859912516557, 34.7244819067447], [-77.36910158813899, 34.72440902308557], [-77.36916335948874, 34.72440672176433], [-77.36920075431365, 34.72441317159791], [-77.36941066251333, 34.72436373446148], [-77.36953328335916, 34.72416370299561], [-77.36953818825641, 34.72415762990712], [-77.36954006856082, 34.724152044790245], [-77.36951872237601, 34.723914050587354], [-77.36951775069222, 34.72377496004668], [-77.36943558763741, 34.72346870425529], [-77.36942651514474, 34.72345091580468], [-77.3694274976314, 34.72343919405615], [-77.36935372980096, 34.72335610067087], [-77.36923227713176, 34.723206139461105], [-77.36906646890847, 34.72300140942897], [-77.36899695347964, 34.722916873745945], [-77.36865613394048, 34.72286101102276], [-77.36807963422149, 34.722865610817706], [-77.36781572859606, 34.72286056806878], [-77.36762055755345, 34.72286944744414], [-77.3672687713943, 34.72276101426583], [-77.36688933888149, 34.72264365738668], [-77.36674202823596, 34.72243379468288], [-77.36621178899573, 34.72248726334369], [-77.36596836624952, 34.722563888688114], [-77.36548575591148, 34.72263604113158], [-77.36493494931631, 34.722106854023295], [-77.3658298651311, 34.72145051078667], [-77.36607561330469, 34.721090308711524], [-77.36617234498082, 34.72096208760884], [-77.36641004160191, 34.72064701137776], [-77.36665275738099, 34.720325283673134], [-77.36724525814901, 34.720004256531055], [-77.36748280087893, 34.71988148865317], [-77.3676042782752, 34.71989192225277], [-77.36860846026629, 34.71974365872018], [-77.36872533306432, 34.71972640278363], [-77.36934936439081, 34.719550794334836], [-77.36992557039937, 34.71939571492319], [-77.37006677046742, 34.71940984076329], [-77.37018659472912, 34.7194357479941], [-77.37091291857931, 34.71954714179964], [-77.371151205843, 34.71962011877993], [-77.37160566051683, 34.71960774244407], [-77.3718154910956, 34.71964101319248], [-77.37190510030257, 34.719686976161135], [-77.37217518439776, 34.719758441607475], [-77.37229295956368, 34.719812266609665], [-77.37254660898844, 34.71986683908221], [-77.37289653371208, 34.7200381099573], [-77.37298589610675, 34.72031727611602], [-77.37305529972792, 34.72089182975363], [-77.37288465106354, 34.72101453121055], [-77.37227439985867, 34.721476346683914], [-77.37176672851149, 34.72162577393849], [-77.37121912373769, 34.721817832773276], [-77.37123083308292, 34.72221660411351], [-77.37122759572006, 34.72245906704953], [-77.37110292321931, 34.72299114863115], [-77.37110391690433, 34.723208830736546], [-77.37114781205949, 34.723308998720135], [-77.3709871928759, 34.72371226366956], [-77.37103815519446, 34.72378765605869], [-77.37110783535827, 34.72389636586415], [-77.37113370579979, 34.72393582652538], [-77.3712433993061, 34.724023963932666], [-77.3713916219604, 34.72414407939063], [-77.37159211214525, 34.724290967089985], [-77.37175185397548, 34.72442118568467], [-77.37183908207848, 34.724471623796276], [-77.37189589706378, 34.724507462560695], [-77.37198224623111, 34.72455030646252], [-77.37205214253211, 34.72458434799269], [-77.37209956547713, 34.72460571416395], [-77.37219839351641, 34.72465755199047], [-77.37239807214547, 34.72468186254082], [-77.3724408981129, 34.72468003001609], [-77.37247837811867, 34.72465626609927], [-77.37261702553131, 34.72459389267512], [-77.37275693302638, 34.72455001851519], [-77.37297204390866, 34.724426141799434], [-77.37312599765806, 34.7243830056253], [-77.37318653820212, 34.724344981665865], [-77.37330700713758, 34.72422557617837], [-77.37351873998239, 34.72413438406473], [-77.37365504380679, 34.72404640434513], [-77.3737614101629, 34.72398703224821], [-77.37401032961833, 34.7238790957022], [-77.37429909513325, 34.72365479306794], [-77.37432114352374, 34.7236390207453], [-77.374334377488, 34.72362841595968], [-77.37436514756003, 34.72359636667579], [-77.37449986830579, 34.7231828142237], [-77.37467521088803, 34.72318853248218], [-77.37460557140636, 34.723049925804524], [-77.37450945942248, 34.72292977260653], [-77.37415438884457, 34.722446994084166], [-77.37411739836656, 34.72236075994797], [-77.37414052487989, 34.72199145364419], [-77.3741361625484, 34.72188140815649], [-77.37417530718083, 34.72187157660137], [-77.3746767598963, 34.72197496456289], [-77.37477071725694, 34.72202933213933], [-77.37499622955355, 34.721994615277914], [-77.37512794269331, 34.721964586270346], [-77.3754594065213, 34.72186558750119], [-77.37551252581179, 34.72184523091507], [-77.375577402195, 34.72182676641522], [-77.37598922962438, 34.7215808929929], [-77.37615210769667, 34.72146875860069], [-77.37616857913129, 34.721421443069346], [-77.37636306189525, 34.72142513721765], [-77.37689176527351, 34.7213485432614], [-77.37704952202776, 34.72136563214414], [-77.37720826035243, 34.721362646419735], [-77.37728520653903, 34.721376956460226], [-77.37739594020472, 34.721344991578434], [-77.37748234696792, 34.72132521419693], [-77.37755003230615, 34.72128961786094], [-77.37780976071889, 34.721112323330935], [-77.37798567510728, 34.72099224043481], [-77.37835115960723, 34.72073822236598], [-77.37845696325988, 34.720674071611846], [-77.37931837023383, 34.72108632768618], [-77.37953096647799, 34.721091652838595], [-77.37961406622918, 34.721070093810305], [-77.37974955548368, 34.72105050011695], [-77.38101989495482, 34.720379391969516], [-77.38102207715372, 34.72037948370959], [-77.38102402403163, 34.72037823878356], [-77.38118108715932, 34.72031014835983], [-77.38174171661919, 34.720059765199125], [-77.38175419734375, 34.7200582556897], [-77.38182667616223, 34.72004112706591], [-77.38213114869819, 34.719948354937685], [-77.38225655843098, 34.71986198907153], [-77.38239151299048, 34.719738530619196], [-77.38237842385075, 34.71960437119178], [-77.38255264555806, 34.718846021223165], [-77.38263004546994, 34.71870365519452], [-77.38283080691195, 34.718556857613706], [-77.38314827056395, 34.71859780761234], [-77.38356372534378, 34.718549457791084], [-77.38381068826156, 34.71855772597527], [-77.38405289978373, 34.71822081543506], [-77.38415165943637, 34.718117891612884], [-77.38439321508768, 34.7171864007998], [-77.38438580306114, 34.717081485683096], [-77.38425614004106, 34.715458339289526], [-77.38385751923317, 34.7146598274333], [-77.38446245986222, 34.71403171537003], [-77.3845554844383, 34.71266743573443], [-77.38439794761796, 34.71182889149658], [-77.38447375038515, 34.71152047101515], [-77.38450303064836, 34.711104085427614], [-77.38450866787232, 34.710414332529], [-77.38442138470144, 34.71003394576456], [-77.38404624494436, 34.709944544297386], [-77.38370419302375, 34.709797056328334], [-77.38347964856551, 34.70968772601491], [-77.38318519800441, 34.70965657603729], [-77.38287552325005, 34.70956032221309], [-77.382441840209, 34.70922861698321], [-77.3822737036009, 34.70914387654169], [-77.38180021465249, 34.70884713088201], [-77.38120204922227, 34.70869704799361], [-77.38059044797845, 34.7085975959812], [-77.3801755577227, 34.70823313707867], [-77.38041020415264, 34.70786118319944], [-77.38040074494549, 34.70738583391009], [-77.38039826094972, 34.70724775657844], [-77.38042144402651, 34.70696997049974], [-77.38043702267642, 34.706785316549926], [-77.38043973735924, 34.70675314042586], [-77.38023986592319, 34.7064908814327], [-77.38022004572926, 34.70642945716123], [-77.38015020296669, 34.70637217512579], [-77.37998768105211, 34.706255245317145], [-77.37981432041316, 34.70625457776387], [-77.37971397083442, 34.70626198727492], [-77.37965871322243, 34.70628435076017], [-77.37938120257184, 34.70638253257871], [-77.379351447375, 34.70641732487809], [-77.37929142499529, 34.70644557513528], [-77.37902541092856, 34.706632372165814], [-77.37866891908602, 34.70669234171627], [-77.37856453164004, 34.70674151719815], [-77.37840758991686, 34.70673850605498], [-77.37819405199706, 34.70676907795249], [-77.37809814043304, 34.70686746407851], [-77.37801214125281, 34.70702158304098], [-77.3777260343303, 34.707422195631956], [-77.37770118759593, 34.70745973126429], [-77.37768365906209, 34.707486471196546], [-77.37736716946104, 34.70791415671013], [-77.37715849640925, 34.708068852578165], [-77.37685115536051, 34.70822823970063], [-77.37569752147046, 34.70893040763107], [-77.37558561819691, 34.70909495779988], [-77.37468647819514, 34.70954576478705], [-77.37408414707285, 34.70951168515371], [-77.37388146231655, 34.70820526566881], [-77.37384860033748, 34.70755613755622], [-77.37382250402317, 34.70723858462155], [-77.37373791284796, 34.70712177843636], [-77.3739122041689, 34.70633626579156], [-77.37397117910015, 34.70624335826865], [-77.37451252698159, 34.70559189075283], [-77.37494468836093, 34.70513473922032], [-77.37555778058919, 34.70443193139593], [-77.37596664502982, 34.704617523795875], [-77.37612760082972, 34.70453128187431], [-77.37619859363267, 34.704533214610535], [-77.37661191247821, 34.704515047267584], [-77.37672856354226, 34.704523268881495], [-77.37682155729337, 34.70455079225618], [-77.37692012936755, 34.70453433668184], [-77.37703044812385, 34.70451442336524], [-77.37706466074545, 34.70447773172482], [-77.37705085097132, 34.70444408418827], [-77.3770319078576, 34.704388852610684], [-77.37700374358997, 34.704364258258565], [-77.37694415149754, 34.704295980373736], [-77.3768816294367, 34.70430740486845], [-77.37682051539997, 34.704206266641215], [-77.37675899881182, 34.70415421040002], [-77.37659629163447, 34.70413279301873], [-77.3763971177314, 34.70396026697223], [-77.37636511079837, 34.70391648864401], [-77.37642663780379, 34.70371251036866], [-77.37638064411615, 34.70365893774278], [-77.37629446307747, 34.7035765980981], [-77.37621031256545, 34.70349855438062], [-77.37615134625399, 34.70341755571041], [-77.37597509737463, 34.70342818382685], [-77.37590198057349, 34.70324535891659], [-77.37571790178478, 34.70323190732448], [-77.37557756129343, 34.70309815073347], [-77.37575094322337, 34.702860431150974], [-77.37556582252337, 34.70261237008027], [-77.37554680614235, 34.702575073056906], [-77.37552786179319, 34.70247139366391], [-77.37521386779382, 34.70217336150145], [-77.37540484044136, 34.70191569985767], [-77.37539937125423, 34.70190002490123], [-77.37522661407812, 34.70168421375068], [-77.37517522988794, 34.70162338008702], [-77.37497145473345, 34.70144090804924], [-77.37493991207957, 34.70140278034799], [-77.3747788378044, 34.7012583783378], [-77.37474322519428, 34.70122233730274], [-77.37471227328777, 34.701155712714595], [-77.3746947543533, 34.701148089158906], [-77.37469224059728, 34.70112482997852], [-77.37466437978206, 34.70108590001641], [-77.37462346730698, 34.701036040654124], [-77.37460433041406, 34.70101192248755], [-77.37445324156512, 34.70105130822206], [-77.37444722112231, 34.70103762214467], [-77.37442024431493, 34.70104337242807], [-77.37443099804831, 34.701068432314464], [-77.37442992925241, 34.70109723127795], [-77.3744521847723, 34.701249257810474], [-77.37446651212932, 34.70130131572841], [-77.37430091665765, 34.70154196568558], [-77.3742889369744, 34.7015651466465], [-77.37428299584776, 34.70157664273177], [-77.37429588006904, 34.701812168010434], [-77.37410522348372, 34.70210776824602], [-77.37401132557555, 34.70233868109315], [-77.3738467785976, 34.70244962629904], [-77.37367536848885, 34.7026665425793], [-77.37343101363766, 34.702905849694844], [-77.37332610231044, 34.703264546892214], [-77.37314523733255, 34.70343252684533], [-77.37270862087377, 34.70399370459501], [-77.37164739390303, 34.70399981602117], [-77.37168007110782, 34.70363392096035], [-77.37157958003061, 34.703263497378934], [-77.37162917164184, 34.70303731606806], [-77.37164552402456, 34.702663882588254], [-77.37171565838617, 34.70237021974142], [-77.37173218201275, 34.7021645788584], [-77.37182062996528, 34.701930694588704], [-77.37181576462912, 34.70189889674087], [-77.37173519031876, 34.7018549928053], [-77.37153081395235, 34.70180495115187], [-77.37127997027162, 34.7019170850927], [-77.37066774535813, 34.70218546548581], [-77.37015455819318, 34.7024218806111], [-77.37001732625865, 34.702100523316496], [-77.37005152432351, 34.70190818127556], [-77.37005761906141, 34.70164486284435], [-77.37003796640045, 34.70142265273525], [-77.3700661905023, 34.70127439756314], [-77.37013325004747, 34.70092216450116], [-77.37015413919872, 34.700812440173266], [-77.37021251246739, 34.70050582711856], [-77.37025589069538, 34.70041791608743], [-77.37038430683977, 34.7002410013663], [-77.37059151086842, 34.69988439381642], [-77.37067171369327, 34.69963643272546], [-77.37080573821349, 34.69912806625588], [-77.37081323738647, 34.69887913320712], [-77.37081757306399, 34.69872469769259], [-77.37068354830568, 34.69853540901421], [-77.37062657090641, 34.69847747401572], [-77.37018378121549, 34.69819474196545], [-77.37000636983194, 34.69801524586325], [-77.36955345981825, 34.697726528909314], [-77.36922505875133, 34.6973727855359], [-77.36910740211604, 34.69728140058959], [-77.36902571349054, 34.69717524058047], [-77.36874536135716, 34.696962988717594], [-77.36856831624979, 34.69690788152988], [-77.3682254253189, 34.69669188310051], [-77.36724053491358, 34.696595995722234], [-77.3669024733679, 34.69661322053886], [-77.36606942453028, 34.69587034900319], [-77.3654488057245, 34.695717208283874], [-77.36437576600217, 34.69540422256219], [-77.36384625520668, 34.69528036417892], [-77.36245961706247, 34.69491176253035], [-77.36162336695836, 34.69468946916763], [-77.36131386293839, 34.6946071895337], [-77.36096032254589, 34.69438430407966], [-77.35858959428242, 34.69355023527181], [-77.35722334265752, 34.69335026937539], [-77.3568363697884, 34.693001202953724], [-77.3561608739651, 34.692265837448886], [-77.35538891997905, 34.691421460727724], [-77.35525994190155, 34.6913824060689], [-77.35527000542217, 34.69126677600816], [-77.35489972768252, 34.69087123427585], [-77.3549207432061, 34.690782494789836], [-77.35498801858898, 34.69074053256917], [-77.35521475913194, 34.690404873153234], [-77.35531950866951, 34.69028520955445], [-77.35540257575244, 34.690252238073015], [-77.3554461148043, 34.6901934870875], [-77.35558378670407, 34.690093747413265], [-77.35561936153854, 34.68992316927917], [-77.35532523213092, 34.689797038924844], [-77.35529732623993, 34.6897768193366], [-77.35526996472181, 34.68976932045676], [-77.35520610134162, 34.68975894552965], [-77.35467991182809, 34.689739981433306], [-77.35408661951116, 34.68996712712497], [-77.3540442074566, 34.69000547451946], [-77.35393226081672, 34.69047570528589], [-77.35352090582556, 34.69081810323941], [-77.35310768599807, 34.69103191448771], [-77.35302768257714, 34.691087298072816], [-77.35265793326843, 34.69132962726574], [-77.35236159553945, 34.69153996471871], [-77.35213886402872, 34.69169671732223], [-77.35193588857629, 34.6919660857906], [-77.35156216337944, 34.692231689856946], [-77.35118220616609, 34.69257450255102], [-77.35093767892225, 34.692836393981594], [-77.35052557435456, 34.69326896385975], [-77.35039080634485, 34.693398853665876], [-77.35018869708001, 34.69360860678259], [-77.35014571382504, 34.69374146121491], [-77.35016520396236, 34.693917205905684], [-77.3503876557137, 34.69421508248883], [-77.35051286397318, 34.69424729996037], [-77.35085801796738, 34.69465675114173], [-77.35101146633596, 34.69465198220749], [-77.35147006405066, 34.69538279636656], [-77.35168411414404, 34.6956582118553], [-77.35156810230836, 34.69580039218446], [-77.35084469351693, 34.697381547098864], [-77.34985687178717, 34.69711721952317], [-77.34988867004803, 34.69687945495787], [-77.34924784822492, 34.69607878397298], [-77.34921098931099, 34.69603749125726], [-77.34921889397143, 34.695996634279894], [-77.34920119697841, 34.695924636177], [-77.34912960989345, 34.695705929324724], [-77.3489348684652, 34.69554824060991], [-77.34889929332924, 34.6954889749207], [-77.34882436926283, 34.695475663240046], [-77.34869443640011, 34.69547539138322], [-77.34822877468429, 34.69546523872721], [-77.34792467837322, 34.69545057293933], [-77.34758232833921, 34.6952465094061], [-77.34726533618374, 34.695169569813785], [-77.34716698822035, 34.694998809310334], [-77.34704902635947, 34.69483232814581], [-77.34683276035662, 34.69471407570419], [-77.34672720407517, 34.69463280865571], [-77.34668193354302, 34.69460777293378], [-77.34654430679672, 34.69454185859625], [-77.34631776140353, 34.6944453134095], [-77.34622190865625, 34.694395760713036], [-77.34617077226446, 34.69430663802949], [-77.34593226015961, 34.69430322237429], [-77.3456696286271, 34.69453426365369], [-77.34523908184549, 34.69496530647886], [-77.34516427631928, 34.69509099689115], [-77.34516295855455, 34.69521057868077], [-77.34509088533892, 34.695588446033334], [-77.3450174617323, 34.69604546829204], [-77.34500694558798, 34.69608734542441], [-77.34483560246953, 34.696250798256116], [-77.34450637228582, 34.69664341663952], [-77.34435718908159, 34.696736739674535], [-77.34425284001813, 34.69678792688029], [-77.34381778491657, 34.69703392948154], [-77.3434831639702, 34.69723850969019], [-77.34326773538103, 34.69745714052327], [-77.3428909266548, 34.69783984433167], [-77.34282167751635, 34.69792871696183], [-77.34267916818402, 34.698083689649394], [-77.34228978797513, 34.69820956173368], [-77.34185816578486, 34.69835115754829], [-77.34143369576444, 34.69824950676893], [-77.34129757404956, 34.69818462537707], [-77.34095273005562, 34.6981057730477], [-77.34087955911656, 34.69809626614531], [-77.34085295407296, 34.69809827809593], [-77.34073065799228, 34.6981362402723], [-77.34057942349574, 34.698174936725025], [-77.34054790837341, 34.69820753150012], [-77.34039650279955, 34.69833193188937], [-77.340117099683, 34.69866010834701], [-77.34006894204941, 34.69871439748099], [-77.33979833433328, 34.69907829355388], [-77.3395928872147, 34.699267079448255], [-77.339621632905, 34.699474000036126], [-77.33958392882496, 34.69975568476434], [-77.33958722714253, 34.700167839157224], [-77.33927967508257, 34.70028479676051], [-77.33829218236214, 34.70082021092792], [-77.33790062707153, 34.70122591709337], [-77.33734412194525, 34.70152504194768], [-77.33626383741901, 34.702328168879795], [-77.33534126600784, 34.70273425060213], [-77.33389282490884, 34.70309267402645], [-77.33276090839557, 34.70337277985455], [-77.33196377939413, 34.703622574017196], [-77.33024011538072, 34.70380612658309], [-77.32894679356086, 34.70374400814895], [-77.32786574919373, 34.703735659475946], [-77.32591066345984, 34.70309271109041], [-77.32573806173237, 34.70305900641844], [-77.32568034849372, 34.70301512976692], [-77.3245506734674, 34.70215626345474], [-77.32363694122112, 34.70152211878936], [-77.32360588740484, 34.70145912398451], [-77.32261748026846, 34.700729767205026], [-77.32172917245252, 34.70013109949638], [-77.32144805065064, 34.70005275044288], [-77.32129151874886, 34.69982681462068], [-77.32094183779718, 34.69965387650124], [-77.32069202147656, 34.69957997140103], [-77.32026425042457, 34.699631565580624], [-77.31968941924208, 34.69982885179847], [-77.31938873930375, 34.69994409710512], [-77.31922848001547, 34.699989868770416], [-77.31813393338527, 34.70014147039184], [-77.31787344516486, 34.70006498690095], [-77.31755719563935, 34.70006592288975], [-77.31729000852529, 34.7000976814198], [-77.31725746444445, 34.70006722045959], [-77.31722306890121, 34.70012661643267], [-77.3172091158362, 34.70015988614556], [-77.31723874472874, 34.70038208797272], [-77.31705489496957, 34.70061596270681], [-77.31675405057713, 34.701297962027766], [-77.31680153235229, 34.70141670621861], [-77.31630245363901, 34.702321696672584], [-77.31622973610757, 34.70243813081896], [-77.31406407936274, 34.70257823290147], [-77.31383740781452, 34.70256281588305], [-77.31328242001936, 34.702377910549764], [-77.31162469088255, 34.70193637631857], [-77.31132437869769, 34.70153228500398], [-77.31116391597429, 34.70121413292065], [-77.31023906041972, 34.70079055437425], [-77.30992457827779, 34.69954798723028], [-77.30984495421241, 34.699517375839044], [-77.30980367021185, 34.69945096826272], [-77.30982143480855, 34.69930766919481], [-77.30948341191142, 34.69852010471388], [-77.30972480933463, 34.69803356353191], [-77.30970210610367, 34.69800280180132], [-77.30969920195375, 34.69792208570686], [-77.30959828324004, 34.69773679971056], [-77.30950129869292, 34.69774651136144], [-77.30921592082413, 34.697867844134535], [-77.30893702928384, 34.69785117368634], [-77.30826057729874, 34.6979229184801], [-77.30797171617783, 34.69802867344956], [-77.30771196037357, 34.69800499057857], [-77.30675265180038, 34.69810306339673], [-77.30570522196724, 34.698210133917414], [-77.3055049440679, 34.698275873690264], [-77.30517209778425, 34.6981356581091], [-77.30601755842342, 34.69615542044699], [-77.30608137455641, 34.69606175765646], [-77.30611430432444, 34.6960186899422], [-77.30617295806107, 34.695979903444176], [-77.3067686722015, 34.695322085629684], [-77.30762796768101, 34.69487529864828], [-77.30765834178406, 34.69483425876013], [-77.30770195209766, 34.69484008744324], [-77.3077171123737, 34.6948487101018], [-77.30774396846591, 34.69485941604012], [-77.30847087672595, 34.6950572368944], [-77.30883368741394, 34.69506571672905], [-77.30937033879866, 34.69507602155156], [-77.30948736978958, 34.69506375228734], [-77.31003779592987, 34.69504255882713], [-77.31070658100109, 34.69542845624759], [-77.3109389524544, 34.69552381027799], [-77.31107674164484, 34.69558719460811], [-77.31159501671505, 34.69580745345657], [-77.3116103458994, 34.6958109448195], [-77.31164561358608, 34.69581747447492], [-77.31218673993317, 34.69588758639323], [-77.3124432310376, 34.69594334243309], [-77.3127515864646, 34.69600393409761], [-77.31301335356174, 34.69608725729998], [-77.31321834857904, 34.69613543774761], [-77.31330014465732, 34.69617628414867], [-77.31378558472512, 34.69646884925605], [-77.31379623777269, 34.69647918967215], [-77.31385117936317, 34.69649700911127], [-77.31434284949063, 34.69670808278815], [-77.31483829920285, 34.69646600807904], [-77.31500318218652, 34.69649612611707], [-77.31513475545611, 34.69635859376036], [-77.31518982946152, 34.69627650341099], [-77.31578273014655, 34.69587422780463], [-77.31599432899056, 34.69584404632991], [-77.31663622623799, 34.69587156044267], [-77.31698332341126, 34.695863108829286], [-77.31748589929622, 34.695890125864636], [-77.31757142126713, 34.69589949341234], [-77.3176181335355, 34.69590460981129], [-77.31777409601818, 34.69592248048657], [-77.31806488225256, 34.69595512552924], [-77.31815099383316, 34.69596519345727], [-77.31850790724744, 34.69600850251542], [-77.31872757712259, 34.69604117332184], [-77.31918364421139, 34.69611906847251], [-77.31930525381738, 34.69611339377249], [-77.31936656777877, 34.69613632002129], [-77.31965537561913, 34.69615208894943], [-77.31988776406337, 34.696168990864095], [-77.32048076280596, 34.69606761083444], [-77.32051558989575, 34.69606873541143], [-77.3205579791666, 34.69606111715314], [-77.32085262046076, 34.69598803828288], [-77.32115950481455, 34.69591313473467], [-77.32127626618977, 34.69592998606546], [-77.32161569263836, 34.695982942319134], [-77.32173728903881, 34.69598497427888], [-77.32191712419618, 34.695989679002196], [-77.32257394783669, 34.69603414091377], [-77.32289695403975, 34.696114563669774], [-77.3232295814437, 34.69631808079824], [-77.32358180335085, 34.6965887617587], [-77.32373340795195, 34.696718776208904], [-77.32387576058834, 34.696866264142955], [-77.3243888358136, 34.69690500700417], [-77.32445718966525, 34.696925584651154], [-77.324476200239, 34.69693568265688], [-77.32462463502857, 34.696933204037805], [-77.32505293987082, 34.69693563872292], [-77.32512985665183, 34.696923763890155], [-77.32551298579759, 34.69692646719554], [-77.32565335852769, 34.69692963057707], [-77.32586738033152, 34.696939414363186], [-77.32600174076664, 34.69694465184673], [-77.32621767689257, 34.697047806264976], [-77.32639201033726, 34.69703858287707], [-77.3264773857612, 34.69716662036571], [-77.32670704703729, 34.697423818320296], [-77.32682373467131, 34.69749473707192], [-77.32690636435343, 34.697595186033276], [-77.32694822069159, 34.69762390977813], [-77.32720295875038, 34.69755452912521], [-77.3272596973472, 34.697535779195725], [-77.327273224365, 34.69753561062206], [-77.3277939607455, 34.697371149403324], [-77.32792953506157, 34.69733731601869], [-77.32824592261797, 34.69718906602954], [-77.3286089185983, 34.69705962612979], [-77.32879738915459, 34.69698415828583], [-77.3288458503333, 34.69684193970208], [-77.32897455312289, 34.696628618912094], [-77.32925727304895, 34.69611513112057], [-77.33011126671879, 34.69575426054127], [-77.33019897309055, 34.69570839713424], [-77.33023181067992, 34.695702527547354], [-77.33037251206575, 34.695657891416246], [-77.33085785412449, 34.69550116760496], [-77.33119311852471, 34.69527819174394], [-77.33137988601196, 34.695032395764485], [-77.33171092453192, 34.694625723369384], [-77.33179102105356, 34.69453158595445], [-77.33180427264226, 34.694486832855276], [-77.33183710480493, 34.69442669325794], [-77.3319710812501, 34.69397658823918], [-77.33193859705625, 34.69384229665826], [-77.33189540191658, 34.693593600344066], [-77.33183032776937, 34.69350851763336], [-77.33180051048342, 34.693263165470505], [-77.33217951584112, 34.693013272063226], [-77.33270227630567, 34.69241420483542], [-77.33272504914856, 34.692167127175786], [-77.33279898707973, 34.691913571821395], [-77.3328005998622, 34.69159642112232], [-77.33285204579634, 34.69141892334002], [-77.33292170040689, 34.69122759025484], [-77.33295621145663, 34.690429889118136], [-77.33268249361234, 34.689835103979405], [-77.3327573497807, 34.6894824219335], [-77.33276210923624, 34.689008636644836], [-77.33276535852063, 34.688983109508925], [-77.33276069523701, 34.68895332347592], [-77.3327379717404, 34.68851033710384], [-77.33276634688053, 34.688194095942016], [-77.3328608344791, 34.68781936657122], [-77.333221128978, 34.687469331530465], [-77.33345341245902, 34.68706808961781], [-77.33348588000052, 34.686852285666276], [-77.33343884138169, 34.68661953067016], [-77.33342043928289, 34.6865085045858], [-77.3332796470225, 34.68648656322791], [-77.33300075556204, 34.686437255303055], [-77.33289508517763, 34.68643083964629], [-77.332690694614, 34.68639164201086], [-77.331779412521, 34.686150381158036], [-77.33142863753012, 34.68607022896332], [-77.3307014973099, 34.68590422811825], [-77.3306558259277, 34.68589717327849], [-77.3306357479515, 34.68589196800989], [-77.33058936222206, 34.68588074917167], [-77.32984350489781, 34.68571320411053], [-77.32953122104047, 34.68564747529739], [-77.32874143055349, 34.68544259580017], [-77.32840763709021, 34.685394278498194], [-77.32819321152512, 34.68540629183744], [-77.32805548576779, 34.68525343188714], [-77.32714039557642, 34.68463975452027], [-77.32653357731802, 34.683604226322224], [-77.3264400624745, 34.683602074892065], [-77.32633861855788, 34.68353933140227], [-77.326459884826, 34.683418834434214], [-77.32660987875192, 34.68334170306627], [-77.32675446648746, 34.683360216971785], [-77.32792072038434, 34.682950493971326], [-77.32806345162012, 34.683141460397565], [-77.32828108340894, 34.68327302647849], [-77.32870587511812, 34.68343546960443], [-77.32894855324845, 34.68353305372041], [-77.32932858151867, 34.6834096236234], [-77.33018860256877, 34.683385392854674], [-77.33069426211046, 34.68334409031258], [-77.33079982863413, 34.68334183151438], [-77.33087040197422, 34.68334673438853], [-77.3313700303719, 34.6834394373413], [-77.33247839003776, 34.683649681096654], [-77.3325064764764, 34.68364827959183], [-77.33253002376586, 34.68364640731141], [-77.33276109261035, 34.68363344707014], [-77.33367167027924, 34.683556321831745], [-77.33373263155198, 34.68354837858818], [-77.33384848518222, 34.68358802587668], [-77.33463898143245, 34.68360035384735], [-77.33491430172404, 34.68360156313184], [-77.33511537546113, 34.68362795588599], [-77.33528255461316, 34.68358309662636], [-77.33543301057738, 34.68338356905474], [-77.3355565286706, 34.68325003813989], [-77.33558970352308, 34.68321710612077], [-77.33563868660018, 34.68316848119862], [-77.33594372815864, 34.682892689929204], [-77.3361561108263, 34.68268041909022], [-77.33642217278629, 34.6825319358693], [-77.33687570366341, 34.68244245829943], [-77.33705727353399, 34.68240612057356], [-77.33731889757276, 34.68232667173955], [-77.3376970784982, 34.6822640997874], [-77.33879917921472, 34.681830454246274], [-77.33890931659548, 34.68169246659688], [-77.3392983778585, 34.68087259662106], [-77.339349017274, 34.68078026637834], [-77.3398089175093, 34.67993679359342], [-77.34127125108239, 34.680073720845165], [-77.34114980253091, 34.68053317843727], [-77.34113698638366, 34.68096535250328], [-77.34113529070524, 34.68102254793404], [-77.34113267558745, 34.68111074623328], [-77.34110677961685, 34.681513835589584], [-77.34133548299457, 34.68160091604465], [-77.34146403634732, 34.681659195167015], [-77.3416247466936, 34.68177248192572], [-77.34191931180831, 34.68188971832423], [-77.34196009268321, 34.681908586412554], [-77.34207161765065, 34.681943400251335], [-77.34254353014381, 34.682064013871496], [-77.34276910061936, 34.68207435663727], [-77.34311037410887, 34.68217313447272], [-77.34316176506938, 34.68220659641149], [-77.34341766070467, 34.682363594413], [-77.34359412541886, 34.68256835823313], [-77.34396974543944, 34.682727073348765], [-77.34396238886737, 34.68307147812597], [-77.3440287570502, 34.683132731565635], [-77.34452876939135, 34.683085213399025], [-77.34445480876377, 34.68349127654281], [-77.34448582930199, 34.683512423999666], [-77.3445112682714, 34.68353225837639], [-77.34498866334619, 34.683519638848615], [-77.3450222097711, 34.68383390331262], [-77.34505146145463, 34.68386548148334], [-77.34504130495375, 34.68389816186356], [-77.34505086375147, 34.68394690389705], [-77.34514552173059, 34.68418726601582], [-77.34527547438823, 34.68435340127502], [-77.34539082989326, 34.684625628736114], [-77.34555717899659, 34.684658815269486], [-77.34563296572055, 34.68479171394661], [-77.34553180585173, 34.68501168076564], [-77.34565052968183, 34.685375318034076], [-77.34571482188574, 34.68557105159103], [-77.34577597700473, 34.68567295254189], [-77.34577337808307, 34.68574720181297], [-77.34593536695547, 34.6858421640753], [-77.34599286918495, 34.68590021686508], [-77.34617288492377, 34.685899273356], [-77.34622771616242, 34.68586602569276], [-77.34640887988121, 34.68578936273503], [-77.3466779149943, 34.685623049394906], [-77.34694201495859, 34.685467458622625], [-77.34713665081634, 34.68556008296186], [-77.3473285549045, 34.68566068579386], [-77.34748711209278, 34.685651542572884], [-77.34773259750399, 34.685743926800946], [-77.34782426231311, 34.68576768977826], [-77.34809792323202, 34.68560932884823], [-77.34867338871055, 34.685414095237256], [-77.34837154047865, 34.685877952791124], [-77.34852640632266, 34.68592139075303], [-77.34849873660048, 34.68610418290126], [-77.34854511400005, 34.68613059185491], [-77.34866310540177, 34.68619228112456], [-77.34868222929725, 34.6861956535267], [-77.34867909122421, 34.68620645447996], [-77.3487116404774, 34.68631864706698], [-77.34874300609383, 34.68647974758635], [-77.3488396891692, 34.68646865652015], [-77.34883136298876, 34.686660611071616], [-77.34889029175208, 34.686781503574814], [-77.34887448966933, 34.686836056429954], [-77.34883913204905, 34.68698664923233], [-77.34884727583763, 34.68703109914195], [-77.34885473035493, 34.68712565719676], [-77.34898441759168, 34.68714563999358], [-77.34896801055788, 34.68725821562612], [-77.34888582696257, 34.68734719887809], [-77.34890020787874, 34.68740753666485], [-77.34891160271769, 34.68744513560248], [-77.3489819201408, 34.687432395188345], [-77.34907900634201, 34.68738396349542], [-77.34921273560184, 34.687364114400836], [-77.3494145209162, 34.687259180109386], [-77.34948623196135, 34.68724121945906], [-77.34964898490693, 34.68716473207251], [-77.34970869383177, 34.68711930534508], [-77.3497690668392, 34.686935972267804], [-77.34976530445358, 34.68690507270702], [-77.3497686944149, 34.686853354641045], [-77.34978400797684, 34.68665881395705], [-77.34982587833001, 34.68626576021124], [-77.34988548024809, 34.686157501882235], [-77.34993688320272, 34.686018452171695], [-77.34981607761625, 34.68587623360513], [-77.34963780080213, 34.68570412281732], [-77.34939337046524, 34.68564836874243], [-77.34933261132399, 34.68547988607438], [-77.34895312806219, 34.68531073417545], [-77.34887352982602, 34.685260069418895], [-77.34894062278518, 34.684768509247576], [-77.34897026984886, 34.68439725648483], [-77.34896200306235, 34.6843347534377], [-77.34853464216799, 34.683944146901354], [-77.34827369314428, 34.68294272637466], [-77.34815345168498, 34.682660796710714], [-77.34779861808808, 34.68254493360045], [-77.34722285803302, 34.68243914777653], [-77.34656027126468, 34.682310185822615], [-77.3462455581481, 34.681682359728725], [-77.34586436044228, 34.68126905721462], [-77.34590267028018, 34.68085565743428], [-77.3459771162083, 34.6802999435381], [-77.34677525242446, 34.6798582594367], [-77.34743745484776, 34.67904160577294], [-77.34775327033631, 34.678652110894504], [-77.34837848247928, 34.67732278999034], [-77.35168762915907, 34.676787221904874], [-77.35238328742817, 34.67703384002235], [-77.35282203113178, 34.67749084478061], [-77.35301790606891, 34.67792928719766], [-77.35328513559445, 34.678050481810956], [-77.35368433106109, 34.67840390355266], [-77.35418552905628, 34.67874371103256], [-77.35424064231114, 34.6787640938783], [-77.35426576345554, 34.678795794969616], [-77.35462165655436, 34.6792592152342], [-77.35470007086218, 34.67936141159939], [-77.35505927916755, 34.679598485013315], [-77.3551383927614, 34.6796498702501], [-77.35519666567235, 34.67971246501436], [-77.35557629427181, 34.679875062408925], [-77.35576258953907, 34.6799578101985], [-77.35577876373794, 34.679987056503826], [-77.35622358110378, 34.68029841947521], [-77.35629153842078, 34.68033906611408], [-77.35716799036256, 34.680283633647505], [-77.3573427908513, 34.68031827811447], [-77.35742869608774, 34.6802704574735], [-77.35744828784972, 34.680258189260805], [-77.35748695965282, 34.68023982262971], [-77.3578931080115, 34.68001429656825], [-77.35803404745661, 34.6797861713164], [-77.35807416187879, 34.67967177864092], [-77.35813621646614, 34.67959158148815], [-77.35829568046728, 34.67934539256185], [-77.35842452073544, 34.67913626562702], [-77.35876601943347, 34.67887345057431], [-77.35910800677902, 34.67860859087784], [-77.35915252351096, 34.67857786498447], [-77.35919857046275, 34.67854254830601], [-77.35916254499975, 34.678523252325206], [-77.35914127073836, 34.67849397462484], [-77.35908761840975, 34.67838382334383], [-77.35901755813461, 34.67832372081813], [-77.3589665203397, 34.67827993723172], [-77.35887805455522, 34.678099190813526], [-77.3587990777815, 34.67801462011921], [-77.35872209588752, 34.677876149041566], [-77.35864560067466, 34.67773855306202], [-77.35858844362676, 34.677651588028226], [-77.35851195538486, 34.67756915041737], [-77.35844501223959, 34.67749875300007], [-77.35828268963667, 34.677328053488836], [-77.35820839916224, 34.67728668516732], [-77.3580836226033, 34.67723354675762], [-77.35792778464713, 34.67710848986398], [-77.35778039125155, 34.676996672214386], [-77.35758143811042, 34.67698089380635], [-77.35756103961619, 34.67652869590246], [-77.3577732288352, 34.67630141094473], [-77.35803857363848, 34.67610709305728], [-77.35848830399743, 34.67620318371694], [-77.35858199534464, 34.6762106630622], [-77.35860679103892, 34.676211323795705], [-77.35864041522447, 34.67620916015665], [-77.35922099564704, 34.67615709511627], [-77.35934999433829, 34.6760848105509], [-77.35928465273378, 34.67593774739099], [-77.3587520909344, 34.676079719940745], [-77.35892045470136, 34.67518096460918], [-77.35891882658392, 34.67516926849778], [-77.35962218770636, 34.67477466308217], [-77.359847867763, 34.67472671360315], [-77.36023937388768, 34.674710114109786], [-77.36035693855325, 34.674844251267984], [-77.36042876404518, 34.674961831596335], [-77.36054914445685, 34.67509050136878], [-77.36059770790168, 34.67539148327899], [-77.36058946926025, 34.67542714087731], [-77.3605491771625, 34.67548469593066], [-77.36035333127114, 34.675946969515024], [-77.36072630419442, 34.67613677457636], [-77.36098759455766, 34.67625632036107], [-77.36147416400087, 34.67628036765761], [-77.36156672401468, 34.67627822033914], [-77.36157998893815, 34.67627723405946], [-77.36186368061601, 34.67651379183426], [-77.36206700805198, 34.67666128744895], [-77.36208038019416, 34.67667122537622], [-77.3620908902062, 34.676683020123185], [-77.36218455657702, 34.67678813662266], [-77.36232494963556, 34.67680358345963], [-77.36263498299114, 34.67660826082722], [-77.36266257159556, 34.676583795307664], [-77.36268785350916, 34.676584155426], [-77.36276529235253, 34.676538158758405], [-77.36310314102907, 34.676336148145786], [-77.36340994396892, 34.67615808663025], [-77.36353846597252, 34.67608385269636], [-77.36389984771918, 34.67605890985833], [-77.36401703388536, 34.67612833746408], [-77.36411803120396, 34.67628516297944], [-77.36424256497916, 34.676382337928345], [-77.3642449892058, 34.6763845348976], [-77.3642475246243, 34.676386679937465], [-77.36430812945936, 34.67653303941451], [-77.36432618220928, 34.67661956587237], [-77.36436779690106, 34.67681902584075], [-77.36437065039586, 34.676857150165944], [-77.36439084703126, 34.67690258248211], [-77.36450407715446, 34.67717064679645], [-77.3645356453146, 34.67732186689952], [-77.364559016146, 34.677354292988255], [-77.36470882254102, 34.67740724815656], [-77.36477934710896, 34.67762623124781], [-77.36504606540981, 34.677541839011795], [-77.36499070055298, 34.67774672268245], [-77.36503640440846, 34.677943514254935], [-77.36527148338746, 34.677992710821925], [-77.36556409575158, 34.67793147879429], [-77.36555915798391, 34.67815599308986], [-77.36574363199617, 34.678187491986364], [-77.36580686388503, 34.67821015451972], [-77.36605214476445, 34.678312082125025], [-77.36607650027979, 34.67831217134552], [-77.36636184778934, 34.67804567945559], [-77.36620881797766, 34.67785610667073], [-77.36615650456908, 34.67786961662037], [-77.36619165444486, 34.677797563542754], [-77.36615447901215, 34.677586787464826], [-77.36610456613944, 34.67751536460454], [-77.36603206932858, 34.67743393544819], [-77.36594776844257, 34.67724184725988], [-77.36575136205181, 34.6771547972939], [-77.36564099453477, 34.67708379865289], [-77.36554481794673, 34.67705062242861], [-77.36504014817022, 34.67677683846442], [-77.36502641007394, 34.676774709238494], [-77.36502249016343, 34.67677151968999], [-77.3649799206568, 34.67677342358717], [-77.3650254706401, 34.67676382774312], [-77.36507619886729, 34.67633593277779], [-77.36509036123338, 34.67627085595342], [-77.36501079954567, 34.676112632721846], [-77.36496206563237, 34.67602957008942], [-77.3647884741663, 34.67582495201119], [-77.36475816485208, 34.67563659830165], [-77.3645617937731, 34.675549273715276], [-77.36449551186767, 34.67537782013563], [-77.36470001493062, 34.67519894319268], [-77.36458548805643, 34.67487806622195], [-77.36457552507918, 34.674750235183936], [-77.36461785783902, 34.67462992302942], [-77.3644997423398, 34.674464660834374], [-77.36448154684734, 34.67442835752996], [-77.3644639458814, 34.674407378946235], [-77.36428984080801, 34.67419713981242], [-77.36428260546047, 34.67418860400326], [-77.36428192175512, 34.674187819698055], [-77.36409289606065, 34.67397097875971], [-77.36407453143309, 34.673953260801504], [-77.36405498809296, 34.673934958326235], [-77.36385839829524, 34.67372543369267], [-77.3638254829744, 34.67369468082675], [-77.36363944593255, 34.67354590107279], [-77.36360885116332, 34.67352333308772], [-77.36358225441504, 34.673501705168796], [-77.3631957517168, 34.67344715210991], [-77.36306799595837, 34.67321157967322], [-77.36301444896974, 34.67319251120706], [-77.3630168078161, 34.673144070543], [-77.36283230123053, 34.6729926489277], [-77.36279561312068, 34.67296676684026], [-77.36277325575034, 34.67293384247587], [-77.36258743804923, 34.67280531967071], [-77.36249076305333, 34.67280724517992], [-77.3624484892107, 34.67273477325787], [-77.36226069641438, 34.672590148080246], [-77.36223709423751, 34.67252012596606], [-77.3621028681257, 34.6724129002193], [-77.36204210929569, 34.67236421357063], [-77.36195720590709, 34.67231488942359], [-77.36185010161194, 34.672252818039915], [-77.36171456660358, 34.67222216357217], [-77.36157698629577, 34.672162865042765], [-77.36134510015901, 34.67211239069563], [-77.3611771010709, 34.67207582222712], [-77.36101339320393, 34.672042798469185], [-77.36094591279502, 34.67202549904987], [-77.36083321645097, 34.671981935763434], [-77.36074389304903, 34.671940390972836], [-77.36058795283435, 34.67190686602635], [-77.360463706872, 34.671874809464505], [-77.36005795067884, 34.671920682856836], [-77.35988516445461, 34.67180626373106], [-77.35965821969512, 34.67165597981608], [-77.35945915802289, 34.67159324238346], [-77.35936440325966, 34.67153860836619], [-77.35892423336304, 34.67126942913505], [-77.3588864375676, 34.67124573048633], [-77.35885642551929, 34.67122691218705], [-77.35866248267148, 34.6711228328585], [-77.35847727731519, 34.671330829459336], [-77.35821333654906, 34.67176391369243], [-77.35786302716002, 34.67238998323855], [-77.35765292421195, 34.67278069815058], [-77.3564196340487, 34.673563019062534], [-77.35621920981359, 34.67406251959252], [-77.35553101344497, 34.67443688621167], [-77.35509125967883, 34.67416731434237], [-77.35361811768716, 34.672780006355744], [-77.35302423730336, 34.67207980029412], [-77.35358718561913, 34.67172879292647], [-77.35393808306809, 34.67167772888726], [-77.35507613994021, 34.67049597599273], [-77.3555806440601, 34.67014222062983], [-77.35601680805678, 34.66971926895998], [-77.35652437362833, 34.66922707450072], [-77.35651867717473, 34.669126461285906], [-77.35662555209186, 34.66866088209597], [-77.35666110176325, 34.66848136342164], [-77.35671572574772, 34.66818635351795], [-77.35670541129558, 34.668162526400025], [-77.3566962911418, 34.66810300464055], [-77.3567906966338, 34.66766342377012], [-77.35711459128247, 34.66719740511794], [-77.35714111344763, 34.667127903379686], [-77.35714796039241, 34.66706517967836], [-77.35735249911882, 34.66661147896404], [-77.3574740665558, 34.666239651801604], [-77.35749232926082, 34.66610488384123], [-77.3575196792797, 34.66599058728818], [-77.35746357895343, 34.66571624410201], [-77.35745343926452, 34.665647376871455], [-77.35743738693914, 34.665625045186815], [-77.35761621360723, 34.66512785057161], [-77.35710748833942, 34.66488131523204], [-77.35694793964318, 34.66485393220701], [-77.3560496411846, 34.66497658411906], [-77.35587643248088, 34.66499941586504], [-77.3557062275388, 34.66502148773912], [-77.35548033728605, 34.664919102622235], [-77.35488577459728, 34.66486472049754], [-77.35474261248692, 34.664782466259645], [-77.3542210392818, 34.66458807259381], [-77.35420511066496, 34.664572674719956], [-77.35394907260105, 34.66415465525833], [-77.3538801409681, 34.663866932581676], [-77.35362198158842, 34.662761589865774], [-77.35409437550402, 34.662446684447524], [-77.35362585782696, 34.662073468348666], [-77.35351191513712, 34.66168267843612], [-77.35334694136557, 34.66147728951951], [-77.35316483418089, 34.661432228717885], [-77.35308462334966, 34.66159302767598], [-77.35286708764372, 34.66177124019594], [-77.3528960690705, 34.66208422084166], [-77.35263524162208, 34.66198323935924], [-77.35240752027092, 34.66218900630821], [-77.35210649763637, 34.66253850203602], [-77.35200458893688, 34.66258663531562], [-77.35147856330254, 34.66280593306709], [-77.35095323340343, 34.66317296381893], [-77.35064329117176, 34.66292063529543], [-77.35077160014225, 34.66226994182596], [-77.3507512431791, 34.66141705321144], [-77.35076809967016, 34.66121549047051], [-77.35079335423791, 34.66079144661576], [-77.35054968285746, 34.65989463449576], [-77.35046932610126, 34.65956851222475], [-77.35029918928024, 34.65947311140373], [-77.35016587438177, 34.65925831668277], [-77.34957126812162, 34.658617650387846], [-77.34936961100117, 34.65848337575171], [-77.34903360897985, 34.65847978510283], [-77.34875283761842, 34.65860089327587], [-77.34843422641622, 34.658572266699075], [-77.34827866234264, 34.658181315392085], [-77.34805679293497, 34.65817123196592], [-77.34802690521887, 34.65817559946331], [-77.34765921914236, 34.657864288249186], [-77.34763342572302, 34.65786114689046], [-77.34762867744256, 34.65784855967102], [-77.34739558607298, 34.65775789292253], [-77.34730549172107, 34.65777272996201], [-77.34709938303723, 34.65777019346188], [-77.34681826215703, 34.65753782629291], [-77.34664969921334, 34.65751221984291], [-77.34659988144935, 34.657448416878495], [-77.34629009252829, 34.65725366446758], [-77.34597654169073, 34.65753324510631], [-77.34551647545585, 34.65745927087181], [-77.34533137030326, 34.65689795722906], [-77.34440593339428, 34.656091695283294], [-77.34392463711652, 34.656017823766824], [-77.34375709510938, 34.65604965346107], [-77.3431638018936, 34.65550751266237], [-77.34310124219269, 34.65535152419986], [-77.34296995616648, 34.65531960726633], [-77.34260424070649, 34.65514782685405], [-77.34224615348012, 34.65490458023457], [-77.34217124285014, 34.65489628936016], [-77.34191495373295, 34.65483493355673], [-77.34161687567624, 34.65484559506875], [-77.34159444823108, 34.65484820794038], [-77.34157178582207, 34.6548513373333], [-77.34128534748133, 34.65490336308578], [-77.34123873168558, 34.65492774662399], [-77.34113324000796, 34.65510921654408], [-77.34102501045459, 34.65520113051438], [-77.34074575684596, 34.6554219437172], [-77.34048213223424, 34.655686221169546], [-77.3404012745497, 34.655760446879135], [-77.34019358042286, 34.65591518051529], [-77.33997956552321, 34.656371909859146], [-77.33970977779751, 34.65632461361842], [-77.33964900411326, 34.65639273179294], [-77.33960659444305, 34.65652886731629], [-77.33968572815111, 34.656828869061464], [-77.33990993637792, 34.657076505425735], [-77.33989786913241, 34.657292282612985], [-77.33984809862996, 34.65731091690917], [-77.33979125630698, 34.65752638978325], [-77.33964585426702, 34.65759925914456], [-77.33957230686737, 34.65753184958313], [-77.3394902312038, 34.657579024281326], [-77.33926054876721, 34.65773120923369], [-77.33902883770998, 34.65801410829947], [-77.33850053871461, 34.65798970094122], [-77.33840886112887, 34.658115708663324], [-77.33830898452408, 34.657949354083875], [-77.33806825230539, 34.657894819920436], [-77.33722366717083, 34.65780150125997], [-77.33707335352065, 34.65784343457089], [-77.33688667074982, 34.65781772373411], [-77.33604741088529, 34.657833640807155], [-77.33580047460052, 34.65788278404314], [-77.33560955426105, 34.657960085191576], [-77.33549748975256, 34.65796844273205], [-77.33533624931528, 34.65809322177011], [-77.33522105839172, 34.65818625341541], [-77.33509183330378, 34.658303203012125], [-77.33495187095346, 34.65868069174002], [-77.33471527925762, 34.658856225414496], [-77.33453475093336, 34.65895859085547], [-77.33443255988524, 34.65904276612792], [-77.33432005961376, 34.65909181675343], [-77.33429022746019, 34.65925716234765], [-77.33446364227048, 34.6595594979993], [-77.33453527812269, 34.65967851264138], [-77.33477232789143, 34.66003501161807], [-77.33482035597248, 34.66026227060435], [-77.33507601293562, 34.6606515087999], [-77.33549218702969, 34.66122857747875], [-77.33576087283382, 34.66158736625644], [-77.33549890952297, 34.662756054810885], [-77.33474572192483, 34.66249195411852], [-77.33415848845084, 34.66245963161971], [-77.33390251447665, 34.66207879906696], [-77.3338492364486, 34.6618496185125], [-77.33379148503992, 34.661601195297386], [-77.3337197383006, 34.66129257340149], [-77.33365909664302, 34.66103171504069], [-77.33331591334834, 34.660943828564726], [-77.33321481034436, 34.66095033149416], [-77.33305847817697, 34.660916924786825], [-77.3330475760791, 34.66091484115525], [-77.33303785225424, 34.66092016178603], [-77.33290636273925, 34.6610088627491], [-77.33279311486623, 34.66115050555839], [-77.3327942313949, 34.661337543135616], [-77.33278262048118, 34.66198673176731], [-77.33278254262456, 34.66199393224245], [-77.33278240365, 34.66199596042175], [-77.3327823884629, 34.66199970258482], [-77.33277702534909, 34.66332337908235], [-77.33244711396206, 34.66372991995463], [-77.33204210178911, 34.66467616323294], [-77.33119573298002, 34.66451644762567], [-77.33072318691532, 34.6644868501155], [-77.33044100683755, 34.66433734165467], [-77.32939616949358, 34.66425718918526], [-77.32912891593531, 34.664185011879916], [-77.32830953401958, 34.663963719608866], [-77.3280447465179, 34.6639059546549], [-77.32750952107912, 34.66374447702441], [-77.32628965451568, 34.66336928114818], [-77.32508261908968, 34.6619121795784], [-77.32477973151568, 34.66176587884505], [-77.3234190350549, 34.66159199119212], [-77.32259260822197, 34.66150243483918], [-77.3219996047138, 34.65931552640856], [-77.3217402784688, 34.65859817498134], [-77.32174196569746, 34.65844599644013], [-77.32167996598066, 34.658301537785434], [-77.32026935286521, 34.655271954457106], [-77.32060604467794, 34.65237387177437], [-77.32097471503782, 34.652303806855706], [-77.32313465061874, 34.65221060767264], [-77.32452978337275, 34.653078767865594], [-77.3259352898937, 34.6534023498987], [-77.32830296331733, 34.654170500209446], [-77.32856890946302, 34.65426797403819], [-77.32867887141295, 34.65430946061076], [-77.32889127111768, 34.654357137721384], [-77.32924295884654, 34.65404158626679], [-77.32983737249357, 34.653700959407836], [-77.32993132940373, 34.65265889467425], [-77.33039702943744, 34.65065004642973], [-77.32995187209175, 34.650568422223586], [-77.3300442905886, 34.65009504481543], [-77.3304018311207, 34.65013496665655], [-77.33058246554721, 34.65028303657908], [-77.3328285570224, 34.64946493301943], [-77.3330662363287, 34.64995866194417], [-77.33416607259038, 34.64974801233782], [-77.33518191412587, 34.64955343882408], [-77.3353992748182, 34.64951180568402], [-77.33563460753145, 34.64946672820797], [-77.33597499944017, 34.649190263250695], [-77.33644655114884, 34.64967744250684], [-77.33640843202545, 34.65003125150884], [-77.33643492197393, 34.65010103337003], [-77.33644851985642, 34.6501516235367], [-77.33642910444428, 34.65031282904176], [-77.33642137846982, 34.65037697759601], [-77.33640343958407, 34.65052592242583], [-77.33640326499858, 34.65052737198445], [-77.33642273411061, 34.65071188212129], [-77.33642189043277, 34.65077834151559], [-77.33649158221634, 34.65077615776141], [-77.33661303768613, 34.650772351981985], [-77.33671653527851, 34.65076910879291], [-77.33683487548343, 34.65076301244871], [-77.33691016026802, 34.65065765226768], [-77.3369727235779, 34.65055806727982], [-77.33704754694013, 34.65043896582404], [-77.3370597238472, 34.65008976867672], [-77.33706046417763, 34.650015198513785], [-77.33705357954354, 34.6499662797909], [-77.33732206404133, 34.64955730641164], [-77.33732605986249, 34.64954067887503], [-77.33733060194616, 34.64955355928562], [-77.33733596279251, 34.6495553992041], [-77.33766789534909, 34.64964852844857], [-77.3378445443209, 34.64968422531813], [-77.33799857584607, 34.64970085776214], [-77.3381121116899, 34.6496199630378], [-77.33829027786838, 34.64955920983685], [-77.33836816459342, 34.64941375344826], [-77.33832500419217, 34.64915144883556], [-77.33828769504356, 34.64900280060897], [-77.33823239673634, 34.64891643997461], [-77.33813874815806, 34.64880510852629], [-77.33805122518108, 34.64870105954367], [-77.33797513952695, 34.6486236968827], [-77.33787503652701, 34.648475815860806], [-77.33771967359266, 34.648312843005755], [-77.33744491018741, 34.64832980641001], [-77.33734490916001, 34.64837720333358], [-77.33732844178022, 34.64822107141838], [-77.33736703633579, 34.64815120567749], [-77.33741710431212, 34.64797021129487], [-77.33758685486173, 34.64789825414457], [-77.33765200646593, 34.64797607480139], [-77.33765041426102, 34.647854394624034], [-77.33819062445605, 34.647851076539624], [-77.33827357995997, 34.647882791328236], [-77.33832870949597, 34.64782037996998], [-77.3387751077145, 34.64784207470897], [-77.33891103706156, 34.647868558669025], [-77.33926108220804, 34.64802522529624], [-77.33926226085356, 34.64802575281137], [-77.33926281628482, 34.648025914508715], [-77.33926386284965, 34.6480261585051], [-77.33960610647038, 34.64814101820237], [-77.33976557000904, 34.6481774482559], [-77.33978599733612, 34.648179976149905], [-77.33993422706591, 34.648180630980235], [-77.3400901073743, 34.64813025292297], [-77.34022933325257, 34.64805596021391], [-77.34047272413301, 34.64792558563762], [-77.34054377531548, 34.64788652568067], [-77.3406207128777, 34.64783862110487], [-77.34075523648843, 34.64775031109669], [-77.34080314652206, 34.64772503028586], [-77.34087269664863, 34.647593037100854], [-77.34088036187373, 34.64753349861421], [-77.34090858207057, 34.647377113050055], [-77.34098220799399, 34.6470229485129], [-77.34099202319534, 34.64697049525525], [-77.3409937612155, 34.64694342471033], [-77.34099970505827, 34.64688228441304], [-77.34103856775275, 34.646515277506], [-77.341059190435, 34.64636595497993], [-77.34112626445665, 34.646146697831036], [-77.34114002435032, 34.646079354687956], [-77.34114943666171, 34.645782961405935], [-77.34115610102079, 34.645655150566654], [-77.3411233414811, 34.645489377651586], [-77.34107491036147, 34.64524429766622], [-77.34104505850281, 34.64507030113932], [-77.34103331685692, 34.645039008230526], [-77.34102253190345, 34.64499724352155], [-77.3409783033453, 34.644915433871404], [-77.34088965201943, 34.644873190164816], [-77.34086987786418, 34.64487091140315], [-77.34085560479896, 34.64487132553625], [-77.34083401127633, 34.64485536593321], [-77.3405310551499, 34.644777980094275], [-77.34032990335136, 34.64476400246699], [-77.34015144913486, 34.64448209076239], [-77.33998237389153, 34.64430393786201], [-77.33992656402805, 34.644135922792486], [-77.33980744102566, 34.64386284439391], [-77.33972333304979, 34.64366869144313], [-77.33962781128815, 34.64346940786676], [-77.33954926360639, 34.64334371393092], [-77.33953420422708, 34.6432741183127], [-77.33944267813177, 34.6430762438885], [-77.33936425943992, 34.64294710882829], [-77.3391482107086, 34.64267581990593], [-77.3390615270321, 34.64268276364625], [-77.33886289683933, 34.642593921864716], [-77.33871559576501, 34.64221956298313], [-77.33846782497972, 34.64247619675366], [-77.33825388645948, 34.64267750289064], [-77.33804969392783, 34.642889016633006], [-77.3379192156379, 34.64293243613906], [-77.33776670249213, 34.642950068918125], [-77.33747061920792, 34.643015629467314], [-77.33733441470885, 34.64320856350436], [-77.33677410802918, 34.64303259308222], [-77.33666020222995, 34.64303966335899], [-77.33659910839101, 34.64296547429834], [-77.33631928743401, 34.64294298747283], [-77.33599475227304, 34.64291436406887], [-77.33593467874906, 34.64291611355442], [-77.33562339051697, 34.64303847740962], [-77.33547182789498, 34.643151238073834], [-77.33543450411281, 34.64331273558665], [-77.33527379875176, 34.643293072072794], [-77.33488109163025, 34.643745166747735], [-77.33480266959276, 34.643861026894214], [-77.33462416694323, 34.64401957017023], [-77.33440204214975, 34.644547811049414], [-77.33430738284859, 34.64473316768738], [-77.33410827577575, 34.64493433896368], [-77.33384105971314, 34.64563235223761], [-77.33277409980842, 34.6459452332141], [-77.33213258021138, 34.6460000368444], [-77.33166556662039, 34.646270295867716], [-77.33005087973672, 34.64674375633557], [-77.32958237283808, 34.64605470664071], [-77.3288915557133, 34.64634935465594], [-77.32780349669297, 34.64660040144133], [-77.32792148218255, 34.64578300559491], [-77.32804215361969, 34.64555619147984], [-77.3280969026238, 34.64503444892844], [-77.32833017273887, 34.644038990087545], [-77.32849998282894, 34.643314344232145], [-77.32851479521597, 34.642897092843654], [-77.32848719430268, 34.642329490894454], [-77.3283337644244, 34.642107603122604], [-77.32817653777045, 34.642242400988586], [-77.32762841919842, 34.6423558291185], [-77.32756412167561, 34.64238110230835], [-77.32747083928983, 34.64235328578578], [-77.32710974810472, 34.64223459358085], [-77.32691120938647, 34.6423181157025], [-77.32678028977128, 34.642375760079815], [-77.32640221853046, 34.64248712592021], [-77.32631358521317, 34.64253050188441], [-77.32625681784404, 34.64255426213985], [-77.32573981305572, 34.642650343342325], [-77.32569792712712, 34.64265307419438], [-77.32562507544127, 34.642631651406624], [-77.32517542868675, 34.642619566939686], [-77.32503158116629, 34.64252316841109], [-77.32465680566834, 34.64239475175397], [-77.32434051858236, 34.64227012894683], [-77.32418945334013, 34.64227542545273], [-77.32370992889645, 34.64231831658904], [-77.32325978503806, 34.64242479996725], [-77.3230919597023, 34.64242937739478], [-77.32292110259161, 34.64249008651706], [-77.32270686352923, 34.64257579220345], [-77.32253020437045, 34.6428204964084], [-77.32239859768663, 34.642955278825], [-77.32241420610282, 34.64316227994506], [-77.3224756978975, 34.64337148148112], [-77.32264204733127, 34.64397501822508], [-77.32289793688116, 34.644756405558475], [-77.32278714845005, 34.644799100110205], [-77.32295185275674, 34.64492104067621], [-77.32346713621872, 34.64600014661262], [-77.32370066324447, 34.646840825793205], [-77.32293753739927, 34.64704812498245], [-77.32186591480004, 34.64589062563968], [-77.32141412212644, 34.645472114304795], [-77.32134216550197, 34.64499720506351], [-77.32100048621729, 34.6443190967823], [-77.32091587951601, 34.64421167164175], [-77.32090084290766, 34.644192579461716], [-77.32087863408626, 34.64416188375271], [-77.3203257896086, 34.643448591237046], [-77.32039810838279, 34.64308909088612], [-77.32041373390156, 34.64301454849853], [-77.32045660682249, 34.64281002430675], [-77.32046863362842, 34.642752650129594], [-77.32050480883784, 34.64258007617656], [-77.32051510515089, 34.642530957609964], [-77.32050600189622, 34.64239181424661], [-77.32040415338807, 34.64242732989856], [-77.3203760043879, 34.642455087319114], [-77.32031185922315, 34.64248908102941], [-77.32023729366054, 34.64256148930673], [-77.32014728911975, 34.64262908739946], [-77.32017451579804, 34.64288025835531], [-77.31996269073201, 34.64278834202712], [-77.3197994913969, 34.64292913425065], [-77.319652318888, 34.643059941329625], [-77.3194412434298, 34.643380382976915], [-77.31938057282184, 34.643473545124], [-77.31932513457332, 34.64358576276901], [-77.31925130060979, 34.64402021886398], [-77.31899254227164, 34.64433494538174], [-77.31895770370582, 34.64441342016576], [-77.31892618226998, 34.644484422166784], [-77.31883482850625, 34.644966071833586], [-77.31866374183826, 34.645364366299425], [-77.31814766192878, 34.64650591883793], [-77.31714850570505, 34.64606074394813], [-77.31692368133298, 34.64678795403458], [-77.31623801539503, 34.64653322180888], [-77.31584250690118, 34.64575103352513], [-77.3150778442299, 34.64423874835983], [-77.31386247759994, 34.64429563455851], [-77.31191997459328, 34.643846721279786], [-77.3111932570844, 34.64375650410806], [-77.3108225262134, 34.643478069997144], [-77.30938259789006, 34.64326030249809], [-77.3087634131842, 34.64296215350247], [-77.30850563772506, 34.64312549388208], [-77.30819820189875, 34.64303992228581], [-77.3066203695536, 34.642612248854874], [-77.30543757526708, 34.6405968403872], [-77.30510557510094, 34.64047031645375], [-77.30536440546022, 34.64023191666046], [-77.30621826974648, 34.638520078868964], [-77.30607305225735, 34.63696194669251], [-77.3055480987507, 34.63555572996119], [-77.30574258785828, 34.632735446162954], [-77.30728859426274, 34.63004375222668], [-77.30784599378177, 34.62936068921581], [-77.3082503023241, 34.629082008789965], [-77.30929117179635, 34.628041031052135], [-77.30936310984706, 34.62800869812481], [-77.31045530379863, 34.62730877359982], [-77.31149397603892, 34.62742926547018], [-77.3119971665513, 34.627386322402], [-77.31301400107716, 34.627299536769726], [-77.31341901311906, 34.627515855267006], [-77.31322085736726, 34.62770778392521], [-77.31327422533506, 34.628379666902276], [-77.31326002194588, 34.628411847940534], [-77.31346531732204, 34.6290707972369], [-77.31354723322528, 34.62918622030003], [-77.31364268330296, 34.62943683125127], [-77.31393503018339, 34.62997704212259], [-77.31402291811442, 34.63026225199442], [-77.3140914703074, 34.63052358515918], [-77.31411554477543, 34.63079627139711], [-77.31442821955963, 34.63115876327708], [-77.31466521983282, 34.63128614215158], [-77.31507850544051, 34.63150826486323], [-77.31512450954745, 34.63152476583322], [-77.31514472837297, 34.63153932091319], [-77.31563451105792, 34.63166304658852], [-77.31586323157971, 34.631929780029964], [-77.31624031459134, 34.63219299676233], [-77.3164563658593, 34.63233170218208], [-77.31659080720135, 34.63236542569581], [-77.31707617886917, 34.632922397630544], [-77.3172606330218, 34.63303517832773], [-77.31740581644351, 34.63323681924197], [-77.31764511393345, 34.63342185509111], [-77.31784070316988, 34.633661573148125], [-77.31799092045367, 34.63388506636265], [-77.31818073278743, 34.63434375313428], [-77.31819756903563, 34.6344566272834], [-77.31815856161603, 34.63499046969655], [-77.31814112539371, 34.63530833657853], [-77.31815258757388, 34.635652319862245], [-77.31813454157604, 34.63573122553517], [-77.31818839747592, 34.635789300370746], [-77.31859183419876, 34.63609052691367], [-77.31860817170585, 34.63610617073613], [-77.31862300127726, 34.636112468931586], [-77.3186347628405, 34.63610272472814], [-77.31913857129283, 34.636204139125105], [-77.31927218017375, 34.636157157949306], [-77.31937479786104, 34.63612656624908], [-77.31942372120801, 34.63611474020546], [-77.31948400964615, 34.63609434576147], [-77.3195736236836, 34.636064156877595], [-77.31983013811652, 34.635983183272145], [-77.31987465991743, 34.635969129153615], [-77.31990911983958, 34.63595825114769], [-77.32017961603515, 34.63587286262727], [-77.32037757857435, 34.63572841467809], [-77.32042221279957, 34.635507403768074], [-77.3207219297914, 34.635365987515115], [-77.32097819574591, 34.63508771406409], [-77.32116024418221, 34.63512466185983], [-77.32202117749644, 34.63509001097346], [-77.32227935332341, 34.63519108829723], [-77.3228128210395, 34.63533345483732], [-77.32305452295739, 34.635340238828974], [-77.32325437749151, 34.63545129180419], [-77.32302966968845, 34.63553599942486], [-77.3229932828961, 34.635558402501296], [-77.32283235411045, 34.63577991918568], [-77.32269270845886, 34.63588865989398], [-77.32273814117093, 34.63596636874911], [-77.32278484731607, 34.63597472025774], [-77.32309959949512, 34.636088101778064], [-77.32324943896907, 34.636102127976656], [-77.32349401764449, 34.63626240961767], [-77.32370244659009, 34.636353248532124], [-77.32380436491206, 34.63640969560858], [-77.32413562361593, 34.63664361902038], [-77.32427958233703, 34.63670342809368], [-77.32447972921292, 34.63658478943936], [-77.3247181251895, 34.636638464754405], [-77.324864444929, 34.63690663777406], [-77.32487392805346, 34.63690395451697], [-77.32501589800323, 34.63686378406116], [-77.32501631213381, 34.636724143856846], [-77.32512130558135, 34.63659155161895], [-77.32525983317947, 34.63644225553923], [-77.32531015391415, 34.636331211012696], [-77.32538390115275, 34.63630504363264], [-77.32562501902352, 34.63599128473193], [-77.32563722520472, 34.635972358593094], [-77.32564122110057, 34.63596796325142], [-77.32571785614397, 34.63537725185889], [-77.32599963002286, 34.63458847222792], [-77.32670158890755, 34.635008239361035], [-77.32672696083793, 34.635022473729464], [-77.32679743412554, 34.63505081692888], [-77.32721408674925, 34.63514160598274], [-77.32739918451172, 34.63518193820506], [-77.32758753796031, 34.63512137997125], [-77.32760342419198, 34.63485486900415], [-77.3278627059225, 34.634711018188455], [-77.32793122107748, 34.63464314097591], [-77.32806174759429, 34.634611577840765], [-77.3284697033693, 34.63413647910994], [-77.32866714959292, 34.6341276223214], [-77.32878374345647, 34.63410629021695], [-77.32889119730248, 34.634117572162296], [-77.32902630617465, 34.634129379083944], [-77.32910915514016, 34.634132737885736], [-77.32917706188044, 34.63412562695139], [-77.32936323688973, 34.634110377108954], [-77.32941736977246, 34.63407353386985], [-77.32950721019517, 34.634046024378705], [-77.32971343961356, 34.63395384463631], [-77.33016130962748, 34.63418837140781], [-77.33079193127342, 34.63379860115947], [-77.33104537587188, 34.63438272914923], [-77.33075184930206, 34.63473987929589], [-77.33059603157072, 34.634866364795144], [-77.33060436521603, 34.63493581085537], [-77.33057262283634, 34.6350443944167], [-77.3305770707154, 34.63507996209006], [-77.33056990681247, 34.635098973097854], [-77.33058050141909, 34.63508363012638], [-77.33071698286271, 34.63509479928642], [-77.33086005754367, 34.63525213710545], [-77.33093675129086, 34.63526362351161], [-77.33121986355462, 34.63524719783254], [-77.33125825873024, 34.63527059781304], [-77.33141841868675, 34.63542808445725], [-77.33145167167777, 34.63543671981547], [-77.33153052253806, 34.635493138543126], [-77.33155957964135, 34.635494203486886], [-77.33159966719165, 34.63537667301637], [-77.33163054450056, 34.63535743218269], [-77.33158739730331, 34.63531557254116], [-77.33151539321585, 34.635236122439025], [-77.3314349949567, 34.635173263195455], [-77.33131622526298, 34.6350564493319], [-77.33109861130534, 34.63439638837443], [-77.33108828360422, 34.63437684281832], [-77.33098305694497, 34.63362114304514], [-77.33098509403551, 34.63354701394999], [-77.3312503830355, 34.632891083996306], [-77.33123411050003, 34.63252094545485], [-77.33120368790512, 34.63182905338148], [-77.33110448151146, 34.6308842088241], [-77.33101713913811, 34.63016667330207], [-77.33094605759538, 34.62958258270008], [-77.33033461976817, 34.626884347535196], [-77.3303277510851, 34.6236664138574], [-77.33031561306407, 34.62351104038217], [-77.33237904983498, 34.62172359333814], [-77.3332010394465, 34.621011510672744], [-77.33404141240904, 34.62047826586288], [-77.33461618036355, 34.62011355845563], [-77.3359220766721, 34.62088371186521], [-77.33611950840161, 34.62095534746931], [-77.33749197408376, 34.62168392457572], [-77.33812766530323, 34.621570910118976], [-77.3387573166807, 34.62160983799499], [-77.33930273665547, 34.62137188236214], [-77.3399307275559, 34.62107805176597], [-77.34086948568196, 34.62073363361566], [-77.34110324616115, 34.62054194384804], [-77.34115157265367, 34.62042943922552], [-77.34201190590129, 34.61869245096342], [-77.34226399697941, 34.618799282551294], [-77.34478457295813, 34.61974897806094], [-77.3458577285791, 34.620039725364684], [-77.34753734113531, 34.620706138863675], [-77.34780005669383, 34.620785634029446], [-77.34853959295576, 34.621009399771076], [-77.34889632913024, 34.62109803189635], [-77.34900823209328, 34.62109371975529], [-77.34998237024995, 34.62105618040487], [-77.35016572915299, 34.62104412235806], [-77.3502826908411, 34.620949312318245], [-77.35036987883261, 34.62075635024962], [-77.35169270587178, 34.619792553145345], [-77.35301883413005, 34.620375332741474], [-77.35321067379957, 34.620410788562985], [-77.35326919937103, 34.62044867931536], [-77.35348423500193, 34.62054002062786], [-77.35371362000177, 34.62027538763718], [-77.35405795791385, 34.61986092889961], [-77.35428462887575, 34.619588096473784], [-77.35484715211837, 34.61844620115548], [-77.35485725873829, 34.618423537428036], [-77.35487247412618, 34.61841047705944], [-77.35581596867213, 34.617619448307344], [-77.35594706641447, 34.61740677308525], [-77.35599509111219, 34.61701347929016], [-77.3560526066305, 34.61654248608068], [-77.35506007480677, 34.616457128698265], [-77.35484854575046, 34.61587360798573], [-77.354366705276, 34.61560593221296], [-77.35371112470885, 34.61395499653409], [-77.35352237046438, 34.61351011139086], [-77.35355335908586, 34.613203974866295], [-77.35381185773568, 34.61065061692851], [-77.3559030215871, 34.61033689012389], [-77.35642835318778, 34.610120436228236], [-77.3571729363033, 34.61048449764998], [-77.35721649238504, 34.61050163815239], [-77.35734676558494, 34.610552903528486], [-77.35800476762526, 34.610629701684665], [-77.35848141182498, 34.609913172450874], [-77.35879345559688, 34.60993433574717], [-77.3590533755416, 34.60988704110663], [-77.35918766694839, 34.60984483974987], [-77.3595536780168, 34.61009497222911], [-77.3591873361823, 34.61051374974613], [-77.3591201878801, 34.61050958339045], [-77.3587930701886, 34.61070654032826], [-77.3584030026847, 34.61110967053646], [-77.35868561186177, 34.61180295406651], [-77.35876803740342, 34.61190624403127], [-77.35877735112105, 34.61192118195353], [-77.35879245669089, 34.61193735905685], [-77.35910352230624, 34.612371800806514], [-77.35948447725704, 34.61265224521297], [-77.3595332997895, 34.61269599077362], [-77.3595804122295, 34.61275174935401], [-77.35990514109018, 34.6129415542787], [-77.35998600713523, 34.61299220119016], [-77.36001180648225, 34.61304113919212], [-77.36018001273334, 34.61340125195855], [-77.36024588001898, 34.613523735309734], [-77.36033641083546, 34.613803296612595], [-77.36036825620464, 34.61383213819144], [-77.360509160802, 34.614051115338086], [-77.36064507646603, 34.61405713460931], [-77.36076233502854, 34.61405720771266], [-77.36087834086825, 34.61402492838214], [-77.36102587562071, 34.613987875662374], [-77.36115660970981, 34.61386833432407], [-77.36143698614283, 34.61376752487234], [-77.36155086082218, 34.613726297924536], [-77.36168381662445, 34.61375258433425], [-77.36192757863411, 34.613593165565035], [-77.36194511149363, 34.61358214348538], [-77.3619491448305, 34.613575524140316], [-77.36194858269397, 34.61357126424244], [-77.36204945739811, 34.61324440964772], [-77.3620854388417, 34.613127012308865], [-77.3622102244294, 34.61282388460101], [-77.36226154675393, 34.61267711051691], [-77.3622989374719, 34.612627793735555], [-77.36233976463073, 34.61254965864547], [-77.36251701615669, 34.612215784984535], [-77.36259859472214, 34.612058024722344], [-77.36273428226166, 34.611797511716816], [-77.36275544392629, 34.61175691179916], [-77.36275971794134, 34.61135892555216], [-77.36276469659879, 34.61133102581622], [-77.36277129406467, 34.61129045772127], [-77.36273452771721, 34.611253233255454], [-77.36248183297721, 34.61109949434257], [-77.36234046816487, 34.61100510036022], [-77.36232041529038, 34.610992026747056], [-77.36209087989062, 34.61073450022219], [-77.3619684780521, 34.61059652510587], [-77.36195908056187, 34.610584317215704], [-77.36197470667756, 34.610201275872754], [-77.36198403753757, 34.61016973185338], [-77.36214385768811, 34.609969066876054], [-77.36216265281512, 34.60995198111407], [-77.36234098992693, 34.60986202251278], [-77.3626880585248, 34.60969465080693], [-77.36273523878198, 34.60967896545938], [-77.36276901041396, 34.6096685586603], [-77.3628930540892, 34.60961433299124], [-77.36308532970756, 34.60953911600495], [-77.36312950666559, 34.609449452579035], [-77.36324760917111, 34.609265861290595], [-77.36342515125861, 34.60879505807043], [-77.3634560951898, 34.608684175516885], [-77.36344162629445, 34.607926247605405], [-77.36344107672947, 34.6078372284058], [-77.36336361169252, 34.60767512727254], [-77.36303714924301, 34.607046264922964], [-77.36296841288292, 34.60680639993905], [-77.36273688078397, 34.60605893637054], [-77.36259390980314, 34.60556609301673], [-77.36253874067096, 34.60541979279344], [-77.36247128463182, 34.60514296170782], [-77.36256547681221, 34.603717727886675], [-77.36273813859515, 34.60329906994867], [-77.36339528280575, 34.602890607989764], [-77.3635266302231, 34.60280308196367], [-77.36356853482036, 34.60276934792381], [-77.36356629925035, 34.602724546961475], [-77.36355813483878, 34.60269183912438], [-77.3633817765169, 34.60190199898435], [-77.36320759094161, 34.601422294241345], [-77.36330781490595, 34.599127819985746], [-77.3636817772459, 34.59846237253832], [-77.3643173033992, 34.59733148720484], [-77.36456024358984, 34.59689918216078], [-77.36549565163381, 34.59523457017792], [-77.36547590481332, 34.59480761691674], [-77.36358228315076, 34.594175371661386], [-77.36274250702981, 34.59380436752269], [-77.36240134936122, 34.5935520537053], [-77.36229199515375, 34.592355640521696], [-77.36116660556556, 34.59285249359482], [-77.3603182821505, 34.592153702057985], [-77.36003871533686, 34.59171143001822], [-77.3595912948802, 34.59079602409774], [-77.35946307493954, 34.59057859276217], [-77.35959143950494, 34.590508593949565], [-77.35969508893659, 34.59043357064962], [-77.36064171180053, 34.58984186814805], [-77.36116819754025, 34.589564055960956], [-77.36122506883254, 34.589537107736554], [-77.36186301361244, 34.58948459760705], [-77.3619563795974, 34.58947691237821], [-77.36205935660138, 34.589466685026544], [-77.36262965358539, 34.589397434993586], [-77.36274457831246, 34.58934986884672], [-77.3628134462542, 34.58932136485585], [-77.36290773044446, 34.589233609285095], [-77.36295151008895, 34.58900453836055], [-77.36303066715683, 34.58879135557522], [-77.36304275422631, 34.58868597224715], [-77.36309698677823, 34.58835725213019], [-77.3635334363305, 34.58777664717324], [-77.36370352065235, 34.58760397692191], [-77.36392760569292, 34.587538574413905], [-77.36424818561335, 34.587342394300606], [-77.36423649234678, 34.58725217389634], [-77.36432191245734, 34.586989759187304], [-77.36441177746983, 34.58656634336888], [-77.36448733873183, 34.58645884845046], [-77.36452453901009, 34.58623554624276], [-77.36432226978445, 34.58619493203071], [-77.36417553485856, 34.58607918886296], [-77.3639840032392, 34.58604673320768], [-77.36377900532226, 34.58597541424633], [-77.36353423976104, 34.586025708761966], [-77.36340628393349, 34.5859033116212], [-77.36274646321243, 34.585322621939035], [-77.36260483011615, 34.585184338721575], [-77.36248149525068, 34.58504942869448], [-77.36178455195692, 34.584488356606656], [-77.36169692950489, 34.58431327458955], [-77.36165863344108, 34.58399516378055], [-77.3615704800622, 34.58348237094138], [-77.36148188312914, 34.583160510597374], [-77.36145297913973, 34.58265017923043], [-77.36134536728306, 34.58247850472728], [-77.3612433157367, 34.58190816681447], [-77.36125049043136, 34.58183022331006], [-77.36125055139657, 34.581745592602715], [-77.36117205939412, 34.58165252760439], [-77.36103949357661, 34.58115458974341], [-77.36079071270356, 34.581047307010365], [-77.36054311976501, 34.58091189692745], [-77.36038439457596, 34.580851002590066], [-77.36016293758554, 34.58089909420142], [-77.3595962965218, 34.58092784976208], [-77.35909244153598, 34.580985527997925], [-77.35880817497218, 34.58104652131719], [-77.35854227260765, 34.58108449806953], [-77.35801997950742, 34.58130047542624], [-77.35737948663972, 34.581379288014375], [-77.3564437932799, 34.58140615049137], [-77.35519965028192, 34.58136064483852], [-77.35455165687978, 34.58143668372271], [-77.35329240064824, 34.57991914399364], [-77.35195541212798, 34.57977162269295], [-77.3505567450359, 34.57952430776856], [-77.35014047944736, 34.57945173351758], [-77.3493753209489, 34.57931832227051], [-77.34777674485838, 34.57952322127725], [-77.34698784143355, 34.58011264617508], [-77.34641443608244, 34.57995085042744], [-77.34491778681011, 34.579618430431005], [-77.34383599622852, 34.57956282208722], [-77.34328902632929, 34.579320134342495], [-77.34259181520656, 34.579063154305175], [-77.34226050887702, 34.57870238228989], [-77.34184494707462, 34.57827771566399], [-77.34124303867986, 34.577916190872976], [-77.3409177385642, 34.57771236013316], [-77.34068525183346, 34.577573253644644], [-77.34026070843422, 34.57760003580174], [-77.33989722744525, 34.57755821928432], [-77.33955682705852, 34.57767624839132], [-77.33910916386161, 34.577595246417204], [-77.33833451751096, 34.57749967162721], [-77.33831046415618, 34.57750034916767], [-77.33753306056057, 34.577633978044894], [-77.33701564454998, 34.57796680393696], [-77.33674474272163, 34.5779907108068], [-77.33658512588731, 34.577908881515924], [-77.33595662930936, 34.57808171690411], [-77.33545966005107, 34.57821235687165], [-77.3351684846916, 34.57820897819099], [-77.33491248892904, 34.578253066237465], [-77.3343802751614, 34.57841280825155], [-77.33389851918977, 34.57845308115134], [-77.33359217638574, 34.578476822921004], [-77.33330221904464, 34.57852111721953], [-77.33280405151578, 34.578570513783205], [-77.33262043862567, 34.57850463047137], [-77.33211955331713, 34.57849022555521], [-77.33201603338115, 34.57853505997069], [-77.33189093272335, 34.57854636560795], [-77.33162197433906, 34.57857645565171], [-77.33137221575923, 34.57864163469148], [-77.33122786251579, 34.57867930611455], [-77.33060754496009, 34.57877684167244], [-77.33022586128881, 34.57888121239509], [-77.33032864900807, 34.57851618684022], [-77.33044013347701, 34.57830725149084], [-77.33063122916606, 34.577949115088614], [-77.33075002197317, 34.57772648023277], [-77.33083475734139, 34.577606400410595], [-77.33100433073233, 34.577447955340254], [-77.3312290033769, 34.57734108292559], [-77.33160067712724, 34.57715544320042], [-77.33167120728194, 34.5771178372978], [-77.33201742387061, 34.57688613252227], [-77.3321359093303, 34.57680581492743], [-77.33272958632257, 34.576674832395824], [-77.33280564623716, 34.57665805129182], [-77.33287128243661, 34.57664323691018], [-77.33348183137619, 34.57648477177715], [-77.33358100358514, 34.57645668412378], [-77.33359092286199, 34.575623898606615], [-77.33359108797666, 34.57561998881937], [-77.33359068161016, 34.57561589406796], [-77.33343157270558, 34.57497000456711], [-77.33332617332584, 34.57480898806075], [-77.33312638704521, 34.5744940550114], [-77.33301626441514, 34.574229210333385], [-77.3330614575867, 34.57399795967649], [-77.33320205210856, 34.57378009592891], [-77.33335204930484, 34.57369319607216], [-77.33359618671109, 34.57361883305121], [-77.33385956984326, 34.57359945669484], [-77.33409745048431, 34.573540011862534], [-77.33438436335153, 34.57340350944189], [-77.33440631042647, 34.57338010633223], [-77.33454092504476, 34.57310464967426], [-77.33469483985877, 34.57291408928496], [-77.33496213215068, 34.57264847951767], [-77.33517312017884, 34.57246564653063], [-77.33560294231017, 34.57232052086249], [-77.33596138368863, 34.57212251372613], [-77.33625790654237, 34.57236965810856], [-77.33654232649232, 34.57242565673804], [-77.33674911083763, 34.572449430298576], [-77.33683792694876, 34.5725102416625], [-77.33704607543581, 34.57257606970802], [-77.33714298076242, 34.572607652348175], [-77.33750549408373, 34.5725439926474], [-77.33753701384725, 34.57255871030724], [-77.33757442792898, 34.572540405131335], [-77.33765333188201, 34.572488761085616], [-77.33793123420827, 34.57226777499302], [-77.33807280015863, 34.57215635756526], [-77.33812834889551, 34.5721151235794], [-77.3381954440562, 34.571986274086335], [-77.33812855214622, 34.57185252382749], [-77.33809024337212, 34.571830426839895], [-77.33805351663875, 34.57171343971773], [-77.33796320254321, 34.571595124459634], [-77.33793178957954, 34.57155245481944], [-77.33769085175445, 34.571469431868344], [-77.3376780347996, 34.57121158425372], [-77.33753823407613, 34.57099677233332], [-77.33738648503422, 34.57099248173018], [-77.33720921758302, 34.570854447853485], [-77.3370058930775, 34.5706085524012], [-77.33700251413096, 34.57045962588686], [-77.33675080541516, 34.570306952615624], [-77.33656411351835, 34.5702992924343], [-77.33614194212194, 34.57015881034077], [-77.3360215453179, 34.57011302523397], [-77.33596302739801, 34.57006932356545], [-77.3358870813223, 34.570113652883734], [-77.33570906484228, 34.57022104343313], [-77.33532506935562, 34.57043821228979], [-77.33517457593436, 34.57066775751182], [-77.33486425251388, 34.5708573502269], [-77.33459348468841, 34.571230499169516], [-77.33447863808414, 34.571346779619084], [-77.33438597605111, 34.571433392935624], [-77.33406216992776, 34.57180737206923], [-77.33359750265174, 34.572028995442146], [-77.33324015062658, 34.57227411681808], [-77.33298947453085, 34.572504487019856], [-77.33280897717833, 34.572673295406425], [-77.33228031245791, 34.572981445668965], [-77.33202062513836, 34.57309823745867], [-77.33182668551188, 34.573117403441074], [-77.331626639082, 34.57308386330875], [-77.33155385938805, 34.57301951272377], [-77.33123295909675, 34.57271206806426], [-77.33115747267816, 34.57265485482125], [-77.33111143250571, 34.57258008189403], [-77.33095253896826, 34.57230037941767], [-77.33088415584382, 34.57218820867176], [-77.33087822057269, 34.572147283922995], [-77.33078377401525, 34.571778096984374], [-77.33077525150722, 34.571424626800514], [-77.33082611757732, 34.5709229351081], [-77.3307223174301, 34.57064092833427], [-77.33060932393349, 34.57027985014867], [-77.3305467530783, 34.57011401031257], [-77.33051746402477, 34.57004259166349], [-77.33044742576857, 34.569873321234425], [-77.33036189830952, 34.56971603981444], [-77.33044762716217, 34.56964118959156], [-77.33070016552827, 34.569514891760754], [-77.33109582017993, 34.56933691283301], [-77.33123590449122, 34.56927646040015], [-77.33131748014938, 34.56924203206762], [-77.3316028220222, 34.56911314915984], [-77.33163003854595, 34.569096360940385], [-77.33164048080603, 34.56909648407914], [-77.33193251263825, 34.56896704029633], [-77.33202425964078, 34.568811743284876], [-77.33233001994833, 34.56867926779465], [-77.33245159667904, 34.56860236779647], [-77.33254379896204, 34.56841841398372], [-77.33241715165397, 34.568147023096756], [-77.3321994200468, 34.56799032191399], [-77.33202501972491, 34.56791723920236], [-77.33169425845102, 34.567401851765666], [-77.33148251215478, 34.5671684943447], [-77.33132160289132, 34.566606337987], [-77.33129103234954, 34.566553847628896], [-77.33123839299404, 34.566381190005146], [-77.33107553108516, 34.56596851100427], [-77.33105964103952, 34.56579491310881], [-77.3309617610708, 34.56551007189859], [-77.33091824516073, 34.56539069806301], [-77.33089836366827, 34.56533640621362], [-77.33084534885256, 34.565315315119065], [-77.33068528781786, 34.56525163699173], [-77.33045154553083, 34.565133379281555], [-77.33038093055323, 34.5651194954612], [-77.33015876140936, 34.56507531782991], [-77.32978955362827, 34.56499281035488], [-77.32966417262257, 34.564509777541915], [-77.32960633661183, 34.56436809760695], [-77.329597911894, 34.564306849047426], [-77.3295315099104, 34.564173111260594], [-77.32966469097123, 34.56392133369989], [-77.32988562413249, 34.563654254193715], [-77.32997916724929, 34.56340297847039], [-77.32966525622098, 34.56327991051852], [-77.3292809567315, 34.56308900955871], [-77.32926901069963, 34.5630831655147], [-77.32926316279374, 34.5630723755635], [-77.32899904281771, 34.56269476821322], [-77.32904933211324, 34.56250295194845], [-77.32918168792953, 34.562146323388525], [-77.3293782154975, 34.56179119841807], [-77.32953937530601, 34.56105673100903], [-77.32935350471496, 34.56094567480338], [-77.3288799338607, 34.56038458605686], [-77.32866292917234, 34.56042966588521], [-77.32838268192356, 34.56054948498312], [-77.32809200120965, 34.56044540460625], [-77.32796916760488, 34.56042794422606], [-77.32769804471096, 34.56046435605282], [-77.32734734039937, 34.560431476514495], [-77.3273041357135, 34.56043095532506], [-77.32726834764127, 34.56043483117898], [-77.32691016482629, 34.56046533860369], [-77.32670954310153, 34.56047656930236], [-77.32691026925772, 34.56035140224063], [-77.3269495130955, 34.560059552763434], [-77.32718961578453, 34.5601067787824], [-77.32730443058739, 34.56010757739888], [-77.32748789474206, 34.56013792495555], [-77.32750827859164, 34.56014207234087], [-77.32769822984253, 34.5602602586842], [-77.32802171562979, 34.5602120298226], [-77.32809220311538, 34.56022163394809], [-77.32814277832938, 34.56021610519133], [-77.32885643354707, 34.56014248125486], [-77.32888019108981, 34.56009650898348], [-77.32892953013977, 34.56010435517042], [-77.32965715948015, 34.56004115133089], [-77.32946832147793, 34.55944690292414], [-77.32936425609682, 34.55924597933971], [-77.3291497578218, 34.55911212451913], [-77.32889195762831, 34.55883935208211], [-77.32888505333986, 34.558829668080364], [-77.32888171240408, 34.55882570326521], [-77.32887138233583, 34.55881399220456], [-77.32867052331027, 34.55836642591706], [-77.32844506350818, 34.55819713541828], [-77.32839699760059, 34.558160922684486], [-77.32838970102205, 34.55808267390648], [-77.32868840579023, 34.55787422688479], [-77.328777518372, 34.557774636066725], [-77.32891956269808, 34.557651987504556], [-77.32911744969451, 34.557322934455996], [-77.32906268051833, 34.556919794858246], [-77.3290565819044, 34.55684205358565], [-77.3290828732249, 34.55674953479863], [-77.32899409190249, 34.556606220615656], [-77.32905256781572, 34.55653113668819], [-77.3289447194163, 34.55656994018847], [-77.3286260609727, 34.55661236417038], [-77.32839670772161, 34.556595587203034], [-77.32816017203174, 34.55653714229507], [-77.32811617724519, 34.55651532715956], [-77.32805297350892, 34.55649666388471], [-77.32797119279934, 34.556388434761125], [-77.32762896487091, 34.55606797207546], [-77.32757049229366, 34.55596273455028], [-77.32743392875479, 34.55560637349581], [-77.32742838533639, 34.55558757449947], [-77.32739682689564, 34.55559314023981], [-77.3272844536579, 34.55562785468286], [-77.32674077008605, 34.55578941853754], [-77.32660511894053, 34.55586834438645], [-77.32639761486843, 34.555884441772065], [-77.32517043506752, 34.55593164373496], [-77.3250460942387, 34.55594122934426], [-77.32503282524615, 34.555940610656144], [-77.32501013926047, 34.55594053215519], [-77.32345686033338, 34.55617014932958], [-77.32344435668202, 34.55617188703556], [-77.32343525809783, 34.55618096483667], [-77.3226589864421, 34.55670883119578], [-77.32244924387868, 34.55668108084374], [-77.32185884993176, 34.55734402963607], [-77.32181813367058, 34.55736750495622], [-77.32184611816032, 34.5573885286553], [-77.32184635996921, 34.55739553172863], [-77.32143021300135, 34.55817233660434], [-77.32129377639347, 34.55844712708343], [-77.32103689165875, 34.558972792560766], [-77.32103643833715, 34.55897372020801], [-77.32103633541686, 34.55897427224937], [-77.32084197558194, 34.55949127716597], [-77.32088159533845, 34.5598926379095], [-77.32003237396613, 34.56058681478452], [-77.31901709271436, 34.5637161975015], [-77.31926116436193, 34.56409385327153], [-77.31879587720988, 34.56433566979823], [-77.31863303484167, 34.564787193556846], [-77.31788205873124, 34.56688123480321], [-77.31712009720307, 34.567797605945486], [-77.31642407087553, 34.568918039191274], [-77.31547580185058, 34.57007099387626], [-77.31265044647397, 34.57218995978875], [-77.31114312507921, 34.5733204496163], [-77.3091666933677, 34.57480278221977], [-77.30815377604577, 34.57478592900128], [-77.30630504658771, 34.57614262694393], [-77.30353035416343, 34.5772634760065], [-77.3030474593152, 34.577571287363426], [-77.30204255539367, 34.5782553033215], [-77.29848618472394, 34.580351474901335], [-77.29514274941802, 34.580101190971824], [-77.29356660581806, 34.5813432159073], [-77.29190029964104, 34.582409984853804], [-77.29256279569606, 34.584799021574575], [-77.29148156668509, 34.587359666249284], [-77.2902444409458, 34.590316906342736], [-77.28987791882481, 34.59120127206523], [-77.2870892711119, 34.592299883969694], [-77.28595016565343, 34.592869433812865], [-77.28565318397756, 34.59295260693954], [-77.28528003414519, 34.59307085167017], [-77.28088597572531, 34.59471000819443], [-77.27946875299864, 34.595391666491224], [-77.27798642781481, 34.59610464181131], [-77.27665495929655, 34.597103269211644], [-77.27630040358625, 34.59737657785782], [-77.27605759116014, 34.5975513016033], [-77.27500898989334, 34.59866184603944], [-77.27430833924507, 34.60021395801607], [-77.27406814086807, 34.60083276789571], [-77.27382780373291, 34.602899282620896], [-77.2729554309658, 34.606247824358135], [-77.27269739199772, 34.607184345787296], [-77.27181202028278, 34.60789268277601], [-77.27092988920577, 34.60891940370191], [-77.27000484397135, 34.61000838151014], [-77.26883642698861, 34.61125186651658], [-77.26866650673334, 34.611427906102556], [-77.26801223051977, 34.61178781959953], [-77.26690024376109, 34.61244714966378], [-77.26656986052907, 34.61271908870578], [-77.26615423965347, 34.61254351000113], [-77.26576570579786, 34.61225209574837], [-77.26520984525317, 34.611908802013055], [-77.26298944788539, 34.61035229554117], [-77.26107545820084, 34.60924875659545], [-77.2591586244645, 34.60884731330003], [-77.25720381361062, 34.60906246433592], [-77.25704168465596, 34.60938116086189], [-77.25687909303977, 34.609700752609676], [-77.25753421862146, 34.61130522966502], [-77.25534430021129, 34.61266726141223], [-77.25417942444855, 34.613650617466796], [-77.25306187612577, 34.61472409174872], [-77.25233257802435, 34.615247683679186], [-77.25016334901929, 34.61747935834052], [-77.24943161846028, 34.617926703085494], [-77.2492799529403, 34.61819715368433], [-77.24709622970569, 34.621108684958244], [-77.24632025813395, 34.621734862207035], [-77.24387625615586, 34.62338496767126], [-77.24145178520342, 34.62512218827994], [-77.24024724080738, 34.62553615640828], [-77.23924305468358, 34.6257209307533], [-77.23326571518001, 34.62824784600524], [-77.23226338615528, 34.62895461642316], [-77.23005293457732, 34.63054205498193], [-77.22839998826552, 34.63163498789801], [-77.22597515750252, 34.63302058322515], [-77.22567883571979, 34.63361782791816], [-77.22638441844526, 34.63524684432161], [-77.22600949003399, 34.63594659389334], [-77.22702269920332, 34.636523346325134], [-77.22785813377729, 34.63819420287664], [-77.22834729505074, 34.639172543857974], [-77.22847712240166, 34.63943219868956], [-77.22869886086131, 34.63987565060896], [-77.22909616330708, 34.64067014516799], [-77.22889830942867, 34.6417408010922], [-77.22831991856282, 34.64294122557009], [-77.22799952221163, 34.644019175425825], [-77.2270927245515, 34.64539486975282], [-77.22472756280746, 34.64642869819477], [-77.22640032793258, 34.64755609030814], [-77.22636222745322, 34.648443096893736], [-77.2265839407502, 34.64895690606211], [-77.22642609538698, 34.65006185377789], [-77.22639368252598, 34.65033101014952], [-77.22638901373901, 34.650499249028684], [-77.22642748248693, 34.65101895713522], [-77.22642921505705, 34.65221923072948], [-77.2266078552488, 34.65335631184031], [-77.22665013249781, 34.654122046594416], [-77.22672542687584, 34.65558775185051], [-77.22666364803021, 34.65600856115247], [-77.22680720294329, 34.65622070849829], [-77.22687186350258, 34.656802555364436], [-77.22699607910522, 34.657920193736224], [-77.22737752505562, 34.6587974060125], [-77.22741709940898, 34.6588961065612], [-77.22740816127614, 34.658934937414216], [-77.22786635183745, 34.65987422811021], [-77.22832904797235, 34.66058780369865], [-77.22862562167545, 34.66141865685824], [-77.22902312106352, 34.661850816447206], [-77.22662415672106, 34.665105860860905], [-77.2288315938136, 34.66560652585078], [-77.22712317066133, 34.66646076199313], [-77.22526364030007, 34.66663629794627], [-77.22458855830297, 34.66586688194054], [-77.2245196104382, 34.66526658647841], [-77.22323146410943, 34.66398548696296], [-77.22299971111103, 34.663521951967994], [-77.22234502409917, 34.662212646103], [-77.22188256927718, 34.66128773890881], [-77.22176165396189, 34.66104591183017], [-77.22155513270386, 34.66063285186786], [-77.22090120560313, 34.659324878215656], [-77.2205237132689, 34.658569833686336], [-77.219545053076, 34.65793891101572], [-77.2187917158065, 34.65727298084161], [-77.21781827441427, 34.65664231774214], [-77.21707663048826, 34.65614938474752], [-77.21517957925553, 34.65584079681625], [-77.21106465001917, 34.65469155315262], [-77.20864696715039, 34.6541926197802], [-77.20519020379145, 34.65296259091954], [-77.20138770684795, 34.6521271665776], [-77.19954319081246, 34.65171732302783], [-77.1991502846017, 34.65156006769235], [-77.19835926696558, 34.65140069128217], [-77.1989600387444, 34.65193522248736]], [[-77.23280407263046, 34.68202913774992], [-77.23228906837524, 34.680800424463136], [-77.23248446054203, 34.6790330548086], [-77.23123473109601, 34.68063449304128], [-77.23153680700483, 34.680902984516564]], [[-77.3300290939397, 34.76830163721684], [-77.33080252210647, 34.766754883867016], [-77.3312388250761, 34.766292395277375], [-77.3323036043069, 34.765209713532734], [-77.33284617517862, 34.765382577293785], [-77.33367365669689, 34.76616099148987], [-77.33369825504478, 34.76630417311784], [-77.33373249899832, 34.766353356206146], [-77.33486568288826, 34.76698337212324], [-77.33572071596961, 34.76736313561113], [-77.33604900593217, 34.76765035595453], [-77.33661309651147, 34.76790801001501], [-77.33672783883583, 34.76802070943899], [-77.3369071545929, 34.768011346695985], [-77.33735241312306, 34.76822503925413], [-77.33774048375618, 34.76865932725326], [-77.33777871091993, 34.76872297084787], [-77.33829968687314, 34.76907348273108], [-77.33830518305876, 34.769138170689246], [-77.33838827267932, 34.76932337592327], [-77.33840948513654, 34.76936755855186], [-77.33841368150341, 34.76938001192686], [-77.33840776735462, 34.76945544524012], [-77.33842079442255, 34.76960969457064], [-77.33834566313578, 34.76966905379468], [-77.33818480435879, 34.76978147435989], [-77.33797623849351, 34.76990926482664], [-77.33768798552629, 34.76993785888769], [-77.3376676799877, 34.76994012631293], [-77.33764183291045, 34.76993883699779], [-77.33736771298604, 34.76994143556945], [-77.33712117936615, 34.769979404447874], [-77.33682668322277, 34.76985509454891], [-77.33679578245162, 34.76984774189027], [-77.3364271103691, 34.77012667794986], [-77.33645871580752, 34.770167480076736], [-77.33660178091262, 34.770346421054775], [-77.33659380967158, 34.770384784623936], [-77.33663771683688, 34.770391368444294], [-77.33681488587109, 34.77080458137367], [-77.33692040375571, 34.77092204399537], [-77.33701906606437, 34.77114053900238], [-77.33706664486513, 34.77125744348303], [-77.33709218242447, 34.771366965881796], [-77.33712167595496, 34.77149358614226], [-77.3371139373462, 34.771561586235244], [-77.33710564308242, 34.771739469602586], [-77.33710929957041, 34.77202046900933], [-77.33674482117438, 34.772633619799784], [-77.33679836446152, 34.772756333699725], [-77.33678275022692, 34.77300789418837], [-77.33659838092626, 34.77353448676039], [-77.33675963424045, 34.773736385031995], [-77.33727504088375, 34.77438170201086], [-77.33735528880284, 34.774529301880094], [-77.33800966050835, 34.77537133614773], [-77.3381496541475, 34.7754953369365], [-77.34005567432644, 34.7771835368103], [-77.34196177250737, 34.77887170326892], [-77.34419187645452, 34.780846650737715], [-77.34661814921319, 34.77934444785901], [-77.34757222082175, 34.77810231197007], [-77.34908658961021, 34.77496894267614], [-77.349007150387, 34.77400645765628], [-77.34962049624599, 34.772983815759474], [-77.35165708586572, 34.76974386943916], [-77.3526785481643, 34.76793801624066], [-77.35449436610207, 34.76873597186025], [-77.3548829457497, 34.76893750871055], [-77.35697375239383, 34.76845075003856], [-77.35742738498637, 34.76855774255593], [-77.35810901457187, 34.76866761019494], [-77.3586486464733, 34.768784428614914], [-77.35906476079433, 34.768875472305545], [-77.35923600725235, 34.768912939479755], [-77.35954255424386, 34.7690930869356], [-77.35987151316118, 34.76934941654528], [-77.36032569442709, 34.769578959844175], [-77.36035968948738, 34.76959245472753], [-77.3603953010256, 34.7696379671611], [-77.36050140868181, 34.769979710615836], [-77.36112120290414, 34.77045125560615], [-77.36120313437975, 34.770580104740915], [-77.36129768848073, 34.770650239991426], [-77.36143371829729, 34.770689018766326], [-77.36158920059663, 34.77086564765524], [-77.36164082738085, 34.77102779356994], [-77.3615627120552, 34.77116500476053], [-77.36106961229085, 34.77143548737952], [-77.36097389948048, 34.77143447716311], [-77.3609488444553, 34.77150939108705], [-77.3609729365834, 34.771568431627344], [-77.36063985581072, 34.7723856824227], [-77.36064298094577, 34.77252080317057], [-77.36051875765565, 34.77264998936215], [-77.36013054447778, 34.77305020783374], [-77.3598793895339, 34.77332428888805], [-77.359799174112, 34.773343946391634], [-77.35947210532754, 34.773470808252874], [-77.35912558755474, 34.77371053638414], [-77.35878597265241, 34.77384611298051], [-77.35851089197408, 34.774011525745415], [-77.35870729236703, 34.77429649619982], [-77.3587647183693, 34.77495281812611], [-77.35874238554045, 34.77521101651115], [-77.35879388450002, 34.77535672796124], [-77.35895752649228, 34.775845545776704], [-77.35900870762404, 34.77595602716187], [-77.35890068018651, 34.77628025014259], [-77.35885824331154, 34.77637003219978], [-77.35876705159164, 34.776502857135284], [-77.35866779848142, 34.776648154451955], [-77.35845274761994, 34.77678735020287], [-77.35812036637282, 34.77717089572939], [-77.35808321415092, 34.777189613187375], [-77.35804926374632, 34.77720537291442], [-77.35736030602408, 34.77750481930029], [-77.3573349588331, 34.77751461270159], [-77.35724814078668, 34.777581289122786], [-77.35685450942965, 34.77790569690305], [-77.35691982566911, 34.778282013952094], [-77.35698692600928, 34.77851128021968], [-77.35701135801177, 34.77857232505008], [-77.35689803447514, 34.77899522968602], [-77.35689534049254, 34.779038464619376], [-77.35687454964948, 34.77907550689669], [-77.3566935334238, 34.77940957991515], [-77.3566334695387, 34.77950605145912], [-77.35657900939164, 34.77964474930593], [-77.35642727048733, 34.77999312219212], [-77.35631599044314, 34.780289746869364], [-77.35607085251527, 34.780748717808656], [-77.35597550857302, 34.780953491583446], [-77.35593278908246, 34.78116067094339], [-77.35574399943032, 34.78143170784807], [-77.35581333905941, 34.78174837021279], [-77.35598465528548, 34.78207517160993], [-77.3561786524231, 34.78248882206742], [-77.35600430413776, 34.78277538926089], [-77.35576601644702, 34.78306593233201], [-77.35574200098151, 34.783095214353565], [-77.35573338860908, 34.783105715316644], [-77.35543315050745, 34.78333890196832], [-77.3551909524511, 34.783475114611385], [-77.35497192297944, 34.783590458869845], [-77.35461850887904, 34.78369665855746], [-77.35431330719202, 34.78379479699882], [-77.3537862685816, 34.78397247439706], [-77.35365688772575, 34.78399156126562], [-77.35347886096577, 34.78396408003788], [-77.35345013954013, 34.78423089644652], [-77.35360136319395, 34.78418264026676], [-77.35377852542389, 34.784229395141054], [-77.35416719736457, 34.784297624460066], [-77.35426913215393, 34.78438966493543], [-77.3543622014941, 34.78448155335903], [-77.35463913207194, 34.78473576426116], [-77.35477102851578, 34.78485957436774], [-77.35492068709507, 34.78505825132834], [-77.35532342503586, 34.785522177711705], [-77.3555204634026, 34.78582739772275], [-77.35555490198635, 34.785872091078915], [-77.35549074615312, 34.786221788016334], [-77.35547255735517, 34.78635259922067], [-77.3554652260549, 34.78636730676608], [-77.35545640926374, 34.786372447785695], [-77.35544635189632, 34.78637457340727], [-77.35539230249607, 34.786385996652996], [-77.35510450308621, 34.786446822619645], [-77.35505403660672, 34.78646318844091], [-77.35474861877444, 34.786567370615344], [-77.35465287281457, 34.786555906038245], [-77.35402565391793, 34.78684698193568], [-77.35393856550343, 34.786923945435326], [-77.35390163242137, 34.786981652728855], [-77.35384155734359, 34.78708367961255], [-77.35358943647316, 34.78751186666669], [-77.35345051105173, 34.78776828512056], [-77.35323482926239, 34.788047898237345], [-77.3530319003476, 34.788204482354566], [-77.35264313547326, 34.78832992649228], [-77.35292335111282, 34.78857801166512], [-77.3530318890642, 34.78867410283081], [-77.35318748370192, 34.78854177450056], [-77.35363347651948, 34.788196565889805], [-77.35375387060677, 34.78808101112038], [-77.35379854948549, 34.7880209916556], [-77.35383736652673, 34.78792553061887], [-77.35404244946392, 34.78754710582204], [-77.35415516939929, 34.78734704838824], [-77.35418739421971, 34.78729231952651], [-77.35436448854574, 34.78710056710207], [-77.3546276638397, 34.78698362618075], [-77.35486738730803, 34.78690677729748], [-77.35519364750814, 34.78683150423272], [-77.35526471005876, 34.78680777354745], [-77.35532412611859, 34.78679521606766], [-77.3556701710778, 34.786722079569884], [-77.35597353139181, 34.78654519193628], [-77.3561999791831, 34.78609090810465], [-77.35621024926078, 34.786068796642944], [-77.35621689570308, 34.78604284473729], [-77.35598515141866, 34.78543078155364], [-77.35598561850084, 34.78524660662238], [-77.35588092507157, 34.784878944464495], [-77.35555886747662, 34.784531717398764], [-77.35546485882446, 34.7841302151596], [-77.35574906880515, 34.78385564550743], [-77.35573638586126, 34.78366600402455], [-77.35599202575824, 34.78350417538551], [-77.35599953688003, 34.78347848037349], [-77.35602771679804, 34.78344412056106], [-77.35617772156697, 34.78326122019345], [-77.35624853673644, 34.783174875587235], [-77.35649259935195, 34.78277372258121], [-77.35678474359851, 34.78255420852527], [-77.356913320813, 34.78240018115143], [-77.35686953507292, 34.782201296370694], [-77.3567141577106, 34.782011153041466], [-77.35643992253581, 34.781487604570614], [-77.35651138317633, 34.7811410374753], [-77.35665191156899, 34.78083921935499], [-77.35671084064447, 34.780651606494615], [-77.35677083602894, 34.78045739984801], [-77.35688492310703, 34.78015329282716], [-77.35699445970054, 34.7799018109847], [-77.3570834852033, 34.779663549266175], [-77.35724937085092, 34.77936575257527], [-77.35734138001872, 34.779194570494354], [-77.3573833598661, 34.77904023284599], [-77.35770995110559, 34.77858362303434], [-77.3578777052694, 34.77835114490419], [-77.35794632537556, 34.778287817071345], [-77.35813212040247, 34.77810586265372], [-77.35844835965675, 34.77778688640914], [-77.35863636123759, 34.77741084539741], [-77.3587441487182, 34.77723234707456], [-77.35886849719932, 34.776976439453], [-77.35888245847556, 34.77693774028495], [-77.35891790006545, 34.77688631794382], [-77.35910468461398, 34.77661394194808], [-77.35918417418736, 34.77648410036417], [-77.35929023106155, 34.77616861277892], [-77.35940017688128, 34.77600046379612], [-77.35940571553667, 34.77579078065577], [-77.35926551698732, 34.775394102080156], [-77.35932337602465, 34.774725171596934], [-77.35962909882733, 34.774402884501555], [-77.35993088441774, 34.77422125093021], [-77.36018142050482, 34.773682906345456], [-77.36030351995285, 34.77352045823305], [-77.36037220643297, 34.7734455018631], [-77.36053432954536, 34.77327836517649], [-77.36092943702184, 34.77285935638281], [-77.36111290556701, 34.77268526631736], [-77.36143065375364, 34.77240138254707], [-77.3615261308443, 34.77233777311454], [-77.36219632093511, 34.77197418720839], [-77.3622135182599, 34.77196454496396], [-77.36222685050086, 34.77195666226753], [-77.36232284011622, 34.771899009452184], [-77.36246564112713, 34.77162815286485], [-77.36241009377393, 34.7714615662493], [-77.3623661802833, 34.771389351009084], [-77.36216413530916, 34.771072567180425], [-77.36201263946516, 34.7707632424305], [-77.36193540565348, 34.77066353408986], [-77.36168937620306, 34.77037769382889], [-77.36145544445955, 34.77010709133309], [-77.3613288613857, 34.76996470552014], [-77.36114974854222, 34.76970982497175], [-77.36100367461471, 34.76945360779666], [-77.36092935062999, 34.76935532078194], [-77.36049082564168, 34.769146658230454], [-77.36045534979837, 34.769132575526584], [-77.36042693284055, 34.76911821359066], [-77.36036075016915, 34.76906664308311], [-77.35960393407217, 34.76856830330849], [-77.359399746999, 34.76834922967997], [-77.35854717083963, 34.76802915628947], [-77.3583094241664, 34.76797768937166], [-77.35820380232722, 34.767960664843464], [-77.35718586416876, 34.76772057679007], [-77.3561526459046, 34.76796111933452], [-77.35495786468644, 34.76734144600634], [-77.35495394200885, 34.767306068666606], [-77.35588498542282, 34.76567175824539], [-77.35663305934196, 34.765498761712976], [-77.35759635500223, 34.765274010034446], [-77.3579213686417, 34.765188597046325], [-77.35816035809208, 34.765133868651716], [-77.35856316228396, 34.765041625561985], [-77.35869694777348, 34.764878723794745], [-77.35873136821755, 34.7647953534521], [-77.35881930662225, 34.76461823565475], [-77.35876318591447, 34.76439129788036], [-77.35876049791375, 34.764382615988715], [-77.3587593449821, 34.7643796099482], [-77.35875796811455, 34.76437095934741], [-77.35872628866719, 34.7640108044871], [-77.35870429539679, 34.76390294583439], [-77.35868144658161, 34.763651062559354], [-77.35869105887723, 34.76341737812148], [-77.35856085025745, 34.762987054265274], [-77.35855466484979, 34.76296011458924], [-77.35855029697343, 34.76294931608253], [-77.35853477580719, 34.76291265218833], [-77.35843129723845, 34.76266076707056], [-77.35835320902216, 34.76248898498466], [-77.35830072720087, 34.76236695861422], [-77.35813999724687, 34.76203086617033], [-77.35804873099934, 34.76177231260448], [-77.35782370068117, 34.761399896120345], [-77.35760982865949, 34.761321414900785], [-77.3575968622548, 34.76113065185487], [-77.3573784963303, 34.76087016781594], [-77.35725896358386, 34.76080281289914], [-77.35721581232147, 34.76069557148002], [-77.35715267589956, 34.7606163894163], [-77.3570529084028, 34.76056706362732], [-77.35696651922868, 34.76056656376555], [-77.35683873808742, 34.76066596902778], [-77.35677693357187, 34.760717771010746], [-77.35672266036448, 34.760763260113436], [-77.35640668904249, 34.76102809221037], [-77.35604686646549, 34.76132967498727], [-77.35602728732201, 34.761346084988745], [-77.35569577963331, 34.76167493385296], [-77.3552421990143, 34.76203737712222], [-77.35488170797346, 34.76223041939866], [-77.35370993834114, 34.76318733332923], [-77.35255950062862, 34.762726711219116], [-77.35097006761598, 34.764369423589194], [-77.34764134815264, 34.76347678596367], [-77.34654074855962, 34.76311837138846], [-77.34654376016027, 34.76273539208306], [-77.34655166138194, 34.762646214635865], [-77.34524941071882, 34.76215386913867], [-77.34470716847449, 34.76192445078309], [-77.34451327629245, 34.761848900076345], [-77.34405620570162, 34.761494584878456], [-77.34401610056246, 34.76149820796685], [-77.3435439997774, 34.761109225221254], [-77.34353824049657, 34.76110447991962], [-77.34353275109446, 34.76109995694799], [-77.34350894354458, 34.76109302634153], [-77.34299768359237, 34.760879655456414], [-77.34265857251616, 34.76099247115397], [-77.34235748467219, 34.76102105576945], [-77.34207968947146, 34.76110355343575], [-77.34182235896672, 34.76134532282982], [-77.34147203205218, 34.76184188704632], [-77.34117016268476, 34.76213681175627], [-77.34084442147844, 34.762454172004595], [-77.34078384592945, 34.76250889019367], [-77.34070215516726, 34.76259364690582], [-77.34003975625185, 34.763126376783354], [-77.33958978081006, 34.76360094700069], [-77.33942351610816, 34.7638571261016], [-77.33920215062236, 34.764141467862046], [-77.33942165500872, 34.76426938407855], [-77.33945110771157, 34.76459470704373], [-77.33972314835886, 34.76482592654486], [-77.33979959755564, 34.76503430197307], [-77.33993346076201, 34.76523795418463], [-77.34004764180865, 34.7653647900141], [-77.34015245296415, 34.7654732955396], [-77.34039202674931, 34.76588836406928], [-77.34068373224163, 34.766250119112016], [-77.34076200123503, 34.76636446859695], [-77.34078422158056, 34.76637518487192], [-77.34079717755729, 34.766388818066844], [-77.34109909758955, 34.766805621921584], [-77.34113524517132, 34.76689365819839], [-77.34144593013536, 34.76724543883799], [-77.34142179688715, 34.76746169852423], [-77.34145868017207, 34.767731066205855], [-77.34142252362216, 34.76785530922709], [-77.34155715318636, 34.767896634659294], [-77.34192771971716, 34.76786109394499], [-77.34244378615031, 34.767809151433134], [-77.34281635955361, 34.767687097956774], [-77.34366240718583, 34.76761194458035], [-77.34438039154804, 34.767552170161544], [-77.34519245644003, 34.76775756342429], [-77.34716649151568, 34.76841041347323], [-77.3470155730763, 34.76867960404103], [-77.34598251949497, 34.77052229498054], [-77.3453465402037, 34.77165673507075], [-77.34381667333146, 34.77249084678273], [-77.34326796777346, 34.772844094421636], [-77.34177295312438, 34.77359802895705], [-77.3410682090128, 34.77370076055537], [-77.34082339866285, 34.77344005804511], [-77.33984153080584, 34.77379807337016], [-77.33936056331866, 34.77337984310567], [-77.33905516061792, 34.773222657529416], [-77.33880095635455, 34.7732552656727], [-77.33838813559422, 34.77302578138318], [-77.33832871420847, 34.77299274946328], [-77.33828513278515, 34.772968522660626], [-77.33803648749043, 34.77283030080971], [-77.33803294857829, 34.77282594118934], [-77.3378272435463, 34.77265642176249], [-77.33778632858629, 34.77262325381076], [-77.33778379508514, 34.77262330319908], [-77.33778425299388, 34.77262119142194], [-77.33778443119334, 34.77261849924324], [-77.33771871372733, 34.77188501594422], [-77.33771897279206, 34.77165539484359], [-77.33767164907995, 34.771241923738856], [-77.33766397923543, 34.77117556130206], [-77.3376539921969, 34.77114645616078], [-77.3376337116106, 34.77108735184916], [-77.33749237102137, 34.77071171297319], [-77.33741726570346, 34.770540114471586], [-77.33739269926858, 34.77035648791232], [-77.33767584089318, 34.77034134974394], [-77.33787260016506, 34.77026572226192], [-77.33796253580249, 34.770222921026985], [-77.33807174693281, 34.77014491745967], [-77.3383811122953, 34.76995536612402], [-77.33861612910965, 34.76976920728995], [-77.3388170850358, 34.769703221520544], [-77.33886243429282, 34.76954914893721], [-77.33888791350998, 34.76940961898107], [-77.33874672042052, 34.76932003015335], [-77.3386942540466, 34.76916433065449], [-77.33866065478657, 34.76908943852262], [-77.33863725139346, 34.76881398972533], [-77.33837954111658, 34.768640602616166], [-77.33795259204045, 34.76792978414953], [-77.33786460078719, 34.767831313556655], [-77.33771085575287, 34.767757526829485], [-77.33700603527197, 34.76706389247493], [-77.33688428249503, 34.76700828066629], [-77.33603894078476, 34.76626869260691], [-77.33588459859429, 34.76620014142467], [-77.3356800473464, 34.766086417126985], [-77.33508791583297, 34.76523596460917], [-77.33506502391302, 34.76510271572678], [-77.33491705897023, 34.764241512678325], [-77.33484864163835, 34.76384330867594], [-77.33466255155267, 34.76276012851537], [-77.33438826967628, 34.76262061911358], [-77.33443019082115, 34.761986831308775], [-77.33399017774974, 34.76046958821814], [-77.33574909027905, 34.75902316521379], [-77.33684682406775, 34.759021043324125], [-77.33703418059295, 34.75901000804594], [-77.33716119445928, 34.75906017479658], [-77.33809333792206, 34.75920250307683], [-77.33843937213604, 34.759155275032555], [-77.33870051398586, 34.7591747032516], [-77.33898673800962, 34.75908551039046], [-77.33936083093148, 34.75896409028013], [-77.33950230621215, 34.75882029028908], [-77.33980349215881, 34.758697907443945], [-77.3400648090104, 34.75860326462511], [-77.34017400773263, 34.758566873286476], [-77.34051663119435, 34.75844224141228], [-77.34074623075786, 34.75832001092414], [-77.34126013559134, 34.75801079622563], [-77.34135835249442, 34.75791128376844], [-77.34149064517891, 34.757820019942734], [-77.34166314147241, 34.75771184489891], [-77.34152740548663, 34.75769355052645], [-77.34135127410903, 34.757661736774985], [-77.34100633668562, 34.75759943176352], [-77.3409582115935, 34.75759073903733], [-77.34093654164582, 34.75758644089911], [-77.34092055286496, 34.75756998759331], [-77.34075809468507, 34.757379510502936], [-77.34053155986129, 34.75713595340473], [-77.34051964010106, 34.75711864792973], [-77.34050347605336, 34.75709416516932], [-77.34034686201255, 34.75685732527062], [-77.34029546298203, 34.75677930021163], [-77.34024577570808, 34.756737964373784], [-77.34023604411311, 34.75668910078124], [-77.34018862257909, 34.75663161889294], [-77.34011671735003, 34.75664010968139], [-77.34003735063688, 34.75663679204817], [-77.33992111020697, 34.75663800363432], [-77.33946708603551, 34.7567454132434], [-77.33940224306505, 34.7567607532831], [-77.33910947005157, 34.7568435716531], [-77.33881272286429, 34.756932695639726], [-77.33873187087299, 34.757006013244784], [-77.33778737428224, 34.75730095295921], [-77.33701087540362, 34.75745131480354], [-77.33612809842872, 34.757719561183976], [-77.33534180449496, 34.75768760587847], [-77.33362712826876, 34.75807934456536], [-77.33285477578858, 34.757493214222436], [-77.33159994026124, 34.756925652168555], [-77.33155399589646, 34.756967730710365], [-77.33155717850461, 34.75690409069661], [-77.33032659255097, 34.75628358769147], [-77.32948064117578, 34.75585701506689], [-77.32851722256703, 34.75537119159231], [-77.32787635578325, 34.75501408461661], [-77.32746645106216, 34.754543026481116], [-77.32658385024622, 34.75368662653738], [-77.32673374942422, 34.75273944624154], [-77.32675526605843, 34.75268841398677], [-77.32674005337142, 34.7526190552169], [-77.32672936884047, 34.751717227735], [-77.32601145970554, 34.75171819795767], [-77.32588770559357, 34.75173210082414], [-77.32575526239653, 34.75174630062437], [-77.32541467725854, 34.75178281545553], [-77.32527455344038, 34.75178054221448], [-77.32489069318154, 34.751791470634956], [-77.3246941334321, 34.751716441395416], [-77.32437579204473, 34.75180060475661], [-77.32397870207706, 34.75209407077895], [-77.32358756708534, 34.75237890950605], [-77.323404464591, 34.75266009958893], [-77.32306679030998, 34.753191994276854], [-77.32306592878867, 34.75319349112496], [-77.32306572628089, 34.753193865514305], [-77.32306540975897, 34.753194450683566], [-77.32280769490312, 34.753716574480826], [-77.32277606003757, 34.75381094960461], [-77.32267610252839, 34.754124900469805], [-77.32250431659739, 34.75424549399607], [-77.32210882176608, 34.75442572000211], [-77.32186668095814, 34.75450989514959], [-77.32172826490627, 34.75456176321141], [-77.32143540500434, 34.75468122082408], [-77.32103328805036, 34.754934340509244], [-77.32088061049735, 34.75508741983542], [-77.32077285324306, 34.75535058314756], [-77.32073381992718, 34.75546271876878], [-77.3206333251637, 34.755851912496176], [-77.32061683959144, 34.75596610307965], [-77.32060934531309, 34.7561239312081], [-77.32028921203687, 34.75649833467083], [-77.32050550041848, 34.756738340196975], [-77.32074918451394, 34.757040007398466], [-77.3209287936713, 34.757201208638236], [-77.32118217112367, 34.757350765026736], [-77.32141979561578, 34.75761204128087], [-77.32176533838056, 34.75766583444637], [-77.32219311428202, 34.75769966807573], [-77.32230535715962, 34.75771963326028], [-77.3224063313957, 34.757716531599115], [-77.32293809020476, 34.75775338546669], [-77.32398635977572, 34.757839891453486], [-77.32412362503423, 34.75779698848338], [-77.32459276913553, 34.757537967882385], [-77.3245667414354, 34.757861891103175], [-77.32641862318438, 34.759287494225404], [-77.32703198764645, 34.76053880562962], [-77.32600725062969, 34.76156346368593], [-77.32430491264118, 34.763229650904606], [-77.32671517073796, 34.765365436286366], [-77.32862072304664, 34.76705383653454]], [[-77.35193115976388, 34.78769958085425], [-77.35177243684541, 34.787273759041035], [-77.3516855814026, 34.78716431650797], [-77.35158374754388, 34.787001268629744], [-77.35067581386294, 34.78644943264289], [-77.35068505990876, 34.78635665886083], [-77.35017618507152, 34.78614575390189], [-77.35054017977754, 34.786468038671515], [-77.35149343367858, 34.78731203414063]], [[-77.36771722939639, 34.783041163945086], [-77.36800645057693, 34.78068962700168], [-77.36879211462333, 34.77902360516294], [-77.3689634250661, 34.77878764086259], [-77.36902418075799, 34.77861076394013], [-77.36964927623954, 34.776790779520525], [-77.36968281628809, 34.776693126799344], [-77.36981826388335, 34.776658885284775], [-77.37095203937227, 34.77577397341051], [-77.37113467914958, 34.77447815206664], [-77.37160253491888, 34.77300054472667], [-77.37114226925215, 34.772098720689215], [-77.37060863812998, 34.77221781959275], [-77.36997557804148, 34.77169763372629], [-77.36972869431233, 34.77149339089877], [-77.36906451869298, 34.77099411725121], [-77.36901524596837, 34.77089790244864], [-77.36893283460827, 34.770869680771895], [-77.36878141647577, 34.77072695556671], [-77.36828090871852, 34.77031110999027], [-77.36793284673992, 34.769894536082724], [-77.36764640014391, 34.76968275411154], [-77.3670935075948, 34.769463799820414], [-77.36677736321778, 34.769454967963625], [-77.36656887834297, 34.76923884133549], [-77.36625295895749, 34.7690515160635], [-77.3661983493496, 34.76887274871709], [-77.3660278750089, 34.768571556128194], [-77.36583072120459, 34.76829624677268], [-77.36564245739542, 34.768118998137595], [-77.36599330046036, 34.76773636746382], [-77.36601789630305, 34.76770455457273], [-77.36604418884541, 34.76770036863927], [-77.36668289918468, 34.767570884715845], [-77.36685235211374, 34.767571941997765], [-77.36712954881136, 34.76752097177243], [-77.36725785483277, 34.767486459745754], [-77.3673499454905, 34.76748305873825], [-77.36755316499007, 34.76738960598266], [-77.36742389635023, 34.767228373601355], [-77.36730480792951, 34.76714739173941], [-77.36692913955282, 34.76689162605132], [-77.36688822576728, 34.76686376283713], [-77.366460131032, 34.766606545365], [-77.3663333783776, 34.76656520706514], [-77.36621765038399, 34.76653381529423], [-77.36572060885754, 34.76646613302343], [-77.36571854391427, 34.76646618709994], [-77.36571419434664, 34.7664664511997], [-77.36529685408252, 34.76652518163005], [-77.36505137207403, 34.766561513073206], [-77.36485729162305, 34.76655494466484], [-77.36453544388183, 34.766515340423], [-77.36450040450633, 34.76632127412532], [-77.36467041700803, 34.7662492737855], [-77.36475169484719, 34.766129608262986], [-77.36495371198495, 34.765963907735866], [-77.36497945233515, 34.76565009708226], [-77.36526889503116, 34.765317463939205], [-77.36535228570551, 34.7652213591243], [-77.36537610108948, 34.76515731794535], [-77.36547665723455, 34.76509695564189], [-77.36582065611638, 34.764826055936076], [-77.36601406072059, 34.76470334706973], [-77.36613609891694, 34.76451014869652], [-77.36614568362401, 34.76438058782843], [-77.36608785845283, 34.76408397212751], [-77.36589450638455, 34.76365795658172], [-77.365699552095, 34.76335312322017], [-77.36548353565254, 34.76303041641248], [-77.36539821876792, 34.762586062142375], [-77.36568898155707, 34.761983881200166], [-77.3660464157235, 34.76176132505027], [-77.36660205880514, 34.76119231200269], [-77.36660679832318, 34.76118666609218], [-77.36660988857642, 34.76118555926008], [-77.3666128673139, 34.76118394604496], [-77.36729414286349, 34.76080736697984], [-77.36737250046052, 34.760777060222026], [-77.36797424333032, 34.76054680526297], [-77.36803448879337, 34.76052093152193], [-77.36810142852995, 34.760475901561705], [-77.36883992892734, 34.760340966504955], [-77.36960723174997, 34.75970834980516], [-77.37071785529929, 34.759270108352105], [-77.37009850488214, 34.75801609366199], [-77.36760523542965, 34.75809702922423], [-77.36752240240895, 34.75805133627922], [-77.36744223416406, 34.758054728057104], [-77.3674017085988, 34.7581095756595], [-77.36627458111653, 34.757930368980986], [-77.36587172082727, 34.75792631786063], [-77.3656597644566, 34.75783856525858], [-77.3655074389405, 34.75788469124481], [-77.3651220700157, 34.75779219415274], [-77.3650548669938, 34.75771260035968], [-77.36464059115991, 34.75770240460417], [-77.3644506123964, 34.757653359735926], [-77.36443182200875, 34.75764913582405], [-77.36440300570618, 34.75764533095604], [-77.36389520795314, 34.757288019367614], [-77.36329404105888, 34.75725883104807], [-77.36326051086353, 34.75726468987337], [-77.363216191053, 34.75724695930445], [-77.362722215727, 34.756909382398746], [-77.36240441004352, 34.756845279983224], [-77.36212966540714, 34.75688704993807], [-77.3616330387282, 34.75667747602154], [-77.36166341170515, 34.75662676941891], [-77.36159661772204, 34.75665981942422], [-77.36152259124216, 34.75662393147876], [-77.36107151167083, 34.75640524904031], [-77.36100681525396, 34.75634333626463], [-77.36057626210699, 34.75604788085761], [-77.36047138007359, 34.755966709522234], [-77.36028888662926, 34.75588725070857], [-77.36011634487602, 34.755568869143566], [-77.36005858088956, 34.755495757926], [-77.36008635334912, 34.755427671178346], [-77.36010382743846, 34.75536750664069], [-77.36011191957374, 34.75493677535709], [-77.36012376548233, 34.75474697870561], [-77.36018204211781, 34.75461233318107], [-77.36005321284387, 34.754457449586525], [-77.35986761956204, 34.75436268790304], [-77.35981235095487, 34.7541082278975], [-77.35956098480928, 34.75403764160312], [-77.35946696231579, 34.75397966214892], [-77.35937792845857, 34.75398623746461], [-77.3592278559473, 34.75383968313456], [-77.35918730009367, 34.75380054118941], [-77.35915202619395, 34.75373279179501], [-77.35906480712617, 34.753618374564056], [-77.35918789362984, 34.753405856888385], [-77.3591909514015, 34.753282669728314], [-77.35930200287545, 34.75331808757398], [-77.35935021721139, 34.75333549951294], [-77.35947639249109, 34.753381066056654], [-77.35954729393873, 34.75340307302682], [-77.35966881969387, 34.75343017005446], [-77.35982868347894, 34.75346546012976], [-77.35996287084734, 34.75349508177631], [-77.36004037690944, 34.75353860625669], [-77.36008836819045, 34.75360258432415], [-77.36026879584465, 34.75375714031136], [-77.36060715229776, 34.75387885642206], [-77.36062889959184, 34.753874387419906], [-77.36063042196498, 34.75389081697011], [-77.36071923620433, 34.75419913319601], [-77.36098223558857, 34.754649962091975], [-77.36101197864465, 34.75476242792672], [-77.36103136415372, 34.75481054032729], [-77.36158447537133, 34.75511053985278], [-77.36173475401594, 34.75520135034172], [-77.36187887428622, 34.75527832776368], [-77.36198005936065, 34.75533943517964], [-77.36217976509774, 34.75544112035157], [-77.36246424080042, 34.75558857220366], [-77.36259992487557, 34.75590641215694], [-77.36294976418955, 34.756125785674456], [-77.36347992136147, 34.756065360278235], [-77.36370364492514, 34.75569677879136], [-77.36381887356646, 34.75512231631483], [-77.36471853877802, 34.75493356809914], [-77.3644525676343, 34.75316393005532], [-77.36477456399089, 34.752716277919454], [-77.36445087015788, 34.75227031197691], [-77.36456192938975, 34.75057366263263], [-77.36457858137264, 34.75044192630178], [-77.36457671452368, 34.75042460833328], [-77.36376179728688, 34.74949325488292], [-77.36240636655383, 34.74974578926691], [-77.36163870838038, 34.74954951717031], [-77.36150978597225, 34.74889620811774], [-77.36101892880505, 34.74844933778352], [-77.36035603143907, 34.74855568103092], [-77.3600891373297, 34.748376105212756], [-77.35950307458288, 34.74819696638366], [-77.35958327070715, 34.74797676881133], [-77.35931238563258, 34.748024312336064], [-77.35906068851159, 34.74806174303756], [-77.35873177746814, 34.74796105836338], [-77.35862263782872, 34.747927251477634], [-77.35818191469298, 34.747791937257965], [-77.35781278373, 34.74776174096974], [-77.35761632857223, 34.74748121973642], [-77.35742557871107, 34.74727113863166], [-77.35722105254325, 34.746975593476485], [-77.35704395373865, 34.746776242390574], [-77.35689377025508, 34.74660564247419], [-77.3568373724965, 34.74654092544702], [-77.35678390778193, 34.7464184076353], [-77.35669430595975, 34.74625675208182], [-77.35657774904746, 34.74586251073012], [-77.35659080334669, 34.74567246360566], [-77.35663862710052, 34.74551114539046], [-77.35660685226875, 34.74542656884945], [-77.356712102067, 34.74534330303289], [-77.3569023453009, 34.74514231311022], [-77.35705926520639, 34.74501259785835], [-77.35737539437721, 34.744589988648315], [-77.35762241517648, 34.744234998418335], [-77.35777530383008, 34.74356031936638], [-77.35790733314208, 34.74321095887455], [-77.3581187035112, 34.742795760886075], [-77.35817539525407, 34.74253062379492], [-77.35810130831968, 34.742414921108185], [-77.3581944302817, 34.742188853056895], [-77.3585500270588, 34.74199180542221], [-77.35871795302168, 34.74182129953249], [-77.35918012177598, 34.74178555555146], [-77.35946007317597, 34.741763903127804], [-77.35993326265198, 34.741761232470715], [-77.36052503557742, 34.74170044072558], [-77.36161863848744, 34.74168025954586], [-77.36229866497787, 34.741865643514245], [-77.3635426638963, 34.741820505768615], [-77.36734182450493, 34.740297027928996], [-77.36746429470342, 34.74018856222371], [-77.36758430311698, 34.74016307495936], [-77.36778112930601, 34.74017324927599], [-77.37265709372602, 34.74036234631845], [-77.37494014195532, 34.740761598367556], [-77.37509608256195, 34.74079764406035], [-77.37524732375874, 34.74087561906292], [-77.37726775190097, 34.74215416567235], [-77.37957486581078, 34.74240112854336], [-77.38450790146366, 34.74620129279445], [-77.38541529438169, 34.747108673343135], [-77.38597391645936, 34.747515237249154], [-77.38790094117158, 34.749594236303274], [-77.38805590421663, 34.749578936190915], [-77.38795827545776, 34.749645155800145], [-77.39012102375239, 34.75090716803852], [-77.39241319573811, 34.75120349186791], [-77.39255762840635, 34.7512209879612], [-77.39271440511533, 34.75081098458155], [-77.39265650773939, 34.751232505920626], [-77.39514818965438, 34.75126509096553], [-77.39615774126604, 34.75112002725767], [-77.39775572380498, 34.75112001513014], [-77.39862103866527, 34.751138086737406], [-77.399840237236, 34.75115369788632], [-77.40039579167204, 34.75086257536901], [-77.4029075234432, 34.7504005488807], [-77.40125576781807, 34.7478959707569], [-77.39927738647954, 34.74913108881621], [-77.39871192084163, 34.74930927888698], [-77.3980488110065, 34.75010910548359], [-77.39757247865738, 34.749183944767765], [-77.39577533617279, 34.749102192802354], [-77.39499450994052, 34.749218361300834], [-77.39319314942911, 34.749160075836706], [-77.390959147333, 34.74836926757124], [-77.3908625978342, 34.74835017675012], [-77.39071525328796, 34.74820872382311], [-77.38679816646928, 34.746532534483954], [-77.3863185072159, 34.74632727044599], [-77.38458109373019, 34.741753561695184], [-77.3853106403396, 34.74001147275593], [-77.38749798164076, 34.73830080719018], [-77.38765505144045, 34.7372172853421], [-77.38944325513, 34.735553260292065], [-77.39015157187755, 34.73531276364784], [-77.39183426464265, 34.73615341391941], [-77.39198358768654, 34.73723090827123], [-77.39353176637707, 34.739145464680774], [-77.3948501661069, 34.739606776022434], [-77.39689487508885, 34.740352480387614], [-77.39820143672932, 34.740734064334895], [-77.40068503789894, 34.740562952016305], [-77.40089113658587, 34.74030429590516], [-77.40171847136946, 34.740314717701835], [-77.40324633103498, 34.74102844817601], [-77.40500830215899, 34.74164458968219], [-77.40578706940246, 34.74022505751899], [-77.40753279429083, 34.73978599795054], [-77.40896938758439, 34.73898227683108], [-77.41048232889193, 34.74186686286509], [-77.41027490824371, 34.74388926630268], [-77.41212761072929, 34.74578817839537], [-77.41289501960355, 34.74718321054502], [-77.41330675832228, 34.749222646567965], [-77.41161849255339, 34.74754536126317], [-77.40960368383188, 34.74915558554882], [-77.40932417203288, 34.75040764761227], [-77.40917079800269, 34.751491151011685], [-77.40970534096351, 34.75414781422994], [-77.40972796626613, 34.75482968862073], [-77.40970999477956, 34.7550153780436], [-77.40976313606824, 34.75540086335978], [-77.41010923371543, 34.75824154650098], [-77.40988440164841, 34.759549169576026], [-77.40974793779823, 34.761360659683326], [-77.4095830319943, 34.76203167749381], [-77.41005383640575, 34.76408118891606], [-77.4099379832733, 34.76545448855], [-77.41178286413357, 34.764685569364914], [-77.41324198029534, 34.76407736637727], [-77.41444245210666, 34.763576952701705], [-77.41334577365491, 34.76371916687287], [-77.4130201410286, 34.76371492026305], [-77.41209633309586, 34.76360382549778], [-77.41154661416572, 34.7623665979752], [-77.41166106390695, 34.761494381024576], [-77.41166299318964, 34.76128908798151], [-77.41179494363757, 34.76110970689791], [-77.4120256900423, 34.76059406202447], [-77.41213176382209, 34.76033474763748], [-77.41243368270871, 34.75976460395755], [-77.41286288250875, 34.759472110811075], [-77.41323431072774, 34.758724287396106], [-77.4132614731316, 34.75849324311872], [-77.41253934852628, 34.75722857113041], [-77.4124889046298, 34.75686268354682], [-77.41241675985788, 34.75596159070566], [-77.41240655980653, 34.755498507064345], [-77.41255309089507, 34.75397540499916], [-77.41258866712485, 34.753785299845894], [-77.41269902911515, 34.7535911653154], [-77.41310647086215, 34.75172989496498], [-77.41467429292813, 34.7514572780229], [-77.41560432449577, 34.75149651377578], [-77.41654404243036, 34.751520436018296], [-77.41716332613363, 34.751729970636006], [-77.41736426390167, 34.75210006071218], [-77.41782781474353, 34.75267656953542], [-77.41833171628357, 34.753028286087805], [-77.41835991351014, 34.7530536819455], [-77.41841671999796, 34.75308423893294], [-77.41892520161915, 34.753316225214306], [-77.41925440472917, 34.75353630960991], [-77.41965738265685, 34.753615340185085], [-77.42006062041555, 34.75382462791481], [-77.42015446351527, 34.7540537669575], [-77.42032574933712, 34.75425329238632], [-77.42053435410465, 34.75440329146251], [-77.42061513759305, 34.75443213379059], [-77.42083206369313, 34.75448257127292], [-77.42099310133483, 34.754486523453764], [-77.42108883678489, 34.754458100062834], [-77.42117044851955, 34.75442141773812], [-77.4217366628428, 34.754187309728145], [-77.4217505703504, 34.75404334589806], [-77.42201723388585, 34.75416980132004], [-77.42245517878943, 34.75441435917192], [-77.42248291697582, 34.75444810563508], [-77.42276226415476, 34.75475188974068], [-77.42282371497836, 34.75512627268249], [-77.42285492603517, 34.755248540991786], [-77.4229321749896, 34.75557379161428], [-77.42318266013996, 34.75581077795686], [-77.4233019023711, 34.75591967651986], [-77.42341087226433, 34.756007752335975], [-77.42375171332733, 34.75600963477105], [-77.42387042505347, 34.75601058337642], [-77.42401251828129, 34.756016061497014], [-77.42457039826898, 34.75596872522278], [-77.42480294460594, 34.756038151213204], [-77.42554210848374, 34.75627099086717], [-77.42576408883501, 34.75627608495397], [-77.42598823774681, 34.756478608457826], [-77.42604043035752, 34.75650957129808], [-77.42631441018334, 34.75659043103881], [-77.42653228440314, 34.75661944025208], [-77.42683902976076, 34.75652938125984], [-77.42688083619814, 34.75644094456351], [-77.42702001691629, 34.75636852808069], [-77.42715204313694, 34.75649239959785], [-77.42710697411717, 34.75662300447832], [-77.42774754823733, 34.75713683243059], [-77.42774819983106, 34.75785767529885], [-77.4278034708829, 34.757984479350554], [-77.42781528084907, 34.75800135813492], [-77.42783191976086, 34.757994419473185], [-77.42929079148664, 34.75738603310657], [-77.42976322251215, 34.75718901113529], [-77.42976593225946, 34.75699298939189], [-77.42988190154168, 34.756855923017675], [-77.42995473161672, 34.75677942823164], [-77.43011956617758, 34.75659401148633], [-77.43011086768126, 34.75655445469922], [-77.43012731229075, 34.75650897260059], [-77.43019078973927, 34.75649270793501], [-77.43027253695669, 34.75633141466772], [-77.4303164866264, 34.75628869117817], [-77.43028710192131, 34.756160056739176], [-77.43023497277966, 34.75609949127725], [-77.43008045468707, 34.75598477850693], [-77.42977673595108, 34.755707691966066], [-77.42944852202804, 34.755534698713824], [-77.4294973590915, 34.75522199717271], [-77.42964990879665, 34.7549814492491], [-77.42975899256604, 34.754754360764345], [-77.43007618177573, 34.754673443583826], [-77.43034808241595, 34.75462623734146], [-77.43070899697585, 34.75470285028935], [-77.43096257462429, 34.75461583213276], [-77.43091970679798, 34.75406434093367], [-77.4309368758814, 34.75402119377623], [-77.43087167741652, 34.75398589429885], [-77.43034716347346, 34.753737484090784], [-77.42998653195592, 34.753524762810876], [-77.42947894073899, 34.752979347441425], [-77.428781554851, 34.752241751558145], [-77.42834046965062, 34.75180825274515], [-77.42826549966728, 34.751564202534084], [-77.42828208730481, 34.75144304466583], [-77.42794838023215, 34.750947521353446], [-77.42784389088565, 34.750847263581356], [-77.42752649037207, 34.75076521635822], [-77.42735832284917, 34.7507705293019], [-77.42706423707057, 34.75075793644112], [-77.42620596624637, 34.7506375775771], [-77.42616541542941, 34.75046073855473], [-77.42595091454513, 34.749851179438515], [-77.4253914879533, 34.749314814880194], [-77.42569610891026, 34.74852298416607], [-77.42570378863466, 34.74830582597504], [-77.42586353709319, 34.74810209382426], [-77.42580123799158, 34.74728903338544], [-77.42537452160869, 34.747997624457646], [-77.4240768001158, 34.748814934243235], [-77.42401690460812, 34.74877117006099], [-77.42268449813773, 34.74764232131867], [-77.4218049799432, 34.7478019602373], [-77.4215768260408, 34.74777623825004], [-77.42070933102937, 34.74767843093609], [-77.41990352217009, 34.74803398661969], [-77.41926795093639, 34.74770476982579], [-77.41886435787548, 34.747449795747706], [-77.41877369362648, 34.746187930134276], [-77.41993425969301, 34.745404284123616], [-77.42002351444155, 34.745238320389674], [-77.42002389225938, 34.745202546523096], [-77.42003200746707, 34.74517744370583], [-77.42013169239914, 34.74472260907517], [-77.4199875238402, 34.74407167442809], [-77.41959436918249, 34.743574460832356], [-77.41929768599478, 34.74317398380748], [-77.41899133588896, 34.742605292980016], [-77.41883682469785, 34.74210488767688], [-77.41835158314325, 34.74201248381985], [-77.41813861411562, 34.7421583714283], [-77.416512006065, 34.741288843011574], [-77.41616186549835, 34.74071682869545], [-77.41524461895611, 34.73905913276704], [-77.4166384233334, 34.737665234286034], [-77.41699879519808, 34.73730380318541], [-77.4172182126067, 34.73706990192625], [-77.41834140896502, 34.73566907825368], [-77.41886500673195, 34.734951279233925], [-77.41906987136365, 34.73470460166205], [-77.41981030478055, 34.733946263575504], [-77.42069265778302, 34.7324035970361], [-77.42027973949983, 34.73187404879333], [-77.41968810333651, 34.731037082923756], [-77.41910827017722, 34.730543927612985], [-77.41806082253395, 34.730063641350334], [-77.41789989904798, 34.72999738743725], [-77.41676090960078, 34.72979363308755], [-77.41598568225176, 34.72966401092028], [-77.4155346000662, 34.72960021917694], [-77.41499494932732, 34.729540734598366], [-77.41483107796671, 34.72949171937938], [-77.41486846157711, 34.72942301120671], [-77.41480968779234, 34.72923792394603], [-77.4148602241514, 34.728861033066394], [-77.41460777800327, 34.72869212391237], [-77.41453067807784, 34.72863904723283], [-77.41444783445922, 34.728646467774624], [-77.4139509416004, 34.72842699400976], [-77.41362708693762, 34.72842983819726], [-77.41340280684564, 34.72843440127381], [-77.41329024791642, 34.72849443078802], [-77.41269381142902, 34.72866258698676], [-77.41266883099716, 34.72873076726871], [-77.41238170509729, 34.729112547614356], [-77.41218467765171, 34.72943549712513], [-77.41172314241534, 34.72947749397132], [-77.41141299388653, 34.729670245011874], [-77.41064007867611, 34.729621717100805], [-77.41048043598138, 34.729642016096335], [-77.41033574617848, 34.729840107388114], [-77.4096993544517, 34.729846146204224], [-77.40949257937076, 34.7292204242108], [-77.40928800968379, 34.72912496860713], [-77.40926110574013, 34.72912317023325], [-77.40922862483522, 34.7290918883492], [-77.40872512290915, 34.72876010396299], [-77.40852832207054, 34.72854903108839], [-77.40847024530139, 34.72853331450246], [-77.40840419932236, 34.72849227418328], [-77.40836802615826, 34.72854758568267], [-77.40817871240279, 34.728694799622524], [-77.40816570666311, 34.72875638491869], [-77.40813269396803, 34.72879655215784], [-77.40803388794069, 34.72893289255957], [-77.40771991320747, 34.72961801530174], [-77.40753001239743, 34.729652289991606], [-77.40723659264462, 34.73032416781116], [-77.40620633263428, 34.73081446898617], [-77.40558972663777, 34.73062446916571], [-77.40591522536546, 34.73132400832159], [-77.40597156121179, 34.73140038620145], [-77.40566258687592, 34.73235388998374], [-77.40566675053992, 34.73242014203399], [-77.40563647321152, 34.73278106002439], [-77.40568716612665, 34.732921606370105], [-77.40563975824034, 34.73295077384149], [-77.40566863755402, 34.73331203321196], [-77.40563300319329, 34.73346178351238], [-77.40557568502408, 34.73359419437257], [-77.40536118218685, 34.733731057107406], [-77.40514757252603, 34.73385113121482], [-77.40499933866947, 34.73414833110535], [-77.40458189676772, 34.734207499121744], [-77.40457896021982, 34.734209275808325], [-77.40457818177381, 34.734211115179185], [-77.4044066443302, 34.734675754652386], [-77.4044002356013, 34.73470800263264], [-77.40437106761128, 34.73474564982431], [-77.40435134570862, 34.7352500248155], [-77.40348788868691, 34.735769864480815], [-77.4032704480174, 34.73581104806531], [-77.40243832928476, 34.73555134307204], [-77.40227691141905, 34.73552319105101], [-77.4019978707887, 34.73522698306598], [-77.40173725151223, 34.73517273300866], [-77.40147344173161, 34.735117817633345], [-77.4013992689382, 34.73533578484341], [-77.401218980066, 34.735450022112445], [-77.40079956835937, 34.73619551813373], [-77.40078168186025, 34.73623154507842], [-77.40077983525495, 34.736237390241214], [-77.4003444833096, 34.73701323702335], [-77.4001221277455, 34.73740948374233], [-77.3999813880047, 34.73819464334842], [-77.39955994646948, 34.73872355709456], [-77.39876845299278, 34.738778088508695], [-77.39763368081336, 34.73844667601802], [-77.39636574780911, 34.73821805220091], [-77.39533935556474, 34.737809139625625], [-77.39405003070658, 34.73735800165382], [-77.39345230240968, 34.73661882047983], [-77.39334917548007, 34.73587467087447], [-77.39373634976697, 34.735187984740506], [-77.3937279623704, 34.734888890548895], [-77.39379019989966, 34.73469274889333], [-77.3936757699467, 34.73422547319987], [-77.39325674978596, 34.73360573397556], [-77.39293126524304, 34.73326546913501], [-77.39271040741913, 34.733131754374746], [-77.39242882724864, 34.733049827586036], [-77.39151642236395, 34.7329624964478], [-77.39149271370077, 34.732908357247524], [-77.39143106516067, 34.73210544858669], [-77.39151830336166, 34.73187920256661], [-77.39128342420135, 34.731418694007324], [-77.39115676519755, 34.73132714611613], [-77.39090826185316, 34.73131150980053], [-77.39068250076535, 34.731279709422154], [-77.39035422921793, 34.73115381645008], [-77.3900976728055, 34.73108522112512], [-77.38991078108894, 34.730953795635784], [-77.38975873095093, 34.73092830393524], [-77.38949387099838, 34.73095617085619], [-77.38928916500414, 34.730908743630515], [-77.38889549787451, 34.73080840297354], [-77.38870734846058, 34.73070559515721], [-77.38848032280013, 34.73065731284662], [-77.3883043678405, 34.73063566236144], [-77.38820796297642, 34.73063725865278], [-77.38796741664322, 34.73063675141994], [-77.3876375671472, 34.73072385850452], [-77.38739484004837, 34.73080421840389], [-77.38693115408952, 34.730948633109435], [-77.38661083412897, 34.73128038715599], [-77.38654223401959, 34.73146495402101], [-77.38632656841469, 34.7320507745559], [-77.38625724258486, 34.73227499659501], [-77.3861692516586, 34.73251297540429], [-77.38665729469099, 34.73353331936298], [-77.38623744135126, 34.73489881380215], [-77.38492665914747, 34.73660112167115], [-77.38481629080503, 34.73736248070138], [-77.38348673889506, 34.7384022903868], [-77.38106248076166, 34.73841048042732], [-77.37849481190109, 34.73792513693898], [-77.37578098724467, 34.736841064431516], [-77.37376707123559, 34.73653757109024], [-77.37229098694414, 34.73603914647013], [-77.3701306314878, 34.73562455968249], [-77.36919155716775, 34.7346258875023], [-77.36897956963448, 34.73422334821356], [-77.36804375660249, 34.73358288611345], [-77.36792044668046, 34.73339407669009], [-77.36796955632022, 34.73297838558782], [-77.3685774365032, 34.732615214406515], [-77.36874343962711, 34.73230622819178], [-77.36872405258525, 34.73227090072323], [-77.36877840113029, 34.73192282603659], [-77.36878798034166, 34.731827451507336], [-77.36879576032408, 34.73181164902697], [-77.36857249808874, 34.73160061765968], [-77.3685713421545, 34.73159989735848], [-77.36828553625317, 34.73166290971233], [-77.36824721152095, 34.73168972646625], [-77.36807238684065, 34.73179318538192], [-77.36773616601624, 34.731957222935335], [-77.36756912350258, 34.732371090636974], [-77.36756568599327, 34.73246803423286], [-77.36776940833865, 34.732801108998714], [-77.36734709082614, 34.732727660993376], [-77.36729454349674, 34.732582372735266], [-77.36726078371842, 34.73250992092737], [-77.36659468976808, 34.732332383183675], [-77.36657556662996, 34.73211666275664], [-77.36636507980455, 34.731984579323765], [-77.36619849738592, 34.731848740427694], [-77.36594630312425, 34.731824439984415], [-77.36581849172177, 34.73180453535885], [-77.36570894456611, 34.73183118204851], [-77.365326901814, 34.731913945276844], [-77.3651326940705, 34.73210404763932], [-77.36488097043619, 34.73207401720659], [-77.36481073584604, 34.73209489395667], [-77.36476354116542, 34.732121876454016], [-77.36452616097397, 34.732347019396], [-77.36447615735028, 34.732405044595], [-77.3644608655762, 34.7324231463145], [-77.36382214522598, 34.73298226173038], [-77.36371171860345, 34.73303589145566], [-77.36363450671307, 34.73313906251756], [-77.36349185473851, 34.73314283260406], [-77.36280075934405, 34.73350530760244], [-77.36262331278802, 34.73363430061626], [-77.36263058435796, 34.73380549159295], [-77.36272908727003, 34.73410716023558], [-77.36288852348622, 34.734395506097705], [-77.36318375638227, 34.735019487139915], [-77.36334925983893, 34.73654385064552], [-77.36336020206325, 34.73694480904786], [-77.36278107384486, 34.737632058019955], [-77.36151769198631, 34.74002693613566], [-77.36043076335747, 34.74004794998224], [-77.35931987177878, 34.74029484962271], [-77.35902386559039, 34.74037074674486], [-77.35869755424781, 34.740509394093166], [-77.35796982789886, 34.7407134871918], [-77.35797028767666, 34.741333042094055], [-77.35808712768505, 34.741567971063844], [-77.357794834607, 34.74183489338583], [-77.3577042360418, 34.7421079232178], [-77.35751960910918, 34.742468165810855], [-77.35745253993495, 34.742629861711265], [-77.35741614950122, 34.74277587469487], [-77.3570288649491, 34.74363409933286], [-77.35701742785443, 34.743664362832384], [-77.35701086935484, 34.74369330469415], [-77.35695172197678, 34.74377830458647], [-77.35640557019204, 34.74472312238051], [-77.35607430538997, 34.745156784565964], [-77.35598714684086, 34.74526794378257], [-77.3559560315794, 34.74531180575834], [-77.35591153446606, 34.745676201872215], [-77.35592882397647, 34.74576333294732], [-77.35594163599902, 34.746047262172965], [-77.35603444722123, 34.746657702970715], [-77.35604589219778, 34.746722030677084], [-77.35606047061509, 34.74674428931331], [-77.35608132289966, 34.74677514484509], [-77.35642288733841, 34.747157664992095], [-77.356473860802, 34.74721475071351], [-77.3565318855292, 34.74728612864824], [-77.35681588851695, 34.74759110142503], [-77.35686939061068, 34.74769895220002], [-77.35696627921082, 34.74785279894602], [-77.3572211894511, 34.74821678905855], [-77.35803909520668, 34.74828369679703], [-77.35812496595932, 34.748310061498465], [-77.3582952028967, 34.74836279376625], [-77.35846040140183, 34.74844626942194], [-77.35858931935567, 34.74845158352821], [-77.35884313130208, 34.748531264066145], [-77.35884684473636, 34.74854324155806], [-77.3588881019699, 34.74854708044441], [-77.35913472546079, 34.748636063821145], [-77.35936704315007, 34.74870302860472], [-77.35904343338454, 34.74918047630836], [-77.35921021704853, 34.749211944055006], [-77.35902318000704, 34.749304914537014], [-77.35887700069281, 34.74952349096661], [-77.35876027706384, 34.74976110137539], [-77.35879826217071, 34.749794609440556], [-77.35891370370008, 34.75006871688621], [-77.35914756943961, 34.75019531618645], [-77.3592588963649, 34.75027101809272], [-77.3595958809199, 34.75033244152221], [-77.35981009365197, 34.750435598204874], [-77.36033501310517, 34.75055235130684], [-77.36092668314322, 34.750715895990986], [-77.36143411112573, 34.750856150145154], [-77.36172887990257, 34.751057097914966], [-77.3619705255563, 34.75124672493216], [-77.3622196992469, 34.75172305503238], [-77.36170970634544, 34.752144896951215], [-77.36126179382887, 34.7525639148249], [-77.36062233077891, 34.75291715461737], [-77.36039652833452, 34.753073985804065], [-77.36025119787429, 34.753041904905174], [-77.36019090128232, 34.75302859451699], [-77.36005441876866, 34.75299512707505], [-77.35979855777352, 34.752936148800245], [-77.35969230123169, 34.7529037729946], [-77.35943817885061, 34.75281911484261], [-77.35914950636082, 34.75271020296135], [-77.35859575696658, 34.752755537748186], [-77.35845240123567, 34.75321505985251], [-77.35849277420499, 34.75354628950113], [-77.35847280322288, 34.753699645130084], [-77.35877241128624, 34.7540086036697], [-77.35882752640387, 34.754077265092675], [-77.35888237130656, 34.75413080461566], [-77.3590502591883, 34.754300175164246], [-77.35923529162795, 34.75447736278902], [-77.35930645550161, 34.754497346363664], [-77.35931966354806, 34.75455815700732], [-77.3593627963416, 34.75471124345353], [-77.35943576648127, 34.755029602929895], [-77.35938990407593, 34.755221617059476], [-77.35929865109387, 34.75553581191426], [-77.35925143324678, 34.75572235195813], [-77.3592323803288, 34.75578860263842], [-77.35926849356304, 34.755904109981785], [-77.35930559224052, 34.75602224438377], [-77.35933119050159, 34.75605523490289], [-77.35936437322431, 34.75609546739775], [-77.35955986632746, 34.75627357813863], [-77.35977132815465, 34.75644569137873], [-77.35980889432885, 34.756476267477844], [-77.35984441702027, 34.75650517995526], [-77.36028371783976, 34.756862732036424], [-77.36029545558178, 34.75689048902084], [-77.36031215042058, 34.75695729383843], [-77.36068580337069, 34.75737871498759], [-77.36075516490575, 34.75749453917008], [-77.36114663131775, 34.75756734910894], [-77.36131387799031, 34.75763340993035], [-77.36135780599685, 34.757650305571346], [-77.3614392918276, 34.75767884974053], [-77.36214958384872, 34.75782976575833], [-77.36241336754357, 34.757972924681724], [-77.36297561416188, 34.75823963241687], [-77.36297725144831, 34.75824013628239], [-77.36297841125555, 34.758240044403045], [-77.36297942029123, 34.758239409768386], [-77.36366768758458, 34.75807154528148], [-77.36377466280618, 34.758045101716476], [-77.3641997961767, 34.7581073427439], [-77.36429511598057, 34.75811992864981], [-77.36480602474909, 34.75823477639287], [-77.36489646509257, 34.75825812444845], [-77.36500119230283, 34.758288781920555], [-77.36597074773526, 34.75872718648112], [-77.36602741691256, 34.75875401085064], [-77.36603354410838, 34.7587605236985], [-77.36605342621293, 34.758777839172126], [-77.36640609001205, 34.758879552208505], [-77.36720817013754, 34.75913363713127], [-77.36754071031345, 34.759276651923564], [-77.3681896220069, 34.759638752193226], [-77.36769753695273, 34.75996977486453], [-77.36759397519705, 34.7600142517415], [-77.36734087927815, 34.76013509608741], [-77.36708429761961, 34.76023534829405], [-77.36697118713444, 34.76027909659938], [-77.36685731594554, 34.76034203956848], [-77.36628402300364, 34.76065252172513], [-77.36568926755123, 34.7608655445358], [-77.36557905636651, 34.76099683267133], [-77.36533723301913, 34.76115859226353], [-77.36495037286184, 34.76098749089862], [-77.36463570057644, 34.76095118885611], [-77.36416430431876, 34.760779543251424], [-77.36405631179143, 34.760752165285595], [-77.36402876046714, 34.76084359488635], [-77.36409359669017, 34.76102303887579], [-77.36452373387385, 34.761165122789855], [-77.36449463410241, 34.76156587183415], [-77.36417608072944, 34.761696854131635], [-77.36388298535988, 34.76174831085288], [-77.36352822106929, 34.76213460176257], [-77.36331220243206, 34.762270468101846], [-77.36319211559282, 34.7623335622813], [-77.36303400699126, 34.76267786520286], [-77.36304679044682, 34.76273679791358], [-77.36314385251936, 34.76300338989057], [-77.36323577259682, 34.76336216704271], [-77.36329268500812, 34.763462680216534], [-77.36335393559473, 34.76357012903551], [-77.36349410677052, 34.76382507866768], [-77.36365231018898, 34.764067177754896], [-77.36372154447139, 34.764176645860275], [-77.36379255041169, 34.764268846733515], [-77.36422713780318, 34.76477542940138], [-77.3642761148597, 34.7648128013434], [-77.3643380323545, 34.764812497699495], [-77.36431223855082, 34.76485736721918], [-77.36442820156599, 34.765104319858025], [-77.36447867734509, 34.765195228369414], [-77.36446960912032, 34.76520397605271], [-77.36424701309684, 34.76539376091948], [-77.36406181214964, 34.765550765635254], [-77.36385117032982, 34.76565796604193], [-77.36369878650626, 34.765761112623984], [-77.36363728313847, 34.76599674965504], [-77.36350819741267, 34.76625363363937], [-77.36361461758099, 34.766768562250334], [-77.3636276365766, 34.76685465858856], [-77.36364199764367, 34.766887299738016], [-77.3636686258559, 34.76690469594256], [-77.3637596447513, 34.76700578778133], [-77.36432201611444, 34.767496710014825], [-77.36443095271676, 34.76769501928787], [-77.36467104780284, 34.76787119810807], [-77.36496455857457, 34.768121722701984], [-77.36519192268685, 34.768286760963875], [-77.36552655024556, 34.76863765354002], [-77.36561904712028, 34.76874176270768], [-77.36566438264165, 34.76886906490385], [-77.3658173674301, 34.76929864178632], [-77.36582072512701, 34.76955031949101], [-77.36614764730834, 34.76997343565608], [-77.36612063488954, 34.770317981770646], [-77.36615673750305, 34.77053583348971], [-77.36617393842714, 34.77074205225425], [-77.36620560046359, 34.77083254042142], [-77.3663398614646, 34.770961620634594], [-77.3665984416371, 34.77101158307009], [-77.36667603243775, 34.77102715768684], [-77.36697900781331, 34.770969971402614], [-77.36712033533236, 34.77100510331207], [-77.36760224587043, 34.77103310306744], [-77.36797695676489, 34.771330189145026], [-77.36812379781868, 34.771446442322976], [-77.36826222942682, 34.77137523662473], [-77.36869449302324, 34.77147771477303], [-77.36875230978258, 34.77149142149681], [-77.36880598126079, 34.771515817246396], [-77.36915433548641, 34.77173252749407], [-77.36927368387816, 34.771905394347485], [-77.36965036097521, 34.77214803350476], [-77.36980714847957, 34.772277741215035], [-77.37000772650481, 34.77244255630248], [-77.36971827599919, 34.77258383207079], [-77.36912089341492, 34.7726389861221], [-77.36905872503101, 34.7726457314208], [-77.36904031355833, 34.772647729009115], [-77.36900640806235, 34.77265140755706], [-77.3683962754521, 34.77271760335178], [-77.36805380676999, 34.77253176335243], [-77.36774637546414, 34.77274624930229], [-77.36773721122084, 34.77276651863692], [-77.3677386600654, 34.77277282008782], [-77.36811919704145, 34.7730560309541], [-77.36827318406615, 34.773141521451], [-77.36893871586048, 34.77360736638438], [-77.36930665751147, 34.77400148795016], [-77.36959266986963, 34.77453415337159], [-77.36909623059371, 34.77472620284623], [-77.36847509259051, 34.77471811815311], [-77.36841641522271, 34.77471735415122], [-77.36778714923103, 34.774815356480254], [-77.36763355770933, 34.77483927636378], [-77.3673807766704, 34.77487864307349], [-77.36708020112847, 34.77504039696114], [-77.36690016038807, 34.7751372850409], [-77.36629577797429, 34.77553220888446], [-77.36588350939735, 34.77487931042303], [-77.36569974445473, 34.774290426158515], [-77.36562024077026, 34.77409639045996], [-77.36555835600649, 34.7736817361692], [-77.36555749642025, 34.77367625126765], [-77.36555283738609, 34.77367181342644], [-77.3655443929848, 34.773676850127885], [-77.36529036042845, 34.77400196393773], [-77.36516612552484, 34.7741036991536], [-77.36446424282616, 34.774148314212155], [-77.36397498220153, 34.77478129961261], [-77.363998100686, 34.77481340685768], [-77.3639179138782, 34.77488291680149], [-77.36349199038547, 34.77555317660813], [-77.36338278181935, 34.775716524193854], [-77.36321727234186, 34.77598922835955], [-77.3630526117042, 34.77633208287972], [-77.36280963155212, 34.776634400329534], [-77.36242152141185, 34.77679744551417], [-77.3621007213646, 34.77694554808771], [-77.36206375349092, 34.77696107348748], [-77.36202063318105, 34.77699710038865], [-77.36177970711321, 34.77724527751143], [-77.36170232489647, 34.777365355723134], [-77.36157893990608, 34.77756370443937], [-77.36141431403593, 34.77814522706936], [-77.3612389098626, 34.77832163732106], [-77.36112061703344, 34.77841365804868], [-77.36097314357814, 34.77850824693055], [-77.36101191488409, 34.778692227581224], [-77.36101180707175, 34.77880139042322], [-77.36105830824252, 34.77906054177297], [-77.3611188747483, 34.779398085054865], [-77.36104145202806, 34.77957243594882], [-77.36073157762814, 34.779821780122916], [-77.36064314915602, 34.77987912008992], [-77.36049341773578, 34.780045855704834], [-77.3603612524145, 34.78016686211484], [-77.36031483592853, 34.78023517147724], [-77.36015592706443, 34.78057984366572], [-77.36006092280905, 34.78070554422729], [-77.36003395774097, 34.78088427916949], [-77.36021981097963, 34.78132037375305], [-77.36011481644123, 34.78174312465524], [-77.36013395078024, 34.78184955795731], [-77.36006355220843, 34.781926375784536], [-77.35991124367067, 34.78204995307037], [-77.35973203129188, 34.78226813904092], [-77.35951678490103, 34.78252973507537], [-77.35927272484655, 34.78298610468031], [-77.35922706956825, 34.78320989188872], [-77.35923193082284, 34.783561477950315], [-77.35922586295142, 34.783768700515445], [-77.35917714885369, 34.783918379506176], [-77.35917354858003, 34.784309624605996], [-77.35918001123648, 34.78456704697265], [-77.35947372733379, 34.7846874428849], [-77.3597731212825, 34.78473426628885], [-77.3599511595247, 34.78473778353402], [-77.36050354206384, 34.78477502334856], [-77.36185437012382, 34.78485520609404], [-77.36228552069983, 34.784921364872645], [-77.36312708552114, 34.78495187889233], [-77.36507941620965, 34.78413925236685]], [[-77.42207020495833, 34.76039694636676], [-77.42202609417195, 34.76032462491256], [-77.42186076882996, 34.76020654947769], [-77.42126691024532, 34.75983912795982], [-77.4208949872583, 34.759801005984805], [-77.42062002022425, 34.75967552074117], [-77.41988416230059, 34.75968972819936], [-77.41975940954846, 34.759765460361734], [-77.41963302867183, 34.759729149094746], [-77.4190813933629, 34.76015369493335], [-77.4188808372644, 34.760111647656124], [-77.41848767904096, 34.760319850596694], [-77.41831421445858, 34.7603962746625], [-77.41813184958264, 34.76048305776802], [-77.41788547950748, 34.76066847383623], [-77.4177874484989, 34.76103161386858], [-77.41751987502467, 34.761099782629756], [-77.41728364979856, 34.76119689687342], [-77.41709212582364, 34.76139159634044], [-77.41655112932457, 34.76180519236581], [-77.41655710795727, 34.761881474107625], [-77.41641406429746, 34.761984494256815], [-77.41598423352367, 34.76257351654297], [-77.41570634206138, 34.76270230780954], [-77.41524226253634, 34.762857315477994], [-77.41482409729377, 34.76341786321861], [-77.41543061287508, 34.763165030627086], [-77.41616014595809, 34.76286091037264], [-77.41761919545853, 34.76225265735805], [-77.4183487118759, 34.761948524598225], [-77.41907822273801, 34.761644387670245], [-77.42053722779629, 34.76103610131041], [-77.42199621063314, 34.76042779827977]], [[-77.46839465212695, 34.74106905951217], [-77.46567318853303, 34.73904782164934], [-77.46538020674454, 34.73903237555048], [-77.46516930264475, 34.73861258680779], [-77.46275654991736, 34.73627955792292], [-77.4614574496156, 34.73485904636604], [-77.46006548288625, 34.73235870211408], [-77.45966378914787, 34.73042743827372], [-77.4593644571647, 34.72764207351032], [-77.45944103406718, 34.724092702046335], [-77.45919713184442, 34.72347913902539], [-77.45926004888535, 34.72313377724699], [-77.45941162588626, 34.72284709126525], [-77.46005125953901, 34.719550962871594], [-77.46020667083485, 34.7189925687969], [-77.4605037283494, 34.718651484559906], [-77.46100570999369, 34.71867955584359], [-77.46441076869401, 34.719052295157624], [-77.46591942388787, 34.719420882512345], [-77.46815227614044, 34.719739894962615], [-77.4708440666532, 34.720124459691654], [-77.47253909298244, 34.720366594890265], [-77.47330641729664, 34.72047619909775], [-77.47440916466664, 34.72069861276892], [-77.47573796895809, 34.72093452069745], [-77.47671677980297, 34.72120865206854], [-77.48014204655678, 34.72187591008059], [-77.48055420946463, 34.72201359389828], [-77.48091707250212, 34.72208734685235], [-77.48159567247443, 34.72198923264971], [-77.48618560263387, 34.72026955377959], [-77.4871079298756, 34.720238191453824], [-77.48769056450801, 34.719645214586194], [-77.48833070434344, 34.71845491933948], [-77.49058136796161, 34.71395524020342], [-77.49331394509105, 34.713337917865395], [-77.49416741683903, 34.71296320710554], [-77.49684826704504, 34.71223112843899], [-77.49876043306716, 34.712231107150856], [-77.501819905026, 34.71116242709587], [-77.5034781745181, 34.71109943015865], [-77.50418293883, 34.711206684610666], [-77.5047710423454, 34.711584251652496], [-77.50833285785453, 34.713045074431776], [-77.50871846815363, 34.71325701137488], [-77.50891135420837, 34.71342579754229], [-77.50931167972968, 34.71377608171875], [-77.51167404632201, 34.7158432069248], [-77.51277150523785, 34.716981096813484], [-77.5129244481885, 34.71710667068655], [-77.5130880378102, 34.71732866129891], [-77.51391075738962, 34.71848052660187], [-77.51527396143919, 34.72032633368782], [-77.5156632697304, 34.721320276684885], [-77.51678241802259, 34.72085240024337], [-77.5189455908693, 34.71994793867728], [-77.51730039410148, 34.71905588166918], [-77.51702847231978, 34.71870288387345], [-77.51592560289593, 34.71763814210689], [-77.51550940802542, 34.7170554686832], [-77.5154343671174, 34.71695041280403], [-77.51536127880924, 34.71689013535818], [-77.5148259357621, 34.71631167868054], [-77.51366234900351, 34.715293608259245], [-77.51415222243709, 34.71480712093832], [-77.51378432551284, 34.71346868568526], [-77.51303939085051, 34.71474854088986], [-77.51068178516013, 34.71268563976646], [-77.50941424203945, 34.71157646810722], [-77.50925072838108, 34.71141148317492], [-77.50908894167355, 34.71129180681865], [-77.50765233013664, 34.71037977942709], [-77.50705120165566, 34.71014983007525], [-77.50607394882383, 34.70936036889256], [-77.50492777652447, 34.708624517340645], [-77.50373859277235, 34.70844354158815], [-77.5041452882874, 34.70750283431332], [-77.50477091325439, 34.707234710638154], [-77.50540733740027, 34.70696193874768], [-77.5062208192924, 34.70661327922176], [-77.50669567572001, 34.706157219024746], [-77.50726861337304, 34.70533586995103], [-77.51016396700834, 34.70575735253301], [-77.51076274264092, 34.70616838305584], [-77.5125148131892, 34.70792040532373], [-77.51281704008038, 34.70822049818913], [-77.51460738550014, 34.71061421041289], [-77.51494144222183, 34.71126902087712], [-77.51668672948601, 34.71374740806569], [-77.5169016885227, 34.71418802765875], [-77.51747479085647, 34.715204149573154], [-77.51804635470461, 34.71646851434321], [-77.51815187911568, 34.71670729289191], [-77.51826814866496, 34.71689987891108], [-77.5191178758376, 34.718089641152474], [-77.51984787061339, 34.71911171960701], [-77.52010028734605, 34.719465124951896], [-77.52211507590297, 34.71862263396047], [-77.52175238999824, 34.71811484219923], [-77.52065785647677, 34.71630195848938], [-77.52034812970058, 34.71578893468197], [-77.52013965778896, 34.715317208566645], [-77.51908659271085, 34.71286020248846], [-77.51903947622883, 34.712763623877684], [-77.51897846028945, 34.71267697847232], [-77.51840921049875, 34.711561147849835], [-77.51614709108209, 34.706828069758636], [-77.51582757346402, 34.70638207085827], [-77.5142799759112, 34.70482681853558], [-77.51189530400879, 34.70224067085137], [-77.51131591856853, 34.70170331330872], [-77.51008751240865, 34.70063431634408], [-77.50986551404111, 34.70048864082279], [-77.50979754817385, 34.70045237529919], [-77.50887296976934, 34.699872218951754], [-77.50797215526644, 34.69989628285119], [-77.50766702857766, 34.70001256735976], [-77.50719244451987, 34.70077259085805], [-77.50665790782553, 34.70167316665665], [-77.50580637087432, 34.70295041912604], [-77.50540890950572, 34.70347280821423], [-77.50391117793446, 34.70479911929058], [-77.50365518575559, 34.705096381672796], [-77.50350075788575, 34.70516256957951], [-77.500779984371, 34.70632860967153], [-77.5006864638492, 34.706544927363616], [-77.50042036854767, 34.70647779847534], [-77.49984525681985, 34.70649872980725], [-77.49709723455643, 34.70666294261119], [-77.49516179021404, 34.70693481082753], [-77.49353878545145, 34.70683111635973], [-77.49267688273778, 34.70666290728248], [-77.49153563252202, 34.70639955436018], [-77.49025252656105, 34.70618115429024], [-77.48535057010152, 34.70541211189803], [-77.48534806575334, 34.70541094246235], [-77.4853449970079, 34.70540964062011], [-77.48529571750902, 34.705395440310376], [-77.4809558222307, 34.704221396988515], [-77.48042174595446, 34.7047164432889], [-77.47871877014941, 34.70461101730427], [-77.4774866228233, 34.70453473242417], [-77.4774105015742, 34.705157580490535], [-77.47748665626354, 34.70600344525822], [-77.47748669802564, 34.707140467607715], [-77.47748668273474, 34.708697606443806], [-77.4772995188231, 34.71020615276259], [-77.47642362846372, 34.709684284744725], [-77.47522908187734, 34.709640695467264], [-77.47515180317474, 34.709649749091184], [-77.47485702981426, 34.70920738906919], [-77.47419816566165, 34.708513584771524], [-77.47424142721566, 34.70824305258165], [-77.47427645672494, 34.70646680815869], [-77.474255779109, 34.70601227157815], [-77.4754676396275, 34.70239737941557], [-77.47419731744239, 34.70152027552736], [-77.47239125938319, 34.70011073244993], [-77.47156947535755, 34.69986445692836], [-77.47094170825892, 34.69982604819106], [-77.46935923305945, 34.69983058862157], [-77.46902836671815, 34.69978749988142], [-77.46889753374411, 34.699784260583705], [-77.46702343718937, 34.699405544496194], [-77.46660361687704, 34.6993077188029], [-77.46642257645748, 34.699032174330284], [-77.46621552625494, 34.698732496857154], [-77.46478935542044, 34.696715054193525], [-77.46448314561074, 34.69627056117914], [-77.46286434977387, 34.694506012527285], [-77.46191811227494, 34.69377025374689], [-77.45910018867272, 34.69244314301986], [-77.45843404237345, 34.692097019562574], [-77.45688472289999, 34.69230080076707], [-77.45746501118613, 34.691203413405795], [-77.45814349251911, 34.690880306275794], [-77.4587803187745, 34.68793761688903], [-77.45900265835706, 34.68726881445456], [-77.45917227333548, 34.686581676672944], [-77.45982700602679, 34.68392890311369], [-77.46009699779334, 34.68317931811139], [-77.45934774412852, 34.681741289203416], [-77.45907890539705, 34.68104212484693], [-77.45789378790609, 34.68008299755138], [-77.45778631214706, 34.679991310022366], [-77.45772608444652, 34.67995069581952], [-77.4575653196875, 34.679817157545216], [-77.45710864837937, 34.678990405059565], [-77.4569460268579, 34.67869598714275], [-77.45682029883349, 34.67831805341009], [-77.45656517147034, 34.67782554360883], [-77.45675880939957, 34.67727228743016], [-77.45674385266051, 34.67705261210572], [-77.45669131626326, 34.67584241653432], [-77.4566702595097, 34.67582046325424], [-77.45660503741365, 34.675765370606975], [-77.455808363826, 34.67509242940443], [-77.45535647396298, 34.67471790004688], [-77.45404685565234, 34.673632456189054], [-77.45403954310044, 34.673616236149016], [-77.45401310839843, 34.67360448537429], [-77.45398252664089, 34.67363248808811], [-77.45222141355295, 34.67547184407987], [-77.4521709326312, 34.67562590088659], [-77.45217814886001, 34.67587058057319], [-77.45205576516517, 34.6763972504823], [-77.45220273447687, 34.67670406755156], [-77.45218361329452, 34.67677833776064], [-77.45208931166458, 34.67712621342573], [-77.45200672146139, 34.677254924611695], [-77.45200172225906, 34.67778340811141], [-77.45199036995498, 34.67786858444462], [-77.4519751786725, 34.67789726641579], [-77.45187647069625, 34.67806805936978], [-77.45165915358805, 34.6783721819978], [-77.4514699079019, 34.678564821935545], [-77.45121905976427, 34.67876718645031], [-77.45115805823382, 34.678816397081114], [-77.4510578528222, 34.678897231948284], [-77.45008671292172, 34.6796806529816], [-77.44961258859914, 34.67993153291734], [-77.44901051221112, 34.68036243317266], [-77.44888740787229, 34.68037944707801], [-77.44895397660919, 34.680433995006005], [-77.44898755244913, 34.680441856667784], [-77.44909533645186, 34.680452133040916], [-77.44988137461635, 34.680370781555844], [-77.45021619306374, 34.680624558800375], [-77.45079205799475, 34.68055928048242], [-77.45090236595183, 34.68054416104237], [-77.45126034132778, 34.68036372424983], [-77.45143190967836, 34.68015087643237], [-77.45144528771294, 34.67959253200232], [-77.45163524688375, 34.680191655442556], [-77.45164742565385, 34.68020624767097], [-77.45167199390778, 34.68023479803983], [-77.45241036044982, 34.68077632245157], [-77.45264745536416, 34.68107999176067], [-77.45285774406494, 34.68148234850652], [-77.4530858237161, 34.68178011737068], [-77.45310541086593, 34.681853845394144], [-77.45310329170542, 34.681898094465694], [-77.45310046648142, 34.682131620365794], [-77.45311134601505, 34.682269302754044], [-77.45314006548388, 34.682424963864065], [-77.45329058055816, 34.682951624455775], [-77.45329038757168, 34.68303651044857], [-77.45331407974376, 34.68307750114154], [-77.45334117890403, 34.6831134597058], [-77.45349006467342, 34.68338580340122], [-77.45347127437788, 34.68345828637432], [-77.45341673019068, 34.68353149963711], [-77.45329647675905, 34.68359764430392], [-77.4532372299226, 34.68361194892134], [-77.4531965621052, 34.68361380292416], [-77.45309233843692, 34.68361653406636], [-77.45287974823613, 34.68360149160792], [-77.45273974726624, 34.68354656960311], [-77.45259064092761, 34.683493323468134], [-77.45243668469878, 34.683443907828604], [-77.45209968106728, 34.68297512384338], [-77.45160255671625, 34.68318339814144], [-77.45138683792351, 34.68322455997384], [-77.45125353240417, 34.68336059890575], [-77.45112262866546, 34.68339683702423], [-77.45086497576033, 34.68347320009578], [-77.45067144990355, 34.68348277851859], [-77.45037890587622, 34.68341036519063], [-77.45037232373092, 34.6834092750556], [-77.45036481007384, 34.6834034249217], [-77.45010027867241, 34.68324208935048], [-77.44982582990886, 34.68294354893835], [-77.44971276385706, 34.682795682286795], [-77.44966725527752, 34.68252352075142], [-77.44924574607384, 34.68232227508719], [-77.44861443718894, 34.68236146677698], [-77.44841857827929, 34.68241002676251], [-77.44839440366664, 34.68242615833574], [-77.44835654185468, 34.682429945511], [-77.44774818369193, 34.682512584690826], [-77.44756648588267, 34.68256831939861], [-77.44734637111029, 34.68263583744246], [-77.4470359745246, 34.682759763962146], [-77.44677715227154, 34.68277353568348], [-77.44647362146843, 34.68288976394172], [-77.44633119614808, 34.68298122279164], [-77.44602854111288, 34.68304530707377], [-77.44567367778357, 34.6830392086948], [-77.44555007833203, 34.6830109718434], [-77.44537558040415, 34.68296215244889], [-77.44516702818488, 34.68299201738354], [-77.4451104916112, 34.683040168911106], [-77.44501773615278, 34.68309173388066], [-77.44455178083138, 34.683335955388316], [-77.44445158433753, 34.68345854960132], [-77.44421849117386, 34.68363985508152], [-77.44408035809289, 34.68336180234836], [-77.4436560868018, 34.683022814393034], [-77.44323020748855, 34.68282392810719], [-77.44319061341422, 34.68276268332698], [-77.4429779230115, 34.682226687061245], [-77.44299491428553, 34.68202934319432], [-77.44272672221541, 34.681579826613074], [-77.44321261132173, 34.68143359287387], [-77.44358356419562, 34.68140373202236], [-77.44363417040132, 34.68137495209279], [-77.44373373771968, 34.681372870667374], [-77.4436732491851, 34.68109356612207], [-77.44359923770486, 34.6808842053745], [-77.44281865503658, 34.68078969263844], [-77.44241401644642, 34.68101660084911], [-77.44200270751305, 34.68132668916583], [-77.4415313765293, 34.68167633534336], [-77.44139252946039, 34.68180552704942], [-77.44106775885344, 34.682117870765545], [-77.44095682747746, 34.68223259580542], [-77.44062211987321, 34.68301997862857], [-77.44063446370933, 34.6830844506325], [-77.44087598076933, 34.683360402338195], [-77.44086837826788, 34.68358339640243], [-77.44087297106684, 34.68372688026147], [-77.44086318432164, 34.683812151291626], [-77.44083819135159, 34.68390789928685], [-77.44081146750686, 34.68398489563634], [-77.44079512735723, 34.684211354779706], [-77.44046730087148, 34.68397742428822], [-77.44037206337747, 34.68383126417618], [-77.44036106337711, 34.68379857331628], [-77.44035132344621, 34.68371793029071], [-77.44032978701196, 34.68358842764814], [-77.4403221835612, 34.683534304310406], [-77.4404836887725, 34.683077771174425], [-77.44048390013532, 34.68303180759499], [-77.44049048197431, 34.682965727720116], [-77.44061555365381, 34.682129907648], [-77.4405925384564, 34.68195171337586], [-77.4404277197495, 34.68136775746409], [-77.44041460768972, 34.681320989325556], [-77.44039422011548, 34.68131300104502], [-77.43983220667221, 34.681081687007214], [-77.43971163992926, 34.68108466520853], [-77.43934973069118, 34.681101112853526], [-77.43917521255943, 34.681137852707145], [-77.43893767509013, 34.68117527918787], [-77.43877363335017, 34.68111325590194], [-77.43858501429577, 34.68096305677196], [-77.43827211213572, 34.680581310536496], [-77.4381706753857, 34.680472170082545], [-77.43811170199285, 34.68038412563737], [-77.43790997161543, 34.68024307668066], [-77.43757789171865, 34.68001438801912], [-77.43692105866607, 34.680101040014385], [-77.43691166315004, 34.68010249087851], [-77.43690941801093, 34.68010296047366], [-77.43685405239331, 34.680085439857834], [-77.4363515571118, 34.67993876148905], [-77.43632409603576, 34.67991862667269], [-77.43631125191624, 34.67990920912588], [-77.43614019869844, 34.679835808664706], [-77.43578971254286, 34.67968052914076], [-77.43575520905193, 34.67967018639172], [-77.43572415860453, 34.67966087862733], [-77.43546039775346, 34.67958181307962], [-77.43544331215679, 34.679575640900964], [-77.43519778286205, 34.67948123199209], [-77.4351732134962, 34.67946707310064], [-77.43509705083059, 34.67938346078918], [-77.43486704155313, 34.679172902601834], [-77.43472638128377, 34.678796693471334], [-77.43471697186499, 34.67877904125743], [-77.4347204587253, 34.67876780126322], [-77.43473512884383, 34.67876645211912], [-77.43506149219556, 34.67857755113996], [-77.43542398568094, 34.67860010452781], [-77.43552928520205, 34.67859453348599], [-77.43579368415445, 34.67859652705938], [-77.43598367991639, 34.67858960922252], [-77.43607019856753, 34.67858117792226], [-77.4362524817642, 34.678477445787294], [-77.43626790052761, 34.67830648711167], [-77.43629261755939, 34.678211955561885], [-77.43623388376122, 34.67801526079481], [-77.43609943443957, 34.67776564952072], [-77.43595695151005, 34.677535518134825], [-77.43579108724836, 34.677330933005024], [-77.43555015088208, 34.677102159977466], [-77.43528458336797, 34.676866882957675], [-77.43494026091707, 34.67688379881912], [-77.43476580469986, 34.67711895196055], [-77.43466257164052, 34.67717759734137], [-77.43451457843355, 34.67731381688233], [-77.43435136499201, 34.677416599483884], [-77.4342939226155, 34.677512978541536], [-77.4341324761342, 34.677693965735074], [-77.4341253491545, 34.67801308076176], [-77.4338408259691, 34.67807751364375], [-77.43365765769435, 34.67806118425113], [-77.43338263967001, 34.67800697369962], [-77.43305019393398, 34.677946156373366], [-77.4328264342477, 34.677914686818355], [-77.43262726398011, 34.677875898126025], [-77.43243850252419, 34.677845745294384], [-77.4323212589217, 34.677836571217554], [-77.43224303300556, 34.677813089949275], [-77.43213756861434, 34.67777856127052], [-77.43201661457984, 34.67771240120684], [-77.43196445645043, 34.67770617870632], [-77.43198867893732, 34.677666727346505], [-77.43205953660117, 34.67766649055686], [-77.43216933752602, 34.67766874379633], [-77.43223422436989, 34.67769427367074], [-77.43224581661892, 34.67763526837087], [-77.43235035707599, 34.677545096096935], [-77.43247400984474, 34.6774355470643], [-77.43252117082952, 34.677415599414616], [-77.43258355363415, 34.67734432975393], [-77.43286824327285, 34.67701436688616], [-77.43277456717574, 34.67668402208583], [-77.43271944849886, 34.67649824924281], [-77.43271107820144, 34.676400337976254], [-77.43269419554105, 34.67620285487305], [-77.43266180997168, 34.67582404481466], [-77.43264575284535, 34.67563623267636], [-77.43259812037738, 34.67507906235184], [-77.4318591746638, 34.67442518897735], [-77.43167014977456, 34.674257926355295], [-77.43144573913744, 34.67416160180349], [-77.43079228117482, 34.67462436772254], [-77.4302763964375, 34.67498970853965], [-77.4301691523457, 34.67506565646422], [-77.42985779584794, 34.67679997000074], [-77.43025071410202, 34.677216996163935], [-77.43045028947137, 34.67744543318738], [-77.4305785699201, 34.67763044164346], [-77.43062098199766, 34.67782057139921], [-77.43060401060654, 34.67789963556929], [-77.43060416178224, 34.67827397707964], [-77.43068747603255, 34.678487894572775], [-77.43090522576964, 34.678716098199885], [-77.43108476589845, 34.67880626043154], [-77.43121570286279, 34.67891149118128], [-77.43144356133104, 34.67907009780801], [-77.43163669297313, 34.67918215462542], [-77.43171315444741, 34.679245632879336], [-77.43183586871908, 34.679448610219694], [-77.43171081700036, 34.6795976024337], [-77.43162021116169, 34.679681691524614], [-77.43133504294099, 34.67983251281336], [-77.43127148406032, 34.67985937301988], [-77.43119869273718, 34.67991650448177], [-77.43082247703646, 34.68021230901168], [-77.43068734816659, 34.6804000107157], [-77.43043882235709, 34.68063719214386], [-77.43027364291528, 34.68089913436111], [-77.43013671455022, 34.68099543632941], [-77.4299590796754, 34.68102846805671], [-77.42996487821159, 34.681219118032374], [-77.42988469297495, 34.68133123959461], [-77.42979259330662, 34.681454446153005], [-77.42967765226328, 34.68148910610954], [-77.42953346938253, 34.68150485236626], [-77.42945554715227, 34.68151202807013], [-77.42920003235007, 34.681707547478155], [-77.42915872027524, 34.681866675802155], [-77.42901957447017, 34.68191151354683], [-77.42890233708837, 34.68196868258375], [-77.42877842705704, 34.68201320011805], [-77.42864470197475, 34.68209981616043], [-77.4284681047033, 34.68200658015563], [-77.42815706512249, 34.68207540639961], [-77.4280654160346, 34.68209605233693], [-77.42801553323275, 34.682305439777515], [-77.42793774273488, 34.68232853425276], [-77.42787621104401, 34.68225670955053], [-77.42794434233002, 34.6820624262659], [-77.42795182453625, 34.68200362024579], [-77.42756920576916, 34.68138768139959], [-77.42722803481321, 34.6814686201582], [-77.42695846612901, 34.681283880330675], [-77.42673510573107, 34.68141668840858], [-77.42657470536366, 34.68152193646271], [-77.42644218882822, 34.68179659045505], [-77.42620051121418, 34.68195012727468], [-77.42615007926862, 34.6819559218793], [-77.4259998765173, 34.68238215628995], [-77.42545475958414, 34.682208680777435], [-77.42540837010422, 34.68221186740668], [-77.42539217484844, 34.68221248450664], [-77.42528756844207, 34.68218986806284], [-77.42443468141485, 34.68214268821578], [-77.42414402624331, 34.68215233365046], [-77.42348157323266, 34.682080049255134], [-77.4229774267278, 34.68175506050081], [-77.4227642510277, 34.681545982220904], [-77.42082406642032, 34.680339228234644], [-77.41923556776656, 34.67944753716152], [-77.41767816095091, 34.67857325639975], [-77.41644843499661, 34.67774634681576], [-77.41605403435071, 34.677204212649826], [-77.4155152741612, 34.67653461611111], [-77.41496577115694, 34.67587287957613], [-77.41512158324387, 34.67439167899351], [-77.41516150119423, 34.6741743989387], [-77.41528324749278, 34.67395499262619], [-77.41693034685545, 34.67255693377463], [-77.41729771339223, 34.67196663025018], [-77.41883783963432, 34.66949168235001], [-77.41927686345015, 34.66921957404868], [-77.41929935596728, 34.66891308420908], [-77.41930418552107, 34.668742255397746], [-77.41921005139064, 34.668602655381406], [-77.41894101251505, 34.66848586471676], [-77.41751615274195, 34.66701517158492], [-77.41533242379238, 34.66691930944786], [-77.41497352870778, 34.666464100320695], [-77.41438150555913, 34.665713167123016], [-77.4139241304546, 34.66553106130763], [-77.412458043902, 34.66626076368415], [-77.41213917312572, 34.66640734297787], [-77.41209171701965, 34.66644276852992], [-77.4119710776895, 34.666653506477495], [-77.41165924896349, 34.666540138003626], [-77.41076721926049, 34.666385739280756], [-77.41024266707, 34.666410210574185], [-77.41015222305758, 34.66629699385694], [-77.41014651476632, 34.666278639661265], [-77.41012666790598, 34.66622042459169], [-77.41066641279434, 34.66589186897163], [-77.41069526343252, 34.66528571421449], [-77.41026883902899, 34.66489726422155], [-77.40911528918598, 34.662870924751836], [-77.4090888383064, 34.662789285344935], [-77.40893534513746, 34.66267747840994], [-77.40629379097388, 34.66243960946706], [-77.40462316091995, 34.66229692723656], [-77.4030887298728, 34.661543430658455], [-77.40221145108171, 34.66011311636133], [-77.40101428261976, 34.659180169844596], [-77.40097388820703, 34.65754256216181], [-77.40092733729104, 34.65625122477697], [-77.40020298868144, 34.655255013695296], [-77.39878173991997, 34.651818671088165], [-77.39875746553724, 34.65096154457092], [-77.40015002146056, 34.64800978444758], [-77.4003903993836, 34.647318079488024], [-77.40084036352023, 34.64716693437122], [-77.40433853009974, 34.64586580068806], [-77.40809692592093, 34.64561665718239], [-77.40879196065232, 34.64541152771485], [-77.41210288551201, 34.64348812472033], [-77.41357567919658, 34.64213033696533], [-77.41374422846252, 34.64078759372536], [-77.4155935448146, 34.637880851647665], [-77.41841411325159, 34.63579908290283], [-77.42050138452551, 34.63464312479836], [-77.422182826922, 34.63419747090531], [-77.42371532541256, 34.63385124120902], [-77.42513317204087, 34.634589911133915], [-77.4266065498835, 34.63499030713274], [-77.42850514573578, 34.63531169406991], [-77.42964144668257, 34.63625932874636], [-77.43174232057, 34.638384527507974], [-77.43282310700796, 34.63734872546483], [-77.43501576277956, 34.63497362513889], [-77.43508808531256, 34.634792821988114], [-77.43512670398172, 34.63469628502628], [-77.43575373353873, 34.633767588964815], [-77.4375184584903, 34.63106067895349], [-77.43775434308377, 34.630770352549284], [-77.43689999777061, 34.62871000968077], [-77.43695761810494, 34.62826657798094], [-77.4368942532189, 34.62799165950512], [-77.43698945195888, 34.62681514790331], [-77.43702387742827, 34.62679815838765], [-77.43715549167007, 34.626733204462894], [-77.43775826916199, 34.626435724022116], [-77.43794267277896, 34.62645561322071], [-77.43876077413155, 34.626167109748735], [-77.43884240072136, 34.6259006741739], [-77.43943990771022, 34.62560577867036], [-77.4399613006842, 34.62534835901268], [-77.44070358693942, 34.625016414889004], [-77.44140758641362, 34.62502923575788], [-77.44133175187369, 34.62554277424652], [-77.44200294437331, 34.62613004190773], [-77.44223074000524, 34.626763486983315], [-77.44312763136259, 34.62769508447688], [-77.44415771369094, 34.62916815404141], [-77.44484372144183, 34.62997197371867], [-77.44622851359779, 34.62983156862441], [-77.44839168365465, 34.629536735173694], [-77.45034049014451, 34.62948551491159], [-77.45248415262822, 34.62794686365492], [-77.45451493057541, 34.626723553396964], [-77.45514882359002, 34.62603417571315], [-77.45641789235874, 34.62313737245699], [-77.45673973127916, 34.62262633903611], [-77.45661962368702, 34.62250471749533], [-77.45678903954264, 34.62231290622541], [-77.45825264794405, 34.619240664735756], [-77.45898956533742, 34.618378681035246], [-77.45970191007143, 34.617591289372875], [-77.46041794905591, 34.61714594583946], [-77.4608757673237, 34.61656095122546], [-77.46029416482754, 34.61570417042649], [-77.45987393135954, 34.61525342045907], [-77.45974847164015, 34.61438277469848], [-77.45970835449091, 34.61367514493614], [-77.45966604060753, 34.61292920482563], [-77.45960880407307, 34.611919709431675], [-77.45958363104234, 34.61147565294325], [-77.4595650335395, 34.61114753498691], [-77.45950120599187, 34.610022078916955], [-77.45939770663102, 34.608611523409984], [-77.45939147050541, 34.608527588457406], [-77.45922620408037, 34.607146388322], [-77.45927752277574, 34.60609198689249], [-77.46019969985913, 34.60405451543804], [-77.46025078146212, 34.603954984602325], [-77.46031229529919, 34.60388240157761], [-77.46065974567989, 34.60331849323028], [-77.46152039903033, 34.60192166403298], [-77.46167944244522, 34.60178003918341], [-77.46330437365448, 34.6000745302441], [-77.46330794167318, 34.60006953972936], [-77.46331368649568, 34.6000698682717], [-77.46331881725257, 34.60006607455694], [-77.46591911442664, 34.598505523643965], [-77.46574375067077, 34.59709975567869], [-77.46574376329787, 34.596424237153215], [-77.46574377608253, 34.595966767203855], [-77.46574380073234, 34.593589756142016], [-77.46577034820653, 34.593462457434235], [-77.46566880062707, 34.593315959008116], [-77.46552658240375, 34.59341336456066], [-77.46344816804442, 34.59288467819263], [-77.46285669792752, 34.59331521391506], [-77.46250642503335, 34.593284485809065], [-77.46239621592238, 34.59355693545557], [-77.46217836877081, 34.59374894806644], [-77.46211500294841, 34.59377448627945], [-77.46176539065885, 34.593955598787055], [-77.46165279200096, 34.59400603274393], [-77.46145407517344, 34.59411647758066], [-77.46101573561165, 34.59431268576597], [-77.46074215719389, 34.59451949379323], [-77.46073688790423, 34.59452480995335], [-77.46072401577095, 34.59453320743157], [-77.4604070772561, 34.59471910250998], [-77.46031308135207, 34.59487205619095], [-77.46019219945369, 34.594953607943054], [-77.46000787999553, 34.59497098814528], [-77.45991934877586, 34.59485814305337], [-77.45986698676391, 34.59477774423341], [-77.45981815819869, 34.594745814666915], [-77.45974159609368, 34.59470462176527], [-77.45955863784297, 34.594606017544045], [-77.45939588365266, 34.594542892774726], [-77.4590316931215, 34.59433609386198], [-77.45868458746581, 34.594116425845556], [-77.45856769625243, 34.59404065748133], [-77.45854251101632, 34.594019982348755], [-77.4584762878148, 34.59392297182174], [-77.4583474464167, 34.59373423164569], [-77.45827735064252, 34.5934298598819], [-77.4582474312615, 34.593393501052695], [-77.45825650914358, 34.593347263329335], [-77.4581779236428, 34.59283339147555], [-77.45817199320442, 34.59269831197732], [-77.45824297355801, 34.59265624005759], [-77.4581777990528, 34.59263717549482], [-77.45812677963347, 34.59264661893994], [-77.45754458946125, 34.592497240694186], [-77.45703718486301, 34.59250650533711], [-77.4565255892884, 34.59274158781096], [-77.45606123040938, 34.59278142657723], [-77.45540934588973, 34.59346468374207], [-77.4556557836063, 34.59367598992111], [-77.45602693109083, 34.594027019034485], [-77.4561937625013, 34.5941494689649], [-77.45637427265528, 34.594297189467916], [-77.45641938129823, 34.594330730442735], [-77.45650528545082, 34.59459263558406], [-77.45647955407378, 34.59463641761286], [-77.45613395417531, 34.59496670158589], [-77.45600085409372, 34.59503551026535], [-77.4560156248694, 34.59513803759068], [-77.45574962205207, 34.59548274364817], [-77.45570212180351, 34.59555036372084], [-77.4556374231606, 34.59561519777578], [-77.4553693562697, 34.59601365276033], [-77.45522653135393, 34.59600333100302], [-77.45484071729925, 34.59600267951013], [-77.45467381871254, 34.596008452969286], [-77.45441049564936, 34.59596521374422], [-77.45372616538685, 34.59577153560093], [-77.4535338602089, 34.5962152904976], [-77.45357714130031, 34.59666494092196], [-77.45360304397312, 34.59693407764263], [-77.45363610770502, 34.59727758117606], [-77.45362902472417, 34.59730248956132], [-77.45362409825943, 34.597318605875515], [-77.45354659921895, 34.59758334189681], [-77.45350756143837, 34.59769983915032], [-77.4534780949354, 34.597745275017964], [-77.45330741205268, 34.59780933887238], [-77.4532337695056, 34.59781283328649], [-77.45320247521495, 34.597807903120696], [-77.45307598967374, 34.59782294804747], [-77.45280811875676, 34.597832991862106], [-77.45270356729523, 34.59779618493384], [-77.45247353059554, 34.597784984919954], [-77.45214817966968, 34.59768753966767], [-77.45183942069824, 34.59764608495432], [-77.45055817414918, 34.59808605105065], [-77.45016611606304, 34.59812773645495], [-77.44979729967073, 34.59831467897733], [-77.44832711736998, 34.5985440644737], [-77.4485659836439, 34.599820389885984], [-77.448619794448, 34.59983251472372], [-77.44865052335868, 34.59989605879297], [-77.44877671628349, 34.600157015632746], [-77.44883079799237, 34.6002688509172], [-77.44885517777931, 34.600319266089635], [-77.44868697945888, 34.60040526624413], [-77.44850848637195, 34.60046575606514], [-77.44836907091567, 34.60051834260839], [-77.44817928255051, 34.60047087586956], [-77.44800260880123, 34.60050928811789], [-77.44764553853942, 34.60044132931132], [-77.44738963070955, 34.60069359744706], [-77.4469778932069, 34.600847970563436], [-77.44668057162157, 34.600756781565266], [-77.44642848602295, 34.600605453104315], [-77.4461443931717, 34.600538489151354], [-77.44545729630336, 34.60012850147564], [-77.44536991250784, 34.60007122220802], [-77.44535763332007, 34.60002435275483], [-77.44440552398738, 34.59964918644117], [-77.44528860713808, 34.59951216625275], [-77.44525798210235, 34.59931426608351], [-77.44522824533277, 34.59929162251361], [-77.44427343023462, 34.599583347554585], [-77.4442547951204, 34.59957604879871], [-77.4435671499009, 34.599057939525096], [-77.4434074564539, 34.59881363359081], [-77.44303607168567, 34.59847087894045], [-77.44322630032926, 34.597997597663074], [-77.4430751676295, 34.59772123346731], [-77.44310720292525, 34.59735223410881], [-77.44311381180351, 34.59733880377741], [-77.4433217196775, 34.59691242488823], [-77.44337176787663, 34.59680967486525], [-77.44344632415604, 34.59662187631451], [-77.44373601665066, 34.596317752649405], [-77.44419225197947, 34.59592567028232], [-77.44417208019196, 34.59585096832919], [-77.44381087245286, 34.59557757294232], [-77.44348805280671, 34.59538798904071], [-77.44330224723302, 34.59528522832583], [-77.44313593481388, 34.59510379430845], [-77.44255495097089, 34.59494651995249], [-77.44234770711427, 34.59496857874524], [-77.44203479761553, 34.595135677516154], [-77.44182252620537, 34.594829150828964], [-77.44189946063833, 34.59445151762704], [-77.44192068800243, 34.59435519035679], [-77.44195331349768, 34.59432538811219], [-77.44223361054267, 34.59392050300828], [-77.44229183752975, 34.593852476361874], [-77.44234715913134, 34.59385498563139], [-77.44239989339108, 34.59383962551472], [-77.44287450300871, 34.593546965013175], [-77.44313512716559, 34.59349307170808], [-77.44349992017159, 34.5933442095723], [-77.44422290125625, 34.59310661898782], [-77.4447108666463, 34.59243115472802], [-77.44519487750242, 34.5917937682282], [-77.44471041359691, 34.59155769681843], [-77.44423743281155, 34.59074306140343], [-77.44392185373866, 34.5907064797745], [-77.44365909972831, 34.59060060103185], [-77.4431422063088, 34.59039231204552], [-77.44314046139786, 34.59038514348461], [-77.44313357335896, 34.5903833322143], [-77.44312465349557, 34.59038523884453], [-77.44256830073468, 34.590235132018506], [-77.44234535087747, 34.59016646160905], [-77.44205880270457, 34.590240224546534], [-77.441826446068, 34.59029261799514], [-77.44155732240858, 34.59034633297627], [-77.4413895806668, 34.59040198550662], [-77.44130989346968, 34.59039071099301], [-77.44116327160444, 34.59036217830027], [-77.44094608472282, 34.59051945612216], [-77.44093550385581, 34.590041633955025], [-77.44138939900233, 34.589977392760524], [-77.44155710288797, 34.58988839188255], [-77.44167743681204, 34.58988464790145], [-77.44168227921907, 34.58975428579117], [-77.44181664960459, 34.589165694673135], [-77.44177838604713, 34.58889119331254], [-77.4416877776605, 34.588762913779924], [-77.44155637267137, 34.58836260337267], [-77.44113384869097, 34.588135224811055], [-77.44155617547334, 34.58795001271052], [-77.44215132060631, 34.58778024024602], [-77.44298110310788, 34.5871814179358], [-77.44313194072186, 34.58709976745417], [-77.44324250391008, 34.586981030337725], [-77.44428901095878, 34.58637843762487], [-77.44470721079271, 34.585348037314006], [-77.44692114772633, 34.58305204910124], [-77.44556486308343, 34.58077822557444], [-77.44509146233825, 34.57950266566362], [-77.44404217464046, 34.57667498028544], [-77.44306954966967, 34.57517821295778], [-77.44154927019838, 34.57331829484268], [-77.4384865780989, 34.5739861124502], [-77.43839773259558, 34.573997873505235], [-77.43831412793216, 34.57401670246284], [-77.43632822634098, 34.57322721959232], [-77.43524563495036, 34.57337967335086], [-77.43501058291378, 34.57313939008734], [-77.4344575949435, 34.57316760399017], [-77.43431899327098, 34.57313553717771], [-77.433921717501, 34.57304362212809], [-77.43382092720017, 34.57289503902612], [-77.43366943210428, 34.57261426175129], [-77.43348798749776, 34.572910671225685], [-77.43318929136402, 34.57314952200594], [-77.43292669706497, 34.57323597719715], [-77.43288181153311, 34.57352937605413], [-77.432782197936, 34.57395004605546], [-77.4327791303342, 34.574058007547805], [-77.43280383282678, 34.57413871104369], [-77.43288215621446, 34.57447803492231], [-77.43296752850614, 34.57478806902942], [-77.43299802245872, 34.57487554298204], [-77.43288252200338, 34.5754828079843], [-77.43282834231908, 34.57569078863902], [-77.43256580258705, 34.57612878319493], [-77.43223886334022, 34.576683664452005], [-77.43241575659448, 34.57700366317542], [-77.43262761793272, 34.57747664359416], [-77.43275929370398, 34.577591231381845], [-77.43317618108509, 34.57824651545172], [-77.43337524088619, 34.57853715147654], [-77.43315948884921, 34.57909811362343], [-77.43333073953701, 34.579441090333425], [-77.43332192964587, 34.579546540345184], [-77.43327805707592, 34.579651459096084], [-77.4332058403416, 34.57986268928827], [-77.43309720047009, 34.57995630256461], [-77.4329815224017, 34.58007789744198], [-77.43288423354556, 34.580156876258314], [-77.43251683435815, 34.580436230316316], [-77.4324809890226, 34.58045991357234], [-77.43246700224724, 34.58047200339474], [-77.43209640218899, 34.580693621194044], [-77.43188149915562, 34.58074963673404], [-77.43149312307006, 34.58083835036699], [-77.43130842576079, 34.58084460806339], [-77.43114505456666, 34.58091162556563], [-77.43077521630362, 34.58086657431933], [-77.43052039320403, 34.580840059593704], [-77.4303459979632, 34.58077861649936], [-77.43023955182554, 34.58067198570873], [-77.43012632642576, 34.58068735892545], [-77.42996420917366, 34.58065911636925], [-77.4297322781654, 34.58058652145984], [-77.42958542322101, 34.580622229143586], [-77.42933829789051, 34.5806916936991], [-77.42913907959655, 34.58073837808255], [-77.42894433375776, 34.58085044890867], [-77.42883966734709, 34.58088354937752], [-77.428702008362, 34.58085278558195], [-77.42863097162872, 34.58068889117338], [-77.42859730974538, 34.580606789350654], [-77.42860063232551, 34.58055198843351], [-77.42855017662558, 34.58040406025252], [-77.42851227538168, 34.58023527547144], [-77.42847217468973, 34.580200286721556], [-77.42844264144367, 34.58008878240904], [-77.42847999718418, 34.57985000408203], [-77.42850059673933, 34.57977158962472], [-77.42854995814385, 34.57971243062741], [-77.4287384357304, 34.579515795557555], [-77.42880066950711, 34.57903322586874], [-77.42877079661169, 34.57888335683492], [-77.42867810111863, 34.57875834129873], [-77.42861484328166, 34.578551625143646], [-77.42865735653231, 34.578475164344056], [-77.4286293965707, 34.57839315276428], [-77.42860298564239, 34.57837687582216], [-77.42863884048822, 34.57836178666466], [-77.4286654072868, 34.57834912671544], [-77.42874653743587, 34.57837065106326], [-77.42889371321922, 34.57838730120524], [-77.42894354815908, 34.5783976418285], [-77.4290659671273, 34.57841610302026], [-77.4292521578677, 34.57848124239964], [-77.42944389972796, 34.57847604968117], [-77.42973160108312, 34.57853267802769], [-77.42984938562991, 34.57860054814507], [-77.43012565279047, 34.57867352305026], [-77.4301345683657, 34.57867662246286], [-77.43019389288659, 34.57867765343898], [-77.43047076256039, 34.57869032786155], [-77.43051966574433, 34.57869595611386], [-77.43055488763554, 34.57866343796564], [-77.43060477388056, 34.57861825864958], [-77.43094875209123, 34.57818193806988], [-77.43100034728467, 34.57804283802031], [-77.43080603914395, 34.57773998329084], [-77.43060865232398, 34.577672248789966], [-77.4305193178424, 34.57766699872362], [-77.43034875876299, 34.57762230155352], [-77.43012527955865, 34.577553780224676], [-77.4300408877189, 34.57751693107456], [-77.42988443474565, 34.577448616317305], [-77.4297929728323, 34.57739529783174], [-77.42973117083105, 34.57722275708786], [-77.42967978456312, 34.577108944512936], [-77.4296651468943, 34.57705572467171], [-77.42973105552755, 34.576870935828744], [-77.42997393785741, 34.576423809152175], [-77.43040089539579, 34.57610018935075], [-77.42994241731631, 34.57593835750553], [-77.42973074905916, 34.57593463399611], [-77.42949791863, 34.5759797886935], [-77.42894277356939, 34.575965186632025], [-77.4284947572583, 34.576009361697274], [-77.42815481057572, 34.576039191075395], [-77.42783521959413, 34.57612661122086], [-77.42770213189814, 34.576128967268055], [-77.42736683866822, 34.57608907310267], [-77.42707187916716, 34.576263456325634], [-77.42677823023604, 34.57640905481565], [-77.42657896831565, 34.5764942790825], [-77.42648250871676, 34.57656258458936], [-77.4262950821338, 34.57669364286456], [-77.42618504168937, 34.576737149195246], [-77.42615589932768, 34.57674516530111], [-77.42598806096271, 34.576800072532315], [-77.42584487601215, 34.576816693582614], [-77.42579106797724, 34.576820382441774], [-77.42575145673835, 34.57681489230408], [-77.4256468299937, 34.57678732775888], [-77.42549374211062, 34.57670523970957], [-77.42539702150003, 34.57664273011334], [-77.42526647763492, 34.57655836089771], [-77.42508861671536, 34.57644341006663], [-77.42504045701244, 34.576409963086455], [-77.42500295577608, 34.57638804771611], [-77.42488571651246, 34.57626043786322], [-77.42484843904539, 34.57621999666518], [-77.42482290145507, 34.57607557110895], [-77.42482695924654, 34.576056635291934], [-77.42490493434326, 34.575939864703145], [-77.4250028160312, 34.575871277394086], [-77.42518022596816, 34.57577221178452], [-77.42524042318871, 34.575740788342586], [-77.42539676140761, 34.575697620530306], [-77.42551907352137, 34.575663847682684], [-77.42579070213434, 34.57551343483338], [-77.4258170017314, 34.575488971782356], [-77.42580140188585, 34.57507830014411], [-77.42580467203209, 34.575066165866275], [-77.42579863455538, 34.57505835293972], [-77.42579057484491, 34.575057637026575], [-77.4257724857414, 34.57505132529597], [-77.42539653403608, 34.574869423367765], [-77.4252709921303, 34.57485399141058], [-77.42500254858521, 34.574880317438144], [-77.42470992391368, 34.574909013914066], [-77.42460855971551, 34.57487899302237], [-77.42456446917316, 34.57486831772358], [-77.42441444655275, 34.574842485768926], [-77.4244123617472, 34.57484191838826], [-77.42441155570333, 34.57484195025732], [-77.42440927335934, 34.574840774071], [-77.42428740298521, 34.57478232913666], [-77.42424967615791, 34.57469188675068], [-77.42424801148677, 34.57465424340562], [-77.42423877070385, 34.574469479062316], [-77.42424536907583, 34.57444233173264], [-77.42423671238488, 34.574419592938796], [-77.42421443991333, 34.574374034505034], [-77.42406350245972, 34.57378193437469], [-77.42393634676971, 34.57363781359455], [-77.42382019713462, 34.57336658249336], [-77.4237618819908, 34.573301264926876], [-77.42342614379687, 34.57307877819895], [-77.42322122489276, 34.57352019488617], [-77.42303231881947, 34.57371350788692], [-77.42295755033908, 34.57377925134395], [-77.42272335944818, 34.57390466936179], [-77.42263838821313, 34.57393306476339], [-77.42251711972371, 34.5739735896117], [-77.4223876205801, 34.574015922916715], [-77.42224443421287, 34.57406242137788], [-77.42204822859594, 34.57412376814123], [-77.42204745599034, 34.57412400970789], [-77.4220449757895, 34.57412607881082], [-77.42185049567153, 34.57426423012755], [-77.42176236717594, 34.5743765317756], [-77.42177271034049, 34.57445891221614], [-77.42182174649501, 34.57476143216805], [-77.42182584667623, 34.57479194564666], [-77.42183155974327, 34.57481166315838], [-77.42183419142016, 34.575197522350656], [-77.42154192447292, 34.57516572618016], [-77.4214567150251, 34.575170362796044], [-77.42128234865753, 34.57510716671164], [-77.42125127219964, 34.575096340837874], [-77.42106268015051, 34.574971209249945], [-77.421023629808, 34.57494992993425], [-77.42096930919455, 34.5749157005855], [-77.4206686194837, 34.57464500785672], [-77.42061439390723, 34.5746008189348], [-77.42051917671287, 34.57455614942669], [-77.42046273170722, 34.574342497126324], [-77.42044108793398, 34.574142846046904], [-77.42044567539473, 34.57395769676213], [-77.42040870562721, 34.57372293979609], [-77.42048981336646, 34.57351878990366], [-77.42096089250091, 34.57321857530156], [-77.42101938876506, 34.573163901290826], [-77.4210622772401, 34.57315365653902], [-77.4211058584643, 34.57315066300659], [-77.42165503120748, 34.572907971318095], [-77.42185015950527, 34.57280726955625], [-77.42217145347635, 34.57261907986642], [-77.42222517484406, 34.5725909350775], [-77.4222440858302, 34.57258187366238], [-77.42227880969578, 34.57256614198882], [-77.4226380206388, 34.572400897179435], [-77.42286630174522, 34.57234012354734], [-77.42332512177413, 34.57213640919343], [-77.42342591607053, 34.57216416801574], [-77.4235859052234, 34.57216252708037], [-77.42382657075063, 34.57195532907417], [-77.42357883961152, 34.57182623117053], [-77.42342574525006, 34.57147617169769], [-77.42339075183031, 34.57120677501999], [-77.42332771247189, 34.57117824377831], [-77.42289018810312, 34.57096933426942], [-77.42263768129541, 34.57097994572446], [-77.42240347536156, 34.57105936929732], [-77.42224374129087, 34.57111072344104], [-77.42198991931619, 34.57122053909255], [-77.42184979790348, 34.5712324242585], [-77.42176411591387, 34.571311819525725], [-77.42146203597228, 34.57144118429602], [-77.42145587325255, 34.57144309270196], [-77.42144921381629, 34.571442502237566], [-77.42107814676574, 34.57148579417328], [-77.42106190838236, 34.571479976965435], [-77.42102321951154, 34.571469536325765], [-77.42066791683008, 34.57139470955039], [-77.420591451187, 34.57123139566464], [-77.42056853589904, 34.57115233741247], [-77.42048749689002, 34.57096970410011], [-77.42041001365601, 34.570750655595745], [-77.42048119740866, 34.57051681198194], [-77.42027376928814, 34.57056291088909], [-77.42005058234874, 34.5703780006606], [-77.42000009915382, 34.570255578469805], [-77.42001345828473, 34.57010292648939], [-77.42013587599588, 34.57008959587149], [-77.42027366629496, 34.5700712700471], [-77.42044578306228, 34.570081808544984], [-77.42048807207549, 34.570083726496186], [-77.42066764890407, 34.57014575405622], [-77.4207746955999, 34.57015801683569], [-77.42106166102172, 34.57035201404106], [-77.42145133963902, 34.57017103613358], [-77.42146131190812, 34.57016800496533], [-77.42184958334843, 34.570294025364646], [-77.42212451421278, 34.56995014413313], [-77.42224345469847, 34.56988180463631], [-77.42237626219487, 34.56976054434672], [-77.42254859353855, 34.56968816336875], [-77.42263736463848, 34.569648346821616], [-77.42269961791382, 34.569637754058434], [-77.42296773831785, 34.56960043620477], [-77.42303133252145, 34.569663548956385], [-77.42323464425994, 34.56969882668446], [-77.42342537824099, 34.56999360871121], [-77.42383059815404, 34.569819634001234], [-77.42359366344924, 34.570290638949515], [-77.42389379394658, 34.5705917806022], [-77.42421357387335, 34.5710232070114], [-77.42422240179125, 34.57103944508452], [-77.42425547277136, 34.57104417534746], [-77.4250017094581, 34.57175341943171], [-77.42508926470208, 34.57167847371946], [-77.42501971832519, 34.57178290534723], [-77.42504850902311, 34.57182915865361], [-77.42529515060627, 34.572276184341824], [-77.4255910572789, 34.572335306528004], [-77.42578983390429, 34.57239328188704], [-77.42582552019255, 34.5724771917004], [-77.42586311960898, 34.57251019173446], [-77.42641225816485, 34.573101394403054], [-77.4265544337366, 34.5732594550917], [-77.42655213581463, 34.57328770723321], [-77.42657804692887, 34.57329971694455], [-77.4272032427111, 34.574014858640254], [-77.42726804378961, 34.574111325603], [-77.42736626276101, 34.57415682575922], [-77.42771904614052, 34.57440937948775], [-77.42779804137521, 34.57439413067706], [-77.42815429168597, 34.57435195909073], [-77.42847141298782, 34.5741733736874], [-77.42854820662305, 34.5741262221971], [-77.42875803705763, 34.57398854113057], [-77.42894211823015, 34.57389658638155], [-77.42904679993462, 34.573861214411906], [-77.42912005803538, 34.573737799614364], [-77.42956157413408, 34.5730060872465], [-77.42967335265814, 34.57280864038066], [-77.4297045165852, 34.57277697338859], [-77.42972971739805, 34.57276827795004], [-77.42977886676181, 34.5727404094345], [-77.43012361896731, 34.57253756707141], [-77.43028998514916, 34.57247422683409], [-77.43051755139777, 34.57240585694256], [-77.43109567605553, 34.5723769043686], [-77.43192748081862, 34.57181223407579], [-77.4320932336442, 34.57178178000009], [-77.43223980137414, 34.571746406548925], [-77.43248793602419, 34.57155255977911], [-77.43277883449224, 34.57140035157334], [-77.43288104413823, 34.57141070856293], [-77.43344896385555, 34.571176578964014], [-77.43366888584545, 34.57114285282628], [-77.4348423303679, 34.57077856756181], [-77.43524439220522, 34.57019160376859], [-77.43764228356845, 34.56822197929324], [-77.43839521590735, 34.56810583430661], [-77.4391347915928, 34.56799172946848], [-77.43870360505, 34.566924030658605], [-77.43659378800824, 34.56416533470113], [-77.43592874371828, 34.56352111325062], [-77.43524169381124, 34.56320448789519], [-77.43328451734828, 34.56124717273582], [-77.43270490779071, 34.56066750965421], [-77.43208923250472, 34.56027973634542], [-77.43057396251734, 34.56000590165724], [-77.4289375675393, 34.55924145095555], [-77.4283784366089, 34.559162418232425], [-77.42627067487948, 34.558864461573854], [-77.42600197893826, 34.55867060920935], [-77.42578608851655, 34.55862337506069], [-77.42557169889749, 34.558734378913734], [-77.42453480009517, 34.55876578191135], [-77.4242104265504, 34.558562138008256], [-77.42276546991899, 34.55923036466471], [-77.42263492384696, 34.55919118242778], [-77.42258839165302, 34.55934646558304], [-77.42232291069695, 34.55943502329564], [-77.42120140449697, 34.55975016688169], [-77.42105938994514, 34.55979007205289], [-77.4208761944831, 34.55984154746065], [-77.41980290758944, 34.560143125242504], [-77.41948376685333, 34.560047508052456], [-77.41934259183077, 34.56001782876697], [-77.41855500861348, 34.559979459915404], [-77.41790806158963, 34.55989460867303], [-77.4177836569469, 34.559956801101805], [-77.4175106166535, 34.56013034669313], [-77.416902133665, 34.56083218878834], [-77.41633255587354, 34.56099939733001], [-77.41547282655712, 34.56135140799238], [-77.41380848059913, 34.561341220724714], [-77.41318118757745, 34.56126565825346], [-77.41273373572677, 34.56130262331482], [-77.41012081387525, 34.5612958257747], [-77.41002977478354, 34.56129007117336], [-77.40997938669713, 34.56127243342748], [-77.40984760095007, 34.56123715563379], [-77.40774744569215, 34.5606036400474], [-77.40687831676408, 34.56039387375459], [-77.4057731664783, 34.560127130780096], [-77.40543017595091, 34.560039156268274], [-77.4050403481983, 34.559950249099955], [-77.40372692386038, 34.55984701020471], [-77.40058623061397, 34.55917755036569], [-77.40058083986129, 34.559172648692375], [-77.4005755704007, 34.55916942505692], [-77.40055950762886, 34.559164093948155], [-77.40054598532818, 34.55918335856299], [-77.39742415527157, 34.56000350489612], [-77.39596594993787, 34.561669365161265], [-77.39584821762222, 34.56270023600757], [-77.3955355930906, 34.562966046721826], [-77.39506028838915, 34.56326593523636], [-77.39469622052337, 34.56296732268831], [-77.39427243567783, 34.56301968881331], [-77.3942144705745, 34.56264441780588], [-77.3940743670798, 34.56245109188028], [-77.39404743716577, 34.562061980373564], [-77.39407374625631, 34.56181557654271], [-77.39348476095255, 34.56129746351572], [-77.39341770575851, 34.56113336950757], [-77.39292867052079, 34.560532178820985], [-77.393096591314, 34.56025825935014], [-77.39269707116935, 34.559960082344126], [-77.3923836237215, 34.55900079210679], [-77.39112151438782, 34.559003217695015], [-77.38979597860794, 34.55930574618317], [-77.38954575436571, 34.559475542628974], [-77.3889797995996, 34.55976372701904], [-77.3886910601516, 34.558274027306425], [-77.38916284587296, 34.557429122165885], [-77.38797069031222, 34.55612103526943], [-77.38719566230725, 34.555151849114715], [-77.38659661166245, 34.55440268525768], [-77.38482032087553, 34.552199760794025], [-77.38439368344822, 34.551783780241266], [-77.38424120854377, 34.551345808058514], [-77.38396879864302, 34.55084811995768], [-77.38314893286886, 34.54954466220669], [-77.38293723242805, 34.54882530596959], [-77.38317695934523, 34.54847644728058], [-77.38331440455487, 34.54841589021473], [-77.38380121812621, 34.54817115238715], [-77.38490215999698, 34.5476477189502], [-77.38518547471469, 34.54746647786076], [-77.38592338128404, 34.547185931343535], [-77.386048023407, 34.54689258429593], [-77.38648734515196, 34.54699210697749], [-77.3865619299736, 34.54704656237293], [-77.38660978204888, 34.54708694048851], [-77.38694584204458, 34.54723873670284], [-77.38717155620448, 34.547438894972714], [-77.38718327551405, 34.54749389266546], [-77.38719562003575, 34.54753247687349], [-77.38748416788093, 34.547940157847066], [-77.38802359133982, 34.54850604687738], [-77.3882160413725, 34.548691308148285], [-77.38851254453654, 34.54877115840888], [-77.38865374819596, 34.54915286005146], [-77.38903552058524, 34.550002305833104], [-77.38931117288455, 34.55061462220437], [-77.38896659098535, 34.552988017032426], [-77.3901464144592, 34.55389070054814], [-77.39112216884202, 34.55463724858825], [-77.39268482090284, 34.55523662835657], [-77.39427322607997, 34.55584666787599], [-77.39700610309916, 34.55584667046462], [-77.39735421385063, 34.54953045375396], [-77.39736852056416, 34.549452145873204], [-77.39735773822834, 34.5494113265242], [-77.39742893885906, 34.549266394602995], [-77.39865789532855, 34.54607037863585], [-77.39899033738125, 34.545300684353414], [-77.40089449663982, 34.54318476625565], [-77.40089400498462, 34.542953195987735], [-77.40111927592545, 34.54107603646634], [-77.40111725916054, 34.539320184188924], [-77.40128325980513, 34.538794911419096], [-77.40126055533219, 34.537138255585795], [-77.40123680759616, 34.53540542867834], [-77.40401781337391, 34.53552411609499], [-77.40470966424809, 34.53468158913438], [-77.40559197917614, 34.533549822438026], [-77.40564831669775, 34.53258734425957], [-77.40579717970633, 34.53166320747919], [-77.40580153406722, 34.5315858768694], [-77.40584958797007, 34.53147220612493], [-77.40618208148308, 34.53085713026149], [-77.40647867244141, 34.53079338784628], [-77.40720025834662, 34.530404532741976], [-77.40725036611653, 34.53038326924667], [-77.40727334192547, 34.53036139848603], [-77.40774051901035, 34.529836830398956], [-77.40784522663054, 34.52967926269265], [-77.40870699891886, 34.52920756601403], [-77.4087363744646, 34.529119289745864], [-77.40887234172554, 34.529063133223396], [-77.40902197187307, 34.52906865914281], [-77.4101588899273, 34.52881761915775], [-77.41045017160351, 34.52871256156532], [-77.41078076713714, 34.528418349930675], [-77.41091061250316, 34.52818986861378], [-77.41119812620529, 34.52786838241418], [-77.41125503406221, 34.52782112084878], [-77.41185388527138, 34.527655231034416], [-77.41204563110668, 34.52756957457129], [-77.41332542343297, 34.52737737075528], [-77.41362296357785, 34.52723935968726], [-77.41408404345583, 34.5267529745082], [-77.41437419858157, 34.526430177261695], [-77.41442672710225, 34.52639513996477], [-77.41492557600512, 34.526350510620226], [-77.41517217868753, 34.52634029887391], [-77.41521198244058, 34.526382791534225], [-77.41556890018467, 34.526481573769956], [-77.41676981223058, 34.526928946595305], [-77.41694224406723, 34.52693088046015], [-77.418345999712, 34.52664871874401], [-77.41900376591134, 34.52674055526825], [-77.41893951984422, 34.527126704578734], [-77.41833816069607, 34.527001959319776], [-77.41691591863939, 34.52713629322915], [-77.41675851132872, 34.527437758505414], [-77.41623144642014, 34.528789863859906], [-77.41560369569874, 34.52919061202407], [-77.4167064091747, 34.52978363049658], [-77.41712391073102, 34.53065714908345], [-77.41724575967653, 34.53091207377954], [-77.41746804454424, 34.531377123668136], [-77.41780180867265, 34.532075424250095], [-77.41827335380447, 34.532722309957705], [-77.41823206870586, 34.5336813469242], [-77.41977839675579, 34.53446351458288], [-77.41913353202187, 34.5368621660981], [-77.41914427806054, 34.53847262886677], [-77.41886654696461, 34.54000164561834], [-77.41881551272454, 34.54096724936334], [-77.41886331029845, 34.54243070245792], [-77.42092924373233, 34.54322964540707], [-77.42208608593273, 34.54392373855716], [-77.42266582302247, 34.54427157449622], [-77.42392275517982, 34.54482542667243], [-77.42682708009761, 34.54519716271597], [-77.42829600900532, 34.54567204276475], [-77.42893349579661, 34.54567205272487], [-77.42976845544506, 34.54567204355267], [-77.4336935469507, 34.54586623221272], [-77.43523524496375, 34.546100763413776], [-77.43996039487043, 34.5449966807096], [-77.44153662510779, 34.54560775124497], [-77.4435400617648, 34.54493994940801], [-77.44386451940179, 34.54273288387662], [-77.44418198515912, 34.54106366120531], [-77.44434405271186, 34.54070472734461], [-77.44427741808342, 34.54042975208705], [-77.44398628082246, 34.5387976718971], [-77.44324688296402, 34.5359574056883], [-77.44324878719827, 34.534986818526114], [-77.44300301169653, 34.53422780177208], [-77.4417781147443, 34.53199508094334], [-77.44126351770342, 34.53135654231898], [-77.43913661903318, 34.529429513025775], [-77.43578854860797, 34.52823111955177], [-77.43558396731609, 34.52808240481928], [-77.43348630336317, 34.525983968148616], [-77.42999908219717, 34.525549679110085], [-77.4293633851451, 34.525393602384014], [-77.4281096768133, 34.526617698157814], [-77.42776419592958, 34.526718888138404], [-77.42698923270575, 34.52706630739684], [-77.42695751432026, 34.52706858067601], [-77.42695420463272, 34.5270603380268], [-77.42648097052276, 34.52694675165185], [-77.42648164231997, 34.52681965228832], [-77.42680608134748, 34.52659206561782], [-77.42694284211116, 34.52611363552027], [-77.42695707166908, 34.526057617403126], [-77.42740095982103, 34.52576639008068], [-77.42778858527957, 34.52561425181292], [-77.42836796949467, 34.52538684280039], [-77.42908486796527, 34.52510545926582], [-77.42935269709, 34.523320877736374], [-77.42933954091379, 34.5232875868879], [-77.42929796092469, 34.52322290956978], [-77.4294107428955, 34.523246896246405], [-77.42960814924628, 34.52324874007605], [-77.43027760465876, 34.52455192004604], [-77.43327224310322, 34.523167959696124], [-77.43575084133323, 34.52049222021367], [-77.43587750530494, 34.5203831428752], [-77.43602934708787, 34.520191538832464], [-77.43846306150911, 34.51774597975534], [-77.43896317284052, 34.51718100616815], [-77.43974224909118, 34.51638151181582], [-77.44167615594634, 34.51591001067004], [-77.44213167068463, 34.515858638641596], [-77.4426444601605, 34.51580557593437], [-77.44687956573301, 34.51582895385879], [-77.44840042976796, 34.516324178075976], [-77.45018739883443, 34.515498074402046], [-77.45372664140828, 34.514916738966306], [-77.45389208409259, 34.51489361626814], [-77.45398996911547, 34.51487903190939], [-77.45646192137369, 34.514439814491325], [-77.45854162061956, 34.51480339203119], [-77.45927023825917, 34.51485796275605], [-77.45950439256113, 34.51513010448481], [-77.45970379791234, 34.5152203220076], [-77.46037677093517, 34.51569462981685], [-77.46160053039925, 34.516667622292154], [-77.46176369518807, 34.51708149970853], [-77.46200304324022, 34.5180390510872], [-77.46195039258097, 34.52011563002339], [-77.46238970224262, 34.5214242495392], [-77.46099834256371, 34.52458147739372], [-77.46176242179065, 34.52773238232436], [-77.46300606519645, 34.52966621347114], [-77.4630000486637, 34.53212678827651], [-77.46477357212606, 34.53317944515308], [-77.46536247321907, 34.533743356370614], [-77.46685447982986, 34.53403243507948], [-77.46761192577269, 34.53341738022873], [-77.46817286102308, 34.532174630885095], [-77.46872261333876, 34.531297526015834], [-77.47326620889936, 34.527923351717966], [-77.47471425592181, 34.52740768599018], [-77.47635005491998, 34.52687222726418], [-77.47779356942658, 34.52652653135136], [-77.47843053998895, 34.52580258736996], [-77.4795492483645, 34.52500283302042], [-77.4815272571804, 34.524432105373634], [-77.4788828917056, 34.51992765753232], [-77.4810867721252, 34.51900583965803], [-77.48460598430349, 34.517954080689194], [-77.48670313911046, 34.516656691433724], [-77.48593365953197, 34.51384709796], [-77.48443309342818, 34.508367267020574], [-77.48293274545952, 34.50288740467971], [-77.48218265325066, 34.50014746173739], [-77.48184029599537, 34.49889680190411], [-77.48121202426981, 34.499676201687116], [-77.48088506660231, 34.50008177650545], [-77.48097087869925, 34.50078087766715], [-77.48118014374333, 34.50203652703822], [-77.48127222667208, 34.50280336281811], [-77.48066503009824, 34.504072725696645], [-77.48140810100158, 34.50689874346678], [-77.47888720254505, 34.50778942261112], [-77.47853182985276, 34.50787826196182], [-77.47789837820272, 34.508036618003054], [-77.47649731186425, 34.508899817786975], [-77.47596391804547, 34.50900740553462], [-77.4762278997491, 34.50930304671311], [-77.47542222742065, 34.50994486218623], [-77.4750035272344, 34.510592036761714], [-77.47432828632878, 34.51081737936528], [-77.47359315076885, 34.512608110664196], [-77.4730235522099, 34.51319374586744], [-77.47024637181987, 34.51558945665409], [-77.47008106833272, 34.5156548271861], [-77.46943399977414, 34.51571388752299], [-77.4652379581799, 34.51697698864197], [-77.46423811793923, 34.51578880430792], [-77.46372075344654, 34.515424168563555], [-77.46115959606244, 34.51426541693896], [-77.46032198671722, 34.51329192017503], [-77.46054418200632, 34.51256092984163], [-77.461072022462, 34.51159640842967], [-77.46106212512443, 34.51127528867242], [-77.46106091790053, 34.511236138599365], [-77.46108637790095, 34.51117201113335], [-77.46091351055748, 34.511016907546754], [-77.46059671330548, 34.51104924992261], [-77.45825801019203, 34.511157066237274], [-77.45468963994516, 34.51138198883861], [-77.45295528371511, 34.51146765985247], [-77.45189474620123, 34.51157491060497], [-77.44765635908905, 34.51190590731264], [-77.44366617660181, 34.512330057607514], [-77.44220818489077, 34.51236684218639], [-77.44138705966824, 34.51226448857979], [-77.43598976337337, 34.51257221166351], [-77.435923520275, 34.51263858061311], [-77.43279319323138, 34.51499097257141], [-77.43116907946659, 34.51714666406293], [-77.4304957098096, 34.517846651809755], [-77.4295152723402, 34.51850878054128], [-77.42905902893605, 34.51913459703367], [-77.42792913539233, 34.51924871402397], [-77.42768335403426, 34.519609565217856], [-77.42738221840534, 34.52030584160954], [-77.42689888791105, 34.52070237672889], [-77.4265552454376, 34.520897023457586], [-77.42630695976803, 34.521618106383876], [-77.42626223838269, 34.52174769839113], [-77.42626280220827, 34.521773730143536], [-77.42626375457586, 34.52179806541749], [-77.42619419731585, 34.522707700924094], [-77.426188548194, 34.52276384336965], [-77.42618166197614, 34.522826349119896], [-77.42609086480203, 34.523650553401666], [-77.42608284836005, 34.523758502798245], [-77.42607362703424, 34.523874295504505], [-77.42603750703864, 34.524254747517716], [-77.42599900581315, 34.52459898232987], [-77.42598556091089, 34.52475194650052], [-77.42596310390815, 34.524924126420004], [-77.42588332542269, 34.525535835835], [-77.42584856433035, 34.52575112922433], [-77.42581478216292, 34.526002605674776], [-77.42575261686406, 34.526465387400634], [-77.42573806135123, 34.52674648204555], [-77.425777567349, 34.526996869226195], [-77.42577592294421, 34.527230697848864], [-77.4258058810797, 34.52748433985262], [-77.42581500029696, 34.52771473515397], [-77.4257554241366, 34.52797970913484], [-77.42595446164114, 34.52818426167836], [-77.42598690183176, 34.52828729247027], [-77.42615725460323, 34.52839267369743], [-77.42642256389755, 34.52844011348223], [-77.42761611896874, 34.528363983825216], [-77.4277285270701, 34.528334412528736], [-77.4278940238689, 34.52829087314201], [-77.42928936723668, 34.528748888034556], [-77.42972005458417, 34.528838926519725], [-77.43003056749966, 34.5290639254745], [-77.43063209502517, 34.52982940817293], [-77.43151973321264, 34.53080734013754], [-77.4305739522323, 34.532056044617136], [-77.43236412640383, 34.53171040405111], [-77.43336035091092, 34.53249990027308], [-77.43300566148393, 34.53407727341755], [-77.43486381827397, 34.53585739483114], [-77.43430525396965, 34.53628075965633], [-77.43484868196276, 34.536544767123615], [-77.43488896615345, 34.539841638632645], [-77.43488295186756, 34.54011476780186], [-77.4350445925556, 34.54026082719875], [-77.43451227715013, 34.541644676375526], [-77.43314408594902, 34.541701333408554], [-77.43215203058675, 34.54134212438316], [-77.43034036321686, 34.54160409651256], [-77.42901075307803, 34.54137960776549], [-77.42838309098961, 34.54144529134487], [-77.42586078562654, 34.541809955141765], [-77.4254785216151, 34.54171438048709], [-77.4246087572291, 34.54160037298779], [-77.42489779856588, 34.540946052566376], [-77.42491406100928, 34.54021002797934], [-77.42527638385633, 34.53954510897459], [-77.42530700774677, 34.53915873278374], [-77.42787800802748, 34.53721021365484], [-77.42537691170618, 34.53599502389177], [-77.42536889527751, 34.53521653563747], [-77.42540349913207, 34.53365047912173], [-77.42446274713751, 34.53282362837378], [-77.4229083454824, 34.53331403021808], [-77.42094465852713, 34.53233625352441], [-77.42025664958395, 34.532147134795515], [-77.41979904875163, 34.53192160805086], [-77.4193977895427, 34.53158045389319], [-77.41955623831903, 34.53074590669087], [-77.41948125010508, 34.53058902124512], [-77.4193444579076, 34.53030283321764], [-77.41904337068019, 34.52967293659473], [-77.41887832567039, 34.529327642741876], [-77.4187261273976, 34.52900921702833], [-77.41937643169449, 34.52895016146344], [-77.41986874671731, 34.52877812522219], [-77.42017843235685, 34.52882537484386], [-77.42048868047655, 34.52887270936361], [-77.42065110149852, 34.52889748983881], [-77.4207713683824, 34.52885902171023], [-77.4211076596868, 34.52867697536037], [-77.42112159907488, 34.52859359481467], [-77.42117940758365, 34.52838485097951], [-77.42120994201858, 34.52823013423094], [-77.42123558874331, 34.528024195817196], [-77.4211599764739, 34.527897973567974], [-77.42126971618141, 34.527515320947586], [-77.42131178990986, 34.52738634515415], [-77.42137524107399, 34.52731737076863], [-77.42147465223123, 34.527157400067104], [-77.4216616254185, 34.52684609328616], [-77.42177800836235, 34.52652001544244], [-77.42204305438781, 34.526301271234644], [-77.42233623110995, 34.52579821396126], [-77.42234897701024, 34.52576736625238], [-77.42240081285543, 34.52569204606964], [-77.42261821988964, 34.52523875800518], [-77.42284204281678, 34.52505094223862], [-77.42309921551399, 34.52469098782128], [-77.42310560235343, 34.52467861917388], [-77.42310652077137, 34.52436096796173], [-77.42310731379541, 34.524190543764], [-77.42310717788337, 34.52418870471644], [-77.42310547252562, 34.52418587946415], [-77.42295980541405, 34.52381932867604], [-77.42287453896792, 34.523732647589455], [-77.4226876096618, 34.52354261828684], [-77.42225169919324, 34.52333299442557], [-77.42206523131816, 34.52304831061033], [-77.42161038831996, 34.52246616830825], [-77.42159268395577, 34.52244888654148], [-77.42158839423827, 34.52244369724809], [-77.42157927364902, 34.52243505204481], [-77.42093116907212, 34.521975804569294], [-77.42080815448043, 34.52181148282118], [-77.42053310910703, 34.52194258105114], [-77.42001357321996, 34.52224652000515], [-77.4195772008815, 34.52247107838402], [-77.41871198407974, 34.52286525232235], [-77.41842718722499, 34.52299032390691], [-77.4174043241316, 34.523401184070835], [-77.41683609259684, 34.52394479743253], [-77.41577098171773, 34.52395457326369], [-77.41526322573782, 34.52407761109559], [-77.41380559627449, 34.5236381926509], [-77.41370223249336, 34.52367645039416], [-77.41328100111946, 34.52390957233289], [-77.41211941646253, 34.52425592187194], [-77.41196902711042, 34.52473173234982], [-77.41184210626031, 34.52483727387261], [-77.41052181527888, 34.52549777060882], [-77.40976952398947, 34.52560447608819], [-77.40975609919983, 34.525138606769055], [-77.41055390321186, 34.524057950576676], [-77.41056603247016, 34.52404970856432], [-77.41068176775538, 34.52402553736854], [-77.41213225459107, 34.523679379032465], [-77.41359956433362, 34.52353804073158], [-77.41370711290352, 34.52345709346119], [-77.4140013318351, 34.522740194130385], [-77.41450794373324, 34.52274317310689], [-77.41477183919702, 34.52245527003333], [-77.41505676101252, 34.52226009377114], [-77.41522216523028, 34.52195556344504], [-77.4151831438992, 34.52190615743172], [-77.41531490190235, 34.521753004673414], [-77.41543508395277, 34.52145085596019], [-77.41561647080864, 34.521353859173466], [-77.41612790941518, 34.5207944986957], [-77.41616894094324, 34.520755068642764], [-77.4158436078803, 34.52034167206423], [-77.41577358296729, 34.52008871576282], [-77.41534261641667, 34.51943469323258], [-77.4145057355017, 34.51911762306092], [-77.41381117915763, 34.51877979445168], [-77.41325702069034, 34.51939892470768], [-77.4122249435172, 34.519516936728095], [-77.41164643794399, 34.519968741037246], [-77.41142294068956, 34.52049362259483], [-77.41061408414359, 34.52135762199136], [-77.40915041809745, 34.52124399226856], [-77.40904607987476, 34.521273862806886], [-77.40895544835783, 34.52128038136765], [-77.40745789497562, 34.52209415253208], [-77.40701602394752, 34.52232384856425], [-77.405876250621, 34.52262025246772], [-77.40534524799358, 34.52219542407532], [-77.40478888507702, 34.5222342268449], [-77.40444094189453, 34.5228805924468], [-77.40488096616028, 34.52290464319276], [-77.40440721389544, 34.52304186029663], [-77.40429369921773, 34.52318596152907], [-77.40265529292179, 34.524176462037715], [-77.40231105310767, 34.52523441880376], [-77.40309610463058, 34.52583123788503], [-77.40422907627257, 34.52607591163418], [-77.40489857717411, 34.526397381949806], [-77.40522284713182, 34.526772680193], [-77.40558183701546, 34.52684560591299], [-77.40578122822048, 34.52687324670312], [-77.40610091086518, 34.52741822132974], [-77.40612617131225, 34.527621586243896], [-77.40654094978116, 34.52800470629302], [-77.40666330048151, 34.52795802243689], [-77.40665853458619, 34.52810918594734], [-77.40653473612673, 34.52854193510682], [-77.40601528879989, 34.528789663113415], [-77.4057362549378, 34.52888620585962], [-77.40514614150733, 34.52923213804838], [-77.40507151196566, 34.52932403865773], [-77.40442050672279, 34.529826593208625], [-77.40413589530036, 34.53024310065784], [-77.4037112687233, 34.53064914427593], [-77.40291403028206, 34.53102345977554], [-77.40254378122289, 34.53122920105592], [-77.40173996604895, 34.53167717807785], [-77.40095727891728, 34.531963026158216], [-77.40085339060433, 34.53223936624102], [-77.40031087248997, 34.532378624028034], [-77.40016017869668, 34.53250123081082], [-77.39987504611737, 34.53275693272051], [-77.39935881313376, 34.53322924970812], [-77.3988043373565, 34.53294590112107], [-77.39784491452623, 34.53273457680281], [-77.39780735633036, 34.532735277281375], [-77.39779994114708, 34.532728448715865], [-77.39778164045404, 34.53273234931658], [-77.39764013549792, 34.53276413346848], [-77.3977316873036, 34.532792594646935], [-77.3971176442133, 34.53340274717388], [-77.39715417881445, 34.5338136144442], [-77.39698443968305, 34.53408522816076], [-77.39677182030766, 34.534227848183875], [-77.396191587077, 34.53443215954926], [-77.39617605458253, 34.534434801425384], [-77.3961378141593, 34.53444997133042], [-77.3961747443888, 34.53445482940218], [-77.39600310572484, 34.53484733569014], [-77.39608476710175, 34.534947297074424], [-77.39610053326342, 34.53499394674535], [-77.39617053272713, 34.53536985308904], [-77.39618293399383, 34.53542280027732], [-77.39618176853676, 34.53543083049474], [-77.39623948930353, 34.53565947337981], [-77.39616115556956, 34.53578748402638], [-77.39609779467017, 34.535886626538215], [-77.3960629582898, 34.53592978490983], [-77.39598328631126, 34.53604856610609], [-77.39560301166192, 34.53648583173144], [-77.39552526844207, 34.536601508720516], [-77.39535202737815, 34.53685811306457], [-77.39520529716725, 34.53703289602004], [-77.39509223575486, 34.53720636705743], [-77.3949911424676, 34.53733506519237], [-77.39494848469404, 34.5373476250519], [-77.39480210382206, 34.53749146613969], [-77.39468165050091, 34.53751734433798], [-77.3945513301837, 34.537552652362734], [-77.39444947493512, 34.53756832654325], [-77.39423507053698, 34.53761412971064], [-77.39415790587307, 34.53759162839085], [-77.39385351272296, 34.537661665931736], [-77.39376409202298, 34.537647910971415], [-77.39333782205374, 34.53730237298524], [-77.39323635307173, 34.537163295654686], [-77.39315893299545, 34.536940827999196], [-77.39312696978558, 34.53684312902642], [-77.39300546612859, 34.53647087996758], [-77.392961013954, 34.53640604163124], [-77.39283500401227, 34.53639558837308], [-77.39239392452447, 34.53635264717994], [-77.39222396866398, 34.536311331263164], [-77.39199481341524, 34.53637477949443], [-77.39152739250723, 34.536584255292645], [-77.39146548537545, 34.53661402940874], [-77.39143144267979, 34.53664184768812], [-77.39119190360644, 34.537122325400404], [-77.39106010628626, 34.53741019027272], [-77.39062385195034, 34.5376410583417], [-77.39051355424836, 34.53770985888316], [-77.39011862509591, 34.53794566985681], [-77.38982796289362, 34.53811999459126], [-77.38952835463046, 34.53834165327436], [-77.38925552647069, 34.5385192628784], [-77.38902710797232, 34.538818854454576], [-77.38897631352745, 34.53888013656707], [-77.3889485720177, 34.53891495680637], [-77.38871150712029, 34.53924801528727], [-77.38862090788453, 34.53945188814666], [-77.38856199259703, 34.539737556618164], [-77.3884739406449, 34.53996275366433], [-77.38845587789609, 34.54011700664503], [-77.38841546309666, 34.5404608544752], [-77.38837073521907, 34.54057225359673], [-77.3884007357148, 34.54082542718793], [-77.38841828053673, 34.54095011391945], [-77.3884577325083, 34.54111120562476], [-77.38848953369786, 34.54124105955209], [-77.38860424153569, 34.541412954696455], [-77.38858064951967, 34.54165493580194], [-77.38875616742476, 34.54188070554329], [-77.38895514722257, 34.54201186670571], [-77.38915431985858, 34.54218626996389], [-77.38932678443005, 34.54228805969552], [-77.38973005261434, 34.54246623761108], [-77.3900248732548, 34.54249278173562], [-77.39027908331461, 34.54249347820439], [-77.39051485915499, 34.54248126630355], [-77.3912021624862, 34.54244566444426], [-77.39130186489788, 34.54239858312338], [-77.39147720547092, 34.542358707800894], [-77.39186748664083, 34.54241119185403], [-77.39345151573643, 34.54279509364582], [-77.39344958782083, 34.54353837526373], [-77.39209446511023, 34.5438228124858], [-77.3912627422755, 34.54413673220643], [-77.39077273384191, 34.54422342567443], [-77.39014332990094, 34.54433461071467], [-77.38968419542115, 34.54450189354469], [-77.38950552847245, 34.54460056680098], [-77.38889272838793, 34.54478155535179], [-77.388765499467, 34.5448173534075], [-77.38823480487792, 34.54497599066444], [-77.38810239152801, 34.54501083753232], [-77.38772763021753, 34.54521188832461], [-77.38771529075416, 34.54522003025057], [-77.38770476642229, 34.5452343425872], [-77.38752016064576, 34.54548664481924], [-77.38754172858852, 34.54563228624213], [-77.38729613003083, 34.54594595173151], [-77.38654631422038, 34.546092647466196], [-77.38650714504456, 34.5461146096993], [-77.38648578033644, 34.54611213771414], [-77.38572401134019, 34.546023899181264], [-77.38509478626162, 34.54622599592258], [-77.38493364995583, 34.54625329593278], [-77.38479074575682, 34.54628122113688], [-77.38433314489927, 34.54643593432193], [-77.38372569505165, 34.54675663511355], [-77.38334823678612, 34.54691898738341], [-77.382223660503, 34.54743415408613], [-77.38176397208454, 34.547532728665125], [-77.38147305258471, 34.54764786304068], [-77.38117989175043, 34.54786992396759], [-77.37972598479529, 34.548784930730456], [-77.37857138091124, 34.549818913836326], [-77.37817006625791, 34.550014983846616], [-77.37805802882158, 34.55027861792506], [-77.3785333905315, 34.551495646547096], [-77.37873346772501, 34.5520078887077], [-77.37880043467158, 34.552130236142084], [-77.37895747438945, 34.55258132039276], [-77.38003830769208, 34.55534829966001], [-77.38050277971934, 34.556537298548434], [-77.38088604139958, 34.556924356065444], [-77.38121979845167, 34.55735914206015], [-77.38166775144728, 34.557692662392206], [-77.38208328930298, 34.5580020491503], [-77.38250819966485, 34.55838875189845], [-77.3829082471449, 34.55869205347045], [-77.38324307632956, 34.55908202079519], [-77.38327886180028, 34.55912677369593], [-77.38388178037785, 34.559200554477], [-77.38403089766214, 34.55917948735067], [-77.38422498526616, 34.55919954698078], [-77.38481881043998, 34.558875772807234], [-77.38521033410632, 34.559275330195014], [-77.38560655597385, 34.559322731302466], [-77.38625962217239, 34.55940085549531], [-77.38639439935082, 34.55933267220704], [-77.38652531983465, 34.55936667146638], [-77.3865590266081, 34.55968043440311], [-77.38639433292839, 34.55965741344859], [-77.38634562397532, 34.55958621455896], [-77.3856064589418, 34.55977636263337], [-77.38539359392706, 34.55990037915696], [-77.38507870953843, 34.55999677539579], [-77.38481855589689, 34.560014478602454], [-77.38448311488213, 34.560289938912874], [-77.38429561404976, 34.5603928293756], [-77.38403058845364, 34.56050924742866], [-77.3839013507041, 34.56059601848476], [-77.3836583377277, 34.560770323795325], [-77.38338652732898, 34.56096461107174], [-77.38324257798644, 34.561143530801054], [-77.38296770642971, 34.561422856280586], [-77.38273524202253, 34.56175254449787], [-77.38269156077938, 34.56201433895975], [-77.38251594651626, 34.56220872658794], [-77.38248105396066, 34.562242440946164], [-77.38245443093886, 34.56227611029452], [-77.38229686932556, 34.562495123152004], [-77.38226335928567, 34.56266970700079], [-77.38238886241014, 34.562722159259074], [-77.38245430700965, 34.56277290196959], [-77.38258366136563, 34.56290864798005], [-77.3827958630333, 34.563017501798306], [-77.38282783580242, 34.563034820684095], [-77.38292456700304, 34.563081280712424], [-77.38324209618958, 34.56314831387617], [-77.38343195950895, 34.563145735833515], [-77.38386311446496, 34.56310834929799], [-77.38402999177819, 34.563091153787965], [-77.38458938772428, 34.562937192088114], [-77.38481791050174, 34.56292287586739], [-77.38515455726832, 34.562739208796316], [-77.38560587048539, 34.5625432629879], [-77.38585118968874, 34.562416768067145], [-77.3861912973943, 34.562321598199276], [-77.38639379776296, 34.56228863463386], [-77.38660181948552, 34.56226835376155], [-77.38700222165227, 34.56217984602183], [-77.38718167463182, 34.56226869645807], [-77.38748262313321, 34.56224148628642], [-77.38772846137743, 34.56214154651312], [-77.38796959521679, 34.56200735718286], [-77.38871909695033, 34.561738821146236], [-77.38874922341705, 34.56172554079617], [-77.38877210301492, 34.561715454780476], [-77.38954543915366, 34.56137454507089], [-77.38998496713545, 34.56118078452508], [-77.39093645729393, 34.56056986496123], [-77.39106003147113, 34.56048601035187], [-77.39112129750082, 34.56047202753858], [-77.39117963197135, 34.560471915428316], [-77.39119925118386, 34.560531959047005], [-77.39222534723388, 34.560892230063615], [-77.39269690734304, 34.561239368901674], [-77.39301296559725, 34.561627912025344], [-77.39314443712351, 34.56194964235526], [-77.39329715001026, 34.56212970750153], [-77.39342277945373, 34.562334060011985], [-77.39344618168661, 34.56237212691571], [-77.39348462576423, 34.56244503672043], [-77.3935856225449, 34.56262626479609], [-77.39365705540285, 34.56272483352496], [-77.39369060767898, 34.56294205381325], [-77.39348451841926, 34.563362678225666], [-77.39342577960551, 34.5635440572504], [-77.39341824209336, 34.56360842776057], [-77.39324663601815, 34.56422605593909], [-77.39322478938246, 34.56448547672768], [-77.39307267127803, 34.564912895380544], [-77.39305166298622, 34.56497675244716], [-77.39290574597135, 34.565380642752224], [-77.39293227801474, 34.56563107676905], [-77.39282482557749, 34.56581688655983], [-77.39289894256517, 34.56601237964104], [-77.39332210481594, 34.56616972236131], [-77.39345824692809, 34.56617804539349], [-77.39348419218278, 34.56618265881656], [-77.39357544416323, 34.56623152622909], [-77.39387813546357, 34.566276306085456], [-77.3941368303955, 34.56619796994961], [-77.39427209927175, 34.56618255609327], [-77.39435555120619, 34.56611056633787], [-77.3948910290616, 34.565943384386884], [-77.39502510597578, 34.56588639810194], [-77.39506004175712, 34.56580951001015], [-77.39514350986265, 34.56557231856245], [-77.395132472287, 34.56548397954659], [-77.39515077165092, 34.56515448199417], [-77.39518554406054, 34.565051750497275], [-77.39553078209646, 34.564660014038424], [-77.3958480771619, 34.564289384350936], [-77.3960224911329, 34.56408185320995], [-77.39626321783783, 34.56364533300453], [-77.39669020205059, 34.56313636495669], [-77.39677182162069, 34.56242169936273], [-77.3974240365562, 34.56167660611674], [-77.39883521043316, 34.561305871944924], [-77.40057545808284, 34.56251929936339], [-77.40309733567841, 34.56153311551091], [-77.40372693097106, 34.56166731797203], [-77.4040755812112, 34.56169472287429], [-77.40576102747139, 34.56182718607275], [-77.40687838250288, 34.56194822562099], [-77.40716980925569, 34.56193790049073], [-77.40902798855973, 34.56243531745419], [-77.41002989632958, 34.56278602326378], [-77.41144691545624, 34.562875593359585], [-77.41160564874016, 34.56295266202408], [-77.41182858751542, 34.562889692714336], [-77.41289091196604, 34.562809034808296], [-77.41318136759608, 34.5627869807926], [-77.41353881899512, 34.56278766475495], [-77.41423325317973, 34.56286671833449], [-77.41475712922355, 34.56298539097381], [-77.41542734695336, 34.562852008077115], [-77.41588643010822, 34.56254440613897], [-77.41633273071523, 34.562123138186394], [-77.4164124241511, 34.562073232874695], [-77.41710494657414, 34.56190411051363], [-77.41712055446672, 34.561905967704625], [-77.41714502074998, 34.5619078690112], [-77.4177507321399, 34.56196395503184], [-77.4179084246008, 34.56197885084632], [-77.41801594459422, 34.56187158670464], [-77.4180478891194, 34.56175106428422], [-77.41816295780008, 34.56145999751287], [-77.41844029685804, 34.56056957058413], [-77.41887401275908, 34.560590700009776], [-77.41948389637562, 34.56071891610381], [-77.42002578007481, 34.56088126891806], [-77.42027184037038, 34.561207559137074], [-77.42086261182946, 34.56113198314184], [-77.42105966220832, 34.56107661469282], [-77.4213138506785, 34.561005189375564], [-77.42184746111575, 34.56085524943351], [-77.42221945741665, 34.560700135713475], [-77.42263523877776, 34.5605600764936], [-77.4237889128866, 34.5604666663682], [-77.42421086850992, 34.56033976930909], [-77.42465786641812, 34.56031411176379], [-77.4251376409429, 34.5607265830215], [-77.42483909061104, 34.561446557912696], [-77.42489012401893, 34.56161153429178], [-77.42485071056664, 34.56177714863975], [-77.4249990982926, 34.56184451650047], [-77.42536773550606, 34.56193980532686], [-77.42578694937217, 34.56183422612742], [-77.4259820205974, 34.560815093780825], [-77.42701132682443, 34.56045576106361], [-77.42724620297514, 34.56029676664614], [-77.4274295868903, 34.56032269009746], [-77.42893796339621, 34.56053589794606], [-77.43112800197085, 34.56155898622705], [-77.43156049998775, 34.562067004433985], [-77.43209001806588, 34.56256003568997], [-77.43406140777633, 34.564531570267505], [-77.4347042903303, 34.56501857362829], [-77.435242830882, 34.56615993393698], [-77.43640802626729, 34.56758896710363], [-77.43524375299295, 34.56854529947644], [-77.43415387129082, 34.570136400741625], [-77.43366856904207, 34.570287058446056], [-77.43310397413731, 34.57037364190019], [-77.43288071538939, 34.570500151165604], [-77.43278309155949, 34.570555468716535], [-77.43249675869438, 34.570702101472065], [-77.432201494807, 34.57086181639124], [-77.43209294646309, 34.570965886137415], [-77.43160670204261, 34.571155854532186], [-77.43069567389915, 34.571619422454205], [-77.43051731309053, 34.57169143248352], [-77.4304198869238, 34.5717465236492], [-77.4300006317892, 34.5719121494531], [-77.42977332325032, 34.57199227491469], [-77.4297294737782, 34.57201713830256], [-77.42911664750936, 34.572228591528464], [-77.42894164816269, 34.57240641580938], [-77.4283819286741, 34.57299531512895], [-77.42832446439533, 34.57318739979804], [-77.42829312540606, 34.573432740623915], [-77.42825100097826, 34.57354331911107], [-77.4282217323881, 34.57365535461848], [-77.42815409491669, 34.57371053949863], [-77.42798749550988, 34.57372196044364], [-77.42793687413953, 34.573718331928404], [-77.42776006812701, 34.57356325976974], [-77.4277351412995, 34.57354024774746], [-77.42736598453257, 34.57322000607279], [-77.4273006643005, 34.57315160098913], [-77.42696908543111, 34.57277794365284], [-77.42687199700661, 34.57268136077617], [-77.42659804971555, 34.572403974840974], [-77.42659042470898, 34.57239145647769], [-77.42657777353764, 34.57234672771216], [-77.42630161629678, 34.57214926319762], [-77.42618061107925, 34.572043060051975], [-77.42617590079287, 34.57203198467064], [-77.42627571960612, 34.57160138397403], [-77.42628946167837, 34.57128900663412], [-77.42621534173625, 34.57115116411397], [-77.42618345213828, 34.571119946928455], [-77.42579245439083, 34.57082205331661], [-77.42579088195228, 34.57082068235424], [-77.4257893969735, 34.570813351023844], [-77.4257854747448, 34.57081883334599], [-77.42539538183061, 34.570643684283866], [-77.42525001561216, 34.57063252050568], [-77.42500138525953, 34.570538057541114], [-77.42492121562329, 34.570523378355425], [-77.42469497222832, 34.57046169291981], [-77.42460733968615, 34.57024135749441], [-77.42456505465925, 34.57015026230943], [-77.42460729569257, 34.57007299636984], [-77.42476910417359, 34.56987062860614], [-77.42500120234033, 34.56985044744603], [-77.4251781184311, 34.56982775025302], [-77.42521777623263, 34.56982251578663], [-77.4253951528857, 34.569798189663835], [-77.42557290050087, 34.56977159229401], [-77.42578907798233, 34.5696553327298], [-77.42601467850469, 34.56969763460718], [-77.42630364337364, 34.56960439986382], [-77.4265768883601, 34.56924481351777], [-77.42669682670223, 34.56912229160918], [-77.42697076910949, 34.568965394355956], [-77.42699251721369, 34.568950253876515], [-77.42723385782124, 34.56877438478987], [-77.42736459247638, 34.5684991382224], [-77.42747118640521, 34.568456478354136], [-77.42736457074662, 34.568424988549445], [-77.42714442891202, 34.56831634317906], [-77.42693864233985, 34.56810886315973], [-77.42672047876212, 34.56798525498533], [-77.42657655446988, 34.56806841274852], [-77.42651887073677, 34.56810735493936], [-77.42618262670078, 34.56816985174384], [-77.42587214564162, 34.56817304270079], [-77.42578867114185, 34.5681735910422], [-77.42564663619055, 34.56814253076852], [-77.42520503003954, 34.56813925829043], [-77.42500074115428, 34.568111046393646], [-77.42479156575166, 34.56819371519326], [-77.42440780002356, 34.56826454974936], [-77.42421288451463, 34.568332496820204], [-77.42390388125624, 34.56821446684856], [-77.42359869966302, 34.568591564180046], [-77.4235004491145, 34.5686870161363], [-77.42342506141698, 34.56870860304033], [-77.42327080279074, 34.56880522383014], [-77.42294806903087, 34.56902060244712], [-77.42263722286884, 34.56905011551901], [-77.42229556782378, 34.569260777389346], [-77.42224331534146, 34.56928252749321], [-77.42215136252824, 34.56932440553872], [-77.42184938387297, 34.56941916099907], [-77.42165297426612, 34.56951019614857], [-77.42119977186547, 34.56963836355706], [-77.42106151531439, 34.569685860182034], [-77.42094903915984, 34.569702382984396], [-77.42066755002205, 34.56968343729582], [-77.42047557255981, 34.56967432418888], [-77.42027355657027, 34.56954619011961], [-77.42001207931675, 34.56967714884995], [-77.41987962189043, 34.569691252821535], [-77.41969367156358, 34.56978081771625], [-77.4194856792567, 34.56980320219982], [-77.41926411048536, 34.56982824598201], [-77.4190917494503, 34.569987100563566], [-77.41888534501153, 34.56991960714306], [-77.41869777763725, 34.56995936931363], [-77.41839459837722, 34.569670171021606], [-77.41816632237432, 34.56937646557781], [-77.41807537002387, 34.56921106787119], [-77.41790967568527, 34.56902427531365], [-77.41776831402458, 34.569281563397894], [-77.41751578207571, 34.56941519194417], [-77.41745117365771, 34.56947977595628], [-77.41726631431351, 34.56966216067291], [-77.41715586381524, 34.569910417865984], [-77.4171412990955, 34.56994912227884], [-77.4171935949262, 34.57028895746631], [-77.41728162250737, 34.57035343536073], [-77.41751597769466, 34.57052567058675], [-77.41765419471331, 34.57057525039825], [-77.41790177612015, 34.57068843411954], [-77.41790577218671, 34.570692388677074], [-77.41790997695034, 34.570690698121744], [-77.41825659490908, 34.57068820778528], [-77.41833872899198, 34.570662801937054], [-77.41869790055199, 34.57060465295195], [-77.41872966166821, 34.57060306551667], [-77.41889488162559, 34.57058561555376], [-77.41902335655712, 34.57060024330997], [-77.41909187073132, 34.57060816798124], [-77.41920410977147, 34.57062125139688], [-77.41948584911604, 34.5706528880216], [-77.4196591692993, 34.5706723496949], [-77.41987982774064, 34.570697126647595], [-77.42000808891635, 34.570808724848845], [-77.42011071071786, 34.57096971960361], [-77.42015687857538, 34.571085721241445], [-77.42019656577136, 34.571206079263646], [-77.42027396021612, 34.571472188193496], [-77.42030549115344, 34.571580970627245], [-77.4203203826067, 34.571612775513714], [-77.42036166984634, 34.57170128255489], [-77.4204705929233, 34.57222850520472], [-77.42089753700068, 34.57220124545906], [-77.42106203284075, 34.57204571639574], [-77.42111860121811, 34.571983011571135], [-77.42139278749724, 34.571950527369964], [-77.42145598318625, 34.57193245034707], [-77.4215046862164, 34.57191873982547], [-77.42165048434777, 34.57184518326211], [-77.42184991761557, 34.571754710135764], [-77.422085696551, 34.57161184744711], [-77.42224384139212, 34.57153883599497], [-77.4223820223218, 34.57146383293981], [-77.42252067351455, 34.57142107442865], [-77.42263778116805, 34.57139880183733], [-77.42297504194838, 34.57159262266314], [-77.42304809387707, 34.57162568553505], [-77.42305328070198, 34.571665616282296], [-77.42297751539536, 34.571711969124486], [-77.4226379251646, 34.57200174927857], [-77.42255236069029, 34.57204723066578], [-77.42225936992973, 34.57218179067014], [-77.4222439935999, 34.572188756928], [-77.42194675735549, 34.57233118107115], [-77.42185006164084, 34.572381840251936], [-77.42165316120486, 34.5724816045503], [-77.42165309567758, 34.57248163700361], [-77.42165306177723, 34.57248165300465], [-77.4216528331418, 34.57248172257753], [-77.42145612189725, 34.572548805200036], [-77.42128698566391, 34.57256459539209], [-77.42123381079331, 34.57256955963393], [-77.42106213730847, 34.57251978152809], [-77.42089587700004, 34.5725579833866], [-77.42047246744175, 34.57265363205628], [-77.42027424927079, 34.57284303257583], [-77.4200864566823, 34.57314246322379], [-77.41991100443092, 34.57337025994414], [-77.4198982696699, 34.57339137599912], [-77.41993581320293, 34.57373160065684], [-77.41994761728424, 34.57378955511778], [-77.419956282204, 34.57386999053184], [-77.42001096492774, 34.57420498742965], [-77.42008875224974, 34.574394006227536], [-77.4201350139225, 34.574611651047206], [-77.42027464233078, 34.57469722106964], [-77.42046317701829, 34.57478566887373], [-77.4206686864899, 34.57495314043573], [-77.42067442355868, 34.57495830517116], [-77.42090032860166, 34.575100655966004], [-77.42106272863259, 34.57518915100354], [-77.42113572744546, 34.575237586011355], [-77.42129532336526, 34.57529318325116], [-77.4214002404885, 34.575338925781566], [-77.42145675529277, 34.5753475055983], [-77.42155785032298, 34.575364193531684], [-77.42185075713142, 34.575392702902704], [-77.42204387628026, 34.57539314411513], [-77.42209914298883, 34.575333940738666], [-77.42206267640933, 34.575394605446334], [-77.42224475704847, 34.57542838758421], [-77.42230476366353, 34.575424293815644], [-77.42233706487929, 34.57535495928326], [-77.42227818149972, 34.57518725589535], [-77.42226953537012, 34.57515242364779], [-77.42226303605959, 34.57513358892258], [-77.42224467861395, 34.57509704990258], [-77.42214095794502, 34.57474641574376], [-77.42209945411635, 34.57459603723841], [-77.42208401308226, 34.57454235082954], [-77.4220780116481, 34.574510386524125], [-77.42208468299012, 34.574370017415355], [-77.42223521752382, 34.574318207908846], [-77.42224449349045, 34.57431373024535], [-77.42224990266322, 34.574311918260456], [-77.4222811364598, 34.57430157549546], [-77.42244147112504, 34.57424858406425], [-77.4225854380582, 34.57420047409617], [-77.4226384482775, 34.57418275942763], [-77.42292043399068, 34.5740885263902], [-77.42303239606476, 34.574028566494455], [-77.42322914953627, 34.573952061908955], [-77.42323012125269, 34.57395134824512], [-77.42342632555291, 34.57380724874202], [-77.42355426151077, 34.573830893613504], [-77.42365533877839, 34.573856218592695], [-77.42382037240708, 34.574055376001546], [-77.42383047026769, 34.574066821116986], [-77.42383774545013, 34.57409536033214], [-77.42385741258963, 34.574498393699], [-77.42385919488311, 34.574539840721044], [-77.42391928028123, 34.57480765755879], [-77.42398660136057, 34.57490431205974], [-77.42421460602878, 34.575013133786356], [-77.42439189593354, 34.57507929168084], [-77.424456501717, 34.575097066262806], [-77.42460862724047, 34.5751338992281], [-77.4248471514127, 34.57520454259598], [-77.42487812287206, 34.57533428664061], [-77.42492861457896, 34.57561735758082], [-77.42471766930504, 34.57576517047006], [-77.42460885141166, 34.5759788892295], [-77.42455493029952, 34.57609594592885], [-77.42460892729923, 34.57626447559211], [-77.42466191213343, 34.57644802704923], [-77.42470818813187, 34.57649838598664], [-77.42500307270177, 34.57681981785421], [-77.42503547804955, 34.57684076130635], [-77.42507962984303, 34.57686929617607], [-77.42539711034294, 34.57696501865348], [-77.42558760415854, 34.577015205394986], [-77.42579113054234, 34.5770434142545], [-77.4259191165532, 34.5770346400562], [-77.4260611576006, 34.57701844903866], [-77.42618511219263, 34.57698435320449], [-77.42636623073034, 34.57691274496048], [-77.42657907176743, 34.57685132382745], [-77.4267374733781, 34.576800422567295], [-77.4273149500911, 34.576602327545025], [-77.42736699186386, 34.5766016870186], [-77.42743844021412, 34.57660539145317], [-77.42802244142734, 34.5765868171442], [-77.42815497925683, 34.57658636465449], [-77.42832746025962, 34.57658577524849], [-77.42875578466112, 34.57653969554095], [-77.42893761669163, 34.57715492220483], [-77.42893992651788, 34.577160553273444], [-77.42894025894624, 34.57716362569819], [-77.42894315638912, 34.57716919570017], [-77.4291159670097, 34.57755969689569], [-77.42906455720505, 34.5776977722514], [-77.42894333662755, 34.57773475626491], [-77.42879296481155, 34.577868881972734], [-77.42854941592161, 34.577990986791974], [-77.42842239279756, 34.57808453651312], [-77.4282556386695, 34.578216568944356], [-77.42824836327645, 34.57843426219665], [-77.42826994071183, 34.5785311607093], [-77.42830899071367, 34.57869078097246], [-77.4283274255639, 34.57876233483906], [-77.42836896377514, 34.57894143716455], [-77.4283986617114, 34.57919886869577], [-77.42832481537631, 34.57937240726355], [-77.42815590492859, 34.57957543992943], [-77.42804072267292, 34.57971388979076], [-77.42795897291978, 34.57981215309398], [-77.42791125965093, 34.57985676911912], [-77.42788478904244, 34.579940578527896], [-77.42786807950155, 34.579969157239866], [-77.42789639898734, 34.580003717748866], [-77.42794331983359, 34.58006442982857], [-77.42795134140614, 34.58007158047588], [-77.42806284860238, 34.58025944838873], [-77.428156155394, 34.580380552740536], [-77.42829462152648, 34.58050136753552], [-77.42832706539839, 34.58064584912124], [-77.4284622833028, 34.58095599296085], [-77.42850535866387, 34.581044668681024], [-77.42850616562401, 34.58109221222544], [-77.42855042450826, 34.58118744023183], [-77.42862366409145, 34.58137329974161], [-77.42867846318673, 34.581444238040596], [-77.42867558514826, 34.58152219163719], [-77.42874754552535, 34.581539092268414], [-77.42889908017717, 34.58141235066918], [-77.42892731698969, 34.58138974553511], [-77.42894450265078, 34.58137598740892], [-77.42899587181135, 34.5813429939611], [-77.42933843017371, 34.58109753090386], [-77.4294478828044, 34.581026407105654], [-77.42963909409175, 34.58098135338259], [-77.4297324040543, 34.58096733139395], [-77.42994361991, 34.581033788018516], [-77.43038148256134, 34.5811980770038], [-77.43047277751083, 34.581236335807915], [-77.43052053635401, 34.58126075046418], [-77.4310813031492, 34.581341845661385], [-77.43130862707633, 34.58142015933705], [-77.43161299897572, 34.58134806788995], [-77.43209659924563, 34.58124227630733], [-77.43232455111249, 34.58116285893132], [-77.43287044205634, 34.58085340692447], [-77.43288448786622, 34.58084772685696], [-77.4328944759001, 34.58084555829211], [-77.43290033815573, 34.58083394678652], [-77.43337711781531, 34.5804468537214], [-77.4336721967778, 34.57999707832555], [-77.43371897700224, 34.57991685088909], [-77.43376377122782, 34.57985993072297], [-77.43378286020628, 34.579737812131725], [-77.43385807412534, 34.57919774291056], [-77.43392557675915, 34.57898735277178], [-77.43406574561362, 34.57878604599455], [-77.434242440262, 34.57870739060188], [-77.43445968472321, 34.57861486252868], [-77.43480866504463, 34.57848353775979], [-77.43524759780641, 34.57837336109057], [-77.43558697262112, 34.5782637090173], [-77.4372156678627, 34.577662415145355], [-77.43791887882884, 34.57704326663131], [-77.43839898774317, 34.57691196899935], [-77.43972894427117, 34.57729893461034], [-77.4410139527973, 34.57769214337689], [-77.44155154485355, 34.578179985729406], [-77.44278803306226, 34.58025321630107], [-77.44350070559146, 34.58144811547918], [-77.44457629546343, 34.583251391138774], [-77.44465312023843, 34.58338019316244], [-77.44466800264344, 34.58341922247739], [-77.44369264738052, 34.58582239503889], [-77.44313146797555, 34.58614552962308], [-77.44260655439417, 34.5865072073106], [-77.44186646530625, 34.58684514911032], [-77.44155573365411, 34.58702447718057], [-77.4413538449617, 34.587036665694896], [-77.44100605195477, 34.587047640318275], [-77.44076766833692, 34.587067243778115], [-77.44030372052868, 34.587056817793766], [-77.4399794964881, 34.58687992682407], [-77.43974111881553, 34.58663827237493], [-77.43943358984062, 34.58642156729961], [-77.439190959703, 34.58587110228297], [-77.43919023405941, 34.58586953447585], [-77.43919010145378, 34.585868772499076], [-77.43918154773905, 34.58585987305275], [-77.43883911616027, 34.585494936898115], [-77.43881469537045, 34.58547912972232], [-77.43871135417285, 34.58542142372666], [-77.43840261970756, 34.585267058441204], [-77.43827276767095, 34.58529217893381], [-77.43772707703528, 34.58535237199851], [-77.43761465391272, 34.58551002714863], [-77.43692232399522, 34.58619671538115], [-77.43688086228626, 34.586260860955434], [-77.43682690030205, 34.58627051052527], [-77.43679489669896, 34.58624961702044], [-77.43643287441847, 34.58630454208959], [-77.43632776896565, 34.586282686757485], [-77.43609493299786, 34.5862558833078], [-77.43603880885746, 34.586242803091125], [-77.43589962350198, 34.58619463745804], [-77.43582010952431, 34.586167121348836], [-77.43564472317041, 34.58613017421471], [-77.43553037799488, 34.58609658669481], [-77.43530801878771, 34.58606734854018], [-77.43525065539296, 34.58605980577753], [-77.43520774688922, 34.58606627680062], [-77.43492789162005, 34.58613727020951], [-77.434856731871, 34.58635211842498], [-77.43481599218086, 34.58650127235471], [-77.43483371900417, 34.586523579640215], [-77.43485681067274, 34.58655100213887], [-77.43500779698842, 34.58673551960315], [-77.43513678188214, 34.58687948388429], [-77.43525103573252, 34.587008145749536], [-77.43540401825864, 34.58710063480365], [-77.43548736272986, 34.587253387506884], [-77.43556262720057, 34.587331490895615], [-77.43564525159164, 34.58743184288229], [-77.43574372953447, 34.58753484581182], [-77.43583261922288, 34.58762806028939], [-77.43603945800052, 34.587822706456265], [-77.43618710239555, 34.58784231700481], [-77.43656827346317, 34.58794628307514], [-77.4367373168013, 34.58801915990942], [-77.43682772088323, 34.58822191983721], [-77.43713662736567, 34.58838050902702], [-77.43708201083196, 34.588721185403585], [-77.437098828387, 34.588851512955365], [-77.43708600052688, 34.58893290533487], [-77.4371520345976, 34.589060128481556], [-77.43718913085095, 34.58913028956075], [-77.43720388413522, 34.589147853481926], [-77.43722216804068, 34.58915572959283], [-77.43726574133402, 34.589166157227105], [-77.43741921064156, 34.58919268130693], [-77.4375684074286, 34.589126952359784], [-77.43761620340379, 34.58911373201209], [-77.43773462194825, 34.589051410836916], [-77.43788731026306, 34.58889695743807], [-77.43801015695824, 34.58888515688659], [-77.43814760125319, 34.58884357439322], [-77.43840413762717, 34.58872314485504], [-77.43858072384347, 34.588694750811754], [-77.43908928241811, 34.588541769497866], [-77.43919217995321, 34.58858973821126], [-77.43929575390446, 34.58851270007493], [-77.43984144283067, 34.58847168407469], [-77.43998050998397, 34.58908879164062], [-77.44000219128837, 34.5891247409479], [-77.44032207000322, 34.589101822509924], [-77.43999464414476, 34.58916436893357], [-77.43998054510347, 34.58916522232629], [-77.43995688222894, 34.58918014210155], [-77.4394576630512, 34.58951244546319], [-77.43937759963146, 34.589663008088934], [-77.43919286366074, 34.59010776558246], [-77.43919097849785, 34.590112557549084], [-77.43918897941906, 34.59011488022092], [-77.43918088874811, 34.59012896335146], [-77.43919287466552, 34.59013215645158], [-77.4393132423691, 34.59081673691337], [-77.43939176373233, 34.59093474321806], [-77.43968302905621, 34.59121420566112], [-77.43983798815756, 34.59129480671274], [-77.43998153905831, 34.591323417639906], [-77.44030397463797, 34.591304583013], [-77.44037559285431, 34.59130327920206], [-77.44045243312755, 34.591288745956874], [-77.44076958093838, 34.591144002492015], [-77.4411235037688, 34.5910656808333], [-77.44116359621941, 34.5910454825902], [-77.44122380934728, 34.59102949580547], [-77.44155761150209, 34.590948812442626], [-77.4418686491668, 34.59091167836256], [-77.44234566229221, 34.59080307962368], [-77.44259409572784, 34.590739311699146], [-77.44282463491867, 34.59077133407034], [-77.44300330012757, 34.590837000772375], [-77.44309268067363, 34.59086839433853], [-77.44313383355811, 34.59090510797543], [-77.44332247512392, 34.59101222726757], [-77.44374732004782, 34.59115397555592], [-77.44357819350698, 34.59154918681505], [-77.44346670554263, 34.59204375869651], [-77.44331294295978, 34.59225825773791], [-77.44313455312961, 34.59234587697465], [-77.44267740929644, 34.59265064651507], [-77.44234671900166, 34.59295907815015], [-77.44229958926492, 34.59301095997238], [-77.44222072203203, 34.59307317486188], [-77.44178214170981, 34.59337727166711], [-77.44155886294175, 34.59355074981324], [-77.44128857117289, 34.59376584593315], [-77.44077093858785, 34.59402192869], [-77.44060866786927, 34.593980698726234], [-77.44008916667718, 34.594116074107575], [-77.43998281041443, 34.59407293068986], [-77.43989419501266, 34.594163318605425], [-77.43971391791432, 34.59428491264895], [-77.43958894140572, 34.59452458033971], [-77.43956141436273, 34.59470181503899], [-77.43955610000283, 34.594767834446216], [-77.43965584067837, 34.595142500235085], [-77.43954331065612, 34.595533705270945], [-77.43951729707203, 34.595587130386356], [-77.43919554944037, 34.59603383280999], [-77.43918524384766, 34.59604863209357], [-77.43917937369666, 34.596060591647856], [-77.43909485633274, 34.59617655235171], [-77.43909543083616, 34.59618067165174], [-77.4391059750128, 34.59618691886406], [-77.43919558726735, 34.59611688400224], [-77.43928373190664, 34.596140457355695], [-77.43942324072901, 34.59620468682371], [-77.43958968148985, 34.59613473134962], [-77.43987022843685, 34.59608298946011], [-77.43998373009948, 34.59605426945809], [-77.44012381695588, 34.59607493586011], [-77.44053670795049, 34.59611773657801], [-77.44076638490077, 34.59667401808668], [-77.44076902818452, 34.59667989593623], [-77.44076992203787, 34.596682220001014], [-77.44063119765791, 34.597124423863356], [-77.44070466269976, 34.597465229845916], [-77.44071713752218, 34.5975365906286], [-77.44070994181513, 34.597605179372394], [-77.44077264632531, 34.59762332066058], [-77.44098461030359, 34.59792250410267], [-77.44105264598439, 34.59803580150784], [-77.44125329645917, 34.59821198781209], [-77.4412813954911, 34.59823273743434], [-77.44128027458794, 34.598310577855095], [-77.44124865042164, 34.59854419945622], [-77.440989778683, 34.598685138140425], [-77.44089406940786, 34.598820130564675], [-77.44079685013118, 34.59874015005381], [-77.4406053868023, 34.598582636221344], [-77.44037896925681, 34.59850588682946], [-77.44034562690838, 34.598475414273075], [-77.44004559127931, 34.59854829272341], [-77.43998491953099, 34.59860744989104], [-77.43959202748198, 34.598973080381136], [-77.43959162794762, 34.59897382420278], [-77.43958897221191, 34.59897569829902], [-77.43919705397838, 34.59932831656313], [-77.43914252962172, 34.59940389375371], [-77.43910727818431, 34.59946777151336], [-77.43873087476582, 34.599868875354396], [-77.4387309798992, 34.59994677874129], [-77.43873458362226, 34.600020253668085], [-77.43875076418803, 34.60036851208403], [-77.43880361207394, 34.600781592481496], [-77.43880442537856, 34.600784472147375], [-77.43880463522856, 34.60078517309189], [-77.43880415572673, 34.60078565400352], [-77.4388046535495, 34.600789264174175], [-77.43885404983513, 34.60114032982036], [-77.43891929265244, 34.60144539113948], [-77.43892760760146, 34.60148860312266], [-77.43893842342219, 34.60153485982075], [-77.43900932938118, 34.60183454887485], [-77.43902429012807, 34.6018869886939], [-77.43905277028621, 34.602006786295824], [-77.43909230410917, 34.602125386439944], [-77.43911102559886, 34.60217479977679], [-77.43912847413401, 34.602216724430484], [-77.43923709748348, 34.60236969312041], [-77.4393025467745, 34.60246101992594], [-77.43937910347694, 34.60246761275954], [-77.43958028476044, 34.60257857989606], [-77.43973310088737, 34.60273592842427], [-77.43971901605255, 34.60286608408402], [-77.43981804081146, 34.60299885563414], [-77.43990247934823, 34.60305688233434], [-77.43990439813962, 34.603096555692034], [-77.43991409578614, 34.60342281704578], [-77.43979876313644, 34.603611537658836], [-77.43981514202713, 34.60366278608601], [-77.43984576674197, 34.603811545917345], [-77.43991660667922, 34.603892422831755], [-77.43996363245503, 34.603938361812176], [-77.44002813643334, 34.6039441726288], [-77.44013358784977, 34.60403845116688], [-77.44020359491168, 34.60407876975988], [-77.4402369979112, 34.604102749005094], [-77.44034493732981, 34.60403847007989], [-77.44051466034757, 34.6038621226178], [-77.44065649370654, 34.60371475245892], [-77.44104951603532, 34.60352503781654], [-77.44126817572953, 34.60412586879117], [-77.44128128579993, 34.6041407420855], [-77.44127990644976, 34.60415760783151], [-77.44129423216724, 34.60475441384806], [-77.44137931021892, 34.60485128910698], [-77.44102470170398, 34.605279500260835], [-77.44104020846396, 34.605317224332765], [-77.44105301550486, 34.605349234801956], [-77.44110418639028, 34.60548360691963], [-77.44116020081475, 34.60555537916848], [-77.44130193529722, 34.60550203745521], [-77.44145819738024, 34.605431228596096], [-77.44161769081181, 34.60530620180068], [-77.44182975843567, 34.605313863655184], [-77.4419177095432, 34.60528234901015], [-77.44211957773048, 34.605219257022355], [-77.44214565783801, 34.60518665373246], [-77.44214805480657, 34.60505325935563], [-77.44213022184655, 34.60500643028107], [-77.44212271181038, 34.6049557056435], [-77.44166055089467, 34.604771098976954], [-77.44163924999387, 34.60463252652016], [-77.44133120914108, 34.60414793149945], [-77.44132946649742, 34.60412700429598], [-77.44123079485814, 34.60349335867938], [-77.44214099799683, 34.60337671995097], [-77.44232735037741, 34.60310397362567], [-77.44228023679305, 34.602934611448106], [-77.44211770842388, 34.60256494578546], [-77.44209985235312, 34.60243034456258], [-77.44232613280661, 34.60213240641576], [-77.44248721506743, 34.60207485602362], [-77.44281352710622, 34.60199257485246], [-77.44295598570847, 34.602108422646246], [-77.4429775403817, 34.60218007571142], [-77.44302920904256, 34.602264560321586], [-77.44316775841142, 34.60249508515425], [-77.44326724780382, 34.60264212297895], [-77.44361427900762, 34.60273700841056], [-77.44410859960945, 34.60288317275421], [-77.44481156596011, 34.602395590117474], [-77.44483273585676, 34.60227637640922], [-77.44456897643168, 34.60209551680397], [-77.44453070555386, 34.60201161300344], [-77.4444779020603, 34.6018424790274], [-77.44444898302527, 34.601760482907196], [-77.44439892003426, 34.6017156051484], [-77.44428733162817, 34.601615573729916], [-77.44418242114651, 34.60152317565591], [-77.44386896218883, 34.60131964044281], [-77.44373570424393, 34.60122538043088], [-77.44369967906935, 34.60119914090541], [-77.44361518838156, 34.60108034399868], [-77.44349492438562, 34.60092479015996], [-77.44352767336636, 34.60076057157557], [-77.44356089025433, 34.60059239400238], [-77.44371394577249, 34.60049308302861], [-77.44393598289794, 34.600331808390294], [-77.44408675418008, 34.6003867717196], [-77.444296901022, 34.600468925494226], [-77.44449818216857, 34.60063869774306], [-77.44451793048798, 34.600655812593146], [-77.44456046100167, 34.60069289603807], [-77.44473617432969, 34.60084610523127], [-77.4448648017929, 34.600903400134186], [-77.44517434094425, 34.60115710564111], [-77.44520053331753, 34.60117691201396], [-77.44520802557578, 34.60118345506151], [-77.44522378630515, 34.60119589417084], [-77.44553372189127, 34.601451147609325], [-77.44537617639419, 34.60175266538725], [-77.4453344342095, 34.60183255126686], [-77.4453069522051, 34.60188506933066], [-77.44517378226998, 34.60213961299631], [-77.44507990289102, 34.60231906974367], [-77.44506339174637, 34.602357103874155], [-77.44504136049713, 34.60244994459272], [-77.44475223063898, 34.603151014347254], [-77.44489251687126, 34.603397800743544], [-77.4449026588691, 34.60353967909418], [-77.44493571954682, 34.60383719447922], [-77.44490947235978, 34.60416147855826], [-77.44489901019222, 34.604304148429854], [-77.44488418311413, 34.60459039622854], [-77.44486114290576, 34.60476397913746], [-77.44485468409847, 34.60481548818816], [-77.44494233466413, 34.60479239446306], [-77.44514215719242, 34.60473876344689], [-77.4453186153035, 34.60470540140397], [-77.44562339172842, 34.60457638158918], [-77.4461541178299, 34.604598147727735], [-77.44615528236623, 34.60459906856584], [-77.44645632219283, 34.60488057973531], [-77.44654358355248, 34.60503625571779], [-77.44662333161455, 34.60538068972018], [-77.44646183927951, 34.605617513525665], [-77.44626412051336, 34.60587439035087], [-77.446003192035, 34.60596390660086], [-77.44571208846412, 34.606052907372025], [-77.44550245945544, 34.60605508267648], [-77.44515960272034, 34.60598886746702], [-77.44504436931544, 34.605955002101695], [-77.44481258276564, 34.605455237413736], [-77.44482387492492, 34.60598976515951], [-77.4447097637242, 34.60611714210383], [-77.44471968742592, 34.60626300995405], [-77.44476164241743, 34.606300675546485], [-77.44496209680399, 34.60641444036906], [-77.44509664825283, 34.60649304418283], [-77.44532941822013, 34.60652078040872], [-77.44562601052955, 34.60659437132273], [-77.44556806622953, 34.6068696212012], [-77.44567003123034, 34.606951072528624], [-77.44566612953875, 34.60702339856317], [-77.44587551916342, 34.60697721749081], [-77.44621718724703, 34.60674567051107], [-77.44658479819279, 34.606606023521856], [-77.44682512771055, 34.60652063731347], [-77.44725345517178, 34.60669042609019], [-77.44731183230913, 34.606241041196384], [-77.44760602290603, 34.60605800331337], [-77.44763130680779, 34.60602251884778], [-77.44767794141917, 34.605749753405206], [-77.44797689205652, 34.60549244956977], [-77.4484489096317, 34.60540014413212], [-77.44853752588102, 34.60534118781052], [-77.44895237882923, 34.60521523576567], [-77.44933469910616, 34.60528077975687], [-77.44951353713873, 34.605344798332986], [-77.44961939778962, 34.605389833063], [-77.44983874040952, 34.60526709190182], [-77.45000988638752, 34.60523763105914], [-77.45011196917113, 34.60513041968441], [-77.45005688860553, 34.60503372809198], [-77.45003756081597, 34.604967012403655], [-77.44985891667261, 34.60468619568368], [-77.44980488486203, 34.60470584810054], [-77.44982266471804, 34.604659044509724], [-77.44931335449235, 34.604613589373415], [-77.44918030979352, 34.60455521861059], [-77.44910664194481, 34.604493998695844], [-77.44875316126416, 34.604267806940456], [-77.44870779881924, 34.60423849156726], [-77.44869593313017, 34.604233159275125], [-77.44867587780425, 34.60420522725746], [-77.44830183307668, 34.6038007134871], [-77.44817434945658, 34.60365211554254], [-77.44783337859201, 34.603326522093056], [-77.44802512650848, 34.602956161623226], [-77.44803284015143, 34.60277692033906], [-77.44827569900252, 34.6027433937514], [-77.4491309545293, 34.6026407801624], [-77.44924286515794, 34.602650041078185], [-77.44929089125795, 34.60261133821894], [-77.44933136635598, 34.60261193824038], [-77.44930927615425, 34.602589922330864], [-77.44970355667414, 34.60219854941981], [-77.4497276377303, 34.6021312097936], [-77.44973887319614, 34.602098139779514], [-77.44977258377102, 34.60200229632329], [-77.4497780069419, 34.60183913569724], [-77.44985135400567, 34.60177834236372], [-77.44988974186671, 34.60168585250328], [-77.44978442466955, 34.601533861442825], [-77.44978307297302, 34.60153229572792], [-77.44978045169303, 34.60153239493782], [-77.44952477473467, 34.601545486843094], [-77.44934796680874, 34.60160717987317], [-77.44918196426015, 34.60163055127096], [-77.4490383883952, 34.60168896880529], [-77.44877275394742, 34.60179704797059], [-77.44839223356243, 34.601861514178594], [-77.44809455892828, 34.60155970748024], [-77.44800364911912, 34.601485265299075], [-77.44834674766194, 34.6010826483298], [-77.44839815268259, 34.60104654846195], [-77.4488177459779, 34.60088296234116], [-77.44900339782745, 34.600638955652016], [-77.44923695102825, 34.60049408636114], [-77.44968455035529, 34.60028125120749], [-77.44970145416346, 34.60027069286096], [-77.44971022997791, 34.60026691370643], [-77.44975762182784, 34.600246505125455], [-77.45015407052915, 34.60000388579185], [-77.45036307605523, 34.59987597687591], [-77.45060644670892, 34.59973621095888], [-77.45084374834295, 34.599778067890874], [-77.45092156634506, 34.59976171964124], [-77.45098555732554, 34.59971163905338], [-77.45091029337372, 34.59969669126441], [-77.4507568879969, 34.59959223286121], [-77.45054870148127, 34.59952527879845], [-77.45030765919525, 34.5995192787923], [-77.45013672257251, 34.599399861436936], [-77.4493681855247, 34.598908407244366], [-77.44934442074668, 34.598887328724516], [-77.45024859529693, 34.598429028403224], [-77.45123771770673, 34.59832386039622], [-77.45130373273237, 34.59830119155613], [-77.45136877791937, 34.59830992467754], [-77.45213435195868, 34.598199780351585], [-77.45228257984414, 34.59817845413612], [-77.45253409728916, 34.59815812253051], [-77.45279341084334, 34.598124341372696], [-77.45295992219495, 34.598104535542966], [-77.45323269357465, 34.59814750849739], [-77.45332957906005, 34.59816277200273], [-77.4537456131209, 34.598058054362156], [-77.45388137723127, 34.59801018498032], [-77.45411560278892, 34.597605562345116], [-77.45417150372387, 34.59751044092695], [-77.45417650836946, 34.597494068853884], [-77.45418734635531, 34.59745595541936], [-77.45437229798894, 34.59694319083724], [-77.45453589294016, 34.596809151719754], [-77.4548086190027, 34.59675799790901], [-77.45503461692786, 34.59671084964657], [-77.45580179401402, 34.59645772314924], [-77.45601245664236, 34.59644264475008], [-77.45606861764374, 34.596297990740574], [-77.45607277066291, 34.596229526880535], [-77.45607953418349, 34.59611803220325], [-77.45612112014287, 34.595696977662655], [-77.4562646173433, 34.595436265569234], [-77.45645288468353, 34.595193682752466], [-77.456662655658, 34.59497792032136], [-77.45705335508052, 34.59478441174534], [-77.45733708314874, 34.59439176381096], [-77.45725204890556, 34.59423455491629], [-77.45706956906983, 34.593992697288925], [-77.45688214767475, 34.59378302869741], [-77.4568742331332, 34.593774398423065], [-77.45685397924542, 34.59375703213677], [-77.45665447442136, 34.59358597102489], [-77.45630000715208, 34.59328203682169], [-77.45691047614498, 34.59327285061423], [-77.45721764213741, 34.593165554444184], [-77.45771960733482, 34.59317483037325], [-77.45773179866934, 34.593182703611646], [-77.45767840316228, 34.59345466970941], [-77.45767529154978, 34.593556739758945], [-77.45788959673017, 34.59383825788493], [-77.45786606698084, 34.5939329207481], [-77.45774276671997, 34.594276019641576], [-77.4582581615739, 34.59436778379743], [-77.45865081705655, 34.59456030944313], [-77.45878101881132, 34.59464270844971], [-77.45886965253402, 34.594693037483324], [-77.45933874974745, 34.59487497844182], [-77.45940363697773, 34.594909949014536], [-77.45950337352278, 34.59502228709974], [-77.45970839259206, 34.595192263079184], [-77.45975781103286, 34.59527686619708], [-77.4600223261121, 34.59572970200573], [-77.46016400173042, 34.59569450050759], [-77.46047510439774, 34.595463667012844], [-77.46052701978287, 34.59538043920767], [-77.46055403617257, 34.59532024615058], [-77.46072719930136, 34.595005603750295], [-77.46079512138326, 34.59488218761536], [-77.46080893847946, 34.59485970391517], [-77.46083167801132, 34.594846366416384], [-77.4608810587809, 34.59481740262101], [-77.46128199430854, 34.594571365505686], [-77.46147097706229, 34.59447196135513], [-77.46173952274498, 34.59432270633505], [-77.46220267964664, 34.59411525417144], [-77.46221249245893, 34.594112024453864], [-77.46269003038677, 34.59395484974779], [-77.46337377571847, 34.593898941254075], [-77.46366742826052, 34.59368518927283], [-77.46436662793752, 34.59386304473082], [-77.46447354225515, 34.59499543413146], [-77.46447353679041, 34.59552240641543], [-77.46447350589284, 34.59662800498351], [-77.46447350200062, 34.59676111721596], [-77.46447112699552, 34.59678741263652], [-77.46445315096007, 34.59799271235658], [-77.46407531690258, 34.598377448345445], [-77.46305645734374, 34.599130799681134], [-77.4617058493887, 34.599053559366666], [-77.46113750886623, 34.59907616995844], [-77.4609426797262, 34.59909015312566], [-77.4605510527435, 34.5991050713749], [-77.45990525360735, 34.59914087726996], [-77.45959474826813, 34.59913421023536], [-77.45892253105232, 34.5991546875594], [-77.45885974355652, 34.59916208310385], [-77.45882799093768, 34.59915756731333], [-77.45871633107355, 34.59916798718602], [-77.45834588584484, 34.59920517208329], [-77.45824295391041, 34.599303042146545], [-77.45811002358369, 34.599489789488025], [-77.45803723520936, 34.59966749675374], [-77.45804405835091, 34.59972905297437], [-77.45816589453794, 34.5999673647798], [-77.45830686206399, 34.60002334180649], [-77.45848206340688, 34.600495124886244], [-77.45856726921103, 34.600888518001675], [-77.45848122713558, 34.6014506593141], [-77.45818486957896, 34.60268752050902], [-77.45801801797617, 34.60317386013967], [-77.45793045054846, 34.60344660429412], [-77.45761757549948, 34.604272516619865], [-77.45725781045296, 34.60475381057002], [-77.45688357322118, 34.6052544765698], [-77.45655614187963, 34.60569250976747], [-77.45647316239041, 34.60580351908276], [-77.45624673923317, 34.60627043425603], [-77.45602807864222, 34.60658167410268], [-77.45629097712163, 34.60683261373702], [-77.45668041722269, 34.60766091984483], [-77.45679005398888, 34.607841373241676], [-77.45681644523376, 34.60801888629164], [-77.45701500006471, 34.60901672975534], [-77.45703810934447, 34.609247674166554], [-77.45705554437006, 34.60955537935822], [-77.45709684337592, 34.61028411722213], [-77.45741546015537, 34.61061709278843], [-77.45715246855252, 34.61126575079201], [-77.45716846186755, 34.611547927108546], [-77.45768734283291, 34.612016599998014], [-77.45785486865915, 34.61302679250872], [-77.45500430922645, 34.61389261163706], [-77.45456949359736, 34.612905939222024], [-77.45449795348058, 34.61268294910563], [-77.45416677487134, 34.612282281262615], [-77.45414823757483, 34.61219616973577], [-77.4540312244327, 34.6122440620368], [-77.45331696224076, 34.61229823482934], [-77.45302209491757, 34.612398689815414], [-77.4525855952234, 34.61242216120551], [-77.45217418109493, 34.61278118898983], [-77.4520945058461, 34.612851099592035], [-77.45209206151847, 34.61286888060428], [-77.45209088803955, 34.61287435191956], [-77.45200036258547, 34.61345618827203], [-77.45055922484485, 34.61384143787313], [-77.45027617716696, 34.613890586157126], [-77.44983624687941, 34.613937805088135], [-77.44976563755517, 34.613946116982696], [-77.44972313498765, 34.61394934344479], [-77.44957908078982, 34.61395995201087], [-77.44925033877212, 34.61398426565359], [-77.44889645117314, 34.61415461968801], [-77.44881081320848, 34.61419841514923], [-77.44879886383589, 34.61425551930051], [-77.44868956043564, 34.61458287499844], [-77.44884198799319, 34.61482872340256], [-77.44883587176383, 34.614910408621085], [-77.44891179821256, 34.614941319907174], [-77.44903684011318, 34.6151246705088], [-77.44909397875982, 34.61520606193043], [-77.44906905890103, 34.61524234049593], [-77.44867784684031, 34.61539069268864], [-77.4485968108221, 34.61543775034638], [-77.4481330627566, 34.615480079150224], [-77.44784445217385, 34.61533192833248], [-77.4475691925334, 34.61552499357636], [-77.4474542961739, 34.61558198007714], [-77.4471113147937, 34.615771435579404], [-77.4472313461534, 34.6160815008728], [-77.44722685216252, 34.61612180216153], [-77.44755169349446, 34.61638437179219], [-77.44771553202625, 34.616403877114465], [-77.44781049471109, 34.616406325046164], [-77.44833879944603, 34.61655621688507], [-77.44838888680422, 34.61659855683673], [-77.44863458100039, 34.61681409282276], [-77.44876022346486, 34.61695532902986], [-77.4490845316743, 34.61739118529031], [-77.44909822488334, 34.61742039367256], [-77.44909984772418, 34.61745445423676], [-77.44915169648365, 34.617464288238544], [-77.44920397514807, 34.6174329757652], [-77.44935135962356, 34.617348208713196], [-77.44960962265233, 34.61721653585762], [-77.4500650693026, 34.6171148507331], [-77.45010392148973, 34.617101622727134], [-77.45013033313361, 34.61710892484989], [-77.45014706100781, 34.617121299786106], [-77.45024425511265, 34.61717754182956], [-77.45064673707435, 34.61739191823983], [-77.45092603687652, 34.61763767144002], [-77.45135435366439, 34.61782795350304], [-77.45172490236246, 34.617902453854], [-77.45219075022462, 34.61785853354452], [-77.45240121602691, 34.61781086606833], [-77.45339541575511, 34.61766058457377], [-77.45340763490297, 34.61764610062174], [-77.45348022479872, 34.61764776410266], [-77.4534212203274, 34.6176957054742], [-77.45326782023994, 34.61885471907852], [-77.45274373347755, 34.619061547338006], [-77.45246186802055, 34.61919216028061], [-77.45198511297326, 34.6194130806399], [-77.4518105917886, 34.619493950614974], [-77.45172137377709, 34.61955249737779], [-77.45147421634628, 34.61969690022928], [-77.45138715036424, 34.61974526802459], [-77.45135884775013, 34.619764304890765], [-77.45109302982203, 34.61995206749494], [-77.45098043972898, 34.620206972282915], [-77.45097731532323, 34.62022128223573], [-77.45097342142424, 34.62027683481235], [-77.45094895886074, 34.620521058140405], [-77.45093080276366, 34.62059038602506], [-77.45095913081616, 34.62066747414879], [-77.45112709874758, 34.62083799844829], [-77.45137314939109, 34.621075671586716], [-77.4522010058082, 34.62095906986967], [-77.45221025410129, 34.62095329274514], [-77.45223250436256, 34.62093939342628], [-77.45229793285493, 34.620939033560596], [-77.45226096054931, 34.6209800435026], [-77.45223284190759, 34.62103576839975], [-77.4520822799372, 34.62153692506906], [-77.45230197170515, 34.62167640345441], [-77.45245842455549, 34.62185944040303], [-77.45294210575196, 34.62190060255024], [-77.45309435930614, 34.62218894770895], [-77.45393445463057, 34.62251611910582], [-77.45463585628558, 34.62322636188462], [-77.45337929328633, 34.62522160126477], [-77.45268157676409, 34.626082275886], [-77.45116629657261, 34.62716988436246], [-77.44994614811614, 34.628045667266804], [-77.44790686495868, 34.62809926551699], [-77.44650049255686, 34.627946842820535], [-77.44550395985678, 34.627185485943215], [-77.44448027283923, 34.62612218630057], [-77.44430278035732, 34.62562862223324], [-77.44429415139209, 34.6246982471434], [-77.44448347347037, 34.624453027806254], [-77.44471080937865, 34.624288689596376], [-77.44535809421396, 34.62385743172527], [-77.44561713646371, 34.62375806532437], [-77.44588374851662, 34.623704142009544], [-77.44586322533466, 34.623512391759306], [-77.44585553041115, 34.623249354289925], [-77.44581226874064, 34.62305972571345], [-77.44567289474602, 34.622828150492246], [-77.44521727132863, 34.62229760141608], [-77.44518925503043, 34.622235217322114], [-77.44518726126161, 34.6222281055523], [-77.44517482610692, 34.62221728535907], [-77.44455035895004, 34.621671186353446], [-77.44452889334373, 34.62137186532955], [-77.4444678045147, 34.62128854318786], [-77.44435002182408, 34.62105039261709], [-77.44432622932894, 34.621004462595415], [-77.44432375814094, 34.620997288821464], [-77.44430333312111, 34.62098323531873], [-77.4440920952705, 34.62083352895007], [-77.44393089828064, 34.62074004358189], [-77.44370310963504, 34.620607938198305], [-77.44353453866297, 34.620600810827675], [-77.44348273246743, 34.62049856574158], [-77.44333245215998, 34.62033380533105], [-77.44358719136218, 34.62018450794909], [-77.44361591741114, 34.62009134328938], [-77.4436653246167, 34.61998379554229], [-77.44370354741699, 34.61984424366986], [-77.44365915077266, 34.619709766006565], [-77.44358235042398, 34.61962808451713], [-77.44343494586184, 34.61962837257758], [-77.44327203392581, 34.61969324841719], [-77.4431802989974, 34.619846287189674], [-77.44294715167007, 34.620198981025965], [-77.44267572726764, 34.620696264994955], [-77.44266369724564, 34.62071921094862], [-77.44265048743004, 34.62073583677907], [-77.4423508877878, 34.621229167393466], [-77.44233997337119, 34.6215628606092], [-77.44227564398456, 34.62182225729988], [-77.44224121990428, 34.621960264715476], [-77.44204845847312, 34.62224623844707], [-77.4418900124841, 34.62230673490596], [-77.44132979540124, 34.62238155814251], [-77.44095342846116, 34.62208750524814], [-77.44081870777228, 34.622092022957204], [-77.44079061425636, 34.62200455293633], [-77.44076603875455, 34.6219134236248], [-77.44058395648952, 34.621324968994074], [-77.44039140729133, 34.62078583510659], [-77.44026882097444, 34.62067630923907], [-77.44015480221924, 34.62046068012192], [-77.44015516001363, 34.62016036956602], [-77.43971126132593, 34.62030546261899], [-77.43942026165644, 34.62032802968296], [-77.43928759289292, 34.62030658059268], [-77.43866747013885, 34.620559607178436], [-77.4384811965093, 34.620739016838115], [-77.43805557638119, 34.62056872706205], [-77.43763893506576, 34.62049327490206], [-77.43756637570003, 34.620338929301795], [-77.43726135594024, 34.62012411591673], [-77.43721100579683, 34.620102113271216], [-77.43702191178483, 34.620124881834364], [-77.43674261578023, 34.62014981071458], [-77.43669750758903, 34.6202173507335], [-77.4367020272191, 34.62049118938144], [-77.43675935124327, 34.620568966642736], [-77.43677890509599, 34.62063024533882], [-77.43687586993806, 34.62090499820148], [-77.43698446474633, 34.62103351875304], [-77.43717059634075, 34.62106570158359], [-77.43724550736574, 34.62130082843099], [-77.43711737090769, 34.62157464810498], [-77.43688995096315, 34.621795826540165], [-77.43671193561465, 34.62195887995259], [-77.43666811875926, 34.62207194681818], [-77.43663505344139, 34.622177353755085], [-77.43660038305504, 34.622275875780836], [-77.43661651865082, 34.622319566883334], [-77.43665013426202, 34.62244631671344], [-77.43671135505721, 34.622541193312124], [-77.4369086402439, 34.62274187794561], [-77.4369330133087, 34.62276667090073], [-77.43715140903187, 34.62291755125499], [-77.43720994908082, 34.62302523821263], [-77.43748720251203, 34.62324371020657], [-77.43757668071486, 34.62331198009714], [-77.43788483132712, 34.62357135938838], [-77.43802669662861, 34.623676168012175], [-77.43830260960732, 34.623928578547265], [-77.43847069142768, 34.6240477188519], [-77.4385258852394, 34.62412712302463], [-77.43865614340119, 34.62427221337036], [-77.43879296097154, 34.62442024010073], [-77.43885594917816, 34.6244910633247], [-77.43905358230879, 34.62471519593137], [-77.4389701417105, 34.625001521647974], [-77.43864884781071, 34.62519355370412], [-77.43864510801367, 34.62519749377254], [-77.4386288319504, 34.62520551672365], [-77.43830732251985, 34.62538900250492], [-77.43802980436095, 34.62550079423227], [-77.43772275584902, 34.62565214571673], [-77.43721174131363, 34.62560943894797], [-77.4372113352006, 34.62558691331213], [-77.43719167858661, 34.62524591279028], [-77.43706563768492, 34.625172382695816], [-77.4368335767058, 34.625134401235606], [-77.43652631068804, 34.62512297205518], [-77.43560809439214, 34.62506382339249], [-77.43546580998115, 34.62509047285233], [-77.43529176593952, 34.62519035885707], [-77.4352725510456, 34.62505441804616], [-77.43520123235783, 34.62492143346882], [-77.43492847777135, 34.62472017248868], [-77.43476313766783, 34.62446112196117], [-77.43478503039913, 34.62398131102656], [-77.4347671021826, 34.623721508529144], [-77.43476337718108, 34.62352931568013], [-77.43466142805758, 34.6232182040727], [-77.43450975859139, 34.62305637105941], [-77.43451866210795, 34.62247851726514], [-77.43452799520279, 34.62231269076028], [-77.43457365181223, 34.622224034210625], [-77.43465319448794, 34.622121089759844], [-77.43470371110928, 34.6218933678368], [-77.43483720171363, 34.62169683526954], [-77.43488799155818, 34.62157005521197], [-77.43483897840825, 34.62148557235561], [-77.43461447645305, 34.621447252906485], [-77.43442343251697, 34.62128146972656], [-77.43406406220332, 34.62120578372581], [-77.4337750714559, 34.62105031841959], [-77.4335390470816, 34.62093327851498], [-77.43328364701888, 34.62095902225597], [-77.43293025380002, 34.621029394555364], [-77.43270360653426, 34.621040153362365], [-77.43219443860484, 34.62082138096646], [-77.4321529324063, 34.62079900470519], [-77.43214054261914, 34.62077768669239], [-77.43163356719478, 34.62069309808071], [-77.43134740176708, 34.6208693152792], [-77.43118082541983, 34.620960012071585], [-77.43108091065828, 34.62100152714552], [-77.43099371252538, 34.62110452209815], [-77.4306241297258, 34.621461089785235], [-77.43047800948563, 34.621620726177426], [-77.43048367235826, 34.62172165109646], [-77.43056637128205, 34.6218237921757], [-77.43066217663674, 34.62193747957825], [-77.43085574465084, 34.622161614255475], [-77.43091719693733, 34.62223404142735], [-77.43094231126828, 34.62227848756012], [-77.43133807059036, 34.622483336859226], [-77.43133147379531, 34.62271702571283], [-77.43145186799207, 34.6231893826433], [-77.43137702214831, 34.62357549047442], [-77.43138173587778, 34.623584624547604], [-77.43137391858254, 34.62358736472623], [-77.43123340871567, 34.62384243204676], [-77.43119296530239, 34.62388683987317], [-77.43114987729801, 34.62401392133414], [-77.4310898735229, 34.6241019170808], [-77.43109484374986, 34.62414885666016], [-77.43109015999246, 34.624215558425384], [-77.43112572830768, 34.62426932936589], [-77.4311510051743, 34.6243087558392], [-77.43131147029129, 34.62433434206428], [-77.4313151985103, 34.62433356815038], [-77.43132332101666, 34.624333731698876], [-77.43152308373216, 34.624311122170596], [-77.43157221282095, 34.624312068968024], [-77.43175599681757, 34.62433506947138], [-77.43207388111524, 34.62422389814546], [-77.43221383391014, 34.624381117902225], [-77.43230367780842, 34.624423584520564], [-77.43279067692075, 34.624590312187266], [-77.43312291803682, 34.624928587998674], [-77.43320450366942, 34.62499873227972], [-77.43340814280171, 34.6252568837872], [-77.43364478440331, 34.62537482391649], [-77.43384224473547, 34.62546206325773], [-77.43419133865096, 34.625621042173435], [-77.43426187489764, 34.625831558264295], [-77.43417154061811, 34.62610669620658], [-77.43396056331817, 34.6263455460447], [-77.43394924945696, 34.6268310591204], [-77.43396309987271, 34.62690458438664], [-77.43427684009161, 34.62707567464541], [-77.43465994919069, 34.6274444658651], [-77.43421530793574, 34.62820638335435], [-77.43380764683494, 34.62791826752551], [-77.43355253746013, 34.62806107070392], [-77.43357787139047, 34.628199066117155], [-77.43360974980547, 34.628482249848446], [-77.43369832978439, 34.62873153550436], [-77.43353347546544, 34.6291674769904], [-77.43432369664832, 34.62895039335516], [-77.43433221236921, 34.628633548387846], [-77.43458452296264, 34.62842223269641], [-77.43435887939856, 34.62826875401734], [-77.4350931659578, 34.627571397110295], [-77.43555409408835, 34.62792811577124], [-77.4355205381033, 34.62856749248088], [-77.43554404161739, 34.628669466155436], [-77.43549563963019, 34.6290419557585], [-77.43490225854896, 34.62977230335033], [-77.43434104603115, 34.63000891496788], [-77.43435372581675, 34.62974718835268], [-77.43348295257093, 34.62937309106523], [-77.43349850627146, 34.62990048626558], [-77.43350115029337, 34.62999016135251], [-77.4337086968441, 34.63059348618339], [-77.43349616648291, 34.63073006076616], [-77.4336194449179, 34.631801127988574], [-77.43081712118986, 34.632486794348566], [-77.42998016828358, 34.63194530874483], [-77.4294771714938, 34.63187531320425], [-77.42844291855357, 34.63173138849042], [-77.4277935523462, 34.631641018520526], [-77.42688781908146, 34.63113615448935], [-77.42749068025046, 34.630534038116714], [-77.42778986542206, 34.62976083965589], [-77.42794965647771, 34.629356676916764], [-77.42802298437479, 34.629222980232626], [-77.42807101492006, 34.62881138652481], [-77.4281066375428, 34.62863280310163], [-77.42808806413291, 34.62857877095256], [-77.42809033748122, 34.628505854141004], [-77.42795648050225, 34.628392760869225], [-77.42762660000963, 34.62815841198933], [-77.42711953352399, 34.6282872863964], [-77.42691596752631, 34.62843340426939], [-77.42652148813984, 34.629025132923815], [-77.42644698503132, 34.62929079090734], [-77.42556358352306, 34.629765055919506], [-77.42521882478803, 34.62886087968594], [-77.42513718974277, 34.628681076305185], [-77.42508939607788, 34.62851632789637], [-77.42476265975135, 34.628250445689076], [-77.42468580471564, 34.62867429228849], [-77.42337978194844, 34.62918174555829], [-77.42185762258741, 34.63016211696255], [-77.42119564507968, 34.630588457322574], [-77.42018320555152, 34.63085433830345], [-77.41969171256726, 34.630232379290874], [-77.42021549485574, 34.62958722873575], [-77.41936136672287, 34.6288495905571], [-77.42028048303789, 34.627242431340775], [-77.42032816184982, 34.62714875821031], [-77.42035880205076, 34.627088558061516], [-77.42051810570767, 34.626789284863115], [-77.4207944599033, 34.62607305200334], [-77.42104826202487, 34.62541523721477], [-77.42129848754684, 34.625010557887975], [-77.42172157148964, 34.62482159429411], [-77.42214970513737, 34.62468909826849], [-77.42223613846937, 34.62469025649947], [-77.42273690767098, 34.62468909313213], [-77.42299852036916, 34.62467278201237], [-77.42366837801524, 34.624601303978814], [-77.42375316721625, 34.62455997369327], [-77.42392739245818, 34.62407251037369], [-77.42411841501445, 34.62380210349806], [-77.4243125167697, 34.62358786701655], [-77.42450013519226, 34.62344637021192], [-77.42482419937667, 34.6232317828684], [-77.42481604550858, 34.6231446757856], [-77.42458566683834, 34.62293051441378], [-77.42449808748006, 34.62284053211611], [-77.42438543690682, 34.622374455722344], [-77.42436700234184, 34.622254355615546], [-77.42442786159319, 34.622012305278076], [-77.42441587322591, 34.62187120063594], [-77.42444337237805, 34.62177526884802], [-77.42438068600823, 34.621612932587716], [-77.42418366957071, 34.62156813002388], [-77.42406612946763, 34.62154027141477], [-77.42397714898435, 34.62153433620662], [-77.42379171487183, 34.62154712479864], [-77.42346426476638, 34.62158144527692], [-77.4232243827069, 34.62165475953373], [-77.42296425494565, 34.6216756266142], [-77.4227897801694, 34.621728776103495], [-77.42269360307026, 34.62178214309219], [-77.42253711820322, 34.622036257989805], [-77.42253650116763, 34.62203743002771], [-77.42237416431016, 34.62228977908285], [-77.42215272552312, 34.622553186762204], [-77.42197365301847, 34.62276903158177], [-77.42131879662608, 34.623122806815864], [-77.42128444863373, 34.62322331220258], [-77.42120530152867, 34.62315514042563], [-77.42064737079951, 34.62297540866781], [-77.42057216161125, 34.62252655723405], [-77.42068785054597, 34.62209397278421], [-77.42068741192035, 34.62207709048142], [-77.4206797264893, 34.62193488324674], [-77.42066659937862, 34.62167781954202], [-77.42066508524718, 34.62166396956859], [-77.42048252479961, 34.621551689829154], [-77.42042414864433, 34.621549346298494], [-77.4202854227466, 34.62156374892533], [-77.420134911303, 34.62157842272121], [-77.41967772599472, 34.62161192194027], [-77.41949701746434, 34.62162756572014], [-77.41930053808696, 34.621649404131375], [-77.4191028158676, 34.621666599453185], [-77.41889005073162, 34.62172489251466], [-77.4187086269766, 34.621762913546355], [-77.41855085176744, 34.62179934505506], [-77.41811008518478, 34.62203293094157], [-77.4180117034508, 34.62214559508978], [-77.4179203012582, 34.6222066511944], [-77.41743823059447, 34.622459840042914], [-77.41713200616584, 34.622836647861824], [-77.4167841923975, 34.62259893008493], [-77.41667584083407, 34.62259793713845], [-77.416343574713, 34.622848223339844], [-77.41561269901423, 34.62239351871968], [-77.41556823363908, 34.622385741411065], [-77.41555504888349, 34.62236960078242], [-77.41550254237585, 34.62235287447306], [-77.41476663603106, 34.62246252025177], [-77.41421224087053, 34.622343613266615], [-77.41397819629645, 34.62241410506441], [-77.41326741935613, 34.62188293430819], [-77.41325476110399, 34.621814653146345], [-77.41345831652372, 34.621006215674804], [-77.41331053365617, 34.62089721110163], [-77.41318951161767, 34.62085020680662], [-77.41284034283561, 34.620622295782596], [-77.41260198818414, 34.62049710050276], [-77.412401026422, 34.620398562545134], [-77.4123455079863, 34.62037748694684], [-77.41219120416676, 34.62033996779921], [-77.41171932906643, 34.620293126558614], [-77.41161259781583, 34.620285777487055], [-77.41146275092798, 34.620283724544464], [-77.41121838935001, 34.620267015227356], [-77.41103641405209, 34.620278073062224], [-77.41082418449076, 34.620274212213445], [-77.41009888162581, 34.62064197340871], [-77.41006476648266, 34.62067807143121], [-77.41003582768798, 34.620721609272984], [-77.4094633695803, 34.62158285201976], [-77.40937365894156, 34.621731646432465], [-77.40893547021952, 34.62199516168965], [-77.40845909469581, 34.62167526691708], [-77.40810575862696, 34.62131012823747], [-77.4077826832204, 34.620976246348555], [-77.40736443113894, 34.62051715905462], [-77.40751647963175, 34.619999612192025], [-77.40788355278605, 34.61988306369092], [-77.40845888864888, 34.61970892203898], [-77.40888672557662, 34.61957942198238], [-77.40893153638567, 34.619112138273486], [-77.40896938905817, 34.61855670081856], [-77.4089180291232, 34.61826493135554], [-77.40845868507262, 34.61773714002209], [-77.40836951719221, 34.617590962305826], [-77.40803189738872, 34.61754366231547], [-77.40767027101857, 34.61746697386525], [-77.40703023810029, 34.61752843014828], [-77.40688188796176, 34.617510156415406], [-77.40626837459006, 34.61694900193192], [-77.40618790696797, 34.616858878031], [-77.40609344717807, 34.61678558389991], [-77.40581518584696, 34.616464931050004], [-77.40540651010039, 34.61633351074129], [-77.40530503807977, 34.61634289838604], [-77.40525186406272, 34.61630380090859], [-77.40506608942638, 34.61627333645283], [-77.40451665352148, 34.616202289550586], [-77.40440647301048, 34.61624983608113], [-77.40412247157943, 34.616324133386115], [-77.40389341926512, 34.61644253966647], [-77.40378410019707, 34.616518422920194], [-77.40372829515402, 34.61659511010746], [-77.40334108460617, 34.61695430828995], [-77.40333411990996, 34.61696081780804], [-77.40332451572912, 34.61695954136539], [-77.40293991743818, 34.61665892555158], [-77.40287686813579, 34.61658920665333], [-77.40289223920408, 34.61653564026473], [-77.40293990727359, 34.616370697837574], [-77.40301970109952, 34.61580541570059], [-77.40302608770936, 34.615718527802656], [-77.4030170885037, 34.615636666572286], [-77.40296850155129, 34.61530226111601], [-77.40293986916208, 34.61527855368308], [-77.4027148416366, 34.61515665512416], [-77.40240568366495, 34.61495888608489], [-77.40225862596708, 34.61486470698339], [-77.4021514862681, 34.61466728874633], [-77.40190584877578, 34.614446420481926], [-77.40180546397721, 34.61419633133803], [-77.40179285733903, 34.6141598455479], [-77.40175729459332, 34.614132443255244], [-77.40158588002615, 34.61398806496987], [-77.40136311206882, 34.61386481124582], [-77.40097364826202, 34.613467184436786], [-77.40088305374115, 34.61314817667764], [-77.4008321654038, 34.613063021507635], [-77.4008609730341, 34.61294258694996], [-77.40081068982363, 34.612811984656005], [-77.40077183799522, 34.612755851388044], [-77.40065214557076, 34.61274778040786], [-77.40057475189242, 34.612769400739445], [-77.4004960508423, 34.61277170630372], [-77.39989608847651, 34.61289162535259], [-77.39978640622634, 34.612899936169754], [-77.39971474854889, 34.61287682747678], [-77.39941357024381, 34.61286607114163], [-77.3993922322554, 34.61297545064312], [-77.39935248014007, 34.61323365891314], [-77.39934642680113, 34.613277347288104], [-77.39933937909333, 34.613335288908814], [-77.39932547544353, 34.613704942142434], [-77.39924809100559, 34.61398543240276], [-77.39919850727463, 34.61414783063984], [-77.39899803595111, 34.614596607738584], [-77.39899516036951, 34.614598638483805], [-77.39898574276917, 34.6146030941552], [-77.39898971205663, 34.61461148703757], [-77.39899803578027, 34.61460942920057], [-77.3991355732664, 34.61500605486966], [-77.39928032054577, 34.61510569440942], [-77.39939221184422, 34.615246294477686], [-77.39949737488847, 34.615378439545985], [-77.3993922074913, 34.61579144397825], [-77.39938844292463, 34.61581467144542], [-77.39938416528072, 34.615819343045665], [-77.39919511243866, 34.61594696723778], [-77.39901541318791, 34.61589126818599], [-77.39899801929629, 34.615887898129955], [-77.39897416554292, 34.615878483138886], [-77.39872304390018, 34.61578630544778], [-77.39860383531774, 34.61568297958655], [-77.39841024083739, 34.61553525085594], [-77.39847778178456, 34.61523671512158], [-77.39820965795971, 34.61526505745873], [-77.39805562691541, 34.615161826662685], [-77.39801463923266, 34.61495322645305], [-77.3979604838631, 34.61475097673823], [-77.39762898538633, 34.614575103575305], [-77.39742132649889, 34.61408449065722], [-77.39739288428916, 34.614014336932016], [-77.3973869160603, 34.61398456021091], [-77.39702715789437, 34.61379904816631], [-77.39691788574677, 34.61374533613087], [-77.3967347648515, 34.61376367888458], [-77.3966329809237, 34.61377387422516], [-77.39652834285842, 34.613796523690226], [-77.39634897920286, 34.61382836120107], [-77.39623879906162, 34.613856505910164], [-77.39610857118888, 34.61388462609209], [-77.39584461699323, 34.61392726171381], [-77.39561070859465, 34.61398879127251], [-77.39528256657343, 34.61404429008317], [-77.39505624965437, 34.6140825742202], [-77.39480006835163, 34.61408170282728], [-77.3946620685736, 34.61410274088822], [-77.39455035927892, 34.614089398229936], [-77.39437419738502, 34.61399447912851], [-77.39426790017916, 34.61393927854249], [-77.39410564462916, 34.6138584339829], [-77.3940214818275, 34.61388619322933], [-77.39387371791078, 34.613979633864666], [-77.39382361810415, 34.6140199153599], [-77.39367430696922, 34.61409540535329], [-77.39378826750715, 34.614170994613474], [-77.39375233538688, 34.61450872348674], [-77.39391717712174, 34.61486264308764], [-77.39393610202555, 34.61490679507641], [-77.39398087258321, 34.61501583718921], [-77.39380379692004, 34.615350443288456], [-77.39357907192957, 34.61549018335466], [-77.39347941575303, 34.61552228620652], [-77.39335034951395, 34.61555484079213], [-77.39311632954116, 34.61544957365683], [-77.39277279573838, 34.6154110639322], [-77.39269105008651, 34.61542998158936], [-77.39261351046214, 34.615438560729594], [-77.39198578105325, 34.615523066665496], [-77.39190266725365, 34.615527881320986], [-77.3917629136699, 34.615494190983995], [-77.39127813328878, 34.615538145333936], [-77.39111428490122, 34.61560114811093], [-77.39090376953385, 34.61554184211151], [-77.39072009722855, 34.61560063047822], [-77.39061757994276, 34.615495713341744], [-77.39044252260774, 34.615536113168424], [-77.39032591332857, 34.61556724343904], [-77.39022987803278, 34.6156534617185], [-77.39025879813904, 34.615789316694546], [-77.39017753453673, 34.61587329208745], [-77.39002301081221, 34.61599394533202], [-77.38993167365943, 34.615995404307036], [-77.38980636958553, 34.616139085868795], [-77.38976917518218, 34.616181735296905], [-77.38975932047747, 34.6163314597364], [-77.38975710534255, 34.616358472132575], [-77.38976356304313, 34.616388811261196], [-77.38978885762177, 34.616507649037224], [-77.38986181233, 34.61655566118184], [-77.38993158301211, 34.616744898092115], [-77.39002113794665, 34.61653269195043], [-77.39005622292675, 34.616449555873345], [-77.39013073574262, 34.6163046073204], [-77.39020907881336, 34.616167549948266], [-77.3903258670639, 34.615963951662515], [-77.3903844245688, 34.61590652800902], [-77.39072006206798, 34.6159147707412], [-77.39097726351523, 34.615905539571614], [-77.39111424851644, 34.615940752266994], [-77.39136192735684, 34.6162848659453], [-77.39173539052132, 34.616317741548], [-77.391902628205, 34.615927742210076], [-77.39218226991295, 34.616132179433315], [-77.39229679182054, 34.616201200008035], [-77.39248916815964, 34.61617177374087], [-77.39269100234287, 34.61597134101808], [-77.39281906906014, 34.61620361711139], [-77.39295143030967, 34.61632249069501], [-77.39325902267824, 34.61651543161687], [-77.39334297059678, 34.616690603906015], [-77.39347931955457, 34.616747493840855], [-77.39363576988018, 34.61690443416951], [-77.39379706090934, 34.616967371005785], [-77.39387349761668, 34.616945906398314], [-77.39421209684025, 34.61692996871913], [-77.39426769301654, 34.61691766548995], [-77.39430430209408, 34.6169371205014], [-77.394740430534, 34.61691366054583], [-77.39503553338635, 34.616893236148144], [-77.39505608086645, 34.61689317952495], [-77.39509549223905, 34.6169049079028], [-77.3956226209644, 34.61702537517628], [-77.39584445706305, 34.61708999501677], [-77.39622048546698, 34.61714435054708], [-77.39642644899567, 34.61751965864185], [-77.39655554964207, 34.61758426956213], [-77.39663282254119, 34.617641052596106], [-77.39694385469014, 34.617869610089336], [-77.39698321322132, 34.617911104269844], [-77.39715155329336, 34.61826422652044], [-77.39726652415231, 34.618414229205385], [-77.39739838074144, 34.61865320046888], [-77.39740863650388, 34.618665235993255], [-77.39742118399921, 34.618680136775986], [-77.39758532034966, 34.61887402232336], [-77.39770093336895, 34.61903413636512], [-77.39781537226727, 34.61920108985251], [-77.3979162667056, 34.619318980828574], [-77.39796504423674, 34.61958182761009], [-77.39759001205407, 34.61971741249994], [-77.39742115104657, 34.61981986165085], [-77.39733694524247, 34.61984508580545], [-77.397122713462, 34.61986352678426], [-77.39702694366123, 34.61984820069113], [-77.39686337863628, 34.61975567091968], [-77.39663274547375, 34.61962519910639], [-77.3966152319349, 34.61961529145722], [-77.39641176273655, 34.61945807535163], [-77.39623855403576, 34.619293896222], [-77.39621478872718, 34.61927406729477], [-77.39613993270338, 34.61925926561651], [-77.39594471657631, 34.61917932529454], [-77.3958443557664, 34.61917041580177], [-77.39570920566453, 34.61917582031958], [-77.39516750700236, 34.61939949908671], [-77.39507881329267, 34.619436932134796], [-77.39505593217903, 34.61945221880289], [-77.39498644831627, 34.61950044173789], [-77.39455804320798, 34.61980030941007], [-77.39455214255302, 34.61991280747492], [-77.39455288975236, 34.62002988137898], [-77.39453410714265, 34.62012769357408], [-77.39459164709636, 34.62025625749176], [-77.39461839337244, 34.620327824782635], [-77.39466167125887, 34.620357544116246], [-77.39472978965094, 34.620385127830126], [-77.39485877106011, 34.62044137445647], [-77.39491254986075, 34.620439771691466], [-77.39505587591145, 34.62044273951249], [-77.3952613125685, 34.62045637316375], [-77.39545008773807, 34.6204031964873], [-77.39569411267559, 34.62033445544553], [-77.3958443013748, 34.62031614069411], [-77.39616738996084, 34.62045242816926], [-77.39623850339328, 34.62048102321605], [-77.39625895907935, 34.62049378295408], [-77.39628437527874, 34.620512149426354], [-77.39632113819098, 34.62059585174377], [-77.39650113434772, 34.620905460831025], [-77.39652832610363, 34.621013943835294], [-77.3965793449498, 34.62131875357157], [-77.39663267746025, 34.621441352722904], [-77.39671134529308, 34.621639555081664], [-77.39691729873388, 34.62169458665438], [-77.39702688276917, 34.621719249646205], [-77.39733700888856, 34.62172462021501], [-77.39742109793706, 34.62173005952216], [-77.39755696495685, 34.62174866321537], [-77.39794193463294, 34.62183500875346], [-77.39820952239324, 34.62209065010849], [-77.39833342157067, 34.622206050525456], [-77.39845258531926, 34.622322305431986], [-77.39870582729218, 34.62260039504604], [-77.39899795145064, 34.62271499405704], [-77.39925562575672, 34.62277811140529], [-77.39967657211542, 34.62287663525911], [-77.3997863912277, 34.622890554762186], [-77.39986300601446, 34.62288550403633], [-77.40057484058956, 34.62360851864892], [-77.4006604590808, 34.623609925330406], [-77.40077640388574, 34.62368541073532], [-77.40070316182434, 34.6269544131967], [-77.40086616053833, 34.62706905292792], [-77.40087879794947, 34.627394508767004], [-77.39900958913134, 34.630733391868176], [-77.40094387462061, 34.63345377371959], [-77.40171118703468, 34.6349637804576], [-77.39774886446962, 34.637355076346374], [-77.39742076192456, 34.63745897360649], [-77.39735250177142, 34.637692052624224], [-77.39729771706523, 34.6377734502682], [-77.39391587814607, 34.64128036349124], [-77.39111173676949, 34.64167735366291], [-77.38952547266729, 34.64060200828868], [-77.3872799124004, 34.641884836764504], [-77.38480272220175, 34.64181616644322], [-77.38329825592784, 34.64156792398741], [-77.38322551463713, 34.641564080049775], [-77.38317526708704, 34.641561424147255], [-77.38291582409754, 34.641544700488346], [-77.38164827748254, 34.641504376863054], [-77.38140079965609, 34.64149650152909], [-77.38069397540974, 34.64119412445324], [-77.3806214941485, 34.641026108296515], [-77.38032534817454, 34.64079510542972], [-77.3802909500064, 34.64064916240015], [-77.38020759094078, 34.64038338152793], [-77.38022672330078, 34.64023385153594], [-77.38014036918061, 34.640171947199065], [-77.38007133809292, 34.6401060642942], [-77.37972948956768, 34.63993735809205], [-77.3796770757024, 34.639914224878304], [-77.37965703701332, 34.63991293011471], [-77.37928280023239, 34.63978675129208], [-77.37907784229603, 34.63977090973837], [-77.37849429233168, 34.63936821890246], [-77.37806671533093, 34.639307144726345], [-77.37770579507253, 34.63893660786036], [-77.3776708849101, 34.63890375619273], [-77.377254756002, 34.638600316233216], [-77.37691729684173, 34.63854040307672], [-77.37670653540997, 34.63881579057538], [-77.37648461839755, 34.63907461195996], [-77.37633036895416, 34.639314199003834], [-77.37622880777747, 34.63953601555618], [-77.37612839722942, 34.63965459961964], [-77.37595692645831, 34.639815150688804], [-77.37544805539764, 34.63995635192731], [-77.37533971149718, 34.63992866055506], [-77.37498569722898, 34.63971504266166], [-77.37498127692153, 34.639677132095215], [-77.374964935669, 34.639293471988914], [-77.37507706646574, 34.6389942425575], [-77.37498999961613, 34.638817626773076], [-77.37494572032702, 34.6388216072955], [-77.37489772991245, 34.63882691918822], [-77.37455132329573, 34.63915414243704], [-77.37422493533624, 34.638902431444365], [-77.3741006355565, 34.63893259555904], [-77.37376276919714, 34.63898352207747], [-77.37372102960974, 34.63900310572164], [-77.37358273125733, 34.63906795693942], [-77.37356956492184, 34.63907413175774], [-77.37356558980345, 34.63907807396077], [-77.37343106151596, 34.639157251055224], [-77.37336839340816, 34.63922719672594], [-77.37298983983219, 34.6395778900514], [-77.37298219438475, 34.63958783640288], [-77.3729739783075, 34.639590848385176], [-77.37295784294135, 34.63959986768134], [-77.37257960880012, 34.63979769440611], [-77.37244236145098, 34.63980449702065], [-77.37233778494945, 34.63983597374437], [-77.37218527690919, 34.63987952481717], [-77.37213417278352, 34.63991337642668], [-77.37210054173858, 34.64000941056051], [-77.37209149412094, 34.64002566116753], [-77.37209490066918, 34.6400340531142], [-77.3721374001438, 34.64012519095333], [-77.37215269056598, 34.64015798052168], [-77.37218516654451, 34.640227623101495], [-77.37229405085246, 34.6404098941282], [-77.37237254588779, 34.64051589157732], [-77.37252147378427, 34.640856767703085], [-77.37256629902282, 34.64092650360638], [-77.37261556916467, 34.64094456208828], [-77.3729735858476, 34.64086743454992], [-77.373350381277, 34.640780763877586], [-77.3733808152391, 34.640781387102635], [-77.37343520466517, 34.64078743692614], [-77.37370618550537, 34.64080875478252], [-77.373762211674, 34.64085302629605], [-77.37394272314565, 34.64094452590004], [-77.37405227867417, 34.64112313826042], [-77.37455060059727, 34.64166008218046], [-77.37464295149093, 34.64178772517294], [-77.37472777880994, 34.641874984027055], [-77.37494480506867, 34.64204849448575], [-77.37509597028448, 34.64208375112089], [-77.37533909733584, 34.64213409589601], [-77.37556547487517, 34.64217890866084], [-77.3756565654253, 34.64224849893193], [-77.3760429035716, 34.642443469503505], [-77.37612763370632, 34.6424933259964], [-77.37615084615305, 34.64249417426866], [-77.37620868259907, 34.64251083779166], [-77.37614485056213, 34.642538581184986], [-77.37612761465762, 34.64256443590531], [-77.3758079078268, 34.643073598292524], [-77.37535584217922, 34.64348277839457], [-77.37533872005828, 34.64349509581584], [-77.37532989075937, 34.643496021662145], [-77.37463623704437, 34.64367923139066], [-77.3745780627993, 34.643737952853854], [-77.3743524553538, 34.64399037966293], [-77.3740154502587, 34.64412381220881], [-77.37393987802017, 34.64436352381947], [-77.37391464343067, 34.64453023704469], [-77.3736046083498, 34.645263412510566], [-77.37346087064736, 34.64525060722776], [-77.3732989423179, 34.645335400321265], [-77.37315286630795, 34.64521855304762], [-77.37310644170114, 34.645253433530804], [-77.3730420823088, 34.645283262671654], [-77.37311162476139, 34.64530027769986], [-77.37327236295667, 34.64546259875585], [-77.3733292089755, 34.64548571004454], [-77.37360471739376, 34.64547214920086], [-77.37364729041013, 34.64547537574223], [-77.37395245000714, 34.64570922968915], [-77.37404653360895, 34.64574563478868], [-77.37430604330714, 34.645566885302784], [-77.37455948082767, 34.6458781654967], [-77.374710060542, 34.645983284257284], [-77.37476461869228, 34.64604616313446], [-77.37488857591323, 34.646084336867354], [-77.37501836542934, 34.646117833530475], [-77.37505915148807, 34.64612691972782], [-77.3751242907304, 34.64613549894413], [-77.37538586139928, 34.64615941629991], [-77.37560758315264, 34.64609922023763], [-77.37569256606596, 34.64609257645034], [-77.37595099983525, 34.64623977230039], [-77.37609617922642, 34.64628001127927], [-77.37635456062947, 34.64620013798661], [-77.37668640924583, 34.646259388293046], [-77.37668718320191, 34.646259588365346], [-77.37701817181696, 34.64631571595129], [-77.37721799091291, 34.64635499082152], [-77.37763534059448, 34.64647714415558], [-77.3777039148502, 34.646492629450144], [-77.37775655398602, 34.6464768511801], [-77.37795002043767, 34.64650565642126], [-77.37849256566612, 34.64658680566012], [-77.37893239205695, 34.64673970947902], [-77.3792811544741, 34.64696064629338], [-77.37939469670016, 34.64702443963045], [-77.37972245984625, 34.64709948888419], [-77.37998846219844, 34.64714873425909], [-77.38006978643241, 34.647167354602914], [-77.38020444037342, 34.647175038299174], [-77.38136800919014, 34.647162977594846], [-77.38164713592052, 34.64720427617109], [-77.38223895668904, 34.647374198386714], [-77.38243577268348, 34.64742415273907], [-77.38259268408456, 34.64736622375035], [-77.3832243757275, 34.647855403298344], [-77.38430769865508, 34.64697099226009], [-77.38446257046449, 34.6481148800664], [-77.38446831869007, 34.64847292009577], [-77.38480165705576, 34.6483940746638], [-77.38557467022734, 34.64882057042375], [-77.38559790111839, 34.64964955145288], [-77.38703974664102, 34.65042841162523], [-77.38795606190055, 34.65127798889757], [-77.38869949532713, 34.65179869268106], [-77.38948141206706, 34.65248645740898], [-77.39042145071892, 34.65309308685374], [-77.39111072208195, 34.653705326555176], [-77.39268020831581, 34.65373229415576], [-77.39273388083058, 34.653765152589756], [-77.39426562325677, 34.65470289247444], [-77.39464498694691, 34.654730319373826], [-77.39491056200141, 34.65541930898788], [-77.39629016252044, 34.65757093060649], [-77.3974550517583, 34.65860963548182], [-77.39748872994616, 34.65880035981377], [-77.39721602276299, 34.65890141734117], [-77.39556488686566, 34.65994755394186], [-77.39489675261181, 34.66037085663217], [-77.39399923071886, 34.660780090808096], [-77.39315163967595, 34.66084419366999], [-77.39313021443364, 34.66085444926479], [-77.39309527017484, 34.660858317415034], [-77.39229224411072, 34.660979617626424], [-77.39183489214922, 34.660966303171776], [-77.3918045119733, 34.66096544701017], [-77.39136892434442, 34.660965071919925], [-77.39118616034867, 34.66099407045119], [-77.3909206568596, 34.66090910949797], [-77.39058082632147, 34.66087206709854], [-77.39033609265186, 34.66082424957927], [-77.3902357479328, 34.66082183374382], [-77.3900017345648, 34.66080576855855], [-77.38973144110929, 34.660895769532864], [-77.38963186109969, 34.66092469489315], [-77.38928438890318, 34.66121655799648], [-77.38925835092928, 34.66123171476553], [-77.3892014365486, 34.661257182206], [-77.38858219398551, 34.66157503767753], [-77.38827286102423, 34.66162515453237], [-77.38826420206932, 34.66162675156317], [-77.38795482873866, 34.66167528763347], [-77.3876483871008, 34.66171904006118], [-77.38764159440417, 34.66172386308117], [-77.38763689076417, 34.661720785714714], [-77.38738774323352, 34.66180706987114], [-77.38736255279761, 34.66193212999576], [-77.3874188589941, 34.66198993717189], [-77.38755139015433, 34.66203511447152], [-77.38772705855065, 34.66204563339513], [-77.38784081658699, 34.662068694130745], [-77.38810392050537, 34.66214961795323], [-77.38814976978637, 34.662163372498284], [-77.38839295963166, 34.662228020399496], [-77.38850995311363, 34.66223112851746], [-77.38887330041959, 34.66227715700629], [-77.38895202046089, 34.66228487764341], [-77.38897253342853, 34.662292694953734], [-77.38936942474696, 34.66260619503666], [-77.38946040578956, 34.66267381152129], [-77.38946784782758, 34.66267611837077], [-77.38948840861116, 34.662711636299555], [-77.38978761244655, 34.66312611499813], [-77.38978757598294, 34.66321843518127], [-77.38985496493869, 34.66337694653742], [-77.39038541013196, 34.66438266776437], [-77.39030707754945, 34.66473543664771], [-77.39027482599454, 34.665161762827196], [-77.38948432464042, 34.66507855818896], [-77.38936224454531, 34.66507720144312], [-77.38905079083156, 34.664875926634814], [-77.38885975363388, 34.66474647929888], [-77.38884995508603, 34.66472940453281], [-77.38884270708756, 34.664718389386046], [-77.3883559642175, 34.6644202482604], [-77.38827123598374, 34.664386602948014], [-77.38815591877555, 34.664325511517276], [-77.38765370802616, 34.664073699044394], [-77.3873093665357, 34.66390244946747], [-77.38709360867009, 34.663716555233506], [-77.38678996274786, 34.66363012719333], [-77.38624713582517, 34.66366742246856], [-77.38617968149347, 34.66367136220636], [-77.38615631839926, 34.663649981875054], [-77.3861022555736, 34.663633342075485], [-77.38538469761147, 34.66345577905019], [-77.38509219162282, 34.66329470215782], [-77.38434429085969, 34.66290045081678], [-77.38417444594506, 34.66281086135503], [-77.3840484770416, 34.662767046402905], [-77.38388056200543, 34.66284615636006], [-77.38380968638178, 34.66297401343057], [-77.38368989412255, 34.66318411845265], [-77.3834934462783, 34.66377919302405], [-77.38308312716303, 34.6640487875982], [-77.38307740358887, 34.66405294749919], [-77.38270442577249, 34.66435603998829], [-77.38268764039591, 34.66436546904359], [-77.38251320579472, 34.66450560117409], [-77.38249510622754, 34.66451362780522], [-77.38238746635594, 34.66463190297581], [-77.38244587779101, 34.66468344884689], [-77.38250592813111, 34.66468756625275], [-77.38257979690565, 34.6647374944544], [-77.38267538100088, 34.66475418714154], [-77.38284404723815, 34.664857963864854], [-77.38290858969522, 34.665047603794605], [-77.38313123752863, 34.66519163905257], [-77.38331913961196, 34.665283155724985], [-77.38355651667214, 34.66544585563969], [-77.38371042186228, 34.665534096959426], [-77.38382299013642, 34.665609151843725], [-77.38398139277803, 34.66571966945215], [-77.38407302939437, 34.665778661085724], [-77.38411892355536, 34.6658108805686], [-77.38417992914778, 34.66584747822518], [-77.38426546237424, 34.66589515240733], [-77.38432828719753, 34.66593016929575], [-77.38441395614623, 34.665977918799996], [-77.38458910378114, 34.666034876682566], [-77.38459360723225, 34.66603668463865], [-77.38460303676118, 34.66603868527531], [-77.38489703311618, 34.666032300348974], [-77.38508148317888, 34.66605517447878], [-77.38534601328892, 34.6660590708278], [-77.38548649371474, 34.66606296715928], [-77.38560354975407, 34.666047325250695], [-77.38606736039928, 34.66606028414837], [-77.38609006320524, 34.66604495367235], [-77.38612615764755, 34.66603905665446], [-77.38614819588958, 34.6660640336689], [-77.38659958262659, 34.66606867273032], [-77.38667863133364, 34.66607869375262], [-77.38682059059634, 34.666089747398416], [-77.38697746612416, 34.66607986218655], [-77.38716261660007, 34.666029257820355], [-77.38730023960291, 34.665998432743606], [-77.38744324165604, 34.66600349027354], [-77.38793516303569, 34.665818106856484], [-77.38795323762938, 34.665809855785774], [-77.38851739892355, 34.665679309269315], [-77.3886136935125, 34.665595529939594], [-77.38869767878128, 34.66563534553475], [-77.38910911357547, 34.665565634254165], [-77.38931696041938, 34.665233462455134], [-77.38936550573573, 34.66517019802228], [-77.39036576837066, 34.665603566727484], [-77.39049145013996, 34.66560253903823], [-77.39055726413324, 34.66562409343549], [-77.39148137841767, 34.66603091367439], [-77.39163276390228, 34.66608612751933], [-77.39176722998721, 34.666107759834006], [-77.39192831424695, 34.66617175410231], [-77.39215686510177, 34.66619550536181], [-77.39224032165879, 34.666200586850344], [-77.39228885262929, 34.666213133785725], [-77.39272605364486, 34.6664044268354], [-77.3928115797144, 34.666440323994195], [-77.39290751506067, 34.66647733804083], [-77.39309896102108, 34.66655414844937], [-77.39328937427929, 34.66661579397805], [-77.39339143023464, 34.66665041475226], [-77.39349037683715, 34.66668293553738], [-77.39368422010926, 34.66674557634441], [-77.39388936071731, 34.66681186724452], [-77.39397713222797, 34.666840317034115], [-77.39406032078443, 34.66686738250845], [-77.39427275775344, 34.666925694648285], [-77.39454270327717, 34.666985684920405], [-77.39457357930918, 34.66699313963689], [-77.39459767309101, 34.66699847969738], [-77.39476805793626, 34.6670357651529], [-77.39487596833663, 34.66705517543016], [-77.39489235454919, 34.66706300825613], [-77.39513414053499, 34.66712812344476], [-77.395172666844, 34.6671368525903], [-77.39530957329971, 34.66708559106232], [-77.39532724172795, 34.667069975245184], [-77.39541913825278, 34.666984165346825], [-77.39545119416901, 34.66689865224179], [-77.39554713966098, 34.666749404648655], [-77.39560441177798, 34.66640103438741], [-77.39590209219736, 34.666314530712995], [-77.39623716498413, 34.665939890469716], [-77.39684811537232, 34.66577686826673], [-77.39706299999108, 34.66638079921044], [-77.3972618792965, 34.66656026205316], [-77.39739662938001, 34.66668795726946], [-77.39747532308289, 34.66686539146795], [-77.39758135309184, 34.667057224526246], [-77.39761986587152, 34.66753621430118], [-77.39798974653038, 34.66731148336601], [-77.39820131704217, 34.66711958543539], [-77.39828395497389, 34.667044631599936], [-77.39849080580942, 34.66667787811461], [-77.39849749647497, 34.66666413245039], [-77.39850110728871, 34.66665167375953], [-77.39875560746538, 34.66619534898792], [-77.39887825115682, 34.66577221173893], [-77.3997231414817, 34.664699129283164], [-77.40055838720349, 34.66581540724071], [-77.40144460381474, 34.66713679892287], [-77.4013885296643, 34.6672544261402], [-77.40154368490332, 34.667261769200216], [-77.40163062825451, 34.66728322244073], [-77.40164381180023, 34.667206541295094], [-77.40289401406511, 34.66635747906985], [-77.40446283895696, 34.665956870845896], [-77.40448617644785, 34.665950911430755], [-77.40591733208775, 34.66531865482542], [-77.40729276772265, 34.66471098340706], [-77.40744560195687, 34.66468877133772], [-77.40748881034652, 34.664779608403705], [-77.4089700948929, 34.66587679929812], [-77.40948297569982, 34.66639561191972], [-77.40953069524056, 34.66653558349887], [-77.40955757242367, 34.666622003244335], [-77.40967457427047, 34.66697708726933], [-77.40978788150016, 34.667320961171335], [-77.40979603944908, 34.667527160787756], [-77.40980420920357, 34.667826578358195], [-77.40977108872268, 34.66822065269339], [-77.40973954735244, 34.66836306944805], [-77.40973050697878, 34.66856494144673], [-77.40972815798585, 34.66868490785779], [-77.40985349719661, 34.66896207628797], [-77.40986322136362, 34.669074898037884], [-77.40996874962164, 34.66914347702112], [-77.41013203786105, 34.669221867233574], [-77.41054109801642, 34.669379593777435], [-77.41104865667829, 34.66947298368807], [-77.41114983588464, 34.66949003456092], [-77.4111960224645, 34.66946625467556], [-77.41124725272749, 34.66944988856583], [-77.41160115262315, 34.669380897800394], [-77.41184141378946, 34.669314352911435], [-77.41199224618349, 34.669272576859456], [-77.41206660527885, 34.669177532839456], [-77.41222135250419, 34.66898368218547], [-77.41224159347126, 34.668959217616916], [-77.41224751609184, 34.66894205694423], [-77.41237943008475, 34.66872789927446], [-77.4124348123523, 34.668500334784135], [-77.41276550479914, 34.668303902810266], [-77.41277758814088, 34.66829379830621], [-77.41301180287425, 34.66794801795147], [-77.41332763816713, 34.667941521205975], [-77.41422724399999, 34.667712589876544], [-77.41467476623015, 34.66767605747914], [-77.41669083689571, 34.66801137042775], [-77.41668494151126, 34.66807559388085], [-77.41699813152216, 34.6696685534178], [-77.41644055540628, 34.67056456557542], [-77.41555042140314, 34.67199487886392], [-77.4155177469709, 34.67204738234331], [-77.41550668213657, 34.67205876030929], [-77.41547655363644, 34.672088919849465], [-77.41432100335754, 34.67308212622757], [-77.41295726999428, 34.67314010636984], [-77.41264422264415, 34.67318059220556], [-77.41254517347215, 34.67316962950204], [-77.4123508338985, 34.67319081965425], [-77.41245938669928, 34.67334784354834], [-77.41255553334885, 34.673486918283615], [-77.41337063937334, 34.67466593268969], [-77.4132723490676, 34.674794043028854], [-77.41266163662164, 34.675536041650666], [-77.41255118051366, 34.67617193502001], [-77.41178782753775, 34.676138435555664], [-77.41165873100387, 34.676208320217654], [-77.41115313487023, 34.676117467587076], [-77.41114298563355, 34.676122823616055], [-77.41114745043893, 34.676137099440524], [-77.41156695772787, 34.676398273158], [-77.41168455840524, 34.67649509673639], [-77.41237566273173, 34.67695356184534], [-77.4127700892895, 34.677172052853244], [-77.41338781841452, 34.67802661673837], [-77.41354095420893, 34.67825277739799], [-77.41372141832939, 34.67831258873364], [-77.41433927429526, 34.6794777711936], [-77.41448002791716, 34.67964638008565], [-77.41441142467455, 34.680355817583894], [-77.41522572928947, 34.68090616079152], [-77.41542258101947, 34.68103853447684], [-77.4154834948841, 34.68107949573605], [-77.4155989997396, 34.68115716442888], [-77.4170610888217, 34.682140311388245], [-77.41756428232375, 34.68274584520047], [-77.41836995886413, 34.68337961827547], [-77.41883219270633, 34.68440435483318], [-77.41809470521665, 34.68523875478709], [-77.4174790155991, 34.686167340565056], [-77.41653666765298, 34.686295477864306], [-77.41518988759451, 34.68647258503446], [-77.41395726000518, 34.68635096942454], [-77.41303710244408, 34.68594407429375], [-77.41289319582683, 34.68679932794077], [-77.41246817152674, 34.687067268094694], [-77.41210449211809, 34.68741117945202], [-77.41174810704501, 34.68734083791136], [-77.41125432574242, 34.68724102593869], [-77.41113712607537, 34.68723769333578], [-77.41109857424073, 34.68726217155854], [-77.41108139447616, 34.68728361094277], [-77.41092873100551, 34.68735844184419], [-77.4109198118045, 34.68738057193761], [-77.41087287480302, 34.68749020673322], [-77.41088316292883, 34.6875614351075], [-77.41090494770742, 34.68760994574185], [-77.41090781882608, 34.68769830415816], [-77.41092220065272, 34.687787024182406], [-77.4109316024823, 34.68782199968936], [-77.4109457758334, 34.68789846932984], [-77.41107155229605, 34.688209965369715], [-77.41103249138382, 34.68838473107737], [-77.41106203600744, 34.68860350485819], [-77.41109195635353, 34.68864780061357], [-77.41124113955951, 34.6887372944977], [-77.41132038747034, 34.68881787669456], [-77.41140116582898, 34.68879328706291], [-77.41155036553359, 34.688749234354], [-77.41183624518642, 34.688665961067294], [-77.41190170321575, 34.688575741358044], [-77.41202067272825, 34.68861266366384], [-77.41212279486899, 34.688664124982566], [-77.41260756219376, 34.688799040034894], [-77.41278739982818, 34.688998756721915], [-77.41278254353952, 34.68928159919487], [-77.41261051148857, 34.68973500250465], [-77.41241325096189, 34.68998607076359], [-77.41250266702787, 34.69029105359911], [-77.41238228211238, 34.69085795158177], [-77.41229904476833, 34.6910643373962], [-77.41190818521032, 34.69121422152284], [-77.41172227863795, 34.69127475851218], [-77.41157067590028, 34.6912731676376], [-77.41145872431568, 34.69132944033015], [-77.4113274340031, 34.69137711440149], [-77.41123166771743, 34.69149077596395], [-77.41120771749274, 34.691521174517845], [-77.41130437934886, 34.69163946606687], [-77.41135916688518, 34.691660764365864], [-77.41144395685387, 34.69171075007889], [-77.41161589339053, 34.691848885064374], [-77.41173905397417, 34.691798268604096], [-77.41185729410638, 34.69202800436342], [-77.41214115883082, 34.69222725636694], [-77.41207154085838, 34.69266207596129], [-77.41207312087444, 34.69270198763912], [-77.41206740893973, 34.692877505423795], [-77.41233824248908, 34.69303774186912], [-77.412377350534, 34.69332817851039], [-77.41212218064626, 34.69342500241116], [-77.41209767913722, 34.693789444219675], [-77.41174750498666, 34.693982187282494], [-77.41162617438314, 34.69411004877752], [-77.4115322680298, 34.69415073862435], [-77.41127905449395, 34.69429047722534], [-77.41120565620295, 34.69431602428389], [-77.4111029158267, 34.69437647484135], [-77.41106687484798, 34.694460773493816], [-77.41109093255577, 34.69455544291378], [-77.4110424355329, 34.694651624487534], [-77.41102393564088, 34.69492503149689], [-77.41096915313395, 34.69507195026614], [-77.41102575926608, 34.69536787091487], [-77.41102648716587, 34.69537031448128], [-77.41102692671583, 34.69537172061483], [-77.41102696818427, 34.69537445255124], [-77.41109907514505, 34.69567651951797], [-77.41112253898817, 34.69577659618661], [-77.4111690507082, 34.695979617746765], [-77.41121979464134, 34.69618237622312], [-77.41132824595121, 34.69631581104383], [-77.41142753456215, 34.69654207129132], [-77.41143648402232, 34.69663323580998], [-77.41154727263724, 34.69688670866544], [-77.41157374884362, 34.69692743049569], [-77.41160288823086, 34.69697100944006], [-77.41161106847068, 34.697077800436254], [-77.41167900235891, 34.69732987541447], [-77.41176880454621, 34.69758816706555], [-77.4118061372078, 34.697723193519586], [-77.41183386576958, 34.69789048471864], [-77.41187294438595, 34.69797528451564], [-77.41194720357066, 34.69811070108826], [-77.4120585838513, 34.698248656713545], [-77.41209840733701, 34.698303331042716], [-77.41223462334254, 34.69843716169677], [-77.41234334255176, 34.698564143825465], [-77.4126580533038, 34.69901748345964], [-77.4124650997426, 34.69922251651311], [-77.41246358804482, 34.69923435600644], [-77.41245875368857, 34.699272219096606], [-77.41260413483168, 34.699449875891915], [-77.41269328832277, 34.69956895990554], [-77.4127199335413, 34.699598240283805], [-77.41294002315655, 34.69992832642393], [-77.41296138453671, 34.69996226074803], [-77.41318418055396, 34.70008709994168], [-77.41339582459008, 34.700184552517285], [-77.41355850782924, 34.70026241270282], [-77.4137783487862, 34.70024862443163], [-77.41405167666716, 34.700357330179], [-77.41476772438287, 34.7007435537759], [-77.41490774026475, 34.70077524810698], [-77.41498419346551, 34.70086105431473], [-77.41519170429507, 34.70090132884543], [-77.41526631972528, 34.700966546160046], [-77.41535804027797, 34.70096074329259], [-77.41551093724608, 34.70090561150166], [-77.41560473197578, 34.70088693185782], [-77.41566597392837, 34.700716200031515], [-77.41587326482266, 34.70076106490597], [-77.41603502510698, 34.700757895590186], [-77.41611974590835, 34.70071011973448], [-77.41620615158782, 34.70071818917208], [-77.41624691939474, 34.70073105001862], [-77.41625201523911, 34.70069402206397], [-77.41624652446447, 34.70057875798755], [-77.41623439899011, 34.700562714656336], [-77.41622531697506, 34.700544908436], [-77.41612518886852, 34.7003850928585], [-77.41580790718369, 34.70020023032588], [-77.41571923784772, 34.70018624582936], [-77.41566681548328, 34.70006999713243], [-77.41526367482982, 34.69985175929831], [-77.41519834094332, 34.69977168196186], [-77.41499197316699, 34.69951874282288], [-77.4147553566759, 34.69919206180286], [-77.41474312994946, 34.699176191290505], [-77.4147351890171, 34.699157717507525], [-77.41446082790614, 34.69852992697773], [-77.41441082495446, 34.69842210083018], [-77.41436353659142, 34.698227792553276], [-77.41422931131426, 34.69788983286138], [-77.41419030762245, 34.69762138097375], [-77.41419788052625, 34.697599285416885], [-77.41409802167148, 34.6974042542503], [-77.41402365749303, 34.69725878472598], [-77.41401678903465, 34.69724740996596], [-77.41401053130454, 34.69723350267001], [-77.41387641370022, 34.696927721358826], [-77.41385809783333, 34.69686725400289], [-77.41374679256896, 34.69660282206593], [-77.413828149187, 34.69621486222044], [-77.41411447685559, 34.69617234415475], [-77.41417549700265, 34.69603479723342], [-77.41430561387449, 34.69595965764215], [-77.41429480498041, 34.69579237500609], [-77.41433248478674, 34.69568950507063], [-77.41439400707658, 34.69564404832187], [-77.4145085037335, 34.69525687526716], [-77.41452662961179, 34.69519831849019], [-77.41444155692498, 34.69497373378175], [-77.41440237907122, 34.69485479223136], [-77.41424795159219, 34.69465713149715], [-77.41414974462435, 34.69453941128999], [-77.41412828749603, 34.694499857997286], [-77.41406582045877, 34.6941024831693], [-77.41388722811068, 34.69385641667218], [-77.41407761759324, 34.69363050264796], [-77.41436813056566, 34.69378521483468], [-77.41458251142146, 34.69388693894186], [-77.41492687058953, 34.69406893984956], [-77.41500492684919, 34.69415707621294], [-77.41523138349055, 34.69432665559951], [-77.41534282238632, 34.694462471450876], [-77.41544751037617, 34.69448426047635], [-77.41549285109583, 34.6944486952887], [-77.41553866190816, 34.69443415086614], [-77.41578013422546, 34.69428003679615], [-77.41582115163781, 34.694253422434535], [-77.41582479376532, 34.69424345214728], [-77.41597622883468, 34.694028121173794], [-77.41609999812744, 34.69394542925576], [-77.41632821614094, 34.69365600740679], [-77.41636091767433, 34.69360359421552], [-77.41636135757973, 34.69359120436216], [-77.4163547452053, 34.69356438051725], [-77.41611153565302, 34.69324906804032], [-77.41622580466355, 34.69265505883247], [-77.41656219003451, 34.69284789339653], [-77.41675804114742, 34.69277736045994], [-77.41713871840099, 34.69275748669059], [-77.41719435037915, 34.69274279371841], [-77.41722961454948, 34.69275621574887], [-77.4172742337648, 34.69276400098397], [-77.41774069912348, 34.692888163145675], [-77.41784905635065, 34.69283026436176], [-77.41799834287238, 34.6929082614116], [-77.41824555117533, 34.692965672729024], [-77.4184628877926, 34.69292369258096], [-77.41869403591602, 34.69306437340606], [-77.41901217151793, 34.69324008664782], [-77.41910771588657, 34.69333814404109], [-77.41927970222713, 34.69342285238557], [-77.41932148097334, 34.6934721397869], [-77.41941756269856, 34.69350009061884], [-77.41948832052758, 34.693501773389656], [-77.41957290934485, 34.6934788304298], [-77.41958510172108, 34.6934748100405], [-77.41958689021553, 34.69347409980383], [-77.41966711204236, 34.69342012019895], [-77.41975883357419, 34.69339447121462], [-77.41981933812679, 34.69329502974582], [-77.41994389021261, 34.69334234168253], [-77.42020258457131, 34.69327014535619], [-77.42025292137083, 34.69325599359237], [-77.4202892590668, 34.69325622592325], [-77.42042635193437, 34.693208643830964], [-77.42044835188851, 34.693201547891256], [-77.42046948186345, 34.69318712551906], [-77.42058305552533, 34.69312368407209], [-77.42059216495367, 34.69306270342006], [-77.42062374201862, 34.692928804637575], [-77.42059429476853, 34.69284807057144], [-77.42056063658339, 34.69273195101155], [-77.4205368107089, 34.692401063549084], [-77.42049407128931, 34.69231335821759], [-77.42039330065288, 34.69221867495739], [-77.42041388702702, 34.69202321695386], [-77.42040102775357, 34.69166228667571], [-77.420991971175, 34.69147248638119], [-77.42141207504962, 34.69145685271471], [-77.42145425007406, 34.69144561852731], [-77.42189171423993, 34.691447703544085], [-77.42209355002602, 34.6914510148618], [-77.42233220556217, 34.69141997434879], [-77.4224214901144, 34.69142507151662], [-77.4225116860676, 34.69133945626063], [-77.42260040576936, 34.69136046408781], [-77.42264732427385, 34.691329831562264], [-77.42271416728931, 34.691296545398615], [-77.42276846773979, 34.69125277920095], [-77.42276169059433, 34.69123006279486], [-77.42281476418174, 34.691173404320644], [-77.42283710815762, 34.691123583345565], [-77.42284187027009, 34.69111833647433], [-77.4228425821733, 34.69107729584728], [-77.42256620065581, 34.69100239967999], [-77.42252727541069, 34.69099096871218], [-77.42225655699622, 34.69088785821461], [-77.42208152895978, 34.69075826304999], [-77.42185518120947, 34.690060506437746], [-77.4217807497381, 34.689991028104366], [-77.4217911062214, 34.68991217043256], [-77.42184234498997, 34.68987105319589], [-77.42193594483297, 34.689781484826355], [-77.42248672508651, 34.68959640254775], [-77.42259821041108, 34.689611043950805], [-77.42267174635089, 34.689619248526505], [-77.42324462262995, 34.68968826211315], [-77.42353208732226, 34.689642093877026], [-77.42389693009211, 34.689648659584854], [-77.42397651037318, 34.6896208049791], [-77.42401362510758, 34.68957139302169], [-77.4242997050129, 34.689401303963834], [-77.42431134654407, 34.689381452759996], [-77.424450521257, 34.68916512473544], [-77.4244961395242, 34.688974550000125], [-77.4246229966075, 34.68880503061099], [-77.4246283688974, 34.68866824970124], [-77.42467671438303, 34.68852186717996], [-77.42489823166719, 34.68840318523128], [-77.42505835749934, 34.68825956609551], [-77.42542723674796, 34.68825314187447], [-77.42557750201497, 34.68827036748511], [-77.42569222802811, 34.688201731389825], [-77.42580762450068, 34.68812716239878], [-77.4258715592366, 34.68806081779741], [-77.42591111966442, 34.68799875228405], [-77.4260164630857, 34.68777715967377], [-77.42601105722694, 34.68771186565405], [-77.4259793116946, 34.68746352622744], [-77.42620039635668, 34.68727352926851], [-77.42621596357826, 34.68724752846935], [-77.42602286791607, 34.68698327114003], [-77.42596804575388, 34.68692085731758], [-77.42594276666149, 34.68689166780389], [-77.42598203687231, 34.68687251068762], [-77.4262326122277, 34.68657829847384], [-77.42631014758584, 34.68646108728809], [-77.42653807472158, 34.6863298298657], [-77.426647020979, 34.686174884238994], [-77.42666500401214, 34.68602612686201], [-77.42644409013471, 34.68581319442845], [-77.42629316908366, 34.68579737407428], [-77.42618692430042, 34.68575569606768], [-77.42600749941077, 34.68567734233501], [-77.42588307106372, 34.685600942854855], [-77.4257492045265, 34.68546271777462], [-77.4255015003776, 34.68506009308774], [-77.42548637716246, 34.68487373871175], [-77.42554462704803, 34.68470551044325], [-77.42573258568747, 34.68458184324152], [-77.42588205279796, 34.684509311679506], [-77.42593839192257, 34.68437429091825], [-77.42599430991454, 34.68431890482033], [-77.42603112227718, 34.684200028230734], [-77.42604477394048, 34.684131962171456], [-77.42606769927488, 34.68406494688573], [-77.42626156209289, 34.68369221573128], [-77.42627768786548, 34.68366038608024], [-77.42627988871655, 34.68365512286438], [-77.42628719206357, 34.683646785888264], [-77.42642459067446, 34.68342619779063], [-77.4264766918147, 34.683237866914574], [-77.42653512345537, 34.68318532117179], [-77.42651057720495, 34.68310718213272], [-77.42648859386581, 34.68290766207009], [-77.42646791216566, 34.682678610390155], [-77.42643314011028, 34.68259057340688], [-77.42647155454092, 34.68248156373783], [-77.4266167219833, 34.68246488407335], [-77.42681682320489, 34.682298205475945], [-77.42713323762705, 34.68227637574823], [-77.4272110182287, 34.68219484497975], [-77.42733919390987, 34.68218258173089], [-77.42737815452034, 34.6822987263537], [-77.427448771039, 34.682386740667084], [-77.42764939149164, 34.68263190503805], [-77.4277983335782, 34.682810324509305], [-77.4280145662205, 34.68276079092769], [-77.42826544338834, 34.68267238486427], [-77.4283930486031, 34.68263173635516], [-77.4285016712756, 34.68259413885221], [-77.42872418322327, 34.682425269370285], [-77.428857789739, 34.68232049265246], [-77.42905112140896, 34.6822119432635], [-77.42927579083283, 34.682133301704695], [-77.42963877334654, 34.68203457587745], [-77.42981975103149, 34.681972914272706], [-77.4299736418096, 34.68193603749377], [-77.43005585705832, 34.6819009172942], [-77.43016636467826, 34.68179176145743], [-77.43026620218339, 34.68169495117437], [-77.43039780711426, 34.681422310442095], [-77.43051604683208, 34.68122326719762], [-77.43064091828518, 34.680936948448256], [-77.43075926887147, 34.68074926761675], [-77.4308487404403, 34.68066388012916], [-77.43107231995324, 34.68035331543929], [-77.43109554755812, 34.68031956061748], [-77.43110315965286, 34.68031047735687], [-77.43113822109021, 34.680282992181375], [-77.431403323198, 34.68007492245114], [-77.431686264843, 34.67995535031679], [-77.43176282657687, 34.67991485793884], [-77.4318682233273, 34.67981704175992], [-77.43209839691927, 34.67971566501804], [-77.43224852757845, 34.679592933210145], [-77.43235221225618, 34.67932987700547], [-77.43204588276421, 34.67920293159831], [-77.43195374852212, 34.67904981271907], [-77.43179466244442, 34.67896388805066], [-77.43154837944397, 34.678816421349666], [-77.43152146745642, 34.67880080675828], [-77.43150625081478, 34.67879021483155], [-77.43147111172861, 34.67876197443052], [-77.43119712738073, 34.67847285792517], [-77.43116964243939, 34.67819719561293], [-77.4311795734553, 34.678100943658535], [-77.43175088030311, 34.67800780441663], [-77.43200384370915, 34.67806543308501], [-77.4320515759578, 34.67807581573703], [-77.43210746522757, 34.67809287261834], [-77.43233974636593, 34.678187123589254], [-77.43273386202665, 34.67827779073804], [-77.43286981474164, 34.678569702923625], [-77.43310179564467, 34.67836488010196], [-77.43341512702831, 34.678439804191655], [-77.4335420628149, 34.67846079177461], [-77.43362682078646, 34.67847543864035], [-77.434076746284, 34.6785551404768], [-77.4341362173438, 34.678560442302604], [-77.43415522329491, 34.67855613823086], [-77.43417667828737, 34.678568299998624], [-77.4341705804015, 34.67858795670856], [-77.43428943453625, 34.6788109288872], [-77.43452582786097, 34.67927125039965], [-77.43449731439246, 34.67932724067786], [-77.43457286402588, 34.67932741702286], [-77.43460490592275, 34.67932667461098], [-77.43511355623855, 34.679673316780566], [-77.43532083343962, 34.679749299646154], [-77.43540283095518, 34.67978083251482], [-77.43548802587875, 34.679806466935915], [-77.43569639360416, 34.67987352463281], [-77.43590824682107, 34.67996181954084], [-77.43604482810224, 34.6800204277866], [-77.4362509391382, 34.6801715522233], [-77.43643277458601, 34.680304876327014], [-77.43651510594813, 34.680365882329376], [-77.43665849998118, 34.680440529722155], [-77.43680632508305, 34.68046668512911], [-77.43712645325475, 34.68045774761204], [-77.43745898527683, 34.68042550637896], [-77.43757112167346, 34.68043690304271], [-77.43786927053323, 34.680597996614864], [-77.43800897002093, 34.68073932784183], [-77.43833448043624, 34.68116216462553], [-77.43840209804945, 34.68126836070656], [-77.43846524785955, 34.68137716308441], [-77.43870551659612, 34.68154350687621], [-77.43902090420002, 34.681671403822534], [-77.43955036802674, 34.68158731715624], [-77.43963823535911, 34.68157269787781], [-77.43969493045384, 34.68155636054732], [-77.43982856460771, 34.68156565332058], [-77.43980815631541, 34.681677454549444], [-77.43990019538965, 34.681954395590395], [-77.43990359729519, 34.68198073301039], [-77.43990925658697, 34.682015698831464], [-77.43989131837526, 34.68226557327928], [-77.43991984676583, 34.68242035310077], [-77.43993310172515, 34.682839224087786], [-77.43994607806503, 34.682855807286494], [-77.43994529694086, 34.68290624921563], [-77.43994347110986, 34.68330329981731], [-77.43991243253396, 34.68339103778115], [-77.4399352730349, 34.68355362240011], [-77.43997240982193, 34.6837376237102], [-77.44015966985347, 34.68403652276996], [-77.44019932249111, 34.684089298728935], [-77.44022751220425, 34.68414604368783], [-77.44042828846035, 34.6846894809774], [-77.44047441263322, 34.68486726687205], [-77.4405287601212, 34.68500412897478], [-77.44050780337544, 34.685237108342264], [-77.44050327418535, 34.685274737673815], [-77.44050299738245, 34.685409140919], [-77.44064894957981, 34.685687214658046], [-77.44078639225818, 34.68569244625313], [-77.4408606968707, 34.685598816003214], [-77.44098439211159, 34.685442949707536], [-77.44104470188502, 34.68536695401677], [-77.4410642319167, 34.685290641816046], [-77.4410700614245, 34.68519338315422], [-77.44105525744504, 34.68507118478875], [-77.44106267570531, 34.68491128227162], [-77.44108197704338, 34.684680197708616], [-77.44108557245013, 34.68461212200341], [-77.44110902669236, 34.684368450112714], [-77.4411387242512, 34.68414352498536], [-77.44114259505754, 34.68410066832632], [-77.44115525826483, 34.68405229221114], [-77.44121271595338, 34.6838456656665], [-77.44126916542533, 34.68364265987698], [-77.4412825846145, 34.68331105683541], [-77.44129124178076, 34.683187036496946], [-77.441303170992, 34.682798692223955], [-77.44133311595112, 34.682769687325965], [-77.44171029659168, 34.68256567595036], [-77.44194269579104, 34.68242377971201], [-77.44195700787705, 34.682372020114315], [-77.44202396473158, 34.682365464355705], [-77.44206034215125, 34.68241953312015], [-77.44206618398363, 34.68246695458398], [-77.44251286016072, 34.683123424988594], [-77.4428266905946, 34.68379345253222], [-77.44286076855808, 34.68386282692774], [-77.44286504464168, 34.68386920794914], [-77.44286472135245, 34.68388969304414], [-77.44292371911037, 34.68444386754568], [-77.44280835722978, 34.68451114347282], [-77.44275376408925, 34.68480848833805], [-77.44273047417039, 34.684935340156045], [-77.44271834070436, 34.68511167753328], [-77.44271696437698, 34.68527026251768], [-77.4427543492715, 34.68537931929418], [-77.4427876535952, 34.68546395549247], [-77.44283928949267, 34.68553241565353], [-77.4429156880123, 34.68563370705359], [-77.44297748395391, 34.6857156375837], [-77.4431435466577, 34.685806613652744], [-77.44313725158986, 34.685636584376404], [-77.44322966513496, 34.6855026226136], [-77.44331138907886, 34.68541794777607], [-77.44333340363252, 34.685369257496774], [-77.44341720158025, 34.68530297648974], [-77.44350291858913, 34.68520539132383], [-77.44363828015352, 34.68511988400152], [-77.44382455823559, 34.68500221202126], [-77.4439682138384, 34.684911464684355], [-77.44407260187933, 34.68484552218104], [-77.44413317989442, 34.684807254753586], [-77.44421565895843, 34.68475765604158], [-77.4443010200178, 34.68470774191347], [-77.44460245327402, 34.684527983617855], [-77.44463639963551, 34.68450822684455], [-77.4446624693426, 34.684492708587165], [-77.44489824159936, 34.6841885295691], [-77.44517632674828, 34.68411332150644], [-77.44526922432956, 34.684047205596414], [-77.44538064808735, 34.684052682228135], [-77.44558495888839, 34.683976661972665], [-77.44563452590414, 34.68389659697463], [-77.44578998612064, 34.68376882371794], [-77.44613729083996, 34.68365188631763], [-77.44633912616827, 34.68355288694345], [-77.44648512177164, 34.68345280754179], [-77.44690919245525, 34.683198283096765], [-77.44700996191423, 34.68315400521308], [-77.44706396410903, 34.68309613626332], [-77.44764652731196, 34.68286421034784], [-77.44772111427412, 34.682821016927555], [-77.44781963611226, 34.6828012787267], [-77.448331530757, 34.682711129560815], [-77.44860054504174, 34.68276303109032], [-77.44938075296518, 34.682934321460465], [-77.44953512078428, 34.68298060692776], [-77.4498108184747, 34.683245685168416], [-77.45003024140945, 34.683484369477], [-77.45009991812069, 34.68352686474202], [-77.45053477613725, 34.68368116469932], [-77.45060880562771, 34.68369948919503], [-77.45099185551899, 34.68368053041672], [-77.45127969482314, 34.683595220711545], [-77.45171547400932, 34.68360405610963], [-77.4518448789721, 34.68357936403102], [-77.45193606839372, 34.683541159479695], [-77.45199788625918, 34.68362715031961], [-77.45250491884505, 34.68378989358554], [-77.45259779292988, 34.68382305908408], [-77.45292822651322, 34.68385454312385], [-77.45312849589197, 34.68384929513977], [-77.45337559304168, 34.68383803024185], [-77.4534578664304, 34.68381816606987], [-77.45367095952146, 34.68372853062539], [-77.45372316507914, 34.68365845653535], [-77.45393293314756, 34.68328294454622], [-77.45394413494954, 34.683265004167474], [-77.45394033316954, 34.68325734134565], [-77.45392796717331, 34.68324560553529], [-77.45362891690382, 34.68294602025684], [-77.45349088874154, 34.68259548958276], [-77.4534756783418, 34.68254226755056], [-77.45346625144319, 34.6824911732386], [-77.45342052591883, 34.68214018405334], [-77.45342882545276, 34.68196688586881], [-77.45329532653284, 34.68146438236088], [-77.45329465351865, 34.6813609841982], [-77.45328477979041, 34.68130401106668], [-77.45296580722385, 34.68068703576986], [-77.45294301625073, 34.68057551660172], [-77.45290004897507, 34.68047512991864], [-77.45264021756122, 34.68011274292459], [-77.45250930065012, 34.67996060650848], [-77.45216347143698, 34.67954624456337], [-77.45202853980388, 34.67912067572204], [-77.4522889587843, 34.6788313117692], [-77.45237745816887, 34.67862326620685], [-77.45244097599344, 34.67850303070284], [-77.45261702673758, 34.678087631495316], [-77.45278667191862, 34.67766597639354], [-77.45283839043626, 34.67754563701065], [-77.45291301766736, 34.67726896679598], [-77.45296922451405, 34.67697199706655], [-77.4529746224633, 34.6768738811333], [-77.45296706399569, 34.67673547304841], [-77.45295476662972, 34.67651027823445], [-77.45294570902772, 34.676344404200705], [-77.45293491028207, 34.67614667445172], [-77.45291122917345, 34.67571297709341], [-77.4543342124385, 34.67500929807812], [-77.45438368442375, 34.67495638504875], [-77.45441852847945, 34.67498526465888], [-77.45445159907955, 34.675012673794654], [-77.45508156470845, 34.675534796882744], [-77.45529893320855, 34.675714953417334], [-77.45573833327032, 34.676086111568814], [-77.45614496762323, 34.676510059060064], [-77.4561596566622, 34.67684842656962], [-77.45619937322097, 34.677431758798534], [-77.4561518185684, 34.67756763045067], [-77.45601324956665, 34.67803598258358], [-77.45595270800538, 34.67824060229273], [-77.45584717318752, 34.67859730053607], [-77.45577106698315, 34.678795923322745], [-77.45574233101587, 34.679039101968584], [-77.45571631235364, 34.6791709271041], [-77.45567797864933, 34.67924207827414], [-77.45574286336657, 34.6792876274676], [-77.45584789327977, 34.679378277824355], [-77.45597256322445, 34.67946418479041], [-77.45619812336881, 34.67964771144059], [-77.4564359717427, 34.67981240191694], [-77.45685244938048, 34.680199730764954], [-77.45686163130394, 34.680206754824724], [-77.45687901561408, 34.680220053422424], [-77.45734304819442, 34.68053297111929], [-77.45822299541302, 34.68128365375579], [-77.45822524845799, 34.68128547716735], [-77.45870331907004, 34.682528787348154], [-77.45880747292755, 34.68272868794926], [-77.45811807689066, 34.684642675684806], [-77.45807994979718, 34.684797154828395], [-77.45759155758752, 34.68677571086538], [-77.45695134926962, 34.68870147179672], [-77.45691436961263, 34.68887234987093], [-77.45432418703562, 34.69010584947946], [-77.45417824155477, 34.69038184803045], [-77.45379835102062, 34.690399275457025], [-77.45311877000074, 34.69030195818861], [-77.4511800217216, 34.6905900152857], [-77.45061143630245, 34.6905342312774], [-77.44992222882829, 34.690507655539854], [-77.44971500096905, 34.690564584490005], [-77.44941244107582, 34.69062525675001], [-77.44930701746338, 34.69064549946114], [-77.44923727128842, 34.690660383443905], [-77.44913344046849, 34.69080724827663], [-77.44915872312087, 34.69093207554346], [-77.44919698733125, 34.69104668193112], [-77.44937303393496, 34.69112714330823], [-77.44942717949917, 34.69111175894512], [-77.44958969398158, 34.69110738351205], [-77.44978166968488, 34.69099385461373], [-77.44995444118855, 34.69095581903649], [-77.45068745165585, 34.69131719972229], [-77.4509010579928, 34.69155501207604], [-77.45161138214011, 34.69251181345305], [-77.45169262924878, 34.69268319725928], [-77.45177722576301, 34.692957578956744], [-77.45245669748505, 34.69392524721334], [-77.4523949544423, 34.69417565821405], [-77.4524171021754, 34.6944704160862], [-77.45256665148972, 34.69466031471208], [-77.45265905437728, 34.69495824449727], [-77.45271383325903, 34.69513311899083], [-77.45274247729438, 34.69516049743829], [-77.45301477812058, 34.69525614196604], [-77.45303331307888, 34.69526282783702], [-77.45316095332139, 34.6952893699658], [-77.45348789334541, 34.69523384252266], [-77.4536878992552, 34.69521524702509], [-77.45391608051898, 34.69532622569146], [-77.45429470059034, 34.69533297710419], [-77.45440918428379, 34.69524399460456], [-77.45502494916177, 34.69502362203368], [-77.45515095424727, 34.69496086556371], [-77.45530570426446, 34.694920848986506], [-77.45624098636665, 34.69375175983528], [-77.45802357797828, 34.693517296464776], [-77.4600289373301, 34.69455926264056], [-77.46024904779556, 34.69468618009318], [-77.46076989918805, 34.69517058136972], [-77.46232331056484, 34.696378455778984], [-77.46285006005675, 34.69695263263605], [-77.46339820212292, 34.697748313608955], [-77.4641995666781, 34.69875632903951], [-77.46483536366853, 34.69969510159417], [-77.46600181532, 34.70089372047064], [-77.46607424492976, 34.70096349980512], [-77.46611267994822, 34.701006966780575], [-77.46673345253336, 34.70114927939005], [-77.46832247341126, 34.70152689550964], [-77.46852443595058, 34.70153189590649], [-77.46887860456037, 34.70157801930224], [-77.47065756211236, 34.703021405402026], [-77.47190760118373, 34.70388450465571], [-77.47151514246232, 34.70505518059942], [-77.47159793783933, 34.70687519348985], [-77.47151545235356, 34.70762010547607], [-77.47102764954387, 34.70935655125972], [-77.46955984902581, 34.71200861639129], [-77.47158710272, 34.714023536748556], [-77.46994614798314, 34.71541905341736], [-77.47237916851927, 34.71481079182904], [-77.47274178514849, 34.71472013202435], [-77.47323141374599, 34.71459771041407], [-77.47509871271232, 34.71427151276511], [-77.47652440129856, 34.714917761842024], [-77.47735574530664, 34.7153334648265], [-77.47884290295681, 34.71527476802668], [-77.47863154783548, 34.716483092859995], [-77.47788342137605, 34.71713606709653], [-77.47752400901095, 34.718332188336674], [-77.47646776238037, 34.71840794135224], [-77.47591008442343, 34.71828580991252], [-77.47525339382598, 34.71817402850846], [-77.47480297641783, 34.71808484755347], [-77.4740322972966, 34.71796340306704], [-77.47282054471711, 34.71779031679297], [-77.47163296651212, 34.717393820383606], [-77.46966496231134, 34.71567464027087], [-77.46731700077217, 34.71700405425316], [-77.4666455337963, 34.71690812030814], [-77.46247326265998, 34.71588877116356], [-77.46183258296807, 34.71581863830246], [-77.46060115431138, 34.715749775658665], [-77.4587745907696, 34.71402047876948], [-77.45808750709766, 34.71322774801282], [-77.45784401373402, 34.711877461339455], [-77.4561971659554, 34.71312011440062], [-77.45628196290733, 34.71398159156437], [-77.45562204019558, 34.71515518123172], [-77.45572972068949, 34.71683456824291], [-77.45582386939073, 34.71746165149529], [-77.4557575165573, 34.717772058644364], [-77.45452180094992, 34.72147874579491], [-77.4538290977354, 34.72568971550631], [-77.45382047340104, 34.72570572681128], [-77.45382627620276, 34.72572127888213], [-77.45383250383077, 34.725753383635855], [-77.45406799576911, 34.726079810078645], [-77.45740815293351, 34.73112470500704], [-77.45743329038554, 34.73135861577187], [-77.45745143095098, 34.73144583201337], [-77.45842094470225, 34.73318733781528], [-77.45910563895666, 34.73649533728586], [-77.45712137923003, 34.73704470254328], [-77.45585172364468, 34.73650784222403], [-77.4548152326424, 34.73723299763423], [-77.45502461477929, 34.737721326123875], [-77.45425994388603, 34.738352205174394], [-77.45404308514783, 34.739199299675256], [-77.45358903074828, 34.74010625570172], [-77.45356509979403, 34.74015035296672], [-77.45354289041137, 34.74017119807372], [-77.45348756546613, 34.74024906562774], [-77.45329184794078, 34.74050875869335], [-77.4532447202954, 34.74059745676589], [-77.45320661063903, 34.74071229836174], [-77.45310631527198, 34.74095327998849], [-77.45293513994719, 34.74104833196342], [-77.45279301925463, 34.74133134607885], [-77.45272000830673, 34.7415321931852], [-77.45279203022768, 34.74177819425287], [-77.45298352861221, 34.74199196850898], [-77.45304005497067, 34.742121116660236], [-77.45337123617081, 34.742318615069976], [-77.45381045707003, 34.74269246107792], [-77.45399329267269, 34.74293466073904], [-77.45407682182702, 34.74347416750089], [-77.4542389326688, 34.7437396150127], [-77.45435643260286, 34.74389617872534], [-77.45456439183452, 34.74416355464354], [-77.4548366671975, 34.74445281027724], [-77.45493847990898, 34.74454289047118], [-77.45522686866681, 34.74477994494187], [-77.45535910690039, 34.74486351295173], [-77.45555678038761, 34.744953914610186], [-77.45591894753956, 34.74514489283506], [-77.45614113519962, 34.745291246222315], [-77.45645403901975, 34.74551187158369], [-77.456537333332, 34.74557232913025], [-77.45668172641388, 34.74571060101687], [-77.45685907862845, 34.7458844851992], [-77.45700513162717, 34.74582352743947], [-77.45736974051574, 34.74567134914734], [-77.45773434801508, 34.745519169815196], [-77.45846355884603, 34.74521480803091], [-77.45919276411999, 34.74491044208678], [-77.45992196383695, 34.744606071982936], [-77.46138034659963, 34.74399731929676], [-77.46429704543934, 34.74277976401462], [-77.4672136553632, 34.741562142194134]], [[-77.35907680736986, 34.6887943950382], [-77.36031341240061, 34.68906968230726], [-77.36082692567632, 34.68918399415629], [-77.36259863081621, 34.68992937991317], [-77.36319295463895, 34.6882289309178], [-77.36334192095184, 34.6880353965776], [-77.36328956316049, 34.68677874778676], [-77.36284540089629, 34.686353693840935], [-77.36283934929675, 34.686336865720406], [-77.36282091413017, 34.68633049413132], [-77.36226527313995, 34.68629027214513], [-77.36183548631104, 34.686321168348904], [-77.36165509294642, 34.686330403783664], [-77.36140634056162, 34.686319763631325], [-77.36044243458555, 34.68638411324355], [-77.35975874659924, 34.68634286910116], [-77.35931393982527, 34.6861478235803], [-77.35872052058812, 34.68649189150558], [-77.35861370648551, 34.68649820258656], [-77.35842607629506, 34.686580244712026], [-77.35821362538941, 34.68668078991285], [-77.35811368340796, 34.68682069992748], [-77.35796983897865, 34.68699690261995], [-77.35795283819782, 34.68708785011815], [-77.35791320160982, 34.68736922642947], [-77.3579799113873, 34.68748290499755], [-77.35809412015945, 34.687624183761315], [-77.35831053676866, 34.68792487759819], [-77.35847291415857, 34.68812105000731], [-77.35857321055089, 34.68869989098343], [-77.35875653122957, 34.68869117571832]], [[-77.43488306259681, 34.70262215160015], [-77.43395553094011, 34.701873051952646], [-77.43416078863628, 34.70094670253675], [-77.43397657293075, 34.700078693724535], [-77.43392796017332, 34.69974720231084], [-77.43364650600114, 34.69932365823428], [-77.4333076936573, 34.6992063835976], [-77.43313016087956, 34.69934953861025], [-77.43297733176196, 34.6994148363958], [-77.4325719464745, 34.6995341863736], [-77.43240722201011, 34.69966351417713], [-77.43211681018234, 34.699673021869785], [-77.4318557641067, 34.69979434683448], [-77.431579915202, 34.69980690797337], [-77.43146123749281, 34.699789237054944], [-77.4312057057765, 34.69982597050745], [-77.43100450445019, 34.6998431671195], [-77.43084917432245, 34.70010813747771], [-77.43053121093794, 34.699942035002785], [-77.43017681443112, 34.69987884740641], [-77.42991945634783, 34.6998412784529], [-77.4296936210293, 34.699714997440864], [-77.42936078585242, 34.69982748818005], [-77.42956135221816, 34.70013567810853], [-77.42982397067284, 34.700171246447916], [-77.42995612931246, 34.70041732526389], [-77.430220980206, 34.70057699050349], [-77.43035602378944, 34.700547439773985], [-77.43061847663301, 34.70058731463796], [-77.43094851235026, 34.700714793443176], [-77.43119516080739, 34.70102794976604], [-77.43134376516397, 34.701177424944454], [-77.43104514074695, 34.70192407543648], [-77.43084461979174, 34.702023505600145], [-77.4305488766841, 34.702095841671934], [-77.43029890029267, 34.70220000328582], [-77.42975372005318, 34.702628794050334], [-77.42967480235474, 34.702675579006375], [-77.42965704000137, 34.702726396555725], [-77.42962385125742, 34.70278790821224], [-77.42950949077087, 34.702954337696404], [-77.42959227510042, 34.70318667702737], [-77.4296612380695, 34.7032186926729], [-77.42969778792968, 34.70329970712852], [-77.4298736760627, 34.70357643207407], [-77.42986145725045, 34.70363646508139], [-77.43002650762269, 34.70390096449921], [-77.4300552628304, 34.703947045522], [-77.43010642019074, 34.70400164553425], [-77.43027435734206, 34.704151914947566], [-77.4304922222405, 34.70421109661879], [-77.43056849046843, 34.704242931027075], [-77.4306709282738, 34.70430370964698], [-77.43158720730112, 34.704519374583356], [-77.43170599029155, 34.704499798184244], [-77.43177687698622, 34.70449692754767], [-77.43185913428357, 34.70453347380858], [-77.43197813487261, 34.70465605077185], [-77.43275654509748, 34.70505176610609], [-77.43261144633702, 34.705979625064224], [-77.43261427103282, 34.70599656458397], [-77.43259944075876, 34.70601010937581], [-77.4326106144973, 34.706045703465264], [-77.43272845745122, 34.70684905365154], [-77.43285962726014, 34.707200448459155], [-77.43298455905818, 34.7076349657241], [-77.43338118869345, 34.70781287218161], [-77.43391704951736, 34.7081386287875], [-77.43392680654698, 34.708142398406906], [-77.43394055850793, 34.70815173689292], [-77.43428696390072, 34.70843065691907], [-77.43442407550884, 34.7086390318249], [-77.43486935553456, 34.70863401607633], [-77.43519375432042, 34.708704168154], [-77.43576992951151, 34.70841811638896], [-77.43589954757056, 34.708362048207434], [-77.43600665819949, 34.70830058670871], [-77.43615713500046, 34.708096599098546], [-77.43646315353598, 34.706223982983325], [-77.43644182255413, 34.70609579081234], [-77.43630231946872, 34.70446482054162], [-77.43564095362264, 34.70370036941556]], [[-77.39624027610157, 34.58772024232564], [-77.39656537144496, 34.587705283301105], [-77.39663433120317, 34.58771462812854], [-77.39668160411016, 34.58771188322443], [-77.39697832859923, 34.587666074821534], [-77.3970283895732, 34.58764903484547], [-77.3972414707107, 34.587487051565006], [-77.3974224583967, 34.58736910860535], [-77.39750789820569, 34.587311095803514], [-77.39780309668919, 34.587190917138635], [-77.39781651989509, 34.587186856082816], [-77.39783928973155, 34.58719576685164], [-77.39807572049692, 34.58728241469266], [-77.39821056565265, 34.58733183279824], [-77.39845284212711, 34.58724624959544], [-77.39860461570342, 34.587397392385036], [-77.39886893725676, 34.587307472947316], [-77.3989986740487, 34.58723063748463], [-77.39938236155491, 34.586937429714354], [-77.39939273461607, 34.58692678805321], [-77.39958305959796, 34.586700136076374], [-77.39959576660776, 34.58669906276532], [-77.39960580174638, 34.58672135916906], [-77.39943695398632, 34.58694072922636], [-77.3994607476967, 34.587010579879674], [-77.39970084914113, 34.58732722739657], [-77.39939271417629, 34.587644540368075], [-77.39928402281214, 34.58769483371742], [-77.39911620036575, 34.58770950913564], [-77.39899866051246, 34.587638514140224], [-77.39880727086629, 34.58788072646804], [-77.39872388905312, 34.58802129187917], [-77.39879995663276, 34.588306355171305], [-77.39873230982725, 34.588603056687454], [-77.39866616636756, 34.58881660487336], [-77.39850200374445, 34.58888441256783], [-77.3982104950581, 34.58901145696238], [-77.39806899960917, 34.58910851052104], [-77.39781642246177, 34.589272621874045], [-77.39778866477054, 34.589301401055806], [-77.39759591352592, 34.589516210999605], [-77.39742233854183, 34.5897091741148], [-77.39735969068182, 34.58978785901946], [-77.39720526633714, 34.590000847577635], [-77.39716159376465, 34.59009734585633], [-77.39709203431559, 34.59025104365412], [-77.39708925514404, 34.59031718174816], [-77.39708465026325, 34.590615888091776], [-77.3970903301729, 34.59067586204197], [-77.39710036680191, 34.590752148256875], [-77.39717562548424, 34.59092930149181], [-77.3972252417011, 34.59094941894556], [-77.39730372504326, 34.590985090304414], [-77.39738197488467, 34.591014944521405], [-77.39742227358596, 34.59101090350698], [-77.39751839228633, 34.59093512773871], [-77.3976476656953, 34.59083829034081], [-77.39781635769398, 34.59069820200059], [-77.39788452986812, 34.59063473596353], [-77.39816071282334, 34.59052144594337], [-77.39821043410285, 34.59050222809611], [-77.39833925127925, 34.59049568850605], [-77.39858598794909, 34.5904800396823], [-77.39860450167114, 34.59050115992934], [-77.39869028137335, 34.59053746659125], [-77.39899856438024, 34.59065590122442], [-77.39925913515734, 34.59078754763578], [-77.3991357581724, 34.59095317149459], [-77.39899855327644, 34.59101746049256], [-77.39873443451202, 34.59128782198024], [-77.39866247261227, 34.591360694679096], [-77.39870629988039, 34.591606735073825], [-77.3987731064328, 34.591706816222086], [-77.39880149482877, 34.59173812416034], [-77.3988770145451, 34.59182274420933], [-77.39899852429265, 34.59197837842627], [-77.39911987688035, 34.59208136025882], [-77.39923133153789, 34.59223902037139], [-77.39937169680398, 34.59246960286466], [-77.39939258596878, 34.592486977210356], [-77.39965187631353, 34.59257439420115], [-77.39978666099802, 34.59257015465133], [-77.40008337390908, 34.59268660025028], [-77.40018073577214, 34.592716158370145], [-77.4002146056713, 34.59273607188204], [-77.40024041593136, 34.59276883927163], [-77.40043154063216, 34.59301148059639], [-77.40054071705406, 34.593150085154626], [-77.40042144415365, 34.59333252362501], [-77.40027273362843, 34.59361332459591], [-77.40023255680725, 34.593674967251275], [-77.40018072136061, 34.59369384752692], [-77.40001166902412, 34.59386327807812], [-77.39999959687499, 34.59388217136911], [-77.39998367477277, 34.59402134772445], [-77.3999774020678, 34.59408050904769], [-77.39998367335525, 34.59410730548476], [-77.40004927575822, 34.594211746315736], [-77.40018071245026, 34.59432433206655], [-77.40027343334151, 34.59436247646955], [-77.40039298747493, 34.594673824236374], [-77.40048896029376, 34.59485584943997], [-77.40052810876725, 34.5949004960663], [-77.40057479055744, 34.595126991070146], [-77.40067286262021, 34.595572801691155], [-77.4006670223701, 34.595679306950785], [-77.40065250903177, 34.595765136618674], [-77.40057478364155, 34.59595423988354], [-77.40050700563151, 34.596126968565486], [-77.40044026476181, 34.59628151775799], [-77.40040548588023, 34.59635390292606], [-77.40039556687327, 34.59637454729408], [-77.40037773268678, 34.596394302994966], [-77.40032136147094, 34.59642677067611], [-77.40018068367922, 34.596516185792346], [-77.39997027936707, 34.59662898000228], [-77.40018068160889, 34.59668500973474], [-77.40026080303703, 34.59667338193803], [-77.40037772973582, 34.59669125214293], [-77.40046447232596, 34.59665113001398], [-77.40047625419808, 34.596648773889775], [-77.40052419494384, 34.5966035583437], [-77.40057477892664, 34.59655782478854], [-77.40058418006187, 34.59655053623722], [-77.40059241031894, 34.59653922063179], [-77.40078870186491, 34.59631679115434], [-77.40096887594905, 34.59611646588619], [-77.40099617965713, 34.5960858048594], [-77.40102355448109, 34.596052439765664], [-77.40119359349113, 34.595845429191975], [-77.40136296873574, 34.595581971628754], [-77.40136417454102, 34.595580017606366], [-77.40136502049891, 34.595578596468975], [-77.40137605717926, 34.59556290307404], [-77.40154436848368, 34.59532357612867], [-77.4015600132433, 34.59530133025491], [-77.40168461521625, 34.59510790752452], [-77.40171295817254, 34.59505630790679], [-77.4017570561166, 34.59495570843862], [-77.40189206782671, 34.594653398711785], [-77.4019777410771, 34.594454222864115], [-77.40213389296734, 34.594193929717676], [-77.40214115493674, 34.59418212817394], [-77.40215113616692, 34.59416469351197], [-77.40231282405499, 34.59391773586432], [-77.40245325403521, 34.59372327086366], [-77.40263727446114, 34.59337133120242], [-77.40279866293156, 34.59297577849652], [-77.40285171574352, 34.59281662198133], [-77.40286585447795, 34.59273547587201], [-77.40282368961591, 34.592396090777704], [-77.40277776153992, 34.59215214848461], [-77.4027443971619, 34.591982957532764], [-77.40269230016558, 34.591724399444274], [-77.4026589410959, 34.59144815046172], [-77.40241875985834, 34.591180796892466], [-77.40239717583894, 34.59091879320149], [-77.40215110576172, 34.59048056692705], [-77.40208608347805, 34.59037965256435], [-77.40203447288357, 34.590261438495304], [-77.40215110373194, 34.59018449722461], [-77.40224995927295, 34.590249495932625], [-77.40261149014039, 34.58995071852414], [-77.40274233104813, 34.58964794268948], [-77.402829399088, 34.589423238435174], [-77.4028620751553, 34.589335403429885], [-77.4029392187278, 34.589208018885884], [-77.40302122878896, 34.588970980127584], [-77.40301345059177, 34.588627517028826], [-77.40300924815546, 34.58854813343907], [-77.40300815530534, 34.58847400323449], [-77.40297581028472, 34.58812838329539], [-77.40297890761423, 34.58808515515891], [-77.40301234137334, 34.587777345201914], [-77.4030592914088, 34.587691760284635], [-77.40320543971075, 34.587532962649696], [-77.40333324268875, 34.58733427525712], [-77.40337610178496, 34.587267644847834], [-77.40339676161221, 34.587218482981996], [-77.40344127690256, 34.58709565061867], [-77.40348243444416, 34.58699383114285], [-77.40349710118375, 34.58695598633984], [-77.4035657625676, 34.58676951738451], [-77.40358862924734, 34.58661682725683], [-77.40372727130506, 34.586345020044135], [-77.40373588880617, 34.58632038917371], [-77.40379708387096, 34.58596221218288], [-77.40381458345416, 34.58588445563084], [-77.40381849254935, 34.58578558813122], [-77.40384073907754, 34.58545610483759], [-77.40383920619622, 34.58533569293533], [-77.40384224340147, 34.585243599764496], [-77.40380892317549, 34.58512412909911], [-77.40379190139735, 34.58503857709222], [-77.40377646626783, 34.584987764541076], [-77.40372723762533, 34.5848312429286], [-77.4035917360937, 34.584642889011754], [-77.40363018380467, 34.58453277174837], [-77.40357674633351, 34.58438262047086], [-77.40335133311476, 34.58425300802704], [-77.40333318784481, 34.58423160016667], [-77.4030233660708, 34.584209596479226], [-77.40293915030834, 34.58418190898787], [-77.40284779635984, 34.58422724171931], [-77.40254511378932, 34.58422198421469], [-77.40222763172807, 34.58433268556818], [-77.40215107705424, 34.58436371531415], [-77.40210347771779, 34.584381801763186], [-77.40187942927318, 34.584465421424774], [-77.40136299902527, 34.584706092785865], [-77.40100310509868, 34.58459187692726], [-77.40070678184273, 34.58449255852145], [-77.40057492427377, 34.58442803835915], [-77.40031148583904, 34.58440782069807], [-77.40009670685481, 34.58438879449524], [-77.39978684840378, 34.58438860352983], [-77.39944240367684, 34.58433906152883], [-77.39899877113021, 34.58439988194649], [-77.39861276121633, 34.58452085629395], [-77.39821068901944, 34.584507637307574], [-77.39789576409926, 34.58470090209751], [-77.39756550208226, 34.58493387852285], [-77.39742258207166, 34.585031720032525], [-77.39737383928451, 34.585063000435696], [-77.39730521899699, 34.585125417584315], [-77.39689298549041, 34.58546343104809], [-77.3966344573038, 34.58568183050048], [-77.39630012678444, 34.58575933302939], [-77.39615801900113, 34.58580425353285], [-77.39584635422055, 34.58585783814476], [-77.3956206301857, 34.58597437768452], [-77.39545229527988, 34.586025050880444], [-77.3952255222499, 34.58609433470639], [-77.3950582358403, 34.58617815993928], [-77.39497872822975, 34.58622450989576], [-77.39486120112244, 34.5863076295641], [-77.39484468668425, 34.58632950713354], [-77.3948231331754, 34.58650390277903], [-77.39481966032366, 34.58659013560133], [-77.39481056796038, 34.5867589997925], [-77.3948024790659, 34.58690923568092], [-77.3947705275011, 34.5871893467319], [-77.39472672876836, 34.587263148802414], [-77.39466408610224, 34.587369510969516], [-77.39456509374546, 34.58753690644907], [-77.3943770050267, 34.58797993543168], [-77.39438072296346, 34.58809471474516], [-77.3946640150503, 34.58820692312544], [-77.39482119463054, 34.58828639451876], [-77.3949933336306, 34.588361184255035], [-77.39505805822637, 34.58838479714731], [-77.39509127764234, 34.58838100358527], [-77.39512148941972, 34.588412437193625], [-77.39511322097039, 34.58847307149679], [-77.39520429919224, 34.588667475116836], [-77.39524661023911, 34.58881896079098], [-77.3952550514928, 34.58884888992413], [-77.39529296584948, 34.588983698890054], [-77.39530387734708, 34.589022986098314], [-77.39534491951969, 34.58911391394517], [-77.39535073387111, 34.58912539965127], [-77.39536000001944, 34.58912798790608], [-77.39545205868765, 34.589157007743836], [-77.3955285067082, 34.58912050601999], [-77.39556739544228, 34.58910923754485], [-77.3956031032753, 34.58902938061106], [-77.39561934448648, 34.58897748117208], [-77.3955853696855, 34.58891370947423], [-77.39556093636828, 34.588868621648984], [-77.39552090802198, 34.58877939446619], [-77.39549942115522, 34.58873149821315], [-77.39545209878057, 34.588619740067436], [-77.39535483958213, 34.58848357863431], [-77.39534503772936, 34.58838019146439], [-77.39538571276425, 34.58830277196456], [-77.39545212731996, 34.58823882729378], [-77.39573689530128, 34.58801686401692], [-77.39584620692243, 34.58792313057111], [-77.39586843595156, 34.587904069314504], [-77.39595898754366, 34.5878670580142], [-77.39614236456399, 34.58773511227264]], [[-77.37587144460198, 34.54889708673056], [-77.37611562618537, 34.54859996055596], [-77.37783296522122, 34.54786432586696], [-77.37862346760261, 34.54752006811983], [-77.37963534904567, 34.546754169052264], [-77.3802185219266, 34.546430893361254], [-77.38114739113485, 34.54591596973856], [-77.381466594382, 34.545658049309424], [-77.38125722759155, 34.545410474604836], [-77.381134615738, 34.54536160614041], [-77.38102816710446, 34.54535011997644], [-77.38080344260928, 34.54523107050359], [-77.38072451434597, 34.54518925764774], [-77.38064201139534, 34.545065921169645], [-77.38056199805493, 34.54502105062219], [-77.38064512704437, 34.5449282730271], [-77.38074800323571, 34.544811917473574], [-77.38096343367238, 34.54452551975733], [-77.38100647124485, 34.544467306995045], [-77.38102171983753, 34.54444836113094], [-77.38158498883678, 34.543894232699145], [-77.38165983667125, 34.543765350764886], [-77.3818555383003, 34.5434848299915], [-77.38209023939021, 34.54298132772753], [-77.3822088469299, 34.54282495761599], [-77.38263485954698, 34.54229429729618], [-77.38265406892795, 34.54226219613729], [-77.38266873017876, 34.54224506841908], [-77.38289381647331, 34.541882123941264], [-77.38299157413586, 34.54173276861947], [-77.38307570233353, 34.54160815748487], [-77.38312622382276, 34.54149848303267], [-77.3833621389845, 34.54126075902647], [-77.38337510988197, 34.541187799746375], [-77.38295114884934, 34.54108910133982], [-77.38284570062785, 34.540774478871185], [-77.38270346431015, 34.54070897488728], [-77.38221096053665, 34.54068385624791], [-77.3819198131377, 34.540643486444864], [-77.38131892381956, 34.54061953575422], [-77.38100075031156, 34.540634497969094], [-77.38091270702706, 34.540563538015654], [-77.38035659612115, 34.54033217282763], [-77.3799614135911, 34.540455750425295], [-77.37927148862691, 34.54061710185649], [-77.3787741278848, 34.54087090132374], [-77.37877329513259, 34.5408719861864], [-77.3787734697441, 34.540872350984934], [-77.3786478505737, 34.541134900463874], [-77.37876001963478, 34.541361696650796], [-77.37876062963258, 34.541363471755574], [-77.37876164883644, 34.541364137314], [-77.37876287498425, 34.54136751922101], [-77.37893781274, 34.541713595964794], [-77.37899892874749, 34.54181877655819], [-77.37904420912999, 34.54199659391535], [-77.379031244879, 34.54212569399094], [-77.37898973055626, 34.542309762390275], [-77.37887360143495, 34.542410294415106], [-77.37873532173657, 34.542583519394945], [-77.37853988516798, 34.54274466679611], [-77.37850442215874, 34.54286938566737], [-77.37833067122246, 34.543116288090175], [-77.3782316833611, 34.54309144863832], [-77.37794055283656, 34.54300775054013], [-77.37788707796048, 34.542991953036136], [-77.37778646388574, 34.54297288408756], [-77.37715886842847, 34.54285463243824], [-77.37668201789634, 34.54313208876094], [-77.37654896216767, 34.543266386367634], [-77.37624952150756, 34.54368408596062], [-77.3759828299608, 34.5439844020414], [-77.37570535420186, 34.54425218092139], [-77.37555433477164, 34.544362447889455], [-77.37521629805431, 34.54460495007228], [-77.37523737918686, 34.54480928863815], [-77.3749839405101, 34.544988623739236], [-77.3747590483732, 34.54536006960542], [-77.37475834017671, 34.54536798931251], [-77.37475413445726, 34.54537353937696], [-77.37472786645665, 34.54538367513914], [-77.37395437669258, 34.54566627284923], [-77.37358437184827, 34.54579796161748], [-77.37329473369957, 34.54606857872405], [-77.3732222946703, 34.54611854261001], [-77.37315680296805, 34.54621150389487], [-77.37296724239685, 34.546491180190955], [-77.3728950448347, 34.546771137649266], [-77.3731399252585, 34.54695423139516], [-77.37318846494377, 34.54703183628165], [-77.3732092729764, 34.5470602071374], [-77.37341615782017, 34.54734228796933], [-77.3738273397539, 34.54790290967205], [-77.3736088176866, 34.54798193941184], [-77.37312788420437, 34.5485261318657], [-77.37362656618527, 34.54895868560962], [-77.37502043967527, 34.549024758927644], [-77.37545197556122, 34.54887251226139]], [[-77.36078331566173, 34.57106043106912], [-77.36075467770887, 34.57107548273832], [-77.36063032188548, 34.57114084225016], [-77.36058624818531, 34.571210728233496], [-77.36047420013668, 34.57132814100167], [-77.36058611449984, 34.57147531600258], [-77.36060542176867, 34.571500706363494], [-77.36061969091972, 34.571519471144875], [-77.36071478552853, 34.57164452617347], [-77.36076190152421, 34.571711273414095], [-77.36078297741375, 34.57173309027914], [-77.36079812731234, 34.571706057832884], [-77.3608719015688, 34.5715996847134], [-77.36095703548273, 34.571470902017055], [-77.36097004047438, 34.57145818089512], [-77.36098012308932, 34.57142813658206], [-77.36103126551737, 34.57124793762808], [-77.3609802512476, 34.571172110949895], [-77.36093634000787, 34.571096686902095], [-77.36080774503839, 34.571067842355184]], [[-77.34543644883978, 34.65519553673237], [-77.34552597785152, 34.65529227525129], [-77.3455168281031, 34.65519754501231], [-77.34614953663777, 34.65520861229785], [-77.34620045066326, 34.65516840627754], [-77.3464587912126, 34.65515422494578], [-77.34671977607863, 34.655076884601655], [-77.3467625191444, 34.65507235172], [-77.34683900470723, 34.655097200384766], [-77.34709277045997, 34.65512239238241], [-77.34733205660395, 34.65493528493722], [-77.34702860642619, 34.65480327699924], [-77.34688311127995, 34.6547534893516], [-77.34668030049993, 34.65461547789798], [-77.34666913889943, 34.654607921098766], [-77.34666678504296, 34.65460765791707], [-77.34666047209221, 34.65460549206852], [-77.34641293791574, 34.654536116047424], [-77.34610550396216, 34.65441258753574], [-77.34601813176802, 34.65455503821432], [-77.34558261412103, 34.655031805759194], [-77.34547622205632, 34.6550447946584]], [[-77.37613143590669, 34.62856224234598], [-77.37648522803181, 34.62888506392497], [-77.3766144996396, 34.62919517779649], [-77.37691978079764, 34.6291546012669], [-77.3771410075926, 34.629028802976705], [-77.37720949083217, 34.62878074165457], [-77.37770856460752, 34.62809344406715], [-77.37784549378526, 34.62798743299561], [-77.37831764033497, 34.62796524478347], [-77.37849707880818, 34.628031493140526], [-77.3787705851621, 34.62826127034133], [-77.3790106821769, 34.62852127967603], [-77.37887018664516, 34.62894355590856], [-77.37849677013133, 34.629269013926624], [-77.37842090264259, 34.62937369343517], [-77.37830857519695, 34.62947154558501], [-77.37804657867133, 34.62987377715831], [-77.37770802749841, 34.630170860607265], [-77.37755787996585, 34.630267143672235], [-77.37739075101217, 34.63045287849377], [-77.3776557587856, 34.630470908193445], [-77.37770794786744, 34.63047970885049], [-77.377814563924, 34.630506648339015], [-77.3779756518326, 34.63050490309494], [-77.37810219045252, 34.63055132079432], [-77.37810683338127, 34.630557010095515], [-77.37820951974894, 34.63054721958006], [-77.37829561101786, 34.63053881666231], [-77.37830355823253, 34.630538232869306], [-77.37849649341997, 34.630382060512076], [-77.37855259115707, 34.630345918491166], [-77.37869573085474, 34.63026489898208], [-77.37892068045488, 34.62984001730148], [-77.37928526450038, 34.629332204907236], [-77.37928628607501, 34.62933180183999], [-77.37982975463443, 34.629515140608866], [-77.38007366671785, 34.62980071442682], [-77.38018483906359, 34.629930628555485], [-77.38028372320335, 34.630036132765824], [-77.38040671069253, 34.63037719708897], [-77.38059922074288, 34.63083980567115], [-77.38066177253964, 34.63104630899629], [-77.38073125987799, 34.63152933635276], [-77.38070879120014, 34.631673146372975], [-77.38076670564817, 34.631767149423936], [-77.38086163265898, 34.632299830437184], [-77.38089647930637, 34.63245767159254], [-77.38151195776047, 34.632257717857364], [-77.381650201116, 34.63215090656246], [-77.38219391874033, 34.63204464974237], [-77.38271120372976, 34.63194041083896], [-77.38322730544303, 34.631976219424395], [-77.38399861879208, 34.632029727417645], [-77.38480436841718, 34.63199614767285], [-77.38561522085217, 34.63179130004342], [-77.38790657280842, 34.632278341203865], [-77.38795848295317, 34.63211064976696], [-77.38905147012738, 34.62994935856579], [-77.38858492446731, 34.628839905054434], [-77.38891136248685, 34.62812016653091], [-77.38882299114924, 34.62795645769076], [-77.38882148124108, 34.627877052901695], [-77.38887139780189, 34.62710034519027], [-77.3889728991423, 34.62684316764888], [-77.38897149217945, 34.626661349877736], [-77.38907792632159, 34.62657705747057], [-77.3891276239982, 34.62622975257382], [-77.38912846442761, 34.626214155600465], [-77.38910651993659, 34.62617910849755], [-77.3889971496553, 34.62596453984487], [-77.38883752917621, 34.62583152491808], [-77.38874781657543, 34.62575676545741], [-77.3885502902716, 34.625872928403545], [-77.38848226332803, 34.626021354423145], [-77.38853851579533, 34.626299192572176], [-77.38853010483447, 34.62653475680712], [-77.38852531830551, 34.62672566254706], [-77.38852386187884, 34.626909416616044], [-77.38804995591217, 34.627120963900374], [-77.38795915082987, 34.62716334985236], [-77.38791136756218, 34.627187268050875], [-77.38737605818835, 34.627094697063384], [-77.38717067841688, 34.627069310505235], [-77.38666499440029, 34.6271137985792], [-77.38638218352693, 34.62712942009929], [-77.3860576754862, 34.62715642546828], [-77.38504990426676, 34.62738755993313], [-77.38480514304625, 34.627513376762074], [-77.38468444854094, 34.62757382422173], [-77.38409081338513, 34.62778933512833], [-77.38402820657723, 34.6278108587958], [-77.38401659674022, 34.62781533153055], [-77.38399506667929, 34.627826315994234], [-77.38342753822556, 34.628099742454154], [-77.38322801332203, 34.628279280707474], [-77.38285823151327, 34.62841788866304], [-77.38279237876307, 34.62844553087912], [-77.38261558218082, 34.62842647353602], [-77.38278680016698, 34.628351243128094], [-77.38274962954644, 34.62798259403916], [-77.38294114192725, 34.62764593343985], [-77.38322824088455, 34.62710161611265], [-77.38324481299088, 34.62706211340064], [-77.38327448474186, 34.627008056567654], [-77.38355072904406, 34.626516072876775], [-77.3838838967362, 34.62626410730518], [-77.38401690304232, 34.62615349404367], [-77.38404847124288, 34.6261311690244], [-77.38437616923079, 34.62604995352054], [-77.38471678409601, 34.625905408724485], [-77.38480542691096, 34.62589160913575], [-77.38488503918023, 34.62589088455043], [-77.38546573268614, 34.62575488152614], [-77.38559394207658, 34.62565049313561], [-77.38567600028323, 34.62543806692073], [-77.38576735086919, 34.62518700275728], [-77.38587097304973, 34.62498540118712], [-77.38606980954924, 34.624619911455184], [-77.38614377465524, 34.62452151894166], [-77.3863109456798, 34.62415008202431], [-77.38631855062135, 34.62407176328429], [-77.3862925899813, 34.62397848352846], [-77.3858866408578, 34.623284879223306], [-77.38597913849641, 34.62285720747428], [-77.3859774243327, 34.62283515497287], [-77.38598863805052, 34.622823521225115], [-77.38608224272679, 34.62240755669836], [-77.38611349293411, 34.622268684725555], [-77.38611283193303, 34.62219086503082], [-77.38614247957062, 34.622139872358396], [-77.38618587096887, 34.6220713798494], [-77.38628972054875, 34.62205352966371], [-77.38638299216353, 34.62199883483421], [-77.38653811575398, 34.62191728652643], [-77.3863830287411, 34.621769658116555], [-77.38625623722103, 34.621821369895834], [-77.38618591022731, 34.621828876571904], [-77.38600879278923, 34.62199357670669], [-77.38599643323207, 34.622003608546386], [-77.38598877155637, 34.622009058369116], [-77.38598035427749, 34.622006741045396], [-77.38563106985083, 34.62208735808261], [-77.3855945346771, 34.622114673143095], [-77.38529242254086, 34.622196033968294], [-77.38520030293364, 34.622184500966924], [-77.3850809195016, 34.62225586198231], [-77.38480602546686, 34.6225068573807], [-77.38475614433494, 34.62254496020937], [-77.38458420007677, 34.622623452955], [-77.38441175784732, 34.62275855844654], [-77.38434130830265, 34.622734333045294], [-77.38414359101922, 34.62282272048753], [-77.38401751195079, 34.62288126159711], [-77.38388946565274, 34.62293585335971], [-77.38383925580474, 34.62296341251698], [-77.3838203775119, 34.62300083129115], [-77.38369028768881, 34.62317683838847], [-77.38367999350507, 34.62323946489556], [-77.38362318989115, 34.6233948519181], [-77.38355355520021, 34.62362110673874], [-77.38352130562342, 34.62394070659728], [-77.38322881685853, 34.624144551923834], [-77.38301412149309, 34.62393009981254], [-77.38256747842624, 34.62390004714893], [-77.38244041566696, 34.62386054626617], [-77.38237555928492, 34.62386069982249], [-77.3821202334892, 34.62390739775985], [-77.38204617323413, 34.623926802470336], [-77.38177081194453, 34.62400602276692], [-77.38165190947524, 34.62408921953703], [-77.38146565442766, 34.62412253749065], [-77.38125768704016, 34.62405578085561], [-77.3811682160304, 34.62396481549424], [-77.38101630085852, 34.62382215502023], [-77.38086354137573, 34.62368150996946], [-77.38081986327848, 34.62363749268929], [-77.38072782278654, 34.623603704048165], [-77.38056506758944, 34.62352406940046], [-77.38037823886437, 34.62355595712562], [-77.38024929378798, 34.6236726488469], [-77.38014078079702, 34.623759052807586], [-77.38007499637, 34.6240619869014], [-77.38006112871172, 34.62410939876903], [-77.38005909248587, 34.62412461490526], [-77.38005279968972, 34.62414940388445], [-77.37986322025279, 34.624774069955535], [-77.37951888506375, 34.62480115002362], [-77.37928635825472, 34.624795419214195], [-77.37892230183702, 34.624745436963345], [-77.37889213642451, 34.624748025817354], [-77.37887480297063, 34.62473846392358], [-77.37879368587424, 34.62473148020531], [-77.37849791227548, 34.62471135950855], [-77.37825553126507, 34.624809005942], [-77.37813276734298, 34.624858057564246], [-77.37810363143865, 34.624896380514606], [-77.37800689189768, 34.62494899015303], [-77.37770932699327, 34.62516491782472], [-77.3776193625726, 34.625228342764494], [-77.37745727962373, 34.62534855783723], [-77.37737256978085, 34.62542273371106], [-77.37731500278025, 34.625497942185724], [-77.37716989752471, 34.625658295190064], [-77.37692069114757, 34.62577285735546], [-77.3768040750031, 34.62586721052524], [-77.37664043630161, 34.626013603050296], [-77.37652636525037, 34.626090088058234], [-77.37647673924634, 34.62612664097149], [-77.37640972575214, 34.62622300329181], [-77.37625139783634, 34.62637137915082], [-77.37622353231146, 34.62647394496024], [-77.37613197373251, 34.62663165457172], [-77.37579812628972, 34.626796136509185], [-77.37573085650413, 34.62686358403269], [-77.37534330836905, 34.62725393190677], [-77.37529286251447, 34.627304251576966], [-77.37521499867293, 34.62736977530139], [-77.37505937407389, 34.6275110638853], [-77.37494894986524, 34.62763813686852], [-77.3748356014948, 34.627726942836965], [-77.37455453321495, 34.62820594145399], [-77.37450377985799, 34.62826669209937], [-77.37450146031296, 34.62832166194046], [-77.37451309961585, 34.62836455359909], [-77.37455439758718, 34.62866263935719], [-77.37456381206968, 34.62872708329554], [-77.37456689364078, 34.62873679830797], [-77.37464082966622, 34.628819276095804], [-77.37474248888445, 34.62893343266516], [-77.3749148765947, 34.62911124130693], [-77.37494850968366, 34.62914439667091], [-77.37514490390224, 34.62929113600271], [-77.37514559440424, 34.629292148118914], [-77.37514902391824, 34.6292934922638], [-77.37515247612876, 34.62928189400134], [-77.37514670517369, 34.62907785240111], [-77.37528375747142, 34.6289945239924], [-77.3753428351088, 34.62889885600422], [-77.37558251838155, 34.628423925020954], [-77.3758964359561, 34.62837387116239]], [[-77.45409184272623, 34.50412697035499], [-77.45393678535413, 34.505438242914316], [-77.45392745939749, 34.50551708706319], [-77.45399838269496, 34.506824297257154], [-77.4548913694912, 34.508145098057696], [-77.45510468852014, 34.50823158102486], [-77.45764907974358, 34.5089305481716], [-77.4587851063763, 34.50924260033155], [-77.46047715250886, 34.50942157932146], [-77.46176978588728, 34.509242881239665], [-77.46177442421484, 34.50924016034571], [-77.46200451551626, 34.50858198010593], [-77.4621279847645, 34.50822879905499], [-77.46228377461537, 34.50741476162521], [-77.46228664680446, 34.507245274151096], [-77.46225243700464, 34.50710120170808], [-77.46199954531028, 34.50599742442578], [-77.46197046120186, 34.5058781998935], [-77.46194283264799, 34.50576279271701], [-77.46188966997885, 34.50553634305446], [-77.46206876832409, 34.50539219156244], [-77.4622403855056, 34.505313287792035], [-77.46233507767246, 34.50522119333928], [-77.46278813171973, 34.50498529486386], [-77.46324654053592, 34.50459193335149], [-77.46371540272392, 34.50424761396383], [-77.46423368581408, 34.50345922476451], [-77.46433738623965, 34.50336166811952], [-77.46440141993979, 34.50329951920332], [-77.46431199068184, 34.503223345152406], [-77.4644510065561, 34.50262652405753], [-77.46448706377383, 34.502348938658216], [-77.4644973832938, 34.502251348374145], [-77.46450243181775, 34.501953621430594], [-77.4645040999379, 34.50155710595839], [-77.46446257437728, 34.501276087177985], [-77.46439270333732, 34.50101247859691], [-77.46442069547741, 34.500817760209166], [-77.46440597680919, 34.50059770456658], [-77.46409941428931, 34.500276015600626], [-77.46405809963626, 34.500224299270776], [-77.46392588321926, 34.500191731825566], [-77.46333265134434, 34.5001650946847], [-77.46273058692812, 34.50020518470088], [-77.46200486945138, 34.50023444853534], [-77.4609093646692, 34.50042022075378], [-77.4607604335427, 34.500436290342414], [-77.46071728252417, 34.5004507745286], [-77.45900166862414, 34.50077003475783], [-77.45838556932553, 34.50164308711972], [-77.45837382159041, 34.5016531445336], [-77.45835913638378, 34.501677116395996], [-77.45652270616682, 34.50194201368994], [-77.45582454421576, 34.50225835183089], [-77.45438890777898, 34.503281653031316]], [[-77.3392807039575, 34.636628629895554], [-77.33931527101572, 34.63673073638941], [-77.33946136397965, 34.637025830120265], [-77.33955270494543, 34.63711801279386], [-77.33962068954605, 34.63701590711931], [-77.33992730940554, 34.63699383076158], [-77.33998894517786, 34.63695341584936], [-77.33992650844348, 34.636634190254966], [-77.34038187079388, 34.636624394722574], [-77.34047682819138, 34.63654235363679], [-77.3405170635366, 34.636518332000975], [-77.34062568799132, 34.636486623752845], [-77.34067974155619, 34.63643659832174], [-77.3407246481029, 34.636378524786366], [-77.34074739173697, 34.63629574366172], [-77.34084470336447, 34.636202955938906], [-77.34082597952465, 34.63613951069175], [-77.34079424194596, 34.635998883937525], [-77.34075119377542, 34.63589313783442], [-77.34064863903774, 34.6355968728528], [-77.34048772054541, 34.63526671329213], [-77.34019729803802, 34.63515113319937], [-77.3398858083422, 34.63485758785761], [-77.3396351508388, 34.634658623615294], [-77.3394032628584, 34.63438554065473], [-77.3388991280397, 34.634340376181356], [-77.3387434866695, 34.63428816367036], [-77.33859930129202, 34.63441343026836], [-77.33756595872192, 34.634430064880966], [-77.3375824762035, 34.634882585181934], [-77.33769149082168, 34.63588183502875], [-77.33714636009009, 34.63589860479092], [-77.33710993506807, 34.63600608413759], [-77.33695151961152, 34.63610430543025], [-77.33690127586189, 34.63627209422748], [-77.33683665086072, 34.636181189119334], [-77.33669741446171, 34.636288170846946], [-77.33665233633572, 34.636356361078505], [-77.3366427921469, 34.63640398757941], [-77.33668641016483, 34.63647863293055], [-77.33678810850978, 34.63654872637584], [-77.33679818495646, 34.636555671344176], [-77.33693446520769, 34.63656153932086], [-77.33696269894841, 34.636577857743035], [-77.33704862255371, 34.6366161136296], [-77.33724062547503, 34.63636785050454], [-77.3375092864808, 34.63657151949978], [-77.3376018796324, 34.636572641374904], [-77.33772704518526, 34.63658230988847], [-77.3378620913241, 34.63627446232029], [-77.33811693290652, 34.63627908732746], [-77.33853504081006, 34.636437339250556], [-77.33881683414899, 34.63627883840835], [-77.33888624993104, 34.63633015324761], [-77.33921243174197, 34.636622308508564], [-77.33923065757585, 34.636607568461805]], [[-77.39041264536579, 34.71029389534152], [-77.39048063763136, 34.71026796491529], [-77.390732744547, 34.7100810821904], [-77.39037687540876, 34.71022062811393], [-77.39036475379517, 34.7102155489965], [-77.39023617880075, 34.71018240549737], [-77.39014238456156, 34.71032716954827], [-77.39034890998362, 34.710317089667555]], [[-77.40667480669813, 34.6700859820546], [-77.4069529314143, 34.67028910028992], [-77.40704448167537, 34.67039148610729], [-77.4071237167874, 34.67028546752277], [-77.40715241348433, 34.67025315981906], [-77.4074939481437, 34.67014301064082], [-77.40757068692774, 34.67003137541183], [-77.4075433758014, 34.669830876665266], [-77.40766371751909, 34.669672572880486], [-77.40786416953668, 34.66938403363995], [-77.40792687947453, 34.669354943053314], [-77.40810439551579, 34.668916031856945], [-77.4081071829851, 34.668909966235105], [-77.40809565434527, 34.66888288546413], [-77.4080354114005, 34.66849847331525], [-77.4078673042244, 34.6685092728474], [-77.40777759043625, 34.668515036018405], [-77.4076472961921, 34.66852340610112], [-77.4075842709642, 34.66852745475158], [-77.4074272882986, 34.66853753890077], [-77.40710275134722, 34.66855838550572], [-77.40699971517222, 34.668586163081144], [-77.40690976487699, 34.6686441453061], [-77.40676280213088, 34.66858307358306], [-77.406317873777, 34.668475543211265], [-77.40585247608678, 34.66820547329393], [-77.40522282763146, 34.66845945491425], [-77.40511352340498, 34.66927113108018], [-77.40598578967331, 34.669622262014414], [-77.40617751067595, 34.6697199248456]], [[-77.39347881374023, 34.62343456911019], [-77.39277876808065, 34.623140502058156], [-77.39272321477202, 34.6231131616266], [-77.3926903987586, 34.62302670752727], [-77.39233393968553, 34.62273942419007], [-77.39227282743862, 34.6227637077844], [-77.39216317048565, 34.62280468879789], [-77.39190196175753, 34.62293798599932], [-77.39182988517017, 34.62293036586061], [-77.39161964554224, 34.62300357819343], [-77.39150772131958, 34.6231247714077], [-77.39129218536576, 34.62335482977352], [-77.39150768357433, 34.62351395529583], [-77.39167272431328, 34.62354678839443], [-77.39190188568304, 34.62376340171032], [-77.39248820457239, 34.62340011781476], [-77.3924054770239, 34.62404346143751], [-77.39269029490265, 34.62428529613584], [-77.3927896456348, 34.624730175935866], [-77.3928894084334, 34.62482282812757], [-77.39347868040394, 34.62527203802268], [-77.3937089008825, 34.625305871636144], [-77.39415777351309, 34.62537130656357], [-77.39426713858093, 34.62539411470317], [-77.39447395009047, 34.62544349904344], [-77.39479693394605, 34.62567548631874], [-77.39505557106831, 34.626044091145786], [-77.39516050663612, 34.62619364246911], [-77.395313335677, 34.626743108670425], [-77.39584399162263, 34.627271769729774], [-77.39697422866712, 34.62714927184045], [-77.39621692314276, 34.62604130343541], [-77.39615139483357, 34.625719764637346], [-77.3962318624643, 34.62519000760351], [-77.39589063361356, 34.62444017348775], [-77.39586923811734, 34.624393158474085], [-77.39586160088798, 34.62437542929367], [-77.3958441178502, 34.62433826635793], [-77.39562028683065, 34.62382100054435], [-77.39553412363672, 34.623592341297716], [-77.39544993200451, 34.62347860975569], [-77.39534121230075, 34.623312686530234], [-77.39519594924626, 34.623216535941424], [-77.39505572575774, 34.62314924366993], [-77.39474644901199, 34.623189865493174], [-77.39457265033165, 34.623210725858975], [-77.39426726808901, 34.623341799843345], [-77.39382148529947, 34.623470242727066]], [[-77.39892441945005, 34.52705992713127], [-77.39793831624553, 34.52656077271355], [-77.3977119874761, 34.526046737986675], [-77.39760924886085, 34.52591319218623], [-77.39690976221837, 34.52568862989239], [-77.39650338184185, 34.52558314123595], [-77.39639112092603, 34.52554592104302], [-77.39616159938974, 34.525289566113585], [-77.39549469452717, 34.52523905182542], [-77.39498849231101, 34.52442139101787], [-77.39494808682213, 34.52433860233356], [-77.3949623981388, 34.52426636673847], [-77.39485136150677, 34.52420183896797], [-77.39476940689211, 34.52431485008875], [-77.3946948157452, 34.52437515431294], [-77.39325222662517, 34.52549968255245], [-77.39321151634115, 34.525543776160376], [-77.39320149512525, 34.525569998323654], [-77.3932060335723, 34.52559679572165], [-77.39305247618663, 34.52645970724196], [-77.39297026424613, 34.52658270197285], [-77.39253938468333, 34.5270675391199], [-77.39254420407026, 34.52720580673443], [-77.39257956016549, 34.527618416349824], [-77.39300584674075, 34.52768000041655], [-77.3927504775908, 34.52829939436705], [-77.39191862188952, 34.52869312304547], [-77.3917783520384, 34.52881992609584], [-77.39160526132054, 34.528920053333955], [-77.39139235456823, 34.52890211199506], [-77.39002656840222, 34.52930435407658], [-77.38932320819578, 34.5296125257646], [-77.38902796234314, 34.52972713059793], [-77.38845218106319, 34.52949699141788], [-77.38812922027759, 34.53002514917392], [-77.38759812993878, 34.530295779761644], [-77.38710884587633, 34.53052220462491], [-77.38685642593056, 34.530636093104405], [-77.38639124940448, 34.53095953543941], [-77.38684671157219, 34.53106656274073], [-77.38722677734197, 34.531091266585555], [-77.3882232747406, 34.53106419459075], [-77.38841743020245, 34.5310381725674], [-77.38866230493227, 34.53096981915099], [-77.38973834523081, 34.5309663629918], [-77.38994981888088, 34.53096045443982], [-77.38998961939163, 34.53094438716224], [-77.39000736664653, 34.53093854007218], [-77.3900570517799, 34.53092038408857], [-77.3907836988665, 34.53054283826259], [-77.39107665295202, 34.53046525362815], [-77.39154355675016, 34.5302162453748], [-77.3915764342377, 34.530200646071094], [-77.39209583197673, 34.52996759680323], [-77.392367586732, 34.529928496856854], [-77.39244064094994, 34.53003967646001], [-77.39246892687031, 34.53008272365639], [-77.39314210363362, 34.53039572971159], [-77.39321602227257, 34.53041816654588], [-77.39365748485798, 34.5304008845541], [-77.39385600377345, 34.530416316778364], [-77.39392703977933, 34.53039989490889], [-77.39433869727804, 34.53030258116161], [-77.39466611727242, 34.53022420556444], [-77.39471639819132, 34.53020726359466], [-77.39482756534179, 34.53016330660337], [-77.39520755587995, 34.52999085664959], [-77.39544681418933, 34.52969424768134], [-77.39547858757675, 34.529648409287184], [-77.39547831978942, 34.52962588911668], [-77.39595624990257, 34.529089800132425], [-77.39609156220052, 34.52893082697582], [-77.39632301630259, 34.52857888736096], [-77.39696560695172, 34.52854378066109], [-77.3971743052312, 34.528464064035624], [-77.39789797540769, 34.528358815425335], [-77.3980596270882, 34.52829654201564], [-77.39823979689295, 34.527988908452414], [-77.39859128417643, 34.527730125584]], [[-77.36352619540766, 34.551336216796344], [-77.36322497920054, 34.5513305993459], [-77.36315986913816, 34.55144589275319], [-77.36313890802884, 34.551644536987816], [-77.36310435117872, 34.55176770664318], [-77.36356064530158, 34.551877822545116], [-77.36355795407663, 34.55190719278626], [-77.36360268719986, 34.5519836579105], [-77.36365346109228, 34.55189485090307], [-77.3636384840906, 34.55186661200581], [-77.36363482290797, 34.55184901790881], [-77.36367382025975, 34.55161669763472], [-77.36366893327082, 34.551405654430475], [-77.36368941668904, 34.5513696260803], [-77.36362456870421, 34.55102545653891]], [[-77.35592531782495, 34.550683211661806], [-77.35595840460793, 34.55064665139584], [-77.35596638266624, 34.550638675431756], [-77.35597760539177, 34.55062674194596], [-77.35609210302046, 34.55050499263898], [-77.35609891622687, 34.55045478689007], [-77.35616220336419, 34.5502625869701], [-77.35615876114223, 34.55025057354027], [-77.35616314620465, 34.55023766493347], [-77.35618310130936, 34.550226055183145], [-77.35655653798865, 34.549948485032644], [-77.35657115832927, 34.549939439672464], [-77.35658247447417, 34.54993133573361], [-77.35664704845018, 34.549895697615035], [-77.35680467870644, 34.54980468741205], [-77.35697984463052, 34.549723896836205], [-77.35707876734637, 34.54968967366588], [-77.35736672853149, 34.54958701917419], [-77.35737329970694, 34.54958460670263], [-77.35737566919627, 34.54958382727445], [-77.35738096273138, 34.549581699338596], [-77.35757434423897, 34.5494804744812], [-77.35761676102567, 34.54945469087665], [-77.35767090779915, 34.549420813456436], [-77.35767261311196, 34.5494197727468], [-77.35767392665127, 34.549418099561784], [-77.35770634239077, 34.549374090798096], [-77.35777511381147, 34.54928566289706], [-77.35777639266212, 34.54928398796081], [-77.35777704403195, 34.54928312064389], [-77.35777933327992, 34.54928023738651], [-77.35788678114343, 34.54914490921733], [-77.35791861526772, 34.549104814838415], [-77.35797729409367, 34.54902921986425], [-77.3579941459065, 34.549007039288426], [-77.3580512468192, 34.54892097533737], [-77.35817991091992, 34.54875366236973], [-77.35819166555129, 34.548740924903], [-77.35819911348156, 34.54873270451177], [-77.35822167378049, 34.54870412131018], [-77.358256090109, 34.54866329505093], [-77.35825692719956, 34.54864849242769], [-77.35827456579142, 34.54859942896428], [-77.3582757662326, 34.54853347318823], [-77.35828482328571, 34.54847554020462], [-77.35838028478874, 34.54834271494329], [-77.3583803715492, 34.54833599819175], [-77.35838586653945, 34.54833224903677], [-77.35842766400323, 34.54821015007593], [-77.35843559650328, 34.54818016887231], [-77.35844670334347, 34.548146202830395], [-77.35844715421251, 34.54812012078092], [-77.35844882383999, 34.54808469158473], [-77.35844540013817, 34.548052061396376], [-77.35829920045737, 34.54798382300752], [-77.35838386033986, 34.54785725571263], [-77.35834667289444, 34.547822861314565], [-77.35829196579706, 34.54774004119281], [-77.35824811911732, 34.54771860297151], [-77.35825274532618, 34.54752879013494], [-77.35823724308538, 34.54750309677504], [-77.35822979663047, 34.54749109243128], [-77.35821017815334, 34.54743208973367], [-77.35814892523497, 34.54739340126297], [-77.35814643786702, 34.54735288042596], [-77.35811792316359, 34.547334377996876], [-77.35810565287508, 34.54733303625485], [-77.3580151492501, 34.547376500557064], [-77.35784884284433, 34.54731419577966], [-77.35782768446431, 34.54731264351838], [-77.35782032234928, 34.547312103403435], [-77.35780510289227, 34.547310986818424], [-77.3576240858127, 34.54730924866007], [-77.35753691396336, 34.54729131088646], [-77.3574990427181, 34.54728625554209], [-77.3574285015642, 34.54727792404018], [-77.35734929980666, 34.547324913128975], [-77.35735007618962, 34.54733795979471], [-77.35734411372849, 34.5473868655871], [-77.35734605031612, 34.54743574735189], [-77.35742276173443, 34.54752844088118], [-77.35749652262054, 34.54756325190927], [-77.35761062186596, 34.54759331782657], [-77.35752857284956, 34.5477803724672], [-77.35773686513184, 34.54781996446732], [-77.3574784867752, 34.547897183266954], [-77.35741451480388, 34.54788838167565], [-77.35738139410813, 34.54789175010034], [-77.35713087513771, 34.547976421120175], [-77.35705557232912, 34.548138313712315], [-77.35703421295743, 34.54816595295084], [-77.3570322970804, 34.54817682917553], [-77.35701503425472, 34.54818833217443], [-77.35684681333244, 34.54833495223494], [-77.3568150558173, 34.54834865134813], [-77.35665825662929, 34.54846490262592], [-77.35663724842631, 34.54848135837548], [-77.3566154568649, 34.548492380587014], [-77.35653170507729, 34.54853474224156], [-77.35638814954469, 34.548608528587145], [-77.35621812171456, 34.548698496391665], [-77.35614749212726, 34.54873980594727], [-77.35609940947892, 34.54879018048966], [-77.35597624865244, 34.54890485820941], [-77.35581701129671, 34.54906916277355], [-77.3558128049777, 34.54907370565803], [-77.35580796944485, 34.549076959765614], [-77.3554195175258, 34.54928198352671], [-77.35529230970643, 34.549317196420176], [-77.35522188012158, 34.549339989787875], [-77.35511866502375, 34.54936263953586], [-77.35502472649813, 34.54937689401007], [-77.35494675217484, 34.54939743177798], [-77.35483050508938, 34.549462494379384], [-77.35476229551355, 34.54955605495408], [-77.35462697902149, 34.54960061305302], [-77.3546008209651, 34.54960167282312], [-77.35450718219795, 34.54958397651533], [-77.35443177091078, 34.54955269252506], [-77.35437295441574, 34.54952835889296], [-77.35429343345861, 34.54950434912415], [-77.35423690733299, 34.54948976790187], [-77.3540600291571, 34.54943959443353], [-77.35384681417088, 34.549379899174944], [-77.35371232238086, 34.549378631352155], [-77.35350394894027, 34.549377635164255], [-77.35345440624488, 34.54937089407076], [-77.35338223171591, 34.549381288028755], [-77.35302342200558, 34.54947779086849], [-77.3527199741801, 34.54955579198834], [-77.35266459819289, 34.54957023520686], [-77.35257629371256, 34.54959683122773], [-77.35226917885433, 34.549692269347446], [-77.35213260395349, 34.54976673460948], [-77.35196050838817, 34.549875600355286], [-77.35190892817288, 34.54990627256757], [-77.35187104694151, 34.54993230300161], [-77.35167969761845, 34.55004310726427], [-77.35147307097311, 34.55016544878216], [-77.3514463743068, 34.55017795081165], [-77.35138063075273, 34.55020388048179], [-77.35122659151185, 34.550319383047054], [-77.35124950681218, 34.55035937824719], [-77.35131374817493, 34.55045832771677], [-77.35134965355142, 34.550524965701804], [-77.35146172433765, 34.55065916652988], [-77.3514726251034, 34.550673283950815], [-77.3514780984511, 34.550679495762466], [-77.35152484229302, 34.55087513708025], [-77.35158727485772, 34.550991656384205], [-77.35161070071067, 34.551150054190096], [-77.35161205259219, 34.55125209414918], [-77.35162701324707, 34.551280557093], [-77.35172267005895, 34.55137876078358], [-77.3517056916966, 34.551546039315056], [-77.35174323749477, 34.551620622217946], [-77.35174769172102, 34.55167197414609], [-77.35174268612998, 34.55174311242061], [-77.3517925499221, 34.55183668486558], [-77.35180328308243, 34.55185680189568], [-77.3518262862468, 34.55188034738707], [-77.3519548026416, 34.55199799458386], [-77.352032040431, 34.552068699647975], [-77.35210804734186, 34.55212340861246], [-77.35219296362293, 34.55216794965348], [-77.35221208578672, 34.55217754412875], [-77.35230606702441, 34.55221494448513], [-77.35244439381938, 34.55225417270502], [-77.35260162810067, 34.55231189988372], [-77.35276357039719, 34.55235151007304], [-77.35279699764435, 34.55235304051057], [-77.35282998515564, 34.552341489428485], [-77.3529947842805, 34.552288927769624], [-77.35313307353215, 34.5522405877207], [-77.35339118207166, 34.55212474555005], [-77.35341492680882, 34.55211448163541], [-77.35362479272777, 34.55198309153729], [-77.35378844727747, 34.55192270177942], [-77.35405322037084, 34.55177778369605], [-77.35414419982675, 34.55173906736524], [-77.35418586712163, 34.55171383246295], [-77.35455295426996, 34.55146102740142], [-77.35457024685667, 34.55144961644362], [-77.35458471869647, 34.55144247276918], [-77.35464711734434, 34.55140904202149], [-77.35498233968488, 34.55122464251269], [-77.35505380172867, 34.55118814682885], [-77.35530363839136, 34.55110814351536], [-77.35535649980143, 34.55108705365746], [-77.35537841518926, 34.55107410435144], [-77.35559361492216, 34.550954049838175], [-77.35577623076645, 34.5508476144586], [-77.35580866231233, 34.550810309186375], [-77.35582897865572, 34.55078769481123]], [[-77.3372694738397, 34.6878888090312], [-77.33726410283303, 34.68788680758874], [-77.33726106508817, 34.687885687722435], [-77.33723130293687, 34.68786489361298], [-77.33723255679901, 34.68789387299889], [-77.33724805927365, 34.68789915098872], [-77.33591759189956, 34.690023736648115], [-77.33607042456373, 34.690381737809744], [-77.33634739036674, 34.691030483834474], [-77.3380960496217, 34.690399841886375], [-77.33668299262246, 34.691868246178245], [-77.33708154952684, 34.69275695451382], [-77.33708403082137, 34.6927879891753], [-77.33705549414798, 34.692816041543665], [-77.33701004832484, 34.69287041637323], [-77.33668909662896, 34.693329535200846], [-77.33681016809918, 34.693359880570256], [-77.33685913445805, 34.69338983666994], [-77.33707285466605, 34.69352058359266], [-77.33709874840378, 34.69353200662832], [-77.33719823148057, 34.6935809925643], [-77.3373881898253, 34.69362929282486], [-77.33741292861473, 34.693684437542906], [-77.33746202929363, 34.693710887456604], [-77.33766901022165, 34.693881564997525], [-77.33786848524073, 34.69403658395771], [-77.33845727417979, 34.69406340684193], [-77.33846459787179, 34.69406553182446], [-77.33903372934071, 34.694146780865715], [-77.33928799344824, 34.694212580595135], [-77.33933574383298, 34.69419960874827], [-77.33934577696422, 34.69416812394675], [-77.33944422627066, 34.69392634524545], [-77.33947730947281, 34.69368677046918], [-77.33947889781076, 34.69367155507405], [-77.33952219185502, 34.69342827341676], [-77.3396135587451, 34.693173798436064], [-77.33966324722496, 34.6929215464614], [-77.33977558347652, 34.69267452394614], [-77.34007172492457, 34.69237812920284], [-77.34035708623507, 34.691913423687396], [-77.34071264491666, 34.691539863189504], [-77.34094270109155, 34.69128388093995], [-77.3409264561298, 34.69114157128207], [-77.34113824029647, 34.69102363012914], [-77.34138785261068, 34.690735426936506], [-77.34160545914112, 34.690466937871825], [-77.34197501054247, 34.690203700082876], [-77.34203807142177, 34.69015883299501], [-77.34240393964909, 34.68989824933007], [-77.34258631310867, 34.68983991646882], [-77.34274898982103, 34.689578874610994], [-77.34223208391538, 34.68974586660952], [-77.34205210044854, 34.68993830222831], [-77.34181753635562, 34.69018909314991], [-77.34157933400344, 34.6904437728071], [-77.34130925302782, 34.69043490893329], [-77.34120372427115, 34.690373708801204], [-77.3410732413337, 34.69029121641703], [-77.34097184908467, 34.68976380485731], [-77.34030080719964, 34.68942243892577], [-77.3395334532187, 34.68929392917483], [-77.33925963399217, 34.689248070434914]], [[-77.3969906471346, 34.71818393059529], [-77.3969986681523, 34.718339332090565], [-77.39720780508554, 34.71877277761286], [-77.39741072288692, 34.718901452515155], [-77.3974728918825, 34.71891512520329], [-77.39750362011993, 34.71889900316246], [-77.39761025496448, 34.71891358886053], [-77.39794768810883, 34.71887694454182], [-77.39810389940627, 34.71895000164756], [-77.39820552246563, 34.71884228947893], [-77.3982707908684, 34.71865705757463], [-77.39829933883033, 34.718595542280184], [-77.39838299280773, 34.71849612961105], [-77.39843478079337, 34.7183633593349], [-77.39852601562288, 34.71832616457025], [-77.39860853916237, 34.718178939882335], [-77.3986224441891, 34.71814944756106], [-77.39863431517819, 34.718129134712505], [-77.39864776416265, 34.71805100636568], [-77.39863107350114, 34.71801268133218], [-77.39859639999156, 34.717960838830294], [-77.39848671971323, 34.71782238958865], [-77.39844656970101, 34.717767693954926], [-77.39825247143747, 34.71765789672696], [-77.39808286730172, 34.71740151714612], [-77.39800733054061, 34.71731377117949], [-77.3979677988826, 34.717207594931324], [-77.3978048099051, 34.716951877916124], [-77.39762311414943, 34.716681510577395], [-77.39767725632416, 34.71655873195631], [-77.39765400712226, 34.7164127477629], [-77.39773004715992, 34.7163135632874], [-77.39761963187762, 34.7161969038051], [-77.3975785919306, 34.71615354283279], [-77.39748899717098, 34.71607543877276], [-77.397222111659, 34.71585583478635], [-77.39711144246661, 34.71573835259842], [-77.39695820872433, 34.71551953192102], [-77.39695596308289, 34.71532978316364], [-77.39683690218311, 34.71512378373092], [-77.3966953636843, 34.714962024559405], [-77.39634699237988, 34.71488170041977], [-77.39616087352903, 34.714594253833795], [-77.39568298487933, 34.7144246670507], [-77.39551847239005, 34.714598787171624], [-77.39507175313179, 34.71452068282377], [-77.39426824605842, 34.71448856452342], [-77.39378987201235, 34.714321588277954], [-77.39339514776395, 34.7152195962546], [-77.39350361258924, 34.71579918276605], [-77.39374352491431, 34.71596700372238], [-77.39351250468893, 34.71636145122558], [-77.39365845930796, 34.71659215833851], [-77.39406909721774, 34.71672391578183], [-77.39437160590366, 34.716769826558405], [-77.39488736247998, 34.7167760528339], [-77.39534559945386, 34.71686619075621], [-77.39562144658052, 34.716969435566014], [-77.39605274593893, 34.71717909546044], [-77.39676436703816, 34.71738561848825], [-77.39692866675068, 34.71811596396403]], [[-77.3886080664889, 34.54742870776259], [-77.38825272337769, 34.54733964351216], [-77.3881154839217, 34.54731882407291], [-77.38805102761384, 34.547289089882966], [-77.38784922472618, 34.547153010038194], [-77.38776857931563, 34.54709862917222], [-77.38766509428173, 34.54699363748661], [-77.3876146047591, 34.54694201756358], [-77.38751252050785, 34.54680964532927], [-77.38728335213611, 34.54651248063933], [-77.38727574468956, 34.54650606139096], [-77.38727021539485, 34.54650202437749], [-77.38695128770564, 34.54633848873169], [-77.38728594599002, 34.54639747778562], [-77.38772177687963, 34.546168318052324], [-77.38808217349516, 34.54590760571288], [-77.38841934436417, 34.54633627964647], [-77.38856746831647, 34.546493694390726], [-77.38873454885484, 34.54670892215224], [-77.3887845052354, 34.54677327459314], [-77.38880354884354, 34.54679780604496], [-77.38884605624312, 34.54685256235789], [-77.3890396300306, 34.54710191670266], [-77.38935385727873, 34.547506684098494]], [[-77.39167442512218, 34.71459017320992], [-77.39213724490341, 34.714611858583076], [-77.39221900137858, 34.71392462585863], [-77.39162380245793, 34.71377198570265], [-77.39090150183843, 34.71377024288402], [-77.39063894709682, 34.71373920413503], [-77.389928995117, 34.71399322810523], [-77.38992400509608, 34.71399393172868], [-77.38965021955607, 34.714450653066514], [-77.38954689837736, 34.71486502452031], [-77.38949601382829, 34.71505964875334], [-77.38997855856333, 34.71557114903275], [-77.39009449393006, 34.715617132150626], [-77.39046869892275, 34.715296265442184], [-77.39061230529961, 34.715111004772645], [-77.39131342422604, 34.71503272705462]], [[-77.42522619978035, 34.73185186866476], [-77.42513381221916, 34.73187735114065], [-77.42512311482818, 34.73188174058683], [-77.42511781209905, 34.73188810658346], [-77.42509447730859, 34.73190681090841], [-77.42482006117466, 34.73213441571615], [-77.42443455523603, 34.7322083399416], [-77.42441297529085, 34.732217100046334], [-77.4243937657114, 34.73221886805065], [-77.42433736320226, 34.73222260315852], [-77.42392045169825, 34.7321601727067], [-77.42378177666833, 34.732118088852616], [-77.42362893736492, 34.732071706021955], [-77.42338983516218, 34.73204099534217], [-77.42334471521544, 34.73219025142552], [-77.42324127186463, 34.7323502837723], [-77.42321790413018, 34.73250794392026], [-77.42313852569734, 34.73272262391967], [-77.42312663992716, 34.73286928574528], [-77.42310964829912, 34.733078946286795], [-77.42305662299137, 34.73320315799835], [-77.42305559218735, 34.73340352323172], [-77.42330067454458, 34.733779639869425], [-77.42372799876327, 34.733638570795975], [-77.42388051876222, 34.73359070153592], [-77.42400595472435, 34.73355826481459], [-77.42426737774166, 34.73347495574137], [-77.42458679208222, 34.73337969500183], [-77.42465838170678, 34.7333659836687], [-77.42470653651033, 34.733353099606965], [-77.42519376957642, 34.73303279399041], [-77.42532633696607, 34.73296167936434], [-77.4254830008301, 34.73288582532288], [-77.42550172144877, 34.73287432337299], [-77.42552607225998, 34.73286941534232], [-77.42570378094328, 34.73283055360412], [-77.42608935642497, 34.732786773134585], [-77.42612938210726, 34.7327781165226], [-77.42615592862359, 34.732776136025755], [-77.42636522668926, 34.73271590750347], [-77.4264998215578, 34.73269562681966], [-77.42653058370817, 34.73268581099465], [-77.42655357085106, 34.73266950074637], [-77.42655282934474, 34.73263765568743], [-77.42667985545296, 34.73243410897835], [-77.42667721062149, 34.732177542882575], [-77.42667896523623, 34.732154265973], [-77.42667681898163, 34.73213955623368], [-77.42666850246943, 34.732112983424216], [-77.42660300977954, 34.73184818427511], [-77.42655759593214, 34.73174290525208], [-77.42647680075304, 34.73166781721404], [-77.42637161647245, 34.73167820997057], [-77.42606749073835, 34.73166099771539], [-77.42588881840499, 34.73163717871591], [-77.42584195715155, 34.73164599723926], [-77.42552655480026, 34.731751448969696], [-77.42550586922624, 34.731759300161784]], [[-77.43478540612827, 34.698928881518924], [-77.43543169800718, 34.6986245577044], [-77.43557894122765, 34.69851715674165], [-77.43593331460063, 34.698212109023146], [-77.43605209208698, 34.697426882780604], [-77.4361162192743, 34.69715795906889], [-77.4361578809673, 34.69682041318907], [-77.43604073417183, 34.69564603207598], [-77.43629035048167, 34.694982647935845], [-77.43644447028181, 34.694297847610656], [-77.43657420705554, 34.693963796524876], [-77.4365935794317, 34.69362969145628], [-77.43633626314147, 34.693321558632114], [-77.43638782624615, 34.69326917376005], [-77.43630008206969, 34.69329346967943], [-77.43625977339877, 34.69329481538728], [-77.43589553041357, 34.69340064480923], [-77.43517766005621, 34.69332788402708], [-77.43499744043866, 34.69336585410081], [-77.43497154726043, 34.6933859303746], [-77.4349568204785, 34.69339830272609], [-77.43485733510578, 34.69346158100834], [-77.43447854123053, 34.69379012620683], [-77.4343234781654, 34.693822195148826], [-77.4341622851442, 34.69403747040852], [-77.43404432183233, 34.694197355601176], [-77.43388671935409, 34.69460385843701], [-77.43384220684949, 34.69468574008141], [-77.43375119754941, 34.69481603581596], [-77.43369649775035, 34.695040719580234], [-77.43369801122225, 34.69519437660003], [-77.43356285096296, 34.69557005392923], [-77.43354462583176, 34.69569980034717], [-77.43352912811234, 34.69580150337061], [-77.43350418622862, 34.69596518837048], [-77.43354203458847, 34.69618133391704], [-77.43354762817673, 34.69624017511653], [-77.43356258416014, 34.696265134292226], [-77.43355712150131, 34.69630847248565], [-77.43352754042836, 34.6966949512054], [-77.4336636100464, 34.69685951111592], [-77.43349162625184, 34.69694920358735], [-77.43347968312807, 34.69707473035007], [-77.43339835324122, 34.69717064301128], [-77.43338952059389, 34.69719894603889], [-77.43342579985618, 34.697335417890535], [-77.43345420522608, 34.697592452866836], [-77.43347527365927, 34.697609549925645], [-77.4337060642472, 34.69782950414328], [-77.43389439897453, 34.69805831069323], [-77.43403211982184, 34.69826993847957], [-77.43459322894348, 34.69886169255786], [-77.43452281205559, 34.69895793783826], [-77.43461170988036, 34.699129586978245]], [[-77.31434753753032, 34.640330722935026], [-77.31398027844283, 34.64043161603707], [-77.31393052036947, 34.641918959220874], [-77.31462507238412, 34.64171409452025], [-77.31511672630404, 34.641866961237696], [-77.31543424991484, 34.64178979658399], [-77.31593142710337, 34.641842942171905], [-77.31613752291122, 34.64177927065688], [-77.31623982544264, 34.641784490540054], [-77.31632188775085, 34.64177743700449], [-77.31656175573355, 34.64179347754121], [-77.31680262342596, 34.641733082499], [-77.31703844192964, 34.64136728163538], [-77.31705327696915, 34.64129977657312], [-77.31691283467381, 34.64060820945816], [-77.31686148969482, 34.64054756390601], [-77.31619785759285, 34.639979835217616], [-77.31609389410505, 34.63993361936181], [-77.3159257073257, 34.63983184854979], [-77.31550685158805, 34.639726798673564], [-77.31497775688084, 34.63984705942645], [-77.31489402581883, 34.63986342715955], [-77.31482557223723, 34.639886327172846]], [[-77.43318667400271, 34.70172424612562], [-77.43258833363699, 34.7016925889706], [-77.43244791941903, 34.70146595964169], [-77.43266080806563, 34.701442114479036]], [[-77.3997390565537, 34.66867760202211], [-77.39962754993064, 34.66873723864101], [-77.39932070898828, 34.66874130863795], [-77.39933962745174, 34.669001741713835], [-77.39961659703009, 34.66929255437627], [-77.39965821741478, 34.66934700756134], [-77.3997970643374, 34.66935573631355], [-77.39994079458575, 34.66900773879049], [-77.40012018533756, 34.668909711013555], [-77.39988232320438, 34.66857336326168]], [[-77.33359771350918, 34.56288284844395], [-77.33306633742131, 34.56322802254899], [-77.3328167566612, 34.5634170538678], [-77.33249332088897, 34.56354224894162], [-77.3320286176947, 34.563691489373745], [-77.33176600071839, 34.56371224412884], [-77.33146818801934, 34.564038037257646], [-77.33182164000779, 34.564209801387705], [-77.33202818198923, 34.56420244901189], [-77.33236047452263, 34.56426792838887], [-77.33246475918386, 34.56427333428621], [-77.3328159118468, 34.564418848111266], [-77.33289749722161, 34.56459358605689], [-77.33292081290823, 34.564678312195426], [-77.33301667570036, 34.564881299352436], [-77.33311312975857, 34.565075206340595], [-77.33314359826545, 34.565141588000934], [-77.33344292678339, 34.56545233716834], [-77.33360285179484, 34.565588036367544], [-77.33395730483608, 34.56584527973743], [-77.33399658689503, 34.565862574212645], [-77.33428621401366, 34.566067938595396], [-77.33439032023816, 34.56614239792426], [-77.33440237455409, 34.56615049486885], [-77.33441831283665, 34.56616120062619], [-77.33478406585948, 34.56641043173637], [-77.33484898354745, 34.5664538334177], [-77.33493443811169, 34.56651154223835], [-77.33517781831225, 34.56667313488897], [-77.33534785339984, 34.56669339960147], [-77.33546976988275, 34.5668591209799], [-77.33557158268019, 34.56692411790365], [-77.33575710143616, 34.567042334871864], [-77.33579353168773, 34.56705185784295], [-77.3359653980809, 34.56711448220755], [-77.33607649188357, 34.567076751845754], [-77.33623939488294, 34.56704366977468], [-77.33628025136487, 34.566828099864516], [-77.33626916476771, 34.56674419194921], [-77.33625208447796, 34.56663062249958], [-77.3362276448429, 34.56646812175623], [-77.33614494558033, 34.56633751020185], [-77.33596630341307, 34.56598804885468], [-77.33594875869149, 34.56596010619445], [-77.3359377192392, 34.56594276280605], [-77.33587668982183, 34.56585485233231], [-77.33562540332726, 34.56550636082925], [-77.33561559149294, 34.56513999314991], [-77.33568703100383, 34.56482776466766], [-77.33566883579957, 34.56460501622375], [-77.33561968455285, 34.56429032317785], [-77.33549319638303, 34.56397101517294], [-77.33528908504404, 34.56360598731675], [-77.3352499905261, 34.56349439321442], [-77.33518048212551, 34.5634014484132], [-77.334928754405, 34.56296315498739], [-77.33445207503136, 34.56282362865274], [-77.33439305636223, 34.562821963382554], [-77.33435012426294, 34.56282094901674], [-77.33365005397036, 34.562875324066475], [-77.33360804916377, 34.5628781960808], [-77.33360511005186, 34.562879064314366], [-77.33360298342375, 34.56287979977695]], [[-77.37268495070724, 34.733116695428706], [-77.37244601317411, 34.73287504619456], [-77.37233630928958, 34.73262868450213], [-77.37184083968285, 34.73223459390892], [-77.37206324516185, 34.7317806495586], [-77.37197309273711, 34.73167057182788], [-77.37185458004424, 34.73170760241556], [-77.37178665713712, 34.73221932906267], [-77.37176973527839, 34.732264212694474], [-77.37186193807466, 34.732828594791066], [-77.37178978029286, 34.7331484009423], [-77.37196714230478, 34.733900761138216]], [[-77.36755419792603, 34.55087464088516], [-77.36801063777601, 34.55143391894858], [-77.36819159264357, 34.551700421589416], [-77.36825639254042, 34.551730708216766], [-77.36831677301984, 34.551869421281964], [-77.368382036798, 34.55211840597705], [-77.3683945068794, 34.55216084244779], [-77.36842163794799, 34.55222740869637], [-77.36851541567046, 34.55263307682383], [-77.36858283819734, 34.552802525919844], [-77.36862795468139, 34.55289786875343], [-77.36868237500114, 34.55305584436754], [-77.36870641231432, 34.553095214823294], [-77.368939497398, 34.55314486657434], [-77.36907018402962, 34.553267477780935], [-77.36936115969145, 34.55330851637348], [-77.36973455174805, 34.55343674311939], [-77.37036972124821, 34.55363620619634], [-77.37063961323418, 34.553813778210674], [-77.37084865637253, 34.553899995167626], [-77.37127403970995, 34.553898780768506], [-77.37142736833069, 34.55392744011637], [-77.37154145819035, 34.553902565067716], [-77.37167446116761, 34.55384809380193], [-77.37182132941086, 34.55376809042641], [-77.3719653820725, 34.55369511729637], [-77.37221538713135, 34.55334947224997], [-77.37233897474914, 34.55319463398952], [-77.37249346022337, 34.55303922749939], [-77.37266732538842, 34.552737272352296], [-77.37273986407166, 34.55251406645392], [-77.3726878220045, 34.55231561641836], [-77.372701706768, 34.55202990752917], [-77.37270591267202, 34.551331022839506], [-77.37344728891773, 34.55094314671928], [-77.3730973041489, 34.55048053855643], [-77.37229601031203, 34.54953719004292], [-77.37212536540405, 34.54928501110361], [-77.37198933698399, 34.54919462384651], [-77.37172819297622, 34.548868689374665], [-77.37121175738729, 34.5483273600576], [-77.37096961816978, 34.54822862550999], [-77.37076194849554, 34.54793815926204], [-77.37029513988502, 34.54777356255751], [-77.36997736095148, 34.547910947657854], [-77.36975646237613, 34.547909623251535], [-77.36918891991633, 34.548052971464905], [-77.36894555956327, 34.54782950405699], [-77.36859858818882, 34.54772455951892], [-77.36825497393177, 34.54738663035217], [-77.36763815616249, 34.54719054845812], [-77.36737951041688, 34.54708369242195], [-77.36715716172914, 34.54695291425772], [-77.36685960915517, 34.54689867124283], [-77.36670884738865, 34.54692383997257], [-77.36646549534451, 34.54696507467287], [-77.3662901129131, 34.547077817783695], [-77.36619519178859, 34.54717067967145], [-77.36606384569727, 34.54736184218778], [-77.36567330071242, 34.547656320068626], [-77.36561504711611, 34.547881891048775], [-77.36468142438943, 34.54828884180169], [-77.3644676759024, 34.54849038178925], [-77.36412978216055, 34.54914622962105], [-77.36420525743648, 34.54933672749285], [-77.36418190373762, 34.54950386644484], [-77.3640531385039, 34.54984828858564], [-77.3643405123683, 34.55024218877653], [-77.364275091419, 34.55030597160395], [-77.36384358978584, 34.55072546647936], [-77.36442457796025, 34.55037841012688], [-77.36575481427792, 34.550244538597745], [-77.36600027130213, 34.550149183976686], [-77.36748067452861, 34.55082353033788], [-77.3674847438822, 34.550866370684105]], [[-77.32033045880081, 34.55553474957662], [-77.320166184769, 34.555569448702606], [-77.32026612906388, 34.55565700853577], [-77.32024466147831, 34.55571101797235], [-77.32032232854532, 34.555882897212356], [-77.32052156634879, 34.55574248938197], [-77.32039185408033, 34.55563894777572], [-77.32035316084102, 34.55562897984439]], [[-77.41392464635074, 34.72630429262843], [-77.41425605408335, 34.727053372245415], [-77.41442284972855, 34.72710955109572], [-77.41491896033111, 34.727298518748526], [-77.4150495852171, 34.727249959213424], [-77.41538488606352, 34.72718598312444], [-77.41556529252958, 34.726953749130075], [-77.41560324924205, 34.726884464156086], [-77.4155770163901, 34.7267520020458], [-77.41554746741222, 34.72651482430311], [-77.41538508136361, 34.726249081405726], [-77.41530655092086, 34.72596033791659], [-77.41477667927936, 34.725943548633495], [-77.41448188301874, 34.725709964971294], [-77.41394463587578, 34.726235280299015], [-77.41391161900475, 34.72627389879732], [-77.41353806684577, 34.72616230718489], [-77.41391207577007, 34.72630410549909]], [[-77.39239871326137, 34.6005849645113], [-77.39269242076098, 34.60081385414152], [-77.39284077466215, 34.60089410348567], [-77.3930865337052, 34.60086028646723], [-77.3931810841596, 34.600902992732294], [-77.39337300865111, 34.60086121547376], [-77.39348065539853, 34.60081354203149], [-77.39359459046581, 34.6008224798056], [-77.39387477882633, 34.60074028769307], [-77.39410599210309, 34.600695971132474], [-77.39426890167128, 34.60066474618725], [-77.39443970316691, 34.600582760581375], [-77.39446596711132, 34.60057145520427], [-77.39452648294062, 34.60053334832244], [-77.394663034122, 34.60045169236354], [-77.3947208204612, 34.60042047272173], [-77.39481491190372, 34.600344653061], [-77.39505717192044, 34.600134666340224], [-77.39521604112993, 34.60003336639256], [-77.39584505341638, 34.59977189981163], [-77.39584542164499, 34.599771832652785], [-77.39584563226722, 34.599771646527266], [-77.39584645680698, 34.59977130071005], [-77.39616494320514, 34.599644999780836], [-77.39623954303943, 34.5996049531348], [-77.39643589861436, 34.59947323205812], [-77.39663367102509, 34.59928197929919], [-77.39670424624728, 34.599223001137226], [-77.39688585210081, 34.59904389349859], [-77.39734079995586, 34.59879398848014], [-77.39742191223559, 34.598764142076014], [-77.39746583447798, 34.59873588771418], [-77.3976533083304, 34.59866152804192], [-77.397816025498, 34.5985971716975], [-77.3978567284159, 34.598588334846646], [-77.39815077943524, 34.598525822505785], [-77.39821013499196, 34.59849245552405], [-77.39838200951564, 34.598371250322515], [-77.39860424604052, 34.598300352966206], [-77.39869800894898, 34.59818725734204], [-77.39899836197203, 34.597844177483324], [-77.39910410745946, 34.59771700839066], [-77.39918954764318, 34.59759076391856], [-77.39944510432059, 34.5971860177815], [-77.3996623938917, 34.59709797346103], [-77.39958925208771, 34.59689654066406], [-77.3992764592117, 34.59702865799929], [-77.39899838296091, 34.597030623629294], [-77.39878313214007, 34.59703214448044], [-77.39839241472679, 34.597052935553634], [-77.3982101853266, 34.59705749295227], [-77.39810313154915, 34.59701368049161], [-77.39749891478593, 34.59706838483207], [-77.3974219877685, 34.59706316298498], [-77.39734549138342, 34.597090050900505], [-77.39676484498585, 34.597232596994026], [-77.39663377629532, 34.59731836679691], [-77.39642210315516, 34.597368874134474], [-77.39623966873145, 34.597443687638645], [-77.39610039233742, 34.59746177078282], [-77.39598636582485, 34.59747657545223], [-77.39584556726604, 34.597454032604475], [-77.39563559358999, 34.59748049060113], [-77.39554186152768, 34.59726780411613], [-77.39564918508043, 34.59704072881924], [-77.39571197904276, 34.59681869565536], [-77.39584562085464, 34.59661623884047], [-77.39595863584657, 34.59648029089567], [-77.39614287512596, 34.5963319706448], [-77.39640649777485, 34.59604901305423], [-77.39663385538924, 34.59587599590806], [-77.39698720746861, 34.595741707336146], [-77.39703696444565, 34.595353856436475], [-77.39724022656836, 34.59512861970231], [-77.39742208096368, 34.59502796380656], [-77.39781231793316, 34.59482159503261], [-77.39781617869268, 34.59481988908086], [-77.39781821698901, 34.59481878064936], [-77.3978182726061, 34.59481432106382], [-77.39786701254306, 34.59438497264005], [-77.39781620147045, 34.59427947284951], [-77.3977216776718, 34.594083211187964], [-77.39762513064271, 34.59399529343273], [-77.3974221373422, 34.593826098111236], [-77.3972916385544, 34.593759427447594], [-77.39718254376263, 34.59363456693259], [-77.39702806953679, 34.59352602962415], [-77.39685217829, 34.59344715569084], [-77.39678853948315, 34.59343333538717], [-77.39663399233575, 34.59343970197764], [-77.39636969494353, 34.59346707680983], [-77.39623990697004, 34.593497394313694], [-77.39611596074579, 34.593497385796276], [-77.39599323675141, 34.59354037250701], [-77.39584582000506, 34.59356962655877], [-77.39568434376615, 34.59360007538205], [-77.39562690194096, 34.59362311447463], [-77.39545172448004, 34.59375192591699], [-77.39516433157718, 34.593810736658426], [-77.3950576338649, 34.59384570890269], [-77.39497318856115, 34.5938622792866], [-77.39489943440663, 34.59396389404741], [-77.39461447678875, 34.59437674277981], [-77.39426939881928, 34.59463436125855], [-77.39411825527198, 34.59476288401026], [-77.39353159239266, 34.59495602026072], [-77.393481194221, 34.59493942759211], [-77.39325649683416, 34.594807902300985], [-77.39304383650315, 34.594702732298835], [-77.39298122956862, 34.59466512151652], [-77.39283079242816, 34.59453842751942], [-77.39283928791745, 34.59441855090749], [-77.39285977883765, 34.594258066620675], [-77.39287396809033, 34.59406116694595], [-77.39292560723825, 34.59364987362803], [-77.39291378171306, 34.59340113757437], [-77.39303372193746, 34.59301698824231], [-77.39304178055696, 34.59295810776364], [-77.39295296598098, 34.592826172708214], [-77.3931985055155, 34.592815711188294], [-77.3934814208684, 34.59254643198578], [-77.3935136953919, 34.59250024335943], [-77.39356667379198, 34.59245783539361], [-77.39375860988521, 34.592304195325724], [-77.39387552952894, 34.59221060349033], [-77.39389774781428, 34.59219780018491], [-77.39400916622324, 34.59211341320713], [-77.39418764447537, 34.59194370275345], [-77.39417934531002, 34.59161762959321], [-77.39387558069566, 34.591650298265904], [-77.39379865384531, 34.59165811540637], [-77.39355000953921, 34.591684905166005], [-77.39348149964357, 34.59172486225275], [-77.39319719762068, 34.5919682585561], [-77.39308739358228, 34.5920398448372], [-77.39306624244036, 34.59208265589573], [-77.39269327443594, 34.59245118748636], [-77.39251315461156, 34.59241571400572], [-77.3922992109612, 34.59231972430993], [-77.39222446357813, 34.59230737133523], [-77.39210384961768, 34.59224423334226], [-77.39190514662762, 34.592206179405096], [-77.39181205962734, 34.59218602074692], [-77.39170811274059, 34.592167285438805], [-77.39165631706163, 34.592152293568624], [-77.39154223910359, 34.59214651283101], [-77.39151107712337, 34.59214426925912], [-77.39146840416907, 34.59216955857162], [-77.39138258486732, 34.59220982137212], [-77.39138354851545, 34.59227320352044], [-77.3913965707824, 34.592346230654236], [-77.39142417258503, 34.59243584129344], [-77.39145267595143, 34.59269986096784], [-77.39145935685751, 34.59276174587549], [-77.39150365458545, 34.59317206249576], [-77.39150138477099, 34.59318025470141], [-77.39148734170894, 34.59320771484606], [-77.39128441014054, 34.59363611312014], [-77.39125075270749, 34.59378528377055], [-77.3911167640762, 34.594057953716], [-77.39098259433274, 34.594384269902925], [-77.39085891777476, 34.59454660884903], [-77.39072259781656, 34.59468928860262], [-77.39051206537839, 34.59479439209967], [-77.39032848146871, 34.59489816606213], [-77.38999463711201, 34.595030879254594], [-77.3899343710206, 34.59504825135303], [-77.38986849913778, 34.59504302481075], [-77.38954029185398, 34.594966696741906], [-77.3893597316299, 34.59495730740207], [-77.38883009112924, 34.59492315235884], [-77.38875210825152, 34.594984578381386], [-77.3884725350333, 34.5954387180927], [-77.38835791247556, 34.595662500072265], [-77.38832369469749, 34.595724443586086], [-77.38798602382141, 34.59578603745263], [-77.38796379763211, 34.595793579346356], [-77.38793516519362, 34.59578646584994], [-77.38768845310717, 34.595724962337314], [-77.38756973075542, 34.59562468911483], [-77.38747004735968, 34.59556720428253], [-77.38729930173156, 34.595193001118936], [-77.38724656207549, 34.5950674556604], [-77.3872197973391, 34.5950238480644], [-77.38717578000654, 34.594779434764824], [-77.38700990541498, 34.59443120463018], [-77.38699851981767, 34.59425408082413], [-77.3870412359178, 34.5941028475827], [-77.3871759388933, 34.59384458255276], [-77.38727731602722, 34.59347390336359], [-77.38736809237147, 34.59335166527856], [-77.38757013879966, 34.5931542370167], [-77.38770998584243, 34.593028448331374], [-77.38787909306396, 34.59285342441009], [-77.38792480387876, 34.59280430662027], [-77.38796429209178, 34.59271367453239], [-77.388068576054, 34.592513854321936], [-77.38814638513361, 34.59239031883115], [-77.3883584587652, 34.5921619732399], [-77.3885433145563, 34.59210766985933], [-77.38875255416158, 34.5920434223101], [-77.38898871015121, 34.592014444804], [-77.3893077891349, 34.59197190957799], [-77.38954072033053, 34.59195325987706], [-77.38966971607778, 34.591885072884], [-77.3897377689296, 34.59187834122326], [-77.38988134399384, 34.591773205994535], [-77.3899348272087, 34.59173105285616], [-77.38994829100507, 34.5917204412479], [-77.38996141051365, 34.591704045429864], [-77.39004763513937, 34.59160084554753], [-77.3900718412238, 34.5915405335306], [-77.39009032028319, 34.591473172630714], [-77.38993488315126, 34.59132819295452], [-77.38990512061598, 34.5913196604844], [-77.38974819431992, 34.59132136905175], [-77.38973784746322, 34.59132204688459], [-77.38960374129128, 34.591331050894325], [-77.38954484406158, 34.59133519621169], [-77.38954080898743, 34.59133537689187], [-77.38953596143764, 34.59133560168764], [-77.38916285472277, 34.59137725010515], [-77.38914672926597, 34.591379050114675], [-77.38912880935533, 34.59138022570559], [-77.388809468315, 34.591384367474404], [-77.3887526569395, 34.59137128102801], [-77.38863530127594, 34.591344247938316], [-77.388358590661, 34.59132517733312], [-77.38817694380836, 34.59130791568624], [-77.38816155753094, 34.59130280340964], [-77.38812955807404, 34.591296848915256], [-77.3879645243008, 34.59128174458023], [-77.38779848851732, 34.59116677528281], [-77.38773078345663, 34.59100384716092], [-77.38772200240999, 34.590916448985524], [-77.38778125065767, 34.590744693000374], [-77.38785003811034, 34.59061131087117], [-77.387964644009, 34.59054725778674], [-77.3883061234174, 34.59018772604272], [-77.38842002405532, 34.590162035447406], [-77.38875284931862, 34.590118900345935], [-77.38910761850894, 34.59008653725952], [-77.38914692267099, 34.59008014969998], [-77.38919063835992, 34.590069814205435], [-77.38943010291366, 34.5899628945148], [-77.38954102092674, 34.58986635841729], [-77.389665208376, 34.589757696123584], [-77.38975218714103, 34.58961137109307], [-77.38980361601554, 34.58946224591477], [-77.38978846059263, 34.589339628562655], [-77.38974215410911, 34.589188249158816], [-77.38961206686714, 34.58913057644169], [-77.38954113214041, 34.58909964479112], [-77.38948401022165, 34.58907473630734], [-77.38937574191453, 34.589028800240214], [-77.38935508809072, 34.58901995321764], [-77.38930909302205, 34.58900067691219], [-77.38914709451555, 34.58893280924944], [-77.38909630643232, 34.588911532023026], [-77.38899913045078, 34.588870820724615], [-77.38883940030881, 34.588800819964156], [-77.38875305901388, 34.58876215363328], [-77.38858350936651, 34.58868886906513], [-77.38846688275268, 34.58863921324593], [-77.388359024801, 34.58859303778979], [-77.38832519650646, 34.58857987604321], [-77.38825684477455, 34.58855328191093], [-77.38796498997478, 34.58843714966426], [-77.38779869891196, 34.58837394803834], [-77.38767051718425, 34.58832052879461], [-77.3875709568716, 34.5882792961299], [-77.38753946345062, 34.58826608247867], [-77.38745145191837, 34.5882448379478], [-77.38737393641837, 34.58822621007607], [-77.38723611952376, 34.58821208987656], [-77.38717691076249, 34.5882043542765], [-77.3870744339492, 34.58818878154422], [-77.38678285606343, 34.58818090941906], [-77.3865958070983, 34.588145171440175], [-77.38656641775732, 34.58813923507135], [-77.38638880364452, 34.58814575158472], [-77.38633169790458, 34.58813246502683], [-77.38622717489301, 34.588209063597084], [-77.38620563038182, 34.58822711480235], [-77.38612888595, 34.588290961508484], [-77.38599469865585, 34.58839094217846], [-77.38591815320879, 34.58846589782331], [-77.3857241261603, 34.5886269655411], [-77.38560770530054, 34.58893522009863], [-77.38575850768821, 34.589167795224604], [-77.38578379525485, 34.589334400760194], [-77.38578566053648, 34.58953371153575], [-77.38568978790872, 34.589772519782684], [-77.38560036002761, 34.58983750637354], [-77.38535435165824, 34.5899804240361], [-77.38520624806402, 34.590066463708766], [-77.38493436476924, 34.590174322386495], [-77.38481214848997, 34.590222833021926], [-77.38473565956437, 34.59025222924882], [-77.3846091320452, 34.590352870482974], [-77.38430914702063, 34.59070342404789], [-77.38419917982034, 34.59107218060142], [-77.38423203228301, 34.5912563613357], [-77.3844230959553, 34.59164766603854], [-77.38442845709288, 34.59165261318472], [-77.38481183391727, 34.591790263969614], [-77.38493329141632, 34.59187353327796], [-77.38509490258903, 34.591981109473494], [-77.38515645708479, 34.59202546569525], [-77.38520581894332, 34.59225744101204], [-77.38523231475395, 34.59235730032294], [-77.38522736478498, 34.59240982531514], [-77.38520578489856, 34.59243198165105], [-77.3850122154166, 34.59263365997993], [-77.3850026834787, 34.592637739573405], [-77.38481165575824, 34.59268189363466], [-77.38451578014049, 34.59248915721451], [-77.38445517097763, 34.592457439162835], [-77.38441762706442, 34.5924281445856], [-77.38429741477137, 34.59239111361603], [-77.38402357949026, 34.59227598497355], [-77.38393349530227, 34.59224558587214], [-77.38373008310595, 34.59217784628021], [-77.38341556826897, 34.59202915564688], [-77.38323552000847, 34.591827846219104], [-77.38302831346085, 34.59165314799955], [-77.38282811293709, 34.59145872547532], [-77.38266001548165, 34.59125399299276], [-77.38244752137962, 34.59114966828938], [-77.38238147540977, 34.59109853711117], [-77.38244756026002, 34.5909799169963], [-77.38258973030256, 34.59079708106282], [-77.38319594073167, 34.59059950988355], [-77.38323578485034, 34.590620788447296], [-77.38337716545536, 34.59068279004813], [-77.38328520393588, 34.59054371116032], [-77.38326801886184, 34.590511485621306], [-77.38323581911514, 34.590465012906314], [-77.38300238249687, 34.589986961911364], [-77.38257215189498, 34.58979735924808], [-77.38258379871755, 34.589649226759995], [-77.38244788846795, 34.58955039342845], [-77.38229769161984, 34.58967512874425], [-77.38223854254362, 34.58964640361512], [-77.38221176225979, 34.58963702186256], [-77.38218968305237, 34.589574303410735], [-77.38226461969919, 34.58941712081579], [-77.38244794528578, 34.589303544774026], [-77.38266526010494, 34.58916891042037], [-77.38251192950294, 34.58895690996854], [-77.38249569202154, 34.58890790584727], [-77.38244806731429, 34.58877409106698], [-77.38236522755022, 34.58855349018609], [-77.38223671353154, 34.58837526194217], [-77.38218841394213, 34.58815441049337], [-77.38211833931118, 34.588095368089796], [-77.38205417451032, 34.58805385456523], [-77.3819011467531, 34.587936155101815], [-77.38174631260412, 34.58788639428594], [-77.38166015929684, 34.58787109343612], [-77.38157712652333, 34.5879074036401], [-77.38135508933846, 34.58794585160417], [-77.38126604845209, 34.58808482112828], [-77.38098063158469, 34.58821140072457], [-77.3808719410142, 34.58827657473143], [-77.38072673955678, 34.588208619689276], [-77.38047786751144, 34.588327732229175], [-77.38037550083668, 34.588305403882515], [-77.38044453102292, 34.58840575207314], [-77.38047782746877, 34.58848504033931], [-77.3807107600498, 34.58854096806734], [-77.38056465253216, 34.588906664468574], [-77.3804077748081, 34.589260176346954], [-77.38048165667, 34.58966964317649], [-77.38048061552384, 34.589674243078235], [-77.38048127681795, 34.58967819066742], [-77.38060815422028, 34.59008042602447], [-77.38057071451783, 34.59040978420002], [-77.38058639187982, 34.59062567595757], [-77.38047724060405, 34.590798538950224], [-77.38041752054701, 34.590957027433255], [-77.38035388919798, 34.59125799117415], [-77.38034289145676, 34.591392346340136], [-77.38034789039456, 34.59153078349082], [-77.38040429104439, 34.59180806093106], [-77.38047564488069, 34.59222100967992], [-77.3804756672459, 34.5922223389041], [-77.38047537527673, 34.59222400306041], [-77.38046556571541, 34.592648357769264], [-77.38062270134486, 34.593207639811176], [-77.38048767332636, 34.59349429922243], [-77.380334430109, 34.59378790338067], [-77.38008231810366, 34.594114136095094], [-77.3798422998074, 34.59417786891979], [-77.37995801888968, 34.59441975585342], [-77.3800423200827, 34.5944506057854], [-77.38008222463712, 34.594480386170154], [-77.38041887788059, 34.59477790524214], [-77.38044626923367, 34.59480623834256], [-77.38069079511561, 34.5951632818567], [-77.38067973468131, 34.59537005195551], [-77.38077439019507, 34.59557579883291], [-77.38065818010693, 34.595788823554294], [-77.38041279994954, 34.596052471555446], [-77.38021839833061, 34.59622766595316], [-77.38008175616159, 34.59632292562941], [-77.37959982717096, 34.596688704654994], [-77.37929339597495, 34.59694209684662], [-77.37921448058931, 34.59698927967367], [-77.37913669007366, 34.597085491144924], [-77.37850496454388, 34.59778051145327], [-77.37836267518757, 34.5978928952118], [-77.37831539648687, 34.59805296008006], [-77.37818657330325, 34.59841432815693], [-77.37806783177928, 34.59893775597887], [-77.37850450804206, 34.599465724592406], [-77.37858516641349, 34.59962540278204], [-77.37868153120303, 34.599698453916865], [-77.37902584516637, 34.599936217038795], [-77.379103218941, 34.600062254910384], [-77.37929256408015, 34.60012332736286], [-77.37951926528469, 34.60018263595056], [-77.37968663272429, 34.60031144202712], [-77.37972362097783, 34.600357561905916], [-77.37978184473765, 34.60038903019276], [-77.37997151043515, 34.60047933184745], [-77.38008070398455, 34.600496026218885], [-77.38027301674666, 34.60052542818622], [-77.38027775573926, 34.60052585047534], [-77.38028118241543, 34.600525665337074], [-77.38047481541457, 34.60052408076251], [-77.38067395518192, 34.600470527994844], [-77.38086894796781, 34.60046532511773], [-77.38099940701954, 34.600497592079776], [-77.38116098659489, 34.60050489730825], [-77.38126305697894, 34.60050340873294], [-77.38142854436978, 34.600398049212444], [-77.38147625856756, 34.60037449283356], [-77.38149309434925, 34.60031922990933], [-77.38149588201311, 34.60014202558092], [-77.38149045025989, 34.59996306729952], [-77.38165734802286, 34.59975827152516], [-77.38188893949948, 34.599485667798604], [-77.38229498461573, 34.59934005965073], [-77.38244568195404, 34.599287422688676], [-77.38281205020203, 34.59955759856196], [-77.3828397305513, 34.59957843977226], [-77.38313956861852, 34.5999051352411], [-77.38315391399297, 34.599989078346354], [-77.38316295718622, 34.60032632931487], [-77.38319215204996, 34.60036685331161], [-77.38323365864338, 34.60044805963999], [-77.38325568820504, 34.60050150302246], [-77.38329578252485, 34.60051946796878], [-77.38338260186971, 34.60055876216593], [-77.38351702760967, 34.600580587852896], [-77.38362774165034, 34.600613781746], [-77.38367468399991, 34.600626567494054], [-77.38376683848699, 34.60066385671412], [-77.38393438215985, 34.60073391688684], [-77.38402183102278, 34.60075565396549], [-77.38420900913954, 34.600823037494344], [-77.38423609219207, 34.60082704987597], [-77.3844159295657, 34.6008576381059], [-77.38452570277191, 34.60086078855451], [-77.38471297658418, 34.600847475744786], [-77.38481007076683, 34.60074404468023], [-77.3849386837101, 34.60063347501142], [-77.38505759409927, 34.60047780925356], [-77.38520426637334, 34.60033671356577], [-77.38546348227804, 34.60027396609315], [-77.38559841118985, 34.600183898762964], [-77.3857018896907, 34.60027344435856], [-77.3858080265605, 34.60036963649206], [-77.38591605675299, 34.60043639315208], [-77.38599246902858, 34.600505925785946], [-77.38612888862473, 34.600600972063404], [-77.38623942550255, 34.60073201596123], [-77.38638652683812, 34.600845725814864], [-77.3865467317964, 34.600939683795445], [-77.38664803972694, 34.60095484855875], [-77.38678062594997, 34.60096127180461], [-77.38709066061053, 34.60094328724596], [-77.38717475809548, 34.60088315220215], [-77.38727787350224, 34.60089579786649], [-77.3875688818077, 34.60085222784578], [-77.38765427773006, 34.60086062362323], [-77.387873234951, 34.60082434708723], [-77.38796301613232, 34.600750997641434], [-77.38827065373975, 34.6005323865062], [-77.38838847295493, 34.60045591511507], [-77.38875131337187, 34.60033283212527], [-77.38922679989193, 34.6002136935718], [-77.3895395672565, 34.60017083025328], [-77.38983282347527, 34.600105296938544], [-77.3900443510569, 34.60006425367427], [-77.3903278112264, 34.60006010024588], [-77.3907885223228, 34.60000441890392], [-77.39111604244128, 34.60003676778325], [-77.39136256462403, 34.60015236540684], [-77.39184061795625, 34.600280475232104], [-77.39190424149712, 34.600301040470086], [-77.39193212613118, 34.6003057820986], [-77.39198198191548, 34.600328632673005]], [[-77.34989270384742, 34.75700671121892], [-77.34979745456434, 34.756352391926924], [-77.34995992228168, 34.75537824145456], [-77.34994697086309, 34.75535712464557], [-77.34998201535744, 34.75533784857056], [-77.34999923075094, 34.75533980153378], [-77.3500138290946, 34.75533678697287], [-77.35115573333694, 34.75510098302717], [-77.35131602895049, 34.75493121552564], [-77.35183131618462, 34.754422890973586], [-77.35210591707096, 34.75427430624618], [-77.35249129494645, 34.7540332415178], [-77.3526965984963, 34.75391283204474], [-77.35283324714518, 34.753832687537006], [-77.35290736231252, 34.753732454485146], [-77.35295885777704, 34.753506889243944], [-77.35295674671873, 34.753481986578926], [-77.3529542848407, 34.753469653740694], [-77.35294375204202, 34.75345230346703], [-77.35286766242105, 34.753339169754994], [-77.35272800838985, 34.75326968585895], [-77.3527122626269, 34.75326158063955], [-77.35265825158427, 34.75324062730014], [-77.3524089199386, 34.75323132832354], [-77.35214755745193, 34.75310564893784], [-77.35194906745735, 34.75306011955369], [-77.35186615186377, 34.753037677313806], [-77.3516833143858, 34.75301530572508], [-77.35157903370536, 34.75299501212256], [-77.35150971402737, 34.753003806502605], [-77.35126973549797, 34.75302869028502], [-77.35068822697988, 34.75330589752115], [-77.35062546295457, 34.7533547808849], [-77.35055674039673, 34.753420953924824], [-77.35012524294743, 34.753870524730516], [-77.34996674054909, 34.75404780222297], [-77.34978107791306, 34.75440512624872], [-77.34972391736682, 34.75447097089821], [-77.34962583290702, 34.75456318802812], [-77.3493743720034, 34.75479960650672], [-77.34882106477448, 34.75527121262245], [-77.34861050912572, 34.75539950828383], [-77.34816463813988, 34.755468679413326], [-77.34755650079056, 34.755649683700454], [-77.34750939642147, 34.75566205233214], [-77.34748276772694, 34.7556770881596], [-77.34745282222191, 34.75569930616823], [-77.34710968240717, 34.75598487877881], [-77.34709076866245, 34.75600781627138], [-77.34692093166346, 34.75625964911581], [-77.34686209907699, 34.75640384236922], [-77.34638479729593, 34.75682057022469], [-77.34609956566304, 34.75700493660845], [-77.34584189328628, 34.75727729194935], [-77.3454929731531, 34.75774417332099], [-77.34543739869608, 34.75792527903057], [-77.3452686324758, 34.75819729011906], [-77.34514318550902, 34.758453010915304], [-77.34503018566087, 34.75861080332467], [-77.34474908101703, 34.7589762175686], [-77.34473080432761, 34.75899694960567], [-77.34472559119689, 34.759009019010655], [-77.34453038060092, 34.75926812701587], [-77.3445403065677, 34.75945344210362], [-77.344543337809, 34.75951003818435], [-77.34454505039535, 34.75954201395629], [-77.34456564527687, 34.75960738408225], [-77.34466012161671, 34.759847714446735], [-77.34475036745974, 34.75996901956289], [-77.34484666503171, 34.76009846042141], [-77.34497275442632, 34.76026794420203], [-77.34543943086894, 34.76043104063061], [-77.34587324862713, 34.76078975389706], [-77.3461843624473, 34.76143499355247], [-77.34671197553511, 34.762529199058015], [-77.34714391655056, 34.76227392185965], [-77.35084245548066, 34.76120598023573], [-77.35054395559736, 34.75965946961998], [-77.35028721199518, 34.75847221663702], [-77.35024028684602, 34.75824115892469], [-77.35018146212926, 34.758067532463066]], [[-77.2911937122984, 34.641530925598396], [-77.29147777367913, 34.641222159636584], [-77.29201009230147, 34.64126550949367], [-77.29221458422492, 34.64127889396432], [-77.29227255365919, 34.64151078821777], [-77.29201037593296, 34.641682655052165], [-77.29161093806087, 34.64188685022381]], [[-77.36368460605358, 34.547439488623354], [-77.36367875526155, 34.54745395883952], [-77.3636013931672, 34.547529340034885], [-77.3634471451068, 34.547732142284346], [-77.36336666860029, 34.54778153848392], [-77.36330446066152, 34.54785083402389], [-77.36315275711718, 34.54786888530189], [-77.36290876181403, 34.547986256954005], [-77.36280636989872, 34.54800568038675], [-77.3625148193947, 34.548044754175294], [-77.36246234015562, 34.548118801341104], [-77.36248266099112, 34.548344923285256], [-77.36248574403255, 34.54837369931965], [-77.36267287256078, 34.548437461008184], [-77.36290045865704, 34.548349697660754], [-77.36328402541103, 34.54823805832858], [-77.36329566498821, 34.548235911629185], [-77.36330731763768, 34.548234682427434], [-77.3636887710106, 34.5482140459318], [-77.36433928672251, 34.548254705304444], [-77.36447345895387, 34.54823704028895], [-77.36486900562248, 34.54777217254957], [-77.36473324656993, 34.54763824886702], [-77.36464182505208, 34.547560070160245], [-77.36448908644388, 34.547552441031776], [-77.36420872798833, 34.547552455736856], [-77.36376401840235, 34.54744167834031], [-77.363734763754, 34.54742839933805], [-77.36370759614495, 34.547389706495736]], [[-77.38846686616391, 34.5654842809632], [-77.38850605896553, 34.565166094049616], [-77.38864459407364, 34.56502503452864], [-77.3887300927326, 34.56473820551166], [-77.38837928955155, 34.5647773238356], [-77.3883630316603, 34.56480722187433], [-77.38813198135033, 34.56522004176361], [-77.38817733408672, 34.565438059688546], [-77.38798658749363, 34.56607103475848], [-77.38800958112508, 34.566086830024126], [-77.38836279482908, 34.56614879828906], [-77.3883813970996, 34.5660332092854], [-77.38840543702489, 34.565651035397714]], [[-77.39565111241059, 34.523257798400415], [-77.39565747768492, 34.52326056932489], [-77.395661276469, 34.52325633143917], [-77.39566936573269, 34.52324792514513], [-77.39565766795864, 34.52325209950463]], [[-77.40356869281281, 34.67644063755304], [-77.4028226274931, 34.67611906719955], [-77.40240000662217, 34.676024998291616], [-77.40195776771989, 34.67594351101577], [-77.4015969894019, 34.67592600740573], [-77.40145704016078, 34.675706044955945], [-77.4013044329562, 34.67572895607696], [-77.40127459794118, 34.6757440330397], [-77.40114062799421, 34.67583507521038], [-77.40114035963673, 34.67583682816846], [-77.40114131415702, 34.675837737502896], [-77.40114349663591, 34.675839769041666], [-77.40131174185916, 34.67580468918312], [-77.40148989165105, 34.67609896955582], [-77.40152706844502, 34.676123162062716], [-77.40153736187946, 34.67613185238414], [-77.40182567067345, 34.67658182012685], [-77.40214440945648, 34.676758315554125], [-77.40242744063303, 34.67748337520795], [-77.40243033215599, 34.67753171018336], [-77.40242324047196, 34.67754396779251], [-77.40242291120121, 34.67755901958475], [-77.4022708945831, 34.67849086960331], [-77.40217469529135, 34.67857525015061], [-77.40213661608773, 34.678587140241646], [-77.4020677431248, 34.67872512397529], [-77.40169797958563, 34.679366016591764], [-77.40160014037887, 34.679492419587994], [-77.40138366183557, 34.67960002657709], [-77.40131346812586, 34.67967164574423], [-77.40123487888573, 34.67973073654173], [-77.40123733052012, 34.679814623450355], [-77.40131053649635, 34.67985452464768], [-77.40142703281575, 34.679830854919395], [-77.40160360702713, 34.67995989061561], [-77.40171937579035, 34.67992772794782], [-77.40174582084232, 34.68004886235783], [-77.40182143023912, 34.68012902052468], [-77.40217496227572, 34.680316196399204], [-77.40223422714678, 34.68036255825251], [-77.40235852205844, 34.68044674932575], [-77.40277524384038, 34.6807070763311], [-77.40300587585024, 34.680862279463724], [-77.40311126641593, 34.68093003915286], [-77.40331793367369, 34.68104583138472], [-77.40376470903479, 34.68125084787013], [-77.40388770076214, 34.68129111883601], [-77.40399813265628, 34.6813410624005], [-77.40433899734398, 34.68144215016417], [-77.4044821763086, 34.68145111019635], [-77.40482508400393, 34.681489147568854], [-77.40510880270472, 34.6815001043867], [-77.40526343329373, 34.68145804850579], [-77.40545420439297, 34.68140052535362], [-77.4054566673774, 34.681400060807256], [-77.40545932424922, 34.68139613690003], [-77.40558899655757, 34.681242434951905], [-77.40566525123509, 34.68109200456159], [-77.40567068307136, 34.680917158241556], [-77.40572116146589, 34.680622346652946], [-77.40570762564512, 34.68037095622897], [-77.40557088815548, 34.67990471329748], [-77.40553290688528, 34.67980820446537], [-77.40505418577064, 34.679619268954184], [-77.4050154326388, 34.679610040358995], [-77.40448116047153, 34.67943001759034], [-77.40443480011932, 34.67940230122615], [-77.40440764135354, 34.67938491943497], [-77.4043305461153, 34.6793298447009], [-77.404035915396, 34.67909364298241], [-77.40394517354301, 34.678880376959924], [-77.40376199527606, 34.678761569085054], [-77.40352341743085, 34.67812415625105], [-77.40327474198328, 34.678072150912925], [-77.40337223814198, 34.67787614620458], [-77.40339887031993, 34.67765930101759], [-77.4037659213989, 34.6772869271698], [-77.40410464012032, 34.67731751826735], [-77.40433397445764, 34.67753804626887], [-77.40434276281144, 34.67762665209808], [-77.40438010843819, 34.67766978567454], [-77.40483326067077, 34.67802659676211], [-77.40545398666691, 34.67804565497859], [-77.40546503613919, 34.67804674884404], [-77.40546849959802, 34.67804576525383], [-77.40555330071507, 34.67801435777581], [-77.40584000199873, 34.67791198066533], [-77.40593126814798, 34.67785669023648], [-77.40611537551553, 34.677718010583966], [-77.40575559263706, 34.6774836374743], [-77.40565597773993, 34.6773984549813], [-77.40544515194271, 34.67716680208568], [-77.40524696447117, 34.676854928963735], [-77.4052381084683, 34.6768068350423], [-77.40520893490978, 34.676729525241775], [-77.40464310421223, 34.6766087032913], [-77.40452905582852, 34.67651542092402], [-77.40393827773562, 34.67669186993453]], [[-77.38832929729317, 34.71064963032895], [-77.38801509306091, 34.71086221893507], [-77.38751306761998, 34.711253734426144], [-77.38735294018733, 34.71127585017379], [-77.38726677617156, 34.71137976791932], [-77.38732374103567, 34.71190669333422], [-77.38737422060089, 34.71237360659011], [-77.38819142893414, 34.71264760728716], [-77.38839419225557, 34.711948473213226], [-77.38847708768446, 34.71180339268723], [-77.38847998273977, 34.71162277145673], [-77.38864623962125, 34.710950809611894]], [[-77.41120476941481, 34.72684037480822], [-77.41089907492716, 34.72691675451463], [-77.4110998539004, 34.727202537595794], [-77.4114200520323, 34.727098946382434]], [[-77.38313919137897, 34.65494562472831], [-77.38294126460544, 34.655055295127525], [-77.38287135398764, 34.655114508889284], [-77.38272195238537, 34.65522339318578], [-77.38266901287942, 34.655293255953694], [-77.3826502753719, 34.65535593784815], [-77.38263164831297, 34.655472626631074], [-77.38264059131701, 34.65556827897727], [-77.38277742078695, 34.6559420397281], [-77.38278695534814, 34.655970157037316], [-77.3827945705738, 34.65598819333911], [-77.38282709125255, 34.6560777179018], [-77.38291732478008, 34.656319536047874], [-77.38293673915551, 34.656371564480786], [-77.38296628376656, 34.656451639150376], [-77.38303293850008, 34.65666503251143], [-77.38314128537561, 34.65676543645191], [-77.38332755032894, 34.656972178298915], [-77.3835564638372, 34.656776716202685], [-77.38360615823375, 34.65676574019032], [-77.38363660388123, 34.65669727940471], [-77.38361472689762, 34.65666124187338], [-77.3835581837335, 34.65652768312301], [-77.38348770367035, 34.656338354528906], [-77.38346671887784, 34.65629863853281], [-77.38336470688438, 34.65600748835516], [-77.38332852687333, 34.655895636429506], [-77.38331584236074, 34.65577728897359], [-77.38337277232996, 34.65560762547136], [-77.38351844792749, 34.65529934087371], [-77.3836262801423, 34.655276658485285], [-77.38371181540657, 34.65499885835618], [-77.3835431806562, 34.654864295277704], [-77.38335245505036, 34.65488249476836], [-77.38323523249646, 34.65492510500713]], [[-77.3924238269242, 34.710590318246744], [-77.39220641889537, 34.710543654375186], [-77.39198892663137, 34.71045005522075], [-77.39184501294153, 34.71039186225647], [-77.39155737827764, 34.710571173334635], [-77.39134297942597, 34.710273013270985], [-77.39132577370631, 34.710264420246276], [-77.39125465505126, 34.71017451480154], [-77.39119175307131, 34.710237266537305], [-77.39123959062964, 34.71031611105061], [-77.39130628610087, 34.71055693251064], [-77.39137506276688, 34.71070594715563], [-77.39144073284385, 34.71097353959318], [-77.3916172158846, 34.71149762261395], [-77.39226671596883, 34.71183009101223], [-77.39247689174064, 34.71182205930504], [-77.39305454706044, 34.711791082193756], [-77.39314883533342, 34.711776288857436], [-77.39370174308057, 34.71201969838117], [-77.39381952449469, 34.71199564611609], [-77.39421100982794, 34.712017003311956], [-77.3943579224862, 34.71196757304038], [-77.39484940304996, 34.7117968958692], [-77.39491965665997, 34.711679437121646], [-77.39508682761858, 34.71166453741627], [-77.39520056225531, 34.71164020540323], [-77.39519037344432, 34.711570180000784], [-77.39514135717877, 34.71147640916897], [-77.39509459513496, 34.711386950565476], [-77.39505403328378, 34.711309352261424], [-77.39473317053988, 34.71109130757105], [-77.39471838309024, 34.71091231626711], [-77.39468992749781, 34.71088617748817], [-77.3946736314228, 34.71087839793849], [-77.39459543214458, 34.71086928955306], [-77.39448654129751, 34.710970980971084], [-77.39421498110354, 34.71086101678264], [-77.39403422389144, 34.710872693600194], [-77.39396446222035, 34.710865351688696], [-77.39373014406804, 34.71081594043241], [-77.3936197060716, 34.71080740629174], [-77.39346954823773, 34.71080415445123], [-77.39340353700274, 34.71083690164458], [-77.39330795267735, 34.7107928214747], [-77.3929767296234, 34.71074638123235], [-77.39275563986355, 34.71086047695357], [-77.39261622899934, 34.71063486713026]], [[-77.43156775311962, 34.67585677069586], [-77.43187002928443, 34.67596004201467], [-77.43227332343012, 34.67620184561925], [-77.43227732314828, 34.67624863189213], [-77.4322793569216, 34.67627242188549], [-77.43230195612716, 34.67653677849624], [-77.43231516179699, 34.67666700975205], [-77.43236677084855, 34.67683897827282], [-77.43225004991123, 34.67697232657762], [-77.43213515221774, 34.67703750108069], [-77.432017162045, 34.67708734256606], [-77.43185831704548, 34.677079675309884], [-77.43145320429738, 34.67702680825286], [-77.43140815291959, 34.67697767874557], [-77.4310792681488, 34.67655375604279], [-77.43094103905794, 34.67637754180979], [-77.43092093995958, 34.67635620951029], [-77.43092945113247, 34.676308800695956], [-77.4309690356714, 34.67628076778966]], [[-77.39968565229891, 34.57034645684096], [-77.39973886730006, 34.57039095224377], [-77.3998490112471, 34.570389407170204], [-77.399878218984, 34.57022067286773], [-77.39986563280885, 34.56947133358469], [-77.3989994204315, 34.568591089301975], [-77.39858559050575, 34.56840374437343], [-77.39821150188024, 34.56842111422705], [-77.39796804321786, 34.56830924502051], [-77.39750468517163, 34.568113722124934], [-77.3974582370155, 34.56808309298561], [-77.39742359755579, 34.56808179737515], [-77.39740069655865, 34.56810404780948], [-77.39670156998172, 34.56815857760327], [-77.39663566791391, 34.56816016305988], [-77.3965892041108, 34.56819574161519], [-77.3964089333052, 34.568271822323844], [-77.39627243261356, 34.568324645278814], [-77.39624169069106, 34.56834550580648], [-77.39609032983631, 34.56853007628246], [-77.39610737141211, 34.56859517036219], [-77.39615314861089, 34.56873329909427], [-77.39618212955216, 34.568793267378396], [-77.39624164950592, 34.568861450497366], [-77.39637077838307, 34.568987300967144], [-77.39653228352682, 34.569103170577], [-77.39658057566987, 34.56915549427743], [-77.39663558703565, 34.569237950097474], [-77.39696766015054, 34.56953160635837], [-77.39734830390233, 34.569834578344036], [-77.39737286976363, 34.56988557434143], [-77.3974234794568, 34.56988765180475], [-77.39747608654301, 34.569872833491466], [-77.3980329564416, 34.56992811389246], [-77.3982114160082, 34.56995883797485], [-77.3985824985821, 34.57005640824437], [-77.39862039448043, 34.57005942117718], [-77.39899935092649, 34.57008954930736]], [[-77.38587981041937, 34.53017989808091], [-77.38529630609295, 34.53019545171085], [-77.38431275164339, 34.530769657171945], [-77.3848362420844, 34.530970204392446], [-77.38528189561512, 34.53083348568911], [-77.38573530623711, 34.53084749345115], [-77.38606722022004, 34.53082079485244], [-77.38651739411696, 34.530451675504345], [-77.38608271380973, 34.53013451955053]], [[-77.44026407132215, 34.61956906010907], [-77.4402694835677, 34.619261964151505], [-77.44022723624326, 34.61921117404087], [-77.44032438161193, 34.61903928600395], [-77.4402765589458, 34.618645015488], [-77.44053588525227, 34.61864124962923], [-77.44066455458076, 34.61834800819922], [-77.44072635741233, 34.61818300102595], [-77.44083315951582, 34.61796025518388], [-77.44084983913666, 34.61792593875383], [-77.44084683375925, 34.61791545060623], [-77.44085018784503, 34.61786868777685], [-77.44085177871096, 34.617607469344975], [-77.4408854780595, 34.61754653014386], [-77.4408822848329, 34.61744308273494], [-77.44062602955755, 34.616909043120984], [-77.44061765543108, 34.61688438650526], [-77.44060805038976, 34.61686406093014], [-77.44057540092425, 34.616864755107024], [-77.44055889826565, 34.616885549823174], [-77.44005721312583, 34.61689240008578], [-77.43975043412581, 34.61699815211005], [-77.43958076659314, 34.61707255495697], [-77.43945554121737, 34.61711883741562], [-77.43910018383748, 34.61723760403467], [-77.43900286806435, 34.617270128292716], [-77.43885933632723, 34.617318098544686], [-77.43864945019881, 34.617429710806505], [-77.43862993095941, 34.61744040206609], [-77.43862250102738, 34.6174467235404], [-77.43861722346095, 34.61745466119441], [-77.43859159015204, 34.61750043450727], [-77.43849711753953, 34.61767352204206], [-77.43856038204662, 34.6177346981068], [-77.43858779834034, 34.6178322948897], [-77.43876449446716, 34.617932072226125], [-77.43897486014944, 34.61794617039506], [-77.43930094162498, 34.61799824623559], [-77.43947544862641, 34.61824850850569], [-77.43957537275057, 34.61839962857559], [-77.43985346242519, 34.6185792323765], [-77.44006840392947, 34.61919159517415], [-77.44007032787762, 34.61925590445931], [-77.43981722087668, 34.6196592052686]], [[-77.40342457918346, 34.669083045796135], [-77.40357795300055, 34.66908684685567], [-77.40365072805898, 34.669092292650575], [-77.4039859946364, 34.66914477173039], [-77.40363124437089, 34.66890284688408], [-77.40335162294292, 34.66892270028387]], [[-77.35635253414938, 34.66197382601991], [-77.35638190724202, 34.66213247411508], [-77.35651440219942, 34.66216478902042], [-77.35657937132967, 34.66218548155835], [-77.35685359849867, 34.66225909479222], [-77.35698612531971, 34.66231044161383], [-77.35702187513388, 34.66226480991975], [-77.35702150085407, 34.66224038535209], [-77.35686979982171, 34.66206545235114], [-77.35679889743753, 34.66198723704168], [-77.35652035696226, 34.6620842526403], [-77.35644239189821, 34.66170216128466], [-77.35641700873687, 34.66168074292295], [-77.35627787901137, 34.66157060919051], [-77.35630571164596, 34.6617209367967]], [[-77.42840126826995, 34.748455120382985], [-77.42872509563033, 34.748264889411836], [-77.42877640226725, 34.748261440921254], [-77.42881996851767, 34.74820825200054], [-77.42896911530238, 34.747887104681936], [-77.42902464676378, 34.74778913189171], [-77.42908759877723, 34.7477067506334], [-77.42906723235468, 34.74765873813608], [-77.4290634436031, 34.74764998913371], [-77.42905156803869, 34.74764789385347], [-77.42889257889766, 34.74768641190882], [-77.42884519890039, 34.74768468480082], [-77.42844022326263, 34.74747385959586], [-77.4283173126337, 34.74745841214996], [-77.42775222624843, 34.747314414856284], [-77.42767611517766, 34.74727054276852], [-77.42754186743252, 34.74740214710169], [-77.42772625119882, 34.747894470499915], [-77.42799790827519, 34.74810471929386], [-77.4280745155946, 34.74829699682702], [-77.42818610606085, 34.748472614692716]], [[-77.41036420854773, 34.72784791970014], [-77.41060109150627, 34.727684766445755], [-77.41063389870017, 34.72766268042324], [-77.41063669586624, 34.727653163601424], [-77.41078984116945, 34.727437661351736], [-77.41052672526973, 34.7269677202534], [-77.41038685496687, 34.72688140104526], [-77.41014491370971, 34.72665301002141], [-77.41001733759197, 34.72651289106088], [-77.40996897257497, 34.72656161147263], [-77.40992038522097, 34.72657448714854], [-77.40974942101221, 34.72657675055068], [-77.40963818252156, 34.726715091346186], [-77.40962092794447, 34.72674074967938], [-77.40961913422024, 34.726755171790764], [-77.40980615820598, 34.72709364910724], [-77.40981267341195, 34.72712081871158], [-77.40983087103629, 34.7271565303168], [-77.41004464615659, 34.7274704404562], [-77.4102196613253, 34.727797369237486], [-77.41022812877735, 34.72784028120883], [-77.41033616854219, 34.72790998512599]], [[-77.34178694903085, 34.65171600606807], [-77.3418699326557, 34.652048301501594], [-77.34186583728771, 34.65230969072788], [-77.34198990869406, 34.652572696756174], [-77.34206230767211, 34.65270472131772], [-77.34210083676088, 34.65273933584947], [-77.34225318632033, 34.65281845502123], [-77.3424795866282, 34.65288010536405], [-77.34254483712465, 34.65300850138679], [-77.34262510013541, 34.65304946968746], [-77.3428518393514, 34.65313916440101], [-77.34303467592184, 34.65318692070091], [-77.34318491397606, 34.65320330863548], [-77.34338752605323, 34.65321006613592], [-77.34350725611957, 34.65321405946542], [-77.34362441537556, 34.65316755845494], [-77.34386749832832, 34.653413342969586], [-77.34433007643315, 34.652918684731304], [-77.34461942179122, 34.653025501732664], [-77.3445085363549, 34.65279092851851], [-77.34449351874218, 34.65259509192214], [-77.34456502439288, 34.65236117533856], [-77.34426211983472, 34.65219091698795], [-77.34417735332103, 34.65207283197584], [-77.34402819938985, 34.65201287089035], [-77.34389572461427, 34.65196100120971], [-77.3436785703651, 34.65191213323284], [-77.343556164005, 34.651864568179505], [-77.34320929019546, 34.651693026822386], [-77.34320031961359, 34.65168712408473], [-77.34312946891916, 34.6516347388751], [-77.34283487863684, 34.65146192573212], [-77.34267314704053, 34.65160629706923], [-77.34252251057367, 34.65150076187216], [-77.34225942324967, 34.6514898142724], [-77.3421928633303, 34.651453631129506], [-77.34214340976055, 34.651506885520234]], [[-77.33229781635163, 34.653622577522036], [-77.33235333922799, 34.65366548376633], [-77.33239050769544, 34.65365968594346], [-77.33246544842348, 34.65369025909675], [-77.33284299159949, 34.65384428347385], [-77.33308803233213, 34.653944250039594], [-77.33332386524292, 34.654040460096084], [-77.33352854349775, 34.65429773259531], [-77.33363247917865, 34.65457758176039], [-77.33392752169321, 34.65505525469875], [-77.33394098972992, 34.65508513793672], [-77.33393405841599, 34.65512863436617], [-77.33396107356268, 34.65510242285608], [-77.3339637115606, 34.65508904097471], [-77.33396538881756, 34.65508179070247], [-77.33397077119595, 34.65505597110849], [-77.33404485462053, 34.654497499711155], [-77.334124126862, 34.65432031799876], [-77.33415116475521, 34.65421231723286], [-77.33423839710163, 34.65401089461738], [-77.33415791093357, 34.65353761911362], [-77.3339417449149, 34.65341251197501], [-77.33393431647711, 34.65340619833691], [-77.33392026597748, 34.65340000705158], [-77.3336971284297, 34.653301682628054], [-77.33358980042502, 34.65325438855615], [-77.33328353443237, 34.65311943109864], [-77.33290642321832, 34.65304022759433], [-77.33244648718447, 34.653481126448135], [-77.33236197446452, 34.653517645143005]], [[-77.44203055602294, 34.743798455733604], [-77.44204663264895, 34.74395323350907], [-77.44209179141089, 34.744011135868746], [-77.44208570817347, 34.74419916445777], [-77.4421033791097, 34.744452714580376], [-77.44249626451358, 34.74455898783357], [-77.44272536852141, 34.74419320338395], [-77.44270844418116, 34.74418442192342], [-77.44223438076864, 34.74395164364229], [-77.44217255935375, 34.74389899844201]], [[-77.42702617183573, 34.62592746836778], [-77.42674117661842, 34.626296461374075], [-77.4266939894643, 34.62639135189304], [-77.42643092147924, 34.626660414272195], [-77.42622383824461, 34.62673482915629], [-77.42551495825369, 34.627082311902086], [-77.42549643696695, 34.627088562980305], [-77.42547397359324, 34.62709179997169], [-77.42540259587268, 34.62712853238901], [-77.42551067284613, 34.62714060236246], [-77.42562517686048, 34.62714472953076], [-77.42614447539654, 34.62722718445683], [-77.42660429372016, 34.627294151611935], [-77.4267938985522, 34.62734773330757], [-77.42723613459029, 34.627344577308286], [-77.4273050996863, 34.627637171560124], [-77.42770997460354, 34.62749176012125], [-77.42779406328158, 34.62728447606901], [-77.42786618149381, 34.627165054765044], [-77.4280402631713, 34.62675119696263], [-77.42803891464695, 34.62674660241733], [-77.42803613818299, 34.62674391175811], [-77.42774079732874, 34.62646231270614], [-77.4276288787955, 34.62632746893826], [-77.4275419287132, 34.625957300828475], [-77.42751639019352, 34.625787787516686], [-77.42750415347176, 34.625634348244134], [-77.4274879985478, 34.62558553696114], [-77.42746832257465, 34.62543225011251], [-77.42740933455066, 34.625291427058876], [-77.42738516712424, 34.6252541516975], [-77.42733210160928, 34.62526439178791], [-77.42723386180876, 34.62531444024079], [-77.42714544469612, 34.625353917858014], [-77.42713226672902, 34.62538010101369], [-77.42707578088286, 34.62548439723959], [-77.42702454558132, 34.625558698840294], [-77.42701851030773, 34.625774080010785]], [[-77.35788809865784, 34.664053788279155], [-77.35786381921442, 34.663754592993776], [-77.35751296704957, 34.6636651166028], [-77.35747011093727, 34.66364914965706], [-77.35745296829644, 34.663646371320745], [-77.35742652764766, 34.66364303234323], [-77.35716583291523, 34.66371280369735], [-77.35727388365153, 34.66381457794409], [-77.35699310662795, 34.66422391769052], [-77.35720224774668, 34.664554792372], [-77.35770524508477, 34.66412608840495]], [[-77.38750333986863, 34.56666140502196], [-77.38766512346457, 34.56665842303722], [-77.3879435340534, 34.56612363233131], [-77.38721996802472, 34.56624278810058]], [[-77.38755331191626, 34.5287517529925], [-77.38724128010318, 34.529148805640396], [-77.38804475457665, 34.52899076555765], [-77.38811527927113, 34.528752183892095], [-77.38784627923374, 34.52869060499545]], [[-77.33079653270008, 34.563655883185824], [-77.33081966766477, 34.56373586322179], [-77.33090310403803, 34.563755503447794], [-77.33086354202955, 34.56368232669692]], [[-77.3578400726613, 34.6646494495444], [-77.35783843143709, 34.664595178503355], [-77.35783484589857, 34.66456531765926], [-77.3578563646763, 34.66436274824221], [-77.35741701210944, 34.66465307105854], [-77.35765181923595, 34.665067594505615]], [[-77.40116737075094, 34.58074700101641], [-77.40106202237062, 34.580661979654344], [-77.40096901241907, 34.580614341187136], [-77.40082602307965, 34.58052576291601], [-77.40068194808028, 34.58050772202367], [-77.4005749929565, 34.58056899746661], [-77.40030978550647, 34.58087075138676], [-77.40029263777635, 34.58099356006956], [-77.40029997856237, 34.58116849234161], [-77.40035740325686, 34.58128845463399], [-77.40048309128956, 34.58136932862688], [-77.40057497698488, 34.581414300938945], [-77.40076781675154, 34.58143702449246], [-77.40077198864792, 34.58143820644187], [-77.40077452791594, 34.58143781531033], [-77.40096900118749, 34.581407860027966], [-77.40133666943807, 34.581175546807025], [-77.40136302738391, 34.58116896359955], [-77.40137741257698, 34.58115676631175], [-77.40139252376527, 34.58113908517461], [-77.40137618107089, 34.581127270313], [-77.40136302800276, 34.581102908084674], [-77.40127594534277, 34.58082517126483]], [[-77.43498527493381, 34.67747523384644], [-77.43513203288802, 34.67739428732715], [-77.43533035722868, 34.67759591591518], [-77.43535875927041, 34.6776284532342], [-77.43536880057387, 34.67768330518015], [-77.43553289287671, 34.677946272728065], [-77.43527609909232, 34.67800379611265], [-77.4351692888328, 34.67800600481368], [-77.43495380368262, 34.67801046060505], [-77.43481754269872, 34.6778543834848], [-77.43483226156967, 34.67770124937983], [-77.43483438110064, 34.6776241575422], [-77.43488857332571, 34.67754707934919]], [[-77.40110949265735, 34.573962155513236], [-77.40100571288856, 34.57393770385442], [-77.40090378723485, 34.57392143056385], [-77.4005751238917, 34.57445701642736], [-77.40055781647649, 34.57444769153874], [-77.40057223105607, 34.57446426262834], [-77.40057278738749, 34.57446669996074], [-77.4005751233305, 34.57448077437741], [-77.40080743780571, 34.574854894908576], [-77.40089051681232, 34.57492759533393], [-77.40096910504889, 34.57499636555896], [-77.40109298308221, 34.57510476744588], [-77.40117987667556, 34.575028280163345], [-77.40136309844625, 34.57501840435058], [-77.40143952850411, 34.574975964534566], [-77.40151093702708, 34.574912683976166], [-77.4015600967035, 34.574898332512056], [-77.4016081774683, 34.57484548223174], [-77.40159497161082, 34.574778824716205], [-77.40160939963296, 34.57473916204356], [-77.4015601001418, 34.5746028083805], [-77.40152269465148, 34.57457969662284], [-77.4015117634876, 34.574488874544016], [-77.40144772057303, 34.574337919614955], [-77.4014184447653, 34.57428251265656], [-77.40136311060061, 34.57415774916851]], [[-77.3717495592526, 34.59948264994257], [-77.37158848893952, 34.59987116303459], [-77.37153963922484, 34.600017580446405], [-77.37141001382656, 34.600686374987106], [-77.37139658141474, 34.600747921269146], [-77.3714099854918, 34.60076627026454], [-77.37175420011192, 34.601174579144015], [-77.37204664770678, 34.60134033693478], [-77.3721979981063, 34.60143306304518], [-77.37222852303832, 34.601444327287844], [-77.37231023371439, 34.6014654443279], [-77.37280047158238, 34.601594893691015], [-77.37298621583759, 34.60152496999935], [-77.37317258778342, 34.60154200236944], [-77.3731907271715, 34.601542868600276], [-77.37338035737442, 34.60147359262168], [-77.37343404589117, 34.601458021829565], [-77.37350930137217, 34.6014316173617], [-77.37357744505468, 34.601395724926576], [-77.3737324707781, 34.60126058400405], [-77.37374639810257, 34.6012282393485], [-77.37377457793966, 34.60117793029636], [-77.3739826576815, 34.600799984679696], [-77.37405687673603, 34.60066865647876], [-77.374160183853, 34.600562131929266], [-77.37416221445295, 34.60055463644074], [-77.37413563018201, 34.600389286629934], [-77.37410251661764, 34.60035815882517], [-77.37397194505515, 34.600233729831324], [-77.3739362420634, 34.600208300230214], [-77.37377494375585, 34.60005653522958], [-77.37371303806988, 34.59998970304139], [-77.3735500091475, 34.59983101536213], [-77.37330974518082, 34.59962323573993], [-77.37316820677395, 34.59944832503656], [-77.37304659404673, 34.599236582082746], [-77.37298700790022, 34.59916669325456], [-77.37270281989589, 34.59916768177281], [-77.37235275098614, 34.59891196422655], [-77.37226112388771, 34.59885811771571], [-77.37219892988429, 34.59873628372047], [-77.37180557491554, 34.59856621870637], [-77.3718060962936, 34.59856483169862], [-77.37180487817037, 34.59856569203996], [-77.37180459008383, 34.59856605034757], [-77.37180440266461, 34.59856689933332], [-77.3719049642885, 34.59897646168737], [-77.37173487356277, 34.599350404278844]], [[-77.38006451063556, 34.632624255258555], [-77.38007302062226, 34.632626312375145], [-77.38009513869878, 34.63263449799087], [-77.38031335295577, 34.63257924149681], [-77.38008928963632, 34.63259401009059], [-77.38007302955872, 34.6325870561318], [-77.3800199667962, 34.63256436270819], [-77.3797626220099, 34.63256827968528], [-77.37967875754654, 34.63259444218998], [-77.37965710488868, 34.63265047963111], [-77.37966339027761, 34.63267287641156], [-77.37967873564646, 34.63268869069838]], [[-77.39399160128121, 34.52752827912583], [-77.39355950767276, 34.5274770098203], [-77.39399897952653, 34.5272001082618], [-77.39431555484325, 34.52707394133725], [-77.39447217346552, 34.527052206523784], [-77.39452070104048, 34.527173701461905], [-77.39468005966889, 34.52731530225627], [-77.39444722946557, 34.52755399974127], [-77.39439516015187, 34.52760928557951], [-77.3943674311039, 34.52761444500708]], [[-77.38276936444332, 34.5309922426323], [-77.38278637758782, 34.53107397098806], [-77.38272919154593, 34.531242867381664], [-77.3829160471127, 34.53130804759033], [-77.38321630197319, 34.53117262014037], [-77.38317184155346, 34.53109068400971], [-77.38320658716337, 34.530929189380814], [-77.3829259166112, 34.530871611415535]], [[-77.44107267491421, 34.59611082159101], [-77.4411660196078, 34.59612341102161], [-77.44122936208697, 34.59612047783483], [-77.44156010601401, 34.59612487851567], [-77.44191095177126, 34.596043604943326], [-77.4419937503692, 34.596035505704805], [-77.44226968864518, 34.59603826500213], [-77.44233971418716, 34.59603731626532], [-77.44234823443155, 34.596038576766354], [-77.44268503404942, 34.596039912524866], [-77.44281628433858, 34.59624032653553], [-77.4428591799048, 34.596305826408106], [-77.44284439765038, 34.59634306096602], [-77.44274609593012, 34.59659066780943], [-77.4426855874685, 34.59672457841683], [-77.44251656940173, 34.59706587893326], [-77.44214403311524, 34.596879008330255], [-77.44200258902163, 34.59687433861343], [-77.44195454779667, 34.5968536444247], [-77.44184330824282, 34.5968292866008], [-77.44172242459497, 34.59679207173161], [-77.44156041957035, 34.59677266488416], [-77.44140597958705, 34.59675416404305], [-77.44129302510413, 34.59674063271164], [-77.44116630821375, 34.596725452683565], [-77.44077672961076, 34.59667878216091], [-77.44078461894918, 34.59666425064369]], [[-77.32612125801177, 34.56013513219771], [-77.32612382603209, 34.560134869682784], [-77.32616725993918, 34.56017813952291], [-77.32612257426044, 34.56015354802108], [-77.32606896373403, 34.56051120189758], [-77.32582713416024, 34.560496876119984], [-77.32580359690058, 34.56026310812517], [-77.32611283866612, 34.56013777887711]], [[-77.43149261294232, 34.5039256987839], [-77.43180311708683, 34.50389191818266], [-77.43198130572534, 34.503715848841736], [-77.43200373963741, 34.50369235868445], [-77.43200849244327, 34.50367812979091], [-77.43201730877102, 34.50365173608371], [-77.43206396027654, 34.503512074995136], [-77.43197695731766, 34.503382274029065], [-77.4319703898273, 34.50333841805775], [-77.43185511812209, 34.50325384901062], [-77.43164141205955, 34.503321636940555], [-77.43131198015695, 34.503356140950366], [-77.4312679583805, 34.503471470845874], [-77.43126252123811, 34.5034806367565], [-77.43125235611267, 34.50351234638], [-77.43122132451596, 34.50360914802108], [-77.43121223172031, 34.503637512053785], [-77.43133267238767, 34.50380640875102]], [[-77.37575769576821, 34.56163895037368], [-77.37592600977112, 34.561641762479056], [-77.37615164778549, 34.56158847534016], [-77.37642667120717, 34.561516389652006], [-77.37654560956145, 34.561505875913745], [-77.37673468899288, 34.561564578963335], [-77.37675228947704, 34.56156404889709], [-77.37693953013388, 34.56155081585031], [-77.37700223397465, 34.56151753847732], [-77.37704922895992, 34.561416666098125], [-77.37712254984075, 34.56128791655101], [-77.37717320783977, 34.56110774834074], [-77.37733363897519, 34.560992981168226], [-77.37745251906138, 34.56081579633196], [-77.37752568389695, 34.56058753008115], [-77.37772785825715, 34.56005964936675], [-77.37776643171354, 34.55996296706113], [-77.37780984680927, 34.5599151684481], [-77.37795116501468, 34.559654257628736], [-77.37812811328831, 34.55902016854071], [-77.37831120480479, 34.55877294693147], [-77.37823968266736, 34.55845298201356], [-77.37781256324408, 34.558307236405504], [-77.37772837184124, 34.55839473378076], [-77.37766472668336, 34.55830645807126], [-77.37757935231254, 34.558250138396595], [-77.3769406074062, 34.55815756925598], [-77.37670002622654, 34.558117564858705], [-77.3765466876526, 34.55815983099913], [-77.37646261248622, 34.55841109257122], [-77.37635212992593, 34.5586420541663], [-77.37615248593644, 34.559022164742224], [-77.37606126889958, 34.55921981706857], [-77.37592052327132, 34.5593383427144], [-77.37560060688192, 34.559638990472706], [-77.37536431969247, 34.559971998017545], [-77.37515070369349, 34.56006821541442], [-77.37497033506133, 34.560138380794825], [-77.3748017394062, 34.56034869721323], [-77.3746856415854, 34.560483284889365], [-77.37457616424646, 34.560839549637414], [-77.37444503856543, 34.56110800118525], [-77.37444641428738, 34.561249023977425], [-77.37444549810154, 34.5613897761846], [-77.3744438938364, 34.56146166789171], [-77.37457592101649, 34.56154473820577], [-77.37462312096903, 34.56159723236518], [-77.37473631722096, 34.56163180920958], [-77.37477285547237, 34.56164186065772], [-77.3749327210952, 34.561643492285135], [-77.37496982254456, 34.56164431966672], [-77.37502009736346, 34.56164509811976], [-77.37536375887093, 34.561642642888486], [-77.37563182188153, 34.5616384184172]], [[-77.38017450847728, 34.72902789417741], [-77.38039177598903, 34.72917611439357], [-77.38044751403413, 34.729170678181774], [-77.3806788662769, 34.72929167606512], [-77.38074461123745, 34.72928242249369], [-77.38083782581822, 34.72929632004931], [-77.38099107793872, 34.729313692141055], [-77.38099261988883, 34.729313862178145], [-77.38099311201063, 34.72931362688231], [-77.38099426358431, 34.72931376732909], [-77.38122467637803, 34.72931920530951], [-77.38133179731602, 34.72925132529464], [-77.38140898488402, 34.7292464390416], [-77.38169212664755, 34.729022991765085], [-77.38162615418743, 34.728976777965556], [-77.38117123709287, 34.72869957220582], [-77.38093972649187, 34.72873653323881], [-77.38066647650696, 34.72878032826108], [-77.38047925946066, 34.72887453908541]], [[-77.34773122193563, 34.65537087037951], [-77.34778481951955, 34.65537935280902], [-77.34790465773406, 34.655424613210215], [-77.34795358234207, 34.65542245632264], [-77.34798173433511, 34.655449019022385], [-77.34810192974427, 34.65546257925306], [-77.34812198943072, 34.65546378955156], [-77.34818806885983, 34.65545075177309], [-77.34826544798555, 34.65542775085161], [-77.34820127312202, 34.65530141242416], [-77.34813351416051, 34.655247242278634], [-77.34809911645598, 34.65521660125496], [-77.34806664487023, 34.65518855598372], [-77.34797548750905, 34.6551571270645], [-77.3478946238154, 34.65512924720014], [-77.34784770325832, 34.65514023789694], [-77.34773370922181, 34.655125171174454], [-77.3474299659354, 34.65498157284575]], [[-77.44399388404273, 34.7334530996748], [-77.44405298664688, 34.73337167967577], [-77.4439443384717, 34.73334259372026], [-77.44388318549046, 34.73336735005553], [-77.4438402237101, 34.73339941638226], [-77.44387446258779, 34.73344617674139], [-77.44391007689812, 34.73346102670836], [-77.44394200182201, 34.73346341129448]], [[-77.40098656004436, 34.67071904802214], [-77.40093885401005, 34.67056628225651], [-77.40078080676035, 34.67038235653226], [-77.4007488282007, 34.670645547214114]], [[-77.39071929314795, 34.62295212880511], [-77.39059080171707, 34.62289298734436], [-77.39061715770492, 34.62302757694495], [-77.39068474529185, 34.62305502852317], [-77.3908643565039, 34.623148191407935], [-77.39076116099392, 34.622961724921836]], [[-77.46171098278468, 34.70725026912947], [-77.46170540646905, 34.70738767180601], [-77.46175210771246, 34.70723782874964], [-77.46175300855391, 34.707235180507794], [-77.46175418214868, 34.70723222954734], [-77.46177769587977, 34.707137530386596], [-77.46173493762413, 34.7072097881193], [-77.46172558118695, 34.70722559957337]], [[-77.44031592001457, 34.60255370152678], [-77.44048971023591, 34.60238097542061], [-77.44073532399885, 34.60270050562922], [-77.4402474029111, 34.60267721287269], [-77.44029049288861, 34.60257700411922]], [[-77.37807995056102, 34.62735684671899], [-77.37810301139746, 34.62731866702151], [-77.37820899621272, 34.627052581096734], [-77.37838623780314, 34.627032620608745], [-77.37844727326642, 34.62727491716926], [-77.37824436164914, 34.62735798653404], [-77.37813265529245, 34.62740602548264], [-77.37805830867038, 34.62743289644808]], [[-77.42473007962253, 34.6838502300545], [-77.42472689066409, 34.684116355637286], [-77.42424086959304, 34.68405438353968], [-77.42451706193788, 34.68377325941435]], [[-77.4325195902759, 34.73081819459611], [-77.43249678688646, 34.730805473256574], [-77.43247417075686, 34.730805769612246], [-77.4324499600372, 34.730816953842634], [-77.43237225803755, 34.73082620975413], [-77.4323287654757, 34.73089780384379], [-77.43232168273107, 34.73091188500305], [-77.4323287446469, 34.73094206054038], [-77.43233372121946, 34.73100733454833], [-77.43238725198101, 34.73103764739416], [-77.43242659648143, 34.731047985248956], [-77.43254088411419, 34.730988492907755], [-77.4325654755832, 34.73095493930403], [-77.43259597633323, 34.73089792566884], [-77.43256102096485, 34.730855768115084]], [[-77.33135395157335, 34.65712798617281], [-77.3314983749565, 34.65718807684163], [-77.33154598796656, 34.657169353616254], [-77.33165551703684, 34.65717337227231], [-77.33173589079566, 34.65707559771822], [-77.33172076148877, 34.656998865943656], [-77.33168415250067, 34.656711739508324], [-77.33149692874377, 34.65678989550124], [-77.33144885917163, 34.65694158540054]], [[-77.40138115752936, 34.673824330114506], [-77.40127161253191, 34.67373116563439], [-77.4012474467521, 34.673777522683636], [-77.40125246348309, 34.673797272029844]], [[-77.3948927588847, 34.73289427817883], [-77.3947814286797, 34.73278107865329], [-77.39474284033415, 34.732956762375785], [-77.39490674075489, 34.73298599307717]], [[-77.43820562514698, 34.6775485224217], [-77.43823965073558, 34.67754176932036], [-77.43822848542797, 34.67758589253771], [-77.43823276636635, 34.677632560459884], [-77.4381856152101, 34.6776362020272], [-77.43815874762552, 34.67760667686579], [-77.43818719354381, 34.67756366926927]], [[-77.38690483136068, 34.621727031295144], [-77.38700073942351, 34.6216667228979], [-77.3870515610811, 34.6216309993886], [-77.38712787603247, 34.62157302402738], [-77.38717151747048, 34.62141504548309], [-77.38717465886405, 34.62140435487783], [-77.3871761507627, 34.621400758323894], [-77.38717567544036, 34.621396351742725], [-77.38717152141781, 34.621388814343895], [-77.38715982226364, 34.621390512220685], [-77.38697441573865, 34.62137409506131], [-77.38682530012682, 34.62145132794089], [-77.3868092496589, 34.621488061327156]], [[-77.42933301212771, 34.69965306095099], [-77.42945181757354, 34.699579786774606], [-77.42936667436777, 34.699536737358166], [-77.42934598059277, 34.69952067260378], [-77.42922274142398, 34.69949968590538]], [[-77.4250817615778, 34.57551004448659], [-77.42511534218697, 34.57528722045749], [-77.42525764008451, 34.57529502769743], [-77.42532081135164, 34.57534838613829], [-77.42524718030447, 34.57541020844774]], [[-77.38026958083482, 34.588006402074164], [-77.38028091049172, 34.588042310851186], [-77.38028875244811, 34.588003639081755], [-77.3802809230663, 34.58799341417739]], [[-77.37623909814124, 34.63116003009539], [-77.37628046443419, 34.6310884081124], [-77.37621899247577, 34.6311412697338], [-77.37622476124768, 34.631156394685796]], [[-77.39032507780848, 34.62288706332807], [-77.39041678966532, 34.6228441783242], [-77.39032508772702, 34.62279814674264], [-77.39030714804059, 34.62285998440238]], [[-77.41476625882059, 34.620379577967], [-77.4147727249484, 34.620384918036194], [-77.41480852584243, 34.620386712760435], [-77.41496336707137, 34.620409334500344], [-77.41497852585066, 34.6203621696064], [-77.41499675935799, 34.62018325633805], [-77.41498102041453, 34.62013045024944], [-77.41496331525269, 34.62012537943541], [-77.41490516677078, 34.620097846013685], [-77.41486475616784, 34.62008134119766], [-77.41483586258146, 34.62009545304057], [-77.41476621460421, 34.62013407241153], [-77.41466178146155, 34.620195607697255]], [[-77.38560475225104, 34.56787350670065], [-77.38557661428926, 34.567923650752185], [-77.3856047303527, 34.56797887737084], [-77.38574394778234, 34.56789952300881]], [[-77.45610635033374, 34.60157180677243], [-77.45626903808963, 34.60147802941752], [-77.45633396911317, 34.601456054684895], [-77.45638414923833, 34.6014027138235], [-77.4563876681248, 34.601364690643884], [-77.4564687332089, 34.60128626784348], [-77.45650817378007, 34.60113240112996], [-77.4565101752064, 34.60109786298363], [-77.45652759873002, 34.60105661923807], [-77.45644309563787, 34.60107439284592], [-77.45624108949647, 34.60111688078349], [-77.45606928735401, 34.60125329375676], [-77.45605856903191, 34.60140327727398], [-77.45605819284728, 34.60140425774103]], [[-77.38713582741602, 34.59661211306308], [-77.38712620465226, 34.59673002314992], [-77.3870179297155, 34.59675609607525], [-77.38698661024165, 34.59659973745775]], [[-77.40328251947602, 34.623323878606904], [-77.40172497861484, 34.62230984781337], [-77.40057482532735, 34.62229095120233], [-77.40045199833537, 34.62216619509587], [-77.39978638994293, 34.6222100744259], [-77.39972693021569, 34.62220253794305], [-77.39939271442216, 34.62218670725515], [-77.39939217269588, 34.622186506280244], [-77.39939203511642, 34.62218665706459], [-77.39909086057786, 34.6221301868764], [-77.39899795667978, 34.62203078112253], [-77.39881130035326, 34.62184599497378], [-77.39883838191835, 34.621589382857486], [-77.39867820362367, 34.6214406187232], [-77.39848243435111, 34.62117494226124], [-77.39820953793325, 34.621210631391534], [-77.39791501679105, 34.621126121207716], [-77.39820954428598, 34.620860842267035], [-77.39839287155726, 34.620830073871105], [-77.39895521579324, 34.620597564590824], [-77.39899796874813, 34.62060771386075], [-77.39903470447094, 34.62057961827421], [-77.39907103217968, 34.620534813434794], [-77.39907167905305, 34.620455333133634], [-77.39952127727582, 34.619620723764164], [-77.39899798334085, 34.61908351946706], [-77.39887028552478, 34.61900301257284], [-77.39852064856203, 34.61891590720573], [-77.39849834068498, 34.61860812362744], [-77.39820958410613, 34.618769576317], [-77.39808786303813, 34.61868485812945], [-77.39801248474683, 34.61871083737975], [-77.39793596108422, 34.618575666285096], [-77.39798454731269, 34.61838647018793], [-77.3978655428409, 34.61821526048915], [-77.39805788143133, 34.61829691068495], [-77.39820959262863, 34.618342519238105], [-77.39852470831914, 34.618405573314284], [-77.39863916744504, 34.618436137329], [-77.39899798833127, 34.61859831451736], [-77.39968445177253, 34.61789889398009], [-77.39899800398425, 34.6171680890051], [-77.39895388280704, 34.61720264806366], [-77.39884406578376, 34.61717096735541], [-77.39820962173185, 34.616933575677194], [-77.39799943043577, 34.616670044357406], [-77.39769440050344, 34.616487644363716], [-77.39758560784065, 34.61632631501768], [-77.39767509283097, 34.61591467460024], [-77.39782831596136, 34.616029902900664], [-77.39786491980114, 34.61603847820149], [-77.39820963425548, 34.616344478920446], [-77.39822929783767, 34.61638931460692], [-77.39830288821604, 34.6163998803318], [-77.39899800440317, 34.61713164151493], [-77.3990075986397, 34.61713704591783], [-77.39910591961251, 34.617133197413736], [-77.39978639042315, 34.617457244668174], [-77.39997002132102, 34.61700855419468], [-77.40036423461179, 34.616724919875146], [-77.40050404679555, 34.61608237271246], [-77.40050663587981, 34.616008613488454], [-77.40057476811985, 34.61580180222876], [-77.40118937417601, 34.61598350839507], [-77.40130713941669, 34.61602684188563], [-77.40088948714369, 34.616875916779726], [-77.40164764275386, 34.61730929090269], [-77.40215155629689, 34.61740977005183], [-77.40225723138282, 34.617527752150686], [-77.40248847762146, 34.61798066798508], [-77.40293996794219, 34.618062001075], [-77.40310163591111, 34.618080952169066], [-77.40351107368032, 34.61796197761626], [-77.40372834747612, 34.61774929737667], [-77.40434815031708, 34.61722607992645], [-77.40441899997654, 34.61711062360108], [-77.40451669642698, 34.616992101251896], [-77.40461124620896, 34.61708628630595], [-77.40476206336405, 34.617166357079284], [-77.40530511060383, 34.61747470156294], [-77.40548680330707, 34.61771525366124], [-77.40567473775505, 34.61788381541702], [-77.40631495317936, 34.61840213802648], [-77.40688196814635, 34.61846762818067], [-77.40724689284448, 34.618506103788974], [-77.40700930327493, 34.61925246746768], [-77.40697372827358, 34.619394677980814], [-77.40689474890037, 34.61941975452879], [-77.40688205224471, 34.61946297175634], [-77.40547576983171, 34.62130913724121], [-77.40688233620267, 34.622762760396334], [-77.40690084109171, 34.62278188425158], [-77.40691776260395, 34.622799370999125], [-77.40729618550215, 34.62319043380581], [-77.40816614303839, 34.62431753087719], [-77.40829127821407, 34.624480529908745], [-77.40845938406537, 34.62439701251067], [-77.40863625513421, 34.62444017169508], [-77.4095648963481, 34.62462338117827], [-77.41003641127905, 34.62537600005906], [-77.41030922654353, 34.62541274017411], [-77.41048554936741, 34.625681106425446], [-77.41003656939657, 34.62661113477412], [-77.40884826709187, 34.62719722469544], [-77.40845971946983, 34.62748673648665], [-77.40784542713216, 34.627098905817654], [-77.40688266922398, 34.62651616757688], [-77.4067053245133, 34.626417613549485], [-77.40669795038912, 34.62622770287642], [-77.40670779229748, 34.626037991431], [-77.40620983806195, 34.62459982731855], [-77.40679244803644, 34.62291427580354], [-77.4043784266068, 34.623865576340656], [-77.40372865531776, 34.62413939735655], [-77.40327145228879, 34.62381783879289]], [[-77.34427818403218, 34.76560418072703], [-77.34340400178235, 34.76566540853717], [-77.3425023320639, 34.76584264828143], [-77.34211018068044, 34.76599414931502], [-77.34188274508472, 34.76603557913755], [-77.3415079898027, 34.766004657122565], [-77.34143262576097, 34.76587670180963], [-77.34105537585944, 34.76550060886851], [-77.3409945395696, 34.765425163478525], [-77.34095852809095, 34.76536277254754], [-77.3405714761898, 34.764962077891184], [-77.34054454513144, 34.764932162040644], [-77.3403748354876, 34.7647190880882], [-77.34036324018435, 34.76468958052145], [-77.34043409904132, 34.764459931256724], [-77.34055224981715, 34.76418852821094], [-77.34077058113314, 34.763773777566826], [-77.34103445159718, 34.763402863056996], [-77.34136081820606, 34.763019998434814], [-77.34150241031693, 34.76285132222394], [-77.34194603579928, 34.76243658430891], [-77.34203460000997, 34.76234023350485], [-77.34212265053705, 34.762278895546714], [-77.34215552611832, 34.7621675760919], [-77.34242997452884, 34.761749376244055], [-77.34254935401992, 34.761519602417565], [-77.34256061013366, 34.76148777430792], [-77.34287366712977, 34.76130633292999], [-77.34309926809283, 34.76141390431941], [-77.34309153013507, 34.76144793673075], [-77.343333963585, 34.761625405969234], [-77.34336782885691, 34.76166738074016], [-77.3433922963053, 34.76200503796294], [-77.3434999001926, 34.76209002410825], [-77.3442199367488, 34.762858181957434], [-77.34429311260264, 34.76288914207578], [-77.34442285942956, 34.76293819581621], [-77.34428709917833, 34.764470459200595]], [[-77.45859901910215, 34.507774016625], [-77.45838653106888, 34.5075996747082], [-77.45799444528333, 34.50702735054888], [-77.45774052681645, 34.50665670511647], [-77.45747083016704, 34.50596682322434], [-77.45734434925447, 34.50564329372564], [-77.45730275964104, 34.50531960647232], [-77.45741953062387, 34.504753827301684], [-77.45776975387955, 34.50431386658988], [-77.45892842378045, 34.5037588567561], [-77.4592249178352, 34.503254623062794], [-77.45930000433877, 34.50304056004909], [-77.45985954379294, 34.50241802867643], [-77.45987994375955, 34.50238472814451], [-77.46061404555988, 34.501756252479446], [-77.46072073984219, 34.501605059813954], [-77.4610178448611, 34.501549771257224], [-77.46222124028776, 34.50114583633229], [-77.46225319236794, 34.50114238871999], [-77.46230581597489, 34.50113989167593], [-77.46353170184855, 34.50118831284195], [-77.46361214579059, 34.50118694403132], [-77.4636536232797, 34.501218572571446], [-77.46365804692948, 34.50123526206173], [-77.46369645268048, 34.50149516794002], [-77.46372675367994, 34.501877065418306], [-77.46376295862692, 34.50191609873468], [-77.46376537798537, 34.50194310428002], [-77.46373297323578, 34.502474102206875], [-77.46370907625504, 34.50258887635329], [-77.46364517204466, 34.502788838114945], [-77.46359502645669, 34.503001120338034], [-77.46334485761834, 34.50324590379556], [-77.46296575805113, 34.5037476036366], [-77.46288028019444, 34.50384201479427], [-77.46281559011034, 34.50389455615192], [-77.4622448308696, 34.50430342998391], [-77.46194211737762, 34.50452573437712], [-77.4619059017425, 34.504556811085294], [-77.46184845827429, 34.50458672104119], [-77.46067279769638, 34.50512477457673], [-77.46065146681805, 34.50513453688401], [-77.46065027390458, 34.505135006358955], [-77.46064813677485, 34.50513556056347], [-77.46064834928545, 34.50513754803892], [-77.46056759167911, 34.505806984417646], [-77.46068879569582, 34.50634176737766], [-77.46071112138873, 34.50667057541348], [-77.46081425533265, 34.507170534970506], [-77.4610243583197, 34.507289839096515], [-77.4610305762169, 34.507695819650124], [-77.46100601331727, 34.50785578456196], [-77.46090911218558, 34.50813296363645], [-77.46087985801779, 34.50821664468136], [-77.46070597111157, 34.50823909355479], [-77.46011949292989, 34.50811392684543], [-77.45886911151847, 34.50783406850342]], [[-77.39724334858491, 34.53967679105695], [-77.39608588579881, 34.53886829976523], [-77.39608535336585, 34.53886457425479], [-77.39604956099913, 34.538842925958214], [-77.39537875373388, 34.538438069846606], [-77.39531737018919, 34.538401022181674], [-77.39477587427457, 34.53807420315296], [-77.39466909392159, 34.53800975593498], [-77.3948634047745, 34.537769585937504], [-77.39493947745477, 34.537748535681374], [-77.39505688057852, 34.53771604835617], [-77.39533005234647, 34.53783642089857], [-77.39569777789501, 34.537678637382925], [-77.39568626066529, 34.53745315765363], [-77.39593993016814, 34.53704721831657], [-77.39604151779119, 34.53691221949295], [-77.39607186471913, 34.5368672696793], [-77.39613915928301, 34.536767139628786], [-77.39630626004573, 34.536484609222285], [-77.39640479115604, 34.536370122221825], [-77.39660845275546, 34.536134911993955], [-77.39688677263678, 34.535810891692364], [-77.39690739112201, 34.53578363477283], [-77.39694767550836, 34.5357232727842], [-77.3971775924121, 34.53541838493073], [-77.39745184837814, 34.53523966479483], [-77.3977500621229, 34.53495174342069], [-77.39800311265216, 34.53482651097814], [-77.39853826444076, 34.53481206887689], [-77.39885345205606, 34.534743323063196], [-77.39893221505632, 34.53474889504507], [-77.39900655075121, 34.53472440611749], [-77.39932387955997, 34.53478767727374], [-77.40007595547648, 34.53484106744561], [-77.40008067633315, 34.53437054527505], [-77.40010585771297, 34.53435899212094], [-77.40011887506999, 34.53434459842571], [-77.4002578400776, 34.534344970783124], [-77.40022946319773, 34.53476390179791], [-77.4003607894012, 34.53497954529335], [-77.40067148720141, 34.53526460342267], [-77.40064518883746, 34.535414836216056], [-77.40056894818743, 34.53706718969465], [-77.40056369226288, 34.53723885373937], [-77.40048230480885, 34.53901150833219], [-77.39952836178092, 34.53934698463221], [-77.39762372641046, 34.54058318603258]], [[-77.33746402547669, 34.65978746222743], [-77.33741753431705, 34.659713866866404], [-77.3373159242048, 34.65968603172825], [-77.33726943014287, 34.65950955765569], [-77.33742153688374, 34.659576043294905], [-77.33745521823018, 34.65963927854273], [-77.33746919466662, 34.65966500179942], [-77.33750439264625, 34.65972888561089]], [[-77.39619221162849, 34.61463157933643], [-77.3961893467786, 34.61452862155859], [-77.39623877014913, 34.61447411394031], [-77.39638528559038, 34.61439578583159], [-77.39663296028607, 34.614263377721656], [-77.39669854018469, 34.614437771424555], [-77.39669324738017, 34.614509178777745], [-77.39674931745401, 34.61480031153327], [-77.39677515125983, 34.614921937725235], [-77.39722916577767, 34.61549867483005], [-77.39667389225835, 34.6157856830988], [-77.39597345512176, 34.61602558538916], [-77.39584451257657, 34.615974987590114], [-77.39577849164465, 34.615985928382635], [-77.39562457332185, 34.61593701660737], [-77.39576177484058, 34.6158281067971], [-77.39584452548094, 34.615719056183295], [-77.39628603911777, 34.614992478685345]], [[-77.38638753006842, 34.595169734488465], [-77.38638881506972, 34.595189725035816], [-77.38638943384811, 34.59519102407312], [-77.38641189155425, 34.59521404012181], [-77.3869080076264, 34.59596539791528], [-77.38645439900706, 34.596103010382514], [-77.38638731423514, 34.596380164806334], [-77.38612292629362, 34.59664293115329], [-77.38593112697168, 34.596955357475494], [-77.38617323257608, 34.59715093920811], [-77.38638717965017, 34.597137703388704], [-77.38669861995645, 34.59735829465365], [-77.3869123141995, 34.59737968573428], [-77.38717533346843, 34.59742667250807], [-77.38751343220916, 34.59715181776934], [-77.38754989316496, 34.59712545479225], [-77.38756948960099, 34.59709732599923], [-77.38781436423858, 34.59668386475915], [-77.38779781220072, 34.59650755508218], [-77.38789368752691, 34.59632330088496], [-77.38783582558106, 34.596256203219866], [-77.38795074165044, 34.59622564409278], [-77.38796372853584, 34.596227399383245], [-77.38805822231829, 34.596224139382755], [-77.38826035641274, 34.59629998886101], [-77.38842795291465, 34.5962463859558], [-77.38875194090573, 34.59609926301209], [-77.38894806417801, 34.595882528299654], [-77.38895246800774, 34.59567064021829], [-77.38914612685656, 34.59547853742856], [-77.38942540390713, 34.59547875513375], [-77.38954021882569, 34.59548472564189], [-77.38960979319933, 34.595500905897], [-77.39031586363593, 34.59546054011968], [-77.39032840811703, 34.5954555533104], [-77.39035384577008, 34.595441174239504], [-77.39096075853118, 34.595213143174384], [-77.39111663961512, 34.59507398458442], [-77.39159405523561, 34.59495492145336], [-77.39166736967049, 34.59443002654019], [-77.39171187547021, 34.594215634280985], [-77.39176406572209, 34.59371875132149], [-77.39181561956617, 34.59355950883377], [-77.39181602346879, 34.593463587522194], [-77.39181820237906, 34.593346851604586], [-77.39187808646258, 34.593154967542446], [-77.39189438847575, 34.593123579946635], [-77.39190504676733, 34.59307887444518], [-77.39221083774935, 34.59298281154313], [-77.39229913540674, 34.59300853844576], [-77.39233943215183, 34.59301598350216], [-77.39241210591896, 34.59304891826569], [-77.39237502887175, 34.593136045378], [-77.39229911485867, 34.59319648324592], [-77.39215240288671, 34.59335289720679], [-77.39209292335988, 34.59351951855593], [-77.39209844340446, 34.593727159151754], [-77.39215107562086, 34.59409508668286], [-77.39210599081916, 34.594366773364925], [-77.39210647138714, 34.59458389244108], [-77.39214620817906, 34.594950070751494], [-77.39233739250267, 34.5951825421252], [-77.39269296865547, 34.59539031269255], [-77.39303717162773, 34.59555992008021], [-77.39348113675356, 34.59555361462674], [-77.39383232847887, 34.59543774521392], [-77.3939352421229, 34.595441316742615], [-77.39426933355716, 34.59540826520151], [-77.39491370699557, 34.59496594485322], [-77.39505754827591, 34.59498249868868], [-77.39514240044124, 34.594869398712845], [-77.39532793148194, 34.59475123168991], [-77.39570269065793, 34.59454304491754], [-77.39584575754638, 34.5945146220572], [-77.396095757572, 34.59437115004012], [-77.39649125225148, 34.594583431096254], [-77.3961366817915, 34.59494803456847], [-77.39616205580205, 34.595055488760934], [-77.39584569705482, 34.595438316311245], [-77.39581153671307, 34.595493821978], [-77.39577199797458, 34.59553632355147], [-77.39545156717797, 34.59599058635033], [-77.39543754544674, 34.595994030434625], [-77.39532519613036, 34.596161471492536], [-77.39507838932347, 34.59648551077064], [-77.39506962585618, 34.596499907881494], [-77.39505743349676, 34.59652580959894], [-77.39502245149338, 34.59653126502383], [-77.39426920070366, 34.59699972245893], [-77.39382411094294, 34.59703605183889], [-77.3934809851485, 34.59718703200218], [-77.39286260890584, 34.59747123320518], [-77.39269275778639, 34.597452825830835], [-77.39252549034701, 34.59752264378491], [-77.39240735630203, 34.59771987112387], [-77.39255070470695, 34.597852189457164], [-77.39269271383468, 34.59788652891062], [-77.39289917245802, 34.59827562607849], [-77.39344300478163, 34.59837886002387], [-77.39348087451192, 34.59839168628207], [-77.39349863643594, 34.59839250035238], [-77.3935101630664, 34.59840997306821], [-77.39398096331506, 34.59865244473833], [-77.39423804578274, 34.598729567883105], [-77.39426905719041, 34.59874331718604], [-77.39453804497576, 34.59882108423172], [-77.39479583816032, 34.59879205229973], [-77.39505727860762, 34.598647683198266], [-77.39537491900194, 34.59848320860623], [-77.39563404248938, 34.59833146814935], [-77.39584551122523, 34.59833943267272], [-77.39609059967205, 34.598301831378336], [-77.39660018968974, 34.59800043768392], [-77.39663373883383, 34.59801083217742], [-77.39668554087287, 34.598007789496755], [-77.39672984031206, 34.59794559269791], [-77.39736168957654, 34.597789524198504], [-77.39742195806718, 34.59772640904401], [-77.39748158028654, 34.597772920560224], [-77.39781605873374, 34.59775557404274], [-77.39792887380747, 34.59777263109362], [-77.39813648691754, 34.59782204879838], [-77.3980765816156, 34.59803199999493], [-77.3980130950952, 34.59814693037799], [-77.39800219170014, 34.598174882229365], [-77.39796845014457, 34.59819149487718], [-77.3978450997506, 34.59824059570726], [-77.39781603926744, 34.598246904914774], [-77.39777557593123, 34.59826290858815], [-77.39742193085652, 34.598340201541866], [-77.39705374282926, 34.598351364098406], [-77.39674557035354, 34.598792467994635], [-77.39666426493312, 34.598837129448384], [-77.39663369301661, 34.59886728081008], [-77.39646546776521, 34.599076226608155], [-77.39626851216774, 34.59928585239773], [-77.39625209741651, 34.59930172602968], [-77.39623955997556, 34.59931013651266], [-77.39621019138444, 34.599325902145175], [-77.39604249883455, 34.59941586726326], [-77.39592852258146, 34.599424392697244], [-77.39584544221181, 34.59944082399601], [-77.39551261629654, 34.59946090285451], [-77.39529924077802, 34.599589490834944], [-77.39505721290416, 34.59956117374332], [-77.39489871814263, 34.59973726382512], [-77.39480757223848, 34.599921140523335], [-77.39466306641698, 34.60002580256289], [-77.3945211347927, 34.60023414033332], [-77.39446598992043, 34.60027927472644], [-77.39440865743873, 34.60034148745485], [-77.39429946997431, 34.60038608607834], [-77.3942689246702, 34.60037836203439], [-77.39421385988369, 34.60037201871102], [-77.39389711370377, 34.60045298594908], [-77.39387480451992, 34.60043802042427], [-77.39375004584032, 34.600363823576046], [-77.39348071011857, 34.600204296847615], [-77.39342953949102, 34.600175009571686], [-77.39333042136224, 34.600134176032775], [-77.39269251066023, 34.59990937746672], [-77.39230710459036, 34.59984780589746], [-77.39228177982125, 34.59984292166901], [-77.39190430599831, 34.599709948887195], [-77.39178356089661, 34.59963819071003], [-77.39154583340601, 34.599542386400884], [-77.39126278018394, 34.599425202303394], [-77.39111613143497, 34.59928769250215], [-77.3908272502126, 34.599334801449295], [-77.39032789760067, 34.599386478539635], [-77.38979707302931, 34.59951723341861], [-77.38953965503073, 34.599532869468256], [-77.38939667421279, 34.5996982701061], [-77.388801316313, 34.59988431762603], [-77.38875137709486, 34.59989852987734], [-77.3887112801118, 34.59990790086125], [-77.38856746306493, 34.59997182927735], [-77.38804205413939, 34.60013261979604], [-77.3879631009489, 34.60020749287523], [-77.38771927823538, 34.600356748747394], [-77.38749060796283, 34.60046725836218], [-77.3871748333029, 34.60042853301081], [-77.38681488715856, 34.600685917368594], [-77.38678067241332, 34.600687902105044], [-77.38675396886228, 34.60068660843011], [-77.38659988546694, 34.60068005392351], [-77.38658361565712, 34.600674916712904], [-77.38651543492985, 34.600553415384326], [-77.3863865971413, 34.60044366442853], [-77.38632119611279, 34.600366130071976], [-77.38623739250039, 34.60030774240906], [-77.38599254236352, 34.60009812702555], [-77.38590811361126, 34.60002160901796], [-77.38559849069267, 34.599753675404386], [-77.38523196721644, 34.59999833602244], [-77.38518759437366, 34.600016478949044], [-77.3851046996487, 34.600046453265676], [-77.38481017914509, 34.60018508522438], [-77.38471482539805, 34.600424546273125], [-77.38467145195231, 34.60053346879682], [-77.3846130405146, 34.60059577897608], [-77.384525362773, 34.60067237392232], [-77.38450642872702, 34.60067208714538], [-77.38441596996937, 34.60065401350128], [-77.38435659944142, 34.600642810834934], [-77.38422972938898, 34.600597137997354], [-77.38413634603913, 34.60048729465345], [-77.38402191553566, 34.60033995188388], [-77.3838551215531, 34.60040623226094], [-77.38379460130687, 34.60023528983005], [-77.3837721749733, 34.60008304830202], [-77.38375018981445, 34.59981712570897], [-77.38369363161281, 34.599471436888834], [-77.38366926619197, 34.599359772486494], [-77.38323583961441, 34.599042129800395], [-77.38323551658817, 34.599040498307474], [-77.38323395898651, 34.59904020300426], [-77.3832309517592, 34.599039594514444], [-77.38244584872423, 34.598540957611746], [-77.38214030238817, 34.598680016833285], [-77.38165766287537, 34.598406226737666], [-77.38124955403367, 34.59888887188221], [-77.38086921914494, 34.599342869647046], [-77.38084181361148, 34.59938715680607], [-77.38083587746031, 34.59942390875], [-77.38075223891981, 34.599824629059455], [-77.38077503531699, 34.6001446562305], [-77.38075262284221, 34.600249137481974], [-77.38047486465528, 34.60032383235508], [-77.3804462882797, 34.60032406620674], [-77.38027780358561, 34.6003331691866], [-77.38021088026281, 34.60032720568471], [-77.38010602039682, 34.600315092998706], [-77.38008075609862, 34.600288110778195], [-77.37998338453374, 34.600255085639915], [-77.3798614993941, 34.600189210187196], [-77.37970871688766, 34.59999870887929], [-77.37970212089448, 34.599975955233326], [-77.37969972102083, 34.59996229767631], [-77.37949864150218, 34.59958071270981], [-77.37929276773593, 34.59934212077018], [-77.37897608221161, 34.599148094052154], [-77.37890779930709, 34.59881672469339], [-77.37898639381523, 34.59847510591959], [-77.37922973554154, 34.59792120965635], [-77.37929315720939, 34.597852295370856], [-77.37975047014531, 34.597489597841474], [-77.38008153792153, 34.597184486969454], [-77.38081836726708, 34.596898574093245], [-77.38093738121064, 34.59689879189665], [-77.38165825037271, 34.595895698911875], [-77.38166690262901, 34.595881053800944], [-77.38166814270944, 34.59587155766819], [-77.38167265235239, 34.595855402299605], [-77.38175871180354, 34.59500937572384], [-77.38196268324855, 34.59445845774298], [-77.38211835794165, 34.59410841086583], [-77.38192795520624, 34.59384580947461], [-77.38193677656352, 34.59328545412767], [-77.38165902640813, 34.59261011041959], [-77.38162110756514, 34.5925226956636], [-77.38160258798116, 34.59248449085231], [-77.38121256396765, 34.59217268587218], [-77.3811868529006, 34.59211984374359], [-77.38103032491054, 34.59197077665843], [-77.38101272173418, 34.59187301081076], [-77.38115740435526, 34.5916995237665], [-77.3812651932644, 34.59158854263038], [-77.38152442190218, 34.5916466278985], [-77.38153155043153, 34.591783149688744], [-77.38165916144703, 34.592041815919], [-77.38184292797854, 34.59225181473041], [-77.38223048308237, 34.592160413972096], [-77.38244728514994, 34.59218314174511], [-77.3824825879498, 34.59231959034526], [-77.38268556071411, 34.59232840269248], [-77.38284132307245, 34.592364984426986], [-77.38295952237911, 34.59258608371681], [-77.38323531867559, 34.59274848846582], [-77.3835778508683, 34.59267990726995], [-77.38362941257238, 34.592688233488865], [-77.38368969162919, 34.592673172948516], [-77.38387090578328, 34.59274649155247], [-77.38402345185196, 34.59288662296824], [-77.38407441892755, 34.59292242602344], [-77.3841467828039, 34.59296691278233], [-77.38481148862726, 34.59352109531682], [-77.38511124364564, 34.593354112622364], [-77.38525657748416, 34.59328640242422], [-77.38559979808443, 34.592779235547766], [-77.38561090096727, 34.59276781708354], [-77.38562257304862, 34.59275417498452], [-77.38561956971287, 34.59273331609988], [-77.38578758677295, 34.59208342814058], [-77.38575301431652, 34.59188623758813], [-77.38569577792681, 34.59179128534997], [-77.38560001233338, 34.59165385965286], [-77.38546847354493, 34.59150269041209], [-77.38546642059633, 34.59122243702239], [-77.38541221407824, 34.591086233984406], [-77.38521401224584, 34.59069873932707], [-77.38560017371246, 34.59080929655888], [-77.38573920133838, 34.59088929263226], [-77.385991856182, 34.59100267193607], [-77.38623812080435, 34.59112892463275], [-77.38638825502844, 34.59114774883231], [-77.38691638961616, 34.591149512964805], [-77.38717638403268, 34.59124486332968], [-77.3872802891084, 34.59155405190042], [-77.38751918811089, 34.59163161166922], [-77.38757037465234, 34.59173827514552], [-77.3877486897289, 34.59183096153398], [-77.38764459339498, 34.59203809869301], [-77.38762033144913, 34.59209548282182], [-77.38757027840877, 34.592315043444216], [-77.38749790593765, 34.592483814897015], [-77.38747475851656, 34.592590012470154], [-77.38743690112116, 34.5927048939846], [-77.38739543052151, 34.59273485733075], [-77.38724125052184, 34.592945385087965], [-77.38717608167649, 34.59300725805614], [-77.38697120544515, 34.59318819294478], [-77.38662827900308, 34.593458323152724], [-77.38653739144247, 34.593632581208105], [-77.38638771055349, 34.594162515494084], [-77.38631968413358, 34.59427868030088], [-77.386269043826, 34.594359245829516]], [[-77.47593149554271, 34.57283641500396], [-77.4753036158695, 34.572059909954696], [-77.4753672547823, 34.57069070800556], [-77.47407513200804, 34.57163012750071], [-77.47368232775125, 34.57275283812426], [-77.47349536937016, 34.57353199148718], [-77.47358495796306, 34.57393599438083], [-77.47304586211656, 34.57419962816053], [-77.47148997070974, 34.57558166254157], [-77.47157583075513, 34.575710454391704], [-77.47231722303032, 34.576822596579746], [-77.4737297512698, 34.57894133865888], [-77.47377306293939, 34.57936122281737], [-77.47368960002582, 34.580061039654176], [-77.47467034390897, 34.580129169051155], [-77.47474415078183, 34.579296202079625], [-77.47486124937531, 34.57905054352429], [-77.47635463004458, 34.57738224032217], [-77.47625983270285, 34.57691564011432], [-77.4763729296328, 34.5756646517618], [-77.47630043950701, 34.575036601404925], [-77.4762957396929, 34.57494812535172], [-77.47628601025377, 34.574880918595895], [-77.47621399259914, 34.57423289207313], [-77.47612400707396, 34.57342317841635]], [[-77.33872879127743, 34.69158761609733], [-77.33932032763524, 34.69182280665546], [-77.33964015141358, 34.691949964128014], [-77.33965808235993, 34.69195709325177], [-77.33942198418671, 34.69236098617604], [-77.33940430982452, 34.692469694914124], [-77.33935623777583, 34.692583477536175], [-77.33923211327946, 34.69283099053291], [-77.33899467839447, 34.693013266192544], [-77.33897577625311, 34.69324205985599], [-77.33861851016512, 34.69351547509714], [-77.33858935628344, 34.69353778648339], [-77.33816239032302, 34.693501984740294], [-77.33801234267005, 34.69354143481004], [-77.33776194960987, 34.69342605950572], [-77.33779021359186, 34.693394175128695], [-77.33795010755287, 34.6931565612738], [-77.33819076356085, 34.692927308856284], [-77.33849724354707, 34.692817737971446], [-77.3385739167392, 34.69258361272472], [-77.33868921858887, 34.692308368793206], [-77.33851851129373, 34.69179917680615], [-77.33850738189669, 34.69165997645497], [-77.33848964350717, 34.6916204231203], [-77.33860538407525, 34.69150014917028], [-77.33866549222302, 34.691538329640295]], [[-77.32968522643225, 34.688928942977896], [-77.3297572660097, 34.688897351633386], [-77.32965026467994, 34.68795899606188], [-77.32984562908806, 34.68769885359085], [-77.32986201351451, 34.68744259342737], [-77.33005441656847, 34.687127415648234], [-77.33004983901338, 34.68692946849325], [-77.33022022499613, 34.68675422970965], [-77.33039369130213, 34.68679920130966], [-77.33046645393041, 34.68681044092313], [-77.3306624981012, 34.68684546181167], [-77.33087816448005, 34.68688783254049], [-77.33094663770315, 34.686956269892825], [-77.33119553164644, 34.687037800277004], [-77.33140250224392, 34.68744741854557], [-77.33151708436534, 34.68757867109268], [-77.3315331821865, 34.68770081016049], [-77.33167805584914, 34.688047207540315], [-77.33164809671392, 34.6882661268971], [-77.33132374104028, 34.688704272006866], [-77.33117300413565, 34.68941984919746], [-77.33150953954515, 34.68965353589284], [-77.33156881709544, 34.69050400926915], [-77.3298590197187, 34.69043065335374], [-77.32975733951211, 34.68898886825342]], [[-77.45350998103484, 34.741612337658765], [-77.45347147420463, 34.74151513532076], [-77.45347922700442, 34.741491392343434], [-77.45355339709752, 34.74126424912007], [-77.45376373694525, 34.74092621301613], [-77.45381883876377, 34.74079795858644], [-77.45387680472467, 34.74071637391297], [-77.45423180000877, 34.740383185242685], [-77.45461431293273, 34.739678333542905], [-77.45473343468562, 34.7394403924685], [-77.45479032785316, 34.73921815614196], [-77.45515502501485, 34.73891726879144], [-77.4558344954052, 34.73916904302419], [-77.45571963316048, 34.739784790714765], [-77.45575773911446, 34.74079758362413], [-77.45578208561322, 34.7409245782364], [-77.45577686852964, 34.7409788690503], [-77.45574483734387, 34.74131222509549], [-77.45568749050271, 34.74190905469735], [-77.45567815146495, 34.74200625506622], [-77.45566517781776, 34.74214127516636], [-77.45565216751595, 34.74227667438267], [-77.45546932669683, 34.74226500619425], [-77.45532252305962, 34.742329271035544], [-77.45529388075317, 34.742317393897885], [-77.4552688380215, 34.742307009355784], [-77.45516642606951, 34.74220381980423], [-77.45502590043412, 34.74218518392471], [-77.45489170476165, 34.74204518645735], [-77.4546966237845, 34.74205484255329], [-77.45440080451297, 34.74211917581296], [-77.45428769970073, 34.74213464729119], [-77.45422204962264, 34.74214362729931], [-77.45373108457618, 34.74197332340454], [-77.45359237599268, 34.74189060516858], [-77.45356460465128, 34.74182715481557]], [[-77.32105076311392, 34.7559066741269], [-77.32111175363691, 34.75548421118179], [-77.32113136215969, 34.7554082717616], [-77.32115759524918, 34.75533290886408], [-77.32121191771273, 34.75515355718836], [-77.3213289705254, 34.75504708341762], [-77.32146563565237, 34.754967458909], [-77.32158914590755, 34.754920252932095], [-77.32167353946257, 34.75489232063993], [-77.32188333771234, 34.75481791437102], [-77.32197954647691, 34.75478446964062], [-77.32200726273284, 34.75477483466852], [-77.32207472946857, 34.754744090245694], [-77.3226351214102, 34.75467593603923], [-77.32305263335525, 34.75445860744405], [-77.32311383973511, 34.7541620036437], [-77.32318373926552, 34.753891704501854], [-77.32325918883296, 34.753654729119035], [-77.32333717066487, 34.753433885794465], [-77.32334830042336, 34.7533988405082], [-77.3233726443293, 34.753352407377484], [-77.32349222503078, 34.753135442629485], [-77.3237963748755, 34.752743327130275], [-77.32389926628244, 34.75265516116296], [-77.32411083279793, 34.75256333669781], [-77.32453385040432, 34.75226749964299], [-77.3247236103264, 34.75231400861219], [-77.324832965753, 34.75246440987583], [-77.3249074292678, 34.75256682377298], [-77.32515522634627, 34.752907625817144], [-77.32513959775694, 34.753176585381446], [-77.32497181425879, 34.75360571140867], [-77.32457782962769, 34.75396145711882], [-77.32465433156034, 34.75433779295797], [-77.32506635959359, 34.75455597224011], [-77.32621545471797, 34.755686565037706], [-77.32445473824382, 34.75665867965675], [-77.3231587261701, 34.757063754967575], [-77.32313611613269, 34.75707265315091], [-77.32311944087515, 34.75707161241838], [-77.3222679012427, 34.756960219018524], [-77.32199026365346, 34.75689266648276], [-77.32159064710666, 34.75669253728208], [-77.32123216341962, 34.75636919173887], [-77.32114580993125, 34.756246228303056], [-77.32104527489997, 34.756022254906426]], [[-77.41990072633058, 34.52563155403907], [-77.41908713093112, 34.525305393825036], [-77.41864101081214, 34.52483423700977], [-77.4191850689999, 34.52426670871065], [-77.41997895576515, 34.523807715152024], [-77.42008728800361, 34.523712109597554], [-77.42118742970911, 34.52371361189609], [-77.4215477000096, 34.52386018646292], [-77.42199029190508, 34.52407113282593], [-77.42232514192233, 34.5241993686183], [-77.42237880202968, 34.524259687619896], [-77.42241230803381, 34.524289152847594], [-77.42254825205876, 34.52437276474785], [-77.42255123045868, 34.52441306582222], [-77.42245220391672, 34.524528228862536], [-77.42231386807963, 34.52470845575593], [-77.42222424179997, 34.52475069608328], [-77.42214568962439, 34.52481737908403], [-77.42162071244157, 34.52531726418444], [-77.42152614340507, 34.52539661957626], [-77.42152307217168, 34.52540302301875], [-77.42151302559262, 34.5254252993532], [-77.42087889586178, 34.52608304977914], [-77.42079980257982, 34.526480976678094], [-77.4208670007605, 34.52657381928327], [-77.42071111695265, 34.526972654318875], [-77.42070782945308, 34.526983955702924], [-77.42093413743726, 34.52704513637819], [-77.42090353697711, 34.52708812599378], [-77.42077867488615, 34.527162957589034], [-77.42069275672725, 34.527018020883226], [-77.42066678998702, 34.52700624853078], [-77.42005490934412, 34.52717224310378], [-77.41990437780994, 34.52717114416639], [-77.41943633550284, 34.527167725013456], [-77.41990860305219, 34.52698058513892], [-77.42066583276666, 34.52697260205409], [-77.42041691642952, 34.52653631715481], [-77.42029475087367, 34.52632219299683], [-77.4199371014384, 34.525695312059405]], [[-77.32485737181351, 34.648033920538104], [-77.32463303322442, 34.64792191659708], [-77.32480755246308, 34.647874509348455], [-77.3239961095974, 34.64495337796656], [-77.32385267859583, 34.64465300495506], [-77.32325120739495, 34.64413213604554], [-77.32316929945473, 34.643902728068184], [-77.32297063659541, 34.6435397053623], [-77.32295242843631, 34.64347252296861], [-77.32290445447977, 34.643095064280885], [-77.32290521327732, 34.64309387787086], [-77.32317595223799, 34.64301389250155], [-77.32320707203418, 34.643002834983925], [-77.32366900098971, 34.642990235895084], [-77.32382407250556, 34.64299849555864], [-77.32385236385437, 34.64302786024013], [-77.32386642683662, 34.64299136141597], [-77.32441442224844, 34.64297789800221], [-77.32448044952719, 34.642967172907646], [-77.32455305142823, 34.64296523110886], [-77.32494772800305, 34.643070186268076], [-77.32518535621651, 34.64328913651369], [-77.32556324481581, 34.6432412732981], [-77.32581990205806, 34.64326061641705], [-77.3260202922414, 34.643000738226526], [-77.32615604043058, 34.64297432927535], [-77.3263927744973, 34.642924922168746], [-77.32668078319497, 34.642950192121404], [-77.32676134129206, 34.64292412842364], [-77.32684659569006, 34.64310503821865], [-77.32681796699812, 34.64340240413224], [-77.3266178695851, 34.64404603440816], [-77.32657447102221, 34.644185627588946], [-77.32653078357008, 34.64428576862977], [-77.32636753930765, 34.6448512223348], [-77.32626234513629, 34.645228867038185], [-77.32601953326606, 34.646043837316846], [-77.32601258296174, 34.646330345664566], [-77.32488580919633, 34.64788725777737]], [[-77.3832277451154, 34.629673481490606], [-77.38308963008652, 34.62978056948132], [-77.38311911529388, 34.62962761181953], [-77.38320576360562, 34.62959143866108], [-77.38322776373835, 34.629576296217365], [-77.38388079024332, 34.6286687291928], [-77.38396275425336, 34.62859909068025], [-77.38401645938325, 34.62856413356982], [-77.38419678657384, 34.62839278879822], [-77.38423969366596, 34.62837664858473], [-77.38441073898761, 34.62840052534206], [-77.38469522031946, 34.628433165038274], [-77.38480498019918, 34.628448503885], [-77.38511430450792, 34.62849097420076], [-77.38480486543347, 34.62910997318494], [-77.38466873602711, 34.62925774674934], [-77.38407729741073, 34.62942385775935], [-77.38401630957907, 34.6293833676225], [-77.38368036529263, 34.62954673921657], [-77.38329793119057, 34.629677428307524]], [[-77.46242729191702, 34.58985160484234], [-77.46063405927087, 34.59028619033328], [-77.46040901247682, 34.59056113021381], [-77.45966471369096, 34.591362489664924], [-77.45952233796919, 34.591552669987934], [-77.45928499427089, 34.591849001604785], [-77.45907912246514, 34.592285495247225], [-77.45901826758688, 34.592375049881895], [-77.45895667854924, 34.592452604709926], [-77.45907455819433, 34.59245473637424], [-77.45912572061546, 34.592455661488486], [-77.4592510038326, 34.59245648434732], [-77.45965301280404, 34.5924617825997], [-77.45982410222805, 34.59245236062209], [-77.46018090799802, 34.592470102343896], [-77.46077045853372, 34.5922092304303], [-77.4608371095374, 34.59265459059327], [-77.4613596202423, 34.592935572458245], [-77.46199338185728, 34.592542271937326], [-77.46230144082543, 34.592536050645876], [-77.46251097173328, 34.59235835077385], [-77.46266655225708, 34.591718795314854], [-77.46257086573783, 34.591421318503855], [-77.46265021227013, 34.59116833399217], [-77.4628252351545, 34.59061026915538], [-77.46300029304025, 34.590052083772946], [-77.46329060676638, 34.58912634393033]], [[-77.32877826578843, 34.75697892954206], [-77.32910626880522, 34.75714433175024], [-77.32916701557558, 34.757174963427225], [-77.3292553825013, 34.75721952101607], [-77.32924665757754, 34.75739398618392], [-77.32897942545955, 34.75758047224856], [-77.32888638890526, 34.75739067041198], [-77.32875340746138, 34.757288299533435]], [[-77.39319361959248, 34.65079709036931], [-77.3926883732515, 34.65079708103691], [-77.39230246482151, 34.650797070095216], [-77.3918996647731, 34.650797058459624], [-77.39129526210732, 34.65052677415174], [-77.39116988394795, 34.65048143038364], [-77.39111098991506, 34.650384816143955], [-77.39071302532466, 34.65018221542687], [-77.39026742690073, 34.649884891114304], [-77.39017570457412, 34.649681117112586], [-77.39101058455992, 34.64886953282048], [-77.39107292487296, 34.64881942540933], [-77.39111112200284, 34.648788722689524], [-77.39118184267575, 34.64876870777125], [-77.39268852976382, 34.64834221176677], [-77.3942036548888, 34.64834224230235], [-77.39426589887633, 34.6483422435928], [-77.39432916661244, 34.64832304407384], [-77.39441958259127, 34.648543596896666], [-77.394265892056, 34.64849251897099]], [[-77.39424493697771, 34.529638821474855], [-77.39426062616948, 34.52982417830354], [-77.39401421572325, 34.529907205392604], [-77.39393770487357, 34.52992552004546], [-77.39383429536207, 34.52994986287167], [-77.39354304410212, 34.53002104737077], [-77.39334082310529, 34.5299569112647], [-77.39325726539946, 34.52990403356617], [-77.39318461629139, 34.52975210589645], [-77.39320928249455, 34.529731058460754], [-77.39335569475436, 34.52958698048943], [-77.39390947267603, 34.5294100234508], [-77.39394834319957, 34.5294523376515]], [[-77.3478753612086, 34.76051512140311], [-77.34717740684778, 34.76092761252445], [-77.34708729149432, 34.76074072421901], [-77.34703415382104, 34.76063051846224], [-77.34614075705196, 34.75989179058116], [-77.34590757276914, 34.75981029616607], [-77.3456108494009, 34.759510878895114], [-77.3452626327478, 34.75941138190687], [-77.34524821727216, 34.75939552944829], [-77.34523160898254, 34.75937726540964], [-77.34514274246669, 34.75927953945583], [-77.34519756586974, 34.75917661796563], [-77.34518881425086, 34.75904702438007], [-77.34527515782406, 34.75892228678089], [-77.34531838408375, 34.75886609599447], [-77.34542236102678, 34.758720903123596], [-77.34561230787986, 34.75848817080188], [-77.34566551180717, 34.75838136767711], [-77.34573771237382, 34.7582307882989], [-77.3458297293724, 34.75804248019793], [-77.34608115589704, 34.75783697741683], [-77.34636162026838, 34.75755031320905], [-77.34668184593531, 34.7575207304177], [-77.34701824780058, 34.75735223616814], [-77.34740439436766, 34.75734339253897], [-77.34744892969321, 34.75764935217332], [-77.34751780983206, 34.75804456137937], [-77.3477301572196, 34.75844931873659], [-77.34779721883068, 34.75857633154421], [-77.34773814910838, 34.75866350715611], [-77.34780494735978, 34.758768112009555]], [[-77.45309261957902, 34.6162301576621], [-77.45312021460838, 34.61632553348975], [-77.45304550646355, 34.61632382146671], [-77.45225449574562, 34.617261445056236], [-77.45225090132651, 34.617261988382346], [-77.45224823268279, 34.61726259279176], [-77.45176536518724, 34.617408898853775], [-77.45174471395546, 34.61740420024273], [-77.4514642116362, 34.61730680804924], [-77.45144082196597, 34.617286476451085], [-77.45149874604135, 34.61710508671566], [-77.45134735402715, 34.61694407946313], [-77.45150297878496, 34.61673461899994], [-77.45136958742626, 34.616508118505706], [-77.451211945598, 34.616079098578034], [-77.45096623222548, 34.615571951642266], [-77.45218376567738, 34.61551263226787], [-77.45300515886889, 34.61617649132841]], [[-77.38392651530253, 34.64404033938134], [-77.38357457267955, 34.645222838608206], [-77.38322479760188, 34.645507157825406], [-77.38265274924387, 34.64606157439468], [-77.38243600757355, 34.6461816933576], [-77.38225716494865, 34.646077805009796], [-77.38164735330108, 34.6461096545344], [-77.38120762975177, 34.64603642800796], [-77.3809997171121, 34.64591457753804], [-77.38085871758904, 34.64595383879729], [-77.38069147402044, 34.645930711076076], [-77.38007005841283, 34.64591790461679], [-77.37980496174106, 34.64595307060212], [-77.37960693706776, 34.64591650358574], [-77.37928147611925, 34.6455457587956], [-77.37912747134396, 34.64548694230545], [-77.37927936290893, 34.64461844330177], [-77.37849291119903, 34.6451296383502], [-77.37817377007235, 34.64528073674588], [-77.3777041980178, 34.64534431828545], [-77.37734853932479, 34.64536024290111], [-77.37730985552719, 34.64538894092833], [-77.37721663924876, 34.64543794643926], [-77.37691550217079, 34.64547442150581], [-77.3767886340138, 34.64568726519414], [-77.3765479977522, 34.645570913395154], [-77.37642738454481, 34.64568373938236], [-77.37639698860681, 34.64568387765487], [-77.37622175466545, 34.64554072793178], [-77.37611730128039, 34.64549331322165], [-77.37616061207213, 34.645237136571126], [-77.37621950967099, 34.64515632623948], [-77.37635775960975, 34.64503673128429], [-77.37691582834472, 34.64420412383445], [-77.37694904680804, 34.644138201457004], [-77.3776873793319, 34.64401457886308], [-77.3777045295187, 34.644004327945304], [-77.3777173203885, 34.64400557607583], [-77.37837426559557, 34.6440252095598], [-77.37849313984498, 34.64416881071259], [-77.37927665122206, 34.64461090633803], [-77.37928691066321, 34.644609231867854], [-77.38007048670406, 34.64396095616916], [-77.3802810865246, 34.64384924395293], [-77.38161504208763, 34.64346571621205], [-77.38164788287352, 34.64346117915563], [-77.3817005248597, 34.64347472512625], [-77.3827743155255, 34.64374871572552], [-77.3832250954893, 34.64386207238445]], [[-77.32953627506103, 34.69225538547453], [-77.3298297528639, 34.69151537309954], [-77.33127157405796, 34.69092050528486], [-77.33151329294594, 34.69118594570925], [-77.33141825735689, 34.6916155382877], [-77.33150113291074, 34.691720825089604], [-77.33135342933095, 34.69173604717309], [-77.33044785761038, 34.6920635586108], [-77.32996478765178, 34.69239458671514]], [[-77.38100596494405, 34.624991015774874], [-77.38098644723651, 34.624840131710215], [-77.38125754171224, 34.624718391893495], [-77.38157625443426, 34.62467381039994], [-77.3816517869006, 34.62466029888847], [-77.3818129062703, 34.62454756270024], [-77.38204604401858, 34.62454224189984], [-77.38218521251488, 34.62439268691], [-77.38224319812883, 34.62435787959106], [-77.38229308346516, 34.62438585319261], [-77.38244026785922, 34.62458070880027], [-77.38246049509891, 34.62460595346003], [-77.3824793929868, 34.62462501955874], [-77.38250441850688, 34.624690523951166], [-77.38249518650188, 34.62541254504639], [-77.38257707667474, 34.625460072242106], [-77.38249912376983, 34.625534898199284], [-77.38244006279636, 34.62558297520728], [-77.38223904335396, 34.625725229070255], [-77.38165154742944, 34.62577946758593], [-77.38132060753682, 34.626133924091306], [-77.38086294179575, 34.626363107832844], [-77.3807688553705, 34.6264684371679], [-77.38034621355537, 34.62633797752675], [-77.38007453570992, 34.626038793655425], [-77.3797878703333, 34.62586194061602], [-77.37985629946098, 34.62561695321733], [-77.3800746213142, 34.625670517122806], [-77.38068205047932, 34.62553810917186], [-77.380863208155, 34.6251691133501]], [[-77.37355969927467, 34.54653100142193], [-77.3735686281499, 34.54651876364613], [-77.37372729830915, 34.54636417314451], [-77.37394184733742, 34.546217870527016], [-77.37451111808655, 34.546248719952715], [-77.37466957186373, 34.545870437506686], [-77.37528640654591, 34.545632425876576], [-77.37553289377585, 34.54530714977808], [-77.37557383307816, 34.54527553656148], [-77.37562449398294, 34.545243151157266], [-77.37601250209599, 34.54499220666262], [-77.3769016296853, 34.54456940753755], [-77.37701599041739, 34.54448690460523], [-77.3771247986037, 34.54435699881067], [-77.37740579689867, 34.54432198810293], [-77.37857506327636, 34.54425181130125], [-77.37869860643501, 34.54420388368501], [-77.37896520900111, 34.54344820309986], [-77.3789367875357, 34.54329671439129], [-77.37898965158789, 34.543122860360896], [-77.37906032805307, 34.54299778807194], [-77.37929378059525, 34.542755588645065], [-77.37937482255818, 34.542654066204975], [-77.37952175682194, 34.54252686642177], [-77.38003580089989, 34.5421589510648], [-77.37999677414896, 34.54196320199976], [-77.38032451055099, 34.54174936255271], [-77.38086090913225, 34.54155032820207], [-77.38105189781541, 34.54148301189734], [-77.38116089808345, 34.54147893292222], [-77.38190469866159, 34.54131163340733], [-77.38202970568709, 34.54138180358215], [-77.3819033123998, 34.54188250092393], [-77.38190421855866, 34.541889559573825], [-77.3818994037697, 34.54189518435644], [-77.38189118733261, 34.541908914999425], [-77.38147781627733, 34.54268349114126], [-77.38130445860062, 34.54295535922321], [-77.38107542115596, 34.54326203211296], [-77.38096080251347, 34.54342539371581], [-77.38090566216108, 34.54350251944596], [-77.38077928558451, 34.5436992515332], [-77.38058207446963, 34.544038833167356], [-77.38044894314106, 34.54416980407898], [-77.38026452437322, 34.544398938202065], [-77.38015824888456, 34.54452510390433], [-77.37999859994066, 34.544612616243384], [-77.37973642818234, 34.54481663185749], [-77.37961694818381, 34.54515729880379], [-77.37945631775538, 34.54541611479215], [-77.3791401155732, 34.5455199748381], [-77.37866346029313, 34.54575501540075], [-77.37807175503535, 34.54599374067828], [-77.3770794731387, 34.54635572801379], [-77.37693923819069, 34.54643630742485], [-77.37568878942191, 34.54670285628279], [-77.37553170451025, 34.54674510828771], [-77.3754999759818, 34.546757538986384], [-77.37546679363892, 34.546755574291474], [-77.37537863778005, 34.54674755927062], [-77.37471637641275, 34.54668734728092], [-77.37460505153504, 34.546791098320945], [-77.37450745639545, 34.54687311819575], [-77.37424051218719, 34.54711048401124], [-77.37392130058156, 34.5471224349373], [-77.37384464752141, 34.54701792312495], [-77.37381195828797, 34.546973352406305], [-77.37373065485698, 34.54686249868198], [-77.37368606937045, 34.546746666800495], [-77.37361695331406, 34.54670747194373]], [[-77.35553017677456, 34.76336383856087], [-77.35585042899402, 34.76308831347255], [-77.35626795580359, 34.76263090007933], [-77.35665512337289, 34.76223467947673], [-77.3572270716567, 34.76175460940274], [-77.35767312352996, 34.76191828997551], [-77.35773207246028, 34.76201584817809], [-77.35775598056168, 34.76208357885658], [-77.35787162998544, 34.762325406198045], [-77.35777295843967, 34.76277285123428], [-77.35804308149807, 34.76270709944474], [-77.35812429141458, 34.76289687758983], [-77.35817904756692, 34.76300027615498], [-77.35820174183074, 34.76303442572482], [-77.35822892565506, 34.763098534605994], [-77.3582635094886, 34.76318403468169], [-77.3582999940251, 34.76334293796624], [-77.35830311947149, 34.76347062975542], [-77.35822194801196, 34.76361022407731], [-77.35829869010897, 34.76388960645161], [-77.35829631884627, 34.763947254198946], [-77.35829736653972, 34.76395880387687], [-77.35830234370027, 34.76398321269929], [-77.35825930483666, 34.7640251986272], [-77.35816852130493, 34.764045538090166], [-77.35761850679876, 34.764168766420035], [-77.35718115073443, 34.76426675174607], [-77.35697987627748, 34.76430486006512], [-77.3567218534424, 34.76436964880901], [-77.35569609789786, 34.76459945002891], [-77.35458233927412, 34.764518179148425], [-77.3544211499444, 34.76456206987111], [-77.3544951643866, 34.76444097827633]], [[-77.38359717825672, 34.56209498780954], [-77.38361276519858, 34.562025226536676], [-77.38363638094057, 34.56168893579277], [-77.38364823848724, 34.56162091260773], [-77.38368439969574, 34.56156397780845], [-77.38382634655888, 34.56137532478946], [-77.38385630262935, 34.561353975338115], [-77.38403040040352, 34.56132070277173], [-77.38418688956463, 34.5611186820545], [-77.38434247279089, 34.56100794622753], [-77.38462272083362, 34.56084214023754], [-77.38481839415384, 34.56074061229228], [-77.384893618646, 34.56067327205299], [-77.3852005648989, 34.560560669256304], [-77.38521236088165, 34.560569925835395], [-77.38525767355264, 34.560539718858195], [-77.38554662497606, 34.560433716366234], [-77.3856063260391, 34.56039893414379], [-77.38570014950524, 34.56037479832755], [-77.38608329531905, 34.560934850531176], [-77.38577534388298, 34.56131420601507], [-77.38560611562355, 34.561387312674206], [-77.38515884502516, 34.56177027160784], [-77.3850423166279, 34.5622690386045], [-77.38481802795854, 34.56239140556912], [-77.38405602290942, 34.56243914274698], [-77.38403014033652, 34.562446266368354], [-77.3840021790093, 34.56244914758254], [-77.383791592785, 34.562449375676714], [-77.3836362495195, 34.56224652435854]], [[-77.42557373800302, 34.73187019846898], [-77.42571398907313, 34.73181696629416], [-77.42580086829906, 34.731787919063926], [-77.42596246060727, 34.731757510027904], [-77.42638692437086, 34.73181409574531], [-77.4264206203283, 34.73186187131847], [-77.42649437304877, 34.7320897439985], [-77.42647574429806, 34.732223428055114], [-77.42647718585548, 34.7323632686306], [-77.42640448322985, 34.732479767359806], [-77.42630062717072, 34.73258108764151], [-77.42620437955875, 34.732608784273225], [-77.4260335499566, 34.73262152897706], [-77.42577598051491, 34.73267723517837], [-77.42562073795449, 34.73269486231628], [-77.42553271627534, 34.732714111096854], [-77.42529146242705, 34.732787408487184], [-77.425236091444, 34.7328142181977], [-77.42497269157931, 34.73295551676998], [-77.42478614312327, 34.73307815318853], [-77.42452499389594, 34.733148024987784], [-77.42413675484681, 34.73322238317824], [-77.42411650387334, 34.73322842274023], [-77.4240999295687, 34.733233704562664], [-77.42397805209194, 34.733265221088566], [-77.42375394914454, 34.73332139956493], [-77.42372187302907, 34.73333146691554], [-77.42368354567645, 34.73334349618816], [-77.42340131315524, 34.73343207647193], [-77.42333499245711, 34.73322165530589], [-77.42326484493775, 34.73311631309737], [-77.42328634695713, 34.73299373612868], [-77.42329768880498, 34.7329290787692], [-77.42330708586887, 34.732875507953366], [-77.42333732953992, 34.732703096048816], [-77.42334389058357, 34.732665692725845], [-77.4233549720615, 34.73263234817522], [-77.42338968095575, 34.73241469326388], [-77.42342962208448, 34.73241612498131], [-77.42358049178966, 34.7323525453734], [-77.4237031159085, 34.73238975866614], [-77.42383826585531, 34.73243077275961], [-77.42400564604624, 34.732452116754125], [-77.42409343015422, 34.732442831124246], [-77.42433352328746, 34.73242693158779], [-77.42453030397468, 34.73240882035813], [-77.42475136641141, 34.732319082868926], [-77.42491398988277, 34.73228789835798], [-77.42504685274568, 34.732177699930745], [-77.42521749308328, 34.73203595684157], [-77.42531324443772, 34.731956419898346]], [[-77.32464572447147, 34.55913967649093], [-77.3249581065207, 34.55914794844749], [-77.32554760094267, 34.55918324925817], [-77.32566492888084, 34.55879834839268], [-77.32553872624891, 34.55846441482475], [-77.32565048024233, 34.55831079976987], [-77.32562363970288, 34.55822658611736], [-77.3256674242296, 34.557818735570834], [-77.32568003827872, 34.55739231811974], [-77.32567539671496, 34.55725810179476], [-77.32578880017601, 34.5572001608098], [-77.32589407069287, 34.55723046815206], [-77.32657783669941, 34.55704038695633], [-77.32693487664451, 34.55714697591845], [-77.32712539218949, 34.55726458229683], [-77.32735653736536, 34.557324675013845], [-77.32757608202495, 34.55740639064538], [-77.3275952153158, 34.557541707374675], [-77.32775439333068, 34.557754174852406], [-77.32766239372185, 34.55802168131152], [-77.32767619534509, 34.5582321606954], [-77.32768851544373, 34.55828662270143], [-77.32785135603277, 34.558484153567264], [-77.32796631778051, 34.55855917295132], [-77.32810976730978, 34.558704292760574], [-77.32829166170906, 34.5589105040157], [-77.32846040454453, 34.55911075753667], [-77.32847581103204, 34.55912885354315], [-77.32848069769815, 34.55913545128783], [-77.32849202546016, 34.55915183804675], [-77.32863004799275, 34.55935150125857], [-77.32848670700758, 34.55959160964255], [-77.32837568058441, 34.55969304205381], [-77.32809265235754, 34.559723981996456], [-77.3278752022166, 34.55969435378058], [-77.32769877986958, 34.55965408943675], [-77.32734621525796, 34.559536004452305], [-77.32732504362521, 34.55952673766524], [-77.32730569121394, 34.55950993104816], [-77.32689485628381, 34.55936941588222], [-77.32652724267334, 34.55921392411189], [-77.3258338569671, 34.559322609296714], [-77.325739149926, 34.5593322927803], [-77.3250504511726, 34.55986589926308], [-77.32499424655092, 34.559931391902566], [-77.32494049824665, 34.560431133355], [-77.32487685347552, 34.560671569403425], [-77.32428012955927, 34.56068797508175], [-77.32415246632266, 34.56059142647813], [-77.3236436646707, 34.56006802790707], [-77.32362822824692, 34.559909056894654], [-77.32337255415578, 34.55978612154209], [-77.32266117911273, 34.559675050321246], [-77.32256114087558, 34.55924430223312], [-77.32267637272618, 34.558779068951644], [-77.32270755563817, 34.55873364421212], [-77.3234087238805, 34.55823475755652], [-77.32354215706799, 34.55852630599704], [-77.32357970229808, 34.55860834030414], [-77.32363669425906, 34.558937432096606], [-77.3240487701703, 34.55903057156541], [-77.32417407269253, 34.55909204989108]], [[-77.4171867108557, 34.732751031362355], [-77.41744740492662, 34.7331201808359], [-77.41696541825696, 34.73395798992459], [-77.4168491373686, 34.734067252828545], [-77.41602501585672, 34.73485923620449], [-77.41570908058151, 34.73519602652188], [-77.41498607733686, 34.735921154879726], [-77.41256748813413, 34.736045730963106], [-77.41187281911071, 34.73608149786493], [-77.41231709145711, 34.735636468737084], [-77.4125794912703, 34.73537482560096], [-77.41385407263147, 34.73410018920091], [-77.41458754834598, 34.73336303199697], [-77.41467999538371, 34.733270784717355], [-77.41516234566106, 34.73292443770449], [-77.41562341192997, 34.73248245310192], [-77.41587648791835, 34.732477598156315], [-77.41598021955191, 34.732489046898735], [-77.4161417333516, 34.73251603128045]], [[-77.37991069567715, 34.64215010162133], [-77.37928226462421, 34.642103734409964], [-77.37921712976251, 34.642077531585564], [-77.37869608816672, 34.64193464122684], [-77.37849377357202, 34.64152012039875], [-77.37821848562233, 34.64192507476866], [-77.37802368390379, 34.641906358477804], [-77.37770505431915, 34.64189390043748], [-77.37765792433515, 34.6418775523308], [-77.37768524912107, 34.64147049359913], [-77.37696813245437, 34.64160793443342], [-77.37691650528144, 34.641582173482625], [-77.37690334264714, 34.641575845355604], [-77.37686922242828, 34.64156658534627], [-77.37644185756221, 34.6412901539212], [-77.37643621481388, 34.64111168059799], [-77.37666856005069, 34.64101348848648], [-77.37691653927263, 34.641451105627674], [-77.37766633939135, 34.641409963719795], [-77.37772680626405, 34.64141977644281], [-77.37849385183202, 34.641194445773294], [-77.37893668229404, 34.64126880328314], [-77.37920782299713, 34.6413100972116], [-77.37928232944975, 34.64182258074932], [-77.37951637154825, 34.6414372023863], [-77.38007097145581, 34.64176001978291], [-77.38012592976416, 34.641887416624414], [-77.38022946162513, 34.641931707212265], [-77.3815142547657, 34.64330096347732], [-77.3800707177461, 34.642910673017894]], [[-77.4832949610473, 34.6882758228051], [-77.48301241512235, 34.68898835391048], [-77.48236021416625, 34.69020129881663], [-77.48227481053665, 34.69067594785247], [-77.48201838355126, 34.690837031354675], [-77.48202798962421, 34.69103059692078], [-77.48212346740455, 34.692472762273255], [-77.48294263007344, 34.69339546989642], [-77.48343579570606, 34.69427691158373], [-77.48429592273808, 34.69386800185117], [-77.48501382319415, 34.69305090950235], [-77.4850533625934, 34.69301463693417], [-77.48506015684029, 34.69299268602681], [-77.48521001612772, 34.69195148826104], [-77.48511962888662, 34.691341590328506], [-77.48485449744466, 34.69081134952628], [-77.48447323085055, 34.69004881327645], [-77.48396943779997, 34.68904120016097], [-77.48382684535042, 34.68875602233106]], [[-77.39991293799287, 34.58814577396278], [-77.40037230966709, 34.58786124012434], [-77.40057487908464, 34.58737935989321], [-77.40065518423353, 34.587189527970274], [-77.40057488488517, 34.586976882008685], [-77.40043133309467, 34.58652735808511], [-77.40036032964791, 34.5863829240067], [-77.39982655543176, 34.58565361170725], [-77.39989399005624, 34.58560106371363], [-77.4005749084255, 34.58541688659999], [-77.40134798949994, 34.58537509246733], [-77.40136299461051, 34.58537985448597], [-77.40137522150016, 34.585374156403454], [-77.40143556165432, 34.585378623487756], [-77.4021510800738, 34.58541539220323], [-77.40277257871841, 34.585365174982286], [-77.40293916633058, 34.58548534811907], [-77.40319641025185, 34.58569649543489], [-77.4033332166099, 34.58590835023574], [-77.40334398126733, 34.585952372532994], [-77.40345991555185, 34.58607215344338], [-77.40349831001502, 34.586176796749434], [-77.40335432291018, 34.586375455902484], [-77.40334646705121, 34.5863908572833], [-77.40333322687664, 34.58647926731787], [-77.4030509465044, 34.58684381320614], [-77.40300638143745, 34.58692264613758], [-77.40293918567886, 34.58694795283499], [-77.40273919245013, 34.587104290187455], [-77.40249979171821, 34.58729906601255], [-77.40242597588687, 34.587486972985886], [-77.4022888265703, 34.587802944816865], [-77.40232506028191, 34.58798515976359], [-77.40238832414695, 34.588382132753445], [-77.40254515000348, 34.58842521191613], [-77.40261305321187, 34.58860530786949], [-77.40269653831258, 34.58875636894474], [-77.40254515555948, 34.58896301668649], [-77.40250360556061, 34.58900090910207], [-77.40215109644423, 34.5890158692632], [-77.40178798601266, 34.589115596914866], [-77.40173941993308, 34.589136970068296], [-77.40151534247097, 34.589188284919906], [-77.40137265235343, 34.589219300396785], [-77.4013629759505, 34.58922782524655], [-77.40115478545019, 34.58944057574644], [-77.40108681029963, 34.58967469470972], [-77.40112173839083, 34.58992956710859], [-77.4011447479441, 34.59009090930991], [-77.40122688171348, 34.59035700538481], [-77.40113766187035, 34.59051650601606], [-77.40111668067638, 34.590784888234126], [-77.40115212292466, 34.59136356668223], [-77.4017688858543, 34.5916863852017], [-77.40215111603833, 34.5918627886597], [-77.40223215809152, 34.59196956032877], [-77.40228751346362, 34.59204888681245], [-77.40242566439215, 34.59215773134721], [-77.40254519642745, 34.59242675207921], [-77.4025467102975, 34.5924344289229], [-77.4025470092397, 34.59243601672387], [-77.40254728368743, 34.59243822575445], [-77.40254519673465, 34.59245020335391], [-77.40248050841834, 34.59280048851242], [-77.4024449400798, 34.592875320577456], [-77.40245222537692, 34.59297444292514], [-77.40240137182984, 34.59315121780367], [-77.40233687725775, 34.59331548918916], [-77.40215113151888, 34.59367057430544], [-77.40204126754598, 34.59366435474755], [-77.40206385524564, 34.59377946074878], [-77.40201439132035, 34.593933921170645], [-77.40196590738972, 34.59401861022468], [-77.40183114510069, 34.59423761459677], [-77.40180044322652, 34.59428879225087], [-77.40175705314809, 34.59438966686007], [-77.40165293259486, 34.59457572723642], [-77.40162717047356, 34.594691621495755], [-77.4015600118052, 34.5948477255752], [-77.40153605821826, 34.59489124873923], [-77.40152980160187, 34.5949179583279], [-77.40147644788662, 34.59501568564248], [-77.40146495223614, 34.595037188866186], [-77.4013847939342, 34.595151168734624], [-77.40137480925597, 34.59516536632517], [-77.40136296832642, 34.595182203301825], [-77.40118804839587, 34.5953680075841], [-77.40129417857614, 34.59516424338423], [-77.40125666582526, 34.59505513017484], [-77.40120609536628, 34.59496466547436], [-77.40120682978917, 34.594920489334285], [-77.40119879859454, 34.59475343088827], [-77.4011872160337, 34.594565752804364], [-77.40120836908548, 34.594327475413436], [-77.40123135062876, 34.59404138487326], [-77.40120772002662, 34.59390299421799], [-77.40125198641505, 34.59377703844346], [-77.40122993510425, 34.5931939666394], [-77.40123111977907, 34.59305046873298], [-77.4009083290787, 34.59273771766982], [-77.40078378621993, 34.592690439418554], [-77.40057481622658, 34.59244451489046], [-77.4005253694466, 34.59235642552559], [-77.40041026526889, 34.59231975868988], [-77.40018074584628, 34.59205940084339], [-77.40014078088267, 34.59197712590961], [-77.39978668053156, 34.59160665141418], [-77.39976152288104, 34.591591317381386], [-77.39972884559835, 34.59156892695027], [-77.39976099213774, 34.59153661055917], [-77.39978668274406, 34.59149977751573], [-77.40004679830761, 34.59095414277031], [-77.400237998677, 34.59064631686463], [-77.40016737859077, 34.59024636331468], [-77.39921801597876, 34.59018075690413], [-77.3989985825213, 34.590069894022555], [-77.39894010871679, 34.590047429847], [-77.39831604081013, 34.59018823227969], [-77.39821044659728, 34.59019359292246], [-77.39808604361681, 34.59024167610733], [-77.39781637467198, 34.59032145414325], [-77.39763232548722, 34.5903993806601], [-77.39755744546896, 34.59046286950691], [-77.39742229706883, 34.5905374318515], [-77.39737609543707, 34.590422351486446], [-77.3973704662218, 34.59026673489611], [-77.39737282771895, 34.590210536522385], [-77.39738979334358, 34.59017304946381], [-77.39742231806545, 34.59011681405268], [-77.39746992405168, 34.59003553006445], [-77.39752391670396, 34.58997645386802], [-77.39757464056092, 34.589920954323915], [-77.39774740133092, 34.589731926743355], [-77.39778375805875, 34.5896915090098], [-77.39781640494115, 34.58965512597639], [-77.39800234581875, 34.589470902323946], [-77.39803932834194, 34.589449638486585], [-77.3982104715895, 34.58958075814386], [-77.39847864333106, 34.589490789543916], [-77.39871914286442, 34.58916716088764], [-77.39894281585029, 34.58907477232075], [-77.39899861971534, 34.58889460614551], [-77.39941950329647, 34.58867043426899], [-77.39978675360815, 34.588261576552476]], [[-77.36522846300926, 34.78050711662775], [-77.36433429007414, 34.78292070497419], [-77.36285705712211, 34.78295373750666], [-77.3622692993944, 34.781738882609595], [-77.36193202641417, 34.781720207229064], [-77.36175407456633, 34.781696062459446], [-77.36087903398666, 34.781425044987046], [-77.36074963571372, 34.78137273460639], [-77.36052564202156, 34.780868169920645], [-77.36047297277388, 34.78070155415344], [-77.36056377241722, 34.78049809619812], [-77.36065002653216, 34.7803524694572], [-77.36081295296677, 34.780156844441066], [-77.360835991638, 34.780137933148126], [-77.36098123592748, 34.7800437518314], [-77.36111606040217, 34.779956327150806], [-77.36117480659811, 34.779909056315546], [-77.36148548507596, 34.77975921102136], [-77.36164468741923, 34.77958208776432], [-77.36192638343027, 34.779204095955436], [-77.36190194939516, 34.77911288828589], [-77.36195418199512, 34.77902820993178], [-77.36246593932594, 34.77875102277724], [-77.36255258051591, 34.77850934900748], [-77.36284826415942, 34.777927855056795], [-77.36286360669342, 34.77777173507106], [-77.3629784164019, 34.77770827071382], [-77.36311416700414, 34.7776502942689], [-77.36362989310396, 34.77727624082886], [-77.36370026804015, 34.77694606639428], [-77.3639777311948, 34.77656518447148], [-77.36404164488417, 34.776452151646815], [-77.36444996821028, 34.77608996718422], [-77.36497553885994, 34.77565968875476], [-77.36511448137345, 34.77632249560962], [-77.36484875554318, 34.77709511124538], [-77.36516970208612, 34.77746024681077], [-77.36563342855044, 34.77855350690954], [-77.36559063984389, 34.778985442516884], [-77.36424466977142, 34.77937343876368]], [[-77.44482570294745, 34.681079475039695], [-77.44440027569647, 34.681046870769265], [-77.44476464925611, 34.68129043941805], [-77.44490096102325, 34.681279539709585], [-77.44494591313898, 34.68127594508159], [-77.44505717885988, 34.68127653127997], [-77.44511937616986, 34.6811423273798]], [[-77.43804739594802, 34.67728333667732], [-77.43794186618001, 34.67730428111976], [-77.43772673838984, 34.67753269967655], [-77.437714770388, 34.67759118316121], [-77.43788839914477, 34.6778330917454], [-77.4379391541953, 34.6778904209049], [-77.43811810226312, 34.67796624561366], [-77.43816638927412, 34.677979607278246], [-77.43839340862422, 34.67804242600772], [-77.43851282338818, 34.67788946589355], [-77.43852295786502, 34.67787379826593], [-77.43862460650023, 34.6776726395285], [-77.43865964764603, 34.67758962755944], [-77.43848229445422, 34.677300532737064], [-77.43838726625367, 34.67721588210111], [-77.43834974965007, 34.67722332814353], [-77.43829346099078, 34.67723449983754], [-77.43814580793233, 34.677263804821536]], [[-77.42844666760843, 34.68056966961225], [-77.4289162538551, 34.680495700562], [-77.42894326614872, 34.680114106964545], [-77.42879612295944, 34.67992139750824], [-77.42870789525274, 34.67966683145987], [-77.42842423707337, 34.67918385001067], [-77.42777620783711, 34.6786316432507], [-77.42748014658677, 34.67948099497139], [-77.42744459101957, 34.6795851909548], [-77.42743867582121, 34.679595192440466], [-77.42744261501595, 34.679610704443604], [-77.42746039276027, 34.67961102823228]], [[-77.45630044142948, 34.74334152906218], [-77.45640708105725, 34.74335246086564], [-77.45643110210676, 34.74337374351018], [-77.45643932433761, 34.74338102333093], [-77.456537318557, 34.743424245070244], [-77.45699925848393, 34.7436263354455], [-77.45746244234608, 34.74384687935526], [-77.45753523144751, 34.743990239520656], [-77.4578326527797, 34.744585248208104], [-77.45791311147644, 34.74490092419904], [-77.45792898495847, 34.74502815184127], [-77.45779482268557, 34.745310021233294], [-77.45771683283914, 34.74549057776025], [-77.45770553482402, 34.745509109052605], [-77.45738754777025, 34.74560976491366], [-77.45732551393426, 34.745599152464294], [-77.45708173124603, 34.745558620826756], [-77.45692645071452, 34.745409922996885], [-77.45682623857877, 34.745333443699025], [-77.45661191605586, 34.74518162418209], [-77.45656035623801, 34.74514420049728], [-77.4565354796188, 34.74512666024128], [-77.45645112532218, 34.74507109668282], [-77.45612244531648, 34.74485260557959], [-77.45602202040325, 34.74478844862983], [-77.45586134529381, 34.74470372144895], [-77.45566172011739, 34.744598455032275], [-77.45548081601757, 34.74444262991888], [-77.4550242755557, 34.74401386363058], [-77.45499455791035, 34.743984022710485], [-77.45497724097169, 34.743966700511706], [-77.45487440530964, 34.7438399149143], [-77.4547204113407, 34.743652001035464], [-77.45459615500795, 34.74338565146087], [-77.45455533917665, 34.74329111965372], [-77.45463408715811, 34.743241590354195], [-77.45487164071679, 34.74308798966541], [-77.45517243007754, 34.74301690640088], [-77.45525744333301, 34.742997733399015], [-77.45527931436446, 34.74300613622802], [-77.45579405702995, 34.743203899423776], [-77.45583594309828, 34.74321454113579]], [[-77.38547377795352, 34.66553424712252], [-77.38498680836516, 34.665722577632124], [-77.38497293185951, 34.66572844032774], [-77.38468595189093, 34.665728382694404], [-77.38464160559434, 34.665753838196885], [-77.38453208768902, 34.66574313875857], [-77.38448342684731, 34.66572725510918], [-77.38441366897787, 34.665693465413135], [-77.38440002831302, 34.665682669730465], [-77.38437098546018, 34.66561671811116], [-77.38431999829255, 34.66558450402429], [-77.38432410840244, 34.66545567681446], [-77.38413355494285, 34.66536645739894], [-77.38417849566586, 34.66517354083638], [-77.38351769830675, 34.665076815218626], [-77.38340194974664, 34.6649974803375], [-77.38339052395565, 34.664991915469066], [-77.38337698537448, 34.664983157094895], [-77.38336185383453, 34.664938697303626], [-77.38343412643155, 34.66488647681339], [-77.3841412529841, 34.66435331952873], [-77.3843107029661, 34.66428310098127], [-77.38482265811326, 34.664224608425364], [-77.38525411940236, 34.66406347859652], [-77.38551522113274, 34.66414384214408], [-77.38593215243718, 34.664525389611335], [-77.38605279369916, 34.664518343437614], [-77.38615025104012, 34.66460154187774], [-77.3862729750106, 34.66496641053925], [-77.38630550976288, 34.665067579292426], [-77.38565321460793, 34.665487765575534]], [[-77.40440115751997, 34.67991369450264], [-77.40466730408114, 34.680169273315755], [-77.40481117540295, 34.68031524857878], [-77.4048694498866, 34.68030812001359], [-77.40483487285822, 34.68034506356324], [-77.40477173719434, 34.68045140951782], [-77.40470595825434, 34.6805460281239], [-77.40468789753398, 34.68057318914096], [-77.40465967856547, 34.680618787395375], [-77.40441692761596, 34.680821406839655], [-77.40433835583994, 34.68084145454344], [-77.40423721145375, 34.6807950068625], [-77.4040579701551, 34.680703285339376], [-77.40389249277636, 34.68071166057808], [-77.40359091713762, 34.68061825390154], [-77.40345556686674, 34.680570682181894], [-77.40335280177446, 34.680576950434485], [-77.40326812752805, 34.680529727526206], [-77.40318501492925, 34.68039857051206], [-77.4031428981775, 34.680358796528296], [-77.40296491988701, 34.68005227224778], [-77.40290977491459, 34.6800097041229], [-77.40288735253701, 34.67994297982776], [-77.40271668335417, 34.67964391457808], [-77.40272522071547, 34.67955017467921], [-77.40283328664798, 34.67936491662409], [-77.40284450148188, 34.6793618727771], [-77.40308562500563, 34.67939157142949], [-77.40315333250308, 34.67940182004544], [-77.40357663743357, 34.67944665379892], [-77.40375491109485, 34.67953724152499], [-77.40386900410769, 34.679609596916464], [-77.4040314751216, 34.679688589939005], [-77.40427108084153, 34.679834558700044], [-77.40430357447289, 34.679855354840754]], [[-77.47446311038499, 34.56813870476462], [-77.47488216026463, 34.56819645499207], [-77.47550092601597, 34.56781553898538], [-77.47553767191381, 34.56718712321536], [-77.4760363237211, 34.56689792316637], [-77.47563578891021, 34.56670341456108], [-77.47567182060742, 34.56626344269832], [-77.47501626089988, 34.56604629867472], [-77.47482124016184, 34.5665063260157], [-77.47460510603646, 34.56686084915198], [-77.4745807441412, 34.567080084878995], [-77.47496596572749, 34.56720356759508], [-77.47448486850219, 34.567942906334565], [-77.47447261588792, 34.56805316982146]], [[-77.39310792185611, 34.541385728701485], [-77.3928141389675, 34.541346221500206], [-77.39131789295448, 34.541686492387086], [-77.39071136762252, 34.541972904854845], [-77.39052512332027, 34.54202544185822], [-77.39046709573925, 34.542088254441246], [-77.39013074589928, 34.5421056755524], [-77.39000555795755, 34.54211215931333], [-77.38989650346954, 34.54210711142841], [-77.38973920256612, 34.542060064063264], [-77.3896330945037, 34.54199904082927], [-77.3895559066498, 34.541882157390816], [-77.38945077441747, 34.54178050775883], [-77.38925871363159, 34.54150068715262], [-77.38923143536812, 34.541322482131946], [-77.38920943712284, 34.541178770623276], [-77.38897792989509, 34.5410009546189], [-77.38893548432867, 34.54090335214832], [-77.38892605350885, 34.54087686857998], [-77.38887008504487, 34.5408150692204], [-77.3888831154647, 34.54070157098127], [-77.38893340487542, 34.54063097524369], [-77.3889658781359, 34.540397457034985], [-77.38897269682116, 34.54038047443738], [-77.3889740483512, 34.540368975662666], [-77.3889964923652, 34.54017730737917], [-77.38907760498626, 34.53987567515718], [-77.38936434650941, 34.53956546949982], [-77.38947231145052, 34.539329070290734], [-77.38981088253615, 34.53887818158188], [-77.38987628743534, 34.5388211177809], [-77.39000857898279, 34.53876204232267], [-77.39036293831091, 34.53856111309829], [-77.39060468072867, 34.538492410145395], [-77.39078001340087, 34.53865075086511], [-77.39100733441389, 34.53885144678063], [-77.39114687761791, 34.539087490252655], [-77.39114891957095, 34.53922710862128], [-77.39108348542368, 34.53940812155541], [-77.39101552931398, 34.539596106977385], [-77.39089009112828, 34.53990601091361], [-77.39111385735595, 34.54041616918347], [-77.39090522952492, 34.54059135385768], [-77.39090356033307, 34.54086158340945], [-77.39133513110251, 34.540920644702204], [-77.39247109202691, 34.541076091937704], [-77.39306373801156, 34.54115718951185]], [[-77.41161295984602, 34.62281260347015], [-77.4105469631739, 34.62282582720144], [-77.41003611288627, 34.623010815268245], [-77.40882772836027, 34.62382527542819], [-77.40976034903937, 34.622389146386354], [-77.40995388874956, 34.62227275665759], [-77.4100360034008, 34.62213656097913], [-77.41066088605567, 34.62141001536175], [-77.41072764695332, 34.62129625856189], [-77.41076839216854, 34.62096991975066], [-77.41082426892903, 34.6209093819589], [-77.41099713788591, 34.62069854179667], [-77.41104191782674, 34.62069599180609], [-77.41121846750637, 34.62083457090777], [-77.41126666733658, 34.62084608782227], [-77.41161271394816, 34.62110035758787], [-77.41175715610291, 34.62109620958345], [-77.41200691515189, 34.62104333727481], [-77.41236617677458, 34.62116387090544], [-77.41238625924142, 34.621177004353186], [-77.41240114451264, 34.621175139578234], [-77.41255837259627, 34.62130544675305], [-77.41260109445605, 34.621339213711224], [-77.41260215796083, 34.62134627811347], [-77.41245098828745, 34.62157620833551], [-77.41240121252658, 34.6216209725793], [-77.4121653998083, 34.62178800651155], [-77.4118886027117, 34.622081966126935], [-77.41176861779589, 34.62226701662373]], [[-77.33366323812521, 34.5637859644701], [-77.33373605835668, 34.563712039951184], [-77.33399850343741, 34.56354956160901], [-77.33431093405682, 34.56354153768868], [-77.33439246118968, 34.563543463947546], [-77.33445184765068, 34.563545139595334], [-77.3344734786923, 34.56360602893365], [-77.33475472138872, 34.563956348725895], [-77.33477979349964, 34.563986532570354], [-77.33478095015013, 34.563991857938454], [-77.3347860465104, 34.56399146961359], [-77.33484776829656, 34.56404331936353], [-77.33517974116003, 34.56431057753814], [-77.33519401932304, 34.5643361122647], [-77.33519979446707, 34.56435069109622], [-77.3352037565836, 34.56437605872373], [-77.33527613372785, 34.56476425648565], [-77.3351791674489, 34.56501499162054], [-77.33510678198914, 34.56513524540468], [-77.33502320490305, 34.56522515959818], [-77.33486909593964, 34.56558095645239], [-77.33487027548163, 34.56576401631564], [-77.3347846173356, 34.56573641822936], [-77.33475166733116, 34.565724255335326], [-77.33458758093875, 34.56580333200938], [-77.33447598156724, 34.56572837010397], [-77.3344274290622, 34.56569575709507], [-77.33439070970869, 34.565669190302], [-77.33423175477228, 34.5655512098304], [-77.33422047728905, 34.56552413494639], [-77.33399724414707, 34.56537292381708], [-77.33399699245774, 34.56537273217235], [-77.33399694393228, 34.56537269557944], [-77.33378280565633, 34.56520989649644], [-77.33360328785035, 34.565064451148885], [-77.33355163731468, 34.56501217053266], [-77.33347641858866, 34.56488610594999], [-77.3334363406399, 34.56481647494642], [-77.33343708197414, 34.56478345832745], [-77.33341135821381, 34.564607796275126], [-77.33331319098284, 34.56430861166152], [-77.33360426573273, 34.56389121731182]], [[-77.35034978403924, 34.72526918001366], [-77.35051404886867, 34.725172577353234], [-77.35185602740113, 34.72553767152967], [-77.35265819952835, 34.725568394107434], [-77.35279233137716, 34.72560577649752], [-77.35294043587896, 34.72570345302472], [-77.3530696367894, 34.72578664557478], [-77.35298824467202, 34.72608843869493], [-77.35287902382638, 34.726199265029145], [-77.35286461526043, 34.72633857053748], [-77.35283485638779, 34.726692709974124], [-77.35287171159867, 34.726727313868395], [-77.35282126745652, 34.727068791884726], [-77.35280402891215, 34.7271735833702], [-77.35280227660041, 34.72718456434141], [-77.3528003246129, 34.72719843122834], [-77.3526555466319, 34.727639383099806], [-77.35263732358771, 34.72769225456757], [-77.35263111242593, 34.72769544060616], [-77.3523983644818, 34.72811877563368], [-77.35211117352992, 34.728254187467726], [-77.3518977854323, 34.728313488418515], [-77.35186335739085, 34.72830505878545], [-77.35181684129203, 34.72829458581277], [-77.35173360857793, 34.72799703683172], [-77.35093105014468, 34.7280951502583], [-77.3507394697323, 34.72805093204244], [-77.35042800867384, 34.72821298747285], [-77.34954777378397, 34.72803024304338], [-77.34825478653595, 34.727321285609015]], [[-77.42574101415853, 34.68318709683007], [-77.42582955304292, 34.682945019774195], [-77.42582701075563, 34.68293763800098], [-77.42572849411786, 34.68276240583293], [-77.4258651941486, 34.68284757163003], [-77.4258405950964, 34.682940411599866], [-77.42614732163499, 34.682979809964785], [-77.42615350692219, 34.68305184043695], [-77.42615623630009, 34.683087850883055], [-77.42612950389797, 34.683183213950905], [-77.42616974971193, 34.6832494214389], [-77.42615978470668, 34.68328062960186], [-77.42609038393522, 34.68330929987778], [-77.42607693590392, 34.683332142053146], [-77.42599215221102, 34.68354672673698], [-77.42598686924892, 34.68355263124512], [-77.4259589456919, 34.683630770990575], [-77.42589650498586, 34.68352102356797], [-77.4258240579529, 34.68339368900912], [-77.42575568057211, 34.68322600933906]], [[-77.43788718315348, 34.586350465037654], [-77.4380089418975, 34.58609093062331], [-77.43803623350885, 34.58603563878167], [-77.43815581986527, 34.58585996945652], [-77.43820100412427, 34.58579431197739], [-77.43821136137724, 34.585792057181905], [-77.43840280346944, 34.58568657026868], [-77.43856991494016, 34.585713925631644], [-77.43861101915404, 34.58572817475238], [-77.43876142997209, 34.58589251134631], [-77.4387907986025, 34.585926518878075], [-77.43879090998036, 34.585933010610624], [-77.4387969587852, 34.58595396786571], [-77.43885384607039, 34.58628085284153], [-77.43895337073394, 34.58649588330474], [-77.4389610029219, 34.58675109280241], [-77.43901557111198, 34.586932701002766], [-77.43919163372647, 34.58737425825758], [-77.43933765412837, 34.58754581156331], [-77.43967603700747, 34.5878243256072], [-77.43963573667214, 34.58798093996239], [-77.43954233382212, 34.58798781038398], [-77.43919191530145, 34.58800123363116], [-77.43883686618292, 34.5880848101214], [-77.43874139735455, 34.58811753780386], [-77.43840382637048, 34.588016007599464], [-77.43804113875042, 34.588124158441275], [-77.43790465400528, 34.588064339411744], [-77.43761569260339, 34.587928215695854], [-77.4375817661933, 34.58783624668638], [-77.43753311264692, 34.58780676847715], [-77.43713463485719, 34.587533369467565], [-77.43682725514664, 34.587115242023756], [-77.43647158534912, 34.58757681311167], [-77.43641653636868, 34.58756179826228], [-77.43635104831488, 34.587553099952686], [-77.43613343718741, 34.58748314970493], [-77.4360393273685, 34.587505163299845], [-77.4359391491136, 34.58740036086729], [-77.43595007377976, 34.587282558938426], [-77.43587766597585, 34.587196954183824], [-77.43564508146096, 34.587013097480714], [-77.43557726868538, 34.58688881107477], [-77.43547980557292, 34.586829887540745], [-77.43535920626357, 34.5867306475426], [-77.43525090865695, 34.58669150268849], [-77.43521857078144, 34.58665536233829], [-77.43514206217517, 34.58657136171228], [-77.43506772336508, 34.58647987583953], [-77.43505780042574, 34.58646631105093], [-77.43507455960491, 34.58644150563853], [-77.43514215399475, 34.58633708104796], [-77.4351624542555, 34.58633404170863], [-77.43525076807029, 34.58634093654395], [-77.43532278147674, 34.58635040564833], [-77.43544780628807, 34.58638539528461], [-77.43550302411921, 34.586401937915824], [-77.43558324331528, 34.586456728359536], [-77.43564488374099, 34.58652604409261], [-77.43577842184504, 34.58664286999142], [-77.43603909618112, 34.58694256311165], [-77.43633194490513, 34.58681565887599], [-77.43643310828762, 34.586867698655965], [-77.43669814263386, 34.586939275250565], [-77.43682721659445, 34.58702354099436], [-77.43755850820112, 34.58689277023916], [-77.43761520961226, 34.58680504726124]], [[-77.4432604491998, 34.62276441634801], [-77.44373099028397, 34.62263035436913], [-77.44376327351033, 34.6226340917129], [-77.44410703532864, 34.62264384391842], [-77.44426935946595, 34.6228295840621], [-77.44429192793444, 34.62285262411869], [-77.44427474546802, 34.6228959804987], [-77.44418566237992, 34.62311000469715], [-77.44405450744003, 34.62316519855523], [-77.4438957110503, 34.62323202460943], [-77.44376848131978, 34.6232737401832], [-77.44349248163147, 34.623395066201915], [-77.44337032234064, 34.62323351943063], [-77.44327463662572, 34.62314265081546], [-77.44322691328026, 34.622805409782174], [-77.44319576892522, 34.622795884341954], [-77.44322851208992, 34.62277509608019], [-77.44323959781451, 34.622756015507775]], [[-77.35458770718337, 34.55131222282388], [-77.354438870231, 34.55138569259324], [-77.3542610230506, 34.55150304962643], [-77.35418957516417, 34.551552254256464], [-77.35399831770432, 34.55166808522955], [-77.3539696759591, 34.55168027373158], [-77.35379287798338, 34.551729672776034], [-77.35367952328126, 34.5517613449603], [-77.35341261641763, 34.55186999215105], [-77.35340109263277, 34.55187424451421], [-77.35339687247985, 34.55187688661212], [-77.35320442200634, 34.55202692659048], [-77.35315713703591, 34.55205371981764], [-77.35299801243352, 34.552148346621955], [-77.3529741929475, 34.55216327982849], [-77.35281811783237, 34.552189554485295], [-77.3528008848893, 34.5521837742441], [-77.35270242602633, 34.55215640898662], [-77.35260665188869, 34.5520931664787], [-77.35248697805514, 34.552078060506965], [-77.35241059947089, 34.55208178449239], [-77.3523469347501, 34.552063340304606], [-77.3523128817852, 34.55206266307522], [-77.352259814485, 34.55203591719663], [-77.35225723647379, 34.55201052705421], [-77.35221708465298, 34.55195994058248], [-77.35218955001584, 34.55192361927945], [-77.35220981361037, 34.55180504460549], [-77.35219892600416, 34.551799858989405], [-77.35220299632576, 34.551788025820514], [-77.3522223248085, 34.55173183395003], [-77.35232898495298, 34.55153631811893], [-77.3524013593194, 34.55138778854507], [-77.35233087741678, 34.55123071382613], [-77.35218282822424, 34.55106771020709], [-77.3520980244499, 34.55092417085129], [-77.35184994138808, 34.55085084138479], [-77.35176542374575, 34.55069310420221], [-77.35175272859139, 34.55063997000043], [-77.35165829699314, 34.55053279769311], [-77.35165416253622, 34.550527443218925], [-77.3515698843483, 34.550421464190634], [-77.35154092046703, 34.55038024646184], [-77.35153079195142, 34.5503432197611], [-77.35161960762464, 34.550291897098894], [-77.35165156789229, 34.55027779999377], [-77.35183155512665, 34.55016034007124], [-77.35186633976724, 34.550137164157285], [-77.35186928490015, 34.55013536222137], [-77.35187220964661, 34.5501331306217], [-77.35206579805295, 34.550000104601864], [-77.35208070569243, 34.54998986065171], [-77.35226485803042, 34.54988035432174], [-77.35232473939874, 34.54986022864516], [-77.35257968050675, 34.54978648304148], [-77.35266018832843, 34.54976223526041], [-77.35297531903313, 34.54968004256542], [-77.35317065099788, 34.54962983257637], [-77.35344986868371, 34.54956853460324], [-77.35369511643857, 34.54953353536045], [-77.35384325555849, 34.54953493183344], [-77.3539095180461, 34.549553483795485], [-77.35400676832379, 34.549581069921956], [-77.35423266974988, 34.54967441823088], [-77.35433286725382, 34.549715878481635], [-77.35448156821732, 34.549757546386644], [-77.35462227810933, 34.54980549487843], [-77.35491034914646, 34.5497616413396], [-77.3550139548897, 34.549846453567], [-77.35521148073332, 34.54977461720361], [-77.35531557861094, 34.54963748880847], [-77.35519080328538, 34.54954942264927], [-77.35519373708307, 34.54953261733471], [-77.3551973871721, 34.54951938474943], [-77.35521806536536, 34.5495063006838], [-77.35529358123658, 34.549457038588386], [-77.35531288007068, 34.549451392998414], [-77.35532579503527, 34.549447274158574], [-77.35541485309034, 34.54948535842422], [-77.35558100155757, 34.54945766588078], [-77.35575568006887, 34.54932931008622], [-77.35581149078651, 34.549309912644425], [-77.3561575781896, 34.54927145219776], [-77.35617646981534, 34.549286302206184], [-77.35652143775982, 34.54946389205446], [-77.35655836281346, 34.54948006151566], [-77.35659245345076, 34.549495971596876], [-77.35667110365358, 34.54949132285395], [-77.35683089501269, 34.54951520334362], [-77.35688200769292, 34.549534393363274], [-77.35682869277235, 34.54956799895847], [-77.35678736928102, 34.549556680780626], [-77.35662632013499, 34.5496936157352], [-77.35659640047514, 34.5497033484328], [-77.3565875886954, 34.549708211618714], [-77.35638868373567, 34.54985065532619], [-77.35638273280742, 34.54985433706596], [-77.35619163828333, 34.549853678511695], [-77.35600804250346, 34.55002744823812], [-77.35586598738453, 34.55009307907997], [-77.35588723031694, 34.550229289025054], [-77.35586566659599, 34.55029276761846], [-77.35588182443314, 34.55034915882284], [-77.35589304333911, 34.550411237941674], [-77.35591139829594, 34.55045237284916], [-77.35590597037607, 34.550485094331215], [-77.35590670839245, 34.550531682166806], [-77.35588096188394, 34.55056082245315], [-77.3558617011474, 34.5505877417086], [-77.35584534970582, 34.55060172102393], [-77.3557803334357, 34.55066869472752], [-77.35577593959255, 34.55067020061893], [-77.35577135395044, 34.55067357905508], [-77.35565628647714, 34.5507361691938], [-77.35549508440133, 34.55083576124654], [-77.35542930203036, 34.55087410168545], [-77.35538240215507, 34.55090026594516], [-77.35519734241024, 34.55100961355451], [-77.35515005093521, 34.5510284812027], [-77.35498521310369, 34.55109938212301], [-77.35491320240644, 34.55111973603023], [-77.35484553625099, 34.551174088123844]], [[-77.33968769467069, 34.64775757020637], [-77.33963257776108, 34.64770312273184], [-77.33971281036094, 34.64770784841748], [-77.33970370615772, 34.64775348036006], [-77.33973308016127, 34.64779694822929], [-77.33968933119759, 34.647758569638235]], [[-77.34268879750954, 34.65272349407499], [-77.34252864203397, 34.65240834971279], [-77.34267171635298, 34.65224306657077], [-77.3426826727603, 34.6522185162916], [-77.34297032536684, 34.65216613095185], [-77.34297621312396, 34.65216505870956], [-77.34298358804607, 34.65216579214463], [-77.34324876527634, 34.65218897127427], [-77.34330606714028, 34.65221319984701], [-77.34349494577248, 34.65227567874531], [-77.34362275038997, 34.65276240972743], [-77.34344579726212, 34.65290832195587], [-77.34343889149909, 34.652924401647425], [-77.34317177604821, 34.65291549259883], [-77.34312675694754, 34.65291399103013], [-77.34305377149627, 34.652898529464615], [-77.34290680485444, 34.65286598221639], [-77.34277737358143, 34.65276870557542]], [[-77.38668081459116, 34.58889031583408], [-77.38666584098121, 34.58878267116907], [-77.38674090651463, 34.58872675692042], [-77.38678276526392, 34.588688392226736], [-77.38695990124097, 34.588506522619845], [-77.38699140451766, 34.58851097637036], [-77.38717686846968, 34.58844701029168], [-77.38722210000005, 34.588441456983446], [-77.38727538729222, 34.58842490647704], [-77.38733123363615, 34.5884284832971], [-77.38737390087017, 34.58843301229671], [-77.38739802250556, 34.58843883486126], [-77.38744412510708, 34.58845817806625], [-77.38752557036975, 34.588495296109826], [-77.38757091204513, 34.58854380609811], [-77.38762827762133, 34.58858209699672], [-77.387774945958, 34.58862276384838], [-77.38796491859873, 34.58887085283483], [-77.38808701844991, 34.588709292074896], [-77.3881872951689, 34.58874830750662], [-77.3882384643162, 34.58876821614696], [-77.3883162169484, 34.58880309098791], [-77.38835898930962, 34.588815109414654], [-77.38843089972809, 34.58884661163939], [-77.38844148969791, 34.58886233140618], [-77.3884875464656, 34.588870820860265], [-77.38855600679385, 34.58889943438308], [-77.38861675721628, 34.588925955263825], [-77.38864735132063, 34.589035389003016], [-77.38875299846592, 34.58915304446004], [-77.38890221741264, 34.58904554737041], [-77.38896503714206, 34.58907186532172], [-77.38899372600343, 34.589083884271055], [-77.38914705779717, 34.589177430572526], [-77.38921297073705, 34.58919353703569], [-77.38924557178088, 34.58918939269097], [-77.38931494240694, 34.58921845469674], [-77.38934408146496, 34.58923066216918], [-77.38935319227073, 34.589234519312335], [-77.38937022528441, 34.58924187996222], [-77.38941743205604, 34.589262181333005], [-77.38944258566453, 34.589310035748056], [-77.38945527655304, 34.58932208292893], [-77.38946730331259, 34.5893606629623], [-77.38939747753136, 34.58945023455725], [-77.38936642722746, 34.58947882676928], [-77.38930185223238, 34.58950947684755], [-77.3891470033828, 34.58954046611342], [-77.38900287002139, 34.58956413165504], [-77.38889506066133, 34.589581832958324], [-77.38875293844256, 34.58954124678809], [-77.38851881222025, 34.58953696349295], [-77.38812209416236, 34.58967692967373], [-77.38796482180753, 34.58946023276065], [-77.38795579333217, 34.58944582446198], [-77.38778585198423, 34.589238621258104], [-77.38760121380304, 34.589072380385424], [-77.3875708247743, 34.58905960352205], [-77.38753736877919, 34.58904553707273], [-77.3873195044105, 34.5889592230512], [-77.38717678582964, 34.58892201883421], [-77.38690339309778, 34.58887842462748]], [[-77.41880080499102, 34.623206941349224], [-77.41870896732758, 34.62324860314787], [-77.41869697752092, 34.62323484409623], [-77.41865959228628, 34.623227332624225], [-77.4185118234414, 34.623096137514366], [-77.4184380684218, 34.62317986391279], [-77.41840719939374, 34.62316418579475], [-77.41837364410898, 34.623119794603355], [-77.41842516309984, 34.62304889240184], [-77.41848361019836, 34.62301008731134], [-77.41869372766735, 34.62281412643515], [-77.41870887202845, 34.62283336783803]], [[-77.43942623256079, 34.60210037112182], [-77.43941796901034, 34.602087285401474], [-77.43941511541384, 34.6020835273883], [-77.43937068516314, 34.6019206108455], [-77.43937100419839, 34.60191605273723], [-77.43937030282171, 34.60191298311431], [-77.43938668673066, 34.60190104808319], [-77.43939120446828, 34.60192029962814], [-77.43943583422744, 34.60208219170083]], [[-77.39550410744938, 34.586603085924835], [-77.39584631081993, 34.58646195085658], [-77.39606126135038, 34.58638561123715], [-77.39650987329394, 34.58622349908681], [-77.39663442274232, 34.58623365368363], [-77.39672974603963, 34.586160285296216], [-77.39679812184553, 34.58604771868497], [-77.39702849110851, 34.58587504757559], [-77.3971568753378, 34.58570971146919], [-77.39734691304409, 34.58554397548407], [-77.3974225579802, 34.58548114914352], [-77.39769068644655, 34.58535870207132], [-77.39805720033303, 34.58501692930119], [-77.39815811353053, 34.58494574219879], [-77.39821067090013, 34.58491348851435], [-77.39866958807804, 34.58492857640149], [-77.39889996791784, 34.585001773490845], [-77.3989987447083, 34.58515364620724], [-77.39912218298954, 34.584996273072605], [-77.39955199957416, 34.58505428770526], [-77.39977175307138, 34.58560246963001], [-77.39975563598202, 34.585621026656796], [-77.3992187497789, 34.585935569083276], [-77.39899871201055, 34.58610369745587], [-77.39875177123409, 34.5863489516002], [-77.39839393876014, 34.58666663954129], [-77.39827326607569, 34.586751580022096], [-77.39821058874738, 34.586792577066326], [-77.39816777439215, 34.58674540204091], [-77.397562236071, 34.58693720958246], [-77.39742247746497, 34.58700383885823], [-77.3972882695361, 34.587106129317846], [-77.39705588697908, 34.58725464759212], [-77.3970284109883, 34.587271388400964], [-77.39701805477621, 34.58727855056836], [-77.39696486413213, 34.587297381769], [-77.39683138000822, 34.58735093373776], [-77.39665181856643, 34.587361359992975], [-77.3966343528251, 34.587362374142266], [-77.39657246964248, 34.58735398827089], [-77.3963810624816, 34.58722994391677], [-77.39624030888567, 34.58722484098485], [-77.39602192090106, 34.58719810312602], [-77.39584625861934, 34.58719343444587], [-77.39551989115517, 34.5875058259345], [-77.39548182766467, 34.58754326052349], [-77.39545217673142, 34.58758260916594], [-77.395317872922, 34.58781485258454], [-77.39512421487089, 34.58798747249671], [-77.3950851651539, 34.58802228009305], [-77.39505808691386, 34.58802537235041], [-77.39504021068699, 34.588018850727295], [-77.3950044578191, 34.58800474680055], [-77.3949070757899, 34.5879692178237], [-77.3948610650223, 34.58794818065977], [-77.39478063574427, 34.587911406552415], [-77.39477859211274, 34.58773616191723], [-77.39483161798829, 34.58760510634929], [-77.39486109738425, 34.58755594658274], [-77.39493349892888, 34.58745612472015], [-77.39505814981996, 34.587241410990494], [-77.39511118120822, 34.58719734428221], [-77.39511269211238, 34.58713999161976], [-77.39514877873745, 34.5870371556055], [-77.39516654617321, 34.58682440757324], [-77.39536526220613, 34.58667898749438], [-77.3954149160657, 34.58663160051568], [-77.39545224965863, 34.58662162557384]], [[-77.36368195363569, 34.67429645082139], [-77.36283649245397, 34.674512202994585], [-77.36277071737378, 34.67423611939174], [-77.36275376953348, 34.67415499309134], [-77.36281641462391, 34.67407863015329], [-77.36301553427555, 34.673705667350006], [-77.3632511562548, 34.67379872590368], [-77.36351234596951, 34.673742644366236], [-77.3635810108659, 34.673797625811545], [-77.36349810442044, 34.67400282824517], [-77.36353076569755, 34.674048224922196]], [[-77.3160494783499, 34.641168951846694], [-77.31590429963025, 34.64089397773088], [-77.31615047390065, 34.64096912804273], [-77.3162562554794, 34.64105250101028], [-77.31627948933384, 34.641244438511265], [-77.3161178983224, 34.641176812453764]], [[-77.40114313920354, 34.61490408037115], [-77.40074516712005, 34.61501489936376], [-77.40065295270922, 34.614446818249505], [-77.40102164606257, 34.61467721577181]], [[-77.42487348556187, 34.56896931998154], [-77.425000950466, 34.568901576020814], [-77.42512688548129, 34.56893102199395], [-77.42524735963583, 34.56893692595367], [-77.42527098499234, 34.56906545960474], [-77.42510315980681, 34.569113226766696], [-77.42500102274695, 34.56917414888109], [-77.42489716961386, 34.569141174036126], [-77.42473107555656, 34.56914343112967], [-77.42475603720885, 34.56900950377943]], [[-77.34051065978392, 34.64585386672031], [-77.34074308415532, 34.64583306900918], [-77.34081815140355, 34.645807308179485], [-77.3409260882822, 34.64587990447385], [-77.34092607645549, 34.64590806338038], [-77.34083738714799, 34.64612089379933], [-77.34082834594729, 34.64615044842927], [-77.34081959665629, 34.6462137993658], [-77.34073369084257, 34.64639570514978], [-77.34077224948389, 34.646551831354344], [-77.34075203354561, 34.646674150102236], [-77.34072825723558, 34.64672425581285], [-77.34068035323303, 34.64677544300191], [-77.340634394873, 34.646885326885965], [-77.34053313143329, 34.646875717961215], [-77.340428131063, 34.64686575444219], [-77.34028198585683, 34.64672482834902], [-77.34006340819758, 34.64664912098646], [-77.34009230384692, 34.646382502821226], [-77.34010250078734, 34.64614007012892], [-77.34025198976359, 34.64606636247033], [-77.3404367445332, 34.645901798795535]], [[-77.39756416746232, 34.56895428586737], [-77.39772699443132, 34.56902833019427], [-77.39779204776218, 34.569318566155246], [-77.39751639858711, 34.569285655952456], [-77.39742352927786, 34.569121445944546], [-77.39738098516237, 34.56902657269652], [-77.39733632839163, 34.56898716015625], [-77.39731826928377, 34.568876310670646], [-77.39742354428506, 34.56889206255463], [-77.39747154717455, 34.56891591573832]], [[-77.39702801857659, 34.594506350678074], [-77.39702335187725, 34.59450667598095], [-77.39702801864186, 34.59450508798075], [-77.39703000016989, 34.594503582216205], [-77.39703074393735, 34.59450560966046]], [[-77.44061959522966, 34.59059584346464], [-77.44040607597557, 34.590788054286335], [-77.44037535698114, 34.590797004530074], [-77.44036724694939, 34.590802411065155], [-77.44036224972564, 34.59079439262949], [-77.44021801217968, 34.59056007539955], [-77.43998116191607, 34.590505403067084], [-77.43993443353699, 34.590431669202744], [-77.43985653081724, 34.59030874403214], [-77.43980387630931, 34.59021683633937], [-77.4397839896473, 34.59019427899986], [-77.43971260740697, 34.590039154823764], [-77.43978049875885, 34.58982061605987], [-77.43978269155731, 34.58981551016242], [-77.43978644120715, 34.5898133501039], [-77.43998079900103, 34.58971723760845], [-77.44014687230995, 34.58973069333628], [-77.44020368758976, 34.58972797702671], [-77.44037489596938, 34.589806226594774], [-77.44062477060731, 34.58990723498648], [-77.44062913405271, 34.59005738371505]], [[-77.44597891639908, 34.60203426453889], [-77.44602495425958, 34.60201317079528], [-77.44610918603725, 34.60202554475764], [-77.44635873114885, 34.60206220403373], [-77.44634760903394, 34.6021871448993], [-77.44610881896887, 34.602394903154355], [-77.44608578264648, 34.602424692919264], [-77.44599469552789, 34.602683044611105], [-77.44576227414717, 34.602791503090195], [-77.44577859738675, 34.602607414770645], [-77.44577115876145, 34.602491195918155], [-77.44580682161887, 34.60236577221494], [-77.44582073149805, 34.602312454709214], [-77.44585462435361, 34.60228276695449], [-77.44590737696413, 34.60215693507458], [-77.44596114634068, 34.602067762665925], [-77.44596852559465, 34.602054473663074]], [[-77.43300500196995, 34.62378365994175], [-77.43287800385917, 34.62379860997203], [-77.43272872383193, 34.623751883477254], [-77.4327216873862, 34.62374389879049], [-77.43286277291234, 34.62352576876922], [-77.43287492133037, 34.62348780858432], [-77.43290505777709, 34.62341841727148], [-77.4329801204091, 34.62349232512187], [-77.43301262354952, 34.62353600472665]], [[-77.44211383946612, 34.600949358429034], [-77.4416701714975, 34.60093774524547], [-77.44152830481961, 34.60050036728358], [-77.44152229134495, 34.60037953776005], [-77.44163384713757, 34.60006791405681], [-77.44167612087071, 34.59993268257801], [-77.44191060987123, 34.59972953267658], [-77.44215091838376, 34.59957133284414], [-77.44289368780059, 34.59944181202245], [-77.44292763432468, 34.599978804861706], [-77.4428175862076, 34.60033222570182], [-77.44282751385421, 34.60037660571152], [-77.44277877460695, 34.60049657195419], [-77.44266695772095, 34.600791638062674], [-77.44265939374719, 34.60089627705447], [-77.44253667260497, 34.60098093915279]], [[-77.36976339083216, 34.551072868421855], [-77.36990371224057, 34.5511466772392], [-77.37016126881943, 34.55141664916763], [-77.37016884187584, 34.55173158273684], [-77.37006812215974, 34.55203485012759], [-77.36991041668594, 34.55243210003046], [-77.36987397639614, 34.55245313282657], [-77.36984098861782, 34.552442102908515], [-77.36941608815164, 34.552301343394134], [-77.36913712943476, 34.552078721979115], [-77.36910965328988, 34.55205781425062], [-77.3691024521744, 34.552055932606926], [-77.36909805122184, 34.552043619876464], [-77.36903266632534, 34.551824078835416], [-77.36898626873591, 34.551661072124745], [-77.36896738718573, 34.5515886564656], [-77.36894307073565, 34.551487623580016], [-77.36912920227361, 34.55067555674002]], [[-77.42271509332978, 34.623648090933116], [-77.42304414006455, 34.62336971557603], [-77.4226183642305, 34.6233092370061], [-77.42271317192595, 34.623027943827815], [-77.42273667678141, 34.622765897395716], [-77.42313166271431, 34.6226820687287], [-77.42327186562629, 34.62280031034324], [-77.4235550262774, 34.62307880096238], [-77.42384260977882, 34.623142224918105], [-77.42349293213715, 34.62330093800296], [-77.42342550206858, 34.62336202276165], [-77.42313152860663, 34.62379388473169], [-77.4230374490489, 34.623865573367794], [-77.42286644801956, 34.62401081773511], [-77.42277688986721, 34.624029559896755], [-77.42251849607594, 34.62389054556304], [-77.42251596209256, 34.62388942475156], [-77.42251686146994, 34.62388456909428]], [[-77.38916813635772, 34.54592645171425], [-77.38926361439842, 34.545744551437174], [-77.38931814637017, 34.54592525361988], [-77.38935085820339, 34.54601529499837], [-77.38922435096357, 34.54599627967376]], [[-77.44582160608986, 34.60324187933174], [-77.44581238202477, 34.60334633614677], [-77.4457619766138, 34.60324901570828], [-77.44576100193976, 34.603220669327435], [-77.44575867602694, 34.60315012595339], [-77.44582028542044, 34.60317772130439]], [[-77.35783938428386, 34.67824186896639], [-77.35771274046995, 34.678062450794954], [-77.35773381306487, 34.6779583554269], [-77.35777546207336, 34.67776326339482], [-77.35786785200398, 34.6777263541693], [-77.35791011970227, 34.677744766545395], [-77.35804527758171, 34.67780646765489], [-77.35814422477678, 34.677805142729], [-77.35816643321088, 34.677831404977795], [-77.35815432402774, 34.677919630459286], [-77.35816694351354, 34.677953181451876], [-77.35807202900111, 34.67818008635139], [-77.35807427201497, 34.67820960438758], [-77.3580816481658, 34.678266729466955], [-77.35795240405565, 34.67846606311461], [-77.35780907238376, 34.67838250571755]], [[-77.44206141563451, 34.59771665730438], [-77.44169583236284, 34.597908306883646], [-77.44153259109567, 34.59779186100588], [-77.44134754617839, 34.597675241328], [-77.44116668499774, 34.59751060398018], [-77.4411406174282, 34.597475346978726], [-77.44112190222965, 34.59742984627975], [-77.44105369063465, 34.597275620787926], [-77.44116646890768, 34.597060446371856], [-77.44117411458114, 34.59705414792661], [-77.44132005407255, 34.59707163066327], [-77.4413635218587, 34.59707683782952], [-77.44147827703355, 34.59709058467091], [-77.44156058771377, 34.597119740141636], [-77.44171968815562, 34.59717930139381], [-77.44173792616226, 34.59719793677838], [-77.44195683782456, 34.597301637419605], [-77.44210612327477, 34.59748680237409], [-77.44216828884667, 34.59758598604132], [-77.44228174007844, 34.597666972127406]], [[-77.35995054319947, 34.78301910034919], [-77.35996409316454, 34.782908576291995], [-77.3599927368236, 34.782873855674694], [-77.3602076492275, 34.782910857791826], [-77.36030699105578, 34.78289651673326], [-77.36052832891738, 34.783106020947024], [-77.36024565713008, 34.783107651700746], [-77.36005017567365, 34.78310877870999]], [[-77.39396506081522, 34.624144007541815], [-77.39426721910517, 34.62411177066971], [-77.39447345785888, 34.62416985896753], [-77.3942672020481, 34.624381872281084], [-77.39419239577138, 34.624554404669645], [-77.39397674428186, 34.62455428137042], [-77.39387296121527, 34.624561358590526], [-77.39371508696979, 34.624491494325625], [-77.39373197727664, 34.624428617973805], [-77.39370902070971, 34.624280083829674], [-77.39381397496551, 34.62420139805775]], [[-77.37533940776653, 34.64101782512955], [-77.37525905909241, 34.6410358622818], [-77.37524714374982, 34.640951071436206], [-77.3752723285973, 34.640875176571775], [-77.37533944451366, 34.64088583892478], [-77.37536635735364, 34.64090492022133], [-77.37544891537996, 34.6409220139462], [-77.3754409666987, 34.641032512215496]], [[-77.40096900387901, 34.58121371119962], [-77.40095635149677, 34.58121566008277], [-77.40077199180911, 34.581244057592215], [-77.40073591362852, 34.58123383620121], [-77.40062543346632, 34.58119541410743], [-77.40057498258359, 34.5811142169176], [-77.40053404426124, 34.58105067861206], [-77.40057498667926, 34.58089732511154], [-77.4005871724108, 34.58084385456667], [-77.40060604817825, 34.58082800124991], [-77.40077200062092, 34.58071154240382], [-77.40089793014816, 34.58078588235937], [-77.40094306114644, 34.58080733044214], [-77.40096900936946, 34.58082573301421], [-77.4011560413837, 34.58096092345891], [-77.40109472867974, 34.58104658737553], [-77.40099671422729, 34.581196202262554]], [[-77.33921400384641, 34.63537179533321], [-77.33899142122075, 34.63552226167607], [-77.33875712965008, 34.635434502571194], [-77.33894513072858, 34.6352918534301]], [[-77.4177128470786, 34.56988048586289], [-77.41769381983752, 34.56986930769212], [-77.41769135422602, 34.56984650720009], [-77.41771284043661, 34.569843257911714], [-77.41772783471059, 34.56986439397685]], [[-77.36147711215841, 34.67279920098707], [-77.36150956976257, 34.672620089573414], [-77.36151862280701, 34.67257013122253], [-77.361605382522, 34.672455519653255], [-77.36165135173383, 34.672467944429336], [-77.36169030777566, 34.67247340905649], [-77.36177434672057, 34.67251389018815], [-77.3618271390617, 34.67252971867029], [-77.36188323038732, 34.67256874834942], [-77.36189796654696, 34.67260345575268], [-77.36189638697141, 34.67267351707126], [-77.36194728890374, 34.67275863650719], [-77.36179923539898, 34.672823983701136], [-77.36166481678259, 34.67289135749843], [-77.36158662110795, 34.67285319702594]], [[-77.3972240293062, 34.62042397004099], [-77.39720440654999, 34.62037946440864], [-77.39721311675231, 34.62036645325695], [-77.39722403101368, 34.620367831830826], [-77.39727820954995, 34.620368820352326]], [[-77.38185710344645, 34.58822793049944], [-77.38182133459793, 34.58824585214198], [-77.38175857157951, 34.58829838463106], [-77.38166187554374, 34.58823224480671], [-77.381660072652, 34.58823115323003], [-77.38165967522528, 34.58823104742236], [-77.3816598413571, 34.58823059525987], [-77.38165994135014, 34.58823043919686], [-77.38166007284694, 34.58823034253318], [-77.38166486025197, 34.58822471533229], [-77.38175861415078, 34.58812051051303], [-77.38179707625268, 34.5881461204131], [-77.38185711055993, 34.588198055009954], [-77.38186176056708, 34.58820149237156]], [[-77.44387978387911, 34.60210742261041], [-77.44389112376854, 34.602088570356635], [-77.44390303523434, 34.60210079229298], [-77.44389822001256, 34.60211449859019]]]]}, "type": "Feature", "id": "demo12", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.20552945414678, 34.657779248117535], [-77.20639641817989, 34.65797242556882], [-77.209229211185, 34.65831177098198], [-77.2095027096556, 34.658424996049014], [-77.20945450711379, 34.65976831281712], [-77.20975523560644, 34.66033038088443], [-77.21163943593564, 34.66321343727479], [-77.21291872188065, 34.66435116612528], [-77.21757254571986, 34.66848941800602], [-77.21917078926155, 34.66991039080176], [-77.22264751818585, 34.671797549765614], [-77.22376029265216, 34.67205422043961], [-77.22459225164008, 34.67281396826381], [-77.2266467006502, 34.67391418790389], [-77.22722861663091, 34.676080653111825], [-77.22812411197542, 34.676300799059376], [-77.22740119510517, 34.677227164937], [-77.23123473109601, 34.68063449304128], [-77.23248446054203, 34.6790330548086], [-77.23228906837524, 34.680800424463136], [-77.23280407263046, 34.68202913774992], [-77.23914392414142, 34.68766303496428], [-77.24294794854808, 34.69104286148149], [-77.24307414487699, 34.69115497173724], [-77.24312035180773, 34.69101934594042], [-77.24305151378192, 34.69096332512738], [-77.24303206655924, 34.69075451044116], [-77.24219032380906, 34.687247596276436], [-77.24126695694125, 34.686032644264856], [-77.24162108559554, 34.67963896327428], [-77.24164918678746, 34.67952429774041], [-77.2417476837022, 34.67907956351722], [-77.2427386279852, 34.67262452492794], [-77.24291872569944, 34.67016929686169], [-77.24302271976545, 34.66921021040876], [-77.24313652445308, 34.66770099594534], [-77.24303908809844, 34.66736637375238], [-77.24183899356417, 34.665996090042704], [-77.24133531374602, 34.66583354538095], [-77.23953691257631, 34.66511530484794], [-77.2344881035174, 34.66228151303588], [-77.23436662688437, 34.662210984586544], [-77.23428229581123, 34.66216201937328], [-77.23237937912087, 34.660015091609395], [-77.23209768906807, 34.65981186862403], [-77.23111436303478, 34.658244852296406], [-77.23124987109463, 34.65749846270372], [-77.2311080027893, 34.65510372749842], [-77.23109225070797, 34.65461845348167], [-77.23108471191077, 34.65447170076265], [-77.23106917075603, 34.654190215978716], [-77.231446841725, 34.651546871086374], [-77.23156236608234, 34.650738506946254], [-77.23173589211197, 34.649523521051336], [-77.23222541073498, 34.64890538444932], [-77.2334497173594, 34.64785886838446], [-77.23415667806448, 34.647172178953525], [-77.23609958852754, 34.64525131416647], [-77.23751418058032, 34.64414239976441], [-77.2379407704778, 34.643699543956146], [-77.23797099572433, 34.643228793417556], [-77.23784556105134, 34.64180454522388], [-77.23804895398243, 34.64026059412352], [-77.2378806505347, 34.63992401804985], [-77.23637216962575, 34.637948701520926], [-77.23565562078772, 34.63597787514712], [-77.2353280939345, 34.63540031122531], [-77.23563167534331, 34.632851417398506], [-77.23550504830479, 34.632395119937264], [-77.23566603061126, 34.632207910464786], [-77.2358074078455, 34.63210638022761], [-77.2361210756817, 34.63188520420436], [-77.2391499515306, 34.629819499532026], [-77.24370896770763, 34.6290707790709], [-77.24413425929929, 34.628992523682356], [-77.24437638308618, 34.62890931252699], [-77.24759851946135, 34.627870352022896], [-77.25241309714103, 34.62636345256875], [-77.2529966873747, 34.626354824685706], [-77.25313753366073, 34.626042225760045], [-77.25317889813965, 34.625782016181745], [-77.25495632277367, 34.622838742688465], [-77.25535992285592, 34.62244634323704], [-77.2553618074109, 34.62202573298677], [-77.25670916955478, 34.619138923132674], [-77.25696642357575, 34.61880201886045], [-77.25693978933495, 34.61849581352514], [-77.25746470649683, 34.61718158826584], [-77.25765153347972, 34.616970559632044], [-77.25769219656272, 34.61674452296152], [-77.25805128094864, 34.61638856808382], [-77.25881490859351, 34.616324222275225], [-77.25915411478334, 34.616378133469304], [-77.26006749896987, 34.61686654207628], [-77.26048507029681, 34.61708091973195], [-77.26057197665729, 34.617136063309275], [-77.26329776946827, 34.61818857334332], [-77.26482656109667, 34.61897456735223], [-77.26530121053143, 34.619177976008636], [-77.26709747204268, 34.619848146154915], [-77.26805789931784, 34.620160672317894], [-77.27004110250509, 34.62072734811906], [-77.27067595778936, 34.620449886681925], [-77.27238284641149, 34.61857129918876], [-77.27496699334814, 34.61630419778146], [-77.27589652218388, 34.61551849382907], [-77.27666225779032, 34.613980904424], [-77.27884689900588, 34.610105795828204], [-77.27938272980896, 34.608094635494936], [-77.27963710051935, 34.606822584861604], [-77.28037111939204, 34.604930028471834], [-77.28086440434316, 34.60413836570835], [-77.28246187978064, 34.602586198095764], [-77.28431342545471, 34.602022057849254], [-77.28566778078877, 34.601476590453444], [-77.2873222786954, 34.601292225993], [-77.29118785263859, 34.5997318874872], [-77.29208412719406, 34.59950668633343], [-77.2927542071247, 34.59923218422233], [-77.29371543480266, 34.59814439876], [-77.29605299492734, 34.59697561553314], [-77.29646538019011, 34.59582145523613], [-77.29741923999978, 34.59291213801832], [-77.29830931661687, 34.590763698969276], [-77.300120424564, 34.58851224909641], [-77.3020081259416, 34.586521231161235], [-77.30453193428254, 34.58498244727397], [-77.30543985727323, 34.58438950623875], [-77.3087175673015, 34.58258599234145], [-77.30901789318489, 34.58239455580402], [-77.30915827774746, 34.58233784684991], [-77.30947636968128, 34.58213744253569], [-77.31546623651116, 34.579235756296825], [-77.31835051747858, 34.577519092711164], [-77.31909923623115, 34.574305843683206], [-77.32044114546042, 34.57267367457371], [-77.32146761088015, 34.570569448484406], [-77.32177986936216, 34.56977666060772], [-77.32239766709282, 34.56770311948482], [-77.32300015890678, 34.56695301872888], [-77.32420626231439, 34.56599416045262], [-77.32493584635652, 34.56538854347174], [-77.3251539053271, 34.565180227358105], [-77.32558289919366, 34.564883816047065], [-77.32618220949482, 34.564441703397655], [-77.3265126099212, 34.56439575061614], [-77.32680315198385, 34.56439538352073], [-77.32730065562195, 34.56425334866344], [-77.3275039562433, 34.564388560531555], [-77.32769445104122, 34.56443233221957], [-77.32786445358803, 34.564555969443894], [-77.32796252823427, 34.564677288817514], [-77.32808421947396, 34.56536985514653], [-77.32808009707821, 34.56537405384259], [-77.32808747106868, 34.56547554031003], [-77.32811191273046, 34.56619152331925], [-77.32812498191169, 34.56621667709774], [-77.32818720568706, 34.5663160216712], [-77.32869497854463, 34.56717662278566], [-77.32936169988054, 34.56773709555466], [-77.32910197414026, 34.56837656476462], [-77.32913576970611, 34.568618640267644], [-77.3289309564713, 34.568711040518146], [-77.32887244826429, 34.56879496643535], [-77.32858574202791, 34.569546757894344], [-77.32866926549707, 34.56975277945624], [-77.32887122765204, 34.57017156961699], [-77.32892587836784, 34.57028795274458], [-77.32895951234413, 34.570342119204724], [-77.32903296155276, 34.570506158313236], [-77.32904669265127, 34.57098881446127], [-77.32900386097839, 34.571184820166245], [-77.3288700129444, 34.57154297949886], [-77.3287068478165, 34.571901102709276], [-77.32810092349416, 34.5729909680861], [-77.32808570899655, 34.57301490802097], [-77.32808372595936, 34.57301844229575], [-77.32808068303143, 34.57304904445245], [-77.32785020516208, 34.57389782133256], [-77.32807977391911, 34.57406673321981], [-77.32841035602425, 34.574309967262415], [-77.32908488957699, 34.57456947089841], [-77.32910391540132, 34.57516033016033], [-77.32888688088683, 34.57629607297143], [-77.32876201929406, 34.57705196779753], [-77.32860655944492, 34.57916017474238], [-77.32833678945991, 34.57977141381366], [-77.32964974461267, 34.58099895770763], [-77.32995797139768, 34.58090459922998], [-77.33080928326812, 34.581114264990795], [-77.33122566734366, 34.58125841278708], [-77.33217880607302, 34.58158836932294], [-77.33369596097342, 34.5816631001866], [-77.33437814706207, 34.581028649593065], [-77.33546660636239, 34.580970346697924], [-77.33699914916087, 34.581350577032154], [-77.33752994847679, 34.581645566936054], [-77.33763454627756, 34.58171861715692], [-77.33794167793133, 34.58178721602423], [-77.34068110916792, 34.583191617417405], [-77.34195308661941, 34.58323631069129], [-77.34266166928555, 34.58324243004999], [-77.34383316019328, 34.58362169252479], [-77.34583294232226, 34.58404878928222], [-77.34653576734567, 34.58443167009532], [-77.34698495779328, 34.58447976538052], [-77.34773690677338, 34.58458512542727], [-77.35013687187784, 34.585246176262814], [-77.35154630478564, 34.58510480504984], [-77.35328938749915, 34.58507668510682], [-77.35595542615796, 34.58546502353006], [-77.35644159159492, 34.58543628420431], [-77.35706763702873, 34.58515439773405], [-77.35801810019083, 34.584861763985714], [-77.35867369142318, 34.58460557322688], [-77.35887557114336, 34.584644797628], [-77.35894804052387, 34.58470899037628], [-77.35938367359296, 34.5848732020492], [-77.35959401578923, 34.58541081631492], [-77.35960453189695, 34.585452244609236], [-77.35960821121245, 34.585463067871565], [-77.35962518678765, 34.58549425336111], [-77.35995048250315, 34.58626290386897], [-77.36006072137194, 34.5865926689631], [-77.36038139494886, 34.586864539761585], [-77.36053002465167, 34.58702858472068], [-77.36079678247872, 34.587391477895544], [-77.36080074090029, 34.587414167790776], [-77.36079132841435, 34.58743292814629], [-77.36070879482844, 34.58785195672873], [-77.36058320814284, 34.58808811774493], [-77.36040434565828, 34.588320336874844], [-77.36038066275705, 34.5883401279826], [-77.36009489625096, 34.58848163474633], [-77.35977320276612, 34.588640930121386], [-77.35959237316762, 34.58865698607277], [-77.35943150789274, 34.588711644260385], [-77.3592185488329, 34.58891557784541], [-77.35801561744854, 34.58959254608773], [-77.35717731097472, 34.59000466398202], [-77.3564378062534, 34.5924134182526], [-77.35623399949384, 34.59252203750212], [-77.35620030459363, 34.59274639163175], [-77.35620945767101, 34.59299072740634], [-77.35643742409965, 34.593121545145095], [-77.35816811476104, 34.59585959647214], [-77.35871389722566, 34.59672302507168], [-77.35958792703289, 34.59751980606295], [-77.36049435550878, 34.59892120212096], [-77.36020429767362, 34.599628052180876], [-77.36002386656887, 34.600687140644176], [-77.36008369696515, 34.60184037640942], [-77.36024006619118, 34.60235422926701], [-77.36007646222009, 34.60290689985844], [-77.359782302231, 34.60560284967002], [-77.3599377038775, 34.605794175533816], [-77.3600714290037, 34.606300408188645], [-77.35958338796371, 34.606680165624546], [-77.35868167223904, 34.606946051460184], [-77.35749740529727, 34.60729525006921], [-77.35643018215026, 34.606662451701396], [-77.35609077262804, 34.6067133192563], [-77.35327790740484, 34.60500501743908], [-77.35045062981136, 34.607511852100764], [-77.35012143518877, 34.610472153796856], [-77.34951564087541, 34.61069007458025], [-77.34742786648425, 34.611486260176655], [-77.34696742766761, 34.611462216553456], [-77.34681822588406, 34.6112388625904], [-77.34650294530523, 34.61112334873869], [-77.34285270997958, 34.6092888038723], [-77.3406620393611, 34.609441658490105], [-77.33796042193511, 34.609441694626], [-77.33717524910651, 34.6096809994365], [-77.33501203705495, 34.60933411862029], [-77.33229101420737, 34.610169454223545], [-77.33001704126976, 34.60995746935497], [-77.32850541004625, 34.60848270778244], [-77.32587631958998, 34.60724036160473], [-77.32473614731714, 34.606763645801784], [-77.32394190054858, 34.60702279411064], [-77.32376240318733, 34.607530329928956], [-77.32058918522685, 34.61400716961104], [-77.32021390064055, 34.61421812012531], [-77.31795821334907, 34.61365415738399], [-77.3165317040544, 34.6138235448011], [-77.31550764435819, 34.61420047313151], [-77.31493786553986, 34.61462778234241], [-77.3131855240359, 34.615387610567915], [-77.31188687063266, 34.615910280094155], [-77.31126185761946, 34.61653253429923], [-77.31100888952744, 34.61730049791781], [-77.30923241235256, 34.619089284271794], [-77.30877564315004, 34.619549221959204], [-77.30674603535134, 34.621578818849116], [-77.30601517693545, 34.622309648184434], [-77.3063890081477, 34.62341530147438], [-77.3049022443241, 34.626609960356326], [-77.30283761338283, 34.627627515622265], [-77.30192511610858, 34.629168227129675], [-77.2995050785618, 34.631109770140796], [-77.29861381779031, 34.6321052572641], [-77.29655703230709, 34.63151338641836], [-77.29407700667825, 34.630715086481366], [-77.29326681929875, 34.630978648059646], [-77.29234543720979, 34.63089678757376], [-77.29064338613325, 34.630665010063154], [-77.28914462795188, 34.6312941283759], [-77.28824709756435, 34.63148536751706], [-77.28747183772578, 34.63168265146505], [-77.28544458767288, 34.63303414394049], [-77.28413636747725, 34.633906266864464], [-77.28372617306636, 34.63448356852955], [-77.28189519880866, 34.63715291681426], [-77.28174498021777, 34.637378236131], [-77.28031405766953, 34.640487408364244], [-77.28039162347528, 34.64108914163105], [-77.28193645640454, 34.645544020961516], [-77.28358874972875, 34.646791021766816], [-77.28477306449163, 34.649109891189994], [-77.28665809759114, 34.65228749911037], [-77.28361124318094, 34.65140632580479], [-77.28193852796952, 34.651135028440564], [-77.28027388461742, 34.651662472949056], [-77.27723879249399, 34.65324628183508], [-77.27643915941351, 34.65342029122737], [-77.27584117931836, 34.654601857414946], [-77.27666237265481, 34.65596722718218], [-77.27766786669466, 34.65538944777196], [-77.27975071949174, 34.65903604852715], [-77.28113353038731, 34.65990540293164], [-77.28145659747818, 34.660251066916906], [-77.28220011544141, 34.66048393581742], [-77.28344702256788, 34.66090375283798], [-77.28391778590814, 34.661017582586716], [-77.28455151617146, 34.66100172170564], [-77.28643699454294, 34.66080643028397], [-77.28837272001117, 34.660341681124116], [-77.28888757653475, 34.66025274406039], [-77.28936735136519, 34.66016032147252], [-77.29133211586776, 34.65966909569557], [-77.2929301262451, 34.6590161733182], [-77.29346370892011, 34.658646654508324], [-77.29355486696834, 34.65797891488138], [-77.29417080132974, 34.65547060577413], [-77.29417078605695, 34.65396639369813], [-77.29366251599845, 34.65216436161954], [-77.29484245089094, 34.6492531465336], [-77.29523909275463, 34.64857281267918], [-77.29660839191547, 34.64765527938003], [-77.29812599365279, 34.64698043864117], [-77.29985675016873, 34.646812071187256], [-77.30158575987029, 34.64693242474319], [-77.30412699376402, 34.64735600625182], [-77.30420610535923, 34.647387352503586], [-77.30427808676025, 34.64738787284488], [-77.30694721752486, 34.648125073450274], [-77.30806868113496, 34.64825894078911], [-77.30836705904339, 34.648335195353525], [-77.30972070360124, 34.649183481962666], [-77.3105875630983, 34.649846938478454], [-77.31140145265778, 34.65151149584046], [-77.31303662324477, 34.65294495148268], [-77.31449779801665, 34.654565660778616], [-77.31609708502536, 34.655432167540866], [-77.3163548873645, 34.65580845500924], [-77.31667849854477, 34.656300661072116], [-77.31738452899049, 34.65735529198368], [-77.31751914039178, 34.65776859864893], [-77.31786055827004, 34.658977990511744], [-77.31786059916766, 34.66007423769187], [-77.3162142810506, 34.66257945973356], [-77.32085353259095, 34.6663660873373], [-77.322352750613, 34.66656756683818], [-77.32348243756618, 34.66670038401041], [-77.32440270578284, 34.666182753718], [-77.32480820123321, 34.666300440585246], [-77.32627115725842, 34.66783015860421], [-77.32633544699577, 34.667869731266435], [-77.32652526970928, 34.66791795137064], [-77.32663681821242, 34.66825265735447], [-77.32759463234649, 34.6701024884856], [-77.32835264470566, 34.67156632257415], [-77.32874481343313, 34.672370400508335], [-77.32929130688731, 34.67411499778686], [-77.32976061988688, 34.67474172091088], [-77.32984040500304, 34.67526128284467], [-77.32956967366646, 34.67596215801732], [-77.32819160470945, 34.67789924793569], [-77.32607304809798, 34.67796796720577], [-77.32565393524456, 34.67790119866552], [-77.32300712702741, 34.67926225714183], [-77.32185349836236, 34.67933242674765], [-77.31955250116968, 34.68057050395852], [-77.31817208867177, 34.68117438636845], [-77.3175232632604, 34.68165412072956], [-77.31519858185824, 34.683116533247066], [-77.3149992336383, 34.68346757981205], [-77.31466073845638, 34.68513963980703], [-77.31391364814365, 34.686931336113076], [-77.31400333075266, 34.68912858844916], [-77.31201691565371, 34.691038400516845], [-77.31106076938794, 34.691481072404386], [-77.3116792019346, 34.69180217728409], [-77.31158842755792, 34.693212494398686], [-77.3106050176799, 34.69309256959149], [-77.3105822565206, 34.69264567742932], [-77.30977260808098, 34.6918380280696], [-77.30967603189535, 34.691766313472606], [-77.3095486483119, 34.69168815353046], [-77.30917448686246, 34.6905757631483], [-77.30579047893636, 34.69062253849492], [-77.30527039375778, 34.69085115572896], [-77.3022814152821, 34.69261767801978], [-77.30113857588417, 34.694788902187426], [-77.30124709503558, 34.6966707436459], [-77.30123695240849, 34.696724876792416], [-77.30119715945993, 34.69676466617406], [-77.29906597625613, 34.69897137409945], [-77.3022680021644, 34.701169575156655], [-77.30346896501094, 34.70126699523589], [-77.30519294086348, 34.70203163048191], [-77.30663818655324, 34.702612159278715], [-77.30867757925301, 34.70356727675824], [-77.30948822269829, 34.70534244231095], [-77.31045867835047, 34.705944628792366], [-77.31321494701858, 34.706383519864815], [-77.31750836283953, 34.70612625654957], [-77.32042922821329, 34.70460176154768], [-77.32170877909428, 34.70615758560617], [-77.32489327350225, 34.70572239379985], [-77.32593993287612, 34.70605656397478], [-77.32925939362438, 34.7065326294352], [-77.329368648686, 34.70657250305433], [-77.329423835273, 34.706614460572766], [-77.32952940942114, 34.7065713524298], [-77.3338460441611, 34.706281724780226], [-77.33430956277321, 34.706284507943195], [-77.33493813486109, 34.70625983716647], [-77.33872649459343, 34.70568071067851], [-77.33923203071208, 34.70582772152187], [-77.33995860892136, 34.705603939406785], [-77.34428471654986, 34.70455801516392], [-77.34438724880314, 34.704569297248966], [-77.34712350454454, 34.70552722425256], [-77.34818716446614, 34.70797648444905], [-77.35306130104729, 34.7072656227355], [-77.3534759084633, 34.70737297728482], [-77.35359578298602, 34.707092936959796], [-77.35722497091558, 34.70558967802859], [-77.35713066932848, 34.70413419008601], [-77.35718387724313, 34.70270118757785], [-77.35721793813313, 34.70249019651107], [-77.35722501301336, 34.70159291540255], [-77.35722502005318, 34.700907892370594], [-77.35722502825195, 34.700745995251914], [-77.35728584275066, 34.70053778411292], [-77.35767810383322, 34.70003217333928], [-77.35782821667645, 34.699742028552045], [-77.35884376907708, 34.6996621070939], [-77.35897573718626, 34.69968644717554], [-77.35927297095989, 34.69974604165775], [-77.36008630789993, 34.699985115650094], [-77.3610219085655, 34.700224503316605], [-77.36146919947717, 34.70079524332681], [-77.36354847868144, 34.70098228698631], [-77.36450507030075, 34.701261007822836], [-77.36484146388568, 34.70135357421902], [-77.3654801024561, 34.701561588318114], [-77.36670572120553, 34.70192914046871], [-77.36777477686182, 34.70224972204005], [-77.3682179526567, 34.703134947076165], [-77.36855921989329, 34.70379373815973], [-77.36854953221479, 34.7048073721609], [-77.36858432466732, 34.70503416768704], [-77.37020711696894, 34.70636719346971], [-77.3706134055274, 34.70637277687707], [-77.37067398561456, 34.70669655612936], [-77.37056684263305, 34.70720114065858], [-77.37014332446385, 34.7087190571074], [-77.3696993341292, 34.71023041830037], [-77.3693946386299, 34.71126770627556], [-77.36834664534419, 34.712865070455365], [-77.36850202429699, 34.71430599554068], [-77.36938129849372, 34.71636101036463], [-77.3693614532815, 34.71662478113817], [-77.36695810879547, 34.71756324167756], [-77.36509027633352, 34.71766470647501], [-77.36445924973646, 34.717921060049974], [-77.3639009349671, 34.71784696332086], [-77.36215031505247, 34.7176154439978], [-77.36087883044728, 34.717018673214106], [-77.36020662773757, 34.71606978118666], [-77.35850858951657, 34.716938741498396], [-77.35687320027972, 34.716947135504746], [-77.35551207621437, 34.715741003238485], [-77.35194729649552, 34.71623037885072], [-77.35093966429918, 34.719154633435735], [-77.34668391981083, 34.72177834722502], [-77.34565901895755, 34.72557434725209], [-77.34415572479254, 34.72788368070947], [-77.34493371039608, 34.72928572528768], [-77.3461505654747, 34.73147850500608], [-77.34616005415802, 34.73149590824074], [-77.34621337243586, 34.73150042943705], [-77.34832727278493, 34.73223171910422], [-77.34861996663483, 34.73275728279975], [-77.34938146501011, 34.73272597112498], [-77.34950920061216, 34.73299771251913], [-77.34912730357375, 34.73394380781403], [-77.34926005330166, 34.734006661875696], [-77.34933802694397, 34.73434285624657], [-77.34891703762948, 34.73432468764844], [-77.34849880925697, 34.734427228985986], [-77.34812439575771, 34.73454407598475], [-77.347662015084, 34.734521657824565], [-77.34661770175158, 34.734485611827004], [-77.34645187616995, 34.73442489244786], [-77.34544295238004, 34.73391400457227], [-77.34324387121588, 34.73404921922034], [-77.34192502918503, 34.734753078227435], [-77.3403015272614, 34.735118975264356], [-77.33870396638028, 34.7344799760329], [-77.33840620744792, 34.73430592687689], [-77.337361602832, 34.73394303590454], [-77.33587182980952, 34.733874656450055], [-77.33476545843516, 34.733952424591955], [-77.33507449892326, 34.733028153655], [-77.3338631008714, 34.73254357106386], [-77.33237436971203, 34.73263795917977], [-77.3315060499595, 34.732410761148884], [-77.3277878990138, 34.73301143803684], [-77.32244383000878, 34.73093446968894], [-77.32232917330396, 34.73101521584717], [-77.31714497635312, 34.73645237941026], [-77.31557999645236, 34.73774484521111], [-77.31468190361026, 34.73972117354894], [-77.31473524957558, 34.73989273200691], [-77.31473019099812, 34.74066565595279], [-77.31525932954133, 34.7426424905032], [-77.31712758130712, 34.74328514790679], [-77.31418780032598, 34.74404684242696], [-77.31331436885688, 34.74553142937229], [-77.31158072442453, 34.74794348120808], [-77.31202661717083, 34.74995661047684], [-77.31235817315775, 34.7511772213517], [-77.31410181059064, 34.75106008296444], [-77.31537880739874, 34.750210773299486], [-77.31560703957821, 34.7502567766838], [-77.3167745487313, 34.75011001735471], [-77.31770578179433, 34.75002905295603], [-77.31687857135049, 34.750263216422724], [-77.31671295289068, 34.75032171471392], [-77.31570247441307, 34.75049768588225], [-77.3147324760632, 34.75141088963693], [-77.31443887830437, 34.7519316124271], [-77.31381099090528, 34.75205946327932], [-77.31211591595341, 34.75242646583507], [-77.31337848693181, 34.75354570032298], [-77.31459071766257, 34.7546202444029], [-77.31551983805184, 34.754422116465065], [-77.31673125858208, 34.75396361171524], [-77.31685671930532, 34.753945498527834], [-77.31743004823359, 34.75330601869561], [-77.31771393541365, 34.75295210517385], [-77.31797492244115, 34.752512004955285], [-77.31799357502302, 34.75236344241214], [-77.31798995358112, 34.751939584988506], [-77.31895556795286, 34.75083592231441], [-77.31895546600343, 34.750832642322656], [-77.31895958374922, 34.75083085110616], [-77.31896145023873, 34.750829621052084], [-77.31932223568168, 34.750295050567075], [-77.31920632786995, 34.74998791705879], [-77.31917598022555, 34.7498783419194], [-77.3191517762377, 34.74983103303707], [-77.31900415596262, 34.74965327190907], [-77.31897368527359, 34.7496397347248], [-77.31873735281235, 34.74954078331708], [-77.31859980045095, 34.7495330075714], [-77.31814798587261, 34.74950746712145], [-77.31742018080695, 34.74946632013529], [-77.3169499412191, 34.74950720427803], [-77.31651047928383, 34.749562445933826], [-77.31549288798848, 34.749357336191885], [-77.31516295382367, 34.74902175371267], [-77.31426706499634, 34.747575714200664], [-77.31563373437946, 34.745507350143725], [-77.3157028106446, 34.74538993999184], [-77.31582906116981, 34.74535722859809], [-77.31856816098517, 34.74394511006095], [-77.31907303415457, 34.744440232605584], [-77.31900629895001, 34.74497733086776], [-77.3193307531914, 34.74544195735986], [-77.31955170982091, 34.745648666303154], [-77.31951983572742, 34.745881724786976], [-77.3197225474185, 34.74615432674542], [-77.31981199276396, 34.74623678632448], [-77.31985162653514, 34.7463236459438], [-77.31994638636712, 34.74641446924034], [-77.32005796000178, 34.74644181985893], [-77.32022079254804, 34.74650078847924], [-77.32053465984364, 34.74646950413299], [-77.32066470635105, 34.746699646243954], [-77.32074973499003, 34.74674173728508], [-77.32087655239931, 34.74678374919162], [-77.32110767810507, 34.74681724932312], [-77.32130896157182, 34.74687858557675], [-77.32168244897649, 34.746859617320624], [-77.32210310930292, 34.746840304907195], [-77.32254931078721, 34.74673322833214], [-77.32320940441699, 34.746936137275576], [-77.32383627810874, 34.74642756675582], [-77.32396987617221, 34.74633328164359], [-77.32406306526664, 34.74623413207526], [-77.32453715205867, 34.745559189079984], [-77.3253924564519, 34.74519622013206], [-77.32560357874905, 34.74572595191988], [-77.32553423118021, 34.74603257753171], [-77.32574273836403, 34.74640720270962], [-77.3257382578474, 34.74649199127646], [-77.32614210914706, 34.7467379619134], [-77.32626816402257, 34.746791522478645], [-77.32664848786959, 34.74679206853003], [-77.32673066417621, 34.746773965185], [-77.32719305989104, 34.7466362889118], [-77.32744968520308, 34.74636134111063], [-77.32772371123079, 34.74646082516105], [-77.32830245449642, 34.74634267669603], [-77.32875399173528, 34.74599590877533], [-77.32917376017832, 34.74583805494287], [-77.3295806940155, 34.745821489371], [-77.33000811878858, 34.745802990587606], [-77.33038086102624, 34.74599458406336], [-77.33054314351031, 34.74602305345091], [-77.33097997165099, 34.746161983229776], [-77.33109283581832, 34.746192676971795], [-77.33112616407723, 34.74620985600578], [-77.33113240911891, 34.74624018098551], [-77.33131597650235, 34.74645975614474], [-77.33149786620719, 34.74667746179508], [-77.33151080516124, 34.746702403770385], [-77.33191382923853, 34.747107819009706], [-77.33195309831235, 34.747150630304176], [-77.33200483932475, 34.747176401254], [-77.33249775291254, 34.74750704188668], [-77.33250615398747, 34.74751244197499], [-77.33250761426666, 34.74751258173984], [-77.33299957327611, 34.7478756488108], [-77.33302358584925, 34.74790416669819], [-77.33303569011379, 34.74792879042175], [-77.3339738312658, 34.74864537239702], [-77.33407150465074, 34.7486750581693], [-77.33433423371781, 34.74872553246609], [-77.33485000372147, 34.748864807474334], [-77.3350801651722, 34.74896085135904], [-77.33529602638498, 34.749081058339044], [-77.33552297213258, 34.74913569198252], [-77.33563132820596, 34.7491254899919], [-77.33580039173907, 34.74915689356088], [-77.33620692796768, 34.74920607371794], [-77.33638053015153, 34.74926465369768], [-77.33659636847892, 34.749390162199795], [-77.3366848014069, 34.749424861602186], [-77.33673296272418, 34.74945715932091], [-77.33706435452237, 34.749527186822945], [-77.337273914566, 34.74965693569874], [-77.33770403046002, 34.749823665249956], [-77.33811107289222, 34.750157234207606], [-77.33820866398453, 34.75022397391591], [-77.33828760318036, 34.750291183428494], [-77.33844428044041, 34.750436969700736], [-77.33859597833819, 34.75057812165546], [-77.33869757345845, 34.75063637428924], [-77.33877312392391, 34.750681680485755], [-77.33884008470329, 34.75072387887954], [-77.33903071518598, 34.75076219949721], [-77.33904237483684, 34.75076542048048], [-77.33905684888342, 34.75076561955417], [-77.33906771654631, 34.750757125955694], [-77.33925694499952, 34.75062374089593], [-77.33926570423313, 34.750593705983285], [-77.33926885354404, 34.75048585927747], [-77.3392578175732, 34.75030534572103], [-77.33925868525728, 34.75020494459121], [-77.33918284931801, 34.750010278023865], [-77.33907745687327, 34.74963470082865], [-77.33894141623891, 34.74966057387092], [-77.33904644741914, 34.749541607809924], [-77.3386057000709, 34.74919687160185], [-77.33857798892672, 34.74915169783173], [-77.33853638200469, 34.7491241728774], [-77.33813107301191, 34.74876893169865], [-77.33802414824972, 34.74878922839927], [-77.33802790592304, 34.748706518374895], [-77.33781403082507, 34.7483877356276], [-77.33792561642097, 34.74823316944297], [-77.33840700351817, 34.74763645907498], [-77.33906065206017, 34.74763169837807], [-77.34138447012403, 34.747721300826505], [-77.34144325810969, 34.74767790143552], [-77.34146797277174, 34.74771786087007], [-77.34159831324692, 34.74772954361765], [-77.34145488133844, 34.74778368696827], [-77.34180264213423, 34.74867627111021], [-77.3414597543997, 34.74906464762154], [-77.34149411724033, 34.74927441904541], [-77.3415697068979, 34.749303845781206], [-77.34190853761613, 34.749462267467514], [-77.34210235294569, 34.74953221297481], [-77.34212709377918, 34.74957603473168], [-77.34218340281289, 34.74959880422962], [-77.3426248951667, 34.74979535242545], [-77.34297671846065, 34.749711056966476], [-77.34308994015932, 34.74996184919331], [-77.34316527751531, 34.749997115569165], [-77.34329166778701, 34.75004937177292], [-77.34360020500185, 34.75001996901741], [-77.34372683666257, 34.75012601525536], [-77.3437776485531, 34.750354902408766], [-77.3439910425634, 34.750507777206984], [-77.34416785278727, 34.75066971113737], [-77.34468135223842, 34.750642248606354], [-77.34476785722245, 34.75066633281814], [-77.34480290951507, 34.750671832465905], [-77.34493960783107, 34.75068290141506], [-77.34535570973327, 34.75070476746523], [-77.345520187088, 34.75060326335473], [-77.34561670058159, 34.75019430414745], [-77.34564002184598, 34.750099447774204], [-77.3459992847204, 34.7497518373624], [-77.34623417626167, 34.749464756285086], [-77.34640967247816, 34.749436249153185], [-77.34655605071276, 34.74948641041472], [-77.3468401669359, 34.74949937880572], [-77.34690191205864, 34.74950659532358], [-77.34726659684341, 34.74956563129758], [-77.34746708365202, 34.749623050263], [-77.3479704405269, 34.74972634378227], [-77.34806961917836, 34.74961091480703], [-77.34814714776223, 34.74967684139292], [-77.3481308670752, 34.749757741500055], [-77.34831723441661, 34.74978950086858], [-77.34843284832141, 34.74981684274543], [-77.34848733998264, 34.7498094119453], [-77.34850798442406, 34.74982784689057], [-77.34860463418276, 34.74983116277929], [-77.34866933100153, 34.74980571022797], [-77.34871920041938, 34.74975137761251], [-77.34870941222677, 34.74967836620748], [-77.34870919910998, 34.74963879378844], [-77.3486732482178, 34.74959501168555], [-77.34848447327117, 34.749417426473144], [-77.34829527649458, 34.74924780589832], [-77.34820541899836, 34.749143537960556], [-77.34796607195042, 34.74902771659265], [-77.34784741468778, 34.748821871766395], [-77.34780885029733, 34.748446827472804], [-77.34779408650296, 34.74837160542313], [-77.34779009682163, 34.74829002819657], [-77.34778493854424, 34.74785568435317], [-77.3477118156857, 34.74764649948621], [-77.34785505605134, 34.747358686792765], [-77.34773829638138, 34.74723194899376], [-77.34765165233921, 34.74714290379329], [-77.34759639763608, 34.74711648036745], [-77.34744488930531, 34.74706340552641], [-77.34705373501232, 34.74699939630244], [-77.34702721432419, 34.74701389051459], [-77.34698078267812, 34.74699125235793], [-77.34657602104281, 34.74694322730541], [-77.34645195378181, 34.74693221665889], [-77.34622939595384, 34.74690737063224], [-77.34616040654339, 34.746904860645536], [-77.34612520165857, 34.746895738457916], [-77.34601895059913, 34.74687951246432], [-77.3458751115921, 34.746855987358245], [-77.34569348832466, 34.7468335540434], [-77.3453510778967, 34.74676751488102], [-77.34529476069865, 34.746791832299046], [-77.34513325116772, 34.74675732150281], [-77.34478253672864, 34.746745729012545], [-77.34471153020316, 34.74673758645234], [-77.34423362076086, 34.74639334727212], [-77.34422620927951, 34.74638519507885], [-77.3442184593753, 34.74637308668187], [-77.34392710406797, 34.745948013801254], [-77.34387272374464, 34.745868676017], [-77.34344499741233, 34.74552676390407], [-77.34332996355803, 34.74530811775198], [-77.34260121544482, 34.74526976437371], [-77.34241496862612, 34.74433439795745], [-77.34201715486316, 34.74414221670765], [-77.34142203972853, 34.74385471044765], [-77.34075793431478, 34.74353388020096], [-77.34031951596668, 34.743300556591876], [-77.33952822669019, 34.74290282177094], [-77.33843725481942, 34.74231453323401], [-77.33839759503866, 34.74219562005735], [-77.33834724127836, 34.741843071365174], [-77.33819287878356, 34.740776409937446], [-77.33814060124003, 34.74040570701348], [-77.33898220441714, 34.73965845423883], [-77.33954118958832, 34.73973959856058], [-77.34149658440451, 34.73925045587108], [-77.34314847300489, 34.73971891535672], [-77.3435207874869, 34.73983256399781], [-77.34366695332074, 34.740026159457535], [-77.34442053930326, 34.74071730337265], [-77.34441834623355, 34.74149423243772], [-77.34394909745475, 34.74233385565749], [-77.34371043588139, 34.74284009030234], [-77.34335758919232, 34.7435892426043], [-77.34448475717888, 34.74382131343306], [-77.34487313132583, 34.74412019151129], [-77.34494519196038, 34.744255584161486], [-77.34491085504864, 34.74435094220068], [-77.34529503621316, 34.74472956259841], [-77.34531779084381, 34.74475740071286], [-77.34533628770372, 34.74477996044685], [-77.34552625328756, 34.744964516110876], [-77.34554973634701, 34.74497320620006], [-77.34581851894407, 34.7449893773367], [-77.34628202445968, 34.74480422822242], [-77.34648310715016, 34.74476358035392], [-77.34672684541286, 34.74479493809874], [-77.34679486075183, 34.74457986694422], [-77.3467481691517, 34.74444574026862], [-77.34678273265153, 34.74409415264728], [-77.34679577757981, 34.743687492341294], [-77.34679146942462, 34.7436240748406], [-77.34679510146347, 34.74357883869847], [-77.34685853432435, 34.743471505131104], [-77.34701528559714, 34.74308749143076], [-77.34705216794828, 34.743029396934226], [-77.34721309210809, 34.74267259813175], [-77.34723258976842, 34.74257029977933], [-77.34729542075529, 34.74244813329101], [-77.34730115546984, 34.74243147877835], [-77.34728609438424, 34.742319269797804], [-77.34736250404146, 34.74216669068953], [-77.34738522258162, 34.742061980101106], [-77.34749108724702, 34.74164233041253], [-77.34750944422714, 34.7415575582577], [-77.34752154825256, 34.7414858517985], [-77.34756167979361, 34.74130670224642], [-77.34757431971691, 34.74107779175343], [-77.34757571510951, 34.74106108719222], [-77.34757585521692, 34.74104989961955], [-77.34757546864759, 34.74100399065683], [-77.34752236289316, 34.740696854781376], [-77.34738174616494, 34.74060032067392], [-77.3472763723752, 34.74017552826829], [-77.34728516433994, 34.740126193088585], [-77.34725517323764, 34.74011398052973], [-77.34724103434039, 34.74009358534088], [-77.34692034023968, 34.739583132282334], [-77.34684404629849, 34.739398503426], [-77.34678359070794, 34.739294124213075], [-77.34677019049116, 34.73922208959179], [-77.34663319728102, 34.739093494551646], [-77.34654798772856, 34.73908114388907], [-77.34642222479715, 34.73878891529524], [-77.34641741686282, 34.738783110215934], [-77.34608657731948, 34.73864764963562], [-77.34583728486614, 34.73837531991726], [-77.34563912237364, 34.73820342260852], [-77.34554973529814, 34.737669076171215], [-77.34538230021144, 34.73746298343555], [-77.34486780527645, 34.737219924719845], [-77.34463426532169, 34.73669722505898], [-77.34286282376546, 34.73718519345413], [-77.34215944115341, 34.73595554393464], [-77.34417889727334, 34.73487777089874], [-77.34518082714025, 34.734816165353415], [-77.34564050588929, 34.735048932487956], [-77.34649300122825, 34.73536108569854], [-77.34703865214195, 34.73555030495301], [-77.34739401806186, 34.73544411631753], [-77.34790297386034, 34.7356738937981], [-77.34792447394585, 34.73567973759819], [-77.34797736080844, 34.735690358362774], [-77.34856048181697, 34.735552034222366], [-77.3488587765282, 34.73572710844445], [-77.3490581465113, 34.73590053926738], [-77.34934611513955, 34.73562656680234], [-77.34958892199069, 34.7354236740712], [-77.34972500596515, 34.73532400177817], [-77.34986295645896, 34.735191751891165], [-77.35006482718362, 34.734986821254964], [-77.35013452684551, 34.73486142180809], [-77.35023145103465, 34.73467128232434], [-77.35026672143105, 34.734599590649566], [-77.35028535675207, 34.73454394804112], [-77.35035828514818, 34.73434333454172], [-77.35044661954744, 34.73404856421409], [-77.35066649287539, 34.73381365608909], [-77.35047849813466, 34.733072764945966], [-77.35034307425667, 34.733008644733346], [-77.35039664620956, 34.732875927881764], [-77.35027727974295, 34.732621990768465], [-77.35053959170502, 34.731881548640544], [-77.3502015401539, 34.73154073763205], [-77.35007681737629, 34.730970296766216], [-77.34999656773878, 34.73091002625138], [-77.34992466437676, 34.73085602330948], [-77.34934609301507, 34.73062199336924], [-77.34889112764463, 34.73029074353806], [-77.34784246154011, 34.73020182046101], [-77.3469806683185, 34.728621201826556], [-77.34662676772592, 34.72798347096168], [-77.34640050449136, 34.72757571130669], [-77.34799671883565, 34.725123635541195], [-77.35004342674642, 34.724755537557456], [-77.34986920683238, 34.72320067894698], [-77.35419469580589, 34.720277678296206], [-77.35650165321927, 34.72038673954385], [-77.35655384058104, 34.720401710248886], [-77.35677856745671, 34.720511587184674], [-77.35869637581638, 34.72127169236099], [-77.36018125966734, 34.720709255165936], [-77.36146707587153, 34.719978076066944], [-77.36199109912451, 34.72002436096491], [-77.36377981912982, 34.72026175117675], [-77.36470235755624, 34.720384171944254], [-77.36512735860009, 34.72025023791514], [-77.3653067838973, 34.72010621700636], [-77.36649743461929, 34.719150502019964], [-77.36663194078149, 34.71903052870037], [-77.36718464744807, 34.718873444200355], [-77.36916996741074, 34.718194268658394], [-77.37001514954216, 34.71848451754688], [-77.37112481232916, 34.71859552966829], [-77.37142940860312, 34.7186613864978], [-77.37225555963732, 34.71890719412957], [-77.37331253192193, 34.7180313543601], [-77.37368416423308, 34.71662564223599], [-77.3738556384957, 34.71600711927575], [-77.37086185367482, 34.712567571502575], [-77.37086893479858, 34.712518481508724], [-77.37082265009933, 34.71251990107143], [-77.37201594237685, 34.708484998953715], [-77.37201240213084, 34.708462180037984], [-77.37201180956566, 34.70845047500018], [-77.37205888199762, 34.70823833114198], [-77.3724377348966, 34.70645414230361], [-77.37219475637305, 34.705155507580926], [-77.37056518799983, 34.70513311329034], [-77.37017809380785, 34.704815138810346], [-77.37008737526861, 34.70422378760245], [-77.37008814256838, 34.70385271888049], [-77.37012775409117, 34.70359254805493], [-77.3697942574631, 34.70366365623674], [-77.36949362051028, 34.70295964068306], [-77.36934706927005, 34.70261646028385], [-77.36945850937352, 34.701989681633606], [-77.36946434210438, 34.70173768301366], [-77.36956510218221, 34.70120846058085], [-77.36960580740302, 34.700994654320766], [-77.36964024457228, 34.70081376818327], [-77.36971991021576, 34.70006934369867], [-77.3697610543314, 34.69999853280582], [-77.36978959668994, 34.69991028910151], [-77.36973144064771, 34.69975379099773], [-77.36909665297529, 34.69965518933638], [-77.36819924924939, 34.69923838341177], [-77.36798974755654, 34.69893024832626], [-77.36762760829626, 34.69875217648814], [-77.36686176500389, 34.69844740121955], [-77.36664845173225, 34.698385736853815], [-77.3663724787466, 34.698379420178085], [-77.36533220632862, 34.69841082943673], [-77.36474978058192, 34.698270228752506], [-77.36344518385684, 34.697942034828515], [-77.36162152312986, 34.69752418698246], [-77.3608594081985, 34.69732160035193], [-77.35880025157739, 34.69677418693541], [-77.35863725177295, 34.69672804139093], [-77.3584258102852, 34.696830038097666], [-77.35640538491185, 34.696167922244], [-77.354809469685, 34.69834288409773], [-77.3522913877707, 34.69947387580212], [-77.35146967912502, 34.70048864883152], [-77.35023845079081, 34.70091341407341], [-77.34685337053646, 34.70022033746572], [-77.34745780823262, 34.698963223170054], [-77.3483066196753, 34.69807137516637], [-77.34837116138658, 34.69774199434168], [-77.34812886498703, 34.69712101466364], [-77.34806715326616, 34.69691766030982], [-77.34783496636464, 34.696821278999565], [-77.3473895240923, 34.696871770669524], [-77.34654809214884, 34.697129801766295], [-77.34539177873988, 34.69765396063361], [-77.34520158230868, 34.69764361568744], [-77.34494950947872, 34.697739831641854], [-77.34434908706504, 34.698006209412064], [-77.34406044807757, 34.69816674341023], [-77.34403953037605, 34.6984399808818], [-77.34389519385695, 34.69867679715066], [-77.34467576174174, 34.699453942647914], [-77.34483673105355, 34.699403281542814], [-77.34497203750385, 34.699835124530445], [-77.34450906849369, 34.69965538677156], [-77.3436045111521, 34.69901994257451], [-77.34341775519863, 34.69891836983886], [-77.34225664374955, 34.69953822030409], [-77.34182033602727, 34.699359063525364], [-77.34147485567405, 34.69928800660797], [-77.34115077787015, 34.699223396085934], [-77.34102816500729, 34.699180210060135], [-77.34062822052675, 34.69917572953516], [-77.34055176890617, 34.69922459178745], [-77.34043301742304, 34.69939551410513], [-77.34041752454299, 34.69962727772916], [-77.3404168736196, 34.699641416836386], [-77.34041643988697, 34.699650837030205], [-77.34041427492699, 34.6996978675822], [-77.34039762918677, 34.70005946266469], [-77.34043971267819, 34.70012565914133], [-77.34045651897841, 34.70040830987831], [-77.34036105812241, 34.70085392036917], [-77.34025453793491, 34.70112581336804], [-77.33991942449452, 34.7016098105552], [-77.34011152850759, 34.70280062065515], [-77.34018764612271, 34.70308449234792], [-77.33998084074899, 34.70325044734914], [-77.33897777783167, 34.703250455149494], [-77.33778673833984, 34.70325046572369], [-77.33758605885895, 34.703250466689454], [-77.33743267028618, 34.70336450191893], [-77.3348245066199, 34.70451251884308], [-77.33337263710082, 34.70487179064575], [-77.33138462763853, 34.705021930507115], [-77.32983888202764, 34.70518653658515], [-77.3278605674217, 34.70509151784837], [-77.32729941375696, 34.705011039150776], [-77.32528688985364, 34.70436849442074], [-77.32376476163967, 34.70457650788913], [-77.32288541459442, 34.70350729734886], [-77.3219235660375, 34.70283975920104], [-77.32139249182563, 34.7017624385901], [-77.32133236752027, 34.7017180721867], [-77.32127833220584, 34.70168165553327], [-77.32107063583317, 34.70162377025328], [-77.32033547464975, 34.70190726826165], [-77.31900578757563, 34.70234636145496], [-77.31575448769162, 34.704484303618635], [-77.31569317356097, 34.70451630546526], [-77.31563933662308, 34.704519531397644], [-77.3155736557636, 34.704509072786266], [-77.31200351391672, 34.70416254959312], [-77.31105090979463, 34.703908824591046], [-77.31002638351144, 34.702530251914084], [-77.30947895891168, 34.70144486414807], [-77.30942198677214, 34.7014187712345], [-77.30940261431947, 34.70134222770469], [-77.3081151943587, 34.7008472804056], [-77.3074588506988, 34.699791515675734], [-77.30742712355452, 34.69977636871882], [-77.30618147086494, 34.69918168047362], [-77.30514212328842, 34.699522838803226], [-77.30354957501768, 34.69885195830292], [-77.30295643566745, 34.69880384383987], [-77.3025132558623, 34.69849959948204], [-77.30280822454276, 34.698194177722065], [-77.30326746415614, 34.69773497927338], [-77.30423531137538, 34.69631447215217], [-77.30491232199516, 34.69542903318042], [-77.30498892859022, 34.69502017387123], [-77.30541568144466, 34.694203461717635], [-77.30695763072166, 34.6932828118472], [-77.307366218829, 34.693542340562246], [-77.3077642542493, 34.69388192303005], [-77.30797259751927, 34.69390976889492], [-77.30820452777401, 34.69404168307594], [-77.30859401395004, 34.69417447250195], [-77.30907625873807, 34.694231861802834], [-77.30980513611101, 34.69418462468292], [-77.31025229953455, 34.69430515138843], [-77.31036116683892, 34.69439187974211], [-77.31053323035795, 34.69447747767968], [-77.3112814322162, 34.69488349195129], [-77.3115840859291, 34.69502774964403], [-77.31172988614611, 34.69528831803756], [-77.31175843824391, 34.695301811354724], [-77.31223114883294, 34.69531830885649], [-77.31234792192348, 34.69533343875255], [-77.31260177252668, 34.69538862080021], [-77.31313603075822, 34.69541061653761], [-77.31331175519776, 34.695559026703926], [-77.31346692273561, 34.69560286953725], [-77.31391724472583, 34.69559801581492], [-77.31396545099373, 34.69594722898357], [-77.31398271037692, 34.695954488245924], [-77.3143171139458, 34.696078656035624], [-77.31429865510086, 34.69615489314745], [-77.3144844038545, 34.69622137312345], [-77.31462277123217, 34.69611049749605], [-77.31467360764545, 34.69594951023429], [-77.31472598788734, 34.69585267840649], [-77.31532323154264, 34.69539565041057], [-77.31544833451146, 34.695359699724406], [-77.31600068339824, 34.69512477564588], [-77.3169276518762, 34.69539492318509], [-77.31710635882423, 34.69544002052863], [-77.31716336463222, 34.69546618684221], [-77.31721553156135, 34.69551164135416], [-77.31766973967008, 34.69556139250093], [-77.31785842466236, 34.695582059185085], [-77.31796003035626, 34.69559250424114], [-77.31804355112885, 34.69557745362567], [-77.318265022713, 34.69557305686878], [-77.31864817855626, 34.69564409351754], [-77.3192571673401, 34.695432291708585], [-77.3194897121403, 34.69547902296075], [-77.31977476243793, 34.69536639463344], [-77.32037970940377, 34.69535715740254], [-77.32074576073049, 34.695277109302125], [-77.32116161908824, 34.69531955541987], [-77.32132143168636, 34.69535620606863], [-77.32135854846923, 34.69539253158619], [-77.32145129943625, 34.695418635537145], [-77.3218705057761, 34.69552678077007], [-77.32218908953104, 34.69554195042405], [-77.32289966437718, 34.69558419611613], [-77.3230499062415, 34.69558846604083], [-77.32312724835622, 34.69560859844691], [-77.32324372814364, 34.69566036292618], [-77.3237259018799, 34.69593635751358], [-77.32384597089703, 34.6960651915691], [-77.32406097208828, 34.69622918226361], [-77.32427056449089, 34.69630564277343], [-77.32453471106228, 34.69645816223247], [-77.32458837776576, 34.696474318373674], [-77.32467495990363, 34.69652030893319], [-77.32489361722503, 34.69661463889918], [-77.32507793003708, 34.69662739150689], [-77.32514264780235, 34.69662705038775], [-77.32539178538687, 34.696625584542936], [-77.3255157841488, 34.69662758347206], [-77.32576291572079, 34.69655275120089], [-77.32609692819099, 34.69647733394748], [-77.32635272213354, 34.696583236752275], [-77.32693256861789, 34.6966072081554], [-77.3269445183426, 34.69660687529078], [-77.32696028207582, 34.69660149788913], [-77.32696310020667, 34.696612672280786], [-77.32747851654199, 34.69682935236039], [-77.32768513486414, 34.696832186101304], [-77.32785245762655, 34.696784583947135], [-77.32801033273918, 34.69658205396533], [-77.3280578532106, 34.696462598743395], [-77.3281147999443, 34.6963788017618], [-77.32835833071238, 34.69593403576017], [-77.32874092358108, 34.695657205084814], [-77.32905944079818, 34.69550960014974], [-77.32960382212072, 34.69535635764853], [-77.32976463929981, 34.69528822132247], [-77.32994945484211, 34.695228525699655], [-77.33037870531173, 34.6950899825153], [-77.33052283334632, 34.69504355795285], [-77.33082044474344, 34.69494769537323], [-77.33105363932123, 34.69482749739454], [-77.33129330962495, 34.69455689623527], [-77.3313895469106, 34.69437685291836], [-77.33144719952375, 34.69429210981002], [-77.3314483646335, 34.6942277098598], [-77.33147448222557, 34.69404468305145], [-77.33145497954115, 34.69393239621148], [-77.33135265424232, 34.69379860861425], [-77.3312651989491, 34.69368426333011], [-77.33112574392473, 34.693605130957124], [-77.3310802025847, 34.69343244884289], [-77.33090118647091, 34.693292204573424], [-77.33053534542074, 34.69319871345533], [-77.33059600378076, 34.69301667605968], [-77.33002131567609, 34.69296213191045], [-77.3298238355944, 34.69287957458762], [-77.32874223899799, 34.69310461419059], [-77.3285305802689, 34.69320980755012], [-77.32739428245883, 34.69411672123299], [-77.32729679464302, 34.694376435318], [-77.32718213144355, 34.69463317334639], [-77.32686112314695, 34.694834241179755], [-77.32663514739522, 34.694708154627335], [-77.32666639821727, 34.69446290256573], [-77.32649942355027, 34.69423939012592], [-77.3260276611768, 34.693582553722045], [-77.32595503130361, 34.69343364538126], [-77.32554442761192, 34.693395560399246], [-77.32539030630485, 34.692685516377665], [-77.32540614533596, 34.69227942146412], [-77.3254380892862, 34.691460661204076], [-77.32548348096002, 34.69064351087823], [-77.32552787415423, 34.68769981842059], [-77.32553424898485, 34.687548544295886], [-77.32553846884981, 34.68744843000663], [-77.32555921060907, 34.68695647818781], [-77.32561692239614, 34.68558773876575], [-77.3239097466175, 34.68554846297466], [-77.32169129361147, 34.684176340444516], [-77.32202179513934, 34.683847935582435], [-77.32434324976163, 34.68154121526524], [-77.32510011942497, 34.681480020432005], [-77.32735448833256, 34.68077972008825], [-77.3287920335633, 34.68125348767222], [-77.32923366367228, 34.68145298734339], [-77.32909815785531, 34.682186258355806], [-77.32917721427162, 34.68228464383033], [-77.32921452682822, 34.68261784639878], [-77.32931571271335, 34.68264379904907], [-77.32975454337068, 34.6826287238972], [-77.32988467702968, 34.6826260023153], [-77.3304418662331, 34.68251387209155], [-77.33052972509188, 34.682559718439016], [-77.33082562373812, 34.682436756500984], [-77.33094565208313, 34.68229020670388], [-77.33164540942177, 34.681836965617684], [-77.3319074019254, 34.681590136272845], [-77.33192582613962, 34.68179851043139], [-77.33251144860048, 34.68208420051933], [-77.33291966869191, 34.682226262784084], [-77.33366623985273, 34.6821495675056], [-77.33407625144773, 34.682365737582835], [-77.33411260895333, 34.68242881551431], [-77.33467214887997, 34.68237487794974], [-77.33468729320875, 34.682380789924146], [-77.33471404397787, 34.682390850643515], [-77.33497541666792, 34.682553239330886], [-77.33519022970692, 34.68265185262832], [-77.33550233051558, 34.682501218633064], [-77.33590853079112, 34.68223967744497], [-77.33600218327189, 34.682214160156676], [-77.33648841350939, 34.68209897942375], [-77.33655949408823, 34.68205925919135], [-77.33660550792808, 34.68208729866639], [-77.33708291598714, 34.68198784342338], [-77.33719036264347, 34.6819479987128], [-77.3375073099093, 34.6817875602192], [-77.33755452720602, 34.68176771794896], [-77.33758422053313, 34.681728381767385], [-77.33766945157066, 34.681498069562274], [-77.33786201278579, 34.68112049142817], [-77.33775463491578, 34.68099900773785], [-77.33774228803219, 34.68065747071714], [-77.33753916714691, 34.680053815483355], [-77.3376564402809, 34.67828325266418], [-77.33759476673444, 34.67817299369472], [-77.33755983483279, 34.67810148319974], [-77.33737289467113, 34.677776315917185], [-77.33636912692467, 34.675962970108536], [-77.33555853161343, 34.67447701444579], [-77.33455638917764, 34.672472793590984], [-77.3343612222734, 34.67120186363495], [-77.33404912325607, 34.67078508491513], [-77.33301849777357, 34.66908209594567], [-77.33288816292233, 34.668691068968855], [-77.33248852441244, 34.66710017506164], [-77.33149163869719, 34.66684984521307], [-77.33119417721306, 34.666831213972735], [-77.3303196224049, 34.66636784552975], [-77.32955632470615, 34.66608795626333], [-77.32849229304631, 34.66613398524972], [-77.32735828267346, 34.665845915938476], [-77.32566305978173, 34.664802444839275], [-77.32559911866927, 34.66473558577433], [-77.32544334737939, 34.66469037630257], [-77.32372187385364, 34.66385887028893], [-77.3228905099585, 34.663752627698734], [-77.32061232583187, 34.66264374441823], [-77.32009214345268, 34.66257383725024], [-77.31954056064102, 34.66212362697769], [-77.3197362992786, 34.66182576914317], [-77.31973626105207, 34.6608011192994], [-77.31975935968123, 34.658717752782046], [-77.31893027119943, 34.65678598578589], [-77.31853484963762, 34.655759203776825], [-77.31838436574068, 34.65553032081188], [-77.3178017347013, 34.65467991441314], [-77.316374239411, 34.6524299200691], [-77.31597379475252, 34.65164581252418], [-77.31512247579502, 34.650575460513565], [-77.31401327372093, 34.64937757782228], [-77.31324664217021, 34.64786143041875], [-77.31198531125818, 34.647704844529315], [-77.3095937747521, 34.645908702387246], [-77.3090472727272, 34.64582605217663], [-77.30803687264182, 34.64555918986087], [-77.30635094069868, 34.64515175682862], [-77.30543313848372, 34.64496047860503], [-77.30245385237589, 34.644209276499026], [-77.30143709487304, 34.64368679262679], [-77.30091320205757, 34.64357754855805], [-77.30039713668461, 34.64376192019141], [-77.2965893945444, 34.64409728278252], [-77.29593458116206, 34.644293160073275], [-77.2953536352603, 34.64438997535797], [-77.29356847781793, 34.645265974585136], [-77.29348216798947, 34.645311650762316], [-77.29288366923576, 34.6455193853439], [-77.29145317257723, 34.64608609458194], [-77.29121685897229, 34.64631129187835], [-77.29088779850788, 34.64619570907511], [-77.29039246605585, 34.64586027733081], [-77.2874650504568, 34.643788446594954], [-77.28674654552304, 34.64298333680634], [-77.28635346746952, 34.64132007237883], [-77.28632544396045, 34.63966518194043], [-77.28710273384158, 34.638557575533795], [-77.28794873304857, 34.6374697378523], [-77.28926934869898, 34.6365893620539], [-77.29128427349826, 34.635246085924926], [-77.29153415568801, 34.63511204306059], [-77.29181980415339, 34.63517862495332], [-77.29431294668746, 34.63620026900248], [-77.29957697218266, 34.63765502941717], [-77.29973518002012, 34.63770055609329], [-77.29993938805053, 34.63747246744491], [-77.30398681183385, 34.63336055490123], [-77.3041335991209, 34.631231994527575], [-77.30460494085553, 34.630411359059764], [-77.30649356392644, 34.62809695347238], [-77.30786347260913, 34.62715270744471], [-77.30809387730862, 34.62692227877977], [-77.3092610656752, 34.62639767995822], [-77.30992246235365, 34.62596089377423], [-77.31011737883229, 34.625623549483656], [-77.31065225588027, 34.62545809279456], [-77.3126474083235, 34.62547163442682], [-77.31513185723324, 34.62548844858514], [-77.31536025806041, 34.62532119906748], [-77.31541600748164, 34.62555421667752], [-77.31541838263186, 34.62575614860955], [-77.31524949306944, 34.62567896962853], [-77.31510353132317, 34.62728498568355], [-77.31480050019627, 34.627848701265734], [-77.31440638289205, 34.627858444178955], [-77.31410563847845, 34.6282657232974], [-77.31401096574388, 34.6284459801078], [-77.31390384121562, 34.62854448916978], [-77.31382011427173, 34.62872683889509], [-77.31399245818145, 34.628986300502106], [-77.31406078486702, 34.62903994342804], [-77.31414918332031, 34.62910372419625], [-77.31441247908151, 34.629491437533915], [-77.31459226698449, 34.62988696737623], [-77.31449218893337, 34.63023049700965], [-77.31453912194786, 34.63038824879722], [-77.31460638670026, 34.630451270820316], [-77.31476871945011, 34.63048884513249], [-77.31491257779354, 34.63038201955799], [-77.31514020345014, 34.63034629603297], [-77.31614248674619, 34.63043735742441], [-77.31618486045832, 34.630341910694774], [-77.31697258428446, 34.63040468229546], [-77.31651497153122, 34.630785336510705], [-77.316986696654, 34.63128230092053], [-77.31704378269538, 34.63143231942525], [-77.3177030192154, 34.63199250257191], [-77.31738122210686, 34.63226202189345], [-77.31752759636386, 34.632506915539885], [-77.31762000524719, 34.63270897319394], [-77.3177222844324, 34.632833833883666], [-77.31788025241377, 34.63295656435544], [-77.31801215829373, 34.633185135940124], [-77.31803508310252, 34.633212942337565], [-77.31804320084467, 34.63322284798485], [-77.31829739941112, 34.633278603094766], [-77.31862788257143, 34.63355366684693], [-77.31888788914279, 34.63424202407614], [-77.31918932924418, 34.633808640420995], [-77.31937769137905, 34.633492526236004], [-77.31946580454861, 34.633541898342116], [-77.31943196322125, 34.63344343800954], [-77.31931058872303, 34.633158107738474], [-77.31873745489807, 34.63240779952978], [-77.31813030450984, 34.63193392956746], [-77.31778324688052, 34.63063527386901], [-77.3187562307362, 34.630395248781184], [-77.31920450834502, 34.62929325094356], [-77.32284716687465, 34.62886483867736], [-77.3234868843035, 34.628448583268806], [-77.32492442677686, 34.62929713841628], [-77.32407405189358, 34.62774307782328], [-77.32772725757438, 34.62406036008521], [-77.32812672276319, 34.62161046699587], [-77.33102194867692, 34.6200381755567], [-77.33153462550207, 34.61945499517195], [-77.331915011393, 34.61941237722796], [-77.3322979671166, 34.6193386229363], [-77.33417151436186, 34.617899046865176], [-77.33614129416648, 34.61841924011192], [-77.3366378248688, 34.617430792915876], [-77.33806286143613, 34.61710716061557], [-77.33902048826606, 34.61654634437637], [-77.33973642835207, 34.61643875196943], [-77.34107863168967, 34.61572709471084], [-77.34137675473656, 34.61553064033227], [-77.34197510140555, 34.615860481315025], [-77.34305001992861, 34.61641522122669], [-77.34410362726584, 34.616359821845165], [-77.34669160951438, 34.617596116223396], [-77.34696343931606, 34.61771227722667], [-77.34703339683371, 34.61776442987936], [-77.34716197180629, 34.617821319180855], [-77.34853993939761, 34.618238283173895], [-77.34928487461204, 34.61841181789885], [-77.35011661345598, 34.618505650773365], [-77.35096130334387, 34.61818439226495], [-77.35169393078868, 34.61767470741508], [-77.35236136862888, 34.61707351735101], [-77.35169478255654, 34.61620532202209], [-77.35145099348905, 34.61576910853694], [-77.35146548142954, 34.61550419362433], [-77.35148838735547, 34.61527802807508], [-77.35163998025223, 34.61378089132788], [-77.35182903280271, 34.61191355671498], [-77.35198897124211, 34.61033430339626], [-77.352128589804, 34.609078775397876], [-77.3532761719194, 34.60806125995098], [-77.35441790410398, 34.6087546537011], [-77.35642923460482, 34.608453214118576], [-77.35711395142428, 34.60885920951605], [-77.35800563023643, 34.608934819225965], [-77.35830613142032, 34.60910164091827], [-77.35879383332187, 34.60917832531356], [-77.35938124056108, 34.60927068354681], [-77.35955447055719, 34.609275526314384], [-77.35958210457227, 34.60929197379722], [-77.36022308449242, 34.60999863136192], [-77.36002095757358, 34.61040355966299], [-77.35998819011827, 34.610470447078654], [-77.35997569034232, 34.61048349401007], [-77.35984020408905, 34.610624143934444], [-77.35958131965226, 34.610894483307355], [-77.35955924070215, 34.61091950892669], [-77.35952673369452, 34.610947954613714], [-77.35950033220873, 34.61103890711697], [-77.35941841811794, 34.61163758283614], [-77.35945192983691, 34.61180782469337], [-77.35947396150723, 34.61191974546304], [-77.35958078811274, 34.611981794151546], [-77.3597777257985, 34.612185490304476], [-77.359907027295, 34.61223991956358], [-77.36033457633417, 34.61249293737475], [-77.36036889000064, 34.61250669651139], [-77.36037650288942, 34.612515664113744], [-77.36038761285697, 34.612522269328764], [-77.3607629607261, 34.61273519826214], [-77.36085504305584, 34.61278034750925], [-77.36115703117763, 34.61296888221671], [-77.36152444540403, 34.612812111144486], [-77.36156730788296, 34.612794283168576], [-77.36159445692306, 34.612773126931415], [-77.36194564670237, 34.612417069676326], [-77.36199394158929, 34.61234305448712], [-77.36200231083366, 34.612289869997596], [-77.36215580311656, 34.612041610179574], [-77.36194580610503, 34.61207054740002], [-77.3618352719079, 34.611584098963036], [-77.3616901817787, 34.61148568816405], [-77.36140037902635, 34.611266157034066], [-77.36136340941106, 34.61090485591072], [-77.3613484779381, 34.61068576344536], [-77.36137621910876, 34.61044696233256], [-77.36146473023534, 34.61014991689103], [-77.36171466341611, 34.60978395031796], [-77.36182567393715, 34.60963737036185], [-77.36194702129181, 34.60943431174158], [-77.36227722623796, 34.60934735591934], [-77.3623412428881, 34.60930852765538], [-77.36236898341481, 34.60929508811979], [-77.36240580753375, 34.60925991492563], [-77.3624297268909, 34.60916123760837], [-77.3625113165805, 34.60882017329509], [-77.36255798918378, 34.60862202240864], [-77.36255584809649, 34.60815862106357], [-77.36242989619632, 34.6079827851455], [-77.36224472840738, 34.60768963848828], [-77.36198074456017, 34.607198327140324], [-77.36195741842661, 34.6063622470461], [-77.36195327824528, 34.606347975192875], [-77.36165142829995, 34.60554751463369], [-77.36128235231648, 34.60403287329812], [-77.3612910562019, 34.60390117370442], [-77.36140705627903, 34.603619905016785], [-77.36185034045022, 34.60212244671302], [-77.36144335865207, 34.60078504315065], [-77.36152324277612, 34.600083396218736], [-77.36209467995647, 34.59869084495411], [-77.36095825007516, 34.59693385209893], [-77.36089923133869, 34.59546649560461], [-77.3601512451265, 34.59496868007238], [-77.35958940875922, 34.594554315145004], [-77.35825929822069, 34.5924500568032], [-77.35756177051844, 34.591340197585744], [-77.3577947500014, 34.59058132437188], [-77.35801515708066, 34.59047297056068], [-77.35849224802463, 34.59020448025279], [-77.35959189513375, 34.58960482884821], [-77.36004033493273, 34.58928024015532], [-77.36038028489396, 34.589103009908314], [-77.36091138375852, 34.588671900292155], [-77.36107050163174, 34.58854320597419], [-77.36116877625379, 34.58837276801874], [-77.36145730132543, 34.588054887337634], [-77.36177315344256, 34.58789694803589], [-77.36195717588193, 34.58780590461118], [-77.36207525074998, 34.58778244167135], [-77.36235125890295, 34.58776112075337], [-77.36265861256929, 34.58766472278735], [-77.3627453502757, 34.58769745796017], [-77.36285681166102, 34.58754272185868], [-77.36282695631611, 34.58745921887646], [-77.36280259196602, 34.58712597364886], [-77.36274564372667, 34.587070331047315], [-77.36254384717834, 34.58695614176284], [-77.36217005636558, 34.5867924849217], [-77.36195775785038, 34.58658734381873], [-77.3616677299409, 34.586328300845324], [-77.36117002893684, 34.58580132752605], [-77.36092560825399, 34.58553690091388], [-77.36076514846573, 34.585296523230355], [-77.36058158837396, 34.58510819807756], [-77.36042944515009, 34.58454627099308], [-77.36042957695796, 34.584495724537746], [-77.36042465466399, 34.584451117438746], [-77.36031013359514, 34.58366380984778], [-77.3602853223899, 34.58292390318464], [-77.36010609502311, 34.582545137317], [-77.36036165803783, 34.581958181634704], [-77.35988430094301, 34.581716154686504], [-77.35959579826104, 34.58190483787345], [-77.35935728212914, 34.581845742941276], [-77.35902711865893, 34.58191390478351], [-77.35880766047265, 34.58203716054952], [-77.35817076861804, 34.58211062667195], [-77.35801951797585, 34.58217317146508], [-77.3565844624096, 34.58234975491979], [-77.35644327434476, 34.582353808236086], [-77.35625554388753, 34.58234694182521], [-77.35354534960656, 34.582664969984734], [-77.35329097202978, 34.58235841753792], [-77.35254102991733, 34.58227567005416], [-77.35013857911903, 34.58249959903703], [-77.34856272602073, 34.58195793921488], [-77.34698647991203, 34.58217255669122], [-77.34453611162122, 34.5815947872729], [-77.34383467981102, 34.58144498132786], [-77.34350777125866, 34.58133914683459], [-77.34278786641174, 34.58109037843941], [-77.34133412439887, 34.58059790594326], [-77.3406836293608, 34.579769531426194], [-77.33944432507509, 34.580236271042516], [-77.33894144414634, 34.580123950929355], [-77.33872932511164, 34.5799758087866], [-77.33792772144326, 34.57966413570021], [-77.33753147945691, 34.57967029399769], [-77.33699160533219, 34.579376560499874], [-77.33683931609107, 34.57929545177045], [-77.33674374499364, 34.57926015024081], [-77.33651438733108, 34.57919799240565], [-77.33595591034317, 34.57898556421545], [-77.3357746758719, 34.578897768915105], [-77.33528618632471, 34.57890006168852], [-77.33516787702084, 34.57896395535185], [-77.33456395203531, 34.57907494538142], [-77.33437969731783, 34.57912233004411], [-77.33424025434289, 34.57907327785902], [-77.3336881082467, 34.579106277923394], [-77.33359158031612, 34.579200548117015], [-77.33298686944237, 34.57930077875743], [-77.3328033031547, 34.579469120508], [-77.33256955426062, 34.579415025076884], [-77.33201528939318, 34.57941825004448], [-77.3314240085796, 34.579539892229164], [-77.33122713401517, 34.579534663875194], [-77.3311054412649, 34.57950469271661], [-77.32965065689152, 34.57995005063309], [-77.32931001303352, 34.5796315665729], [-77.32965160789625, 34.578857588227436], [-77.32986877231676, 34.57808638167019], [-77.3300035712738, 34.57783375215637], [-77.33044121526216, 34.57705251385623], [-77.33049553864718, 34.57697243375881], [-77.33067163162907, 34.57688866971085], [-77.33122963457735, 34.576601281574284], [-77.3316568278629, 34.57635806554416], [-77.33201791196547, 34.57630786227827], [-77.33236983917709, 34.576265448088016], [-77.33244737956332, 34.57624706450142], [-77.33280607335118, 34.57614642610632], [-77.33315016935822, 34.57605403813171], [-77.33316751000135, 34.5756808730593], [-77.33317189891113, 34.57564942672489], [-77.33314369756773, 34.5753212523107], [-77.3331311165738, 34.575261564836474], [-77.33298078052422, 34.57504588882243], [-77.33286874697414, 34.57487473742785], [-77.33284502920577, 34.57483734993009], [-77.33280724280363, 34.57474647371777], [-77.33252549810476, 34.574620381243626], [-77.33241340686351, 34.57454426887895], [-77.33238933664123, 34.57454504037547], [-77.33201962251155, 34.574283327850786], [-77.33184468613567, 34.57417284861132], [-77.3314933476079, 34.57394164166758], [-77.33123206224826, 34.57376008254064], [-77.3310497820863, 34.57363454187652], [-77.33075359234971, 34.57348058687266], [-77.33058526456401, 34.57335300659149], [-77.33044460886916, 34.5731245704786], [-77.33003227231669, 34.573139967662044], [-77.32965654331838, 34.57320241819198], [-77.32932483539966, 34.57332861897393], [-77.32922813272373, 34.57331225126356], [-77.32917439288677, 34.573282999786656], [-77.32898613484593, 34.57318336722746], [-77.3290036885609, 34.57302844667418], [-77.32910705190983, 34.572868139833716], [-77.32926303633994, 34.57264276497834], [-77.32942852748175, 34.57257565962139], [-77.3296573688582, 34.57225896193374], [-77.32979621115626, 34.57192002654338], [-77.32995835423522, 34.57137113129402], [-77.32999422057739, 34.57104249436953], [-77.32999101892271, 34.570684918398314], [-77.329998038231, 34.57061740861551], [-77.32992439263194, 34.570489514362094], [-77.32977621922073, 34.57022474947196], [-77.32973219577188, 34.57015243501284], [-77.32965931852402, 34.57003353763014], [-77.3295342146493, 34.56983499150825], [-77.32943382534259, 34.56966820763017], [-77.32941111739032, 34.56958480771137], [-77.32965710082358, 34.56939279374233], [-77.32965908118291, 34.56939164674383], [-77.32965988185333, 34.56939124883262], [-77.32966102350186, 34.56939100003446], [-77.33023822478226, 34.56908310963791], [-77.33044819580854, 34.56898601161593], [-77.33082759849829, 34.568815897468006], [-77.33085044551648, 34.56880549276534], [-77.33085895601793, 34.56877763633692], [-77.33079135793608, 34.56838070215772], [-77.33069482840332, 34.56812960970444], [-77.33056513902187, 34.56756413957227], [-77.33044973677423, 34.567212294994555], [-77.33032671420804, 34.56688220684326], [-77.32966276808833, 34.56610566005186], [-77.32960888763324, 34.566061524954776], [-77.32954877259607, 34.566012061673334], [-77.32912234964495, 34.56580691029996], [-77.32887552143123, 34.565335524968845], [-77.32885144720912, 34.56528919018778], [-77.32885056442663, 34.565263330355954], [-77.32884254092275, 34.56522884075657], [-77.32873282222067, 34.56443117458064], [-77.3285183150325, 34.56399914356215], [-77.32808897002165, 34.56380902009273], [-77.32801809850235, 34.56376123532078], [-77.32792467178668, 34.56369824202923], [-77.32801076730826, 34.56292193007129], [-77.32802860678797, 34.562834232465796], [-77.32805523180305, 34.56279306282994], [-77.32808991734368, 34.56275685352677], [-77.32839958706953, 34.56235638179871], [-77.3284415271723, 34.562304289518856], [-77.32848450985723, 34.56204010771008], [-77.32850837428141, 34.56191621066099], [-77.32848464854442, 34.56188541069578], [-77.32823988234156, 34.5617941201803], [-77.32809085038255, 34.56172144728688], [-77.32773682618787, 34.56155968719787], [-77.32730311772528, 34.561547972497905], [-77.32701740348344, 34.56158926186204], [-77.32679646971108, 34.56161629843805], [-77.32651502735605, 34.56176638306448], [-77.32582788626917, 34.5623014031697], [-77.32581344041381, 34.562397115754415], [-77.32500743481435, 34.56326836196555], [-77.32496318530691, 34.56330207370142], [-77.32493778467196, 34.5633206418291], [-77.32483882814391, 34.56339914388302], [-77.32285047773313, 34.564726649754675], [-77.321784073908, 34.56545556751627], [-77.32063335028309, 34.566053615386174], [-77.32016194010271, 34.56736072543893], [-77.31862697133995, 34.5707866533315], [-77.31855190913726, 34.57090748523697], [-77.31547100901332, 34.574653403471586], [-77.31536791789571, 34.574730719962766], [-77.31518489624592, 34.574867986052155], [-77.30916238075831, 34.57866229190482], [-77.30627412367414, 34.57982901590526], [-77.3038137872866, 34.58139730656876], [-77.30039137437812, 34.58372686762867], [-77.29956102204639, 34.58423313934832], [-77.29931533746496, 34.58449227059324], [-77.29817347077679, 34.58591176390061], [-77.29498194389187, 34.58841299892152], [-77.29433331693428, 34.59002654289663], [-77.29406978249322, 34.59134429747327], [-77.2933745607627, 34.59316796536332], [-77.2928623225207, 34.59399214417397], [-77.29115138955221, 34.59484762611161], [-77.28914059328478, 34.59585301915072], [-77.28638792901944, 34.59662393436952], [-77.2829292772148, 34.5977199213311], [-77.28158825929182, 34.59822017373277], [-77.28070333288942, 34.59864580720088], [-77.27873178956966, 34.600194917539255], [-77.2777097618019, 34.60118797254289], [-77.27723312933196, 34.602039563313355], [-77.27674685299414, 34.60295844776735], [-77.27656515680785, 34.60386701234898], [-77.27629688966209, 34.60520865880018], [-77.27594566197284, 34.60732744326128], [-77.27392443521666, 34.611092471622534], [-77.27269591669345, 34.612525331342184], [-77.27010286642414, 34.61487774822363], [-77.26965917462155, 34.615366071750046], [-77.26928185680715, 34.6155309772736], [-77.26740730897399, 34.616907298643596], [-77.26629135746651, 34.61685687855149], [-77.26540463377083, 34.61639100469779], [-77.2646389091382, 34.615865423518805], [-77.26450754540994, 34.61579788579719], [-77.26432962120904, 34.61572918394797], [-77.26411578017874, 34.61559349814398], [-77.2620296211711, 34.61402880907225], [-77.26160200286218, 34.613811109551236], [-77.25941395734566, 34.61253203466211], [-77.25692988203792, 34.61407702361939], [-77.25609473188322, 34.614962731574394], [-77.25560242755304, 34.61552587984106], [-77.25406343511352, 34.61663328270703], [-77.25399873000558, 34.61668318946636], [-77.25398517092687, 34.61671708517373], [-77.25309799232497, 34.61849763141419], [-77.25168982786661, 34.620460841245446], [-77.25093305813927, 34.62209798895861], [-77.24997403610135, 34.6236674460885], [-77.24719167654787, 34.62557424250927], [-77.24584526932418, 34.62600838426026], [-77.24219075005334, 34.62726434004532], [-77.2380781733703, 34.62802107093906], [-77.23686969799586, 34.62853195288804], [-77.23403539700038, 34.630530498325385], [-77.23209202815019, 34.63192613108996], [-77.23105139076571, 34.633136308655786], [-77.23047767934158, 34.63427557108058], [-77.23115124159793, 34.63562278254417], [-77.23171558348596, 34.636751529004485], [-77.23267953731681, 34.638679324457264], [-77.2328877772646, 34.63925207645882], [-77.23311405145537, 34.63954837662839], [-77.23372783661014, 34.640775834534125], [-77.23387449771786, 34.64182202327741], [-77.23290903187963, 34.643303012431026], [-77.23110803590814, 34.645795584512726], [-77.230043586526, 34.646847955877575], [-77.22941426468779, 34.64745923264563], [-77.22924133456614, 34.6486701381551], [-77.22912625875071, 34.64947569891705], [-77.22897503509691, 34.65053452914984], [-77.22874758642173, 34.652126066700504], [-77.22874798484004, 34.652402079173164], [-77.2287708401003, 34.6525475575477], [-77.22886742220427, 34.65429687367853], [-77.22892556111576, 34.65542862495063], [-77.22899626410819, 34.657606770456965], [-77.22904908837788, 34.658082060432704], [-77.22913860635327, 34.658287925161076], [-77.22933830898091, 34.658596188900766], [-77.23022831371637, 34.660060422852446], [-77.23046733229603, 34.66073003495915], [-77.2316916726957, 34.66206113246462], [-77.23052172400651, 34.66364858204761], [-77.23321904070211, 34.664260355783156], [-77.23683113153773, 34.66623683034738], [-77.23694492769744, 34.66712486018236], [-77.23718991507133, 34.66974760353058], [-77.2372308880662, 34.670000097094565], [-77.23723088447244, 34.670194510998], [-77.23683658270457, 34.670444925066406], [-77.23371658400892, 34.6723216748089], [-77.22957530367506, 34.67145057560633], [-77.22835530691684, 34.67033647034867], [-77.22390809884605, 34.669310684866076], [-77.2232151380182, 34.66893454762146], [-77.22064420122221, 34.66734130719468], [-77.21926760984368, 34.665145694244124], [-77.21895886229015, 34.66482792581185], [-77.21723226889377, 34.66273889109321], [-77.21677302804268, 34.66088451051831], [-77.21642471404422, 34.66010201089861], [-77.21589380281846, 34.65892969576174], [-77.21573736478597, 34.65879138570571], [-77.21443563656702, 34.657906685222244], [-77.21045273066655, 34.656614572094774], [-77.2101347417707, 34.65652576212924], [-77.20515414884336, 34.65549792507998], [-77.20409560766348, 34.655121261691065], [-77.20203171647525, 34.65466781624104], [-77.20361246849191, 34.65607406828482]], [[-77.33800966050835, 34.77537133614773], [-77.33735528880284, 34.774529301880094], [-77.33727504088375, 34.77438170201086], [-77.33675963424045, 34.773736385031995], [-77.33659838092626, 34.77353448676038], [-77.33678275022692, 34.77300789418837], [-77.33679836446152, 34.772756333699725], [-77.33674482117438, 34.772633619799784], [-77.33710929957041, 34.77202046900933], [-77.33710564308242, 34.771739469602586], [-77.3371139373462, 34.771561586235244], [-77.33712167595496, 34.77149358614226], [-77.33709218242447, 34.771366965881796], [-77.33706664486515, 34.77125744348303], [-77.33701906606437, 34.77114053900238], [-77.33692040375571, 34.77092204399537], [-77.33681488587109, 34.77080458137367], [-77.33663771683688, 34.770391368444294], [-77.33659380967158, 34.770384784623936], [-77.33660178091262, 34.770346421054775], [-77.33645871580754, 34.770167480076736], [-77.33642711036912, 34.77012667794986], [-77.33679578245162, 34.76984774189027], [-77.33682668322277, 34.76985509454891], [-77.33712117936615, 34.76997940444788], [-77.33736771298604, 34.76994143556945], [-77.33764183291044, 34.76993883699779], [-77.33766767998772, 34.76994012631294], [-77.33768798552629, 34.76993785888769], [-77.33797623849351, 34.76990926482664], [-77.33818480435879, 34.76978147435989], [-77.33834566313578, 34.76966905379468], [-77.33842079442255, 34.76960969457063], [-77.33840776735462, 34.76945544524012], [-77.33841368150341, 34.76938001192686], [-77.33840948513654, 34.76936755855186], [-77.33838827267932, 34.769323375923264], [-77.33830518305875, 34.769138170689246], [-77.33829968687314, 34.76907348273108], [-77.33777871091993, 34.76872297084787], [-77.33774048375619, 34.76865932725327], [-77.33735241312306, 34.76822503925413], [-77.3369071545929, 34.768011346695985], [-77.33672783883583, 34.76802070943899], [-77.33661309651147, 34.76790801001501], [-77.33604900593217, 34.76765035595453], [-77.33572071596961, 34.767363135611134], [-77.33486568288826, 34.76698337212325], [-77.33373249899833, 34.766353356206146], [-77.33369825504478, 34.766304173117845], [-77.33367365669689, 34.76616099148986], [-77.3328461751786, 34.765382577293785], [-77.3323036043069, 34.765209713532734], [-77.3312388250761, 34.766292395277375], [-77.33080252210647, 34.766754883867016], [-77.3300290939397, 34.76830163721684], [-77.33052635331681, 34.76874220340085], [-77.33243206155524, 34.77043053687976], [-77.33338494491466, 34.77127469109719], [-77.33433784776865, 34.77211883696569], [-77.33529077011809, 34.77296297448457], [-77.33624371196382, 34.77380710365313], [-77.33719667330668, 34.774651224470674]], [[-77.35017618507152, 34.78614575390189], [-77.35068505990876, 34.78635665886083], [-77.35067581386295, 34.7864494326429], [-77.35158374754388, 34.78700126862974], [-77.3516855814026, 34.78716431650797], [-77.35177243684541, 34.787273759041035], [-77.35193115976388, 34.78769958085425], [-77.35197006794553, 34.78773402873944], [-77.35220838690816, 34.787945025254864], [-77.35244670709024, 34.78815602124763], [-77.35264313547326, 34.78832992649228], [-77.3530319003476, 34.788204482354566], [-77.35323482926239, 34.78804789823735], [-77.35345051105173, 34.78776828512056], [-77.35358943647316, 34.78751186666669], [-77.35384155734359, 34.78708367961255], [-77.35390163242137, 34.786981652728855], [-77.35393856550343, 34.786923945435326], [-77.35402565391793, 34.78684698193568], [-77.35465287281458, 34.786555906038245], [-77.35474861877444, 34.786567370615344], [-77.35505403660672, 34.78646318844091], [-77.35510450308621, 34.78644682261965], [-77.35539230249609, 34.786385996652996], [-77.35544635189632, 34.78637457340727], [-77.35545640926375, 34.786372447785695], [-77.3554652260549, 34.78636730676608], [-77.35547255735517, 34.78635259922067], [-77.35549074615312, 34.786221788016334], [-77.35555490198635, 34.78587209107892], [-77.3555204634026, 34.78582739772274], [-77.35532342503586, 34.785522177711705], [-77.35492068709507, 34.78505825132834], [-77.35477102851578, 34.78485957436774], [-77.35463913207194, 34.78473576426116], [-77.3543622014941, 34.78448155335903], [-77.35426913215393, 34.78438966493543], [-77.35416719736457, 34.784297624460066], [-77.35377852542389, 34.784229395141054], [-77.35360136319395, 34.78418264026676], [-77.35345013954013, 34.78423089644652], [-77.35347886096577, 34.78396408003788], [-77.35365688772575, 34.78399156126562], [-77.3537862685816, 34.78397247439706], [-77.35431330719202, 34.78379479699882], [-77.35461850887904, 34.78369665855746], [-77.35497192297944, 34.783590458869845], [-77.35519095245111, 34.783475114611385], [-77.35543315050745, 34.783338901968314], [-77.35573338860908, 34.783105715316644], [-77.35574200098151, 34.783095214353565], [-77.35576601644702, 34.78306593233201], [-77.35600430413776, 34.78277538926089], [-77.3561786524231, 34.78248882206742], [-77.35598465528548, 34.78207517160993], [-77.35581333905941, 34.78174837021278], [-77.35574399943032, 34.78143170784807], [-77.35593278908246, 34.781160670943386], [-77.35597550857302, 34.780953491583446], [-77.35607085251527, 34.780748717808656], [-77.35631599044315, 34.780289746869364], [-77.35642727048732, 34.77999312219212], [-77.35657900939164, 34.77964474930593], [-77.3566334695387, 34.77950605145912], [-77.3566935334238, 34.77940957991515], [-77.35687454964948, 34.77907550689669], [-77.35689534049254, 34.77903846461938], [-77.35689803447514, 34.77899522968602], [-77.35701135801176, 34.77857232505008], [-77.35698692600928, 34.77851128021968], [-77.35691982566911, 34.778282013952094], [-77.35685450942965, 34.77790569690305], [-77.35724814078668, 34.777581289122786], [-77.3573349588331, 34.77751461270159], [-77.35736030602408, 34.77750481930029], [-77.35804926374632, 34.77720537291442], [-77.35808321415092, 34.77718961318738], [-77.35812036637282, 34.77717089572939], [-77.35845274761994, 34.77678735020287], [-77.35866779848142, 34.776648154451955], [-77.35876705159164, 34.776502857135284], [-77.35885824331153, 34.77637003219978], [-77.35890068018651, 34.77628025014259], [-77.35900870762404, 34.77595602716187], [-77.35895752649228, 34.775845545776704], [-77.35879388450002, 34.77535672796124], [-77.35874238554045, 34.77521101651115], [-77.3587647183693, 34.77495281812611], [-77.35870729236703, 34.774296496199824], [-77.35851089197408, 34.774011525745415], [-77.35878597265241, 34.77384611298051], [-77.35912558755474, 34.77371053638414], [-77.35947210532754, 34.773470808252874], [-77.359799174112, 34.773343946391634], [-77.3598793895339, 34.773324288888055], [-77.36013054447778, 34.77305020783374], [-77.36051875765565, 34.77264998936215], [-77.36064298094577, 34.77252080317057], [-77.36063985581073, 34.77238568242271], [-77.3609729365834, 34.771568431627344], [-77.3609488444553, 34.77150939108705], [-77.36097389948048, 34.77143447716311], [-77.36106961229085, 34.77143548737952], [-77.3615627120552, 34.77116500476053], [-77.36164082738085, 34.77102779356995], [-77.36158920059663, 34.77086564765524], [-77.36143371829729, 34.77068901876633], [-77.36129768848073, 34.770650239991426], [-77.36120313437975, 34.770580104740915], [-77.36112120290414, 34.77045125560615], [-77.36050140868181, 34.769979710615836], [-77.3603953010256, 34.7696379671611], [-77.36035968948738, 34.76959245472753], [-77.36032569442709, 34.769578959844175], [-77.35987151316118, 34.76934941654528], [-77.35954255424386, 34.7690930869356], [-77.35923600725235, 34.768912939479755], [-77.35906476079433, 34.768875472305545], [-77.35864864647331, 34.768784428614914], [-77.35810901457187, 34.76866761019494], [-77.35742738498635, 34.76855774255593], [-77.35697375239381, 34.768450750038554], [-77.35488294574971, 34.76893750871055], [-77.35449436610207, 34.76873597186025], [-77.3526785481643, 34.767938016240656], [-77.35165708586572, 34.76974386943916], [-77.34962049624599, 34.772983815759474], [-77.349007150387, 34.77400645765628], [-77.34908658961021, 34.77496894267614], [-77.34757222082175, 34.77810231197007], [-77.34661814921319, 34.77934444785901], [-77.34419187645452, 34.780846650737715], [-77.34577420290229, 34.782247935918555], [-77.34768053512978, 34.78393600209844], [-77.34958694538629, 34.785624034840986]], [[-77.37302898118118, 34.780829798426446], [-77.37369217831503, 34.77820516083543], [-77.37339474058413, 34.773779267061144], [-77.37341856009925, 34.77352721435996], [-77.37345771988105, 34.77296274207713], [-77.37345777161964, 34.769940669979704], [-77.37345780189888, 34.76917606213168], [-77.37229493117151, 34.768128328056605], [-77.37191502690149, 34.768365025120985], [-77.3715996241254, 34.76852591898513], [-77.37040625341841, 34.76889220160915], [-77.3700137873576, 34.769089445020526], [-77.36937320595659, 34.769352971404935], [-77.36876943948813, 34.76920998628495], [-77.36826102039166, 34.76876429987132], [-77.36790525580408, 34.76868245117586], [-77.36797381969357, 34.76837562358496], [-77.36818847428887, 34.76825982484178], [-77.36836860337533, 34.7675970035205], [-77.36841287480306, 34.76741084203815], [-77.36818594607956, 34.766813328507105], [-77.36816880984371, 34.76678765930531], [-77.36768955373893, 34.7663134414576], [-77.36747836022246, 34.7661826046045], [-77.36677819772815, 34.765720373905175], [-77.36672279943834, 34.76560465930865], [-77.36724368178136, 34.7647648427218], [-77.36728907522897, 34.76379394724797], [-77.36747534858898, 34.7637274887152], [-77.36859826796085, 34.763183667616886], [-77.36880699036996, 34.7632818745481], [-77.3692695512322, 34.763236942353466], [-77.36928073054797, 34.76275454881874], [-77.36993243308605, 34.762350500861054], [-77.36993147443886, 34.762126332312235], [-77.37132022264308, 34.76190529883698], [-77.37151349485042, 34.76198075222712], [-77.37353275855203, 34.762769033581016], [-77.37403219733335, 34.76284386906368], [-77.37432456871552, 34.76243929161748], [-77.37558730769277, 34.76097400849712], [-77.37735003612653, 34.75955280014056], [-77.37853666344925, 34.758232926412575], [-77.38319248794099, 34.7571029293741], [-77.3855978297088, 34.75780322540848], [-77.39023817018497, 34.759381048893935], [-77.39256515801414, 34.76017225545523], [-77.39450196711664, 34.76038604585279], [-77.39593088475354, 34.759143480154094], [-77.39823795956526, 34.75830542788306], [-77.40008213459572, 34.75753491910898], [-77.40202801662863, 34.758038994098804], [-77.40283693012047, 34.76014175900829], [-77.4038097411161, 34.76086711260704], [-77.4037773911122, 34.761887084119174], [-77.40600988406415, 34.766898426705374], [-77.40599298841354, 34.767098704335424], [-77.4099379832733, 34.76545448855], [-77.41005383640575, 34.76408118891606], [-77.40958303199432, 34.76203167749381], [-77.40974793779823, 34.761360659683326], [-77.40988440164841, 34.759549169576026], [-77.41010923371543, 34.75824154650098], [-77.40976313606824, 34.75540086335978], [-77.40970999477956, 34.7550153780436], [-77.40972796626613, 34.75482968862073], [-77.40970534096351, 34.75414781422994], [-77.40917079800269, 34.751491151011685], [-77.40932417203288, 34.75040764761227], [-77.40960368383186, 34.74915558554882], [-77.41161849255337, 34.74754536126317], [-77.41330675832229, 34.749222646567965], [-77.41289501960355, 34.74718321054502], [-77.41212761072929, 34.74578817839537], [-77.4102749082437, 34.74388926630267], [-77.41048232889193, 34.74186686286509], [-77.40896938758439, 34.73898227683108], [-77.40753279429083, 34.73978599795054], [-77.40578706940246, 34.74022505751899], [-77.40500830215899, 34.74164458968219], [-77.40324633103498, 34.74102844817601], [-77.40171847136946, 34.740314717701835], [-77.40089113658587, 34.74030429590516], [-77.40068503789894, 34.7405629520163], [-77.39820143672932, 34.740734064334895], [-77.39689487508886, 34.740352480387614], [-77.3948501661069, 34.73960677602243], [-77.39353176637707, 34.739145464680774], [-77.39198358768654, 34.73723090827123], [-77.39183426464265, 34.73615341391941], [-77.39015157187757, 34.73531276364784], [-77.38944325513, 34.735553260292065], [-77.38765505144045, 34.7372172853421], [-77.38749798164076, 34.73830080719018], [-77.3853106403396, 34.74001147275593], [-77.38458109373019, 34.741753561695184], [-77.38631850721589, 34.74632727044599], [-77.38679816646928, 34.746532534483954], [-77.39071525328796, 34.74820872382311], [-77.3908625978342, 34.74835017675013], [-77.39095914733299, 34.74836926757124], [-77.39319314942911, 34.749160075836706], [-77.39499450994052, 34.749218361300834], [-77.39577533617279, 34.749102192802354], [-77.39757247865738, 34.749183944767765], [-77.3980488110065, 34.75010910548359], [-77.39871192084165, 34.74930927888698], [-77.39927738647954, 34.74913108881621], [-77.40125576781807, 34.7478959707569], [-77.4029075234432, 34.750400548880705], [-77.40039579167203, 34.75086257536901], [-77.39984023723602, 34.75115369788633], [-77.39862103866527, 34.751138086737406], [-77.39775572380498, 34.75112001513014], [-77.39615774126605, 34.75112002725767], [-77.39514818965438, 34.75126509096553], [-77.39265650773939, 34.751232505920626], [-77.39271440511533, 34.75081098458155], [-77.39255762840635, 34.751220987961204], [-77.39241319573811, 34.75120349186791], [-77.39012102375239, 34.75090716803852], [-77.38795827545776, 34.749645155800145], [-77.38805590421663, 34.749578936190915], [-77.38790094117158, 34.749594236303274], [-77.38597391645936, 34.747515237249154], [-77.38541529438169, 34.747108673343135], [-77.38450790146368, 34.74620129279445], [-77.37957486581078, 34.74240112854336], [-77.37726775190097, 34.74215416567236], [-77.37524732375873, 34.74087561906292], [-77.37509608256195, 34.74079764406035], [-77.37494014195534, 34.740761598367556], [-77.37265709372602, 34.74036234631845], [-77.36778112930601, 34.74017324927599], [-77.36758430311698, 34.74016307495936], [-77.36746429470341, 34.7401885622237], [-77.36734182450493, 34.740297027928996], [-77.3635426638963, 34.74182050576861], [-77.36229866497787, 34.741865643514245], [-77.36161863848744, 34.74168025954586], [-77.36052503557742, 34.74170044072558], [-77.35993326265199, 34.741761232470715], [-77.35946007317597, 34.741763903127804], [-77.35918012177598, 34.74178555555146], [-77.35871795302168, 34.74182129953249], [-77.3585500270588, 34.74199180542221], [-77.3581944302817, 34.742188853056895], [-77.35810130831968, 34.742414921108185], [-77.35817539525405, 34.74253062379492], [-77.3581187035112, 34.742795760886075], [-77.3579073331421, 34.743210958874556], [-77.35777530383007, 34.74356031936638], [-77.35762241517648, 34.744234998418335], [-77.35737539437721, 34.744589988648315], [-77.35705926520639, 34.74501259785835], [-77.35690234530088, 34.74514231311022], [-77.356712102067, 34.74534330303289], [-77.35660685226875, 34.74542656884945], [-77.35663862710052, 34.74551114539046], [-77.35659080334669, 34.74567246360566], [-77.35657774904746, 34.74586251073012], [-77.35669430595975, 34.74625675208182], [-77.35678390778193, 34.7464184076353], [-77.3568373724965, 34.74654092544702], [-77.35689377025508, 34.74660564247419], [-77.35704395373865, 34.746776242390574], [-77.35722105254325, 34.74697559347649], [-77.35742557871109, 34.74727113863166], [-77.35761632857223, 34.74748121973642], [-77.35781278373001, 34.74776174096974], [-77.35818191469298, 34.747791937257965], [-77.35862263782872, 34.747927251477634], [-77.35873177746814, 34.74796105836338], [-77.3590606885116, 34.74806174303757], [-77.35931238563258, 34.748024312336064], [-77.35958327070715, 34.74797676881132], [-77.35950307458288, 34.74819696638366], [-77.36008913732971, 34.748376105212756], [-77.36035603143907, 34.74855568103092], [-77.36101892880505, 34.748449337783526], [-77.36150978597225, 34.74889620811774], [-77.36163870838038, 34.74954951717031], [-77.36240636655384, 34.74974578926691], [-77.36376179728688, 34.74949325488292], [-77.36457671452368, 34.75042460833328], [-77.36457858137264, 34.75044192630178], [-77.36456192938975, 34.75057366263263], [-77.3644508701579, 34.752270311976915], [-77.36477456399088, 34.752716277919454], [-77.3644525676343, 34.75316393005532], [-77.36471853877802, 34.75493356809913], [-77.36381887356647, 34.75512231631484], [-77.36370364492514, 34.75569677879136], [-77.36347992136147, 34.756065360278235], [-77.36294976418955, 34.756125785674456], [-77.36259992487557, 34.75590641215694], [-77.36246424080042, 34.75558857220366], [-77.36217976509774, 34.75544112035157], [-77.36198005936065, 34.755339435179636], [-77.36187887428623, 34.75527832776369], [-77.36173475401594, 34.75520135034172], [-77.36158447537133, 34.75511053985278], [-77.36103136415372, 34.75481054032729], [-77.36101197864465, 34.75476242792672], [-77.36098223558857, 34.754649962091975], [-77.36071923620433, 34.75419913319601], [-77.36063042196498, 34.75389081697011], [-77.36062889959184, 34.753874387419906], [-77.36060715229777, 34.75387885642206], [-77.36026879584465, 34.75375714031136], [-77.36008836819045, 34.75360258432415], [-77.36004037690944, 34.75353860625669], [-77.35996287084734, 34.75349508177631], [-77.35982868347894, 34.75346546012976], [-77.35966881969388, 34.75343017005446], [-77.35954729393873, 34.75340307302682], [-77.35947639249109, 34.753381066056654], [-77.35935021721139, 34.75333549951294], [-77.35930200287547, 34.75331808757398], [-77.3591909514015, 34.753282669728314], [-77.35918789362984, 34.753405856888385], [-77.35906480712617, 34.753618374564056], [-77.35915202619395, 34.753732791795], [-77.35918730009365, 34.75380054118941], [-77.35922785594731, 34.75383968313456], [-77.35937792845857, 34.753986237464616], [-77.35946696231579, 34.75397966214892], [-77.35956098480928, 34.75403764160312], [-77.35981235095488, 34.7541082278975], [-77.35986761956204, 34.75436268790304], [-77.36005321284387, 34.754457449586525], [-77.36018204211783, 34.75461233318107], [-77.36012376548233, 34.75474697870561], [-77.36011191957374, 34.75493677535709], [-77.36010382743846, 34.75536750664069], [-77.36008635334912, 34.755427671178346], [-77.36005858088956, 34.755495757926], [-77.36011634487602, 34.755568869143566], [-77.36028888662926, 34.75588725070857], [-77.36047138007359, 34.755966709522234], [-77.36057626210699, 34.75604788085761], [-77.36100681525396, 34.75634333626463], [-77.36107151167083, 34.75640524904031], [-77.36152259124216, 34.75662393147876], [-77.36159661772206, 34.75665981942422], [-77.36166341170515, 34.75662676941891], [-77.3616330387282, 34.75667747602154], [-77.36212966540714, 34.75688704993807], [-77.36240441004352, 34.756845279983224], [-77.362722215727, 34.756909382398746], [-77.363216191053, 34.75724695930445], [-77.36326051086353, 34.75726468987337], [-77.36329404105888, 34.75725883104806], [-77.36389520795312, 34.757288019367614], [-77.36440300570618, 34.75764533095604], [-77.36443182200874, 34.757649135824046], [-77.3644506123964, 34.757653359735926], [-77.36464059115991, 34.757702404604174], [-77.3650548669938, 34.75771260035968], [-77.3651220700157, 34.75779219415274], [-77.3655074389405, 34.75788469124481], [-77.3656597644566, 34.75783856525858], [-77.36587172082726, 34.75792631786063], [-77.36627458111653, 34.757930368980986], [-77.3674017085988, 34.7581095756595], [-77.36744223416405, 34.758054728057104], [-77.36752240240895, 34.75805133627922], [-77.36760523542965, 34.75809702922423], [-77.37009850488214, 34.75801609366199], [-77.37071785529929, 34.759270108352105], [-77.36960723174997, 34.75970834980516], [-77.36883992892736, 34.760340966504955], [-77.36810142852995, 34.760475901561705], [-77.36803448879337, 34.76052093152193], [-77.36797424333032, 34.76054680526297], [-77.36737250046052, 34.76077706022203], [-77.36729414286349, 34.76080736697984], [-77.3666128673139, 34.76118394604495], [-77.36660988857642, 34.76118555926008], [-77.36660679832318, 34.76118666609218], [-77.36660205880514, 34.76119231200269], [-77.3660464157235, 34.76176132505027], [-77.36568898155707, 34.761983881200166], [-77.36539821876792, 34.762586062142375], [-77.36548353565254, 34.76303041641248], [-77.365699552095, 34.76335312322017], [-77.36589450638455, 34.76365795658172], [-77.36608785845283, 34.76408397212751], [-77.36614568362401, 34.76438058782843], [-77.36613609891694, 34.76451014869652], [-77.36601406072059, 34.76470334706973], [-77.36582065611638, 34.764826055936076], [-77.36547665723455, 34.76509695564189], [-77.36537610108948, 34.76515731794535], [-77.36535228570551, 34.7652213591243], [-77.36526889503116, 34.765317463939205], [-77.36497945233515, 34.765650097082265], [-77.36495371198494, 34.76596390773586], [-77.36475169484719, 34.76612960826299], [-77.36467041700806, 34.766249273785505], [-77.36450040450633, 34.76632127412532], [-77.36453544388183, 34.766515340423], [-77.36485729162305, 34.76655494466484], [-77.36505137207403, 34.766561513073206], [-77.36529685408252, 34.76652518163005], [-77.36571419434664, 34.7664664511997], [-77.36571854391428, 34.76646618709994], [-77.36572060885754, 34.76646613302343], [-77.36621765038399, 34.76653381529423], [-77.3663333783776, 34.76656520706514], [-77.366460131032, 34.766606545365], [-77.36688822576728, 34.76686376283713], [-77.36692913955282, 34.76689162605132], [-77.36730480792951, 34.767147391739414], [-77.36742389635023, 34.767228373601355], [-77.36755316499007, 34.76738960598266], [-77.36734994549049, 34.76748305873824], [-77.36725785483277, 34.767486459745754], [-77.36712954881136, 34.76752097177243], [-77.36685235211374, 34.767571941997765], [-77.36668289918468, 34.767570884715845], [-77.36604418884541, 34.76770036863927], [-77.36601789630305, 34.767704554572724], [-77.36599330046036, 34.76773636746382], [-77.36564245739541, 34.768118998137595], [-77.36583072120459, 34.76829624677268], [-77.36602787500891, 34.7685715561282], [-77.3661983493496, 34.76887274871709], [-77.36625295895749, 34.7690515160635], [-77.36656887834297, 34.76923884133549], [-77.36677736321778, 34.769454967963625], [-77.3670935075948, 34.769463799820414], [-77.36764640014391, 34.76968275411154], [-77.36793284673992, 34.769894536082724], [-77.36828090871852, 34.77031110999027], [-77.36878141647577, 34.77072695556671], [-77.36893283460827, 34.7708696807719], [-77.36901524596837, 34.77089790244864], [-77.36906451869297, 34.77099411725121], [-77.36972869431233, 34.77149339089877], [-77.36997557804148, 34.77169763372629], [-77.37060863812998, 34.77221781959274], [-77.37114226925215, 34.772098720689215], [-77.37160253491888, 34.77300054472666], [-77.37113467914958, 34.77447815206665], [-77.37095203937227, 34.77577397341051], [-77.36981826388335, 34.776658885284775], [-77.36968281628809, 34.776693126799344], [-77.36964927623954, 34.77679077952053], [-77.36902418075798, 34.77861076394013], [-77.3689634250661, 34.77878764086259], [-77.36879211462333, 34.779023605162934], [-77.36800645057693, 34.78068962700168], [-77.36771722939639, 34.783041163945086], [-77.37091859123268, 34.781708477315135]], [[-77.47154034353706, 34.739755614140186], [-77.47035782088606, 34.739556656423716], [-77.46951450988566, 34.73933963040967], [-77.46730053387739, 34.73795414695256], [-77.46593941849795, 34.73709753710473], [-77.46454762385025, 34.73553181303677], [-77.46400418422078, 34.73492044332289], [-77.46268122807402, 34.73327213587556], [-77.46248015142808, 34.73282332009455], [-77.46236016886141, 34.73173612400711], [-77.4618942879102, 34.72949626077558], [-77.46178590218253, 34.7284877023732], [-77.46182266701493, 34.72678363701194], [-77.46279471101903, 34.724368220910314], [-77.46309255830504, 34.722878517969356], [-77.46335142249393, 34.72232677772744], [-77.46519329309683, 34.721933643260705], [-77.46626971343903, 34.722087392566515], [-77.46985674645596, 34.722599873351605], [-77.4701012869791, 34.722695377114704], [-77.47029371624518, 34.72267875178677], [-77.47100702531431, 34.72276419164126], [-77.47429572548569, 34.72323395854121], [-77.47503580276138, 34.72336534741328], [-77.47595789185581, 34.72362359296608], [-77.47740983390085, 34.72402313350351], [-77.47899034215946, 34.724919336840074], [-77.4796512568804, 34.725140116682724], [-77.48047692452496, 34.725307936001784], [-77.48305167515298, 34.72696878150011], [-77.4836486266496, 34.72755500027458], [-77.48375616780893, 34.72868335665512], [-77.4844286486692, 34.727817737035615], [-77.48475193949325, 34.7275621914842], [-77.48946576840703, 34.72666954115624], [-77.49104334859099, 34.7266594124847], [-77.49206846902311, 34.72653555164002], [-77.49286752220945, 34.725923004329736], [-77.49318883663746, 34.7241847768833], [-77.49328666449833, 34.723528362888416], [-77.49361800111897, 34.7217137187388], [-77.49432247762468, 34.72005941253338], [-77.49681216113824, 34.718982763573706], [-77.50018732904564, 34.71767863162961], [-77.502634313422, 34.71657491113449], [-77.50306509100247, 34.71639928359788], [-77.50329512167332, 34.71614809146488], [-77.50476664571872, 34.715158389720045], [-77.505632963863, 34.714614453304584], [-77.50585001284355, 34.71470554267443], [-77.50816503917878, 34.71517586070639], [-77.50905655989791, 34.71592250151216], [-77.5098704128599, 34.71659724162949], [-77.51017732142624, 34.717087260888064], [-77.5116999281268, 34.71907989090923], [-77.51178433930836, 34.71936952135924], [-77.51197664680274, 34.719737388412696], [-77.51302813186287, 34.72242193491638], [-77.5156632697304, 34.721320276684885], [-77.51527396143919, 34.72032633368782], [-77.51391075738962, 34.71848052660187], [-77.5130880378102, 34.717328661298914], [-77.5129244481885, 34.71710667068655], [-77.51277150523785, 34.716981096813484], [-77.51167404632201, 34.715843206924795], [-77.50931167972968, 34.71377608171875], [-77.50891135420837, 34.71342579754229], [-77.50871846815363, 34.71325701137488], [-77.50833285785453, 34.713045074431776], [-77.5047710423454, 34.71158425165249], [-77.50418293883, 34.711206684610666], [-77.5034781745181, 34.71109943015865], [-77.501819905026, 34.711162427095864], [-77.49876043306715, 34.712231107150856], [-77.49684826704504, 34.71223112843899], [-77.49416741683903, 34.71296320710554], [-77.49331394509105, 34.713337917865395], [-77.4905813679616, 34.71395524020342], [-77.48833070434344, 34.71845491933948], [-77.48769056450801, 34.719645214586194], [-77.4871079298756, 34.720238191453824], [-77.48618560263387, 34.72026955377959], [-77.48159567247441, 34.72198923264971], [-77.48091707250212, 34.72208734685235], [-77.48055420946464, 34.722013593898275], [-77.48014204655676, 34.72187591008059], [-77.47671677980297, 34.72120865206854], [-77.47573796895809, 34.72093452069745], [-77.47440916466664, 34.72069861276892], [-77.47330641729664, 34.72047619909775], [-77.47253909298244, 34.720366594890265], [-77.4708440666532, 34.720124459691654], [-77.46815227614044, 34.719739894962615], [-77.46591942388787, 34.719420882512345], [-77.46441076869402, 34.719052295157624], [-77.46100570999369, 34.71867955584359], [-77.4605037283494, 34.718651484559906], [-77.46020667083485, 34.7189925687969], [-77.46005125953901, 34.719550962871594], [-77.45941162588625, 34.72284709126525], [-77.45926004888535, 34.72313377724699], [-77.45919713184442, 34.72347913902539], [-77.4594410340672, 34.724092702046335], [-77.4593644571647, 34.72764207351032], [-77.45966378914787, 34.73042743827372], [-77.46006548288625, 34.73235870211408], [-77.4614574496156, 34.73485904636604], [-77.46275654991737, 34.73627955792292], [-77.46516930264475, 34.73861258680779], [-77.46538020674456, 34.73903237555048], [-77.46567318853303, 34.73904782164935], [-77.46839465212695, 34.74106905951217], [-77.47013017636921, 34.740344453844955]], [[-77.52419267323305, 34.717753823120376], [-77.52339695123831, 34.7156925980422], [-77.52283002725552, 34.714751064034246], [-77.52248886998241, 34.71390109682453], [-77.52265753988331, 34.71125056828241], [-77.52070430918944, 34.70724803443764], [-77.51977791144142, 34.705309713740405], [-77.51854098149815, 34.703583144176406], [-77.51741693974058, 34.70223484825681], [-77.51615531212191, 34.70060324720765], [-77.5158549576605, 34.70029661232955], [-77.51340061770591, 34.69982554478818], [-77.51139998795522, 34.698613957856104], [-77.51139724501186, 34.69861304355641], [-77.51130565188798, 34.69858251038737], [-77.50907947062102, 34.697840398626745], [-77.50903940775761, 34.697838281552684], [-77.50683068777275, 34.69731854135069], [-77.50491580472891, 34.698829822874934], [-77.50426153511552, 34.700430051994914], [-77.504181446187, 34.70080906861225], [-77.50380767825945, 34.70127010378213], [-77.50281925525226, 34.70256920209525], [-77.5022306862156, 34.70309040739498], [-77.50128004715347, 34.70349782208295], [-77.49912714703586, 34.70400072267902], [-77.49716584439763, 34.704046473687946], [-77.49599524180067, 34.704046490434486], [-77.49549377026219, 34.70404648928667], [-77.49400444496209, 34.703964041832876], [-77.49174578659111, 34.70390512207086], [-77.49094859616136, 34.70376943066975], [-77.48973658436354, 34.7035792844577], [-77.48633530912446, 34.70199101783584], [-77.48216749888662, 34.70022292351422], [-77.4817536141319, 34.70010365907672], [-77.48126621616305, 34.69997478411085], [-77.47716374725428, 34.69824511094974], [-77.47704708003026, 34.698165713309976], [-77.47307392664291, 34.697330116063355], [-77.47236302651291, 34.69711707067085], [-77.47118055788523, 34.69704472357432], [-77.46908262411733, 34.69679021418101], [-77.46741139378975, 34.69651163433258], [-77.46657915751912, 34.69539508791307], [-77.46488366562268, 34.69379544763987], [-77.46383668976588, 34.692968933111025], [-77.46344111250488, 34.69250987235529], [-77.46087296635812, 34.68792234169738], [-77.46055313795031, 34.68719718435271], [-77.461316285262, 34.684105136430134], [-77.46142982042181, 34.68364506554827], [-77.46140141448346, 34.68333419375325], [-77.46129946309091, 34.683014383509544], [-77.46050962485391, 34.6819469342925], [-77.45999216918699, 34.68095379105866], [-77.4599325623361, 34.680798772526515], [-77.45959696964684, 34.6805271740471], [-77.45869055134543, 34.67888630268364], [-77.45836240482056, 34.678292225949505], [-77.45790110696078, 34.67745707439816], [-77.45749172168254, 34.67669327956845], [-77.45758766972502, 34.675558935827404], [-77.456366053532, 34.67451067279105], [-77.45631778857549, 34.67446990392613], [-77.45629441944651, 34.67445053543488], [-77.45622669356526, 34.67439440255919], [-77.45566674677748, 34.67315237933042], [-77.45364255239332, 34.67225258283571], [-77.45130080396652, 34.67439684517693], [-77.45076050624412, 34.674961147299165], [-77.45044216105957, 34.67593266764547], [-77.45034214570062, 34.67614712852661], [-77.45005165379894, 34.67719086850313], [-77.44953002386899, 34.67785561554971], [-77.44927754839475, 34.67815902782106], [-77.44900746041915, 34.67837690535403], [-77.44807528426858, 34.67897749974355], [-77.4473169249155, 34.67917010988292], [-77.44657849967494, 34.6799096357546], [-77.44406052165559, 34.67981002838965], [-77.44404726158159, 34.67980719045069], [-77.44404524556315, 34.67980703594528], [-77.44403905953571, 34.67980774358556], [-77.4423576354674, 34.680036162085486], [-77.44208663309382, 34.6802379607826], [-77.44171679675199, 34.68077732741692], [-77.44130956665808, 34.68108434067168], [-77.4412130125543, 34.681155967139], [-77.4410477564405, 34.68130973141683], [-77.44098423783308, 34.681083173035795], [-77.44002325874722, 34.68070664121144], [-77.43994945419657, 34.68067626466294], [-77.43981225398315, 34.680679653738956], [-77.43930538811232, 34.68068774052123], [-77.43910024647049, 34.68069330506155], [-77.4389808574992, 34.68070211325963], [-77.43887745423118, 34.68070298313203], [-77.43878952394076, 34.68066022000288], [-77.43870569595148, 34.68054578279857], [-77.43855917910471, 34.68040216793534], [-77.43850888083304, 34.68033097919023], [-77.43829688126254, 34.68003092617986], [-77.43823755021629, 34.67994899378783], [-77.4379387011928, 34.67967621038443], [-77.43771397905152, 34.679543860967925], [-77.4374746136318, 34.67953140212631], [-77.43727350519626, 34.67967306886429], [-77.43702475601259, 34.67971148093934], [-77.43671018892128, 34.679777276052654], [-77.43666303730414, 34.67976235478193], [-77.43639725236991, 34.679665701073084], [-77.43612127836971, 34.67956231339814], [-77.43609780773639, 34.67955191495953], [-77.43581402408167, 34.67946684811426], [-77.43555864095342, 34.67939029379106], [-77.43551921344714, 34.67937847491284], [-77.43547886092759, 34.67936389754891], [-77.4353735502379, 34.6793282660541], [-77.43526167795201, 34.6792490599974], [-77.43525363378457, 34.679234719986894], [-77.43532788891181, 34.6790130618099], [-77.43538282163544, 34.67901189820553], [-77.43562814184322, 34.6790018842299], [-77.43578570638269, 34.6790137293935], [-77.43594243645327, 34.679022890612494], [-77.43624424802393, 34.6790443862158], [-77.43625634063741, 34.67904524747711], [-77.43626267163629, 34.67904569836851], [-77.4362671798978, 34.67904163729782], [-77.43627870548168, 34.67903000174701], [-77.43647729533691, 34.678835588985386], [-77.43655994113558, 34.67878390634778], [-77.43674298155764, 34.67847038131656], [-77.43679841094024, 34.678425993901236], [-77.43679719628986, 34.67838840816346], [-77.43688629381299, 34.67832995974395], [-77.43686086304626, 34.67806281018116], [-77.43692580936938, 34.677420666979685], [-77.4364484772972, 34.67727332560291], [-77.43628603314676, 34.67709154959756], [-77.4362188185141, 34.6768230174145], [-77.43608422800317, 34.676317436664775], [-77.43597836640679, 34.67603060520326], [-77.43583305729541, 34.675815030481616], [-77.43521382443934, 34.674896364772756], [-77.43464165596542, 34.675398363816214], [-77.43457127467632, 34.675725219431484], [-77.43450697911325, 34.67591032053848], [-77.43448283391771, 34.676135958689606], [-77.43444931181108, 34.676449209060834], [-77.43428785791275, 34.676736317525766], [-77.4341460546415, 34.6769022075016], [-77.43406713120599, 34.676951909020964], [-77.43389498465092, 34.67724074321904], [-77.43383395324767, 34.677318482249326], [-77.43381699973311, 34.67734618424387], [-77.43370671504549, 34.67742530308892], [-77.4335256687937, 34.677562265613005], [-77.43342201286504, 34.67754414770358], [-77.43342088314871, 34.67739095005224], [-77.43336934781914, 34.677189624200906], [-77.43337436263194, 34.67711764747672], [-77.43331498218288, 34.6770308039415], [-77.43317683758283, 34.67656323538341], [-77.4331257347815, 34.676328652070794], [-77.43310903195535, 34.67613328683422], [-77.4331009037769, 34.675977617854386], [-77.43306907442641, 34.67566593216954], [-77.43305203547483, 34.67546663611474], [-77.43303470866883, 34.675263959609886], [-77.43322838031261, 34.674904080367924], [-77.43292291023883, 34.67395627846766], [-77.4327529808445, 34.67380591289318], [-77.4306854522275, 34.67291846045363], [-77.43065382698853, 34.672940856818215], [-77.4294088893537, 34.673822503237815], [-77.42800710033444, 34.67578689993975], [-77.42798745452485, 34.67642534448271], [-77.4283167941087, 34.67744316925659], [-77.42923403996922, 34.67784834974538], [-77.42930174178304, 34.67792483232563], [-77.4293499759493, 34.678020082317566], [-77.42983259635801, 34.678596025394846], [-77.42996915784894, 34.678795721987434], [-77.43008407964021, 34.678937442972966], [-77.43018116485989, 34.679004060421036], [-77.43065628008331, 34.67914499420645], [-77.43076099010072, 34.67921465132767], [-77.4308589843273, 34.6791849507113], [-77.43108205910616, 34.67921225643374], [-77.43110358001009, 34.67921093969689], [-77.43129837926813, 34.67932336861995], [-77.43136437274865, 34.67934382142594], [-77.43143560325696, 34.679448385570666], [-77.43131504097238, 34.67951434063145], [-77.43128062049699, 34.67950039423839], [-77.43125333116181, 34.67952440245434], [-77.43108353679436, 34.679552087507666], [-77.43084906088865, 34.67966254130641], [-77.43061930023238, 34.68005320068809], [-77.43054179447857, 34.68011414060374], [-77.43052595589289, 34.68013614130224], [-77.43048235139884, 34.680177755395334], [-77.43028766128081, 34.68019162348887], [-77.42986749797748, 34.680088210778315], [-77.42963431162121, 34.67979674182365], [-77.42947012405354, 34.679640084226975], [-77.42940774420585, 34.67946260189367], [-77.42928739680272, 34.67911633388355], [-77.42939048662886, 34.678780556835], [-77.42915055402325, 34.6781369018094], [-77.42826603586293, 34.67793679562336], [-77.42799513755855, 34.67770115541321], [-77.42752574955854, 34.67777333125247], [-77.42684183096817, 34.67725813572085], [-77.42541303926195, 34.67776111195589], [-77.42485495388408, 34.67834229985617], [-77.4240001616661, 34.67822113031792], [-77.42322744128523, 34.67778171724281], [-77.42184185519235, 34.67682268012729], [-77.41960735682389, 34.67572150155804], [-77.4193860969164, 34.67341619639322], [-77.42116761610036, 34.6723120053643], [-77.42136403815161, 34.66963549910274], [-77.42140621354963, 34.668143689835034], [-77.42058416153674, 34.66692459455167], [-77.41849663524285, 34.666018392491516], [-77.41814314866257, 34.66557005576044], [-77.4169475463701, 34.66405363074214], [-77.41617253340507, 34.66372633505813], [-77.41291078216823, 34.66182670306392], [-77.41280774612346, 34.66179724777431], [-77.41278797064432, 34.66173621167965], [-77.41263536554862, 34.66162505163175], [-77.41011858923576, 34.659542402799424], [-77.40912859952869, 34.65897850675353], [-77.40789806075786, 34.65888458119216], [-77.40751533302362, 34.658806631894166], [-77.40715151222032, 34.65773711420701], [-77.40702079064738, 34.65747055132365], [-77.40715918213093, 34.65618255738836], [-77.40773146169431, 34.6549523825836], [-77.40870195749022, 34.65403821221629], [-77.41396122363689, 34.65028322700915], [-77.41599822736747, 34.64793434948154], [-77.41627566900297, 34.64597422928658], [-77.41832909034034, 34.64379437919394], [-77.41902910868816, 34.64223632946918], [-77.4197412319524, 34.64065110290568], [-77.42020372910784, 34.639494763645104], [-77.42126451227324, 34.63864580536702], [-77.42302473476289, 34.63727510463043], [-77.42450644368849, 34.63772230759808], [-77.42628863602897, 34.63801981281934], [-77.4277742363343, 34.63925784873136], [-77.42830578695046, 34.639593779625685], [-77.4300720794503, 34.64071006632247], [-77.43085165242229, 34.64182230507874], [-77.431626218037, 34.642467779929746], [-77.43217244718147, 34.64292294263654], [-77.43322443529149, 34.643799558966776], [-77.43387994630105, 34.64337072469524], [-77.43517568528455, 34.64225668880064], [-77.43648317751729, 34.64033441809108], [-77.43655891439992, 34.640262938959815], [-77.43663464939607, 34.64017443656126], [-77.43669684875925, 34.639928700651836], [-77.43792747623556, 34.63685201999451], [-77.43830142012098, 34.63591717673215], [-77.43900175003074, 34.63416652806331], [-77.43917088586403, 34.63374371733406], [-77.4392875709552, 34.63351041921352], [-77.43933858787877, 34.63304346755867], [-77.43996184177121, 34.631542774867725], [-77.44124112074851, 34.630718232845666], [-77.44234439131081, 34.6310098852651], [-77.44318691017295, 34.63199709457721], [-77.44537448938031, 34.63177529431393], [-77.44644952799354, 34.63166644776441], [-77.4467392041773, 34.631696518408845], [-77.4496568068904, 34.631403268796554], [-77.45076172758789, 34.6310235097703], [-77.45162098645258, 34.63066637388651], [-77.45347861774624, 34.629464535346166], [-77.45673803654348, 34.627501110218816], [-77.45787239020498, 34.626267466556925], [-77.45869972941307, 34.62502142263263], [-77.45913244582555, 34.62338358597941], [-77.4603613237002, 34.621593259985744], [-77.46153963899934, 34.619270579157366], [-77.46395001100636, 34.61774410384671], [-77.46406718207226, 34.61767714827087], [-77.46439981963061, 34.617487066178896], [-77.46435619913602, 34.617087952433174], [-77.46453054704958, 34.61536177680306], [-77.4638431005622, 34.61469170675177], [-77.46356554111844, 34.614396753914626], [-77.46274955890507, 34.61336269120867], [-77.46206518282605, 34.6125736187055], [-77.46204682615891, 34.612250013939956], [-77.46203326906317, 34.612010903975836], [-77.46194293145395, 34.610418378245186], [-77.46188988427078, 34.609483298433], [-77.46188136470984, 34.60934305592923], [-77.46198990862415, 34.609007615830855], [-77.4620274254151, 34.606347206147845], [-77.46279788852407, 34.60484598393422], [-77.46417644977416, 34.6032193556818], [-77.46541599943012, 34.60242614802909], [-77.46700061049253, 34.60136122289591], [-77.46749282711436, 34.59997414406811], [-77.46791875162478, 34.598757732982506], [-77.46824454984333, 34.59684152843744], [-77.46787455064543, 34.59581609868408], [-77.4677645414931, 34.59462759003782], [-77.46814910599261, 34.59278355156183], [-77.46729792148196, 34.59155558343298], [-77.46754975700017, 34.590000348352504], [-77.46832815381671, 34.58696120309813], [-77.46900973419085, 34.58662947528667], [-77.47184493919096, 34.58516286978619], [-77.47244765596326, 34.58523936471944], [-77.47412692796493, 34.585168717254795], [-77.47553108187662, 34.585124837735194], [-77.47646473934816, 34.584852691307795], [-77.47675847156097, 34.58441742151519], [-77.47785093460664, 34.582860243179624], [-77.47831395160759, 34.58171923421018], [-77.47863011556801, 34.58092872873397], [-77.47865359984024, 34.580663690772354], [-77.47888704187753, 34.58017395787353], [-77.47897330262542, 34.577876424683346], [-77.47847817975259, 34.575647736712355], [-77.47837327865768, 34.575093457217136], [-77.47829033034293, 34.574430531040335], [-77.47818639807932, 34.57366967965784], [-77.47811687039871, 34.57304406176097], [-77.47828451030445, 34.572164500075395], [-77.47816020496248, 34.57058189378201], [-77.47980134426732, 34.56877704255222], [-77.479801425025, 34.56867875594966], [-77.47991087848918, 34.56856790385499], [-77.48007468241764, 34.56858767090395], [-77.48342770469887, 34.56746996302024], [-77.48374023528315, 34.567201312683515], [-77.48404881827784, 34.56608676322463], [-77.48382242034586, 34.565130782941665], [-77.48377777237775, 34.56468700243915], [-77.48277593409975, 34.56228745965279], [-77.48282021893137, 34.56200617280274], [-77.48405048403579, 34.560256073875436], [-77.4840746720965, 34.56003206110216], [-77.48413079229513, 34.55867747899224], [-77.48332170209324, 34.557523874133324], [-77.48322433965576, 34.557414079937345], [-77.48301666944259, 34.55741716205], [-77.481997399513, 34.5589161651957], [-77.48170038778674, 34.559371706587136], [-77.48201532611293, 34.55954411726935], [-77.48166382523625, 34.55962367595635], [-77.48166378556392, 34.561898397537924], [-77.48050872413697, 34.56266637218636], [-77.47859641336785, 34.5637703330524], [-77.47817106208706, 34.563600189358965], [-77.47761560081207, 34.56349263832994], [-77.47585985687381, 34.562770472609074], [-77.47417873128487, 34.562988659535044], [-77.47335692928303, 34.563946744550066], [-77.47328734486162, 34.56472860411387], [-77.47259162249695, 34.5661563546822], [-77.47254356620743, 34.56682949432197], [-77.472452212678, 34.567921321841226], [-77.47238122275174, 34.568560108804164], [-77.47212716381146, 34.570845838252374], [-77.47201993800357, 34.570998991256296], [-77.47022385373728, 34.572760018091934], [-77.46863410796857, 34.573441357409], [-77.46704140142683, 34.5741239149972], [-77.46678344826613, 34.574359182077444], [-77.46608253517098, 34.57502711420451], [-77.46617202505786, 34.575622633659435], [-77.46625252655738, 34.57632530984668], [-77.46566961783991, 34.57796769629234], [-77.46558269034068, 34.57874504261945], [-77.46533513171404, 34.58095917637771], [-77.46532356066638, 34.58177318242938], [-77.46520672193328, 34.58312405628972], [-77.46522018978524, 34.58327979574408], [-77.46514758030251, 34.58337102171866], [-77.46506974658294, 34.58345319810395], [-77.46410208743066, 34.584475515246154], [-77.46343245873373, 34.585151019839046], [-77.4633859816259, 34.58523210840549], [-77.46332334294574, 34.58529824058515], [-77.46017763166226, 34.588619436831785], [-77.45977606764238, 34.588923941359745], [-77.45928145746075, 34.58940578235787], [-77.45812122638661, 34.590822404264756], [-77.45728013283104, 34.59145388624009], [-77.45701417552459, 34.59167379043149], [-77.45681019679527, 34.59167751485594], [-77.45666499851669, 34.591744234687425], [-77.45533424642854, 34.59232469999559], [-77.4549677384304, 34.59262705903332], [-77.45406370452747, 34.59384856812308], [-77.45447500045766, 34.594422802382205], [-77.45456624894541, 34.59444373196794], [-77.45454890539624, 34.594527434654566], [-77.45446839116096, 34.59464281184031], [-77.45437339717417, 34.5945470674863], [-77.45341920448482, 34.59465034264565], [-77.45180575158732, 34.59596972398767], [-77.4518390032408, 34.59605669149946], [-77.4517155720434, 34.59610734151091], [-77.45149441066506, 34.596239268162876], [-77.44966012623736, 34.59627930635248], [-77.44893720044574, 34.59570910682641], [-77.44838649211894, 34.59546797904328], [-77.44727721787791, 34.59525491961794], [-77.44641582100982, 34.59513511416986], [-77.44512128920793, 34.59492221920041], [-77.44509721277491, 34.59491894815031], [-77.44505863702469, 34.59483072096904], [-77.4449964682373, 34.59490069067047], [-77.44446924945554, 34.59477253332472], [-77.44440110651388, 34.59475835464539], [-77.4444373022667, 34.59470496669595], [-77.44477991944058, 34.59428107004128], [-77.44488246496643, 34.594186983148134], [-77.44523938272593, 34.59374688239686], [-77.44559317177789, 34.593310625890666], [-77.44643959607569, 34.59219445377621], [-77.44674324989873, 34.59179561424155], [-77.44668455559642, 34.591522343342874], [-77.44668228836044, 34.591152062550414], [-77.44538307378835, 34.59079336055318], [-77.44470984789996, 34.59046530848829], [-77.44460801009176, 34.59028990879403], [-77.44418728476771, 34.59024113871068], [-77.44392136342285, 34.58974092594413], [-77.44386308569918, 34.58950150546592], [-77.44370935282598, 34.58946108005719], [-77.44367439534632, 34.589200319344215], [-77.44405658083167, 34.58856165557834], [-77.44470855706875, 34.587965973752105], [-77.4453566320604, 34.58737384438567], [-77.44614346954414, 34.58656135179266], [-77.44785930583213, 34.585031092153955], [-77.44894288646645, 34.58392779712551], [-77.44939689845702, 34.582693808052255], [-77.44919111508595, 34.58128613417334], [-77.44785499656089, 34.57716777290027], [-77.44758823532102, 34.576448995106155], [-77.44748714461028, 34.57617656960721], [-77.44683474278943, 34.57517259195983], [-77.44560618480048, 34.57305194827767], [-77.44511354400477, 34.57267834590442], [-77.44289288820713, 34.57004770866316], [-77.44232797624747, 34.56928813248811], [-77.44154667801598, 34.56773988657446], [-77.44038614815082, 34.56486619680722], [-77.43952580104293, 34.56374124803605], [-77.43741813702964, 34.56169957594241], [-77.4356836436037, 34.56090023867177], [-77.43524060527875, 34.5603597801913], [-77.43402998533884, 34.55904700892664], [-77.43263624457273, 34.558534445127705], [-77.43208851505587, 34.558189466383375], [-77.43157797157384, 34.5580972026176], [-77.43112219718105, 34.5558070761975], [-77.42893642856579, 34.55549234644494], [-77.4287039280452, 34.55536658257474], [-77.4284850070558, 34.55514765639134], [-77.42783341957197, 34.55303328899206], [-77.42578445439344, 34.552446981728295], [-77.42500781662123, 34.55225358696313], [-77.42339747864652, 34.55166248512329], [-77.42263303131026, 34.55083070908914], [-77.4213260388555, 34.55137664966491], [-77.41948217934163, 34.55165807328644], [-77.41900753644418, 34.553120722722255], [-77.41919777328792, 34.55340015330735], [-77.41948261166361, 34.55396981762542], [-77.42177090225825, 34.55365137529886], [-77.42063860994458, 34.55628171746166], [-77.4213062897723, 34.55761696083047], [-77.42118144409906, 34.55803358485813], [-77.42105902880941, 34.5580744194935], [-77.42088453495357, 34.55813262363951], [-77.41948326011435, 34.557396841222314], [-77.41874323351826, 34.55915425491577], [-77.41790791460068, 34.55904469749403], [-77.41719055997676, 34.559403317762374], [-77.41693187778483, 34.5595677372823], [-77.41633236973738, 34.55979822577991], [-77.41576272661396, 34.5597688606156], [-77.41396274688942, 34.55980025519866], [-77.41318095502758, 34.559272340250374], [-77.41197681762728, 34.55963175894139], [-77.41132736343849, 34.559624729059536], [-77.41023040190322, 34.55948355912067], [-77.41002962814898, 34.55944368289119], [-77.40997538260525, 34.55946191681787], [-77.4087902244292, 34.55932906825456], [-77.40845394500087, 34.55930315178476], [-77.40781875980025, 34.55914717734294], [-77.40759390889548, 34.55909290947076], [-77.40687825456254, 34.55887910036269], [-77.40646584044455, 34.55877331921773], [-77.40527232783435, 34.558501117390584], [-77.40444715617961, 34.5559999372511], [-77.40464107847859, 34.55519563239475], [-77.40540761146477, 34.553273290865036], [-77.4062336213502, 34.55087452190736], [-77.40806657625318, 34.54790776615575], [-77.40812687995775, 34.54520138356389], [-77.40857064457592, 34.54391756068227], [-77.40751539228698, 34.54243024248], [-77.40800346799699, 34.541431279271215], [-77.4094121856783, 34.539878616364014], [-77.41024843412066, 34.537765417388286], [-77.41097910607321, 34.539652303850794], [-77.41168620054492, 34.54250495473171], [-77.41161994621041, 34.54347716309525], [-77.41361867638486, 34.54539638033706], [-77.41358046215456, 34.5471114047851], [-77.41517690615053, 34.548124470807444], [-77.41633061074144, 34.54806836798159], [-77.4178875180782, 34.54816749907329], [-77.42011133352896, 34.548885742242746], [-77.42263256159265, 34.54872297151901], [-77.42379497808113, 34.54903218638303], [-77.4248415123601, 34.54989667965421], [-77.42578369577912, 34.54954338387273], [-77.42652453459948, 34.54943629047739], [-77.4279715149186, 34.5494666794389], [-77.42893488895956, 34.5503656228486], [-77.42990211791741, 34.55050339879628], [-77.43405248929591, 34.54966942922942], [-77.43523663863996, 34.54984956824857], [-77.43617183102737, 34.549631050368625], [-77.43806598205737, 34.55036537195218], [-77.44060313941604, 34.551007236318306], [-77.4415391490506, 34.55124400308201], [-77.44229266969934, 34.55056653813865], [-77.44752187904328, 34.54934024611735], [-77.44784009151371, 34.549294914304156], [-77.44824705058612, 34.5493309251034], [-77.44883144844532, 34.5488076369676], [-77.44883114252964, 34.54773835339173], [-77.44957856854269, 34.543783229076915], [-77.44943043657987, 34.541927300345804], [-77.44889159803107, 34.53869878689779], [-77.44895738261638, 34.53807817248585], [-77.44889159442607, 34.5374930067977], [-77.44889166678121, 34.53472716610298], [-77.44935433635821, 34.53410310353659], [-77.4488094060517, 34.53369033707372], [-77.44830795324106, 34.532457853104276], [-77.45093172553284, 34.53208105934446], [-77.45119529358476, 34.53213351243554], [-77.4524619078381, 34.533653180577076], [-77.45293567914865, 34.53442655398028], [-77.45428640625451, 34.53438301266076], [-77.45677663867994, 34.53537907413834], [-77.45965243212463, 34.53652945398443], [-77.4601134682899, 34.53671385548216], [-77.46051266879881, 34.53687353704146], [-77.46332504075022, 34.53776371615491], [-77.46675391629977, 34.53868667327317], [-77.47201972295053, 34.53473734477655], [-77.47255319865697, 34.53430090112864], [-77.47314532189841, 34.533537384514126], [-77.47672795222994, 34.53184241900772], [-77.47949612174241, 34.53024333385159], [-77.4800857499602, 34.5300148367168], [-77.48083305793725, 34.529801019043084], [-77.48536797308327, 34.52782680127433], [-77.48945686519528, 34.526709941209816], [-77.48893544646768, 34.52480666558805], [-77.48743444385157, 34.51932689748639], [-77.48670313911046, 34.516656691433724], [-77.48460598430349, 34.51795408068919], [-77.4810867721252, 34.51900583965803], [-77.47888289170558, 34.51992765753232], [-77.4815272571804, 34.52443210537363], [-77.4795492483645, 34.52500283302042], [-77.47843053998895, 34.52580258736996], [-77.47779356942658, 34.52652653135136], [-77.47635005491998, 34.52687222726418], [-77.47471425592181, 34.52740768599018], [-77.47326620889936, 34.527923351717966], [-77.46872261333876, 34.531297526015834], [-77.46817286102308, 34.532174630885095], [-77.46761192577267, 34.53341738022873], [-77.46685447982986, 34.53403243507948], [-77.46536247321907, 34.533743356370614], [-77.46477357212606, 34.53317944515308], [-77.4630000486637, 34.53212678827651], [-77.46300606519645, 34.52966621347114], [-77.46176242179065, 34.52773238232436], [-77.46099834256371, 34.52458147739372], [-77.46238970224262, 34.5214242495392], [-77.46195039258097, 34.52011563002339], [-77.46200304324022, 34.5180390510872], [-77.46176369518807, 34.51708149970853], [-77.46160053039924, 34.51666762229215], [-77.46037677093517, 34.51569462981685], [-77.45970379791234, 34.5152203220076], [-77.45950439256113, 34.51513010448481], [-77.45927023825915, 34.51485796275605], [-77.45854162061956, 34.51480339203119], [-77.45646192137369, 34.514439814491325], [-77.45398996911547, 34.51487903190939], [-77.45389208409259, 34.51489361626814], [-77.45372664140828, 34.514916738966306], [-77.45018739883443, 34.515498074402046], [-77.44840042976796, 34.516324178075976], [-77.44687956573301, 34.51582895385879], [-77.4426444601605, 34.51580557593438], [-77.44213167068465, 34.515858638641596], [-77.44167615594634, 34.51591001067004], [-77.43974224909118, 34.51638151181582], [-77.43896317284052, 34.51718100616815], [-77.43846306150911, 34.51774597975534], [-77.43602934708787, 34.520191538832464], [-77.43587750530494, 34.52038314287519], [-77.43575084133323, 34.52049222021367], [-77.43327224310322, 34.52316795969613], [-77.43027760465876, 34.52455192004604], [-77.42960814924628, 34.52324874007605], [-77.4294107428955, 34.523246896246405], [-77.42929796092469, 34.52322290956979], [-77.42933954091379, 34.52328758688791], [-77.42935269709001, 34.523320877736374], [-77.42908486796527, 34.525105459265816], [-77.42836796949466, 34.52538684280039], [-77.42778858527957, 34.52561425181292], [-77.42740095982103, 34.52576639008068], [-77.42695707166908, 34.526057617403126], [-77.42694284211116, 34.52611363552026], [-77.42680608134748, 34.52659206561782], [-77.42648164231997, 34.52681965228832], [-77.42648097052276, 34.52694675165185], [-77.42695420463272, 34.5270603380268], [-77.42695751432026, 34.52706858067601], [-77.42698923270576, 34.52706630739684], [-77.42776419592958, 34.526718888138404], [-77.4281096768133, 34.526617698157814], [-77.42936338514511, 34.525393602384014], [-77.42999908219717, 34.525549679110085], [-77.43348630336317, 34.525983968148616], [-77.43558396731609, 34.52808240481929], [-77.43578854860797, 34.52823111955177], [-77.43913661903318, 34.529429513025775], [-77.44126351770343, 34.53135654231898], [-77.4417781147443, 34.53199508094334], [-77.44300301169653, 34.53422780177208], [-77.44324878719827, 34.53498681852611], [-77.44324688296402, 34.5359574056883], [-77.44398628082246, 34.5387976718971], [-77.44427741808343, 34.54042975208705], [-77.44434405271186, 34.54070472734461], [-77.44418198515912, 34.5410636612053], [-77.44386451940179, 34.54273288387662], [-77.4435400617648, 34.54493994940801], [-77.44153662510779, 34.54560775124497], [-77.43996039487043, 34.54499668070961], [-77.43523524496375, 34.546100763413776], [-77.4336935469507, 34.54586623221272], [-77.42976845544506, 34.54567204355267], [-77.42893349579661, 34.54567205272487], [-77.42829600900532, 34.54567204276475], [-77.42682708009761, 34.54519716271597], [-77.42392275517983, 34.54482542667243], [-77.42266582302248, 34.54427157449622], [-77.42208608593273, 34.54392373855716], [-77.42092924373233, 34.54322964540707], [-77.41886331029845, 34.54243070245792], [-77.41881551272454, 34.54096724936334], [-77.41886654696461, 34.54000164561834], [-77.41914427806054, 34.53847262886677], [-77.41913353202187, 34.5368621660981], [-77.41977839675579, 34.53446351458288], [-77.41823206870586, 34.5336813469242], [-77.41827335380447, 34.532722309957705], [-77.41780180867265, 34.53207542425009], [-77.41746804454422, 34.531377123668136], [-77.41724575967653, 34.53091207377954], [-77.41712391073104, 34.53065714908346], [-77.4167064091747, 34.52978363049658], [-77.41560369569874, 34.52919061202407], [-77.41623144642014, 34.528789863859906], [-77.41675851132872, 34.527437758505414], [-77.41691591863939, 34.52713629322915], [-77.41833816069607, 34.527001959319776], [-77.41893951984422, 34.52712670457873], [-77.41900376591134, 34.52674055526825], [-77.418345999712, 34.526648718744006], [-77.41694224406723, 34.52693088046015], [-77.41676981223058, 34.526928946595305], [-77.41556890018467, 34.526481573769956], [-77.41521198244057, 34.52638279153422], [-77.41517217868754, 34.52634029887392], [-77.41492557600512, 34.526350510620226], [-77.41442672710225, 34.52639513996477], [-77.41437419858157, 34.526430177261695], [-77.41408404345583, 34.526752974508206], [-77.41362296357785, 34.52723935968726], [-77.41332542343297, 34.52737737075528], [-77.41204563110668, 34.52756957457129], [-77.4118538852714, 34.52765523103442], [-77.41125503406221, 34.52782112084878], [-77.4111981262053, 34.52786838241418], [-77.41091061250316, 34.52818986861378], [-77.41078076713714, 34.528418349930675], [-77.41045017160351, 34.52871256156532], [-77.41015888992732, 34.52881761915775], [-77.40902197187307, 34.52906865914281], [-77.40887234172553, 34.529063133223396], [-77.4087363744646, 34.529119289745864], [-77.40870699891886, 34.52920756601403], [-77.40784522663054, 34.52967926269265], [-77.40774051901035, 34.529836830398956], [-77.40727334192547, 34.53036139848603], [-77.40725036611653, 34.53038326924667], [-77.40720025834662, 34.530404532741976], [-77.40647867244141, 34.53079338784628], [-77.40618208148308, 34.53085713026149], [-77.40584958797007, 34.53147220612493], [-77.40580153406722, 34.5315858768694], [-77.40579717970633, 34.53166320747919], [-77.40564831669776, 34.53258734425957], [-77.40559197917612, 34.533549822438026], [-77.40470966424809, 34.53468158913438], [-77.40401781337391, 34.53552411609499], [-77.40123680759616, 34.53540542867834], [-77.40126055533219, 34.537138255585795], [-77.40128325980513, 34.538794911419096], [-77.40111725916054, 34.53932018418892], [-77.40111927592545, 34.541076036466336], [-77.40089400498462, 34.542953195987735], [-77.40089449663982, 34.54318476625565], [-77.39899033738125, 34.54530068435341], [-77.39865789532855, 34.54607037863585], [-77.39742893885905, 34.549266394602995], [-77.39735773822835, 34.5494113265242], [-77.39736852056416, 34.549452145873204], [-77.39735421385063, 34.54953045375396], [-77.39700610309914, 34.55584667046462], [-77.39427322607997, 34.55584666787599], [-77.39268482090284, 34.55523662835657], [-77.39112216884202, 34.55463724858825], [-77.3901464144592, 34.55389070054814], [-77.38896659098535, 34.55298801703242], [-77.38931117288455, 34.55061462220437], [-77.38903552058524, 34.550002305833104], [-77.38865374819596, 34.54915286005146], [-77.38851254453654, 34.54877115840888], [-77.38821604137252, 34.548691308148285], [-77.38802359133982, 34.54850604687738], [-77.38748416788093, 34.547940157847066], [-77.38719562003575, 34.54753247687349], [-77.38718327551405, 34.54749389266546], [-77.38717155620449, 34.54743889497272], [-77.38694584204458, 34.54723873670284], [-77.38660978204888, 34.54708694048851], [-77.3865619299736, 34.54704656237293], [-77.38648734515195, 34.54699210697749], [-77.386048023407, 34.54689258429594], [-77.38592338128404, 34.547185931343535], [-77.3851854747147, 34.54746647786076], [-77.38490215999698, 34.5476477189502], [-77.38380121812621, 34.54817115238715], [-77.38331440455487, 34.54841589021473], [-77.38317695934523, 34.54847644728058], [-77.38293723242805, 34.548825305969594], [-77.38314893286886, 34.54954466220669], [-77.38396879864302, 34.55084811995768], [-77.38424120854378, 34.55134580805852], [-77.38439368344822, 34.551783780241266], [-77.38482032087553, 34.552199760794025], [-77.38659661166247, 34.554402685257685], [-77.38719566230725, 34.555151849114715], [-77.38797069031222, 34.55612103526943], [-77.38916284587297, 34.55742912216589], [-77.3886910601516, 34.558274027306425], [-77.3889797995996, 34.55976372701904], [-77.38954575436571, 34.559475542628974], [-77.38979597860794, 34.55930574618317], [-77.39112151438782, 34.559003217695015], [-77.3923836237215, 34.55900079210679], [-77.39269707116935, 34.55996008234412], [-77.39309659131402, 34.56025825935014], [-77.39292867052079, 34.560532178820985], [-77.39341770575851, 34.56113336950757], [-77.39348476095255, 34.56129746351572], [-77.39407374625631, 34.56181557654271], [-77.39404743716577, 34.56206198037356], [-77.3940743670798, 34.56245109188028], [-77.3942144705745, 34.56264441780588], [-77.39427243567783, 34.56301968881331], [-77.39469622052339, 34.56296732268831], [-77.39506028838915, 34.56326593523636], [-77.39553559309061, 34.562966046721826], [-77.39584821762222, 34.56270023600757], [-77.39596594993787, 34.561669365161265], [-77.39742415527157, 34.56000350489612], [-77.4005459853282, 34.55918335856299], [-77.40055950762884, 34.559164093948155], [-77.40057557040072, 34.55916942505693], [-77.40058083986129, 34.559172648692375], [-77.40058623061397, 34.55917755036569], [-77.40372692386038, 34.55984701020471], [-77.4050403481983, 34.559950249099955], [-77.40543017595091, 34.560039156268274], [-77.4057731664783, 34.560127130780096], [-77.40687831676408, 34.56039387375459], [-77.40774744569217, 34.5606036400474], [-77.40984760095009, 34.56123715563379], [-77.40997938669713, 34.56127243342748], [-77.41002977478354, 34.56129007117336], [-77.41012081387525, 34.5612958257747], [-77.41273373572676, 34.56130262331482], [-77.41318118757744, 34.56126565825346], [-77.41380848059913, 34.561341220724714], [-77.41547282655712, 34.56135140799238], [-77.41633255587354, 34.560999397330015], [-77.41690213366502, 34.56083218878834], [-77.41751061665349, 34.56013034669313], [-77.4177836569469, 34.55995680110181], [-77.41790806158963, 34.55989460867303], [-77.41855500861348, 34.559979459915404], [-77.41934259183077, 34.56001782876697], [-77.41948376685333, 34.560047508052456], [-77.41980290758943, 34.560143125242504], [-77.4208761944831, 34.55984154746065], [-77.42105938994514, 34.55979007205289], [-77.42120140449697, 34.55975016688169], [-77.42232291069693, 34.55943502329564], [-77.42258839165302, 34.55934646558304], [-77.42263492384697, 34.55919118242779], [-77.42276546991899, 34.55923036466471], [-77.42421042655039, 34.558562138008256], [-77.42453480009516, 34.55876578191134], [-77.4255716988975, 34.558734378913734], [-77.42578608851655, 34.55862337506069], [-77.42600197893825, 34.55867060920935], [-77.42627067487948, 34.55886446157385], [-77.4283784366089, 34.55916241823242], [-77.4289375675393, 34.55924145095555], [-77.43057396251734, 34.56000590165724], [-77.43208923250472, 34.56027973634542], [-77.43270490779071, 34.5606675096542], [-77.43328451734828, 34.56124717273582], [-77.43524169381125, 34.56320448789519], [-77.43592874371828, 34.563521113250616], [-77.43659378800824, 34.56416533470113], [-77.43870360505, 34.566924030658605], [-77.4391347915928, 34.56799172946848], [-77.43839521590735, 34.56810583430661], [-77.43764228356847, 34.56822197929324], [-77.43524439220522, 34.57019160376859], [-77.4348423303679, 34.5707785675618], [-77.43366888584545, 34.57114285282628], [-77.43344896385555, 34.571176578964014], [-77.43288104413823, 34.57141070856293], [-77.43277883449224, 34.57140035157334], [-77.43248793602419, 34.57155255977911], [-77.43223980137414, 34.571746406548925], [-77.4320932336442, 34.57178178000009], [-77.43192748081863, 34.57181223407579], [-77.43109567605553, 34.5723769043686], [-77.43051755139777, 34.57240585694256], [-77.43028998514916, 34.57247422683409], [-77.43012361896731, 34.57253756707141], [-77.42977886676181, 34.57274040943451], [-77.42972971739803, 34.57276827795004], [-77.4297045165852, 34.57277697338859], [-77.42967335265814, 34.57280864038066], [-77.42956157413408, 34.5730060872465], [-77.42912005803538, 34.573737799614364], [-77.42904679993462, 34.5738612144119], [-77.42894211823015, 34.57389658638155], [-77.42875803705765, 34.573988541130575], [-77.42854820662305, 34.5741262221971], [-77.42847141298782, 34.5741733736874], [-77.42815429168598, 34.57435195909073], [-77.42779804137521, 34.57439413067705], [-77.42771904614052, 34.57440937948775], [-77.42736626276101, 34.57415682575922], [-77.42726804378961, 34.574111325603], [-77.4272032427111, 34.574014858640254], [-77.42657804692887, 34.57329971694455], [-77.42655213581462, 34.573287707233206], [-77.4265544337366, 34.5732594550917], [-77.42641225816485, 34.57310139440306], [-77.42586311960898, 34.57251019173445], [-77.42582552019255, 34.5724771917004], [-77.42578983390429, 34.57239328188704], [-77.4255910572789, 34.572335306528004], [-77.42529515060627, 34.572276184341824], [-77.42504850902313, 34.57182915865361], [-77.42501971832519, 34.57178290534723], [-77.42508926470208, 34.57167847371946], [-77.4250017094581, 34.57175341943171], [-77.42425547277138, 34.57104417534747], [-77.42422240179125, 34.571039445084516], [-77.42421357387335, 34.5710232070114], [-77.42389379394658, 34.5705917806022], [-77.42359366344924, 34.570290638949515], [-77.42383059815404, 34.569819634001234], [-77.423425378241, 34.56999360871121], [-77.42323464425994, 34.56969882668446], [-77.42303133252145, 34.56966354895638], [-77.42296773831785, 34.56960043620477], [-77.42269961791382, 34.569637754058434], [-77.42263736463848, 34.56964834682162], [-77.42254859353855, 34.56968816336875], [-77.42237626219487, 34.56976054434672], [-77.42224345469847, 34.56988180463631], [-77.42212451421278, 34.569950144133124], [-77.42184958334843, 34.57029402536464], [-77.42146131190812, 34.57016800496533], [-77.42145133963902, 34.57017103613358], [-77.42106166102171, 34.57035201404106], [-77.4207746955999, 34.57015801683569], [-77.42066764890407, 34.57014575405622], [-77.42048807207549, 34.570083726496186], [-77.42044578306228, 34.570081808544984], [-77.42027366629496, 34.5700712700471], [-77.42013587599588, 34.57008959587149], [-77.42001345828473, 34.57010292648939], [-77.42000009915382, 34.570255578469805], [-77.42005058234872, 34.5703780006606], [-77.42027376928814, 34.57056291088909], [-77.42048119740868, 34.57051681198194], [-77.42041001365602, 34.570750655595745], [-77.42048749689002, 34.57096970410011], [-77.42056853589904, 34.57115233741247], [-77.420591451187, 34.57123139566464], [-77.42066791683008, 34.5713947095504], [-77.42102321951154, 34.571469536325765], [-77.42106190838236, 34.571479976965435], [-77.42107814676575, 34.57148579417328], [-77.42144921381629, 34.571442502237566], [-77.42145587325255, 34.571443092701955], [-77.42146203597228, 34.57144118429602], [-77.42176411591387, 34.571311819525725], [-77.42184979790348, 34.5712324242585], [-77.42198991931619, 34.57122053909255], [-77.42224374129086, 34.57111072344104], [-77.42240347536156, 34.57105936929732], [-77.42263768129541, 34.57097994572446], [-77.42289018810312, 34.57096933426942], [-77.42332771247189, 34.57117824377832], [-77.42339075183031, 34.57120677501999], [-77.42342574525004, 34.57147617169769], [-77.42357883961152, 34.57182623117053], [-77.42382657075063, 34.57195532907417], [-77.4235859052234, 34.57216252708037], [-77.42342591607053, 34.57216416801574], [-77.42332512177414, 34.57213640919343], [-77.42286630174522, 34.57234012354734], [-77.4226380206388, 34.572400897179435], [-77.42227880969578, 34.57256614198883], [-77.4222440858302, 34.57258187366238], [-77.42222517484404, 34.5725909350775], [-77.42217145347635, 34.57261907986642], [-77.42185015950525, 34.57280726955625], [-77.42165503120748, 34.5729079713181], [-77.4211058584643, 34.57315066300659], [-77.4210622772401, 34.57315365653902], [-77.42101938876506, 34.573163901290826], [-77.42096089250091, 34.57321857530156], [-77.42048981336646, 34.57351878990366], [-77.42040870562721, 34.573722939796085], [-77.42044567539473, 34.573957696762136], [-77.42044108793397, 34.574142846046904], [-77.42046273170722, 34.574342497126324], [-77.42051917671287, 34.574556149426684], [-77.42061439390724, 34.574600818934805], [-77.4206686194837, 34.57464500785672], [-77.42096930919455, 34.5749157005855], [-77.421023629808, 34.574949929934256], [-77.42106268015051, 34.574971209249945], [-77.42125127219964, 34.575096340837874], [-77.42128234865753, 34.57510716671164], [-77.4214567150251, 34.575170362796044], [-77.42154192447292, 34.57516572618016], [-77.42183419142015, 34.575197522350656], [-77.42183155974327, 34.57481166315838], [-77.42182584667623, 34.574791945646666], [-77.42182174649501, 34.57476143216805], [-77.42177271034049, 34.57445891221614], [-77.42176236717593, 34.5743765317756], [-77.42185049567153, 34.57426423012754], [-77.42204497578949, 34.57412607881082], [-77.42204745599034, 34.57412400970789], [-77.42204822859594, 34.57412376814123], [-77.42224443421287, 34.57406242137788], [-77.4223876205801, 34.574015922916715], [-77.4225171197237, 34.57397358961169], [-77.42263838821313, 34.57393306476339], [-77.42272335944817, 34.57390466936178], [-77.42295755033908, 34.57377925134395], [-77.42303231881947, 34.57371350788692], [-77.42322122489276, 34.57352019488617], [-77.42342614379687, 34.57307877819895], [-77.4237618819908, 34.573301264926876], [-77.42382019713463, 34.57336658249336], [-77.42393634676971, 34.57363781359455], [-77.42406350245973, 34.57378193437469], [-77.42421443991333, 34.574374034505034], [-77.42423671238488, 34.574419592938796], [-77.42424536907583, 34.57444233173264], [-77.42423877070385, 34.574469479062316], [-77.42424801148678, 34.57465424340562], [-77.42424967615791, 34.57469188675068], [-77.42428740298521, 34.57478232913666], [-77.42440927335936, 34.574840774071006], [-77.42441155570333, 34.574841950257316], [-77.4244123617472, 34.57484191838826], [-77.42441444655275, 34.574842485768926], [-77.42456446917316, 34.574868317723585], [-77.42460855971551, 34.57487899302237], [-77.42470992391368, 34.574909013914066], [-77.42500254858521, 34.574880317438144], [-77.4252709921303, 34.57485399141058], [-77.42539653403608, 34.574869423367765], [-77.42577248574139, 34.57505132529597], [-77.42579057484491, 34.575057637026575], [-77.42579863455538, 34.57505835293973], [-77.42580467203209, 34.575066165866275], [-77.42580140188585, 34.57507830014411], [-77.4258170017314, 34.575488971782356], [-77.42579070213434, 34.57551343483338], [-77.42551907352137, 34.575663847682684], [-77.42539676140761, 34.575697620530306], [-77.42524042318871, 34.575740788342586], [-77.42518022596816, 34.57577221178452], [-77.4250028160312, 34.575871277394086], [-77.42490493434326, 34.575939864703145], [-77.42482695924654, 34.576056635291934], [-77.42482290145507, 34.57607557110895], [-77.4248484390454, 34.57621999666519], [-77.42488571651246, 34.57626043786322], [-77.42500295577608, 34.57638804771611], [-77.42504045701243, 34.576409963086455], [-77.42508861671536, 34.57644341006663], [-77.42526647763492, 34.57655836089771], [-77.42539702150003, 34.57664273011334], [-77.42549374211062, 34.576705239709575], [-77.4256468299937, 34.57678732775888], [-77.42575145673835, 34.57681489230408], [-77.42579106797726, 34.57682038244178], [-77.42584487601215, 34.576816693582614], [-77.42598806096271, 34.576800072532315], [-77.42615589932768, 34.57674516530111], [-77.42618504168937, 34.576737149195246], [-77.4262950821338, 34.57669364286456], [-77.42648250871676, 34.57656258458936], [-77.42657896831565, 34.57649427908251], [-77.42677823023604, 34.57640905481565], [-77.42707187916716, 34.576263456325634], [-77.42736683866822, 34.576089073102665], [-77.42770213189814, 34.576128967268055], [-77.42783521959413, 34.57612661122086], [-77.42815481057572, 34.576039191075395], [-77.4284947572583, 34.576009361697274], [-77.42894277356939, 34.575965186632025], [-77.42949791863, 34.5759797886935], [-77.42973074905916, 34.57593463399611], [-77.42994241731631, 34.575938357505535], [-77.43040089539579, 34.57610018935075], [-77.42997393785741, 34.576423809152175], [-77.42973105552755, 34.576870935828744], [-77.4296651468943, 34.577055724671716], [-77.42967978456312, 34.577108944512936], [-77.42973117083105, 34.57722275708786], [-77.4297929728323, 34.57739529783174], [-77.42988443474565, 34.577448616317305], [-77.43004088771889, 34.57751693107456], [-77.43012527955867, 34.577553780224676], [-77.43034875876299, 34.57762230155352], [-77.4305193178424, 34.57766699872362], [-77.43060865232398, 34.577672248789966], [-77.43080603914395, 34.57773998329084], [-77.43100034728467, 34.57804283802031], [-77.43094875209121, 34.57818193806988], [-77.43060477388056, 34.57861825864958], [-77.43055488763554, 34.578663437965645], [-77.43051966574433, 34.57869595611386], [-77.43047076256039, 34.57869032786155], [-77.43019389288658, 34.57867765343898], [-77.4301345683657, 34.57867662246286], [-77.43012565279048, 34.57867352305026], [-77.4298493856299, 34.57860054814507], [-77.42973160108312, 34.57853267802769], [-77.42944389972796, 34.57847604968117], [-77.4292521578677, 34.57848124239964], [-77.4290659671273, 34.57841610302026], [-77.42894354815908, 34.5783976418285], [-77.42889371321922, 34.57838730120524], [-77.42874653743587, 34.57837065106326], [-77.4286654072868, 34.57834912671544], [-77.42863884048822, 34.57836178666466], [-77.4286029856424, 34.578376875822165], [-77.4286293965707, 34.57839315276428], [-77.42865735653231, 34.578475164344056], [-77.42861484328166, 34.578551625143646], [-77.42867810111863, 34.57875834129873], [-77.42877079661169, 34.578883356834915], [-77.42880066950711, 34.57903322586874], [-77.4287384357304, 34.579515795557555], [-77.42854995814385, 34.57971243062741], [-77.42850059673933, 34.57977158962472], [-77.4284799971842, 34.57985000408203], [-77.42844264144365, 34.58008878240904], [-77.42847217468973, 34.580200286721556], [-77.42851227538168, 34.58023527547144], [-77.42855017662556, 34.58040406025252], [-77.42860063232551, 34.58055198843351], [-77.42859730974538, 34.580606789350654], [-77.42863097162872, 34.58068889117338], [-77.42870200836198, 34.580852785581946], [-77.42883966734709, 34.58088354937752], [-77.42894433375776, 34.58085044890866], [-77.42913907959655, 34.58073837808254], [-77.42933829789051, 34.5806916936991], [-77.429585423221, 34.580622229143586], [-77.4297322781654, 34.58058652145984], [-77.42996420917366, 34.58065911636925], [-77.43012632642575, 34.580687358925445], [-77.43023955182554, 34.58067198570873], [-77.4303459979632, 34.58077861649935], [-77.43052039320403, 34.580840059593704], [-77.43077521630362, 34.58086657431933], [-77.43114505456666, 34.58091162556563], [-77.43130842576079, 34.58084460806339], [-77.43149312307006, 34.58083835036699], [-77.43188149915561, 34.58074963673404], [-77.43209640218899, 34.580693621194044], [-77.43246700224724, 34.58047200339474], [-77.4324809890226, 34.58045991357234], [-77.43251683435815, 34.580436230316316], [-77.43288423354556, 34.580156876258314], [-77.4329815224017, 34.58007789744198], [-77.43309720047009, 34.57995630256461], [-77.4332058403416, 34.57986268928827], [-77.43327805707591, 34.579651459096084], [-77.43332192964587, 34.579546540345184], [-77.43333073953701, 34.579441090333425], [-77.43315948884921, 34.57909811362343], [-77.43337524088619, 34.57853715147654], [-77.43317618108509, 34.57824651545172], [-77.43275929370398, 34.577591231381845], [-77.43262761793272, 34.57747664359416], [-77.43241575659448, 34.57700366317542], [-77.43223886334022, 34.576683664452005], [-77.43256580258705, 34.57612878319493], [-77.43282834231908, 34.57569078863902], [-77.43288252200338, 34.5754828079843], [-77.43299802245872, 34.57487554298204], [-77.43296752850614, 34.57478806902942], [-77.43288215621446, 34.57447803492231], [-77.43280383282678, 34.57413871104369], [-77.4327791303342, 34.574058007547805], [-77.432782197936, 34.573950046055465], [-77.43288181153311, 34.57352937605413], [-77.43292669706497, 34.57323597719715], [-77.43318929136402, 34.573149522005934], [-77.43348798749776, 34.572910671225685], [-77.43366943210428, 34.57261426175129], [-77.43382092720017, 34.57289503902612], [-77.433921717501, 34.57304362212809], [-77.43431899327098, 34.57313553717771], [-77.43445759494351, 34.57316760399018], [-77.43501058291378, 34.57313939008734], [-77.43524563495036, 34.57337967335086], [-77.43632822634098, 34.57322721959232], [-77.43831412793216, 34.57401670246284], [-77.43839773259558, 34.57399787350524], [-77.4384865780989, 34.5739861124502], [-77.44154927019838, 34.57331829484268], [-77.44306954966967, 34.57517821295778], [-77.44404217464046, 34.57667498028544], [-77.44509146233825, 34.57950266566362], [-77.44556486308343, 34.58077822557444], [-77.44692114772633, 34.58305204910124], [-77.44470721079273, 34.585348037314006], [-77.44428901095878, 34.58637843762487], [-77.44324250391007, 34.586981030337725], [-77.44313194072186, 34.58709976745417], [-77.44298110310788, 34.5871814179358], [-77.44215132060631, 34.58778024024602], [-77.44155617547334, 34.58795001271052], [-77.44113384869098, 34.588135224811055], [-77.44155637267137, 34.58836260337267], [-77.4416877776605, 34.588762913779924], [-77.44177838604713, 34.58889119331254], [-77.44181664960459, 34.589165694673135], [-77.44168227921907, 34.58975428579117], [-77.44167743681204, 34.58988464790145], [-77.44155710288797, 34.58988839188255], [-77.44138939900233, 34.58997739276052], [-77.44093550385581, 34.590041633955025], [-77.44094608472282, 34.59051945612216], [-77.44116327160445, 34.59036217830027], [-77.44130989346968, 34.590390710993006], [-77.4413895806668, 34.59040198550662], [-77.44155732240858, 34.59034633297627], [-77.44182644606802, 34.590292617995146], [-77.44205880270457, 34.590240224546534], [-77.44234535087747, 34.59016646160905], [-77.44256830073468, 34.590235132018506], [-77.44312465349557, 34.59038523884453], [-77.44313357335895, 34.590383332214294], [-77.44314046139786, 34.59038514348461], [-77.4431422063088, 34.59039231204552], [-77.44365909972831, 34.59060060103185], [-77.44392185373866, 34.5907064797745], [-77.44423743281153, 34.59074306140343], [-77.44471041359691, 34.59155769681843], [-77.44519487750243, 34.59179376822821], [-77.4447108666463, 34.59243115472802], [-77.44422290125625, 34.59310661898782], [-77.44349992017159, 34.5933442095723], [-77.44313512716559, 34.59349307170808], [-77.44287450300871, 34.593546965013175], [-77.44239989339108, 34.59383962551472], [-77.44234715913133, 34.59385498563138], [-77.44229183752975, 34.593852476361874], [-77.44223361054267, 34.59392050300828], [-77.44195331349769, 34.594325388112196], [-77.44192068800243, 34.59435519035679], [-77.44189946063833, 34.59445151762704], [-77.44182252620537, 34.594829150828964], [-77.44203479761553, 34.595135677516154], [-77.44234770711427, 34.59496857874524], [-77.44255495097089, 34.59494651995249], [-77.44313593481388, 34.59510379430844], [-77.44330224723302, 34.59528522832583], [-77.44348805280671, 34.59538798904071], [-77.44381087245286, 34.59557757294232], [-77.44417208019196, 34.59585096832919], [-77.44419225197947, 34.59592567028232], [-77.44373601665067, 34.596317752649405], [-77.44344632415604, 34.59662187631451], [-77.44337176787664, 34.59680967486525], [-77.4433217196775, 34.59691242488823], [-77.44311381180351, 34.59733880377741], [-77.44310720292526, 34.59735223410881], [-77.44307516762949, 34.597721233467304], [-77.44322630032926, 34.597997597663074], [-77.44303607168567, 34.59847087894045], [-77.4434074564539, 34.59881363359081], [-77.4435671499009, 34.599057939525096], [-77.4442547951204, 34.59957604879871], [-77.44427343023463, 34.599583347554585], [-77.44522824533277, 34.59929162251362], [-77.44525798210235, 34.59931426608351], [-77.44528860713808, 34.59951216625275], [-77.44440552398737, 34.59964918644117], [-77.44535763332007, 34.60002435275483], [-77.44536991250784, 34.60007122220802], [-77.44545729630336, 34.60012850147564], [-77.44614439317169, 34.600538489151354], [-77.44642848602295, 34.600605453104315], [-77.44668057162157, 34.600756781565266], [-77.4469778932069, 34.600847970563436], [-77.44738963070955, 34.60069359744706], [-77.44764553853942, 34.60044132931132], [-77.44800260880123, 34.60050928811789], [-77.44817928255051, 34.60047087586956], [-77.44836907091567, 34.60051834260839], [-77.44850848637195, 34.60046575606514], [-77.44868697945888, 34.60040526624413], [-77.44885517777931, 34.60031926608963], [-77.44883079799237, 34.6002688509172], [-77.44877671628349, 34.600157015632746], [-77.44865052335868, 34.59989605879297], [-77.44861979444799, 34.59983251472372], [-77.44856598364389, 34.599820389885984], [-77.44832711736998, 34.5985440644737], [-77.44979729967073, 34.59831467897733], [-77.45016611606304, 34.59812773645495], [-77.45055817414918, 34.59808605105065], [-77.45183942069824, 34.59764608495431], [-77.45214817966968, 34.59768753966767], [-77.45247353059554, 34.597784984919954], [-77.45270356729525, 34.59779618493384], [-77.45280811875676, 34.597832991862106], [-77.45307598967374, 34.59782294804747], [-77.45320247521494, 34.597807903120696], [-77.4532337695056, 34.59781283328649], [-77.45330741205268, 34.59780933887238], [-77.45347809493542, 34.59774527501797], [-77.45350756143837, 34.59769983915032], [-77.45354659921895, 34.5975833418968], [-77.45362409825943, 34.597318605875515], [-77.45362902472417, 34.59730248956132], [-77.45363610770502, 34.59727758117606], [-77.45360304397312, 34.59693407764263], [-77.45357714130031, 34.59666494092196], [-77.4535338602089, 34.5962152904976], [-77.45372616538685, 34.59577153560093], [-77.45441049564936, 34.595965213744215], [-77.45467381871254, 34.596008452969286], [-77.45484071729925, 34.59600267951013], [-77.45522653135393, 34.59600333100302], [-77.4553693562697, 34.59601365276033], [-77.4556374231606, 34.59561519777578], [-77.45570212180351, 34.59555036372084], [-77.45574962205205, 34.59548274364817], [-77.4560156248694, 34.59513803759068], [-77.45600085409372, 34.59503551026535], [-77.45613395417533, 34.59496670158589], [-77.45647955407378, 34.594636417612854], [-77.45650528545082, 34.59459263558406], [-77.45641938129823, 34.594330730442735], [-77.45637427265528, 34.594297189467916], [-77.4561937625013, 34.5941494689649], [-77.45602693109083, 34.594027019034485], [-77.4556557836063, 34.59367598992111], [-77.45540934588972, 34.59346468374206], [-77.45606123040938, 34.59278142657723], [-77.4565255892884, 34.59274158781096], [-77.45703718486301, 34.59250650533711], [-77.45754458946125, 34.592497240694186], [-77.45812677963347, 34.59264661893993], [-77.4581777990528, 34.59263717549482], [-77.45824297355801, 34.59265624005759], [-77.45817199320443, 34.59269831197733], [-77.4581779236428, 34.59283339147555], [-77.45825650914358, 34.593347263329335], [-77.4582474312615, 34.593393501052695], [-77.45827735064252, 34.5934298598819], [-77.4583474464167, 34.59373423164569], [-77.4584762878148, 34.59392297182174], [-77.45854251101632, 34.594019982348755], [-77.45856769625242, 34.59404065748133], [-77.45868458746581, 34.594116425845556], [-77.4590316931215, 34.59433609386198], [-77.45939588365266, 34.594542892774726], [-77.45955863784297, 34.594606017544045], [-77.45974159609368, 34.59470462176527], [-77.45981815819869, 34.594745814666915], [-77.45986698676391, 34.59477774423341], [-77.45991934877586, 34.59485814305337], [-77.46000787999553, 34.59497098814528], [-77.46019219945369, 34.59495360794306], [-77.46031308135207, 34.59487205619095], [-77.4604070772561, 34.59471910250998], [-77.46072401577095, 34.59453320743157], [-77.46073688790423, 34.59452480995335], [-77.46074215719389, 34.59451949379322], [-77.46101573561167, 34.59431268576597], [-77.46145407517344, 34.59411647758067], [-77.46165279200095, 34.59400603274392], [-77.46176539065885, 34.593955598787055], [-77.46211500294841, 34.59377448627945], [-77.46217836877081, 34.593748948066434], [-77.46239621592238, 34.59355693545557], [-77.46250642503335, 34.593284485809065], [-77.46285669792752, 34.59331521391506], [-77.46344816804442, 34.59288467819263], [-77.46552658240375, 34.59341336456066], [-77.46566880062707, 34.59331595900812], [-77.46577034820653, 34.593462457434235], [-77.46574380073234, 34.593589756142016], [-77.46574377608255, 34.595966767203855], [-77.46574376329787, 34.596424237153215], [-77.46574375067077, 34.59709975567869], [-77.46591911442664, 34.598505523643965], [-77.46331881725257, 34.60006607455694], [-77.46331368649568, 34.6000698682717], [-77.46330794167318, 34.60006953972936], [-77.46330437365448, 34.6000745302441], [-77.46167944244522, 34.60178003918341], [-77.46152039903032, 34.60192166403298], [-77.46065974567989, 34.60331849323028], [-77.46031229529919, 34.60388240157761], [-77.46025078146212, 34.60395498460232], [-77.46019969985913, 34.60405451543804], [-77.45927752277572, 34.60609198689248], [-77.45922620408037, 34.607146388322], [-77.45939147050541, 34.608527588457406], [-77.45939770663102, 34.60861152340999], [-77.45950120599187, 34.610022078916955], [-77.4595650335395, 34.61114753498691], [-77.45958363104234, 34.61147565294325], [-77.45960880407307, 34.611919709431675], [-77.45966604060753, 34.61292920482563], [-77.45970835449091, 34.61367514493614], [-77.45974847164015, 34.614382774698484], [-77.45987393135954, 34.61525342045907], [-77.46029416482754, 34.61570417042649], [-77.4608757673237, 34.616560951225466], [-77.46041794905591, 34.61714594583947], [-77.45970191007143, 34.617591289372875], [-77.45898956533742, 34.618378681035246], [-77.45825264794405, 34.619240664735756], [-77.45678903954263, 34.62231290622541], [-77.45661962368702, 34.62250471749533], [-77.45673973127914, 34.62262633903611], [-77.45641789235874, 34.62313737245699], [-77.45514882359002, 34.62603417571315], [-77.45451493057541, 34.62672355339697], [-77.45248415262822, 34.62794686365492], [-77.45034049014451, 34.62948551491159], [-77.44839168365465, 34.629536735173694], [-77.44622851359779, 34.62983156862441], [-77.44484372144181, 34.62997197371866], [-77.44415771369094, 34.62916815404141], [-77.44312763136259, 34.62769508447688], [-77.44223074000524, 34.626763486983315], [-77.44200294437331, 34.62613004190773], [-77.44133175187369, 34.62554277424652], [-77.44140758641362, 34.62502923575788], [-77.44070358693942, 34.625016414889004], [-77.4399613006842, 34.62534835901268], [-77.43943990771022, 34.62560577867036], [-77.43884240072136, 34.6259006741739], [-77.43876077413155, 34.626167109748735], [-77.43794267277897, 34.62645561322072], [-77.43775826916198, 34.626435724022116], [-77.43715549167007, 34.626733204462894], [-77.43702387742827, 34.62679815838765], [-77.43698945195888, 34.626815147903315], [-77.4368942532189, 34.62799165950512], [-77.43695761810494, 34.62826657798094], [-77.43689999777061, 34.62871000968077], [-77.43775434308377, 34.630770352549284], [-77.4375184584903, 34.63106067895349], [-77.43575373353875, 34.633767588964815], [-77.43512670398172, 34.63469628502628], [-77.43508808531256, 34.634792821988114], [-77.43501576277956, 34.63497362513888], [-77.43282310700796, 34.63734872546483], [-77.43174232057001, 34.638384527507974], [-77.42964144668257, 34.63625932874636], [-77.42850514573578, 34.63531169406991], [-77.4266065498835, 34.63499030713274], [-77.42513317204087, 34.634589911133915], [-77.42371532541256, 34.63385124120902], [-77.42218282692198, 34.63419747090531], [-77.42050138452551, 34.63464312479836], [-77.41841411325159, 34.63579908290283], [-77.4155935448146, 34.637880851647665], [-77.41374422846252, 34.64078759372536], [-77.41357567919658, 34.64213033696533], [-77.41210288551201, 34.64348812472033], [-77.40879196065234, 34.645411527714856], [-77.40809692592093, 34.64561665718239], [-77.40433853009974, 34.64586580068806], [-77.40084036352023, 34.64716693437122], [-77.40039039938361, 34.647318079488024], [-77.40015002146058, 34.64800978444758], [-77.39875746553724, 34.65096154457092], [-77.39878173991997, 34.651818671088165], [-77.40020298868144, 34.655255013695296], [-77.40092733729104, 34.65625122477697], [-77.40097388820703, 34.65754256216181], [-77.40101428261976, 34.659180169844596], [-77.40221145108171, 34.66011311636133], [-77.4030887298728, 34.661543430658455], [-77.40462316091995, 34.66229692723656], [-77.40629379097386, 34.66243960946706], [-77.40893534513745, 34.66267747840994], [-77.40908883830642, 34.662789285344935], [-77.40911528918598, 34.662870924751836], [-77.41026883902899, 34.66489726422155], [-77.41069526343252, 34.66528571421449], [-77.41066641279434, 34.66589186897163], [-77.41012666790597, 34.66622042459169], [-77.41014651476632, 34.66627863966127], [-77.4101522230576, 34.66629699385694], [-77.41024266707, 34.666410210574185], [-77.41076721926049, 34.666385739280756], [-77.4116592489635, 34.666540138003626], [-77.4119710776895, 34.666653506477495], [-77.41209171701965, 34.66644276852992], [-77.41213917312572, 34.66640734297786], [-77.412458043902, 34.66626076368415], [-77.4139241304546, 34.66553106130764], [-77.41438150555913, 34.665713167123016], [-77.41497352870778, 34.666464100320695], [-77.41533242379238, 34.66691930944786], [-77.41751615274195, 34.66701517158492], [-77.41894101251505, 34.66848586471676], [-77.41921005139064, 34.6686026553814], [-77.41930418552109, 34.668742255397746], [-77.41929935596728, 34.66891308420907], [-77.41927686345015, 34.66921957404868], [-77.41883783963432, 34.66949168235001], [-77.41729771339223, 34.67196663025018], [-77.41693034685547, 34.67255693377463], [-77.41528324749277, 34.67395499262619], [-77.41516150119423, 34.6741743989387], [-77.41512158324387, 34.67439167899351], [-77.41496577115694, 34.67587287957613], [-77.41551527416118, 34.67653461611111], [-77.41605403435071, 34.677204212649826], [-77.41644843499661, 34.67774634681576], [-77.41767816095091, 34.67857325639975], [-77.41923556776656, 34.67944753716152], [-77.42082406642032, 34.680339228234644], [-77.4227642510277, 34.681545982220904], [-77.4229774267278, 34.68175506050081], [-77.42348157323266, 34.682080049255134], [-77.42414402624331, 34.68215233365045], [-77.42443468141485, 34.68214268821578], [-77.42528756844207, 34.68218986806284], [-77.42539217484844, 34.68221248450664], [-77.42540837010422, 34.68221186740668], [-77.42545475958414, 34.682208680777435], [-77.4259998765173, 34.68238215628995], [-77.42615007926862, 34.6819559218793], [-77.42620051121418, 34.68195012727468], [-77.42644218882822, 34.68179659045505], [-77.42657470536366, 34.68152193646271], [-77.42673510573108, 34.68141668840858], [-77.42695846612901, 34.681283880330675], [-77.42722803481321, 34.6814686201582], [-77.42756920576916, 34.68138768139959], [-77.42795182453625, 34.68200362024579], [-77.42794434233002, 34.6820624262659], [-77.42787621104401, 34.68225670955053], [-77.42793774273488, 34.682328534252754], [-77.42801553323275, 34.682305439777515], [-77.4280654160346, 34.68209605233693], [-77.42815706512249, 34.682075406399605], [-77.4284681047033, 34.68200658015563], [-77.42864470197475, 34.68209981616043], [-77.42877842705704, 34.68201320011805], [-77.42890233708837, 34.68196868258375], [-77.42901957447017, 34.68191151354683], [-77.42915872027524, 34.681866675802155], [-77.42920003235007, 34.681707547478155], [-77.42945554715227, 34.681512028070124], [-77.42953346938253, 34.68150485236626], [-77.42967765226328, 34.68148910610954], [-77.42979259330662, 34.681454446153005], [-77.42988469297495, 34.68133123959461], [-77.42996487821159, 34.681219118032374], [-77.4299590796754, 34.68102846805671], [-77.43013671455022, 34.68099543632941], [-77.43027364291528, 34.68089913436111], [-77.43043882235709, 34.68063719214386], [-77.43068734816659, 34.6804000107157], [-77.43082247703646, 34.68021230901168], [-77.43119869273718, 34.67991650448177], [-77.43127148406032, 34.67985937301989], [-77.43133504294099, 34.67983251281336], [-77.43162021116169, 34.679681691524614], [-77.43171081700036, 34.6795976024337], [-77.43183586871908, 34.679448610219694], [-77.43171315444741, 34.679245632879336], [-77.43163669297313, 34.67918215462542], [-77.43144356133104, 34.67907009780801], [-77.43121570286279, 34.678911491181275], [-77.43108476589843, 34.67880626043154], [-77.43090522576964, 34.678716098199885], [-77.43068747603255, 34.678487894572775], [-77.43060416178224, 34.67827397707964], [-77.43060401060656, 34.67789963556929], [-77.43062098199766, 34.67782057139922], [-77.4305785699201, 34.67763044164346], [-77.43045028947137, 34.67744543318739], [-77.43025071410202, 34.677216996163935], [-77.42985779584794, 34.67679997000074], [-77.43016915234571, 34.67506565646423], [-77.4302763964375, 34.67498970853965], [-77.43079228117482, 34.674624367722544], [-77.43144573913744, 34.6741616018035], [-77.43167014977456, 34.674257926355295], [-77.4318591746638, 34.67442518897735], [-77.43259812037736, 34.67507906235184], [-77.43264575284535, 34.67563623267636], [-77.43266180997168, 34.67582404481466], [-77.43269419554103, 34.67620285487305], [-77.43271107820144, 34.676400337976254], [-77.43271944849886, 34.67649824924281], [-77.43277456717576, 34.67668402208583], [-77.43286824327286, 34.67701436688616], [-77.43258355363415, 34.677344329753936], [-77.43252117082952, 34.677415599414616], [-77.43247400984474, 34.6774355470643], [-77.43235035707599, 34.677545096096935], [-77.43224581661892, 34.67763526837087], [-77.43223422436989, 34.67769427367074], [-77.43216933752602, 34.67766874379633], [-77.43205953660116, 34.67766649055685], [-77.43198867893733, 34.677666727346505], [-77.43196445645043, 34.677706178706316], [-77.43201661457984, 34.67771240120684], [-77.43213756861434, 34.67777856127052], [-77.43224303300556, 34.677813089949275], [-77.4323212589217, 34.677836571217554], [-77.43243850252419, 34.677845745294384], [-77.43262726398011, 34.677875898126025], [-77.4328264342477, 34.677914686818355], [-77.43305019393398, 34.677946156373366], [-77.43338263967001, 34.67800697369962], [-77.43365765769435, 34.67806118425113], [-77.4338408259691, 34.67807751364375], [-77.4341253491545, 34.67801308076176], [-77.4341324761342, 34.677693965735074], [-77.4342939226155, 34.677512978541536], [-77.43435136499201, 34.677416599483884], [-77.43451457843355, 34.67731381688233], [-77.43466257164052, 34.67717759734137], [-77.43476580469986, 34.67711895196055], [-77.43494026091707, 34.67688379881912], [-77.43528458336797, 34.676866882957675], [-77.43555015088208, 34.677102159977466], [-77.43579108724838, 34.677330933005024], [-77.43595695151005, 34.677535518134825], [-77.43609943443957, 34.67776564952072], [-77.43623388376122, 34.67801526079481], [-77.43629261755939, 34.67821195556189], [-77.43626790052762, 34.67830648711167], [-77.4362524817642, 34.678477445787294], [-77.43607019856753, 34.67858117792226], [-77.43598367991639, 34.67858960922253], [-77.43579368415445, 34.67859652705938], [-77.43552928520205, 34.67859453348599], [-77.43542398568094, 34.67860010452781], [-77.43506149219556, 34.67857755113996], [-77.43473512884383, 34.67876645211912], [-77.43472045872531, 34.67876780126322], [-77.43471697186499, 34.67877904125743], [-77.43472638128377, 34.678796693471334], [-77.43486704155313, 34.679172902601834], [-77.43509705083059, 34.67938346078918], [-77.4351732134962, 34.67946707310064], [-77.43519778286205, 34.67948123199209], [-77.43544331215679, 34.67957564090096], [-77.43546039775347, 34.67958181307963], [-77.43572415860453, 34.679660878627324], [-77.43575520905193, 34.67967018639172], [-77.43578971254286, 34.67968052914076], [-77.43614019869844, 34.679835808664706], [-77.43631125191622, 34.67990920912588], [-77.43632409603576, 34.67991862667269], [-77.43635155711179, 34.67993876148905], [-77.43685405239331, 34.680085439857834], [-77.43690941801093, 34.68010296047366], [-77.43691166315003, 34.68010249087851], [-77.43692105866607, 34.680101040014385], [-77.43757789171863, 34.68001438801912], [-77.43790997161543, 34.68024307668066], [-77.43811170199285, 34.68038412563737], [-77.43817067538572, 34.680472170082545], [-77.43827211213573, 34.6805813105365], [-77.43858501429578, 34.68096305677196], [-77.43877363335017, 34.68111325590194], [-77.43893767509013, 34.68117527918787], [-77.43917521255943, 34.681137852707145], [-77.43934973069118, 34.681101112853526], [-77.43971163992926, 34.68108466520854], [-77.43983220667221, 34.68108168700722], [-77.4403942201155, 34.68131300104502], [-77.44041460768972, 34.68132098932555], [-77.4404277197495, 34.68136775746409], [-77.4405925384564, 34.68195171337586], [-77.4406155536538, 34.68212990764799], [-77.44049048197431, 34.682965727720116], [-77.44048390013532, 34.68303180759499], [-77.4404836887725, 34.683077771174425], [-77.4403221835612, 34.6835343043104], [-77.44032978701196, 34.68358842764814], [-77.44035132344621, 34.683717930290705], [-77.44036106337711, 34.683798573316274], [-77.44037206337747, 34.68383126417618], [-77.44046730087149, 34.68397742428822], [-77.44079512735723, 34.684211354779706], [-77.44081146750688, 34.68398489563635], [-77.44083819135159, 34.68390789928685], [-77.44086318432164, 34.683812151291626], [-77.44087297106684, 34.68372688026147], [-77.44086837826788, 34.68358339640243], [-77.44087598076933, 34.683360402338195], [-77.44063446370933, 34.6830844506325], [-77.44062211987323, 34.68301997862858], [-77.44095682747746, 34.68223259580542], [-77.44106775885344, 34.682117870765545], [-77.44139252946039, 34.68180552704941], [-77.4415313765293, 34.68167633534336], [-77.44200270751305, 34.68132668916583], [-77.44241401644642, 34.68101660084911], [-77.44281865503658, 34.68078969263844], [-77.44359923770487, 34.6808842053745], [-77.44367324918511, 34.68109356612207], [-77.44373373771968, 34.681372870667374], [-77.44363417040132, 34.681374952092796], [-77.44358356419562, 34.68140373202236], [-77.44321261132173, 34.68143359287387], [-77.44272672221541, 34.681579826613074], [-77.44299491428553, 34.68202934319432], [-77.4429779230115, 34.682226687061245], [-77.44319061341422, 34.68276268332698], [-77.44323020748855, 34.68282392810719], [-77.44365608680178, 34.68302281439303], [-77.44408035809289, 34.68336180234836], [-77.44421849117386, 34.68363985508152], [-77.44445158433753, 34.68345854960131], [-77.44455178083138, 34.68333595538832], [-77.44501773615278, 34.68309173388066], [-77.4451104916112, 34.683040168911106], [-77.44516702818488, 34.68299201738354], [-77.44537558040415, 34.68296215244889], [-77.44555007833202, 34.6830109718434], [-77.44567367778359, 34.6830392086948], [-77.44602854111287, 34.68304530707377], [-77.44633119614808, 34.68298122279164], [-77.44647362146843, 34.68288976394172], [-77.44677715227154, 34.68277353568348], [-77.4470359745246, 34.682759763962146], [-77.44734637111029, 34.68263583744246], [-77.44756648588267, 34.68256831939861], [-77.44774818369193, 34.682512584690826], [-77.44835654185466, 34.682429945511], [-77.44839440366664, 34.682426158335744], [-77.44841857827929, 34.68241002676251], [-77.44861443718894, 34.68236146677698], [-77.44924574607384, 34.68232227508719], [-77.44966725527752, 34.68252352075142], [-77.44971276385706, 34.6827956822868], [-77.44982582990886, 34.68294354893835], [-77.45010027867241, 34.68324208935048], [-77.45036481007384, 34.6834034249217], [-77.45037232373092, 34.6834092750556], [-77.45037890587622, 34.68341036519063], [-77.45067144990355, 34.68348277851859], [-77.45086497576033, 34.68347320009578], [-77.45112262866546, 34.68339683702423], [-77.45125353240417, 34.68336059890575], [-77.45138683792351, 34.68322455997384], [-77.45160255671625, 34.68318339814144], [-77.45209968106728, 34.68297512384338], [-77.45243668469878, 34.683443907828604], [-77.45259064092762, 34.683493323468134], [-77.45273974726624, 34.68354656960311], [-77.45287974823611, 34.68360149160791], [-77.45309233843692, 34.68361653406636], [-77.4531965621052, 34.68361380292416], [-77.45323722992259, 34.68361194892134], [-77.45329647675904, 34.68359764430392], [-77.45341673019068, 34.68353149963711], [-77.45347127437788, 34.68345828637432], [-77.45349006467342, 34.683385803401215], [-77.45334117890403, 34.6831134597058], [-77.45331407974376, 34.68307750114154], [-77.45329038757168, 34.68303651044857], [-77.45329058055816, 34.682951624455775], [-77.4531400654839, 34.682424963864065], [-77.45311134601505, 34.682269302754044], [-77.45310046648142, 34.682131620365794], [-77.45310329170542, 34.681898094465694], [-77.45310541086593, 34.68185384539415], [-77.4530858237161, 34.68178011737068], [-77.45285774406494, 34.68148234850652], [-77.45264745536416, 34.68107999176067], [-77.45241036044982, 34.68077632245157], [-77.45167199390778, 34.68023479803982], [-77.45164742565385, 34.68020624767097], [-77.45163524688377, 34.680191655442556], [-77.45144528771293, 34.67959253200232], [-77.45143190967836, 34.68015087643237], [-77.45126034132778, 34.68036372424983], [-77.45090236595182, 34.68054416104237], [-77.45079205799475, 34.68055928048243], [-77.45021619306374, 34.680624558800375], [-77.44988137461634, 34.680370781555844], [-77.44909533645186, 34.680452133040916], [-77.44898755244913, 34.680441856667784], [-77.44895397660919, 34.680433995006005], [-77.44888740787229, 34.68037944707801], [-77.44901051221112, 34.680362433172654], [-77.44961258859914, 34.67993153291734], [-77.45008671292172, 34.6796806529816], [-77.4510578528222, 34.678897231948284], [-77.45115805823382, 34.678816397081114], [-77.45121905976427, 34.678767186450315], [-77.4514699079019, 34.678564821935545], [-77.45165915358804, 34.6783721819978], [-77.45187647069626, 34.67806805936978], [-77.4519751786725, 34.67789726641579], [-77.45199036995498, 34.67786858444461], [-77.45200172225906, 34.67778340811141], [-77.45200672146139, 34.677254924611695], [-77.4520893116646, 34.67712621342574], [-77.45218361329452, 34.67677833776064], [-77.45220273447687, 34.67670406755156], [-77.45205576516517, 34.6763972504823], [-77.45217814886001, 34.67587058057319], [-77.4521709326312, 34.67562590088659], [-77.45222141355295, 34.67547184407987], [-77.45398252664089, 34.67363248808811], [-77.45401310839843, 34.67360448537429], [-77.45403954310044, 34.673616236149016], [-77.45404685565234, 34.673632456189054], [-77.45535647396298, 34.67471790004688], [-77.455808363826, 34.67509242940443], [-77.45660503741365, 34.675765370606975], [-77.4566702595097, 34.67582046325424], [-77.45669131626326, 34.67584241653432], [-77.45674385266051, 34.67705261210571], [-77.45675880939957, 34.67727228743016], [-77.45656517147034, 34.67782554360883], [-77.45682029883349, 34.67831805341009], [-77.4569460268579, 34.67869598714275], [-77.45710864837937, 34.678990405059565], [-77.45756531968752, 34.67981715754522], [-77.45772608444652, 34.67995069581952], [-77.45778631214708, 34.679991310022366], [-77.45789378790609, 34.68008299755138], [-77.45907890539705, 34.68104212484693], [-77.45934774412851, 34.68174128920341], [-77.46009699779333, 34.68317931811139], [-77.45982700602679, 34.68392890311369], [-77.45917227333548, 34.686581676672944], [-77.45900265835706, 34.68726881445456], [-77.4587803187745, 34.68793761688903], [-77.45814349251911, 34.690880306275794], [-77.45746501118613, 34.691203413405795], [-77.45688472289999, 34.69230080076707], [-77.45843404237345, 34.69209701956258], [-77.45910018867272, 34.69244314301986], [-77.46191811227496, 34.69377025374689], [-77.46286434977388, 34.69450601252729], [-77.46448314561074, 34.69627056117914], [-77.46478935542044, 34.696715054193525], [-77.46621552625494, 34.698732496857154], [-77.46642257645746, 34.699032174330284], [-77.46660361687704, 34.6993077188029], [-77.46702343718937, 34.699405544496194], [-77.46889753374411, 34.699784260583705], [-77.46902836671815, 34.69978749988142], [-77.46935923305945, 34.69983058862157], [-77.47094170825892, 34.69982604819106], [-77.47156947535757, 34.69986445692836], [-77.47239125938319, 34.70011073244993], [-77.47419731744239, 34.70152027552736], [-77.4754676396275, 34.70239737941557], [-77.474255779109, 34.70601227157815], [-77.47427645672494, 34.70646680815869], [-77.47424142721566, 34.70824305258165], [-77.47419816566165, 34.708513584771524], [-77.47485702981426, 34.70920738906919], [-77.47515180317474, 34.709649749091184], [-77.47522908187734, 34.709640695467264], [-77.47642362846372, 34.709684284744725], [-77.47729951882312, 34.71020615276259], [-77.47748668273474, 34.708697606443806], [-77.47748669802566, 34.707140467607715], [-77.47748665626355, 34.70600344525822], [-77.4774105015742, 34.705157580490535], [-77.4774866228233, 34.70453473242418], [-77.47871877014941, 34.70461101730427], [-77.48042174595446, 34.7047164432889], [-77.4809558222307, 34.704221396988515], [-77.48529571750902, 34.705395440310376], [-77.4853449970079, 34.70540964062011], [-77.48534806575336, 34.70541094246236], [-77.4853505701015, 34.70541211189803], [-77.49025252656104, 34.70618115429024], [-77.49153563252202, 34.70639955436018], [-77.49267688273778, 34.70666290728248], [-77.49353878545145, 34.70683111635973], [-77.49516179021404, 34.706934810827526], [-77.49709723455643, 34.70666294261119], [-77.49984525681987, 34.70649872980725], [-77.50042036854767, 34.70647779847534], [-77.50068646384919, 34.706544927363616], [-77.50077998437098, 34.70632860967153], [-77.50350075788575, 34.70516256957951], [-77.50365518575559, 34.705096381672796], [-77.50391117793446, 34.70479911929058], [-77.50540890950572, 34.70347280821423], [-77.50580637087432, 34.70295041912604], [-77.50665790782553, 34.70167316665665], [-77.50719244451986, 34.70077259085805], [-77.50766702857766, 34.70001256735976], [-77.50797215526644, 34.69989628285119], [-77.50887296976934, 34.699872218951754], [-77.50979754817385, 34.70045237529919], [-77.50986551404111, 34.70048864082279], [-77.51008751240865, 34.70063431634408], [-77.51131591856853, 34.70170331330872], [-77.51189530400879, 34.702240670851374], [-77.5142799759112, 34.70482681853558], [-77.51582757346402, 34.70638207085827], [-77.51614709108209, 34.706828069758636], [-77.51840921049875, 34.711561147849835], [-77.51897846028945, 34.71267697847232], [-77.51903947622883, 34.712763623877684], [-77.51908659271085, 34.71286020248846], [-77.52013965778895, 34.71531720856664], [-77.52034812970058, 34.71578893468197], [-77.52065785647677, 34.71630195848938], [-77.52175238999824, 34.71811484219923], [-77.52211507590297, 34.71862263396047], [-77.52261234726942, 34.71841469817233]], [[-77.40327145228879, 34.62381783879289], [-77.40372865531776, 34.62413939735656], [-77.4043784266068, 34.623865576340656], [-77.40679244803644, 34.62291427580354], [-77.40620983806195, 34.62459982731855], [-77.40670779229748, 34.626037991431], [-77.40669795038912, 34.62622770287642], [-77.40670532451331, 34.626417613549485], [-77.40688266922398, 34.62651616757689], [-77.40784542713217, 34.627098905817654], [-77.40845971946983, 34.62748673648665], [-77.40884826709187, 34.62719722469544], [-77.41003656939658, 34.62661113477412], [-77.41048554936741, 34.62568110642544], [-77.41030922654353, 34.62541274017411], [-77.41003641127907, 34.62537600005906], [-77.4095648963481, 34.62462338117827], [-77.40863625513421, 34.62444017169508], [-77.40845938406537, 34.62439701251066], [-77.40829127821407, 34.624480529908745], [-77.40816614303839, 34.62431753087719], [-77.40729618550215, 34.62319043380581], [-77.40691776260395, 34.62279937099912], [-77.40690084109171, 34.62278188425158], [-77.40688233620267, 34.62276276039633], [-77.40547576983171, 34.62130913724121], [-77.4068820522447, 34.61946297175634], [-77.40689474890038, 34.61941975452879], [-77.40697372827358, 34.619394677980814], [-77.40700930327493, 34.61925246746768], [-77.40724689284448, 34.618506103788974], [-77.40688196814635, 34.61846762818067], [-77.40631495317936, 34.618402138026475], [-77.40567473775505, 34.61788381541702], [-77.40548680330707, 34.61771525366124], [-77.40530511060383, 34.61747470156294], [-77.40476206336405, 34.617166357079284], [-77.40461124620896, 34.61708628630595], [-77.40451669642698, 34.616992101251896], [-77.40441899997654, 34.61711062360108], [-77.40434815031708, 34.61722607992645], [-77.40372834747612, 34.61774929737667], [-77.40351107368032, 34.61796197761626], [-77.40310163591111, 34.618080952169066], [-77.40293996794219, 34.618062001075], [-77.40248847762146, 34.61798066798509], [-77.40225723138282, 34.617527752150686], [-77.40215155629689, 34.61740977005183], [-77.40164764275386, 34.61730929090269], [-77.40088948714369, 34.616875916779726], [-77.4013071394167, 34.61602684188563], [-77.40118937417601, 34.61598350839507], [-77.40057476811985, 34.61580180222876], [-77.40050663587981, 34.616008613488454], [-77.40050404679555, 34.61608237271246], [-77.40036423461179, 34.616724919875146], [-77.39997002132102, 34.61700855419468], [-77.39978639042315, 34.617457244668174], [-77.39910591961251, 34.617133197413736], [-77.3990075986397, 34.61713704591783], [-77.39899800440315, 34.61713164151493], [-77.39830288821604, 34.616399880331805], [-77.39822929783767, 34.61638931460692], [-77.39820963425548, 34.616344478920446], [-77.39786491980115, 34.61603847820149], [-77.39782831596136, 34.61602990290067], [-77.39767509283097, 34.61591467460024], [-77.39758560784064, 34.61632631501768], [-77.39769440050344, 34.616487644363716], [-77.39799943043576, 34.616670044357406], [-77.39820962173185, 34.616933575677194], [-77.39884406578378, 34.61717096735541], [-77.39895388280704, 34.61720264806366], [-77.39899800398423, 34.6171680890051], [-77.39968445177253, 34.61789889398008], [-77.39899798833127, 34.61859831451736], [-77.39863916744504, 34.618436137329], [-77.39852470831914, 34.618405573314284], [-77.39820959262863, 34.618342519238105], [-77.39805788143133, 34.61829691068494], [-77.3978655428409, 34.61821526048915], [-77.39798454731269, 34.61838647018793], [-77.39793596108422, 34.618575666285096], [-77.39801248474683, 34.61871083737975], [-77.39808786303813, 34.61868485812945], [-77.3982095841061, 34.618769576317], [-77.39849834068498, 34.61860812362744], [-77.39852064856203, 34.61891590720573], [-77.39887028552478, 34.61900301257284], [-77.39899798334085, 34.61908351946706], [-77.39952127727582, 34.61962072376417], [-77.39907167905305, 34.620455333133634], [-77.39907103217969, 34.620534813434794], [-77.39903470447094, 34.62057961827421], [-77.39899796874812, 34.62060771386076], [-77.39895521579324, 34.620597564590824], [-77.39839287155726, 34.620830073871105], [-77.39820954428598, 34.620860842267035], [-77.39791501679105, 34.621126121207716], [-77.39820953793324, 34.621210631391534], [-77.39848243435112, 34.62117494226124], [-77.39867820362369, 34.6214406187232], [-77.39883838191835, 34.621589382857486], [-77.39881130035326, 34.62184599497378], [-77.39899795667978, 34.62203078112253], [-77.39909086057786, 34.62213018687639], [-77.39939203511642, 34.62218665706459], [-77.39939217269588, 34.622186506280244], [-77.39939271442216, 34.62218670725515], [-77.39972693021569, 34.62220253794305], [-77.39978638994292, 34.6222100744259], [-77.40045199833537, 34.62216619509587], [-77.40057482532737, 34.62229095120233], [-77.40172497861484, 34.62230984781336], [-77.40328251947602, 34.623323878606904]], [[-77.34428709917833, 34.764470459200595], [-77.34442285942956, 34.76293819581621], [-77.34429311260264, 34.76288914207578], [-77.3442199367488, 34.762858181957434], [-77.3434999001926, 34.76209002410825], [-77.3433922963053, 34.76200503796294], [-77.34336782885691, 34.76166738074016], [-77.343333963585, 34.76162540596924], [-77.34309153013508, 34.76144793673075], [-77.34309926809283, 34.76141390431941], [-77.34287366712974, 34.76130633292999], [-77.34256061013366, 34.76148777430792], [-77.34254935401992, 34.761519602417565], [-77.34242997452884, 34.761749376244055], [-77.34215552611832, 34.7621675760919], [-77.34212265053705, 34.762278895546714], [-77.34203460000997, 34.76234023350485], [-77.34194603579928, 34.76243658430891], [-77.34150241031693, 34.762851322223945], [-77.34136081820606, 34.763019998434814], [-77.34103445159718, 34.763402863056996], [-77.34077058113314, 34.763773777566826], [-77.34055224981715, 34.76418852821094], [-77.34043409904132, 34.764459931256724], [-77.34036324018435, 34.76468958052145], [-77.34037483548758, 34.7647190880882], [-77.34054454513144, 34.764932162040644], [-77.3405714761898, 34.764962077891184], [-77.34095852809095, 34.76536277254754], [-77.3409945395696, 34.765425163478525], [-77.34105537585944, 34.76550060886851], [-77.34143262576097, 34.76587670180963], [-77.3415079898027, 34.766004657122565], [-77.34188274508472, 34.76603557913756], [-77.34211018068044, 34.76599414931501], [-77.3425023320639, 34.76584264828143], [-77.34340400178235, 34.76566540853717], [-77.34427818403218, 34.76560418072703]], [[-77.45886911151847, 34.50783406850342], [-77.46011949292989, 34.50811392684543], [-77.46070597111157, 34.50823909355479], [-77.4608798580178, 34.50821664468137], [-77.46090911218558, 34.50813296363645], [-77.46100601331729, 34.50785578456196], [-77.4610305762169, 34.507695819650124], [-77.4610243583197, 34.507289839096515], [-77.46081425533265, 34.507170534970506], [-77.46071112138873, 34.50667057541348], [-77.46068879569582, 34.50634176737766], [-77.46056759167912, 34.505806984417646], [-77.46064834928545, 34.50513754803892], [-77.46064813677485, 34.50513556056347], [-77.46065027390456, 34.505135006358955], [-77.46065146681805, 34.50513453688401], [-77.46067279769638, 34.50512477457673], [-77.46184845827429, 34.50458672104119], [-77.4619059017425, 34.504556811085294], [-77.46194211737762, 34.50452573437712], [-77.4622448308696, 34.50430342998391], [-77.46281559011034, 34.50389455615191], [-77.46288028019444, 34.50384201479427], [-77.46296575805113, 34.5037476036366], [-77.46334485761834, 34.50324590379556], [-77.46359502645669, 34.503001120338034], [-77.46364517204466, 34.50278883811494], [-77.46370907625504, 34.50258887635329], [-77.46373297323578, 34.502474102206875], [-77.46376537798537, 34.50194310428002], [-77.46376295862692, 34.50191609873468], [-77.46372675367994, 34.5018770654183], [-77.46369645268048, 34.50149516794003], [-77.46365804692948, 34.50123526206173], [-77.4636536232797, 34.501218572571446], [-77.46361214579059, 34.50118694403132], [-77.46353170184855, 34.50118831284195], [-77.46230581597489, 34.50113989167593], [-77.46225319236794, 34.50114238872], [-77.46222124028776, 34.50114583633229], [-77.4610178448611, 34.501549771257224], [-77.4607207398422, 34.50160505981396], [-77.46061404555988, 34.501756252479446], [-77.45987994375956, 34.50238472814451], [-77.45985954379294, 34.50241802867643], [-77.45930000433877, 34.50304056004909], [-77.4592249178352, 34.503254623062794], [-77.45892842378045, 34.5037588567561], [-77.45776975387955, 34.50431386658988], [-77.45741953062387, 34.504753827301684], [-77.45730275964104, 34.50531960647231], [-77.45734434925446, 34.50564329372564], [-77.45747083016704, 34.50596682322434], [-77.45774052681645, 34.50665670511647], [-77.45799444528333, 34.50702735054888], [-77.45838653106887, 34.5075996747082], [-77.45859901910215, 34.507774016625]], [[-77.39762372641046, 34.54058318603258], [-77.39952836178092, 34.53934698463221], [-77.40048230480885, 34.53901150833219], [-77.40056369226288, 34.53723885373937], [-77.40056894818743, 34.53706718969466], [-77.40064518883746, 34.535414836216056], [-77.40067148720141, 34.53526460342267], [-77.4003607894012, 34.53497954529335], [-77.40022946319773, 34.53476390179791], [-77.4002578400776, 34.534344970783124], [-77.40011887506999, 34.53434459842571], [-77.40010585771297, 34.53435899212094], [-77.40008067633315, 34.53437054527505], [-77.40007595547648, 34.53484106744561], [-77.39932387955997, 34.53478767727374], [-77.39900655075121, 34.53472440611749], [-77.39893221505632, 34.53474889504507], [-77.39885345205606, 34.534743323063196], [-77.39853826444077, 34.534812068876896], [-77.39800311265216, 34.53482651097815], [-77.3977500621229, 34.53495174342069], [-77.39745184837814, 34.53523966479483], [-77.3971775924121, 34.53541838493073], [-77.39694767550836, 34.5357232727842], [-77.39690739112201, 34.53578363477283], [-77.39688677263678, 34.535810891692364], [-77.39660845275546, 34.536134911993955], [-77.39640479115604, 34.536370122221825], [-77.39630626004573, 34.536484609222285], [-77.39613915928301, 34.536767139628786], [-77.39607186471913, 34.5368672696793], [-77.39604151779119, 34.53691221949295], [-77.39593993016813, 34.53704721831657], [-77.39568626066529, 34.53745315765364], [-77.39569777789502, 34.537678637382925], [-77.39533005234647, 34.53783642089857], [-77.39505688057852, 34.53771604835617], [-77.39493947745478, 34.537748535681374], [-77.3948634047745, 34.537769585937504], [-77.39466909392159, 34.53800975593498], [-77.39477587427457, 34.53807420315296], [-77.39531737018919, 34.538401022181674], [-77.39537875373388, 34.538438069846606], [-77.39604956099913, 34.538842925958214], [-77.39608535336583, 34.53886457425479], [-77.39608588579881, 34.538868299765234], [-77.39724334858491, 34.53967679105695]], [[-77.33750439264625, 34.65972888561089], [-77.33746919466662, 34.65966500179942], [-77.33745521823018, 34.65963927854273], [-77.33742153688374, 34.659576043294905], [-77.33726943014287, 34.65950955765569], [-77.3373159242048, 34.65968603172825], [-77.33741753431707, 34.659713866866404], [-77.33746402547669, 34.65978746222743]], [[-77.39628603911777, 34.614992478685345], [-77.39584452548094, 34.615719056183295], [-77.39576177484057, 34.615828106797096], [-77.39562457332185, 34.61593701660737], [-77.39577849164465, 34.61598592838263], [-77.39584451257659, 34.615974987590114], [-77.39597345512178, 34.61602558538916], [-77.39667389225835, 34.61578568309879], [-77.39722916577767, 34.61549867483005], [-77.39677515125983, 34.614921937725235], [-77.39674931745401, 34.61480031153327], [-77.39669324738017, 34.614509178777745], [-77.39669854018469, 34.614437771424555], [-77.39663296028607, 34.614263377721656], [-77.39638528559038, 34.61439578583159], [-77.39623877014913, 34.61447411394031], [-77.3961893467786, 34.61452862155859], [-77.39619221162849, 34.61463157933643]], [[-77.386269043826, 34.594359245829516], [-77.38631968413358, 34.59427868030088], [-77.38638771055349, 34.594162515494084], [-77.38653739144247, 34.593632581208105], [-77.38662827900308, 34.593458323152724], [-77.38697120544515, 34.59318819294478], [-77.38717608167649, 34.59300725805614], [-77.38724125052184, 34.592945385087965], [-77.38739543052151, 34.59273485733075], [-77.38743690112116, 34.5927048939846], [-77.38747475851656, 34.592590012470154], [-77.38749790593765, 34.592483814897015], [-77.38757027840877, 34.592315043444216], [-77.38762033144913, 34.59209548282182], [-77.38764459339498, 34.59203809869301], [-77.3877486897289, 34.59183096153399], [-77.38757037465234, 34.59173827514552], [-77.38751918811089, 34.59163161166922], [-77.3872802891084, 34.59155405190041], [-77.38717638403267, 34.59124486332968], [-77.38691638961616, 34.591149512964805], [-77.38638825502844, 34.59114774883231], [-77.38623812080436, 34.59112892463275], [-77.385991856182, 34.59100267193607], [-77.38573920133838, 34.59088929263226], [-77.38560017371246, 34.59080929655888], [-77.38521401224584, 34.59069873932707], [-77.38541221407826, 34.591086233984406], [-77.38546642059632, 34.59122243702239], [-77.38546847354493, 34.59150269041209], [-77.38560001233337, 34.59165385965286], [-77.38569577792681, 34.59179128534996], [-77.38575301431652, 34.59188623758813], [-77.38578758677295, 34.59208342814058], [-77.38561956971287, 34.59273331609988], [-77.38562257304862, 34.59275417498452], [-77.38561090096727, 34.59276781708354], [-77.38559979808441, 34.59277923554776], [-77.38525657748416, 34.59328640242422], [-77.38511124364564, 34.593354112622364], [-77.38481148862725, 34.59352109531681], [-77.3841467828039, 34.59296691278233], [-77.38407441892755, 34.59292242602344], [-77.38402345185196, 34.59288662296824], [-77.38387090578328, 34.59274649155247], [-77.38368969162919, 34.592673172948516], [-77.38362941257239, 34.592688233488865], [-77.3835778508683, 34.59267990726995], [-77.38323531867559, 34.59274848846582], [-77.38295952237911, 34.59258608371681], [-77.38284132307245, 34.592364984426986], [-77.3826855607141, 34.59232840269247], [-77.3824825879498, 34.59231959034526], [-77.38244728514994, 34.59218314174511], [-77.38223048308237, 34.592160413972096], [-77.38184292797854, 34.59225181473041], [-77.38165916144703, 34.592041815919], [-77.38153155043153, 34.591783149688744], [-77.38152442190218, 34.5916466278985], [-77.3812651932644, 34.59158854263038], [-77.38115740435526, 34.5916995237665], [-77.38101272173418, 34.59187301081076], [-77.38103032491053, 34.59197077665843], [-77.3811868529006, 34.59211984374359], [-77.38121256396764, 34.59217268587218], [-77.38160258798116, 34.59248449085231], [-77.38162110756514, 34.59252269566359], [-77.38165902640813, 34.59261011041959], [-77.38193677656352, 34.59328545412767], [-77.38192795520624, 34.59384580947461], [-77.38211835794164, 34.59410841086582], [-77.38196268324855, 34.59445845774298], [-77.38175871180354, 34.59500937572384], [-77.38167265235239, 34.595855402299605], [-77.38166814270944, 34.59587155766819], [-77.38166690262901, 34.59588105380094], [-77.38165825037271, 34.595895698911875], [-77.38093738121064, 34.596898791896656], [-77.38081836726708, 34.59689857409325], [-77.38008153792151, 34.59718448696945], [-77.37975047014531, 34.597489597841474], [-77.37929315720939, 34.597852295370856], [-77.37922973554154, 34.59792120965635], [-77.37898639381523, 34.59847510591959], [-77.37890779930709, 34.59881672469339], [-77.37897608221161, 34.59914809405215], [-77.37929276773595, 34.59934212077019], [-77.37949864150218, 34.59958071270981], [-77.37969972102083, 34.59996229767631], [-77.37970212089446, 34.59997595523333], [-77.37970871688768, 34.59999870887929], [-77.3798614993941, 34.600189210187196], [-77.37998338453374, 34.600255085639915], [-77.38008075609862, 34.600288110778195], [-77.38010602039682, 34.600315092998706], [-77.3802108802628, 34.60032720568471], [-77.38027780358561, 34.6003331691866], [-77.38044628827971, 34.60032406620674], [-77.38047486465528, 34.60032383235508], [-77.38075262284221, 34.600249137481974], [-77.38077503531699, 34.6001446562305], [-77.38075223891981, 34.599824629059455], [-77.3808358774603, 34.59942390874999], [-77.38084181361148, 34.59938715680606], [-77.38086921914494, 34.599342869647046], [-77.38124955403367, 34.59888887188221], [-77.38165766287537, 34.598406226737666], [-77.38214030238815, 34.59868001683328], [-77.38244584872423, 34.598540957611746], [-77.3832309517592, 34.599039594514444], [-77.3832339589865, 34.59904020300426], [-77.38323551658817, 34.599040498307474], [-77.38323583961443, 34.599042129800395], [-77.38366926619199, 34.599359772486494], [-77.38369363161283, 34.599471436888834], [-77.38375018981446, 34.59981712570897], [-77.3837721749733, 34.60008304830202], [-77.38379460130687, 34.60023528983006], [-77.3838551215531, 34.60040623226094], [-77.38402191553564, 34.60033995188388], [-77.38413634603913, 34.60048729465345], [-77.38422972938898, 34.600597137997354], [-77.38435659944142, 34.60064281083493], [-77.38441596996937, 34.60065401350128], [-77.38450642872702, 34.60067208714538], [-77.384525362773, 34.60067237392232], [-77.3846130405146, 34.60059577897608], [-77.38467145195231, 34.60053346879682], [-77.38471482539805, 34.600424546273125], [-77.38481017914509, 34.60018508522438], [-77.3851046996487, 34.600046453265676], [-77.38518759437366, 34.600016478949044], [-77.38523196721644, 34.59999833602244], [-77.38559849069267, 34.599753675404386], [-77.38590811361126, 34.60002160901796], [-77.38599254236354, 34.60009812702555], [-77.38623739250039, 34.60030774240906], [-77.38632119611279, 34.600366130071976], [-77.3863865971413, 34.60044366442853], [-77.38651543492985, 34.600553415384326], [-77.38658361565712, 34.600674916712904], [-77.38659988546694, 34.60068005392351], [-77.38675396886228, 34.60068660843011], [-77.38678067241332, 34.600687902105044], [-77.38681488715856, 34.600685917368594], [-77.3871748333029, 34.60042853301081], [-77.38749060796283, 34.60046725836218], [-77.38771927823538, 34.600356748747394], [-77.3879631009489, 34.60020749287523], [-77.38804205413939, 34.60013261979605], [-77.38856746306492, 34.599971829277344], [-77.3887112801118, 34.59990790086125], [-77.38875137709486, 34.59989852987734], [-77.388801316313, 34.59988431762603], [-77.38939667421278, 34.599698270106096], [-77.38953965503073, 34.59953286946826], [-77.38979707302931, 34.59951723341861], [-77.39032789760067, 34.59938647853964], [-77.3908272502126, 34.599334801449295], [-77.39111613143497, 34.59928769250215], [-77.39126278018394, 34.599425202303394], [-77.39154583340601, 34.599542386400884], [-77.39178356089661, 34.59963819071004], [-77.39190430599831, 34.599709948887195], [-77.39228177982125, 34.599842921669], [-77.39230710459036, 34.59984780589746], [-77.39269251066023, 34.59990937746672], [-77.39333042136224, 34.600134176032775], [-77.39342953949104, 34.60017500957169], [-77.39348071011858, 34.600204296847615], [-77.39375004584033, 34.600363823576046], [-77.39387480451992, 34.60043802042427], [-77.39389711370379, 34.60045298594908], [-77.39421385988369, 34.60037201871102], [-77.3942689246702, 34.60037836203439], [-77.3942994699743, 34.60038608607834], [-77.39440865743873, 34.60034148745485], [-77.39446598992043, 34.60027927472644], [-77.3945211347927, 34.60023414033333], [-77.39466306641698, 34.60002580256289], [-77.39480757223848, 34.599921140523335], [-77.39489871814263, 34.59973726382512], [-77.39505721290416, 34.59956117374332], [-77.39529924077802, 34.599589490834944], [-77.39551261629654, 34.59946090285451], [-77.39584544221181, 34.59944082399601], [-77.39592852258144, 34.59942439269724], [-77.39604249883455, 34.59941586726326], [-77.39621019138444, 34.599325902145175], [-77.39623955997557, 34.59931013651266], [-77.39625209741651, 34.59930172602968], [-77.39626851216772, 34.59928585239773], [-77.39646546776521, 34.599076226608155], [-77.39663369301662, 34.59886728081008], [-77.39666426493312, 34.598837129448384], [-77.39674557035354, 34.598792467994635], [-77.39705374282926, 34.598351364098406], [-77.39742193085652, 34.598340201541866], [-77.39777557593123, 34.59826290858814], [-77.39781603926744, 34.598246904914774], [-77.39784509975061, 34.59824059570726], [-77.39796845014457, 34.59819149487718], [-77.39800219170014, 34.598174882229365], [-77.3980130950952, 34.59814693037799], [-77.3980765816156, 34.59803199999493], [-77.39813648691754, 34.59782204879838], [-77.39792887380749, 34.59777263109362], [-77.39781605873372, 34.59775557404274], [-77.39748158028654, 34.597772920560224], [-77.39742195806718, 34.59772640904401], [-77.39736168957654, 34.597789524198504], [-77.39672984031206, 34.59794559269791], [-77.39668554087285, 34.598007789496755], [-77.39663373883383, 34.59801083217742], [-77.39660018968974, 34.59800043768392], [-77.39609059967205, 34.598301831378336], [-77.39584551122523, 34.59833943267272], [-77.39563404248938, 34.59833146814935], [-77.39537491900194, 34.59848320860623], [-77.39505727860762, 34.598647683198266], [-77.39479583816032, 34.598792052299736], [-77.39453804497576, 34.59882108423172], [-77.39426905719041, 34.59874331718605], [-77.39423804578274, 34.5987295678831], [-77.39398096331506, 34.59865244473833], [-77.3935101630664, 34.59840997306821], [-77.39349863643594, 34.59839250035238], [-77.39348087451192, 34.59839168628207], [-77.39344300478162, 34.598378860023864], [-77.392899172458, 34.59827562607849], [-77.39269271383468, 34.59788652891062], [-77.39255070470695, 34.597852189457164], [-77.39240735630203, 34.59771987112387], [-77.39252549034701, 34.59752264378491], [-77.39269275778639, 34.597452825830835], [-77.39286260890584, 34.59747123320518], [-77.3934809851485, 34.59718703200218], [-77.39382411094294, 34.59703605183889], [-77.39426920070366, 34.59699972245893], [-77.39502245149338, 34.59653126502383], [-77.39505743349676, 34.59652580959894], [-77.39506962585617, 34.59649990788149], [-77.39507838932347, 34.59648551077064], [-77.39532519613036, 34.596161471492536], [-77.39543754544674, 34.595994030434625], [-77.39545156717797, 34.59599058635033], [-77.39577199797458, 34.59553632355147], [-77.39581153671305, 34.595493821978], [-77.39584569705482, 34.595438316311245], [-77.39616205580205, 34.595055488760934], [-77.3961366817915, 34.59494803456847], [-77.39649125225148, 34.594583431096254], [-77.396095757572, 34.59437115004012], [-77.39584575754638, 34.5945146220572], [-77.39570269065793, 34.59454304491754], [-77.39532793148194, 34.59475123168991], [-77.39514240044124, 34.594869398712845], [-77.39505754827591, 34.59498249868868], [-77.39491370699557, 34.59496594485322], [-77.39426933355716, 34.595408265201506], [-77.39393524212291, 34.59544131674262], [-77.39383232847888, 34.59543774521392], [-77.39348113675356, 34.59555361462674], [-77.39303717162773, 34.59555992008021], [-77.39269296865547, 34.59539031269255], [-77.39233739250267, 34.5951825421252], [-77.39214620817907, 34.594950070751494], [-77.39210647138714, 34.59458389244108], [-77.39210599081915, 34.594366773364925], [-77.39215107562086, 34.59409508668286], [-77.39209844340448, 34.593727159151754], [-77.3920929233599, 34.59351951855593], [-77.39215240288671, 34.59335289720679], [-77.39229911485867, 34.59319648324592], [-77.39237502887175, 34.593136045378], [-77.39241210591896, 34.59304891826569], [-77.39233943215183, 34.59301598350216], [-77.39229913540676, 34.59300853844576], [-77.39221083774936, 34.59298281154314], [-77.39190504676733, 34.59307887444518], [-77.39189438847575, 34.593123579946635], [-77.39187808646258, 34.59315496754244], [-77.39181820237906, 34.593346851604586], [-77.39181602346879, 34.593463587522194], [-77.39181561956617, 34.59355950883378], [-77.39176406572209, 34.5937187513215], [-77.39171187547021, 34.594215634280985], [-77.39166736967049, 34.59443002654019], [-77.39159405523561, 34.59495492145336], [-77.39111663961512, 34.59507398458442], [-77.39096075853118, 34.595213143174384], [-77.3903538457701, 34.595441174239504], [-77.39032840811703, 34.5954555533104], [-77.39031586363593, 34.59546054011968], [-77.38960979319933, 34.595500905897], [-77.38954021882569, 34.59548472564189], [-77.38942540390713, 34.59547875513375], [-77.38914612685656, 34.59547853742856], [-77.38895246800774, 34.59567064021829], [-77.38894806417801, 34.595882528299654], [-77.38875194090573, 34.59609926301209], [-77.38842795291465, 34.59624638595581], [-77.38826035641274, 34.59629998886101], [-77.3880582223183, 34.596224139382755], [-77.38796372853584, 34.596227399383245], [-77.38795074165044, 34.596225644092776], [-77.38783582558106, 34.596256203219866], [-77.38789368752691, 34.59632330088497], [-77.38779781220072, 34.59650755508218], [-77.38781436423858, 34.59668386475914], [-77.38756948960099, 34.59709732599923], [-77.38754989316496, 34.59712545479225], [-77.38751343220918, 34.59715181776933], [-77.38717533346843, 34.59742667250807], [-77.3869123141995, 34.59737968573428], [-77.38669861995645, 34.59735829465365], [-77.38638717965017, 34.597137703388704], [-77.38617323257608, 34.59715093920811], [-77.38593112697167, 34.59695535747549], [-77.38612292629362, 34.59664293115329], [-77.38638731423514, 34.596380164806334], [-77.38645439900708, 34.59610301038252], [-77.38690800762642, 34.59596539791528], [-77.38641189155425, 34.59521404012181], [-77.38638943384811, 34.59519102407312], [-77.38638881506972, 34.595189725035816], [-77.38638753006842, 34.595169734488465]], [[-77.47612400707396, 34.57342317841635], [-77.47621399259916, 34.574232892073134], [-77.47628601025377, 34.574880918595895], [-77.4762957396929, 34.57494812535172], [-77.47630043950701, 34.575036601404925], [-77.4763729296328, 34.5756646517618], [-77.47625983270285, 34.57691564011432], [-77.47635463004457, 34.57738224032217], [-77.47486124937531, 34.57905054352429], [-77.47474415078183, 34.579296202079625], [-77.47467034390897, 34.580129169051155], [-77.47368960002582, 34.580061039654176], [-77.47377306293939, 34.57936122281737], [-77.4737297512698, 34.57894133865888], [-77.47231722303032, 34.576822596579746], [-77.47157583075514, 34.575710454391704], [-77.47148997070974, 34.57558166254157], [-77.47304586211656, 34.57419962816052], [-77.47358495796306, 34.57393599438084], [-77.47349536937016, 34.57353199148718], [-77.47368232775125, 34.57275283812425], [-77.47407513200804, 34.57163012750071], [-77.4753672547823, 34.57069070800556], [-77.4753036158695, 34.572059909954696], [-77.47593149554271, 34.57283641500396]], [[-77.33866549222302, 34.691538329640295], [-77.33860538407524, 34.69150014917028], [-77.33848964350717, 34.6916204231203], [-77.33850738189669, 34.69165997645497], [-77.33851851129373, 34.69179917680615], [-77.33868921858887, 34.692308368793206], [-77.3385739167392, 34.69258361272472], [-77.33849724354707, 34.692817737971446], [-77.33819076356085, 34.692927308856284], [-77.33795010755287, 34.6931565612738], [-77.33779021359186, 34.693394175128695], [-77.33776194960987, 34.69342605950572], [-77.33801234267007, 34.69354143481004], [-77.33816239032302, 34.693501984740294], [-77.33858935628344, 34.69353778648339], [-77.33861851016512, 34.69351547509714], [-77.33897577625311, 34.69324205985599], [-77.33899467839449, 34.69301326619255], [-77.33923211327946, 34.69283099053291], [-77.33935623777583, 34.692583477536175], [-77.33940430982452, 34.692469694914124], [-77.33942198418669, 34.69236098617604], [-77.33965808235993, 34.69195709325177], [-77.33964015141358, 34.69194996412801], [-77.33932032763524, 34.69182280665546], [-77.33872879127743, 34.69158761609733]], [[-77.32975733951211, 34.68898886825342], [-77.3298590197187, 34.69043065335373], [-77.33156881709544, 34.69050400926915], [-77.33150953954515, 34.68965353589284], [-77.33117300413565, 34.68941984919746], [-77.33132374104028, 34.68870427200686], [-77.33164809671392, 34.6882661268971], [-77.33167805584912, 34.688047207540315], [-77.3315331821865, 34.68770081016049], [-77.33151708436534, 34.68757867109268], [-77.33140250224392, 34.68744741854557], [-77.33119553164644, 34.687037800277004], [-77.33094663770315, 34.686956269892825], [-77.33087816448005, 34.68688783254049], [-77.3306624981012, 34.68684546181167], [-77.33046645393041, 34.68681044092313], [-77.33039369130213, 34.68679920130966], [-77.33022022499613, 34.68675422970965], [-77.33004983901338, 34.68692946849325], [-77.33005441656847, 34.687127415648234], [-77.32986201351451, 34.68744259342736], [-77.32984562908804, 34.68769885359085], [-77.32965026467994, 34.68795899606188], [-77.3297572660097, 34.688897351633386], [-77.32968522643225, 34.688928942977896]], [[-77.45356460465128, 34.74182715481557], [-77.45359237599268, 34.74189060516858], [-77.45373108457618, 34.74197332340454], [-77.45422204962264, 34.74214362729931], [-77.45428769970073, 34.74213464729119], [-77.45440080451297, 34.74211917581296], [-77.4546966237845, 34.74205484255329], [-77.45489170476165, 34.74204518645735], [-77.45502590043412, 34.74218518392471], [-77.45516642606951, 34.742203819804224], [-77.4552688380215, 34.742307009355784], [-77.45529388075317, 34.742317393897885], [-77.4553225230596, 34.742329271035544], [-77.45546932669683, 34.74226500619425], [-77.45565216751596, 34.74227667438267], [-77.45566517781778, 34.74214127516636], [-77.45567815146495, 34.74200625506622], [-77.4556874905027, 34.74190905469735], [-77.45574483734387, 34.74131222509549], [-77.45577686852964, 34.7409788690503], [-77.45578208561322, 34.7409245782364], [-77.45575773911446, 34.74079758362413], [-77.45571963316048, 34.739784790714765], [-77.45583449540521, 34.7391690430242], [-77.45515502501485, 34.73891726879144], [-77.45479032785316, 34.73921815614196], [-77.45473343468562, 34.7394403924685], [-77.45461431293273, 34.739678333542905], [-77.45423180000877, 34.740383185242685], [-77.45387680472466, 34.74071637391296], [-77.45381883876377, 34.74079795858644], [-77.45376373694525, 34.74092621301613], [-77.45355339709752, 34.74126424912007], [-77.45347922700442, 34.741491392343434], [-77.45347147420463, 34.74151513532076], [-77.45350998103484, 34.741612337658765]], [[-77.32104527489997, 34.756022254906426], [-77.32114580993125, 34.756246228303056], [-77.32123216341962, 34.75636919173887], [-77.32159064710666, 34.75669253728208], [-77.32199026365346, 34.75689266648276], [-77.3222679012427, 34.756960219018524], [-77.32311944087515, 34.75707161241838], [-77.32313611613269, 34.75707265315091], [-77.3231587261701, 34.757063754967575], [-77.32445473824382, 34.75665867965675], [-77.32621545471797, 34.755686565037706], [-77.32506635959359, 34.75455597224011], [-77.32465433156034, 34.75433779295797], [-77.32457782962769, 34.75396145711883], [-77.32497181425879, 34.75360571140867], [-77.32513959775694, 34.753176585381446], [-77.32515522634627, 34.752907625817144], [-77.3249074292678, 34.75256682377299], [-77.32483296575299, 34.75246440987582], [-77.3247236103264, 34.75231400861219], [-77.32453385040432, 34.75226749964299], [-77.32411083279793, 34.75256333669781], [-77.32389926628244, 34.75265516116296], [-77.3237963748755, 34.752743327130275], [-77.32349222503078, 34.753135442629485], [-77.3233726443293, 34.75335240737748], [-77.32334830042336, 34.7533988405082], [-77.32333717066487, 34.753433885794465], [-77.32325918883296, 34.753654729119035], [-77.32318373926552, 34.753891704501854], [-77.32311383973513, 34.75416200364371], [-77.32305263335525, 34.75445860744405], [-77.3226351214102, 34.75467593603922], [-77.32207472946857, 34.754744090245694], [-77.32200726273284, 34.75477483466852], [-77.32197954647691, 34.75478446964062], [-77.32188333771234, 34.75481791437102], [-77.32167353946257, 34.75489232063993], [-77.32158914590755, 34.754920252932095], [-77.32146563565237, 34.75496745890901], [-77.3213289705254, 34.75504708341762], [-77.32121191771273, 34.75515355718836], [-77.32115759524918, 34.75533290886408], [-77.32113136215969, 34.7554082717616], [-77.32111175363691, 34.75548421118179], [-77.32105076311392, 34.7559066741269]], [[-77.4199371014384, 34.525695312059405], [-77.42029475087365, 34.52632219299683], [-77.42041691642952, 34.52653631715481], [-77.42066583276666, 34.52697260205409], [-77.41990860305219, 34.52698058513892], [-77.41943633550284, 34.52716772501346], [-77.41990437780994, 34.52717114416639], [-77.42005490934412, 34.52717224310378], [-77.42066678998702, 34.52700624853078], [-77.42069275672725, 34.527018020883226], [-77.42077867488615, 34.527162957589034], [-77.42090353697711, 34.52708812599378], [-77.42093413743727, 34.52704513637819], [-77.42070782945306, 34.526983955702924], [-77.42071111695265, 34.526972654318875], [-77.4208670007605, 34.526573819283264], [-77.42079980257982, 34.526480976678094], [-77.42087889586178, 34.52608304977914], [-77.42151302559262, 34.525425299353195], [-77.42152307217168, 34.52540302301875], [-77.42152614340507, 34.52539661957626], [-77.42162071244157, 34.52531726418444], [-77.42214568962439, 34.52481737908403], [-77.42222424179997, 34.52475069608328], [-77.42231386807963, 34.52470845575593], [-77.42245220391672, 34.524528228862536], [-77.42255123045868, 34.52441306582222], [-77.42254825205876, 34.52437276474785], [-77.42241230803383, 34.524289152847594], [-77.42237880202967, 34.524259687619896], [-77.42232514192233, 34.5241993686183], [-77.42199029190508, 34.52407113282593], [-77.4215477000096, 34.52386018646292], [-77.42118742970911, 34.523713611896085], [-77.4200872880036, 34.523712109597554], [-77.41997895576516, 34.523807715152024], [-77.4191850689999, 34.52426670871065], [-77.41864101081214, 34.52483423700977], [-77.4190871309311, 34.52530539382503], [-77.41990072633058, 34.52563155403907]], [[-77.32488580919633, 34.64788725777737], [-77.32601258296172, 34.646330345664566], [-77.32601953326608, 34.646043837316846], [-77.32626234513629, 34.645228867038185], [-77.32636753930765, 34.6448512223348], [-77.32653078357008, 34.64428576862977], [-77.32657447102221, 34.644185627588946], [-77.3266178695851, 34.64404603440816], [-77.32681796699812, 34.64340240413224], [-77.32684659569006, 34.64310503821865], [-77.32676134129206, 34.64292412842364], [-77.32668078319497, 34.642950192121404], [-77.3263927744973, 34.64292492216875], [-77.32615604043059, 34.642974329275354], [-77.3260202922414, 34.64300073822653], [-77.32581990205806, 34.64326061641705], [-77.32556324481581, 34.64324127329811], [-77.32518535621651, 34.64328913651369], [-77.32494772800305, 34.643070186268076], [-77.32455305142823, 34.64296523110886], [-77.32448044952719, 34.642967172907646], [-77.32441442224844, 34.64297789800221], [-77.32386642683662, 34.64299136141597], [-77.32385236385437, 34.64302786024013], [-77.32382407250556, 34.64299849555864], [-77.32366900098971, 34.642990235895084], [-77.32320707203418, 34.643002834983925], [-77.32317595223799, 34.64301389250155], [-77.32290521327732, 34.64309387787086], [-77.32290445447977, 34.643095064280885], [-77.32295242843631, 34.64347252296861], [-77.32297063659541, 34.6435397053623], [-77.32316929945473, 34.643902728068184], [-77.32325120739495, 34.64413213604554], [-77.32385267859584, 34.64465300495506], [-77.3239961095974, 34.64495337796656], [-77.32480755246308, 34.647874509348455], [-77.32463303322442, 34.64792191659708], [-77.32485737181351, 34.648033920538104]], [[-77.38329793119057, 34.629677428307524], [-77.38368036529263, 34.62954673921658], [-77.38401630957905, 34.629383367622495], [-77.38407729741073, 34.62942385775935], [-77.38466873602711, 34.62925774674933], [-77.38480486543347, 34.62910997318494], [-77.38511430450791, 34.62849097420076], [-77.38480498019918, 34.628448503885], [-77.38469522031946, 34.628433165038274], [-77.38441073898761, 34.62840052534205], [-77.38423969366598, 34.62837664858473], [-77.38419678657384, 34.628392788798216], [-77.38401645938325, 34.62856413356981], [-77.38396275425336, 34.62859909068025], [-77.38388079024334, 34.6286687291928], [-77.38322776373835, 34.629576296217365], [-77.38320576360562, 34.62959143866108], [-77.38311911529388, 34.62962761181953], [-77.38308963008652, 34.62978056948132], [-77.3832277451154, 34.629673481490606]], [[-77.46329060676638, 34.58912634393033], [-77.46300029304025, 34.590052083772946], [-77.4628252351545, 34.59061026915538], [-77.46265021227013, 34.59116833399217], [-77.46257086573782, 34.59142131850385], [-77.46266655225708, 34.59171879531485], [-77.46251097173328, 34.59235835077385], [-77.46230144082543, 34.592536050645876], [-77.46199338185728, 34.592542271937326], [-77.46135962024229, 34.592935572458245], [-77.46083710953738, 34.59265459059327], [-77.46077045853372, 34.5922092304303], [-77.46018090799802, 34.592470102343896], [-77.45982410222804, 34.59245236062208], [-77.45965301280404, 34.5924617825997], [-77.4592510038326, 34.59245648434732], [-77.45912572061546, 34.592455661488486], [-77.45907455819433, 34.59245473637424], [-77.45895667854924, 34.592452604709926], [-77.45901826758688, 34.592375049881895], [-77.45907912246514, 34.592285495247225], [-77.45928499427089, 34.591849001604785], [-77.45952233796919, 34.591552669987934], [-77.45966471369096, 34.591362489664924], [-77.46040901247682, 34.59056113021381], [-77.46063405927087, 34.59028619033328], [-77.46242729191702, 34.58985160484234]], [[-77.32875340746138, 34.757288299533435], [-77.32888638890526, 34.75739067041198], [-77.32897942545955, 34.75758047224856], [-77.32924665757756, 34.75739398618392], [-77.32925538250129, 34.75721952101607], [-77.32916701557558, 34.757174963427225], [-77.32910626880522, 34.75714433175024], [-77.32877826578843, 34.75697892954206]], [[-77.394265892056, 34.64849251897099], [-77.39441958259127, 34.648543596896666], [-77.39432916661244, 34.64832304407384], [-77.39426589887633, 34.6483422435928], [-77.3942036548888, 34.64834224230234], [-77.39268852976382, 34.64834221176677], [-77.39118184267575, 34.64876870777125], [-77.39111112200285, 34.648788722689524], [-77.39107292487297, 34.64881942540933], [-77.39101058455992, 34.64886953282048], [-77.39017570457413, 34.649681117112586], [-77.39026742690073, 34.64988489111431], [-77.39071302532466, 34.65018221542687], [-77.39111098991506, 34.65038481614395], [-77.39116988394795, 34.65048143038364], [-77.39129526210732, 34.65052677415174], [-77.39189966477312, 34.650797058459624], [-77.39230246482151, 34.650797070095216], [-77.3926883732515, 34.65079708103691], [-77.39319361959248, 34.65079709036931]], [[-77.39394834319957, 34.5294523376515], [-77.39390947267603, 34.5294100234508], [-77.39335569475436, 34.52958698048943], [-77.39320928249455, 34.529731058460754], [-77.39318461629139, 34.52975210589645], [-77.39325726539946, 34.52990403356617], [-77.39334082310529, 34.5299569112647], [-77.3935430441021, 34.53002104737077], [-77.39383429536207, 34.52994986287167], [-77.39393770487355, 34.52992552004545], [-77.39401421572325, 34.529907205392604], [-77.39426062616948, 34.52982417830354], [-77.39424493697771, 34.529638821474855]], [[-77.34780494735978, 34.758768112009555], [-77.34773814910838, 34.75866350715611], [-77.34779721883068, 34.75857633154421], [-77.34773015721962, 34.758449318736595], [-77.34751780983204, 34.75804456137937], [-77.34744892969321, 34.75764935217332], [-77.34740439436766, 34.75734339253897], [-77.34701824780058, 34.75735223616814], [-77.3466818459353, 34.757520730417696], [-77.34636162026838, 34.75755031320905], [-77.34608115589704, 34.75783697741684], [-77.3458297293724, 34.75804248019793], [-77.34573771237382, 34.7582307882989], [-77.34566551180717, 34.75838136767711], [-77.34561230787986, 34.75848817080188], [-77.34542236102678, 34.758720903123596], [-77.34531838408377, 34.75886609599448], [-77.34527515782406, 34.75892228678089], [-77.34518881425086, 34.75904702438007], [-77.34519756586974, 34.75917661796563], [-77.34514274246669, 34.75927953945583], [-77.34523160898254, 34.75937726540964], [-77.34524821727216, 34.75939552944829], [-77.3452626327478, 34.75941138190687], [-77.34561084940088, 34.759510878895114], [-77.34590757276914, 34.759810296166066], [-77.34614075705194, 34.75989179058116], [-77.34703415382106, 34.76063051846224], [-77.34708729149432, 34.76074072421901], [-77.34717740684779, 34.76092761252444], [-77.3478753612086, 34.76051512140311]], [[-77.45300515886889, 34.61617649132841], [-77.45218376567738, 34.61551263226788], [-77.45096623222548, 34.615571951642266], [-77.451211945598, 34.616079098578034], [-77.45136958742626, 34.616508118505706], [-77.45150297878496, 34.61673461899994], [-77.45134735402713, 34.61694407946313], [-77.45149874604135, 34.61710508671566], [-77.45144082196597, 34.61728647645108], [-77.4514642116362, 34.61730680804924], [-77.45174471395546, 34.61740420024273], [-77.45176536518724, 34.61740889885377], [-77.45224823268279, 34.61726259279176], [-77.45225090132651, 34.617261988382346], [-77.45225449574562, 34.617261445056236], [-77.45304550646357, 34.616323821466715], [-77.45312021460838, 34.61632553348975], [-77.45309261957902, 34.6162301576621]], [[-77.3832250954893, 34.64386207238445], [-77.3827743155255, 34.64374871572552], [-77.3817005248597, 34.64347472512625], [-77.38164788287354, 34.64346117915563], [-77.38161504208763, 34.64346571621205], [-77.3802810865246, 34.64384924395293], [-77.38007048670406, 34.64396095616916], [-77.37928691066321, 34.644609231867854], [-77.37927665122204, 34.64461090633803], [-77.37849313984498, 34.64416881071259], [-77.37837426559558, 34.6440252095598], [-77.3777173203885, 34.64400557607583], [-77.3777045295187, 34.6440043279453], [-77.3776873793319, 34.64401457886308], [-77.37694904680805, 34.644138201457004], [-77.37691582834472, 34.644204123834456], [-77.37635775960975, 34.64503673128429], [-77.37621950967099, 34.64515632623948], [-77.37616061207213, 34.645237136571126], [-77.37611730128037, 34.64549331322165], [-77.37622175466545, 34.64554072793179], [-77.37639698860681, 34.64568387765487], [-77.37642738454481, 34.64568373938236], [-77.3765479977522, 34.64557091339515], [-77.3767886340138, 34.64568726519414], [-77.37691550217079, 34.64547442150581], [-77.37721663924877, 34.64543794643926], [-77.37730985552719, 34.64538894092833], [-77.37734853932479, 34.64536024290111], [-77.37770419801781, 34.64534431828545], [-77.37817377007235, 34.64528073674588], [-77.37849291119903, 34.645129638350205], [-77.37927936290893, 34.64461844330177], [-77.37912747134398, 34.64548694230546], [-77.37928147611925, 34.64554575879559], [-77.37960693706776, 34.645916503585745], [-77.37980496174106, 34.64595307060212], [-77.38007005841283, 34.64591790461679], [-77.38069147402044, 34.64593071107608], [-77.38085871758904, 34.64595383879729], [-77.3809997171121, 34.645914577538036], [-77.38120762975177, 34.64603642800796], [-77.38164735330108, 34.6461096545344], [-77.38225716494865, 34.646077805009796], [-77.38243600757355, 34.646181693357605], [-77.38265274924387, 34.64606157439468], [-77.38322479760188, 34.645507157825406], [-77.38357457267955, 34.645222838608206], [-77.38392651530253, 34.64404033938134]], [[-77.32996478765178, 34.69239458671514], [-77.33044785761038, 34.6920635586108], [-77.33135342933095, 34.69173604717309], [-77.33150113291074, 34.691720825089604], [-77.33141825735689, 34.6916155382877], [-77.33151329294594, 34.69118594570925], [-77.33127157405796, 34.69092050528485], [-77.3298297528639, 34.69151537309954], [-77.32953627506103, 34.69225538547453]], [[-77.380863208155, 34.6251691133501], [-77.38068205047932, 34.62553810917186], [-77.3800746213142, 34.625670517122806], [-77.37985629946098, 34.62561695321733], [-77.3797878703333, 34.62586194061602], [-77.38007453570992, 34.626038793655425], [-77.38034621355536, 34.62633797752675], [-77.3807688553705, 34.6264684371679], [-77.38086294179575, 34.626363107832844], [-77.38132060753682, 34.626133924091306], [-77.38165154742944, 34.62577946758593], [-77.38223904335395, 34.62572522907025], [-77.38244006279636, 34.62558297520728], [-77.38249912376983, 34.62553489819929], [-77.38257707667474, 34.625460072242106], [-77.38249518650188, 34.62541254504639], [-77.38250441850688, 34.624690523951166], [-77.38247939298678, 34.62462501955874], [-77.38246049509891, 34.62460595346004], [-77.38244026785922, 34.62458070880027], [-77.38229308346516, 34.62438585319261], [-77.38224319812883, 34.62435787959106], [-77.38218521251488, 34.62439268691], [-77.38204604401858, 34.62454224189984], [-77.3818129062703, 34.62454756270024], [-77.3816517869006, 34.62466029888847], [-77.38157625443426, 34.62467381039994], [-77.38125754171224, 34.624718391893495], [-77.3809864472365, 34.624840131710215], [-77.38100596494405, 34.624991015774874]], [[-77.37361695331406, 34.54670747194373], [-77.37368606937045, 34.546746666800495], [-77.37373065485698, 34.54686249868198], [-77.37381195828797, 34.546973352406305], [-77.37384464752141, 34.54701792312495], [-77.37392130058156, 34.5471224349373], [-77.37424051218719, 34.54711048401124], [-77.37450745639545, 34.54687311819575], [-77.37460505153504, 34.546791098320945], [-77.37471637641275, 34.546687347280916], [-77.37537863778006, 34.54674755927062], [-77.3754667936389, 34.54675557429147], [-77.3754999759818, 34.546757538986384], [-77.37553170451025, 34.54674510828771], [-77.37568878942191, 34.54670285628279], [-77.37693923819069, 34.54643630742485], [-77.3770794731387, 34.54635572801379], [-77.37807175503534, 34.54599374067828], [-77.37866346029313, 34.54575501540076], [-77.3791401155732, 34.5455199748381], [-77.37945631775538, 34.54541611479215], [-77.37961694818381, 34.54515729880379], [-77.37973642818234, 34.544816631857486], [-77.37999859994066, 34.544612616243384], [-77.38015824888456, 34.54452510390433], [-77.38026452437322, 34.544398938202065], [-77.38044894314106, 34.54416980407898], [-77.38058207446963, 34.544038833167356], [-77.38077928558451, 34.5436992515332], [-77.38090566216108, 34.54350251944596], [-77.38096080251347, 34.54342539371581], [-77.38107542115596, 34.54326203211296], [-77.38130445860062, 34.54295535922321], [-77.38147781627733, 34.54268349114126], [-77.38189118733261, 34.541908914999425], [-77.3818994037697, 34.54189518435644], [-77.38190421855866, 34.541889559573825], [-77.3819033123998, 34.54188250092393], [-77.3820297056871, 34.54138180358215], [-77.38190469866159, 34.54131163340733], [-77.38116089808345, 34.54147893292222], [-77.38105189781541, 34.54148301189735], [-77.38086090913225, 34.54155032820207], [-77.38032451055099, 34.54174936255271], [-77.37999677414896, 34.541963201999764], [-77.38003580089989, 34.5421589510648], [-77.37952175682194, 34.54252686642177], [-77.37937482255818, 34.542654066204975], [-77.37929378059525, 34.54275558864507], [-77.37906032805307, 34.54299778807194], [-77.37898965158789, 34.54312286036089], [-77.3789367875357, 34.54329671439129], [-77.37896520900111, 34.54344820309986], [-77.378698606435, 34.54420388368501], [-77.37857506327636, 34.54425181130125], [-77.37740579689867, 34.54432198810293], [-77.3771247986037, 34.54435699881067], [-77.37701599041739, 34.54448690460523], [-77.3769016296853, 34.54456940753755], [-77.37601250209599, 34.54499220666262], [-77.37562449398294, 34.545243151157266], [-77.37557383307816, 34.54527553656148], [-77.37553289377585, 34.54530714977808], [-77.37528640654592, 34.54563242587658], [-77.37466957186373, 34.545870437506686], [-77.37451111808655, 34.546248719952715], [-77.37394184733742, 34.546217870527016], [-77.37372729830915, 34.54636417314451], [-77.3735686281499, 34.54651876364613], [-77.37355969927467, 34.54653100142193]], [[-77.3544951643866, 34.76444097827633], [-77.3544211499444, 34.76456206987111], [-77.35458233927412, 34.764518179148425], [-77.35569609789786, 34.76459945002891], [-77.35672185344238, 34.76436964880901], [-77.35697987627748, 34.76430486006512], [-77.35718115073443, 34.76426675174607], [-77.35761850679876, 34.764168766420035], [-77.35816852130493, 34.764045538090166], [-77.35825930483666, 34.76402519862721], [-77.35830234370027, 34.763983212699294], [-77.35829736653972, 34.76395880387687], [-77.35829631884627, 34.763947254198946], [-77.35829869010897, 34.76388960645161], [-77.35822194801196, 34.76361022407731], [-77.35830311947149, 34.76347062975542], [-77.35829999402512, 34.76334293796624], [-77.3582635094886, 34.76318403468169], [-77.35822892565506, 34.763098534605994], [-77.35820174183073, 34.76303442572481], [-77.35817904756692, 34.76300027615498], [-77.35812429141458, 34.76289687758983], [-77.35804308149807, 34.76270709944475], [-77.35777295843967, 34.76277285123428], [-77.35787162998544, 34.762325406198045], [-77.35775598056168, 34.76208357885658], [-77.35773207246028, 34.76201584817809], [-77.35767312352996, 34.76191828997552], [-77.3572270716567, 34.76175460940274], [-77.35665512337289, 34.76223467947673], [-77.35626795580359, 34.76263090007933], [-77.35585042899402, 34.76308831347255], [-77.35553017677456, 34.76336383856087]], [[-77.3836362495195, 34.56224652435854], [-77.383791592785, 34.562449375676714], [-77.3840021790093, 34.56244914758254], [-77.38403014033652, 34.562446266368354], [-77.38405602290942, 34.56243914274698], [-77.38481802795854, 34.56239140556912], [-77.3850423166279, 34.5622690386045], [-77.38515884502515, 34.561770271607834], [-77.38560611562355, 34.561387312674206], [-77.38577534388298, 34.56131420601507], [-77.38608329531907, 34.56093485053118], [-77.38570014950524, 34.56037479832755], [-77.3856063260391, 34.5603989341438], [-77.38554662497606, 34.560433716366234], [-77.38525767355264, 34.560539718858195], [-77.38521236088165, 34.5605699258354], [-77.3852005648989, 34.560560669256304], [-77.384893618646, 34.56067327205299], [-77.38481839415384, 34.56074061229228], [-77.38462272083362, 34.56084214023754], [-77.38434247279089, 34.56100794622753], [-77.38418688956463, 34.5611186820545], [-77.38403040040352, 34.56132070277173], [-77.38385630262935, 34.561353975338115], [-77.38382634655888, 34.56137532478946], [-77.38368439969574, 34.56156397780845], [-77.38364823848724, 34.56162091260773], [-77.38363638094057, 34.56168893579277], [-77.38361276519856, 34.56202522653667], [-77.38359717825672, 34.56209498780954]], [[-77.42531324443772, 34.731956419898346], [-77.42521749308328, 34.73203595684157], [-77.42504685274568, 34.732177699930745], [-77.42491398988278, 34.73228789835799], [-77.42475136641141, 34.732319082868926], [-77.42453030397468, 34.73240882035813], [-77.42433352328746, 34.73242693158779], [-77.42409343015422, 34.73244283112424], [-77.42400564604624, 34.732452116754125], [-77.42383826585531, 34.73243077275961], [-77.4237031159085, 34.73238975866614], [-77.42358049178966, 34.7323525453734], [-77.42342962208448, 34.73241612498131], [-77.42338968095575, 34.73241469326387], [-77.4233549720615, 34.73263234817522], [-77.42334389058355, 34.732665692725845], [-77.42333732953992, 34.732703096048816], [-77.42330708586886, 34.732875507953366], [-77.423297688805, 34.73292907876921], [-77.42328634695713, 34.73299373612868], [-77.42326484493775, 34.73311631309737], [-77.42333499245711, 34.73322165530588], [-77.42340131315524, 34.73343207647193], [-77.42368354567645, 34.73334349618816], [-77.42372187302907, 34.73333146691554], [-77.42375394914455, 34.733321399564936], [-77.42397805209194, 34.73326522108857], [-77.4240999295687, 34.73323370456267], [-77.42411650387332, 34.73322842274023], [-77.42413675484681, 34.733222383178244], [-77.42452499389594, 34.733148024987784], [-77.42478614312327, 34.73307815318853], [-77.42497269157931, 34.73295551676998], [-77.425236091444, 34.73281421819771], [-77.42529146242705, 34.73278740848718], [-77.42553271627534, 34.732714111096854], [-77.42562073795449, 34.73269486231628], [-77.42577598051493, 34.73267723517837], [-77.42603354995659, 34.73262152897706], [-77.42620437955875, 34.732608784273225], [-77.42630062717072, 34.73258108764152], [-77.42640448322985, 34.732479767359806], [-77.42647718585546, 34.7323632686306], [-77.42647574429806, 34.732223428055114], [-77.42649437304877, 34.73208974399851], [-77.4264206203283, 34.73186187131847], [-77.42638692437086, 34.73181409574531], [-77.42596246060725, 34.731757510027904], [-77.42580086829906, 34.73178791906393], [-77.42571398907313, 34.73181696629416], [-77.42557373800302, 34.73187019846898]], [[-77.32417407269253, 34.55909204989108], [-77.3240487701703, 34.55903057156541], [-77.32363669425906, 34.558937432096606], [-77.32357970229808, 34.55860834030414], [-77.32354215706799, 34.55852630599704], [-77.3234087238805, 34.55823475755652], [-77.32270755563817, 34.55873364421212], [-77.32267637272618, 34.558779068951644], [-77.32256114087558, 34.55924430223312], [-77.32266117911273, 34.559675050321246], [-77.32337255415578, 34.55978612154209], [-77.3236282282469, 34.559909056894654], [-77.3236436646707, 34.560068027907064], [-77.32415246632266, 34.56059142647813], [-77.32428012955927, 34.56068797508174], [-77.32487685347552, 34.560671569403425], [-77.32494049824663, 34.560431133354996], [-77.32499424655092, 34.559931391902566], [-77.3250504511726, 34.55986589926308], [-77.325739149926, 34.5593322927803], [-77.3258338569671, 34.559322609296714], [-77.32652724267334, 34.55921392411189], [-77.32689485628381, 34.55936941588222], [-77.32730569121394, 34.55950993104816], [-77.32732504362522, 34.55952673766524], [-77.32734621525796, 34.559536004452305], [-77.32769877986959, 34.55965408943675], [-77.3278752022166, 34.55969435378058], [-77.32809265235754, 34.559723981996456], [-77.32837568058441, 34.55969304205381], [-77.32848670700758, 34.55959160964255], [-77.32863004799275, 34.55935150125857], [-77.32849202546016, 34.55915183804675], [-77.32848069769815, 34.55913545128784], [-77.32847581103204, 34.55912885354315], [-77.32846040454453, 34.55911075753667], [-77.32829166170906, 34.5589105040157], [-77.32810976730978, 34.558704292760574], [-77.32796631778052, 34.55855917295132], [-77.32785135603277, 34.558484153567264], [-77.32768851544373, 34.55828662270143], [-77.32767619534509, 34.5582321606954], [-77.32766239372184, 34.55802168131152], [-77.32775439333068, 34.5577541748524], [-77.3275952153158, 34.557541707374675], [-77.32757608202496, 34.55740639064539], [-77.32735653736536, 34.557324675013845], [-77.32712539218949, 34.55726458229683], [-77.32693487664451, 34.55714697591845], [-77.32657783669941, 34.55704038695633], [-77.32589407069287, 34.55723046815206], [-77.32578880017601, 34.5572001608098], [-77.32567539671496, 34.55725810179476], [-77.32568003827872, 34.55739231811974], [-77.32566742422961, 34.557818735570834], [-77.32562363970288, 34.55822658611736], [-77.32565048024233, 34.55831079976987], [-77.32553872624891, 34.55846441482475], [-77.32566492888085, 34.558798348392685], [-77.32554760094267, 34.55918324925817], [-77.3249581065207, 34.55914794844749], [-77.32464572447147, 34.55913967649093]], [[-77.4161417333516, 34.73251603128045], [-77.41598021955191, 34.73248904689874], [-77.41587648791837, 34.732477598156315], [-77.41562341192997, 34.73248245310192], [-77.41516234566106, 34.73292443770449], [-77.41467999538371, 34.733270784717355], [-77.41458754834598, 34.73336303199697], [-77.41385407263147, 34.73410018920091], [-77.4125794912703, 34.73537482560096], [-77.41231709145711, 34.735636468737084], [-77.41187281911071, 34.73608149786493], [-77.41256748813413, 34.736045730963106], [-77.41498607733686, 34.735921154879726], [-77.41570908058151, 34.73519602652188], [-77.41602501585672, 34.73485923620449], [-77.41684913736859, 34.73406725282854], [-77.41696541825696, 34.73395798992459], [-77.41744740492662, 34.7331201808359], [-77.4171867108557, 34.732751031362355]], [[-77.3800707177461, 34.642910673017894], [-77.38151425476569, 34.64330096347732], [-77.38022946162513, 34.641931707212265], [-77.38012592976416, 34.641887416624414], [-77.38007097145581, 34.64176001978291], [-77.37951637154825, 34.6414372023863], [-77.37928232944975, 34.64182258074931], [-77.37920782299713, 34.641310097211594], [-77.37893668229404, 34.64126880328314], [-77.37849385183202, 34.641194445773294], [-77.37772680626405, 34.64141977644281], [-77.37766633939135, 34.641409963719795], [-77.37691653927263, 34.641451105627674], [-77.37666856005069, 34.64101348848648], [-77.37643621481388, 34.64111168059799], [-77.37644185756221, 34.6412901539212], [-77.37686922242828, 34.64156658534627], [-77.37690334264714, 34.641575845355604], [-77.37691650528144, 34.641582173482625], [-77.37696813245437, 34.641607934433424], [-77.37768524912107, 34.64147049359913], [-77.37765792433515, 34.6418775523308], [-77.37770505431915, 34.64189390043748], [-77.3780236839038, 34.641906358477804], [-77.37821848562233, 34.64192507476866], [-77.378493773572, 34.64152012039875], [-77.3786960881667, 34.64193464122684], [-77.37921712976251, 34.642077531585564], [-77.37928226462421, 34.64210373440997], [-77.37991069567715, 34.64215010162133]], [[-77.48382684535042, 34.68875602233106], [-77.48396943779997, 34.68904120016097], [-77.48447323085054, 34.69004881327645], [-77.48485449744466, 34.69081134952628], [-77.48511962888662, 34.691341590328506], [-77.48521001612771, 34.69195148826104], [-77.48506015684029, 34.69299268602681], [-77.4850533625934, 34.69301463693417], [-77.48501382319415, 34.69305090950235], [-77.48429592273808, 34.69386800185117], [-77.48343579570607, 34.69427691158373], [-77.48294263007344, 34.69339546989642], [-77.48212346740456, 34.692472762273255], [-77.48202798962421, 34.69103059692078], [-77.48201838355126, 34.690837031354675], [-77.48227481053665, 34.69067594785247], [-77.48236021416625, 34.69020129881663], [-77.48301241512235, 34.68898835391048], [-77.4832949610473, 34.6882758228051]], [[-77.39978675360815, 34.588261576552476], [-77.39941950329647, 34.58867043426899], [-77.39899861971534, 34.58889460614551], [-77.39894281585029, 34.58907477232075], [-77.39871914286442, 34.58916716088764], [-77.39847864333106, 34.589490789543916], [-77.3982104715895, 34.58958075814386], [-77.39803932834194, 34.589449638486585], [-77.39800234581875, 34.589470902323946], [-77.39781640494115, 34.58965512597639], [-77.39778375805875, 34.5896915090098], [-77.39774740133092, 34.58973192674336], [-77.39757464056092, 34.589920954323915], [-77.39752391670395, 34.58997645386801], [-77.39746992405168, 34.59003553006445], [-77.39742231806545, 34.59011681405268], [-77.39738979334358, 34.59017304946381], [-77.39737282771897, 34.590210536522385], [-77.3973704662218, 34.59026673489611], [-77.39737609543707, 34.590422351486446], [-77.39742229706883, 34.5905374318515], [-77.39755744546896, 34.59046286950691], [-77.39763232548722, 34.5903993806601], [-77.39781637467198, 34.59032145414325], [-77.39808604361681, 34.59024167610733], [-77.39821044659728, 34.59019359292246], [-77.39831604081013, 34.59018823227969], [-77.39894010871677, 34.590047429847], [-77.39899858252129, 34.590069894022555], [-77.39921801597875, 34.59018075690413], [-77.40016737859077, 34.59024636331468], [-77.400237998677, 34.59064631686463], [-77.40004679830761, 34.59095414277031], [-77.39978668274406, 34.59149977751573], [-77.39976099213774, 34.59153661055917], [-77.39972884559835, 34.59156892695027], [-77.39976152288104, 34.591591317381386], [-77.39978668053156, 34.59160665141418], [-77.40014078088267, 34.59197712590961], [-77.4001807458463, 34.59205940084339], [-77.40041026526889, 34.59231975868988], [-77.4005253694466, 34.59235642552559], [-77.40057481622658, 34.59244451489047], [-77.40078378621993, 34.59269043941856], [-77.4009083290787, 34.59273771766982], [-77.40123111977907, 34.59305046873298], [-77.40122993510425, 34.5931939666394], [-77.40125198641505, 34.59377703844346], [-77.40120772002662, 34.59390299421799], [-77.40123135062876, 34.59404138487326], [-77.40120836908548, 34.594327475413436], [-77.4011872160337, 34.594565752804364], [-77.40119879859455, 34.594753430888275], [-77.40120682978917, 34.594920489334285], [-77.40120609536628, 34.59496466547436], [-77.40125666582526, 34.59505513017484], [-77.40129417857614, 34.59516424338423], [-77.40118804839585, 34.5953680075841], [-77.40136296832641, 34.595182203301825], [-77.40137480925597, 34.59516536632517], [-77.4013847939342, 34.595151168734624], [-77.40146495223614, 34.595037188866186], [-77.40147644788662, 34.59501568564248], [-77.40152980160187, 34.5949179583279], [-77.40153605821826, 34.59489124873923], [-77.4015600118052, 34.5948477255752], [-77.40162717047356, 34.594691621495755], [-77.40165293259486, 34.59457572723642], [-77.40175705314809, 34.59438966686007], [-77.40180044322652, 34.59428879225088], [-77.40183114510069, 34.594237614596764], [-77.40196590738974, 34.59401861022468], [-77.40201439132035, 34.593933921170645], [-77.40206385524564, 34.593779460748785], [-77.40204126754598, 34.593664354747546], [-77.40215113151888, 34.59367057430544], [-77.40233687725775, 34.59331548918915], [-77.40240137182984, 34.59315121780367], [-77.40245222537692, 34.59297444292514], [-77.4024449400798, 34.592875320577456], [-77.40248050841834, 34.59280048851241], [-77.40254519673466, 34.59245020335391], [-77.40254728368743, 34.59243822575445], [-77.4025470092397, 34.59243601672387], [-77.4025467102975, 34.5924344289229], [-77.40254519642744, 34.59242675207921], [-77.40242566439217, 34.592157731347214], [-77.4022875134636, 34.59204888681244], [-77.40223215809152, 34.59196956032877], [-77.40215111603833, 34.5918627886597], [-77.4017688858543, 34.5916863852017], [-77.40115212292466, 34.59136356668223], [-77.40111668067638, 34.590784888234126], [-77.40113766187037, 34.59051650601606], [-77.40122688171348, 34.59035700538481], [-77.4011447479441, 34.59009090930991], [-77.40112173839083, 34.58992956710859], [-77.40108681029963, 34.58967469470972], [-77.40115478545019, 34.58944057574644], [-77.4013629759505, 34.58922782524655], [-77.40137265235343, 34.589219300396785], [-77.40151534247097, 34.58918828491991], [-77.40173941993308, 34.589136970068296], [-77.40178798601265, 34.589115596914866], [-77.40215109644424, 34.58901586926321], [-77.40250360556061, 34.58900090910207], [-77.40254515555948, 34.58896301668649], [-77.40269653831258, 34.58875636894474], [-77.40261305321187, 34.5886053078695], [-77.40254515000348, 34.58842521191613], [-77.40238832414695, 34.58838213275344], [-77.4023250602819, 34.58798515976359], [-77.4022888265703, 34.587802944816865], [-77.40242597588687, 34.587486972985886], [-77.40249979171821, 34.58729906601255], [-77.40273919245013, 34.587104290187455], [-77.40293918567885, 34.58694795283498], [-77.40300638143745, 34.58692264613758], [-77.4030509465044, 34.58684381320614], [-77.40333322687664, 34.58647926731787], [-77.40334646705121, 34.5863908572833], [-77.40335432291018, 34.586375455902484], [-77.40349831001502, 34.58617679674943], [-77.40345991555185, 34.58607215344338], [-77.40334398126733, 34.585952372532994], [-77.4033332166099, 34.58590835023574], [-77.40319641025185, 34.58569649543489], [-77.40293916633058, 34.58548534811907], [-77.40277257871841, 34.585365174982286], [-77.4021510800738, 34.58541539220323], [-77.40143556165432, 34.585378623487756], [-77.40137522150015, 34.58537415640345], [-77.40136299461051, 34.58537985448597], [-77.40134798949994, 34.58537509246733], [-77.4005749084255, 34.58541688659998], [-77.39989399005624, 34.58560106371364], [-77.39982655543176, 34.58565361170725], [-77.40036032964791, 34.586382924006706], [-77.40043133309467, 34.58652735808511], [-77.40057488488517, 34.586976882008685], [-77.40065518423351, 34.587189527970274], [-77.40057487908464, 34.58737935989322], [-77.40037230966709, 34.58786124012434], [-77.39991293799287, 34.58814577396278]], [[-77.36424466977142, 34.77937343876368], [-77.36559063984389, 34.778985442516884], [-77.36563342855044, 34.77855350690954], [-77.36516970208612, 34.77746024681077], [-77.36484875554318, 34.77709511124538], [-77.36511448137345, 34.77632249560962], [-77.36497553885994, 34.77565968875476], [-77.36444996821028, 34.77608996718422], [-77.36404164488417, 34.776452151646815], [-77.3639777311948, 34.77656518447148], [-77.36370026804013, 34.776946066394274], [-77.36362989310395, 34.77727624082886], [-77.36311416700413, 34.777650294268895], [-77.3629784164019, 34.77770827071382], [-77.36286360669342, 34.77777173507106], [-77.36284826415942, 34.777927855056795], [-77.36255258051591, 34.77850934900747], [-77.36246593932594, 34.77875102277724], [-77.36195418199512, 34.77902820993178], [-77.36190194939516, 34.77911288828589], [-77.36192638343027, 34.779204095955436], [-77.36164468741921, 34.77958208776432], [-77.36148548507595, 34.77975921102135], [-77.36117480659811, 34.779909056315546], [-77.36111606040217, 34.779956327150806], [-77.36098123592748, 34.7800437518314], [-77.360835991638, 34.780137933148126], [-77.36081295296678, 34.780156844441066], [-77.36065002653216, 34.7803524694572], [-77.36056377241722, 34.780498096198116], [-77.36047297277386, 34.78070155415344], [-77.36052564202154, 34.78086816992064], [-77.36074963571372, 34.781372734606386], [-77.36087903398666, 34.781425044987046], [-77.36175407456633, 34.781696062459446], [-77.36193202641417, 34.78172020722906], [-77.3622692993944, 34.781738882609595], [-77.36285705712211, 34.782953737506666], [-77.36433429007414, 34.78292070497419], [-77.36522846300926, 34.78050711662775]], [[-77.44511937616986, 34.6811423273798], [-77.44505717885988, 34.68127653127997], [-77.44494591313898, 34.68127594508159], [-77.44490096102325, 34.681279539709585], [-77.44476464925611, 34.68129043941805], [-77.44440027569647, 34.681046870769265], [-77.44482570294745, 34.681079475039695]], [[-77.43814580793233, 34.677263804821536], [-77.43829346099078, 34.677234499837546], [-77.43834974965007, 34.67722332814353], [-77.43838726625367, 34.67721588210111], [-77.43848229445422, 34.677300532737064], [-77.43865964764603, 34.67758962755944], [-77.43862460650021, 34.6776726395285], [-77.43852295786502, 34.677873798265935], [-77.43851282338817, 34.67788946589355], [-77.43839340862422, 34.67804242600772], [-77.4381663892741, 34.677979607278246], [-77.43811810226312, 34.67796624561366], [-77.4379391541953, 34.6778904209049], [-77.43788839914475, 34.6778330917454], [-77.437714770388, 34.67759118316121], [-77.43772673838984, 34.67753269967655], [-77.43794186618001, 34.67730428111976], [-77.43804739594802, 34.67728333667732]], [[-77.42746039276027, 34.67961102823228], [-77.42744261501595, 34.679610704443604], [-77.42743867582121, 34.679595192440466], [-77.42744459101957, 34.6795851909548], [-77.42748014658677, 34.67948099497139], [-77.42777620783711, 34.6786316432507], [-77.42842423707339, 34.67918385001067], [-77.42870789525274, 34.67966683145987], [-77.42879612295944, 34.67992139750824], [-77.4289432661487, 34.680114106964545], [-77.4289162538551, 34.680495700562], [-77.42844666760843, 34.68056966961225]], [[-77.45583594309828, 34.74321454113579], [-77.45579405702995, 34.743203899423776], [-77.45527931436446, 34.74300613622802], [-77.45525744333301, 34.742997733399015], [-77.45517243007755, 34.74301690640089], [-77.45487164071679, 34.74308798966541], [-77.45463408715811, 34.743241590354195], [-77.45455533917665, 34.74329111965372], [-77.45459615500795, 34.74338565146087], [-77.4547204113407, 34.743652001035464], [-77.45487440530964, 34.7438399149143], [-77.45497724097169, 34.743966700511706], [-77.45499455791034, 34.74398402271048], [-77.4550242755557, 34.74401386363058], [-77.45548081601757, 34.74444262991887], [-77.45566172011739, 34.74459845503227], [-77.45586134529381, 34.74470372144895], [-77.45602202040325, 34.74478844862983], [-77.45612244531648, 34.74485260557959], [-77.45645112532218, 34.74507109668282], [-77.4565354796188, 34.74512666024128], [-77.45656035623801, 34.74514420049728], [-77.45661191605585, 34.74518162418209], [-77.45682623857877, 34.745333443699025], [-77.45692645071452, 34.745409922996885], [-77.45708173124603, 34.745558620826756], [-77.45732551393426, 34.745599152464294], [-77.45738754777025, 34.74560976491366], [-77.45770553482402, 34.745509109052605], [-77.45771683283914, 34.74549057776025], [-77.45779482268559, 34.7453100212333], [-77.45792898495847, 34.74502815184127], [-77.45791311147646, 34.74490092419904], [-77.4578326527797, 34.744585248208104], [-77.45753523144751, 34.743990239520656], [-77.45746244234608, 34.74384687935526], [-77.45699925848393, 34.7436263354455], [-77.456537318557, 34.743424245070244], [-77.45643932433761, 34.74338102333093], [-77.45643110210676, 34.74337374351018], [-77.45640708105725, 34.74335246086564], [-77.45630044142948, 34.74334152906218]], [[-77.38565321460793, 34.665487765575534], [-77.38630550976288, 34.665067579292426], [-77.3862729750106, 34.66496641053925], [-77.38615025104012, 34.66460154187774], [-77.38605279369916, 34.664518343437614], [-77.38593215243718, 34.664525389611335], [-77.38551522113274, 34.66414384214408], [-77.38525411940235, 34.66406347859652], [-77.38482265811328, 34.664224608425364], [-77.3843107029661, 34.66428310098127], [-77.3841412529841, 34.66435331952873], [-77.38343412643154, 34.66488647681339], [-77.38336185383454, 34.664938697303626], [-77.38337698537448, 34.664983157094895], [-77.38339052395565, 34.664991915469066], [-77.38340194974664, 34.6649974803375], [-77.38351769830675, 34.665076815218626], [-77.38417849566586, 34.66517354083638], [-77.38413355494285, 34.66536645739894], [-77.38432410840244, 34.66545567681446], [-77.38431999829255, 34.66558450402429], [-77.38437098546018, 34.66561671811116], [-77.38440002831302, 34.665682669730465], [-77.38441366897787, 34.665693465413135], [-77.38448342684731, 34.66572725510918], [-77.38453208768902, 34.66574313875857], [-77.38464160559434, 34.66575383819688], [-77.38468595189093, 34.665728382694404], [-77.38497293185951, 34.66572844032774], [-77.38498680836516, 34.665722577632124], [-77.38547377795352, 34.66553424712252]], [[-77.40430357447289, 34.679855354840754], [-77.40427108084153, 34.67983455870004], [-77.4040314751216, 34.679688589939005], [-77.4038690041077, 34.679609596916464], [-77.40375491109485, 34.679537241525], [-77.40357663743357, 34.67944665379892], [-77.40315333250308, 34.67940182004544], [-77.40308562500563, 34.67939157142949], [-77.40284450148188, 34.6793618727771], [-77.40283328664798, 34.67936491662409], [-77.40272522071547, 34.67955017467921], [-77.40271668335417, 34.67964391457808], [-77.40288735253702, 34.67994297982775], [-77.40290977491459, 34.6800097041229], [-77.40296491988701, 34.68005227224778], [-77.4031428981775, 34.680358796528296], [-77.40318501492925, 34.68039857051207], [-77.40326812752804, 34.6805297275262], [-77.40335280177446, 34.68057695043449], [-77.40345556686674, 34.680570682181894], [-77.40359091713762, 34.68061825390154], [-77.40389249277636, 34.68071166057808], [-77.4040579701551, 34.680703285339376], [-77.40423721145375, 34.680795006862496], [-77.40433835583994, 34.68084145454344], [-77.40441692761596, 34.680821406839655], [-77.40465967856547, 34.680618787395375], [-77.40468789753399, 34.68057318914096], [-77.40470595825434, 34.6805460281239], [-77.40477173719434, 34.68045140951782], [-77.40483487285822, 34.68034506356324], [-77.4048694498866, 34.68030812001359], [-77.40481117540295, 34.68031524857878], [-77.40466730408114, 34.680169273315755], [-77.40440115751997, 34.67991369450264]], [[-77.47447261588792, 34.56805316982146], [-77.47448486850219, 34.56794290633457], [-77.47496596572749, 34.56720356759508], [-77.4745807441412, 34.567080084878995], [-77.47460510603645, 34.56686084915198], [-77.47482124016184, 34.5665063260157], [-77.47501626089988, 34.56604629867472], [-77.47567182060742, 34.56626344269832], [-77.47563578891021, 34.56670341456108], [-77.4760363237211, 34.56689792316637], [-77.47553767191383, 34.56718712321536], [-77.47550092601597, 34.56781553898538], [-77.47488216026463, 34.56819645499206], [-77.47446311038499, 34.56813870476462]], [[-77.39306373801156, 34.54115718951185], [-77.39247109202691, 34.5410760919377], [-77.39133513110251, 34.5409206447022], [-77.39090356033307, 34.54086158340945], [-77.39090522952492, 34.54059135385768], [-77.39111385735595, 34.54041616918347], [-77.39089009112828, 34.539906010913604], [-77.39101552931398, 34.539596106977385], [-77.39108348542368, 34.53940812155541], [-77.39114891957095, 34.53922710862128], [-77.39114687761791, 34.539087490252655], [-77.39100733441387, 34.538851446780626], [-77.39078001340087, 34.53865075086511], [-77.39060468072867, 34.538492410145395], [-77.39036293831091, 34.53856111309829], [-77.39000857898279, 34.53876204232267], [-77.38987628743536, 34.5388211177809], [-77.38981088253615, 34.53887818158188], [-77.38947231145052, 34.539329070290734], [-77.38936434650941, 34.53956546949982], [-77.38907760498626, 34.53987567515718], [-77.3889964923652, 34.54017730737917], [-77.3889740483512, 34.540368975662666], [-77.38897269682114, 34.54038047443737], [-77.3889658781359, 34.540397457034985], [-77.38893340487542, 34.54063097524369], [-77.3888831154647, 34.54070157098127], [-77.38887008504486, 34.5408150692204], [-77.38892605350885, 34.54087686857998], [-77.38893548432867, 34.54090335214832], [-77.38897792989509, 34.5410009546189], [-77.38920943712284, 34.541178770623276], [-77.38923143536812, 34.541322482131946], [-77.38925871363159, 34.54150068715262], [-77.38945077441747, 34.54178050775883], [-77.3895559066498, 34.541882157390816], [-77.3896330945037, 34.54199904082926], [-77.38973920256612, 34.542060064063264], [-77.38989650346954, 34.54210711142841], [-77.39000555795755, 34.54211215931333], [-77.39013074589928, 34.5421056755524], [-77.39046709573925, 34.542088254441246], [-77.39052512332029, 34.54202544185823], [-77.39071136762252, 34.541972904854845], [-77.39131789295448, 34.541686492387086], [-77.39281413896751, 34.5413462215002], [-77.39310792185611, 34.541385728701485]], [[-77.41176861779589, 34.62226701662373], [-77.4118886027117, 34.62208196612694], [-77.4121653998083, 34.62178800651156], [-77.41240121252658, 34.6216209725793], [-77.41245098828745, 34.62157620833551], [-77.41260215796083, 34.62134627811348], [-77.41260109445606, 34.621339213711224], [-77.41255837259627, 34.62130544675305], [-77.41240114451264, 34.621175139578234], [-77.41238625924142, 34.621177004353186], [-77.41236617677458, 34.62116387090544], [-77.41200691515189, 34.62104333727481], [-77.41175715610291, 34.62109620958345], [-77.41161271394816, 34.62110035758787], [-77.41126666733658, 34.62084608782227], [-77.41121846750637, 34.62083457090777], [-77.41104191782674, 34.62069599180609], [-77.41099713788591, 34.62069854179667], [-77.41082426892903, 34.6209093819589], [-77.41076839216854, 34.62096991975066], [-77.41072764695332, 34.62129625856189], [-77.41066088605567, 34.62141001536175], [-77.4100360034008, 34.62213656097913], [-77.40995388874956, 34.62227275665759], [-77.40976034903937, 34.622389146386354], [-77.40882772836027, 34.62382527542819], [-77.41003611288627, 34.623010815268245], [-77.4105469631739, 34.622825827201446], [-77.41161295984602, 34.62281260347015]], [[-77.33360426573273, 34.56389121731182], [-77.33331319098284, 34.56430861166152], [-77.33341135821382, 34.564607796275126], [-77.33343708197414, 34.564783458327454], [-77.3334363406399, 34.564816474946426], [-77.33347641858866, 34.56488610594999], [-77.33355163731468, 34.56501217053266], [-77.33360328785035, 34.565064451148885], [-77.33378280565633, 34.56520989649644], [-77.33399694393228, 34.56537269557944], [-77.33399699245774, 34.56537273217235], [-77.33399724414707, 34.56537292381708], [-77.33422047728905, 34.56552413494639], [-77.33423175477229, 34.56555120983041], [-77.33439070970869, 34.565669190302], [-77.3344274290622, 34.56569575709507], [-77.33447598156724, 34.56572837010397], [-77.33458758093875, 34.56580333200938], [-77.33475166733116, 34.56572425533532], [-77.3347846173356, 34.56573641822936], [-77.33487027548163, 34.56576401631564], [-77.33486909593964, 34.5655809564524], [-77.33502320490305, 34.56522515959817], [-77.33510678198915, 34.56513524540468], [-77.3351791674489, 34.56501499162054], [-77.33527613372785, 34.56476425648565], [-77.3352037565836, 34.564376058723724], [-77.33519979446706, 34.56435069109622], [-77.33519401932304, 34.5643361122647], [-77.33517974116005, 34.56431057753814], [-77.33484776829656, 34.56404331936353], [-77.3347860465104, 34.56399146961359], [-77.33478095015013, 34.563991857938454], [-77.33477979349964, 34.563986532570354], [-77.33475472138872, 34.563956348725895], [-77.33447347869229, 34.56360602893364], [-77.33445184765068, 34.563545139595334], [-77.33439246118968, 34.563543463947546], [-77.33431093405682, 34.56354153768868], [-77.33399850343741, 34.56354956160901], [-77.33373605835668, 34.563712039951184], [-77.33366323812521, 34.5637859644701]], [[-77.34825478653595, 34.727321285609015], [-77.34954777378397, 34.72803024304338], [-77.35042800867384, 34.72821298747285], [-77.35073946973229, 34.728050932042436], [-77.35093105014468, 34.7280951502583], [-77.35173360857793, 34.72799703683172], [-77.35181684129203, 34.728294585812776], [-77.35186335739085, 34.72830505878545], [-77.3518977854323, 34.728313488418515], [-77.35211117352992, 34.72825418746772], [-77.3523983644818, 34.72811877563368], [-77.35263111242594, 34.72769544060616], [-77.35263732358771, 34.72769225456757], [-77.3526555466319, 34.727639383099806], [-77.3528003246129, 34.72719843122834], [-77.35280227660041, 34.72718456434141], [-77.35280402891215, 34.7271735833702], [-77.35282126745652, 34.727068791884726], [-77.35287171159867, 34.726727313868395], [-77.35283485638779, 34.726692709974124], [-77.35286461526043, 34.72633857053748], [-77.35287902382636, 34.72619926502914], [-77.35298824467202, 34.72608843869493], [-77.3530696367894, 34.72578664557478], [-77.35294043587896, 34.72570345302472], [-77.35279233137716, 34.72560577649752], [-77.35265819952835, 34.725568394107434], [-77.35185602740113, 34.72553767152967], [-77.35051404886867, 34.725172577353234], [-77.35034978403924, 34.72526918001366]], [[-77.42575568057211, 34.68322600933906], [-77.4258240579529, 34.68339368900912], [-77.42589650498586, 34.68352102356798], [-77.42595894569192, 34.68363077099058], [-77.42598686924892, 34.68355263124512], [-77.42599215221102, 34.68354672673698], [-77.42607693590392, 34.683332142053146], [-77.42609038393522, 34.68330929987778], [-77.42615978470667, 34.68328062960186], [-77.42616974971193, 34.6832494214389], [-77.42612950389797, 34.683183213950905], [-77.42615623630009, 34.683087850883055], [-77.42615350692219, 34.68305184043695], [-77.42614732163497, 34.682979809964785], [-77.4258405950964, 34.682940411599866], [-77.4258651941486, 34.68284757163003], [-77.42572849411786, 34.68276240583293], [-77.42582701075563, 34.68293763800098], [-77.42582955304292, 34.682945019774195], [-77.42574101415853, 34.68318709683007]], [[-77.43761520961226, 34.58680504726124], [-77.43755850820112, 34.58689277023916], [-77.43682721659445, 34.58702354099436], [-77.43669814263387, 34.586939275250565], [-77.43643310828762, 34.586867698655965], [-77.43633194490513, 34.58681565887599], [-77.43603909618112, 34.586942563111656], [-77.43577842184504, 34.58664286999142], [-77.43564488374099, 34.58652604409261], [-77.43558324331528, 34.586456728359536], [-77.43550302411921, 34.586401937915824], [-77.43544780628807, 34.58638539528461], [-77.43532278147674, 34.58635040564833], [-77.43525076807029, 34.58634093654395], [-77.4351624542555, 34.58633404170863], [-77.43514215399475, 34.58633708104796], [-77.43507455960491, 34.58644150563853], [-77.43505780042574, 34.58646631105093], [-77.43506772336508, 34.58647987583953], [-77.43514206217519, 34.58657136171228], [-77.43521857078144, 34.58665536233829], [-77.43525090865695, 34.58669150268849], [-77.43535920626357, 34.5867306475426], [-77.43547980557292, 34.586829887540745], [-77.43557726868538, 34.58688881107477], [-77.43564508146096, 34.587013097480714], [-77.43587766597587, 34.587196954183824], [-77.43595007377976, 34.587282558938426], [-77.43593914911358, 34.58740036086729], [-77.4360393273685, 34.587505163299845], [-77.43613343718741, 34.58748314970493], [-77.43635104831489, 34.587553099952686], [-77.43641653636867, 34.58756179826228], [-77.43647158534912, 34.58757681311167], [-77.43682725514664, 34.587115242023756], [-77.43713463485719, 34.587533369467565], [-77.43753311264692, 34.58780676847715], [-77.4375817661933, 34.58783624668638], [-77.43761569260339, 34.587928215695854], [-77.43790465400528, 34.588064339411744], [-77.43804113875042, 34.588124158441275], [-77.43840382637048, 34.588016007599464], [-77.43874139735455, 34.58811753780386], [-77.43883686618294, 34.5880848101214], [-77.43919191530145, 34.58800123363116], [-77.43954233382212, 34.58798781038398], [-77.43963573667216, 34.58798093996239], [-77.43967603700747, 34.5878243256072], [-77.43933765412837, 34.58754581156331], [-77.43919163372647, 34.58737425825758], [-77.43901557111198, 34.586932701002766], [-77.4389610029219, 34.58675109280241], [-77.43895337073394, 34.58649588330474], [-77.43885384607039, 34.58628085284153], [-77.43879695878519, 34.58595396786571], [-77.43879090998037, 34.585933010610624], [-77.43879079860248, 34.585926518878075], [-77.43876142997209, 34.58589251134631], [-77.43861101915404, 34.58572817475238], [-77.43856991494016, 34.585713925631644], [-77.43840280346944, 34.58568657026868], [-77.43821136137723, 34.585792057181905], [-77.43820100412427, 34.58579431197739], [-77.43815581986527, 34.58585996945652], [-77.43803623350885, 34.58603563878167], [-77.4380089418975, 34.58609093062331], [-77.43788718315348, 34.586350465037654]], [[-77.44323959781451, 34.622756015507775], [-77.44322851208993, 34.62277509608019], [-77.44319576892522, 34.622795884341954], [-77.44322691328026, 34.622805409782174], [-77.44327463662572, 34.62314265081547], [-77.44337032234064, 34.62323351943063], [-77.44349248163147, 34.623395066201915], [-77.44376848131978, 34.6232737401832], [-77.4438957110503, 34.62323202460943], [-77.44405450744003, 34.62316519855523], [-77.44418566237994, 34.62311000469715], [-77.44427474546802, 34.6228959804987], [-77.44429192793444, 34.62285262411869], [-77.44426935946595, 34.6228295840621], [-77.44410703532864, 34.62264384391842], [-77.44376327351034, 34.6226340917129], [-77.44373099028397, 34.62263035436913], [-77.4432604491998, 34.62276441634801]], [[-77.35484553625099, 34.551174088123844], [-77.35491320240644, 34.55111973603023], [-77.3549852131037, 34.55109938212302], [-77.3551500509352, 34.55102848120271], [-77.35519734241024, 34.55100961355451], [-77.35538240215507, 34.55090026594515], [-77.35542930203036, 34.55087410168545], [-77.35549508440133, 34.55083576124654], [-77.35565628647714, 34.5507361691938], [-77.35577135395044, 34.55067357905508], [-77.35577593959253, 34.550670200618924], [-77.3557803334357, 34.55066869472752], [-77.35584534970582, 34.55060172102393], [-77.35586170114742, 34.550587741708604], [-77.35588096188394, 34.55056082245316], [-77.35590670839245, 34.550531682166806], [-77.35590597037606, 34.550485094331215], [-77.35591139829594, 34.55045237284916], [-77.35589304333911, 34.550411237941674], [-77.35588182443314, 34.55034915882284], [-77.35586566659599, 34.55029276761846], [-77.35588723031694, 34.550229289025054], [-77.35586598738453, 34.55009307907997], [-77.35600804250346, 34.55002744823812], [-77.35619163828333, 34.549853678511695], [-77.35638273280742, 34.54985433706596], [-77.35638868373567, 34.54985065532619], [-77.3565875886954, 34.549708211618714], [-77.35659640047514, 34.5497033484328], [-77.35662632013499, 34.54969361573521], [-77.35678736928102, 34.549556680780626], [-77.35682869277235, 34.549567998958466], [-77.35688200769292, 34.549534393363274], [-77.35683089501269, 34.54951520334362], [-77.35667110365358, 34.54949132285395], [-77.35659245345076, 34.549495971596876], [-77.35655836281346, 34.54948006151566], [-77.35652143775982, 34.54946389205446], [-77.35617646981534, 34.549286302206184], [-77.3561575781896, 34.54927145219776], [-77.35581149078651, 34.549309912644425], [-77.35575568006887, 34.54932931008622], [-77.35558100155757, 34.54945766588078], [-77.35541485309034, 34.54948535842423], [-77.35532579503527, 34.549447274158574], [-77.35531288007068, 34.549451392998414], [-77.35529358123658, 34.549457038588386], [-77.35521806536536, 34.54950630068381], [-77.3551973871721, 34.54951938474943], [-77.35519373708307, 34.54953261733472], [-77.35519080328538, 34.54954942264927], [-77.35531557861094, 34.54963748880847], [-77.35521148073332, 34.54977461720361], [-77.3550139548897, 34.549846453567], [-77.35491034914646, 34.5497616413396], [-77.35462227810933, 34.54980549487843], [-77.35448156821732, 34.54975754638665], [-77.35433286725382, 34.549715878481635], [-77.35423266974988, 34.54967441823088], [-77.35400676832379, 34.54958106992195], [-77.3539095180461, 34.549553483795485], [-77.35384325555849, 34.54953493183344], [-77.35369511643857, 34.54953353536045], [-77.35344986868371, 34.54956853460324], [-77.35317065099788, 34.54962983257637], [-77.35297531903312, 34.54968004256542], [-77.35266018832841, 34.54976223526041], [-77.35257968050675, 34.54978648304148], [-77.35232473939874, 34.54986022864516], [-77.35226485803041, 34.549880354321736], [-77.35208070569243, 34.54998986065171], [-77.35206579805295, 34.550000104601864], [-77.35187220964663, 34.5501331306217], [-77.35186928490015, 34.55013536222137], [-77.35186633976724, 34.550137164157285], [-77.35183155512665, 34.55016034007124], [-77.35165156789229, 34.55027779999377], [-77.35161960762464, 34.550291897098894], [-77.35153079195142, 34.5503432197611], [-77.35154092046702, 34.55038024646184], [-77.3515698843483, 34.550421464190634], [-77.3516541625362, 34.55052744321892], [-77.35165829699315, 34.55053279769311], [-77.35175272859138, 34.55063997000043], [-77.35176542374575, 34.55069310420221], [-77.35184994138808, 34.55085084138479], [-77.35209802444989, 34.55092417085128], [-77.35218282822424, 34.55106771020709], [-77.35233087741678, 34.55123071382613], [-77.3524013593194, 34.55138778854507], [-77.35232898495298, 34.55153631811893], [-77.3522223248085, 34.55173183395003], [-77.35220299632576, 34.551788025820514], [-77.35219892600416, 34.551799858989405], [-77.35220981361037, 34.55180504460549], [-77.35218955001584, 34.55192361927945], [-77.35221708465298, 34.55195994058248], [-77.3522572364738, 34.552010527054215], [-77.352259814485, 34.55203591719663], [-77.35231288178518, 34.55206266307522], [-77.35234693475012, 34.552063340304606], [-77.35241059947089, 34.55208178449239], [-77.35248697805514, 34.552078060506965], [-77.35260665188869, 34.552093166478706], [-77.35270242602634, 34.55215640898662], [-77.3528008848893, 34.5521837742441], [-77.35281811783237, 34.552189554485295], [-77.35297419294751, 34.55216327982849], [-77.35299801243352, 34.552148346621955], [-77.35315713703591, 34.55205371981764], [-77.35320442200634, 34.55202692659048], [-77.35339687247986, 34.55187688661212], [-77.35340109263277, 34.55187424451421], [-77.35341261641763, 34.551869992151055], [-77.35367952328126, 34.5517613449603], [-77.35379287798338, 34.551729672776034], [-77.35396967595912, 34.55168027373158], [-77.35399831770432, 34.55166808522955], [-77.35418957516418, 34.55155225425647], [-77.3542610230506, 34.55150304962643], [-77.35443887023098, 34.551385692593236], [-77.35458770718337, 34.55131222282388]], [[-77.33968933119759, 34.647758569638235], [-77.33973308016127, 34.64779694822929], [-77.33970370615772, 34.64775348036006], [-77.33971281036092, 34.64770784841748], [-77.33963257776108, 34.64770312273184], [-77.33968769467069, 34.64775757020637]], [[-77.34277737358143, 34.65276870557542], [-77.34290680485444, 34.65286598221639], [-77.34305377149627, 34.652898529464615], [-77.34312675694754, 34.65291399103013], [-77.34317177604821, 34.65291549259883], [-77.34343889149909, 34.652924401647425], [-77.34344579726212, 34.65290832195587], [-77.34362275038997, 34.65276240972743], [-77.34349494577248, 34.65227567874532], [-77.34330606714028, 34.65221319984701], [-77.34324876527634, 34.65218897127427], [-77.34298358804607, 34.65216579214463], [-77.34297621312396, 34.65216505870956], [-77.34297032536684, 34.65216613095185], [-77.34268267276032, 34.652218516291605], [-77.34267171635298, 34.65224306657077], [-77.34252864203397, 34.65240834971279], [-77.34268879750954, 34.65272349407499]], [[-77.38690339309778, 34.58887842462748], [-77.38717678582962, 34.58892201883421], [-77.3873195044105, 34.5889592230512], [-77.38753736877919, 34.58904553707273], [-77.3875708247743, 34.58905960352205], [-77.38760121380304, 34.589072380385424], [-77.38778585198423, 34.589238621258104], [-77.38795579333217, 34.58944582446198], [-77.38796482180753, 34.58946023276065], [-77.38812209416236, 34.58967692967373], [-77.38851881222025, 34.58953696349295], [-77.38875293844256, 34.58954124678809], [-77.38889506066133, 34.589581832958324], [-77.38900287002137, 34.58956413165504], [-77.3891470033828, 34.58954046611342], [-77.38930185223238, 34.58950947684755], [-77.38936642722746, 34.58947882676928], [-77.38939747753136, 34.58945023455725], [-77.38946730331259, 34.5893606629623], [-77.38945527655302, 34.58932208292893], [-77.38944258566451, 34.589310035748056], [-77.38941743205604, 34.589262181333005], [-77.38937022528441, 34.58924187996222], [-77.38935319227073, 34.589234519312335], [-77.38934408146496, 34.58923066216918], [-77.38931494240694, 34.589218454696734], [-77.38924557178088, 34.58918939269097], [-77.38921297073705, 34.58919353703569], [-77.38914705779717, 34.589177430572526], [-77.38899372600343, 34.589083884271055], [-77.38896503714206, 34.58907186532172], [-77.38890221741264, 34.58904554737041], [-77.38875299846592, 34.58915304446004], [-77.38864735132063, 34.589035389003016], [-77.38861675721628, 34.58892595526383], [-77.38855600679383, 34.58889943438308], [-77.3884875464656, 34.588870820860265], [-77.3884414896979, 34.588862331406176], [-77.38843089972809, 34.58884661163939], [-77.38835898930962, 34.588815109414654], [-77.3883162169484, 34.58880309098791], [-77.3882384643162, 34.58876821614696], [-77.3881872951689, 34.58874830750662], [-77.38808701844991, 34.588709292074896], [-77.38796491859873, 34.58887085283483], [-77.387774945958, 34.588622763848385], [-77.38762827762133, 34.58858209699672], [-77.38757091204513, 34.58854380609811], [-77.38752557036975, 34.58849529610983], [-77.3874441251071, 34.58845817806625], [-77.38739802250556, 34.58843883486126], [-77.38737390087017, 34.58843301229671], [-77.38733123363615, 34.5884284832971], [-77.38727538729222, 34.58842490647704], [-77.38722210000005, 34.588441456983446], [-77.38717686846968, 34.588447010291674], [-77.38699140451766, 34.58851097637036], [-77.38695990124097, 34.588506522619845], [-77.3867827652639, 34.588688392226736], [-77.38674090651463, 34.58872675692042], [-77.38666584098121, 34.58878267116907], [-77.38668081459116, 34.58889031583408]], [[-77.41870887202845, 34.62283336783803], [-77.41869372766735, 34.62281412643515], [-77.41848361019836, 34.623010087311336], [-77.41842516309984, 34.62304889240184], [-77.41837364410897, 34.623119794603355], [-77.41840719939374, 34.62316418579475], [-77.4184380684218, 34.62317986391279], [-77.4185118234414, 34.623096137514366], [-77.41865959228628, 34.623227332624225], [-77.41869697752092, 34.62323484409623], [-77.41870896732758, 34.62324860314787], [-77.41880080499102, 34.623206941349224]], [[-77.43943583422744, 34.60208219170083], [-77.43939120446828, 34.60192029962814], [-77.43938668673064, 34.60190104808319], [-77.43937030282171, 34.60191298311431], [-77.43937100419839, 34.60191605273723], [-77.43937068516313, 34.60192061084549], [-77.43941511541385, 34.6020835273883], [-77.43941796901034, 34.602087285401474], [-77.43942623256079, 34.60210037112182]], [[-77.39545224965863, 34.58662162557384], [-77.3954149160657, 34.58663160051569], [-77.39536526220613, 34.58667898749438], [-77.3951665461732, 34.58682440757324], [-77.39514877873745, 34.5870371556055], [-77.39511269211238, 34.58713999161976], [-77.39511118120822, 34.58719734428221], [-77.39505814981996, 34.587241410990494], [-77.39493349892888, 34.58745612472015], [-77.39486109738425, 34.58755594658273], [-77.39483161798829, 34.58760510634929], [-77.39477859211274, 34.58773616191723], [-77.39478063574427, 34.587911406552415], [-77.3948610650223, 34.58794818065977], [-77.3949070757899, 34.5879692178237], [-77.3950044578191, 34.58800474680055], [-77.39504021068697, 34.588018850727295], [-77.39505808691386, 34.58802537235041], [-77.3950851651539, 34.58802228009305], [-77.39512421487089, 34.58798747249671], [-77.395317872922, 34.58781485258454], [-77.39545217673142, 34.58758260916594], [-77.39548182766467, 34.587543260523496], [-77.39551989115517, 34.5875058259345], [-77.39584625861934, 34.58719343444587], [-77.39602192090106, 34.58719810312601], [-77.39624030888567, 34.58722484098485], [-77.3963810624816, 34.58722994391677], [-77.39657246964248, 34.58735398827089], [-77.39663435282512, 34.587362374142266], [-77.39665181856643, 34.587361359992975], [-77.39683138000822, 34.58735093373776], [-77.39696486413213, 34.58729738176899], [-77.39701805477621, 34.58727855056836], [-77.39702841098831, 34.587271388400964], [-77.39705588697908, 34.58725464759212], [-77.3972882695361, 34.587106129317846], [-77.39742247746497, 34.58700383885823], [-77.397562236071, 34.58693720958246], [-77.39816777439215, 34.58674540204091], [-77.39821058874738, 34.58679257706633], [-77.39827326607569, 34.586751580022096], [-77.39839393876014, 34.58666663954129], [-77.39875177123409, 34.5863489516002], [-77.39899871201055, 34.586103697455876], [-77.3992187497789, 34.585935569083276], [-77.39975563598202, 34.585621026656796], [-77.39977175307136, 34.58560246963001], [-77.39955199957416, 34.58505428770526], [-77.39912218298954, 34.584996273072605], [-77.3989987447083, 34.58515364620724], [-77.39889996791784, 34.585001773490845], [-77.39866958807804, 34.58492857640149], [-77.39821067090014, 34.58491348851435], [-77.39815811353053, 34.584945742198784], [-77.39805720033303, 34.58501692930119], [-77.39769068644655, 34.58535870207132], [-77.3974225579802, 34.58548114914352], [-77.39734691304409, 34.58554397548407], [-77.3971568753378, 34.58570971146919], [-77.39702849110851, 34.58587504757559], [-77.39679812184553, 34.58604771868497], [-77.39672974603963, 34.586160285296216], [-77.39663442274232, 34.58623365368363], [-77.39650987329394, 34.58622349908681], [-77.39606126135038, 34.58638561123715], [-77.39584631081993, 34.58646195085658], [-77.39550410744938, 34.586603085924835]], [[-77.36353076569755, 34.674048224922196], [-77.36349810442044, 34.67400282824517], [-77.36358101086589, 34.673797625811545], [-77.36351234596951, 34.673742644366236], [-77.3632511562548, 34.67379872590368], [-77.36301553427555, 34.673705667350006], [-77.3628164146239, 34.67407863015329], [-77.36275376953348, 34.67415499309134], [-77.36277071737378, 34.67423611939174], [-77.36283649245397, 34.674512202994585], [-77.36368195363569, 34.67429645082139]], [[-77.3161178983224, 34.641176812453764], [-77.31627948933384, 34.641244438511265], [-77.3162562554794, 34.64105250101028], [-77.31615047390065, 34.64096912804273], [-77.31590429963025, 34.64089397773088], [-77.3160494783499, 34.641168951846694]], [[-77.40102164606257, 34.61467721577181], [-77.40065295270922, 34.614446818249505], [-77.40074516712005, 34.61501489936376], [-77.40114313920354, 34.61490408037115]], [[-77.42475603720885, 34.56900950377943], [-77.42473107555656, 34.569143431129675], [-77.42489716961386, 34.569141174036126], [-77.42500102274695, 34.56917414888109], [-77.42510315980681, 34.569113226766696], [-77.42527098499234, 34.56906545960474], [-77.42524735963582, 34.56893692595367], [-77.42512688548129, 34.56893102199395], [-77.425000950466, 34.568901576020814], [-77.42487348556187, 34.56896931998154]], [[-77.3404367445332, 34.645901798795535], [-77.34025198976359, 34.64606636247033], [-77.34010250078734, 34.64614007012892], [-77.34009230384692, 34.646382502821226], [-77.34006340819758, 34.64664912098646], [-77.34028198585683, 34.64672482834902], [-77.340428131063, 34.64686575444219], [-77.34053313143329, 34.646875717961215], [-77.340634394873, 34.646885326885965], [-77.34068035323303, 34.64677544300191], [-77.34072825723558, 34.64672425581285], [-77.3407520335456, 34.646674150102236], [-77.3407722494839, 34.646551831354344], [-77.34073369084257, 34.64639570514978], [-77.34081959665627, 34.646213799365796], [-77.3408283459473, 34.64615044842927], [-77.34083738714799, 34.64612089379933], [-77.34092607645547, 34.64590806338038], [-77.3409260882822, 34.64587990447386], [-77.34081815140355, 34.645807308179485], [-77.34074308415532, 34.64583306900918], [-77.34051065978392, 34.64585386672031]], [[-77.39747154717455, 34.56891591573832], [-77.39742354428506, 34.56889206255463], [-77.39731826928377, 34.568876310670646], [-77.39733632839163, 34.56898716015625], [-77.39738098516237, 34.56902657269652], [-77.39742352927784, 34.569121445944546], [-77.39751639858711, 34.569285655952456], [-77.39779204776218, 34.569318566155246], [-77.39772699443134, 34.56902833019427], [-77.39756416746232, 34.56895428586737]], [[-77.39703074393735, 34.59450560966046], [-77.39703000016989, 34.594503582216205], [-77.39702801864186, 34.59450508798075], [-77.39702335187725, 34.59450667598096], [-77.39702801857659, 34.594506350678074]], [[-77.44062913405271, 34.59005738371505], [-77.44062477060731, 34.58990723498648], [-77.44037489596938, 34.589806226594774], [-77.44020368758976, 34.58972797702671], [-77.44014687230995, 34.58973069333628], [-77.43998079900103, 34.58971723760845], [-77.43978644120715, 34.5898133501039], [-77.43978269155731, 34.58981551016242], [-77.43978049875885, 34.58982061605987], [-77.43971260740697, 34.590039154823764], [-77.43978398964731, 34.59019427899986], [-77.4398038763093, 34.59021683633937], [-77.43985653081725, 34.59030874403214], [-77.43993443353699, 34.590431669202744], [-77.43998116191607, 34.59050540306709], [-77.44021801217968, 34.59056007539955], [-77.44036224972564, 34.59079439262949], [-77.44036724694938, 34.59080241106515], [-77.44037535698114, 34.590797004530074], [-77.44040607597557, 34.590788054286335], [-77.44061959522966, 34.59059584346464]], [[-77.44596852559465, 34.602054473663074], [-77.44596114634068, 34.602067762665925], [-77.44590737696413, 34.60215693507458], [-77.44585462435361, 34.60228276695449], [-77.44582073149805, 34.602312454709214], [-77.44580682161887, 34.60236577221494], [-77.44577115876145, 34.602491195918155], [-77.44577859738675, 34.602607414770645], [-77.44576227414717, 34.60279150309019], [-77.44599469552787, 34.602683044611105], [-77.44608578264649, 34.602424692919264], [-77.44610881896887, 34.602394903154355], [-77.44634760903394, 34.6021871448993], [-77.44635873114885, 34.60206220403373], [-77.44610918603725, 34.60202554475764], [-77.44602495425958, 34.60201317079528], [-77.44597891639908, 34.60203426453889]], [[-77.43301262354952, 34.62353600472665], [-77.4329801204091, 34.62349232512187], [-77.43290505777709, 34.62341841727147], [-77.43287492133037, 34.623487808584315], [-77.43286277291234, 34.62352576876922], [-77.4327216873862, 34.623743898790494], [-77.43272872383193, 34.623751883477254], [-77.43287800385917, 34.623798609972035], [-77.43300500196995, 34.62378365994175]], [[-77.44253667260497, 34.60098093915279], [-77.44265939374719, 34.60089627705447], [-77.44266695772095, 34.600791638062674], [-77.44277877460695, 34.60049657195419], [-77.44282751385421, 34.60037660571152], [-77.4428175862076, 34.60033222570182], [-77.44292763432468, 34.599978804861706], [-77.44289368780059, 34.59944181202245], [-77.44215091838376, 34.59957133284414], [-77.44191060987123, 34.59972953267658], [-77.44167612087072, 34.59993268257801], [-77.44163384713757, 34.60006791405681], [-77.44152229134497, 34.60037953776005], [-77.44152830481961, 34.60050036728358], [-77.4416701714975, 34.60093774524547], [-77.44211383946612, 34.600949358429034]], [[-77.36912920227361, 34.55067555674002], [-77.36894307073565, 34.551487623580016], [-77.36896738718573, 34.5515886564656], [-77.36898626873591, 34.551661072124745], [-77.36903266632534, 34.551824078835416], [-77.36909805122184, 34.55204361987646], [-77.3691024521744, 34.55205593260692], [-77.36910965328987, 34.55205781425062], [-77.36913712943476, 34.552078721979115], [-77.36941608815164, 34.552301343394134], [-77.36984098861781, 34.55244210290851], [-77.36987397639614, 34.55245313282658], [-77.36991041668593, 34.55243210003046], [-77.37006812215972, 34.55203485012759], [-77.37016884187584, 34.55173158273684], [-77.37016126881943, 34.55141664916763], [-77.36990371224057, 34.5511466772392], [-77.36976339083216, 34.551072868421855]], [[-77.42251686146994, 34.62388456909428], [-77.42251596209256, 34.62388942475156], [-77.42251849607594, 34.623890545563036], [-77.4227768898672, 34.624029559896755], [-77.42286644801956, 34.62401081773511], [-77.4230374490489, 34.623865573367794], [-77.42313152860663, 34.62379388473169], [-77.4234255020686, 34.62336202276165], [-77.42349293213715, 34.623300938002956], [-77.42384260977882, 34.623142224918105], [-77.4235550262774, 34.62307880096238], [-77.42327186562629, 34.62280031034324], [-77.42313166271431, 34.6226820687287], [-77.4227366767814, 34.622765897395716], [-77.42271317192595, 34.623027943827815], [-77.4226183642305, 34.6233092370061], [-77.42304414006455, 34.62336971557603], [-77.42271509332978, 34.623648090933116]], [[-77.38922435096357, 34.54599627967376], [-77.38935085820339, 34.54601529499837], [-77.38931814637017, 34.54592525361987], [-77.38926361439842, 34.545744551437174], [-77.38916813635772, 34.54592645171425]], [[-77.44582028542044, 34.60317772130439], [-77.44575867602694, 34.60315012595339], [-77.44576100193976, 34.603220669327435], [-77.4457619766138, 34.60324901570828], [-77.44581238202476, 34.60334633614677], [-77.44582160608986, 34.60324187933174]], [[-77.35780907238376, 34.67838250571755], [-77.35795240405565, 34.67846606311461], [-77.3580816481658, 34.678266729466955], [-77.35807427201497, 34.67820960438758], [-77.3580720290011, 34.67818008635139], [-77.35816694351354, 34.677953181451876], [-77.35815432402774, 34.677919630459286], [-77.35816643321088, 34.677831404977795], [-77.35814422477677, 34.677805142729], [-77.35804527758171, 34.67780646765489], [-77.35791011970227, 34.677744766545395], [-77.35786785200398, 34.6777263541693], [-77.35777546207336, 34.67776326339482], [-77.35773381306487, 34.677958355426895], [-77.35771274046995, 34.678062450794954], [-77.35783938428386, 34.67824186896639]], [[-77.44228174007844, 34.597666972127406], [-77.44216828884667, 34.59758598604132], [-77.44210612327475, 34.59748680237409], [-77.44195683782456, 34.597301637419605], [-77.44173792616226, 34.59719793677838], [-77.44171968815562, 34.59717930139381], [-77.44156058771377, 34.597119740141636], [-77.44147827703355, 34.59709058467091], [-77.4413635218587, 34.59707683782952], [-77.44132005407255, 34.59707163066327], [-77.44117411458114, 34.59705414792661], [-77.44116646890768, 34.597060446371856], [-77.44105369063465, 34.597275620787926], [-77.44112190222965, 34.59742984627975], [-77.4411406174282, 34.597475346978726], [-77.44116668499774, 34.59751060398018], [-77.44134754617839, 34.597675241328], [-77.44153259109567, 34.59779186100588], [-77.44169583236284, 34.597908306883646], [-77.44206141563451, 34.59771665730438]], [[-77.36005017567365, 34.78310877870999], [-77.36024565713008, 34.783107651700746], [-77.36052832891741, 34.78310602094703], [-77.36030699105578, 34.78289651673326], [-77.3602076492275, 34.782910857791826], [-77.3599927368236, 34.782873855674694], [-77.35996409316454, 34.782908576291995], [-77.35995054319947, 34.78301910034919]], [[-77.39381397496551, 34.62420139805775], [-77.39370902070971, 34.62428008382968], [-77.39373197727664, 34.624428617973805], [-77.39371508696978, 34.62449149432562], [-77.39387296121527, 34.624561358590526], [-77.39397674428184, 34.62455428137042], [-77.39419239577138, 34.624554404669645], [-77.3942672020481, 34.624381872281084], [-77.39447345785888, 34.62416985896753], [-77.39426721910517, 34.62411177066971], [-77.39396506081522, 34.624144007541815]], [[-77.3754409666987, 34.641032512215496], [-77.37544891537998, 34.6409220139462], [-77.37536635735364, 34.64090492022133], [-77.37533944451366, 34.64088583892478], [-77.3752723285973, 34.640875176571775], [-77.37524714374982, 34.640951071436206], [-77.37525905909241, 34.6410358622818], [-77.37533940776653, 34.64101782512955]], [[-77.40099671422729, 34.581196202262554], [-77.40109472867975, 34.58104658737554], [-77.4011560413837, 34.58096092345891], [-77.40096900936946, 34.58082573301421], [-77.40094306114644, 34.58080733044214], [-77.40089793014816, 34.58078588235937], [-77.40077200062092, 34.58071154240382], [-77.40060604817825, 34.58082800124991], [-77.4005871724108, 34.58084385456667], [-77.40057498667926, 34.58089732511154], [-77.40053404426124, 34.58105067861206], [-77.40057498258359, 34.5811142169176], [-77.40062543346633, 34.58119541410743], [-77.40073591362854, 34.58123383620121], [-77.40077199180911, 34.581244057592215], [-77.40095635149677, 34.58121566008277], [-77.40096900387901, 34.58121371119962]], [[-77.33894513072858, 34.6352918534301], [-77.33875712965008, 34.635434502571194], [-77.33899142122075, 34.63552226167607], [-77.33921400384641, 34.63537179533321]], [[-77.41772783471059, 34.56986439397685], [-77.41771284043661, 34.569843257911714], [-77.41769135422602, 34.56984650720009], [-77.41769381983752, 34.56986930769212], [-77.4177128470786, 34.56988048586289]], [[-77.36158662110795, 34.67285319702594], [-77.36166481678259, 34.672891357498436], [-77.36179923539898, 34.672823983701136], [-77.36194728890375, 34.6727586365072], [-77.36189638697141, 34.67267351707126], [-77.36189796654696, 34.67260345575268], [-77.36188323038732, 34.67256874834942], [-77.3618271390617, 34.67252971867029], [-77.36177434672057, 34.67251389018815], [-77.36169030777566, 34.67247340905649], [-77.36165135173383, 34.672467944429336], [-77.361605382522, 34.672455519653255], [-77.36151862280701, 34.67257013122253], [-77.36150956976259, 34.672620089573414], [-77.36147711215841, 34.67279920098707]], [[-77.39727820954995, 34.620368820352326], [-77.39722403101368, 34.620367831830826], [-77.39721311675233, 34.62036645325695], [-77.39720440654999, 34.62037946440864], [-77.3972240293062, 34.62042397004099]], [[-77.38186176056708, 34.58820149237156], [-77.38185711055993, 34.588198055009954], [-77.38179707625268, 34.58814612041311], [-77.38175861415078, 34.58812051051303], [-77.38166486025199, 34.58822471533229], [-77.38166007284694, 34.58823034253318], [-77.38165994135014, 34.58823043919686], [-77.38165984135712, 34.58823059525988], [-77.38165967522528, 34.58823104742236], [-77.381660072652, 34.58823115323003], [-77.38166187554374, 34.58823224480671], [-77.38175857157951, 34.58829838463106], [-77.38182133459793, 34.58824585214198], [-77.38185710344645, 34.58822793049944]], [[-77.44389822001256, 34.60211449859019], [-77.44390303523434, 34.60210079229299], [-77.44389112376854, 34.60208857035664], [-77.44387978387911, 34.60210742261041]], [[-77.32404330376126, 34.74219607586297], [-77.32954263223216, 34.7391638352473], [-77.33186246680339, 34.73928334545595], [-77.33190511944746, 34.739304888535884], [-77.33191419844931, 34.73932919490227], [-77.33223361405732, 34.74121554227463], [-77.33242035912443, 34.74206177024134], [-77.33324807232059, 34.742900346255425], [-77.33326544963238, 34.74302359087328], [-77.33442024872639, 34.743677244771035], [-77.33524052685647, 34.74428829595023], [-77.33578919882981, 34.74462709649956], [-77.33655475481831, 34.74518921343319], [-77.33638934092801, 34.745848606064285], [-77.33587741569173, 34.74656448906628], [-77.33603506620838, 34.747165378901705], [-77.33580825867487, 34.74754871952016], [-77.33643718231689, 34.74841402342661], [-77.33644288462894, 34.74842841643055], [-77.33644309316472, 34.74843643161597], [-77.33652066201621, 34.74851840583357], [-77.33642427544366, 34.74845842224282], [-77.33641742452937, 34.74844799172346], [-77.3364028580311, 34.74844194767518], [-77.33540419376358, 34.747846274009284], [-77.3347187468223, 34.74819843114714], [-77.3346969022523, 34.748194234469075], [-77.33415304845263, 34.748028941538394], [-77.33387187264181, 34.74781417053352], [-77.33367131602311, 34.74740617790245], [-77.33327344959693, 34.74693366253013], [-77.33326690037642, 34.7469288291878], [-77.3332390980959, 34.74692616820255], [-77.33270648616916, 34.74682342115477], [-77.332436658303, 34.74677886548236], [-77.33242042688556, 34.74677716731326], [-77.33233536685341, 34.7467247508844], [-77.3321698197652, 34.746608981140795], [-77.33214878808853, 34.74658824547632], [-77.33204060349621, 34.746463532996856], [-77.33196862847575, 34.74636925393195], [-77.33197671591785, 34.74634420901896], [-77.3318793962819, 34.74613779914992], [-77.33174689373513, 34.74600336156976], [-77.3316987616263, 34.745769639314645], [-77.33155401025607, 34.745695027294985], [-77.33143491674778, 34.74557835599766], [-77.33127505120302, 34.7455659989631], [-77.33109516997867, 34.74551423087977], [-77.33107658855221, 34.7454597117987], [-77.33074932664135, 34.74531918096261], [-77.33074803850047, 34.74531839116183], [-77.33074761374189, 34.7453181808097], [-77.33068362785579, 34.74497356411242], [-77.33035974155536, 34.744593729831074], [-77.32942213050474, 34.7447813544174], [-77.32911078930184, 34.74476892100975], [-77.3287275035296, 34.74490090894311], [-77.3278604730586, 34.74494876929529], [-77.32756763048232, 34.74500434404703], [-77.32733348762217, 34.74481131436943], [-77.32711804009064, 34.744561732681476], [-77.32581070260191, 34.74413423152508], [-77.32571998959372, 34.74407002846706], [-77.32569973141432, 34.74407560197035], [-77.32559274940496, 34.744075095276024], [-77.32380985641504, 34.74239940828048], [-77.32350303718877, 34.7426113991655], [-77.32374837528417, 34.74237832176538], [-77.32376805411101, 34.74232369701137], [-77.32385800559298, 34.742233855300825]], [[-77.48567369211877, 34.68249083703693], [-77.48563401972997, 34.682331700262516], [-77.48376802273188, 34.68233165768989], [-77.48321376395552, 34.68302219061023], [-77.48251286618151, 34.68357829649559], [-77.4822035170015, 34.6843000934587], [-77.48196548064915, 34.68485547771662], [-77.48158941119124, 34.68573293525659], [-77.48124416550735, 34.68653840220621], [-77.48001276022649, 34.689411728126885], [-77.47981948219325, 34.68989914131712], [-77.47974252323102, 34.690042267420104], [-77.47976309826727, 34.69032098740627], [-77.48001125940485, 34.69335535129132], [-77.48090519530308, 34.69491971227014], [-77.48201321439936, 34.69920449784528], [-77.48621243971496, 34.69677280332273], [-77.48710891068015, 34.69633705600579], [-77.4879892243398, 34.69359344604499], [-77.48811801256727, 34.69296681091937], [-77.48782883616494, 34.69083446490167], [-77.48779104493269, 34.69057946437134], [-77.48766754114183, 34.69033246707575], [-77.48674887182244, 34.6884952817033], [-77.48649818277772, 34.68799391604205], [-77.48551046159358, 34.687102174658385], [-77.48660075012278, 34.68501027288301], [-77.48659235531288, 34.68500289007951]], [[-77.39215828762609, 34.74458123769823], [-77.39196657086852, 34.74454332936759], [-77.39184720205989, 34.744428733559296], [-77.39156939986239, 34.744198502224855], [-77.39035194560657, 34.74326656685961], [-77.38992818605738, 34.7427264517093], [-77.38922217580631, 34.74195209511516], [-77.3897020150389, 34.74056478637221], [-77.39069065095693, 34.73941784001473], [-77.39091271345448, 34.73933147544443], [-77.39116001634547, 34.7395820450736], [-77.39252301764908, 34.74057661079841], [-77.39293675359124, 34.741197567242054], [-77.39484574652838, 34.74298863542408], [-77.3950812202994, 34.743081036566025], [-77.39501808707911, 34.74327041301739], [-77.39250803259593, 34.744526841360994]], [[-77.30623531498304, 34.66172915759438], [-77.3093089583757, 34.66352548943119], [-77.30958083462396, 34.66429109596419], [-77.31018589508554, 34.66427025239168], [-77.31091654172899, 34.66330528577258], [-77.31278050830178, 34.660669635289395], [-77.31278053037913, 34.65967408197064], [-77.31227780654196, 34.658956955373114], [-77.31132176661717, 34.65716440395401], [-77.31111488194756, 34.656667743947054], [-77.31099058402769, 34.656543444201084], [-77.3095737669091, 34.6551266121648], [-77.30812964785875, 34.65402050219184], [-77.30635703798094, 34.6546700959712], [-77.30575575109619, 34.65495523004722], [-77.30417135642057, 34.65747742072444], [-77.30440867613297, 34.65819027790771]], [[-77.44832688105349, 34.530191216498565], [-77.44832725074167, 34.530334180471414], [-77.44934479757669, 34.53097554698383], [-77.44807627103107, 34.53116980180336], [-77.44799168966169, 34.53044539080728], [-77.44796470659982, 34.53038666642688], [-77.44785684374331, 34.53025290180609], [-77.44810162654109, 34.53000850743926]], [[-77.44379236289733, 34.682589220264454], [-77.44372738522253, 34.68248871170407], [-77.44354348587876, 34.682246718717636], [-77.44357296882868, 34.68202256857432], [-77.44359143769668, 34.681882151588354], [-77.44379792167479, 34.68177037584569], [-77.44386358259598, 34.68174990472429], [-77.4441257994103, 34.68174442305534], [-77.44431524724997, 34.681740462235794], [-77.44475864528454, 34.681731190987236], [-77.44477064937703, 34.68173023112066], [-77.44520273339671, 34.68169567921383], [-77.44592333252326, 34.68169947565752], [-77.44561618166145, 34.68237138941971], [-77.4453658985885, 34.6825025146976], [-77.44524008182216, 34.682504340737545], [-77.44518443149795, 34.68251520794907], [-77.44480340047143, 34.682538279248426], [-77.44451297515286, 34.68262140013482], [-77.44440278841239, 34.6826311699381], [-77.44415654869599, 34.6826387514929], [-77.44397060499172, 34.682672459593135]], [[-77.45176720417054, 34.68195739925769], [-77.45169898447492, 34.68248027153878], [-77.45127996577861, 34.6826562633062], [-77.45129990373059, 34.682899790206044], [-77.45122949434129, 34.68305517050047], [-77.451129233852, 34.68315748681824], [-77.45074342387439, 34.68326429070191], [-77.45073809600166, 34.683265869774836], [-77.4507340941794, 34.68326606784215], [-77.45072804481097, 34.68326457044395], [-77.45042849493328, 34.68321495898764], [-77.45028690592326, 34.68310471777512], [-77.45021109179754, 34.68303401571315], [-77.45017459579805, 34.68298500326385], [-77.44996601364723, 34.682713043470336], [-77.44997570756206, 34.68268588260481], [-77.45003860610454, 34.68245891065575], [-77.45002087769711, 34.682093852054905], [-77.45009155893356, 34.68191840621205], [-77.45021134906148, 34.68169463164493], [-77.45045607244951, 34.681309931707354], [-77.45122708143734, 34.68119730218769], [-77.45129625275644, 34.681187821170724], [-77.45134141253783, 34.68116505847067], [-77.45145533858988, 34.68117514802103], [-77.45156960285522, 34.68131702867223], [-77.45177187445243, 34.681892504937686], [-77.45204794247688, 34.68166862564841], [-77.45222282560661, 34.68174749866638], [-77.45245132891085, 34.68175854118836], [-77.45266054663078, 34.68197785700255], [-77.45268501575808, 34.682000913421675], [-77.45270035541084, 34.68200535740992], [-77.45276194016643, 34.68215304870006], [-77.45273970436457, 34.682201289959366], [-77.452727263421, 34.68228067997707], [-77.45257742607066, 34.6824306594469], [-77.45249937435776, 34.682406288606174], [-77.45229580467978, 34.682296607096745]], [[-77.3573193004247, 34.769494680621186], [-77.3578121394948, 34.769689599923595], [-77.35804269004362, 34.769661469612075], [-77.35845420367323, 34.76954181534829], [-77.3588393666102, 34.7695642632271], [-77.35903441965921, 34.769606939067835], [-77.35912498994244, 34.769660164206385], [-77.35931854262633, 34.76982033159035], [-77.3594654024485, 34.769964713110156], [-77.35950707302214, 34.7701884863327], [-77.35954727590348, 34.770376880440395], [-77.35959654303562, 34.77067905853559], [-77.35951326478971, 34.771006950182446], [-77.35962144297298, 34.771238504012615], [-77.35977733740879, 34.771466822385776], [-77.35986580291512, 34.77168957060615], [-77.36004096090463, 34.77195637603016], [-77.36017165228336, 34.7723181210746], [-77.36017253192745, 34.77235615404482], [-77.36015544277072, 34.77237392593826], [-77.35982614849014, 34.77255229304636], [-77.35961440347796, 34.772580179608745], [-77.35946673552331, 34.77253611566073], [-77.35916330246536, 34.77256216495217], [-77.35890418778803, 34.772541822043365], [-77.35834059059545, 34.772664144568594], [-77.35815285224076, 34.772641754209964], [-77.35798862193838, 34.77264011504807], [-77.35612240953196, 34.77271502578578], [-77.35624938834032, 34.7711001045973], [-77.3562730867388, 34.771060012328576], [-77.35630211372262, 34.770999962913976]], [[-77.4256416067798, 34.731981096776174], [-77.42575769645899, 34.73193703503681], [-77.42582561193501, 34.73190783037702], [-77.42593992340547, 34.731895940734574], [-77.42603610280953, 34.731877841339895], [-77.42618614603442, 34.73189784376236], [-77.4262649276368, 34.732009543695916], [-77.4263178162856, 34.732066112308615], [-77.42628224800559, 34.73228003903193], [-77.42627842408666, 34.73229379414562], [-77.42626295119136, 34.73231218767136], [-77.4261565710594, 34.7324486139988], [-77.4259629569764, 34.732463058468916], [-77.42593771780592, 34.73246494143152], [-77.42585259856564, 34.732483350717594], [-77.42558027070234, 34.73254986044355], [-77.42546450364867, 34.73243957557774], [-77.4251337245903, 34.732336818726054], [-77.42531133066592, 34.7321892895183], [-77.42550920938413, 34.73202491932775]], [[-77.35219896749396, 34.55036506594292], [-77.35216366689085, 34.550336003535406], [-77.35203934037987, 34.550244483721805], [-77.35204320991735, 34.55023092991707], [-77.35205316480659, 34.55022483916564], [-77.35206076805724, 34.550219037838346], [-77.35214667881925, 34.55014615345784], [-77.35224337107451, 34.55007971021431], [-77.3522524835581, 34.55007344846994], [-77.3522605320865, 34.550068662406304], [-77.35228064020565, 34.550061904219014], [-77.35245833428075, 34.55000366251497], [-77.35261053732007, 34.549999298330725], [-77.35265488493162, 34.54999313898051], [-77.35273197347016, 34.54996176468728], [-77.35280667141998, 34.54999863329289], [-77.35292106419247, 34.55015039964836], [-77.35294295620835, 34.5502238391392], [-77.3526445006019, 34.550445261679265], [-77.35250075128131, 34.55044263489886]], [[-77.46066887934477, 34.50336195997567], [-77.46078756863459, 34.50316997790738], [-77.46080677481457, 34.503131924732415], [-77.46082542192677, 34.503118018067305], [-77.46104201581616, 34.502949170030305], [-77.46133963115345, 34.50272634099449], [-77.46153656767656, 34.502595353907395], [-77.4619611739414, 34.50250016030206], [-77.46219012732827, 34.502318768735705], [-77.46217144401886, 34.502173078554804], [-77.46248989222335, 34.50200780907908], [-77.46264789566567, 34.501947087403124], [-77.46298512548873, 34.50195933128883], [-77.46298807658174, 34.50211231299317], [-77.46305824251506, 34.50221809023151], [-77.4630042244157, 34.50234081315316], [-77.4629859951669, 34.502408311845926], [-77.46285074541406, 34.50254531508031], [-77.46280807599823, 34.502618906565694], [-77.4626923466996, 34.5027480045405], [-77.46240912020673, 34.50301915549072], [-77.46229382187539, 34.503192560740615], [-77.4621763749825, 34.50332357276125], [-77.46206610599764, 34.50344657695695], [-77.46199938729106, 34.503515371970174], [-77.46163416292259, 34.50380322416706], [-77.46148458304602, 34.50375815412702], [-77.46058425004009, 34.503605213166665]], [[-77.35190412693156, 34.78620789073807], [-77.35188321840644, 34.785970796892755], [-77.35194098875377, 34.785391135736184], [-77.35177779933566, 34.78532350131018], [-77.35228644135141, 34.784583271416274], [-77.35222280055086, 34.785174481966294], [-77.35342458513179, 34.784790986849565], [-77.35366470957464, 34.78485435807797], [-77.35396916528238, 34.78497913041509], [-77.35401066815172, 34.78501716747933], [-77.35413976939878, 34.78527755158585], [-77.35439676130652, 34.78545157505573], [-77.3544163601324, 34.785502421574996], [-77.3545020766133, 34.7855603662167], [-77.3546955580169, 34.78578345972855], [-77.3547389750086, 34.785833521160086], [-77.35478706784959, 34.78602651952601], [-77.35478969267321, 34.78613089182245], [-77.35436170055605, 34.78607964424364], [-77.35423100585714, 34.78614029623767], [-77.35364168294507, 34.78666110436123], [-77.35339175864007, 34.787051606708374], [-77.35334272782386, 34.7871348768691], [-77.35313450135209, 34.78748851139772], [-77.3530795591823, 34.787581819627], [-77.35291384851807, 34.787796894175], [-77.35285421140357, 34.787878579573416], [-77.35278054786981, 34.787899372992094], [-77.35271188862441, 34.7878759511304], [-77.35256726243702, 34.78786623663264], [-77.35254467508214, 34.78781890928396], [-77.35249844259198, 34.78772203840353], [-77.35247134520148, 34.78766526050657], [-77.35249585139955, 34.78732981960745], [-77.35244077936072, 34.78718207235291], [-77.35214586468418, 34.78681046398614], [-77.35187028444095, 34.786369227893346], [-77.35191050081322, 34.78628005929826]], [[-77.35441834041444, 34.77458443212502], [-77.35536016808449, 34.77400494953683], [-77.355351199984, 34.77488491848146], [-77.3563443288009, 34.77474218068225], [-77.35732997154896, 34.77460970376245], [-77.35759243564829, 34.774570892652704], [-77.35769486305804, 34.77471789380355], [-77.35787065938382, 34.77490591993816], [-77.35805046248015, 34.77501613196169], [-77.35808077207432, 34.77509853041615], [-77.35819160825044, 34.77540362915573], [-77.3583195096779, 34.7756222496508], [-77.35834072193967, 34.775787811372794], [-77.3584832256673, 34.77592182602546], [-77.35850172154939, 34.7759656391029], [-77.358515027446, 34.77602384488664], [-77.35843912875838, 34.77607362250488], [-77.35835879942766, 34.776142715555636], [-77.358324847954, 34.77618335309603], [-77.35794052629434, 34.77640062433569], [-77.35769754414424, 34.77652304020479], [-77.3576808511952, 34.77653145018827], [-77.3570114941007, 34.77684216475066], [-77.35696701997631, 34.776861494842166], [-77.3569219203908, 34.7768789199817], [-77.35688068818027, 34.776862615162685], [-77.35680656238686, 34.77683539630679], [-77.3561761409862, 34.77661591747042], [-77.35587335723676, 34.77636326365271], [-77.3554223022562, 34.77640711619583], [-77.35491745278622, 34.77552872592273], [-77.35437861687636, 34.775632740942505]], [[-77.32341568186683, 34.756111598734506], [-77.32337531556485, 34.756109079401696], [-77.32320763340331, 34.75609861417778], [-77.32287041556359, 34.75592654475815], [-77.32270667017391, 34.75606734808385], [-77.32245880779095, 34.75602529311976], [-77.32229787505183, 34.755835253112885], [-77.32223092491768, 34.75574503345244], [-77.32237758985727, 34.755561228847995], [-77.32265435659193, 34.75538253296011], [-77.32279279944521, 34.75537449003045], [-77.32300146715022, 34.75547603587842], [-77.32308690090139, 34.75554254671223], [-77.32345363248773, 34.7559811350808], [-77.32357736502632, 34.756047968304905]], [[-77.48603654003432, 34.68233170582542], [-77.48661452282445, 34.68500000939435], [-77.48662662537555, 34.68500289016323], [-77.48937677758339, 34.68528210770529], [-77.49081615893127, 34.68500284386732], [-77.49212970521376, 34.68445924517276], [-77.49270494386147, 34.684215796723294], [-77.49305502565088, 34.683168586415874], [-77.49229123918091, 34.68270943072799], [-77.4916879065429, 34.6824560955698], [-77.49060045185271, 34.682391818030844], [-77.49008262069701, 34.68233169069906], [-77.48879675726451, 34.68233170823625]], [[-77.32162580847582, 34.744054407951644], [-77.3222422473554, 34.7436701193432], [-77.32237716059356, 34.744515624811974], [-77.3226889119847, 34.74481362151023], [-77.32266839687469, 34.74517969942414], [-77.32262802899925, 34.74545598957866], [-77.32272386205341, 34.745574956785816], [-77.32265514067556, 34.74580640721253], [-77.32234200437182, 34.74586847983876], [-77.32222278486591, 34.7457963978061], [-77.32175915367839, 34.745650680473986], [-77.32167817118386, 34.745609338507464], [-77.3216592272154, 34.74560511064455], [-77.32161052116597, 34.7455953687798], [-77.3207131531644, 34.74480824613096], [-77.32068573798823, 34.74477700972386], [-77.3206624706297, 34.74475049884319], [-77.3204835069477, 34.74451993375727], [-77.32081204185016, 34.74446829328414]], [[-77.31266503049375, 34.69416763349158], [-77.31364835643771, 34.69307611535484], [-77.31409345018088, 34.69288066688003], [-77.31426586891527, 34.692855832299244], [-77.31442742725308, 34.6928413156279], [-77.31443833162206, 34.69296791144374], [-77.31424917542952, 34.69301882148273], [-77.3141214498137, 34.69398604014555], [-77.31401609332474, 34.694089131426416], [-77.31390970154456, 34.6940804754682], [-77.31268311510212, 34.69418367768852], [-77.3126823833938, 34.694183528950624], [-77.31268207805329, 34.69418345494298], [-77.31268135693364, 34.69418328761558]], [[-77.35386584233265, 34.78327246913417], [-77.35323148565274, 34.783174546212955], [-77.35340382388672, 34.78268965811411], [-77.3534365163666, 34.78265015319054], [-77.35346386924165, 34.782643493499386], [-77.35411213950971, 34.78242485418869], [-77.35448260103028, 34.7822999081977], [-77.35505592906958, 34.78220787208373], [-77.35534618068317, 34.78230240984877], [-77.35540900195019, 34.78243294561833], [-77.35540706159861, 34.78254735199606], [-77.35545185340654, 34.78272756353692], [-77.35540257606212, 34.782811796663054], [-77.35528905764687, 34.78295020831412], [-77.35522563442714, 34.78299946737939], [-77.35512762836208, 34.78305458617497], [-77.35481672177617, 34.78323393924083], [-77.35471112925875, 34.78326140859857], [-77.35446735987622, 34.78326462855789], [-77.3541003255097, 34.78323787707994]], [[-77.43096925434253, 34.57904992733132], [-77.4310359539422, 34.57898051871098], [-77.43130771334587, 34.57880211228086], [-77.43149358288258, 34.578690112769216], [-77.43151514863975, 34.57868766492788], [-77.43170172746879, 34.57882595927665], [-77.43173024417264, 34.578849429027954], [-77.43209585094972, 34.57915511802216], [-77.4321699048711, 34.579241180967834], [-77.43229310734043, 34.57943582834649], [-77.43238646623702, 34.57963446404931], [-77.43209609843862, 34.57984648372749], [-77.43193015501262, 34.57994616143404], [-77.43138649834923, 34.58011921047271], [-77.43130816544354, 34.58009938222123], [-77.43105714201732, 34.5799807660809], [-77.43086223303472, 34.57991069207691], [-77.43052000456008, 34.57969572767916], [-77.43032950402267, 34.57971252157958], [-77.43014692673506, 34.57953362191189], [-77.4304189971466, 34.5793855599145], [-77.43051990328611, 34.57939717317087], [-77.43079568212768, 34.57914256397934]], [[-77.42451999009425, 34.732890149787586], [-77.42433124815993, 34.73283143775875], [-77.42421469745173, 34.73283732730677], [-77.42396568718348, 34.73298198081303], [-77.423846430265, 34.73300200044778], [-77.42375802811871, 34.73301660001529], [-77.42363909326721, 34.73304842121872], [-77.42356322853104, 34.73307223198526], [-77.4234997368747, 34.73309215922761], [-77.42345903988573, 34.73303531797633], [-77.42346206041319, 34.73298653724815], [-77.42342467749148, 34.73293805626767], [-77.42343725117756, 34.732866376146], [-77.42344192516862, 34.73283973049974], [-77.42344579772005, 34.732817653678595], [-77.42346274221475, 34.73272105608652], [-77.42348682758367, 34.73271565856394], [-77.42352156603263, 34.7326302044911], [-77.42362445476324, 34.732661428446036], [-77.42377453140038, 34.73268054361995], [-77.42377923638796, 34.732680464085234], [-77.42378200604921, 34.73268183520899], [-77.42393480234992, 34.732696790533105], [-77.42410108450795, 34.732650843229436], [-77.4242134541122, 34.73263895699422], [-77.42427328086353, 34.73263499512492], [-77.42446005733473, 34.73261780465968], [-77.42458399976589, 34.732669073521805], [-77.42465629937071, 34.732614701982115], [-77.424708355288, 34.732583583318615], [-77.42495865460636, 34.732482326071775], [-77.42504963249065, 34.732702877257886], [-77.4248651574906, 34.73280525140838], [-77.42478661055625, 34.73282763414097], [-77.42467191945084, 34.73285038186596]], [[-77.33254535587386, 34.57520298843744], [-77.33260984969895, 34.5752120017038], [-77.33271439174872, 34.57532146269796], [-77.33274667646049, 34.57538150988497], [-77.33276119128969, 34.57547804447751], [-77.33273464512897, 34.57553082113169], [-77.33270205954462, 34.57563524118397], [-77.33249857475948, 34.57568422223072], [-77.3324124370383, 34.57569838478157], [-77.33232000304642, 34.57570309573559], [-77.33212269728205, 34.575718677544344], [-77.33201842535755, 34.575699835632705], [-77.33188995387991, 34.575726095158366], [-77.33136161515405, 34.575798962710564], [-77.33123031336291, 34.57580617731398], [-77.33103538761061, 34.57577726145366], [-77.33066276484482, 34.57580331503966], [-77.33047475053763, 34.575253273399866], [-77.33056526728424, 34.575205804418275], [-77.33049532168579, 34.57515931867049], [-77.33057217304955, 34.57449446217135], [-77.33083741448374, 34.57451155361363], [-77.3309187785704, 34.574642670175336], [-77.33123103770957, 34.574958329451725], [-77.33151318457442, 34.57506957047828], [-77.33189868202288, 34.57514369308052], [-77.33201890344037, 34.575133948782664], [-77.3321539748892, 34.575123000400076], [-77.33241291931303, 34.57512434337167]], [[-77.33533925677851, 34.68181772024337], [-77.33547527201938, 34.68167075055236], [-77.33550859232072, 34.68174887878737], [-77.33555778876976, 34.681787744657655], [-77.33553964215132, 34.68189591416329], [-77.33542607937511, 34.68184007131317], [-77.33540131624764, 34.68183141839691]], [[-77.36225724735849, 34.78060056210799], [-77.36268047000246, 34.781062983323444], [-77.36213175536872, 34.78103260005769], [-77.3618980724228, 34.781000893610354], [-77.36150829370781, 34.78096995941682], [-77.3612775437925, 34.78091669850986], [-77.36114960704042, 34.78086617487788], [-77.36106356480455, 34.78077679680109], [-77.36097204018485, 34.78071695691332], [-77.36097513869342, 34.78059643220774], [-77.36097061260261, 34.78049442526181], [-77.36098521766212, 34.78046976687631], [-77.36099620956854, 34.780456568945134], [-77.36102188933232, 34.78043548971141], [-77.36114320358155, 34.78032258588077], [-77.36122203221134, 34.78027302401536], [-77.36130811896128, 34.78021791412364], [-77.36169188813365, 34.78015783044065], [-77.36172071023131, 34.78014392907312], [-77.36176137389991, 34.78009868802153], [-77.36183198097415, 34.78013589673992]], [[-77.43861197828056, 34.67839972025325], [-77.43874702941469, 34.678187377987726], [-77.43886885647078, 34.67799475308425], [-77.43903808277827, 34.67760082400575], [-77.43907586470243, 34.67750809540465], [-77.43911694171524, 34.67739871166286], [-77.43876800738171, 34.67715933231281], [-77.43847826520103, 34.67690123145734], [-77.4381879617328, 34.67695884893158], [-77.43813839636766, 34.676968686243384], [-77.43789071229553, 34.677017844038346], [-77.43779882771564, 34.67703509963354], [-77.43776082884752, 34.677008331526295], [-77.43774922310529, 34.67704418321123], [-77.43752664338567, 34.677169834610275], [-77.43713686663602, 34.67738909135194], [-77.43753572431855, 34.67794480683386], [-77.43759870244858, 34.678032551177076], [-77.43796634093655, 34.67823820254143], [-77.43807305702259, 34.67830231773926], [-77.4382167029723, 34.67832575098026]], [[-77.32426145219267, 34.69551508728814], [-77.32361966719084, 34.695229873285264], [-77.3233468662034, 34.695158862293674], [-77.32326674608635, 34.69510721609707], [-77.32343524204569, 34.694782277823165], [-77.32373983346722, 34.69474335629913], [-77.32389660246986, 34.6947352966567], [-77.32413519318985, 34.69476463105517], [-77.3242461376864, 34.694748041065694], [-77.32429263707934, 34.69490427581836], [-77.32427966781951, 34.695031017537744]], [[-77.44701141365239, 34.68166119076757], [-77.44737140756763, 34.681599534192614], [-77.44742200746144, 34.681584620671124], [-77.4475115367911, 34.68157553371718], [-77.44770437436544, 34.68155596126781], [-77.4478527065651, 34.681540905687896], [-77.44803442835752, 34.681522460876025], [-77.44863036827589, 34.68146197069547], [-77.44851872419343, 34.68192762082248], [-77.44851580891546, 34.68195622946118], [-77.44822542005416, 34.68215000419704], [-77.44799704397006, 34.68217284780142], [-77.44784288127823, 34.682185027564906], [-77.44779701653258, 34.68219747673411], [-77.44773600821102, 34.682213024688345], [-77.44749326335346, 34.68228618810736], [-77.44739050856327, 34.68228073093476], [-77.44715672185455, 34.682342114185985], [-77.44666673074184, 34.68239824844413], [-77.44655127399213, 34.68240439180377], [-77.44649133391835, 34.68242734410484], [-77.44629538107446, 34.68243696302901], [-77.44629613740184, 34.68198742489761], [-77.44630422763875, 34.681712497189984]], [[-77.35322501928528, 34.55091770569497], [-77.35320534130737, 34.550785483234414], [-77.35324426932027, 34.55053959267346], [-77.35327685837485, 34.55042060044207], [-77.35317984653985, 34.550276321347056], [-77.35343825930858, 34.550074200322605], [-77.35351362375212, 34.5499419782252], [-77.35397118791954, 34.54998955460218], [-77.35422254678045, 34.55011552206906], [-77.35446416656504, 34.55009926310586], [-77.3545051193515, 34.550243800566975], [-77.35458755334186, 34.55046453331841], [-77.35459805539438, 34.55047524558501], [-77.3545977347677, 34.550480932331034], [-77.3546865169266, 34.55070733345627], [-77.35458153890127, 34.55095835887715], [-77.35457888115775, 34.550967650504546], [-77.35457512542393, 34.55098077857248], [-77.35447676602632, 34.55115575542641], [-77.35446345510447, 34.55122908814798], [-77.35439260908673, 34.5512593318774], [-77.35431418790252, 34.551325025825676], [-77.35419971403, 34.551389463657046], [-77.35419321302243, 34.551393734488414], [-77.35416806836558, 34.55140947268419], [-77.35409367770575, 34.551453835121876], [-77.35407352132765, 34.551456300552026], [-77.35399508832282, 34.551472714485286], [-77.35387920231895, 34.551507364075526], [-77.35379933353757, 34.55144842931385], [-77.3535692829598, 34.551357797612326], [-77.35351137062277, 34.5513029537787], [-77.35341356002807, 34.55115002439709], [-77.35329632822213, 34.55098293395839]], [[-77.43131476397062, 34.574260423268534], [-77.43131408870279, 34.574269814451974], [-77.43131209191209, 34.57427651091385], [-77.43130617179669, 34.57435134220291], [-77.4312591909388, 34.574328372090015], [-77.43051845112895, 34.57509326852616], [-77.43046062596504, 34.57518002660197], [-77.42990038392168, 34.575140270487026], [-77.42973050156954, 34.575177219755574], [-77.42948456513214, 34.57511845093229], [-77.4291629389331, 34.575192429602616], [-77.42915153447635, 34.5748078003364], [-77.42959452245283, 34.57451839467914], [-77.42970962349206, 34.574479502014114], [-77.42973026267084, 34.574444732069956], [-77.43001340231812, 34.5741526036914], [-77.43051798047144, 34.57368949112515], [-77.43062966797658, 34.573639958816784], [-77.4311350920159, 34.57363061322142], [-77.43130613570759, 34.5742466778727]], [[-77.4605488643562, 34.59381370050782], [-77.46016746851609, 34.594015895928976], [-77.46009507700731, 34.59407602014841], [-77.46002208829685, 34.594039132281196], [-77.4595613409117, 34.594046406621786], [-77.45937499611577, 34.59391617496516], [-77.45918029445234, 34.59386587090056], [-77.45905852445341, 34.59384604319154], [-77.45897150330245, 34.59381192652893], [-77.45890185702322, 34.59376068175162], [-77.4588327393313, 34.59366498589336], [-77.45879531206133, 34.59360644750702], [-77.45877772380956, 34.59352963705105], [-77.4588263593355, 34.5932818984911], [-77.45887876850837, 34.59325530427993], [-77.45919182527965, 34.59322576050889], [-77.45933615734329, 34.59322411800411], [-77.45965398477135, 34.593216860649434], [-77.45994428258824, 34.593219828836496], [-77.46040516956978, 34.59328900300562], [-77.46070847906451, 34.59342983251644], [-77.46081099458793, 34.59362168115614]], [[-77.34290186958548, 34.748980272284435], [-77.34287643966616, 34.74901637940697], [-77.3428648150464, 34.74903288471738], [-77.34283428295166, 34.749074882760674], [-77.34279368942795, 34.74906345817992], [-77.34282239625192, 34.749023791560155], [-77.34283771607018, 34.749008875592025], [-77.34287278247012, 34.74894241048856]], [[-77.32655819082589, 34.746174459096416], [-77.3265574644187, 34.746072966210235], [-77.32677607172164, 34.746006966977916], [-77.32673870522328, 34.7462335996093], [-77.32664894193141, 34.74636721474534], [-77.32654125027334, 34.7463953923049], [-77.32651889929966, 34.74638503293865]], [[-77.31717558963604, 34.694337819367014], [-77.31686182252707, 34.69412178924103], [-77.31680258958245, 34.69400693665872], [-77.31742370741124, 34.69368968268063]], [[-77.33709234324806, 34.768827778003285], [-77.33708109312141, 34.76881860253477], [-77.33709740705753, 34.76881036182822], [-77.33710230745018, 34.7688156944965]], [[-77.32710509027166, 34.562703640013446], [-77.32695310021653, 34.56256425120469], [-77.32710536200317, 34.56240591036544], [-77.32721413765502, 34.562526739794265]], [[-77.42657879410959, 34.575892308844274], [-77.42640617728871, 34.57606692386779], [-77.42630421169152, 34.576139128159035], [-77.42618488984404, 34.5762041115211], [-77.42606929153042, 34.57617712024987], [-77.42593176718611, 34.57616974057739], [-77.42592913438469, 34.57604637520522], [-77.4261818894404, 34.57586395491833], [-77.42618479243048, 34.57586177369841], [-77.42618523754051, 34.575860821934356], [-77.42618577634842, 34.57586026409809], [-77.42618701917212, 34.575857683563406], [-77.42634277318481, 34.57558332082135], [-77.42654489727123, 34.57538377438707], [-77.42657861043786, 34.57525659432563], [-77.42665715377862, 34.57536755031889], [-77.42676180140492, 34.57557969668872], [-77.42685360814929, 34.575763745073495], [-77.42664165715277, 34.57586213208385]], [[-77.44628241076268, 34.59828360683222], [-77.44672997648793, 34.59840818938291], [-77.44668371814917, 34.59858831153399], [-77.44652350403152, 34.598660660958345], [-77.44605552098652, 34.59847315000739], [-77.44595449963727, 34.5983771244364], [-77.44600462729161, 34.59828720307177]], [[-77.4254827740374, 34.57374565190496], [-77.4254554311823, 34.57390663081041], [-77.42539628395001, 34.573956356531184], [-77.42533339209727, 34.5739282800117], [-77.42505834680685, 34.57353619483651], [-77.42502454452287, 34.573480557604306], [-77.42539611468271, 34.57333707022926], [-77.425568444822, 34.57340195429412]], [[-77.34346193529193, 34.74815543063944], [-77.34341826761631, 34.7482466119058], [-77.34326742076578, 34.748305006364646], [-77.34336547339053, 34.748199837446826]], [[-77.33761738056968, 34.769232459481955], [-77.33782421561314, 34.76943898286165], [-77.33785650167658, 34.7694433659386], [-77.33794354573858, 34.76954433132345], [-77.33808963152491, 34.7695192547542], [-77.33809285675954, 34.769532808035585], [-77.33808319233911, 34.769541402174625], [-77.33793382548845, 34.76955915308248], [-77.3379226800508, 34.76956037090295], [-77.33780486407561, 34.769468293253276], [-77.33779090778613, 34.769464586709205], [-77.33755737112942, 34.769289130149964], [-77.33750299045721, 34.76924814041288], [-77.33758042405344, 34.76920984190834]], [[-77.42094937644985, 34.57406940969996], [-77.42095232754707, 34.5739503038227], [-77.42106243071592, 34.57384725531854], [-77.4211493571147, 34.573709642142], [-77.42145115204112, 34.573572326796274], [-77.4214550080408, 34.5735703208726], [-77.42145944068413, 34.57356780042301], [-77.42151103423367, 34.57362259089454], [-77.42182107541333, 34.573943463544346], [-77.4217248089947, 34.57409277799751], [-77.42146885381612, 34.57441894024711], [-77.42147073983489, 34.574433961864116], [-77.42151363526861, 34.57477561821611], [-77.42152121154997, 34.574835960928155], [-77.42153808116996, 34.57492126935936], [-77.42153904813169, 34.57493953025047], [-77.42145667478331, 34.574993219988556], [-77.42138587753041, 34.574961660850065], [-77.42138728119828, 34.57493007867512], [-77.42127254145431, 34.574871889536325], [-77.42125964871396, 34.57485432542887], [-77.42122360018034, 34.574705479863056], [-77.42108509150641, 34.574498652133414], [-77.4211886274932, 34.574459428021264], [-77.4210712211206, 34.574467066146596], [-77.4210625628161, 34.57444305832938], [-77.4209610466292, 34.574177060241134]], [[-77.42463138151003, 34.57398681088382], [-77.4246083226883, 34.57398274494295], [-77.42460378794006, 34.573970833381594], [-77.42459501173619, 34.57395288161985], [-77.42486951026808, 34.57364597646853]], [[-77.42215242818588, 34.573372022769654], [-77.42224425017524, 34.573281134929054], [-77.42250210826425, 34.57314254968975], [-77.42263819639751, 34.57313441316525], [-77.42273774976961, 34.573386425509845], [-77.42263827660835, 34.57346864413216], [-77.42252087437446, 34.57371576362794], [-77.42232786143016, 34.573780258949554], [-77.42224432177329, 34.57358532420829], [-77.42190514018989, 34.573872330366626]], [[-77.32226545123514, 34.69508913202187], [-77.32211004687937, 34.695084680087014], [-77.32226759814918, 34.695023570800245], [-77.32236608108688, 34.69501173773915], [-77.32234624851559, 34.69509333217857]], [[-77.45669184081052, 34.74468948973371], [-77.45660683585335, 34.744650435515645], [-77.45639535783826, 34.744606079719475], [-77.45617049069865, 34.74446100721212], [-77.45612509251556, 34.74443200435956], [-77.45609656964365, 34.74441696368191], [-77.45602693033746, 34.74436398905363], [-77.45590831324006, 34.74427231519952], [-77.45586995043858, 34.744205633203585], [-77.45578556206205, 34.74410032681165], [-77.45580242236605, 34.74386013223785], [-77.45615880755794, 34.74394454563971], [-77.45625917411427, 34.743968318315574], [-77.45635598935576, 34.74401644250801], [-77.45669332799831, 34.744167893106166], [-77.45678493445368, 34.744367542707096], [-77.45694172682816, 34.744683424119515], [-77.45697329880443, 34.74494392650316], [-77.4570043299849, 34.74498477518824], [-77.45694974610076, 34.74498573543456], [-77.45693057721937, 34.744972608351986], [-77.4569207323892, 34.74496586646562]], [[-77.3609603810815, 34.61203472794451], [-77.36093429900707, 34.612019035646014], [-77.36096040282429, 34.611988653243685], [-77.36098858471983, 34.61201122252406], [-77.3610753776919, 34.61208712212671], [-77.36107408146738, 34.612121423710015], [-77.3610482247831, 34.61212025874087]], [[-77.40087050103645, 34.581020863181706], [-77.40084878369103, 34.581028662817204], [-77.40082124791736, 34.58104216031667], [-77.4007727500785, 34.581017046452736], [-77.40077199554239, 34.581016781691176], [-77.40077175796289, 34.58101663257266], [-77.40077161508468, 34.58101639718631], [-77.40077165609867, 34.58101602549024], [-77.40077199556217, 34.58101558471786], [-77.40080911511336, 34.58094483879433], [-77.40082951864288, 34.5809460594038], [-77.40087050162298, 34.58098263802038], [-77.40089392011686, 34.58099874838161]]]]}, "type": "Feature", "id": "demo13", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.21163943593564, 34.66321343727479], [-77.20975523560644, 34.66033038088443], [-77.20945450711379, 34.65976831281712], [-77.2095027096556, 34.658424996049014], [-77.209229211185, 34.65831177098198], [-77.20639641817989, 34.65797242556882], [-77.20552945414678, 34.657779248117535], [-77.20593885758383, 34.65814341697946], [-77.20826536283766, 34.660212716191175]], [[-77.22740119510517, 34.677227164937], [-77.22812411197542, 34.676300799059376], [-77.2272286166309, 34.676080653111825], [-77.2266467006502, 34.67391418790389], [-77.22459225164008, 34.67281396826381], [-77.22376029265216, 34.67205422043961], [-77.22264751818585, 34.671797549765614], [-77.21917078926155, 34.66991039080176], [-77.22222683445429, 34.67262747175226], [-77.22455415318815, 34.67469642429957], [-77.22688158818295, 34.676765327282816]], [[-77.24740768829969, 34.69500473332242], [-77.25078814318768, 34.6938719570036], [-77.24849744835339, 34.693082305584554], [-77.24911670182682, 34.69141078282379], [-77.24889578014816, 34.69023154519471], [-77.24816573548016, 34.689576617427875], [-77.2465593721821, 34.68826934899711], [-77.24641060654771, 34.68667197698266], [-77.24585217385278, 34.68566194260592], [-77.24507722864173, 34.68374353326179], [-77.24477152763743, 34.683341296552754], [-77.24481919828482, 34.68248061807213], [-77.24567839355271, 34.67897471396713], [-77.24612249743703, 34.67696949180862], [-77.2476009244377, 34.674547151960596], [-77.24878228631555, 34.67180003572755], [-77.24924985816412, 34.670745319560694], [-77.24987655899683, 34.670118622336474], [-77.25133567569634, 34.66931791161268], [-77.25257835847411, 34.66851382698902], [-77.25420759668818, 34.666156076580556], [-77.25603524080698, 34.66920519708807], [-77.25743496284667, 34.66948509994147], [-77.25815504661625, 34.66960293513281], [-77.25952494833345, 34.66966477592995], [-77.2600107684524, 34.669555621838], [-77.26092517628275, 34.668716295681236], [-77.2628119636208, 34.667394518684986], [-77.26324180432248, 34.664140891203466], [-77.26307740002679, 34.66309727930835], [-77.26363062873385, 34.66204078083289], [-77.26408749630214, 34.662470510537325], [-77.265127643266, 34.66281723208293], [-77.26805917442411, 34.6637943538484], [-77.26923017259652, 34.664421979979004], [-77.27209799369052, 34.66538895165732], [-77.27463493618274, 34.66582853251599], [-77.2763377365251, 34.66577997788831], [-77.27951011138771, 34.664589634663855], [-77.2817123112997, 34.66433196448225], [-77.28222531375346, 34.664169547023654], [-77.28466748541591, 34.66476005984176], [-77.28615610767613, 34.66472280288559], [-77.28847189936593, 34.66466480131009], [-77.28972818460186, 34.66444778877363], [-77.2910672207795, 34.66418984029251], [-77.29323363504321, 34.663772543830326], [-77.29462165568881, 34.66330126041197], [-77.2965034999563, 34.662618305002574], [-77.29701881473484, 34.662481020410894], [-77.29738465088639, 34.66230971257427], [-77.29928414877392, 34.66100326260576], [-77.30130763918046, 34.66229602040737], [-77.30288908696174, 34.66440462517695], [-77.30402014860687, 34.666109551398925], [-77.30622501491055, 34.67006546843731], [-77.30647188875955, 34.670439197849014], [-77.30687358561829, 34.670610716088355], [-77.30819173848849, 34.672417428514336], [-77.30886076789987, 34.678020710814074], [-77.30884231221852, 34.67813884201585], [-77.30885731089136, 34.678210304114224], [-77.30887736546248, 34.6784517886194], [-77.30874625577131, 34.682050852338776], [-77.30869535079353, 34.68298262023178], [-77.30733790623182, 34.68374424549497], [-77.30563247293189, 34.685373447909406], [-77.30330333963106, 34.68669485590804], [-77.29898712897399, 34.689694295987664], [-77.29596016759577, 34.689928581878526], [-77.29357728841974, 34.69000247470301], [-77.29354298653845, 34.690005862855735], [-77.29352026272662, 34.69000246035347], [-77.29346016346067, 34.68999137734404], [-77.29121500454963, 34.68977661501168], [-77.29006103465736, 34.69045633830595], [-77.28983603123518, 34.69179146858775], [-77.29000239067007, 34.69241374598698], [-77.28973978531806, 34.69290831211621], [-77.29000234867218, 34.69394193013619], [-77.29015023706515, 34.69574468706402], [-77.29046512618086, 34.69624922524882], [-77.28867253103218, 34.70003221158417], [-77.28905985049494, 34.70132203671073], [-77.28971702622013, 34.70414908534742], [-77.28661658476636, 34.70556963721442], [-77.28608595705681, 34.70517177188386], [-77.28497793088073, 34.70479709031129], [-77.28721445346636, 34.70115276294006], [-77.28261176463205, 34.70287233036968], [-77.27955425122694, 34.70310505991704], [-77.27309948095964, 34.7064204326544], [-77.27229352088365, 34.70688095031424], [-77.27123064630447, 34.71343362609651], [-77.27151778249966, 34.71443385881423], [-77.27103610812996, 34.715986059462104], [-77.2771981530775, 34.72145533096695], [-77.28481273053896, 34.72821219643995], [-77.29242855289979, 34.734968529843314], [-77.30004562059206, 34.741724330822414], [-77.3038546215725, 34.74510203154202], [-77.30710142740406, 34.74798084651542], [-77.30669217697397, 34.74471371594805], [-77.30567542130967, 34.74370288582274], [-77.304920875596, 34.74143915176055], [-77.30479952384275, 34.741073899582766], [-77.30596569585687, 34.73717518077758], [-77.30585888914243, 34.73666190791381], [-77.30656539669505, 34.73671430719811], [-77.30646592225972, 34.736947014146935], [-77.30888574857205, 34.7380834590174], [-77.31008421608502, 34.74016373346879], [-77.31024579217515, 34.74019065922865], [-77.31017899574908, 34.740337650345296], [-77.31024553337855, 34.74055163265941], [-77.31069844348215, 34.7422159715922], [-77.3104572979336, 34.7431805532152], [-77.31019384729808, 34.74423445921767], [-77.30814472986643, 34.748110113573944], [-77.307902649574, 34.74844692440022], [-77.30796998421744, 34.748750928765936], [-77.31147355807201, 34.7518570332196], [-77.31211591595341, 34.75242646583507], [-77.31381099090528, 34.75205946327932], [-77.31443887830437, 34.75193161242709], [-77.3147324760632, 34.75141088963693], [-77.31570247441307, 34.75049768588225], [-77.31671295289067, 34.75032171471392], [-77.31687857135049, 34.750263216422724], [-77.31770578179433, 34.75002905295603], [-77.31677454873132, 34.750110017354714], [-77.31560703957821, 34.7502567766838], [-77.31537880739874, 34.750210773299486], [-77.31410181059064, 34.75106008296444], [-77.31235817315775, 34.7511772213517], [-77.31202661717083, 34.74995661047685], [-77.31158072442453, 34.74794348120808], [-77.31331436885688, 34.74553142937229], [-77.31418780032598, 34.74404684242696], [-77.31712758130712, 34.74328514790679], [-77.31525932954133, 34.7426424905032], [-77.3147301909981, 34.74066565595279], [-77.31473524957556, 34.73989273200691], [-77.31468190361026, 34.73972117354894], [-77.31557999645236, 34.73774484521111], [-77.31714497635312, 34.73645237941026], [-77.32232917330396, 34.73101521584717], [-77.32244383000878, 34.73093446968894], [-77.3277878990138, 34.73301143803684], [-77.3315060499595, 34.732410761148884], [-77.33237436971203, 34.73263795917977], [-77.3338631008714, 34.73254357106386], [-77.33507449892326, 34.733028153655], [-77.33476545843514, 34.733952424591955], [-77.33587182980952, 34.73387465645006], [-77.33736160283202, 34.73394303590454], [-77.33840620744792, 34.73430592687689], [-77.33870396638028, 34.7344799760329], [-77.3403015272614, 34.735118975264356], [-77.34192502918503, 34.734753078227435], [-77.34324387121588, 34.73404921922034], [-77.34544295238004, 34.73391400457227], [-77.34645187616995, 34.73442489244786], [-77.34661770175157, 34.734485611827004], [-77.34766201508401, 34.734521657824565], [-77.34812439575771, 34.73454407598475], [-77.34849880925697, 34.734427228985986], [-77.34891703762948, 34.73432468764844], [-77.34933802694397, 34.73434285624657], [-77.34926005330166, 34.734006661875696], [-77.34912730357375, 34.73394380781403], [-77.34950920061216, 34.73299771251913], [-77.34938146501011, 34.73272597112498], [-77.34861996663483, 34.73275728279975], [-77.34832727278493, 34.73223171910422], [-77.34621337243584, 34.73150042943705], [-77.34616005415802, 34.73149590824074], [-77.34615056547472, 34.73147850500609], [-77.34493371039608, 34.72928572528768], [-77.34415572479253, 34.72788368070946], [-77.34565901895755, 34.72557434725209], [-77.34668391981083, 34.721778347225026], [-77.35093966429918, 34.719154633435735], [-77.35194729649552, 34.71623037885072], [-77.35551207621437, 34.715741003238485], [-77.35687320027972, 34.716947135504746], [-77.35850858951657, 34.716938741498396], [-77.36020662773757, 34.71606978118666], [-77.36087883044728, 34.717018673214106], [-77.36215031505247, 34.7176154439978], [-77.36390093496712, 34.71784696332086], [-77.36445924973646, 34.71792106004998], [-77.36509027633352, 34.71766470647501], [-77.36695810879547, 34.71756324167756], [-77.3693614532815, 34.71662478113817], [-77.36938129849372, 34.71636101036463], [-77.36850202429699, 34.71430599554068], [-77.36834664534419, 34.712865070455365], [-77.3693946386299, 34.71126770627556], [-77.3696993341292, 34.71023041830037], [-77.37014332446385, 34.7087190571074], [-77.37056684263305, 34.70720114065858], [-77.37067398561456, 34.70669655612936], [-77.37061340552741, 34.70637277687707], [-77.37020711696894, 34.70636719346971], [-77.36858432466732, 34.70503416768704], [-77.36854953221479, 34.7048073721609], [-77.36855921989329, 34.70379373815973], [-77.3682179526567, 34.703134947076165], [-77.36777477686182, 34.70224972204005], [-77.36670572120553, 34.70192914046871], [-77.3654801024561, 34.701561588318114], [-77.3648414638857, 34.70135357421902], [-77.36450507030075, 34.701261007822836], [-77.36354847868142, 34.70098228698631], [-77.36146919947717, 34.70079524332681], [-77.36102190856552, 34.70022450331661], [-77.36008630789995, 34.6999851156501], [-77.35927297095989, 34.69974604165775], [-77.35897573718626, 34.69968644717554], [-77.35884376907708, 34.6996621070939], [-77.35782821667645, 34.699742028552045], [-77.35767810383321, 34.70003217333928], [-77.35728584275064, 34.70053778411292], [-77.35722502825195, 34.700745995251914], [-77.35722502005318, 34.700907892370594], [-77.35722501301338, 34.70159291540256], [-77.35721793813315, 34.70249019651107], [-77.35718387724313, 34.70270118757785], [-77.35713066932848, 34.70413419008601], [-77.35722497091558, 34.70558967802859], [-77.35359578298602, 34.707092936959796], [-77.35347590846328, 34.70737297728482], [-77.35306130104729, 34.70726562273549], [-77.34818716446614, 34.707976484449055], [-77.34712350454454, 34.70552722425256], [-77.34438724880314, 34.704569297248966], [-77.34428471654986, 34.70455801516392], [-77.33995860892136, 34.70560393940679], [-77.33923203071208, 34.70582772152187], [-77.33872649459343, 34.70568071067851], [-77.33493813486109, 34.70625983716647], [-77.33430956277321, 34.706284507943195], [-77.3338460441611, 34.70628172478023], [-77.32952940942114, 34.7065713524298], [-77.329423835273, 34.706614460572766], [-77.329368648686, 34.70657250305433], [-77.32925939362438, 34.7065326294352], [-77.32593993287612, 34.706056563974784], [-77.32489327350225, 34.70572239379985], [-77.32170877909428, 34.70615758560617], [-77.32042922821329, 34.70460176154768], [-77.31750836283953, 34.70612625654957], [-77.31321494701858, 34.706383519864815], [-77.31045867835047, 34.705944628792366], [-77.30948822269829, 34.70534244231096], [-77.30867757925301, 34.70356727675824], [-77.30663818655324, 34.70261215927872], [-77.30519294086348, 34.70203163048191], [-77.30346896501094, 34.70126699523589], [-77.3022680021644, 34.70116957515665], [-77.29906597625613, 34.69897137409945], [-77.30119715945993, 34.69676466617406], [-77.30123695240849, 34.696724876792416], [-77.30124709503558, 34.6966707436459], [-77.30113857588417, 34.694788902187426], [-77.3022814152821, 34.692617678019786], [-77.30527039375778, 34.69085115572896], [-77.30579047893636, 34.69062253849492], [-77.30917448686245, 34.6905757631483], [-77.30954864831192, 34.691688153530464], [-77.30967603189535, 34.691766313472606], [-77.30977260808098, 34.69183802806959], [-77.3105822565206, 34.69264567742932], [-77.3106050176799, 34.6930925695915], [-77.31158842755792, 34.693212494398686], [-77.3116792019346, 34.69180217728409], [-77.31106076938794, 34.691481072404386], [-77.31201691565371, 34.691038400516845], [-77.31400333075266, 34.68912858844916], [-77.31391364814365, 34.686931336113076], [-77.31466073845638, 34.68513963980703], [-77.3149992336383, 34.68346757981206], [-77.31519858185824, 34.683116533247066], [-77.3175232632604, 34.68165412072957], [-77.31817208867177, 34.68117438636845], [-77.3195525011697, 34.68057050395852], [-77.32185349836236, 34.67933242674765], [-77.3230071270274, 34.67926225714183], [-77.32565393524456, 34.67790119866552], [-77.326073048098, 34.67796796720577], [-77.32819160470945, 34.67789924793569], [-77.32956967366646, 34.67596215801732], [-77.32984040500304, 34.67526128284467], [-77.32976061988688, 34.67474172091088], [-77.32929130688731, 34.67411499778686], [-77.32874481343313, 34.672370400508335], [-77.32835264470566, 34.671566322574144], [-77.32759463234649, 34.6701024884856], [-77.32663681821242, 34.66825265735447], [-77.32652526970928, 34.66791795137064], [-77.32633544699577, 34.667869731266435], [-77.32627115725842, 34.66783015860421], [-77.32480820123321, 34.66630044058525], [-77.32440270578284, 34.666182753718], [-77.32348243756618, 34.66670038401041], [-77.322352750613, 34.66656756683818], [-77.32085353259093, 34.6663660873373], [-77.3162142810506, 34.66257945973356], [-77.31786059916766, 34.66007423769187], [-77.31786055827004, 34.658977990511744], [-77.31751914039178, 34.65776859864893], [-77.31738452899049, 34.65735529198368], [-77.31667849854477, 34.656300661072116], [-77.3163548873645, 34.65580845500924], [-77.31609708502536, 34.655432167540866], [-77.31449779801665, 34.65456566077861], [-77.31303662324477, 34.65294495148268], [-77.31140145265778, 34.65151149584046], [-77.31058756309828, 34.649846938478454], [-77.30972070360126, 34.649183481962666], [-77.30836705904339, 34.648335195353525], [-77.30806868113496, 34.648258940789106], [-77.30694721752486, 34.648125073450274], [-77.30427808676025, 34.64738787284489], [-77.30420610535923, 34.647387352503586], [-77.30412699376402, 34.64735600625182], [-77.30158575987029, 34.64693242474319], [-77.29985675016873, 34.646812071187256], [-77.29812599365279, 34.64698043864117], [-77.29660839191547, 34.64765527938004], [-77.29523909275463, 34.64857281267918], [-77.29484245089094, 34.6492531465336], [-77.29366251599845, 34.65216436161954], [-77.29417078605695, 34.65396639369812], [-77.29417080132974, 34.65547060577413], [-77.29355486696834, 34.65797891488138], [-77.29346370892013, 34.658646654508324], [-77.2929301262451, 34.6590161733182], [-77.29133211586775, 34.65966909569556], [-77.28936735136519, 34.66016032147252], [-77.28888757653475, 34.66025274406039], [-77.28837272001118, 34.66034168112412], [-77.28643699454294, 34.66080643028397], [-77.28455151617146, 34.66100172170564], [-77.28391778590814, 34.661017582586716], [-77.28344702256788, 34.66090375283798], [-77.28220011544141, 34.66048393581742], [-77.28145659747818, 34.660251066916906], [-77.28113353038731, 34.65990540293164], [-77.27975071949174, 34.65903604852715], [-77.27766786669467, 34.65538944777196], [-77.27666237265481, 34.65596722718218], [-77.27584117931836, 34.654601857414946], [-77.27643915941351, 34.65342029122737], [-77.27723879249399, 34.65324628183508], [-77.28027388461742, 34.651662472949056], [-77.28193852796952, 34.651135028440564], [-77.28361124318096, 34.65140632580479], [-77.28665809759114, 34.65228749911037], [-77.28477306449163, 34.649109891189994], [-77.28358874972875, 34.646791021766816], [-77.28193645640454, 34.645544020961516], [-77.28039162347528, 34.641089141631056], [-77.28031405766953, 34.640487408364244], [-77.28174498021777, 34.637378236131], [-77.28189519880864, 34.63715291681425], [-77.28372617306636, 34.63448356852955], [-77.28413636747725, 34.633906266864464], [-77.28544458767288, 34.63303414394049], [-77.28747183772578, 34.63168265146505], [-77.28824709756435, 34.63148536751706], [-77.28914462795188, 34.631294128375906], [-77.29064338613327, 34.630665010063154], [-77.29234543720979, 34.63089678757376], [-77.29326681929875, 34.630978648059646], [-77.29407700667826, 34.63071508648137], [-77.29655703230709, 34.63151338641836], [-77.29861381779031, 34.63210525726411], [-77.2995050785618, 34.631109770140796], [-77.30192511610858, 34.629168227129675], [-77.30283761338283, 34.627627515622265], [-77.3049022443241, 34.626609960356326], [-77.3063890081477, 34.62341530147438], [-77.30601517693545, 34.622309648184434], [-77.30674603535134, 34.621578818849116], [-77.30877564315004, 34.6195492219592], [-77.30923241235257, 34.619089284271794], [-77.31100888952744, 34.61730049791781], [-77.31126185761947, 34.61653253429923], [-77.31188687063266, 34.615910280094155], [-77.3131855240359, 34.615387610567915], [-77.31493786553986, 34.61462778234241], [-77.31550764435819, 34.61420047313151], [-77.3165317040544, 34.6138235448011], [-77.31795821334907, 34.61365415738399], [-77.32021390064055, 34.61421812012531], [-77.32058918522685, 34.61400716961104], [-77.32376240318732, 34.60753032992895], [-77.32394190054858, 34.60702279411064], [-77.32473614731714, 34.606763645801784], [-77.32587631958998, 34.60724036160473], [-77.32850541004625, 34.60848270778244], [-77.33001704126974, 34.60995746935497], [-77.33229101420737, 34.610169454223545], [-77.33501203705494, 34.60933411862029], [-77.33717524910651, 34.6096809994365], [-77.33796042193511, 34.609441694626], [-77.34066203936109, 34.609441658490105], [-77.34285270997958, 34.6092888038723], [-77.34650294530523, 34.61112334873869], [-77.34681822588406, 34.6112388625904], [-77.34696742766761, 34.611462216553456], [-77.34742786648425, 34.611486260176655], [-77.3495156408754, 34.61069007458025], [-77.35012143518878, 34.610472153796856], [-77.35045062981135, 34.607511852100764], [-77.35327790740484, 34.60500501743908], [-77.35609077262804, 34.6067133192563], [-77.35643018215026, 34.606662451701396], [-77.35749740529727, 34.60729525006921], [-77.35868167223904, 34.606946051460184], [-77.35958338796371, 34.60668016562454], [-77.3600714290037, 34.606300408188645], [-77.3599377038775, 34.605794175533816], [-77.359782302231, 34.60560284967002], [-77.36007646222008, 34.60290689985844], [-77.36024006619118, 34.60235422926701], [-77.36008369696515, 34.60184037640942], [-77.36002386656887, 34.600687140644176], [-77.36020429767362, 34.599628052180876], [-77.36049435550878, 34.59892120212096], [-77.35958792703289, 34.59751980606295], [-77.35871389722566, 34.59672302507168], [-77.35816811476104, 34.59585959647214], [-77.35643742409967, 34.593121545145095], [-77.35620945767101, 34.59299072740634], [-77.35620030459363, 34.59274639163175], [-77.35623399949384, 34.59252203750212], [-77.3564378062534, 34.5924134182526], [-77.35717731097472, 34.59000466398202], [-77.35801561744854, 34.58959254608773], [-77.35921854883289, 34.58891557784541], [-77.35943150789274, 34.588711644260385], [-77.35959237316762, 34.58865698607276], [-77.35977320276614, 34.588640930121386], [-77.36009489625096, 34.58848163474633], [-77.36038066275705, 34.588340127982605], [-77.36040434565828, 34.588320336874844], [-77.36058320814283, 34.58808811774493], [-77.36070879482844, 34.587851956728734], [-77.36079132841435, 34.58743292814629], [-77.36080074090029, 34.58741416779078], [-77.36079678247873, 34.58739147789555], [-77.36053002465167, 34.58702858472068], [-77.36038139494886, 34.586864539761585], [-77.36006072137194, 34.5865926689631], [-77.35995048250315, 34.58626290386897], [-77.35962518678765, 34.58549425336111], [-77.35960821121243, 34.585463067871565], [-77.35960453189695, 34.585452244609236], [-77.35959401578923, 34.58541081631492], [-77.35938367359296, 34.584873202049195], [-77.35894804052387, 34.58470899037628], [-77.35887557114336, 34.584644797628], [-77.35867369142318, 34.58460557322688], [-77.35801810019083, 34.584861763985714], [-77.35706763702873, 34.58515439773405], [-77.35644159159492, 34.58543628420431], [-77.35595542615798, 34.58546502353006], [-77.35328938749915, 34.58507668510681], [-77.35154630478563, 34.58510480504984], [-77.35013687187784, 34.585246176262814], [-77.34773690677338, 34.58458512542727], [-77.34698495779328, 34.58447976538052], [-77.34653576734566, 34.58443167009532], [-77.34583294232226, 34.58404878928222], [-77.34383316019328, 34.58362169252479], [-77.34266166928555, 34.58324243004999], [-77.34195308661941, 34.58323631069129], [-77.34068110916792, 34.583191617417405], [-77.33794167793134, 34.58178721602423], [-77.33763454627754, 34.581718617156916], [-77.33752994847679, 34.581645566936054], [-77.33699914916087, 34.581350577032154], [-77.33546660636239, 34.580970346697924], [-77.33437814706207, 34.581028649593065], [-77.33369596097342, 34.5816631001866], [-77.33217880607303, 34.581588369322944], [-77.33122566734366, 34.58125841278708], [-77.33080928326812, 34.581114264990795], [-77.32995797139768, 34.58090459922998], [-77.32964974461265, 34.58099895770763], [-77.32833678945991, 34.57977141381366], [-77.32860655944492, 34.57916017474238], [-77.32876201929406, 34.57705196779753], [-77.32888688088683, 34.57629607297143], [-77.32910391540132, 34.57516033016033], [-77.32908488957699, 34.57456947089841], [-77.32841035602425, 34.57430996726241], [-77.32807977391911, 34.57406673321981], [-77.32785020516208, 34.57389782133256], [-77.32808068303143, 34.57304904445245], [-77.32808372595936, 34.57301844229575], [-77.32808570899655, 34.57301490802097], [-77.32810092349416, 34.5729909680861], [-77.3287068478165, 34.571901102709276], [-77.3288700129444, 34.57154297949886], [-77.32900386097839, 34.571184820166245], [-77.32904669265127, 34.57098881446127], [-77.32903296155276, 34.570506158313236], [-77.32895951234413, 34.570342119204724], [-77.32892587836785, 34.57028795274458], [-77.32887122765206, 34.57017156961699], [-77.32866926549707, 34.56975277945624], [-77.32858574202793, 34.569546757894344], [-77.32887244826429, 34.568794966435355], [-77.3289309564713, 34.568711040518146], [-77.32913576970611, 34.568618640267644], [-77.32910197414026, 34.56837656476462], [-77.32936169988054, 34.56773709555466], [-77.32869497854463, 34.56717662278566], [-77.32818720568706, 34.5663160216712], [-77.32812498191169, 34.56621667709775], [-77.32811191273046, 34.566191523319254], [-77.32808747106867, 34.56547554031003], [-77.32808009707821, 34.565374053842596], [-77.32808421947396, 34.56536985514653], [-77.32796252823425, 34.564677288817514], [-77.32786445358803, 34.564555969443894], [-77.32769445104122, 34.56443233221957], [-77.3275039562433, 34.564388560531555], [-77.32730065562195, 34.56425334866344], [-77.32680315198385, 34.56439538352073], [-77.3265126099212, 34.56439575061614], [-77.32618220949482, 34.564441703397655], [-77.32558289919366, 34.564883816047065], [-77.3251539053271, 34.565180227358105], [-77.32493584635652, 34.56538854347174], [-77.32420626231439, 34.56599416045262], [-77.32300015890678, 34.56695301872888], [-77.32239766709282, 34.56770311948481], [-77.32177986936216, 34.56977666060772], [-77.32146761088015, 34.570569448484406], [-77.32044114546042, 34.57267367457371], [-77.31909923623115, 34.574305843683206], [-77.31835051747858, 34.577519092711164], [-77.31546623651116, 34.579235756296825], [-77.30947636968128, 34.58213744253568], [-77.30915827774744, 34.58233784684991], [-77.30901789318489, 34.58239455580402], [-77.30871756730149, 34.58258599234144], [-77.30543985727323, 34.58438950623875], [-77.30453193428254, 34.58498244727397], [-77.3020081259416, 34.586521231161235], [-77.30012042456401, 34.58851224909642], [-77.29830931661687, 34.590763698969276], [-77.29741923999978, 34.59291213801832], [-77.29646538019011, 34.59582145523613], [-77.29605299492732, 34.59697561553314], [-77.29371543480266, 34.59814439876], [-77.2927542071247, 34.59923218422233], [-77.29208412719406, 34.59950668633343], [-77.29118785263859, 34.5997318874872], [-77.2873222786954, 34.601292225993], [-77.28566778078877, 34.601476590453444], [-77.28431342545471, 34.602022057849254], [-77.28246187978064, 34.602586198095764], [-77.28086440434316, 34.60413836570835], [-77.28037111939204, 34.604930028471834], [-77.27963710051934, 34.606822584861604], [-77.27938272980896, 34.608094635494936], [-77.27884689900588, 34.610105795828204], [-77.27666225779032, 34.613980904424], [-77.27589652218387, 34.615518493829065], [-77.27496699334814, 34.61630419778146], [-77.27238284641149, 34.61857129918876], [-77.27067595778936, 34.620449886681925], [-77.27004110250509, 34.62072734811906], [-77.26805789931782, 34.620160672317894], [-77.26709747204268, 34.619848146154915], [-77.26530121053143, 34.619177976008636], [-77.26482656109667, 34.61897456735223], [-77.26329776946827, 34.61818857334332], [-77.26057197665729, 34.617136063309275], [-77.26048507029682, 34.61708091973195], [-77.26006749896987, 34.61686654207628], [-77.25915411478334, 34.61637813346931], [-77.25881490859351, 34.616324222275225], [-77.25805128094864, 34.61638856808382], [-77.25769219656272, 34.61674452296151], [-77.2576515334797, 34.616970559632044], [-77.25746470649683, 34.61718158826584], [-77.25693978933495, 34.61849581352514], [-77.25696642357575, 34.61880201886045], [-77.25670916955478, 34.619138923132674], [-77.2553618074109, 34.62202573298677], [-77.25535992285592, 34.62244634323704], [-77.25495632277367, 34.62283874268847], [-77.25317889813965, 34.625782016181745], [-77.25313753366073, 34.626042225760045], [-77.2529966873747, 34.626354824685706], [-77.25241309714103, 34.62636345256875], [-77.24759851946135, 34.627870352022896], [-77.24437638308618, 34.62890931252699], [-77.2441342592993, 34.628992523682356], [-77.24370896770765, 34.6290707790709], [-77.2391499515306, 34.629819499532026], [-77.23612107568171, 34.63188520420436], [-77.23580740784548, 34.632106380227604], [-77.23566603061126, 34.632207910464786], [-77.23550504830479, 34.632395119937264], [-77.23563167534331, 34.632851417398506], [-77.2353280939345, 34.63540031122531], [-77.23565562078772, 34.63597787514712], [-77.23637216962575, 34.637948701520926], [-77.23788065053469, 34.63992401804985], [-77.23804895398243, 34.64026059412352], [-77.23784556105134, 34.64180454522388], [-77.23797099572433, 34.643228793417556], [-77.2379407704778, 34.643699543956146], [-77.23751418058032, 34.64414239976441], [-77.23609958852754, 34.64525131416647], [-77.23415667806448, 34.64717217895352], [-77.2334497173594, 34.64785886838446], [-77.23222541073498, 34.64890538444932], [-77.23173589211197, 34.64952352105133], [-77.23156236608234, 34.650738506946254], [-77.231446841725, 34.651546871086374], [-77.23106917075602, 34.654190215978716], [-77.23108471191077, 34.65447170076265], [-77.23109225070797, 34.65461845348167], [-77.23110800278928, 34.655103727498414], [-77.23124987109463, 34.65749846270372], [-77.23111436303478, 34.658244852296406], [-77.23209768906807, 34.65981186862403], [-77.23237937912087, 34.660015091609395], [-77.23428229581121, 34.66216201937328], [-77.23436662688438, 34.662210984586544], [-77.23448810351739, 34.66228151303587], [-77.23953691257631, 34.66511530484794], [-77.24133531374602, 34.66583354538095], [-77.24183899356417, 34.665996090042704], [-77.24303908809844, 34.66736637375238], [-77.24313652445308, 34.66770099594534], [-77.24302271976545, 34.66921021040875], [-77.24291872569944, 34.67016929686169], [-77.2427386279852, 34.67262452492794], [-77.24174768370219, 34.67907956351721], [-77.24164918678744, 34.67952429774041], [-77.24162108559554, 34.67963896327428], [-77.24126695694125, 34.68603264426485], [-77.24219032380906, 34.687247596276436], [-77.24303206655924, 34.69075451044117], [-77.24305151378192, 34.69096332512738], [-77.24312035180775, 34.69101934594042], [-77.24307414487699, 34.69115497173724], [-77.24675228358566, 34.6944225554686]], [[-77.37955996598114, 34.7781103677483], [-77.37999663908735, 34.77259669137336], [-77.38040441735605, 34.77160620081947], [-77.38403355661055, 34.76910657582645], [-77.38443754747341, 34.768543546015145], [-77.38328472514786, 34.76599673926409], [-77.38505628408213, 34.7683668131491], [-77.38536351970644, 34.7685526298158], [-77.38630601906624, 34.770935972514636], [-77.38796300370645, 34.7742498329621], [-77.3879047803339, 34.77463496180107], [-77.3884339838049, 34.774414548130125], [-77.40010913494261, 34.769550592754506], [-77.40594617728954, 34.76711821452283], [-77.40599298841354, 34.767098704335424], [-77.40600988406415, 34.766898426705374], [-77.40377739111221, 34.761887084119174], [-77.4038097411161, 34.76086711260704], [-77.40283693012047, 34.76014175900829], [-77.40202801662863, 34.758038994098804], [-77.40008213459572, 34.75753491910898], [-77.39823795956528, 34.758305427883066], [-77.39593088475354, 34.759143480154094], [-77.39450196711662, 34.76038604585279], [-77.39256515801414, 34.76017225545523], [-77.39023817018497, 34.759381048893935], [-77.3855978297088, 34.75780322540848], [-77.38319248794099, 34.7571029293741], [-77.37853666344925, 34.758232926412575], [-77.37735003612653, 34.75955280014056], [-77.37558730769277, 34.76097400849712], [-77.37432456871551, 34.76243929161748], [-77.37403219733335, 34.76284386906368], [-77.37353275855203, 34.762769033581016], [-77.37151349485042, 34.76198075222711], [-77.37132022264308, 34.76190529883698], [-77.36993147443884, 34.762126332312235], [-77.36993243308605, 34.762350500861054], [-77.36928073054797, 34.76275454881874], [-77.3692695512322, 34.763236942353466], [-77.36880699036996, 34.7632818745481], [-77.36859826796085, 34.763183667616886], [-77.36747534858898, 34.7637274887152], [-77.36728907522897, 34.76379394724797], [-77.36724368178136, 34.7647648427218], [-77.36672279943834, 34.76560465930865], [-77.36677819772815, 34.765720373905175], [-77.36747836022246, 34.7661826046045], [-77.36768955373894, 34.766313441457605], [-77.36816880984371, 34.76678765930531], [-77.36818594607956, 34.766813328507105], [-77.36841287480306, 34.76741084203815], [-77.36836860337533, 34.7675970035205], [-77.36818847428887, 34.76825982484178], [-77.36797381969357, 34.76837562358496], [-77.36790525580408, 34.76868245117587], [-77.36826102039166, 34.76876429987132], [-77.36876943948813, 34.76920998628495], [-77.36937320595659, 34.769352971404935], [-77.3700137873576, 34.769089445020526], [-77.37040625341841, 34.76889220160915], [-77.3715996241254, 34.76852591898513], [-77.37191502690149, 34.768365025120985], [-77.37229493117151, 34.768128328056605], [-77.3734578018989, 34.76917606213168], [-77.37345777161964, 34.769940669979704], [-77.37345771988105, 34.77296274207713], [-77.37341856009925, 34.77352721435996], [-77.37339474058413, 34.773779267061144], [-77.37369217831503, 34.77820516083543], [-77.37302898118118, 34.780829798426446], [-77.37675741085044, 34.7792774348736]], [[-77.49577654161212, 34.7296322245749], [-77.49749753324006, 34.7275383869666], [-77.49749758281955, 34.72534093582555], [-77.49751075861748, 34.72526082327244], [-77.49856029644052, 34.723438138074016], [-77.50092551002413, 34.72249762049031], [-77.50319133880103, 34.722578783811976], [-77.50622621772754, 34.721897503624646], [-77.50954268549401, 34.72387897700779], [-77.51095213297022, 34.72328983685686], [-77.51302813186287, 34.72242193491638], [-77.51197664680274, 34.719737388412696], [-77.51178433930836, 34.71936952135924], [-77.5116999281268, 34.71907989090923], [-77.51017732142626, 34.717087260888064], [-77.5098704128599, 34.716597241629486], [-77.50905655989791, 34.71592250151215], [-77.50816503917878, 34.71517586070638], [-77.50585001284355, 34.71470554267442], [-77.505632963863, 34.714614453304584], [-77.50476664571872, 34.715158389720045], [-77.50329512167332, 34.71614809146489], [-77.50306509100247, 34.71639928359788], [-77.502634313422, 34.71657491113449], [-77.50018732904564, 34.71767863162961], [-77.49681216113824, 34.718982763573706], [-77.49432247762468, 34.72005941253338], [-77.49361800111897, 34.7217137187388], [-77.49328666449833, 34.723528362888416], [-77.49318883663746, 34.7241847768833], [-77.49286752220945, 34.72592300432974], [-77.49206846902311, 34.72653555164002], [-77.49104334859099, 34.7266594124847], [-77.48946576840703, 34.72666954115624], [-77.48475193949325, 34.7275621914842], [-77.48442864866918, 34.727817737035615], [-77.48375616780893, 34.72868335665512], [-77.4836486266496, 34.72755500027458], [-77.48305167515298, 34.726968781500105], [-77.48047692452496, 34.725307936001784], [-77.47965125688039, 34.725140116682724], [-77.47899034215946, 34.72491933684007], [-77.47740983390085, 34.72402313350351], [-77.47595789185581, 34.72362359296608], [-77.47503580276138, 34.72336534741328], [-77.47429572548569, 34.72323395854121], [-77.4710070253143, 34.72276419164126], [-77.47029371624518, 34.72267875178677], [-77.47010128697909, 34.722695377114704], [-77.46985674645596, 34.722599873351605], [-77.46626971343903, 34.722087392566515], [-77.46519329309683, 34.7219336432607], [-77.46335142249393, 34.72232677772744], [-77.46309255830504, 34.72287851796936], [-77.46279471101903, 34.72436822091031], [-77.46182266701493, 34.72678363701194], [-77.46178590218253, 34.72848770237321], [-77.46189428791021, 34.72949626077558], [-77.46236016886141, 34.7317361240071], [-77.46248015142808, 34.73282332009455], [-77.46268122807402, 34.73327213587556], [-77.46400418422078, 34.73492044332289], [-77.46454762385025, 34.73553181303677], [-77.46593941849795, 34.73709753710473], [-77.46730053387739, 34.73795414695256], [-77.46951450988566, 34.73933963040967], [-77.47035782088606, 34.739556656423716], [-77.47154034353706, 34.739755614140186], [-77.47596295161975, 34.737908877599246], [-77.4817953711751, 34.735473035354765], [-77.4847114475621, 34.73425501450716], [-77.48762743501939, 34.73303692718884], [-77.49345914313683, 34.730600553178775]], [[-77.52646761638321, 34.71680243334426], [-77.52588702838261, 34.71508595286603], [-77.52609919653186, 34.712157260296365], [-77.5307085374404, 34.70788326370066], [-77.53069958053625, 34.7078230697295], [-77.5270795159265, 34.703000404725344], [-77.52326531325177, 34.702402960842804], [-77.520291476137, 34.70033150442357], [-77.51962568179151, 34.699532879467455], [-77.51942742087245, 34.69927647835608], [-77.515424714055, 34.697946507242655], [-77.5150029538105, 34.69786555775517], [-77.51468839005587, 34.69767505707193], [-77.51078131416932, 34.696372719459546], [-77.51035405357348, 34.69623028933549], [-77.50985620631185, 34.69610008584036], [-77.50621715797705, 34.695086441909744], [-77.50415832754973, 34.69648680348875], [-77.50239600540083, 34.69650318115096], [-77.50124914325966, 34.697550302452285], [-77.50188362986329, 34.69850218800194], [-77.50160539882522, 34.699910148265545], [-77.50131855987135, 34.7005245383409], [-77.5009524090712, 34.70100477354497], [-77.49945214766421, 34.7013942318192], [-77.49931340582046, 34.70142997070364], [-77.49755169598097, 34.701430006308016], [-77.49675019434473, 34.70143001777423], [-77.49487931932, 34.701430013491986], [-77.49420415464307, 34.70137054507638], [-77.49389040512848, 34.70143000829854], [-77.49314923204896, 34.701429988357056], [-77.49163685029687, 34.701384678339664], [-77.4897173090166, 34.70059456062132], [-77.48903300310195, 34.70030129837578], [-77.48916072525002, 34.699686134671104], [-77.48977162565635, 34.69896620753166], [-77.49022434183382, 34.698434408491025], [-77.4904047893475, 34.69823640765834], [-77.49065937420634, 34.69615676541927], [-77.49076370019353, 34.69600595032308], [-77.4922933766658, 34.694424446362085], [-77.49198071665165, 34.692338474388514], [-77.49177145887779, 34.69176524663241], [-77.49244347578457, 34.69092800147838], [-77.4934941412838, 34.6898895995656], [-77.49466441498724, 34.68861815477459], [-77.49745192508169, 34.68631722873671], [-77.49864499667173, 34.68452768305736], [-77.4987915206617, 34.68430791668634], [-77.4988535455798, 34.68361070577956], [-77.49908819978405, 34.68317300702236], [-77.49886861151288, 34.682986614512984], [-77.49864634213426, 34.68285646269713], [-77.4976949729537, 34.682429758906935], [-77.49719650455646, 34.68198661272476], [-77.49435670384825, 34.680282726050216], [-77.49402497804131, 34.67993732219594], [-77.49387602180354, 34.679780240967496], [-77.49176934168194, 34.679379340423466], [-77.48907679654384, 34.67866866070279], [-77.48879954248912, 34.678668661299284], [-77.48811761777942, 34.67866865816015], [-77.48486725580202, 34.6786686407226], [-77.48237650058383, 34.679203394154094], [-77.48092243874385, 34.67963296662227], [-77.48032446902057, 34.68033682805814], [-77.48030843845109, 34.680896647491714], [-77.48008135001763, 34.682009453782406], [-77.47970584257112, 34.68402287311208], [-77.47931357126214, 34.68493811407256], [-77.47861571686694, 34.68656621457171], [-77.47824877641818, 34.6873928215849], [-77.47743113860756, 34.68923501079455], [-77.47778062014473, 34.693060846853825], [-77.47652464753442, 34.69338995172438], [-77.47335899320976, 34.693668640564496], [-77.47083169263506, 34.69366867008955], [-77.47073526661039, 34.693659006737846], [-77.46827245700331, 34.69353098877819], [-77.46671700182183, 34.69292683657264], [-77.4657552271554, 34.69216758245027], [-77.4640962463051, 34.690242363086135], [-77.4632654468471, 34.68875828945233], [-77.46226210761544, 34.6864833858001], [-77.4624086521688, 34.6858896304729], [-77.46284088308468, 34.68413813024179], [-77.46273274103626, 34.68295463430174], [-77.46234460978377, 34.68173710948583], [-77.46135107088465, 34.680394363249576], [-77.46003404832689, 34.678202503783794], [-77.45991907134041, 34.67738496071969], [-77.45899185625382, 34.6764117842583], [-77.45848930962408, 34.675474177221844], [-77.45850424141396, 34.67529764644599], [-77.45829345626628, 34.67511677271478], [-77.4574650021341, 34.67306793384875], [-77.45729395045453, 34.672688522511805], [-77.45327199638822, 34.67090068029712], [-77.45319208933665, 34.67097384856725], [-77.44909392859721, 34.67437851276088], [-77.44869996837694, 34.675138092144294], [-77.44811296125746, 34.676513127210725], [-77.44671711269139, 34.677699136805586], [-77.44589378149442, 34.67821483255564], [-77.44337333665857, 34.67870565995943], [-77.44185425165205, 34.67903863799356], [-77.44175555023067, 34.679052046407904], [-77.4416855577624, 34.67910416546768], [-77.44074656840532, 34.67976941124833], [-77.4405687045477, 34.680102817977506], [-77.44051263810607, 34.680246657534816], [-77.44007397003648, 34.68024570553522], [-77.43965159855867, 34.68009912854099], [-77.43945985848963, 34.680153617508815], [-77.43921371394224, 34.68003672675189], [-77.43889085385605, 34.6799055641306], [-77.43866403471065, 34.67960026544877], [-77.43851852125566, 34.679434151460825], [-77.43841486887705, 34.67933589030569], [-77.43819908269036, 34.679220218203824], [-77.43786456385908, 34.67902320436318], [-77.43741976023665, 34.6790000525734], [-77.43728633533019, 34.678807078315224], [-77.43727824158132, 34.67855662804374], [-77.43737762895663, 34.67849142942989], [-77.43776135038053, 34.67850465739868], [-77.43797705583836, 34.67863425358811], [-77.43820637440902, 34.6786716627691], [-77.43858139377254, 34.67876010037129], [-77.43887461730955, 34.6788290480163], [-77.43892521908879, 34.67857350623308], [-77.43909876421868, 34.67829910550195], [-77.43921475607486, 34.678115706831576], [-77.43927181084683, 34.67798289335782], [-77.43941670415606, 34.67762728008041], [-77.439574234098, 34.67720779450155], [-77.43932308420092, 34.677035498188594], [-77.43924491416129, 34.67645247583309], [-77.43861995952699, 34.676411283596906], [-77.43829520325437, 34.676386427998885], [-77.43821106336087, 34.67664663903295], [-77.43801903745694, 34.67668270141779], [-77.4378939521269, 34.676706191995024], [-77.43741347853769, 34.67636772484566], [-77.43742428747248, 34.67631976806649], [-77.4373874897358, 34.67624198217253], [-77.4371431598273, 34.67554433304475], [-77.43679986078197, 34.67503503006548], [-77.43594207538521, 34.67376248511623], [-77.43455221437577, 34.673261185938415], [-77.4339084586376, 34.672589673540145], [-77.4330867156645, 34.67072472299809], [-77.43201359202345, 34.67011795059676], [-77.43004335826271, 34.67159160235849], [-77.42902227298137, 34.67231474115009], [-77.42864863106354, 34.672579348829906], [-77.42788662470356, 34.67364718625754], [-77.42588722632046, 34.67404693938161], [-77.42490243396298, 34.67510322402795], [-77.42413137105933, 34.673833499723564], [-77.4233322205406, 34.67167284938557], [-77.4234287203359, 34.670357913996405], [-77.42345055418227, 34.669585616972974], [-77.42397020855576, 34.667413535881835], [-77.42344996619792, 34.66708095391454], [-77.42247114374396, 34.66600711808993], [-77.42195827168285, 34.66524653372195], [-77.4216607627089, 34.665117384093556], [-77.42129732576905, 34.664656427048364], [-77.42043394128169, 34.66251285992311], [-77.41920424098794, 34.66129774228639], [-77.41605971773556, 34.65786768706817], [-77.41605762313289, 34.65785150968699], [-77.41634992619286, 34.65747174429427], [-77.41897720530183, 34.6539329371806], [-77.41912209469051, 34.653767953183134], [-77.41966467029678, 34.65091673457114], [-77.41996574817502, 34.6493230834147], [-77.42058423449285, 34.64770102850275], [-77.4212289076266, 34.64608927453641], [-77.42178337828312, 34.645003482683], [-77.42191768783762, 34.64436740728907], [-77.4225475050025, 34.64279306777946], [-77.42258450504256, 34.64270056988823], [-77.42270619223626, 34.64239632491005], [-77.42325119951292, 34.641033733381555], [-77.42341688958874, 34.64061947366669], [-77.42384578081355, 34.64027622655682], [-77.42440194095, 34.64032477218641], [-77.42499629897205, 34.64053662276679], [-77.42569286400492, 34.64057581343268], [-77.42613127851254, 34.640941166944245], [-77.4265824491624, 34.64131715305258], [-77.42743116230729, 34.64202443303839], [-77.42812186430069, 34.6426000641081], [-77.4283183603628, 34.642852726579505], [-77.42885634000945, 34.643212149402366], [-77.43014083670353, 34.644282587315494], [-77.43076338432114, 34.64480135975597], [-77.43174100642928, 34.64598406698259], [-77.43392113220361, 34.64634470790683], [-77.43545634884109, 34.64483259206244], [-77.43730862924086, 34.64334961733335], [-77.43827138448367, 34.64266194354447], [-77.43966270775925, 34.641348837227234], [-77.44196866541247, 34.638654141331564], [-77.44230673470666, 34.637318504417934], [-77.44321560551072, 34.63534476000977], [-77.44324296461886, 34.63516841645551], [-77.44343317318157, 34.634986434351276], [-77.4438462939392, 34.63484834223698], [-77.44666260595652, 34.63388709025695], [-77.44735889444516, 34.633959370426126], [-77.4475842886436, 34.6339367159499], [-77.45121761476918, 34.632687949052276], [-77.4540431276669, 34.63151357414924], [-77.45724442423752, 34.62944241954997], [-77.45859164992616, 34.62889272472539], [-77.46070170275269, 34.62888732436064], [-77.46045797962296, 34.62747405737677], [-77.46155089090414, 34.62433996806106], [-77.4615394416558, 34.62422543112795], [-77.46154795355083, 34.62420900275108], [-77.46171868564748, 34.623971560610784], [-77.46407908874512, 34.62053273962748], [-77.46424023938296, 34.62021508144443], [-77.46456989052697, 34.62000631519134], [-77.46530429524393, 34.61958665108448], [-77.46780947750261, 34.61946843420412], [-77.46859925072327, 34.61936040930202], [-77.46875532452658, 34.61919856156869], [-77.46958785688759, 34.61713033844227], [-77.46868891541075, 34.61544700630139], [-77.4672964717164, 34.61370638827288], [-77.46692801483545, 34.613262056564196], [-77.4656252224134, 34.61187762404083], [-77.4652074786168, 34.61134823348105], [-77.46470491172747, 34.61046792115265], [-77.46440438115658, 34.61010029465653], [-77.46432543824614, 34.609809211978295], [-77.46425596129161, 34.608665535429175], [-77.46502088001867, 34.60630165888486], [-77.46550814431542, 34.6057940265729], [-77.46795790411463, 34.60465499158236], [-77.4686683349662, 34.60426444323185], [-77.47101194627118, 34.60276421328632], [-77.47167856433208, 34.60063883641479], [-77.47237419902335, 34.59828595038195], [-77.4718675497319, 34.59692470075132], [-77.47113205904672, 34.594886334084066], [-77.470941743439, 34.5928302165661], [-77.47073954356406, 34.59204418757818], [-77.47151877123684, 34.59003440719379], [-77.47171688269869, 34.588810950322], [-77.47187304017916, 34.58820125452726], [-77.47258275994976, 34.587855831162415], [-77.47331805006856, 34.587832853498135], [-77.47968189982826, 34.58597789166326], [-77.48024782650813, 34.58513926798548], [-77.48112542546602, 34.583170505835284], [-77.48159485540592, 34.58169238045286], [-77.48144973719536, 34.58012352004409], [-77.48083816902623, 34.57862983215597], [-77.48088697303362, 34.5773299497696], [-77.48068471667754, 34.57641953675376], [-77.48032809892851, 34.574535229386775], [-77.48023418899265, 34.57378469750506], [-77.48066506789836, 34.57152390625236], [-77.48067297169288, 34.57148243715939], [-77.48067123306461, 34.5714603016342], [-77.4806959804324, 34.57143308559163], [-77.48075546328847, 34.57141325735319], [-77.48454811149102, 34.57014904355158], [-77.48626029170102, 34.568460692579556], [-77.48652539631897, 34.56685651582791], [-77.48666527660666, 34.56612515062087], [-77.48666518364685, 34.56417880019533], [-77.48663422335724, 34.563871068993635], [-77.48651982046852, 34.563597058075494], [-77.48667903407954, 34.56258577060992], [-77.48679769455741, 34.560869997923774], [-77.48710406106497, 34.55884697211002], [-77.4864412510437, 34.557134563219456], [-77.48489099309563, 34.5555059698487], [-77.484677411546, 34.55528158959506], [-77.48263502771185, 34.55447653951428], [-77.4802543550141, 34.554478971147866], [-77.47817046415898, 34.555721606858384], [-77.47602759131254, 34.558037514521985], [-77.47542461395784, 34.559715506903316], [-77.47335576282607, 34.559984015259694], [-77.47074166053682, 34.56303162554228], [-77.47055655734991, 34.56511146890454], [-77.47055657211364, 34.56550831742943], [-77.47042067414064, 34.56787410104209], [-77.46798598628416, 34.571074819326334], [-77.46474007642794, 34.57084114283196], [-77.4637535178659, 34.57097047152484], [-77.46319535918319, 34.573518066871515], [-77.4634541622294, 34.574294069970705], [-77.46366808849135, 34.57486023837362], [-77.46369730752821, 34.575431176883185], [-77.46358087268855, 34.576362204897784], [-77.46345817860103, 34.57794714819704], [-77.46329597008963, 34.57939769252065], [-77.46320473011895, 34.580213731541036], [-77.46317384109045, 34.582386728910926], [-77.46314918630398, 34.58267178426628], [-77.46283915565279, 34.58298453539205], [-77.4618574745146, 34.58469727355355], [-77.46053443154301, 34.58609410559515], [-77.45972122161979, 34.58695268081116], [-77.45795978971759, 34.58828836818195], [-77.45631970961644, 34.589886106890674], [-77.45600912228066, 34.59008331695561], [-77.45527655886691, 34.590548445941906], [-77.45349356521768, 34.591680551168025], [-77.45287286847282, 34.592654720754844], [-77.45172938649142, 34.5935407357237], [-77.45056160299369, 34.59372259796423], [-77.44970612568797, 34.59361455687384], [-77.4491921504103, 34.59356866726067], [-77.44890508610949, 34.59352095128097], [-77.4478868066943, 34.593336310681636], [-77.4475947153856, 34.59273976602995], [-77.44798313269453, 34.59222959238154], [-77.4477650354795, 34.59121416806241], [-77.44775661084823, 34.589838272848525], [-77.44748682572651, 34.589763787490945], [-77.44763200241675, 34.589495200842194], [-77.44786164342648, 34.58926107770453], [-77.4505190064635, 34.585928231656986], [-77.45079124834662, 34.58565103667336], [-77.45101157084673, 34.58505220764818], [-77.45199634349524, 34.58231761483245], [-77.45161191562337, 34.579626825405064], [-77.45153376378886, 34.57898775853293], [-77.45153374007889, 34.57842082177394], [-77.45110944823969, 34.5756523670362], [-77.45100598625554, 34.57551282059387], [-77.44992999615378, 34.57358467080227], [-77.44906846708854, 34.572550938264875], [-77.44785169611964, 34.571090828553764], [-77.44696266559026, 34.57041661740732], [-77.44624217853274, 34.56956311274111], [-77.44427059175132, 34.566912132671355], [-77.44339301700512, 34.56517310209381], [-77.44253687454851, 34.56330567208745], [-77.44222105913639, 34.5626219193315], [-77.44154382503768, 34.56154705173011], [-77.44023817861475, 34.56024146296036], [-77.43934257574824, 34.55934588039444], [-77.43839062717312, 34.557206571366265], [-77.43833004954, 34.55712073021826], [-77.43839053986173, 34.55699702729616], [-77.44028737803686, 34.55548615234636], [-77.44154120829847, 34.55580331289933], [-77.44417317772026, 34.55343699816299], [-77.44469097332852, 34.552964282268874], [-77.44478041091473, 34.5528871847987], [-77.44784174869662, 34.552449851300054], [-77.45065788069721, 34.552300973411505], [-77.45099267704876, 34.552283336183095], [-77.4514883887178, 34.552354162307154], [-77.45414358639277, 34.55211451291874], [-77.45678967832899, 34.55159619577595], [-77.45729421784426, 34.551539257749], [-77.45782002042468, 34.55146993939946], [-77.45886956767852, 34.55133142590814], [-77.46023335466136, 34.55078135246451], [-77.4604446466511, 34.55073598886914], [-77.46099765540012, 34.55044283308285], [-77.46044402690679, 34.5498183487373], [-77.45969843547283, 34.54803666887376], [-77.45917971027393, 34.54730929479956], [-77.4572901228995, 34.545106772542375], [-77.45683314546514, 34.54474471269185], [-77.45597720459264, 34.54296219147027], [-77.45499675428735, 34.541121407848095], [-77.45731974077667, 34.539300229397355], [-77.46008520750081, 34.54038444917871], [-77.46031089643911, 34.54048853561385], [-77.46043783566078, 34.54060594879888], [-77.46120107173728, 34.541045366879175], [-77.4640604979348, 34.542697984716945], [-77.46674239611244, 34.545237169832916], [-77.46982284371572, 34.54229698734082], [-77.47303836858735, 34.538582041015225], [-77.47306488665349, 34.53853222436439], [-77.47311259680856, 34.538496670761084], [-77.47629716677608, 34.53611798992445], [-77.47940327967416, 34.53457014556835], [-77.48043750770921, 34.534156454152395], [-77.48396881458396, 34.53300457668202], [-77.4852352101315, 34.53251381361234], [-77.48731126952994, 34.531919817288625], [-77.49074372836311, 34.531407062314216], [-77.49043666746107, 34.530286402253374], [-77.48945686519528, 34.526709941209816], [-77.48536797308327, 34.52782680127433], [-77.48083305793725, 34.529801019043084], [-77.48008574996018, 34.5300148367168], [-77.47949612174241, 34.53024333385159], [-77.47672795222994, 34.53184241900772], [-77.47314532189841, 34.533537384514126], [-77.47255319865698, 34.53430090112864], [-77.47201972295053, 34.53473734477655], [-77.46675391629977, 34.538686673273176], [-77.46332504075022, 34.53776371615491], [-77.46051266879881, 34.53687353704146], [-77.4601134682899, 34.536713855482155], [-77.45965243212463, 34.53652945398443], [-77.45677663867994, 34.53537907413834], [-77.45428640625452, 34.53438301266077], [-77.45293567914865, 34.53442655398028], [-77.4524619078381, 34.533653180577076], [-77.45119529358476, 34.53213351243554], [-77.45093172553284, 34.53208105934446], [-77.44830795324106, 34.532457853104276], [-77.4488094060517, 34.53369033707372], [-77.44935433635821, 34.53410310353659], [-77.44889166678121, 34.53472716610298], [-77.44889159442607, 34.5374930067977], [-77.44895738261637, 34.53807817248584], [-77.44889159803107, 34.53869878689779], [-77.44943043657989, 34.541927300345804], [-77.44957856854269, 34.54378322907692], [-77.44883114252964, 34.54773835339173], [-77.44883144844532, 34.548807636967595], [-77.44824705058612, 34.5493309251034], [-77.4478400915137, 34.549294914304156], [-77.44752187904328, 34.54934024611735], [-77.44229266969934, 34.55056653813865], [-77.4415391490506, 34.55124400308201], [-77.44060313941604, 34.551007236318306], [-77.43806598205737, 34.55036537195218], [-77.43617183102737, 34.54963105036863], [-77.43523663863995, 34.549849568248575], [-77.43405248929591, 34.54966942922942], [-77.42990211791741, 34.55050339879628], [-77.42893488895956, 34.5503656228486], [-77.42797151491861, 34.54946667943891], [-77.42652453459948, 34.54943629047739], [-77.42578369577913, 34.54954338387273], [-77.4248415123601, 34.54989667965421], [-77.42379497808113, 34.54903218638303], [-77.42263256159265, 34.54872297151901], [-77.42011133352895, 34.548885742242746], [-77.4178875180782, 34.54816749907329], [-77.41633061074144, 34.54806836798159], [-77.41517690615053, 34.548124470807444], [-77.41358046215456, 34.5471114047851], [-77.41361867638486, 34.54539638033706], [-77.41161994621041, 34.54347716309525], [-77.41168620054492, 34.54250495473171], [-77.41097910607321, 34.53965230385079], [-77.41024843412066, 34.537765417388286], [-77.4094121856783, 34.539878616364014], [-77.40800346799699, 34.541431279271215], [-77.40751539228698, 34.54243024248], [-77.40857064457592, 34.54391756068227], [-77.40812687995775, 34.54520138356389], [-77.40806657625319, 34.54790776615575], [-77.4062336213502, 34.55087452190737], [-77.40540761146477, 34.553273290865036], [-77.40464107847859, 34.55519563239475], [-77.40444715617961, 34.55599993725111], [-77.40527232783435, 34.55850111739059], [-77.40646584044455, 34.55877331921773], [-77.40687825456254, 34.55887910036269], [-77.40759390889546, 34.55909290947076], [-77.40781875980025, 34.55914717734294], [-77.40845394500087, 34.55930315178476], [-77.4087902244292, 34.55932906825456], [-77.40997538260524, 34.559461916817874], [-77.41002962814898, 34.55944368289119], [-77.4102304019032, 34.55948355912067], [-77.41132736343849, 34.55962472905953], [-77.41197681762728, 34.55963175894139], [-77.41318095502758, 34.559272340250374], [-77.41396274688942, 34.55980025519866], [-77.41576272661396, 34.5597688606156], [-77.41633236973738, 34.55979822577991], [-77.41693187778483, 34.55956773728229], [-77.41719055997676, 34.559403317762374], [-77.41790791460068, 34.55904469749403], [-77.41874323351826, 34.55915425491577], [-77.41948326011435, 34.557396841222314], [-77.42088453495357, 34.5581326236395], [-77.42105902880941, 34.558074419493494], [-77.42118144409906, 34.55803358485813], [-77.4213062897723, 34.55761696083047], [-77.42063860994458, 34.55628171746166], [-77.42177090225825, 34.55365137529886], [-77.41948261166361, 34.55396981762542], [-77.41919777328792, 34.55340015330735], [-77.41900753644418, 34.553120722722255], [-77.41948217934161, 34.55165807328644], [-77.4213260388555, 34.55137664966491], [-77.42263303131026, 34.55083070908914], [-77.42339747864654, 34.551662485123295], [-77.42500781662122, 34.55225358696313], [-77.42578445439344, 34.552446981728295], [-77.42783341957197, 34.55303328899206], [-77.4284850070558, 34.55514765639134], [-77.4287039280452, 34.55536658257474], [-77.42893642856579, 34.555492346444936], [-77.43112219718105, 34.5558070761975], [-77.43157797157384, 34.5580972026176], [-77.43208851505587, 34.55818946638338], [-77.43263624457272, 34.5585344451277], [-77.43402998533884, 34.55904700892664], [-77.43524060527875, 34.5603597801913], [-77.4356836436037, 34.56090023867177], [-77.43741813702964, 34.56169957594241], [-77.43952580104293, 34.56374124803605], [-77.44038614815082, 34.56486619680723], [-77.44154667801598, 34.56773988657446], [-77.44232797624747, 34.56928813248812], [-77.44289288820713, 34.57004770866316], [-77.44511354400477, 34.57267834590442], [-77.4456061848005, 34.57305194827767], [-77.44683474278943, 34.57517259195983], [-77.44748714461029, 34.57617656960721], [-77.44758823532102, 34.576448995106155], [-77.44785499656089, 34.577167772900275], [-77.44919111508595, 34.58128613417334], [-77.44939689845702, 34.582693808052255], [-77.44894288646645, 34.58392779712551], [-77.44785930583213, 34.585031092153955], [-77.44614346954413, 34.58656135179265], [-77.4453566320604, 34.58737384438567], [-77.44470855706875, 34.587965973752105], [-77.44405658083167, 34.58856165557834], [-77.44367439534632, 34.589200319344215], [-77.44370935282598, 34.5894610800572], [-77.44386308569918, 34.58950150546592], [-77.44392136342285, 34.58974092594413], [-77.44418728476771, 34.59024113871068], [-77.44460801009176, 34.59028990879403], [-77.44470984789996, 34.59046530848829], [-77.44538307378835, 34.59079336055318], [-77.44668228836044, 34.591152062550414], [-77.44668455559642, 34.591522343342874], [-77.44674324989873, 34.59179561424155], [-77.44643959607569, 34.59219445377621], [-77.44559317177789, 34.593310625890666], [-77.44523938272593, 34.59374688239686], [-77.44488246496643, 34.594186983148134], [-77.44477991944058, 34.59428107004128], [-77.4444373022667, 34.59470496669595], [-77.44440110651388, 34.59475835464539], [-77.44446924945552, 34.594772533324715], [-77.4449964682373, 34.594900690670464], [-77.44505863702469, 34.59483072096904], [-77.44509721277491, 34.59491894815031], [-77.44512128920793, 34.59492221920041], [-77.44641582100982, 34.59513511416986], [-77.44727721787791, 34.59525491961794], [-77.44838649211894, 34.59546797904328], [-77.44893720044574, 34.59570910682641], [-77.44966012623736, 34.59627930635248], [-77.45149441066506, 34.59623926816287], [-77.4517155720434, 34.59610734151091], [-77.4518390032408, 34.59605669149947], [-77.45180575158732, 34.59596972398767], [-77.45341920448482, 34.59465034264565], [-77.45437339717417, 34.5945470674863], [-77.45446839116096, 34.59464281184031], [-77.45454890539622, 34.594527434654566], [-77.45456624894541, 34.59444373196794], [-77.45447500045766, 34.594422802382205], [-77.45406370452747, 34.59384856812308], [-77.4549677384304, 34.59262705903332], [-77.45533424642854, 34.59232469999559], [-77.45666499851669, 34.591744234687425], [-77.45681019679526, 34.59167751485594], [-77.45701417552459, 34.59167379043149], [-77.45728013283104, 34.59145388624009], [-77.45812122638661, 34.590822404264756], [-77.45928145746075, 34.58940578235787], [-77.45977606764238, 34.588923941359745], [-77.46017763166226, 34.588619436831785], [-77.46332334294574, 34.58529824058515], [-77.4633859816259, 34.585232108405485], [-77.46343245873373, 34.585151019839046], [-77.46410208743066, 34.584475515246154], [-77.46506974658294, 34.58345319810395], [-77.46514758030251, 34.58337102171867], [-77.46522018978524, 34.58327979574408], [-77.46520672193328, 34.58312405628972], [-77.46532356066638, 34.58177318242938], [-77.46533513171404, 34.58095917637771], [-77.46558269034068, 34.57874504261946], [-77.46566961783991, 34.57796769629234], [-77.46625252655738, 34.57632530984668], [-77.46617202505786, 34.575622633659435], [-77.46608253517098, 34.57502711420451], [-77.46678344826611, 34.574359182077444], [-77.46704140142683, 34.5741239149972], [-77.46863410796857, 34.573441357409], [-77.47022385373728, 34.572760018091934], [-77.47201993800357, 34.570998991256296], [-77.47212716381146, 34.570845838252374], [-77.47238122275174, 34.568560108804164], [-77.47245221267801, 34.567921321841226], [-77.47254356620743, 34.56682949432197], [-77.47259162249695, 34.5661563546822], [-77.47328734486162, 34.56472860411387], [-77.47335692928301, 34.563946744550066], [-77.47417873128487, 34.562988659535044], [-77.47585985687381, 34.562770472609074], [-77.47761560081207, 34.56349263832994], [-77.47817106208706, 34.563600189358965], [-77.47859641336785, 34.5637703330524], [-77.48050872413697, 34.56266637218636], [-77.48166378556391, 34.561898397537924], [-77.48166382523625, 34.55962367595636], [-77.48201532611293, 34.55954411726935], [-77.48170038778674, 34.559371706587136], [-77.481997399513, 34.5589161651957], [-77.48301666944259, 34.55741716205], [-77.48322433965576, 34.557414079937345], [-77.48332170209324, 34.557523874133324], [-77.48413079229513, 34.55867747899224], [-77.48407467209648, 34.560032061102156], [-77.48405048403579, 34.56025607387544], [-77.48282021893137, 34.56200617280275], [-77.48277593409975, 34.56228745965279], [-77.48377777237775, 34.56468700243915], [-77.48382242034586, 34.565130782941665], [-77.48404881827784, 34.56608676322463], [-77.48374023528315, 34.567201312683515], [-77.48342770469885, 34.56746996302023], [-77.48007468241764, 34.56858767090395], [-77.47991087848918, 34.56856790385499], [-77.47980142502502, 34.56867875594967], [-77.47980134426732, 34.56877704255222], [-77.47816020496248, 34.57058189378201], [-77.47828451030443, 34.572164500075395], [-77.47811687039871, 34.57304406176097], [-77.47818639807932, 34.57366967965784], [-77.47829033034293, 34.574430531040335], [-77.47837327865768, 34.575093457217136], [-77.47847817975259, 34.57564773671236], [-77.47897330262542, 34.57787642468334], [-77.47888704187753, 34.58017395787353], [-77.47865359984024, 34.580663690772354], [-77.47863011556801, 34.58092872873397], [-77.47831395160757, 34.58171923421018], [-77.47785093460664, 34.582860243179624], [-77.47675847156097, 34.58441742151519], [-77.47646473934817, 34.5848526913078], [-77.47553108187662, 34.585124837735194], [-77.47412692796492, 34.585168717254795], [-77.47244765596326, 34.58523936471944], [-77.47184493919096, 34.58516286978619], [-77.46900973419085, 34.58662947528667], [-77.46832815381671, 34.58696120309813], [-77.46754975700017, 34.590000348352504], [-77.46729792148196, 34.59155558343298], [-77.46814910599261, 34.59278355156183], [-77.46776454149308, 34.59462759003782], [-77.46787455064543, 34.59581609868408], [-77.46824454984333, 34.59684152843744], [-77.46791875162478, 34.598757732982506], [-77.46749282711436, 34.59997414406811], [-77.46700061049253, 34.60136122289591], [-77.4654159994301, 34.60242614802908], [-77.46417644977416, 34.60321935568181], [-77.46279788852408, 34.60484598393422], [-77.4620274254151, 34.606347206147845], [-77.46198990862413, 34.609007615830855], [-77.46188136470982, 34.60934305592923], [-77.46188988427078, 34.609483298433], [-77.46194293145395, 34.610418378245186], [-77.46203326906317, 34.612010903975836], [-77.46204682615891, 34.612250013939956], [-77.46206518282605, 34.6125736187055], [-77.46274955890507, 34.61336269120867], [-77.46356554111844, 34.614396753914626], [-77.4638431005622, 34.61469170675177], [-77.46453054704958, 34.61536177680306], [-77.46435619913602, 34.617087952433174], [-77.46439981963061, 34.617487066178896], [-77.46406718207227, 34.617677148270865], [-77.46395001100636, 34.61774410384671], [-77.46153963899934, 34.619270579157366], [-77.4603613237002, 34.621593259985744], [-77.45913244582555, 34.62338358597941], [-77.45869972941307, 34.62502142263263], [-77.45787239020498, 34.62626746655692], [-77.45673803654348, 34.627501110218816], [-77.45347861774624, 34.629464535346166], [-77.45162098645258, 34.630666373886505], [-77.45076172758789, 34.6310235097703], [-77.4496568068904, 34.631403268796554], [-77.4467392041773, 34.631696518408845], [-77.44644952799354, 34.63166644776441], [-77.44537448938031, 34.63177529431393], [-77.44318691017295, 34.631997094577216], [-77.44234439131081, 34.6310098852651], [-77.44124112074851, 34.630718232845666], [-77.43996184177121, 34.631542774867725], [-77.43933858787875, 34.63304346755867], [-77.4392875709552, 34.63351041921353], [-77.43917088586403, 34.63374371733406], [-77.43900175003074, 34.63416652806331], [-77.43830142012098, 34.63591717673215], [-77.43792747623556, 34.63685201999451], [-77.43669684875925, 34.639928700651836], [-77.43663464939607, 34.64017443656126], [-77.43655891439992, 34.640262938959815], [-77.43648317751729, 34.64033441809108], [-77.43517568528456, 34.64225668880064], [-77.43387994630105, 34.64337072469524], [-77.43322443529148, 34.643799558966776], [-77.43217244718147, 34.64292294263654], [-77.431626218037, 34.642467779929746], [-77.43085165242229, 34.64182230507874], [-77.4300720794503, 34.64071006632247], [-77.42830578695046, 34.639593779625685], [-77.4277742363343, 34.63925784873136], [-77.42628863602897, 34.63801981281933], [-77.42450644368849, 34.63772230759808], [-77.42302473476289, 34.63727510463043], [-77.42126451227323, 34.63864580536702], [-77.42020372910784, 34.639494763645104], [-77.4197412319524, 34.64065110290568], [-77.41902910868816, 34.64223632946918], [-77.41832909034034, 34.64379437919394], [-77.41627566900299, 34.64597422928658], [-77.41599822736747, 34.647934349481545], [-77.41396122363689, 34.65028322700914], [-77.40870195749022, 34.6540382122163], [-77.40773146169431, 34.6549523825836], [-77.40715918213093, 34.65618255738836], [-77.40702079064738, 34.65747055132365], [-77.40715151222032, 34.65773711420701], [-77.40751533302362, 34.658806631894166], [-77.40789806075784, 34.65888458119216], [-77.40912859952869, 34.65897850675353], [-77.41011858923576, 34.659542402799424], [-77.41263536554862, 34.66162505163175], [-77.41278797064432, 34.661736211679646], [-77.41280774612346, 34.66179724777431], [-77.41291078216823, 34.66182670306392], [-77.41617253340507, 34.66372633505813], [-77.4169475463701, 34.66405363074214], [-77.41814314866257, 34.66557005576044], [-77.41849663524285, 34.666018392491516], [-77.42058416153674, 34.66692459455167], [-77.42140621354962, 34.66814368983503], [-77.42136403815161, 34.66963549910274], [-77.42116761610036, 34.67231200536429], [-77.4193860969164, 34.67341619639323], [-77.41960735682389, 34.67572150155804], [-77.42184185519235, 34.67682268012729], [-77.42322744128523, 34.67778171724281], [-77.4240001616661, 34.67822113031792], [-77.42485495388408, 34.67834229985617], [-77.42541303926195, 34.67776111195589], [-77.42684183096817, 34.67725813572085], [-77.42752574955854, 34.67777333125247], [-77.42799513755855, 34.67770115541321], [-77.42826603586292, 34.67793679562336], [-77.42915055402325, 34.6781369018094], [-77.42939048662886, 34.678780556835], [-77.42928739680272, 34.67911633388355], [-77.42940774420585, 34.67946260189367], [-77.42947012405354, 34.679640084226975], [-77.42963431162121, 34.67979674182365], [-77.42986749797748, 34.680088210778315], [-77.43028766128081, 34.68019162348887], [-77.43048235139885, 34.680177755395334], [-77.43052595589289, 34.68013614130224], [-77.43054179447859, 34.68011414060374], [-77.43061930023238, 34.68005320068809], [-77.43084906088865, 34.67966254130641], [-77.43108353679436, 34.679552087507666], [-77.43125333116183, 34.67952440245435], [-77.43128062049699, 34.67950039423839], [-77.4313150409724, 34.67951434063146], [-77.43143560325696, 34.679448385570666], [-77.43136437274865, 34.67934382142593], [-77.43129837926813, 34.67932336861995], [-77.43110358001009, 34.67921093969689], [-77.43108205910616, 34.67921225643374], [-77.4308589843273, 34.6791849507113], [-77.43076099010072, 34.67921465132767], [-77.43065628008331, 34.67914499420645], [-77.43018116485989, 34.679004060421036], [-77.43008407964021, 34.678937442972966], [-77.42996915784894, 34.678795721987434], [-77.42983259635801, 34.67859602539484], [-77.4293499759493, 34.678020082317566], [-77.42930174178302, 34.67792483232563], [-77.42923403996923, 34.67784834974538], [-77.4283167941087, 34.67744316925659], [-77.42798745452485, 34.67642534448271], [-77.42800710033444, 34.67578689993975], [-77.4294088893537, 34.673822503237815], [-77.43065382698853, 34.672940856818215], [-77.4306854522275, 34.67291846045363], [-77.4327529808445, 34.67380591289318], [-77.43292291023882, 34.67395627846766], [-77.43322838031261, 34.674904080367924], [-77.43303470866883, 34.675263959609886], [-77.43305203547483, 34.67546663611474], [-77.43306907442641, 34.67566593216954], [-77.4331009037769, 34.67597761785439], [-77.43310903195535, 34.67613328683422], [-77.4331257347815, 34.676328652070794], [-77.43317683758283, 34.67656323538341], [-77.43331498218288, 34.6770308039415], [-77.43337436263194, 34.67711764747672], [-77.43336934781914, 34.677189624200906], [-77.43342088314871, 34.67739095005224], [-77.43342201286505, 34.677544147703586], [-77.43352566879369, 34.677562265613], [-77.4337067150455, 34.677425303088924], [-77.43381699973311, 34.67734618424387], [-77.43383395324767, 34.677318482249326], [-77.43389498465093, 34.67724074321904], [-77.43406713120598, 34.676951909020964], [-77.4341460546415, 34.6769022075016], [-77.43428785791275, 34.676736317525766], [-77.43444931181108, 34.676449209060834], [-77.43448283391771, 34.676135958689606], [-77.43450697911325, 34.67591032053848], [-77.4345712746763, 34.67572521943148], [-77.43464165596542, 34.675398363816214], [-77.43521382443934, 34.67489636477275], [-77.43583305729541, 34.675815030481616], [-77.4359783664068, 34.676030605203266], [-77.43608422800317, 34.676317436664775], [-77.4362188185141, 34.6768230174145], [-77.43628603314676, 34.67709154959756], [-77.4364484772972, 34.67727332560291], [-77.43692580936938, 34.677420666979685], [-77.43686086304625, 34.67806281018116], [-77.43688629381299, 34.67832995974395], [-77.43679719628986, 34.67838840816346], [-77.43679841094024, 34.678425993901236], [-77.43674298155764, 34.678470381316565], [-77.43655994113558, 34.67878390634778], [-77.43647729533691, 34.678835588985386], [-77.43627870548168, 34.67903000174701], [-77.4362671798978, 34.67904163729782], [-77.43626267163629, 34.67904569836851], [-77.43625634063741, 34.67904524747711], [-77.43624424802393, 34.6790443862158], [-77.43594243645326, 34.67902289061249], [-77.43578570638269, 34.6790137293935], [-77.43562814184322, 34.6790018842299], [-77.43538282163546, 34.67901189820554], [-77.43532788891181, 34.6790130618099], [-77.43525363378457, 34.679234719986894], [-77.43526167795203, 34.6792490599974], [-77.4353735502379, 34.6793282660541], [-77.43547886092757, 34.67936389754891], [-77.43551921344714, 34.67937847491284], [-77.43555864095342, 34.67939029379106], [-77.43581402408167, 34.67946684811426], [-77.43609780773637, 34.67955191495953], [-77.43612127836971, 34.67956231339814], [-77.43639725236991, 34.679665701073084], [-77.43666303730416, 34.67976235478193], [-77.43671018892128, 34.679777276052654], [-77.4370247560126, 34.67971148093934], [-77.43727350519626, 34.6796730688643], [-77.4374746136318, 34.67953140212631], [-77.43771397905152, 34.67954386096792], [-77.4379387011928, 34.67967621038443], [-77.43823755021629, 34.67994899378783], [-77.43829688126254, 34.68003092617986], [-77.43850888083304, 34.68033097919023], [-77.43855917910471, 34.68040216793534], [-77.43870569595148, 34.68054578279857], [-77.43878952394076, 34.680660220002885], [-77.43887745423118, 34.68070298313203], [-77.4389808574992, 34.68070211325963], [-77.43910024647047, 34.680693305061546], [-77.43930538811232, 34.68068774052123], [-77.43981225398315, 34.68067965373895], [-77.43994945419657, 34.68067626466294], [-77.44002325874722, 34.68070664121144], [-77.44098423783308, 34.681083173035795], [-77.4410477564405, 34.68130973141683], [-77.44121301255431, 34.681155967139006], [-77.44130956665808, 34.681084340671674], [-77.44171679675199, 34.68077732741692], [-77.44208663309382, 34.6802379607826], [-77.4423576354674, 34.680036162085486], [-77.44403905953573, 34.67980774358556], [-77.44404524556315, 34.67980703594528], [-77.44404726158159, 34.67980719045069], [-77.44406052165559, 34.67981002838965], [-77.44657849967494, 34.6799096357546], [-77.44731692491548, 34.67917010988291], [-77.4480752842686, 34.67897749974355], [-77.44900746041915, 34.67837690535402], [-77.44927754839475, 34.67815902782106], [-77.449530023869, 34.67785561554971], [-77.45005165379894, 34.67719086850313], [-77.45034214570062, 34.67614712852661], [-77.45044216105957, 34.67593266764547], [-77.45076050624412, 34.674961147299165], [-77.45130080396652, 34.67439684517693], [-77.45364255239332, 34.67225258283571], [-77.45566674677748, 34.67315237933042], [-77.45622669356526, 34.67439440255919], [-77.45629441944651, 34.67445053543487], [-77.45631778857549, 34.67446990392613], [-77.456366053532, 34.67451067279105], [-77.45758766972503, 34.675558935827404], [-77.45749172168256, 34.676693279568454], [-77.45790110696078, 34.67745707439816], [-77.45836240482058, 34.678292225949505], [-77.45869055134543, 34.67888630268364], [-77.45959696964684, 34.6805271740471], [-77.4599325623361, 34.680798772526515], [-77.45999216918699, 34.68095379105866], [-77.46050962485391, 34.6819469342925], [-77.46129946309091, 34.683014383509544], [-77.46140141448346, 34.68333419375325], [-77.46142982042181, 34.68364506554827], [-77.461316285262, 34.684105136430134], [-77.46055313795031, 34.68719718435271], [-77.46087296635812, 34.68792234169738], [-77.46344111250488, 34.69250987235528], [-77.46383668976588, 34.69296893311102], [-77.46488366562268, 34.69379544763987], [-77.46657915751913, 34.69539508791308], [-77.46741139378975, 34.69651163433258], [-77.46908262411733, 34.69679021418101], [-77.47118055788523, 34.69704472357432], [-77.47236302651291, 34.69711707067085], [-77.47307392664291, 34.697330116063355], [-77.47704708003026, 34.698165713309976], [-77.47716374725428, 34.69824511094974], [-77.48126621616305, 34.69997478411085], [-77.48175361413192, 34.70010365907672], [-77.48216749888662, 34.70022292351422], [-77.48633530912446, 34.70199101783584], [-77.48973658436354, 34.7035792844577], [-77.49094859616135, 34.70376943066975], [-77.4917457865911, 34.70390512207085], [-77.49400444496209, 34.703964041832876], [-77.49549377026219, 34.70404648928667], [-77.49599524180067, 34.704046490434486], [-77.49716584439763, 34.704046473687946], [-77.49912714703586, 34.70400072267902], [-77.50128004715347, 34.70349782208295], [-77.5022306862156, 34.70309040739498], [-77.50281925525226, 34.702569202095255], [-77.50380767825945, 34.70127010378213], [-77.504181446187, 34.700809068612244], [-77.5042615351155, 34.700430051994914], [-77.50491580472891, 34.698829822874934], [-77.50683068777275, 34.69731854135069], [-77.50903940775763, 34.697838281552684], [-77.50907947062102, 34.69784039862675], [-77.51130565188798, 34.69858251038737], [-77.51139724501186, 34.69861304355641], [-77.51139998795522, 34.698613957856104], [-77.51340061770591, 34.69982554478818], [-77.5158549576605, 34.70029661232955], [-77.51615531212192, 34.70060324720765], [-77.51741693974058, 34.70223484825681], [-77.51854098149815, 34.703583144176406], [-77.51977791144141, 34.705309713740405], [-77.52070430918944, 34.70724803443764], [-77.52265753988331, 34.71125056828241], [-77.5224888699824, 34.71390109682452], [-77.52283002725552, 34.71475106403425], [-77.52339695123831, 34.7156925980422], [-77.52419267323305, 34.717753823120376], [-77.52552717846086, 34.7171957476144]], [[-77.32385800559298, 34.742233855300825], [-77.32376805411101, 34.74232369701137], [-77.32374837528417, 34.74237832176538], [-77.32350303718877, 34.7426113991655], [-77.32380985641504, 34.74239940828048], [-77.32559274940495, 34.74407509527602], [-77.32569973141432, 34.74407560197035], [-77.32571998959372, 34.74407002846706], [-77.32581070260191, 34.74413423152508], [-77.32711804009064, 34.744561732681476], [-77.32733348762217, 34.74481131436943], [-77.32756763048233, 34.74500434404703], [-77.32786047305859, 34.74494876929529], [-77.3287275035296, 34.74490090894311], [-77.32911078930184, 34.744768921009744], [-77.32942213050474, 34.7447813544174], [-77.33035974155536, 34.744593729831074], [-77.33068362785579, 34.74497356411242], [-77.33074761374189, 34.7453181808097], [-77.33074803850047, 34.74531839116183], [-77.33074932664135, 34.74531918096262], [-77.33107658855221, 34.7454597117987], [-77.33109516997867, 34.74551423087977], [-77.33127505120302, 34.7455659989631], [-77.3314349167478, 34.745578355997665], [-77.33155401025607, 34.745695027294985], [-77.33169876162631, 34.74576963931465], [-77.33174689373513, 34.74600336156976], [-77.3318793962819, 34.74613779914992], [-77.33197671591785, 34.74634420901896], [-77.33196862847575, 34.74636925393195], [-77.33204060349621, 34.746463532996856], [-77.33214878808853, 34.74658824547632], [-77.33216981976518, 34.74660898114079], [-77.33233536685341, 34.7467247508844], [-77.33242042688555, 34.74677716731326], [-77.332436658303, 34.74677886548236], [-77.33270648616916, 34.74682342115477], [-77.3332390980959, 34.74692616820255], [-77.33326690037642, 34.7469288291878], [-77.33327344959693, 34.74693366253013], [-77.33367131602311, 34.74740617790245], [-77.3338718726418, 34.74781417053352], [-77.33415304845265, 34.748028941538394], [-77.3346969022523, 34.74819423446908], [-77.3347187468223, 34.74819843114714], [-77.33540419376357, 34.747846274009284], [-77.3364028580311, 34.748441947675175], [-77.33641742452936, 34.74844799172345], [-77.33642427544366, 34.74845842224282], [-77.33652066201621, 34.74851840583357], [-77.33644309316472, 34.74843643161597], [-77.33644288462894, 34.74842841643055], [-77.33643718231689, 34.74841402342661], [-77.33580825867487, 34.74754871952016], [-77.33603506620837, 34.747165378901705], [-77.33587741569173, 34.74656448906628], [-77.33638934092802, 34.745848606064285], [-77.33655475481831, 34.74518921343319], [-77.33578919882981, 34.74462709649956], [-77.33524052685648, 34.74428829595023], [-77.33442024872639, 34.743677244771035], [-77.33326544963238, 34.74302359087328], [-77.33324807232059, 34.742900346255425], [-77.33242035912443, 34.74206177024135], [-77.33223361405732, 34.74121554227463], [-77.33191419844931, 34.73932919490227], [-77.33190511944746, 34.739304888535884], [-77.33186246680339, 34.73928334545595], [-77.32954263223216, 34.7391638352473], [-77.32404330376126, 34.74219607586297]], [[-77.48659235531288, 34.68500289007951], [-77.48660075012278, 34.68501027288301], [-77.48551046159358, 34.687102174658385], [-77.48649818277772, 34.68799391604205], [-77.48674887182246, 34.6884952817033], [-77.48766754114183, 34.69033246707575], [-77.48779104493269, 34.69057946437134], [-77.48782883616494, 34.69083446490167], [-77.48811801256727, 34.69296681091937], [-77.4879892243398, 34.69359344604499], [-77.48710891068015, 34.69633705600578], [-77.48621243971496, 34.69677280332274], [-77.48201321439936, 34.69920449784528], [-77.48090519530308, 34.694919712270135], [-77.48001125940483, 34.693355351291316], [-77.47976309826727, 34.69032098740627], [-77.47974252323102, 34.690042267420104], [-77.47981948219325, 34.68989914131712], [-77.48001276022649, 34.689411728126885], [-77.48124416550735, 34.68653840220621], [-77.48158941119124, 34.68573293525659], [-77.48196548064917, 34.68485547771662], [-77.48220351700151, 34.6843000934587], [-77.48251286618151, 34.68357829649559], [-77.48321376395552, 34.68302219061023], [-77.48376802273188, 34.68233165768989], [-77.48563401972997, 34.682331700262516], [-77.48567369211877, 34.68249083703693]], [[-77.39250803259593, 34.744526841360994], [-77.39501808707911, 34.74327041301739], [-77.3950812202994, 34.743081036566025], [-77.39484574652838, 34.74298863542408], [-77.39293675359124, 34.741197567242054], [-77.39252301764908, 34.74057661079841], [-77.39116001634547, 34.7395820450736], [-77.39091271345448, 34.73933147544443], [-77.39069065095693, 34.73941784001473], [-77.3897020150389, 34.74056478637221], [-77.38922217580631, 34.74195209511515], [-77.38992818605738, 34.7427264517093], [-77.39035194560657, 34.74326656685961], [-77.39156939986239, 34.744198502224855], [-77.39184720205989, 34.744428733559296], [-77.39196657086852, 34.74454332936759], [-77.39215828762609, 34.74458123769823]], [[-77.30440867613297, 34.65819027790771], [-77.30417135642057, 34.65747742072444], [-77.30575575109619, 34.65495523004722], [-77.30635703798094, 34.6546700959712], [-77.30812964785875, 34.65402050219184], [-77.3095737669091, 34.65512661216479], [-77.31099058402769, 34.65654344420108], [-77.31111488194757, 34.656667743947054], [-77.31132176661717, 34.65716440395401], [-77.31227780654196, 34.658956955373114], [-77.31278053037913, 34.65967408197064], [-77.31278050830178, 34.660669635289395], [-77.31091654172899, 34.66330528577258], [-77.31018589508554, 34.66427025239168], [-77.30958083462396, 34.66429109596419], [-77.3093089583757, 34.66352548943119], [-77.30623531498304, 34.66172915759438]], [[-77.44810162654109, 34.53000850743926], [-77.44785684374331, 34.530252901806094], [-77.44796470659982, 34.53038666642688], [-77.4479916896617, 34.53044539080728], [-77.44807627103107, 34.53116980180336], [-77.44934479757669, 34.53097554698383], [-77.44832725074167, 34.530334180471414], [-77.44832688105349, 34.530191216498565]], [[-77.44397060499172, 34.682672459593135], [-77.44415654869599, 34.682638751492895], [-77.44440278841239, 34.6826311699381], [-77.44451297515285, 34.68262140013482], [-77.44480340047141, 34.682538279248426], [-77.44518443149795, 34.68251520794907], [-77.44524008182216, 34.682504340737545], [-77.4453658985885, 34.6825025146976], [-77.44561618166145, 34.68237138941971], [-77.44592333252326, 34.68169947565752], [-77.44520273339671, 34.68169567921383], [-77.44477064937703, 34.68173023112066], [-77.44475864528454, 34.681731190987236], [-77.44431524724997, 34.681740462235794], [-77.44412579941027, 34.68174442305534], [-77.44386358259598, 34.68174990472429], [-77.44379792167479, 34.68177037584569], [-77.44359143769668, 34.681882151588354], [-77.44357296882868, 34.68202256857432], [-77.44354348587876, 34.682246718717636], [-77.44372738522254, 34.68248871170407], [-77.44379236289733, 34.682589220264454]], [[-77.45229580467978, 34.682296607096745], [-77.45249937435776, 34.682406288606174], [-77.45257742607066, 34.6824306594469], [-77.452727263421, 34.68228067997707], [-77.45273970436457, 34.682201289959366], [-77.45276194016643, 34.68215304870006], [-77.45270035541084, 34.68200535740992], [-77.45268501575808, 34.682000913421675], [-77.45266054663078, 34.68197785700255], [-77.45245132891085, 34.68175854118836], [-77.45222282560661, 34.68174749866638], [-77.45204794247688, 34.68166862564842], [-77.45177187445243, 34.681892504937686], [-77.45156960285522, 34.68131702867223], [-77.45145533858988, 34.68117514802103], [-77.45134141253783, 34.68116505847067], [-77.45129625275644, 34.681187821170724], [-77.45122708143734, 34.68119730218769], [-77.45045607244951, 34.681309931707354], [-77.45021134906148, 34.68169463164493], [-77.45009155893356, 34.68191840621205], [-77.45002087769711, 34.682093852054905], [-77.45003860610454, 34.68245891065575], [-77.44997570756206, 34.68268588260481], [-77.44996601364723, 34.682713043470336], [-77.45017459579805, 34.68298500326385], [-77.45021109179756, 34.68303401571315], [-77.45028690592326, 34.68310471777512], [-77.45042849493326, 34.68321495898764], [-77.45072804481097, 34.68326457044395], [-77.45073409417938, 34.68326606784215], [-77.45073809600166, 34.683265869774836], [-77.45074342387439, 34.683264290701906], [-77.451129233852, 34.68315748681824], [-77.45122949434129, 34.68305517050047], [-77.45129990373059, 34.682899790206044], [-77.45127996577861, 34.68265626330619], [-77.45169898447492, 34.68248027153878], [-77.45176720417054, 34.68195739925769]], [[-77.35630211372262, 34.770999962913976], [-77.3562730867388, 34.771060012328576], [-77.35624938834032, 34.7711001045973], [-77.35612240953196, 34.77271502578578], [-77.35798862193838, 34.77264011504807], [-77.35815285224076, 34.772641754209964], [-77.35834059059545, 34.772664144568594], [-77.35890418778804, 34.77254182204337], [-77.35916330246536, 34.77256216495217], [-77.35946673552331, 34.77253611566073], [-77.35961440347796, 34.77258017960875], [-77.35982614849016, 34.77255229304636], [-77.36015544277073, 34.77237392593827], [-77.36017253192745, 34.77235615404482], [-77.36017165228334, 34.77231812107459], [-77.36004096090463, 34.77195637603016], [-77.35986580291514, 34.771689570606156], [-77.35977733740879, 34.771466822385776], [-77.35962144297298, 34.771238504012615], [-77.35951326478971, 34.771006950182446], [-77.35959654303562, 34.77067905853559], [-77.35954727590348, 34.770376880440395], [-77.35950707302216, 34.7701884863327], [-77.3594654024485, 34.769964713110156], [-77.35931854262633, 34.76982033159035], [-77.35912498994244, 34.76966016420639], [-77.35903441965921, 34.769606939067835], [-77.3588393666102, 34.76956426322711], [-77.35845420367323, 34.76954181534829], [-77.35804269004362, 34.769661469612075], [-77.3578121394948, 34.769689599923595], [-77.3573193004247, 34.769494680621186]], [[-77.42550920938413, 34.73202491932775], [-77.42531133066592, 34.7321892895183], [-77.4251337245903, 34.732336818726054], [-77.42546450364867, 34.73243957557774], [-77.42558027070234, 34.732549860443555], [-77.42585259856564, 34.732483350717594], [-77.42593771780592, 34.73246494143152], [-77.4259629569764, 34.732463058468916], [-77.42615657105941, 34.7324486139988], [-77.42626295119138, 34.73231218767136], [-77.42627842408665, 34.73229379414562], [-77.42628224800559, 34.732280039031934], [-77.4263178162856, 34.732066112308615], [-77.4262649276368, 34.732009543695916], [-77.42618614603442, 34.731897843762354], [-77.42603610280953, 34.731877841339895], [-77.42593992340545, 34.731895940734574], [-77.42582561193501, 34.73190783037702], [-77.42575769645899, 34.73193703503681], [-77.4256416067798, 34.731981096776174]], [[-77.35250075128131, 34.55044263489886], [-77.3526445006019, 34.550445261679265], [-77.35294295620835, 34.55022383913919], [-77.35292106419247, 34.55015039964836], [-77.35280667141998, 34.54999863329289], [-77.35273197347016, 34.54996176468728], [-77.35265488493164, 34.54999313898052], [-77.35261053732007, 34.549999298330725], [-77.35245833428075, 34.55000366251497], [-77.35228064020565, 34.550061904219014], [-77.3522605320865, 34.550068662406304], [-77.35225248355812, 34.55007344846994], [-77.35224337107451, 34.55007971021431], [-77.35214667881925, 34.55014615345783], [-77.35206076805724, 34.550219037838346], [-77.3520531648066, 34.55022483916564], [-77.35204320991735, 34.55023092991707], [-77.35203934037987, 34.550244483721805], [-77.35216366689085, 34.550336003535406], [-77.35219896749396, 34.55036506594292]], [[-77.46058425004009, 34.503605213166665], [-77.46148458304602, 34.50375815412702], [-77.4616341629226, 34.50380322416706], [-77.46199938729106, 34.503515371970174], [-77.46206610599764, 34.50344657695695], [-77.4621763749825, 34.50332357276125], [-77.46229382187538, 34.503192560740615], [-77.46240912020673, 34.50301915549072], [-77.4626923466996, 34.5027480045405], [-77.46280807599823, 34.502618906565694], [-77.46285074541406, 34.50254531508031], [-77.4629859951669, 34.502408311845926], [-77.4630042244157, 34.50234081315316], [-77.46305824251506, 34.50221809023151], [-77.46298807658174, 34.50211231299317], [-77.46298512548871, 34.50195933128883], [-77.46264789566567, 34.501947087403124], [-77.46248989222335, 34.50200780907908], [-77.46217144401886, 34.502173078554804], [-77.46219012732826, 34.5023187687357], [-77.4619611739414, 34.50250016030206], [-77.46153656767656, 34.502595353907395], [-77.46133963115345, 34.5027263409945], [-77.46104201581616, 34.502949170030305], [-77.46082542192677, 34.503118018067305], [-77.46080677481457, 34.503131924732415], [-77.46078756863457, 34.50316997790738], [-77.46066887934477, 34.50336195997567]], [[-77.35191050081322, 34.78628005929826], [-77.35187028444095, 34.786369227893346], [-77.35214586468419, 34.78681046398614], [-77.35244077936072, 34.78718207235291], [-77.35249585139955, 34.78732981960744], [-77.35247134520148, 34.78766526050658], [-77.352498442592, 34.78772203840353], [-77.35254467508214, 34.78781890928396], [-77.35256726243702, 34.78786623663264], [-77.35271188862441, 34.7878759511304], [-77.35278054786981, 34.787899372992094], [-77.35285421140357, 34.787878579573416], [-77.35291384851807, 34.787796894175], [-77.3530795591823, 34.787581819627], [-77.35313450135209, 34.78748851139772], [-77.35334272782387, 34.7871348768691], [-77.35339175864007, 34.787051606708374], [-77.35364168294507, 34.78666110436123], [-77.35423100585714, 34.78614029623767], [-77.35436170055605, 34.78607964424364], [-77.35478969267321, 34.78613089182245], [-77.3547870678496, 34.78602651952602], [-77.3547389750086, 34.785833521160086], [-77.3546955580169, 34.78578345972855], [-77.3545020766133, 34.7855603662167], [-77.3544163601324, 34.785502421574996], [-77.35439676130652, 34.78545157505573], [-77.3541397693988, 34.78527755158585], [-77.35401066815173, 34.78501716747933], [-77.35396916528236, 34.78497913041509], [-77.35366470957463, 34.78485435807797], [-77.35342458513179, 34.784790986849565], [-77.35222280055086, 34.785174481966294], [-77.35228644135141, 34.784583271416274], [-77.35177779933566, 34.78532350131018], [-77.35194098875377, 34.785391135736184], [-77.35188321840644, 34.785970796892755], [-77.35190412693156, 34.78620789073807]], [[-77.35437861687636, 34.775632740942505], [-77.35491745278624, 34.77552872592273], [-77.3554223022562, 34.77640711619583], [-77.35587335723676, 34.77636326365271], [-77.3561761409862, 34.77661591747042], [-77.35680656238686, 34.77683539630679], [-77.35688068818027, 34.776862615162685], [-77.3569219203908, 34.7768789199817], [-77.35696701997631, 34.776861494842166], [-77.35701149410072, 34.77684216475067], [-77.35768085119521, 34.77653145018828], [-77.35769754414424, 34.7765230402048], [-77.35794052629434, 34.77640062433569], [-77.358324847954, 34.77618335309603], [-77.35835879942766, 34.776142715555636], [-77.35843912875838, 34.77607362250488], [-77.358515027446, 34.77602384488664], [-77.35850172154939, 34.7759656391029], [-77.3584832256673, 34.77592182602546], [-77.35834072193967, 34.775787811372794], [-77.3583195096779, 34.7756222496508], [-77.35819160825044, 34.77540362915573], [-77.35808077207432, 34.77509853041615], [-77.35805046248015, 34.77501613196169], [-77.35787065938382, 34.77490591993816], [-77.35769486305804, 34.77471789380355], [-77.35759243564829, 34.774570892652704], [-77.35732997154896, 34.77460970376245], [-77.35634432880092, 34.77474218068225], [-77.355351199984, 34.77488491848146], [-77.35536016808449, 34.77400494953683], [-77.35441834041444, 34.77458443212502]], [[-77.32357736502632, 34.756047968304905], [-77.32345363248771, 34.7559811350808], [-77.32308690090139, 34.75554254671223], [-77.32300146715022, 34.75547603587842], [-77.32279279944521, 34.75537449003045], [-77.32265435659193, 34.75538253296011], [-77.32237758985727, 34.755561228847995], [-77.32223092491768, 34.75574503345244], [-77.32229787505183, 34.755835253112885], [-77.32245880779095, 34.75602529311976], [-77.32270667017391, 34.75606734808385], [-77.32287041556359, 34.75592654475815], [-77.32320763340331, 34.75609861417778], [-77.32337531556483, 34.756109079401696], [-77.32341568186683, 34.756111598734506]], [[-77.48879675726451, 34.68233170823625], [-77.49008262069701, 34.68233169069906], [-77.49060045185271, 34.682391818030844], [-77.4916879065429, 34.6824560955698], [-77.49229123918093, 34.68270943072799], [-77.49305502565088, 34.683168586415874], [-77.49270494386147, 34.684215796723294], [-77.49212970521376, 34.68445924517277], [-77.49081615893127, 34.68500284386732], [-77.48937677758339, 34.68528210770529], [-77.48662662537555, 34.68500289016323], [-77.48661452282445, 34.68500000939435], [-77.48603654003432, 34.68233170582542]], [[-77.32081204185016, 34.74446829328414], [-77.3204835069477, 34.74451993375727], [-77.3206624706297, 34.74475049884318], [-77.32068573798823, 34.74477700972386], [-77.3207131531644, 34.744808246130965], [-77.32161052116597, 34.7455953687798], [-77.3216592272154, 34.74560511064455], [-77.32167817118386, 34.745609338507464], [-77.32175915367839, 34.745650680473986], [-77.32222278486591, 34.7457963978061], [-77.32234200437182, 34.74586847983876], [-77.32265514067556, 34.74580640721253], [-77.32272386205341, 34.74557495678581], [-77.32262802899925, 34.74545598957866], [-77.32266839687469, 34.74517969942414], [-77.3226889119847, 34.74481362151023], [-77.32237716059356, 34.744515624811974], [-77.3222422473554, 34.7436701193432], [-77.32162580847582, 34.744054407951644]], [[-77.31268135693364, 34.69418328761558], [-77.31268207805329, 34.69418345494298], [-77.3126823833938, 34.694183528950624], [-77.3126831151021, 34.69418367768852], [-77.31390970154456, 34.6940804754682], [-77.31401609332474, 34.694089131426416], [-77.3141214498137, 34.69398604014555], [-77.31424917542954, 34.69301882148273], [-77.31443833162206, 34.69296791144374], [-77.31442742725308, 34.6928413156279], [-77.31426586891527, 34.692855832299244], [-77.31409345018088, 34.69288066688003], [-77.31364835643771, 34.69307611535484], [-77.31266503049375, 34.69416763349158]], [[-77.3541003255097, 34.78323787707994], [-77.35446735987622, 34.78326462855789], [-77.35471112925875, 34.78326140859857], [-77.35481672177616, 34.78323393924083], [-77.35512762836208, 34.78305458617497], [-77.35522563442714, 34.78299946737939], [-77.35528905764687, 34.78295020831412], [-77.35540257606212, 34.782811796663054], [-77.35545185340654, 34.78272756353692], [-77.35540706159861, 34.78254735199606], [-77.35540900195019, 34.78243294561833], [-77.35534618068317, 34.78230240984877], [-77.35505592906958, 34.78220787208374], [-77.35448260103028, 34.7822999081977], [-77.35411213950971, 34.78242485418868], [-77.35346386924165, 34.782643493499386], [-77.3534365163666, 34.78265015319054], [-77.35340382388672, 34.78268965811411], [-77.35323148565274, 34.783174546212955], [-77.35386584233265, 34.78327246913417]], [[-77.43079568212768, 34.57914256397934], [-77.43051990328611, 34.57939717317086], [-77.4304189971466, 34.5793855599145], [-77.43014692673506, 34.57953362191189], [-77.43032950402265, 34.57971252157958], [-77.43052000456007, 34.57969572767916], [-77.4308622330347, 34.57991069207691], [-77.43105714201732, 34.5799807660809], [-77.43130816544354, 34.58009938222123], [-77.43138649834923, 34.58011921047271], [-77.43193015501262, 34.57994616143404], [-77.43209609843862, 34.57984648372749], [-77.432386466237, 34.57963446404931], [-77.43229310734043, 34.57943582834649], [-77.4321699048711, 34.579241180967834], [-77.43209585094971, 34.57915511802215], [-77.43173024417264, 34.578849429027954], [-77.43170172746879, 34.57882595927664], [-77.43151514863975, 34.57868766492788], [-77.43149358288258, 34.578690112769216], [-77.43130771334589, 34.57880211228086], [-77.4310359539422, 34.57898051871098], [-77.43096925434253, 34.57904992733132]], [[-77.42467191945084, 34.73285038186596], [-77.42478661055625, 34.73282763414097], [-77.42486515749061, 34.73280525140838], [-77.42504963249065, 34.732702877257886], [-77.42495865460636, 34.73248232607178], [-77.424708355288, 34.732583583318615], [-77.42465629937071, 34.732614701982115], [-77.4245839997659, 34.732669073521805], [-77.42446005733473, 34.73261780465968], [-77.42427328086353, 34.73263499512492], [-77.4242134541122, 34.73263895699422], [-77.42410108450795, 34.732650843229436], [-77.42393480234992, 34.73269679053311], [-77.42378200604921, 34.732681835209], [-77.42377923638796, 34.73268046408523], [-77.42377453140038, 34.73268054361995], [-77.42362445476324, 34.732661428446036], [-77.42352156603263, 34.7326302044911], [-77.42348682758367, 34.73271565856394], [-77.42346274221475, 34.73272105608652], [-77.42344579772003, 34.73281765367859], [-77.42344192516862, 34.732839730499734], [-77.42343725117756, 34.732866376146], [-77.42342467749148, 34.73293805626767], [-77.42346206041319, 34.73298653724815], [-77.42345903988574, 34.73303531797634], [-77.4234997368747, 34.73309215922761], [-77.42356322853104, 34.73307223198527], [-77.42363909326721, 34.73304842121872], [-77.42375802811871, 34.73301660001529], [-77.423846430265, 34.73300200044778], [-77.4239656871835, 34.73298198081303], [-77.42421469745173, 34.73283732730677], [-77.42433124815992, 34.73283143775874], [-77.42451999009425, 34.732890149787586]], [[-77.33241291931303, 34.57512434337167], [-77.3321539748892, 34.575123000400076], [-77.33201890344037, 34.575133948782664], [-77.33189868202288, 34.57514369308052], [-77.33151318457442, 34.57506957047828], [-77.33123103770957, 34.574958329451725], [-77.3309187785704, 34.574642670175336], [-77.33083741448374, 34.57451155361363], [-77.33057217304955, 34.57449446217135], [-77.33049532168579, 34.57515931867049], [-77.33056526728424, 34.575205804418275], [-77.33047475053763, 34.575253273399866], [-77.3306627648448, 34.57580331503965], [-77.3310353876106, 34.57577726145366], [-77.33123031336291, 34.575806177313986], [-77.33136161515405, 34.575798962710564], [-77.33188995387991, 34.575726095158366], [-77.33201842535755, 34.575699835632705], [-77.33212269728205, 34.575718677544344], [-77.33232000304642, 34.57570309573559], [-77.3324124370383, 34.57569838478157], [-77.33249857475948, 34.57568422223072], [-77.33270205954463, 34.57563524118397], [-77.33273464512897, 34.57553082113169], [-77.33276119128969, 34.57547804447751], [-77.33274667646049, 34.57538150988497], [-77.33271439174872, 34.57532146269796], [-77.33260984969895, 34.5752120017038], [-77.33254535587386, 34.57520298843744]], [[-77.33540131624764, 34.68183141839691], [-77.33542607937511, 34.68184007131317], [-77.33553964215132, 34.68189591416329], [-77.33555778876976, 34.681787744657655], [-77.3355085923207, 34.68174887878737], [-77.33547527201938, 34.68167075055235], [-77.33533925677851, 34.68181772024337]], [[-77.36183198097415, 34.78013589673992], [-77.36176137389991, 34.780098688021525], [-77.36172071023131, 34.78014392907312], [-77.36169188813363, 34.78015783044065], [-77.36130811896129, 34.78021791412364], [-77.36122203221134, 34.78027302401536], [-77.36114320358155, 34.78032258588077], [-77.36102188933232, 34.780435489711415], [-77.36099620956854, 34.78045656894513], [-77.36098521766212, 34.78046976687631], [-77.36097061260261, 34.78049442526181], [-77.36097513869342, 34.78059643220774], [-77.36097204018485, 34.78071695691332], [-77.36106356480455, 34.78077679680109], [-77.3611496070404, 34.78086617487788], [-77.3612775437925, 34.78091669850986], [-77.36150829370783, 34.78096995941682], [-77.3618980724228, 34.781000893610354], [-77.36213175536871, 34.781032600057685], [-77.36268047000246, 34.781062983323444], [-77.36225724735849, 34.78060056210799]], [[-77.4382167029723, 34.67832575098026], [-77.43807305702259, 34.67830231773926], [-77.43796634093655, 34.67823820254143], [-77.43759870244857, 34.678032551177076], [-77.43753572431855, 34.67794480683386], [-77.43713686663602, 34.67738909135194], [-77.43752664338567, 34.677169834610275], [-77.43774922310529, 34.67704418321123], [-77.43776082884753, 34.677008331526295], [-77.43779882771564, 34.67703509963354], [-77.43789071229553, 34.677017844038346], [-77.43813839636766, 34.676968686243384], [-77.43818796173281, 34.67695884893158], [-77.43847826520101, 34.676901231457336], [-77.43876800738173, 34.67715933231281], [-77.43911694171523, 34.67739871166286], [-77.43907586470243, 34.67750809540465], [-77.43903808277827, 34.67760082400575], [-77.43886885647076, 34.67799475308424], [-77.43874702941469, 34.678187377987726], [-77.43861197828056, 34.67839972025325]], [[-77.32427966781951, 34.695031017537744], [-77.32429263707934, 34.69490427581836], [-77.3242461376864, 34.694748041065694], [-77.32413519318985, 34.69476463105517], [-77.32389660246987, 34.6947352966567], [-77.32373983346722, 34.69474335629913], [-77.32343524204569, 34.694782277823165], [-77.32326674608635, 34.69510721609707], [-77.3233468662034, 34.695158862293674], [-77.32361966719085, 34.695229873285264], [-77.32426145219267, 34.69551508728814]], [[-77.44630422763875, 34.681712497189984], [-77.44629613740184, 34.68198742489761], [-77.44629538107446, 34.68243696302901], [-77.44649133391835, 34.68242734410484], [-77.44655127399213, 34.68240439180377], [-77.44666673074184, 34.68239824844413], [-77.44715672185454, 34.682342114185985], [-77.44739050856329, 34.68228073093476], [-77.44749326335346, 34.68228618810736], [-77.44773600821102, 34.68221302468835], [-77.44779701653258, 34.68219747673411], [-77.44784288127823, 34.6821850275649], [-77.44799704397006, 34.68217284780142], [-77.44822542005417, 34.68215000419704], [-77.44851580891546, 34.68195622946118], [-77.44851872419342, 34.68192762082248], [-77.44863036827589, 34.68146197069547], [-77.44803442835752, 34.681522460876025], [-77.4478527065651, 34.681540905687896], [-77.44770437436544, 34.68155596126781], [-77.4475115367911, 34.68157553371718], [-77.44742200746144, 34.681584620671124], [-77.44737140756763, 34.681599534192614], [-77.44701141365239, 34.68166119076757]], [[-77.35329632822213, 34.55098293395839], [-77.35341356002807, 34.55115002439708], [-77.35351137062277, 34.5513029537787], [-77.3535692829598, 34.551357797612326], [-77.35379933353757, 34.55144842931385], [-77.35387920231895, 34.55150736407552], [-77.35399508832282, 34.55147271448529], [-77.35407352132765, 34.551456300552026], [-77.35409367770575, 34.551453835121876], [-77.35416806836558, 34.55140947268419], [-77.35419321302244, 34.551393734488414], [-77.35419971403, 34.551389463657046], [-77.35431418790252, 34.551325025825676], [-77.35439260908673, 34.5512593318774], [-77.35446345510447, 34.55122908814798], [-77.35447676602632, 34.55115575542641], [-77.35457512542393, 34.55098077857248], [-77.35457888115775, 34.550967650504546], [-77.35458153890127, 34.55095835887715], [-77.3546865169266, 34.550707333456266], [-77.3545977347677, 34.550480932331034], [-77.35459805539438, 34.55047524558501], [-77.35458755334186, 34.55046453331842], [-77.3545051193515, 34.550243800566975], [-77.35446416656504, 34.55009926310586], [-77.35422254678045, 34.55011552206906], [-77.35397118791956, 34.549989554602185], [-77.35351362375212, 34.5499419782252], [-77.35343825930858, 34.550074200322605], [-77.35317984653985, 34.550276321347056], [-77.35327685837485, 34.55042060044207], [-77.35324426932027, 34.55053959267345], [-77.35320534130737, 34.550785483234414], [-77.35322501928528, 34.55091770569497]], [[-77.43130613570759, 34.5742466778727], [-77.4311350920159, 34.57363061322142], [-77.43062966797658, 34.573639958816784], [-77.43051798047144, 34.57368949112515], [-77.43001340231812, 34.5741526036914], [-77.42973026267086, 34.574444732069956], [-77.42970962349206, 34.574479502014114], [-77.42959452245283, 34.57451839467914], [-77.42915153447635, 34.57480780033641], [-77.42916293893312, 34.57519242960262], [-77.42948456513214, 34.57511845093229], [-77.42973050156954, 34.575177219755574], [-77.42990038392168, 34.575140270487026], [-77.43046062596504, 34.57518002660197], [-77.43051845112895, 34.57509326852616], [-77.4312591909388, 34.574328372090015], [-77.43130617179669, 34.57435134220291], [-77.43131209191209, 34.57427651091385], [-77.43131408870278, 34.57426981445197], [-77.43131476397062, 34.574260423268534]], [[-77.46081099458793, 34.59362168115614], [-77.4607084790645, 34.593429832516435], [-77.46040516956978, 34.59328900300562], [-77.45994428258824, 34.593219828836496], [-77.45965398477136, 34.593216860649434], [-77.45933615734329, 34.59322411800411], [-77.45919182527965, 34.59322576050889], [-77.45887876850837, 34.59325530427993], [-77.45882635933552, 34.5932818984911], [-77.45877772380955, 34.59352963705105], [-77.45879531206133, 34.59360644750703], [-77.4588327393313, 34.59366498589336], [-77.45890185702322, 34.59376068175162], [-77.45897150330245, 34.59381192652893], [-77.45905852445341, 34.59384604319154], [-77.45918029445234, 34.59386587090056], [-77.45937499611576, 34.59391617496516], [-77.4595613409117, 34.594046406621786], [-77.46002208829685, 34.594039132281196], [-77.46009507700732, 34.59407602014841], [-77.46016746851609, 34.594015895928976], [-77.4605488643562, 34.59381370050782]], [[-77.34287278247012, 34.74894241048856], [-77.34283771607018, 34.749008875592025], [-77.34282239625193, 34.749023791560155], [-77.34279368942796, 34.74906345817992], [-77.34283428295167, 34.749074882760674], [-77.3428648150464, 34.74903288471738], [-77.34287643966616, 34.74901637940697], [-77.34290186958548, 34.748980272284435]], [[-77.32651889929966, 34.74638503293865], [-77.32654125027334, 34.7463953923049], [-77.32664894193141, 34.74636721474534], [-77.32673870522328, 34.74623359960929], [-77.32677607172164, 34.746006966977916], [-77.3265574644187, 34.746072966210235], [-77.32655819082589, 34.746174459096416]], [[-77.31742370741124, 34.69368968268063], [-77.31680258958245, 34.69400693665872], [-77.31686182252707, 34.69412178924103], [-77.31717558963604, 34.694337819367014]], [[-77.33710230745018, 34.7688156944965], [-77.33709740705753, 34.76881036182823], [-77.33708109312143, 34.76881860253477], [-77.33709234324806, 34.768827778003285]], [[-77.32721413765502, 34.562526739794265], [-77.32710536200318, 34.56240591036544], [-77.32695310021653, 34.56256425120469], [-77.32710509027166, 34.562703640013446]], [[-77.42664165715277, 34.57586213208385], [-77.42685360814929, 34.575763745073495], [-77.42676180140492, 34.57557969668872], [-77.4266571537786, 34.57536755031889], [-77.42657861043787, 34.57525659432563], [-77.42654489727123, 34.57538377438707], [-77.42634277318481, 34.57558332082135], [-77.42618701917212, 34.5758576835634], [-77.42618577634842, 34.57586026409809], [-77.42618523754051, 34.575860821934356], [-77.42618479243048, 34.57586177369841], [-77.4261818894404, 34.57586395491833], [-77.42592913438469, 34.57604637520522], [-77.42593176718611, 34.57616974057739], [-77.42606929153042, 34.57617712024987], [-77.42618488984404, 34.5762041115211], [-77.42630421169152, 34.576139128159035], [-77.4264061772887, 34.57606692386779], [-77.42657879410959, 34.575892308844274]], [[-77.44600462729161, 34.59828720307177], [-77.44595449963727, 34.5983771244364], [-77.44605552098652, 34.5984731500074], [-77.44652350403152, 34.598660660958345], [-77.44668371814919, 34.59858831153399], [-77.44672997648793, 34.59840818938291], [-77.44628241076268, 34.59828360683222]], [[-77.425568444822, 34.57340195429412], [-77.42539611468271, 34.57333707022925], [-77.42502454452287, 34.573480557604306], [-77.42505834680685, 34.57353619483651], [-77.42533339209729, 34.5739282800117], [-77.42539628395, 34.57395635653118], [-77.4254554311823, 34.57390663081041], [-77.4254827740374, 34.57374565190496]], [[-77.34336547339053, 34.748199837446826], [-77.34326742076578, 34.748305006364646], [-77.34341826761631, 34.748246611905806], [-77.34346193529193, 34.74815543063944]], [[-77.33758042405344, 34.76920984190834], [-77.33750299045722, 34.769248140412884], [-77.33755737112942, 34.769289130149964], [-77.33779090778613, 34.769464586709205], [-77.33780486407561, 34.769468293253276], [-77.3379226800508, 34.76956037090295], [-77.33793382548843, 34.76955915308248], [-77.33808319233911, 34.769541402174625], [-77.33809285675953, 34.769532808035585], [-77.33808963152491, 34.7695192547542], [-77.33794354573857, 34.76954433132345], [-77.33785650167657, 34.7694433659386], [-77.33782421561314, 34.76943898286165], [-77.33761738056968, 34.769232459481955]], [[-77.4209610466292, 34.574177060241134], [-77.4210625628161, 34.57444305832938], [-77.4210712211206, 34.574467066146596], [-77.4211886274932, 34.574459428021264], [-77.4210850915064, 34.57449865213341], [-77.42122360018034, 34.574705479863056], [-77.42125964871396, 34.57485432542887], [-77.42127254145433, 34.574871889536325], [-77.42138728119828, 34.57493007867512], [-77.42138587753041, 34.574961660850065], [-77.42145667478331, 34.574993219988556], [-77.42153904813169, 34.57493953025047], [-77.42153808116994, 34.57492126935935], [-77.42152121154997, 34.574835960928155], [-77.42151363526861, 34.57477561821611], [-77.42147073983489, 34.574433961864116], [-77.42146885381612, 34.57441894024711], [-77.42172480899468, 34.57409277799751], [-77.42182107541333, 34.573943463544346], [-77.42151103423367, 34.57362259089454], [-77.42145944068413, 34.573567800423], [-77.4214550080408, 34.5735703208726], [-77.42145115204112, 34.573572326796274], [-77.4211493571147, 34.573709642142], [-77.42106243071592, 34.57384725531854], [-77.42095232754707, 34.5739503038227], [-77.42094937644985, 34.57406940969996]], [[-77.42486951026808, 34.57364597646853], [-77.42459501173619, 34.57395288161986], [-77.42460378794006, 34.573970833381594], [-77.4246083226883, 34.57398274494295], [-77.42463138151003, 34.57398681088382]], [[-77.42190514018989, 34.573872330366626], [-77.42224432177329, 34.57358532420829], [-77.42232786143016, 34.57378025894956], [-77.42252087437447, 34.573715763627945], [-77.42263827660835, 34.57346864413216], [-77.42273774976961, 34.573386425509845], [-77.4226381963975, 34.57313441316525], [-77.42250210826425, 34.57314254968975], [-77.42224425017524, 34.573281134929054], [-77.42215242818588, 34.573372022769654]], [[-77.32234624851559, 34.69509333217857], [-77.32236608108688, 34.69501173773915], [-77.32226759814918, 34.695023570800245], [-77.32211004687937, 34.695084680087014], [-77.32226545123514, 34.69508913202187]], [[-77.4569207323892, 34.74496586646562], [-77.45693057721937, 34.744972608351986], [-77.45694974610076, 34.74498573543456], [-77.4570043299849, 34.74498477518824], [-77.45697329880443, 34.74494392650316], [-77.45694172682816, 34.744683424119515], [-77.45678493445368, 34.744367542707096], [-77.45669332799831, 34.74416789310615], [-77.45635598935577, 34.74401644250801], [-77.45625917411427, 34.743968318315574], [-77.45615880755794, 34.74394454563971], [-77.45580242236603, 34.74386013223784], [-77.45578556206205, 34.74410032681165], [-77.45586995043858, 34.744205633203585], [-77.45590831324006, 34.74427231519951], [-77.45602693033746, 34.74436398905363], [-77.45609656964365, 34.74441696368191], [-77.45612509251556, 34.74443200435956], [-77.45617049069865, 34.74446100721212], [-77.45639535783826, 34.744606079719475], [-77.45660683585335, 34.744650435515645], [-77.45669184081052, 34.74468948973371]], [[-77.3610482247831, 34.61212025874087], [-77.36107408146738, 34.612121423710015], [-77.36107537769189, 34.61208712212671], [-77.36098858471983, 34.61201122252406], [-77.36096040282429, 34.611988653243685], [-77.36093429900707, 34.612019035646014], [-77.3609603810815, 34.61203472794451]], [[-77.40089392011686, 34.58099874838161], [-77.40087050162296, 34.58098263802038], [-77.40082951864288, 34.5809460594038], [-77.40080911511336, 34.58094483879433], [-77.40077199556217, 34.58101558471786], [-77.40077165609867, 34.58101602549024], [-77.40077161508468, 34.58101639718631], [-77.40077175796289, 34.58101663257266], [-77.40077199554239, 34.581016781691176], [-77.40077275007849, 34.581017046452736], [-77.40082124791736, 34.58104216031667], [-77.40084878369103, 34.581028662817204], [-77.40087050103645, 34.581020863181706]], [[-77.28647298520747, 34.627403104086184], [-77.28485313614411, 34.62732331975122], [-77.28316302266435, 34.62765474757916], [-77.28242911942314, 34.62800488154739], [-77.2792030725275, 34.62713636789894], [-77.27798080458702, 34.625847433823886], [-77.27788453101044, 34.62271961434584], [-77.27931606992931, 34.62036944106166], [-77.2802447053205, 34.6195844923122], [-77.28060064151242, 34.61886977601462], [-77.28136925392826, 34.61529416790117], [-77.28291788096882, 34.61312526737585], [-77.2831463821612, 34.6116141298496], [-77.28319019451396, 34.60971227510019], [-77.28324606092798, 34.60903650510076], [-77.28364508511577, 34.608498726481514], [-77.28553150449248, 34.60850273729147], [-77.28674314659733, 34.60852275344654], [-77.28923641485483, 34.61085393940115], [-77.2906881047043, 34.60798284203742], [-77.29180120788403, 34.60769271817657], [-77.29321162611706, 34.6103421634293], [-77.29246502375612, 34.61181876538461], [-77.29376549409477, 34.61298180173679], [-77.29491161539167, 34.61823544295065], [-77.2960661685705, 34.61939000082726], [-77.29854827785289, 34.62187206685023], [-77.29926793482639, 34.62259170595362], [-77.30011331580033, 34.62427486037645], [-77.29972799267803, 34.624887623084085], [-77.29830977506576, 34.6257894906641], [-77.29740872391673, 34.62609120707164], [-77.29655415822486, 34.62581612937484], [-77.29249706650707, 34.627135939487175], [-77.29130125530997, 34.62702969725956], [-77.28817863863267, 34.62700199071026], [-77.28738321530216, 34.6271714736344]], [[-77.29987846953154, 34.651191790853346], [-77.29993206050294, 34.65125131141285], [-77.29995123021965, 34.65130359543938], [-77.29991247086825, 34.651361395696874], [-77.299879051806, 34.65131347726197], [-77.2998740445137, 34.65128397317938]], [[-77.27310855923051, 34.641472531563416], [-77.27100282833352, 34.63963872830763], [-77.26940744089524, 34.639708630486325], [-77.26693574491492, 34.63919358721559], [-77.26404705719547, 34.63851467855319], [-77.26222652849255, 34.63864128419589], [-77.2589380830924, 34.6385773244041], [-77.25674161766759, 34.640346877465845], [-77.25769713676405, 34.643578097140846], [-77.25617292847494, 34.65036499858814], [-77.2561454744669, 34.65047588304554], [-77.25611430931359, 34.65054554154065], [-77.2561143109592, 34.65071502647189], [-77.25611426787813, 34.657296808527505], [-77.25538973519149, 34.660455719291086], [-77.25351966873846, 34.662715529661234], [-77.25290778204052, 34.663478426421776], [-77.25122295996611, 34.6640400284187], [-77.24995504555369, 34.66488879635213], [-77.2491743346638, 34.66533112764556], [-77.24904255296039, 34.66594659114182], [-77.24856631502155, 34.665619786894354], [-77.24822815450341, 34.66512444212047], [-77.24453931137474, 34.6644048494764], [-77.24357374010013, 34.664216461963385], [-77.24140333022268, 34.66340812888606], [-77.240812660177, 34.66321751123708], [-77.24055127293578, 34.66311311911666], [-77.23981745764829, 34.66270124381518], [-77.2371683975209, 34.66116321877846], [-77.23532937648598, 34.66009542663711], [-77.23454152927542, 34.65920655375129], [-77.23346531584949, 34.658430128374775], [-77.23339320043695, 34.6572550722086], [-77.23350189964957, 34.65665634796211], [-77.23348293122173, 34.6563361611393], [-77.23416407274397, 34.65471434990956], [-77.23432463813364, 34.65182510322305], [-77.23553707221748, 34.65105173692285], [-77.23763824687143, 34.64951185622636], [-77.23821761036358, 34.6490146417138], [-77.23984252394891, 34.647620118670474], [-77.24068399730376, 34.646960478373245], [-77.24341019558891, 34.64413032990466], [-77.24341050652689, 34.64412548712464], [-77.2425734549836, 34.64150709634065], [-77.24202589372481, 34.640250514490404], [-77.24021860187011, 34.637119408396856], [-77.23985656198693, 34.63664532658304], [-77.23973063584964, 34.636298973983834], [-77.23892530672119, 34.63487884905306], [-77.23859235019003, 34.634323917666876], [-77.23852145630207, 34.6342057618213], [-77.23885481477724, 34.6331497821102], [-77.23903044309776, 34.632473039474014], [-77.23927530194366, 34.63231955046212], [-77.24101075379475, 34.63147412214106], [-77.24325767762602, 34.63111848342265], [-77.24616238264919, 34.63079576076116], [-77.25005841294251, 34.629889059496755], [-77.2507043126285, 34.62973874218652], [-77.25095040358156, 34.62979401817374], [-77.25234015068449, 34.62975019142394], [-77.25674292222244, 34.629685100208064], [-77.2582046928003, 34.626440798032334], [-77.25830418575786, 34.625814922372825], [-77.25969808950494, 34.623341795817055], [-77.26022551064155, 34.62282901156904], [-77.26022802807603, 34.62226715014342], [-77.2612989344303, 34.62213829494115], [-77.2631470934212, 34.62120895411238], [-77.26561178513006, 34.6219275413224], [-77.2658734155677, 34.62203966174622], [-77.2659702636142, 34.622075794942354], [-77.26622601208592, 34.6221590163279], [-77.26795069468493, 34.622746491838], [-77.26862204539641, 34.622981532232664], [-77.26994868825034, 34.623382479661515], [-77.27165607044165, 34.6253496473836], [-77.27401586037047, 34.62451392260356], [-77.27622640284464, 34.62754342333546], [-77.27669097697137, 34.628397033031476], [-77.27783241656101, 34.63335485889114], [-77.2778428495029, 34.63407386434148], [-77.27656499006768, 34.63708614389077], [-77.27636000803301, 34.63732032936752], [-77.27610086770069, 34.6387344521346], [-77.27539943054647, 34.641159383120005], [-77.2750527637603, 34.64232541245794]], [[-77.36587311046583, 34.713204957735755], [-77.36587883243742, 34.71325802111554], [-77.36580194829618, 34.71329500479101], [-77.36572822679622, 34.71328680992234], [-77.36569122589148, 34.713229944615726], [-77.36556740914884, 34.71298209570602], [-77.36442187211406, 34.711454772060925], [-77.36427135893072, 34.71125409460052], [-77.36407531508385, 34.710992702683285], [-77.36309629896454, 34.70968731327138], [-77.36288876668138, 34.7091642370278], [-77.36262536766336, 34.70773744375441], [-77.36178158727586, 34.70686242182552], [-77.36207369288347, 34.70592866750084], [-77.36208079463772, 34.704787173958174], [-77.36345765107298, 34.7048699592612], [-77.36420354218242, 34.704998463298054], [-77.36584995422722, 34.704878048792025], [-77.36618961921431, 34.705363225040216], [-77.36714424659678, 34.705889032780114], [-77.36775052017049, 34.706580639887015], [-77.36831314907323, 34.707020996928804], [-77.36833000867114, 34.70777188311461], [-77.3684137402349, 34.70798196202813], [-77.36838478804862, 34.7080881980593], [-77.36827423504383, 34.70897590909244], [-77.36797140565088, 34.71000675248547], [-77.36746666167285, 34.71103644200497], [-77.36591240489808, 34.71314506468166]], [[-77.32449965715088, 34.707076293178964], [-77.32458045199527, 34.707102088798784], [-77.32483669134243, 34.707138837750506], [-77.32741076204441, 34.70807826804559], [-77.32871096886916, 34.70906679541745], [-77.33119831652681, 34.70805115910572], [-77.33157875131039, 34.708025633565846], [-77.33254650390114, 34.70803144436415], [-77.3336846099282, 34.7084349177189], [-77.33485808027646, 34.70865635454656], [-77.33773814807682, 34.70874228766876], [-77.33833476913162, 34.70891578618094], [-77.33881055596801, 34.70876924643722], [-77.340853704265, 34.7084889863616], [-77.342074655159, 34.70867412521514], [-77.34179872775474, 34.70962381443867], [-77.34250479753462, 34.71104927475826], [-77.34250478372874, 34.712514125933716], [-77.34248190808789, 34.71540481467105], [-77.34248699601503, 34.71805864723242], [-77.34250489746768, 34.720312071437064], [-77.3425048910168, 34.72169374890045], [-77.34118472278286, 34.72711774634703], [-77.34060914764709, 34.728370174427596], [-77.33699081168058, 34.73002482828924], [-77.33617907961785, 34.72971223234428], [-77.33477245545157, 34.729170570241585], [-77.33503541201132, 34.72743851919475], [-77.33267094393986, 34.728403683185235], [-77.32983011001994, 34.72726738860818], [-77.32763736147822, 34.72682137495115], [-77.32401936738201, 34.7252031759262], [-77.32216073078447, 34.724726510234944], [-77.3185694797363, 34.723593105976036], [-77.3167253783688, 34.72259991730757], [-77.31551715944357, 34.72149085920793], [-77.31199736905337, 34.72167154853085], [-77.30862481808882, 34.722521960663], [-77.30555861338954, 34.72278488253312], [-77.30256828364968, 34.720872533038765], [-77.3043975992979, 34.71773586008807], [-77.30292250833291, 34.71538092991241], [-77.30235943291635, 34.71472870495177], [-77.3015043600148, 34.71423298056163], [-77.30021322242801, 34.71121885318284], [-77.30009650744039, 34.71052680943356], [-77.30073833055835, 34.709670351799765], [-77.3023516256711, 34.706319373843456], [-77.30481798578913, 34.70508617445364], [-77.30580319293703, 34.70548191417059], [-77.30604176975348, 34.705593647868376], [-77.30613660226538, 34.70580131427136], [-77.3098330701677, 34.708095044020624], [-77.31079055741407, 34.70824750833199], [-77.31932355211808, 34.70773620763387], [-77.3195525005363, 34.70761671197946], [-77.31965279654888, 34.7077386633232]], [[-77.30520677861017, 34.58835109834428], [-77.30671118046395, 34.58736861238267], [-77.30746571603187, 34.586851983670336], [-77.30841542813391, 34.58717151166158], [-77.31008155438161, 34.587134070920605], [-77.31141390789782, 34.58723815349979], [-77.31500201627559, 34.588476251098136], [-77.31534243587691, 34.58864012576802], [-77.31563065871934, 34.58928155081149], [-77.31739220386842, 34.590222946634015], [-77.31655664636821, 34.58825596943479], [-77.31606611282093, 34.58767071318154], [-77.31606436259429, 34.584930428615095], [-77.31599032318621, 34.58437068452377], [-77.31681448718811, 34.58288311913199], [-77.31754430206328, 34.58247545703454], [-77.31861484428481, 34.58286039048642], [-77.32078167993703, 34.580856756038386], [-77.32152396851531, 34.58048560100012], [-77.32177065762116, 34.57929247130109], [-77.32249717142639, 34.57459571382563], [-77.32261302711495, 34.57380117646057], [-77.32304297257728, 34.57237565127443], [-77.32390367581087, 34.570219491724444], [-77.32412868345966, 34.56932137263992], [-77.32434497160482, 34.56845796020403], [-77.32493365588854, 34.5677290762377], [-77.32541256120889, 34.56712187959646], [-77.32619725678367, 34.5664936840781], [-77.32637929388468, 34.56632577637443], [-77.32651093665878, 34.56621871046833], [-77.3266400961236, 34.56629079950983], [-77.32665925491875, 34.56642729998675], [-77.32737220282695, 34.56709404668694], [-77.32755317678787, 34.56742313158293], [-77.32789475335167, 34.56794790817992], [-77.32784744532486, 34.56821070208068], [-77.32777393786971, 34.56932929180601], [-77.32770695525257, 34.56967303945015], [-77.32742875322147, 34.570418033212114], [-77.3274755814252, 34.570555361283056], [-77.32744162141127, 34.570718454173196], [-77.32751378801554, 34.57139894192827], [-77.3270308398055, 34.572034272492054], [-77.32692895854653, 34.57318112130805], [-77.32677324831978, 34.57349330564466], [-77.32668937345429, 34.574713058110255], [-77.32691709468052, 34.57488096996448], [-77.32692762657099, 34.57533740619782], [-77.32688698299367, 34.576583432279186], [-77.32672706532263, 34.57854952068767], [-77.32236950304113, 34.58062868828965], [-77.32670846981023, 34.58147565560681], [-77.32807277167058, 34.581932719129554], [-77.32866275863314, 34.582484685439496], [-77.32996138487242, 34.582934254459154], [-77.3304983260777, 34.583638508571994], [-77.33416729816567, 34.5857261094843], [-77.33427282993331, 34.58582021709868], [-77.33437414500406, 34.58596425965374], [-77.33819541868208, 34.58782113429679], [-77.34067758304099, 34.58800046189531], [-77.34317373142684, 34.587119766939075], [-77.34383070187711, 34.58715250947518], [-77.3441594013314, 34.58733157639814], [-77.34698288523447, 34.58763388973604], [-77.34921747446161, 34.58794699133158], [-77.35013525011937, 34.58786255870481], [-77.35130843423487, 34.58792144685831], [-77.35328775012307, 34.58788951592952], [-77.3546626760025, 34.58808978930002], [-77.3564398222541, 34.5886900541142], [-77.35702348812708, 34.5886027359918], [-77.35693309868172, 34.58924452246636], [-77.35655987194802, 34.58942800359216], [-77.35643920885194, 34.58982103387262], [-77.35446729960836, 34.590871967132415], [-77.35414128841356, 34.593042680130495], [-77.35422984797825, 34.595406723273726], [-77.35565043510135, 34.596221922232004], [-77.35643418914502, 34.599140483907085], [-77.3564988063422, 34.59942648019588], [-77.35801064216935, 34.59916427085508], [-77.35811975728318, 34.59926298142788], [-77.35810569381994, 34.59936750995077], [-77.35816250545756, 34.60010593325907], [-77.35800990167927, 34.600599584447735], [-77.35749520104193, 34.600201967647976], [-77.35760113566542, 34.59977840190818], [-77.35674152564474, 34.59979276728039], [-77.35643386493471, 34.59974583897626], [-77.3563358682161, 34.59962533153269], [-77.3563052726557, 34.59952410279889], [-77.35328172837322, 34.59831471591366], [-77.35210612468072, 34.59799844429531], [-77.3498636586445, 34.597054464173674], [-77.3479265066033, 34.59631048247955], [-77.34697747705798, 34.59589907348959], [-77.34433592667658, 34.59500327539512], [-77.3438252669548, 34.595003272935], [-77.34339799524156, 34.59504828332588], [-77.34067228711291, 34.59525808208552], [-77.33827080509222, 34.5961351737204], [-77.33436490853578, 34.59743715488362], [-77.32866056193927, 34.599452787961305], [-77.32805891639748, 34.597640588343694], [-77.32500989656214, 34.59734227900394], [-77.32533512404319, 34.600562690243585], [-77.31917837119326, 34.60257152698329], [-77.31861494663829, 34.604164631977056], [-77.31694564099365, 34.60846508264631], [-77.31558906087308, 34.60989658311816], [-77.31470947577581, 34.610220334305126], [-77.31310707803314, 34.611422062577454], [-77.31248406345148, 34.61188930829555], [-77.31221873102191, 34.6120868177824], [-77.31013615920799, 34.612947490986016], [-77.30771444530367, 34.61321735881818], [-77.30753039134555, 34.61327927172683], [-77.3048797877525, 34.61226799224653], [-77.30293625726004, 34.61319171193763], [-77.30010938259497, 34.610772105846024], [-77.299768029625, 34.605789638657406], [-77.29892171968399, 34.604183115677856], [-77.29916180347654, 34.60230714002534], [-77.29965449859618, 34.60034288074618], [-77.3016402047374, 34.59705913178758], [-77.30167863073328, 34.59689457900791], [-77.3017563157638, 34.59667947078058], [-77.30264225819897, 34.59245486905594], [-77.30324303661507, 34.590087861239816], [-77.30445522983682, 34.58880932297416]], [[-77.25583844187516, 34.696117891427974], [-77.25441570323629, 34.69727556917576], [-77.25520247202275, 34.69829891815758], [-77.25635042018729, 34.69965427542581], [-77.25689051143668, 34.70072425915934], [-77.25702402767969, 34.700818234133536], [-77.25831549252753, 34.70129592458805], [-77.25893202933746, 34.70193749674216], [-77.26140307210724, 34.70022045699942], [-77.25973979705276, 34.69916692273594], [-77.2585773966467, 34.697943796479755], [-77.25703809009534, 34.696917668228714]], [[-77.2999241756921, 34.72568194204075], [-77.30021748659024, 34.726105547213045], [-77.29971706949758, 34.726393392154705], [-77.29952409286243, 34.72620041773364]], [[-77.47763252693946, 34.73212929058481], [-77.47841800084952, 34.73331170394259], [-77.4797688895846, 34.734765767584264], [-77.4761257003315, 34.7373455037205], [-77.47570379717209, 34.737485943529705], [-77.4752845696041, 34.73767208337503], [-77.4711055665764, 34.736968972192486], [-77.47021126922061, 34.736738824844224], [-77.46865586710624, 34.73657179263999], [-77.46748611158034, 34.736028979842054], [-77.46643875641625, 34.735369833114824], [-77.46603189348227, 34.73491212544284], [-77.46542602803822, 34.73423052667255], [-77.46489326649362, 34.733601680565926], [-77.46464182416386, 34.73271432470646], [-77.46434234106299, 34.73204585949911], [-77.46418772594188, 34.73064484800743], [-77.46455012370505, 34.72945298202801], [-77.46506183204868, 34.72817378891785], [-77.46556186851613, 34.726909923862216], [-77.46611578926839, 34.72552798102933], [-77.46624795476183, 34.72504093407525], [-77.46682597520129, 34.72515674003999], [-77.46859202415342, 34.72587857153498], [-77.46912175776363, 34.72608545566431], [-77.47030860528096, 34.7259829154968], [-77.47320522644276, 34.727431198875806], [-77.4737784636909, 34.72771780856268], [-77.47399794140748, 34.72801399396954], [-77.47423701780336, 34.72836342047264], [-77.47594745704001, 34.73077160172891]], [[-77.29507177937259, 34.706657094200345], [-77.29611893938338, 34.706916783833364], [-77.29732495335966, 34.70700721721269], [-77.29757680912113, 34.708879760074126], [-77.29519524470888, 34.70762671561098], [-77.2905524887559, 34.70850426345597], [-77.2902640906513, 34.7079730634866], [-77.29105052222755, 34.70679380196555]], [[-77.5309629480541, 34.70763189087749], [-77.53455477622141, 34.70421406409257], [-77.53478474984021, 34.703754115832425], [-77.53560914852538, 34.702105155714044], [-77.53581350929669, 34.70169649197173], [-77.53650845179713, 34.70030682207292], [-77.53485588445083, 34.69969972960668], [-77.53463934495895, 34.69947127426134], [-77.53446651363757, 34.69941283171321], [-77.5325853132947, 34.69909986181072], [-77.53124581116165, 34.69996196300681], [-77.53037044545768, 34.70027864048276], [-77.5304640364313, 34.700918575624385], [-77.5309518786786, 34.701894306448644], [-77.53264838303795, 34.703549412288965]], [[-77.43361904906098, 34.67597964418078], [-77.43360302062288, 34.67612941475793], [-77.43360056393965, 34.676152371311176], [-77.43359315914586, 34.67617700400898], [-77.43355752976808, 34.676192319695026], [-77.4335572301278, 34.676148529678436], [-77.43355662838601, 34.6761370052601], [-77.43355421011921, 34.676113324627835]], [[-77.31920710630617, 34.6734023816953], [-77.31760021778204, 34.67555879242519], [-77.31640367995956, 34.675558791099775], [-77.31609072891527, 34.67421939577889]], [[-77.42570947555659, 34.732091995083366], [-77.42571324698994, 34.732090563639034], [-77.42589073482951, 34.73201424124134], [-77.42591252602635, 34.732011974718674], [-77.42605892362192, 34.7320038868546], [-77.42614281400643, 34.732106626448505], [-77.42614377972698, 34.73213870567603], [-77.42612427270646, 34.73220887485932], [-77.42611253428599, 34.7322358089187], [-77.42606073910957, 34.73229202649539], [-77.42597362084067, 34.732298525900106], [-77.42595164775207, 34.732300737727265], [-77.42592216800331, 34.732309034413674], [-77.4258511762194, 34.73232353347213], [-77.42569467661667, 34.73236928281585], [-77.4256278249526, 34.732385609774845], [-77.42556200708884, 34.732322908738226], [-77.42569297589205, 34.73210355152774], [-77.42570517433052, 34.732093418757145]], [[-77.32280256937307, 34.67506651275676], [-77.32132877539662, 34.67492294826175], [-77.32083833179837, 34.67332376930965], [-77.3225921837134, 34.67395105230867], [-77.32455235399235, 34.673946094641764], [-77.32458769684095, 34.674032007569686], [-77.32484444394824, 34.67432412815629], [-77.32444807271783, 34.67430488014283]], [[-77.41549900617024, 34.55782468517823], [-77.41559850677582, 34.5578005856684], [-77.41633201573023, 34.55749519487303], [-77.41653121686278, 34.557724336756166], [-77.41688331186617, 34.55792848455135], [-77.41684493734415, 34.558231754129494], [-77.41658549832695, 34.55829257323784], [-77.41633208376108, 34.55794003298581], [-77.41558024504042, 34.55790050296418], [-77.41553309004787, 34.55788055906242]], [[-77.4509168589616, 34.68276590126686], [-77.45090526067207, 34.68279149651291], [-77.45081407287336, 34.68300947936466], [-77.45080775724053, 34.68301123682875], [-77.45077381381415, 34.68302224468506], [-77.4506313293749, 34.68306742354822], [-77.45061575155363, 34.683065947892274], [-77.45051536389482, 34.68301856324685], [-77.45049566737416, 34.6829825848518], [-77.45046096546633, 34.68292967269307], [-77.4504160588584, 34.682870356006845], [-77.45044576493277, 34.68278817206002], [-77.45050575538288, 34.68262220253691], [-77.45065776314462, 34.68240106659083], [-77.45066106231427, 34.682392452329395], [-77.45067180739088, 34.682395201866036], [-77.45090843111072, 34.6826629614863]]]]}, "type": "Feature", "id": "demo14", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.27103610812996, 34.715986059462104], [-77.27151778249966, 34.71443385881423], [-77.27123064630447, 34.71343362609651], [-77.27229352088365, 34.70688095031424], [-77.27309948095964, 34.7064204326544], [-77.27955425122695, 34.70310505991705], [-77.28261176463205, 34.702872330369686], [-77.28721445346636, 34.70115276294006], [-77.28497793088073, 34.70479709031129], [-77.28608595705681, 34.70517177188386], [-77.28661658476636, 34.70556963721442], [-77.28971702622013, 34.70414908534742], [-77.28905985049494, 34.70132203671073], [-77.28867253103218, 34.70003221158417], [-77.29046512618086, 34.69624922524882], [-77.29015023706515, 34.69574468706402], [-77.29000234867218, 34.69394193013619], [-77.28973978531806, 34.69290831211621], [-77.29000239067007, 34.69241374598698], [-77.28983603123518, 34.691791468587745], [-77.29006103465736, 34.69045633830595], [-77.29121500454963, 34.68977661501168], [-77.29346016346067, 34.689991377344036], [-77.2935202627266, 34.69000246035347], [-77.29354298653845, 34.690005862855735], [-77.29357728841974, 34.69000247470301], [-77.29596016759577, 34.689928581878526], [-77.29898712897399, 34.689694295987664], [-77.30330333963107, 34.68669485590804], [-77.30563247293189, 34.685373447909406], [-77.30733790623182, 34.68374424549497], [-77.30869535079351, 34.68298262023178], [-77.30874625577131, 34.68205085233877], [-77.30887736546248, 34.6784517886194], [-77.30885731089137, 34.678210304114224], [-77.3088423122185, 34.67813884201585], [-77.30886076789987, 34.678020710814074], [-77.30819173848849, 34.672417428514336], [-77.30687358561829, 34.670610716088355], [-77.30647188875955, 34.670439197849014], [-77.30622501491057, 34.67006546843731], [-77.30402014860687, 34.666109551398925], [-77.30288908696174, 34.66440462517695], [-77.30130763918048, 34.66229602040737], [-77.29928414877392, 34.66100326260576], [-77.29738465088639, 34.66230971257427], [-77.29701881473484, 34.662481020410894], [-77.2965034999563, 34.662618305002574], [-77.2946216556888, 34.66330126041197], [-77.29323363504321, 34.66377254383032], [-77.29106722077948, 34.66418984029251], [-77.28972818460186, 34.66444778877363], [-77.28847189936593, 34.66466480131008], [-77.28615610767613, 34.66472280288559], [-77.28466748541591, 34.664760059841754], [-77.28222531375346, 34.664169547023654], [-77.2817123112997, 34.66433196448225], [-77.27951011138771, 34.664589634663855], [-77.2763377365251, 34.66577997788831], [-77.27463493618274, 34.66582853251599], [-77.27209799369052, 34.66538895165732], [-77.26923017259652, 34.664421979979004], [-77.26805917442411, 34.6637943538484], [-77.265127643266, 34.66281723208293], [-77.26408749630214, 34.662470510537325], [-77.26363062873385, 34.66204078083289], [-77.26307740002677, 34.66309727930835], [-77.26324180432249, 34.664140891203466], [-77.2628119636208, 34.667394518684986], [-77.26092517628275, 34.668716295681236], [-77.2600107684524, 34.669555621838], [-77.25952494833345, 34.66966477592995], [-77.25815504661625, 34.66960293513281], [-77.25743496284669, 34.66948509994147], [-77.25603524080697, 34.66920519708807], [-77.25420759668818, 34.666156076580556], [-77.2525783584741, 34.66851382698902], [-77.25133567569634, 34.66931791161267], [-77.24987655899683, 34.670118622336474], [-77.24924985816412, 34.670745319560694], [-77.24878228631555, 34.67180003572755], [-77.2476009244377, 34.6745471519606], [-77.24612249743703, 34.67696949180862], [-77.24567839355272, 34.67897471396713], [-77.24481919828482, 34.68248061807213], [-77.24477152763741, 34.68334129655275], [-77.24507722864173, 34.68374353326179], [-77.24585217385277, 34.68566194260591], [-77.2464106065477, 34.68667197698266], [-77.2465593721821, 34.68826934899711], [-77.24816573548017, 34.689576617427875], [-77.24889578014816, 34.69023154519471], [-77.24911670182682, 34.69141078282379], [-77.24849744835339, 34.693082305584554], [-77.25078814318768, 34.69387195700361], [-77.24740768829969, 34.69500473332242], [-77.25055692930812, 34.69780211688129], [-77.25436188576947, 34.70118154567532], [-77.25626448054408, 34.70287121032649], [-77.25816715302366, 34.70456084180638], [-77.26197273112473, 34.70794000523018], [-77.26577862012665, 34.71131903590245], [-77.26958482008342, 34.714697933778865]], [[-77.30796998421744, 34.748750928765936], [-77.307902649574, 34.74844692440022], [-77.30814472986643, 34.74811011357395], [-77.3101938472981, 34.74423445921768], [-77.3104572979336, 34.7431805532152], [-77.31069844348215, 34.7422159715922], [-77.31024553337855, 34.74055163265942], [-77.31017899574907, 34.7403376503453], [-77.31024579217515, 34.74019065922865], [-77.31008421608502, 34.74016373346879], [-77.30888574857205, 34.7380834590174], [-77.3064659222597, 34.736947014146935], [-77.30656539669505, 34.73671430719811], [-77.30585888914243, 34.73666190791381], [-77.30596569585686, 34.73717518077758], [-77.30479952384275, 34.741073899582766], [-77.304920875596, 34.74143915176055], [-77.30567542130967, 34.74370288582274], [-77.30669217697395, 34.74471371594805], [-77.30710142740406, 34.74798084651542], [-77.3076639340478, 34.748479599022524]], [[-77.3879047803339, 34.77463496180107], [-77.38796300370645, 34.7742498329621], [-77.38630601906624, 34.770935972514636], [-77.38536351970644, 34.7685526298158], [-77.38505628408213, 34.7683668131491], [-77.38328472514786, 34.76599673926409], [-77.38443754747341, 34.76854354601515], [-77.38403355661055, 34.76910657582644], [-77.38040441735605, 34.77160620081947], [-77.37999663908735, 34.77259669137336], [-77.37955996598114, 34.7781103677483], [-77.38259587504663, 34.77684612511951]], [[-77.50954268549401, 34.72387897700779], [-77.50622621772754, 34.721897503624646], [-77.50319133880103, 34.722578783811976], [-77.50092551002413, 34.72249762049031], [-77.49856029644052, 34.72343813807402], [-77.49751075861747, 34.72526082327245], [-77.49749758281955, 34.72534093582555], [-77.49749753324006, 34.7275383869666], [-77.49577654161212, 34.7296322245749], [-77.49929049551162, 34.72816391340189], [-77.5022060382906, 34.72694549387504], [-77.505121492128, 34.72572700793548]], [[-77.53041425669, 34.71515174620955], [-77.5331663376498, 34.71173748022372], [-77.53480311372294, 34.711691829927105], [-77.53919987884883, 34.710786247812024], [-77.5397748212877, 34.70991896828104], [-77.53859152709562, 34.705621307277], [-77.53783737353496, 34.70288194898774], [-77.53708327522848, 34.70014258274434], [-77.53632923216598, 34.69740320854824], [-77.53629499526672, 34.69727881933787], [-77.53388701877205, 34.69672983575746], [-77.52825002118871, 34.69706265480275], [-77.52785122721832, 34.697198417978186], [-77.52734703912729, 34.697408982212636], [-77.52700319363746, 34.69711274994267], [-77.51943641687826, 34.697222714686376], [-77.51636528666971, 34.69619900186875], [-77.51480078617546, 34.69567749942866], [-77.51320239872985, 34.69514471229097], [-77.5116614484196, 34.69463106206412], [-77.51016541774028, 34.69413238795985], [-77.50825098822816, 34.69360376214331], [-77.50685191661651, 34.69319244482688], [-77.50559208958246, 34.69281222872878], [-77.50276764136717, 34.69221449035836], [-77.50228083955375, 34.69146215694951], [-77.50101318397279, 34.691471122936], [-77.50028101869827, 34.69144699422712], [-77.50083395947973, 34.69081886439146], [-77.50145972903721, 34.690193091878676], [-77.50224308748327, 34.689409686561085], [-77.50331208719165, 34.68836266910715], [-77.50294398680398, 34.68625508980703], [-77.50328041496147, 34.68587474084887], [-77.50231835081846, 34.68409555135936], [-77.50218157755084, 34.68351820224396], [-77.50203352240462, 34.68296262932516], [-77.50179721578188, 34.68107263004814], [-77.50133539153187, 34.68080522085856], [-77.501324924735, 34.67799001271296], [-77.50122906834628, 34.67788106233494], [-77.50132141995924, 34.67776023024416], [-77.50132226838211, 34.67727336030247], [-77.50123264340392, 34.67640278600255], [-77.50118650046666, 34.67523620142146], [-77.50112445821524, 34.6749564053914], [-77.50099795487455, 34.67472968628457], [-77.50043062597287, 34.67367722470365], [-77.50025482084973, 34.67338762103147], [-77.49925890380466, 34.67319665404148], [-77.49729919052959, 34.67387908633885], [-77.49632524285065, 34.67440627146881], [-77.49316079726633, 34.67491114015433], [-77.49186798352355, 34.674916283222075], [-77.48799480491142, 34.67472775018166], [-77.48598468211944, 34.67479156457871], [-77.48165664113219, 34.67584778342005], [-77.48001653588322, 34.676332318561904], [-77.47746345127123, 34.679337517204736], [-77.47739500733728, 34.68172771578122], [-77.47734926832834, 34.68195185162158], [-77.47703777268472, 34.684143248414586], [-77.47636431858129, 34.68497598734281], [-77.47545408854288, 34.68766609684915], [-77.47518785773087, 34.688265835191025], [-77.47511649943279, 34.688426609907005], [-77.47514699998864, 34.68876050487424], [-77.47474609230242, 34.688865555470954], [-77.4733315022329, 34.68900257889417], [-77.4694146766498, 34.68957671887745], [-77.46833445452305, 34.68959030858154], [-77.46684772166192, 34.689590271031385], [-77.46613372028898, 34.68843781418508], [-77.46491664549356, 34.6874026891537], [-77.46420283048383, 34.685672734642665], [-77.46443645642171, 34.68469563681216], [-77.46441985777611, 34.68395074287608], [-77.46412316915726, 34.68322187659878], [-77.46406406758906, 34.682575074850234], [-77.46338975647663, 34.68045983546211], [-77.4629946021164, 34.67992579292948], [-77.46247079051052, 34.679054037605454], [-77.4618962275558, 34.674968611704834], [-77.4614181908504, 34.674466879069], [-77.46090444941369, 34.67355187017199], [-77.45981325312526, 34.670198024945975], [-77.45878415636977, 34.66930948442273], [-77.45622092348123, 34.667272421425324], [-77.45261966602595, 34.66852059889371], [-77.45010959155275, 34.66977851823399], [-77.44936300760263, 34.671995001406984], [-77.44726405876185, 34.67373876316177], [-77.44619610219057, 34.67579784870443], [-77.44617607925166, 34.6758359778824], [-77.44609132725483, 34.67588151251867], [-77.44362981285326, 34.6774232888054], [-77.44269959995933, 34.67760443697941], [-77.44207995009225, 34.67774026202784], [-77.4411217122223, 34.67801599047398], [-77.44067590627846, 34.67816423150256], [-77.44033308207327, 34.678222280268315], [-77.44000219076204, 34.678278307440685], [-77.43991860086582, 34.67829246090162], [-77.43979880303056, 34.67831993323589], [-77.43964569858409, 34.67840323392029], [-77.43965482429627, 34.6782695880328], [-77.43964090653824, 34.678072766367706], [-77.43969898357173, 34.6779334651355], [-77.43993781033633, 34.67780949773967], [-77.4399983011888, 34.67767503716346], [-77.44042715680466, 34.677421565056235], [-77.44042695647578, 34.676880328960934], [-77.44100091488495, 34.67650410419412], [-77.44038229456905, 34.676031225356304], [-77.4401544529972, 34.67593084759149], [-77.43985953857259, 34.67571403390529], [-77.4389198983393, 34.675776421642205], [-77.43880573860405, 34.67576889710439], [-77.43875337702175, 34.67576488954996], [-77.43872690633484, 34.675708933834315], [-77.43835723633373, 34.67513117918996], [-77.43811252052728, 34.67476815725126], [-77.43707391333346, 34.67322734913013], [-77.43676063822487, 34.67276259808789], [-77.4365584448768, 34.672689670393346], [-77.43508492693866, 34.671152619139484], [-77.43469456590061, 34.67026669245274], [-77.43157067473858, 34.6685003620232], [-77.43079230961972, 34.669082546305866], [-77.42958257997948, 34.66755517130174], [-77.42838297249641, 34.66615671086739], [-77.42784969950458, 34.66536367544835], [-77.42628615566181, 34.66380010173707], [-77.42599604736426, 34.663509980010986], [-77.4247555850563, 34.6618301163763], [-77.42455758691744, 34.66133853666004], [-77.42377882313818, 34.66056900801324], [-77.42261584433308, 34.65893771603128], [-77.42298466938124, 34.656680656111355], [-77.42288454242183, 34.655907339044965], [-77.42325258679284, 34.6554291691787], [-77.4233277156012, 34.653760043695655], [-77.42344921410647, 34.65279269751983], [-77.42332772918158, 34.65260550802599], [-77.42332778542362, 34.650499767569926], [-77.42341622432443, 34.64984825378001], [-77.4239660192287, 34.64840425623113], [-77.42415569145204, 34.648311651586404], [-77.42479598462151, 34.647155812399745], [-77.42536623621773, 34.64633895320235], [-77.42540154523503, 34.64626980933895], [-77.4254382026258, 34.64609620393641], [-77.42563144410163, 34.64613523448166], [-77.42568569518966, 34.64624795042015], [-77.4270642078265, 34.64685164352842], [-77.4295581135507, 34.6480986526904], [-77.42991683035541, 34.64821275266669], [-77.43027625010009, 34.648400245726414], [-77.43181596233099, 34.649549118606565], [-77.43277040771383, 34.649826317091346], [-77.43326906857565, 34.649022816718826], [-77.43457940601309, 34.648749329692976], [-77.43761366300643, 34.6458033570597], [-77.43777546533315, 34.64564398941353], [-77.43790778287708, 34.64553805319896], [-77.43835031405719, 34.6452219634185], [-77.44379785148911, 34.642795422941084], [-77.4451504409051, 34.641257379019045], [-77.44844697491199, 34.639466444681474], [-77.4513768578127, 34.6359720726435], [-77.45179985138004, 34.635684051756044], [-77.45201471064844, 34.63559794360291], [-77.45236732788025, 34.635404943611725], [-77.45562383449379, 34.633415339747714], [-77.45754219775844, 34.63273733217767], [-77.45943361146394, 34.63196559783961], [-77.46116789935635, 34.63196115918903], [-77.46363350950894, 34.63193989388802], [-77.46504753015736, 34.630406989995926], [-77.46463006080106, 34.6292381303875], [-77.46431069015286, 34.62811818864452], [-77.46391043320747, 34.626489229594696], [-77.46361566208735, 34.62530995899158], [-77.46357853276929, 34.62493852166304], [-77.46437426213184, 34.62340272478272], [-77.46518980808055, 34.62226852108361], [-77.46867596194262, 34.62217542589699], [-77.46919356917027, 34.622146673692825], [-77.46937730402024, 34.622199172219354], [-77.47068545808385, 34.62246882800876], [-77.47332771973608, 34.621264819218254], [-77.47347383860466, 34.618489082485], [-77.4734616973895, 34.61785551577498], [-77.47344427880984, 34.61694730071366], [-77.47171549882307, 34.61538328905715], [-77.47054023753033, 34.6131825283191], [-77.47027856543555, 34.61285542628433], [-77.46976671230809, 34.61223816932296], [-77.46933099398757, 34.61017159761806], [-77.46774481869447, 34.609285071167996], [-77.4676330038636, 34.609179040340976], [-77.467278122606, 34.608890500163156], [-77.46775217217535, 34.60859522967689], [-77.46836188535416, 34.60853026369516], [-77.46980588967665, 34.608415701924834], [-77.47078130765182, 34.60763826554309], [-77.47115465295967, 34.606696881896106], [-77.47499735778084, 34.60415795987897], [-77.47613057474064, 34.600802098379305], [-77.47644871828703, 34.59971090372799], [-77.47637987209184, 34.59929695348534], [-77.47622521419238, 34.59891034891144], [-77.47442226795178, 34.594047601854975], [-77.47445176446665, 34.59393880610645], [-77.47436790916112, 34.59386549747984], [-77.47371956373173, 34.59132449879614], [-77.4771142982615, 34.590224420712524], [-77.47738607357704, 34.59012954719115], [-77.47743228110531, 34.59011581987048], [-77.4812528768132, 34.5888060437651], [-77.48356358084649, 34.587335349070784], [-77.4840898856784, 34.585278237776265], [-77.48474664046532, 34.58279462398033], [-77.4845393229873, 34.5821955950943], [-77.4843304551508, 34.58167347018978], [-77.48411663701305, 34.579361900816636], [-77.48328418049795, 34.57732871747463], [-77.48329081804158, 34.57664345652893], [-77.4828051157373, 34.57622235865999], [-77.48251403071995, 34.574582126839914], [-77.48490930580824, 34.573226863367054], [-77.4851121496007, 34.57301359023222], [-77.48531469617754, 34.57294607482761], [-77.48617297892122, 34.57209973721893], [-77.48900212287674, 34.56941963656703], [-77.48899952671583, 34.5686394084435], [-77.4893557259587, 34.566047984226365], [-77.4893734743719, 34.564595130992885], [-77.48999255251718, 34.560104911928164], [-77.49000296889088, 34.559954296240456], [-77.49001639177526, 34.55986566108964], [-77.48814964354592, 34.55504280663401], [-77.48779955565742, 34.55467502860384], [-77.48703009858602, 34.55386666770775], [-77.48585304791034, 34.550536469364665], [-77.48101050819712, 34.550705744977094], [-77.48015062824477, 34.55020042608817], [-77.47934889380977, 34.549290158802016], [-77.47853384450858, 34.55041854873415], [-77.47619998281127, 34.55154530677401], [-77.47616758433543, 34.55160644690758], [-77.47337035159285, 34.55170065890236], [-77.4730480953797, 34.55040832290724], [-77.47196586645993, 34.54885359004567], [-77.47304540395422, 34.547148734106045], [-77.4739581287572, 34.54615280152499], [-77.47500000080419, 34.54501683741201], [-77.47445253017301, 34.54357590763947], [-77.47578653134067, 34.54106986251359], [-77.47760829846939, 34.53971228181207], [-77.4793391366417, 34.538420103549484], [-77.47983762426854, 34.53805940472333], [-77.48194704844155, 34.537215645440355], [-77.48249136633963, 34.536997920947066], [-77.48277782166906, 34.53709514878005], [-77.48489075804339, 34.53759567571977], [-77.4856396533691, 34.53804503756888], [-77.48836675183895, 34.53968131620844], [-77.48855977584431, 34.539903630007046], [-77.48892862835817, 34.54011955755787], [-77.49080333129098, 34.540815287781776], [-77.4913851972225, 34.5414162315684], [-77.49172672941532, 34.54064650944537], [-77.49269886150402, 34.53854226592972], [-77.49268890858527, 34.53850594828268], [-77.49193810691251, 34.535766107470685], [-77.49074372836311, 34.531407062314216], [-77.48731126952993, 34.53191981728862], [-77.4852352101315, 34.53251381361234], [-77.48396881458396, 34.53300457668202], [-77.48043750770921, 34.534156454152395], [-77.47940327967416, 34.53457014556835], [-77.47629716677608, 34.53611798992444], [-77.47311259680856, 34.538496670761084], [-77.47306488665349, 34.53853222436439], [-77.47303836858735, 34.538582041015225], [-77.46982284371572, 34.54229698734082], [-77.46674239611244, 34.545237169832916], [-77.4640604979348, 34.542697984716945], [-77.46120107173728, 34.541045366879175], [-77.46043783566078, 34.54060594879888], [-77.46031089643911, 34.54048853561385], [-77.46008520750081, 34.54038444917871], [-77.45731974077667, 34.539300229397355], [-77.45499675428735, 34.541121407848095], [-77.45597720459264, 34.54296219147027], [-77.45683314546514, 34.54474471269185], [-77.4572901228995, 34.545106772542375], [-77.45917971027393, 34.54730929479956], [-77.45969843547283, 34.54803666887376], [-77.46044402690679, 34.5498183487373], [-77.46099765540012, 34.55044283308285], [-77.4604446466511, 34.550735988869135], [-77.46023335466136, 34.55078135246451], [-77.45886956767852, 34.55133142590814], [-77.45782002042468, 34.55146993939946], [-77.45729421784428, 34.551539257749], [-77.45678967832897, 34.55159619577594], [-77.45414358639277, 34.55211451291874], [-77.4514883887178, 34.552354162307154], [-77.45099267704876, 34.552283336183095], [-77.45065788069721, 34.552300973411505], [-77.44784174869662, 34.552449851300054], [-77.44478041091473, 34.5528871847987], [-77.44469097332852, 34.552964282268874], [-77.44417317772026, 34.55343699816299], [-77.44154120829847, 34.55580331289933], [-77.44028737803686, 34.55548615234636], [-77.43839053986173, 34.55699702729616], [-77.43833004954, 34.557120730218266], [-77.43839062717312, 34.557206571366265], [-77.43934257574824, 34.55934588039444], [-77.44023817861475, 34.56024146296036], [-77.44154382503768, 34.56154705173011], [-77.44222105913639, 34.5626219193315], [-77.44253687454852, 34.56330567208745], [-77.44339301700512, 34.56517310209381], [-77.44427059175132, 34.56691213267136], [-77.44624217853274, 34.56956311274111], [-77.44696266559026, 34.57041661740732], [-77.44785169611964, 34.571090828553764], [-77.44906846708854, 34.572550938264875], [-77.44992999615378, 34.57358467080227], [-77.45100598625554, 34.57551282059387], [-77.45110944823969, 34.5756523670362], [-77.4515337400789, 34.57842082177394], [-77.45153376378886, 34.57898775853293], [-77.45161191562337, 34.57962682540506], [-77.45199634349524, 34.58231761483245], [-77.45101157084673, 34.58505220764818], [-77.45079124834662, 34.58565103667336], [-77.4505190064635, 34.585928231656986], [-77.44786164342648, 34.58926107770453], [-77.44763200241675, 34.589495200842194], [-77.44748682572651, 34.589763787490945], [-77.44775661084823, 34.589838272848525], [-77.4477650354795, 34.59121416806241], [-77.44798313269453, 34.59222959238154], [-77.44759471538559, 34.59273976602995], [-77.4478868066943, 34.593336310681636], [-77.4489050861095, 34.59352095128097], [-77.4491921504103, 34.59356866726067], [-77.44970612568797, 34.59361455687384], [-77.45056160299369, 34.593722597964224], [-77.45172938649142, 34.5935407357237], [-77.45287286847284, 34.592654720754844], [-77.45349356521768, 34.591680551168025], [-77.45527655886691, 34.590548445941906], [-77.45600912228066, 34.59008331695561], [-77.45631970961645, 34.589886106890674], [-77.45795978971758, 34.58828836818195], [-77.45972122161979, 34.58695268081116], [-77.46053443154301, 34.58609410559515], [-77.4618574745146, 34.58469727355355], [-77.46283915565279, 34.58298453539205], [-77.46314918630398, 34.58267178426628], [-77.46317384109045, 34.582386728910926], [-77.46320473011895, 34.580213731541036], [-77.46329597008963, 34.57939769252065], [-77.46345817860103, 34.57794714819704], [-77.46358087268855, 34.576362204897784], [-77.46369730752821, 34.575431176883185], [-77.46366808849135, 34.57486023837362], [-77.4634541622294, 34.574294069970705], [-77.46319535918319, 34.573518066871515], [-77.4637535178659, 34.57097047152484], [-77.46474007642794, 34.57084114283196], [-77.46798598628416, 34.571074819326334], [-77.47042067414063, 34.56787410104209], [-77.47055657211362, 34.56550831742943], [-77.47055655734991, 34.56511146890454], [-77.47074166053682, 34.56303162554228], [-77.47335576282607, 34.559984015259694], [-77.47542461395784, 34.559715506903316], [-77.47602759131254, 34.558037514521985], [-77.47817046415898, 34.55572160685839], [-77.4802543550141, 34.554478971147866], [-77.48263502771185, 34.55447653951428], [-77.484677411546, 34.55528158959506], [-77.48489099309563, 34.5555059698487], [-77.4864412510437, 34.557134563219456], [-77.48710406106498, 34.55884697211002], [-77.48679769455741, 34.56086999792378], [-77.48667903407954, 34.56258577060992], [-77.48651982046852, 34.5635970580755], [-77.48663422335724, 34.563871068993635], [-77.48666518364685, 34.564178800195336], [-77.48666527660666, 34.56612515062087], [-77.48652539631897, 34.56685651582791], [-77.48626029170102, 34.56846069257956], [-77.48454811149102, 34.57014904355158], [-77.48075546328847, 34.57141325735319], [-77.48069598043242, 34.57143308559163], [-77.48067123306461, 34.5714603016342], [-77.48067297169287, 34.57148243715938], [-77.48066506789834, 34.57152390625236], [-77.48023418899265, 34.57378469750506], [-77.48032809892851, 34.574535229386775], [-77.48068471667754, 34.57641953675377], [-77.48088697303362, 34.5773299497696], [-77.48083816902623, 34.57862983215597], [-77.48144973719536, 34.58012352004409], [-77.48159485540592, 34.58169238045286], [-77.481125425466, 34.583170505835284], [-77.48024782650813, 34.58513926798548], [-77.47968189982826, 34.58597789166326], [-77.47331805006856, 34.587832853498135], [-77.47258275994974, 34.587855831162415], [-77.47187304017916, 34.58820125452726], [-77.47171688269869, 34.588810950322], [-77.47151877123684, 34.59003440719379], [-77.47073954356406, 34.59204418757818], [-77.470941743439, 34.5928302165661], [-77.47113205904672, 34.594886334084066], [-77.47186754973191, 34.59692470075132], [-77.47237419902336, 34.59828595038195], [-77.47167856433208, 34.60063883641479], [-77.47101194627118, 34.60276421328632], [-77.46866833496618, 34.60426444323184], [-77.46795790411464, 34.604654991582365], [-77.46550814431544, 34.60579402657291], [-77.46502088001867, 34.60630165888486], [-77.46425596129163, 34.608665535429175], [-77.46432543824614, 34.609809211978295], [-77.46440438115658, 34.61010029465653], [-77.46470491172747, 34.61046792115265], [-77.4652074786168, 34.61134823348105], [-77.4656252224134, 34.61187762404083], [-77.46692801483545, 34.613262056564196], [-77.4672964717164, 34.61370638827288], [-77.46868891541075, 34.615447006301395], [-77.46958785688759, 34.61713033844227], [-77.46875532452658, 34.619198561568695], [-77.46859925072327, 34.61936040930202], [-77.46780947750261, 34.61946843420412], [-77.46530429524393, 34.61958665108448], [-77.46456989052696, 34.62000631519134], [-77.46424023938296, 34.62021508144443], [-77.46407908874512, 34.62053273962747], [-77.46171868564748, 34.623971560610784], [-77.46154795355083, 34.62420900275108], [-77.4615394416558, 34.62422543112794], [-77.46155089090414, 34.62433996806105], [-77.46045797962296, 34.62747405737677], [-77.46070170275269, 34.62888732436064], [-77.45859164992616, 34.62889272472539], [-77.45724442423752, 34.62944241954996], [-77.45404312766689, 34.63151357414924], [-77.45121761476918, 34.632687949052276], [-77.4475842886436, 34.6339367159499], [-77.44735889444516, 34.633959370426126], [-77.44666260595652, 34.63388709025695], [-77.44384629393922, 34.63484834223698], [-77.44343317318157, 34.634986434351276], [-77.44324296461886, 34.63516841645551], [-77.44321560551072, 34.63534476000977], [-77.44230673470666, 34.637318504417934], [-77.44196866541247, 34.638654141331564], [-77.43966270775925, 34.64134883722724], [-77.43827138448367, 34.64266194354447], [-77.43730862924086, 34.64334961733334], [-77.43545634884109, 34.64483259206244], [-77.43392113220361, 34.64634470790683], [-77.43174100642928, 34.64598406698259], [-77.43076338432115, 34.64480135975597], [-77.43014083670353, 34.6442825873155], [-77.42885634000945, 34.643212149402366], [-77.4283183603628, 34.642852726579505], [-77.42812186430069, 34.6426000641081], [-77.42743116230729, 34.64202443303839], [-77.4265824491624, 34.64131715305258], [-77.42613127851254, 34.640941166944245], [-77.42569286400492, 34.64057581343268], [-77.42499629897205, 34.640536622766795], [-77.42440194095, 34.64032477218641], [-77.42384578081355, 34.64027622655682], [-77.42341688958872, 34.64061947366669], [-77.42325119951292, 34.641033733381555], [-77.42270619223626, 34.64239632491005], [-77.42258450504255, 34.64270056988822], [-77.4225475050025, 34.64279306777946], [-77.4219176878376, 34.64436740728907], [-77.42178337828312, 34.645003482683], [-77.4212289076266, 34.64608927453641], [-77.42058423449285, 34.64770102850275], [-77.41996574817502, 34.6493230834147], [-77.41966467029678, 34.65091673457114], [-77.4191220946905, 34.65376795318313], [-77.41897720530183, 34.6539329371806], [-77.41634992619286, 34.65747174429427], [-77.4160576231329, 34.65785150968699], [-77.41605971773556, 34.65786768706817], [-77.41920424098794, 34.66129774228639], [-77.42043394128169, 34.66251285992311], [-77.42129732576905, 34.664656427048364], [-77.42166076270888, 34.665117384093556], [-77.42195827168285, 34.66524653372195], [-77.42247114374396, 34.66600711808993], [-77.42344996619792, 34.66708095391454], [-77.42397020855576, 34.667413535881835], [-77.42345055418227, 34.66958561697297], [-77.4234287203359, 34.670357913996405], [-77.4233322205406, 34.67167284938557], [-77.42413137105933, 34.673833499723564], [-77.42490243396298, 34.67510322402795], [-77.42588722632046, 34.67404693938161], [-77.42788662470356, 34.67364718625755], [-77.42864863106354, 34.6725793488299], [-77.42902227298137, 34.67231474115009], [-77.43004335826271, 34.67159160235849], [-77.43201359202345, 34.67011795059676], [-77.4330867156645, 34.67072472299809], [-77.4339084586376, 34.67258967354014], [-77.43455221437577, 34.673261185938415], [-77.43594207538521, 34.67376248511623], [-77.43679986078197, 34.67503503006548], [-77.4371431598273, 34.67554433304475], [-77.4373874897358, 34.67624198217253], [-77.43742428747248, 34.6763197680665], [-77.4374134785377, 34.67636772484566], [-77.4378939521269, 34.676706191995024], [-77.43801903745694, 34.67668270141779], [-77.43821106336085, 34.67664663903295], [-77.43829520325437, 34.67638642799888], [-77.43861995952699, 34.6764112835969], [-77.43924491416129, 34.67645247583309], [-77.43932308420092, 34.677035498188594], [-77.439574234098, 34.67720779450155], [-77.43941670415606, 34.6776272800804], [-77.43927181084683, 34.67798289335782], [-77.43921475607486, 34.678115706831576], [-77.43909876421868, 34.67829910550195], [-77.43892521908879, 34.67857350623308], [-77.43887461730955, 34.6788290480163], [-77.43858139377255, 34.67876010037129], [-77.43820637440902, 34.6786716627691], [-77.43797705583836, 34.67863425358811], [-77.43776135038053, 34.67850465739869], [-77.43737762895663, 34.67849142942988], [-77.43727824158132, 34.67855662804374], [-77.43728633533019, 34.678807078315224], [-77.43741976023665, 34.6790000525734], [-77.43786456385908, 34.67902320436318], [-77.43819908269035, 34.679220218203824], [-77.43841486887703, 34.67933589030568], [-77.43851852125566, 34.679434151460825], [-77.43866403471065, 34.67960026544877], [-77.43889085385605, 34.6799055641306], [-77.43921371394224, 34.68003672675189], [-77.43945985848963, 34.680153617508815], [-77.43965159855867, 34.68009912854099], [-77.44007397003648, 34.68024570553522], [-77.44051263810607, 34.680246657534816], [-77.4405687045477, 34.680102817977506], [-77.4407465684053, 34.67976941124833], [-77.44168555776238, 34.67910416546768], [-77.44175555023067, 34.679052046407904], [-77.44185425165205, 34.67903863799356], [-77.44337333665857, 34.678705659959434], [-77.44589378149443, 34.67821483255564], [-77.44671711269137, 34.677699136805586], [-77.44811296125745, 34.676513127210725], [-77.44869996837696, 34.675138092144294], [-77.44909392859721, 34.67437851276088], [-77.45319208933665, 34.67097384856725], [-77.45327199638822, 34.67090068029712], [-77.45729395045451, 34.672688522511805], [-77.45746500213411, 34.67306793384875], [-77.45829345626626, 34.67511677271478], [-77.45850424141396, 34.67529764644599], [-77.45848930962408, 34.675474177221844], [-77.45899185625382, 34.6764117842583], [-77.45991907134041, 34.67738496071969], [-77.46003404832689, 34.67820250378379], [-77.46135107088466, 34.68039436324958], [-77.46234460978377, 34.68173710948583], [-77.46273274103626, 34.68295463430174], [-77.46284088308468, 34.684138130241784], [-77.4624086521688, 34.6858896304729], [-77.46226210761544, 34.6864833858001], [-77.4632654468471, 34.68875828945233], [-77.4640962463051, 34.690242363086135], [-77.46575522715538, 34.69216758245027], [-77.46671700182183, 34.69292683657264], [-77.46827245700331, 34.69353098877819], [-77.47073526661039, 34.693659006737846], [-77.47083169263507, 34.69366867008955], [-77.47335899320976, 34.693668640564496], [-77.4765246475344, 34.69338995172438], [-77.47778062014473, 34.693060846853825], [-77.47743113860756, 34.68923501079454], [-77.47824877641817, 34.68739282158489], [-77.47861571686694, 34.68656621457171], [-77.47931357126214, 34.68493811407255], [-77.47970584257112, 34.68402287311208], [-77.48008135001763, 34.682009453782406], [-77.4803084384511, 34.68089664749172], [-77.48032446902057, 34.68033682805814], [-77.48092243874386, 34.67963296662228], [-77.48237650058383, 34.679203394154094], [-77.48486725580202, 34.6786686407226], [-77.48811761777942, 34.67866865816015], [-77.48879954248912, 34.678668661299284], [-77.48907679654384, 34.67866866070279], [-77.49176934168194, 34.679379340423466], [-77.49387602180354, 34.679780240967496], [-77.49402497804131, 34.67993732219594], [-77.49435670384825, 34.680282726050216], [-77.49719650455646, 34.68198661272475], [-77.4976949729537, 34.682429758906935], [-77.49864634213428, 34.68285646269713], [-77.49886861151288, 34.682986614512984], [-77.49908819978405, 34.68317300702237], [-77.4988535455798, 34.68361070577955], [-77.4987915206617, 34.68430791668634], [-77.49864499667174, 34.68452768305737], [-77.49745192508169, 34.68631722873671], [-77.49466441498724, 34.688618154774595], [-77.4934941412838, 34.6898895995656], [-77.49244347578457, 34.69092800147838], [-77.49177145887779, 34.69176524663241], [-77.49198071665165, 34.69233847438851], [-77.4922933766658, 34.694424446362085], [-77.49076370019353, 34.69600595032308], [-77.49065937420634, 34.69615676541927], [-77.4904047893475, 34.69823640765834], [-77.49022434183382, 34.698434408491025], [-77.48977162565635, 34.698966207531655], [-77.48916072525002, 34.699686134671104], [-77.48903300310195, 34.700301298375784], [-77.4897173090166, 34.70059456062132], [-77.49163685029687, 34.701384678339664], [-77.49314923204896, 34.701429988357056], [-77.4938904051285, 34.70143000829854], [-77.49420415464307, 34.70137054507638], [-77.49487931932002, 34.701430013491986], [-77.49675019434473, 34.701430017774236], [-77.49755169598099, 34.701430006308016], [-77.49931340582046, 34.70142997070364], [-77.49945214766421, 34.7013942318192], [-77.5009524090712, 34.70100477354498], [-77.50131855987135, 34.7005245383409], [-77.50160539882522, 34.699910148265545], [-77.50188362986329, 34.69850218800194], [-77.50124914325966, 34.697550302452285], [-77.50239600540081, 34.69650318115096], [-77.50415832754975, 34.69648680348876], [-77.50621715797705, 34.695086441909744], [-77.50985620631185, 34.69610008584035], [-77.51035405357348, 34.69623028933549], [-77.51078131416932, 34.696372719459546], [-77.51468839005587, 34.69767505707193], [-77.51500295381048, 34.69786555775517], [-77.515424714055, 34.697946507242655], [-77.51942742087245, 34.69927647835608], [-77.51962568179151, 34.699532879467455], [-77.520291476137, 34.70033150442357], [-77.52326531325178, 34.702402960842804], [-77.52707951592652, 34.703000404725344], [-77.53069958053625, 34.7078230697295], [-77.5307085374404, 34.70788326370066], [-77.52609919653186, 34.712157260296365], [-77.52588702838261, 34.71508595286604], [-77.52646761638321, 34.71680243334426], [-77.52844192069507, 34.71597673072107]], [[-77.28738321530216, 34.6271714736344], [-77.28817863863267, 34.62700199071026], [-77.29130125530997, 34.62702969725956], [-77.29249706650707, 34.627135939487175], [-77.29655415822486, 34.62581612937484], [-77.29740872391673, 34.62609120707164], [-77.29830977506577, 34.6257894906641], [-77.29972799267803, 34.624887623084085], [-77.30011331580033, 34.62427486037645], [-77.29926793482637, 34.62259170595361], [-77.29854827785289, 34.62187206685023], [-77.2960661685705, 34.61939000082726], [-77.29491161539167, 34.61823544295065], [-77.29376549409477, 34.61298180173679], [-77.29246502375611, 34.611818765384605], [-77.29321162611704, 34.6103421634293], [-77.29180120788403, 34.60769271817657], [-77.29068810470429, 34.607982842037416], [-77.28923641485483, 34.61085393940115], [-77.28674314659733, 34.60852275344654], [-77.28553150449248, 34.60850273729147], [-77.28364508511575, 34.60849872648151], [-77.28324606092798, 34.60903650510076], [-77.28319019451395, 34.60971227510019], [-77.2831463821612, 34.6116141298496], [-77.28291788096882, 34.61312526737585], [-77.28136925392826, 34.61529416790117], [-77.28060064151242, 34.61886977601462], [-77.2802447053205, 34.6195844923122], [-77.27931606992932, 34.62036944106166], [-77.27788453101044, 34.62271961434584], [-77.27798080458702, 34.625847433823886], [-77.2792030725275, 34.62713636789894], [-77.28242911942314, 34.62800488154738], [-77.28316302266435, 34.62765474757916], [-77.28485313614411, 34.62732331975123], [-77.28647298520747, 34.627403104086184]], [[-77.2998740445137, 34.65128397317938], [-77.299879051806, 34.651313477261965], [-77.29991247086825, 34.65136139569688], [-77.29995123021965, 34.65130359543939], [-77.29993206050294, 34.65125131141285], [-77.29987846953154, 34.651191790853346]], [[-77.2750527637603, 34.64232541245794], [-77.27539943054647, 34.641159383120005], [-77.27610086770068, 34.6387344521346], [-77.27636000803301, 34.63732032936752], [-77.27656499006767, 34.63708614389077], [-77.2778428495029, 34.63407386434148], [-77.27783241656101, 34.63335485889114], [-77.27669097697137, 34.628397033031476], [-77.27622640284464, 34.62754342333546], [-77.27401586037047, 34.62451392260356], [-77.27165607044165, 34.6253496473836], [-77.26994868825034, 34.623382479661515], [-77.26862204539641, 34.622981532232664], [-77.26795069468494, 34.622746491838], [-77.26622601208592, 34.6221590163279], [-77.2659702636142, 34.622075794942354], [-77.2658734155677, 34.62203966174622], [-77.26561178513006, 34.6219275413224], [-77.26314709342121, 34.62120895411238], [-77.2612989344303, 34.62213829494115], [-77.26022802807603, 34.62226715014342], [-77.26022551064155, 34.62282901156904], [-77.25969808950494, 34.623341795817055], [-77.25830418575785, 34.625814922372825], [-77.2582046928003, 34.626440798032334], [-77.25674292222244, 34.629685100208064], [-77.25234015068447, 34.62975019142394], [-77.25095040358156, 34.62979401817374], [-77.2507043126285, 34.62973874218652], [-77.25005841294251, 34.629889059496755], [-77.24616238264919, 34.63079576076116], [-77.24325767762602, 34.63111848342265], [-77.24101075379477, 34.63147412214106], [-77.23927530194366, 34.63231955046212], [-77.23903044309776, 34.632473039474014], [-77.23885481477723, 34.633149782110195], [-77.23852145630207, 34.6342057618213], [-77.23859235019002, 34.634323917666876], [-77.23892530672119, 34.63487884905306], [-77.23973063584963, 34.636298973983834], [-77.23985656198693, 34.63664532658304], [-77.24021860187011, 34.637119408396856], [-77.24202589372481, 34.640250514490404], [-77.24257345498361, 34.64150709634066], [-77.24341050652687, 34.64412548712463], [-77.24341019558891, 34.64413032990466], [-77.24068399730376, 34.646960478373245], [-77.23984252394891, 34.647620118670474], [-77.23821761036358, 34.6490146417138], [-77.23763824687143, 34.64951185622636], [-77.2355370722175, 34.65105173692285], [-77.23432463813364, 34.65182510322305], [-77.23416407274397, 34.65471434990956], [-77.23348293122173, 34.6563361611393], [-77.23350189964958, 34.65665634796211], [-77.23339320043695, 34.6572550722086], [-77.23346531584949, 34.658430128374775], [-77.23454152927542, 34.65920655375129], [-77.23532937648596, 34.66009542663711], [-77.2371683975209, 34.66116321877846], [-77.23981745764829, 34.66270124381518], [-77.24055127293578, 34.66311311911666], [-77.240812660177, 34.66321751123708], [-77.24140333022267, 34.66340812888606], [-77.24357374010013, 34.664216461963385], [-77.24453931137474, 34.6644048494764], [-77.24822815450341, 34.66512444212047], [-77.24856631502155, 34.665619786894354], [-77.24904255296039, 34.66594659114182], [-77.2491743346638, 34.665331127645565], [-77.24995504555368, 34.66488879635213], [-77.25122295996613, 34.6640400284187], [-77.25290778204052, 34.663478426421776], [-77.25351966873846, 34.662715529661234], [-77.25538973519147, 34.660455719291086], [-77.25611426787813, 34.657296808527505], [-77.2561143109592, 34.650715026471886], [-77.25611430931359, 34.65054554154065], [-77.2561454744669, 34.65047588304554], [-77.25617292847495, 34.65036499858814], [-77.25769713676405, 34.64357809714084], [-77.25674161766759, 34.640346877465845], [-77.2589380830924, 34.6385773244041], [-77.26222652849255, 34.63864128419589], [-77.26404705719547, 34.63851467855319], [-77.26693574491492, 34.63919358721559], [-77.26940744089524, 34.639708630486325], [-77.27100282833352, 34.63963872830763], [-77.27310855923051, 34.641472531563416]], [[-77.36591240489808, 34.71314506468166], [-77.36746666167285, 34.71103644200497], [-77.36797140565088, 34.71000675248547], [-77.36827423504383, 34.708975909092445], [-77.36838478804862, 34.7080881980593], [-77.3684137402349, 34.70798196202813], [-77.36833000867114, 34.70777188311461], [-77.36831314907323, 34.707020996928804], [-77.36775052017049, 34.706580639887015], [-77.36714424659678, 34.705889032780114], [-77.36618961921431, 34.705363225040216], [-77.36584995422722, 34.704878048792025], [-77.36420354218242, 34.70499846329805], [-77.36345765107298, 34.704869959261195], [-77.36208079463772, 34.704787173958174], [-77.36207369288347, 34.70592866750084], [-77.36178158727586, 34.70686242182552], [-77.36262536766336, 34.70773744375441], [-77.36288876668138, 34.70916423702779], [-77.36309629896454, 34.70968731327138], [-77.36407531508385, 34.710992702683285], [-77.36427135893072, 34.71125409460052], [-77.36442187211405, 34.711454772060925], [-77.36556740914882, 34.71298209570602], [-77.36569122589148, 34.713229944615726], [-77.36572822679622, 34.71328680992234], [-77.36580194829618, 34.71329500479101], [-77.3658788324374, 34.71325802111554], [-77.36587311046583, 34.713204957735755]], [[-77.31965279654888, 34.7077386633232], [-77.3195525005363, 34.70761671197946], [-77.31932355211808, 34.70773620763387], [-77.31079055741407, 34.70824750833199], [-77.3098330701677, 34.708095044020624], [-77.30613660226538, 34.70580131427136], [-77.30604176975348, 34.70559364786838], [-77.30580319293703, 34.70548191417059], [-77.30481798578911, 34.70508617445364], [-77.30235162567111, 34.70631937384346], [-77.30073833055835, 34.709670351799765], [-77.30009650744039, 34.71052680943356], [-77.300213222428, 34.71121885318284], [-77.3015043600148, 34.71423298056163], [-77.30235943291633, 34.71472870495177], [-77.30292250833291, 34.71538092991241], [-77.3043975992979, 34.71773586008807], [-77.30256828364968, 34.720872533038765], [-77.30555861338954, 34.72278488253312], [-77.30862481808883, 34.72252196066301], [-77.31199736905337, 34.72167154853085], [-77.31551715944356, 34.72149085920793], [-77.3167253783688, 34.72259991730756], [-77.3185694797363, 34.723593105976036], [-77.32216073078447, 34.724726510234944], [-77.32401936738202, 34.725203175926204], [-77.32763736147822, 34.72682137495115], [-77.32983011001994, 34.72726738860818], [-77.33267094393986, 34.728403683185235], [-77.33503541201132, 34.72743851919475], [-77.33477245545157, 34.72917057024159], [-77.33617907961785, 34.72971223234429], [-77.33699081168058, 34.73002482828924], [-77.34060914764709, 34.728370174427596], [-77.34118472278286, 34.72711774634702], [-77.3425048910168, 34.72169374890045], [-77.34250489746768, 34.720312071437064], [-77.34248699601503, 34.718058647232425], [-77.34248190808789, 34.71540481467105], [-77.34250478372874, 34.712514125933716], [-77.34250479753462, 34.71104927475826], [-77.34179872775474, 34.70962381443867], [-77.342074655159, 34.70867412521514], [-77.340853704265, 34.7084889863616], [-77.33881055596801, 34.70876924643722], [-77.33833476913162, 34.70891578618094], [-77.33773814807682, 34.708742287668755], [-77.33485808027646, 34.70865635454656], [-77.3336846099282, 34.7084349177189], [-77.33254650390114, 34.70803144436415], [-77.33157875131039, 34.708025633565846], [-77.33119831652681, 34.70805115910572], [-77.32871096886915, 34.70906679541744], [-77.32741076204442, 34.70807826804559], [-77.32483669134243, 34.707138837750506], [-77.32458045199527, 34.707102088798784], [-77.32449965715088, 34.707076293178964]], [[-77.30445522983682, 34.58880932297416], [-77.30324303661507, 34.590087861239816], [-77.30264225819897, 34.59245486905594], [-77.3017563157638, 34.59667947078058], [-77.30167863073328, 34.59689457900791], [-77.3016402047374, 34.59705913178758], [-77.2996544985962, 34.60034288074619], [-77.29916180347654, 34.60230714002534], [-77.29892171968399, 34.604183115677856], [-77.299768029625, 34.605789638657406], [-77.30010938259497, 34.610772105846024], [-77.30293625726004, 34.61319171193763], [-77.3048797877525, 34.61226799224653], [-77.30753039134555, 34.61327927172683], [-77.30771444530367, 34.61321735881818], [-77.31013615920799, 34.612947490986016], [-77.31221873102191, 34.6120868177824], [-77.31248406345148, 34.611889308295545], [-77.31310707803314, 34.611422062577454], [-77.31470947577581, 34.610220334305126], [-77.3155890608731, 34.60989658311816], [-77.31694564099365, 34.60846508264632], [-77.31861494663829, 34.604164631977056], [-77.31917837119326, 34.60257152698329], [-77.32533512404319, 34.600562690243585], [-77.32500989656211, 34.59734227900394], [-77.32805891639748, 34.5976405883437], [-77.32866056193927, 34.599452787961305], [-77.33436490853578, 34.59743715488362], [-77.33827080509222, 34.5961351737204], [-77.34067228711291, 34.59525808208553], [-77.34339799524156, 34.59504828332588], [-77.3438252669548, 34.595003272935], [-77.34433592667658, 34.59500327539512], [-77.34697747705798, 34.59589907348959], [-77.3479265066033, 34.59631048247955], [-77.3498636586445, 34.597054464173674], [-77.35210612468072, 34.59799844429531], [-77.35328172837322, 34.59831471591366], [-77.35630527265572, 34.59952410279889], [-77.3563358682161, 34.59962533153269], [-77.35643386493471, 34.59974583897626], [-77.35674152564474, 34.59979276728039], [-77.35760113566542, 34.59977840190818], [-77.35749520104193, 34.600201967647976], [-77.35800990167927, 34.600599584447735], [-77.35816250545756, 34.60010593325907], [-77.35810569381994, 34.59936750995077], [-77.35811975728316, 34.59926298142788], [-77.35801064216935, 34.59916427085507], [-77.3564988063422, 34.59942648019589], [-77.35643418914502, 34.599140483907085], [-77.35565043510135, 34.596221922232004], [-77.35422984797825, 34.595406723273726], [-77.35414128841354, 34.59304268013049], [-77.35446729960836, 34.590871967132415], [-77.35643920885194, 34.58982103387262], [-77.35655987194802, 34.58942800359216], [-77.35693309868172, 34.58924452246636], [-77.35702348812708, 34.5886027359918], [-77.3564398222541, 34.5886900541142], [-77.3546626760025, 34.58808978930002], [-77.35328775012307, 34.58788951592952], [-77.35130843423487, 34.58792144685831], [-77.35013525011937, 34.587862558704806], [-77.34921747446161, 34.58794699133158], [-77.34698288523447, 34.58763388973604], [-77.3441594013314, 34.58733157639814], [-77.34383070187711, 34.58715250947518], [-77.34317373142684, 34.587119766939075], [-77.34067758304097, 34.58800046189531], [-77.33819541868208, 34.58782113429679], [-77.33437414500408, 34.58596425965374], [-77.33427282993331, 34.58582021709868], [-77.33416729816567, 34.5857261094843], [-77.3304983260777, 34.583638508571994], [-77.32996138487243, 34.582934254459154], [-77.32866275863314, 34.582484685439496], [-77.32807277167058, 34.581932719129554], [-77.32670846981023, 34.58147565560681], [-77.32236950304113, 34.58062868828965], [-77.32672706532263, 34.57854952068767], [-77.32688698299367, 34.576583432279186], [-77.32692762657099, 34.575337406197825], [-77.32691709468051, 34.57488096996448], [-77.32668937345427, 34.574713058110255], [-77.32677324831978, 34.57349330564466], [-77.32692895854653, 34.57318112130805], [-77.32703083980552, 34.57203427249206], [-77.32751378801554, 34.57139894192827], [-77.32744162141127, 34.570718454173196], [-77.3274755814252, 34.570555361283056], [-77.32742875322147, 34.570418033212114], [-77.32770695525257, 34.56967303945015], [-77.3277739378697, 34.56932929180601], [-77.32784744532486, 34.56821070208068], [-77.32789475335167, 34.56794790817992], [-77.32755317678787, 34.56742313158293], [-77.32737220282695, 34.56709404668694], [-77.32665925491877, 34.56642729998675], [-77.3266400961236, 34.56629079950983], [-77.32651093665879, 34.56621871046833], [-77.32637929388468, 34.56632577637443], [-77.32619725678367, 34.5664936840781], [-77.32541256120889, 34.56712187959646], [-77.32493365588854, 34.5677290762377], [-77.32434497160482, 34.56845796020403], [-77.32412868345966, 34.56932137263992], [-77.32390367581087, 34.570219491724444], [-77.32304297257728, 34.57237565127443], [-77.32261302711494, 34.57380117646057], [-77.32249717142639, 34.57459571382563], [-77.32177065762116, 34.57929247130109], [-77.32152396851531, 34.58048560100012], [-77.32078167993703, 34.580856756038386], [-77.31861484428481, 34.58286039048642], [-77.31754430206328, 34.58247545703454], [-77.31681448718811, 34.58288311913199], [-77.31599032318621, 34.58437068452377], [-77.31606436259428, 34.58493042861509], [-77.31606611282093, 34.58767071318154], [-77.31655664636821, 34.58825596943479], [-77.31739220386842, 34.590222946634015], [-77.31563065871934, 34.58928155081149], [-77.31534243587691, 34.58864012576802], [-77.31500201627559, 34.588476251098136], [-77.31141390789782, 34.58723815349979], [-77.31008155438161, 34.587134070920605], [-77.30841542813391, 34.58717151166157], [-77.30746571603187, 34.586851983670336], [-77.30671118046395, 34.58736861238267], [-77.30520677861017, 34.58835109834428]], [[-77.25703809009534, 34.696917668228714], [-77.2585773966467, 34.69794379647975], [-77.25973979705276, 34.69916692273594], [-77.26140307210724, 34.700220456999425], [-77.25893202933746, 34.70193749674216], [-77.25831549252753, 34.70129592458805], [-77.25702402767969, 34.700818234133536], [-77.25689051143668, 34.70072425915934], [-77.25635042018729, 34.69965427542581], [-77.25520247202275, 34.69829891815758], [-77.25441570323629, 34.69727556917576], [-77.25583844187516, 34.696117891427974]], [[-77.29952409286243, 34.72620041773364], [-77.29971706949758, 34.726393392154705], [-77.30021748659024, 34.726105547213045], [-77.2999241756921, 34.72568194204075]], [[-77.47594745704001, 34.73077160172891], [-77.47423701780336, 34.72836342047264], [-77.47399794140748, 34.72801399396954], [-77.4737784636909, 34.72771780856268], [-77.47320522644276, 34.727431198875806], [-77.47030860528096, 34.7259829154968], [-77.46912175776363, 34.72608545566431], [-77.46859202415342, 34.725878571534984], [-77.46682597520129, 34.72515674003999], [-77.46624795476183, 34.72504093407525], [-77.46611578926839, 34.72552798102933], [-77.46556186851613, 34.72690992386222], [-77.46506183204868, 34.72817378891785], [-77.46455012370505, 34.72945298202801], [-77.46418772594188, 34.73064484800743], [-77.46434234106299, 34.73204585949911], [-77.46464182416386, 34.73271432470646], [-77.46489326649362, 34.733601680565926], [-77.46542602803822, 34.73423052667255], [-77.46603189348227, 34.73491212544284], [-77.46643875641625, 34.73536983311483], [-77.46748611158033, 34.736028979842054], [-77.46865586710624, 34.73657179263999], [-77.47021126922061, 34.736738824844224], [-77.4711055665764, 34.736968972192486], [-77.4752845696041, 34.73767208337503], [-77.47570379717209, 34.737485943529705], [-77.4761257003315, 34.7373455037205], [-77.4797688895846, 34.734765767584264], [-77.47841800084952, 34.73331170394258], [-77.47763252693946, 34.73212929058481]], [[-77.29105052222755, 34.70679380196555], [-77.2902640906513, 34.7079730634866], [-77.2905524887559, 34.70850426345597], [-77.29519524470888, 34.70762671561098], [-77.29757680912113, 34.708879760074126], [-77.29732495335968, 34.7070072172127], [-77.29611893938338, 34.706916783833364], [-77.29507177937259, 34.706657094200345]], [[-77.53264838303795, 34.703549412288965], [-77.5309518786786, 34.701894306448644], [-77.5304640364313, 34.700918575624385], [-77.53037044545769, 34.70027864048276], [-77.53124581116165, 34.69996196300681], [-77.5325853132947, 34.69909986181072], [-77.53446651363757, 34.69941283171321], [-77.53463934495895, 34.69947127426135], [-77.53485588445085, 34.699699729606685], [-77.53650845179715, 34.70030682207292], [-77.53581350929667, 34.701696491971724], [-77.53560914852538, 34.702105155714044], [-77.53478474984023, 34.703754115832425], [-77.53455477622143, 34.70421406409257], [-77.5309629480541, 34.70763189087749]], [[-77.43355421011921, 34.676113324627835], [-77.43355662838601, 34.6761370052601], [-77.4335572301278, 34.676148529678436], [-77.4335575297681, 34.676192319695026], [-77.43359315914586, 34.67617700400898], [-77.43360056393965, 34.676152371311176], [-77.43360302062288, 34.67612941475793], [-77.43361904906098, 34.67597964418078]], [[-77.31609072891527, 34.67421939577889], [-77.31640367995955, 34.67555879109977], [-77.31760021778203, 34.675558792425186], [-77.31920710630617, 34.6734023816953]], [[-77.42570517433052, 34.732093418757145], [-77.42569297589205, 34.73210355152774], [-77.42556200708884, 34.732322908738226], [-77.4256278249526, 34.732385609774845], [-77.42569467661666, 34.73236928281585], [-77.4258511762194, 34.73232353347213], [-77.42592216800331, 34.732309034413674], [-77.42595164775207, 34.732300737727265], [-77.42597362084068, 34.73229852590011], [-77.42606073910959, 34.73229202649539], [-77.42611253428599, 34.7322358089187], [-77.42612427270646, 34.73220887485931], [-77.42614377972698, 34.73213870567603], [-77.42614281400643, 34.73210662644851], [-77.42605892362192, 34.7320038868546], [-77.42591252602635, 34.73201197471867], [-77.42589073482951, 34.73201424124134], [-77.42571324698993, 34.732090563639034], [-77.42570947555659, 34.732091995083366]], [[-77.32444807271783, 34.67430488014283], [-77.32484444394824, 34.67432412815629], [-77.32458769684095, 34.674032007569686], [-77.32455235399233, 34.67394609464176], [-77.3225921837134, 34.67395105230867], [-77.32083833179837, 34.67332376930965], [-77.32132877539662, 34.67492294826175], [-77.32280256937307, 34.67506651275676]], [[-77.41553309004787, 34.55788055906242], [-77.41558024504042, 34.55790050296418], [-77.41633208376108, 34.55794003298581], [-77.41658549832695, 34.55829257323784], [-77.41684493734417, 34.558231754129494], [-77.41688331186617, 34.55792848455135], [-77.41653121686278, 34.557724336756166], [-77.41633201573023, 34.55749519487303], [-77.41559850677582, 34.5578005856684], [-77.41549900617024, 34.55782468517823]], [[-77.45090843111072, 34.6826629614863], [-77.45067180739088, 34.682395201866036], [-77.45066106231427, 34.682392452329395], [-77.45065776314462, 34.68240106659083], [-77.45050575538289, 34.68262220253691], [-77.45044576493277, 34.68278817206002], [-77.4504160588584, 34.682870356006845], [-77.45046096546633, 34.68292967269307], [-77.45049566737416, 34.68298258485181], [-77.45051536389484, 34.68301856324685], [-77.45061575155363, 34.683065947892274], [-77.4506313293749, 34.68306742354822], [-77.45077381381415, 34.68302224468506], [-77.45080775724053, 34.68301123682875], [-77.45081407287336, 34.68300947936466], [-77.45090526067207, 34.68279149651291], [-77.4509168589616, 34.68276590126686]], [[-77.25517363142882, 34.68197003564303], [-77.25888767508728, 34.68475467200884], [-77.25609552656931, 34.6814518270893], [-77.25560879121493, 34.68131864122967], [-77.25550756601002, 34.68082464427458], [-77.25486091768951, 34.67874228753688], [-77.25455691107679, 34.67776320718036], [-77.25503438632356, 34.67615316067806], [-77.25479816734338, 34.67435466559916], [-77.2557097637114, 34.67366785317172], [-77.25756298782588, 34.67317374708931], [-77.25819815970125, 34.67330076140274], [-77.25859176474914, 34.67332434816717], [-77.26076539753558, 34.67332785026844], [-77.2623189652008, 34.67332785791548], [-77.26312975588417, 34.6735308510117], [-77.26356799597173, 34.673443926361145], [-77.26578825697031, 34.67282397764312], [-77.26765993206746, 34.671925839098385], [-77.26864425836767, 34.671808354146336], [-77.27100654667949, 34.67329667705876], [-77.27220731549941, 34.67394019896955], [-77.27810219391208, 34.674547042193126], [-77.27502768864136, 34.67864438360828], [-77.26970670266785, 34.683491791199856], [-77.27581487109317, 34.68470042786167], [-77.27836860777822, 34.684550674614286], [-77.27904828886791, 34.68536711350071], [-77.28022672715147, 34.68595289070031], [-77.28088061847279, 34.68711040244269], [-77.28243398344723, 34.68703652120327], [-77.28350341763377, 34.689403680267084], [-77.28479346221731, 34.690406518549715], [-77.28541848981537, 34.69298021780712], [-77.28523721600504, 34.693065397123476], [-77.28235928110655, 34.69537466819949], [-77.27789981638838, 34.695704118439096], [-77.27511067086712, 34.69573476219135], [-77.27302641632943, 34.69473433477822], [-77.27167461972255, 34.69418463080585], [-77.2709478966738, 34.69358213707526], [-77.26671100716263, 34.69170270153108], [-77.26670615500741, 34.6917010921169], [-77.26670473402402, 34.69170051965303], [-77.26668303452935, 34.69170219052666], [-77.26285580964127, 34.688477680295605], [-77.25988977449377, 34.69075622046794], [-77.2598042706831, 34.69069945703176], [-77.25922173603257, 34.69077166621021], [-77.25741947740111, 34.69069536545842], [-77.25770247984867, 34.689163016838876], [-77.25749075549119, 34.68905863913494], [-77.25906193395198, 34.68496776042893], [-77.25355492302637, 34.68752168639105], [-77.25180202099111, 34.685936401463934], [-77.25049519688898, 34.685246563002856], [-77.24944400302618, 34.68519374054152], [-77.24895325304546, 34.68437582813498], [-77.24850326012184, 34.683625837923096], [-77.24841804614314, 34.68312197099598], [-77.24871412151998, 34.682459157841016], [-77.24912421061342, 34.68119328272639], [-77.25105219428877, 34.67967896720813], [-77.2526206299395, 34.68046323418652], [-77.25314219238248, 34.68072402476935], [-77.2549189994673, 34.681612427317916], [-77.25507130478405, 34.681731533604264]], [[-77.33121669076628, 34.58954858011761], [-77.33113859328387, 34.589471390736676], [-77.33122026440049, 34.58954422069223], [-77.33122742819457, 34.589554405664664]], [[-77.29901787723496, 34.67950313814266], [-77.29891199380053, 34.68339716669508], [-77.29764883965856, 34.68412634364364], [-77.29406102118023, 34.68532224782315], [-77.29249689672389, 34.68537299433353], [-77.29095531532826, 34.685670273383664], [-77.29060511556462, 34.684533727015456], [-77.28915409995145, 34.68390309233997], [-77.28843533916327, 34.68287369279503], [-77.28701657493693, 34.68239439021305], [-77.28642284165602, 34.68120696767464], [-77.28497480340705, 34.67831093415403], [-77.28368866413925, 34.67864897930525], [-77.28359616034673, 34.67603212868823], [-77.2875116902205, 34.67571025015957], [-77.29070865001808, 34.675064376495214], [-77.29514694335067, 34.67606717247306], [-77.29520451868382, 34.6760703026877], [-77.29525619812665, 34.67606016434882], [-77.29902311670881, 34.67940379979404], [-77.2990156159111, 34.67947372316635], [-77.29901394639481, 34.679484409413234]], [[-77.25064791326767, 34.63260762924874], [-77.25243028353754, 34.63299382680094], [-77.2538724300986, 34.6336414806113], [-77.25354668236139, 34.63446201989327], [-77.25224626682324, 34.63620434538936], [-77.25112232079198, 34.63719581124029], [-77.25237024337437, 34.637841502395275], [-77.25279355503218, 34.638940676795606], [-77.25327178809393, 34.64244511554343], [-77.25327793283425, 34.644181509362205], [-77.25272468168637, 34.64592671454121], [-77.25212504849006, 34.64671613947755], [-77.25087732278543, 34.649497198785866], [-77.24721358215322, 34.64996005103942], [-77.24625183452862, 34.64600911757605], [-77.24757203075426, 34.644457900284706], [-77.24703049747704, 34.64277873191374], [-77.24655843391992, 34.64166516189369], [-77.24599905596128, 34.64056338056563], [-77.2461261992951, 34.640177923228975], [-77.24577303127438, 34.63947765968333], [-77.24459504956351, 34.636682057366784], [-77.24375513736689, 34.6351867976597], [-77.24310036745608, 34.6346790086336], [-77.24286190327554, 34.63405145490879], [-77.2419186645492, 34.63376262640401], [-77.24184348828511, 34.633637336933745], [-77.2420332266925, 34.63353641118893], [-77.24319613009722, 34.63341724412338], [-77.24508811293708, 34.63295015433386], [-77.24574099509356, 34.6328776197483], [-77.24819704794776, 34.63260469586885], [-77.24939433777858, 34.6323260560261]], [[-77.30778468360428, 34.59442121561631], [-77.30698882564111, 34.59295048461672], [-77.30675497836668, 34.59187048401829], [-77.30685589823986, 34.59105383398286], [-77.3073422158337, 34.59070829612203], [-77.30812091765974, 34.59012190196441], [-77.30925798504066, 34.59062932995673], [-77.3096286845192, 34.59077171365569], [-77.31109493390703, 34.59219068041174], [-77.31134903676252, 34.59235291496839], [-77.3118795340716, 34.59549467733176], [-77.3119214413852, 34.59565032561162], [-77.31194767945132, 34.59581365297575], [-77.31183522572114, 34.595884072776315], [-77.31170138883869, 34.59584727070573], [-77.31155257982807, 34.595700883142804]], [[-77.3092101934652, 34.60952536836829], [-77.30724606507037, 34.60925314314396], [-77.30656053771604, 34.6078809692225], [-77.30601424694672, 34.60710191408162], [-77.30554616830837, 34.60585047824627], [-77.30713060389634, 34.60489290908245], [-77.3084505562403, 34.604538755354824], [-77.30962638175515, 34.606092472097686], [-77.31050004115862, 34.60740296179246], [-77.31058926166013, 34.607894006856526], [-77.30958355505496, 34.60947420611518], [-77.30949428024554, 34.609540660946294], [-77.30945630883613, 34.6095563535502], [-77.30940920242956, 34.60956160293321]], [[-77.44784312942195, 34.55506611102007], [-77.44842281324199, 34.55503546540291], [-77.4509941558658, 34.55490000587062], [-77.45234370695454, 34.55509282657429], [-77.45376597715448, 34.55529603777468], [-77.4541455374469, 34.555350263874104], [-77.4548014258994, 34.55544395386434], [-77.45729653580712, 34.555158163371814], [-77.45956428550765, 34.554999387629636], [-77.4604479573983, 34.55561402253794], [-77.46159974490132, 34.55499451944128], [-77.46632404125016, 34.553068065743666], [-77.46666465329403, 34.55292869207432], [-77.46674810190837, 34.55284306668559], [-77.46705917711517, 34.55262601654018], [-77.4678553879893, 34.55284616547198], [-77.46707065888471, 34.55330723029152], [-77.46913353985694, 34.55605785344884], [-77.4693465435434, 34.55662585206659], [-77.4703950192141, 34.55927190283101], [-77.46852150735, 34.56144796529256], [-77.46852151211883, 34.56443508713639], [-77.46852157365922, 34.5660892909442], [-77.46845849012294, 34.56718748242613], [-77.46732831344457, 34.56867324872234], [-77.4651843465442, 34.56851890227049], [-77.46103281465584, 34.567421989774076], [-77.46045567419911, 34.566894585220965], [-77.45972131626885, 34.56682045095991], [-77.45979510559111, 34.56760123517748], [-77.46017259887002, 34.567852380480105], [-77.45979985822208, 34.57099740085333], [-77.46009274024088, 34.571349459289586], [-77.46045942572034, 34.572327248256585], [-77.46131453143789, 34.57325396232669], [-77.46112735297915, 34.574108298172874], [-77.46128726245959, 34.57458777573017], [-77.46120680415765, 34.577023273243356], [-77.46120715660665, 34.577037245983796], [-77.46120416176089, 34.57704054112475], [-77.46062445983483, 34.579310803323246], [-77.46100277919521, 34.58005215180188], [-77.4611140970623, 34.580815048988754], [-77.46111415061768, 34.58195968143155], [-77.46111418027215, 34.58297452518257], [-77.46085431174937, 34.5834132411042], [-77.4603289823827, 34.58416242258613], [-77.4596627822422, 34.584865773464806], [-77.4592648278117, 34.5852859224624], [-77.458425163615, 34.58597372072032], [-77.4567900601034, 34.5871625197843], [-77.45614351179279, 34.587652795004146], [-77.45579990478296, 34.587987531228194], [-77.45465791832683, 34.58871264522101], [-77.45182966869149, 34.58862065420219], [-77.45312711591771, 34.58968461934716], [-77.45221783332829, 34.59026194948393], [-77.45154852613169, 34.59068689614835], [-77.45122488416514, 34.590227268870194], [-77.4517228727789, 34.588644936908295], [-77.45174266606818, 34.588602531919214], [-77.45175824897728, 34.5885830328337], [-77.45458632871026, 34.587107830434675], [-77.45376477152881, 34.585071558820076], [-77.45438485152899, 34.58281858182214], [-77.45458936613669, 34.58215377899843], [-77.4545843593645, 34.58188363868011], [-77.45457373433847, 34.58150040680918], [-77.45416186387865, 34.57860736294173], [-77.45416186395737, 34.578605131655145], [-77.45416203933368, 34.57521520469797], [-77.45416177450058, 34.57521055546832], [-77.45415996850868, 34.575208356454716], [-77.45415768378801, 34.575205574381364], [-77.45179251281357, 34.57215668534242], [-77.45188549701201, 34.5711925875183], [-77.45100349074987, 34.571209825617544], [-77.44926649792959, 34.56912547784521], [-77.44863640965497, 34.56836932106008], [-77.44784962265851, 34.56724525641906], [-77.44691844304545, 34.56606848783097], [-77.44639574687051, 34.56431264359129], [-77.44572275005214, 34.56284469343518], [-77.44439285416014, 34.55996541666036], [-77.44420516943583, 34.5596675340968], [-77.44401169745854, 34.55896015281844], [-77.44469364939985, 34.55841031760787], [-77.44626588457837, 34.555972546433864], [-77.4472129714679, 34.55515613348814]], [[-77.23741632107196, 34.654573654256474], [-77.2384661025976, 34.653904037932335], [-77.24154613582763, 34.65364768891942], [-77.24549754218575, 34.65334841189941], [-77.24669184342059, 34.65418464894038], [-77.24994018858274, 34.65813957467681], [-77.24885040633414, 34.659684561198404], [-77.2479353814246, 34.660407217582055], [-77.24598946779773, 34.66235299602486], [-77.24561562381453, 34.66228006926409], [-77.24308830718442, 34.66178697786104], [-77.24151913799494, 34.66120256688275], [-77.23981528508705, 34.66017330662964], [-77.23889124493658, 34.659727257046], [-77.23729912530493, 34.65873215731815], [-77.23708739669975, 34.65825447622085], [-77.23726208207529, 34.65628069053579], [-77.2372788778593, 34.65524383182866], [-77.23739435741918, 34.65496887274761]], [[-77.32737211929123, 34.71367229553603], [-77.32795639931453, 34.71396441064618], [-77.32881140561847, 34.714391925186206], [-77.33044092361365, 34.71520668216124], [-77.33134099813444, 34.716498137511216], [-77.3318099008379, 34.717306835692696], [-77.33252773610691, 34.717781421109756], [-77.33270771551926, 34.71960383299751], [-77.32972554253605, 34.71890976207589], [-77.32557898153848, 34.719839737743136], [-77.32420299329445, 34.718922457279014], [-77.32275990108464, 34.717960372959354], [-77.32194783504275, 34.715852393275746], [-77.32145255254035, 34.71540041266064], [-77.32237109586711, 34.714396841308776], [-77.32578725711194, 34.71346813400321]], [[-77.351039413244, 34.59179078595169], [-77.35013183822882, 34.59339162448164], [-77.34970480524663, 34.59322082032364], [-77.34817766378701, 34.592610002437866], [-77.34725566430966, 34.59093309628568], [-77.34955191795645, 34.59093296684515], [-77.35013358521613, 34.59055571917313]], [[-77.3265076117673, 34.56984840218251], [-77.32650512763502, 34.569845734901264], [-77.32650546970744, 34.56984337261704], [-77.32650019977811, 34.56899737123436], [-77.32650842056344, 34.56896455186894], [-77.32666070391443, 34.56881036548023], [-77.32651362885987, 34.56899544164218], [-77.3265089846594, 34.569843705962704], [-77.32650868901347, 34.56984522318617], [-77.32650836825567, 34.569846082139435]], [[-77.45019193085474, 34.591260443606835], [-77.45033676232303, 34.591070465361845], [-77.45082203639774, 34.59108070486127], [-77.4504012156117, 34.59130593305846], [-77.45006221498659, 34.591590290212416]], [[-77.32690284184245, 34.56847976535313], [-77.32674368497491, 34.56811331286334], [-77.32690328075549, 34.56799805890835], [-77.32696221653293, 34.56808191162569]]]]}, "type": "Feature", "id": "demo15", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5397748212877, 34.70991896828104], [-77.53919987884883, 34.710786247812024], [-77.53480311372294, 34.711691829927105], [-77.5331663376498, 34.71173748022372], [-77.53041425669, 34.71515174620955], [-77.5342711382839, 34.713538497966894], [-77.54010000002032, 34.711099999987155]], [[-77.53549704160116, 34.69437967925123], [-77.53459440921435, 34.694321818571616], [-77.53014171687715, 34.69398926146026], [-77.52700058961042, 34.69410656373873], [-77.52214668247758, 34.69493396052047], [-77.5188202375056, 34.69498230232841], [-77.51767257308444, 34.694599746494404], [-77.51649065776456, 34.694205773002196], [-77.51532074043885, 34.6938157614926], [-77.514184769456, 34.69343712750825], [-77.51296883489856, 34.6930318158917], [-77.51171646302579, 34.692614360935394], [-77.50941417312781, 34.69139954740028], [-77.50851872989544, 34.69115369331781], [-77.50750040202463, 34.6908634653319], [-77.50783455847073, 34.68994092499592], [-77.5058466433411, 34.687100829832985], [-77.50546954551632, 34.68553411189585], [-77.50496307315305, 34.68452110819863], [-77.50464387093174, 34.68387372239519], [-77.50431617200759, 34.68290882911305], [-77.50425419096898, 34.68172768863151], [-77.50405521133517, 34.68002878284315], [-77.50389474210874, 34.6786584532653], [-77.50387642844586, 34.677125282621375], [-77.50380292299057, 34.67614953121929], [-77.50359522655954, 34.675212947503546], [-77.50339462846269, 34.674308297045954], [-77.50285538622819, 34.67334186788209], [-77.5025579702103, 34.67282142519749], [-77.50193516907558, 34.67177043060347], [-77.50167084959796, 34.67024626175779], [-77.50000346440913, 34.669367395145144], [-77.4996748941821, 34.669027645117666], [-77.49900617171691, 34.668841719296914], [-77.49546401939087, 34.670518217515756], [-77.49528207923964, 34.67060791546553], [-77.49510737313113, 34.67063681609187], [-77.48905788443729, 34.67103343707073], [-77.48686872506589, 34.67062587736416], [-77.48089770369334, 34.66891112521178], [-77.47941652039158, 34.66818559524347], [-77.47761130417481, 34.66756724542848], [-77.46919950965045, 34.66604161260525], [-77.46777246016882, 34.66083810465854], [-77.46766375039186, 34.66060202871482], [-77.46691497379138, 34.65812845361201], [-77.46648794964786, 34.65770161443938], [-77.4642830896914, 34.65741802835545], [-77.4623867478646, 34.65646558651296], [-77.4590589891276, 34.65648766954895], [-77.45766209038415, 34.65620827417626], [-77.45638279611263, 34.65710670000643], [-77.45649545314461, 34.65814549575997], [-77.45604346461946, 34.66017347716533], [-77.45603845041438, 34.66194126348326], [-77.45359372949876, 34.663167448908425], [-77.45148463460946, 34.66437893843515], [-77.44922821495967, 34.66451528012974], [-77.44769850285832, 34.665920629888575], [-77.44754633056252, 34.66660471319541], [-77.44671888823846, 34.66859301791638], [-77.44679677782753, 34.66977236997022], [-77.44544272247155, 34.67304838390048], [-77.44542648065172, 34.67309631734466], [-77.44542444226536, 34.67311751509488], [-77.44537663154934, 34.6732082699124], [-77.44433479972136, 34.67519220400568], [-77.44329583451689, 34.67575040799463], [-77.4421724542495, 34.67647466995445], [-77.44126378314209, 34.67578007372767], [-77.44053919359982, 34.67546084893444], [-77.43961308400525, 34.674779996394626], [-77.43961094939178, 34.674773997935766], [-77.43959722696367, 34.674756473527076], [-77.43893106181764, 34.673768255535265], [-77.4385204229444, 34.673159059186055], [-77.43858909715232, 34.67211113174609], [-77.43652360190131, 34.669983040132564], [-77.43651373984365, 34.66974844758349], [-77.43647259024412, 34.669457547153314], [-77.4346798719787, 34.6643827676188], [-77.43468103221335, 34.66436268093987], [-77.43466670711366, 34.664349936936], [-77.4346198144589, 34.66426621984872], [-77.43197198300578, 34.66032832244234], [-77.43111455101729, 34.65947080650491], [-77.43017913244756, 34.65785277169662], [-77.43247197221845, 34.65642145785155], [-77.43409662209203, 34.65426780422918], [-77.4358905889349, 34.65353850955614], [-77.43634894279222, 34.652071661190895], [-77.43664740434683, 34.65020472871695], [-77.43762802277902, 34.64875321931741], [-77.4385432004674, 34.64785878175088], [-77.44066497984004, 34.6466548103469], [-77.44424673582449, 34.645330503311115], [-77.4464326024188, 34.64593890010098], [-77.44913545492622, 34.64466238434721], [-77.4501494385741, 34.64414749635998], [-77.45177291510474, 34.64176731796842], [-77.45226653617006, 34.64080233771938], [-77.45314860895937, 34.63973703053953], [-77.45558723481174, 34.637008635439415], [-77.45645550081778, 34.63645088370783], [-77.45792918951935, 34.63592098192996], [-77.46035394247073, 34.63532422401185], [-77.46440103185505, 34.63532422933182], [-77.46478019845367, 34.63526833452293], [-77.4673175624243, 34.63437986556947], [-77.46836015368966, 34.63404260195527], [-77.46824168245291, 34.633403424676715], [-77.46788357866158, 34.63139861909402], [-77.46829266793185, 34.6311474503184], [-77.46791773774304, 34.6310238631024], [-77.4672753015846, 34.62987790490078], [-77.46682333141422, 34.628612447524375], [-77.46606916611772, 34.62596780500182], [-77.46604748837893, 34.62587958130157], [-77.46602620636877, 34.62579443982311], [-77.466033611315, 34.62534753409624], [-77.46609427669301, 34.62457954718045], [-77.46745940722161, 34.624267599572136], [-77.46788230894458, 34.62441850356626], [-77.46953738243087, 34.62488387563328], [-77.46983761749514, 34.62501744524361], [-77.47018802292746, 34.625156877099144], [-77.4721336727367, 34.62586773428302], [-77.47485757753137, 34.62684499570372], [-77.47750399921188, 34.624852621741695], [-77.47762503625665, 34.62257584039168], [-77.47776126708882, 34.6199879410416], [-77.47769723670524, 34.616646634672406], [-77.47760537453776, 34.61185688685112], [-77.47668729956527, 34.61102631270662], [-77.47727611121633, 34.609909347948026], [-77.47816720085865, 34.608231830731754], [-77.47886974130785, 34.605512012033536], [-77.47946438729774, 34.60432496369307], [-77.47988227282892, 34.601753342386935], [-77.48010499624462, 34.60098942747276], [-77.4796693758702, 34.59837018091569], [-77.47966776848386, 34.59835929661628], [-77.47966892182684, 34.598358000392004], [-77.47966339610171, 34.59834836684511], [-77.47868444154278, 34.595901234746194], [-77.47852977416817, 34.59548407959003], [-77.478703066017, 34.594844905216696], [-77.48014202843656, 34.59411756567117], [-77.4823948470405, 34.59297202063985], [-77.48407492100296, 34.592468535309465], [-77.48988981965154, 34.58963425197998], [-77.49005210315477, 34.5894842662087], [-77.48990609944015, 34.58948596336576], [-77.48944663954158, 34.58670279885137], [-77.48930354653069, 34.58656409405816], [-77.48883569783357, 34.584224486827154], [-77.4887786445668, 34.58393920073746], [-77.48867690035335, 34.583671770166866], [-77.48789080744243, 34.581416920210835], [-77.48797763624871, 34.58121359596927], [-77.48708348742545, 34.579398801821554], [-77.48678939739777, 34.578663639672136], [-77.48678353683071, 34.578600281589175], [-77.48676071992998, 34.578544553822425], [-77.48676374314769, 34.57823243639821], [-77.4887263424243, 34.575090953508266], [-77.4895811346868, 34.57457647112723], [-77.49125896100443, 34.57141303231954], [-77.49218737583747, 34.57053352769256], [-77.49217663620824, 34.56730593083624], [-77.49236155499854, 34.5656401558046], [-77.49238033191631, 34.56518386049658], [-77.49242080944695, 34.5644504608498], [-77.49365061728534, 34.55891200973107], [-77.49215281264877, 34.55565844797621], [-77.49535319193812, 34.54822663681411], [-77.49494164151278, 34.54672542351464], [-77.49419067587529, 34.54398560630612], [-77.49343976490282, 34.54124578122832], [-77.49269886150402, 34.53854226592972], [-77.49172672941532, 34.54064650944537], [-77.4913851972225, 34.5414162315684], [-77.49080333129098, 34.54081528778177], [-77.48892862835817, 34.54011955755787], [-77.48855977584431, 34.539903630007046], [-77.48836675183895, 34.53968131620844], [-77.4856396533691, 34.53804503756888], [-77.4848907580434, 34.53759567571977], [-77.48277782166907, 34.537095148780054], [-77.48249136633963, 34.53699792094707], [-77.48194704844154, 34.537215645440355], [-77.47983762426853, 34.53805940472333], [-77.4793391366417, 34.538420103549484], [-77.47760829846939, 34.53971228181207], [-77.47578653134067, 34.54106986251359], [-77.47445253017301, 34.54357590763947], [-77.47500000080419, 34.54501683741201], [-77.47395812875719, 34.54615280152499], [-77.47304540395422, 34.547148734106045], [-77.47196586645991, 34.54885359004567], [-77.4730480953797, 34.55040832290724], [-77.47337035159285, 34.55170065890236], [-77.47616758433543, 34.55160644690758], [-77.47619998281127, 34.55154530677401], [-77.47853384450858, 34.55041854873415], [-77.47934889380977, 34.549290158802016], [-77.48015062824477, 34.55020042608816], [-77.48101050819712, 34.550705744977094], [-77.48585304791035, 34.55053646936467], [-77.48703009858602, 34.553866667707744], [-77.4877995556574, 34.55467502860383], [-77.48814964354592, 34.555042806634006], [-77.49001639177527, 34.55986566108964], [-77.49000296889088, 34.559954296240456], [-77.48999255251718, 34.560104911928164], [-77.4893734743719, 34.564595130992885], [-77.4893557259587, 34.566047984226365], [-77.48899952671583, 34.5686394084435], [-77.48900212287673, 34.56941963656703], [-77.48617297892122, 34.57209973721893], [-77.48531469617754, 34.57294607482761], [-77.4851121496007, 34.57301359023222], [-77.48490930580824, 34.573226863367054], [-77.48251403071995, 34.574582126839914], [-77.48280511573729, 34.57622235865998], [-77.48329081804158, 34.57664345652893], [-77.48328418049795, 34.57732871747463], [-77.48411663701303, 34.57936190081663], [-77.4843304551508, 34.58167347018978], [-77.4845393229873, 34.5821955950943], [-77.48474664046532, 34.58279462398033], [-77.4840898856784, 34.585278237776265], [-77.48356358084649, 34.587335349070784], [-77.4812528768132, 34.5888060437651], [-77.47743228110531, 34.59011581987048], [-77.47738607357704, 34.59012954719115], [-77.47711429826148, 34.590224420712524], [-77.47371956373173, 34.59132449879614], [-77.4743679091611, 34.59386549747984], [-77.47445176446665, 34.59393880610645], [-77.47442226795178, 34.594047601854975], [-77.47622521419238, 34.59891034891144], [-77.47637987209185, 34.59929695348534], [-77.47644871828705, 34.599710903727996], [-77.47613057474064, 34.600802098379305], [-77.47499735778084, 34.60415795987897], [-77.47115465295965, 34.606696881896106], [-77.47078130765182, 34.60763826554309], [-77.46980588967665, 34.608415701924834], [-77.46836188535416, 34.60853026369516], [-77.46775217217535, 34.60859522967689], [-77.467278122606, 34.608890500163156], [-77.4676330038636, 34.609179040340976], [-77.46774481869447, 34.609285071167996], [-77.46933099398757, 34.61017159761806], [-77.46976671230809, 34.612238169322964], [-77.47027856543555, 34.61285542628433], [-77.47054023753033, 34.6131825283191], [-77.47171549882307, 34.61538328905715], [-77.47344427880984, 34.61694730071366], [-77.4734616973895, 34.61785551577498], [-77.47347383860465, 34.618489082485], [-77.47332771973608, 34.621264819218254], [-77.47068545808386, 34.62246882800876], [-77.46937730402024, 34.622199172219354], [-77.46919356917029, 34.622146673692825], [-77.46867596194262, 34.62217542589699], [-77.46518980808055, 34.62226852108361], [-77.46437426213184, 34.62340272478272], [-77.46357853276929, 34.62493852166304], [-77.46361566208735, 34.62530995899158], [-77.46391043320747, 34.626489229594696], [-77.46431069015286, 34.62811818864452], [-77.46463006080106, 34.6292381303875], [-77.46504753015736, 34.630406989995926], [-77.46363350950894, 34.63193989388802], [-77.46116789935635, 34.631961159189025], [-77.45943361146394, 34.63196559783961], [-77.45754219775844, 34.63273733217767], [-77.45562383449379, 34.633415339747714], [-77.45236732788025, 34.63540494361173], [-77.45201471064846, 34.63559794360291], [-77.45179985138003, 34.635684051756044], [-77.4513768578127, 34.6359720726435], [-77.44844697491199, 34.639466444681474], [-77.44515044090508, 34.641257379019045], [-77.44379785148912, 34.642795422941084], [-77.43835031405719, 34.64522196341851], [-77.43790778287708, 34.64553805319896], [-77.43777546533315, 34.64564398941353], [-77.43761366300643, 34.6458033570597], [-77.43457940601309, 34.648749329692976], [-77.43326906857565, 34.649022816718826], [-77.43277040771383, 34.649826317091346], [-77.431815962331, 34.649549118606565], [-77.43027625010009, 34.648400245726414], [-77.42991683035541, 34.64821275266669], [-77.4295581135507, 34.6480986526904], [-77.4270642078265, 34.64685164352842], [-77.42568569518966, 34.64624795042015], [-77.42563144410163, 34.64613523448166], [-77.4254382026258, 34.6460962039364], [-77.42540154523503, 34.64626980933895], [-77.42536623621773, 34.64633895320235], [-77.42479598462151, 34.64715581239975], [-77.42415569145204, 34.648311651586404], [-77.4239660192287, 34.64840425623113], [-77.42341622432443, 34.64984825378001], [-77.42332778542362, 34.650499767569926], [-77.42332772918158, 34.652605508026], [-77.42344921410647, 34.65279269751983], [-77.4233277156012, 34.653760043695655], [-77.42325258679284, 34.6554291691787], [-77.42288454242183, 34.655907339044965], [-77.42298466938124, 34.656680656111355], [-77.42261584433308, 34.65893771603129], [-77.42377882313818, 34.66056900801324], [-77.42455758691744, 34.66133853666004], [-77.4247555850563, 34.6618301163763], [-77.42599604736426, 34.663509980010986], [-77.42628615566181, 34.66380010173707], [-77.42784969950458, 34.66536367544835], [-77.42838297249641, 34.66615671086739], [-77.42958257997947, 34.66755517130174], [-77.43079230961972, 34.669082546305866], [-77.43157067473858, 34.668500362023195], [-77.43469456590063, 34.67026669245275], [-77.43508492693866, 34.671152619139484], [-77.4365584448768, 34.672689670393346], [-77.43676063822487, 34.67276259808789], [-77.43707391333345, 34.67322734913013], [-77.43811252052728, 34.67476815725126], [-77.43835723633373, 34.67513117918996], [-77.43872690633484, 34.675708933834315], [-77.43875337702175, 34.67576488954996], [-77.43880573860405, 34.67576889710438], [-77.43891989833931, 34.675776421642205], [-77.43985953857259, 34.67571403390529], [-77.44015445299719, 34.67593084759149], [-77.44038229456906, 34.67603122535631], [-77.44100091488495, 34.67650410419412], [-77.44042695647578, 34.676880328960934], [-77.44042715680466, 34.677421565056235], [-77.4399983011888, 34.67767503716346], [-77.43993781033633, 34.677809497739666], [-77.43969898357173, 34.6779334651355], [-77.43964090653824, 34.678072766367706], [-77.43965482429627, 34.6782695880328], [-77.43964569858409, 34.67840323392029], [-77.43979880303056, 34.67831993323589], [-77.43991860086582, 34.67829246090162], [-77.44000219076204, 34.678278307440685], [-77.44033308207325, 34.678222280268315], [-77.44067590627846, 34.67816423150256], [-77.4411217122223, 34.67801599047398], [-77.44207995009225, 34.67774026202784], [-77.44269959995933, 34.67760443697941], [-77.44362981285326, 34.6774232888054], [-77.44609132725483, 34.67588151251867], [-77.44617607925166, 34.67583597788239], [-77.44619610219057, 34.675797848704434], [-77.44726405876185, 34.67373876316177], [-77.44936300760263, 34.67199500140698], [-77.45010959155276, 34.66977851823399], [-77.45261966602595, 34.66852059889371], [-77.45622092348123, 34.66727242142532], [-77.45878415636977, 34.66930948442273], [-77.45981325312526, 34.670198024945975], [-77.46090444941369, 34.67355187017199], [-77.46141819085041, 34.674466879069], [-77.4618962275558, 34.674968611704834], [-77.46247079051052, 34.679054037605454], [-77.46299460211638, 34.67992579292948], [-77.46338975647663, 34.68045983546211], [-77.46406406758906, 34.682575074850234], [-77.46412316915725, 34.68322187659877], [-77.46441985777611, 34.68395074287608], [-77.46443645642171, 34.68469563681216], [-77.46420283048383, 34.68567273464267], [-77.46491664549356, 34.6874026891537], [-77.46613372028898, 34.68843781418508], [-77.46684772166192, 34.68959027103138], [-77.46833445452305, 34.68959030858154], [-77.4694146766498, 34.68957671887745], [-77.4733315022329, 34.68900257889417], [-77.47474609230244, 34.68886555547096], [-77.47514699998864, 34.68876050487424], [-77.47511649943279, 34.688426609907], [-77.47518785773089, 34.688265835191025], [-77.47545408854288, 34.687666096849156], [-77.47636431858129, 34.68497598734281], [-77.47703777268472, 34.684143248414586], [-77.47734926832834, 34.68195185162158], [-77.47739500733728, 34.68172771578122], [-77.47746345127123, 34.67933751720473], [-77.48001653588322, 34.67633231856191], [-77.48165664113219, 34.67584778342005], [-77.48598468211944, 34.67479156457871], [-77.48799480491142, 34.67472775018167], [-77.49186798352355, 34.674916283222075], [-77.49316079726633, 34.67491114015433], [-77.49632524285065, 34.67440627146881], [-77.49729919052959, 34.67387908633885], [-77.49925890380464, 34.673196654041476], [-77.50025482084973, 34.67338762103147], [-77.50043062597285, 34.67367722470365], [-77.50099795487455, 34.67472968628457], [-77.50112445821523, 34.67495640539139], [-77.50118650046666, 34.67523620142146], [-77.50123264340391, 34.676402786002555], [-77.50132226838211, 34.67727336030247], [-77.50132141995924, 34.67776023024416], [-77.50122906834626, 34.67788106233494], [-77.50132492473499, 34.67799001271296], [-77.50133539153187, 34.68080522085856], [-77.50179721578188, 34.68107263004814], [-77.50203352240462, 34.68296262932516], [-77.50218157755084, 34.68351820224396], [-77.50231835081846, 34.68409555135936], [-77.50328041496147, 34.68587474084887], [-77.50294398680398, 34.68625508980703], [-77.50331208719165, 34.68836266910715], [-77.50224308748327, 34.689409686561085], [-77.50145972903721, 34.690193091878676], [-77.50083395947973, 34.69081886439146], [-77.50028101869827, 34.69144699422712], [-77.50101318397279, 34.691471122936], [-77.50228083955375, 34.69146215694951], [-77.50276764136717, 34.69221449035836], [-77.50559208958245, 34.692812228728776], [-77.50685191661651, 34.69319244482688], [-77.50825098822816, 34.69360376214331], [-77.51016541774028, 34.69413238795985], [-77.51166144841959, 34.69463106206412], [-77.51320239872985, 34.695144712290976], [-77.51480078617544, 34.69567749942866], [-77.51636528666971, 34.69619900186874], [-77.51943641687826, 34.697222714686376], [-77.52700319363746, 34.697112749942676], [-77.52734703912729, 34.697408982212636], [-77.5278512272183, 34.69719841797819], [-77.52825002118871, 34.69706265480276], [-77.53388701877206, 34.696729835757466], [-77.53629499526672, 34.69727881933787], [-77.53557524433725, 34.69466382640092]], [[-77.50487503875539, 34.5829467482578], [-77.50169180019711, 34.58237689025903], [-77.49930314219858, 34.582929729424905], [-77.50006390925506, 34.58437009235065], [-77.50282759772578, 34.5858344637224], [-77.50604728353369, 34.587218862814424], [-77.50546090592917, 34.585082037341905]], [[-77.25507130478405, 34.681731533604264], [-77.2549189994673, 34.68161242731792], [-77.25314219238248, 34.68072402476935], [-77.2526206299395, 34.68046323418652], [-77.25105219428877, 34.67967896720813], [-77.24912421061342, 34.68119328272639], [-77.24871412151998, 34.682459157841016], [-77.24841804614314, 34.68312197099598], [-77.24850326012184, 34.683625837923096], [-77.24895325304546, 34.68437582813498], [-77.24944400302618, 34.68519374054152], [-77.25049519688898, 34.685246563002856], [-77.25180202099111, 34.685936401463934], [-77.25355492302637, 34.68752168639105], [-77.25906193395197, 34.68496776042893], [-77.25749075549119, 34.68905863913494], [-77.25770247984867, 34.689163016838876], [-77.25741947740111, 34.690695365458424], [-77.25922173603257, 34.69077166621021], [-77.2598042706831, 34.69069945703176], [-77.25988977449376, 34.69075622046794], [-77.26285580964125, 34.688477680295605], [-77.26668303452935, 34.69170219052666], [-77.26670473402402, 34.69170051965303], [-77.26670615500741, 34.6917010921169], [-77.26671100716263, 34.69170270153108], [-77.2709478966738, 34.69358213707527], [-77.27167461972255, 34.69418463080585], [-77.27302641632942, 34.69473433477822], [-77.27511067086712, 34.69573476219135], [-77.27789981638838, 34.695704118439096], [-77.28235928110655, 34.69537466819949], [-77.28523721600504, 34.693065397123476], [-77.28541848981538, 34.69298021780712], [-77.28479346221731, 34.690406518549715], [-77.28350341763377, 34.689403680267084], [-77.28243398344723, 34.68703652120327], [-77.28088061847279, 34.68711040244269], [-77.28022672715147, 34.68595289070031], [-77.27904828886791, 34.68536711350071], [-77.27836860777822, 34.68455067461428], [-77.27581487109317, 34.68470042786167], [-77.26970670266785, 34.683491791199856], [-77.27502768864136, 34.67864438360828], [-77.27810219391208, 34.67454704219312], [-77.27220731549941, 34.67394019896955], [-77.27100654667949, 34.67329667705876], [-77.26864425836769, 34.671808354146336], [-77.26765993206746, 34.671925839098385], [-77.26578825697031, 34.67282397764312], [-77.26356799597173, 34.673443926361145], [-77.26312975588417, 34.6735308510117], [-77.2623189652008, 34.67332785791548], [-77.26076539753558, 34.67332785026845], [-77.25859176474916, 34.67332434816717], [-77.25819815970125, 34.67330076140274], [-77.25756298782588, 34.67317374708931], [-77.25570976371141, 34.67366785317173], [-77.25479816734338, 34.67435466559916], [-77.25503438632357, 34.67615316067807], [-77.25455691107679, 34.67776320718036], [-77.25486091768951, 34.67874228753687], [-77.25550756601002, 34.68082464427458], [-77.25560879121491, 34.68131864122967], [-77.25609552656931, 34.6814518270893], [-77.25888767508728, 34.68475467200884], [-77.25517363142882, 34.68197003564303]], [[-77.33122742819457, 34.589554405664664], [-77.33122026440049, 34.589544220692225], [-77.33113859328387, 34.589471390736676], [-77.33121669076628, 34.58954858011761]], [[-77.29901394639481, 34.679484409413234], [-77.2990156159111, 34.67947372316635], [-77.29902311670881, 34.67940379979404], [-77.29525619812665, 34.67606016434882], [-77.29520451868382, 34.6760703026877], [-77.29514694335067, 34.67606717247306], [-77.29070865001808, 34.675064376495214], [-77.2875116902205, 34.67571025015957], [-77.28359616034673, 34.67603212868823], [-77.28368866413925, 34.67864897930525], [-77.28497480340705, 34.67831093415403], [-77.28642284165602, 34.68120696767464], [-77.28701657493693, 34.68239439021305], [-77.28843533916327, 34.682873692795035], [-77.28915409995145, 34.68390309233997], [-77.29060511556462, 34.684533727015456], [-77.29095531532826, 34.685670273383664], [-77.29249689672389, 34.68537299433353], [-77.29406102118023, 34.68532224782315], [-77.29764883965856, 34.68412634364364], [-77.29891199380053, 34.68339716669508], [-77.29901787723496, 34.67950313814266]], [[-77.24939433777858, 34.6323260560261], [-77.24819704794776, 34.63260469586885], [-77.24574099509354, 34.63287761974829], [-77.24508811293708, 34.63295015433386], [-77.24319613009722, 34.63341724412338], [-77.2420332266925, 34.63353641118893], [-77.24184348828511, 34.633637336933745], [-77.2419186645492, 34.63376262640401], [-77.24286190327554, 34.63405145490879], [-77.24310036745608, 34.6346790086336], [-77.24375513736689, 34.6351867976597], [-77.24459504956351, 34.636682057366784], [-77.24577303127438, 34.63947765968333], [-77.2461261992951, 34.640177923228975], [-77.24599905596126, 34.64056338056563], [-77.24655843391992, 34.64166516189369], [-77.24703049747706, 34.64277873191374], [-77.24757203075424, 34.644457900284706], [-77.24625183452864, 34.64600911757605], [-77.24721358215322, 34.64996005103942], [-77.25087732278543, 34.649497198785866], [-77.25212504849006, 34.64671613947755], [-77.25272468168637, 34.64592671454121], [-77.25327793283425, 34.644181509362205], [-77.25327178809393, 34.64244511554343], [-77.25279355503218, 34.638940676795606], [-77.25237024337437, 34.637841502395275], [-77.25112232079198, 34.63719581124029], [-77.25224626682325, 34.63620434538936], [-77.25354668236139, 34.63446201989327], [-77.2538724300986, 34.6336414806113], [-77.25243028353754, 34.63299382680094], [-77.25064791326767, 34.63260762924874]], [[-77.31155257982807, 34.595700883142804], [-77.31170138883869, 34.59584727070573], [-77.31183522572114, 34.595884072776315], [-77.31194767945132, 34.59581365297575], [-77.31192144138521, 34.59565032561162], [-77.3118795340716, 34.59549467733176], [-77.31134903676251, 34.59235291496839], [-77.31109493390703, 34.59219068041174], [-77.3096286845192, 34.59077171365569], [-77.30925798504066, 34.59062932995673], [-77.30812091765974, 34.59012190196441], [-77.3073422158337, 34.59070829612203], [-77.30685589823986, 34.59105383398286], [-77.30675497836668, 34.59187048401829], [-77.3069888256411, 34.59295048461672], [-77.30778468360428, 34.59442121561631]], [[-77.30940920242956, 34.60956160293321], [-77.30945630883613, 34.6095563535502], [-77.30949428024554, 34.609540660946294], [-77.30958355505496, 34.60947420611518], [-77.31058926166013, 34.607894006856526], [-77.31050004115862, 34.60740296179246], [-77.30962638175515, 34.606092472097686], [-77.3084505562403, 34.604538755354824], [-77.30713060389635, 34.60489290908245], [-77.30554616830835, 34.60585047824627], [-77.30601424694672, 34.60710191408162], [-77.30656053771604, 34.6078809692225], [-77.30724606507037, 34.60925314314396], [-77.3092101934652, 34.60952536836829]], [[-77.4472129714679, 34.55515613348814], [-77.44626588457838, 34.555972546433864], [-77.44469364939985, 34.55841031760787], [-77.44401169745854, 34.55896015281844], [-77.44420516943583, 34.5596675340968], [-77.44439285416016, 34.55996541666036], [-77.44572275005214, 34.56284469343518], [-77.44639574687051, 34.56431264359129], [-77.44691844304546, 34.56606848783097], [-77.44784962265851, 34.56724525641907], [-77.44863640965497, 34.56836932106008], [-77.44926649792959, 34.56912547784521], [-77.45100349074987, 34.571209825617544], [-77.45188549701201, 34.5711925875183], [-77.45179251281357, 34.57215668534242], [-77.45415768378801, 34.575205574381364], [-77.45415996850868, 34.57520835645472], [-77.45416177450058, 34.575210555468324], [-77.45416203933368, 34.57521520469796], [-77.45416186395737, 34.578605131655145], [-77.45416186387865, 34.57860736294173], [-77.45457373433845, 34.58150040680918], [-77.4545843593645, 34.58188363868011], [-77.45458936613669, 34.58215377899843], [-77.45438485152899, 34.58281858182213], [-77.4537647715288, 34.585071558820076], [-77.45458632871026, 34.587107830434675], [-77.45175824897728, 34.5885830328337], [-77.45174266606818, 34.588602531919214], [-77.4517228727789, 34.588644936908295], [-77.45122488416514, 34.590227268870194], [-77.45154852613169, 34.59068689614835], [-77.45221783332829, 34.59026194948393], [-77.45312711591771, 34.58968461934716], [-77.45182966869149, 34.58862065420219], [-77.45465791832683, 34.58871264522101], [-77.45579990478296, 34.58798753122819], [-77.45614351179279, 34.587652795004146], [-77.4567900601034, 34.5871625197843], [-77.45842516361499, 34.58597372072032], [-77.4592648278117, 34.585285922462404], [-77.4596627822422, 34.584865773464806], [-77.4603289823827, 34.58416242258613], [-77.46085431174937, 34.5834132411042], [-77.46111418027215, 34.58297452518257], [-77.46111415061766, 34.58195968143155], [-77.4611140970623, 34.58081504898876], [-77.46100277919521, 34.58005215180187], [-77.46062445983483, 34.579310803323246], [-77.46120416176089, 34.57704054112475], [-77.46120715660665, 34.577037245983796], [-77.46120680415765, 34.577023273243356], [-77.46128726245959, 34.57458777573017], [-77.46112735297913, 34.574108298172874], [-77.46131453143789, 34.57325396232669], [-77.46045942572033, 34.572327248256585], [-77.46009274024088, 34.571349459289586], [-77.45979985822208, 34.57099740085333], [-77.46017259887002, 34.567852380480105], [-77.45979510559111, 34.56760123517748], [-77.45972131626884, 34.5668204509599], [-77.46045567419911, 34.566894585220965], [-77.46103281465584, 34.56742198977407], [-77.4651843465442, 34.56851890227049], [-77.46732831344457, 34.56867324872234], [-77.46845849012294, 34.56718748242613], [-77.46852157365925, 34.5660892909442], [-77.46852151211883, 34.56443508713639], [-77.46852150735, 34.56144796529256], [-77.4703950192141, 34.55927190283101], [-77.4693465435434, 34.55662585206659], [-77.46913353985694, 34.55605785344884], [-77.46707065888471, 34.55330723029152], [-77.46785538798929, 34.55284616547198], [-77.46705917711517, 34.55262601654018], [-77.46674810190837, 34.55284306668559], [-77.46666465329403, 34.55292869207432], [-77.46632404125016, 34.553068065743666], [-77.46159974490132, 34.55499451944128], [-77.4604479573983, 34.55561402253794], [-77.45956428550765, 34.554999387629636], [-77.45729653580712, 34.555158163371814], [-77.4548014258994, 34.55544395386434], [-77.4541455374469, 34.555350263874104], [-77.45376597715448, 34.55529603777468], [-77.45234370695454, 34.55509282657429], [-77.4509941558658, 34.55490000587063], [-77.44842281324199, 34.55503546540291], [-77.44784312942195, 34.55506611102007]], [[-77.23739435741918, 34.65496887274761], [-77.2372788778593, 34.65524383182867], [-77.23726208207529, 34.65628069053579], [-77.23708739669974, 34.65825447622085], [-77.23729912530493, 34.65873215731815], [-77.23889124493658, 34.659727257046], [-77.23981528508705, 34.66017330662964], [-77.24151913799494, 34.66120256688275], [-77.24308830718441, 34.661786977861034], [-77.24561562381453, 34.66228006926409], [-77.24598946779773, 34.66235299602486], [-77.2479353814246, 34.66040721758206], [-77.24885040633414, 34.659684561198404], [-77.24994018858274, 34.65813957467681], [-77.24669184342059, 34.65418464894038], [-77.24549754218576, 34.65334841189941], [-77.24154613582763, 34.65364768891942], [-77.2384661025976, 34.653904037932335], [-77.23741632107196, 34.654573654256474]], [[-77.32578725711194, 34.71346813400321], [-77.32237109586711, 34.714396841308776], [-77.32145255254035, 34.71540041266064], [-77.32194783504275, 34.715852393275746], [-77.32275990108464, 34.717960372959354], [-77.32420299329445, 34.71892245727902], [-77.32557898153848, 34.719839737743136], [-77.32972554253605, 34.71890976207589], [-77.33270771551926, 34.71960383299751], [-77.33252773610693, 34.717781421109756], [-77.3318099008379, 34.717306835692696], [-77.33134099813444, 34.716498137511216], [-77.33044092361365, 34.71520668216124], [-77.32881140561847, 34.714391925186206], [-77.32795639931453, 34.71396441064618], [-77.32737211929123, 34.71367229553603]], [[-77.35013358521613, 34.59055571917313], [-77.34955191795645, 34.59093296684515], [-77.34725566430966, 34.59093309628568], [-77.34817766378701, 34.592610002437866], [-77.34970480524663, 34.59322082032364], [-77.35013183822882, 34.59339162448164], [-77.351039413244, 34.59179078595169]], [[-77.32650836825567, 34.569846082139435], [-77.32650868901347, 34.56984522318617], [-77.3265089846594, 34.569843705962704], [-77.32651362885987, 34.56899544164218], [-77.32666070391443, 34.56881036548023], [-77.32650842056344, 34.56896455186894], [-77.32650019977811, 34.56899737123436], [-77.32650546970744, 34.56984337261704], [-77.32650512763502, 34.569845734901264], [-77.3265076117673, 34.56984840218251]], [[-77.45006221498659, 34.591590290212416], [-77.4504012156117, 34.59130593305846], [-77.45082203639774, 34.59108070486127], [-77.45033676232303, 34.591070465361845], [-77.45019193085474, 34.591260443606835]], [[-77.32696221653293, 34.56808191162569], [-77.32690328075549, 34.56799805890835], [-77.32674368497491, 34.56811331286334], [-77.32690284184245, 34.56847976535313]], [[-77.45099879446822, 34.563048159885945], [-77.45031627508659, 34.56291551163944], [-77.45056682878662, 34.562143670948686], [-77.44901549266086, 34.56110798443758], [-77.4487299866189, 34.55996587081921], [-77.44850002789568, 34.55904601534117], [-77.44942015511512, 34.557737787741644], [-77.44966266471282, 34.557440923734156], [-77.45060729156238, 34.557461184910906], [-77.45099574888357, 34.55770884477207], [-77.45165980387954, 34.5578729353958], [-77.45381602266798, 34.5579196256378], [-77.45414712087499, 34.55796692817352], [-77.45505673511308, 34.55809686147051], [-77.4541479251281, 34.55929145448872], [-77.45274613655276, 34.560316508331496], [-77.45160972586267, 34.56199271030553]], [[-77.46833473224629, 34.671193730479764], [-77.47030092021876, 34.671933945085705], [-77.47033636140256, 34.67196913652572], [-77.47047537425246, 34.67224059739719], [-77.47295688150813, 34.67608305619199], [-77.47276218237492, 34.677140480495], [-77.4723867454797, 34.6775640792882], [-77.47285890165102, 34.68006719525004], [-77.4733790393819, 34.68038799595172], [-77.47337910498734, 34.68282455003259], [-77.47337910678432, 34.6828652737814], [-77.4733667929703, 34.68287662593348], [-77.47043604599818, 34.684314417853145], [-77.46965008518833, 34.68457639665628], [-77.46893393605177, 34.68465927012466], [-77.46766458572314, 34.68501148646758], [-77.4670531912724, 34.68467703206569], [-77.46616523172787, 34.684384622637964], [-77.46616691844221, 34.68406158736903], [-77.46606857855647, 34.68348066684666], [-77.46582023155288, 34.68297703721966], [-77.46569210536838, 34.6826570239071], [-77.46588656038551, 34.68205545358677], [-77.46575959138589, 34.681221915129406], [-77.46532409139101, 34.680051090858385], [-77.46617068317471, 34.679020211266035], [-77.46566560611365, 34.67767830707823], [-77.4656562822825, 34.67521245850472], [-77.46544030020173, 34.673320056315916], [-77.46569791178817, 34.67032202855136], [-77.46567775158569, 34.67026529301627], [-77.46594957165341, 34.67001440352588]], [[-77.48176638272085, 34.54233726304076], [-77.48249186926552, 34.54087857435177], [-77.48258707679533, 34.54062267397481], [-77.4838052915195, 34.54062512519316], [-77.48406710881386, 34.54085106100208], [-77.48465421757633, 34.54128580431851], [-77.48564438383855, 34.54292125137451], [-77.48587691232379, 34.543189064130424], [-77.48612694315668, 34.54333543305391], [-77.48624254200557, 34.543682243305874], [-77.48582901261153, 34.54414504817524], [-77.48529776592748, 34.54389824045637], [-77.48445056259501, 34.54364640478207], [-77.48304336911897, 34.54325829196167], [-77.48249391048279, 34.543064778748715]], [[-77.45588565704595, 34.573262579480094], [-77.4573075045287, 34.57207870354804], [-77.4579553900497, 34.57296291078482], [-77.45845750532641, 34.573350113299504], [-77.45888483222555, 34.57423320572771], [-77.45898924312654, 34.5745116325481], [-77.45907943155034, 34.575988544849814], [-77.45908716960126, 34.576295317684924], [-77.45743132080263, 34.57811719955633], [-77.45741347604122, 34.57818708424266], [-77.45870051649322, 34.580709147824265], [-77.45876292918646, 34.58113688210739], [-77.45907914789149, 34.58207817647293], [-77.45907915688522, 34.582486310961464], [-77.4590791585039, 34.58281671056989], [-77.4588058174131, 34.58360952181965], [-77.4587997079172, 34.58362727860435], [-77.4587836733763, 34.58363956254522], [-77.45796649524652, 34.58438308810893], [-77.45689685918397, 34.58417794499847], [-77.45692257724015, 34.58411372796138], [-77.45734358229281, 34.58311769907387], [-77.45745459752621, 34.58254173807256], [-77.45731914329154, 34.58179974884297], [-77.4573063036183, 34.58110698446526], [-77.45722721867692, 34.57825448604007], [-77.45721454021276, 34.57816543048371], [-77.45721454389667, 34.57806101157281], [-77.45721456564543, 34.576467010945656], [-77.45704460631869, 34.57507864643804], [-77.45702847943946, 34.574795533929944], [-77.4559685321335, 34.573504919868924]], [[-77.51363860286537, 34.63252296141802], [-77.51023599228938, 34.63311917433301], [-77.50862769393613, 34.63245052370796], [-77.50752818845723, 34.63286603355785], [-77.50781199309623, 34.63344889735046], [-77.50980261528852, 34.63406901185997], [-77.5107400168889, 34.634954253060485], [-77.51362766482315, 34.633651781368215], [-77.51546605919606, 34.63316104441439], [-77.5145498519584, 34.632522962172054]], [[-77.24247747575399, 34.65931079116654], [-77.24234131413075, 34.65922853890983], [-77.24209543220374, 34.659109847604995], [-77.24066604632125, 34.65838559003799], [-77.24052360138143, 34.65733579946774], [-77.24275807119328, 34.65760310389441], [-77.24289924210505, 34.65847817196838], [-77.24317475941368, 34.6590627114993], [-77.24283471589763, 34.65940272715474], [-77.2426028742687, 34.659357493758684]]]]}, "type": "Feature", "id": "demo16", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5337985596612, 34.68820790472248], [-77.5335657114758, 34.689010071587944], [-77.53246959971966, 34.689641564479935], [-77.53173822266143, 34.69084934986216], [-77.53027368546991, 34.69069937615816], [-77.5282420639731, 34.69084936202683], [-77.52673997545237, 34.69082846011471], [-77.52610622434021, 34.6908556487002], [-77.52519428120264, 34.69104372401583], [-77.52000231043752, 34.69174947901162], [-77.51806774843774, 34.692246111690544], [-77.51691094981402, 34.691870369468816], [-77.51586267504729, 34.691883016975886], [-77.51512957074331, 34.69163980825368], [-77.51454242484886, 34.69110686430069], [-77.51331069638822, 34.690258005407294], [-77.51214100002161, 34.68953853710086], [-77.51071404036165, 34.688468293344044], [-77.5077900733289, 34.685490753802576], [-77.50750081426469, 34.68507749507895], [-77.50747304958894, 34.68496214194606], [-77.50741185937798, 34.6848397543995], [-77.50682668357177, 34.683669395059006], [-77.50660600659239, 34.68251145947538], [-77.5065266410498, 34.682277771558745], [-77.50643685504544, 34.68056676627705], [-77.50654518746971, 34.679583568015914], [-77.50698311318291, 34.67919285514461], [-77.5065100557129, 34.6789682531343], [-77.5066661426413, 34.67632880254219], [-77.5063104845686, 34.67454789816781], [-77.50651931280996, 34.67341616017114], [-77.5069350486034, 34.671127207432015], [-77.50571415295241, 34.67069149669611], [-77.50597914268792, 34.66947848996086], [-77.51034522776189, 34.66695494760676], [-77.51121944437091, 34.66733433749207], [-77.51176139565652, 34.66601003966368], [-77.51201406194662, 34.661677593133305], [-77.51051603465075, 34.66045650551758], [-77.51594603456891, 34.653903140149986], [-77.51702606935758, 34.653519932197405], [-77.51876430696956, 34.652191079036534], [-77.52192122097803, 34.650274994451195], [-77.52230593798976, 34.64641968297589], [-77.52201289677018, 34.64535358976321], [-77.51900146561383, 34.63439541047068], [-77.51749608007339, 34.628916273313585], [-77.5159909144497, 34.62343710449821], [-77.51508883563247, 34.62015281963501], [-77.51062037351745, 34.619062390139106], [-77.51173622004615, 34.61699750591345], [-77.51018525076907, 34.61590172271332], [-77.50809198342415, 34.61572459999236], [-77.50598071803374, 34.61762251743791], [-77.50536022550966, 34.619724165644854], [-77.49843085084534, 34.620767750967275], [-77.49710624444191, 34.62179459045201], [-77.49197229149425, 34.6235526586107], [-77.49076434110611, 34.62348957129119], [-77.4825865602439, 34.62115970017173], [-77.48231599265954, 34.620729910905574], [-77.48287921981326, 34.616822649093464], [-77.48228395254958, 34.615337405136145], [-77.48209303861313, 34.61368442831967], [-77.4820991444181, 34.611595543779494], [-77.48206733350948, 34.60949057286257], [-77.48237712605142, 34.608246638283056], [-77.48338506797684, 34.6070906638617], [-77.4843110539385, 34.603652166737675], [-77.48472661127387, 34.60282261999269], [-77.48476002989989, 34.60261696546701], [-77.48486954468883, 34.60199820399231], [-77.48562707753219, 34.60204171559722], [-77.48774938623576, 34.60195942062438], [-77.49318112512874, 34.60163476177348], [-77.49818197277503, 34.60131357051064], [-77.50153025032975, 34.60140798373421], [-77.50472703730875, 34.60301887504523], [-77.50811458818139, 34.603794760638], [-77.51084698332753, 34.6047055621196], [-77.50997244949734, 34.60152011288805], [-77.50696453440979, 34.590561427437564], [-77.50604728353369, 34.587218862814424], [-77.50282759772578, 34.5858344637224], [-77.50006390925506, 34.58437009235065], [-77.49930314219858, 34.582929729424905], [-77.50169180019711, 34.58237689025903], [-77.50487503875539, 34.5829467482578], [-77.50395749671586, 34.57960261568153], [-77.50320587430913, 34.57686289301823], [-77.50258135155855, 34.57458628607995], [-77.50127399550087, 34.57618757950389], [-77.50062210953602, 34.576366734947406], [-77.49871930042386, 34.57583420864361], [-77.49804337301502, 34.57538360129014], [-77.49814521576656, 34.57374101313324], [-77.49817087529688, 34.57262569313083], [-77.49853465809417, 34.57228874681565], [-77.49816077437542, 34.57206081722499], [-77.49761961764456, 34.5695956839894], [-77.49702294096492, 34.56727016164034], [-77.49675743929308, 34.56688765331684], [-77.49674553604339, 34.5664742268017], [-77.49685120655434, 34.563906342179834], [-77.49714012631702, 34.558671495871764], [-77.49731950895463, 34.557863644483135], [-77.4971010356794, 34.55738907238251], [-77.49756785046168, 34.55630505108512], [-77.49535319193812, 34.54822663681411], [-77.49215281264875, 34.5556584479762], [-77.49365061728534, 34.55891200973107], [-77.49242080944695, 34.5644504608498], [-77.49238033191631, 34.56518386049658], [-77.49236155499854, 34.5656401558046], [-77.49217663620824, 34.56730593083624], [-77.49218737583747, 34.570533527692554], [-77.49125896100443, 34.57141303231955], [-77.4895811346868, 34.57457647112723], [-77.4887263424243, 34.575090953508266], [-77.48676374314768, 34.57823243639822], [-77.48676071992998, 34.578544553822425], [-77.48678353683071, 34.578600281589175], [-77.48678939739776, 34.578663639672136], [-77.48708348742545, 34.57939880182155], [-77.48797763624871, 34.58121359596927], [-77.48789080744243, 34.581416920210835], [-77.48867690035335, 34.58367177016687], [-77.4887786445668, 34.58393920073746], [-77.48883569783357, 34.58422448682715], [-77.48930354653069, 34.58656409405816], [-77.48944663954158, 34.58670279885137], [-77.48990609944015, 34.58948596336576], [-77.49005210315477, 34.5894842662087], [-77.48988981965154, 34.58963425197998], [-77.48407492100296, 34.59246853530946], [-77.4823948470405, 34.59297202063985], [-77.48014202843656, 34.59411756567116], [-77.478703066017, 34.594844905216696], [-77.47852977416817, 34.59548407959003], [-77.47868444154278, 34.5959012347462], [-77.47966339610171, 34.59834836684511], [-77.47966892182684, 34.598358000392004], [-77.47966776848386, 34.59835929661628], [-77.4796693758702, 34.59837018091569], [-77.48010499624463, 34.60098942747276], [-77.4798822728289, 34.601753342386935], [-77.47946438729772, 34.60432496369306], [-77.47886974130785, 34.605512012033536], [-77.47816720085865, 34.608231830731754], [-77.47727611121633, 34.609909347948026], [-77.47668729956527, 34.61102631270662], [-77.47760537453776, 34.61185688685112], [-77.47769723670524, 34.616646634672406], [-77.47776126708882, 34.6199879410416], [-77.47762503625665, 34.62257584039168], [-77.47750399921188, 34.624852621741695], [-77.47485757753137, 34.62684499570372], [-77.47213367273672, 34.62586773428302], [-77.47018802292746, 34.625156877099144], [-77.46983761749516, 34.62501744524361], [-77.46953738243087, 34.62488387563328], [-77.46788230894458, 34.62441850356626], [-77.46745940722161, 34.624267599572136], [-77.46609427669301, 34.624579547180446], [-77.46603361131498, 34.625347534096235], [-77.46602620636877, 34.62579443982311], [-77.46604748837893, 34.62587958130157], [-77.46606916611772, 34.62596780500182], [-77.46682333141422, 34.62861244752437], [-77.4672753015846, 34.62987790490078], [-77.46791773774304, 34.631023863102406], [-77.46829266793185, 34.6311474503184], [-77.46788357866158, 34.63139861909402], [-77.46824168245291, 34.633403424676715], [-77.46836015368966, 34.63404260195527], [-77.46731756242431, 34.63437986556948], [-77.46478019845367, 34.63526833452293], [-77.46440103185503, 34.63532422933182], [-77.46035394247073, 34.63532422401185], [-77.45792918951935, 34.63592098192996], [-77.45645550081778, 34.63645088370783], [-77.45558723481176, 34.637008635439415], [-77.45314860895937, 34.63973703053953], [-77.45226653617006, 34.64080233771938], [-77.45177291510474, 34.641767317968416], [-77.4501494385741, 34.64414749635998], [-77.44913545492622, 34.64466238434721], [-77.44643260241881, 34.64593890010098], [-77.44424673582449, 34.645330503311115], [-77.44066497984005, 34.6466548103469], [-77.4385432004674, 34.647858781750884], [-77.43762802277902, 34.64875321931741], [-77.43664740434683, 34.65020472871695], [-77.43634894279222, 34.652071661190895], [-77.4358905889349, 34.65353850955614], [-77.43409662209203, 34.65426780422918], [-77.43247197221845, 34.65642145785155], [-77.43017913244756, 34.657852771696625], [-77.43111455101729, 34.65947080650491], [-77.43197198300578, 34.66032832244234], [-77.4346198144589, 34.66426621984872], [-77.43466670711366, 34.664349936936], [-77.43468103221335, 34.66436268093986], [-77.4346798719787, 34.6643827676188], [-77.43647259024411, 34.669457547153314], [-77.43651373984365, 34.66974844758349], [-77.43652360190131, 34.66998304013256], [-77.43858909715232, 34.67211113174609], [-77.43852042294439, 34.673159059186055], [-77.43893106181764, 34.673768255535265], [-77.43959722696367, 34.674756473527076], [-77.43961094939178, 34.674773997935766], [-77.43961308400525, 34.67477999639462], [-77.44053919359982, 34.67546084893444], [-77.44126378314209, 34.67578007372767], [-77.4421724542495, 34.67647466995445], [-77.44329583451689, 34.67575040799463], [-77.44433479972136, 34.67519220400568], [-77.44537663154934, 34.6732082699124], [-77.44542444226536, 34.67311751509489], [-77.44542648065172, 34.67309631734466], [-77.44544272247155, 34.67304838390048], [-77.44679677782753, 34.66977236997022], [-77.44671888823846, 34.66859301791638], [-77.44754633056252, 34.66660471319541], [-77.44769850285832, 34.665920629888575], [-77.44922821495967, 34.66451528012974], [-77.45148463460946, 34.664378938435156], [-77.45359372949876, 34.663167448908425], [-77.45603845041437, 34.66194126348326], [-77.45604346461946, 34.66017347716533], [-77.45649545314461, 34.65814549575997], [-77.45638279611263, 34.65710670000643], [-77.45766209038415, 34.65620827417626], [-77.4590589891276, 34.65648766954895], [-77.4623867478646, 34.65646558651296], [-77.4642830896914, 34.65741802835545], [-77.46648794964786, 34.65770161443938], [-77.46691497379139, 34.65812845361201], [-77.46766375039186, 34.66060202871482], [-77.46777246016882, 34.66083810465854], [-77.46919950965045, 34.66604161260524], [-77.47761130417481, 34.667567245428486], [-77.47941652039158, 34.66818559524347], [-77.48089770369334, 34.66891112521178], [-77.4868687250659, 34.67062587736416], [-77.4890578844373, 34.67103343707073], [-77.49510737313113, 34.67063681609187], [-77.49528207923964, 34.67060791546553], [-77.49546401939087, 34.670518217515756], [-77.49900617171691, 34.668841719296914], [-77.4996748941821, 34.669027645117666], [-77.50000346440913, 34.669367395145144], [-77.50167084959797, 34.67024626175779], [-77.50193516907557, 34.67177043060347], [-77.5025579702103, 34.67282142519748], [-77.50285538622819, 34.67334186788209], [-77.50339462846269, 34.674308297045954], [-77.50359522655954, 34.675212947503546], [-77.50380292299057, 34.67614953121929], [-77.50387642844586, 34.677125282621375], [-77.50389474210874, 34.6786584532653], [-77.50405521133517, 34.68002878284315], [-77.50425419096898, 34.68172768863151], [-77.50431617200759, 34.682908829113046], [-77.50464387093174, 34.6838737223952], [-77.50496307315305, 34.68452110819863], [-77.50546954551632, 34.68553411189585], [-77.5058466433411, 34.687100829832985], [-77.50783455847073, 34.68994092499592], [-77.50750040202463, 34.6908634653319], [-77.50851872989544, 34.691153693317816], [-77.50941417312781, 34.69139954740028], [-77.5117164630258, 34.692614360935394], [-77.51296883489857, 34.6930318158917], [-77.514184769456, 34.69343712750825], [-77.51532074043885, 34.6938157614926], [-77.51649065776456, 34.694205773002196], [-77.51767257308444, 34.694599746494404], [-77.5188202375056, 34.69498230232841], [-77.52214668247758, 34.69493396052047], [-77.52700058961042, 34.69410656373873], [-77.53014171687715, 34.69398926146026], [-77.53459440921435, 34.694321818571616], [-77.53549704160116, 34.69437967925123], [-77.5348213117321, 34.691924436303836], [-77.5340674343403, 34.68918503825847]], [[-77.52744936180878, 34.66512759961611], [-77.52312641036269, 34.66555566024434], [-77.51994506761854, 34.66845209071114], [-77.51768846015445, 34.67022638875201], [-77.51570577391826, 34.672873172686906], [-77.51991240800714, 34.67550048507125], [-77.5210599347557, 34.675810194348855], [-77.52205492782971, 34.67612564343237], [-77.52548775834191, 34.67771445328202], [-77.52940140877062, 34.67869907674015], [-77.53025161717366, 34.679207518283526], [-77.53169066722481, 34.680547006007416], [-77.53105247670271, 34.67822736662353], [-77.52954532889896, 34.67274848315449], [-77.52803840166318, 34.66726956793342]], [[-77.45160972586267, 34.56199271030553], [-77.45274613655276, 34.560316508331496], [-77.4541479251281, 34.55929145448872], [-77.45505673511308, 34.55809686147052], [-77.45414712087499, 34.55796692817352], [-77.45381602266798, 34.5579196256378], [-77.45165980387954, 34.5578729353958], [-77.45099574888357, 34.55770884477207], [-77.45060729156238, 34.557461184910906], [-77.44966266471282, 34.557440923734156], [-77.44942015511512, 34.557737787741644], [-77.44850002789569, 34.55904601534117], [-77.4487299866189, 34.55996587081921], [-77.44901549266086, 34.56110798443758], [-77.45056682878662, 34.562143670948686], [-77.45031627508659, 34.56291551163944], [-77.45099879446822, 34.563048159885945]], [[-77.46594957165341, 34.67001440352588], [-77.46567775158567, 34.67026529301627], [-77.46569791178817, 34.67032202855136], [-77.46544030020173, 34.673320056315916], [-77.46565628228251, 34.67521245850472], [-77.46566560611365, 34.67767830707823], [-77.46617068317471, 34.679020211266035], [-77.46532409139101, 34.680051090858385], [-77.46575959138589, 34.681221915129406], [-77.46588656038551, 34.68205545358677], [-77.46569210536838, 34.6826570239071], [-77.46582023155288, 34.68297703721965], [-77.46606857855647, 34.68348066684666], [-77.46616691844221, 34.68406158736903], [-77.46616523172787, 34.684384622637964], [-77.4670531912724, 34.684677032065686], [-77.46766458572314, 34.68501148646758], [-77.46893393605177, 34.684659270124655], [-77.46965008518832, 34.68457639665628], [-77.47043604599818, 34.684314417853145], [-77.4733667929703, 34.68287662593348], [-77.47337910678432, 34.6828652737814], [-77.47337910498734, 34.68282455003259], [-77.4733790393819, 34.68038799595172], [-77.47285890165102, 34.68006719525004], [-77.4723867454797, 34.6775640792882], [-77.47276218237494, 34.677140480495], [-77.47295688150811, 34.67608305619199], [-77.47047537425246, 34.67224059739719], [-77.47033636140256, 34.67196913652572], [-77.47030092021876, 34.6719339450857], [-77.46833473224629, 34.671193730479764]], [[-77.48249391048279, 34.543064778748715], [-77.48304336911897, 34.54325829196167], [-77.48445056259501, 34.54364640478207], [-77.48529776592748, 34.54389824045637], [-77.48582901261153, 34.54414504817524], [-77.48624254200557, 34.543682243305874], [-77.48612694315668, 34.54333543305392], [-77.48587691232379, 34.543189064130424], [-77.48564438383855, 34.54292125137451], [-77.48465421757633, 34.54128580431851], [-77.48406710881386, 34.54085106100208], [-77.4838052915195, 34.54062512519316], [-77.48258707679533, 34.54062267397481], [-77.48249186926552, 34.54087857435177], [-77.48176638272085, 34.54233726304076]], [[-77.4559685321335, 34.573504919868924], [-77.45702847943946, 34.574795533929944], [-77.45704460631869, 34.57507864643804], [-77.45721456564543, 34.57646701094565], [-77.45721454389667, 34.57806101157281], [-77.45721454021276, 34.5781654304837], [-77.45722721867692, 34.57825448604007], [-77.4573063036183, 34.58110698446526], [-77.45731914329154, 34.58179974884297], [-77.45745459752622, 34.582541738072564], [-77.45734358229281, 34.58311769907387], [-77.45692257724015, 34.58411372796138], [-77.45689685918397, 34.58417794499847], [-77.45796649524652, 34.58438308810893], [-77.4587836733763, 34.58363956254522], [-77.4587997079172, 34.58362727860435], [-77.4588058174131, 34.58360952181965], [-77.4590791585039, 34.58281671056989], [-77.45907915688522, 34.582486310961464], [-77.45907914789149, 34.58207817647293], [-77.45876292918646, 34.58113688210739], [-77.45870051649324, 34.580709147824265], [-77.45741347604122, 34.57818708424266], [-77.45743132080263, 34.57811719955633], [-77.45908716960126, 34.576295317684924], [-77.45907943155034, 34.57598854484981], [-77.45898924312654, 34.5745116325481], [-77.45888483222555, 34.57423320572771], [-77.45845750532641, 34.573350113299504], [-77.4579553900497, 34.57296291078482], [-77.4573075045287, 34.57207870354804], [-77.45588565704595, 34.573262579480094]], [[-77.5145498519584, 34.632522962172054], [-77.51546605919606, 34.6331610444144], [-77.51362766482315, 34.633651781368215], [-77.5107400168889, 34.634954253060485], [-77.50980261528852, 34.63406901185997], [-77.50781199309623, 34.63344889735046], [-77.50752818845723, 34.63286603355786], [-77.50862769393613, 34.63245052370796], [-77.51023599228938, 34.63311917433301], [-77.51363860286537, 34.63252296141802]], [[-77.2426028742687, 34.659357493758684], [-77.24283471589763, 34.65940272715474], [-77.24317475941368, 34.65906271149931], [-77.24289924210505, 34.65847817196838], [-77.24275807119328, 34.65760310389441], [-77.24052360138143, 34.65733579946774], [-77.24066604632125, 34.65838559003799], [-77.24209543220374, 34.659109847605], [-77.24234131413075, 34.65922853890983], [-77.24247747575399, 34.65931079116654]], [[-77.47009080948087, 34.65426831445872], [-77.4687026039311, 34.65201493806064], [-77.46822908680026, 34.651845184689], [-77.46848190181065, 34.65142657424157], [-77.46777776336955, 34.64948722164287], [-77.46487946533394, 34.65016736379994], [-77.46451578965932, 34.650508539094204], [-77.46339717121553, 34.651184527268676], [-77.46099841656508, 34.65302781019446], [-77.45730266277293, 34.65247337919839], [-77.45659992693784, 34.65233282417143], [-77.45630142337879, 34.65254245796234], [-77.45175772374418, 34.655489591996606], [-77.45217329522325, 34.65642361170445], [-77.45246019985046, 34.6572373629061], [-77.4526028366081, 34.65826263212821], [-77.45180946112825, 34.659481418065226], [-77.45149589244544, 34.66035309772797], [-77.4505330081656, 34.66090619006458], [-77.44940218424051, 34.66097451886603], [-77.44644059958006, 34.66101176481504], [-77.44637780951493, 34.66101285532692], [-77.44635378126023, 34.66101254132618], [-77.4462943999255, 34.661053433534164], [-77.44393405576561, 34.662664040097084], [-77.44339065134623, 34.66483500200182], [-77.44331397510602, 34.665278364290955], [-77.44289955077072, 34.66725752174168], [-77.44040065944102, 34.668315870772695], [-77.44019500076521, 34.666311714215055], [-77.44249445745095, 34.665090380246355], [-77.44031956777957, 34.66475781939599], [-77.44043712578598, 34.66272258459495], [-77.43806340622163, 34.66061085818497], [-77.4379210021259, 34.66048561251666], [-77.43792881692904, 34.66036471223484], [-77.43774749602771, 34.65758101184929], [-77.43899831186901, 34.65598248906784], [-77.43915531195591, 34.65422593762923], [-77.43942364440842, 34.65122437375168], [-77.43943354639148, 34.65119268489944], [-77.43943555600801, 34.65118011437467], [-77.43944771704587, 34.65116211363129], [-77.44040488696183, 34.649041516510096], [-77.44173754406354, 34.64839689932469], [-77.44285976453419, 34.64825659287221], [-77.44398769212714, 34.64841774809561], [-77.444628197078, 34.64852161204576], [-77.44689072199179, 34.64883248081917], [-77.4472377302184, 34.648878281059005], [-77.4473761131465, 34.648820701945276], [-77.44846935528933, 34.64861725390252], [-77.4537413701927, 34.64835601480506], [-77.45525380432045, 34.647420608637724], [-77.45607068990358, 34.64708766996913], [-77.45721258963735, 34.64612445291027], [-77.4556516304101, 34.64602102491679], [-77.45565381129894, 34.643614856630386], [-77.45565386231455, 34.64236050434701], [-77.45567661312676, 34.64199490764579], [-77.45663115839918, 34.640382042740406], [-77.45731746065356, 34.63959673335489], [-77.46129190767371, 34.639003500695424], [-77.46135776835828, 34.638987291668855], [-77.4614051543834, 34.63898729173115], [-77.46164655082194, 34.6389517062976], [-77.46786967859225, 34.63839944895577], [-77.46951385389312, 34.638043932800755], [-77.47033574585326, 34.63721057283203], [-77.47077334996786, 34.63634818182487], [-77.47195450922601, 34.63340414161014], [-77.47216185410436, 34.63299777958605], [-77.47214214215681, 34.63288742436659], [-77.47261378861919, 34.63259784731558], [-77.4759019441552, 34.630653916245514], [-77.47992672916277, 34.63065396027399], [-77.47966337514902, 34.62790270250906], [-77.4817345187119, 34.626331358602776], [-77.48199800865703, 34.622202799753296], [-77.48885292180317, 34.62527948203759], [-77.489842381624, 34.62615871624783], [-77.49197025269177, 34.627884511980085], [-77.49346203275338, 34.62904915744731], [-77.49422269528617, 34.62965514962872], [-77.49828595009468, 34.63046604390982], [-77.49911504977462, 34.63121258281849], [-77.50037271255742, 34.63157248159256], [-77.50159861122087, 34.633271983106326], [-77.50139539640054, 34.63351585249612], [-77.50086006997802, 34.63463616935051], [-77.49982551959693, 34.63760659383816], [-77.49737216037256, 34.64057369936392], [-77.49673042627032, 34.64522787450337], [-77.49673039398645, 34.64643351845512], [-77.49677790572987, 34.646652367544135], [-77.49689487522689, 34.646808081556806], [-77.49912698518912, 34.65189033782569], [-77.5035351087139, 34.653324126511436], [-77.50527649217176, 34.65604366101016], [-77.50793477680128, 34.66025364698193], [-77.50407527964327, 34.66229575956548], [-77.50710097595126, 34.66360310198746], [-77.50876396143076, 34.665496852688435], [-77.50582615918469, 34.665162830218804], [-77.50584099041339, 34.664746181182124], [-77.5017122433336, 34.663369897350776], [-77.50130120867732, 34.66337796082531], [-77.49470631395273, 34.66554273697841], [-77.49401032773497, 34.66597664497946], [-77.49281401229658, 34.66735897261799], [-77.49191674415457, 34.66753710737706], [-77.49016306586722, 34.66729400167928], [-77.48801116555958, 34.66688141581638], [-77.48694194725354, 34.666301976174836], [-77.48558414095379, 34.665946094955565], [-77.48248816069284, 34.66442958686508], [-77.47615531991869, 34.66226036697628], [-77.47279133158528, 34.661650246150856], [-77.4722206355473, 34.6595692942238], [-77.47118809017608, 34.65732700167388], [-77.4710261063601, 34.65649125418509]], [[-77.44045747497255, 34.671358797283276], [-77.44040064454086, 34.670006950002495], [-77.4416949983379, 34.67039167209757], [-77.4415271492131, 34.67127402469772], [-77.44236336098133, 34.67202526326393], [-77.4428998480006, 34.67257693763847], [-77.44253893627388, 34.67393974206946], [-77.4423468982572, 34.67449713068943], [-77.4424133201348, 34.67471404097439], [-77.44183926035345, 34.67525849310828], [-77.44136344648606, 34.67501318045097], [-77.44125439387963, 34.674587144825146], [-77.4411634752378, 34.67433165513641], [-77.4408956914854, 34.67398967834613], [-77.44061278909038, 34.67171382309793], [-77.44062476013211, 34.67153115214343]]]]}, "type": "Feature", "id": "demo17", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.53169066722481, 34.680547006007416], [-77.53025161717366, 34.67920751828353], [-77.52940140877062, 34.678699076740145], [-77.52548775834191, 34.67771445328202], [-77.52205492782971, 34.67612564343237], [-77.5210599347557, 34.675810194348855], [-77.51991240800716, 34.675500485071254], [-77.51570577391826, 34.67287317268691], [-77.51768846015443, 34.67022638875201], [-77.51994506761854, 34.66845209071114], [-77.52312641036269, 34.66555566024434], [-77.52744936180878, 34.66512759961611], [-77.52653169491388, 34.66179062097201], [-77.5258141636274, 34.65918111230192], [-77.52548534999359, 34.65913487468377], [-77.52308367565949, 34.65868813173765], [-77.52267756751621, 34.6579690856769], [-77.52455273707321, 34.65688996630065], [-77.5254892617493, 34.65799943331637], [-77.52502520856956, 34.65631164228204], [-77.5235189425488, 34.6508326318752], [-77.52230593798976, 34.64641968297589], [-77.52192122097803, 34.650274994451195], [-77.51876430696956, 34.652191079036534], [-77.51702606935758, 34.653519932197405], [-77.51594603456891, 34.653903140149986], [-77.51051603465075, 34.66045650551758], [-77.51201406194662, 34.661677593133305], [-77.51176139565652, 34.66601003966368], [-77.51121944437091, 34.66733433749207], [-77.51034522776189, 34.66695494760676], [-77.50597914268792, 34.66947848996086], [-77.50571415295241, 34.67069149669611], [-77.5069350486034, 34.671127207432015], [-77.50651931280996, 34.67341616017114], [-77.5063104845686, 34.67454789816781], [-77.5066661426413, 34.67632880254219], [-77.50651005571291, 34.6789682531343], [-77.50698311318291, 34.67919285514461], [-77.50654518746971, 34.679583568015914], [-77.50643685504544, 34.68056676627705], [-77.5065266410498, 34.682277771558745], [-77.50660600659239, 34.68251145947538], [-77.50682668357177, 34.683669395059006], [-77.50741185937798, 34.6848397543995], [-77.50747304958894, 34.68496214194606], [-77.50750081426469, 34.68507749507895], [-77.50779007332892, 34.685490753802576], [-77.51071404036165, 34.688468293344044], [-77.51214100002161, 34.68953853710086], [-77.51331069638823, 34.6902580054073], [-77.51454242484887, 34.69110686430069], [-77.51512957074331, 34.69163980825368], [-77.51586267504729, 34.691883016975886], [-77.51691094981402, 34.691870369468816], [-77.51806774843773, 34.69224611169054], [-77.52000231043752, 34.69174947901162], [-77.52519428120264, 34.69104372401583], [-77.52610622434021, 34.6908556487002], [-77.52673997545237, 34.69082846011471], [-77.5282420639731, 34.69084936202683], [-77.53027368546992, 34.69069937615816], [-77.53173822266145, 34.69084934986216], [-77.53246959971966, 34.68964156447993], [-77.5335657114758, 34.689010071587944], [-77.5337985596612, 34.68820790472248], [-77.53255984515597, 34.68370621832876]], [[-77.51084698332753, 34.6047055621196], [-77.50811458818137, 34.603794760638], [-77.50472703730875, 34.60301887504524], [-77.50153025032975, 34.60140798373421], [-77.49818197277503, 34.60131357051064], [-77.49318112512874, 34.60163476177348], [-77.48774938623576, 34.60195942062438], [-77.48562707753219, 34.60204171559722], [-77.48486954468883, 34.60199820399231], [-77.48476002989989, 34.602616965467], [-77.48472661127387, 34.60282261999269], [-77.4843110539385, 34.603652166737675], [-77.48338506797684, 34.6070906638617], [-77.48237712605142, 34.608246638283056], [-77.48206733350948, 34.60949057286257], [-77.48209914441811, 34.6115955437795], [-77.48209303861313, 34.61368442831967], [-77.48228395254958, 34.615337405136145], [-77.48287921981326, 34.616822649093464], [-77.48231599265954, 34.620729910905574], [-77.4825865602439, 34.62115970017173], [-77.49076434110611, 34.62348957129119], [-77.49197229149425, 34.6235526586107], [-77.49710624444191, 34.62179459045201], [-77.49843085084534, 34.620767750967275], [-77.50536022550966, 34.619724165644854], [-77.50598071803374, 34.61762251743791], [-77.50809198342415, 34.61572459999236], [-77.51018525076907, 34.61590172271332], [-77.51173622004615, 34.61699750591345], [-77.51062037351747, 34.619062390139106], [-77.51508883563247, 34.62015281963501], [-77.51448596866149, 34.61795790403627], [-77.5129812426275, 34.612478671939456], [-77.51147673626652, 34.60699940821949]], [[-77.49756785046168, 34.55630505108512], [-77.4971010356794, 34.55738907238251], [-77.49731950895463, 34.557863644483135], [-77.497140126317, 34.55867149587176], [-77.49685120655434, 34.563906342179834], [-77.49674553604339, 34.5664742268017], [-77.49675743929308, 34.56688765331684], [-77.49702294096492, 34.56727016164034], [-77.49761961764456, 34.5695956839894], [-77.49816077437542, 34.57206081722499], [-77.49853465809417, 34.57228874681566], [-77.49817087529688, 34.57262569313083], [-77.49814521576656, 34.57374101313324], [-77.49804337301502, 34.57538360129014], [-77.49871930042386, 34.57583420864361], [-77.50062210953601, 34.576366734947406], [-77.50127399550087, 34.57618757950389], [-77.50258135155855, 34.57458628607995], [-77.50245430668883, 34.57412316246815], [-77.50170279384484, 34.57138342403272], [-77.50095133576704, 34.568643677713425], [-77.5001999324453, 34.56590392351171], [-77.4994485838695, 34.56316416142903], [-77.49794605091523, 34.55768461362666]], [[-77.4710261063601, 34.65649125418509], [-77.47118809017607, 34.65732700167388], [-77.4722206355473, 34.6595692942238], [-77.47279133158528, 34.66165024615086], [-77.47615531991869, 34.66226036697628], [-77.48248816069284, 34.66442958686508], [-77.48558414095379, 34.665946094955565], [-77.48694194725354, 34.666301976174836], [-77.48801116555958, 34.66688141581638], [-77.49016306586722, 34.66729400167928], [-77.49191674415457, 34.667537107377065], [-77.49281401229656, 34.66735897261799], [-77.49401032773497, 34.66597664497946], [-77.49470631395273, 34.66554273697841], [-77.50130120867732, 34.66337796082531], [-77.50171224333361, 34.66336989735078], [-77.5058409904134, 34.664746181182124], [-77.50582615918469, 34.665162830218804], [-77.50876396143077, 34.665496852688435], [-77.50710097595126, 34.66360310198746], [-77.50407527964327, 34.66229575956548], [-77.50793477680126, 34.66025364698193], [-77.50527649217176, 34.65604366101016], [-77.50353510871392, 34.653324126511436], [-77.49912698518912, 34.65189033782569], [-77.49689487522689, 34.646808081556806], [-77.49677790572987, 34.646652367544135], [-77.49673039398645, 34.64643351845512], [-77.49673042627032, 34.64522787450337], [-77.49737216037256, 34.64057369936391], [-77.49982551959694, 34.63760659383816], [-77.50086006997802, 34.63463616935051], [-77.50139539640054, 34.63351585249612], [-77.50159861122087, 34.633271983106326], [-77.50037271255741, 34.63157248159256], [-77.49911504977462, 34.63121258281849], [-77.49828595009468, 34.63046604390982], [-77.49422269528617, 34.62965514962872], [-77.49346203275337, 34.62904915744731], [-77.49197025269177, 34.627884511980085], [-77.489842381624, 34.62615871624783], [-77.48885292180316, 34.625279482037584], [-77.48199800865703, 34.622202799753296], [-77.4817345187119, 34.626331358602776], [-77.47966337514902, 34.62790270250906], [-77.47992672916276, 34.63065396027399], [-77.4759019441552, 34.630653916245514], [-77.47261378861919, 34.63259784731558], [-77.47214214215681, 34.63288742436659], [-77.47216185410436, 34.63299777958605], [-77.47195450922601, 34.633404141610136], [-77.47077334996786, 34.63634818182487], [-77.47033574585326, 34.63721057283203], [-77.46951385389312, 34.638043932800755], [-77.46786967859224, 34.63839944895577], [-77.46164655082194, 34.6389517062976], [-77.4614051543834, 34.63898729173115], [-77.46135776835828, 34.638987291668855], [-77.46129190767371, 34.639003500695424], [-77.45731746065356, 34.63959673335489], [-77.45663115839918, 34.640382042740406], [-77.45567661312676, 34.64199490764579], [-77.45565386231455, 34.64236050434701], [-77.45565381129896, 34.64361485663039], [-77.4556516304101, 34.64602102491679], [-77.45721258963734, 34.646124452910264], [-77.45607068990358, 34.64708766996913], [-77.45525380432045, 34.647420608637724], [-77.4537413701927, 34.64835601480506], [-77.44846935528935, 34.64861725390252], [-77.4473761131465, 34.648820701945276], [-77.4472377302184, 34.648878281059005], [-77.44689072199179, 34.64883248081917], [-77.444628197078, 34.64852161204576], [-77.44398769212714, 34.64841774809561], [-77.44285976453419, 34.64825659287221], [-77.44173754406354, 34.64839689932469], [-77.44040488696183, 34.649041516510096], [-77.43944771704587, 34.65116211363129], [-77.43943555600801, 34.65118011437467], [-77.43943354639148, 34.65119268489944], [-77.43942364440842, 34.65122437375168], [-77.43915531195591, 34.65422593762923], [-77.43899831186901, 34.65598248906784], [-77.43774749602771, 34.65758101184929], [-77.43792881692904, 34.66036471223484], [-77.4379210021259, 34.66048561251666], [-77.43806340622163, 34.66061085818497], [-77.44043712578598, 34.66272258459495], [-77.44031956777957, 34.66475781939599], [-77.44249445745095, 34.665090380246355], [-77.44019500076521, 34.66631171421505], [-77.44040065944102, 34.668315870772695], [-77.44289955077072, 34.66725752174168], [-77.44331397510602, 34.665278364290955], [-77.44339065134623, 34.66483500200182], [-77.44393405576561, 34.662664040097084], [-77.4462943999255, 34.661053433534164], [-77.44635378126023, 34.66101254132618], [-77.44637780951493, 34.66101285532692], [-77.44644059958006, 34.66101176481504], [-77.44940218424051, 34.66097451886603], [-77.4505330081656, 34.66090619006458], [-77.45149589244544, 34.66035309772797], [-77.45180946112825, 34.659481418065226], [-77.4526028366081, 34.65826263212821], [-77.45246019985046, 34.6572373629061], [-77.45217329522325, 34.65642361170445], [-77.45175772374418, 34.655489591996606], [-77.45630142337879, 34.65254245796234], [-77.45659992693783, 34.65233282417143], [-77.45730266277295, 34.65247337919839], [-77.46099841656508, 34.65302781019446], [-77.46339717121553, 34.651184527268676], [-77.46451578965932, 34.650508539094204], [-77.46487946533394, 34.65016736379994], [-77.46777776336955, 34.64948722164287], [-77.46848190181065, 34.65142657424157], [-77.46822908680025, 34.651845184688995], [-77.4687026039311, 34.65201493806064], [-77.47009080948087, 34.65426831445872]], [[-77.44062476013211, 34.67153115214343], [-77.44061278909038, 34.67171382309793], [-77.4408956914854, 34.67398967834613], [-77.4411634752378, 34.67433165513641], [-77.44125439387963, 34.67458714482515], [-77.44136344648606, 34.67501318045097], [-77.44183926035345, 34.67525849310828], [-77.4424133201348, 34.6747140409744], [-77.4423468982572, 34.67449713068943], [-77.44253893627388, 34.67393974206945], [-77.44289984800061, 34.67257693763847], [-77.44236336098133, 34.67202526326393], [-77.4415271492131, 34.67127402469772], [-77.4416949983379, 34.67039167209757], [-77.44040064454086, 34.670006950002495], [-77.44045747497255, 34.671358797283276]], [[-77.47387497094358, 34.638604767442295], [-77.47509219644772, 34.63887317808686], [-77.47811743628242, 34.63873252194144], [-77.47958902706723, 34.63870199327636], [-77.47981504017741, 34.640523746677076], [-77.48291938637104, 34.644699458778554], [-77.48340766533661, 34.64673355134391], [-77.48286069724662, 34.64933709935957], [-77.48407825740524, 34.65027750032348], [-77.48587300289664, 34.651664315039575], [-77.48627853744148, 34.652475509743674], [-77.48640901155832, 34.65273644919896], [-77.48531612967209, 34.655832923424214], [-77.48348105487064, 34.658283133728716], [-77.48037862981505, 34.6572418781502], [-77.48019930222885, 34.65259191102804], [-77.48014469183416, 34.651399989662], [-77.47957959802001, 34.650350296945426], [-77.47622670336573, 34.646609279659536], [-77.47358151440531, 34.6460491808994], [-77.47102903627116, 34.64357015811423], [-77.4702566129484, 34.642797703300346], [-77.46950849894323, 34.642617497611994], [-77.46994226461835, 34.642027689331], [-77.47056893218698, 34.64189218647778], [-77.47307499251767, 34.63935115862978]], [[-77.52708861369752, 34.68231464753845], [-77.52741128525733, 34.68268367915494], [-77.52844473987021, 34.68474759326109], [-77.52744853063126, 34.6851665634035], [-77.5257637329165, 34.68628908107598], [-77.52486072226256, 34.68632782117741], [-77.52434673517851, 34.68643382371098], [-77.51714220618523, 34.688234952638524], [-77.51697615803525, 34.688276463901516], [-77.51688046634852, 34.68824654518159], [-77.51682397434094, 34.68820129739584], [-77.5166012900976, 34.68804623611407], [-77.51370944070605, 34.6861360523952], [-77.51312080510898, 34.68552405386636], [-77.51177964671356, 34.684688691413214], [-77.51097739277606, 34.683961574352104], [-77.51025333012039, 34.68335451855087], [-77.50997263736926, 34.68205374560411], [-77.51025051184052, 34.681214527368155], [-77.51028635508897, 34.68088922291955], [-77.51264346174793, 34.67878623631036], [-77.51407357699112, 34.67771879812607], [-77.51819154749552, 34.67869414111107], [-77.51861069334802, 34.67880726558452], [-77.52319174620753, 34.68025962637352], [-77.5233486455424, 34.68033224376834], [-77.52352752100596, 34.680377246504456], [-77.52424386870929, 34.680805636685704]], [[-77.49158257119456, 34.617387422084285], [-77.49103309023114, 34.61738274720877], [-77.49061808260589, 34.61705036052045], [-77.49259554458425, 34.61547072361297]]]]}, "type": "Feature", "id": "demo18", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5254892617493, 34.65799943331637], [-77.52455273707321, 34.65688996630065], [-77.52267756751621, 34.6579690856769], [-77.52308367565949, 34.65868813173765], [-77.52548534999359, 34.65913487468377], [-77.5258141636274, 34.65918111230192], [-77.52577842419619, 34.65905113559237]], [[-77.47307499251767, 34.63935115862978], [-77.47056893218698, 34.641892186477776], [-77.46994226461835, 34.642027689331], [-77.46950849894323, 34.642617497611994], [-77.4702566129484, 34.642797703300346], [-77.47102903627116, 34.64357015811423], [-77.47358151440531, 34.6460491808994], [-77.47622670336573, 34.646609279659536], [-77.47957959802001, 34.650350296945426], [-77.48014469183416, 34.651399989662], [-77.48019930222885, 34.65259191102804], [-77.48037862981505, 34.6572418781502], [-77.48348105487064, 34.658283133728716], [-77.48531612967209, 34.655832923424214], [-77.48640901155832, 34.65273644919896], [-77.48627853744148, 34.652475509743674], [-77.48587300289664, 34.651664315039575], [-77.48407825740526, 34.65027750032348], [-77.48286069724662, 34.64933709935957], [-77.48340766533661, 34.64673355134391], [-77.48291938637104, 34.644699458778554], [-77.47981504017743, 34.640523746677076], [-77.47958902706723, 34.63870199327636], [-77.47811743628242, 34.63873252194144], [-77.47509219644772, 34.63887317808686], [-77.47387497094358, 34.638604767442295]], [[-77.52424386870929, 34.680805636685704], [-77.52352752100596, 34.680377246504456], [-77.52334864554241, 34.68033224376834], [-77.52319174620753, 34.68025962637352], [-77.51861069334801, 34.67880726558452], [-77.51819154749553, 34.67869414111107], [-77.51407357699112, 34.677718798126065], [-77.51264346174793, 34.67878623631036], [-77.51028635508897, 34.680889222919554], [-77.51025051184052, 34.68121452736815], [-77.50997263736926, 34.68205374560411], [-77.51025333012039, 34.68335451855087], [-77.51097739277604, 34.683961574352104], [-77.51177964671356, 34.684688691413214], [-77.51312080510898, 34.68552405386636], [-77.51370944070604, 34.68613605239519], [-77.5166012900976, 34.68804623611407], [-77.51682397434094, 34.68820129739584], [-77.51688046634852, 34.68824654518159], [-77.51697615803525, 34.688276463901516], [-77.51714220618523, 34.688234952638524], [-77.52434673517851, 34.68643382371098], [-77.52486072226256, 34.6863278211774], [-77.5257637329165, 34.68628908107598], [-77.52744853063126, 34.6851665634035], [-77.52844473987021, 34.68474759326109], [-77.52741128525733, 34.68268367915494], [-77.52708861369752, 34.68231464753845]], [[-77.49259554458425, 34.61547072361297], [-77.49061808260589, 34.61705036052045], [-77.49103309023114, 34.61738274720877], [-77.49158257119456, 34.617387422084285]], [[-77.51776780855306, 34.68349976238658]]]]}, "type": "Feature", "id": "demo19", "properties": {}}]} \ No newline at end of file diff --git a/docs/source/_static/124.embed-bundle.js b/docs/source/_static/124.embed-bundle.js new file mode 100644 index 0000000..d545d3e --- /dev/null +++ b/docs/source/_static/124.embed-bundle.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[124],{2124:(e,r,s)=>{s.r(r),s.d(r,{default:()=>l});var a=s(3075),n=s(708);class l extends n.A{decodeBlock(e){return(0,a.UD)(new Uint8Array(e)).buffer}}}}]); +//# sourceMappingURL=124.embed-bundle.js.map \ No newline at end of file diff --git a/docs/source/_static/124.embed-bundle.js.map b/docs/source/_static/124.embed-bundle.js.map new file mode 100644 index 0000000..14f6645 --- /dev/null +++ b/docs/source/_static/124.embed-bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"124.embed-bundle.js","mappings":"kKAGe,MAAMA,UAAuB,IAC1C,WAAAC,CAAYC,GACV,OAAO,QAAQ,IAAIC,WAAWD,IAASA,MACzC,E","sources":["webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/deflate.js"],"sourcesContent":["import { inflate } from 'pako';\nimport BaseDecoder from './basedecoder.js';\n\nexport default class DeflateDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n return inflate(new Uint8Array(buffer)).buffer;\n }\n}\n"],"names":["DeflateDecoder","decodeBlock","buffer","Uint8Array"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/source/_static/145.embed-bundle.js b/docs/source/_static/145.embed-bundle.js new file mode 100644 index 0000000..9ded4a7 --- /dev/null +++ b/docs/source/_static/145.embed-bundle.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[145],{145:(A,e,t)=>{t.r(e),t.d(e,{create:()=>r});const i=Worker;function r(){const A='function A(A,e,t,i,r,I,g){try{var n=A[I](g),a=n.value}catch(A){return void t(A)}n.done?e(a):Promise.resolve(a).then(i,r)}function e(e){return function(){var t=this,i=arguments;return new Promise((function(r,I){var g=e.apply(t,i);function n(e){A(g,r,I,n,a,"next",e)}function a(e){A(g,r,I,n,a,"throw",e)}n(void 0)}))}}function t(A){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(A){return typeof A}:function(A){return A&&"function"==typeof Symbol&&A.constructor===Symbol&&A!==Symbol.prototype?"symbol":typeof A},t(A)}var i={exports:{}};!function(A){var e=function(A){var e,i=Object.prototype,r=i.hasOwnProperty,I="function"==typeof Symbol?Symbol:{},g=I.iterator||"@@iterator",n=I.asyncIterator||"@@asyncIterator",a=I.toStringTag||"@@toStringTag";function o(A,e,t){return Object.defineProperty(A,e,{value:t,enumerable:!0,configurable:!0,writable:!0}),A[e]}try{o({},"")}catch(A){o=function(A,e,t){return A[e]=t}}function B(A,e,t,i){var r=e&&e.prototype instanceof h?e:h,I=Object.create(r.prototype),g=new S(i||[]);return I._invoke=function(A,e,t){var i=Q;return function(r,I){if(i===s)throw new Error("Generator is already running");if(i===f){if("throw"===r)throw I;return R()}for(t.method=r,t.arg=I;;){var g=t.delegate;if(g){var n=m(g,t);if(n){if(n===c)continue;return n}}if("next"===t.method)t.sent=t._sent=t.arg;else if("throw"===t.method){if(i===Q)throw i=f,t.arg;t.dispatchException(t.arg)}else"return"===t.method&&t.abrupt("return",t.arg);i=s;var a=C(A,e,t);if("normal"===a.type){if(i=t.done?f:E,a.arg===c)continue;return{value:a.arg,done:t.done}}"throw"===a.type&&(i=f,t.method="throw",t.arg=a.arg)}}}(A,t,g),I}function C(A,e,t){try{return{type:"normal",arg:A.call(e,t)}}catch(A){return{type:"throw",arg:A}}}A.wrap=B;var Q="suspendedStart",E="suspendedYield",s="executing",f="completed",c={};function h(){}function l(){}function u(){}var w={};o(w,g,(function(){return this}));var d=Object.getPrototypeOf,D=d&&d(d(v([])));D&&D!==i&&r.call(D,g)&&(w=D);var y=u.prototype=h.prototype=Object.create(w);function k(A){["next","throw","return"].forEach((function(e){o(A,e,(function(A){return this._invoke(e,A)}))}))}function p(A,e){function i(I,g,n,a){var o=C(A[I],A,g);if("throw"!==o.type){var B=o.arg,Q=B.value;return Q&&"object"===t(Q)&&r.call(Q,"__await")?e.resolve(Q.__await).then((function(A){i("next",A,n,a)}),(function(A){i("throw",A,n,a)})):e.resolve(Q).then((function(A){B.value=A,n(B)}),(function(A){return i("throw",A,n,a)}))}a(o.arg)}var I;this._invoke=function(A,t){function r(){return new e((function(e,r){i(A,t,e,r)}))}return I=I?I.then(r,r):r()}}function m(A,t){var i=A.iterator[t.method];if(i===e){if(t.delegate=null,"throw"===t.method){if(A.iterator.return&&(t.method="return",t.arg=e,m(A,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a \'throw\' method")}return c}var r=C(i,A.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var I=r.arg;return I?I.done?(t[A.resultName]=I.value,t.next=A.nextLoc,"return"!==t.method&&(t.method="next",t.arg=e),t.delegate=null,c):I:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function G(A){var e={tryLoc:A[0]};1 in A&&(e.catchLoc=A[1]),2 in A&&(e.finallyLoc=A[2],e.afterLoc=A[3]),this.tryEntries.push(e)}function F(A){var e=A.completion||{};e.type="normal",delete e.arg,A.completion=e}function S(A){this.tryEntries=[{tryLoc:"root"}],A.forEach(G,this),this.reset(!0)}function v(A){if(A){var t=A[g];if(t)return t.call(A);if("function"==typeof A.next)return A;if(!isNaN(A.length)){var i=-1,I=function t(){for(;++i=0;--I){var g=this.tryEntries[I],n=g.completion;if("root"===g.tryLoc)return i("end");if(g.tryLoc<=this.prev){var a=r.call(g,"catchLoc"),o=r.call(g,"finallyLoc");if(a&&o){if(this.prev=0;--t){var i=this.tryEntries[t];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var t=this.tryEntries[e];if(t.finallyLoc===A)return this.complete(t.completion,t.afterLoc),F(t),c}},catch:function(A){for(var e=this.tryEntries.length-1;e>=0;--e){var t=this.tryEntries[e];if(t.tryLoc===A){var i=t.completion;if("throw"===i.type){var r=i.arg;F(t)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(A,t,i){return this.delegate={iterator:v(A),resultName:t,nextLoc:i},"next"===this.method&&(this.arg=e),c}},A}(A.exports);try{regeneratorRuntime=e}catch(A){"object"===("undefined"==typeof globalThis?"undefined":t(globalThis))?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}(i);var r=i.exports,I=new Map;function g(A,e){Array.isArray(A)||(A=[A]),A.forEach((function(A){return I.set(A,e)}))}function n(A){return a.apply(this,arguments)}function a(){return(a=e(r.mark((function A(e){var t,i;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:if(t=I.get(e.Compression)){A.next=3;break}throw new Error("Unknown compression method identifier: ".concat(e.Compression));case 3:return A.next=5,t();case 5:return i=A.sent,A.abrupt("return",new i(e));case 7:case"end":return A.stop()}}),A)})))).apply(this,arguments)}g([void 0,1],(function(){return Promise.resolve().then((function(){return y})).then((function(A){return A.default}))})),g(5,(function(){return Promise.resolve().then((function(){return F})).then((function(A){return A.default}))})),g(6,(function(){throw new Error("old style JPEG compression is not supported.")})),g(7,(function(){return Promise.resolve().then((function(){return N})).then((function(A){return A.default}))})),g([8,32946],(function(){return Promise.resolve().then((function(){return OA})).then((function(A){return A.default}))})),g(32773,(function(){return Promise.resolve().then((function(){return _A})).then((function(A){return A.default}))})),g(34887,(function(){return Promise.resolve().then((function(){return le})).then(function(){var A=e(r.mark((function A(e){return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return A.next=2,e.zstd.init();case 2:return A.abrupt("return",e);case 3:case"end":return A.stop()}}),A)})));return function(e){return A.apply(this,arguments)}}()).then((function(A){return A.default}))})),g(50001,(function(){return Promise.resolve().then((function(){return de})).then((function(A){return A.default}))}));var o=globalThis;function B(A,e){if(!(A instanceof e))throw new TypeError("Cannot call a class as a function")}function C(A,e){for(var t=0;t0;r--)A[i+e]+=A[i],i++;t-=e}while(t>0)}function l(A,e,t){for(var i=0,r=A.length,I=r/t;r>e;){for(var g=e;g>0;--g)A[i+e]+=A[i],++i;r-=e}for(var n=A.slice(),a=0;a=A.byteLength);++o){var B=void 0;if(2===e){switch(r[0]){case 8:B=new Uint8Array(A,o*a*t*n,a*t*n);break;case 16:B=new Uint16Array(A,o*a*t*n,a*t*n/2);break;case 32:B=new Uint32Array(A,o*a*t*n,a*t*n/4);break;default:throw new Error("Predictor 2 not allowed with ".concat(r[0]," bits per sample."))}h(B,a)}else 3===e&&l(B=new Uint8Array(A,o*a*t*n,a*t*n),a,n)}return A}o.addEventListener("message",function(){var A=e(r.mark((function A(e){var t,i,I,g,a,B;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return t=e.data,i=t.id,I=t.fileDirectory,g=t.buffer,A.next=3,n(I);case 3:return a=A.sent,A.next=6,a.decode(I,g);case 6:B=A.sent,o.postMessage({decoded:B,id:i},[B]);case 8:case"end":return A.stop()}}),A)})));return function(e){return A.apply(this,arguments)}}());var w=function(){function A(){B(this,A)}var t;return Q(A,[{key:"decode",value:(t=e(r.mark((function A(e,t){var i,I,g,n,a;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return A.next=2,this.decodeBlock(t);case 2:if(i=A.sent,1===(I=e.Predictor||1)){A.next=9;break}return g=!e.StripOffsets,n=g?e.TileWidth:e.ImageWidth,a=g?e.TileLength:e.RowsPerStrip||e.ImageLength,A.abrupt("return",u(i,I,n,a,e.BitsPerSample,e.PlanarConfiguration));case 9:return A.abrupt("return",i);case 10:case"end":return A.stop()}}),A,this)}))),function(A,e){return t.apply(this,arguments)})}]),A}();function d(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var D=function(A){s(t,w);var e=d(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:"decodeBlock",value:function(A){return A}}]),t}(),y=Object.freeze({__proto__:null,default:D});function k(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}function p(A,e){for(var t=e.length-1;t>=0;t--)A.push(e[t]);return A}function m(A){for(var e=new Uint16Array(4093),t=new Uint8Array(4093),i=0;i<=257;i++)e[i]=4096,t[i]=i;var r=258,I=9,g=0;function n(){r=258,I=9}function a(A){var e=function(A,e,t){var i=e%8,r=Math.floor(e/8),I=8-i,g=e+t-8*(r+1),n=8*(r+2)-(e+t),a=8*(r+2)-e;if(n=Math.max(0,n),r>=A.length)return console.warn("ran off the end of the buffer before finding EOI_CODE (end on input code)"),257;var o=A[r]&Math.pow(2,8-i)-1,B=o<<=t-I;if(r+1>>n;B+=C<<=Math.max(0,t-a)}if(g>8&&r+2>>Q}return B}(A,g,I);return g+=I,e}function o(A,i){return t[r]=i,e[r]=A,++r-1}function B(A){for(var i=[],r=A;4096!==r;r=e[r])i.push(t[r]);return i}var C=[];n();for(var Q,E=new Uint8Array(A),s=a(E);257!==s;){if(256===s){for(n(),s=a(E);256===s;)s=a(E);if(257===s)break;if(s>256)throw new Error("corrupted code at scanline ".concat(s));p(C,B(s)),Q=s}else if(s=Math.pow(2,I)&&(12===I?Q=void 0:I++),s=a(E)}return new Uint8Array(C)}var G=function(A){s(t,w);var e=k(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:"decodeBlock",value:function(A){return m(A).buffer}}]),t}(),F=Object.freeze({__proto__:null,default:G});function S(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var v=new Int32Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]);function R(A,e){for(var t=0,i=[],r=16;r>0&&!A[r-1];)--r;i.push({children:[],index:0});for(var I,g=i[0],n=0;n0;)g=i.pop();for(g.index++,i.push(g);i.length<=n;)i.push(I={children:[],index:0}),g.children[g.index]=I.children,g=I;t++}n+10)return f--,s>>f&1;if(255===(s=A[E++])){var e=A[E++];if(e)throw new Error("unexpected marker: ".concat((s<<8|e).toString(16)))}return f=7,s>>>7}function h(A){for(var e,i=A;null!==(e=c());){if("number"==typeof(i=i[e]))return i;if("object"!==t(i))throw new Error("invalid huffman sequence")}return null}function l(A){for(var e=A,t=0;e>0;){var i=c();if(null===i)return;t=t<<1|i,--e}return t}function u(A){var e=l(A);return e>=1<0)w--;else for(var t=g,i=n;t<=i;){var r=h(A.huffmanTableAC),I=15&r,a=r>>4;if(0===I){if(a<15){w=l(a)+(1<>4,0===C)r<15?(w=l(r)+(1<>4;if(0===g){if(n<15)break;r+=16}else e[v[r+=n]]=u(g),r++}};var L,b,M=0;b=1===U?r[0].blocksPerLine*r[0].blocksPerColumn:B*i.mcusPerColumn;for(var N=I||b;M=65488&&L<=65495))break;E+=2}return E-Q}function L(A,e){var t=[],i=e.blocksPerLine,r=e.blocksPerColumn,I=i<<3,g=new Int32Array(64),n=new Uint8Array(64);function a(A,t,i){var r,I,g,n,a,o,B,C,Q,E,s=e.quantizationTable,f=i;for(E=0;E<64;E++)f[E]=A[E]*s[E];for(E=0;E<8;++E){var c=8*E;0!==f[1+c]||0!==f[2+c]||0!==f[3+c]||0!==f[4+c]||0!==f[5+c]||0!==f[6+c]||0!==f[7+c]?(r=5793*f[0+c]+128>>8,I=5793*f[4+c]+128>>8,g=f[2+c],n=f[6+c],a=2896*(f[1+c]-f[7+c])+128>>8,C=2896*(f[1+c]+f[7+c])+128>>8,o=f[3+c]<<4,Q=r-I+1>>1,r=r+I+1>>1,I=Q,Q=3784*g+1567*n+128>>8,g=1567*g-3784*n+128>>8,n=Q,Q=a-(B=f[5+c]<<4)+1>>1,a=a+B+1>>1,B=Q,Q=C+o+1>>1,o=C-o+1>>1,C=Q,Q=r-n+1>>1,r=r+n+1>>1,n=Q,Q=I-g+1>>1,I=I+g+1>>1,g=Q,Q=2276*a+3406*C+2048>>12,a=3406*a-2276*C+2048>>12,C=Q,Q=799*o+4017*B+2048>>12,o=4017*o-799*B+2048>>12,B=Q,f[0+c]=r+C,f[7+c]=r-C,f[1+c]=I+B,f[6+c]=I-B,f[2+c]=g+o,f[5+c]=g-o,f[3+c]=n+a,f[4+c]=n-a):(Q=5793*f[0+c]+512>>10,f[0+c]=Q,f[1+c]=Q,f[2+c]=Q,f[3+c]=Q,f[4+c]=Q,f[5+c]=Q,f[6+c]=Q,f[7+c]=Q)}for(E=0;E<8;++E){var h=E;0!==f[8+h]||0!==f[16+h]||0!==f[24+h]||0!==f[32+h]||0!==f[40+h]||0!==f[48+h]||0!==f[56+h]?(r=5793*f[0+h]+2048>>12,I=5793*f[32+h]+2048>>12,g=f[16+h],n=f[48+h],a=2896*(f[8+h]-f[56+h])+2048>>12,C=2896*(f[8+h]+f[56+h])+2048>>12,o=f[24+h],Q=r-I+1>>1,r=r+I+1>>1,I=Q,Q=3784*g+1567*n+2048>>12,g=1567*g-3784*n+2048>>12,n=Q,Q=a-(B=f[40+h])+1>>1,a=a+B+1>>1,B=Q,Q=C+o+1>>1,o=C-o+1>>1,C=Q,Q=r-n+1>>1,r=r+n+1>>1,n=Q,Q=I-g+1>>1,I=I+g+1>>1,g=Q,Q=2276*a+3406*C+2048>>12,a=3406*a-2276*C+2048>>12,C=Q,Q=799*o+4017*B+2048>>12,o=4017*o-799*B+2048>>12,B=Q,f[0+h]=r+C,f[56+h]=r-C,f[8+h]=I+B,f[48+h]=I-B,f[16+h]=g+o,f[40+h]=g-o,f[24+h]=n+a,f[32+h]=n-a):(Q=5793*i[E+0]+8192>>14,f[0+h]=Q,f[8+h]=Q,f[16+h]=Q,f[24+h]=Q,f[32+h]=Q,f[40+h]=Q,f[48+h]=Q,f[56+h]=Q)}for(E=0;E<64;++E){var l=128+(f[E]+8>>4);t[E]=l<0?0:l>255?255:l}}for(var o=0;o>4==0)for(var C=0;C<64;C++){B[v[C]]=A[e++]}else{if(o>>4!=1)throw new Error("DQT: invalid table spec");for(var Q=0;Q<64;Q++){B[v[Q]]=t()}}this.quantizationTables[15&o]=B}break;case 65472:case 65473:case 65474:t();for(var E={extended:65473===g,progressive:65474===g,precision:A[e++],scanLines:t(),samplesPerLine:t(),components:{},componentsOrder:[]},s=A[e++],f=void 0,c=0;c>4,l=15&A[e+1],u=A[e+2];E.componentsOrder.push(f),E.components[f]={h:h,v:l,quantizationIdx:u},e+=3}i(E),this.frames.push(E);break;case 65476:for(var w=t(),d=2;d>4==0?this.huffmanTablesDC[15&D]=R(y,m):this.huffmanTablesAC[15&D]=R(y,m)}break;case 65501:t(),this.resetInterval=t();break;case 65498:t();for(var F=A[e++],S=[],L=this.frames[0],b=0;b>4],M.huffmanTableAC=this.huffmanTablesAC[15&N],S.push(M)}var x=A[e++],J=A[e++],q=A[e++],Y=U(A,e,L,S,this.resetInterval,x,J,q>>4,15&q);e+=Y;break;case 65535:255!==A[e]&&e--;break;default:if(255===A[e-3]&&A[e-2]>=192&&A[e-2]<=254){e-=3;break}throw new Error("unknown JPEG marker ".concat(g.toString(16)))}g=t()}}},{key:"getResult",value:function(){var A=this.frames;if(0===this.frames.length)throw new Error("no frames were decoded");this.frames.length>1&&console.warn("more than one frame is not supported");for(var e=0;e=0;)A[e]=0}x(new Array(576)),x(new Array(60)),x(new Array(512)),x(new Array(256)),x(new Array(29)),x(new Array(30));var J=function(A,e,t,i){for(var r=65535&A|0,I=A>>>16&65535|0,g=0;0!==t;){t-=g=t>2e3?2e3:t;do{I=I+(r=r+e[i++]|0)|0}while(--g);r%=65521,I%=65521}return r|I<<16|0},q=new Uint32Array(function(){for(var A,e=[],t=0;t<256;t++){A=t;for(var i=0;i<8;i++)A=1&A?3988292384^A>>>1:A>>>1;e[t]=A}return e}()),Y=function(A,e,t,i){var r=q,I=i+t;A^=-1;for(var g=i;g>>8^r[255&(A^e[g])];return-1^A},K={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},H={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8},O=function(A,e){return Object.prototype.hasOwnProperty.call(A,e)},P=function(A){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var i=e.shift();if(i){if("object"!==t(i))throw new TypeError(i+"must be non-object");for(var r in i)O(i,r)&&(A[r]=i[r])}}return A},T=function(A){for(var e=0,t=0,i=A.length;t=252?6:X>=248?5:X>=240?4:X>=224?3:X>=192?2:1;_[254]=_[254]=1;var Z=function(A){if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(A);var e,t,i,r,I,g=A.length,n=0;for(r=0;r>>6,e[I++]=128|63&t):t<65536?(e[I++]=224|t>>>12,e[I++]=128|t>>>6&63,e[I++]=128|63&t):(e[I++]=240|t>>>18,e[I++]=128|t>>>12&63,e[I++]=128|t>>>6&63,e[I++]=128|63&t);return e},j=function(A,e){var t,i,r=e||A.length;if("function"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(A.subarray(0,e));var I=new Array(2*r);for(i=0,t=0;t4)I[i++]=65533,t+=n-1;else{for(g&=2===n?31:3===n?15:7;n>1&&t1?I[i++]=65533:g<65536?I[i++]=g:(g-=65536,I[i++]=55296|g>>10&1023,I[i++]=56320|1023&g)}}}return function(A,e){if(e<65534&&A.subarray&&V)return String.fromCharCode.apply(null,A.length===e?A:A.subarray(0,e));for(var t="",i=0;iA.length&&(e=A.length);for(var t=e-1;t>=0&&128==(192&A[t]);)t--;return t<0||0===t?e:t+_[A[t]]>e?t:e};var z=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0},$=function(A,e){var t,i,r,I,g,n,a,o,B,C,Q,E,s,f,c,h,l,u,w,d,D,y,k,p,m=A.state;t=A.next_in,k=A.input,i=t+(A.avail_in-5),r=A.next_out,p=A.output,I=r-(e-A.avail_out),g=r+(A.avail_out-257),n=m.dmax,a=m.wsize,o=m.whave,B=m.wnext,C=m.window,Q=m.hold,E=m.bits,s=m.lencode,f=m.distcode,c=(1<>>=u=l>>>24,E-=u,0===(u=l>>>16&255))p[r++]=65535&l;else{if(!(16&u)){if(0==(64&u)){l=s[(65535&l)+(Q&(1<>>=u,E-=u),E<15&&(Q+=k[t++]<>>=u=l>>>24,E-=u,!(16&(u=l>>>16&255))){if(0==(64&u)){l=f[(65535&l)+(Q&(1<n){A.msg="invalid distance too far back",m.mode=30;break A}if(Q>>>=u,E-=u,d>(u=r-I)){if((u=d-u)>o&&m.sane){A.msg="invalid distance too far back",m.mode=30;break A}if(D=0,y=C,0===B){if(D+=a-u,u2;)p[r++]=y[D++],p[r++]=y[D++],p[r++]=y[D++],w-=3;w&&(p[r++]=y[D++],w>1&&(p[r++]=y[D++]))}else{D=r-d;do{p[r++]=p[D++],p[r++]=p[D++],p[r++]=p[D++],w-=3}while(w>2);w&&(p[r++]=p[D++],w>1&&(p[r++]=p[D++]))}break}}break}}while(t>3,Q&=(1<<(E-=w<<3))-1,A.next_in=t,A.next_out=r,A.avail_in=t=1&&0===v[d];d--);if(D>d&&(D=d),0===d)return r[I++]=20971520,r[I++]=20971520,n.bits=1,0;for(w=1;w0&&(0===A||1!==d))return-1;for(R[1]=0,l=1;l<15;l++)R[l+1]=R[l]+v[l];for(u=0;u852||2===A&&m>592)return 1;for(;;){s=l-k,g[u]E?(f=U[L+g[u]],c=F[S+g[u]]):(f=96,c=0),a=1<>k)+(o-=a)]=s<<24|f<<16|c|0}while(0!==o);for(a=1<>=1;if(0!==a?(G&=a-1,G+=a):G=0,u++,0==--v[l]){if(l===d)break;l=e[t+g[u]]}if(l>D&&(G&C)!==B){for(0===k&&(k=D),Q+=w,p=1<<(y=l-k);y+k852||2===A&&m>592)return 1;r[B=G&C]=D<<24|y<<16|Q-I|0}}return 0!==G&&(r[Q+G]=l-k<<24|64<<16|0),n.bits=D,0},IA=H.Z_FINISH,gA=H.Z_BLOCK,nA=H.Z_TREES,aA=H.Z_OK,oA=H.Z_STREAM_END,BA=H.Z_NEED_DICT,CA=H.Z_STREAM_ERROR,QA=H.Z_DATA_ERROR,EA=H.Z_MEM_ERROR,sA=H.Z_BUF_ERROR,fA=H.Z_DEFLATED,cA=function(A){return(A>>>24&255)+(A>>>8&65280)+((65280&A)<<8)+((255&A)<<24)};function hA(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}var lA,uA,wA=function(A){if(!A||!A.state)return CA;var e=A.state;return A.total_in=A.total_out=e.total=0,A.msg="",e.wrap&&(A.adler=1&e.wrap),e.mode=1,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Int32Array(852),e.distcode=e.distdyn=new Int32Array(592),e.sane=1,e.back=-1,aA},dA=function(A){if(!A||!A.state)return CA;var e=A.state;return e.wsize=0,e.whave=0,e.wnext=0,wA(A)},DA=function(A,e){var t;if(!A||!A.state)return CA;var i=A.state;return e<0?(t=0,e=-e):(t=1+(e>>4),e<48&&(e&=15)),e&&(e<8||e>15)?CA:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=t,i.wbits=e,dA(A))},yA=function(A,e){if(!A)return CA;var t=new hA;A.state=t,t.window=null;var i=DA(A,e);return i!==aA&&(A.state=null),i},kA=!0,pA=function(A){if(kA){lA=new Int32Array(512),uA=new Int32Array(32);for(var e=0;e<144;)A.lens[e++]=8;for(;e<256;)A.lens[e++]=9;for(;e<280;)A.lens[e++]=7;for(;e<288;)A.lens[e++]=8;for(rA(1,A.lens,0,288,lA,0,A.work,{bits:9}),e=0;e<32;)A.lens[e++]=5;rA(2,A.lens,0,32,uA,0,A.work,{bits:5}),kA=!1}A.lencode=lA,A.lenbits=9,A.distcode=uA,A.distbits=5},mA=function(A,e,t,i){var r,I=A.state;return null===I.window&&(I.wsize=1<=I.wsize?(I.window.set(e.subarray(t-I.wsize,t),0),I.wnext=0,I.whave=I.wsize):((r=I.wsize-I.wnext)>i&&(r=i),I.window.set(e.subarray(t-i,t-i+r),I.wnext),(i-=r)?(I.window.set(e.subarray(t-i,t),0),I.wnext=i,I.whave=I.wsize):(I.wnext+=r,I.wnext===I.wsize&&(I.wnext=0),I.whave>>8&255,t.check=Y(t.check,G,2,0),o=0,B=0,t.mode=2;break}if(t.flags=0,t.head&&(t.head.done=!1),!(1&t.wrap)||(((255&o)<<8)+(o>>8))%31){A.msg="incorrect header check",t.mode=30;break}if((15&o)!==fA){A.msg="unknown compression method",t.mode=30;break}if(B-=4,D=8+(15&(o>>>=4)),0===t.wbits)t.wbits=D;else if(D>t.wbits){A.msg="invalid window size",t.mode=30;break}t.dmax=1<>8&1),512&t.flags&&(G[0]=255&o,G[1]=o>>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0,t.mode=3;case 3:for(;B<32;){if(0===n)break A;n--,o+=i[I++]<>>8&255,G[2]=o>>>16&255,G[3]=o>>>24&255,t.check=Y(t.check,G,4,0)),o=0,B=0,t.mode=4;case 4:for(;B<16;){if(0===n)break A;n--,o+=i[I++]<>8),512&t.flags&&(G[0]=255&o,G[1]=o>>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0,t.mode=5;case 5:if(1024&t.flags){for(;B<16;){if(0===n)break A;n--,o+=i[I++]<>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0}else t.head&&(t.head.extra=null);t.mode=6;case 6:if(1024&t.flags&&((E=t.length)>n&&(E=n),E&&(t.head&&(D=t.head.extra_len-t.length,t.head.extra||(t.head.extra=new Uint8Array(t.head.extra_len)),t.head.extra.set(i.subarray(I,I+E),D)),512&t.flags&&(t.check=Y(t.check,i,E,I)),n-=E,I+=E,t.length-=E),t.length))break A;t.length=0,t.mode=7;case 7:if(2048&t.flags){if(0===n)break A;E=0;do{D=i[I+E++],t.head&&D&&t.length<65536&&(t.head.name+=String.fromCharCode(D))}while(D&&E>9&1,t.head.done=!0),A.adler=t.check=0,t.mode=12;break;case 10:for(;B<32;){if(0===n)break A;n--,o+=i[I++]<>>=7&B,B-=7&B,t.mode=27;break}for(;B<3;){if(0===n)break A;n--,o+=i[I++]<>>=1)){case 0:t.mode=14;break;case 1:if(pA(t),t.mode=20,e===nA){o>>>=2,B-=2;break A}break;case 2:t.mode=17;break;case 3:A.msg="invalid block type",t.mode=30}o>>>=2,B-=2;break;case 14:for(o>>>=7&B,B-=7&B;B<32;){if(0===n)break A;n--,o+=i[I++]<>>16^65535)){A.msg="invalid stored block lengths",t.mode=30;break}if(t.length=65535&o,o=0,B=0,t.mode=15,e===nA)break A;case 15:t.mode=16;case 16:if(E=t.length){if(E>n&&(E=n),E>a&&(E=a),0===E)break A;r.set(i.subarray(I,I+E),g),n-=E,I+=E,a-=E,g+=E,t.length-=E;break}t.mode=12;break;case 17:for(;B<14;){if(0===n)break A;n--,o+=i[I++]<>>=5,B-=5,t.ndist=1+(31&o),o>>>=5,B-=5,t.ncode=4+(15&o),o>>>=4,B-=4,t.nlen>286||t.ndist>30){A.msg="too many length or distance symbols",t.mode=30;break}t.have=0,t.mode=18;case 18:for(;t.have>>=3,B-=3}for(;t.have<19;)t.lens[F[t.have++]]=0;if(t.lencode=t.lendyn,t.lenbits=7,k={bits:t.lenbits},y=rA(0,t.lens,0,19,t.lencode,0,t.work,k),t.lenbits=k.bits,y){A.msg="invalid code lengths set",t.mode=30;break}t.have=0,t.mode=19;case 19:for(;t.have>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=c,B-=c,t.lens[t.have++]=l;else{if(16===l){for(p=c+2;B>>=c,B-=c,0===t.have){A.msg="invalid bit length repeat",t.mode=30;break}D=t.lens[t.have-1],E=3+(3&o),o>>>=2,B-=2}else if(17===l){for(p=c+3;B>>=c)),o>>>=3,B-=3}else{for(p=c+7;B>>=c)),o>>>=7,B-=7}if(t.have+E>t.nlen+t.ndist){A.msg="invalid bit length repeat",t.mode=30;break}for(;E--;)t.lens[t.have++]=D}}if(30===t.mode)break;if(0===t.lens[256]){A.msg="invalid code -- missing end-of-block",t.mode=30;break}if(t.lenbits=9,k={bits:t.lenbits},y=rA(1,t.lens,0,t.nlen,t.lencode,0,t.work,k),t.lenbits=k.bits,y){A.msg="invalid literal/lengths set",t.mode=30;break}if(t.distbits=6,t.distcode=t.distdyn,k={bits:t.distbits},y=rA(2,t.lens,t.nlen,t.ndist,t.distcode,0,t.work,k),t.distbits=k.bits,y){A.msg="invalid distances set",t.mode=30;break}if(t.mode=20,e===nA)break A;case 20:t.mode=21;case 21:if(n>=6&&a>=258){A.next_out=g,A.avail_out=a,A.next_in=I,A.avail_in=n,t.hold=o,t.bits=B,$(A,Q),g=A.next_out,r=A.output,a=A.avail_out,I=A.next_in,i=A.input,n=A.avail_in,o=t.hold,B=t.bits,12===t.mode&&(t.back=-1);break}for(t.back=0;h=(m=t.lencode[o&(1<>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>u)])>>>16&255,l=65535&m,!(u+(c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=u,B-=u,t.back+=u}if(o>>>=c,B-=c,t.back+=c,t.length=l,0===h){t.mode=26;break}if(32&h){t.back=-1,t.mode=12;break}if(64&h){A.msg="invalid literal/length code",t.mode=30;break}t.extra=15&h,t.mode=22;case 22:if(t.extra){for(p=t.extra;B>>=t.extra,B-=t.extra,t.back+=t.extra}t.was=t.length,t.mode=23;case 23:for(;h=(m=t.distcode[o&(1<>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>u)])>>>16&255,l=65535&m,!(u+(c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=u,B-=u,t.back+=u}if(o>>>=c,B-=c,t.back+=c,64&h){A.msg="invalid distance code",t.mode=30;break}t.offset=l,t.extra=15&h,t.mode=24;case 24:if(t.extra){for(p=t.extra;B>>=t.extra,B-=t.extra,t.back+=t.extra}if(t.offset>t.dmax){A.msg="invalid distance too far back",t.mode=30;break}t.mode=25;case 25:if(0===a)break A;if(E=Q-a,t.offset>E){if((E=t.offset-E)>t.whave&&t.sane){A.msg="invalid distance too far back",t.mode=30;break}E>t.wnext?(E-=t.wnext,s=t.wsize-E):s=t.wnext-E,E>t.length&&(E=t.length),f=t.window}else f=r,s=g-t.offset,E=t.length;E>a&&(E=a),a-=E,t.length-=E;do{r[g++]=f[s++]}while(--E);0===t.length&&(t.mode=21);break;case 26:if(0===a)break A;r[g++]=t.length,a--,t.mode=21;break;case 27:if(t.wrap){for(;B<32;){if(0===n)break A;n--,o|=i[I++]<=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||A&&A.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new z,this.strm.avail_out=0;var t=GA.inflateInit2(this.strm,e.windowBits);if(t!==UA)throw new Error(K[t]);if(this.header=new FA,GA.inflateGetHeader(this.strm,this.header),e.dictionary&&("string"==typeof e.dictionary?e.dictionary=Z(e.dictionary):"[object ArrayBuffer]"===SA.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(t=GA.inflateSetDictionary(this.strm,e.dictionary))!==UA))throw new Error(K[t])}function qA(A,e){var t=new JA(e);if(t.push(A),t.err)throw t.msg||K[t.err];return t.result}JA.prototype.push=function(A,e){var t,i,r,I=this.strm,g=this.options.chunkSize,n=this.options.dictionary;if(this.ended)return!1;for(i=e===~~e?e:!0===e?RA:vA,"[object ArrayBuffer]"===SA.call(A)?I.input=new Uint8Array(A):I.input=A,I.next_in=0,I.avail_in=I.input.length;;){for(0===I.avail_out&&(I.output=new Uint8Array(g),I.next_out=0,I.avail_out=g),(t=GA.inflate(I,i))===bA&&n&&((t=GA.inflateSetDictionary(I,n))===UA?t=GA.inflate(I,i):t===NA&&(t=bA));I.avail_in>0&&t===LA&&I.state.wrap>0&&0!==A[I.next_in];)GA.inflateReset(I),t=GA.inflate(I,i);switch(t){case MA:case NA:case bA:case xA:return this.onEnd(t),this.ended=!0,!1}if(r=I.avail_out,I.next_out&&(0===I.avail_out||t===LA))if("string"===this.options.to){var a=W(I.output,I.next_out),o=I.next_out-a,B=j(I.output,a);I.next_out=o,I.avail_out=g-o,o&&I.output.set(I.output.subarray(a,a+o),0),this.onData(B)}else this.onData(I.output.length===I.next_out?I.output:I.output.subarray(0,I.next_out));if(t!==UA||0!==r){if(t===LA)return t=GA.inflateEnd(this.strm),this.onEnd(t),this.ended=!0,!0;if(0===I.avail_in)break}}return!0},JA.prototype.onData=function(A){this.chunks.push(A)},JA.prototype.onEnd=function(A){A===UA&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=T(this.chunks)),this.chunks=[],this.err=A,this.msg=this.strm.msg};var YA={Inflate:JA,inflate:qA,inflateRaw:function(A,e){return(e=e||{}).raw=!0,qA(A,e)},ungzip:qA,constants:H}.inflate;function KA(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var HA=function(A){s(t,w);var e=KA(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:"decodeBlock",value:function(A){return YA(new Uint8Array(A)).buffer}}]),t}(),OA=Object.freeze({__proto__:null,default:HA});function PA(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var TA,VA=function(A){s(t,w);var e=PA(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:"decodeBlock",value:function(A){for(var e=new DataView(A),t=[],i=0;i>3],m<<=7&G),c=0;c>3]),128&m?(a&&(a[G]=1),f=f>(g=S.encoding<2?y[k++]:p)?g:f,n[G++]=g):(a&&(a[G]=0),n[G++]=i),m<<=1;G+=F}else if(S.encoding<2)for(h=0;h(g=y[k++])?g:f,n[G++]=g;G+=F}else for(f=f>p?p:f,h=0;h0){var g=new Uint8Array(Math.ceil(i.width*i.height/8)),n=(I=new DataView(A,e,i.mask.numBytes)).getInt16(0,!0),a=2,o=0;do{if(n>0)for(;n--;)g[o++]=I.getUint8(a++);else{var B=I.getUint8(a++);for(n=-n;n--;)g[o++]=B}n=I.getInt16(a,!0),a+=2}while(a0?1:0),s=Q+(i.height%Q>0?1:0);i.pixels.blocks=new Array(E*s);for(var f=0,c=0;c3)throw"Invalid block encoding ("+w.encoding+")";if(2!==w.encoding){if(0!==d&&2!==d){if(d>>=6,w.offsetType=d,2===d)w.offset=I.getInt8(1),l++;else if(1===d)w.offset=I.getInt16(1,!0),l+=2;else{if(0!==d)throw"Invalid block offset type";w.offset=I.getFloat32(1,!0),l+=4}if(1===w.encoding)if(d=I.getUint8(l),l++,w.bitsPerPixel=63&d,d>>=6,w.numValidPixelsType=d,2===d)w.numValidPixels=I.getUint8(l),l++;else if(1===d)w.numValidPixels=I.getUint16(l,!0),l+=2;else{if(0!==d)throw"Invalid valid pixel count type";w.numValidPixels=I.getUint32(l,!0),l+=4}}var D;if(e+=l,3!==w.encoding)if(0===w.encoding){var y=(i.pixels.numBytes-1)/4;if(y!==Math.floor(y))throw"uncompressed block has invalid length";D=new ArrayBuffer(4*y),new Uint8Array(D).set(new Uint8Array(A,e,4*y));var k=new Float32Array(D);w.rawData=k,e+=4*y}else if(1===w.encoding){var p=Math.ceil(w.numValidPixels*w.bitsPerPixel/8),m=Math.ceil(p/4);D=new ArrayBuffer(4*m),new Uint8Array(D).set(new Uint8Array(A,e,p)),w.stuffedData=new Uint32Array(D),e+=p}}else e++}return i.eofOffset=e,i},I=function(A,e,t,i,r,I,g){var n,a,o,B=(1<=e)a=o>>>Q-e&B,Q-=e;else{var f=e-Q;a=(o&B)<>>(Q=32-f)}I[n]=a=t?(o=B>>>f-t&E,f-=t):(o=(B&E)<<(C=t-f)&E,o+=(B=A[s++])>>>(f=32-C)),e[a]=r[o];else for(Q=Math.ceil((n-I)/g),a=0;a=t?(o=B>>>f-t&E,f-=t):(o=(B&E)<<(C=t-f)&E,o+=(B=A[s++])>>>(f=32-C)),e[a]=o=e?(Q=g>>>C-e&n,C-=e):(Q=(g&n)<<(B=e-C)&n,Q+=(g=A[a++])>>>(C=32-B)),E[o]=Q=t?(o=B>>>f&Q,s-=t,f+=t):(o=B>>>f&Q,s=32-(C=t-s),o|=((B=A[E++])&(1<=t?(o=B>>>f&Q,s-=t,f+=t):(o=B>>>f&Q,s=32-(C=t-s),o|=((B=A[E++])&(1<=e?(Q=g>>>E&n,C-=e,E+=e):(Q=g>>>E&n,C=32-(B=e-C),Q|=((g=A[a++])&(1<=t?(I=g>>>B-t&a,B-=t):(I=(g&a)<<(n=t-B)&a,I+=(g=A[o++])>>>(B=32-n)),e[r]=I;return e},C=function(A,e,t,i){var r,I,g,n,a=(1<=t?(I=g>>>C&a,B-=t,C+=t):(I=g>>>C&a,B=32-(n=t-B),I|=((g=A[o++])&(1<=359?359:r;r-=g;do{e+=A[I++]<<8,t+=e+=A[I++]}while(--g);e=(65535&e)+(e>>>16),t=(65535&t)+(t>>>16)}return 1&i&&(t+=e+=A[I]<<8),((t=(65535&t)+(t>>>16))<<16|(e=(65535&e)+(e>>>16)))>>>0},readHeaderInfo:function(A,e){var t=e.ptr,i=new Uint8Array(A,t,6),r={};if(r.fileIdentifierString=String.fromCharCode.apply(null,i),0!==r.fileIdentifierString.lastIndexOf("Lerc2",0))throw"Unexpected file identifier string (expect Lerc2 ): "+r.fileIdentifierString;t+=6;var I,g=new DataView(A,t,8),n=g.getInt32(0,!0);if(r.fileVersion=n,t+=4,n>=3&&(r.checksum=g.getUint32(4,!0),t+=4),g=new DataView(A,t,12),r.height=g.getUint32(0,!0),r.width=g.getUint32(4,!0),t+=8,n>=4?(r.numDims=g.getUint32(8,!0),t+=4):r.numDims=1,g=new DataView(A,t,40),r.numValidPixel=g.getUint32(0,!0),r.microBlockSize=g.getInt32(4,!0),r.blobSize=g.getInt32(8,!0),r.imageType=g.getInt32(12,!0),r.maxZError=g.getFloat64(16,!0),r.zMin=g.getFloat64(24,!0),r.zMax=g.getFloat64(32,!0),t+=40,e.headerInfo=r,e.ptr=t,n>=3&&(I=n>=4?52:48,this.computeChecksumFletcher32(new Uint8Array(A,t-I,r.blobSize-14))!==r.checksum))throw"Checksum failed.";return!0},checkMinMaxRanges:function(A,e){var t=e.headerInfo,i=this.getDataTypeArray(t.imageType),r=t.numDims*this.getDataTypeSize(t.imageType),I=this.readSubArray(A,e.ptr,i,r),g=this.readSubArray(A,e.ptr+r,i,r);e.ptr+=2*r;var n,a=!0;for(n=0;n0){t=new Uint8Array(Math.ceil(g/8));var B=(a=new DataView(A,r,o.numBytes)).getInt16(0,!0),C=2,Q=0,E=0;do{if(B>0)for(;B--;)t[Q++]=a.getUint8(C++);else for(E=a.getUint8(C++),B=-B;B--;)t[Q++]=E;B=a.getInt16(C,!0),C+=2}while(C>3],s<<=7&f):s=t[f>>3],128&s&&(i[f]=1);e.pixels.resultMask=i,o.bitset=t,r+=o.numBytes}return e.ptr=r,e.mask=o,!0},readDataOneSweep:function(A,e,t,i){var r,I=e.ptr,g=e.headerInfo,n=g.numDims,a=g.width*g.height,o=g.imageType,B=g.numValidPixel*Q.getDataTypeSize(o)*n,C=e.pixels.resultMask;if(t===Uint8Array)r=new Uint8Array(A,I,B);else{var E=new ArrayBuffer(B);new Uint8Array(E).set(new Uint8Array(A,I,B)),r=new t(E)}if(r.length===a*n)e.pixels.resultPixels=i?Q.swapDimensionOrder(r,a,n,t,!0):r;else{e.pixels.resultPixels=new t(a*n);var s=0,f=0,c=0,h=0;if(n>1){if(i){for(f=0;f=g)return!1;var n=new Uint32Array(g-I);Q.decodeBits(A,e,n);var a,o,B,C,s=[];for(a=I;a0&&(s[o].second=l<>>32-C,32-w>=C?32===(w+=C)&&(w=0,l=u[++d]):(w+=C-32,l=u[++d],s[o].second|=l>>>32-w));var D=0,y=0,k=new E;for(a=0;a=t?t:D;var p,m,G,F,S,v=[];for(a=I;a0)if(p=[C,o],C<=y)for(m=s[o].second<=0;F--)m>>>F&1?(S.right||(S.right=new E),S=S.right):(S.left||(S.left=new E),S=S.left),0!==F||S.val||(S.val=p[1]);return{decodeLut:v,numBitsLUTQick:y,numBitsLUT:D,tree:k,stuffedData:u,srcPtr:d,bitPos:w}},readHuffman:function(A,e,t,i){var r,I,g,n,a,o,B,C,E,s=e.headerInfo.numDims,f=e.headerInfo.height,c=e.headerInfo.width,h=c*f,l=this.readHuffmanTree(A,e),u=l.decodeLut,w=l.tree,d=l.stuffedData,D=l.srcPtr,y=l.bitPos,k=l.numBitsLUTQick,p=l.numBitsLUT,m=0===e.headerInfo.imageType?128:0,G=e.pixels.resultMask,F=0;y>0&&(D++,y=0);var S,v=d[D],R=1===e.encodeMode,U=new t(h*s),L=U;if(s<2||R){for(S=0;S1&&(L=new t(U.buffer,h*S,h),F=0),e.headerInfo.numValidPixel===c*f)for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,R?(g+=B>0?F:o>0?L[C-c]:F,g&=255,L[C]=g,F=g):L[C]=g}else for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,R?(B>0&&G[C-1]?g+=F:o>0&&G[C-c]?g+=L[C-c]:g+=F,g&=255,L[C]=g,F=g):L[C]=g}}else for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,L[C]=g}e.ptr=e.ptr+4*(D+1)+(y>0?4:0),e.pixels.resultPixels=U,s>1&&!i&&(e.pixels.resultPixels=Q.swapDimensionOrder(U,h,s,t))},decodeBits:function(A,e,t,i,r){var I=e.headerInfo,Q=I.fileVersion,E=0,s=A.byteLength-e.ptr>=5?5:A.byteLength-e.ptr,f=new DataView(A,e.ptr,s),c=f.getUint8(0);E++;var h=c>>6,l=0===h?4:3-h,u=(32&c)>0,w=31&c,d=0;if(1===l)d=f.getUint8(E),E++;else if(2===l)d=f.getUint16(E,!0),E+=2;else{if(4!==l)throw"Invalid valid pixel count type";d=f.getUint32(E,!0),E+=4}var D,y,k,p,m,G,F,S,v,R=2*I.maxZError,U=I.numDims>1?I.maxValues[r]:I.zMax;if(u){for(e.counter.lut++,S=f.getUint8(E),E++,p=Math.ceil((S-1)*w/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),k=new Uint8Array(y),e.ptr+=E,k.set(new Uint8Array(A,e.ptr,p)),F=new Uint32Array(y),e.ptr+=p,v=0;S-1>>>v;)v++;p=Math.ceil(d*v/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),(k=new Uint8Array(y)).set(new Uint8Array(A,e.ptr,p)),D=new Uint32Array(y),e.ptr+=p,G=Q>=3?o(F,w,S-1,i,R,U):n(F,w,S-1,i,R,U),Q>=3?a(D,t,v,d,G):g(D,t,v,d,G)}else e.counter.bitstuffer++,v=w,e.ptr+=E,v>0&&(p=Math.ceil(d*v/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),(k=new Uint8Array(y)).set(new Uint8Array(A,e.ptr,p)),D=new Uint32Array(y),e.ptr+=p,Q>=3?null==i?C(D,t,v,d):a(D,t,v,d,!1,i,R,U):null==i?B(D,t,v,d):g(D,t,v,d,!1,i,R,U))},readTiles:function(A,e,t,i){var r=e.headerInfo,I=r.width,g=r.height,n=I*g,a=r.microBlockSize,o=r.imageType,B=Q.getDataTypeSize(o),C=Math.ceil(I/a),E=Math.ceil(g/a);e.pixels.numBlocksY=E,e.pixels.numBlocksX=C,e.pixels.ptr=0;var s,f,c,h,l,u,w,d,D,y,k=0,p=0,m=0,G=0,F=0,S=0,v=0,R=0,U=0,L=0,b=0,M=0,N=0,x=0,J=0,q=new t(a*a),Y=g%a||a,K=I%a||a,H=r.numDims,O=e.pixels.resultMask,P=e.pixels.resultPixels,T=r.fileVersion>=5?14:15,V=r.zMax;for(m=0;m1?(y=P,L=m*I*a+G*a,P=new t(e.pixels.resultPixels.buffer,n*d*B,n),V=r.maxValues[d]):y=null,v=A.byteLength-e.ptr,f={},J=0,R=(s=new DataView(A,e.ptr,Math.min(10,v))).getUint8(0),J++,D=r.fileVersion>=5?4&R:0,U=R>>6&255,(R>>2&T)!=(G*a>>3&T))throw"integrity issue";if(D&&0===d)throw"integrity issue";if((l=3&R)>3)throw e.ptr+=J,"Invalid block encoding ("+l+")";if(2!==l)if(0===l){if(D)throw"integrity issue";if(e.counter.uncompressed++,e.ptr+=J,M=(M=F*S*B)<(N=A.byteLength-e.ptr)?M:N,c=new ArrayBuffer(M%B==0?M:M+B-M%B),new Uint8Array(c).set(new Uint8Array(A,e.ptr,M)),h=new t(c),x=0,O)for(k=0;k1&&!i&&(e.pixels.resultPixels=Q.swapDimensionOrder(e.pixels.resultPixels,n,H,t))},formatFileInfo:function(A){return{fileIdentifierString:A.headerInfo.fileIdentifierString,fileVersion:A.headerInfo.fileVersion,imageType:A.headerInfo.imageType,height:A.headerInfo.height,width:A.headerInfo.width,numValidPixel:A.headerInfo.numValidPixel,microBlockSize:A.headerInfo.microBlockSize,blobSize:A.headerInfo.blobSize,maxZError:A.headerInfo.maxZError,pixelType:Q.getPixelType(A.headerInfo.imageType),eofOffset:A.eofOffset,mask:A.mask?{numBytes:A.mask.numBytes}:null,pixels:{numBlocksX:A.pixels.numBlocksX,numBlocksY:A.pixels.numBlocksY,maxValue:A.headerInfo.zMax,minValue:A.headerInfo.zMin,noDataValue:A.noDataValue}}},constructConstantSurface:function(A,e){var t=A.headerInfo.zMax,i=A.headerInfo.zMin,r=A.headerInfo.maxValues,I=A.headerInfo.numDims,g=A.headerInfo.height*A.headerInfo.width,n=0,a=0,o=0,B=A.pixels.resultMask,C=A.pixels.resultPixels;if(B)if(I>1){if(e)for(n=0;n1&&i!==t)if(e)for(n=0;n=-128&&e<=127;break;case 1:t=e>=0&&e<=255;break;case 2:t=e>=-32768&&e<=32767;break;case 3:t=e>=0&&e<=65536;break;case 4:t=e>=-2147483648&&e<=2147483647;break;case 5:t=e>=0&&e<=4294967296;break;case 6:t=e>=-34027999387901484e22&&e<=34027999387901484e22;break;case 7:t=e>=-17976931348623157e292&&e<=17976931348623157e292;break;default:t=!1}return t},getDataTypeSize:function(A){var e=0;switch(A){case 0:case 1:e=1;break;case 2:case 3:e=2;break;case 4:case 5:case 6:e=4;break;case 7:e=8;break;default:e=A}return e},getDataTypeUsed:function(A,e){var t=A;switch(A){case 2:case 4:t=A-e;break;case 3:case 5:t=A-2*e;break;case 6:t=0===e?A:1===e?2:1;break;case 7:t=0===e?A:A-2*e+1;break;default:t=A}return t},getOnePixel:function(A,e,t,i){var r=0;switch(t){case 0:r=i.getInt8(e);break;case 1:r=i.getUint8(e);break;case 2:r=i.getInt16(e,!0);break;case 3:r=i.getUint16(e,!0);break;case 4:r=i.getInt32(e,!0);break;case 5:r=i.getUInt32(e,!0);break;case 6:r=i.getFloat32(e,!0);break;case 7:r=i.getFloat64(e,!0);break;default:throw"the decoder does not understand this pixel type"}return r},swapDimensionOrder:function(A,e,t,i,r){var I=0,g=0,n=0,a=0,o=A;if(t>1)if(o=new i(e*t),r)for(I=0;I5)throw"unsupported lerc version 2."+g;Q.readMask(A,r),I.numValidPixel===I.width*I.height||r.pixels.resultMask||(r.pixels.resultMask=e.maskData);var a=I.width*I.height;r.pixels.resultPixels=new n(a*I.numDims),r.counter={onesweep:0,uncompressed:0,lut:0,bitstuffer:0,constant:0,constantoffset:0};var o,B=!e.returnPixelInterleavedDims;if(0!==I.numValidPixel)if(I.zMax===I.zMin)Q.constructConstantSurface(r,B);else if(g>=4&&Q.checkMinMaxRanges(A,r))Q.constructConstantSurface(r,B);else{var C=new DataView(A,r.ptr,2),E=C.getUint8(0);if(r.ptr++,E)Q.readDataOneSweep(A,r,n,B);else if(g>1&&I.imageType<=1&&Math.abs(I.maxZError-.5)<1e-5){var s=C.getUint8(1);if(r.ptr++,r.encodeMode=s,s>2||g<4&&s>1)throw"Invalid Huffman flag "+s;s?Q.readHuffman(A,r,n,B):Q.readTiles(A,r,n,B)}else Q.readTiles(A,r,n,B)}r.eofOffset=r.ptr,e.inputOffset?(o=r.headerInfo.blobSize+e.inputOffset-r.ptr,Math.abs(o)>=1&&(r.eofOffset=e.inputOffset+r.headerInfo.blobSize)):(o=r.headerInfo.blobSize-r.ptr,Math.abs(o)>=1&&(r.eofOffset=r.headerInfo.blobSize));var f={width:I.width,height:I.height,pixelData:r.pixels.resultPixels,minValue:I.zMin,maxValue:I.zMax,validPixelCount:I.numValidPixel,dimCount:I.numDims,dimStats:{minValues:I.minValues,maxValues:I.maxValues},maskData:r.pixels.resultMask};if(r.pixels.resultMask&&Q.isValidPixelValue(I.imageType,t)){var c=r.pixels.resultMask;for(i=0;i1&&(o&&f.push(o),d.fileInfo.mask&&d.fileInfo.mask.numBytes>0&&w++),E++,u.pixels.push(d.pixelData),u.statistics.push({minValue:d.minValue,maxValue:d.maxValue,noDataValue:d.noDataValue,dimStats:d.dimStats})}if(i>1&&w>1){for(Q=u.width*u.height,u.bandMasks=f,(o=new Uint8Array(Q)).set(f[0]),B=1;B1&&void 0!==arguments[1]?arguments[1]:0;if(!jA)throw new Error("ZSTDDecoder: Await .init() before decoding.");var t=A.byteLength,i=jA.exports.malloc(t);WA.set(A,i),e=e||Number(jA.exports.ZSTD_findDecompressedSize(i,t));var r=jA.exports.malloc(e),I=jA.exports.ZSTD_decompress(r,e,i,t),g=WA.slice(r,r+I);return jA.exports.free(i),jA.exports.free(r),g}}]),A}(),ee="AGFzbQEAAAABpQEVYAF/AX9gAn9/AGADf39/AX9gBX9/f39/AX9gAX8AYAJ/fwF/YAR/f39/AX9gA39/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gAn9/AX5gAn5+AX5gAABgBX9/f39/AGAGf39/f39/AGAIf39/f39/f38AYAl/f39/f39/f38AYAABf2AIf39/f39/f38Bf2ANf39/f39/f39/f39/fwF/YAF/AX4CJwEDZW52H2Vtc2NyaXB0ZW5fbm90aWZ5X21lbW9yeV9ncm93dGgABANpaAEFAAAFAgEFCwACAQABAgIFBQcAAwABDgsBAQcAEhMHAAUBDAQEAAANBwQCAgYCBAgDAwMDBgEACQkHBgICAAYGAgQUBwYGAwIGAAMCAQgBBwUGCgoEEQAEBAEIAwgDBQgDEA8IAAcABAUBcAECAgUEAQCAAgYJAX8BQaCgwAILB2AHBm1lbW9yeQIABm1hbGxvYwAoBGZyZWUAJgxaU1REX2lzRXJyb3IAaBlaU1REX2ZpbmREZWNvbXByZXNzZWRTaXplAFQPWlNURF9kZWNvbXByZXNzAEoGX3N0YXJ0ACQJBwEAQQELASQKussBaA8AIAAgACgCBCABajYCBAsZACAAKAIAIAAoAgRBH3F0QQAgAWtBH3F2CwgAIABBiH9LC34BBH9BAyEBIAAoAgQiA0EgTQRAIAAoAggiASAAKAIQTwRAIAAQDQ8LIAAoAgwiAiABRgRAQQFBAiADQSBJGw8LIAAgASABIAJrIANBA3YiBCABIARrIAJJIgEbIgJrIgQ2AgggACADIAJBA3RrNgIEIAAgBCgAADYCAAsgAQsUAQF/IAAgARACIQIgACABEAEgAgv3AQECfyACRQRAIABCADcCACAAQQA2AhAgAEIANwIIQbh/DwsgACABNgIMIAAgAUEEajYCECACQQRPBEAgACABIAJqIgFBfGoiAzYCCCAAIAMoAAA2AgAgAUF/ai0AACIBBEAgAEEIIAEQFGs2AgQgAg8LIABBADYCBEF/DwsgACABNgIIIAAgAS0AACIDNgIAIAJBfmoiBEEBTQRAIARBAWtFBEAgACABLQACQRB0IANyIgM2AgALIAAgAS0AAUEIdCADajYCAAsgASACakF/ai0AACIBRQRAIABBADYCBEFsDwsgAEEoIAEQFCACQQN0ams2AgQgAgsWACAAIAEpAAA3AAAgACABKQAINwAICy8BAX8gAUECdEGgHWooAgAgACgCAEEgIAEgACgCBGprQR9xdnEhAiAAIAEQASACCyEAIAFCz9bTvtLHq9lCfiAAfEIfiUKHla+vmLbem55/fgsdAQF/IAAoAgggACgCDEYEfyAAKAIEQSBGBUEACwuCBAEDfyACQYDAAE8EQCAAIAEgAhBnIAAPCyAAIAJqIQMCQCAAIAFzQQNxRQRAAkAgAkEBSARAIAAhAgwBCyAAQQNxRQRAIAAhAgwBCyAAIQIDQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADTw0BIAJBA3ENAAsLAkAgA0F8cSIEQcAASQ0AIAIgBEFAaiIFSw0AA0AgAiABKAIANgIAIAIgASgCBDYCBCACIAEoAgg2AgggAiABKAIMNgIMIAIgASgCEDYCECACIAEoAhQ2AhQgAiABKAIYNgIYIAIgASgCHDYCHCACIAEoAiA2AiAgAiABKAIkNgIkIAIgASgCKDYCKCACIAEoAiw2AiwgAiABKAIwNgIwIAIgASgCNDYCNCACIAEoAjg2AjggAiABKAI8NgI8IAFBQGshASACQUBrIgIgBU0NAAsLIAIgBE8NAQNAIAIgASgCADYCACABQQRqIQEgAkEEaiICIARJDQALDAELIANBBEkEQCAAIQIMAQsgA0F8aiIEIABJBEAgACECDAELIAAhAgNAIAIgAS0AADoAACACIAEtAAE6AAEgAiABLQACOgACIAIgAS0AAzoAAyABQQRqIQEgAkEEaiICIARNDQALCyACIANJBEADQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADRw0ACwsgAAsMACAAIAEpAAA3AAALQQECfyAAKAIIIgEgACgCEEkEQEEDDwsgACAAKAIEIgJBB3E2AgQgACABIAJBA3ZrIgE2AgggACABKAAANgIAQQALDAAgACABKAIANgAAC/cCAQJ/AkAgACABRg0AAkAgASACaiAASwRAIAAgAmoiBCABSw0BCyAAIAEgAhALDwsgACABc0EDcSEDAkACQCAAIAFJBEAgAwRAIAAhAwwDCyAAQQNxRQRAIAAhAwwCCyAAIQMDQCACRQ0EIAMgAS0AADoAACABQQFqIQEgAkF/aiECIANBAWoiA0EDcQ0ACwwBCwJAIAMNACAEQQNxBEADQCACRQ0FIAAgAkF/aiICaiIDIAEgAmotAAA6AAAgA0EDcQ0ACwsgAkEDTQ0AA0AgACACQXxqIgJqIAEgAmooAgA2AgAgAkEDSw0ACwsgAkUNAgNAIAAgAkF/aiICaiABIAJqLQAAOgAAIAINAAsMAgsgAkEDTQ0AIAIhBANAIAMgASgCADYCACABQQRqIQEgA0EEaiEDIARBfGoiBEEDSw0ACyACQQNxIQILIAJFDQADQCADIAEtAAA6AAAgA0EBaiEDIAFBAWohASACQX9qIgINAAsLIAAL8wICAn8BfgJAIAJFDQAgACACaiIDQX9qIAE6AAAgACABOgAAIAJBA0kNACADQX5qIAE6AAAgACABOgABIANBfWogAToAACAAIAE6AAIgAkEHSQ0AIANBfGogAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa0iBUIghiAFhCEFIAMgBGohAQNAIAEgBTcDGCABIAU3AxAgASAFNwMIIAEgBTcDACABQSBqIQEgAkFgaiICQR9LDQALCyAACy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAIajYCACADCy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAFajYCACADCx8AIAAgASACKAIEEAg2AgAgARAEGiAAIAJBCGo2AgQLCAAgAGdBH3MLugUBDX8jAEEQayIKJAACfyAEQQNNBEAgCkEANgIMIApBDGogAyAEEAsaIAAgASACIApBDGpBBBAVIgBBbCAAEAMbIAAgACAESxsMAQsgAEEAIAEoAgBBAXRBAmoQECENQVQgAygAACIGQQ9xIgBBCksNABogAiAAQQVqNgIAIAMgBGoiAkF8aiEMIAJBeWohDiACQXtqIRAgAEEGaiELQQQhBSAGQQR2IQRBICAAdCIAQQFyIQkgASgCACEPQQAhAiADIQYCQANAIAlBAkggAiAPS3JFBEAgAiEHAkAgCARAA0AgBEH//wNxQf//A0YEQCAHQRhqIQcgBiAQSQR/IAZBAmoiBigAACAFdgUgBUEQaiEFIARBEHYLIQQMAQsLA0AgBEEDcSIIQQNGBEAgBUECaiEFIARBAnYhBCAHQQNqIQcMAQsLIAcgCGoiByAPSw0EIAVBAmohBQNAIAIgB0kEQCANIAJBAXRqQQA7AQAgAkEBaiECDAELCyAGIA5LQQAgBiAFQQN1aiIHIAxLG0UEQCAHKAAAIAVBB3EiBXYhBAwCCyAEQQJ2IQQLIAYhBwsCfyALQX9qIAQgAEF/anEiBiAAQQF0QX9qIgggCWsiEUkNABogBCAIcSIEQQAgESAEIABIG2shBiALCyEIIA0gAkEBdGogBkF/aiIEOwEAIAlBASAGayAEIAZBAUgbayEJA0AgCSAASARAIABBAXUhACALQX9qIQsMAQsLAn8gByAOS0EAIAcgBSAIaiIFQQN1aiIGIAxLG0UEQCAFQQdxDAELIAUgDCIGIAdrQQN0awshBSACQQFqIQIgBEUhCCAGKAAAIAVBH3F2IQQMAQsLQWwgCUEBRyAFQSBKcg0BGiABIAJBf2o2AgAgBiAFQQdqQQN1aiADawwBC0FQCyEAIApBEGokACAACwkAQQFBBSAAGwsMACAAIAEoAAA2AAALqgMBCn8jAEHwAGsiCiQAIAJBAWohDiAAQQhqIQtBgIAEIAVBf2p0QRB1IQxBACECQQEhBkEBIAV0IglBf2oiDyEIA0AgAiAORkUEQAJAIAEgAkEBdCINai8BACIHQf//A0YEQCALIAhBA3RqIAI2AgQgCEF/aiEIQQEhBwwBCyAGQQAgDCAHQRB0QRB1ShshBgsgCiANaiAHOwEAIAJBAWohAgwBCwsgACAFNgIEIAAgBjYCACAJQQN2IAlBAXZqQQNqIQxBACEAQQAhBkEAIQIDQCAGIA5GBEADQAJAIAAgCUYNACAKIAsgAEEDdGoiASgCBCIGQQF0aiICIAIvAQAiAkEBajsBACABIAUgAhAUayIIOgADIAEgAiAIQf8BcXQgCWs7AQAgASAEIAZBAnQiAmooAgA6AAIgASACIANqKAIANgIEIABBAWohAAwBCwsFIAEgBkEBdGouAQAhDUEAIQcDQCAHIA1ORQRAIAsgAkEDdGogBjYCBANAIAIgDGogD3EiAiAISw0ACyAHQQFqIQcMAQsLIAZBAWohBgwBCwsgCkHwAGokAAsjAEIAIAEQCSAAhUKHla+vmLbem55/fkLj3MqV/M7y9YV/fAsQACAAQn43AwggACABNgIACyQBAX8gAARAIAEoAgQiAgRAIAEoAgggACACEQEADwsgABAmCwsfACAAIAEgAi8BABAINgIAIAEQBBogACACQQRqNgIEC0oBAX9BoCAoAgAiASAAaiIAQX9MBEBBiCBBMDYCAEF/DwsCQCAAPwBBEHRNDQAgABBmDQBBiCBBMDYCAEF/DwtBoCAgADYCACABC9cBAQh/Qbp/IQoCQCACKAIEIgggAigCACIJaiIOIAEgAGtLDQBBbCEKIAkgBCADKAIAIgtrSw0AIAAgCWoiBCACKAIIIgxrIQ0gACABQWBqIg8gCyAJQQAQKSADIAkgC2o2AgACQAJAIAwgBCAFa00EQCANIQUMAQsgDCAEIAZrSw0CIAcgDSAFayIAaiIBIAhqIAdNBEAgBCABIAgQDxoMAgsgBCABQQAgAGsQDyEBIAIgACAIaiIINgIEIAEgAGshBAsgBCAPIAUgCEEBECkLIA4hCgsgCgubAgEBfyMAQYABayINJAAgDSADNgJ8AkAgAkEDSwRAQX8hCQwBCwJAAkACQAJAIAJBAWsOAwADAgELIAZFBEBBuH8hCQwEC0FsIQkgBS0AACICIANLDQMgACAHIAJBAnQiAmooAgAgAiAIaigCABA7IAEgADYCAEEBIQkMAwsgASAJNgIAQQAhCQwCCyAKRQRAQWwhCQwCC0EAIQkgC0UgDEEZSHINAUEIIAR0QQhqIQBBACECA0AgAiAATw0CIAJBQGshAgwAAAsAC0FsIQkgDSANQfwAaiANQfgAaiAFIAYQFSICEAMNACANKAJ4IgMgBEsNACAAIA0gDSgCfCAHIAggAxAYIAEgADYCACACIQkLIA1BgAFqJAAgCQsLACAAIAEgAhALGgsQACAALwAAIAAtAAJBEHRyCy8AAn9BuH8gAUEISQ0AGkFyIAAoAAQiAEF3Sw0AGkG4fyAAQQhqIgAgACABSxsLCwkAIAAgATsAAAsDAAELigYBBX8gACAAKAIAIgVBfnE2AgBBACAAIAVBAXZqQYQgKAIAIgQgAEYbIQECQAJAIAAoAgQiAkUNACACKAIAIgNBAXENACACQQhqIgUgA0EBdkF4aiIDQQggA0EISxtnQR9zQQJ0QYAfaiIDKAIARgRAIAMgAigCDDYCAAsgAigCCCIDBEAgAyACKAIMNgIECyACKAIMIgMEQCADIAIoAgg2AgALIAIgAigCACAAKAIAQX5xajYCAEGEICEAAkACQCABRQ0AIAEgAjYCBCABKAIAIgNBAXENASADQQF2QXhqIgNBCCADQQhLG2dBH3NBAnRBgB9qIgMoAgAgAUEIakYEQCADIAEoAgw2AgALIAEoAggiAwRAIAMgASgCDDYCBAsgASgCDCIDBEAgAyABKAIINgIAQYQgKAIAIQQLIAIgAigCACABKAIAQX5xajYCACABIARGDQAgASABKAIAQQF2akEEaiEACyAAIAI2AgALIAIoAgBBAXZBeGoiAEEIIABBCEsbZ0Efc0ECdEGAH2oiASgCACEAIAEgBTYCACACIAA2AgwgAkEANgIIIABFDQEgACAFNgIADwsCQCABRQ0AIAEoAgAiAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAigCACABQQhqRgRAIAIgASgCDDYCAAsgASgCCCICBEAgAiABKAIMNgIECyABKAIMIgIEQCACIAEoAgg2AgBBhCAoAgAhBAsgACAAKAIAIAEoAgBBfnFqIgI2AgACQCABIARHBEAgASABKAIAQQF2aiAANgIEIAAoAgAhAgwBC0GEICAANgIACyACQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgIoAgAhASACIABBCGoiAjYCACAAIAE2AgwgAEEANgIIIAFFDQEgASACNgIADwsgBUEBdkF4aiIBQQggAUEISxtnQR9zQQJ0QYAfaiICKAIAIQEgAiAAQQhqIgI2AgAgACABNgIMIABBADYCCCABRQ0AIAEgAjYCAAsLDgAgAARAIABBeGoQJQsLgAIBA38CQCAAQQ9qQXhxQYQgKAIAKAIAQQF2ayICEB1Bf0YNAAJAQYQgKAIAIgAoAgAiAUEBcQ0AIAFBAXZBeGoiAUEIIAFBCEsbZ0Efc0ECdEGAH2oiASgCACAAQQhqRgRAIAEgACgCDDYCAAsgACgCCCIBBEAgASAAKAIMNgIECyAAKAIMIgFFDQAgASAAKAIINgIAC0EBIQEgACAAKAIAIAJBAXRqIgI2AgAgAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAygCACECIAMgAEEIaiIDNgIAIAAgAjYCDCAAQQA2AgggAkUNACACIAM2AgALIAELtwIBA38CQAJAIABBASAAGyICEDgiAA0AAkACQEGEICgCACIARQ0AIAAoAgAiA0EBcQ0AIAAgA0EBcjYCACADQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgAgAEEIakYEQCABIAAoAgw2AgALIAAoAggiAQRAIAEgACgCDDYCBAsgACgCDCIBBEAgASAAKAIINgIACyACECchAkEAIQFBhCAoAgAhACACDQEgACAAKAIAQX5xNgIAQQAPCyACQQ9qQXhxIgMQHSICQX9GDQIgAkEHakF4cSIAIAJHBEAgACACaxAdQX9GDQMLAkBBhCAoAgAiAUUEQEGAICAANgIADAELIAAgATYCBAtBhCAgADYCACAAIANBAXRBAXI2AgAMAQsgAEUNAQsgAEEIaiEBCyABC7kDAQJ/IAAgA2ohBQJAIANBB0wEQANAIAAgBU8NAiAAIAItAAA6AAAgAEEBaiEAIAJBAWohAgwAAAsACyAEQQFGBEACQCAAIAJrIgZBB00EQCAAIAItAAA6AAAgACACLQABOgABIAAgAi0AAjoAAiAAIAItAAM6AAMgAEEEaiACIAZBAnQiBkHAHmooAgBqIgIQFyACIAZB4B5qKAIAayECDAELIAAgAhAMCyACQQhqIQIgAEEIaiEACwJAAkACQAJAIAUgAU0EQCAAIANqIQEgBEEBRyAAIAJrQQ9Kcg0BA0AgACACEAwgAkEIaiECIABBCGoiACABSQ0ACwwFCyAAIAFLBEAgACEBDAQLIARBAUcgACACa0EPSnINASAAIQMgAiEEA0AgAyAEEAwgBEEIaiEEIANBCGoiAyABSQ0ACwwCCwNAIAAgAhAHIAJBEGohAiAAQRBqIgAgAUkNAAsMAwsgACEDIAIhBANAIAMgBBAHIARBEGohBCADQRBqIgMgAUkNAAsLIAIgASAAa2ohAgsDQCABIAVPDQEgASACLQAAOgAAIAFBAWohASACQQFqIQIMAAALAAsLQQECfyAAIAAoArjgASIDNgLE4AEgACgCvOABIQQgACABNgK84AEgACABIAJqNgK44AEgACABIAQgA2tqNgLA4AELpgEBAX8gACAAKALs4QEQFjYCyOABIABCADcD+OABIABCADcDuOABIABBwOABakIANwMAIABBqNAAaiIBQYyAgOAANgIAIABBADYCmOIBIABCADcDiOEBIABCAzcDgOEBIABBrNABakHgEikCADcCACAAQbTQAWpB6BIoAgA2AgAgACABNgIMIAAgAEGYIGo2AgggACAAQaAwajYCBCAAIABBEGo2AgALYQEBf0G4fyEDAkAgAUEDSQ0AIAIgABAhIgFBA3YiADYCCCACIAFBAXE2AgQgAiABQQF2QQNxIgM2AgACQCADQX9qIgFBAksNAAJAIAFBAWsOAgEAAgtBbA8LIAAhAwsgAwsMACAAIAEgAkEAEC4LiAQCA38CfiADEBYhBCAAQQBBKBAQIQAgBCACSwRAIAQPCyABRQRAQX8PCwJAAkAgA0EBRg0AIAEoAAAiBkGo6r5pRg0AQXYhAyAGQXBxQdDUtMIBRw0BQQghAyACQQhJDQEgAEEAQSgQECEAIAEoAAQhASAAQQE2AhQgACABrTcDAEEADwsgASACIAMQLyIDIAJLDQAgACADNgIYQXIhAyABIARqIgVBf2otAAAiAkEIcQ0AIAJBIHEiBkUEQEFwIQMgBS0AACIFQacBSw0BIAVBB3GtQgEgBUEDdkEKaq2GIgdCA4h+IAd8IQggBEEBaiEECyACQQZ2IQMgAkECdiEFAkAgAkEDcUF/aiICQQJLBEBBACECDAELAkACQAJAIAJBAWsOAgECAAsgASAEai0AACECIARBAWohBAwCCyABIARqLwAAIQIgBEECaiEEDAELIAEgBGooAAAhAiAEQQRqIQQLIAVBAXEhBQJ+AkACQAJAIANBf2oiA0ECTQRAIANBAWsOAgIDAQtCfyAGRQ0DGiABIARqMQAADAMLIAEgBGovAACtQoACfAwCCyABIARqKAAArQwBCyABIARqKQAACyEHIAAgBTYCICAAIAI2AhwgACAHNwMAQQAhAyAAQQA2AhQgACAHIAggBhsiBzcDCCAAIAdCgIAIIAdCgIAIVBs+AhALIAMLWwEBf0G4fyEDIAIQFiICIAFNBH8gACACakF/ai0AACIAQQNxQQJ0QaAeaigCACACaiAAQQZ2IgFBAnRBsB5qKAIAaiAAQSBxIgBFaiABRSAAQQV2cWoFQbh/CwsdACAAKAKQ4gEQWiAAQQA2AqDiASAAQgA3A5DiAQu1AwEFfyMAQZACayIKJABBuH8hBgJAIAVFDQAgBCwAACIIQf8BcSEHAkAgCEF/TARAIAdBgn9qQQF2IgggBU8NAkFsIQYgB0GBf2oiBUGAAk8NAiAEQQFqIQdBACEGA0AgBiAFTwRAIAUhBiAIIQcMAwUgACAGaiAHIAZBAXZqIgQtAABBBHY6AAAgACAGQQFyaiAELQAAQQ9xOgAAIAZBAmohBgwBCwAACwALIAcgBU8NASAAIARBAWogByAKEFMiBhADDQELIAYhBEEAIQYgAUEAQTQQECEJQQAhBQNAIAQgBkcEQCAAIAZqIggtAAAiAUELSwRAQWwhBgwDBSAJIAFBAnRqIgEgASgCAEEBajYCACAGQQFqIQZBASAILQAAdEEBdSAFaiEFDAILAAsLQWwhBiAFRQ0AIAUQFEEBaiIBQQxLDQAgAyABNgIAQQFBASABdCAFayIDEBQiAXQgA0cNACAAIARqIAFBAWoiADoAACAJIABBAnRqIgAgACgCAEEBajYCACAJKAIEIgBBAkkgAEEBcXINACACIARBAWo2AgAgB0EBaiEGCyAKQZACaiQAIAYLxhEBDH8jAEHwAGsiBSQAQWwhCwJAIANBCkkNACACLwAAIQogAi8AAiEJIAIvAAQhByAFQQhqIAQQDgJAIAMgByAJIApqakEGaiIMSQ0AIAUtAAohCCAFQdgAaiACQQZqIgIgChAGIgsQAw0BIAVBQGsgAiAKaiICIAkQBiILEAMNASAFQShqIAIgCWoiAiAHEAYiCxADDQEgBUEQaiACIAdqIAMgDGsQBiILEAMNASAAIAFqIg9BfWohECAEQQRqIQZBASELIAAgAUEDakECdiIDaiIMIANqIgIgA2oiDiEDIAIhBCAMIQcDQCALIAMgEElxBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgCS0AAyELIAcgBiAFQUBrIAgQAkECdGoiCS8BADsAACAFQUBrIAktAAIQASAJLQADIQogBCAGIAVBKGogCBACQQJ0aiIJLwEAOwAAIAVBKGogCS0AAhABIAktAAMhCSADIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgDS0AAyENIAAgC2oiCyAGIAVB2ABqIAgQAkECdGoiAC8BADsAACAFQdgAaiAALQACEAEgAC0AAyEAIAcgCmoiCiAGIAVBQGsgCBACQQJ0aiIHLwEAOwAAIAVBQGsgBy0AAhABIActAAMhByAEIAlqIgkgBiAFQShqIAgQAkECdGoiBC8BADsAACAFQShqIAQtAAIQASAELQADIQQgAyANaiIDIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgACALaiEAIAcgCmohByAEIAlqIQQgAyANLQADaiEDIAVB2ABqEA0gBUFAaxANciAFQShqEA1yIAVBEGoQDXJFIQsMAQsLIAQgDksgByACS3INAEFsIQsgACAMSw0BIAxBfWohCQNAQQAgACAJSSAFQdgAahAEGwRAIAAgBiAFQdgAaiAIEAJBAnRqIgovAQA7AAAgBUHYAGogCi0AAhABIAAgCi0AA2oiACAGIAVB2ABqIAgQAkECdGoiCi8BADsAACAFQdgAaiAKLQACEAEgACAKLQADaiEADAEFIAxBfmohCgNAIAVB2ABqEAQgACAKS3JFBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgACAJLQADaiEADAELCwNAIAAgCk0EQCAAIAYgBUHYAGogCBACQQJ0aiIJLwEAOwAAIAVB2ABqIAktAAIQASAAIAktAANqIQAMAQsLAkAgACAMTw0AIAAgBiAFQdgAaiAIEAIiAEECdGoiDC0AADoAACAMLQADQQFGBEAgBUHYAGogDC0AAhABDAELIAUoAlxBH0sNACAFQdgAaiAGIABBAnRqLQACEAEgBSgCXEEhSQ0AIAVBIDYCXAsgAkF9aiEMA0BBACAHIAxJIAVBQGsQBBsEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiIAIAYgBUFAayAIEAJBAnRqIgcvAQA7AAAgBUFAayAHLQACEAEgACAHLQADaiEHDAEFIAJBfmohDANAIAVBQGsQBCAHIAxLckUEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwNAIAcgDE0EQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwJAIAcgAk8NACAHIAYgBUFAayAIEAIiAEECdGoiAi0AADoAACACLQADQQFGBEAgBUFAayACLQACEAEMAQsgBSgCREEfSw0AIAVBQGsgBiAAQQJ0ai0AAhABIAUoAkRBIUkNACAFQSA2AkQLIA5BfWohAgNAQQAgBCACSSAFQShqEAQbBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2oiACAGIAVBKGogCBACQQJ0aiIELwEAOwAAIAVBKGogBC0AAhABIAAgBC0AA2ohBAwBBSAOQX5qIQIDQCAFQShqEAQgBCACS3JFBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsDQCAEIAJNBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsCQCAEIA5PDQAgBCAGIAVBKGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBKGogAi0AAhABDAELIAUoAixBH0sNACAFQShqIAYgAEECdGotAAIQASAFKAIsQSFJDQAgBUEgNgIsCwNAQQAgAyAQSSAFQRBqEAQbBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2oiACAGIAVBEGogCBACQQJ0aiICLwEAOwAAIAVBEGogAi0AAhABIAAgAi0AA2ohAwwBBSAPQX5qIQIDQCAFQRBqEAQgAyACS3JFBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsDQCADIAJNBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsCQCADIA9PDQAgAyAGIAVBEGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBEGogAi0AAhABDAELIAUoAhRBH0sNACAFQRBqIAYgAEECdGotAAIQASAFKAIUQSFJDQAgBUEgNgIUCyABQWwgBUHYAGoQCiAFQUBrEApxIAVBKGoQCnEgBUEQahAKcRshCwwJCwAACwALAAALAAsAAAsACwAACwALQWwhCwsgBUHwAGokACALC7UEAQ5/IwBBEGsiBiQAIAZBBGogABAOQVQhBQJAIARB3AtJDQAgBi0ABCEHIANB8ARqQQBB7AAQECEIIAdBDEsNACADQdwJaiIJIAggBkEIaiAGQQxqIAEgAhAxIhAQA0UEQCAGKAIMIgQgB0sNASADQdwFaiEPIANBpAVqIREgAEEEaiESIANBqAVqIQEgBCEFA0AgBSICQX9qIQUgCCACQQJ0aigCAEUNAAsgAkEBaiEOQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgASALaiAKNgIAIAVBAWohBSAKIAxqIQoMAQsLIAEgCjYCAEEAIQUgBigCCCELA0AgBSALRkUEQCABIAUgCWotAAAiDEECdGoiDSANKAIAIg1BAWo2AgAgDyANQQF0aiINIAw6AAEgDSAFOgAAIAVBAWohBQwBCwtBACEBIANBADYCqAUgBEF/cyAHaiEJQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgAyALaiABNgIAIAwgBSAJanQgAWohASAFQQFqIQUMAQsLIAcgBEEBaiIBIAJrIgRrQQFqIQgDQEEBIQUgBCAIT0UEQANAIAUgDk9FBEAgBUECdCIJIAMgBEE0bGpqIAMgCWooAgAgBHY2AgAgBUEBaiEFDAELCyAEQQFqIQQMAQsLIBIgByAPIAogESADIAIgARBkIAZBAToABSAGIAc6AAYgACAGKAIENgIACyAQIQULIAZBEGokACAFC8ENAQt/IwBB8ABrIgUkAEFsIQkCQCADQQpJDQAgAi8AACEKIAIvAAIhDCACLwAEIQYgBUEIaiAEEA4CQCADIAYgCiAMampBBmoiDUkNACAFLQAKIQcgBUHYAGogAkEGaiICIAoQBiIJEAMNASAFQUBrIAIgCmoiAiAMEAYiCRADDQEgBUEoaiACIAxqIgIgBhAGIgkQAw0BIAVBEGogAiAGaiADIA1rEAYiCRADDQEgACABaiIOQX1qIQ8gBEEEaiEGQQEhCSAAIAFBA2pBAnYiAmoiCiACaiIMIAJqIg0hAyAMIQQgCiECA0AgCSADIA9JcQRAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAACAGIAVBQGsgBxACQQF0aiIILQAAIQsgBUFAayAILQABEAEgAiALOgAAIAYgBUEoaiAHEAJBAXRqIggtAAAhCyAFQShqIAgtAAEQASAEIAs6AAAgBiAFQRBqIAcQAkEBdGoiCC0AACELIAVBEGogCC0AARABIAMgCzoAACAGIAVB2ABqIAcQAkEBdGoiCC0AACELIAVB2ABqIAgtAAEQASAAIAs6AAEgBiAFQUBrIAcQAkEBdGoiCC0AACELIAVBQGsgCC0AARABIAIgCzoAASAGIAVBKGogBxACQQF0aiIILQAAIQsgBUEoaiAILQABEAEgBCALOgABIAYgBUEQaiAHEAJBAXRqIggtAAAhCyAFQRBqIAgtAAEQASADIAs6AAEgA0ECaiEDIARBAmohBCACQQJqIQIgAEECaiEAIAkgBUHYAGoQDUVxIAVBQGsQDUVxIAVBKGoQDUVxIAVBEGoQDUVxIQkMAQsLIAQgDUsgAiAMS3INAEFsIQkgACAKSw0BIApBfWohCQNAIAVB2ABqEAQgACAJT3JFBEAgBiAFQdgAaiAHEAJBAXRqIggtAAAhCyAFQdgAaiAILQABEAEgACALOgAAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAASAAQQJqIQAMAQsLA0AgBUHYAGoQBCAAIApPckUEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCwNAIAAgCkkEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCyAMQX1qIQADQCAFQUBrEAQgAiAAT3JFBEAgBiAFQUBrIAcQAkEBdGoiCi0AACEJIAVBQGsgCi0AARABIAIgCToAACAGIAVBQGsgBxACQQF0aiIKLQAAIQkgBUFAayAKLQABEAEgAiAJOgABIAJBAmohAgwBCwsDQCAFQUBrEAQgAiAMT3JFBEAgBiAFQUBrIAcQAkEBdGoiAC0AACEKIAVBQGsgAC0AARABIAIgCjoAACACQQFqIQIMAQsLA0AgAiAMSQRAIAYgBUFAayAHEAJBAXRqIgAtAAAhCiAFQUBrIAAtAAEQASACIAo6AAAgAkEBaiECDAELCyANQX1qIQADQCAFQShqEAQgBCAAT3JFBEAgBiAFQShqIAcQAkEBdGoiAi0AACEKIAVBKGogAi0AARABIAQgCjoAACAGIAVBKGogBxACQQF0aiICLQAAIQogBUEoaiACLQABEAEgBCAKOgABIARBAmohBAwBCwsDQCAFQShqEAQgBCANT3JFBEAgBiAFQShqIAcQAkEBdGoiAC0AACECIAVBKGogAC0AARABIAQgAjoAACAEQQFqIQQMAQsLA0AgBCANSQRAIAYgBUEoaiAHEAJBAXRqIgAtAAAhAiAFQShqIAAtAAEQASAEIAI6AAAgBEEBaiEEDAELCwNAIAVBEGoQBCADIA9PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIAYgBUEQaiAHEAJBAXRqIgAtAAAhAiAFQRBqIAAtAAEQASADIAI6AAEgA0ECaiEDDAELCwNAIAVBEGoQBCADIA5PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIANBAWohAwwBCwsDQCADIA5JBEAgBiAFQRBqIAcQAkEBdGoiAC0AACECIAVBEGogAC0AARABIAMgAjoAACADQQFqIQMMAQsLIAFBbCAFQdgAahAKIAVBQGsQCnEgBUEoahAKcSAFQRBqEApxGyEJDAELQWwhCQsgBUHwAGokACAJC8oCAQR/IwBBIGsiBSQAIAUgBBAOIAUtAAIhByAFQQhqIAIgAxAGIgIQA0UEQCAEQQRqIQIgACABaiIDQX1qIQQDQCAFQQhqEAQgACAET3JFBEAgAiAFQQhqIAcQAkEBdGoiBi0AACEIIAVBCGogBi0AARABIAAgCDoAACACIAVBCGogBxACQQF0aiIGLQAAIQggBUEIaiAGLQABEAEgACAIOgABIABBAmohAAwBCwsDQCAFQQhqEAQgACADT3JFBEAgAiAFQQhqIAcQAkEBdGoiBC0AACEGIAVBCGogBC0AARABIAAgBjoAACAAQQFqIQAMAQsLA0AgACADT0UEQCACIAVBCGogBxACQQF0aiIELQAAIQYgBUEIaiAELQABEAEgACAGOgAAIABBAWohAAwBCwsgAUFsIAVBCGoQChshAgsgBUEgaiQAIAILtgMBCX8jAEEQayIGJAAgBkEANgIMIAZBADYCCEFUIQQCQAJAIANBQGsiDCADIAZBCGogBkEMaiABIAIQMSICEAMNACAGQQRqIAAQDiAGKAIMIgcgBi0ABEEBaksNASAAQQRqIQogBkEAOgAFIAYgBzoABiAAIAYoAgQ2AgAgB0EBaiEJQQEhBANAIAQgCUkEQCADIARBAnRqIgEoAgAhACABIAU2AgAgACAEQX9qdCAFaiEFIARBAWohBAwBCwsgB0EBaiEHQQAhBSAGKAIIIQkDQCAFIAlGDQEgAyAFIAxqLQAAIgRBAnRqIgBBASAEdEEBdSILIAAoAgAiAWoiADYCACAHIARrIQhBACEEAkAgC0EDTQRAA0AgBCALRg0CIAogASAEakEBdGoiACAIOgABIAAgBToAACAEQQFqIQQMAAALAAsDQCABIABPDQEgCiABQQF0aiIEIAg6AAEgBCAFOgAAIAQgCDoAAyAEIAU6AAIgBCAIOgAFIAQgBToABCAEIAg6AAcgBCAFOgAGIAFBBGohAQwAAAsACyAFQQFqIQUMAAALAAsgAiEECyAGQRBqJAAgBAutAQECfwJAQYQgKAIAIABHIAAoAgBBAXYiAyABa0F4aiICQXhxQQhHcgR/IAIFIAMQJ0UNASACQQhqC0EQSQ0AIAAgACgCACICQQFxIAAgAWpBD2pBeHEiASAAa0EBdHI2AgAgASAANgIEIAEgASgCAEEBcSAAIAJBAXZqIAFrIgJBAXRyNgIAQYQgIAEgAkH/////B3FqQQRqQYQgKAIAIABGGyABNgIAIAEQJQsLygIBBX8CQAJAAkAgAEEIIABBCEsbZ0EfcyAAaUEBR2oiAUEESSAAIAF2cg0AIAFBAnRB/B5qKAIAIgJFDQADQCACQXhqIgMoAgBBAXZBeGoiBSAATwRAIAIgBUEIIAVBCEsbZ0Efc0ECdEGAH2oiASgCAEYEQCABIAIoAgQ2AgALDAMLIARBHksNASAEQQFqIQQgAigCBCICDQALC0EAIQMgAUEgTw0BA0AgAUECdEGAH2ooAgAiAkUEQCABQR5LIQIgAUEBaiEBIAJFDQEMAwsLIAIgAkF4aiIDKAIAQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgBGBEAgASACKAIENgIACwsgAigCACIBBEAgASACKAIENgIECyACKAIEIgEEQCABIAIoAgA2AgALIAMgAygCAEEBcjYCACADIAAQNwsgAwvhCwINfwV+IwBB8ABrIgckACAHIAAoAvDhASIINgJcIAEgAmohDSAIIAAoAoDiAWohDwJAAkAgBUUEQCABIQQMAQsgACgCxOABIRAgACgCwOABIREgACgCvOABIQ4gAEEBNgKM4QFBACEIA0AgCEEDRwRAIAcgCEECdCICaiAAIAJqQazQAWooAgA2AkQgCEEBaiEIDAELC0FsIQwgB0EYaiADIAQQBhADDQEgB0EsaiAHQRhqIAAoAgAQEyAHQTRqIAdBGGogACgCCBATIAdBPGogB0EYaiAAKAIEEBMgDUFgaiESIAEhBEEAIQwDQCAHKAIwIAcoAixBA3RqKQIAIhRCEIinQf8BcSEIIAcoAkAgBygCPEEDdGopAgAiFUIQiKdB/wFxIQsgBygCOCAHKAI0QQN0aikCACIWQiCIpyEJIBVCIIghFyAUQiCIpyECAkAgFkIQiKdB/wFxIgNBAk8EQAJAIAZFIANBGUlyRQRAIAkgB0EYaiADQSAgBygCHGsiCiAKIANLGyIKEAUgAyAKayIDdGohCSAHQRhqEAQaIANFDQEgB0EYaiADEAUgCWohCQwBCyAHQRhqIAMQBSAJaiEJIAdBGGoQBBoLIAcpAkQhGCAHIAk2AkQgByAYNwNIDAELAkAgA0UEQCACBEAgBygCRCEJDAMLIAcoAkghCQwBCwJAAkAgB0EYakEBEAUgCSACRWpqIgNBA0YEQCAHKAJEQX9qIgMgA0VqIQkMAQsgA0ECdCAHaigCRCIJIAlFaiEJIANBAUYNAQsgByAHKAJINgJMCwsgByAHKAJENgJIIAcgCTYCRAsgF6chAyALBEAgB0EYaiALEAUgA2ohAwsgCCALakEUTwRAIAdBGGoQBBoLIAgEQCAHQRhqIAgQBSACaiECCyAHQRhqEAQaIAcgB0EYaiAUQhiIp0H/AXEQCCAUp0H//wNxajYCLCAHIAdBGGogFUIYiKdB/wFxEAggFadB//8DcWo2AjwgB0EYahAEGiAHIAdBGGogFkIYiKdB/wFxEAggFqdB//8DcWo2AjQgByACNgJgIAcoAlwhCiAHIAk2AmggByADNgJkAkACQAJAIAQgAiADaiILaiASSw0AIAIgCmoiEyAPSw0AIA0gBGsgC0Egak8NAQsgByAHKQNoNwMQIAcgBykDYDcDCCAEIA0gB0EIaiAHQdwAaiAPIA4gESAQEB4hCwwBCyACIARqIQggBCAKEAcgAkERTwRAIARBEGohAgNAIAIgCkEQaiIKEAcgAkEQaiICIAhJDQALCyAIIAlrIQIgByATNgJcIAkgCCAOa0sEQCAJIAggEWtLBEBBbCELDAILIBAgAiAOayICaiIKIANqIBBNBEAgCCAKIAMQDxoMAgsgCCAKQQAgAmsQDyEIIAcgAiADaiIDNgJkIAggAmshCCAOIQILIAlBEE8EQCADIAhqIQMDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALDAELAkAgCUEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgCUECdCIDQcAeaigCAGoiAhAXIAIgA0HgHmooAgBrIQIgBygCZCEDDAELIAggAhAMCyADQQlJDQAgAyAIaiEDIAhBCGoiCCACQQhqIgJrQQ9MBEADQCAIIAIQDCACQQhqIQIgCEEIaiIIIANJDQAMAgALAAsDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALCyAHQRhqEAQaIAsgDCALEAMiAhshDCAEIAQgC2ogAhshBCAFQX9qIgUNAAsgDBADDQFBbCEMIAdBGGoQBEECSQ0BQQAhCANAIAhBA0cEQCAAIAhBAnQiAmpBrNABaiACIAdqKAJENgIAIAhBAWohCAwBCwsgBygCXCEIC0G6fyEMIA8gCGsiACANIARrSw0AIAQEfyAEIAggABALIABqBUEACyABayEMCyAHQfAAaiQAIAwLkRcCFn8FfiMAQdABayIHJAAgByAAKALw4QEiCDYCvAEgASACaiESIAggACgCgOIBaiETAkACQCAFRQRAIAEhAwwBCyAAKALE4AEhESAAKALA4AEhFSAAKAK84AEhDyAAQQE2AozhAUEAIQgDQCAIQQNHBEAgByAIQQJ0IgJqIAAgAmpBrNABaigCADYCVCAIQQFqIQgMAQsLIAcgETYCZCAHIA82AmAgByABIA9rNgJoQWwhECAHQShqIAMgBBAGEAMNASAFQQQgBUEESBshFyAHQTxqIAdBKGogACgCABATIAdBxABqIAdBKGogACgCCBATIAdBzABqIAdBKGogACgCBBATQQAhBCAHQeAAaiEMIAdB5ABqIQoDQCAHQShqEARBAksgBCAXTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEJIAcoAkggBygCREEDdGopAgAiH0IgiKchCCAeQiCIISAgHUIgiKchAgJAIB9CEIinQf8BcSIDQQJPBEACQCAGRSADQRlJckUEQCAIIAdBKGogA0EgIAcoAixrIg0gDSADSxsiDRAFIAMgDWsiA3RqIQggB0EoahAEGiADRQ0BIAdBKGogAxAFIAhqIQgMAQsgB0EoaiADEAUgCGohCCAHQShqEAQaCyAHKQJUISEgByAINgJUIAcgITcDWAwBCwJAIANFBEAgAgRAIAcoAlQhCAwDCyAHKAJYIQgMAQsCQAJAIAdBKGpBARAFIAggAkVqaiIDQQNGBEAgBygCVEF/aiIDIANFaiEIDAELIANBAnQgB2ooAlQiCCAIRWohCCADQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAg2AlQLICCnIQMgCQRAIAdBKGogCRAFIANqIQMLIAkgC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgAmohAgsgB0EoahAEGiAHIAcoAmggAmoiCSADajYCaCAKIAwgCCAJSxsoAgAhDSAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogB0EoaiAfQhiIp0H/AXEQCCEOIAdB8ABqIARBBHRqIgsgCSANaiAIazYCDCALIAg2AgggCyADNgIEIAsgAjYCACAHIA4gH6dB//8DcWo2AkQgBEEBaiEEDAELCyAEIBdIDQEgEkFgaiEYIAdB4ABqIRogB0HkAGohGyABIQMDQCAHQShqEARBAksgBCAFTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEIIAcoAkggBygCREEDdGopAgAiH0IgiKchCSAeQiCIISAgHUIgiKchDAJAIB9CEIinQf8BcSICQQJPBEACQCAGRSACQRlJckUEQCAJIAdBKGogAkEgIAcoAixrIgogCiACSxsiChAFIAIgCmsiAnRqIQkgB0EoahAEGiACRQ0BIAdBKGogAhAFIAlqIQkMAQsgB0EoaiACEAUgCWohCSAHQShqEAQaCyAHKQJUISEgByAJNgJUIAcgITcDWAwBCwJAIAJFBEAgDARAIAcoAlQhCQwDCyAHKAJYIQkMAQsCQAJAIAdBKGpBARAFIAkgDEVqaiICQQNGBEAgBygCVEF/aiICIAJFaiEJDAELIAJBAnQgB2ooAlQiCSAJRWohCSACQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAk2AlQLICCnIRQgCARAIAdBKGogCBAFIBRqIRQLIAggC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgDGohDAsgB0EoahAEGiAHIAcoAmggDGoiGSAUajYCaCAbIBogCSAZSxsoAgAhHCAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogByAHQShqIB9CGIinQf8BcRAIIB+nQf//A3FqNgJEIAcgB0HwAGogBEEDcUEEdGoiDSkDCCIdNwPIASAHIA0pAwAiHjcDwAECQAJAAkAgBygCvAEiDiAepyICaiIWIBNLDQAgAyAHKALEASIKIAJqIgtqIBhLDQAgEiADayALQSBqTw0BCyAHIAcpA8gBNwMQIAcgBykDwAE3AwggAyASIAdBCGogB0G8AWogEyAPIBUgERAeIQsMAQsgAiADaiEIIAMgDhAHIAJBEU8EQCADQRBqIQIDQCACIA5BEGoiDhAHIAJBEGoiAiAISQ0ACwsgCCAdpyIOayECIAcgFjYCvAEgDiAIIA9rSwRAIA4gCCAVa0sEQEFsIQsMAgsgESACIA9rIgJqIhYgCmogEU0EQCAIIBYgChAPGgwCCyAIIBZBACACaxAPIQggByACIApqIgo2AsQBIAggAmshCCAPIQILIA5BEE8EQCAIIApqIQoDQCAIIAIQByACQRBqIQIgCEEQaiIIIApJDQALDAELAkAgDkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgDkECdCIKQcAeaigCAGoiAhAXIAIgCkHgHmooAgBrIQIgBygCxAEhCgwBCyAIIAIQDAsgCkEJSQ0AIAggCmohCiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAKSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAKSQ0ACwsgCxADBEAgCyEQDAQFIA0gDDYCACANIBkgHGogCWs2AgwgDSAJNgIIIA0gFDYCBCAEQQFqIQQgAyALaiEDDAILAAsLIAQgBUgNASAEIBdrIQtBACEEA0AgCyAFSARAIAcgB0HwAGogC0EDcUEEdGoiAikDCCIdNwPIASAHIAIpAwAiHjcDwAECQAJAAkAgBygCvAEiDCAepyICaiIKIBNLDQAgAyAHKALEASIJIAJqIhBqIBhLDQAgEiADayAQQSBqTw0BCyAHIAcpA8gBNwMgIAcgBykDwAE3AxggAyASIAdBGGogB0G8AWogEyAPIBUgERAeIRAMAQsgAiADaiEIIAMgDBAHIAJBEU8EQCADQRBqIQIDQCACIAxBEGoiDBAHIAJBEGoiAiAISQ0ACwsgCCAdpyIGayECIAcgCjYCvAEgBiAIIA9rSwRAIAYgCCAVa0sEQEFsIRAMAgsgESACIA9rIgJqIgwgCWogEU0EQCAIIAwgCRAPGgwCCyAIIAxBACACaxAPIQggByACIAlqIgk2AsQBIAggAmshCCAPIQILIAZBEE8EQCAIIAlqIQYDQCAIIAIQByACQRBqIQIgCEEQaiIIIAZJDQALDAELAkAgBkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgBkECdCIGQcAeaigCAGoiAhAXIAIgBkHgHmooAgBrIQIgBygCxAEhCQwBCyAIIAIQDAsgCUEJSQ0AIAggCWohBiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAGSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAGSQ0ACwsgEBADDQMgC0EBaiELIAMgEGohAwwBCwsDQCAEQQNHBEAgACAEQQJ0IgJqQazQAWogAiAHaigCVDYCACAEQQFqIQQMAQsLIAcoArwBIQgLQbp/IRAgEyAIayIAIBIgA2tLDQAgAwR/IAMgCCAAEAsgAGoFQQALIAFrIRALIAdB0AFqJAAgEAslACAAQgA3AgAgAEEAOwEIIABBADoACyAAIAE2AgwgACACOgAKC7QFAQN/IwBBMGsiBCQAIABB/wFqIgVBfWohBgJAIAMvAQIEQCAEQRhqIAEgAhAGIgIQAw0BIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahASOgAAIAMgBEEIaiAEQRhqEBI6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0FIAEgBEEQaiAEQRhqEBI6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBSABIARBCGogBEEYahASOgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEjoAACABIAJqIABrIQIMAwsgAyAEQRBqIARBGGoQEjoAAiADIARBCGogBEEYahASOgADIANBBGohAwwAAAsACyAEQRhqIAEgAhAGIgIQAw0AIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahAROgAAIAMgBEEIaiAEQRhqEBE6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0EIAEgBEEQaiAEQRhqEBE6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBCABIARBCGogBEEYahAROgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEToAACABIAJqIABrIQIMAgsgAyAEQRBqIARBGGoQEToAAiADIARBCGogBEEYahAROgADIANBBGohAwwAAAsACyAEQTBqJAAgAgtpAQF/An8CQAJAIAJBB00NACABKAAAQbfIwuF+Rw0AIAAgASgABDYCmOIBQWIgAEEQaiABIAIQPiIDEAMNAhogAEKBgICAEDcDiOEBIAAgASADaiACIANrECoMAQsgACABIAIQKgtBAAsLrQMBBn8jAEGAAWsiAyQAQWIhCAJAIAJBCUkNACAAQZjQAGogAUEIaiIEIAJBeGogAEGY0AAQMyIFEAMiBg0AIANBHzYCfCADIANB/ABqIANB+ABqIAQgBCAFaiAGGyIEIAEgAmoiAiAEaxAVIgUQAw0AIAMoAnwiBkEfSw0AIAMoAngiB0EJTw0AIABBiCBqIAMgBkGAC0GADCAHEBggA0E0NgJ8IAMgA0H8AGogA0H4AGogBCAFaiIEIAIgBGsQFSIFEAMNACADKAJ8IgZBNEsNACADKAJ4IgdBCk8NACAAQZAwaiADIAZBgA1B4A4gBxAYIANBIzYCfCADIANB/ABqIANB+ABqIAQgBWoiBCACIARrEBUiBRADDQAgAygCfCIGQSNLDQAgAygCeCIHQQpPDQAgACADIAZBwBBB0BEgBxAYIAQgBWoiBEEMaiIFIAJLDQAgAiAFayEFQQAhAgNAIAJBA0cEQCAEKAAAIgZBf2ogBU8NAiAAIAJBAnRqQZzQAWogBjYCACACQQFqIQIgBEEEaiEEDAELCyAEIAFrIQgLIANBgAFqJAAgCAtGAQN/IABBCGohAyAAKAIEIQJBACEAA0AgACACdkUEQCABIAMgAEEDdGotAAJBFktqIQEgAEEBaiEADAELCyABQQggAmt0C4YDAQV/Qbh/IQcCQCADRQ0AIAItAAAiBEUEQCABQQA2AgBBAUG4fyADQQFGGw8LAn8gAkEBaiIFIARBGHRBGHUiBkF/Sg0AGiAGQX9GBEAgA0EDSA0CIAUvAABBgP4BaiEEIAJBA2oMAQsgA0ECSA0BIAItAAEgBEEIdHJBgIB+aiEEIAJBAmoLIQUgASAENgIAIAVBAWoiASACIANqIgNLDQBBbCEHIABBEGogACAFLQAAIgVBBnZBI0EJIAEgAyABa0HAEEHQEUHwEiAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBmCBqIABBCGogBUEEdkEDcUEfQQggASABIAZqIAgbIgEgAyABa0GAC0GADEGAFyAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBoDBqIABBBGogBUECdkEDcUE0QQkgASABIAZqIAgbIgEgAyABa0GADUHgDkGQGSAAKAKM4QEgACgCnOIBIAQQHyIAEAMNACAAIAFqIAJrIQcLIAcLrQMBCn8jAEGABGsiCCQAAn9BUiACQf8BSw0AGkFUIANBDEsNABogAkEBaiELIABBBGohCUGAgAQgA0F/anRBEHUhCkEAIQJBASEEQQEgA3QiB0F/aiIMIQUDQCACIAtGRQRAAkAgASACQQF0Ig1qLwEAIgZB//8DRgRAIAkgBUECdGogAjoAAiAFQX9qIQVBASEGDAELIARBACAKIAZBEHRBEHVKGyEECyAIIA1qIAY7AQAgAkEBaiECDAELCyAAIAQ7AQIgACADOwEAIAdBA3YgB0EBdmpBA2ohBkEAIQRBACECA0AgBCALRkUEQCABIARBAXRqLgEAIQpBACEAA0AgACAKTkUEQCAJIAJBAnRqIAQ6AAIDQCACIAZqIAxxIgIgBUsNAAsgAEEBaiEADAELCyAEQQFqIQQMAQsLQX8gAg0AGkEAIQIDfyACIAdGBH9BAAUgCCAJIAJBAnRqIgAtAAJBAXRqIgEgAS8BACIBQQFqOwEAIAAgAyABEBRrIgU6AAMgACABIAVB/wFxdCAHazsBACACQQFqIQIMAQsLCyEFIAhBgARqJAAgBQvjBgEIf0FsIQcCQCACQQNJDQACQAJAAkACQCABLQAAIgNBA3EiCUEBaw4DAwEAAgsgACgCiOEBDQBBYg8LIAJBBUkNAkEDIQYgASgAACEFAn8CQAJAIANBAnZBA3EiCEF+aiIEQQFNBEAgBEEBaw0BDAILIAVBDnZB/wdxIQQgBUEEdkH/B3EhAyAIRQwCCyAFQRJ2IQRBBCEGIAVBBHZB//8AcSEDQQAMAQsgBUEEdkH//w9xIgNBgIAISw0DIAEtAARBCnQgBUEWdnIhBEEFIQZBAAshBSAEIAZqIgogAksNAgJAIANBgQZJDQAgACgCnOIBRQ0AQQAhAgNAIAJBg4ABSw0BIAJBQGshAgwAAAsACwJ/IAlBA0YEQCABIAZqIQEgAEHw4gFqIQIgACgCDCEGIAUEQCACIAMgASAEIAYQXwwCCyACIAMgASAEIAYQXQwBCyAAQbjQAWohAiABIAZqIQEgAEHw4gFqIQYgAEGo0ABqIQggBQRAIAggBiADIAEgBCACEF4MAQsgCCAGIAMgASAEIAIQXAsQAw0CIAAgAzYCgOIBIABBATYCiOEBIAAgAEHw4gFqNgLw4QEgCUECRgRAIAAgAEGo0ABqNgIMCyAAIANqIgBBiOMBakIANwAAIABBgOMBakIANwAAIABB+OIBakIANwAAIABB8OIBakIANwAAIAoPCwJ/AkACQAJAIANBAnZBA3FBf2oiBEECSw0AIARBAWsOAgACAQtBASEEIANBA3YMAgtBAiEEIAEvAABBBHYMAQtBAyEEIAEQIUEEdgsiAyAEaiIFQSBqIAJLBEAgBSACSw0CIABB8OIBaiABIARqIAMQCyEBIAAgAzYCgOIBIAAgATYC8OEBIAEgA2oiAEIANwAYIABCADcAECAAQgA3AAggAEIANwAAIAUPCyAAIAM2AoDiASAAIAEgBGo2AvDhASAFDwsCfwJAAkACQCADQQJ2QQNxQX9qIgRBAksNACAEQQFrDgIAAgELQQEhByADQQN2DAILQQIhByABLwAAQQR2DAELIAJBBEkgARAhIgJBj4CAAUtyDQFBAyEHIAJBBHYLIQIgAEHw4gFqIAEgB2otAAAgAkEgahAQIQEgACACNgKA4gEgACABNgLw4QEgB0EBaiEHCyAHC0sAIABC+erQ0OfJoeThADcDICAAQgA3AxggAELP1tO+0ser2UI3AxAgAELW64Lu6v2J9eAANwMIIABCADcDACAAQShqQQBBKBAQGgviAgICfwV+IABBKGoiASAAKAJIaiECAn4gACkDACIDQiBaBEAgACkDECIEQgeJIAApAwgiBUIBiXwgACkDGCIGQgyJfCAAKQMgIgdCEol8IAUQGSAEEBkgBhAZIAcQGQwBCyAAKQMYQsXP2bLx5brqJ3wLIAN8IQMDQCABQQhqIgAgAk0EQEIAIAEpAAAQCSADhUIbiUKHla+vmLbem55/fkLj3MqV/M7y9YV/fCEDIAAhAQwBCwsCQCABQQRqIgAgAksEQCABIQAMAQsgASgAAK1Ch5Wvr5i23puef34gA4VCF4lCz9bTvtLHq9lCfkL5893xmfaZqxZ8IQMLA0AgACACSQRAIAAxAABCxc/ZsvHluuonfiADhUILiUKHla+vmLbem55/fiEDIABBAWohAAwBCwsgA0IhiCADhULP1tO+0ser2UJ+IgNCHYggA4VC+fPd8Zn2masWfiIDQiCIIAOFC+8CAgJ/BH4gACAAKQMAIAKtfDcDAAJAAkAgACgCSCIDIAJqIgRBH00EQCABRQ0BIAAgA2pBKGogASACECAgACgCSCACaiEEDAELIAEgAmohAgJ/IAMEQCAAQShqIgQgA2ogAUEgIANrECAgACAAKQMIIAQpAAAQCTcDCCAAIAApAxAgACkAMBAJNwMQIAAgACkDGCAAKQA4EAk3AxggACAAKQMgIABBQGspAAAQCTcDICAAKAJIIQMgAEEANgJIIAEgA2tBIGohAQsgAUEgaiACTQsEQCACQWBqIQMgACkDICEFIAApAxghBiAAKQMQIQcgACkDCCEIA0AgCCABKQAAEAkhCCAHIAEpAAgQCSEHIAYgASkAEBAJIQYgBSABKQAYEAkhBSABQSBqIgEgA00NAAsgACAFNwMgIAAgBjcDGCAAIAc3AxAgACAINwMICyABIAJPDQEgAEEoaiABIAIgAWsiBBAgCyAAIAQ2AkgLCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQEBogAwVBun8LCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQCxogAwVBun8LC6gCAQZ/IwBBEGsiByQAIABB2OABaikDAEKAgIAQViEIQbh/IQUCQCAEQf//B0sNACAAIAMgBBBCIgUQAyIGDQAgACgCnOIBIQkgACAHQQxqIAMgAyAFaiAGGyIKIARBACAFIAYbayIGEEAiAxADBEAgAyEFDAELIAcoAgwhBCABRQRAQbp/IQUgBEEASg0BCyAGIANrIQUgAyAKaiEDAkAgCQRAIABBADYCnOIBDAELAkACQAJAIARBBUgNACAAQdjgAWopAwBCgICACFgNAAwBCyAAQQA2ApziAQwBCyAAKAIIED8hBiAAQQA2ApziASAGQRRPDQELIAAgASACIAMgBSAEIAgQOSEFDAELIAAgASACIAMgBSAEIAgQOiEFCyAHQRBqJAAgBQtnACAAQdDgAWogASACIAAoAuzhARAuIgEQAwRAIAEPC0G4fyECAkAgAQ0AIABB7OABaigCACIBBEBBYCECIAAoApjiASABRw0BC0EAIQIgAEHw4AFqKAIARQ0AIABBkOEBahBDCyACCycBAX8QVyIERQRAQUAPCyAEIAAgASACIAMgBBBLEE8hACAEEFYgAAs/AQF/AkACQAJAIAAoAqDiAUEBaiIBQQJLDQAgAUEBaw4CAAECCyAAEDBBAA8LIABBADYCoOIBCyAAKAKU4gELvAMCB38BfiMAQRBrIgkkAEG4fyEGAkAgBCgCACIIQQVBCSAAKALs4QEiBRtJDQAgAygCACIHQQFBBSAFGyAFEC8iBRADBEAgBSEGDAELIAggBUEDakkNACAAIAcgBRBJIgYQAw0AIAEgAmohCiAAQZDhAWohCyAIIAVrIQIgBSAHaiEHIAEhBQNAIAcgAiAJECwiBhADDQEgAkF9aiICIAZJBEBBuH8hBgwCCyAJKAIAIghBAksEQEFsIQYMAgsgB0EDaiEHAn8CQAJAAkAgCEEBaw4CAgABCyAAIAUgCiAFayAHIAYQSAwCCyAFIAogBWsgByAGEEcMAQsgBSAKIAVrIActAAAgCSgCCBBGCyIIEAMEQCAIIQYMAgsgACgC8OABBEAgCyAFIAgQRQsgAiAGayECIAYgB2ohByAFIAhqIQUgCSgCBEUNAAsgACkD0OABIgxCf1IEQEFsIQYgDCAFIAFrrFINAQsgACgC8OABBEBBaiEGIAJBBEkNASALEEQhDCAHKAAAIAynRw0BIAdBBGohByACQXxqIQILIAMgBzYCACAEIAI2AgAgBSABayEGCyAJQRBqJAAgBgsuACAAECsCf0EAQQAQAw0AGiABRSACRXJFBEBBYiAAIAEgAhA9EAMNARoLQQALCzcAIAEEQCAAIAAoAsTgASABKAIEIAEoAghqRzYCnOIBCyAAECtBABADIAFFckUEQCAAIAEQWwsL0QIBB38jAEEQayIGJAAgBiAENgIIIAYgAzYCDCAFBEAgBSgCBCEKIAUoAgghCQsgASEIAkACQANAIAAoAuzhARAWIQsCQANAIAQgC0kNASADKAAAQXBxQdDUtMIBRgRAIAMgBBAiIgcQAw0EIAQgB2shBCADIAdqIQMMAQsLIAYgAzYCDCAGIAQ2AggCQCAFBEAgACAFEE5BACEHQQAQA0UNAQwFCyAAIAogCRBNIgcQAw0ECyAAIAgQUCAMQQFHQQAgACAIIAIgBkEMaiAGQQhqEEwiByIDa0EAIAMQAxtBCkdyRQRAQbh/IQcMBAsgBxADDQMgAiAHayECIAcgCGohCEEBIQwgBigCDCEDIAYoAgghBAwBCwsgBiADNgIMIAYgBDYCCEG4fyEHIAQNASAIIAFrIQcMAQsgBiADNgIMIAYgBDYCCAsgBkEQaiQAIAcLRgECfyABIAAoArjgASICRwRAIAAgAjYCxOABIAAgATYCuOABIAAoArzgASEDIAAgATYCvOABIAAgASADIAJrajYCwOABCwutAgIEfwF+IwBBQGoiBCQAAkACQCACQQhJDQAgASgAAEFwcUHQ1LTCAUcNACABIAIQIiEBIABCADcDCCAAQQA2AgQgACABNgIADAELIARBGGogASACEC0iAxADBEAgACADEBoMAQsgAwRAIABBuH8QGgwBCyACIAQoAjAiA2shAiABIANqIQMDQAJAIAAgAyACIARBCGoQLCIFEAMEfyAFBSACIAVBA2oiBU8NAUG4fwsQGgwCCyAGQQFqIQYgAiAFayECIAMgBWohAyAEKAIMRQ0ACyAEKAI4BEAgAkEDTQRAIABBuH8QGgwCCyADQQRqIQMLIAQoAighAiAEKQMYIQcgAEEANgIEIAAgAyABazYCACAAIAIgBmytIAcgB0J/URs3AwgLIARBQGskAAslAQF/IwBBEGsiAiQAIAIgACABEFEgAigCACEAIAJBEGokACAAC30BBH8jAEGQBGsiBCQAIARB/wE2AggCQCAEQRBqIARBCGogBEEMaiABIAIQFSIGEAMEQCAGIQUMAQtBVCEFIAQoAgwiB0EGSw0AIAMgBEEQaiAEKAIIIAcQQSIFEAMNACAAIAEgBmogAiAGayADEDwhBQsgBEGQBGokACAFC4cBAgJ/An5BABAWIQMCQANAIAEgA08EQAJAIAAoAABBcHFB0NS0wgFGBEAgACABECIiAhADRQ0BQn4PCyAAIAEQVSIEQn1WDQMgBCAFfCIFIARUIQJCfiEEIAINAyAAIAEQUiICEAMNAwsgASACayEBIAAgAmohAAwBCwtCfiAFIAEbIQQLIAQLPwIBfwF+IwBBMGsiAiQAAn5CfiACQQhqIAAgARAtDQAaQgAgAigCHEEBRg0AGiACKQMICyEDIAJBMGokACADC40BAQJ/IwBBMGsiASQAAkAgAEUNACAAKAKI4gENACABIABB/OEBaigCADYCKCABIAApAvThATcDICAAEDAgACgCqOIBIQIgASABKAIoNgIYIAEgASkDIDcDECACIAFBEGoQGyAAQQA2AqjiASABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALKgECfyMAQRBrIgAkACAAQQA2AgggAEIANwMAIAAQWCEBIABBEGokACABC4cBAQN/IwBBEGsiAiQAAkAgACgCAEUgACgCBEVzDQAgAiAAKAIINgIIIAIgACkCADcDAAJ/IAIoAgAiAQRAIAIoAghBqOMJIAERBQAMAQtBqOMJECgLIgFFDQAgASAAKQIANwL04QEgAUH84QFqIAAoAgg2AgAgARBZIAEhAwsgAkEQaiQAIAMLywEBAn8jAEEgayIBJAAgAEGBgIDAADYCtOIBIABBADYCiOIBIABBADYC7OEBIABCADcDkOIBIABBADYCpOMJIABBADYC3OIBIABCADcCzOIBIABBADYCvOIBIABBADYCxOABIABCADcCnOIBIABBpOIBakIANwIAIABBrOIBakEANgIAIAFCADcCECABQgA3AhggASABKQMYNwMIIAEgASkDEDcDACABKAIIQQh2QQFxIQIgAEEANgLg4gEgACACNgKM4gEgAUEgaiQAC3YBA38jAEEwayIBJAAgAARAIAEgAEHE0AFqIgIoAgA2AiggASAAKQK80AE3AyAgACgCACEDIAEgAigCADYCGCABIAApArzQATcDECADIAFBEGoQGyABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALzAEBAX8gACABKAK00AE2ApjiASAAIAEoAgQiAjYCwOABIAAgAjYCvOABIAAgAiABKAIIaiICNgK44AEgACACNgLE4AEgASgCuNABBEAgAEKBgICAEDcDiOEBIAAgAUGk0ABqNgIMIAAgAUGUIGo2AgggACABQZwwajYCBCAAIAFBDGo2AgAgAEGs0AFqIAFBqNABaigCADYCACAAQbDQAWogAUGs0AFqKAIANgIAIABBtNABaiABQbDQAWooAgA2AgAPCyAAQgA3A4jhAQs7ACACRQRAQbp/DwsgBEUEQEFsDwsgAiAEEGAEQCAAIAEgAiADIAQgBRBhDwsgACABIAIgAyAEIAUQZQtGAQF/IwBBEGsiBSQAIAVBCGogBBAOAn8gBS0ACQRAIAAgASACIAMgBBAyDAELIAAgASACIAMgBBA0CyEAIAVBEGokACAACzQAIAAgAyAEIAUQNiIFEAMEQCAFDwsgBSAESQR/IAEgAiADIAVqIAQgBWsgABA1BUG4fwsLRgEBfyMAQRBrIgUkACAFQQhqIAQQDgJ/IAUtAAkEQCAAIAEgAiADIAQQYgwBCyAAIAEgAiADIAQQNQshACAFQRBqJAAgAAtZAQF/QQ8hAiABIABJBEAgAUEEdCAAbiECCyAAQQh2IgEgAkEYbCIAQYwIaigCAGwgAEGICGooAgBqIgJBA3YgAmogAEGACGooAgAgAEGECGooAgAgAWxqSQs3ACAAIAMgBCAFQYAQEDMiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQMgVBuH8LC78DAQN/IwBBIGsiBSQAIAVBCGogAiADEAYiAhADRQRAIAAgAWoiB0F9aiEGIAUgBBAOIARBBGohAiAFLQACIQMDQEEAIAAgBkkgBUEIahAEGwRAIAAgAiAFQQhqIAMQAkECdGoiBC8BADsAACAFQQhqIAQtAAIQASAAIAQtAANqIgQgAiAFQQhqIAMQAkECdGoiAC8BADsAACAFQQhqIAAtAAIQASAEIAAtAANqIQAMAQUgB0F+aiEEA0AgBUEIahAEIAAgBEtyRQRAIAAgAiAFQQhqIAMQAkECdGoiBi8BADsAACAFQQhqIAYtAAIQASAAIAYtAANqIQAMAQsLA0AgACAES0UEQCAAIAIgBUEIaiADEAJBAnRqIgYvAQA7AAAgBUEIaiAGLQACEAEgACAGLQADaiEADAELCwJAIAAgB08NACAAIAIgBUEIaiADEAIiA0ECdGoiAC0AADoAACAALQADQQFGBEAgBUEIaiAALQACEAEMAQsgBSgCDEEfSw0AIAVBCGogAiADQQJ0ai0AAhABIAUoAgxBIUkNACAFQSA2AgwLIAFBbCAFQQhqEAobIQILCwsgBUEgaiQAIAILkgIBBH8jAEFAaiIJJAAgCSADQTQQCyEDAkAgBEECSA0AIAMgBEECdGooAgAhCSADQTxqIAgQIyADQQE6AD8gAyACOgA+QQAhBCADKAI8IQoDQCAEIAlGDQEgACAEQQJ0aiAKNgEAIARBAWohBAwAAAsAC0EAIQkDQCAGIAlGRQRAIAMgBSAJQQF0aiIKLQABIgtBAnRqIgwoAgAhBCADQTxqIAotAABBCHQgCGpB//8DcRAjIANBAjoAPyADIAcgC2siCiACajoAPiAEQQEgASAKa3RqIQogAygCPCELA0AgACAEQQJ0aiALNgEAIARBAWoiBCAKSQ0ACyAMIAo2AgAgCUEBaiEJDAELCyADQUBrJAALowIBCX8jAEHQAGsiCSQAIAlBEGogBUE0EAsaIAcgBmshDyAHIAFrIRADQAJAIAMgCkcEQEEBIAEgByACIApBAXRqIgYtAAEiDGsiCGsiC3QhDSAGLQAAIQ4gCUEQaiAMQQJ0aiIMKAIAIQYgCyAPTwRAIAAgBkECdGogCyAIIAUgCEE0bGogCCAQaiIIQQEgCEEBShsiCCACIAQgCEECdGooAgAiCEEBdGogAyAIayAHIA4QYyAGIA1qIQgMAgsgCUEMaiAOECMgCUEBOgAPIAkgCDoADiAGIA1qIQggCSgCDCELA0AgBiAITw0CIAAgBkECdGogCzYBACAGQQFqIQYMAAALAAsgCUHQAGokAA8LIAwgCDYCACAKQQFqIQoMAAALAAs0ACAAIAMgBCAFEDYiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQNAVBuH8LCyMAIAA/AEEQdGtB//8DakEQdkAAQX9GBEBBAA8LQQAQAEEBCzsBAX8gAgRAA0AgACABIAJBgCAgAkGAIEkbIgMQCyEAIAFBgCBqIQEgAEGAIGohACACIANrIgINAAsLCwYAIAAQAwsLqBUJAEGICAsNAQAAAAEAAAACAAAAAgBBoAgLswYBAAAAAQAAAAIAAAACAAAAJgAAAIIAAAAhBQAASgAAAGcIAAAmAAAAwAEAAIAAAABJBQAASgAAAL4IAAApAAAALAIAAIAAAABJBQAASgAAAL4IAAAvAAAAygIAAIAAAACKBQAASgAAAIQJAAA1AAAAcwMAAIAAAACdBQAASgAAAKAJAAA9AAAAgQMAAIAAAADrBQAASwAAAD4KAABEAAAAngMAAIAAAABNBgAASwAAAKoKAABLAAAAswMAAIAAAADBBgAATQAAAB8NAABNAAAAUwQAAIAAAAAjCAAAUQAAAKYPAABUAAAAmQQAAIAAAABLCQAAVwAAALESAABYAAAA2gQAAIAAAABvCQAAXQAAACMUAABUAAAARQUAAIAAAABUCgAAagAAAIwUAABqAAAArwUAAIAAAAB2CQAAfAAAAE4QAAB8AAAA0gIAAIAAAABjBwAAkQAAAJAHAACSAAAAAAAAAAEAAAABAAAABQAAAA0AAAAdAAAAPQAAAH0AAAD9AAAA/QEAAP0DAAD9BwAA/Q8AAP0fAAD9PwAA/X8AAP3/AAD9/wEA/f8DAP3/BwD9/w8A/f8fAP3/PwD9/38A/f//AP3//wH9//8D/f//B/3//w/9//8f/f//P/3//38AAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACUAAAAnAAAAKQAAACsAAAAvAAAAMwAAADsAAABDAAAAUwAAAGMAAACDAAAAAwEAAAMCAAADBAAAAwgAAAMQAAADIAAAA0AAAAOAAAADAAEAQeAPC1EBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAQcQQC4sBAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABIAAAAUAAAAFgAAABgAAAAcAAAAIAAAACgAAAAwAAAAQAAAAIAAAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAQAAAAIAAAAAAAQBBkBIL5gQBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAAAEAAAAEAAAACAAAAAAAAAABAAEBBgAAAAAAAAQAAAAAEAAABAAAAAAgAAAFAQAAAAAAAAUDAAAAAAAABQQAAAAAAAAFBgAAAAAAAAUHAAAAAAAABQkAAAAAAAAFCgAAAAAAAAUMAAAAAAAABg4AAAAAAAEFEAAAAAAAAQUUAAAAAAABBRYAAAAAAAIFHAAAAAAAAwUgAAAAAAAEBTAAAAAgAAYFQAAAAAAABwWAAAAAAAAIBgABAAAAAAoGAAQAAAAADAYAEAAAIAAABAAAAAAAAAAEAQAAAAAAAAUCAAAAIAAABQQAAAAAAAAFBQAAACAAAAUHAAAAAAAABQgAAAAgAAAFCgAAAAAAAAULAAAAAAAABg0AAAAgAAEFEAAAAAAAAQUSAAAAIAABBRYAAAAAAAIFGAAAACAAAwUgAAAAAAADBSgAAAAAAAYEQAAAABAABgRAAAAAIAAHBYAAAAAAAAkGAAIAAAAACwYACAAAMAAABAAAAAAQAAAEAQAAACAAAAUCAAAAIAAABQMAAAAgAAAFBQAAACAAAAUGAAAAIAAABQgAAAAgAAAFCQAAACAAAAULAAAAIAAABQwAAAAAAAAGDwAAACAAAQUSAAAAIAABBRQAAAAgAAIFGAAAACAAAgUcAAAAIAADBSgAAAAgAAQFMAAAAAAAEAYAAAEAAAAPBgCAAAAAAA4GAEAAAAAADQYAIABBgBcLhwIBAAEBBQAAAAAAAAUAAAAAAAAGBD0AAAAAAAkF/QEAAAAADwX9fwAAAAAVBf3/HwAAAAMFBQAAAAAABwR9AAAAAAAMBf0PAAAAABIF/f8DAAAAFwX9/38AAAAFBR0AAAAAAAgE/QAAAAAADgX9PwAAAAAUBf3/DwAAAAIFAQAAABAABwR9AAAAAAALBf0HAAAAABEF/f8BAAAAFgX9/z8AAAAEBQ0AAAAQAAgE/QAAAAAADQX9HwAAAAATBf3/BwAAAAEFAQAAABAABgQ9AAAAAAAKBf0DAAAAABAF/f8AAAAAHAX9//8PAAAbBf3//wcAABoF/f//AwAAGQX9//8BAAAYBf3//wBBkBkLhgQBAAEBBgAAAAAAAAYDAAAAAAAABAQAAAAgAAAFBQAAAAAAAAUGAAAAAAAABQgAAAAAAAAFCQAAAAAAAAULAAAAAAAABg0AAAAAAAAGEAAAAAAAAAYTAAAAAAAABhYAAAAAAAAGGQAAAAAAAAYcAAAAAAAABh8AAAAAAAAGIgAAAAAAAQYlAAAAAAABBikAAAAAAAIGLwAAAAAAAwY7AAAAAAAEBlMAAAAAAAcGgwAAAAAACQYDAgAAEAAABAQAAAAAAAAEBQAAACAAAAUGAAAAAAAABQcAAAAgAAAFCQAAAAAAAAUKAAAAAAAABgwAAAAAAAAGDwAAAAAAAAYSAAAAAAAABhUAAAAAAAAGGAAAAAAAAAYbAAAAAAAABh4AAAAAAAAGIQAAAAAAAQYjAAAAAAABBicAAAAAAAIGKwAAAAAAAwYzAAAAAAAEBkMAAAAAAAUGYwAAAAAACAYDAQAAIAAABAQAAAAwAAAEBAAAABAAAAQFAAAAIAAABQcAAAAgAAAFCAAAACAAAAUKAAAAIAAABQsAAAAAAAAGDgAAAAAAAAYRAAAAAAAABhQAAAAAAAAGFwAAAAAAAAYaAAAAAAAABh0AAAAAAAAGIAAAAAAAEAYDAAEAAAAPBgOAAAAAAA4GA0AAAAAADQYDIAAAAAAMBgMQAAAAAAsGAwgAAAAACgYDBABBpB0L2QEBAAAAAwAAAAcAAAAPAAAAHwAAAD8AAAB/AAAA/wAAAP8BAAD/AwAA/wcAAP8PAAD/HwAA/z8AAP9/AAD//wAA//8BAP//AwD//wcA//8PAP//HwD//z8A//9/AP///wD///8B////A////wf///8P////H////z////9/AAAAAAEAAAACAAAABAAAAAAAAAACAAAABAAAAAgAAAAAAAAAAQAAAAIAAAABAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAACAAAAAcAAAAIAAAACQAAAAoAAAALAEGgIAsDwBBQ",te={315:"Artist",258:"BitsPerSample",265:"CellLength",264:"CellWidth",320:"ColorMap",259:"Compression",33432:"Copyright",306:"DateTime",338:"ExtraSamples",266:"FillOrder",289:"FreeByteCounts",288:"FreeOffsets",291:"GrayResponseCurve",290:"GrayResponseUnit",316:"HostComputer",270:"ImageDescription",257:"ImageLength",256:"ImageWidth",271:"Make",281:"MaxSampleValue",280:"MinSampleValue",272:"Model",254:"NewSubfileType",274:"Orientation",262:"PhotometricInterpretation",284:"PlanarConfiguration",296:"ResolutionUnit",278:"RowsPerStrip",277:"SamplesPerPixel",305:"Software",279:"StripByteCounts",273:"StripOffsets",255:"SubfileType",263:"Threshholding",282:"XResolution",283:"YResolution",326:"BadFaxLines",327:"CleanFaxData",343:"ClipPath",328:"ConsecutiveBadFaxLines",433:"Decode",434:"DefaultImageColor",269:"DocumentName",336:"DotRange",321:"HalftoneHints",346:"Indexed",347:"JPEGTables",285:"PageName",297:"PageNumber",317:"Predictor",319:"PrimaryChromaticities",532:"ReferenceBlackWhite",339:"SampleFormat",340:"SMinSampleValue",341:"SMaxSampleValue",559:"StripRowCounts",330:"SubIFDs",292:"T4Options",293:"T6Options",325:"TileByteCounts",323:"TileLength",324:"TileOffsets",322:"TileWidth",301:"TransferFunction",318:"WhitePoint",344:"XClipPathUnits",286:"XPosition",529:"YCbCrCoefficients",531:"YCbCrPositioning",530:"YCbCrSubSampling",345:"YClipPathUnits",287:"YPosition",37378:"ApertureValue",40961:"ColorSpace",36868:"DateTimeDigitized",36867:"DateTimeOriginal",34665:"Exif IFD",36864:"ExifVersion",33434:"ExposureTime",41728:"FileSource",37385:"Flash",40960:"FlashpixVersion",33437:"FNumber",42016:"ImageUniqueID",37384:"LightSource",37500:"MakerNote",37377:"ShutterSpeedValue",37510:"UserComment",33723:"IPTC",34675:"ICC Profile",700:"XMP",42112:"GDAL_METADATA",42113:"GDAL_NODATA",34377:"Photoshop",33550:"ModelPixelScale",33922:"ModelTiepoint",34264:"ModelTransformation",34735:"GeoKeyDirectory",34736:"GeoDoubleParams",34737:"GeoAsciiParams",50674:"LercParameters"},ie={};for(var re in te)te.hasOwnProperty(re)&&(ie[te[re]]=parseInt(re,10));ie.BitsPerSample,ie.ExtraSamples,ie.SampleFormat,ie.StripByteCounts,ie.StripOffsets,ie.StripRowCounts,ie.TileByteCounts,ie.TileOffsets,ie.SubIFDs;var Ie={1:"BYTE",2:"ASCII",3:"SHORT",4:"LONG",5:"RATIONAL",6:"SBYTE",7:"UNDEFINED",8:"SSHORT",9:"SLONG",10:"SRATIONAL",11:"FLOAT",12:"DOUBLE",13:"IFD",16:"LONG8",17:"SLONG8",18:"IFD8"},ge={};for(var ne in Ie)Ie.hasOwnProperty(ne)&&(ge[Ie[ne]]=parseInt(ne,10));var ae=1,oe=0,Be=1,Ce=2,Qe={1024:"GTModelTypeGeoKey",1025:"GTRasterTypeGeoKey",1026:"GTCitationGeoKey",2048:"GeographicTypeGeoKey",2049:"GeogCitationGeoKey",2050:"GeogGeodeticDatumGeoKey",2051:"GeogPrimeMeridianGeoKey",2052:"GeogLinearUnitsGeoKey",2053:"GeogLinearUnitSizeGeoKey",2054:"GeogAngularUnitsGeoKey",2055:"GeogAngularUnitSizeGeoKey",2056:"GeogEllipsoidGeoKey",2057:"GeogSemiMajorAxisGeoKey",2058:"GeogSemiMinorAxisGeoKey",2059:"GeogInvFlatteningGeoKey",2060:"GeogAzimuthUnitsGeoKey",2061:"GeogPrimeMeridianLongGeoKey",2062:"GeogTOWGS84GeoKey",3072:"ProjectedCSTypeGeoKey",3073:"PCSCitationGeoKey",3074:"ProjectionGeoKey",3075:"ProjCoordTransGeoKey",3076:"ProjLinearUnitsGeoKey",3077:"ProjLinearUnitSizeGeoKey",3078:"ProjStdParallel1GeoKey",3079:"ProjStdParallel2GeoKey",3080:"ProjNatOriginLongGeoKey",3081:"ProjNatOriginLatGeoKey",3082:"ProjFalseEastingGeoKey",3083:"ProjFalseNorthingGeoKey",3084:"ProjFalseOriginLongGeoKey",3085:"ProjFalseOriginLatGeoKey",3086:"ProjFalseOriginEastingGeoKey",3087:"ProjFalseOriginNorthingGeoKey",3088:"ProjCenterLongGeoKey",3089:"ProjCenterLatGeoKey",3090:"ProjCenterEastingGeoKey",3091:"ProjCenterNorthingGeoKey",3092:"ProjScaleAtNatOriginGeoKey",3093:"ProjScaleAtCenterGeoKey",3094:"ProjAzimuthAngleGeoKey",3095:"ProjStraightVertPoleLongGeoKey",3096:"ProjRectifiedGridAngleGeoKey",4096:"VerticalCSTypeGeoKey",4097:"VerticalCitationGeoKey",4098:"VerticalDatumGeoKey",4099:"VerticalUnitsGeoKey"},Ee={};for(var se in Qe)Qe.hasOwnProperty(se)&&(Ee[Qe[se]]=parseInt(se,10));function fe(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var ce=new Ae,he=function(A){s(t,w);var e=fe(t);function t(A){var i;return B(this,t),(i=e.call(this)).planarConfiguration=void 0!==A.PlanarConfiguration?A.PlanarConfiguration:1,i.samplesPerPixel=void 0!==A.SamplesPerPixel?A.SamplesPerPixel:1,i.addCompression=A.LercParameters[ae],i}return Q(t,[{key:"decodeBlock",value:function(A){switch(this.addCompression){case oe:break;case Be:A=YA(new Uint8Array(A)).buffer;break;case Ce:A=ce.decode(new Uint8Array(A)).buffer;break;default:throw new Error("Unsupported LERC additional compression method identifier: ".concat(this.addCompression))}return zA.decode(A,{returnPixelInterleavedDims:1===this.planarConfiguration}).pixels[0].buffer}}]),t}(),le=Object.freeze({__proto__:null,zstd:ce,default:he});function ue(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var we=function(A){s(I,w);var t,i=ue(I);function I(){var A;if(B(this,I),A=i.call(this),"undefined"==typeof createImageBitmap)throw new Error("Cannot decode WebImage as `createImageBitmap` is not available");if("undefined"==typeof document&&"undefined"==typeof OffscreenCanvas)throw new Error("Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available");return A}return Q(I,[{key:"decode",value:(t=e(r.mark((function A(e,t){var i,I,g,n;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return i=new Blob([t]),A.next=3,createImageBitmap(i);case 3:return I=A.sent,"undefined"!=typeof document?((g=document.createElement("canvas")).width=I.width,g.height=I.height):g=new OffscreenCanvas(I.width,I.height),(n=g.getContext("2d")).drawImage(I,0,0),A.abrupt("return",n.getImageData(0,0,I.width,I.height).data.buffer);case 8:case"end":return A.stop()}}),A)}))),function(A,e){return t.apply(this,arguments)})}]),I}(),de=Object.freeze({__proto__:null,default:we});';return new i("undefined"!=typeof Buffer?"data:application/javascript;base64,"+Buffer.from(A,"binary").toString("base64"):URL.createObjectURL(new Blob([A],{type:"application/javascript"})))}}}]); +//# sourceMappingURL=145.embed-bundle.js.map \ No newline at end of file diff --git a/docs/source/_static/145.embed-bundle.js.map b/docs/source/_static/145.embed-bundle.js.map new file mode 100644 index 0000000..a5614a4 --- /dev/null +++ b/docs/source/_static/145.embed-bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"145.embed-bundle.js","mappings":"yIAgBA,eCde,SAASA,IACd,MAAMC,EAAS,4ohHACf,OAAO,IAAI,EAAyB,oBAAXC,OACrB,sCAAwCA,OAAOC,KAAKF,EAAQ,UAAUG,SAAS,UAC/EC,IAAIC,gBAAgB,IAAIC,KAAK,CAACN,GAAS,CAACO,KAAM,4BACpD,C","sources":["webpack://ipyopenlayers/./node_modules/web-worker/browser.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/worker/decoder.js"],"sourcesContent":["/**\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport default Worker;\n","\n import Worker from 'web-worker';\n export function create() {\n const source = \"function A(A,e,t,i,r,I,g){try{var n=A[I](g),a=n.value}catch(A){return void t(A)}n.done?e(a):Promise.resolve(a).then(i,r)}function e(e){return function(){var t=this,i=arguments;return new Promise((function(r,I){var g=e.apply(t,i);function n(e){A(g,r,I,n,a,\\\"next\\\",e)}function a(e){A(g,r,I,n,a,\\\"throw\\\",e)}n(void 0)}))}}function t(A){return t=\\\"function\\\"==typeof Symbol&&\\\"symbol\\\"==typeof Symbol.iterator?function(A){return typeof A}:function(A){return A&&\\\"function\\\"==typeof Symbol&&A.constructor===Symbol&&A!==Symbol.prototype?\\\"symbol\\\":typeof A},t(A)}var i={exports:{}};!function(A){var e=function(A){var e,i=Object.prototype,r=i.hasOwnProperty,I=\\\"function\\\"==typeof Symbol?Symbol:{},g=I.iterator||\\\"@@iterator\\\",n=I.asyncIterator||\\\"@@asyncIterator\\\",a=I.toStringTag||\\\"@@toStringTag\\\";function o(A,e,t){return Object.defineProperty(A,e,{value:t,enumerable:!0,configurable:!0,writable:!0}),A[e]}try{o({},\\\"\\\")}catch(A){o=function(A,e,t){return A[e]=t}}function B(A,e,t,i){var r=e&&e.prototype instanceof h?e:h,I=Object.create(r.prototype),g=new S(i||[]);return I._invoke=function(A,e,t){var i=Q;return function(r,I){if(i===s)throw new Error(\\\"Generator is already running\\\");if(i===f){if(\\\"throw\\\"===r)throw I;return R()}for(t.method=r,t.arg=I;;){var g=t.delegate;if(g){var n=m(g,t);if(n){if(n===c)continue;return n}}if(\\\"next\\\"===t.method)t.sent=t._sent=t.arg;else if(\\\"throw\\\"===t.method){if(i===Q)throw i=f,t.arg;t.dispatchException(t.arg)}else\\\"return\\\"===t.method&&t.abrupt(\\\"return\\\",t.arg);i=s;var a=C(A,e,t);if(\\\"normal\\\"===a.type){if(i=t.done?f:E,a.arg===c)continue;return{value:a.arg,done:t.done}}\\\"throw\\\"===a.type&&(i=f,t.method=\\\"throw\\\",t.arg=a.arg)}}}(A,t,g),I}function C(A,e,t){try{return{type:\\\"normal\\\",arg:A.call(e,t)}}catch(A){return{type:\\\"throw\\\",arg:A}}}A.wrap=B;var Q=\\\"suspendedStart\\\",E=\\\"suspendedYield\\\",s=\\\"executing\\\",f=\\\"completed\\\",c={};function h(){}function l(){}function u(){}var w={};o(w,g,(function(){return this}));var d=Object.getPrototypeOf,D=d&&d(d(v([])));D&&D!==i&&r.call(D,g)&&(w=D);var y=u.prototype=h.prototype=Object.create(w);function k(A){[\\\"next\\\",\\\"throw\\\",\\\"return\\\"].forEach((function(e){o(A,e,(function(A){return this._invoke(e,A)}))}))}function p(A,e){function i(I,g,n,a){var o=C(A[I],A,g);if(\\\"throw\\\"!==o.type){var B=o.arg,Q=B.value;return Q&&\\\"object\\\"===t(Q)&&r.call(Q,\\\"__await\\\")?e.resolve(Q.__await).then((function(A){i(\\\"next\\\",A,n,a)}),(function(A){i(\\\"throw\\\",A,n,a)})):e.resolve(Q).then((function(A){B.value=A,n(B)}),(function(A){return i(\\\"throw\\\",A,n,a)}))}a(o.arg)}var I;this._invoke=function(A,t){function r(){return new e((function(e,r){i(A,t,e,r)}))}return I=I?I.then(r,r):r()}}function m(A,t){var i=A.iterator[t.method];if(i===e){if(t.delegate=null,\\\"throw\\\"===t.method){if(A.iterator.return&&(t.method=\\\"return\\\",t.arg=e,m(A,t),\\\"throw\\\"===t.method))return c;t.method=\\\"throw\\\",t.arg=new TypeError(\\\"The iterator does not provide a 'throw' method\\\")}return c}var r=C(i,A.iterator,t.arg);if(\\\"throw\\\"===r.type)return t.method=\\\"throw\\\",t.arg=r.arg,t.delegate=null,c;var I=r.arg;return I?I.done?(t[A.resultName]=I.value,t.next=A.nextLoc,\\\"return\\\"!==t.method&&(t.method=\\\"next\\\",t.arg=e),t.delegate=null,c):I:(t.method=\\\"throw\\\",t.arg=new TypeError(\\\"iterator result is not an object\\\"),t.delegate=null,c)}function G(A){var e={tryLoc:A[0]};1 in A&&(e.catchLoc=A[1]),2 in A&&(e.finallyLoc=A[2],e.afterLoc=A[3]),this.tryEntries.push(e)}function F(A){var e=A.completion||{};e.type=\\\"normal\\\",delete e.arg,A.completion=e}function S(A){this.tryEntries=[{tryLoc:\\\"root\\\"}],A.forEach(G,this),this.reset(!0)}function v(A){if(A){var t=A[g];if(t)return t.call(A);if(\\\"function\\\"==typeof A.next)return A;if(!isNaN(A.length)){var i=-1,I=function t(){for(;++i=0;--I){var g=this.tryEntries[I],n=g.completion;if(\\\"root\\\"===g.tryLoc)return i(\\\"end\\\");if(g.tryLoc<=this.prev){var a=r.call(g,\\\"catchLoc\\\"),o=r.call(g,\\\"finallyLoc\\\");if(a&&o){if(this.prev=0;--t){var i=this.tryEntries[t];if(i.tryLoc<=this.prev&&r.call(i,\\\"finallyLoc\\\")&&this.prev=0;--e){var t=this.tryEntries[e];if(t.finallyLoc===A)return this.complete(t.completion,t.afterLoc),F(t),c}},catch:function(A){for(var e=this.tryEntries.length-1;e>=0;--e){var t=this.tryEntries[e];if(t.tryLoc===A){var i=t.completion;if(\\\"throw\\\"===i.type){var r=i.arg;F(t)}return r}}throw new Error(\\\"illegal catch attempt\\\")},delegateYield:function(A,t,i){return this.delegate={iterator:v(A),resultName:t,nextLoc:i},\\\"next\\\"===this.method&&(this.arg=e),c}},A}(A.exports);try{regeneratorRuntime=e}catch(A){\\\"object\\\"===(\\\"undefined\\\"==typeof globalThis?\\\"undefined\\\":t(globalThis))?globalThis.regeneratorRuntime=e:Function(\\\"r\\\",\\\"regeneratorRuntime = r\\\")(e)}}(i);var r=i.exports,I=new Map;function g(A,e){Array.isArray(A)||(A=[A]),A.forEach((function(A){return I.set(A,e)}))}function n(A){return a.apply(this,arguments)}function a(){return(a=e(r.mark((function A(e){var t,i;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:if(t=I.get(e.Compression)){A.next=3;break}throw new Error(\\\"Unknown compression method identifier: \\\".concat(e.Compression));case 3:return A.next=5,t();case 5:return i=A.sent,A.abrupt(\\\"return\\\",new i(e));case 7:case\\\"end\\\":return A.stop()}}),A)})))).apply(this,arguments)}g([void 0,1],(function(){return Promise.resolve().then((function(){return y})).then((function(A){return A.default}))})),g(5,(function(){return Promise.resolve().then((function(){return F})).then((function(A){return A.default}))})),g(6,(function(){throw new Error(\\\"old style JPEG compression is not supported.\\\")})),g(7,(function(){return Promise.resolve().then((function(){return N})).then((function(A){return A.default}))})),g([8,32946],(function(){return Promise.resolve().then((function(){return OA})).then((function(A){return A.default}))})),g(32773,(function(){return Promise.resolve().then((function(){return _A})).then((function(A){return A.default}))})),g(34887,(function(){return Promise.resolve().then((function(){return le})).then(function(){var A=e(r.mark((function A(e){return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return A.next=2,e.zstd.init();case 2:return A.abrupt(\\\"return\\\",e);case 3:case\\\"end\\\":return A.stop()}}),A)})));return function(e){return A.apply(this,arguments)}}()).then((function(A){return A.default}))})),g(50001,(function(){return Promise.resolve().then((function(){return de})).then((function(A){return A.default}))}));var o=globalThis;function B(A,e){if(!(A instanceof e))throw new TypeError(\\\"Cannot call a class as a function\\\")}function C(A,e){for(var t=0;t0;r--)A[i+e]+=A[i],i++;t-=e}while(t>0)}function l(A,e,t){for(var i=0,r=A.length,I=r/t;r>e;){for(var g=e;g>0;--g)A[i+e]+=A[i],++i;r-=e}for(var n=A.slice(),a=0;a=A.byteLength);++o){var B=void 0;if(2===e){switch(r[0]){case 8:B=new Uint8Array(A,o*a*t*n,a*t*n);break;case 16:B=new Uint16Array(A,o*a*t*n,a*t*n/2);break;case 32:B=new Uint32Array(A,o*a*t*n,a*t*n/4);break;default:throw new Error(\\\"Predictor 2 not allowed with \\\".concat(r[0],\\\" bits per sample.\\\"))}h(B,a)}else 3===e&&l(B=new Uint8Array(A,o*a*t*n,a*t*n),a,n)}return A}o.addEventListener(\\\"message\\\",function(){var A=e(r.mark((function A(e){var t,i,I,g,a,B;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return t=e.data,i=t.id,I=t.fileDirectory,g=t.buffer,A.next=3,n(I);case 3:return a=A.sent,A.next=6,a.decode(I,g);case 6:B=A.sent,o.postMessage({decoded:B,id:i},[B]);case 8:case\\\"end\\\":return A.stop()}}),A)})));return function(e){return A.apply(this,arguments)}}());var w=function(){function A(){B(this,A)}var t;return Q(A,[{key:\\\"decode\\\",value:(t=e(r.mark((function A(e,t){var i,I,g,n,a;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return A.next=2,this.decodeBlock(t);case 2:if(i=A.sent,1===(I=e.Predictor||1)){A.next=9;break}return g=!e.StripOffsets,n=g?e.TileWidth:e.ImageWidth,a=g?e.TileLength:e.RowsPerStrip||e.ImageLength,A.abrupt(\\\"return\\\",u(i,I,n,a,e.BitsPerSample,e.PlanarConfiguration));case 9:return A.abrupt(\\\"return\\\",i);case 10:case\\\"end\\\":return A.stop()}}),A,this)}))),function(A,e){return t.apply(this,arguments)})}]),A}();function d(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var D=function(A){s(t,w);var e=d(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){return A}}]),t}(),y=Object.freeze({__proto__:null,default:D});function k(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}function p(A,e){for(var t=e.length-1;t>=0;t--)A.push(e[t]);return A}function m(A){for(var e=new Uint16Array(4093),t=new Uint8Array(4093),i=0;i<=257;i++)e[i]=4096,t[i]=i;var r=258,I=9,g=0;function n(){r=258,I=9}function a(A){var e=function(A,e,t){var i=e%8,r=Math.floor(e/8),I=8-i,g=e+t-8*(r+1),n=8*(r+2)-(e+t),a=8*(r+2)-e;if(n=Math.max(0,n),r>=A.length)return console.warn(\\\"ran off the end of the buffer before finding EOI_CODE (end on input code)\\\"),257;var o=A[r]&Math.pow(2,8-i)-1,B=o<<=t-I;if(r+1>>n;B+=C<<=Math.max(0,t-a)}if(g>8&&r+2>>Q}return B}(A,g,I);return g+=I,e}function o(A,i){return t[r]=i,e[r]=A,++r-1}function B(A){for(var i=[],r=A;4096!==r;r=e[r])i.push(t[r]);return i}var C=[];n();for(var Q,E=new Uint8Array(A),s=a(E);257!==s;){if(256===s){for(n(),s=a(E);256===s;)s=a(E);if(257===s)break;if(s>256)throw new Error(\\\"corrupted code at scanline \\\".concat(s));p(C,B(s)),Q=s}else if(s=Math.pow(2,I)&&(12===I?Q=void 0:I++),s=a(E)}return new Uint8Array(C)}var G=function(A){s(t,w);var e=k(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){return m(A).buffer}}]),t}(),F=Object.freeze({__proto__:null,default:G});function S(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var v=new Int32Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]);function R(A,e){for(var t=0,i=[],r=16;r>0&&!A[r-1];)--r;i.push({children:[],index:0});for(var I,g=i[0],n=0;n0;)g=i.pop();for(g.index++,i.push(g);i.length<=n;)i.push(I={children:[],index:0}),g.children[g.index]=I.children,g=I;t++}n+10)return f--,s>>f&1;if(255===(s=A[E++])){var e=A[E++];if(e)throw new Error(\\\"unexpected marker: \\\".concat((s<<8|e).toString(16)))}return f=7,s>>>7}function h(A){for(var e,i=A;null!==(e=c());){if(\\\"number\\\"==typeof(i=i[e]))return i;if(\\\"object\\\"!==t(i))throw new Error(\\\"invalid huffman sequence\\\")}return null}function l(A){for(var e=A,t=0;e>0;){var i=c();if(null===i)return;t=t<<1|i,--e}return t}function u(A){var e=l(A);return e>=1<0)w--;else for(var t=g,i=n;t<=i;){var r=h(A.huffmanTableAC),I=15&r,a=r>>4;if(0===I){if(a<15){w=l(a)+(1<>4,0===C)r<15?(w=l(r)+(1<>4;if(0===g){if(n<15)break;r+=16}else e[v[r+=n]]=u(g),r++}};var L,b,M=0;b=1===U?r[0].blocksPerLine*r[0].blocksPerColumn:B*i.mcusPerColumn;for(var N=I||b;M=65488&&L<=65495))break;E+=2}return E-Q}function L(A,e){var t=[],i=e.blocksPerLine,r=e.blocksPerColumn,I=i<<3,g=new Int32Array(64),n=new Uint8Array(64);function a(A,t,i){var r,I,g,n,a,o,B,C,Q,E,s=e.quantizationTable,f=i;for(E=0;E<64;E++)f[E]=A[E]*s[E];for(E=0;E<8;++E){var c=8*E;0!==f[1+c]||0!==f[2+c]||0!==f[3+c]||0!==f[4+c]||0!==f[5+c]||0!==f[6+c]||0!==f[7+c]?(r=5793*f[0+c]+128>>8,I=5793*f[4+c]+128>>8,g=f[2+c],n=f[6+c],a=2896*(f[1+c]-f[7+c])+128>>8,C=2896*(f[1+c]+f[7+c])+128>>8,o=f[3+c]<<4,Q=r-I+1>>1,r=r+I+1>>1,I=Q,Q=3784*g+1567*n+128>>8,g=1567*g-3784*n+128>>8,n=Q,Q=a-(B=f[5+c]<<4)+1>>1,a=a+B+1>>1,B=Q,Q=C+o+1>>1,o=C-o+1>>1,C=Q,Q=r-n+1>>1,r=r+n+1>>1,n=Q,Q=I-g+1>>1,I=I+g+1>>1,g=Q,Q=2276*a+3406*C+2048>>12,a=3406*a-2276*C+2048>>12,C=Q,Q=799*o+4017*B+2048>>12,o=4017*o-799*B+2048>>12,B=Q,f[0+c]=r+C,f[7+c]=r-C,f[1+c]=I+B,f[6+c]=I-B,f[2+c]=g+o,f[5+c]=g-o,f[3+c]=n+a,f[4+c]=n-a):(Q=5793*f[0+c]+512>>10,f[0+c]=Q,f[1+c]=Q,f[2+c]=Q,f[3+c]=Q,f[4+c]=Q,f[5+c]=Q,f[6+c]=Q,f[7+c]=Q)}for(E=0;E<8;++E){var h=E;0!==f[8+h]||0!==f[16+h]||0!==f[24+h]||0!==f[32+h]||0!==f[40+h]||0!==f[48+h]||0!==f[56+h]?(r=5793*f[0+h]+2048>>12,I=5793*f[32+h]+2048>>12,g=f[16+h],n=f[48+h],a=2896*(f[8+h]-f[56+h])+2048>>12,C=2896*(f[8+h]+f[56+h])+2048>>12,o=f[24+h],Q=r-I+1>>1,r=r+I+1>>1,I=Q,Q=3784*g+1567*n+2048>>12,g=1567*g-3784*n+2048>>12,n=Q,Q=a-(B=f[40+h])+1>>1,a=a+B+1>>1,B=Q,Q=C+o+1>>1,o=C-o+1>>1,C=Q,Q=r-n+1>>1,r=r+n+1>>1,n=Q,Q=I-g+1>>1,I=I+g+1>>1,g=Q,Q=2276*a+3406*C+2048>>12,a=3406*a-2276*C+2048>>12,C=Q,Q=799*o+4017*B+2048>>12,o=4017*o-799*B+2048>>12,B=Q,f[0+h]=r+C,f[56+h]=r-C,f[8+h]=I+B,f[48+h]=I-B,f[16+h]=g+o,f[40+h]=g-o,f[24+h]=n+a,f[32+h]=n-a):(Q=5793*i[E+0]+8192>>14,f[0+h]=Q,f[8+h]=Q,f[16+h]=Q,f[24+h]=Q,f[32+h]=Q,f[40+h]=Q,f[48+h]=Q,f[56+h]=Q)}for(E=0;E<64;++E){var l=128+(f[E]+8>>4);t[E]=l<0?0:l>255?255:l}}for(var o=0;o>4==0)for(var C=0;C<64;C++){B[v[C]]=A[e++]}else{if(o>>4!=1)throw new Error(\\\"DQT: invalid table spec\\\");for(var Q=0;Q<64;Q++){B[v[Q]]=t()}}this.quantizationTables[15&o]=B}break;case 65472:case 65473:case 65474:t();for(var E={extended:65473===g,progressive:65474===g,precision:A[e++],scanLines:t(),samplesPerLine:t(),components:{},componentsOrder:[]},s=A[e++],f=void 0,c=0;c>4,l=15&A[e+1],u=A[e+2];E.componentsOrder.push(f),E.components[f]={h:h,v:l,quantizationIdx:u},e+=3}i(E),this.frames.push(E);break;case 65476:for(var w=t(),d=2;d>4==0?this.huffmanTablesDC[15&D]=R(y,m):this.huffmanTablesAC[15&D]=R(y,m)}break;case 65501:t(),this.resetInterval=t();break;case 65498:t();for(var F=A[e++],S=[],L=this.frames[0],b=0;b>4],M.huffmanTableAC=this.huffmanTablesAC[15&N],S.push(M)}var x=A[e++],J=A[e++],q=A[e++],Y=U(A,e,L,S,this.resetInterval,x,J,q>>4,15&q);e+=Y;break;case 65535:255!==A[e]&&e--;break;default:if(255===A[e-3]&&A[e-2]>=192&&A[e-2]<=254){e-=3;break}throw new Error(\\\"unknown JPEG marker \\\".concat(g.toString(16)))}g=t()}}},{key:\\\"getResult\\\",value:function(){var A=this.frames;if(0===this.frames.length)throw new Error(\\\"no frames were decoded\\\");this.frames.length>1&&console.warn(\\\"more than one frame is not supported\\\");for(var e=0;e=0;)A[e]=0}x(new Array(576)),x(new Array(60)),x(new Array(512)),x(new Array(256)),x(new Array(29)),x(new Array(30));var J=function(A,e,t,i){for(var r=65535&A|0,I=A>>>16&65535|0,g=0;0!==t;){t-=g=t>2e3?2e3:t;do{I=I+(r=r+e[i++]|0)|0}while(--g);r%=65521,I%=65521}return r|I<<16|0},q=new Uint32Array(function(){for(var A,e=[],t=0;t<256;t++){A=t;for(var i=0;i<8;i++)A=1&A?3988292384^A>>>1:A>>>1;e[t]=A}return e}()),Y=function(A,e,t,i){var r=q,I=i+t;A^=-1;for(var g=i;g>>8^r[255&(A^e[g])];return-1^A},K={2:\\\"need dictionary\\\",1:\\\"stream end\\\",0:\\\"\\\",\\\"-1\\\":\\\"file error\\\",\\\"-2\\\":\\\"stream error\\\",\\\"-3\\\":\\\"data error\\\",\\\"-4\\\":\\\"insufficient memory\\\",\\\"-5\\\":\\\"buffer error\\\",\\\"-6\\\":\\\"incompatible version\\\"},H={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8},O=function(A,e){return Object.prototype.hasOwnProperty.call(A,e)},P=function(A){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var i=e.shift();if(i){if(\\\"object\\\"!==t(i))throw new TypeError(i+\\\"must be non-object\\\");for(var r in i)O(i,r)&&(A[r]=i[r])}}return A},T=function(A){for(var e=0,t=0,i=A.length;t=252?6:X>=248?5:X>=240?4:X>=224?3:X>=192?2:1;_[254]=_[254]=1;var Z=function(A){if(\\\"function\\\"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(A);var e,t,i,r,I,g=A.length,n=0;for(r=0;r>>6,e[I++]=128|63&t):t<65536?(e[I++]=224|t>>>12,e[I++]=128|t>>>6&63,e[I++]=128|63&t):(e[I++]=240|t>>>18,e[I++]=128|t>>>12&63,e[I++]=128|t>>>6&63,e[I++]=128|63&t);return e},j=function(A,e){var t,i,r=e||A.length;if(\\\"function\\\"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(A.subarray(0,e));var I=new Array(2*r);for(i=0,t=0;t4)I[i++]=65533,t+=n-1;else{for(g&=2===n?31:3===n?15:7;n>1&&t1?I[i++]=65533:g<65536?I[i++]=g:(g-=65536,I[i++]=55296|g>>10&1023,I[i++]=56320|1023&g)}}}return function(A,e){if(e<65534&&A.subarray&&V)return String.fromCharCode.apply(null,A.length===e?A:A.subarray(0,e));for(var t=\\\"\\\",i=0;iA.length&&(e=A.length);for(var t=e-1;t>=0&&128==(192&A[t]);)t--;return t<0||0===t?e:t+_[A[t]]>e?t:e};var z=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg=\\\"\\\",this.state=null,this.data_type=2,this.adler=0},$=function(A,e){var t,i,r,I,g,n,a,o,B,C,Q,E,s,f,c,h,l,u,w,d,D,y,k,p,m=A.state;t=A.next_in,k=A.input,i=t+(A.avail_in-5),r=A.next_out,p=A.output,I=r-(e-A.avail_out),g=r+(A.avail_out-257),n=m.dmax,a=m.wsize,o=m.whave,B=m.wnext,C=m.window,Q=m.hold,E=m.bits,s=m.lencode,f=m.distcode,c=(1<>>=u=l>>>24,E-=u,0===(u=l>>>16&255))p[r++]=65535&l;else{if(!(16&u)){if(0==(64&u)){l=s[(65535&l)+(Q&(1<>>=u,E-=u),E<15&&(Q+=k[t++]<>>=u=l>>>24,E-=u,!(16&(u=l>>>16&255))){if(0==(64&u)){l=f[(65535&l)+(Q&(1<n){A.msg=\\\"invalid distance too far back\\\",m.mode=30;break A}if(Q>>>=u,E-=u,d>(u=r-I)){if((u=d-u)>o&&m.sane){A.msg=\\\"invalid distance too far back\\\",m.mode=30;break A}if(D=0,y=C,0===B){if(D+=a-u,u2;)p[r++]=y[D++],p[r++]=y[D++],p[r++]=y[D++],w-=3;w&&(p[r++]=y[D++],w>1&&(p[r++]=y[D++]))}else{D=r-d;do{p[r++]=p[D++],p[r++]=p[D++],p[r++]=p[D++],w-=3}while(w>2);w&&(p[r++]=p[D++],w>1&&(p[r++]=p[D++]))}break}}break}}while(t>3,Q&=(1<<(E-=w<<3))-1,A.next_in=t,A.next_out=r,A.avail_in=t=1&&0===v[d];d--);if(D>d&&(D=d),0===d)return r[I++]=20971520,r[I++]=20971520,n.bits=1,0;for(w=1;w0&&(0===A||1!==d))return-1;for(R[1]=0,l=1;l<15;l++)R[l+1]=R[l]+v[l];for(u=0;u852||2===A&&m>592)return 1;for(;;){s=l-k,g[u]E?(f=U[L+g[u]],c=F[S+g[u]]):(f=96,c=0),a=1<>k)+(o-=a)]=s<<24|f<<16|c|0}while(0!==o);for(a=1<>=1;if(0!==a?(G&=a-1,G+=a):G=0,u++,0==--v[l]){if(l===d)break;l=e[t+g[u]]}if(l>D&&(G&C)!==B){for(0===k&&(k=D),Q+=w,p=1<<(y=l-k);y+k852||2===A&&m>592)return 1;r[B=G&C]=D<<24|y<<16|Q-I|0}}return 0!==G&&(r[Q+G]=l-k<<24|64<<16|0),n.bits=D,0},IA=H.Z_FINISH,gA=H.Z_BLOCK,nA=H.Z_TREES,aA=H.Z_OK,oA=H.Z_STREAM_END,BA=H.Z_NEED_DICT,CA=H.Z_STREAM_ERROR,QA=H.Z_DATA_ERROR,EA=H.Z_MEM_ERROR,sA=H.Z_BUF_ERROR,fA=H.Z_DEFLATED,cA=function(A){return(A>>>24&255)+(A>>>8&65280)+((65280&A)<<8)+((255&A)<<24)};function hA(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}var lA,uA,wA=function(A){if(!A||!A.state)return CA;var e=A.state;return A.total_in=A.total_out=e.total=0,A.msg=\\\"\\\",e.wrap&&(A.adler=1&e.wrap),e.mode=1,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Int32Array(852),e.distcode=e.distdyn=new Int32Array(592),e.sane=1,e.back=-1,aA},dA=function(A){if(!A||!A.state)return CA;var e=A.state;return e.wsize=0,e.whave=0,e.wnext=0,wA(A)},DA=function(A,e){var t;if(!A||!A.state)return CA;var i=A.state;return e<0?(t=0,e=-e):(t=1+(e>>4),e<48&&(e&=15)),e&&(e<8||e>15)?CA:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=t,i.wbits=e,dA(A))},yA=function(A,e){if(!A)return CA;var t=new hA;A.state=t,t.window=null;var i=DA(A,e);return i!==aA&&(A.state=null),i},kA=!0,pA=function(A){if(kA){lA=new Int32Array(512),uA=new Int32Array(32);for(var e=0;e<144;)A.lens[e++]=8;for(;e<256;)A.lens[e++]=9;for(;e<280;)A.lens[e++]=7;for(;e<288;)A.lens[e++]=8;for(rA(1,A.lens,0,288,lA,0,A.work,{bits:9}),e=0;e<32;)A.lens[e++]=5;rA(2,A.lens,0,32,uA,0,A.work,{bits:5}),kA=!1}A.lencode=lA,A.lenbits=9,A.distcode=uA,A.distbits=5},mA=function(A,e,t,i){var r,I=A.state;return null===I.window&&(I.wsize=1<=I.wsize?(I.window.set(e.subarray(t-I.wsize,t),0),I.wnext=0,I.whave=I.wsize):((r=I.wsize-I.wnext)>i&&(r=i),I.window.set(e.subarray(t-i,t-i+r),I.wnext),(i-=r)?(I.window.set(e.subarray(t-i,t),0),I.wnext=i,I.whave=I.wsize):(I.wnext+=r,I.wnext===I.wsize&&(I.wnext=0),I.whave>>8&255,t.check=Y(t.check,G,2,0),o=0,B=0,t.mode=2;break}if(t.flags=0,t.head&&(t.head.done=!1),!(1&t.wrap)||(((255&o)<<8)+(o>>8))%31){A.msg=\\\"incorrect header check\\\",t.mode=30;break}if((15&o)!==fA){A.msg=\\\"unknown compression method\\\",t.mode=30;break}if(B-=4,D=8+(15&(o>>>=4)),0===t.wbits)t.wbits=D;else if(D>t.wbits){A.msg=\\\"invalid window size\\\",t.mode=30;break}t.dmax=1<>8&1),512&t.flags&&(G[0]=255&o,G[1]=o>>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0,t.mode=3;case 3:for(;B<32;){if(0===n)break A;n--,o+=i[I++]<>>8&255,G[2]=o>>>16&255,G[3]=o>>>24&255,t.check=Y(t.check,G,4,0)),o=0,B=0,t.mode=4;case 4:for(;B<16;){if(0===n)break A;n--,o+=i[I++]<>8),512&t.flags&&(G[0]=255&o,G[1]=o>>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0,t.mode=5;case 5:if(1024&t.flags){for(;B<16;){if(0===n)break A;n--,o+=i[I++]<>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0}else t.head&&(t.head.extra=null);t.mode=6;case 6:if(1024&t.flags&&((E=t.length)>n&&(E=n),E&&(t.head&&(D=t.head.extra_len-t.length,t.head.extra||(t.head.extra=new Uint8Array(t.head.extra_len)),t.head.extra.set(i.subarray(I,I+E),D)),512&t.flags&&(t.check=Y(t.check,i,E,I)),n-=E,I+=E,t.length-=E),t.length))break A;t.length=0,t.mode=7;case 7:if(2048&t.flags){if(0===n)break A;E=0;do{D=i[I+E++],t.head&&D&&t.length<65536&&(t.head.name+=String.fromCharCode(D))}while(D&&E>9&1,t.head.done=!0),A.adler=t.check=0,t.mode=12;break;case 10:for(;B<32;){if(0===n)break A;n--,o+=i[I++]<>>=7&B,B-=7&B,t.mode=27;break}for(;B<3;){if(0===n)break A;n--,o+=i[I++]<>>=1)){case 0:t.mode=14;break;case 1:if(pA(t),t.mode=20,e===nA){o>>>=2,B-=2;break A}break;case 2:t.mode=17;break;case 3:A.msg=\\\"invalid block type\\\",t.mode=30}o>>>=2,B-=2;break;case 14:for(o>>>=7&B,B-=7&B;B<32;){if(0===n)break A;n--,o+=i[I++]<>>16^65535)){A.msg=\\\"invalid stored block lengths\\\",t.mode=30;break}if(t.length=65535&o,o=0,B=0,t.mode=15,e===nA)break A;case 15:t.mode=16;case 16:if(E=t.length){if(E>n&&(E=n),E>a&&(E=a),0===E)break A;r.set(i.subarray(I,I+E),g),n-=E,I+=E,a-=E,g+=E,t.length-=E;break}t.mode=12;break;case 17:for(;B<14;){if(0===n)break A;n--,o+=i[I++]<>>=5,B-=5,t.ndist=1+(31&o),o>>>=5,B-=5,t.ncode=4+(15&o),o>>>=4,B-=4,t.nlen>286||t.ndist>30){A.msg=\\\"too many length or distance symbols\\\",t.mode=30;break}t.have=0,t.mode=18;case 18:for(;t.have>>=3,B-=3}for(;t.have<19;)t.lens[F[t.have++]]=0;if(t.lencode=t.lendyn,t.lenbits=7,k={bits:t.lenbits},y=rA(0,t.lens,0,19,t.lencode,0,t.work,k),t.lenbits=k.bits,y){A.msg=\\\"invalid code lengths set\\\",t.mode=30;break}t.have=0,t.mode=19;case 19:for(;t.have>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=c,B-=c,t.lens[t.have++]=l;else{if(16===l){for(p=c+2;B>>=c,B-=c,0===t.have){A.msg=\\\"invalid bit length repeat\\\",t.mode=30;break}D=t.lens[t.have-1],E=3+(3&o),o>>>=2,B-=2}else if(17===l){for(p=c+3;B>>=c)),o>>>=3,B-=3}else{for(p=c+7;B>>=c)),o>>>=7,B-=7}if(t.have+E>t.nlen+t.ndist){A.msg=\\\"invalid bit length repeat\\\",t.mode=30;break}for(;E--;)t.lens[t.have++]=D}}if(30===t.mode)break;if(0===t.lens[256]){A.msg=\\\"invalid code -- missing end-of-block\\\",t.mode=30;break}if(t.lenbits=9,k={bits:t.lenbits},y=rA(1,t.lens,0,t.nlen,t.lencode,0,t.work,k),t.lenbits=k.bits,y){A.msg=\\\"invalid literal/lengths set\\\",t.mode=30;break}if(t.distbits=6,t.distcode=t.distdyn,k={bits:t.distbits},y=rA(2,t.lens,t.nlen,t.ndist,t.distcode,0,t.work,k),t.distbits=k.bits,y){A.msg=\\\"invalid distances set\\\",t.mode=30;break}if(t.mode=20,e===nA)break A;case 20:t.mode=21;case 21:if(n>=6&&a>=258){A.next_out=g,A.avail_out=a,A.next_in=I,A.avail_in=n,t.hold=o,t.bits=B,$(A,Q),g=A.next_out,r=A.output,a=A.avail_out,I=A.next_in,i=A.input,n=A.avail_in,o=t.hold,B=t.bits,12===t.mode&&(t.back=-1);break}for(t.back=0;h=(m=t.lencode[o&(1<>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>u)])>>>16&255,l=65535&m,!(u+(c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=u,B-=u,t.back+=u}if(o>>>=c,B-=c,t.back+=c,t.length=l,0===h){t.mode=26;break}if(32&h){t.back=-1,t.mode=12;break}if(64&h){A.msg=\\\"invalid literal/length code\\\",t.mode=30;break}t.extra=15&h,t.mode=22;case 22:if(t.extra){for(p=t.extra;B>>=t.extra,B-=t.extra,t.back+=t.extra}t.was=t.length,t.mode=23;case 23:for(;h=(m=t.distcode[o&(1<>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>u)])>>>16&255,l=65535&m,!(u+(c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=u,B-=u,t.back+=u}if(o>>>=c,B-=c,t.back+=c,64&h){A.msg=\\\"invalid distance code\\\",t.mode=30;break}t.offset=l,t.extra=15&h,t.mode=24;case 24:if(t.extra){for(p=t.extra;B>>=t.extra,B-=t.extra,t.back+=t.extra}if(t.offset>t.dmax){A.msg=\\\"invalid distance too far back\\\",t.mode=30;break}t.mode=25;case 25:if(0===a)break A;if(E=Q-a,t.offset>E){if((E=t.offset-E)>t.whave&&t.sane){A.msg=\\\"invalid distance too far back\\\",t.mode=30;break}E>t.wnext?(E-=t.wnext,s=t.wsize-E):s=t.wnext-E,E>t.length&&(E=t.length),f=t.window}else f=r,s=g-t.offset,E=t.length;E>a&&(E=a),a-=E,t.length-=E;do{r[g++]=f[s++]}while(--E);0===t.length&&(t.mode=21);break;case 26:if(0===a)break A;r[g++]=t.length,a--,t.mode=21;break;case 27:if(t.wrap){for(;B<32;){if(0===n)break A;n--,o|=i[I++]<=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||A&&A.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg=\\\"\\\",this.ended=!1,this.chunks=[],this.strm=new z,this.strm.avail_out=0;var t=GA.inflateInit2(this.strm,e.windowBits);if(t!==UA)throw new Error(K[t]);if(this.header=new FA,GA.inflateGetHeader(this.strm,this.header),e.dictionary&&(\\\"string\\\"==typeof e.dictionary?e.dictionary=Z(e.dictionary):\\\"[object ArrayBuffer]\\\"===SA.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(t=GA.inflateSetDictionary(this.strm,e.dictionary))!==UA))throw new Error(K[t])}function qA(A,e){var t=new JA(e);if(t.push(A),t.err)throw t.msg||K[t.err];return t.result}JA.prototype.push=function(A,e){var t,i,r,I=this.strm,g=this.options.chunkSize,n=this.options.dictionary;if(this.ended)return!1;for(i=e===~~e?e:!0===e?RA:vA,\\\"[object ArrayBuffer]\\\"===SA.call(A)?I.input=new Uint8Array(A):I.input=A,I.next_in=0,I.avail_in=I.input.length;;){for(0===I.avail_out&&(I.output=new Uint8Array(g),I.next_out=0,I.avail_out=g),(t=GA.inflate(I,i))===bA&&n&&((t=GA.inflateSetDictionary(I,n))===UA?t=GA.inflate(I,i):t===NA&&(t=bA));I.avail_in>0&&t===LA&&I.state.wrap>0&&0!==A[I.next_in];)GA.inflateReset(I),t=GA.inflate(I,i);switch(t){case MA:case NA:case bA:case xA:return this.onEnd(t),this.ended=!0,!1}if(r=I.avail_out,I.next_out&&(0===I.avail_out||t===LA))if(\\\"string\\\"===this.options.to){var a=W(I.output,I.next_out),o=I.next_out-a,B=j(I.output,a);I.next_out=o,I.avail_out=g-o,o&&I.output.set(I.output.subarray(a,a+o),0),this.onData(B)}else this.onData(I.output.length===I.next_out?I.output:I.output.subarray(0,I.next_out));if(t!==UA||0!==r){if(t===LA)return t=GA.inflateEnd(this.strm),this.onEnd(t),this.ended=!0,!0;if(0===I.avail_in)break}}return!0},JA.prototype.onData=function(A){this.chunks.push(A)},JA.prototype.onEnd=function(A){A===UA&&(\\\"string\\\"===this.options.to?this.result=this.chunks.join(\\\"\\\"):this.result=T(this.chunks)),this.chunks=[],this.err=A,this.msg=this.strm.msg};var YA={Inflate:JA,inflate:qA,inflateRaw:function(A,e){return(e=e||{}).raw=!0,qA(A,e)},ungzip:qA,constants:H}.inflate;function KA(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var HA=function(A){s(t,w);var e=KA(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){return YA(new Uint8Array(A)).buffer}}]),t}(),OA=Object.freeze({__proto__:null,default:HA});function PA(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var TA,VA=function(A){s(t,w);var e=PA(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){for(var e=new DataView(A),t=[],i=0;i>3],m<<=7&G),c=0;c>3]),128&m?(a&&(a[G]=1),f=f>(g=S.encoding<2?y[k++]:p)?g:f,n[G++]=g):(a&&(a[G]=0),n[G++]=i),m<<=1;G+=F}else if(S.encoding<2)for(h=0;h(g=y[k++])?g:f,n[G++]=g;G+=F}else for(f=f>p?p:f,h=0;h0){var g=new Uint8Array(Math.ceil(i.width*i.height/8)),n=(I=new DataView(A,e,i.mask.numBytes)).getInt16(0,!0),a=2,o=0;do{if(n>0)for(;n--;)g[o++]=I.getUint8(a++);else{var B=I.getUint8(a++);for(n=-n;n--;)g[o++]=B}n=I.getInt16(a,!0),a+=2}while(a0?1:0),s=Q+(i.height%Q>0?1:0);i.pixels.blocks=new Array(E*s);for(var f=0,c=0;c3)throw\\\"Invalid block encoding (\\\"+w.encoding+\\\")\\\";if(2!==w.encoding){if(0!==d&&2!==d){if(d>>=6,w.offsetType=d,2===d)w.offset=I.getInt8(1),l++;else if(1===d)w.offset=I.getInt16(1,!0),l+=2;else{if(0!==d)throw\\\"Invalid block offset type\\\";w.offset=I.getFloat32(1,!0),l+=4}if(1===w.encoding)if(d=I.getUint8(l),l++,w.bitsPerPixel=63&d,d>>=6,w.numValidPixelsType=d,2===d)w.numValidPixels=I.getUint8(l),l++;else if(1===d)w.numValidPixels=I.getUint16(l,!0),l+=2;else{if(0!==d)throw\\\"Invalid valid pixel count type\\\";w.numValidPixels=I.getUint32(l,!0),l+=4}}var D;if(e+=l,3!==w.encoding)if(0===w.encoding){var y=(i.pixels.numBytes-1)/4;if(y!==Math.floor(y))throw\\\"uncompressed block has invalid length\\\";D=new ArrayBuffer(4*y),new Uint8Array(D).set(new Uint8Array(A,e,4*y));var k=new Float32Array(D);w.rawData=k,e+=4*y}else if(1===w.encoding){var p=Math.ceil(w.numValidPixels*w.bitsPerPixel/8),m=Math.ceil(p/4);D=new ArrayBuffer(4*m),new Uint8Array(D).set(new Uint8Array(A,e,p)),w.stuffedData=new Uint32Array(D),e+=p}}else e++}return i.eofOffset=e,i},I=function(A,e,t,i,r,I,g){var n,a,o,B=(1<=e)a=o>>>Q-e&B,Q-=e;else{var f=e-Q;a=(o&B)<>>(Q=32-f)}I[n]=a=t?(o=B>>>f-t&E,f-=t):(o=(B&E)<<(C=t-f)&E,o+=(B=A[s++])>>>(f=32-C)),e[a]=r[o];else for(Q=Math.ceil((n-I)/g),a=0;a=t?(o=B>>>f-t&E,f-=t):(o=(B&E)<<(C=t-f)&E,o+=(B=A[s++])>>>(f=32-C)),e[a]=o=e?(Q=g>>>C-e&n,C-=e):(Q=(g&n)<<(B=e-C)&n,Q+=(g=A[a++])>>>(C=32-B)),E[o]=Q=t?(o=B>>>f&Q,s-=t,f+=t):(o=B>>>f&Q,s=32-(C=t-s),o|=((B=A[E++])&(1<=t?(o=B>>>f&Q,s-=t,f+=t):(o=B>>>f&Q,s=32-(C=t-s),o|=((B=A[E++])&(1<=e?(Q=g>>>E&n,C-=e,E+=e):(Q=g>>>E&n,C=32-(B=e-C),Q|=((g=A[a++])&(1<=t?(I=g>>>B-t&a,B-=t):(I=(g&a)<<(n=t-B)&a,I+=(g=A[o++])>>>(B=32-n)),e[r]=I;return e},C=function(A,e,t,i){var r,I,g,n,a=(1<=t?(I=g>>>C&a,B-=t,C+=t):(I=g>>>C&a,B=32-(n=t-B),I|=((g=A[o++])&(1<=359?359:r;r-=g;do{e+=A[I++]<<8,t+=e+=A[I++]}while(--g);e=(65535&e)+(e>>>16),t=(65535&t)+(t>>>16)}return 1&i&&(t+=e+=A[I]<<8),((t=(65535&t)+(t>>>16))<<16|(e=(65535&e)+(e>>>16)))>>>0},readHeaderInfo:function(A,e){var t=e.ptr,i=new Uint8Array(A,t,6),r={};if(r.fileIdentifierString=String.fromCharCode.apply(null,i),0!==r.fileIdentifierString.lastIndexOf(\\\"Lerc2\\\",0))throw\\\"Unexpected file identifier string (expect Lerc2 ): \\\"+r.fileIdentifierString;t+=6;var I,g=new DataView(A,t,8),n=g.getInt32(0,!0);if(r.fileVersion=n,t+=4,n>=3&&(r.checksum=g.getUint32(4,!0),t+=4),g=new DataView(A,t,12),r.height=g.getUint32(0,!0),r.width=g.getUint32(4,!0),t+=8,n>=4?(r.numDims=g.getUint32(8,!0),t+=4):r.numDims=1,g=new DataView(A,t,40),r.numValidPixel=g.getUint32(0,!0),r.microBlockSize=g.getInt32(4,!0),r.blobSize=g.getInt32(8,!0),r.imageType=g.getInt32(12,!0),r.maxZError=g.getFloat64(16,!0),r.zMin=g.getFloat64(24,!0),r.zMax=g.getFloat64(32,!0),t+=40,e.headerInfo=r,e.ptr=t,n>=3&&(I=n>=4?52:48,this.computeChecksumFletcher32(new Uint8Array(A,t-I,r.blobSize-14))!==r.checksum))throw\\\"Checksum failed.\\\";return!0},checkMinMaxRanges:function(A,e){var t=e.headerInfo,i=this.getDataTypeArray(t.imageType),r=t.numDims*this.getDataTypeSize(t.imageType),I=this.readSubArray(A,e.ptr,i,r),g=this.readSubArray(A,e.ptr+r,i,r);e.ptr+=2*r;var n,a=!0;for(n=0;n0){t=new Uint8Array(Math.ceil(g/8));var B=(a=new DataView(A,r,o.numBytes)).getInt16(0,!0),C=2,Q=0,E=0;do{if(B>0)for(;B--;)t[Q++]=a.getUint8(C++);else for(E=a.getUint8(C++),B=-B;B--;)t[Q++]=E;B=a.getInt16(C,!0),C+=2}while(C>3],s<<=7&f):s=t[f>>3],128&s&&(i[f]=1);e.pixels.resultMask=i,o.bitset=t,r+=o.numBytes}return e.ptr=r,e.mask=o,!0},readDataOneSweep:function(A,e,t,i){var r,I=e.ptr,g=e.headerInfo,n=g.numDims,a=g.width*g.height,o=g.imageType,B=g.numValidPixel*Q.getDataTypeSize(o)*n,C=e.pixels.resultMask;if(t===Uint8Array)r=new Uint8Array(A,I,B);else{var E=new ArrayBuffer(B);new Uint8Array(E).set(new Uint8Array(A,I,B)),r=new t(E)}if(r.length===a*n)e.pixels.resultPixels=i?Q.swapDimensionOrder(r,a,n,t,!0):r;else{e.pixels.resultPixels=new t(a*n);var s=0,f=0,c=0,h=0;if(n>1){if(i){for(f=0;f=g)return!1;var n=new Uint32Array(g-I);Q.decodeBits(A,e,n);var a,o,B,C,s=[];for(a=I;a0&&(s[o].second=l<>>32-C,32-w>=C?32===(w+=C)&&(w=0,l=u[++d]):(w+=C-32,l=u[++d],s[o].second|=l>>>32-w));var D=0,y=0,k=new E;for(a=0;a=t?t:D;var p,m,G,F,S,v=[];for(a=I;a0)if(p=[C,o],C<=y)for(m=s[o].second<=0;F--)m>>>F&1?(S.right||(S.right=new E),S=S.right):(S.left||(S.left=new E),S=S.left),0!==F||S.val||(S.val=p[1]);return{decodeLut:v,numBitsLUTQick:y,numBitsLUT:D,tree:k,stuffedData:u,srcPtr:d,bitPos:w}},readHuffman:function(A,e,t,i){var r,I,g,n,a,o,B,C,E,s=e.headerInfo.numDims,f=e.headerInfo.height,c=e.headerInfo.width,h=c*f,l=this.readHuffmanTree(A,e),u=l.decodeLut,w=l.tree,d=l.stuffedData,D=l.srcPtr,y=l.bitPos,k=l.numBitsLUTQick,p=l.numBitsLUT,m=0===e.headerInfo.imageType?128:0,G=e.pixels.resultMask,F=0;y>0&&(D++,y=0);var S,v=d[D],R=1===e.encodeMode,U=new t(h*s),L=U;if(s<2||R){for(S=0;S1&&(L=new t(U.buffer,h*S,h),F=0),e.headerInfo.numValidPixel===c*f)for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,R?(g+=B>0?F:o>0?L[C-c]:F,g&=255,L[C]=g,F=g):L[C]=g}else for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,R?(B>0&&G[C-1]?g+=F:o>0&&G[C-c]?g+=L[C-c]:g+=F,g&=255,L[C]=g,F=g):L[C]=g}}else for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,L[C]=g}e.ptr=e.ptr+4*(D+1)+(y>0?4:0),e.pixels.resultPixels=U,s>1&&!i&&(e.pixels.resultPixels=Q.swapDimensionOrder(U,h,s,t))},decodeBits:function(A,e,t,i,r){var I=e.headerInfo,Q=I.fileVersion,E=0,s=A.byteLength-e.ptr>=5?5:A.byteLength-e.ptr,f=new DataView(A,e.ptr,s),c=f.getUint8(0);E++;var h=c>>6,l=0===h?4:3-h,u=(32&c)>0,w=31&c,d=0;if(1===l)d=f.getUint8(E),E++;else if(2===l)d=f.getUint16(E,!0),E+=2;else{if(4!==l)throw\\\"Invalid valid pixel count type\\\";d=f.getUint32(E,!0),E+=4}var D,y,k,p,m,G,F,S,v,R=2*I.maxZError,U=I.numDims>1?I.maxValues[r]:I.zMax;if(u){for(e.counter.lut++,S=f.getUint8(E),E++,p=Math.ceil((S-1)*w/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),k=new Uint8Array(y),e.ptr+=E,k.set(new Uint8Array(A,e.ptr,p)),F=new Uint32Array(y),e.ptr+=p,v=0;S-1>>>v;)v++;p=Math.ceil(d*v/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),(k=new Uint8Array(y)).set(new Uint8Array(A,e.ptr,p)),D=new Uint32Array(y),e.ptr+=p,G=Q>=3?o(F,w,S-1,i,R,U):n(F,w,S-1,i,R,U),Q>=3?a(D,t,v,d,G):g(D,t,v,d,G)}else e.counter.bitstuffer++,v=w,e.ptr+=E,v>0&&(p=Math.ceil(d*v/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),(k=new Uint8Array(y)).set(new Uint8Array(A,e.ptr,p)),D=new Uint32Array(y),e.ptr+=p,Q>=3?null==i?C(D,t,v,d):a(D,t,v,d,!1,i,R,U):null==i?B(D,t,v,d):g(D,t,v,d,!1,i,R,U))},readTiles:function(A,e,t,i){var r=e.headerInfo,I=r.width,g=r.height,n=I*g,a=r.microBlockSize,o=r.imageType,B=Q.getDataTypeSize(o),C=Math.ceil(I/a),E=Math.ceil(g/a);e.pixels.numBlocksY=E,e.pixels.numBlocksX=C,e.pixels.ptr=0;var s,f,c,h,l,u,w,d,D,y,k=0,p=0,m=0,G=0,F=0,S=0,v=0,R=0,U=0,L=0,b=0,M=0,N=0,x=0,J=0,q=new t(a*a),Y=g%a||a,K=I%a||a,H=r.numDims,O=e.pixels.resultMask,P=e.pixels.resultPixels,T=r.fileVersion>=5?14:15,V=r.zMax;for(m=0;m1?(y=P,L=m*I*a+G*a,P=new t(e.pixels.resultPixels.buffer,n*d*B,n),V=r.maxValues[d]):y=null,v=A.byteLength-e.ptr,f={},J=0,R=(s=new DataView(A,e.ptr,Math.min(10,v))).getUint8(0),J++,D=r.fileVersion>=5?4&R:0,U=R>>6&255,(R>>2&T)!=(G*a>>3&T))throw\\\"integrity issue\\\";if(D&&0===d)throw\\\"integrity issue\\\";if((l=3&R)>3)throw e.ptr+=J,\\\"Invalid block encoding (\\\"+l+\\\")\\\";if(2!==l)if(0===l){if(D)throw\\\"integrity issue\\\";if(e.counter.uncompressed++,e.ptr+=J,M=(M=F*S*B)<(N=A.byteLength-e.ptr)?M:N,c=new ArrayBuffer(M%B==0?M:M+B-M%B),new Uint8Array(c).set(new Uint8Array(A,e.ptr,M)),h=new t(c),x=0,O)for(k=0;k1&&!i&&(e.pixels.resultPixels=Q.swapDimensionOrder(e.pixels.resultPixels,n,H,t))},formatFileInfo:function(A){return{fileIdentifierString:A.headerInfo.fileIdentifierString,fileVersion:A.headerInfo.fileVersion,imageType:A.headerInfo.imageType,height:A.headerInfo.height,width:A.headerInfo.width,numValidPixel:A.headerInfo.numValidPixel,microBlockSize:A.headerInfo.microBlockSize,blobSize:A.headerInfo.blobSize,maxZError:A.headerInfo.maxZError,pixelType:Q.getPixelType(A.headerInfo.imageType),eofOffset:A.eofOffset,mask:A.mask?{numBytes:A.mask.numBytes}:null,pixels:{numBlocksX:A.pixels.numBlocksX,numBlocksY:A.pixels.numBlocksY,maxValue:A.headerInfo.zMax,minValue:A.headerInfo.zMin,noDataValue:A.noDataValue}}},constructConstantSurface:function(A,e){var t=A.headerInfo.zMax,i=A.headerInfo.zMin,r=A.headerInfo.maxValues,I=A.headerInfo.numDims,g=A.headerInfo.height*A.headerInfo.width,n=0,a=0,o=0,B=A.pixels.resultMask,C=A.pixels.resultPixels;if(B)if(I>1){if(e)for(n=0;n1&&i!==t)if(e)for(n=0;n=-128&&e<=127;break;case 1:t=e>=0&&e<=255;break;case 2:t=e>=-32768&&e<=32767;break;case 3:t=e>=0&&e<=65536;break;case 4:t=e>=-2147483648&&e<=2147483647;break;case 5:t=e>=0&&e<=4294967296;break;case 6:t=e>=-34027999387901484e22&&e<=34027999387901484e22;break;case 7:t=e>=-17976931348623157e292&&e<=17976931348623157e292;break;default:t=!1}return t},getDataTypeSize:function(A){var e=0;switch(A){case 0:case 1:e=1;break;case 2:case 3:e=2;break;case 4:case 5:case 6:e=4;break;case 7:e=8;break;default:e=A}return e},getDataTypeUsed:function(A,e){var t=A;switch(A){case 2:case 4:t=A-e;break;case 3:case 5:t=A-2*e;break;case 6:t=0===e?A:1===e?2:1;break;case 7:t=0===e?A:A-2*e+1;break;default:t=A}return t},getOnePixel:function(A,e,t,i){var r=0;switch(t){case 0:r=i.getInt8(e);break;case 1:r=i.getUint8(e);break;case 2:r=i.getInt16(e,!0);break;case 3:r=i.getUint16(e,!0);break;case 4:r=i.getInt32(e,!0);break;case 5:r=i.getUInt32(e,!0);break;case 6:r=i.getFloat32(e,!0);break;case 7:r=i.getFloat64(e,!0);break;default:throw\\\"the decoder does not understand this pixel type\\\"}return r},swapDimensionOrder:function(A,e,t,i,r){var I=0,g=0,n=0,a=0,o=A;if(t>1)if(o=new i(e*t),r)for(I=0;I5)throw\\\"unsupported lerc version 2.\\\"+g;Q.readMask(A,r),I.numValidPixel===I.width*I.height||r.pixels.resultMask||(r.pixels.resultMask=e.maskData);var a=I.width*I.height;r.pixels.resultPixels=new n(a*I.numDims),r.counter={onesweep:0,uncompressed:0,lut:0,bitstuffer:0,constant:0,constantoffset:0};var o,B=!e.returnPixelInterleavedDims;if(0!==I.numValidPixel)if(I.zMax===I.zMin)Q.constructConstantSurface(r,B);else if(g>=4&&Q.checkMinMaxRanges(A,r))Q.constructConstantSurface(r,B);else{var C=new DataView(A,r.ptr,2),E=C.getUint8(0);if(r.ptr++,E)Q.readDataOneSweep(A,r,n,B);else if(g>1&&I.imageType<=1&&Math.abs(I.maxZError-.5)<1e-5){var s=C.getUint8(1);if(r.ptr++,r.encodeMode=s,s>2||g<4&&s>1)throw\\\"Invalid Huffman flag \\\"+s;s?Q.readHuffman(A,r,n,B):Q.readTiles(A,r,n,B)}else Q.readTiles(A,r,n,B)}r.eofOffset=r.ptr,e.inputOffset?(o=r.headerInfo.blobSize+e.inputOffset-r.ptr,Math.abs(o)>=1&&(r.eofOffset=e.inputOffset+r.headerInfo.blobSize)):(o=r.headerInfo.blobSize-r.ptr,Math.abs(o)>=1&&(r.eofOffset=r.headerInfo.blobSize));var f={width:I.width,height:I.height,pixelData:r.pixels.resultPixels,minValue:I.zMin,maxValue:I.zMax,validPixelCount:I.numValidPixel,dimCount:I.numDims,dimStats:{minValues:I.minValues,maxValues:I.maxValues},maskData:r.pixels.resultMask};if(r.pixels.resultMask&&Q.isValidPixelValue(I.imageType,t)){var c=r.pixels.resultMask;for(i=0;i1&&(o&&f.push(o),d.fileInfo.mask&&d.fileInfo.mask.numBytes>0&&w++),E++,u.pixels.push(d.pixelData),u.statistics.push({minValue:d.minValue,maxValue:d.maxValue,noDataValue:d.noDataValue,dimStats:d.dimStats})}if(i>1&&w>1){for(Q=u.width*u.height,u.bandMasks=f,(o=new Uint8Array(Q)).set(f[0]),B=1;B1&&void 0!==arguments[1]?arguments[1]:0;if(!jA)throw new Error(\\\"ZSTDDecoder: Await .init() before decoding.\\\");var t=A.byteLength,i=jA.exports.malloc(t);WA.set(A,i),e=e||Number(jA.exports.ZSTD_findDecompressedSize(i,t));var r=jA.exports.malloc(e),I=jA.exports.ZSTD_decompress(r,e,i,t),g=WA.slice(r,r+I);return jA.exports.free(i),jA.exports.free(r),g}}]),A}(),ee=\\\"AGFzbQEAAAABpQEVYAF/AX9gAn9/AGADf39/AX9gBX9/f39/AX9gAX8AYAJ/fwF/YAR/f39/AX9gA39/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gAn9/AX5gAn5+AX5gAABgBX9/f39/AGAGf39/f39/AGAIf39/f39/f38AYAl/f39/f39/f38AYAABf2AIf39/f39/f38Bf2ANf39/f39/f39/f39/fwF/YAF/AX4CJwEDZW52H2Vtc2NyaXB0ZW5fbm90aWZ5X21lbW9yeV9ncm93dGgABANpaAEFAAAFAgEFCwACAQABAgIFBQcAAwABDgsBAQcAEhMHAAUBDAQEAAANBwQCAgYCBAgDAwMDBgEACQkHBgICAAYGAgQUBwYGAwIGAAMCAQgBBwUGCgoEEQAEBAEIAwgDBQgDEA8IAAcABAUBcAECAgUEAQCAAgYJAX8BQaCgwAILB2AHBm1lbW9yeQIABm1hbGxvYwAoBGZyZWUAJgxaU1REX2lzRXJyb3IAaBlaU1REX2ZpbmREZWNvbXByZXNzZWRTaXplAFQPWlNURF9kZWNvbXByZXNzAEoGX3N0YXJ0ACQJBwEAQQELASQKussBaA8AIAAgACgCBCABajYCBAsZACAAKAIAIAAoAgRBH3F0QQAgAWtBH3F2CwgAIABBiH9LC34BBH9BAyEBIAAoAgQiA0EgTQRAIAAoAggiASAAKAIQTwRAIAAQDQ8LIAAoAgwiAiABRgRAQQFBAiADQSBJGw8LIAAgASABIAJrIANBA3YiBCABIARrIAJJIgEbIgJrIgQ2AgggACADIAJBA3RrNgIEIAAgBCgAADYCAAsgAQsUAQF/IAAgARACIQIgACABEAEgAgv3AQECfyACRQRAIABCADcCACAAQQA2AhAgAEIANwIIQbh/DwsgACABNgIMIAAgAUEEajYCECACQQRPBEAgACABIAJqIgFBfGoiAzYCCCAAIAMoAAA2AgAgAUF/ai0AACIBBEAgAEEIIAEQFGs2AgQgAg8LIABBADYCBEF/DwsgACABNgIIIAAgAS0AACIDNgIAIAJBfmoiBEEBTQRAIARBAWtFBEAgACABLQACQRB0IANyIgM2AgALIAAgAS0AAUEIdCADajYCAAsgASACakF/ai0AACIBRQRAIABBADYCBEFsDwsgAEEoIAEQFCACQQN0ams2AgQgAgsWACAAIAEpAAA3AAAgACABKQAINwAICy8BAX8gAUECdEGgHWooAgAgACgCAEEgIAEgACgCBGprQR9xdnEhAiAAIAEQASACCyEAIAFCz9bTvtLHq9lCfiAAfEIfiUKHla+vmLbem55/fgsdAQF/IAAoAgggACgCDEYEfyAAKAIEQSBGBUEACwuCBAEDfyACQYDAAE8EQCAAIAEgAhBnIAAPCyAAIAJqIQMCQCAAIAFzQQNxRQRAAkAgAkEBSARAIAAhAgwBCyAAQQNxRQRAIAAhAgwBCyAAIQIDQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADTw0BIAJBA3ENAAsLAkAgA0F8cSIEQcAASQ0AIAIgBEFAaiIFSw0AA0AgAiABKAIANgIAIAIgASgCBDYCBCACIAEoAgg2AgggAiABKAIMNgIMIAIgASgCEDYCECACIAEoAhQ2AhQgAiABKAIYNgIYIAIgASgCHDYCHCACIAEoAiA2AiAgAiABKAIkNgIkIAIgASgCKDYCKCACIAEoAiw2AiwgAiABKAIwNgIwIAIgASgCNDYCNCACIAEoAjg2AjggAiABKAI8NgI8IAFBQGshASACQUBrIgIgBU0NAAsLIAIgBE8NAQNAIAIgASgCADYCACABQQRqIQEgAkEEaiICIARJDQALDAELIANBBEkEQCAAIQIMAQsgA0F8aiIEIABJBEAgACECDAELIAAhAgNAIAIgAS0AADoAACACIAEtAAE6AAEgAiABLQACOgACIAIgAS0AAzoAAyABQQRqIQEgAkEEaiICIARNDQALCyACIANJBEADQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADRw0ACwsgAAsMACAAIAEpAAA3AAALQQECfyAAKAIIIgEgACgCEEkEQEEDDwsgACAAKAIEIgJBB3E2AgQgACABIAJBA3ZrIgE2AgggACABKAAANgIAQQALDAAgACABKAIANgAAC/cCAQJ/AkAgACABRg0AAkAgASACaiAASwRAIAAgAmoiBCABSw0BCyAAIAEgAhALDwsgACABc0EDcSEDAkACQCAAIAFJBEAgAwRAIAAhAwwDCyAAQQNxRQRAIAAhAwwCCyAAIQMDQCACRQ0EIAMgAS0AADoAACABQQFqIQEgAkF/aiECIANBAWoiA0EDcQ0ACwwBCwJAIAMNACAEQQNxBEADQCACRQ0FIAAgAkF/aiICaiIDIAEgAmotAAA6AAAgA0EDcQ0ACwsgAkEDTQ0AA0AgACACQXxqIgJqIAEgAmooAgA2AgAgAkEDSw0ACwsgAkUNAgNAIAAgAkF/aiICaiABIAJqLQAAOgAAIAINAAsMAgsgAkEDTQ0AIAIhBANAIAMgASgCADYCACABQQRqIQEgA0EEaiEDIARBfGoiBEEDSw0ACyACQQNxIQILIAJFDQADQCADIAEtAAA6AAAgA0EBaiEDIAFBAWohASACQX9qIgINAAsLIAAL8wICAn8BfgJAIAJFDQAgACACaiIDQX9qIAE6AAAgACABOgAAIAJBA0kNACADQX5qIAE6AAAgACABOgABIANBfWogAToAACAAIAE6AAIgAkEHSQ0AIANBfGogAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa0iBUIghiAFhCEFIAMgBGohAQNAIAEgBTcDGCABIAU3AxAgASAFNwMIIAEgBTcDACABQSBqIQEgAkFgaiICQR9LDQALCyAACy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAIajYCACADCy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAFajYCACADCx8AIAAgASACKAIEEAg2AgAgARAEGiAAIAJBCGo2AgQLCAAgAGdBH3MLugUBDX8jAEEQayIKJAACfyAEQQNNBEAgCkEANgIMIApBDGogAyAEEAsaIAAgASACIApBDGpBBBAVIgBBbCAAEAMbIAAgACAESxsMAQsgAEEAIAEoAgBBAXRBAmoQECENQVQgAygAACIGQQ9xIgBBCksNABogAiAAQQVqNgIAIAMgBGoiAkF8aiEMIAJBeWohDiACQXtqIRAgAEEGaiELQQQhBSAGQQR2IQRBICAAdCIAQQFyIQkgASgCACEPQQAhAiADIQYCQANAIAlBAkggAiAPS3JFBEAgAiEHAkAgCARAA0AgBEH//wNxQf//A0YEQCAHQRhqIQcgBiAQSQR/IAZBAmoiBigAACAFdgUgBUEQaiEFIARBEHYLIQQMAQsLA0AgBEEDcSIIQQNGBEAgBUECaiEFIARBAnYhBCAHQQNqIQcMAQsLIAcgCGoiByAPSw0EIAVBAmohBQNAIAIgB0kEQCANIAJBAXRqQQA7AQAgAkEBaiECDAELCyAGIA5LQQAgBiAFQQN1aiIHIAxLG0UEQCAHKAAAIAVBB3EiBXYhBAwCCyAEQQJ2IQQLIAYhBwsCfyALQX9qIAQgAEF/anEiBiAAQQF0QX9qIgggCWsiEUkNABogBCAIcSIEQQAgESAEIABIG2shBiALCyEIIA0gAkEBdGogBkF/aiIEOwEAIAlBASAGayAEIAZBAUgbayEJA0AgCSAASARAIABBAXUhACALQX9qIQsMAQsLAn8gByAOS0EAIAcgBSAIaiIFQQN1aiIGIAxLG0UEQCAFQQdxDAELIAUgDCIGIAdrQQN0awshBSACQQFqIQIgBEUhCCAGKAAAIAVBH3F2IQQMAQsLQWwgCUEBRyAFQSBKcg0BGiABIAJBf2o2AgAgBiAFQQdqQQN1aiADawwBC0FQCyEAIApBEGokACAACwkAQQFBBSAAGwsMACAAIAEoAAA2AAALqgMBCn8jAEHwAGsiCiQAIAJBAWohDiAAQQhqIQtBgIAEIAVBf2p0QRB1IQxBACECQQEhBkEBIAV0IglBf2oiDyEIA0AgAiAORkUEQAJAIAEgAkEBdCINai8BACIHQf//A0YEQCALIAhBA3RqIAI2AgQgCEF/aiEIQQEhBwwBCyAGQQAgDCAHQRB0QRB1ShshBgsgCiANaiAHOwEAIAJBAWohAgwBCwsgACAFNgIEIAAgBjYCACAJQQN2IAlBAXZqQQNqIQxBACEAQQAhBkEAIQIDQCAGIA5GBEADQAJAIAAgCUYNACAKIAsgAEEDdGoiASgCBCIGQQF0aiICIAIvAQAiAkEBajsBACABIAUgAhAUayIIOgADIAEgAiAIQf8BcXQgCWs7AQAgASAEIAZBAnQiAmooAgA6AAIgASACIANqKAIANgIEIABBAWohAAwBCwsFIAEgBkEBdGouAQAhDUEAIQcDQCAHIA1ORQRAIAsgAkEDdGogBjYCBANAIAIgDGogD3EiAiAISw0ACyAHQQFqIQcMAQsLIAZBAWohBgwBCwsgCkHwAGokAAsjAEIAIAEQCSAAhUKHla+vmLbem55/fkLj3MqV/M7y9YV/fAsQACAAQn43AwggACABNgIACyQBAX8gAARAIAEoAgQiAgRAIAEoAgggACACEQEADwsgABAmCwsfACAAIAEgAi8BABAINgIAIAEQBBogACACQQRqNgIEC0oBAX9BoCAoAgAiASAAaiIAQX9MBEBBiCBBMDYCAEF/DwsCQCAAPwBBEHRNDQAgABBmDQBBiCBBMDYCAEF/DwtBoCAgADYCACABC9cBAQh/Qbp/IQoCQCACKAIEIgggAigCACIJaiIOIAEgAGtLDQBBbCEKIAkgBCADKAIAIgtrSw0AIAAgCWoiBCACKAIIIgxrIQ0gACABQWBqIg8gCyAJQQAQKSADIAkgC2o2AgACQAJAIAwgBCAFa00EQCANIQUMAQsgDCAEIAZrSw0CIAcgDSAFayIAaiIBIAhqIAdNBEAgBCABIAgQDxoMAgsgBCABQQAgAGsQDyEBIAIgACAIaiIINgIEIAEgAGshBAsgBCAPIAUgCEEBECkLIA4hCgsgCgubAgEBfyMAQYABayINJAAgDSADNgJ8AkAgAkEDSwRAQX8hCQwBCwJAAkACQAJAIAJBAWsOAwADAgELIAZFBEBBuH8hCQwEC0FsIQkgBS0AACICIANLDQMgACAHIAJBAnQiAmooAgAgAiAIaigCABA7IAEgADYCAEEBIQkMAwsgASAJNgIAQQAhCQwCCyAKRQRAQWwhCQwCC0EAIQkgC0UgDEEZSHINAUEIIAR0QQhqIQBBACECA0AgAiAATw0CIAJBQGshAgwAAAsAC0FsIQkgDSANQfwAaiANQfgAaiAFIAYQFSICEAMNACANKAJ4IgMgBEsNACAAIA0gDSgCfCAHIAggAxAYIAEgADYCACACIQkLIA1BgAFqJAAgCQsLACAAIAEgAhALGgsQACAALwAAIAAtAAJBEHRyCy8AAn9BuH8gAUEISQ0AGkFyIAAoAAQiAEF3Sw0AGkG4fyAAQQhqIgAgACABSxsLCwkAIAAgATsAAAsDAAELigYBBX8gACAAKAIAIgVBfnE2AgBBACAAIAVBAXZqQYQgKAIAIgQgAEYbIQECQAJAIAAoAgQiAkUNACACKAIAIgNBAXENACACQQhqIgUgA0EBdkF4aiIDQQggA0EISxtnQR9zQQJ0QYAfaiIDKAIARgRAIAMgAigCDDYCAAsgAigCCCIDBEAgAyACKAIMNgIECyACKAIMIgMEQCADIAIoAgg2AgALIAIgAigCACAAKAIAQX5xajYCAEGEICEAAkACQCABRQ0AIAEgAjYCBCABKAIAIgNBAXENASADQQF2QXhqIgNBCCADQQhLG2dBH3NBAnRBgB9qIgMoAgAgAUEIakYEQCADIAEoAgw2AgALIAEoAggiAwRAIAMgASgCDDYCBAsgASgCDCIDBEAgAyABKAIINgIAQYQgKAIAIQQLIAIgAigCACABKAIAQX5xajYCACABIARGDQAgASABKAIAQQF2akEEaiEACyAAIAI2AgALIAIoAgBBAXZBeGoiAEEIIABBCEsbZ0Efc0ECdEGAH2oiASgCACEAIAEgBTYCACACIAA2AgwgAkEANgIIIABFDQEgACAFNgIADwsCQCABRQ0AIAEoAgAiAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAigCACABQQhqRgRAIAIgASgCDDYCAAsgASgCCCICBEAgAiABKAIMNgIECyABKAIMIgIEQCACIAEoAgg2AgBBhCAoAgAhBAsgACAAKAIAIAEoAgBBfnFqIgI2AgACQCABIARHBEAgASABKAIAQQF2aiAANgIEIAAoAgAhAgwBC0GEICAANgIACyACQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgIoAgAhASACIABBCGoiAjYCACAAIAE2AgwgAEEANgIIIAFFDQEgASACNgIADwsgBUEBdkF4aiIBQQggAUEISxtnQR9zQQJ0QYAfaiICKAIAIQEgAiAAQQhqIgI2AgAgACABNgIMIABBADYCCCABRQ0AIAEgAjYCAAsLDgAgAARAIABBeGoQJQsLgAIBA38CQCAAQQ9qQXhxQYQgKAIAKAIAQQF2ayICEB1Bf0YNAAJAQYQgKAIAIgAoAgAiAUEBcQ0AIAFBAXZBeGoiAUEIIAFBCEsbZ0Efc0ECdEGAH2oiASgCACAAQQhqRgRAIAEgACgCDDYCAAsgACgCCCIBBEAgASAAKAIMNgIECyAAKAIMIgFFDQAgASAAKAIINgIAC0EBIQEgACAAKAIAIAJBAXRqIgI2AgAgAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAygCACECIAMgAEEIaiIDNgIAIAAgAjYCDCAAQQA2AgggAkUNACACIAM2AgALIAELtwIBA38CQAJAIABBASAAGyICEDgiAA0AAkACQEGEICgCACIARQ0AIAAoAgAiA0EBcQ0AIAAgA0EBcjYCACADQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgAgAEEIakYEQCABIAAoAgw2AgALIAAoAggiAQRAIAEgACgCDDYCBAsgACgCDCIBBEAgASAAKAIINgIACyACECchAkEAIQFBhCAoAgAhACACDQEgACAAKAIAQX5xNgIAQQAPCyACQQ9qQXhxIgMQHSICQX9GDQIgAkEHakF4cSIAIAJHBEAgACACaxAdQX9GDQMLAkBBhCAoAgAiAUUEQEGAICAANgIADAELIAAgATYCBAtBhCAgADYCACAAIANBAXRBAXI2AgAMAQsgAEUNAQsgAEEIaiEBCyABC7kDAQJ/IAAgA2ohBQJAIANBB0wEQANAIAAgBU8NAiAAIAItAAA6AAAgAEEBaiEAIAJBAWohAgwAAAsACyAEQQFGBEACQCAAIAJrIgZBB00EQCAAIAItAAA6AAAgACACLQABOgABIAAgAi0AAjoAAiAAIAItAAM6AAMgAEEEaiACIAZBAnQiBkHAHmooAgBqIgIQFyACIAZB4B5qKAIAayECDAELIAAgAhAMCyACQQhqIQIgAEEIaiEACwJAAkACQAJAIAUgAU0EQCAAIANqIQEgBEEBRyAAIAJrQQ9Kcg0BA0AgACACEAwgAkEIaiECIABBCGoiACABSQ0ACwwFCyAAIAFLBEAgACEBDAQLIARBAUcgACACa0EPSnINASAAIQMgAiEEA0AgAyAEEAwgBEEIaiEEIANBCGoiAyABSQ0ACwwCCwNAIAAgAhAHIAJBEGohAiAAQRBqIgAgAUkNAAsMAwsgACEDIAIhBANAIAMgBBAHIARBEGohBCADQRBqIgMgAUkNAAsLIAIgASAAa2ohAgsDQCABIAVPDQEgASACLQAAOgAAIAFBAWohASACQQFqIQIMAAALAAsLQQECfyAAIAAoArjgASIDNgLE4AEgACgCvOABIQQgACABNgK84AEgACABIAJqNgK44AEgACABIAQgA2tqNgLA4AELpgEBAX8gACAAKALs4QEQFjYCyOABIABCADcD+OABIABCADcDuOABIABBwOABakIANwMAIABBqNAAaiIBQYyAgOAANgIAIABBADYCmOIBIABCADcDiOEBIABCAzcDgOEBIABBrNABakHgEikCADcCACAAQbTQAWpB6BIoAgA2AgAgACABNgIMIAAgAEGYIGo2AgggACAAQaAwajYCBCAAIABBEGo2AgALYQEBf0G4fyEDAkAgAUEDSQ0AIAIgABAhIgFBA3YiADYCCCACIAFBAXE2AgQgAiABQQF2QQNxIgM2AgACQCADQX9qIgFBAksNAAJAIAFBAWsOAgEAAgtBbA8LIAAhAwsgAwsMACAAIAEgAkEAEC4LiAQCA38CfiADEBYhBCAAQQBBKBAQIQAgBCACSwRAIAQPCyABRQRAQX8PCwJAAkAgA0EBRg0AIAEoAAAiBkGo6r5pRg0AQXYhAyAGQXBxQdDUtMIBRw0BQQghAyACQQhJDQEgAEEAQSgQECEAIAEoAAQhASAAQQE2AhQgACABrTcDAEEADwsgASACIAMQLyIDIAJLDQAgACADNgIYQXIhAyABIARqIgVBf2otAAAiAkEIcQ0AIAJBIHEiBkUEQEFwIQMgBS0AACIFQacBSw0BIAVBB3GtQgEgBUEDdkEKaq2GIgdCA4h+IAd8IQggBEEBaiEECyACQQZ2IQMgAkECdiEFAkAgAkEDcUF/aiICQQJLBEBBACECDAELAkACQAJAIAJBAWsOAgECAAsgASAEai0AACECIARBAWohBAwCCyABIARqLwAAIQIgBEECaiEEDAELIAEgBGooAAAhAiAEQQRqIQQLIAVBAXEhBQJ+AkACQAJAIANBf2oiA0ECTQRAIANBAWsOAgIDAQtCfyAGRQ0DGiABIARqMQAADAMLIAEgBGovAACtQoACfAwCCyABIARqKAAArQwBCyABIARqKQAACyEHIAAgBTYCICAAIAI2AhwgACAHNwMAQQAhAyAAQQA2AhQgACAHIAggBhsiBzcDCCAAIAdCgIAIIAdCgIAIVBs+AhALIAMLWwEBf0G4fyEDIAIQFiICIAFNBH8gACACakF/ai0AACIAQQNxQQJ0QaAeaigCACACaiAAQQZ2IgFBAnRBsB5qKAIAaiAAQSBxIgBFaiABRSAAQQV2cWoFQbh/CwsdACAAKAKQ4gEQWiAAQQA2AqDiASAAQgA3A5DiAQu1AwEFfyMAQZACayIKJABBuH8hBgJAIAVFDQAgBCwAACIIQf8BcSEHAkAgCEF/TARAIAdBgn9qQQF2IgggBU8NAkFsIQYgB0GBf2oiBUGAAk8NAiAEQQFqIQdBACEGA0AgBiAFTwRAIAUhBiAIIQcMAwUgACAGaiAHIAZBAXZqIgQtAABBBHY6AAAgACAGQQFyaiAELQAAQQ9xOgAAIAZBAmohBgwBCwAACwALIAcgBU8NASAAIARBAWogByAKEFMiBhADDQELIAYhBEEAIQYgAUEAQTQQECEJQQAhBQNAIAQgBkcEQCAAIAZqIggtAAAiAUELSwRAQWwhBgwDBSAJIAFBAnRqIgEgASgCAEEBajYCACAGQQFqIQZBASAILQAAdEEBdSAFaiEFDAILAAsLQWwhBiAFRQ0AIAUQFEEBaiIBQQxLDQAgAyABNgIAQQFBASABdCAFayIDEBQiAXQgA0cNACAAIARqIAFBAWoiADoAACAJIABBAnRqIgAgACgCAEEBajYCACAJKAIEIgBBAkkgAEEBcXINACACIARBAWo2AgAgB0EBaiEGCyAKQZACaiQAIAYLxhEBDH8jAEHwAGsiBSQAQWwhCwJAIANBCkkNACACLwAAIQogAi8AAiEJIAIvAAQhByAFQQhqIAQQDgJAIAMgByAJIApqakEGaiIMSQ0AIAUtAAohCCAFQdgAaiACQQZqIgIgChAGIgsQAw0BIAVBQGsgAiAKaiICIAkQBiILEAMNASAFQShqIAIgCWoiAiAHEAYiCxADDQEgBUEQaiACIAdqIAMgDGsQBiILEAMNASAAIAFqIg9BfWohECAEQQRqIQZBASELIAAgAUEDakECdiIDaiIMIANqIgIgA2oiDiEDIAIhBCAMIQcDQCALIAMgEElxBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgCS0AAyELIAcgBiAFQUBrIAgQAkECdGoiCS8BADsAACAFQUBrIAktAAIQASAJLQADIQogBCAGIAVBKGogCBACQQJ0aiIJLwEAOwAAIAVBKGogCS0AAhABIAktAAMhCSADIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgDS0AAyENIAAgC2oiCyAGIAVB2ABqIAgQAkECdGoiAC8BADsAACAFQdgAaiAALQACEAEgAC0AAyEAIAcgCmoiCiAGIAVBQGsgCBACQQJ0aiIHLwEAOwAAIAVBQGsgBy0AAhABIActAAMhByAEIAlqIgkgBiAFQShqIAgQAkECdGoiBC8BADsAACAFQShqIAQtAAIQASAELQADIQQgAyANaiIDIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgACALaiEAIAcgCmohByAEIAlqIQQgAyANLQADaiEDIAVB2ABqEA0gBUFAaxANciAFQShqEA1yIAVBEGoQDXJFIQsMAQsLIAQgDksgByACS3INAEFsIQsgACAMSw0BIAxBfWohCQNAQQAgACAJSSAFQdgAahAEGwRAIAAgBiAFQdgAaiAIEAJBAnRqIgovAQA7AAAgBUHYAGogCi0AAhABIAAgCi0AA2oiACAGIAVB2ABqIAgQAkECdGoiCi8BADsAACAFQdgAaiAKLQACEAEgACAKLQADaiEADAEFIAxBfmohCgNAIAVB2ABqEAQgACAKS3JFBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgACAJLQADaiEADAELCwNAIAAgCk0EQCAAIAYgBUHYAGogCBACQQJ0aiIJLwEAOwAAIAVB2ABqIAktAAIQASAAIAktAANqIQAMAQsLAkAgACAMTw0AIAAgBiAFQdgAaiAIEAIiAEECdGoiDC0AADoAACAMLQADQQFGBEAgBUHYAGogDC0AAhABDAELIAUoAlxBH0sNACAFQdgAaiAGIABBAnRqLQACEAEgBSgCXEEhSQ0AIAVBIDYCXAsgAkF9aiEMA0BBACAHIAxJIAVBQGsQBBsEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiIAIAYgBUFAayAIEAJBAnRqIgcvAQA7AAAgBUFAayAHLQACEAEgACAHLQADaiEHDAEFIAJBfmohDANAIAVBQGsQBCAHIAxLckUEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwNAIAcgDE0EQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwJAIAcgAk8NACAHIAYgBUFAayAIEAIiAEECdGoiAi0AADoAACACLQADQQFGBEAgBUFAayACLQACEAEMAQsgBSgCREEfSw0AIAVBQGsgBiAAQQJ0ai0AAhABIAUoAkRBIUkNACAFQSA2AkQLIA5BfWohAgNAQQAgBCACSSAFQShqEAQbBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2oiACAGIAVBKGogCBACQQJ0aiIELwEAOwAAIAVBKGogBC0AAhABIAAgBC0AA2ohBAwBBSAOQX5qIQIDQCAFQShqEAQgBCACS3JFBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsDQCAEIAJNBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsCQCAEIA5PDQAgBCAGIAVBKGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBKGogAi0AAhABDAELIAUoAixBH0sNACAFQShqIAYgAEECdGotAAIQASAFKAIsQSFJDQAgBUEgNgIsCwNAQQAgAyAQSSAFQRBqEAQbBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2oiACAGIAVBEGogCBACQQJ0aiICLwEAOwAAIAVBEGogAi0AAhABIAAgAi0AA2ohAwwBBSAPQX5qIQIDQCAFQRBqEAQgAyACS3JFBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsDQCADIAJNBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsCQCADIA9PDQAgAyAGIAVBEGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBEGogAi0AAhABDAELIAUoAhRBH0sNACAFQRBqIAYgAEECdGotAAIQASAFKAIUQSFJDQAgBUEgNgIUCyABQWwgBUHYAGoQCiAFQUBrEApxIAVBKGoQCnEgBUEQahAKcRshCwwJCwAACwALAAALAAsAAAsACwAACwALQWwhCwsgBUHwAGokACALC7UEAQ5/IwBBEGsiBiQAIAZBBGogABAOQVQhBQJAIARB3AtJDQAgBi0ABCEHIANB8ARqQQBB7AAQECEIIAdBDEsNACADQdwJaiIJIAggBkEIaiAGQQxqIAEgAhAxIhAQA0UEQCAGKAIMIgQgB0sNASADQdwFaiEPIANBpAVqIREgAEEEaiESIANBqAVqIQEgBCEFA0AgBSICQX9qIQUgCCACQQJ0aigCAEUNAAsgAkEBaiEOQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgASALaiAKNgIAIAVBAWohBSAKIAxqIQoMAQsLIAEgCjYCAEEAIQUgBigCCCELA0AgBSALRkUEQCABIAUgCWotAAAiDEECdGoiDSANKAIAIg1BAWo2AgAgDyANQQF0aiINIAw6AAEgDSAFOgAAIAVBAWohBQwBCwtBACEBIANBADYCqAUgBEF/cyAHaiEJQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgAyALaiABNgIAIAwgBSAJanQgAWohASAFQQFqIQUMAQsLIAcgBEEBaiIBIAJrIgRrQQFqIQgDQEEBIQUgBCAIT0UEQANAIAUgDk9FBEAgBUECdCIJIAMgBEE0bGpqIAMgCWooAgAgBHY2AgAgBUEBaiEFDAELCyAEQQFqIQQMAQsLIBIgByAPIAogESADIAIgARBkIAZBAToABSAGIAc6AAYgACAGKAIENgIACyAQIQULIAZBEGokACAFC8ENAQt/IwBB8ABrIgUkAEFsIQkCQCADQQpJDQAgAi8AACEKIAIvAAIhDCACLwAEIQYgBUEIaiAEEA4CQCADIAYgCiAMampBBmoiDUkNACAFLQAKIQcgBUHYAGogAkEGaiICIAoQBiIJEAMNASAFQUBrIAIgCmoiAiAMEAYiCRADDQEgBUEoaiACIAxqIgIgBhAGIgkQAw0BIAVBEGogAiAGaiADIA1rEAYiCRADDQEgACABaiIOQX1qIQ8gBEEEaiEGQQEhCSAAIAFBA2pBAnYiAmoiCiACaiIMIAJqIg0hAyAMIQQgCiECA0AgCSADIA9JcQRAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAACAGIAVBQGsgBxACQQF0aiIILQAAIQsgBUFAayAILQABEAEgAiALOgAAIAYgBUEoaiAHEAJBAXRqIggtAAAhCyAFQShqIAgtAAEQASAEIAs6AAAgBiAFQRBqIAcQAkEBdGoiCC0AACELIAVBEGogCC0AARABIAMgCzoAACAGIAVB2ABqIAcQAkEBdGoiCC0AACELIAVB2ABqIAgtAAEQASAAIAs6AAEgBiAFQUBrIAcQAkEBdGoiCC0AACELIAVBQGsgCC0AARABIAIgCzoAASAGIAVBKGogBxACQQF0aiIILQAAIQsgBUEoaiAILQABEAEgBCALOgABIAYgBUEQaiAHEAJBAXRqIggtAAAhCyAFQRBqIAgtAAEQASADIAs6AAEgA0ECaiEDIARBAmohBCACQQJqIQIgAEECaiEAIAkgBUHYAGoQDUVxIAVBQGsQDUVxIAVBKGoQDUVxIAVBEGoQDUVxIQkMAQsLIAQgDUsgAiAMS3INAEFsIQkgACAKSw0BIApBfWohCQNAIAVB2ABqEAQgACAJT3JFBEAgBiAFQdgAaiAHEAJBAXRqIggtAAAhCyAFQdgAaiAILQABEAEgACALOgAAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAASAAQQJqIQAMAQsLA0AgBUHYAGoQBCAAIApPckUEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCwNAIAAgCkkEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCyAMQX1qIQADQCAFQUBrEAQgAiAAT3JFBEAgBiAFQUBrIAcQAkEBdGoiCi0AACEJIAVBQGsgCi0AARABIAIgCToAACAGIAVBQGsgBxACQQF0aiIKLQAAIQkgBUFAayAKLQABEAEgAiAJOgABIAJBAmohAgwBCwsDQCAFQUBrEAQgAiAMT3JFBEAgBiAFQUBrIAcQAkEBdGoiAC0AACEKIAVBQGsgAC0AARABIAIgCjoAACACQQFqIQIMAQsLA0AgAiAMSQRAIAYgBUFAayAHEAJBAXRqIgAtAAAhCiAFQUBrIAAtAAEQASACIAo6AAAgAkEBaiECDAELCyANQX1qIQADQCAFQShqEAQgBCAAT3JFBEAgBiAFQShqIAcQAkEBdGoiAi0AACEKIAVBKGogAi0AARABIAQgCjoAACAGIAVBKGogBxACQQF0aiICLQAAIQogBUEoaiACLQABEAEgBCAKOgABIARBAmohBAwBCwsDQCAFQShqEAQgBCANT3JFBEAgBiAFQShqIAcQAkEBdGoiAC0AACECIAVBKGogAC0AARABIAQgAjoAACAEQQFqIQQMAQsLA0AgBCANSQRAIAYgBUEoaiAHEAJBAXRqIgAtAAAhAiAFQShqIAAtAAEQASAEIAI6AAAgBEEBaiEEDAELCwNAIAVBEGoQBCADIA9PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIAYgBUEQaiAHEAJBAXRqIgAtAAAhAiAFQRBqIAAtAAEQASADIAI6AAEgA0ECaiEDDAELCwNAIAVBEGoQBCADIA5PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIANBAWohAwwBCwsDQCADIA5JBEAgBiAFQRBqIAcQAkEBdGoiAC0AACECIAVBEGogAC0AARABIAMgAjoAACADQQFqIQMMAQsLIAFBbCAFQdgAahAKIAVBQGsQCnEgBUEoahAKcSAFQRBqEApxGyEJDAELQWwhCQsgBUHwAGokACAJC8oCAQR/IwBBIGsiBSQAIAUgBBAOIAUtAAIhByAFQQhqIAIgAxAGIgIQA0UEQCAEQQRqIQIgACABaiIDQX1qIQQDQCAFQQhqEAQgACAET3JFBEAgAiAFQQhqIAcQAkEBdGoiBi0AACEIIAVBCGogBi0AARABIAAgCDoAACACIAVBCGogBxACQQF0aiIGLQAAIQggBUEIaiAGLQABEAEgACAIOgABIABBAmohAAwBCwsDQCAFQQhqEAQgACADT3JFBEAgAiAFQQhqIAcQAkEBdGoiBC0AACEGIAVBCGogBC0AARABIAAgBjoAACAAQQFqIQAMAQsLA0AgACADT0UEQCACIAVBCGogBxACQQF0aiIELQAAIQYgBUEIaiAELQABEAEgACAGOgAAIABBAWohAAwBCwsgAUFsIAVBCGoQChshAgsgBUEgaiQAIAILtgMBCX8jAEEQayIGJAAgBkEANgIMIAZBADYCCEFUIQQCQAJAIANBQGsiDCADIAZBCGogBkEMaiABIAIQMSICEAMNACAGQQRqIAAQDiAGKAIMIgcgBi0ABEEBaksNASAAQQRqIQogBkEAOgAFIAYgBzoABiAAIAYoAgQ2AgAgB0EBaiEJQQEhBANAIAQgCUkEQCADIARBAnRqIgEoAgAhACABIAU2AgAgACAEQX9qdCAFaiEFIARBAWohBAwBCwsgB0EBaiEHQQAhBSAGKAIIIQkDQCAFIAlGDQEgAyAFIAxqLQAAIgRBAnRqIgBBASAEdEEBdSILIAAoAgAiAWoiADYCACAHIARrIQhBACEEAkAgC0EDTQRAA0AgBCALRg0CIAogASAEakEBdGoiACAIOgABIAAgBToAACAEQQFqIQQMAAALAAsDQCABIABPDQEgCiABQQF0aiIEIAg6AAEgBCAFOgAAIAQgCDoAAyAEIAU6AAIgBCAIOgAFIAQgBToABCAEIAg6AAcgBCAFOgAGIAFBBGohAQwAAAsACyAFQQFqIQUMAAALAAsgAiEECyAGQRBqJAAgBAutAQECfwJAQYQgKAIAIABHIAAoAgBBAXYiAyABa0F4aiICQXhxQQhHcgR/IAIFIAMQJ0UNASACQQhqC0EQSQ0AIAAgACgCACICQQFxIAAgAWpBD2pBeHEiASAAa0EBdHI2AgAgASAANgIEIAEgASgCAEEBcSAAIAJBAXZqIAFrIgJBAXRyNgIAQYQgIAEgAkH/////B3FqQQRqQYQgKAIAIABGGyABNgIAIAEQJQsLygIBBX8CQAJAAkAgAEEIIABBCEsbZ0EfcyAAaUEBR2oiAUEESSAAIAF2cg0AIAFBAnRB/B5qKAIAIgJFDQADQCACQXhqIgMoAgBBAXZBeGoiBSAATwRAIAIgBUEIIAVBCEsbZ0Efc0ECdEGAH2oiASgCAEYEQCABIAIoAgQ2AgALDAMLIARBHksNASAEQQFqIQQgAigCBCICDQALC0EAIQMgAUEgTw0BA0AgAUECdEGAH2ooAgAiAkUEQCABQR5LIQIgAUEBaiEBIAJFDQEMAwsLIAIgAkF4aiIDKAIAQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgBGBEAgASACKAIENgIACwsgAigCACIBBEAgASACKAIENgIECyACKAIEIgEEQCABIAIoAgA2AgALIAMgAygCAEEBcjYCACADIAAQNwsgAwvhCwINfwV+IwBB8ABrIgckACAHIAAoAvDhASIINgJcIAEgAmohDSAIIAAoAoDiAWohDwJAAkAgBUUEQCABIQQMAQsgACgCxOABIRAgACgCwOABIREgACgCvOABIQ4gAEEBNgKM4QFBACEIA0AgCEEDRwRAIAcgCEECdCICaiAAIAJqQazQAWooAgA2AkQgCEEBaiEIDAELC0FsIQwgB0EYaiADIAQQBhADDQEgB0EsaiAHQRhqIAAoAgAQEyAHQTRqIAdBGGogACgCCBATIAdBPGogB0EYaiAAKAIEEBMgDUFgaiESIAEhBEEAIQwDQCAHKAIwIAcoAixBA3RqKQIAIhRCEIinQf8BcSEIIAcoAkAgBygCPEEDdGopAgAiFUIQiKdB/wFxIQsgBygCOCAHKAI0QQN0aikCACIWQiCIpyEJIBVCIIghFyAUQiCIpyECAkAgFkIQiKdB/wFxIgNBAk8EQAJAIAZFIANBGUlyRQRAIAkgB0EYaiADQSAgBygCHGsiCiAKIANLGyIKEAUgAyAKayIDdGohCSAHQRhqEAQaIANFDQEgB0EYaiADEAUgCWohCQwBCyAHQRhqIAMQBSAJaiEJIAdBGGoQBBoLIAcpAkQhGCAHIAk2AkQgByAYNwNIDAELAkAgA0UEQCACBEAgBygCRCEJDAMLIAcoAkghCQwBCwJAAkAgB0EYakEBEAUgCSACRWpqIgNBA0YEQCAHKAJEQX9qIgMgA0VqIQkMAQsgA0ECdCAHaigCRCIJIAlFaiEJIANBAUYNAQsgByAHKAJINgJMCwsgByAHKAJENgJIIAcgCTYCRAsgF6chAyALBEAgB0EYaiALEAUgA2ohAwsgCCALakEUTwRAIAdBGGoQBBoLIAgEQCAHQRhqIAgQBSACaiECCyAHQRhqEAQaIAcgB0EYaiAUQhiIp0H/AXEQCCAUp0H//wNxajYCLCAHIAdBGGogFUIYiKdB/wFxEAggFadB//8DcWo2AjwgB0EYahAEGiAHIAdBGGogFkIYiKdB/wFxEAggFqdB//8DcWo2AjQgByACNgJgIAcoAlwhCiAHIAk2AmggByADNgJkAkACQAJAIAQgAiADaiILaiASSw0AIAIgCmoiEyAPSw0AIA0gBGsgC0Egak8NAQsgByAHKQNoNwMQIAcgBykDYDcDCCAEIA0gB0EIaiAHQdwAaiAPIA4gESAQEB4hCwwBCyACIARqIQggBCAKEAcgAkERTwRAIARBEGohAgNAIAIgCkEQaiIKEAcgAkEQaiICIAhJDQALCyAIIAlrIQIgByATNgJcIAkgCCAOa0sEQCAJIAggEWtLBEBBbCELDAILIBAgAiAOayICaiIKIANqIBBNBEAgCCAKIAMQDxoMAgsgCCAKQQAgAmsQDyEIIAcgAiADaiIDNgJkIAggAmshCCAOIQILIAlBEE8EQCADIAhqIQMDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALDAELAkAgCUEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgCUECdCIDQcAeaigCAGoiAhAXIAIgA0HgHmooAgBrIQIgBygCZCEDDAELIAggAhAMCyADQQlJDQAgAyAIaiEDIAhBCGoiCCACQQhqIgJrQQ9MBEADQCAIIAIQDCACQQhqIQIgCEEIaiIIIANJDQAMAgALAAsDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALCyAHQRhqEAQaIAsgDCALEAMiAhshDCAEIAQgC2ogAhshBCAFQX9qIgUNAAsgDBADDQFBbCEMIAdBGGoQBEECSQ0BQQAhCANAIAhBA0cEQCAAIAhBAnQiAmpBrNABaiACIAdqKAJENgIAIAhBAWohCAwBCwsgBygCXCEIC0G6fyEMIA8gCGsiACANIARrSw0AIAQEfyAEIAggABALIABqBUEACyABayEMCyAHQfAAaiQAIAwLkRcCFn8FfiMAQdABayIHJAAgByAAKALw4QEiCDYCvAEgASACaiESIAggACgCgOIBaiETAkACQCAFRQRAIAEhAwwBCyAAKALE4AEhESAAKALA4AEhFSAAKAK84AEhDyAAQQE2AozhAUEAIQgDQCAIQQNHBEAgByAIQQJ0IgJqIAAgAmpBrNABaigCADYCVCAIQQFqIQgMAQsLIAcgETYCZCAHIA82AmAgByABIA9rNgJoQWwhECAHQShqIAMgBBAGEAMNASAFQQQgBUEESBshFyAHQTxqIAdBKGogACgCABATIAdBxABqIAdBKGogACgCCBATIAdBzABqIAdBKGogACgCBBATQQAhBCAHQeAAaiEMIAdB5ABqIQoDQCAHQShqEARBAksgBCAXTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEJIAcoAkggBygCREEDdGopAgAiH0IgiKchCCAeQiCIISAgHUIgiKchAgJAIB9CEIinQf8BcSIDQQJPBEACQCAGRSADQRlJckUEQCAIIAdBKGogA0EgIAcoAixrIg0gDSADSxsiDRAFIAMgDWsiA3RqIQggB0EoahAEGiADRQ0BIAdBKGogAxAFIAhqIQgMAQsgB0EoaiADEAUgCGohCCAHQShqEAQaCyAHKQJUISEgByAINgJUIAcgITcDWAwBCwJAIANFBEAgAgRAIAcoAlQhCAwDCyAHKAJYIQgMAQsCQAJAIAdBKGpBARAFIAggAkVqaiIDQQNGBEAgBygCVEF/aiIDIANFaiEIDAELIANBAnQgB2ooAlQiCCAIRWohCCADQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAg2AlQLICCnIQMgCQRAIAdBKGogCRAFIANqIQMLIAkgC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgAmohAgsgB0EoahAEGiAHIAcoAmggAmoiCSADajYCaCAKIAwgCCAJSxsoAgAhDSAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogB0EoaiAfQhiIp0H/AXEQCCEOIAdB8ABqIARBBHRqIgsgCSANaiAIazYCDCALIAg2AgggCyADNgIEIAsgAjYCACAHIA4gH6dB//8DcWo2AkQgBEEBaiEEDAELCyAEIBdIDQEgEkFgaiEYIAdB4ABqIRogB0HkAGohGyABIQMDQCAHQShqEARBAksgBCAFTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEIIAcoAkggBygCREEDdGopAgAiH0IgiKchCSAeQiCIISAgHUIgiKchDAJAIB9CEIinQf8BcSICQQJPBEACQCAGRSACQRlJckUEQCAJIAdBKGogAkEgIAcoAixrIgogCiACSxsiChAFIAIgCmsiAnRqIQkgB0EoahAEGiACRQ0BIAdBKGogAhAFIAlqIQkMAQsgB0EoaiACEAUgCWohCSAHQShqEAQaCyAHKQJUISEgByAJNgJUIAcgITcDWAwBCwJAIAJFBEAgDARAIAcoAlQhCQwDCyAHKAJYIQkMAQsCQAJAIAdBKGpBARAFIAkgDEVqaiICQQNGBEAgBygCVEF/aiICIAJFaiEJDAELIAJBAnQgB2ooAlQiCSAJRWohCSACQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAk2AlQLICCnIRQgCARAIAdBKGogCBAFIBRqIRQLIAggC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgDGohDAsgB0EoahAEGiAHIAcoAmggDGoiGSAUajYCaCAbIBogCSAZSxsoAgAhHCAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogByAHQShqIB9CGIinQf8BcRAIIB+nQf//A3FqNgJEIAcgB0HwAGogBEEDcUEEdGoiDSkDCCIdNwPIASAHIA0pAwAiHjcDwAECQAJAAkAgBygCvAEiDiAepyICaiIWIBNLDQAgAyAHKALEASIKIAJqIgtqIBhLDQAgEiADayALQSBqTw0BCyAHIAcpA8gBNwMQIAcgBykDwAE3AwggAyASIAdBCGogB0G8AWogEyAPIBUgERAeIQsMAQsgAiADaiEIIAMgDhAHIAJBEU8EQCADQRBqIQIDQCACIA5BEGoiDhAHIAJBEGoiAiAISQ0ACwsgCCAdpyIOayECIAcgFjYCvAEgDiAIIA9rSwRAIA4gCCAVa0sEQEFsIQsMAgsgESACIA9rIgJqIhYgCmogEU0EQCAIIBYgChAPGgwCCyAIIBZBACACaxAPIQggByACIApqIgo2AsQBIAggAmshCCAPIQILIA5BEE8EQCAIIApqIQoDQCAIIAIQByACQRBqIQIgCEEQaiIIIApJDQALDAELAkAgDkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgDkECdCIKQcAeaigCAGoiAhAXIAIgCkHgHmooAgBrIQIgBygCxAEhCgwBCyAIIAIQDAsgCkEJSQ0AIAggCmohCiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAKSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAKSQ0ACwsgCxADBEAgCyEQDAQFIA0gDDYCACANIBkgHGogCWs2AgwgDSAJNgIIIA0gFDYCBCAEQQFqIQQgAyALaiEDDAILAAsLIAQgBUgNASAEIBdrIQtBACEEA0AgCyAFSARAIAcgB0HwAGogC0EDcUEEdGoiAikDCCIdNwPIASAHIAIpAwAiHjcDwAECQAJAAkAgBygCvAEiDCAepyICaiIKIBNLDQAgAyAHKALEASIJIAJqIhBqIBhLDQAgEiADayAQQSBqTw0BCyAHIAcpA8gBNwMgIAcgBykDwAE3AxggAyASIAdBGGogB0G8AWogEyAPIBUgERAeIRAMAQsgAiADaiEIIAMgDBAHIAJBEU8EQCADQRBqIQIDQCACIAxBEGoiDBAHIAJBEGoiAiAISQ0ACwsgCCAdpyIGayECIAcgCjYCvAEgBiAIIA9rSwRAIAYgCCAVa0sEQEFsIRAMAgsgESACIA9rIgJqIgwgCWogEU0EQCAIIAwgCRAPGgwCCyAIIAxBACACaxAPIQggByACIAlqIgk2AsQBIAggAmshCCAPIQILIAZBEE8EQCAIIAlqIQYDQCAIIAIQByACQRBqIQIgCEEQaiIIIAZJDQALDAELAkAgBkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgBkECdCIGQcAeaigCAGoiAhAXIAIgBkHgHmooAgBrIQIgBygCxAEhCQwBCyAIIAIQDAsgCUEJSQ0AIAggCWohBiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAGSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAGSQ0ACwsgEBADDQMgC0EBaiELIAMgEGohAwwBCwsDQCAEQQNHBEAgACAEQQJ0IgJqQazQAWogAiAHaigCVDYCACAEQQFqIQQMAQsLIAcoArwBIQgLQbp/IRAgEyAIayIAIBIgA2tLDQAgAwR/IAMgCCAAEAsgAGoFQQALIAFrIRALIAdB0AFqJAAgEAslACAAQgA3AgAgAEEAOwEIIABBADoACyAAIAE2AgwgACACOgAKC7QFAQN/IwBBMGsiBCQAIABB/wFqIgVBfWohBgJAIAMvAQIEQCAEQRhqIAEgAhAGIgIQAw0BIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahASOgAAIAMgBEEIaiAEQRhqEBI6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0FIAEgBEEQaiAEQRhqEBI6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBSABIARBCGogBEEYahASOgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEjoAACABIAJqIABrIQIMAwsgAyAEQRBqIARBGGoQEjoAAiADIARBCGogBEEYahASOgADIANBBGohAwwAAAsACyAEQRhqIAEgAhAGIgIQAw0AIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahAROgAAIAMgBEEIaiAEQRhqEBE6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0EIAEgBEEQaiAEQRhqEBE6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBCABIARBCGogBEEYahAROgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEToAACABIAJqIABrIQIMAgsgAyAEQRBqIARBGGoQEToAAiADIARBCGogBEEYahAROgADIANBBGohAwwAAAsACyAEQTBqJAAgAgtpAQF/An8CQAJAIAJBB00NACABKAAAQbfIwuF+Rw0AIAAgASgABDYCmOIBQWIgAEEQaiABIAIQPiIDEAMNAhogAEKBgICAEDcDiOEBIAAgASADaiACIANrECoMAQsgACABIAIQKgtBAAsLrQMBBn8jAEGAAWsiAyQAQWIhCAJAIAJBCUkNACAAQZjQAGogAUEIaiIEIAJBeGogAEGY0AAQMyIFEAMiBg0AIANBHzYCfCADIANB/ABqIANB+ABqIAQgBCAFaiAGGyIEIAEgAmoiAiAEaxAVIgUQAw0AIAMoAnwiBkEfSw0AIAMoAngiB0EJTw0AIABBiCBqIAMgBkGAC0GADCAHEBggA0E0NgJ8IAMgA0H8AGogA0H4AGogBCAFaiIEIAIgBGsQFSIFEAMNACADKAJ8IgZBNEsNACADKAJ4IgdBCk8NACAAQZAwaiADIAZBgA1B4A4gBxAYIANBIzYCfCADIANB/ABqIANB+ABqIAQgBWoiBCACIARrEBUiBRADDQAgAygCfCIGQSNLDQAgAygCeCIHQQpPDQAgACADIAZBwBBB0BEgBxAYIAQgBWoiBEEMaiIFIAJLDQAgAiAFayEFQQAhAgNAIAJBA0cEQCAEKAAAIgZBf2ogBU8NAiAAIAJBAnRqQZzQAWogBjYCACACQQFqIQIgBEEEaiEEDAELCyAEIAFrIQgLIANBgAFqJAAgCAtGAQN/IABBCGohAyAAKAIEIQJBACEAA0AgACACdkUEQCABIAMgAEEDdGotAAJBFktqIQEgAEEBaiEADAELCyABQQggAmt0C4YDAQV/Qbh/IQcCQCADRQ0AIAItAAAiBEUEQCABQQA2AgBBAUG4fyADQQFGGw8LAn8gAkEBaiIFIARBGHRBGHUiBkF/Sg0AGiAGQX9GBEAgA0EDSA0CIAUvAABBgP4BaiEEIAJBA2oMAQsgA0ECSA0BIAItAAEgBEEIdHJBgIB+aiEEIAJBAmoLIQUgASAENgIAIAVBAWoiASACIANqIgNLDQBBbCEHIABBEGogACAFLQAAIgVBBnZBI0EJIAEgAyABa0HAEEHQEUHwEiAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBmCBqIABBCGogBUEEdkEDcUEfQQggASABIAZqIAgbIgEgAyABa0GAC0GADEGAFyAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBoDBqIABBBGogBUECdkEDcUE0QQkgASABIAZqIAgbIgEgAyABa0GADUHgDkGQGSAAKAKM4QEgACgCnOIBIAQQHyIAEAMNACAAIAFqIAJrIQcLIAcLrQMBCn8jAEGABGsiCCQAAn9BUiACQf8BSw0AGkFUIANBDEsNABogAkEBaiELIABBBGohCUGAgAQgA0F/anRBEHUhCkEAIQJBASEEQQEgA3QiB0F/aiIMIQUDQCACIAtGRQRAAkAgASACQQF0Ig1qLwEAIgZB//8DRgRAIAkgBUECdGogAjoAAiAFQX9qIQVBASEGDAELIARBACAKIAZBEHRBEHVKGyEECyAIIA1qIAY7AQAgAkEBaiECDAELCyAAIAQ7AQIgACADOwEAIAdBA3YgB0EBdmpBA2ohBkEAIQRBACECA0AgBCALRkUEQCABIARBAXRqLgEAIQpBACEAA0AgACAKTkUEQCAJIAJBAnRqIAQ6AAIDQCACIAZqIAxxIgIgBUsNAAsgAEEBaiEADAELCyAEQQFqIQQMAQsLQX8gAg0AGkEAIQIDfyACIAdGBH9BAAUgCCAJIAJBAnRqIgAtAAJBAXRqIgEgAS8BACIBQQFqOwEAIAAgAyABEBRrIgU6AAMgACABIAVB/wFxdCAHazsBACACQQFqIQIMAQsLCyEFIAhBgARqJAAgBQvjBgEIf0FsIQcCQCACQQNJDQACQAJAAkACQCABLQAAIgNBA3EiCUEBaw4DAwEAAgsgACgCiOEBDQBBYg8LIAJBBUkNAkEDIQYgASgAACEFAn8CQAJAIANBAnZBA3EiCEF+aiIEQQFNBEAgBEEBaw0BDAILIAVBDnZB/wdxIQQgBUEEdkH/B3EhAyAIRQwCCyAFQRJ2IQRBBCEGIAVBBHZB//8AcSEDQQAMAQsgBUEEdkH//w9xIgNBgIAISw0DIAEtAARBCnQgBUEWdnIhBEEFIQZBAAshBSAEIAZqIgogAksNAgJAIANBgQZJDQAgACgCnOIBRQ0AQQAhAgNAIAJBg4ABSw0BIAJBQGshAgwAAAsACwJ/IAlBA0YEQCABIAZqIQEgAEHw4gFqIQIgACgCDCEGIAUEQCACIAMgASAEIAYQXwwCCyACIAMgASAEIAYQXQwBCyAAQbjQAWohAiABIAZqIQEgAEHw4gFqIQYgAEGo0ABqIQggBQRAIAggBiADIAEgBCACEF4MAQsgCCAGIAMgASAEIAIQXAsQAw0CIAAgAzYCgOIBIABBATYCiOEBIAAgAEHw4gFqNgLw4QEgCUECRgRAIAAgAEGo0ABqNgIMCyAAIANqIgBBiOMBakIANwAAIABBgOMBakIANwAAIABB+OIBakIANwAAIABB8OIBakIANwAAIAoPCwJ/AkACQAJAIANBAnZBA3FBf2oiBEECSw0AIARBAWsOAgACAQtBASEEIANBA3YMAgtBAiEEIAEvAABBBHYMAQtBAyEEIAEQIUEEdgsiAyAEaiIFQSBqIAJLBEAgBSACSw0CIABB8OIBaiABIARqIAMQCyEBIAAgAzYCgOIBIAAgATYC8OEBIAEgA2oiAEIANwAYIABCADcAECAAQgA3AAggAEIANwAAIAUPCyAAIAM2AoDiASAAIAEgBGo2AvDhASAFDwsCfwJAAkACQCADQQJ2QQNxQX9qIgRBAksNACAEQQFrDgIAAgELQQEhByADQQN2DAILQQIhByABLwAAQQR2DAELIAJBBEkgARAhIgJBj4CAAUtyDQFBAyEHIAJBBHYLIQIgAEHw4gFqIAEgB2otAAAgAkEgahAQIQEgACACNgKA4gEgACABNgLw4QEgB0EBaiEHCyAHC0sAIABC+erQ0OfJoeThADcDICAAQgA3AxggAELP1tO+0ser2UI3AxAgAELW64Lu6v2J9eAANwMIIABCADcDACAAQShqQQBBKBAQGgviAgICfwV+IABBKGoiASAAKAJIaiECAn4gACkDACIDQiBaBEAgACkDECIEQgeJIAApAwgiBUIBiXwgACkDGCIGQgyJfCAAKQMgIgdCEol8IAUQGSAEEBkgBhAZIAcQGQwBCyAAKQMYQsXP2bLx5brqJ3wLIAN8IQMDQCABQQhqIgAgAk0EQEIAIAEpAAAQCSADhUIbiUKHla+vmLbem55/fkLj3MqV/M7y9YV/fCEDIAAhAQwBCwsCQCABQQRqIgAgAksEQCABIQAMAQsgASgAAK1Ch5Wvr5i23puef34gA4VCF4lCz9bTvtLHq9lCfkL5893xmfaZqxZ8IQMLA0AgACACSQRAIAAxAABCxc/ZsvHluuonfiADhUILiUKHla+vmLbem55/fiEDIABBAWohAAwBCwsgA0IhiCADhULP1tO+0ser2UJ+IgNCHYggA4VC+fPd8Zn2masWfiIDQiCIIAOFC+8CAgJ/BH4gACAAKQMAIAKtfDcDAAJAAkAgACgCSCIDIAJqIgRBH00EQCABRQ0BIAAgA2pBKGogASACECAgACgCSCACaiEEDAELIAEgAmohAgJ/IAMEQCAAQShqIgQgA2ogAUEgIANrECAgACAAKQMIIAQpAAAQCTcDCCAAIAApAxAgACkAMBAJNwMQIAAgACkDGCAAKQA4EAk3AxggACAAKQMgIABBQGspAAAQCTcDICAAKAJIIQMgAEEANgJIIAEgA2tBIGohAQsgAUEgaiACTQsEQCACQWBqIQMgACkDICEFIAApAxghBiAAKQMQIQcgACkDCCEIA0AgCCABKQAAEAkhCCAHIAEpAAgQCSEHIAYgASkAEBAJIQYgBSABKQAYEAkhBSABQSBqIgEgA00NAAsgACAFNwMgIAAgBjcDGCAAIAc3AxAgACAINwMICyABIAJPDQEgAEEoaiABIAIgAWsiBBAgCyAAIAQ2AkgLCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQEBogAwVBun8LCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQCxogAwVBun8LC6gCAQZ/IwBBEGsiByQAIABB2OABaikDAEKAgIAQViEIQbh/IQUCQCAEQf//B0sNACAAIAMgBBBCIgUQAyIGDQAgACgCnOIBIQkgACAHQQxqIAMgAyAFaiAGGyIKIARBACAFIAYbayIGEEAiAxADBEAgAyEFDAELIAcoAgwhBCABRQRAQbp/IQUgBEEASg0BCyAGIANrIQUgAyAKaiEDAkAgCQRAIABBADYCnOIBDAELAkACQAJAIARBBUgNACAAQdjgAWopAwBCgICACFgNAAwBCyAAQQA2ApziAQwBCyAAKAIIED8hBiAAQQA2ApziASAGQRRPDQELIAAgASACIAMgBSAEIAgQOSEFDAELIAAgASACIAMgBSAEIAgQOiEFCyAHQRBqJAAgBQtnACAAQdDgAWogASACIAAoAuzhARAuIgEQAwRAIAEPC0G4fyECAkAgAQ0AIABB7OABaigCACIBBEBBYCECIAAoApjiASABRw0BC0EAIQIgAEHw4AFqKAIARQ0AIABBkOEBahBDCyACCycBAX8QVyIERQRAQUAPCyAEIAAgASACIAMgBBBLEE8hACAEEFYgAAs/AQF/AkACQAJAIAAoAqDiAUEBaiIBQQJLDQAgAUEBaw4CAAECCyAAEDBBAA8LIABBADYCoOIBCyAAKAKU4gELvAMCB38BfiMAQRBrIgkkAEG4fyEGAkAgBCgCACIIQQVBCSAAKALs4QEiBRtJDQAgAygCACIHQQFBBSAFGyAFEC8iBRADBEAgBSEGDAELIAggBUEDakkNACAAIAcgBRBJIgYQAw0AIAEgAmohCiAAQZDhAWohCyAIIAVrIQIgBSAHaiEHIAEhBQNAIAcgAiAJECwiBhADDQEgAkF9aiICIAZJBEBBuH8hBgwCCyAJKAIAIghBAksEQEFsIQYMAgsgB0EDaiEHAn8CQAJAAkAgCEEBaw4CAgABCyAAIAUgCiAFayAHIAYQSAwCCyAFIAogBWsgByAGEEcMAQsgBSAKIAVrIActAAAgCSgCCBBGCyIIEAMEQCAIIQYMAgsgACgC8OABBEAgCyAFIAgQRQsgAiAGayECIAYgB2ohByAFIAhqIQUgCSgCBEUNAAsgACkD0OABIgxCf1IEQEFsIQYgDCAFIAFrrFINAQsgACgC8OABBEBBaiEGIAJBBEkNASALEEQhDCAHKAAAIAynRw0BIAdBBGohByACQXxqIQILIAMgBzYCACAEIAI2AgAgBSABayEGCyAJQRBqJAAgBgsuACAAECsCf0EAQQAQAw0AGiABRSACRXJFBEBBYiAAIAEgAhA9EAMNARoLQQALCzcAIAEEQCAAIAAoAsTgASABKAIEIAEoAghqRzYCnOIBCyAAECtBABADIAFFckUEQCAAIAEQWwsL0QIBB38jAEEQayIGJAAgBiAENgIIIAYgAzYCDCAFBEAgBSgCBCEKIAUoAgghCQsgASEIAkACQANAIAAoAuzhARAWIQsCQANAIAQgC0kNASADKAAAQXBxQdDUtMIBRgRAIAMgBBAiIgcQAw0EIAQgB2shBCADIAdqIQMMAQsLIAYgAzYCDCAGIAQ2AggCQCAFBEAgACAFEE5BACEHQQAQA0UNAQwFCyAAIAogCRBNIgcQAw0ECyAAIAgQUCAMQQFHQQAgACAIIAIgBkEMaiAGQQhqEEwiByIDa0EAIAMQAxtBCkdyRQRAQbh/IQcMBAsgBxADDQMgAiAHayECIAcgCGohCEEBIQwgBigCDCEDIAYoAgghBAwBCwsgBiADNgIMIAYgBDYCCEG4fyEHIAQNASAIIAFrIQcMAQsgBiADNgIMIAYgBDYCCAsgBkEQaiQAIAcLRgECfyABIAAoArjgASICRwRAIAAgAjYCxOABIAAgATYCuOABIAAoArzgASEDIAAgATYCvOABIAAgASADIAJrajYCwOABCwutAgIEfwF+IwBBQGoiBCQAAkACQCACQQhJDQAgASgAAEFwcUHQ1LTCAUcNACABIAIQIiEBIABCADcDCCAAQQA2AgQgACABNgIADAELIARBGGogASACEC0iAxADBEAgACADEBoMAQsgAwRAIABBuH8QGgwBCyACIAQoAjAiA2shAiABIANqIQMDQAJAIAAgAyACIARBCGoQLCIFEAMEfyAFBSACIAVBA2oiBU8NAUG4fwsQGgwCCyAGQQFqIQYgAiAFayECIAMgBWohAyAEKAIMRQ0ACyAEKAI4BEAgAkEDTQRAIABBuH8QGgwCCyADQQRqIQMLIAQoAighAiAEKQMYIQcgAEEANgIEIAAgAyABazYCACAAIAIgBmytIAcgB0J/URs3AwgLIARBQGskAAslAQF/IwBBEGsiAiQAIAIgACABEFEgAigCACEAIAJBEGokACAAC30BBH8jAEGQBGsiBCQAIARB/wE2AggCQCAEQRBqIARBCGogBEEMaiABIAIQFSIGEAMEQCAGIQUMAQtBVCEFIAQoAgwiB0EGSw0AIAMgBEEQaiAEKAIIIAcQQSIFEAMNACAAIAEgBmogAiAGayADEDwhBQsgBEGQBGokACAFC4cBAgJ/An5BABAWIQMCQANAIAEgA08EQAJAIAAoAABBcHFB0NS0wgFGBEAgACABECIiAhADRQ0BQn4PCyAAIAEQVSIEQn1WDQMgBCAFfCIFIARUIQJCfiEEIAINAyAAIAEQUiICEAMNAwsgASACayEBIAAgAmohAAwBCwtCfiAFIAEbIQQLIAQLPwIBfwF+IwBBMGsiAiQAAn5CfiACQQhqIAAgARAtDQAaQgAgAigCHEEBRg0AGiACKQMICyEDIAJBMGokACADC40BAQJ/IwBBMGsiASQAAkAgAEUNACAAKAKI4gENACABIABB/OEBaigCADYCKCABIAApAvThATcDICAAEDAgACgCqOIBIQIgASABKAIoNgIYIAEgASkDIDcDECACIAFBEGoQGyAAQQA2AqjiASABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALKgECfyMAQRBrIgAkACAAQQA2AgggAEIANwMAIAAQWCEBIABBEGokACABC4cBAQN/IwBBEGsiAiQAAkAgACgCAEUgACgCBEVzDQAgAiAAKAIINgIIIAIgACkCADcDAAJ/IAIoAgAiAQRAIAIoAghBqOMJIAERBQAMAQtBqOMJECgLIgFFDQAgASAAKQIANwL04QEgAUH84QFqIAAoAgg2AgAgARBZIAEhAwsgAkEQaiQAIAMLywEBAn8jAEEgayIBJAAgAEGBgIDAADYCtOIBIABBADYCiOIBIABBADYC7OEBIABCADcDkOIBIABBADYCpOMJIABBADYC3OIBIABCADcCzOIBIABBADYCvOIBIABBADYCxOABIABCADcCnOIBIABBpOIBakIANwIAIABBrOIBakEANgIAIAFCADcCECABQgA3AhggASABKQMYNwMIIAEgASkDEDcDACABKAIIQQh2QQFxIQIgAEEANgLg4gEgACACNgKM4gEgAUEgaiQAC3YBA38jAEEwayIBJAAgAARAIAEgAEHE0AFqIgIoAgA2AiggASAAKQK80AE3AyAgACgCACEDIAEgAigCADYCGCABIAApArzQATcDECADIAFBEGoQGyABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALzAEBAX8gACABKAK00AE2ApjiASAAIAEoAgQiAjYCwOABIAAgAjYCvOABIAAgAiABKAIIaiICNgK44AEgACACNgLE4AEgASgCuNABBEAgAEKBgICAEDcDiOEBIAAgAUGk0ABqNgIMIAAgAUGUIGo2AgggACABQZwwajYCBCAAIAFBDGo2AgAgAEGs0AFqIAFBqNABaigCADYCACAAQbDQAWogAUGs0AFqKAIANgIAIABBtNABaiABQbDQAWooAgA2AgAPCyAAQgA3A4jhAQs7ACACRQRAQbp/DwsgBEUEQEFsDwsgAiAEEGAEQCAAIAEgAiADIAQgBRBhDwsgACABIAIgAyAEIAUQZQtGAQF/IwBBEGsiBSQAIAVBCGogBBAOAn8gBS0ACQRAIAAgASACIAMgBBAyDAELIAAgASACIAMgBBA0CyEAIAVBEGokACAACzQAIAAgAyAEIAUQNiIFEAMEQCAFDwsgBSAESQR/IAEgAiADIAVqIAQgBWsgABA1BUG4fwsLRgEBfyMAQRBrIgUkACAFQQhqIAQQDgJ/IAUtAAkEQCAAIAEgAiADIAQQYgwBCyAAIAEgAiADIAQQNQshACAFQRBqJAAgAAtZAQF/QQ8hAiABIABJBEAgAUEEdCAAbiECCyAAQQh2IgEgAkEYbCIAQYwIaigCAGwgAEGICGooAgBqIgJBA3YgAmogAEGACGooAgAgAEGECGooAgAgAWxqSQs3ACAAIAMgBCAFQYAQEDMiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQMgVBuH8LC78DAQN/IwBBIGsiBSQAIAVBCGogAiADEAYiAhADRQRAIAAgAWoiB0F9aiEGIAUgBBAOIARBBGohAiAFLQACIQMDQEEAIAAgBkkgBUEIahAEGwRAIAAgAiAFQQhqIAMQAkECdGoiBC8BADsAACAFQQhqIAQtAAIQASAAIAQtAANqIgQgAiAFQQhqIAMQAkECdGoiAC8BADsAACAFQQhqIAAtAAIQASAEIAAtAANqIQAMAQUgB0F+aiEEA0AgBUEIahAEIAAgBEtyRQRAIAAgAiAFQQhqIAMQAkECdGoiBi8BADsAACAFQQhqIAYtAAIQASAAIAYtAANqIQAMAQsLA0AgACAES0UEQCAAIAIgBUEIaiADEAJBAnRqIgYvAQA7AAAgBUEIaiAGLQACEAEgACAGLQADaiEADAELCwJAIAAgB08NACAAIAIgBUEIaiADEAIiA0ECdGoiAC0AADoAACAALQADQQFGBEAgBUEIaiAALQACEAEMAQsgBSgCDEEfSw0AIAVBCGogAiADQQJ0ai0AAhABIAUoAgxBIUkNACAFQSA2AgwLIAFBbCAFQQhqEAobIQILCwsgBUEgaiQAIAILkgIBBH8jAEFAaiIJJAAgCSADQTQQCyEDAkAgBEECSA0AIAMgBEECdGooAgAhCSADQTxqIAgQIyADQQE6AD8gAyACOgA+QQAhBCADKAI8IQoDQCAEIAlGDQEgACAEQQJ0aiAKNgEAIARBAWohBAwAAAsAC0EAIQkDQCAGIAlGRQRAIAMgBSAJQQF0aiIKLQABIgtBAnRqIgwoAgAhBCADQTxqIAotAABBCHQgCGpB//8DcRAjIANBAjoAPyADIAcgC2siCiACajoAPiAEQQEgASAKa3RqIQogAygCPCELA0AgACAEQQJ0aiALNgEAIARBAWoiBCAKSQ0ACyAMIAo2AgAgCUEBaiEJDAELCyADQUBrJAALowIBCX8jAEHQAGsiCSQAIAlBEGogBUE0EAsaIAcgBmshDyAHIAFrIRADQAJAIAMgCkcEQEEBIAEgByACIApBAXRqIgYtAAEiDGsiCGsiC3QhDSAGLQAAIQ4gCUEQaiAMQQJ0aiIMKAIAIQYgCyAPTwRAIAAgBkECdGogCyAIIAUgCEE0bGogCCAQaiIIQQEgCEEBShsiCCACIAQgCEECdGooAgAiCEEBdGogAyAIayAHIA4QYyAGIA1qIQgMAgsgCUEMaiAOECMgCUEBOgAPIAkgCDoADiAGIA1qIQggCSgCDCELA0AgBiAITw0CIAAgBkECdGogCzYBACAGQQFqIQYMAAALAAsgCUHQAGokAA8LIAwgCDYCACAKQQFqIQoMAAALAAs0ACAAIAMgBCAFEDYiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQNAVBuH8LCyMAIAA/AEEQdGtB//8DakEQdkAAQX9GBEBBAA8LQQAQAEEBCzsBAX8gAgRAA0AgACABIAJBgCAgAkGAIEkbIgMQCyEAIAFBgCBqIQEgAEGAIGohACACIANrIgINAAsLCwYAIAAQAwsLqBUJAEGICAsNAQAAAAEAAAACAAAAAgBBoAgLswYBAAAAAQAAAAIAAAACAAAAJgAAAIIAAAAhBQAASgAAAGcIAAAmAAAAwAEAAIAAAABJBQAASgAAAL4IAAApAAAALAIAAIAAAABJBQAASgAAAL4IAAAvAAAAygIAAIAAAACKBQAASgAAAIQJAAA1AAAAcwMAAIAAAACdBQAASgAAAKAJAAA9AAAAgQMAAIAAAADrBQAASwAAAD4KAABEAAAAngMAAIAAAABNBgAASwAAAKoKAABLAAAAswMAAIAAAADBBgAATQAAAB8NAABNAAAAUwQAAIAAAAAjCAAAUQAAAKYPAABUAAAAmQQAAIAAAABLCQAAVwAAALESAABYAAAA2gQAAIAAAABvCQAAXQAAACMUAABUAAAARQUAAIAAAABUCgAAagAAAIwUAABqAAAArwUAAIAAAAB2CQAAfAAAAE4QAAB8AAAA0gIAAIAAAABjBwAAkQAAAJAHAACSAAAAAAAAAAEAAAABAAAABQAAAA0AAAAdAAAAPQAAAH0AAAD9AAAA/QEAAP0DAAD9BwAA/Q8AAP0fAAD9PwAA/X8AAP3/AAD9/wEA/f8DAP3/BwD9/w8A/f8fAP3/PwD9/38A/f//AP3//wH9//8D/f//B/3//w/9//8f/f//P/3//38AAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACUAAAAnAAAAKQAAACsAAAAvAAAAMwAAADsAAABDAAAAUwAAAGMAAACDAAAAAwEAAAMCAAADBAAAAwgAAAMQAAADIAAAA0AAAAOAAAADAAEAQeAPC1EBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAQcQQC4sBAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABIAAAAUAAAAFgAAABgAAAAcAAAAIAAAACgAAAAwAAAAQAAAAIAAAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAQAAAAIAAAAAAAQBBkBIL5gQBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAAAEAAAAEAAAACAAAAAAAAAABAAEBBgAAAAAAAAQAAAAAEAAABAAAAAAgAAAFAQAAAAAAAAUDAAAAAAAABQQAAAAAAAAFBgAAAAAAAAUHAAAAAAAABQkAAAAAAAAFCgAAAAAAAAUMAAAAAAAABg4AAAAAAAEFEAAAAAAAAQUUAAAAAAABBRYAAAAAAAIFHAAAAAAAAwUgAAAAAAAEBTAAAAAgAAYFQAAAAAAABwWAAAAAAAAIBgABAAAAAAoGAAQAAAAADAYAEAAAIAAABAAAAAAAAAAEAQAAAAAAAAUCAAAAIAAABQQAAAAAAAAFBQAAACAAAAUHAAAAAAAABQgAAAAgAAAFCgAAAAAAAAULAAAAAAAABg0AAAAgAAEFEAAAAAAAAQUSAAAAIAABBRYAAAAAAAIFGAAAACAAAwUgAAAAAAADBSgAAAAAAAYEQAAAABAABgRAAAAAIAAHBYAAAAAAAAkGAAIAAAAACwYACAAAMAAABAAAAAAQAAAEAQAAACAAAAUCAAAAIAAABQMAAAAgAAAFBQAAACAAAAUGAAAAIAAABQgAAAAgAAAFCQAAACAAAAULAAAAIAAABQwAAAAAAAAGDwAAACAAAQUSAAAAIAABBRQAAAAgAAIFGAAAACAAAgUcAAAAIAADBSgAAAAgAAQFMAAAAAAAEAYAAAEAAAAPBgCAAAAAAA4GAEAAAAAADQYAIABBgBcLhwIBAAEBBQAAAAAAAAUAAAAAAAAGBD0AAAAAAAkF/QEAAAAADwX9fwAAAAAVBf3/HwAAAAMFBQAAAAAABwR9AAAAAAAMBf0PAAAAABIF/f8DAAAAFwX9/38AAAAFBR0AAAAAAAgE/QAAAAAADgX9PwAAAAAUBf3/DwAAAAIFAQAAABAABwR9AAAAAAALBf0HAAAAABEF/f8BAAAAFgX9/z8AAAAEBQ0AAAAQAAgE/QAAAAAADQX9HwAAAAATBf3/BwAAAAEFAQAAABAABgQ9AAAAAAAKBf0DAAAAABAF/f8AAAAAHAX9//8PAAAbBf3//wcAABoF/f//AwAAGQX9//8BAAAYBf3//wBBkBkLhgQBAAEBBgAAAAAAAAYDAAAAAAAABAQAAAAgAAAFBQAAAAAAAAUGAAAAAAAABQgAAAAAAAAFCQAAAAAAAAULAAAAAAAABg0AAAAAAAAGEAAAAAAAAAYTAAAAAAAABhYAAAAAAAAGGQAAAAAAAAYcAAAAAAAABh8AAAAAAAAGIgAAAAAAAQYlAAAAAAABBikAAAAAAAIGLwAAAAAAAwY7AAAAAAAEBlMAAAAAAAcGgwAAAAAACQYDAgAAEAAABAQAAAAAAAAEBQAAACAAAAUGAAAAAAAABQcAAAAgAAAFCQAAAAAAAAUKAAAAAAAABgwAAAAAAAAGDwAAAAAAAAYSAAAAAAAABhUAAAAAAAAGGAAAAAAAAAYbAAAAAAAABh4AAAAAAAAGIQAAAAAAAQYjAAAAAAABBicAAAAAAAIGKwAAAAAAAwYzAAAAAAAEBkMAAAAAAAUGYwAAAAAACAYDAQAAIAAABAQAAAAwAAAEBAAAABAAAAQFAAAAIAAABQcAAAAgAAAFCAAAACAAAAUKAAAAIAAABQsAAAAAAAAGDgAAAAAAAAYRAAAAAAAABhQAAAAAAAAGFwAAAAAAAAYaAAAAAAAABh0AAAAAAAAGIAAAAAAAEAYDAAEAAAAPBgOAAAAAAA4GA0AAAAAADQYDIAAAAAAMBgMQAAAAAAsGAwgAAAAACgYDBABBpB0L2QEBAAAAAwAAAAcAAAAPAAAAHwAAAD8AAAB/AAAA/wAAAP8BAAD/AwAA/wcAAP8PAAD/HwAA/z8AAP9/AAD//wAA//8BAP//AwD//wcA//8PAP//HwD//z8A//9/AP///wD///8B////A////wf///8P////H////z////9/AAAAAAEAAAACAAAABAAAAAAAAAACAAAABAAAAAgAAAAAAAAAAQAAAAIAAAABAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAACAAAAAcAAAAIAAAACQAAAAoAAAALAEGgIAsDwBBQ\\\",te={315:\\\"Artist\\\",258:\\\"BitsPerSample\\\",265:\\\"CellLength\\\",264:\\\"CellWidth\\\",320:\\\"ColorMap\\\",259:\\\"Compression\\\",33432:\\\"Copyright\\\",306:\\\"DateTime\\\",338:\\\"ExtraSamples\\\",266:\\\"FillOrder\\\",289:\\\"FreeByteCounts\\\",288:\\\"FreeOffsets\\\",291:\\\"GrayResponseCurve\\\",290:\\\"GrayResponseUnit\\\",316:\\\"HostComputer\\\",270:\\\"ImageDescription\\\",257:\\\"ImageLength\\\",256:\\\"ImageWidth\\\",271:\\\"Make\\\",281:\\\"MaxSampleValue\\\",280:\\\"MinSampleValue\\\",272:\\\"Model\\\",254:\\\"NewSubfileType\\\",274:\\\"Orientation\\\",262:\\\"PhotometricInterpretation\\\",284:\\\"PlanarConfiguration\\\",296:\\\"ResolutionUnit\\\",278:\\\"RowsPerStrip\\\",277:\\\"SamplesPerPixel\\\",305:\\\"Software\\\",279:\\\"StripByteCounts\\\",273:\\\"StripOffsets\\\",255:\\\"SubfileType\\\",263:\\\"Threshholding\\\",282:\\\"XResolution\\\",283:\\\"YResolution\\\",326:\\\"BadFaxLines\\\",327:\\\"CleanFaxData\\\",343:\\\"ClipPath\\\",328:\\\"ConsecutiveBadFaxLines\\\",433:\\\"Decode\\\",434:\\\"DefaultImageColor\\\",269:\\\"DocumentName\\\",336:\\\"DotRange\\\",321:\\\"HalftoneHints\\\",346:\\\"Indexed\\\",347:\\\"JPEGTables\\\",285:\\\"PageName\\\",297:\\\"PageNumber\\\",317:\\\"Predictor\\\",319:\\\"PrimaryChromaticities\\\",532:\\\"ReferenceBlackWhite\\\",339:\\\"SampleFormat\\\",340:\\\"SMinSampleValue\\\",341:\\\"SMaxSampleValue\\\",559:\\\"StripRowCounts\\\",330:\\\"SubIFDs\\\",292:\\\"T4Options\\\",293:\\\"T6Options\\\",325:\\\"TileByteCounts\\\",323:\\\"TileLength\\\",324:\\\"TileOffsets\\\",322:\\\"TileWidth\\\",301:\\\"TransferFunction\\\",318:\\\"WhitePoint\\\",344:\\\"XClipPathUnits\\\",286:\\\"XPosition\\\",529:\\\"YCbCrCoefficients\\\",531:\\\"YCbCrPositioning\\\",530:\\\"YCbCrSubSampling\\\",345:\\\"YClipPathUnits\\\",287:\\\"YPosition\\\",37378:\\\"ApertureValue\\\",40961:\\\"ColorSpace\\\",36868:\\\"DateTimeDigitized\\\",36867:\\\"DateTimeOriginal\\\",34665:\\\"Exif IFD\\\",36864:\\\"ExifVersion\\\",33434:\\\"ExposureTime\\\",41728:\\\"FileSource\\\",37385:\\\"Flash\\\",40960:\\\"FlashpixVersion\\\",33437:\\\"FNumber\\\",42016:\\\"ImageUniqueID\\\",37384:\\\"LightSource\\\",37500:\\\"MakerNote\\\",37377:\\\"ShutterSpeedValue\\\",37510:\\\"UserComment\\\",33723:\\\"IPTC\\\",34675:\\\"ICC Profile\\\",700:\\\"XMP\\\",42112:\\\"GDAL_METADATA\\\",42113:\\\"GDAL_NODATA\\\",34377:\\\"Photoshop\\\",33550:\\\"ModelPixelScale\\\",33922:\\\"ModelTiepoint\\\",34264:\\\"ModelTransformation\\\",34735:\\\"GeoKeyDirectory\\\",34736:\\\"GeoDoubleParams\\\",34737:\\\"GeoAsciiParams\\\",50674:\\\"LercParameters\\\"},ie={};for(var re in te)te.hasOwnProperty(re)&&(ie[te[re]]=parseInt(re,10));ie.BitsPerSample,ie.ExtraSamples,ie.SampleFormat,ie.StripByteCounts,ie.StripOffsets,ie.StripRowCounts,ie.TileByteCounts,ie.TileOffsets,ie.SubIFDs;var Ie={1:\\\"BYTE\\\",2:\\\"ASCII\\\",3:\\\"SHORT\\\",4:\\\"LONG\\\",5:\\\"RATIONAL\\\",6:\\\"SBYTE\\\",7:\\\"UNDEFINED\\\",8:\\\"SSHORT\\\",9:\\\"SLONG\\\",10:\\\"SRATIONAL\\\",11:\\\"FLOAT\\\",12:\\\"DOUBLE\\\",13:\\\"IFD\\\",16:\\\"LONG8\\\",17:\\\"SLONG8\\\",18:\\\"IFD8\\\"},ge={};for(var ne in Ie)Ie.hasOwnProperty(ne)&&(ge[Ie[ne]]=parseInt(ne,10));var ae=1,oe=0,Be=1,Ce=2,Qe={1024:\\\"GTModelTypeGeoKey\\\",1025:\\\"GTRasterTypeGeoKey\\\",1026:\\\"GTCitationGeoKey\\\",2048:\\\"GeographicTypeGeoKey\\\",2049:\\\"GeogCitationGeoKey\\\",2050:\\\"GeogGeodeticDatumGeoKey\\\",2051:\\\"GeogPrimeMeridianGeoKey\\\",2052:\\\"GeogLinearUnitsGeoKey\\\",2053:\\\"GeogLinearUnitSizeGeoKey\\\",2054:\\\"GeogAngularUnitsGeoKey\\\",2055:\\\"GeogAngularUnitSizeGeoKey\\\",2056:\\\"GeogEllipsoidGeoKey\\\",2057:\\\"GeogSemiMajorAxisGeoKey\\\",2058:\\\"GeogSemiMinorAxisGeoKey\\\",2059:\\\"GeogInvFlatteningGeoKey\\\",2060:\\\"GeogAzimuthUnitsGeoKey\\\",2061:\\\"GeogPrimeMeridianLongGeoKey\\\",2062:\\\"GeogTOWGS84GeoKey\\\",3072:\\\"ProjectedCSTypeGeoKey\\\",3073:\\\"PCSCitationGeoKey\\\",3074:\\\"ProjectionGeoKey\\\",3075:\\\"ProjCoordTransGeoKey\\\",3076:\\\"ProjLinearUnitsGeoKey\\\",3077:\\\"ProjLinearUnitSizeGeoKey\\\",3078:\\\"ProjStdParallel1GeoKey\\\",3079:\\\"ProjStdParallel2GeoKey\\\",3080:\\\"ProjNatOriginLongGeoKey\\\",3081:\\\"ProjNatOriginLatGeoKey\\\",3082:\\\"ProjFalseEastingGeoKey\\\",3083:\\\"ProjFalseNorthingGeoKey\\\",3084:\\\"ProjFalseOriginLongGeoKey\\\",3085:\\\"ProjFalseOriginLatGeoKey\\\",3086:\\\"ProjFalseOriginEastingGeoKey\\\",3087:\\\"ProjFalseOriginNorthingGeoKey\\\",3088:\\\"ProjCenterLongGeoKey\\\",3089:\\\"ProjCenterLatGeoKey\\\",3090:\\\"ProjCenterEastingGeoKey\\\",3091:\\\"ProjCenterNorthingGeoKey\\\",3092:\\\"ProjScaleAtNatOriginGeoKey\\\",3093:\\\"ProjScaleAtCenterGeoKey\\\",3094:\\\"ProjAzimuthAngleGeoKey\\\",3095:\\\"ProjStraightVertPoleLongGeoKey\\\",3096:\\\"ProjRectifiedGridAngleGeoKey\\\",4096:\\\"VerticalCSTypeGeoKey\\\",4097:\\\"VerticalCitationGeoKey\\\",4098:\\\"VerticalDatumGeoKey\\\",4099:\\\"VerticalUnitsGeoKey\\\"},Ee={};for(var se in Qe)Qe.hasOwnProperty(se)&&(Ee[Qe[se]]=parseInt(se,10));function fe(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var ce=new Ae,he=function(A){s(t,w);var e=fe(t);function t(A){var i;return B(this,t),(i=e.call(this)).planarConfiguration=void 0!==A.PlanarConfiguration?A.PlanarConfiguration:1,i.samplesPerPixel=void 0!==A.SamplesPerPixel?A.SamplesPerPixel:1,i.addCompression=A.LercParameters[ae],i}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){switch(this.addCompression){case oe:break;case Be:A=YA(new Uint8Array(A)).buffer;break;case Ce:A=ce.decode(new Uint8Array(A)).buffer;break;default:throw new Error(\\\"Unsupported LERC additional compression method identifier: \\\".concat(this.addCompression))}return zA.decode(A,{returnPixelInterleavedDims:1===this.planarConfiguration}).pixels[0].buffer}}]),t}(),le=Object.freeze({__proto__:null,zstd:ce,default:he});function ue(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var we=function(A){s(I,w);var t,i=ue(I);function I(){var A;if(B(this,I),A=i.call(this),\\\"undefined\\\"==typeof createImageBitmap)throw new Error(\\\"Cannot decode WebImage as `createImageBitmap` is not available\\\");if(\\\"undefined\\\"==typeof document&&\\\"undefined\\\"==typeof OffscreenCanvas)throw new Error(\\\"Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available\\\");return A}return Q(I,[{key:\\\"decode\\\",value:(t=e(r.mark((function A(e,t){var i,I,g,n;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return i=new Blob([t]),A.next=3,createImageBitmap(i);case 3:return I=A.sent,\\\"undefined\\\"!=typeof document?((g=document.createElement(\\\"canvas\\\")).width=I.width,g.height=I.height):g=new OffscreenCanvas(I.width,I.height),(n=g.getContext(\\\"2d\\\")).drawImage(I,0,0),A.abrupt(\\\"return\\\",n.getImageData(0,0,I.width,I.height).data.buffer);case 8:case\\\"end\\\":return A.stop()}}),A)}))),function(A,e){return t.apply(this,arguments)})}]),I}(),de=Object.freeze({__proto__:null,default:we});\";\n return new Worker(typeof Buffer !== 'undefined' \n ? 'data:application/javascript;base64,' + Buffer.from(source, 'binary').toString('base64')\n : URL.createObjectURL(new Blob([source], {type: 'application/javascript'})));\n }\n \n"],"names":["create","source","Buffer","from","toString","URL","createObjectURL","Blob","type"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/source/_static/242.embed-bundle.js b/docs/source/_static/242.embed-bundle.js new file mode 100644 index 0000000..701f48d --- /dev/null +++ b/docs/source/_static/242.embed-bundle.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[242],{708:(e,t,r)=>{function n(e,t){let r=e.length-t,n=0;do{for(let r=t;r>0;r--)e[n+t]+=e[n],n++;r-=t}while(r>0)}function o(e,t,r){let n=0,o=e.length;const i=o/r;for(;o>t;){for(let r=t;r>0;--r)e[n+t]+=e[n],++n;o-=t}const l=e.slice();for(let t=0;ti});class i{async decode(e,t){const r=await this.decodeBlock(t),i=e.Predictor||1;if(1!==i){const t=!e.StripOffsets;return function(e,t,r,i,l,s){if(!t||1===t)return e;for(let e=0;e=e.byteLength);++s){let i;if(2===t){switch(l[0]){case 8:i=new Uint8Array(e,s*c*r*a,c*r*a);break;case 16:i=new Uint16Array(e,s*c*r*a,c*r*a/2);break;case 32:i=new Uint32Array(e,s*c*r*a,c*r*a/4);break;default:throw new Error(`Predictor 2 not allowed with ${l[0]} bits per sample.`)}n(i,c)}else 3===t&&(i=new Uint8Array(e,s*c*r*a,c*r*a),o(i,c,a))}return e}(r,i,t?e.TileWidth:e.ImageWidth,t?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return r}}},5242:(e,t,r)=>{r.r(t),r.d(t,{default:()=>o});var n=r(708);class o extends n.A{decodeBlock(e){const t=new DataView(e),r=[];for(let n=0;n 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\nexport default class PackbitsDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n const dataView = new DataView(buffer);\n const out = [];\n\n for (let i = 0; i < buffer.byteLength; ++i) {\n let header = dataView.getInt8(i);\n if (header < 0) {\n const next = dataView.getUint8(i + 1);\n header = -header;\n for (let j = 0; j <= header; ++j) {\n out.push(next);\n }\n i += 1;\n } else {\n for (let j = 0; j <= header; ++j) {\n out.push(dataView.getUint8(i + j + 1));\n }\n i += header + 1;\n }\n }\n return new Uint8Array(out).buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","PackbitsDecoder","dataView","DataView","out","header","getInt8","next","getUint8","j","push"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/source/_static/342.embed-bundle.js b/docs/source/_static/342.embed-bundle.js new file mode 100644 index 0000000..c399206 --- /dev/null +++ b/docs/source/_static/342.embed-bundle.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[342],{3075:(t,e,a)=>{function i(t){let e=t.length;for(;--e>=0;)t[e]=0}a.d(e,{UD:()=>da});const n=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),s=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),r=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),o=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),l=new Array(576);i(l);const h=new Array(60);i(h);const d=new Array(512);i(d);const _=new Array(256);i(_);const f=new Array(29);i(f);const c=new Array(30);function u(t,e,a,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=a,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}let w,m,b;function g(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}i(c);const p=t=>t<256?d[t]:d[256+(t>>>7)],k=(t,e)=>{t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255},y=(t,e,a)=>{t.bi_valid>16-a?(t.bi_buf|=e<>16-t.bi_valid,t.bi_valid+=a-16):(t.bi_buf|=e<{y(t,a[2*e],a[2*e+1])},x=(t,e)=>{let a=0;do{a|=1&t,t>>>=1,a<<=1}while(--e>0);return a>>>1},z=(t,e,a)=>{const i=new Array(16);let n,s,r=0;for(n=1;n<=15;n++)r=r+a[n-1]<<1,i[n]=r;for(s=0;s<=e;s++){let e=t[2*s+1];0!==e&&(t[2*s]=x(i[e]++,e))}},A=t=>{let e;for(e=0;e<286;e++)t.dyn_ltree[2*e]=0;for(e=0;e<30;e++)t.dyn_dtree[2*e]=0;for(e=0;e<19;e++)t.bl_tree[2*e]=0;t.dyn_ltree[512]=1,t.opt_len=t.static_len=0,t.sym_next=t.matches=0},E=t=>{t.bi_valid>8?k(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0},R=(t,e,a,i)=>{const n=2*e,s=2*a;return t[n]{const i=t.heap[a];let n=a<<1;for(;n<=t.heap_len&&(n{let i,r,o,l,h=0;if(0!==t.sym_next)do{i=255&t.pending_buf[t.sym_buf+h++],i+=(255&t.pending_buf[t.sym_buf+h++])<<8,r=t.pending_buf[t.sym_buf+h++],0===i?v(t,r,e):(o=_[r],v(t,o+256+1,e),l=n[o],0!==l&&(r-=f[o],y(t,r,l)),i--,o=p(i),v(t,o,a),l=s[o],0!==l&&(i-=c[o],y(t,i,l)))}while(h{const a=e.dyn_tree,i=e.stat_desc.static_tree,n=e.stat_desc.has_stree,s=e.stat_desc.elems;let r,o,l,h=-1;for(t.heap_len=0,t.heap_max=573,r=0;r>1;r>=1;r--)Z(t,a,r);l=s;do{r=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Z(t,a,1),o=t.heap[1],t.heap[--t.heap_max]=r,t.heap[--t.heap_max]=o,a[2*l]=a[2*r]+a[2*o],t.depth[l]=(t.depth[r]>=t.depth[o]?t.depth[r]:t.depth[o])+1,a[2*r+1]=a[2*o+1]=l,t.heap[1]=l++,Z(t,a,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],((t,e)=>{const a=e.dyn_tree,i=e.max_code,n=e.stat_desc.static_tree,s=e.stat_desc.has_stree,r=e.stat_desc.extra_bits,o=e.stat_desc.extra_base,l=e.stat_desc.max_length;let h,d,_,f,c,u,w=0;for(f=0;f<=15;f++)t.bl_count[f]=0;for(a[2*t.heap[t.heap_max]+1]=0,h=t.heap_max+1;h<573;h++)d=t.heap[h],f=a[2*a[2*d+1]+1]+1,f>l&&(f=l,w++),a[2*d+1]=f,d>i||(t.bl_count[f]++,c=0,d>=o&&(c=r[d-o]),u=a[2*d],t.opt_len+=u*(f+c),s&&(t.static_len+=u*(n[2*d+1]+c)));if(0!==w){do{for(f=l-1;0===t.bl_count[f];)f--;t.bl_count[f]--,t.bl_count[f+1]+=2,t.bl_count[l]--,w-=2}while(w>0);for(f=l;0!==f;f--)for(d=t.bl_count[f];0!==d;)_=t.heap[--h],_>i||(a[2*_+1]!==f&&(t.opt_len+=(f-a[2*_+1])*a[2*_],a[2*_+1]=f),d--)}})(t,e),z(a,h,t.bl_count)},D=(t,e,a)=>{let i,n,s=-1,r=e[1],o=0,l=7,h=4;for(0===r&&(l=138,h=3),e[2*(a+1)+1]=65535,i=0;i<=a;i++)n=r,r=e[2*(i+1)+1],++o{let i,n,s=-1,r=e[1],o=0,l=7,h=4;for(0===r&&(l=138,h=3),i=0;i<=a;i++)if(n=r,r=e[2*(i+1)+1],!(++o{y(t,0+(i?1:0),3),E(t),k(t,a),k(t,~a),a&&t.pending_buf.set(t.window.subarray(e,e+a),t.pending),t.pending+=a};var I={_tr_init:t=>{O||((()=>{let t,e,a,i,o;const g=new Array(16);for(a=0,i=0;i<28;i++)for(f[i]=a,t=0;t<1<>=7;i<30;i++)for(c[i]=o<<7,t=0;t<1<{let n,s,r=0;t.level>0?(2===t.strm.data_type&&(t.strm.data_type=(t=>{let e,a=4093624447;for(e=0;e<=31;e++,a>>>=1)if(1&a&&0!==t.dyn_ltree[2*e])return 0;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return 1;for(e=32;e<256;e++)if(0!==t.dyn_ltree[2*e])return 1;return 0})(t)),S(t,t.l_desc),S(t,t.d_desc),r=(t=>{let e;for(D(t,t.dyn_ltree,t.l_desc.max_code),D(t,t.dyn_dtree,t.d_desc.max_code),S(t,t.bl_desc),e=18;e>=3&&0===t.bl_tree[2*o[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e})(t),n=t.opt_len+3+7>>>3,s=t.static_len+3+7>>>3,s<=n&&(n=s)):n=s=a+5,a+4<=n&&-1!==e?L(t,e,a,i):4===t.strategy||s===n?(y(t,2+(i?1:0),3),U(t,l,h)):(y(t,4+(i?1:0),3),((t,e,a,i)=>{let n;for(y(t,e-257,5),y(t,a-1,5),y(t,i-4,4),n=0;n(t.pending_buf[t.sym_buf+t.sym_next++]=e,t.pending_buf[t.sym_buf+t.sym_next++]=e>>8,t.pending_buf[t.sym_buf+t.sym_next++]=a,0===e?t.dyn_ltree[2*a]++:(t.matches++,e--,t.dyn_ltree[2*(_[a]+256+1)]++,t.dyn_dtree[2*p(e)]++),t.sym_next===t.sym_end),_tr_align:t=>{y(t,2,3),v(t,256,l),(t=>{16===t.bi_valid?(k(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)})(t)}},F=(t,e,a,i)=>{let n=65535&t,s=t>>>16&65535,r=0;for(;0!==a;){r=a>2e3?2e3:a,a-=r;do{n=n+e[i++]|0,s=s+n|0}while(--r);n%=65521,s%=65521}return n|s<<16};const B=new Uint32Array((()=>{let t,e=[];for(var a=0;a<256;a++){t=a;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[a]=t}return e})());var N=(t,e,a,i)=>{const n=B,s=i+a;t^=-1;for(let a=i;a>>8^n[255&(t^e[a])];return~t},C={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},H={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:M,_tr_stored_block:P,_tr_flush_block:j,_tr_tally:K,_tr_align:Y}=I,{Z_NO_FLUSH:W,Z_PARTIAL_FLUSH:G,Z_FULL_FLUSH:X,Z_FINISH:$,Z_BLOCK:q,Z_OK:J,Z_STREAM_END:Q,Z_STREAM_ERROR:V,Z_DATA_ERROR:tt,Z_BUF_ERROR:et,Z_DEFAULT_COMPRESSION:at,Z_FILTERED:it,Z_HUFFMAN_ONLY:nt,Z_RLE:st,Z_FIXED:rt,Z_DEFAULT_STRATEGY:ot,Z_UNKNOWN:lt,Z_DEFLATED:ht}=H,dt=258,_t=262,ft=42,ct=113,ut=666,wt=(t,e)=>(t.msg=C[e],e),mt=t=>2*t-(t>4?9:0),bt=t=>{let e=t.length;for(;--e>=0;)t[e]=0},gt=t=>{let e,a,i,n=t.w_size;e=t.hash_size,i=e;do{a=t.head[--i],t.head[i]=a>=n?a-n:0}while(--e);e=n,i=e;do{a=t.prev[--i],t.prev[i]=a>=n?a-n:0}while(--e)};let pt=(t,e,a)=>(e<{const e=t.state;let a=e.pending;a>t.avail_out&&(a=t.avail_out),0!==a&&(t.output.set(e.pending_buf.subarray(e.pending_out,e.pending_out+a),t.next_out),t.next_out+=a,e.pending_out+=a,t.total_out+=a,t.avail_out-=a,e.pending-=a,0===e.pending&&(e.pending_out=0))},yt=(t,e)=>{j(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,kt(t.strm)},vt=(t,e)=>{t.pending_buf[t.pending++]=e},xt=(t,e)=>{t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e},zt=(t,e,a,i)=>{let n=t.avail_in;return n>i&&(n=i),0===n?0:(t.avail_in-=n,e.set(t.input.subarray(t.next_in,t.next_in+n),a),1===t.state.wrap?t.adler=F(t.adler,e,n,a):2===t.state.wrap&&(t.adler=N(t.adler,e,n,a)),t.next_in+=n,t.total_in+=n,n)},At=(t,e)=>{let a,i,n=t.max_chain_length,s=t.strstart,r=t.prev_length,o=t.nice_match;const l=t.strstart>t.w_size-_t?t.strstart-(t.w_size-_t):0,h=t.window,d=t.w_mask,_=t.prev,f=t.strstart+dt;let c=h[s+r-1],u=h[s+r];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do{if(a=e,h[a+r]===u&&h[a+r-1]===c&&h[a]===h[s]&&h[++a]===h[s+1]){s+=2,a++;do{}while(h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&sr){if(t.match_start=e,r=i,i>=o)break;c=h[s+r-1],u=h[s+r]}}}while((e=_[e&d])>l&&0!=--n);return r<=t.lookahead?r:t.lookahead},Et=t=>{const e=t.w_size;let a,i,n;do{if(i=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-_t)&&(t.window.set(t.window.subarray(e,e+e-i),0),t.match_start-=e,t.strstart-=e,t.block_start-=e,t.insert>t.strstart&&(t.insert=t.strstart),gt(t),i+=e),0===t.strm.avail_in)break;if(a=zt(t.strm,t.window,t.strstart+t.lookahead,i),t.lookahead+=a,t.lookahead+t.insert>=3)for(n=t.strstart-t.insert,t.ins_h=t.window[n],t.ins_h=pt(t,t.ins_h,t.window[n+1]);t.insert&&(t.ins_h=pt(t,t.ins_h,t.window[n+3-1]),t.prev[n&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=n,n++,t.insert--,!(t.lookahead+t.insert<3)););}while(t.lookahead<_t&&0!==t.strm.avail_in)},Rt=(t,e)=>{let a,i,n,s=t.pending_buf_size-5>t.w_size?t.w_size:t.pending_buf_size-5,r=0,o=t.strm.avail_in;do{if(a=65535,n=t.bi_valid+42>>3,t.strm.avail_outi+t.strm.avail_in&&(a=i+t.strm.avail_in),a>n&&(a=n),a>8,t.pending_buf[t.pending-2]=~a,t.pending_buf[t.pending-1]=~a>>8,kt(t.strm),i&&(i>a&&(i=a),t.strm.output.set(t.window.subarray(t.block_start,t.block_start+i),t.strm.next_out),t.strm.next_out+=i,t.strm.avail_out-=i,t.strm.total_out+=i,t.block_start+=i,a-=i),a&&(zt(t.strm,t.strm.output,t.strm.next_out,a),t.strm.next_out+=a,t.strm.avail_out-=a,t.strm.total_out+=a)}while(0===r);return o-=t.strm.avail_in,o&&(o>=t.w_size?(t.matches=2,t.window.set(t.strm.input.subarray(t.strm.next_in-t.w_size,t.strm.next_in),0),t.strstart=t.w_size,t.insert=t.strstart):(t.window_size-t.strstart<=o&&(t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,t.insert>t.strstart&&(t.insert=t.strstart)),t.window.set(t.strm.input.subarray(t.strm.next_in-o,t.strm.next_in),t.strstart),t.strstart+=o,t.insert+=o>t.w_size-t.insert?t.w_size-t.insert:o),t.block_start=t.strstart),t.high_watern&&t.block_start>=t.w_size&&(t.block_start-=t.w_size,t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,n+=t.w_size,t.insert>t.strstart&&(t.insert=t.strstart)),n>t.strm.avail_in&&(n=t.strm.avail_in),n&&(zt(t.strm,t.window,t.strstart,n),t.strstart+=n,t.insert+=n>t.w_size-t.insert?t.w_size-t.insert:n),t.high_water>3,n=t.pending_buf_size-n>65535?65535:t.pending_buf_size-n,s=n>t.w_size?t.w_size:n,i=t.strstart-t.block_start,(i>=s||(i||e===$)&&e!==W&&0===t.strm.avail_in&&i<=n)&&(a=i>n?n:i,r=e===$&&0===t.strm.avail_in&&a===i?1:0,P(t,t.block_start,a,r),t.block_start+=a,kt(t.strm)),r?3:1)},Zt=(t,e)=>{let a,i;for(;;){if(t.lookahead<_t){if(Et(t),t.lookahead<_t&&e===W)return 1;if(0===t.lookahead)break}if(a=0,t.lookahead>=3&&(t.ins_h=pt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==a&&t.strstart-a<=t.w_size-_t&&(t.match_length=At(t,a)),t.match_length>=3)if(i=K(t,t.strstart-t.match_start,t.match_length-3),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=3){t.match_length--;do{t.strstart++,t.ins_h=pt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart}while(0!=--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=pt(t,t.ins_h,t.window[t.strstart+1]);else i=K(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(yt(t,!1),0===t.strm.avail_out))return 1}return t.insert=t.strstart<2?t.strstart:2,e===$?(yt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(yt(t,!1),0===t.strm.avail_out)?1:2},Ut=(t,e)=>{let a,i,n;for(;;){if(t.lookahead<_t){if(Et(t),t.lookahead<_t&&e===W)return 1;if(0===t.lookahead)break}if(a=0,t.lookahead>=3&&(t.ins_h=pt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=2,0!==a&&t.prev_length4096)&&(t.match_length=2)),t.prev_length>=3&&t.match_length<=t.prev_length){n=t.strstart+t.lookahead-3,i=K(t,t.strstart-1-t.prev_match,t.prev_length-3),t.lookahead-=t.prev_length-1,t.prev_length-=2;do{++t.strstart<=n&&(t.ins_h=pt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart)}while(0!=--t.prev_length);if(t.match_available=0,t.match_length=2,t.strstart++,i&&(yt(t,!1),0===t.strm.avail_out))return 1}else if(t.match_available){if(i=K(t,0,t.window[t.strstart-1]),i&&yt(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return 1}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=K(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<2?t.strstart:2,e===$?(yt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(yt(t,!1),0===t.strm.avail_out)?1:2};function St(t,e,a,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=a,this.max_chain=i,this.func=n}const Dt=[new St(0,0,0,0,Rt),new St(4,4,8,4,Zt),new St(4,5,16,8,Zt),new St(4,6,32,32,Zt),new St(4,4,16,16,Ut),new St(8,16,32,32,Ut),new St(8,16,128,128,Ut),new St(8,32,128,256,Ut),new St(32,128,258,1024,Ut),new St(32,258,258,4096,Ut)];function Tt(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=ht,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),bt(this.dyn_ltree),bt(this.dyn_dtree),bt(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),bt(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),bt(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const Ot=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.status!==ft&&57!==e.status&&69!==e.status&&73!==e.status&&91!==e.status&&103!==e.status&&e.status!==ct&&e.status!==ut?1:0},Lt=t=>{if(Ot(t))return wt(t,V);t.total_in=t.total_out=0,t.data_type=lt;const e=t.state;return e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=2===e.wrap?57:e.wrap?ft:ct,t.adler=2===e.wrap?0:1,e.last_flush=-2,M(e),J},It=t=>{const e=Lt(t);var a;return e===J&&((a=t.state).window_size=2*a.w_size,bt(a.head),a.max_lazy_match=Dt[a.level].max_lazy,a.good_match=Dt[a.level].good_length,a.nice_match=Dt[a.level].nice_length,a.max_chain_length=Dt[a.level].max_chain,a.strstart=0,a.block_start=0,a.lookahead=0,a.insert=0,a.match_length=a.prev_length=2,a.match_available=0,a.ins_h=0),e},Ft=(t,e,a,i,n,s)=>{if(!t)return V;let r=1;if(e===at&&(e=6),i<0?(r=0,i=-i):i>15&&(r=2,i-=16),n<1||n>9||a!==ht||i<8||i>15||e<0||e>9||s<0||s>rt||8===i&&1!==r)return wt(t,V);8===i&&(i=9);const o=new Tt;return t.state=o,o.strm=t,o.status=ft,o.wrap=r,o.gzhead=null,o.w_bits=i,o.w_size=1<Ft(t,e,ht,15,8,ot),deflateInit2:Ft,deflateReset:It,deflateResetKeep:Lt,deflateSetHeader:(t,e)=>Ot(t)||2!==t.state.wrap?V:(t.state.gzhead=e,J),deflate:(t,e)=>{if(Ot(t)||e>q||e<0)return t?wt(t,V):V;const a=t.state;if(!t.output||0!==t.avail_in&&!t.input||a.status===ut&&e!==$)return wt(t,0===t.avail_out?et:V);const i=a.last_flush;if(a.last_flush=e,0!==a.pending){if(kt(t),0===t.avail_out)return a.last_flush=-1,J}else if(0===t.avail_in&&mt(e)<=mt(i)&&e!==$)return wt(t,et);if(a.status===ut&&0!==t.avail_in)return wt(t,et);if(a.status===ft&&0===a.wrap&&(a.status=ct),a.status===ft){let e=ht+(a.w_bits-8<<4)<<8,i=-1;if(i=a.strategy>=nt||a.level<2?0:a.level<6?1:6===a.level?2:3,e|=i<<6,0!==a.strstart&&(e|=32),e+=31-e%31,xt(a,e),0!==a.strstart&&(xt(a,t.adler>>>16),xt(a,65535&t.adler)),t.adler=1,a.status=ct,kt(t),0!==a.pending)return a.last_flush=-1,J}if(57===a.status)if(t.adler=0,vt(a,31),vt(a,139),vt(a,8),a.gzhead)vt(a,(a.gzhead.text?1:0)+(a.gzhead.hcrc?2:0)+(a.gzhead.extra?4:0)+(a.gzhead.name?8:0)+(a.gzhead.comment?16:0)),vt(a,255&a.gzhead.time),vt(a,a.gzhead.time>>8&255),vt(a,a.gzhead.time>>16&255),vt(a,a.gzhead.time>>24&255),vt(a,9===a.level?2:a.strategy>=nt||a.level<2?4:0),vt(a,255&a.gzhead.os),a.gzhead.extra&&a.gzhead.extra.length&&(vt(a,255&a.gzhead.extra.length),vt(a,a.gzhead.extra.length>>8&255)),a.gzhead.hcrc&&(t.adler=N(t.adler,a.pending_buf,a.pending,0)),a.gzindex=0,a.status=69;else if(vt(a,0),vt(a,0),vt(a,0),vt(a,0),vt(a,0),vt(a,9===a.level?2:a.strategy>=nt||a.level<2?4:0),vt(a,3),a.status=ct,kt(t),0!==a.pending)return a.last_flush=-1,J;if(69===a.status){if(a.gzhead.extra){let e=a.pending,i=(65535&a.gzhead.extra.length)-a.gzindex;for(;a.pending+i>a.pending_buf_size;){let n=a.pending_buf_size-a.pending;if(a.pending_buf.set(a.gzhead.extra.subarray(a.gzindex,a.gzindex+n),a.pending),a.pending=a.pending_buf_size,a.gzhead.hcrc&&a.pending>e&&(t.adler=N(t.adler,a.pending_buf,a.pending-e,e)),a.gzindex+=n,kt(t),0!==a.pending)return a.last_flush=-1,J;e=0,i-=n}let n=new Uint8Array(a.gzhead.extra);a.pending_buf.set(n.subarray(a.gzindex,a.gzindex+i),a.pending),a.pending+=i,a.gzhead.hcrc&&a.pending>e&&(t.adler=N(t.adler,a.pending_buf,a.pending-e,e)),a.gzindex=0}a.status=73}if(73===a.status){if(a.gzhead.name){let e,i=a.pending;do{if(a.pending===a.pending_buf_size){if(a.gzhead.hcrc&&a.pending>i&&(t.adler=N(t.adler,a.pending_buf,a.pending-i,i)),kt(t),0!==a.pending)return a.last_flush=-1,J;i=0}e=a.gzindexi&&(t.adler=N(t.adler,a.pending_buf,a.pending-i,i)),a.gzindex=0}a.status=91}if(91===a.status){if(a.gzhead.comment){let e,i=a.pending;do{if(a.pending===a.pending_buf_size){if(a.gzhead.hcrc&&a.pending>i&&(t.adler=N(t.adler,a.pending_buf,a.pending-i,i)),kt(t),0!==a.pending)return a.last_flush=-1,J;i=0}e=a.gzindexi&&(t.adler=N(t.adler,a.pending_buf,a.pending-i,i))}a.status=103}if(103===a.status){if(a.gzhead.hcrc){if(a.pending+2>a.pending_buf_size&&(kt(t),0!==a.pending))return a.last_flush=-1,J;vt(a,255&t.adler),vt(a,t.adler>>8&255),t.adler=0}if(a.status=ct,kt(t),0!==a.pending)return a.last_flush=-1,J}if(0!==t.avail_in||0!==a.lookahead||e!==W&&a.status!==ut){let i=0===a.level?Rt(a,e):a.strategy===nt?((t,e)=>{let a;for(;;){if(0===t.lookahead&&(Et(t),0===t.lookahead)){if(e===W)return 1;break}if(t.match_length=0,a=K(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,a&&(yt(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===$?(yt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(yt(t,!1),0===t.strm.avail_out)?1:2})(a,e):a.strategy===st?((t,e)=>{let a,i,n,s;const r=t.window;for(;;){if(t.lookahead<=dt){if(Et(t),t.lookahead<=dt&&e===W)return 1;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=3&&t.strstart>0&&(n=t.strstart-1,i=r[n],i===r[++n]&&i===r[++n]&&i===r[++n])){s=t.strstart+dt;do{}while(i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&nt.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=3?(a=K(t,1,t.match_length-3),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(a=K(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),a&&(yt(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===$?(yt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(yt(t,!1),0===t.strm.avail_out)?1:2})(a,e):Dt[a.level].func(a,e);if(3!==i&&4!==i||(a.status=ut),1===i||3===i)return 0===t.avail_out&&(a.last_flush=-1),J;if(2===i&&(e===G?Y(a):e!==q&&(P(a,0,0,!1),e===X&&(bt(a.head),0===a.lookahead&&(a.strstart=0,a.block_start=0,a.insert=0))),kt(t),0===t.avail_out))return a.last_flush=-1,J}return e!==$?J:a.wrap<=0?Q:(2===a.wrap?(vt(a,255&t.adler),vt(a,t.adler>>8&255),vt(a,t.adler>>16&255),vt(a,t.adler>>24&255),vt(a,255&t.total_in),vt(a,t.total_in>>8&255),vt(a,t.total_in>>16&255),vt(a,t.total_in>>24&255)):(xt(a,t.adler>>>16),xt(a,65535&t.adler)),kt(t),a.wrap>0&&(a.wrap=-a.wrap),0!==a.pending?J:Q)},deflateEnd:t=>{if(Ot(t))return V;const e=t.state.status;return t.state=null,e===ct?wt(t,tt):J},deflateSetDictionary:(t,e)=>{let a=e.length;if(Ot(t))return V;const i=t.state,n=i.wrap;if(2===n||1===n&&i.status!==ft||i.lookahead)return V;if(1===n&&(t.adler=F(t.adler,e,a,0)),i.wrap=0,a>=i.w_size){0===n&&(bt(i.head),i.strstart=0,i.block_start=0,i.insert=0);let t=new Uint8Array(i.w_size);t.set(e.subarray(a-i.w_size,a),0),e=t,a=i.w_size}const s=t.avail_in,r=t.next_in,o=t.input;for(t.avail_in=a,t.next_in=0,t.input=e,Et(i);i.lookahead>=3;){let t=i.strstart,e=i.lookahead-2;do{i.ins_h=pt(i,i.ins_h,i.window[t+3-1]),i.prev[t&i.w_mask]=i.head[i.ins_h],i.head[i.ins_h]=t,t++}while(--e);i.strstart=t,i.lookahead=2,Et(i)}return i.strstart+=i.lookahead,i.block_start=i.strstart,i.insert=i.lookahead,i.lookahead=0,i.match_length=i.prev_length=2,i.match_available=0,t.next_in=r,t.input=o,t.avail_in=s,i.wrap=n,J},deflateInfo:"pako deflate (from Nodeca project)"};const Nt=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var Ct={assign:function(t){const e=Array.prototype.slice.call(arguments,1);for(;e.length;){const a=e.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(const e in a)Nt(a,e)&&(t[e]=a[e])}}return t},flattenChunks:t=>{let e=0;for(let a=0,i=t.length;a=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;Mt[254]=Mt[254]=1;var Pt={string2buf:t=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(t);let e,a,i,n,s,r=t.length,o=0;for(n=0;n>>6,e[s++]=128|63&a):a<65536?(e[s++]=224|a>>>12,e[s++]=128|a>>>6&63,e[s++]=128|63&a):(e[s++]=240|a>>>18,e[s++]=128|a>>>12&63,e[s++]=128|a>>>6&63,e[s++]=128|63&a);return e},buf2string:(t,e)=>{const a=e||t.length;if("function"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(t.subarray(0,e));let i,n;const s=new Array(2*a);for(n=0,i=0;i4)s[n++]=65533,i+=r-1;else{for(e&=2===r?31:3===r?15:7;r>1&&i1?s[n++]=65533:e<65536?s[n++]=e:(e-=65536,s[n++]=55296|e>>10&1023,s[n++]=56320|1023&e)}}return((t,e)=>{if(e<65534&&t.subarray&&Ht)return String.fromCharCode.apply(null,t.length===e?t:t.subarray(0,e));let a="";for(let i=0;i{(e=e||t.length)>t.length&&(e=t.length);let a=e-1;for(;a>=0&&128==(192&t[a]);)a--;return a<0||0===a?e:a+Mt[t[a]]>e?a:e}},jt=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};const Kt=Object.prototype.toString,{Z_NO_FLUSH:Yt,Z_SYNC_FLUSH:Wt,Z_FULL_FLUSH:Gt,Z_FINISH:Xt,Z_OK:$t,Z_STREAM_END:qt,Z_DEFAULT_COMPRESSION:Jt,Z_DEFAULT_STRATEGY:Qt,Z_DEFLATED:Vt}=H;function te(t){this.options=Ct.assign({level:Jt,method:Vt,chunkSize:16384,windowBits:15,memLevel:8,strategy:Qt},t||{});let e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new jt,this.strm.avail_out=0;let a=Bt.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(a!==$t)throw new Error(C[a]);if(e.header&&Bt.deflateSetHeader(this.strm,e.header),e.dictionary){let t;if(t="string"==typeof e.dictionary?Pt.string2buf(e.dictionary):"[object ArrayBuffer]"===Kt.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,a=Bt.deflateSetDictionary(this.strm,t),a!==$t)throw new Error(C[a]);this._dict_set=!0}}function ee(t,e){const a=new te(e);if(a.push(t,!0),a.err)throw a.msg||C[a.err];return a.result}te.prototype.push=function(t,e){const a=this.strm,i=this.options.chunkSize;let n,s;if(this.ended)return!1;for(s=e===~~e?e:!0===e?Xt:Yt,"string"==typeof t?a.input=Pt.string2buf(t):"[object ArrayBuffer]"===Kt.call(t)?a.input=new Uint8Array(t):a.input=t,a.next_in=0,a.avail_in=a.input.length;;)if(0===a.avail_out&&(a.output=new Uint8Array(i),a.next_out=0,a.avail_out=i),(s===Wt||s===Gt)&&a.avail_out<=6)this.onData(a.output.subarray(0,a.next_out)),a.avail_out=0;else{if(n=Bt.deflate(a,s),n===qt)return a.next_out>0&&this.onData(a.output.subarray(0,a.next_out)),n=Bt.deflateEnd(this.strm),this.onEnd(n),this.ended=!0,n===$t;if(0!==a.avail_out){if(s>0&&a.next_out>0)this.onData(a.output.subarray(0,a.next_out)),a.avail_out=0;else if(0===a.avail_in)break}else this.onData(a.output)}return!0},te.prototype.onData=function(t){this.chunks.push(t)},te.prototype.onEnd=function(t){t===$t&&(this.result=Ct.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var ae={Deflate:te,deflate:ee,deflateRaw:function(t,e){return(e=e||{}).raw=!0,ee(t,e)},gzip:function(t,e){return(e=e||{}).gzip=!0,ee(t,e)},constants:H};const ie=16209;var ne=function(t,e){let a,i,n,s,r,o,l,h,d,_,f,c,u,w,m,b,g,p,k,y,v,x,z,A;const E=t.state;a=t.next_in,z=t.input,i=a+(t.avail_in-5),n=t.next_out,A=t.output,s=n-(e-t.avail_out),r=n+(t.avail_out-257),o=E.dmax,l=E.wsize,h=E.whave,d=E.wnext,_=E.window,f=E.hold,c=E.bits,u=E.lencode,w=E.distcode,m=(1<>>24,f>>>=p,c-=p,p=g>>>16&255,0===p)A[n++]=65535&g;else{if(!(16&p)){if(64&p){if(32&p){E.mode=16191;break t}t.msg="invalid literal/length code",E.mode=ie;break t}g=u[(65535&g)+(f&(1<>>=p,c-=p),c<15&&(f+=z[a++]<>>24,f>>>=p,c-=p,p=g>>>16&255,16&p){if(y=65535&g,p&=15,co){t.msg="invalid distance too far back",E.mode=ie;break t}if(f>>>=p,c-=p,p=n-s,y>p){if(p=y-p,p>h&&E.sane){t.msg="invalid distance too far back",E.mode=ie;break t}if(v=0,x=_,0===d){if(v+=l-p,p2;)A[n++]=x[v++],A[n++]=x[v++],A[n++]=x[v++],k-=3;k&&(A[n++]=x[v++],k>1&&(A[n++]=x[v++]))}else{v=n-y;do{A[n++]=A[v++],A[n++]=A[v++],A[n++]=A[v++],k-=3}while(k>2);k&&(A[n++]=A[v++],k>1&&(A[n++]=A[v++]))}break}if(64&p){t.msg="invalid distance code",E.mode=ie;break t}g=w[(65535&g)+(f&(1<>3,a-=k,c-=k<<3,f&=(1<{const l=o.bits;let h,d,_,f,c,u,w=0,m=0,b=0,g=0,p=0,k=0,y=0,v=0,x=0,z=0,A=null;const E=new Uint16Array(16),R=new Uint16Array(16);let Z,U,S,D=null;for(w=0;w<=15;w++)E[w]=0;for(m=0;m=1&&0===E[g];g--);if(p>g&&(p=g),0===g)return n[s++]=20971520,n[s++]=20971520,o.bits=1,0;for(b=1;b0&&(0===t||1!==g))return-1;for(R[1]=0,w=1;w<15;w++)R[w+1]=R[w]+E[w];for(m=0;m852||2===t&&x>592)return 1;for(;;){Z=w-y,r[m]+1=u?(U=D[r[m]-u],S=A[r[m]-u]):(U=96,S=0),h=1<>y)+d]=Z<<24|U<<16|S}while(0!==d);for(h=1<>=1;if(0!==h?(z&=h-1,z+=h):z=0,m++,0==--E[w]){if(w===g)break;w=e[a+r[m]]}if(w>p&&(z&f)!==_){for(0===y&&(y=p),c+=b,k=w-y,v=1<852||2===t&&x>592)return 1;_=z&f,n[_]=p<<24|k<<16|c-s}}return 0!==z&&(n[c+z]=w-y<<24|64<<16),o.bits=p,0};const{Z_FINISH:de,Z_BLOCK:_e,Z_TREES:fe,Z_OK:ce,Z_STREAM_END:ue,Z_NEED_DICT:we,Z_STREAM_ERROR:me,Z_DATA_ERROR:be,Z_MEM_ERROR:ge,Z_BUF_ERROR:pe,Z_DEFLATED:ke}=H,ye=16180,ve=16190,xe=16191,ze=16192,Ae=16194,Ee=16199,Re=16200,Ze=16206,Ue=16209,Se=t=>(t>>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24);function De(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const Te=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.mode16211?1:0},Oe=t=>{if(Te(t))return me;const e=t.state;return t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=ye,e.last=0,e.havedict=0,e.flags=-1,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Int32Array(852),e.distcode=e.distdyn=new Int32Array(592),e.sane=1,e.back=-1,ce},Le=t=>{if(Te(t))return me;const e=t.state;return e.wsize=0,e.whave=0,e.wnext=0,Oe(t)},Ie=(t,e)=>{let a;if(Te(t))return me;const i=t.state;return e<0?(a=0,e=-e):(a=5+(e>>4),e<48&&(e&=15)),e&&(e<8||e>15)?me:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=a,i.wbits=e,Le(t))},Fe=(t,e)=>{if(!t)return me;const a=new De;t.state=a,a.strm=t,a.window=null,a.mode=ye;const i=Ie(t,e);return i!==ce&&(t.state=null),i};let Be,Ne,Ce=!0;const He=t=>{if(Ce){Be=new Int32Array(512),Ne=new Int32Array(32);let e=0;for(;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(he(1,t.lens,0,288,Be,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;he(2,t.lens,0,32,Ne,0,t.work,{bits:5}),Ce=!1}t.lencode=Be,t.lenbits=9,t.distcode=Ne,t.distbits=5},Me=(t,e,a,i)=>{let n;const s=t.state;return null===s.window&&(s.wsize=1<=s.wsize?(s.window.set(e.subarray(a-s.wsize,a),0),s.wnext=0,s.whave=s.wsize):(n=s.wsize-s.wnext,n>i&&(n=i),s.window.set(e.subarray(a-i,a-i+n),s.wnext),(i-=n)?(s.window.set(e.subarray(a-i,a),0),s.wnext=i,s.whave=s.wsize):(s.wnext+=n,s.wnext===s.wsize&&(s.wnext=0),s.whaveFe(t,15),inflateInit2:Fe,inflate:(t,e)=>{let a,i,n,s,r,o,l,h,d,_,f,c,u,w,m,b,g,p,k,y,v,x,z=0;const A=new Uint8Array(4);let E,R;const Z=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(Te(t)||!t.output||!t.input&&0!==t.avail_in)return me;a=t.state,a.mode===xe&&(a.mode=ze),r=t.next_out,n=t.output,l=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,h=a.hold,d=a.bits,_=o,f=l,x=ce;t:for(;;)switch(a.mode){case ye:if(0===a.wrap){a.mode=ze;break}for(;d<16;){if(0===o)break t;o--,h+=i[s++]<>>8&255,a.check=N(a.check,A,2,0),h=0,d=0,a.mode=16181;break}if(a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&h)<<8)+(h>>8))%31){t.msg="incorrect header check",a.mode=Ue;break}if((15&h)!==ke){t.msg="unknown compression method",a.mode=Ue;break}if(h>>>=4,d-=4,v=8+(15&h),0===a.wbits&&(a.wbits=v),v>15||v>a.wbits){t.msg="invalid window size",a.mode=Ue;break}a.dmax=1<>8&1),512&a.flags&&4&a.wrap&&(A[0]=255&h,A[1]=h>>>8&255,a.check=N(a.check,A,2,0)),h=0,d=0,a.mode=16182;case 16182:for(;d<32;){if(0===o)break t;o--,h+=i[s++]<>>8&255,A[2]=h>>>16&255,A[3]=h>>>24&255,a.check=N(a.check,A,4,0)),h=0,d=0,a.mode=16183;case 16183:for(;d<16;){if(0===o)break t;o--,h+=i[s++]<>8),512&a.flags&&4&a.wrap&&(A[0]=255&h,A[1]=h>>>8&255,a.check=N(a.check,A,2,0)),h=0,d=0,a.mode=16184;case 16184:if(1024&a.flags){for(;d<16;){if(0===o)break t;o--,h+=i[s++]<>>8&255,a.check=N(a.check,A,2,0)),h=0,d=0}else a.head&&(a.head.extra=null);a.mode=16185;case 16185:if(1024&a.flags&&(c=a.length,c>o&&(c=o),c&&(a.head&&(v=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Uint8Array(a.head.extra_len)),a.head.extra.set(i.subarray(s,s+c),v)),512&a.flags&&4&a.wrap&&(a.check=N(a.check,i,c,s)),o-=c,s+=c,a.length-=c),a.length))break t;a.length=0,a.mode=16186;case 16186:if(2048&a.flags){if(0===o)break t;c=0;do{v=i[s+c++],a.head&&v&&a.length<65536&&(a.head.name+=String.fromCharCode(v))}while(v&&c>9&1,a.head.done=!0),t.adler=a.check=0,a.mode=xe;break;case 16189:for(;d<32;){if(0===o)break t;o--,h+=i[s++]<>>=7&d,d-=7&d,a.mode=Ze;break}for(;d<3;){if(0===o)break t;o--,h+=i[s++]<>>=1,d-=1,3&h){case 0:a.mode=16193;break;case 1:if(He(a),a.mode=Ee,e===fe){h>>>=2,d-=2;break t}break;case 2:a.mode=16196;break;case 3:t.msg="invalid block type",a.mode=Ue}h>>>=2,d-=2;break;case 16193:for(h>>>=7&d,d-=7&d;d<32;){if(0===o)break t;o--,h+=i[s++]<>>16^65535)){t.msg="invalid stored block lengths",a.mode=Ue;break}if(a.length=65535&h,h=0,d=0,a.mode=Ae,e===fe)break t;case Ae:a.mode=16195;case 16195:if(c=a.length,c){if(c>o&&(c=o),c>l&&(c=l),0===c)break t;n.set(i.subarray(s,s+c),r),o-=c,s+=c,l-=c,r+=c,a.length-=c;break}a.mode=xe;break;case 16196:for(;d<14;){if(0===o)break t;o--,h+=i[s++]<>>=5,d-=5,a.ndist=1+(31&h),h>>>=5,d-=5,a.ncode=4+(15&h),h>>>=4,d-=4,a.nlen>286||a.ndist>30){t.msg="too many length or distance symbols",a.mode=Ue;break}a.have=0,a.mode=16197;case 16197:for(;a.have>>=3,d-=3}for(;a.have<19;)a.lens[Z[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,E={bits:a.lenbits},x=he(0,a.lens,0,19,a.lencode,0,a.work,E),a.lenbits=E.bits,x){t.msg="invalid code lengths set",a.mode=Ue;break}a.have=0,a.mode=16198;case 16198:for(;a.have>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<>>=m,d-=m,a.lens[a.have++]=g;else{if(16===g){for(R=m+2;d>>=m,d-=m,0===a.have){t.msg="invalid bit length repeat",a.mode=Ue;break}v=a.lens[a.have-1],c=3+(3&h),h>>>=2,d-=2}else if(17===g){for(R=m+3;d>>=m,d-=m,v=0,c=3+(7&h),h>>>=3,d-=3}else{for(R=m+7;d>>=m,d-=m,v=0,c=11+(127&h),h>>>=7,d-=7}if(a.have+c>a.nlen+a.ndist){t.msg="invalid bit length repeat",a.mode=Ue;break}for(;c--;)a.lens[a.have++]=v}}if(a.mode===Ue)break;if(0===a.lens[256]){t.msg="invalid code -- missing end-of-block",a.mode=Ue;break}if(a.lenbits=9,E={bits:a.lenbits},x=he(1,a.lens,0,a.nlen,a.lencode,0,a.work,E),a.lenbits=E.bits,x){t.msg="invalid literal/lengths set",a.mode=Ue;break}if(a.distbits=6,a.distcode=a.distdyn,E={bits:a.distbits},x=he(2,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,E),a.distbits=E.bits,x){t.msg="invalid distances set",a.mode=Ue;break}if(a.mode=Ee,e===fe)break t;case Ee:a.mode=Re;case Re:if(o>=6&&l>=258){t.next_out=r,t.avail_out=l,t.next_in=s,t.avail_in=o,a.hold=h,a.bits=d,ne(t,f),r=t.next_out,n=t.output,l=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,h=a.hold,d=a.bits,a.mode===xe&&(a.back=-1);break}for(a.back=0;z=a.lencode[h&(1<>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<>p)],m=z>>>24,b=z>>>16&255,g=65535&z,!(p+m<=d);){if(0===o)break t;o--,h+=i[s++]<>>=p,d-=p,a.back+=p}if(h>>>=m,d-=m,a.back+=m,a.length=g,0===b){a.mode=16205;break}if(32&b){a.back=-1,a.mode=xe;break}if(64&b){t.msg="invalid literal/length code",a.mode=Ue;break}a.extra=15&b,a.mode=16201;case 16201:if(a.extra){for(R=a.extra;d>>=a.extra,d-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=16202;case 16202:for(;z=a.distcode[h&(1<>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<>p)],m=z>>>24,b=z>>>16&255,g=65535&z,!(p+m<=d);){if(0===o)break t;o--,h+=i[s++]<>>=p,d-=p,a.back+=p}if(h>>>=m,d-=m,a.back+=m,64&b){t.msg="invalid distance code",a.mode=Ue;break}a.offset=g,a.extra=15&b,a.mode=16203;case 16203:if(a.extra){for(R=a.extra;d>>=a.extra,d-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){t.msg="invalid distance too far back",a.mode=Ue;break}a.mode=16204;case 16204:if(0===l)break t;if(c=f-l,a.offset>c){if(c=a.offset-c,c>a.whave&&a.sane){t.msg="invalid distance too far back",a.mode=Ue;break}c>a.wnext?(c-=a.wnext,u=a.wsize-c):u=a.wnext-c,c>a.length&&(c=a.length),w=a.window}else w=n,u=r-a.offset,c=a.length;c>l&&(c=l),l-=c,a.length-=c;do{n[r++]=w[u++]}while(--c);0===a.length&&(a.mode=Re);break;case 16205:if(0===l)break t;n[r++]=a.length,l--,a.mode=Re;break;case Ze:if(a.wrap){for(;d<32;){if(0===o)break t;o--,h|=i[s++]<{if(Te(t))return me;let e=t.state;return e.window&&(e.window=null),t.state=null,ce},inflateGetHeader:(t,e)=>{if(Te(t))return me;const a=t.state;return 2&a.wrap?(a.head=e,e.done=!1,ce):me},inflateSetDictionary:(t,e)=>{const a=e.length;let i,n,s;return Te(t)?me:(i=t.state,0!==i.wrap&&i.mode!==ve?me:i.mode===ve&&(n=1,n=F(n,e,a,0),n!==i.check)?be:(s=Me(t,e,a,a),s?(i.mode=16210,ge):(i.havedict=1,ce)))},inflateInfo:"pako inflate (from Nodeca project)"},je=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1};const Ke=Object.prototype.toString,{Z_NO_FLUSH:Ye,Z_FINISH:We,Z_OK:Ge,Z_STREAM_END:Xe,Z_NEED_DICT:$e,Z_STREAM_ERROR:qe,Z_DATA_ERROR:Je,Z_MEM_ERROR:Qe}=H;function Ve(t){this.options=Ct.assign({chunkSize:65536,windowBits:15,to:""},t||{});const e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&(15&e.windowBits||(e.windowBits|=15)),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new jt,this.strm.avail_out=0;let a=Pe.inflateInit2(this.strm,e.windowBits);if(a!==Ge)throw new Error(C[a]);if(this.header=new je,Pe.inflateGetHeader(this.strm,this.header),e.dictionary&&("string"==typeof e.dictionary?e.dictionary=Pt.string2buf(e.dictionary):"[object ArrayBuffer]"===Ke.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(a=Pe.inflateSetDictionary(this.strm,e.dictionary),a!==Ge)))throw new Error(C[a])}function ta(t,e){const a=new Ve(e);if(a.push(t),a.err)throw a.msg||C[a.err];return a.result}Ve.prototype.push=function(t,e){const a=this.strm,i=this.options.chunkSize,n=this.options.dictionary;let s,r,o;if(this.ended)return!1;for(r=e===~~e?e:!0===e?We:Ye,"[object ArrayBuffer]"===Ke.call(t)?a.input=new Uint8Array(t):a.input=t,a.next_in=0,a.avail_in=a.input.length;;){for(0===a.avail_out&&(a.output=new Uint8Array(i),a.next_out=0,a.avail_out=i),s=Pe.inflate(a,r),s===$e&&n&&(s=Pe.inflateSetDictionary(a,n),s===Ge?s=Pe.inflate(a,r):s===Je&&(s=$e));a.avail_in>0&&s===Xe&&a.state.wrap>0&&0!==t[a.next_in];)Pe.inflateReset(a),s=Pe.inflate(a,r);switch(s){case qe:case Je:case $e:case Qe:return this.onEnd(s),this.ended=!0,!1}if(o=a.avail_out,a.next_out&&(0===a.avail_out||s===Xe))if("string"===this.options.to){let t=Pt.utf8border(a.output,a.next_out),e=a.next_out-t,n=Pt.buf2string(a.output,t);a.next_out=e,a.avail_out=i-e,e&&a.output.set(a.output.subarray(t,t+e),0),this.onData(n)}else this.onData(a.output.length===a.next_out?a.output:a.output.subarray(0,a.next_out));if(s!==Ge||0!==o){if(s===Xe)return s=Pe.inflateEnd(this.strm),this.onEnd(s),this.ended=!0,!0;if(0===a.avail_in)break}}return!0},Ve.prototype.onData=function(t){this.chunks.push(t)},Ve.prototype.onEnd=function(t){t===Ge&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=Ct.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var ea={Inflate:Ve,inflate:ta,inflateRaw:function(t,e){return(e=e||{}).raw=!0,ta(t,e)},ungzip:ta,constants:H};const{Deflate:aa,deflate:ia,deflateRaw:na,gzip:sa}=ae,{Inflate:ra,inflate:oa,inflateRaw:la,ungzip:ha}=ea;var da=oa},708:(t,e,a)=>{function i(t,e){let a=t.length-e,i=0;do{for(let a=e;a>0;a--)t[i+e]+=t[i],i++;a-=e}while(a>0)}function n(t,e,a){let i=0,n=t.length;const s=n/a;for(;n>e;){for(let a=e;a>0;--a)t[i+e]+=t[i],++i;n-=e}const r=t.slice();for(let e=0;es});class s{async decode(t,e){const a=await this.decodeBlock(e),s=t.Predictor||1;if(1!==s){const e=!t.StripOffsets;return function(t,e,a,s,r,o){if(!e||1===e)return t;for(let t=0;t=t.byteLength);++o){let s;if(2===e){switch(r[0]){case 8:s=new Uint8Array(t,o*h*a*l,h*a*l);break;case 16:s=new Uint16Array(t,o*h*a*l,h*a*l/2);break;case 32:s=new Uint32Array(t,o*h*a*l,h*a*l/4);break;default:throw new Error(`Predictor 2 not allowed with ${r[0]} bits per sample.`)}i(s,h)}else 3===e&&(s=new Uint8Array(t,o*h*a*l,h*a*l),n(s,h,l))}return t}(a,s,e?t.TileWidth:t.ImageWidth,e?t.TileLength:t.RowsPerStrip||t.ImageLength,t.BitsPerSample,t.PlanarConfiguration)}return a}}}}]); +//# sourceMappingURL=342.embed-bundle.js.map \ No newline at end of file diff --git a/docs/source/_static/342.embed-bundle.js.map b/docs/source/_static/342.embed-bundle.js.map new file mode 100644 index 0000000..792d3e3 --- /dev/null +++ b/docs/source/_static/342.embed-bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"342.embed-bundle.js","mappings":"6GA0CA,SAASA,EAAOC,GAAO,IAAIC,EAAMD,EAAIE,OAAQ,OAASD,GAAO,GAAKD,EAAIC,GAAO,CAAK,C,mBAIlF,MA2DME,EACJ,IAAIC,WAAW,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,IAEpEC,EACJ,IAAID,WAAW,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,KAE7EE,EACJ,IAAIF,WAAW,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,IAEhDG,EACJ,IAAIH,WAAW,CAAC,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,KAgBxDI,EAAgB,IAAIC,MAAM,KAChCV,EAAOS,GAOP,MAAME,EAAgB,IAAID,MAAME,IAChCZ,EAAOW,GAKP,MAAME,EAAgB,IAAIH,MAjBJ,KAkBtBV,EAAOa,GAMP,MAAMC,EAAgB,IAAIJ,MAAMK,KAChCf,EAAOc,GAGP,MAAME,EAAgB,IAAIN,MAhGF,IAiGxBV,EAAOgB,GAGP,MAAMC,EAAgB,IAAIP,MA3FF,IAgGxB,SAASQ,EAAeC,EAAaC,EAAYC,EAAYC,EAAOC,GAElEC,KAAKL,YAAeA,EACpBK,KAAKJ,WAAeA,EACpBI,KAAKH,WAAeA,EACpBG,KAAKF,MAAeA,EACpBE,KAAKD,WAAeA,EAGpBC,KAAKC,UAAeN,GAAeA,EAAYhB,MACjD,CAGA,IAAIuB,EACAC,EACAC,EAGJ,SAASC,EAASC,EAAUC,GAC1BP,KAAKM,SAAWA,EAChBN,KAAKQ,SAAW,EAChBR,KAAKO,UAAYA,CACnB,CA1BA/B,EAAOiB,GA8BP,MAAMgB,EAAUC,GAEPA,EAAO,IAAMrB,EAAWqB,GAAQrB,EAAW,KAAOqB,IAAS,IAQ9DC,EAAY,CAACC,EAAGC,KAGpBD,EAAEE,YAAYF,EAAEG,WAAmB,IAAN,EAC7BH,EAAEE,YAAYF,EAAEG,WAAcF,IAAM,EAAK,GAAI,EAQzCG,EAAY,CAACJ,EAAGK,EAAOtC,KAEvBiC,EAAEM,SAtIc,GAsISvC,GAC3BiC,EAAEO,QAAWF,GAASL,EAAEM,SAAY,MACpCP,EAAUC,EAAGA,EAAEO,QACfP,EAAEO,OAASF,GAzIO,GAyIcL,EAAEM,SAClCN,EAAEM,UAAYvC,EA1II,KA4IlBiC,EAAEO,QAAWF,GAASL,EAAEM,SAAY,MACpCN,EAAEM,UAAYvC,EAChB,EAIIyC,EAAY,CAACR,EAAGS,EAAGC,KAEvBN,EAAUJ,EAAGU,EAAS,EAAJD,GAAiBC,EAAS,EAAJD,EAAQ,GAAW,EASvDE,EAAa,CAACC,EAAM9C,KAExB,IAAI+C,EAAM,EACV,GACEA,GAAc,EAAPD,EACPA,KAAU,EACVC,IAAQ,UACC/C,EAAM,GACjB,OAAO+C,IAAQ,CAAC,EAiIZC,EAAY,CAACJ,EAAMd,EAAUmB,KAKjC,MAAMC,EAAY,IAAI1C,MAAM2C,IAC5B,IACIC,EACAC,EAFAP,EAAO,EAOX,IAAKM,EAAO,EAAGA,GAtTO,GAsTaA,IACjCN,EAAQA,EAAOG,EAASG,EAAO,IAAO,EACtCF,EAAUE,GAAQN,EASpB,IAAKO,EAAI,EAAIA,GAAKvB,EAAUuB,IAAK,CAC/B,IAAIrD,EAAM4C,EAAS,EAAJS,EAAQ,GACX,IAARrD,IAEJ4C,EAAS,EAAJS,GAAkBR,EAAWK,EAAUlD,KAAQA,GAItD,GAgHIsD,EAAcpB,IAElB,IAAImB,EAGJ,IAAKA,EAAI,EAAGA,EA1cUE,IA0cMF,IAAOnB,EAAEsB,UAAc,EAAJH,GAAkB,EACjE,IAAKA,EAAI,EAAGA,EAxcU,GAwcMA,IAAOnB,EAAEuB,UAAc,EAAJJ,GAAkB,EACjE,IAAKA,EAAI,EAAGA,EAtcU,GAscMA,IAAOnB,EAAEwB,QAAY,EAAJL,GAAkB,EAE/DnB,EAAEsB,UAAUG,KAA0B,EACtCzB,EAAE0B,QAAU1B,EAAE2B,WAAa,EAC3B3B,EAAE4B,SAAW5B,EAAE6B,QAAU,CAAC,EAOtBC,EAAa9B,IAEbA,EAAEM,SAAW,EACfP,EAAUC,EAAGA,EAAEO,QACNP,EAAEM,SAAW,IAEtBN,EAAEE,YAAYF,EAAEG,WAAaH,EAAEO,QAEjCP,EAAEO,OAAS,EACXP,EAAEM,SAAW,CAAC,EAOVyB,EAAU,CAACrB,EAAMS,EAAGa,EAAGC,KAE3B,MAAMC,EAAU,EAAJf,EACNgB,EAAU,EAAJH,EACZ,OAAQtB,EAAKwB,GAAgBxB,EAAKyB,IAC1BzB,EAAKwB,KAAkBxB,EAAKyB,IAAiBF,EAAMd,IAAMc,EAAMD,EAAI,EASvEI,EAAa,CAACpC,EAAGU,EAAM2B,KAK3B,MAAMC,EAAItC,EAAEuC,KAAKF,GACjB,IAAIG,EAAIH,GAAK,EACb,KAAOG,GAAKxC,EAAEyC,WAERD,EAAIxC,EAAEyC,UACRV,EAAQrB,EAAMV,EAAEuC,KAAKC,EAAI,GAAIxC,EAAEuC,KAAKC,GAAIxC,EAAEiC,QAC1CO,KAGET,EAAQrB,EAAM4B,EAAGtC,EAAEuC,KAAKC,GAAIxC,EAAEiC,SAGlCjC,EAAEuC,KAAKF,GAAKrC,EAAEuC,KAAKC,GACnBH,EAAIG,EAGJA,IAAM,EAERxC,EAAEuC,KAAKF,GAAKC,CAAC,EAUTI,EAAiB,CAAC1C,EAAG2C,EAAOC,KAKhC,IAAI9C,EACA+C,EAEAjC,EACAkC,EAFAC,EAAK,EAIT,GAAmB,IAAf/C,EAAE4B,SACJ,GACE9B,EAAyC,IAAlCE,EAAEE,YAAYF,EAAEgD,QAAUD,KACjCjD,IAA2C,IAAlCE,EAAEE,YAAYF,EAAEgD,QAAUD,OAAiB,EACpDF,EAAK7C,EAAEE,YAAYF,EAAEgD,QAAUD,KAClB,IAATjD,EACFU,EAAUR,EAAG6C,EAAIF,IAIjB/B,EAAOlC,EAAamE,GACpBrC,EAAUR,EAAGY,EA/iBG,IA+iBiB,EAAG+B,GACpCG,EAAQ9E,EAAY4C,GACN,IAAVkC,IACFD,GAAMjE,EAAYgC,GAClBR,EAAUJ,EAAG6C,EAAIC,IAEnBhD,IACAc,EAAOf,EAAOC,GAGdU,EAAUR,EAAGY,EAAMgC,GACnBE,EAAQ5E,EAAY0C,GACN,IAAVkC,IACFhD,GAAQjB,EAAU+B,GAClBR,EAAUJ,EAAGF,EAAMgD,WAOhBC,EAAK/C,EAAE4B,UAGlBpB,EAAUR,EA1iBQ,IA0iBM2C,EAAM,EAY1BM,EAAa,CAACjD,EAAGkD,KAIrB,MAAMxC,EAAWwC,EAAKxD,SAChByD,EAAWD,EAAKvD,UAAUZ,YAC1BM,EAAY6D,EAAKvD,UAAUN,UAC3BH,EAAWgE,EAAKvD,UAAUT,MAChC,IAAIiC,EAAGa,EAEHoB,EADAxD,GAAY,EAUhB,IAHAI,EAAEyC,SAAW,EACbzC,EAAEqD,SAxlBoB,IA0lBjBlC,EAAI,EAAGA,EAAIjC,EAAOiC,IACQ,IAAzBT,EAAS,EAAJS,IACPnB,EAAEuC,OAAOvC,EAAEyC,UAAY7C,EAAWuB,EAClCnB,EAAEiC,MAAMd,GAAK,GAGbT,EAAS,EAAJS,EAAQ,GAAa,EAS9B,KAAOnB,EAAEyC,SAAW,GAClBW,EAAOpD,EAAEuC,OAAOvC,EAAEyC,UAAa7C,EAAW,IAAMA,EAAW,EAC3Dc,EAAY,EAAP0C,GAAqB,EAC1BpD,EAAEiC,MAAMmB,GAAQ,EAChBpD,EAAE0B,UAEErC,IACFW,EAAE2B,YAAcwB,EAAa,EAAPC,EAAW,IASrC,IALAF,EAAKtD,SAAWA,EAKXuB,EAAKnB,EAAEyC,UAAY,EAActB,GAAK,EAAGA,IAAOiB,EAAWpC,EAAGU,EAAMS,GAKzEiC,EAAOlE,EACP,GAGEiC,EAAInB,EAAEuC,KAAK,GACXvC,EAAEuC,KAAK,GAAiBvC,EAAEuC,KAAKvC,EAAEyC,YACjCL,EAAWpC,EAAGU,EAAM,GAGpBsB,EAAIhC,EAAEuC,KAAK,GAEXvC,EAAEuC,OAAOvC,EAAEqD,UAAYlC,EACvBnB,EAAEuC,OAAOvC,EAAEqD,UAAYrB,EAGvBtB,EAAY,EAAP0C,GAAqB1C,EAAS,EAAJS,GAAkBT,EAAS,EAAJsB,GACtDhC,EAAEiC,MAAMmB,IAASpD,EAAEiC,MAAMd,IAAMnB,EAAEiC,MAAMD,GAAKhC,EAAEiC,MAAMd,GAAKnB,EAAEiC,MAAMD,IAAM,EACvEtB,EAAS,EAAJS,EAAQ,GAAaT,EAAS,EAAJsB,EAAQ,GAAaoB,EAGpDpD,EAAEuC,KAAK,GAAiBa,IACxBhB,EAAWpC,EAAGU,EAAM,SAEbV,EAAEyC,UAAY,GAEvBzC,EAAEuC,OAAOvC,EAAEqD,UAAYrD,EAAEuC,KAAK,GA5cb,EAACvC,EAAGkD,KAIrB,MAAMxC,EAAkBwC,EAAKxD,SACvBE,EAAkBsD,EAAKtD,SACvBuD,EAAkBD,EAAKvD,UAAUZ,YACjCM,EAAkB6D,EAAKvD,UAAUN,UACjCyD,EAAkBI,EAAKvD,UAAUX,WACjCsE,EAAkBJ,EAAKvD,UAAUV,WACjCE,EAAkB+D,EAAKvD,UAAUR,WACvC,IAAIoE,EACApC,EAAGa,EACHd,EACAsC,EACAC,EACAC,EAAW,EAEf,IAAKxC,EAAO,EAAGA,GA1NO,GA0NaA,IACjClB,EAAEe,SAASG,GAAQ,EAQrB,IAFAR,EAA0B,EAArBV,EAAEuC,KAAKvC,EAAEqD,UAAgB,GAAa,EAEtCE,EAAIvD,EAAEqD,SAAW,EAAGE,EAtOH,IAsOoBA,IACxCpC,EAAInB,EAAEuC,KAAKgB,GACXrC,EAAOR,EAA+B,EAA1BA,EAAS,EAAJS,EAAQ,GAAiB,GAAa,EACnDD,EAAO/B,IACT+B,EAAO/B,EACPuE,KAEFhD,EAAS,EAAJS,EAAQ,GAAaD,EAGtBC,EAAIvB,IAERI,EAAEe,SAASG,KACXsC,EAAQ,EACJrC,GAAKmC,IACPE,EAAQV,EAAM3B,EAAImC,IAEpBG,EAAI/C,EAAS,EAAJS,GACTnB,EAAE0B,SAAW+B,GAAKvC,EAAOsC,GACrBnE,IACFW,EAAE2B,YAAc8B,GAAKN,EAAU,EAAJhC,EAAQ,GAAaqC,KAGpD,GAAiB,IAAbE,EAAJ,CAMA,EAAG,CAED,IADAxC,EAAO/B,EAAa,EACQ,IAArBa,EAAEe,SAASG,IAAeA,IACjClB,EAAEe,SAASG,KACXlB,EAAEe,SAASG,EAAO,IAAM,EACxBlB,EAAEe,SAAS5B,KAIXuE,GAAY,CACd,OAASA,EAAW,GAOpB,IAAKxC,EAAO/B,EAAqB,IAAT+B,EAAYA,IAElC,IADAC,EAAInB,EAAEe,SAASG,GACF,IAANC,GACLa,EAAIhC,EAAEuC,OAAOgB,GACTvB,EAAIpC,IACJc,EAAS,EAAJsB,EAAQ,KAAed,IAE9BlB,EAAE0B,UAAYR,EAAOR,EAAS,EAAJsB,EAAQ,IAActB,EAAS,EAAJsB,GACrDtB,EAAS,EAAJsB,EAAQ,GAAad,GAE5BC,IAjC0B,CAmC9B,EA4XAwC,CAAW3D,EAAGkD,GAGdpC,EAAUJ,EAAMd,EAAUI,EAAEe,SAAS,EAQjC6C,EAAY,CAAC5D,EAAGU,EAAMd,KAK1B,IAAIuB,EAEA0C,EADAC,GAAW,EAGXC,EAAUrD,EAAK,GAEfsD,EAAQ,EACRC,EAAY,EACZC,EAAY,EAQhB,IANgB,IAAZH,IACFE,EAAY,IACZC,EAAY,GAEdxD,EAAsB,GAAhBd,EAAW,GAAS,GAAa,MAElCuB,EAAI,EAAGA,GAAKvB,EAAUuB,IACzB0C,EAASE,EACTA,EAAUrD,EAAe,GAATS,EAAI,GAAS,KAEvB6C,EAAQC,GAAaJ,IAAWE,IAG3BC,EAAQE,EACjBlE,EAAEwB,QAAiB,EAATqC,IAAwBG,EAEd,IAAXH,GAELA,IAAWC,GAAW9D,EAAEwB,QAAiB,EAATqC,KACpC7D,EAAEwB,QAAQ2C,OAEDH,GAAS,GAClBhE,EAAEwB,QAAQ4C,MAGVpE,EAAEwB,QAAQ6C,MAGZL,EAAQ,EACRF,EAAUD,EAEM,IAAZE,GACFE,EAAY,IACZC,EAAY,GAEHL,IAAWE,GACpBE,EAAY,EACZC,EAAY,IAGZD,EAAY,EACZC,EAAY,GAEhB,EAQII,EAAY,CAACtE,EAAGU,EAAMd,KAK1B,IAAIuB,EAEA0C,EADAC,GAAW,EAGXC,EAAUrD,EAAK,GAEfsD,EAAQ,EACRC,EAAY,EACZC,EAAY,EAQhB,IALgB,IAAZH,IACFE,EAAY,IACZC,EAAY,GAGT/C,EAAI,EAAGA,GAAKvB,EAAUuB,IAIzB,GAHA0C,EAASE,EACTA,EAAUrD,EAAe,GAATS,EAAI,GAAS,OAEvB6C,EAAQC,GAAaJ,IAAWE,GAAtC,CAGO,GAAIC,EAAQE,EACjB,GAAK1D,EAAUR,EAAG6D,EAAQ7D,EAAEwB,eAA+B,KAAVwC,QAE7B,IAAXH,GACLA,IAAWC,IACbtD,EAAUR,EAAG6D,EAAQ7D,EAAEwB,SACvBwC,KAGFxD,EAAUR,EA1vBI,GA0vBQA,EAAEwB,SACxBpB,EAAUJ,EAAGgE,EAAQ,EAAG,IAEfA,GAAS,IAClBxD,EAAUR,EA3vBI,GA2vBUA,EAAEwB,SAC1BpB,EAAUJ,EAAGgE,EAAQ,EAAG,KAGxBxD,EAAUR,EA5vBI,GA4vBYA,EAAEwB,SAC5BpB,EAAUJ,EAAGgE,EAAQ,GAAI,IAG3BA,EAAQ,EACRF,EAAUD,EACM,IAAZE,GACFE,EAAY,IACZC,EAAY,GAEHL,IAAWE,GACpBE,EAAY,EACZC,EAAY,IAGZD,EAAY,EACZC,EAAY,EAdd,CAgBF,EAsHF,IAAIK,GAAmB,EAKvB,MAuBMC,EAAqB,CAACxE,EAAGnC,EAAK4G,EAAYC,KAM9CtE,EAAUJ,EAAG,GAAuB0E,EAAO,EAAI,GAAI,GACnD5C,EAAU9B,GACVD,EAAUC,EAAGyE,GACb1E,EAAUC,GAAIyE,GACVA,GACFzE,EAAEE,YAAYyE,IAAI3E,EAAE4E,OAAOC,SAAShH,EAAKA,EAAM4G,GAAazE,EAAEG,SAEhEH,EAAEG,SAAWsE,CAAU,EAoIzB,IAMIK,EAAQ,CACXC,SA/KmB/E,IAGbuE,IAnlBgB,MAErB,IAAIpD,EACAD,EACAnD,EACA6C,EACAd,EACJ,MAAMiB,EAAW,IAAIzC,MAAM2C,IAiB3B,IADAlD,EAAS,EACJ6C,EAAO,EAAGA,EAAOoE,GAAoBpE,IAExC,IADAhC,EAAYgC,GAAQ7C,EACfoD,EAAI,EAAGA,EAAK,GAAKnD,EAAY4C,GAAQO,IACxCzC,EAAaX,KAAY6C,EAY7B,IAJAlC,EAAaX,EAAS,GAAK6C,EAG3Bd,EAAO,EACFc,EAAO,EAAGA,EAAO,GAAIA,IAExB,IADA/B,EAAU+B,GAAQd,EACbqB,EAAI,EAAGA,EAAK,GAAKjD,EAAY0C,GAAQO,IACxC1C,EAAWqB,KAAUc,EAKzB,IADAd,IAAS,EACFc,EAxYe,GAwYGA,IAEvB,IADA/B,EAAU+B,GAAQd,GAAQ,EACrBqB,EAAI,EAAGA,EAAK,GAAMjD,EAAY0C,GAAQ,EAAKO,IAC9C1C,EAAW,IAAMqB,KAAUc,EAM/B,IAAKM,EAAO,EAAGA,GAxYO,GAwYaA,IACjCH,EAASG,GAAQ,EAInB,IADAC,EAAI,EACGA,GAAK,KACV9C,EAAiB,EAAJ8C,EAAQ,GAAa,EAClCA,IACAJ,EAAS,KAEX,KAAOI,GAAK,KACV9C,EAAiB,EAAJ8C,EAAQ,GAAa,EAClCA,IACAJ,EAAS,KAEX,KAAOI,GAAK,KACV9C,EAAiB,EAAJ8C,EAAQ,GAAa,EAClCA,IACAJ,EAAS,KAEX,KAAOI,GAAK,KACV9C,EAAiB,EAAJ8C,EAAQ,GAAa,EAClCA,IACAJ,EAAS,KASX,IAHAD,EAAUzC,EAAc4G,IAAelE,GAGlCI,EAAI,EAAGA,EAjbU,GAibKA,IACzB5C,EAAiB,EAAJ4C,EAAQ,GAAa,EAClC5C,EAAiB,EAAJ4C,GAAkBR,EAAWQ,EAAG,GAI/C7B,EAAgB,IAAIR,EAAeT,EAAcL,EAAaqD,IA1bxCA,IAYA,IA+atB9B,EAAgB,IAAIT,EAAeP,EAAcL,EAAa,EAxbxC,GASA,IAgbtBsB,EAAiB,IAAIV,EAAe,IAAIR,MAAM,GAAIH,EAAc,EAtb1C,GAiBJ,EAqaiF,EAofjG+G,GACAX,GAAmB,GAGrBvE,EAAEmF,OAAU,IAAI1F,EAASO,EAAEsB,UAAWhC,GACtCU,EAAEoF,OAAU,IAAI3F,EAASO,EAAEuB,UAAWhC,GACtCS,EAAEqF,QAAU,IAAI5F,EAASO,EAAEwB,QAAShC,GAEpCQ,EAAEO,OAAS,EACXP,EAAEM,SAAW,EAGbc,EAAWpB,EAAE,EAgKdsF,iBAPwBd,EAQxBe,gBA1HyB,CAACvF,EAAGnC,EAAK4G,EAAYC,KAM7C,IAAIc,EAAUC,EACVC,EAAc,EAGd1F,EAAE2F,MAAQ,GA1gCgB,IA6gCxB3F,EAAE4F,KAAKC,YACT7F,EAAE4F,KAAKC,UA3GY,CAAC7F,IAKxB,IACImB,EADA2E,EAAa,WAIjB,IAAK3E,EAAI,EAAGA,GAAK,GAAIA,IAAK2E,KAAgB,EACxC,GAAkB,EAAbA,GAAoD,IAAhC9F,EAAEsB,UAAc,EAAJH,GACnC,OAj7BwB,EAs7B5B,GAAoC,IAAhCnB,EAAEsB,UAAU,KAA0D,IAAjCtB,EAAEsB,UAAU,KAChB,IAAjCtB,EAAEsB,UAAU,IACd,OAv7B0B,EAy7B5B,IAAKH,EAAI,GAAIA,EA75BS,IA65BOA,IAC3B,GAAoC,IAAhCnB,EAAEsB,UAAc,EAAJH,GACd,OA37BwB,EAk8B5B,OAn8B4B,CAm8Bb,EA8EQ4E,CAAiB/F,IAItCiD,EAAWjD,EAAGA,EAAEmF,QAIhBlC,EAAWjD,EAAGA,EAAEoF,QAUhBM,EA1MkB,CAAC1F,IAErB,IAAI0F,EAgBJ,IAbA9B,EAAU5D,EAAGA,EAAEsB,UAAWtB,EAAEmF,OAAOvF,UACnCgE,EAAU5D,EAAGA,EAAEuB,UAAWvB,EAAEoF,OAAOxF,UAGnCqD,EAAWjD,EAAGA,EAAEqF,SASXK,EAAcM,GAAgBN,GAAe,GACS,IAArD1F,EAAEwB,QAAgC,EAAxBpD,EAASsH,GAAmB,GADSA,KAUrD,OAJA1F,EAAE0B,SAAW,GAAKgE,EAAc,GAAK,EAAI,EAAI,EAItCA,CAAW,EA8KFO,CAAcjG,GAG5BwF,EAAYxF,EAAE0B,QAAU,EAAI,IAAO,EACnC+D,EAAezF,EAAE2B,WAAa,EAAI,IAAO,EAMrC8D,GAAeD,IAAYA,EAAWC,IAI1CD,EAAWC,EAAchB,EAAa,EAGnCA,EAAa,GAAKe,IAAuB,IAAT3H,EASnC2G,EAAmBxE,EAAGnC,EAAK4G,EAAYC,GAjkCX,IAmkCnB1E,EAAEkG,UAA0BT,IAAgBD,GAErDpF,EAAUJ,EAAG,GAAuB0E,EAAO,EAAI,GAAI,GACnDhC,EAAe1C,EAAG3B,EAAcE,KAGhC6B,EAAUJ,EAAG,GAAoB0E,EAAO,EAAI,GAAI,GAvM7B,EAAC1E,EAAGmG,EAAQC,EAAQC,KAIzC,IAAIC,EASJ,IAHAlG,EAAUJ,EAAGmG,EAAS,IAAK,GAC3B/F,EAAUJ,EAAGoG,EAAS,EAAK,GAC3BhG,EAAUJ,EAAGqG,EAAU,EAAI,GACtBC,EAAO,EAAGA,EAAOD,EAASC,IAE7BlG,EAAUJ,EAAGA,EAAEwB,QAAyB,EAAjBpD,EAASkI,GAAY,GAAY,GAI1DhC,EAAUtE,EAAGA,EAAEsB,UAAW6E,EAAS,GAGnC7B,EAAUtE,EAAGA,EAAEuB,UAAW6E,EAAS,EAAE,EAkLnCG,CAAevG,EAAGA,EAAEmF,OAAOvF,SAAW,EAAGI,EAAEoF,OAAOxF,SAAW,EAAG8F,EAAc,GAC9EhD,EAAe1C,EAAGA,EAAEsB,UAAWtB,EAAEuB,YAMnCH,EAAWpB,GAEP0E,GACF5C,EAAU9B,EACZ,EA6CDwG,UApCmB,CAACxG,EAAGF,EAAM+C,KAK5B7C,EAAEE,YAAYF,EAAEgD,QAAUhD,EAAE4B,YAAc9B,EAC1CE,EAAEE,YAAYF,EAAEgD,QAAUhD,EAAE4B,YAAc9B,GAAQ,EAClDE,EAAEE,YAAYF,EAAEgD,QAAUhD,EAAE4B,YAAciB,EAC7B,IAAT/C,EAEFE,EAAEsB,UAAe,EAALuB,MAEZ7C,EAAE6B,UAEF/B,IAKAE,EAAEsB,UAAgD,GAArC5C,EAAamE,GAhlCN,IAglCyB,MAC7C7C,EAAEuB,UAAyB,EAAf1B,EAAOC,OAGbE,EAAE4B,WAAa5B,EAAEyG,SAc1BC,UAvIoB1G,IACnBI,EAAUJ,EAAG2G,EAAmB,GAChCnG,EAAUR,EAh8BQ,IAg8BM3B,GA/xBT,CAAC2B,IAEG,KAAfA,EAAEM,UACJP,EAAUC,EAAGA,EAAEO,QACfP,EAAEO,OAAS,EACXP,EAAEM,SAAW,GAEJN,EAAEM,UAAY,IACvBN,EAAEE,YAAYF,EAAEG,WAAwB,IAAXH,EAAEO,OAC/BP,EAAEO,SAAW,EACbP,EAAEM,UAAY,EAChB,EAqxBAsG,CAAS5G,EAAE,GAuLT6G,EAzBY,CAACC,EAAOjJ,EAAKC,EAAKiJ,KAChC,IAAIC,EAAc,MAARF,EACNG,EAAOH,IAAU,GAAM,MACvB3F,EAAI,EAER,KAAe,IAARrD,GAAW,CAIhBqD,EAAIrD,EAAM,IAAO,IAAOA,EACxBA,GAAOqD,EAEP,GACE6F,EAAMA,EAAKnJ,EAAIkJ,KAAS,EACxBE,EAAMA,EAAKD,EAAK,UACP7F,GAEX6F,GAAM,MACNC,GAAM,KACR,CAEA,OAAQD,EAAMC,GAAM,EAAO,EA8B7B,MAeMC,EAAW,IAAIC,YAfH,MAChB,IAAI1G,EAAG2G,EAAQ,GAEf,IAAK,IAAIjG,EAAI,EAAGA,EAAI,IAAKA,IAAK,CAC5BV,EAAIU,EACJ,IAAK,IAAIkB,EAAI,EAAGA,EAAI,EAAGA,IACrB5B,EAAU,EAAJA,EAAU,WAAcA,IAAM,EAAOA,IAAM,EAEnD2G,EAAMjG,GAAKV,CACb,CAEA,OAAO2G,CAAK,EAImBC,IAiBjC,IAAIC,EAdU,CAACC,EAAK1J,EAAKC,EAAKiJ,KAC5B,MAAMS,EAAIN,EACJO,EAAMV,EAAMjJ,EAElByJ,IAAQ,EAER,IAAK,IAAIG,EAAIX,EAAKW,EAAID,EAAKC,IACzBH,EAAOA,IAAQ,EAAKC,EAAmB,KAAhBD,EAAM1J,EAAI6J,KAGnC,OAAQH,CAAW,EAyBjBI,EAAW,CACb,EAAQ,kBACR,EAAQ,aACR,EAAQ,GACR,KAAQ,aACR,KAAQ,eACR,KAAQ,aACR,KAAQ,sBACR,KAAQ,eACR,KAAQ,wBAsBNC,EAAc,CAGhBC,WAAoB,EACpBC,gBAAoB,EACpBC,aAAoB,EACpBC,aAAoB,EACpBC,SAAoB,EACpBC,QAAoB,EACpBC,QAAoB,EAKpBC,KAAoB,EACpBC,aAAoB,EACpBC,YAAoB,EACpBC,SAAoB,EACpBC,gBAAoB,EACpBC,cAAoB,EACpBC,aAAoB,EACpBC,aAAoB,EAIpBC,iBAA0B,EAC1BC,aAA0B,EAC1BC,mBAA0B,EAC1BC,uBAA0B,EAG1BC,WAA0B,EAC1BC,eAA0B,EAC1BC,MAA0B,EAC1BC,QAA0B,EAC1BC,mBAA0B,EAG1BC,SAA0B,EAC1BC,OAA0B,EAE1BC,UAA0B,EAG1BC,WAA0B,GAuB5B,MAAM,SAAEzE,EAAQ,iBAAEO,EAAgB,gBAAEC,EAAe,UAAEiB,EAAS,UAAEE,GAAc5B,GAS5E+C,WAAY4B,EAAY,gBAAE3B,EAAiBE,aAAc0B,EAAgBzB,SAAU0B,EAAYzB,QAAS0B,EACxGxB,KAAMyB,EAAQxB,aAAcyB,EAAgBtB,eAAgBuB,EAAkBtB,aAAcuB,GAAgBrB,YAAasB,GACzHlB,sBAAuBmB,GAAuB,WAC9ClB,GAAU,eAAEC,GAAc,MAAEC,GAAK,QAAEC,GAASC,mBAAoBe,GAAoB,UACpFZ,GACAC,WAAYY,IACVxC,EA4BEyC,GAAY,IACZC,GAAgB,IAIhBC,GAAiB,GAQjBC,GAAgB,IAChBC,GAAgB,IAShBC,GAAM,CAAC9E,EAAM+E,KACjB/E,EAAKgF,IAAMjD,EAASgD,GACbA,GAGHrE,GAAQ7C,GACE,EAAN,GAAY,EAAM,EAAI,EAAI,GAG9BoH,GAAQhN,IACZ,IAAIC,EAAMD,EAAIE,OAAQ,OAASD,GAAO,GAAKD,EAAIC,GAAO,CAAG,EAQrDgN,GAAc9K,IAClB,IAAImB,EAAGa,EACH+I,EACAC,EAAQhL,EAAEiL,OAEd9J,EAAInB,EAAEkL,UACNH,EAAI5J,EACJ,GACEa,EAAIhC,EAAEmL,OAAOJ,GACb/K,EAAEmL,KAAKJ,GAAM/I,GAAKgJ,EAAQhJ,EAAIgJ,EAAQ,UAC7B7J,GACXA,EAAI6J,EAEJD,EAAI5J,EACJ,GACEa,EAAIhC,EAAEoL,OAAOL,GACb/K,EAAEoL,KAAKL,GAAM/I,GAAKgJ,EAAQhJ,EAAIgJ,EAAQ,UAI7B7J,EAAE,EAKf,IAIIkK,GAJY,CAACrL,EAAGoL,EAAME,KAAWF,GAAQpL,EAAEuL,WAAcD,GAAQtL,EAAEwL,UAavE,MAAMC,GAAiB7F,IACrB,MAAM5F,EAAI4F,EAAK8F,MAGf,IAAI5N,EAAMkC,EAAEG,QACRrC,EAAM8H,EAAK+F,YACb7N,EAAM8H,EAAK+F,WAED,IAAR7N,IAEJ8H,EAAKgG,OAAOjH,IAAI3E,EAAEE,YAAY2E,SAAS7E,EAAE6L,YAAa7L,EAAE6L,YAAc/N,GAAM8H,EAAKkG,UACjFlG,EAAKkG,UAAahO,EAClBkC,EAAE6L,aAAgB/N,EAClB8H,EAAKmG,WAAajO,EAClB8H,EAAK+F,WAAa7N,EAClBkC,EAAEG,SAAgBrC,EACA,IAAdkC,EAAEG,UACJH,EAAE6L,YAAc,GAClB,EAIIG,GAAmB,CAAChM,EAAG0E,KAC3Ba,EAAgBvF,EAAIA,EAAEiM,aAAe,EAAIjM,EAAEiM,aAAe,EAAIjM,EAAEkM,SAAWlM,EAAEiM,YAAavH,GAC1F1E,EAAEiM,YAAcjM,EAAEkM,SAClBT,GAAczL,EAAE4F,KAAK,EAIjBuG,GAAW,CAACnM,EAAGoM,KACnBpM,EAAEE,YAAYF,EAAEG,WAAaiM,CAAC,EAS1BC,GAAc,CAACrM,EAAGoM,KAItBpM,EAAEE,YAAYF,EAAEG,WAAciM,IAAM,EAAK,IACzCpM,EAAEE,YAAYF,EAAEG,WAAiB,IAAJiM,CAAQ,EAWjCE,GAAW,CAAC1G,EAAM/H,EAAK0O,EAAOC,KAElC,IAAI1O,EAAM8H,EAAK6G,SAGf,OADI3O,EAAM0O,IAAQ1O,EAAM0O,GACZ,IAAR1O,EAAoB,GAExB8H,EAAK6G,UAAY3O,EAGjBD,EAAI8G,IAAIiB,EAAK8G,MAAM7H,SAASe,EAAK+G,QAAS/G,EAAK+G,QAAU7O,GAAMyO,GACvC,IAApB3G,EAAK8F,MAAMkB,KACbhH,EAAKkB,MAAQD,EAAUjB,EAAKkB,MAAOjJ,EAAKC,EAAKyO,GAGlB,IAApB3G,EAAK8F,MAAMkB,OAClBhH,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAOjJ,EAAKC,EAAKyO,IAG7C3G,EAAK+G,SAAW7O,EAChB8H,EAAKiH,UAAY/O,EAEVA,EAAG,EAaNgP,GAAgB,CAAC9M,EAAG+M,KAExB,IAEIC,EACAlP,EAHAmP,EAAejN,EAAEkN,iBACjBC,EAAOnN,EAAEkM,SAGTkB,EAAWpN,EAAEqN,YACbC,EAAatN,EAAEsN,WACnB,MAAMC,EAASvN,EAAEkM,SAAYlM,EAAEiL,OAASX,GACpCtK,EAAEkM,UAAYlM,EAAEiL,OAASX,IAAiB,EAExCkD,EAAOxN,EAAE4E,OAET6I,EAAQzN,EAAE0N,OACVtC,EAAQpL,EAAEoL,KAMVuC,EAAS3N,EAAEkM,SAAW7B,GAC5B,IAAIuD,EAAaJ,EAAKL,EAAOC,EAAW,GACpCS,EAAaL,EAAKL,EAAOC,GAQzBpN,EAAEqN,aAAerN,EAAE8N,aACrBb,IAAiB,GAKfK,EAAatN,EAAE+N,YAAaT,EAAatN,EAAE+N,WAI/C,GAaE,GAXAf,EAAQD,EAWJS,EAAKR,EAAQI,KAAkBS,GAC/BL,EAAKR,EAAQI,EAAW,KAAOQ,GAC/BJ,EAAKR,KAA0BQ,EAAKL,IACpCK,IAAOR,KAAwBQ,EAAKL,EAAO,GAH/C,CAaAA,GAAQ,EACRH,IAMA,UAESQ,IAAOL,KAAUK,IAAOR,IAAUQ,IAAOL,KAAUK,IAAOR,IAC1DQ,IAAOL,KAAUK,IAAOR,IAAUQ,IAAOL,KAAUK,IAAOR,IAC1DQ,IAAOL,KAAUK,IAAOR,IAAUQ,IAAOL,KAAUK,IAAOR,IAC1DQ,IAAOL,KAAUK,IAAOR,IAAUQ,IAAOL,KAAUK,IAAOR,IAC1DG,EAAOQ,GAOhB,GAHA7P,EAAMuM,IAAasD,EAASR,GAC5BA,EAAOQ,EAAStD,GAEZvM,EAAMsP,EAAU,CAGlB,GAFApN,EAAEgO,YAAcjB,EAChBK,EAAWtP,EACPA,GAAOwP,EACT,MAEFM,EAAaJ,EAAKL,EAAOC,EAAW,GACpCS,EAAaL,EAAKL,EAAOC,EAC3B,CApCA,SAqCQL,EAAY3B,EAAK2B,EAAYU,IAAUF,GAA4B,KAAjBN,GAE5D,OAAIG,GAAYpN,EAAE+N,UACTX,EAEFpN,EAAE+N,SAAS,EAcdE,GAAejO,IAEnB,MAAMkO,EAAUlO,EAAEiL,OAClB,IAAI9J,EAAGgN,EAAMC,EAIb,EAAG,CAkCD,GAjCAD,EAAOnO,EAAEqO,YAAcrO,EAAE+N,UAAY/N,EAAEkM,SAoBnClM,EAAEkM,UAAYgC,GAAWA,EAAU5D,MAErCtK,EAAE4E,OAAOD,IAAI3E,EAAE4E,OAAOC,SAASqJ,EAASA,EAAUA,EAAUC,GAAO,GACnEnO,EAAEgO,aAAeE,EACjBlO,EAAEkM,UAAYgC,EAEdlO,EAAEiM,aAAeiC,EACblO,EAAEsO,OAAStO,EAAEkM,WACflM,EAAEsO,OAAStO,EAAEkM,UAEfpB,GAAW9K,GACXmO,GAAQD,GAEc,IAApBlO,EAAE4F,KAAK6G,SACT,MAmBF,GAJAtL,EAAImL,GAAStM,EAAE4F,KAAM5F,EAAE4E,OAAQ5E,EAAEkM,SAAWlM,EAAE+N,UAAWI,GACzDnO,EAAE+N,WAAa5M,EAGXnB,EAAE+N,UAAY/N,EAAEsO,QAzVN,EAkWZ,IARAF,EAAMpO,EAAEkM,SAAWlM,EAAEsO,OACrBtO,EAAEuO,MAAQvO,EAAE4E,OAAOwJ,GAGnBpO,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAOwJ,EAAM,IAInCpO,EAAEsO,SAEPtO,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAOwJ,EApW1B,EAoW4C,IAEtDpO,EAAEoL,KAAKgD,EAAMpO,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OAClCvO,EAAEmL,KAAKnL,EAAEuO,OAASH,EAClBA,IACApO,EAAEsO,WACEtO,EAAE+N,UAAY/N,EAAEsO,OA1WV,MAmXhB,OAAStO,EAAE+N,UAAYzD,IAAqC,IAApBtK,EAAE4F,KAAK6G,SAAe,EAuD1D+B,GAAiB,CAACxO,EAAGyO,KAMzB,IAMI3Q,EAAK4Q,EAAMC,EANXC,EAAY5O,EAAE6O,iBAAmB,EAAI7O,EAAEiL,OAASjL,EAAEiL,OAASjL,EAAE6O,iBAAmB,EAM/DnK,EAAO,EACxBoK,EAAO9O,EAAE4F,KAAK6G,SAClB,EAAG,CAOD,GAFA3O,EAAM,MACN6Q,EAAQ3O,EAAEM,SAAW,IAAO,EACxBN,EAAE4F,KAAK+F,UAAYgD,EACrB,MAiBF,GAdAA,EAAO3O,EAAE4F,KAAK+F,UAAYgD,EAC1BD,EAAO1O,EAAEkM,SAAWlM,EAAEiM,YAClBnO,EAAM4Q,EAAO1O,EAAE4F,KAAK6G,WACtB3O,EAAM4Q,EAAO1O,EAAE4F,KAAK6G,UAElB3O,EAAM6Q,IACR7Q,EAAM6Q,GAQJ7Q,EAAM8Q,IAAuB,IAAR9Q,GAAa2Q,IAAU9E,GAC5B8E,IAAUhF,GACV3L,IAAQ4Q,EAAO1O,EAAE4F,KAAK6G,UACxC,MAMF/H,EAAO+J,IAAU9E,GAAc7L,IAAQ4Q,EAAO1O,EAAE4F,KAAK6G,SAAW,EAAI,EACpEnH,EAAiBtF,EAAG,EAAG,EAAG0E,GAG1B1E,EAAEE,YAAYF,EAAEG,QAAU,GAAKrC,EAC/BkC,EAAEE,YAAYF,EAAEG,QAAU,GAAKrC,GAAO,EACtCkC,EAAEE,YAAYF,EAAEG,QAAU,IAAMrC,EAChCkC,EAAEE,YAAYF,EAAEG,QAAU,IAAMrC,GAAO,EAGvC2N,GAAczL,EAAE4F,MASZ8I,IACEA,EAAO5Q,IACT4Q,EAAO5Q,GAGTkC,EAAE4F,KAAKgG,OAAOjH,IAAI3E,EAAE4E,OAAOC,SAAS7E,EAAEiM,YAAajM,EAAEiM,YAAcyC,GAAO1O,EAAE4F,KAAKkG,UACjF9L,EAAE4F,KAAKkG,UAAY4C,EACnB1O,EAAE4F,KAAK+F,WAAa+C,EACpB1O,EAAE4F,KAAKmG,WAAa2C,EACpB1O,EAAEiM,aAAeyC,EACjB5Q,GAAO4Q,GAML5Q,IACFwO,GAAStM,EAAE4F,KAAM5F,EAAE4F,KAAKgG,OAAQ5L,EAAE4F,KAAKkG,SAAUhO,GACjDkC,EAAE4F,KAAKkG,UAAYhO,EACnBkC,EAAE4F,KAAK+F,WAAa7N,EACpBkC,EAAE4F,KAAKmG,WAAajO,EAExB,OAAkB,IAAT4G,GA6CT,OArCAoK,GAAQ9O,EAAE4F,KAAK6G,SACXqC,IAIEA,GAAQ9O,EAAEiL,QACZjL,EAAE6B,QAAU,EAEZ7B,EAAE4E,OAAOD,IAAI3E,EAAE4F,KAAK8G,MAAM7H,SAAS7E,EAAE4F,KAAK+G,QAAU3M,EAAEiL,OAAQjL,EAAE4F,KAAK+G,SAAU,GAC/E3M,EAAEkM,SAAWlM,EAAEiL,OACfjL,EAAEsO,OAAStO,EAAEkM,WAGTlM,EAAEqO,YAAcrO,EAAEkM,UAAY4C,IAEhC9O,EAAEkM,UAAYlM,EAAEiL,OAEhBjL,EAAE4E,OAAOD,IAAI3E,EAAE4E,OAAOC,SAAS7E,EAAEiL,OAAQjL,EAAEiL,OAASjL,EAAEkM,UAAW,GAC7DlM,EAAE6B,QAAU,GACd7B,EAAE6B,UAEA7B,EAAEsO,OAAStO,EAAEkM,WACflM,EAAEsO,OAAStO,EAAEkM,WAIjBlM,EAAE4E,OAAOD,IAAI3E,EAAE4F,KAAK8G,MAAM7H,SAAS7E,EAAE4F,KAAK+G,QAAUmC,EAAM9O,EAAE4F,KAAK+G,SAAU3M,EAAEkM,UAC7ElM,EAAEkM,UAAY4C,EACd9O,EAAEsO,QAAUQ,EAAO9O,EAAEiL,OAASjL,EAAEsO,OAAStO,EAAEiL,OAASjL,EAAEsO,OAASQ,GAEjE9O,EAAEiM,YAAcjM,EAAEkM,UAEhBlM,EAAE+O,WAAa/O,EAAEkM,WACnBlM,EAAE+O,WAAa/O,EAAEkM,UAIfxH,EA5hBoB,EAiiBpB+J,IAAUhF,GAAgBgF,IAAU9E,GAClB,IAApB3J,EAAE4F,KAAK6G,UAAkBzM,EAAEkM,WAAalM,EAAEiM,YApiBpB,GAyiBxB0C,EAAO3O,EAAEqO,YAAcrO,EAAEkM,SACrBlM,EAAE4F,KAAK6G,SAAWkC,GAAQ3O,EAAEiM,aAAejM,EAAEiL,SAE/CjL,EAAEiM,aAAejM,EAAEiL,OACnBjL,EAAEkM,UAAYlM,EAAEiL,OAEhBjL,EAAE4E,OAAOD,IAAI3E,EAAE4E,OAAOC,SAAS7E,EAAEiL,OAAQjL,EAAEiL,OAASjL,EAAEkM,UAAW,GAC7DlM,EAAE6B,QAAU,GACd7B,EAAE6B,UAEJ8M,GAAQ3O,EAAEiL,OACNjL,EAAEsO,OAAStO,EAAEkM,WACflM,EAAEsO,OAAStO,EAAEkM,WAGbyC,EAAO3O,EAAE4F,KAAK6G,WAChBkC,EAAO3O,EAAE4F,KAAK6G,UAEZkC,IACFrC,GAAStM,EAAE4F,KAAM5F,EAAE4E,OAAQ5E,EAAEkM,SAAUyC,GACvC3O,EAAEkM,UAAYyC,EACd3O,EAAEsO,QAAUK,EAAO3O,EAAEiL,OAASjL,EAAEsO,OAAStO,EAAEiL,OAASjL,EAAEsO,OAASK,GAE7D3O,EAAE+O,WAAa/O,EAAEkM,WACnBlM,EAAE+O,WAAa/O,EAAEkM,UAQnByC,EAAQ3O,EAAEM,SAAW,IAAO,EAE5BqO,EAAO3O,EAAE6O,iBAAmBF,EAAO,MAAwB,MAAwB3O,EAAE6O,iBAAmBF,EACxGC,EAAYD,EAAO3O,EAAEiL,OAASjL,EAAEiL,OAAS0D,EACzCD,EAAO1O,EAAEkM,SAAWlM,EAAEiM,aAClByC,GAAQE,IACPF,GAAQD,IAAU9E,IAAe8E,IAAUhF,GACzB,IAApBzJ,EAAE4F,KAAK6G,UAAkBiC,GAAQC,KAClC7Q,EAAM4Q,EAAOC,EAAOA,EAAOD,EAC3BhK,EAAO+J,IAAU9E,GAAkC,IAApB3J,EAAE4F,KAAK6G,UACjC3O,IAAQ4Q,EAAO,EAAI,EACxBpJ,EAAiBtF,EAAGA,EAAEiM,YAAanO,EAAK4G,GACxC1E,EAAEiM,aAAenO,EACjB2N,GAAczL,EAAE4F,OAIXlB,EAzlBiB,EAFA,EA2lBsB,EAW1CsK,GAAe,CAAChP,EAAGyO,KAEvB,IAAIQ,EACAC,EAEJ,OAAS,CAMP,GAAIlP,EAAE+N,UAAYzD,GAAe,CAE/B,GADA2D,GAAYjO,GACRA,EAAE+N,UAAYzD,IAAiBmE,IAAUhF,EAC3C,OApnBkB,EAsnBpB,GAAoB,IAAhBzJ,EAAE+N,UACJ,KAEJ,CAyBA,GApBAkB,EAAY,EACRjP,EAAE+N,WAhpBQ,IAkpBZ/N,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SAlpB1B,EAkpBiD,IAC7D+C,EAAYjP,EAAEoL,KAAKpL,EAAEkM,SAAWlM,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OACrDvO,EAAEmL,KAAKnL,EAAEuO,OAASvO,EAAEkM,UAOJ,IAAd+C,GAA4BjP,EAAEkM,SAAW+C,GAAejP,EAAEiL,OAASX,KAKrEtK,EAAEmP,aAAerC,GAAc9M,EAAGiP,IAGhCjP,EAAEmP,cAnqBQ,EA+qBZ,GAPAD,EAAS1I,EAAUxG,EAAGA,EAAEkM,SAAWlM,EAAEgO,YAAahO,EAAEmP,aAxqBxC,GA0qBZnP,EAAE+N,WAAa/N,EAAEmP,aAKbnP,EAAEmP,cAAgBnP,EAAEoP,gBAAuCpP,EAAE+N,WA/qBrD,EA+qB6E,CACvF/N,EAAEmP,eACF,GACEnP,EAAEkM,WAEFlM,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SAprB9B,EAorBqD,IAC7D+C,EAAYjP,EAAEoL,KAAKpL,EAAEkM,SAAWlM,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OACrDvO,EAAEmL,KAAKnL,EAAEuO,OAASvO,EAAEkM,eAKQ,KAAnBlM,EAAEmP,cACbnP,EAAEkM,UACJ,MAEElM,EAAEkM,UAAYlM,EAAEmP,aAChBnP,EAAEmP,aAAe,EACjBnP,EAAEuO,MAAQvO,EAAE4E,OAAO5E,EAAEkM,UAErBlM,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SAAW,SAanDgD,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,WAEpClM,EAAE+N,YACF/N,EAAEkM,WAEJ,GAAIgD,IAEFlD,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WACT,OAxsBkB,CA4sBxB,CAEA,OADA3L,EAAEsO,OAAWtO,EAAEkM,SAAW,EAAmBlM,EAAEkM,SAAWmD,EACtDZ,IAAU9E,GAEZqC,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,UA/sBW,EACA,GAotBpB3L,EAAE4B,WAEJoK,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WA1tBW,EACA,CA8tBJ,EAQhB2D,GAAe,CAACtP,EAAGyO,KAEvB,IAAIQ,EACAC,EAEAK,EAGJ,OAAS,CAMP,GAAIvP,EAAE+N,UAAYzD,GAAe,CAE/B,GADA2D,GAAYjO,GACRA,EAAE+N,UAAYzD,IAAiBmE,IAAUhF,EAC3C,OAxvBkB,EA0vBpB,GAAoB,IAAhBzJ,EAAE+N,UAAmB,KAC3B,CAyCA,GApCAkB,EAAY,EACRjP,EAAE+N,WAlxBQ,IAoxBZ/N,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SApxB1B,EAoxBiD,IAC7D+C,EAAYjP,EAAEoL,KAAKpL,EAAEkM,SAAWlM,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OACrDvO,EAAEmL,KAAKnL,EAAEuO,OAASvO,EAAEkM,UAMtBlM,EAAEqN,YAAcrN,EAAEmP,aAClBnP,EAAEwP,WAAaxP,EAAEgO,YACjBhO,EAAEmP,aAAeE,EAEC,IAAdJ,GAA0BjP,EAAEqN,YAAcrN,EAAEoP,gBAC5CpP,EAAEkM,SAAW+C,GAAcjP,EAAEiL,OAASX,KAKxCtK,EAAEmP,aAAerC,GAAc9M,EAAGiP,GAG9BjP,EAAEmP,cAAgB,IAClBnP,EAAEkG,WAAa8C,IA1yBP,IA0yBsBhJ,EAAEmP,cAA8BnP,EAAEkM,SAAWlM,EAAEgO,YAAc,QAK7FhO,EAAEmP,aAAeE,IAMjBrP,EAAEqN,aArzBQ,GAqzBoBrN,EAAEmP,cAAgBnP,EAAEqN,YAAa,CACjEkC,EAAavP,EAAEkM,SAAWlM,EAAE+N,UAtzBhB,EA6zBZmB,EAAS1I,EAAUxG,EAAGA,EAAEkM,SAAW,EAAIlM,EAAEwP,WAAYxP,EAAEqN,YA7zB3C,GAm0BZrN,EAAE+N,WAAa/N,EAAEqN,YAAc,EAC/BrN,EAAEqN,aAAe,EACjB,KACQrN,EAAEkM,UAAYqD,IAElBvP,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SAx0B9B,EAw0BqD,IAC7D+C,EAAYjP,EAAEoL,KAAKpL,EAAEkM,SAAWlM,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OACrDvO,EAAEmL,KAAKnL,EAAEuO,OAASvO,EAAEkM,gBAGK,KAAlBlM,EAAEqN,aAKb,GAJArN,EAAEyP,gBAAkB,EACpBzP,EAAEmP,aAAeE,EACjBrP,EAAEkM,WAEEgD,IAEFlD,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WACT,OAr0BgB,CA00BtB,MAAO,GAAI3L,EAAEyP,iBAgBX,GATAP,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,SAAW,IAE3CgD,GAEFlD,GAAiBhM,GAAG,GAGtBA,EAAEkM,WACFlM,EAAE+N,YACuB,IAArB/N,EAAE4F,KAAK+F,UACT,OA31BkB,OAi2BpB3L,EAAEyP,gBAAkB,EACpBzP,EAAEkM,WACFlM,EAAE+N,WAEN,CAUA,OARI/N,EAAEyP,kBAGJP,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,SAAW,IAE/ClM,EAAEyP,gBAAkB,GAEtBzP,EAAEsO,OAAStO,EAAEkM,SAAWmD,EAAgBrP,EAAEkM,SAAWmD,EACjDZ,IAAU9E,GAEZqC,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,UAh3BW,EACA,GAq3BpB3L,EAAE4B,WAEJoK,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WA33BW,EACA,CAg4BJ,EAmKtB,SAAS+D,GAAOC,EAAaC,EAAUC,EAAaC,EAAWC,GAE7D3Q,KAAKuQ,YAAcA,EACnBvQ,KAAKwQ,SAAWA,EAChBxQ,KAAKyQ,YAAcA,EACnBzQ,KAAK0Q,UAAYA,EACjB1Q,KAAK2Q,KAAOA,CACd,CAEA,MAAMC,GAAsB,CAE1B,IAAIN,GAAO,EAAG,EAAG,EAAG,EAAGlB,IACvB,IAAIkB,GAAO,EAAG,EAAG,EAAG,EAAGV,IACvB,IAAIU,GAAO,EAAG,EAAG,GAAI,EAAGV,IACxB,IAAIU,GAAO,EAAG,EAAG,GAAI,GAAIV,IAEzB,IAAIU,GAAO,EAAG,EAAG,GAAI,GAAIJ,IACzB,IAAII,GAAO,EAAG,GAAI,GAAI,GAAIJ,IAC1B,IAAII,GAAO,EAAG,GAAI,IAAK,IAAKJ,IAC5B,IAAII,GAAO,EAAG,GAAI,IAAK,IAAKJ,IAC5B,IAAII,GAAO,GAAI,IAAK,IAAK,KAAMJ,IAC/B,IAAII,GAAO,GAAI,IAAK,IAAK,KAAMJ,KA+BjC,SAASW,KACP7Q,KAAKwG,KAAO,KACZxG,KAAK8Q,OAAS,EACd9Q,KAAKc,YAAc,KACnBd,KAAKyP,iBAAmB,EACxBzP,KAAKyM,YAAc,EACnBzM,KAAKe,QAAU,EACff,KAAKwN,KAAO,EACZxN,KAAK+Q,OAAS,KACd/Q,KAAKgR,QAAU,EACfhR,KAAKiR,OAASjG,GACdhL,KAAKkR,YAAc,EAEnBlR,KAAK6L,OAAS,EACd7L,KAAKmR,OAAS,EACdnR,KAAKsO,OAAS,EAEdtO,KAAKwF,OAAS,KAQdxF,KAAKiP,YAAc,EAKnBjP,KAAKgM,KAAO,KAMZhM,KAAK+L,KAAO,KAEZ/L,KAAKmP,MAAQ,EACbnP,KAAK8L,UAAY,EACjB9L,KAAKoR,UAAY,EACjBpR,KAAKoM,UAAY,EAEjBpM,KAAKmM,WAAa,EAOlBnM,KAAK6M,YAAc,EAKnB7M,KAAK+P,aAAe,EACpB/P,KAAKoQ,WAAa,EAClBpQ,KAAKqQ,gBAAkB,EACvBrQ,KAAK8M,SAAW,EAChB9M,KAAK4O,YAAc,EACnB5O,KAAK2O,UAAY,EAEjB3O,KAAKiO,YAAc,EAKnBjO,KAAK8N,iBAAmB,EAMxB9N,KAAKgQ,eAAiB,EAYtBhQ,KAAKuG,MAAQ,EACbvG,KAAK8G,SAAW,EAEhB9G,KAAK0O,WAAa,EAGlB1O,KAAKkO,WAAa,EAYlBlO,KAAKkC,UAAa,IAAImP,YAAYC,MAClCtR,KAAKmC,UAAa,IAAIkP,YAAY,KAClCrR,KAAKoC,QAAa,IAAIiP,YAAY,IAClC5F,GAAKzL,KAAKkC,WACVuJ,GAAKzL,KAAKmC,WACVsJ,GAAKzL,KAAKoC,SAEVpC,KAAK+F,OAAW,KAChB/F,KAAKgG,OAAW,KAChBhG,KAAKiG,QAAW,KAGhBjG,KAAK2B,SAAW,IAAI0P,YAAYE,IAIhCvR,KAAKmD,KAAO,IAAIkO,YAAY,KAC5B5F,GAAKzL,KAAKmD,MAEVnD,KAAKqD,SAAW,EAChBrD,KAAKiE,SAAW,EAKhBjE,KAAK6C,MAAQ,IAAIwO,YAAY,KAC7B5F,GAAKzL,KAAK6C,OAIV7C,KAAK4D,QAAU,EAEf5D,KAAKwR,YAAc,EAoBnBxR,KAAKwC,SAAW,EAChBxC,KAAKqH,QAAU,EAEfrH,KAAKsC,QAAU,EACftC,KAAKuC,WAAa,EAClBvC,KAAKyC,QAAU,EACfzC,KAAKkP,OAAS,EAGdlP,KAAKmB,OAAS,EAIdnB,KAAKkB,SAAW,CAalB,CAMA,MAAMuQ,GAAqBjL,IAEzB,IAAKA,EACH,OAAO,EAET,MAAM5F,EAAI4F,EAAK8F,MACf,OAAK1L,GAAKA,EAAE4F,OAASA,GAAS5F,EAAEkQ,SAAW3F,IAlyCtB,KAoyCSvK,EAAEkQ,QAlyCX,KAoyCSlQ,EAAEkQ,QAnyCX,KAoyCSlQ,EAAEkQ,QAnyCX,KAoyCSlQ,EAAEkQ,QAnyCZ,MAoyCUlQ,EAAEkQ,QACFlQ,EAAEkQ,SAAW1F,IACbxK,EAAEkQ,SAAWzF,GAClC,EAEF,CAAC,EAIJqG,GAAoBlL,IAExB,GAAIiL,GAAkBjL,GACpB,OAAO8E,GAAI9E,EAAMmE,GAGnBnE,EAAKiH,SAAWjH,EAAKmG,UAAY,EACjCnG,EAAKC,UAAY0D,GAEjB,MAAMvJ,EAAI4F,EAAK8F,MAmBf,OAlBA1L,EAAEG,QAAU,EACZH,EAAE6L,YAAc,EAEZ7L,EAAE4M,KAAO,IACX5M,EAAE4M,MAAQ5M,EAAE4M,MAGd5M,EAAEkQ,OAEW,IAAXlQ,EAAE4M,KAr0CiB,GAu0CnB5M,EAAE4M,KAAOrC,GAAaC,GACxB5E,EAAKkB,MAAoB,IAAX9G,EAAE4M,KACd,EAEA,EACF5M,EAAEsQ,YAAc,EAChBvL,EAAS/E,GACF6J,CAAM,EAITkH,GAAgBnL,IAEpB,MAAMoL,EAAMF,GAAiBlL,GA3Qf,IAAC5F,EA+Qf,OAHIgR,IAAQnH,KA5QG7J,EA6QL4F,EAAK8F,OA3Qb2C,YAAc,EAAIrO,EAAEiL,OAGtBJ,GAAK7K,EAAEmL,MAIPnL,EAAEoP,eAAiBY,GAAoBhQ,EAAE2F,OAAOiK,SAChD5P,EAAE8N,WAAakC,GAAoBhQ,EAAE2F,OAAOgK,YAC5C3P,EAAEsN,WAAa0C,GAAoBhQ,EAAE2F,OAAOkK,YAC5C7P,EAAEkN,iBAAmB8C,GAAoBhQ,EAAE2F,OAAOmK,UAElD9P,EAAEkM,SAAW,EACblM,EAAEiM,YAAc,EAChBjM,EAAE+N,UAAY,EACd/N,EAAEsO,OAAS,EACXtO,EAAEmP,aAAenP,EAAEqN,YAAcgC,EACjCrP,EAAEyP,gBAAkB,EACpBzP,EAAEuO,MAAQ,GA2PHyC,CAAG,EAcNC,GAAe,CAACrL,EAAMD,EAAO0K,EAAQa,EAAYC,EAAUjL,KAE/D,IAAKN,EACH,OAAOmE,EAET,IAAI6C,EAAO,EAiBX,GAfIjH,IAAUuE,KACZvE,EAAQ,GAGNuL,EAAa,GACftE,EAAO,EACPsE,GAAcA,GAGPA,EAAa,KACpBtE,EAAO,EACPsE,GAAc,IAIZC,EAAW,GAAKA,EA15CA,GA05C4Bd,IAAWjG,IACzD8G,EAAa,GAAKA,EAAa,IAAMvL,EAAQ,GAAKA,EAAQ,GAC1DO,EAAW,GAAKA,EAAWiD,IAA2B,IAAf+H,GAA6B,IAATtE,EAC3D,OAAOlC,GAAI9E,EAAMmE,GAIA,IAAfmH,IACFA,EAAa,GAIf,MAAMlR,EAAI,IAAIiQ,GAmFd,OAjFArK,EAAK8F,MAAQ1L,EACbA,EAAE4F,KAAOA,EACT5F,EAAEkQ,OAAS3F,GAEXvK,EAAE4M,KAAOA,EACT5M,EAAEmQ,OAAS,KACXnQ,EAAEuQ,OAASW,EACXlR,EAAEiL,OAAS,GAAKjL,EAAEuQ,OAClBvQ,EAAE0N,OAAS1N,EAAEiL,OAAS,EAEtBjL,EAAEwQ,UAAYW,EAAW,EACzBnR,EAAEkL,UAAY,GAAKlL,EAAEwQ,UACrBxQ,EAAEwL,UAAYxL,EAAEkL,UAAY,EAC5BlL,EAAEuL,eAAiBvL,EAAEwQ,UA/5CL,EA+5C6B,GA/5C7B,GAi6ChBxQ,EAAE4E,OAAS,IAAI3G,WAAsB,EAAX+B,EAAEiL,QAC5BjL,EAAEmL,KAAO,IAAIsF,YAAYzQ,EAAEkL,WAC3BlL,EAAEoL,KAAO,IAAIqF,YAAYzQ,EAAEiL,QAK3BjL,EAAE4Q,YAAc,GAAMO,EAAW,EAyCjCnR,EAAE6O,iBAAmC,EAAhB7O,EAAE4Q,YACvB5Q,EAAEE,YAAc,IAAIjC,WAAW+B,EAAE6O,kBAIjC7O,EAAEgD,QAAUhD,EAAE4Q,YAGd5Q,EAAEyG,QAAgC,GAArBzG,EAAE4Q,YAAc,GAM7B5Q,EAAE2F,MAAQA,EACV3F,EAAEkG,SAAWA,EACblG,EAAEqQ,OAASA,EAEJU,GAAanL,EAAK,EA2c3B,IAoBIwL,GAAc,CACjBC,YA7dmB,CAACzL,EAAMD,IAElBsL,GAAarL,EAAMD,EAAOyE,GA5/Cf,GAEE,EA0/CuDD,IA4d5E8G,aArBoBA,GAsBpBF,aArBoBA,GAsBpBD,iBArBwBA,GAsBxBQ,iBAnmBwB,CAAC1L,EAAMuF,IAE1B0F,GAAkBjL,IAA6B,IAApBA,EAAK8F,MAAMkB,KACjC7C,GAETnE,EAAK8F,MAAMyE,OAAShF,EACbtB,GA8lBR0H,QA3diB,CAAC3L,EAAM6I,KAEvB,GAAIoC,GAAkBjL,IAAS6I,EAAQ7E,GAAa6E,EAAQ,EAC1D,OAAO7I,EAAO8E,GAAI9E,EAAMmE,GAAoBA,EAG9C,MAAM/J,EAAI4F,EAAK8F,MAEf,IAAK9F,EAAKgG,QACa,IAAlBhG,EAAK6G,WAAmB7G,EAAK8G,OAC7B1M,EAAEkQ,SAAWzF,IAAgBgE,IAAU9E,EAC1C,OAAOe,GAAI9E,EAA0B,IAAnBA,EAAK+F,UAAmB1B,GAAgBF,GAG5D,MAAMyH,EAAYxR,EAAEsQ,WAIpB,GAHAtQ,EAAEsQ,WAAa7B,EAGG,IAAdzO,EAAEG,SAEJ,GADAsL,GAAc7F,GACS,IAAnBA,EAAK+F,UAQP,OADA3L,EAAEsQ,YAAc,EACTzG,OAOJ,GAAsB,IAAlBjE,EAAK6G,UAAkBnG,GAAKmI,IAAUnI,GAAKkL,IACpD/C,IAAU9E,EACV,OAAOe,GAAI9E,EAAMqE,IAInB,GAAIjK,EAAEkQ,SAAWzF,IAAkC,IAAlB7E,EAAK6G,SACpC,OAAO/B,GAAI9E,EAAMqE,IAOnB,GAHIjK,EAAEkQ,SAAW3F,IAAyB,IAAXvK,EAAE4M,OAC/B5M,EAAEkQ,OAAS1F,IAETxK,EAAEkQ,SAAW3F,GAAY,CAE3B,IAAIkH,EAAUrH,IAAiBpK,EAAEuQ,OAAS,GAAM,IAAO,EACnDmB,GAAe,EA2BnB,GAxBEA,EADE1R,EAAEkG,UAAY+C,IAAkBjJ,EAAE2F,MAAQ,EAC9B,EACL3F,EAAE2F,MAAQ,EACL,EACO,IAAZ3F,EAAE2F,MACG,EAEA,EAEhB8L,GAAWC,GAAe,EACP,IAAf1R,EAAEkM,WAAkBuF,GAziDR,IA0iDhBA,GAAU,GAAMA,EAAS,GAEzBpF,GAAYrM,EAAGyR,GAGI,IAAfzR,EAAEkM,WACJG,GAAYrM,EAAG4F,EAAKkB,QAAU,IAC9BuF,GAAYrM,EAAgB,MAAb4F,EAAKkB,QAEtBlB,EAAKkB,MAAQ,EACb9G,EAAEkQ,OAAS1F,GAGXiB,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,CAEX,CAEA,GA1jDqB,KA0jDjB7J,EAAEkQ,OAMJ,GAJAtK,EAAKkB,MAAQ,EACbqF,GAASnM,EAAG,IACZmM,GAASnM,EAAG,KACZmM,GAASnM,EAAG,GACPA,EAAEmQ,OAoBLhE,GAASnM,GAAIA,EAAEmQ,OAAOwB,KAAO,EAAI,IACpB3R,EAAEmQ,OAAOyB,KAAO,EAAI,IACnB5R,EAAEmQ,OAAOrN,MAAY,EAAJ,IACjB9C,EAAEmQ,OAAO0B,KAAW,EAAJ,IAChB7R,EAAEmQ,OAAO2B,QAAc,GAAJ,IAEjC3F,GAASnM,EAAmB,IAAhBA,EAAEmQ,OAAO4B,MACrB5F,GAASnM,EAAIA,EAAEmQ,OAAO4B,MAAQ,EAAK,KACnC5F,GAASnM,EAAIA,EAAEmQ,OAAO4B,MAAQ,GAAM,KACpC5F,GAASnM,EAAIA,EAAEmQ,OAAO4B,MAAQ,GAAM,KACpC5F,GAASnM,EAAe,IAAZA,EAAE2F,MAAc,EACf3F,EAAEkG,UAAY+C,IAAkBjJ,EAAE2F,MAAQ,EAC1C,EAAI,GACjBwG,GAASnM,EAAiB,IAAdA,EAAEmQ,OAAO6B,IACjBhS,EAAEmQ,OAAOrN,OAAS9C,EAAEmQ,OAAOrN,MAAM/E,SACnCoO,GAASnM,EAA2B,IAAxBA,EAAEmQ,OAAOrN,MAAM/E,QAC3BoO,GAASnM,EAAIA,EAAEmQ,OAAOrN,MAAM/E,QAAU,EAAK,MAEzCiC,EAAEmQ,OAAOyB,OACXhM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAS,IAE7DH,EAAEoQ,QAAU,EACZpQ,EAAEkQ,OAxmDe,QA4kDjB,GAbA/D,GAASnM,EAAG,GACZmM,GAASnM,EAAG,GACZmM,GAASnM,EAAG,GACZmM,GAASnM,EAAG,GACZmM,GAASnM,EAAG,GACZmM,GAASnM,EAAe,IAAZA,EAAE2F,MAAc,EACf3F,EAAEkG,UAAY+C,IAAkBjJ,EAAE2F,MAAQ,EAC1C,EAAI,GACjBwG,GAASnM,EA3jDC,GA4jDVA,EAAEkQ,OAAS1F,GAGXiB,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EA6Bb,GA3mDqB,KA2mDjB7J,EAAEkQ,OAAwB,CAC5B,GAAIlQ,EAAEmQ,OAAOrN,MAAqB,CAChC,IAAImP,EAAMjS,EAAEG,QACRuO,GAAgC,MAAxB1O,EAAEmQ,OAAOrN,MAAM/E,QAAmBiC,EAAEoQ,QAChD,KAAOpQ,EAAEG,QAAUuO,EAAO1O,EAAE6O,kBAAkB,CAC5C,IAAIqD,EAAOlS,EAAE6O,iBAAmB7O,EAAEG,QAYlC,GATAH,EAAEE,YAAYyE,IAAI3E,EAAEmQ,OAAOrN,MAAM+B,SAAS7E,EAAEoQ,QAASpQ,EAAEoQ,QAAU8B,GAAOlS,EAAEG,SAC1EH,EAAEG,QAAUH,EAAE6O,iBAEV7O,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnEjS,EAAEoQ,SAAW8B,EACbzG,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EAEToI,EAAM,EACNvD,GAAQwD,CACV,CAGA,IAAIC,EAAe,IAAIlU,WAAW+B,EAAEmQ,OAAOrN,OAG3C9C,EAAEE,YAAYyE,IAAIwN,EAAatN,SAAS7E,EAAEoQ,QAASpQ,EAAEoQ,QAAU1B,GAAO1O,EAAEG,SACxEH,EAAEG,SAAWuO,EAET1O,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnEjS,EAAEoQ,QAAU,CACd,CACApQ,EAAEkQ,OAhpDiB,EAipDrB,CACA,GAlpDqB,KAkpDjBlQ,EAAEkQ,OAAuB,CAC3B,GAAIlQ,EAAEmQ,OAAO0B,KAAoB,CAC/B,IACIO,EADAH,EAAMjS,EAAEG,QAEZ,EAAG,CACD,GAAIH,EAAEG,UAAYH,EAAE6O,iBAAkB,CAOpC,GALI7O,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnExG,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EAEToI,EAAM,CACR,CAGEG,EADEpS,EAAEoQ,QAAUpQ,EAAEmQ,OAAO0B,KAAK9T,OACkB,IAAxCiC,EAAEmQ,OAAO0B,KAAKQ,WAAWrS,EAAEoQ,WAE3B,EAERjE,GAASnM,EAAGoS,EACd,OAAiB,IAARA,GAELpS,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnEjS,EAAEoQ,QAAU,CACd,CACApQ,EAAEkQ,OAlrDiB,EAmrDrB,CACA,GAprDqB,KAorDjBlQ,EAAEkQ,OAA0B,CAC9B,GAAIlQ,EAAEmQ,OAAO2B,QAAuB,CAClC,IACIM,EADAH,EAAMjS,EAAEG,QAEZ,EAAG,CACD,GAAIH,EAAEG,UAAYH,EAAE6O,iBAAkB,CAOpC,GALI7O,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnExG,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EAEToI,EAAM,CACR,CAGEG,EADEpS,EAAEoQ,QAAUpQ,EAAEmQ,OAAO2B,QAAQ/T,OACkB,IAA3CiC,EAAEmQ,OAAO2B,QAAQO,WAAWrS,EAAEoQ,WAE9B,EAERjE,GAASnM,EAAGoS,EACd,OAAiB,IAARA,GAELpS,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,GAGrE,CACAjS,EAAEkQ,OAntDgB,GAotDpB,CACA,GArtDoB,MAqtDhBlQ,EAAEkQ,OAAuB,CAC3B,GAAIlQ,EAAEmQ,OAAOyB,KAAM,CACjB,GAAI5R,EAAEG,QAAU,EAAIH,EAAE6O,mBACpBpD,GAAc7F,GACI,IAAd5F,EAAEG,SAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EAGXsC,GAASnM,EAAgB,IAAb4F,EAAKkB,OACjBqF,GAASnM,EAAI4F,EAAKkB,OAAS,EAAK,KAChClB,EAAKkB,MAAQ,CACf,CAKA,GAJA9G,EAAEkQ,OAAS1F,GAGXiB,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,CAEX,CAKA,GAAsB,IAAlBjE,EAAK6G,UAAkC,IAAhBzM,EAAE+N,WAC1BU,IAAUhF,GAAgBzJ,EAAEkQ,SAAWzF,GAAe,CACvD,IAAI6H,EAAqB,IAAZtS,EAAE2F,MAAc6I,GAAexO,EAAGyO,GAClCzO,EAAEkG,WAAa+C,GApwBX,EAACjJ,EAAGyO,KAEvB,IAAIS,EAEJ,OAAS,CAEP,GAAoB,IAAhBlP,EAAE+N,YACJE,GAAYjO,GACQ,IAAhBA,EAAE+N,WAAiB,CACrB,GAAIU,IAAUhF,EACZ,OAp/BgB,EAs/BlB,KACF,CAUF,GANAzJ,EAAEmP,aAAe,EAGjBD,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,WACpClM,EAAE+N,YACF/N,EAAEkM,WACEgD,IAEFlD,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WACT,OArgCkB,CAygCxB,CAEA,OADA3L,EAAEsO,OAAS,EACPG,IAAU9E,GAEZqC,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,UA5gCW,EACA,GAihCpB3L,EAAE4B,WAEJoK,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WAvhCW,EACA,CA2hCJ,EAktB2B4G,CAAavS,EAAGyO,GAChDzO,EAAEkG,WAAagD,GAr2BZ,EAAClJ,EAAGyO,KAEtB,IAAIS,EACA9D,EACA+B,EAAMQ,EAEV,MAAMH,EAAOxN,EAAE4E,OAEf,OAAS,CAKP,GAAI5E,EAAE+N,WAAa1D,GAAW,CAE5B,GADA4D,GAAYjO,GACRA,EAAE+N,WAAa1D,IAAaoE,IAAUhF,EACxC,OA15BkB,EA45BpB,GAAoB,IAAhBzJ,EAAE+N,UAAmB,KAC3B,CAIA,GADA/N,EAAEmP,aAAe,EACbnP,EAAE+N,WAl7BQ,GAk7BkB/N,EAAEkM,SAAW,IAC3CiB,EAAOnN,EAAEkM,SAAW,EACpBd,EAAOoC,EAAKL,GACR/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IAAO,CAC3EQ,EAAS3N,EAAEkM,SAAW7B,GACtB,UAESe,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IACzC/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IACzC/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IACzC/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IACzCA,EAAOQ,GAChB3N,EAAEmP,aAAe9E,IAAasD,EAASR,GACnCnN,EAAEmP,aAAenP,EAAE+N,YACrB/N,EAAEmP,aAAenP,EAAE+N,UAEvB,CAuBF,GAlBI/N,EAAEmP,cAv8BQ,GA28BZD,EAAS1I,EAAUxG,EAAG,EAAGA,EAAEmP,aA38Bf,GA68BZnP,EAAE+N,WAAa/N,EAAEmP,aACjBnP,EAAEkM,UAAYlM,EAAEmP,aAChBnP,EAAEmP,aAAe,IAKjBD,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,WAEpClM,EAAE+N,YACF/N,EAAEkM,YAEAgD,IAEFlD,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WACT,OA58BkB,CAg9BxB,CAEA,OADA3L,EAAEsO,OAAS,EACPG,IAAU9E,GAEZqC,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,UAn9BW,EACA,GAw9BpB3L,EAAE4B,WAEJoK,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WA99BW,EACA,CAk+BJ,EA4wBkB6G,CAAYxS,EAAGyO,GACtCuB,GAAoBhQ,EAAE2F,OAAOoK,KAAK/P,EAAGyO,GAKlD,GAnvDsB,IAgvDlB6D,GA/uDkB,IA+uDcA,IAClCtS,EAAEkQ,OAASzF,IAnvDS,IAqvDlB6H,GAnvDkB,IAmvDSA,EAK7B,OAJuB,IAAnB1M,EAAK+F,YACP3L,EAAEsQ,YAAc,GAGXzG,EAST,GAlwDsB,IAkwDlByI,IACE7D,IAAU3G,EACZpB,EAAU1G,GAEHyO,IAAU7E,IAEjBtE,EAAiBtF,EAAG,EAAG,GAAG,GAItByO,IAAU/E,IAEZmB,GAAK7K,EAAEmL,MAEa,IAAhBnL,EAAE+N,YACJ/N,EAAEkM,SAAW,EACblM,EAAEiM,YAAc,EAChBjM,EAAEsO,OAAS,KAIjB7C,GAAc7F,GACS,IAAnBA,EAAK+F,WAEP,OADA3L,EAAEsQ,YAAc,EACTzG,CAGb,CAEA,OAAI4E,IAAU9E,EAAqBE,EAC/B7J,EAAE4M,MAAQ,EAAY9C,GAGX,IAAX9J,EAAE4M,MACJT,GAASnM,EAAgB,IAAb4F,EAAKkB,OACjBqF,GAASnM,EAAI4F,EAAKkB,OAAS,EAAK,KAChCqF,GAASnM,EAAI4F,EAAKkB,OAAS,GAAM,KACjCqF,GAASnM,EAAI4F,EAAKkB,OAAS,GAAM,KACjCqF,GAASnM,EAAmB,IAAhB4F,EAAKiH,UACjBV,GAASnM,EAAI4F,EAAKiH,UAAY,EAAK,KACnCV,GAASnM,EAAI4F,EAAKiH,UAAY,GAAM,KACpCV,GAASnM,EAAI4F,EAAKiH,UAAY,GAAM,OAIpCR,GAAYrM,EAAG4F,EAAKkB,QAAU,IAC9BuF,GAAYrM,EAAgB,MAAb4F,EAAKkB,QAGtB2E,GAAc7F,GAIV5F,EAAE4M,KAAO,IAAK5M,EAAE4M,MAAQ5M,EAAE4M,MAET,IAAd5M,EAAEG,QAAgB0J,EAASC,EAAc,EA8HjD2I,WA1HmB7M,IAElB,GAAIiL,GAAkBjL,GACpB,OAAOmE,EAGT,MAAMmG,EAAStK,EAAK8F,MAAMwE,OAI1B,OAFAtK,EAAK8F,MAAQ,KAENwE,IAAW1F,GAAaE,GAAI9E,EAAMoE,IAAkBH,CAAM,EAiHlE6I,qBAzG4B,CAAC9M,EAAM+M,KAElC,IAAIC,EAAaD,EAAW5U,OAE5B,GAAI8S,GAAkBjL,GACpB,OAAOmE,EAGT,MAAM/J,EAAI4F,EAAK8F,MACTkB,EAAO5M,EAAE4M,KAEf,GAAa,IAATA,GAAwB,IAATA,GAAc5M,EAAEkQ,SAAW3F,IAAevK,EAAE+N,UAC7D,OAAOhE,EAYT,GARa,IAAT6C,IAEFhH,EAAKkB,MAAQD,EAAUjB,EAAKkB,MAAO6L,EAAYC,EAAY,IAG7D5S,EAAE4M,KAAO,EAGLgG,GAAc5S,EAAEiL,OAAQ,CACb,IAAT2B,IAEF/B,GAAK7K,EAAEmL,MACPnL,EAAEkM,SAAW,EACblM,EAAEiM,YAAc,EAChBjM,EAAEsO,OAAS,GAIb,IAAIuE,EAAU,IAAI5U,WAAW+B,EAAEiL,QAC/B4H,EAAQlO,IAAIgO,EAAW9N,SAAS+N,EAAa5S,EAAEiL,OAAQ2H,GAAa,GACpED,EAAaE,EACbD,EAAa5S,EAAEiL,MACjB,CAEA,MAAM6H,EAAQlN,EAAK6G,SACbsG,EAAOnN,EAAK+G,QACZD,EAAQ9G,EAAK8G,MAKnB,IAJA9G,EAAK6G,SAAWmG,EAChBhN,EAAK+G,QAAU,EACf/G,EAAK8G,MAAQiG,EACb1E,GAAYjO,GACLA,EAAE+N,WAh5DO,GAg5DiB,CAC/B,IAAIK,EAAMpO,EAAEkM,SACR/K,EAAInB,EAAE+N,UAAY,EACtB,GAEE/N,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAOwJ,EAr5DxB,EAq5D0C,IAEtDpO,EAAEoL,KAAKgD,EAAMpO,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OAElCvO,EAAEmL,KAAKnL,EAAEuO,OAASH,EAClBA,YACSjN,GACXnB,EAAEkM,SAAWkC,EACbpO,EAAE+N,UAAYsB,EACdpB,GAAYjO,EACd,CAWA,OAVAA,EAAEkM,UAAYlM,EAAE+N,UAChB/N,EAAEiM,YAAcjM,EAAEkM,SAClBlM,EAAEsO,OAAStO,EAAE+N,UACb/N,EAAE+N,UAAY,EACd/N,EAAEmP,aAAenP,EAAEqN,YAAcgC,EACjCrP,EAAEyP,gBAAkB,EACpB7J,EAAK+G,QAAUoG,EACfnN,EAAK8G,MAAQA,EACb9G,EAAK6G,SAAWqG,EAChB9S,EAAE4M,KAAOA,EACF/C,CAAM,EAiCdmJ,YArBiB,sCAwBlB,MAAMC,GAAO,CAACC,EAAKC,IACVC,OAAOC,UAAUC,eAAeC,KAAKL,EAAKC,GAGnD,IA0CIK,GAAS,CACZC,OA3CY,SAAUP,GACrB,MAAMQ,EAAUpV,MAAM+U,UAAUM,MAAMJ,KAAKK,UAAW,GACtD,KAAOF,EAAQ3V,QAAQ,CACrB,MAAM8V,EAASH,EAAQI,QACvB,GAAKD,EAAL,CAEA,GAAsB,iBAAXA,EACT,MAAM,IAAIE,UAAUF,EAAS,sBAG/B,IAAK,MAAM9I,KAAK8I,EACVZ,GAAKY,EAAQ9I,KACfmI,EAAInI,GAAK8I,EAAO9I,GARK,CAW3B,CAEA,OAAOmI,CACT,EA0BCc,cAtBoBC,IAEnB,IAAInW,EAAM,EAEV,IAAK,IAAI4J,EAAI,EAAGwM,EAAID,EAAOlW,OAAQ2J,EAAIwM,EAAGxM,IACxC5J,GAAOmW,EAAOvM,GAAG3J,OAInB,MAAMoW,EAAS,IAAIlW,WAAWH,GAE9B,IAAK,IAAI4J,EAAI,EAAGX,EAAM,EAAGmN,EAAID,EAAOlW,OAAQ2J,EAAIwM,EAAGxM,IAAK,CACtD,IAAI0M,EAAQH,EAAOvM,GACnByM,EAAOxP,IAAIyP,EAAOrN,GAClBA,GAAOqN,EAAMrW,MACf,CAEA,OAAOoW,CAAM,GAgBf,IAAIE,IAAmB,EAEvB,IAAMC,OAAOC,aAAaC,MAAM,KAAM,IAAIvW,WAAW,GAAK,CAAE,MAAOwW,GAAMJ,IAAmB,CAAO,CAMnG,MAAMK,GAAW,IAAIzW,WAAW,KAChC,IAAK,IAAI0W,EAAI,EAAGA,EAAI,IAAKA,IACvBD,GAASC,GAAMA,GAAK,IAAM,EAAIA,GAAK,IAAM,EAAIA,GAAK,IAAM,EAAIA,GAAK,IAAM,EAAIA,GAAK,IAAM,EAAI,EAE5FD,GAAS,KAAOA,GAAS,KAAO,EAiFhC,IAyEIE,GAAU,CACbC,WAvJiBzG,IAChB,GAA2B,mBAAhB0G,aAA8BA,YAAYzB,UAAU0B,OAC7D,OAAO,IAAID,aAAcC,OAAO3G,GAGlC,IAAIvQ,EAAK4C,EAAGuU,EAAIC,EAAOvN,EAAGwN,EAAU9G,EAAIrQ,OAAQoX,EAAU,EAG1D,IAAKF,EAAQ,EAAGA,EAAQC,EAASD,IAC/BxU,EAAI2N,EAAIiE,WAAW4C,GACE,QAAZ,MAAJxU,IAA2BwU,EAAQ,EAAIC,IAC1CF,EAAK5G,EAAIiE,WAAW4C,EAAQ,GACN,QAAZ,MAALD,KACHvU,EAAI,OAAYA,EAAI,OAAW,KAAOuU,EAAK,OAC3CC,MAGJE,GAAW1U,EAAI,IAAO,EAAIA,EAAI,KAAQ,EAAIA,EAAI,MAAU,EAAI,EAO9D,IAHA5C,EAAM,IAAII,WAAWkX,GAGhBzN,EAAI,EAAGuN,EAAQ,EAAGvN,EAAIyN,EAASF,IAClCxU,EAAI2N,EAAIiE,WAAW4C,GACE,QAAZ,MAAJxU,IAA2BwU,EAAQ,EAAIC,IAC1CF,EAAK5G,EAAIiE,WAAW4C,EAAQ,GACN,QAAZ,MAALD,KACHvU,EAAI,OAAYA,EAAI,OAAW,KAAOuU,EAAK,OAC3CC,MAGAxU,EAAI,IAEN5C,EAAI6J,KAAOjH,EACFA,EAAI,MAEb5C,EAAI6J,KAAO,IAAQjH,IAAM,EACzB5C,EAAI6J,KAAO,IAAY,GAAJjH,GACVA,EAAI,OAEb5C,EAAI6J,KAAO,IAAQjH,IAAM,GACzB5C,EAAI6J,KAAO,IAAQjH,IAAM,EAAI,GAC7B5C,EAAI6J,KAAO,IAAY,GAAJjH,IAGnB5C,EAAI6J,KAAO,IAAQjH,IAAM,GACzB5C,EAAI6J,KAAO,IAAQjH,IAAM,GAAK,GAC9B5C,EAAI6J,KAAO,IAAQjH,IAAM,EAAI,GAC7B5C,EAAI6J,KAAO,IAAY,GAAJjH,GAIvB,OAAO5C,CAAG,EAkGXuX,WA3EgB,CAACvX,EAAKwX,KACrB,MAAMvX,EAAMuX,GAAOxX,EAAIE,OAEvB,GAA2B,mBAAhBuX,aAA8BA,YAAYjC,UAAUkC,OAC7D,OAAO,IAAID,aAAcC,OAAO1X,EAAIgH,SAAS,EAAGwQ,IAGlD,IAAI3N,EAAG8N,EAKP,MAAMC,EAAW,IAAInX,MAAY,EAANR,GAE3B,IAAK0X,EAAM,EAAG9N,EAAI,EAAGA,EAAI5J,GAAM,CAC7B,IAAI2C,EAAI5C,EAAI6J,KAEZ,GAAIjH,EAAI,IAAM,CAAEgV,EAASD,KAAS/U,EAAG,QAAU,CAE/C,IAAIiV,EAAQhB,GAASjU,GAErB,GAAIiV,EAAQ,EAAKD,EAASD,KAAS,MAAQ9N,GAAKgO,EAAQ,MAAxD,CAKA,IAFAjV,GAAe,IAAViV,EAAc,GAAiB,IAAVA,EAAc,GAAO,EAExCA,EAAQ,GAAKhO,EAAI5J,GACtB2C,EAAKA,GAAK,EAAiB,GAAX5C,EAAI6J,KACpBgO,IAIEA,EAAQ,EAAKD,EAASD,KAAS,MAE/B/U,EAAI,MACNgV,EAASD,KAAS/U,GAElBA,GAAK,MACLgV,EAASD,KAAS,MAAW/U,GAAK,GAAM,KACxCgV,EAASD,KAAS,MAAc,KAAJ/U,EAlBuC,CAoBvE,CAEA,MA9DoB,EAAC5C,EAAKC,KAI1B,GAAIA,EAAM,OACJD,EAAIgH,UAAYwP,GAClB,OAAOC,OAAOC,aAAaC,MAAM,KAAM3W,EAAIE,SAAWD,EAAMD,EAAMA,EAAIgH,SAAS,EAAG/G,IAItF,IAAIqW,EAAS,GACb,IAAK,IAAIzM,EAAI,EAAGA,EAAI5J,EAAK4J,IACvByM,GAAUG,OAAOC,aAAa1W,EAAI6J,IAEpC,OAAOyM,CAAM,EAgDNwB,CAAcF,EAAUD,EAAI,EAiCpCI,WAvBgB,CAAC/X,EAAKwX,MAErBA,EAAMA,GAAOxX,EAAIE,QACPF,EAAIE,SAAUsX,EAAMxX,EAAIE,QAGlC,IAAIgJ,EAAMsO,EAAM,EAChB,KAAOtO,GAAO,GAA2B,MAAV,IAAXlJ,EAAIkJ,KAAyBA,IAIjD,OAAIA,EAAM,GAIE,IAARA,EAJkBsO,EAMdtO,EAAM2N,GAAS7W,EAAIkJ,IAAQsO,EAAOtO,EAAMsO,CAAG,GAqDjDQ,GAzBJ,WAEEzW,KAAKsN,MAAQ,KACbtN,KAAKuN,QAAU,EAEfvN,KAAKqN,SAAW,EAEhBrN,KAAKyN,SAAW,EAEhBzN,KAAKwM,OAAS,KACdxM,KAAK0M,SAAW,EAEhB1M,KAAKuM,UAAY,EAEjBvM,KAAK2M,UAAY,EAEjB3M,KAAKwL,IAAM,GAEXxL,KAAKsM,MAAQ,KAEbtM,KAAKyG,UAAY,EAEjBzG,KAAK0H,MAAQ,CACf,EAIA,MAAMgP,GAAa1C,OAAOC,UAAU0C,UAMlClO,WAAYmO,GAAY,aAAEjO,GAAY,aAAEC,GAAcC,SAAUgO,GAChE7N,KAAM8N,GAAQ7N,aAAc8N,GAAc,sBAC1CpN,GAAqB,mBACrBK,GACAI,WAAY4M,IACVxO,EA0FJ,SAASyO,GAAUC,GACjBlX,KAAKkX,QAAU9C,GAAOC,OAAO,CAC3B9N,MAAOoD,GACPsH,OAAQ+F,GACRG,UAAW,MACXrF,WAAY,GACZC,SAAU,EACVjL,SAAUkD,IACTkN,GAAW,CAAC,GAEf,IAAIE,EAAMpX,KAAKkX,QAEXE,EAAIC,KAAQD,EAAItF,WAAa,EAC/BsF,EAAItF,YAAcsF,EAAItF,WAGfsF,EAAIE,MAASF,EAAItF,WAAa,GAAOsF,EAAItF,WAAa,KAC7DsF,EAAItF,YAAc,IAGpB9R,KAAKsL,IAAS,EACdtL,KAAKwL,IAAS,GACdxL,KAAKuX,OAAS,EACdvX,KAAK6U,OAAS,GAEd7U,KAAKwG,KAAO,IAAIiQ,GAChBzW,KAAKwG,KAAK+F,UAAY,EAEtB,IAAIuE,EAASkB,GAAYH,aACvB7R,KAAKwG,KACL4Q,EAAI7Q,MACJ6Q,EAAInG,OACJmG,EAAItF,WACJsF,EAAIrF,SACJqF,EAAItQ,UAGN,GAAIgK,IAAWgG,GACb,MAAM,IAAIU,MAAMjP,EAASuI,IAO3B,GAJIsG,EAAI/E,QACNL,GAAYE,iBAAiBlS,KAAKwG,KAAM4Q,EAAI/E,QAG1C+E,EAAI7D,WAAY,CAClB,IAAIkE,EAaJ,GATEA,EAF4B,iBAAnBL,EAAI7D,WAENiC,GAAQC,WAAW2B,EAAI7D,YACe,yBAApCmD,GAAWvC,KAAKiD,EAAI7D,YACtB,IAAI1U,WAAWuY,EAAI7D,YAEnB6D,EAAI7D,WAGbzC,EAASkB,GAAYsB,qBAAqBtT,KAAKwG,KAAMiR,GAEjD3G,IAAWgG,GACb,MAAM,IAAIU,MAAMjP,EAASuI,IAG3B9Q,KAAK0X,WAAY,CACnB,CACF,CA8JA,SAASC,GAAUrK,EAAO4J,GACxB,MAAMU,EAAW,IAAIX,GAAUC,GAK/B,GAHAU,EAASC,KAAKvK,GAAO,GAGjBsK,EAAStM,IAAO,MAAMsM,EAASpM,KAAOjD,EAASqP,EAAStM,KAE5D,OAAOsM,EAAS7C,MAClB,CA/IAkC,GAAUhD,UAAU4D,KAAO,SAAU3L,EAAM4L,GACzC,MAAMtR,EAAOxG,KAAKwG,KACZ2Q,EAAYnX,KAAKkX,QAAQC,UAC/B,IAAIrG,EAAQiH,EAEZ,GAAI/X,KAAKuX,MAAS,OAAO,EAkBzB,IAhBiCQ,EAA7BD,MAAiBA,EAA0BA,GACb,IAAfA,EAAsBjB,GAAaD,GAGlC,iBAAT1K,EAET1F,EAAK8G,MAAQkI,GAAQC,WAAWvJ,GACG,yBAA1BwK,GAAWvC,KAAKjI,GACzB1F,EAAK8G,MAAQ,IAAIzO,WAAWqN,GAE5B1F,EAAK8G,MAAQpB,EAGf1F,EAAK+G,QAAU,EACf/G,EAAK6G,SAAW7G,EAAK8G,MAAM3O,SAUzB,GAPuB,IAAnB6H,EAAK+F,YACP/F,EAAKgG,OAAS,IAAI3N,WAAWsY,GAC7B3Q,EAAKkG,SAAW,EAChBlG,EAAK+F,UAAY4K,IAIdY,IAAgBpP,IAAgBoP,IAAgBnP,KAAiBpC,EAAK+F,WAAa,EACtFvM,KAAKgY,OAAOxR,EAAKgG,OAAO/G,SAAS,EAAGe,EAAKkG,WACzClG,EAAK+F,UAAY,MAFnB,CASA,GAHAuE,EAASkB,GAAYG,QAAQ3L,EAAMuR,GAG/BjH,IAAWiG,GAOb,OANIvQ,EAAKkG,SAAW,GAClB1M,KAAKgY,OAAOxR,EAAKgG,OAAO/G,SAAS,EAAGe,EAAKkG,WAE3CoE,EAASkB,GAAYqB,WAAWrT,KAAKwG,MACrCxG,KAAKiY,MAAMnH,GACX9Q,KAAKuX,OAAQ,EACNzG,IAAWgG,GAIpB,GAAuB,IAAnBtQ,EAAK+F,WAMT,GAAIwL,EAAc,GAAKvR,EAAKkG,SAAW,EACrC1M,KAAKgY,OAAOxR,EAAKgG,OAAO/G,SAAS,EAAGe,EAAKkG,WACzClG,EAAK+F,UAAY,OAInB,GAAsB,IAAlB/F,EAAK6G,SAAgB,WAXvBrN,KAAKgY,OAAOxR,EAAKgG,OAjBnB,CA+BF,OAAO,CACT,EAUAyK,GAAUhD,UAAU+D,OAAS,SAAUhD,GACrChV,KAAK6U,OAAOgD,KAAK7C,EACnB,EAYAiC,GAAUhD,UAAUgE,MAAQ,SAAUnH,GAEhCA,IAAWgG,KACb9W,KAAK+U,OAASX,GAAOQ,cAAc5U,KAAK6U,SAE1C7U,KAAK6U,OAAS,GACd7U,KAAKsL,IAAMwF,EACX9Q,KAAKwL,IAAMxL,KAAKwG,KAAKgF,GACvB,EA6EA,IAMI0M,GAAc,CACjBC,QAPiBlB,GAQjB9E,QAPewF,GAQfS,WA/BD,SAAsB9K,EAAO4J,GAG3B,OAFAA,EAAUA,GAAW,CAAC,GACdG,KAAM,EACPM,GAAUrK,EAAO4J,EAC1B,EA4BCI,KAjBD,SAAgBhK,EAAO4J,GAGrB,OAFAA,EAAUA,GAAW,CAAC,GACdI,MAAO,EACRK,GAAUrK,EAAO4J,EAC1B,EAcCmB,UAPiB7P,GA8BlB,MAAM8P,GAAQ,MAsCd,IAAIC,GAAU,SAAsB/R,EAAM2G,GACxC,IAAIqL,EACAlT,EACAmT,EACA5F,EACAxK,EAEAqQ,EAEA9M,EACA+M,EACAC,EAEAC,EACAC,EACAhX,EACAiX,EACAC,EACAC,EACAC,EACAC,EACAC,EAEA1a,EACAgC,EACA2Y,EACAC,EAGAhM,EAAOd,EAGX,MAAMF,EAAQ9F,EAAK8F,MAEnBkM,EAAMhS,EAAK+G,QACXD,EAAQ9G,EAAK8G,MACbhI,EAAOkT,GAAOhS,EAAK6G,SAAW,GAC9BoL,EAAOjS,EAAKkG,SACZF,EAAShG,EAAKgG,OACdqG,EAAM4F,GAAQtL,EAAQ3G,EAAK+F,WAC3BlE,EAAMoQ,GAAQjS,EAAK+F,UAAY,KAE/BmM,EAAOpM,EAAMoM,KAEb9M,EAAQU,EAAMV,MACd+M,EAAQrM,EAAMqM,MACdC,EAAQtM,EAAMsM,MACdC,EAAWvM,EAAM9G,OACjBsT,EAAOxM,EAAMwM,KACbhX,EAAOwK,EAAMxK,KACbiX,EAAQzM,EAAMiN,QACdP,EAAQ1M,EAAMkN,SACdP,GAAS,GAAK3M,EAAMmN,SAAW,EAC/BP,GAAS,GAAK5M,EAAMoN,UAAY,EAMhCC,EACA,EAAG,CACG7X,EAAO,KACTgX,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,EACRgX,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,GAGVqX,EAAOJ,EAAMD,EAAOG,GAEpBW,EACA,OAAS,CAKP,GAJAR,EAAKD,IAAS,GACdL,KAAUM,EACVtX,GAAQsX,EACRA,EAAMD,IAAS,GAAM,IACV,IAAPC,EAIF5M,EAAOiM,KAAiB,MAAPU,MAEd,MAAS,GAALC,GAwKJ,IAAU,GAALA,EAIL,IAAS,GAALA,EAAS,CAEhB9M,EAAMuN,KArSC,MAsSP,MAAMF,CACR,CAEEnT,EAAKgF,IAAM,8BACXc,EAAMuN,KAAOvB,GACb,MAAMqB,CACR,CAZER,EAAOJ,GAAc,MAAPI,IAA8BL,GAAS,GAAKM,GAAM,IAChE,SAASQ,CAWX,CA/JE,IArBAlb,EAAa,MAAPya,EACNC,GAAM,GACFA,IACEtX,EAAOsX,IACTN,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,GAEVpD,GAAOoa,GAAS,GAAKM,GAAM,EAC3BN,KAAUM,EACVtX,GAAQsX,GAGNtX,EAAO,KACTgX,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,EACRgX,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,GAEVqX,EAAOH,EAAMF,EAAOI,KAGX,CAMP,GALAE,EAAKD,IAAS,GACdL,KAAUM,EACVtX,GAAQsX,EACRA,EAAMD,IAAS,GAAM,IAEZ,GAALC,EAAJ,CAaE,GAZA1Y,EAAc,MAAPyY,EACPC,GAAM,GACFtX,EAAOsX,IACTN,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,EACJA,EAAOsX,IACTN,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,IAGZpB,GAAQoY,GAAS,GAAKM,GAAM,EAExB1Y,EAAOgY,EAAM,CACflS,EAAKgF,IAAM,gCACXc,EAAMuN,KAAOvB,GACb,MAAMqB,CACR,CAMA,GAJAb,KAAUM,EACVtX,GAAQsX,EAERA,EAAKX,EAAO5F,EACRnS,EAAO0Y,EAAI,CAEb,GADAA,EAAK1Y,EAAO0Y,EACRA,EAAKT,GACHrM,EAAMwN,KAAM,CACdtT,EAAKgF,IAAM,gCACXc,EAAMuN,KAAOvB,GACb,MAAMqB,CACR,CA0BF,GAFAN,EAAO,EACPC,EAAcT,EACA,IAAVD,GAEF,GADAS,GAAQzN,EAAQwN,EACZA,EAAK1a,EAAK,CACZA,GAAO0a,EACP,GACE5M,EAAOiM,KAAUI,EAASQ,aACjBD,GACXC,EAAOZ,EAAO/X,EACd4Y,EAAc9M,CAChB,OAEG,GAAIoM,EAAQQ,GAGf,GAFAC,GAAQzN,EAAQgN,EAAQQ,EACxBA,GAAMR,EACFQ,EAAK1a,EAAK,CACZA,GAAO0a,EACP,GACE5M,EAAOiM,KAAUI,EAASQ,aACjBD,GAEX,GADAC,EAAO,EACHT,EAAQla,EAAK,CACf0a,EAAKR,EACLla,GAAO0a,EACP,GACE5M,EAAOiM,KAAUI,EAASQ,aACjBD,GACXC,EAAOZ,EAAO/X,EACd4Y,EAAc9M,CAChB,CACF,OAIA,GADA6M,GAAQT,EAAQQ,EACZA,EAAK1a,EAAK,CACZA,GAAO0a,EACP,GACE5M,EAAOiM,KAAUI,EAASQ,aACjBD,GACXC,EAAOZ,EAAO/X,EACd4Y,EAAc9M,CAChB,CAEF,KAAO9N,EAAM,GACX8N,EAAOiM,KAAUa,EAAYD,KAC7B7M,EAAOiM,KAAUa,EAAYD,KAC7B7M,EAAOiM,KAAUa,EAAYD,KAC7B3a,GAAO,EAELA,IACF8N,EAAOiM,KAAUa,EAAYD,KACzB3a,EAAM,IACR8N,EAAOiM,KAAUa,EAAYD,MAGnC,KACK,CACHA,EAAOZ,EAAO/X,EACd,GACE8L,EAAOiM,KAAUjM,EAAO6M,KACxB7M,EAAOiM,KAAUjM,EAAO6M,KACxB7M,EAAOiM,KAAUjM,EAAO6M,KACxB3a,GAAO,QACAA,EAAM,GACXA,IACF8N,EAAOiM,KAAUjM,EAAO6M,KACpB3a,EAAM,IACR8N,EAAOiM,KAAUjM,EAAO6M,MAG9B,CAYF,KAFA,CARK,GAAU,GAALD,EAIL,CACH5S,EAAKgF,IAAM,wBACXc,EAAMuN,KAAOvB,GACb,MAAMqB,CACR,CAPER,EAAOH,GAAc,MAAPG,IAA8BL,GAAS,GAAKM,GAAM,GAUpE,CAeF,CAEA,KACF,CACF,OAASZ,EAAMlT,GAAQmT,EAAOpQ,GAG9B3J,EAAMoD,GAAQ,EACd0W,GAAO9Z,EACPoD,GAAQpD,GAAO,EACfoa,IAAS,GAAKhX,GAAQ,EAGtB0E,EAAK+G,QAAUiL,EACfhS,EAAKkG,SAAW+L,EAChBjS,EAAK6G,SAAYmL,EAAMlT,EAAYA,EAAOkT,EAAZ,EAAmB,GAAKA,EAAMlT,GAC5DkB,EAAK+F,UAAakM,EAAOpQ,EAAaA,EAAMoQ,EAAb,IAAqB,KAAOA,EAAOpQ,GAClEiE,EAAMwM,KAAOA,EACbxM,EAAMxK,KAAOA,CAEf,EAqBA,MASMiY,GAAQ,IAAI1I,YAAY,CAC5B,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GACrD,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,EAAG,IAGzD2I,GAAO,IAAInb,WAAW,CAC1B,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAC5D,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,KAGpDob,GAAQ,IAAI5I,YAAY,CAC5B,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,IAAK,IACtD,IAAK,IAAK,IAAK,IAAK,KAAM,KAAM,KAAM,KAAM,KAAM,KAClD,KAAM,MAAO,MAAO,MAAO,EAAG,IAG1B6I,GAAO,IAAIrb,WAAW,CAC1B,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAC5D,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GACpC,GAAI,GAAI,GAAI,GAAI,GAAI,KAkStB,IAAIsb,GA/RkB,CAACC,EAAMC,EAAMC,EAAYC,EAAOvS,EAAOwS,EAAaC,EAAMC,KAE9E,MAAM5Y,EAAO4Y,EAAK5Y,KAGlB,IASI6Y,EACAC,EACAC,EACAC,EACAnH,EAGA/F,EAhBAlP,EAAM,EACNqc,EAAM,EACNC,EAAM,EAAG/E,EAAM,EACfgF,EAAO,EACPC,EAAO,EACPC,EAAO,EACP7L,EAAO,EACPI,EAAO,EACP0L,EAAO,EAMPlX,EAAO,KAGX,MAAMU,EAAQ,IAAIyM,YAAYgK,IACxBC,EAAO,IAAIjK,YAAYgK,IAC7B,IAEIE,EAAWC,EAASC,EAFpB/X,EAAQ,KAoCZ,IAAKhF,EAAM,EAAGA,GA3FA,GA2FgBA,IAC5BkG,EAAMlG,GAAO,EAEf,IAAKqc,EAAM,EAAGA,EAAMR,EAAOQ,IACzBnW,EAAMyV,EAAKC,EAAaS,MAK1B,IADAE,EAAOnZ,EACFmU,EApGS,GAoGMA,GAAO,GACN,IAAfrR,EAAMqR,GADkBA,KAM9B,GAHIgF,EAAOhF,IACTgF,EAAOhF,GAEG,IAARA,EAaF,OATAjO,EAAMwS,KAAiB,SAMvBxS,EAAMwS,KAAiB,SAEvBE,EAAK5Y,KAAO,EACL,EAET,IAAKkZ,EAAM,EAAGA,EAAM/E,GACC,IAAfrR,EAAMoW,GADaA,KASzB,IANIC,EAAOD,IACTC,EAAOD,GAIT1L,EAAO,EACF5Q,EAAM,EAAGA,GAlIA,GAkIgBA,IAG5B,GAFA4Q,IAAS,EACTA,GAAQ1K,EAAMlG,GACV4Q,EAAO,EACT,OAAQ,EAGZ,GAAIA,EAAO,IApIG,IAoIG8K,GAA4B,IAARnE,GACnC,OAAQ,EAKV,IADAqF,EAAK,GAAK,EACL5c,EAAM,EAAGA,EA/IA,GA+IeA,IAC3B4c,EAAK5c,EAAM,GAAK4c,EAAK5c,GAAOkG,EAAMlG,GAIpC,IAAKqc,EAAM,EAAGA,EAAMR,EAAOQ,IACM,IAA3BV,EAAKC,EAAaS,KACpBN,EAAKa,EAAKjB,EAAKC,EAAaS,OAAWA,GAiE3C,GAlNc,IAuLVX,GACFlW,EAAOR,EAAQ+W,EACf7M,EAAQ,IAxLG,IA0LFwM,GACTlW,EAAO6V,GACPrW,EAAQsW,GACRpM,EAAQ,MAGR1J,EAAO+V,GACPvW,EAAQwW,GACRtM,EAAQ,GAIVwN,EAAO,EACPL,EAAM,EACNrc,EAAMsc,EACNrH,EAAO6G,EACPU,EAAOD,EACPE,EAAO,EACPN,GAAO,EACPnL,EAAO,GAAKuL,EACZH,EAAOpL,EAAO,EA9MD,IAiNR0K,GAAmB1K,EAtNJ,KAMN,IAiNX0K,GAAoB1K,EAtNF,IAuNnB,OAAO,EAIT,OAAS,CAEP6L,EAAY7c,EAAMyc,EACdV,EAAKM,GAAO,EAAInN,GAClB4N,EAAU,EACVC,EAAWhB,EAAKM,IAETN,EAAKM,IAAQnN,GACpB4N,EAAU9X,EAAM+W,EAAKM,GAAOnN,GAC5B6N,EAAWvX,EAAKuW,EAAKM,GAAOnN,KAG5B4N,EAAU,GACVC,EAAW,GAIbd,EAAO,GAAMjc,EAAMyc,EACnBP,EAAO,GAAKM,EACZF,EAAMJ,EACN,GACEA,GAAQD,EACR3S,EAAM2L,GAAQyH,GAAQD,GAAQP,GAASW,GAAa,GAAOC,GAAW,GAAMC,QAC5D,IAATb,GAIT,IADAD,EAAO,GAAMjc,EAAM,EACZ0c,EAAOT,GACZA,IAAS,EAWX,GATa,IAATA,GACFS,GAAQT,EAAO,EACfS,GAAQT,GAERS,EAAO,EAITL,IACqB,KAAfnW,EAAMlG,GAAY,CACtB,GAAIA,IAAQuX,EAAO,MACnBvX,EAAM2b,EAAKC,EAAaG,EAAKM,GAC/B,CAGA,GAAIrc,EAAMuc,IAASG,EAAON,KAAUD,EAAK,CAYvC,IAVa,IAATM,IACFA,EAAOF,GAITtH,GAAQqH,EAGRE,EAAOxc,EAAMyc,EACb7L,EAAO,GAAK4L,EACLA,EAAOC,EAAOlF,IACnB3G,GAAQ1K,EAAMsW,EAAOC,KACjB7L,GAAQ,KACZ4L,IACA5L,IAAS,EAKX,GADAI,GAAQ,GAAKwL,EAxRJ,IAyRJd,GAAmB1K,EA9RR,KAMN,IAyRP0K,GAAoB1K,EA9RN,IA+Rf,OAAO,EAITmL,EAAMO,EAAON,EAIb9S,EAAM6S,GAAQI,GAAQ,GAAOC,GAAQ,GAAOvH,EAAO6G,CACrD,CACF,CAeA,OAVa,IAATY,IAIFpT,EAAM2L,EAAOyH,GAAU1c,EAAMyc,GAAS,GAAO,IAAM,IAKrDT,EAAK5Y,KAAOmZ,EACL,CAAC,EA8BV,MAQEpS,SAAU6S,GAAU,QAAE5S,GAAO,QAAEC,GAC/BC,KAAM2S,GAAQ1S,aAAc2S,GAAgB1S,YAAa2S,GAAezS,eAAgB0S,GAAkBzS,aAAc0S,GAAgBzS,YAAa0S,GAAa,YAAEzS,GAAW,WAC/Ka,IACE5B,EAOKyT,GAAO,MAUPC,GAAO,MACHC,GAAO,MACPC,GAAS,MAETC,GAAQ,MAKJC,GAAO,MACPC,GAAM,MAMdC,GAAQ,MAGRC,GAAM,MAiBTC,GAAWnH,IAEJA,IAAM,GAAM,MACbA,IAAM,EAAK,SACP,MAAJA,IAAe,KACX,IAAJA,IAAa,IAIzB,SAASoH,KACP3c,KAAKwG,KAAO,KACZxG,KAAK6Z,KAAO,EACZ7Z,KAAKsF,MAAO,EACZtF,KAAKwN,KAAO,EAEZxN,KAAK4c,UAAW,EAChB5c,KAAK6c,MAAQ,EAEb7c,KAAK0Y,KAAO,EACZ1Y,KAAK8c,MAAQ,EACb9c,KAAK+c,MAAQ,EAEb/c,KAAK+L,KAAO,KAGZ/L,KAAKgd,MAAQ,EACbhd,KAAK4L,MAAQ,EACb5L,KAAK2Y,MAAQ,EACb3Y,KAAK4Y,MAAQ,EACb5Y,KAAKwF,OAAS,KAGdxF,KAAK8Y,KAAO,EACZ9Y,KAAK8B,KAAO,EAGZ9B,KAAKrB,OAAS,EACdqB,KAAKid,OAAS,EAGdjd,KAAK0D,MAAQ,EAGb1D,KAAKuZ,QAAU,KACfvZ,KAAKwZ,SAAW,KAChBxZ,KAAKyZ,QAAU,EACfzZ,KAAK0Z,SAAW,EAGhB1Z,KAAKkd,MAAQ,EACbld,KAAKmd,KAAO,EACZnd,KAAKod,MAAQ,EACbpd,KAAKuP,KAAO,EACZvP,KAAK2T,KAAO,KAEZ3T,KAAKqa,KAAO,IAAIhJ,YAAY,KAC5BrR,KAAKya,KAAO,IAAIpJ,YAAY,KAO5BrR,KAAKqd,OAAS,KACdrd,KAAKsd,QAAU,KACftd,KAAK8Z,KAAO,EACZ9Z,KAAKud,KAAO,EACZvd,KAAKwd,IAAM,CACb,CAGA,MAAMC,GAAqBjX,IAEzB,IAAKA,EACH,OAAO,EAET,MAAM8F,EAAQ9F,EAAK8F,MACnB,OAAKA,GAASA,EAAM9F,OAASA,GAC3B8F,EAAMuN,KAAOoC,IAAQ3P,EAAMuN,KA7Ff,MA8FL,EAEF,CAAC,EAIJ6D,GAAoBlX,IAExB,GAAIiX,GAAkBjX,GAAS,OAAOsV,GACtC,MAAMxP,EAAQ9F,EAAK8F,MAqBnB,OApBA9F,EAAKiH,SAAWjH,EAAKmG,UAAYL,EAAMyQ,MAAQ,EAC/CvW,EAAKgF,IAAM,GACPc,EAAMkB,OACRhH,EAAKkB,MAAqB,EAAb4E,EAAMkB,MAErBlB,EAAMuN,KAAOoC,GACb3P,EAAMhH,KAAO,EACbgH,EAAMsQ,SAAW,EACjBtQ,EAAMuQ,OAAS,EACfvQ,EAAMoM,KAAO,MACbpM,EAAMP,KAAO,KACbO,EAAMwM,KAAO,EACbxM,EAAMxK,KAAO,EAEbwK,EAAMiN,QAAUjN,EAAM+Q,OAAS,IAAIM,WAhHjB,KAiHlBrR,EAAMkN,SAAWlN,EAAMgR,QAAU,IAAIK,WAhHlB,KAkHnBrR,EAAMwN,KAAO,EACbxN,EAAMiR,MAAQ,EAEP5B,EAAM,EAITiC,GAAgBpX,IAEpB,GAAIiX,GAAkBjX,GAAS,OAAOsV,GACtC,MAAMxP,EAAQ9F,EAAK8F,MAInB,OAHAA,EAAMV,MAAQ,EACdU,EAAMqM,MAAQ,EACdrM,EAAMsM,MAAQ,EACP8E,GAAiBlX,EAAK,EAKzBqX,GAAgB,CAACrX,EAAMsL,KAC3B,IAAItE,EAGJ,GAAIiQ,GAAkBjX,GAAS,OAAOsV,GACtC,MAAMxP,EAAQ9F,EAAK8F,MAenB,OAZIwF,EAAa,GACftE,EAAO,EACPsE,GAAcA,IAGdtE,EAA2B,GAAnBsE,GAAc,GAClBA,EAAa,KACfA,GAAc,KAKdA,IAAeA,EAAa,GAAKA,EAAa,IACzCgK,IAEY,OAAjBxP,EAAM9G,QAAmB8G,EAAM0Q,QAAUlL,IAC3CxF,EAAM9G,OAAS,MAIjB8G,EAAMkB,KAAOA,EACblB,EAAM0Q,MAAQlL,EACP8L,GAAapX,GAAK,EAIrBsX,GAAe,CAACtX,EAAMsL,KAE1B,IAAKtL,EAAQ,OAAOsV,GAGpB,MAAMxP,EAAQ,IAAIqQ,GAIlBnW,EAAK8F,MAAQA,EACbA,EAAM9F,KAAOA,EACb8F,EAAM9G,OAAS,KACf8G,EAAMuN,KAAOoC,GACb,MAAMrK,EAAMiM,GAAcrX,EAAMsL,GAIhC,OAHIF,IAAQ+J,KACVnV,EAAK8F,MAAQ,MAERsF,CAAG,EAoBZ,IAEImM,GAAQC,GAFRC,IAAS,EAKb,MAAMC,GAAe5R,IAGnB,GAAI2R,GAAQ,CACVF,GAAS,IAAIJ,WAAW,KACxBK,GAAU,IAAIL,WAAW,IAGzB,IAAI5C,EAAM,EACV,KAAOA,EAAM,KAAOzO,EAAM+N,KAAKU,KAAS,EACxC,KAAOA,EAAM,KAAOzO,EAAM+N,KAAKU,KAAS,EACxC,KAAOA,EAAM,KAAOzO,EAAM+N,KAAKU,KAAS,EACxC,KAAOA,EAAM,KAAOzO,EAAM+N,KAAKU,KAAS,EAMxC,IAJAZ,GAtRS,EAsRO7N,EAAM+N,KAAM,EAAG,IAAK0D,GAAU,EAAGzR,EAAMmO,KAAM,CAAE3Y,KAAM,IAGrEiZ,EAAM,EACCA,EAAM,IAAMzO,EAAM+N,KAAKU,KAAS,EAEvCZ,GA3RU,EA2RM7N,EAAM+N,KAAM,EAAG,GAAM2D,GAAS,EAAG1R,EAAMmO,KAAM,CAAE3Y,KAAM,IAGrEmc,IAAS,CACX,CAEA3R,EAAMiN,QAAUwE,GAChBzR,EAAMmN,QAAU,EAChBnN,EAAMkN,SAAWwE,GACjB1R,EAAMoN,SAAW,CAAC,EAkBdyE,GAAe,CAAC3X,EAAM4X,EAAK/V,EAAKyK,KAEpC,IAAIpS,EACJ,MAAM4L,EAAQ9F,EAAK8F,MAqCnB,OAlCqB,OAAjBA,EAAM9G,SACR8G,EAAMV,MAAQ,GAAKU,EAAM0Q,MACzB1Q,EAAMsM,MAAQ,EACdtM,EAAMqM,MAAQ,EAEdrM,EAAM9G,OAAS,IAAI3G,WAAWyN,EAAMV,QAIlCkH,GAAQxG,EAAMV,OAChBU,EAAM9G,OAAOD,IAAI6Y,EAAI3Y,SAAS4C,EAAMiE,EAAMV,MAAOvD,GAAM,GACvDiE,EAAMsM,MAAQ,EACdtM,EAAMqM,MAAQrM,EAAMV,QAGpBlL,EAAO4L,EAAMV,MAAQU,EAAMsM,MACvBlY,EAAOoS,IACTpS,EAAOoS,GAGTxG,EAAM9G,OAAOD,IAAI6Y,EAAI3Y,SAAS4C,EAAMyK,EAAMzK,EAAMyK,EAAOpS,GAAO4L,EAAMsM,QACpE9F,GAAQpS,IAGN4L,EAAM9G,OAAOD,IAAI6Y,EAAI3Y,SAAS4C,EAAMyK,EAAMzK,GAAM,GAChDiE,EAAMsM,MAAQ9F,EACdxG,EAAMqM,MAAQrM,EAAMV,QAGpBU,EAAMsM,OAASlY,EACX4L,EAAMsM,QAAUtM,EAAMV,QAASU,EAAMsM,MAAQ,GAC7CtM,EAAMqM,MAAQrM,EAAMV,QAASU,EAAMqM,OAASjY,KAG7C,CAAC,EAipCV,IAuBI2d,GAAc,CACjBT,aAxBoBA,GAyBpBC,cAxBqBA,GAyBrBH,iBAxBwBA,GAyBxBY,YAxxCoB9X,GAEZsX,GAAatX,EA3LJ,IAk9CjBsX,aAxBoBA,GAyBpBS,QA1qCiB,CAAC/X,EAAM6I,KAEvB,IAAI/C,EACAgB,EAAOd,EACPmH,EACA6K,EACAjP,EAAMD,EACNwJ,EACAhX,EACA0W,EAAKC,EACL3F,EACAuG,EACAC,EAEAiC,EAAWC,EAASC,EAEpBgD,EAAWC,EAASC,EACpBjgB,EACAkT,EALAuH,EAAO,EAMX,MAAMyF,EAAO,IAAI/f,WAAW,GAC5B,IAAI6b,EAEA3Y,EAEJ,MAAM8c,EACJ,IAAIhgB,WAAW,CAAE,GAAI,GAAI,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,GAAI,EAAG,GAAI,EAAG,GAAI,EAAG,GAAI,EAAG,KAGjF,GAAI4e,GAAkBjX,KAAUA,EAAKgG,SAC/BhG,EAAK8G,OAA2B,IAAlB9G,EAAK6G,SACvB,OAAOyO,GAGTxP,EAAQ9F,EAAK8F,MACTA,EAAMuN,OAASsC,KAAQ7P,EAAMuN,KAAOuC,IAIxCoC,EAAMhY,EAAKkG,SACXF,EAAShG,EAAKgG,OACd8C,EAAO9I,EAAK+F,UACZoH,EAAOnN,EAAK+G,QACZD,EAAQ9G,EAAK8G,MACbiC,EAAO/I,EAAK6G,SACZyL,EAAOxM,EAAMwM,KACbhX,EAAOwK,EAAMxK,KAGb0W,EAAMjJ,EACNkJ,EAAOnJ,EACPsC,EAAM+J,GAENmD,EACA,OACE,OAAQxS,EAAMuN,MACZ,KAAKoC,GACH,GAAmB,IAAf3P,EAAMkB,KAAY,CACpBlB,EAAMuN,KAAOuC,GACb,KACF,CAEA,KAAOta,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA,GAAkB,EAAbwK,EAAMkB,MAAsB,QAATsL,EAAiB,CACnB,IAAhBxM,EAAM0Q,QACR1Q,EAAM0Q,MAAQ,IAEhB1Q,EAAMwQ,MAAQ,EAEd8B,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzBxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,GAI5C9F,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KApaC,MAqaP,KACF,CAIA,GAHIvN,EAAMP,OACRO,EAAMP,KAAKgT,MAAO,KAED,EAAbzS,EAAMkB,UACA,IAAPsL,IAA2B,IAAMA,GAAQ,IAAM,GAAI,CACtDtS,EAAKgF,IAAM,yBACXc,EAAMuN,KAAO4C,GACb,KACF,CACA,IAAY,GAAP3D,KAA4B1O,GAAY,CAC3C5D,EAAKgF,IAAM,6BACXc,EAAMuN,KAAO4C,GACb,KACF,CASA,GAPA3D,KAAU,EACVhX,GAAQ,EAERpD,EAAiC,GAAnB,GAAPoa,GACa,IAAhBxM,EAAM0Q,QACR1Q,EAAM0Q,MAAQte,GAEZA,EAAM,IAAMA,EAAM4N,EAAM0Q,MAAO,CACjCxW,EAAKgF,IAAM,sBACXc,EAAMuN,KAAO4C,GACb,KACF,CAIAnQ,EAAMoM,KAAO,GAAKpM,EAAM0Q,MAGxB1Q,EAAMuQ,MAAQ,EAEdrW,EAAKkB,MAAQ4E,EAAMwQ,MAAQ,EAC3BxQ,EAAMuN,KAAc,IAAPf,EAncH,MAmc2BqD,GAErCrD,EAAO,EACPhX,EAAO,EAEP,MACF,KAjdW,MAmdT,KAAOA,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAGA,GADAwK,EAAMuQ,MAAQ/D,GACK,IAAdxM,EAAMuQ,SAAkBzS,GAAY,CACvC5D,EAAKgF,IAAM,6BACXc,EAAMuN,KAAO4C,GACb,KACF,CACA,GAAkB,MAAdnQ,EAAMuQ,MAAgB,CACxBrW,EAAKgF,IAAM,2BACXc,EAAMuN,KAAO4C,GACb,KACF,CACInQ,EAAMP,OACRO,EAAMP,KAAKwG,KAASuG,GAAQ,EAAK,GAEhB,IAAdxM,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OAEnCoR,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzBxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,IAI9C9F,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KAlfE,MAofV,KApfU,MAsfR,KAAO/X,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEIwK,EAAMP,OACRO,EAAMP,KAAK4G,KAAOmG,GAED,IAAdxM,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OAEnCoR,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzB8F,EAAK,GAAM9F,IAAS,GAAM,IAC1B8F,EAAK,GAAM9F,IAAS,GAAM,IAC1BxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,IAI9C9F,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KA5gBA,MA8gBR,KA9gBQ,MAghBN,KAAO/X,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEIwK,EAAMP,OACRO,EAAMP,KAAKiT,OAAiB,IAAPlG,EACrBxM,EAAMP,KAAK6G,GAAMkG,GAAQ,GAER,IAAdxM,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OAEnCoR,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzBxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,IAI9C9F,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KAriBG,MAuiBX,KAviBW,MAwiBT,GAAkB,KAAdvN,EAAMuQ,MAAgB,CAExB,KAAO/a,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEAwK,EAAM3N,OAASma,EACXxM,EAAMP,OACRO,EAAMP,KAAKkT,UAAYnG,GAEN,IAAdxM,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OAEnCoR,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzBxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,IAI9C9F,EAAO,EACPhX,EAAO,CAET,MACSwK,EAAMP,OACbO,EAAMP,KAAKrI,MAAQ,MAErB4I,EAAMuN,KAnkBG,MAqkBX,KArkBW,MAskBT,GAAkB,KAAdvN,EAAMuQ,QACR/J,EAAOxG,EAAM3N,OACTmU,EAAOvD,IAAQuD,EAAOvD,GACtBuD,IACExG,EAAMP,OACRrN,EAAM4N,EAAMP,KAAKkT,UAAY3S,EAAM3N,OAC9B2N,EAAMP,KAAKrI,QAEd4I,EAAMP,KAAKrI,MAAQ,IAAI7E,WAAWyN,EAAMP,KAAKkT,YAE/C3S,EAAMP,KAAKrI,MAAM6B,IACf+H,EAAM7H,SACJkO,EAGAA,EAAOb,GAGTpU,IAMe,IAAd4N,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OACnClB,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAOxP,EAAOwF,EAAMa,IAElDpE,GAAQuD,EACRa,GAAQb,EACRxG,EAAM3N,QAAUmU,GAEdxG,EAAM3N,QAAU,MAAMmgB,EAE5BxS,EAAM3N,OAAS,EACf2N,EAAMuN,KAvmBE,MAymBV,KAzmBU,MA0mBR,GAAkB,KAAdvN,EAAMuQ,MAAgB,CACxB,GAAa,IAATtN,EAAc,MAAMuP,EACxBhM,EAAO,EACP,GAEEpU,EAAM4O,EAAMqG,EAAOb,KAEfxG,EAAMP,MAAQrN,GACb4N,EAAM3N,OAAS,QAClB2N,EAAMP,KAAK0G,MAAQyC,OAAOC,aAAazW,UAElCA,GAAOoU,EAAOvD,GAOvB,GALmB,IAAdjD,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OACnClB,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAOxP,EAAOwF,EAAMa,IAElDpE,GAAQuD,EACRa,GAAQb,EACJpU,EAAO,MAAMogB,CACnB,MACSxS,EAAMP,OACbO,EAAMP,KAAK0G,KAAO,MAEpBnG,EAAM3N,OAAS,EACf2N,EAAMuN,KAjoBK,MAmoBb,KAnoBa,MAooBX,GAAkB,KAAdvN,EAAMuQ,MAAgB,CACxB,GAAa,IAATtN,EAAc,MAAMuP,EACxBhM,EAAO,EACP,GACEpU,EAAM4O,EAAMqG,EAAOb,KAEfxG,EAAMP,MAAQrN,GACb4N,EAAM3N,OAAS,QAClB2N,EAAMP,KAAK2G,SAAWwC,OAAOC,aAAazW,UAErCA,GAAOoU,EAAOvD,GAMvB,GALmB,IAAdjD,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OACnClB,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAOxP,EAAOwF,EAAMa,IAElDpE,GAAQuD,EACRa,GAAQb,EACJpU,EAAO,MAAMogB,CACnB,MACSxS,EAAMP,OACbO,EAAMP,KAAK2G,QAAU,MAEvBpG,EAAMuN,KAxpBE,MA0pBV,KA1pBU,MA2pBR,GAAkB,IAAdvN,EAAMuQ,MAAgB,CAExB,KAAO/a,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA,GAAkB,EAAbwK,EAAMkB,MAAasL,KAAwB,MAAdxM,EAAMwQ,OAAiB,CACvDtW,EAAKgF,IAAM,sBACXc,EAAMuN,KAAO4C,GACb,KACF,CAEA3D,EAAO,EACPhX,EAAO,CAET,CACIwK,EAAMP,OACRO,EAAMP,KAAKyG,KAASlG,EAAMuQ,OAAS,EAAK,EACxCvQ,EAAMP,KAAKgT,MAAO,GAEpBvY,EAAKkB,MAAQ4E,EAAMwQ,MAAQ,EAC3BxQ,EAAMuN,KAAOsC,GACb,MACF,KAprBY,MAsrBV,KAAOra,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA0E,EAAKkB,MAAQ4E,EAAMwQ,MAAQJ,GAAQ5D,GAEnCA,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KAAOqC,GAEf,KAAKA,GACH,GAAuB,IAAnB5P,EAAMsQ,SASR,OAPApW,EAAKkG,SAAW8R,EAChBhY,EAAK+F,UAAY+C,EACjB9I,EAAK+G,QAAUoG,EACfnN,EAAK6G,SAAWkC,EAChBjD,EAAMwM,KAAOA,EACbxM,EAAMxK,KAAOA,EAEN+Z,GAETrV,EAAKkB,MAAQ4E,EAAMwQ,MAAQ,EAC3BxQ,EAAMuN,KAAOsC,GAEf,KAAKA,GACH,GAAI9M,IAAUvG,IAAWuG,IAAUtG,GAAW,MAAM+V,EAEtD,KAAK1C,GACH,GAAI9P,EAAMhH,KAAM,CAEdwT,KAAiB,EAAPhX,EACVA,GAAe,EAAPA,EAERwK,EAAMuN,KAAO2C,GACb,KACF,CAEA,KAAO1a,EAAO,GAAG,CACf,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAQA,OANAwK,EAAMhH,KAAe,EAAPwT,EAEdA,KAAU,EACVhX,GAAQ,EAGQ,EAAPgX,GACP,KAAK,EAGHxM,EAAMuN,KA7uBI,MA8uBV,MACF,KAAK,EAKH,GAJAqE,GAAY5R,GAGZA,EAAMuN,KAAOyC,GACTjN,IAAUtG,GAAS,CAErB+P,KAAU,EACVhX,GAAQ,EAER,MAAMgd,CACR,CACA,MACF,KAAK,EAGHxS,EAAMuN,KA5vBG,MA6vBT,MACF,KAAK,EACHrT,EAAKgF,IAAM,qBACXc,EAAMuN,KAAO4C,GAGjB3D,KAAU,EACVhX,GAAQ,EAER,MACF,KA1wBgB,MAgxBd,IAJAgX,KAAiB,EAAPhX,EACVA,GAAe,EAAPA,EAGDA,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA,IAAY,MAAPgX,KAAqBA,IAAS,GAAM,OAAS,CAChDtS,EAAKgF,IAAM,+BACXc,EAAMuN,KAAO4C,GACb,KACF,CASA,GARAnQ,EAAM3N,OAAgB,MAAPma,EAIfA,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KAAOwC,GACThN,IAAUtG,GAAW,MAAM+V,EAEjC,KAAKzC,GACH/P,EAAMuN,KAryBM,MAuyBd,KAvyBc,MAyyBZ,GADA/G,EAAOxG,EAAM3N,OACTmU,EAAM,CAGR,GAFIA,EAAOvD,IAAQuD,EAAOvD,GACtBuD,EAAOxD,IAAQwD,EAAOxD,GACb,IAATwD,EAAc,MAAMgM,EAExBtS,EAAOjH,IAAI+H,EAAM7H,SAASkO,EAAMA,EAAOb,GAAO0L,GAE9CjP,GAAQuD,EACRa,GAAQb,EACRxD,GAAQwD,EACR0L,GAAO1L,EACPxG,EAAM3N,QAAUmU,EAChB,KACF,CAEAxG,EAAMuN,KAAOsC,GACb,MACF,KAzzBe,MA2zBb,KAAOra,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAkBA,GAhBAwK,EAAM6Q,KAAkC,KAAnB,GAAPrE,GAEdA,KAAU,EACVhX,GAAQ,EAERwK,EAAM8Q,MAAmC,GAAnB,GAAPtE,GAEfA,KAAU,EACVhX,GAAQ,EAERwK,EAAM4Q,MAAmC,GAAnB,GAAPpE,GAEfA,KAAU,EACVhX,GAAQ,EAGJwK,EAAM6Q,KAAO,KAAO7Q,EAAM8Q,MAAQ,GAAI,CACxC5W,EAAKgF,IAAM,sCACXc,EAAMuN,KAAO4C,GACb,KACF,CAGAnQ,EAAMiD,KAAO,EACbjD,EAAMuN,KAz1BS,MA21BjB,KA31BiB,MA41Bf,KAAOvN,EAAMiD,KAAOjD,EAAM4Q,OAAO,CAE/B,KAAOpb,EAAO,GAAG,CACf,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEAwK,EAAM+N,KAAKwE,EAAMvS,EAAMiD,SAAmB,EAAPuJ,EAEnCA,KAAU,EACVhX,GAAQ,CAEV,CACA,KAAOwK,EAAMiD,KAAO,IAClBjD,EAAM+N,KAAKwE,EAAMvS,EAAMiD,SAAW,EAapC,GAPAjD,EAAMiN,QAAUjN,EAAM+Q,OACtB/Q,EAAMmN,QAAU,EAEhBiB,EAAO,CAAE5Y,KAAMwK,EAAMmN,SACrB7H,EAAMuI,GAz5BA,EAy5BgB7N,EAAM+N,KAAM,EAAG,GAAI/N,EAAMiN,QAAS,EAAGjN,EAAMmO,KAAMC,GACvEpO,EAAMmN,QAAUiB,EAAK5Y,KAEjB8P,EAAK,CACPpL,EAAKgF,IAAM,2BACXc,EAAMuN,KAAO4C,GACb,KACF,CAEAnQ,EAAMiD,KAAO,EACbjD,EAAMuN,KA/3BU,MAi4BlB,KAj4BkB,MAk4BhB,KAAOvN,EAAMiD,KAAOjD,EAAM6Q,KAAO7Q,EAAM8Q,OAAO,CAC5C,KACEjE,EAAO7M,EAAMiN,QAAQT,GAAS,GAAKxM,EAAMmN,SAAW,GACpD8B,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAEP,GAAerX,IANZ,CAQP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CACA,GAAI2Z,EAAW,GAEb3C,KAAUyC,EACVzZ,GAAQyZ,EAERjP,EAAM+N,KAAK/N,EAAMiD,QAAUkM,MAExB,CACH,GAAiB,KAAbA,EAAiB,CAGnB,IADA1Z,EAAIwZ,EAAY,EACTzZ,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAMA,GAHAgX,KAAUyC,EACVzZ,GAAQyZ,EAEW,IAAfjP,EAAMiD,KAAY,CACpB/I,EAAKgF,IAAM,4BACXc,EAAMuN,KAAO4C,GACb,KACF,CACA/d,EAAM4N,EAAM+N,KAAK/N,EAAMiD,KAAO,GAC9BuD,EAAO,GAAY,EAAPgG,GAEZA,KAAU,EACVhX,GAAQ,CAEV,MACK,GAAiB,KAAb2Z,EAAiB,CAGxB,IADA1Z,EAAIwZ,EAAY,EACTzZ,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAGAgX,KAAUyC,EACVzZ,GAAQyZ,EAER7c,EAAM,EACNoU,EAAO,GAAY,EAAPgG,GAEZA,KAAU,EACVhX,GAAQ,CAEV,KACK,CAGH,IADAC,EAAIwZ,EAAY,EACTzZ,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAGAgX,KAAUyC,EACVzZ,GAAQyZ,EAER7c,EAAM,EACNoU,EAAO,IAAa,IAAPgG,GAEbA,KAAU,EACVhX,GAAQ,CAEV,CACA,GAAIwK,EAAMiD,KAAOuD,EAAOxG,EAAM6Q,KAAO7Q,EAAM8Q,MAAO,CAChD5W,EAAKgF,IAAM,4BACXc,EAAMuN,KAAO4C,GACb,KACF,CACA,KAAO3J,KACLxG,EAAM+N,KAAK/N,EAAMiD,QAAU7Q,CAE/B,CACF,CAGA,GAAI4N,EAAMuN,OAAS4C,GAAO,MAG1B,GAAwB,IAApBnQ,EAAM+N,KAAK,KAAY,CACzB7T,EAAKgF,IAAM,uCACXc,EAAMuN,KAAO4C,GACb,KACF,CAcA,GATAnQ,EAAMmN,QAAU,EAEhBiB,EAAO,CAAE5Y,KAAMwK,EAAMmN,SACrB7H,EAAMuI,GA3hCD,EA2hCgB7N,EAAM+N,KAAM,EAAG/N,EAAM6Q,KAAM7Q,EAAMiN,QAAS,EAAGjN,EAAMmO,KAAMC,GAG9EpO,EAAMmN,QAAUiB,EAAK5Y,KAGjB8P,EAAK,CACPpL,EAAKgF,IAAM,8BACXc,EAAMuN,KAAO4C,GACb,KACF,CAaA,GAXAnQ,EAAMoN,SAAW,EAGjBpN,EAAMkN,SAAWlN,EAAMgR,QACvB5C,EAAO,CAAE5Y,KAAMwK,EAAMoN,UACrB9H,EAAMuI,GA3iCA,EA2iCgB7N,EAAM+N,KAAM/N,EAAM6Q,KAAM7Q,EAAM8Q,MAAO9Q,EAAMkN,SAAU,EAAGlN,EAAMmO,KAAMC,GAG1FpO,EAAMoN,SAAWgB,EAAK5Y,KAGlB8P,EAAK,CACPpL,EAAKgF,IAAM,wBACXc,EAAMuN,KAAO4C,GACb,KACF,CAGA,GADAnQ,EAAMuN,KAAOyC,GACTjN,IAAUtG,GAAW,MAAM+V,EAEjC,KAAKxC,GACHhQ,EAAMuN,KAAO0C,GAEf,KAAKA,GACH,GAAIhN,GAAQ,GAAKD,GAAQ,IAAK,CAE5B9I,EAAKkG,SAAW8R,EAChBhY,EAAK+F,UAAY+C,EACjB9I,EAAK+G,QAAUoG,EACfnN,EAAK6G,SAAWkC,EAChBjD,EAAMwM,KAAOA,EACbxM,EAAMxK,KAAOA,EAEbyW,GAAQ/R,EAAMiS,GAEd+F,EAAMhY,EAAKkG,SACXF,EAAShG,EAAKgG,OACd8C,EAAO9I,EAAK+F,UACZoH,EAAOnN,EAAK+G,QACZD,EAAQ9G,EAAK8G,MACbiC,EAAO/I,EAAK6G,SACZyL,EAAOxM,EAAMwM,KACbhX,EAAOwK,EAAMxK,KAGTwK,EAAMuN,OAASsC,KACjB7P,EAAMiR,MAAQ,GAEhB,KACF,CAEA,IADAjR,EAAMiR,KAAO,EAEXpE,EAAO7M,EAAMiN,QAAQT,GAAS,GAAKxM,EAAMmN,SAAW,GACpD8B,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAEPoC,GAAazZ,IANV,CAQP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CACA,GAAI0Z,KAAsB,IAAVA,GAAuB,CAIrC,IAHAiD,EAAYlD,EACZmD,EAAUlD,EACVmD,EAAWlD,EAETtC,EAAO7M,EAAMiN,QAAQoF,IACX7F,GAAS,GAAM2F,EAAYC,GAAY,IAAoCD,IACrFlD,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAENsF,EAAYlD,GAAczZ,IAPxB,CASP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CAEAgX,KAAU2F,EACV3c,GAAQ2c,EAERnS,EAAMiR,MAAQkB,CAChB,CAOA,GALA3F,KAAUyC,EACVzZ,GAAQyZ,EAERjP,EAAMiR,MAAQhC,EACdjP,EAAM3N,OAAS8c,EACC,IAAZD,EAAe,CAIjBlP,EAAMuN,KAjmCO,MAkmCb,KACF,CACA,GAAc,GAAV2B,EAAc,CAEhBlP,EAAMiR,MAAQ,EACdjR,EAAMuN,KAAOsC,GACb,KACF,CACA,GAAc,GAAVX,EAAc,CAChBhV,EAAKgF,IAAM,8BACXc,EAAMuN,KAAO4C,GACb,KACF,CACAnQ,EAAM5I,MAAkB,GAAV8X,EACdlP,EAAMuN,KApnCY,MAsnCpB,KAtnCoB,MAunClB,GAAIvN,EAAM5I,MAAO,CAGf,IADA3B,EAAIuK,EAAM5I,MACH5B,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEAwK,EAAM3N,QAAUma,GAAS,GAAKxM,EAAM5I,OAAS,EAE7CoV,KAAUxM,EAAM5I,MAChB5B,GAAQwK,EAAM5I,MAEd4I,EAAMiR,MAAQjR,EAAM5I,KACtB,CAEA4I,EAAMkR,IAAMlR,EAAM3N,OAClB2N,EAAMuN,KAzoCU,MA2oClB,KA3oCkB,MA4oChB,KACEV,EAAO7M,EAAMkN,SAASV,GAAS,GAAKxM,EAAMoN,UAAY,GACtD6B,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAEP,GAAerX,IANZ,CAQP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CACA,KAAe,IAAV0Z,GAAuB,CAI1B,IAHAiD,EAAYlD,EACZmD,EAAUlD,EACVmD,EAAWlD,EAETtC,EAAO7M,EAAMkN,SAASmF,IACZ7F,GAAS,GAAM2F,EAAYC,GAAY,IAAoCD,IACrFlD,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAENsF,EAAYlD,GAAczZ,IAPxB,CASP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CAEAgX,KAAU2F,EACV3c,GAAQ2c,EAERnS,EAAMiR,MAAQkB,CAChB,CAMA,GAJA3F,KAAUyC,EACVzZ,GAAQyZ,EAERjP,EAAMiR,MAAQhC,EACA,GAAVC,EAAc,CAChBhV,EAAKgF,IAAM,wBACXc,EAAMuN,KAAO4C,GACb,KACF,CACAnQ,EAAM2Q,OAASxB,EACfnP,EAAM5I,MAAoB,GAAZ,EACd4I,EAAMuN,KA9rCa,MAgsCrB,KAhsCqB,MAisCnB,GAAIvN,EAAM5I,MAAO,CAGf,IADA3B,EAAIuK,EAAM5I,MACH5B,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEAwK,EAAM2Q,QAAUnE,GAAS,GAAKxM,EAAM5I,OAAS,EAE7CoV,KAAUxM,EAAM5I,MAChB5B,GAAQwK,EAAM5I,MAEd4I,EAAMiR,MAAQjR,EAAM5I,KACtB,CAEA,GAAI4I,EAAM2Q,OAAS3Q,EAAMoM,KAAM,CAC7BlS,EAAKgF,IAAM,gCACXc,EAAMuN,KAAO4C,GACb,KACF,CAGAnQ,EAAMuN,KAztCW,MA2tCnB,KA3tCmB,MA4tCjB,GAAa,IAATvK,EAAc,MAAMwP,EAExB,GADAhM,EAAO2F,EAAOnJ,EACVhD,EAAM2Q,OAASnK,EAAM,CAEvB,GADAA,EAAOxG,EAAM2Q,OAASnK,EAClBA,EAAOxG,EAAMqM,OACXrM,EAAMwN,KAAM,CACdtT,EAAKgF,IAAM,gCACXc,EAAMuN,KAAO4C,GACb,KACF,CAiBE3J,EAAOxG,EAAMsM,OACf9F,GAAQxG,EAAMsM,MACdS,EAAO/M,EAAMV,MAAQkH,GAGrBuG,EAAO/M,EAAMsM,MAAQ9F,EAEnBA,EAAOxG,EAAM3N,SAAUmU,EAAOxG,EAAM3N,QACxC2a,EAAchN,EAAM9G,MACtB,MAEE8T,EAAc9M,EACd6M,EAAOmF,EAAMlS,EAAM2Q,OACnBnK,EAAOxG,EAAM3N,OAEXmU,EAAOxD,IAAQwD,EAAOxD,GAC1BA,GAAQwD,EACRxG,EAAM3N,QAAUmU,EAChB,GACEtG,EAAOgS,KAASlF,EAAYD,aACnBvG,GACU,IAAjBxG,EAAM3N,SAAgB2N,EAAMuN,KAAO0C,IACvC,MACF,KA5wCiB,MA6wCf,GAAa,IAATjN,EAAc,MAAMwP,EACxBtS,EAAOgS,KAASlS,EAAM3N,OACtB2Q,IACAhD,EAAMuN,KAAO0C,GACb,MACF,KAAKC,GACH,GAAIlQ,EAAMkB,KAAM,CAEd,KAAO1L,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IAEAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAaA,GAXA2W,GAAQnJ,EACR9I,EAAKmG,WAAa8L,EAClBnM,EAAMyQ,OAAStE,EACG,EAAbnM,EAAMkB,MAAaiL,IACtBjS,EAAKkB,MAAQ4E,EAAMwQ,MAEdxQ,EAAMuQ,MAAQ3U,EAAQoE,EAAMwQ,MAAOtQ,EAAQiM,EAAM+F,EAAM/F,GAAQhR,EAAU6E,EAAMwQ,MAAOtQ,EAAQiM,EAAM+F,EAAM/F,IAGjHA,EAAOnJ,EAEW,EAAbhD,EAAMkB,OAAclB,EAAMuQ,MAAQ/D,EAAO4D,GAAQ5D,MAAWxM,EAAMwQ,MAAO,CAC5EtW,EAAKgF,IAAM,uBACXc,EAAMuN,KAAO4C,GACb,KACF,CAEA3D,EAAO,EACPhX,EAAO,CAGT,CACAwK,EAAMuN,KAjzCI,MAmzCZ,KAnzCY,MAozCV,GAAIvN,EAAMkB,MAAQlB,EAAMuQ,MAAO,CAE7B,KAAO/a,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA,GAAkB,EAAbwK,EAAMkB,MAAasL,KAAwB,WAAdxM,EAAMyQ,OAAqB,CAC3DvW,EAAKgF,IAAM,yBACXc,EAAMuN,KAAO4C,GACb,KACF,CAEA3D,EAAO,EACPhX,EAAO,CAGT,CACAwK,EAAMuN,KAv0CE,MAy0CV,KAz0CU,MA00CRjI,EAAMgK,GACN,MAAMkD,EACR,KAAKrC,GACH7K,EAAMmK,GACN,MAAM+C,EACR,KA70CS,MA80CP,OAAO9C,GAGT,QACE,OAAOF,GAyCb,OA3BAtV,EAAKkG,SAAW8R,EAChBhY,EAAK+F,UAAY+C,EACjB9I,EAAK+G,QAAUoG,EACfnN,EAAK6G,SAAWkC,EAChBjD,EAAMwM,KAAOA,EACbxM,EAAMxK,KAAOA,GAGTwK,EAAMV,OAAU6M,IAASjS,EAAK+F,WAAaD,EAAMuN,KAAO4C,KACvCnQ,EAAMuN,KAAO2C,IAASnN,IAAUqM,MAC/CyC,GAAa3X,EAAMA,EAAKgG,OAAQhG,EAAKkG,SAAU+L,EAAOjS,EAAK+F,WAEjEiM,GAAOhS,EAAK6G,SACZoL,GAAQjS,EAAK+F,UACb/F,EAAKiH,UAAY+K,EACjBhS,EAAKmG,WAAa8L,EAClBnM,EAAMyQ,OAAStE,EACG,EAAbnM,EAAMkB,MAAaiL,IACtBjS,EAAKkB,MAAQ4E,EAAMwQ,MAChBxQ,EAAMuQ,MAAQ3U,EAAQoE,EAAMwQ,MAAOtQ,EAAQiM,EAAMjS,EAAKkG,SAAW+L,GAAQhR,EAAU6E,EAAMwQ,MAAOtQ,EAAQiM,EAAMjS,EAAKkG,SAAW+L,IAEnIjS,EAAKC,UAAY6F,EAAMxK,MAAQwK,EAAMhH,KAAO,GAAK,IAC9BgH,EAAMuN,OAASsC,GAAO,IAAM,IAC5B7P,EAAMuN,OAASyC,IAAQhQ,EAAMuN,OAASwC,GAAQ,IAAM,IACzD,IAAR7D,GAAsB,IAATC,GAAepJ,IAAUqM,KAAe9J,IAAQ+J,KACjE/J,EAAMrI,IAEDqI,CAAG,EAoGXsN,WAhGmB1Y,IAElB,GAAIiX,GAAkBjX,GACpB,OAAOsV,GAGT,IAAIxP,EAAQ9F,EAAK8F,MAKjB,OAJIA,EAAM9G,SACR8G,EAAM9G,OAAS,MAEjBgB,EAAK8F,MAAQ,KACNqP,EAAM,EAsFdwD,iBAlFwB,CAAC3Y,EAAMuF,KAG9B,GAAI0R,GAAkBjX,GAAS,OAAOsV,GACtC,MAAMxP,EAAQ9F,EAAK8F,MACnB,OAAkB,EAAbA,EAAMkB,MAGXlB,EAAMP,KAAOA,EACbA,EAAKgT,MAAO,EACLpD,IAL8BG,EAKxB,EAyEdsD,qBArE4B,CAAC5Y,EAAM+M,KAClC,MAAMC,EAAaD,EAAW5U,OAE9B,IAAI2N,EACA+S,EACAzN,EAGJ,OAAI6L,GAAkBjX,GAAgBsV,IACtCxP,EAAQ9F,EAAK8F,MAEM,IAAfA,EAAMkB,MAAclB,EAAMuN,OAASqC,GAC9BJ,GAILxP,EAAMuN,OAASqC,KACjBmD,EAAS,EAETA,EAAS5X,EAAU4X,EAAQ9L,EAAYC,EAAY,GAC/C6L,IAAW/S,EAAMwQ,OACZf,IAKXnK,EAAMuM,GAAa3X,EAAM+M,EAAYC,EAAYA,GAC7C5B,GACFtF,EAAMuN,KAx7CK,MAy7CJmC,KAET1P,EAAMsQ,SAAW,EAEVjB,KAAM,EAqCd2D,YAxBiB,sCAkFdC,GApCJ,WAEEvf,KAAKuS,KAAa,EAElBvS,KAAK2S,KAAa,EAElB3S,KAAKgf,OAAa,EAElBhf,KAAK4S,GAAa,EAElB5S,KAAK0D,MAAa,KAElB1D,KAAKif,UAAa,EAWlBjf,KAAKyS,KAAa,GAIlBzS,KAAK0S,QAAa,GAIlB1S,KAAKwS,KAAa,EAElBxS,KAAK+e,MAAa,CACpB,EAIA,MAAMpI,GAAW3C,OAAOC,UAAU0C,UAK5B,WACJlO,GAAU,SAAEI,GAAQ,KACpBG,GAAI,aAAEC,GAAY,YAAEC,GAAW,eAAEE,GAAc,aAAEC,GAAY,YAAEC,IAC7Dd,EAkFJ,SAASgX,GAAUtI,GACjBlX,KAAKkX,QAAU9C,GAAOC,OAAO,CAC3B8C,UAAW,MACXrF,WAAY,GACZ2N,GAAI,IACHvI,GAAW,CAAC,GAEf,MAAME,EAAMpX,KAAKkX,QAIbE,EAAIC,KAAQD,EAAItF,YAAc,GAAOsF,EAAItF,WAAa,KACxDsF,EAAItF,YAAcsF,EAAItF,WACC,IAAnBsF,EAAItF,aAAoBsF,EAAItF,YAAc,OAI3CsF,EAAItF,YAAc,GAAOsF,EAAItF,WAAa,KACzCoF,GAAWA,EAAQpF,aACvBsF,EAAItF,YAAc,IAKfsF,EAAItF,WAAa,IAAQsF,EAAItF,WAAa,KAGvB,GAAjBsF,EAAItF,aACPsF,EAAItF,YAAc,KAItB9R,KAAKsL,IAAS,EACdtL,KAAKwL,IAAS,GACdxL,KAAKuX,OAAS,EACdvX,KAAK6U,OAAS,GAEd7U,KAAKwG,KAAS,IAAIiQ,GAClBzW,KAAKwG,KAAK+F,UAAY,EAEtB,IAAIuE,EAAUuN,GAAYP,aACxB9d,KAAKwG,KACL4Q,EAAItF,YAGN,GAAIhB,IAAW9H,GACb,MAAM,IAAIwO,MAAMjP,EAASuI,IAQ3B,GALA9Q,KAAKqS,OAAS,IAAIkN,GAElBlB,GAAYc,iBAAiBnf,KAAKwG,KAAMxG,KAAKqS,QAGzC+E,EAAI7D,aAEwB,iBAAnB6D,EAAI7D,WACb6D,EAAI7D,WAAaiC,GAAQC,WAAW2B,EAAI7D,YACG,yBAAlCoD,GAASxC,KAAKiD,EAAI7D,cAC3B6D,EAAI7D,WAAa,IAAI1U,WAAWuY,EAAI7D,aAElC6D,EAAIC,MACNvG,EAASuN,GAAYe,qBAAqBpf,KAAKwG,KAAM4Q,EAAI7D,YACrDzC,IAAW9H,KACb,MAAM,IAAIwO,MAAMjP,EAASuI,GAIjC,CAiNA,SAAS4O,GAAUpS,EAAO4J,GACxB,MAAMyI,EAAW,IAAIH,GAAUtI,GAK/B,GAHAyI,EAAS9H,KAAKvK,GAGVqS,EAASrU,IAAK,MAAMqU,EAASnU,KAAOjD,EAASoX,EAASrU,KAE1D,OAAOqU,EAAS5K,MAClB,CA/LAyK,GAAUvL,UAAU4D,KAAO,SAAU3L,EAAM4L,GACzC,MAAMtR,EAAOxG,KAAKwG,KACZ2Q,EAAYnX,KAAKkX,QAAQC,UACzB5D,EAAavT,KAAKkX,QAAQ3D,WAChC,IAAIzC,EAAQiH,EAAa6H,EAEzB,GAAI5f,KAAKuX,MAAO,OAAO,EAevB,IAbiCQ,EAA7BD,MAAiBA,EAA0BA,GACb,IAAfA,EAAsBjP,GAAWJ,GAGxB,yBAAxBkO,GAASxC,KAAKjI,GAChB1F,EAAK8G,MAAQ,IAAIzO,WAAWqN,GAE5B1F,EAAK8G,MAAQpB,EAGf1F,EAAK+G,QAAU,EACf/G,EAAK6G,SAAW7G,EAAK8G,MAAM3O,SAElB,CAqBP,IApBuB,IAAnB6H,EAAK+F,YACP/F,EAAKgG,OAAS,IAAI3N,WAAWsY,GAC7B3Q,EAAKkG,SAAW,EAChBlG,EAAK+F,UAAY4K,GAGnBrG,EAASuN,GAAYE,QAAQ/X,EAAMuR,GAE/BjH,IAAW5H,IAAeqK,IAC5BzC,EAASuN,GAAYe,qBAAqB5Y,EAAM+M,GAE5CzC,IAAW9H,GACb8H,EAASuN,GAAYE,QAAQ/X,EAAMuR,GAC1BjH,IAAWzH,KAEpByH,EAAS5H,KAKN1C,EAAK6G,SAAW,GAChByD,IAAW7H,IACXzC,EAAK8F,MAAMkB,KAAO,GACK,IAAvBtB,EAAK1F,EAAK+G,UAEf8Q,GAAYT,aAAapX,GACzBsK,EAASuN,GAAYE,QAAQ/X,EAAMuR,GAGrC,OAAQjH,GACN,KAAK1H,GACL,KAAKC,GACL,KAAKH,GACL,KAAKI,GAGH,OAFAtJ,KAAKiY,MAAMnH,GACX9Q,KAAKuX,OAAQ,GACN,EAOX,GAFAqI,EAAiBpZ,EAAK+F,UAElB/F,EAAKkG,WACgB,IAAnBlG,EAAK+F,WAAmBuE,IAAW7H,IAErC,GAAwB,WAApBjJ,KAAKkX,QAAQuI,GAAiB,CAEhC,IAAII,EAAgBrK,GAAQgB,WAAWhQ,EAAKgG,OAAQhG,EAAKkG,UAErDoT,EAAOtZ,EAAKkG,SAAWmT,EACvBE,EAAUvK,GAAQQ,WAAWxP,EAAKgG,OAAQqT,GAG9CrZ,EAAKkG,SAAWoT,EAChBtZ,EAAK+F,UAAY4K,EAAY2I,EACzBA,GAAMtZ,EAAKgG,OAAOjH,IAAIiB,EAAKgG,OAAO/G,SAASoa,EAAeA,EAAgBC,GAAO,GAErF9f,KAAKgY,OAAO+H,EAEd,MACE/f,KAAKgY,OAAOxR,EAAKgG,OAAO7N,SAAW6H,EAAKkG,SAAWlG,EAAKgG,OAAShG,EAAKgG,OAAO/G,SAAS,EAAGe,EAAKkG,WAMpG,GAAIoE,IAAW9H,IAA2B,IAAnB4W,EAAvB,CAGA,GAAI9O,IAAW7H,GAIb,OAHA6H,EAASuN,GAAYa,WAAWlf,KAAKwG,MACrCxG,KAAKiY,MAAMnH,GACX9Q,KAAKuX,OAAQ,GACN,EAGT,GAAsB,IAAlB/Q,EAAK6G,SAAgB,KAV4B,CAWvD,CAEA,OAAO,CACT,EAWAmS,GAAUvL,UAAU+D,OAAS,SAAUhD,GACrChV,KAAK6U,OAAOgD,KAAK7C,EACnB,EAYAwK,GAAUvL,UAAUgE,MAAQ,SAAUnH,GAEhCA,IAAW9H,KACW,WAApBhJ,KAAKkX,QAAQuI,GACfzf,KAAK+U,OAAS/U,KAAK6U,OAAOmL,KAAK,IAE/BhgB,KAAK+U,OAASX,GAAOQ,cAAc5U,KAAK6U,SAG5C7U,KAAK6U,OAAS,GACd7U,KAAKsL,IAAMwF,EACX9Q,KAAKwL,IAAMxL,KAAKwG,KAAKgF,GACvB,EA+EA,IAMIyU,GAAc,CACjBC,QAPiBV,GAQjBjB,QAPemB,GAQfS,WA1BD,SAAsB7S,EAAO4J,GAG3B,OAFAA,EAAUA,GAAW,CAAC,GACdG,KAAM,EACPqI,GAAUpS,EAAO4J,EAC1B,EAuBCkJ,OAPcV,GAQdrH,UAPe7P,GAUhB,MAAM,QAAE2P,GAAO,QAAEhG,GAAO,WAAEiG,GAAU,KAAEd,IAASY,IAEzC,QAAEgI,GAAO,QAAE3B,GAAO,WAAE4B,GAAU,OAAEC,IAAWH,GAIjD,IAKII,GAAY9B,E,gBC3sNhB,SAAS+B,EAAaC,EAAKC,GACzB,IAAI7hB,EAAS4hB,EAAI5hB,OAAS6hB,EACtBvD,EAAS,EACb,EAAG,CACD,IAAK,IAAI3U,EAAIkY,EAAQlY,EAAI,EAAGA,IAC1BiY,EAAItD,EAASuD,IAAWD,EAAItD,GAC5BA,IAGFte,GAAU6hB,CACZ,OAAS7hB,EAAS,EACpB,CAEA,SAAS8hB,EAAuBF,EAAKC,EAAQE,GAC3C,IAAIC,EAAQ,EACR/b,EAAQ2b,EAAI5hB,OAChB,MAAMiiB,EAAKhc,EAAQ8b,EAEnB,KAAO9b,EAAQ4b,GAAQ,CACrB,IAAK,IAAIlY,EAAIkY,EAAQlY,EAAI,IAAKA,EAC5BiY,EAAII,EAAQH,IAAWD,EAAII,KACzBA,EAEJ/b,GAAS4b,CACX,CAEA,MAAM1N,EAAOyN,EAAIhM,QACjB,IAAK,IAAIjM,EAAI,EAAGA,EAAIsY,IAAMtY,EACxB,IAAK,IAAI0E,EAAI,EAAGA,EAAI0T,IAAkB1T,EACpCuT,EAAKG,EAAiBpY,EAAK0E,GAAK8F,GAAO4N,EAAiB1T,EAAI,GAAK4T,EAAMtY,EAG7E,C,iBC9Be,MAAMuY,EACnB,YAAM1K,CAAO2K,EAAeC,GAC1B,MAAMC,QAAgBhhB,KAAKihB,YAAYF,GACjCG,EAAYJ,EAAcK,WAAa,EAC7C,GAAkB,IAAdD,EAAiB,CACnB,MAAME,GAAWN,EAAcO,aAK/B,ODsBC,SAAwBC,EAAOJ,EAAWK,EAAOC,EAAQC,EAC9DC,GACA,IAAKR,GAA2B,IAAdA,EAChB,OAAOI,EAGT,IAAK,IAAIhZ,EAAI,EAAGA,EAAImZ,EAAc9iB,SAAU2J,EAAG,CAC7C,GAAImZ,EAAcnZ,GAAK,GAAM,EAC3B,MAAM,IAAIkP,MAAM,wEAElB,GAAIiK,EAAcnZ,KAAOmZ,EAAc,GACrC,MAAM,IAAIjK,MAAM,qEAEpB,CAEA,MAAMkJ,EAAiBe,EAAc,GAAK,EACpCjB,EAAiC,IAAxBkB,EAA4B,EAAID,EAAc9iB,OAE7D,IAAK,IAAI2J,EAAI,EAAGA,EAAIkZ,KAEdlZ,EAAIkY,EAASe,EAAQb,GAAkBY,EAAMK,cAFrBrZ,EAAG,CAK/B,IAAIiY,EACJ,GAAkB,IAAdW,EAAiB,CACnB,OAAQO,EAAc,IACpB,KAAK,EACHlB,EAAM,IAAI1hB,WACRyiB,EAAOhZ,EAAIkY,EAASe,EAAQb,EAAgBF,EAASe,EAAQb,GAE/D,MACF,KAAK,GACHH,EAAM,IAAIlP,YACRiQ,EAAOhZ,EAAIkY,EAASe,EAAQb,EAAgBF,EAASe,EAAQb,EAAiB,GAEhF,MACF,KAAK,GACHH,EAAM,IAAIxY,YACRuZ,EAAOhZ,EAAIkY,EAASe,EAAQb,EAAgBF,EAASe,EAAQb,EAAiB,GAEhF,MACF,QACE,MAAM,IAAIlJ,MAAM,gCAAgCiK,EAAc,uBAElEnB,EAAaC,EAAKC,EACpB,MAAyB,IAAdU,IACTX,EAAM,IAAI1hB,WACRyiB,EAAOhZ,EAAIkY,EAASe,EAAQb,EAAgBF,EAASe,EAAQb,GAE/DD,EAAuBF,EAAKC,EAAQE,GAExC,CACA,OAAOY,CACT,CC3EaM,CACLZ,EAASE,EALOE,EAAUN,EAAce,UAAYf,EAAcgB,WACjDV,EAAUN,EAAciB,WACzCjB,EAAckB,cAAgBlB,EAAcmB,YAGDnB,EAAcoB,cACzDpB,EAAcqB,oBAElB,CACA,OAAOnB,CACT,E","sources":["webpack://ipyopenlayers/./node_modules/pako/dist/pako.esm.mjs","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/predictor.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/basedecoder.js"],"sourcesContent":["\n/*! pako 2.1.0 https://github.com/nodeca/pako @license (MIT AND Zlib) */\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n/* eslint-disable space-unary-ops */\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\n\n//const Z_FILTERED = 1;\n//const Z_HUFFMAN_ONLY = 2;\n//const Z_RLE = 3;\nconst Z_FIXED$1 = 4;\n//const Z_DEFAULT_STRATEGY = 0;\n\n/* Possible values of the data_type field (though see inflate()) */\nconst Z_BINARY = 0;\nconst Z_TEXT = 1;\n//const Z_ASCII = 1; // = Z_TEXT\nconst Z_UNKNOWN$1 = 2;\n\n/*============================================================================*/\n\n\nfunction zero$1(buf) { let len = buf.length; while (--len >= 0) { buf[len] = 0; } }\n\n// From zutil.h\n\nconst STORED_BLOCK = 0;\nconst STATIC_TREES = 1;\nconst DYN_TREES = 2;\n/* The three kinds of block type */\n\nconst MIN_MATCH$1 = 3;\nconst MAX_MATCH$1 = 258;\n/* The minimum and maximum match lengths */\n\n// From deflate.h\n/* ===========================================================================\n * Internal compression state.\n */\n\nconst LENGTH_CODES$1 = 29;\n/* number of length codes, not counting the special END_BLOCK code */\n\nconst LITERALS$1 = 256;\n/* number of literal bytes 0..255 */\n\nconst L_CODES$1 = LITERALS$1 + 1 + LENGTH_CODES$1;\n/* number of Literal or Length codes, including the END_BLOCK code */\n\nconst D_CODES$1 = 30;\n/* number of distance codes */\n\nconst BL_CODES$1 = 19;\n/* number of codes used to transfer the bit lengths */\n\nconst HEAP_SIZE$1 = 2 * L_CODES$1 + 1;\n/* maximum heap size */\n\nconst MAX_BITS$1 = 15;\n/* All codes must not exceed MAX_BITS bits */\n\nconst Buf_size = 16;\n/* size of bit buffer in bi_buf */\n\n\n/* ===========================================================================\n * Constants\n */\n\nconst MAX_BL_BITS = 7;\n/* Bit length codes must not exceed MAX_BL_BITS bits */\n\nconst END_BLOCK = 256;\n/* end of block literal code */\n\nconst REP_3_6 = 16;\n/* repeat previous bit length 3-6 times (2 bits of repeat count) */\n\nconst REPZ_3_10 = 17;\n/* repeat a zero length 3-10 times (3 bits of repeat count) */\n\nconst REPZ_11_138 = 18;\n/* repeat a zero length 11-138 times (7 bits of repeat count) */\n\n/* eslint-disable comma-spacing,array-bracket-spacing */\nconst extra_lbits = /* extra bits for each length code */\n new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]);\n\nconst extra_dbits = /* extra bits for each distance code */\n new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]);\n\nconst extra_blbits = /* extra bits for each bit length code */\n new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]);\n\nconst bl_order =\n new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);\n/* eslint-enable comma-spacing,array-bracket-spacing */\n\n/* The lengths of the bit length codes are sent in order of decreasing\n * probability, to avoid transmitting the lengths for unused bit length codes.\n */\n\n/* ===========================================================================\n * Local data. These are initialized only once.\n */\n\n// We pre-fill arrays with 0 to avoid uninitialized gaps\n\nconst DIST_CODE_LEN = 512; /* see definition of array dist_code below */\n\n// !!!! Use flat array instead of structure, Freq = i*2, Len = i*2+1\nconst static_ltree = new Array((L_CODES$1 + 2) * 2);\nzero$1(static_ltree);\n/* The static literal tree. Since the bit lengths are imposed, there is no\n * need for the L_CODES extra codes used during heap construction. However\n * The codes 286 and 287 are needed to build a canonical tree (see _tr_init\n * below).\n */\n\nconst static_dtree = new Array(D_CODES$1 * 2);\nzero$1(static_dtree);\n/* The static distance tree. (Actually a trivial tree since all codes use\n * 5 bits.)\n */\n\nconst _dist_code = new Array(DIST_CODE_LEN);\nzero$1(_dist_code);\n/* Distance codes. The first 256 values correspond to the distances\n * 3 .. 258, the last 256 values correspond to the top 8 bits of\n * the 15 bit distances.\n */\n\nconst _length_code = new Array(MAX_MATCH$1 - MIN_MATCH$1 + 1);\nzero$1(_length_code);\n/* length code for each normalized match length (0 == MIN_MATCH) */\n\nconst base_length = new Array(LENGTH_CODES$1);\nzero$1(base_length);\n/* First normalized length for each code (0 = MIN_MATCH) */\n\nconst base_dist = new Array(D_CODES$1);\nzero$1(base_dist);\n/* First normalized distance for each code (0 = distance of 1) */\n\n\nfunction StaticTreeDesc(static_tree, extra_bits, extra_base, elems, max_length) {\n\n this.static_tree = static_tree; /* static tree or NULL */\n this.extra_bits = extra_bits; /* extra bits for each code or NULL */\n this.extra_base = extra_base; /* base index for extra_bits */\n this.elems = elems; /* max number of elements in the tree */\n this.max_length = max_length; /* max bit length for the codes */\n\n // show if `static_tree` has data or dummy - needed for monomorphic objects\n this.has_stree = static_tree && static_tree.length;\n}\n\n\nlet static_l_desc;\nlet static_d_desc;\nlet static_bl_desc;\n\n\nfunction TreeDesc(dyn_tree, stat_desc) {\n this.dyn_tree = dyn_tree; /* the dynamic tree */\n this.max_code = 0; /* largest code with non zero frequency */\n this.stat_desc = stat_desc; /* the corresponding static tree */\n}\n\n\n\nconst d_code = (dist) => {\n\n return dist < 256 ? _dist_code[dist] : _dist_code[256 + (dist >>> 7)];\n};\n\n\n/* ===========================================================================\n * Output a short LSB first on the stream.\n * IN assertion: there is enough room in pendingBuf.\n */\nconst put_short = (s, w) => {\n// put_byte(s, (uch)((w) & 0xff));\n// put_byte(s, (uch)((ush)(w) >> 8));\n s.pending_buf[s.pending++] = (w) & 0xff;\n s.pending_buf[s.pending++] = (w >>> 8) & 0xff;\n};\n\n\n/* ===========================================================================\n * Send a value on a given number of bits.\n * IN assertion: length <= 16 and value fits in length bits.\n */\nconst send_bits = (s, value, length) => {\n\n if (s.bi_valid > (Buf_size - length)) {\n s.bi_buf |= (value << s.bi_valid) & 0xffff;\n put_short(s, s.bi_buf);\n s.bi_buf = value >> (Buf_size - s.bi_valid);\n s.bi_valid += length - Buf_size;\n } else {\n s.bi_buf |= (value << s.bi_valid) & 0xffff;\n s.bi_valid += length;\n }\n};\n\n\nconst send_code = (s, c, tree) => {\n\n send_bits(s, tree[c * 2]/*.Code*/, tree[c * 2 + 1]/*.Len*/);\n};\n\n\n/* ===========================================================================\n * Reverse the first len bits of a code, using straightforward code (a faster\n * method would use a table)\n * IN assertion: 1 <= len <= 15\n */\nconst bi_reverse = (code, len) => {\n\n let res = 0;\n do {\n res |= code & 1;\n code >>>= 1;\n res <<= 1;\n } while (--len > 0);\n return res >>> 1;\n};\n\n\n/* ===========================================================================\n * Flush the bit buffer, keeping at most 7 bits in it.\n */\nconst bi_flush = (s) => {\n\n if (s.bi_valid === 16) {\n put_short(s, s.bi_buf);\n s.bi_buf = 0;\n s.bi_valid = 0;\n\n } else if (s.bi_valid >= 8) {\n s.pending_buf[s.pending++] = s.bi_buf & 0xff;\n s.bi_buf >>= 8;\n s.bi_valid -= 8;\n }\n};\n\n\n/* ===========================================================================\n * Compute the optimal bit lengths for a tree and update the total bit length\n * for the current block.\n * IN assertion: the fields freq and dad are set, heap[heap_max] and\n * above are the tree nodes sorted by increasing frequency.\n * OUT assertions: the field len is set to the optimal bit length, the\n * array bl_count contains the frequencies for each bit length.\n * The length opt_len is updated; static_len is also updated if stree is\n * not null.\n */\nconst gen_bitlen = (s, desc) => {\n// deflate_state *s;\n// tree_desc *desc; /* the tree descriptor */\n\n const tree = desc.dyn_tree;\n const max_code = desc.max_code;\n const stree = desc.stat_desc.static_tree;\n const has_stree = desc.stat_desc.has_stree;\n const extra = desc.stat_desc.extra_bits;\n const base = desc.stat_desc.extra_base;\n const max_length = desc.stat_desc.max_length;\n let h; /* heap index */\n let n, m; /* iterate over the tree elements */\n let bits; /* bit length */\n let xbits; /* extra bits */\n let f; /* frequency */\n let overflow = 0; /* number of elements with bit length too large */\n\n for (bits = 0; bits <= MAX_BITS$1; bits++) {\n s.bl_count[bits] = 0;\n }\n\n /* In a first pass, compute the optimal bit lengths (which may\n * overflow in the case of the bit length tree).\n */\n tree[s.heap[s.heap_max] * 2 + 1]/*.Len*/ = 0; /* root of the heap */\n\n for (h = s.heap_max + 1; h < HEAP_SIZE$1; h++) {\n n = s.heap[h];\n bits = tree[tree[n * 2 + 1]/*.Dad*/ * 2 + 1]/*.Len*/ + 1;\n if (bits > max_length) {\n bits = max_length;\n overflow++;\n }\n tree[n * 2 + 1]/*.Len*/ = bits;\n /* We overwrite tree[n].Dad which is no longer needed */\n\n if (n > max_code) { continue; } /* not a leaf node */\n\n s.bl_count[bits]++;\n xbits = 0;\n if (n >= base) {\n xbits = extra[n - base];\n }\n f = tree[n * 2]/*.Freq*/;\n s.opt_len += f * (bits + xbits);\n if (has_stree) {\n s.static_len += f * (stree[n * 2 + 1]/*.Len*/ + xbits);\n }\n }\n if (overflow === 0) { return; }\n\n // Tracev((stderr,\"\\nbit length overflow\\n\"));\n /* This happens for example on obj2 and pic of the Calgary corpus */\n\n /* Find the first bit length which could increase: */\n do {\n bits = max_length - 1;\n while (s.bl_count[bits] === 0) { bits--; }\n s.bl_count[bits]--; /* move one leaf down the tree */\n s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */\n s.bl_count[max_length]--;\n /* The brother of the overflow item also moves one step up,\n * but this does not affect bl_count[max_length]\n */\n overflow -= 2;\n } while (overflow > 0);\n\n /* Now recompute all bit lengths, scanning in increasing frequency.\n * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all\n * lengths instead of fixing only the wrong ones. This idea is taken\n * from 'ar' written by Haruhiko Okumura.)\n */\n for (bits = max_length; bits !== 0; bits--) {\n n = s.bl_count[bits];\n while (n !== 0) {\n m = s.heap[--h];\n if (m > max_code) { continue; }\n if (tree[m * 2 + 1]/*.Len*/ !== bits) {\n // Tracev((stderr,\"code %d bits %d->%d\\n\", m, tree[m].Len, bits));\n s.opt_len += (bits - tree[m * 2 + 1]/*.Len*/) * tree[m * 2]/*.Freq*/;\n tree[m * 2 + 1]/*.Len*/ = bits;\n }\n n--;\n }\n }\n};\n\n\n/* ===========================================================================\n * Generate the codes for a given tree and bit counts (which need not be\n * optimal).\n * IN assertion: the array bl_count contains the bit length statistics for\n * the given tree and the field len is set for all tree elements.\n * OUT assertion: the field code is set for all tree elements of non\n * zero code length.\n */\nconst gen_codes = (tree, max_code, bl_count) => {\n// ct_data *tree; /* the tree to decorate */\n// int max_code; /* largest code with non zero frequency */\n// ushf *bl_count; /* number of codes at each bit length */\n\n const next_code = new Array(MAX_BITS$1 + 1); /* next code value for each bit length */\n let code = 0; /* running code value */\n let bits; /* bit index */\n let n; /* code index */\n\n /* The distribution counts are first used to generate the code values\n * without bit reversal.\n */\n for (bits = 1; bits <= MAX_BITS$1; bits++) {\n code = (code + bl_count[bits - 1]) << 1;\n next_code[bits] = code;\n }\n /* Check that the bit counts in bl_count are consistent. The last code\n * must be all ones.\n */\n //Assert (code + bl_count[MAX_BITS]-1 == (1< {\n\n let n; /* iterates over tree elements */\n let bits; /* bit counter */\n let length; /* length value */\n let code; /* code value */\n let dist; /* distance index */\n const bl_count = new Array(MAX_BITS$1 + 1);\n /* number of codes at each bit length for an optimal tree */\n\n // do check in _tr_init()\n //if (static_init_done) return;\n\n /* For some embedded targets, global variables are not initialized: */\n/*#ifdef NO_INIT_GLOBAL_POINTERS\n static_l_desc.static_tree = static_ltree;\n static_l_desc.extra_bits = extra_lbits;\n static_d_desc.static_tree = static_dtree;\n static_d_desc.extra_bits = extra_dbits;\n static_bl_desc.extra_bits = extra_blbits;\n#endif*/\n\n /* Initialize the mapping length (0..255) -> length code (0..28) */\n length = 0;\n for (code = 0; code < LENGTH_CODES$1 - 1; code++) {\n base_length[code] = length;\n for (n = 0; n < (1 << extra_lbits[code]); n++) {\n _length_code[length++] = code;\n }\n }\n //Assert (length == 256, \"tr_static_init: length != 256\");\n /* Note that the length 255 (match length 258) can be represented\n * in two different ways: code 284 + 5 bits or code 285, so we\n * overwrite length_code[255] to use the best encoding:\n */\n _length_code[length - 1] = code;\n\n /* Initialize the mapping dist (0..32K) -> dist code (0..29) */\n dist = 0;\n for (code = 0; code < 16; code++) {\n base_dist[code] = dist;\n for (n = 0; n < (1 << extra_dbits[code]); n++) {\n _dist_code[dist++] = code;\n }\n }\n //Assert (dist == 256, \"tr_static_init: dist != 256\");\n dist >>= 7; /* from now on, all distances are divided by 128 */\n for (; code < D_CODES$1; code++) {\n base_dist[code] = dist << 7;\n for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {\n _dist_code[256 + dist++] = code;\n }\n }\n //Assert (dist == 256, \"tr_static_init: 256+dist != 512\");\n\n /* Construct the codes of the static literal tree */\n for (bits = 0; bits <= MAX_BITS$1; bits++) {\n bl_count[bits] = 0;\n }\n\n n = 0;\n while (n <= 143) {\n static_ltree[n * 2 + 1]/*.Len*/ = 8;\n n++;\n bl_count[8]++;\n }\n while (n <= 255) {\n static_ltree[n * 2 + 1]/*.Len*/ = 9;\n n++;\n bl_count[9]++;\n }\n while (n <= 279) {\n static_ltree[n * 2 + 1]/*.Len*/ = 7;\n n++;\n bl_count[7]++;\n }\n while (n <= 287) {\n static_ltree[n * 2 + 1]/*.Len*/ = 8;\n n++;\n bl_count[8]++;\n }\n /* Codes 286 and 287 do not exist, but we must include them in the\n * tree construction to get a canonical Huffman tree (longest code\n * all ones)\n */\n gen_codes(static_ltree, L_CODES$1 + 1, bl_count);\n\n /* The static distance tree is trivial: */\n for (n = 0; n < D_CODES$1; n++) {\n static_dtree[n * 2 + 1]/*.Len*/ = 5;\n static_dtree[n * 2]/*.Code*/ = bi_reverse(n, 5);\n }\n\n // Now data ready and we can init static trees\n static_l_desc = new StaticTreeDesc(static_ltree, extra_lbits, LITERALS$1 + 1, L_CODES$1, MAX_BITS$1);\n static_d_desc = new StaticTreeDesc(static_dtree, extra_dbits, 0, D_CODES$1, MAX_BITS$1);\n static_bl_desc = new StaticTreeDesc(new Array(0), extra_blbits, 0, BL_CODES$1, MAX_BL_BITS);\n\n //static_init_done = true;\n};\n\n\n/* ===========================================================================\n * Initialize a new block.\n */\nconst init_block = (s) => {\n\n let n; /* iterates over tree elements */\n\n /* Initialize the trees. */\n for (n = 0; n < L_CODES$1; n++) { s.dyn_ltree[n * 2]/*.Freq*/ = 0; }\n for (n = 0; n < D_CODES$1; n++) { s.dyn_dtree[n * 2]/*.Freq*/ = 0; }\n for (n = 0; n < BL_CODES$1; n++) { s.bl_tree[n * 2]/*.Freq*/ = 0; }\n\n s.dyn_ltree[END_BLOCK * 2]/*.Freq*/ = 1;\n s.opt_len = s.static_len = 0;\n s.sym_next = s.matches = 0;\n};\n\n\n/* ===========================================================================\n * Flush the bit buffer and align the output on a byte boundary\n */\nconst bi_windup = (s) =>\n{\n if (s.bi_valid > 8) {\n put_short(s, s.bi_buf);\n } else if (s.bi_valid > 0) {\n //put_byte(s, (Byte)s->bi_buf);\n s.pending_buf[s.pending++] = s.bi_buf;\n }\n s.bi_buf = 0;\n s.bi_valid = 0;\n};\n\n/* ===========================================================================\n * Compares to subtrees, using the tree depth as tie breaker when\n * the subtrees have equal frequency. This minimizes the worst case length.\n */\nconst smaller = (tree, n, m, depth) => {\n\n const _n2 = n * 2;\n const _m2 = m * 2;\n return (tree[_n2]/*.Freq*/ < tree[_m2]/*.Freq*/ ||\n (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));\n};\n\n/* ===========================================================================\n * Restore the heap property by moving down the tree starting at node k,\n * exchanging a node with the smallest of its two sons if necessary, stopping\n * when the heap property is re-established (each father smaller than its\n * two sons).\n */\nconst pqdownheap = (s, tree, k) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to restore */\n// int k; /* node to move down */\n\n const v = s.heap[k];\n let j = k << 1; /* left son of k */\n while (j <= s.heap_len) {\n /* Set j to the smallest of the two sons: */\n if (j < s.heap_len &&\n smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) {\n j++;\n }\n /* Exit if v is smaller than both sons */\n if (smaller(tree, v, s.heap[j], s.depth)) { break; }\n\n /* Exchange v with the smallest son */\n s.heap[k] = s.heap[j];\n k = j;\n\n /* And continue down the tree, setting j to the left son of k */\n j <<= 1;\n }\n s.heap[k] = v;\n};\n\n\n// inlined manually\n// const SMALLEST = 1;\n\n/* ===========================================================================\n * Send the block data compressed using the given Huffman trees\n */\nconst compress_block = (s, ltree, dtree) => {\n// deflate_state *s;\n// const ct_data *ltree; /* literal tree */\n// const ct_data *dtree; /* distance tree */\n\n let dist; /* distance of matched string */\n let lc; /* match length or unmatched char (if dist == 0) */\n let sx = 0; /* running index in sym_buf */\n let code; /* the code to send */\n let extra; /* number of extra bits to send */\n\n if (s.sym_next !== 0) {\n do {\n dist = s.pending_buf[s.sym_buf + sx++] & 0xff;\n dist += (s.pending_buf[s.sym_buf + sx++] & 0xff) << 8;\n lc = s.pending_buf[s.sym_buf + sx++];\n if (dist === 0) {\n send_code(s, lc, ltree); /* send a literal byte */\n //Tracecv(isgraph(lc), (stderr,\" '%c' \", lc));\n } else {\n /* Here, lc is the match length - MIN_MATCH */\n code = _length_code[lc];\n send_code(s, code + LITERALS$1 + 1, ltree); /* send the length code */\n extra = extra_lbits[code];\n if (extra !== 0) {\n lc -= base_length[code];\n send_bits(s, lc, extra); /* send the extra length bits */\n }\n dist--; /* dist is now the match distance - 1 */\n code = d_code(dist);\n //Assert (code < D_CODES, \"bad d_code\");\n\n send_code(s, code, dtree); /* send the distance code */\n extra = extra_dbits[code];\n if (extra !== 0) {\n dist -= base_dist[code];\n send_bits(s, dist, extra); /* send the extra distance bits */\n }\n } /* literal or match pair ? */\n\n /* Check that the overlay between pending_buf and sym_buf is ok: */\n //Assert(s->pending < s->lit_bufsize + sx, \"pendingBuf overflow\");\n\n } while (sx < s.sym_next);\n }\n\n send_code(s, END_BLOCK, ltree);\n};\n\n\n/* ===========================================================================\n * Construct one Huffman tree and assigns the code bit strings and lengths.\n * Update the total bit length for the current block.\n * IN assertion: the field freq is set for all tree elements.\n * OUT assertions: the fields len and code are set to the optimal bit length\n * and corresponding code. The length opt_len is updated; static_len is\n * also updated if stree is not null. The field max_code is set.\n */\nconst build_tree = (s, desc) => {\n// deflate_state *s;\n// tree_desc *desc; /* the tree descriptor */\n\n const tree = desc.dyn_tree;\n const stree = desc.stat_desc.static_tree;\n const has_stree = desc.stat_desc.has_stree;\n const elems = desc.stat_desc.elems;\n let n, m; /* iterate over heap elements */\n let max_code = -1; /* largest code with non zero frequency */\n let node; /* new node being created */\n\n /* Construct the initial heap, with least frequent element in\n * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].\n * heap[0] is not used.\n */\n s.heap_len = 0;\n s.heap_max = HEAP_SIZE$1;\n\n for (n = 0; n < elems; n++) {\n if (tree[n * 2]/*.Freq*/ !== 0) {\n s.heap[++s.heap_len] = max_code = n;\n s.depth[n] = 0;\n\n } else {\n tree[n * 2 + 1]/*.Len*/ = 0;\n }\n }\n\n /* The pkzip format requires that at least one distance code exists,\n * and that at least one bit should be sent even if there is only one\n * possible code. So to avoid special checks later on we force at least\n * two codes of non zero frequency.\n */\n while (s.heap_len < 2) {\n node = s.heap[++s.heap_len] = (max_code < 2 ? ++max_code : 0);\n tree[node * 2]/*.Freq*/ = 1;\n s.depth[node] = 0;\n s.opt_len--;\n\n if (has_stree) {\n s.static_len -= stree[node * 2 + 1]/*.Len*/;\n }\n /* node is 0 or 1 so it does not have extra bits */\n }\n desc.max_code = max_code;\n\n /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,\n * establish sub-heaps of increasing lengths:\n */\n for (n = (s.heap_len >> 1/*int /2*/); n >= 1; n--) { pqdownheap(s, tree, n); }\n\n /* Construct the Huffman tree by repeatedly combining the least two\n * frequent nodes.\n */\n node = elems; /* next internal node of the tree */\n do {\n //pqremove(s, tree, n); /* n = node of least frequency */\n /*** pqremove ***/\n n = s.heap[1/*SMALLEST*/];\n s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--];\n pqdownheap(s, tree, 1/*SMALLEST*/);\n /***/\n\n m = s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */\n\n s.heap[--s.heap_max] = n; /* keep the nodes sorted by frequency */\n s.heap[--s.heap_max] = m;\n\n /* Create a new node father of n and m */\n tree[node * 2]/*.Freq*/ = tree[n * 2]/*.Freq*/ + tree[m * 2]/*.Freq*/;\n s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;\n tree[n * 2 + 1]/*.Dad*/ = tree[m * 2 + 1]/*.Dad*/ = node;\n\n /* and insert the new node in the heap */\n s.heap[1/*SMALLEST*/] = node++;\n pqdownheap(s, tree, 1/*SMALLEST*/);\n\n } while (s.heap_len >= 2);\n\n s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/];\n\n /* At this point, the fields freq and dad are set. We can now\n * generate the bit lengths.\n */\n gen_bitlen(s, desc);\n\n /* The field len is now set, we can generate the bit codes */\n gen_codes(tree, max_code, s.bl_count);\n};\n\n\n/* ===========================================================================\n * Scan a literal or distance tree to determine the frequencies of the codes\n * in the bit length tree.\n */\nconst scan_tree = (s, tree, max_code) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to be scanned */\n// int max_code; /* and its largest code of non zero frequency */\n\n let n; /* iterates over all tree elements */\n let prevlen = -1; /* last emitted length */\n let curlen; /* length of current code */\n\n let nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */\n\n let count = 0; /* repeat count of the current code */\n let max_count = 7; /* max repeat count */\n let min_count = 4; /* min repeat count */\n\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n }\n tree[(max_code + 1) * 2 + 1]/*.Len*/ = 0xffff; /* guard */\n\n for (n = 0; n <= max_code; n++) {\n curlen = nextlen;\n nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;\n\n if (++count < max_count && curlen === nextlen) {\n continue;\n\n } else if (count < min_count) {\n s.bl_tree[curlen * 2]/*.Freq*/ += count;\n\n } else if (curlen !== 0) {\n\n if (curlen !== prevlen) { s.bl_tree[curlen * 2]/*.Freq*/++; }\n s.bl_tree[REP_3_6 * 2]/*.Freq*/++;\n\n } else if (count <= 10) {\n s.bl_tree[REPZ_3_10 * 2]/*.Freq*/++;\n\n } else {\n s.bl_tree[REPZ_11_138 * 2]/*.Freq*/++;\n }\n\n count = 0;\n prevlen = curlen;\n\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n\n } else if (curlen === nextlen) {\n max_count = 6;\n min_count = 3;\n\n } else {\n max_count = 7;\n min_count = 4;\n }\n }\n};\n\n\n/* ===========================================================================\n * Send a literal or distance tree in compressed form, using the codes in\n * bl_tree.\n */\nconst send_tree = (s, tree, max_code) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to be scanned */\n// int max_code; /* and its largest code of non zero frequency */\n\n let n; /* iterates over all tree elements */\n let prevlen = -1; /* last emitted length */\n let curlen; /* length of current code */\n\n let nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */\n\n let count = 0; /* repeat count of the current code */\n let max_count = 7; /* max repeat count */\n let min_count = 4; /* min repeat count */\n\n /* tree[max_code+1].Len = -1; */ /* guard already set */\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n }\n\n for (n = 0; n <= max_code; n++) {\n curlen = nextlen;\n nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;\n\n if (++count < max_count && curlen === nextlen) {\n continue;\n\n } else if (count < min_count) {\n do { send_code(s, curlen, s.bl_tree); } while (--count !== 0);\n\n } else if (curlen !== 0) {\n if (curlen !== prevlen) {\n send_code(s, curlen, s.bl_tree);\n count--;\n }\n //Assert(count >= 3 && count <= 6, \" 3_6?\");\n send_code(s, REP_3_6, s.bl_tree);\n send_bits(s, count - 3, 2);\n\n } else if (count <= 10) {\n send_code(s, REPZ_3_10, s.bl_tree);\n send_bits(s, count - 3, 3);\n\n } else {\n send_code(s, REPZ_11_138, s.bl_tree);\n send_bits(s, count - 11, 7);\n }\n\n count = 0;\n prevlen = curlen;\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n\n } else if (curlen === nextlen) {\n max_count = 6;\n min_count = 3;\n\n } else {\n max_count = 7;\n min_count = 4;\n }\n }\n};\n\n\n/* ===========================================================================\n * Construct the Huffman tree for the bit lengths and return the index in\n * bl_order of the last bit length code to send.\n */\nconst build_bl_tree = (s) => {\n\n let max_blindex; /* index of last bit length code of non zero freq */\n\n /* Determine the bit length frequencies for literal and distance trees */\n scan_tree(s, s.dyn_ltree, s.l_desc.max_code);\n scan_tree(s, s.dyn_dtree, s.d_desc.max_code);\n\n /* Build the bit length tree: */\n build_tree(s, s.bl_desc);\n /* opt_len now includes the length of the tree representations, except\n * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.\n */\n\n /* Determine the number of bit length codes to send. The pkzip format\n * requires that at least 4 bit length codes be sent. (appnote.txt says\n * 3 but the actual value used is 4.)\n */\n for (max_blindex = BL_CODES$1 - 1; max_blindex >= 3; max_blindex--) {\n if (s.bl_tree[bl_order[max_blindex] * 2 + 1]/*.Len*/ !== 0) {\n break;\n }\n }\n /* Update opt_len to include the bit length tree and counts */\n s.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;\n //Tracev((stderr, \"\\ndyn trees: dyn %ld, stat %ld\",\n // s->opt_len, s->static_len));\n\n return max_blindex;\n};\n\n\n/* ===========================================================================\n * Send the header for a block using dynamic Huffman trees: the counts, the\n * lengths of the bit length codes, the literal tree and the distance tree.\n * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.\n */\nconst send_all_trees = (s, lcodes, dcodes, blcodes) => {\n// deflate_state *s;\n// int lcodes, dcodes, blcodes; /* number of codes for each tree */\n\n let rank; /* index in bl_order */\n\n //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, \"not enough codes\");\n //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,\n // \"too many codes\");\n //Tracev((stderr, \"\\nbl counts: \"));\n send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */\n send_bits(s, dcodes - 1, 5);\n send_bits(s, blcodes - 4, 4); /* not -3 as stated in appnote.txt */\n for (rank = 0; rank < blcodes; rank++) {\n //Tracev((stderr, \"\\nbl code %2d \", bl_order[rank]));\n send_bits(s, s.bl_tree[bl_order[rank] * 2 + 1]/*.Len*/, 3);\n }\n //Tracev((stderr, \"\\nbl tree: sent %ld\", s->bits_sent));\n\n send_tree(s, s.dyn_ltree, lcodes - 1); /* literal tree */\n //Tracev((stderr, \"\\nlit tree: sent %ld\", s->bits_sent));\n\n send_tree(s, s.dyn_dtree, dcodes - 1); /* distance tree */\n //Tracev((stderr, \"\\ndist tree: sent %ld\", s->bits_sent));\n};\n\n\n/* ===========================================================================\n * Check if the data type is TEXT or BINARY, using the following algorithm:\n * - TEXT if the two conditions below are satisfied:\n * a) There are no non-portable control characters belonging to the\n * \"block list\" (0..6, 14..25, 28..31).\n * b) There is at least one printable character belonging to the\n * \"allow list\" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255).\n * - BINARY otherwise.\n * - The following partially-portable control characters form a\n * \"gray list\" that is ignored in this detection algorithm:\n * (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}).\n * IN assertion: the fields Freq of dyn_ltree are set.\n */\nconst detect_data_type = (s) => {\n /* block_mask is the bit mask of block-listed bytes\n * set bits 0..6, 14..25, and 28..31\n * 0xf3ffc07f = binary 11110011111111111100000001111111\n */\n let block_mask = 0xf3ffc07f;\n let n;\n\n /* Check for non-textual (\"block-listed\") bytes. */\n for (n = 0; n <= 31; n++, block_mask >>>= 1) {\n if ((block_mask & 1) && (s.dyn_ltree[n * 2]/*.Freq*/ !== 0)) {\n return Z_BINARY;\n }\n }\n\n /* Check for textual (\"allow-listed\") bytes. */\n if (s.dyn_ltree[9 * 2]/*.Freq*/ !== 0 || s.dyn_ltree[10 * 2]/*.Freq*/ !== 0 ||\n s.dyn_ltree[13 * 2]/*.Freq*/ !== 0) {\n return Z_TEXT;\n }\n for (n = 32; n < LITERALS$1; n++) {\n if (s.dyn_ltree[n * 2]/*.Freq*/ !== 0) {\n return Z_TEXT;\n }\n }\n\n /* There are no \"block-listed\" or \"allow-listed\" bytes:\n * this stream either is empty or has tolerated (\"gray-listed\") bytes only.\n */\n return Z_BINARY;\n};\n\n\nlet static_init_done = false;\n\n/* ===========================================================================\n * Initialize the tree data structures for a new zlib stream.\n */\nconst _tr_init$1 = (s) =>\n{\n\n if (!static_init_done) {\n tr_static_init();\n static_init_done = true;\n }\n\n s.l_desc = new TreeDesc(s.dyn_ltree, static_l_desc);\n s.d_desc = new TreeDesc(s.dyn_dtree, static_d_desc);\n s.bl_desc = new TreeDesc(s.bl_tree, static_bl_desc);\n\n s.bi_buf = 0;\n s.bi_valid = 0;\n\n /* Initialize the first block of the first file: */\n init_block(s);\n};\n\n\n/* ===========================================================================\n * Send a stored block\n */\nconst _tr_stored_block$1 = (s, buf, stored_len, last) => {\n//DeflateState *s;\n//charf *buf; /* input block */\n//ulg stored_len; /* length of input block */\n//int last; /* one if this is the last block for a file */\n\n send_bits(s, (STORED_BLOCK << 1) + (last ? 1 : 0), 3); /* send block type */\n bi_windup(s); /* align on byte boundary */\n put_short(s, stored_len);\n put_short(s, ~stored_len);\n if (stored_len) {\n s.pending_buf.set(s.window.subarray(buf, buf + stored_len), s.pending);\n }\n s.pending += stored_len;\n};\n\n\n/* ===========================================================================\n * Send one empty static block to give enough lookahead for inflate.\n * This takes 10 bits, of which 7 may remain in the bit buffer.\n */\nconst _tr_align$1 = (s) => {\n send_bits(s, STATIC_TREES << 1, 3);\n send_code(s, END_BLOCK, static_ltree);\n bi_flush(s);\n};\n\n\n/* ===========================================================================\n * Determine the best encoding for the current block: dynamic trees, static\n * trees or store, and write out the encoded block.\n */\nconst _tr_flush_block$1 = (s, buf, stored_len, last) => {\n//DeflateState *s;\n//charf *buf; /* input block, or NULL if too old */\n//ulg stored_len; /* length of input block */\n//int last; /* one if this is the last block for a file */\n\n let opt_lenb, static_lenb; /* opt_len and static_len in bytes */\n let max_blindex = 0; /* index of last bit length code of non zero freq */\n\n /* Build the Huffman trees unless a stored block is forced */\n if (s.level > 0) {\n\n /* Check if the file is binary or text */\n if (s.strm.data_type === Z_UNKNOWN$1) {\n s.strm.data_type = detect_data_type(s);\n }\n\n /* Construct the literal and distance trees */\n build_tree(s, s.l_desc);\n // Tracev((stderr, \"\\nlit data: dyn %ld, stat %ld\", s->opt_len,\n // s->static_len));\n\n build_tree(s, s.d_desc);\n // Tracev((stderr, \"\\ndist data: dyn %ld, stat %ld\", s->opt_len,\n // s->static_len));\n /* At this point, opt_len and static_len are the total bit lengths of\n * the compressed block data, excluding the tree representations.\n */\n\n /* Build the bit length tree for the above two trees, and get the index\n * in bl_order of the last bit length code to send.\n */\n max_blindex = build_bl_tree(s);\n\n /* Determine the best encoding. Compute the block lengths in bytes. */\n opt_lenb = (s.opt_len + 3 + 7) >>> 3;\n static_lenb = (s.static_len + 3 + 7) >>> 3;\n\n // Tracev((stderr, \"\\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u \",\n // opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,\n // s->sym_next / 3));\n\n if (static_lenb <= opt_lenb) { opt_lenb = static_lenb; }\n\n } else {\n // Assert(buf != (char*)0, \"lost buf\");\n opt_lenb = static_lenb = stored_len + 5; /* force a stored block */\n }\n\n if ((stored_len + 4 <= opt_lenb) && (buf !== -1)) {\n /* 4: two words for the lengths */\n\n /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.\n * Otherwise we can't have processed more than WSIZE input bytes since\n * the last block flush, because compression would have been\n * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to\n * transform a block into a stored block.\n */\n _tr_stored_block$1(s, buf, stored_len, last);\n\n } else if (s.strategy === Z_FIXED$1 || static_lenb === opt_lenb) {\n\n send_bits(s, (STATIC_TREES << 1) + (last ? 1 : 0), 3);\n compress_block(s, static_ltree, static_dtree);\n\n } else {\n send_bits(s, (DYN_TREES << 1) + (last ? 1 : 0), 3);\n send_all_trees(s, s.l_desc.max_code + 1, s.d_desc.max_code + 1, max_blindex + 1);\n compress_block(s, s.dyn_ltree, s.dyn_dtree);\n }\n // Assert (s->compressed_len == s->bits_sent, \"bad compressed size\");\n /* The above check is made mod 2^32, for files larger than 512 MB\n * and uLong implemented on 32 bits.\n */\n init_block(s);\n\n if (last) {\n bi_windup(s);\n }\n // Tracev((stderr,\"\\ncomprlen %lu(%lu) \", s->compressed_len>>3,\n // s->compressed_len-7*last));\n};\n\n/* ===========================================================================\n * Save the match info and tally the frequency counts. Return true if\n * the current block must be flushed.\n */\nconst _tr_tally$1 = (s, dist, lc) => {\n// deflate_state *s;\n// unsigned dist; /* distance of matched string */\n// unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */\n\n s.pending_buf[s.sym_buf + s.sym_next++] = dist;\n s.pending_buf[s.sym_buf + s.sym_next++] = dist >> 8;\n s.pending_buf[s.sym_buf + s.sym_next++] = lc;\n if (dist === 0) {\n /* lc is the unmatched char */\n s.dyn_ltree[lc * 2]/*.Freq*/++;\n } else {\n s.matches++;\n /* Here, lc is the match length - MIN_MATCH */\n dist--; /* dist = match distance - 1 */\n //Assert((ush)dist < (ush)MAX_DIST(s) &&\n // (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&\n // (ush)d_code(dist) < (ush)D_CODES, \"_tr_tally: bad match\");\n\n s.dyn_ltree[(_length_code[lc] + LITERALS$1 + 1) * 2]/*.Freq*/++;\n s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++;\n }\n\n return (s.sym_next === s.sym_end);\n};\n\nvar _tr_init_1 = _tr_init$1;\nvar _tr_stored_block_1 = _tr_stored_block$1;\nvar _tr_flush_block_1 = _tr_flush_block$1;\nvar _tr_tally_1 = _tr_tally$1;\nvar _tr_align_1 = _tr_align$1;\n\nvar trees = {\n\t_tr_init: _tr_init_1,\n\t_tr_stored_block: _tr_stored_block_1,\n\t_tr_flush_block: _tr_flush_block_1,\n\t_tr_tally: _tr_tally_1,\n\t_tr_align: _tr_align_1\n};\n\n// Note: adler32 takes 12% for level 0 and 2% for level 6.\n// It isn't worth it to make additional optimizations as in original.\n// Small size is preferable.\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst adler32 = (adler, buf, len, pos) => {\n let s1 = (adler & 0xffff) |0,\n s2 = ((adler >>> 16) & 0xffff) |0,\n n = 0;\n\n while (len !== 0) {\n // Set limit ~ twice less than 5552, to keep\n // s2 in 31-bits, because we force signed ints.\n // in other case %= will fail.\n n = len > 2000 ? 2000 : len;\n len -= n;\n\n do {\n s1 = (s1 + buf[pos++]) |0;\n s2 = (s2 + s1) |0;\n } while (--n);\n\n s1 %= 65521;\n s2 %= 65521;\n }\n\n return (s1 | (s2 << 16)) |0;\n};\n\n\nvar adler32_1 = adler32;\n\n// Note: we can't get significant speed boost here.\n// So write code to minimize size - no pregenerated tables\n// and array tools dependencies.\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n// Use ordinary array, since untyped makes no boost here\nconst makeTable = () => {\n let c, table = [];\n\n for (var n = 0; n < 256; n++) {\n c = n;\n for (var k = 0; k < 8; k++) {\n c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));\n }\n table[n] = c;\n }\n\n return table;\n};\n\n// Create table on load. Just 255 signed longs. Not a problem.\nconst crcTable = new Uint32Array(makeTable());\n\n\nconst crc32 = (crc, buf, len, pos) => {\n const t = crcTable;\n const end = pos + len;\n\n crc ^= -1;\n\n for (let i = pos; i < end; i++) {\n crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];\n }\n\n return (crc ^ (-1)); // >>> 0;\n};\n\n\nvar crc32_1 = crc32;\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nvar messages = {\n 2: 'need dictionary', /* Z_NEED_DICT 2 */\n 1: 'stream end', /* Z_STREAM_END 1 */\n 0: '', /* Z_OK 0 */\n '-1': 'file error', /* Z_ERRNO (-1) */\n '-2': 'stream error', /* Z_STREAM_ERROR (-2) */\n '-3': 'data error', /* Z_DATA_ERROR (-3) */\n '-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */\n '-5': 'buffer error', /* Z_BUF_ERROR (-5) */\n '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nvar constants$2 = {\n\n /* Allowed flush values; see deflate() and inflate() below for details */\n Z_NO_FLUSH: 0,\n Z_PARTIAL_FLUSH: 1,\n Z_SYNC_FLUSH: 2,\n Z_FULL_FLUSH: 3,\n Z_FINISH: 4,\n Z_BLOCK: 5,\n Z_TREES: 6,\n\n /* Return codes for the compression/decompression functions. Negative values\n * are errors, positive values are used for special but normal events.\n */\n Z_OK: 0,\n Z_STREAM_END: 1,\n Z_NEED_DICT: 2,\n Z_ERRNO: -1,\n Z_STREAM_ERROR: -2,\n Z_DATA_ERROR: -3,\n Z_MEM_ERROR: -4,\n Z_BUF_ERROR: -5,\n //Z_VERSION_ERROR: -6,\n\n /* compression levels */\n Z_NO_COMPRESSION: 0,\n Z_BEST_SPEED: 1,\n Z_BEST_COMPRESSION: 9,\n Z_DEFAULT_COMPRESSION: -1,\n\n\n Z_FILTERED: 1,\n Z_HUFFMAN_ONLY: 2,\n Z_RLE: 3,\n Z_FIXED: 4,\n Z_DEFAULT_STRATEGY: 0,\n\n /* Possible values of the data_type field (though see inflate()) */\n Z_BINARY: 0,\n Z_TEXT: 1,\n //Z_ASCII: 1, // = Z_TEXT (deprecated)\n Z_UNKNOWN: 2,\n\n /* The deflate compression method */\n Z_DEFLATED: 8\n //Z_NULL: null // Use -1 or null inline, depending on var type\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst { _tr_init, _tr_stored_block, _tr_flush_block, _tr_tally, _tr_align } = trees;\n\n\n\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH: Z_NO_FLUSH$2, Z_PARTIAL_FLUSH, Z_FULL_FLUSH: Z_FULL_FLUSH$1, Z_FINISH: Z_FINISH$3, Z_BLOCK: Z_BLOCK$1,\n Z_OK: Z_OK$3, Z_STREAM_END: Z_STREAM_END$3, Z_STREAM_ERROR: Z_STREAM_ERROR$2, Z_DATA_ERROR: Z_DATA_ERROR$2, Z_BUF_ERROR: Z_BUF_ERROR$1,\n Z_DEFAULT_COMPRESSION: Z_DEFAULT_COMPRESSION$1,\n Z_FILTERED, Z_HUFFMAN_ONLY, Z_RLE, Z_FIXED, Z_DEFAULT_STRATEGY: Z_DEFAULT_STRATEGY$1,\n Z_UNKNOWN,\n Z_DEFLATED: Z_DEFLATED$2\n} = constants$2;\n\n/*============================================================================*/\n\n\nconst MAX_MEM_LEVEL = 9;\n/* Maximum value for memLevel in deflateInit2 */\nconst MAX_WBITS$1 = 15;\n/* 32K LZ77 window */\nconst DEF_MEM_LEVEL = 8;\n\n\nconst LENGTH_CODES = 29;\n/* number of length codes, not counting the special END_BLOCK code */\nconst LITERALS = 256;\n/* number of literal bytes 0..255 */\nconst L_CODES = LITERALS + 1 + LENGTH_CODES;\n/* number of Literal or Length codes, including the END_BLOCK code */\nconst D_CODES = 30;\n/* number of distance codes */\nconst BL_CODES = 19;\n/* number of codes used to transfer the bit lengths */\nconst HEAP_SIZE = 2 * L_CODES + 1;\n/* maximum heap size */\nconst MAX_BITS = 15;\n/* All codes must not exceed MAX_BITS bits */\n\nconst MIN_MATCH = 3;\nconst MAX_MATCH = 258;\nconst MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);\n\nconst PRESET_DICT = 0x20;\n\nconst INIT_STATE = 42; /* zlib header -> BUSY_STATE */\n//#ifdef GZIP\nconst GZIP_STATE = 57; /* gzip header -> BUSY_STATE | EXTRA_STATE */\n//#endif\nconst EXTRA_STATE = 69; /* gzip extra block -> NAME_STATE */\nconst NAME_STATE = 73; /* gzip file name -> COMMENT_STATE */\nconst COMMENT_STATE = 91; /* gzip comment -> HCRC_STATE */\nconst HCRC_STATE = 103; /* gzip header CRC -> BUSY_STATE */\nconst BUSY_STATE = 113; /* deflate -> FINISH_STATE */\nconst FINISH_STATE = 666; /* stream complete */\n\nconst BS_NEED_MORE = 1; /* block not completed, need more input or more output */\nconst BS_BLOCK_DONE = 2; /* block flush performed */\nconst BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */\nconst BS_FINISH_DONE = 4; /* finish done, accept no more input or output */\n\nconst OS_CODE = 0x03; // Unix :) . Don't detect, use this default.\n\nconst err = (strm, errorCode) => {\n strm.msg = messages[errorCode];\n return errorCode;\n};\n\nconst rank = (f) => {\n return ((f) * 2) - ((f) > 4 ? 9 : 0);\n};\n\nconst zero = (buf) => {\n let len = buf.length; while (--len >= 0) { buf[len] = 0; }\n};\n\n/* ===========================================================================\n * Slide the hash table when sliding the window down (could be avoided with 32\n * bit values at the expense of memory usage). We slide even when level == 0 to\n * keep the hash table consistent if we switch back to level > 0 later.\n */\nconst slide_hash = (s) => {\n let n, m;\n let p;\n let wsize = s.w_size;\n\n n = s.hash_size;\n p = n;\n do {\n m = s.head[--p];\n s.head[p] = (m >= wsize ? m - wsize : 0);\n } while (--n);\n n = wsize;\n//#ifndef FASTEST\n p = n;\n do {\n m = s.prev[--p];\n s.prev[p] = (m >= wsize ? m - wsize : 0);\n /* If n is not on any hash chain, prev[n] is garbage but\n * its value will never be used.\n */\n } while (--n);\n//#endif\n};\n\n/* eslint-disable new-cap */\nlet HASH_ZLIB = (s, prev, data) => ((prev << s.hash_shift) ^ data) & s.hash_mask;\n// This hash causes less collisions, https://github.com/nodeca/pako/issues/135\n// But breaks binary compatibility\n//let HASH_FAST = (s, prev, data) => ((prev << 8) + (prev >> 8) + (data << 4)) & s.hash_mask;\nlet HASH = HASH_ZLIB;\n\n\n/* =========================================================================\n * Flush as much pending output as possible. All deflate() output, except for\n * some deflate_stored() output, goes through this function so some\n * applications may wish to modify it to avoid allocating a large\n * strm->next_out buffer and copying into it. (See also read_buf()).\n */\nconst flush_pending = (strm) => {\n const s = strm.state;\n\n //_tr_flush_bits(s);\n let len = s.pending;\n if (len > strm.avail_out) {\n len = strm.avail_out;\n }\n if (len === 0) { return; }\n\n strm.output.set(s.pending_buf.subarray(s.pending_out, s.pending_out + len), strm.next_out);\n strm.next_out += len;\n s.pending_out += len;\n strm.total_out += len;\n strm.avail_out -= len;\n s.pending -= len;\n if (s.pending === 0) {\n s.pending_out = 0;\n }\n};\n\n\nconst flush_block_only = (s, last) => {\n _tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last);\n s.block_start = s.strstart;\n flush_pending(s.strm);\n};\n\n\nconst put_byte = (s, b) => {\n s.pending_buf[s.pending++] = b;\n};\n\n\n/* =========================================================================\n * Put a short in the pending buffer. The 16-bit value is put in MSB order.\n * IN assertion: the stream state is correct and there is enough room in\n * pending_buf.\n */\nconst putShortMSB = (s, b) => {\n\n // put_byte(s, (Byte)(b >> 8));\n// put_byte(s, (Byte)(b & 0xff));\n s.pending_buf[s.pending++] = (b >>> 8) & 0xff;\n s.pending_buf[s.pending++] = b & 0xff;\n};\n\n\n/* ===========================================================================\n * Read a new buffer from the current input stream, update the adler32\n * and total number of bytes read. All deflate() input goes through\n * this function so some applications may wish to modify it to avoid\n * allocating a large strm->input buffer and copying from it.\n * (See also flush_pending()).\n */\nconst read_buf = (strm, buf, start, size) => {\n\n let len = strm.avail_in;\n\n if (len > size) { len = size; }\n if (len === 0) { return 0; }\n\n strm.avail_in -= len;\n\n // zmemcpy(buf, strm->next_in, len);\n buf.set(strm.input.subarray(strm.next_in, strm.next_in + len), start);\n if (strm.state.wrap === 1) {\n strm.adler = adler32_1(strm.adler, buf, len, start);\n }\n\n else if (strm.state.wrap === 2) {\n strm.adler = crc32_1(strm.adler, buf, len, start);\n }\n\n strm.next_in += len;\n strm.total_in += len;\n\n return len;\n};\n\n\n/* ===========================================================================\n * Set match_start to the longest match starting at the given string and\n * return its length. Matches shorter or equal to prev_length are discarded,\n * in which case the result is equal to prev_length and match_start is\n * garbage.\n * IN assertions: cur_match is the head of the hash chain for the current\n * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1\n * OUT assertion: the match length is not greater than s->lookahead.\n */\nconst longest_match = (s, cur_match) => {\n\n let chain_length = s.max_chain_length; /* max hash chain length */\n let scan = s.strstart; /* current string */\n let match; /* matched string */\n let len; /* length of current match */\n let best_len = s.prev_length; /* best match length so far */\n let nice_match = s.nice_match; /* stop if match long enough */\n const limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ?\n s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/;\n\n const _win = s.window; // shortcut\n\n const wmask = s.w_mask;\n const prev = s.prev;\n\n /* Stop when cur_match becomes <= limit. To simplify the code,\n * we prevent matches with the string of window index 0.\n */\n\n const strend = s.strstart + MAX_MATCH;\n let scan_end1 = _win[scan + best_len - 1];\n let scan_end = _win[scan + best_len];\n\n /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.\n * It is easy to get rid of this optimization if necessary.\n */\n // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, \"Code too clever\");\n\n /* Do not waste too much time if we already have a good match: */\n if (s.prev_length >= s.good_match) {\n chain_length >>= 2;\n }\n /* Do not look for matches beyond the end of the input. This is necessary\n * to make deflate deterministic.\n */\n if (nice_match > s.lookahead) { nice_match = s.lookahead; }\n\n // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, \"need lookahead\");\n\n do {\n // Assert(cur_match < s->strstart, \"no future\");\n match = cur_match;\n\n /* Skip to next match if the match length cannot increase\n * or if the match length is less than 2. Note that the checks below\n * for insufficient lookahead only occur occasionally for performance\n * reasons. Therefore uninitialized memory will be accessed, and\n * conditional jumps will be made that depend on those values.\n * However the length of the match is limited to the lookahead, so\n * the output of deflate is not affected by the uninitialized values.\n */\n\n if (_win[match + best_len] !== scan_end ||\n _win[match + best_len - 1] !== scan_end1 ||\n _win[match] !== _win[scan] ||\n _win[++match] !== _win[scan + 1]) {\n continue;\n }\n\n /* The check at best_len-1 can be removed because it will be made\n * again later. (This heuristic is not always a win.)\n * It is not necessary to compare scan[2] and match[2] since they\n * are always equal when the other bytes match, given that\n * the hash keys are equal and that HASH_BITS >= 8.\n */\n scan += 2;\n match++;\n // Assert(*scan == *match, \"match[2]?\");\n\n /* We check for insufficient lookahead only every 8th comparison;\n * the 256th check will be made at strstart+258.\n */\n do {\n /*jshint noempty:false*/\n } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n scan < strend);\n\n // Assert(scan <= s->window+(unsigned)(s->window_size-1), \"wild scan\");\n\n len = MAX_MATCH - (strend - scan);\n scan = strend - MAX_MATCH;\n\n if (len > best_len) {\n s.match_start = cur_match;\n best_len = len;\n if (len >= nice_match) {\n break;\n }\n scan_end1 = _win[scan + best_len - 1];\n scan_end = _win[scan + best_len];\n }\n } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0);\n\n if (best_len <= s.lookahead) {\n return best_len;\n }\n return s.lookahead;\n};\n\n\n/* ===========================================================================\n * Fill the window when the lookahead becomes insufficient.\n * Updates strstart and lookahead.\n *\n * IN assertion: lookahead < MIN_LOOKAHEAD\n * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD\n * At least one byte has been read, or avail_in == 0; reads are\n * performed for at least two bytes (required for the zip translate_eol\n * option -- not supported here).\n */\nconst fill_window = (s) => {\n\n const _w_size = s.w_size;\n let n, more, str;\n\n //Assert(s->lookahead < MIN_LOOKAHEAD, \"already enough lookahead\");\n\n do {\n more = s.window_size - s.lookahead - s.strstart;\n\n // JS ints have 32 bit, block below not needed\n /* Deal with !@#$% 64K limit: */\n //if (sizeof(int) <= 2) {\n // if (more == 0 && s->strstart == 0 && s->lookahead == 0) {\n // more = wsize;\n //\n // } else if (more == (unsigned)(-1)) {\n // /* Very unlikely, but possible on 16 bit machine if\n // * strstart == 0 && lookahead == 1 (input done a byte at time)\n // */\n // more--;\n // }\n //}\n\n\n /* If the window is almost full and there is insufficient lookahead,\n * move the upper half to the lower one to make room in the upper half.\n */\n if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) {\n\n s.window.set(s.window.subarray(_w_size, _w_size + _w_size - more), 0);\n s.match_start -= _w_size;\n s.strstart -= _w_size;\n /* we now have strstart >= MAX_DIST */\n s.block_start -= _w_size;\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n slide_hash(s);\n more += _w_size;\n }\n if (s.strm.avail_in === 0) {\n break;\n }\n\n /* If there was no sliding:\n * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&\n * more == window_size - lookahead - strstart\n * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)\n * => more >= window_size - 2*WSIZE + 2\n * In the BIG_MEM or MMAP case (not yet supported),\n * window_size == input_size + MIN_LOOKAHEAD &&\n * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.\n * Otherwise, window_size == 2*WSIZE so more >= 2.\n * If there was sliding, more >= WSIZE. So in all cases, more >= 2.\n */\n //Assert(more >= 2, \"more < 2\");\n n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);\n s.lookahead += n;\n\n /* Initialize the hash value now that we have some input: */\n if (s.lookahead + s.insert >= MIN_MATCH) {\n str = s.strstart - s.insert;\n s.ins_h = s.window[str];\n\n /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + 1]);\n//#if MIN_MATCH != 3\n// Call update_hash() MIN_MATCH-3 more times\n//#endif\n while (s.insert) {\n /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + MIN_MATCH - 1]);\n\n s.prev[str & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = str;\n str++;\n s.insert--;\n if (s.lookahead + s.insert < MIN_MATCH) {\n break;\n }\n }\n }\n /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,\n * but this is not important since only literal bytes will be emitted.\n */\n\n } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);\n\n /* If the WIN_INIT bytes after the end of the current data have never been\n * written, then zero those bytes in order to avoid memory check reports of\n * the use of uninitialized (or uninitialised as Julian writes) bytes by\n * the longest match routines. Update the high water mark for the next\n * time through here. WIN_INIT is set to MAX_MATCH since the longest match\n * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.\n */\n// if (s.high_water < s.window_size) {\n// const curr = s.strstart + s.lookahead;\n// let init = 0;\n//\n// if (s.high_water < curr) {\n// /* Previous high water mark below current data -- zero WIN_INIT\n// * bytes or up to end of window, whichever is less.\n// */\n// init = s.window_size - curr;\n// if (init > WIN_INIT)\n// init = WIN_INIT;\n// zmemzero(s->window + curr, (unsigned)init);\n// s->high_water = curr + init;\n// }\n// else if (s->high_water < (ulg)curr + WIN_INIT) {\n// /* High water mark at or above current data, but below current data\n// * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up\n// * to end of window, whichever is less.\n// */\n// init = (ulg)curr + WIN_INIT - s->high_water;\n// if (init > s->window_size - s->high_water)\n// init = s->window_size - s->high_water;\n// zmemzero(s->window + s->high_water, (unsigned)init);\n// s->high_water += init;\n// }\n// }\n//\n// Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,\n// \"not enough room for search\");\n};\n\n/* ===========================================================================\n * Copy without compression as much as possible from the input stream, return\n * the current block state.\n *\n * In case deflateParams() is used to later switch to a non-zero compression\n * level, s->matches (otherwise unused when storing) keeps track of the number\n * of hash table slides to perform. If s->matches is 1, then one hash table\n * slide will be done when switching. If s->matches is 2, the maximum value\n * allowed here, then the hash table will be cleared, since two or more slides\n * is the same as a clear.\n *\n * deflate_stored() is written to minimize the number of times an input byte is\n * copied. It is most efficient with large input and output buffers, which\n * maximizes the opportunites to have a single copy from next_in to next_out.\n */\nconst deflate_stored = (s, flush) => {\n\n /* Smallest worthy block size when not flushing or finishing. By default\n * this is 32K. This can be as small as 507 bytes for memLevel == 1. For\n * large input and output buffers, the stored block size will be larger.\n */\n let min_block = s.pending_buf_size - 5 > s.w_size ? s.w_size : s.pending_buf_size - 5;\n\n /* Copy as many min_block or larger stored blocks directly to next_out as\n * possible. If flushing, copy the remaining available input to next_out as\n * stored blocks, if there is enough space.\n */\n let len, left, have, last = 0;\n let used = s.strm.avail_in;\n do {\n /* Set len to the maximum size block that we can copy directly with the\n * available input data and output space. Set left to how much of that\n * would be copied from what's left in the window.\n */\n len = 65535/* MAX_STORED */; /* maximum deflate stored block length */\n have = (s.bi_valid + 42) >> 3; /* number of header bytes */\n if (s.strm.avail_out < have) { /* need room for header */\n break;\n }\n /* maximum stored block length that will fit in avail_out: */\n have = s.strm.avail_out - have;\n left = s.strstart - s.block_start; /* bytes left in window */\n if (len > left + s.strm.avail_in) {\n len = left + s.strm.avail_in; /* limit len to the input */\n }\n if (len > have) {\n len = have; /* limit len to the output */\n }\n\n /* If the stored block would be less than min_block in length, or if\n * unable to copy all of the available input when flushing, then try\n * copying to the window and the pending buffer instead. Also don't\n * write an empty block when flushing -- deflate() does that.\n */\n if (len < min_block && ((len === 0 && flush !== Z_FINISH$3) ||\n flush === Z_NO_FLUSH$2 ||\n len !== left + s.strm.avail_in)) {\n break;\n }\n\n /* Make a dummy stored block in pending to get the header bytes,\n * including any pending bits. This also updates the debugging counts.\n */\n last = flush === Z_FINISH$3 && len === left + s.strm.avail_in ? 1 : 0;\n _tr_stored_block(s, 0, 0, last);\n\n /* Replace the lengths in the dummy stored block with len. */\n s.pending_buf[s.pending - 4] = len;\n s.pending_buf[s.pending - 3] = len >> 8;\n s.pending_buf[s.pending - 2] = ~len;\n s.pending_buf[s.pending - 1] = ~len >> 8;\n\n /* Write the stored block header bytes. */\n flush_pending(s.strm);\n\n//#ifdef ZLIB_DEBUG\n// /* Update debugging counts for the data about to be copied. */\n// s->compressed_len += len << 3;\n// s->bits_sent += len << 3;\n//#endif\n\n /* Copy uncompressed bytes from the window to next_out. */\n if (left) {\n if (left > len) {\n left = len;\n }\n //zmemcpy(s->strm->next_out, s->window + s->block_start, left);\n s.strm.output.set(s.window.subarray(s.block_start, s.block_start + left), s.strm.next_out);\n s.strm.next_out += left;\n s.strm.avail_out -= left;\n s.strm.total_out += left;\n s.block_start += left;\n len -= left;\n }\n\n /* Copy uncompressed bytes directly from next_in to next_out, updating\n * the check value.\n */\n if (len) {\n read_buf(s.strm, s.strm.output, s.strm.next_out, len);\n s.strm.next_out += len;\n s.strm.avail_out -= len;\n s.strm.total_out += len;\n }\n } while (last === 0);\n\n /* Update the sliding window with the last s->w_size bytes of the copied\n * data, or append all of the copied data to the existing window if less\n * than s->w_size bytes were copied. Also update the number of bytes to\n * insert in the hash tables, in the event that deflateParams() switches to\n * a non-zero compression level.\n */\n used -= s.strm.avail_in; /* number of input bytes directly copied */\n if (used) {\n /* If any input was used, then no unused input remains in the window,\n * therefore s->block_start == s->strstart.\n */\n if (used >= s.w_size) { /* supplant the previous history */\n s.matches = 2; /* clear hash */\n //zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size);\n s.window.set(s.strm.input.subarray(s.strm.next_in - s.w_size, s.strm.next_in), 0);\n s.strstart = s.w_size;\n s.insert = s.strstart;\n }\n else {\n if (s.window_size - s.strstart <= used) {\n /* Slide the window down. */\n s.strstart -= s.w_size;\n //zmemcpy(s->window, s->window + s->w_size, s->strstart);\n s.window.set(s.window.subarray(s.w_size, s.w_size + s.strstart), 0);\n if (s.matches < 2) {\n s.matches++; /* add a pending slide_hash() */\n }\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n }\n //zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);\n s.window.set(s.strm.input.subarray(s.strm.next_in - used, s.strm.next_in), s.strstart);\n s.strstart += used;\n s.insert += used > s.w_size - s.insert ? s.w_size - s.insert : used;\n }\n s.block_start = s.strstart;\n }\n if (s.high_water < s.strstart) {\n s.high_water = s.strstart;\n }\n\n /* If the last block was written to next_out, then done. */\n if (last) {\n return BS_FINISH_DONE;\n }\n\n /* If flushing and all input has been consumed, then done. */\n if (flush !== Z_NO_FLUSH$2 && flush !== Z_FINISH$3 &&\n s.strm.avail_in === 0 && s.strstart === s.block_start) {\n return BS_BLOCK_DONE;\n }\n\n /* Fill the window with any remaining input. */\n have = s.window_size - s.strstart;\n if (s.strm.avail_in > have && s.block_start >= s.w_size) {\n /* Slide the window down. */\n s.block_start -= s.w_size;\n s.strstart -= s.w_size;\n //zmemcpy(s->window, s->window + s->w_size, s->strstart);\n s.window.set(s.window.subarray(s.w_size, s.w_size + s.strstart), 0);\n if (s.matches < 2) {\n s.matches++; /* add a pending slide_hash() */\n }\n have += s.w_size; /* more space now */\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n }\n if (have > s.strm.avail_in) {\n have = s.strm.avail_in;\n }\n if (have) {\n read_buf(s.strm, s.window, s.strstart, have);\n s.strstart += have;\n s.insert += have > s.w_size - s.insert ? s.w_size - s.insert : have;\n }\n if (s.high_water < s.strstart) {\n s.high_water = s.strstart;\n }\n\n /* There was not enough avail_out to write a complete worthy or flushed\n * stored block to next_out. Write a stored block to pending instead, if we\n * have enough input for a worthy block, or if flushing and there is enough\n * room for the remaining input as a stored block in the pending buffer.\n */\n have = (s.bi_valid + 42) >> 3; /* number of header bytes */\n /* maximum stored block length that will fit in pending: */\n have = s.pending_buf_size - have > 65535/* MAX_STORED */ ? 65535/* MAX_STORED */ : s.pending_buf_size - have;\n min_block = have > s.w_size ? s.w_size : have;\n left = s.strstart - s.block_start;\n if (left >= min_block ||\n ((left || flush === Z_FINISH$3) && flush !== Z_NO_FLUSH$2 &&\n s.strm.avail_in === 0 && left <= have)) {\n len = left > have ? have : left;\n last = flush === Z_FINISH$3 && s.strm.avail_in === 0 &&\n len === left ? 1 : 0;\n _tr_stored_block(s, s.block_start, len, last);\n s.block_start += len;\n flush_pending(s.strm);\n }\n\n /* We've done all we can with the available input and output. */\n return last ? BS_FINISH_STARTED : BS_NEED_MORE;\n};\n\n\n/* ===========================================================================\n * Compress as much as possible from the input stream, return the current\n * block state.\n * This function does not perform lazy evaluation of matches and inserts\n * new strings in the dictionary only for unmatched strings or for short\n * matches. It is used only for the fast compression options.\n */\nconst deflate_fast = (s, flush) => {\n\n let hash_head; /* head of the hash chain */\n let bflush; /* set if current block must be flushed */\n\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the next match, plus MIN_MATCH bytes to insert the\n * string following the next match.\n */\n if (s.lookahead < MIN_LOOKAHEAD) {\n fill_window(s);\n if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) {\n break; /* flush the current block */\n }\n }\n\n /* Insert the string window[strstart .. strstart+2] in the\n * dictionary, and set hash_head to the head of the hash chain:\n */\n hash_head = 0/*NIL*/;\n if (s.lookahead >= MIN_MATCH) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n\n /* Find the longest match, discarding those <= prev_length.\n * At this point we have always match_length < MIN_MATCH\n */\n if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) {\n /* To simplify the code, we prevent matches with the string\n * of window index 0 (in particular we have to avoid a match\n * of the string with itself at the start of the input file).\n */\n s.match_length = longest_match(s, hash_head);\n /* longest_match() sets match_start */\n }\n if (s.match_length >= MIN_MATCH) {\n // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only\n\n /*** _tr_tally_dist(s, s.strstart - s.match_start,\n s.match_length - MIN_MATCH, bflush); ***/\n bflush = _tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH);\n\n s.lookahead -= s.match_length;\n\n /* Insert new strings in the hash table only if the match length\n * is not too large. This saves time but degrades compression.\n */\n if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {\n s.match_length--; /* string at strstart already in table */\n do {\n s.strstart++;\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n /* strstart never exceeds WSIZE-MAX_MATCH, so there are\n * always MIN_MATCH bytes ahead.\n */\n } while (--s.match_length !== 0);\n s.strstart++;\n } else\n {\n s.strstart += s.match_length;\n s.match_length = 0;\n s.ins_h = s.window[s.strstart];\n /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + 1]);\n\n//#if MIN_MATCH != 3\n// Call UPDATE_HASH() MIN_MATCH-3 more times\n//#endif\n /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not\n * matter since it will be recomputed at next deflate call.\n */\n }\n } else {\n /* No match, output a literal byte */\n //Tracevv((stderr,\"%c\", s.window[s.strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n\n s.lookahead--;\n s.strstart++;\n }\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1);\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* ===========================================================================\n * Same as above, but achieves better compression. We use a lazy\n * evaluation for matches: a match is finally adopted only if there is\n * no better match at the next window position.\n */\nconst deflate_slow = (s, flush) => {\n\n let hash_head; /* head of hash chain */\n let bflush; /* set if current block must be flushed */\n\n let max_insert;\n\n /* Process the input block. */\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the next match, plus MIN_MATCH bytes to insert the\n * string following the next match.\n */\n if (s.lookahead < MIN_LOOKAHEAD) {\n fill_window(s);\n if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) { break; } /* flush the current block */\n }\n\n /* Insert the string window[strstart .. strstart+2] in the\n * dictionary, and set hash_head to the head of the hash chain:\n */\n hash_head = 0/*NIL*/;\n if (s.lookahead >= MIN_MATCH) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n\n /* Find the longest match, discarding those <= prev_length.\n */\n s.prev_length = s.match_length;\n s.prev_match = s.match_start;\n s.match_length = MIN_MATCH - 1;\n\n if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match &&\n s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {\n /* To simplify the code, we prevent matches with the string\n * of window index 0 (in particular we have to avoid a match\n * of the string with itself at the start of the input file).\n */\n s.match_length = longest_match(s, hash_head);\n /* longest_match() sets match_start */\n\n if (s.match_length <= 5 &&\n (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) {\n\n /* If prev_match is also MIN_MATCH, match_start is garbage\n * but we will ignore the current match anyway.\n */\n s.match_length = MIN_MATCH - 1;\n }\n }\n /* If there was a match at the previous step and the current\n * match is not better, output the previous match:\n */\n if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {\n max_insert = s.strstart + s.lookahead - MIN_MATCH;\n /* Do not insert strings in hash table beyond this. */\n\n //check_match(s, s.strstart-1, s.prev_match, s.prev_length);\n\n /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,\n s.prev_length - MIN_MATCH, bflush);***/\n bflush = _tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH);\n /* Insert in hash table all strings up to the end of the match.\n * strstart-1 and strstart are already inserted. If there is not\n * enough lookahead, the last two strings are not inserted in\n * the hash table.\n */\n s.lookahead -= s.prev_length - 1;\n s.prev_length -= 2;\n do {\n if (++s.strstart <= max_insert) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n } while (--s.prev_length !== 0);\n s.match_available = 0;\n s.match_length = MIN_MATCH - 1;\n s.strstart++;\n\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n\n } else if (s.match_available) {\n /* If there was no match at the previous position, output a\n * single literal. If there was a match but the current match\n * is longer, truncate the previous match to a single literal.\n */\n //Tracevv((stderr,\"%c\", s->window[s->strstart-1]));\n /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart - 1]);\n\n if (bflush) {\n /*** FLUSH_BLOCK_ONLY(s, 0) ***/\n flush_block_only(s, false);\n /***/\n }\n s.strstart++;\n s.lookahead--;\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n } else {\n /* There is no previous match to compare with, wait for\n * the next step to decide.\n */\n s.match_available = 1;\n s.strstart++;\n s.lookahead--;\n }\n }\n //Assert (flush != Z_NO_FLUSH, \"no flush?\");\n if (s.match_available) {\n //Tracevv((stderr,\"%c\", s->window[s->strstart-1]));\n /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart - 1]);\n\n s.match_available = 0;\n }\n s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n\n return BS_BLOCK_DONE;\n};\n\n\n/* ===========================================================================\n * For Z_RLE, simply look for runs of bytes, generate matches only of distance\n * one. Do not maintain a hash table. (It will be regenerated if this run of\n * deflate switches away from Z_RLE.)\n */\nconst deflate_rle = (s, flush) => {\n\n let bflush; /* set if current block must be flushed */\n let prev; /* byte at distance one to match */\n let scan, strend; /* scan goes up to strend for length of run */\n\n const _win = s.window;\n\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the longest run, plus one for the unrolled loop.\n */\n if (s.lookahead <= MAX_MATCH) {\n fill_window(s);\n if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) { break; } /* flush the current block */\n }\n\n /* See how many times the previous byte repeats */\n s.match_length = 0;\n if (s.lookahead >= MIN_MATCH && s.strstart > 0) {\n scan = s.strstart - 1;\n prev = _win[scan];\n if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {\n strend = s.strstart + MAX_MATCH;\n do {\n /*jshint noempty:false*/\n } while (prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n scan < strend);\n s.match_length = MAX_MATCH - (strend - scan);\n if (s.match_length > s.lookahead) {\n s.match_length = s.lookahead;\n }\n }\n //Assert(scan <= s->window+(uInt)(s->window_size-1), \"wild scan\");\n }\n\n /* Emit match if have run of MIN_MATCH or longer, else emit literal */\n if (s.match_length >= MIN_MATCH) {\n //check_match(s, s.strstart, s.strstart - 1, s.match_length);\n\n /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/\n bflush = _tr_tally(s, 1, s.match_length - MIN_MATCH);\n\n s.lookahead -= s.match_length;\n s.strstart += s.match_length;\n s.match_length = 0;\n } else {\n /* No match, output a literal byte */\n //Tracevv((stderr,\"%c\", s->window[s->strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n\n s.lookahead--;\n s.strstart++;\n }\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = 0;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* ===========================================================================\n * For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table.\n * (It will be regenerated if this run of deflate switches away from Huffman.)\n */\nconst deflate_huff = (s, flush) => {\n\n let bflush; /* set if current block must be flushed */\n\n for (;;) {\n /* Make sure that we have a literal to write. */\n if (s.lookahead === 0) {\n fill_window(s);\n if (s.lookahead === 0) {\n if (flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n break; /* flush the current block */\n }\n }\n\n /* Output a literal byte */\n s.match_length = 0;\n //Tracevv((stderr,\"%c\", s->window[s->strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n s.lookahead--;\n s.strstart++;\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = 0;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* Values for max_lazy_match, good_match and max_chain_length, depending on\n * the desired pack level (0..9). The values given below have been tuned to\n * exclude worst case performance for pathological files. Better values may be\n * found for specific files.\n */\nfunction Config(good_length, max_lazy, nice_length, max_chain, func) {\n\n this.good_length = good_length;\n this.max_lazy = max_lazy;\n this.nice_length = nice_length;\n this.max_chain = max_chain;\n this.func = func;\n}\n\nconst configuration_table = [\n /* good lazy nice chain */\n new Config(0, 0, 0, 0, deflate_stored), /* 0 store only */\n new Config(4, 4, 8, 4, deflate_fast), /* 1 max speed, no lazy matches */\n new Config(4, 5, 16, 8, deflate_fast), /* 2 */\n new Config(4, 6, 32, 32, deflate_fast), /* 3 */\n\n new Config(4, 4, 16, 16, deflate_slow), /* 4 lazy matches */\n new Config(8, 16, 32, 32, deflate_slow), /* 5 */\n new Config(8, 16, 128, 128, deflate_slow), /* 6 */\n new Config(8, 32, 128, 256, deflate_slow), /* 7 */\n new Config(32, 128, 258, 1024, deflate_slow), /* 8 */\n new Config(32, 258, 258, 4096, deflate_slow) /* 9 max compression */\n];\n\n\n/* ===========================================================================\n * Initialize the \"longest match\" routines for a new zlib stream\n */\nconst lm_init = (s) => {\n\n s.window_size = 2 * s.w_size;\n\n /*** CLEAR_HASH(s); ***/\n zero(s.head); // Fill with NIL (= 0);\n\n /* Set the default configuration parameters:\n */\n s.max_lazy_match = configuration_table[s.level].max_lazy;\n s.good_match = configuration_table[s.level].good_length;\n s.nice_match = configuration_table[s.level].nice_length;\n s.max_chain_length = configuration_table[s.level].max_chain;\n\n s.strstart = 0;\n s.block_start = 0;\n s.lookahead = 0;\n s.insert = 0;\n s.match_length = s.prev_length = MIN_MATCH - 1;\n s.match_available = 0;\n s.ins_h = 0;\n};\n\n\nfunction DeflateState() {\n this.strm = null; /* pointer back to this zlib stream */\n this.status = 0; /* as the name implies */\n this.pending_buf = null; /* output still pending */\n this.pending_buf_size = 0; /* size of pending_buf */\n this.pending_out = 0; /* next pending byte to output to the stream */\n this.pending = 0; /* nb of bytes in the pending buffer */\n this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */\n this.gzhead = null; /* gzip header information to write */\n this.gzindex = 0; /* where in extra, name, or comment */\n this.method = Z_DEFLATED$2; /* can only be DEFLATED */\n this.last_flush = -1; /* value of flush param for previous deflate call */\n\n this.w_size = 0; /* LZ77 window size (32K by default) */\n this.w_bits = 0; /* log2(w_size) (8..16) */\n this.w_mask = 0; /* w_size - 1 */\n\n this.window = null;\n /* Sliding window. Input bytes are read into the second half of the window,\n * and move to the first half later to keep a dictionary of at least wSize\n * bytes. With this organization, matches are limited to a distance of\n * wSize-MAX_MATCH bytes, but this ensures that IO is always\n * performed with a length multiple of the block size.\n */\n\n this.window_size = 0;\n /* Actual size of window: 2*wSize, except when the user input buffer\n * is directly used as sliding window.\n */\n\n this.prev = null;\n /* Link to older string with same hash index. To limit the size of this\n * array to 64K, this link is maintained only for the last 32K strings.\n * An index in this array is thus a window index modulo 32K.\n */\n\n this.head = null; /* Heads of the hash chains or NIL. */\n\n this.ins_h = 0; /* hash index of string to be inserted */\n this.hash_size = 0; /* number of elements in hash table */\n this.hash_bits = 0; /* log2(hash_size) */\n this.hash_mask = 0; /* hash_size-1 */\n\n this.hash_shift = 0;\n /* Number of bits by which ins_h must be shifted at each input\n * step. It must be such that after MIN_MATCH steps, the oldest\n * byte no longer takes part in the hash key, that is:\n * hash_shift * MIN_MATCH >= hash_bits\n */\n\n this.block_start = 0;\n /* Window position at the beginning of the current output block. Gets\n * negative when the window is moved backwards.\n */\n\n this.match_length = 0; /* length of best match */\n this.prev_match = 0; /* previous match */\n this.match_available = 0; /* set if previous match exists */\n this.strstart = 0; /* start of string to insert */\n this.match_start = 0; /* start of matching string */\n this.lookahead = 0; /* number of valid bytes ahead in window */\n\n this.prev_length = 0;\n /* Length of the best match at previous step. Matches not greater than this\n * are discarded. This is used in the lazy match evaluation.\n */\n\n this.max_chain_length = 0;\n /* To speed up deflation, hash chains are never searched beyond this\n * length. A higher limit improves compression ratio but degrades the\n * speed.\n */\n\n this.max_lazy_match = 0;\n /* Attempt to find a better match only when the current match is strictly\n * smaller than this value. This mechanism is used only for compression\n * levels >= 4.\n */\n // That's alias to max_lazy_match, don't use directly\n //this.max_insert_length = 0;\n /* Insert new strings in the hash table only if the match length is not\n * greater than this length. This saves time but degrades compression.\n * max_insert_length is used only for compression levels <= 3.\n */\n\n this.level = 0; /* compression level (1..9) */\n this.strategy = 0; /* favor or force Huffman coding*/\n\n this.good_match = 0;\n /* Use a faster search when the previous match is longer than this */\n\n this.nice_match = 0; /* Stop searching when current match exceeds this */\n\n /* used by trees.c: */\n\n /* Didn't use ct_data typedef below to suppress compiler warning */\n\n // struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */\n // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */\n // struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */\n\n // Use flat array of DOUBLE size, with interleaved fata,\n // because JS does not support effective\n this.dyn_ltree = new Uint16Array(HEAP_SIZE * 2);\n this.dyn_dtree = new Uint16Array((2 * D_CODES + 1) * 2);\n this.bl_tree = new Uint16Array((2 * BL_CODES + 1) * 2);\n zero(this.dyn_ltree);\n zero(this.dyn_dtree);\n zero(this.bl_tree);\n\n this.l_desc = null; /* desc. for literal tree */\n this.d_desc = null; /* desc. for distance tree */\n this.bl_desc = null; /* desc. for bit length tree */\n\n //ush bl_count[MAX_BITS+1];\n this.bl_count = new Uint16Array(MAX_BITS + 1);\n /* number of codes at each bit length for an optimal tree */\n\n //int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */\n this.heap = new Uint16Array(2 * L_CODES + 1); /* heap used to build the Huffman trees */\n zero(this.heap);\n\n this.heap_len = 0; /* number of elements in the heap */\n this.heap_max = 0; /* element of largest frequency */\n /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.\n * The same heap array is used to build all trees.\n */\n\n this.depth = new Uint16Array(2 * L_CODES + 1); //uch depth[2*L_CODES+1];\n zero(this.depth);\n /* Depth of each subtree used as tie breaker for trees of equal frequency\n */\n\n this.sym_buf = 0; /* buffer for distances and literals/lengths */\n\n this.lit_bufsize = 0;\n /* Size of match buffer for literals/lengths. There are 4 reasons for\n * limiting lit_bufsize to 64K:\n * - frequencies can be kept in 16 bit counters\n * - if compression is not successful for the first block, all input\n * data is still in the window so we can still emit a stored block even\n * when input comes from standard input. (This can also be done for\n * all blocks if lit_bufsize is not greater than 32K.)\n * - if compression is not successful for a file smaller than 64K, we can\n * even emit a stored file instead of a stored block (saving 5 bytes).\n * This is applicable only for zip (not gzip or zlib).\n * - creating new Huffman trees less frequently may not provide fast\n * adaptation to changes in the input data statistics. (Take for\n * example a binary file with poorly compressible code followed by\n * a highly compressible string table.) Smaller buffer sizes give\n * fast adaptation but have of course the overhead of transmitting\n * trees more frequently.\n * - I can't count above 4\n */\n\n this.sym_next = 0; /* running index in sym_buf */\n this.sym_end = 0; /* symbol table full when sym_next reaches this */\n\n this.opt_len = 0; /* bit length of current block with optimal trees */\n this.static_len = 0; /* bit length of current block with static trees */\n this.matches = 0; /* number of string matches in current block */\n this.insert = 0; /* bytes at end of window left to insert */\n\n\n this.bi_buf = 0;\n /* Output buffer. bits are inserted starting at the bottom (least\n * significant bits).\n */\n this.bi_valid = 0;\n /* Number of valid bits in bi_buf. All bits above the last valid bit\n * are always zero.\n */\n\n // Used for window memory init. We safely ignore it for JS. That makes\n // sense only for pointers and memory check tools.\n //this.high_water = 0;\n /* High water mark offset in window for initialized bytes -- bytes above\n * this are set to zero in order to avoid memory check warnings when\n * longest match routines access bytes past the input. This is then\n * updated to the new high water mark.\n */\n}\n\n\n/* =========================================================================\n * Check for a valid deflate stream state. Return 0 if ok, 1 if not.\n */\nconst deflateStateCheck = (strm) => {\n\n if (!strm) {\n return 1;\n }\n const s = strm.state;\n if (!s || s.strm !== strm || (s.status !== INIT_STATE &&\n//#ifdef GZIP\n s.status !== GZIP_STATE &&\n//#endif\n s.status !== EXTRA_STATE &&\n s.status !== NAME_STATE &&\n s.status !== COMMENT_STATE &&\n s.status !== HCRC_STATE &&\n s.status !== BUSY_STATE &&\n s.status !== FINISH_STATE)) {\n return 1;\n }\n return 0;\n};\n\n\nconst deflateResetKeep = (strm) => {\n\n if (deflateStateCheck(strm)) {\n return err(strm, Z_STREAM_ERROR$2);\n }\n\n strm.total_in = strm.total_out = 0;\n strm.data_type = Z_UNKNOWN;\n\n const s = strm.state;\n s.pending = 0;\n s.pending_out = 0;\n\n if (s.wrap < 0) {\n s.wrap = -s.wrap;\n /* was made negative by deflate(..., Z_FINISH); */\n }\n s.status =\n//#ifdef GZIP\n s.wrap === 2 ? GZIP_STATE :\n//#endif\n s.wrap ? INIT_STATE : BUSY_STATE;\n strm.adler = (s.wrap === 2) ?\n 0 // crc32(0, Z_NULL, 0)\n :\n 1; // adler32(0, Z_NULL, 0)\n s.last_flush = -2;\n _tr_init(s);\n return Z_OK$3;\n};\n\n\nconst deflateReset = (strm) => {\n\n const ret = deflateResetKeep(strm);\n if (ret === Z_OK$3) {\n lm_init(strm.state);\n }\n return ret;\n};\n\n\nconst deflateSetHeader = (strm, head) => {\n\n if (deflateStateCheck(strm) || strm.state.wrap !== 2) {\n return Z_STREAM_ERROR$2;\n }\n strm.state.gzhead = head;\n return Z_OK$3;\n};\n\n\nconst deflateInit2 = (strm, level, method, windowBits, memLevel, strategy) => {\n\n if (!strm) { // === Z_NULL\n return Z_STREAM_ERROR$2;\n }\n let wrap = 1;\n\n if (level === Z_DEFAULT_COMPRESSION$1) {\n level = 6;\n }\n\n if (windowBits < 0) { /* suppress zlib wrapper */\n wrap = 0;\n windowBits = -windowBits;\n }\n\n else if (windowBits > 15) {\n wrap = 2; /* write gzip wrapper instead */\n windowBits -= 16;\n }\n\n\n if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED$2 ||\n windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||\n strategy < 0 || strategy > Z_FIXED || (windowBits === 8 && wrap !== 1)) {\n return err(strm, Z_STREAM_ERROR$2);\n }\n\n\n if (windowBits === 8) {\n windowBits = 9;\n }\n /* until 256-byte window bug fixed */\n\n const s = new DeflateState();\n\n strm.state = s;\n s.strm = strm;\n s.status = INIT_STATE; /* to pass state test in deflateReset() */\n\n s.wrap = wrap;\n s.gzhead = null;\n s.w_bits = windowBits;\n s.w_size = 1 << s.w_bits;\n s.w_mask = s.w_size - 1;\n\n s.hash_bits = memLevel + 7;\n s.hash_size = 1 << s.hash_bits;\n s.hash_mask = s.hash_size - 1;\n s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH);\n\n s.window = new Uint8Array(s.w_size * 2);\n s.head = new Uint16Array(s.hash_size);\n s.prev = new Uint16Array(s.w_size);\n\n // Don't need mem init magic for JS.\n //s.high_water = 0; /* nothing written to s->window yet */\n\n s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */\n\n /* We overlay pending_buf and sym_buf. This works since the average size\n * for length/distance pairs over any compressed block is assured to be 31\n * bits or less.\n *\n * Analysis: The longest fixed codes are a length code of 8 bits plus 5\n * extra bits, for lengths 131 to 257. The longest fixed distance codes are\n * 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest\n * possible fixed-codes length/distance pair is then 31 bits total.\n *\n * sym_buf starts one-fourth of the way into pending_buf. So there are\n * three bytes in sym_buf for every four bytes in pending_buf. Each symbol\n * in sym_buf is three bytes -- two for the distance and one for the\n * literal/length. As each symbol is consumed, the pointer to the next\n * sym_buf value to read moves forward three bytes. From that symbol, up to\n * 31 bits are written to pending_buf. The closest the written pending_buf\n * bits gets to the next sym_buf symbol to read is just before the last\n * code is written. At that time, 31*(n-2) bits have been written, just\n * after 24*(n-2) bits have been consumed from sym_buf. sym_buf starts at\n * 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1\n * symbols are written.) The closest the writing gets to what is unread is\n * then n+14 bits. Here n is lit_bufsize, which is 16384 by default, and\n * can range from 128 to 32768.\n *\n * Therefore, at a minimum, there are 142 bits of space between what is\n * written and what is read in the overlain buffers, so the symbols cannot\n * be overwritten by the compressed data. That space is actually 139 bits,\n * due to the three-bit fixed-code block header.\n *\n * That covers the case where either Z_FIXED is specified, forcing fixed\n * codes, or when the use of fixed codes is chosen, because that choice\n * results in a smaller compressed block than dynamic codes. That latter\n * condition then assures that the above analysis also covers all dynamic\n * blocks. A dynamic-code block will only be chosen to be emitted if it has\n * fewer bits than a fixed-code block would for the same set of symbols.\n * Therefore its average symbol length is assured to be less than 31. So\n * the compressed data for a dynamic block also cannot overwrite the\n * symbols from which it is being constructed.\n */\n\n s.pending_buf_size = s.lit_bufsize * 4;\n s.pending_buf = new Uint8Array(s.pending_buf_size);\n\n // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`)\n //s->sym_buf = s->pending_buf + s->lit_bufsize;\n s.sym_buf = s.lit_bufsize;\n\n //s->sym_end = (s->lit_bufsize - 1) * 3;\n s.sym_end = (s.lit_bufsize - 1) * 3;\n /* We avoid equality with lit_bufsize*3 because of wraparound at 64K\n * on 16 bit machines and because stored blocks are restricted to\n * 64K-1 bytes.\n */\n\n s.level = level;\n s.strategy = strategy;\n s.method = method;\n\n return deflateReset(strm);\n};\n\nconst deflateInit = (strm, level) => {\n\n return deflateInit2(strm, level, Z_DEFLATED$2, MAX_WBITS$1, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY$1);\n};\n\n\n/* ========================================================================= */\nconst deflate$2 = (strm, flush) => {\n\n if (deflateStateCheck(strm) || flush > Z_BLOCK$1 || flush < 0) {\n return strm ? err(strm, Z_STREAM_ERROR$2) : Z_STREAM_ERROR$2;\n }\n\n const s = strm.state;\n\n if (!strm.output ||\n (strm.avail_in !== 0 && !strm.input) ||\n (s.status === FINISH_STATE && flush !== Z_FINISH$3)) {\n return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR$1 : Z_STREAM_ERROR$2);\n }\n\n const old_flush = s.last_flush;\n s.last_flush = flush;\n\n /* Flush as much pending output as possible */\n if (s.pending !== 0) {\n flush_pending(strm);\n if (strm.avail_out === 0) {\n /* Since avail_out is 0, deflate will be called again with\n * more output space, but possibly with both pending and\n * avail_in equal to zero. There won't be anything to do,\n * but this is not an error situation so make sure we\n * return OK instead of BUF_ERROR at next call of deflate:\n */\n s.last_flush = -1;\n return Z_OK$3;\n }\n\n /* Make sure there is something to do and avoid duplicate consecutive\n * flushes. For repeated and useless calls with Z_FINISH, we keep\n * returning Z_STREAM_END instead of Z_BUF_ERROR.\n */\n } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&\n flush !== Z_FINISH$3) {\n return err(strm, Z_BUF_ERROR$1);\n }\n\n /* User must not provide more input after the first FINISH: */\n if (s.status === FINISH_STATE && strm.avail_in !== 0) {\n return err(strm, Z_BUF_ERROR$1);\n }\n\n /* Write the header */\n if (s.status === INIT_STATE && s.wrap === 0) {\n s.status = BUSY_STATE;\n }\n if (s.status === INIT_STATE) {\n /* zlib header */\n let header = (Z_DEFLATED$2 + ((s.w_bits - 8) << 4)) << 8;\n let level_flags = -1;\n\n if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {\n level_flags = 0;\n } else if (s.level < 6) {\n level_flags = 1;\n } else if (s.level === 6) {\n level_flags = 2;\n } else {\n level_flags = 3;\n }\n header |= (level_flags << 6);\n if (s.strstart !== 0) { header |= PRESET_DICT; }\n header += 31 - (header % 31);\n\n putShortMSB(s, header);\n\n /* Save the adler32 of the preset dictionary: */\n if (s.strstart !== 0) {\n putShortMSB(s, strm.adler >>> 16);\n putShortMSB(s, strm.adler & 0xffff);\n }\n strm.adler = 1; // adler32(0L, Z_NULL, 0);\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n//#ifdef GZIP\n if (s.status === GZIP_STATE) {\n /* gzip header */\n strm.adler = 0; //crc32(0L, Z_NULL, 0);\n put_byte(s, 31);\n put_byte(s, 139);\n put_byte(s, 8);\n if (!s.gzhead) { // s->gzhead == Z_NULL\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, s.level === 9 ? 2 :\n (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?\n 4 : 0));\n put_byte(s, OS_CODE);\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n else {\n put_byte(s, (s.gzhead.text ? 1 : 0) +\n (s.gzhead.hcrc ? 2 : 0) +\n (!s.gzhead.extra ? 0 : 4) +\n (!s.gzhead.name ? 0 : 8) +\n (!s.gzhead.comment ? 0 : 16)\n );\n put_byte(s, s.gzhead.time & 0xff);\n put_byte(s, (s.gzhead.time >> 8) & 0xff);\n put_byte(s, (s.gzhead.time >> 16) & 0xff);\n put_byte(s, (s.gzhead.time >> 24) & 0xff);\n put_byte(s, s.level === 9 ? 2 :\n (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?\n 4 : 0));\n put_byte(s, s.gzhead.os & 0xff);\n if (s.gzhead.extra && s.gzhead.extra.length) {\n put_byte(s, s.gzhead.extra.length & 0xff);\n put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);\n }\n if (s.gzhead.hcrc) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending, 0);\n }\n s.gzindex = 0;\n s.status = EXTRA_STATE;\n }\n }\n if (s.status === EXTRA_STATE) {\n if (s.gzhead.extra/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let left = (s.gzhead.extra.length & 0xffff) - s.gzindex;\n while (s.pending + left > s.pending_buf_size) {\n let copy = s.pending_buf_size - s.pending;\n // zmemcpy(s.pending_buf + s.pending,\n // s.gzhead.extra + s.gzindex, copy);\n s.pending_buf.set(s.gzhead.extra.subarray(s.gzindex, s.gzindex + copy), s.pending);\n s.pending = s.pending_buf_size;\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex += copy;\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n left -= copy;\n }\n // JS specific: s.gzhead.extra may be TypedArray or Array for backward compatibility\n // TypedArray.slice and TypedArray.from don't exist in IE10-IE11\n let gzhead_extra = new Uint8Array(s.gzhead.extra);\n // zmemcpy(s->pending_buf + s->pending,\n // s->gzhead->extra + s->gzindex, left);\n s.pending_buf.set(gzhead_extra.subarray(s.gzindex, s.gzindex + left), s.pending);\n s.pending += left;\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex = 0;\n }\n s.status = NAME_STATE;\n }\n if (s.status === NAME_STATE) {\n if (s.gzhead.name/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let val;\n do {\n if (s.pending === s.pending_buf_size) {\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n }\n // JS specific: little magic to add zero terminator to end of string\n if (s.gzindex < s.gzhead.name.length) {\n val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;\n } else {\n val = 0;\n }\n put_byte(s, val);\n } while (val !== 0);\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex = 0;\n }\n s.status = COMMENT_STATE;\n }\n if (s.status === COMMENT_STATE) {\n if (s.gzhead.comment/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let val;\n do {\n if (s.pending === s.pending_buf_size) {\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n }\n // JS specific: little magic to add zero terminator to end of string\n if (s.gzindex < s.gzhead.comment.length) {\n val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;\n } else {\n val = 0;\n }\n put_byte(s, val);\n } while (val !== 0);\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n }\n s.status = HCRC_STATE;\n }\n if (s.status === HCRC_STATE) {\n if (s.gzhead.hcrc) {\n if (s.pending + 2 > s.pending_buf_size) {\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n put_byte(s, strm.adler & 0xff);\n put_byte(s, (strm.adler >> 8) & 0xff);\n strm.adler = 0; //crc32(0L, Z_NULL, 0);\n }\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n//#endif\n\n /* Start a new block or continue the current one.\n */\n if (strm.avail_in !== 0 || s.lookahead !== 0 ||\n (flush !== Z_NO_FLUSH$2 && s.status !== FINISH_STATE)) {\n let bstate = s.level === 0 ? deflate_stored(s, flush) :\n s.strategy === Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :\n s.strategy === Z_RLE ? deflate_rle(s, flush) :\n configuration_table[s.level].func(s, flush);\n\n if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {\n s.status = FINISH_STATE;\n }\n if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {\n if (strm.avail_out === 0) {\n s.last_flush = -1;\n /* avoid BUF_ERROR next call, see above */\n }\n return Z_OK$3;\n /* If flush != Z_NO_FLUSH && avail_out == 0, the next call\n * of deflate should use the same flush parameter to make sure\n * that the flush is complete. So we don't have to output an\n * empty block here, this will be done at next call. This also\n * ensures that for a very small output buffer, we emit at most\n * one empty block.\n */\n }\n if (bstate === BS_BLOCK_DONE) {\n if (flush === Z_PARTIAL_FLUSH) {\n _tr_align(s);\n }\n else if (flush !== Z_BLOCK$1) { /* FULL_FLUSH or SYNC_FLUSH */\n\n _tr_stored_block(s, 0, 0, false);\n /* For a full flush, this empty block will be recognized\n * as a special marker by inflate_sync().\n */\n if (flush === Z_FULL_FLUSH$1) {\n /*** CLEAR_HASH(s); ***/ /* forget history */\n zero(s.head); // Fill with NIL (= 0);\n\n if (s.lookahead === 0) {\n s.strstart = 0;\n s.block_start = 0;\n s.insert = 0;\n }\n }\n }\n flush_pending(strm);\n if (strm.avail_out === 0) {\n s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */\n return Z_OK$3;\n }\n }\n }\n\n if (flush !== Z_FINISH$3) { return Z_OK$3; }\n if (s.wrap <= 0) { return Z_STREAM_END$3; }\n\n /* Write the trailer */\n if (s.wrap === 2) {\n put_byte(s, strm.adler & 0xff);\n put_byte(s, (strm.adler >> 8) & 0xff);\n put_byte(s, (strm.adler >> 16) & 0xff);\n put_byte(s, (strm.adler >> 24) & 0xff);\n put_byte(s, strm.total_in & 0xff);\n put_byte(s, (strm.total_in >> 8) & 0xff);\n put_byte(s, (strm.total_in >> 16) & 0xff);\n put_byte(s, (strm.total_in >> 24) & 0xff);\n }\n else\n {\n putShortMSB(s, strm.adler >>> 16);\n putShortMSB(s, strm.adler & 0xffff);\n }\n\n flush_pending(strm);\n /* If avail_out is zero, the application will call deflate again\n * to flush the rest.\n */\n if (s.wrap > 0) { s.wrap = -s.wrap; }\n /* write the trailer only once! */\n return s.pending !== 0 ? Z_OK$3 : Z_STREAM_END$3;\n};\n\n\nconst deflateEnd = (strm) => {\n\n if (deflateStateCheck(strm)) {\n return Z_STREAM_ERROR$2;\n }\n\n const status = strm.state.status;\n\n strm.state = null;\n\n return status === BUSY_STATE ? err(strm, Z_DATA_ERROR$2) : Z_OK$3;\n};\n\n\n/* =========================================================================\n * Initializes the compression dictionary from the given byte\n * sequence without producing any compressed output.\n */\nconst deflateSetDictionary = (strm, dictionary) => {\n\n let dictLength = dictionary.length;\n\n if (deflateStateCheck(strm)) {\n return Z_STREAM_ERROR$2;\n }\n\n const s = strm.state;\n const wrap = s.wrap;\n\n if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) {\n return Z_STREAM_ERROR$2;\n }\n\n /* when using zlib wrappers, compute Adler-32 for provided dictionary */\n if (wrap === 1) {\n /* adler32(strm->adler, dictionary, dictLength); */\n strm.adler = adler32_1(strm.adler, dictionary, dictLength, 0);\n }\n\n s.wrap = 0; /* avoid computing Adler-32 in read_buf */\n\n /* if dictionary would fill window, just replace the history */\n if (dictLength >= s.w_size) {\n if (wrap === 0) { /* already empty otherwise */\n /*** CLEAR_HASH(s); ***/\n zero(s.head); // Fill with NIL (= 0);\n s.strstart = 0;\n s.block_start = 0;\n s.insert = 0;\n }\n /* use the tail */\n // dictionary = dictionary.slice(dictLength - s.w_size);\n let tmpDict = new Uint8Array(s.w_size);\n tmpDict.set(dictionary.subarray(dictLength - s.w_size, dictLength), 0);\n dictionary = tmpDict;\n dictLength = s.w_size;\n }\n /* insert dictionary into window and hash */\n const avail = strm.avail_in;\n const next = strm.next_in;\n const input = strm.input;\n strm.avail_in = dictLength;\n strm.next_in = 0;\n strm.input = dictionary;\n fill_window(s);\n while (s.lookahead >= MIN_MATCH) {\n let str = s.strstart;\n let n = s.lookahead - (MIN_MATCH - 1);\n do {\n /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + MIN_MATCH - 1]);\n\n s.prev[str & s.w_mask] = s.head[s.ins_h];\n\n s.head[s.ins_h] = str;\n str++;\n } while (--n);\n s.strstart = str;\n s.lookahead = MIN_MATCH - 1;\n fill_window(s);\n }\n s.strstart += s.lookahead;\n s.block_start = s.strstart;\n s.insert = s.lookahead;\n s.lookahead = 0;\n s.match_length = s.prev_length = MIN_MATCH - 1;\n s.match_available = 0;\n strm.next_in = next;\n strm.input = input;\n strm.avail_in = avail;\n s.wrap = wrap;\n return Z_OK$3;\n};\n\n\nvar deflateInit_1 = deflateInit;\nvar deflateInit2_1 = deflateInit2;\nvar deflateReset_1 = deflateReset;\nvar deflateResetKeep_1 = deflateResetKeep;\nvar deflateSetHeader_1 = deflateSetHeader;\nvar deflate_2$1 = deflate$2;\nvar deflateEnd_1 = deflateEnd;\nvar deflateSetDictionary_1 = deflateSetDictionary;\nvar deflateInfo = 'pako deflate (from Nodeca project)';\n\n/* Not implemented\nmodule.exports.deflateBound = deflateBound;\nmodule.exports.deflateCopy = deflateCopy;\nmodule.exports.deflateGetDictionary = deflateGetDictionary;\nmodule.exports.deflateParams = deflateParams;\nmodule.exports.deflatePending = deflatePending;\nmodule.exports.deflatePrime = deflatePrime;\nmodule.exports.deflateTune = deflateTune;\n*/\n\nvar deflate_1$2 = {\n\tdeflateInit: deflateInit_1,\n\tdeflateInit2: deflateInit2_1,\n\tdeflateReset: deflateReset_1,\n\tdeflateResetKeep: deflateResetKeep_1,\n\tdeflateSetHeader: deflateSetHeader_1,\n\tdeflate: deflate_2$1,\n\tdeflateEnd: deflateEnd_1,\n\tdeflateSetDictionary: deflateSetDictionary_1,\n\tdeflateInfo: deflateInfo\n};\n\nconst _has = (obj, key) => {\n return Object.prototype.hasOwnProperty.call(obj, key);\n};\n\nvar assign = function (obj /*from1, from2, from3, ...*/) {\n const sources = Array.prototype.slice.call(arguments, 1);\n while (sources.length) {\n const source = sources.shift();\n if (!source) { continue; }\n\n if (typeof source !== 'object') {\n throw new TypeError(source + 'must be non-object');\n }\n\n for (const p in source) {\n if (_has(source, p)) {\n obj[p] = source[p];\n }\n }\n }\n\n return obj;\n};\n\n\n// Join array of chunks to single array.\nvar flattenChunks = (chunks) => {\n // calculate data length\n let len = 0;\n\n for (let i = 0, l = chunks.length; i < l; i++) {\n len += chunks[i].length;\n }\n\n // join chunks\n const result = new Uint8Array(len);\n\n for (let i = 0, pos = 0, l = chunks.length; i < l; i++) {\n let chunk = chunks[i];\n result.set(chunk, pos);\n pos += chunk.length;\n }\n\n return result;\n};\n\nvar common = {\n\tassign: assign,\n\tflattenChunks: flattenChunks\n};\n\n// String encode/decode helpers\n\n\n// Quick check if we can use fast array to bin string conversion\n//\n// - apply(Array) can fail on Android 2.2\n// - apply(Uint8Array) can fail on iOS 5.1 Safari\n//\nlet STR_APPLY_UIA_OK = true;\n\ntry { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }\n\n\n// Table with utf8 lengths (calculated by first byte of sequence)\n// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,\n// because max possible codepoint is 0x10ffff\nconst _utf8len = new Uint8Array(256);\nfor (let q = 0; q < 256; q++) {\n _utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);\n}\n_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start\n\n\n// convert string to array (typed, when possible)\nvar string2buf = (str) => {\n if (typeof TextEncoder === 'function' && TextEncoder.prototype.encode) {\n return new TextEncoder().encode(str);\n }\n\n let buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;\n\n // count binary size\n for (m_pos = 0; m_pos < str_len; m_pos++) {\n c = str.charCodeAt(m_pos);\n if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {\n c2 = str.charCodeAt(m_pos + 1);\n if ((c2 & 0xfc00) === 0xdc00) {\n c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);\n m_pos++;\n }\n }\n buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;\n }\n\n // allocate buffer\n buf = new Uint8Array(buf_len);\n\n // convert\n for (i = 0, m_pos = 0; i < buf_len; m_pos++) {\n c = str.charCodeAt(m_pos);\n if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {\n c2 = str.charCodeAt(m_pos + 1);\n if ((c2 & 0xfc00) === 0xdc00) {\n c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);\n m_pos++;\n }\n }\n if (c < 0x80) {\n /* one byte */\n buf[i++] = c;\n } else if (c < 0x800) {\n /* two bytes */\n buf[i++] = 0xC0 | (c >>> 6);\n buf[i++] = 0x80 | (c & 0x3f);\n } else if (c < 0x10000) {\n /* three bytes */\n buf[i++] = 0xE0 | (c >>> 12);\n buf[i++] = 0x80 | (c >>> 6 & 0x3f);\n buf[i++] = 0x80 | (c & 0x3f);\n } else {\n /* four bytes */\n buf[i++] = 0xf0 | (c >>> 18);\n buf[i++] = 0x80 | (c >>> 12 & 0x3f);\n buf[i++] = 0x80 | (c >>> 6 & 0x3f);\n buf[i++] = 0x80 | (c & 0x3f);\n }\n }\n\n return buf;\n};\n\n// Helper\nconst buf2binstring = (buf, len) => {\n // On Chrome, the arguments in a function call that are allowed is `65534`.\n // If the length of the buffer is smaller than that, we can use this optimization,\n // otherwise we will take a slower path.\n if (len < 65534) {\n if (buf.subarray && STR_APPLY_UIA_OK) {\n return String.fromCharCode.apply(null, buf.length === len ? buf : buf.subarray(0, len));\n }\n }\n\n let result = '';\n for (let i = 0; i < len; i++) {\n result += String.fromCharCode(buf[i]);\n }\n return result;\n};\n\n\n// convert array to string\nvar buf2string = (buf, max) => {\n const len = max || buf.length;\n\n if (typeof TextDecoder === 'function' && TextDecoder.prototype.decode) {\n return new TextDecoder().decode(buf.subarray(0, max));\n }\n\n let i, out;\n\n // Reserve max possible length (2 words per char)\n // NB: by unknown reasons, Array is significantly faster for\n // String.fromCharCode.apply than Uint16Array.\n const utf16buf = new Array(len * 2);\n\n for (out = 0, i = 0; i < len;) {\n let c = buf[i++];\n // quick process ascii\n if (c < 0x80) { utf16buf[out++] = c; continue; }\n\n let c_len = _utf8len[c];\n // skip 5 & 6 byte codes\n if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }\n\n // apply mask on first byte\n c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;\n // join the rest\n while (c_len > 1 && i < len) {\n c = (c << 6) | (buf[i++] & 0x3f);\n c_len--;\n }\n\n // terminated by end of string?\n if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }\n\n if (c < 0x10000) {\n utf16buf[out++] = c;\n } else {\n c -= 0x10000;\n utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);\n utf16buf[out++] = 0xdc00 | (c & 0x3ff);\n }\n }\n\n return buf2binstring(utf16buf, out);\n};\n\n\n// Calculate max possible position in utf8 buffer,\n// that will not break sequence. If that's not possible\n// - (very small limits) return max size as is.\n//\n// buf[] - utf8 bytes array\n// max - length limit (mandatory);\nvar utf8border = (buf, max) => {\n\n max = max || buf.length;\n if (max > buf.length) { max = buf.length; }\n\n // go back from last position, until start of sequence found\n let pos = max - 1;\n while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }\n\n // Very small and broken sequence,\n // return max, because we should return something anyway.\n if (pos < 0) { return max; }\n\n // If we came to start of buffer - that means buffer is too small,\n // return max too.\n if (pos === 0) { return max; }\n\n return (pos + _utf8len[buf[pos]] > max) ? pos : max;\n};\n\nvar strings = {\n\tstring2buf: string2buf,\n\tbuf2string: buf2string,\n\tutf8border: utf8border\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nfunction ZStream() {\n /* next input byte */\n this.input = null; // JS specific, because we have no pointers\n this.next_in = 0;\n /* number of bytes available at input */\n this.avail_in = 0;\n /* total number of input bytes read so far */\n this.total_in = 0;\n /* next output byte should be put there */\n this.output = null; // JS specific, because we have no pointers\n this.next_out = 0;\n /* remaining free space at output */\n this.avail_out = 0;\n /* total number of bytes output so far */\n this.total_out = 0;\n /* last error message, NULL if no error */\n this.msg = ''/*Z_NULL*/;\n /* not visible by applications */\n this.state = null;\n /* best guess about the data type: binary or text */\n this.data_type = 2/*Z_UNKNOWN*/;\n /* adler32 value of the uncompressed data */\n this.adler = 0;\n}\n\nvar zstream = ZStream;\n\nconst toString$1 = Object.prototype.toString;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH: Z_NO_FLUSH$1, Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH: Z_FINISH$2,\n Z_OK: Z_OK$2, Z_STREAM_END: Z_STREAM_END$2,\n Z_DEFAULT_COMPRESSION,\n Z_DEFAULT_STRATEGY,\n Z_DEFLATED: Z_DEFLATED$1\n} = constants$2;\n\n/* ===========================================================================*/\n\n\n/**\n * class Deflate\n *\n * Generic JS-style wrapper for zlib calls. If you don't need\n * streaming behaviour - use more simple functions: [[deflate]],\n * [[deflateRaw]] and [[gzip]].\n **/\n\n/* internal\n * Deflate.chunks -> Array\n *\n * Chunks of output data, if [[Deflate#onData]] not overridden.\n **/\n\n/**\n * Deflate.result -> Uint8Array\n *\n * Compressed result, generated by default [[Deflate#onData]]\n * and [[Deflate#onEnd]] handlers. Filled after you push last chunk\n * (call [[Deflate#push]] with `Z_FINISH` / `true` param).\n **/\n\n/**\n * Deflate.err -> Number\n *\n * Error code after deflate finished. 0 (Z_OK) on success.\n * You will not need it in real life, because deflate errors\n * are possible only on wrong options or bad `onData` / `onEnd`\n * custom handlers.\n **/\n\n/**\n * Deflate.msg -> String\n *\n * Error message, if [[Deflate.err]] != 0\n **/\n\n\n/**\n * new Deflate(options)\n * - options (Object): zlib deflate options.\n *\n * Creates new deflator instance with specified params. Throws exception\n * on bad params. Supported options:\n *\n * - `level`\n * - `windowBits`\n * - `memLevel`\n * - `strategy`\n * - `dictionary`\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Additional options, for internal needs:\n *\n * - `chunkSize` - size of generated data chunks (16K by default)\n * - `raw` (Boolean) - do raw deflate\n * - `gzip` (Boolean) - create gzip wrapper\n * - `header` (Object) - custom header for gzip\n * - `text` (Boolean) - true if compressed data believed to be text\n * - `time` (Number) - modification time, unix timestamp\n * - `os` (Number) - operation system code\n * - `extra` (Array) - array of bytes with extra data (max 65536)\n * - `name` (String) - file name (binary string)\n * - `comment` (String) - comment (binary string)\n * - `hcrc` (Boolean) - true if header crc should be added\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * , chunk1 = new Uint8Array([1,2,3,4,5,6,7,8,9])\n * , chunk2 = new Uint8Array([10,11,12,13,14,15,16,17,18,19]);\n *\n * const deflate = new pako.Deflate({ level: 3});\n *\n * deflate.push(chunk1, false);\n * deflate.push(chunk2, true); // true -> last chunk\n *\n * if (deflate.err) { throw new Error(deflate.err); }\n *\n * console.log(deflate.result);\n * ```\n **/\nfunction Deflate$1(options) {\n this.options = common.assign({\n level: Z_DEFAULT_COMPRESSION,\n method: Z_DEFLATED$1,\n chunkSize: 16384,\n windowBits: 15,\n memLevel: 8,\n strategy: Z_DEFAULT_STRATEGY\n }, options || {});\n\n let opt = this.options;\n\n if (opt.raw && (opt.windowBits > 0)) {\n opt.windowBits = -opt.windowBits;\n }\n\n else if (opt.gzip && (opt.windowBits > 0) && (opt.windowBits < 16)) {\n opt.windowBits += 16;\n }\n\n this.err = 0; // error code, if happens (0 = Z_OK)\n this.msg = ''; // error message\n this.ended = false; // used to avoid multiple onEnd() calls\n this.chunks = []; // chunks of compressed data\n\n this.strm = new zstream();\n this.strm.avail_out = 0;\n\n let status = deflate_1$2.deflateInit2(\n this.strm,\n opt.level,\n opt.method,\n opt.windowBits,\n opt.memLevel,\n opt.strategy\n );\n\n if (status !== Z_OK$2) {\n throw new Error(messages[status]);\n }\n\n if (opt.header) {\n deflate_1$2.deflateSetHeader(this.strm, opt.header);\n }\n\n if (opt.dictionary) {\n let dict;\n // Convert data if needed\n if (typeof opt.dictionary === 'string') {\n // If we need to compress text, change encoding to utf8.\n dict = strings.string2buf(opt.dictionary);\n } else if (toString$1.call(opt.dictionary) === '[object ArrayBuffer]') {\n dict = new Uint8Array(opt.dictionary);\n } else {\n dict = opt.dictionary;\n }\n\n status = deflate_1$2.deflateSetDictionary(this.strm, dict);\n\n if (status !== Z_OK$2) {\n throw new Error(messages[status]);\n }\n\n this._dict_set = true;\n }\n}\n\n/**\n * Deflate#push(data[, flush_mode]) -> Boolean\n * - data (Uint8Array|ArrayBuffer|String): input data. Strings will be\n * converted to utf8 byte sequence.\n * - flush_mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.\n * See constants. Skipped or `false` means Z_NO_FLUSH, `true` means Z_FINISH.\n *\n * Sends input data to deflate pipe, generating [[Deflate#onData]] calls with\n * new compressed chunks. Returns `true` on success. The last data block must\n * have `flush_mode` Z_FINISH (or `true`). That will flush internal pending\n * buffers and call [[Deflate#onEnd]].\n *\n * On fail call [[Deflate#onEnd]] with error code and return false.\n *\n * ##### Example\n *\n * ```javascript\n * push(chunk, false); // push one of data chunks\n * ...\n * push(chunk, true); // push last chunk\n * ```\n **/\nDeflate$1.prototype.push = function (data, flush_mode) {\n const strm = this.strm;\n const chunkSize = this.options.chunkSize;\n let status, _flush_mode;\n\n if (this.ended) { return false; }\n\n if (flush_mode === ~~flush_mode) _flush_mode = flush_mode;\n else _flush_mode = flush_mode === true ? Z_FINISH$2 : Z_NO_FLUSH$1;\n\n // Convert data if needed\n if (typeof data === 'string') {\n // If we need to compress text, change encoding to utf8.\n strm.input = strings.string2buf(data);\n } else if (toString$1.call(data) === '[object ArrayBuffer]') {\n strm.input = new Uint8Array(data);\n } else {\n strm.input = data;\n }\n\n strm.next_in = 0;\n strm.avail_in = strm.input.length;\n\n for (;;) {\n if (strm.avail_out === 0) {\n strm.output = new Uint8Array(chunkSize);\n strm.next_out = 0;\n strm.avail_out = chunkSize;\n }\n\n // Make sure avail_out > 6 to avoid repeating markers\n if ((_flush_mode === Z_SYNC_FLUSH || _flush_mode === Z_FULL_FLUSH) && strm.avail_out <= 6) {\n this.onData(strm.output.subarray(0, strm.next_out));\n strm.avail_out = 0;\n continue;\n }\n\n status = deflate_1$2.deflate(strm, _flush_mode);\n\n // Ended => flush and finish\n if (status === Z_STREAM_END$2) {\n if (strm.next_out > 0) {\n this.onData(strm.output.subarray(0, strm.next_out));\n }\n status = deflate_1$2.deflateEnd(this.strm);\n this.onEnd(status);\n this.ended = true;\n return status === Z_OK$2;\n }\n\n // Flush if out buffer full\n if (strm.avail_out === 0) {\n this.onData(strm.output);\n continue;\n }\n\n // Flush if requested and has data\n if (_flush_mode > 0 && strm.next_out > 0) {\n this.onData(strm.output.subarray(0, strm.next_out));\n strm.avail_out = 0;\n continue;\n }\n\n if (strm.avail_in === 0) break;\n }\n\n return true;\n};\n\n\n/**\n * Deflate#onData(chunk) -> Void\n * - chunk (Uint8Array): output data.\n *\n * By default, stores data blocks in `chunks[]` property and glue\n * those in `onEnd`. Override this handler, if you need another behaviour.\n **/\nDeflate$1.prototype.onData = function (chunk) {\n this.chunks.push(chunk);\n};\n\n\n/**\n * Deflate#onEnd(status) -> Void\n * - status (Number): deflate status. 0 (Z_OK) on success,\n * other if not.\n *\n * Called once after you tell deflate that the input stream is\n * complete (Z_FINISH). By default - join collected chunks,\n * free memory and fill `results` / `err` properties.\n **/\nDeflate$1.prototype.onEnd = function (status) {\n // On success - join\n if (status === Z_OK$2) {\n this.result = common.flattenChunks(this.chunks);\n }\n this.chunks = [];\n this.err = status;\n this.msg = this.strm.msg;\n};\n\n\n/**\n * deflate(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * Compress `data` with deflate algorithm and `options`.\n *\n * Supported options are:\n *\n * - level\n * - windowBits\n * - memLevel\n * - strategy\n * - dictionary\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Sugar (options):\n *\n * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify\n * negative windowBits implicitly.\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * const data = new Uint8Array([1,2,3,4,5,6,7,8,9]);\n *\n * console.log(pako.deflate(data));\n * ```\n **/\nfunction deflate$1(input, options) {\n const deflator = new Deflate$1(options);\n\n deflator.push(input, true);\n\n // That will never happens, if you don't cheat with options :)\n if (deflator.err) { throw deflator.msg || messages[deflator.err]; }\n\n return deflator.result;\n}\n\n\n/**\n * deflateRaw(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * The same as [[deflate]], but creates raw data, without wrapper\n * (header and adler32 crc).\n **/\nfunction deflateRaw$1(input, options) {\n options = options || {};\n options.raw = true;\n return deflate$1(input, options);\n}\n\n\n/**\n * gzip(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * The same as [[deflate]], but create gzip wrapper instead of\n * deflate one.\n **/\nfunction gzip$1(input, options) {\n options = options || {};\n options.gzip = true;\n return deflate$1(input, options);\n}\n\n\nvar Deflate_1$1 = Deflate$1;\nvar deflate_2 = deflate$1;\nvar deflateRaw_1$1 = deflateRaw$1;\nvar gzip_1$1 = gzip$1;\nvar constants$1 = constants$2;\n\nvar deflate_1$1 = {\n\tDeflate: Deflate_1$1,\n\tdeflate: deflate_2,\n\tdeflateRaw: deflateRaw_1$1,\n\tgzip: gzip_1$1,\n\tconstants: constants$1\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n// See state defs from inflate.js\nconst BAD$1 = 16209; /* got a data error -- remain here until reset */\nconst TYPE$1 = 16191; /* i: waiting for type bits, including last-flag bit */\n\n/*\n Decode literal, length, and distance codes and write out the resulting\n literal and match bytes until either not enough input or output is\n available, an end-of-block is encountered, or a data error is encountered.\n When large enough input and output buffers are supplied to inflate(), for\n example, a 16K input buffer and a 64K output buffer, more than 95% of the\n inflate execution time is spent in this routine.\n\n Entry assumptions:\n\n state.mode === LEN\n strm.avail_in >= 6\n strm.avail_out >= 258\n start >= strm.avail_out\n state.bits < 8\n\n On return, state.mode is one of:\n\n LEN -- ran out of enough output space or enough available input\n TYPE -- reached end of block code, inflate() to interpret next block\n BAD -- error in block data\n\n Notes:\n\n - The maximum input bits used by a length/distance pair is 15 bits for the\n length code, 5 bits for the length extra, 15 bits for the distance code,\n and 13 bits for the distance extra. This totals 48 bits, or six bytes.\n Therefore if strm.avail_in >= 6, then there is enough input to avoid\n checking for available input while decoding.\n\n - The maximum bytes that a single length/distance pair can output is 258\n bytes, which is the maximum length that can be coded. inflate_fast()\n requires strm.avail_out >= 258 for each loop to avoid checking for\n output space.\n */\nvar inffast = function inflate_fast(strm, start) {\n let _in; /* local strm.input */\n let last; /* have enough input while in < last */\n let _out; /* local strm.output */\n let beg; /* inflate()'s initial strm.output */\n let end; /* while out < end, enough space available */\n//#ifdef INFLATE_STRICT\n let dmax; /* maximum distance from zlib header */\n//#endif\n let wsize; /* window size or zero if not using window */\n let whave; /* valid bytes in the window */\n let wnext; /* window write index */\n // Use `s_window` instead `window`, avoid conflict with instrumentation tools\n let s_window; /* allocated sliding window, if wsize != 0 */\n let hold; /* local strm.hold */\n let bits; /* local strm.bits */\n let lcode; /* local strm.lencode */\n let dcode; /* local strm.distcode */\n let lmask; /* mask for first level of length codes */\n let dmask; /* mask for first level of distance codes */\n let here; /* retrieved table entry */\n let op; /* code bits, operation, extra bits, or */\n /* window position, window bytes to copy */\n let len; /* match length, unused bytes */\n let dist; /* match distance */\n let from; /* where to copy match from */\n let from_source;\n\n\n let input, output; // JS specific, because we have no pointers\n\n /* copy state to local variables */\n const state = strm.state;\n //here = state.here;\n _in = strm.next_in;\n input = strm.input;\n last = _in + (strm.avail_in - 5);\n _out = strm.next_out;\n output = strm.output;\n beg = _out - (start - strm.avail_out);\n end = _out + (strm.avail_out - 257);\n//#ifdef INFLATE_STRICT\n dmax = state.dmax;\n//#endif\n wsize = state.wsize;\n whave = state.whave;\n wnext = state.wnext;\n s_window = state.window;\n hold = state.hold;\n bits = state.bits;\n lcode = state.lencode;\n dcode = state.distcode;\n lmask = (1 << state.lenbits) - 1;\n dmask = (1 << state.distbits) - 1;\n\n\n /* decode literals and length/distances until end-of-block or not enough\n input data or output space */\n\n top:\n do {\n if (bits < 15) {\n hold += input[_in++] << bits;\n bits += 8;\n hold += input[_in++] << bits;\n bits += 8;\n }\n\n here = lcode[hold & lmask];\n\n dolen:\n for (;;) { // Goto emulation\n op = here >>> 24/*here.bits*/;\n hold >>>= op;\n bits -= op;\n op = (here >>> 16) & 0xff/*here.op*/;\n if (op === 0) { /* literal */\n //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?\n // \"inflate: literal '%c'\\n\" :\n // \"inflate: literal 0x%02x\\n\", here.val));\n output[_out++] = here & 0xffff/*here.val*/;\n }\n else if (op & 16) { /* length base */\n len = here & 0xffff/*here.val*/;\n op &= 15; /* number of extra bits */\n if (op) {\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n }\n len += hold & ((1 << op) - 1);\n hold >>>= op;\n bits -= op;\n }\n //Tracevv((stderr, \"inflate: length %u\\n\", len));\n if (bits < 15) {\n hold += input[_in++] << bits;\n bits += 8;\n hold += input[_in++] << bits;\n bits += 8;\n }\n here = dcode[hold & dmask];\n\n dodist:\n for (;;) { // goto emulation\n op = here >>> 24/*here.bits*/;\n hold >>>= op;\n bits -= op;\n op = (here >>> 16) & 0xff/*here.op*/;\n\n if (op & 16) { /* distance base */\n dist = here & 0xffff/*here.val*/;\n op &= 15; /* number of extra bits */\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n }\n }\n dist += hold & ((1 << op) - 1);\n//#ifdef INFLATE_STRICT\n if (dist > dmax) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD$1;\n break top;\n }\n//#endif\n hold >>>= op;\n bits -= op;\n //Tracevv((stderr, \"inflate: distance %u\\n\", dist));\n op = _out - beg; /* max distance in output */\n if (dist > op) { /* see if copy from window */\n op = dist - op; /* distance back in window */\n if (op > whave) {\n if (state.sane) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD$1;\n break top;\n }\n\n// (!) This block is disabled in zlib defaults,\n// don't enable it for binary compatibility\n//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR\n// if (len <= op - whave) {\n// do {\n// output[_out++] = 0;\n// } while (--len);\n// continue top;\n// }\n// len -= op - whave;\n// do {\n// output[_out++] = 0;\n// } while (--op > whave);\n// if (op === 0) {\n// from = _out - dist;\n// do {\n// output[_out++] = output[from++];\n// } while (--len);\n// continue top;\n// }\n//#endif\n }\n from = 0; // window index\n from_source = s_window;\n if (wnext === 0) { /* very common case */\n from += wsize - op;\n if (op < len) { /* some from window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n else if (wnext < op) { /* wrap around window */\n from += wsize + wnext - op;\n op -= wnext;\n if (op < len) { /* some from end of window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = 0;\n if (wnext < len) { /* some from start of window */\n op = wnext;\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n }\n else { /* contiguous in window */\n from += wnext - op;\n if (op < len) { /* some from window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n while (len > 2) {\n output[_out++] = from_source[from++];\n output[_out++] = from_source[from++];\n output[_out++] = from_source[from++];\n len -= 3;\n }\n if (len) {\n output[_out++] = from_source[from++];\n if (len > 1) {\n output[_out++] = from_source[from++];\n }\n }\n }\n else {\n from = _out - dist; /* copy direct from output */\n do { /* minimum length is three */\n output[_out++] = output[from++];\n output[_out++] = output[from++];\n output[_out++] = output[from++];\n len -= 3;\n } while (len > 2);\n if (len) {\n output[_out++] = output[from++];\n if (len > 1) {\n output[_out++] = output[from++];\n }\n }\n }\n }\n else if ((op & 64) === 0) { /* 2nd level distance code */\n here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];\n continue dodist;\n }\n else {\n strm.msg = 'invalid distance code';\n state.mode = BAD$1;\n break top;\n }\n\n break; // need to emulate goto via \"continue\"\n }\n }\n else if ((op & 64) === 0) { /* 2nd level length code */\n here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];\n continue dolen;\n }\n else if (op & 32) { /* end-of-block */\n //Tracevv((stderr, \"inflate: end of block\\n\"));\n state.mode = TYPE$1;\n break top;\n }\n else {\n strm.msg = 'invalid literal/length code';\n state.mode = BAD$1;\n break top;\n }\n\n break; // need to emulate goto via \"continue\"\n }\n } while (_in < last && _out < end);\n\n /* return unused bytes (on entry, bits < 8, so in won't go too far back) */\n len = bits >> 3;\n _in -= len;\n bits -= len << 3;\n hold &= (1 << bits) - 1;\n\n /* update state and return */\n strm.next_in = _in;\n strm.next_out = _out;\n strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last));\n strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));\n state.hold = hold;\n state.bits = bits;\n return;\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst MAXBITS = 15;\nconst ENOUGH_LENS$1 = 852;\nconst ENOUGH_DISTS$1 = 592;\n//const ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);\n\nconst CODES$1 = 0;\nconst LENS$1 = 1;\nconst DISTS$1 = 2;\n\nconst lbase = new Uint16Array([ /* Length codes 257..285 base */\n 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,\n 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0\n]);\n\nconst lext = new Uint8Array([ /* Length codes 257..285 extra */\n 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,\n 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78\n]);\n\nconst dbase = new Uint16Array([ /* Distance codes 0..29 base */\n 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,\n 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,\n 8193, 12289, 16385, 24577, 0, 0\n]);\n\nconst dext = new Uint8Array([ /* Distance codes 0..29 extra */\n 16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,\n 23, 23, 24, 24, 25, 25, 26, 26, 27, 27,\n 28, 28, 29, 29, 64, 64\n]);\n\nconst inflate_table = (type, lens, lens_index, codes, table, table_index, work, opts) =>\n{\n const bits = opts.bits;\n //here = opts.here; /* table entry for duplication */\n\n let len = 0; /* a code's length in bits */\n let sym = 0; /* index of code symbols */\n let min = 0, max = 0; /* minimum and maximum code lengths */\n let root = 0; /* number of index bits for root table */\n let curr = 0; /* number of index bits for current table */\n let drop = 0; /* code bits to drop for sub-table */\n let left = 0; /* number of prefix codes available */\n let used = 0; /* code entries in table used */\n let huff = 0; /* Huffman code */\n let incr; /* for incrementing code, index */\n let fill; /* index for replicating entries */\n let low; /* low bits for current root entry */\n let mask; /* mask for low root bits */\n let next; /* next available space in table */\n let base = null; /* base value table to use */\n// let shoextra; /* extra bits table to use */\n let match; /* use base and extra for symbol >= match */\n const count = new Uint16Array(MAXBITS + 1); //[MAXBITS+1]; /* number of codes of each length */\n const offs = new Uint16Array(MAXBITS + 1); //[MAXBITS+1]; /* offsets in table for each length */\n let extra = null;\n\n let here_bits, here_op, here_val;\n\n /*\n Process a set of code lengths to create a canonical Huffman code. The\n code lengths are lens[0..codes-1]. Each length corresponds to the\n symbols 0..codes-1. The Huffman code is generated by first sorting the\n symbols by length from short to long, and retaining the symbol order\n for codes with equal lengths. Then the code starts with all zero bits\n for the first code of the shortest length, and the codes are integer\n increments for the same length, and zeros are appended as the length\n increases. For the deflate format, these bits are stored backwards\n from their more natural integer increment ordering, and so when the\n decoding tables are built in the large loop below, the integer codes\n are incremented backwards.\n\n This routine assumes, but does not check, that all of the entries in\n lens[] are in the range 0..MAXBITS. The caller must assure this.\n 1..MAXBITS is interpreted as that code length. zero means that that\n symbol does not occur in this code.\n\n The codes are sorted by computing a count of codes for each length,\n creating from that a table of starting indices for each length in the\n sorted table, and then entering the symbols in order in the sorted\n table. The sorted table is work[], with that space being provided by\n the caller.\n\n The length counts are used for other purposes as well, i.e. finding\n the minimum and maximum length codes, determining if there are any\n codes at all, checking for a valid set of lengths, and looking ahead\n at length counts to determine sub-table sizes when building the\n decoding tables.\n */\n\n /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */\n for (len = 0; len <= MAXBITS; len++) {\n count[len] = 0;\n }\n for (sym = 0; sym < codes; sym++) {\n count[lens[lens_index + sym]]++;\n }\n\n /* bound code lengths, force root to be within code lengths */\n root = bits;\n for (max = MAXBITS; max >= 1; max--) {\n if (count[max] !== 0) { break; }\n }\n if (root > max) {\n root = max;\n }\n if (max === 0) { /* no symbols to code at all */\n //table.op[opts.table_index] = 64; //here.op = (var char)64; /* invalid code marker */\n //table.bits[opts.table_index] = 1; //here.bits = (var char)1;\n //table.val[opts.table_index++] = 0; //here.val = (var short)0;\n table[table_index++] = (1 << 24) | (64 << 16) | 0;\n\n\n //table.op[opts.table_index] = 64;\n //table.bits[opts.table_index] = 1;\n //table.val[opts.table_index++] = 0;\n table[table_index++] = (1 << 24) | (64 << 16) | 0;\n\n opts.bits = 1;\n return 0; /* no symbols, but wait for decoding to report error */\n }\n for (min = 1; min < max; min++) {\n if (count[min] !== 0) { break; }\n }\n if (root < min) {\n root = min;\n }\n\n /* check for an over-subscribed or incomplete set of lengths */\n left = 1;\n for (len = 1; len <= MAXBITS; len++) {\n left <<= 1;\n left -= count[len];\n if (left < 0) {\n return -1;\n } /* over-subscribed */\n }\n if (left > 0 && (type === CODES$1 || max !== 1)) {\n return -1; /* incomplete set */\n }\n\n /* generate offsets into symbol table for each length for sorting */\n offs[1] = 0;\n for (len = 1; len < MAXBITS; len++) {\n offs[len + 1] = offs[len] + count[len];\n }\n\n /* sort symbols by length, by symbol order within each length */\n for (sym = 0; sym < codes; sym++) {\n if (lens[lens_index + sym] !== 0) {\n work[offs[lens[lens_index + sym]]++] = sym;\n }\n }\n\n /*\n Create and fill in decoding tables. In this loop, the table being\n filled is at next and has curr index bits. The code being used is huff\n with length len. That code is converted to an index by dropping drop\n bits off of the bottom. For codes where len is less than drop + curr,\n those top drop + curr - len bits are incremented through all values to\n fill the table with replicated entries.\n\n root is the number of index bits for the root table. When len exceeds\n root, sub-tables are created pointed to by the root entry with an index\n of the low root bits of huff. This is saved in low to check for when a\n new sub-table should be started. drop is zero when the root table is\n being filled, and drop is root when sub-tables are being filled.\n\n When a new sub-table is needed, it is necessary to look ahead in the\n code lengths to determine what size sub-table is needed. The length\n counts are used for this, and so count[] is decremented as codes are\n entered in the tables.\n\n used keeps track of how many table entries have been allocated from the\n provided *table space. It is checked for LENS and DIST tables against\n the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in\n the initial root table size constants. See the comments in inftrees.h\n for more information.\n\n sym increments through all symbols, and the loop terminates when\n all codes of length max, i.e. all codes, have been processed. This\n routine permits incomplete codes, so another loop after this one fills\n in the rest of the decoding tables with invalid code markers.\n */\n\n /* set up for code type */\n // poor man optimization - use if-else instead of switch,\n // to avoid deopts in old v8\n if (type === CODES$1) {\n base = extra = work; /* dummy value--not used */\n match = 20;\n\n } else if (type === LENS$1) {\n base = lbase;\n extra = lext;\n match = 257;\n\n } else { /* DISTS */\n base = dbase;\n extra = dext;\n match = 0;\n }\n\n /* initialize opts for loop */\n huff = 0; /* starting code */\n sym = 0; /* starting code symbol */\n len = min; /* starting code length */\n next = table_index; /* current table to fill in */\n curr = root; /* current table index bits */\n drop = 0; /* current bits to drop from code for index */\n low = -1; /* trigger new sub-table when len > root */\n used = 1 << root; /* use root table entries */\n mask = used - 1; /* mask for comparing low */\n\n /* check available table space */\n if ((type === LENS$1 && used > ENOUGH_LENS$1) ||\n (type === DISTS$1 && used > ENOUGH_DISTS$1)) {\n return 1;\n }\n\n /* process all codes and make table entries */\n for (;;) {\n /* create table entry */\n here_bits = len - drop;\n if (work[sym] + 1 < match) {\n here_op = 0;\n here_val = work[sym];\n }\n else if (work[sym] >= match) {\n here_op = extra[work[sym] - match];\n here_val = base[work[sym] - match];\n }\n else {\n here_op = 32 + 64; /* end of block */\n here_val = 0;\n }\n\n /* replicate for those indices with low len bits equal to huff */\n incr = 1 << (len - drop);\n fill = 1 << curr;\n min = fill; /* save offset to next table */\n do {\n fill -= incr;\n table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;\n } while (fill !== 0);\n\n /* backwards increment the len-bit code huff */\n incr = 1 << (len - 1);\n while (huff & incr) {\n incr >>= 1;\n }\n if (incr !== 0) {\n huff &= incr - 1;\n huff += incr;\n } else {\n huff = 0;\n }\n\n /* go to next symbol, update count, len */\n sym++;\n if (--count[len] === 0) {\n if (len === max) { break; }\n len = lens[lens_index + work[sym]];\n }\n\n /* create new sub-table if needed */\n if (len > root && (huff & mask) !== low) {\n /* if first time, transition to sub-tables */\n if (drop === 0) {\n drop = root;\n }\n\n /* increment past last table */\n next += min; /* here min is 1 << curr */\n\n /* determine length of next table */\n curr = len - drop;\n left = 1 << curr;\n while (curr + drop < max) {\n left -= count[curr + drop];\n if (left <= 0) { break; }\n curr++;\n left <<= 1;\n }\n\n /* check for enough space */\n used += 1 << curr;\n if ((type === LENS$1 && used > ENOUGH_LENS$1) ||\n (type === DISTS$1 && used > ENOUGH_DISTS$1)) {\n return 1;\n }\n\n /* point entry in root table to sub-table */\n low = huff & mask;\n /*table.op[low] = curr;\n table.bits[low] = root;\n table.val[low] = next - opts.table_index;*/\n table[low] = (root << 24) | (curr << 16) | (next - table_index) |0;\n }\n }\n\n /* fill in remaining table entry if code is incomplete (guaranteed to have\n at most one remaining entry, since if the code is incomplete, the\n maximum code length that was allowed to get this far is one bit) */\n if (huff !== 0) {\n //table.op[next + huff] = 64; /* invalid code marker */\n //table.bits[next + huff] = len - drop;\n //table.val[next + huff] = 0;\n table[next + huff] = ((len - drop) << 24) | (64 << 16) |0;\n }\n\n /* set return parameters */\n //opts.table_index += used;\n opts.bits = root;\n return 0;\n};\n\n\nvar inftrees = inflate_table;\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n\n\n\n\n\nconst CODES = 0;\nconst LENS = 1;\nconst DISTS = 2;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_FINISH: Z_FINISH$1, Z_BLOCK, Z_TREES,\n Z_OK: Z_OK$1, Z_STREAM_END: Z_STREAM_END$1, Z_NEED_DICT: Z_NEED_DICT$1, Z_STREAM_ERROR: Z_STREAM_ERROR$1, Z_DATA_ERROR: Z_DATA_ERROR$1, Z_MEM_ERROR: Z_MEM_ERROR$1, Z_BUF_ERROR,\n Z_DEFLATED\n} = constants$2;\n\n\n/* STATES ====================================================================*/\n/* ===========================================================================*/\n\n\nconst HEAD = 16180; /* i: waiting for magic header */\nconst FLAGS = 16181; /* i: waiting for method and flags (gzip) */\nconst TIME = 16182; /* i: waiting for modification time (gzip) */\nconst OS = 16183; /* i: waiting for extra flags and operating system (gzip) */\nconst EXLEN = 16184; /* i: waiting for extra length (gzip) */\nconst EXTRA = 16185; /* i: waiting for extra bytes (gzip) */\nconst NAME = 16186; /* i: waiting for end of file name (gzip) */\nconst COMMENT = 16187; /* i: waiting for end of comment (gzip) */\nconst HCRC = 16188; /* i: waiting for header crc (gzip) */\nconst DICTID = 16189; /* i: waiting for dictionary check value */\nconst DICT = 16190; /* waiting for inflateSetDictionary() call */\nconst TYPE = 16191; /* i: waiting for type bits, including last-flag bit */\nconst TYPEDO = 16192; /* i: same, but skip check to exit inflate on new block */\nconst STORED = 16193; /* i: waiting for stored size (length and complement) */\nconst COPY_ = 16194; /* i/o: same as COPY below, but only first time in */\nconst COPY = 16195; /* i/o: waiting for input or output to copy stored block */\nconst TABLE = 16196; /* i: waiting for dynamic block table lengths */\nconst LENLENS = 16197; /* i: waiting for code length code lengths */\nconst CODELENS = 16198; /* i: waiting for length/lit and distance code lengths */\nconst LEN_ = 16199; /* i: same as LEN below, but only first time in */\nconst LEN = 16200; /* i: waiting for length/lit/eob code */\nconst LENEXT = 16201; /* i: waiting for length extra bits */\nconst DIST = 16202; /* i: waiting for distance code */\nconst DISTEXT = 16203; /* i: waiting for distance extra bits */\nconst MATCH = 16204; /* o: waiting for output space to copy string */\nconst LIT = 16205; /* o: waiting for output space to write literal */\nconst CHECK = 16206; /* i: waiting for 32-bit check value */\nconst LENGTH = 16207; /* i: waiting for 32-bit length (gzip) */\nconst DONE = 16208; /* finished check, done -- remain here until reset */\nconst BAD = 16209; /* got a data error -- remain here until reset */\nconst MEM = 16210; /* got an inflate() memory error -- remain here until reset */\nconst SYNC = 16211; /* looking for synchronization bytes to restart inflate() */\n\n/* ===========================================================================*/\n\n\n\nconst ENOUGH_LENS = 852;\nconst ENOUGH_DISTS = 592;\n//const ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);\n\nconst MAX_WBITS = 15;\n/* 32K LZ77 window */\nconst DEF_WBITS = MAX_WBITS;\n\n\nconst zswap32 = (q) => {\n\n return (((q >>> 24) & 0xff) +\n ((q >>> 8) & 0xff00) +\n ((q & 0xff00) << 8) +\n ((q & 0xff) << 24));\n};\n\n\nfunction InflateState() {\n this.strm = null; /* pointer back to this zlib stream */\n this.mode = 0; /* current inflate mode */\n this.last = false; /* true if processing last block */\n this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip,\n bit 2 true to validate check value */\n this.havedict = false; /* true if dictionary provided */\n this.flags = 0; /* gzip header method and flags (0 if zlib), or\n -1 if raw or no header yet */\n this.dmax = 0; /* zlib header max distance (INFLATE_STRICT) */\n this.check = 0; /* protected copy of check value */\n this.total = 0; /* protected copy of output count */\n // TODO: may be {}\n this.head = null; /* where to save gzip header information */\n\n /* sliding window */\n this.wbits = 0; /* log base 2 of requested window size */\n this.wsize = 0; /* window size or zero if not using window */\n this.whave = 0; /* valid bytes in the window */\n this.wnext = 0; /* window write index */\n this.window = null; /* allocated sliding window, if needed */\n\n /* bit accumulator */\n this.hold = 0; /* input bit accumulator */\n this.bits = 0; /* number of bits in \"in\" */\n\n /* for string and stored block copying */\n this.length = 0; /* literal or length of data to copy */\n this.offset = 0; /* distance back to copy string from */\n\n /* for table and code decoding */\n this.extra = 0; /* extra bits needed */\n\n /* fixed and dynamic code tables */\n this.lencode = null; /* starting table for length/literal codes */\n this.distcode = null; /* starting table for distance codes */\n this.lenbits = 0; /* index bits for lencode */\n this.distbits = 0; /* index bits for distcode */\n\n /* dynamic table building */\n this.ncode = 0; /* number of code length code lengths */\n this.nlen = 0; /* number of length code lengths */\n this.ndist = 0; /* number of distance code lengths */\n this.have = 0; /* number of code lengths in lens[] */\n this.next = null; /* next available space in codes[] */\n\n this.lens = new Uint16Array(320); /* temporary storage for code lengths */\n this.work = new Uint16Array(288); /* work area for code table building */\n\n /*\n because we don't have pointers in js, we use lencode and distcode directly\n as buffers so we don't need codes\n */\n //this.codes = new Int32Array(ENOUGH); /* space for code tables */\n this.lendyn = null; /* dynamic table for length/literal codes (JS specific) */\n this.distdyn = null; /* dynamic table for distance codes (JS specific) */\n this.sane = 0; /* if false, allow invalid distance too far */\n this.back = 0; /* bits back of last unprocessed length/lit */\n this.was = 0; /* initial length of match */\n}\n\n\nconst inflateStateCheck = (strm) => {\n\n if (!strm) {\n return 1;\n }\n const state = strm.state;\n if (!state || state.strm !== strm ||\n state.mode < HEAD || state.mode > SYNC) {\n return 1;\n }\n return 0;\n};\n\n\nconst inflateResetKeep = (strm) => {\n\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n strm.total_in = strm.total_out = state.total = 0;\n strm.msg = ''; /*Z_NULL*/\n if (state.wrap) { /* to support ill-conceived Java test suite */\n strm.adler = state.wrap & 1;\n }\n state.mode = HEAD;\n state.last = 0;\n state.havedict = 0;\n state.flags = -1;\n state.dmax = 32768;\n state.head = null/*Z_NULL*/;\n state.hold = 0;\n state.bits = 0;\n //state.lencode = state.distcode = state.next = state.codes;\n state.lencode = state.lendyn = new Int32Array(ENOUGH_LENS);\n state.distcode = state.distdyn = new Int32Array(ENOUGH_DISTS);\n\n state.sane = 1;\n state.back = -1;\n //Tracev((stderr, \"inflate: reset\\n\"));\n return Z_OK$1;\n};\n\n\nconst inflateReset = (strm) => {\n\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n state.wsize = 0;\n state.whave = 0;\n state.wnext = 0;\n return inflateResetKeep(strm);\n\n};\n\n\nconst inflateReset2 = (strm, windowBits) => {\n let wrap;\n\n /* get the state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n\n /* extract wrap request from windowBits parameter */\n if (windowBits < 0) {\n wrap = 0;\n windowBits = -windowBits;\n }\n else {\n wrap = (windowBits >> 4) + 5;\n if (windowBits < 48) {\n windowBits &= 15;\n }\n }\n\n /* set number of window bits, free window if different */\n if (windowBits && (windowBits < 8 || windowBits > 15)) {\n return Z_STREAM_ERROR$1;\n }\n if (state.window !== null && state.wbits !== windowBits) {\n state.window = null;\n }\n\n /* update state and reset the rest of it */\n state.wrap = wrap;\n state.wbits = windowBits;\n return inflateReset(strm);\n};\n\n\nconst inflateInit2 = (strm, windowBits) => {\n\n if (!strm) { return Z_STREAM_ERROR$1; }\n //strm.msg = Z_NULL; /* in case we return an error */\n\n const state = new InflateState();\n\n //if (state === Z_NULL) return Z_MEM_ERROR;\n //Tracev((stderr, \"inflate: allocated\\n\"));\n strm.state = state;\n state.strm = strm;\n state.window = null/*Z_NULL*/;\n state.mode = HEAD; /* to pass state test in inflateReset2() */\n const ret = inflateReset2(strm, windowBits);\n if (ret !== Z_OK$1) {\n strm.state = null/*Z_NULL*/;\n }\n return ret;\n};\n\n\nconst inflateInit = (strm) => {\n\n return inflateInit2(strm, DEF_WBITS);\n};\n\n\n/*\n Return state with length and distance decoding tables and index sizes set to\n fixed code decoding. Normally this returns fixed tables from inffixed.h.\n If BUILDFIXED is defined, then instead this routine builds the tables the\n first time it's called, and returns those tables the first time and\n thereafter. This reduces the size of the code by about 2K bytes, in\n exchange for a little execution time. However, BUILDFIXED should not be\n used for threaded applications, since the rewriting of the tables and virgin\n may not be thread-safe.\n */\nlet virgin = true;\n\nlet lenfix, distfix; // We have no pointers in JS, so keep tables separate\n\n\nconst fixedtables = (state) => {\n\n /* build fixed huffman tables if first call (may not be thread safe) */\n if (virgin) {\n lenfix = new Int32Array(512);\n distfix = new Int32Array(32);\n\n /* literal/length table */\n let sym = 0;\n while (sym < 144) { state.lens[sym++] = 8; }\n while (sym < 256) { state.lens[sym++] = 9; }\n while (sym < 280) { state.lens[sym++] = 7; }\n while (sym < 288) { state.lens[sym++] = 8; }\n\n inftrees(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 });\n\n /* distance table */\n sym = 0;\n while (sym < 32) { state.lens[sym++] = 5; }\n\n inftrees(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 });\n\n /* do this just once */\n virgin = false;\n }\n\n state.lencode = lenfix;\n state.lenbits = 9;\n state.distcode = distfix;\n state.distbits = 5;\n};\n\n\n/*\n Update the window with the last wsize (normally 32K) bytes written before\n returning. If window does not exist yet, create it. This is only called\n when a window is already in use, or when output has been written during this\n inflate call, but the end of the deflate stream has not been reached yet.\n It is also called to create a window for dictionary data when a dictionary\n is loaded.\n\n Providing output buffers larger than 32K to inflate() should provide a speed\n advantage, since only the last 32K of output is copied to the sliding window\n upon return from inflate(), and since all distances after the first 32K of\n output will fall in the output data, making match copies simpler and faster.\n The advantage may be dependent on the size of the processor's data caches.\n */\nconst updatewindow = (strm, src, end, copy) => {\n\n let dist;\n const state = strm.state;\n\n /* if it hasn't been done already, allocate space for the window */\n if (state.window === null) {\n state.wsize = 1 << state.wbits;\n state.wnext = 0;\n state.whave = 0;\n\n state.window = new Uint8Array(state.wsize);\n }\n\n /* copy state->wsize or less output bytes into the circular window */\n if (copy >= state.wsize) {\n state.window.set(src.subarray(end - state.wsize, end), 0);\n state.wnext = 0;\n state.whave = state.wsize;\n }\n else {\n dist = state.wsize - state.wnext;\n if (dist > copy) {\n dist = copy;\n }\n //zmemcpy(state->window + state->wnext, end - copy, dist);\n state.window.set(src.subarray(end - copy, end - copy + dist), state.wnext);\n copy -= dist;\n if (copy) {\n //zmemcpy(state->window, end - copy, copy);\n state.window.set(src.subarray(end - copy, end), 0);\n state.wnext = copy;\n state.whave = state.wsize;\n }\n else {\n state.wnext += dist;\n if (state.wnext === state.wsize) { state.wnext = 0; }\n if (state.whave < state.wsize) { state.whave += dist; }\n }\n }\n return 0;\n};\n\n\nconst inflate$2 = (strm, flush) => {\n\n let state;\n let input, output; // input/output buffers\n let next; /* next input INDEX */\n let put; /* next output INDEX */\n let have, left; /* available input and output */\n let hold; /* bit buffer */\n let bits; /* bits in bit buffer */\n let _in, _out; /* save starting available input and output */\n let copy; /* number of stored or match bytes to copy */\n let from; /* where to copy match bytes from */\n let from_source;\n let here = 0; /* current decoding table entry */\n let here_bits, here_op, here_val; // paked \"here\" denormalized (JS specific)\n //let last; /* parent table entry */\n let last_bits, last_op, last_val; // paked \"last\" denormalized (JS specific)\n let len; /* length to copy for repeats, bits to drop */\n let ret; /* return code */\n const hbuf = new Uint8Array(4); /* buffer for gzip header crc calculation */\n let opts;\n\n let n; // temporary variable for NEED_BITS\n\n const order = /* permutation of code lengths */\n new Uint8Array([ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ]);\n\n\n if (inflateStateCheck(strm) || !strm.output ||\n (!strm.input && strm.avail_in !== 0)) {\n return Z_STREAM_ERROR$1;\n }\n\n state = strm.state;\n if (state.mode === TYPE) { state.mode = TYPEDO; } /* skip check */\n\n\n //--- LOAD() ---\n put = strm.next_out;\n output = strm.output;\n left = strm.avail_out;\n next = strm.next_in;\n input = strm.input;\n have = strm.avail_in;\n hold = state.hold;\n bits = state.bits;\n //---\n\n _in = have;\n _out = left;\n ret = Z_OK$1;\n\n inf_leave: // goto emulation\n for (;;) {\n switch (state.mode) {\n case HEAD:\n if (state.wrap === 0) {\n state.mode = TYPEDO;\n break;\n }\n //=== NEEDBITS(16);\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 2) && hold === 0x8b1f) { /* gzip header */\n if (state.wbits === 0) {\n state.wbits = 15;\n }\n state.check = 0/*crc32(0L, Z_NULL, 0)*/;\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = FLAGS;\n break;\n }\n if (state.head) {\n state.head.done = false;\n }\n if (!(state.wrap & 1) || /* check if zlib header allowed */\n (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {\n strm.msg = 'incorrect header check';\n state.mode = BAD;\n break;\n }\n if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {\n strm.msg = 'unknown compression method';\n state.mode = BAD;\n break;\n }\n //--- DROPBITS(4) ---//\n hold >>>= 4;\n bits -= 4;\n //---//\n len = (hold & 0x0f)/*BITS(4)*/ + 8;\n if (state.wbits === 0) {\n state.wbits = len;\n }\n if (len > 15 || len > state.wbits) {\n strm.msg = 'invalid window size';\n state.mode = BAD;\n break;\n }\n\n // !!! pako patch. Force use `options.windowBits` if passed.\n // Required to always use max window size by default.\n state.dmax = 1 << state.wbits;\n //state.dmax = 1 << len;\n\n state.flags = 0; /* indicate zlib header */\n //Tracev((stderr, \"inflate: zlib header ok\\n\"));\n strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;\n state.mode = hold & 0x200 ? DICTID : TYPE;\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n break;\n case FLAGS:\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.flags = hold;\n if ((state.flags & 0xff) !== Z_DEFLATED) {\n strm.msg = 'unknown compression method';\n state.mode = BAD;\n break;\n }\n if (state.flags & 0xe000) {\n strm.msg = 'unknown header flags set';\n state.mode = BAD;\n break;\n }\n if (state.head) {\n state.head.text = ((hold >> 8) & 1);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = TIME;\n /* falls through */\n case TIME:\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if (state.head) {\n state.head.time = hold;\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC4(state.check, hold)\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n hbuf[2] = (hold >>> 16) & 0xff;\n hbuf[3] = (hold >>> 24) & 0xff;\n state.check = crc32_1(state.check, hbuf, 4, 0);\n //===\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = OS;\n /* falls through */\n case OS:\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if (state.head) {\n state.head.xflags = (hold & 0xff);\n state.head.os = (hold >> 8);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = EXLEN;\n /* falls through */\n case EXLEN:\n if (state.flags & 0x0400) {\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.length = hold;\n if (state.head) {\n state.head.extra_len = hold;\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n }\n else if (state.head) {\n state.head.extra = null/*Z_NULL*/;\n }\n state.mode = EXTRA;\n /* falls through */\n case EXTRA:\n if (state.flags & 0x0400) {\n copy = state.length;\n if (copy > have) { copy = have; }\n if (copy) {\n if (state.head) {\n len = state.head.extra_len - state.length;\n if (!state.head.extra) {\n // Use untyped array for more convenient processing later\n state.head.extra = new Uint8Array(state.head.extra_len);\n }\n state.head.extra.set(\n input.subarray(\n next,\n // extra field is limited to 65536 bytes\n // - no need for additional size check\n next + copy\n ),\n /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/\n len\n );\n //zmemcpy(state.head.extra + len, next,\n // len + copy > state.head.extra_max ?\n // state.head.extra_max - len : copy);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n state.length -= copy;\n }\n if (state.length) { break inf_leave; }\n }\n state.length = 0;\n state.mode = NAME;\n /* falls through */\n case NAME:\n if (state.flags & 0x0800) {\n if (have === 0) { break inf_leave; }\n copy = 0;\n do {\n // TODO: 2 or 1 bytes?\n len = input[next + copy++];\n /* use constant limit because in js we should not preallocate memory */\n if (state.head && len &&\n (state.length < 65536 /*state.head.name_max*/)) {\n state.head.name += String.fromCharCode(len);\n }\n } while (len && copy < have);\n\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n if (len) { break inf_leave; }\n }\n else if (state.head) {\n state.head.name = null;\n }\n state.length = 0;\n state.mode = COMMENT;\n /* falls through */\n case COMMENT:\n if (state.flags & 0x1000) {\n if (have === 0) { break inf_leave; }\n copy = 0;\n do {\n len = input[next + copy++];\n /* use constant limit because in js we should not preallocate memory */\n if (state.head && len &&\n (state.length < 65536 /*state.head.comm_max*/)) {\n state.head.comment += String.fromCharCode(len);\n }\n } while (len && copy < have);\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n if (len) { break inf_leave; }\n }\n else if (state.head) {\n state.head.comment = null;\n }\n state.mode = HCRC;\n /* falls through */\n case HCRC:\n if (state.flags & 0x0200) {\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 4) && hold !== (state.check & 0xffff)) {\n strm.msg = 'header crc mismatch';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n }\n if (state.head) {\n state.head.hcrc = ((state.flags >> 9) & 1);\n state.head.done = true;\n }\n strm.adler = state.check = 0;\n state.mode = TYPE;\n break;\n case DICTID:\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n strm.adler = state.check = zswap32(hold);\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = DICT;\n /* falls through */\n case DICT:\n if (state.havedict === 0) {\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n return Z_NEED_DICT$1;\n }\n strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;\n state.mode = TYPE;\n /* falls through */\n case TYPE:\n if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case TYPEDO:\n if (state.last) {\n //--- BYTEBITS() ---//\n hold >>>= bits & 7;\n bits -= bits & 7;\n //---//\n state.mode = CHECK;\n break;\n }\n //=== NEEDBITS(3); */\n while (bits < 3) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.last = (hold & 0x01)/*BITS(1)*/;\n //--- DROPBITS(1) ---//\n hold >>>= 1;\n bits -= 1;\n //---//\n\n switch ((hold & 0x03)/*BITS(2)*/) {\n case 0: /* stored block */\n //Tracev((stderr, \"inflate: stored block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = STORED;\n break;\n case 1: /* fixed block */\n fixedtables(state);\n //Tracev((stderr, \"inflate: fixed codes block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = LEN_; /* decode codes */\n if (flush === Z_TREES) {\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n break inf_leave;\n }\n break;\n case 2: /* dynamic block */\n //Tracev((stderr, \"inflate: dynamic codes block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = TABLE;\n break;\n case 3:\n strm.msg = 'invalid block type';\n state.mode = BAD;\n }\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n break;\n case STORED:\n //--- BYTEBITS() ---// /* go to byte boundary */\n hold >>>= bits & 7;\n bits -= bits & 7;\n //---//\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {\n strm.msg = 'invalid stored block lengths';\n state.mode = BAD;\n break;\n }\n state.length = hold & 0xffff;\n //Tracev((stderr, \"inflate: stored length %u\\n\",\n // state.length));\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = COPY_;\n if (flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case COPY_:\n state.mode = COPY;\n /* falls through */\n case COPY:\n copy = state.length;\n if (copy) {\n if (copy > have) { copy = have; }\n if (copy > left) { copy = left; }\n if (copy === 0) { break inf_leave; }\n //--- zmemcpy(put, next, copy); ---\n output.set(input.subarray(next, next + copy), put);\n //---//\n have -= copy;\n next += copy;\n left -= copy;\n put += copy;\n state.length -= copy;\n break;\n }\n //Tracev((stderr, \"inflate: stored end\\n\"));\n state.mode = TYPE;\n break;\n case TABLE:\n //=== NEEDBITS(14); */\n while (bits < 14) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257;\n //--- DROPBITS(5) ---//\n hold >>>= 5;\n bits -= 5;\n //---//\n state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1;\n //--- DROPBITS(5) ---//\n hold >>>= 5;\n bits -= 5;\n //---//\n state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4;\n //--- DROPBITS(4) ---//\n hold >>>= 4;\n bits -= 4;\n //---//\n//#ifndef PKZIP_BUG_WORKAROUND\n if (state.nlen > 286 || state.ndist > 30) {\n strm.msg = 'too many length or distance symbols';\n state.mode = BAD;\n break;\n }\n//#endif\n //Tracev((stderr, \"inflate: table sizes ok\\n\"));\n state.have = 0;\n state.mode = LENLENS;\n /* falls through */\n case LENLENS:\n while (state.have < state.ncode) {\n //=== NEEDBITS(3);\n while (bits < 3) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.lens[order[state.have++]] = (hold & 0x07);//BITS(3);\n //--- DROPBITS(3) ---//\n hold >>>= 3;\n bits -= 3;\n //---//\n }\n while (state.have < 19) {\n state.lens[order[state.have++]] = 0;\n }\n // We have separate tables & no pointers. 2 commented lines below not needed.\n //state.next = state.codes;\n //state.lencode = state.next;\n // Switch to use dynamic table\n state.lencode = state.lendyn;\n state.lenbits = 7;\n\n opts = { bits: state.lenbits };\n ret = inftrees(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);\n state.lenbits = opts.bits;\n\n if (ret) {\n strm.msg = 'invalid code lengths set';\n state.mode = BAD;\n break;\n }\n //Tracev((stderr, \"inflate: code lengths ok\\n\"));\n state.have = 0;\n state.mode = CODELENS;\n /* falls through */\n case CODELENS:\n while (state.have < state.nlen + state.ndist) {\n for (;;) {\n here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if (here_val < 16) {\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.lens[state.have++] = here_val;\n }\n else {\n if (here_val === 16) {\n //=== NEEDBITS(here.bits + 2);\n n = here_bits + 2;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n if (state.have === 0) {\n strm.msg = 'invalid bit length repeat';\n state.mode = BAD;\n break;\n }\n len = state.lens[state.have - 1];\n copy = 3 + (hold & 0x03);//BITS(2);\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n }\n else if (here_val === 17) {\n //=== NEEDBITS(here.bits + 3);\n n = here_bits + 3;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n len = 0;\n copy = 3 + (hold & 0x07);//BITS(3);\n //--- DROPBITS(3) ---//\n hold >>>= 3;\n bits -= 3;\n //---//\n }\n else {\n //=== NEEDBITS(here.bits + 7);\n n = here_bits + 7;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n len = 0;\n copy = 11 + (hold & 0x7f);//BITS(7);\n //--- DROPBITS(7) ---//\n hold >>>= 7;\n bits -= 7;\n //---//\n }\n if (state.have + copy > state.nlen + state.ndist) {\n strm.msg = 'invalid bit length repeat';\n state.mode = BAD;\n break;\n }\n while (copy--) {\n state.lens[state.have++] = len;\n }\n }\n }\n\n /* handle error breaks in while */\n if (state.mode === BAD) { break; }\n\n /* check for end-of-block code (better have one) */\n if (state.lens[256] === 0) {\n strm.msg = 'invalid code -- missing end-of-block';\n state.mode = BAD;\n break;\n }\n\n /* build code tables -- note: do not change the lenbits or distbits\n values here (9 and 6) without reading the comments in inftrees.h\n concerning the ENOUGH constants, which depend on those values */\n state.lenbits = 9;\n\n opts = { bits: state.lenbits };\n ret = inftrees(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);\n // We have separate tables & no pointers. 2 commented lines below not needed.\n // state.next_index = opts.table_index;\n state.lenbits = opts.bits;\n // state.lencode = state.next;\n\n if (ret) {\n strm.msg = 'invalid literal/lengths set';\n state.mode = BAD;\n break;\n }\n\n state.distbits = 6;\n //state.distcode.copy(state.codes);\n // Switch to use dynamic table\n state.distcode = state.distdyn;\n opts = { bits: state.distbits };\n ret = inftrees(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);\n // We have separate tables & no pointers. 2 commented lines below not needed.\n // state.next_index = opts.table_index;\n state.distbits = opts.bits;\n // state.distcode = state.next;\n\n if (ret) {\n strm.msg = 'invalid distances set';\n state.mode = BAD;\n break;\n }\n //Tracev((stderr, 'inflate: codes ok\\n'));\n state.mode = LEN_;\n if (flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case LEN_:\n state.mode = LEN;\n /* falls through */\n case LEN:\n if (have >= 6 && left >= 258) {\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n inffast(strm, _out);\n //--- LOAD() ---\n put = strm.next_out;\n output = strm.output;\n left = strm.avail_out;\n next = strm.next_in;\n input = strm.input;\n have = strm.avail_in;\n hold = state.hold;\n bits = state.bits;\n //---\n\n if (state.mode === TYPE) {\n state.back = -1;\n }\n break;\n }\n state.back = 0;\n for (;;) {\n here = state.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if (here_bits <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if (here_op && (here_op & 0xf0) === 0) {\n last_bits = here_bits;\n last_op = here_op;\n last_val = here_val;\n for (;;) {\n here = state.lencode[last_val +\n ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((last_bits + here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n //--- DROPBITS(last.bits) ---//\n hold >>>= last_bits;\n bits -= last_bits;\n //---//\n state.back += last_bits;\n }\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.back += here_bits;\n state.length = here_val;\n if (here_op === 0) {\n //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?\n // \"inflate: literal '%c'\\n\" :\n // \"inflate: literal 0x%02x\\n\", here.val));\n state.mode = LIT;\n break;\n }\n if (here_op & 32) {\n //Tracevv((stderr, \"inflate: end of block\\n\"));\n state.back = -1;\n state.mode = TYPE;\n break;\n }\n if (here_op & 64) {\n strm.msg = 'invalid literal/length code';\n state.mode = BAD;\n break;\n }\n state.extra = here_op & 15;\n state.mode = LENEXT;\n /* falls through */\n case LENEXT:\n if (state.extra) {\n //=== NEEDBITS(state.extra);\n n = state.extra;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;\n //--- DROPBITS(state.extra) ---//\n hold >>>= state.extra;\n bits -= state.extra;\n //---//\n state.back += state.extra;\n }\n //Tracevv((stderr, \"inflate: length %u\\n\", state.length));\n state.was = state.length;\n state.mode = DIST;\n /* falls through */\n case DIST:\n for (;;) {\n here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if ((here_op & 0xf0) === 0) {\n last_bits = here_bits;\n last_op = here_op;\n last_val = here_val;\n for (;;) {\n here = state.distcode[last_val +\n ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((last_bits + here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n //--- DROPBITS(last.bits) ---//\n hold >>>= last_bits;\n bits -= last_bits;\n //---//\n state.back += last_bits;\n }\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.back += here_bits;\n if (here_op & 64) {\n strm.msg = 'invalid distance code';\n state.mode = BAD;\n break;\n }\n state.offset = here_val;\n state.extra = (here_op) & 15;\n state.mode = DISTEXT;\n /* falls through */\n case DISTEXT:\n if (state.extra) {\n //=== NEEDBITS(state.extra);\n n = state.extra;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;\n //--- DROPBITS(state.extra) ---//\n hold >>>= state.extra;\n bits -= state.extra;\n //---//\n state.back += state.extra;\n }\n//#ifdef INFLATE_STRICT\n if (state.offset > state.dmax) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD;\n break;\n }\n//#endif\n //Tracevv((stderr, \"inflate: distance %u\\n\", state.offset));\n state.mode = MATCH;\n /* falls through */\n case MATCH:\n if (left === 0) { break inf_leave; }\n copy = _out - left;\n if (state.offset > copy) { /* copy from window */\n copy = state.offset - copy;\n if (copy > state.whave) {\n if (state.sane) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD;\n break;\n }\n// (!) This block is disabled in zlib defaults,\n// don't enable it for binary compatibility\n//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR\n// Trace((stderr, \"inflate.c too far\\n\"));\n// copy -= state.whave;\n// if (copy > state.length) { copy = state.length; }\n// if (copy > left) { copy = left; }\n// left -= copy;\n// state.length -= copy;\n// do {\n// output[put++] = 0;\n// } while (--copy);\n// if (state.length === 0) { state.mode = LEN; }\n// break;\n//#endif\n }\n if (copy > state.wnext) {\n copy -= state.wnext;\n from = state.wsize - copy;\n }\n else {\n from = state.wnext - copy;\n }\n if (copy > state.length) { copy = state.length; }\n from_source = state.window;\n }\n else { /* copy from output */\n from_source = output;\n from = put - state.offset;\n copy = state.length;\n }\n if (copy > left) { copy = left; }\n left -= copy;\n state.length -= copy;\n do {\n output[put++] = from_source[from++];\n } while (--copy);\n if (state.length === 0) { state.mode = LEN; }\n break;\n case LIT:\n if (left === 0) { break inf_leave; }\n output[put++] = state.length;\n left--;\n state.mode = LEN;\n break;\n case CHECK:\n if (state.wrap) {\n //=== NEEDBITS(32);\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n // Use '|' instead of '+' to make sure that result is signed\n hold |= input[next++] << bits;\n bits += 8;\n }\n //===//\n _out -= left;\n strm.total_out += _out;\n state.total += _out;\n if ((state.wrap & 4) && _out) {\n strm.adler = state.check =\n /*UPDATE_CHECK(state.check, put - _out, _out);*/\n (state.flags ? crc32_1(state.check, output, _out, put - _out) : adler32_1(state.check, output, _out, put - _out));\n\n }\n _out = left;\n // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too\n if ((state.wrap & 4) && (state.flags ? hold : zswap32(hold)) !== state.check) {\n strm.msg = 'incorrect data check';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n //Tracev((stderr, \"inflate: check matches trailer\\n\"));\n }\n state.mode = LENGTH;\n /* falls through */\n case LENGTH:\n if (state.wrap && state.flags) {\n //=== NEEDBITS(32);\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 4) && hold !== (state.total & 0xffffffff)) {\n strm.msg = 'incorrect length check';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n //Tracev((stderr, \"inflate: length matches trailer\\n\"));\n }\n state.mode = DONE;\n /* falls through */\n case DONE:\n ret = Z_STREAM_END$1;\n break inf_leave;\n case BAD:\n ret = Z_DATA_ERROR$1;\n break inf_leave;\n case MEM:\n return Z_MEM_ERROR$1;\n case SYNC:\n /* falls through */\n default:\n return Z_STREAM_ERROR$1;\n }\n }\n\n // inf_leave <- here is real place for \"goto inf_leave\", emulated via \"break inf_leave\"\n\n /*\n Return from inflate(), updating the total counts and the check value.\n If there was no progress during the inflate() call, return a buffer\n error. Call updatewindow() to create and/or update the window state.\n Note: a memory error from inflate() is non-recoverable.\n */\n\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n\n if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&\n (state.mode < CHECK || flush !== Z_FINISH$1))) {\n if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) ;\n }\n _in -= strm.avail_in;\n _out -= strm.avail_out;\n strm.total_in += _in;\n strm.total_out += _out;\n state.total += _out;\n if ((state.wrap & 4) && _out) {\n strm.adler = state.check = /*UPDATE_CHECK(state.check, strm.next_out - _out, _out);*/\n (state.flags ? crc32_1(state.check, output, _out, strm.next_out - _out) : adler32_1(state.check, output, _out, strm.next_out - _out));\n }\n strm.data_type = state.bits + (state.last ? 64 : 0) +\n (state.mode === TYPE ? 128 : 0) +\n (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);\n if (((_in === 0 && _out === 0) || flush === Z_FINISH$1) && ret === Z_OK$1) {\n ret = Z_BUF_ERROR;\n }\n return ret;\n};\n\n\nconst inflateEnd = (strm) => {\n\n if (inflateStateCheck(strm)) {\n return Z_STREAM_ERROR$1;\n }\n\n let state = strm.state;\n if (state.window) {\n state.window = null;\n }\n strm.state = null;\n return Z_OK$1;\n};\n\n\nconst inflateGetHeader = (strm, head) => {\n\n /* check state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR$1; }\n\n /* save header structure */\n state.head = head;\n head.done = false;\n return Z_OK$1;\n};\n\n\nconst inflateSetDictionary = (strm, dictionary) => {\n const dictLength = dictionary.length;\n\n let state;\n let dictid;\n let ret;\n\n /* check state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n state = strm.state;\n\n if (state.wrap !== 0 && state.mode !== DICT) {\n return Z_STREAM_ERROR$1;\n }\n\n /* check for correct dictionary identifier */\n if (state.mode === DICT) {\n dictid = 1; /* adler32(0, null, 0)*/\n /* dictid = adler32(dictid, dictionary, dictLength); */\n dictid = adler32_1(dictid, dictionary, dictLength, 0);\n if (dictid !== state.check) {\n return Z_DATA_ERROR$1;\n }\n }\n /* copy dictionary to window using updatewindow(), which will amend the\n existing dictionary if appropriate */\n ret = updatewindow(strm, dictionary, dictLength, dictLength);\n if (ret) {\n state.mode = MEM;\n return Z_MEM_ERROR$1;\n }\n state.havedict = 1;\n // Tracev((stderr, \"inflate: dictionary set\\n\"));\n return Z_OK$1;\n};\n\n\nvar inflateReset_1 = inflateReset;\nvar inflateReset2_1 = inflateReset2;\nvar inflateResetKeep_1 = inflateResetKeep;\nvar inflateInit_1 = inflateInit;\nvar inflateInit2_1 = inflateInit2;\nvar inflate_2$1 = inflate$2;\nvar inflateEnd_1 = inflateEnd;\nvar inflateGetHeader_1 = inflateGetHeader;\nvar inflateSetDictionary_1 = inflateSetDictionary;\nvar inflateInfo = 'pako inflate (from Nodeca project)';\n\n/* Not implemented\nmodule.exports.inflateCodesUsed = inflateCodesUsed;\nmodule.exports.inflateCopy = inflateCopy;\nmodule.exports.inflateGetDictionary = inflateGetDictionary;\nmodule.exports.inflateMark = inflateMark;\nmodule.exports.inflatePrime = inflatePrime;\nmodule.exports.inflateSync = inflateSync;\nmodule.exports.inflateSyncPoint = inflateSyncPoint;\nmodule.exports.inflateUndermine = inflateUndermine;\nmodule.exports.inflateValidate = inflateValidate;\n*/\n\nvar inflate_1$2 = {\n\tinflateReset: inflateReset_1,\n\tinflateReset2: inflateReset2_1,\n\tinflateResetKeep: inflateResetKeep_1,\n\tinflateInit: inflateInit_1,\n\tinflateInit2: inflateInit2_1,\n\tinflate: inflate_2$1,\n\tinflateEnd: inflateEnd_1,\n\tinflateGetHeader: inflateGetHeader_1,\n\tinflateSetDictionary: inflateSetDictionary_1,\n\tinflateInfo: inflateInfo\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nfunction GZheader() {\n /* true if compressed data believed to be text */\n this.text = 0;\n /* modification time */\n this.time = 0;\n /* extra flags (not used when writing a gzip file) */\n this.xflags = 0;\n /* operating system */\n this.os = 0;\n /* pointer to extra field or Z_NULL if none */\n this.extra = null;\n /* extra field length (valid if extra != Z_NULL) */\n this.extra_len = 0; // Actually, we don't need it in JS,\n // but leave for few code modifications\n\n //\n // Setup limits is not necessary because in js we should not preallocate memory\n // for inflate use constant limit in 65536 bytes\n //\n\n /* space at extra (only when reading header) */\n // this.extra_max = 0;\n /* pointer to zero-terminated file name or Z_NULL */\n this.name = '';\n /* space at name (only when reading header) */\n // this.name_max = 0;\n /* pointer to zero-terminated comment or Z_NULL */\n this.comment = '';\n /* space at comment (only when reading header) */\n // this.comm_max = 0;\n /* true if there was or will be a header crc */\n this.hcrc = 0;\n /* true when done reading gzip header (not used when writing a gzip file) */\n this.done = false;\n}\n\nvar gzheader = GZheader;\n\nconst toString = Object.prototype.toString;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH, Z_FINISH,\n Z_OK, Z_STREAM_END, Z_NEED_DICT, Z_STREAM_ERROR, Z_DATA_ERROR, Z_MEM_ERROR\n} = constants$2;\n\n/* ===========================================================================*/\n\n\n/**\n * class Inflate\n *\n * Generic JS-style wrapper for zlib calls. If you don't need\n * streaming behaviour - use more simple functions: [[inflate]]\n * and [[inflateRaw]].\n **/\n\n/* internal\n * inflate.chunks -> Array\n *\n * Chunks of output data, if [[Inflate#onData]] not overridden.\n **/\n\n/**\n * Inflate.result -> Uint8Array|String\n *\n * Uncompressed result, generated by default [[Inflate#onData]]\n * and [[Inflate#onEnd]] handlers. Filled after you push last chunk\n * (call [[Inflate#push]] with `Z_FINISH` / `true` param).\n **/\n\n/**\n * Inflate.err -> Number\n *\n * Error code after inflate finished. 0 (Z_OK) on success.\n * Should be checked if broken data possible.\n **/\n\n/**\n * Inflate.msg -> String\n *\n * Error message, if [[Inflate.err]] != 0\n **/\n\n\n/**\n * new Inflate(options)\n * - options (Object): zlib inflate options.\n *\n * Creates new inflator instance with specified params. Throws exception\n * on bad params. Supported options:\n *\n * - `windowBits`\n * - `dictionary`\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Additional options, for internal needs:\n *\n * - `chunkSize` - size of generated data chunks (16K by default)\n * - `raw` (Boolean) - do raw inflate\n * - `to` (String) - if equal to 'string', then result will be converted\n * from utf8 to utf16 (javascript) string. When string output requested,\n * chunk length can differ from `chunkSize`, depending on content.\n *\n * By default, when no options set, autodetect deflate/gzip data format via\n * wrapper header.\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * const chunk1 = new Uint8Array([1,2,3,4,5,6,7,8,9])\n * const chunk2 = new Uint8Array([10,11,12,13,14,15,16,17,18,19]);\n *\n * const inflate = new pako.Inflate({ level: 3});\n *\n * inflate.push(chunk1, false);\n * inflate.push(chunk2, true); // true -> last chunk\n *\n * if (inflate.err) { throw new Error(inflate.err); }\n *\n * console.log(inflate.result);\n * ```\n **/\nfunction Inflate$1(options) {\n this.options = common.assign({\n chunkSize: 1024 * 64,\n windowBits: 15,\n to: ''\n }, options || {});\n\n const opt = this.options;\n\n // Force window size for `raw` data, if not set directly,\n // because we have no header for autodetect.\n if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) {\n opt.windowBits = -opt.windowBits;\n if (opt.windowBits === 0) { opt.windowBits = -15; }\n }\n\n // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate\n if ((opt.windowBits >= 0) && (opt.windowBits < 16) &&\n !(options && options.windowBits)) {\n opt.windowBits += 32;\n }\n\n // Gzip header has no info about windows size, we can do autodetect only\n // for deflate. So, if window size not set, force it to max when gzip possible\n if ((opt.windowBits > 15) && (opt.windowBits < 48)) {\n // bit 3 (16) -> gzipped data\n // bit 4 (32) -> autodetect gzip/deflate\n if ((opt.windowBits & 15) === 0) {\n opt.windowBits |= 15;\n }\n }\n\n this.err = 0; // error code, if happens (0 = Z_OK)\n this.msg = ''; // error message\n this.ended = false; // used to avoid multiple onEnd() calls\n this.chunks = []; // chunks of compressed data\n\n this.strm = new zstream();\n this.strm.avail_out = 0;\n\n let status = inflate_1$2.inflateInit2(\n this.strm,\n opt.windowBits\n );\n\n if (status !== Z_OK) {\n throw new Error(messages[status]);\n }\n\n this.header = new gzheader();\n\n inflate_1$2.inflateGetHeader(this.strm, this.header);\n\n // Setup dictionary\n if (opt.dictionary) {\n // Convert data if needed\n if (typeof opt.dictionary === 'string') {\n opt.dictionary = strings.string2buf(opt.dictionary);\n } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {\n opt.dictionary = new Uint8Array(opt.dictionary);\n }\n if (opt.raw) { //In raw mode we need to set the dictionary early\n status = inflate_1$2.inflateSetDictionary(this.strm, opt.dictionary);\n if (status !== Z_OK) {\n throw new Error(messages[status]);\n }\n }\n }\n}\n\n/**\n * Inflate#push(data[, flush_mode]) -> Boolean\n * - data (Uint8Array|ArrayBuffer): input data\n * - flush_mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE\n * flush modes. See constants. Skipped or `false` means Z_NO_FLUSH,\n * `true` means Z_FINISH.\n *\n * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with\n * new output chunks. Returns `true` on success. If end of stream detected,\n * [[Inflate#onEnd]] will be called.\n *\n * `flush_mode` is not needed for normal operation, because end of stream\n * detected automatically. You may try to use it for advanced things, but\n * this functionality was not tested.\n *\n * On fail call [[Inflate#onEnd]] with error code and return false.\n *\n * ##### Example\n *\n * ```javascript\n * push(chunk, false); // push one of data chunks\n * ...\n * push(chunk, true); // push last chunk\n * ```\n **/\nInflate$1.prototype.push = function (data, flush_mode) {\n const strm = this.strm;\n const chunkSize = this.options.chunkSize;\n const dictionary = this.options.dictionary;\n let status, _flush_mode, last_avail_out;\n\n if (this.ended) return false;\n\n if (flush_mode === ~~flush_mode) _flush_mode = flush_mode;\n else _flush_mode = flush_mode === true ? Z_FINISH : Z_NO_FLUSH;\n\n // Convert data if needed\n if (toString.call(data) === '[object ArrayBuffer]') {\n strm.input = new Uint8Array(data);\n } else {\n strm.input = data;\n }\n\n strm.next_in = 0;\n strm.avail_in = strm.input.length;\n\n for (;;) {\n if (strm.avail_out === 0) {\n strm.output = new Uint8Array(chunkSize);\n strm.next_out = 0;\n strm.avail_out = chunkSize;\n }\n\n status = inflate_1$2.inflate(strm, _flush_mode);\n\n if (status === Z_NEED_DICT && dictionary) {\n status = inflate_1$2.inflateSetDictionary(strm, dictionary);\n\n if (status === Z_OK) {\n status = inflate_1$2.inflate(strm, _flush_mode);\n } else if (status === Z_DATA_ERROR) {\n // Replace code with more verbose\n status = Z_NEED_DICT;\n }\n }\n\n // Skip snyc markers if more data follows and not raw mode\n while (strm.avail_in > 0 &&\n status === Z_STREAM_END &&\n strm.state.wrap > 0 &&\n data[strm.next_in] !== 0)\n {\n inflate_1$2.inflateReset(strm);\n status = inflate_1$2.inflate(strm, _flush_mode);\n }\n\n switch (status) {\n case Z_STREAM_ERROR:\n case Z_DATA_ERROR:\n case Z_NEED_DICT:\n case Z_MEM_ERROR:\n this.onEnd(status);\n this.ended = true;\n return false;\n }\n\n // Remember real `avail_out` value, because we may patch out buffer content\n // to align utf8 strings boundaries.\n last_avail_out = strm.avail_out;\n\n if (strm.next_out) {\n if (strm.avail_out === 0 || status === Z_STREAM_END) {\n\n if (this.options.to === 'string') {\n\n let next_out_utf8 = strings.utf8border(strm.output, strm.next_out);\n\n let tail = strm.next_out - next_out_utf8;\n let utf8str = strings.buf2string(strm.output, next_out_utf8);\n\n // move tail & realign counters\n strm.next_out = tail;\n strm.avail_out = chunkSize - tail;\n if (tail) strm.output.set(strm.output.subarray(next_out_utf8, next_out_utf8 + tail), 0);\n\n this.onData(utf8str);\n\n } else {\n this.onData(strm.output.length === strm.next_out ? strm.output : strm.output.subarray(0, strm.next_out));\n }\n }\n }\n\n // Must repeat iteration if out buffer is full\n if (status === Z_OK && last_avail_out === 0) continue;\n\n // Finalize if end of stream reached.\n if (status === Z_STREAM_END) {\n status = inflate_1$2.inflateEnd(this.strm);\n this.onEnd(status);\n this.ended = true;\n return true;\n }\n\n if (strm.avail_in === 0) break;\n }\n\n return true;\n};\n\n\n/**\n * Inflate#onData(chunk) -> Void\n * - chunk (Uint8Array|String): output data. When string output requested,\n * each chunk will be string.\n *\n * By default, stores data blocks in `chunks[]` property and glue\n * those in `onEnd`. Override this handler, if you need another behaviour.\n **/\nInflate$1.prototype.onData = function (chunk) {\n this.chunks.push(chunk);\n};\n\n\n/**\n * Inflate#onEnd(status) -> Void\n * - status (Number): inflate status. 0 (Z_OK) on success,\n * other if not.\n *\n * Called either after you tell inflate that the input stream is\n * complete (Z_FINISH). By default - join collected chunks,\n * free memory and fill `results` / `err` properties.\n **/\nInflate$1.prototype.onEnd = function (status) {\n // On success - join\n if (status === Z_OK) {\n if (this.options.to === 'string') {\n this.result = this.chunks.join('');\n } else {\n this.result = common.flattenChunks(this.chunks);\n }\n }\n this.chunks = [];\n this.err = status;\n this.msg = this.strm.msg;\n};\n\n\n/**\n * inflate(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * Decompress `data` with inflate/ungzip and `options`. Autodetect\n * format via wrapper header by default. That's why we don't provide\n * separate `ungzip` method.\n *\n * Supported options are:\n *\n * - windowBits\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information.\n *\n * Sugar (options):\n *\n * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify\n * negative windowBits implicitly.\n * - `to` (String) - if equal to 'string', then result will be converted\n * from utf8 to utf16 (javascript) string. When string output requested,\n * chunk length can differ from `chunkSize`, depending on content.\n *\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako');\n * const input = pako.deflate(new Uint8Array([1,2,3,4,5,6,7,8,9]));\n * let output;\n *\n * try {\n * output = pako.inflate(input);\n * } catch (err) {\n * console.log(err);\n * }\n * ```\n **/\nfunction inflate$1(input, options) {\n const inflator = new Inflate$1(options);\n\n inflator.push(input);\n\n // That will never happens, if you don't cheat with options :)\n if (inflator.err) throw inflator.msg || messages[inflator.err];\n\n return inflator.result;\n}\n\n\n/**\n * inflateRaw(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * The same as [[inflate]], but creates raw data, without wrapper\n * (header and adler32 crc).\n **/\nfunction inflateRaw$1(input, options) {\n options = options || {};\n options.raw = true;\n return inflate$1(input, options);\n}\n\n\n/**\n * ungzip(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * Just shortcut to [[inflate]], because it autodetects format\n * by header.content. Done for convenience.\n **/\n\n\nvar Inflate_1$1 = Inflate$1;\nvar inflate_2 = inflate$1;\nvar inflateRaw_1$1 = inflateRaw$1;\nvar ungzip$1 = inflate$1;\nvar constants = constants$2;\n\nvar inflate_1$1 = {\n\tInflate: Inflate_1$1,\n\tinflate: inflate_2,\n\tinflateRaw: inflateRaw_1$1,\n\tungzip: ungzip$1,\n\tconstants: constants\n};\n\nconst { Deflate, deflate, deflateRaw, gzip } = deflate_1$1;\n\nconst { Inflate, inflate, inflateRaw, ungzip } = inflate_1$1;\n\n\n\nvar Deflate_1 = Deflate;\nvar deflate_1 = deflate;\nvar deflateRaw_1 = deflateRaw;\nvar gzip_1 = gzip;\nvar Inflate_1 = Inflate;\nvar inflate_1 = inflate;\nvar inflateRaw_1 = inflateRaw;\nvar ungzip_1 = ungzip;\nvar constants_1 = constants$2;\n\nvar pako = {\n\tDeflate: Deflate_1,\n\tdeflate: deflate_1,\n\tdeflateRaw: deflateRaw_1,\n\tgzip: gzip_1,\n\tInflate: Inflate_1,\n\tinflate: inflate_1,\n\tinflateRaw: inflateRaw_1,\n\tungzip: ungzip_1,\n\tconstants: constants_1\n};\n\nexport { Deflate_1 as Deflate, Inflate_1 as Inflate, constants_1 as constants, pako as default, deflate_1 as deflate, deflateRaw_1 as deflateRaw, gzip_1 as gzip, inflate_1 as inflate, inflateRaw_1 as inflateRaw, ungzip_1 as ungzip };\n","function decodeRowAcc(row, stride) {\n let length = row.length - stride;\n let offset = 0;\n do {\n for (let i = stride; i > 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n"],"names":["zero$1","buf","len","length","extra_lbits","Uint8Array","extra_dbits","extra_blbits","bl_order","static_ltree","Array","static_dtree","D_CODES$1","_dist_code","_length_code","MAX_MATCH$1","base_length","base_dist","StaticTreeDesc","static_tree","extra_bits","extra_base","elems","max_length","this","has_stree","static_l_desc","static_d_desc","static_bl_desc","TreeDesc","dyn_tree","stat_desc","max_code","d_code","dist","put_short","s","w","pending_buf","pending","send_bits","value","bi_valid","bi_buf","send_code","c","tree","bi_reverse","code","res","gen_codes","bl_count","next_code","MAX_BITS$1","bits","n","init_block","LITERALS$1","dyn_ltree","dyn_dtree","bl_tree","END_BLOCK","opt_len","static_len","sym_next","matches","bi_windup","smaller","m","depth","_n2","_m2","pqdownheap","k","v","heap","j","heap_len","compress_block","ltree","dtree","lc","extra","sx","sym_buf","build_tree","desc","stree","node","heap_max","base","h","xbits","f","overflow","gen_bitlen","scan_tree","curlen","prevlen","nextlen","count","max_count","min_count","REP_3_6","REPZ_3_10","REPZ_11_138","send_tree","static_init_done","_tr_stored_block$1","stored_len","last","set","window","subarray","trees","_tr_init","LENGTH_CODES$1","L_CODES$1","tr_static_init","l_desc","d_desc","bl_desc","_tr_stored_block","_tr_flush_block","opt_lenb","static_lenb","max_blindex","level","strm","data_type","block_mask","detect_data_type","BL_CODES$1","build_bl_tree","strategy","lcodes","dcodes","blcodes","rank","send_all_trees","_tr_tally","sym_end","_tr_align","STATIC_TREES","bi_flush","adler32_1","adler","pos","s1","s2","crcTable","Uint32Array","table","makeTable","crc32_1","crc","t","end","i","messages","constants$2","Z_NO_FLUSH","Z_PARTIAL_FLUSH","Z_SYNC_FLUSH","Z_FULL_FLUSH","Z_FINISH","Z_BLOCK","Z_TREES","Z_OK","Z_STREAM_END","Z_NEED_DICT","Z_ERRNO","Z_STREAM_ERROR","Z_DATA_ERROR","Z_MEM_ERROR","Z_BUF_ERROR","Z_NO_COMPRESSION","Z_BEST_SPEED","Z_BEST_COMPRESSION","Z_DEFAULT_COMPRESSION","Z_FILTERED","Z_HUFFMAN_ONLY","Z_RLE","Z_FIXED","Z_DEFAULT_STRATEGY","Z_BINARY","Z_TEXT","Z_UNKNOWN","Z_DEFLATED","Z_NO_FLUSH$2","Z_FULL_FLUSH$1","Z_FINISH$3","Z_BLOCK$1","Z_OK$3","Z_STREAM_END$3","Z_STREAM_ERROR$2","Z_DATA_ERROR$2","Z_BUF_ERROR$1","Z_DEFAULT_COMPRESSION$1","Z_DEFAULT_STRATEGY$1","Z_DEFLATED$2","MAX_MATCH","MIN_LOOKAHEAD","INIT_STATE","BUSY_STATE","FINISH_STATE","err","errorCode","msg","zero","slide_hash","p","wsize","w_size","hash_size","head","prev","HASH","data","hash_shift","hash_mask","flush_pending","state","avail_out","output","pending_out","next_out","total_out","flush_block_only","block_start","strstart","put_byte","b","putShortMSB","read_buf","start","size","avail_in","input","next_in","wrap","total_in","longest_match","cur_match","match","chain_length","max_chain_length","scan","best_len","prev_length","nice_match","limit","_win","wmask","w_mask","strend","scan_end1","scan_end","good_match","lookahead","match_start","fill_window","_w_size","more","str","window_size","insert","ins_h","deflate_stored","flush","left","have","min_block","pending_buf_size","used","high_water","deflate_fast","hash_head","bflush","match_length","max_lazy_match","MIN_MATCH","deflate_slow","max_insert","prev_match","match_available","Config","good_length","max_lazy","nice_length","max_chain","func","configuration_table","DeflateState","status","gzhead","gzindex","method","last_flush","w_bits","hash_bits","Uint16Array","HEAP_SIZE","MAX_BITS","lit_bufsize","deflateStateCheck","deflateResetKeep","deflateReset","ret","deflateInit2","windowBits","memLevel","deflate_1$2","deflateInit","deflateSetHeader","deflate","old_flush","header","level_flags","text","hcrc","name","comment","time","os","beg","copy","gzhead_extra","val","charCodeAt","bstate","deflate_huff","deflate_rle","deflateEnd","deflateSetDictionary","dictionary","dictLength","tmpDict","avail","next","deflateInfo","_has","obj","key","Object","prototype","hasOwnProperty","call","common","assign","sources","slice","arguments","source","shift","TypeError","flattenChunks","chunks","l","result","chunk","STR_APPLY_UIA_OK","String","fromCharCode","apply","__","_utf8len","q","strings","string2buf","TextEncoder","encode","c2","m_pos","str_len","buf_len","buf2string","max","TextDecoder","decode","out","utf16buf","c_len","buf2binstring","utf8border","zstream","toString$1","toString","Z_NO_FLUSH$1","Z_FINISH$2","Z_OK$2","Z_STREAM_END$2","Z_DEFLATED$1","Deflate$1","options","chunkSize","opt","raw","gzip","ended","Error","dict","_dict_set","deflate$1","deflator","push","flush_mode","_flush_mode","onData","onEnd","deflate_1$1","Deflate","deflateRaw","constants","BAD$1","inffast","_in","_out","dmax","whave","wnext","s_window","hold","lcode","dcode","lmask","dmask","here","op","from","from_source","lencode","distcode","lenbits","distbits","top","dolen","mode","sane","lbase","lext","dbase","dext","inftrees","type","lens","lens_index","codes","table_index","work","opts","incr","fill","low","mask","sym","min","root","curr","drop","huff","MAXBITS","offs","here_bits","here_op","here_val","Z_FINISH$1","Z_OK$1","Z_STREAM_END$1","Z_NEED_DICT$1","Z_STREAM_ERROR$1","Z_DATA_ERROR$1","Z_MEM_ERROR$1","HEAD","DICT","TYPE","TYPEDO","COPY_","LEN_","LEN","CHECK","BAD","zswap32","InflateState","havedict","flags","check","total","wbits","offset","ncode","nlen","ndist","lendyn","distdyn","back","was","inflateStateCheck","inflateResetKeep","Int32Array","inflateReset","inflateReset2","inflateInit2","lenfix","distfix","virgin","fixedtables","updatewindow","src","inflate_1$2","inflateInit","inflate","put","last_bits","last_op","last_val","hbuf","order","inf_leave","done","xflags","extra_len","inflateEnd","inflateGetHeader","inflateSetDictionary","dictid","inflateInfo","gzheader","Inflate$1","to","inflate$1","inflator","last_avail_out","next_out_utf8","tail","utf8str","join","inflate_1$1","Inflate","inflateRaw","ungzip","inflate_1","decodeRowAcc","row","stride","decodeRowFloatingPoint","bytesPerSample","index","wc","BaseDecoder","fileDirectory","buffer","decoded","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","byteLength","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/source/_static/540.embed-bundle.js b/docs/source/_static/540.embed-bundle.js new file mode 100644 index 0000000..ccbe166 --- /dev/null +++ b/docs/source/_static/540.embed-bundle.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[540],{708:(e,t,n)=>{function r(e,t){let n=e.length-t,r=0;do{for(let n=t;n>0;n--)e[r+t]+=e[r],r++;n-=t}while(n>0)}function a(e,t,n){let r=0,a=e.length;const o=a/n;for(;a>t;){for(let n=t;n>0;--n)e[r+t]+=e[r],++r;a-=t}const i=e.slice();for(let t=0;to});class o{async decode(e,t){const n=await this.decodeBlock(t),o=e.Predictor||1;if(1!==o){const t=!e.StripOffsets;return function(e,t,n,o,i,s){if(!t||1===t)return e;for(let e=0;e=e.byteLength);++s){let o;if(2===t){switch(i[0]){case 8:o=new Uint8Array(e,s*d*n*c,d*n*c);break;case 16:o=new Uint16Array(e,s*d*n*c,d*n*c/2);break;case 32:o=new Uint32Array(e,s*d*n*c,d*n*c/4);break;default:throw new Error(`Predictor 2 not allowed with ${i[0]} bits per sample.`)}r(o,d)}else 3===t&&(o=new Uint8Array(e,s*d*n*c,d*n*c),a(o,d,c))}return e}(n,o,t?e.TileWidth:e.ImageWidth,t?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return n}}},2540:(e,t,n)=>{n.r(t),n.d(t,{default:()=>a});var r=n(708);class a extends r.A{constructor(){if(super(),"undefined"==typeof createImageBitmap)throw new Error("Cannot decode WebImage as `createImageBitmap` is not available");if("undefined"==typeof document&&"undefined"==typeof OffscreenCanvas)throw new Error("Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available")}async decode(e,t){const n=new Blob([t]),r=await createImageBitmap(n);let a;"undefined"!=typeof document?(a=document.createElement("canvas"),a.width=r.width,a.height=r.height):a=new OffscreenCanvas(r.width,r.height);const o=a.getContext("2d");return o.drawImage(r,0,0),o.getImageData(0,0,r.width,r.height).data.buffer}}}}]); +//# sourceMappingURL=540.embed-bundle.js.map \ No newline at end of file diff --git a/docs/source/_static/540.embed-bundle.js.map b/docs/source/_static/540.embed-bundle.js.map new file mode 100644 index 0000000..a79ef9e --- /dev/null +++ b/docs/source/_static/540.embed-bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"540.embed-bundle.js","mappings":"4GAAA,SAASA,EAAaC,EAAKC,GACzB,IAAIC,EAASF,EAAIE,OAASD,EACtBE,EAAS,EACb,EAAG,CACD,IAAK,IAAIC,EAAIH,EAAQG,EAAI,EAAGA,IAC1BJ,EAAIG,EAASF,IAAWD,EAAIG,GAC5BA,IAGFD,GAAUD,CACZ,OAASC,EAAS,EACpB,CAEA,SAASG,EAAuBL,EAAKC,EAAQK,GAC3C,IAAIC,EAAQ,EACRC,EAAQR,EAAIE,OAChB,MAAMO,EAAKD,EAAQF,EAEnB,KAAOE,EAAQP,GAAQ,CACrB,IAAK,IAAIG,EAAIH,EAAQG,EAAI,IAAKA,EAC5BJ,EAAIO,EAAQN,IAAWD,EAAIO,KACzBA,EAEJC,GAASP,CACX,CAEA,MAAMS,EAAOV,EAAIW,QACjB,IAAK,IAAIP,EAAI,EAAGA,EAAIK,IAAML,EACxB,IAAK,IAAIQ,EAAI,EAAGA,EAAIN,IAAkBM,EACpCZ,EAAKM,EAAiBF,EAAKQ,GAAKF,GAAOJ,EAAiBM,EAAI,GAAKH,EAAML,EAG7E,C,iBC9Be,MAAMS,EACnB,YAAMC,CAAOC,EAAeC,GAC1B,MAAMC,QAAgBC,KAAKC,YAAYH,GACjCI,EAAYL,EAAcM,WAAa,EAC7C,GAAkB,IAAdD,EAAiB,CACnB,MAAME,GAAWP,EAAcQ,aAK/B,ODsBC,SAAwBC,EAAOJ,EAAWK,EAAOC,EAAQC,EAC9DC,GACA,IAAKR,GAA2B,IAAdA,EAChB,OAAOI,EAGT,IAAK,IAAIpB,EAAI,EAAGA,EAAIuB,EAAczB,SAAUE,EAAG,CAC7C,GAAIuB,EAAcvB,GAAK,GAAM,EAC3B,MAAM,IAAIyB,MAAM,wEAElB,GAAIF,EAAcvB,KAAOuB,EAAc,GACrC,MAAM,IAAIE,MAAM,qEAEpB,CAEA,MAAMvB,EAAiBqB,EAAc,GAAK,EACpC1B,EAAiC,IAAxB2B,EAA4B,EAAID,EAAczB,OAE7D,IAAK,IAAIE,EAAI,EAAGA,EAAIsB,KAEdtB,EAAIH,EAASwB,EAAQnB,GAAkBkB,EAAMM,cAFrB1B,EAAG,CAK/B,IAAIJ,EACJ,GAAkB,IAAdoB,EAAiB,CACnB,OAAQO,EAAc,IACpB,KAAK,EACH3B,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/D,MACF,KAAK,GACHN,EAAM,IAAIgC,YACRR,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,KAAK,GACHN,EAAM,IAAIiC,YACRT,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,QACE,MAAM,IAAIuB,MAAM,gCAAgCF,EAAc,uBAElE5B,EAAaC,EAAKC,EACpB,MAAyB,IAAdmB,IACTpB,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/DD,EAAuBL,EAAKC,EAAQK,GAExC,CACA,OAAOkB,CACT,CC3EaU,CACLjB,EAASG,EALOE,EAAUP,EAAcoB,UAAYpB,EAAcqB,WACjDd,EAAUP,EAAcsB,WACzCtB,EAAcuB,cAAgBvB,EAAcwB,YAGDxB,EAAcyB,cACzDzB,EAAc0B,oBAElB,CACA,OAAOxB,CACT,E,4DCVa,MAAMyB,UAAwB,IAC3C,WAAAC,GAEE,GADAC,QACiC,oBAAtBC,kBACT,MAAM,IAAIhB,MAAM,kEACX,GAAwB,oBAAbiB,UAAuD,oBAApBC,gBACnD,MAAM,IAAIlB,MAAM,sFAEpB,CAEA,YAAMf,CAAOC,EAAeC,GAC1B,MAAMgC,EAAO,IAAIC,KAAK,CAACjC,IACjBkC,QAAoBL,kBAAkBG,GAE5C,IAAIG,EACoB,oBAAbL,UACTK,EAASL,SAASM,cAAc,UAChCD,EAAO1B,MAAQyB,EAAYzB,MAC3B0B,EAAOzB,OAASwB,EAAYxB,QAE5ByB,EAAS,IAAIJ,gBAAgBG,EAAYzB,MAAOyB,EAAYxB,QAG9D,MAAM2B,EAAMF,EAAOG,WAAW,MAM9B,OALAD,EAAIE,UAAUL,EAAa,EAAG,GAKvBG,EAAIG,aAAa,EAAG,EAAGN,EAAYzB,MAAOyB,EAAYxB,QAAQ+B,KAAKzC,MAC5E,E","sources":["webpack://ipyopenlayers/./node_modules/geotiff/dist-module/predictor.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/basedecoder.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/webimage.js"],"sourcesContent":["function decodeRowAcc(row, stride) {\n let length = row.length - stride;\n let offset = 0;\n do {\n for (let i = stride; i > 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\n/**\n * class WebImageDecoder\n *\n * This decoder uses the browsers image decoding facilities to read image\n * formats like WebP when supported.\n */\nexport default class WebImageDecoder extends BaseDecoder {\n constructor() {\n super();\n if (typeof createImageBitmap === 'undefined') {\n throw new Error('Cannot decode WebImage as `createImageBitmap` is not available');\n } else if (typeof document === 'undefined' && typeof OffscreenCanvas === 'undefined') {\n throw new Error('Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available');\n }\n }\n\n async decode(fileDirectory, buffer) {\n const blob = new Blob([buffer]);\n const imageBitmap = await createImageBitmap(blob);\n\n let canvas;\n if (typeof document !== 'undefined') {\n canvas = document.createElement('canvas');\n canvas.width = imageBitmap.width;\n canvas.height = imageBitmap.height;\n } else {\n canvas = new OffscreenCanvas(imageBitmap.width, imageBitmap.height);\n }\n\n const ctx = canvas.getContext('2d');\n ctx.drawImage(imageBitmap, 0, 0);\n\n // TODO: check how many samples per pixel we have, and return RGB/RGBA accordingly\n // it seems like GDAL always encodes via RGBA which does not require a translation\n\n return ctx.getImageData(0, 0, imageBitmap.width, imageBitmap.height).data.buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","WebImageDecoder","constructor","super","createImageBitmap","document","OffscreenCanvas","blob","Blob","imageBitmap","canvas","createElement","ctx","getContext","drawImage","getImageData","data"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/source/_static/597.embed-bundle.js b/docs/source/_static/597.embed-bundle.js new file mode 100644 index 0000000..0badce6 --- /dev/null +++ b/docs/source/_static/597.embed-bundle.js @@ -0,0 +1,3 @@ +/*! For license information please see 597.embed-bundle.js.LICENSE.txt */ +(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[597],{5021:(A,I)=>{var g,B,Q,C,E,i,e,a,o,t,s,r,D;B={defaultNoDataValue:-34027999387901484e22,decode:function(A,I){var g=(I=I||{}).encodedMaskData||null===I.encodedMaskData,e=i(A,I.inputOffset||0,g),a=null!==I.noDataValue?I.noDataValue:B.defaultNoDataValue,o=Q(e,I.pixelType||Float32Array,I.encodedMaskData,a,I.returnMask),t={width:e.width,height:e.height,pixelData:o.resultPixels,minValue:o.minValue,maxValue:e.pixels.maxValue,noDataValue:a};return o.resultMask&&(t.maskData=o.resultMask),I.returnEncodedMask&&e.mask&&(t.encodedMaskData=e.mask.bitset?e.mask.bitset:null),I.returnFileInfo&&(t.fileInfo=C(e),I.computeUsedBitDepths&&(t.fileInfo.bitDepths=E(e))),t}},Q=function(A,I,g,B,Q){var C,E,i,a=0,o=A.pixels.numBlocksX,t=A.pixels.numBlocksY,s=Math.floor(A.width/o),r=Math.floor(A.height/t),D=2*A.maxZError,n=Number.MAX_VALUE;g=g||(A.mask?A.mask.bitset:null),E=new I(A.width*A.height),Q&&g&&(i=new Uint8Array(A.width*A.height));for(var w,h,f=new Float32Array(s*r),G=0;G<=t;G++){var y=G!==t?r:A.height%t;if(0!==y)for(var l=0;l<=o;l++){var F=l!==o?s:A.width%o;if(0!==F){var k,c,U,S,d=G*A.width*r+l*s,R=A.width-F,M=A.pixels.blocks[a];if(M.encoding<2?(0===M.encoding?k=M.rawData:(e(M.stuffedData,M.bitsPerPixel,M.numValidPixels,M.offset,D,f,A.pixels.maxValue),k=f),c=0):U=2===M.encoding?0:M.offset,g)for(h=0;h>3],S<<=7&d),w=0;w>3]),128&S?(i&&(i[d]=1),n=n>(C=M.encoding<2?k[c++]:U)?C:n,E[d++]=C):(i&&(i[d]=0),E[d++]=B),S<<=1;d+=R}else if(M.encoding<2)for(h=0;h(C=k[c++])?C:n,E[d++]=C;d+=R}else for(n=n>U?U:n,h=0;h0){var E=new Uint8Array(Math.ceil(B.width*B.height/8)),i=(C=new DataView(A,I,B.mask.numBytes)).getInt16(0,!0),e=2,a=0;do{if(i>0)for(;i--;)E[a++]=C.getUint8(e++);else{var o=C.getUint8(e++);for(i=-i;i--;)E[a++]=o}i=C.getInt16(e,!0),e+=2}while(e0?1:0),D=s+(B.height%s>0?1:0);B.pixels.blocks=new Array(r*D);for(var n=0,w=0;w3)throw"Invalid block encoding ("+y.encoding+")";if(2!==y.encoding){if(0!==l&&2!==l){if(l>>=6,y.offsetType=l,2===l)y.offset=C.getInt8(1),f++;else if(1===l)y.offset=C.getInt16(1,!0),f+=2;else{if(0!==l)throw"Invalid block offset type";y.offset=C.getFloat32(1,!0),f+=4}if(1===y.encoding)if(l=C.getUint8(f),f++,y.bitsPerPixel=63&l,l>>=6,y.numValidPixelsType=l,2===l)y.numValidPixels=C.getUint8(f),f++;else if(1===l)y.numValidPixels=C.getUint16(f,!0),f+=2;else{if(0!==l)throw"Invalid valid pixel count type";y.numValidPixels=C.getUint32(f,!0),f+=4}}var F;if(I+=f,3!==y.encoding)if(0===y.encoding){var k=(B.pixels.numBytes-1)/4;if(k!==Math.floor(k))throw"uncompressed block has invalid length";F=new ArrayBuffer(4*k),new Uint8Array(F).set(new Uint8Array(A,I,4*k));var c=new Float32Array(F);y.rawData=c,I+=4*k}else if(1===y.encoding){var U=Math.ceil(y.numValidPixels*y.bitsPerPixel/8),S=Math.ceil(U/4);F=new ArrayBuffer(4*S),new Uint8Array(F).set(new Uint8Array(A,I,U)),y.stuffedData=new Uint32Array(F),I+=U}}else I++}return B.eofOffset=I,B},e=function(A,I,g,B,Q,C,E){var i,e,a,o=(1<=I)e=a>>>s-I&o,s-=I;else{var n=I-s;e=(a&o)<>>(s=32-n)}C[i]=e=g?(a=o>>>n-g&r,n-=g):(a=(o&r)<<(t=g-n)&r,a+=(o=A[D++])>>>(n=32-t)),I[e]=Q[a];else for(s=Math.ceil((i-C)/E),e=0;e=g?(a=o>>>n-g&r,n-=g):(a=(o&r)<<(t=g-n)&r,a+=(o=A[D++])>>>(n=32-t)),I[e]=a=g?(a=o>>>n&s,D-=g,n+=g):(a=o>>>n&s,D=32-(t=g-D),a|=((o=A[r++])&(1<=g?(a=o>>>n&s,D-=g,n+=g):(a=o>>>n&s,D=32-(t=g-D),a|=((o=A[r++])&(1<=359?359:Q;Q-=E;do{I+=A[C++]<<8,g+=I+=A[C++]}while(--E);I=(65535&I)+(I>>>16),g=(65535&g)+(g>>>16)}return 1&B&&(g+=I+=A[C]<<8),((g=(65535&g)+(g>>>16))<<16|(I=(65535&I)+(I>>>16)))>>>0},readHeaderInfo:function(A,I){var g=I.ptr,B=new Uint8Array(A,g,6),Q={};if(Q.fileIdentifierString=String.fromCharCode.apply(null,B),0!==Q.fileIdentifierString.lastIndexOf("Lerc2",0))throw"Unexpected file identifier string (expect Lerc2 ): "+Q.fileIdentifierString;g+=6;var C,E=new DataView(A,g,8),i=E.getInt32(0,!0);if(Q.fileVersion=i,g+=4,i>=3&&(Q.checksum=E.getUint32(4,!0),g+=4),E=new DataView(A,g,12),Q.height=E.getUint32(0,!0),Q.width=E.getUint32(4,!0),g+=8,i>=4?(Q.numDims=E.getUint32(8,!0),g+=4):Q.numDims=1,E=new DataView(A,g,40),Q.numValidPixel=E.getUint32(0,!0),Q.microBlockSize=E.getInt32(4,!0),Q.blobSize=E.getInt32(8,!0),Q.imageType=E.getInt32(12,!0),Q.maxZError=E.getFloat64(16,!0),Q.zMin=E.getFloat64(24,!0),Q.zMax=E.getFloat64(32,!0),g+=40,I.headerInfo=Q,I.ptr=g,i>=3&&(C=i>=4?52:48,this.computeChecksumFletcher32(new Uint8Array(A,g-C,Q.blobSize-14))!==Q.checksum))throw"Checksum failed.";return!0},checkMinMaxRanges:function(A,I){var g=I.headerInfo,B=this.getDataTypeArray(g.imageType),Q=g.numDims*this.getDataTypeSize(g.imageType),C=this.readSubArray(A,I.ptr,B,Q),E=this.readSubArray(A,I.ptr+Q,B,Q);I.ptr+=2*Q;var i,e=!0;for(i=0;i0){g=new Uint8Array(Math.ceil(E/8));var o=(e=new DataView(A,Q,a.numBytes)).getInt16(0,!0),t=2,s=0,r=0;do{if(o>0)for(;o--;)g[s++]=e.getUint8(t++);else for(r=e.getUint8(t++),o=-o;o--;)g[s++]=r;o=e.getInt16(t,!0),t+=2}while(t>3],D<<=7&n):D=g[n>>3],128&D&&(B[n]=1);I.pixels.resultMask=B,a.bitset=g,Q+=a.numBytes}return I.ptr=Q,I.mask=a,!0},readDataOneSweep:function(A,I,B,Q){var C,E=I.ptr,i=I.headerInfo,e=i.numDims,a=i.width*i.height,o=i.imageType,t=i.numValidPixel*g.getDataTypeSize(o)*e,s=I.pixels.resultMask;if(B===Uint8Array)C=new Uint8Array(A,E,t);else{var r=new ArrayBuffer(t);new Uint8Array(r).set(new Uint8Array(A,E,t)),C=new B(r)}if(C.length===a*e)I.pixels.resultPixels=Q?g.swapDimensionOrder(C,a,e,B,!0):C;else{I.pixels.resultPixels=new B(a*e);var D=0,n=0,w=0,h=0;if(e>1){if(Q){for(n=0;n=e)return!1;var a=new Uint32Array(e-i);g.decodeBits(A,I,a);var o,t,s,r,D=[];for(o=i;o0&&(D[t].second=f<>>32-r,32-y>=r?32===(y+=r)&&(y=0,f=G[++l]):(y+=r-32,f=G[++l],D[t].second|=f>>>32-y));var F,k=0,c=new B;for(o=0;o=Q?Q:k;var U,S,d,R,M,L=[];for(o=i;o0)if(U=[r,t],r<=F)for(S=D[t].second<=0;R--)S>>>R&1?(M.right||(M.right=new B),M=M.right):(M.left||(M.left=new B),M=M.left),0!==R||M.val||(M.val=U[1]);return{decodeLut:L,numBitsLUTQick:F,numBitsLUT:k,tree:c,stuffedData:G,srcPtr:l,bitPos:y}},readHuffman:function(A,I,B,Q){var C,E,i,e,a,o,t,s,r,D=I.headerInfo.numDims,n=I.headerInfo.height,w=I.headerInfo.width,h=w*n,f=this.readHuffmanTree(A,I),G=f.decodeLut,y=f.tree,l=f.stuffedData,F=f.srcPtr,k=f.bitPos,c=f.numBitsLUTQick,U=f.numBitsLUT,S=0===I.headerInfo.imageType?128:0,d=I.pixels.resultMask,R=0;k>0&&(F++,k=0);var M,L=l[F],N=1===I.encodeMode,J=new B(h*D),u=J;if(D<2||N){for(M=0;M1&&(u=new B(J.buffer,h*M,h),R=0),I.headerInfo.numValidPixel===w*n)for(s=0,o=0;o>>32-c,32-k>>64-k-c),G[a])E=G[a][1],k+=G[a][0];else for(a=e=L<>>32-U,32-k>>64-k-U),C=y,r=0;r>>U-r-1&1?C.right:C.left).left&&!C.right){E=C.val,k=k+r+1;break}k>=32&&(k-=32,L=l[++F]),i=E-S,N?(i+=t>0?R:o>0?u[s-w]:R,i&=255,u[s]=i,R=i):u[s]=i}else for(s=0,o=0;o>>32-c,32-k>>64-k-c),G[a])E=G[a][1],k+=G[a][0];else for(a=e=L<>>32-U,32-k>>64-k-U),C=y,r=0;r>>U-r-1&1?C.right:C.left).left&&!C.right){E=C.val,k=k+r+1;break}k>=32&&(k-=32,L=l[++F]),i=E-S,N?(t>0&&d[s-1]?i+=R:o>0&&d[s-w]?i+=u[s-w]:i+=R,i&=255,u[s]=i,R=i):u[s]=i}}else for(s=0,o=0;o>>32-c,32-k>>64-k-c),G[a])E=G[a][1],k+=G[a][0];else for(a=e=L<>>32-U,32-k>>64-k-U),C=y,r=0;r>>U-r-1&1?C.right:C.left).left&&!C.right){E=C.val,k=k+r+1;break}k>=32&&(k-=32,L=l[++F]),i=E-S,u[s]=i}I.ptr=I.ptr+4*(F+1)+(k>0?4:0),I.pixels.resultPixels=J,D>1&&!Q&&(I.pixels.resultPixels=g.swapDimensionOrder(J,h,D,B))},decodeBits:function(g,B,Q,C,E){var i=B.headerInfo,e=i.fileVersion,a=0,o=g.byteLength-B.ptr>=5?5:g.byteLength-B.ptr,t=new DataView(g,B.ptr,o),s=t.getUint8(0);a++;var r=s>>6,D=0===r?4:3-r,n=(32&s)>0,w=31&s,h=0;if(1===D)h=t.getUint8(a),a++;else if(2===D)h=t.getUint16(a,!0),a+=2;else{if(4!==D)throw"Invalid valid pixel count type";h=t.getUint32(a,!0),a+=4}var f,G,y,l,F,k,c,U,S,d=2*i.maxZError,R=i.numDims>1?i.maxValues[E]:i.zMax;if(n){for(B.counter.lut++,U=t.getUint8(a),a++,l=Math.ceil((U-1)*w/8),F=Math.ceil(l/4),G=new ArrayBuffer(4*F),y=new Uint8Array(G),B.ptr+=a,y.set(new Uint8Array(g,B.ptr,l)),c=new Uint32Array(G),B.ptr+=l,S=0;U-1>>>S;)S++;l=Math.ceil(h*S/8),F=Math.ceil(l/4),G=new ArrayBuffer(4*F),(y=new Uint8Array(G)).set(new Uint8Array(g,B.ptr,l)),f=new Uint32Array(G),B.ptr+=l,k=e>=3?function(A,I,g,B,Q,C){var E,i=(1<=I?(s=E>>>r&i,t-=I,r+=I):(s=E>>>r&i,t=32-(o=I-t),s|=((E=A[e++])&(1<=I?(s=E>>>t-I&i,t-=I):(s=(E&i)<<(o=I-t)&i,s+=(E=A[e++])>>>(t=32-o)),r[a]=s=3?I(f,Q,S,h,k):A(f,Q,S,h,k)}else B.counter.bitstuffer++,S=w,B.ptr+=a,S>0&&(l=Math.ceil(h*S/8),F=Math.ceil(l/4),G=new ArrayBuffer(4*F),(y=new Uint8Array(G)).set(new Uint8Array(g,B.ptr,l)),f=new Uint32Array(G),B.ptr+=l,e>=3?null==C?function(A,I,g,B){var Q,C,E,i,e=(1<=g?(C=E>>>t&e,o-=g,t+=g):(C=E>>>t&e,o=32-(i=g-o),C|=((E=A[a++])&(1<=g?(C=E>>>o-g&e,o-=g):(C=(E&e)<<(i=g-o)&e,C+=(E=A[a++])>>>(o=32-i)),I[Q]=C}(f,Q,S,h):A(f,Q,S,h,!1,C,d,R))},readTiles:function(A,I,B,Q){var C=I.headerInfo,E=C.width,i=C.height,e=E*i,a=C.microBlockSize,o=C.imageType,t=g.getDataTypeSize(o),s=Math.ceil(E/a),r=Math.ceil(i/a);I.pixels.numBlocksY=r,I.pixels.numBlocksX=s,I.pixels.ptr=0;var D,n,w,h,f,G,y,l,F,k,c=0,U=0,S=0,d=0,R=0,M=0,L=0,N=0,J=0,u=0,q=0,Y=0,m=0,p=0,x=0,H=new B(a*a),K=i%a||a,V=E%a||a,b=C.numDims,O=I.pixels.resultMask,v=I.pixels.resultPixels,X=C.fileVersion>=5?14:15,P=C.zMax;for(S=0;S1?(k=v,u=S*E*a+d*a,v=new B(I.pixels.resultPixels.buffer,e*l*t,e),P=C.maxValues[l]):k=null,L=A.byteLength-I.ptr,n={},x=0,N=(D=new DataView(A,I.ptr,Math.min(10,L))).getUint8(0),x++,F=C.fileVersion>=5?4&N:0,J=N>>6&255,(N>>2&X)!=(d*a>>3&X))throw"integrity issue";if(F&&0===l)throw"integrity issue";if((f=3&N)>3)throw I.ptr+=x,"Invalid block encoding ("+f+")";if(2!==f)if(0===f){if(F)throw"integrity issue";if(I.counter.uncompressed++,I.ptr+=x,Y=(Y=R*M*t)<(m=A.byteLength-I.ptr)?Y:m,w=new ArrayBuffer(Y%t==0?Y:Y+t-Y%t),new Uint8Array(w).set(new Uint8Array(A,I.ptr,Y)),h=new B(w),p=0,O)for(c=0;c1&&!Q&&(I.pixels.resultPixels=g.swapDimensionOrder(I.pixels.resultPixels,e,b,B))},formatFileInfo:function(A){return{fileIdentifierString:A.headerInfo.fileIdentifierString,fileVersion:A.headerInfo.fileVersion,imageType:A.headerInfo.imageType,height:A.headerInfo.height,width:A.headerInfo.width,numValidPixel:A.headerInfo.numValidPixel,microBlockSize:A.headerInfo.microBlockSize,blobSize:A.headerInfo.blobSize,maxZError:A.headerInfo.maxZError,pixelType:g.getPixelType(A.headerInfo.imageType),eofOffset:A.eofOffset,mask:A.mask?{numBytes:A.mask.numBytes}:null,pixels:{numBlocksX:A.pixels.numBlocksX,numBlocksY:A.pixels.numBlocksY,maxValue:A.headerInfo.zMax,minValue:A.headerInfo.zMin,noDataValue:A.noDataValue}}},constructConstantSurface:function(A,I){var g=A.headerInfo.zMax,B=A.headerInfo.zMin,Q=A.headerInfo.maxValues,C=A.headerInfo.numDims,E=A.headerInfo.height*A.headerInfo.width,i=0,e=0,a=0,o=A.pixels.resultMask,t=A.pixels.resultPixels;if(o)if(C>1){if(I)for(i=0;i1&&B!==g)if(I)for(i=0;i=-128&&I<=127;break;case 1:g=I>=0&&I<=255;break;case 2:g=I>=-32768&&I<=32767;break;case 3:g=I>=0&&I<=65536;break;case 4:g=I>=-2147483648&&I<=2147483647;break;case 5:g=I>=0&&I<=4294967296;break;case 6:g=I>=-34027999387901484e22&&I<=34027999387901484e22;break;case 7:g=I>=-17976931348623157e292&&I<=17976931348623157e292;break;default:g=!1}return g},getDataTypeSize:function(A){var I=0;switch(A){case 0:case 1:I=1;break;case 2:case 3:I=2;break;case 4:case 5:case 6:I=4;break;case 7:I=8;break;default:I=A}return I},getDataTypeUsed:function(A,I){var g=A;switch(A){case 2:case 4:g=A-I;break;case 3:case 5:g=A-2*I;break;case 6:g=0===I?A:1===I?2:1;break;case 7:g=0===I?A:A-2*I+1;break;default:g=A}return g},getOnePixel:function(A,I,g,B){var Q=0;switch(g){case 0:Q=B.getInt8(I);break;case 1:Q=B.getUint8(I);break;case 2:Q=B.getInt16(I,!0);break;case 3:Q=B.getUint16(I,!0);break;case 4:Q=B.getInt32(I,!0);break;case 5:Q=B.getUInt32(I,!0);break;case 6:Q=B.getFloat32(I,!0);break;case 7:Q=B.getFloat64(I,!0);break;default:throw"the decoder does not understand this pixel type"}return Q},swapDimensionOrder:function(A,I,g,B,Q){var C=0,E=0,i=0,e=0,a=A;if(g>1)if(a=new B(I*g),Q)for(C=0;C5)throw"unsupported lerc version 2."+i;g.readMask(A,C),E.numValidPixel===E.width*E.height||C.pixels.resultMask||(C.pixels.resultMask=I.maskData);var a=E.width*E.height;C.pixels.resultPixels=new e(a*E.numDims),C.counter={onesweep:0,uncompressed:0,lut:0,bitstuffer:0,constant:0,constantoffset:0};var o,t=!I.returnPixelInterleavedDims;if(0!==E.numValidPixel)if(E.zMax===E.zMin)g.constructConstantSurface(C,t);else if(i>=4&&g.checkMinMaxRanges(A,C))g.constructConstantSurface(C,t);else{var s=new DataView(A,C.ptr,2),r=s.getUint8(0);if(C.ptr++,r)g.readDataOneSweep(A,C,e,t);else if(i>1&&E.imageType<=1&&Math.abs(E.maxZError-.5)<1e-5){var D=s.getUint8(1);if(C.ptr++,C.encodeMode=D,D>2||i<4&&D>1)throw"Invalid Huffman flag "+D;D?g.readHuffman(A,C,e,t):g.readTiles(A,C,e,t)}else g.readTiles(A,C,e,t)}C.eofOffset=C.ptr,I.inputOffset?(o=C.headerInfo.blobSize+I.inputOffset-C.ptr,Math.abs(o)>=1&&(C.eofOffset=I.inputOffset+C.headerInfo.blobSize)):(o=C.headerInfo.blobSize-C.ptr,Math.abs(o)>=1&&(C.eofOffset=C.headerInfo.blobSize));var n={width:E.width,height:E.height,pixelData:C.pixels.resultPixels,minValue:E.zMin,maxValue:E.zMax,validPixelCount:E.numValidPixel,dimCount:E.numDims,dimStats:{minValues:E.minValues,maxValues:E.maxValues},maskData:C.pixels.resultMask};if(C.pixels.resultMask&&g.isValidPixelValue(E.imageType,B)){var w=C.pixels.resultMask;for(Q=0;Q1&&(a&&f.push(a),l.fileInfo.mask&&l.fileInfo.mask.numBytes>0&&y++),w++,G.pixels.push(l.pixelData),G.statistics.push({minValue:l.minValue,maxValue:l.maxValue,noDataValue:l.noDataValue,dimStats:l.dimStats})}if(B>1&&y>1){for(n=G.width*G.height,G.bandMasks=f,(a=new Uint8Array(n)).set(f[0]),o=1;o{"use strict";g.r(I),g.d(I,{default:()=>r,zstd:()=>s});var B=g(3075),Q=g(5021);let C,E,i;const e={env:{emscripten_notify_memory_growth:function(A){i=new Uint8Array(E.exports.memory.buffer)}}},a="AGFzbQEAAAABpQEVYAF/AX9gAn9/AGADf39/AX9gBX9/f39/AX9gAX8AYAJ/fwF/YAR/f39/AX9gA39/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gAn9/AX5gAn5+AX5gAABgBX9/f39/AGAGf39/f39/AGAIf39/f39/f38AYAl/f39/f39/f38AYAABf2AIf39/f39/f38Bf2ANf39/f39/f39/f39/fwF/YAF/AX4CJwEDZW52H2Vtc2NyaXB0ZW5fbm90aWZ5X21lbW9yeV9ncm93dGgABANpaAEFAAAFAgEFCwACAQABAgIFBQcAAwABDgsBAQcAEhMHAAUBDAQEAAANBwQCAgYCBAgDAwMDBgEACQkHBgICAAYGAgQUBwYGAwIGAAMCAQgBBwUGCgoEEQAEBAEIAwgDBQgDEA8IAAcABAUBcAECAgUEAQCAAgYJAX8BQaCgwAILB2AHBm1lbW9yeQIABm1hbGxvYwAoBGZyZWUAJgxaU1REX2lzRXJyb3IAaBlaU1REX2ZpbmREZWNvbXByZXNzZWRTaXplAFQPWlNURF9kZWNvbXByZXNzAEoGX3N0YXJ0ACQJBwEAQQELASQKussBaA8AIAAgACgCBCABajYCBAsZACAAKAIAIAAoAgRBH3F0QQAgAWtBH3F2CwgAIABBiH9LC34BBH9BAyEBIAAoAgQiA0EgTQRAIAAoAggiASAAKAIQTwRAIAAQDQ8LIAAoAgwiAiABRgRAQQFBAiADQSBJGw8LIAAgASABIAJrIANBA3YiBCABIARrIAJJIgEbIgJrIgQ2AgggACADIAJBA3RrNgIEIAAgBCgAADYCAAsgAQsUAQF/IAAgARACIQIgACABEAEgAgv3AQECfyACRQRAIABCADcCACAAQQA2AhAgAEIANwIIQbh/DwsgACABNgIMIAAgAUEEajYCECACQQRPBEAgACABIAJqIgFBfGoiAzYCCCAAIAMoAAA2AgAgAUF/ai0AACIBBEAgAEEIIAEQFGs2AgQgAg8LIABBADYCBEF/DwsgACABNgIIIAAgAS0AACIDNgIAIAJBfmoiBEEBTQRAIARBAWtFBEAgACABLQACQRB0IANyIgM2AgALIAAgAS0AAUEIdCADajYCAAsgASACakF/ai0AACIBRQRAIABBADYCBEFsDwsgAEEoIAEQFCACQQN0ams2AgQgAgsWACAAIAEpAAA3AAAgACABKQAINwAICy8BAX8gAUECdEGgHWooAgAgACgCAEEgIAEgACgCBGprQR9xdnEhAiAAIAEQASACCyEAIAFCz9bTvtLHq9lCfiAAfEIfiUKHla+vmLbem55/fgsdAQF/IAAoAgggACgCDEYEfyAAKAIEQSBGBUEACwuCBAEDfyACQYDAAE8EQCAAIAEgAhBnIAAPCyAAIAJqIQMCQCAAIAFzQQNxRQRAAkAgAkEBSARAIAAhAgwBCyAAQQNxRQRAIAAhAgwBCyAAIQIDQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADTw0BIAJBA3ENAAsLAkAgA0F8cSIEQcAASQ0AIAIgBEFAaiIFSw0AA0AgAiABKAIANgIAIAIgASgCBDYCBCACIAEoAgg2AgggAiABKAIMNgIMIAIgASgCEDYCECACIAEoAhQ2AhQgAiABKAIYNgIYIAIgASgCHDYCHCACIAEoAiA2AiAgAiABKAIkNgIkIAIgASgCKDYCKCACIAEoAiw2AiwgAiABKAIwNgIwIAIgASgCNDYCNCACIAEoAjg2AjggAiABKAI8NgI8IAFBQGshASACQUBrIgIgBU0NAAsLIAIgBE8NAQNAIAIgASgCADYCACABQQRqIQEgAkEEaiICIARJDQALDAELIANBBEkEQCAAIQIMAQsgA0F8aiIEIABJBEAgACECDAELIAAhAgNAIAIgAS0AADoAACACIAEtAAE6AAEgAiABLQACOgACIAIgAS0AAzoAAyABQQRqIQEgAkEEaiICIARNDQALCyACIANJBEADQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADRw0ACwsgAAsMACAAIAEpAAA3AAALQQECfyAAKAIIIgEgACgCEEkEQEEDDwsgACAAKAIEIgJBB3E2AgQgACABIAJBA3ZrIgE2AgggACABKAAANgIAQQALDAAgACABKAIANgAAC/cCAQJ/AkAgACABRg0AAkAgASACaiAASwRAIAAgAmoiBCABSw0BCyAAIAEgAhALDwsgACABc0EDcSEDAkACQCAAIAFJBEAgAwRAIAAhAwwDCyAAQQNxRQRAIAAhAwwCCyAAIQMDQCACRQ0EIAMgAS0AADoAACABQQFqIQEgAkF/aiECIANBAWoiA0EDcQ0ACwwBCwJAIAMNACAEQQNxBEADQCACRQ0FIAAgAkF/aiICaiIDIAEgAmotAAA6AAAgA0EDcQ0ACwsgAkEDTQ0AA0AgACACQXxqIgJqIAEgAmooAgA2AgAgAkEDSw0ACwsgAkUNAgNAIAAgAkF/aiICaiABIAJqLQAAOgAAIAINAAsMAgsgAkEDTQ0AIAIhBANAIAMgASgCADYCACABQQRqIQEgA0EEaiEDIARBfGoiBEEDSw0ACyACQQNxIQILIAJFDQADQCADIAEtAAA6AAAgA0EBaiEDIAFBAWohASACQX9qIgINAAsLIAAL8wICAn8BfgJAIAJFDQAgACACaiIDQX9qIAE6AAAgACABOgAAIAJBA0kNACADQX5qIAE6AAAgACABOgABIANBfWogAToAACAAIAE6AAIgAkEHSQ0AIANBfGogAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa0iBUIghiAFhCEFIAMgBGohAQNAIAEgBTcDGCABIAU3AxAgASAFNwMIIAEgBTcDACABQSBqIQEgAkFgaiICQR9LDQALCyAACy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAIajYCACADCy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAFajYCACADCx8AIAAgASACKAIEEAg2AgAgARAEGiAAIAJBCGo2AgQLCAAgAGdBH3MLugUBDX8jAEEQayIKJAACfyAEQQNNBEAgCkEANgIMIApBDGogAyAEEAsaIAAgASACIApBDGpBBBAVIgBBbCAAEAMbIAAgACAESxsMAQsgAEEAIAEoAgBBAXRBAmoQECENQVQgAygAACIGQQ9xIgBBCksNABogAiAAQQVqNgIAIAMgBGoiAkF8aiEMIAJBeWohDiACQXtqIRAgAEEGaiELQQQhBSAGQQR2IQRBICAAdCIAQQFyIQkgASgCACEPQQAhAiADIQYCQANAIAlBAkggAiAPS3JFBEAgAiEHAkAgCARAA0AgBEH//wNxQf//A0YEQCAHQRhqIQcgBiAQSQR/IAZBAmoiBigAACAFdgUgBUEQaiEFIARBEHYLIQQMAQsLA0AgBEEDcSIIQQNGBEAgBUECaiEFIARBAnYhBCAHQQNqIQcMAQsLIAcgCGoiByAPSw0EIAVBAmohBQNAIAIgB0kEQCANIAJBAXRqQQA7AQAgAkEBaiECDAELCyAGIA5LQQAgBiAFQQN1aiIHIAxLG0UEQCAHKAAAIAVBB3EiBXYhBAwCCyAEQQJ2IQQLIAYhBwsCfyALQX9qIAQgAEF/anEiBiAAQQF0QX9qIgggCWsiEUkNABogBCAIcSIEQQAgESAEIABIG2shBiALCyEIIA0gAkEBdGogBkF/aiIEOwEAIAlBASAGayAEIAZBAUgbayEJA0AgCSAASARAIABBAXUhACALQX9qIQsMAQsLAn8gByAOS0EAIAcgBSAIaiIFQQN1aiIGIAxLG0UEQCAFQQdxDAELIAUgDCIGIAdrQQN0awshBSACQQFqIQIgBEUhCCAGKAAAIAVBH3F2IQQMAQsLQWwgCUEBRyAFQSBKcg0BGiABIAJBf2o2AgAgBiAFQQdqQQN1aiADawwBC0FQCyEAIApBEGokACAACwkAQQFBBSAAGwsMACAAIAEoAAA2AAALqgMBCn8jAEHwAGsiCiQAIAJBAWohDiAAQQhqIQtBgIAEIAVBf2p0QRB1IQxBACECQQEhBkEBIAV0IglBf2oiDyEIA0AgAiAORkUEQAJAIAEgAkEBdCINai8BACIHQf//A0YEQCALIAhBA3RqIAI2AgQgCEF/aiEIQQEhBwwBCyAGQQAgDCAHQRB0QRB1ShshBgsgCiANaiAHOwEAIAJBAWohAgwBCwsgACAFNgIEIAAgBjYCACAJQQN2IAlBAXZqQQNqIQxBACEAQQAhBkEAIQIDQCAGIA5GBEADQAJAIAAgCUYNACAKIAsgAEEDdGoiASgCBCIGQQF0aiICIAIvAQAiAkEBajsBACABIAUgAhAUayIIOgADIAEgAiAIQf8BcXQgCWs7AQAgASAEIAZBAnQiAmooAgA6AAIgASACIANqKAIANgIEIABBAWohAAwBCwsFIAEgBkEBdGouAQAhDUEAIQcDQCAHIA1ORQRAIAsgAkEDdGogBjYCBANAIAIgDGogD3EiAiAISw0ACyAHQQFqIQcMAQsLIAZBAWohBgwBCwsgCkHwAGokAAsjAEIAIAEQCSAAhUKHla+vmLbem55/fkLj3MqV/M7y9YV/fAsQACAAQn43AwggACABNgIACyQBAX8gAARAIAEoAgQiAgRAIAEoAgggACACEQEADwsgABAmCwsfACAAIAEgAi8BABAINgIAIAEQBBogACACQQRqNgIEC0oBAX9BoCAoAgAiASAAaiIAQX9MBEBBiCBBMDYCAEF/DwsCQCAAPwBBEHRNDQAgABBmDQBBiCBBMDYCAEF/DwtBoCAgADYCACABC9cBAQh/Qbp/IQoCQCACKAIEIgggAigCACIJaiIOIAEgAGtLDQBBbCEKIAkgBCADKAIAIgtrSw0AIAAgCWoiBCACKAIIIgxrIQ0gACABQWBqIg8gCyAJQQAQKSADIAkgC2o2AgACQAJAIAwgBCAFa00EQCANIQUMAQsgDCAEIAZrSw0CIAcgDSAFayIAaiIBIAhqIAdNBEAgBCABIAgQDxoMAgsgBCABQQAgAGsQDyEBIAIgACAIaiIINgIEIAEgAGshBAsgBCAPIAUgCEEBECkLIA4hCgsgCgubAgEBfyMAQYABayINJAAgDSADNgJ8AkAgAkEDSwRAQX8hCQwBCwJAAkACQAJAIAJBAWsOAwADAgELIAZFBEBBuH8hCQwEC0FsIQkgBS0AACICIANLDQMgACAHIAJBAnQiAmooAgAgAiAIaigCABA7IAEgADYCAEEBIQkMAwsgASAJNgIAQQAhCQwCCyAKRQRAQWwhCQwCC0EAIQkgC0UgDEEZSHINAUEIIAR0QQhqIQBBACECA0AgAiAATw0CIAJBQGshAgwAAAsAC0FsIQkgDSANQfwAaiANQfgAaiAFIAYQFSICEAMNACANKAJ4IgMgBEsNACAAIA0gDSgCfCAHIAggAxAYIAEgADYCACACIQkLIA1BgAFqJAAgCQsLACAAIAEgAhALGgsQACAALwAAIAAtAAJBEHRyCy8AAn9BuH8gAUEISQ0AGkFyIAAoAAQiAEF3Sw0AGkG4fyAAQQhqIgAgACABSxsLCwkAIAAgATsAAAsDAAELigYBBX8gACAAKAIAIgVBfnE2AgBBACAAIAVBAXZqQYQgKAIAIgQgAEYbIQECQAJAIAAoAgQiAkUNACACKAIAIgNBAXENACACQQhqIgUgA0EBdkF4aiIDQQggA0EISxtnQR9zQQJ0QYAfaiIDKAIARgRAIAMgAigCDDYCAAsgAigCCCIDBEAgAyACKAIMNgIECyACKAIMIgMEQCADIAIoAgg2AgALIAIgAigCACAAKAIAQX5xajYCAEGEICEAAkACQCABRQ0AIAEgAjYCBCABKAIAIgNBAXENASADQQF2QXhqIgNBCCADQQhLG2dBH3NBAnRBgB9qIgMoAgAgAUEIakYEQCADIAEoAgw2AgALIAEoAggiAwRAIAMgASgCDDYCBAsgASgCDCIDBEAgAyABKAIINgIAQYQgKAIAIQQLIAIgAigCACABKAIAQX5xajYCACABIARGDQAgASABKAIAQQF2akEEaiEACyAAIAI2AgALIAIoAgBBAXZBeGoiAEEIIABBCEsbZ0Efc0ECdEGAH2oiASgCACEAIAEgBTYCACACIAA2AgwgAkEANgIIIABFDQEgACAFNgIADwsCQCABRQ0AIAEoAgAiAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAigCACABQQhqRgRAIAIgASgCDDYCAAsgASgCCCICBEAgAiABKAIMNgIECyABKAIMIgIEQCACIAEoAgg2AgBBhCAoAgAhBAsgACAAKAIAIAEoAgBBfnFqIgI2AgACQCABIARHBEAgASABKAIAQQF2aiAANgIEIAAoAgAhAgwBC0GEICAANgIACyACQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgIoAgAhASACIABBCGoiAjYCACAAIAE2AgwgAEEANgIIIAFFDQEgASACNgIADwsgBUEBdkF4aiIBQQggAUEISxtnQR9zQQJ0QYAfaiICKAIAIQEgAiAAQQhqIgI2AgAgACABNgIMIABBADYCCCABRQ0AIAEgAjYCAAsLDgAgAARAIABBeGoQJQsLgAIBA38CQCAAQQ9qQXhxQYQgKAIAKAIAQQF2ayICEB1Bf0YNAAJAQYQgKAIAIgAoAgAiAUEBcQ0AIAFBAXZBeGoiAUEIIAFBCEsbZ0Efc0ECdEGAH2oiASgCACAAQQhqRgRAIAEgACgCDDYCAAsgACgCCCIBBEAgASAAKAIMNgIECyAAKAIMIgFFDQAgASAAKAIINgIAC0EBIQEgACAAKAIAIAJBAXRqIgI2AgAgAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAygCACECIAMgAEEIaiIDNgIAIAAgAjYCDCAAQQA2AgggAkUNACACIAM2AgALIAELtwIBA38CQAJAIABBASAAGyICEDgiAA0AAkACQEGEICgCACIARQ0AIAAoAgAiA0EBcQ0AIAAgA0EBcjYCACADQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgAgAEEIakYEQCABIAAoAgw2AgALIAAoAggiAQRAIAEgACgCDDYCBAsgACgCDCIBBEAgASAAKAIINgIACyACECchAkEAIQFBhCAoAgAhACACDQEgACAAKAIAQX5xNgIAQQAPCyACQQ9qQXhxIgMQHSICQX9GDQIgAkEHakF4cSIAIAJHBEAgACACaxAdQX9GDQMLAkBBhCAoAgAiAUUEQEGAICAANgIADAELIAAgATYCBAtBhCAgADYCACAAIANBAXRBAXI2AgAMAQsgAEUNAQsgAEEIaiEBCyABC7kDAQJ/IAAgA2ohBQJAIANBB0wEQANAIAAgBU8NAiAAIAItAAA6AAAgAEEBaiEAIAJBAWohAgwAAAsACyAEQQFGBEACQCAAIAJrIgZBB00EQCAAIAItAAA6AAAgACACLQABOgABIAAgAi0AAjoAAiAAIAItAAM6AAMgAEEEaiACIAZBAnQiBkHAHmooAgBqIgIQFyACIAZB4B5qKAIAayECDAELIAAgAhAMCyACQQhqIQIgAEEIaiEACwJAAkACQAJAIAUgAU0EQCAAIANqIQEgBEEBRyAAIAJrQQ9Kcg0BA0AgACACEAwgAkEIaiECIABBCGoiACABSQ0ACwwFCyAAIAFLBEAgACEBDAQLIARBAUcgACACa0EPSnINASAAIQMgAiEEA0AgAyAEEAwgBEEIaiEEIANBCGoiAyABSQ0ACwwCCwNAIAAgAhAHIAJBEGohAiAAQRBqIgAgAUkNAAsMAwsgACEDIAIhBANAIAMgBBAHIARBEGohBCADQRBqIgMgAUkNAAsLIAIgASAAa2ohAgsDQCABIAVPDQEgASACLQAAOgAAIAFBAWohASACQQFqIQIMAAALAAsLQQECfyAAIAAoArjgASIDNgLE4AEgACgCvOABIQQgACABNgK84AEgACABIAJqNgK44AEgACABIAQgA2tqNgLA4AELpgEBAX8gACAAKALs4QEQFjYCyOABIABCADcD+OABIABCADcDuOABIABBwOABakIANwMAIABBqNAAaiIBQYyAgOAANgIAIABBADYCmOIBIABCADcDiOEBIABCAzcDgOEBIABBrNABakHgEikCADcCACAAQbTQAWpB6BIoAgA2AgAgACABNgIMIAAgAEGYIGo2AgggACAAQaAwajYCBCAAIABBEGo2AgALYQEBf0G4fyEDAkAgAUEDSQ0AIAIgABAhIgFBA3YiADYCCCACIAFBAXE2AgQgAiABQQF2QQNxIgM2AgACQCADQX9qIgFBAksNAAJAIAFBAWsOAgEAAgtBbA8LIAAhAwsgAwsMACAAIAEgAkEAEC4LiAQCA38CfiADEBYhBCAAQQBBKBAQIQAgBCACSwRAIAQPCyABRQRAQX8PCwJAAkAgA0EBRg0AIAEoAAAiBkGo6r5pRg0AQXYhAyAGQXBxQdDUtMIBRw0BQQghAyACQQhJDQEgAEEAQSgQECEAIAEoAAQhASAAQQE2AhQgACABrTcDAEEADwsgASACIAMQLyIDIAJLDQAgACADNgIYQXIhAyABIARqIgVBf2otAAAiAkEIcQ0AIAJBIHEiBkUEQEFwIQMgBS0AACIFQacBSw0BIAVBB3GtQgEgBUEDdkEKaq2GIgdCA4h+IAd8IQggBEEBaiEECyACQQZ2IQMgAkECdiEFAkAgAkEDcUF/aiICQQJLBEBBACECDAELAkACQAJAIAJBAWsOAgECAAsgASAEai0AACECIARBAWohBAwCCyABIARqLwAAIQIgBEECaiEEDAELIAEgBGooAAAhAiAEQQRqIQQLIAVBAXEhBQJ+AkACQAJAIANBf2oiA0ECTQRAIANBAWsOAgIDAQtCfyAGRQ0DGiABIARqMQAADAMLIAEgBGovAACtQoACfAwCCyABIARqKAAArQwBCyABIARqKQAACyEHIAAgBTYCICAAIAI2AhwgACAHNwMAQQAhAyAAQQA2AhQgACAHIAggBhsiBzcDCCAAIAdCgIAIIAdCgIAIVBs+AhALIAMLWwEBf0G4fyEDIAIQFiICIAFNBH8gACACakF/ai0AACIAQQNxQQJ0QaAeaigCACACaiAAQQZ2IgFBAnRBsB5qKAIAaiAAQSBxIgBFaiABRSAAQQV2cWoFQbh/CwsdACAAKAKQ4gEQWiAAQQA2AqDiASAAQgA3A5DiAQu1AwEFfyMAQZACayIKJABBuH8hBgJAIAVFDQAgBCwAACIIQf8BcSEHAkAgCEF/TARAIAdBgn9qQQF2IgggBU8NAkFsIQYgB0GBf2oiBUGAAk8NAiAEQQFqIQdBACEGA0AgBiAFTwRAIAUhBiAIIQcMAwUgACAGaiAHIAZBAXZqIgQtAABBBHY6AAAgACAGQQFyaiAELQAAQQ9xOgAAIAZBAmohBgwBCwAACwALIAcgBU8NASAAIARBAWogByAKEFMiBhADDQELIAYhBEEAIQYgAUEAQTQQECEJQQAhBQNAIAQgBkcEQCAAIAZqIggtAAAiAUELSwRAQWwhBgwDBSAJIAFBAnRqIgEgASgCAEEBajYCACAGQQFqIQZBASAILQAAdEEBdSAFaiEFDAILAAsLQWwhBiAFRQ0AIAUQFEEBaiIBQQxLDQAgAyABNgIAQQFBASABdCAFayIDEBQiAXQgA0cNACAAIARqIAFBAWoiADoAACAJIABBAnRqIgAgACgCAEEBajYCACAJKAIEIgBBAkkgAEEBcXINACACIARBAWo2AgAgB0EBaiEGCyAKQZACaiQAIAYLxhEBDH8jAEHwAGsiBSQAQWwhCwJAIANBCkkNACACLwAAIQogAi8AAiEJIAIvAAQhByAFQQhqIAQQDgJAIAMgByAJIApqakEGaiIMSQ0AIAUtAAohCCAFQdgAaiACQQZqIgIgChAGIgsQAw0BIAVBQGsgAiAKaiICIAkQBiILEAMNASAFQShqIAIgCWoiAiAHEAYiCxADDQEgBUEQaiACIAdqIAMgDGsQBiILEAMNASAAIAFqIg9BfWohECAEQQRqIQZBASELIAAgAUEDakECdiIDaiIMIANqIgIgA2oiDiEDIAIhBCAMIQcDQCALIAMgEElxBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgCS0AAyELIAcgBiAFQUBrIAgQAkECdGoiCS8BADsAACAFQUBrIAktAAIQASAJLQADIQogBCAGIAVBKGogCBACQQJ0aiIJLwEAOwAAIAVBKGogCS0AAhABIAktAAMhCSADIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgDS0AAyENIAAgC2oiCyAGIAVB2ABqIAgQAkECdGoiAC8BADsAACAFQdgAaiAALQACEAEgAC0AAyEAIAcgCmoiCiAGIAVBQGsgCBACQQJ0aiIHLwEAOwAAIAVBQGsgBy0AAhABIActAAMhByAEIAlqIgkgBiAFQShqIAgQAkECdGoiBC8BADsAACAFQShqIAQtAAIQASAELQADIQQgAyANaiIDIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgACALaiEAIAcgCmohByAEIAlqIQQgAyANLQADaiEDIAVB2ABqEA0gBUFAaxANciAFQShqEA1yIAVBEGoQDXJFIQsMAQsLIAQgDksgByACS3INAEFsIQsgACAMSw0BIAxBfWohCQNAQQAgACAJSSAFQdgAahAEGwRAIAAgBiAFQdgAaiAIEAJBAnRqIgovAQA7AAAgBUHYAGogCi0AAhABIAAgCi0AA2oiACAGIAVB2ABqIAgQAkECdGoiCi8BADsAACAFQdgAaiAKLQACEAEgACAKLQADaiEADAEFIAxBfmohCgNAIAVB2ABqEAQgACAKS3JFBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgACAJLQADaiEADAELCwNAIAAgCk0EQCAAIAYgBUHYAGogCBACQQJ0aiIJLwEAOwAAIAVB2ABqIAktAAIQASAAIAktAANqIQAMAQsLAkAgACAMTw0AIAAgBiAFQdgAaiAIEAIiAEECdGoiDC0AADoAACAMLQADQQFGBEAgBUHYAGogDC0AAhABDAELIAUoAlxBH0sNACAFQdgAaiAGIABBAnRqLQACEAEgBSgCXEEhSQ0AIAVBIDYCXAsgAkF9aiEMA0BBACAHIAxJIAVBQGsQBBsEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiIAIAYgBUFAayAIEAJBAnRqIgcvAQA7AAAgBUFAayAHLQACEAEgACAHLQADaiEHDAEFIAJBfmohDANAIAVBQGsQBCAHIAxLckUEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwNAIAcgDE0EQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwJAIAcgAk8NACAHIAYgBUFAayAIEAIiAEECdGoiAi0AADoAACACLQADQQFGBEAgBUFAayACLQACEAEMAQsgBSgCREEfSw0AIAVBQGsgBiAAQQJ0ai0AAhABIAUoAkRBIUkNACAFQSA2AkQLIA5BfWohAgNAQQAgBCACSSAFQShqEAQbBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2oiACAGIAVBKGogCBACQQJ0aiIELwEAOwAAIAVBKGogBC0AAhABIAAgBC0AA2ohBAwBBSAOQX5qIQIDQCAFQShqEAQgBCACS3JFBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsDQCAEIAJNBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsCQCAEIA5PDQAgBCAGIAVBKGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBKGogAi0AAhABDAELIAUoAixBH0sNACAFQShqIAYgAEECdGotAAIQASAFKAIsQSFJDQAgBUEgNgIsCwNAQQAgAyAQSSAFQRBqEAQbBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2oiACAGIAVBEGogCBACQQJ0aiICLwEAOwAAIAVBEGogAi0AAhABIAAgAi0AA2ohAwwBBSAPQX5qIQIDQCAFQRBqEAQgAyACS3JFBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsDQCADIAJNBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsCQCADIA9PDQAgAyAGIAVBEGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBEGogAi0AAhABDAELIAUoAhRBH0sNACAFQRBqIAYgAEECdGotAAIQASAFKAIUQSFJDQAgBUEgNgIUCyABQWwgBUHYAGoQCiAFQUBrEApxIAVBKGoQCnEgBUEQahAKcRshCwwJCwAACwALAAALAAsAAAsACwAACwALQWwhCwsgBUHwAGokACALC7UEAQ5/IwBBEGsiBiQAIAZBBGogABAOQVQhBQJAIARB3AtJDQAgBi0ABCEHIANB8ARqQQBB7AAQECEIIAdBDEsNACADQdwJaiIJIAggBkEIaiAGQQxqIAEgAhAxIhAQA0UEQCAGKAIMIgQgB0sNASADQdwFaiEPIANBpAVqIREgAEEEaiESIANBqAVqIQEgBCEFA0AgBSICQX9qIQUgCCACQQJ0aigCAEUNAAsgAkEBaiEOQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgASALaiAKNgIAIAVBAWohBSAKIAxqIQoMAQsLIAEgCjYCAEEAIQUgBigCCCELA0AgBSALRkUEQCABIAUgCWotAAAiDEECdGoiDSANKAIAIg1BAWo2AgAgDyANQQF0aiINIAw6AAEgDSAFOgAAIAVBAWohBQwBCwtBACEBIANBADYCqAUgBEF/cyAHaiEJQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgAyALaiABNgIAIAwgBSAJanQgAWohASAFQQFqIQUMAQsLIAcgBEEBaiIBIAJrIgRrQQFqIQgDQEEBIQUgBCAIT0UEQANAIAUgDk9FBEAgBUECdCIJIAMgBEE0bGpqIAMgCWooAgAgBHY2AgAgBUEBaiEFDAELCyAEQQFqIQQMAQsLIBIgByAPIAogESADIAIgARBkIAZBAToABSAGIAc6AAYgACAGKAIENgIACyAQIQULIAZBEGokACAFC8ENAQt/IwBB8ABrIgUkAEFsIQkCQCADQQpJDQAgAi8AACEKIAIvAAIhDCACLwAEIQYgBUEIaiAEEA4CQCADIAYgCiAMampBBmoiDUkNACAFLQAKIQcgBUHYAGogAkEGaiICIAoQBiIJEAMNASAFQUBrIAIgCmoiAiAMEAYiCRADDQEgBUEoaiACIAxqIgIgBhAGIgkQAw0BIAVBEGogAiAGaiADIA1rEAYiCRADDQEgACABaiIOQX1qIQ8gBEEEaiEGQQEhCSAAIAFBA2pBAnYiAmoiCiACaiIMIAJqIg0hAyAMIQQgCiECA0AgCSADIA9JcQRAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAACAGIAVBQGsgBxACQQF0aiIILQAAIQsgBUFAayAILQABEAEgAiALOgAAIAYgBUEoaiAHEAJBAXRqIggtAAAhCyAFQShqIAgtAAEQASAEIAs6AAAgBiAFQRBqIAcQAkEBdGoiCC0AACELIAVBEGogCC0AARABIAMgCzoAACAGIAVB2ABqIAcQAkEBdGoiCC0AACELIAVB2ABqIAgtAAEQASAAIAs6AAEgBiAFQUBrIAcQAkEBdGoiCC0AACELIAVBQGsgCC0AARABIAIgCzoAASAGIAVBKGogBxACQQF0aiIILQAAIQsgBUEoaiAILQABEAEgBCALOgABIAYgBUEQaiAHEAJBAXRqIggtAAAhCyAFQRBqIAgtAAEQASADIAs6AAEgA0ECaiEDIARBAmohBCACQQJqIQIgAEECaiEAIAkgBUHYAGoQDUVxIAVBQGsQDUVxIAVBKGoQDUVxIAVBEGoQDUVxIQkMAQsLIAQgDUsgAiAMS3INAEFsIQkgACAKSw0BIApBfWohCQNAIAVB2ABqEAQgACAJT3JFBEAgBiAFQdgAaiAHEAJBAXRqIggtAAAhCyAFQdgAaiAILQABEAEgACALOgAAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAASAAQQJqIQAMAQsLA0AgBUHYAGoQBCAAIApPckUEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCwNAIAAgCkkEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCyAMQX1qIQADQCAFQUBrEAQgAiAAT3JFBEAgBiAFQUBrIAcQAkEBdGoiCi0AACEJIAVBQGsgCi0AARABIAIgCToAACAGIAVBQGsgBxACQQF0aiIKLQAAIQkgBUFAayAKLQABEAEgAiAJOgABIAJBAmohAgwBCwsDQCAFQUBrEAQgAiAMT3JFBEAgBiAFQUBrIAcQAkEBdGoiAC0AACEKIAVBQGsgAC0AARABIAIgCjoAACACQQFqIQIMAQsLA0AgAiAMSQRAIAYgBUFAayAHEAJBAXRqIgAtAAAhCiAFQUBrIAAtAAEQASACIAo6AAAgAkEBaiECDAELCyANQX1qIQADQCAFQShqEAQgBCAAT3JFBEAgBiAFQShqIAcQAkEBdGoiAi0AACEKIAVBKGogAi0AARABIAQgCjoAACAGIAVBKGogBxACQQF0aiICLQAAIQogBUEoaiACLQABEAEgBCAKOgABIARBAmohBAwBCwsDQCAFQShqEAQgBCANT3JFBEAgBiAFQShqIAcQAkEBdGoiAC0AACECIAVBKGogAC0AARABIAQgAjoAACAEQQFqIQQMAQsLA0AgBCANSQRAIAYgBUEoaiAHEAJBAXRqIgAtAAAhAiAFQShqIAAtAAEQASAEIAI6AAAgBEEBaiEEDAELCwNAIAVBEGoQBCADIA9PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIAYgBUEQaiAHEAJBAXRqIgAtAAAhAiAFQRBqIAAtAAEQASADIAI6AAEgA0ECaiEDDAELCwNAIAVBEGoQBCADIA5PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIANBAWohAwwBCwsDQCADIA5JBEAgBiAFQRBqIAcQAkEBdGoiAC0AACECIAVBEGogAC0AARABIAMgAjoAACADQQFqIQMMAQsLIAFBbCAFQdgAahAKIAVBQGsQCnEgBUEoahAKcSAFQRBqEApxGyEJDAELQWwhCQsgBUHwAGokACAJC8oCAQR/IwBBIGsiBSQAIAUgBBAOIAUtAAIhByAFQQhqIAIgAxAGIgIQA0UEQCAEQQRqIQIgACABaiIDQX1qIQQDQCAFQQhqEAQgACAET3JFBEAgAiAFQQhqIAcQAkEBdGoiBi0AACEIIAVBCGogBi0AARABIAAgCDoAACACIAVBCGogBxACQQF0aiIGLQAAIQggBUEIaiAGLQABEAEgACAIOgABIABBAmohAAwBCwsDQCAFQQhqEAQgACADT3JFBEAgAiAFQQhqIAcQAkEBdGoiBC0AACEGIAVBCGogBC0AARABIAAgBjoAACAAQQFqIQAMAQsLA0AgACADT0UEQCACIAVBCGogBxACQQF0aiIELQAAIQYgBUEIaiAELQABEAEgACAGOgAAIABBAWohAAwBCwsgAUFsIAVBCGoQChshAgsgBUEgaiQAIAILtgMBCX8jAEEQayIGJAAgBkEANgIMIAZBADYCCEFUIQQCQAJAIANBQGsiDCADIAZBCGogBkEMaiABIAIQMSICEAMNACAGQQRqIAAQDiAGKAIMIgcgBi0ABEEBaksNASAAQQRqIQogBkEAOgAFIAYgBzoABiAAIAYoAgQ2AgAgB0EBaiEJQQEhBANAIAQgCUkEQCADIARBAnRqIgEoAgAhACABIAU2AgAgACAEQX9qdCAFaiEFIARBAWohBAwBCwsgB0EBaiEHQQAhBSAGKAIIIQkDQCAFIAlGDQEgAyAFIAxqLQAAIgRBAnRqIgBBASAEdEEBdSILIAAoAgAiAWoiADYCACAHIARrIQhBACEEAkAgC0EDTQRAA0AgBCALRg0CIAogASAEakEBdGoiACAIOgABIAAgBToAACAEQQFqIQQMAAALAAsDQCABIABPDQEgCiABQQF0aiIEIAg6AAEgBCAFOgAAIAQgCDoAAyAEIAU6AAIgBCAIOgAFIAQgBToABCAEIAg6AAcgBCAFOgAGIAFBBGohAQwAAAsACyAFQQFqIQUMAAALAAsgAiEECyAGQRBqJAAgBAutAQECfwJAQYQgKAIAIABHIAAoAgBBAXYiAyABa0F4aiICQXhxQQhHcgR/IAIFIAMQJ0UNASACQQhqC0EQSQ0AIAAgACgCACICQQFxIAAgAWpBD2pBeHEiASAAa0EBdHI2AgAgASAANgIEIAEgASgCAEEBcSAAIAJBAXZqIAFrIgJBAXRyNgIAQYQgIAEgAkH/////B3FqQQRqQYQgKAIAIABGGyABNgIAIAEQJQsLygIBBX8CQAJAAkAgAEEIIABBCEsbZ0EfcyAAaUEBR2oiAUEESSAAIAF2cg0AIAFBAnRB/B5qKAIAIgJFDQADQCACQXhqIgMoAgBBAXZBeGoiBSAATwRAIAIgBUEIIAVBCEsbZ0Efc0ECdEGAH2oiASgCAEYEQCABIAIoAgQ2AgALDAMLIARBHksNASAEQQFqIQQgAigCBCICDQALC0EAIQMgAUEgTw0BA0AgAUECdEGAH2ooAgAiAkUEQCABQR5LIQIgAUEBaiEBIAJFDQEMAwsLIAIgAkF4aiIDKAIAQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgBGBEAgASACKAIENgIACwsgAigCACIBBEAgASACKAIENgIECyACKAIEIgEEQCABIAIoAgA2AgALIAMgAygCAEEBcjYCACADIAAQNwsgAwvhCwINfwV+IwBB8ABrIgckACAHIAAoAvDhASIINgJcIAEgAmohDSAIIAAoAoDiAWohDwJAAkAgBUUEQCABIQQMAQsgACgCxOABIRAgACgCwOABIREgACgCvOABIQ4gAEEBNgKM4QFBACEIA0AgCEEDRwRAIAcgCEECdCICaiAAIAJqQazQAWooAgA2AkQgCEEBaiEIDAELC0FsIQwgB0EYaiADIAQQBhADDQEgB0EsaiAHQRhqIAAoAgAQEyAHQTRqIAdBGGogACgCCBATIAdBPGogB0EYaiAAKAIEEBMgDUFgaiESIAEhBEEAIQwDQCAHKAIwIAcoAixBA3RqKQIAIhRCEIinQf8BcSEIIAcoAkAgBygCPEEDdGopAgAiFUIQiKdB/wFxIQsgBygCOCAHKAI0QQN0aikCACIWQiCIpyEJIBVCIIghFyAUQiCIpyECAkAgFkIQiKdB/wFxIgNBAk8EQAJAIAZFIANBGUlyRQRAIAkgB0EYaiADQSAgBygCHGsiCiAKIANLGyIKEAUgAyAKayIDdGohCSAHQRhqEAQaIANFDQEgB0EYaiADEAUgCWohCQwBCyAHQRhqIAMQBSAJaiEJIAdBGGoQBBoLIAcpAkQhGCAHIAk2AkQgByAYNwNIDAELAkAgA0UEQCACBEAgBygCRCEJDAMLIAcoAkghCQwBCwJAAkAgB0EYakEBEAUgCSACRWpqIgNBA0YEQCAHKAJEQX9qIgMgA0VqIQkMAQsgA0ECdCAHaigCRCIJIAlFaiEJIANBAUYNAQsgByAHKAJINgJMCwsgByAHKAJENgJIIAcgCTYCRAsgF6chAyALBEAgB0EYaiALEAUgA2ohAwsgCCALakEUTwRAIAdBGGoQBBoLIAgEQCAHQRhqIAgQBSACaiECCyAHQRhqEAQaIAcgB0EYaiAUQhiIp0H/AXEQCCAUp0H//wNxajYCLCAHIAdBGGogFUIYiKdB/wFxEAggFadB//8DcWo2AjwgB0EYahAEGiAHIAdBGGogFkIYiKdB/wFxEAggFqdB//8DcWo2AjQgByACNgJgIAcoAlwhCiAHIAk2AmggByADNgJkAkACQAJAIAQgAiADaiILaiASSw0AIAIgCmoiEyAPSw0AIA0gBGsgC0Egak8NAQsgByAHKQNoNwMQIAcgBykDYDcDCCAEIA0gB0EIaiAHQdwAaiAPIA4gESAQEB4hCwwBCyACIARqIQggBCAKEAcgAkERTwRAIARBEGohAgNAIAIgCkEQaiIKEAcgAkEQaiICIAhJDQALCyAIIAlrIQIgByATNgJcIAkgCCAOa0sEQCAJIAggEWtLBEBBbCELDAILIBAgAiAOayICaiIKIANqIBBNBEAgCCAKIAMQDxoMAgsgCCAKQQAgAmsQDyEIIAcgAiADaiIDNgJkIAggAmshCCAOIQILIAlBEE8EQCADIAhqIQMDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALDAELAkAgCUEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgCUECdCIDQcAeaigCAGoiAhAXIAIgA0HgHmooAgBrIQIgBygCZCEDDAELIAggAhAMCyADQQlJDQAgAyAIaiEDIAhBCGoiCCACQQhqIgJrQQ9MBEADQCAIIAIQDCACQQhqIQIgCEEIaiIIIANJDQAMAgALAAsDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALCyAHQRhqEAQaIAsgDCALEAMiAhshDCAEIAQgC2ogAhshBCAFQX9qIgUNAAsgDBADDQFBbCEMIAdBGGoQBEECSQ0BQQAhCANAIAhBA0cEQCAAIAhBAnQiAmpBrNABaiACIAdqKAJENgIAIAhBAWohCAwBCwsgBygCXCEIC0G6fyEMIA8gCGsiACANIARrSw0AIAQEfyAEIAggABALIABqBUEACyABayEMCyAHQfAAaiQAIAwLkRcCFn8FfiMAQdABayIHJAAgByAAKALw4QEiCDYCvAEgASACaiESIAggACgCgOIBaiETAkACQCAFRQRAIAEhAwwBCyAAKALE4AEhESAAKALA4AEhFSAAKAK84AEhDyAAQQE2AozhAUEAIQgDQCAIQQNHBEAgByAIQQJ0IgJqIAAgAmpBrNABaigCADYCVCAIQQFqIQgMAQsLIAcgETYCZCAHIA82AmAgByABIA9rNgJoQWwhECAHQShqIAMgBBAGEAMNASAFQQQgBUEESBshFyAHQTxqIAdBKGogACgCABATIAdBxABqIAdBKGogACgCCBATIAdBzABqIAdBKGogACgCBBATQQAhBCAHQeAAaiEMIAdB5ABqIQoDQCAHQShqEARBAksgBCAXTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEJIAcoAkggBygCREEDdGopAgAiH0IgiKchCCAeQiCIISAgHUIgiKchAgJAIB9CEIinQf8BcSIDQQJPBEACQCAGRSADQRlJckUEQCAIIAdBKGogA0EgIAcoAixrIg0gDSADSxsiDRAFIAMgDWsiA3RqIQggB0EoahAEGiADRQ0BIAdBKGogAxAFIAhqIQgMAQsgB0EoaiADEAUgCGohCCAHQShqEAQaCyAHKQJUISEgByAINgJUIAcgITcDWAwBCwJAIANFBEAgAgRAIAcoAlQhCAwDCyAHKAJYIQgMAQsCQAJAIAdBKGpBARAFIAggAkVqaiIDQQNGBEAgBygCVEF/aiIDIANFaiEIDAELIANBAnQgB2ooAlQiCCAIRWohCCADQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAg2AlQLICCnIQMgCQRAIAdBKGogCRAFIANqIQMLIAkgC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgAmohAgsgB0EoahAEGiAHIAcoAmggAmoiCSADajYCaCAKIAwgCCAJSxsoAgAhDSAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogB0EoaiAfQhiIp0H/AXEQCCEOIAdB8ABqIARBBHRqIgsgCSANaiAIazYCDCALIAg2AgggCyADNgIEIAsgAjYCACAHIA4gH6dB//8DcWo2AkQgBEEBaiEEDAELCyAEIBdIDQEgEkFgaiEYIAdB4ABqIRogB0HkAGohGyABIQMDQCAHQShqEARBAksgBCAFTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEIIAcoAkggBygCREEDdGopAgAiH0IgiKchCSAeQiCIISAgHUIgiKchDAJAIB9CEIinQf8BcSICQQJPBEACQCAGRSACQRlJckUEQCAJIAdBKGogAkEgIAcoAixrIgogCiACSxsiChAFIAIgCmsiAnRqIQkgB0EoahAEGiACRQ0BIAdBKGogAhAFIAlqIQkMAQsgB0EoaiACEAUgCWohCSAHQShqEAQaCyAHKQJUISEgByAJNgJUIAcgITcDWAwBCwJAIAJFBEAgDARAIAcoAlQhCQwDCyAHKAJYIQkMAQsCQAJAIAdBKGpBARAFIAkgDEVqaiICQQNGBEAgBygCVEF/aiICIAJFaiEJDAELIAJBAnQgB2ooAlQiCSAJRWohCSACQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAk2AlQLICCnIRQgCARAIAdBKGogCBAFIBRqIRQLIAggC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgDGohDAsgB0EoahAEGiAHIAcoAmggDGoiGSAUajYCaCAbIBogCSAZSxsoAgAhHCAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogByAHQShqIB9CGIinQf8BcRAIIB+nQf//A3FqNgJEIAcgB0HwAGogBEEDcUEEdGoiDSkDCCIdNwPIASAHIA0pAwAiHjcDwAECQAJAAkAgBygCvAEiDiAepyICaiIWIBNLDQAgAyAHKALEASIKIAJqIgtqIBhLDQAgEiADayALQSBqTw0BCyAHIAcpA8gBNwMQIAcgBykDwAE3AwggAyASIAdBCGogB0G8AWogEyAPIBUgERAeIQsMAQsgAiADaiEIIAMgDhAHIAJBEU8EQCADQRBqIQIDQCACIA5BEGoiDhAHIAJBEGoiAiAISQ0ACwsgCCAdpyIOayECIAcgFjYCvAEgDiAIIA9rSwRAIA4gCCAVa0sEQEFsIQsMAgsgESACIA9rIgJqIhYgCmogEU0EQCAIIBYgChAPGgwCCyAIIBZBACACaxAPIQggByACIApqIgo2AsQBIAggAmshCCAPIQILIA5BEE8EQCAIIApqIQoDQCAIIAIQByACQRBqIQIgCEEQaiIIIApJDQALDAELAkAgDkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgDkECdCIKQcAeaigCAGoiAhAXIAIgCkHgHmooAgBrIQIgBygCxAEhCgwBCyAIIAIQDAsgCkEJSQ0AIAggCmohCiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAKSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAKSQ0ACwsgCxADBEAgCyEQDAQFIA0gDDYCACANIBkgHGogCWs2AgwgDSAJNgIIIA0gFDYCBCAEQQFqIQQgAyALaiEDDAILAAsLIAQgBUgNASAEIBdrIQtBACEEA0AgCyAFSARAIAcgB0HwAGogC0EDcUEEdGoiAikDCCIdNwPIASAHIAIpAwAiHjcDwAECQAJAAkAgBygCvAEiDCAepyICaiIKIBNLDQAgAyAHKALEASIJIAJqIhBqIBhLDQAgEiADayAQQSBqTw0BCyAHIAcpA8gBNwMgIAcgBykDwAE3AxggAyASIAdBGGogB0G8AWogEyAPIBUgERAeIRAMAQsgAiADaiEIIAMgDBAHIAJBEU8EQCADQRBqIQIDQCACIAxBEGoiDBAHIAJBEGoiAiAISQ0ACwsgCCAdpyIGayECIAcgCjYCvAEgBiAIIA9rSwRAIAYgCCAVa0sEQEFsIRAMAgsgESACIA9rIgJqIgwgCWogEU0EQCAIIAwgCRAPGgwCCyAIIAxBACACaxAPIQggByACIAlqIgk2AsQBIAggAmshCCAPIQILIAZBEE8EQCAIIAlqIQYDQCAIIAIQByACQRBqIQIgCEEQaiIIIAZJDQALDAELAkAgBkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgBkECdCIGQcAeaigCAGoiAhAXIAIgBkHgHmooAgBrIQIgBygCxAEhCQwBCyAIIAIQDAsgCUEJSQ0AIAggCWohBiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAGSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAGSQ0ACwsgEBADDQMgC0EBaiELIAMgEGohAwwBCwsDQCAEQQNHBEAgACAEQQJ0IgJqQazQAWogAiAHaigCVDYCACAEQQFqIQQMAQsLIAcoArwBIQgLQbp/IRAgEyAIayIAIBIgA2tLDQAgAwR/IAMgCCAAEAsgAGoFQQALIAFrIRALIAdB0AFqJAAgEAslACAAQgA3AgAgAEEAOwEIIABBADoACyAAIAE2AgwgACACOgAKC7QFAQN/IwBBMGsiBCQAIABB/wFqIgVBfWohBgJAIAMvAQIEQCAEQRhqIAEgAhAGIgIQAw0BIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahASOgAAIAMgBEEIaiAEQRhqEBI6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0FIAEgBEEQaiAEQRhqEBI6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBSABIARBCGogBEEYahASOgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEjoAACABIAJqIABrIQIMAwsgAyAEQRBqIARBGGoQEjoAAiADIARBCGogBEEYahASOgADIANBBGohAwwAAAsACyAEQRhqIAEgAhAGIgIQAw0AIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahAROgAAIAMgBEEIaiAEQRhqEBE6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0EIAEgBEEQaiAEQRhqEBE6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBCABIARBCGogBEEYahAROgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEToAACABIAJqIABrIQIMAgsgAyAEQRBqIARBGGoQEToAAiADIARBCGogBEEYahAROgADIANBBGohAwwAAAsACyAEQTBqJAAgAgtpAQF/An8CQAJAIAJBB00NACABKAAAQbfIwuF+Rw0AIAAgASgABDYCmOIBQWIgAEEQaiABIAIQPiIDEAMNAhogAEKBgICAEDcDiOEBIAAgASADaiACIANrECoMAQsgACABIAIQKgtBAAsLrQMBBn8jAEGAAWsiAyQAQWIhCAJAIAJBCUkNACAAQZjQAGogAUEIaiIEIAJBeGogAEGY0AAQMyIFEAMiBg0AIANBHzYCfCADIANB/ABqIANB+ABqIAQgBCAFaiAGGyIEIAEgAmoiAiAEaxAVIgUQAw0AIAMoAnwiBkEfSw0AIAMoAngiB0EJTw0AIABBiCBqIAMgBkGAC0GADCAHEBggA0E0NgJ8IAMgA0H8AGogA0H4AGogBCAFaiIEIAIgBGsQFSIFEAMNACADKAJ8IgZBNEsNACADKAJ4IgdBCk8NACAAQZAwaiADIAZBgA1B4A4gBxAYIANBIzYCfCADIANB/ABqIANB+ABqIAQgBWoiBCACIARrEBUiBRADDQAgAygCfCIGQSNLDQAgAygCeCIHQQpPDQAgACADIAZBwBBB0BEgBxAYIAQgBWoiBEEMaiIFIAJLDQAgAiAFayEFQQAhAgNAIAJBA0cEQCAEKAAAIgZBf2ogBU8NAiAAIAJBAnRqQZzQAWogBjYCACACQQFqIQIgBEEEaiEEDAELCyAEIAFrIQgLIANBgAFqJAAgCAtGAQN/IABBCGohAyAAKAIEIQJBACEAA0AgACACdkUEQCABIAMgAEEDdGotAAJBFktqIQEgAEEBaiEADAELCyABQQggAmt0C4YDAQV/Qbh/IQcCQCADRQ0AIAItAAAiBEUEQCABQQA2AgBBAUG4fyADQQFGGw8LAn8gAkEBaiIFIARBGHRBGHUiBkF/Sg0AGiAGQX9GBEAgA0EDSA0CIAUvAABBgP4BaiEEIAJBA2oMAQsgA0ECSA0BIAItAAEgBEEIdHJBgIB+aiEEIAJBAmoLIQUgASAENgIAIAVBAWoiASACIANqIgNLDQBBbCEHIABBEGogACAFLQAAIgVBBnZBI0EJIAEgAyABa0HAEEHQEUHwEiAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBmCBqIABBCGogBUEEdkEDcUEfQQggASABIAZqIAgbIgEgAyABa0GAC0GADEGAFyAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBoDBqIABBBGogBUECdkEDcUE0QQkgASABIAZqIAgbIgEgAyABa0GADUHgDkGQGSAAKAKM4QEgACgCnOIBIAQQHyIAEAMNACAAIAFqIAJrIQcLIAcLrQMBCn8jAEGABGsiCCQAAn9BUiACQf8BSw0AGkFUIANBDEsNABogAkEBaiELIABBBGohCUGAgAQgA0F/anRBEHUhCkEAIQJBASEEQQEgA3QiB0F/aiIMIQUDQCACIAtGRQRAAkAgASACQQF0Ig1qLwEAIgZB//8DRgRAIAkgBUECdGogAjoAAiAFQX9qIQVBASEGDAELIARBACAKIAZBEHRBEHVKGyEECyAIIA1qIAY7AQAgAkEBaiECDAELCyAAIAQ7AQIgACADOwEAIAdBA3YgB0EBdmpBA2ohBkEAIQRBACECA0AgBCALRkUEQCABIARBAXRqLgEAIQpBACEAA0AgACAKTkUEQCAJIAJBAnRqIAQ6AAIDQCACIAZqIAxxIgIgBUsNAAsgAEEBaiEADAELCyAEQQFqIQQMAQsLQX8gAg0AGkEAIQIDfyACIAdGBH9BAAUgCCAJIAJBAnRqIgAtAAJBAXRqIgEgAS8BACIBQQFqOwEAIAAgAyABEBRrIgU6AAMgACABIAVB/wFxdCAHazsBACACQQFqIQIMAQsLCyEFIAhBgARqJAAgBQvjBgEIf0FsIQcCQCACQQNJDQACQAJAAkACQCABLQAAIgNBA3EiCUEBaw4DAwEAAgsgACgCiOEBDQBBYg8LIAJBBUkNAkEDIQYgASgAACEFAn8CQAJAIANBAnZBA3EiCEF+aiIEQQFNBEAgBEEBaw0BDAILIAVBDnZB/wdxIQQgBUEEdkH/B3EhAyAIRQwCCyAFQRJ2IQRBBCEGIAVBBHZB//8AcSEDQQAMAQsgBUEEdkH//w9xIgNBgIAISw0DIAEtAARBCnQgBUEWdnIhBEEFIQZBAAshBSAEIAZqIgogAksNAgJAIANBgQZJDQAgACgCnOIBRQ0AQQAhAgNAIAJBg4ABSw0BIAJBQGshAgwAAAsACwJ/IAlBA0YEQCABIAZqIQEgAEHw4gFqIQIgACgCDCEGIAUEQCACIAMgASAEIAYQXwwCCyACIAMgASAEIAYQXQwBCyAAQbjQAWohAiABIAZqIQEgAEHw4gFqIQYgAEGo0ABqIQggBQRAIAggBiADIAEgBCACEF4MAQsgCCAGIAMgASAEIAIQXAsQAw0CIAAgAzYCgOIBIABBATYCiOEBIAAgAEHw4gFqNgLw4QEgCUECRgRAIAAgAEGo0ABqNgIMCyAAIANqIgBBiOMBakIANwAAIABBgOMBakIANwAAIABB+OIBakIANwAAIABB8OIBakIANwAAIAoPCwJ/AkACQAJAIANBAnZBA3FBf2oiBEECSw0AIARBAWsOAgACAQtBASEEIANBA3YMAgtBAiEEIAEvAABBBHYMAQtBAyEEIAEQIUEEdgsiAyAEaiIFQSBqIAJLBEAgBSACSw0CIABB8OIBaiABIARqIAMQCyEBIAAgAzYCgOIBIAAgATYC8OEBIAEgA2oiAEIANwAYIABCADcAECAAQgA3AAggAEIANwAAIAUPCyAAIAM2AoDiASAAIAEgBGo2AvDhASAFDwsCfwJAAkACQCADQQJ2QQNxQX9qIgRBAksNACAEQQFrDgIAAgELQQEhByADQQN2DAILQQIhByABLwAAQQR2DAELIAJBBEkgARAhIgJBj4CAAUtyDQFBAyEHIAJBBHYLIQIgAEHw4gFqIAEgB2otAAAgAkEgahAQIQEgACACNgKA4gEgACABNgLw4QEgB0EBaiEHCyAHC0sAIABC+erQ0OfJoeThADcDICAAQgA3AxggAELP1tO+0ser2UI3AxAgAELW64Lu6v2J9eAANwMIIABCADcDACAAQShqQQBBKBAQGgviAgICfwV+IABBKGoiASAAKAJIaiECAn4gACkDACIDQiBaBEAgACkDECIEQgeJIAApAwgiBUIBiXwgACkDGCIGQgyJfCAAKQMgIgdCEol8IAUQGSAEEBkgBhAZIAcQGQwBCyAAKQMYQsXP2bLx5brqJ3wLIAN8IQMDQCABQQhqIgAgAk0EQEIAIAEpAAAQCSADhUIbiUKHla+vmLbem55/fkLj3MqV/M7y9YV/fCEDIAAhAQwBCwsCQCABQQRqIgAgAksEQCABIQAMAQsgASgAAK1Ch5Wvr5i23puef34gA4VCF4lCz9bTvtLHq9lCfkL5893xmfaZqxZ8IQMLA0AgACACSQRAIAAxAABCxc/ZsvHluuonfiADhUILiUKHla+vmLbem55/fiEDIABBAWohAAwBCwsgA0IhiCADhULP1tO+0ser2UJ+IgNCHYggA4VC+fPd8Zn2masWfiIDQiCIIAOFC+8CAgJ/BH4gACAAKQMAIAKtfDcDAAJAAkAgACgCSCIDIAJqIgRBH00EQCABRQ0BIAAgA2pBKGogASACECAgACgCSCACaiEEDAELIAEgAmohAgJ/IAMEQCAAQShqIgQgA2ogAUEgIANrECAgACAAKQMIIAQpAAAQCTcDCCAAIAApAxAgACkAMBAJNwMQIAAgACkDGCAAKQA4EAk3AxggACAAKQMgIABBQGspAAAQCTcDICAAKAJIIQMgAEEANgJIIAEgA2tBIGohAQsgAUEgaiACTQsEQCACQWBqIQMgACkDICEFIAApAxghBiAAKQMQIQcgACkDCCEIA0AgCCABKQAAEAkhCCAHIAEpAAgQCSEHIAYgASkAEBAJIQYgBSABKQAYEAkhBSABQSBqIgEgA00NAAsgACAFNwMgIAAgBjcDGCAAIAc3AxAgACAINwMICyABIAJPDQEgAEEoaiABIAIgAWsiBBAgCyAAIAQ2AkgLCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQEBogAwVBun8LCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQCxogAwVBun8LC6gCAQZ/IwBBEGsiByQAIABB2OABaikDAEKAgIAQViEIQbh/IQUCQCAEQf//B0sNACAAIAMgBBBCIgUQAyIGDQAgACgCnOIBIQkgACAHQQxqIAMgAyAFaiAGGyIKIARBACAFIAYbayIGEEAiAxADBEAgAyEFDAELIAcoAgwhBCABRQRAQbp/IQUgBEEASg0BCyAGIANrIQUgAyAKaiEDAkAgCQRAIABBADYCnOIBDAELAkACQAJAIARBBUgNACAAQdjgAWopAwBCgICACFgNAAwBCyAAQQA2ApziAQwBCyAAKAIIED8hBiAAQQA2ApziASAGQRRPDQELIAAgASACIAMgBSAEIAgQOSEFDAELIAAgASACIAMgBSAEIAgQOiEFCyAHQRBqJAAgBQtnACAAQdDgAWogASACIAAoAuzhARAuIgEQAwRAIAEPC0G4fyECAkAgAQ0AIABB7OABaigCACIBBEBBYCECIAAoApjiASABRw0BC0EAIQIgAEHw4AFqKAIARQ0AIABBkOEBahBDCyACCycBAX8QVyIERQRAQUAPCyAEIAAgASACIAMgBBBLEE8hACAEEFYgAAs/AQF/AkACQAJAIAAoAqDiAUEBaiIBQQJLDQAgAUEBaw4CAAECCyAAEDBBAA8LIABBADYCoOIBCyAAKAKU4gELvAMCB38BfiMAQRBrIgkkAEG4fyEGAkAgBCgCACIIQQVBCSAAKALs4QEiBRtJDQAgAygCACIHQQFBBSAFGyAFEC8iBRADBEAgBSEGDAELIAggBUEDakkNACAAIAcgBRBJIgYQAw0AIAEgAmohCiAAQZDhAWohCyAIIAVrIQIgBSAHaiEHIAEhBQNAIAcgAiAJECwiBhADDQEgAkF9aiICIAZJBEBBuH8hBgwCCyAJKAIAIghBAksEQEFsIQYMAgsgB0EDaiEHAn8CQAJAAkAgCEEBaw4CAgABCyAAIAUgCiAFayAHIAYQSAwCCyAFIAogBWsgByAGEEcMAQsgBSAKIAVrIActAAAgCSgCCBBGCyIIEAMEQCAIIQYMAgsgACgC8OABBEAgCyAFIAgQRQsgAiAGayECIAYgB2ohByAFIAhqIQUgCSgCBEUNAAsgACkD0OABIgxCf1IEQEFsIQYgDCAFIAFrrFINAQsgACgC8OABBEBBaiEGIAJBBEkNASALEEQhDCAHKAAAIAynRw0BIAdBBGohByACQXxqIQILIAMgBzYCACAEIAI2AgAgBSABayEGCyAJQRBqJAAgBgsuACAAECsCf0EAQQAQAw0AGiABRSACRXJFBEBBYiAAIAEgAhA9EAMNARoLQQALCzcAIAEEQCAAIAAoAsTgASABKAIEIAEoAghqRzYCnOIBCyAAECtBABADIAFFckUEQCAAIAEQWwsL0QIBB38jAEEQayIGJAAgBiAENgIIIAYgAzYCDCAFBEAgBSgCBCEKIAUoAgghCQsgASEIAkACQANAIAAoAuzhARAWIQsCQANAIAQgC0kNASADKAAAQXBxQdDUtMIBRgRAIAMgBBAiIgcQAw0EIAQgB2shBCADIAdqIQMMAQsLIAYgAzYCDCAGIAQ2AggCQCAFBEAgACAFEE5BACEHQQAQA0UNAQwFCyAAIAogCRBNIgcQAw0ECyAAIAgQUCAMQQFHQQAgACAIIAIgBkEMaiAGQQhqEEwiByIDa0EAIAMQAxtBCkdyRQRAQbh/IQcMBAsgBxADDQMgAiAHayECIAcgCGohCEEBIQwgBigCDCEDIAYoAgghBAwBCwsgBiADNgIMIAYgBDYCCEG4fyEHIAQNASAIIAFrIQcMAQsgBiADNgIMIAYgBDYCCAsgBkEQaiQAIAcLRgECfyABIAAoArjgASICRwRAIAAgAjYCxOABIAAgATYCuOABIAAoArzgASEDIAAgATYCvOABIAAgASADIAJrajYCwOABCwutAgIEfwF+IwBBQGoiBCQAAkACQCACQQhJDQAgASgAAEFwcUHQ1LTCAUcNACABIAIQIiEBIABCADcDCCAAQQA2AgQgACABNgIADAELIARBGGogASACEC0iAxADBEAgACADEBoMAQsgAwRAIABBuH8QGgwBCyACIAQoAjAiA2shAiABIANqIQMDQAJAIAAgAyACIARBCGoQLCIFEAMEfyAFBSACIAVBA2oiBU8NAUG4fwsQGgwCCyAGQQFqIQYgAiAFayECIAMgBWohAyAEKAIMRQ0ACyAEKAI4BEAgAkEDTQRAIABBuH8QGgwCCyADQQRqIQMLIAQoAighAiAEKQMYIQcgAEEANgIEIAAgAyABazYCACAAIAIgBmytIAcgB0J/URs3AwgLIARBQGskAAslAQF/IwBBEGsiAiQAIAIgACABEFEgAigCACEAIAJBEGokACAAC30BBH8jAEGQBGsiBCQAIARB/wE2AggCQCAEQRBqIARBCGogBEEMaiABIAIQFSIGEAMEQCAGIQUMAQtBVCEFIAQoAgwiB0EGSw0AIAMgBEEQaiAEKAIIIAcQQSIFEAMNACAAIAEgBmogAiAGayADEDwhBQsgBEGQBGokACAFC4cBAgJ/An5BABAWIQMCQANAIAEgA08EQAJAIAAoAABBcHFB0NS0wgFGBEAgACABECIiAhADRQ0BQn4PCyAAIAEQVSIEQn1WDQMgBCAFfCIFIARUIQJCfiEEIAINAyAAIAEQUiICEAMNAwsgASACayEBIAAgAmohAAwBCwtCfiAFIAEbIQQLIAQLPwIBfwF+IwBBMGsiAiQAAn5CfiACQQhqIAAgARAtDQAaQgAgAigCHEEBRg0AGiACKQMICyEDIAJBMGokACADC40BAQJ/IwBBMGsiASQAAkAgAEUNACAAKAKI4gENACABIABB/OEBaigCADYCKCABIAApAvThATcDICAAEDAgACgCqOIBIQIgASABKAIoNgIYIAEgASkDIDcDECACIAFBEGoQGyAAQQA2AqjiASABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALKgECfyMAQRBrIgAkACAAQQA2AgggAEIANwMAIAAQWCEBIABBEGokACABC4cBAQN/IwBBEGsiAiQAAkAgACgCAEUgACgCBEVzDQAgAiAAKAIINgIIIAIgACkCADcDAAJ/IAIoAgAiAQRAIAIoAghBqOMJIAERBQAMAQtBqOMJECgLIgFFDQAgASAAKQIANwL04QEgAUH84QFqIAAoAgg2AgAgARBZIAEhAwsgAkEQaiQAIAMLywEBAn8jAEEgayIBJAAgAEGBgIDAADYCtOIBIABBADYCiOIBIABBADYC7OEBIABCADcDkOIBIABBADYCpOMJIABBADYC3OIBIABCADcCzOIBIABBADYCvOIBIABBADYCxOABIABCADcCnOIBIABBpOIBakIANwIAIABBrOIBakEANgIAIAFCADcCECABQgA3AhggASABKQMYNwMIIAEgASkDEDcDACABKAIIQQh2QQFxIQIgAEEANgLg4gEgACACNgKM4gEgAUEgaiQAC3YBA38jAEEwayIBJAAgAARAIAEgAEHE0AFqIgIoAgA2AiggASAAKQK80AE3AyAgACgCACEDIAEgAigCADYCGCABIAApArzQATcDECADIAFBEGoQGyABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALzAEBAX8gACABKAK00AE2ApjiASAAIAEoAgQiAjYCwOABIAAgAjYCvOABIAAgAiABKAIIaiICNgK44AEgACACNgLE4AEgASgCuNABBEAgAEKBgICAEDcDiOEBIAAgAUGk0ABqNgIMIAAgAUGUIGo2AgggACABQZwwajYCBCAAIAFBDGo2AgAgAEGs0AFqIAFBqNABaigCADYCACAAQbDQAWogAUGs0AFqKAIANgIAIABBtNABaiABQbDQAWooAgA2AgAPCyAAQgA3A4jhAQs7ACACRQRAQbp/DwsgBEUEQEFsDwsgAiAEEGAEQCAAIAEgAiADIAQgBRBhDwsgACABIAIgAyAEIAUQZQtGAQF/IwBBEGsiBSQAIAVBCGogBBAOAn8gBS0ACQRAIAAgASACIAMgBBAyDAELIAAgASACIAMgBBA0CyEAIAVBEGokACAACzQAIAAgAyAEIAUQNiIFEAMEQCAFDwsgBSAESQR/IAEgAiADIAVqIAQgBWsgABA1BUG4fwsLRgEBfyMAQRBrIgUkACAFQQhqIAQQDgJ/IAUtAAkEQCAAIAEgAiADIAQQYgwBCyAAIAEgAiADIAQQNQshACAFQRBqJAAgAAtZAQF/QQ8hAiABIABJBEAgAUEEdCAAbiECCyAAQQh2IgEgAkEYbCIAQYwIaigCAGwgAEGICGooAgBqIgJBA3YgAmogAEGACGooAgAgAEGECGooAgAgAWxqSQs3ACAAIAMgBCAFQYAQEDMiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQMgVBuH8LC78DAQN/IwBBIGsiBSQAIAVBCGogAiADEAYiAhADRQRAIAAgAWoiB0F9aiEGIAUgBBAOIARBBGohAiAFLQACIQMDQEEAIAAgBkkgBUEIahAEGwRAIAAgAiAFQQhqIAMQAkECdGoiBC8BADsAACAFQQhqIAQtAAIQASAAIAQtAANqIgQgAiAFQQhqIAMQAkECdGoiAC8BADsAACAFQQhqIAAtAAIQASAEIAAtAANqIQAMAQUgB0F+aiEEA0AgBUEIahAEIAAgBEtyRQRAIAAgAiAFQQhqIAMQAkECdGoiBi8BADsAACAFQQhqIAYtAAIQASAAIAYtAANqIQAMAQsLA0AgACAES0UEQCAAIAIgBUEIaiADEAJBAnRqIgYvAQA7AAAgBUEIaiAGLQACEAEgACAGLQADaiEADAELCwJAIAAgB08NACAAIAIgBUEIaiADEAIiA0ECdGoiAC0AADoAACAALQADQQFGBEAgBUEIaiAALQACEAEMAQsgBSgCDEEfSw0AIAVBCGogAiADQQJ0ai0AAhABIAUoAgxBIUkNACAFQSA2AgwLIAFBbCAFQQhqEAobIQILCwsgBUEgaiQAIAILkgIBBH8jAEFAaiIJJAAgCSADQTQQCyEDAkAgBEECSA0AIAMgBEECdGooAgAhCSADQTxqIAgQIyADQQE6AD8gAyACOgA+QQAhBCADKAI8IQoDQCAEIAlGDQEgACAEQQJ0aiAKNgEAIARBAWohBAwAAAsAC0EAIQkDQCAGIAlGRQRAIAMgBSAJQQF0aiIKLQABIgtBAnRqIgwoAgAhBCADQTxqIAotAABBCHQgCGpB//8DcRAjIANBAjoAPyADIAcgC2siCiACajoAPiAEQQEgASAKa3RqIQogAygCPCELA0AgACAEQQJ0aiALNgEAIARBAWoiBCAKSQ0ACyAMIAo2AgAgCUEBaiEJDAELCyADQUBrJAALowIBCX8jAEHQAGsiCSQAIAlBEGogBUE0EAsaIAcgBmshDyAHIAFrIRADQAJAIAMgCkcEQEEBIAEgByACIApBAXRqIgYtAAEiDGsiCGsiC3QhDSAGLQAAIQ4gCUEQaiAMQQJ0aiIMKAIAIQYgCyAPTwRAIAAgBkECdGogCyAIIAUgCEE0bGogCCAQaiIIQQEgCEEBShsiCCACIAQgCEECdGooAgAiCEEBdGogAyAIayAHIA4QYyAGIA1qIQgMAgsgCUEMaiAOECMgCUEBOgAPIAkgCDoADiAGIA1qIQggCSgCDCELA0AgBiAITw0CIAAgBkECdGogCzYBACAGQQFqIQYMAAALAAsgCUHQAGokAA8LIAwgCDYCACAKQQFqIQoMAAALAAs0ACAAIAMgBCAFEDYiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQNAVBuH8LCyMAIAA/AEEQdGtB//8DakEQdkAAQX9GBEBBAA8LQQAQAEEBCzsBAX8gAgRAA0AgACABIAJBgCAgAkGAIEkbIgMQCyEAIAFBgCBqIQEgAEGAIGohACACIANrIgINAAsLCwYAIAAQAwsLqBUJAEGICAsNAQAAAAEAAAACAAAAAgBBoAgLswYBAAAAAQAAAAIAAAACAAAAJgAAAIIAAAAhBQAASgAAAGcIAAAmAAAAwAEAAIAAAABJBQAASgAAAL4IAAApAAAALAIAAIAAAABJBQAASgAAAL4IAAAvAAAAygIAAIAAAACKBQAASgAAAIQJAAA1AAAAcwMAAIAAAACdBQAASgAAAKAJAAA9AAAAgQMAAIAAAADrBQAASwAAAD4KAABEAAAAngMAAIAAAABNBgAASwAAAKoKAABLAAAAswMAAIAAAADBBgAATQAAAB8NAABNAAAAUwQAAIAAAAAjCAAAUQAAAKYPAABUAAAAmQQAAIAAAABLCQAAVwAAALESAABYAAAA2gQAAIAAAABvCQAAXQAAACMUAABUAAAARQUAAIAAAABUCgAAagAAAIwUAABqAAAArwUAAIAAAAB2CQAAfAAAAE4QAAB8AAAA0gIAAIAAAABjBwAAkQAAAJAHAACSAAAAAAAAAAEAAAABAAAABQAAAA0AAAAdAAAAPQAAAH0AAAD9AAAA/QEAAP0DAAD9BwAA/Q8AAP0fAAD9PwAA/X8AAP3/AAD9/wEA/f8DAP3/BwD9/w8A/f8fAP3/PwD9/38A/f//AP3//wH9//8D/f//B/3//w/9//8f/f//P/3//38AAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACUAAAAnAAAAKQAAACsAAAAvAAAAMwAAADsAAABDAAAAUwAAAGMAAACDAAAAAwEAAAMCAAADBAAAAwgAAAMQAAADIAAAA0AAAAOAAAADAAEAQeAPC1EBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAQcQQC4sBAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABIAAAAUAAAAFgAAABgAAAAcAAAAIAAAACgAAAAwAAAAQAAAAIAAAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAQAAAAIAAAAAAAQBBkBIL5gQBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAAAEAAAAEAAAACAAAAAAAAAABAAEBBgAAAAAAAAQAAAAAEAAABAAAAAAgAAAFAQAAAAAAAAUDAAAAAAAABQQAAAAAAAAFBgAAAAAAAAUHAAAAAAAABQkAAAAAAAAFCgAAAAAAAAUMAAAAAAAABg4AAAAAAAEFEAAAAAAAAQUUAAAAAAABBRYAAAAAAAIFHAAAAAAAAwUgAAAAAAAEBTAAAAAgAAYFQAAAAAAABwWAAAAAAAAIBgABAAAAAAoGAAQAAAAADAYAEAAAIAAABAAAAAAAAAAEAQAAAAAAAAUCAAAAIAAABQQAAAAAAAAFBQAAACAAAAUHAAAAAAAABQgAAAAgAAAFCgAAAAAAAAULAAAAAAAABg0AAAAgAAEFEAAAAAAAAQUSAAAAIAABBRYAAAAAAAIFGAAAACAAAwUgAAAAAAADBSgAAAAAAAYEQAAAABAABgRAAAAAIAAHBYAAAAAAAAkGAAIAAAAACwYACAAAMAAABAAAAAAQAAAEAQAAACAAAAUCAAAAIAAABQMAAAAgAAAFBQAAACAAAAUGAAAAIAAABQgAAAAgAAAFCQAAACAAAAULAAAAIAAABQwAAAAAAAAGDwAAACAAAQUSAAAAIAABBRQAAAAgAAIFGAAAACAAAgUcAAAAIAADBSgAAAAgAAQFMAAAAAAAEAYAAAEAAAAPBgCAAAAAAA4GAEAAAAAADQYAIABBgBcLhwIBAAEBBQAAAAAAAAUAAAAAAAAGBD0AAAAAAAkF/QEAAAAADwX9fwAAAAAVBf3/HwAAAAMFBQAAAAAABwR9AAAAAAAMBf0PAAAAABIF/f8DAAAAFwX9/38AAAAFBR0AAAAAAAgE/QAAAAAADgX9PwAAAAAUBf3/DwAAAAIFAQAAABAABwR9AAAAAAALBf0HAAAAABEF/f8BAAAAFgX9/z8AAAAEBQ0AAAAQAAgE/QAAAAAADQX9HwAAAAATBf3/BwAAAAEFAQAAABAABgQ9AAAAAAAKBf0DAAAAABAF/f8AAAAAHAX9//8PAAAbBf3//wcAABoF/f//AwAAGQX9//8BAAAYBf3//wBBkBkLhgQBAAEBBgAAAAAAAAYDAAAAAAAABAQAAAAgAAAFBQAAAAAAAAUGAAAAAAAABQgAAAAAAAAFCQAAAAAAAAULAAAAAAAABg0AAAAAAAAGEAAAAAAAAAYTAAAAAAAABhYAAAAAAAAGGQAAAAAAAAYcAAAAAAAABh8AAAAAAAAGIgAAAAAAAQYlAAAAAAABBikAAAAAAAIGLwAAAAAAAwY7AAAAAAAEBlMAAAAAAAcGgwAAAAAACQYDAgAAEAAABAQAAAAAAAAEBQAAACAAAAUGAAAAAAAABQcAAAAgAAAFCQAAAAAAAAUKAAAAAAAABgwAAAAAAAAGDwAAAAAAAAYSAAAAAAAABhUAAAAAAAAGGAAAAAAAAAYbAAAAAAAABh4AAAAAAAAGIQAAAAAAAQYjAAAAAAABBicAAAAAAAIGKwAAAAAAAwYzAAAAAAAEBkMAAAAAAAUGYwAAAAAACAYDAQAAIAAABAQAAAAwAAAEBAAAABAAAAQFAAAAIAAABQcAAAAgAAAFCAAAACAAAAUKAAAAIAAABQsAAAAAAAAGDgAAAAAAAAYRAAAAAAAABhQAAAAAAAAGFwAAAAAAAAYaAAAAAAAABh0AAAAAAAAGIAAAAAAAEAYDAAEAAAAPBgOAAAAAAA4GA0AAAAAADQYDIAAAAAAMBgMQAAAAAAsGAwgAAAAACgYDBABBpB0L2QEBAAAAAwAAAAcAAAAPAAAAHwAAAD8AAAB/AAAA/wAAAP8BAAD/AwAA/wcAAP8PAAD/HwAA/z8AAP9/AAD//wAA//8BAP//AwD//wcA//8PAP//HwD//z8A//9/AP///wD///8B////A////wf///8P////H////z////9/AAAAAAEAAAACAAAABAAAAAAAAAACAAAABAAAAAgAAAAAAAAAAQAAAAIAAAABAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAACAAAAAcAAAAIAAAACQAAAAoAAAALAEGgIAsDwBBQ";var o=g(708),t=g(4946);const s=new class{init(){return C||(C="undefined"!=typeof fetch?fetch("data:application/wasm;base64,"+a).then((A=>A.arrayBuffer())).then((A=>WebAssembly.instantiate(A,e))).then(this._init):WebAssembly.instantiate(Buffer.from(a,"base64"),e).then(this._init),C)}_init(A){E=A.instance,e.env.emscripten_notify_memory_growth(0)}decode(A,I=0){if(!E)throw new Error("ZSTDDecoder: Await .init() before decoding.");const g=A.byteLength,B=E.exports.malloc(g);i.set(A,B),I=I||Number(E.exports.ZSTD_findDecompressedSize(B,g));const Q=E.exports.malloc(I),C=E.exports.ZSTD_decompress(Q,I,B,g),e=i.slice(Q,Q+C);return E.exports.free(B),E.exports.free(Q),e}};class r extends o.A{constructor(A){super(),this.planarConfiguration=void 0!==A.PlanarConfiguration?A.PlanarConfiguration:1,this.samplesPerPixel=void 0!==A.SamplesPerPixel?A.SamplesPerPixel:1,this.addCompression=A.LercParameters[t.TZ.AddCompression]}decodeBlock(A){switch(this.addCompression){case t.S3.None:break;case t.S3.Deflate:A=(0,B.UD)(new Uint8Array(A)).buffer;break;case t.S3.Zstandard:A=s.decode(new Uint8Array(A)).buffer;break;default:throw new Error(`Unsupported LERC additional compression method identifier: ${this.addCompression}`)}return Q.decode(A,{returnPixelInterleavedDims:1===this.planarConfiguration}).pixels[0].buffer}}}}]); +//# sourceMappingURL=597.embed-bundle.js.map \ No newline at end of file diff --git a/docs/source/_static/597.embed-bundle.js.LICENSE.txt b/docs/source/_static/597.embed-bundle.js.LICENSE.txt new file mode 100644 index 0000000..d0f3b73 --- /dev/null +++ b/docs/source/_static/597.embed-bundle.js.LICENSE.txt @@ -0,0 +1 @@ +/* Copyright 2015-2021 Esri. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @preserve */ diff --git a/docs/source/_static/597.embed-bundle.js.map b/docs/source/_static/597.embed-bundle.js.map new file mode 100644 index 0000000..f2c4bbe --- /dev/null +++ b/docs/source/_static/597.embed-bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"597.embed-bundle.js","mappings":";8FAAA,MA0CQA,EAyEAC,EA+HAC,EAyBAC,EAiBAC,EA0JAC,EAstDAC,EACAC,EAxmEFC,EAobAC,EAkrDAC,EAQAC,EAzmEEX,EAAY,CAEhBA,oBAAgC,qBAiChCA,OAAmB,SAASY,EAAOC,GAGjC,IAAIC,GAFJD,EAAUA,GAAW,CAAC,GAECE,iBAAgD,OAA5BF,EAAQE,gBAC/CC,EAAaZ,EAAMQ,EAAOC,EAAQI,aAAe,EAAGH,GAEpDI,EAAuC,OAAxBL,EAAQK,YAAwBL,EAAQK,YAAclB,EAAUmB,mBAE/EC,EAAmBnB,EAAsBe,EAAYH,EAAQQ,WAAaC,aAC5ET,EAAQE,gBAAiBG,EAAaL,EAAQU,YAE5CC,EAAS,CACXC,MAAOT,EAAWS,MAClBC,OAAQV,EAAWU,OACnBC,UAAWP,EAAiBQ,aAC5BC,SAAUT,EAAiBS,SAC3BC,SAAUd,EAAWe,OAAOD,SAC5BZ,YAAaA,GAkBf,OAfIE,EAAiBY,aACnBR,EAAOS,SAAWb,EAAiBY,YAGjCnB,EAAQqB,mBAAqBlB,EAAWmB,OAC1CX,EAAOT,gBAAkBC,EAAWmB,KAAKC,OAASpB,EAAWmB,KAAKC,OAAS,MAGzEvB,EAAQwB,iBACVb,EAAOc,SAAWpC,EAAec,GAC7BH,EAAQV,uBACVqB,EAAOc,SAASC,UAAYpC,EAAqBa,KAI9CQ,CACT,GAEIvB,EAAwB,SAASuC,EAAMC,EAAiBC,EAAYxB,EAAayB,GACnF,IAMiCC,EAG7BhB,EAAcI,EATda,EAAW,EACXC,EAAON,EAAKT,OAAOgB,WACnBC,EAAOR,EAAKT,OAAOkB,WACnBC,EAAaC,KAAKC,MAAMZ,EAAKf,MAAQqB,GACrCO,EAAcF,KAAKC,MAAMZ,EAAKd,OAASsB,GACvCM,EAAQ,EAAId,EAAKe,UACjB1B,EAAW2B,OAAOC,UACtBf,EAAaA,IAAgBF,EAAS,KAAIA,EAAKL,KAAKC,OAAS,MAG7DR,EAAe,IAAIa,EAAgBD,EAAKf,MAAQe,EAAKd,QACjDiB,GAAoBD,IACtBV,EAAa,IAAI0B,WAAWlB,EAAKf,MAAQe,EAAKd,SAKhD,IAHA,IAEIiC,EAAIC,EAFJC,EAAkB,IAAIvC,aAAa4B,EAAaG,GAG3CS,EAAI,EAAGA,GAAKd,EAAMc,IAAK,CAC9B,IAAIC,EAAmBD,IAAMd,EAAQK,EAAeb,EAAKd,OAASsB,EAClE,GAAwB,IAApBe,EAGJ,IAAK,IAAIC,EAAI,EAAGA,GAAKlB,EAAMkB,IAAK,CAC9B,IAAIC,EAAkBD,IAAMlB,EAAQI,EAAcV,EAAKf,MAAQqB,EAC/D,GAAuB,IAAnBmB,EAAJ,CAIA,IAKIC,EAAWC,EAAUC,EAsBrBC,EA3BAC,EAASR,EAAItB,EAAKf,MAAQ4B,EAAcW,EAAId,EAC5CqB,EAAY/B,EAAKf,MAAQwC,EAEzBO,EAAQhC,EAAKT,OAAO0C,OAAO5B,GAyB/B,GAtBI2B,EAAME,SAAW,GAEI,IAAnBF,EAAME,SAERR,EAAYM,EAAMG,SAGlBtE,EAAQmE,EAAMI,YAAaJ,EAAMK,aAAcL,EAAMM,eAAgBN,EAAMO,OAAQzB,EAAOO,EAAiBrB,EAAKT,OAAOD,UACvHoC,EAAYL,GAEdM,EAAW,GAIXC,EAF0B,IAAnBI,EAAME,SAEA,EAIAF,EAAMO,OAIjBrC,EACF,IAAKkB,EAAK,EAAGA,EAAKG,EAAiBH,IAAM,CAMvC,IALa,EAATU,IAEFD,EAAW3B,EAAW4B,GAAU,GAChCD,IAAsB,EAATC,GAEVX,EAAK,EAAGA,EAAKM,EAAgBN,IACjB,EAATW,IAEJD,EAAW3B,EAAW4B,GAAU,IAEnB,IAAXD,GAEErC,IACFA,EAAWsC,GAAU,GAGvBzC,EAAWA,GADXe,EAAgB4B,EAAME,SAAW,EAAKR,EAAUC,KAAcC,GACzBxB,EAAef,EACpDD,EAAa0C,KAAY1B,IAGrBZ,IACFA,EAAWsC,GAAU,GAEvB1C,EAAa0C,KAAYpD,GAE3BmD,IAAa,EAEfC,GAAUC,CACZ,MAGA,GAAIC,EAAME,SAAW,EAGnB,IAAKd,EAAK,EAAGA,EAAKG,EAAiBH,IAAM,CACvC,IAAKD,EAAK,EAAGA,EAAKM,EAAgBN,IAEhC9B,EAAWA,GADXe,EAAesB,EAAUC,MACYvB,EAAef,EACpDD,EAAa0C,KAAY1B,EAE3B0B,GAAUC,CACZ,MAKA,IADA1C,EAAWA,EAAWuC,EAAaA,EAAavC,EAC3C+B,EAAK,EAAGA,EAAKG,EAAiBH,IAAM,CACvC,IAAKD,EAAK,EAAGA,EAAKM,EAAgBN,IAChC/B,EAAa0C,KAAYF,EAE3BE,GAAUC,CACZ,CAGJ,GAAwB,IAAnBC,EAAME,UAAoBP,IAAaK,EAAMM,eAChD,KAAM,8BAERjC,GAzFA,CA0FF,CACF,CAEA,MAAO,CACLjB,aAAcA,EACdI,WAAYA,EACZH,SAAUA,EAEd,EAEI3B,EAAiB,SAASsC,GAC5B,MAAO,CACL,qBAAwBA,EAAKwC,qBAC7B,YAAexC,EAAKyC,YACpB,UAAazC,EAAK0C,UAClB,OAAU1C,EAAKd,OACf,MAASc,EAAKf,MACd,UAAae,EAAKe,UAClB,UAAaf,EAAK2C,UAClB,KAAQ3C,EAAKL,KAAO,CAClB,WAAcK,EAAKL,KAAKY,WACxB,WAAcP,EAAKL,KAAKc,WACxB,SAAYT,EAAKL,KAAKiD,SACtB,SAAY5C,EAAKL,KAAKL,UACpB,KACJ,OAAU,CACR,WAAcU,EAAKT,OAAOgB,WAC1B,WAAcP,EAAKT,OAAOkB,WAC1B,SAAYT,EAAKT,OAAOqD,SACxB,SAAY5C,EAAKT,OAAOD,SACxB,YAAeU,EAAKtB,aAG1B,EAEIf,EAAuB,SAASqC,GAGlC,IAFA,IAAI6C,EAAY7C,EAAKT,OAAOgB,WAAaP,EAAKT,OAAOkB,WACjDV,EAAY,CAAC,EACR+C,EAAI,EAAGA,EAAID,EAAWC,IAAK,CAClC,IAAId,EAAQhC,EAAKT,OAAO0C,OAAOa,GACR,IAAnBd,EAAME,SACRnC,EAAUgD,SAAU,EACQ,IAAnBf,EAAME,SACfnC,EAAUiC,EAAMK,eAAgB,EAEhCtC,EAAU,IAAK,CAEnB,CAEA,OAAOiD,OAAOC,KAAKlD,EACrB,EAEInC,EAAQ,SAASQ,EAAO8E,EAAI5E,GAC9B,IAAI0B,EAAO,CAAC,EAGRmD,EAAa,IAAIjC,WAAW9C,EAAO8E,EAAI,IAE3C,GADAlD,EAAKwC,qBAAuBY,OAAOC,aAAaC,MAAM,KAAMH,GACnB,cAArCnD,EAAKwC,qBAAqBe,OAC5B,KAAM,sCAAwCvD,EAAKwC,qBAErDU,GAAM,GACN,IAAIM,EAAO,IAAIC,SAASrF,EAAO8E,EAAI,IASnC,GARAlD,EAAKyC,YAAce,EAAKE,SAAS,GAAG,GACpC1D,EAAK0C,UAAYc,EAAKE,SAAS,GAAG,GAClC1D,EAAKd,OAASsE,EAAKG,UAAU,GAAG,GAChC3D,EAAKf,MAAQuE,EAAKG,UAAU,IAAI,GAChC3D,EAAKe,UAAYyC,EAAKI,WAAW,IAAI,GACrCV,GAAM,IAGD5E,EAUH,GATAkF,EAAO,IAAIC,SAASrF,EAAO8E,EAAI,IAC/BlD,EAAKL,KAAO,CAAC,EACbK,EAAKL,KAAKc,WAAa+C,EAAKG,UAAU,GAAG,GACzC3D,EAAKL,KAAKY,WAAaiD,EAAKG,UAAU,GAAG,GACzC3D,EAAKL,KAAKiD,SAAWY,EAAKG,UAAU,GAAG,GACvC3D,EAAKL,KAAKL,SAAWkE,EAAKK,WAAW,IAAI,GACzCX,GAAM,GAGFlD,EAAKL,KAAKiD,SAAW,EAAG,CAC1B,IAAIhD,EAAS,IAAIsB,WAAWP,KAAKmD,KAAK9D,EAAKf,MAAQe,EAAKd,OAAS,IAE7D6E,GADJP,EAAO,IAAIC,SAASrF,EAAO8E,EAAIlD,EAAKL,KAAKiD,WAC1BoB,SAAS,GAAG,GACvBC,EAAK,EAAGC,EAAK,EACjB,EAAG,CACD,GAAIH,EAAM,EACR,KAAOA,KAASnE,EAAOsE,KAAQV,EAAKW,SAASF,SACxC,CACL,IAAIG,EAAMZ,EAAKW,SAASF,KAExB,IADAF,GAAOA,EACAA,KAASnE,EAAOsE,KAAQE,CACjC,CACAL,EAAMP,EAAKQ,SAASC,GAAI,GACxBA,GAAM,CACR,OAASA,EAAKjE,EAAKL,KAAKiD,UACxB,IAAc,QAATmB,GAAoBG,EAAKtE,EAAOyE,OACnC,KAAM,sCAERrE,EAAKL,KAAKC,OAASA,EACnBsD,GAAMlD,EAAKL,KAAKiD,QAClB,MACU5C,EAAKL,KAAKiD,SAAW5C,EAAKL,KAAKc,WAAaT,EAAKL,KAAKL,WAC9DU,EAAKL,KAAKC,OAAS,IAAIsB,WAAWP,KAAKmD,KAAK9D,EAAKf,MAAQe,EAAKd,OAAS,KAK3EsE,EAAO,IAAIC,SAASrF,EAAO8E,EAAI,IAC/BlD,EAAKT,OAAS,CAAC,EACfS,EAAKT,OAAOkB,WAAa+C,EAAKG,UAAU,GAAG,GAC3C3D,EAAKT,OAAOgB,WAAaiD,EAAKG,UAAU,GAAG,GAC3C3D,EAAKT,OAAOqD,SAAWY,EAAKG,UAAU,GAAG,GACzC3D,EAAKT,OAAOD,SAAWkE,EAAKK,WAAW,IAAI,GAC3CX,GAAM,GAEN,IAAI3C,EAAaP,EAAKT,OAAOgB,WACzBE,EAAaT,EAAKT,OAAOkB,WAIzB6D,EAAmB/D,GAAeP,EAAKf,MAAQsB,EAAc,EAAI,EAAI,GACrEgE,EAAmB9D,GAAeT,EAAKd,OAASuB,EAAc,EAAI,EAAI,GAC1ET,EAAKT,OAAO0C,OAAS,IAAIuC,MAAMF,EAAmBC,GAElD,IADA,IAAIE,EAAS,EACJC,EAAS,EAAGA,EAASH,EAAkBG,IAC9C,IAAK,IAAIC,EAAS,EAAGA,EAASL,EAAkBK,IAAU,CAGxD,IAAIC,EAAO,EACPC,EAAYzG,EAAM0G,WAAa5B,EACnCM,EAAO,IAAIC,SAASrF,EAAO8E,EAAIvC,KAAKoE,IAAI,GAAIF,IAC5C,IAAI7C,EAAQ,CAAC,EACbhC,EAAKT,OAAO0C,OAAOwC,KAAYzC,EAC/B,IAAIgD,EAAaxB,EAAKW,SAAS,GAE/B,GAFmCS,IACnC5C,EAAME,SAAwB,GAAb8C,EACbhD,EAAME,SAAW,EACnB,KAAM,2BAA6BF,EAAME,SAAW,IAEtD,GAAuB,IAAnBF,EAAME,SAAV,CAIA,GAAoB,IAAf8C,GAAqC,IAAfA,EAAmB,CAG5C,GAFAA,IAAe,EACfhD,EAAMiD,WAAaD,EACA,IAAfA,EACFhD,EAAMO,OAASiB,EAAK0B,QAAQ,GAAIN,SAC3B,GAAmB,IAAfI,EACThD,EAAMO,OAASiB,EAAKQ,SAAS,GAAG,GAAOY,GAAQ,MAC1C,IAAmB,IAAfI,EAGT,KAAM,4BAFNhD,EAAMO,OAASiB,EAAKK,WAAW,GAAG,GAAOe,GAAQ,CAGnD,CAEA,GAAuB,IAAnB5C,EAAME,SAKR,GAJA8C,EAAaxB,EAAKW,SAASS,GAAOA,IAClC5C,EAAMK,aAA4B,GAAb2C,EACrBA,IAAe,EACfhD,EAAMmD,mBAAqBH,EACR,IAAfA,EACFhD,EAAMM,eAAiBkB,EAAKW,SAASS,GAAOA,SACvC,GAAmB,IAAfI,EACThD,EAAMM,eAAiBkB,EAAK4B,UAAUR,GAAM,GAAOA,GAAQ,MACtD,IAAmB,IAAfI,EAGT,KAAM,iCAFNhD,EAAMM,eAAiBkB,EAAKG,UAAUiB,GAAM,GAAOA,GAAQ,CAG7D,CAEJ,CAOA,IAAIS,EAJJ,GAFAnC,GAAM0B,EAEiB,IAAnB5C,EAAME,SAKV,GAAuB,IAAnBF,EAAME,SAAgB,CACxB,IAAIoD,GAAatF,EAAKT,OAAOqD,SAAW,GAAK,EAC7C,GAAI0C,IAAc3E,KAAKC,MAAM0E,GAC3B,KAAM,wCAERD,EAAW,IAAIE,YAAwB,EAAZD,GAClB,IAAIpE,WAAWmE,GACjBG,IAAI,IAAItE,WAAW9C,EAAO8E,EAAgB,EAAZoC,IACrC,IAAInD,EAAU,IAAIrD,aAAauG,GAC/BrD,EAAMG,QAAUA,EAChBe,GAAkB,EAAZoC,CACR,MAAO,GAAuB,IAAnBtD,EAAME,SAAgB,CAC/B,IAAIuD,EAAY9E,KAAKmD,KAAK9B,EAAMM,eAAiBN,EAAMK,aAAe,GAClEqD,EAAY/E,KAAKmD,KAAK2B,EAAY,GACtCJ,EAAW,IAAIE,YAAwB,EAAZG,GAClB,IAAIxE,WAAWmE,GACjBG,IAAI,IAAItE,WAAW9C,EAAO8E,EAAIuC,IACrCzD,EAAMI,YAAc,IAAIuD,YAAYN,GACpCnC,GAAMuC,CACR,CAxDA,MAFEvC,GA2DJ,CAGF,OADAlD,EAAK2C,UAAYO,EACVlD,CACT,EAEInC,EAAU,SAAS+H,EAAKvD,EAAciD,EAAW/C,EAAQzB,EAAO+E,EAAMvG,GACxE,IACWwG,EAEPC,EAAGC,EAHHC,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAEXC,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAEvCsF,EAAmC,EAAbR,EAAIvB,OAAa1D,KAAKmD,KAAKzB,EAAeiD,EAAY,GAGhF,IAFAM,EAAIA,EAAIvB,OAAS,KAAO,EAAI+B,EAEvBN,EAAI,EAAGA,EAAIR,EAAWQ,IAAK,CAK9B,GAJiB,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,EACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,MACP,CACL,IAAIgE,EAAehE,EAAe6D,EAClCH,GAAMC,EAASC,IAAYI,EAAeJ,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,EAElB,CAEAR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,CAC5C,CACA,OAAOuG,CACT,EA9aE7H,EAgbKR,EAILS,EAAc,WAChB,aAOA,IAAIqI,EAGO,SAASV,EAAKC,EAAMxD,EAAciD,EAAWiB,EAAQhE,EAAQzB,EAAOxB,GAC3E,IACWwG,EAEPC,EAAGC,EAAQK,EAAaF,EAHxBF,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAIXE,EAAmC,EAAbR,EAAIvB,OAAa1D,KAAKmD,KAAKzB,EAAeiD,EAAY,GAEhF,GADAM,EAAIA,EAAIvB,OAAS,KAAO,EAAI+B,EACxBG,EACF,IAAKT,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,GACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,IAIZ0D,GAAMC,EAASC,KADfI,EAAehE,EAAe6D,GACYD,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,IAGlBR,EAAKC,GAAKS,EAAOR,QAKnB,IADAI,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAClCgF,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,GACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,IAIZ0D,GAAMC,EAASC,KADfI,EAAehE,EAAe6D,GACYD,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,IAIlBR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,CAGhD,EAtDEgH,EAyFQ,SAASV,EAAKC,EAAMxD,EAAciD,EAAWiB,EAAQhE,EAAQzB,EAAOxB,GAC5E,IACWwG,EAEPC,EAAGC,EAAQK,EAHXJ,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAAGM,EAAS,EAE3B,GAAID,EACF,IAAKT,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,GACXM,EAAS,GAEPN,GAAY7D,GACd0D,EAAMC,IAAWQ,EAAUP,EAC3BC,GAAY7D,EACZmE,GAAUnE,IAGV0D,EAAKC,IAAWQ,EAAUP,EAE1BC,EAAW,IAHXG,EAAehE,EAAe6D,GAI9BH,KAFAC,EAASJ,EAAI9C,OAEI,GAAKuD,GAAe,IAAQhE,EAAegE,EAC5DG,EAASH,GAEXR,EAAKC,GAAKS,EAAOR,OAGhB,CACH,IAAII,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAC3C,IAAKgF,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,GACXM,EAAS,GAEPN,GAAY7D,GAEd0D,EAAMC,IAAWQ,EAAUP,EAC3BC,GAAY7D,EACZmE,GAAUnE,IAGV0D,EAAKC,IAAWQ,EAAUP,EAE1BC,EAAW,IAHXG,EAAehE,EAAe6D,GAI9BH,KAFAC,EAASJ,EAAI9C,OAEI,GAAKuD,GAAe,IAAQhE,EAAegE,EAC5DG,EAASH,GAGXR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,CAE9C,CACA,OAAOuG,CACT,EAmGEY,EAAe,CACjBC,qBAAsB,GACtBC,0BAA2B,SAASvI,GAMlC,IAJA,IAAIwI,EAAO,MAAQC,EAAO,MACtBC,EAAM1I,EAAMiG,OACZ0C,EAAQpG,KAAKC,MAAMkG,EAAM,GACzBhE,EAAI,EACDiE,GAAO,CACZ,IAAIC,EAAQD,GAAS,IAAO,IAAMA,EAClCA,GAASC,EACT,GACEJ,GAASxI,EAAM0E,MAAQ,EACvB+D,GAAQD,GAAQxI,EAAM0E,aACbkE,GAEXJ,GAAe,MAAPA,IAAkBA,IAAS,IACnCC,GAAe,MAAPA,IAAkBA,IAAS,GACrC,CAUA,OAPU,EAANC,IACFD,GAAQD,GAASxI,EAAM0E,IAAM,KAI/B+D,GAAe,MAAPA,IAAkBA,IAAS,MAEnB,IAHhBD,GAAe,MAAPA,IAAkBA,IAAS,QAGJ,CACjC,EAEAK,eAAgB,SAAS7I,EAAO4B,GAC9B,IAAIkH,EAAMlH,EAAKkH,IACX/D,EAAa,IAAIjC,WAAW9C,EAAO8I,EAAK,GACxCC,EAAa,CAAC,EAElB,GADAA,EAAW3E,qBAAuBY,OAAOC,aAAaC,MAAM,KAAMH,GACF,IAA5DgE,EAAW3E,qBAAqB4E,YAAY,QAAS,GACvD,KAAM,sDAAwDD,EAAW3E,qBAE3E0E,GAAO,EACP,IAmCcG,EAnCV7D,EAAO,IAAIC,SAASrF,EAAO8I,EAAK,GAChCzE,EAAce,EAAKE,SAAS,GAAG,GAmCnC,GAlCAyD,EAAW1E,YAAcA,EACzByE,GAAO,EACHzE,GAAe,IACjB0E,EAAWG,SAAW9D,EAAKG,UAAU,GAAG,GACxCuD,GAAO,GAIT1D,EAAO,IAAIC,SAASrF,EAAO8I,EAAK,IAChCC,EAAWjI,OAASsE,EAAKG,UAAU,GAAG,GACtCwD,EAAWlI,MAAQuE,EAAKG,UAAU,GAAG,GACrCuD,GAAO,EACHzE,GAAe,GACjB0E,EAAWI,QAAU/D,EAAKG,UAAU,GAAG,GACvCuD,GAAO,GAGPC,EAAWI,QAAU,EAGvB/D,EAAO,IAAIC,SAASrF,EAAO8I,EAAK,IAChCC,EAAWK,cAAgBhE,EAAKG,UAAU,GAAG,GAC7CwD,EAAWM,eAAiBjE,EAAKE,SAAS,GAAG,GAC7CyD,EAAWO,SAAWlE,EAAKE,SAAS,GAAG,GACvCyD,EAAWzE,UAAYc,EAAKE,SAAS,IAAI,GAEzCyD,EAAWpG,UAAYyC,EAAKI,WAAW,IAAI,GAC3CuD,EAAWQ,KAAOnE,EAAKI,WAAW,IAAI,GACtCuD,EAAWS,KAAOpE,EAAKI,WAAW,IAAI,GACtCsD,GAAO,GACPlH,EAAKmH,WAAaA,EAClBnH,EAAKkH,IAAMA,EAGPzE,GAAe,IACjB4E,EAAY5E,GAAe,EAAI,GAAK,GACzBoF,KAAKlB,0BAA0B,IAAIzF,WAAW9C,EAAO8I,EAAMG,EAAWF,EAAWO,SAAW,OACtFP,EAAWG,UAC1B,KAAM,mBAGV,OAAO,CACT,EAEAQ,kBAAmB,SAAS1J,EAAO4B,GACjC,IAAImH,EAAanH,EAAKmH,WAClBY,EAAoBF,KAAKG,iBAAiBb,EAAWzE,WACrDuF,EAAad,EAAWI,QAAUM,KAAKK,gBAAgBf,EAAWzE,WAClEyF,EAAYN,KAAKO,aAAahK,EAAO4B,EAAKkH,IAAKa,EAAmBE,GAClEI,EAAYR,KAAKO,aAAahK,EAAO4B,EAAKkH,IAAMe,EAAYF,EAAmBE,GACnFjI,EAAKkH,KAAQ,EAAIe,EACjB,IAAInF,EAAGwF,GAAQ,EACf,IAAKxF,EAAI,EAAGA,EAAIqE,EAAWI,QAASzE,IAClC,GAAIqF,EAAUrF,KAAOuF,EAAUvF,GAAI,CACjCwF,GAAQ,EACR,KACF,CAIF,OAFAnB,EAAWgB,UAAYA,EACvBhB,EAAWkB,UAAYA,EAChBC,CACT,EAEAF,aAAc,SAAShK,EAAO8I,EAAKa,EAAmBnF,GACpD,IAAIT,EACJ,GAAI4F,IAAsB7G,WACxBiB,EAAU,IAAIjB,WAAW9C,EAAO8I,EAAKtE,OAElC,CACH,IAAIyC,EAAW,IAAIE,YAAY3C,GAClB,IAAI1B,WAAWmE,GACrBG,IAAI,IAAItE,WAAW9C,EAAO8I,EAAKtE,IACtCT,EAAU,IAAI4F,EAAkB1C,EAClC,CACA,OAAOlD,CACT,EAEAoG,SAAU,SAASnK,EAAO4B,GACxB,IAcIJ,EAAQJ,EAdR0H,EAAMlH,EAAKkH,IACXC,EAAanH,EAAKmH,WAClB7B,EAAY6B,EAAWlI,MAAQkI,EAAWjI,OAC1CsI,EAAgBL,EAAWK,cAE3BhE,EAAO,IAAIC,SAASrF,EAAO8I,EAAK,GAChCvH,EAAO,CAAC,EAKZ,GAJAA,EAAKiD,SAAWY,EAAKG,UAAU,GAAG,GAClCuD,GAAO,GAGF,IAAMM,GAAiBlC,IAAckC,IAAkB,IAAM7H,EAAKiD,SACrE,KAAM,eAGR,GAAsB,IAAlB4E,EACF5H,EAAS,IAAIsB,WAAWP,KAAKmD,KAAKwB,EAAY,IAC9C3F,EAAKC,OAASA,EACdJ,EAAa,IAAI0B,WAAWoE,GAC5BtF,EAAKT,OAAOC,WAAaA,EACzB0H,GAAOvH,EAAKiD,cAET,GAAIjD,EAAKiD,SAAW,EAAG,CAC1BhD,EAAS,IAAIsB,WAAWP,KAAKmD,KAAKwB,EAAY,IAE9C,IAAIvB,GADJP,EAAO,IAAIC,SAASrF,EAAO8I,EAAKvH,EAAKiD,WACtBoB,SAAS,GAAG,GACvBC,EAAK,EAAGC,EAAK,EAAGE,EAAM,EAC1B,EAAG,CACD,GAAIL,EAAM,EACR,KAAOA,KAASnE,EAAOsE,KAAQV,EAAKW,SAASF,UAI7C,IAFAG,EAAMZ,EAAKW,SAASF,KACpBF,GAAOA,EACAA,KAASnE,EAAOsE,KAAQE,EAEjCL,EAAMP,EAAKQ,SAASC,GAAI,GACxBA,GAAM,CACR,OAASA,EAAKtE,EAAKiD,UACnB,IAAc,QAATmB,GAAoBG,EAAKtE,EAAOyE,OACnC,KAAM,sCAGR7E,EAAa,IAAI0B,WAAWoE,GAC5B,IAAIkD,EAAK,EAAGC,EAAI,EAEhB,IAAKA,EAAI,EAAGA,EAAInD,EAAWmD,IACjB,EAAJA,GACFD,EAAK5I,EAAO6I,GAAK,GACjBD,IAAW,EAAJC,GAGPD,EAAK5I,EAAO6I,GAAK,GAEV,IAALD,IACFhJ,EAAWiJ,GAAK,GAGpBzI,EAAKT,OAAOC,WAAaA,EAEzBG,EAAKC,OAASA,EACdsH,GAAOvH,EAAKiD,QACd,CAGA,OAFA5C,EAAKkH,IAAMA,EACXlH,EAAKL,KAAOA,GACL,CACT,EAEA+I,iBAAkB,SAAStK,EAAO4B,EAAM+H,EAAmBY,GACzD,IAOIxG,EAPA+E,EAAMlH,EAAKkH,IACXC,EAAanH,EAAKmH,WAClBI,EAAUJ,EAAWI,QACrBjC,EAAY6B,EAAWlI,MAAQkI,EAAWjI,OAC1CwD,EAAYyE,EAAWzE,UACvBE,EAAWuE,EAAWK,cAAgBf,EAAayB,gBAAgBxF,GAAa6E,EAGhF5H,EAAOK,EAAKT,OAAOC,WACvB,GAAIuI,IAAsB7G,WACxBiB,EAAU,IAAIjB,WAAW9C,EAAO8I,EAAKtE,OAElC,CACH,IAAIyC,EAAW,IAAIE,YAAY3C,GAClB,IAAI1B,WAAWmE,GACrBG,IAAI,IAAItE,WAAW9C,EAAO8I,EAAKtE,IACtCT,EAAU,IAAI4F,EAAkB1C,EAClC,CACA,GAAIlD,EAAQkC,SAAWiB,EAAYiC,EAE/BvH,EAAKT,OAAOH,aADVuJ,EACyBlC,EAAamC,mBAAmBzG,EAASmD,EAAWiC,EAASQ,GAAmB,GAGhF5F,MAI/B,CACEnC,EAAKT,OAAOH,aAAe,IAAI2I,EAAkBzC,EAAYiC,GAC7D,IAAIsB,EAAI,EAAGJ,EAAI,EAAG3F,EAAI,EAAGgG,EAAS,EAClC,GAAIvB,EAAU,GACZ,GAAIoB,GACF,IAAKF,EAAI,EAAGA,EAAInD,EAAWmD,IACzB,GAAI9I,EAAK8I,GAEP,IADAK,EAASL,EACJ3F,EAAI,EAAGA,EAAIyE,EAASzE,IAAKgG,GAAQxD,EACpCtF,EAAKT,OAAOH,aAAa0J,GAAU3G,EAAQ0G,UAMjD,IAAKJ,EAAI,EAAGA,EAAInD,EAAWmD,IACzB,GAAI9I,EAAK8I,GAEP,IADAK,EAASL,EAAIlB,EACRzE,EAAI,EAAGA,EAAIyE,EAASzE,IACvB9C,EAAKT,OAAOH,aAAa0J,EAAShG,GAAKX,EAAQ0G,UAOvD,IAAKJ,EAAI,EAAGA,EAAInD,EAAWmD,IACrB9I,EAAK8I,KACPzI,EAAKT,OAAOH,aAAaqJ,GAAKtG,EAAQ0G,KAI9C,CAGA,OAFA3B,GAAOtE,EACP5C,EAAKkH,IAAMA,GACJ,CACT,EAEA6B,gBAAiB,SAAS3K,EAAO4B,GAC/B,IAAIgJ,EAAWnB,KAAKnB,qBAKhBlD,EAAO,IAAIC,SAASrF,EAAO4B,EAAKkH,IAAK,IAGzC,GAFAlH,EAAKkH,KAAO,GACE1D,EAAKE,SAAS,GAAG,GACjB,EACZ,KAAM,8BAER,IAAIkB,EAAOpB,EAAKE,SAAS,GAAG,GACxBuF,EAAKzF,EAAKE,SAAS,GAAG,GACtBwF,EAAK1F,EAAKE,SAAS,IAAI,GAC3B,GAAIuF,GAAMC,EACR,OAAO,EAET,IAAI7H,EAAkB,IAAIsE,YAAYuD,EAAKD,GAC3CxC,EAAa0C,WAAW/K,EAAO4B,EAAMqB,GACrC,IACIyB,EAAGsG,EAAGX,EAAG3B,EADTuC,EAAY,GAGhB,IAAKvG,EAAImG,EAAInG,EAAIoG,EAAIpG,IAEnBuG,EADAD,EAAItG,GAAKA,EAAI8B,EAAO,EAAIA,IACT,CAAE0E,MAAOjI,EAAgByB,EAAImG,GAAKM,OAAQ,MAG3D,IAAI9D,EAAYrH,EAAM0G,WAAa9E,EAAKkH,IACpCxB,EAAY/E,KAAKmD,KAAK2B,EAAY,GAClCJ,EAAW,IAAIE,YAAwB,EAAZG,GAClB,IAAIxE,WAAWmE,GACrBG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKzB,IAC3C,IACgB+D,EADZpH,EAAc,IAAIuD,YAAYN,GAC9BmB,EAAS,EAASiD,EAAS,EAE/B,IADAD,EAAOpH,EAAY,GACdU,EAAImG,EAAInG,EAAIoG,EAAIpG,KAEnBgE,EAAMuC,EADND,EAAItG,GAAKA,EAAI8B,EAAO,EAAIA,IACL0E,OACT,IACRD,EAAUD,GAAGG,OAAUC,GAAQhD,IAAa,GAAKM,EAE7C,GAAKN,GAAUM,EAEF,MADfN,GAAUM,KAERN,EAAS,EAETgD,EAAOpH,IADPqH,KAKFjD,GAAUM,EAAM,GAEhB0C,EAAOpH,IADPqH,GAEAJ,EAAUD,GAAGG,QAAUC,IAAU,GAAKhD,IAU5C,IAAoBkD,EAAhBC,EAAa,EACbC,EAAO,IAAIC,EACf,IAAK/G,EAAI,EAAGA,EAAIuG,EAAUhF,OAAQvB,SACXgH,IAAjBT,EAAUvG,KACZ6G,EAAahJ,KAAKoJ,IAAIJ,EAAYN,EAAUvG,GAAGwG,QAIjDI,EADEC,GAAcX,EACCA,EAGAW,EAMnB,IAAoBK,EAAOC,EAAMC,EAAYC,EAAgBC,EAAzDC,EAAY,GAChB,IAAKvH,EAAImG,EAAInG,EAAIoG,EAAIpG,IAGnB,IADAgE,EAAMuC,EADND,EAAItG,GAAKA,EAAI8B,EAAO,EAAIA,IACL0E,OACT,EAER,GADAU,EAAQ,CAAClD,EAAKsC,GACVtC,GAAO4C,EAGT,IAFAO,EAAOZ,EAAUD,GAAGG,QAAWG,EAAiB5C,EAChDoD,EAAa,GAAMR,EAAiB5C,EAC/B2B,EAAI,EAAGA,EAAIyB,EAAYzB,IAC1B4B,EAAUJ,EAAOxB,GAAKuB,OAOxB,IAFAC,EAAOZ,EAAUD,GAAGG,OACpBa,EAAOR,EACFO,EAAKrD,EAAM,EAAGqD,GAAM,EAAGA,IACbF,IAASE,EAAK,GAEpBC,EAAKE,QACRF,EAAKE,MAAQ,IAAIT,GAEnBO,EAAOA,EAAKE,QAGPF,EAAKG,OACRH,EAAKG,KAAO,IAAIV,GAElBO,EAAOA,EAAKG,MAEH,IAAPJ,GAAaC,EAAKhG,MACpBgG,EAAKhG,IAAM4F,EAAM,IAM3B,MAAO,CACLK,UAAWA,EACXX,eAAgBA,EAChBC,WAAYA,EACZC,KAAMA,EACNxH,YAAaA,EACbqH,OAAQA,EACRjD,OAAQA,EAEZ,EAEAgE,YAAa,SAASpM,EAAO4B,EAAM+H,EAAmBY,GACpD,IAsBIyB,EAAMhG,EAAKqG,EAAsCC,EAAQC,EACzD7H,EAAGsG,EAAGX,EAAGmC,EAtBTrD,EADavH,EAAKmH,WACGI,QACrBrI,EAASc,EAAKmH,WAAWjI,OACzBD,EAAQe,EAAKmH,WAAWlI,MACxBqG,EAAYrG,EAAQC,EAKpB2L,EAAchD,KAAKkB,gBAAgB3K,EAAO4B,GAC1CqK,EAAYQ,EAAYR,UACxBT,EAAOiB,EAAYjB,KAEnBxH,EAAcyI,EAAYzI,YAC1BqH,EAASoB,EAAYpB,OACrBjD,EAASqE,EAAYrE,OACrBkD,EAAiBmB,EAAYnB,eAC7BC,EAAakB,EAAYlB,WACzBpH,EAAuC,IAA9BvC,EAAKmH,WAAWzE,UAAkB,IAAM,EAI/B/C,EAAOK,EAAKT,OAAOC,WAErCsL,EAAU,EACVtE,EAAS,IACXiD,IACAjD,EAAS,GAEX,IAIIuE,EAJAvB,EAAOpH,EAAYqH,GACnBuB,EAAkC,IAApBhL,EAAKiL,WACnBC,EAAqB,IAAInD,EAAkBzC,EAAYiC,GACvDnI,EAAe8L,EAGnB,GAAI3D,EAAU,GAAKyD,GACjB,IAAKD,EAAO,EAAGA,EAAOxD,EAASwD,IAM7B,GALIxD,EAAU,IAEZnI,EAAe,IAAI2I,EAAkBmD,EAAmBlF,OAAQV,EAAYyF,EAAMzF,GAClFwF,EAAU,GAER9K,EAAKmH,WAAWK,gBAAkBvI,EAAQC,EAC5C,IAAKuJ,EAAI,EAAG3F,EAAI,EAAGA,EAAI5D,EAAQ4D,IAC7B,IAAKsG,EAAI,EAAGA,EAAInK,EAAOmK,IAAKX,IAAK,CAQ/B,GAPArE,EAAM,EAENuG,EADAD,EAAUlB,GAAQhD,IAAa,GAAKkD,EAEhC,GAAKlD,EAASkD,IAEhBiB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASkD,GAGtDW,EAAUM,GAEZvG,EAAMiG,EAAUM,GAAa,GAC7BnE,GAAU6D,EAAUM,GAAa,QAUjC,IANAA,EADAD,EAAUlB,GAAQhD,IAAa,GAAKmD,EAEhC,GAAKnD,EAASmD,IAEhBgB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASmD,GAG1DS,EAAOR,EACFgB,EAAK,EAAGA,EAAKjB,EAAYiB,IAG5B,KADAR,EADaM,IAAYf,EAAaiB,EAAK,EAAK,EAC5BR,EAAKE,MAAQF,EAAKG,MAC3BA,OAAQH,EAAKE,MAAQ,CAC9BlG,EAAMgG,EAAKhG,IACXoC,EAASA,EAASoE,EAAK,EACvB,KACF,CAIApE,GAAU,KACZA,GAAU,GAEVgD,EAAOpH,IADPqH,IAIFgB,EAAQrG,EAAM7B,EACVyI,GAEAP,GADErB,EAAI,EACG0B,EAEFhI,EAAI,EACF1D,EAAaqJ,EAAIxJ,GAGjB6L,EAEXL,GAAS,IACTrL,EAAaqJ,GAAKgC,EAClBK,EAAUL,GAGVrL,EAAaqJ,GAAKgC,CAEtB,MAIF,IAAKhC,EAAI,EAAG3F,EAAI,EAAGA,EAAI5D,EAAQ4D,IAC7B,IAAKsG,EAAI,EAAGA,EAAInK,EAAOmK,IAAKX,IAC1B,GAAI9I,EAAK8I,GAAI,CAQX,GAPArE,EAAM,EAENuG,EADAD,EAAUlB,GAAQhD,IAAa,GAAKkD,EAEhC,GAAKlD,EAASkD,IAEhBiB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASkD,GAGtDW,EAAUM,GAEZvG,EAAMiG,EAAUM,GAAa,GAC7BnE,GAAU6D,EAAUM,GAAa,QAUjC,IANAA,EADAD,EAAUlB,GAAQhD,IAAa,GAAKmD,EAEhC,GAAKnD,EAASmD,IAEhBgB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASmD,GAG1DS,EAAOR,EACFgB,EAAK,EAAGA,EAAKjB,EAAYiB,IAG5B,KADAR,EADaM,IAAYf,EAAaiB,EAAK,EAAK,EAC5BR,EAAKE,MAAQF,EAAKG,MAC3BA,OAAQH,EAAKE,MAAQ,CAC9BlG,EAAMgG,EAAKhG,IACXoC,EAASA,EAASoE,EAAK,EACvB,KACF,CAIApE,GAAU,KACZA,GAAU,GAEVgD,EAAOpH,IADPqH,IAIFgB,EAAQrG,EAAM7B,EACVyI,GACE5B,EAAI,GAAKzJ,EAAK8I,EAAI,GACpBgC,GAASK,EAEFhI,EAAI,GAAKnD,EAAK8I,EAAIxJ,GACzBwL,GAASrL,EAAaqJ,EAAIxJ,GAG1BwL,GAASK,EAGXL,GAAS,IACTrL,EAAaqJ,GAAKgC,EAClBK,EAAUL,GAGVrL,EAAaqJ,GAAKgC,CAEtB,OAOR,IAAKhC,EAAI,EAAG3F,EAAI,EAAGA,EAAI5D,EAAQ4D,IAC7B,IAAKsG,EAAI,EAAGA,EAAInK,EAAOmK,IAErB,GADAX,EAAI3F,EAAI7D,EAAQmK,GACXzJ,GAAQA,EAAK8I,GAChB,IAAKsC,EAAO,EAAGA,EAAOxD,EAASwD,IAAQtC,GAAGnD,EAAW,CAQnD,GAPAlB,EAAM,EAENuG,EADAD,EAAUlB,GAAQhD,IAAa,GAAKkD,EAEhC,GAAKlD,EAASkD,IAEhBiB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASkD,GAGtDW,EAAUM,GAEZvG,EAAMiG,EAAUM,GAAa,GAC7BnE,GAAU6D,EAAUM,GAAa,QAUjC,IANAA,EADAD,EAAUlB,GAAQhD,IAAa,GAAKmD,EAEhC,GAAKnD,EAASmD,IAEhBgB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASmD,GAG1DS,EAAOR,EACFgB,EAAK,EAAGA,EAAKjB,EAAYiB,IAG5B,KADAR,EADaM,IAAYf,EAAaiB,EAAK,EAAK,EAC5BR,EAAKE,MAAQF,EAAKG,MAC3BA,OAAQH,EAAKE,MAAQ,CAC9BlG,EAAMgG,EAAKhG,IACXoC,EAASA,EAASoE,EAAK,EACvB,KACF,CAIApE,GAAU,KACZA,GAAU,GAEVgD,EAAOpH,IADPqH,IAIFgB,EAAQrG,EAAM7B,EACdnD,EAAaqJ,GAAKgC,CACpB,CAKRzK,EAAKkH,IAAMlH,EAAKkH,IAAqB,GAAduC,EAAS,IAAUjD,EAAS,EAAI,EAAI,GAC3DxG,EAAKT,OAAOH,aAAe8L,EAEvB3D,EAAU,IAAMoB,IAClB3I,EAAKT,OAAOH,aAAeqH,EAAamC,mBAAmBsC,EAAoB5F,EAAWiC,EAASQ,GAEvG,EAEAoB,WAAY,SAAS/K,EAAO4B,EAAMqB,EAAiBkB,EAAQwI,GAGvD,IAAI5D,EAAanH,EAAKmH,WAClB1E,EAAc0E,EAAW1E,YAEzBd,EAAW,EACXwJ,EAAmB/M,EAAM0G,WAAa9E,EAAKkH,KAAQ,EAAK,EAAK9I,EAAM0G,WAAa9E,EAAKkH,IACrF1D,EAAO,IAAIC,SAASrF,EAAO4B,EAAKkH,IAAKiE,GACrCnG,EAAaxB,EAAKW,SAAS,GAC/BxC,IACA,IAAIyJ,EAASpG,GAAc,EACvBe,EAAgB,IAAXqF,EAAgB,EAAI,EAAIA,EAC7BC,GAAsB,GAAbrG,GAAmB,EAC5BsG,EAAuB,GAAbtG,EACVuG,EAAc,EAClB,GAAU,IAANxF,EACFwF,EAAc/H,EAAKW,SAASxC,GAAWA,SAClC,GAAU,IAANoE,EACTwF,EAAc/H,EAAK4B,UAAUzD,GAAU,GAAOA,GAAY,MACrD,IAAU,IAANoE,EAGT,KAAM,iCAFNwF,EAAc/H,EAAKG,UAAUhC,GAAU,GAAOA,GAAY,CAG5D,CAGA,IACIS,EAAaiD,EAAUmG,EAAQ/F,EAAWC,EAC1Ca,EAAQkF,EAASC,EAA6BrJ,EAF9CvB,EAAQ,EAAIqG,EAAWpG,UAGvB6G,EAAOT,EAAWI,QAAU,EAAIJ,EAAWkB,UAAU0C,GAAQ5D,EAAWS,KAC5E,GAAIyD,EAAO,CAiBT,IAhBArL,EAAK2L,QAAQC,MACbF,EAAWlI,EAAKW,SAASxC,GAEzBA,IACA8D,EAAY9E,KAAKmD,MAAM4H,EAAW,GAAKJ,EAAU,GACjD5F,EAAY/E,KAAKmD,KAAK2B,EAAY,GAClCJ,EAAW,IAAIE,YAAwB,EAAZG,GAC3B8F,EAAS,IAAItK,WAAWmE,GAExBrF,EAAKkH,KAAOvF,EACZ6J,EAAOhG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKzB,IAE3CgG,EAAU,IAAI9F,YAAYN,GAC1BrF,EAAKkH,KAAOzB,EAEZpD,EAAe,EACPqJ,EAAW,IAAOrJ,GACxBA,IAEFoD,EAAY9E,KAAKmD,KAAKyH,EAAclJ,EAAe,GACnDqD,EAAY/E,KAAKmD,KAAK2B,EAAY,GAClCJ,EAAW,IAAIE,YAAwB,EAAZG,IAC3B8F,EAAS,IAAItK,WAAWmE,IACjBG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKzB,IAC3CrD,EAAc,IAAIuD,YAAYN,GAC9BrF,EAAKkH,KAAOzB,EAEVc,EADE9D,GAAe,EA9vBZ,SAASmD,EAAKvD,EAAciD,EAAW/C,EAAQzB,EAAOxB,GACjE,IAEI0G,EAFAC,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EAAGgD,EAAI,EAAGO,EAAc,EAAGH,EAAW,EAAGH,EAAI,EAAGS,EAAS,EAE7DX,EAAO,GACPM,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAC3C,IAAKgF,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,GACXM,EAAS,GAEPN,GAAY7D,GAEd0D,EAAMC,IAAWQ,EAAUP,EAC3BC,GAAY7D,EACZmE,GAAUnE,IAGV0D,EAAKC,IAAWQ,EAAUP,EAE1BC,EAAW,IAHXG,EAAehE,EAAe6D,GAI9BH,KAFAC,EAASJ,EAAI9C,OAEI,GAAKuD,GAAe,IAAQhE,EAAegE,EAC5DG,EAASH,GAGXR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,EAG5C,OADAuG,EAAKgG,QAAQtJ,GACNsD,CACT,CAiuBiBS,CAAuBmF,EAASH,EAASI,EAAW,EAAGnJ,EAAQzB,EAAO8G,GAv1B3E,SAAShC,EAAKvD,EAAciD,EAAW/C,EAAQzB,EAAOxB,GAChE,IAEI0G,EAFAC,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EAAGgD,EAAI,EAAGO,EAAc,EAAGH,EAAW,EAAGH,EAAI,EAEjDF,EAAO,GAGPO,EAAmC,EAAbR,EAAIvB,OAAa1D,KAAKmD,KAAKzB,EAAeiD,EAAY,GAChFM,EAAIA,EAAIvB,OAAS,KAAO,EAAI+B,EAE5B,IAAID,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAC3C,IAAKgF,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,GACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,IAGZ0D,GAAMC,EAASC,KADfI,EAAehE,EAAe6D,GACYD,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,IAIlBR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,EAG5C,OADAuG,EAAKgG,QAAQtJ,GACNsD,CACT,CA2zBiBS,CAAsBmF,EAASH,EAASI,EAAW,EAAGnJ,EAAQzB,EAAO8G,GAG5EnF,GAAe,EAEjB6D,EAAoBlE,EAAaf,EAAiBgB,EAAckJ,EAAahF,GAG7ED,EAAmBlE,EAAaf,EAAiBgB,EAAckJ,EAAahF,EAEhF,MAGEvG,EAAK2L,QAAQG,aACbzJ,EAAeiJ,EACftL,EAAKkH,KAAOvF,EACRU,EAAe,IACjBoD,EAAY9E,KAAKmD,KAAKyH,EAAclJ,EAAe,GACnDqD,EAAY/E,KAAKmD,KAAK2B,EAAY,GAClCJ,EAAW,IAAIE,YAAwB,EAAZG,IAC3B8F,EAAS,IAAItK,WAAWmE,IACjBG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKzB,IAC3CrD,EAAc,IAAIuD,YAAYN,GAC9BrF,EAAKkH,KAAOzB,EACRhD,GAAe,EACH,MAAVF,EA5tBI,SAASqD,EAAKC,EAAMxD,EAAciD,GAClD,IACWQ,EAEPC,EAAGC,EAAQK,EAHXJ,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAAGM,EAAS,EAG3B,IAAKV,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,GACXM,EAAS,GAEPN,GAAY7D,GAEd0D,EAAMC,IAAWQ,EAAUP,EAC3BC,GAAY7D,EACZmE,GAAUnE,IAGV0D,EAAKC,IAAWQ,EAAUP,EAE1BC,EAAW,IAHXG,EAAehE,EAAe6D,GAI9BH,KAFAC,EAASJ,EAAI9C,OAEI,GAAKuD,GAAe,IAAQhE,EAAegE,EAC5DG,EAASH,GAEXR,EAAKC,GAAKC,CAGd,CAisBYO,CAA4BlE,EAAaf,EAAiBgB,EAAckJ,GAGxEjF,EAAoBlE,EAAaf,EAAiBgB,EAAckJ,GAAa,EAAOhJ,EAAQzB,EAAO8G,GAIvF,MAAVrF,EAnwBG,SAASqD,EAAKC,EAAMxD,EAAciD,GACjD,IACWQ,EAEPC,EAAGC,EAAQK,EAHXJ,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAIXE,EAAmC,EAAbR,EAAIvB,OAAa1D,KAAKmD,KAAKzB,EAAeiD,EAAY,GAGhF,IAFAM,EAAIA,EAAIvB,OAAS,KAAO,EAAI+B,EAEvBN,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,GACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,IAIZ0D,GAAMC,EAASC,KADfI,EAAehE,EAAe6D,GACYD,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,IAGlBR,EAAKC,GAAKC,CAGd,CAuuBYO,CAA2BlE,EAAaf,EAAiBgB,EAAckJ,GAGvEjF,EAAmBlE,EAAaf,EAAiBgB,EAAckJ,GAAa,EAAOhJ,EAAQzB,EAAO8G,GAO9G,EAEAmE,UAAW,SAAS3N,EAAO4B,EAAM+H,EAAmBY,GAClD,IAAIxB,EAAanH,EAAKmH,WAClBlI,EAAQkI,EAAWlI,MACnBC,EAASiI,EAAWjI,OACpBoG,EAAYrG,EAAQC,EACpBuI,EAAiBN,EAAWM,eAC5B/E,EAAYyE,EAAWzE,UACvBsJ,EAAevF,EAAayB,gBAAgBxF,GAC5CnC,EAAaI,KAAKmD,KAAK7E,EAAQwI,GAC/BhH,EAAaE,KAAKmD,KAAK5E,EAASuI,GACpCzH,EAAKT,OAAOkB,WAAaA,EACzBT,EAAKT,OAAOgB,WAAaA,EACzBP,EAAKT,OAAO2H,IAAM,EAClB,IACI1D,EAAMxB,EAAOqD,EAAkBlD,EAC/B8J,EAIAhH,EAAY1C,EACkBwI,EAK9BmB,EAGAC,EAfAC,EAAM,EAAGC,EAAM,EAAG3H,EAAS,EAAGC,EAAS,EAAGpD,EAAkB,EAAGE,EAAiB,EAAGoD,EAAY,EAAGG,EAAa,EAAGoG,EAAS,EAAiBtJ,EAAS,EAAGC,EAAY,EAAGa,EAAW,EAAG0J,EAAY,EAAGzD,EAAI,EAAGlH,EAAW,EAGtNN,EAAkB,IAAI0G,EAAkBN,EAAiBA,GACzD8E,EAAmBrN,EAASuI,GAAmBA,EAC/C+E,EAAkBvN,EAAQwI,GAAmBA,EAE7CF,EAAUJ,EAAWI,QACrB5H,EAAOK,EAAKT,OAAOC,WACnBJ,EAAeY,EAAKT,OAAOH,aAE3BqN,EADctF,EAAW1E,aACY,EAAI,GAAK,GAE9CmF,EAAOT,EAAWS,KAGtB,IAAKlD,EAAS,EAAGA,EAASjE,EAAYiE,IAEpC,IADAnD,EAAmBmD,IAAWjE,EAAa,EAAKgH,EAAiB8E,EAC5D5H,EAAS,EAAGA,EAASpE,EAAYoE,IAOpC,IAHA7C,EAAS4C,EAASzF,EAAQwI,EAAiB9C,EAAS8C,EACpD1F,EAAY9C,GAHZwC,EAAkBkD,IAAWpE,EAAa,EAAKkH,EAAiB+E,GAK3DzB,EAAO,EAAGA,EAAOxD,EAASwD,IAAQ,CAkBrC,GAjBIxD,EAAU,GACZ4E,EAAsB/M,EACtB0C,EAAS4C,EAASzF,EAAQwI,EAAiB9C,EAAS8C,EACpDrI,EAAe,IAAI2I,EAAkB/H,EAAKT,OAAOH,aAAa4G,OAAQV,EAAYyF,EAAOiB,EAAc1G,GACvGsC,EAAOT,EAAWkB,UAAU0C,IAE5BoB,EAAsB,KAExBtH,EAAYzG,EAAM0G,WAAa9E,EAAKkH,IAEpClF,EAAQ,CAAC,EACTL,EAAW,EACXqD,GAHAxB,EAAO,IAAIC,SAASrF,EAAO4B,EAAKkH,IAAKvG,KAAKoE,IAAI,GAAIF,KAGhCV,SAAS,GAC3BxC,IACAuK,EAAiB/E,EAAW1E,aAAe,EAAiB,EAAbuC,EAAiB,EAChEoG,EAAUpG,GAAc,EAAK,KACjBA,GAAc,EAAKyH,KACX9H,EAAS8C,GAAmB,EAAKgF,GACnD,KAAM,kBAGR,GAAIP,GAA2B,IAATnB,EACpB,KAAM,kBAIR,IADAkB,EAA6B,EAAbjH,GACI,EAElB,MADAhF,EAAKkH,KAAOvF,EACN,2BAA6BsK,EAAgB,IAEhD,GAAsB,IAAlBA,EAyBJ,GAAsB,IAAlBA,EAAqB,CAC5B,GAAIC,EAEF,KAAM,kBAaR,GAXAlM,EAAK2L,QAAQe,eACb1M,EAAKkH,KAAOvF,EAGZiB,GAFAA,EAAWrB,EAAkBE,EAAiBuK,IAC9CM,EAAYlO,EAAM0G,WAAa9E,EAAKkH,KACFtE,EAAW0J,EAE7CjH,EAAW,IAAIE,YAAa3C,EAAWoJ,GAAkB,EAAIpJ,EAAYA,EAAWoJ,EAAepJ,EAAWoJ,GACrG,IAAI9K,WAAWmE,GACjBG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKtE,IAC3CT,EAAU,IAAI4F,EAAkB1C,GAChCwD,EAAI,EACAlJ,EACF,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUK,EAAQ0G,MAEjC/G,IAEFA,GAAUC,CACZ,MAGA,IAAKqK,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,KAAYK,EAAQ0G,KAEnC/G,GAAUC,CACZ,CAEF/B,EAAKkH,KAAO2B,EAAImD,CAClB,MAKE,GAHA/G,EAAawB,EAAakG,gBAAiBT,GAAkBxJ,EAAY,EAAK,EAAIA,EAAW0I,GAC7F7I,EAASkE,EAAamG,YAAY5K,EAAOL,EAAUsD,EAAYzB,GAC/D7B,GAAY8E,EAAayB,gBAAgBjD,GACnB,IAAlBgH,EAMF,GAJAjM,EAAKkH,KAAOvF,EACZ3B,EAAK2L,QAAQkB,iBAGTlN,EACF,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUoK,EAAiBvL,KAAKoE,IAAI6C,EAAMuE,EAAoBrK,GAAUS,GAAUA,GAEjGT,IAEFA,GAAUC,CACZ,MAGA,IAAKqK,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,GAAUoK,EAAiBvL,KAAKoE,IAAI6C,EAAMuE,EAAoBrK,GAAUS,GAAUA,EAC/FT,IAEFA,GAAUC,CACZ,MASF,GALA/B,EAAKkH,KAAOvF,EAEZ8E,EAAa0C,WAAW/K,EAAO4B,EAAMqB,EAAiBkB,EAAQwI,GAC9DpJ,EAAW,EAEPuK,EACF,GAAIvM,EACF,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUT,EAAgBM,KAAcwK,EAAoBrK,IAE3EA,IAEFA,GAAUC,CACZ,MAGA,IAAKqK,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,GAAUT,EAAgBM,KAAcwK,EAAoBrK,GACzEA,IAEFA,GAAUC,CACZ,MAGC,GAAIpC,EACP,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUT,EAAgBM,MAEzCG,IAEFA,GAAUC,CACZ,MAGA,IAAKqK,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,KAAYT,EAAgBM,KAE3CG,GAAUC,CACZ,KA1ID,CACH,GAAImK,EACF,GAAIvM,EACF,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IACnC,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUqK,EAAoBrK,IAE7CA,SAKJ,IAAKsK,EAAM,EAAGA,EAAM7K,EAAiB6K,IACnC,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,GAAUqK,EAAoBrK,GAC3CA,IAKR9B,EAAK2L,QAAQmB,WACb9M,EAAKkH,KAAOvF,CAuHd,CACF,CAIA4F,EAAU,IAAMoB,IAClB3I,EAAKT,OAAOH,aAAeqH,EAAamC,mBAAmB5I,EAAKT,OAAOH,aAAckG,EAAWiC,EAASQ,GAE7G,EAMArK,eAAgB,SAASsC,GACvB,MAAO,CACL,qBAAwBA,EAAKmH,WAAW3E,qBACxC,YAAexC,EAAKmH,WAAW1E,YAC/B,UAAazC,EAAKmH,WAAWzE,UAC7B,OAAU1C,EAAKmH,WAAWjI,OAC1B,MAASc,EAAKmH,WAAWlI,MACzB,cAAiBe,EAAKmH,WAAWK,cACjC,eAAkBxH,EAAKmH,WAAWM,eAClC,SAAYzH,EAAKmH,WAAWO,SAC5B,UAAa1H,EAAKmH,WAAWpG,UAC7B,UAAa0F,EAAasG,aAAa/M,EAAKmH,WAAWzE,WACvD,UAAa1C,EAAK2C,UAClB,KAAQ3C,EAAKL,KAAO,CAClB,SAAYK,EAAKL,KAAKiD,UACpB,KACJ,OAAU,CACR,WAAc5C,EAAKT,OAAOgB,WAC1B,WAAcP,EAAKT,OAAOkB,WAE1B,SAAYT,EAAKmH,WAAWS,KAC5B,SAAY5H,EAAKmH,WAAWQ,KAC5B,YAAe3H,EAAKtB,aAG1B,EAEAsO,yBAA0B,SAAShN,EAAM2I,GACvC,IAAIvE,EAAMpE,EAAKmH,WAAWS,KACtBqF,EAASjN,EAAKmH,WAAWQ,KACzBU,EAAYrI,EAAKmH,WAAWkB,UAC5Bd,EAAUvH,EAAKmH,WAAWI,QAC1BjC,EAAYtF,EAAKmH,WAAWjI,OAASc,EAAKmH,WAAWlI,MACrD6D,EAAI,EAAG2F,EAAI,EAAGK,EAAS,EACvBnJ,EAAOK,EAAKT,OAAOC,WACnBJ,EAAeY,EAAKT,OAAOH,aAC/B,GAAIO,EACF,GAAI4H,EAAU,GACZ,GAAIoB,EACF,IAAK7F,EAAI,EAAGA,EAAIyE,EAASzE,IAGvB,IAFAgG,EAAShG,EAAIwC,EACblB,EAAMiE,EAAUvF,GACX2F,EAAI,EAAGA,EAAInD,EAAWmD,IACrB9I,EAAK8I,KACPrJ,EAAa0J,EAASL,GAAKrE,QAMjC,IAAKqE,EAAI,EAAGA,EAAInD,EAAWmD,IACzB,GAAI9I,EAAK8I,GAEP,IADAK,EAASL,EAAIlB,EACRzE,EAAI,EAAGA,EAAIyE,EAASzE,IACvB1D,EAAa0J,EAASvB,GAAWc,EAAUvF,QAOnD,IAAK2F,EAAI,EAAGA,EAAInD,EAAWmD,IACrB9I,EAAK8I,KACPrJ,EAAaqJ,GAAKrE,QAMxB,GAAImD,EAAU,GAAK0F,IAAW7I,EAC5B,GAAIuE,EACF,IAAK7F,EAAI,EAAGA,EAAIyE,EAASzE,IAGvB,IAFAgG,EAAShG,EAAIwC,EACblB,EAAMiE,EAAUvF,GACX2F,EAAI,EAAGA,EAAInD,EAAWmD,IACzBrJ,EAAa0J,EAASL,GAAKrE,OAK/B,IAAKqE,EAAI,EAAGA,EAAInD,EAAWmD,IAEzB,IADAK,EAASL,EAAIlB,EACRzE,EAAI,EAAGA,EAAIyE,EAASzE,IACvB1D,EAAa0J,EAAShG,GAAKuF,EAAUvF,QAM3C,IAAK2F,EAAI,EAAGA,EAAInD,EAAYiC,EAASkB,IACnCrJ,EAAaqJ,GAAKrE,CAK1B,EAEA4D,iBAAkB,SAASkF,GACzB,IAAIC,EACJ,OAAQD,GACN,KAAK,EACHC,EAAKC,UACL,MACF,KAAK,EACHD,EAAKjM,WACL,MACF,KAAK,EACHiM,EAAKE,WACL,MACF,KAAK,EACHF,EAAKG,YACL,MACF,KAAK,EACHH,EAAKI,WACL,MACF,KAAK,EACHJ,EAAKxH,YACL,MACF,KAAK,EAML,QACEwH,EAAKrO,mBAJP,KAAK,EACHqO,EAAKK,aAKT,OAAOL,CACT,EAEAJ,aAAc,SAASG,GACrB,IAAIC,EACJ,OAAQD,GACN,KAAK,EACHC,EAAK,KACL,MACF,KAAK,EACHA,EAAK,KACL,MACF,KAAK,EACHA,EAAK,MACL,MACF,KAAK,EACHA,EAAK,MACL,MACF,KAAK,EACHA,EAAK,MACL,MACF,KAAK,EACHA,EAAK,MACL,MACF,KAAK,EAML,QACEA,EAAK,YAJP,KAAK,EACHA,EAAK,MAKT,OAAOA,CACT,EAEAM,kBAAmB,SAASP,EAAG9I,GAC7B,GAAW,MAAPA,EACF,OAAO,EAET,IAAIsJ,EACJ,OAAQR,GACN,KAAK,EACHQ,EAAUtJ,IAAQ,KAAOA,GAAO,IAChC,MACF,KAAK,EACHsJ,EAAUtJ,GAAO,GAAKA,GAAO,IAC7B,MACF,KAAK,EACHsJ,EAAUtJ,IAAQ,OAASA,GAAO,MAClC,MACF,KAAK,EACHsJ,EAAUtJ,GAAO,GAAKA,GAAO,MAC7B,MACF,KAAK,EACHsJ,EAAUtJ,IAAQ,YAAcA,GAAO,WACvC,MACF,KAAK,EACHsJ,EAAUtJ,GAAO,GAAKA,GAAO,WAC7B,MACF,KAAK,EACHsJ,EAAUtJ,IAAQ,sBAA0BA,GAAO,qBACnD,MACF,KAAK,EACHsJ,EAAUtJ,IAAQ,uBAA2BA,GAAO,sBACpD,MACF,QACEsJ,GAAU,EAEd,OAAOA,CACT,EAEAxF,gBAAiB,SAASgF,GACxB,IAAIS,EAAI,EACR,OAAQT,GACN,KAAK,EACL,KAAK,EACHS,EAAI,EACJ,MACF,KAAK,EACL,KAAK,EACHA,EAAI,EACJ,MACF,KAAK,EACL,KAAK,EACL,KAAK,EACHA,EAAI,EACJ,MACF,KAAK,EACHA,EAAI,EACJ,MACF,QACEA,EAAIT,EAER,OAAOS,CACT,EAEAhB,gBAAiB,SAASiB,EAAIC,GAC5B,IAAIX,EAAIU,EACR,OAAQA,GACN,KAAK,EACL,KAAK,EACHV,EAAIU,EAAKC,EACT,MACF,KAAK,EACL,KAAK,EACHX,EAAIU,EAAK,EAAIC,EACb,MACF,KAAK,EAEDX,EADE,IAAMW,EACJD,EAEG,IAAMC,EACT,EAGA,EAEN,MACF,KAAK,EAEDX,EADE,IAAMW,EACJD,EAGAA,EAAK,EAAIC,EAAK,EAEpB,MACF,QACEX,EAAIU,EAGR,OAAOV,CACT,EAEAN,YAAa,SAAS5K,EAAOL,EAAUsD,EAAYzB,GACjD,IAAIsK,EAAO,EACX,OAAQ7I,GACN,KAAK,EACH6I,EAAOtK,EAAK0B,QAAQvD,GACpB,MACF,KAAK,EACHmM,EAAOtK,EAAKW,SAASxC,GACrB,MACF,KAAK,EACHmM,EAAOtK,EAAKQ,SAASrC,GAAU,GAC/B,MACF,KAAK,EACHmM,EAAOtK,EAAK4B,UAAUzD,GAAU,GAChC,MACF,KAAK,EACHmM,EAAOtK,EAAKE,SAAS/B,GAAU,GAC/B,MACF,KAAK,EACHmM,EAAOtK,EAAKuK,UAAUpM,GAAU,GAChC,MACF,KAAK,EACHmM,EAAOtK,EAAKK,WAAWlC,GAAU,GACjC,MACF,KAAK,EACHmM,EAAOtK,EAAKI,WAAWjC,GAAU,GACjC,MACF,QACE,KAAM,kDAEV,OAAOmM,CACT,EAEAlF,mBAAoB,SAASrJ,EAAQ+F,EAAWiC,EAASQ,EAAmBiG,GAC1E,IAAIlL,EAAI,EAAGsG,EAAI,EAAG2B,EAAO,EAAG+C,EAAO,EAAGG,EAAO1O,EAC7C,GAAIgI,EAAU,EAEZ,GADA0G,EAAO,IAAIlG,EAAkBzC,EAAYiC,GACrCyG,EACF,IAAKlL,EAAE,EAAGA,EAAEwC,EAAWxC,IAErB,IADAgL,EAAOhL,EACFiI,EAAK,EAAGA,EAAOxD,EAASwD,IAAQ+C,GAAQxI,EAC3C2I,EAAKH,GAAQvO,EAAO6J,UAKxB,IAAKtG,EAAE,EAAGA,EAAEwC,EAAWxC,IAErB,IADAgL,EAAOhL,EACFiI,EAAK,EAAGA,EAAOxD,EAASwD,IAAQ+C,GAAQxI,EAC3C2I,EAAK7E,KAAO7J,EAAOuO,GAK3B,OAAOG,CACT,GAMEpE,EAAW,SAASzF,EAAKmG,EAAMD,GACjCzC,KAAKzD,IAAMA,EACXyD,KAAK0C,KAAOA,EACZ1C,KAAKyC,MAAQA,CACf,EAiMA,MA/LkB,CAoChB4D,OAAQ,SAAwB9P,EAAkBC,GAGhD,IAAIK,GADJL,EAAUA,GAAW,CAAC,GACIK,YAGtBoE,EAAI,EAAG9C,EAAO,CAAC,EAKnB,GAJAA,EAAKkH,IAAM7I,EAAQI,aAAe,EAClCuB,EAAKT,OAAS,CAAC,EAGVkH,EAAaQ,eAAe7I,EAAO4B,GAAxC,CAIA,IAAImH,EAAanH,EAAKmH,WAClB1E,EAAc0E,EAAW1E,YACzBsF,EAAoBtB,EAAauB,iBAAiBb,EAAWzE,WAGjE,GAAID,EAAc,EAChB,KAAM,8BAAgCA,EAIxCgE,EAAa8B,SAASnK,EAAO4B,GACzBmH,EAAWK,gBAAkBL,EAAWlI,MAAQkI,EAAWjI,QAAWc,EAAKT,OAAOC,aACpFQ,EAAKT,OAAOC,WAAanB,EAAQoB,UAGnC,IAAI6F,EAAY6B,EAAWlI,MAAQkI,EAAWjI,OAC9Cc,EAAKT,OAAOH,aAAe,IAAI2I,EAAkBzC,EAAY6B,EAAWI,SAExEvH,EAAK2L,QAAU,CACbwC,SAAU,EACVzB,aAAc,EACdd,IAAK,EACLE,WAAY,EACZgB,SAAU,EACVD,eAAgB,GAElB,IAgDIuB,EAhDAzF,GAAsBtK,EAAQgQ,2BAClC,GAAiC,IAA7BlH,EAAWK,cAEb,GAAIL,EAAWS,OAAST,EAAWQ,KAEjClB,EAAauG,yBAAyBhN,EAAM2I,QAEzC,GAAIlG,GAAe,GAAKgE,EAAaqB,kBAAkB1J,EAAO4B,GACjEyG,EAAauG,yBAAyBhN,EAAM2I,OAEzC,CACH,IAAInF,EAAO,IAAIC,SAASrF,EAAO4B,EAAKkH,IAAK,GACrCoH,EAAoB9K,EAAKW,SAAS,GAEtC,GADAnE,EAAKkH,MACDoH,EAEF7H,EAAaiC,iBAAiBtK,EAAO4B,EAAM+H,EAAmBY,QAM9D,GAAIlG,EAAc,GAAK0E,EAAWzE,WAAa,GAAK/B,KAAK4N,IAAIpH,EAAWpG,UAAY,IAAO,KAAS,CAElG,IAAIyN,EAAchL,EAAKW,SAAS,GAGhC,GAFAnE,EAAKkH,MACLlH,EAAKiL,WAAauD,EACdA,EAAc,GAAM/L,EAAc,GAAK+L,EAAc,EACvD,KAAM,wBAA0BA,EAE9BA,EAEF/H,EAAa+D,YAAYpM,EAAO4B,EAAM+H,EAAmBY,GAIzDlC,EAAasF,UAAU3N,EAAO4B,EAAM+H,EAAmBY,EAE3D,MAGElC,EAAasF,UAAU3N,EAAO4B,EAAM+H,EAAmBY,EAG7D,CAGF3I,EAAK2C,UAAY3C,EAAKkH,IAElB7I,EAAQI,aACV2P,EAAOpO,EAAKmH,WAAWO,SAAWrJ,EAAQI,YAAcuB,EAAKkH,IACzDvG,KAAK4N,IAAIH,IAAS,IAEpBpO,EAAK2C,UAAYtE,EAAQI,YAAcuB,EAAKmH,WAAWO,YAIzD0G,EAAOpO,EAAKmH,WAAWO,SAAW1H,EAAKkH,IACnCvG,KAAK4N,IAAIH,IAAS,IAEpBpO,EAAK2C,UAAY3C,EAAKmH,WAAWO,WAIrC,IAAI1I,EAAS,CACXC,MAAOkI,EAAWlI,MAClBC,OAAQiI,EAAWjI,OACnBC,UAAWa,EAAKT,OAAOH,aACvBC,SAAU8H,EAAWQ,KACrBrI,SAAU6H,EAAWS,KACrB6G,gBAAiBtH,EAAWK,cAC5BkH,SAAUvH,EAAWI,QACrBoH,SAAU,CACRxG,UAAWhB,EAAWgB,UACtBE,UAAWlB,EAAWkB,WAExB5I,SAAUO,EAAKT,OAAOC,YAMxB,GAAIQ,EAAKT,OAAOC,YAAciH,EAAagH,kBAAkBtG,EAAWzE,UAAWhE,GAAc,CAC/F,IAAIiB,EAAOK,EAAKT,OAAOC,WACvB,IAAKsD,EAAI,EAAGA,EAAIwC,EAAWxC,IACpBnD,EAAKmD,KACR9D,EAAOG,UAAU2D,GAAKpE,GAG1BM,EAAON,YAAcA,CACvB,CAKA,OAJAsB,EAAKtB,YAAcA,EACfL,EAAQwB,iBACVb,EAAOc,SAAW2G,EAAa/I,eAAesC,IAEzChB,CA3HP,CA4HF,EAEA4P,aAAc,SAAwBxQ,GAMpC,IALA,IAAIyQ,EAAQ,EACR/L,EAAI,EACJgL,EAAO,CACXA,IAAW,EACXA,OAAc,CAAC,GACRhL,EAAI1E,EAAM0G,WAAa,IAC5B2B,EAAaQ,eAAe7I,EAAO0P,GACnChL,GAAKgL,EAAK3G,WAAWO,SACrBmH,IACAf,EAAK5G,IAAMpE,EAEb,OAAO+L,CACT,EAIH,CAhrDiB,GAmrDZ/Q,EAAI,IAAIyH,YAAY,GACpBxH,EAAI,IAAImD,WAAWpD,GACf,IAAI6H,YAAY7H,GACtB,GAAK,EAJLI,EAKc,IAATH,EAAE,GAGPI,EAAO,CAoBT+P,OAAQ,SAASY,EAAazQ,GAC5B,IAAKH,EACH,KAAM,sCAGR,IAGI6Q,EAAMC,EAHNvQ,GADJJ,EAAUA,GAAW,CAAC,GACII,aAAe,EACrC0E,EAAa,IAAIjC,WAAW4N,EAAarQ,EAAa,IACtD+D,EAAuBY,OAAOC,aAAaC,MAAM,KAAMH,GAE3D,GAAoC,cAAhCX,EAAqBe,OACvBwL,EAAO/Q,EACPgR,EAAe,MAEZ,IAA6C,UAAzCxM,EAAqByM,UAAU,EAAG,GAKzC,KAAM,sCAAwCzM,EAJ9CuM,EAAO9Q,EACP+Q,EAAe,CAIjB,CAaA,IAXA,IAAmDzQ,EAAiC2Q,EAAUzP,EAqD1FqD,EAAGsG,EAAG9D,EArDN6J,EAAS,EAAGC,EAAMN,EAAYhK,WAAa,GAAqBuK,EAAY,GAC5EC,EAAoB,CACtBrQ,MAAO,EACPC,OAAQ,EACRK,OAAQ,GACRV,UAAWR,EAAQQ,UACnBc,KAAM,KACN4P,WAAY,IAEVC,EAAsB,EAEnB/Q,EAAc2Q,GAAK,CACxB,IAAIpQ,EAAS+P,EAAKb,OAAOY,EAAa,CACpCrQ,YAAaA,EACbF,gBAAiBA,EACjBkB,SAAUA,EACVV,WAAuB,IAAXoQ,EACZzP,kBAA8B,IAAXyP,EACnBtP,gBAAgB,EAChBwO,2BAA4BhQ,EAAQgQ,2BACpCxP,UAAWR,EAAQQ,WAAa,KAChCH,YAAaL,EAAQK,aAAe,OAGtCD,EAAcO,EAAOc,SAAS6C,UAC9BlD,EAAWT,EAAOS,SACH,IAAX0P,IACF5Q,EAAkBS,EAAOT,gBACzB+Q,EAAkBrQ,MAAQD,EAAOC,MACjCqQ,EAAkBpQ,OAASF,EAAOE,OAClCoQ,EAAkBZ,SAAW1P,EAAO0P,UAAY,EAEhDY,EAAkBzQ,UAAYG,EAAOH,WAAaG,EAAOc,SAASjB,UAClEyQ,EAAkB3P,KAAOF,GAEvBuP,EAAe,IACbvP,GACF4P,EAAUI,KAAKhQ,GAEbT,EAAOc,SAASH,MAAQX,EAAOc,SAASH,KAAKiD,SAAW,GAC1D4M,KAIJL,IACAG,EAAkB/P,OAAOkQ,KAAKzQ,EAAOG,WACrCmQ,EAAkBC,WAAWE,KAAK,CAChCpQ,SAAUL,EAAOK,SACjBC,SAAUN,EAAOM,SACjBZ,YAAaM,EAAON,YACpBiQ,SAAU3P,EAAO2P,UAErB,CAEA,GAAIK,EAAe,GAAKQ,EAAsB,EAAG,CAK/C,IAJAlK,EAAYgK,EAAkBrQ,MAAQqQ,EAAkBpQ,OACxDoQ,EAAkBD,UAAYA,GAC9B5P,EAAW,IAAIyB,WAAWoE,IACjBE,IAAI6J,EAAU,IAClBvM,EAAI,EAAGA,EAAIuM,EAAUhL,OAAQvB,IAEhC,IADAoM,EAAWG,EAAUvM,GAChBsG,EAAI,EAAGA,EAAI9D,EAAW8D,IACzB3J,EAAS2J,GAAK3J,EAAS2J,GAAK8F,EAAS9F,GAGzCkG,EAAkB7P,SAAWA,CAC/B,CAEA,OAAO6P,CACT,QAMsC,KAA3B,EAAF,WAAe,OAAOnR,CAAO,UAA/B,OAA+B,2GC9vE1C,IAAIuR,EACAC,EACAC,EAEJ,MAAMC,EAAgB,CAErBC,IAAK,CAEJC,gCAAiC,SAAWC,GAE3CJ,EAAO,IAAI1O,WAAYyO,EAASM,QAAQC,OAAOlK,OAEhD,IAwGImK,EAAO,0lsCCvHN,MAAMC,EAAO,UD0BnBV,IAAAA,GAEC,OAAKA,IAMJA,EAJqB,oBAAVW,MAIJA,MAAO,gCAAkCF,GAC9CG,MAAQC,GAAcA,EAASC,gBAC/BF,MAAQE,GAAiBC,YAAYC,YAAaF,EAAaX,KAC/DS,KAAMzI,KAAK8I,OAMNF,YACLC,YAAaE,OAAOC,KAAMV,EAAM,UAAYN,GAC5CS,KAAMzI,KAAK8I,OAIPjB,EAER,CAEAiB,KAAAA,CAAQ3R,GAEP2Q,EAAW3Q,EAAO2Q,SAElBE,EAAcC,IAAIC,gCAAiC,EAEpD,CAEA7B,MAAAA,CAAS4C,EAAmBC,EAAmB,GAE9C,IAAOpB,EAAW,MAAM,IAAIqB,MAAO,+CAGnC,MAAMC,EAAiBH,EAAMhM,WACvBoM,EAAgBvB,EAASM,QAAQkB,OAAQF,GAC/CrB,EAAKpK,IAAKsL,EAAOI,GAGjBH,EAAmBA,GAAoB/P,OAAQ2O,EAASM,QAAQmB,0BAA2BF,EAAeD,IAC1G,MAAMI,EAAkB1B,EAASM,QAAQkB,OAAQJ,GAC3CO,EAAa3B,EAASM,QAAQsB,gBAAiBF,EAAiBN,EAAkBG,EAAeD,GAGjGO,EAAM5B,EAAK6B,MAAOJ,EAAiBA,EAAkBC,GAI3D,OAHA3B,EAASM,QAAQyB,KAAMR,GACvBvB,EAASM,QAAQyB,KAAML,GAEhBG,CAER,GChFc,MAAMG,UAAoB,IACvC,WAAAC,CAAYC,GACVC,QAEAjK,KAAKkK,yBAAmE,IAAtCF,EAAcG,oBAAsCH,EAAcG,oBAAsB,EAC1HnK,KAAKoK,qBAA2D,IAAlCJ,EAAcK,gBAAkCL,EAAcK,gBAAkB,EAE9GrK,KAAKsK,eAAiBN,EAAcO,eAAe,KAAeC,eACpE,CAEA,WAAAC,CAAYtM,GACV,OAAQ6B,KAAKsK,gBACX,KAAK,KAAmBI,KACtB,MACF,KAAK,KAAmBC,QACtBxM,GAAS,QAAQ,IAAI9E,WAAW8E,IAASA,OACzC,MACF,KAAK,KAAmByM,UACtBzM,EAASoK,EAAKlC,OAAO,IAAIhN,WAAW8E,IAASA,OAC7C,MACF,QACE,MAAM,IAAIgL,MAAM,8DAA8DnJ,KAAKsK,kBAKvF,OAFmB,SAAYnM,EAAQ,CAAEqI,2BAAyD,IAA7BxG,KAAKkK,sBAC9CxS,OAAO,GACnByG,MAClB","sources":["webpack://ipyopenlayers/./node_modules/lerc/LercDecode.js","webpack://ipyopenlayers/./node_modules/zstddec/zstddec.ts","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/lerc.js"],"sourcesContent":["/* jshint forin: false, bitwise: false */\n/*\nCopyright 2015-2021 Esri\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\nA copy of the license and additional notices are located with the\nsource distribution at:\n\nhttp://github.com/Esri/lerc/\n\nContributors: Johannes Schmid, (LERC v1)\n Chayanika Khatua, (LERC v1)\n Wenxue Ju (LERC v1, v2.x)\n*/\n\n/* Copyright 2015-2021 Esri. Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @preserve */\n\n/**\n * a module for decoding LERC blobs\n * @module Lerc\n */\n(function() {\n //this decoder supports all lerc versions, each version has its own class (LercDecode and Lerc2Decode). \n //the exported module handles format variation autoamtically.\n\n //the original LercDecode for Version 1\n var LercDecode = (function() {\n\n // Note: currently, this module only has an implementation for decoding LERC data, not encoding. The name of\n // the class was chosen to be future proof.\n\n var CntZImage = {};\n\n CntZImage.defaultNoDataValue = -3.4027999387901484e+38; // smallest Float32 value\n\n /**\n * Decode a LERC byte stream and return an object containing the pixel data and some required and optional\n * information about it, such as the image's width and height.\n *\n * @param {ArrayBuffer} input The LERC input byte stream\n * @param {object} [options] Decoding options, containing any of the following properties:\n * @config {number} [inputOffset = 0]\n * Skip the first inputOffset bytes of the input byte stream. A valid LERC file is expected at that position.\n * @config {Uint8Array} [encodedMask = null]\n * If specified, the decoder will not read mask information from the input and use the specified encoded\n * mask data instead. Mask header/data must not be present in the LERC byte stream in this case.\n * @config {number} [noDataValue = LercCode.defaultNoDataValue]\n * Pixel value to use for masked pixels.\n * @config {ArrayBufferView|Array} [pixelType = Float32Array]\n * The desired type of the pixelData array in the return value. Note that it is the caller's responsibility to\n * provide an appropriate noDataValue if the default pixelType is overridden.\n * @config {boolean} [returnMask = false]\n * If true, the return value will contain a maskData property of type Uint8Array which has one element per\n * pixel, the value of which is 1 or 0 depending on whether that pixel's data is present or masked. If the\n * input LERC data does not contain a mask, maskData will not be returned.\n * @config {boolean} [returnEncodedMask = false]\n * If true, the return value will contain a encodedMaskData property, which can be passed into encode() as\n * encodedMask.\n * @config {boolean} [returnFileInfo = false]\n * If true, the return value will have a fileInfo property that contains metadata obtained from the\n * LERC headers and the decoding process.\n * @config {boolean} [computeUsedBitDepths = false]\n * If true, the fileInfo property in the return value will contain the set of all block bit depths\n * encountered during decoding. Will only have an effect if returnFileInfo option is true.\n * @returns {{width, height, pixelData, minValue, maxValue, noDataValue, maskData, encodedMaskData, fileInfo}}\n */\n CntZImage.decode = function(input, options) {\n options = options || {};\n\n var skipMask = options.encodedMaskData || (options.encodedMaskData === null);\n var parsedData = parse(input, options.inputOffset || 0, skipMask);\n\n var noDataValue = (options.noDataValue !== null) ? options.noDataValue : CntZImage.defaultNoDataValue;\n\n var uncompressedData = uncompressPixelValues(parsedData, options.pixelType || Float32Array,\n options.encodedMaskData, noDataValue, options.returnMask);\n\n var result = {\n width: parsedData.width,\n height: parsedData.height,\n pixelData: uncompressedData.resultPixels,\n minValue: uncompressedData.minValue,\n maxValue: parsedData.pixels.maxValue,\n noDataValue: noDataValue\n };\n\n if (uncompressedData.resultMask) {\n result.maskData = uncompressedData.resultMask;\n }\n\n if (options.returnEncodedMask && parsedData.mask) {\n result.encodedMaskData = parsedData.mask.bitset ? parsedData.mask.bitset : null;\n }\n\n if (options.returnFileInfo) {\n result.fileInfo = formatFileInfo(parsedData);\n if (options.computeUsedBitDepths) {\n result.fileInfo.bitDepths = computeUsedBitDepths(parsedData);\n }\n }\n\n return result;\n };\n\n var uncompressPixelValues = function(data, TypedArrayClass, maskBitset, noDataValue, storeDecodedMask) {\n var blockIdx = 0;\n var numX = data.pixels.numBlocksX;\n var numY = data.pixels.numBlocksY;\n var blockWidth = Math.floor(data.width / numX);\n var blockHeight = Math.floor(data.height / numY);\n var scale = 2 * data.maxZError;\n var minValue = Number.MAX_VALUE, currentValue;\n maskBitset = maskBitset || ((data.mask) ? data.mask.bitset : null);\n\n var resultPixels, resultMask;\n resultPixels = new TypedArrayClass(data.width * data.height);\n if (storeDecodedMask && maskBitset) {\n resultMask = new Uint8Array(data.width * data.height);\n }\n var blockDataBuffer = new Float32Array(blockWidth * blockHeight);\n\n var xx, yy;\n for (var y = 0; y <= numY; y++) {\n var thisBlockHeight = (y !== numY) ? blockHeight : (data.height % numY);\n if (thisBlockHeight === 0) {\n continue;\n }\n for (var x = 0; x <= numX; x++) {\n var thisBlockWidth = (x !== numX) ? blockWidth : (data.width % numX);\n if (thisBlockWidth === 0) {\n continue;\n }\n\n var outPtr = y * data.width * blockHeight + x * blockWidth;\n var outStride = data.width - thisBlockWidth;\n\n var block = data.pixels.blocks[blockIdx];\n\n var blockData, blockPtr, constValue;\n if (block.encoding < 2) {\n // block is either uncompressed or bit-stuffed (encodings 0 and 1)\n if (block.encoding === 0) {\n // block is uncompressed\n blockData = block.rawData;\n } else {\n // block is bit-stuffed\n unstuff(block.stuffedData, block.bitsPerPixel, block.numValidPixels, block.offset, scale, blockDataBuffer, data.pixels.maxValue);\n blockData = blockDataBuffer;\n }\n blockPtr = 0;\n }\n else if (block.encoding === 2) {\n // block is all 0\n constValue = 0;\n }\n else {\n // block has constant value (encoding === 3)\n constValue = block.offset;\n }\n\n var maskByte;\n if (maskBitset) {\n for (yy = 0; yy < thisBlockHeight; yy++) {\n if (outPtr & 7) {\n //\n maskByte = maskBitset[outPtr >> 3];\n maskByte <<= outPtr & 7;\n }\n for (xx = 0; xx < thisBlockWidth; xx++) {\n if (!(outPtr & 7)) {\n // read next byte from mask\n maskByte = maskBitset[outPtr >> 3];\n }\n if (maskByte & 128) {\n // pixel data present\n if (resultMask) {\n resultMask[outPtr] = 1;\n }\n currentValue = (block.encoding < 2) ? blockData[blockPtr++] : constValue;\n minValue = minValue > currentValue ? currentValue : minValue;\n resultPixels[outPtr++] = currentValue;\n } else {\n // pixel data not present\n if (resultMask) {\n resultMask[outPtr] = 0;\n }\n resultPixels[outPtr++] = noDataValue;\n }\n maskByte <<= 1;\n }\n outPtr += outStride;\n }\n } else {\n // mask not present, simply copy block over\n if (block.encoding < 2) {\n // duplicating this code block for performance reasons\n // blockData case:\n for (yy = 0; yy < thisBlockHeight; yy++) {\n for (xx = 0; xx < thisBlockWidth; xx++) {\n currentValue = blockData[blockPtr++];\n minValue = minValue > currentValue ? currentValue : minValue;\n resultPixels[outPtr++] = currentValue;\n }\n outPtr += outStride;\n }\n }\n else {\n // constValue case:\n minValue = minValue > constValue ? constValue : minValue;\n for (yy = 0; yy < thisBlockHeight; yy++) {\n for (xx = 0; xx < thisBlockWidth; xx++) {\n resultPixels[outPtr++] = constValue;\n }\n outPtr += outStride;\n }\n }\n }\n if ((block.encoding === 1) && (blockPtr !== block.numValidPixels)) {\n throw \"Block and Mask do not match\";\n }\n blockIdx++;\n }\n }\n\n return {\n resultPixels: resultPixels,\n resultMask: resultMask,\n minValue: minValue\n };\n };\n\n var formatFileInfo = function(data) {\n return {\n \"fileIdentifierString\": data.fileIdentifierString,\n \"fileVersion\": data.fileVersion,\n \"imageType\": data.imageType,\n \"height\": data.height,\n \"width\": data.width,\n \"maxZError\": data.maxZError,\n \"eofOffset\": data.eofOffset,\n \"mask\": data.mask ? {\n \"numBlocksX\": data.mask.numBlocksX,\n \"numBlocksY\": data.mask.numBlocksY,\n \"numBytes\": data.mask.numBytes,\n \"maxValue\": data.mask.maxValue\n } : null,\n \"pixels\": {\n \"numBlocksX\": data.pixels.numBlocksX,\n \"numBlocksY\": data.pixels.numBlocksY,\n \"numBytes\": data.pixels.numBytes,\n \"maxValue\": data.pixels.maxValue,\n \"noDataValue\": data.noDataValue\n }\n };\n };\n\n var computeUsedBitDepths = function(data) {\n var numBlocks = data.pixels.numBlocksX * data.pixels.numBlocksY;\n var bitDepths = {};\n for (var i = 0; i < numBlocks; i++) {\n var block = data.pixels.blocks[i];\n if (block.encoding === 0) {\n bitDepths.float32 = true;\n } else if (block.encoding === 1) {\n bitDepths[block.bitsPerPixel] = true;\n } else {\n bitDepths[0] = true;\n }\n }\n\n return Object.keys(bitDepths);\n };\n\n var parse = function(input, fp, skipMask) {\n var data = {};\n\n // File header\n var fileIdView = new Uint8Array(input, fp, 10);\n data.fileIdentifierString = String.fromCharCode.apply(null, fileIdView);\n if (data.fileIdentifierString.trim() !== \"CntZImage\") {\n throw \"Unexpected file identifier string: \" + data.fileIdentifierString;\n }\n fp += 10;\n var view = new DataView(input, fp, 24);\n data.fileVersion = view.getInt32(0, true);\n data.imageType = view.getInt32(4, true);\n data.height = view.getUint32(8, true);\n data.width = view.getUint32(12, true);\n data.maxZError = view.getFloat64(16, true);\n fp += 24;\n\n // Mask Header\n if (!skipMask) {\n view = new DataView(input, fp, 16);\n data.mask = {};\n data.mask.numBlocksY = view.getUint32(0, true);\n data.mask.numBlocksX = view.getUint32(4, true);\n data.mask.numBytes = view.getUint32(8, true);\n data.mask.maxValue = view.getFloat32(12, true);\n fp += 16;\n\n // Mask Data\n if (data.mask.numBytes > 0) {\n var bitset = new Uint8Array(Math.ceil(data.width * data.height / 8));\n view = new DataView(input, fp, data.mask.numBytes);\n var cnt = view.getInt16(0, true);\n var ip = 2, op = 0;\n do {\n if (cnt > 0) {\n while (cnt--) { bitset[op++] = view.getUint8(ip++); }\n } else {\n var val = view.getUint8(ip++);\n cnt = -cnt;\n while (cnt--) { bitset[op++] = val; }\n }\n cnt = view.getInt16(ip, true);\n ip += 2;\n } while (ip < data.mask.numBytes);\n if ((cnt !== -32768) || (op < bitset.length)) {\n throw \"Unexpected end of mask RLE encoding\";\n }\n data.mask.bitset = bitset;\n fp += data.mask.numBytes;\n }\n else if ((data.mask.numBytes | data.mask.numBlocksY | data.mask.maxValue) === 0) { // Special case, all nodata\n data.mask.bitset = new Uint8Array(Math.ceil(data.width * data.height / 8));\n }\n }\n\n // Pixel Header\n view = new DataView(input, fp, 16);\n data.pixels = {};\n data.pixels.numBlocksY = view.getUint32(0, true);\n data.pixels.numBlocksX = view.getUint32(4, true);\n data.pixels.numBytes = view.getUint32(8, true);\n data.pixels.maxValue = view.getFloat32(12, true);\n fp += 16;\n\n var numBlocksX = data.pixels.numBlocksX;\n var numBlocksY = data.pixels.numBlocksY;\n // the number of blocks specified in the header does not take into account the blocks at the end of\n // each row/column with a special width/height that make the image complete in case the width is not\n // evenly divisible by the number of blocks.\n var actualNumBlocksX = numBlocksX + ((data.width % numBlocksX) > 0 ? 1 : 0);\n var actualNumBlocksY = numBlocksY + ((data.height % numBlocksY) > 0 ? 1 : 0);\n data.pixels.blocks = new Array(actualNumBlocksX * actualNumBlocksY);\n var blockI = 0;\n for (var blockY = 0; blockY < actualNumBlocksY; blockY++) {\n for (var blockX = 0; blockX < actualNumBlocksX; blockX++) {\n\n // Block\n var size = 0;\n var bytesLeft = input.byteLength - fp;\n view = new DataView(input, fp, Math.min(10, bytesLeft));\n var block = {};\n data.pixels.blocks[blockI++] = block;\n var headerByte = view.getUint8(0); size++;\n block.encoding = headerByte & 63;\n if (block.encoding > 3) {\n throw \"Invalid block encoding (\" + block.encoding + \")\";\n }\n if (block.encoding === 2) {\n fp++;\n continue;\n }\n if ((headerByte !== 0) && (headerByte !== 2)) {\n headerByte >>= 6;\n block.offsetType = headerByte;\n if (headerByte === 2) {\n block.offset = view.getInt8(1); size++;\n } else if (headerByte === 1) {\n block.offset = view.getInt16(1, true); size += 2;\n } else if (headerByte === 0) {\n block.offset = view.getFloat32(1, true); size += 4;\n } else {\n throw \"Invalid block offset type\";\n }\n\n if (block.encoding === 1) {\n headerByte = view.getUint8(size); size++;\n block.bitsPerPixel = headerByte & 63;\n headerByte >>= 6;\n block.numValidPixelsType = headerByte;\n if (headerByte === 2) {\n block.numValidPixels = view.getUint8(size); size++;\n } else if (headerByte === 1) {\n block.numValidPixels = view.getUint16(size, true); size += 2;\n } else if (headerByte === 0) {\n block.numValidPixels = view.getUint32(size, true); size += 4;\n } else {\n throw \"Invalid valid pixel count type\";\n }\n }\n }\n fp += size;\n\n if (block.encoding === 3) {\n continue;\n }\n\n var arrayBuf, store8;\n if (block.encoding === 0) {\n var numPixels = (data.pixels.numBytes - 1) / 4;\n if (numPixels !== Math.floor(numPixels)) {\n throw \"uncompressed block has invalid length\";\n }\n arrayBuf = new ArrayBuffer(numPixels * 4);\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, fp, numPixels * 4));\n var rawData = new Float32Array(arrayBuf);\n block.rawData = rawData;\n fp += numPixels * 4;\n } else if (block.encoding === 1) {\n var dataBytes = Math.ceil(block.numValidPixels * block.bitsPerPixel / 8);\n var dataWords = Math.ceil(dataBytes / 4);\n arrayBuf = new ArrayBuffer(dataWords * 4);\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, fp, dataBytes));\n block.stuffedData = new Uint32Array(arrayBuf);\n fp += dataBytes;\n }\n }\n }\n data.eofOffset = fp;\n return data;\n };\n\n var unstuff = function(src, bitsPerPixel, numPixels, offset, scale, dest, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0;\n var n, buffer;\n var nmax = Math.ceil((maxValue - offset) / scale);\n // get rid of trailing bytes that are already part of next block\n var numInvalidTailBytes = src.length * 4 - Math.ceil(bitsPerPixel * numPixels / 8);\n src[src.length - 1] <<= 8 * numInvalidTailBytes;\n\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n } else {\n var missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n //pixel values may exceed max due to quantization\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n return dest;\n };\n\n return CntZImage;\n })();\n\n //version 2. Supports 2.1, 2.2, 2.3\n var Lerc2Decode = (function() {\n \"use strict\";\n // Note: currently, this module only has an implementation for decoding LERC data, not encoding. The name of\n // the class was chosen to be future proof, following LercDecode.\n\n /*****************************************\n * private static class bitsutffer used by Lerc2Decode\n *******************************************/\n var BitStuffer = {\n //methods ending with 2 are for the new byte order used by Lerc2.3 and above.\n //originalUnstuff is used to unpack Huffman code table. code is duplicated to unstuffx for performance reasons.\n unstuff: function(src, dest, bitsPerPixel, numPixels, lutArr, offset, scale, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0;\n var n, buffer, missingBits, nmax;\n\n // get rid of trailing bytes that are already part of next block\n var numInvalidTailBytes = src.length * 4 - Math.ceil(bitsPerPixel * numPixels / 8);\n src[src.length - 1] <<= 8 * numInvalidTailBytes;\n if (lutArr) {\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n }\n else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n dest[o] = lutArr[n];//offset + lutArr[n] * scale;\n }\n }\n else {\n nmax = Math.ceil((maxValue - offset) / scale);\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n }\n else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n //pixel values may exceed max due to quantization\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n }\n },\n\n unstuffLUT: function(src, bitsPerPixel, numPixels, offset, scale, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o = 0, missingBits = 0, bitsLeft = 0, n = 0;\n var buffer;\n var dest = [];\n\n // get rid of trailing bytes that are already part of next block\n var numInvalidTailBytes = src.length * 4 - Math.ceil(bitsPerPixel * numPixels / 8);\n src[src.length - 1] <<= 8 * numInvalidTailBytes;\n\n var nmax = Math.ceil((maxValue - offset) / scale);\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n //dest.push(n);\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n dest.unshift(offset);//1st one\n return dest;\n },\n\n unstuff2: function(src, dest, bitsPerPixel, numPixels, lutArr, offset, scale, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0, bitPos = 0;\n var n, buffer, missingBits;\n if (lutArr) {\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n bitPos = 0;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = ((buffer >>> bitPos) & bitMask);\n bitsLeft -= bitsPerPixel;\n bitPos += bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = (buffer >>> bitPos) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n |= (buffer & ((1 << missingBits) - 1)) << (bitsPerPixel - missingBits);\n bitPos = missingBits;\n }\n dest[o] = lutArr[n];\n }\n }\n else {\n var nmax = Math.ceil((maxValue - offset) / scale);\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n bitPos = 0;\n }\n if (bitsLeft >= bitsPerPixel) {\n //no unsigned left shift\n n = ((buffer >>> bitPos) & bitMask);\n bitsLeft -= bitsPerPixel;\n bitPos += bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = (buffer >>> bitPos) & bitMask;//((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n |= (buffer & ((1 << missingBits) - 1)) << (bitsPerPixel - missingBits);\n bitPos = missingBits;\n }\n //pixel values may exceed max due to quantization\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n }\n return dest;\n },\n\n unstuffLUT2: function(src, bitsPerPixel, numPixels, offset, scale, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o = 0, missingBits = 0, bitsLeft = 0, n = 0, bitPos = 0;\n var buffer;\n var dest = [];\n var nmax = Math.ceil((maxValue - offset) / scale);\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n bitPos = 0;\n }\n if (bitsLeft >= bitsPerPixel) {\n //no unsigned left shift\n n = ((buffer >>> bitPos) & bitMask);\n bitsLeft -= bitsPerPixel;\n bitPos += bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = (buffer >>> bitPos) & bitMask;//((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n |= (buffer & ((1 << missingBits) - 1)) << (bitsPerPixel - missingBits);\n bitPos = missingBits;\n }\n //dest.push(n);\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n dest.unshift(offset);\n return dest;\n },\n\n originalUnstuff: function(src, dest, bitsPerPixel, numPixels) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0;\n var n, buffer, missingBits;\n\n // get rid of trailing bytes that are already part of next block\n var numInvalidTailBytes = src.length * 4 - Math.ceil(bitsPerPixel * numPixels / 8);\n src[src.length - 1] <<= 8 * numInvalidTailBytes;\n\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n }\n else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n dest[o] = n;\n }\n return dest;\n },\n\n originalUnstuff2: function(src, dest, bitsPerPixel, numPixels) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0, bitPos = 0;\n var n, buffer, missingBits;\n //micro-optimizations\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n bitPos = 0;\n }\n if (bitsLeft >= bitsPerPixel) {\n //no unsigned left shift\n n = ((buffer >>> bitPos) & bitMask);\n bitsLeft -= bitsPerPixel;\n bitPos += bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = (buffer >>> bitPos) & bitMask;//((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n |= (buffer & ((1 << missingBits) - 1)) << (bitsPerPixel - missingBits);\n bitPos = missingBits;\n }\n dest[o] = n;\n }\n return dest;\n }\n };\n\n /*****************************************\n *private static class used by Lerc2Decode\n ******************************************/\n var Lerc2Helpers = {\n HUFFMAN_LUT_BITS_MAX: 12, //use 2^12 lut, treat it like constant\n computeChecksumFletcher32: function(input) {\n\n var sum1 = 0xffff, sum2 = 0xffff;\n var len = input.length;\n var words = Math.floor(len / 2);\n var i = 0;\n while (words) {\n var tlen = (words >= 359) ? 359 : words;\n words -= tlen;\n do {\n sum1 += (input[i++] << 8);\n sum2 += sum1 += input[i++];\n } while (--tlen);\n\n sum1 = (sum1 & 0xffff) + (sum1 >>> 16);\n sum2 = (sum2 & 0xffff) + (sum2 >>> 16);\n }\n\n // add the straggler byte if it exists\n if (len & 1) {\n sum2 += sum1 += (input[i] << 8);\n }\n // second reduction step to reduce sums to 16 bits\n sum1 = (sum1 & 0xffff) + (sum1 >>> 16);\n sum2 = (sum2 & 0xffff) + (sum2 >>> 16);\n\n return (sum2 << 16 | sum1) >>> 0;\n },\n\n readHeaderInfo: function(input, data) {\n var ptr = data.ptr;\n var fileIdView = new Uint8Array(input, ptr, 6);\n var headerInfo = {};\n headerInfo.fileIdentifierString = String.fromCharCode.apply(null, fileIdView);\n if (headerInfo.fileIdentifierString.lastIndexOf(\"Lerc2\", 0) !== 0) {\n throw \"Unexpected file identifier string (expect Lerc2 ): \" + headerInfo.fileIdentifierString;\n }\n ptr += 6;\n var view = new DataView(input, ptr, 8);\n var fileVersion = view.getInt32(0, true);\n headerInfo.fileVersion = fileVersion;\n ptr += 4;\n if (fileVersion >= 3) {\n headerInfo.checksum = view.getUint32(4, true); //nrows\n ptr += 4;\n }\n\n //keys start from here\n view = new DataView(input, ptr, 12);\n headerInfo.height = view.getUint32(0, true); //nrows\n headerInfo.width = view.getUint32(4, true); //ncols\n ptr += 8;\n if (fileVersion >= 4) {\n headerInfo.numDims = view.getUint32(8, true);\n ptr += 4;\n }\n else {\n headerInfo.numDims = 1;\n }\n\n view = new DataView(input, ptr, 40);\n headerInfo.numValidPixel = view.getUint32(0, true);\n headerInfo.microBlockSize = view.getInt32(4, true);\n headerInfo.blobSize = view.getInt32(8, true);\n headerInfo.imageType = view.getInt32(12, true);\n\n headerInfo.maxZError = view.getFloat64(16, true);\n headerInfo.zMin = view.getFloat64(24, true);\n headerInfo.zMax = view.getFloat64(32, true);\n ptr += 40;\n data.headerInfo = headerInfo;\n data.ptr = ptr;\n\n var checksum, keyLength;\n if (fileVersion >= 3) {\n keyLength = fileVersion >= 4 ? 52 : 48;\n checksum = this.computeChecksumFletcher32(new Uint8Array(input, ptr - keyLength, headerInfo.blobSize - 14));\n if (checksum !== headerInfo.checksum) {\n throw \"Checksum failed.\";\n }\n }\n return true;\n },\n\n checkMinMaxRanges: function(input, data) {\n var headerInfo = data.headerInfo;\n var OutPixelTypeArray = this.getDataTypeArray(headerInfo.imageType);\n var rangeBytes = headerInfo.numDims * this.getDataTypeSize(headerInfo.imageType);\n var minValues = this.readSubArray(input, data.ptr, OutPixelTypeArray, rangeBytes);\n var maxValues = this.readSubArray(input, data.ptr + rangeBytes, OutPixelTypeArray, rangeBytes);\n data.ptr += (2 * rangeBytes);\n var i, equal = true;\n for (i = 0; i < headerInfo.numDims; i++) {\n if (minValues[i] !== maxValues[i]) {\n equal = false;\n break;\n }\n }\n headerInfo.minValues = minValues;\n headerInfo.maxValues = maxValues;\n return equal;\n },\n\n readSubArray: function(input, ptr, OutPixelTypeArray, numBytes) {\n var rawData;\n if (OutPixelTypeArray === Uint8Array) {\n rawData = new Uint8Array(input, ptr, numBytes);\n }\n else {\n var arrayBuf = new ArrayBuffer(numBytes);\n var store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, ptr, numBytes));\n rawData = new OutPixelTypeArray(arrayBuf);\n }\n return rawData;\n },\n\n readMask: function(input, data) {\n var ptr = data.ptr;\n var headerInfo = data.headerInfo;\n var numPixels = headerInfo.width * headerInfo.height;\n var numValidPixel = headerInfo.numValidPixel;\n\n var view = new DataView(input, ptr, 4);\n var mask = {};\n mask.numBytes = view.getUint32(0, true);\n ptr += 4;\n\n // Mask Data\n if ((0 === numValidPixel || numPixels === numValidPixel) && 0 !== mask.numBytes) {\n throw (\"invalid mask\");\n }\n var bitset, resultMask;\n if (numValidPixel === 0) {\n bitset = new Uint8Array(Math.ceil(numPixels / 8));\n mask.bitset = bitset;\n resultMask = new Uint8Array(numPixels);\n data.pixels.resultMask = resultMask;\n ptr += mask.numBytes;\n }// ????? else if (data.mask.numBytes > 0 && data.mask.numBytes< data.numValidPixel) {\n else if (mask.numBytes > 0) {\n bitset = new Uint8Array(Math.ceil(numPixels / 8));\n view = new DataView(input, ptr, mask.numBytes);\n var cnt = view.getInt16(0, true);\n var ip = 2, op = 0, val = 0;\n do {\n if (cnt > 0) {\n while (cnt--) { bitset[op++] = view.getUint8(ip++); }\n } else {\n val = view.getUint8(ip++);\n cnt = -cnt;\n while (cnt--) { bitset[op++] = val; }\n }\n cnt = view.getInt16(ip, true);\n ip += 2;\n } while (ip < mask.numBytes);\n if ((cnt !== -32768) || (op < bitset.length)) {\n throw \"Unexpected end of mask RLE encoding\";\n }\n\n resultMask = new Uint8Array(numPixels);\n var mb = 0, k = 0;\n\n for (k = 0; k < numPixels; k++) {\n if (k & 7) {\n mb = bitset[k >> 3];\n mb <<= k & 7;\n }\n else {\n mb = bitset[k >> 3];\n }\n if (mb & 128) {\n resultMask[k] = 1;\n }\n }\n data.pixels.resultMask = resultMask;\n\n mask.bitset = bitset;\n ptr += mask.numBytes;\n }\n data.ptr = ptr;\n data.mask = mask;\n return true;\n },\n\n readDataOneSweep: function(input, data, OutPixelTypeArray, useBSQForOutputDim) {\n var ptr = data.ptr;\n var headerInfo = data.headerInfo;\n var numDims = headerInfo.numDims;\n var numPixels = headerInfo.width * headerInfo.height;\n var imageType = headerInfo.imageType;\n var numBytes = headerInfo.numValidPixel * Lerc2Helpers.getDataTypeSize(imageType) * numDims;\n //data.pixels.numBytes = numBytes;\n var rawData;\n var mask = data.pixels.resultMask;\n if (OutPixelTypeArray === Uint8Array) {\n rawData = new Uint8Array(input, ptr, numBytes);\n }\n else {\n var arrayBuf = new ArrayBuffer(numBytes);\n var store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, ptr, numBytes));\n rawData = new OutPixelTypeArray(arrayBuf);\n }\n if (rawData.length === numPixels * numDims) {\n if (useBSQForOutputDim) {\n data.pixels.resultPixels = Lerc2Helpers.swapDimensionOrder(rawData, numPixels, numDims, OutPixelTypeArray, true);\n }\n else {\n data.pixels.resultPixels = rawData;\n }\n }\n else //mask\n {\n data.pixels.resultPixels = new OutPixelTypeArray(numPixels * numDims);\n var z = 0, k = 0, i = 0, nStart = 0;\n if (numDims > 1) {\n if (useBSQForOutputDim) {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n nStart = k;\n for (i = 0; i < numDims; i++, nStart+=numPixels) {\n data.pixels.resultPixels[nStart] = rawData[z++];\n }\n }\n }\n }\n else {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n nStart = k * numDims;\n for (i = 0; i < numDims; i++) {\n data.pixels.resultPixels[nStart + i] = rawData[z++];\n }\n }\n }\n }\n }\n else {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n data.pixels.resultPixels[k] = rawData[z++];\n }\n }\n }\n }\n ptr += numBytes;\n data.ptr = ptr; //return data;\n return true;\n },\n\n readHuffmanTree: function(input, data) {\n var BITS_MAX = this.HUFFMAN_LUT_BITS_MAX; //8 is slow for the large test image\n //var size_max = 1 << BITS_MAX;\n /* ************************\n * reading code table\n *************************/\n var view = new DataView(input, data.ptr, 16);\n data.ptr += 16;\n var version = view.getInt32(0, true);\n if (version < 2) {\n throw \"unsupported Huffman version\";\n }\n var size = view.getInt32(4, true);\n var i0 = view.getInt32(8, true);\n var i1 = view.getInt32(12, true);\n if (i0 >= i1) {\n return false;\n }\n var blockDataBuffer = new Uint32Array(i1 - i0);\n Lerc2Helpers.decodeBits(input, data, blockDataBuffer);\n var codeTable = []; //size\n var i, j, k, len;\n\n for (i = i0; i < i1; i++) {\n j = i - (i < size ? 0 : size);//wrap around\n codeTable[j] = { first: blockDataBuffer[i - i0], second: null };\n }\n\n var dataBytes = input.byteLength - data.ptr;\n var dataWords = Math.ceil(dataBytes / 4);\n var arrayBuf = new ArrayBuffer(dataWords * 4);\n var store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, data.ptr, dataBytes));\n var stuffedData = new Uint32Array(arrayBuf); //must start from x*4\n var bitPos = 0, word, srcPtr = 0;\n word = stuffedData[0];\n for (i = i0; i < i1; i++) {\n j = i - (i < size ? 0 : size);//wrap around\n len = codeTable[j].first;\n if (len > 0) {\n codeTable[j].second = (word << bitPos) >>> (32 - len);\n\n if (32 - bitPos >= len) {\n bitPos += len;\n if (bitPos === 32) {\n bitPos = 0;\n srcPtr++;\n word = stuffedData[srcPtr];\n }\n }\n else {\n bitPos += len - 32;\n srcPtr++;\n word = stuffedData[srcPtr];\n codeTable[j].second |= word >>> (32 - bitPos);\n }\n }\n }\n\n //finished reading code table\n\n /* ************************\n * building lut\n *************************/\n var numBitsLUT = 0, numBitsLUTQick = 0;\n var tree = new TreeNode();\n for (i = 0; i < codeTable.length; i++) {\n if (codeTable[i] !== undefined) {\n numBitsLUT = Math.max(numBitsLUT, codeTable[i].first);\n }\n }\n if (numBitsLUT >= BITS_MAX) {\n numBitsLUTQick = BITS_MAX;\n }\n else {\n numBitsLUTQick = numBitsLUT;\n }\n // for debugging purpose\n // if (numBitsLUT >= 30) {\n // console.log(\"WARning, large NUM LUT BITS IS \" + numBitsLUT);\n // }\n var decodeLut = [], entry, code, numEntries, jj, currentBit, node;\n for (i = i0; i < i1; i++) {\n j = i - (i < size ? 0 : size);//wrap around\n len = codeTable[j].first;\n if (len > 0) {\n entry = [len, j];\n if (len <= numBitsLUTQick) {\n code = codeTable[j].second << (numBitsLUTQick - len);\n numEntries = 1 << (numBitsLUTQick - len);\n for (k = 0; k < numEntries; k++) {\n decodeLut[code | k] = entry;\n }\n }\n else {\n //build tree\n code = codeTable[j].second;\n node = tree;\n for (jj = len - 1; jj >= 0; jj--) {\n currentBit = code >>> jj & 1; //no left shift as length could be 30,31\n if (currentBit) {\n if (!node.right) {\n node.right = new TreeNode();\n }\n node = node.right;\n }\n else {\n if (!node.left) {\n node.left = new TreeNode();\n }\n node = node.left;\n }\n if (jj === 0 && !node.val) {\n node.val = entry[1];\n }\n }\n }\n }\n }\n return {\n decodeLut: decodeLut,\n numBitsLUTQick: numBitsLUTQick,\n numBitsLUT: numBitsLUT,\n tree: tree,\n stuffedData: stuffedData,\n srcPtr: srcPtr,\n bitPos: bitPos\n };\n },\n\n readHuffman: function(input, data, OutPixelTypeArray, useBSQForOutputDim) {\n var headerInfo = data.headerInfo;\n var numDims = headerInfo.numDims;\n var height = data.headerInfo.height;\n var width = data.headerInfo.width;\n var numPixels = width * height;\n //var size_max = 1 << BITS_MAX;\n /* ************************\n * reading huffman structure info\n *************************/\n var huffmanInfo = this.readHuffmanTree(input, data);\n var decodeLut = huffmanInfo.decodeLut;\n var tree = huffmanInfo.tree;\n //stuffedData includes huffman headers\n var stuffedData = huffmanInfo.stuffedData;\n var srcPtr = huffmanInfo.srcPtr;\n var bitPos = huffmanInfo.bitPos;\n var numBitsLUTQick = huffmanInfo.numBitsLUTQick;\n var numBitsLUT = huffmanInfo.numBitsLUT;\n var offset = data.headerInfo.imageType === 0 ? 128 : 0;\n /*************************\n * decode\n ***************************/\n var node, val, delta, mask = data.pixels.resultMask, valTmp, valTmpQuick, currentBit;\n var i, j, k, ii;\n var prevVal = 0;\n if (bitPos > 0) {\n srcPtr++;\n bitPos = 0;\n }\n var word = stuffedData[srcPtr];\n var deltaEncode = data.encodeMode === 1;\n var resultPixelsAllDim = new OutPixelTypeArray(numPixels * numDims);\n var resultPixels = resultPixelsAllDim;\n var iDim;\n // TODO: reevaluate the need to keep inlined decoding code as IE support is phasing out\n if (numDims < 2 || deltaEncode) {\n for (iDim = 0; iDim < numDims; iDim++) {\n if (numDims > 1) {\n //get the mem block of current dimension\n resultPixels = new OutPixelTypeArray(resultPixelsAllDim.buffer, numPixels * iDim, numPixels);\n prevVal = 0;\n }\n if (data.headerInfo.numValidPixel === width * height) { //all valid\n for (k = 0, i = 0; i < height; i++) {\n for (j = 0; j < width; j++, k++) {\n val = 0;\n valTmp = (word << bitPos) >>> (32 - numBitsLUTQick);\n valTmpQuick = valTmp;// >>> deltaBits;\n if (32 - bitPos < numBitsLUTQick) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUTQick));\n valTmpQuick = valTmp;// >>> deltaBits;\n }\n if (decodeLut[valTmpQuick]) // if there, move the correct number of bits and done\n {\n val = decodeLut[valTmpQuick][1];\n bitPos += decodeLut[valTmpQuick][0];\n }\n else {\n valTmp = (word << bitPos) >>> (32 - numBitsLUT);\n valTmpQuick = valTmp;// >>> deltaBits;\n if (32 - bitPos < numBitsLUT) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUT));\n valTmpQuick = valTmp;// >>> deltaBits;\n }\n node = tree;\n for (ii = 0; ii < numBitsLUT; ii++) {\n currentBit = valTmp >>> (numBitsLUT - ii - 1) & 1;\n node = currentBit ? node.right : node.left;\n if (!(node.left || node.right)) {\n val = node.val;\n bitPos = bitPos + ii + 1;\n break;\n }\n }\n }\n \n if (bitPos >= 32) {\n bitPos -= 32;\n srcPtr++;\n word = stuffedData[srcPtr];\n }\n \n delta = val - offset;\n if (deltaEncode) {\n if (j > 0) {\n delta += prevVal; // use overflow\n }\n else if (i > 0) {\n delta += resultPixels[k - width];\n }\n else {\n delta += prevVal;\n }\n delta &= 0xFF; //overflow\n resultPixels[k] = delta;//overflow\n prevVal = delta;\n }\n else {\n resultPixels[k] = delta;\n }\n }\n }\n }\n else { //not all valid, use mask\n for (k = 0, i = 0; i < height; i++) {\n for (j = 0; j < width; j++, k++) {\n if (mask[k]) {\n val = 0;\n valTmp = (word << bitPos) >>> (32 - numBitsLUTQick);\n valTmpQuick = valTmp;// >>> deltaBits;\n if (32 - bitPos < numBitsLUTQick) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUTQick));\n valTmpQuick = valTmp;// >>> deltaBits;\n }\n if (decodeLut[valTmpQuick]) // if there, move the correct number of bits and done\n {\n val = decodeLut[valTmpQuick][1];\n bitPos += decodeLut[valTmpQuick][0];\n }\n else {\n valTmp = (word << bitPos) >>> (32 - numBitsLUT);\n valTmpQuick = valTmp;// >>> deltaBits;\n if (32 - bitPos < numBitsLUT) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUT));\n valTmpQuick = valTmp;// >>> deltaBits;\n }\n node = tree;\n for (ii = 0; ii < numBitsLUT; ii++) {\n currentBit = valTmp >>> (numBitsLUT - ii - 1) & 1;\n node = currentBit ? node.right : node.left;\n if (!(node.left || node.right)) {\n val = node.val;\n bitPos = bitPos + ii + 1;\n break;\n }\n }\n }\n \n if (bitPos >= 32) {\n bitPos -= 32;\n srcPtr++;\n word = stuffedData[srcPtr];\n }\n \n delta = val - offset;\n if (deltaEncode) {\n if (j > 0 && mask[k - 1]) {\n delta += prevVal; // use overflow\n }\n else if (i > 0 && mask[k - width]) {\n delta += resultPixels[k - width];\n }\n else {\n delta += prevVal;\n }\n \n delta &= 0xFF; //overflow\n resultPixels[k] = delta;//overflow\n prevVal = delta;\n }\n else {\n resultPixels[k] = delta;\n }\n }\n }\n }\n }\n }\n }\n else {\n for (k = 0, i = 0; i < height; i++) {\n for (j = 0; j < width; j++) {\n k = i * width + j;\n if (!mask || mask[k]) {\n for (iDim = 0; iDim < numDims; iDim++, k+=numPixels) {\n val = 0;\n valTmp = (word << bitPos) >>> (32 - numBitsLUTQick);\n valTmpQuick = valTmp;\n if (32 - bitPos < numBitsLUTQick) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUTQick));\n valTmpQuick = valTmp;\n }\n if (decodeLut[valTmpQuick])\n {\n val = decodeLut[valTmpQuick][1];\n bitPos += decodeLut[valTmpQuick][0];\n }\n else {\n valTmp = (word << bitPos) >>> (32 - numBitsLUT);\n valTmpQuick = valTmp;\n if (32 - bitPos < numBitsLUT) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUT));\n valTmpQuick = valTmp;\n }\n node = tree;\n for (ii = 0; ii < numBitsLUT; ii++) {\n currentBit = valTmp >>> (numBitsLUT - ii - 1) & 1;\n node = currentBit ? node.right : node.left;\n if (!(node.left || node.right)) {\n val = node.val;\n bitPos = bitPos + ii + 1;\n break;\n }\n }\n }\n\n if (bitPos >= 32) {\n bitPos -= 32;\n srcPtr++;\n word = stuffedData[srcPtr];\n }\n\n delta = val - offset;\n resultPixels[k] = delta;\n }\n }\n }\n }\n }\n data.ptr = data.ptr + (srcPtr + 1) * 4 + (bitPos > 0 ? 4 : 0);\n data.pixels.resultPixels = resultPixelsAllDim;\n //swap for BIP layout\n if (numDims > 1 && !useBSQForOutputDim) {\n data.pixels.resultPixels = Lerc2Helpers.swapDimensionOrder(resultPixelsAllDim, numPixels, numDims, OutPixelTypeArray);\n }\n },\n\n decodeBits: function(input, data, blockDataBuffer, offset, iDim) {\n {\n //bitstuff encoding is 3\n var headerInfo = data.headerInfo;\n var fileVersion = headerInfo.fileVersion;\n //var block = {};\n var blockPtr = 0;\n var viewByteLength = ((input.byteLength - data.ptr) >= 5) ? 5 : (input.byteLength - data.ptr);\n var view = new DataView(input, data.ptr, viewByteLength);\n var headerByte = view.getUint8(0);\n blockPtr++;\n var bits67 = headerByte >> 6;\n var n = (bits67 === 0) ? 4 : 3 - bits67;\n var doLut = (headerByte & 32) > 0 ? true : false;//5th bit\n var numBits = headerByte & 31;\n var numElements = 0;\n if (n === 1) {\n numElements = view.getUint8(blockPtr); blockPtr++;\n } else if (n === 2) {\n numElements = view.getUint16(blockPtr, true); blockPtr += 2;\n } else if (n === 4) {\n numElements = view.getUint32(blockPtr, true); blockPtr += 4;\n } else {\n throw \"Invalid valid pixel count type\";\n }\n //fix: huffman codes are bit stuffed, but not bound by data's max value, so need to use originalUnstuff\n //offset = offset || 0;\n var scale = 2 * headerInfo.maxZError;\n var stuffedData, arrayBuf, store8, dataBytes, dataWords;\n var lutArr, lutData, lutBytes, lutBitsPerElement, bitsPerPixel;\n var zMax = headerInfo.numDims > 1 ? headerInfo.maxValues[iDim] : headerInfo.zMax;\n if (doLut) {\n data.counter.lut++;\n lutBytes = view.getUint8(blockPtr);\n lutBitsPerElement = numBits;\n blockPtr++;\n dataBytes = Math.ceil((lutBytes - 1) * numBits / 8);\n dataWords = Math.ceil(dataBytes / 4);\n arrayBuf = new ArrayBuffer(dataWords * 4);\n store8 = new Uint8Array(arrayBuf);\n\n data.ptr += blockPtr;\n store8.set(new Uint8Array(input, data.ptr, dataBytes));\n\n lutData = new Uint32Array(arrayBuf);\n data.ptr += dataBytes;\n\n bitsPerPixel = 0;\n while ((lutBytes - 1) >>> bitsPerPixel) {\n bitsPerPixel++;\n }\n dataBytes = Math.ceil(numElements * bitsPerPixel / 8);\n dataWords = Math.ceil(dataBytes / 4);\n arrayBuf = new ArrayBuffer(dataWords * 4);\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, data.ptr, dataBytes));\n stuffedData = new Uint32Array(arrayBuf);\n data.ptr += dataBytes;\n if (fileVersion >= 3) {\n lutArr = BitStuffer.unstuffLUT2(lutData, numBits, lutBytes - 1, offset, scale, zMax);\n }\n else {\n lutArr = BitStuffer.unstuffLUT(lutData, numBits, lutBytes - 1, offset, scale, zMax);\n }\n //lutArr.unshift(0);\n if (fileVersion >= 3) {\n //BitStuffer.unstuff2(block, blockDataBuffer, headerInfo.zMax);\n BitStuffer.unstuff2(stuffedData, blockDataBuffer, bitsPerPixel, numElements, lutArr);\n }\n else {\n BitStuffer.unstuff(stuffedData, blockDataBuffer, bitsPerPixel, numElements, lutArr);\n }\n }\n else {\n //console.debug(\"bitstuffer\");\n data.counter.bitstuffer++;\n bitsPerPixel = numBits;\n data.ptr += blockPtr;\n if (bitsPerPixel > 0) {\n dataBytes = Math.ceil(numElements * bitsPerPixel / 8);\n dataWords = Math.ceil(dataBytes / 4);\n arrayBuf = new ArrayBuffer(dataWords * 4);\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, data.ptr, dataBytes));\n stuffedData = new Uint32Array(arrayBuf);\n data.ptr += dataBytes;\n if (fileVersion >= 3) {\n if (offset == null) {\n BitStuffer.originalUnstuff2(stuffedData, blockDataBuffer, bitsPerPixel, numElements);\n }\n else {\n BitStuffer.unstuff2(stuffedData, blockDataBuffer, bitsPerPixel, numElements, false, offset, scale, zMax);\n }\n }\n else {\n if (offset == null) {\n BitStuffer.originalUnstuff(stuffedData, blockDataBuffer, bitsPerPixel, numElements);\n }\n else {\n BitStuffer.unstuff(stuffedData, blockDataBuffer, bitsPerPixel, numElements, false, offset, scale, zMax);\n }\n }\n }\n }\n }\n\n },\n\n readTiles: function(input, data, OutPixelTypeArray, useBSQForOutputDim) {\n var headerInfo = data.headerInfo;\n var width = headerInfo.width;\n var height = headerInfo.height;\n var numPixels = width * height;\n var microBlockSize = headerInfo.microBlockSize;\n var imageType = headerInfo.imageType;\n var dataTypeSize = Lerc2Helpers.getDataTypeSize(imageType);\n var numBlocksX = Math.ceil(width / microBlockSize);\n var numBlocksY = Math.ceil(height / microBlockSize);\n data.pixels.numBlocksY = numBlocksY;\n data.pixels.numBlocksX = numBlocksX;\n data.pixels.ptr = 0;\n var row = 0, col = 0, blockY = 0, blockX = 0, thisBlockHeight = 0, thisBlockWidth = 0, bytesLeft = 0, headerByte = 0, bits67 = 0, testCode = 0, outPtr = 0, outStride = 0, numBytes = 0, bytesleft = 0, z = 0, blockPtr = 0;\n var view, block, arrayBuf, store8, rawData;\n var blockEncoding;\n var blockDataBuffer = new OutPixelTypeArray(microBlockSize * microBlockSize);\n var lastBlockHeight = (height % microBlockSize) || microBlockSize;\n var lastBlockWidth = (width % microBlockSize) || microBlockSize;\n var offsetType, offset;\n var numDims = headerInfo.numDims, iDim;\n var mask = data.pixels.resultMask;\n var resultPixels = data.pixels.resultPixels;\n var fileVersion = headerInfo.fileVersion;\n var fileVersionCheckNum = fileVersion >= 5 ? 14 : 15;\n var isDiffEncoding;\n var zMax = headerInfo.zMax;\n //var resultPixelsAllDim = resultPixels;\n var resultPixelsPrevDim;\n for (blockY = 0; blockY < numBlocksY; blockY++) {\n thisBlockHeight = (blockY !== numBlocksY - 1) ? microBlockSize : lastBlockHeight;\n for (blockX = 0; blockX < numBlocksX; blockX++) {\n //console.debug(\"y\" + blockY + \" x\" + blockX);\n thisBlockWidth = (blockX !== numBlocksX - 1) ? microBlockSize : lastBlockWidth;\n\n outPtr = blockY * width * microBlockSize + blockX * microBlockSize;\n outStride = width - thisBlockWidth;\n\n for (iDim = 0; iDim < numDims; iDim++) {\n if (numDims > 1) {\n resultPixelsPrevDim = resultPixels;\n outPtr = blockY * width * microBlockSize + blockX * microBlockSize;\n resultPixels = new OutPixelTypeArray(data.pixels.resultPixels.buffer, numPixels * iDim * dataTypeSize, numPixels);\n zMax = headerInfo.maxValues[iDim];\n } else {\n resultPixelsPrevDim = null;\n }\n bytesLeft = input.byteLength - data.ptr;\n view = new DataView(input, data.ptr, Math.min(10, bytesLeft));\n block = {};\n blockPtr = 0;\n headerByte = view.getUint8(0);\n blockPtr++;\n isDiffEncoding = headerInfo.fileVersion >= 5 ? headerByte & 4 : 0;\n bits67 = (headerByte >> 6) & 0xFF;\n testCode = (headerByte >> 2) & fileVersionCheckNum; // use bits 2345 for integrity check\n if (testCode !== (((blockX * microBlockSize) >> 3) & fileVersionCheckNum)) {\n throw \"integrity issue\";\n }\n\n if (isDiffEncoding && iDim === 0) {\n throw \"integrity issue\";\n }\n\n blockEncoding = headerByte & 3;\n if (blockEncoding > 3) {\n data.ptr += blockPtr;\n throw \"Invalid block encoding (\" + blockEncoding + \")\";\n }\n else if (blockEncoding === 2) { //constant 0\n if (isDiffEncoding) {\n if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = resultPixelsPrevDim[outPtr];\n }\n outPtr++;\n }\n }\n }\n else {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr] = resultPixelsPrevDim[outPtr];\n outPtr++;\n }\n }\n }\n }\n data.counter.constant++;\n data.ptr += blockPtr;\n continue;\n }\n else if (blockEncoding === 0) { //uncompressed\n if (isDiffEncoding) {\n // doesn't make sense, should not happen\n throw \"integrity issue\";\n }\n data.counter.uncompressed++;\n data.ptr += blockPtr;\n numBytes = thisBlockHeight * thisBlockWidth * dataTypeSize;\n bytesleft = input.byteLength - data.ptr;\n numBytes = numBytes < bytesleft ? numBytes : bytesleft;\n //bit alignment\n arrayBuf = new ArrayBuffer((numBytes % dataTypeSize) === 0 ? numBytes : (numBytes + dataTypeSize - numBytes % dataTypeSize));\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, data.ptr, numBytes));\n rawData = new OutPixelTypeArray(arrayBuf);\n z = 0;\n if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = rawData[z++];\n }\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n else {//all valid\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr++] = rawData[z++];\n }\n outPtr += outStride;\n }\n }\n data.ptr += z * dataTypeSize;\n }\n else { //1 or 3\n offsetType = Lerc2Helpers.getDataTypeUsed((isDiffEncoding && imageType < 6) ? 4 : imageType, bits67);\n offset = Lerc2Helpers.getOnePixel(block, blockPtr, offsetType, view);\n blockPtr += Lerc2Helpers.getDataTypeSize(offsetType);\n if (blockEncoding === 3) //constant offset value\n {\n data.ptr += blockPtr;\n data.counter.constantoffset++;\n //you can delete the following resultMask case in favor of performance because val is constant and users use nodata mask, otherwise nodatavalue post processing handles it too.\n //while the above statement is true, we're not doing it as we want to keep invalid pixel value at 0 rather than arbitrary values\n if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = isDiffEncoding ? Math.min(zMax, resultPixelsPrevDim[outPtr] + offset) : offset;\n }\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n else {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr] = isDiffEncoding ? Math.min(zMax, resultPixelsPrevDim[outPtr] + offset) : offset;\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n }\n else { //bitstuff encoding is 3\n data.ptr += blockPtr;\n //heavy lifting\n Lerc2Helpers.decodeBits(input, data, blockDataBuffer, offset, iDim);\n blockPtr = 0;\n // duplicate code to favor performance, diff encoding is for multidimension only\n if (isDiffEncoding) {\n if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = blockDataBuffer[blockPtr++] + resultPixelsPrevDim[outPtr];\n }\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n else {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr] = blockDataBuffer[blockPtr++] + resultPixelsPrevDim[outPtr];\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n }\n else if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = blockDataBuffer[blockPtr++];\n }\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n else {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr++] = blockDataBuffer[blockPtr++];\n }\n outPtr += outStride;\n }\n }\n }\n }\n }\n }\n }\n //swap for BIP: it's always easier for clients to handle BSQ so we keep existing logic and introduce a swap here to minimze changes\n if (numDims > 1 && !useBSQForOutputDim) {\n data.pixels.resultPixels = Lerc2Helpers.swapDimensionOrder(data.pixels.resultPixels, numPixels, numDims, OutPixelTypeArray);\n }\n },\n\n /*****************\n * private methods (helper methods)\n *****************/\n\n formatFileInfo: function(data) {\n return {\n \"fileIdentifierString\": data.headerInfo.fileIdentifierString,\n \"fileVersion\": data.headerInfo.fileVersion,\n \"imageType\": data.headerInfo.imageType,\n \"height\": data.headerInfo.height,\n \"width\": data.headerInfo.width,\n \"numValidPixel\": data.headerInfo.numValidPixel,\n \"microBlockSize\": data.headerInfo.microBlockSize,\n \"blobSize\": data.headerInfo.blobSize,\n \"maxZError\": data.headerInfo.maxZError,\n \"pixelType\": Lerc2Helpers.getPixelType(data.headerInfo.imageType),\n \"eofOffset\": data.eofOffset,\n \"mask\": data.mask ? {\n \"numBytes\": data.mask.numBytes\n } : null,\n \"pixels\": {\n \"numBlocksX\": data.pixels.numBlocksX,\n \"numBlocksY\": data.pixels.numBlocksY,\n //\"numBytes\": data.pixels.numBytes,\n \"maxValue\": data.headerInfo.zMax,\n \"minValue\": data.headerInfo.zMin,\n \"noDataValue\": data.noDataValue\n }\n };\n },\n\n constructConstantSurface: function(data, useBSQForOutputDim) {\n var val = data.headerInfo.zMax;\n var valMin = data.headerInfo.zMin;\n var maxValues = data.headerInfo.maxValues;\n var numDims = data.headerInfo.numDims;\n var numPixels = data.headerInfo.height * data.headerInfo.width;\n var i = 0, k = 0, nStart = 0;\n var mask = data.pixels.resultMask;\n var resultPixels = data.pixels.resultPixels;\n if (mask) {\n if (numDims > 1) {\n if (useBSQForOutputDim) {\n for (i = 0; i < numDims; i++) {\n nStart = i * numPixels;\n val = maxValues[i];\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n resultPixels[nStart + k] = val;\n }\n }\n } \n }\n else {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n nStart = k * numDims;\n for (i = 0; i < numDims; i++) {\n resultPixels[nStart + numDims] = maxValues[i];\n }\n }\n }\n }\n }\n else {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n resultPixels[k] = val;\n }\n }\n }\n }\n else {\n if (numDims > 1 && valMin !== val) {\n if (useBSQForOutputDim) {\n for (i = 0; i < numDims; i++) {\n nStart = i * numPixels;\n val = maxValues[i];\n for (k = 0; k < numPixels; k++) {\n resultPixels[nStart + k] = val;\n }\n }\n }\n else {\n for (k = 0; k < numPixels; k++) {\n nStart = k * numDims;\n for (i = 0; i < numDims; i++) {\n resultPixels[nStart + i] = maxValues[i];\n }\n }\n }\n }\n else {\n for (k = 0; k < numPixels * numDims; k++) {\n resultPixels[k] = val;\n }\n }\n }\n return;\n },\n\n getDataTypeArray: function(t) {\n var tp;\n switch (t) {\n case 0: //char\n tp = Int8Array;\n break;\n case 1: //byte\n tp = Uint8Array;\n break;\n case 2: //short\n tp = Int16Array;\n break;\n case 3: //ushort\n tp = Uint16Array;\n break;\n case 4:\n tp = Int32Array;\n break;\n case 5:\n tp = Uint32Array;\n break;\n case 6:\n tp = Float32Array;\n break;\n case 7:\n tp = Float64Array;\n break;\n default:\n tp = Float32Array;\n }\n return tp;\n },\n\n getPixelType: function(t) {\n var tp;\n switch (t) {\n case 0: //char\n tp = \"S8\";\n break;\n case 1: //byte\n tp = \"U8\";\n break;\n case 2: //short\n tp = \"S16\";\n break;\n case 3: //ushort\n tp = \"U16\";\n break;\n case 4:\n tp = \"S32\";\n break;\n case 5:\n tp = \"U32\";\n break;\n case 6:\n tp = \"F32\";\n break;\n case 7:\n tp = \"F64\";\n break;\n default:\n tp = \"F32\";\n }\n return tp;\n },\n\n isValidPixelValue: function(t, val) {\n if (val == null) {\n return false;\n }\n var isValid;\n switch (t) {\n case 0: //char\n isValid = val >= -128 && val <= 127;\n break;\n case 1: //byte (unsigned char)\n isValid = val >= 0 && val <= 255;\n break;\n case 2: //short\n isValid = val >= -32768 && val <= 32767;\n break;\n case 3: //ushort\n isValid = val >= 0 && val <= 65536;\n break;\n case 4: //int 32\n isValid = val >= -2147483648 && val <= 2147483647;\n break;\n case 5: //uinit 32\n isValid = val >= 0 && val <= 4294967296;\n break;\n case 6:\n isValid = val >= -3.4027999387901484e+38 && val <= 3.4027999387901484e+38;\n break;\n case 7:\n isValid = val >= -1.7976931348623157e+308 && val <= 1.7976931348623157e+308;\n break;\n default:\n isValid = false;\n }\n return isValid;\n },\n\n getDataTypeSize: function(t) {\n var s = 0;\n switch (t) {\n case 0: //ubyte\n case 1: //byte\n s = 1;\n break;\n case 2: //short\n case 3: //ushort\n s = 2;\n break;\n case 4:\n case 5:\n case 6:\n s = 4;\n break;\n case 7:\n s = 8;\n break;\n default:\n s = t;\n }\n return s;\n },\n\n getDataTypeUsed: function(dt, tc) {\n var t = dt;\n switch (dt) {\n case 2: //short\n case 4: //long\n t = dt - tc;\n break;\n case 3: //ushort\n case 5: //ulong\n t = dt - 2 * tc;\n break;\n case 6: //float\n if (0 === tc) {\n t = dt;\n }\n else if (1 === tc) {\n t = 2;\n }\n else {\n t = 1;//byte\n }\n break;\n case 7: //double\n if (0 === tc) {\n t = dt;\n }\n else {\n t = dt - 2 * tc + 1;\n }\n break;\n default:\n t = dt;\n break;\n }\n return t;\n },\n\n getOnePixel: function(block, blockPtr, offsetType, view) {\n var temp = 0;\n switch (offsetType) {\n case 0: //char\n temp = view.getInt8(blockPtr);\n break;\n case 1: //byte\n temp = view.getUint8(blockPtr);\n break;\n case 2:\n temp = view.getInt16(blockPtr, true);\n break;\n case 3:\n temp = view.getUint16(blockPtr, true);\n break;\n case 4:\n temp = view.getInt32(blockPtr, true);\n break;\n case 5:\n temp = view.getUInt32(blockPtr, true);\n break;\n case 6:\n temp = view.getFloat32(blockPtr, true);\n break;\n case 7:\n temp = view.getFloat64(blockPtr, true);\n break;\n default:\n throw (\"the decoder does not understand this pixel type\");\n }\n return temp;\n },\n\n swapDimensionOrder: function(pixels, numPixels, numDims, OutPixelTypeArray, inputIsBIP) {\n var i = 0, j = 0, iDim = 0, temp = 0, swap = pixels;\n if (numDims > 1) {\n swap = new OutPixelTypeArray(numPixels * numDims);\n if (inputIsBIP) {\n for (i=0; i 5) {\n throw \"unsupported lerc version 2.\" + fileVersion;\n }\n\n // Mask Header\n Lerc2Helpers.readMask(input, data);\n if (headerInfo.numValidPixel !== headerInfo.width * headerInfo.height && !data.pixels.resultMask) {\n data.pixels.resultMask = options.maskData;\n }\n\n var numPixels = headerInfo.width * headerInfo.height;\n data.pixels.resultPixels = new OutPixelTypeArray(numPixels * headerInfo.numDims);\n\n data.counter = {\n onesweep: 0,\n uncompressed: 0,\n lut: 0,\n bitstuffer: 0,\n constant: 0,\n constantoffset: 0\n };\n var useBSQForOutputDim = !options.returnPixelInterleavedDims;\n if (headerInfo.numValidPixel !== 0) {\n //not tested\n if (headerInfo.zMax === headerInfo.zMin) //constant surface\n {\n Lerc2Helpers.constructConstantSurface(data, useBSQForOutputDim);\n }\n else if (fileVersion >= 4 && Lerc2Helpers.checkMinMaxRanges(input, data)) {\n Lerc2Helpers.constructConstantSurface(data, useBSQForOutputDim);\n }\n else {\n var view = new DataView(input, data.ptr, 2);\n var bReadDataOneSweep = view.getUint8(0);\n data.ptr++;\n if (bReadDataOneSweep) {\n //console.debug(\"OneSweep\");\n Lerc2Helpers.readDataOneSweep(input, data, OutPixelTypeArray, useBSQForOutputDim);\n }\n else {\n //lerc2.1: //bitstuffing + lut\n //lerc2.2: //bitstuffing + lut + huffman\n //lerc2.3: new bitstuffer\n if (fileVersion > 1 && headerInfo.imageType <= 1 && Math.abs(headerInfo.maxZError - 0.5) < 0.00001) {\n //this is 2.x plus 8 bit (unsigned and signed) data, possiblity of Huffman\n var flagHuffman = view.getUint8(1);\n data.ptr++;\n data.encodeMode = flagHuffman;\n if (flagHuffman > 2 || (fileVersion < 4 && flagHuffman > 1)) {\n throw \"Invalid Huffman flag \" + flagHuffman;\n }\n if (flagHuffman) {//1 - delta Huffman, 2 - Huffman\n //console.log(\"Huffman\");\n Lerc2Helpers.readHuffman(input, data, OutPixelTypeArray, useBSQForOutputDim);\n }\n else {\n //console.log(\"Tiles\");\n Lerc2Helpers.readTiles(input, data, OutPixelTypeArray, useBSQForOutputDim);\n }\n }\n else { //lerc2.x non-8 bit data\n //console.log(\"Tiles\");\n Lerc2Helpers.readTiles(input, data, OutPixelTypeArray, useBSQForOutputDim);\n }\n }\n }\n }\n\n data.eofOffset = data.ptr;\n var diff;\n if (options.inputOffset) {\n diff = data.headerInfo.blobSize + options.inputOffset - data.ptr;\n if (Math.abs(diff) >= 1) {\n //console.debug(\"incorrect eof: dataptr \" + data.ptr + \" offset \" + options.inputOffset + \" blobsize \" + data.headerInfo.blobSize + \" diff: \" + diff);\n data.eofOffset = options.inputOffset + data.headerInfo.blobSize;\n }\n }\n else {\n diff = data.headerInfo.blobSize - data.ptr;\n if (Math.abs(diff) >= 1) {\n //console.debug(\"incorrect first band eof: dataptr \" + data.ptr + \" blobsize \" + data.headerInfo.blobSize + \" diff: \" + diff);\n data.eofOffset = data.headerInfo.blobSize;\n }\n }\n\n var result = {\n width: headerInfo.width,\n height: headerInfo.height,\n pixelData: data.pixels.resultPixels,\n minValue: headerInfo.zMin,\n maxValue: headerInfo.zMax,\n validPixelCount: headerInfo.numValidPixel,\n dimCount: headerInfo.numDims,\n dimStats: {\n minValues: headerInfo.minValues,\n maxValues: headerInfo.maxValues\n },\n maskData: data.pixels.resultMask\n //noDataValue: noDataValue\n };\n\n //we should remove this if there's no existing client\n //optional noDataValue processing, it's user's responsiblity\n if (data.pixels.resultMask && Lerc2Helpers.isValidPixelValue(headerInfo.imageType, noDataValue)) {\n var mask = data.pixels.resultMask;\n for (i = 0; i < numPixels; i++) {\n if (!mask[i]) {\n result.pixelData[i] = noDataValue;\n }\n }\n result.noDataValue = noDataValue;\n }\n data.noDataValue = noDataValue;\n if (options.returnFileInfo) {\n result.fileInfo = Lerc2Helpers.formatFileInfo(data);\n }\n return result;\n },\n\n getBandCount: function(/*byte array*/ input) {\n var count = 0;\n var i = 0;\n var temp = {};\n temp.ptr = 0;\n temp.pixels = {};\n while (i < input.byteLength - 58) {\n Lerc2Helpers.readHeaderInfo(input, temp);\n i += temp.headerInfo.blobSize;\n count++;\n temp.ptr = i;\n }\n return count;\n }\n };\n\n return Lerc2Decode;\n })();\n\n var isPlatformLittleEndian = (function() {\n var a = new ArrayBuffer(4);\n var b = new Uint8Array(a);\n var c = new Uint32Array(a);\n c[0] = 1;\n return b[0] === 1;\n })();\n\n var Lerc = {\n /************wrapper**********************************************/\n /**\n * A wrapper for decoding both LERC1 and LERC2 byte streams capable of handling multiband pixel blocks for various pixel types.\n *\n * @alias module:Lerc\n * @param {ArrayBuffer} input The LERC input byte stream\n * @param {object} [options] The decoding options below are optional.\n * @param {number} [options.inputOffset] The number of bytes to skip in the input byte stream. A valid Lerc file is expected at that position.\n * @param {string} [options.pixelType] (LERC1 only) Default value is F32. Valid pixel types for input are U8/S8/S16/U16/S32/U32/F32.\n * @param {number} [options.noDataValue] (LERC1 only). It is recommended to use the returned mask instead of setting this value.\n * @param {boolean} [options.returnPixelInterleavedDims] (nDim LERC2 only) If true, returned dimensions are pixel-interleaved, a.k.a [p1_dim0, p1_dim1, p1_dimn, p2_dim0...], default is [p1_dim0, p2_dim0, ..., p1_dim1, p2_dim1...]\n * @returns {{width, height, pixels, pixelType, mask, statistics}}\n * @property {number} width Width of decoded image.\n * @property {number} height Height of decoded image.\n * @property {array} pixels [band1, band2, …] Each band is a typed array of width*height.\n * @property {string} pixelType The type of pixels represented in the output.\n * @property {mask} mask Typed array with a size of width*height, or null if all pixels are valid.\n * @property {array} statistics [statistics_band1, statistics_band2, …] Each element is a statistics object representing min and max values\n **/\n decode: function(encodedData, options) {\n if (!isPlatformLittleEndian) {\n throw \"Big endian system is not supported.\";\n }\n options = options || {};\n var inputOffset = options.inputOffset || 0;\n var fileIdView = new Uint8Array(encodedData, inputOffset, 10);\n var fileIdentifierString = String.fromCharCode.apply(null, fileIdView);\n var lerc, majorVersion;\n if (fileIdentifierString.trim() === \"CntZImage\") {\n lerc = LercDecode;\n majorVersion = 1;\n }\n else if (fileIdentifierString.substring(0, 5) === \"Lerc2\") {\n lerc = Lerc2Decode;\n majorVersion = 2;\n }\n else {\n throw \"Unexpected file identifier string: \" + fileIdentifierString;\n }\n\n var iPlane = 0, eof = encodedData.byteLength - 10, encodedMaskData, bandMasks = [], bandMask, maskData;\n var decodedPixelBlock = {\n width: 0,\n height: 0,\n pixels: [],\n pixelType: options.pixelType,\n mask: null,\n statistics: []\n };\n var uniqueBandMaskCount = 0;\n\n while (inputOffset < eof) {\n var result = lerc.decode(encodedData, {\n inputOffset: inputOffset,//for both lerc1 and lerc2\n encodedMaskData: encodedMaskData,//lerc1 only\n maskData: maskData,//lerc2 only\n returnMask: iPlane === 0 ? true : false,//lerc1 only\n returnEncodedMask: iPlane === 0 ? true : false,//lerc1 only\n returnFileInfo: true,//for both lerc1 and lerc2\n returnPixelInterleavedDims: options.returnPixelInterleavedDims,//for ndim lerc2 only\n pixelType: options.pixelType || null,//lerc1 only\n noDataValue: options.noDataValue || null//lerc1 only\n });\n\n inputOffset = result.fileInfo.eofOffset;\n maskData = result.maskData;//lerc2\n if (iPlane === 0) {\n encodedMaskData = result.encodedMaskData;//lerc1\n decodedPixelBlock.width = result.width;\n decodedPixelBlock.height = result.height;\n decodedPixelBlock.dimCount = result.dimCount || 1;\n //decodedPixelBlock.dimStats = decodedPixelBlock.dimStats;\n decodedPixelBlock.pixelType = result.pixelType || result.fileInfo.pixelType;\n decodedPixelBlock.mask = maskData;\n }\n if (majorVersion > 1) {\n if (maskData) {\n bandMasks.push(maskData);\n }\n if (result.fileInfo.mask && result.fileInfo.mask.numBytes > 0) {\n uniqueBandMaskCount++;\n }\n }\n\n iPlane++;\n decodedPixelBlock.pixels.push(result.pixelData);\n decodedPixelBlock.statistics.push({\n minValue: result.minValue,\n maxValue: result.maxValue,\n noDataValue: result.noDataValue,\n dimStats: result.dimStats\n });\n }\n var i, j, numPixels;\n if (majorVersion > 1 && uniqueBandMaskCount > 1) {\n numPixels = decodedPixelBlock.width * decodedPixelBlock.height;\n decodedPixelBlock.bandMasks = bandMasks;\n maskData = new Uint8Array(numPixels);\n maskData.set(bandMasks[0]);\n for (i = 1; i < bandMasks.length; i++) {\n bandMask = bandMasks[i];\n for (j = 0; j < numPixels; j++) {\n maskData[j] = maskData[j] & bandMask[j];\n }\n }\n decodedPixelBlock.maskData = maskData;\n }\n\n return decodedPixelBlock;\n }\n };\n\n if (typeof define === \"function\" && define.amd) {/* jshint ignore:line */\n //amd loaders such as dojo and requireJS\n //http://wiki.commonjs.org/wiki/Modules/AsynchronousDefinition\n define([], function() { return Lerc; });/* jshint ignore:line */\n }\n else if (typeof module !== \"undefined\" && module.exports) {/* jshint ignore:line */\n //commonJS module 1.0/1.1/1.1.1 systems, such as nodeJS\n //http://wiki.commonjs.org/wiki/Modules\n module.exports = Lerc;/* jshint ignore:line */\n }\n else {\n //assign to this, most likely window\n this.Lerc = Lerc;\n }\n\n})();\n","interface DecoderExports {\n\tmemory: Uint8Array;\n\n\tZSTD_findDecompressedSize: (compressedPtr: number, compressedSize: number) => BigInt;\n\tZSTD_decompress: (uncompressedPtr: number, uncompressedSize: number, compressedPtr: number, compressedSize: number) => number;\n\tmalloc: (ptr: number) => number;\n\tfree: (ptr: number) => void;\n}\n\nlet init: Promise;\nlet instance: {exports: DecoderExports};\nlet heap: Uint8Array;\n\nconst IMPORT_OBJECT = {\n\n\tenv: {\n\n\t\temscripten_notify_memory_growth: function ( index: number ): void {\n\n\t\t\theap = new Uint8Array( instance.exports.memory.buffer );\n\n\t\t}\n\n\t}\n\n};\n\n/**\n * ZSTD (Zstandard) decoder.\n */\nexport class ZSTDDecoder {\n\n\tinit (): Promise {\n\n\t\tif ( init ) return init;\n\n\t\tif ( typeof fetch !== 'undefined' ) {\n\n\t\t\t// Web.\n\n\t\t\tinit = fetch( 'data:application/wasm;base64,' + wasm )\n\t\t\t\t.then( ( response ) => response.arrayBuffer() )\n\t\t\t\t.then( ( arrayBuffer ) => WebAssembly.instantiate( arrayBuffer, IMPORT_OBJECT ) )\n\t\t\t\t.then( this._init );\n\n\t\t} else {\n\n\t\t\t// Node.js.\n\n\t\t\tinit = WebAssembly\n\t\t\t\t.instantiate( Buffer.from( wasm, 'base64' ), IMPORT_OBJECT )\n\t\t\t\t.then( this._init );\n\n\t\t}\n\n\t\treturn init;\n\n\t}\n\n\t_init ( result: WebAssembly.WebAssemblyInstantiatedSource ): void {\n\n\t\tinstance = result.instance as unknown as { exports: DecoderExports };\n\n\t\tIMPORT_OBJECT.env.emscripten_notify_memory_growth( 0 ); // initialize heap.\n\n\t}\n\n\tdecode ( array: Uint8Array, uncompressedSize = 0 ): Uint8Array {\n\n\t\tif ( ! instance ) throw new Error( `ZSTDDecoder: Await .init() before decoding.` );\n\n\t\t// Write compressed data into WASM memory.\n\t\tconst compressedSize = array.byteLength;\n\t\tconst compressedPtr = instance.exports.malloc( compressedSize );\n\t\theap.set( array, compressedPtr );\n\n\t\t// Decompress into WASM memory.\n\t\tuncompressedSize = uncompressedSize || Number( instance.exports.ZSTD_findDecompressedSize( compressedPtr, compressedSize ) );\n\t\tconst uncompressedPtr = instance.exports.malloc( uncompressedSize );\n\t\tconst actualSize = instance.exports.ZSTD_decompress( uncompressedPtr, uncompressedSize, compressedPtr, compressedSize );\n\n\t\t// Read decompressed data and free WASM memory.\n\t\tconst dec = heap.slice( uncompressedPtr, uncompressedPtr + actualSize );\n\t\tinstance.exports.free( compressedPtr );\n\t\tinstance.exports.free( uncompressedPtr );\n\n\t\treturn dec;\n\n\t}\n\n}\n\n/**\n * BSD License\n *\n * For Zstandard software\n *\n * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without modification,\n * are permitted provided that the following conditions are met:\n *\n * * Redistributions of source code must retain the above copyright notice, this\n * list of conditions and the following disclaimer.\n *\n * * Redistributions in binary form must reproduce the above copyright notice,\n * this list of conditions and the following disclaimer in the documentation\n * and/or other materials provided with the distribution.\n *\n * * Neither the name Facebook nor the names of its contributors may be used to\n * endorse or promote products derived from this software without specific\n * prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\n * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n// wasm:begin\nconst wasm = 'AGFzbQEAAAABpQEVYAF/AX9gAn9/AGADf39/AX9gBX9/f39/AX9gAX8AYAJ/fwF/YAR/f39/AX9gA39/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gAn9/AX5gAn5+AX5gAABgBX9/f39/AGAGf39/f39/AGAIf39/f39/f38AYAl/f39/f39/f38AYAABf2AIf39/f39/f38Bf2ANf39/f39/f39/f39/fwF/YAF/AX4CJwEDZW52H2Vtc2NyaXB0ZW5fbm90aWZ5X21lbW9yeV9ncm93dGgABANpaAEFAAAFAgEFCwACAQABAgIFBQcAAwABDgsBAQcAEhMHAAUBDAQEAAANBwQCAgYCBAgDAwMDBgEACQkHBgICAAYGAgQUBwYGAwIGAAMCAQgBBwUGCgoEEQAEBAEIAwgDBQgDEA8IAAcABAUBcAECAgUEAQCAAgYJAX8BQaCgwAILB2AHBm1lbW9yeQIABm1hbGxvYwAoBGZyZWUAJgxaU1REX2lzRXJyb3IAaBlaU1REX2ZpbmREZWNvbXByZXNzZWRTaXplAFQPWlNURF9kZWNvbXByZXNzAEoGX3N0YXJ0ACQJBwEAQQELASQKussBaA8AIAAgACgCBCABajYCBAsZACAAKAIAIAAoAgRBH3F0QQAgAWtBH3F2CwgAIABBiH9LC34BBH9BAyEBIAAoAgQiA0EgTQRAIAAoAggiASAAKAIQTwRAIAAQDQ8LIAAoAgwiAiABRgRAQQFBAiADQSBJGw8LIAAgASABIAJrIANBA3YiBCABIARrIAJJIgEbIgJrIgQ2AgggACADIAJBA3RrNgIEIAAgBCgAADYCAAsgAQsUAQF/IAAgARACIQIgACABEAEgAgv3AQECfyACRQRAIABCADcCACAAQQA2AhAgAEIANwIIQbh/DwsgACABNgIMIAAgAUEEajYCECACQQRPBEAgACABIAJqIgFBfGoiAzYCCCAAIAMoAAA2AgAgAUF/ai0AACIBBEAgAEEIIAEQFGs2AgQgAg8LIABBADYCBEF/DwsgACABNgIIIAAgAS0AACIDNgIAIAJBfmoiBEEBTQRAIARBAWtFBEAgACABLQACQRB0IANyIgM2AgALIAAgAS0AAUEIdCADajYCAAsgASACakF/ai0AACIBRQRAIABBADYCBEFsDwsgAEEoIAEQFCACQQN0ams2AgQgAgsWACAAIAEpAAA3AAAgACABKQAINwAICy8BAX8gAUECdEGgHWooAgAgACgCAEEgIAEgACgCBGprQR9xdnEhAiAAIAEQASACCyEAIAFCz9bTvtLHq9lCfiAAfEIfiUKHla+vmLbem55/fgsdAQF/IAAoAgggACgCDEYEfyAAKAIEQSBGBUEACwuCBAEDfyACQYDAAE8EQCAAIAEgAhBnIAAPCyAAIAJqIQMCQCAAIAFzQQNxRQRAAkAgAkEBSARAIAAhAgwBCyAAQQNxRQRAIAAhAgwBCyAAIQIDQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADTw0BIAJBA3ENAAsLAkAgA0F8cSIEQcAASQ0AIAIgBEFAaiIFSw0AA0AgAiABKAIANgIAIAIgASgCBDYCBCACIAEoAgg2AgggAiABKAIMNgIMIAIgASgCEDYCECACIAEoAhQ2AhQgAiABKAIYNgIYIAIgASgCHDYCHCACIAEoAiA2AiAgAiABKAIkNgIkIAIgASgCKDYCKCACIAEoAiw2AiwgAiABKAIwNgIwIAIgASgCNDYCNCACIAEoAjg2AjggAiABKAI8NgI8IAFBQGshASACQUBrIgIgBU0NAAsLIAIgBE8NAQNAIAIgASgCADYCACABQQRqIQEgAkEEaiICIARJDQALDAELIANBBEkEQCAAIQIMAQsgA0F8aiIEIABJBEAgACECDAELIAAhAgNAIAIgAS0AADoAACACIAEtAAE6AAEgAiABLQACOgACIAIgAS0AAzoAAyABQQRqIQEgAkEEaiICIARNDQALCyACIANJBEADQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADRw0ACwsgAAsMACAAIAEpAAA3AAALQQECfyAAKAIIIgEgACgCEEkEQEEDDwsgACAAKAIEIgJBB3E2AgQgACABIAJBA3ZrIgE2AgggACABKAAANgIAQQALDAAgACABKAIANgAAC/cCAQJ/AkAgACABRg0AAkAgASACaiAASwRAIAAgAmoiBCABSw0BCyAAIAEgAhALDwsgACABc0EDcSEDAkACQCAAIAFJBEAgAwRAIAAhAwwDCyAAQQNxRQRAIAAhAwwCCyAAIQMDQCACRQ0EIAMgAS0AADoAACABQQFqIQEgAkF/aiECIANBAWoiA0EDcQ0ACwwBCwJAIAMNACAEQQNxBEADQCACRQ0FIAAgAkF/aiICaiIDIAEgAmotAAA6AAAgA0EDcQ0ACwsgAkEDTQ0AA0AgACACQXxqIgJqIAEgAmooAgA2AgAgAkEDSw0ACwsgAkUNAgNAIAAgAkF/aiICaiABIAJqLQAAOgAAIAINAAsMAgsgAkEDTQ0AIAIhBANAIAMgASgCADYCACABQQRqIQEgA0EEaiEDIARBfGoiBEEDSw0ACyACQQNxIQILIAJFDQADQCADIAEtAAA6AAAgA0EBaiEDIAFBAWohASACQX9qIgINAAsLIAAL8wICAn8BfgJAIAJFDQAgACACaiIDQX9qIAE6AAAgACABOgAAIAJBA0kNACADQX5qIAE6AAAgACABOgABIANBfWogAToAACAAIAE6AAIgAkEHSQ0AIANBfGogAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa0iBUIghiAFhCEFIAMgBGohAQNAIAEgBTcDGCABIAU3AxAgASAFNwMIIAEgBTcDACABQSBqIQEgAkFgaiICQR9LDQALCyAACy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAIajYCACADCy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAFajYCACADCx8AIAAgASACKAIEEAg2AgAgARAEGiAAIAJBCGo2AgQLCAAgAGdBH3MLugUBDX8jAEEQayIKJAACfyAEQQNNBEAgCkEANgIMIApBDGogAyAEEAsaIAAgASACIApBDGpBBBAVIgBBbCAAEAMbIAAgACAESxsMAQsgAEEAIAEoAgBBAXRBAmoQECENQVQgAygAACIGQQ9xIgBBCksNABogAiAAQQVqNgIAIAMgBGoiAkF8aiEMIAJBeWohDiACQXtqIRAgAEEGaiELQQQhBSAGQQR2IQRBICAAdCIAQQFyIQkgASgCACEPQQAhAiADIQYCQANAIAlBAkggAiAPS3JFBEAgAiEHAkAgCARAA0AgBEH//wNxQf//A0YEQCAHQRhqIQcgBiAQSQR/IAZBAmoiBigAACAFdgUgBUEQaiEFIARBEHYLIQQMAQsLA0AgBEEDcSIIQQNGBEAgBUECaiEFIARBAnYhBCAHQQNqIQcMAQsLIAcgCGoiByAPSw0EIAVBAmohBQNAIAIgB0kEQCANIAJBAXRqQQA7AQAgAkEBaiECDAELCyAGIA5LQQAgBiAFQQN1aiIHIAxLG0UEQCAHKAAAIAVBB3EiBXYhBAwCCyAEQQJ2IQQLIAYhBwsCfyALQX9qIAQgAEF/anEiBiAAQQF0QX9qIgggCWsiEUkNABogBCAIcSIEQQAgESAEIABIG2shBiALCyEIIA0gAkEBdGogBkF/aiIEOwEAIAlBASAGayAEIAZBAUgbayEJA0AgCSAASARAIABBAXUhACALQX9qIQsMAQsLAn8gByAOS0EAIAcgBSAIaiIFQQN1aiIGIAxLG0UEQCAFQQdxDAELIAUgDCIGIAdrQQN0awshBSACQQFqIQIgBEUhCCAGKAAAIAVBH3F2IQQMAQsLQWwgCUEBRyAFQSBKcg0BGiABIAJBf2o2AgAgBiAFQQdqQQN1aiADawwBC0FQCyEAIApBEGokACAACwkAQQFBBSAAGwsMACAAIAEoAAA2AAALqgMBCn8jAEHwAGsiCiQAIAJBAWohDiAAQQhqIQtBgIAEIAVBf2p0QRB1IQxBACECQQEhBkEBIAV0IglBf2oiDyEIA0AgAiAORkUEQAJAIAEgAkEBdCINai8BACIHQf//A0YEQCALIAhBA3RqIAI2AgQgCEF/aiEIQQEhBwwBCyAGQQAgDCAHQRB0QRB1ShshBgsgCiANaiAHOwEAIAJBAWohAgwBCwsgACAFNgIEIAAgBjYCACAJQQN2IAlBAXZqQQNqIQxBACEAQQAhBkEAIQIDQCAGIA5GBEADQAJAIAAgCUYNACAKIAsgAEEDdGoiASgCBCIGQQF0aiICIAIvAQAiAkEBajsBACABIAUgAhAUayIIOgADIAEgAiAIQf8BcXQgCWs7AQAgASAEIAZBAnQiAmooAgA6AAIgASACIANqKAIANgIEIABBAWohAAwBCwsFIAEgBkEBdGouAQAhDUEAIQcDQCAHIA1ORQRAIAsgAkEDdGogBjYCBANAIAIgDGogD3EiAiAISw0ACyAHQQFqIQcMAQsLIAZBAWohBgwBCwsgCkHwAGokAAsjAEIAIAEQCSAAhUKHla+vmLbem55/fkLj3MqV/M7y9YV/fAsQACAAQn43AwggACABNgIACyQBAX8gAARAIAEoAgQiAgRAIAEoAgggACACEQEADwsgABAmCwsfACAAIAEgAi8BABAINgIAIAEQBBogACACQQRqNgIEC0oBAX9BoCAoAgAiASAAaiIAQX9MBEBBiCBBMDYCAEF/DwsCQCAAPwBBEHRNDQAgABBmDQBBiCBBMDYCAEF/DwtBoCAgADYCACABC9cBAQh/Qbp/IQoCQCACKAIEIgggAigCACIJaiIOIAEgAGtLDQBBbCEKIAkgBCADKAIAIgtrSw0AIAAgCWoiBCACKAIIIgxrIQ0gACABQWBqIg8gCyAJQQAQKSADIAkgC2o2AgACQAJAIAwgBCAFa00EQCANIQUMAQsgDCAEIAZrSw0CIAcgDSAFayIAaiIBIAhqIAdNBEAgBCABIAgQDxoMAgsgBCABQQAgAGsQDyEBIAIgACAIaiIINgIEIAEgAGshBAsgBCAPIAUgCEEBECkLIA4hCgsgCgubAgEBfyMAQYABayINJAAgDSADNgJ8AkAgAkEDSwRAQX8hCQwBCwJAAkACQAJAIAJBAWsOAwADAgELIAZFBEBBuH8hCQwEC0FsIQkgBS0AACICIANLDQMgACAHIAJBAnQiAmooAgAgAiAIaigCABA7IAEgADYCAEEBIQkMAwsgASAJNgIAQQAhCQwCCyAKRQRAQWwhCQwCC0EAIQkgC0UgDEEZSHINAUEIIAR0QQhqIQBBACECA0AgAiAATw0CIAJBQGshAgwAAAsAC0FsIQkgDSANQfwAaiANQfgAaiAFIAYQFSICEAMNACANKAJ4IgMgBEsNACAAIA0gDSgCfCAHIAggAxAYIAEgADYCACACIQkLIA1BgAFqJAAgCQsLACAAIAEgAhALGgsQACAALwAAIAAtAAJBEHRyCy8AAn9BuH8gAUEISQ0AGkFyIAAoAAQiAEF3Sw0AGkG4fyAAQQhqIgAgACABSxsLCwkAIAAgATsAAAsDAAELigYBBX8gACAAKAIAIgVBfnE2AgBBACAAIAVBAXZqQYQgKAIAIgQgAEYbIQECQAJAIAAoAgQiAkUNACACKAIAIgNBAXENACACQQhqIgUgA0EBdkF4aiIDQQggA0EISxtnQR9zQQJ0QYAfaiIDKAIARgRAIAMgAigCDDYCAAsgAigCCCIDBEAgAyACKAIMNgIECyACKAIMIgMEQCADIAIoAgg2AgALIAIgAigCACAAKAIAQX5xajYCAEGEICEAAkACQCABRQ0AIAEgAjYCBCABKAIAIgNBAXENASADQQF2QXhqIgNBCCADQQhLG2dBH3NBAnRBgB9qIgMoAgAgAUEIakYEQCADIAEoAgw2AgALIAEoAggiAwRAIAMgASgCDDYCBAsgASgCDCIDBEAgAyABKAIINgIAQYQgKAIAIQQLIAIgAigCACABKAIAQX5xajYCACABIARGDQAgASABKAIAQQF2akEEaiEACyAAIAI2AgALIAIoAgBBAXZBeGoiAEEIIABBCEsbZ0Efc0ECdEGAH2oiASgCACEAIAEgBTYCACACIAA2AgwgAkEANgIIIABFDQEgACAFNgIADwsCQCABRQ0AIAEoAgAiAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAigCACABQQhqRgRAIAIgASgCDDYCAAsgASgCCCICBEAgAiABKAIMNgIECyABKAIMIgIEQCACIAEoAgg2AgBBhCAoAgAhBAsgACAAKAIAIAEoAgBBfnFqIgI2AgACQCABIARHBEAgASABKAIAQQF2aiAANgIEIAAoAgAhAgwBC0GEICAANgIACyACQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgIoAgAhASACIABBCGoiAjYCACAAIAE2AgwgAEEANgIIIAFFDQEgASACNgIADwsgBUEBdkF4aiIBQQggAUEISxtnQR9zQQJ0QYAfaiICKAIAIQEgAiAAQQhqIgI2AgAgACABNgIMIABBADYCCCABRQ0AIAEgAjYCAAsLDgAgAARAIABBeGoQJQsLgAIBA38CQCAAQQ9qQXhxQYQgKAIAKAIAQQF2ayICEB1Bf0YNAAJAQYQgKAIAIgAoAgAiAUEBcQ0AIAFBAXZBeGoiAUEIIAFBCEsbZ0Efc0ECdEGAH2oiASgCACAAQQhqRgRAIAEgACgCDDYCAAsgACgCCCIBBEAgASAAKAIMNgIECyAAKAIMIgFFDQAgASAAKAIINgIAC0EBIQEgACAAKAIAIAJBAXRqIgI2AgAgAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAygCACECIAMgAEEIaiIDNgIAIAAgAjYCDCAAQQA2AgggAkUNACACIAM2AgALIAELtwIBA38CQAJAIABBASAAGyICEDgiAA0AAkACQEGEICgCACIARQ0AIAAoAgAiA0EBcQ0AIAAgA0EBcjYCACADQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgAgAEEIakYEQCABIAAoAgw2AgALIAAoAggiAQRAIAEgACgCDDYCBAsgACgCDCIBBEAgASAAKAIINgIACyACECchAkEAIQFBhCAoAgAhACACDQEgACAAKAIAQX5xNgIAQQAPCyACQQ9qQXhxIgMQHSICQX9GDQIgAkEHakF4cSIAIAJHBEAgACACaxAdQX9GDQMLAkBBhCAoAgAiAUUEQEGAICAANgIADAELIAAgATYCBAtBhCAgADYCACAAIANBAXRBAXI2AgAMAQsgAEUNAQsgAEEIaiEBCyABC7kDAQJ/IAAgA2ohBQJAIANBB0wEQANAIAAgBU8NAiAAIAItAAA6AAAgAEEBaiEAIAJBAWohAgwAAAsACyAEQQFGBEACQCAAIAJrIgZBB00EQCAAIAItAAA6AAAgACACLQABOgABIAAgAi0AAjoAAiAAIAItAAM6AAMgAEEEaiACIAZBAnQiBkHAHmooAgBqIgIQFyACIAZB4B5qKAIAayECDAELIAAgAhAMCyACQQhqIQIgAEEIaiEACwJAAkACQAJAIAUgAU0EQCAAIANqIQEgBEEBRyAAIAJrQQ9Kcg0BA0AgACACEAwgAkEIaiECIABBCGoiACABSQ0ACwwFCyAAIAFLBEAgACEBDAQLIARBAUcgACACa0EPSnINASAAIQMgAiEEA0AgAyAEEAwgBEEIaiEEIANBCGoiAyABSQ0ACwwCCwNAIAAgAhAHIAJBEGohAiAAQRBqIgAgAUkNAAsMAwsgACEDIAIhBANAIAMgBBAHIARBEGohBCADQRBqIgMgAUkNAAsLIAIgASAAa2ohAgsDQCABIAVPDQEgASACLQAAOgAAIAFBAWohASACQQFqIQIMAAALAAsLQQECfyAAIAAoArjgASIDNgLE4AEgACgCvOABIQQgACABNgK84AEgACABIAJqNgK44AEgACABIAQgA2tqNgLA4AELpgEBAX8gACAAKALs4QEQFjYCyOABIABCADcD+OABIABCADcDuOABIABBwOABakIANwMAIABBqNAAaiIBQYyAgOAANgIAIABBADYCmOIBIABCADcDiOEBIABCAzcDgOEBIABBrNABakHgEikCADcCACAAQbTQAWpB6BIoAgA2AgAgACABNgIMIAAgAEGYIGo2AgggACAAQaAwajYCBCAAIABBEGo2AgALYQEBf0G4fyEDAkAgAUEDSQ0AIAIgABAhIgFBA3YiADYCCCACIAFBAXE2AgQgAiABQQF2QQNxIgM2AgACQCADQX9qIgFBAksNAAJAIAFBAWsOAgEAAgtBbA8LIAAhAwsgAwsMACAAIAEgAkEAEC4LiAQCA38CfiADEBYhBCAAQQBBKBAQIQAgBCACSwRAIAQPCyABRQRAQX8PCwJAAkAgA0EBRg0AIAEoAAAiBkGo6r5pRg0AQXYhAyAGQXBxQdDUtMIBRw0BQQghAyACQQhJDQEgAEEAQSgQECEAIAEoAAQhASAAQQE2AhQgACABrTcDAEEADwsgASACIAMQLyIDIAJLDQAgACADNgIYQXIhAyABIARqIgVBf2otAAAiAkEIcQ0AIAJBIHEiBkUEQEFwIQMgBS0AACIFQacBSw0BIAVBB3GtQgEgBUEDdkEKaq2GIgdCA4h+IAd8IQggBEEBaiEECyACQQZ2IQMgAkECdiEFAkAgAkEDcUF/aiICQQJLBEBBACECDAELAkACQAJAIAJBAWsOAgECAAsgASAEai0AACECIARBAWohBAwCCyABIARqLwAAIQIgBEECaiEEDAELIAEgBGooAAAhAiAEQQRqIQQLIAVBAXEhBQJ+AkACQAJAIANBf2oiA0ECTQRAIANBAWsOAgIDAQtCfyAGRQ0DGiABIARqMQAADAMLIAEgBGovAACtQoACfAwCCyABIARqKAAArQwBCyABIARqKQAACyEHIAAgBTYCICAAIAI2AhwgACAHNwMAQQAhAyAAQQA2AhQgACAHIAggBhsiBzcDCCAAIAdCgIAIIAdCgIAIVBs+AhALIAMLWwEBf0G4fyEDIAIQFiICIAFNBH8gACACakF/ai0AACIAQQNxQQJ0QaAeaigCACACaiAAQQZ2IgFBAnRBsB5qKAIAaiAAQSBxIgBFaiABRSAAQQV2cWoFQbh/CwsdACAAKAKQ4gEQWiAAQQA2AqDiASAAQgA3A5DiAQu1AwEFfyMAQZACayIKJABBuH8hBgJAIAVFDQAgBCwAACIIQf8BcSEHAkAgCEF/TARAIAdBgn9qQQF2IgggBU8NAkFsIQYgB0GBf2oiBUGAAk8NAiAEQQFqIQdBACEGA0AgBiAFTwRAIAUhBiAIIQcMAwUgACAGaiAHIAZBAXZqIgQtAABBBHY6AAAgACAGQQFyaiAELQAAQQ9xOgAAIAZBAmohBgwBCwAACwALIAcgBU8NASAAIARBAWogByAKEFMiBhADDQELIAYhBEEAIQYgAUEAQTQQECEJQQAhBQNAIAQgBkcEQCAAIAZqIggtAAAiAUELSwRAQWwhBgwDBSAJIAFBAnRqIgEgASgCAEEBajYCACAGQQFqIQZBASAILQAAdEEBdSAFaiEFDAILAAsLQWwhBiAFRQ0AIAUQFEEBaiIBQQxLDQAgAyABNgIAQQFBASABdCAFayIDEBQiAXQgA0cNACAAIARqIAFBAWoiADoAACAJIABBAnRqIgAgACgCAEEBajYCACAJKAIEIgBBAkkgAEEBcXINACACIARBAWo2AgAgB0EBaiEGCyAKQZACaiQAIAYLxhEBDH8jAEHwAGsiBSQAQWwhCwJAIANBCkkNACACLwAAIQogAi8AAiEJIAIvAAQhByAFQQhqIAQQDgJAIAMgByAJIApqakEGaiIMSQ0AIAUtAAohCCAFQdgAaiACQQZqIgIgChAGIgsQAw0BIAVBQGsgAiAKaiICIAkQBiILEAMNASAFQShqIAIgCWoiAiAHEAYiCxADDQEgBUEQaiACIAdqIAMgDGsQBiILEAMNASAAIAFqIg9BfWohECAEQQRqIQZBASELIAAgAUEDakECdiIDaiIMIANqIgIgA2oiDiEDIAIhBCAMIQcDQCALIAMgEElxBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgCS0AAyELIAcgBiAFQUBrIAgQAkECdGoiCS8BADsAACAFQUBrIAktAAIQASAJLQADIQogBCAGIAVBKGogCBACQQJ0aiIJLwEAOwAAIAVBKGogCS0AAhABIAktAAMhCSADIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgDS0AAyENIAAgC2oiCyAGIAVB2ABqIAgQAkECdGoiAC8BADsAACAFQdgAaiAALQACEAEgAC0AAyEAIAcgCmoiCiAGIAVBQGsgCBACQQJ0aiIHLwEAOwAAIAVBQGsgBy0AAhABIActAAMhByAEIAlqIgkgBiAFQShqIAgQAkECdGoiBC8BADsAACAFQShqIAQtAAIQASAELQADIQQgAyANaiIDIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgACALaiEAIAcgCmohByAEIAlqIQQgAyANLQADaiEDIAVB2ABqEA0gBUFAaxANciAFQShqEA1yIAVBEGoQDXJFIQsMAQsLIAQgDksgByACS3INAEFsIQsgACAMSw0BIAxBfWohCQNAQQAgACAJSSAFQdgAahAEGwRAIAAgBiAFQdgAaiAIEAJBAnRqIgovAQA7AAAgBUHYAGogCi0AAhABIAAgCi0AA2oiACAGIAVB2ABqIAgQAkECdGoiCi8BADsAACAFQdgAaiAKLQACEAEgACAKLQADaiEADAEFIAxBfmohCgNAIAVB2ABqEAQgACAKS3JFBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgACAJLQADaiEADAELCwNAIAAgCk0EQCAAIAYgBUHYAGogCBACQQJ0aiIJLwEAOwAAIAVB2ABqIAktAAIQASAAIAktAANqIQAMAQsLAkAgACAMTw0AIAAgBiAFQdgAaiAIEAIiAEECdGoiDC0AADoAACAMLQADQQFGBEAgBUHYAGogDC0AAhABDAELIAUoAlxBH0sNACAFQdgAaiAGIABBAnRqLQACEAEgBSgCXEEhSQ0AIAVBIDYCXAsgAkF9aiEMA0BBACAHIAxJIAVBQGsQBBsEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiIAIAYgBUFAayAIEAJBAnRqIgcvAQA7AAAgBUFAayAHLQACEAEgACAHLQADaiEHDAEFIAJBfmohDANAIAVBQGsQBCAHIAxLckUEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwNAIAcgDE0EQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwJAIAcgAk8NACAHIAYgBUFAayAIEAIiAEECdGoiAi0AADoAACACLQADQQFGBEAgBUFAayACLQACEAEMAQsgBSgCREEfSw0AIAVBQGsgBiAAQQJ0ai0AAhABIAUoAkRBIUkNACAFQSA2AkQLIA5BfWohAgNAQQAgBCACSSAFQShqEAQbBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2oiACAGIAVBKGogCBACQQJ0aiIELwEAOwAAIAVBKGogBC0AAhABIAAgBC0AA2ohBAwBBSAOQX5qIQIDQCAFQShqEAQgBCACS3JFBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsDQCAEIAJNBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsCQCAEIA5PDQAgBCAGIAVBKGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBKGogAi0AAhABDAELIAUoAixBH0sNACAFQShqIAYgAEECdGotAAIQASAFKAIsQSFJDQAgBUEgNgIsCwNAQQAgAyAQSSAFQRBqEAQbBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2oiACAGIAVBEGogCBACQQJ0aiICLwEAOwAAIAVBEGogAi0AAhABIAAgAi0AA2ohAwwBBSAPQX5qIQIDQCAFQRBqEAQgAyACS3JFBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsDQCADIAJNBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsCQCADIA9PDQAgAyAGIAVBEGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBEGogAi0AAhABDAELIAUoAhRBH0sNACAFQRBqIAYgAEECdGotAAIQASAFKAIUQSFJDQAgBUEgNgIUCyABQWwgBUHYAGoQCiAFQUBrEApxIAVBKGoQCnEgBUEQahAKcRshCwwJCwAACwALAAALAAsAAAsACwAACwALQWwhCwsgBUHwAGokACALC7UEAQ5/IwBBEGsiBiQAIAZBBGogABAOQVQhBQJAIARB3AtJDQAgBi0ABCEHIANB8ARqQQBB7AAQECEIIAdBDEsNACADQdwJaiIJIAggBkEIaiAGQQxqIAEgAhAxIhAQA0UEQCAGKAIMIgQgB0sNASADQdwFaiEPIANBpAVqIREgAEEEaiESIANBqAVqIQEgBCEFA0AgBSICQX9qIQUgCCACQQJ0aigCAEUNAAsgAkEBaiEOQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgASALaiAKNgIAIAVBAWohBSAKIAxqIQoMAQsLIAEgCjYCAEEAIQUgBigCCCELA0AgBSALRkUEQCABIAUgCWotAAAiDEECdGoiDSANKAIAIg1BAWo2AgAgDyANQQF0aiINIAw6AAEgDSAFOgAAIAVBAWohBQwBCwtBACEBIANBADYCqAUgBEF/cyAHaiEJQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgAyALaiABNgIAIAwgBSAJanQgAWohASAFQQFqIQUMAQsLIAcgBEEBaiIBIAJrIgRrQQFqIQgDQEEBIQUgBCAIT0UEQANAIAUgDk9FBEAgBUECdCIJIAMgBEE0bGpqIAMgCWooAgAgBHY2AgAgBUEBaiEFDAELCyAEQQFqIQQMAQsLIBIgByAPIAogESADIAIgARBkIAZBAToABSAGIAc6AAYgACAGKAIENgIACyAQIQULIAZBEGokACAFC8ENAQt/IwBB8ABrIgUkAEFsIQkCQCADQQpJDQAgAi8AACEKIAIvAAIhDCACLwAEIQYgBUEIaiAEEA4CQCADIAYgCiAMampBBmoiDUkNACAFLQAKIQcgBUHYAGogAkEGaiICIAoQBiIJEAMNASAFQUBrIAIgCmoiAiAMEAYiCRADDQEgBUEoaiACIAxqIgIgBhAGIgkQAw0BIAVBEGogAiAGaiADIA1rEAYiCRADDQEgACABaiIOQX1qIQ8gBEEEaiEGQQEhCSAAIAFBA2pBAnYiAmoiCiACaiIMIAJqIg0hAyAMIQQgCiECA0AgCSADIA9JcQRAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAACAGIAVBQGsgBxACQQF0aiIILQAAIQsgBUFAayAILQABEAEgAiALOgAAIAYgBUEoaiAHEAJBAXRqIggtAAAhCyAFQShqIAgtAAEQASAEIAs6AAAgBiAFQRBqIAcQAkEBdGoiCC0AACELIAVBEGogCC0AARABIAMgCzoAACAGIAVB2ABqIAcQAkEBdGoiCC0AACELIAVB2ABqIAgtAAEQASAAIAs6AAEgBiAFQUBrIAcQAkEBdGoiCC0AACELIAVBQGsgCC0AARABIAIgCzoAASAGIAVBKGogBxACQQF0aiIILQAAIQsgBUEoaiAILQABEAEgBCALOgABIAYgBUEQaiAHEAJBAXRqIggtAAAhCyAFQRBqIAgtAAEQASADIAs6AAEgA0ECaiEDIARBAmohBCACQQJqIQIgAEECaiEAIAkgBUHYAGoQDUVxIAVBQGsQDUVxIAVBKGoQDUVxIAVBEGoQDUVxIQkMAQsLIAQgDUsgAiAMS3INAEFsIQkgACAKSw0BIApBfWohCQNAIAVB2ABqEAQgACAJT3JFBEAgBiAFQdgAaiAHEAJBAXRqIggtAAAhCyAFQdgAaiAILQABEAEgACALOgAAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAASAAQQJqIQAMAQsLA0AgBUHYAGoQBCAAIApPckUEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCwNAIAAgCkkEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCyAMQX1qIQADQCAFQUBrEAQgAiAAT3JFBEAgBiAFQUBrIAcQAkEBdGoiCi0AACEJIAVBQGsgCi0AARABIAIgCToAACAGIAVBQGsgBxACQQF0aiIKLQAAIQkgBUFAayAKLQABEAEgAiAJOgABIAJBAmohAgwBCwsDQCAFQUBrEAQgAiAMT3JFBEAgBiAFQUBrIAcQAkEBdGoiAC0AACEKIAVBQGsgAC0AARABIAIgCjoAACACQQFqIQIMAQsLA0AgAiAMSQRAIAYgBUFAayAHEAJBAXRqIgAtAAAhCiAFQUBrIAAtAAEQASACIAo6AAAgAkEBaiECDAELCyANQX1qIQADQCAFQShqEAQgBCAAT3JFBEAgBiAFQShqIAcQAkEBdGoiAi0AACEKIAVBKGogAi0AARABIAQgCjoAACAGIAVBKGogBxACQQF0aiICLQAAIQogBUEoaiACLQABEAEgBCAKOgABIARBAmohBAwBCwsDQCAFQShqEAQgBCANT3JFBEAgBiAFQShqIAcQAkEBdGoiAC0AACECIAVBKGogAC0AARABIAQgAjoAACAEQQFqIQQMAQsLA0AgBCANSQRAIAYgBUEoaiAHEAJBAXRqIgAtAAAhAiAFQShqIAAtAAEQASAEIAI6AAAgBEEBaiEEDAELCwNAIAVBEGoQBCADIA9PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIAYgBUEQaiAHEAJBAXRqIgAtAAAhAiAFQRBqIAAtAAEQASADIAI6AAEgA0ECaiEDDAELCwNAIAVBEGoQBCADIA5PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIANBAWohAwwBCwsDQCADIA5JBEAgBiAFQRBqIAcQAkEBdGoiAC0AACECIAVBEGogAC0AARABIAMgAjoAACADQQFqIQMMAQsLIAFBbCAFQdgAahAKIAVBQGsQCnEgBUEoahAKcSAFQRBqEApxGyEJDAELQWwhCQsgBUHwAGokACAJC8oCAQR/IwBBIGsiBSQAIAUgBBAOIAUtAAIhByAFQQhqIAIgAxAGIgIQA0UEQCAEQQRqIQIgACABaiIDQX1qIQQDQCAFQQhqEAQgACAET3JFBEAgAiAFQQhqIAcQAkEBdGoiBi0AACEIIAVBCGogBi0AARABIAAgCDoAACACIAVBCGogBxACQQF0aiIGLQAAIQggBUEIaiAGLQABEAEgACAIOgABIABBAmohAAwBCwsDQCAFQQhqEAQgACADT3JFBEAgAiAFQQhqIAcQAkEBdGoiBC0AACEGIAVBCGogBC0AARABIAAgBjoAACAAQQFqIQAMAQsLA0AgACADT0UEQCACIAVBCGogBxACQQF0aiIELQAAIQYgBUEIaiAELQABEAEgACAGOgAAIABBAWohAAwBCwsgAUFsIAVBCGoQChshAgsgBUEgaiQAIAILtgMBCX8jAEEQayIGJAAgBkEANgIMIAZBADYCCEFUIQQCQAJAIANBQGsiDCADIAZBCGogBkEMaiABIAIQMSICEAMNACAGQQRqIAAQDiAGKAIMIgcgBi0ABEEBaksNASAAQQRqIQogBkEAOgAFIAYgBzoABiAAIAYoAgQ2AgAgB0EBaiEJQQEhBANAIAQgCUkEQCADIARBAnRqIgEoAgAhACABIAU2AgAgACAEQX9qdCAFaiEFIARBAWohBAwBCwsgB0EBaiEHQQAhBSAGKAIIIQkDQCAFIAlGDQEgAyAFIAxqLQAAIgRBAnRqIgBBASAEdEEBdSILIAAoAgAiAWoiADYCACAHIARrIQhBACEEAkAgC0EDTQRAA0AgBCALRg0CIAogASAEakEBdGoiACAIOgABIAAgBToAACAEQQFqIQQMAAALAAsDQCABIABPDQEgCiABQQF0aiIEIAg6AAEgBCAFOgAAIAQgCDoAAyAEIAU6AAIgBCAIOgAFIAQgBToABCAEIAg6AAcgBCAFOgAGIAFBBGohAQwAAAsACyAFQQFqIQUMAAALAAsgAiEECyAGQRBqJAAgBAutAQECfwJAQYQgKAIAIABHIAAoAgBBAXYiAyABa0F4aiICQXhxQQhHcgR/IAIFIAMQJ0UNASACQQhqC0EQSQ0AIAAgACgCACICQQFxIAAgAWpBD2pBeHEiASAAa0EBdHI2AgAgASAANgIEIAEgASgCAEEBcSAAIAJBAXZqIAFrIgJBAXRyNgIAQYQgIAEgAkH/////B3FqQQRqQYQgKAIAIABGGyABNgIAIAEQJQsLygIBBX8CQAJAAkAgAEEIIABBCEsbZ0EfcyAAaUEBR2oiAUEESSAAIAF2cg0AIAFBAnRB/B5qKAIAIgJFDQADQCACQXhqIgMoAgBBAXZBeGoiBSAATwRAIAIgBUEIIAVBCEsbZ0Efc0ECdEGAH2oiASgCAEYEQCABIAIoAgQ2AgALDAMLIARBHksNASAEQQFqIQQgAigCBCICDQALC0EAIQMgAUEgTw0BA0AgAUECdEGAH2ooAgAiAkUEQCABQR5LIQIgAUEBaiEBIAJFDQEMAwsLIAIgAkF4aiIDKAIAQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgBGBEAgASACKAIENgIACwsgAigCACIBBEAgASACKAIENgIECyACKAIEIgEEQCABIAIoAgA2AgALIAMgAygCAEEBcjYCACADIAAQNwsgAwvhCwINfwV+IwBB8ABrIgckACAHIAAoAvDhASIINgJcIAEgAmohDSAIIAAoAoDiAWohDwJAAkAgBUUEQCABIQQMAQsgACgCxOABIRAgACgCwOABIREgACgCvOABIQ4gAEEBNgKM4QFBACEIA0AgCEEDRwRAIAcgCEECdCICaiAAIAJqQazQAWooAgA2AkQgCEEBaiEIDAELC0FsIQwgB0EYaiADIAQQBhADDQEgB0EsaiAHQRhqIAAoAgAQEyAHQTRqIAdBGGogACgCCBATIAdBPGogB0EYaiAAKAIEEBMgDUFgaiESIAEhBEEAIQwDQCAHKAIwIAcoAixBA3RqKQIAIhRCEIinQf8BcSEIIAcoAkAgBygCPEEDdGopAgAiFUIQiKdB/wFxIQsgBygCOCAHKAI0QQN0aikCACIWQiCIpyEJIBVCIIghFyAUQiCIpyECAkAgFkIQiKdB/wFxIgNBAk8EQAJAIAZFIANBGUlyRQRAIAkgB0EYaiADQSAgBygCHGsiCiAKIANLGyIKEAUgAyAKayIDdGohCSAHQRhqEAQaIANFDQEgB0EYaiADEAUgCWohCQwBCyAHQRhqIAMQBSAJaiEJIAdBGGoQBBoLIAcpAkQhGCAHIAk2AkQgByAYNwNIDAELAkAgA0UEQCACBEAgBygCRCEJDAMLIAcoAkghCQwBCwJAAkAgB0EYakEBEAUgCSACRWpqIgNBA0YEQCAHKAJEQX9qIgMgA0VqIQkMAQsgA0ECdCAHaigCRCIJIAlFaiEJIANBAUYNAQsgByAHKAJINgJMCwsgByAHKAJENgJIIAcgCTYCRAsgF6chAyALBEAgB0EYaiALEAUgA2ohAwsgCCALakEUTwRAIAdBGGoQBBoLIAgEQCAHQRhqIAgQBSACaiECCyAHQRhqEAQaIAcgB0EYaiAUQhiIp0H/AXEQCCAUp0H//wNxajYCLCAHIAdBGGogFUIYiKdB/wFxEAggFadB//8DcWo2AjwgB0EYahAEGiAHIAdBGGogFkIYiKdB/wFxEAggFqdB//8DcWo2AjQgByACNgJgIAcoAlwhCiAHIAk2AmggByADNgJkAkACQAJAIAQgAiADaiILaiASSw0AIAIgCmoiEyAPSw0AIA0gBGsgC0Egak8NAQsgByAHKQNoNwMQIAcgBykDYDcDCCAEIA0gB0EIaiAHQdwAaiAPIA4gESAQEB4hCwwBCyACIARqIQggBCAKEAcgAkERTwRAIARBEGohAgNAIAIgCkEQaiIKEAcgAkEQaiICIAhJDQALCyAIIAlrIQIgByATNgJcIAkgCCAOa0sEQCAJIAggEWtLBEBBbCELDAILIBAgAiAOayICaiIKIANqIBBNBEAgCCAKIAMQDxoMAgsgCCAKQQAgAmsQDyEIIAcgAiADaiIDNgJkIAggAmshCCAOIQILIAlBEE8EQCADIAhqIQMDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALDAELAkAgCUEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgCUECdCIDQcAeaigCAGoiAhAXIAIgA0HgHmooAgBrIQIgBygCZCEDDAELIAggAhAMCyADQQlJDQAgAyAIaiEDIAhBCGoiCCACQQhqIgJrQQ9MBEADQCAIIAIQDCACQQhqIQIgCEEIaiIIIANJDQAMAgALAAsDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALCyAHQRhqEAQaIAsgDCALEAMiAhshDCAEIAQgC2ogAhshBCAFQX9qIgUNAAsgDBADDQFBbCEMIAdBGGoQBEECSQ0BQQAhCANAIAhBA0cEQCAAIAhBAnQiAmpBrNABaiACIAdqKAJENgIAIAhBAWohCAwBCwsgBygCXCEIC0G6fyEMIA8gCGsiACANIARrSw0AIAQEfyAEIAggABALIABqBUEACyABayEMCyAHQfAAaiQAIAwLkRcCFn8FfiMAQdABayIHJAAgByAAKALw4QEiCDYCvAEgASACaiESIAggACgCgOIBaiETAkACQCAFRQRAIAEhAwwBCyAAKALE4AEhESAAKALA4AEhFSAAKAK84AEhDyAAQQE2AozhAUEAIQgDQCAIQQNHBEAgByAIQQJ0IgJqIAAgAmpBrNABaigCADYCVCAIQQFqIQgMAQsLIAcgETYCZCAHIA82AmAgByABIA9rNgJoQWwhECAHQShqIAMgBBAGEAMNASAFQQQgBUEESBshFyAHQTxqIAdBKGogACgCABATIAdBxABqIAdBKGogACgCCBATIAdBzABqIAdBKGogACgCBBATQQAhBCAHQeAAaiEMIAdB5ABqIQoDQCAHQShqEARBAksgBCAXTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEJIAcoAkggBygCREEDdGopAgAiH0IgiKchCCAeQiCIISAgHUIgiKchAgJAIB9CEIinQf8BcSIDQQJPBEACQCAGRSADQRlJckUEQCAIIAdBKGogA0EgIAcoAixrIg0gDSADSxsiDRAFIAMgDWsiA3RqIQggB0EoahAEGiADRQ0BIAdBKGogAxAFIAhqIQgMAQsgB0EoaiADEAUgCGohCCAHQShqEAQaCyAHKQJUISEgByAINgJUIAcgITcDWAwBCwJAIANFBEAgAgRAIAcoAlQhCAwDCyAHKAJYIQgMAQsCQAJAIAdBKGpBARAFIAggAkVqaiIDQQNGBEAgBygCVEF/aiIDIANFaiEIDAELIANBAnQgB2ooAlQiCCAIRWohCCADQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAg2AlQLICCnIQMgCQRAIAdBKGogCRAFIANqIQMLIAkgC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgAmohAgsgB0EoahAEGiAHIAcoAmggAmoiCSADajYCaCAKIAwgCCAJSxsoAgAhDSAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogB0EoaiAfQhiIp0H/AXEQCCEOIAdB8ABqIARBBHRqIgsgCSANaiAIazYCDCALIAg2AgggCyADNgIEIAsgAjYCACAHIA4gH6dB//8DcWo2AkQgBEEBaiEEDAELCyAEIBdIDQEgEkFgaiEYIAdB4ABqIRogB0HkAGohGyABIQMDQCAHQShqEARBAksgBCAFTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEIIAcoAkggBygCREEDdGopAgAiH0IgiKchCSAeQiCIISAgHUIgiKchDAJAIB9CEIinQf8BcSICQQJPBEACQCAGRSACQRlJckUEQCAJIAdBKGogAkEgIAcoAixrIgogCiACSxsiChAFIAIgCmsiAnRqIQkgB0EoahAEGiACRQ0BIAdBKGogAhAFIAlqIQkMAQsgB0EoaiACEAUgCWohCSAHQShqEAQaCyAHKQJUISEgByAJNgJUIAcgITcDWAwBCwJAIAJFBEAgDARAIAcoAlQhCQwDCyAHKAJYIQkMAQsCQAJAIAdBKGpBARAFIAkgDEVqaiICQQNGBEAgBygCVEF/aiICIAJFaiEJDAELIAJBAnQgB2ooAlQiCSAJRWohCSACQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAk2AlQLICCnIRQgCARAIAdBKGogCBAFIBRqIRQLIAggC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgDGohDAsgB0EoahAEGiAHIAcoAmggDGoiGSAUajYCaCAbIBogCSAZSxsoAgAhHCAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogByAHQShqIB9CGIinQf8BcRAIIB+nQf//A3FqNgJEIAcgB0HwAGogBEEDcUEEdGoiDSkDCCIdNwPIASAHIA0pAwAiHjcDwAECQAJAAkAgBygCvAEiDiAepyICaiIWIBNLDQAgAyAHKALEASIKIAJqIgtqIBhLDQAgEiADayALQSBqTw0BCyAHIAcpA8gBNwMQIAcgBykDwAE3AwggAyASIAdBCGogB0G8AWogEyAPIBUgERAeIQsMAQsgAiADaiEIIAMgDhAHIAJBEU8EQCADQRBqIQIDQCACIA5BEGoiDhAHIAJBEGoiAiAISQ0ACwsgCCAdpyIOayECIAcgFjYCvAEgDiAIIA9rSwRAIA4gCCAVa0sEQEFsIQsMAgsgESACIA9rIgJqIhYgCmogEU0EQCAIIBYgChAPGgwCCyAIIBZBACACaxAPIQggByACIApqIgo2AsQBIAggAmshCCAPIQILIA5BEE8EQCAIIApqIQoDQCAIIAIQByACQRBqIQIgCEEQaiIIIApJDQALDAELAkAgDkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgDkECdCIKQcAeaigCAGoiAhAXIAIgCkHgHmooAgBrIQIgBygCxAEhCgwBCyAIIAIQDAsgCkEJSQ0AIAggCmohCiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAKSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAKSQ0ACwsgCxADBEAgCyEQDAQFIA0gDDYCACANIBkgHGogCWs2AgwgDSAJNgIIIA0gFDYCBCAEQQFqIQQgAyALaiEDDAILAAsLIAQgBUgNASAEIBdrIQtBACEEA0AgCyAFSARAIAcgB0HwAGogC0EDcUEEdGoiAikDCCIdNwPIASAHIAIpAwAiHjcDwAECQAJAAkAgBygCvAEiDCAepyICaiIKIBNLDQAgAyAHKALEASIJIAJqIhBqIBhLDQAgEiADayAQQSBqTw0BCyAHIAcpA8gBNwMgIAcgBykDwAE3AxggAyASIAdBGGogB0G8AWogEyAPIBUgERAeIRAMAQsgAiADaiEIIAMgDBAHIAJBEU8EQCADQRBqIQIDQCACIAxBEGoiDBAHIAJBEGoiAiAISQ0ACwsgCCAdpyIGayECIAcgCjYCvAEgBiAIIA9rSwRAIAYgCCAVa0sEQEFsIRAMAgsgESACIA9rIgJqIgwgCWogEU0EQCAIIAwgCRAPGgwCCyAIIAxBACACaxAPIQggByACIAlqIgk2AsQBIAggAmshCCAPIQILIAZBEE8EQCAIIAlqIQYDQCAIIAIQByACQRBqIQIgCEEQaiIIIAZJDQALDAELAkAgBkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgBkECdCIGQcAeaigCAGoiAhAXIAIgBkHgHmooAgBrIQIgBygCxAEhCQwBCyAIIAIQDAsgCUEJSQ0AIAggCWohBiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAGSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAGSQ0ACwsgEBADDQMgC0EBaiELIAMgEGohAwwBCwsDQCAEQQNHBEAgACAEQQJ0IgJqQazQAWogAiAHaigCVDYCACAEQQFqIQQMAQsLIAcoArwBIQgLQbp/IRAgEyAIayIAIBIgA2tLDQAgAwR/IAMgCCAAEAsgAGoFQQALIAFrIRALIAdB0AFqJAAgEAslACAAQgA3AgAgAEEAOwEIIABBADoACyAAIAE2AgwgACACOgAKC7QFAQN/IwBBMGsiBCQAIABB/wFqIgVBfWohBgJAIAMvAQIEQCAEQRhqIAEgAhAGIgIQAw0BIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahASOgAAIAMgBEEIaiAEQRhqEBI6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0FIAEgBEEQaiAEQRhqEBI6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBSABIARBCGogBEEYahASOgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEjoAACABIAJqIABrIQIMAwsgAyAEQRBqIARBGGoQEjoAAiADIARBCGogBEEYahASOgADIANBBGohAwwAAAsACyAEQRhqIAEgAhAGIgIQAw0AIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahAROgAAIAMgBEEIaiAEQRhqEBE6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0EIAEgBEEQaiAEQRhqEBE6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBCABIARBCGogBEEYahAROgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEToAACABIAJqIABrIQIMAgsgAyAEQRBqIARBGGoQEToAAiADIARBCGogBEEYahAROgADIANBBGohAwwAAAsACyAEQTBqJAAgAgtpAQF/An8CQAJAIAJBB00NACABKAAAQbfIwuF+Rw0AIAAgASgABDYCmOIBQWIgAEEQaiABIAIQPiIDEAMNAhogAEKBgICAEDcDiOEBIAAgASADaiACIANrECoMAQsgACABIAIQKgtBAAsLrQMBBn8jAEGAAWsiAyQAQWIhCAJAIAJBCUkNACAAQZjQAGogAUEIaiIEIAJBeGogAEGY0AAQMyIFEAMiBg0AIANBHzYCfCADIANB/ABqIANB+ABqIAQgBCAFaiAGGyIEIAEgAmoiAiAEaxAVIgUQAw0AIAMoAnwiBkEfSw0AIAMoAngiB0EJTw0AIABBiCBqIAMgBkGAC0GADCAHEBggA0E0NgJ8IAMgA0H8AGogA0H4AGogBCAFaiIEIAIgBGsQFSIFEAMNACADKAJ8IgZBNEsNACADKAJ4IgdBCk8NACAAQZAwaiADIAZBgA1B4A4gBxAYIANBIzYCfCADIANB/ABqIANB+ABqIAQgBWoiBCACIARrEBUiBRADDQAgAygCfCIGQSNLDQAgAygCeCIHQQpPDQAgACADIAZBwBBB0BEgBxAYIAQgBWoiBEEMaiIFIAJLDQAgAiAFayEFQQAhAgNAIAJBA0cEQCAEKAAAIgZBf2ogBU8NAiAAIAJBAnRqQZzQAWogBjYCACACQQFqIQIgBEEEaiEEDAELCyAEIAFrIQgLIANBgAFqJAAgCAtGAQN/IABBCGohAyAAKAIEIQJBACEAA0AgACACdkUEQCABIAMgAEEDdGotAAJBFktqIQEgAEEBaiEADAELCyABQQggAmt0C4YDAQV/Qbh/IQcCQCADRQ0AIAItAAAiBEUEQCABQQA2AgBBAUG4fyADQQFGGw8LAn8gAkEBaiIFIARBGHRBGHUiBkF/Sg0AGiAGQX9GBEAgA0EDSA0CIAUvAABBgP4BaiEEIAJBA2oMAQsgA0ECSA0BIAItAAEgBEEIdHJBgIB+aiEEIAJBAmoLIQUgASAENgIAIAVBAWoiASACIANqIgNLDQBBbCEHIABBEGogACAFLQAAIgVBBnZBI0EJIAEgAyABa0HAEEHQEUHwEiAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBmCBqIABBCGogBUEEdkEDcUEfQQggASABIAZqIAgbIgEgAyABa0GAC0GADEGAFyAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBoDBqIABBBGogBUECdkEDcUE0QQkgASABIAZqIAgbIgEgAyABa0GADUHgDkGQGSAAKAKM4QEgACgCnOIBIAQQHyIAEAMNACAAIAFqIAJrIQcLIAcLrQMBCn8jAEGABGsiCCQAAn9BUiACQf8BSw0AGkFUIANBDEsNABogAkEBaiELIABBBGohCUGAgAQgA0F/anRBEHUhCkEAIQJBASEEQQEgA3QiB0F/aiIMIQUDQCACIAtGRQRAAkAgASACQQF0Ig1qLwEAIgZB//8DRgRAIAkgBUECdGogAjoAAiAFQX9qIQVBASEGDAELIARBACAKIAZBEHRBEHVKGyEECyAIIA1qIAY7AQAgAkEBaiECDAELCyAAIAQ7AQIgACADOwEAIAdBA3YgB0EBdmpBA2ohBkEAIQRBACECA0AgBCALRkUEQCABIARBAXRqLgEAIQpBACEAA0AgACAKTkUEQCAJIAJBAnRqIAQ6AAIDQCACIAZqIAxxIgIgBUsNAAsgAEEBaiEADAELCyAEQQFqIQQMAQsLQX8gAg0AGkEAIQIDfyACIAdGBH9BAAUgCCAJIAJBAnRqIgAtAAJBAXRqIgEgAS8BACIBQQFqOwEAIAAgAyABEBRrIgU6AAMgACABIAVB/wFxdCAHazsBACACQQFqIQIMAQsLCyEFIAhBgARqJAAgBQvjBgEIf0FsIQcCQCACQQNJDQACQAJAAkACQCABLQAAIgNBA3EiCUEBaw4DAwEAAgsgACgCiOEBDQBBYg8LIAJBBUkNAkEDIQYgASgAACEFAn8CQAJAIANBAnZBA3EiCEF+aiIEQQFNBEAgBEEBaw0BDAILIAVBDnZB/wdxIQQgBUEEdkH/B3EhAyAIRQwCCyAFQRJ2IQRBBCEGIAVBBHZB//8AcSEDQQAMAQsgBUEEdkH//w9xIgNBgIAISw0DIAEtAARBCnQgBUEWdnIhBEEFIQZBAAshBSAEIAZqIgogAksNAgJAIANBgQZJDQAgACgCnOIBRQ0AQQAhAgNAIAJBg4ABSw0BIAJBQGshAgwAAAsACwJ/IAlBA0YEQCABIAZqIQEgAEHw4gFqIQIgACgCDCEGIAUEQCACIAMgASAEIAYQXwwCCyACIAMgASAEIAYQXQwBCyAAQbjQAWohAiABIAZqIQEgAEHw4gFqIQYgAEGo0ABqIQggBQRAIAggBiADIAEgBCACEF4MAQsgCCAGIAMgASAEIAIQXAsQAw0CIAAgAzYCgOIBIABBATYCiOEBIAAgAEHw4gFqNgLw4QEgCUECRgRAIAAgAEGo0ABqNgIMCyAAIANqIgBBiOMBakIANwAAIABBgOMBakIANwAAIABB+OIBakIANwAAIABB8OIBakIANwAAIAoPCwJ/AkACQAJAIANBAnZBA3FBf2oiBEECSw0AIARBAWsOAgACAQtBASEEIANBA3YMAgtBAiEEIAEvAABBBHYMAQtBAyEEIAEQIUEEdgsiAyAEaiIFQSBqIAJLBEAgBSACSw0CIABB8OIBaiABIARqIAMQCyEBIAAgAzYCgOIBIAAgATYC8OEBIAEgA2oiAEIANwAYIABCADcAECAAQgA3AAggAEIANwAAIAUPCyAAIAM2AoDiASAAIAEgBGo2AvDhASAFDwsCfwJAAkACQCADQQJ2QQNxQX9qIgRBAksNACAEQQFrDgIAAgELQQEhByADQQN2DAILQQIhByABLwAAQQR2DAELIAJBBEkgARAhIgJBj4CAAUtyDQFBAyEHIAJBBHYLIQIgAEHw4gFqIAEgB2otAAAgAkEgahAQIQEgACACNgKA4gEgACABNgLw4QEgB0EBaiEHCyAHC0sAIABC+erQ0OfJoeThADcDICAAQgA3AxggAELP1tO+0ser2UI3AxAgAELW64Lu6v2J9eAANwMIIABCADcDACAAQShqQQBBKBAQGgviAgICfwV+IABBKGoiASAAKAJIaiECAn4gACkDACIDQiBaBEAgACkDECIEQgeJIAApAwgiBUIBiXwgACkDGCIGQgyJfCAAKQMgIgdCEol8IAUQGSAEEBkgBhAZIAcQGQwBCyAAKQMYQsXP2bLx5brqJ3wLIAN8IQMDQCABQQhqIgAgAk0EQEIAIAEpAAAQCSADhUIbiUKHla+vmLbem55/fkLj3MqV/M7y9YV/fCEDIAAhAQwBCwsCQCABQQRqIgAgAksEQCABIQAMAQsgASgAAK1Ch5Wvr5i23puef34gA4VCF4lCz9bTvtLHq9lCfkL5893xmfaZqxZ8IQMLA0AgACACSQRAIAAxAABCxc/ZsvHluuonfiADhUILiUKHla+vmLbem55/fiEDIABBAWohAAwBCwsgA0IhiCADhULP1tO+0ser2UJ+IgNCHYggA4VC+fPd8Zn2masWfiIDQiCIIAOFC+8CAgJ/BH4gACAAKQMAIAKtfDcDAAJAAkAgACgCSCIDIAJqIgRBH00EQCABRQ0BIAAgA2pBKGogASACECAgACgCSCACaiEEDAELIAEgAmohAgJ/IAMEQCAAQShqIgQgA2ogAUEgIANrECAgACAAKQMIIAQpAAAQCTcDCCAAIAApAxAgACkAMBAJNwMQIAAgACkDGCAAKQA4EAk3AxggACAAKQMgIABBQGspAAAQCTcDICAAKAJIIQMgAEEANgJIIAEgA2tBIGohAQsgAUEgaiACTQsEQCACQWBqIQMgACkDICEFIAApAxghBiAAKQMQIQcgACkDCCEIA0AgCCABKQAAEAkhCCAHIAEpAAgQCSEHIAYgASkAEBAJIQYgBSABKQAYEAkhBSABQSBqIgEgA00NAAsgACAFNwMgIAAgBjcDGCAAIAc3AxAgACAINwMICyABIAJPDQEgAEEoaiABIAIgAWsiBBAgCyAAIAQ2AkgLCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQEBogAwVBun8LCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQCxogAwVBun8LC6gCAQZ/IwBBEGsiByQAIABB2OABaikDAEKAgIAQViEIQbh/IQUCQCAEQf//B0sNACAAIAMgBBBCIgUQAyIGDQAgACgCnOIBIQkgACAHQQxqIAMgAyAFaiAGGyIKIARBACAFIAYbayIGEEAiAxADBEAgAyEFDAELIAcoAgwhBCABRQRAQbp/IQUgBEEASg0BCyAGIANrIQUgAyAKaiEDAkAgCQRAIABBADYCnOIBDAELAkACQAJAIARBBUgNACAAQdjgAWopAwBCgICACFgNAAwBCyAAQQA2ApziAQwBCyAAKAIIED8hBiAAQQA2ApziASAGQRRPDQELIAAgASACIAMgBSAEIAgQOSEFDAELIAAgASACIAMgBSAEIAgQOiEFCyAHQRBqJAAgBQtnACAAQdDgAWogASACIAAoAuzhARAuIgEQAwRAIAEPC0G4fyECAkAgAQ0AIABB7OABaigCACIBBEBBYCECIAAoApjiASABRw0BC0EAIQIgAEHw4AFqKAIARQ0AIABBkOEBahBDCyACCycBAX8QVyIERQRAQUAPCyAEIAAgASACIAMgBBBLEE8hACAEEFYgAAs/AQF/AkACQAJAIAAoAqDiAUEBaiIBQQJLDQAgAUEBaw4CAAECCyAAEDBBAA8LIABBADYCoOIBCyAAKAKU4gELvAMCB38BfiMAQRBrIgkkAEG4fyEGAkAgBCgCACIIQQVBCSAAKALs4QEiBRtJDQAgAygCACIHQQFBBSAFGyAFEC8iBRADBEAgBSEGDAELIAggBUEDakkNACAAIAcgBRBJIgYQAw0AIAEgAmohCiAAQZDhAWohCyAIIAVrIQIgBSAHaiEHIAEhBQNAIAcgAiAJECwiBhADDQEgAkF9aiICIAZJBEBBuH8hBgwCCyAJKAIAIghBAksEQEFsIQYMAgsgB0EDaiEHAn8CQAJAAkAgCEEBaw4CAgABCyAAIAUgCiAFayAHIAYQSAwCCyAFIAogBWsgByAGEEcMAQsgBSAKIAVrIActAAAgCSgCCBBGCyIIEAMEQCAIIQYMAgsgACgC8OABBEAgCyAFIAgQRQsgAiAGayECIAYgB2ohByAFIAhqIQUgCSgCBEUNAAsgACkD0OABIgxCf1IEQEFsIQYgDCAFIAFrrFINAQsgACgC8OABBEBBaiEGIAJBBEkNASALEEQhDCAHKAAAIAynRw0BIAdBBGohByACQXxqIQILIAMgBzYCACAEIAI2AgAgBSABayEGCyAJQRBqJAAgBgsuACAAECsCf0EAQQAQAw0AGiABRSACRXJFBEBBYiAAIAEgAhA9EAMNARoLQQALCzcAIAEEQCAAIAAoAsTgASABKAIEIAEoAghqRzYCnOIBCyAAECtBABADIAFFckUEQCAAIAEQWwsL0QIBB38jAEEQayIGJAAgBiAENgIIIAYgAzYCDCAFBEAgBSgCBCEKIAUoAgghCQsgASEIAkACQANAIAAoAuzhARAWIQsCQANAIAQgC0kNASADKAAAQXBxQdDUtMIBRgRAIAMgBBAiIgcQAw0EIAQgB2shBCADIAdqIQMMAQsLIAYgAzYCDCAGIAQ2AggCQCAFBEAgACAFEE5BACEHQQAQA0UNAQwFCyAAIAogCRBNIgcQAw0ECyAAIAgQUCAMQQFHQQAgACAIIAIgBkEMaiAGQQhqEEwiByIDa0EAIAMQAxtBCkdyRQRAQbh/IQcMBAsgBxADDQMgAiAHayECIAcgCGohCEEBIQwgBigCDCEDIAYoAgghBAwBCwsgBiADNgIMIAYgBDYCCEG4fyEHIAQNASAIIAFrIQcMAQsgBiADNgIMIAYgBDYCCAsgBkEQaiQAIAcLRgECfyABIAAoArjgASICRwRAIAAgAjYCxOABIAAgATYCuOABIAAoArzgASEDIAAgATYCvOABIAAgASADIAJrajYCwOABCwutAgIEfwF+IwBBQGoiBCQAAkACQCACQQhJDQAgASgAAEFwcUHQ1LTCAUcNACABIAIQIiEBIABCADcDCCAAQQA2AgQgACABNgIADAELIARBGGogASACEC0iAxADBEAgACADEBoMAQsgAwRAIABBuH8QGgwBCyACIAQoAjAiA2shAiABIANqIQMDQAJAIAAgAyACIARBCGoQLCIFEAMEfyAFBSACIAVBA2oiBU8NAUG4fwsQGgwCCyAGQQFqIQYgAiAFayECIAMgBWohAyAEKAIMRQ0ACyAEKAI4BEAgAkEDTQRAIABBuH8QGgwCCyADQQRqIQMLIAQoAighAiAEKQMYIQcgAEEANgIEIAAgAyABazYCACAAIAIgBmytIAcgB0J/URs3AwgLIARBQGskAAslAQF/IwBBEGsiAiQAIAIgACABEFEgAigCACEAIAJBEGokACAAC30BBH8jAEGQBGsiBCQAIARB/wE2AggCQCAEQRBqIARBCGogBEEMaiABIAIQFSIGEAMEQCAGIQUMAQtBVCEFIAQoAgwiB0EGSw0AIAMgBEEQaiAEKAIIIAcQQSIFEAMNACAAIAEgBmogAiAGayADEDwhBQsgBEGQBGokACAFC4cBAgJ/An5BABAWIQMCQANAIAEgA08EQAJAIAAoAABBcHFB0NS0wgFGBEAgACABECIiAhADRQ0BQn4PCyAAIAEQVSIEQn1WDQMgBCAFfCIFIARUIQJCfiEEIAINAyAAIAEQUiICEAMNAwsgASACayEBIAAgAmohAAwBCwtCfiAFIAEbIQQLIAQLPwIBfwF+IwBBMGsiAiQAAn5CfiACQQhqIAAgARAtDQAaQgAgAigCHEEBRg0AGiACKQMICyEDIAJBMGokACADC40BAQJ/IwBBMGsiASQAAkAgAEUNACAAKAKI4gENACABIABB/OEBaigCADYCKCABIAApAvThATcDICAAEDAgACgCqOIBIQIgASABKAIoNgIYIAEgASkDIDcDECACIAFBEGoQGyAAQQA2AqjiASABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALKgECfyMAQRBrIgAkACAAQQA2AgggAEIANwMAIAAQWCEBIABBEGokACABC4cBAQN/IwBBEGsiAiQAAkAgACgCAEUgACgCBEVzDQAgAiAAKAIINgIIIAIgACkCADcDAAJ/IAIoAgAiAQRAIAIoAghBqOMJIAERBQAMAQtBqOMJECgLIgFFDQAgASAAKQIANwL04QEgAUH84QFqIAAoAgg2AgAgARBZIAEhAwsgAkEQaiQAIAMLywEBAn8jAEEgayIBJAAgAEGBgIDAADYCtOIBIABBADYCiOIBIABBADYC7OEBIABCADcDkOIBIABBADYCpOMJIABBADYC3OIBIABCADcCzOIBIABBADYCvOIBIABBADYCxOABIABCADcCnOIBIABBpOIBakIANwIAIABBrOIBakEANgIAIAFCADcCECABQgA3AhggASABKQMYNwMIIAEgASkDEDcDACABKAIIQQh2QQFxIQIgAEEANgLg4gEgACACNgKM4gEgAUEgaiQAC3YBA38jAEEwayIBJAAgAARAIAEgAEHE0AFqIgIoAgA2AiggASAAKQK80AE3AyAgACgCACEDIAEgAigCADYCGCABIAApArzQATcDECADIAFBEGoQGyABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALzAEBAX8gACABKAK00AE2ApjiASAAIAEoAgQiAjYCwOABIAAgAjYCvOABIAAgAiABKAIIaiICNgK44AEgACACNgLE4AEgASgCuNABBEAgAEKBgICAEDcDiOEBIAAgAUGk0ABqNgIMIAAgAUGUIGo2AgggACABQZwwajYCBCAAIAFBDGo2AgAgAEGs0AFqIAFBqNABaigCADYCACAAQbDQAWogAUGs0AFqKAIANgIAIABBtNABaiABQbDQAWooAgA2AgAPCyAAQgA3A4jhAQs7ACACRQRAQbp/DwsgBEUEQEFsDwsgAiAEEGAEQCAAIAEgAiADIAQgBRBhDwsgACABIAIgAyAEIAUQZQtGAQF/IwBBEGsiBSQAIAVBCGogBBAOAn8gBS0ACQRAIAAgASACIAMgBBAyDAELIAAgASACIAMgBBA0CyEAIAVBEGokACAACzQAIAAgAyAEIAUQNiIFEAMEQCAFDwsgBSAESQR/IAEgAiADIAVqIAQgBWsgABA1BUG4fwsLRgEBfyMAQRBrIgUkACAFQQhqIAQQDgJ/IAUtAAkEQCAAIAEgAiADIAQQYgwBCyAAIAEgAiADIAQQNQshACAFQRBqJAAgAAtZAQF/QQ8hAiABIABJBEAgAUEEdCAAbiECCyAAQQh2IgEgAkEYbCIAQYwIaigCAGwgAEGICGooAgBqIgJBA3YgAmogAEGACGooAgAgAEGECGooAgAgAWxqSQs3ACAAIAMgBCAFQYAQEDMiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQMgVBuH8LC78DAQN/IwBBIGsiBSQAIAVBCGogAiADEAYiAhADRQRAIAAgAWoiB0F9aiEGIAUgBBAOIARBBGohAiAFLQACIQMDQEEAIAAgBkkgBUEIahAEGwRAIAAgAiAFQQhqIAMQAkECdGoiBC8BADsAACAFQQhqIAQtAAIQASAAIAQtAANqIgQgAiAFQQhqIAMQAkECdGoiAC8BADsAACAFQQhqIAAtAAIQASAEIAAtAANqIQAMAQUgB0F+aiEEA0AgBUEIahAEIAAgBEtyRQRAIAAgAiAFQQhqIAMQAkECdGoiBi8BADsAACAFQQhqIAYtAAIQASAAIAYtAANqIQAMAQsLA0AgACAES0UEQCAAIAIgBUEIaiADEAJBAnRqIgYvAQA7AAAgBUEIaiAGLQACEAEgACAGLQADaiEADAELCwJAIAAgB08NACAAIAIgBUEIaiADEAIiA0ECdGoiAC0AADoAACAALQADQQFGBEAgBUEIaiAALQACEAEMAQsgBSgCDEEfSw0AIAVBCGogAiADQQJ0ai0AAhABIAUoAgxBIUkNACAFQSA2AgwLIAFBbCAFQQhqEAobIQILCwsgBUEgaiQAIAILkgIBBH8jAEFAaiIJJAAgCSADQTQQCyEDAkAgBEECSA0AIAMgBEECdGooAgAhCSADQTxqIAgQIyADQQE6AD8gAyACOgA+QQAhBCADKAI8IQoDQCAEIAlGDQEgACAEQQJ0aiAKNgEAIARBAWohBAwAAAsAC0EAIQkDQCAGIAlGRQRAIAMgBSAJQQF0aiIKLQABIgtBAnRqIgwoAgAhBCADQTxqIAotAABBCHQgCGpB//8DcRAjIANBAjoAPyADIAcgC2siCiACajoAPiAEQQEgASAKa3RqIQogAygCPCELA0AgACAEQQJ0aiALNgEAIARBAWoiBCAKSQ0ACyAMIAo2AgAgCUEBaiEJDAELCyADQUBrJAALowIBCX8jAEHQAGsiCSQAIAlBEGogBUE0EAsaIAcgBmshDyAHIAFrIRADQAJAIAMgCkcEQEEBIAEgByACIApBAXRqIgYtAAEiDGsiCGsiC3QhDSAGLQAAIQ4gCUEQaiAMQQJ0aiIMKAIAIQYgCyAPTwRAIAAgBkECdGogCyAIIAUgCEE0bGogCCAQaiIIQQEgCEEBShsiCCACIAQgCEECdGooAgAiCEEBdGogAyAIayAHIA4QYyAGIA1qIQgMAgsgCUEMaiAOECMgCUEBOgAPIAkgCDoADiAGIA1qIQggCSgCDCELA0AgBiAITw0CIAAgBkECdGogCzYBACAGQQFqIQYMAAALAAsgCUHQAGokAA8LIAwgCDYCACAKQQFqIQoMAAALAAs0ACAAIAMgBCAFEDYiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQNAVBuH8LCyMAIAA/AEEQdGtB//8DakEQdkAAQX9GBEBBAA8LQQAQAEEBCzsBAX8gAgRAA0AgACABIAJBgCAgAkGAIEkbIgMQCyEAIAFBgCBqIQEgAEGAIGohACACIANrIgINAAsLCwYAIAAQAwsLqBUJAEGICAsNAQAAAAEAAAACAAAAAgBBoAgLswYBAAAAAQAAAAIAAAACAAAAJgAAAIIAAAAhBQAASgAAAGcIAAAmAAAAwAEAAIAAAABJBQAASgAAAL4IAAApAAAALAIAAIAAAABJBQAASgAAAL4IAAAvAAAAygIAAIAAAACKBQAASgAAAIQJAAA1AAAAcwMAAIAAAACdBQAASgAAAKAJAAA9AAAAgQMAAIAAAADrBQAASwAAAD4KAABEAAAAngMAAIAAAABNBgAASwAAAKoKAABLAAAAswMAAIAAAADBBgAATQAAAB8NAABNAAAAUwQAAIAAAAAjCAAAUQAAAKYPAABUAAAAmQQAAIAAAABLCQAAVwAAALESAABYAAAA2gQAAIAAAABvCQAAXQAAACMUAABUAAAARQUAAIAAAABUCgAAagAAAIwUAABqAAAArwUAAIAAAAB2CQAAfAAAAE4QAAB8AAAA0gIAAIAAAABjBwAAkQAAAJAHAACSAAAAAAAAAAEAAAABAAAABQAAAA0AAAAdAAAAPQAAAH0AAAD9AAAA/QEAAP0DAAD9BwAA/Q8AAP0fAAD9PwAA/X8AAP3/AAD9/wEA/f8DAP3/BwD9/w8A/f8fAP3/PwD9/38A/f//AP3//wH9//8D/f//B/3//w/9//8f/f//P/3//38AAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACUAAAAnAAAAKQAAACsAAAAvAAAAMwAAADsAAABDAAAAUwAAAGMAAACDAAAAAwEAAAMCAAADBAAAAwgAAAMQAAADIAAAA0AAAAOAAAADAAEAQeAPC1EBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAQcQQC4sBAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABIAAAAUAAAAFgAAABgAAAAcAAAAIAAAACgAAAAwAAAAQAAAAIAAAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAQAAAAIAAAAAAAQBBkBIL5gQBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAAAEAAAAEAAAACAAAAAAAAAABAAEBBgAAAAAAAAQAAAAAEAAABAAAAAAgAAAFAQAAAAAAAAUDAAAAAAAABQQAAAAAAAAFBgAAAAAAAAUHAAAAAAAABQkAAAAAAAAFCgAAAAAAAAUMAAAAAAAABg4AAAAAAAEFEAAAAAAAAQUUAAAAAAABBRYAAAAAAAIFHAAAAAAAAwUgAAAAAAAEBTAAAAAgAAYFQAAAAAAABwWAAAAAAAAIBgABAAAAAAoGAAQAAAAADAYAEAAAIAAABAAAAAAAAAAEAQAAAAAAAAUCAAAAIAAABQQAAAAAAAAFBQAAACAAAAUHAAAAAAAABQgAAAAgAAAFCgAAAAAAAAULAAAAAAAABg0AAAAgAAEFEAAAAAAAAQUSAAAAIAABBRYAAAAAAAIFGAAAACAAAwUgAAAAAAADBSgAAAAAAAYEQAAAABAABgRAAAAAIAAHBYAAAAAAAAkGAAIAAAAACwYACAAAMAAABAAAAAAQAAAEAQAAACAAAAUCAAAAIAAABQMAAAAgAAAFBQAAACAAAAUGAAAAIAAABQgAAAAgAAAFCQAAACAAAAULAAAAIAAABQwAAAAAAAAGDwAAACAAAQUSAAAAIAABBRQAAAAgAAIFGAAAACAAAgUcAAAAIAADBSgAAAAgAAQFMAAAAAAAEAYAAAEAAAAPBgCAAAAAAA4GAEAAAAAADQYAIABBgBcLhwIBAAEBBQAAAAAAAAUAAAAAAAAGBD0AAAAAAAkF/QEAAAAADwX9fwAAAAAVBf3/HwAAAAMFBQAAAAAABwR9AAAAAAAMBf0PAAAAABIF/f8DAAAAFwX9/38AAAAFBR0AAAAAAAgE/QAAAAAADgX9PwAAAAAUBf3/DwAAAAIFAQAAABAABwR9AAAAAAALBf0HAAAAABEF/f8BAAAAFgX9/z8AAAAEBQ0AAAAQAAgE/QAAAAAADQX9HwAAAAATBf3/BwAAAAEFAQAAABAABgQ9AAAAAAAKBf0DAAAAABAF/f8AAAAAHAX9//8PAAAbBf3//wcAABoF/f//AwAAGQX9//8BAAAYBf3//wBBkBkLhgQBAAEBBgAAAAAAAAYDAAAAAAAABAQAAAAgAAAFBQAAAAAAAAUGAAAAAAAABQgAAAAAAAAFCQAAAAAAAAULAAAAAAAABg0AAAAAAAAGEAAAAAAAAAYTAAAAAAAABhYAAAAAAAAGGQAAAAAAAAYcAAAAAAAABh8AAAAAAAAGIgAAAAAAAQYlAAAAAAABBikAAAAAAAIGLwAAAAAAAwY7AAAAAAAEBlMAAAAAAAcGgwAAAAAACQYDAgAAEAAABAQAAAAAAAAEBQAAACAAAAUGAAAAAAAABQcAAAAgAAAFCQAAAAAAAAUKAAAAAAAABgwAAAAAAAAGDwAAAAAAAAYSAAAAAAAABhUAAAAAAAAGGAAAAAAAAAYbAAAAAAAABh4AAAAAAAAGIQAAAAAAAQYjAAAAAAABBicAAAAAAAIGKwAAAAAAAwYzAAAAAAAEBkMAAAAAAAUGYwAAAAAACAYDAQAAIAAABAQAAAAwAAAEBAAAABAAAAQFAAAAIAAABQcAAAAgAAAFCAAAACAAAAUKAAAAIAAABQsAAAAAAAAGDgAAAAAAAAYRAAAAAAAABhQAAAAAAAAGFwAAAAAAAAYaAAAAAAAABh0AAAAAAAAGIAAAAAAAEAYDAAEAAAAPBgOAAAAAAA4GA0AAAAAADQYDIAAAAAAMBgMQAAAAAAsGAwgAAAAACgYDBABBpB0L2QEBAAAAAwAAAAcAAAAPAAAAHwAAAD8AAAB/AAAA/wAAAP8BAAD/AwAA/wcAAP8PAAD/HwAA/z8AAP9/AAD//wAA//8BAP//AwD//wcA//8PAP//HwD//z8A//9/AP///wD///8B////A////wf///8P////H////z////9/AAAAAAEAAAACAAAABAAAAAAAAAACAAAABAAAAAgAAAAAAAAAAQAAAAIAAAABAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAACAAAAAcAAAAIAAAACQAAAAoAAAALAEGgIAsDwBBQ';\n// wasm:end\n","import { inflate } from 'pako';\nimport Lerc from 'lerc';\nimport { ZSTDDecoder } from 'zstddec';\nimport BaseDecoder from './basedecoder.js';\nimport { LercParameters, LercAddCompression } from '../globals.js';\n\nexport const zstd = new ZSTDDecoder();\n\nexport default class LercDecoder extends BaseDecoder {\n constructor(fileDirectory) {\n super();\n\n this.planarConfiguration = typeof fileDirectory.PlanarConfiguration !== 'undefined' ? fileDirectory.PlanarConfiguration : 1;\n this.samplesPerPixel = typeof fileDirectory.SamplesPerPixel !== 'undefined' ? fileDirectory.SamplesPerPixel : 1;\n\n this.addCompression = fileDirectory.LercParameters[LercParameters.AddCompression];\n }\n\n decodeBlock(buffer) {\n switch (this.addCompression) {\n case LercAddCompression.None:\n break;\n case LercAddCompression.Deflate:\n buffer = inflate(new Uint8Array(buffer)).buffer; // eslint-disable-line no-param-reassign, prefer-destructuring\n break;\n case LercAddCompression.Zstandard:\n buffer = zstd.decode(new Uint8Array(buffer)).buffer; // eslint-disable-line no-param-reassign, prefer-destructuring\n break;\n default:\n throw new Error(`Unsupported LERC additional compression method identifier: ${this.addCompression}`);\n }\n\n const lercResult = Lerc.decode(buffer, { returnPixelInterleavedDims: this.planarConfiguration === 1 });\n const lercData = lercResult.pixels[0];\n return lercData.buffer;\n }\n}\n"],"names":["CntZImage","uncompressPixelValues","formatFileInfo","computeUsedBitDepths","parse","unstuff","a","b","LercDecode","Lerc2Decode","isPlatformLittleEndian","Lerc","input","options","skipMask","encodedMaskData","parsedData","inputOffset","noDataValue","defaultNoDataValue","uncompressedData","pixelType","Float32Array","returnMask","result","width","height","pixelData","resultPixels","minValue","maxValue","pixels","resultMask","maskData","returnEncodedMask","mask","bitset","returnFileInfo","fileInfo","bitDepths","data","TypedArrayClass","maskBitset","storeDecodedMask","currentValue","blockIdx","numX","numBlocksX","numY","numBlocksY","blockWidth","Math","floor","blockHeight","scale","maxZError","Number","MAX_VALUE","Uint8Array","xx","yy","blockDataBuffer","y","thisBlockHeight","x","thisBlockWidth","blockData","blockPtr","constValue","maskByte","outPtr","outStride","block","blocks","encoding","rawData","stuffedData","bitsPerPixel","numValidPixels","offset","fileIdentifierString","fileVersion","imageType","eofOffset","numBytes","numBlocks","i","float32","Object","keys","fp","fileIdView","String","fromCharCode","apply","trim","view","DataView","getInt32","getUint32","getFloat64","getFloat32","ceil","cnt","getInt16","ip","op","getUint8","val","length","actualNumBlocksX","actualNumBlocksY","Array","blockI","blockY","blockX","size","bytesLeft","byteLength","min","headerByte","offsetType","getInt8","numValidPixelsType","getUint16","arrayBuf","numPixels","ArrayBuffer","set","dataBytes","dataWords","Uint32Array","src","dest","o","n","buffer","bitMask","bitsLeft","nmax","numInvalidTailBytes","missingBits","BitStuffer","lutArr","bitPos","Lerc2Helpers","HUFFMAN_LUT_BITS_MAX","computeChecksumFletcher32","sum1","sum2","len","words","tlen","readHeaderInfo","ptr","headerInfo","lastIndexOf","keyLength","checksum","numDims","numValidPixel","microBlockSize","blobSize","zMin","zMax","this","checkMinMaxRanges","OutPixelTypeArray","getDataTypeArray","rangeBytes","getDataTypeSize","minValues","readSubArray","maxValues","equal","readMask","mb","k","readDataOneSweep","useBSQForOutputDim","swapDimensionOrder","z","nStart","readHuffmanTree","BITS_MAX","i0","i1","decodeBits","j","codeTable","first","second","word","srcPtr","numBitsLUTQick","numBitsLUT","tree","TreeNode","undefined","max","entry","code","numEntries","jj","node","decodeLut","right","left","readHuffman","delta","valTmp","valTmpQuick","ii","huffmanInfo","prevVal","iDim","deltaEncode","encodeMode","resultPixelsAllDim","viewByteLength","bits67","doLut","numBits","numElements","store8","lutData","lutBytes","counter","lut","unshift","bitstuffer","readTiles","dataTypeSize","blockEncoding","isDiffEncoding","resultPixelsPrevDim","row","col","bytesleft","lastBlockHeight","lastBlockWidth","fileVersionCheckNum","uncompressed","getDataTypeUsed","getOnePixel","constantoffset","constant","getPixelType","constructConstantSurface","valMin","t","tp","Int8Array","Int16Array","Uint16Array","Int32Array","Float64Array","isValidPixelValue","isValid","s","dt","tc","temp","getUInt32","inputIsBIP","swap","decode","onesweep","diff","returnPixelInterleavedDims","bReadDataOneSweep","abs","flagHuffman","validPixelCount","dimCount","dimStats","getBandCount","count","encodedData","lerc","majorVersion","substring","bandMask","iPlane","eof","bandMasks","decodedPixelBlock","statistics","uniqueBandMaskCount","push","init","instance","heap","IMPORT_OBJECT","env","emscripten_notify_memory_growth","index","exports","memory","wasm","zstd","fetch","then","response","arrayBuffer","WebAssembly","instantiate","_init","Buffer","from","array","uncompressedSize","Error","compressedSize","compressedPtr","malloc","ZSTD_findDecompressedSize","uncompressedPtr","actualSize","ZSTD_decompress","dec","slice","free","LercDecoder","constructor","fileDirectory","super","planarConfiguration","PlanarConfiguration","samplesPerPixel","SamplesPerPixel","addCompression","LercParameters","AddCompression","decodeBlock","None","Deflate","Zstandard"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/source/_static/64.embed-bundle.js b/docs/source/_static/64.embed-bundle.js new file mode 100644 index 0000000..32880fa --- /dev/null +++ b/docs/source/_static/64.embed-bundle.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[64],{708:(e,t,n)=>{function r(e,t){let n=e.length-t,r=0;do{for(let n=t;n>0;n--)e[r+t]+=e[r],r++;n-=t}while(n>0)}function o(e,t,n){let r=0,o=e.length;const i=o/n;for(;o>t;){for(let n=t;n>0;--n)e[r+t]+=e[r],++r;o-=t}const l=e.slice();for(let t=0;ti});class i{async decode(e,t){const n=await this.decodeBlock(t),i=e.Predictor||1;if(1!==i){const t=!e.StripOffsets;return function(e,t,n,i,l,s){if(!t||1===t)return e;for(let e=0;e=e.byteLength);++s){let i;if(2===t){switch(l[0]){case 8:i=new Uint8Array(e,s*f*n*c,f*n*c);break;case 16:i=new Uint16Array(e,s*f*n*c,f*n*c/2);break;case 32:i=new Uint32Array(e,s*f*n*c,f*n*c/4);break;default:throw new Error(`Predictor 2 not allowed with ${l[0]} bits per sample.`)}r(i,f)}else 3===t&&(i=new Uint8Array(e,s*f*n*c,f*n*c),o(i,f,c))}return e}(n,i,t?e.TileWidth:e.ImageWidth,t?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return n}}},2064:(e,t,n)=>{n.r(t),n.d(t,{default:()=>i});var r=n(708);function o(e,t){for(let n=t.length-1;n>=0;n--)e.push(t[n]);return e}class i extends r.A{decodeBlock(e){return function(e){const t=new Uint16Array(4093),n=new Uint8Array(4093);for(let e=0;e<=257;e++)t[e]=4096,n[e]=e;let r=258,i=9,l=0;function s(){r=258,i=9}function c(e){const t=function(e,t,n){const r=t%8,o=Math.floor(t/8),i=8-r,l=t+n-8*(o+1);let s=8*(o+2)-(t+n);const c=8*(o+2)-t;if(s=Math.max(0,s),o>=e.length)return console.warn("ran off the end of the buffer before finding EOI_CODE (end on input code)"),257;let f=e[o]&2**(8-r)-1;f<<=n-i;let a=f;if(o+1>>s;t<<=Math.max(0,n-c),a+=t}if(l>8&&o+2>>r}return a}(e,l,i);return l+=i,t}function f(e,o){return n[r]=o,t[r]=e,r++,r-1}function a(e){const r=[];for(let o=e;4096!==o;o=t[o])r.push(n[o]);return r}const h=[];s();const u=new Uint8Array(e);let d,w=c(u);for(;257!==w;){if(256===w){for(s(),w=c(u);256===w;)w=c(u);if(257===w)break;if(w>256)throw new Error(`corrupted code at scanline ${w}`);o(h,a(w)),d=w}else if(w=2**i&&(12===i?d=void 0:i++),w=c(u)}return new Uint8Array(h)}(e).buffer}}}}]); +//# sourceMappingURL=64.embed-bundle.js.map \ No newline at end of file diff --git a/docs/source/_static/64.embed-bundle.js.map b/docs/source/_static/64.embed-bundle.js.map new file mode 100644 index 0000000..43be2b3 --- /dev/null +++ b/docs/source/_static/64.embed-bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"64.embed-bundle.js","mappings":"2GAAA,SAASA,EAAaC,EAAKC,GACzB,IAAIC,EAASF,EAAIE,OAASD,EACtBE,EAAS,EACb,EAAG,CACD,IAAK,IAAIC,EAAIH,EAAQG,EAAI,EAAGA,IAC1BJ,EAAIG,EAASF,IAAWD,EAAIG,GAC5BA,IAGFD,GAAUD,CACZ,OAASC,EAAS,EACpB,CAEA,SAASG,EAAuBL,EAAKC,EAAQK,GAC3C,IAAIC,EAAQ,EACRC,EAAQR,EAAIE,OAChB,MAAMO,EAAKD,EAAQF,EAEnB,KAAOE,EAAQP,GAAQ,CACrB,IAAK,IAAIG,EAAIH,EAAQG,EAAI,IAAKA,EAC5BJ,EAAIO,EAAQN,IAAWD,EAAIO,KACzBA,EAEJC,GAASP,CACX,CAEA,MAAMS,EAAOV,EAAIW,QACjB,IAAK,IAAIP,EAAI,EAAGA,EAAIK,IAAML,EACxB,IAAK,IAAIQ,EAAI,EAAGA,EAAIN,IAAkBM,EACpCZ,EAAKM,EAAiBF,EAAKQ,GAAKF,GAAOJ,EAAiBM,EAAI,GAAKH,EAAML,EAG7E,C,iBC9Be,MAAMS,EACnB,YAAMC,CAAOC,EAAeC,GAC1B,MAAMC,QAAgBC,KAAKC,YAAYH,GACjCI,EAAYL,EAAcM,WAAa,EAC7C,GAAkB,IAAdD,EAAiB,CACnB,MAAME,GAAWP,EAAcQ,aAK/B,ODsBC,SAAwBC,EAAOJ,EAAWK,EAAOC,EAAQC,EAC9DC,GACA,IAAKR,GAA2B,IAAdA,EAChB,OAAOI,EAGT,IAAK,IAAIpB,EAAI,EAAGA,EAAIuB,EAAczB,SAAUE,EAAG,CAC7C,GAAIuB,EAAcvB,GAAK,GAAM,EAC3B,MAAM,IAAIyB,MAAM,wEAElB,GAAIF,EAAcvB,KAAOuB,EAAc,GACrC,MAAM,IAAIE,MAAM,qEAEpB,CAEA,MAAMvB,EAAiBqB,EAAc,GAAK,EACpC1B,EAAiC,IAAxB2B,EAA4B,EAAID,EAAczB,OAE7D,IAAK,IAAIE,EAAI,EAAGA,EAAIsB,KAEdtB,EAAIH,EAASwB,EAAQnB,GAAkBkB,EAAMM,cAFrB1B,EAAG,CAK/B,IAAIJ,EACJ,GAAkB,IAAdoB,EAAiB,CACnB,OAAQO,EAAc,IACpB,KAAK,EACH3B,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/D,MACF,KAAK,GACHN,EAAM,IAAIgC,YACRR,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,KAAK,GACHN,EAAM,IAAIiC,YACRT,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,QACE,MAAM,IAAIuB,MAAM,gCAAgCF,EAAc,uBAElE5B,EAAaC,EAAKC,EACpB,MAAyB,IAAdmB,IACTpB,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/DD,EAAuBL,EAAKC,EAAQK,GAExC,CACA,OAAOkB,CACT,CC3EaU,CACLjB,EAASG,EALOE,EAAUP,EAAcoB,UAAYpB,EAAcqB,WACjDd,EAAUP,EAAcsB,WACzCtB,EAAcuB,cAAgBvB,EAAcwB,YAGDxB,EAAcyB,cACzDzB,EAAc0B,oBAElB,CACA,OAAOxB,CACT,E,4DCiBF,SAASyB,EAAeC,EAAMC,GAC5B,IAAK,IAAIxC,EAAIwC,EAAO1C,OAAS,EAAGE,GAAK,EAAGA,IACtCuC,EAAKE,KAAKD,EAAOxC,IAEnB,OAAOuC,CACT,CAsFe,MAAMG,UAAmB,IACtC,WAAA3B,CAAYH,GACV,OAtFJ,SAAoB+B,GAClB,MAAMC,EAAkB,IAAIhB,YAAY,MAClCiB,EAAiB,IAAIlB,WAAW,MACtC,IAAK,IAAI3B,EAAI,EAAGA,GAAK,IAAKA,IACxB4C,EAAgB5C,GAAK,KACrB6C,EAAe7C,GAAKA,EAEtB,IAAI8C,EAAmB,IACnBpB,EAhDW,EAiDXqB,EAAW,EAEf,SAASC,IACPF,EAAmB,IACnBpB,EArDa,CAsDf,CACA,SAASuB,EAAQC,GACf,MAAMC,EAnDV,SAAiBD,EAAOH,EAAUjD,GAChC,MAAMsD,EAAIL,EAAW,EACfM,EAAIC,KAAKC,MAAMR,EAAW,GAC1BS,EAAK,EAAIJ,EACTK,EAAMV,EAAWjD,EAAqB,GAATuD,EAAI,GACvC,IAAIK,EAAM,GAAKL,EAAI,IAAON,EAAWjD,GACrC,MAAM6D,EAAgB,GAATN,EAAI,GAAUN,EAE3B,GADAW,EAAKJ,KAAKM,IAAI,EAAGF,GACbL,GAAKH,EAAMpD,OAEb,OADA+D,QAAQC,KAAK,6EAZA,IAef,IAAIC,EAASb,EAAMG,GAAO,IAAM,EAAID,GAAM,EAC1CW,IAAYjE,EAAS0D,EACrB,IAAIQ,EAASD,EACb,GAAIV,EAAI,EAAIH,EAAMpD,OAAQ,CACxB,IAAImE,EAASf,EAAMG,EAAI,KAAOK,EAC9BO,IAAWX,KAAKM,IAAI,EAAI9D,EAAS6D,GACjCK,GAAUC,CACZ,CACA,GAAIR,EAAK,GAAKJ,EAAI,EAAIH,EAAMpD,OAAQ,CAClC,MAAMoE,EAAgB,GAATb,EAAI,IAAWN,EAAWjD,GAEvCkE,GADed,EAAMG,EAAI,KAAOa,CAElC,CACA,OAAOF,CACT,CAyBiBG,CAAQjB,EAAOH,EAAUrB,GAEtC,OADAqB,GAAYrB,EACLyB,CACT,CACA,SAASiB,EAAgBpE,EAAGqE,GAI1B,OAHAxB,EAAeC,GAAoBuB,EACnCzB,EAAgBE,GAAoB9C,EACpC8C,IACOA,EAAmB,CAC5B,CACA,SAASwB,EAAsBC,GAC7B,MAAMC,EAAM,GACZ,IAAK,IAAIxE,EAAIuE,EAAS,OAANvE,EAAYA,EAAI4C,EAAgB5C,GAC9CwE,EAAI/B,KAAKI,EAAe7C,IAE1B,OAAOwE,CACT,CAEA,MAAMC,EAAS,GACfzB,IACA,MAAME,EAAQ,IAAIvB,WAAWgB,GAC7B,IACI+B,EADAC,EAAO1B,EAAQC,GAEnB,KA7Ee,MA6ERyB,GAAmB,CACxB,GA/Ee,MA+EXA,EAAqB,CAGvB,IAFA3B,IACA2B,EAAO1B,EAAQC,GAjFF,MAkFNyB,GACLA,EAAO1B,EAAQC,GAGjB,GArFW,MAqFPyB,EACF,MACK,GAAIA,EAxFE,IAyFX,MAAM,IAAIlD,MAAM,8BAA8BkD,KAG9CrC,EAAemC,EADHH,EAAsBK,IAElCD,EAAUC,CAEd,MAAO,GAAIA,EAAO7B,EAAkB,CAClC,MAAM8B,EAAMN,EAAsBK,GAClCrC,EAAemC,EAAQG,GACvBR,EAAgBM,EAASE,EAAIA,EAAI9E,OAAS,IAC1C4E,EAAUC,CACZ,KAAO,CACL,MAAME,EAASP,EAAsBI,GACrC,IAAKG,EACH,MAAM,IAAIpD,MAAM,mCAAmCiD,OAAa5B,gBAA+BC,KAEjGT,EAAemC,EAAQI,GACvBJ,EAAOhC,KAAKoC,EAAOA,EAAO/E,OAAS,IACnCsE,EAAgBM,EAASG,EAAOA,EAAO/E,OAAS,IAChD4E,EAAUC,CACZ,CAEI7B,EAAmB,GAAM,GAAKpB,IA7Gf,KA8GbA,EACFgD,OAAUI,EAEVpD,KAGJiD,EAAO1B,EAAQC,EACjB,CACA,OAAO,IAAIvB,WAAW8C,EACxB,CAIWM,CAAWnE,GAAeA,MACnC,E","sources":["webpack://ipyopenlayers/./node_modules/geotiff/dist-module/predictor.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/basedecoder.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/lzw.js"],"sourcesContent":["function decodeRowAcc(row, stride) {\n let length = row.length - stride;\n let offset = 0;\n do {\n for (let i = stride; i > 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\nconst MIN_BITS = 9;\nconst CLEAR_CODE = 256; // clear code\nconst EOI_CODE = 257; // end of information\nconst MAX_BYTELENGTH = 12;\n\nfunction getByte(array, position, length) {\n const d = position % 8;\n const a = Math.floor(position / 8);\n const de = 8 - d;\n const ef = (position + length) - ((a + 1) * 8);\n let fg = (8 * (a + 2)) - (position + length);\n const dg = ((a + 2) * 8) - position;\n fg = Math.max(0, fg);\n if (a >= array.length) {\n console.warn('ran off the end of the buffer before finding EOI_CODE (end on input code)');\n return EOI_CODE;\n }\n let chunk1 = array[a] & ((2 ** (8 - d)) - 1);\n chunk1 <<= (length - de);\n let chunks = chunk1;\n if (a + 1 < array.length) {\n let chunk2 = array[a + 1] >>> fg;\n chunk2 <<= Math.max(0, (length - dg));\n chunks += chunk2;\n }\n if (ef > 8 && a + 2 < array.length) {\n const hi = ((a + 3) * 8) - (position + length);\n const chunk3 = array[a + 2] >>> hi;\n chunks += chunk3;\n }\n return chunks;\n}\n\nfunction appendReversed(dest, source) {\n for (let i = source.length - 1; i >= 0; i--) {\n dest.push(source[i]);\n }\n return dest;\n}\n\nfunction decompress(input) {\n const dictionaryIndex = new Uint16Array(4093);\n const dictionaryChar = new Uint8Array(4093);\n for (let i = 0; i <= 257; i++) {\n dictionaryIndex[i] = 4096;\n dictionaryChar[i] = i;\n }\n let dictionaryLength = 258;\n let byteLength = MIN_BITS;\n let position = 0;\n\n function initDictionary() {\n dictionaryLength = 258;\n byteLength = MIN_BITS;\n }\n function getNext(array) {\n const byte = getByte(array, position, byteLength);\n position += byteLength;\n return byte;\n }\n function addToDictionary(i, c) {\n dictionaryChar[dictionaryLength] = c;\n dictionaryIndex[dictionaryLength] = i;\n dictionaryLength++;\n return dictionaryLength - 1;\n }\n function getDictionaryReversed(n) {\n const rev = [];\n for (let i = n; i !== 4096; i = dictionaryIndex[i]) {\n rev.push(dictionaryChar[i]);\n }\n return rev;\n }\n\n const result = [];\n initDictionary();\n const array = new Uint8Array(input);\n let code = getNext(array);\n let oldCode;\n while (code !== EOI_CODE) {\n if (code === CLEAR_CODE) {\n initDictionary();\n code = getNext(array);\n while (code === CLEAR_CODE) {\n code = getNext(array);\n }\n\n if (code === EOI_CODE) {\n break;\n } else if (code > CLEAR_CODE) {\n throw new Error(`corrupted code at scanline ${code}`);\n } else {\n const val = getDictionaryReversed(code);\n appendReversed(result, val);\n oldCode = code;\n }\n } else if (code < dictionaryLength) {\n const val = getDictionaryReversed(code);\n appendReversed(result, val);\n addToDictionary(oldCode, val[val.length - 1]);\n oldCode = code;\n } else {\n const oldVal = getDictionaryReversed(oldCode);\n if (!oldVal) {\n throw new Error(`Bogus entry. Not in dictionary, ${oldCode} / ${dictionaryLength}, position: ${position}`);\n }\n appendReversed(result, oldVal);\n result.push(oldVal[oldVal.length - 1]);\n addToDictionary(oldCode, oldVal[oldVal.length - 1]);\n oldCode = code;\n }\n\n if (dictionaryLength + 1 >= (2 ** byteLength)) {\n if (byteLength === MAX_BYTELENGTH) {\n oldCode = undefined;\n } else {\n byteLength++;\n }\n }\n code = getNext(array);\n }\n return new Uint8Array(result);\n}\n\nexport default class LZWDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n return decompress(buffer, false).buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","appendReversed","dest","source","push","LZWDecoder","input","dictionaryIndex","dictionaryChar","dictionaryLength","position","initDictionary","getNext","array","byte","d","a","Math","floor","de","ef","fg","dg","max","console","warn","chunk1","chunks","chunk2","hi","getByte","addToDictionary","c","getDictionaryReversed","n","rev","result","oldCode","code","val","oldVal","undefined","decompress"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/source/_static/709.embed-bundle.js b/docs/source/_static/709.embed-bundle.js new file mode 100644 index 0000000..198fedf --- /dev/null +++ b/docs/source/_static/709.embed-bundle.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[709],{708:(e,n,t)=>{function r(e,n){let t=e.length-n,r=0;do{for(let t=n;t>0;t--)e[r+n]+=e[r],r++;t-=n}while(t>0)}function s(e,n,t){let r=0,s=e.length;const o=s/t;for(;s>n;){for(let t=n;t>0;--t)e[r+n]+=e[r],++r;s-=n}const a=e.slice();for(let n=0;no});class o{async decode(e,n){const t=await this.decodeBlock(n),o=e.Predictor||1;if(1!==o){const n=!e.StripOffsets;return function(e,n,t,o,a,i){if(!n||1===n)return e;for(let e=0;e=e.byteLength);++i){let o;if(2===n){switch(a[0]){case 8:o=new Uint8Array(e,i*l*t*c,l*t*c);break;case 16:o=new Uint16Array(e,i*l*t*c,l*t*c/2);break;case 32:o=new Uint32Array(e,i*l*t*c,l*t*c/4);break;default:throw new Error(`Predictor 2 not allowed with ${a[0]} bits per sample.`)}r(o,l)}else 3===n&&(o=new Uint8Array(e,i*l*t*c,l*t*c),s(o,l,c))}return e}(t,o,n?e.TileWidth:e.ImageWidth,n?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return t}}},4709:(e,n,t)=>{t.r(n),t.d(n,{default:()=>w});var r=t(708);const s=new Int32Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),o=4017,a=799,i=3406,c=2276,l=1567,f=3784,h=5793,u=2896;function d(e,n){let t=0;const r=[];let s=16;for(;s>0&&!e[s-1];)--s;r.push({children:[],index:0});let o,a=r[0];for(let i=0;i0;)a=r.pop();for(a.index++,r.push(a);r.length<=i;)r.push(o={children:[],index:0}),a.children[a.index]=o.children,a=o;t++}i+10)return p--,m>>p&1;if(m=e[d++],255===m){const n=e[d++];if(n)throw new Error(`unexpected marker: ${(m<<8|n).toString(16)}`)}return p=7,m>>>7}function w(e){let n,t=e;for(;null!==(n=b());){if(t=t[n],"number"==typeof t)return t;if("object"!=typeof t)throw new Error("invalid huffman sequence")}return null}function k(e){let n=e,t=0;for(;n>0;){const e=b();if(null===e)return;t=t<<1|e,--n}return t}function y(e){const n=k(e);return n>=1<0)return void P--;let t=a;const r=i;for(;t<=r;){const r=w(e.huffmanTableAC),o=15&r,a=r>>4;if(0===o){if(a<15){P=k(a)+(1<>4,0===t)o<15?(P=k(o)+(1<>4;if(0===r){if(a<15)break;o+=16}else o+=a,n[s[o]]=y(r),o++}};let q,z,O=0;z=1===v?r[0].blocksPerLine*r[0].blocksPerColumn:f*t.mcusPerColumn;const M=o||z;for(;O=65488&&q<=65495))break;d+=2}return d-u}function p(e,n){const t=[],{blocksPerLine:r,blocksPerColumn:s}=n,d=r<<3,m=new Int32Array(64),p=new Uint8Array(64);function b(e,t,r){const s=n.quantizationTable;let d,m,p,b,w,k,y,g,P;const A=r;let C;for(C=0;C<64;C++)A[C]=e[C]*s[C];for(C=0;C<8;++C){const e=8*C;0!==A[1+e]||0!==A[2+e]||0!==A[3+e]||0!==A[4+e]||0!==A[5+e]||0!==A[6+e]||0!==A[7+e]?(d=h*A[0+e]+128>>8,m=h*A[4+e]+128>>8,p=A[2+e],b=A[6+e],w=u*(A[1+e]-A[7+e])+128>>8,g=u*(A[1+e]+A[7+e])+128>>8,k=A[3+e]<<4,y=A[5+e]<<4,P=d-m+1>>1,d=d+m+1>>1,m=P,P=p*f+b*l+128>>8,p=p*l-b*f+128>>8,b=P,P=w-y+1>>1,w=w+y+1>>1,y=P,P=g+k+1>>1,k=g-k+1>>1,g=P,P=d-b+1>>1,d=d+b+1>>1,b=P,P=m-p+1>>1,m=m+p+1>>1,p=P,P=w*c+g*i+2048>>12,w=w*i-g*c+2048>>12,g=P,P=k*a+y*o+2048>>12,k=k*o-y*a+2048>>12,y=P,A[0+e]=d+g,A[7+e]=d-g,A[1+e]=m+y,A[6+e]=m-y,A[2+e]=p+k,A[5+e]=p-k,A[3+e]=b+w,A[4+e]=b-w):(P=h*A[0+e]+512>>10,A[0+e]=P,A[1+e]=P,A[2+e]=P,A[3+e]=P,A[4+e]=P,A[5+e]=P,A[6+e]=P,A[7+e]=P)}for(C=0;C<8;++C){const e=C;0!==A[8+e]||0!==A[16+e]||0!==A[24+e]||0!==A[32+e]||0!==A[40+e]||0!==A[48+e]||0!==A[56+e]?(d=h*A[0+e]+2048>>12,m=h*A[32+e]+2048>>12,p=A[16+e],b=A[48+e],w=u*(A[8+e]-A[56+e])+2048>>12,g=u*(A[8+e]+A[56+e])+2048>>12,k=A[24+e],y=A[40+e],P=d-m+1>>1,d=d+m+1>>1,m=P,P=p*f+b*l+2048>>12,p=p*l-b*f+2048>>12,b=P,P=w-y+1>>1,w=w+y+1>>1,y=P,P=g+k+1>>1,k=g-k+1>>1,g=P,P=d-b+1>>1,d=d+b+1>>1,b=P,P=m-p+1>>1,m=m+p+1>>1,p=P,P=w*c+g*i+2048>>12,w=w*i-g*c+2048>>12,g=P,P=k*a+y*o+2048>>12,k=k*o-y*a+2048>>12,y=P,A[0+e]=d+g,A[56+e]=d-g,A[8+e]=m+y,A[48+e]=m-y,A[16+e]=p+k,A[40+e]=p-k,A[24+e]=b+w,A[32+e]=b-w):(P=h*r[C+0]+8192>>14,A[0+e]=P,A[8+e]=P,A[16+e]=P,A[24+e]=P,A[32+e]=P,A[40+e]=P,A[48+e]=P,A[56+e]=P)}for(C=0;C<64;++C){const e=128+(A[C]+8>>4);t[C]=e<0?0:e>255?255:e}}for(let e=0;e>4){if(r>>4!=1)throw new Error("DQT: invalid table spec");for(let e=0;e<64;e++)o[s[e]]=t()}else for(let t=0;t<64;t++)o[s[t]]=e[n++];this.quantizationTables[15&r]=o}break}case 65472:case 65473:case 65474:{t();const r={extended:65473===a,progressive:65474===a,precision:e[n++],scanLines:t(),samplesPerLine:t(),components:{},componentsOrder:[]},s=e[n++];let i;for(let t=0;t>4,s=15&e[n+1],o=e[n+2];r.componentsOrder.push(i),r.components[i]={h:t,v:s,quantizationIdx:o},n+=3}o(r),this.frames.push(r);break}case 65476:{const r=t();for(let t=2;t>4?this.huffmanTablesAC[15&r]=d(s,a):this.huffmanTablesDC[15&r]=d(s,a)}break}case 65501:t(),this.resetInterval=t();break;case 65498:{t();const r=e[n++],s=[],o=this.frames[0];for(let t=0;t>4],t.huffmanTableAC=this.huffmanTablesAC[15&r],s.push(t)}const a=e[n++],i=e[n++],c=e[n++],l=m(e,n,o,s,this.resetInterval,a,i,c>>4,15&c);n+=l;break}case 65535:255!==e[n]&&n--;break;default:if(255===e[n-3]&&e[n-2]>=192&&e[n-2]<=254){n-=3;break}throw new Error(`unknown JPEG marker ${a.toString(16)}`)}a=t()}}getResult(){const{frames:e}=this;if(0===this.frames.length)throw new Error("no frames were decoded");this.frames.length>1&&console.warn("more than one frame is not supported");for(let e=0;e 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\n/* -*- tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /\n/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */\n/*\n Copyright 2011 notmasteryet\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n http://www.apache.org/licenses/LICENSE-2.0\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// - The JPEG specification can be found in the ITU CCITT Recommendation T.81\n// (www.w3.org/Graphics/JPEG/itu-t81.pdf)\n// - The JFIF specification can be found in the JPEG File Interchange Format\n// (www.w3.org/Graphics/JPEG/jfif3.pdf)\n// - The Adobe Application-Specific JPEG markers in the Supporting the DCT Filters\n// in PostScript Level 2, Technical Note #5116\n// (partners.adobe.com/public/developer/en/ps/sdk/5116.DCT_Filter.pdf)\n\nconst dctZigZag = new Int32Array([\n 0,\n 1, 8,\n 16, 9, 2,\n 3, 10, 17, 24,\n 32, 25, 18, 11, 4,\n 5, 12, 19, 26, 33, 40,\n 48, 41, 34, 27, 20, 13, 6,\n 7, 14, 21, 28, 35, 42, 49, 56,\n 57, 50, 43, 36, 29, 22, 15,\n 23, 30, 37, 44, 51, 58,\n 59, 52, 45, 38, 31,\n 39, 46, 53, 60,\n 61, 54, 47,\n 55, 62,\n 63,\n]);\n\nconst dctCos1 = 4017; // cos(pi/16)\nconst dctSin1 = 799; // sin(pi/16)\nconst dctCos3 = 3406; // cos(3*pi/16)\nconst dctSin3 = 2276; // sin(3*pi/16)\nconst dctCos6 = 1567; // cos(6*pi/16)\nconst dctSin6 = 3784; // sin(6*pi/16)\nconst dctSqrt2 = 5793; // sqrt(2)\nconst dctSqrt1d2 = 2896;// sqrt(2) / 2\n\nfunction buildHuffmanTable(codeLengths, values) {\n let k = 0;\n const code = [];\n let length = 16;\n while (length > 0 && !codeLengths[length - 1]) {\n --length;\n }\n code.push({ children: [], index: 0 });\n\n let p = code[0];\n let q;\n for (let i = 0; i < length; i++) {\n for (let j = 0; j < codeLengths[i]; j++) {\n p = code.pop();\n p.children[p.index] = values[k];\n while (p.index > 0) {\n p = code.pop();\n }\n p.index++;\n code.push(p);\n while (code.length <= i) {\n code.push(q = { children: [], index: 0 });\n p.children[p.index] = q.children;\n p = q;\n }\n k++;\n }\n if (i + 1 < length) {\n // p here points to last code\n code.push(q = { children: [], index: 0 });\n p.children[p.index] = q.children;\n p = q;\n }\n }\n return code[0].children;\n}\n\nfunction decodeScan(data, initialOffset,\n frame, components, resetInterval,\n spectralStart, spectralEnd,\n successivePrev, successive) {\n const { mcusPerLine, progressive } = frame;\n\n const startOffset = initialOffset;\n let offset = initialOffset;\n let bitsData = 0;\n let bitsCount = 0;\n function readBit() {\n if (bitsCount > 0) {\n bitsCount--;\n return (bitsData >> bitsCount) & 1;\n }\n bitsData = data[offset++];\n if (bitsData === 0xFF) {\n const nextByte = data[offset++];\n if (nextByte) {\n throw new Error(`unexpected marker: ${((bitsData << 8) | nextByte).toString(16)}`);\n }\n // unstuff 0\n }\n bitsCount = 7;\n return bitsData >>> 7;\n }\n function decodeHuffman(tree) {\n let node = tree;\n let bit;\n while ((bit = readBit()) !== null) { // eslint-disable-line no-cond-assign\n node = node[bit];\n if (typeof node === 'number') {\n return node;\n }\n if (typeof node !== 'object') {\n throw new Error('invalid huffman sequence');\n }\n }\n return null;\n }\n function receive(initialLength) {\n let length = initialLength;\n let n = 0;\n while (length > 0) {\n const bit = readBit();\n if (bit === null) {\n return undefined;\n }\n n = (n << 1) | bit;\n --length;\n }\n return n;\n }\n function receiveAndExtend(length) {\n const n = receive(length);\n if (n >= 1 << (length - 1)) {\n return n;\n }\n return n + (-1 << length) + 1;\n }\n function decodeBaseline(component, zz) {\n const t = decodeHuffman(component.huffmanTableDC);\n const diff = t === 0 ? 0 : receiveAndExtend(t);\n component.pred += diff;\n zz[0] = component.pred;\n let k = 1;\n while (k < 64) {\n const rs = decodeHuffman(component.huffmanTableAC);\n const s = rs & 15;\n const r = rs >> 4;\n if (s === 0) {\n if (r < 15) {\n break;\n }\n k += 16;\n } else {\n k += r;\n const z = dctZigZag[k];\n zz[z] = receiveAndExtend(s);\n k++;\n }\n }\n }\n function decodeDCFirst(component, zz) {\n const t = decodeHuffman(component.huffmanTableDC);\n const diff = t === 0 ? 0 : (receiveAndExtend(t) << successive);\n component.pred += diff;\n zz[0] = component.pred;\n }\n function decodeDCSuccessive(component, zz) {\n zz[0] |= readBit() << successive;\n }\n let eobrun = 0;\n function decodeACFirst(component, zz) {\n if (eobrun > 0) {\n eobrun--;\n return;\n }\n let k = spectralStart;\n const e = spectralEnd;\n while (k <= e) {\n const rs = decodeHuffman(component.huffmanTableAC);\n const s = rs & 15;\n const r = rs >> 4;\n if (s === 0) {\n if (r < 15) {\n eobrun = receive(r) + (1 << r) - 1;\n break;\n }\n k += 16;\n } else {\n k += r;\n const z = dctZigZag[k];\n zz[z] = receiveAndExtend(s) * (1 << successive);\n k++;\n }\n }\n }\n let successiveACState = 0;\n let successiveACNextValue;\n function decodeACSuccessive(component, zz) {\n let k = spectralStart;\n const e = spectralEnd;\n let r = 0;\n while (k <= e) {\n const z = dctZigZag[k];\n const direction = zz[z] < 0 ? -1 : 1;\n switch (successiveACState) {\n case 0: { // initial state\n const rs = decodeHuffman(component.huffmanTableAC);\n const s = rs & 15;\n r = rs >> 4;\n if (s === 0) {\n if (r < 15) {\n eobrun = receive(r) + (1 << r);\n successiveACState = 4;\n } else {\n r = 16;\n successiveACState = 1;\n }\n } else {\n if (s !== 1) {\n throw new Error('invalid ACn encoding');\n }\n successiveACNextValue = receiveAndExtend(s);\n successiveACState = r ? 2 : 3;\n }\n continue; // eslint-disable-line no-continue\n }\n case 1: // skipping r zero items\n case 2:\n if (zz[z]) {\n zz[z] += (readBit() << successive) * direction;\n } else {\n r--;\n if (r === 0) {\n successiveACState = successiveACState === 2 ? 3 : 0;\n }\n }\n break;\n case 3: // set value for a zero item\n if (zz[z]) {\n zz[z] += (readBit() << successive) * direction;\n } else {\n zz[z] = successiveACNextValue << successive;\n successiveACState = 0;\n }\n break;\n case 4: // eob\n if (zz[z]) {\n zz[z] += (readBit() << successive) * direction;\n }\n break;\n default:\n break;\n }\n k++;\n }\n if (successiveACState === 4) {\n eobrun--;\n if (eobrun === 0) {\n successiveACState = 0;\n }\n }\n }\n function decodeMcu(component, decodeFunction, mcu, row, col) {\n const mcuRow = (mcu / mcusPerLine) | 0;\n const mcuCol = mcu % mcusPerLine;\n const blockRow = (mcuRow * component.v) + row;\n const blockCol = (mcuCol * component.h) + col;\n decodeFunction(component, component.blocks[blockRow][blockCol]);\n }\n function decodeBlock(component, decodeFunction, mcu) {\n const blockRow = (mcu / component.blocksPerLine) | 0;\n const blockCol = mcu % component.blocksPerLine;\n decodeFunction(component, component.blocks[blockRow][blockCol]);\n }\n\n const componentsLength = components.length;\n let component;\n let i;\n let j;\n let k;\n let n;\n let decodeFn;\n if (progressive) {\n if (spectralStart === 0) {\n decodeFn = successivePrev === 0 ? decodeDCFirst : decodeDCSuccessive;\n } else {\n decodeFn = successivePrev === 0 ? decodeACFirst : decodeACSuccessive;\n }\n } else {\n decodeFn = decodeBaseline;\n }\n\n let mcu = 0;\n let marker;\n let mcuExpected;\n if (componentsLength === 1) {\n mcuExpected = components[0].blocksPerLine * components[0].blocksPerColumn;\n } else {\n mcuExpected = mcusPerLine * frame.mcusPerColumn;\n }\n\n const usedResetInterval = resetInterval || mcuExpected;\n\n while (mcu < mcuExpected) {\n // reset interval stuff\n for (i = 0; i < componentsLength; i++) {\n components[i].pred = 0;\n }\n eobrun = 0;\n\n if (componentsLength === 1) {\n component = components[0];\n for (n = 0; n < usedResetInterval; n++) {\n decodeBlock(component, decodeFn, mcu);\n mcu++;\n }\n } else {\n for (n = 0; n < usedResetInterval; n++) {\n for (i = 0; i < componentsLength; i++) {\n component = components[i];\n const { h, v } = component;\n for (j = 0; j < v; j++) {\n for (k = 0; k < h; k++) {\n decodeMcu(component, decodeFn, mcu, j, k);\n }\n }\n }\n mcu++;\n\n // If we've reached our expected MCU's, stop decoding\n if (mcu === mcuExpected) {\n break;\n }\n }\n }\n\n // find marker\n bitsCount = 0;\n marker = (data[offset] << 8) | data[offset + 1];\n if (marker < 0xFF00) {\n throw new Error('marker was not found');\n }\n\n if (marker >= 0xFFD0 && marker <= 0xFFD7) { // RSTx\n offset += 2;\n } else {\n break;\n }\n }\n\n return offset - startOffset;\n}\n\nfunction buildComponentData(frame, component) {\n const lines = [];\n const { blocksPerLine, blocksPerColumn } = component;\n const samplesPerLine = blocksPerLine << 3;\n const R = new Int32Array(64);\n const r = new Uint8Array(64);\n\n // A port of poppler's IDCT method which in turn is taken from:\n // Christoph Loeffler, Adriaan Ligtenberg, George S. Moschytz,\n // \"Practical Fast 1-D DCT Algorithms with 11 Multiplications\",\n // IEEE Intl. Conf. on Acoustics, Speech & Signal Processing, 1989,\n // 988-991.\n function quantizeAndInverse(zz, dataOut, dataIn) {\n const qt = component.quantizationTable;\n let v0;\n let v1;\n let v2;\n let v3;\n let v4;\n let v5;\n let v6;\n let v7;\n let t;\n const p = dataIn;\n let i;\n\n // dequant\n for (i = 0; i < 64; i++) {\n p[i] = zz[i] * qt[i];\n }\n\n // inverse DCT on rows\n for (i = 0; i < 8; ++i) {\n const row = 8 * i;\n\n // check for all-zero AC coefficients\n if (p[1 + row] === 0 && p[2 + row] === 0 && p[3 + row] === 0\n && p[4 + row] === 0 && p[5 + row] === 0 && p[6 + row] === 0\n && p[7 + row] === 0) {\n t = ((dctSqrt2 * p[0 + row]) + 512) >> 10;\n p[0 + row] = t;\n p[1 + row] = t;\n p[2 + row] = t;\n p[3 + row] = t;\n p[4 + row] = t;\n p[5 + row] = t;\n p[6 + row] = t;\n p[7 + row] = t;\n continue; // eslint-disable-line no-continue\n }\n\n // stage 4\n v0 = ((dctSqrt2 * p[0 + row]) + 128) >> 8;\n v1 = ((dctSqrt2 * p[4 + row]) + 128) >> 8;\n v2 = p[2 + row];\n v3 = p[6 + row];\n v4 = ((dctSqrt1d2 * (p[1 + row] - p[7 + row])) + 128) >> 8;\n v7 = ((dctSqrt1d2 * (p[1 + row] + p[7 + row])) + 128) >> 8;\n v5 = p[3 + row] << 4;\n v6 = p[5 + row] << 4;\n\n // stage 3\n t = (v0 - v1 + 1) >> 1;\n v0 = (v0 + v1 + 1) >> 1;\n v1 = t;\n t = ((v2 * dctSin6) + (v3 * dctCos6) + 128) >> 8;\n v2 = ((v2 * dctCos6) - (v3 * dctSin6) + 128) >> 8;\n v3 = t;\n t = (v4 - v6 + 1) >> 1;\n v4 = (v4 + v6 + 1) >> 1;\n v6 = t;\n t = (v7 + v5 + 1) >> 1;\n v5 = (v7 - v5 + 1) >> 1;\n v7 = t;\n\n // stage 2\n t = (v0 - v3 + 1) >> 1;\n v0 = (v0 + v3 + 1) >> 1;\n v3 = t;\n t = (v1 - v2 + 1) >> 1;\n v1 = (v1 + v2 + 1) >> 1;\n v2 = t;\n t = ((v4 * dctSin3) + (v7 * dctCos3) + 2048) >> 12;\n v4 = ((v4 * dctCos3) - (v7 * dctSin3) + 2048) >> 12;\n v7 = t;\n t = ((v5 * dctSin1) + (v6 * dctCos1) + 2048) >> 12;\n v5 = ((v5 * dctCos1) - (v6 * dctSin1) + 2048) >> 12;\n v6 = t;\n\n // stage 1\n p[0 + row] = v0 + v7;\n p[7 + row] = v0 - v7;\n p[1 + row] = v1 + v6;\n p[6 + row] = v1 - v6;\n p[2 + row] = v2 + v5;\n p[5 + row] = v2 - v5;\n p[3 + row] = v3 + v4;\n p[4 + row] = v3 - v4;\n }\n\n // inverse DCT on columns\n for (i = 0; i < 8; ++i) {\n const col = i;\n\n // check for all-zero AC coefficients\n if (p[(1 * 8) + col] === 0 && p[(2 * 8) + col] === 0 && p[(3 * 8) + col] === 0\n && p[(4 * 8) + col] === 0 && p[(5 * 8) + col] === 0 && p[(6 * 8) + col] === 0\n && p[(7 * 8) + col] === 0) {\n t = ((dctSqrt2 * dataIn[i + 0]) + 8192) >> 14;\n p[(0 * 8) + col] = t;\n p[(1 * 8) + col] = t;\n p[(2 * 8) + col] = t;\n p[(3 * 8) + col] = t;\n p[(4 * 8) + col] = t;\n p[(5 * 8) + col] = t;\n p[(6 * 8) + col] = t;\n p[(7 * 8) + col] = t;\n continue; // eslint-disable-line no-continue\n }\n\n // stage 4\n v0 = ((dctSqrt2 * p[(0 * 8) + col]) + 2048) >> 12;\n v1 = ((dctSqrt2 * p[(4 * 8) + col]) + 2048) >> 12;\n v2 = p[(2 * 8) + col];\n v3 = p[(6 * 8) + col];\n v4 = ((dctSqrt1d2 * (p[(1 * 8) + col] - p[(7 * 8) + col])) + 2048) >> 12;\n v7 = ((dctSqrt1d2 * (p[(1 * 8) + col] + p[(7 * 8) + col])) + 2048) >> 12;\n v5 = p[(3 * 8) + col];\n v6 = p[(5 * 8) + col];\n\n // stage 3\n t = (v0 - v1 + 1) >> 1;\n v0 = (v0 + v1 + 1) >> 1;\n v1 = t;\n t = ((v2 * dctSin6) + (v3 * dctCos6) + 2048) >> 12;\n v2 = ((v2 * dctCos6) - (v3 * dctSin6) + 2048) >> 12;\n v3 = t;\n t = (v4 - v6 + 1) >> 1;\n v4 = (v4 + v6 + 1) >> 1;\n v6 = t;\n t = (v7 + v5 + 1) >> 1;\n v5 = (v7 - v5 + 1) >> 1;\n v7 = t;\n\n // stage 2\n t = (v0 - v3 + 1) >> 1;\n v0 = (v0 + v3 + 1) >> 1;\n v3 = t;\n t = (v1 - v2 + 1) >> 1;\n v1 = (v1 + v2 + 1) >> 1;\n v2 = t;\n t = ((v4 * dctSin3) + (v7 * dctCos3) + 2048) >> 12;\n v4 = ((v4 * dctCos3) - (v7 * dctSin3) + 2048) >> 12;\n v7 = t;\n t = ((v5 * dctSin1) + (v6 * dctCos1) + 2048) >> 12;\n v5 = ((v5 * dctCos1) - (v6 * dctSin1) + 2048) >> 12;\n v6 = t;\n\n // stage 1\n p[(0 * 8) + col] = v0 + v7;\n p[(7 * 8) + col] = v0 - v7;\n p[(1 * 8) + col] = v1 + v6;\n p[(6 * 8) + col] = v1 - v6;\n p[(2 * 8) + col] = v2 + v5;\n p[(5 * 8) + col] = v2 - v5;\n p[(3 * 8) + col] = v3 + v4;\n p[(4 * 8) + col] = v3 - v4;\n }\n\n // convert to 8-bit integers\n for (i = 0; i < 64; ++i) {\n const sample = 128 + ((p[i] + 8) >> 4);\n if (sample < 0) {\n dataOut[i] = 0;\n } else if (sample > 0XFF) {\n dataOut[i] = 0xFF;\n } else {\n dataOut[i] = sample;\n }\n }\n }\n\n for (let blockRow = 0; blockRow < blocksPerColumn; blockRow++) {\n const scanLine = blockRow << 3;\n for (let i = 0; i < 8; i++) {\n lines.push(new Uint8Array(samplesPerLine));\n }\n for (let blockCol = 0; blockCol < blocksPerLine; blockCol++) {\n quantizeAndInverse(component.blocks[blockRow][blockCol], r, R);\n\n let offset = 0;\n const sample = blockCol << 3;\n for (let j = 0; j < 8; j++) {\n const line = lines[scanLine + j];\n for (let i = 0; i < 8; i++) {\n line[sample + i] = r[offset++];\n }\n }\n }\n }\n return lines;\n}\n\nclass JpegStreamReader {\n constructor() {\n this.jfif = null;\n this.adobe = null;\n\n this.quantizationTables = [];\n this.huffmanTablesAC = [];\n this.huffmanTablesDC = [];\n this.resetFrames();\n }\n\n resetFrames() {\n this.frames = [];\n }\n\n parse(data) {\n let offset = 0;\n // const { length } = data;\n function readUint16() {\n const value = (data[offset] << 8) | data[offset + 1];\n offset += 2;\n return value;\n }\n function readDataBlock() {\n const length = readUint16();\n const array = data.subarray(offset, offset + length - 2);\n offset += array.length;\n return array;\n }\n function prepareComponents(frame) {\n let maxH = 0;\n let maxV = 0;\n let component;\n let componentId;\n for (componentId in frame.components) {\n if (frame.components.hasOwnProperty(componentId)) {\n component = frame.components[componentId];\n if (maxH < component.h) {\n maxH = component.h;\n }\n if (maxV < component.v) {\n maxV = component.v;\n }\n }\n }\n const mcusPerLine = Math.ceil(frame.samplesPerLine / 8 / maxH);\n const mcusPerColumn = Math.ceil(frame.scanLines / 8 / maxV);\n for (componentId in frame.components) {\n if (frame.components.hasOwnProperty(componentId)) {\n component = frame.components[componentId];\n const blocksPerLine = Math.ceil(Math.ceil(frame.samplesPerLine / 8) * component.h / maxH);\n const blocksPerColumn = Math.ceil(Math.ceil(frame.scanLines / 8) * component.v / maxV);\n const blocksPerLineForMcu = mcusPerLine * component.h;\n const blocksPerColumnForMcu = mcusPerColumn * component.v;\n const blocks = [];\n for (let i = 0; i < blocksPerColumnForMcu; i++) {\n const row = [];\n for (let j = 0; j < blocksPerLineForMcu; j++) {\n row.push(new Int32Array(64));\n }\n blocks.push(row);\n }\n component.blocksPerLine = blocksPerLine;\n component.blocksPerColumn = blocksPerColumn;\n component.blocks = blocks;\n }\n }\n frame.maxH = maxH;\n frame.maxV = maxV;\n frame.mcusPerLine = mcusPerLine;\n frame.mcusPerColumn = mcusPerColumn;\n }\n\n let fileMarker = readUint16();\n if (fileMarker !== 0xFFD8) { // SOI (Start of Image)\n throw new Error('SOI not found');\n }\n\n fileMarker = readUint16();\n while (fileMarker !== 0xFFD9) { // EOI (End of image)\n switch (fileMarker) {\n case 0xFF00: break;\n case 0xFFE0: // APP0 (Application Specific)\n case 0xFFE1: // APP1\n case 0xFFE2: // APP2\n case 0xFFE3: // APP3\n case 0xFFE4: // APP4\n case 0xFFE5: // APP5\n case 0xFFE6: // APP6\n case 0xFFE7: // APP7\n case 0xFFE8: // APP8\n case 0xFFE9: // APP9\n case 0xFFEA: // APP10\n case 0xFFEB: // APP11\n case 0xFFEC: // APP12\n case 0xFFED: // APP13\n case 0xFFEE: // APP14\n case 0xFFEF: // APP15\n case 0xFFFE: { // COM (Comment)\n const appData = readDataBlock();\n\n if (fileMarker === 0xFFE0) {\n if (appData[0] === 0x4A && appData[1] === 0x46 && appData[2] === 0x49\n && appData[3] === 0x46 && appData[4] === 0) { // 'JFIF\\x00'\n this.jfif = {\n version: { major: appData[5], minor: appData[6] },\n densityUnits: appData[7],\n xDensity: (appData[8] << 8) | appData[9],\n yDensity: (appData[10] << 8) | appData[11],\n thumbWidth: appData[12],\n thumbHeight: appData[13],\n thumbData: appData.subarray(14, 14 + (3 * appData[12] * appData[13])),\n };\n }\n }\n // TODO APP1 - Exif\n if (fileMarker === 0xFFEE) {\n if (appData[0] === 0x41 && appData[1] === 0x64 && appData[2] === 0x6F\n && appData[3] === 0x62 && appData[4] === 0x65 && appData[5] === 0) { // 'Adobe\\x00'\n this.adobe = {\n version: appData[6],\n flags0: (appData[7] << 8) | appData[8],\n flags1: (appData[9] << 8) | appData[10],\n transformCode: appData[11],\n };\n }\n }\n break;\n }\n\n case 0xFFDB: { // DQT (Define Quantization Tables)\n const quantizationTablesLength = readUint16();\n const quantizationTablesEnd = quantizationTablesLength + offset - 2;\n while (offset < quantizationTablesEnd) {\n const quantizationTableSpec = data[offset++];\n const tableData = new Int32Array(64);\n if ((quantizationTableSpec >> 4) === 0) { // 8 bit values\n for (let j = 0; j < 64; j++) {\n const z = dctZigZag[j];\n tableData[z] = data[offset++];\n }\n } else if ((quantizationTableSpec >> 4) === 1) { // 16 bit\n for (let j = 0; j < 64; j++) {\n const z = dctZigZag[j];\n tableData[z] = readUint16();\n }\n } else {\n throw new Error('DQT: invalid table spec');\n }\n this.quantizationTables[quantizationTableSpec & 15] = tableData;\n }\n break;\n }\n\n case 0xFFC0: // SOF0 (Start of Frame, Baseline DCT)\n case 0xFFC1: // SOF1 (Start of Frame, Extended DCT)\n case 0xFFC2: { // SOF2 (Start of Frame, Progressive DCT)\n readUint16(); // skip data length\n const frame = {\n extended: (fileMarker === 0xFFC1),\n progressive: (fileMarker === 0xFFC2),\n precision: data[offset++],\n scanLines: readUint16(),\n samplesPerLine: readUint16(),\n components: {},\n componentsOrder: [],\n };\n\n const componentsCount = data[offset++];\n let componentId;\n // let maxH = 0;\n // let maxV = 0;\n for (let i = 0; i < componentsCount; i++) {\n componentId = data[offset];\n const h = data[offset + 1] >> 4;\n const v = data[offset + 1] & 15;\n const qId = data[offset + 2];\n frame.componentsOrder.push(componentId);\n frame.components[componentId] = {\n h,\n v,\n quantizationIdx: qId,\n };\n offset += 3;\n }\n prepareComponents(frame);\n this.frames.push(frame);\n break;\n }\n\n case 0xFFC4: { // DHT (Define Huffman Tables)\n const huffmanLength = readUint16();\n for (let i = 2; i < huffmanLength;) {\n const huffmanTableSpec = data[offset++];\n const codeLengths = new Uint8Array(16);\n let codeLengthSum = 0;\n for (let j = 0; j < 16; j++, offset++) {\n codeLengths[j] = data[offset];\n codeLengthSum += codeLengths[j];\n }\n const huffmanValues = new Uint8Array(codeLengthSum);\n for (let j = 0; j < codeLengthSum; j++, offset++) {\n huffmanValues[j] = data[offset];\n }\n i += 17 + codeLengthSum;\n\n if ((huffmanTableSpec >> 4) === 0) {\n this.huffmanTablesDC[huffmanTableSpec & 15] = buildHuffmanTable(\n codeLengths, huffmanValues,\n );\n } else {\n this.huffmanTablesAC[huffmanTableSpec & 15] = buildHuffmanTable(\n codeLengths, huffmanValues,\n );\n }\n }\n break;\n }\n\n case 0xFFDD: // DRI (Define Restart Interval)\n readUint16(); // skip data length\n this.resetInterval = readUint16();\n break;\n\n case 0xFFDA: { // SOS (Start of Scan)\n readUint16(); // skip length\n const selectorsCount = data[offset++];\n const components = [];\n const frame = this.frames[0];\n for (let i = 0; i < selectorsCount; i++) {\n const component = frame.components[data[offset++]];\n const tableSpec = data[offset++];\n component.huffmanTableDC = this.huffmanTablesDC[tableSpec >> 4];\n component.huffmanTableAC = this.huffmanTablesAC[tableSpec & 15];\n components.push(component);\n }\n const spectralStart = data[offset++];\n const spectralEnd = data[offset++];\n const successiveApproximation = data[offset++];\n const processed = decodeScan(data, offset,\n frame, components, this.resetInterval,\n spectralStart, spectralEnd,\n successiveApproximation >> 4, successiveApproximation & 15);\n offset += processed;\n break;\n }\n\n case 0xFFFF: // Fill bytes\n if (data[offset] !== 0xFF) { // Avoid skipping a valid marker.\n offset--;\n }\n break;\n\n default:\n if (data[offset - 3] === 0xFF\n && data[offset - 2] >= 0xC0 && data[offset - 2] <= 0xFE) {\n // could be incorrect encoding -- last 0xFF byte of the previous\n // block was eaten by the encoder\n offset -= 3;\n break;\n }\n throw new Error(`unknown JPEG marker ${fileMarker.toString(16)}`);\n }\n fileMarker = readUint16();\n }\n }\n\n getResult() {\n const { frames } = this;\n if (this.frames.length === 0) {\n throw new Error('no frames were decoded');\n } else if (this.frames.length > 1) {\n console.warn('more than one frame is not supported');\n }\n\n // set each frame's components quantization table\n for (let i = 0; i < this.frames.length; i++) {\n const cp = this.frames[i].components;\n for (const j of Object.keys(cp)) {\n cp[j].quantizationTable = this.quantizationTables[cp[j].quantizationIdx];\n delete cp[j].quantizationIdx;\n }\n }\n\n const frame = frames[0];\n const { components, componentsOrder } = frame;\n const outComponents = [];\n const width = frame.samplesPerLine;\n const height = frame.scanLines;\n\n for (let i = 0; i < componentsOrder.length; i++) {\n const component = components[componentsOrder[i]];\n outComponents.push({\n lines: buildComponentData(frame, component),\n scaleX: component.h / frame.maxH,\n scaleY: component.v / frame.maxV,\n });\n }\n\n const out = new Uint8Array(width * height * outComponents.length);\n let oi = 0;\n for (let y = 0; y < height; ++y) {\n for (let x = 0; x < width; ++x) {\n for (let i = 0; i < outComponents.length; ++i) {\n const component = outComponents[i];\n out[oi] = component.lines[0 | y * component.scaleY][0 | x * component.scaleX];\n ++oi;\n }\n }\n }\n return out;\n }\n}\n\nexport default class JpegDecoder extends BaseDecoder {\n constructor(fileDirectory) {\n super();\n this.reader = new JpegStreamReader();\n if (fileDirectory.JPEGTables) {\n this.reader.parse(fileDirectory.JPEGTables);\n }\n }\n\n decodeBlock(buffer) {\n this.reader.resetFrames();\n this.reader.parse(new Uint8Array(buffer));\n return this.reader.getResult().buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","dctZigZag","Int32Array","dctCos1","dctSin1","dctCos3","dctSin3","dctCos6","dctSin6","dctSqrt2","dctSqrt1d2","buildHuffmanTable","codeLengths","values","k","code","push","children","q","p","j","pop","decodeScan","data","initialOffset","frame","components","resetInterval","spectralStart","spectralEnd","successivePrev","successive","mcusPerLine","progressive","startOffset","bitsData","bitsCount","readBit","nextByte","toString","decodeHuffman","tree","bit","node","receive","initialLength","n","receiveAndExtend","successiveACNextValue","eobrun","successiveACState","decodeMcu","component","decodeFunction","mcu","col","mcuCol","blockRow","v","blockCol","h","blocks","blocksPerLine","componentsLength","decodeFn","zz","t","huffmanTableDC","diff","pred","e","rs","huffmanTableAC","s","r","z","direction","marker","mcuExpected","blocksPerColumn","mcusPerColumn","usedResetInterval","buildComponentData","lines","samplesPerLine","R","quantizeAndInverse","dataOut","dataIn","qt","quantizationTable","v0","v1","v2","v3","v4","v5","v6","v7","sample","scanLine","line","JpegStreamReader","constructor","jfif","adobe","quantizationTables","huffmanTablesAC","huffmanTablesDC","resetFrames","frames","parse","readUint16","value","readDataBlock","array","subarray","prepareComponents","componentId","maxH","maxV","hasOwnProperty","Math","ceil","scanLines","blocksPerLineForMcu","blocksPerColumnForMcu","fileMarker","appData","version","major","minor","densityUnits","xDensity","yDensity","thumbWidth","thumbHeight","thumbData","flags0","flags1","transformCode","quantizationTablesEnd","quantizationTableSpec","tableData","extended","precision","componentsOrder","componentsCount","qId","quantizationIdx","huffmanLength","huffmanTableSpec","codeLengthSum","huffmanValues","selectorsCount","tableSpec","successiveApproximation","processed","getResult","console","warn","cp","Object","keys","outComponents","scaleX","scaleY","out","oi","y","x","JpegDecoder","super","reader","JPEGTables"],"sourceRoot":""} \ No newline at end of file diff --git a/docs/source/_static/749.embed-bundle.js b/docs/source/_static/749.embed-bundle.js new file mode 100644 index 0000000..d71a0b7 --- /dev/null +++ b/docs/source/_static/749.embed-bundle.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[749],{708:(e,t,r)=>{function n(e,t){let r=e.length-t,n=0;do{for(let r=t;r>0;r--)e[n+t]+=e[n],n++;r-=t}while(r>0)}function o(e,t,r){let n=0,o=e.length;const i=o/r;for(;o>t;){for(let r=t;r>0;--r)e[n+t]+=e[n],++n;o-=t}const l=e.slice();for(let t=0;ti});class i{async decode(e,t){const r=await this.decodeBlock(t),i=e.Predictor||1;if(1!==i){const t=!e.StripOffsets;return function(e,t,r,i,l,s){if(!t||1===t)return e;for(let e=0;e=e.byteLength);++s){let i;if(2===t){switch(l[0]){case 8:i=new Uint8Array(e,s*c*r*a,c*r*a);break;case 16:i=new Uint16Array(e,s*c*r*a,c*r*a/2);break;case 32:i=new Uint32Array(e,s*c*r*a,c*r*a/4);break;default:throw new Error(`Predictor 2 not allowed with ${l[0]} bits per sample.`)}n(i,c)}else 3===t&&(i=new Uint8Array(e,s*c*r*a,c*r*a),o(i,c,a))}return e}(r,i,t?e.TileWidth:e.ImageWidth,t?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return r}}},6749:(e,t,r)=>{r.r(t),r.d(t,{default:()=>o});var n=r(708);class o extends n.A{decodeBlock(e){return e}}}}]); +//# sourceMappingURL=749.embed-bundle.js.map \ No newline at end of file diff --git a/docs/source/_static/749.embed-bundle.js.map b/docs/source/_static/749.embed-bundle.js.map new file mode 100644 index 0000000..ad194b8 --- /dev/null +++ b/docs/source/_static/749.embed-bundle.js.map @@ -0,0 +1 @@ +{"version":3,"file":"749.embed-bundle.js","mappings":"4GAAA,SAASA,EAAaC,EAAKC,GACzB,IAAIC,EAASF,EAAIE,OAASD,EACtBE,EAAS,EACb,EAAG,CACD,IAAK,IAAIC,EAAIH,EAAQG,EAAI,EAAGA,IAC1BJ,EAAIG,EAASF,IAAWD,EAAIG,GAC5BA,IAGFD,GAAUD,CACZ,OAASC,EAAS,EACpB,CAEA,SAASG,EAAuBL,EAAKC,EAAQK,GAC3C,IAAIC,EAAQ,EACRC,EAAQR,EAAIE,OAChB,MAAMO,EAAKD,EAAQF,EAEnB,KAAOE,EAAQP,GAAQ,CACrB,IAAK,IAAIG,EAAIH,EAAQG,EAAI,IAAKA,EAC5BJ,EAAIO,EAAQN,IAAWD,EAAIO,KACzBA,EAEJC,GAASP,CACX,CAEA,MAAMS,EAAOV,EAAIW,QACjB,IAAK,IAAIP,EAAI,EAAGA,EAAIK,IAAML,EACxB,IAAK,IAAIQ,EAAI,EAAGA,EAAIN,IAAkBM,EACpCZ,EAAKM,EAAiBF,EAAKQ,GAAKF,GAAOJ,EAAiBM,EAAI,GAAKH,EAAML,EAG7E,C,iBC9Be,MAAMS,EACnB,YAAMC,CAAOC,EAAeC,GAC1B,MAAMC,QAAgBC,KAAKC,YAAYH,GACjCI,EAAYL,EAAcM,WAAa,EAC7C,GAAkB,IAAdD,EAAiB,CACnB,MAAME,GAAWP,EAAcQ,aAK/B,ODsBC,SAAwBC,EAAOJ,EAAWK,EAAOC,EAAQC,EAC9DC,GACA,IAAKR,GAA2B,IAAdA,EAChB,OAAOI,EAGT,IAAK,IAAIpB,EAAI,EAAGA,EAAIuB,EAAczB,SAAUE,EAAG,CAC7C,GAAIuB,EAAcvB,GAAK,GAAM,EAC3B,MAAM,IAAIyB,MAAM,wEAElB,GAAIF,EAAcvB,KAAOuB,EAAc,GACrC,MAAM,IAAIE,MAAM,qEAEpB,CAEA,MAAMvB,EAAiBqB,EAAc,GAAK,EACpC1B,EAAiC,IAAxB2B,EAA4B,EAAID,EAAczB,OAE7D,IAAK,IAAIE,EAAI,EAAGA,EAAIsB,KAEdtB,EAAIH,EAASwB,EAAQnB,GAAkBkB,EAAMM,cAFrB1B,EAAG,CAK/B,IAAIJ,EACJ,GAAkB,IAAdoB,EAAiB,CACnB,OAAQO,EAAc,IACpB,KAAK,EACH3B,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/D,MACF,KAAK,GACHN,EAAM,IAAIgC,YACRR,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,KAAK,GACHN,EAAM,IAAIiC,YACRT,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,QACE,MAAM,IAAIuB,MAAM,gCAAgCF,EAAc,uBAElE5B,EAAaC,EAAKC,EACpB,MAAyB,IAAdmB,IACTpB,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/DD,EAAuBL,EAAKC,EAAQK,GAExC,CACA,OAAOkB,CACT,CC3EaU,CACLjB,EAASG,EALOE,EAAUP,EAAcoB,UAAYpB,EAAcqB,WACjDd,EAAUP,EAAcsB,WACzCtB,EAAcuB,cAAgBvB,EAAcwB,YAGDxB,EAAcyB,cACzDzB,EAAc0B,oBAElB,CACA,OAAOxB,CACT,E,4DChBa,MAAMyB,UAAmB,IACtC,WAAAvB,CAAYH,GACV,OAAOA,CACT,E","sources":["webpack://ipyopenlayers/./node_modules/geotiff/dist-module/predictor.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/basedecoder.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/raw.js"],"sourcesContent":["function decodeRowAcc(row, stride) {\n let length = row.length - stride;\n let offset = 0;\n do {\n for (let i = stride; i > 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\nexport default class RawDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n return buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","RawDecoder"],"sourceRoot":""} \ No newline at end of file diff --git a/examples/demo.json b/examples/demo.json new file mode 100644 index 0000000..3cba51a --- /dev/null +++ b/examples/demo.json @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.39940577291571, 34.5780540544853], [-77.39940610066606, 34.57805427015046], [-77.39940640189788, 34.57805446836596], [-77.39940680648922, 34.57805473459376], [-77.39940687019617, 34.57805477651398], [-77.39940689381065, 34.57805472199389], [-77.3994073308358, 34.57805432604519], [-77.39940731720131, 34.578054179242265], [-77.39940728534575, 34.578053836252096], [-77.39940728147378, 34.57805380828763], [-77.39940726378504, 34.57805363205166], [-77.39940725501071, 34.57805361742678], [-77.39940719593868, 34.57805349818902], [-77.39940711258689, 34.57805350039165], [-77.39940706262787, 34.57805349996589], [-77.3994070238417, 34.578053501157314], [-77.39940689549977, 34.57805350509971], [-77.3994068702403, 34.5780535173504], [-77.39940683257294, 34.57805352755014], [-77.39940665584797, 34.57805351246129], [-77.39940650171212, 34.578053517196004], [-77.39940646539253, 34.578053518311656], [-77.39940610067742, 34.578053945657025]]]]}, "type": "Feature", "id": "demo0", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.39940610067742, 34.578053945657025], [-77.39940646539254, 34.578053518311656], [-77.39940650171212, 34.578053517196004], [-77.39940665584797, 34.57805351246129], [-77.39940683257294, 34.57805352755014], [-77.3994068702403, 34.5780535173504], [-77.39940689549977, 34.57805350509971], [-77.3994070238417, 34.578053501157314], [-77.39940706262786, 34.57805349996589], [-77.39940711258689, 34.57805350039165], [-77.39940719593868, 34.57805349818902], [-77.39940725501071, 34.57805361742678], [-77.39940726378504, 34.57805363205166], [-77.39940728147378, 34.57805380828763], [-77.39940728534575, 34.578053836252096], [-77.39940731720131, 34.578054179242265], [-77.39940733083579, 34.57805432604519], [-77.39940689381065, 34.57805472199389], [-77.39940687019617, 34.57805477651398], [-77.39940680648922, 34.57805473459376], [-77.39940640189788, 34.57805446836596], [-77.39940610066606, 34.57805427015046], [-77.39940577291571, 34.5780540544853]], [[-77.15253692933524, 34.56151513936439], [-77.15144999595574, 34.559341247413045], [-77.14904546023064, 34.55892756614713], [-77.14743744409338, 34.55867737428063], [-77.14671571532021, 34.55979772058227], [-77.1460046186939, 34.56099495515147], [-77.14491706514983, 34.56169475917134], [-77.14497207062252, 34.56632469366697], [-77.1467862491276, 34.568533382227606], [-77.1468223367107, 34.56857174152883], [-77.15293546566507, 34.56884388206718], [-77.1545505387783, 34.56568527620884], [-77.15420520136999, 34.56541924496929], [-77.15241022744132, 34.56354664885801]], [[-77.39940554864587, 34.57805385245915], [-77.39940533113186, 34.57805388005787], [-77.39940430019209, 34.57805426698911], [-77.39940533109453, 34.578054945339986], [-77.39940577334389, 34.57805523634738], [-77.39940636733915, 34.578055627206076], [-77.39940687015479, 34.57805595806707], [-77.39940699795643, 34.57805553621237], [-77.39940724128886, 34.57805510120852], [-77.39940743965354, 34.578054643232534], [-77.39940755688437, 34.57805453702035], [-77.39940750261498, 34.578053952699676], [-77.3994074890696, 34.578053806856154], [-77.3994074632458, 34.5780536203485], [-77.39940745698588, 34.578053593842995], [-77.39940735796857, 34.57805341115014], [-77.39940730418934, 34.578053365925925], [-77.39940725501948, 34.57805336743631], [-77.39940719426355, 34.5780533693026], [-77.3994070626323, 34.57805337334602], [-77.39940695610295, 34.57805337661838], [-77.39940687024513, 34.57805337925574], [-77.39940660801658, 34.578053387310824], [-77.3994063340491, 34.5780533957265], [-77.39940610068713, 34.578053669162294]]]]}, "type": "Feature", "id": "demo1", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.32933078260577, 34.420286653098714], [-77.33117475736287, 34.42020746565844], [-77.33460597771473, 34.423794493641175], [-77.33473784452963, 34.42503544541048], [-77.33632618419041, 34.42680517558428], [-77.33747700638781, 34.42855603846078], [-77.34182498346473, 34.429486093242005], [-77.3443014336959, 34.4289134511942], [-77.3479590438793, 34.427720262919735], [-77.35374570015937, 34.426020369676905], [-77.35418268857896, 34.425671448613706], [-77.35580765974248, 34.42203473109974], [-77.36126255666461, 34.421004183238395], [-77.36344455408788, 34.42015390029393], [-77.36475455567283, 34.42058572773829], [-77.36473382774254, 34.42118360092122], [-77.36981780251108, 34.42380206211797], [-77.37288890174588, 34.421604550178465], [-77.37235930937102, 34.420589987156944], [-77.37089873650106, 34.41737918573283], [-77.3686879334351, 34.415982921225336], [-77.3692667954851, 34.41197094998541], [-77.36944809133527, 34.410617446370466], [-77.36806448865198, 34.40898670266513], [-77.37020727996773, 34.40545217197258], [-77.3702483920398, 34.4052960566473], [-77.37061425801089, 34.405272949613405], [-77.37897277109447, 34.404792314733655], [-77.37984473264206, 34.401326092299655], [-77.38239321609933, 34.405118642372805], [-77.39091208057313, 34.4058544225021], [-77.39188285015761, 34.406022388789815], [-77.39999147731666, 34.40552217919128], [-77.39831489526793, 34.40129507295282], [-77.39979849639546, 34.39602876048577], [-77.39928119919556, 34.39594021749391], [-77.39952703136558, 34.395787537711655], [-77.39987930422379, 34.39587269928718], [-77.40466993479139, 34.39081240476746], [-77.40677214858167, 34.38980797349567], [-77.4082976008465, 34.38727824052392], [-77.41050913167675, 34.386873977365354], [-77.41149038486083, 34.3857579837607], [-77.41244798185613, 34.383158449744336], [-77.41248853968165, 34.38308409421803], [-77.4125375553666, 34.38309638278298], [-77.41285419480836, 34.38294615830809], [-77.41732982321527, 34.38094308199863], [-77.41791529790049, 34.3809730788182], [-77.4219497207388, 34.380889807031664], [-77.42268488350805, 34.380855760642284], [-77.42276876872671, 34.38093177564485], [-77.42612711490543, 34.382270376889814], [-77.42647003797374, 34.382761855788], [-77.42625977263825, 34.38381273225756], [-77.42950550716348, 34.386144411534], [-77.43035092892055, 34.386324250985595], [-77.44022590989476, 34.38708143255442], [-77.44044868975519, 34.386820865760484], [-77.44164434218094, 34.386681806412255], [-77.4412519525014, 34.38728143460479], [-77.44081443484492, 34.38736787530143], [-77.44230721758807, 34.389466432203506], [-77.44614883918446, 34.390233542319805], [-77.4464065578547, 34.39045408024087], [-77.44682527628366, 34.390475446139774], [-77.44700593866774, 34.39038096794769], [-77.44718659562473, 34.390286486485515], [-77.44712919907474, 34.39007617914795], [-77.44793069982882, 34.387622267359845], [-77.44655660840455, 34.38540935461384], [-77.44625024303005, 34.38427320414274], [-77.44431734387501, 34.382033477276266], [-77.44285854497232, 34.37885634640306], [-77.44785633785028, 34.374538123095576], [-77.44698962543792, 34.37136131829231], [-77.44400000001644, 34.36039999999008], [-77.43458662286403, 34.36532330898005], [-77.4251721160516, 34.37024593650608], [-77.41575647950076, 34.37516788216274], [-77.41104823754901, 34.37762859916338], [-77.40633971313336, 34.38008914554466], [-77.39692181687144, 34.38500972624638], [-77.38750279063719, 34.38992962386249], [-77.37808263435296, 34.3948488379875], [-77.37337213241793, 34.39730818861416], [-77.36866134794137, 34.39976736821598], [-77.35923893132514, 34.404685214142425], [-77.3498153844272, 34.40960237536133], [-77.34039070717066, 34.41451885146718], [-77.33096489947884, 34.41943464205446]], [[-77.3055186605671, 34.43269907488547], [-77.30655327220532, 34.434379757448674], [-77.30869877869708, 34.43652519484434], [-77.31001455285869, 34.43456009430833], [-77.31238461485653, 34.43415500799195], [-77.31306413527085, 34.432780884551285], [-77.3135785735945, 34.432043161588126], [-77.31331479387134, 34.42985190702052], [-77.31362596929779, 34.429343048133894], [-77.3149040292102, 34.4278077101758], [-77.31210989248345, 34.429264165051066], [-77.30739543409321, 34.43172111671741]], [[-77.28289095309782, 34.444486342719294], [-77.289583619529, 34.44313734720211], [-77.29309813089382, 34.445507581635], [-77.30440131269941, 34.44453140229724], [-77.30078595268313, 34.43948411149647], [-77.29935643213052, 34.435909781030205], [-77.29325036283106, 34.4390909411066]], [[-77.22791697396704, 34.473093474483875], [-77.23403834099052, 34.47313092171005], [-77.2356204868993, 34.47203759845746], [-77.24057727316332, 34.47110015858404], [-77.24647425919052, 34.466907064929764], [-77.25377902121352, 34.46187414859207], [-77.25740109040493, 34.46333034485083], [-77.25806090063922, 34.465174589531955], [-77.26018575086117, 34.46526759392394], [-77.26255810254042, 34.46529596709001], [-77.26493314292327, 34.4644256299325], [-77.2667539837912, 34.461961406824216], [-77.26951334401079, 34.463095355871225], [-77.27093955393204, 34.46370540112572], [-77.27483189894548, 34.46420788731779], [-77.27245308319681, 34.468955758761275], [-77.27275803174818, 34.46935281239414], [-77.27306112938923, 34.46953206336318], [-77.27503092112724, 34.470672634343835], [-77.27524965084731, 34.47175333281274], [-77.276250650603, 34.47183225649323], [-77.27842251203616, 34.47075865878416], [-77.27949959258387, 34.471650918455765], [-77.28375416637518, 34.4698451055961], [-77.29011674428948, 34.46551248156134], [-77.29266422143553, 34.46379817219438], [-77.2937666697121, 34.463197264354015], [-77.29897010145473, 34.46252022175499], [-77.30094116912471, 34.46272123457566], [-77.3021081970862, 34.462506529860875], [-77.30255665978021, 34.461256023217686], [-77.30232272016312, 34.45941957108035], [-77.30229156186373, 34.45926889581487], [-77.3008132670316, 34.45758945151065], [-77.30169000659981, 34.45586393974895], [-77.29593294488106, 34.45437322788024], [-77.30188686018919, 34.45125586630647], [-77.30554564961051, 34.44979341631104], [-77.30621294330669, 34.44898000967999], [-77.30561507590004, 34.44684839787881], [-77.30443948674427, 34.44606324948056], [-77.2950479991887, 34.44791950648506], [-77.29600208644707, 34.450446489824785], [-77.2929072855267, 34.45355205667664], [-77.29028847269069, 34.452278610618656], [-77.28813780812303, 34.452387219317686], [-77.28644704890809, 34.45239570971904], [-77.2836885884, 34.45183407023626], [-77.28174771693897, 34.45178354586174], [-77.27999956706383, 34.450711529113626], [-77.27808413764336, 34.45087091721007], [-77.27806393181955, 34.4481940076211], [-77.27607194426412, 34.448037065868554], [-77.26697479678369, 34.45277333894442], [-77.25383372263998, 34.45961253440221], [-77.24069045414564, 34.46645039275779], [-77.23411799695381, 34.469868820179684]], [[-77.13206303244968, 34.59235517377309], [-77.14041560026347, 34.59437956001024], [-77.14630203063625, 34.59520748133121], [-77.14707538403012, 34.59520747990657], [-77.14776996735016, 34.59465941350485], [-77.15300596868484, 34.59172281407314], [-77.15354072780681, 34.59044065501473], [-77.15374073323287, 34.58655386650353], [-77.15364267679375, 34.58423091896078], [-77.15565067363497, 34.581792662723004], [-77.15679489585426, 34.57953712103641], [-77.15587833424617, 34.577206768395236], [-77.15590895028824, 34.576868687399376], [-77.1575640738741, 34.57337375162895], [-77.15777719705378, 34.57315981751765], [-77.16150133404433, 34.571902859545034], [-77.16587012824164, 34.57080838482029], [-77.1667342271194, 34.570615254612676], [-77.16748140226936, 34.570246283495614], [-77.170471670772, 34.56341911199621], [-77.17093713377983, 34.56250083879752], [-77.17037388271528, 34.56192711799848], [-77.17045797122739, 34.55680347045155], [-77.16872683295583, 34.555260268484126], [-77.1736329108138, 34.55271478612764], [-77.18675584530247, 34.54103680974169], [-77.18679441798356, 34.540942656729214], [-77.18710946278068, 34.533292653986514], [-77.1871169963584, 34.53309052775687], [-77.18711587299477, 34.53309029864644], [-77.18999656258332, 34.52544427754455], [-77.19292824962926, 34.522313878613645], [-77.20061968406097, 34.51226601583163], [-77.20511866344556, 34.51327904866838], [-77.21067663337777, 34.5113313932048], [-77.21075262574234, 34.50707675878356], [-77.20635610841191, 34.50757985756697], [-77.21152098940459, 34.50352226269968], [-77.21149902049817, 34.4986079311762], [-77.20906116130391, 34.498414701979904], [-77.2115721526845, 34.49565030153879], [-77.21156384864265, 34.4932345081089], [-77.2141669864611, 34.489466747546984], [-77.21715186140148, 34.48821617728652], [-77.21605671529142, 34.48701951573875], [-77.21676178976817, 34.48516512732725], [-77.21929529165146, 34.48050992390037], [-77.22093112816523, 34.47834501871232], [-77.22172164483297, 34.476764046880014], [-77.22202438711534, 34.47615723992991], [-77.22097143655486, 34.47670467082662], [-77.21439733329747, 34.48012209377758], [-77.20782268130138, 34.48353918163083], [-77.20124748054155, 34.48695593424932], [-77.1880954326309, 34.49378843323389], [-77.16178475054882, 34.50744940235593], [-77.13546528546534, 34.52110499237207], [-77.10913703580583, 34.534755194509884], [-77.09596961627106, 34.54157827238282], [-77.0828000000069, 34.54839999999615], [-77.09208215603842, 34.55668733761411], [-77.09672392733995, 34.56083071254245], [-77.10136616096389, 34.56497389144252], [-77.11065201557464, 34.573259660834395], [-77.11529563675929, 34.5774022511644], [-77.11993972066199, 34.58154464514258], [-77.1292292770173, 34.58982884371971]], [[-77.15241022744132, 34.56354664885801], [-77.15420520136998, 34.565419244969284], [-77.1545505387783, 34.56568527620884], [-77.15293546566505, 34.56884388206718], [-77.1468223367107, 34.56857174152883], [-77.1467862491276, 34.568533382227606], [-77.14497207062252, 34.56632469366697], [-77.14491706514983, 34.56169475917134], [-77.1460046186939, 34.56099495515147], [-77.14671571532021, 34.55979772058227], [-77.14743744409338, 34.55867737428063], [-77.14904546023062, 34.55892756614713], [-77.15144999595574, 34.559341247413045], [-77.15253692933524, 34.56151513936439]], [[-77.39940610068713, 34.578053669162294], [-77.3994063340491, 34.5780533957265], [-77.39940660801658, 34.578053387310824], [-77.39940687024513, 34.57805337925574], [-77.39940695610295, 34.57805337661838], [-77.3994070626323, 34.57805337334602], [-77.39940719426355, 34.5780533693026], [-77.39940725501948, 34.57805336743631], [-77.39940730418934, 34.578053365925925], [-77.39940735796857, 34.57805341115014], [-77.39940745698588, 34.57805359384299], [-77.3994074632458, 34.5780536203485], [-77.3994074890696, 34.578053806856154], [-77.39940750261498, 34.578053952699676], [-77.39940755688437, 34.57805453702035], [-77.39940743965354, 34.578054643232534], [-77.39940724128886, 34.57805510120852], [-77.39940699795643, 34.57805553621237], [-77.39940687015479, 34.57805595806707], [-77.39940636733914, 34.578055627206076], [-77.39940577334389, 34.57805523634738], [-77.39940533109453, 34.578054945339986], [-77.39940430019209, 34.57805426698912], [-77.39940533113186, 34.57805388005788], [-77.39940554864587, 34.57805385245915]], [[-77.11207194343993, 34.55828691362007], [-77.10249413071804, 34.56275346922161], [-77.09830442799088, 34.56024112826809], [-77.09714013272374, 34.56001151325018], [-77.09520735768265, 34.55693761958649], [-77.10029710834748, 34.55362310136736], [-77.10035982177315, 34.553540757695515], [-77.10050521516038, 34.55354546668941], [-77.10706349188865, 34.553757914455105]], [[-77.43241797173333, 34.39776785756878], [-77.43274403871156, 34.39802151447347], [-77.43318626997807, 34.39791482353961], [-77.43354299621332, 34.39769631313794], [-77.43250820386139, 34.397156727669575], [-77.43217545665915, 34.3974228478566], [-77.43176772948128, 34.39760556039392]], [[-77.14608048707832, 34.583219147129064], [-77.14763678109978, 34.582957284823806], [-77.14802091311532, 34.583783486157586], [-77.1466288409394, 34.58428009381285], [-77.14523831607329, 34.584878465051744], [-77.1406814410692, 34.58555388255154], [-77.13006056015922, 34.58819161986236], [-77.12854069186088, 34.58223093555608], [-77.12854055748672, 34.57868319504471], [-77.12933558472513, 34.57803817063931], [-77.12854057606424, 34.577895425740195], [-77.12835002186677, 34.574673005637315], [-77.1303740234601, 34.57177506170022], [-77.13084570272302, 34.570207455489694], [-77.13275864513803, 34.57088492964574], [-77.1372183499914, 34.57409250769384], [-77.13794876224092, 34.57482293908047], [-77.13861756738187, 34.57549171891885]], [[-77.37953825860046, 34.40982282272741], [-77.37493880496706, 34.41090075984324], [-77.37862079745018, 34.4133484397919], [-77.38317419302857, 34.41356171827999], [-77.38736647737954, 34.411541128211795], [-77.38658495056237, 34.40919041391665], [-77.38147310281768, 34.40731079407036]], [[-77.38707117747693, 34.39641549573966], [-77.38562716150848, 34.39852509922709], [-77.38552938894509, 34.400637322135196], [-77.38520450742088, 34.40125243452559], [-77.38078570299993, 34.400392894810224], [-77.37977956869284, 34.40022302620648], [-77.37999885890682, 34.398160087544845], [-77.38099633037876, 34.39770139230592], [-77.37915173481005, 34.395369800920356]], [[-77.41979720706723, 34.39139698708163], [-77.41474483715167, 34.39119854302648], [-77.41462022968778, 34.39132314661886], [-77.4134861717247, 34.39307773843446], [-77.41326253854061, 34.3952555788114], [-77.41743982966304, 34.39500289014426], [-77.41950859604628, 34.394275923013325], [-77.42044178785788, 34.39408768523936], [-77.42038616109168, 34.392159241950424], [-77.42046721764093, 34.39172321914001], [-77.42072533618648, 34.391636022911875], [-77.4201647236619, 34.39134672295856]], [[-77.3893008519995, 34.42408787248524], [-77.38912098487387, 34.42351768856072], [-77.38791266965467, 34.42341178532797], [-77.38816568644584, 34.42401644217105]], [[-77.40714418910046, 34.4047136010784], [-77.4080932241337, 34.40471360187997], [-77.40781515691154, 34.404363084475236], [-77.40712455076913, 34.40424190995614]], [[-77.39954076909424, 34.578127409806115], [-77.39953422441505, 34.57812383838076], [-77.39952805378579, 34.57813051054682], [-77.39952752764859, 34.57813102011227], [-77.39951614300988, 34.57814322919679], [-77.39951517875978, 34.578145030933655], [-77.39951453048835, 34.5781461634614], [-77.3995084794953, 34.578155294151884], [-77.39951086168848, 34.5781675385864], [-77.39950382940395, 34.57816771463075], [-77.39950221748025, 34.57817273924256], [-77.39950163326642, 34.57817456032542], [-77.39950271744948, 34.57818647429149], [-77.39949151546624, 34.57820177851756], [-77.39949130964256, 34.57820236406467], [-77.39949122752424, 34.57820259768264], [-77.39949151532463, 34.57820595517541], [-77.39949912960824, 34.57820145746155], [-77.39951115825104, 34.578194352210836], [-77.39951614138892, 34.57819140869867], [-77.39952831387026, 34.57818412986332], [-77.39954076744962, 34.57817670927362], [-77.3995458778692, 34.578173682842596], [-77.39955106786901, 34.578167427209536], [-77.39955916199055, 34.57814643887056], [-77.39956246145937, 34.57813924730528]], [[-77.34587817987449, 34.534163748533274], [-77.34587816814742, 34.53416430793813], [-77.34587263571262, 34.53416881200081], [-77.34587274110733, 34.534168963604266], [-77.34587265551194, 34.53417275180444], [-77.34587268904204, 34.534172774087374], [-77.34587272821275, 34.53417296032733], [-77.34587343244121, 34.534174097109386], [-77.34587340280538, 34.53417455692852], [-77.34587363262037, 34.53417488840779], [-77.34587362666676, 34.53417500287995], [-77.34587387387907, 34.53417523639314], [-77.34587411886478, 34.53417541021902], [-77.34587415191288, 34.534175438237085], [-77.34587480447664, 34.53417568938707], [-77.34587573056002, 34.53417575408916], [-77.34587654978552, 34.534175509339555], [-77.34587770942314, 34.53417516288933], [-77.3458788217655, 34.534174693843546], [-77.34588066731803, 34.53417427919651], [-77.34588265015962, 34.53417368680798], [-77.34588502596813, 34.534171628174796], [-77.3458909907904, 34.53417023863723], [-77.34589119308563, 34.53417017097578], [-77.34589131942958, 34.53417014457203], [-77.345891940756, 34.53416951980965], [-77.3458912223226, 34.534168902883096], [-77.3458872718327, 34.534165510554494], [-77.3458847657702, 34.53416335857105], [-77.34588260290963, 34.53416150129906], [-77.3458791934352, 34.53415857354539]], [[-77.399407698603, 34.578053840011556], [-77.39940769279347, 34.57805377746021], [-77.3994076812505, 34.578053734438775], [-77.39940763978595, 34.57805358016185], [-77.39940760135697, 34.57805341744715], [-77.399407580538, 34.578053379034905], [-77.3994074104938, 34.578053236040745], [-77.3994072550239, 34.57805324081643], [-77.39940706292012, 34.578053246717445], [-77.39940706263674, 34.57805324672616], [-77.3994070624074, 34.5780532467332], [-77.39940687024958, 34.57805325263587], [-77.39940671432103, 34.57805325742565], [-77.39940620270568, 34.57805327314134], [-77.39940610069681, 34.578053392667556], [-77.39940585938459, 34.578053472791595], [-77.3994053311438, 34.57805353981612], [-77.39940405526329, 34.578054018678245], [-77.39940352316083, 34.57805408938375], [-77.39940338035231, 34.578054843299654], [-77.3994048946155, 34.5780558397099], [-77.39940504912144, 34.57805612121864], [-77.39940533105312, 34.57805612689306], [-77.39940660301015, 34.5780569638618], [-77.3994068701134, 34.57805713962014], [-77.39940737222963, 34.57805548220733], [-77.39940778293298, 34.5780547479955], [-77.39940776879209, 34.57805459574012], [-77.39940775719408, 34.57805447086388]]]]}, "type": "Feature", "id": "demo2", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.3149040292102, 34.4278077101758], [-77.31362596929779, 34.429343048133894], [-77.31331479387134, 34.42985190702052], [-77.3135785735945, 34.432043161588126], [-77.31306413527085, 34.432780884551285], [-77.31238461485653, 34.43415500799195], [-77.31001455285869, 34.43456009430833], [-77.30869877869708, 34.43652519484434], [-77.30655327220533, 34.43437975744868], [-77.3055186605671, 34.43269907488547], [-77.3026806930274, 34.43417789664927], [-77.29935643213052, 34.435909781030205], [-77.30078595268311, 34.43948411149647], [-77.30440131269941, 34.444531402297244], [-77.29309813089382, 34.445507581635], [-77.289583619529, 34.44313734720211], [-77.28289095309782, 34.444486342719294], [-77.28011367677956, 34.44593280748054], [-77.27607194426412, 34.448037065868554], [-77.27806393181955, 34.4481940076211], [-77.27808413764336, 34.45087091721007], [-77.27999956706383, 34.450711529113626], [-77.28174771693897, 34.45178354586174], [-77.2836885884, 34.45183407023626], [-77.28644704890809, 34.45239570971904], [-77.28813780812303, 34.452387219317686], [-77.29028847269069, 34.452278610618656], [-77.2929072855267, 34.45355205667664], [-77.29600208644707, 34.45044648982478], [-77.2950479991887, 34.44791950648506], [-77.30443948674427, 34.44606324948056], [-77.30561507590004, 34.44684839787881], [-77.30621294330669, 34.44898000967999], [-77.30554564961051, 34.44979341631104], [-77.30188686018919, 34.45125586630647], [-77.29593294488106, 34.45437322788024], [-77.30169000659981, 34.45586393974895], [-77.3008132670316, 34.45758945151065], [-77.30229156186373, 34.45926889581487], [-77.30232272016312, 34.45941957108035], [-77.30255665978021, 34.461256023217686], [-77.30210819708618, 34.462506529860875], [-77.30094116912471, 34.46272123457566], [-77.29897010145473, 34.46252022175499], [-77.29376666971208, 34.463197264354015], [-77.29266422143553, 34.46379817219438], [-77.29011674428946, 34.46551248156133], [-77.28375416637518, 34.4698451055961], [-77.27949959258387, 34.471650918455765], [-77.27842251203614, 34.47075865878416], [-77.276250650603, 34.47183225649323], [-77.27524965084731, 34.47175333281274], [-77.27503092112724, 34.470672634343835], [-77.27306112938923, 34.46953206336318], [-77.27275803174818, 34.46935281239414], [-77.27245308319681, 34.468955758761275], [-77.27483189894548, 34.46420788731779], [-77.27093955393205, 34.46370540112572], [-77.26951334401079, 34.463095355871225], [-77.2667539837912, 34.46196140682421], [-77.26493314292327, 34.4644256299325], [-77.26255810254044, 34.465295967090015], [-77.26018575086117, 34.46526759392394], [-77.25806090063922, 34.465174589531955], [-77.25740109040493, 34.46333034485083], [-77.2537790212135, 34.46187414859206], [-77.2464742591905, 34.466907064929764], [-77.24057727316332, 34.47110015858404], [-77.23562048689928, 34.47203759845746], [-77.23403834099052, 34.473130921710045], [-77.22791697396704, 34.473093474483875], [-77.2275449910986, 34.47328691291498], [-77.22425828241435, 34.47499583373232], [-77.22202438711534, 34.47615723992991], [-77.22172164483297, 34.476764046880014], [-77.22093112816523, 34.47834501871232], [-77.21929529165146, 34.48050992390037], [-77.21676178976817, 34.48516512732725], [-77.21605671529142, 34.48701951573875], [-77.21715186140148, 34.48821617728652], [-77.2141669864611, 34.489466747546984], [-77.21156384864267, 34.493234508108905], [-77.2115721526845, 34.49565030153879], [-77.2090611613039, 34.4984147019799], [-77.21149902049817, 34.4986079311762], [-77.21152098940459, 34.50352226269968], [-77.20635610841191, 34.507579857566974], [-77.21075262574234, 34.507076758783555], [-77.21067663337776, 34.5113313932048], [-77.20511866344556, 34.51327904866838], [-77.20061968406097, 34.51226601583163], [-77.19292824962926, 34.522313878613645], [-77.18999656258332, 34.52544427754455], [-77.18711587299477, 34.53309029864644], [-77.1871169963584, 34.53309052775687], [-77.18710946278068, 34.533292653986514], [-77.18679441798358, 34.540942656729214], [-77.18675584530247, 34.54103680974169], [-77.1736329108138, 34.55271478612764], [-77.16872683295584, 34.55526026848413], [-77.17045797122739, 34.55680347045155], [-77.17037388271528, 34.56192711799848], [-77.17093713377983, 34.56250083879751], [-77.170471670772, 34.563419111996204], [-77.16748140226936, 34.570246283495614], [-77.1667342271194, 34.570615254612676], [-77.16587012824164, 34.57080838482029], [-77.16150133404435, 34.571902859545034], [-77.15777719705378, 34.57315981751765], [-77.15756407387408, 34.57337375162895], [-77.15590895028825, 34.576868687399376], [-77.15587833424617, 34.577206768395236], [-77.15679489585426, 34.57953712103641], [-77.15565067363497, 34.581792662723004], [-77.15364267679375, 34.58423091896078], [-77.15374073323287, 34.58655386650353], [-77.15354072780681, 34.59044065501473], [-77.15300596868484, 34.59172281407314], [-77.14776996735016, 34.59465941350485], [-77.14707538403012, 34.59520747990657], [-77.14630203063625, 34.59520748133121], [-77.14041560026347, 34.59437956001024], [-77.13206303244968, 34.59235517377309], [-77.13852068543206, 34.59811225591832], [-77.1478139466977, 34.60639488109072], [-77.15246127239699, 34.610535898339656], [-77.15485401266312, 34.61266764461739], [-77.16020330649829, 34.608579447647664], [-77.1611189964388, 34.60772126164122], [-77.16147090162913, 34.6074809117594], [-77.16531357854211, 34.60573657578637], [-77.16853824840526, 34.60380339645687], [-77.17108173531628, 34.60070174903768], [-77.1800139482095, 34.596131891489705], [-77.18316846235463, 34.59578276371086], [-77.18513597425438, 34.594274586192114], [-77.18699837430869, 34.59175781027504], [-77.18941206785072, 34.58707091331651], [-77.19433244406017, 34.584676172710196], [-77.19935903568214, 34.580317370874084], [-77.20421823801954, 34.574998492683875], [-77.20562672432011, 34.57368773664935], [-77.20675265972135, 34.57336065238147], [-77.20762396652455, 34.572291941350116], [-77.2057940711245, 34.57188808255823], [-77.2063250975792, 34.56578475276357], [-77.21003159298745, 34.563522689269796], [-77.21538170867248, 34.563512540412646], [-77.21789671155305, 34.56356954538566], [-77.22354241735641, 34.56347628282994], [-77.22364171170227, 34.56342410705624], [-77.22364425490557, 34.563383555928745], [-77.2239830300136, 34.562606014343686], [-77.2248839608134, 34.55995681610601], [-77.22518259688952, 34.55973417349531], [-77.2250563308956, 34.556337392336154], [-77.22518394827209, 34.555999596463], [-77.22507757938817, 34.555787989890796], [-77.22417551923171, 34.55348259406031], [-77.22326461187184, 34.55311633084846], [-77.22274583041204, 34.55166578954748], [-77.22279487878134, 34.54735371672994], [-77.220847726151, 34.54661123233644], [-77.2168109697165, 34.546292122958995], [-77.215379733782, 34.54320746687084], [-77.217149243058, 34.54077248313651], [-77.21945661390534, 34.53835627195119], [-77.2222838745125, 34.53587763239513], [-77.22419581664501, 34.53323139708563], [-77.22612372705274, 34.53131311298299], [-77.22705247345753, 34.53174705719635], [-77.2283977782982, 34.533536856042545], [-77.2285384185653, 34.534855183629205], [-77.23093185162409, 34.53656107833721], [-77.23088567531144, 34.538446576052465], [-77.23515898755247, 34.53689490301804], [-77.23909972810259, 34.531808797249006], [-77.24026960375346, 34.52942268870188], [-77.25130622066914, 34.52360609221732], [-77.25227660738155, 34.5239986901836], [-77.25622943975591, 34.5228057610673], [-77.25880006939612, 34.522749990084364], [-77.2630710389455, 34.51690221958784], [-77.26162770773927, 34.51535561035821], [-77.26251597563423, 34.51125402884492], [-77.25904065899894, 34.51276855098882], [-77.25832216663957, 34.51205002109325], [-77.25690916879611, 34.51234503868662], [-77.25581356288413, 34.510988490402475], [-77.25258718191307, 34.51115514252865], [-77.25170258180725, 34.511171926537614], [-77.24767156223652, 34.51230885463156], [-77.2476716572908, 34.51031773364224], [-77.24767062902825, 34.50938784289676], [-77.2481585150673, 34.50794702161971], [-77.24768998257355, 34.50638138068132], [-77.25016843466895, 34.50573241349271], [-77.25142221499613, 34.50667578279976], [-77.25181140219901, 34.50723452714085], [-77.25177946866697, 34.50778269065449], [-77.25262560166433, 34.509566379522646], [-77.25461139986274, 34.5084876889612], [-77.25618233241083, 34.50705110291147], [-77.259209837882, 34.505750013180666], [-77.26312068421646, 34.50135206383629], [-77.25933038265086, 34.50074923588649], [-77.2583492341773, 34.500542725802255], [-77.25732911865185, 34.50048377580573], [-77.25621148716023, 34.499177848996894], [-77.25808461401056, 34.49620984733059], [-77.25570485416605, 34.49580554674138], [-77.25567946339748, 34.49126037673723], [-77.25836166768343, 34.48830355279546], [-77.2638747971866, 34.48403086518153], [-77.26630002762272, 34.480851828811254], [-77.26945949610564, 34.48064277034048], [-77.2680063413342, 34.48328557836939], [-77.26759874662318, 34.48432426405242], [-77.26754452916975, 34.486580557311356], [-77.2674205634676, 34.48747157391448], [-77.26755266336768, 34.488258340438534], [-77.26680457388301, 34.491222558516014], [-77.26698951898463, 34.491577029438766], [-77.2725108085949, 34.49250761515982], [-77.27264564148993, 34.49243551630548], [-77.27266974004029, 34.49250257725352], [-77.27289360830042, 34.492616537888885], [-77.27334551110289, 34.496031918409024], [-77.26759437234571, 34.500074700153405], [-77.26686715413663, 34.506458351203676], [-77.2673140944908, 34.50693279824005], [-77.2721388788933, 34.50803686726922], [-77.2733323456216, 34.50698440730786], [-77.27875512009216, 34.50283410270445], [-77.28056579129075, 34.50109537669617], [-77.28520725823185, 34.49762186258975], [-77.2840939868488, 34.49511874871732], [-77.28410761403309, 34.494312628570086], [-77.28436460224812, 34.49351884312339], [-77.28271417171196, 34.493097188931685], [-77.2825918115267, 34.49294842822782], [-77.28224623333452, 34.492541898919654], [-77.28107857205966, 34.49200774155889], [-77.28153773896437, 34.4902838687252], [-77.28196846797883, 34.489392838719354], [-77.28277393933435, 34.488920595682046], [-77.28278127837554, 34.489180754280255], [-77.284377255511, 34.48958222922523], [-77.28478447604411, 34.490078803325325], [-77.28537635331446, 34.48987757578644], [-77.28555651363979, 34.48981543785467], [-77.2858882408477, 34.48970101528003], [-77.29036288173239, 34.4882049062095], [-77.29208247543201, 34.488323289370605], [-77.29347439341235, 34.48909822921039], [-77.2935725294848, 34.489964115289645], [-77.29517617131881, 34.49022593830297], [-77.2974875026608, 34.489922982631825], [-77.29832137819722, 34.489955720077546], [-77.29941251654778, 34.489804458745525], [-77.30409106257167, 34.488788219871694], [-77.30461235443333, 34.48938800098573], [-77.30795043838617, 34.489728871784365], [-77.31085299763132, 34.49095793893802], [-77.31204676353538, 34.49122838027515], [-77.31289440874465, 34.49370945493135], [-77.31700084394357, 34.496499507120376], [-77.3200344702569, 34.496028396500904], [-77.32959422245818, 34.49489253030541], [-77.33377710953536, 34.49065296323888], [-77.33301315403746, 34.488214286001615], [-77.33165143398777, 34.4872376228373], [-77.3314725292226, 34.48158070528177], [-77.33157473359582, 34.48058716359772], [-77.33170620345108, 34.47947407823541], [-77.3321844872606, 34.47397817271457], [-77.3328627303796, 34.47256774552606], [-77.33644655025893, 34.47012395286294], [-77.34049951101007, 34.47008073904309], [-77.34275196421609, 34.46884962580198], [-77.34765438019761, 34.46739977844058], [-77.3490749769169, 34.46680218994311], [-77.3495999441052, 34.466565839679845], [-77.35426833464413, 34.46557425388613], [-77.36012102792435, 34.46682059052392], [-77.36562032480361, 34.46772141669112], [-77.37167222849311, 34.46780535595368], [-77.37651862355143, 34.4681999454404], [-77.38483069263211, 34.465457007830466], [-77.38574748989834, 34.465148723008134], [-77.38632115526373, 34.46465467793744], [-77.38873453589744, 34.46441341431], [-77.40156588115244, 34.463338782522825], [-77.40408890206338, 34.46104155157412], [-77.40553253862537, 34.46051520595451], [-77.4063758277672, 34.459220562471074], [-77.40712836357773, 34.458914786612326], [-77.40663342197855, 34.45846986686242], [-77.40663672809245, 34.458199335293216], [-77.40744208504408, 34.45669047608503], [-77.40939923257851, 34.45590937305157], [-77.41027947902111, 34.45379227796939], [-77.41291815934792, 34.45608965099241], [-77.41122019204799, 34.45724224454467], [-77.4102244680899, 34.45804434567932], [-77.4105194934495, 34.458669027204], [-77.41021938032513, 34.45945942889027], [-77.41008076748697, 34.46035135256751], [-77.40848638775772, 34.46126706451775], [-77.41275753369482, 34.46287959573599], [-77.41610597412176, 34.462647165149534], [-77.41823975841612, 34.463239117544376], [-77.4219103554497, 34.463729119456104], [-77.42817666525534, 34.46019196869694], [-77.43683509651767, 34.464344223367185], [-77.44005676271283, 34.46426402545796], [-77.44364939237288, 34.46479420400706], [-77.44686775869187, 34.46322786031742], [-77.4503789368665, 34.462628535909545], [-77.45464153173961, 34.46063227344659], [-77.45619920494885, 34.46048858640898], [-77.46040137058799, 34.45989717892991], [-77.46181247961931, 34.45936510755813], [-77.46341896199316, 34.45866562770817], [-77.46508513883882, 34.45733430943524], [-77.46602630786653, 34.456660703634526], [-77.46717573222674, 34.45475072214933], [-77.4660758220553, 34.45339635831678], [-77.46891692320261, 34.45165599863377], [-77.46794124547235, 34.44808705675249], [-77.46494555504135, 34.437126611512795], [-77.46195073296501, 34.426166041271756], [-77.4604536473591, 34.42068570930473], [-77.45895677860105, 34.41520534612215], [-77.45820842551488, 34.41246515282866], [-77.45746012661058, 34.409724951735626], [-77.45671188187816, 34.40698474284451], [-77.45596369130756, 34.40424452615674], [-77.4544674726118, 34.39876406939707], [-77.45297147044315, 34.3932835814682], [-77.45222355053144, 34.390543325818946], [-77.45147568472149, 34.38780306238172], [-77.44998011536677, 34.382322512149194], [-77.44785633785028, 34.374538123095576], [-77.44285854497232, 34.37885634640306], [-77.44431734387501, 34.382033477276266], [-77.44625024303005, 34.38427320414273], [-77.44655660840456, 34.38540935461384], [-77.44793069982882, 34.387622267359845], [-77.44712919907474, 34.39007617914795], [-77.44718659562473, 34.390286486485515], [-77.44700593866774, 34.39038096794769], [-77.44682527628366, 34.390475446139774], [-77.4464065578547, 34.39045408024087], [-77.44614883918446, 34.390233542319805], [-77.44230721758807, 34.389466432203506], [-77.44081443484494, 34.387367875301436], [-77.4412519525014, 34.38728143460479], [-77.44164434218095, 34.386681806412255], [-77.44044868975519, 34.386820865760484], [-77.44022590989476, 34.38708143255442], [-77.43035092892055, 34.386324250985595], [-77.42950550716348, 34.386144411534], [-77.42625977263825, 34.38381273225756], [-77.42647003797374, 34.382761855788], [-77.42612711490543, 34.382270376889814], [-77.4227687687267, 34.38093177564485], [-77.42268488350805, 34.380855760642284], [-77.4219497207388, 34.380889807031664], [-77.41791529790049, 34.38097307881821], [-77.41732982321527, 34.38094308199863], [-77.41285419480836, 34.38294615830809], [-77.4125375553666, 34.38309638278298], [-77.41248853968165, 34.38308409421803], [-77.41244798185613, 34.383158449744336], [-77.41149038486083, 34.3857579837607], [-77.41050913167675, 34.38687397736536], [-77.4082976008465, 34.38727824052392], [-77.40677214858167, 34.389807973495664], [-77.40466993479139, 34.39081240476746], [-77.39987930422377, 34.39587269928718], [-77.39952703136557, 34.395787537711655], [-77.39928119919556, 34.39594021749391], [-77.39979849639546, 34.39602876048577], [-77.39831489526792, 34.40129507295281], [-77.39999147731666, 34.40552217919128], [-77.3918828501576, 34.406022388789815], [-77.39091208057313, 34.4058544225021], [-77.38239321609933, 34.405118642372805], [-77.37984473264206, 34.40132609229966], [-77.37897277109447, 34.40479231473365], [-77.37061425801089, 34.405272949613405], [-77.37024839203978, 34.4052960566473], [-77.37020727996773, 34.40545217197258], [-77.36806448865198, 34.40898670266513], [-77.36944809133527, 34.410617446370466], [-77.3692667954851, 34.41197094998541], [-77.36868793343511, 34.415982921225336], [-77.37089873650106, 34.41737918573283], [-77.37235930937102, 34.420589987156944], [-77.37288890174588, 34.42160455017847], [-77.36981780251108, 34.42380206211797], [-77.36473382774254, 34.42118360092122], [-77.36475455567285, 34.42058572773829], [-77.36344455408786, 34.420153900293926], [-77.3612625566646, 34.421004183238395], [-77.35580765974248, 34.42203473109974], [-77.35418268857896, 34.425671448613706], [-77.35374570015937, 34.42602036967691], [-77.3479590438793, 34.427720262919735], [-77.3443014336959, 34.4289134511942], [-77.34182498346473, 34.42948609324201], [-77.33747700638781, 34.42855603846078], [-77.33632618419041, 34.42680517558428], [-77.33473784452964, 34.42503544541048], [-77.33460597771473, 34.423794493641175], [-77.33117475736287, 34.42020746565844], [-77.32933078260577, 34.420286653098714], [-77.32153796127523, 34.424349746717596]], [[-77.10706349188865, 34.553757914455105], [-77.10050521516038, 34.55354546668941], [-77.10035982177315, 34.553540757695515], [-77.10029710834748, 34.55362310136736], [-77.09520735768265, 34.55693761958649], [-77.09714013272374, 34.56001151325018], [-77.09830442799088, 34.56024112826809], [-77.10249413071804, 34.56275346922161], [-77.11207194343993, 34.55828691362007]], [[-77.43176772948128, 34.39760556039392], [-77.43217545665915, 34.3974228478566], [-77.43250820386139, 34.397156727669575], [-77.43354299621332, 34.39769631313794], [-77.43318626997808, 34.39791482353961], [-77.43274403871156, 34.39802151447347], [-77.43241797173333, 34.39776785756878]], [[-77.13861756738187, 34.57549171891885], [-77.13794876224092, 34.57482293908047], [-77.13721834999139, 34.574092507693834], [-77.13275864513803, 34.57088492964574], [-77.13084570272302, 34.570207455489694], [-77.1303740234601, 34.57177506170022], [-77.12835002186677, 34.57467300563732], [-77.12854057606422, 34.5778954257402], [-77.12933558472513, 34.57803817063931], [-77.12854055748672, 34.57868319504471], [-77.12854069186088, 34.58223093555608], [-77.13006056015922, 34.58819161986236], [-77.1406814410692, 34.58555388255154], [-77.14523831607329, 34.584878465051744], [-77.14662884093941, 34.58428009381285], [-77.14802091311532, 34.583783486157586], [-77.14763678109978, 34.582957284823806], [-77.14608048707832, 34.583219147129064]], [[-77.38147310281768, 34.40731079407036], [-77.38658495056237, 34.40919041391665], [-77.38736647737954, 34.411541128211795], [-77.38317419302857, 34.41356171827999], [-77.37862079745018, 34.4133484397919], [-77.37493880496706, 34.41090075984324], [-77.37953825860046, 34.40982282272741]], [[-77.37915173481005, 34.395369800920356], [-77.38099633037876, 34.39770139230592], [-77.37999885890682, 34.39816008754484], [-77.37977956869284, 34.40022302620648], [-77.38078570299993, 34.400392894810224], [-77.38520450742088, 34.40125243452559], [-77.38552938894509, 34.400637322135196], [-77.3856271615085, 34.39852509922709], [-77.38707117747693, 34.39641549573966]], [[-77.4201647236619, 34.39134672295856], [-77.42072533618649, 34.39163602291188], [-77.42046721764093, 34.39172321914001], [-77.42038616109167, 34.392159241950424], [-77.42044178785788, 34.39408768523936], [-77.41950859604628, 34.394275923013325], [-77.41743982966304, 34.39500289014426], [-77.41326253854061, 34.3952555788114], [-77.4134861717247, 34.39307773843446], [-77.41462022968778, 34.39132314661886], [-77.41474483715167, 34.39119854302648], [-77.41979720706723, 34.39139698708163]], [[-77.38816568644584, 34.42401644217105], [-77.38791266965467, 34.423411785327964], [-77.38912098487387, 34.42351768856072], [-77.3893008519995, 34.42408787248524]], [[-77.40712455076913, 34.40424190995614], [-77.40781515691154, 34.404363084475236], [-77.4080932241337, 34.40471360187997], [-77.40714418910046, 34.4047136010784]], [[-77.39956246145937, 34.57813924730528], [-77.39955916199055, 34.57814643887056], [-77.39955106786901, 34.578167427209536], [-77.3995458778692, 34.578173682842596], [-77.39954076744962, 34.57817670927362], [-77.39952831387026, 34.57818412986332], [-77.39951614138892, 34.57819140869867], [-77.39951115825104, 34.578194352210836], [-77.39949912960823, 34.57820145746155], [-77.39949151532463, 34.57820595517541], [-77.39949122752424, 34.57820259768264], [-77.39949130964256, 34.57820236406467], [-77.39949151546624, 34.57820177851756], [-77.39950271744948, 34.57818647429149], [-77.39950163326642, 34.57817456032542], [-77.39950221748025, 34.57817273924256], [-77.39950382940395, 34.57816771463075], [-77.3995108616885, 34.5781675385864], [-77.3995084794953, 34.578155294151884], [-77.39951453048833, 34.5781461634614], [-77.39951517875978, 34.578145030933655], [-77.39951614300988, 34.57814322919679], [-77.39952752764859, 34.57813102011226], [-77.39952805378579, 34.57813051054682], [-77.39953422441504, 34.57812383838076], [-77.39954076909424, 34.578127409806115]], [[-77.3458791934352, 34.53415857354539], [-77.34588260290963, 34.53416150129906], [-77.3458847657702, 34.53416335857105], [-77.34588727183268, 34.534165510554494], [-77.3458912223226, 34.53416890288309], [-77.345891940756, 34.53416951980965], [-77.34589131942958, 34.53417014457203], [-77.34589119308563, 34.53417017097578], [-77.34589099079038, 34.53417023863723], [-77.34588502596813, 34.534171628174796], [-77.34588265015962, 34.53417368680798], [-77.34588066731801, 34.534174279196506], [-77.3458788217655, 34.534174693843546], [-77.34587770942314, 34.53417516288933], [-77.34587654978552, 34.53417550933955], [-77.34587573056001, 34.53417575408916], [-77.34587480447664, 34.53417568938707], [-77.34587415191288, 34.534175438237085], [-77.34587411886478, 34.53417541021902], [-77.34587387387907, 34.53417523639314], [-77.34587362666676, 34.53417500287995], [-77.34587363262037, 34.53417488840779], [-77.34587340280538, 34.53417455692852], [-77.34587343244121, 34.534174097109386], [-77.34587272821275, 34.53417296032733], [-77.34587268904204, 34.534172774087374], [-77.34587265551194, 34.534172751804434], [-77.34587274110733, 34.534168963604266], [-77.34587263571262, 34.534168812000814], [-77.34587816814742, 34.53416430793813], [-77.34587817987449, 34.534163748533274]], [[-77.39940775719408, 34.57805447086388], [-77.39940776879209, 34.57805459574012], [-77.39940778293298, 34.5780547479955], [-77.39940737222963, 34.578055482207326], [-77.3994068701134, 34.57805713962014], [-77.39940660301015, 34.5780569638618], [-77.3994053310531, 34.57805612689306], [-77.39940504912144, 34.57805612121864], [-77.3994048946155, 34.5780558397099], [-77.39940338035231, 34.578054843299654], [-77.39940352316081, 34.57805408938375], [-77.39940405526329, 34.57805401867825], [-77.3994053311438, 34.57805353981612], [-77.39940585938459, 34.578053472791595], [-77.39940610069681, 34.578053392667556], [-77.39940620270568, 34.578053273141336], [-77.39940671432103, 34.57805325742565], [-77.39940687024958, 34.57805325263587], [-77.3994070624074, 34.5780532467332], [-77.39940706263674, 34.57805324672616], [-77.39940706292012, 34.578053246717445], [-77.39940725502392, 34.57805324081644], [-77.3994074104938, 34.578053236040745], [-77.399407580538, 34.578053379034905], [-77.39940760135696, 34.578053417447144], [-77.39940763978595, 34.57805358016186], [-77.3994076812505, 34.57805373443878], [-77.39940769279347, 34.57805377746021], [-77.399407698603, 34.578053840011556]], [[-77.32336635255756, 34.47393339549667], [-77.31745960000389, 34.47691041903321], [-77.31575897029468, 34.47502702400159], [-77.31659953803607, 34.47433182515806], [-77.31755441221112, 34.47286217797137], [-77.31888072881785, 34.47373780353564]], [[-77.42653449456488, 34.43270473635976], [-77.42651981155315, 34.434389992521616], [-77.4244697410554, 34.433231564151974], [-77.42079005258549, 34.433116123150285], [-77.42026380228296, 34.434407042915154], [-77.4160119740721, 34.43451903487379], [-77.41508169525788, 34.43191991985703], [-77.4150668926425, 34.431881912087796], [-77.41506820685608, 34.43187862993292], [-77.41507470056865, 34.431877833626366], [-77.42042458053874, 34.43177594683839], [-77.42520566538822, 34.43205816912068], [-77.42633816186117, 34.432255408908844]], [[-77.2857468147245, 34.481818504433036], [-77.28297233410018, 34.48553415452647], [-77.28195145960818, 34.486000709888756], [-77.2820299860552, 34.48546005131437], [-77.282030007514, 34.48374956830262], [-77.28221618814975, 34.481881835065266], [-77.28200441520127, 34.48152041118179], [-77.2827587487251, 34.48128344327883], [-77.28574695497782, 34.481812610736135], [-77.28575607068184, 34.48180992708338], [-77.28947409045635, 34.48153069056935], [-77.29224799363026, 34.481345082244644], [-77.29275764188634, 34.48224731009064], [-77.29271762828539, 34.48256415033586], [-77.2927969767708, 34.48420010776607], [-77.29216664627063, 34.48477462821321], [-77.29171910303194, 34.484527918149894], [-77.29113719347531, 34.48420713159882], [-77.29125592649653, 34.4833925246418], [-77.2901455176719, 34.48340633414623], [-77.28896381809366, 34.48299597730349], [-77.28863109631148, 34.4824605622543]], [[-77.34401341900019, 34.45794566388519], [-77.34195740255761, 34.459896230775044], [-77.3371371214773, 34.46049310807359], [-77.33626210247978, 34.460580732727934], [-77.3362544542083, 34.46032852999816], [-77.33243983161671, 34.459613577270886], [-77.33126876095228, 34.45763288554423], [-77.33248573808801, 34.45734824817599], [-77.33572991191994, 34.456789522702], [-77.33901957751499, 34.4566544864807], [-77.34090228698025, 34.45601446410873]], [[-77.24598320171043, 34.51575479288995], [-77.24945148590666, 34.51622327905387], [-77.25095518443524, 34.51634189205361], [-77.25097287782704, 34.51845367582062], [-77.24949558117919, 34.52008113657824], [-77.25133499357125, 34.52241998587798], [-77.24030225044008, 34.528076893209956], [-77.2400939131947, 34.524969027515745], [-77.23928968248192, 34.52400323283908], [-77.23849428839985, 34.52241832685962], [-77.23655914355228, 34.522925721051685], [-77.23850597428128, 34.521407814245066], [-77.2385044373272, 34.518034167310034], [-77.23946024924578, 34.516994552452935], [-77.24137593372338, 34.516541348378524], [-77.2446399149368, 34.515648796820514]], [[-77.38851000257472, 34.45827002896296], [-77.38448635794373, 34.45791849501967], [-77.38296133779313, 34.459037758079546], [-77.38050703145043, 34.45931613878851], [-77.37924710529313, 34.45722935280251], [-77.3799184527417, 34.45709731064406], [-77.38416660723055, 34.456744444538764], [-77.38814516637873, 34.45680682815066], [-77.39079309892179, 34.457078455396385], [-77.39203954392597, 34.4587025651302]], [[-77.4200889721066, 34.44178189172839], [-77.42303694373688, 34.44309651295739], [-77.41895280663645, 34.44327632683012], [-77.41614943418533, 34.443839601035364], [-77.41577242176945, 34.44272470082273], [-77.41403631647296, 34.44181250037796], [-77.41451913931232, 34.44111893308162], [-77.41567317058194, 34.44095758402773], [-77.41781344786764, 34.441938491623276]], [[-77.26446043650002, 34.52058954843337], [-77.2647007150557, 34.52187630182824], [-77.26531918014292, 34.52167317477721], [-77.26815658562359, 34.52034238422989], [-77.27055643804839, 34.52077095141982], [-77.27139091113082, 34.52060408033233], [-77.27183377596802, 34.520776737953085], [-77.27498587878075, 34.52046820261158], [-77.27521836679306, 34.520363029753916], [-77.2752049901312, 34.52022668162846], [-77.27307703377201, 34.51945970378204], [-77.27228024186704, 34.51619425218816], [-77.27230338935765, 34.51598091081355], [-77.2722622044279, 34.5158172043869], [-77.27130620870074, 34.5161176051366], [-77.26538472540297, 34.51894504936354], [-77.26132922635465, 34.52168922016607]], [[-77.26054495219688, 34.49812266781356], [-77.26532709475777, 34.495958469924986], [-77.26525350263698, 34.49293246996203], [-77.26553556150617, 34.49233356611818], [-77.26277924164047, 34.492310742129504], [-77.25972666694302, 34.49535569044899], [-77.25988739417393, 34.49552988652682]], [[-77.29164210666599, 34.50689036743924], [-77.2961597422037, 34.50526031810808], [-77.29734823340267, 34.50470015939739], [-77.29797989495748, 34.50439921820628], [-77.30415128104525, 34.50019627121433], [-77.30424472076726, 34.500111167545946], [-77.30436232185902, 34.499996998098894], [-77.3089737316393, 34.495586761169655], [-77.3068830334565, 34.49439666479912], [-77.30681119660785, 34.49393890682017], [-77.30451324676149, 34.49359310636741], [-77.30202129525395, 34.49462671301859], [-77.30194141386816, 34.495012909634696], [-77.3002268871798, 34.49557107079775], [-77.29816371837151, 34.49662401719935], [-77.29750111866451, 34.49682358487583], [-77.29750961052603, 34.497232824638196], [-77.29487902898785, 34.49952076292994], [-77.29487851128765, 34.49956889837044], [-77.29467978256577, 34.49976614870974], [-77.29292563080558, 34.50180756121992], [-77.2933604162239, 34.50275595523257], [-77.29169966744625, 34.50446335577901], [-77.28965964894287, 34.50428985015316], [-77.2872431662373, 34.50555785408257], [-77.28776669579972, 34.50599370354444], [-77.28791914886733, 34.50620923452389], [-77.29067895632241, 34.50641870050636]], [[-77.44360261575628, 34.43333809679844], [-77.44266815705907, 34.434393522790245], [-77.4400458910527, 34.433156674898086], [-77.44213986688844, 34.43245825139698]], [[-77.3765583220368, 34.45962658103259], [-77.3747214479118, 34.45978051096208], [-77.37427412841492, 34.45995619928118], [-77.37356222424874, 34.459809527429556], [-77.37350420614506, 34.459469234465466], [-77.37368595197658, 34.45927627338355], [-77.37388024882343, 34.45850931269645], [-77.37780316636079, 34.45759681538953]], [[-77.42363592848534, 34.44306002067687], [-77.42406392640027, 34.44100959932992], [-77.42669136538711, 34.44146383488274], [-77.42702779615666, 34.44245153829058]], [[-77.38121536457281, 34.45040828432579], [-77.38224778519464, 34.449698189928085], [-77.38256047757461, 34.44933323686202], [-77.38407450784072, 34.4496289569407], [-77.38478315776591, 34.45041548940956], [-77.3841468198092, 34.450559174070634], [-77.38254385917847, 34.45078551833993]], [[-77.44296694734845, 34.42562946597724], [-77.44167065378599, 34.42513312372412], [-77.44061060366911, 34.42479695221904], [-77.44094182839687, 34.424266014920185], [-77.44234708680627, 34.42388930592597], [-77.44254179003605, 34.42407182323933], [-77.44323341472673, 34.425212843492154]], [[-77.39947745955381, 34.57819319503636], [-77.39947324224285, 34.57820519284209], [-77.3994738800583, 34.578212633627295], [-77.39947028524145, 34.57823215538939], [-77.39944226201023, 34.57826869625585], [-77.3994279209318, 34.578275886722935], [-77.39941591037736, 34.57832146687076], [-77.39945440514934, 34.57834059026487], [-77.39939300477205, 34.57844159480765], [-77.39938715147828, 34.578450130957535], [-77.39937904592142, 34.57845760753936], [-77.39935992767198, 34.57849600695664], [-77.39939300355557, 34.578476469359416], [-77.39940670208581, 34.57846837776139], [-77.39943976841931, 34.57844884571202], [-77.39954600270659, 34.57838609392495], [-77.3995900125878, 34.57836009754711], [-77.39967754515628, 34.57830839248442], [-77.39968530302546, 34.57830380994891], [-77.39968851695147, 34.57830007643763], [-77.39978439099939, 34.578186831576026], [-77.3997840887052, 34.5781837133978], [-77.39971664454346, 34.57806016208057], [-77.39964885002719, 34.578057493602955], [-77.3995900229525, 34.57804346845853], [-77.39957743561621, 34.578096988826225], [-77.39954077002415, 34.578099564070534], [-77.399532743133, 34.57810835034745], [-77.39952789949132, 34.57811769851926], [-77.39952161136077, 34.57812449773688], [-77.39951614346222, 34.578129793412906], [-77.39951503133244, 34.578131624918605], [-77.39951426952531, 34.57813293317928], [-77.39951025462591, 34.57814043516693], [-77.39950629551578, 34.578147351717256], [-77.39950382996643, 34.578151072126076], [-77.39950021229497, 34.57815759935297], [-77.39949247042738, 34.578162614528324], [-77.39949212448106, 34.5781633192988], [-77.39949151672911, 34.57816455742589], [-77.39948989114532, 34.57816786910482], [-77.39948896582547, 34.57816975418871], [-77.39948765780944, 34.578172418910746], [-77.39948546122294, 34.57817689384888], [-77.39947920309257, 34.5781896430595], [-77.39947872446328, 34.578190618134286]], [[-77.34913995704161, 34.551199597910895], [-77.34911526473827, 34.551216934222715], [-77.34911600331347, 34.551219368962336], [-77.3491175973053, 34.55122137922111], [-77.34912205546365, 34.5512298747973], [-77.34913434352433, 34.551231008300356], [-77.34914007482399, 34.55123132629635], [-77.34914190512374, 34.551231427848855], [-77.34914545292946, 34.55123162469491], [-77.34914796693211, 34.55122904786978], [-77.34916021303489, 34.55122328336889], [-77.34915792818228, 34.55121781852132], [-77.34915574581623, 34.55121262717738], [-77.34915463694144, 34.55121133605211], [-77.34915092231132, 34.55120803426691], [-77.34914375902852, 34.55119975233326], [-77.34914318970648, 34.551199132725486], [-77.34914300704152, 34.551198938061], [-77.34914266311708, 34.5511984852793]], [[-77.34591266242347, 34.53416500937523], [-77.3459478663291, 34.53415427867705], [-77.34593931155932, 34.534146932608714], [-77.34593110446129, 34.53413988509017], [-77.34591734337833, 34.5341280683003], [-77.34591242876796, 34.53412384807325], [-77.34590468151578, 34.5341171954206], [-77.34589375308607, 34.534107811054895], [-77.34587717611444, 34.53411668647963], [-77.34587709691742, 34.534120414583434], [-77.34587506792029, 34.53413415154888], [-77.34586974424958, 34.53414106260267], [-77.34586907709533, 34.534143793021904], [-77.34587325476468, 34.53414971370175], [-77.34586881021949, 34.534156853714975], [-77.34586839289832, 34.53415898445264], [-77.34586825138524, 34.53416573491292], [-77.34586752658105, 34.53416632499011], [-77.34587052613129, 34.5341706396491], [-77.34587047130496, 34.53417306610132], [-77.34587144658555, 34.53417371423875], [-77.34587167608197, 34.53417480539576], [-77.34587213698553, 34.53417507736463], [-77.34587267327781, 34.53417534299417], [-77.34587285833584, 34.53417547429929], [-77.3458729957857, 34.53417557182473], [-77.34587345776566, 34.53417596348967], [-77.34587439994104, 34.5341763261015], [-77.34587569552129, 34.53417727380909], [-77.34587708859532, 34.534176987171854], [-77.34587874397114, 34.534178067990595], [-77.34588188345512, 34.534177130046636], [-77.34588736493758, 34.53417598185511], [-77.34589108781972, 34.53417473666703], [-77.34589784997281, 34.53417332349184], [-77.34590351886608, 34.534167623249424]], [[-77.39940792465157, 34.5780540509867], [-77.39940789651735, 34.578053748064264], [-77.39940784061722, 34.57805353972091], [-77.39940778933281, 34.57805334890726], [-77.39940763979892, 34.578053209589726], [-77.39940751679823, 34.57805310615557], [-77.39940725502836, 34.578053114196564], [-77.39940716871186, 34.57805311684801], [-77.39940693157669, 34.578053124132296], [-77.39940687025403, 34.57805312601599], [-77.39940682062549, 34.57805312754047], [-77.39940634976222, 34.57805314200435], [-77.399406171223, 34.578053091780376], [-77.39940602901073, 34.57805311102876], [-77.39940533115572, 34.57805319957436], [-77.3994044571958, 34.57805352758809], [-77.39940311265369, 34.57805370625014], [-77.39940275179829, 34.578055611281044], [-77.39940342189185, 34.5780560522137], [-77.399404097751, 34.57805728362435], [-77.39940533101169, 34.57805730844614], [-77.39940628067352, 34.5780579333393], [-77.39940805717745, 34.57805832106186], [-77.39940740299983, 34.57805656205576], [-77.39940774650282, 34.57805542820229], [-77.39940800898157, 34.578054958970654], [-77.39940797251596, 34.57805456634417], [-77.39940794260774, 34.57805424432129]]]]}, "type": "Feature", "id": "demo3", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.15935199211063, 34.6166747015688], [-77.16322106178758, 34.61516240725311], [-77.1639782702281, 34.614440660081904], [-77.1661849616254, 34.61223398391474], [-77.16737361767383, 34.61172100162369], [-77.1699984629862, 34.61036736608554], [-77.17253641054775, 34.610874941120585], [-77.1751141825493, 34.61089057764221], [-77.17640149138464, 34.61080698769017], [-77.17772298947688, 34.60991597988493], [-77.17930578083528, 34.60889685243659], [-77.17948583426937, 34.6082909645684], [-77.18159123608174, 34.60553239598546], [-77.18169327985544, 34.60531507834534], [-77.18176399806421, 34.605057120115745], [-77.18224408606888, 34.60504040107838], [-77.18529693797171, 34.60414760609798], [-77.19013260340091, 34.602790680602425], [-77.19072876415262, 34.60251535329338], [-77.19149742601167, 34.602321078833334], [-77.1953495476552, 34.601367648608125], [-77.19760140461354, 34.60136764028554], [-77.19987065610218, 34.60109865412282], [-77.20086375692978, 34.601015283501845], [-77.20125209628796, 34.60082090204505], [-77.20288477392904, 34.60051212597013], [-77.20505860057816, 34.599966481568934], [-77.20552397333603, 34.59990251311883], [-77.20675991358118, 34.59975829412698], [-77.20676777680706, 34.59906026970992], [-77.2081706843996, 34.59699739717048], [-77.20813499004227, 34.596096060274014], [-77.20858702053776, 34.59544131331976], [-77.21007615829312, 34.59343258337272], [-77.21177118191311, 34.59337621495213], [-77.21410894109874, 34.59337619087252], [-77.21514424186185, 34.59337618517019], [-77.215661030371, 34.593143020245726], [-77.21577713481425, 34.59292935151611], [-77.21674142300711, 34.59239157117414], [-77.21721408916709, 34.592100183879836], [-77.21737670544148, 34.59203980132624], [-77.2179247509093, 34.59121424992854], [-77.21792437220935, 34.59121358012431], [-77.21792821859032, 34.59120966385942], [-77.21851994200334, 34.590427094916116], [-77.2186993699449, 34.59018978630637], [-77.21860892033331, 34.58938219445818], [-77.21957040418536, 34.58839452350749], [-77.22001067987088, 34.58760748743591], [-77.22092155382936, 34.58730424821148], [-77.22184011245287, 34.586815781768166], [-77.22523241263096, 34.58627624737152], [-77.22552000458707, 34.5862090503988], [-77.22558597813679, 34.58619545190222], [-77.22569483071547, 34.586171014202414], [-77.22773975332717, 34.58548223146164], [-77.22867919323832, 34.584986546031274], [-77.22677729865121, 34.58462567961917], [-77.22604627092205, 34.585169814543164], [-77.22580768008757, 34.584294470073466], [-77.22532688180566, 34.58330200780492], [-77.22565667818745, 34.582397067417475], [-77.2264345116726, 34.58169054268779], [-77.22798958878747, 34.581332051578194], [-77.23091565903283, 34.58041882457399], [-77.23362602861215, 34.57925527812979], [-77.23484245291684, 34.578653692676006], [-77.23792996531145, 34.575823840618455], [-77.24136127129425, 34.57393584442488], [-77.24523636070268, 34.57390716926908], [-77.24670545848615, 34.57343212463826], [-77.24714391623823, 34.57277961720159], [-77.25051472180226, 34.57156258389062], [-77.25212920482001, 34.57033013514331], [-77.2519381619964, 34.569386553726765], [-77.25526555735203, 34.566216328615155], [-77.25533320915403, 34.56588320495685], [-77.25577669086077, 34.565727106128335], [-77.256121328391, 34.56572107947943], [-77.25971709260864, 34.56434299163514], [-77.26005542440114, 34.56427545857129], [-77.26031226874676, 34.56410055247521], [-77.2618003199076, 34.56319870352934], [-77.26260954878879, 34.56289109527298], [-77.26296935350871, 34.5627135909559], [-77.26339896027963, 34.56233480191004], [-77.26330306062893, 34.562039518508506], [-77.26357959372578, 34.56127060079087], [-77.26294400211617, 34.56052189630391], [-77.26227388810976, 34.56000880192559], [-77.26448316285607, 34.55647290026994], [-77.26550428330746, 34.55503769803932], [-77.26648200345628, 34.55393976913359], [-77.26801383178187, 34.55111040570682], [-77.26958024452279, 34.547483029086315], [-77.26819464248307, 34.54528677243675], [-77.26655155401129, 34.5450689336279], [-77.26478597274233, 34.54386762570216], [-77.26422040817462, 34.54347229872567], [-77.26437945022187, 34.54313618963791], [-77.2635116660131, 34.541900285010826], [-77.26488793263684, 34.53962342935007], [-77.26559487751307, 34.53929416981044], [-77.26681611482115, 34.53824126567958], [-77.26766230096024, 34.53619243112951], [-77.26807409410877, 34.53564648941099], [-77.26794245932072, 34.535541246028885], [-77.26655360577392, 34.53449664804239], [-77.26607869460736, 34.534111134222144], [-77.2651984628672, 34.53335645896774], [-77.26725626800655, 34.53281353888489], [-77.26830494713408, 34.5325461567449], [-77.27022254470982, 34.531782978142594], [-77.27158248189417, 34.53127033730824], [-77.27209099586182, 34.531312044754685], [-77.27258874460286, 34.531357653403155], [-77.27603524908261, 34.53079162551989], [-77.27807641020193, 34.53126688039435], [-77.28432235722798, 34.52525333685974], [-77.28427835435463, 34.52501281772566], [-77.28480653813955, 34.52133446583717], [-77.28517400762802, 34.52092860952176], [-77.28960449893366, 34.51755602597705], [-77.29139460484916, 34.51732647068806], [-77.29232780740195, 34.5169837500165], [-77.29892902464559, 34.51342174316203], [-77.30410651466899, 34.51085171146414], [-77.30988023547349, 34.511431150863366], [-77.31036445478057, 34.51175408112657], [-77.3114017143434, 34.51154988431084], [-77.31669391224521, 34.50960691761186], [-77.31981124676184, 34.50769743604766], [-77.32304412385068, 34.506555580680704], [-77.32535538723695, 34.50744587664694], [-77.32779897401932, 34.5085494908829], [-77.32867381185702, 34.50879610620348], [-77.32925887837223, 34.5093055969741], [-77.33266335865585, 34.50963831501255], [-77.33471315048415, 34.51147228546168], [-77.33523388271634, 34.51155445329377], [-77.33548229615425, 34.511698748890275], [-77.33780592097845, 34.513469362804194], [-77.33845118221646, 34.51485169206787], [-77.3385481049184, 34.514883267882624], [-77.33915495462406, 34.514750442308], [-77.34079427608933, 34.513943668707604], [-77.34171661333289, 34.51363481443871], [-77.34563240689411, 34.51232514491879], [-77.34868097035661, 34.50946231323786], [-77.35007913458375, 34.506541809220046], [-77.3544928481937, 34.5041471902313], [-77.35677820471587, 34.501855244889605], [-77.35867002750226, 34.50018971897856], [-77.36089022673572, 34.498950547717186], [-77.3617286492844, 34.49922209989747], [-77.365205632522, 34.49801014832382], [-77.36721762474379, 34.49678577911251], [-77.37142134997592, 34.49574393871825], [-77.37773314609434, 34.497442143900265], [-77.37884939413122, 34.497842712532055], [-77.3797442236577, 34.49806541532945], [-77.38055480648552, 34.497533532871415], [-77.38122800807739, 34.49693816008033], [-77.38501844975639, 34.49316933387094], [-77.38589235647363, 34.492184111811305], [-77.386445826407, 34.492087953431664], [-77.38647205063074, 34.492264340894344], [-77.38675540927856, 34.492604064814444], [-77.3899832420596, 34.49567496600709], [-77.3907174030877, 34.496577431666864], [-77.39233592817382, 34.4964659055582], [-77.39330726912834, 34.49579189872914], [-77.39494769373538, 34.49495841192261], [-77.39715991476385, 34.4936930688031], [-77.398359037968, 34.49078696095978], [-77.39814466240225, 34.490579506695504], [-77.39837579735229, 34.490311534042675], [-77.3985084132359, 34.489614938371396], [-77.40068623751196, 34.489480777117365], [-77.40356981147846, 34.48842566711443], [-77.40413006039452, 34.48835671398676], [-77.40444758844349, 34.4880824444083], [-77.40848081829941, 34.486685396975496], [-77.40939957108282, 34.48616596547531], [-77.41063186775853, 34.48569700943729], [-77.41329656731261, 34.48459657871655], [-77.41471859077441, 34.48528726132523], [-77.41623655206132, 34.48550261519304], [-77.41725668253329, 34.48523362527514], [-77.41859583914362, 34.484280412413625], [-77.41902402688947, 34.48371632937658], [-77.41951964043312, 34.483449583059624], [-77.42063284279828, 34.48212188826166], [-77.42334483360304, 34.4819481412962], [-77.42561160459476, 34.481058743142036], [-77.42613020340629, 34.48004170442441], [-77.42812195441519, 34.47971972348527], [-77.42949452925552, 34.479300961056104], [-77.4320103907394, 34.47868330984369], [-77.43275257104852, 34.47850844518646], [-77.43312029436919, 34.47830230161435], [-77.43476882927284, 34.47711215603939], [-77.43685022275857, 34.47622807362658], [-77.43710223693591, 34.47587003866457], [-77.43776862609958, 34.47560370463255], [-77.43948336235049, 34.47465114924055], [-77.43942162998157, 34.47365703702605], [-77.43984956445635, 34.4724526584815], [-77.44222899744017, 34.47221790753189], [-77.44465235354113, 34.47241102611581], [-77.4453740411959, 34.47240832966361], [-77.4476734272022, 34.47243540180036], [-77.44832576203956, 34.47182021069233], [-77.44938837776766, 34.4714626240008], [-77.45114438967173, 34.47081387391991], [-77.45253721005176, 34.47052774129415], [-77.45318638986252, 34.470304859234346], [-77.45384250932288, 34.46974894396728], [-77.45634722642471, 34.46911455218734], [-77.4570001606524, 34.46890732359787], [-77.45742293989626, 34.468701039084195], [-77.45812116081439, 34.468264009548136], [-77.45900930777138, 34.467898852950455], [-77.45931886626205, 34.46765795802814], [-77.46139570930164, 34.466669072490866], [-77.46187166933741, 34.46652234737003], [-77.4621946220329, 34.46645776832933], [-77.4630593527755, 34.46591142796203], [-77.4633753075787, 34.46585232035062], [-77.46396020398419, 34.46544832113628], [-77.46408261646616, 34.46522060546328], [-77.46448987700371, 34.46500507749665], [-77.46612726518197, 34.46420732606825], [-77.46636394637676, 34.463953049307285], [-77.46683851342088, 34.463747878216296], [-77.46897349304592, 34.46320612230918], [-77.46934532824164, 34.463069408287296], [-77.4693721153142, 34.463038666876976], [-77.4694202954929, 34.463023451647594], [-77.46976390643856, 34.46279289656505], [-77.47109633735826, 34.46175746341786], [-77.47116589178715, 34.461534198118045], [-77.47157914216686, 34.46139271235406], [-77.47093780490079, 34.459047376898006], [-77.46943941652171, 34.45356723246782], [-77.46891692320261, 34.45165599863377], [-77.4660758220553, 34.45339635831678], [-77.46717573222674, 34.45475072214933], [-77.46602630786653, 34.456660703634526], [-77.46508513883882, 34.45733430943524], [-77.46341896199317, 34.45866562770817], [-77.4618124796193, 34.45936510755813], [-77.46040137058799, 34.45989717892991], [-77.45619920494885, 34.46048858640898], [-77.45464153173963, 34.4606322734466], [-77.4503789368665, 34.462628535909545], [-77.44686775869187, 34.46322786031742], [-77.44364939237288, 34.46479420400706], [-77.44005676271283, 34.46426402545796], [-77.43683509651768, 34.46434422336719], [-77.42817666525534, 34.46019196869694], [-77.4219103554497, 34.463729119456104], [-77.41823975841614, 34.463239117544376], [-77.41610597412176, 34.462647165149534], [-77.41275753369482, 34.46287959573599], [-77.40848638775772, 34.46126706451775], [-77.41008076748696, 34.46035135256751], [-77.41021938032512, 34.45945942889027], [-77.41051949344948, 34.458669027204], [-77.4102244680899, 34.45804434567931], [-77.411220192048, 34.45724224454467], [-77.41291815934792, 34.45608965099241], [-77.41027947902111, 34.4537922779694], [-77.4093992325785, 34.45590937305157], [-77.40744208504408, 34.456690476085036], [-77.40663672809245, 34.458199335293216], [-77.40663342197855, 34.45846986686242], [-77.40712836357773, 34.458914786612326], [-77.4063758277672, 34.459220562471074], [-77.40553253862537, 34.46051520595451], [-77.40408890206338, 34.46104155157412], [-77.40156588115244, 34.463338782522825], [-77.38873453589744, 34.46441341431], [-77.38632115526373, 34.46465467793744], [-77.38574748989834, 34.465148723008134], [-77.38483069263211, 34.465457007830466], [-77.37651862355143, 34.4681999454404], [-77.37167222849311, 34.46780535595368], [-77.36562032480363, 34.46772141669112], [-77.36012102792435, 34.46682059052392], [-77.35426833464412, 34.46557425388613], [-77.3495999441052, 34.466565839679845], [-77.3490749769169, 34.46680218994311], [-77.34765438019761, 34.46739977844058], [-77.34275196421609, 34.46884962580197], [-77.34049951101007, 34.47008073904309], [-77.33644655025893, 34.47012395286294], [-77.3328627303796, 34.47256774552606], [-77.3321844872606, 34.47397817271457], [-77.33170620345108, 34.47947407823541], [-77.33157473359582, 34.48058716359772], [-77.3314725292226, 34.48158070528177], [-77.33165143398779, 34.487237622837306], [-77.33301315403747, 34.488214286001615], [-77.33377710953536, 34.49065296323888], [-77.32959422245818, 34.49489253030541], [-77.3200344702569, 34.496028396500904], [-77.31700084394357, 34.49649950712037], [-77.31289440874465, 34.49370945493135], [-77.31204676353538, 34.49122838027515], [-77.31085299763132, 34.49095793893801], [-77.30795043838617, 34.489728871784365], [-77.30461235443333, 34.48938800098572], [-77.30409106257169, 34.488788219871694], [-77.29941251654778, 34.489804458745525], [-77.29832137819722, 34.489955720077546], [-77.2974875026608, 34.489922982631825], [-77.29517617131881, 34.49022593830297], [-77.2935725294848, 34.489964115289645], [-77.29347439341234, 34.48909822921039], [-77.29208247543201, 34.488323289370605], [-77.29036288173239, 34.48820490620951], [-77.2858882408477, 34.48970101528003], [-77.28555651363979, 34.48981543785467], [-77.28537635331446, 34.48987757578644], [-77.28478447604411, 34.49007880332533], [-77.284377255511, 34.48958222922523], [-77.28278127837554, 34.48918075428025], [-77.28277393933433, 34.48892059568205], [-77.28196846797883, 34.489392838719354], [-77.28153773896436, 34.4902838687252], [-77.28107857205966, 34.49200774155889], [-77.28224623333452, 34.492541898919654], [-77.28259181152669, 34.49294842822782], [-77.28271417171196, 34.493097188931685], [-77.28436460224812, 34.49351884312339], [-77.28410761403309, 34.494312628570086], [-77.2840939868488, 34.49511874871732], [-77.28520725823185, 34.49762186258975], [-77.28056579129075, 34.50109537669618], [-77.27875512009216, 34.50283410270445], [-77.2733323456216, 34.50698440730786], [-77.2721388788933, 34.50803686726922], [-77.26731409449081, 34.50693279824006], [-77.26686715413663, 34.506458351203676], [-77.26759437234571, 34.500074700153405], [-77.27334551110289, 34.496031918409024], [-77.27289360830042, 34.49261653788889], [-77.2726697400403, 34.49250257725352], [-77.27264564148993, 34.49243551630548], [-77.2725108085949, 34.49250761515982], [-77.26698951898463, 34.491577029438766], [-77.26680457388302, 34.491222558516014], [-77.26755266336768, 34.488258340438534], [-77.2674205634676, 34.48747157391448], [-77.26754452916975, 34.486580557311356], [-77.26759874662318, 34.48432426405242], [-77.2680063413342, 34.4832855783694], [-77.26945949610564, 34.48064277034048], [-77.26630002762272, 34.480851828811254], [-77.2638747971866, 34.48403086518153], [-77.25836166768343, 34.48830355279546], [-77.25567946339748, 34.49126037673723], [-77.25570485416605, 34.49580554674138], [-77.25808461401056, 34.49620984733059], [-77.25621148716021, 34.499177848996894], [-77.25732911865187, 34.50048377580574], [-77.2583492341773, 34.500542725802255], [-77.25933038265087, 34.50074923588649], [-77.26312068421646, 34.50135206383629], [-77.25920983788198, 34.50575001318066], [-77.25618233241083, 34.50705110291147], [-77.25461139986274, 34.5084876889612], [-77.25262560166433, 34.509566379522646], [-77.25177946866697, 34.50778269065449], [-77.251811402199, 34.50723452714085], [-77.25142221499613, 34.50667578279976], [-77.25016843466895, 34.50573241349271], [-77.24768998257355, 34.50638138068132], [-77.2481585150673, 34.50794702161971], [-77.24767062902825, 34.50938784289676], [-77.2476716572908, 34.51031773364224], [-77.24767156223652, 34.51230885463156], [-77.25170258180725, 34.511171926537614], [-77.25258718191307, 34.51115514252865], [-77.25581356288413, 34.510988490402475], [-77.25690916879611, 34.51234503868662], [-77.25832216663957, 34.51205002109325], [-77.25904065899894, 34.51276855098882], [-77.26251597563423, 34.51125402884492], [-77.26162770773927, 34.51535561035821], [-77.26307103894548, 34.516902219587834], [-77.25880006939612, 34.522749990084364], [-77.25622943975591, 34.5228057610673], [-77.25227660738153, 34.5239986901836], [-77.25130622066914, 34.52360609221732], [-77.24026960375346, 34.52942268870188], [-77.23909972810259, 34.531808797249006], [-77.23515898755247, 34.53689490301804], [-77.23088567531144, 34.538446576052465], [-77.23093185162409, 34.53656107833721], [-77.2285384185653, 34.534855183629205], [-77.22839777829819, 34.533536856042545], [-77.22705247345753, 34.531747057196355], [-77.22612372705272, 34.53131311298299], [-77.22419581664501, 34.533231397085636], [-77.2222838745125, 34.53587763239513], [-77.21945661390534, 34.53835627195119], [-77.217149243058, 34.54077248313651], [-77.215379733782, 34.54320746687084], [-77.2168109697165, 34.546292122958995], [-77.220847726151, 34.54661123233644], [-77.22279487878134, 34.54735371672994], [-77.22274583041204, 34.55166578954748], [-77.22326461187185, 34.55311633084846], [-77.22417551923171, 34.55348259406031], [-77.22507757938817, 34.555787989890796], [-77.22518394827209, 34.555999596463], [-77.2250563308956, 34.556337392336154], [-77.22518259688952, 34.55973417349531], [-77.2248839608134, 34.55995681610601], [-77.2239830300136, 34.562606014343686], [-77.22364425490557, 34.563383555928745], [-77.22364171170227, 34.56342410705624], [-77.22354241735641, 34.56347628282994], [-77.21789671155305, 34.56356954538566], [-77.21538170867247, 34.563512540412646], [-77.21003159298745, 34.563522689269796], [-77.2063250975792, 34.56578475276357], [-77.2057940711245, 34.57188808255823], [-77.20762396652455, 34.572291941350116], [-77.20675265972135, 34.57336065238147], [-77.20562672432011, 34.57368773664935], [-77.20421823801954, 34.574998492683875], [-77.19935903568214, 34.580317370874084], [-77.19433244406017, 34.584676172710196], [-77.18941206785072, 34.58707091331651], [-77.18699837430869, 34.59175781027504], [-77.18513597425438, 34.594274586192114], [-77.18316846235463, 34.59578276371086], [-77.18001394820949, 34.596131891489705], [-77.17108173531628, 34.60070174903768], [-77.16853824840526, 34.60380339645687], [-77.1653135785421, 34.60573657578637], [-77.16147090162914, 34.6074809117594], [-77.1611189964388, 34.60772126164122], [-77.16020330649829, 34.608579447647664], [-77.15485401266312, 34.61266764461739], [-77.15710906160584, 34.614676718589095]], [[-77.31888072881785, 34.47373780353564], [-77.31755441221112, 34.47286217797138], [-77.31659953803609, 34.47433182515806], [-77.31575897029467, 34.47502702400159], [-77.31745960000389, 34.47691041903321], [-77.32336635255756, 34.47393339549667]], [[-77.42633816186117, 34.432255408908844], [-77.42520566538822, 34.43205816912067], [-77.42042458053872, 34.431775946838385], [-77.41507470056865, 34.431877833626366], [-77.41506820685608, 34.43187862993292], [-77.41506689264251, 34.431881912087796], [-77.41508169525788, 34.43191991985703], [-77.4160119740721, 34.43451903487379], [-77.42026380228296, 34.434407042915154], [-77.42079005258549, 34.433116123150285], [-77.42446974105542, 34.433231564151974], [-77.42651981155316, 34.434389992521616], [-77.42653449456488, 34.43270473635976]], [[-77.28863109631148, 34.4824605622543], [-77.28896381809366, 34.48299597730349], [-77.2901455176719, 34.48340633414623], [-77.29125592649653, 34.4833925246418], [-77.29113719347531, 34.48420713159882], [-77.29171910303194, 34.484527918149894], [-77.29216664627063, 34.48477462821321], [-77.29279697677079, 34.48420010776607], [-77.29271762828539, 34.48256415033586], [-77.29275764188633, 34.48224731009064], [-77.29224799363024, 34.481345082244644], [-77.28947409045637, 34.48153069056935], [-77.28575607068184, 34.481809927083376], [-77.28574695497782, 34.481812610736135], [-77.2827587487251, 34.48128344327883], [-77.28200441520127, 34.48152041118178], [-77.28221618814975, 34.481881835065266], [-77.282030007514, 34.48374956830262], [-77.2820299860552, 34.48546005131437], [-77.2819514596082, 34.486000709888756], [-77.28297233410018, 34.48553415452647], [-77.2857468147245, 34.481818504433036]], [[-77.34090228698025, 34.45601446410873], [-77.33901957751499, 34.4566544864807], [-77.33572991191994, 34.456789522702], [-77.33248573808801, 34.45734824817599], [-77.33126876095228, 34.45763288554423], [-77.33243983161672, 34.459613577270886], [-77.33625445420829, 34.46032852999816], [-77.33626210247978, 34.460580732727934], [-77.33713712147731, 34.46049310807359], [-77.34195740255761, 34.459896230775044], [-77.34401341900019, 34.45794566388519]], [[-77.2446399149368, 34.515648796820514], [-77.24137593372338, 34.516541348378524], [-77.2394602492458, 34.516994552452935], [-77.2385044373272, 34.518034167310034], [-77.23850597428128, 34.521407814245066], [-77.23655914355228, 34.522925721051685], [-77.23849428839985, 34.52241832685962], [-77.23928968248192, 34.52400323283907], [-77.2400939131947, 34.52496902751574], [-77.24030225044008, 34.528076893209956], [-77.25133499357125, 34.52241998587798], [-77.24949558117919, 34.52008113657824], [-77.25097287782704, 34.51845367582062], [-77.25095518443524, 34.51634189205361], [-77.24945148590666, 34.51622327905387], [-77.24598320171043, 34.51575479288995]], [[-77.39203954392597, 34.4587025651302], [-77.39079309892179, 34.457078455396385], [-77.38814516637873, 34.45680682815066], [-77.38416660723055, 34.456744444538764], [-77.3799184527417, 34.45709731064406], [-77.37924710529313, 34.45722935280251], [-77.38050703145043, 34.45931613878851], [-77.38296133779313, 34.459037758079546], [-77.38448635794373, 34.45791849501967], [-77.38851000257472, 34.45827002896296]], [[-77.41781344786764, 34.441938491623276], [-77.41567317058195, 34.44095758402773], [-77.41451913931232, 34.44111893308161], [-77.41403631647296, 34.44181250037796], [-77.41577242176945, 34.44272470082273], [-77.41614943418533, 34.443839601035364], [-77.41895280663645, 34.443276326830116], [-77.42303694373688, 34.44309651295739], [-77.4200889721066, 34.44178189172839]], [[-77.26132922635465, 34.52168922016607], [-77.26538472540297, 34.51894504936354], [-77.27130620870074, 34.5161176051366], [-77.2722622044279, 34.5158172043869], [-77.27230338935765, 34.51598091081355], [-77.27228024186704, 34.516194252188164], [-77.27307703377201, 34.51945970378204], [-77.2752049901312, 34.52022668162846], [-77.27521836679306, 34.520363029753916], [-77.27498587878077, 34.52046820261158], [-77.27183377596802, 34.520776737953085], [-77.27139091113082, 34.52060408033233], [-77.27055643804839, 34.52077095141982], [-77.26815658562359, 34.52034238422989], [-77.26531918014292, 34.52167317477721], [-77.2647007150557, 34.521876301828236], [-77.26446043650002, 34.52058954843337]], [[-77.25988739417393, 34.49552988652682], [-77.25972666694302, 34.49535569044899], [-77.26277924164047, 34.492310742129504], [-77.26553556150617, 34.49233356611818], [-77.26525350263698, 34.49293246996202], [-77.26532709475777, 34.495958469924986], [-77.26054495219688, 34.49812266781356]], [[-77.29067895632241, 34.50641870050636], [-77.28791914886733, 34.50620923452389], [-77.28776669579972, 34.50599370354444], [-77.2872431662373, 34.50555785408257], [-77.28965964894287, 34.50428985015316], [-77.29169966744625, 34.50446335577901], [-77.29336041622389, 34.50275595523257], [-77.29292563080558, 34.50180756121992], [-77.29467978256577, 34.49976614870974], [-77.29487851128766, 34.49956889837044], [-77.29487902898785, 34.49952076292994], [-77.29750961052605, 34.4972328246382], [-77.2975011186645, 34.49682358487583], [-77.29816371837151, 34.49662401719936], [-77.3002268871798, 34.49557107079775], [-77.30194141386816, 34.495012909634696], [-77.30202129525395, 34.49462671301859], [-77.30451324676149, 34.49359310636742], [-77.30681119660784, 34.49393890682016], [-77.3068830334565, 34.49439666479912], [-77.3089737316393, 34.49558676116966], [-77.30436232185902, 34.4999969980989], [-77.30424472076727, 34.500111167545946], [-77.30415128104526, 34.50019627121433], [-77.29797989495746, 34.504399218206274], [-77.29734823340267, 34.50470015939739], [-77.2961597422037, 34.50526031810808], [-77.29164210666599, 34.50689036743924]], [[-77.44213986688844, 34.43245825139698], [-77.4400458910527, 34.433156674898086], [-77.44266815705907, 34.434393522790245], [-77.44360261575628, 34.43333809679844]], [[-77.37780316636079, 34.45759681538953], [-77.37388024882343, 34.45850931269645], [-77.37368595197658, 34.45927627338355], [-77.37350420614506, 34.45946923446546], [-77.37356222424873, 34.459809527429556], [-77.37427412841492, 34.45995619928118], [-77.3747214479118, 34.45978051096208], [-77.3765583220368, 34.45962658103259]], [[-77.42702779615666, 34.44245153829058], [-77.42669136538711, 34.44146383488274], [-77.42406392640027, 34.44100959932992], [-77.42363592848534, 34.44306002067687]], [[-77.38254385917847, 34.45078551833993], [-77.3841468198092, 34.450559174070634], [-77.38478315776592, 34.45041548940956], [-77.38407450784071, 34.4496289569407], [-77.38256047757461, 34.44933323686201], [-77.38224778519464, 34.449698189928085], [-77.38121536457281, 34.45040828432579]], [[-77.44323341472673, 34.425212843492154], [-77.44254179003605, 34.42407182323933], [-77.44234708680627, 34.42388930592597], [-77.44094182839687, 34.424266014920185], [-77.44061060366911, 34.42479695221904], [-77.44167065378599, 34.42513312372413], [-77.44296694734845, 34.42562946597724]], [[-77.39947872446328, 34.578190618134286], [-77.39947920309257, 34.5781896430595], [-77.39948546122294, 34.57817689384888], [-77.39948765780943, 34.578172418910746], [-77.39948896582547, 34.578169754188714], [-77.39948989114532, 34.57816786910482], [-77.39949151672911, 34.57816455742589], [-77.39949212448106, 34.57816331929881], [-77.39949247042738, 34.578162614528324], [-77.39950021229497, 34.57815759935297], [-77.39950382996643, 34.578151072126076], [-77.39950629551578, 34.57814735171725], [-77.39951025462591, 34.57814043516693], [-77.39951426952531, 34.57813293317928], [-77.39951503133244, 34.578131624918605], [-77.39951614346222, 34.578129793412906], [-77.39952161136077, 34.57812449773688], [-77.39952789949132, 34.57811769851926], [-77.399532743133, 34.57810835034745], [-77.39954077002415, 34.578099564070534], [-77.3995774356162, 34.57809698882622], [-77.3995900229525, 34.57804346845853], [-77.39964885002719, 34.578057493602955], [-77.39971664454347, 34.57806016208057], [-77.3997840887052, 34.5781837133978], [-77.39978439099939, 34.578186831576026], [-77.39968851695149, 34.57830007643762], [-77.39968530302546, 34.57830380994891], [-77.39967754515628, 34.57830839248442], [-77.3995900125878, 34.57836009754711], [-77.39954600270659, 34.57838609392495], [-77.39943976841931, 34.57844884571202], [-77.39940670208581, 34.57846837776139], [-77.39939300355559, 34.578476469359416], [-77.39935992767198, 34.57849600695664], [-77.39937904592142, 34.57845760753936], [-77.39938715147828, 34.578450130957535], [-77.39939300477205, 34.57844159480765], [-77.39945440514934, 34.57834059026487], [-77.39941591037736, 34.57832146687076], [-77.3994279209318, 34.578275886722935], [-77.39944226201023, 34.57826869625585], [-77.39947028524145, 34.57823215538939], [-77.39947388005828, 34.578212633627295], [-77.39947324224285, 34.57820519284209], [-77.39947745955381, 34.57819319503636]], [[-77.34914266311708, 34.5511984852793], [-77.34914300704152, 34.551198938061], [-77.34914318970648, 34.551199132725486], [-77.34914375902852, 34.55119975233326], [-77.34915092231132, 34.55120803426691], [-77.34915463694145, 34.55121133605211], [-77.34915574581623, 34.55121262717738], [-77.34915792818228, 34.55121781852132], [-77.34916021303489, 34.55122328336889], [-77.34914796693211, 34.55122904786978], [-77.34914545292946, 34.55123162469491], [-77.34914190512376, 34.551231427848855], [-77.34914007482399, 34.55123132629636], [-77.34913434352433, 34.551231008300356], [-77.34912205546367, 34.5512298747973], [-77.3491175973053, 34.55122137922111], [-77.34911600331345, 34.551219368962336], [-77.34911526473827, 34.551216934222715], [-77.34913995704161, 34.551199597910895]], [[-77.34590351886608, 34.534167623249424], [-77.34589784997281, 34.53417332349184], [-77.34589108781972, 34.53417473666703], [-77.34588736493758, 34.53417598185511], [-77.34588188345512, 34.534177130046636], [-77.34587874397114, 34.534178067990595], [-77.34587708859532, 34.534176987171854], [-77.3458756955213, 34.53417727380909], [-77.34587439994104, 34.5341763261015], [-77.34587345776566, 34.53417596348967], [-77.3458729957857, 34.53417557182473], [-77.34587285833584, 34.53417547429929], [-77.34587267327781, 34.53417534299417], [-77.34587213698553, 34.53417507736463], [-77.34587167608197, 34.53417480539576], [-77.34587144658555, 34.53417371423875], [-77.34587047130496, 34.53417306610132], [-77.34587052613129, 34.5341706396491], [-77.34586752658105, 34.53416632499012], [-77.34586825138524, 34.53416573491292], [-77.34586839289832, 34.53415898445264], [-77.34586881021947, 34.534156853714975], [-77.34587325476468, 34.53414971370175], [-77.34586907709533, 34.534143793021904], [-77.34586974424958, 34.53414106260267], [-77.34587506792029, 34.53413415154888], [-77.34587709691742, 34.534120414583434], [-77.34587717611444, 34.53411668647963], [-77.34589375308607, 34.534107811054895], [-77.34590468151578, 34.5341171954206], [-77.34591242876797, 34.53412384807325], [-77.34591734337833, 34.5341280683003], [-77.34593110446129, 34.53413988509017], [-77.3459393115593, 34.534146932608714], [-77.3459478663291, 34.53415427867705], [-77.34591266242347, 34.53416500937523]], [[-77.39940794260774, 34.57805424432129], [-77.39940797251596, 34.57805456634417], [-77.39940800898157, 34.578054958970654], [-77.39940774650282, 34.57805542820229], [-77.39940740299983, 34.57805656205576], [-77.39940805717745, 34.57805832106186], [-77.39940628067352, 34.5780579333393], [-77.39940533101169, 34.57805730844614], [-77.39940409775102, 34.57805728362435], [-77.39940342189185, 34.5780560522137], [-77.39940275179828, 34.578055611281044], [-77.39940311265369, 34.57805370625014], [-77.3994044571958, 34.57805352758809], [-77.39940533115572, 34.57805319957436], [-77.39940602901073, 34.57805311102876], [-77.399406171223, 34.578053091780376], [-77.39940634976222, 34.57805314200435], [-77.3994068206255, 34.57805312754047], [-77.39940687025403, 34.578053126015995], [-77.39940693157669, 34.578053124132296], [-77.39940716871187, 34.57805311684801], [-77.39940725502836, 34.578053114196564], [-77.39940751679825, 34.57805310615557], [-77.39940763979894, 34.57805320958973], [-77.39940778933281, 34.578053348907254], [-77.39940784061722, 34.57805353972091], [-77.39940789651735, 34.578053748064264], [-77.39940792465157, 34.5780540509867]], [[-77.27777438034724, 34.53652844471971], [-77.27794983032936, 34.536570042660195], [-77.28012962406423, 34.53713851039184], [-77.28052378216825, 34.537325031287125], [-77.28260945440385, 34.53778915050383], [-77.28266981032337, 34.53878667106294], [-77.28436918048448, 34.53971750639255], [-77.28528119061932, 34.53973538249042], [-77.28761895390163, 34.53906447578447], [-77.29090808460415, 34.5378426376655], [-77.29226497486054, 34.53715410006264], [-77.29487631172763, 34.53529959043251], [-77.29525260882967, 34.532808635921626], [-77.29513059634822, 34.53144801957623], [-77.29458597718411, 34.53071602244042], [-77.2942345918826, 34.529990927342695], [-77.29356693185764, 34.529133630663345], [-77.293023511088, 34.52803728237754], [-77.29243056546181, 34.52615647111275], [-77.29212790974742, 34.52542318909296], [-77.29239689864643, 34.52465111006002], [-77.29135158929492, 34.519140334063486], [-77.28590574170065, 34.52514065089559], [-77.2847125351098, 34.52528546151291], [-77.2799514370505, 34.53140894072879], [-77.28002934095568, 34.532554087216894], [-77.27797116947693, 34.53567601595087], [-77.27755264341374, 34.53629705792616], [-77.27744906996921, 34.53659220048712]], [[-77.35165953611369, 34.491398604062034], [-77.35165627017827, 34.49141301182714], [-77.35163616787331, 34.49141629689487], [-77.35161328663867, 34.49141314801858], [-77.35163047843676, 34.49140045125625]], [[-77.27683987736995, 34.54467192593351], [-77.2744952500803, 34.54524769279966], [-77.27231388564756, 34.54702589450052], [-77.27445551566367, 34.54690978861579]], [[-77.2336873883077, 34.56694802116336], [-77.23365841849028, 34.567080732744], [-77.23304824672704, 34.567187257099036], [-77.23324379913487, 34.566711690793085]], [[-77.28375605787906, 34.516540330153255], [-77.28394383116024, 34.5171113694809], [-77.28296883143484, 34.51740825059819], [-77.28287842022738, 34.517027643826026]], [[-77.4000254094777, 34.57819664588321], [-77.4000173618565, 34.57811729603198], [-77.39984328408684, 34.577966046350014], [-77.39981040344219, 34.57794560426672], [-77.39978703015294, 34.57794525675241], [-77.39976862582667, 34.577956987615096], [-77.39959002563839, 34.57796182624556], [-77.3995673503265, 34.577981428766876], [-77.39955992855937, 34.57800693339702], [-77.39957363968978, 34.578022609907045], [-77.39955997857079, 34.57808069591464], [-77.39954077060939, 34.578082045004905], [-77.39952410451582, 34.57810028779785], [-77.39951614393851, 34.578115651619015], [-77.3995142490871, 34.57811762641795], [-77.39951425476534, 34.57811966737156], [-77.39951178168491, 34.57812472454746], [-77.3995102827752, 34.57812719301981], [-77.39950626793141, 34.57813408776016], [-77.39950533049203, 34.578135839400204], [-77.39950383039283, 34.57813846006779], [-77.39949838735677, 34.57814849281535], [-77.39949581801, 34.578153498101905], [-77.39949481493845, 34.578155642261606], [-77.39949151694302, 34.57815825554569], [-77.39948927681345, 34.57816066152842], [-77.39948843865491, 34.578160991105754], [-77.39948780858192, 34.57816064918184], [-77.39948689955273, 34.578161124615164], [-77.39948652100162, 34.578161406593985], [-77.39948555862337, 34.57816195336566], [-77.39948536041794, 34.57816221656747], [-77.39948475208664, 34.578163072745085], [-77.39948262780126, 34.57816366231699], [-77.39948228217915, 34.57816349376553], [-77.39948174202499, 34.57816416256851], [-77.39948145059917, 34.57816662562934], [-77.399479203769, 34.57816979421652], [-77.39947607513582, 34.57817161423251], [-77.39947497674211, 34.578173851906016], [-77.39947257053208, 34.57817875389235], [-77.39947051006831, 34.578182951517334], [-77.3994668902839, 34.57819032582364], [-77.39946157671741, 34.57820115073976], [-77.39945663695909, 34.578207588874655], [-77.39944753415416, 34.578229758543536], [-77.39944645972693, 34.57823559325328], [-77.39944226296242, 34.57824106562047], [-77.39940866249997, 34.57825791254176], [-77.3993930091181, 34.578317317248064], [-77.39935478124707, 34.578354965267174], [-77.39932762271778, 34.578394571903324], [-77.39923707570014, 34.578478092653135], [-77.39922202877877, 34.57850831471999], [-77.39920578631474, 34.57858875091113], [-77.39919599231288, 34.578637252941554], [-77.3991700060775, 34.578621916196], [-77.39915865056108, 34.57859555214758], [-77.39913047025246, 34.57856408224264], [-77.39909749241782, 34.57856078576444], [-77.39907828555076, 34.5785864523694], [-77.39905654289925, 34.578610285258165], [-77.39904823872126, 34.578620487144725], [-77.39902891651423, 34.57861427144943], [-77.39900722318647, 34.578608527355456], [-77.39899898787374, 34.578606339630916], [-77.39896269657234, 34.5786238262457], [-77.39891867876344, 34.57864978431917], [-77.39890048300927, 34.578657064725036], [-77.39889049548431, 34.578645006775275], [-77.39884613479927, 34.57864064472483], [-77.39880198114882, 34.57863304842373], [-77.39879069215412, 34.57863647991133], [-77.39871208175134, 34.57865071524185], [-77.39870347751568, 34.578651420892136], [-77.3986990422346, 34.57865708922986], [-77.39866320805359, 34.57865735970315], [-77.39865422638042, 34.578644583879885], [-77.3986186215009, 34.57865876611504], [-77.39860497421816, 34.57866112400127], [-77.39858496785128, 34.57864681477872], [-77.39857687574381, 34.57864921663325], [-77.39855572216578, 34.57867475246377], [-77.39853745531498, 34.57868518295045], [-77.39851793479158, 34.578700354008696], [-77.39850646928812, 34.57870620402787], [-77.39848656567347, 34.57871397258301], [-77.39840796379636, 34.578761044759794], [-77.39837764461741, 34.57878171461518], [-77.39830945815214, 34.5788162055863], [-77.39829378418723, 34.578826484106735], [-77.39823605748934, 34.57886186487356], [-77.39821094967886, 34.57892678663329], [-77.39816208774137, 34.57900512448905], [-77.39814325804795, 34.57906048887382], [-77.39812028436401, 34.57916148833527], [-77.39820864296264, 34.579263341785754], [-77.39821093328621, 34.579263861559554], [-77.39821214801137, 34.579264145023565], [-77.39834651483396, 34.57930963670891], [-77.3984079382675, 34.57931236858927], [-77.39848281780235, 34.57930446971204], [-77.39850644247817, 34.57930008382682], [-77.39853491864945, 34.57929172482933], [-77.39855569529567, 34.579277584937806], [-77.39856337876215, 34.5792735103126], [-77.3986049476008, 34.57926617651448], [-77.3986150293099, 34.57926864249099], [-77.3986506258336, 34.579256493875], [-77.39865419988908, 34.57925482004315], [-77.39865608049055, 34.57925388208802], [-77.39866805466282, 34.579250127976124], [-77.39867882620004, 34.579245126534126], [-77.39868794462896, 34.57923054726799], [-77.39869525683176, 34.579228498891354], [-77.39870345270523, 34.57923073670818], [-77.39872331724018, 34.579215618534384], [-77.39872544590688, 34.5792124736894], [-77.39873083313566, 34.57921156678658], [-77.39875270535683, 34.57920987631965], [-77.39878675138257, 34.57919631569784], [-77.3988019580292, 34.57918789734819], [-77.39881226880959, 34.57918735864759], [-77.39887697072544, 34.5791669125453], [-77.39889678195634, 34.57916008788037], [-77.39890046272194, 34.5791581081025], [-77.39890832931883, 34.579153911346005], [-77.39894971563822, 34.57912816934857], [-77.39896238626125, 34.5791151692444], [-77.39899896921857, 34.57908037930347], [-77.39901698420324, 34.57905997827143], [-77.39903287760191, 34.579038273641885], [-77.39904822341269, 34.57901521682065], [-77.39907126952599, 34.579004495572846], [-77.39909747651215, 34.578976863154054], [-77.39912011753776, 34.579001287731835], [-77.39918292136824, 34.579002553723264], [-77.39919597876799, 34.5790032164725], [-77.39921329941443, 34.57899357695622], [-77.3992605571075, 34.578968864259906], [-77.39929448505998, 34.578918225541855], [-77.39931987229527, 34.57889071971647], [-77.39929448785372, 34.578840164698875], [-77.39927483639617, 34.57881225131632], [-77.39927315542937, 34.578791317081105], [-77.3992490021748, 34.57874578466668], [-77.39934302634433, 34.578728936103616], [-77.39939299501009, 34.578722022576294], [-77.39943985138893, 34.57866112071632], [-77.39954602217338, 34.57859840659334], [-77.39959000568075, 34.57857242584657], [-77.39969620635634, 34.57850969364107], [-77.3997870146419, 34.57845605371863], [-77.3998650222503, 34.578387483756494]], [[-77.34919593967037, 34.551256193015554], [-77.34919462522636, 34.55125293624991], [-77.34919387436796, 34.5512509612608], [-77.34919066882081, 34.55124509092951], [-77.34918072587604, 34.551230739614375], [-77.34918239156744, 34.55122409410123], [-77.34918013709292, 34.551217454972246], [-77.3491766425637, 34.55120365929116], [-77.34916952294581, 34.55119534332469], [-77.34916732698099, 34.5511930597087], [-77.34916045538732, 34.551185736709925], [-77.34914972198594, 34.55117160602584], [-77.34914684123571, 34.55116800466826], [-77.3491457761875, 34.551166673202786], [-77.34914347095525, 34.551163376450035], [-77.3491232539671, 34.55115872588837], [-77.34909447426165, 34.551159841568285], [-77.34906135441149, 34.55121090892474], [-77.34906619939737, 34.55122688062549], [-77.34907024937823, 34.55124023152923], [-77.34909241571803, 34.55124930406579], [-77.34911133155579, 34.5512530733162], [-77.3491275790443, 34.551253974794065], [-77.34914136872428, 34.551254739901765], [-77.34914848276742, 34.55125513461653], [-77.34917075929903, 34.551256370601806], [-77.34918563397956, 34.551257195905215], [-77.34919037049782, 34.551258056452184]], [[-77.34592548989501, 34.534171253494335], [-77.34593223687014, 34.53416919691133], [-77.34595250939515, 34.534170990465334], [-77.34597211108087, 34.53416289864907], [-77.34598624059952, 34.53414875676294], [-77.34598894383315, 34.53412628736431], [-77.34598044390637, 34.534118988390844], [-77.3459542273368, 34.534096475956005], [-77.34595159244746, 34.53409421334912], [-77.3459499209607, 34.53409277802462], [-77.34594244945762, 34.53408636216079], [-77.34591424108511, 34.53406213931893], [-77.34589971231732, 34.534065558678854], [-77.34589958170238, 34.53407323191323], [-77.34588937137966, 34.53410149084824], [-77.34586869799773, 34.53411255951925], [-77.34586839119042, 34.53412700210171], [-77.34586716727352, 34.53413528841421], [-77.34586292349141, 34.534140797584094], [-77.34586286285418, 34.53414355842411], [-77.34586280229982, 34.534146315490865], [-77.3458659425344, 34.5341507658966], [-77.34586258613038, 34.53415615784741], [-77.34586252572385, 34.53415890818374], [-77.34586321130021, 34.53416109034771], [-77.34586309200148, 34.534166477323254], [-77.3458666641765, 34.53416994662153], [-77.34586831115526, 34.53417231569393], [-77.34586828709799, 34.5341733803982], [-77.34587020412906, 34.53417465439013], [-77.34587027819563, 34.5341750065449], [-77.34587137515224, 34.53417565383442], [-77.34587161168398, 34.534175770990345], [-77.34587264909983, 34.534176391653816], [-77.34587276361843, 34.534176488742276], [-77.34587290133308, 34.53417654174404], [-77.34587356249259, 34.53417702537744], [-77.34587261654542, 34.53417780362097], [-77.34587162350562, 34.53417735145143], [-77.34587033001775, 34.534176911743984], [-77.3458697991785, 34.53417684635409], [-77.34586957249952, 34.5341768184313], [-77.34586765619859, 34.5341765823773], [-77.34586651442427, 34.53417644173112], [-77.34586142992002, 34.53417752263843], [-77.3458560071527, 34.53417514742248], [-77.34585428212353, 34.53417493492961], [-77.34584954805388, 34.53417607685475], [-77.34585419082933, 34.53417889455036], [-77.34585709266304, 34.53418080458586], [-77.34585955488507, 34.534182287545185], [-77.3458662861692, 34.53418634169635], [-77.34586819247903, 34.534187489837926], [-77.3458698079388, 34.53418846280475], [-77.34587838520201, 34.53419362875964], [-77.34588029994617, 34.53419341261302], [-77.34590053426723, 34.53419169205455], [-77.34590276638784, 34.53419149687884], [-77.34590296504746, 34.53419164413653], [-77.3459032229807, 34.53419146342864], [-77.34590333943794, 34.53419128840341], [-77.34590364114948, 34.53419083495716], [-77.34591459849045, 34.53417436702663]], [[-77.3986911836658, 34.578212872704604], [-77.39868726723004, 34.578221505927914], [-77.39868898806894, 34.57822784268267], [-77.3986911828362, 34.57823194541551], [-77.39869428944448, 34.57823463275652], [-77.39870310190236, 34.57823628488452], [-77.39870349545336, 34.578236079943096], [-77.39870565130269, 34.57823401812244], [-77.39872241600376, 34.57822777419966], [-77.39871830284426, 34.578218560442], [-77.39871084670314, 34.57821697624158], [-77.39870349644121, 34.57821329103786], [-77.39870165366554, 34.578212367834624], [-77.39869161963904, 34.57821229961207]], [[-77.39940978042989, 34.57805992940372], [-77.39940966136147, 34.578058468885345], [-77.39940902573639, 34.578057896218425], [-77.39940840921246, 34.578057045372816], [-77.39940797125287, 34.57805586775139], [-77.39940812077599, 34.578055374197255], [-77.39940823503015, 34.5780551699458], [-77.39940817623983, 34.57805453694823], [-77.39940815070017, 34.57805426196185], [-77.39940814461048, 34.57805412688912], [-77.3994081280214, 34.57805401777869], [-77.39940810853518, 34.57805380796987], [-77.3994081002412, 34.57805371866831], [-77.3994080832427, 34.578053657882954], [-77.3994080245649, 34.57805343661787], [-77.39940799998395, 34.57805334500305], [-77.39940799312978, 34.57805331950076], [-77.39940763980661, 34.57805299031711], [-77.39940762310269, 34.57805297627039], [-77.39940746461517, 34.578052981138775], [-77.39940725503388, 34.57805295655239], [-77.39940698636639, 34.578052925034505], [-77.39940687026495, 34.57805281394508], [-77.39940648688437, 34.5780527060982], [-77.39940570809001, 34.578052811507746], [-77.39940533116766, 34.57805285933261], [-77.3994048591283, 34.578053036497934], [-77.39940270214657, 34.57805332311653], [-77.39940225287675, 34.57805569490557], [-77.39940169357294, 34.5780563015981], [-77.39940225283735, 34.578056818000555], [-77.39940314638059, 34.578058446030056], [-77.39940533097027, 34.578058489999215], [-77.39940565211951, 34.578058701320714], [-77.39940660668256, 34.57805890965441], [-77.39940707986383, 34.5780602737293]]]]}, "type": "Feature", "id": "demo4", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16249278954537, 34.61947240005365], [-77.16967842754836, 34.616508345459366], [-77.17069651155825, 34.61625225249662], [-77.17173384892759, 34.615838296101515], [-77.17924384421791, 34.61333812512291], [-77.18008923544531, 34.6127300885914], [-77.18461038928726, 34.6102809784648], [-77.18603846663318, 34.609430666759685], [-77.18629552797778, 34.6090923025595], [-77.18700761765207, 34.60895394358331], [-77.18866491637336, 34.60876592473666], [-77.19131371567155, 34.608298202362505], [-77.1939637209861, 34.6067855797756], [-77.19462958434042, 34.60634024644111], [-77.19488976120572, 34.60622008791677], [-77.19517864828788, 34.60614707352007], [-77.1972162304516, 34.605569787608545], [-77.20311215921018, 34.603807169222094], [-77.20373356275802, 34.603569972746314], [-77.2046671115952, 34.603363713475304], [-77.20860196140006, 34.60264231188999], [-77.21097847132673, 34.60159845081918], [-77.21250878671164, 34.600858741785316], [-77.21345988164742, 34.60028808732168], [-77.21462191450517, 34.59906183269917], [-77.21515696159427, 34.59795499583356], [-77.214906467198, 34.59663145927298], [-77.21807832628333, 34.59529450684199], [-77.21838083881212, 34.59471712389823], [-77.21918473603472, 34.593198628363574], [-77.22002595228636, 34.59176748442716], [-77.22024033371495, 34.59139656175396], [-77.22074952565286, 34.59089224260137], [-77.2217511549548, 34.58963044881726], [-77.22251871747912, 34.5887257522358], [-77.22447722009142, 34.58826814052661], [-77.22726849218081, 34.587692802317065], [-77.2282531658368, 34.587471740404595], [-77.23043504746377, 34.586545220656575], [-77.23124472027942, 34.58597142117286], [-77.23274572525578, 34.5852596466177], [-77.23522304715897, 34.584251935578244], [-77.23706130758872, 34.58339657792406], [-77.23721356925425, 34.58330919248705], [-77.2389253096625, 34.5822868404819], [-77.24081991040967, 34.58170816743953], [-77.24150297273749, 34.58128382996934], [-77.24295412042039, 34.580612355062634], [-77.24399611570018, 34.58007314689925], [-77.24594894767407, 34.579161958866806], [-77.24665037726906, 34.57864200277818], [-77.24724536362781, 34.57844382133794], [-77.2481648202343, 34.5776929360487], [-77.24952472409119, 34.57673801673575], [-77.249987006471, 34.57635175695719], [-77.25114544666042, 34.575556197790775], [-77.25341024256699, 34.57413863775707], [-77.25552688954963, 34.57356047466966], [-77.2556439843849, 34.57349661072697], [-77.25576221810338, 34.57345850896316], [-77.25586717169234, 34.573339111552265], [-77.25714677594807, 34.572204318610176], [-77.25734359164102, 34.57169762788661], [-77.258098604151, 34.57103373841348], [-77.25914725535299, 34.5699542353979], [-77.25976412047558, 34.56927443655625], [-77.26181405563219, 34.567796524428424], [-77.26301350512213, 34.56690691762679], [-77.26367640940387, 34.566539932692784], [-77.26552679548239, 34.5653119154627], [-77.26615591529662, 34.564849644657144], [-77.26643147571849, 34.564689448293024], [-77.26753193180794, 34.56315641947124], [-77.267596974744, 34.56307764844036], [-77.26791093656414, 34.562703158559394], [-77.26965037183285, 34.560054844149576], [-77.27052573497859, 34.55937032884886], [-77.27091611707299, 34.55909905593255], [-77.2713385908754, 34.558927042982155], [-77.27656132987812, 34.55590716418497], [-77.27749997310383, 34.555418289897815], [-77.28067335783443, 34.552468176109464], [-77.28085804673493, 34.552307184103576], [-77.28142917431171, 34.55163522539148], [-77.28369976701171, 34.548866670365044], [-77.28392556075214, 34.5486105494082], [-77.28416190195671, 34.54843043434962], [-77.28720296097036, 34.54493035459747], [-77.2877530332316, 34.54466537731337], [-77.29076717026497, 34.54378529643367], [-77.29539152526475, 34.5435017270558], [-77.29707490929982, 34.54268227414918], [-77.29987831662329, 34.541712522328666], [-77.30055039881155, 34.541647239897635], [-77.3033973402352, 34.54094753549669], [-77.3049211806875, 34.54019413210428], [-77.3050837220482, 34.54015021626683], [-77.30657308856223, 34.539457815678794], [-77.30697029467038, 34.53920479174552], [-77.30727299315167, 34.53891734994838], [-77.30784270608129, 34.53764218285002], [-77.30978942839428, 34.53623482181103], [-77.31125138108115, 34.535327589081625], [-77.31355737185447, 34.53409797653233], [-77.31455343410616, 34.532961061527566], [-77.31487911081743, 34.530813334914484], [-77.31450019516996, 34.530045624874624], [-77.31308946690314, 34.52943206557815], [-77.31175461244129, 34.52931567113643], [-77.30993939111792, 34.529850082783895], [-77.30849095919831, 34.529853429168845], [-77.3082644520461, 34.52989723762508], [-77.30678657931931, 34.53038278210234], [-77.30441032062974, 34.531494451970765], [-77.30428599078212, 34.53193405276287], [-77.30358573269109, 34.532952066801855], [-77.30211009160986, 34.53286149791642], [-77.30200575356947, 34.53282677222089], [-77.30199173836223, 34.53280382859582], [-77.30144955221039, 34.5319194333838], [-77.30115841947372, 34.53153732056713], [-77.30049945094396, 34.530658581361905], [-77.30022931872526, 34.53030970482656], [-77.29984864287636, 34.52977180254148], [-77.29880157226245, 34.52838254872667], [-77.29840042892235, 34.527832357756154], [-77.29802040734049, 34.52689312094367], [-77.29819121829097, 34.5265116939574], [-77.29859929241452, 34.52518749390929], [-77.29930280048956, 34.52439369914927], [-77.30049618579156, 34.52213645660284], [-77.30305488535588, 34.51993826185939], [-77.30391787585202, 34.518856618968286], [-77.3055330744154, 34.51958247476455], [-77.30904802784896, 34.5197812705878], [-77.31012650359962, 34.521884017678865], [-77.31047679116081, 34.522561157393525], [-77.31392073137391, 34.52229489202699], [-77.31160401347253, 34.52357396492074], [-77.31254312730165, 34.52445127699489], [-77.31290757752608, 34.52458329550693], [-77.31318244365545, 34.525467320148636], [-77.31382800017629, 34.52465751808805], [-77.31639305850166, 34.52245571042177], [-77.31677057126082, 34.522116044464994], [-77.32204377419345, 34.52153373901308], [-77.32268422591376, 34.52197537628744], [-77.32312438835869, 34.52123633907152], [-77.3255746456765, 34.520793199549686], [-77.32585412414073, 34.52069014026683], [-77.32610932344086, 34.5207028844168], [-77.32836178274079, 34.52061516022907], [-77.32899417592273, 34.520683425128595], [-77.33001386470684, 34.520617268418576], [-77.3305661306215, 34.52059697495212], [-77.33125154035078, 34.52035941352717], [-77.33113538873299, 34.52080019903351], [-77.33156818483508, 34.521085118969914], [-77.33212900967094, 34.52090106174208], [-77.33248932076548, 34.520829219978474], [-77.33336166085972, 34.520693464440036], [-77.33370531353563, 34.520627100915604], [-77.33396514486954, 34.5205543015871], [-77.3343345996159, 34.52034014864641], [-77.3352947225965, 34.51978747500098], [-77.33587202478493, 34.519495647064225], [-77.33687976460277, 34.51913489630383], [-77.33702345843326, 34.519062741229966], [-77.33727107596152, 34.51893853258999], [-77.33798531850013, 34.518537511502686], [-77.33847025237617, 34.51824596733968], [-77.3393292646881, 34.518108600926666], [-77.34004767170916, 34.51792045719621], [-77.34064182698201, 34.51784387586408], [-77.34162159488821, 34.517745603237195], [-77.34266149816547, 34.51751763834112], [-77.34386371979733, 34.5174255031741], [-77.34477286325165, 34.5172465378829], [-77.347058489661, 34.51699384997121], [-77.3479197391342, 34.51693620845599], [-77.34875167265099, 34.516769981866524], [-77.35320156604112, 34.516010387548945], [-77.35423047869634, 34.51557188580804], [-77.35582812493959, 34.51527534306423], [-77.35738772130962, 34.51480424086304], [-77.35837462964778, 34.514554548349864], [-77.36001629747368, 34.51370599545678], [-77.36055915005502, 34.513414021325325], [-77.36248494094846, 34.51258129534369], [-77.36373093307462, 34.512003453643864], [-77.36456926152772, 34.51160886948004], [-77.3648949250901, 34.51104456345054], [-77.36560423719979, 34.51012568300694], [-77.36693807424857, 34.50903818166404], [-77.36986774884755, 34.50850769915256], [-77.370091717056, 34.508411596406226], [-77.37021523430354, 34.508396096471586], [-77.3708182923474, 34.508232326539115], [-77.37325585591446, 34.507321100078954], [-77.37504627985712, 34.5067734926759], [-77.37640623720769, 34.50683269572261], [-77.3776623966638, 34.50646704858879], [-77.37957192910672, 34.50566686907034], [-77.38054505982011, 34.50547574078977], [-77.382663442211, 34.50461042028001], [-77.3827358855531, 34.504573579056625], [-77.38275019597748, 34.50456199292886], [-77.38283937764584, 34.504540362579355], [-77.38481407059832, 34.50357948172329], [-77.38590937049722, 34.50305458465424], [-77.38687010900978, 34.502593175920424], [-77.38870405707542, 34.5017355997721], [-77.38895205413037, 34.5016194556437], [-77.38927089833709, 34.501536383796775], [-77.39225139295823, 34.50022028089566], [-77.39336742997064, 34.499794326323396], [-77.3951616326706, 34.49900471660266], [-77.39542092254122, 34.498861514722755], [-77.3955626333323, 34.49878704435797], [-77.39756720478942, 34.49786426475448], [-77.3985945719376, 34.497314346265256], [-77.40144611909659, 34.49617409195296], [-77.40176150183663, 34.49606162700963], [-77.40199565612906, 34.496045396102566], [-77.40238782106701, 34.49584286440123], [-77.40492977903308, 34.49474418603755], [-77.40637319078095, 34.494201706165235], [-77.40749610783243, 34.493643112585424], [-77.40766851849597, 34.493579702366766], [-77.40872140623446, 34.49296685696983], [-77.41000979860601, 34.49229033532401], [-77.41112609781146, 34.49175948170073], [-77.41248869381332, 34.491505624168674], [-77.41272885324427, 34.49135053335764], [-77.41299092149524, 34.4912222218055], [-77.41395936676896, 34.49076053375154], [-77.41486837219402, 34.49035741426149], [-77.41524807921637, 34.490198833088684], [-77.41585137945098, 34.490017483439644], [-77.41607296873754, 34.48983746984875], [-77.4165763301295, 34.489656358968126], [-77.4169839991605, 34.48939986843622], [-77.41727258530257, 34.48929931842873], [-77.4176295765702, 34.488980144190705], [-77.4179739606039, 34.48877494395652], [-77.41822200664937, 34.48807983400873], [-77.41954457118906, 34.48775690230781], [-77.4199351460494, 34.48752412979689], [-77.42063607611914, 34.486876980945944], [-77.42189616392785, 34.48650642750728], [-77.42241841616298, 34.48629996878273], [-77.42295209995996, 34.48562644333049], [-77.42422582302119, 34.485175820650426], [-77.4243221753596, 34.485104300557474], [-77.42440219689108, 34.48505024953386], [-77.42509534979838, 34.484291891453886], [-77.42587798982814, 34.48377452664171], [-77.42885774505763, 34.48241493733188], [-77.43030639966027, 34.48207229421799], [-77.4313709816621, 34.481757420446726], [-77.43187611152679, 34.481647180628315], [-77.43277003907704, 34.48142424442086], [-77.43342333605658, 34.48121110459232], [-77.43390170529477, 34.48116402860587], [-77.43534488021818, 34.480204528181304], [-77.43577843981726, 34.479979516458435], [-77.43618711201076, 34.47967243601886], [-77.4375857826823, 34.47896773699741], [-77.43788263299497, 34.47862593045528], [-77.43851274533974, 34.47832838325478], [-77.44059132032268, 34.478038251527664], [-77.44108670693394, 34.47789375709519], [-77.44119596965773, 34.47786013575115], [-77.44184826366907, 34.477833943738545], [-77.44237302099702, 34.4776740159197], [-77.44249361496716, 34.477302695728774], [-77.44347705364022, 34.4767870099266], [-77.44360820679807, 34.4766562727618], [-77.44394680391876, 34.476589793468705], [-77.44505782443622, 34.47617269578093], [-77.44600029939349, 34.476166919883454], [-77.44630476908144, 34.47603435857697], [-77.44648616664267, 34.475678768816], [-77.44672963598458, 34.4753804582293], [-77.44817575227975, 34.47427399708504], [-77.44829565269512, 34.47418192020008], [-77.44856920782011, 34.47412305975648], [-77.4498835926054, 34.47376555320456], [-77.4507037626748, 34.473671673393255], [-77.4510101461552, 34.47357176643615], [-77.45131232837856, 34.47327179931859], [-77.45196461879418, 34.472944799683965], [-77.45307060461765, 34.47247966879809], [-77.45366354087047, 34.472038222210045], [-77.45477721735713, 34.471736820886534], [-77.45547989164666, 34.471443187684216], [-77.45622362441254, 34.47090615094689], [-77.45783927648228, 34.47022429128797], [-77.45885705740716, 34.46980970838654], [-77.46029772549745, 34.46936806155257], [-77.46039725844287, 34.46932043202451], [-77.46156353568708, 34.46874875878043], [-77.46265033035078, 34.46812478079159], [-77.46271606730011, 34.46808719971347], [-77.46387201154535, 34.467494377598975], [-77.46442885997574, 34.46714770995751], [-77.46487560174289, 34.46684584118917], [-77.46492456960303, 34.4668177772607], [-77.46497633434952, 34.466784421688544], [-77.46573622393778, 34.46602410649], [-77.46722042975267, 34.46561385636517], [-77.46733324731052, 34.4655573437913], [-77.46756094191193, 34.465510450736495], [-77.46877463005698, 34.465124392109125], [-77.4697830789086, 34.46467028107645], [-77.47020372514908, 34.46441422556366], [-77.47079847373568, 34.46373167952229], [-77.47210586271191, 34.46331880801162], [-77.47206173885613, 34.46315746468277], [-77.47168708061412, 34.46178743737753], [-77.47157914216686, 34.46139271235406], [-77.47116589178715, 34.461534198118045], [-77.47109633735826, 34.46175746341786], [-77.46976390643854, 34.46279289656505], [-77.4694202954929, 34.463023451647594], [-77.4693721153142, 34.463038666876976], [-77.46934532824163, 34.46306940828729], [-77.46897349304592, 34.46320612230918], [-77.46683851342088, 34.463747878216296], [-77.46636394637676, 34.463953049307285], [-77.46612726518195, 34.46420732606824], [-77.46448987700371, 34.46500507749665], [-77.46408261646616, 34.46522060546328], [-77.46396020398419, 34.46544832113628], [-77.4633753075787, 34.46585232035062], [-77.4630593527755, 34.46591142796202], [-77.4621946220329, 34.46645776832933], [-77.46187166933743, 34.46652234737004], [-77.46139570930166, 34.466669072490866], [-77.45931886626205, 34.46765795802814], [-77.45900930777137, 34.467898852950455], [-77.45812116081439, 34.468264009548136], [-77.45742293989626, 34.468701039084195], [-77.4570001606524, 34.46890732359787], [-77.45634722642471, 34.46911455218734], [-77.45384250932288, 34.46974894396728], [-77.45318638986252, 34.470304859234346], [-77.45253721005176, 34.47052774129415], [-77.45114438967173, 34.47081387391991], [-77.44938837776766, 34.4714626240008], [-77.44832576203956, 34.47182021069233], [-77.4476734272022, 34.47243540180036], [-77.4453740411959, 34.472408329663615], [-77.44465235354113, 34.47241102611581], [-77.44222899744017, 34.47221790753189], [-77.43984956445635, 34.4724526584815], [-77.43942162998157, 34.47365703702605], [-77.43948336235049, 34.47465114924055], [-77.4377686260996, 34.47560370463255], [-77.43710223693591, 34.47587003866457], [-77.43685022275857, 34.47622807362657], [-77.43476882927283, 34.47711215603939], [-77.43312029436919, 34.47830230161435], [-77.43275257104852, 34.47850844518646], [-77.4320103907394, 34.47868330984369], [-77.42949452925552, 34.479300961056104], [-77.42812195441519, 34.47971972348527], [-77.42613020340629, 34.4800417044244], [-77.42561160459476, 34.48105874314203], [-77.42334483360304, 34.4819481412962], [-77.42063284279828, 34.48212188826166], [-77.41951964043312, 34.483449583059624], [-77.41902402688947, 34.483716329376584], [-77.41859583914362, 34.484280412413625], [-77.41725668253329, 34.48523362527514], [-77.41623655206132, 34.48550261519304], [-77.41471859077441, 34.48528726132523], [-77.41329656731261, 34.48459657871655], [-77.41063186775853, 34.48569700943729], [-77.40939957108282, 34.48616596547531], [-77.40848081829941, 34.486685396975496], [-77.40444758844349, 34.4880824444083], [-77.40413006039454, 34.48835671398676], [-77.40356981147846, 34.48842566711443], [-77.40068623751196, 34.489480777117365], [-77.3985084132359, 34.489614938371396], [-77.39837579735229, 34.490311534042675], [-77.39814466240225, 34.490579506695504], [-77.39835903796802, 34.49078696095978], [-77.39715991476385, 34.4936930688031], [-77.39494769373539, 34.49495841192262], [-77.39330726912834, 34.49579189872914], [-77.39233592817382, 34.4964659055582], [-77.3907174030877, 34.496577431666864], [-77.3899832420596, 34.49567496600709], [-77.38675540927856, 34.492604064814444], [-77.38647205063074, 34.492264340894344], [-77.386445826407, 34.49208795343166], [-77.38589235647363, 34.492184111811305], [-77.38501844975639, 34.49316933387094], [-77.38122800807737, 34.49693816008033], [-77.38055480648552, 34.497533532871415], [-77.37974422365768, 34.49806541532945], [-77.37884939413124, 34.49784271253206], [-77.37773314609433, 34.497442143900265], [-77.37142134997592, 34.49574393871825], [-77.36721762474379, 34.49678577911251], [-77.36520563252202, 34.49801014832382], [-77.3617286492844, 34.49922209989748], [-77.36089022673573, 34.49895054771719], [-77.35867002750226, 34.50018971897856], [-77.35677820471587, 34.501855244889605], [-77.3544928481937, 34.5041471902313], [-77.35007913458377, 34.506541809220046], [-77.34868097035661, 34.50946231323786], [-77.34563240689411, 34.51232514491879], [-77.34171661333289, 34.51363481443871], [-77.34079427608933, 34.5139436687076], [-77.33915495462406, 34.514750442308], [-77.33854810491839, 34.514883267882624], [-77.33845118221646, 34.51485169206787], [-77.33780592097845, 34.513469362804194], [-77.33548229615425, 34.511698748890275], [-77.33523388271634, 34.51155445329377], [-77.33471315048415, 34.51147228546167], [-77.33266335865585, 34.50963831501255], [-77.32925887837223, 34.5093055969741], [-77.32867381185702, 34.508796106203484], [-77.32779897401933, 34.5085494908829], [-77.32535538723695, 34.50744587664695], [-77.32304412385068, 34.506555580680704], [-77.31981124676184, 34.50769743604766], [-77.31669391224521, 34.50960691761186], [-77.3114017143434, 34.51154988431084], [-77.31036445478057, 34.51175408112657], [-77.30988023547349, 34.511431150863366], [-77.30410651466899, 34.51085171146414], [-77.29892902464559, 34.51342174316203], [-77.29232780740195, 34.5169837500165], [-77.29139460484916, 34.51732647068806], [-77.28960449893364, 34.51755602597705], [-77.28517400762802, 34.52092860952176], [-77.28480653813955, 34.52133446583717], [-77.28427835435463, 34.52501281772566], [-77.28432235722796, 34.52525333685974], [-77.27807641020192, 34.53126688039434], [-77.27603524908261, 34.53079162551988], [-77.27258874460286, 34.53135765340315], [-77.27209099586182, 34.531312044754685], [-77.27158248189417, 34.53127033730824], [-77.27022254470982, 34.531782978142594], [-77.26830494713408, 34.5325461567449], [-77.26725626800655, 34.53281353888489], [-77.26519846286719, 34.53335645896774], [-77.26607869460737, 34.534111134222144], [-77.26655360577392, 34.53449664804239], [-77.26794245932072, 34.53554124602889], [-77.26807409410877, 34.535646489410986], [-77.26766230096024, 34.536192431129514], [-77.26681611482115, 34.53824126567958], [-77.26559487751307, 34.53929416981044], [-77.26488793263684, 34.53962342935007], [-77.2635116660131, 34.541900285010826], [-77.26437945022187, 34.54313618963791], [-77.26422040817462, 34.54347229872567], [-77.26478597274233, 34.54386762570217], [-77.26655155401129, 34.5450689336279], [-77.26819464248308, 34.54528677243675], [-77.26958024452279, 34.547483029086315], [-77.26801383178187, 34.55111040570682], [-77.26648200345628, 34.55393976913359], [-77.26550428330746, 34.55503769803932], [-77.26448316285607, 34.55647290026994], [-77.26227388810976, 34.56000880192559], [-77.26294400211617, 34.56052189630391], [-77.26357959372578, 34.56127060079087], [-77.26330306062893, 34.562039518508506], [-77.26339896027963, 34.56233480191004], [-77.26296935350871, 34.5627135909559], [-77.26260954878879, 34.56289109527298], [-77.2618003199076, 34.56319870352934], [-77.26031226874676, 34.56410055247521], [-77.26005542440114, 34.56427545857128], [-77.25971709260864, 34.56434299163514], [-77.256121328391, 34.56572107947943], [-77.25577669086077, 34.565727106128335], [-77.25533320915403, 34.56588320495685], [-77.25526555735203, 34.56621632861516], [-77.2519381619964, 34.569386553726765], [-77.25212920482001, 34.57033013514331], [-77.25051472180225, 34.57156258389061], [-77.24714391623823, 34.57277961720159], [-77.24670545848615, 34.57343212463826], [-77.24523636070268, 34.57390716926908], [-77.24136127129425, 34.573935844424874], [-77.23792996531145, 34.575823840618455], [-77.23484245291682, 34.578653692676006], [-77.23362602861215, 34.57925527812979], [-77.23091565903283, 34.58041882457399], [-77.22798958878747, 34.581332051578194], [-77.22643451167258, 34.58169054268779], [-77.22565667818745, 34.582397067417475], [-77.22532688180564, 34.58330200780492], [-77.22580768008757, 34.584294470073466], [-77.22604627092207, 34.585169814543164], [-77.22677729865121, 34.58462567961917], [-77.22867919323832, 34.584986546031274], [-77.22773975332717, 34.58548223146165], [-77.22569483071547, 34.586171014202414], [-77.2255859781368, 34.58619545190222], [-77.22552000458708, 34.5862090503988], [-77.22523241263096, 34.586276247371515], [-77.22184011245287, 34.58681578176817], [-77.22092155382937, 34.58730424821149], [-77.22001067987088, 34.58760748743592], [-77.21957040418536, 34.58839452350749], [-77.21860892033331, 34.58938219445818], [-77.2186993699449, 34.59018978630637], [-77.21851994200335, 34.590427094916116], [-77.2179282185903, 34.591209663859416], [-77.21792437220935, 34.59121358012431], [-77.2179247509093, 34.59121424992854], [-77.21737670544148, 34.59203980132624], [-77.21721408916709, 34.592100183879836], [-77.21674142300711, 34.59239157117414], [-77.21577713481425, 34.59292935151611], [-77.215661030371, 34.593143020245726], [-77.21514424186185, 34.59337618517019], [-77.21410894109874, 34.59337619087252], [-77.21177118191311, 34.59337621495213], [-77.21007615829312, 34.59343258337272], [-77.20858702053776, 34.59544131331975], [-77.20813499004225, 34.596096060274014], [-77.2081706843996, 34.59699739717048], [-77.20676777680704, 34.59906026970992], [-77.20675991358118, 34.59975829412698], [-77.20552397333603, 34.59990251311883], [-77.20505860057816, 34.599966481568934], [-77.20288477392904, 34.60051212597013], [-77.20125209628796, 34.60082090204505], [-77.20086375692979, 34.601015283501845], [-77.19987065610218, 34.60109865412282], [-77.19760140461352, 34.60136764028553], [-77.19534954765518, 34.60136764860812], [-77.19149742601167, 34.602321078833334], [-77.19072876415262, 34.60251535329337], [-77.1901326034009, 34.602790680602425], [-77.18529693797171, 34.60414760609798], [-77.18224408606888, 34.60504040107838], [-77.18176399806421, 34.605057120115745], [-77.18169327985544, 34.60531507834534], [-77.18159123608174, 34.60553239598546], [-77.17948583426937, 34.6082909645684], [-77.17930578083528, 34.608896852436594], [-77.17772298947688, 34.60991597988493], [-77.17640149138464, 34.61080698769017], [-77.17511418254928, 34.61089057764221], [-77.17253641054775, 34.610874941120585], [-77.1699984629862, 34.61036736608553], [-77.16737361767383, 34.61172100162369], [-77.1661849616254, 34.61223398391474], [-77.1639782702281, 34.614440660081904], [-77.16322106178758, 34.61516240725311], [-77.15935199211063, 34.6166747015688], [-77.1617573144232, 34.61881734175802]], [[-77.27744906996921, 34.53659220048712], [-77.27755264341374, 34.53629705792616], [-77.27797116947693, 34.53567601595087], [-77.28002934095568, 34.532554087216894], [-77.2799514370505, 34.53140894072879], [-77.2847125351098, 34.52528546151291], [-77.28590574170066, 34.52514065089559], [-77.29135158929492, 34.519140334063486], [-77.29239689864643, 34.52465111006002], [-77.29212790974742, 34.52542318909296], [-77.29243056546181, 34.52615647111275], [-77.293023511088, 34.52803728237754], [-77.29356693185764, 34.529133630663345], [-77.2942345918826, 34.529990927342695], [-77.29458597718411, 34.53071602244042], [-77.29513059634823, 34.53144801957624], [-77.29525260882967, 34.532808635921626], [-77.29487631172763, 34.53529959043251], [-77.29226497486054, 34.537154100062644], [-77.29090808460414, 34.53784263766549], [-77.28761895390164, 34.53906447578447], [-77.2852811906193, 34.53973538249041], [-77.28436918048448, 34.53971750639255], [-77.28266981032337, 34.53878667106294], [-77.28260945440385, 34.53778915050383], [-77.28052378216825, 34.537325031287125], [-77.28012962406423, 34.53713851039184], [-77.27794983032936, 34.536570042660195], [-77.27777438034724, 34.53652844471971]], [[-77.35163047843676, 34.49140045125625], [-77.35161328663867, 34.49141314801858], [-77.35163616787331, 34.49141629689487], [-77.35165627017825, 34.49141301182714], [-77.35165953611369, 34.491398604062034]], [[-77.27445551566367, 34.54690978861579], [-77.27231388564755, 34.54702589450052], [-77.2744952500803, 34.54524769279966], [-77.27683987736995, 34.54467192593351]], [[-77.23324379913487, 34.566711690793085], [-77.23304824672702, 34.567187257099036], [-77.2336584184903, 34.567080732744], [-77.2336873883077, 34.56694802116336]], [[-77.28287842022738, 34.517027643826026], [-77.28296883143486, 34.51740825059819], [-77.28394383116024, 34.5171113694809], [-77.28375605787906, 34.516540330153255]], [[-77.3998650222503, 34.578387483756494], [-77.3997870146419, 34.57845605371863], [-77.39969620635634, 34.57850969364107], [-77.39959000568074, 34.578572425846566], [-77.39954602217338, 34.57859840659334], [-77.39943985138895, 34.57866112071632], [-77.39939299501009, 34.578722022576294], [-77.39934302634431, 34.578728936103616], [-77.3992490021748, 34.57874578466668], [-77.39927315542937, 34.578791317081105], [-77.39927483639617, 34.57881225131632], [-77.39929448785372, 34.578840164698875], [-77.39931987229528, 34.57889071971647], [-77.39929448505998, 34.578918225541855], [-77.3992605571075, 34.578968864259906], [-77.39921329941444, 34.57899357695622], [-77.39919597876799, 34.5790032164725], [-77.39918292136824, 34.579002553723264], [-77.39912011753776, 34.579001287731835], [-77.39909747651215, 34.578976863154054], [-77.39907126952599, 34.579004495572846], [-77.39904822341269, 34.57901521682065], [-77.39903287760191, 34.579038273641885], [-77.39901698420323, 34.57905997827143], [-77.39899896921857, 34.57908037930347], [-77.39896238626125, 34.5791151692444], [-77.39894971563822, 34.57912816934857], [-77.39890832931883, 34.579153911346005], [-77.39890046272194, 34.57915810810249], [-77.39889678195634, 34.57916008788037], [-77.39887697072544, 34.5791669125453], [-77.39881226880959, 34.57918735864759], [-77.39880195802918, 34.57918789734819], [-77.39878675138257, 34.579196315697835], [-77.39875270535683, 34.57920987631965], [-77.39873083313566, 34.57921156678658], [-77.39872544590688, 34.5792124736894], [-77.39872331724018, 34.579215618534384], [-77.39870345270523, 34.57923073670818], [-77.39869525683176, 34.57922849889135], [-77.39868794462896, 34.57923054726799], [-77.39867882620004, 34.579245126534126], [-77.39866805466282, 34.579250127976124], [-77.39865608049055, 34.57925388208802], [-77.39865419988908, 34.57925482004315], [-77.3986506258336, 34.579256493875], [-77.3986150293099, 34.57926864249099], [-77.3986049476008, 34.57926617651448], [-77.39856337876215, 34.5792735103126], [-77.39855569529567, 34.579277584937806], [-77.39853491864945, 34.57929172482933], [-77.39850644247817, 34.57930008382682], [-77.39848281780233, 34.57930446971204], [-77.39840793826748, 34.57931236858927], [-77.39834651483396, 34.57930963670891], [-77.39821214801135, 34.579264145023565], [-77.39821093328621, 34.579263861559554], [-77.39820864296264, 34.579263341785754], [-77.39812028436401, 34.57916148833527], [-77.39814325804795, 34.579060488873814], [-77.39816208774137, 34.57900512448905], [-77.39821094967886, 34.57892678663329], [-77.39823605748936, 34.57886186487356], [-77.39829378418723, 34.578826484106735], [-77.39830945815214, 34.5788162055863], [-77.39837764461741, 34.57878171461518], [-77.39840796379636, 34.578761044759794], [-77.39848656567347, 34.57871397258301], [-77.39850646928812, 34.57870620402787], [-77.39851793479158, 34.578700354008696], [-77.39853745531498, 34.57868518295045], [-77.39855572216577, 34.57867475246377], [-77.39857687574381, 34.57864921663325], [-77.39858496785128, 34.57864681477872], [-77.39860497421817, 34.57866112400127], [-77.39861862150089, 34.57865876611504], [-77.39865422638042, 34.578644583879885], [-77.39866320805359, 34.57865735970315], [-77.3986990422346, 34.57865708922986], [-77.39870347751568, 34.578651420892136], [-77.39871208175134, 34.57865071524185], [-77.39879069215412, 34.57863647991133], [-77.39880198114882, 34.57863304842374], [-77.39884613479926, 34.57864064472483], [-77.39889049548432, 34.578645006775275], [-77.39890048300927, 34.578657064725036], [-77.39891867876344, 34.57864978431917], [-77.39896269657234, 34.5786238262457], [-77.39899898787374, 34.578606339630916], [-77.39900722318649, 34.578608527355456], [-77.39902891651423, 34.57861427144944], [-77.39904823872128, 34.578620487144725], [-77.39905654289925, 34.578610285258165], [-77.39907828555076, 34.5785864523694], [-77.39909749241782, 34.57856078576444], [-77.39913047025246, 34.57856408224264], [-77.39915865056108, 34.578595552147576], [-77.3991700060775, 34.578621916196], [-77.39919599231288, 34.57863725294156], [-77.39920578631474, 34.57858875091113], [-77.39922202877877, 34.57850831471999], [-77.39923707570014, 34.578478092653135], [-77.39932762271779, 34.57839457190333], [-77.39935478124707, 34.578354965267174], [-77.39939300911811, 34.578317317248064], [-77.39940866249997, 34.57825791254176], [-77.39944226296242, 34.57824106562047], [-77.39944645972693, 34.57823559325328], [-77.39944753415416, 34.578229758543536], [-77.39945663695909, 34.578207588874655], [-77.39946157671741, 34.57820115073976], [-77.3994668902839, 34.57819032582364], [-77.39947051006831, 34.578182951517334], [-77.39947257053208, 34.57817875389235], [-77.39947497674211, 34.578173851906016], [-77.39947607513582, 34.57817161423251], [-77.399479203769, 34.578169794216514], [-77.39948145059917, 34.57816662562934], [-77.39948174202499, 34.578164162568505], [-77.39948228217915, 34.57816349376553], [-77.39948262780125, 34.57816366231699], [-77.39948475208664, 34.578163072745085], [-77.39948536041794, 34.57816221656747], [-77.39948555862337, 34.57816195336566], [-77.39948652100162, 34.578161406593985], [-77.39948689955273, 34.578161124615164], [-77.39948780858192, 34.57816064918184], [-77.39948843865491, 34.578160991105754], [-77.39948927681344, 34.57816066152842], [-77.39949151694302, 34.57815825554569], [-77.39949481493845, 34.578155642261606], [-77.39949581800998, 34.578153498101905], [-77.39949838735677, 34.57814849281535], [-77.39950383039283, 34.57813846006779], [-77.39950533049203, 34.578135839400204], [-77.3995062679314, 34.578134087760155], [-77.3995102827752, 34.57812719301981], [-77.39951178168491, 34.57812472454746], [-77.39951425476534, 34.57811966737156], [-77.3995142490871, 34.57811762641795], [-77.39951614393851, 34.578115651619015], [-77.39952410451582, 34.578100287797845], [-77.39954077060939, 34.578082045004905], [-77.39955997857079, 34.57808069591464], [-77.39957363968978, 34.578022609907045], [-77.39955992855937, 34.57800693339702], [-77.3995673503265, 34.577981428766876], [-77.39959002563839, 34.577961826245556], [-77.39976862582665, 34.57795698761509], [-77.39978703015294, 34.57794525675241], [-77.39981040344219, 34.57794560426673], [-77.39984328408684, 34.57796604635002], [-77.4000173618565, 34.57811729603198], [-77.4000254094777, 34.57819664588321]], [[-77.34919037049782, 34.551258056452184], [-77.34918563397954, 34.551257195905215], [-77.34917075929903, 34.551256370601806], [-77.34914848276742, 34.55125513461653], [-77.34914136872428, 34.551254739901765], [-77.3491275790443, 34.551253974794065], [-77.34911133155579, 34.5512530733162], [-77.34909241571805, 34.55124930406579], [-77.34907024937823, 34.55124023152923], [-77.34906619939736, 34.55122688062549], [-77.3490613544115, 34.551210908924745], [-77.34909447426165, 34.551159841568285], [-77.3491232539671, 34.55115872588837], [-77.34914347095525, 34.551163376450035], [-77.3491457761875, 34.551166673202786], [-77.34914684123571, 34.55116800466826], [-77.34914972198592, 34.55117160602584], [-77.3491604553873, 34.551185736709925], [-77.34916732698099, 34.5511930597087], [-77.34916952294583, 34.551195343324686], [-77.3491766425637, 34.55120365929116], [-77.34918013709292, 34.551217454972246], [-77.34918239156744, 34.55122409410123], [-77.34918072587604, 34.55123073961437], [-77.34919066882082, 34.55124509092951], [-77.34919387436797, 34.5512509612608], [-77.34919462522636, 34.55125293624991], [-77.34919593967037, 34.551256193015554]], [[-77.34591459849045, 34.53417436702663], [-77.34590364114948, 34.53419083495716], [-77.34590333943794, 34.53419128840341], [-77.3459032229807, 34.53419146342864], [-77.34590296504746, 34.53419164413653], [-77.34590276638784, 34.53419149687884], [-77.34590053426722, 34.53419169205455], [-77.34588029994616, 34.53419341261302], [-77.34587838520201, 34.53419362875964], [-77.3458698079388, 34.53418846280475], [-77.34586819247903, 34.534187489837926], [-77.34586628616918, 34.53418634169635], [-77.34585955488507, 34.534182287545185], [-77.34585709266304, 34.53418080458586], [-77.34585419082933, 34.53417889455036], [-77.34584954805388, 34.53417607685475], [-77.34585428212353, 34.53417493492961], [-77.3458560071527, 34.53417514742248], [-77.34586142992002, 34.53417752263843], [-77.34586651442427, 34.53417644173112], [-77.34586765619859, 34.5341765823773], [-77.34586957249952, 34.5341768184313], [-77.34586979917852, 34.53417684635409], [-77.34587033001775, 34.534176911743984], [-77.34587162350562, 34.53417735145143], [-77.3458726165454, 34.53417780362096], [-77.3458735624926, 34.53417702537744], [-77.34587290133308, 34.53417654174404], [-77.34587276361843, 34.534176488742276], [-77.34587264909985, 34.534176391653816], [-77.34587161168398, 34.534175770990345], [-77.34587137515223, 34.53417565383441], [-77.34587027819563, 34.53417500654489], [-77.34587020412906, 34.53417465439013], [-77.34586828709799, 34.5341733803982], [-77.34586831115526, 34.53417231569392], [-77.3458666641765, 34.53416994662153], [-77.34586309200148, 34.534166477323254], [-77.34586321130021, 34.53416109034771], [-77.34586252572385, 34.53415890818374], [-77.34586258613038, 34.53415615784741], [-77.3458659425344, 34.5341507658966], [-77.34586280229982, 34.534146315490865], [-77.34586286285418, 34.53414355842411], [-77.34586292349141, 34.534140797584094], [-77.34586716727352, 34.53413528841421], [-77.34586839119042, 34.53412700210171], [-77.34586869799774, 34.53411255951925], [-77.34588937137966, 34.53410149084824], [-77.34589958170238, 34.53407323191323], [-77.34589971231732, 34.534065558678854], [-77.34591424108511, 34.53406213931893], [-77.34594244945762, 34.53408636216079], [-77.3459499209607, 34.53409277802462], [-77.34595159244746, 34.53409421334912], [-77.3459542273368, 34.534096475956005], [-77.34598044390637, 34.534118988390844], [-77.34598894383315, 34.53412628736431], [-77.34598624059952, 34.53414875676294], [-77.34597211108085, 34.53416289864907], [-77.34595250939515, 34.534170990465334], [-77.34593223687014, 34.53416919691133], [-77.34592548989501, 34.534171253494335]], [[-77.39869161963904, 34.57821229961207], [-77.39870165366555, 34.578212367834624], [-77.3987034964412, 34.57821329103786], [-77.39871084670314, 34.57821697624158], [-77.39871830284427, 34.578218560442], [-77.39872241600376, 34.57822777419966], [-77.39870565130269, 34.57823401812244], [-77.39870349545336, 34.578236079943096], [-77.39870310190236, 34.57823628488451], [-77.39869428944448, 34.57823463275652], [-77.3986911828362, 34.57823194541551], [-77.39868898806894, 34.57822784268267], [-77.39868726723004, 34.578221505927914], [-77.3986911836658, 34.578212872704604]], [[-77.39940707986383, 34.5780602737293], [-77.39940660668256, 34.57805890965441], [-77.39940565211951, 34.578058701320714], [-77.39940533097027, 34.578058489999215], [-77.39940314638058, 34.578058446030056], [-77.39940225283733, 34.578056818000555], [-77.39940169357294, 34.5780563015981], [-77.39940225287675, 34.57805569490557], [-77.39940270214657, 34.57805332311653], [-77.39940485912828, 34.57805303649793], [-77.39940533116766, 34.57805285933261], [-77.39940570809001, 34.57805281150775], [-77.39940648688437, 34.5780527060982], [-77.39940687026495, 34.57805281394508], [-77.39940698636639, 34.578052925034505], [-77.39940725503388, 34.57805295655239], [-77.39940746461517, 34.578052981138775], [-77.39940762310269, 34.57805297627039], [-77.39940763980661, 34.57805299031711], [-77.39940799312978, 34.57805331950076], [-77.39940799998395, 34.57805334500305], [-77.3994080245649, 34.57805343661787], [-77.3994080832427, 34.57805365788296], [-77.3994081002412, 34.57805371866831], [-77.39940810853518, 34.57805380796987], [-77.3994081280214, 34.57805401777869], [-77.39940814461048, 34.57805412688912], [-77.39940815070017, 34.57805426196185], [-77.39940817623983, 34.57805453694823], [-77.39940823503017, 34.5780551699458], [-77.399408120776, 34.578055374197255], [-77.39940797125287, 34.57805586775139], [-77.39940840921246, 34.578057045372816], [-77.39940902573639, 34.578057896218425], [-77.39940966136149, 34.578058468885345], [-77.39940978042989, 34.57805992940372]], [[-77.32333697194943, 34.522900503899834], [-77.32404441220093, 34.523671909433574], [-77.32416351643298, 34.5237911191811], [-77.32421190761555, 34.52378902884395], [-77.32432395106278, 34.52380806980703], [-77.32499305484028, 34.523954501309674], [-77.32538748955183, 34.523585045148145], [-77.32500995159621, 34.5232296441527], [-77.32447356479565, 34.523556582356136], [-77.324888474238, 34.52308933358366], [-77.32452413769668, 34.52272988064772], [-77.32424358751425, 34.522430539132976]], [[-77.34505683242998, 34.53428856457524], [-77.3450656785624, 34.53432722498738], [-77.34507314807115, 34.534284183070376], [-77.34516625550208, 34.53422141839511], [-77.34518036268965, 34.53421217712494], [-77.34526507490001, 34.53419180576053], [-77.34526585460046, 34.534191210401524], [-77.34526623828991, 34.53419044913181], [-77.34526514693759, 34.53418868229478], [-77.34521476822448, 34.53416905832546], [-77.34516781638357, 34.53415374383684], [-77.34513935908313, 34.53419221717133], [-77.34514748852074, 34.53420824203063], [-77.34506203165425, 34.53427877175881]], [[-77.4001677214017, 34.57832946598539], [-77.40013199773607, 34.577977229283405], [-77.40007984040389, 34.57793191172264], [-77.39990869384624, 34.577825508936996], [-77.39978703388377, 34.577823700095344], [-77.39969123779707, 34.57788476023534], [-77.39959002808784, 34.577887502205485], [-77.39952600993075, 34.57794284509537], [-77.39950505639959, 34.578014851135556], [-77.39954376639858, 34.578059109899726], [-77.39954252152539, 34.578064403003054], [-77.39954077119465, 34.578064525939276], [-77.39952696506319, 34.57807963820279], [-77.39951280728728, 34.57806680448141], [-77.39949152037289, 34.578057334723745], [-77.39948243766415, 34.578061399474876], [-77.3994496325884, 34.578067985305736], [-77.39944226885005, 34.57807060366519], [-77.39943832039047, 34.57807329780707], [-77.39943263563376, 34.57807837274166], [-77.39943237456082, 34.57808907156229], [-77.39942937266437, 34.57811802047135], [-77.39942543148766, 34.57813248399373], [-77.39942879086931, 34.57814651995616], [-77.39943446028092, 34.578157717074504], [-77.39943746216655, 34.578178644260866], [-77.39942660739379, 34.578185386062756], [-77.39939981452272, 34.5781965808515], [-77.39939301325025, 34.57819942260572], [-77.39936159164846, 34.57821398056832], [-77.39931240972938, 34.57823564700885], [-77.39929450932128, 34.57824432809547], [-77.3992421230594, 34.5782650774548], [-77.39920659299732, 34.57828161285042], [-77.39919600538254, 34.5782865763117], [-77.39918287190038, 34.57828777908596], [-77.39909750166582, 34.57832036461667], [-77.39906656373779, 34.57832374671355], [-77.39904825022782, 34.578325700516096], [-77.39902892828928, 34.578328090498545], [-77.3990073892902, 34.57835201901463], [-77.3990008714002, 34.5783549783802], [-77.39899899761944, 34.57836032916034], [-77.39899667723523, 34.57835606521073], [-77.39897437197574, 34.57836074215331], [-77.3989588738459, 34.57835901926694], [-77.39895188844105, 34.578357719057436], [-77.39894974649866, 34.5783570093906], [-77.39894518805974, 34.5783560818901], [-77.39890049503691, 34.57836211958188], [-77.39886071312499, 34.5783833875329], [-77.39880199100833, 34.578398057548924], [-77.39877596340364, 34.57841043676708], [-77.39872548262485, 34.578422065107375], [-77.39870348723426, 34.57842603486216], [-77.39868090228086, 34.578423464126374], [-77.39867784083631, 34.57842500474965], [-77.39865423517881, 34.57844327366575], [-77.39863819890778, 34.57844108006145], [-77.39861394850001, 34.57845219891145], [-77.39860498330864, 34.578455854259914], [-77.39860041194501, 34.578458886667555], [-77.39858545613224, 34.57846597038781], [-77.39852283910211, 34.578492634242934], [-77.39850647845637, 34.57850441277042], [-77.39846215226211, 34.57853152439808], [-77.39840797295075, 34.578564466056434], [-77.39833723580459, 34.57860792806166], [-77.39825204091704, 34.578664484939125], [-77.39821096129445, 34.57868889327365], [-77.39801820338978, 34.578866245329074], [-77.3980163948552, 34.578869144860455], [-77.39794141324381, 34.57908961105128], [-77.39791624313918, 34.5792002666614], [-77.39791781824272, 34.579408855368584], [-77.39817170617161, 34.57943869735738], [-77.39821092438939, 34.57944759767283], [-77.3982299605775, 34.57945203989107], [-77.39830942802057, 34.57945174185895], [-77.39831706960325, 34.5794517502212], [-77.39837936843522, 34.57942021558408], [-77.39840793388322, 34.57940754517212], [-77.3984376147639, 34.579410608900055], [-77.39847702441263, 34.57940521117995], [-77.39850643822503, 34.57939482490474], [-77.39854281910895, 34.57938821046187], [-77.39856620085187, 34.5793822926438], [-77.39860494310548, 34.579368961093365], [-77.39860778260513, 34.579368027390494], [-77.39861730212812, 34.579363594189786], [-77.3986272523247, 34.57935966170493], [-77.39862956967065, 34.57935431617886], [-77.39864877743273, 34.57935905277792], [-77.39865372127592, 34.57935885035117], [-77.3986541953869, 34.57935915279919], [-77.39865477574014, 34.5793588126599], [-77.39865632901068, 34.579357963198], [-77.39867882196472, 34.579343931858524], [-77.39868472928066, 34.57933369461101], [-77.39868791687303, 34.579326869687975], [-77.39870344928744, 34.57931099044173], [-77.39871107030038, 34.57930520495475], [-77.39872043540458, 34.57930387453108], [-77.39872807544782, 34.579305092868], [-77.39874392487057, 34.57930171001293], [-77.3987527012903, 34.579306683321924], [-77.39879615099981, 34.57929096998606], [-77.39880195373466, 34.5792915515347], [-77.39880660343368, 34.5792882192062], [-77.39882345059958, 34.57928077820848], [-77.39888524350008, 34.579255466916536], [-77.39890045903661, 34.57924961581558], [-77.39893098607929, 34.5792323682665], [-77.39895904369719, 34.57921819753959], [-77.39899896401397, 34.57921335343192], [-77.39902444305054, 34.579198705798404], [-77.39903582720564, 34.5791837125363], [-77.3990482171216, 34.57917828210317], [-77.39907063546876, 34.57916788405308], [-77.3990974693584, 34.57916507440103], [-77.39915755425321, 34.57916782576001], [-77.39919597236263, 34.57917729518485], [-77.39925282886882, 34.579173946502706], [-77.39935686287458, 34.57909766922451], [-77.39938242340035, 34.5790826029445], [-77.39939298292485, 34.57907134437352], [-77.39949646957709, 34.57897674794027], [-77.39958761444782, 34.57885208637987], [-77.39968534268385, 34.57872843525134], [-77.39978700825617, 34.57866838199321], [-77.40015400719616, 34.578345783929535]], [[-77.34477138973556, 34.53390118281592], [-77.34478105898451, 34.533902843799744], [-77.344837641232, 34.53388559573656], [-77.34482725347483, 34.53379189458502], [-77.34480993728452, 34.533767172131434], [-77.34482250802573, 34.53374182924131], [-77.34478436904621, 34.53375936026286], [-77.34477343416873, 34.53376569581362], [-77.34474785961172, 34.53377610428526], [-77.34464056663302, 34.533825213638046], [-77.34460450699424, 34.53385793557938], [-77.34459818368033, 34.53386668033565], [-77.34462189718826, 34.53389362615172], [-77.34468240061348, 34.53390793274811], [-77.34468280339773, 34.53390802344895]], [[-77.34175688665863, 34.537637757447655], [-77.3417605676321, 34.53763335789178], [-77.34175106834036, 34.53762099858382], [-77.341682909458, 34.53760174528151], [-77.3417291062187, 34.537637883807406], [-77.34168864756828, 34.537666638073354], [-77.34169753095613, 34.53767503565758], [-77.34170507415034, 34.53767463454616], [-77.34175064355324, 34.53763938449141]], [[-77.34398044323203, 34.535233029087614], [-77.34399443621001, 34.53524944107849], [-77.34404240978616, 34.53529748701798], [-77.34411605589891, 34.535335927031156], [-77.34415849127691, 34.53536543579465], [-77.34420484867444, 34.53532315158563], [-77.344264589267, 34.53525675164906], [-77.34428614932618, 34.5352337338318], [-77.34433296664596, 34.53518230820132], [-77.34430478212768, 34.53509896198662], [-77.34424268996898, 34.53507288750582], [-77.34416590444883, 34.53504418709859], [-77.34410601128086, 34.535092552805835], [-77.34402980210203, 34.535142459635026], [-77.34398909405971, 34.535217155516165]], [[-77.34579377644991, 34.534169236262414], [-77.3458034459751, 34.53417506008146], [-77.34580518689388, 34.53417610861226], [-77.34582644417024, 34.534188911562666], [-77.3458444581792, 34.53419976113257], [-77.3458535830116, 34.534205256883006], [-77.3458708434394, 34.5342156525755], [-77.34588547040741, 34.53422446216927], [-77.34590197916258, 34.534234405133056], [-77.34595023490405, 34.534215142848886], [-77.34595090454083, 34.53421467370173], [-77.3459515237276, 34.53421374311719], [-77.34597314831888, 34.534181243199114], [-77.34599297921224, 34.53417305676313], [-77.34602246612324, 34.53414354404241], [-77.34602453817715, 34.5341263210379], [-77.34602810748213, 34.53409665261543], [-77.34601302145384, 34.534083698091415], [-77.3459907560773, 34.534064578604394], [-77.3459556576039, 34.534034439157374], [-77.34595340473658, 34.53403250459525], [-77.34587143826292, 34.534051795486214], [-77.34587070137688, 34.534095085321425], [-77.34586723613667, 34.5341046760073], [-77.34586021988103, 34.534108432558874], [-77.34585968546342, 34.534133589620005], [-77.34585926662675, 34.53413642527954], [-77.34585781436178, 34.53413831057293], [-77.34585768273017, 34.534144303818884], [-77.34585755127844, 34.534150288873825], [-77.34585863030412, 34.534151818091445], [-77.3458574769998, 34.53415367083628], [-77.34585734559887, 34.534159653578534], [-77.3458588369171, 34.53416440038874], [-77.34585877717186, 34.534167098206204], [-77.34586441276113, 34.534172571493514], [-77.34585436515208, 34.534171333807045], [-77.34584747887514, 34.534172994875284], [-77.34584212201604, 34.53417029698967], [-77.34584076845626, 34.53416968957101], [-77.34583303486538, 34.53416884013238], [-77.34582989651271, 34.5341684954233], [-77.34582198232582, 34.53416744178196], [-77.34580658527013, 34.53417376985555], [-77.34580522745598, 34.53417434939358]], [[-77.3422485654407, 34.537256112623744], [-77.34224422212938, 34.53726140823761], [-77.34217961972429, 34.53732825507681], [-77.34217567119478, 34.537344826416074], [-77.34218768715606, 34.537424854052226], [-77.3422567343029, 34.53743957072808], [-77.34234304423285, 34.537485391645376], [-77.342499502442, 34.53743027471327], [-77.34254762023637, 34.537401691044444], [-77.34255459340409, 34.53739672018019], [-77.34265333636236, 34.537328954657845], [-77.34274107206106, 34.53724868572566], [-77.34274197193665, 34.53724790360966], [-77.3427427248828, 34.537247245346315], [-77.34274792088098, 34.53724231827671], [-77.34281465556515, 34.53715908729554], [-77.34284141906201, 34.53715311397468], [-77.3428886053277, 34.53710384864191], [-77.34291067593664, 34.53708163116164], [-77.34292133690161, 34.53705077284903], [-77.34291763845681, 34.53703846698819], [-77.34288623147108, 34.53701699836705], [-77.34276091627807, 34.53700872932461], [-77.34274627203251, 34.53702350338511], [-77.34262308982363, 34.53714204706243], [-77.34273303724034, 34.537243554261835], [-77.34254563230405, 34.53721228963678], [-77.3424657363761, 34.53721447965976], [-77.34234848269202, 34.53724992926898], [-77.3422525538053, 34.53725510443251]], [[-77.34499890876808, 34.53296741078922], [-77.34500278335601, 34.533002050008676], [-77.34501785093376, 34.53300279677694], [-77.345007545971, 34.53301028320232], [-77.3450577461935, 34.53308113429869], [-77.3451538554142, 34.53308150569855], [-77.34519325396154, 34.533050860474496], [-77.34524974639696, 34.53300398820283], [-77.34525360122505, 34.53296887453657], [-77.3452750265433, 34.53291672115861], [-77.34528199912563, 34.53290358339467], [-77.34528417199064, 34.5328965499551], [-77.34529115338775, 34.53284106118066], [-77.34526326458956, 34.532804947232904], [-77.3452629041742, 34.5327839210928], [-77.34522452689743, 34.532773922641255], [-77.34521006425497, 34.53273627837914], [-77.3452053705787, 34.53273099475237], [-77.3452075318427, 34.532726445623936], [-77.34520088399405, 34.53272005085574], [-77.34516112564027, 34.53270675873637], [-77.34515419517645, 34.532706467922814], [-77.345145841238, 34.53270501495572], [-77.34510241375612, 34.532734598893875], [-77.34501381913574, 34.532752351801236], [-77.34502763898377, 34.5326953637196], [-77.34500538191536, 34.532686788082415], [-77.3449604453066, 34.532672065292196], [-77.34493903766877, 34.53266644201546], [-77.34495055320549, 34.53267955050754], [-77.3449774275058, 34.53270258863317], [-77.34499112890329, 34.532753898203424], [-77.34499715289557, 34.532760955289916], [-77.3449887245659, 34.532876924404945], [-77.34499064293924, 34.53288430186333], [-77.34499162887569, 34.532889816631226]], [[-77.3450742020195, 34.53316692752426], [-77.34507537891336, 34.533188465777954], [-77.34509156453768, 34.53320495664177], [-77.34511549913076, 34.53318703065132], [-77.34512921315475, 34.53314773024163]], [[-77.3490243448177, 34.55119820813117], [-77.34901145027513, 34.55121809017168], [-77.34901515890213, 34.5512303158174], [-77.34902383901769, 34.55125893023663], [-77.34906110432368, 34.55127215009748], [-77.34907629179628, 34.55127958419549], [-77.3490917332789, 34.551278962285224], [-77.34910970515162, 34.55127632488949], [-77.34914083232489, 34.55127805195461], [-77.34915689071295, 34.55127894293459], [-77.34918975254826, 34.55128491338607], [-77.3492283913162, 34.551271984913335], [-77.34921927173937, 34.551249389561626], [-77.34921406230417, 34.55123568714074], [-77.34921278082324, 34.55123334035959], [-77.34920159577956, 34.55122133057526], [-77.34920161752824, 34.55121493306535], [-77.34919618922953, 34.55119421836058], [-77.3491963662049, 34.55119148052496], [-77.34919575969224, 34.55118919533834], [-77.34919200415547, 34.55118705548603], [-77.34917789117195, 34.55117254485711], [-77.3491709221326, 34.55116453938237], [-77.34916993934937, 34.55116347631031], [-77.3491680588912, 34.551161250319744], [-77.34916236003721, 34.55115412592174], [-77.34915449782252, 34.551142882031755], [-77.3491501052663, 34.551136932372486], [-77.34914897117183, 34.55113408615562], [-77.3491442787936, 34.551128267620626], [-77.34912319592459, 34.55112341787829], [-77.34909545918852, 34.551117037527], [-77.34908196368426, 34.55111613545564], [-77.34905541539437, 34.55111436090526], [-77.34903274102616, 34.55111467949374], [-77.3489964611836, 34.551153627830175], [-77.34899271652532, 34.55115958079185], [-77.34899613928098, 34.551167616717436]], [[-77.39870349781798, 34.57818154490817], [-77.39870205299954, 34.57818223173567], [-77.39867887221692, 34.57818207412526], [-77.3986716381649, 34.578188177060625], [-77.39866377219815, 34.57819957732167], [-77.39866715844084, 34.57821535927225], [-77.39866909404208, 34.5782256146299], [-77.3986717790099, 34.57823358741598], [-77.39867411979618, 34.578240890689116], [-77.39867886929181, 34.57824908878544], [-77.3986846693977, 34.57825965384325], [-77.39869454808908, 34.578264479004915], [-77.39870349387853, 34.57827242996194], [-77.3987183276949, 34.57827159930669], [-77.39873965916206, 34.57827040479759], [-77.39875274551744, 34.57826236376656], [-77.39879070986247, 34.57822406823731], [-77.39875274860248, 34.57819020757495], [-77.39874777652103, 34.57818254941335], [-77.39871235748954, 34.57818230179515]], [[-77.34396346027569, 34.53033908430051], [-77.34396639931487, 34.53034708261967], [-77.34396898975132, 34.530368891132596], [-77.34397141633681, 34.53037345444124], [-77.34397654803496, 34.53038310483409], [-77.3439789650152, 34.53038765007585], [-77.34399103061926, 34.53038878065357], [-77.34400368071104, 34.530379734496684], [-77.34400395543551, 34.53037932682398], [-77.34400407892127, 34.530379143579346], [-77.34400440405837, 34.530378661097636], [-77.3440066696038, 34.53037288579635], [-77.34400950734583, 34.53037071190697], [-77.34401003146974, 34.53037031039499], [-77.3440118329668, 34.53036763709329], [-77.34401460275066, 34.53036615345453], [-77.3440162937523, 34.53036471969741], [-77.34401910133076, 34.53036341315304], [-77.34402448979019, 34.5303609055606], [-77.34402447725584, 34.53035826793003], [-77.34402572979673, 34.530347440018055], [-77.34402341004548, 34.53034575970243], [-77.34401568370907, 34.53033995772316], [-77.34399278370122, 34.53033486513305], [-77.34398684000547, 34.530331615339506], [-77.34398054447018, 34.53031921731686]], [[-77.39941764312252, 34.5780760880991], [-77.39942494457027, 34.57806621457455], [-77.3994207414494, 34.5780634828492], [-77.39941764357832, 34.578063026819066], [-77.39941463362715, 34.57806106840553], [-77.39941271927111, 34.57806001709211], [-77.39941148732372, 34.57805934053931], [-77.39941139585865, 34.578058218609364], [-77.39940987979487, 34.57805685271052], [-77.39940954923802, 34.57805639651923], [-77.39940932192613, 34.578055200879575], [-77.39940883352824, 34.578054814203874], [-77.39940840929027, 34.57805482331263], [-77.39940837996369, 34.57805450755228], [-77.39940837674877, 34.57805447293701], [-77.3994083597478, 34.5780540958463], [-77.39940835028361, 34.57805403359796], [-77.39940834838043, 34.57805389017502], [-77.39940831377815, 34.57805379220745], [-77.39940831375047, 34.57805379085071], [-77.39940831313302, 34.57805378855073], [-77.39940830239962, 34.57805368949825], [-77.39940828303286, 34.578053621078524], [-77.39940825938109, 34.5780535341184], [-77.3994082885221, 34.57805348418918], [-77.39940828748988, 34.578053408329154], [-77.39940821695379, 34.57805338154409], [-77.399408191623, 34.57805329085955], [-77.39940817105861, 34.57805313598018], [-77.39940802458176, 34.5780529554749], [-77.39940797326594, 34.57805290774399], [-77.39940778775389, 34.57805277509584], [-77.39940763981909, 34.57805263422818], [-77.3994073385602, 34.57805267469993], [-77.3994072550441, 34.57805266490249], [-77.39940720415713, 34.57805265893285], [-77.39940687028157, 34.57805233947045], [-77.39940680254574, 34.57805232041602], [-77.3994053871693, 34.57805251198674], [-77.3994053311796, 34.57805251909085], [-77.39940526106078, 34.57805254540777], [-77.39940229163945, 34.57805293998292], [-77.39940225296625, 34.57805314414675], [-77.39940050059568, 34.5780550449923], [-77.3993991747625, 34.57805349554139], [-77.39939355800503, 34.57805747550366], [-77.39939917453911, 34.57805985506105], [-77.39940089542193, 34.57806119630163], [-77.39940290306956, 34.578062761043974], [-77.39940533077376, 34.57806409664563], [-77.3994089743389, 34.578064592734535], [-77.39941100610162, 34.57806822580032]], [[-77.39938042296932, 34.57804640770172], [-77.39938566558754, 34.57805069102757], [-77.39938106227382, 34.578046010613825], [-77.3993808616605, 34.57804587169921], [-77.39937918996164, 34.578044647207896]], [[-77.34401833076802, 34.5303698300787], [-77.3440182725094, 34.530369581097794], [-77.34401809974239, 34.530369513917364], [-77.34401790906433, 34.53036962478369], [-77.3440179726442, 34.53036980800315]], [[-77.34401772511202, 34.53036913706525], [-77.34401779074621, 34.530369082037055], [-77.34401785857457, 34.53036903213375], [-77.34401772923357, 34.53036895848801], [-77.3440176410687, 34.53036906342942]]]]}, "type": "Feature", "id": "demo5", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16498669612761, 34.62169362296926], [-77.16759293100434, 34.62061855872905], [-77.1738360270186, 34.61904814514875], [-77.18019718850748, 34.61650968123487], [-77.18209579533607, 34.61587761137209], [-77.18430080596714, 34.61429168645048], [-77.18535520184736, 34.613517363949704], [-77.1861124475366, 34.61320761100839], [-77.18933647141259, 34.61179979578804], [-77.19250041770424, 34.611429803522554], [-77.19693386056082, 34.610293710178816], [-77.19847823152712, 34.60941462652213], [-77.20066312112226, 34.608639044487845], [-77.2026528932125, 34.60786932699088], [-77.20413026581531, 34.60709222539637], [-77.20662209100875, 34.606141068686384], [-77.20893564799849, 34.605629908949325], [-77.21295543834904, 34.604019134240225], [-77.21496717848767, 34.60304671827717], [-77.21759910989171, 34.60088710700713], [-77.21793644218933, 34.60064186456155], [-77.21803898143226, 34.60051996176575], [-77.21931224238254, 34.59730752969099], [-77.21924923908433, 34.596974639335535], [-77.21973574022287, 34.596769576984926], [-77.2214035097161, 34.593586430609506], [-77.22151150204121, 34.59338244201638], [-77.22162450765485, 34.59319018788622], [-77.22255546564274, 34.59157944469927], [-77.22304655493664, 34.59109305495484], [-77.22413438553761, 34.590163681574055], [-77.22540962909291, 34.58991938392617], [-77.22720080723462, 34.58954990495347], [-77.22899916748554, 34.5892329397239], [-77.23123923612334, 34.588235018675775], [-77.23275188332815, 34.58731258771779], [-77.23454603370443, 34.58686957820971], [-77.23702805791999, 34.585858047414334], [-77.23771289306404, 34.585233983962794], [-77.24021940223496, 34.58381967155138], [-77.2404686320982, 34.58366005413415], [-77.24067526127297, 34.58358217081025], [-77.24452795111144, 34.58201262158084], [-77.24455390476915, 34.582002523743604], [-77.24487650858728, 34.5818631962931], [-77.24826291245635, 34.580409393667615], [-77.24846694256222, 34.580258150126475], [-77.2488268503484, 34.580138269994144], [-77.250777007247, 34.578722051802046], [-77.25154289748029, 34.577735937965244], [-77.25322484766872, 34.57702946180731], [-77.25395701868243, 34.57666337027993], [-77.25527973687431, 34.57580175065239], [-77.2560237372904, 34.57536446333254], [-77.25715084272879, 34.574837073425094], [-77.2587268917037, 34.57389965081666], [-77.2589192121636, 34.5737810132338], [-77.25903805265584, 34.57371638331236], [-77.25922841170951, 34.573549863014065], [-77.26022330759054, 34.57231198019191], [-77.26059903772314, 34.57195386320206], [-77.26168969940264, 34.57098733033243], [-77.26297245266798, 34.57025526102098], [-77.26447663342043, 34.56919777020515], [-77.26506641566077, 34.56873302543761], [-77.26532793724276, 34.568555216916394], [-77.2660885612284, 34.56804082036744], [-77.26674076822484, 34.56759343733921], [-77.26783950136394, 34.56686740550692], [-77.26838862942387, 34.566430292917595], [-77.26964845893774, 34.56512432059204], [-77.27003368731685, 34.5648754271395], [-77.2715772288428, 34.56400882208963], [-77.2723054294475, 34.56371603993942], [-77.27265182290961, 34.563475108660825], [-77.2740963930165, 34.5619325277441], [-77.27455880900848, 34.56165619504351], [-77.27727434466797, 34.560040589077424], [-77.27739134196635, 34.559970004289546], [-77.27747272915907, 34.559916386313716], [-77.2782218720127, 34.559478908247556], [-77.28068682156805, 34.5579785217403], [-77.28108048388444, 34.557760073123035], [-77.28294309197196, 34.55640852321951], [-77.28400249523374, 34.55513134069073], [-77.28651228914627, 34.55368754310582], [-77.28729839530692, 34.553107148888266], [-77.28770711437384, 34.55284502242586], [-77.29058468708172, 34.55148126124132], [-77.29105226766976, 34.551326284980824], [-77.29216613569666, 34.551021845159276], [-77.29256035810145, 34.55082076384348], [-77.2930803709996, 34.550326710209546], [-77.29376098832273, 34.54999543140438], [-77.29581049211684, 34.54839612549674], [-77.29622644716024, 34.54788408881373], [-77.29696247455051, 34.54743907635408], [-77.29948579049487, 34.546312075708045], [-77.30013886995704, 34.545937541009806], [-77.30023729562483, 34.54586282714113], [-77.30036014391403, 34.54578492607869], [-77.30333144801872, 34.54374411717329], [-77.30365431083109, 34.543552220942644], [-77.30415873782876, 34.54328131611503], [-77.30555711150423, 34.54249157722308], [-77.30651865258241, 34.54177184758661], [-77.3071503153025, 34.54128009868659], [-77.30795759121219, 34.540777528823256], [-77.30891038524254, 34.540149925336394], [-77.30971460052828, 34.539420731682576], [-77.31046264035666, 34.53891850316228], [-77.3120511394185, 34.53823128381893], [-77.31289565760972, 34.53769683941987], [-77.31402004176394, 34.536676294611], [-77.3160574789813, 34.535697406681905], [-77.3160833728658, 34.535682751595274], [-77.31754363883479, 34.53441761969989], [-77.32007938644406, 34.533161086923116], [-77.32117186984945, 34.53220990914353], [-77.32246224292027, 34.5314869465331], [-77.32314457711145, 34.53118330562803], [-77.32296201268952, 34.53078841244792], [-77.32316193238228, 34.530339993535065], [-77.32348537444649, 34.52936187129557], [-77.32381529918271, 34.52870728084958], [-77.32390451233668, 34.52857230978867], [-77.32410354435963, 34.52843592379556], [-77.32443671005908, 34.527837813796], [-77.32457240285763, 34.52761921564539], [-77.32491252680366, 34.527085412431305], [-77.32491554357067, 34.52708027249954], [-77.32491606165097, 34.527077582504575], [-77.32492033614359, 34.52707411108796], [-77.32534969489919, 34.5265282440378], [-77.32546022746757, 34.526348919792724], [-77.32572684078484, 34.52615268910777], [-77.32620960215414, 34.52572020758848], [-77.32648742313756, 34.525385454868534], [-77.32653082751493, 34.525338614417265], [-77.32687253737731, 34.52504939669274], [-77.32733291577749, 34.52460541190015], [-77.3279777127291, 34.52419196629455], [-77.32846075045384, 34.52383554927572], [-77.32892754942404, 34.52354739319087], [-77.3302873303037, 34.52288066044205], [-77.33042960356732, 34.52280709181245], [-77.33051523321535, 34.52278658360342], [-77.3306225798373, 34.522765803006315], [-77.33209534065645, 34.52235067574419], [-77.33256923102331, 34.52225830216954], [-77.33315401300695, 34.52214658324038], [-77.33367105118258, 34.522103452869956], [-77.33431955767665, 34.521899295149275], [-77.334564553447, 34.52183985445317], [-77.33525327840324, 34.52157472887346], [-77.3358965954439, 34.52149488821429], [-77.33683103747956, 34.520964322880616], [-77.33683746253323, 34.52096061695866], [-77.33683845676377, 34.520959911604386], [-77.33683879191756, 34.52095925342539], [-77.33684064051748, 34.52095705666456], [-77.3374917367078, 34.52028440558718], [-77.3381120801221, 34.5197968296834], [-77.33829684333415, 34.51968283527149], [-77.33843831566818, 34.519625436171964], [-77.33881306438101, 34.51943740178489], [-77.3388654012204, 34.51942495532436], [-77.3392291115832, 34.5193731646355], [-77.33973712227981, 34.519390560367206], [-77.34001507410366, 34.5193296137838], [-77.3403218056809, 34.51928820754786], [-77.34158648438857, 34.51926462134479], [-77.34168083700573, 34.51928341900304], [-77.34260670238226, 34.519489836703656], [-77.34468782379604, 34.51983001925457], [-77.34469227460012, 34.51984228364509], [-77.34471304176284, 34.519838863575856], [-77.3447343446919, 34.519836580322185], [-77.34754978554122, 34.51961047361629], [-77.34785919203799, 34.51956425329267], [-77.35100878337141, 34.51892024207391], [-77.35101321544788, 34.51891921752277], [-77.35101450948375, 34.51891900028288], [-77.35417377385065, 34.51804118087657], [-77.35606390714527, 34.517403760454606], [-77.3573349541116, 34.517105824183574], [-77.35877991522653, 34.51673881998881], [-77.35891383905411, 34.51671132228284], [-77.3592256163371, 34.51656536750932], [-77.36050164905949, 34.515926175723465], [-77.36093781729176, 34.515802180455026], [-77.3622581618342, 34.515341652256254], [-77.36366806184343, 34.51475471545008], [-77.36524641384621, 34.51392536507387], [-77.36525685302249, 34.5139228372516], [-77.36529370125987, 34.5139023320257], [-77.36684135379511, 34.513277582416066], [-77.36715724524142, 34.51286844476385], [-77.36740750127998, 34.51264113421278], [-77.36844955189214, 34.511591637371886], [-77.36871911373018, 34.51164169314298], [-77.37001293009837, 34.51187062494559], [-77.3703663097001, 34.51199252719003], [-77.37079497887996, 34.51199446511943], [-77.37115945833904, 34.5118358834674], [-77.37159381812621, 34.51138061204974], [-77.37180620859135, 34.5111572020519], [-77.37318905786209, 34.510258585746136], [-77.37364214893148, 34.510063814627244], [-77.37474554716145, 34.50962482201817], [-77.37587789319167, 34.50916497647117], [-77.37635380912705, 34.50914205080967], [-77.37708080166607, 34.50883885389556], [-77.3782469094891, 34.50833097352305], [-77.37952637567702, 34.50767671551552], [-77.38040174381807, 34.50739273337064], [-77.381991859022, 34.50662125259519], [-77.38244906819835, 34.50640217535094], [-77.38269619788717, 34.50632751380298], [-77.3832814420354, 34.50607367769758], [-77.38461661444606, 34.505470099194], [-77.38586614647468, 34.504967955805554], [-77.38685467905646, 34.50457231877124], [-77.3874500531792, 34.504333667881795], [-77.38901293653306, 34.50364970005646], [-77.38902788795679, 34.50364297623764], [-77.38903529897746, 34.50363887932345], [-77.3890718686026, 34.50361866258216], [-77.39093116977307, 34.50258229891954], [-77.3922126432434, 34.50194127015048], [-77.39302996037131, 34.501616728334284], [-77.39379569885301, 34.501339887941825], [-77.39430710323334, 34.50124473371199], [-77.39519706754517, 34.50079849898195], [-77.39530811180343, 34.500738403576534], [-77.39537962036832, 34.50069891047603], [-77.39569061891174, 34.50053547779176], [-77.39855943172914, 34.4988802088068], [-77.39908428839809, 34.49860222133289], [-77.40172030004398, 34.49790065500087], [-77.40172321148036, 34.49789934843089], [-77.40173057434261, 34.49789648653672], [-77.40398973520232, 34.497015303025336], [-77.40489238853903, 34.49641587976559], [-77.40592374179519, 34.49596952199587], [-77.40647505961456, 34.495822449039544], [-77.40780487467555, 34.495218336560036], [-77.40806053066093, 34.49510255727421], [-77.40814760823861, 34.49506471109731], [-77.40820171303123, 34.4950303626708], [-77.4104733776133, 34.49398957602637], [-77.4106555009025, 34.493907501126586], [-77.41083855507162, 34.49381426478645], [-77.41284447560275, 34.49280959313429], [-77.41306778626277, 34.49270378252295], [-77.41328474501324, 34.492588362607194], [-77.4141691655608, 34.492050973703755], [-77.41444085888259, 34.49197197176654], [-77.41520607082262, 34.49159499680216], [-77.41540628008559, 34.49146417001721], [-77.41566214381308, 34.491358899446816], [-77.41670260970466, 34.490906158010915], [-77.4175929424196, 34.490473230460296], [-77.41785253682755, 34.4902769473129], [-77.41816647833221, 34.49013588664578], [-77.41909140131591, 34.48969098941956], [-77.41994084909184, 34.48920889772396], [-77.42023787875598, 34.489060097088014], [-77.42054728175835, 34.48890651535424], [-77.42228168303372, 34.487918876412074], [-77.42248477291379, 34.48777592162163], [-77.42288703048871, 34.48767500634056], [-77.42469743175755, 34.48690351976338], [-77.42517445971367, 34.4867070348046], [-77.42593287870373, 34.48649691725675], [-77.42594979489952, 34.48648985065644], [-77.42596308958178, 34.486481074467704], [-77.42625808644776, 34.486045577917395], [-77.42702437344032, 34.48556304251504], [-77.42727134113294, 34.4853499061732], [-77.42744421106117, 34.485205627281545], [-77.4293198960804, 34.484107725097374], [-77.42945687258661, 34.484035878107136], [-77.42977282574557, 34.48397343647697], [-77.43179547429864, 34.483312087996524], [-77.43273713978891, 34.48325406289214], [-77.43311258037312, 34.48320479574433], [-77.4335888962777, 34.48307400972468], [-77.43394127410811, 34.482835082904955], [-77.4340946176116, 34.4827257268324], [-77.43430921878596, 34.48265635461861], [-77.43497534233526, 34.48196560562548], [-77.4359742889585, 34.48158768090221], [-77.43733208455622, 34.48073478001456], [-77.43894563407002, 34.4799133585833], [-77.43974761880943, 34.47953252457105], [-77.44144423295401, 34.47920266213135], [-77.44147882268784, 34.4791858442307], [-77.4415157815753, 34.4791680668143], [-77.4428351958447, 34.47865693718775], [-77.44385444315698, 34.478168503775976], [-77.44406651480762, 34.478067241567025], [-77.44429787152671, 34.47795873672764], [-77.44495014472841, 34.47730853241337], [-77.44624285098166, 34.477054725772255], [-77.44657557474734, 34.47691040415124], [-77.44695984404318, 34.476743237000086], [-77.44786280223306, 34.476347872246436], [-77.44835886317315, 34.476138937119856], [-77.44861116466548, 34.47586760527924], [-77.44880693969067, 34.47561858766238], [-77.44901269562276, 34.47549668775845], [-77.44978326519366, 34.47490493296341], [-77.4509709252505, 34.47464938594047], [-77.45136166427507, 34.474483920917116], [-77.45189400104542, 34.47429225705322], [-77.4527856130189, 34.47398782183433], [-77.45343361712598, 34.473808039468096], [-77.45365842885946, 34.47370649503339], [-77.45402555818498, 34.47340229342796], [-77.45468313990995, 34.473083081101166], [-77.45512958392678, 34.47275069935347], [-77.4557885014507, 34.47257237232926], [-77.45730228533262, 34.47186520831414], [-77.45766225505065, 34.47160528032417], [-77.4581593903565, 34.471395472459946], [-77.46031411524959, 34.47051776678071], [-77.46058897095494, 34.4704335078505], [-77.46267336359169, 34.46943606286221], [-77.46282500353003, 34.469361733627096], [-77.46296630910435, 34.46928060370345], [-77.46486309161443, 34.468196234373366], [-77.46508365413494, 34.46808311962728], [-77.4652953679005, 34.46795131659478], [-77.46685594201114, 34.46694637804131], [-77.46711037492865, 34.46669180261722], [-77.46760598316946, 34.46655481127772], [-77.47003177000471, 34.46578464792308], [-77.4700831860155, 34.465767751080236], [-77.470091006528, 34.46576397752357], [-77.47009778740758, 34.465759879426855], [-77.47022270112073, 34.465684829732574], [-77.472148006225, 34.46451285923024], [-77.47222483215717, 34.46442469216761], [-77.47239371255318, 34.4643713599876], [-77.47210586271191, 34.46331880801162], [-77.47079847373568, 34.46373167952229], [-77.47020372514908, 34.464414225563665], [-77.46978307890862, 34.46467028107645], [-77.46877463005698, 34.465124392109125], [-77.46756094191193, 34.465510450736495], [-77.46733324731052, 34.465557343791296], [-77.46722042975267, 34.46561385636517], [-77.46573622393778, 34.466024106489996], [-77.4649763343495, 34.466784421688544], [-77.46492456960303, 34.4668177772607], [-77.46487560174289, 34.46684584118917], [-77.46442885997574, 34.46714770995751], [-77.46387201154535, 34.467494377598975], [-77.46271606730011, 34.46808719971347], [-77.4626503303508, 34.46812478079159], [-77.46156353568708, 34.46874875878042], [-77.46039725844287, 34.46932043202451], [-77.46029772549744, 34.46936806155257], [-77.45885705740714, 34.46980970838654], [-77.45783927648228, 34.47022429128798], [-77.45622362441256, 34.47090615094689], [-77.45547989164666, 34.471443187684216], [-77.45477721735713, 34.471736820886534], [-77.45366354087047, 34.472038222210045], [-77.45307060461765, 34.47247966879809], [-77.45196461879416, 34.47294479968396], [-77.45131232837856, 34.47327179931859], [-77.4510101461552, 34.47357176643615], [-77.4507037626748, 34.47367167339325], [-77.4498835926054, 34.47376555320456], [-77.44856920782011, 34.47412305975648], [-77.44829565269512, 34.47418192020008], [-77.44817575227975, 34.47427399708504], [-77.44672963598458, 34.4753804582293], [-77.44648616664267, 34.475678768816], [-77.44630476908144, 34.47603435857696], [-77.44600029939349, 34.476166919883454], [-77.44505782443622, 34.47617269578093], [-77.44394680391876, 34.476589793468705], [-77.44360820679807, 34.4766562727618], [-77.44347705364021, 34.4767870099266], [-77.44249361496716, 34.47730269572878], [-77.44237302099702, 34.4776740159197], [-77.44184826366907, 34.47783394373855], [-77.44119596965773, 34.47786013575115], [-77.44108670693394, 34.47789375709519], [-77.44059132032268, 34.47803825152766], [-77.43851274533974, 34.47832838325478], [-77.43788263299497, 34.47862593045528], [-77.4375857826823, 34.47896773699741], [-77.43618711201077, 34.47967243601886], [-77.43577843981726, 34.479979516458435], [-77.43534488021818, 34.480204528181304], [-77.43390170529477, 34.48116402860587], [-77.43342333605658, 34.48121110459232], [-77.43277003907704, 34.48142424442086], [-77.43187611152679, 34.481647180628315], [-77.4313709816621, 34.481757420446726], [-77.43030639966025, 34.48207229421799], [-77.42885774505763, 34.48241493733188], [-77.42587798982812, 34.48377452664171], [-77.42509534979838, 34.484291891453886], [-77.42440219689108, 34.48505024953386], [-77.4243221753596, 34.485104300557474], [-77.42422582302119, 34.485175820650426], [-77.42295209995996, 34.485626443330496], [-77.42241841616298, 34.48629996878273], [-77.42189616392785, 34.48650642750728], [-77.42063607611914, 34.486876980945944], [-77.41993514604941, 34.48752412979689], [-77.41954457118906, 34.48775690230781], [-77.41822200664936, 34.48807983400873], [-77.4179739606039, 34.48877494395652], [-77.41762957657022, 34.488980144190705], [-77.41727258530257, 34.48929931842873], [-77.4169839991605, 34.48939986843622], [-77.4165763301295, 34.489656358968126], [-77.41607296873754, 34.48983746984875], [-77.41585137945097, 34.490017483439644], [-77.41524807921635, 34.490198833088684], [-77.41486837219402, 34.49035741426149], [-77.41395936676896, 34.49076053375154], [-77.41299092149524, 34.4912222218055], [-77.41272885324427, 34.49135053335764], [-77.41248869381332, 34.49150562416867], [-77.41112609781146, 34.49175948170073], [-77.41000979860601, 34.49229033532401], [-77.40872140623446, 34.49296685696983], [-77.40766851849597, 34.493579702366766], [-77.40749610783243, 34.493643112585424], [-77.40637319078095, 34.494201706165235], [-77.40492977903308, 34.49474418603755], [-77.40238782106701, 34.495842864401226], [-77.40199565612906, 34.496045396102566], [-77.40176150183663, 34.49606162700963], [-77.40144611909659, 34.496174091952966], [-77.3985945719376, 34.497314346265256], [-77.39756720478942, 34.49786426475448], [-77.3955626333323, 34.49878704435797], [-77.39542092254122, 34.49886151472275], [-77.3951616326706, 34.49900471660266], [-77.39336742997065, 34.499794326323396], [-77.39225139295823, 34.50022028089566], [-77.38927089833709, 34.501536383796775], [-77.38895205413037, 34.5016194556437], [-77.38870405707542, 34.5017355997721], [-77.38687010900978, 34.502593175920424], [-77.38590937049722, 34.50305458465424], [-77.38481407059834, 34.50357948172329], [-77.38283937764585, 34.504540362579355], [-77.38275019597748, 34.50456199292886], [-77.3827358855531, 34.504573579056625], [-77.382663442211, 34.50461042028001], [-77.3805450598201, 34.50547574078977], [-77.37957192910672, 34.50566686907034], [-77.3776623966638, 34.50646704858879], [-77.37640623720769, 34.506832695722615], [-77.37504627985712, 34.5067734926759], [-77.37325585591445, 34.507321100078954], [-77.3708182923474, 34.508232326539115], [-77.37021523430353, 34.508396096471586], [-77.370091717056, 34.50841159640622], [-77.36986774884755, 34.50850769915256], [-77.36693807424858, 34.509038181664046], [-77.36560423719979, 34.51012568300694], [-77.3648949250901, 34.51104456345054], [-77.36456926152772, 34.51160886948004], [-77.36373093307462, 34.512003453643864], [-77.36248494094846, 34.51258129534369], [-77.36055915005502, 34.513414021325325], [-77.36001629747368, 34.51370599545678], [-77.35837462964778, 34.514554548349864], [-77.35738772130962, 34.51480424086304], [-77.35582812493959, 34.51527534306423], [-77.35423047869634, 34.51557188580804], [-77.35320156604112, 34.516010387548945], [-77.34875167265099, 34.51676998186652], [-77.3479197391342, 34.51693620845599], [-77.34705848966101, 34.51699384997121], [-77.34477286325165, 34.5172465378829], [-77.34386371979733, 34.5174255031741], [-77.34266149816547, 34.51751763834112], [-77.34162159488821, 34.517745603237195], [-77.34064182698201, 34.51784387586408], [-77.34004767170916, 34.51792045719621], [-77.3393292646881, 34.518108600926666], [-77.33847025237617, 34.51824596733968], [-77.33798531850015, 34.518537511502686], [-77.33727107596152, 34.51893853258999], [-77.33702345843325, 34.519062741229966], [-77.33687976460277, 34.51913489630383], [-77.33587202478493, 34.51949564706423], [-77.3352947225965, 34.51978747500098], [-77.3343345996159, 34.52034014864641], [-77.33396514486954, 34.5205543015871], [-77.33370531353562, 34.520627100915604], [-77.33336166085972, 34.520693464440036], [-77.33248932076548, 34.520829219978474], [-77.33212900967092, 34.52090106174208], [-77.33156818483508, 34.52108511896991], [-77.331135388733, 34.520800199033516], [-77.33125154035078, 34.52035941352717], [-77.33056613062152, 34.52059697495212], [-77.33001386470684, 34.520617268418576], [-77.32899417592273, 34.520683425128595], [-77.32836178274079, 34.52061516022907], [-77.32610932344086, 34.5207028844168], [-77.32585412414075, 34.52069014026683], [-77.32557464567648, 34.520793199549686], [-77.32312438835868, 34.52123633907152], [-77.32268422591376, 34.52197537628744], [-77.32204377419345, 34.52153373901308], [-77.31677057126082, 34.522116044464994], [-77.31639305850166, 34.52245571042177], [-77.31382800017629, 34.52465751808805], [-77.31318244365545, 34.525467320148636], [-77.31290757752608, 34.52458329550693], [-77.31254312730167, 34.52445127699489], [-77.31160401347253, 34.52357396492074], [-77.31392073137391, 34.522294892026984], [-77.31047679116081, 34.522561157393525], [-77.31012650359962, 34.521884017678865], [-77.30904802784897, 34.519781270587806], [-77.3055330744154, 34.51958247476455], [-77.30391787585202, 34.518856618968286], [-77.30305488535588, 34.51993826185939], [-77.30049618579156, 34.52213645660284], [-77.29930280048957, 34.52439369914927], [-77.29859929241451, 34.525187493909286], [-77.29819121829095, 34.526511693957396], [-77.29802040734049, 34.52689312094367], [-77.29840042892233, 34.527832357756154], [-77.29880157226245, 34.52838254872667], [-77.29984864287636, 34.52977180254148], [-77.30022931872524, 34.53030970482656], [-77.30049945094397, 34.530658581361905], [-77.30115841947372, 34.53153732056713], [-77.30144955221039, 34.5319194333838], [-77.30199173836223, 34.53280382859582], [-77.30200575356947, 34.53282677222089], [-77.30211009160988, 34.53286149791643], [-77.30358573269109, 34.532952066801855], [-77.30428599078212, 34.53193405276287], [-77.30441032062974, 34.531494451970765], [-77.30678657931931, 34.53038278210234], [-77.30826445204609, 34.52989723762507], [-77.30849095919831, 34.529853429168845], [-77.30993939111792, 34.529850082783895], [-77.31175461244129, 34.52931567113642], [-77.31308946690314, 34.52943206557815], [-77.31450019516996, 34.530045624874624], [-77.31487911081743, 34.530813334914484], [-77.31455343410616, 34.53296106152756], [-77.31355737185447, 34.53409797653233], [-77.31125138108114, 34.535327589081625], [-77.3097894283943, 34.53623482181103], [-77.30784270608129, 34.53764218285002], [-77.30727299315167, 34.53891734994838], [-77.30697029467038, 34.53920479174552], [-77.30657308856225, 34.539457815678794], [-77.3050837220482, 34.540150216266824], [-77.3049211806875, 34.54019413210428], [-77.3033973402352, 34.54094753549669], [-77.30055039881154, 34.541647239897635], [-77.29987831662329, 34.541712522328666], [-77.29707490929981, 34.54268227414917], [-77.29539152526475, 34.5435017270558], [-77.29076717026497, 34.54378529643367], [-77.2877530332316, 34.54466537731337], [-77.28720296097036, 34.54493035459747], [-77.28416190195671, 34.54843043434962], [-77.28392556075214, 34.5486105494082], [-77.28369976701171, 34.54886667036504], [-77.28142917431171, 34.55163522539148], [-77.28085804673493, 34.552307184103576], [-77.28067335783443, 34.552468176109464], [-77.27749997310383, 34.555418289897815], [-77.27656132987812, 34.55590716418497], [-77.2713385908754, 34.558927042982155], [-77.27091611707299, 34.55909905593255], [-77.27052573497859, 34.55937032884886], [-77.26965037183285, 34.560054844149576], [-77.26791093656415, 34.562703158559394], [-77.267596974744, 34.56307764844036], [-77.26753193180794, 34.56315641947124], [-77.26643147571849, 34.564689448293024], [-77.26615591529661, 34.56484964465714], [-77.26552679548239, 34.5653119154627], [-77.26367640940387, 34.566539932692784], [-77.26301350512213, 34.56690691762678], [-77.26181405563219, 34.567796524428424], [-77.25976412047558, 34.56927443655625], [-77.25914725535299, 34.5699542353979], [-77.258098604151, 34.57103373841348], [-77.257343591641, 34.57169762788661], [-77.25714677594806, 34.57220431861017], [-77.25586717169234, 34.57333911155226], [-77.2557622181034, 34.57345850896316], [-77.2556439843849, 34.57349661072698], [-77.25552688954963, 34.57356047466966], [-77.25341024256699, 34.57413863775707], [-77.25114544666042, 34.575556197790775], [-77.249987006471, 34.57635175695719], [-77.2495247240912, 34.57673801673575], [-77.24816482023431, 34.577692936048706], [-77.24724536362781, 34.57844382133794], [-77.24665037726906, 34.57864200277818], [-77.24594894767407, 34.579161958866806], [-77.24399611570018, 34.58007314689925], [-77.2429541204204, 34.580612355062634], [-77.24150297273749, 34.58128382996934], [-77.24081991040966, 34.58170816743953], [-77.2389253096625, 34.5822868404819], [-77.23721356925424, 34.58330919248705], [-77.23706130758872, 34.58339657792407], [-77.23522304715895, 34.584251935578244], [-77.2327457252558, 34.5852596466177], [-77.23124472027943, 34.58597142117286], [-77.23043504746377, 34.586545220656575], [-77.2282531658368, 34.587471740404595], [-77.22726849218081, 34.58769280231706], [-77.22447722009142, 34.58826814052661], [-77.22251871747912, 34.5887257522358], [-77.2217511549548, 34.58963044881725], [-77.22074952565286, 34.59089224260137], [-77.22024033371495, 34.59139656175396], [-77.22002595228636, 34.59176748442716], [-77.21918473603472, 34.593198628363574], [-77.21838083881212, 34.59471712389823], [-77.21807832628333, 34.59529450684199], [-77.214906467198, 34.59663145927298], [-77.21515696159427, 34.59795499583356], [-77.21462191450519, 34.59906183269917], [-77.21345988164742, 34.60028808732168], [-77.21250878671164, 34.600858741785316], [-77.21097847132673, 34.60159845081918], [-77.20860196140006, 34.60264231188999], [-77.2046671115952, 34.603363713475304], [-77.20373356275802, 34.603569972746314], [-77.20311215921018, 34.60380716922209], [-77.1972162304516, 34.605569787608545], [-77.19517864828788, 34.60614707352006], [-77.19488976120572, 34.60622008791677], [-77.19462958434042, 34.60634024644111], [-77.1939637209861, 34.6067855797756], [-77.19131371567154, 34.608298202362505], [-77.18866491637336, 34.60876592473666], [-77.18700761765206, 34.6089539435833], [-77.18629552797778, 34.6090923025595], [-77.18603846663318, 34.60943066675969], [-77.18461038928724, 34.6102809784648], [-77.18008923544531, 34.6127300885914], [-77.17924384421791, 34.61333812512291], [-77.1717338489276, 34.615838296101515], [-77.17069651155823, 34.61625225249662], [-77.16967842754836, 34.616508345459366], [-77.16249278954537, 34.61947240005365]], [[-77.32424358751425, 34.522430539132976], [-77.32452413769668, 34.522729880647724], [-77.324888474238, 34.52308933358366], [-77.32447356479565, 34.523556582356136], [-77.32500995159621, 34.5232296441527], [-77.32538748955183, 34.523585045148145], [-77.32499305484028, 34.523954501309674], [-77.32432395106278, 34.52380806980703], [-77.32421190761556, 34.52378902884395], [-77.32416351643298, 34.5237911191811], [-77.32404441220093, 34.523671909433574], [-77.32333697194943, 34.522900503899834]], [[-77.34506203165425, 34.53427877175881], [-77.34514748852074, 34.53420824203063], [-77.34513935908313, 34.53419221717133], [-77.34516781638357, 34.53415374383684], [-77.34521476822448, 34.53416905832546], [-77.34526514693759, 34.53418868229478], [-77.34526623828991, 34.53419044913181], [-77.34526585460046, 34.534191210401524], [-77.34526507490001, 34.534191805760535], [-77.34518036268965, 34.53421217712494], [-77.34516625550208, 34.53422141839512], [-77.34507314807115, 34.534284183070376], [-77.3450656785624, 34.53432722498737], [-77.34505683242998, 34.53428856457524]], [[-77.40015400719616, 34.578345783929535], [-77.39978700825617, 34.57866838199321], [-77.39968534268385, 34.57872843525134], [-77.39958761444782, 34.57885208637987], [-77.39949646957709, 34.57897674794027], [-77.39939298292485, 34.57907134437352], [-77.39938242340035, 34.5790826029445], [-77.39935686287458, 34.57909766922451], [-77.39925282886882, 34.579173946502706], [-77.39919597236265, 34.57917729518485], [-77.39915755425321, 34.57916782576001], [-77.3990974693584, 34.57916507440103], [-77.39907063546875, 34.57916788405308], [-77.3990482171216, 34.57917828210317], [-77.39903582720562, 34.5791837125363], [-77.39902444305054, 34.579198705798404], [-77.39899896401397, 34.579213353431925], [-77.39895904369718, 34.57921819753959], [-77.39893098607929, 34.5792323682665], [-77.39890045903661, 34.57924961581558], [-77.39888524350008, 34.579255466916536], [-77.39882345059956, 34.57928077820848], [-77.39880660343368, 34.5792882192062], [-77.39880195373466, 34.5792915515347], [-77.39879615099981, 34.57929096998607], [-77.3987527012903, 34.579306683321924], [-77.39874392487057, 34.57930171001292], [-77.39872807544782, 34.57930509286799], [-77.39872043540458, 34.57930387453108], [-77.39871107030038, 34.57930520495476], [-77.39870344928744, 34.579310990441726], [-77.39868791687303, 34.579326869687975], [-77.39868472928067, 34.57933369461101], [-77.39867882196474, 34.57934393185853], [-77.39865632901068, 34.579357963198], [-77.39865477574014, 34.5793588126599], [-77.3986541953869, 34.57935915279919], [-77.39865372127592, 34.57935885035117], [-77.39864877743273, 34.57935905277792], [-77.39862956967065, 34.57935431617885], [-77.3986272523247, 34.57935966170493], [-77.39861730212812, 34.579363594189786], [-77.39860778260513, 34.579368027390494], [-77.39860494310548, 34.579368961093365], [-77.39856620085187, 34.5793822926438], [-77.39854281910895, 34.57938821046187], [-77.39850643822503, 34.57939482490474], [-77.39847702441263, 34.57940521117996], [-77.3984376147639, 34.579410608900055], [-77.39840793388322, 34.579407545172124], [-77.39837936843522, 34.57942021558408], [-77.39831706960325, 34.5794517502212], [-77.39830942802057, 34.57945174185895], [-77.3982299605775, 34.57945203989107], [-77.39821092438939, 34.57944759767283], [-77.39817170617161, 34.57943869735738], [-77.39791781824272, 34.579408855368584], [-77.39791624313918, 34.5792002666614], [-77.39794141324381, 34.57908961105128], [-77.3980163948552, 34.578869144860455], [-77.39801820338978, 34.57886624532908], [-77.39821096129444, 34.57868889327365], [-77.39825204091704, 34.578664484939125], [-77.39833723580459, 34.57860792806166], [-77.39840797295075, 34.578564466056434], [-77.39846215226211, 34.57853152439808], [-77.39850647845637, 34.578504412770414], [-77.39852283910211, 34.578492634242934], [-77.39858545613224, 34.5784659703878], [-77.39860041194503, 34.578458886667555], [-77.39860498330866, 34.578455854259914], [-77.39861394850001, 34.57845219891145], [-77.39863819890778, 34.57844108006145], [-77.39865423517881, 34.57844327366575], [-77.39867784083631, 34.57842500474964], [-77.39868090228086, 34.578423464126374], [-77.39870348723426, 34.57842603486216], [-77.39872548262485, 34.578422065107375], [-77.39877596340364, 34.578410436767086], [-77.39880199100833, 34.57839805754893], [-77.39886071312498, 34.5783833875329], [-77.39890049503691, 34.57836211958188], [-77.39894518805974, 34.5783560818901], [-77.39894974649866, 34.5783570093906], [-77.39895188844105, 34.578357719057436], [-77.39895887384588, 34.57835901926694], [-77.39897437197574, 34.57836074215331], [-77.39899667723523, 34.57835606521073], [-77.39899899761944, 34.57836032916034], [-77.3990008714002, 34.5783549783802], [-77.3990073892902, 34.57835201901463], [-77.39902892828927, 34.578328090498545], [-77.39904825022782, 34.578325700516096], [-77.39906656373779, 34.578323746713544], [-77.39909750166582, 34.578320364616665], [-77.39918287190038, 34.57828777908596], [-77.39919600538252, 34.5782865763117], [-77.39920659299732, 34.57828161285042], [-77.3992421230594, 34.5782650774548], [-77.39929450932127, 34.57824432809547], [-77.39931240972938, 34.57823564700885], [-77.39936159164846, 34.57821398056832], [-77.39939301325026, 34.57819942260572], [-77.39939981452272, 34.5781965808515], [-77.39942660739379, 34.578185386062756], [-77.39943746216655, 34.578178644260866], [-77.39943446028093, 34.578157717074504], [-77.39942879086931, 34.578146519956164], [-77.39942543148766, 34.578132483993734], [-77.39942937266437, 34.57811802047135], [-77.39943237456082, 34.57808907156229], [-77.39943263563376, 34.57807837274166], [-77.39943832039047, 34.57807329780707], [-77.39944226885005, 34.57807060366519], [-77.3994496325884, 34.578067985305736], [-77.39948243766415, 34.578061399474876], [-77.39949152037289, 34.578057334723745], [-77.39951280728728, 34.57806680448141], [-77.39952696506319, 34.57807963820278], [-77.39954077119464, 34.578064525939276], [-77.39954252152539, 34.578064403003054], [-77.3995437663986, 34.578059109899726], [-77.3995050563996, 34.578014851135556], [-77.39952600993075, 34.57794284509537], [-77.39959002808784, 34.577887502205485], [-77.39969123779707, 34.57788476023535], [-77.39978703388377, 34.577823700095344], [-77.39990869384624, 34.577825508936996], [-77.40007984040389, 34.57793191172264], [-77.40013199773605, 34.5779772292834], [-77.4001677214017, 34.57832946598539]], [[-77.34468280339773, 34.53390802344895], [-77.34468240061348, 34.53390793274811], [-77.34462189718826, 34.53389362615172], [-77.34459818368035, 34.533866680335656], [-77.34460450699424, 34.53385793557938], [-77.34464056663302, 34.53382521363804], [-77.34474785961172, 34.53377610428526], [-77.34477343416872, 34.53376569581362], [-77.34478436904621, 34.53375936026286], [-77.34482250802573, 34.53374182924131], [-77.34480993728452, 34.533767172131434], [-77.34482725347483, 34.53379189458502], [-77.344837641232, 34.53388559573656], [-77.34478105898451, 34.533902843799744], [-77.34477138973556, 34.53390118281592]], [[-77.34175064355324, 34.53763938449141], [-77.34170507415033, 34.53767463454616], [-77.34169753095613, 34.53767503565758], [-77.34168864756828, 34.53766663807336], [-77.3417291062187, 34.537637883807406], [-77.341682909458, 34.53760174528151], [-77.34175106834036, 34.53762099858382], [-77.34176056763211, 34.53763335789178], [-77.34175688665863, 34.537637757447655]], [[-77.34398909405971, 34.535217155516165], [-77.34402980210204, 34.53514245963503], [-77.34410601128086, 34.535092552805835], [-77.34416590444883, 34.53504418709859], [-77.34424268996898, 34.53507288750583], [-77.34430478212768, 34.53509896198662], [-77.34433296664598, 34.53518230820132], [-77.34428614932618, 34.5352337338318], [-77.344264589267, 34.53525675164906], [-77.34420484867442, 34.53532315158562], [-77.34415849127691, 34.53536543579465], [-77.34411605589891, 34.535335927031156], [-77.34404240978616, 34.53529748701798], [-77.34399443621001, 34.53524944107849], [-77.34398044323203, 34.535233029087614]], [[-77.34580522745598, 34.53417434939358], [-77.34580658527013, 34.53417376985555], [-77.34582198232583, 34.53416744178196], [-77.34582989651271, 34.5341684954233], [-77.34583303486538, 34.53416884013238], [-77.34584076845626, 34.53416968957101], [-77.34584212201604, 34.53417029698967], [-77.34584747887514, 34.534172994875284], [-77.34585436515208, 34.534171333807045], [-77.34586441276114, 34.534172571493514], [-77.34585877717186, 34.53416709820621], [-77.3458588369171, 34.53416440038873], [-77.34585734559887, 34.534159653578534], [-77.34585747699978, 34.53415367083628], [-77.34585863030412, 34.534151818091445], [-77.34585755127844, 34.534150288873825], [-77.34585768273017, 34.534144303818884], [-77.34585781436178, 34.53413831057293], [-77.34585926662675, 34.53413642527954], [-77.34585968546341, 34.534133589620005], [-77.34586021988103, 34.534108432558874], [-77.34586723613667, 34.5341046760073], [-77.34587070137688, 34.534095085321425], [-77.34587143826292, 34.534051795486214], [-77.34595340473656, 34.53403250459525], [-77.3459556576039, 34.534034439157374], [-77.3459907560773, 34.53406457860439], [-77.34601302145384, 34.534083698091415], [-77.34602810748213, 34.53409665261543], [-77.34602453817715, 34.5341263210379], [-77.34602246612324, 34.53414354404241], [-77.34599297921223, 34.53417305676313], [-77.34597314831888, 34.534181243199114], [-77.34595152372759, 34.53421374311719], [-77.34595090454083, 34.53421467370173], [-77.34595023490405, 34.534215142848886], [-77.34590197916256, 34.534234405133056], [-77.3458854704074, 34.53422446216927], [-77.3458708434394, 34.5342156525755], [-77.3458535830116, 34.534205256883006], [-77.3458444581792, 34.53419976113257], [-77.34582644417024, 34.534188911562666], [-77.34580518689388, 34.53417610861226], [-77.3458034459751, 34.53417506008146], [-77.34579377644991, 34.534169236262414]], [[-77.3422525538053, 34.53725510443251], [-77.34234848269202, 34.53724992926898], [-77.3424657363761, 34.53721447965976], [-77.34254563230404, 34.53721228963678], [-77.34273303724034, 34.537243554261835], [-77.34262308982363, 34.53714204706243], [-77.34274627203251, 34.53702350338511], [-77.34276091627807, 34.53700872932461], [-77.34288623147108, 34.53701699836705], [-77.34291763845681, 34.53703846698819], [-77.34292133690161, 34.53705077284903], [-77.34291067593664, 34.53708163116164], [-77.34288860532772, 34.53710384864191], [-77.34284141906201, 34.53715311397468], [-77.34281465556515, 34.53715908729554], [-77.34274792088098, 34.53724231827671], [-77.3427427248828, 34.537247245346315], [-77.34274197193665, 34.537247903609654], [-77.34274107206106, 34.53724868572566], [-77.34265333636237, 34.53732895465785], [-77.34255459340409, 34.53739672018019], [-77.34254762023637, 34.537401691044444], [-77.34249950244201, 34.53743027471327], [-77.34234304423285, 34.537485391645376], [-77.3422567343029, 34.53743957072808], [-77.34218768715607, 34.537424854052226], [-77.34217567119478, 34.537344826416074], [-77.3421796197243, 34.53732825507681], [-77.34224422212938, 34.53726140823761], [-77.3422485654407, 34.537256112623744]], [[-77.34499162887569, 34.532889816631226], [-77.34499064293924, 34.53288430186333], [-77.3449887245659, 34.532876924404945], [-77.34499715289559, 34.532760955289916], [-77.34499112890329, 34.532753898203424], [-77.3449774275058, 34.53270258863317], [-77.34495055320549, 34.53267955050754], [-77.34493903766878, 34.53266644201546], [-77.3449604453066, 34.5326720652922], [-77.34500538191536, 34.532686788082415], [-77.34502763898378, 34.5326953637196], [-77.34501381913574, 34.532752351801236], [-77.34510241375612, 34.532734598893875], [-77.34514584123798, 34.53270501495571], [-77.34515419517645, 34.53270646792281], [-77.34516112564027, 34.53270675873637], [-77.34520088399405, 34.53272005085574], [-77.3452075318427, 34.532726445623936], [-77.3452053705787, 34.53273099475237], [-77.34521006425497, 34.53273627837914], [-77.34522452689743, 34.532773922641255], [-77.34526290417419, 34.5327839210928], [-77.34526326458956, 34.532804947232904], [-77.34529115338775, 34.53284106118066], [-77.34528417199064, 34.5328965499551], [-77.34528199912563, 34.53290358339467], [-77.3452750265433, 34.53291672115861], [-77.34525360122505, 34.532968874536564], [-77.34524974639696, 34.53300398820283], [-77.34519325396154, 34.533050860474496], [-77.3451538554142, 34.53308150569855], [-77.3450577461935, 34.53308113429869], [-77.345007545971, 34.53301028320232], [-77.34501785093376, 34.53300279677694], [-77.34500278335601, 34.533002050008676], [-77.34499890876808, 34.53296741078922]], [[-77.34512921315475, 34.53314773024163], [-77.34511549913077, 34.53318703065132], [-77.34509156453768, 34.53320495664177], [-77.34507537891338, 34.533188465777954], [-77.3450742020195, 34.53316692752426]], [[-77.34899613928098, 34.551167616717436], [-77.34899271652532, 34.55115958079185], [-77.34899646118362, 34.551153627830175], [-77.34903274102616, 34.55111467949374], [-77.34905541539437, 34.55111436090526], [-77.34908196368426, 34.55111613545564], [-77.34909545918852, 34.551117037527], [-77.34912319592459, 34.55112341787829], [-77.3491442787936, 34.551128267620626], [-77.34914897117184, 34.55113408615562], [-77.3491501052663, 34.551136932372486], [-77.34915449782252, 34.551142882031755], [-77.34916236003721, 34.55115412592174], [-77.34916805889118, 34.55116125031974], [-77.34916993934937, 34.55116347631031], [-77.3491709221326, 34.55116453938237], [-77.34917789117196, 34.55117254485711], [-77.34919200415547, 34.55118705548603], [-77.34919575969224, 34.55118919533834], [-77.3491963662049, 34.55119148052496], [-77.34919618922954, 34.551194218360585], [-77.34920161752825, 34.55121493306535], [-77.34920159577956, 34.55122133057526], [-77.34921278082324, 34.55123334035959], [-77.34921406230418, 34.55123568714074], [-77.34921927173937, 34.551249389561626], [-77.34922839131622, 34.551271984913335], [-77.34918975254826, 34.55128491338607], [-77.34915689071295, 34.55127894293459], [-77.34914083232489, 34.55127805195461], [-77.34910970515162, 34.55127632488949], [-77.3490917332789, 34.551278962285224], [-77.3490762917963, 34.551279584195484], [-77.34906110432368, 34.55127215009748], [-77.34902383901768, 34.55125893023663], [-77.34901515890212, 34.55123031581739], [-77.34901145027513, 34.55121809017169], [-77.3490243448177, 34.55119820813117]], [[-77.39871235748954, 34.57818230179515], [-77.39874777652105, 34.578182549413356], [-77.39875274860248, 34.57819020757495], [-77.39879070986245, 34.57822406823731], [-77.39875274551744, 34.57826236376656], [-77.39873965916208, 34.5782704047976], [-77.3987183276949, 34.57827159930669], [-77.39870349387853, 34.57827242996194], [-77.39869454808908, 34.57826447900491], [-77.3986846693977, 34.57825965384325], [-77.39867886929181, 34.57824908878544], [-77.39867411979618, 34.578240890689116], [-77.3986717790099, 34.57823358741598], [-77.39866909404208, 34.5782256146299], [-77.39866715844084, 34.57821535927225], [-77.39866377219815, 34.578199577321676], [-77.3986716381649, 34.578188177060625], [-77.39867887221692, 34.57818207412526], [-77.39870205299954, 34.57818223173566], [-77.39870349781798, 34.57818154490817]], [[-77.34398054447018, 34.53031921731686], [-77.34398684000547, 34.530331615339506], [-77.34399278370122, 34.53033486513305], [-77.34401568370907, 34.53033995772315], [-77.34402341004548, 34.53034575970242], [-77.34402572979673, 34.530347440018055], [-77.34402447725584, 34.53035826793003], [-77.34402448979019, 34.5303609055606], [-77.34401910133076, 34.53036341315304], [-77.3440162937523, 34.53036471969741], [-77.34401460275066, 34.53036615345454], [-77.34401183296681, 34.5303676370933], [-77.34401003146975, 34.53037031039499], [-77.34400950734583, 34.53037071190697], [-77.3440066696038, 34.53037288579635], [-77.34400440405835, 34.530378661097636], [-77.34400407892127, 34.530379143579346], [-77.34400395543551, 34.53037932682398], [-77.34400368071104, 34.530379734496684], [-77.34399103061926, 34.53038878065357], [-77.3439789650152, 34.53038765007585], [-77.34397654803496, 34.53038310483409], [-77.34397141633683, 34.53037345444124], [-77.34396898975132, 34.530368891132596], [-77.34396639931487, 34.53034708261966], [-77.34396346027569, 34.53033908430051]], [[-77.39941100610162, 34.57806822580032], [-77.3994089743389, 34.578064592734535], [-77.39940533077376, 34.57806409664563], [-77.39940290306956, 34.578062761043974], [-77.39940089542193, 34.57806119630163], [-77.3993991745391, 34.57805985506105], [-77.39939355800503, 34.57805747550366], [-77.3993991747625, 34.57805349554139], [-77.39940050059568, 34.5780550449923], [-77.39940225296625, 34.57805314414675], [-77.39940229163945, 34.57805293998292], [-77.39940526106078, 34.57805254540777], [-77.3994053311796, 34.57805251909085], [-77.3994053871693, 34.57805251198674], [-77.39940680254574, 34.57805232041602], [-77.39940687028157, 34.578052339470446], [-77.39940720415713, 34.57805265893285], [-77.3994072550441, 34.5780526649025], [-77.3994073385602, 34.57805267469993], [-77.39940763981909, 34.57805263422818], [-77.39940778775389, 34.57805277509584], [-77.39940797326594, 34.57805290774399], [-77.39940802458176, 34.5780529554749], [-77.39940817105861, 34.57805313598017], [-77.39940819162298, 34.57805329085955], [-77.39940821695379, 34.57805338154409], [-77.39940828748988, 34.578053408329154], [-77.3994082885221, 34.57805348418918], [-77.39940825938109, 34.5780535341184], [-77.39940828303286, 34.578053621078524], [-77.39940830239962, 34.57805368949825], [-77.39940831313302, 34.57805378855073], [-77.39940831375047, 34.57805379085071], [-77.39940831377815, 34.578053792207456], [-77.39940834838043, 34.57805389017502], [-77.39940835028361, 34.57805403359796], [-77.3994083597478, 34.5780540958463], [-77.39940837674877, 34.57805447293701], [-77.39940837996369, 34.578054507552274], [-77.39940840929029, 34.57805482331263], [-77.39940883352824, 34.57805481420388], [-77.39940932192613, 34.578055200879575], [-77.39940954923802, 34.57805639651923], [-77.39940987979489, 34.57805685271052], [-77.39941139585865, 34.578058218609364], [-77.39941148732372, 34.57805934053931], [-77.39941271927111, 34.57806001709211], [-77.39941463362715, 34.57806106840553], [-77.39941764357832, 34.578063026819066], [-77.3994207414494, 34.5780634828492], [-77.39942494457027, 34.57806621457455], [-77.39941764312252, 34.5780760880991]], [[-77.39937918996164, 34.578044647207896], [-77.3993808616605, 34.57804587169921], [-77.39938106227382, 34.578046010613825], [-77.39938566558754, 34.57805069102757], [-77.39938042296932, 34.57804640770172]], [[-77.3440179726442, 34.53036980800315], [-77.34401790906432, 34.53036962478368], [-77.34401809974239, 34.530369513917364], [-77.3440182725094, 34.53036958109779], [-77.34401833076802, 34.5303698300787]], [[-77.3440176410687, 34.53036906342942], [-77.34401772923357, 34.530368958488005], [-77.34401785857457, 34.53036903213375], [-77.34401779074621, 34.53036908203706], [-77.34401772511202, 34.53036913706525]], [[-77.30488900656508, 34.52871671328778], [-77.30465855656382, 34.52814027568283], [-77.30589207673593, 34.52795826334247], [-77.30549551240442, 34.52854809762149]], [[-77.34967311015626, 34.55160762380555], [-77.34984184975558, 34.551632604320936], [-77.34986875286297, 34.55163676981193], [-77.34987647168734, 34.5516396033975], [-77.34988222766283, 34.55164362875411], [-77.34988396249584, 34.55165309718994], [-77.34995323310781, 34.55175582100754], [-77.34997916282015, 34.55180326638755], [-77.34998805220164, 34.55187322066416], [-77.35008604423147, 34.55196375934369], [-77.35009195889825, 34.55198067825584], [-77.35011185520837, 34.55201237650295], [-77.35011518411422, 34.55209974633935], [-77.35015013949456, 34.552156624554385], [-77.35024736114272, 34.552246354517386], [-77.35027658522081, 34.552302315503745], [-77.35031596277132, 34.55231567351382], [-77.35031329062976, 34.55235877997399], [-77.35036073744274, 34.552480005980975], [-77.35044218042214, 34.552542330510406], [-77.35050218228459, 34.552614348611556], [-77.35059997261048, 34.552764443683024], [-77.35062743664986, 34.5527923693485], [-77.35087744793438, 34.552813142526574], [-77.35101787968212, 34.552887574696754], [-77.35113287504475, 34.55286124588925], [-77.35125376246387, 34.55281641601278], [-77.35127504462, 34.55278970142495], [-77.35128639274164, 34.552745092375815], [-77.3513061334988, 34.55271770911276], [-77.35128472343388, 34.55266589777247], [-77.35122094205781, 34.55259404611391], [-77.35115960551639, 34.55259965911846], [-77.35118773000043, 34.55255744615893], [-77.35102748279974, 34.55246980027707], [-77.35101942591552, 34.55246435905621], [-77.35101847691716, 34.55245939384006], [-77.35100598638329, 34.552447467394714], [-77.3509494117289, 34.55239665182652], [-77.35089890359714, 34.55235419161416], [-77.35088312951979, 34.55232612092126], [-77.3508355479734, 34.55227926687187], [-77.35079439524995, 34.55224682127848], [-77.35078837004794, 34.55221738383363], [-77.35076476649385, 34.55217431448469], [-77.35075796872741, 34.5521296529386], [-77.35074020589632, 34.5520697559218], [-77.3507216150401, 34.55201247406392], [-77.35069469408258, 34.55198597085804], [-77.35066542683965, 34.55189814980305], [-77.35064878547433, 34.55186380158456], [-77.350613420571, 34.55180610244254], [-77.35058000971178, 34.551788031874324], [-77.35055375242608, 34.55173064409228], [-77.35055371479807, 34.5517305961747], [-77.35049908091298, 34.55167726795623], [-77.35048779515954, 34.55165979136257], [-77.3504756106964, 34.551558235047125], [-77.35046059782617, 34.55151040155908], [-77.35039193024997, 34.551490963384545], [-77.35038971692113, 34.5514481856389], [-77.35043239337372, 34.55142320695023], [-77.35042359758648, 34.551406663363075], [-77.35037771117801, 34.551388708127426], [-77.35037308059415, 34.55138454506095], [-77.35036600400977, 34.55135547224212], [-77.35034558252995, 34.55133212653335], [-77.35031337733383, 34.551309037109384], [-77.35027018742022, 34.55125373194167], [-77.35024940675538, 34.5512235567528], [-77.3502024874172, 34.551151577553185], [-77.35015671967426, 34.551114484847176], [-77.35007823852939, 34.55106400946775], [-77.35003472061734, 34.55103715203319], [-77.34993430492369, 34.55105663668975], [-77.34988096916969, 34.55110564206071], [-77.3498273068958, 34.551128760727195], [-77.34973127195687, 34.55114606399865], [-77.34968352956321, 34.55115466605776], [-77.34951442351365, 34.55118945280894], [-77.34948864705346, 34.5510925270464], [-77.34948785522296, 34.55108887517729], [-77.34948801779126, 34.55108830565083], [-77.34948764715233, 34.55108766576259], [-77.34948883645191, 34.55108429427958], [-77.349549866234, 34.550993751256655], [-77.3495892809643, 34.550984809748044], [-77.34963184692168, 34.5509451974009], [-77.34964447314545, 34.55091559759055], [-77.34964243806851, 34.550913070664365], [-77.34964171750015, 34.55091212270388], [-77.34964009358791, 34.550909399568205], [-77.34962009129114, 34.55090373273664], [-77.34959123311589, 34.55089994941713], [-77.34958926080577, 34.550891472021476], [-77.34958895686195, 34.550890164319796], [-77.34954275953388, 34.55087368194481], [-77.34951187670137, 34.55088968151445], [-77.34950784131087, 34.55087123468152], [-77.34952547348679, 34.550857689145865], [-77.3495635842182, 34.55085055937193], [-77.34959256472885, 34.55084206402408], [-77.34962073640015, 34.55084195072062], [-77.34967773568192, 34.55082453138731], [-77.34969096901565, 34.55083125526155], [-77.34969899322874, 34.5508179366405], [-77.34971533613685, 34.5508107722927], [-77.34979083934664, 34.55075670949853], [-77.3498548111699, 34.5507907007727], [-77.34988246473017, 34.55079031117933], [-77.34988818898367, 34.55079174746929], [-77.34989645354636, 34.550789834046576], [-77.34997712370576, 34.55077903100358], [-77.34998665464205, 34.55077826525503], [-77.349996266914, 34.5507763097736], [-77.35003591109547, 34.55077049634073], [-77.35005372066182, 34.550773220187466], [-77.35006627514545, 34.550771917812476], [-77.35008517226213, 34.550762522021856], [-77.35009587950205, 34.55076268773636], [-77.35009370356264, 34.55075632195806], [-77.3500907108824, 34.550753429400764], [-77.35008554005566, 34.55074652991573], [-77.35004460971253, 34.55072797023877], [-77.34999072064392, 34.55070993695593], [-77.34998932819981, 34.55070945704692], [-77.34997595138292, 34.55070432795024], [-77.3498896393134, 34.5507286918336], [-77.34983253181638, 34.550707411267524], [-77.34981800217804, 34.55067358736647], [-77.34975335736394, 34.550646635870415], [-77.34976360466224, 34.550620210384366], [-77.34969622304061, 34.55060285066964], [-77.34960755657663, 34.55063627055342], [-77.34959067444412, 34.55064103388139], [-77.34949746555185, 34.5507092052761], [-77.34933017986296, 34.550621377501], [-77.34931356825726, 34.550617345238315], [-77.34930422501452, 34.55057575154528], [-77.34928774528223, 34.550516203921326], [-77.3492573753874, 34.550509443918315], [-77.34928553382164, 34.550492543086065], [-77.34930655369267, 34.550474539352315], [-77.34935544306546, 34.55046498346752], [-77.34942195723748, 34.55043473900581], [-77.34942402973539, 34.550413090399964], [-77.34945308806918, 34.550358869598114], [-77.34943239936763, 34.5503464182935], [-77.34942165856725, 34.55031040159618], [-77.34945562476165, 34.550297299337245], [-77.34947026165347, 34.55027195740328], [-77.34946276892086, 34.55026310085315], [-77.34945903300174, 34.55024649361478], [-77.34945103547922, 34.55026260132623], [-77.3494272982655, 34.550259768442444], [-77.34942721219007, 34.55025100813471], [-77.34945468565942, 34.55023622927143], [-77.34944184309884, 34.55021859390036], [-77.34942582901986, 34.55020977928854], [-77.3494108736091, 34.550206588368674], [-77.34936470589807, 34.550216616945384], [-77.34935899285605, 34.55021781033135], [-77.34932977359523, 34.55024304696497], [-77.34931510032804, 34.550256316287005], [-77.34931706392341, 34.550259502362536], [-77.34931144127943, 34.550262108620394], [-77.3493081554189, 34.55025940341951], [-77.34922939290595, 34.55027893472112], [-77.34921276279032, 34.55028486021554], [-77.34915815855176, 34.55030636569444], [-77.34911370340026, 34.55032416272414], [-77.34905232843768, 34.550332284166075], [-77.34894919497127, 34.550328868744515], [-77.3489747220226, 34.55039100124626], [-77.34898283845052, 34.55042654008282], [-77.34901277416166, 34.5504447183199], [-77.34903097344294, 34.55043076137882], [-77.34908156716189, 34.55043084093562], [-77.34909538788865, 34.55044094661969], [-77.34907368362664, 34.55045154568232], [-77.34903569529793, 34.55048013908828], [-77.34904630316365, 34.55050031754149], [-77.34901108810226, 34.550517988874304], [-77.34898671351695, 34.55053341529671], [-77.34896163306038, 34.55053438834835], [-77.34894809698177, 34.550531824464365], [-77.34892344752657, 34.5505268942704], [-77.34891306656345, 34.55051217565829], [-77.34890310888697, 34.55052982101261], [-77.34890726466736, 34.550532548449674], [-77.34891265180308, 34.55053019885246], [-77.34893028076071, 34.550541212258715], [-77.34892051821453, 34.55055269050952], [-77.34892358283207, 34.55055747738791], [-77.34892121701581, 34.55056363854831], [-77.34891175495594, 34.55056917088549], [-77.34888459882752, 34.55057986702282], [-77.34886216883851, 34.55059126375573], [-77.3488596126034, 34.55059575582493], [-77.34885495569334, 34.55059795544237], [-77.34881247497242, 34.55063443567455], [-77.34881221339342, 34.55063470863662], [-77.34881217884343, 34.55063476906115], [-77.34881165391162, 34.55066539172959], [-77.34882106995691, 34.55068827202841], [-77.34882468711697, 34.5506941188356], [-77.34882479770792, 34.5507030061262], [-77.34882670499846, 34.5507244310502], [-77.3488095437496, 34.550745405741765], [-77.34879720127968, 34.55075167296323], [-77.3487911830986, 34.55076014521494], [-77.34879473698439, 34.55076853469652], [-77.3487850791887, 34.55080787018048], [-77.34877475984197, 34.550823713665714], [-77.3487745796571, 34.5508441248744], [-77.34879691765241, 34.55087572747431], [-77.3488028552312, 34.55088087593679], [-77.34880263954543, 34.55088323422645], [-77.34882557632704, 34.55093881151609], [-77.34886627989745, 34.550955762923955], [-77.34890284449972, 34.55095637074379], [-77.34893221164548, 34.55096621869917], [-77.34893448574621, 34.55098434468599], [-77.34893949872983, 34.551007208583044], [-77.34893353897506, 34.551015083514386], [-77.3489411895373, 34.55101976543435], [-77.348950420404, 34.55102164177771], [-77.34899050625734, 34.55103203052613], [-77.34899921236111, 34.5510340702699], [-77.34901077270142, 34.55102745854458], [-77.34901165918059, 34.551034444570114], [-77.34904825967477, 34.55103540205353], [-77.34905879089577, 34.55102766227002], [-77.34906031705046, 34.55100390653856], [-77.34905983224176, 34.550990340301055], [-77.3490491991599, 34.550994573950675], [-77.34900886292323, 34.550973641772806], [-77.34905037435368, 34.55094350244756], [-77.34906677742208, 34.55094495420378], [-77.34909981635786, 34.55092767900962], [-77.34917352358825, 34.55094994684232], [-77.34917345558506, 34.55096471262868], [-77.349197066222, 34.55096705146255], [-77.3492346551504, 34.55096455263782], [-77.34926304476859, 34.55095726904278], [-77.34925186063205, 34.5509692765451], [-77.34925097347659, 34.550972493629644], [-77.34921842573797, 34.55099102776567], [-77.34919636276497, 34.550997624604705], [-77.34918701697816, 34.55100346655347], [-77.34918816965772, 34.551009044438615], [-77.34918928779298, 34.551013073492456], [-77.34919603026472, 34.55101207549272], [-77.34925003629823, 34.55102745074129], [-77.34925384070533, 34.55106079939773], [-77.34922965398654, 34.55108631110297], [-77.34923198977663, 34.55109454641266], [-77.34921628488186, 34.551113326534264], [-77.34920229849752, 34.55112942165838], [-77.3491992581433, 34.5511336156841], [-77.34919305978528, 34.55114117640757], [-77.34919210086689, 34.55113162410427], [-77.34918928237198, 34.551131294708945], [-77.34916889277955, 34.55112500888947], [-77.34916705724868, 34.55112040229011], [-77.3491637965246, 34.55111635900198], [-77.3491641601542, 34.55110430725124], [-77.34915497888237, 34.551099371008455], [-77.34914508009881, 34.551093442731556], [-77.34914061957973, 34.55109239348651], [-77.34913994457139, 34.55108057618733], [-77.34911658308452, 34.551080551079494], [-77.34912102995875, 34.55106471718811], [-77.34909673060224, 34.55106178304901], [-77.34907959026333, 34.55107538164694], [-77.34903974975018, 34.551065874045726], [-77.34899840276496, 34.55106925277338], [-77.3489597966897, 34.55107918244019], [-77.34892951920935, 34.55110746971555], [-77.34894532590738, 34.551137314575485], [-77.34892520880246, 34.55116929515821], [-77.3489344761765, 34.551191053044334], [-77.34894327115973, 34.55122790115951], [-77.34896659154543, 34.55124190389628], [-77.34897615542741, 34.55127343169158], [-77.34897933599787, 34.551283916611666], [-77.34898105742782, 34.55129129849514], [-77.34899312353456, 34.551298671740206], [-77.3490283034098, 34.551315891895754], [-77.34909094157359, 34.55131336912523], [-77.34911630970893, 34.55130964631832], [-77.34917861713434, 34.5513098594708], [-77.34918913459867, 34.55131177031996], [-77.34919651976749, 34.55130929925376], [-77.34922331882402, 34.55131001237404], [-77.34923794214346, 34.55132353000812], [-77.34925987908079, 34.551321701347135], [-77.34927207864547, 34.551355340458876], [-77.34927672673079, 34.5513635320442], [-77.34928035718687, 34.55136654721714], [-77.34927557079303, 34.55142490358721], [-77.34928440091488, 34.55143737642192], [-77.34931039634247, 34.5514644987984], [-77.34935273508425, 34.55147500462593], [-77.34938119020998, 34.551496797566664], [-77.34940867674192, 34.55151081932086], [-77.34947816043274, 34.55154835994894], [-77.34955977783304, 34.55156762075527], [-77.34957317840593, 34.55162605507285], [-77.3495738811907, 34.5516267964771], [-77.34957392502456, 34.551627151428534], [-77.34955668652323, 34.55169047608635], [-77.34952798085222, 34.551728252817725], [-77.34947188237474, 34.55182125552639], [-77.34947082670791, 34.55182463229125], [-77.34947106390833, 34.551825207974034], [-77.34947110852889, 34.5518256214521], [-77.34947163142262, 34.55183216396325], [-77.3495235911424, 34.551906592635866], [-77.34950340010506, 34.55194296509539], [-77.34950606287242, 34.55196597088786], [-77.34951089431296, 34.551972489266696], [-77.34948162096862, 34.55198512492987], [-77.3494811762377, 34.55199902323645], [-77.34951397965213, 34.55200264788354], [-77.34949698572048, 34.552023649712865], [-77.34950406082415, 34.552034677846976], [-77.34948646518619, 34.55204957818799], [-77.34948522420667, 34.55205630022808], [-77.34949590418363, 34.552066454224466], [-77.3494925646131, 34.55208359426815], [-77.34949450174526, 34.552109620560394], [-77.34949036709757, 34.55212845624544], [-77.34948914951009, 34.5521440283666], [-77.34949196817263, 34.55217187711316], [-77.34949306472048, 34.55218927326291], [-77.3494964381992, 34.55220967113856], [-77.34949711795943, 34.55222832049277], [-77.34949932886295, 34.55224957704681], [-77.34949961610741, 34.55227331351892], [-77.34949927316606, 34.55228702955456], [-77.34949788641661, 34.55231098983439], [-77.34949397895954, 34.55233266632456], [-77.34949367337103, 34.55234219871228], [-77.3494951927434, 34.552350456447314], [-77.3494942057174, 34.552357423411074], [-77.34949446841645, 34.55236395247943], [-77.34949073104984, 34.552373224728555], [-77.34950766306429, 34.552399299147915], [-77.34950974369005, 34.55239978700344], [-77.34955661851225, 34.55240465889723], [-77.34964708927706, 34.552411929404165], [-77.34964868224364, 34.552415346581164], [-77.34965458468001, 34.55241297617727], [-77.34965862383568, 34.55241278537231], [-77.34966118014339, 34.55240990166267], [-77.3496634826625, 34.552404148673475], [-77.34971722334195, 34.55234063154175], [-77.34972098981103, 34.552318941907814], [-77.34973709101708, 34.55227656721671], [-77.34973885952347, 34.5522264392595], [-77.34971838749672, 34.5521568482946], [-77.34967562309726, 34.55204848219453], [-77.3496785348689, 34.55204017285945], [-77.34967641879291, 34.55203232268203], [-77.34970764606547, 34.551974778374614], [-77.34969947464536, 34.551935897037275], [-77.34972380505813, 34.551911247748485], [-77.34970133368273, 34.551812609896395], [-77.34971993456402, 34.551789394271694], [-77.34968772401581, 34.55178241012399], [-77.34966962557687, 34.5517591075209], [-77.34962572426423, 34.551708639581626], [-77.34959510685042, 34.55168494721778], [-77.34957533668867, 34.55162710534156]], [[-77.34205040214522, 34.52884043039552], [-77.3420545254788, 34.52884032644508], [-77.34205509067723, 34.528836882702706], [-77.34201449854692, 34.528820839123696]], [[-77.34182183789316, 34.536799983540746], [-77.34166385777704, 34.53691281405706], [-77.34162738848867, 34.53695372256801], [-77.34156948773392, 34.53698477905198], [-77.34145252282752, 34.53706562510426], [-77.34140406200787, 34.53709340392987], [-77.34136957310253, 34.53714206957517], [-77.34133621373341, 34.537204765910076], [-77.34132910941021, 34.537305314831286], [-77.3413191157386, 34.537357990395506], [-77.34131545653368, 34.537452570320085], [-77.34135030076759, 34.53756402936179], [-77.3413530847369, 34.53757363020634], [-77.34137686132757, 34.53768855562734], [-77.34143526222844, 34.5377527959037], [-77.34152913227784, 34.53778906037031], [-77.34155085154256, 34.53779131941951], [-77.34155751496812, 34.53778910103221], [-77.34163778219762, 34.53777343056427], [-77.34174008373431, 34.53775377665723], [-77.34174801732054, 34.537753054849105], [-77.34175564377972, 34.53775173835508], [-77.3417699122547, 34.537754422946705], [-77.34189428011435, 34.53776751723359], [-77.34190081585814, 34.53783202080187], [-77.3419106278558, 34.537856589434774], [-77.34190618645381, 34.53787917973975], [-77.34191050462644, 34.53791781184538], [-77.34189277879432, 34.537949659363434], [-77.34189346234774, 34.537952639894755], [-77.34190719731819, 34.53797949230735], [-77.34187467685035, 34.53800559455098], [-77.34186194284683, 34.53803332510615], [-77.34185522762539, 34.53804817318513], [-77.34185441871088, 34.53805783234124], [-77.34183880869983, 34.53807117417673], [-77.34174429249113, 34.53812233866418], [-77.34173942288567, 34.53812504552251], [-77.34173701630739, 34.53812638325808], [-77.34169917871463, 34.538230659635474], [-77.34169970033824, 34.538254160663826], [-77.34169780195916, 34.538278183642255], [-77.34168212283191, 34.538317893952595], [-77.34168505371905, 34.53834798255699], [-77.34168510542781, 34.538348125050554], [-77.34169445636957, 34.53837732438046], [-77.34169774267305, 34.538398899124786], [-77.34169530617594, 34.538438406797184], [-77.34171205143151, 34.538485323785935], [-77.34169561001828, 34.538499567738256], [-77.34170409760195, 34.538514761692134], [-77.34173011164978, 34.53852806234754], [-77.34175315330029, 34.53850533196303], [-77.34175926579867, 34.53849041055], [-77.3417751174375, 34.538461028812364], [-77.34179780115028, 34.53842366237465], [-77.34181049884263, 34.53840904866941], [-77.34183173184257, 34.538377496099734], [-77.34184543725253, 34.538355604976246], [-77.34185821630004, 34.53830807849828], [-77.3418738821905, 34.538265633433745], [-77.34188805341616, 34.538227065011384], [-77.34189736379001, 34.538202936554015], [-77.3419359568559, 34.5381141589926], [-77.34194096715044, 34.53809996375271], [-77.34194232466506, 34.53809684836137], [-77.34194477482278, 34.538091325616875], [-77.34196616003754, 34.53803221477982], [-77.34197082973003, 34.53801127712455], [-77.34197327509162, 34.53800058888893], [-77.3419748450136, 34.537992256653794], [-77.34197861027481, 34.53796921903073], [-77.34198354646685, 34.53794132020384], [-77.34199226981309, 34.53790604931193], [-77.34199868478804, 34.53787966306977], [-77.34211798627166, 34.53782675924505], [-77.34213936232045, 34.53780579146467], [-77.34220776947612, 34.53773304729082], [-77.34233801074764, 34.53770332071848], [-77.34246716606083, 34.537610923057656], [-77.3426093139638, 34.53751125723196], [-77.34268290038085, 34.537467544302004], [-77.34273690715625, 34.53742904524956], [-77.3428291106744, 34.53735722689323], [-77.34287845322702, 34.5373143414095], [-77.34293701858353, 34.53726314063296], [-77.3429818487073, 34.53721284353099], [-77.34303580185323, 34.53714254117331], [-77.34311197979726, 34.53707171234234], [-77.34311510671986, 34.537056948111086], [-77.34309444032503, 34.536980135111456], [-77.34307085265064, 34.53695521966208], [-77.3429474534023, 34.53685113814454], [-77.34294791964416, 34.53684965204614], [-77.34293261619669, 34.53673028821483], [-77.34290252271023, 34.536642656642485], [-77.34288531672547, 34.536614683656275], [-77.34292041211374, 34.53658957858583], [-77.34295475939278, 34.53649480623607], [-77.34303691774554, 34.536470463632234], [-77.34295552392416, 34.53646169533766], [-77.34293790245266, 34.53637454391672], [-77.34293348820545, 34.53634754791997], [-77.34308626854818, 34.53621854443545], [-77.34315828319689, 34.5361809889299], [-77.34320239558936, 34.5361744209614], [-77.34346577483772, 34.53610987027102], [-77.3435537846741, 34.53605336021533], [-77.34374984055832, 34.53587825561926], [-77.34377117538145, 34.53576174619469], [-77.34386933400592, 34.535616244119055], [-77.34395743365624, 34.53557263880649], [-77.3439771236202, 34.53558823147621], [-77.34430124688858, 34.53555410123925], [-77.34433254035655, 34.53556065139392], [-77.34435046356045, 34.53555194196842], [-77.34435351848754, 34.5355484352193], [-77.34435416230673, 34.53554648781171], [-77.34435759380516, 34.53554169466582], [-77.34454400395214, 34.53527435339072], [-77.34462529161515, 34.535183942766594], [-77.3446479469025, 34.53513698808838], [-77.34468871849427, 34.53509062129159], [-77.34473307170808, 34.53501623928432], [-77.34473406276815, 34.53500218760438], [-77.34474041257886, 34.53499158847134], [-77.3447562818653, 34.5349768791999], [-77.3448466397204, 34.53486357961047], [-77.34489782577401, 34.534819821467565], [-77.34493838945119, 34.53474020858832], [-77.34494771311986, 34.53472662674361], [-77.34495082935786, 34.53472142621579], [-77.3449586966251, 34.53471069215433], [-77.34501685108168, 34.534629367964335], [-77.345039874616, 34.53459095599713], [-77.3450730723387, 34.53453253913874], [-77.34515804615923, 34.53445332667438], [-77.3451603092329, 34.53445121704068], [-77.34516055869027, 34.53445092965209], [-77.34516096859522, 34.53445064109585], [-77.34517266113613, 34.53444226787097], [-77.3453664379862, 34.534302755522695], [-77.3453700642343, 34.53429862552626], [-77.34537019106622, 34.53429280154214], [-77.34540907677047, 34.53423180701283], [-77.34542605582496, 34.53420758020694], [-77.34543972646725, 34.53417984836048], [-77.3454475427445, 34.53416506713701], [-77.34544134258205, 34.534152923432885], [-77.34544000590179, 34.53415085038717], [-77.34543903279452, 34.534150204680515], [-77.34542328768067, 34.534137954756105], [-77.3454186903499, 34.53413542885084], [-77.34538904430714, 34.53411227959576], [-77.34536592371668, 34.534074192152815], [-77.3453532276717, 34.534064288955264], [-77.34534011277863, 34.53405811543726], [-77.34532613183697, 34.53403474258604], [-77.34526226102597, 34.53394690764936], [-77.3453408236065, 34.533832326447595], [-77.34534391298475, 34.53379500560833], [-77.34535142052589, 34.5336892584798], [-77.34535174010512, 34.53355042291881], [-77.34536655582978, 34.533442260808826], [-77.34537726949233, 34.53332205168101], [-77.34537745613666, 34.53331828258766], [-77.34537847551658, 34.53331504505265], [-77.34541102392106, 34.53319104236152], [-77.34547201978856, 34.53311218875981], [-77.34548031690238, 34.5330027282307], [-77.34548668382823, 34.532935335692954], [-77.34549135326073, 34.532873207620185], [-77.34543014605396, 34.53279934362925], [-77.34539560113649, 34.532787354632674], [-77.3453394410121, 34.53274730525105], [-77.34529863995041, 34.532736471172626], [-77.34528041583671, 34.532731632039095], [-77.3452524848899, 34.53272421540011], [-77.34525033686458, 34.53270333505531], [-77.34525026583549, 34.53269410923947], [-77.34525026356054, 34.53269393255624], [-77.34525028758786, 34.532693760640385], [-77.34525062875765, 34.532690679358936], [-77.34525169017948, 34.53267842603969], [-77.34525096025452, 34.53267630655116], [-77.34524230963707, 34.53266996110987], [-77.34522118346192, 34.53266751446361], [-77.34521135293653, 34.53266321724105], [-77.34520239827434, 34.53265439742857], [-77.34517164729886, 34.53263292509286], [-77.34513680870535, 34.532618450273375], [-77.34510996104736, 34.532563352093646], [-77.34510927785328, 34.53256120680604], [-77.34510882586449, 34.53255978752269], [-77.34509064046517, 34.53250268357422], [-77.3450116296806, 34.53241593661586], [-77.34498649194414, 34.53241100859294], [-77.34481503528006, 34.53243005632233], [-77.34465551503673, 34.532466324787045], [-77.34465663126467, 34.532565132658576], [-77.34472359353832, 34.532609940184784], [-77.34472531248112, 34.53261645524195], [-77.3447277432644, 34.532625682490625], [-77.34473339120997, 34.53267649769075], [-77.34477249671751, 34.53277166524902], [-77.34478101681225, 34.5327920548052], [-77.34478514676478, 34.532804710952334], [-77.344804633012, 34.532880967092076], [-77.34481217754913, 34.532909981000465], [-77.34483038563106, 34.53301182665779], [-77.34483204673745, 34.53302953188558], [-77.34484613142044, 34.53305590396438], [-77.34483218177137, 34.533251814790546], [-77.34483426946456, 34.53327403172979], [-77.34484281969688, 34.533302685277974], [-77.34479408444507, 34.53333822095094], [-77.34458146976058, 34.53344152241647], [-77.3443967211722, 34.53354717994441], [-77.34434993743295, 34.533559539485324], [-77.34432131211224, 34.53359265809105], [-77.34431803722137, 34.533640854444364], [-77.34421580747417, 34.533852657892496], [-77.34426647214838, 34.53392121839679], [-77.34428249622187, 34.533965472459414], [-77.34438617340638, 34.53400430795188], [-77.34444530026497, 34.53402725152031], [-77.34453161536909, 34.534052038213815], [-77.34458105010359, 34.53406480456726], [-77.34468676163664, 34.53408589198047], [-77.34477640985826, 34.534104372945365], [-77.34484191022915, 34.53412980114504], [-77.34488352892807, 34.53417835110639], [-77.34488037385916, 34.534190343093854], [-77.34485466902618, 34.534250375154514], [-77.3448379333514, 34.5342938801453], [-77.34478020656444, 34.534383499128914], [-77.3447791488853, 34.53438946129793], [-77.34476955394122, 34.534401561981056], [-77.34469057709379, 34.53447054225296], [-77.34459947347142, 34.53453191353908], [-77.34456314325675, 34.53465690257738], [-77.34436975089918, 34.53471604332929], [-77.34414019021888, 34.53474080889928], [-77.34397650259464, 34.53474637364684], [-77.34392656442228, 34.53484380963537], [-77.34391547963874, 34.53487514675994], [-77.34386058137518, 34.53495237607415], [-77.34376603250624, 34.53514146803525], [-77.34370800367498, 34.53523420511174], [-77.3435694254512, 34.53537577417819], [-77.34351621783487, 34.53542222949645], [-77.34346833523124, 34.535614325968375], [-77.34327715354112, 34.53570144344691], [-77.34320035269036, 34.535732268892794], [-77.34316826813247, 34.53574851126886], [-77.34296999429945, 34.53586804414173], [-77.34296974405243, 34.53586840507935], [-77.3429648876551, 34.535871438921596], [-77.34276986032152, 34.536002027746505], [-77.34274432480369, 34.536022920140745], [-77.34266941634374, 34.53621899821252], [-77.34240686132576, 34.53631628822496], [-77.34237764695109, 34.53632536155883], [-77.34236973596968, 34.53632975539726], [-77.34234759796941, 34.536338494585024], [-77.34212200337114, 34.536449310585496], [-77.34208254210151, 34.53648535481736], [-77.3420207394312, 34.53652421359267], [-77.34197117698582, 34.53658958618281], [-77.34195177308393, 34.536614839201015], [-77.3419348706229, 34.53662900815604]], [[-77.34397531517891, 34.530949427063646], [-77.3439587714758, 34.531016553771565], [-77.3439211670882, 34.53107962784496], [-77.34395196679506, 34.531130252307314], [-77.34398909745123, 34.53119226348591], [-77.34401090741942, 34.53121844864957], [-77.34405445840534, 34.53136856297892], [-77.34407074373024, 34.53141451697648], [-77.3440697955121, 34.531425471924344], [-77.34407306394026, 34.53143759949391], [-77.34410522842325, 34.53150909577441], [-77.34412564460042, 34.531539845865886], [-77.34416554420012, 34.531584128593614], [-77.34420284738354, 34.53165114737659], [-77.34424193339765, 34.53174952399903], [-77.3442530645671, 34.5317592493007], [-77.34424868968564, 34.53177149114599], [-77.34428340872819, 34.531884375360036], [-77.34430319245547, 34.53192222090605], [-77.34432496439258, 34.53194618994683], [-77.34438655546656, 34.531991943857456], [-77.34443158444216, 34.53203625597556], [-77.3444677239361, 34.53207951241894], [-77.34451966774205, 34.53209520065437], [-77.34459972013933, 34.53219076976478], [-77.34461398385818, 34.53220403965394], [-77.34461540329269, 34.53220911233286], [-77.34462362880292, 34.53221931269086], [-77.3446486747741, 34.53221460108639], [-77.34482345280755, 34.532065179814246], [-77.34482901813394, 34.53205068896791], [-77.34482655159502, 34.53204933912164], [-77.34482388824537, 34.53204630480561], [-77.34473248406056, 34.531942169262884], [-77.34469925724156, 34.53190431435315], [-77.34468534429516, 34.531887747237974], [-77.34466218886547, 34.53184858900141], [-77.34465152185906, 34.53183140896459], [-77.3446333089159, 34.531799750005916], [-77.3445802045782, 34.53175305333579], [-77.34456185907085, 34.531675550690466], [-77.34454267572997, 34.53160225083148], [-77.34453250510633, 34.53154780042446], [-77.34450082819485, 34.53148586244641], [-77.34448509381589, 34.531389786486514], [-77.3444845703493, 34.5313657919207], [-77.34444842911932, 34.531306237436304], [-77.34437279080987, 34.5311859619524], [-77.34435010690731, 34.53114031985029], [-77.34426462499623, 34.53103406490817], [-77.3442606310479, 34.5310294861758], [-77.34411233476096, 34.53092971221224], [-77.34410016620478, 34.5309095622669], [-77.34406547428648, 34.53089125308847], [-77.34388145886993, 34.530833709994766], [-77.34387075404231, 34.530824317646584], [-77.34385037199678, 34.53083239876671], [-77.34385340304517, 34.53084455851071], [-77.34385621685988, 34.53085281023954]], [[-77.34558959313678, 34.546676957666484], [-77.34566387145705, 34.546690991312865], [-77.34579054016776, 34.54676627542882], [-77.34585793575677, 34.54678807107407], [-77.3460234644525, 34.546793724048875], [-77.345946056636, 34.54664861418464], [-77.3459809638752, 34.54657412769332], [-77.3459098001288, 34.546490014183085], [-77.34587995675015, 34.54645727374813], [-77.34586602463526, 34.54643715624414], [-77.34583351918852, 34.546371732456734], [-77.34581009907576, 34.54635389191348], [-77.34576861160929, 34.546300165284556], [-77.34569351722614, 34.5462482557309], [-77.34567443613322, 34.54623271766557], [-77.34560353077686, 34.546183712788995], [-77.34552259695775, 34.54615043751465], [-77.34548121696554, 34.546099047422516], [-77.34538887189726, 34.54616967743592], [-77.34538163322532, 34.54623295527538], [-77.34541499066911, 34.54632635879161], [-77.34541988159691, 34.54641003557623], [-77.34542974249266, 34.54650476114826], [-77.34544744951077, 34.54654315087927], [-77.34557221248178, 34.546632938339464]], [[-77.39944049985976, 34.579297888023284], [-77.39964198056221, 34.57911255371888], [-77.39978700089407, 34.578914106566344], [-77.39983148797981, 34.57886483284886], [-77.39988689762234, 34.578808901209136], [-77.40031003418406, 34.578462285734474], [-77.40043619632397, 34.57830506385488], [-77.400359625714, 34.5781236655876], [-77.40031639651063, 34.57789777666529], [-77.40018104144491, 34.577813625952416], [-77.4000069842503, 34.57770541360726], [-77.3997870376146, 34.57770214343828], [-77.39961384976749, 34.5778125328556], [-77.39959003053728, 34.57781317816541], [-77.39952601745406, 34.57786851666901], [-77.39945656314546, 34.57787802916383], [-77.39939302426149, 34.577886731444856], [-77.39933034435957, 34.577895316026655], [-77.39925820836585, 34.57790519568421], [-77.39919601649875, 34.57799024897807], [-77.39911091691731, 34.57798002072384], [-77.39917111653656, 34.57806303615899], [-77.39909750753321, 34.57816838146305], [-77.39908139451275, 34.578164762528516], [-77.39899900567161, 34.57815792774305], [-77.39895648546556, 34.57813982474215], [-77.39894146526272, 34.57814031120852], [-77.39890050378125, 34.5781486495341], [-77.39886322281077, 34.57814763509284], [-77.39885125256846, 34.578150571891754], [-77.39880665913866, 34.57811562354613], [-77.39880447432115, 34.5781132757666], [-77.39880200306784, 34.57811189110537], [-77.39875817466415, 34.578063706409694], [-77.39875275403494, 34.57806336209503], [-77.39872656404887, 34.578045886100476], [-77.39870350436198, 34.57803087896383], [-77.39870025702558, 34.57802833201115], [-77.3986635461548, 34.57804014373318], [-77.39865425279416, 34.57804223621502], [-77.39863975905338, 34.578060097556325], [-77.39863961787881, 34.578070884927634], [-77.39863653899536, 34.57808709801205], [-77.39863267235665, 34.578110907151995], [-77.39865424969263, 34.5781126581751], [-77.39867200560872, 34.5781159188886], [-77.39869175441348, 34.57811954557384], [-77.39870350051177, 34.57811948050113], [-77.39873416969697, 34.57809303579102], [-77.39878476632008, 34.578118782408595], [-77.39870964773719, 34.57813624594764], [-77.39870349980659, 34.57813572072628], [-77.39869651678664, 34.57813904026456], [-77.3986672673641, 34.57814976526346], [-77.39865424808079, 34.57814928181337], [-77.39863992273301, 34.57816621732513], [-77.39863944700296, 34.578176873885496], [-77.39863859592143, 34.5781832734913], [-77.39864193375595, 34.57818418761959], [-77.39864405211591, 34.57819215735798], [-77.39864403659273, 34.57820316066031], [-77.39864555600926, 34.578209112713296], [-77.39864433104137, 34.57821865295924], [-77.39864881438604, 34.57822385773732], [-77.39864926342898, 34.57822584151193], [-77.39864338853235, 34.57823205687373], [-77.39864541078695, 34.57823551427895], [-77.39863243077353, 34.57824387523723], [-77.39862961826002, 34.57824535925873], [-77.39862221572707, 34.57824837974232], [-77.39861066584258, 34.5782561600051], [-77.39861331278016, 34.578276200159806], [-77.39860499106986, 34.57828114438241], [-77.39859716003131, 34.57827853077594], [-77.39859970339367, 34.57825732694876], [-77.39857231283494, 34.57827343822356], [-77.39855573992021, 34.57827964598101], [-77.39853176750772, 34.57828867027908], [-77.39850648737843, 34.578308660885654], [-77.39842502132039, 34.57836461458813], [-77.39840798179259, 34.578375145373634], [-77.398401342188, 34.578379237454854], [-77.3983911401174, 34.57838786387663], [-77.39821097093673, 34.5784920684236], [-77.39811747627887, 34.57853889111674], [-77.397955442799, 34.57866301369673], [-77.39787070260446, 34.57873316497051], [-77.39781693869136, 34.57889124491631], [-77.39775089302506, 34.579045939835126], [-77.3976809103762, 34.57912719595423], [-77.397685674517, 34.57940966669701], [-77.39764189164781, 34.57955739844211], [-77.3977042841221, 34.5796697426093], [-77.39781689889043, 34.57963900183397], [-77.39787993904372, 34.579590980001285], [-77.39810769532285, 34.57960141982606], [-77.3982109176162, 34.57958783531244], [-77.39829155716737, 34.57955055696412], [-77.39830942341123, 34.579549516185395], [-77.3983583578885, 34.57950675469704], [-77.3983592272696, 34.579506380997465], [-77.39840792936783, 34.579505715813355], [-77.39844665302931, 34.57948301356696], [-77.39846755814914, 34.57948016285306], [-77.39850643409031, 34.579487065479555], [-77.39853765795215, 34.57946180151277], [-77.39857703932313, 34.57945253911983], [-77.39860493975313, 34.57944573221134], [-77.39862278931294, 34.5794351075644], [-77.39862956657656, 34.57942563027982], [-77.39864247909105, 34.57942565510303], [-77.39865419266638, 34.579422290273506], [-77.39869715788961, 34.57940514388329], [-77.39870247075832, 34.57940332712506], [-77.39870344542882, 34.57940172658034], [-77.39870552291075, 34.57940169832908], [-77.39874210335263, 34.57938724265718], [-77.39875269815597, 34.579381410077204], [-77.39878281998949, 34.579372169938225], [-77.39880195038151, 34.57937262307774], [-77.39882122232927, 34.57935493727206], [-77.39883588810734, 34.579348558264385], [-77.39885120322077, 34.57934849292716], [-77.398866282171, 34.579343918121694], [-77.39890045581973, 34.57932963311957], [-77.39893424259913, 34.579301198351274], [-77.39897724942696, 34.57928198284213], [-77.39899896077678, 34.57929626039091], [-77.39904817932104, 34.57930138873471], [-77.39904821238494, 34.57930138301945], [-77.39904823133425, 34.57930139643832], [-77.39909746371735, 34.57931397160601], [-77.39918288063464, 34.579335060153085], [-77.39919232016567, 34.57933762723747], [-77.39919596644557, 34.57933848488748], [-77.39937345380636, 34.579328596447546], [-77.3993929739837, 34.57933155818398], [-77.3994148417887, 34.57932515383854]], [[-77.34935199937605, 34.550307551167975], [-77.34932141940212, 34.55030970734254], [-77.34931888295277, 34.55029143560481], [-77.34934897057022, 34.5502888619573]], [[-77.3441438140533, 34.53027317059406], [-77.34412780690042, 34.53025423247986], [-77.3440975121236, 34.530207526699996], [-77.34409149637024, 34.53019825215953], [-77.34409041979525, 34.53019290095341], [-77.3440818310859, 34.530182528013235], [-77.34403767737197, 34.53011213811111], [-77.34399598336145, 34.53008958526038], [-77.34399594802723, 34.53002304172381], [-77.34399704398385, 34.52996702292543], [-77.34389266149283, 34.5298751858238], [-77.34388024472581, 34.52986924864722], [-77.34386263439339, 34.52986395263], [-77.34369796167097, 34.52980747528626], [-77.34365471555421, 34.52979855997483], [-77.34364403400521, 34.529772995770315], [-77.34360141263728, 34.52973893250168], [-77.34358758016002, 34.52972868847601], [-77.34356749341521, 34.52972280371648], [-77.34354467369987, 34.529689994107976], [-77.34352065612308, 34.52966833788495], [-77.34351461473781, 34.52966322850674], [-77.34350520841946, 34.52965546055008], [-77.34345230446687, 34.52964502569444], [-77.34345435721109, 34.529677876997084], [-77.3434533528858, 34.5297095846561], [-77.34343056147908, 34.529742505579456], [-77.34343516038831, 34.52976087741909], [-77.34342965426525, 34.529803840900364], [-77.34341679804467, 34.52987613601509], [-77.34342594669893, 34.52997166654652], [-77.34339696788882, 34.53005336308435], [-77.34344801975544, 34.53013973180456], [-77.34347075871075, 34.53017910212568], [-77.34358317336019, 34.53027139103813], [-77.3436068637539, 34.53031745773241], [-77.34362217332226, 34.530388189451855], [-77.34368264542911, 34.53047097705759], [-77.34369420386987, 34.53049271338858], [-77.34369791943769, 34.53049970071051], [-77.34375951167976, 34.530539770419985], [-77.34381526598304, 34.53060522633791], [-77.34381029827378, 34.530646211199155], [-77.34387533825472, 34.53062570791999], [-77.34389501269074, 34.53060573556148], [-77.34390032144921, 34.530592988350136], [-77.34390074938173, 34.53057776805167], [-77.34394800853762, 34.53050733754631], [-77.34395681423769, 34.53046245027635], [-77.34396944605831, 34.530455675040045], [-77.34397744341923, 34.53045357601997], [-77.34401429848958, 34.53042357679102], [-77.34400439008664, 34.530410587810394], [-77.34400472434132, 34.5304085869023], [-77.34402147680663, 34.53039194151373], [-77.34402226236219, 34.53038823905432], [-77.34402252770937, 34.53038413969759], [-77.34402351481609, 34.53038108643132], [-77.34402819866297, 34.53038038653346], [-77.34403500314792, 34.53037891686605], [-77.34404059813274, 34.53037462520721], [-77.34404177946229, 34.53037371906278], [-77.34404926889013, 34.530370337061235], [-77.34405301372014, 34.530368165450376], [-77.34406232992008, 34.53036499726344], [-77.34407753510658, 34.53036866850782], [-77.34410379994137, 34.53034949404167], [-77.34410896593218, 34.530337300162145], [-77.34417701029861, 34.5303083577083]], [[-77.35934568288079, 34.549550766714724], [-77.35935086507348, 34.54954616366256], [-77.35936899996454, 34.54952551599271], [-77.35937183983205, 34.54948193753652], [-77.35934114676564, 34.54947872119689], [-77.35933375848751, 34.54948742087796], [-77.359314528429, 34.54950639336899], [-77.35931494207581, 34.54953581044922], [-77.35932661459758, 34.549549655489656], [-77.3593185658614, 34.549563682668925], [-77.35933936320266, 34.549556646566174]], [[-77.34502251425079, 34.54541655282746], [-77.34495548793058, 34.545375161827515], [-77.34491076871932, 34.5452988813517], [-77.34473048385723, 34.545407533761065], [-77.34478481030581, 34.54544569272997], [-77.34485571572787, 34.54551192608879], [-77.34489131316136, 34.545515816976604], [-77.34490534423747, 34.54553408642619], [-77.34493291623261, 34.5456050152676], [-77.34496347632489, 34.54561883206935], [-77.34500970306576, 34.545667594222266], [-77.34500586418949, 34.54573514336114], [-77.3450252779198, 34.54581112328304], [-77.3450054583594, 34.545912154472845], [-77.34508353295172, 34.54596878832881], [-77.3451622772026, 34.546034857489154], [-77.34528518794254, 34.54608726390707], [-77.34540672554212, 34.545996776832204], [-77.345346309522, 34.54593098142464], [-77.34533000156645, 34.54590796080417], [-77.3452934825027, 34.545816172212774], [-77.34529149589511, 34.54581369479311], [-77.3452319037315, 34.54574083056298], [-77.3451759351092, 34.545710674533765], [-77.34517546803315, 34.54563583085822], [-77.34513542921468, 34.545572472275964], [-77.34510179429742, 34.54552755538124], [-77.34506230671661, 34.545507120986215], [-77.34493804379844, 34.5455000813625], [-77.34504654894424, 34.545448888765875]], [[-77.35601370000654, 34.55165519283325], [-77.35611848367412, 34.5516028978023], [-77.35615445885588, 34.551475425684906], [-77.35619645221078, 34.551564218917896], [-77.35627017072636, 34.551531605247675], [-77.35634995239269, 34.551511126686975], [-77.35650926929087, 34.55144819600602], [-77.35654798077435, 34.55143624192713], [-77.35657048078208, 34.5514293473493], [-77.35657935972347, 34.55141413758807], [-77.35680427802224, 34.5512947276833], [-77.3568945222372, 34.551246353490626], [-77.35688753459068, 34.55121104954713], [-77.35694597345314, 34.55120194434667], [-77.35701807471139, 34.551183864900125], [-77.35705020250545, 34.5511660084737], [-77.35712481542097, 34.551103092531385], [-77.3571403266538, 34.55108855391658], [-77.3571416077998, 34.55108629502913], [-77.35714494944759, 34.551085645801194], [-77.35724077194955, 34.551012887022175], [-77.35724013605665, 34.551010047223336], [-77.35726477103385, 34.55099718555137], [-77.35734450441609, 34.55094405219267], [-77.3573584375394, 34.55093474078698], [-77.35745462943461, 34.55086603539303], [-77.35754388593215, 34.550809999864796], [-77.3575811496412, 34.55078026472145], [-77.35764781652352, 34.55071165724325], [-77.35769468133952, 34.55067186191389], [-77.35772745650738, 34.55063678864812], [-77.35772604840881, 34.55062553452606], [-77.357744518244, 34.55062131511192], [-77.35778473747723, 34.550567335768626], [-77.35777719125541, 34.550526231978836], [-77.35784472613284, 34.550531684547266], [-77.35792428445589, 34.55048603848851], [-77.35784644416135, 34.550456679720895], [-77.3577881579975, 34.5504804374776], [-77.35774775812774, 34.550479877107655], [-77.35773197974254, 34.55050423479871], [-77.35771371049313, 34.550516356036134], [-77.35762202522784, 34.55057492312909], [-77.35754910955593, 34.55058198430775], [-77.35749373042644, 34.55060923328129], [-77.35747897428183, 34.55062950867075], [-77.35744951299317, 34.550644914148116], [-77.35740572162547, 34.550649150300174], [-77.35735086496271, 34.550666437301125], [-77.35731371287463, 34.55069635659746], [-77.35725655615525, 34.550762027300124], [-77.35725277076612, 34.550766336328095], [-77.35725447450811, 34.550768651683], [-77.35725033820924, 34.55076995317237], [-77.35720983190376, 34.550833724052765], [-77.35724626739427, 34.550888844476944], [-77.35715003276654, 34.55086379979131], [-77.35710403685502, 34.55087744169023], [-77.35700524042787, 34.55089576030447], [-77.35695282172753, 34.5509319313889], [-77.35695236679956, 34.55093212796742], [-77.35695214219238, 34.55093275590775], [-77.35692947351403, 34.5509830824044], [-77.35690056467274, 34.55100066046727], [-77.35682979335262, 34.55105876964518], [-77.35679029392563, 34.55107774160659], [-77.35677603958476, 34.5511256421227], [-77.35677905504045, 34.55114056538648], [-77.35678581219547, 34.55116155702801], [-77.35675071731436, 34.55115590917778], [-77.356738755863, 34.55115385514087], [-77.35674343549275, 34.551145693413424], [-77.35674022799128, 34.551139378227454], [-77.35673505128037, 34.551096315044965], [-77.35667312804613, 34.55110673096134], [-77.35665321671777, 34.55112733297981], [-77.35662346400048, 34.55116296515502], [-77.35660663931561, 34.55119348562488], [-77.35660570042995, 34.55119811059816], [-77.35659967044491, 34.55119875902723], [-77.35655314031716, 34.551211138110524], [-77.35648292415962, 34.55122675846347], [-77.35642843600364, 34.55123604933664], [-77.35635590363839, 34.55125150849234], [-77.35628623934046, 34.5512549043385], [-77.35624644624096, 34.55127168881108], [-77.35624026842807, 34.55127933697377], [-77.35620568888757, 34.55131395162504], [-77.35620455871333, 34.55131671226121], [-77.35618741912631, 34.55134815095559], [-77.35618791909465, 34.551367399060155], [-77.35617285761737, 34.55140104361071], [-77.35618921570946, 34.55140909803409], [-77.35615446233588, 34.551475273888144], [-77.3561544493381, 34.55147530104196], [-77.35615442263672, 34.55147531260255], [-77.35595609838452, 34.551564773002994], [-77.3558942321562, 34.55159706557335], [-77.3558313687317, 34.55164423053041], [-77.35582266288115, 34.55172637752273]], [[-77.34475288518406, 34.54505756616079], [-77.34473771674364, 34.54503926390318], [-77.3447210637008, 34.54501299980012], [-77.34464066317533, 34.545053227139576], [-77.34469350460266, 34.54515286060108], [-77.34461911197107, 34.54523906186632], [-77.34457089421593, 34.545308084327516], [-77.34471261698464, 34.54537921082128], [-77.34479181637687, 34.54527629995266], [-77.34485954847406, 34.545233677047904], [-77.34482706100638, 34.54520240619841], [-77.34482454307788, 34.54514918175528], [-77.34481633567502, 34.545137746348715], [-77.34472703016677, 34.54515741340121]], [[-77.34316868912738, 34.536462042329546], [-77.34328177094615, 34.53659705172076], [-77.34343186322451, 34.536590152927126], [-77.34354099726946, 34.53660733535758], [-77.34367149656495, 34.536501575689], [-77.3437091666506, 34.536476745772276], [-77.34374182298232, 34.53641032846883], [-77.34376794669245, 34.53636528937233], [-77.34374463188962, 34.536288628746945], [-77.34373253170457, 34.53625599118156], [-77.3436764164127, 34.53625604856796], [-77.34354972671687, 34.53622915853643], [-77.34340096582677, 34.53629567844841], [-77.34336616254788, 34.53630977523959], [-77.34316255558109, 34.53645238827078]], [[-77.32397817188112, 34.52706826726191], [-77.32394382456675, 34.52710089659748], [-77.32392905443517, 34.52710542055408], [-77.32392342295182, 34.52709095965293]], [[-77.34737394573521, 34.54846451815586], [-77.34737976606901, 34.54845383095002], [-77.34737268670264, 34.548443918929976], [-77.34732669892117, 34.548379587756926], [-77.34727327969787, 34.54834674309555], [-77.34724687337496, 34.548319306155506], [-77.34719711835649, 34.548304629370065], [-77.34709421826999, 34.54830839681505], [-77.34705873482945, 34.548377613525965], [-77.34709816838935, 34.54843181477463], [-77.34711873326522, 34.54849139068466], [-77.34719155949186, 34.54854596148565], [-77.34722864824852, 34.548574448819934], [-77.34725356341727, 34.548594400286014], [-77.34730580846306, 34.5486367471189], [-77.34730786707082, 34.548647791666085], [-77.34731828457296, 34.54866583083367], [-77.347335879675, 34.54870496598462], [-77.34735183856368, 34.54872259812488], [-77.34750805052258, 34.54880260235737], [-77.34751995995236, 34.54883675319938], [-77.34752479266427, 34.54892260353212], [-77.34757510345858, 34.54893973975184], [-77.34766238481183, 34.54897035027087], [-77.34767248003322, 34.548973480076825], [-77.34768241666713, 34.548967234332906], [-77.34768045934919, 34.54895667521852], [-77.34767371024509, 34.548920057928854], [-77.34765723377842, 34.54890354641826], [-77.34762519826666, 34.5488778080294], [-77.34763083667085, 34.54881793878428], [-77.34760769999716, 34.54878826374347], [-77.34760338458034, 34.54877363484381], [-77.34757970583183, 34.54873989130824], [-77.34746326662207, 34.548686636258424], [-77.34750166395736, 34.54863088152652], [-77.34749188525842, 34.54861664011885], [-77.34745468531331, 34.54856546088883], [-77.34738966238915, 34.548467952736225]], [[-77.34579576254879, 34.53416086443783], [-77.34578797605202, 34.534157682531124], [-77.3457705037464, 34.53415790760903], [-77.34576249624071, 34.5341769627523], [-77.3457678431625, 34.53418018312811], [-77.34580458275163, 34.53420231086388], [-77.34580689548537, 34.534203703790006], [-77.34580885536046, 34.53420488419365], [-77.34583258658168, 34.53421917715418], [-77.34584964042298, 34.534229617929775], [-77.34585297888486, 34.534231459134155], [-77.34589569405551, 34.53425718581189], [-77.34593643421859, 34.53427833370244], [-77.34594984593723, 34.53428651615107], [-77.34597540295908, 34.5342727262615], [-77.34599858613979, 34.53423788394497], [-77.34602043912328, 34.5342050407252], [-77.34602979592322, 34.534190978249924], [-77.34605091671541, 34.53415923543499], [-77.3460610056843, 34.534144072539064], [-77.3460658609411, 34.53412842238021], [-77.34607612193672, 34.53407461813707], [-77.34605331890253, 34.53405503696919], [-77.3460299197034, 34.53403494385812], [-77.34601507603873, 34.534022197439214], [-77.34595708787161, 34.533972402358245], [-77.34594813595169, 34.5339761540142], [-77.34583906910508, 34.534036038867725], [-77.34583934919311, 34.534047483807306], [-77.34584839731069, 34.5340516251817], [-77.345847418891, 34.53410220131466], [-77.34584745703148, 34.53410752212546], [-77.3458516194405, 34.53410952439855], [-77.34585107771805, 34.53413503132288], [-77.34585105672625, 34.53413760664414], [-77.34585263715836, 34.53413892298616], [-77.34585250260602, 34.534145049213414], [-77.34585246870756, 34.534146592621404], [-77.34585236786947, 34.534151183824946], [-77.34585233403993, 34.53415272409332], [-77.34585230025664, 34.53415426225659], [-77.345852199188, 34.53415886395662], [-77.34585118621169, 34.534160539884034], [-77.34585444964, 34.53416766938867], [-77.34585446253399, 34.53416771042977], [-77.34585446234222, 34.534167719089155], [-77.3458544804312, 34.534167736657174], [-77.34585444818063, 34.53416773268447], [-77.34585442607724, 34.53416773801613], [-77.34585440490649, 34.53416772735387], [-77.34584221588133, 34.534166225881705], [-77.34583729139463, 34.53416561927172], [-77.3458360997318, 34.53416547247985], [-77.34583313186748, 34.534165106891095], [-77.34582998261614, 34.534164760984936], [-77.34582575918054, 34.53416419870527], [-77.34582014755868, 34.53416350745165], [-77.34581775128379, 34.53416321227241], [-77.34581178330498, 34.534162477121136], [-77.34580543875649, 34.5341651850817]], [[-77.34855622048744, 34.54976505314282], [-77.3485372788396, 34.54978083272585], [-77.34847673269188, 34.549887316791306], [-77.34849320396555, 34.54998277203083], [-77.34850656209652, 34.550021139302096], [-77.34853138440249, 34.55003691898929], [-77.34858799730229, 34.55008020399916], [-77.3486278662709, 34.550109602947174], [-77.3486311170954, 34.550109921786124], [-77.34862968416236, 34.550111285693745], [-77.34866812274838, 34.55014025968447], [-77.34869519933393, 34.55014316813246], [-77.34872573503844, 34.55012203343409], [-77.3487976479479, 34.55014716325158], [-77.34881046680263, 34.55015324083966], [-77.34883743496235, 34.5501502894943], [-77.34883459095269, 34.550134988514195], [-77.34876678599495, 34.550090399100014], [-77.34876182576346, 34.55006936410345], [-77.34873890327917, 34.55003320627572], [-77.34880134523019, 34.55000853419343], [-77.34880299786977, 34.5499627778603], [-77.3487418886924, 34.54985540752271], [-77.34874085839009, 34.54984930944004], [-77.3487424024489, 34.54984270286744], [-77.34873347339791, 34.549785802750314], [-77.3487213472931, 34.54973795478518]], [[-77.34619446769773, 34.54694337209179], [-77.34606857931259, 34.546939876069914], [-77.3460860226965, 34.54702542001647], [-77.34613502193451, 34.54704160145187], [-77.34614633278349, 34.547050851518364], [-77.34616846793125, 34.547036789185746], [-77.34622354328093, 34.54701529556653]], [[-77.35962247786411, 34.548567777352325], [-77.35961953132008, 34.54855878527739], [-77.35962024564452, 34.548550898896366], [-77.35960793830793, 34.54854326879568], [-77.3595953021809, 34.54855455552621], [-77.35958323286121, 34.548564012012], [-77.35959163076095, 34.54857255393142]], [[-77.35956603473643, 34.548229863338804], [-77.35958905333233, 34.548272780441266], [-77.35958224984248, 34.54828872661273], [-77.35961333773903, 34.54830733465057], [-77.35962906226236, 34.54828198591982], [-77.35962458158868, 34.548258340404054], [-77.35962216071447, 34.548247725514514], [-77.35956603708135, 34.54822985515845], [-77.3595660372069, 34.54822985373685], [-77.35956603501766, 34.548229851050216], [-77.35956603258427, 34.54822985433547], [-77.35956603325421, 34.54822985570954]], [[-77.34943640641777, 34.55087644259471], [-77.34944833988543, 34.55087741406807], [-77.34945782169393, 34.55087843275269], [-77.34948823526577, 34.55087739889985], [-77.3494857866787, 34.550900472429376], [-77.34946574855144, 34.55090789464764], [-77.34944357545169, 34.550918382504236], [-77.34943192739519, 34.55091276166932], [-77.34940581073113, 34.55090959174074], [-77.34940688630128, 34.55089312526826], [-77.34944054431125, 34.55088091905009]], [[-77.35645245565156, 34.551321470811374], [-77.35644337527434, 34.55131130296599], [-77.35644631126715, 34.55130683979328], [-77.35645314153233, 34.5512915483108], [-77.35648046279641, 34.55130596371612]], [[-77.35962469763072, 34.54848718491594], [-77.359566892443, 34.548474555938924], [-77.35956063234089, 34.548465920824476], [-77.35955849431795, 34.548474555202915], [-77.35955825504251, 34.548475799667045], [-77.359558054534, 34.548477273989654], [-77.35956028117695, 34.54848126493261], [-77.35957928575549, 34.54850337438046], [-77.35960321741183, 34.54850344063301], [-77.3596085888716, 34.54851484167176], [-77.35961956772165, 34.54850426938364]], [[-77.34293174736129, 34.528991801972595], [-77.34295662726697, 34.528969016921366], [-77.3429444423054, 34.52895558043286], [-77.34293282160502, 34.528945284884315], [-77.34288509709909, 34.52893419287016], [-77.34290591840005, 34.52896112312552]], [[-77.34905725334409, 34.55056774247573], [-77.34905979243162, 34.550567994538255], [-77.34906042194096, 34.55056928442551], [-77.34905828232564, 34.55056913708421]], [[-77.34927297814745, 34.55033119285699], [-77.34929657829889, 34.55032850226197], [-77.34929097021289, 34.55033994840658], [-77.34927843106054, 34.55034223255734]], [[-77.34876292759985, 34.550638444203926], [-77.34878692815187, 34.55062248113216], [-77.34877497917775, 34.550609464035], [-77.34878298617961, 34.55059640748378], [-77.34873924894256, 34.550599278620716], [-77.34873842477332, 34.55063012241952]], [[-77.34916099339213, 34.550401849456826], [-77.34915921273004, 34.55040115946985], [-77.34916104195021, 34.550399739123435], [-77.34916267913684, 34.55039964117264], [-77.34916285987326, 34.5504006346356]], [[-77.3497039803583, 34.55088245941788], [-77.34969805017191, 34.55087446510315], [-77.3497074402559, 34.550862396441005], [-77.34969040647223, 34.55085571034401], [-77.34968638483197, 34.550873896983724], [-77.3496686311976, 34.55087869868817], [-77.34968315326361, 34.550880772147195], [-77.34968980084419, 34.5508820384213]], [[-77.34931151327935, 34.550950767535184], [-77.34930386579727, 34.55093613654032], [-77.34932779687597, 34.55093844735557], [-77.34932480091813, 34.55094632418987]], [[-77.3493843674016, 34.550292104660656], [-77.34937141226334, 34.55027881534847], [-77.34938489944912, 34.55026897923893], [-77.34939182365312, 34.55027587805059]], [[-77.34898877293452, 34.5509535943917], [-77.34899235775815, 34.55097083534264], [-77.3489631111801, 34.55097300995491], [-77.3489649127291, 34.550957479681784]], [[-77.34731269708114, 34.552885697495526], [-77.34731259721377, 34.55288547565264], [-77.3473122246147, 34.55288546757496], [-77.34731235548692, 34.55288565853216]], [[-77.34937010646566, 34.550911956987534], [-77.34938267959461, 34.55091984863951], [-77.34936971974068, 34.5509287660457], [-77.3493566823499, 34.55092358974566]]]]}, "type": "Feature", "id": "demo6", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16764229531375, 34.6240587373062], [-77.17161026629942, 34.62337085930407], [-77.17313291022201, 34.623002943277875], [-77.17485149622571, 34.622741848402825], [-77.17683553727622, 34.62235677973872], [-77.17755165962575, 34.62235678860806], [-77.18052998324984, 34.62172646812293], [-77.18426864691747, 34.62060364302073], [-77.18624842259916, 34.61957485096954], [-77.18707928356329, 34.61705530016262], [-77.18826640712592, 34.61610928710029], [-77.18905913017427, 34.615326662944724], [-77.19089698893734, 34.61459223502261], [-77.1923593731234, 34.614491072244554], [-77.19731713726459, 34.614347786332544], [-77.19773907159434, 34.6144073998463], [-77.19809058554077, 34.61433118197635], [-77.2016976523925, 34.61444176438076], [-77.20407261950865, 34.614394271431124], [-77.2046146016734, 34.614156082274086], [-77.20793832153996, 34.61257365638042], [-77.20861619517595, 34.611218011907965], [-77.20928906447357, 34.609872236164875], [-77.20952306262356, 34.60940426411146], [-77.2099967112868, 34.609144645235325], [-77.21188256414564, 34.607705283801586], [-77.21534769961787, 34.60629121855284], [-77.2175057189568, 34.605305811316036], [-77.21792052232843, 34.604411506375584], [-77.21885264328897, 34.60335704077623], [-77.2199740576738, 34.60224201031317], [-77.22070335682571, 34.60086043720935], [-77.22112524238558, 34.59956817489196], [-77.2216038750148, 34.59843208225836], [-77.22217442120228, 34.59720568042295], [-77.22271804967889, 34.59603350034492], [-77.2233875508338, 34.59475918502628], [-77.2239433495581, 34.593574500721736], [-77.22423976650033, 34.59288753128569], [-77.22434470475267, 34.5926634772635], [-77.22442674180824, 34.59245542832339], [-77.22471100778981, 34.59199187559966], [-77.22542185283466, 34.59180580641274], [-77.2258237571049, 34.591667113902965], [-77.22615894546051, 34.59160723714035], [-77.22692652215682, 34.591520161364855], [-77.22843081077878, 34.59135712368762], [-77.22972441866213, 34.591202738703814], [-77.22973772054168, 34.59120039145514], [-77.23062356891256, 34.590678445324635], [-77.23107068721337, 34.59036625868343], [-77.23303603338559, 34.589234047522666], [-77.23414871080298, 34.588555523083656], [-77.23620739698882, 34.58804719470353], [-77.23842615932644, 34.58736216199276], [-77.23882480717073, 34.587456724678724], [-77.23905009698605, 34.587224856494], [-77.23932419800235, 34.58688067136482], [-77.24015860772809, 34.586013820615555], [-77.24078987556834, 34.58547661554188], [-77.24179025863884, 34.58483592762475], [-77.24434843864861, 34.5838716903019], [-77.24590487107194, 34.58323761452287], [-77.24759022682888, 34.582581890065875], [-77.24796298538683, 34.582439197311224], [-77.24816253292443, 34.58228688001765], [-77.24873696594244, 34.58188745740684], [-77.24965151555065, 34.5813119834947], [-77.25038444886454, 34.58057651631623], [-77.25281049000293, 34.57892937726726], [-77.25285307271665, 34.57890149094977], [-77.2528783841449, 34.57888756360169], [-77.25300617565479, 34.5788193376009], [-77.25583733175077, 34.577235161892844], [-77.2564456504364, 34.57683890264234], [-77.25757607168036, 34.57617449592243], [-77.2581869687205, 34.57575875070912], [-77.25843595402424, 34.57555435533477], [-77.25960332499842, 34.57487907999366], [-77.25992829421051, 34.574678614781334], [-77.26005291324863, 34.574610842269706], [-77.26119888185318, 34.57388643356644], [-77.26170562816468, 34.57363052276064], [-77.26249975465123, 34.57305937541723], [-77.26250878618019, 34.57304682476234], [-77.26254248967705, 34.57302177146149], [-77.26320711226049, 34.57233708384936], [-77.26343870470056, 34.572177303412346], [-77.26393556700847, 34.57178670319179], [-77.26473212547154, 34.57106459851852], [-77.26570130079153, 34.57046993070011], [-77.26648478577533, 34.56999461817046], [-77.2678158001312, 34.56926125296328], [-77.268235385184, 34.56892282480541], [-77.26840647363937, 34.5687973444753], [-77.26887468001277, 34.56846669783819], [-77.26945561800137, 34.567937169327585], [-77.26974705589767, 34.567638537702685], [-77.27021124657853, 34.56705390386206], [-77.27079350002728, 34.566278074076756], [-77.27094543271959, 34.56607563233772], [-77.27237793925887, 34.56533890629844], [-77.27282714519505, 34.565120511528676], [-77.27351609725928, 34.56465510371273], [-77.27446582505338, 34.56394925692592], [-77.27487951821068, 34.56365019655958], [-77.27734343620708, 34.56197731926841], [-77.27747844493999, 34.56188563041813], [-77.27832840779925, 34.561364232675686], [-77.28029291345217, 34.56013794395984], [-77.28064011439385, 34.55993879181848], [-77.28101518134014, 34.559745556476145], [-77.28336049341729, 34.55841008285957], [-77.28393424787384, 34.55800029052963], [-77.28537332715543, 34.55685646037497], [-77.2856700158921, 34.55662264885321], [-77.28724425778465, 34.55538666089792], [-77.2881009850636, 34.55484471088989], [-77.28990362398261, 34.553777128426944], [-77.29053501790028, 34.553576041730906], [-77.29089529590944, 34.55323760347977], [-77.29142559853997, 34.552941929695244], [-77.29292395933436, 34.552238278952444], [-77.29371841608396, 34.55179374085011], [-77.29494512227996, 34.55123529487734], [-77.29594594454551, 34.550335132202235], [-77.29691164497257, 34.549589577790016], [-77.29798117444507, 34.54873902949626], [-77.29994963425418, 34.54780228010791], [-77.30009685692407, 34.54771784934345], [-77.3016402117625, 34.54654630523982], [-77.30329007488913, 34.54550008724784], [-77.30342215599161, 34.54542678004707], [-77.30362332152842, 34.54531662465727], [-77.30526868728793, 34.54433868766609], [-77.30647349128365, 34.54369164216639], [-77.30712204516774, 34.54325394529394], [-77.30794687297282, 34.54273753471141], [-77.30879181587792, 34.542079747365506], [-77.3096649151583, 34.54153619914271], [-77.31216246586726, 34.54017377552478], [-77.31253125079824, 34.539926175994424], [-77.3128465800635, 34.53978975767614], [-77.31460713047322, 34.53874013541939], [-77.31603191831928, 34.537880538609166], [-77.31627854799027, 34.537776418580904], [-77.31659860714828, 34.53757815966001], [-77.31922333666748, 34.53570479818546], [-77.31964004517309, 34.535438733137596], [-77.32031368093465, 34.535085951877875], [-77.32240169135588, 34.534081567714054], [-77.32363746113678, 34.533410777633264], [-77.3239913970684, 34.53324522730557], [-77.32457729749231, 34.53313030998339], [-77.32494528528457, 34.53305401611532], [-77.32556896584246, 34.53292837632097], [-77.3260893393174, 34.5326174874444], [-77.32621240269086, 34.532279780816985], [-77.32626761822856, 34.532207465548446], [-77.3263742547977, 34.53206108911263], [-77.32641517946358, 34.532005821477746], [-77.32645538813354, 34.53195104044765], [-77.3263756614492, 34.53200069303338], [-77.32611690588098, 34.53196576314977], [-77.32598599809816, 34.53187719120898], [-77.32592958142982, 34.531830803226605], [-77.32579666809238, 34.53172537708136], [-77.32570185165584, 34.53143508385091], [-77.32568403891709, 34.53137646690988], [-77.32567547761263, 34.5313344313079], [-77.32560958395877, 34.53118509764677], [-77.32525679672513, 34.53094824478116], [-77.32523531748068, 34.53070214191465], [-77.32514910065125, 34.53047409590331], [-77.32506563823135, 34.530347876989396], [-77.32506694916646, 34.53013217286047], [-77.32524421161958, 34.53001948218656], [-77.32544616193883, 34.53006004496072], [-77.32563556439695, 34.53007005997464], [-77.32637416607241, 34.529808389359175], [-77.32637199282766, 34.529774069727665], [-77.32630377147999, 34.529328876930805], [-77.32653579706484, 34.52886015126646], [-77.32663714492836, 34.528301701876785], [-77.32725680027886, 34.527874712152524], [-77.32778477067167, 34.52748105664617], [-77.32824383353206, 34.52709148633723], [-77.32855249424665, 34.52686127386714], [-77.32885754154401, 34.526556766866264], [-77.32932488991747, 34.526243762253735], [-77.33009185461128, 34.525846548556], [-77.33045309851774, 34.52545966322314], [-77.33075028631009, 34.52495060254745], [-77.33205187600248, 34.524222061226105], [-77.33267540963186, 34.52390081058648], [-77.33484642346431, 34.52343125845885], [-77.33521365000381, 34.52328369676928], [-77.33537396107431, 34.52322765576809], [-77.33650310932063, 34.52296607264216], [-77.33675102452266, 34.52290459521227], [-77.33679253845605, 34.52289952539797], [-77.3368269521964, 34.522898051172106], [-77.33727600772977, 34.522663421752846], [-77.337368484331, 34.52259678640671], [-77.33758938380615, 34.52238761856833], [-77.33762235881136, 34.52233526378888], [-77.33765953905404, 34.52231010381494], [-77.33792102953322, 34.52207021039722], [-77.33797878605378, 34.5220120126403], [-77.33799171442135, 34.52196273507832], [-77.33813280687592, 34.52175239211249], [-77.33830499288362, 34.52167404611636], [-77.33839534832447, 34.52148138104169], [-77.33879941977307, 34.52116686458373], [-77.33865329579018, 34.521033455286165], [-77.33874542199753, 34.520894890780326], [-77.33893421899258, 34.5208208833322], [-77.3391940830061, 34.52088680990155], [-77.33968327542101, 34.5205500806408], [-77.3398258145132, 34.520427360358674], [-77.33999027864955, 34.52040150102774], [-77.3401665107482, 34.520371071737955], [-77.34031435395173, 34.52045929092207], [-77.34089700017692, 34.52078364494202], [-77.34154467447318, 34.521073503710355], [-77.34171650784461, 34.521236837328665], [-77.3420371993752, 34.52150412448524], [-77.34223595194265, 34.52170113564252], [-77.34298000497193, 34.52196317336642], [-77.34309302383879, 34.522008342225746], [-77.34311036154607, 34.52200480108386], [-77.34328190258634, 34.52199088166594], [-77.34387826776674, 34.521996811802765], [-77.34393530883091, 34.5219315021978], [-77.34465555233184, 34.52180084078906], [-77.34466778776165, 34.521799948731825], [-77.34468242714819, 34.521798464445276], [-77.34615274319567, 34.521633180087974], [-77.3462418615478, 34.52162107540927], [-77.34763169715674, 34.5214792964452], [-77.34781582995923, 34.52144641240317], [-77.34795622498261, 34.52140518743484], [-77.34976873723603, 34.52105730992899], [-77.35097030338576, 34.52081182216075], [-77.35319396573713, 34.519980803951604], [-77.35413465522373, 34.51974468934122], [-77.35553862889554, 34.51935640000311], [-77.35571524824591, 34.51927868925799], [-77.35579481480646, 34.5192598135543], [-77.35606677458597, 34.51917128703159], [-77.35729786523083, 34.51872357517711], [-77.35802044524527, 34.51835613932229], [-77.35888163056795, 34.51811734910661], [-77.36002554774768, 34.517621858384544], [-77.36029579179336, 34.51747665534604], [-77.36046813644474, 34.51739032426411], [-77.36081803592167, 34.517290853747106], [-77.36205154837265, 34.516797319428385], [-77.36250841671811, 34.516566623432404], [-77.36363541023721, 34.516183578822165], [-77.36383183455794, 34.51609425494315], [-77.36464474859031, 34.51561944778527], [-77.366802647405, 34.51468690896052], [-77.36680655751715, 34.51468466436471], [-77.3668092684502, 34.51468396347602], [-77.36681474484277, 34.51468178046228], [-77.36785222425695, 34.514200116255964], [-77.36840202863809, 34.51367639777225], [-77.3685722038003, 34.51355706699816], [-77.36907361076538, 34.513380338305254], [-77.36966169422186, 34.51309384521454], [-77.36998560253666, 34.51307042288951], [-77.37023782323902, 34.513055413650584], [-77.37077157445488, 34.51302244479385], [-77.37123640871626, 34.51286674951804], [-77.37156237502158, 34.512762235494954], [-77.372154541098, 34.512569587363004], [-77.37243525679358, 34.512456733527436], [-77.37314844365834, 34.51204465105846], [-77.37339567694742, 34.51193068639688], [-77.37384826231863, 34.51171281247505], [-77.37531712097052, 34.51087888461496], [-77.37632689837787, 34.51032743717144], [-77.37723931768477, 34.50982744617656], [-77.37947239328666, 34.50894326914613], [-77.379489740224, 34.5089357139537], [-77.37949793558039, 34.50893152323916], [-77.37951629647807, 34.50892556669716], [-77.38173980433541, 34.50804378381826], [-77.3826686664347, 34.50754424063302], [-77.3836973888539, 34.50700954072977], [-77.38576554438288, 34.50607690246445], [-77.38581648459363, 34.50605387441509], [-77.38584184546647, 34.50604368276387], [-77.3859031482158, 34.506019147772925], [-77.388059284319, 34.50515837241877], [-77.38901018132262, 34.50475260362197], [-77.39018846330477, 34.50420758533652], [-77.39193315132702, 34.503228281123306], [-77.3920850251494, 34.5031436275377], [-77.39218671662519, 34.50309275862542], [-77.39245728237526, 34.50298532187054], [-77.39377214766533, 34.50238674541979], [-77.39424730384432, 34.50220892064469], [-77.39535305159649, 34.501880880932454], [-77.39571733749699, 34.501702735960976], [-77.39641202681949, 34.501275392998345], [-77.39851399033388, 34.50031964450855], [-77.39852730142864, 34.50031196417397], [-77.40047667320246, 34.499279490039214], [-77.40169668351834, 34.498954788073775], [-77.40283910029575, 34.4984421038655], [-77.40430117188188, 34.49787380664358], [-77.40486428302168, 34.49767246406981], [-77.40511480691337, 34.49756250863058], [-77.4055651374693, 34.497342659747346], [-77.40716179585837, 34.49657165792189], [-77.40803657276271, 34.49617549647433], [-77.40930133402374, 34.495625798381006], [-77.41008718093839, 34.495126903483154], [-77.41070628578188, 34.494843254190165], [-77.41167862248548, 34.494405065104864], [-77.41265592905714, 34.49390728628691], [-77.41308530658777, 34.493692231190565], [-77.41410592877452, 34.493208632881746], [-77.41509752010441, 34.49268111607263], [-77.41526087033816, 34.49258186170407], [-77.41545959673725, 34.49252407680747], [-77.41660431155232, 34.49208264644243], [-77.41663580422191, 34.492062067550876], [-77.41710069814872, 34.491870795230525], [-77.41788144164083, 34.4915303782767], [-77.4179398889214, 34.491507813994886], [-77.41798921343953, 34.49147792289328], [-77.41890240067443, 34.49078744860286], [-77.42012915925366, 34.49023623960046], [-77.42017116760746, 34.49021603316122], [-77.4202097480118, 34.49019413741544], [-77.42137234892371, 34.48961171829732], [-77.42258011028078, 34.48901220865524], [-77.42258178743728, 34.489011449490995], [-77.42258280800951, 34.48901055621257], [-77.423580161193, 34.48830852017174], [-77.42498477468564, 34.487956141561], [-77.42514320823736, 34.487880173753695], [-77.42532521813527, 34.4877995756394], [-77.42641407963012, 34.48730974640506], [-77.42667739397116, 34.487193096944445], [-77.42705283319413, 34.48702614635494], [-77.42737025755264, 34.48683000386471], [-77.42761201509302, 34.48670385526135], [-77.42781511380839, 34.48657565309535], [-77.42850452067364, 34.48605281895642], [-77.42858931345413, 34.48599069408496], [-77.42912239872837, 34.485594002109806], [-77.42946416220883, 34.48530876304789], [-77.4296225053658, 34.48521607941705], [-77.43071054138998, 34.484645382180226], [-77.43107794634214, 34.484572772163546], [-77.43207777511064, 34.48434595650764], [-77.43237610480145, 34.48426682353129], [-77.43278010705171, 34.484126912279784], [-77.43391895627398, 34.48382859675418], [-77.43455655776272, 34.483562089306815], [-77.43459456971765, 34.48354394702647], [-77.43515399781653, 34.48324072654128], [-77.43579706842291, 34.48292973546383], [-77.43616780268736, 34.4825452957902], [-77.43837537454002, 34.48171012005398], [-77.43879554889558, 34.481446187042685], [-77.43929486714958, 34.481191995453685], [-77.44125078023391, 34.48026320193564], [-77.44170956351141, 34.48017400347429], [-77.44261053657927, 34.479735940677685], [-77.44357321996844, 34.47927288497831], [-77.44386770551614, 34.479158803835254], [-77.4440951955547, 34.47904978835459], [-77.44510044687492, 34.47856979034955], [-77.44619711230187, 34.47805546119376], [-77.44629208265873, 34.47796079206494], [-77.44648029945787, 34.47792383805975], [-77.44763244754556, 34.47742408451998], [-77.4483992021285, 34.47709052630792], [-77.44888717616186, 34.47687777089192], [-77.44892625936943, 34.476864742265974], [-77.4489692553369, 34.476845533993746], [-77.45015172605227, 34.4762721788085], [-77.45019967795903, 34.476232628100625], [-77.45123995761678, 34.475633924353545], [-77.45126022806748, 34.47562276903111], [-77.45128608088558, 34.475612383955216], [-77.4524438318285, 34.475112653341874], [-77.45256619444609, 34.47506932191845], [-77.45366876625769, 34.47466848734004], [-77.45394106567403, 34.474549356388806], [-77.45425959583137, 34.47441258916984], [-77.45522353226018, 34.47398448010575], [-77.45606228965065, 34.47357411956817], [-77.45656485035398, 34.47344819216476], [-77.45683949598956, 34.473192724565045], [-77.458443530451, 34.47243500920436], [-77.4588689838006, 34.47219169389404], [-77.45933460104146, 34.471968503885606], [-77.46082829107715, 34.47130897518334], [-77.46139332642159, 34.47104218596162], [-77.4619852520929, 34.470752140421794], [-77.46320567069264, 34.47015614116481], [-77.46384199011239, 34.46985589141178], [-77.46440366498611, 34.46952393431697], [-77.46555005195026, 34.46888282026365], [-77.46614749540888, 34.46860002724516], [-77.46665451906695, 34.468287181320775], [-77.4678717351701, 34.46752671440272], [-77.46840259140836, 34.46731966459266], [-77.4691833290037, 34.467064497446046], [-77.47033435807126, 34.46668623478088], [-77.47116464874541, 34.46628560260933], [-77.4718845633395, 34.46585051456592], [-77.47266929858209, 34.465379035986345], [-77.47243641069004, 34.464527490031415], [-77.47239371255318, 34.4643713599876], [-77.47222483215717, 34.46442469216761], [-77.472148006225, 34.46451285923024], [-77.47022270112073, 34.465684829732574], [-77.47009778740758, 34.465759879426855], [-77.470091006528, 34.46576397752357], [-77.47008318601549, 34.465767751080236], [-77.47003177000471, 34.46578464792308], [-77.46760598316946, 34.46655481127772], [-77.46711037492865, 34.46669180261721], [-77.46685594201114, 34.46694637804131], [-77.4652953679005, 34.46795131659478], [-77.46508365413494, 34.46808311962728], [-77.46486309161443, 34.468196234373366], [-77.46296630910435, 34.46928060370345], [-77.46282500353003, 34.46936173362709], [-77.46267336359169, 34.46943606286221], [-77.46058897095494, 34.4704335078505], [-77.46031411524959, 34.47051776678071], [-77.4581593903565, 34.471395472459946], [-77.45766225505065, 34.47160528032417], [-77.45730228533262, 34.47186520831414], [-77.45578850145068, 34.47257237232926], [-77.45512958392678, 34.47275069935347], [-77.45468313990995, 34.473083081101166], [-77.45402555818497, 34.47340229342796], [-77.45365842885946, 34.47370649503339], [-77.45343361712597, 34.473808039468096], [-77.4527856130189, 34.47398782183433], [-77.45189400104542, 34.47429225705322], [-77.45136166427508, 34.474483920917116], [-77.45097092525052, 34.474649385940474], [-77.44978326519367, 34.47490493296341], [-77.44901269562277, 34.47549668775845], [-77.44880693969067, 34.47561858766238], [-77.44861116466548, 34.47586760527924], [-77.44835886317315, 34.476138937119856], [-77.44786280223306, 34.476347872246436], [-77.44695984404316, 34.476743237000086], [-77.44657557474734, 34.47691040415124], [-77.44624285098166, 34.477054725772255], [-77.44495014472841, 34.477308532413375], [-77.44429787152671, 34.47795873672764], [-77.44406651480762, 34.478067241567025], [-77.443854443157, 34.478168503775976], [-77.4428351958447, 34.47865693718775], [-77.4415157815753, 34.4791680668143], [-77.44147882268784, 34.4791858442307], [-77.44144423295401, 34.47920266213135], [-77.43974761880943, 34.47953252457105], [-77.43894563407002, 34.4799133585833], [-77.4373320845562, 34.48073478001455], [-77.4359742889585, 34.48158768090221], [-77.43497534233526, 34.48196560562548], [-77.43430921878596, 34.48265635461861], [-77.4340946176116, 34.4827257268324], [-77.43394127410811, 34.482835082904955], [-77.4335888962777, 34.48307400972468], [-77.43311258037312, 34.48320479574433], [-77.4327371397889, 34.48325406289213], [-77.43179547429864, 34.483312087996524], [-77.42977282574557, 34.48397343647697], [-77.42945687258661, 34.484035878107136], [-77.4293198960804, 34.484107725097374], [-77.42744421106117, 34.485205627281545], [-77.42727134113294, 34.4853499061732], [-77.42702437344032, 34.48556304251504], [-77.42625808644776, 34.486045577917395], [-77.42596308958178, 34.486481074467704], [-77.42594979489952, 34.48648985065644], [-77.42593287870373, 34.48649691725675], [-77.42517445971367, 34.4867070348046], [-77.42469743175755, 34.48690351976337], [-77.42288703048871, 34.48767500634056], [-77.42248477291379, 34.487775921621626], [-77.42228168303372, 34.487918876412074], [-77.42054728175835, 34.48890651535424], [-77.42023787875598, 34.489060097088014], [-77.41994084909184, 34.48920889772396], [-77.41909140131591, 34.48969098941956], [-77.4181664783322, 34.490135886645774], [-77.41785253682755, 34.4902769473129], [-77.4175929424196, 34.490473230460296], [-77.41670260970466, 34.490906158010915], [-77.41566214381308, 34.491358899446816], [-77.41540628008559, 34.49146417001721], [-77.41520607082262, 34.49159499680216], [-77.41444085888259, 34.49197197176654], [-77.4141691655608, 34.492050973703755], [-77.41328474501324, 34.492588362607194], [-77.41306778626277, 34.49270378252295], [-77.41284447560275, 34.49280959313429], [-77.41083855507162, 34.49381426478645], [-77.4106555009025, 34.493907501126586], [-77.41047337761329, 34.49398957602637], [-77.40820171303123, 34.49503036267081], [-77.40814760823861, 34.495064711097314], [-77.40806053066093, 34.49510255727421], [-77.40780487467555, 34.495218336560036], [-77.40647505961456, 34.495822449039544], [-77.40592374179519, 34.49596952199587], [-77.40489238853903, 34.49641587976559], [-77.40398973520232, 34.497015303025336], [-77.40173057434261, 34.49789648653672], [-77.40172321148036, 34.49789934843089], [-77.40172030004398, 34.49790065500087], [-77.39908428839809, 34.49860222133289], [-77.39855943172915, 34.4988802088068], [-77.39569061891174, 34.50053547779176], [-77.39537962036832, 34.50069891047603], [-77.39530811180344, 34.50073840357654], [-77.39519706754517, 34.50079849898195], [-77.39430710323334, 34.50124473371199], [-77.39379569885301, 34.501339887941825], [-77.39302996037131, 34.501616728334284], [-77.3922126432434, 34.50194127015048], [-77.39093116977307, 34.50258229891954], [-77.3890718686026, 34.503618662582156], [-77.38903529897746, 34.50363887932345], [-77.38902788795679, 34.50364297623764], [-77.38901293653306, 34.50364970005646], [-77.38745005317921, 34.504333667881795], [-77.38685467905646, 34.50457231877124], [-77.38586614647468, 34.504967955805554], [-77.38461661444606, 34.505470099194], [-77.3832814420354, 34.50607367769758], [-77.38269619788717, 34.50632751380298], [-77.38244906819835, 34.506402175350935], [-77.381991859022, 34.50662125259519], [-77.38040174381807, 34.50739273337064], [-77.37952637567702, 34.50767671551552], [-77.37824690948912, 34.50833097352305], [-77.37708080166607, 34.50883885389556], [-77.37635380912705, 34.509142050809665], [-77.37587789319167, 34.50916497647117], [-77.37474554716145, 34.50962482201817], [-77.37364214893148, 34.510063814627244], [-77.37318905786209, 34.51025858574613], [-77.37180620859135, 34.5111572020519], [-77.37159381812621, 34.51138061204974], [-77.37115945833904, 34.5118358834674], [-77.37079497887994, 34.51199446511943], [-77.3703663097001, 34.51199252719003], [-77.37001293009837, 34.51187062494559], [-77.36871911373018, 34.51164169314298], [-77.36844955189214, 34.511591637371886], [-77.36740750127998, 34.51264113421278], [-77.36715724524142, 34.51286844476385], [-77.36684135379511, 34.51327758241607], [-77.36529370125987, 34.5139023320257], [-77.36525685302249, 34.51392283725159], [-77.36524641384621, 34.51392536507387], [-77.36366806184343, 34.514754715450074], [-77.3622581618342, 34.515341652256254], [-77.36093781729177, 34.515802180455026], [-77.3605016490595, 34.515926175723465], [-77.3592256163371, 34.51656536750932], [-77.35891383905411, 34.51671132228284], [-77.35877991522653, 34.51673881998881], [-77.3573349541116, 34.517105824183574], [-77.35606390714527, 34.517403760454606], [-77.35417377385066, 34.51804118087657], [-77.35101450948375, 34.51891900028288], [-77.35101321544786, 34.518919217522765], [-77.35100878337141, 34.51892024207391], [-77.34785919203799, 34.519564253292664], [-77.34754978554122, 34.51961047361629], [-77.3447343446919, 34.519836580322185], [-77.34471304176284, 34.51983886357586], [-77.34469227460012, 34.51984228364509], [-77.34468782379604, 34.51983001925457], [-77.34260670238226, 34.519489836703656], [-77.34168083700573, 34.51928341900304], [-77.34158648438856, 34.51926462134479], [-77.34032180568092, 34.51928820754786], [-77.34001507410366, 34.5193296137838], [-77.33973712227981, 34.519390560367206], [-77.3392291115832, 34.5193731646355], [-77.33886540122042, 34.51942495532436], [-77.33881306438101, 34.51943740178489], [-77.33843831566818, 34.519625436171964], [-77.33829684333413, 34.51968283527149], [-77.3381120801221, 34.5197968296834], [-77.3374917367078, 34.52028440558718], [-77.3368406405175, 34.52095705666456], [-77.33683879191756, 34.52095925342539], [-77.33683845676377, 34.52095991160438], [-77.33683746253323, 34.52096061695866], [-77.33683103747956, 34.520964322880616], [-77.3358965954439, 34.52149488821429], [-77.33525327840324, 34.52157472887346], [-77.33456455344701, 34.52183985445317], [-77.33431955767665, 34.521899295149275], [-77.33367105118258, 34.522103452869956], [-77.33315401300695, 34.52214658324038], [-77.33256923102331, 34.52225830216954], [-77.33209534065644, 34.52235067574419], [-77.3306225798373, 34.522765803006315], [-77.33051523321535, 34.52278658360342], [-77.33042960356732, 34.52280709181246], [-77.3302873303037, 34.52288066044205], [-77.32892754942404, 34.52354739319087], [-77.32846075045384, 34.52383554927572], [-77.3279777127291, 34.52419196629455], [-77.32733291577748, 34.52460541190015], [-77.32687253737731, 34.52504939669274], [-77.32653082751493, 34.525338614417265], [-77.32648742313756, 34.52538545486853], [-77.32620960215414, 34.52572020758848], [-77.32572684078482, 34.52615268910777], [-77.32546022746757, 34.526348919792724], [-77.32534969489919, 34.5265282440378], [-77.32492033614359, 34.52707411108796], [-77.32491606165097, 34.527077582504575], [-77.32491554357067, 34.52708027249954], [-77.32491252680364, 34.527085412431305], [-77.32457240285763, 34.52761921564539], [-77.32443671005908, 34.52783781379599], [-77.32410354435963, 34.52843592379557], [-77.32390451233668, 34.52857230978867], [-77.32381529918271, 34.52870728084958], [-77.32348537444649, 34.52936187129557], [-77.32316193238228, 34.53033999353506], [-77.32296201268952, 34.53078841244791], [-77.32314457711146, 34.53118330562803], [-77.32246224292027, 34.5314869465331], [-77.32117186984945, 34.53220990914353], [-77.32007938644406, 34.533161086923116], [-77.31754363883479, 34.53441761969989], [-77.3160833728658, 34.535682751595274], [-77.3160574789813, 34.535697406681905], [-77.31402004176394, 34.536676294611], [-77.31289565760972, 34.53769683941987], [-77.3120511394185, 34.53823128381893], [-77.31046264035666, 34.53891850316228], [-77.30971460052827, 34.53942073168257], [-77.30891038524254, 34.540149925336394], [-77.30795759121219, 34.540777528823256], [-77.3071503153025, 34.54128009868659], [-77.30651865258241, 34.54177184758661], [-77.30555711150423, 34.54249157722308], [-77.30415873782876, 34.54328131611503], [-77.30365431083109, 34.543552220942644], [-77.30333144801872, 34.54374411717329], [-77.30036014391403, 34.54578492607869], [-77.30023729562481, 34.54586282714113], [-77.30013886995704, 34.545937541009806], [-77.29948579049487, 34.546312075708045], [-77.29696247455051, 34.54743907635408], [-77.29622644716025, 34.54788408881373], [-77.29581049211684, 34.54839612549674], [-77.29376098832273, 34.54999543140438], [-77.2930803709996, 34.550326710209546], [-77.29256035810144, 34.550820763843475], [-77.29216613569666, 34.551021845159276], [-77.29105226766976, 34.551326284980824], [-77.29058468708172, 34.55148126124132], [-77.28770711437384, 34.55284502242586], [-77.28729839530692, 34.55310714888827], [-77.28651228914627, 34.55368754310582], [-77.28400249523374, 34.55513134069073], [-77.28294309197194, 34.5564085232195], [-77.28108048388442, 34.557760073123035], [-77.28068682156805, 34.5579785217403], [-77.2782218720127, 34.559478908247556], [-77.27747272915909, 34.55991638631372], [-77.27739134196635, 34.559970004289546], [-77.27727434466797, 34.560040589077424], [-77.27455880900848, 34.56165619504351], [-77.2740963930165, 34.56193252774409], [-77.27265182290961, 34.56347510866082], [-77.2723054294475, 34.56371603993942], [-77.27157722884282, 34.56400882208963], [-77.27003368731687, 34.5648754271395], [-77.26964845893772, 34.56512432059204], [-77.26838862942387, 34.566430292917595], [-77.26783950136395, 34.56686740550692], [-77.26674076822484, 34.56759343733921], [-77.2660885612284, 34.56804082036744], [-77.26532793724276, 34.568555216916394], [-77.26506641566077, 34.56873302543761], [-77.26447663342043, 34.56919777020515], [-77.26297245266798, 34.57025526102098], [-77.26168969940264, 34.57098733033243], [-77.26059903772314, 34.57195386320206], [-77.26022330759054, 34.57231198019191], [-77.25922841170951, 34.573549863014065], [-77.25903805265584, 34.57371638331236], [-77.25891921216359, 34.5737810132338], [-77.2587268917037, 34.57389965081666], [-77.25715084272879, 34.574837073425094], [-77.2560237372904, 34.57536446333254], [-77.25527973687433, 34.57580175065239], [-77.25395701868243, 34.57666337027993], [-77.25322484766872, 34.57702946180731], [-77.2515428974803, 34.57773593796525], [-77.250777007247, 34.57872205180204], [-77.24882685034841, 34.58013826999415], [-77.2484669425622, 34.580258150126475], [-77.24826291245635, 34.580409393667615], [-77.24487650858728, 34.58186319629309], [-77.24455390476915, 34.582002523743604], [-77.24452795111144, 34.58201262158084], [-77.24067526127297, 34.58358217081025], [-77.2404686320982, 34.58366005413415], [-77.24021940223496, 34.58381967155138], [-77.23771289306404, 34.585233983962794], [-77.23702805791999, 34.585858047414334], [-77.23454603370443, 34.58686957820971], [-77.23275188332815, 34.58731258771779], [-77.23123923612334, 34.588235018675775], [-77.22899916748553, 34.58923293972389], [-77.22720080723462, 34.589549904953465], [-77.22540962909291, 34.58991938392617], [-77.22413438553761, 34.590163681574055], [-77.22304655493666, 34.59109305495484], [-77.22255546564274, 34.59157944469927], [-77.22162450765485, 34.59319018788623], [-77.22151150204121, 34.59338244201638], [-77.2214035097161, 34.593586430609506], [-77.21973574022287, 34.596769576984926], [-77.21924923908432, 34.596974639335535], [-77.21931224238254, 34.597307529690994], [-77.21803898143226, 34.60051996176575], [-77.21793644218933, 34.60064186456155], [-77.21759910989171, 34.60088710700713], [-77.21496717848767, 34.60304671827717], [-77.21295543834904, 34.604019134240225], [-77.20893564799849, 34.605629908949325], [-77.20662209100875, 34.606141068686384], [-77.20413026581531, 34.60709222539637], [-77.20265289321252, 34.60786932699088], [-77.20066312112225, 34.608639044487845], [-77.19847823152712, 34.60941462652213], [-77.19693386056082, 34.610293710178816], [-77.19250041770424, 34.611429803522554], [-77.18933647141259, 34.61179979578804], [-77.18611244753659, 34.61320761100839], [-77.18535520184736, 34.613517363949704], [-77.18430080596714, 34.61429168645048], [-77.18209579533607, 34.61587761137209], [-77.18019718850748, 34.61650968123487], [-77.1738360270186, 34.61904814514875], [-77.16759293100434, 34.62061855872905], [-77.16498669612761, 34.62169362296926], [-77.16640603094804, 34.62295776776544]], [[-77.43513889327478, 34.754946966530504], [-77.43513557967549, 34.754919420179824], [-77.43508043709993, 34.75487781934234], [-77.43510282199468, 34.754944204230334], [-77.43510740076182, 34.75496010219714], [-77.43512605615759, 34.754952321016525]], [[-77.30549551240442, 34.52854809762149], [-77.30589207673593, 34.52795826334247], [-77.30465855656382, 34.52814027568283], [-77.30488900656508, 34.52871671328778]], [[-77.34957533668867, 34.55162710534156], [-77.3495951068504, 34.55168494721777], [-77.34962572426423, 34.551708639581626], [-77.34966962557687, 34.55175910752091], [-77.34968772401581, 34.55178241012399], [-77.34971993456402, 34.551789394271694], [-77.34970133368273, 34.551812609896395], [-77.34972380505813, 34.551911247748485], [-77.34969947464535, 34.551935897037275], [-77.34970764606547, 34.551974778374614], [-77.34967641879292, 34.55203232268203], [-77.3496785348689, 34.55204017285945], [-77.34967562309726, 34.55204848219453], [-77.34971838749672, 34.5521568482946], [-77.34973885952347, 34.5522264392595], [-77.34973709101709, 34.552276567216715], [-77.34972098981103, 34.552318941907814], [-77.34971722334197, 34.55234063154175], [-77.3496634826625, 34.55240414867347], [-77.34966118014339, 34.55240990166267], [-77.34965862383568, 34.55241278537231], [-77.34965458468001, 34.55241297617727], [-77.34964868224364, 34.552415346581164], [-77.34964708927706, 34.552411929404165], [-77.34955661851225, 34.55240465889723], [-77.34950974369005, 34.55239978700344], [-77.34950766306427, 34.55239929914791], [-77.34949073104984, 34.552373224728555], [-77.34949446841647, 34.55236395247944], [-77.3494942057174, 34.552357423411074], [-77.3494951927434, 34.552350456447314], [-77.34949367337103, 34.55234219871228], [-77.34949397895954, 34.55233266632456], [-77.34949788641661, 34.55231098983438], [-77.34949927316605, 34.55228702955456], [-77.34949961610741, 34.55227331351891], [-77.34949932886295, 34.55224957704681], [-77.34949711795943, 34.55222832049277], [-77.3494964381992, 34.55220967113856], [-77.34949306472046, 34.55218927326291], [-77.34949196817263, 34.55217187711316], [-77.34948914951009, 34.5521440283666], [-77.34949036709757, 34.55212845624544], [-77.34949450174526, 34.552109620560394], [-77.3494925646131, 34.55208359426815], [-77.34949590418363, 34.552066454224466], [-77.34948522420667, 34.55205630022809], [-77.34948646518619, 34.55204957818799], [-77.34950406082415, 34.552034677846976], [-77.34949698572048, 34.552023649712865], [-77.34951397965213, 34.55200264788354], [-77.3494811762377, 34.55199902323645], [-77.34948162096862, 34.55198512492987], [-77.34951089431296, 34.5519724892667], [-77.34950606287242, 34.55196597088786], [-77.34950340010506, 34.55194296509539], [-77.3495235911424, 34.551906592635866], [-77.34947163142262, 34.55183216396325], [-77.34947110852889, 34.5518256214521], [-77.34947106390833, 34.551825207974034], [-77.34947082670791, 34.55182463229125], [-77.34947188237474, 34.551821255526384], [-77.34952798085223, 34.551728252817725], [-77.34955668652321, 34.55169047608635], [-77.34957392502456, 34.551627151428534], [-77.3495738811907, 34.551626796477095], [-77.34957317840593, 34.55162605507285], [-77.34955977783304, 34.55156762075527], [-77.34947816043274, 34.55154835994894], [-77.34940867674192, 34.55151081932086], [-77.34938119020997, 34.551496797566664], [-77.34935273508425, 34.55147500462593], [-77.34931039634247, 34.5514644987984], [-77.34928440091488, 34.55143737642193], [-77.34927557079303, 34.55142490358721], [-77.34928035718687, 34.55136654721714], [-77.34927672673079, 34.5513635320442], [-77.34927207864547, 34.551355340458876], [-77.34925987908078, 34.551321701347135], [-77.34923794214345, 34.55132353000812], [-77.34922331882402, 34.55131001237404], [-77.3491965197675, 34.55130929925376], [-77.34918913459867, 34.55131177031996], [-77.34917861713436, 34.5513098594708], [-77.34911630970893, 34.55130964631832], [-77.34909094157359, 34.55131336912523], [-77.3490283034098, 34.551315891895754], [-77.34899312353456, 34.551298671740206], [-77.34898105742782, 34.55129129849514], [-77.34897933599787, 34.551283916611666], [-77.34897615542741, 34.55127343169158], [-77.34896659154543, 34.55124190389628], [-77.34894327115973, 34.55122790115951], [-77.34893447617648, 34.551191053044334], [-77.34892520880246, 34.55116929515821], [-77.34894532590738, 34.55113731457549], [-77.34892951920935, 34.55110746971555], [-77.3489597966897, 34.55107918244019], [-77.34899840276496, 34.55106925277338], [-77.34903974975018, 34.551065874045726], [-77.34907959026333, 34.55107538164694], [-77.34909673060223, 34.55106178304901], [-77.34912102995875, 34.55106471718811], [-77.34911658308454, 34.551080551079494], [-77.34913994457139, 34.55108057618733], [-77.34914061957973, 34.55109239348651], [-77.34914508009882, 34.551093442731556], [-77.34915497888237, 34.551099371008455], [-77.3491641601542, 34.55110430725124], [-77.3491637965246, 34.55111635900198], [-77.34916705724868, 34.55112040229011], [-77.34916889277955, 34.55112500888947], [-77.34918928237198, 34.55113129470894], [-77.34919210086689, 34.55113162410427], [-77.34919305978528, 34.55114117640757], [-77.3491992581433, 34.5511336156841], [-77.34920229849752, 34.55112942165838], [-77.34921628488186, 34.551113326534264], [-77.34923198977664, 34.55109454641266], [-77.34922965398654, 34.55108631110297], [-77.34925384070533, 34.55106079939773], [-77.34925003629823, 34.55102745074129], [-77.34919603026472, 34.55101207549272], [-77.34918928779298, 34.551013073492456], [-77.34918816965771, 34.55100904443861], [-77.34918701697816, 34.55100346655347], [-77.34919636276496, 34.550997624604705], [-77.34921842573797, 34.55099102776567], [-77.34925097347659, 34.55097249362965], [-77.34925186063205, 34.5509692765451], [-77.34926304476859, 34.55095726904278], [-77.3492346551504, 34.55096455263782], [-77.349197066222, 34.55096705146255], [-77.34917345558506, 34.55096471262868], [-77.34917352358823, 34.55094994684232], [-77.34909981635786, 34.55092767900962], [-77.34906677742208, 34.55094495420378], [-77.34905037435368, 34.55094350244756], [-77.34900886292323, 34.550973641772806], [-77.34904919915991, 34.55099457395067], [-77.34905983224176, 34.550990340301055], [-77.34906031705046, 34.55100390653856], [-77.34905879089575, 34.551027662270016], [-77.34904825967477, 34.55103540205353], [-77.34901165918059, 34.551034444570114], [-77.34901077270142, 34.55102745854459], [-77.34899921236111, 34.5510340702699], [-77.34899050625734, 34.55103203052613], [-77.348950420404, 34.55102164177771], [-77.34894118953731, 34.55101976543435], [-77.34893353897506, 34.551015083514386], [-77.34893949872983, 34.551007208583044], [-77.34893448574621, 34.55098434468599], [-77.34893221164548, 34.55096621869917], [-77.34890284449975, 34.55095637074379], [-77.34886627989745, 34.550955762923955], [-77.34882557632704, 34.55093881151609], [-77.34880263954543, 34.55088323422645], [-77.3488028552312, 34.55088087593679], [-77.34879691765241, 34.55087572747431], [-77.3487745796571, 34.5508441248744], [-77.34877475984197, 34.550823713665714], [-77.34878507918872, 34.55080787018048], [-77.34879473698439, 34.55076853469652], [-77.3487911830986, 34.55076014521494], [-77.3487972012797, 34.55075167296324], [-77.3488095437496, 34.550745405741765], [-77.34882670499846, 34.5507244310502], [-77.34882479770792, 34.5507030061262], [-77.34882468711697, 34.5506941188356], [-77.34882106995691, 34.55068827202841], [-77.34881165391162, 34.55066539172959], [-77.34881217884343, 34.55063476906115], [-77.34881221339342, 34.55063470863662], [-77.34881247497242, 34.550634435674546], [-77.34885495569334, 34.55059795544237], [-77.3488596126034, 34.55059575582493], [-77.34886216883851, 34.55059126375573], [-77.34888459882752, 34.55057986702282], [-77.34891175495595, 34.55056917088549], [-77.3489212170158, 34.55056363854831], [-77.34892358283207, 34.55055747738791], [-77.34892051821453, 34.55055269050952], [-77.34893028076071, 34.550541212258715], [-77.34891265180309, 34.55053019885246], [-77.34890726466736, 34.550532548449674], [-77.34890310888699, 34.55052982101261], [-77.34891306656345, 34.55051217565829], [-77.34892344752657, 34.5505268942704], [-77.34894809698177, 34.550531824464365], [-77.34896163306038, 34.55053438834835], [-77.34898671351695, 34.55053341529671], [-77.34901108810226, 34.55051798887431], [-77.34904630316365, 34.55050031754149], [-77.34903569529794, 34.55048013908828], [-77.34907368362664, 34.55045154568232], [-77.34909538788865, 34.55044094661969], [-77.34908156716189, 34.55043084093562], [-77.34903097344294, 34.55043076137882], [-77.34901277416166, 34.550444718319895], [-77.34898283845052, 34.55042654008282], [-77.34897472202259, 34.55039100124626], [-77.34894919497127, 34.550328868744515], [-77.34905232843768, 34.550332284166075], [-77.34911370340026, 34.55032416272414], [-77.34915815855176, 34.55030636569444], [-77.34921276279032, 34.55028486021554], [-77.34922939290595, 34.55027893472112], [-77.3493081554189, 34.55025940341951], [-77.34931144127943, 34.550262108620394], [-77.34931706392341, 34.550259502362536], [-77.34931510032804, 34.550256316287005], [-77.34932977359523, 34.55024304696497], [-77.34935899285605, 34.55021781033135], [-77.34936470589807, 34.550216616945384], [-77.3494108736091, 34.550206588368674], [-77.34942582901986, 34.55020977928854], [-77.34944184309884, 34.55021859390036], [-77.34945468565942, 34.55023622927143], [-77.34942721219007, 34.550251008134715], [-77.3494272982655, 34.550259768442444], [-77.34945103547922, 34.55026260132623], [-77.34945903300174, 34.55024649361478], [-77.34946276892087, 34.55026310085316], [-77.34947026165347, 34.55027195740328], [-77.34945562476165, 34.550297299337245], [-77.34942165856727, 34.55031040159618], [-77.34943239936763, 34.5503464182935], [-77.34945308806918, 34.550358869598114], [-77.34942402973539, 34.550413090399964], [-77.34942195723748, 34.55043473900581], [-77.34935544306546, 34.55046498346752], [-77.34930655369267, 34.550474539352315], [-77.34928553382164, 34.550492543086065], [-77.3492573753874, 34.550509443918315], [-77.34928774528223, 34.550516203921326], [-77.34930422501452, 34.55057575154528], [-77.34931356825726, 34.550617345238315], [-77.34933017986296, 34.550621377501], [-77.34949746555185, 34.5507092052761], [-77.34959067444412, 34.55064103388139], [-77.34960755657663, 34.55063627055342], [-77.34969622304061, 34.55060285066964], [-77.34976360466224, 34.550620210384366], [-77.34975335736394, 34.550646635870415], [-77.34981800217804, 34.55067358736647], [-77.34983253181638, 34.550707411267524], [-77.3498896393134, 34.5507286918336], [-77.34997595138292, 34.55070432795024], [-77.34998932819981, 34.55070945704692], [-77.34999072064392, 34.55070993695593], [-77.35004460971253, 34.55072797023877], [-77.35008554005566, 34.55074652991573], [-77.3500907108824, 34.550753429400764], [-77.35009370356264, 34.55075632195806], [-77.35009587950205, 34.55076268773636], [-77.35008517226213, 34.550762522021856], [-77.35006627514545, 34.550771917812476], [-77.35005372066182, 34.550773220187466], [-77.35003591109547, 34.55077049634073], [-77.349996266914, 34.5507763097736], [-77.34998665464205, 34.55077826525503], [-77.34997712370576, 34.55077903100358], [-77.34989645354636, 34.550789834046576], [-77.34988818898367, 34.55079174746929], [-77.34988246473017, 34.55079031117932], [-77.3498548111699, 34.5507907007727], [-77.34979083934664, 34.55075670949853], [-77.34971533613685, 34.5508107722927], [-77.34969899322873, 34.5508179366405], [-77.34969096901565, 34.55083125526155], [-77.34967773568192, 34.55082453138732], [-77.34962073640014, 34.55084195072062], [-77.34959256472885, 34.55084206402408], [-77.3495635842182, 34.55085055937193], [-77.34952547348679, 34.550857689145865], [-77.34950784131087, 34.55087123468152], [-77.34951187670137, 34.55088968151445], [-77.34954275953388, 34.55087368194481], [-77.34958895686195, 34.550890164319796], [-77.34958926080577, 34.550891472021476], [-77.34959123311589, 34.55089994941713], [-77.34962009129114, 34.55090373273665], [-77.34964009358791, 34.550909399568205], [-77.34964171750015, 34.55091212270388], [-77.34964243806851, 34.550913070664365], [-77.34964447314545, 34.55091559759055], [-77.34963184692168, 34.55094519740089], [-77.3495892809643, 34.550984809748044], [-77.349549866234, 34.550993751256655], [-77.34948883645191, 34.55108429427958], [-77.34948764715233, 34.55108766576259], [-77.34948801779126, 34.55108830565082], [-77.34948785522296, 34.55108887517729], [-77.34948864705346, 34.5510925270464], [-77.34951442351365, 34.55118945280894], [-77.34968352956321, 34.55115466605776], [-77.34973127195687, 34.551146063998644], [-77.3498273068958, 34.551128760727195], [-77.34988096916969, 34.55110564206071], [-77.34993430492368, 34.55105663668975], [-77.35003472061734, 34.55103715203319], [-77.35007823852939, 34.55106400946775], [-77.35015671967426, 34.551114484847176], [-77.35020248741719, 34.551151577553185], [-77.35024940675538, 34.5512235567528], [-77.35027018742022, 34.55125373194167], [-77.3503133773338, 34.551309037109384], [-77.35034558252995, 34.55133212653336], [-77.35036600400977, 34.55135547224212], [-77.35037308059415, 34.55138454506095], [-77.35037771117803, 34.551388708127426], [-77.35042359758648, 34.551406663363075], [-77.35043239337372, 34.55142320695023], [-77.35038971692113, 34.5514481856389], [-77.35039193024997, 34.551490963384545], [-77.35046059782616, 34.55151040155907], [-77.3504756106964, 34.55155823504712], [-77.35048779515952, 34.55165979136257], [-77.35049908091298, 34.55167726795623], [-77.35055371479807, 34.5517305961747], [-77.35055375242608, 34.55173064409228], [-77.35058000971178, 34.551788031874324], [-77.350613420571, 34.55180610244254], [-77.35064878547433, 34.55186380158456], [-77.35066542683965, 34.55189814980305], [-77.35069469408258, 34.55198597085804], [-77.3507216150401, 34.552012474063915], [-77.35074020589632, 34.5520697559218], [-77.35075796872741, 34.5521296529386], [-77.35076476649385, 34.55217431448469], [-77.35078837004794, 34.55221738383363], [-77.35079439524995, 34.55224682127848], [-77.3508355479734, 34.55227926687187], [-77.35088312951979, 34.55232612092126], [-77.35089890359714, 34.55235419161416], [-77.3509494117289, 34.55239665182652], [-77.35100598638329, 34.55244746739472], [-77.35101847691718, 34.55245939384006], [-77.35101942591552, 34.55246435905621], [-77.35102748279974, 34.55246980027707], [-77.35118773000043, 34.55255744615893], [-77.3511596055164, 34.55259965911846], [-77.35122094205781, 34.55259404611391], [-77.35128472343388, 34.55266589777247], [-77.3513061334988, 34.55271770911276], [-77.35128639274164, 34.55274509237582], [-77.35127504462, 34.55278970142495], [-77.35125376246387, 34.55281641601278], [-77.35113287504475, 34.55286124588925], [-77.35101787968212, 34.552887574696754], [-77.35087744793438, 34.552813142526574], [-77.35062743664986, 34.5527923693485], [-77.35059997261048, 34.552764443683024], [-77.35050218228459, 34.552614348611556], [-77.35044218042215, 34.552542330510406], [-77.35036073744274, 34.552480005980975], [-77.35031329062977, 34.55235877997399], [-77.35031596277132, 34.55231567351382], [-77.35027658522081, 34.55230231550375], [-77.35024736114272, 34.552246354517386], [-77.35015013949456, 34.552156624554385], [-77.35011518411422, 34.55209974633935], [-77.35011185520837, 34.55201237650295], [-77.35009195889825, 34.55198067825583], [-77.35008604423147, 34.55196375934369], [-77.34998805220164, 34.55187322066416], [-77.34997916282015, 34.55180326638755], [-77.34995323310781, 34.55175582100754], [-77.34988396249584, 34.55165309718994], [-77.34988222766283, 34.55164362875411], [-77.34987647168735, 34.5516396033975], [-77.34986875286297, 34.55163676981193], [-77.34984184975558, 34.551632604320936], [-77.34967311015626, 34.55160762380555]], [[-77.34201449854692, 34.528820839123696], [-77.34205509067723, 34.528836882702706], [-77.3420545254788, 34.52884032644508], [-77.34205040214522, 34.52884043039552]], [[-77.3419348706229, 34.53662900815604], [-77.34195177308393, 34.536614839201015], [-77.34197117698582, 34.53658958618281], [-77.3420207394312, 34.53652421359267], [-77.34208254210151, 34.53648535481736], [-77.34212200337114, 34.536449310585496], [-77.34234759796941, 34.536338494585024], [-77.34236973596968, 34.53632975539726], [-77.3423776469511, 34.53632536155884], [-77.34240686132576, 34.53631628822496], [-77.34266941634374, 34.53621899821252], [-77.34274432480369, 34.536022920140745], [-77.34276986032152, 34.536002027746505], [-77.3429648876551, 34.5358714389216], [-77.34296974405243, 34.53586840507935], [-77.34296999429945, 34.53586804414173], [-77.34316826813247, 34.53574851126886], [-77.34320035269036, 34.535732268892794], [-77.34327715354112, 34.53570144344691], [-77.34346833523124, 34.53561432596838], [-77.34351621783487, 34.53542222949645], [-77.3435694254512, 34.53537577417819], [-77.34370800367498, 34.53523420511174], [-77.34376603250624, 34.535141468035256], [-77.34386058137518, 34.53495237607415], [-77.34391547963874, 34.53487514675994], [-77.34392656442228, 34.53484380963536], [-77.34397650259464, 34.53474637364684], [-77.34414019021887, 34.53474080889928], [-77.34436975089919, 34.5347160433293], [-77.34456314325675, 34.53465690257738], [-77.34459947347142, 34.53453191353907], [-77.34469057709379, 34.53447054225296], [-77.34476955394122, 34.534401561981056], [-77.3447791488853, 34.534389461297934], [-77.34478020656444, 34.53438349912892], [-77.34483793335139, 34.53429388014529], [-77.34485466902618, 34.534250375154514], [-77.34488037385917, 34.534190343093854], [-77.34488352892807, 34.53417835110639], [-77.34484191022915, 34.53412980114505], [-77.34477640985824, 34.53410437294536], [-77.34468676163664, 34.53408589198047], [-77.34458105010359, 34.53406480456726], [-77.34453161536909, 34.534052038213815], [-77.34444530026497, 34.53402725152031], [-77.34438617340639, 34.53400430795188], [-77.34428249622187, 34.533965472459414], [-77.34426647214838, 34.53392121839679], [-77.34421580747417, 34.533852657892496], [-77.34431803722137, 34.533640854444364], [-77.34432131211224, 34.53359265809105], [-77.34434993743295, 34.533559539485324], [-77.3443967211722, 34.53354717994441], [-77.34458146976058, 34.53344152241647], [-77.34479408444507, 34.53333822095094], [-77.34484281969688, 34.533302685277974], [-77.34483426946456, 34.53327403172979], [-77.34483218177137, 34.533251814790546], [-77.34484613142044, 34.53305590396438], [-77.34483204673747, 34.53302953188558], [-77.34483038563106, 34.53301182665779], [-77.34481217754913, 34.53290998100047], [-77.34480463301199, 34.53288096709207], [-77.34478514676478, 34.532804710952334], [-77.34478101681225, 34.5327920548052], [-77.34477249671751, 34.53277166524902], [-77.34473339120997, 34.53267649769075], [-77.34472774326439, 34.53262568249062], [-77.34472531248112, 34.53261645524195], [-77.34472359353832, 34.532609940184784], [-77.34465663126467, 34.532565132658576], [-77.34465551503673, 34.532466324787045], [-77.34481503528006, 34.53243005632233], [-77.34498649194414, 34.53241100859294], [-77.3450116296806, 34.53241593661586], [-77.34509064046517, 34.53250268357422], [-77.34510882586449, 34.53255978752269], [-77.34510927785328, 34.53256120680604], [-77.34510996104736, 34.532563352093646], [-77.34513680870535, 34.532618450273375], [-77.34517164729886, 34.53263292509286], [-77.34520239827434, 34.53265439742857], [-77.34521135293653, 34.53266321724105], [-77.34522118346192, 34.53266751446361], [-77.34524230963707, 34.53266996110987], [-77.34525096025452, 34.53267630655116], [-77.34525169017948, 34.53267842603969], [-77.34525062875765, 34.532690679358936], [-77.34525028758786, 34.532693760640385], [-77.34525026356054, 34.53269393255624], [-77.34525026583549, 34.53269410923947], [-77.34525033686458, 34.53270333505531], [-77.3452524848899, 34.53272421540011], [-77.34528041583671, 34.532731632039095], [-77.34529863995041, 34.532736471172626], [-77.3453394410121, 34.53274730525105], [-77.34539560113649, 34.532787354632674], [-77.34543014605394, 34.53279934362925], [-77.34549135326071, 34.532873207620185], [-77.34548668382821, 34.532935335692954], [-77.34548031690238, 34.5330027282307], [-77.34547201978856, 34.53311218875981], [-77.34541102392106, 34.53319104236152], [-77.34537847551658, 34.53331504505265], [-77.34537745613666, 34.53331828258766], [-77.34537726949235, 34.53332205168101], [-77.34536655582978, 34.533442260808826], [-77.3453517401051, 34.53355042291881], [-77.34535142052589, 34.5336892584798], [-77.34534391298473, 34.53379500560833], [-77.3453408236065, 34.533832326447595], [-77.34526226102597, 34.53394690764936], [-77.34532613183697, 34.53403474258604], [-77.34534011277863, 34.53405811543726], [-77.34535322767171, 34.534064288955264], [-77.34536592371668, 34.53407419215281], [-77.34538904430714, 34.53411227959576], [-77.3454186903499, 34.53413542885084], [-77.34542328768066, 34.5341379547561], [-77.34543903279452, 34.534150204680515], [-77.34544000590179, 34.53415085038717], [-77.34544134258205, 34.534152923432885], [-77.3454475427445, 34.53416506713701], [-77.34543972646725, 34.53417984836048], [-77.34542605582496, 34.53420758020694], [-77.34540907677047, 34.53423180701284], [-77.34537019106622, 34.53429280154214], [-77.3453700642343, 34.53429862552626], [-77.3453664379862, 34.534302755522695], [-77.34517266113613, 34.53444226787097], [-77.34516096859522, 34.53445064109585], [-77.34516055869027, 34.53445092965209], [-77.3451603092329, 34.53445121704068], [-77.34515804615924, 34.53445332667438], [-77.3450730723387, 34.53453253913874], [-77.345039874616, 34.53459095599713], [-77.34501685108168, 34.53462936796433], [-77.3449586966251, 34.53471069215432], [-77.34495082935786, 34.53472142621578], [-77.34494771311986, 34.53472662674361], [-77.3449383894512, 34.534740208588325], [-77.34489782577401, 34.534819821467565], [-77.3448466397204, 34.53486357961047], [-77.34475628186529, 34.534976879199895], [-77.34474041257886, 34.53499158847134], [-77.34473406276814, 34.53500218760438], [-77.34473307170808, 34.53501623928432], [-77.34468871849427, 34.53509062129159], [-77.34464794690251, 34.53513698808838], [-77.34462529161515, 34.535183942766594], [-77.34454400395214, 34.53527435339072], [-77.34435759380516, 34.53554169466582], [-77.34435416230673, 34.53554648781171], [-77.34435351848754, 34.5355484352193], [-77.34435046356045, 34.53555194196842], [-77.34433254035655, 34.53556065139392], [-77.34430124688859, 34.53555410123925], [-77.3439771236202, 34.53558823147621], [-77.34395743365624, 34.53557263880649], [-77.34386933400593, 34.535616244119055], [-77.34377117538145, 34.53576174619469], [-77.34374984055833, 34.53587825561926], [-77.3435537846741, 34.53605336021533], [-77.34346577483772, 34.53610987027102], [-77.34320239558936, 34.53617442096141], [-77.34315828319689, 34.5361809889299], [-77.34308626854818, 34.53621854443545], [-77.34293348820545, 34.53634754791997], [-77.34293790245266, 34.536374543916715], [-77.34295552392416, 34.53646169533766], [-77.34303691774554, 34.536470463632234], [-77.34295475939278, 34.53649480623607], [-77.34292041211374, 34.53658957858583], [-77.34288531672547, 34.536614683656275], [-77.34290252271023, 34.536642656642485], [-77.34293261619669, 34.53673028821483], [-77.34294791964416, 34.53684965204614], [-77.3429474534023, 34.53685113814455], [-77.34307085265064, 34.53695521966208], [-77.34309444032505, 34.536980135111456], [-77.34311510671986, 34.537056948111086], [-77.34311197979726, 34.53707171234234], [-77.34303580185323, 34.53714254117331], [-77.3429818487073, 34.53721284353099], [-77.34293701858353, 34.53726314063296], [-77.34287845322702, 34.5373143414095], [-77.3428291106744, 34.53735722689323], [-77.34273690715625, 34.53742904524956], [-77.34268290038085, 34.537467544302004], [-77.34260931396382, 34.53751125723196], [-77.34246716606084, 34.537610923057656], [-77.34233801074764, 34.53770332071848], [-77.34220776947612, 34.53773304729082], [-77.34213936232045, 34.53780579146468], [-77.34211798627166, 34.53782675924505], [-77.34199868478805, 34.53787966306977], [-77.34199226981309, 34.53790604931193], [-77.34198354646685, 34.53794132020384], [-77.34197861027481, 34.53796921903073], [-77.3419748450136, 34.537992256653794], [-77.34197327509162, 34.53800058888893], [-77.34197082973003, 34.53801127712456], [-77.34196616003754, 34.53803221477982], [-77.34194477482276, 34.538091325616875], [-77.34194232466506, 34.53809684836137], [-77.34194096715044, 34.53809996375271], [-77.3419359568559, 34.5381141589926], [-77.34189736379001, 34.538202936554015], [-77.34188805341616, 34.538227065011384], [-77.3418738821905, 34.538265633433745], [-77.34185821630005, 34.53830807849829], [-77.34184543725253, 34.538355604976246], [-77.34183173184257, 34.538377496099734], [-77.34181049884263, 34.53840904866941], [-77.34179780115028, 34.538423662374655], [-77.34177511743752, 34.538461028812364], [-77.34175926579867, 34.53849041055], [-77.34175315330029, 34.53850533196303], [-77.34173011164978, 34.53852806234754], [-77.34170409760196, 34.538514761692134], [-77.34169561001828, 34.538499567738256], [-77.34171205143151, 34.53848532378593], [-77.34169530617594, 34.538438406797184], [-77.34169774267305, 34.538398899124786], [-77.34169445636958, 34.53837732438046], [-77.34168510542781, 34.538348125050554], [-77.34168505371905, 34.53834798255699], [-77.34168212283191, 34.538317893952595], [-77.34169780195916, 34.538278183642255], [-77.34169970033822, 34.538254160663826], [-77.34169917871463, 34.538230659635474], [-77.34173701630738, 34.538126383258074], [-77.34173942288567, 34.53812504552251], [-77.34174429249113, 34.53812233866418], [-77.34183880869983, 34.53807117417673], [-77.34185441871088, 34.53805783234124], [-77.34185522762539, 34.53804817318513], [-77.34186194284683, 34.53803332510615], [-77.34187467685035, 34.53800559455098], [-77.34190719731819, 34.53797949230735], [-77.34189346234774, 34.537952639894755], [-77.34189277879432, 34.537949659363434], [-77.34191050462644, 34.53791781184538], [-77.34190618645381, 34.53787917973975], [-77.3419106278558, 34.53785658943478], [-77.34190081585814, 34.53783202080187], [-77.34189428011435, 34.53776751723359], [-77.3417699122547, 34.537754422946705], [-77.34175564377972, 34.537751738355084], [-77.34174801732055, 34.537753054849105], [-77.3417400837343, 34.53775377665723], [-77.34163778219764, 34.53777343056428], [-77.34155751496812, 34.53778910103221], [-77.34155085154258, 34.53779131941951], [-77.34152913227784, 34.53778906037031], [-77.34143526222844, 34.53775279590371], [-77.34137686132757, 34.53768855562734], [-77.3413530847369, 34.53757363020634], [-77.34135030076759, 34.53756402936179], [-77.34131545653368, 34.537452570320085], [-77.3413191157386, 34.537357990395506], [-77.34132910941021, 34.53730531483129], [-77.34133621373341, 34.537204765910076], [-77.34136957310253, 34.53714206957517], [-77.34140406200787, 34.53709340392987], [-77.34145252282752, 34.53706562510426], [-77.34156948773392, 34.53698477905198], [-77.34162738848867, 34.53695372256801], [-77.34166385777704, 34.53691281405706], [-77.34182183789316, 34.536799983540746]], [[-77.34385621685988, 34.53085281023954], [-77.34385340304517, 34.53084455851071], [-77.3438503719968, 34.53083239876671], [-77.34387075404231, 34.530824317646584], [-77.34388145886993, 34.530833709994766], [-77.34406547428648, 34.53089125308848], [-77.34410016620478, 34.5309095622669], [-77.34411233476096, 34.53092971221224], [-77.3442606310479, 34.5310294861758], [-77.34426462499623, 34.53103406490817], [-77.34435010690731, 34.53114031985029], [-77.34437279080987, 34.5311859619524], [-77.34444842911932, 34.531306237436304], [-77.3444845703493, 34.5313657919207], [-77.34448509381588, 34.531389786486514], [-77.34450082819484, 34.5314858624464], [-77.34453250510634, 34.53154780042446], [-77.34454267572997, 34.53160225083148], [-77.34456185907085, 34.531675550690466], [-77.3445802045782, 34.53175305333579], [-77.3446333089159, 34.53179975000592], [-77.34465152185906, 34.53183140896459], [-77.34466218886547, 34.53184858900141], [-77.34468534429516, 34.531887747237974], [-77.34469925724154, 34.53190431435314], [-77.34473248406056, 34.53194216926288], [-77.34482388824537, 34.53204630480561], [-77.34482655159502, 34.53204933912164], [-77.34482901813394, 34.53205068896791], [-77.34482345280755, 34.532065179814246], [-77.3446486747741, 34.53221460108639], [-77.34462362880294, 34.53221931269086], [-77.34461540329269, 34.53220911233286], [-77.3446139838582, 34.53220403965394], [-77.34459972013933, 34.53219076976478], [-77.34451966774205, 34.53209520065437], [-77.3444677239361, 34.53207951241894], [-77.34443158444216, 34.53203625597556], [-77.34438655546656, 34.531991943857456], [-77.34432496439258, 34.53194618994683], [-77.34430319245547, 34.53192222090605], [-77.34428340872819, 34.531884375360036], [-77.34424868968564, 34.53177149114599], [-77.3442530645671, 34.531759249300706], [-77.34424193339765, 34.53174952399903], [-77.34420284738356, 34.53165114737659], [-77.34416554420011, 34.53158412859361], [-77.34412564460042, 34.531539845865886], [-77.34410522842325, 34.53150909577441], [-77.34407306394026, 34.53143759949391], [-77.3440697955121, 34.531425471924344], [-77.34407074373024, 34.53141451697648], [-77.34405445840534, 34.53136856297892], [-77.3440109074194, 34.53121844864957], [-77.34398909745123, 34.53119226348591], [-77.34395196679506, 34.531130252307314], [-77.3439211670882, 34.53107962784496], [-77.34395877147581, 34.531016553771565], [-77.34397531517891, 34.530949427063646]], [[-77.34557221248178, 34.546632938339464], [-77.34544744951077, 34.54654315087927], [-77.34542974249266, 34.54650476114826], [-77.34541988159691, 34.54641003557623], [-77.3454149906691, 34.5463263587916], [-77.34538163322532, 34.54623295527538], [-77.34538887189726, 34.54616967743592], [-77.34548121696554, 34.546099047422516], [-77.34552259695775, 34.54615043751465], [-77.34560353077686, 34.546183712788995], [-77.34567443613322, 34.54623271766557], [-77.34569351722614, 34.5462482557309], [-77.34576861160929, 34.54630016528455], [-77.34581009907576, 34.54635389191348], [-77.34583351918853, 34.546371732456734], [-77.34586602463526, 34.54643715624414], [-77.34587995675015, 34.54645727374813], [-77.3459098001288, 34.546490014183085], [-77.3459809638752, 34.54657412769332], [-77.345946056636, 34.54664861418464], [-77.3460234644525, 34.546793724048875], [-77.34585793575677, 34.54678807107407], [-77.34579054016776, 34.54676627542882], [-77.34566387145706, 34.546690991312865], [-77.34558959313678, 34.546676957666484]], [[-77.3994148417887, 34.57932515383854], [-77.3993929739837, 34.57933155818398], [-77.39937345380636, 34.579328596447546], [-77.39919596644559, 34.57933848488748], [-77.39919232016567, 34.57933762723747], [-77.39918288063464, 34.579335060153085], [-77.39909746371734, 34.57931397160601], [-77.39904823133425, 34.57930139643832], [-77.39904821238494, 34.57930138301945], [-77.39904817932104, 34.57930138873472], [-77.39899896077678, 34.57929626039091], [-77.39897724942696, 34.57928198284213], [-77.39893424259913, 34.579301198351274], [-77.39890045581973, 34.57932963311957], [-77.398866282171, 34.579343918121694], [-77.39885120322077, 34.57934849292716], [-77.39883588810734, 34.579348558264385], [-77.39882122232927, 34.57935493727206], [-77.39880195038151, 34.57937262307774], [-77.39878281998949, 34.57937216993822], [-77.39875269815597, 34.579381410077204], [-77.39874210335263, 34.57938724265718], [-77.39870552291075, 34.57940169832908], [-77.39870344542882, 34.57940172658034], [-77.39870247075832, 34.57940332712506], [-77.39869715788961, 34.5794051438833], [-77.3986541926664, 34.579422290273506], [-77.39864247909105, 34.57942565510304], [-77.39862956657656, 34.57942563027982], [-77.39862278931294, 34.5794351075644], [-77.39860493975313, 34.57944573221134], [-77.39857703932313, 34.579452539119835], [-77.39853765795215, 34.57946180151277], [-77.39850643409032, 34.579487065479555], [-77.39846755814914, 34.57948016285306], [-77.39844665302931, 34.57948301356695], [-77.39840792936783, 34.579505715813355], [-77.3983592272696, 34.579506380997465], [-77.3983583578885, 34.57950675469705], [-77.39830942341123, 34.579549516185395], [-77.39829155716737, 34.57955055696412], [-77.3982109176162, 34.57958783531243], [-77.39810769532285, 34.57960141982606], [-77.3978799390437, 34.57959098000128], [-77.39781689889043, 34.57963900183397], [-77.3977042841221, 34.5796697426093], [-77.39764189164781, 34.57955739844211], [-77.397685674517, 34.57940966669701], [-77.39768091037621, 34.57912719595423], [-77.39775089302506, 34.579045939835126], [-77.39781693869136, 34.57889124491632], [-77.39787070260445, 34.5787331649705], [-77.397955442799, 34.57866301369673], [-77.39811747627887, 34.57853889111674], [-77.39821097093673, 34.5784920684236], [-77.3983911401174, 34.57838786387663], [-77.398401342188, 34.578379237454854], [-77.39840798179259, 34.578375145373634], [-77.3984250213204, 34.57836461458814], [-77.39850648737843, 34.578308660885654], [-77.39853176750772, 34.57828867027908], [-77.39855573992021, 34.57827964598101], [-77.39857231283494, 34.57827343822356], [-77.39859970339367, 34.57825732694876], [-77.39859716003131, 34.57827853077594], [-77.39860499106986, 34.5782811443824], [-77.39861331278016, 34.578276200159806], [-77.3986106658426, 34.5782561600051], [-77.39862221572707, 34.57824837974232], [-77.39862961826, 34.57824535925872], [-77.39863243077353, 34.57824387523722], [-77.39864541078695, 34.57823551427895], [-77.39864338853234, 34.57823205687373], [-77.39864926342898, 34.57822584151193], [-77.39864881438604, 34.57822385773732], [-77.39864433104137, 34.578218652959244], [-77.39864555600926, 34.578209112713296], [-77.39864403659274, 34.578203160660316], [-77.39864405211591, 34.57819215735798], [-77.39864193375595, 34.578184187619584], [-77.39863859592143, 34.5781832734913], [-77.39863944700296, 34.578176873885496], [-77.39863992273301, 34.57816621732513], [-77.39865424808079, 34.57814928181337], [-77.3986672673641, 34.57814976526346], [-77.39869651678664, 34.57813904026457], [-77.39870349980657, 34.57813572072628], [-77.39870964773719, 34.57813624594764], [-77.39878476632006, 34.578118782408595], [-77.39873416969697, 34.57809303579102], [-77.39870350051177, 34.57811948050113], [-77.39869175441348, 34.57811954557384], [-77.39867200560872, 34.5781159188886], [-77.39865424969264, 34.5781126581751], [-77.39863267235665, 34.578110907151995], [-77.39863653899536, 34.57808709801205], [-77.39863961787881, 34.578070884927634], [-77.39863975905338, 34.57806009755632], [-77.39865425279416, 34.57804223621502], [-77.3986635461548, 34.578040143733176], [-77.39870025702558, 34.57802833201115], [-77.39870350436199, 34.57803087896383], [-77.39872656404887, 34.578045886100476], [-77.39875275403494, 34.57806336209503], [-77.39875817466415, 34.578063706409694], [-77.39880200306784, 34.57811189110537], [-77.39880447432115, 34.5781132757666], [-77.39880665913866, 34.57811562354613], [-77.39885125256846, 34.578150571891754], [-77.39886322281077, 34.57814763509284], [-77.39890050378125, 34.5781486495341], [-77.39894146526272, 34.57814031120853], [-77.39895648546556, 34.57813982474215], [-77.39899900567161, 34.57815792774305], [-77.39908139451275, 34.578164762528516], [-77.39909750753321, 34.57816838146305], [-77.39917111653656, 34.57806303615899], [-77.39911091691731, 34.57798002072384], [-77.39919601649875, 34.57799024897807], [-77.39925820836585, 34.57790519568421], [-77.39933034435957, 34.577895316026655], [-77.39939302426149, 34.577886731444856], [-77.39945656314546, 34.57787802916383], [-77.39952601745406, 34.57786851666901], [-77.3995900305373, 34.57781317816541], [-77.39961384976749, 34.5778125328556], [-77.3997870376146, 34.57770214343829], [-77.4000069842503, 34.57770541360726], [-77.40018104144491, 34.577813625952416], [-77.40031639651063, 34.57789777666529], [-77.400359625714, 34.5781236655876], [-77.40043619632397, 34.578305063854884], [-77.40031003418406, 34.578462285734474], [-77.39988689762234, 34.578808901209136], [-77.39983148797981, 34.57886483284886], [-77.39978700089407, 34.578914106566344], [-77.39964198056221, 34.57911255371888], [-77.39944049985976, 34.579297888023284]], [[-77.34934897057022, 34.5502888619573], [-77.34931888295277, 34.55029143560481], [-77.34932141940212, 34.55030970734254], [-77.34935199937605, 34.550307551167975]], [[-77.34417701029861, 34.5303083577083], [-77.34410896593218, 34.530337300162145], [-77.34410379994135, 34.53034949404167], [-77.34407753510658, 34.530368668507826], [-77.34406232992008, 34.53036499726344], [-77.34405301372014, 34.530368165450376], [-77.34404926889013, 34.530370337061235], [-77.34404177946229, 34.53037371906278], [-77.34404059813274, 34.53037462520721], [-77.34403500314792, 34.53037891686605], [-77.34402819866297, 34.53038038653346], [-77.34402351481609, 34.53038108643132], [-77.34402252770937, 34.53038413969759], [-77.34402226236219, 34.53038823905432], [-77.34402147680663, 34.53039194151373], [-77.34400472434132, 34.5304085869023], [-77.34400439008664, 34.530410587810394], [-77.34401429848958, 34.53042357679102], [-77.34397744341923, 34.53045357601997], [-77.34396944605831, 34.530455675040045], [-77.34395681423769, 34.53046245027635], [-77.34394800853762, 34.53050733754631], [-77.34390074938173, 34.53057776805167], [-77.34390032144921, 34.530592988350136], [-77.34389501269074, 34.53060573556148], [-77.3438753382547, 34.53062570791998], [-77.34381029827378, 34.530646211199155], [-77.34381526598304, 34.53060522633791], [-77.34375951167976, 34.530539770419985], [-77.34369791943769, 34.53049970071051], [-77.34369420386986, 34.53049271338858], [-77.34368264542911, 34.53047097705759], [-77.34362217332226, 34.530388189451855], [-77.34360686375389, 34.53031745773241], [-77.3435831733602, 34.53027139103813], [-77.34347075871075, 34.53017910212568], [-77.34344801975543, 34.53013973180455], [-77.34339696788882, 34.53005336308435], [-77.34342594669894, 34.52997166654652], [-77.34341679804467, 34.52987613601509], [-77.34342965426525, 34.529803840900364], [-77.34343516038831, 34.52976087741909], [-77.3434305614791, 34.52974250557946], [-77.3434533528858, 34.5297095846561], [-77.34345435721109, 34.529677876997084], [-77.34345230446687, 34.52964502569444], [-77.34350520841946, 34.52965546055008], [-77.34351461473781, 34.529663228506735], [-77.34352065612308, 34.52966833788495], [-77.34354467369987, 34.529689994107976], [-77.34356749341521, 34.52972280371648], [-77.34358758016002, 34.52972868847601], [-77.34360141263728, 34.52973893250168], [-77.34364403400522, 34.529772995770315], [-77.34365471555421, 34.52979855997483], [-77.34369796167097, 34.52980747528626], [-77.34386263439337, 34.52986395263], [-77.3438802447258, 34.529869248647216], [-77.34389266149283, 34.5298751858238], [-77.34399704398383, 34.52996702292543], [-77.34399594802723, 34.53002304172381], [-77.34399598336145, 34.53008958526038], [-77.34403767737196, 34.53011213811111], [-77.34408183108592, 34.530182528013235], [-77.34409041979525, 34.53019290095341], [-77.34409149637024, 34.53019825215953], [-77.3440975121236, 34.5302075267], [-77.34412780690042, 34.53025423247986], [-77.3441438140533, 34.53027317059406]], [[-77.35933936320266, 34.549556646566174], [-77.3593185658614, 34.54956368266893], [-77.35932661459759, 34.549549655489656], [-77.35931494207581, 34.549535810449214], [-77.359314528429, 34.54950639336899], [-77.35933375848751, 34.54948742087796], [-77.35934114676564, 34.54947872119689], [-77.35937183983205, 34.54948193753652], [-77.35936899996454, 34.549525515992705], [-77.35935086507348, 34.54954616366257], [-77.35934568288079, 34.549550766714724]], [[-77.34504654894424, 34.545448888765875], [-77.34493804379844, 34.5455000813625], [-77.34506230671661, 34.54550712098622], [-77.34510179429742, 34.54552755538124], [-77.34513542921468, 34.54557247227596], [-77.34517546803315, 34.54563583085822], [-77.34517593510918, 34.545710674533765], [-77.3452319037315, 34.54574083056298], [-77.34529149589511, 34.54581369479311], [-77.34529348250268, 34.545816172212774], [-77.34533000156645, 34.54590796080417], [-77.345346309522, 34.54593098142464], [-77.34540672554212, 34.545996776832204], [-77.34528518794254, 34.546087263907076], [-77.3451622772026, 34.546034857489154], [-77.34508353295172, 34.5459687883288], [-77.3450054583594, 34.545912154472845], [-77.34502527791979, 34.54581112328303], [-77.34500586418949, 34.54573514336114], [-77.34500970306576, 34.545667594222266], [-77.34496347632489, 34.545618832069344], [-77.34493291623261, 34.5456050152676], [-77.34490534423747, 34.54553408642619], [-77.34489131316136, 34.545515816976604], [-77.34485571572786, 34.545511926088786], [-77.34478481030581, 34.54544569272997], [-77.34473048385723, 34.54540753376107], [-77.34491076871932, 34.54529888135169], [-77.34495548793058, 34.54537516182751], [-77.34502251425079, 34.54541655282746]], [[-77.35582266288115, 34.55172637752273], [-77.3558313687317, 34.55164423053041], [-77.3558942321562, 34.55159706557335], [-77.35595609838452, 34.551564773002994], [-77.35615442263672, 34.55147531260255], [-77.3561544493381, 34.55147530104196], [-77.35615446233588, 34.551475273888144], [-77.35618921570946, 34.55140909803409], [-77.35617285761737, 34.55140104361071], [-77.35618791909465, 34.551367399060155], [-77.35618741912631, 34.55134815095559], [-77.35620455871333, 34.55131671226121], [-77.35620568888757, 34.55131395162504], [-77.35624026842807, 34.55127933697377], [-77.35624644624096, 34.55127168881108], [-77.35628623934046, 34.5512549043385], [-77.35635590363839, 34.55125150849234], [-77.35642843600364, 34.55123604933664], [-77.35648292415962, 34.55122675846347], [-77.35655314031716, 34.551211138110524], [-77.35659967044492, 34.55119875902723], [-77.35660570042995, 34.55119811059816], [-77.3566066393156, 34.55119348562488], [-77.35662346400048, 34.55116296515502], [-77.35665321671777, 34.55112733297981], [-77.35667312804613, 34.55110673096134], [-77.35673505128037, 34.551096315044965], [-77.35674022799128, 34.55113937822745], [-77.35674343549275, 34.551145693413424], [-77.356738755863, 34.55115385514087], [-77.35675071731436, 34.55115590917778], [-77.35678581219548, 34.55116155702801], [-77.35677905504045, 34.55114056538648], [-77.35677603958476, 34.5511256421227], [-77.35679029392563, 34.55107774160659], [-77.35682979335262, 34.55105876964518], [-77.35690056467274, 34.55100066046727], [-77.35692947351403, 34.55098308240441], [-77.35695214219238, 34.55093275590775], [-77.35695236679956, 34.55093212796742], [-77.35695282172753, 34.55093193138891], [-77.35700524042787, 34.55089576030447], [-77.35710403685502, 34.55087744169023], [-77.35715003276654, 34.55086379979131], [-77.35724626739426, 34.550888844476944], [-77.35720983190376, 34.550833724052765], [-77.35725033820924, 34.55076995317237], [-77.35725447450811, 34.550768651683], [-77.35725277076611, 34.550766336328095], [-77.35725655615525, 34.550762027300124], [-77.35731371287463, 34.55069635659746], [-77.35735086496271, 34.550666437301125], [-77.35740572162547, 34.550649150300174], [-77.35744951299318, 34.550644914148116], [-77.35747897428183, 34.55062950867075], [-77.35749373042644, 34.550609233281286], [-77.35754910955593, 34.55058198430775], [-77.35762202522784, 34.55057492312909], [-77.35771371049313, 34.550516356036134], [-77.35773197974254, 34.55050423479871], [-77.35774775812774, 34.550479877107655], [-77.3577881579975, 34.55048043747761], [-77.35784644416135, 34.550456679720895], [-77.35792428445589, 34.55048603848851], [-77.35784472613285, 34.550531684547266], [-77.35777719125541, 34.55052623197883], [-77.35778473747723, 34.550567335768626], [-77.357744518244, 34.55062131511192], [-77.35772604840881, 34.55062553452606], [-77.35772745650739, 34.55063678864813], [-77.35769468133952, 34.55067186191389], [-77.35764781652352, 34.55071165724325], [-77.3575811496412, 34.55078026472145], [-77.35754388593215, 34.550809999864796], [-77.35745462943463, 34.55086603539303], [-77.35735843753942, 34.550934740786985], [-77.35734450441609, 34.55094405219267], [-77.35726477103385, 34.55099718555137], [-77.35724013605663, 34.551010047223336], [-77.35724077194955, 34.551012887022175], [-77.35714494944759, 34.551085645801194], [-77.3571416077998, 34.55108629502912], [-77.3571403266538, 34.55108855391658], [-77.35712481542097, 34.551103092531385], [-77.35705020250545, 34.5511660084737], [-77.35701807471139, 34.551183864900125], [-77.35694597345312, 34.55120194434667], [-77.35688753459068, 34.55121104954713], [-77.35689452223718, 34.551246353490626], [-77.35680427802224, 34.5512947276833], [-77.35657935972347, 34.55141413758806], [-77.35657048078208, 34.5514293473493], [-77.35654798077437, 34.551436241927135], [-77.35650926929087, 34.55144819600602], [-77.35634995239269, 34.551511126686975], [-77.35627017072636, 34.55153160524768], [-77.35619645221077, 34.551564218917896], [-77.35615445885588, 34.551475425684906], [-77.35611848367412, 34.5516028978023], [-77.35601370000654, 34.55165519283325]], [[-77.34472703016677, 34.54515741340121], [-77.34481633567502, 34.545137746348715], [-77.34482454307788, 34.54514918175528], [-77.34482706100638, 34.54520240619841], [-77.34485954847406, 34.545233677047904], [-77.34479181637687, 34.54527629995266], [-77.34471261698464, 34.54537921082128], [-77.34457089421593, 34.545308084327516], [-77.34461911197107, 34.545239061866326], [-77.34469350460266, 34.54515286060108], [-77.34464066317533, 34.545053227139576], [-77.3447210637008, 34.54501299980012], [-77.34473771674364, 34.54503926390318], [-77.34475288518406, 34.54505756616079]], [[-77.34316255558109, 34.53645238827078], [-77.34336616254788, 34.53630977523959], [-77.34340096582677, 34.536295678448404], [-77.34354972671687, 34.536229158536436], [-77.3436764164127, 34.53625604856796], [-77.34373253170457, 34.53625599118156], [-77.34374463188962, 34.53628862874694], [-77.34376794669245, 34.53636528937233], [-77.34374182298232, 34.53641032846883], [-77.3437091666506, 34.536476745772276], [-77.34367149656495, 34.536501575689], [-77.34354099726946, 34.53660733535757], [-77.34343186322451, 34.536590152927126], [-77.34328177094615, 34.53659705172076], [-77.34316868912738, 34.536462042329546]], [[-77.32392342295182, 34.52709095965293], [-77.32392905443517, 34.52710542055408], [-77.32394382456675, 34.52710089659748], [-77.32397817188112, 34.52706826726191]], [[-77.34738966238915, 34.548467952736225], [-77.34745468531331, 34.54856546088883], [-77.34749188525842, 34.54861664011885], [-77.34750166395736, 34.54863088152652], [-77.34746326662207, 34.548686636258424], [-77.34757970583183, 34.54873989130824], [-77.34760338458034, 34.54877363484381], [-77.34760769999716, 34.54878826374346], [-77.34763083667085, 34.54881793878428], [-77.34762519826667, 34.54887780802941], [-77.34765723377843, 34.54890354641826], [-77.3476737102451, 34.548920057928854], [-77.34768045934919, 34.54895667521852], [-77.34768241666713, 34.548967234332906], [-77.34767248003322, 34.548973480076825], [-77.34766238481181, 34.54897035027087], [-77.34757510345858, 34.54893973975184], [-77.34752479266427, 34.54892260353212], [-77.34751995995236, 34.54883675319938], [-77.34750805052256, 34.54880260235737], [-77.34735183856367, 34.54872259812488], [-77.347335879675, 34.54870496598462], [-77.34731828457295, 34.54866583083367], [-77.34730786707084, 34.54864779166609], [-77.34730580846306, 34.5486367471189], [-77.34725356341727, 34.54859440028602], [-77.34722864824852, 34.548574448819934], [-77.34719155949186, 34.54854596148566], [-77.34711873326522, 34.54849139068466], [-77.34709816838935, 34.54843181477463], [-77.34705873482945, 34.548377613525965], [-77.34709421827, 34.54830839681506], [-77.34719711835649, 34.548304629370065], [-77.34724687337496, 34.548319306155506], [-77.34727327969787, 34.54834674309555], [-77.34732669892118, 34.548379587756926], [-77.34737268670264, 34.548443918929976], [-77.34737976606901, 34.54845383095002], [-77.34737394573521, 34.54846451815586]], [[-77.34580543875649, 34.5341651850817], [-77.34581178330498, 34.534162477121136], [-77.3458177512838, 34.53416321227241], [-77.34582014755868, 34.53416350745165], [-77.34582575918054, 34.53416419870527], [-77.34582998261614, 34.53416476098493], [-77.34583313186748, 34.534165106891095], [-77.3458360997318, 34.53416547247985], [-77.34583729139462, 34.53416561927172], [-77.34584221588133, 34.534166225881705], [-77.34585440490649, 34.53416772735387], [-77.34585442607725, 34.53416773801614], [-77.34585444818063, 34.53416773268447], [-77.3458544804312, 34.53416773665717], [-77.34585446234222, 34.534167719089155], [-77.34585446253399, 34.53416771042977], [-77.34585444964, 34.53416766938867], [-77.34585118621169, 34.53416053988404], [-77.345852199188, 34.53415886395662], [-77.34585230025664, 34.53415426225659], [-77.34585233403993, 34.534152724093325], [-77.34585236786945, 34.534151183824946], [-77.34585246870756, 34.534146592621404], [-77.34585250260602, 34.534145049213414], [-77.34585263715836, 34.53413892298616], [-77.34585105672625, 34.53413760664414], [-77.34585107771805, 34.53413503132288], [-77.34585161944048, 34.53410952439855], [-77.3458474570315, 34.53410752212546], [-77.345847418891, 34.53410220131466], [-77.34584839731069, 34.5340516251817], [-77.34583934919311, 34.5340474838073], [-77.34583906910508, 34.534036038867725], [-77.34594813595169, 34.5339761540142], [-77.34595708787161, 34.533972402358245], [-77.34601507603873, 34.534022197439214], [-77.3460299197034, 34.53403494385812], [-77.34605331890253, 34.53405503696919], [-77.34607612193672, 34.53407461813707], [-77.3460658609411, 34.53412842238021], [-77.3460610056843, 34.534144072539064], [-77.34605091671541, 34.53415923543499], [-77.34602979592322, 34.534190978249924], [-77.34602043912328, 34.5342050407252], [-77.34599858613979, 34.53423788394497], [-77.34597540295908, 34.5342727262615], [-77.34594984593723, 34.53428651615108], [-77.3459364342186, 34.53427833370244], [-77.34589569405551, 34.53425718581188], [-77.34585297888486, 34.534231459134155], [-77.34584964042298, 34.534229617929775], [-77.34583258658168, 34.53421917715418], [-77.34580885536046, 34.53420488419365], [-77.34580689548537, 34.53420370379], [-77.34580458275163, 34.53420231086388], [-77.3457678431625, 34.53418018312811], [-77.34576249624071, 34.5341769627523], [-77.3457705037464, 34.53415790760903], [-77.34578797605202, 34.534157682531124], [-77.34579576254879, 34.53416086443783]], [[-77.3487213472931, 34.54973795478518], [-77.34873347339791, 34.549785802750314], [-77.3487424024489, 34.54984270286744], [-77.34874085839009, 34.54984930944004], [-77.3487418886924, 34.54985540752271], [-77.34880299786975, 34.5499627778603], [-77.34880134523019, 34.55000853419343], [-77.34873890327917, 34.55003320627572], [-77.34876182576348, 34.55006936410345], [-77.34876678599495, 34.550090399100014], [-77.34883459095268, 34.550134988514195], [-77.34883743496235, 34.5501502894943], [-77.34881046680263, 34.55015324083966], [-77.3487976479479, 34.55014716325158], [-77.34872573503844, 34.55012203343409], [-77.34869519933392, 34.55014316813246], [-77.34866812274838, 34.55014025968447], [-77.34862968416236, 34.55011128569374], [-77.34863111709538, 34.550109921786124], [-77.3486278662709, 34.550109602947174], [-77.34858799730229, 34.55008020399916], [-77.34853138440249, 34.550036918989285], [-77.34850656209652, 34.550021139302096], [-77.34849320396555, 34.54998277203083], [-77.34847673269188, 34.549887316791306], [-77.3485372788396, 34.54978083272585], [-77.34855622048744, 34.54976505314282]], [[-77.34622354328093, 34.54701529556653], [-77.34616846793125, 34.547036789185746], [-77.34614633278349, 34.54705085151837], [-77.34613502193451, 34.54704160145187], [-77.3460860226965, 34.54702542001647], [-77.34606857931259, 34.54693987606992], [-77.34619446769773, 34.54694337209179]], [[-77.35959163076095, 34.54857255393142], [-77.35958323286121, 34.548564012012], [-77.3595953021809, 34.54855455552621], [-77.35960793830793, 34.54854326879568], [-77.35962024564454, 34.548550898896366], [-77.35961953132008, 34.54855878527739], [-77.35962247786411, 34.548567777352325]], [[-77.35956603325421, 34.54822985570954], [-77.35956603258427, 34.54822985433547], [-77.35956603501766, 34.548229851050216], [-77.35956603720692, 34.54822985373685], [-77.35956603708135, 34.54822985515845], [-77.35962216071445, 34.54824772551452], [-77.35962458158868, 34.548258340404054], [-77.35962906226236, 34.54828198591982], [-77.35961333773903, 34.54830733465057], [-77.35958224984249, 34.54828872661273], [-77.35958905333231, 34.548272780441266], [-77.35956603473643, 34.548229863338804]], [[-77.34944054431125, 34.55088091905009], [-77.34940688630128, 34.55089312526826], [-77.34940581073113, 34.55090959174075], [-77.34943192739519, 34.55091276166932], [-77.34944357545169, 34.550918382504236], [-77.34946574855144, 34.55090789464764], [-77.3494857866787, 34.550900472429376], [-77.34948823526577, 34.55087739889985], [-77.34945782169393, 34.55087843275268], [-77.34944833988541, 34.55087741406807], [-77.34943640641777, 34.55087644259471]], [[-77.35648046279641, 34.55130596371612], [-77.35645314153233, 34.5512915483108], [-77.35644631126715, 34.55130683979328], [-77.35644337527434, 34.55131130296599], [-77.35645245565156, 34.551321470811374]], [[-77.35961956772165, 34.54850426938364], [-77.3596085888716, 34.54851484167176], [-77.35960321741183, 34.54850344063301], [-77.35957928575549, 34.54850337438046], [-77.35956028117695, 34.54848126493261], [-77.359558054534, 34.548477273989654], [-77.35955825504251, 34.54847579966705], [-77.35955849431795, 34.548474555202915], [-77.35956063234089, 34.548465920824476], [-77.359566892443, 34.548474555938924], [-77.35962469763072, 34.54848718491594]], [[-77.34290591840005, 34.52896112312552], [-77.34288509709909, 34.52893419287016], [-77.34293282160502, 34.528945284884315], [-77.3429444423054, 34.52895558043286], [-77.34295662726697, 34.528969016921366], [-77.34293174736129, 34.528991801972595]], [[-77.34905828232564, 34.55056913708421], [-77.34906042194096, 34.55056928442551], [-77.34905979243162, 34.550567994538255], [-77.34905725334409, 34.55056774247573]], [[-77.34927843106054, 34.55034223255734], [-77.34929097021289, 34.55033994840658], [-77.34929657829889, 34.55032850226197], [-77.34927297814745, 34.55033119285699]], [[-77.34873842477332, 34.55063012241952], [-77.34873924894256, 34.55059927862071], [-77.3487829861796, 34.55059640748378], [-77.34877497917775, 34.550609464035], [-77.34878692815188, 34.55062248113216], [-77.34876292759985, 34.550638444203926]], [[-77.34916285987326, 34.5504006346356], [-77.34916267913684, 34.55039964117264], [-77.3491610419502, 34.550399739123435], [-77.34915921273004, 34.55040115946985], [-77.34916099339213, 34.550401849456826]], [[-77.34968980084419, 34.5508820384213], [-77.34968315326361, 34.550880772147195], [-77.3496686311976, 34.55087869868818], [-77.34968638483195, 34.550873896983724], [-77.34969040647223, 34.55085571034401], [-77.3497074402559, 34.550862396441005], [-77.34969805017191, 34.55087446510315], [-77.3497039803583, 34.55088245941788]], [[-77.34932480091813, 34.55094632418987], [-77.34932779687597, 34.55093844735557], [-77.34930386579727, 34.550936136540315], [-77.34931151327935, 34.550950767535184]], [[-77.34939182365312, 34.55027587805059], [-77.34938489944912, 34.55026897923893], [-77.34937141226334, 34.55027881534846], [-77.3493843674016, 34.550292104660656]], [[-77.3489649127291, 34.550957479681784], [-77.3489631111801, 34.550973009954916], [-77.34899235775815, 34.55097083534264], [-77.34898877293452, 34.5509535943917]], [[-77.34731235548692, 34.55288565853216], [-77.3473122246147, 34.55288546757496], [-77.34731259721377, 34.552885475652644], [-77.34731269708114, 34.552885697495526]], [[-77.3493566823499, 34.55092358974566], [-77.34936971974068, 34.5509287660457], [-77.34938267959461, 34.55091984863951], [-77.34937010646566, 34.550911956987534]], [[-77.3674751409664, 34.62678604270902], [-77.36903598061572, 34.625563120104545], [-77.36927126260343, 34.62508241212281], [-77.36982465491688, 34.625011540005474], [-77.37017481048485, 34.624699128493276], [-77.37041918938448, 34.6244548770121], [-77.3706134077008, 34.624204151768], [-77.37110906665359, 34.623715486640215], [-77.37081739442016, 34.623127646826475], [-77.37122302559251, 34.62284995832713], [-77.37087429300624, 34.62261980490189], [-77.37061397532094, 34.622572795814555], [-77.3703932164619, 34.62273176323694], [-77.3698254203361, 34.622867209235906], [-77.36974538224891, 34.62306273064268], [-77.36952669954916, 34.623621920194715], [-77.36943012493478, 34.62395723724265], [-77.36926528761049, 34.62422739041121], [-77.36903639156657, 34.62443879285856], [-77.3687975097822, 34.62464025811409], [-77.36816972243778, 34.62498781780065], [-77.367458564767, 34.62675760502957], [-77.36744381596094, 34.62677467641494], [-77.36743580374853, 34.6268161919061], [-77.3674585457581, 34.62680717295705], [-77.36746507279796, 34.62679451583145]], [[-77.34368592093055, 34.5367138246775], [-77.34383528249779, 34.53660042065623], [-77.34388356212277, 34.53656163884244], [-77.3439364615866, 34.53648137279818], [-77.34403002229871, 34.536384538677474], [-77.34426126544678, 34.53609727416281], [-77.34423385364802, 34.53605343663539], [-77.34429662902593, 34.53601753012209], [-77.34434020936254, 34.535996353121746], [-77.34461818180927, 34.53567726870291], [-77.34467676389498, 34.5355000711347], [-77.3447464580769, 34.53540272171447], [-77.34482061500272, 34.535279022921316], [-77.34484109475768, 34.535231606851326], [-77.34489071470769, 34.53513830379785], [-77.34490889864222, 34.53509944111227], [-77.344921778985, 34.53507987459373], [-77.3449922780627, 34.53496503397501], [-77.3450557093469, 34.5348966764411], [-77.3450779019218, 34.534830304058715], [-77.34513861619037, 34.53470937682313], [-77.34514336695986, 34.53469847458354], [-77.3451473563461, 34.53469289575735], [-77.3451557022751, 34.53467897158974], [-77.34526170120222, 34.534559037673176], [-77.34530750019783, 34.53452245815756], [-77.34543505167963, 34.534411684197096], [-77.34549764057903, 34.53436662244524], [-77.34555701209902, 34.53429900319845], [-77.3455728646983, 34.53426944421954], [-77.34556774284445, 34.53426399227038], [-77.34558538307323, 34.53420643794989], [-77.34557432836303, 34.53419867190705], [-77.34555956488458, 34.53418830040397], [-77.34553376586682, 34.5341690276355], [-77.34552002214056, 34.53415463793584], [-77.3455162306447, 34.534152127638876], [-77.34551140454246, 34.534148932341196], [-77.34550109065219, 34.53414206078856], [-77.34550137902447, 34.53413557453584], [-77.34550042047672, 34.534133922322255], [-77.3454940158312, 34.534127777558204], [-77.34548750241407, 34.53412152843542], [-77.34548161726187, 34.53411798179178], [-77.34547008264126, 34.5341048154948], [-77.34546676207293, 34.53410109667331], [-77.34546715898699, 34.53409875352589], [-77.34546358439276, 34.53409481438464], [-77.34542616587275, 34.53404573316049], [-77.3454432702365, 34.53399615539287], [-77.34542495114967, 34.53395865003248], [-77.34547791285644, 34.53391587723242], [-77.34551996978934, 34.53388070732927], [-77.34556921872489, 34.533769657720086], [-77.34563837433359, 34.53368995245121], [-77.3456450436788, 34.533647008319434], [-77.34564417758509, 34.53360278264964], [-77.3456699619642, 34.53339860278692], [-77.34569817238204, 34.5332222768074], [-77.34569600891828, 34.533150034823606], [-77.34568143686863, 34.533091890835905], [-77.34569549648359, 34.53290528863116], [-77.34567166565495, 34.53285793589108], [-77.345590435736, 34.532849577514384], [-77.34550307853557, 34.53274415608119], [-77.34539744289827, 34.53270749467377], [-77.34539466775587, 34.53270551564081], [-77.34539037083546, 34.532704374661364], [-77.34533564258302, 34.53268984244695], [-77.34531562615412, 34.53268452739426], [-77.34529993406085, 34.53268036060189], [-77.34527661743691, 34.532674169226134], [-77.34528337633168, 34.53265856541623], [-77.34528533673013, 34.532648724141225], [-77.34528285225291, 34.53264333959054], [-77.3452869490791, 34.532636182845906], [-77.34528625832819, 34.53263364821915], [-77.34528334020021, 34.532627968140396], [-77.34528258781532, 34.53262439871834], [-77.34528069418911, 34.532615415076975], [-77.34527910509853, 34.53261327630026], [-77.34527907279343, 34.532611974247544], [-77.34526887507519, 34.53259944707961], [-77.34526450495136, 34.532576485136886], [-77.34526704045368, 34.53256074198686], [-77.34524911392106, 34.532541085592314], [-77.34524568082826, 34.53250522341374], [-77.34528468307722, 34.532474762486835], [-77.34532151253161, 34.53239884918107], [-77.34526903361854, 34.53226819852221], [-77.34525821305223, 34.53223375147951], [-77.34521291060271, 34.532198623715175], [-77.34500391345968, 34.53215647802287], [-77.34505714969264, 34.532017862959215], [-77.34494747146123, 34.531957840086605], [-77.34491115125431, 34.53191646099609], [-77.34482925066315, 34.53181385933787], [-77.34482520017181, 34.53180901460809], [-77.34482372054431, 34.531806631553835], [-77.3448208399556, 34.53180162432143], [-77.34477045243145, 34.53160909464092], [-77.34476046022452, 34.53157091425499], [-77.34475078732314, 34.53151912850063], [-77.34476329669721, 34.5313731623671], [-77.3447622642013, 34.53132583500826], [-77.34471961761484, 34.53125556082365], [-77.3446581334506, 34.53109599822002], [-77.3445740014266, 34.531033707252384], [-77.3444572054062, 34.53092589007128], [-77.34443348105296, 34.53089869205685], [-77.344414883732, 34.5308861797515], [-77.34432586687876, 34.53073877650164], [-77.34419989661448, 34.530672293811804], [-77.34427140336709, 34.53054057545134], [-77.34427081118808, 34.53053909123621], [-77.34426994118121, 34.530535844021145], [-77.34424069495033, 34.53044120707871], [-77.34423938409799, 34.530421792746786], [-77.34422973952269, 34.53039609530066], [-77.34427389649763, 34.53036444646534], [-77.34430696800545, 34.53030949432103], [-77.34430281485638, 34.53029025614316], [-77.34430268277376, 34.53027362825525], [-77.34427723671072, 34.530219703609745], [-77.34426279356063, 34.53018313939111], [-77.34425713711323, 34.53017441879585], [-77.34423833724252, 34.53008097246393], [-77.34421890999835, 34.53005750937615], [-77.34421897281183, 34.53001826161156], [-77.34422360915309, 34.52993442335428], [-77.34418400621233, 34.52988073869594], [-77.34409075099502, 34.529796038030646], [-77.3440393898749, 34.52974882424867], [-77.34397598683039, 34.52972523317448], [-77.34384672621994, 34.52965326689446], [-77.34381232706617, 34.52962637159608], [-77.34370409244109, 34.52954189027742], [-77.34369033955609, 34.52953025905582], [-77.34368132115273, 34.52952281144838], [-77.3436603128179, 34.52949789513009], [-77.34356086165069, 34.52938688959195], [-77.34351254229267, 34.52933778983016], [-77.34349302290462, 34.52931755060615], [-77.34348260260197, 34.52930658408654], [-77.34342480480612, 34.529248498565025], [-77.34338660675814, 34.52919798637705], [-77.34332130223831, 34.52912029957875], [-77.34330396446026, 34.52909859364054], [-77.34329542735776, 34.52908869566146], [-77.34327829317475, 34.52906351812377], [-77.34324713913992, 34.529020921012275], [-77.34321816395747, 34.52897740263837], [-77.34319209439927, 34.52894190101469], [-77.34313075543787, 34.528872830330364], [-77.34312817457582, 34.528869596921155], [-77.34312661267128, 34.5288681653686], [-77.3431240841645, 34.52886424457482], [-77.34307544595096, 34.52878882449361], [-77.34304395300319, 34.528757648669384], [-77.34293916814714, 34.528670466125824], [-77.34292235248076, 34.528663325650435], [-77.34290339913481, 34.52865546161742], [-77.34271233054282, 34.52858090395147], [-77.342548533014, 34.528588849898654], [-77.34243330704696, 34.52855069446863], [-77.34235354253661, 34.52853389319167], [-77.34231366767239, 34.528520552590855], [-77.34229605968761, 34.52849802329189], [-77.34229156589439, 34.528476941206655], [-77.34225691435105, 34.52846888682758], [-77.34222821244771, 34.52846454412932], [-77.34215935779447, 34.52844407082135], [-77.34207347555034, 34.52840763724062], [-77.34202771797325, 34.52837491277237], [-77.34190675683695, 34.528309213459714], [-77.34187429704139, 34.52824966202212], [-77.34177306898572, 34.528174435338265], [-77.34171232175545, 34.52813088429994], [-77.34165757462489, 34.52810024403329], [-77.34160296045079, 34.52799948063493], [-77.3415908471349, 34.52798146094654], [-77.34148524155262, 34.52788021827142], [-77.34138966130271, 34.52778024883468], [-77.34130823274494, 34.52771262813089], [-77.34120601544525, 34.52767557039523], [-77.34104795787563, 34.52748086689918], [-77.34102190292442, 34.527457238945075], [-77.34101591918078, 34.52745113517845], [-77.34100508873509, 34.52743660931659], [-77.34090771964779, 34.527291667751435], [-77.34086525704032, 34.52723495577911], [-77.34081477465894, 34.52717953613694], [-77.34075682814105, 34.527164504302306], [-77.34072733206781, 34.52707636100244], [-77.34068289343747, 34.52701637220456], [-77.34062534445154, 34.52688428830926], [-77.34057405840761, 34.52682012432016], [-77.34051303357558, 34.52679598967883], [-77.34048580161902, 34.52671036280354], [-77.34033497681415, 34.526518354340254], [-77.34009693473874, 34.526366211477864], [-77.34004826690672, 34.52625262314017], [-77.33993237314097, 34.52544729590927], [-77.33992559552455, 34.52541158686921], [-77.33990964405825, 34.52539216962168], [-77.33987633197529, 34.525327421984066], [-77.3395837278247, 34.52515610817727], [-77.33959884288281, 34.524968955364976], [-77.33952802541143, 34.524753612373644], [-77.33952429868026, 34.52471840543567], [-77.3395730514323, 34.52448302923162], [-77.33955417725211, 34.5242695402894], [-77.33955474928602, 34.52421269324014], [-77.33941230948679, 34.52420046291972], [-77.3392166567052, 34.52446851804862], [-77.33918171354422, 34.5245393241123], [-77.3392657009819, 34.5246258835118], [-77.33943607344571, 34.52478516265375], [-77.33931763871612, 34.52500940724377], [-77.33932807736525, 34.525153061587936], [-77.33930254753844, 34.52536886723365], [-77.33957832150438, 34.52546154329564], [-77.33963576804283, 34.525599401446016], [-77.3393610034922, 34.526162704749964], [-77.339478036147, 34.52645524082959], [-77.33951465927241, 34.52665638219599], [-77.33972556933632, 34.52690927072578], [-77.33983350297137, 34.52717896365078], [-77.33989632323214, 34.527332940273155], [-77.3398774263197, 34.527377062392496], [-77.3398715232475, 34.52740488488002], [-77.34000422891145, 34.52773396614748], [-77.34009377795064, 34.52783557589215], [-77.34020878488649, 34.52792408400379], [-77.34029512936141, 34.527996529717555], [-77.34033676268137, 34.52804543960606], [-77.34050461491088, 34.528079358823106], [-77.34059692263341, 34.5281135019967], [-77.34061309214425, 34.528128096966164], [-77.34065823548507, 34.52820445860961], [-77.34069033274753, 34.528239394447276], [-77.34068926303047, 34.52829982911243], [-77.34066221594308, 34.528442784931656], [-77.34069294549631, 34.52848383696721], [-77.34077859943798, 34.52859606055185], [-77.34092505325341, 34.5286952640674], [-77.34107833533899, 34.52885194051592], [-77.34135904643617, 34.52910485625024], [-77.34136763088921, 34.529115721072436], [-77.34137310528676, 34.529120444312376], [-77.34144684185819, 34.52916546833908], [-77.34170592536346, 34.52934242609145], [-77.3417450742697, 34.529385926265284], [-77.34190168525889, 34.52953403726703], [-77.34203876247224, 34.52957326104726], [-77.342131159653, 34.52966461560025], [-77.34219801566339, 34.529694100467445], [-77.34222486451023, 34.52973236080557], [-77.34232251667035, 34.52984123561528], [-77.34251811588652, 34.52990571204437], [-77.34255450446689, 34.52990703941786], [-77.3425550830955, 34.529929670897495], [-77.34266068673438, 34.53006803617356], [-77.34290190499301, 34.53028404723322], [-77.34293882510708, 34.53034026183579], [-77.34296638807949, 34.53036013295188], [-77.34299051622071, 34.53041379685651], [-77.34317251871212, 34.530646118030205], [-77.34324732636708, 34.53080935098386], [-77.34326046246643, 34.530820917085784], [-77.34328143917931, 34.53084681968862], [-77.34339781804819, 34.53095832721715], [-77.34343368968098, 34.531027356566], [-77.34351214891555, 34.53116453499563], [-77.34357882035107, 34.53125129464978], [-77.34360979535356, 34.531280617463565], [-77.34366237671563, 34.531349025184866], [-77.34372898475448, 34.531431774162435], [-77.34374766621946, 34.531471820508884], [-77.34378546921675, 34.53150970611545], [-77.3438247192829, 34.53156509633404], [-77.34383869031232, 34.53158113360046], [-77.34384164117218, 34.531587874522494], [-77.34385293740755, 34.5315962209173], [-77.34393797962335, 34.53168925735993], [-77.34397031540266, 34.53173185464874], [-77.34401401450832, 34.53178144571569], [-77.34402983618837, 34.531798450578904], [-77.34403344132386, 34.531804761278536], [-77.34404404380234, 34.53181982130315], [-77.34406087198127, 34.53185518992654], [-77.34407929296891, 34.53189073902635], [-77.34408770587504, 34.53191253382923], [-77.34414106152833, 34.53196467285845], [-77.34415570414839, 34.53197461937691], [-77.34422142158392, 34.53201570411599], [-77.3442258251011, 34.53202120683305], [-77.34423552143075, 34.53202737943044], [-77.34433736130839, 34.53212143192276], [-77.34436824949881, 34.53215478300674], [-77.34442732213738, 34.53222097729952], [-77.3444365572082, 34.532229568913465], [-77.3444384909545, 34.53223647960505], [-77.34447375207266, 34.53228542199617], [-77.34446050740634, 34.5323263194441], [-77.34449515401167, 34.53234354745696], [-77.34446324992601, 34.53237272948415], [-77.34442324704045, 34.53239758557175], [-77.34426222995953, 34.53247635188627], [-77.34422478959343, 34.53249243279127], [-77.34421096541834, 34.53249831024435], [-77.34418874248534, 34.532531958142556], [-77.34410224502216, 34.53264490026547], [-77.34422022900478, 34.532690061754906], [-77.34429211186772, 34.53269508695888], [-77.34437046129294, 34.53272871819599], [-77.34439506487368, 34.53273785800555], [-77.34441521542439, 34.53274566373629], [-77.34452794952796, 34.53275798022756], [-77.3445876092473, 34.532819883619034], [-77.34459756997134, 34.53282597330083], [-77.34460910583925, 34.53284878005431], [-77.34461818367498, 34.53287668929699], [-77.34460808040606, 34.53289322540343], [-77.34457971482958, 34.5329262129199], [-77.3445595532814, 34.53294633025989], [-77.34452707426915, 34.53299998911434], [-77.34449819037926, 34.53307756925999], [-77.34449316405045, 34.53313247391801], [-77.34440463934942, 34.53320401621495], [-77.34423810419813, 34.533256704867085], [-77.34414763199668, 34.53328710285463], [-77.34400979041192, 34.53330400938942], [-77.34389631532096, 34.53333871542545], [-77.34380623201433, 34.53354542804931], [-77.34368645987826, 34.533684000685454], [-77.34368321420976, 34.53373176697479], [-77.34366753000215, 34.53413306834495], [-77.34369974041287, 34.53417172866614], [-77.34386071290106, 34.534228240673386], [-77.34398416592327, 34.53425321589211], [-77.34388149489155, 34.53432508042924], [-77.34390305635932, 34.53438729542174], [-77.3438868230584, 34.53444982963312], [-77.34382734572145, 34.534547115584395], [-77.34381553918297, 34.53464470664772], [-77.34378108901717, 34.53470908321462], [-77.34375767721068, 34.534761596089474], [-77.34375051058299, 34.53477647243157], [-77.34373698363481, 34.53480455137032], [-77.34370110181005, 34.53490599071799], [-77.34357621409373, 34.535081679201795], [-77.34346751131349, 34.53511713419961], [-77.34339082060097, 34.53519545150178], [-77.34317637347937, 34.53539744522156], [-77.34313961660867, 34.53545430690946], [-77.3430968946773, 34.53548255831176], [-77.34277699603683, 34.53569302160185], [-77.34267857028314, 34.535726661343226], [-77.34249664176728, 34.53581373366457], [-77.34226249931994, 34.536020910029414], [-77.34221678966749, 34.536098813454544], [-77.34197906331535, 34.53624821300929], [-77.34177940847724, 34.53628253297637], [-77.34175349283956, 34.536410282015055], [-77.34173794179193, 34.53651074476386], [-77.34157666085707, 34.53667434050712], [-77.34157424660155, 34.53667945467494], [-77.34157193057491, 34.53668121979594], [-77.34156423121493, 34.536689855509124], [-77.34126658664358, 34.536969963323564], [-77.34121951362025, 34.537003564085204], [-77.34117469544611, 34.53708138071299], [-77.34100729624637, 34.53725208111752], [-77.34104149837839, 34.53732669300947], [-77.34102493811537, 34.537405640342044], [-77.34100662601094, 34.537496996132056], [-77.34101748284061, 34.53758620266932], [-77.34104203613505, 34.53766236268643], [-77.34102092361388, 34.537739757878256], [-77.34099948621268, 34.53784115843261], [-77.34103268159963, 34.537906207682674], [-77.34099824842683, 34.53798783802825], [-77.34093646617839, 34.53813017762584], [-77.3409008985707, 34.538246660124855], [-77.34088955501207, 34.538333330501246], [-77.34084880828098, 34.53849897114092], [-77.34081408395073, 34.538705448526734], [-77.34082436372785, 34.53874730633543], [-77.34084877583302, 34.53881027710328], [-77.34090597475961, 34.538980384791564], [-77.3409270830474, 34.539102634585305], [-77.34112267665132, 34.539332213657154], [-77.34126565235675, 34.53901321239091], [-77.34152310502716, 34.538992146060934], [-77.34159315196916, 34.53888153462011], [-77.34177332427612, 34.53876354863406], [-77.34181003368431, 34.538727925991395], [-77.34186360645262, 34.538683298592204], [-77.34192401504869, 34.538631087196045], [-77.34195566573237, 34.53860391359933], [-77.34196038574777, 34.538583887577516], [-77.34195605771521, 34.538565472547894], [-77.3419867719261, 34.5384576823919], [-77.34201092410575, 34.53838241563078], [-77.34202420816185, 34.53832988753156], [-77.3420515411442, 34.53825188839062], [-77.3420670973172, 34.53820130821247], [-77.34207912893456, 34.53816722005785], [-77.34212099288679, 34.53807114551741], [-77.34212381863453, 34.538064776179354], [-77.34213455782294, 34.53801378556099], [-77.34214840448446, 34.53795254586251], [-77.3421654783086, 34.537942336479], [-77.34233442004708, 34.537858783323045], [-77.34238434765015, 34.537819004416455], [-77.34243646043036, 34.53778094341709], [-77.34253414720256, 34.537709597078106], [-77.34261934218198, 34.53768500109077], [-77.34273283443065, 34.537605413226075], [-77.3428097375892, 34.53752928740278], [-77.34285803584814, 34.537475474963486], [-77.34299372338327, 34.5373704536685], [-77.34303351095895, 34.53732782055137], [-77.34313427717737, 34.53722076708998], [-77.34315499708347, 34.53720056408282], [-77.34317003526331, 34.53718576954191], [-77.34326699330754, 34.53709092161891], [-77.34331524322579, 34.537042469003595], [-77.3433216003168, 34.53703326895423], [-77.34333515582293, 34.537021571296286], [-77.34345203035478, 34.536900379720514], [-77.34347395144586, 34.536859036147455], [-77.34353631294175, 34.536810270071165]], [[-77.27117693040852, 34.57318195710064], [-77.27111511821658, 34.57323053098409], [-77.27110482102574, 34.57325150675198], [-77.27109829563936, 34.573276320561675], [-77.27104633562067, 34.57328951162199], [-77.27098689206785, 34.57334154190156], [-77.27091381800038, 34.57339780674819], [-77.27090006602285, 34.57347107814301], [-77.27079842216119, 34.57350252197997], [-77.27069618355824, 34.57356525150089], [-77.2706874670733, 34.57357219930235], [-77.27061256159624, 34.57366582296121], [-77.27058800418965, 34.573682213886954], [-77.27049472541503, 34.573725324018234], [-77.27046325443189, 34.5737503262094], [-77.27042923686335, 34.57378756643109], [-77.27039714962123, 34.573802843341255], [-77.27034851718956, 34.57383924101574], [-77.27034769237608, 34.57384007277504], [-77.2703474045053, 34.573840751750765], [-77.2703459043219, 34.57384123732388], [-77.27029694601092, 34.57387802573111], [-77.27027645769076, 34.57389338952556], [-77.2702342799187, 34.57398659160496], [-77.27019642337372, 34.5740049312499], [-77.2701048380096, 34.574035771580824], [-77.27000573901014, 34.574097218401356], [-77.26999668393097, 34.574103883609325], [-77.26999257033145, 34.57410673900214], [-77.26998852558228, 34.57411189610386], [-77.26995679853917, 34.57416284356472], [-77.26995752968058, 34.57419254711168], [-77.26997860521172, 34.57420746898526], [-77.27002554781119, 34.574227165039304], [-77.27008731032953, 34.5742585991728], [-77.27006882441393, 34.574348400773765], [-77.27000115418781, 34.5743827336158], [-77.27008066491629, 34.57436572300275], [-77.27010252153336, 34.57435104984959], [-77.27016993986945, 34.57425796606442], [-77.270394772045, 34.574161271077294], [-77.27041601899681, 34.57414821791295], [-77.27042223519221, 34.57414051644154], [-77.27044400480094, 34.574124963816764], [-77.27051002868737, 34.57402958453782], [-77.27056416621727, 34.57395137633466], [-77.27067892791123, 34.57392502834086], [-77.27073925236365, 34.57389675431719], [-77.2707970626445, 34.57382990503911], [-77.27084479389518, 34.57379109352097], [-77.2708024517875, 34.573699071494445], [-77.2709305114077, 34.57361999261159], [-77.27104147876055, 34.57353369068259], [-77.2710863105983, 34.57348571843645], [-77.27112102345515, 34.57346082849481], [-77.27119871413896, 34.5734048601319], [-77.27122736034504, 34.573378972537554], [-77.27131208401396, 34.57330215254566], [-77.27137957118691, 34.57327310377724], [-77.27152713804796, 34.57317208159785], [-77.27153118784403, 34.5731684165141], [-77.27153171886506, 34.57316722997815], [-77.27153392383904, 34.57316547642279], [-77.27163905239917, 34.573057833435335], [-77.27169429798039, 34.57298488434498], [-77.27172629034804, 34.57294685728792], [-77.27170840650176, 34.57291638969055], [-77.27165489015479, 34.57291945143141], [-77.2716061994023, 34.57290653644184], [-77.27156199601524, 34.572894811704145], [-77.2714841312127, 34.57292782273164], [-77.27145805507455, 34.572939082998495], [-77.2714152950017, 34.57297657493634], [-77.27141035023033, 34.57298093986063], [-77.27136473443518, 34.57302038561753], [-77.27134789510795, 34.57303494719877], [-77.27131250780828, 34.573064719662526], [-77.27127140910156, 34.573146768296084]], [[-77.37726686963073, 34.69409274649512], [-77.37729844460016, 34.694303360490515], [-77.37805466768508, 34.69398441483823], [-77.37742776711681, 34.69385746818891]], [[-77.33913838522045, 34.523293638382825], [-77.33927461402077, 34.5231398030845], [-77.33938516494871, 34.522893001314394], [-77.33936611688966, 34.52255425194078], [-77.33920090617198, 34.52211029904882], [-77.33920610099892, 34.52206315828478], [-77.33912630417322, 34.52207397301861], [-77.33914293286863, 34.52209672209023], [-77.3390855767972, 34.52215435733534], [-77.3388970238519, 34.52245913711037], [-77.33876532407147, 34.52245397544716], [-77.33866353342944, 34.522655320151365], [-77.33871112071068, 34.52286542367761], [-77.33871755332741, 34.52291550108842], [-77.33901515648401, 34.52309437494377], [-77.33901628640366, 34.52317212463239]], [[-77.35477544089623, 34.553142757964636], [-77.3547592275947, 34.55303182118489], [-77.35471384041867, 34.552906802715306], [-77.35494659879906, 34.5527826968706], [-77.3550547240104, 34.55267884626969], [-77.35508516829465, 34.552608528193275], [-77.35523615807287, 34.55251874891454], [-77.35534691897914, 34.552447399656856], [-77.35545300090276, 34.55237587988155], [-77.3556361400991, 34.552284391722516], [-77.35570283045428, 34.55224906059229], [-77.35574480941627, 34.55221792457134], [-77.35593568674506, 34.552113982634864], [-77.35610819515686, 34.551971613203285], [-77.35612626317901, 34.551958333947226], [-77.35614371980634, 34.551943860898774], [-77.35623226696003, 34.55189917671123], [-77.35638833389697, 34.55183747032918], [-77.35653921302324, 34.55181876778988], [-77.35683339325202, 34.551685676092845], [-77.35693584405885, 34.55164396703233], [-77.35696637340922, 34.551621966284515], [-77.35698221344502, 34.551600963470115], [-77.35703307831344, 34.551534572470075], [-77.35719273007142, 34.55132583246265], [-77.35726933629488, 34.55127262603113], [-77.35733817039662, 34.551220509865445], [-77.35745249395234, 34.551113367806266], [-77.35756786852892, 34.551027000026146], [-77.35765936243797, 34.5509656458844], [-77.35773807535705, 34.55090258158198], [-77.35785707640038, 34.550813469988775], [-77.35804834991586, 34.550712999236005], [-77.3580823916345, 34.55067472314109], [-77.35813714542905, 34.550620973623275], [-77.35827974779802, 34.550591186490266], [-77.3583652536153, 34.55056397464921], [-77.35853299959302, 34.55047969485689], [-77.35861391402813, 34.55043658566327], [-77.35862945694728, 34.550384507781715], [-77.35880521793992, 34.55028129123941], [-77.35883945365438, 34.55023185989663], [-77.3588695496327, 34.55018840583315], [-77.35893357879326, 34.550131954123486], [-77.35895476612308, 34.55010568147917], [-77.35898305678434, 34.55008877127402], [-77.35913324248212, 34.549985372660245], [-77.35923233345892, 34.549992356560395], [-77.35933044349122, 34.54994635696134], [-77.35939885829438, 34.54982500654801], [-77.35942900008543, 34.5497797367573], [-77.3595638014478, 34.549656887142504], [-77.35971312929414, 34.54950646969167], [-77.35972741744078, 34.54949194329005], [-77.35972947516704, 34.54948912329975], [-77.35973360128192, 34.549485671847584], [-77.35980184040912, 34.54943933579775], [-77.35983558166771, 34.54941656264269], [-77.35983543830666, 34.54941390989405], [-77.35983789620809, 34.549353623038], [-77.35984793229706, 34.549298387550174], [-77.35984200897472, 34.54929182481645], [-77.35984274602909, 34.549287689696676], [-77.35985006735969, 34.54922945844512], [-77.35986820928866, 34.549184068837704], [-77.3598770833518, 34.54916436227177], [-77.35990321547646, 34.549121238036285], [-77.3599175249245, 34.54909733287603], [-77.35991817853095, 34.54908419617587], [-77.35993973303589, 34.54905627809684], [-77.36000085724454, 34.54902412736132], [-77.3600243796418, 34.549011681731685], [-77.3600791794577, 34.54895164319112], [-77.36010393712671, 34.54892620453107], [-77.36010305618997, 34.54884931297023], [-77.36009090915864, 34.54882754210287], [-77.36010490187572, 34.548802490117865], [-77.36014300373071, 34.548751848992474], [-77.36017306072434, 34.54871146728111], [-77.36017601536307, 34.54869287496842], [-77.3601750873812, 34.54867411089651], [-77.36017300984756, 34.54863210173856], [-77.36017221071205, 34.54861594281502], [-77.36017902409858, 34.54859018489683], [-77.3601820634807, 34.54856959200577], [-77.36017767526063, 34.548551462222946], [-77.36016000445517, 34.54854216544818], [-77.36015722445774, 34.54851748693955], [-77.36015448900645, 34.54851235664713], [-77.36015379365665, 34.54850919033575], [-77.36014898011308, 34.54849063012021], [-77.36013874976626, 34.54846023020946], [-77.36013784607557, 34.548453547161934], [-77.36013733198223, 34.54844571683603], [-77.36013144174007, 34.54834507063034], [-77.36012787261691, 34.548332571256694], [-77.36011421360354, 34.54831028530995], [-77.36009481440223, 34.54825209949976], [-77.36007380601251, 34.5482179446448], [-77.36005313333317, 34.54816295303675], [-77.3600520360325, 34.548159873484], [-77.36005309470126, 34.54815636539388], [-77.36005499053309, 34.54810120249947], [-77.36005460542592, 34.54809829747412], [-77.36005336322513, 34.54809440410328], [-77.36004243629787, 34.5480805308504], [-77.36003561681483, 34.5480829902141], [-77.36001549205801, 34.54807332669272], [-77.3600201852033, 34.54806719764778], [-77.36001938139617, 34.54804682494827], [-77.36001986024093, 34.54804209467333], [-77.36002791586026, 34.54801993124717], [-77.36004147757944, 34.54800837881558], [-77.36003232327083, 34.54799766670236], [-77.36001942924159, 34.5479809507047], [-77.36000899857117, 34.5479549734793], [-77.36000469288089, 34.54788444862107], [-77.3599946935575, 34.54786210052849], [-77.35998901417884, 34.547849407376205], [-77.3599684017978, 34.54780333931184], [-77.35993420320212, 34.547748398934864], [-77.35994452001438, 34.547730988614745], [-77.35993430214432, 34.54764943284208], [-77.35991377988884, 34.54762892779034], [-77.35991914610165, 34.5475944593084], [-77.3599122068247, 34.54750674227415], [-77.35992646649753, 34.54747383696167], [-77.3599170229787, 34.54742112968616], [-77.35990838666875, 34.54738488036228], [-77.35989591025744, 34.54733478623499], [-77.3598949721863, 34.54731712762284], [-77.35987546320948, 34.547267209188725], [-77.35987840639434, 34.54720897459728], [-77.35987850833013, 34.54720556472503], [-77.3598771404788, 34.54720146999088], [-77.3598610982128, 34.547146865684134], [-77.35985531438416, 34.547105760564236], [-77.35985649904052, 34.54708632196983], [-77.35985507255288, 34.54706654901272], [-77.359852505478, 34.547025690991845], [-77.35985109648703, 34.546988262813414], [-77.35984537181119, 34.54696551223433], [-77.3598463511718, 34.54693812161671], [-77.35984241906506, 34.54690473138834], [-77.35984318585432, 34.54687355971305], [-77.3598439173444, 34.54684330964864], [-77.35984094960872, 34.546811309425465], [-77.3598366909923, 34.54678314419548], [-77.35983746389748, 34.546757200258845], [-77.35983878583895, 34.54672163654777], [-77.3598321668221, 34.54668285211355], [-77.35982733917913, 34.54666207881602], [-77.35983097695761, 34.54655808903542], [-77.35982976654212, 34.54653931725728], [-77.35983188661778, 34.54652004152659], [-77.35983003086729, 34.546416867171274], [-77.35984471572863, 34.54631640523939], [-77.35984617655868, 34.54629213018842], [-77.3598469794054, 34.54626723979709], [-77.359838445236, 34.54617083146252], [-77.35984416675996, 34.54606776983543], [-77.35986243611815, 34.54604496472844], [-77.35987951937639, 34.546001233976824], [-77.35990061883388, 34.545917054457526], [-77.35990553654187, 34.54584926071878], [-77.35991962041973, 34.54579190611469], [-77.35993556728488, 34.5457174371557], [-77.3599417243538, 34.545666311200655], [-77.35994881542211, 34.54562194967843], [-77.35993548676326, 34.545544797269265], [-77.35992029693885, 34.5454876141676], [-77.35991625420606, 34.54542515480422], [-77.35991911415722, 34.54535913031942], [-77.3599140873146, 34.54530305479231], [-77.35991124066922, 34.54525308849487], [-77.35990760817106, 34.54524278180075], [-77.35991278939312, 34.54523186890993], [-77.3599274354818, 34.54517872060759], [-77.35992763650039, 34.54511490855863], [-77.35993292785867, 34.545055517654994], [-77.3599450036152, 34.54499917445164], [-77.35994518200098, 34.54498602180079], [-77.35994592512046, 34.54493123399158], [-77.35994717253267, 34.54487604558862], [-77.35994691201071, 34.54486402269908], [-77.35994881969324, 34.54480840511844], [-77.35995012002176, 34.54475329553717], [-77.35995011706642, 34.54474090726576], [-77.35994956916753, 34.544685885139955], [-77.35995016298308, 34.54462913227591], [-77.35995106394547, 34.54461950085114], [-77.3599618751701, 34.54456170100697], [-77.35996182602058, 34.544510622799486], [-77.35996104949528, 34.544491253838494], [-77.35996458598618, 34.544438898588794], [-77.3599528172676, 34.544382055379124], [-77.35995228406206, 34.54437719785625], [-77.35995295024156, 34.54431816209559], [-77.35994944319646, 34.544258658079876], [-77.35994951837311, 34.54425745030292], [-77.3599496203777, 34.5442563157279], [-77.35993803478391, 34.54419789792567], [-77.35993444631322, 34.54418684058656], [-77.35995406420136, 34.54414059597023], [-77.3599562415288, 34.54413535309715], [-77.3599571878193, 34.54413210703331], [-77.35998274478607, 34.54406904751124], [-77.3599860031098, 34.544025649602645], [-77.35998640615887, 34.54398930424958], [-77.35999151888554, 34.54394537195968], [-77.35999216793422, 34.54390446496347], [-77.35999277793532, 34.54386379215315], [-77.35999233139364, 34.54382284289128], [-77.35998610619744, 34.54377733138952], [-77.3599825006615, 34.54375088040633], [-77.35999030005866, 34.54370072337286], [-77.35998705939714, 34.5436870853715], [-77.35998713181363, 34.54367057659774], [-77.35996533317062, 34.54364813858591], [-77.35995787617392, 34.54364882696842], [-77.35989935969086, 34.54367303193379], [-77.35986624960015, 34.54368908577955], [-77.3598335496085, 34.54370310346838], [-77.35978912707614, 34.54372969260534], [-77.35973441020904, 34.543779050430146], [-77.35970888560472, 34.543837267630074], [-77.35970160223029, 34.543864708279784], [-77.35969246511773, 34.54388282597078], [-77.35969931143072, 34.543965203027426], [-77.35970002328929, 34.543987347667496], [-77.35970401816125, 34.544012631636114], [-77.35971247620031, 34.54407592926097], [-77.35972444987543, 34.54410624226457], [-77.3597148085309, 34.54414206618975], [-77.35971021438861, 34.54419833056364], [-77.35970755093797, 34.544231087727454], [-77.3596981873327, 34.54425816338154], [-77.35969631163013, 34.544293912191826], [-77.35969991342537, 34.54432109543551], [-77.35969941168734, 34.544327195737424], [-77.35969712476, 34.54435500111027], [-77.35969518255459, 34.54438088576899], [-77.35969068134699, 34.54445449246142], [-77.3596842960123, 34.544479260456946], [-77.3596814725705, 34.54449839946895], [-77.35968312231321, 34.544520557996705], [-77.35968460127197, 34.544540422506955], [-77.35968626923369, 34.54456282551306], [-77.3596873754711, 34.544577683929795], [-77.35968523763398, 34.5446015368784], [-77.35968745910216, 34.544625496627944], [-77.35968681918492, 34.544662515143614], [-77.35968599603402, 34.544699417410584], [-77.35968635503541, 34.54472378798748], [-77.3596821387779, 34.54474709237838], [-77.35968064753175, 34.54476380998675], [-77.35967849946789, 34.544786125186306], [-77.35967481754889, 34.54482856690866], [-77.35967164178481, 34.54484831868953], [-77.35967324633944, 34.544866950075125], [-77.35964132193723, 34.54494023332655], [-77.35962315430974, 34.54496676192529], [-77.35952383526174, 34.5450635204457], [-77.35946363742651, 34.545123094769735], [-77.35947490478524, 34.54514299923848], [-77.35949188126878, 34.545329082041725], [-77.35951650685267, 34.545360305696576], [-77.35948813282491, 34.54539780438263], [-77.35943326910262, 34.54545387798812], [-77.3590489083099, 34.54566432204655], [-77.35903568253703, 34.54567192382676], [-77.358658663281, 34.54548382907484], [-77.3586579117929, 34.54547746896428], [-77.35864788858697, 34.54546221584714], [-77.35863804330863, 34.545480925733685], [-77.35863549302309, 34.54548716533782], [-77.35843958098073, 34.54563273173875], [-77.3584378674729, 34.545638032900314], [-77.35840645463306, 34.54566776767142], [-77.3583767234728, 34.54572633286475], [-77.35841453195194, 34.545763804714205], [-77.35840048492842, 34.54586207960636], [-77.35839324246786, 34.54591914282997], [-77.35849608250781, 34.54599688600813], [-77.3583685161983, 34.54609489544808], [-77.35835604331558, 34.54618867076775], [-77.35837040098593, 34.546259806195444], [-77.35843169812745, 34.54633088793619], [-77.35848907032737, 34.54632937566613], [-77.35862789388734, 34.54633541963651], [-77.35888026188464, 34.54627470652792], [-77.35902238897259, 34.546252596779595], [-77.35927414598547, 34.54628716480396], [-77.35941383754856, 34.546302836786964], [-77.35943887870648, 34.54633470906194], [-77.3594324620288, 34.54635170360798], [-77.35949099670951, 34.5463926734161], [-77.35957527773915, 34.54645355080497], [-77.35958429557459, 34.5464660376525], [-77.35959639152827, 34.54657292251414], [-77.35960309874089, 34.54661036374604], [-77.35961721417317, 34.546682504228514], [-77.35961977891483, 34.54669196682025], [-77.35961953677254, 34.5467035827674], [-77.3596256780213, 34.5467967884243], [-77.35962599521235, 34.546813483690286], [-77.35962438936116, 34.54683012805344], [-77.35962610622084, 34.54691715393903], [-77.35962788240236, 34.54693562393474], [-77.35962369873008, 34.546953976316914], [-77.35960561869999, 34.54705334823771], [-77.35960503143525, 34.547061326363114], [-77.35960275550252, 34.54706797085711], [-77.35961494350667, 34.54716698090306], [-77.35961176262717, 34.547182769089524], [-77.35961856428148, 34.54719984674851], [-77.35964440840198, 34.547265371848745], [-77.35965983051119, 34.54729825953365], [-77.35967660061561, 34.54735226797574], [-77.35967909936424, 34.547359807851805], [-77.35967481591108, 34.5474185137062], [-77.35968141039805, 34.5474772365856], [-77.359681570894, 34.54747862709419], [-77.35968164174442, 34.54747873681938], [-77.35968162486374, 34.547478896679564], [-77.35968466364794, 34.54753950763641], [-77.35965099830992, 34.547622453502484], [-77.35965524442841, 34.547666155855914], [-77.35965010403521, 34.54771192897658], [-77.35959384596919, 34.547797408759486], [-77.3596019719133, 34.54790093508464], [-77.35961150245177, 34.54794151637412], [-77.35957266396163, 34.547940200128195], [-77.35951111635093, 34.54796969269105], [-77.35937464041325, 34.54801536367288], [-77.35934028019003, 34.548057925447225], [-77.35931596858468, 34.5480822451179], [-77.35930139058192, 34.54812840821542], [-77.35926408758465, 34.54821212750086], [-77.35924011391823, 34.54825755973481], [-77.35922568867193, 34.548278862581405], [-77.35922932358235, 34.54830363591043], [-77.35926924622134, 34.54833177541329], [-77.35927911103603, 34.54832630280984], [-77.35927082535972, 34.54833356929374], [-77.35926905904668, 34.5483399527434], [-77.35925053861676, 34.54838681623687], [-77.35924387749992, 34.54839865549045], [-77.35924632246152, 34.54841146089518], [-77.35923437859955, 34.54846122920194], [-77.35923531539478, 34.54848013535752], [-77.3592359572023, 34.54849160488607], [-77.35924189679156, 34.54850532707032], [-77.35926544897265, 34.54849767056796], [-77.35927130104506, 34.548501817202954], [-77.35928224217923, 34.54850496718789], [-77.35928413770053, 34.54851182482393], [-77.35926567329739, 34.54851750603207], [-77.35926501874398, 34.54851646651886], [-77.35925225338616, 34.54851183502452], [-77.35926410575655, 34.54851815474792], [-77.35926404558307, 34.548518737837796], [-77.35926492045809, 34.54852076046155], [-77.35927101388549, 34.54854363675226], [-77.35927228487759, 34.54854758001282], [-77.35927556875113, 34.54857036208389], [-77.35928345389037, 34.54857657475737], [-77.35926851890483, 34.54863604183854], [-77.35926779958069, 34.54864003479838], [-77.35926860904543, 34.54864397709391], [-77.35925151275958, 34.54870358586646], [-77.35923083857958, 34.54874978491028], [-77.3592061334526, 34.5488039424159], [-77.35918913193197, 34.548834980011506], [-77.35915679033174, 34.54895665334754], [-77.35915464507244, 34.548961083174184], [-77.35915262577548, 34.548965124440095], [-77.3591559071672, 34.548995235443456], [-77.35915807187408, 34.549084276165985], [-77.35915700945239, 34.54908641804586], [-77.3591584082317, 34.54920212686891], [-77.35915846269633, 34.54920663180094], [-77.35915851958565, 34.549211337284], [-77.35915985401041, 34.54932172195757], [-77.35915993995921, 34.54932883099816], [-77.35915807974114, 34.54933530778769], [-77.35914579907241, 34.54945304740859], [-77.35914574204718, 34.54945328724439], [-77.35914562254558, 34.54945343148063], [-77.35914540849248, 34.549453883269116], [-77.35909387054618, 34.549552437040774], [-77.35897194194243, 34.54958461535239], [-77.35894625282984, 34.549578327247296], [-77.35877394327566, 34.54950682132505], [-77.35877640462537, 34.549491211550716], [-77.35873028384233, 34.54949972479715], [-77.35872456583493, 34.54953044078625], [-77.35884823112588, 34.54961853670564], [-77.35863679962677, 34.54970261112659], [-77.35854777894195, 34.54983423502945], [-77.35851047222667, 34.54988951831992], [-77.35834321013834, 34.54993607489408], [-77.35825833945027, 34.550015216761615], [-77.3581509424443, 34.55001853840337], [-77.35795697296018, 34.54999168505644], [-77.35800836389156, 34.54989359398241], [-77.35798205857384, 34.54985095418705], [-77.35795925810893, 34.54981666026325], [-77.35794661198378, 34.54986354918649], [-77.35776119585195, 34.54989325108235], [-77.35775516904779, 34.5498983286035], [-77.35770596772144, 34.54993919468547], [-77.3576745026999, 34.5499795274977], [-77.35759729249708, 34.550043470586566], [-77.35756095023146, 34.55006513027946], [-77.3575122829007, 34.55014897175429], [-77.35735890754566, 34.55031540837151], [-77.35735472737271, 34.5503206855904], [-77.35735112077991, 34.55032373605586], [-77.35732532615621, 34.55034792527799], [-77.35704989445185, 34.550611926913675], [-77.35700597375923, 34.550647744872556], [-77.3569581023947, 34.55067266803421], [-77.35680144777486, 34.55079660568043], [-77.35675798543116, 34.55083877936994], [-77.35662694274752, 34.55087640508489], [-77.35656024467208, 34.5509011854131], [-77.35652853697006, 34.55091219392203], [-77.3564269808474, 34.55094642867398], [-77.35636229544502, 34.55097267173633], [-77.35632508207037, 34.550984139194064], [-77.35626332179177, 34.55100836709767], [-77.3562501171605, 34.55102510156174], [-77.35621549774959, 34.551067062155354], [-77.35620784716527, 34.5511003871849], [-77.35616233869129, 34.55113170983226], [-77.35610996757931, 34.551205284814834], [-77.35608490264494, 34.551240497818256], [-77.35604630802038, 34.55129849791152], [-77.35596036148777, 34.55137883666781], [-77.35595890819407, 34.5513801601063], [-77.35576143381024, 34.551492919849906], [-77.35569841569337, 34.551501790233836], [-77.35556451438903, 34.55151940584369], [-77.35537203833893, 34.551584617844085], [-77.35536669127698, 34.55158528788152], [-77.35536164582491, 34.55158630695578], [-77.35535966584882, 34.551589723516315], [-77.35532143458026, 34.55162290893337], [-77.35519780837379, 34.551735434667286], [-77.35518233838768, 34.551747438084746], [-77.35506826146096, 34.55187649432318], [-77.35501994452339, 34.55191679876679], [-77.35496563124923, 34.55195301208896], [-77.35487035408278, 34.55202739442946], [-77.3548130313668, 34.55206449828051], [-77.3547652998517, 34.55212815886708], [-77.3546450885548, 34.55213468519055], [-77.3545682529507, 34.55216011670923], [-77.35451248986121, 34.5521666416531], [-77.35449527221351, 34.55220379768715], [-77.35445943427001, 34.55227516402731], [-77.35456337089718, 34.55237289711606], [-77.35463289931981, 34.55238527775615], [-77.35461647577833, 34.552431173263216], [-77.35461013010676, 34.55246252556208], [-77.35456037055994, 34.552503664558046], [-77.35451542401296, 34.55247416752037], [-77.35447527088775, 34.55245149907736], [-77.35428907686241, 34.55240406755345], [-77.35417027610428, 34.55239321406931], [-77.35413739246437, 34.55239815725808], [-77.35407126655505, 34.552430354589816], [-77.35402998785393, 34.552428625200115], [-77.35402359807361, 34.55245530886857], [-77.35399564406288, 34.55247400878576], [-77.35397211118807, 34.55247384443625], [-77.35392654831799, 34.552497352408444], [-77.35392137948256, 34.552499968198234], [-77.3538727997182, 34.55252413074866], [-77.35383753736485, 34.55254329609322], [-77.35379965148087, 34.552564927582104], [-77.35377315287134, 34.55258902281723], [-77.35370578488285, 34.55260405224047], [-77.35365653194765, 34.552619478455405], [-77.35357479656336, 34.55267795185011], [-77.35347813787286, 34.55265561800281], [-77.35347639128122, 34.55265601582558], [-77.35346880105294, 34.55265757681222], [-77.35337820489146, 34.552689998356826], [-77.35334841638604, 34.55271793549403], [-77.35322910620698, 34.552753282849764], [-77.35322089827241, 34.5527800773716], [-77.35315614078735, 34.552778572495], [-77.3529822970682, 34.552832727935716], [-77.35294060924917, 34.5528209695576], [-77.35284011553527, 34.55284317572266], [-77.35278540070045, 34.55285801922318], [-77.35273435082844, 34.552856349670726], [-77.35260370763092, 34.55285233382688], [-77.3525890940779, 34.5528576268584], [-77.35257223978553, 34.55284782659869], [-77.35243732855864, 34.552839721648354], [-77.35223615174554, 34.55279767693132], [-77.35219792018574, 34.55279418276058], [-77.35218479514863, 34.55278943154559], [-77.35217046544469, 34.55278324188686], [-77.3520030462963, 34.55273143203288], [-77.35194796022975, 34.55272726316421], [-77.3518123314304, 34.55271237511654], [-77.35180719539383, 34.55271121444804], [-77.35171137285315, 34.552664907193765], [-77.35161757830603, 34.55261799353448], [-77.35161307414799, 34.55261572973983], [-77.35153249483956, 34.5525588870241], [-77.35142021181174, 34.55246548475639], [-77.35137792960994, 34.552434471422345], [-77.351349748728, 34.552411718029006], [-77.35132459520072, 34.55235414406294], [-77.35132427926618, 34.55235396743266], [-77.35123417986142, 34.552305939848495], [-77.35123140018591, 34.55230397594989], [-77.35109978260523, 34.55220287119185], [-77.3510744016591, 34.552181401515085], [-77.35103577547787, 34.552109036317894], [-77.35097078235827, 34.55201843983576], [-77.35095781385952, 34.55197848149848], [-77.3508549410739, 34.551877205063064], [-77.35084791071021, 34.551870045030526], [-77.35080351584674, 34.55175586604861], [-77.35075785792331, 34.551696818961915], [-77.3507279407463, 34.55164433191714], [-77.35068577294517, 34.55154650453272], [-77.35067835771574, 34.55152905703556], [-77.35067670757397, 34.55151685754067], [-77.35065739392695, 34.551489378369524], [-77.35061951791154, 34.551415114292716], [-77.35059980704119, 34.551380481505376], [-77.35059254037284, 34.55133917887541], [-77.35058533771462, 34.55129762268078], [-77.35057624877143, 34.551244826592274], [-77.35055476217619, 34.55112640159919], [-77.35053865875935, 34.55105951923042], [-77.3505224358729, 34.55103017996751], [-77.35050797546349, 34.55100272970491], [-77.35050270670041, 34.55096065766605], [-77.35050044627607, 34.55094260795173], [-77.35048961349925, 34.550934333653984], [-77.35047397614773, 34.550928575036764], [-77.35043661240707, 34.55091409510372], [-77.3503855432844, 34.55089793871398], [-77.35038045000283, 34.550896248441624], [-77.3503766131712, 34.550894101086], [-77.35032723493131, 34.55084512471515], [-77.3503151271565, 34.55082499264313], [-77.35031402983226, 34.55081642245625], [-77.35028061170908, 34.55080042400643], [-77.35027311450814, 34.55079644005522], [-77.35026269619652, 34.55079320733728], [-77.35027111296279, 34.550785864309105], [-77.35027802880421, 34.55076255179808], [-77.35027783460447, 34.55076042610376], [-77.35026437789372, 34.550742710278456], [-77.35024930837895, 34.55073392871469], [-77.35024082909223, 34.550709031844605], [-77.35021151195109, 34.550662029466864], [-77.35016392991699, 34.55062380506562], [-77.35009225772357, 34.55051254223612], [-77.35009181872422, 34.55051123142127], [-77.35009095880672, 34.550510916254105], [-77.35002219553996, 34.55044322954752], [-77.34994965831008, 34.550409819905695], [-77.3499312345989, 34.55039137219221], [-77.34989848895943, 34.55034393842563], [-77.34986320834098, 34.55032216215339], [-77.34985827304462, 34.550300560586045], [-77.34987261147799, 34.55028146506582], [-77.34986636675879, 34.55019909281521], [-77.34986652505182, 34.550176962569914], [-77.3498555542078, 34.550148972776526], [-77.34984086279475, 34.55011945035184], [-77.34982873256396, 34.550106887824434], [-77.34980641347778, 34.55007963283764], [-77.34979670176803, 34.55007078302664], [-77.34979671882054, 34.55006459781962], [-77.3497914738658, 34.550055693519326], [-77.34977757454291, 34.55002491520056], [-77.34973757273022, 34.55001190419067], [-77.3497103462077, 34.549988885767654], [-77.34965848102667, 34.54999434357813], [-77.34961195496561, 34.54999917047988], [-77.34957943243236, 34.55001460343546], [-77.34954200620109, 34.55002213024765], [-77.34954546344242, 34.54999807300452], [-77.34956258366309, 34.549975881189724], [-77.34961339680198, 34.54993649405084], [-77.34965732154839, 34.549928314861575], [-77.34965045974695, 34.549902029962155], [-77.34966516342045, 34.549870035031056], [-77.34966460740189, 34.549869028894165], [-77.34964385835086, 34.54984177472135], [-77.34961629981065, 34.54981030074502], [-77.34960525700126, 34.54979325489461], [-77.34959523550512, 34.54978756668068], [-77.34956365685605, 34.549758542524785], [-77.34954798279077, 34.549733161440685], [-77.34954215621434, 34.54972031850659], [-77.34952032249446, 34.54971566625043], [-77.34945557936419, 34.54966514452893], [-77.34935637235783, 34.54963832492724], [-77.34934727822602, 34.54962640739539], [-77.34914642701698, 34.54954612661771], [-77.34913196975087, 34.54953033011636], [-77.34901589092425, 34.549394422862534], [-77.34890918680202, 34.5493354452843], [-77.34874695295737, 34.54920011956323], [-77.3486533866718, 34.54918598183652], [-77.34856972769975, 34.54913947302512], [-77.34835939114994, 34.54898059727672], [-77.34833193768347, 34.548946478911304], [-77.34831001180565, 34.548932025250956], [-77.34812263961884, 34.54880889231553], [-77.34800273503186, 34.54873142072352], [-77.34798975945671, 34.5487226600162], [-77.34797309654134, 34.548706123820246], [-77.34789779305801, 34.54855088653434], [-77.34787579608047, 34.548504866109894], [-77.34783324386466, 34.548358369155814], [-77.34775257444534, 34.54827777652974], [-77.34759474056611, 34.54808704127443], [-77.34758191113538, 34.54806581839898], [-77.34756074134016, 34.54806055971012], [-77.34755256219594, 34.54803468346867], [-77.3474068065548, 34.54783788889736], [-77.34733974739578, 34.54776633044137], [-77.34721255305827, 34.547634550507325], [-77.34720546053168, 34.54762657814238], [-77.34720091075025, 34.54762269557886], [-77.34707890236109, 34.54748097778969], [-77.3469444900715, 34.54741477133349], [-77.34685848439668, 34.54720011750018], [-77.34684187705619, 34.547177604340156], [-77.34672402660064, 34.54695685250108], [-77.34661650908814, 34.546865411102026], [-77.34657629813552, 34.5467332889727], [-77.3464514731973, 34.54658711831335], [-77.34639911981037, 34.54654718264141], [-77.34639132336933, 34.54651508409614], [-77.3463274727198, 34.54644490301007], [-77.34616111483395, 34.54624455234871], [-77.34606825149491, 34.54618007196381], [-77.34601174720342, 34.54611621177245], [-77.34597167567794, 34.54608582427688], [-77.34590768239947, 34.54599220316569], [-77.34589156833883, 34.54597494038765], [-77.34588687032189, 34.54596934173249], [-77.34577970705075, 34.545868624999315], [-77.34568537591886, 34.54575817412958], [-77.34561889881866, 34.54568938534419], [-77.3455838774017, 34.54565198102851], [-77.34554109409466, 34.54556539298998], [-77.34551032414622, 34.545530181801475], [-77.34549479688708, 34.54551004145426], [-77.34541737991525, 34.54543111670792], [-77.34537309608749, 34.545392657126676], [-77.34530335510554, 34.54529937510721], [-77.3452512869145, 34.54524346698304], [-77.34522507239971, 34.54521396553557], [-77.34517575387989, 34.545139187142766], [-77.3451347924118, 34.54509025605284], [-77.34503843932394, 34.544995997784966], [-77.34500288301243, 34.54494870790772], [-77.34492133091788, 34.544840906411466], [-77.34488815766323, 34.544794158855595], [-77.34487201809904, 34.544775122038736], [-77.34482913807528, 34.544722091723536], [-77.3447645624669, 34.54464632074723], [-77.34468543026176, 34.5445571473342], [-77.34463489165816, 34.54450307949513], [-77.34458457430858, 34.544449248063515], [-77.34453889706595, 34.54440038079432], [-77.34450287030408, 34.544361616932605], [-77.34448018494412, 34.54434185695709], [-77.34439768123201, 34.54426369903106], [-77.34436058108798, 34.54422792294076], [-77.34434691564994, 34.54421332195921], [-77.34429541658673, 34.54415655157197], [-77.34425701202798, 34.544129145440735], [-77.34421744470264, 34.5440948699982], [-77.34416233729385, 34.54402035654628], [-77.34415526279233, 34.54401206003367], [-77.3440899338181, 34.54394999541313], [-77.34401572082712, 34.54391904027435], [-77.34396290646829, 34.54384132465841], [-77.34393098287251, 34.54382890779095], [-77.3437678783304, 34.543786400653936], [-77.34370166276835, 34.5437610599238], [-77.34357221958899, 34.54375880976959], [-77.34353317378023, 34.54374364292665], [-77.34351424614977, 34.54366150886655], [-77.34337946298312, 34.54360549113645], [-77.34328932827385, 34.54359032998546], [-77.34303579378468, 34.54357037708515], [-77.34289531160718, 34.543405741353624], [-77.34259860375616, 34.54341834136915], [-77.34189402086507, 34.54324498954205], [-77.34183911610599, 34.543239443386135], [-77.34181763671609, 34.543235992959595], [-77.34168795157547, 34.54319314313368], [-77.34103831824252, 34.54298244033284], [-77.34087551048844, 34.54300309072753], [-77.34064346299135, 34.5430805255203], [-77.34053858915314, 34.543130463244054], [-77.34024872887659, 34.54317332687925], [-77.34010769521365, 34.54310129033299], [-77.34005407766469, 34.5431022540374], [-77.33993592160236, 34.54303701031569], [-77.33989612361049, 34.543020011554525], [-77.33988866867126, 34.54298260240361], [-77.3398743790319, 34.54297612739428], [-77.33986080449122, 34.542971601871656], [-77.33985079388879, 34.542963802896196], [-77.33985186466603, 34.54295729380708], [-77.33984454407502, 34.54294786445206], [-77.33984196416756, 34.54294031556303], [-77.33981997651365, 34.542931278130155], [-77.33981289515586, 34.54292125806476], [-77.33980401401267, 34.5429086913161], [-77.33979150991735, 34.54289099809481], [-77.3397807133092, 34.54287572096516], [-77.33978262079864, 34.542864541349246], [-77.33976650000297, 34.54281656076384], [-77.33967033965276, 34.542719542514845], [-77.3396578895802, 34.54271756587933], [-77.3396563967542, 34.542701026355346], [-77.33968956571819, 34.54258280829301], [-77.33965280314993, 34.542480076443205], [-77.33962757315247, 34.542469315967104], [-77.33963067017932, 34.54244010240831], [-77.33965678871928, 34.54234270469293], [-77.33965360925505, 34.54223812919736], [-77.33965155731352, 34.542221048284446], [-77.33962861742575, 34.542190702636915], [-77.33959806162267, 34.54210633359682], [-77.33956396606277, 34.54206460921951], [-77.33949066315375, 34.5420010937817], [-77.33928865349458, 34.5417902165013], [-77.33917283606596, 34.54167785834437], [-77.33910729067479, 34.541602917952], [-77.33902691655875, 34.541505554652446], [-77.33891224438207, 34.541470520920576], [-77.33889732219589, 34.541362260014665], [-77.33890325160813, 34.541349405593586], [-77.33889057218023, 34.541334619396665], [-77.33881121932784, 34.54124023334198], [-77.3387854896421, 34.54120552823064], [-77.33872373060623, 34.54121300775688], [-77.33864000593105, 34.54119492221595], [-77.33861888346927, 34.54120235876665], [-77.33861989132576, 34.54121013933231], [-77.3386189602362, 34.54126788530674], [-77.33862393297878, 34.541284423805294], [-77.33866774133269, 34.54129460741889], [-77.33864996355138, 34.541341689973414], [-77.33867725222646, 34.541381910268505], [-77.33868615167623, 34.54148350773555], [-77.33869068039986, 34.54150238779832], [-77.33871584217624, 34.54155392805968], [-77.33885337802958, 34.54163684038636], [-77.33883102145916, 34.541727020854594], [-77.3387955771488, 34.5417851788602], [-77.33880129662964, 34.54179690885619], [-77.33880804544927, 34.54181074986017], [-77.3388340393192, 34.54184899571569], [-77.33885521768104, 34.54187678440525], [-77.33888923418178, 34.54195497243211], [-77.33889397129137, 34.541962784797256], [-77.33890235385587, 34.54197660915991], [-77.33901944278938, 34.54199388079984], [-77.33903503335674, 34.54215014851967], [-77.33905506394642, 34.54218443304241], [-77.339068136705, 34.542198379083935], [-77.33909242735444, 34.54224541018332], [-77.3391446058798, 34.542293963347035], [-77.3391682791215, 34.54233921318076], [-77.33918118904474, 34.542354189184444], [-77.33922452022688, 34.54240487830499], [-77.33928260690311, 34.542509680505724], [-77.33928633492128, 34.542515980842225], [-77.33929830226283, 34.54251667526364], [-77.33928906883604, 34.54252221377376], [-77.33932211498535, 34.54263565909292], [-77.33935113672652, 34.54270829367399], [-77.3393423505335, 34.54279655189583], [-77.33927496728546, 34.54283995115773], [-77.33922549148248, 34.54289437434121], [-77.33923216715729, 34.54291896459774], [-77.33923526540015, 34.542954173062256], [-77.33925480008071, 34.54300233395955], [-77.3392616801203, 34.54301157834605], [-77.33926440731902, 34.54301524275676], [-77.3392707873457, 34.54302065570306], [-77.33930375096224, 34.543045812871455], [-77.339346766156, 34.54304710231478], [-77.33936848098892, 34.54304026249504], [-77.3393755324517, 34.54303005539498], [-77.339378095579, 34.543025436683315], [-77.33939035500255, 34.543010462631166], [-77.33939157073499, 34.54300681258961], [-77.33938346713052, 34.54299406185649], [-77.33938162598113, 34.54298689916617], [-77.33937003835085, 34.54297293213943], [-77.33935390048362, 34.54294753975613], [-77.33931701322646, 34.542942415386094], [-77.33932181835183, 34.54291075747153], [-77.33939568748993, 34.542915927149444], [-77.33939823604422, 34.542930733166614], [-77.33944042657349, 34.542942415483694], [-77.33945254793429, 34.54297439554573], [-77.33944998555219, 34.54298449452896], [-77.33946001191595, 34.54298793308047], [-77.33946705731633, 34.543012508663345], [-77.3394670439805, 34.543012643257434], [-77.3394671359942, 34.54301271072128], [-77.33946725890036, 34.5430129917958], [-77.33947267364422, 34.543027134662395], [-77.33947770323877, 34.54303488354475], [-77.33948588632558, 34.54304053539857], [-77.33950788804799, 34.54306343472652], [-77.33951124222837, 34.54306984497572], [-77.33951498479057, 34.54307126110175], [-77.33953846804722, 34.543078320739234], [-77.3395637007379, 34.54308672521182], [-77.3395673540808, 34.54308772962603], [-77.33956886449313, 34.543089805089544], [-77.3395707800614, 34.54309404986911], [-77.3395782905181, 34.54310375045867], [-77.33957930009564, 34.54310885940314], [-77.33959830428245, 34.54311617297965], [-77.33960238971743, 34.54312155882983], [-77.33963243394227, 34.54314186630874], [-77.33966015899426, 34.54315975592814], [-77.33969339743955, 34.543173378413655], [-77.33974383175628, 34.54318704822594], [-77.33985358703828, 34.54328371789287], [-77.33989906014455, 34.54325912792436], [-77.33994840353739, 34.54328003298076], [-77.34016987667565, 34.543295586868965], [-77.34010416221642, 34.543380038651584], [-77.34024171297094, 34.54347678913174], [-77.34024626055893, 34.543479139209225], [-77.34024631674855, 34.54348200087273], [-77.34025094906873, 34.54348724491735], [-77.34030937991372, 34.543552057155196], [-77.34035925492657, 34.54358816528703], [-77.34038493965679, 34.54361556362082], [-77.3405921033383, 34.54367708196112], [-77.34060559986719, 34.54368996719729], [-77.34062915589615, 34.54369948321587], [-77.3407618131034, 34.54373592044709], [-77.34101966732769, 34.54378948571996], [-77.34115629431298, 34.54375602829414], [-77.34112081647235, 34.54384584963981], [-77.34109163169296, 34.5438964660471], [-77.3411593832378, 34.54396271138462], [-77.34118197915946, 34.54397793780703], [-77.34121098094714, 34.54400509577823], [-77.34125392256587, 34.544044180414275], [-77.34130633336294, 34.544063982737725], [-77.34134800071288, 34.54409367724966], [-77.34140343257945, 34.5441714956218], [-77.34165634649351, 34.54417134785703], [-77.34179736028794, 34.5441137350936], [-77.34196192418753, 34.54411190148751], [-77.34195803312902, 34.544215056120976], [-77.3421858480097, 34.54429148574958], [-77.34229859391442, 34.54433988036796], [-77.34233010232232, 34.5444063524042], [-77.3423783915604, 34.54445401380023], [-77.34244765803768, 34.54446844909425], [-77.34249322311963, 34.544578699860004], [-77.34252513451598, 34.54462311515776], [-77.34253894934469, 34.544640726034984], [-77.34256969337987, 34.54467034939179], [-77.34286580646751, 34.54487612922521], [-77.34293829201413, 34.545053318045106], [-77.34294254642559, 34.54505941598779], [-77.34295314935297, 34.545066230723776], [-77.34317953246199, 34.54512146735189], [-77.34334195614915, 34.54523044813589], [-77.34351106953471, 34.54535333094691], [-77.34355012642082, 34.545454937961594], [-77.34360185366891, 34.54552599343349], [-77.34361278816948, 34.54556833303005], [-77.34370232212174, 34.54566400176789], [-77.34371729372823, 34.54567570823579], [-77.34372008480442, 34.545677890608225], [-77.34372412496398, 34.54568237433477], [-77.34378864772982, 34.54574669170765], [-77.34384499706307, 34.545779745995084], [-77.34387335121005, 34.5458032815026], [-77.34401269777005, 34.54587802938403], [-77.34403057542814, 34.545925678240124], [-77.3440522271104, 34.5459947522247], [-77.34410832827933, 34.54604630163377], [-77.34415300025131, 34.54607440316095], [-77.34419188956173, 34.54609706923696], [-77.34425112772257, 34.546179510415314], [-77.34428777032923, 34.546213788223255], [-77.34445036325033, 34.54630470269579], [-77.3444939639188, 34.54634828052467], [-77.3446497536045, 34.546422619092056], [-77.34466647360145, 34.54651843046906], [-77.3447971163605, 34.54669364182228], [-77.34484445326753, 34.54673764408335], [-77.34484611262926, 34.54675675711509], [-77.34487671010646, 34.54677566617131], [-77.34515162312552, 34.54700831481201], [-77.3452005856021, 34.54717604565606], [-77.34522401913398, 34.54719489172195], [-77.34525883822589, 34.54723002798109], [-77.34529807393896, 34.54725953881957], [-77.34530428956285, 34.5472835352697], [-77.34534789282671, 34.54733429316198], [-77.34535219126765, 34.547339270055645], [-77.3454017733751, 34.54739191964753], [-77.34545005007028, 34.54745086727817], [-77.3455118065419, 34.54745985942898], [-77.34555305658253, 34.547558340672694], [-77.34559515716307, 34.547608916123174], [-77.34560321704774, 34.54763205082517], [-77.34564167937204, 34.54765364227734], [-77.34577703938595, 34.54774189199072], [-77.34580596243944, 34.547823405919125], [-77.34583330757839, 34.547856505277515], [-77.34588681444984, 34.547900189787214], [-77.34592096597709, 34.547929269311105], [-77.34596274896342, 34.548006123895796], [-77.34599109089362, 34.54804158973174], [-77.34602444906739, 34.54808052618988], [-77.34620999309996, 34.54813838262008], [-77.34632091283164, 34.54842882539844], [-77.34636013754324, 34.54847813098073], [-77.34637386152576, 34.54849710731507], [-77.34640635938356, 34.54854487491582], [-77.34658711858222, 34.54869029229806], [-77.34668472062276, 34.548744622338404], [-77.34678616178779, 34.548906473388705], [-77.34679051541775, 34.54891193426398], [-77.34697240794327, 34.54900966941712], [-77.34704633788864, 34.549113857768404], [-77.347174514356, 34.54928596017787], [-77.34720526834309, 34.5493161986791], [-77.34722266780973, 34.54933330640908], [-77.34723666514394, 34.54937127244071], [-77.3473890389308, 34.54955418768002], [-77.34746146335253, 34.54960507352719], [-77.34755618224673, 34.549761356728695], [-77.34756353610568, 34.54976920157961], [-77.34757012712993, 34.5497729514013], [-77.34773474938413, 34.54988101845511], [-77.34791714765662, 34.55019920788928], [-77.34792688729983, 34.55021125739425], [-77.34793106605753, 34.55021519856235], [-77.34793818034736, 34.55022260282941], [-77.34818668263844, 34.550418694816024], [-77.34821114136119, 34.550486008332186], [-77.34828901699457, 34.55062856299802], [-77.34830519216104, 34.55064646253675], [-77.34831050092674, 34.550652190154665], [-77.3483186822261, 34.550749032061326], [-77.34832077490421, 34.550766630523015], [-77.34832079346198, 34.5507682197363], [-77.34836296029714, 34.550853856199986], [-77.34837634749246, 34.550881044111094], [-77.3483743744422, 34.550918487305154], [-77.3483951590847, 34.550950173158654], [-77.34841162992355, 34.550975282617884], [-77.34842547261499, 34.55099638551682], [-77.34844562035042, 34.55103267299913], [-77.34845273848444, 34.551053667201565], [-77.34845268062708, 34.551080786999826], [-77.34845259327557, 34.551084290675355], [-77.34845403874505, 34.551086642880485], [-77.34845792462218, 34.55109619970467], [-77.34846280487116, 34.55111018010394], [-77.34847684453158, 34.55111140358311], [-77.34849532148024, 34.55111574802967], [-77.34850643005066, 34.551121076099975], [-77.34853097194397, 34.551134217415466], [-77.34853413405652, 34.5511467220766], [-77.34853103907005, 34.55116481032868], [-77.34853433244469, 34.55118261820284], [-77.34852763745994, 34.55119590238088], [-77.34854212519097, 34.5512010152418], [-77.34857100586177, 34.551220264379154], [-77.34860169391862, 34.551246735718905], [-77.34862438851006, 34.551259454206665], [-77.34869863312994, 34.551299613873184], [-77.3487277566858, 34.55130192551553], [-77.34877614867528, 34.5513131550922], [-77.34884556557199, 34.55133347110856], [-77.34889368692585, 34.55135431005568], [-77.34889672830036, 34.55135510122312], [-77.34889733029758, 34.551356922392046], [-77.34892951287202, 34.551390636039095], [-77.34893988640167, 34.55141200373157], [-77.34900111535862, 34.551471866416364], [-77.34905425559754, 34.55151795632893], [-77.34906547134217, 34.551529128582], [-77.34908539845043, 34.55155426880036], [-77.34918768667958, 34.55167801920012], [-77.34921792242729, 34.55173922526424], [-77.34927595326337, 34.55180454253891], [-77.34929726861967, 34.55183646850504], [-77.34930261660975, 34.55184944801846], [-77.34930461223284, 34.55186794052597], [-77.34933155642327, 34.551931205733126], [-77.34934678463415, 34.551965502554225], [-77.34936924324867, 34.552016083615015], [-77.34937158362533, 34.55202160065622], [-77.34937173657454, 34.5520231171185], [-77.34937325236945, 34.5520255344301], [-77.34939096099775, 34.552067279485314], [-77.34938935919781, 34.55208178637698], [-77.34939860793862, 34.552121833468995], [-77.34939958787771, 34.552141519647705], [-77.34940188260225, 34.552163658488304], [-77.34938445258308, 34.552204902831846], [-77.34938724741765, 34.552251107981824], [-77.34938804492776, 34.55226559112333], [-77.34938765443107, 34.55228092675455], [-77.34937899055731, 34.552328099276416], [-77.34937722877628, 34.552337949424995], [-77.34938376401163, 34.552374422739646], [-77.34938685797185, 34.55238817234112], [-77.34938897063785, 34.55240575922298], [-77.34938541671971, 34.55244958491564], [-77.34938311086054, 34.55249559613068], [-77.34939148066594, 34.55250991753589], [-77.34937654603742, 34.552523905162815], [-77.3493567325669, 34.55255987429864], [-77.34934667186477, 34.552577570818606], [-77.34932070178422, 34.552620922298765], [-77.34930073618742, 34.55264538622353], [-77.34928328799182, 34.5526648120774], [-77.34925590086716, 34.552676097367346], [-77.34921698367572, 34.552694643178256], [-77.34920609992531, 34.55270747868118], [-77.34919809998621, 34.5527213608528], [-77.34918962014385, 34.552743423608526], [-77.34915966889795, 34.55278532831309], [-77.34915901973056, 34.55278818969353], [-77.34916332058559, 34.55279272180053], [-77.34915494069304, 34.55279789209145], [-77.34914322488396, 34.552797769562574], [-77.34905569222195, 34.55284528422193], [-77.3490387576474, 34.5528562992006], [-77.34902243518991, 34.552869049276374], [-77.34899842766441, 34.55289876994287], [-77.34898701613294, 34.55290474861747], [-77.34898166418851, 34.55292000331346], [-77.3490049245846, 34.55291866890539], [-77.34901371637984, 34.552931509084516], [-77.349004284215, 34.55294649842475], [-77.34899038027422, 34.55293486711088], [-77.34897967992244, 34.55292150456803], [-77.34895574854883, 34.55292288290675], [-77.348934667257, 34.552929838956935], [-77.34887029877058, 34.55295214656318], [-77.34885673805645, 34.552959921859404], [-77.3488526878378, 34.55295724460164], [-77.34878043748853, 34.552978979803136], [-77.34875749227352, 34.553007180832665], [-77.34868885312186, 34.553020858590955], [-77.3486587123655, 34.55303419207418], [-77.34864776619375, 34.553038611408695], [-77.34862563800704, 34.553048557447504], [-77.34862306097754, 34.55307063516591], [-77.3486379420076, 34.553107992112494], [-77.34865621447993, 34.55314272720104], [-77.34866466272022, 34.55315983895121], [-77.34867681915229, 34.553163603017886], [-77.34871680836551, 34.553241065462764], [-77.3489477289763, 34.55324703027941], [-77.34894007339543, 34.55331350612533], [-77.34904559604563, 34.553284060812715], [-77.34906705214892, 34.553242644380944], [-77.34909382074537, 34.55322600800351], [-77.34920258914777, 34.55311489271255], [-77.34923302455397, 34.55308356634075], [-77.34923884306669, 34.553077856549564], [-77.34924667377909, 34.553077144117715], [-77.3494267417964, 34.55293327982825], [-77.34941223423372, 34.55291384746212], [-77.34930570443714, 34.55282828685989], [-77.34941061536652, 34.552788867789985], [-77.34940229048439, 34.55275318280384], [-77.34941295740187, 34.552727911509514], [-77.34943445172041, 34.55269811079307], [-77.3494449615944, 34.552685837139926], [-77.34944553162543, 34.552681666711806], [-77.34945223266077, 34.552675395607714], [-77.34949514121661, 34.552617410939085], [-77.34949343284634, 34.55258078433992], [-77.34955283588637, 34.55256909197072], [-77.34960691336963, 34.55256762806647], [-77.34965068389528, 34.5525825543832], [-77.34983374943388, 34.55262988897955], [-77.34983999779847, 34.55263263722954], [-77.34984551168723, 34.5526472306076], [-77.34992531415668, 34.552739122714435], [-77.34994497869566, 34.55279456870164], [-77.34999265506656, 34.55285184229126], [-77.34990913271301, 34.553063049028474], [-77.35021366634982, 34.55330383225481], [-77.35021827655578, 34.553309015880544], [-77.35022049799345, 34.5533101923023], [-77.35022284767543, 34.553312353646966], [-77.35046227846298, 34.5536099830793], [-77.35062307483992, 34.553740403119335], [-77.35078179034394, 34.55385096358473], [-77.3509947320687, 34.55389459427684], [-77.35101984413261, 34.55391221418165], [-77.35103095212028, 34.55392652627667], [-77.35111689168446, 34.55408014962346], [-77.35120457201762, 34.55414636101588], [-77.35137833898185, 34.5542875036267], [-77.35141591153163, 34.554336635711714], [-77.35146645445737, 34.554353493272615], [-77.35176521632458, 34.55453823331278], [-77.35182901606406, 34.55450680455521], [-77.352394894796, 34.55436519303433], [-77.35255844777058, 34.55419196541584], [-77.35271594050842, 34.55402464753114], [-77.35309991671298, 34.5540279449732], [-77.35322806898913, 34.55409995288819], [-77.35334426732386, 34.554168242674955], [-77.35345444829414, 34.55424242806956], [-77.35360905515282, 34.55421082938894], [-77.35373833670948, 34.55410584670746], [-77.35379097660135, 34.55405096810764], [-77.35392998221118, 34.55388261944982], [-77.3540144991262, 34.55374193508037], [-77.35406188092043, 34.55368602583175], [-77.35414104062653, 34.5536671644824], [-77.35440613550762, 34.55344074006949], [-77.35437678061211, 34.55334249042833], [-77.35454233454377, 34.5532897533045]], [[-77.39068026031235, 34.70563988940285], [-77.39077086368641, 34.70589622341456], [-77.39146071506357, 34.70620715824099], [-77.3915274151733, 34.706251839599545], [-77.39158362892898, 34.706222251212765], [-77.39167686207395, 34.706213329979526], [-77.39201189675944, 34.70542607073514], [-77.3923449548503, 34.70494591560319], [-77.39119277560137, 34.70408599237289]], [[-77.31960558806361, 34.54571461040343], [-77.3195302279232, 34.545634165183124], [-77.31948219178233, 34.54554758221613], [-77.31949082697412, 34.54548628508671], [-77.31939174220112, 34.54549759165341], [-77.31938707016204, 34.545496596905494], [-77.31902658896891, 34.54553242224719], [-77.31907666795895, 34.5453009699541], [-77.31903157750325, 34.54528735502297], [-77.31899956153005, 34.54527852941976], [-77.31891210892827, 34.545257048676085], [-77.31887957943324, 34.54525411096472], [-77.31880344739432, 34.54527047949297], [-77.31872490732748, 34.54527796101875], [-77.31860644042014, 34.54530062166624], [-77.31842771431579, 34.54528248309296], [-77.31821384882926, 34.545300054710566], [-77.3181147151484, 34.545256790246874], [-77.31810368035546, 34.54519592911093], [-77.31815328016548, 34.545148831295485], [-77.31815377555623, 34.54510660709739], [-77.31813257920682, 34.545069372189815], [-77.31812131005755, 34.54506003984154], [-77.31806446448664, 34.54505349575382], [-77.31802352411296, 34.54504443123204], [-77.31791578643598, 34.545033168668226], [-77.31782674730796, 34.54506473791965], [-77.31777165848366, 34.545033616150754], [-77.3176831807096, 34.54501152043452], [-77.31743592882064, 34.54498841029147], [-77.31724474253785, 34.54507449846019], [-77.31713408936388, 34.54514933715272], [-77.31703867345674, 34.54518722749356], [-77.31692240093209, 34.54519321428661], [-77.31677207940083, 34.545221465151656], [-77.31672036255867, 34.545272224787574], [-77.31666539002435, 34.545293722672056], [-77.31664197879921, 34.54536200016925], [-77.31663043459358, 34.54540091652439], [-77.31662867916263, 34.54540779923686], [-77.31662126567073, 34.54542092003344], [-77.31659260465032, 34.54553538623297], [-77.31655938410267, 34.54561474924988], [-77.31644407925342, 34.545679124730015], [-77.31663012740513, 34.545868440491056], [-77.31675958084219, 34.54571224999014], [-77.31686149636015, 34.54561916937459], [-77.31695716776039, 34.54556004347476], [-77.31703048530235, 34.54553719800729], [-77.31716654967852, 34.54549118026992], [-77.31722847761387, 34.54546499405304], [-77.31727578590682, 34.54546678165413], [-77.31742461076662, 34.54547225297372], [-77.31751704098107, 34.54546744265807], [-77.31771977709482, 34.54549588625272], [-77.31778867576286, 34.54550333301362], [-77.31781641962303, 34.54550633161051], [-77.3178834055695, 34.545514267101275], [-77.31820868368459, 34.545520951829516], [-77.31846917912941, 34.545471338409534], [-77.31859990650517, 34.545580113072475], [-77.31864102500084, 34.54558268592551], [-77.31875886127429, 34.54559143563416], [-77.31893079780306, 34.54560485833433], [-77.31898842613944, 34.545754947445545], [-77.3192618936192, 34.54583707754155], [-77.319364712646, 34.545994026034194], [-77.31937539308808, 34.54599629144599], [-77.31952952213993, 34.54611729109064], [-77.31973465957363, 34.546167394670036], [-77.319764447039, 34.5461484018467], [-77.32006181271898, 34.54607828247569], [-77.32003302525382, 34.54589801643241], [-77.31985334821564, 34.54587241498617], [-77.31977291518326, 34.54578595294784]], [[-77.3942827505902, 34.605940823957106], [-77.39427752236777, 34.60595131031178], [-77.39426848653517, 34.60596433539526], [-77.39393400304823, 34.60647999679138], [-77.39387430171573, 34.60649958052858], [-77.3936078038439, 34.606749777041045], [-77.3934801263017, 34.606866430852286], [-77.39346360446604, 34.606890299949654], [-77.3934419464477, 34.60691121811726], [-77.39307763948085, 34.60737938819408], [-77.39304491153665, 34.6074372259298], [-77.39296774092226, 34.60782874038274], [-77.39286141240107, 34.60802685607018], [-77.39269171606736, 34.60812218082092], [-77.3923850201845, 34.6082431199582], [-77.39220743407515, 34.60826587516948], [-77.39210262278174, 34.60858799274878], [-77.39256790568716, 34.608602220316655], [-77.39269166677778, 34.6086487924622], [-77.39272706920228, 34.608674448617386], [-77.3934681162582, 34.608592945876], [-77.39347998012335, 34.608594265269325], [-77.39349243009399, 34.60858880893922], [-77.39402944682556, 34.60826747708238], [-77.3942683314896, 34.60801404963825], [-77.3944480557111, 34.60780884479919], [-77.39453029355424, 34.60760340706366], [-77.39505668960294, 34.60716323093331], [-77.39524047960333, 34.6068497980788], [-77.39545085976016, 34.60678477055778], [-77.39573543970924, 34.60669848587547], [-77.39584501161367, 34.606665515681044], [-77.39592777317861, 34.60664186702884], [-77.39616510463951, 34.606518487980296], [-77.39621464805546, 34.60648493215795], [-77.39623916847135, 34.60642793944481], [-77.39637519150199, 34.606210126960505], [-77.3966333378288, 34.60588325062497], [-77.39725256089984, 34.60569461122164], [-77.39742162607068, 34.605697487950835], [-77.39763800203534, 34.60568997819178], [-77.39807168936136, 34.60539433689283], [-77.39854391295222, 34.604836847728556], [-77.39899821729418, 34.60406430254219], [-77.39946703452141, 34.60349475931915], [-77.39926054179978, 34.603241977503444], [-77.39899823163125, 34.60338469485181], [-77.39880815246867, 34.603385047762806], [-77.39820997517401, 34.603372182746256], [-77.3978449591946, 34.60372875346634], [-77.39784514252732, 34.60418488749809], [-77.39742168754753, 34.60413468893827], [-77.39713068943045, 34.604145253133446], [-77.39663341058314, 34.60438730663853], [-77.39639215255147, 34.60452757065404], [-77.39606690874419, 34.60459545898079], [-77.39584512492797, 34.604701947773265], [-77.39574083838326, 34.60476905742789], [-77.39545097807212, 34.60488597490105], [-77.39537330296977, 34.60493440191817], [-77.39520359319687, 34.6051169776197], [-77.3950568198747, 34.605212569515984]], [[-77.34306032948442, 34.52342402034836], [-77.3434848818784, 34.52320257774282], [-77.34377138242013, 34.52289972588066], [-77.34368932339396, 34.522532044388385], [-77.34307607080832, 34.52274241307588], [-77.34287009614704, 34.52290325158093], [-77.3427007188051, 34.52305378228256], [-77.34275893880103, 34.52323610427419]], [[-77.33845945727985, 34.55086425403697], [-77.33849949189941, 34.55090439960704], [-77.33887870597951, 34.55077841803915], [-77.3385020488249, 34.550793888142465], [-77.3383181562496, 34.55072980388793], [-77.33815436986085, 34.55066391955725], [-77.33828874198532, 34.55075205389789], [-77.33840554175407, 34.55084646533047]], [[-77.21792823846141, 34.61729473944239], [-77.21808589401418, 34.617387144870456], [-77.21811618012987, 34.617473802074485], [-77.21825040320223, 34.617400138201184], [-77.2183762130169, 34.61725884168709], [-77.21839490001211, 34.61717586834196], [-77.21852050056972, 34.617073254637454], [-77.21831695487217, 34.617077544219065], [-77.21824423498879, 34.61714141537861], [-77.21821090124898, 34.61716133606582], [-77.21798660419842, 34.61724096355789]], [[-77.31137751584313, 34.550544181241946], [-77.31133992809221, 34.55057389255848], [-77.31129946196464, 34.55075460872282], [-77.31101697295739, 34.5508385393308], [-77.310997614261, 34.55085603759587], [-77.31096650270311, 34.550872318783895], [-77.31079729993249, 34.55100691826982], [-77.31076373158918, 34.551056145726804], [-77.31082104774437, 34.551138012121214], [-77.31068958885733, 34.55135347712368], [-77.31100807303821, 34.55121780039069], [-77.31117721318711, 34.55119195562103], [-77.31124915241853, 34.551076544894144], [-77.31134240863788, 34.55102396987962], [-77.31140615575194, 34.55098558561535], [-77.3115051110511, 34.550854769915915], [-77.31180698335493, 34.55063625633841], [-77.31188919455748, 34.55054494985801], [-77.31193787662205, 34.550488035418574], [-77.31222685031803, 34.55021251785821], [-77.31228602014397, 34.550146522585024], [-77.31227773094639, 34.54994961687662], [-77.31239726719956, 34.54982113264695], [-77.31221791819782, 34.54985581643368], [-77.3121735148631, 34.5499380985255], [-77.31201918980668, 34.54995875614602], [-77.31198805926941, 34.54999121107602], [-77.311897853977, 34.550052281516756], [-77.31181918796838, 34.550115962334594], [-77.31179430119184, 34.55014143724556], [-77.31177493816702, 34.55024085865764], [-77.31174526626226, 34.550270882680934], [-77.3115832427402, 34.55039593694008], [-77.31151656730216, 34.55042612538591], [-77.31141769640789, 34.55049369444787]], [[-77.39589359323475, 34.58028465203496], [-77.39593507021125, 34.580228211754374], [-77.3960012716618, 34.58005219337692], [-77.39584678223758, 34.58008648460121], [-77.39565207248293, 34.579629739226164], [-77.39533809980522, 34.579766174581785], [-77.395058765208, 34.57984445497469], [-77.39470909711139, 34.5799326965584], [-77.39466473775268, 34.57995041396457], [-77.39463211035188, 34.57995644276384], [-77.39433469154258, 34.57996556757321], [-77.39427071972011, 34.57994628574895], [-77.39396039318738, 34.57999830551019], [-77.39370407594072, 34.579939453149954], [-77.39373137465856, 34.58027808573162], [-77.39403360571063, 34.58050250311929], [-77.39413421456373, 34.580635007675745], [-77.39427065661178, 34.58061078668403], [-77.39446403090957, 34.58064878681196], [-77.39466466674938, 34.58073734416034], [-77.39472741898692, 34.580759374091606], [-77.39495191149256, 34.580794610791365], [-77.39505868219985, 34.58081499669925], [-77.39520983670445, 34.580757404240764], [-77.39541294531682, 34.5806852516553], [-77.39545271740279, 34.58065554170712], [-77.39568418620479, 34.5804395781041], [-77.3958467651204, 34.580310964518034]], [[-77.27237605187699, 34.57217309615184], [-77.27231364074635, 34.572221325884925], [-77.272296902089, 34.57223661139551], [-77.27224840711202, 34.57228089666477], [-77.27222177721691, 34.57230392348387], [-77.2721419561878, 34.57237294440618], [-77.27212811000155, 34.572384917146906], [-77.27212349061442, 34.57238891149636], [-77.27211462348194, 34.57239676387312], [-77.27200444867503, 34.57249738794856], [-77.27194133717045, 34.57254740419285], [-77.27193543609691, 34.572555757674856], [-77.27192969446058, 34.5725843598035], [-77.27192420701209, 34.57260589338708], [-77.27193758599134, 34.57260996575426], [-77.27197408974716, 34.57263313217211], [-77.27196654786604, 34.57271982116175], [-77.2720502441127, 34.572644257207294], [-77.27210778458229, 34.57262334343595], [-77.2721879495439, 34.57260242723142], [-77.27224636424171, 34.572583154960256], [-77.2723292721535, 34.572563813961274], [-77.27247325192624, 34.57255115622228], [-77.27250151998899, 34.57253645721691], [-77.2725556728688, 34.572436568615814], [-77.27256559955498, 34.57242366046064], [-77.27258743828405, 34.57240332516387], [-77.27262271867185, 34.57231031667478], [-77.27268076483222, 34.57221922852774], [-77.27269484583847, 34.572198152380146], [-77.27275100989158, 34.572158323533664], [-77.27281895216683, 34.57209007343036], [-77.2728608623227, 34.57205080591835], [-77.27294694824931, 34.57198230010601], [-77.27295814184822, 34.57197302523805], [-77.27298967581672, 34.571946573085185], [-77.27305267179868, 34.57189279933662], [-77.27311636901926, 34.57183771447845], [-77.27319789012651, 34.571766356178316], [-77.2732388785304, 34.57172981050991], [-77.27331387633598, 34.571657638690894], [-77.27332717050757, 34.571644037504086], [-77.27338255065935, 34.5715863087337], [-77.27341227761579, 34.571555432218126], [-77.27341785355829, 34.571547977311255], [-77.2734292264347, 34.571536775369054], [-77.27351982974069, 34.571438158603215], [-77.27357792001254, 34.57137415617245], [-77.27361542843238, 34.571327838640826], [-77.27364992477766, 34.571273899292166], [-77.2736525628325, 34.571269377753524], [-77.27362881938758, 34.57121105802297], [-77.273583930104, 34.57118805238545], [-77.27355897960064, 34.57120556936047], [-77.27353656680006, 34.57122098319756], [-77.2734900808768, 34.571259071113616], [-77.27346275897806, 34.571271742667165], [-77.2734172900914, 34.57130926000208], [-77.27341398358037, 34.57131200710352], [-77.27336623594002, 34.57135019537419], [-77.27330397542207, 34.571399990836504], [-77.27335744287787, 34.57142539651317], [-77.27337093036864, 34.571518661779024], [-77.27324031452372, 34.571450906270144], [-77.27314728714055, 34.571526713014336], [-77.27309093747618, 34.57157167127273], [-77.27308259242471, 34.57158054502883], [-77.27307521930251, 34.57158426678795], [-77.27306130718858, 34.571596569219125], [-77.2730187883133, 34.571634446983275], [-77.27298226260008, 34.57166589144287], [-77.27290337237783, 34.571733806731956], [-77.27292754113418, 34.571745108582704], [-77.2729420280647, 34.57179440266019], [-77.27287359841672, 34.57175943861949], [-77.27276845055631, 34.57185043798687], [-77.27271503099233, 34.571896232516586], [-77.27270834418277, 34.57190463048304], [-77.27270081342324, 34.571908472444825], [-77.27268665531649, 34.57192079215306], [-77.27264372187238, 34.57195846798916], [-77.27260598099423, 34.571988429370826], [-77.27250931931063, 34.572065166077074], [-77.27251134036696, 34.572065896386256], [-77.27251248227877, 34.57206957250984], [-77.27250761211296, 34.57206652136716]], [[-77.21309855830836, 34.621440103417335], [-77.21307804767066, 34.62146949663246], [-77.21303523611104, 34.621674574797446], [-77.21327253025119, 34.62148486420148], [-77.21337643789049, 34.62138454416548], [-77.21338197104619, 34.6213756701902], [-77.21321112624885, 34.621327495333745], [-77.2131380879678, 34.62135639913111]], [[-77.22276395525716, 34.6132723530923], [-77.222756660589, 34.61327803037293], [-77.22273281637672, 34.61329374663282], [-77.22274067333942, 34.61334039782842], [-77.2228089684836, 34.61331240168599], [-77.22284109169281, 34.613284696021374], [-77.22315987701785, 34.61313401452941], [-77.22278655333577, 34.61324983187487]], [[-77.37537116814774, 34.68593318412845], [-77.3760306866653, 34.68485438581634], [-77.37480154848, 34.68542841109617], [-77.37489098321946, 34.685646300770095], [-77.374970802076, 34.68567049884536]], [[-77.32288495781012, 34.54702097776182], [-77.32303573173476, 34.54702961962264], [-77.32357113030814, 34.54692175390114], [-77.3236725074297, 34.54692120569938], [-77.32390360855038, 34.546955373637225], [-77.32374244312064, 34.546833931924894], [-77.32371854562322, 34.5468102715251], [-77.32367587578867, 34.5467767434388], [-77.3233223181745, 34.54664948715629], [-77.32329976494871, 34.54664436449485], [-77.32322392946712, 34.54662441013191], [-77.32289527283609, 34.54657876518601], [-77.32278870186784, 34.54672616078204], [-77.32277840874139, 34.54690431697573], [-77.32276863768898, 34.54697385631132], [-77.32282974264635, 34.54699981382955]], [[-77.35925742671837, 34.54067895591084], [-77.35922503920945, 34.54075062137305], [-77.35920725171357, 34.54079048534192], [-77.35920606869594, 34.540998177063386], [-77.35920298985101, 34.541202911151], [-77.359202280035, 34.54124354654863], [-77.35918676850565, 34.54127725852821], [-77.35918523277394, 34.541368413354505], [-77.35916874215977, 34.54139267221632], [-77.35917028374584, 34.541469041997075], [-77.3591904156476, 34.541490078981965], [-77.35919316576027, 34.54152874124863], [-77.35920635380833, 34.54168312087267], [-77.35924273172745, 34.54172736935169], [-77.35926243715332, 34.54181081704478], [-77.35928387980735, 34.54196626798793], [-77.35923883823988, 34.54204770425966], [-77.3592416479016, 34.54213916513566], [-77.35925614933917, 34.542215085195764], [-77.35920754438071, 34.54228084720791], [-77.35920804370544, 34.542285286566575], [-77.3592807562345, 34.54233395382276], [-77.3592856942232, 34.542347207909295], [-77.35940458054152, 34.542438535142665], [-77.35943326580167, 34.542476900401155], [-77.35948736484913, 34.542671438336455], [-77.35948685835277, 34.5426777189704], [-77.3594964927726, 34.542691690379435], [-77.3595092777633, 34.54266828287793], [-77.35958517945049, 34.5424645946389], [-77.35959021277843, 34.5424118041007], [-77.35966073057585, 34.54230474944724], [-77.35967755327607, 34.542261172186265], [-77.3596495166931, 34.54215844018877], [-77.35968439255564, 34.5420161306906], [-77.35968645621551, 34.54180252157813], [-77.35971424558537, 34.541659470952396], [-77.35976039812535, 34.541556375206675], [-77.35976194638269, 34.541504009524814], [-77.35976443121153, 34.54140742012044], [-77.3597733156467, 34.54131429154272], [-77.35977951221676, 34.54124933610686], [-77.35976065174077, 34.54116314015386], [-77.35976337455187, 34.54106108516219], [-77.35974015582784, 34.5407963645098], [-77.35971345783567, 34.54068028808714], [-77.35967646664608, 34.54052205906936], [-77.35967874226998, 34.54036008752219], [-77.3596455123901, 34.54020042440156], [-77.35960198650046, 34.53998907948796], [-77.35959806227538, 34.53993839294985], [-77.35956213415031, 34.53982393313727], [-77.35950022725122, 34.5399395645637], [-77.35946017616527, 34.54004275120182], [-77.35937782918236, 34.54023897151648], [-77.35932948795299, 34.54035322405218]], [[-77.31515725638647, 34.54684318923296], [-77.31521473907424, 34.54694736606693], [-77.3150329530412, 34.54701026468011], [-77.31499388801909, 34.54708824265436], [-77.31492614246298, 34.54712119195206], [-77.31476502132264, 34.54722521544063], [-77.31463222538062, 34.54735664481672], [-77.31461106756932, 34.54739867350082], [-77.31458405699128, 34.54741513139351], [-77.31449225844167, 34.54751330120294], [-77.31462717848981, 34.54757209719012], [-77.31474846661433, 34.54746559161511], [-77.3148140082659, 34.547382106732925], [-77.3149522259306, 34.54731639043815], [-77.31502759943979, 34.54723885599905], [-77.31506902228355, 34.54712483552638], [-77.31513116202817, 34.547091747325226], [-77.31523933558096, 34.54695934536045], [-77.31530543536836, 34.54689844708314], [-77.31539295169561, 34.54680933843531], [-77.3152351886223, 34.54675709197818]], [[-77.34019428481659, 34.550999968306364], [-77.34007093835254, 34.5508635720322], [-77.3398779799794, 34.55100607554537], [-77.33987131943042, 34.55100657300751], [-77.33986610200722, 34.55100688668445], [-77.33977271615873, 34.551025895638276], [-77.33976179943865, 34.55102545245372], [-77.33972485433645, 34.55102395258804], [-77.33969109110237, 34.551018605570064], [-77.33967463650949, 34.55102257099085], [-77.33964055816394, 34.55099649690508], [-77.33963073022892, 34.550976285228465], [-77.3396289092953, 34.550944974183835], [-77.33962150381139, 34.55091640771528], [-77.33961947853007, 34.550891773620855], [-77.33961880167914, 34.550886194113275], [-77.33961330240042, 34.550877247659116], [-77.33961392932825, 34.55085629262661], [-77.33961990656339, 34.55084941221956], [-77.33961318588976, 34.55083619919534], [-77.33959005370042, 34.550834881714856], [-77.33958071005374, 34.55083964302289], [-77.3395599194534, 34.55083345816807], [-77.3395373020273, 34.55083326740543], [-77.33953223806654, 34.55081343003103], [-77.33951955620711, 34.550831617849475], [-77.33948261733906, 34.55083689260992], [-77.33945084006046, 34.55083833738715], [-77.33934624065542, 34.550833587252626], [-77.3393132013739, 34.55082178563442], [-77.339286648553, 34.55082202455253], [-77.33917266875329, 34.55080742278745], [-77.33889821075127, 34.550777583026154], [-77.3388950220645, 34.55077884622376], [-77.33864937103442, 34.55105621719174], [-77.33888666810083, 34.55113998196271], [-77.33897172402753, 34.55120076359956], [-77.33905439115969, 34.55124278708488], [-77.33908045026685, 34.551249417306074], [-77.3391285291009, 34.55126228939481], [-77.33919134633203, 34.55127596874181], [-77.33927549597207, 34.55130424080073], [-77.33939421060921, 34.551316323857776], [-77.33944684087535, 34.551324038155485], [-77.33947127257792, 34.551327468320125], [-77.33952525872812, 34.55133119260339], [-77.33966753784502, 34.55132956633474], [-77.33974316821389, 34.5513412190673], [-77.3398717107558, 34.55137005803978], [-77.33999253236533, 34.55139392503331], [-77.34005820930082, 34.55141417615698], [-77.34021686143515, 34.551465568744796], [-77.34041567894135, 34.551516187602644], [-77.34044832941085, 34.55152266966047], [-77.34045631694552, 34.55152576973862], [-77.34046540285651, 34.551529488134335], [-77.34064317011526, 34.551586422431214], [-77.34068244443219, 34.55159605257889], [-77.34083841672644, 34.55163262211796], [-77.34092280540841, 34.551655568088975], [-77.34105295222786, 34.55168979876706], [-77.3412287812431, 34.551730616978006], [-77.3414011030846, 34.55177643240042], [-77.34152903278202, 34.551809678483515], [-77.34161904463576, 34.55183302506535], [-77.34163834238471, 34.55183830869355], [-77.34166943047062, 34.55184594600251], [-77.34181423921162, 34.55188152069382], [-77.34186996919836, 34.55190443043984], [-77.34193886588564, 34.55192959998599], [-77.34200884025599, 34.551955724997526], [-77.34208838158725, 34.551980548516354], [-77.34222478273614, 34.552010882578735], [-77.34233470395634, 34.55203555298223], [-77.34239919268532, 34.55205435579285], [-77.34257712383757, 34.55209350940463], [-77.34269817914313, 34.55213030930541], [-77.34278939979194, 34.55215931732109], [-77.34280456110503, 34.552162799747144], [-77.34283943070531, 34.55216728754602], [-77.34318074789675, 34.55221488175891], [-77.34334827984908, 34.55223416932266], [-77.34345828118788, 34.55225184966111], [-77.34357201892372, 34.55227380447724], [-77.34359975453316, 34.55228527451329], [-77.34361902816478, 34.55229996110884], [-77.34376621070953, 34.552365844098816], [-77.34380323998208, 34.552372683527615], [-77.34385939449834, 34.55238779284829], [-77.34396137827268, 34.552415607049525], [-77.3440319115087, 34.55244103899669], [-77.34413789756843, 34.55247013793841], [-77.34415629657805, 34.55247618403183], [-77.34425054117978, 34.552516991091], [-77.34435101999235, 34.55254522146108], [-77.34448518388183, 34.55258082900125], [-77.3446922885982, 34.55263520246539], [-77.34472188130472, 34.55264311230474], [-77.34474127513587, 34.55264828497302], [-77.34482989451408, 34.55267098971073], [-77.34493642322421, 34.55269894111125], [-77.34496007180717, 34.55270426577688], [-77.34499061006169, 34.55271469465271], [-77.34513120921366, 34.55276531104245], [-77.34518080180706, 34.5527786282636], [-77.34524744404418, 34.552800154793985], [-77.34532613629102, 34.552825573673374], [-77.34541173671231, 34.55284527035195], [-77.34552123422118, 34.552878435980034], [-77.34564220880166, 34.5529122624113], [-77.34578884288727, 34.552967083841395], [-77.34591067715658, 34.553016857963506], [-77.34610421288684, 34.55304275885381], [-77.34610639101254, 34.55304302563252], [-77.34610721780103, 34.55304317087515], [-77.34610860762928, 34.55304348853147], [-77.34630168043708, 34.553087616860594], [-77.34635756319868, 34.55309512735382], [-77.34644961326205, 34.55311683607423], [-77.34659452570489, 34.553157208084215], [-77.3466925017101, 34.553166300530506], [-77.34684514523593, 34.55320895691955], [-77.34698764951106, 34.55322429116373], [-77.34708354401806, 34.5532354154974], [-77.34713153949399, 34.55323363987595], [-77.34730829505455, 34.553238108897816], [-77.34747576899035, 34.55325319795417], [-77.34776631431325, 34.553172206541205], [-77.34785344365943, 34.55314884372875], [-77.3478400231383, 34.55303919066435], [-77.3477737631332, 34.55298911724885], [-77.34777270298703, 34.55298767217338], [-77.34776463314984, 34.55298143251102], [-77.3476998716769, 34.552936946603225], [-77.34767961539347, 34.55292621694808], [-77.34764094619244, 34.55292124219954], [-77.34758178676604, 34.552911903384775], [-77.34756114248238, 34.552908622366246], [-77.34748420286913, 34.55288696380843], [-77.34745234240552, 34.552870258530405], [-77.34744054425192, 34.5528518501369], [-77.34738753289164, 34.55282234238457], [-77.34737619955203, 34.55280718768395], [-77.34735970045548, 34.5528022772893], [-77.3472908152556, 34.552759796631776], [-77.34727738690664, 34.552761267792], [-77.34722640024688, 34.55276025199443], [-77.3471191197229, 34.55276032838472], [-77.34709454542421, 34.552757786449035], [-77.34703830055585, 34.55275216487427], [-77.34689835543483, 34.552752309525154], [-77.34680934520244, 34.5527533348926], [-77.34678615237354, 34.552753652360785], [-77.34670186168844, 34.55276001755993], [-77.34665404867675, 34.55275014744369], [-77.34657211942792, 34.55273198041602], [-77.34653047790188, 34.552722957881635], [-77.34646825769873, 34.552723143810695], [-77.34631076778119, 34.552693248733966], [-77.34627003684305, 34.55267864021447], [-77.34619729058514, 34.552663499528286], [-77.34615142654964, 34.55264769763562], [-77.34611567237258, 34.55264027894898], [-77.34609777588625, 34.552627948510334], [-77.34605927112688, 34.55262215207067], [-77.34603569706447, 34.55261457556838], [-77.34593386611633, 34.55258727519322], [-77.34592065428494, 34.55258396402497], [-77.34591725481286, 34.55258350576072], [-77.34591332252356, 34.55258194523087], [-77.34581051572448, 34.55254358193715], [-77.34572871984247, 34.552486094514514], [-77.34572662152732, 34.55248491182061], [-77.34560624705063, 34.552456767139404], [-77.34553186711771, 34.5524171837889], [-77.34550978458452, 34.55240906885489], [-77.34547955071892, 34.552399532667955], [-77.34539871682313, 34.55237241975842], [-77.3452179291686, 34.55236305165849], [-77.34514066183482, 34.55235534282589], [-77.34510488945182, 34.55235335844179], [-77.34504842128858, 34.552339148369846], [-77.3449450583092, 34.55232446846555], [-77.34485496700472, 34.55230108140221], [-77.34480534248766, 34.55228645438287], [-77.34474995538031, 34.552271892439244], [-77.34472922552455, 34.5522626595653], [-77.34463504020636, 34.552226111743416], [-77.34461219644581, 34.55221829083082], [-77.34455532540042, 34.55219882015386], [-77.34452394378907, 34.55218948401094], [-77.3444829501951, 34.552175679568805], [-77.34445789615623, 34.55216724271314], [-77.34441389416895, 34.55215206432771], [-77.34436050034564, 34.55213421877913], [-77.34429935655406, 34.552118039853596], [-77.34421402697892, 34.55209195719536], [-77.34418485437178, 34.552083988514475], [-77.34416544592322, 34.5520795722277], [-77.34409463260894, 34.55206476539129], [-77.34406775208623, 34.55205947533714], [-77.34406027316308, 34.55205756208212], [-77.34397013645122, 34.552035990630124], [-77.34393867303638, 34.55202888030705], [-77.3438797007591, 34.55201764293888], [-77.3437747560786, 34.551995489614356], [-77.34368827909722, 34.55197695867757], [-77.34358632228482, 34.551937437382946], [-77.34357983942526, 34.55193490031283], [-77.34347387546867, 34.55189780980078], [-77.34338546098364, 34.55185100109276], [-77.34337901314078, 34.55184890060537], [-77.34337087710041, 34.55184602028753], [-77.34328278417482, 34.55180102508025], [-77.34319210959995, 34.551722619201996], [-77.34311820909332, 34.55168418083592], [-77.3430832982319, 34.55164256980946], [-77.34299922188757, 34.55157417523175], [-77.3429520720374, 34.55156851834455], [-77.34280256523725, 34.55158902162193], [-77.34262197580398, 34.55159643227664], [-77.34259589925061, 34.5515966172652], [-77.34244384977406, 34.5516121433257], [-77.3424093271382, 34.55161544494578], [-77.34228388433804, 34.55159130985223], [-77.342213628253, 34.55158880383794], [-77.34215378413387, 34.551569057447026], [-77.3420702667265, 34.55154347130483], [-77.34204151710853, 34.55153331430503], [-77.34201871259609, 34.5515282533413], [-77.34187517965668, 34.55148135909069], [-77.34182385712005, 34.55146510849923], [-77.34181650616254, 34.551462188742256], [-77.34180394724736, 34.551459369552695], [-77.34172623571214, 34.55144192508794], [-77.34169776238883, 34.55143134503084], [-77.34164117819329, 34.551421577416164], [-77.34162861571264, 34.5514186827889], [-77.3415787113008, 34.551400733749105], [-77.3415162949959, 34.55137833565412], [-77.3414338103907, 34.55135338877569], [-77.34134277303995, 34.551337874086094], [-77.34130772752738, 34.55132937164645], [-77.34123838805806, 34.551314812509474], [-77.34119184231623, 34.55130259434631], [-77.34109720893002, 34.55128229581009], [-77.34104314491015, 34.5512684882773], [-77.34098618548325, 34.551245611600606], [-77.34094568537702, 34.55123831686228], [-77.3409285064452, 34.55122890898551], [-77.34089719440809, 34.55122256536177], [-77.34087174215155, 34.55121151434763], [-77.3408483220629, 34.55120398454106], [-77.34076015399155, 34.55118705586621], [-77.34074710726124, 34.55118512666457], [-77.34074412043441, 34.55118337764977], [-77.34065300978816, 34.551160669831205], [-77.34061996664772, 34.55116063436846], [-77.34056597769717, 34.55114779533764], [-77.3404577003649, 34.551117239468994], [-77.34038443037359, 34.55109746967122], [-77.34033543225158, 34.55105854525142], [-77.3402640547018, 34.55100184243203]], [[-77.26821733502, 34.57580741258282], [-77.26818620553863, 34.57585005857914], [-77.26798167177415, 34.575926427013584], [-77.26790551792757, 34.57599452993263], [-77.2678435783547, 34.57605878587704], [-77.2678482943906, 34.57613640976547], [-77.26765147395948, 34.57625241381823], [-77.26763034770322, 34.576271181155825], [-77.267628854177, 34.576277569670445], [-77.26736526083302, 34.576364028344784], [-77.26731133337096, 34.57637043594705], [-77.26712705110009, 34.576456028154055], [-77.26711520414342, 34.576470242802685], [-77.26711358816507, 34.5764727202425], [-77.26710773608104, 34.57647710099397], [-77.26709593848183, 34.57651754345824], [-77.26716727833735, 34.576638506309834], [-77.26714711641168, 34.576711024650336], [-77.26719986747301, 34.576728692586464], [-77.26721516888959, 34.57671637597487], [-77.2672725218252, 34.57661015448968], [-77.26733792711899, 34.57657457957704], [-77.26717581632346, 34.576477613504245], [-77.26742419047052, 34.57641643773032], [-77.26755493790463, 34.576443286318735], [-77.26760830399958, 34.57639378765997], [-77.26766673747048, 34.576359547622154], [-77.26765324167926, 34.57629154198308], [-77.26764645576716, 34.576278953722394], [-77.26789005879073, 34.57619731925754], [-77.26790447118894, 34.57618637066538], [-77.2679253869791, 34.57617079769812], [-77.26799918274541, 34.57607102100859], [-77.26810253036805, 34.57603391256523], [-77.26814691512618, 34.57599595331129], [-77.26807672114587, 34.57595928391973], [-77.26825503147263, 34.575892322667855], [-77.26828265542322, 34.575865505164934], [-77.26829062018106, 34.57585826851012], [-77.26830597267062, 34.57584451115061], [-77.26830905297632, 34.57578550797865]], [[-77.22880310948685, 34.60878285993907], [-77.228765518295, 34.60880302129486], [-77.22836288505107, 34.60890117698503], [-77.22827493374545, 34.60897043920555], [-77.22825294588361, 34.60899825383327], [-77.22821934237533, 34.609037296226894], [-77.22792490260046, 34.60931650788679], [-77.22782845538045, 34.60943611497838], [-77.22776295733964, 34.60950117137129], [-77.22765735134652, 34.609614896382546], [-77.22765806129702, 34.60965834789731], [-77.22777152928799, 34.60983753800171], [-77.22778595922613, 34.60990412021828], [-77.22723607422128, 34.61001864504236], [-77.22714957197698, 34.61008957857648], [-77.2271258326793, 34.61018109181401], [-77.22723969149389, 34.61028618918694], [-77.22741805129273, 34.61018054402217], [-77.22783602675662, 34.60994137978955], [-77.22786540927511, 34.60992105952748], [-77.227881747125, 34.60991167925534], [-77.22791383087635, 34.60988631444214], [-77.2281810788302, 34.60969962062093], [-77.22826836551411, 34.609622073561695], [-77.22832111310895, 34.60955027155036], [-77.2283566253251, 34.60947779376173], [-77.22849098598958, 34.60930304028657], [-77.22842852003863, 34.60910707881833], [-77.2286076911286, 34.60902624665446], [-77.22878643033025, 34.608897491734865], [-77.22884539095583, 34.60882047593872], [-77.22885628725855, 34.60879901619753]], [[-77.3653321369448, 34.52713031891592], [-77.36531684423714, 34.527142297982735], [-77.36522276644094, 34.52720127928297], [-77.36519376977776, 34.52725434528218], [-77.36524472640454, 34.52727510077726], [-77.3652485559412, 34.52733800973532], [-77.36527878419274, 34.5273926070655], [-77.36513097195063, 34.527543273734544], [-77.36513673805618, 34.52765789700751], [-77.36507863051499, 34.52775204720453], [-77.364939768541, 34.527810722083075], [-77.3648346903937, 34.52776756784033], [-77.36482922752947, 34.52770219853626], [-77.36474637851354, 34.527685237359464], [-77.36467436863353, 34.52767951064823], [-77.36455343390838, 34.527739098037166], [-77.3645488289064, 34.5277419331824], [-77.3645482414404, 34.52774231707114], [-77.36454736969529, 34.527742803615354], [-77.36454442265926, 34.527745919746], [-77.36442313358634, 34.527929801115626], [-77.36433282374747, 34.52801853656085], [-77.36414552979241, 34.52821430251112], [-77.3641072493584, 34.528272814556175], [-77.36408860567548, 34.52829854368904], [-77.3640098706397, 34.528391970343165], [-77.36393372203831, 34.52868510130562], [-77.36396598814889, 34.528805858386235], [-77.36399664716407, 34.52888475384124], [-77.3641296255274, 34.52891064117554], [-77.36426397978228, 34.52884580867827], [-77.364524617288, 34.52880220978776], [-77.36462445608126, 34.52877285617804], [-77.36466813383512, 34.528704708893756], [-77.36477715401963, 34.52859879702911], [-77.36476368428546, 34.528545485324166], [-77.36476998807001, 34.52844521003067], [-77.36481195072861, 34.528367366565575], [-77.36489078980777, 34.52820787562747], [-77.36489244605953, 34.52818274264544], [-77.36488905685388, 34.52815652427758], [-77.36493284342987, 34.52811404865801], [-77.36522896387449, 34.5278894363014], [-77.3652451439839, 34.52783307373815], [-77.36533197546626, 34.527824014724146], [-77.36537151136771, 34.527843955816195], [-77.36547502496427, 34.52785398697887], [-77.36552747458452, 34.527857140412905], [-77.36556030458394, 34.527862251115714], [-77.36554578980376, 34.52784379198409], [-77.36552963432214, 34.527762512709195], [-77.36552009041614, 34.52773147628188], [-77.36550951589007, 34.527726604940646], [-77.36552029271846, 34.52771860041993], [-77.36553067214997, 34.52771704087051], [-77.36559185819299, 34.52759232891094], [-77.36565259782562, 34.52753461887337], [-77.36567206574878, 34.52749573020973], [-77.36568533830814, 34.52745644820669], [-77.36565738147289, 34.52741276585269], [-77.36564754577313, 34.52739359795837], [-77.36557609880114, 34.527349773369394], [-77.36555841625315, 34.5272404281002], [-77.36555052005902, 34.52723104551744], [-77.36555342431097, 34.527223462129655], [-77.36559736296775, 34.52710188381649], [-77.36564562331708, 34.52703450195893], [-77.3656455959852, 34.52703298942773], [-77.36565028676858, 34.526971846057236], [-77.36564911253886, 34.52691201904174], [-77.36564952353245, 34.52690932123649], [-77.36564498864962, 34.5269100123283], [-77.36564032012183, 34.52691628863087], [-77.36563110731666, 34.526974609258495], [-77.36557736532498, 34.52700128716203], [-77.36554663808667, 34.52701750444625], [-77.36545412500493, 34.52706131364095], [-77.3654526521008, 34.527064781651355], [-77.3654397782061, 34.52706810749692], [-77.36534824030856, 34.527111454776346]], [[-77.30743160577002, 34.552851364208315], [-77.30743694744255, 34.55284846258555], [-77.30783372553715, 34.552633194168415], [-77.30792805685986, 34.55259077206287], [-77.30815813172987, 34.552499551283034], [-77.30823023526686, 34.55246860569397], [-77.30831158325549, 34.55242740645857], [-77.30845725848184, 34.552351635168705], [-77.3084491025136, 34.552323445724966], [-77.30850471254976, 34.55220498937027], [-77.30843446834294, 34.552131859519164], [-77.30840480179181, 34.552115662259084], [-77.30825901287992, 34.55213085091515], [-77.30823791851087, 34.552141648468925], [-77.30813022917187, 34.55219234777268], [-77.30791397773123, 34.55228979202724], [-77.30783951635047, 34.552386817520876], [-77.30776878009333, 34.5523552021253], [-77.30760343258632, 34.552432654899945], [-77.30744375013589, 34.5525197575044], [-77.3071957992644, 34.55263769379428], [-77.30743248166644, 34.55284628739092]], [[-77.2669003045993, 34.576904345628996], [-77.26688211467552, 34.57692015301913], [-77.2668823896456, 34.57692587556059], [-77.26687666029389, 34.57693108432481], [-77.26688414320095, 34.57693629939561], [-77.2668906278444, 34.57692772429033], [-77.26689181616062, 34.576926616839984], [-77.26689763805021, 34.57692322595501]], [[-77.32913755175534, 34.548276030549815], [-77.32916803849906, 34.548276537569954], [-77.32916341404835, 34.54825818498061], [-77.3291432778705, 34.54825777349418], [-77.32913800267373, 34.54825663660394], [-77.32877270921097, 34.54829672466808], [-77.32874525157854, 34.54826244813007], [-77.32858833280802, 34.548194855618824], [-77.32856649218466, 34.548099168414], [-77.32855281696037, 34.54809590395357], [-77.32837239696423, 34.54811685528287], [-77.32835604090634, 34.548116041323084], [-77.32826534063761, 34.54808545327357], [-77.32796394252284, 34.54809381400486], [-77.32777925423109, 34.5480972041078], [-77.32776754883915, 34.54809750803685], [-77.32768275263481, 34.54822618643812], [-77.32770550857958, 34.54830971679145], [-77.32769950386351, 34.548384452107804], [-77.32785622696065, 34.548446068130005], [-77.32790743185676, 34.54846851001358], [-77.32795194159556, 34.54860965948205], [-77.3279978559096, 34.54867052682695], [-77.32815729887538, 34.54876216373861], [-77.32815810821486, 34.54876990153692], [-77.32834091165125, 34.54876648610003], [-77.3284752448989, 34.54872431982926], [-77.32847953591013, 34.548686575082726], [-77.32850464495951, 34.54859768675201], [-77.32874217915221, 34.54839456610782], [-77.32881364318946, 34.54835240905705]], [[-77.2165972063386, 34.61891933319171], [-77.21708791308762, 34.61874278819157], [-77.21715264622686, 34.618686822301036], [-77.21718226073018, 34.618494182346645], [-77.2174624283995, 34.61841845750581], [-77.21752292225507, 34.618364683455894], [-77.21752186586653, 34.61828532456597], [-77.21755679337271, 34.61817364211506], [-77.21758174428288, 34.618159012260634], [-77.21754058935994, 34.61815922466606], [-77.21753435821896, 34.61817673244139], [-77.21743887632785, 34.61827876945924], [-77.21735747147085, 34.618325072597884], [-77.21718513734369, 34.618478950576936], [-77.21717098855382, 34.61849329196343], [-77.21699600564314, 34.61866101366795], [-77.21658510720188, 34.61883079346733], [-77.21651632311449, 34.618891772954576], [-77.21649964428615, 34.61891162643222], [-77.21630960325544, 34.619002071541416], [-77.21611759854729, 34.619117129276646], [-77.21629753745678, 34.61935466749178], [-77.21626479389204, 34.619364440013655], [-77.21595592706973, 34.6193794985715], [-77.21591090149259, 34.61951850723082], [-77.21600046715642, 34.619568414178204], [-77.21608085749999, 34.61949065629576], [-77.21631093956454, 34.61937186567153], [-77.21631427781118, 34.61936956231888], [-77.21631533284231, 34.619368432415406], [-77.21631810155773, 34.61936624144878], [-77.2165806023987, 34.61915370428255], [-77.21658060601123, 34.61894896885023]], [[-77.4045150850345, 34.57659680985469], [-77.40466857679301, 34.576585920970274], [-77.40490908559359, 34.576596915112376], [-77.40520531502483, 34.576343043855914], [-77.40490907351158, 34.57619042868974], [-77.4046548940842, 34.576271823782605], [-77.40460047143615, 34.57600577126697], [-77.40451506906837, 34.57595720117195], [-77.40432566384504, 34.575841334089525], [-77.40431806760262, 34.5758382195869], [-77.40431608098993, 34.57583667229591], [-77.40413758579906, 34.575878092694246], [-77.40412107102584, 34.57593697138805], [-77.40408985261215, 34.5760458290285], [-77.40407193027133, 34.576082059481685], [-77.40406432814547, 34.57614430751244], [-77.40407802633314, 34.57650575603614], [-77.4041210865044, 34.57670181509627], [-77.40421059133391, 34.57681475025624]], [[-77.35265063791891, 34.55516234974244], [-77.35285982010718, 34.55517507282037], [-77.35301289492782, 34.55516264856134], [-77.35332264461522, 34.55511008727426], [-77.35346363155773, 34.555045335633004], [-77.35332487832113, 34.555012790952915], [-77.35303009662768, 34.55504623799982], [-77.35293235481282, 34.55500766225768], [-77.35262443217127, 34.5549736366271]], [[-77.36388142063353, 34.52965310726185], [-77.36377646557298, 34.52977558996021], [-77.36395670125106, 34.52968973940234], [-77.36398977076979, 34.529614118819566]], [[-77.31283652189403, 34.5493797580613], [-77.3130148603775, 34.5493573071206], [-77.31301695920008, 34.549355124531175], [-77.3130187713182, 34.549353587554506], [-77.31303209570359, 34.549114055226475], [-77.31306194429176, 34.54910257804619], [-77.31327321380073, 34.54891757750963], [-77.31302164612401, 34.549067852356], [-77.3129973905127, 34.549097152333246], [-77.31298985314614, 34.54911293029334], [-77.31273367032989, 34.549325509750666]], [[-77.30982020516834, 34.55164213523358], [-77.30996288206386, 34.5515942902845], [-77.31001824444378, 34.55156884002676], [-77.31012288224842, 34.55154063589366], [-77.3102158128354, 34.5515155873571], [-77.31045307679676, 34.551435653139905], [-77.31024210128324, 34.551450505520364], [-77.3102172982155, 34.55145231457096], [-77.31014968324828, 34.551399735659416], [-77.31012120223761, 34.55136444124728], [-77.310087563622, 34.55136572665825], [-77.31002963447507, 34.5513698548043], [-77.31002290826896, 34.55137019488738], [-77.31001783861723, 34.55137261161205], [-77.30982407499631, 34.55147732503797], [-77.30977179813311, 34.55150122067964], [-77.30968270217772, 34.55154625681048], [-77.30958638762183, 34.55165936052084], [-77.30942681717458, 34.551674114326694], [-77.30933876479253, 34.551718039144596], [-77.30928346299652, 34.551760263348086], [-77.30922714674898, 34.551816821136285], [-77.30912579856448, 34.55187101772266], [-77.30922511363295, 34.55190338263908], [-77.30936496182801, 34.55183668252557], [-77.30940340858353, 34.55181868467868], [-77.30942377713659, 34.55180355919046], [-77.30947740388423, 34.55178734101033], [-77.30967623206482, 34.55170312039109]], [[-77.22534317082653, 34.61162203086166], [-77.22535166983398, 34.6115974383672], [-77.2253501527078, 34.61158004069388], [-77.22534561256553, 34.61152797238701], [-77.22520883896631, 34.611502517755966], [-77.22498488744668, 34.611568487208174], [-77.2248916243717, 34.611591716519825], [-77.2247691940382, 34.61176887065939], [-77.22473975092022, 34.61178481761369], [-77.224509186829, 34.611866295384196], [-77.22442201711212, 34.61192721092138], [-77.22437321777849, 34.611991564824024], [-77.22430728235574, 34.61201541402985], [-77.22422385126528, 34.61207748849381], [-77.22420161036158, 34.61209585848625], [-77.22412890536661, 34.61218546534697], [-77.2241086115625, 34.61220635730899], [-77.22402690438965, 34.61225867959061], [-77.22401568290358, 34.61241348501997], [-77.2238620688577, 34.6123754353709], [-77.22381229379931, 34.61241864605697], [-77.22376514521709, 34.6125193358711], [-77.22359045562308, 34.6126056070674], [-77.2238703821291, 34.6126129650939], [-77.22399832837394, 34.6125226865185], [-77.22407357541246, 34.612464991758074], [-77.22415036727399, 34.61244533395851], [-77.22453754410287, 34.61229071040491], [-77.22459184225274, 34.612268585136334], [-77.22459195416866, 34.61224451177547], [-77.22465900196535, 34.61220592670908], [-77.22489945420213, 34.61203310403372], [-77.2249438152464, 34.611924229180204], [-77.22514340507337, 34.611927159285045], [-77.22525165476007, 34.61182522421003]], [[-77.30346987563676, 34.554534263874494], [-77.3035156469577, 34.55451234306847], [-77.30347065898708, 34.55450100821662], [-77.30343670790941, 34.55452367176105]], [[-77.39978699089981, 34.57924988539917], [-77.3997891617599, 34.57924757850171], [-77.39999605594973, 34.579018423328066], [-77.4002564510663, 34.57875557510927], [-77.40045234705497, 34.578595105447135], [-77.40057503543976, 34.57844221252317], [-77.40079021551364, 34.57825397780854], [-77.4008647610442, 34.57813084057147], [-77.40088981298926, 34.57790041950895], [-77.40061437973985, 34.57789716140919], [-77.4005750462297, 34.577926530160155], [-77.40055664529605, 34.57788293774938], [-77.40055295246016, 34.57786364128648], [-77.40018104615781, 34.577632425851014], [-77.40010527465435, 34.577585318277535], [-77.39978704134545, 34.577580586781224], [-77.39973400263779, 34.577614393495324], [-77.399444097167, 34.5776540994006], [-77.39939303225297, 34.577661093275466], [-77.39934265766585, 34.57766799251746], [-77.3991960268235, 34.577716476513345], [-77.39913206995564, 34.57771301512986], [-77.39906792759905, 34.57772760184461], [-77.39899902250116, 34.577737245050756], [-77.39897529666626, 34.577747294742714], [-77.39891135790135, 34.5777704070742], [-77.39890051928423, 34.5777721354252], [-77.39889213574662, 34.57777582625534], [-77.39887022811897, 34.57778802103397], [-77.39882440398148, 34.577818758281296], [-77.39880201501704, 34.577829758728555], [-77.39874254812543, 34.57784850784344], [-77.39870351167752, 34.5778629160784], [-77.39860767864431, 34.57793204709707], [-77.39860625789464, 34.57793360048378], [-77.3986050065189, 34.57793485569589], [-77.39855753428716, 34.577992353927755], [-77.39855824568721, 34.577994937572065], [-77.39855575278835, 34.57799483737284], [-77.39853059605475, 34.57802334758165], [-77.39850649938329, 34.57804620767598], [-77.39850265856307, 34.57804920477206], [-77.39840799861439, 34.57801657335234], [-77.39833283273055, 34.57807784666123], [-77.39831857976208, 34.57808969482842], [-77.39826843506646, 34.5781313788409], [-77.39821098649315, 34.57817566762601], [-77.39819586784637, 34.57818746091609], [-77.39817146232065, 34.57820727298527], [-77.39794884449479, 34.57838150063225], [-77.39785534615402, 34.57846516916897], [-77.39781696025075, 34.57848902925031], [-77.3977598986084, 34.57854042494616], [-77.39770242301461, 34.578576102916344], [-77.39761994605999, 34.578644986547204], [-77.39746360349739, 34.57873397538514], [-77.3974424594063, 34.57875806619495], [-77.39742293251035, 34.57877726833872], [-77.39724113413465, 34.57899475946219], [-77.39695214816386, 34.57923233691932], [-77.3968277569912, 34.579458137665725], [-77.39689076578611, 34.579814563046675], [-77.39725983463171, 34.580037092101186], [-77.39735868991417, 34.580091972344036], [-77.39742285602937, 34.58010033153838], [-77.39749350256565, 34.5800795037187], [-77.3976349536135, 34.57998297241973], [-77.3978168833292, 34.579933310545], [-77.39786778076096, 34.57989453862227], [-77.39801389704387, 34.57983657496244], [-77.3981012476975, 34.57979753259686], [-77.39821090807217, 34.57978588105662], [-77.39825534119797, 34.579729053414596], [-77.39830941524048, 34.57972319955658], [-77.39833480285725, 34.579697067694866], [-77.39835487349957, 34.57966681670663], [-77.39835867011365, 34.579662893979005], [-77.39836522882565, 34.579658255488496], [-77.39838873703223, 34.57964125674155], [-77.39840792328543, 34.579638173525524], [-77.39841154970712, 34.579636011043576], [-77.39843083469218, 34.57963116891827], [-77.39843254962051, 34.57963106975721], [-77.3984359622637, 34.579632258538155], [-77.39845717555365, 34.57963274934876], [-77.39848406625352, 34.57962408047758], [-77.39850642843547, 34.57961343631306], [-77.398552480656, 34.57958178421255], [-77.39856389108581, 34.57957474173367], [-77.39860493555283, 34.5795420540015], [-77.39861532374746, 34.579534288188235], [-77.3986458802245, 34.57952763809841], [-77.39865418787973, 34.57953353786003], [-77.39869128694725, 34.57952523013775], [-77.39870343996382, 34.57953049280005], [-77.3987154538044, 34.57952159259384], [-77.39880194507595, 34.579501130114494], [-77.3988054954448, 34.57949948135025], [-77.39881857835216, 34.57949376801565], [-77.39887778713998, 34.579460803872244], [-77.39890045078018, 34.57945518673684], [-77.39892063795646, 34.57945728922296], [-77.39899756344248, 34.579467942780425], [-77.39899865003675, 34.57946811362192], [-77.398998954078, 34.57946816142516], [-77.39907377981646, 34.579482459501335], [-77.39913869642982, 34.5794920167011], [-77.39919596034011, 34.57950548587908], [-77.39923023935108, 34.57950357607582], [-77.39939296726794, 34.57952826628187], [-77.39957526593737, 34.57947487712592]], [[-77.36371935025662, 34.530070970794235], [-77.36371880597069, 34.530060623937715], [-77.36371155997867, 34.530029065603145], [-77.36370345083287, 34.53006323402708], [-77.36369227281696, 34.530069415236525], [-77.36344827586439, 34.53026541146586]], [[-77.2427247159996, 34.59741292096763], [-77.24281150287666, 34.597331670396514], [-77.2428037963398, 34.5970356070224], [-77.24252849004162, 34.59732562959833], [-77.2425124339004, 34.59739619149836], [-77.24247666896409, 34.59745699399923], [-77.24255356770976, 34.597529909975144], [-77.24268881009296, 34.59746824145209]], [[-77.40656345007599, 34.57623146099618], [-77.40659015795524, 34.57614314150395], [-77.40648505987372, 34.57603558332955], [-77.406326001166, 34.576009871204334], [-77.40628805959845, 34.57600373507551], [-77.4061406925789, 34.5762080238321], [-77.40628807705076, 34.57638224847105], [-77.40629397803949, 34.576391826945205], [-77.40633255968373, 34.57639261601963], [-77.40648507859042, 34.57642173164031], [-77.40652938188894, 34.57636420384205]], [[-77.35566859756986, 34.55863575155658], [-77.35577009747144, 34.55873476308601], [-77.35590589112873, 34.558824667960835], [-77.3560019039396, 34.55887603138979], [-77.35606238928511, 34.55887078952916], [-77.35611937607126, 34.55885534457044], [-77.35616087910326, 34.55885628619356], [-77.35623028080649, 34.55877797197682], [-77.35622438238013, 34.55874105304987], [-77.35624240907467, 34.55858238685303], [-77.35623357172473, 34.558565222379194], [-77.35610130977952, 34.55841365231571], [-77.35607012093453, 34.55837647559864], [-77.35606685704445, 34.5583724356175], [-77.35606267561523, 34.558367110949966], [-77.35587631924356, 34.55818078207355], [-77.3557705019494, 34.55799505416377], [-77.35572922501653, 34.55793608650035], [-77.35566901632302, 34.55790550363591], [-77.35548980186425, 34.557842271954605], [-77.35547209061413, 34.55784428463795], [-77.35545877004282, 34.557842009493896], [-77.35531540462179, 34.5578917246423], [-77.35534887782117, 34.557976181496386], [-77.35540244295132, 34.55804803547941], [-77.35544085454431, 34.55822135125425], [-77.35544008612783, 34.55828910917878], [-77.35546672544358, 34.55846333343226]], [[-77.362895362997, 34.53140833314608], [-77.36316865686044, 34.53129318709276], [-77.3632958206184, 34.53104522690167], [-77.36338439600432, 34.53090143720309], [-77.36340469879116, 34.530845315459416], [-77.36346284715728, 34.530737151573646], [-77.36331077012, 34.53039094955932], [-77.36330594617634, 34.530373152978676], [-77.36268391195712, 34.530560574294014], [-77.36251891771545, 34.530688710866926], [-77.36249299106458, 34.5307160352442], [-77.36247869820315, 34.53073387536062], [-77.36249081193108, 34.53074880382426], [-77.3625140146257, 34.530903210502174], [-77.36253300609297, 34.53095824786824], [-77.36263662676737, 34.53095595201437], [-77.36253110894894, 34.53098295001396], [-77.36257253528358, 34.53121000910316], [-77.36250505286098, 34.531295269279546], [-77.36244976071603, 34.53144009688675], [-77.36234633953342, 34.531487415021914], [-77.36227078777185, 34.53160137252353], [-77.36221863914687, 34.531628221209864], [-77.36216744886708, 34.531717726355446], [-77.36234982466468, 34.53173173801811], [-77.36249499184329, 34.53173541941478], [-77.36256186377251, 34.531701196323006], [-77.36277609578627, 34.53159889469832]], [[-77.42927302760737, 34.68330432796168], [-77.42960234380507, 34.68321933250066], [-77.4296636148855, 34.68335358638134], [-77.42975878379502, 34.683368941769366], [-77.42989886328911, 34.68330184274302], [-77.42995372337458, 34.68326286416371], [-77.42992633285142, 34.683206901450724], [-77.429873799788, 34.68318305909348], [-77.42979453596766, 34.6831087475598], [-77.42968276970325, 34.68312239980517], [-77.4296284193397, 34.683129210487046], [-77.42961307821807, 34.68313072245066], [-77.42958461867826, 34.683133771912644], [-77.4292602263475, 34.683294416657134], [-77.4292576788647, 34.683297520768484], [-77.42897107779689, 34.68318643215376], [-77.42896321714137, 34.68319001887857], [-77.42893307131155, 34.68318542807921], [-77.42886694127492, 34.68321957720099], [-77.42880851140187, 34.68319462267746], [-77.42877782287988, 34.68320101320737], [-77.42875340865973, 34.683220921246374], [-77.4287246454894, 34.68320764380764], [-77.42870834372034, 34.6832116544753], [-77.4287157493547, 34.68323838935205], [-77.42873249286147, 34.683240022147956], [-77.42876642292052, 34.68324219922298], [-77.42879473853318, 34.68324222265997], [-77.42883949646097, 34.68325116091427], [-77.42889005099111, 34.68325736086795], [-77.42895623831389, 34.68323771879199], [-77.42899306046907, 34.683238811629735], [-77.42925281407, 34.6833018490809], [-77.42925789553905, 34.68330247225298], [-77.42926093540277, 34.68330284504452]], [[-77.22083017630641, 34.615474774187476], [-77.22082149990536, 34.6154637895866], [-77.22080763367397, 34.61547692213214], [-77.2208001479324, 34.615480361948634], [-77.22050876132244, 34.61553977430614], [-77.22036503366492, 34.615648734527845], [-77.22034684914497, 34.61568024862863], [-77.22030569562423, 34.615687868013225], [-77.22027746258028, 34.61570520539594], [-77.22012193041687, 34.6157803280982], [-77.22010002079087, 34.615833640519874], [-77.22004495476341, 34.61589209014353], [-77.21998421674583, 34.61605937378421], [-77.21996064461598, 34.61612111394268], [-77.21985710350864, 34.616206046549436], [-77.21999486829222, 34.616262982877075], [-77.22009412175248, 34.6161571591271], [-77.22016187887294, 34.61609206513263], [-77.22027330827378, 34.6159101228309], [-77.22044003895563, 34.61580739640737], [-77.22044854277561, 34.61580117958076], [-77.22058760326074, 34.61569925999132], [-77.22061690097416, 34.615635988499776], [-77.22080623306233, 34.615493923645296], [-77.22081621036904, 34.61548455298309], [-77.22081983411377, 34.61548191643231]], [[-77.33694469233933, 34.55022618871856], [-77.33699625436871, 34.55010019199935], [-77.33702130693226, 34.55006625752644], [-77.33707530798176, 34.55001447122589], [-77.3370712860718, 34.54998363590019], [-77.33708682712835, 34.549934427122565], [-77.33705028932863, 34.549904822418576], [-77.33701120789914, 34.54990841411964], [-77.33695187177119, 34.54991614418505], [-77.33678709579792, 34.54995727121844], [-77.33672188464374, 34.54996663623747], [-77.33662800441293, 34.550077610839345], [-77.3366664912736, 34.55011727962778]], [[-77.24486716343277, 34.595461743536525], [-77.24486860864452, 34.59546078789411], [-77.24487538685283, 34.59545699814068], [-77.24486861048169, 34.59545510519424], [-77.24486393819691, 34.59545887459631], [-77.24486249219206, 34.595460305960884], [-77.24485931249126, 34.59546301498846]], [[-77.29251609259187, 34.5597820920944], [-77.29255716309034, 34.559762215825984], [-77.29274786058429, 34.55961695018148], [-77.29275818677968, 34.559611682060165], [-77.29278597754828, 34.55960133666019], [-77.2928651911699, 34.5595182865199], [-77.29275011752969, 34.55952164729764], [-77.29265954948968, 34.559563626134576], [-77.29257099011242, 34.55963216878323], [-77.29245539563428, 34.55971263476073]], [[-77.35422436220061, 34.55297726048744], [-77.35440024039715, 34.553044060710725], [-77.35439217296019, 34.55310160391656], [-77.3543220107462, 34.55310325390112], [-77.35415610789174, 34.55301059951921], [-77.35411436452719, 34.55299309379597], [-77.3541577617579, 34.552938531527666]], [[-77.31399010564985, 34.548090000318645], [-77.31390196941062, 34.54820090256533], [-77.31399475274229, 34.54823419303994], [-77.31402276712987, 34.5482330189524], [-77.31402668688008, 34.548229607039225], [-77.31405739584258, 34.548122773182484], [-77.31422420595644, 34.548014106649845], [-77.31430623441587, 34.54794465087187], [-77.31441896898555, 34.54781000142614], [-77.31422733040327, 34.54788075005192], [-77.31417066707357, 34.54792950065179], [-77.31412236624303, 34.54797105628781]], [[-77.35231120483047, 34.55472155924633], [-77.35238471725688, 34.5545690823204], [-77.35183028379004, 34.55458722608214], [-77.3520034790148, 34.55485753203941], [-77.35214948869165, 34.5549024599625], [-77.3522887749037, 34.554810316329466]], [[-77.22596362535435, 34.610938699425915], [-77.22599299197631, 34.610972218788326], [-77.22604833655306, 34.61097317267989], [-77.2260981913173, 34.610978767437985], [-77.22624473284199, 34.61100170129068], [-77.22638769482865, 34.6110082542661], [-77.22645051437787, 34.61101170114002], [-77.22649957491335, 34.61098099928665], [-77.22649976089262, 34.61096633379407], [-77.22653282912381, 34.61086578395243], [-77.22653081106398, 34.610853177060456], [-77.22640735122775, 34.610817220408194], [-77.22625621018628, 34.610790607153355], [-77.22610102508759, 34.610869154499134], [-77.22604394525877, 34.61093050584727]], [[-77.2236146167879, 34.61287440185852], [-77.22349980867122, 34.61267431925661], [-77.22337546092706, 34.612830143133486], [-77.22331593216893, 34.61285082229246], [-77.22317311969826, 34.612902979387734], [-77.22312717925834, 34.6129380018174], [-77.2230673588487, 34.612984940561525], [-77.2232768920581, 34.61307120213501], [-77.22330446964244, 34.61305992243288]], [[-77.42764252934356, 34.6850096468496], [-77.42760388399374, 34.68499439159843], [-77.42753802374244, 34.68497317172084], [-77.42751652064658, 34.685030851746006], [-77.42757978231013, 34.68504144626169], [-77.42762880859765, 34.68505706344775], [-77.42770550566838, 34.685063575802275], [-77.4277075666306, 34.685063400234654], [-77.42770844393118, 34.68506234954656], [-77.42770546930221, 34.68505997115108]], [[-77.31540556193787, 34.54656271670689], [-77.31534915675206, 34.546624100823735], [-77.31543226334642, 34.54672427275373], [-77.3155280946877, 34.54660310408755], [-77.31560664513252, 34.54653383634578], [-77.31576680373323, 34.5464709249787], [-77.3158318966004, 34.546424367021814], [-77.31597065027455, 34.546321766796495], [-77.31603129303674, 34.54629231795123], [-77.31608240908395, 34.54622069346517], [-77.31615808157137, 34.546164614035135], [-77.31623199414275, 34.5461045005341], [-77.31635527897892, 34.54605909575902], [-77.31639011956999, 34.54602918588054], [-77.31654653297221, 34.54590922002379], [-77.31623735953923, 34.54587526904309], [-77.3161518982603, 34.54591316567753], [-77.31604014221553, 34.54591428283078], [-77.31595229133762, 34.5459945712482], [-77.31589686347326, 34.54603739331683], [-77.31583967058991, 34.54609229679511], [-77.31575628897056, 34.546145127831075], [-77.31575703255317, 34.54621772867459], [-77.31572719410663, 34.54627171186264], [-77.3155844056259, 34.54638209154993], [-77.31543682708185, 34.54652936902036]], [[-77.28145270747113, 34.56457712142738], [-77.28144310026147, 34.5645836839907], [-77.28146600280178, 34.56458894424998], [-77.28152398419016, 34.564553368793646]], [[-77.35404132487369, 34.55654575261706], [-77.35406191061671, 34.556577499062314], [-77.35409407626426, 34.556643821919565], [-77.35418949013909, 34.55684601360319], [-77.35422844942131, 34.55694336913658], [-77.35433474219003, 34.55709295222003], [-77.35437205949324, 34.55713497366193], [-77.35448760848192, 34.55729631075087], [-77.35450070823818, 34.557314601484485], [-77.35451228348838, 34.55732706538523], [-77.35453496687161, 34.55737489106323], [-77.35462975339986, 34.557581329078936], [-77.3547704918609, 34.55759496763462], [-77.35488134643673, 34.557607014354616], [-77.35493153920646, 34.55763715351733], [-77.35501962784845, 34.557678588491356], [-77.35507825352187, 34.557698630020724], [-77.3551760772455, 34.55776287381719], [-77.35518078620163, 34.55776593811535], [-77.35527515574309, 34.557799395316295], [-77.35545779570073, 34.55781236575092], [-77.35538977537938, 34.557625307547], [-77.35534689894791, 34.55755431002407], [-77.35527534779641, 34.557467495165085], [-77.35520429835985, 34.55730413120917], [-77.3551737968082, 34.557231845622496], [-77.35507863433305, 34.55704336124483], [-77.35507546866222, 34.55703713965909], [-77.35507392938973, 34.55703394548318], [-77.35506981624128, 34.55702502220079], [-77.35497929790137, 34.556835291469156], [-77.35488191329199, 34.556635862825885], [-77.35480885382802, 34.55651409274107], [-77.35468505922547, 34.55645853277936], [-77.35468288174067, 34.55645575619066], [-77.35468095185165, 34.55645368539624], [-77.35459959904566, 34.55634529810733], [-77.35448817481807, 34.55633417412745], [-77.35435598524863, 34.556358005929816], [-77.35414214294994, 34.5564795413941], [-77.35409417060416, 34.55648486304464], [-77.35406243997562, 34.55650853019207]], [[-77.35668109729532, 34.559380192063855], [-77.35671047288176, 34.5594959320077], [-77.3568227719725, 34.55951256511254], [-77.35684987821905, 34.55952182373241], [-77.35686940466098, 34.55951403132761], [-77.3568784478537, 34.5595337691852], [-77.35686453426517, 34.55955158540296], [-77.35686749928588, 34.55972850611342], [-77.35688671495518, 34.55974485508968], [-77.35697251947178, 34.55981242942782], [-77.35704664446871, 34.55987870434762], [-77.35710788367835, 34.55985930437674], [-77.35717178930946, 34.55983866517645], [-77.35724364133604, 34.55982197424618], [-77.35732238416854, 34.55980955658198], [-77.35736995368389, 34.559811413509], [-77.35738215565478, 34.559736577495855], [-77.35740266951366, 34.55967057893437], [-77.35742250674352, 34.55964811295398], [-77.35744080774334, 34.55945717420693], [-77.35744184679085, 34.55945266279487], [-77.35744081088505, 34.55945147588932], [-77.35735173694664, 34.55934941794429], [-77.35727725724614, 34.5592640811008], [-77.35724396124195, 34.55924419101332], [-77.35706846000183, 34.559270992071745], [-77.35685879373004, 34.55911204651256], [-77.35685380506764, 34.55910878116193], [-77.3568501100417, 34.55910678457802], [-77.35683930822398, 34.55910320784598], [-77.35665320478937, 34.55900264835691], [-77.3565836932852, 34.55901428133593], [-77.35651925271665, 34.55901656789437], [-77.3564562276313, 34.55902695517756], [-77.35643499344155, 34.55906691682932], [-77.35645615408885, 34.559157480548215], [-77.3564672350606, 34.55915647167112], [-77.35645872335984, 34.55916963878127], [-77.35646169532899, 34.55917519372217], [-77.35651600335522, 34.55930907507398], [-77.35661946960343, 34.55932261033581], [-77.35665302152805, 34.55932930125223], [-77.35669184053792, 34.559306533412844], [-77.35668722617312, 34.5593490206991]], [[-77.33083180869859, 34.54939387166038], [-77.33084698765916, 34.549362665553005], [-77.33068402808001, 34.549308538225326], [-77.33051656952915, 34.549410162499754], [-77.33053012447188, 34.54943651020494], [-77.33061554359746, 34.549518342792624], [-77.33059865431893, 34.54957021391871], [-77.33067772294756, 34.549579942805096], [-77.33099223744149, 34.5495138534163], [-77.33107127557363, 34.54953986089623], [-77.33115170524994, 34.54963456244845], [-77.33143533927581, 34.54962879285678], [-77.33133228479082, 34.54949798293974], [-77.33113694832292, 34.54944339110982], [-77.33109979714631, 34.54943250217621], [-77.331073966135, 34.54942402212244], [-77.33094340544518, 34.54938930024562]], [[-77.281268895661, 34.56474222297841], [-77.28127326460444, 34.56473919824264], [-77.28126849200844, 34.56473987449869], [-77.28126751508778, 34.56474099530771], [-77.2812670518607, 34.564741526759605]], [[-77.32466367206287, 34.5470607378151], [-77.32453092344389, 34.547012409758985], [-77.32459274674483, 34.54711437580166], [-77.32478988367218, 34.54713850450427]], [[-77.3346552846923, 34.549672019742324], [-77.33463332065402, 34.54965575840207], [-77.33460273060197, 34.54963188259676], [-77.33440322571698, 34.54958315621474], [-77.33444108830965, 34.54970281696779], [-77.33452247907177, 34.549739597616174], [-77.33459841684063, 34.549817945705385], [-77.33489419011126, 34.54982215753804]], [[-77.21238182919231, 34.62213164251102], [-77.21243815645018, 34.62212598320546], [-77.21251393632619, 34.62207437015002], [-77.2126125635842, 34.62202192342226], [-77.21262701063709, 34.62200690384362], [-77.2127240150864, 34.62191288842893], [-77.21298109494884, 34.62171603277186], [-77.21255638085839, 34.62178721200398], [-77.2124658303162, 34.62186348737802], [-77.21243176070456, 34.62188979391587], [-77.21235294666624, 34.621927441423324], [-77.21233375401687, 34.62195806719759], [-77.21237771921301, 34.6220033653171], [-77.21237412349365, 34.622110681373705], [-77.21237800121428, 34.62212122959011]], [[-77.32679823345929, 34.547572406190405], [-77.32671644889888, 34.547630621462574], [-77.32679616117028, 34.54766142664696], [-77.32696401537191, 34.547734135193025], [-77.32705297404004, 34.54774358471822], [-77.32701311094938, 34.54769700464553], [-77.32685216731483, 34.547611116409385]], [[-77.34607458100078, 34.53400114903249], [-77.34603409455912, 34.533958255701], [-77.3459585239219, 34.53391011478182], [-77.3458685278393, 34.53398208011074], [-77.34580259261847, 34.5340182828723], [-77.34580343371871, 34.534052651858204], [-77.34583060508325, 34.534065088344846], [-77.34583005067086, 34.53409374683886], [-77.3458301672483, 34.534110010037935], [-77.34584288976154, 34.53411613003864], [-77.3458425762225, 34.53413089298091], [-77.34584251147564, 34.53413883626307], [-77.34584738613671, 34.5341428963686], [-77.34584732248175, 34.53414579460767], [-77.3458472587395, 34.53414869681332], [-77.34584721768559, 34.5341505660039], [-77.3458471539152, 34.53415346948764], [-77.34584713345993, 34.53415440082152], [-77.34584709005753, 34.534156376945035], [-77.34584706963193, 34.53415730692756], [-77.34584505412309, 34.53415974531433], [-77.34584394397669, 34.53416158200567], [-77.34584454810263, 34.5341629018198], [-77.34584229891043, 34.53416262475913], [-77.34584139581023, 34.534162513513095], [-77.34583928092093, 34.534162252995976], [-77.34583710985135, 34.534161985558455], [-77.34583618276116, 34.53416187135726], [-77.34583282389244, 34.53416145760363], [-77.345830066612, 34.53416111795508], [-77.3458249580589, 34.534160488670786], [-77.34582425606759, 34.53416039859672], [-77.3458231995402, 34.53416027205203], [-77.34581783431395, 34.5341596111498], [-77.3458106351973, 34.53415872434374], [-77.34580817662128, 34.534157481365995], [-77.34580564504395, 34.53415623818995], [-77.34579541142783, 34.53415205628212], [-77.34575943530302, 34.534152519725865], [-77.34575650165745, 34.53415950080569], [-77.34573936224062, 34.534153678875484], [-77.34571993646577, 34.534148829815294], [-77.34569561342202, 34.53415250154872], [-77.34569292709185, 34.53416926740866], [-77.34571904304977, 34.534187205169296], [-77.34575554792076, 34.53420086426148], [-77.34578600534688, 34.534219511062496], [-77.34581148230595, 34.53423510867525], [-77.3458523747583, 34.53425766138516], [-77.34587614536487, 34.53427197804889], [-77.34589881689756, 34.53428374665893], [-77.34594920109174, 34.53431448590216], [-77.3460452119005, 34.53426268102216], [-77.34604626773924, 34.534261094187826], [-77.34604865104671, 34.53425751227456], [-77.34609024799806, 34.53419499545509], [-77.3461086872648, 34.53416728274378], [-77.34613757934105, 34.53407415366709], [-77.34613922240423, 34.534065538151154], [-77.3461188227252, 34.53404802076568]], [[-77.32055066212479, 34.546105653795415], [-77.3206653413067, 34.54605198687389], [-77.32055279162799, 34.54601447119995], [-77.32025071639674, 34.54611155429627]], [[-77.32265461220015, 34.546500614507345], [-77.32250511238846, 34.546473784551594], [-77.32236668882702, 34.54645540230524], [-77.32244125731444, 34.54653127001962], [-77.32247874302624, 34.54654134387241], [-77.32250307353571, 34.546561173850364]], [[-77.36940858250286, 34.52017302058754], [-77.36939836896187, 34.52018870110275], [-77.36934427369917, 34.520249731531116], [-77.36942848375477, 34.52029927343252], [-77.36950167643745, 34.520218320899815], [-77.36962709443013, 34.520195061946275], [-77.36968860568722, 34.52014687435283], [-77.36975793384609, 34.520094661491896], [-77.36982611095759, 34.52007300820129], [-77.36983220178678, 34.520064973282814], [-77.36982661714002, 34.52005078333922], [-77.36978017174982, 34.52004038542808], [-77.36973869343151, 34.52001724233186], [-77.36966090096745, 34.5200099941547], [-77.3696330807422, 34.519932249086175], [-77.36961674222017, 34.51992273090316], [-77.36960377532056, 34.51991427226624], [-77.36953611326297, 34.51988173912727], [-77.36951566374313, 34.51992697028639], [-77.36950021098974, 34.519969251446476], [-77.36946662978073, 34.52003639022436], [-77.36950228416723, 34.52005131205617], [-77.36943298730084, 34.5201015776026]], [[-77.33761674283471, 34.550536371641456], [-77.33767162734497, 34.550553142083224], [-77.3376285944802, 34.55052740672912], [-77.33760120585978, 34.550518863646104]], [[-77.21762492290478, 34.61758641748439], [-77.21761066408429, 34.61759717373786], [-77.21761579620298, 34.617629010142316], [-77.2177331664725, 34.617594967138686], [-77.21764914689722, 34.617563189117526]], [[-77.43987311365825, 34.74685951753659], [-77.43982828721644, 34.746852735300706], [-77.43977941574833, 34.74685072935065], [-77.4397527511149, 34.74688424816801], [-77.43973369888896, 34.74691865916539], [-77.43973676603603, 34.74696798722137], [-77.43973434314051, 34.74700352996048], [-77.43977385432345, 34.74702855612609], [-77.43982352099616, 34.747030892714335], [-77.43986484059222, 34.74699023658845], [-77.43987994333042, 34.74696974778718], [-77.43988174194251, 34.74694203676844], [-77.43989477768122, 34.74690505169357]], [[-77.24505980537072, 34.59530442279392], [-77.24517695696031, 34.595262374622216], [-77.2451913236905, 34.59525054073721], [-77.24520074202844, 34.595215385143796], [-77.24516380933497, 34.59524837285926], [-77.24504752096104, 34.595293495469974], [-77.24503805350332, 34.59530426238245]], [[-77.34163600135295, 34.53801850539601], [-77.34154512141731, 34.53803930966075], [-77.34152574614494, 34.53803436609586], [-77.34148634723655, 34.537955486189595], [-77.3413674027514, 34.53793473483824], [-77.34152110777039, 34.53789557696197], [-77.34154837700382, 34.5378984132707], [-77.34157231493967, 34.53789044385428], [-77.34164745119668, 34.53785802364663], [-77.34167483000746, 34.53784621006233], [-77.34173548694905, 34.53782732425158], [-77.34174637976368, 34.537823932723924], [-77.34176201769448, 34.53782655352708], [-77.34180629916177, 34.53783408338298], [-77.34181457935838, 34.53785214046825], [-77.34182493015145, 34.53786891764001], [-77.34182238733197, 34.537882246497986], [-77.341815995567, 34.53791492928005], [-77.3418000073477, 34.53793370761002], [-77.34174231791948, 34.53799974042968], [-77.34173669518572, 34.5380005248563]], [[-77.39633010599837, 34.510305939800645], [-77.3962434192201, 34.510279830415996], [-77.39619470055584, 34.51032548561125], [-77.39624204389666, 34.510341054445036]], [[-77.30495665331537, 34.55375718331938], [-77.30482597063273, 34.55381274551703], [-77.30475774701486, 34.55390753809927], [-77.3049113444184, 34.55385433118184]], [[-77.32200646185208, 34.54641589362468], [-77.32208234231962, 34.54644115117594], [-77.32203623697815, 34.54639337685105], [-77.32192241712337, 34.54636100434413], [-77.32191885372318, 34.54636000473196], [-77.32191482243978, 34.54636209553088], [-77.32191879684022, 34.54636244210974]], [[-77.32137355455176, 34.546220210805096], [-77.32135329131698, 34.54619796125041], [-77.32134015394702, 34.546195869239824], [-77.32133385676477, 34.54619223729486], [-77.32129657126762, 34.54618272235356], [-77.32113820742131, 34.546164191063866], [-77.32103704468294, 34.54624339696964], [-77.3211363292477, 34.54624463642095], [-77.32132772762067, 34.54620526627544], [-77.32133355212888, 34.54620528667793]], [[-77.28193403591243, 34.56430782025825], [-77.28191022377256, 34.56430391960005], [-77.28189616210419, 34.564314351716604], [-77.2818427295764, 34.5643150708901], [-77.2817898103184, 34.56433374156471], [-77.28176877034804, 34.564365346545095], [-77.28173180224961, 34.5643836180449], [-77.28178819414407, 34.564382619022005], [-77.28189067114765, 34.56434259962015], [-77.28191969793475, 34.56433528073725]], [[-77.33444457392284, 34.55052250634999], [-77.33451310412529, 34.55050607202793], [-77.33455872496751, 34.55043616462396], [-77.33453951242957, 34.55042311476939], [-77.33438880547786, 34.55039156985785], [-77.33432757744518, 34.550453586432845], [-77.33438631362738, 34.55049903902626]], [[-77.36391477776083, 34.52917261113014], [-77.3639083073507, 34.5291814059347], [-77.36380951394501, 34.52924557059952], [-77.36380609604544, 34.5292703876407], [-77.36392391491887, 34.5293015703619], [-77.36392443046297, 34.529301899583075], [-77.3639255014593, 34.529301341814396], [-77.36396719506243, 34.529198117931585], [-77.3639765412068, 34.529141360603404]], [[-77.26565529105898, 34.57796501129727], [-77.26561755185207, 34.577982302196254], [-77.2655938158739, 34.57800288102603], [-77.2655983987788, 34.578020169164986], [-77.26561239647752, 34.578004342319744], [-77.26567432288259, 34.57798193759305], [-77.26568037519247, 34.577976266168974]], [[-77.33384795328023, 34.54954328001629], [-77.33401468395566, 34.54959372911619], [-77.334123513154, 34.549503661170974], [-77.33401818079791, 34.54944294789308]], [[-77.33069943327166, 34.54864542339664], [-77.33068519981846, 34.54865147675902], [-77.33069916573108, 34.54865693962995], [-77.3307673396133, 34.54868254978847], [-77.33071543558056, 34.54864713039473]], [[-77.2139228929116, 34.62075523903533], [-77.21398023030684, 34.62071589068864], [-77.21396242459036, 34.620677229761206], [-77.21392520031982, 34.620711542630474]], [[-77.40489258425802, 34.50772301301435], [-77.40483721169745, 34.50765543272853], [-77.40479270371816, 34.50773743836241], [-77.40483488402417, 34.50775952250228]], [[-77.34814784416851, 34.55311730858549], [-77.34806793986898, 34.55311336252007], [-77.34797917400591, 34.55307506667002], [-77.3479402009724, 34.55306686943544], [-77.34792168106421, 34.55311856363892], [-77.3479508726555, 34.553145650826025], [-77.34806691295368, 34.5531579691511]], [[-77.43849679294014, 34.75053951681336], [-77.43849184148195, 34.75052455209846], [-77.43848019768488, 34.750533719549885], [-77.43842616522547, 34.75056251822639], [-77.43848558314582, 34.75054617672716]], [[-77.26990107598304, 34.57445304678942], [-77.26991384442115, 34.57448726046059], [-77.26993935830053, 34.574456056374515], [-77.2699461758835, 34.574423328810376]], [[-77.40187359352066, 34.576698353896646], [-77.4018277559884, 34.57669440064868], [-77.4017727422136, 34.57682158439025], [-77.40178467884441, 34.57683674252018], [-77.40195407788576, 34.576865200873996], [-77.4020354418034, 34.57680055344861], [-77.40195407840723, 34.57676851894426]], [[-77.4347855899323, 34.75391297635319], [-77.43482396654733, 34.753868470904585], [-77.43480333209149, 34.75385168327888], [-77.43479153748065, 34.75385714175061]], [[-77.36942009386402, 34.52030798394121], [-77.36933102777958, 34.520270191864036], [-77.36929301258311, 34.520326297710454], [-77.36932921298555, 34.52034985332044]], [[-77.21171258409103, 34.62261994414676], [-77.21165651469828, 34.6226229412342], [-77.21160806347103, 34.62261812031278], [-77.21156017432328, 34.622645809507226], [-77.21154237377868, 34.62268577730897], [-77.21148967276243, 34.62273282905018], [-77.21162180049375, 34.62275645093406], [-77.21164806946031, 34.62274724250936], [-77.21186197806094, 34.62266966059154]], [[-77.3599867395045, 34.54807431267107], [-77.35999288150018, 34.548076582552284], [-77.3600053412279, 34.54807843135315], [-77.36000229842914, 34.548085082531955], [-77.35999536277303, 34.548085982899806], [-77.35998663039933, 34.548079081049636], [-77.35998451054748, 34.548077787946184]], [[-77.33953745043858, 34.55088259303727], [-77.33953052889308, 34.55088734071127], [-77.33952471845728, 34.55088803716126], [-77.33952520644584, 34.55088435397928], [-77.33953074756586, 34.55087788452778]]]]}, "type": "Feature", "id": "demo7", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.18337339005524, 34.63806456131876], [-77.18565093306229, 34.638245079433304], [-77.18689680409523, 34.63881093323493], [-77.19205094558153, 34.63893607047069], [-77.1932833070197, 34.64017298789065], [-77.1957661004802, 34.641374330827304], [-77.19736051157322, 34.64177726028186], [-77.19771946831963, 34.64211374474167], [-77.19983027664777, 34.64257656813858], [-77.20020945983903, 34.64265259616357], [-77.20045859232499, 34.64274581185113], [-77.20361398387391, 34.642757217013255], [-77.20628821347435, 34.64331951247588], [-77.20706945957703, 34.64336633806168], [-77.20982028858467, 34.64336634750631], [-77.21002629937048, 34.64336634750251], [-77.2092711534609, 34.64220462105509], [-77.20857271004205, 34.64138228454226], [-77.20906173600346, 34.63987785557712], [-77.20906171456865, 34.639344199301426], [-77.20699611524684, 34.637486713083085], [-77.20754328600648, 34.63697303002492], [-77.20955788676083, 34.63391822390154], [-77.20931232722586, 34.631516775656465], [-77.20323444769551, 34.63341831025434], [-77.20323441340273, 34.63469310809048], [-77.20028582997317, 34.636008146500735], [-77.1988835019174, 34.634332321449605], [-77.19776191020118, 34.63432978682535], [-77.19630202836704, 34.63286989169778], [-77.19618571070286, 34.632401914384815], [-77.19561989894964, 34.631898372499904], [-77.19377871604456, 34.63036274816484], [-77.19093320907399, 34.627830120558016], [-77.18912826249873, 34.62622343785512], [-77.1892271402478, 34.624767523020274], [-77.19141993392914, 34.62417859655902], [-77.19400764477861, 34.62176725513636], [-77.1964497988855, 34.621568486304014], [-77.19998932487108, 34.62128267517039], [-77.20112774652861, 34.621034914446426], [-77.20366126084026, 34.61928938259122], [-77.20515949423259, 34.619737920620096], [-77.20618924480081, 34.61984718937536], [-77.20803875773622, 34.62059981949076], [-77.2080889200192, 34.62061548348851], [-77.20811056827564, 34.620618428333], [-77.20811306099074, 34.62060569464358], [-77.20810825308477, 34.62059914008349], [-77.20952791229779, 34.61924922768448], [-77.2107447201337, 34.61892824029039], [-77.21139408136332, 34.61790128742428], [-77.21211718369646, 34.61715124202299], [-77.21249926561492, 34.61663251493705], [-77.21384553159689, 34.615402362807274], [-77.21501245225234, 34.613609590138616], [-77.21501297616946, 34.6136087007784], [-77.21635872479928, 34.61182996330169], [-77.21723461487338, 34.6103250767839], [-77.21748806424624, 34.610033756172314], [-77.21768289296537, 34.60967213990306], [-77.21884203634399, 34.6082552188456], [-77.22014933690538, 34.60765827172346], [-77.22152328130865, 34.60469608445155], [-77.22205540588548, 34.60409411637596], [-77.22284227990414, 34.60291481124184], [-77.22318460798697, 34.60246883886508], [-77.22328664562627, 34.60200718080192], [-77.22341599915917, 34.60165013070208], [-77.2234579831698, 34.60107797717379], [-77.2235184693328, 34.600142375262855], [-77.22352018005803, 34.60013737835931], [-77.22394091322019, 34.59923065946424], [-77.22434277001662, 34.598364555135866], [-77.22478595896027, 34.59741191055457], [-77.22524828537605, 34.59641503522983], [-77.22579724963046, 34.59560633184557], [-77.22599344235503, 34.59480815922049], [-77.22611217852054, 34.594553788776324], [-77.22652549479014, 34.593778390205614], [-77.22682733020034, 34.59361744254536], [-77.2281607770325, 34.593746776934125], [-77.2284539375314, 34.593735550137744], [-77.23087406420697, 34.592236174055586], [-77.23186216728926, 34.59178057509099], [-77.233266201397, 34.5908926829966], [-77.23355339706801, 34.590655608091794], [-77.23362919184194, 34.59056814118259], [-77.23377058322859, 34.59042866652482], [-77.2349878558592, 34.589302186280996], [-77.23615070153875, 34.588881612847004], [-77.23793599095222, 34.58833041291645], [-77.24048691654937, 34.588935514335205], [-77.24156247249573, 34.58782855260004], [-77.241867175336, 34.587533936150315], [-77.2420126541868, 34.58745842807508], [-77.2421333331879, 34.58729872626136], [-77.2427373755218, 34.58657285266913], [-77.24331820567227, 34.58619533644812], [-77.24505956790165, 34.58581316695003], [-77.2461676968058, 34.58539268558084], [-77.24740073972394, 34.584568403895844], [-77.24797081008234, 34.584157159055145], [-77.24931624489116, 34.583643067868884], [-77.25010543965763, 34.5828446659671], [-77.25051603333337, 34.58247227539151], [-77.25074273233926, 34.58228272518083], [-77.25126892867493, 34.58158888385957], [-77.2516161378245, 34.58128976076183], [-77.25210689457526, 34.58086696684965], [-77.25232773641372, 34.5807295789022], [-77.25301381218627, 34.580286076484285], [-77.25381772522442, 34.579759614634746], [-77.25508659675502, 34.579061431376175], [-77.25649628298675, 34.57830882070546], [-77.25775235410637, 34.57800125880124], [-77.25809870066342, 34.577413181168026], [-77.25891215226116, 34.57686587465541], [-77.2591934531044, 34.57665403241862], [-77.25930315534036, 34.576565295505766], [-77.25959965606481, 34.57635009223272], [-77.26038238581042, 34.57570753888936], [-77.26080815835697, 34.575461247258026], [-77.26153985002662, 34.57500393716978], [-77.26247955707157, 34.57431891246997], [-77.26280713814323, 34.57401297382343], [-77.26379302475323, 34.573309764798026], [-77.26398484414419, 34.57316294914503], [-77.2640546992555, 34.57309098510027], [-77.26518044069401, 34.57231431268832], [-77.26568829872753, 34.57191506835695], [-77.26649825272847, 34.57147529649684], [-77.2667766916806, 34.57131591320704], [-77.26737236648864, 34.57078406713856], [-77.26753791579489, 34.5706143862428], [-77.2682855297167, 34.57015711510725], [-77.26898700006396, 34.56959132441515], [-77.26953937410613, 34.56918620019449], [-77.2697990996637, 34.56899921831215], [-77.26993199847179, 34.568917296327825], [-77.27065193630085, 34.56844334243719], [-77.27117657343395, 34.56807247331006], [-77.27187938829735, 34.56734090959969], [-77.27199586476996, 34.567194211076156], [-77.27207882494355, 34.567083669912684], [-77.27235754159008, 34.566946419230476], [-77.27325008684473, 34.5663501320345], [-77.27385704770867, 34.56603648757882], [-77.27435233277089, 34.565679420363836], [-77.2745414490055, 34.56550896269479], [-77.27490429774818, 34.56524309222512], [-77.27541628124825, 34.56479456057466], [-77.2756576507572, 34.564654016251275], [-77.27636551831047, 34.564190136259455], [-77.27689349344259, 34.56380846101624], [-77.27730642623187, 34.563528100270865], [-77.27802565403243, 34.56303964912628], [-77.27895701986012, 34.562416414842744], [-77.2795219264956, 34.562046169307784], [-77.28060532594787, 34.56139885500873], [-77.28196365512316, 34.560613934410675], [-77.28225259803867, 34.56042299061405], [-77.28242666292638, 34.560305531788764], [-77.28390266813429, 34.55932784092439], [-77.28501711232624, 34.558540160978325], [-77.28663684847622, 34.557377598195934], [-77.2872057447126, 34.557008305105775], [-77.28757889416357, 34.5567724993177], [-77.29045831618798, 34.55507949512108], [-77.29049990667473, 34.55505685938834], [-77.29051927302827, 34.55504219327046], [-77.2905576193778, 34.55502483698793], [-77.29209088621144, 34.55419798994211], [-77.29239284529108, 34.55396728295081], [-77.29285610012275, 34.55371599036748], [-77.29368474957893, 34.55321587000451], [-77.2942022859225, 34.55286112428274], [-77.29514580932128, 34.55240835490347], [-77.29527602664771, 34.552341458535444], [-77.29610410044631, 34.55179997047378], [-77.2968748382944, 34.5511468134557], [-77.29769659827697, 34.55058811436014], [-77.29875387332108, 34.54993228980431], [-77.2993907743705, 34.549425791278736], [-77.30006411368576, 34.549105362998304], [-77.30132141790807, 34.548378687014406], [-77.30283427240785, 34.54738832330253], [-77.30304312790018, 34.547229783338516], [-77.30325244862136, 34.547097048021826], [-77.30438671203261, 34.54646751303123], [-77.30484404016764, 34.546199802025505], [-77.30491699676494, 34.54615501009904], [-77.30501534567598, 34.546096059481286], [-77.30643650753088, 34.54526382507266], [-77.30675702029629, 34.545063740161304], [-77.30719730907558, 34.544803615983255], [-77.30803113100663, 34.5442345541061], [-77.30852713319742, 34.54393841426764], [-77.30962471479998, 34.54324783927847], [-77.3103480961349, 34.54283785801124], [-77.31141472648926, 34.54223962308649], [-77.3128078705765, 34.54144054806097], [-77.31420381948719, 34.5407408816011], [-77.31550879984135, 34.53998862137358], [-77.3159890259896, 34.53971262643691], [-77.31610109522059, 34.539677488464164], [-77.31632797943277, 34.53957552559574], [-77.31757479734723, 34.53905194518492], [-77.3182993399634, 34.53876067586793], [-77.31915948093919, 34.53843666924898], [-77.31938594397914, 34.53829617249843], [-77.31963910540247, 34.538120623157894], [-77.3200885389387, 34.537644632850125], [-77.3215680667781, 34.53686421963579], [-77.32200026881105, 34.53658826209465], [-77.32234743552523, 34.53640645180821], [-77.32341461540986, 34.5359401404478], [-77.3240959099464, 34.535621461337094], [-77.3242583366164, 34.53549838518671], [-77.32552498747395, 34.53481589341871], [-77.32602873291125, 34.53457535493894], [-77.32664720610191, 34.53417579657511], [-77.32695798682937, 34.53403420473505], [-77.32711580998824, 34.53393067917004], [-77.32728101061875, 34.533694671055876], [-77.32736479316239, 34.53358302682787], [-77.32751880121731, 34.53348205928537], [-77.32776813227296, 34.53343505038003], [-77.32785294463805, 34.533268044613294], [-77.32791711562601, 34.533234222870554], [-77.32817475595705, 34.53313622855113], [-77.32848435982315, 34.53293246546107], [-77.32854459807547, 34.5328194946264], [-77.32871620549746, 34.53263244109451], [-77.32895788693082, 34.532374765247724], [-77.329164510071, 34.53212770334037], [-77.32919495648038, 34.532095870673885], [-77.32940959306055, 34.53199863453076], [-77.32951835116067, 34.531898741138015], [-77.32962115713171, 34.53185324268634], [-77.3296683168196, 34.53178300571176], [-77.32962995212887, 34.531721489241455], [-77.32954116650819, 34.531565872002034], [-77.329817679494, 34.531579479971896], [-77.32991815530198, 34.53158623480242], [-77.3300033380167, 34.53154251929749], [-77.33031406133227, 34.531441305582405], [-77.33059897019024, 34.53133573969127], [-77.3308824368193, 34.53125664970898], [-77.33110380030634, 34.53124048351982], [-77.33140631195364, 34.531232052518384], [-77.3315617509749, 34.531225392427054], [-77.33168652853936, 34.531248031588646], [-77.33184714476275, 34.531250812489965], [-77.331888390474, 34.531261175866256], [-77.33211245268507, 34.531291426519786], [-77.33225690963097, 34.53141083735388], [-77.33227705275446, 34.53142797271238], [-77.33240728579209, 34.53155102614617], [-77.33264753191816, 34.53159948759854], [-77.3326654048289, 34.53160819492522], [-77.33268048151712, 34.53160409348368], [-77.33273284475023, 34.53158722070551], [-77.33283462988055, 34.53155494807475], [-77.33278072693902, 34.531509836185045], [-77.33272076424129, 34.53146654972262], [-77.33266990332118, 34.53141442245129], [-77.33256970030706, 34.53142815818855], [-77.33260131039779, 34.53136131763133], [-77.33258206010117, 34.5313077551595], [-77.33252795204811, 34.531218419541446], [-77.33244663293877, 34.531138742009816], [-77.33247197394525, 34.53101944572758], [-77.33247845300757, 34.530889350773904], [-77.33249177062976, 34.53076696291049], [-77.33246334832899, 34.530646706663035], [-77.33242475544122, 34.530572524375415], [-77.33233538199644, 34.53042029059428], [-77.33232610451509, 34.530405834363584], [-77.33230147543291, 34.530376183284766], [-77.33220082449631, 34.53025928947265], [-77.33213679473576, 34.53020402843212], [-77.33213657858656, 34.53009717469793], [-77.33230907651873, 34.53004883564191], [-77.33256159271184, 34.52989813244861], [-77.3326453954575, 34.529848118473396], [-77.33270712101566, 34.52981128009691], [-77.33278423603961, 34.529817926703075], [-77.33277164416592, 34.52986792947186], [-77.33285867635757, 34.529951975683154], [-77.33288892029414, 34.52998005247827], [-77.3328992099399, 34.529991144591804], [-77.33294996258601, 34.53005453348823], [-77.33297331000361, 34.530083747897706], [-77.33301093007236, 34.530129071066895], [-77.3330633927538, 34.530193202833615], [-77.3330903701103, 34.5302110584142], [-77.33315344646056, 34.53026257617733], [-77.33321331085172, 34.530294053791216], [-77.33324472081452, 34.5303141859398], [-77.33325380125267, 34.53034943562285], [-77.33328265586783, 34.530382516920334], [-77.3332941211237, 34.530397474706255], [-77.33331514609674, 34.53040181867691], [-77.33334050410073, 34.530435011330916], [-77.33337064611254, 34.53046024286964], [-77.33345573269247, 34.53049112068586], [-77.33339492088793, 34.530441878257015], [-77.33341597566117, 34.530387319960475], [-77.33338159534631, 34.53034775352102], [-77.3333724681423, 34.53033820280619], [-77.33335013976495, 34.53033558273956], [-77.3333592182284, 34.53031991809432], [-77.3333489266563, 34.53027455309235], [-77.33332692524795, 34.53017998734978], [-77.33332192483454, 34.53013511713722], [-77.33329042992092, 34.53004755078014], [-77.33328708638923, 34.530040812039786], [-77.33328556557517, 34.53003884785669], [-77.33322933656243, 34.52996384004891], [-77.33319623967168, 34.52992928422499], [-77.33312059434381, 34.52983110362837], [-77.3331262018088, 34.5298169471045], [-77.33330537048948, 34.529672667316134], [-77.3334987207296, 34.529529319672164], [-77.33396927361214, 34.529695715625685], [-77.33409418190831, 34.52979219783521], [-77.33409277045934, 34.52992277361631], [-77.33427290762066, 34.52999776880926], [-77.33443370833429, 34.53001798026425], [-77.33449562385621, 34.53000383615774], [-77.33456725609436, 34.52991694449275], [-77.3345731961329, 34.52985368696122], [-77.33457576275637, 34.529794448061025], [-77.33482413408272, 34.52972260175811], [-77.3350653341704, 34.52967996027923], [-77.33527578464279, 34.529863553963196], [-77.3354545199229, 34.529824089104125], [-77.33561751085958, 34.52980488297743], [-77.33583462776808, 34.52944075049324], [-77.33577411087589, 34.529436165899575], [-77.3358341014664, 34.529413528911455], [-77.33585646139089, 34.529417935050404], [-77.33586080380933, 34.52942094639747], [-77.33586745047924, 34.52942274238159], [-77.33599709273942, 34.52949289221881], [-77.33621787754836, 34.52963344960683], [-77.33624353501062, 34.529653205127445], [-77.33636075169194, 34.52984143059115], [-77.33643224119061, 34.52995392469555], [-77.33662744002572, 34.53002532974408], [-77.3367738288837, 34.53017814547601], [-77.33701591580827, 34.53020027783486], [-77.33708264399877, 34.530227240370934], [-77.33714905109906, 34.53037691912537], [-77.33718120589148, 34.53045788189769], [-77.33730926816409, 34.530628611972986], [-77.33729003497668, 34.53068704661663], [-77.33739559752392, 34.53075501730116], [-77.33776745496046, 34.530851699587096], [-77.33778636021819, 34.530831408224444], [-77.33780083845612, 34.53084911040011], [-77.33818275158916, 34.53066468279374], [-77.33846701335429, 34.530827749408665], [-77.33861772743852, 34.53098571619452], [-77.33879662096822, 34.5310610348876], [-77.33895581393374, 34.531183227617646], [-77.33907516916503, 34.531332952933994], [-77.33923913648279, 34.53138596839304], [-77.33928433181357, 34.531590233363374], [-77.33928924263087, 34.53162357954307], [-77.33932074331854, 34.53162982043149], [-77.33933798240693, 34.531631223925686], [-77.33958197425366, 34.53173514493388], [-77.33972708406851, 34.53177965928461], [-77.33977387092261, 34.53179868632498], [-77.33977833958754, 34.531830747782585], [-77.34002687243408, 34.53200711089341], [-77.34005728020594, 34.53203789229759], [-77.34011044304398, 34.53217647272972], [-77.34020820160487, 34.53216503981068], [-77.34016615422577, 34.53223189368063], [-77.34030414394483, 34.53228752071711], [-77.34042103007317, 34.53219522964649], [-77.34038026110092, 34.532123796841496], [-77.34050508133814, 34.53208560978869], [-77.34056455924045, 34.53213674971343], [-77.34063220276198, 34.532164851590395], [-77.34068973550727, 34.53227446404873], [-77.34082583044574, 34.53238181616166], [-77.34084694805344, 34.532405764533046], [-77.34089013511155, 34.5324093230385], [-77.34116961233143, 34.532577179499036], [-77.34121726707812, 34.53260824910449], [-77.34127635281025, 34.53268280352914], [-77.34152877389502, 34.532855233091084], [-77.34166417394883, 34.53288699914832], [-77.34175170319673, 34.53292789799419], [-77.34184696646702, 34.532969372572936], [-77.34196427009431, 34.53300840287099], [-77.34205408125813, 34.53300097228349], [-77.34232861151698, 34.53314489975064], [-77.34231239878201, 34.53322767801379], [-77.34243996113155, 34.533289353567795], [-77.34262069582083, 34.5333476971902], [-77.34278193131982, 34.53335509401125], [-77.3428295750681, 34.53341615034645], [-77.3429376115635, 34.533546921600994], [-77.34282178082162, 34.53375366854831], [-77.34279840225828, 34.53379782427154], [-77.3427565209758, 34.53381779426358], [-77.34268923152939, 34.53390792045613], [-77.34252805950682, 34.53409548156384], [-77.34248007549218, 34.534139651681755], [-77.34241842152177, 34.534221905492714], [-77.34219686658625, 34.534280461765974], [-77.3420258415375, 34.53422335402935], [-77.34172742744707, 34.53427004276327], [-77.34123886131111, 34.534304995329805], [-77.34077480663612, 34.53459252157429], [-77.34090177926136, 34.53486169161146], [-77.34047094064957, 34.53512586744283], [-77.33994793692554, 34.53539093180979], [-77.33964374405653, 34.53538270736509], [-77.33950115785458, 34.53535469628654], [-77.33925284298286, 34.53531131558347], [-77.33923827258624, 34.53530318088681], [-77.33923983286462, 34.53529460146332], [-77.33909727551134, 34.53517759375474], [-77.33888630765891, 34.53512248917029], [-77.33886454857357, 34.53512729888519], [-77.33885881309135, 34.535116673367895], [-77.3388536873068, 34.53511368032153], [-77.33866929757518, 34.53508301363486], [-77.33858467335983, 34.53508274501028], [-77.33847311998932, 34.535078771541706], [-77.33838445550735, 34.53512656466706], [-77.33834740171181, 34.535186500555625], [-77.3383631712233, 34.53525032644267], [-77.33836789738612, 34.535305961600436], [-77.3384147205057, 34.53538970270017], [-77.33840076234762, 34.535423643414056], [-77.33846388852919, 34.53547763755317], [-77.3386946151212, 34.53548223539693], [-77.33881389359368, 34.53583244227408], [-77.33881345210304, 34.535853920960946], [-77.3386944584577, 34.53596502352662], [-77.33850299822642, 34.53617788994212], [-77.33813847040636, 34.53644063899028], [-77.33812222910893, 34.53648932009385], [-77.33804644752449, 34.536552746742046], [-77.33726936190531, 34.53706771825288], [-77.33724919476037, 34.53707677017847], [-77.3371347458214, 34.537145021230245], [-77.33680853702973, 34.53734017369161], [-77.33683632358519, 34.537362367528424], [-77.33682889769942, 34.53737640427733], [-77.33684979191926, 34.537372138290486], [-77.33710464559513, 34.53756859565897], [-77.33712783198234, 34.53763291543306], [-77.33710560644741, 34.537733208400645], [-77.33713234505916, 34.537809429399566], [-77.33712851909686, 34.53786856598806], [-77.33713066706501, 34.53787210246932], [-77.33719660527946, 34.537922596348196], [-77.3372287377704, 34.53796013514449], [-77.33733911824281, 34.53795573548079], [-77.33735725899982, 34.53802190000629], [-77.33736940498815, 34.53811004285609], [-77.33750776774055, 34.538245071376316], [-77.33754449450693, 34.538283027291996], [-77.33761220260794, 34.53835319083701], [-77.33774489361235, 34.538455785253554], [-77.33773826634194, 34.53853802452702], [-77.33777397456062, 34.53859208505938], [-77.33784622479095, 34.53868602911855], [-77.33787068503601, 34.5387602539872], [-77.3378711981982, 34.5388048462637], [-77.33790408635092, 34.53886715556166], [-77.33793153620364, 34.53891857703256], [-77.33794333450362, 34.53894662604015], [-77.33798946403112, 34.53901438698972], [-77.33799660027238, 34.53902699582322], [-77.33800034645027, 34.53903108941281], [-77.33805489822902, 34.53910355850215], [-77.33812015551172, 34.539136266732754], [-77.33810121054171, 34.5392115254721], [-77.33813844374411, 34.53928168780481], [-77.33817761855799, 34.53936565829245], [-77.33818291410235, 34.539372058284], [-77.33820558941754, 34.53947222425209], [-77.3382056701612, 34.53951078261859], [-77.33821508650038, 34.53961224856245], [-77.33820256499547, 34.53971584609533], [-77.33818918398273, 34.539860791535816], [-77.33824222046385, 34.53992718022796], [-77.33825378331514, 34.54003101129936], [-77.33820864089908, 34.5401028107716], [-77.33821437561413, 34.54018957946725], [-77.33831620929851, 34.54033215761752], [-77.33835066683804, 34.54036972045413], [-77.33840572798489, 34.54052748624798], [-77.33841269920455, 34.54056309769792], [-77.33843340573642, 34.540615260661305], [-77.33843617579134, 34.5406821300123], [-77.33840731752807, 34.540767618378396], [-77.33841771922454, 34.540807193270666], [-77.33840319312759, 34.54101207310093], [-77.33842404637294, 34.54105110090367], [-77.33837484535367, 34.54108355774839], [-77.33836661448903, 34.54128108030767], [-77.33836995939909, 34.54130369759456], [-77.33838044317181, 34.54133468543686], [-77.33841076806024, 34.54142023716601], [-77.33843399890463, 34.541471437627465], [-77.33844973517706, 34.54153704150044], [-77.33850082457703, 34.54164169075051], [-77.33851862593795, 34.54177195101765], [-77.33859551909217, 34.54183191514765], [-77.33863762912094, 34.541877244458504], [-77.33870680063032, 34.5419446843407], [-77.33872380156993, 34.54197620291271], [-77.33872996812039, 34.54198637268881], [-77.33874310434044, 34.54200803668793], [-77.33879058329103, 34.54216701695943], [-77.33882047136329, 34.542218173630815], [-77.3389123743957, 34.54231621594526], [-77.33891773430196, 34.542326593695094], [-77.3389298016562, 34.54234732320421], [-77.33891247852202, 34.542449758352575], [-77.338997961969, 34.542492803521526], [-77.339022741414, 34.54255630864358], [-77.33903273134055, 34.542587168092794], [-77.33903654634818, 34.54264768792477], [-77.33900670541743, 34.54268102394623], [-77.33896886992403, 34.54275614809785], [-77.33893954175015, 34.542848867765926], [-77.33892198769792, 34.54293802623103], [-77.33899520865856, 34.542977558590096], [-77.33907427896408, 34.543029908848354], [-77.33907832641523, 34.54303534723453], [-77.33908007597803, 34.54303769803999], [-77.33908448969521, 34.54304362854752], [-77.33913578287346, 34.543112548877225], [-77.33921794383077, 34.54314027776204], [-77.33926733039527, 34.543170104604336], [-77.33931002649373, 34.54315341819601], [-77.33936581780014, 34.5431554017965], [-77.3394059217936, 34.54314952165959], [-77.3394639525229, 34.543155945726255], [-77.33947239101713, 34.54315957088022], [-77.33947407025786, 34.54316464387108], [-77.3395138080892, 34.54318857244723], [-77.33952622742633, 34.54319656241965], [-77.33955144688105, 34.54321471925631], [-77.33955214984785, 34.5432199005432], [-77.33956045052106, 34.54322725820274], [-77.33957765263386, 34.54326094154921], [-77.3396569184659, 34.54329987720011], [-77.33968295142547, 34.54331821378393], [-77.33970439462848, 34.54340639635212], [-77.3398494909972, 34.54346084996232], [-77.33991902805249, 34.54348535976866], [-77.33997228763275, 34.5435214156945], [-77.34008259655326, 34.54360295491448], [-77.34010983995091, 34.543624040111304], [-77.34022026805958, 34.543720709457375], [-77.34022965495257, 34.543729215592315], [-77.34022934591266, 34.543733274272384], [-77.34023569904826, 34.54373691266462], [-77.34037179624582, 34.54386684566791], [-77.34053014084297, 34.543930812736846], [-77.3406219056398, 34.54401314691506], [-77.34073920261899, 34.54407157213914], [-77.34092676854713, 34.54406461425557], [-77.3410140555074, 34.5440323161358], [-77.34105128445582, 34.54407681284811], [-77.3411114165975, 34.54406637813836], [-77.34113535178327, 34.54408857738201], [-77.34114242716224, 34.54412853061176], [-77.34120724561686, 34.54416674479889], [-77.3412299919913, 34.54418295515275], [-77.34126189462535, 34.54422774186483], [-77.34118870151943, 34.54432572167005], [-77.34139766943025, 34.544420925652275], [-77.34155297733065, 34.54442128700927], [-77.34174125266156, 34.544491058414735], [-77.34174644700212, 34.544516261756925], [-77.34178838244749, 34.544502376569895], [-77.34183479088192, 34.54450660393563], [-77.34204024446433, 34.54453533385653], [-77.34217713766509, 34.544668624811116], [-77.34217947366675, 34.54467134352535], [-77.34218044773692, 34.544672699267224], [-77.34229822790962, 34.54482284316016], [-77.34256034029998, 34.54507540105686], [-77.34258226886138, 34.54509064001759], [-77.3425876367557, 34.54510376167981], [-77.34260631951874, 34.54513054010008], [-77.34268363396106, 34.54521236151443], [-77.3427073622505, 34.545237344775245], [-77.34275195524906, 34.5452782595801], [-77.34281294347004, 34.54531616914003], [-77.34286831761288, 34.545356918226915], [-77.34294479457414, 34.54542812387091], [-77.3430915660881, 34.54552090627977], [-77.3431513387817, 34.545625487281804], [-77.3433309842119, 34.545705802653394], [-77.34334414554158, 34.54572096431171], [-77.343382335715, 34.545723895697094], [-77.34346322432131, 34.54575154743932], [-77.34352634012076, 34.545746711987185], [-77.34354340943507, 34.54576192835634], [-77.34358464884964, 34.54578035583294], [-77.34360578933185, 34.54580331207761], [-77.34359749103254, 34.54581535288848], [-77.34362259494489, 34.54582883546918], [-77.34363822450115, 34.545860495736264], [-77.3436890556678, 34.54590593835521], [-77.34368262048628, 34.545925515573245], [-77.34369189163314, 34.545940566456764], [-77.34371791382104, 34.54595152505544], [-77.34378793204775, 34.54610925251769], [-77.34382599781823, 34.546149708021396], [-77.34408360807704, 34.54634636864556], [-77.34408878741064, 34.54635672141997], [-77.3440896166932, 34.546363703703705], [-77.34410082566764, 34.546371483366734], [-77.3442750838863, 34.54670608062064], [-77.34448629575107, 34.54668070631665], [-77.34458734217515, 34.54677463453066], [-77.3446018351294, 34.54694156877265], [-77.34486907513256, 34.54710672148153], [-77.34494104794888, 34.547167629393215], [-77.34495386642996, 34.54721154168689], [-77.34507415004751, 34.54730827797885], [-77.34508140791046, 34.5473156019537], [-77.34510776851862, 34.54734162057065], [-77.34516212048908, 34.54742639940514], [-77.34518700393848, 34.54746424557684], [-77.34525186784853, 34.547532328647996], [-77.34530385516108, 34.547617189203564], [-77.3453288615382, 34.54764722937811], [-77.34538190660959, 34.547799487378114], [-77.3455023332861, 34.54786709085434], [-77.3455596660706, 34.547906350437586], [-77.34563498483455, 34.54794403994627], [-77.34565563010085, 34.54796744517019], [-77.34568861293931, 34.54805014345201], [-77.34571367403692, 34.54808150379938], [-77.34578977349315, 34.54817032890454], [-77.34585601386186, 34.54830584409511], [-77.34587186267416, 34.548394203154814], [-77.34601587332732, 34.54845260437205], [-77.3460694534063, 34.54851995469503], [-77.34610838052909, 34.54857377974875], [-77.34614460604611, 34.548670556045764], [-77.34620661281653, 34.548694152213834], [-77.34624270100285, 34.548739847836664], [-77.3462687639687, 34.54881797319091], [-77.34639769365185, 34.54892093550031], [-77.34642879639807, 34.5489382488008], [-77.34644008959543, 34.54895626728329], [-77.34647570063046, 34.54900093516329], [-77.34658605914686, 34.5491800847659], [-77.34665859248301, 34.54924709561067], [-77.34678022399589, 34.54935863620695], [-77.346814602931, 34.54939202126171], [-77.34693948715284, 34.54951728291375], [-77.34699434392799, 34.549610979244406], [-77.34706913310235, 34.54966054935971], [-77.34716307403636, 34.54978263306655], [-77.34719610360034, 34.54980583984273], [-77.34720777077173, 34.5498250903092], [-77.34722243952505, 34.549861124829306], [-77.34728729992167, 34.54993605720698], [-77.34730914697549, 34.54996166755947], [-77.3474133416081, 34.55004033131858], [-77.34743997369995, 34.55010404064737], [-77.34753614485369, 34.55026748170436], [-77.34754014926813, 34.55026960455508], [-77.34754434729321, 34.55027526899545], [-77.34769059627916, 34.55039713389829], [-77.34773068948684, 34.55048430901144], [-77.34773565233293, 34.550492633713844], [-77.34780230090998, 34.550553975199094], [-77.34785255008799, 34.55066454465863], [-77.34789460248649, 34.55070554372262], [-77.3479026356118, 34.55071941907387], [-77.34791291570934, 34.55076411371703], [-77.34792534553856, 34.550780047773095], [-77.34795261064077, 34.55080228657168], [-77.34798246114262, 34.550815311774954], [-77.34802184639732, 34.5508519246535], [-77.34803932561334, 34.55085735733043], [-77.34811919031121, 34.55088718899192], [-77.34813836755146, 34.55091528815561], [-77.34822966292163, 34.55095470708489], [-77.34824783842282, 34.55098110265003], [-77.34826730169311, 34.551019145547635], [-77.3482851493703, 34.551033404923096], [-77.34830900920721, 34.55107296730757], [-77.34830979307307, 34.55107423640184], [-77.34831006882627, 34.55107489028348], [-77.34831110009317, 34.5510784095657], [-77.34831437871787, 34.55108887783342], [-77.34831058176519, 34.55110092642079], [-77.34831008796344, 34.551104540499225], [-77.3483095365173, 34.55110487588327], [-77.34830162247869, 34.551108182915215], [-77.34830202392472, 34.55111114644366], [-77.34830928655784, 34.55111256249214], [-77.34831030895035, 34.551112777859956], [-77.34831143481526, 34.55111225336915], [-77.34831125415187, 34.551105108012656], [-77.34832831409781, 34.55110634047344], [-77.34833488427864, 34.55111120030932], [-77.34833777230911, 34.551114269299276], [-77.34833943956788, 34.55111587426923], [-77.34834074552492, 34.551119459675796], [-77.3483355486181, 34.55112408479902], [-77.34834338366335, 34.55112510859817], [-77.34834677649228, 34.55112759073876], [-77.34834850310874, 34.55112987135372], [-77.3483506545879, 34.55113469229229], [-77.34835272319825, 34.55113691474495], [-77.3483550869136, 34.55113888124553], [-77.34835859865893, 34.55114367181552], [-77.34835863015778, 34.55114371540396], [-77.34835864046644, 34.55114373506469], [-77.34835867306411, 34.551143792044286], [-77.34836280611584, 34.551150765145216], [-77.34836452250491, 34.55115436956996], [-77.34837116987089, 34.55115721228216], [-77.34838273913, 34.551164338705], [-77.34838704747288, 34.55116749705826], [-77.34839467393724, 34.5511767515394], [-77.34838238233847, 34.551179838805375], [-77.3483707040367, 34.5511878818798], [-77.34838035986674, 34.551200833975294], [-77.34838126186635, 34.55120204389592], [-77.34839130806985, 34.55121551962244], [-77.34840565701576, 34.551234766932595], [-77.34841000284231, 34.55124063799899], [-77.34841182305593, 34.551243170179006], [-77.34841645080252, 34.5512494453933], [-77.34843846964787, 34.5512794395438], [-77.34844927815695, 34.551298985683154], [-77.34848537623358, 34.55134508342601], [-77.34849124748028, 34.55135415161398], [-77.34850079036481, 34.55136609682838], [-77.34857132746858, 34.55142027776826], [-77.34862382875073, 34.55145748389652], [-77.34869382844782, 34.55150837875267], [-77.34874329621343, 34.55153152547626], [-77.34877412775914, 34.551558266478466], [-77.34887525945118, 34.551659006009615], [-77.34888413258852, 34.551666327712745], [-77.34888647093473, 34.55166787930522], [-77.34900158889286, 34.55177035581014], [-77.34902735953717, 34.55179932127608], [-77.34907843623701, 34.55185684154934], [-77.34916210177983, 34.55193873449882], [-77.34919107149778, 34.551987909919774], [-77.3492218423279, 34.55201421448267], [-77.34925689150742, 34.55209310269241], [-77.34926012618897, 34.55210038328401], [-77.34926117722787, 34.55210513317312], [-77.34926294125644, 34.552220238729824], [-77.34926250201167, 34.552222451794115], [-77.34926325095691, 34.55234458151834], [-77.34926326641195, 34.55234475219266], [-77.34926327203003, 34.55234490648039], [-77.34926301090644, 34.55236706691822], [-77.34926182194747, 34.55246668270511], [-77.34926176551868, 34.55246737856533], [-77.3492617326342, 34.552468034743555], [-77.34926062994919, 34.55247055266731], [-77.34922601232087, 34.55257484459054], [-77.34920536554785, 34.55259790492214], [-77.3491368136911, 34.552655630873005], [-77.34905839475869, 34.552727833069916], [-77.34904449035075, 34.55273489663079], [-77.34901354872396, 34.55274791765302], [-77.3489250215368, 34.5528009528287], [-77.34885989156541, 34.55282288556215], [-77.3487742561789, 34.55285177935497], [-77.34866187261572, 34.55289687679536], [-77.34854340867582, 34.552937979497905], [-77.34848466748217, 34.552959243599496], [-77.34846395182632, 34.55296658710918], [-77.34844250966623, 34.552965878379325], [-77.3482686386084, 34.552923004287464], [-77.3482004977005, 34.5529076207804], [-77.34809127923538, 34.55288062720057], [-77.34787855099106, 34.55281245945846], [-77.34776708226443, 34.55275281645725], [-77.34755925319766, 34.552712359387485], [-77.34748863229109, 34.55269462023989], [-77.347310097541, 34.55261584326878], [-77.34725202111332, 34.552607782876976], [-77.34709836660934, 34.55259188904123], [-77.3470315673643, 34.55258521257524], [-77.34688046029805, 34.552565206358736], [-77.34676891448085, 34.552542569348844], [-77.3467073432425, 34.552522083612956], [-77.3465524802396, 34.552515742231286], [-77.34648896355954, 34.552513012786655], [-77.34631434674145, 34.55253793104556], [-77.34630141518159, 34.552534225181944], [-77.34626977122001, 34.55253066142759], [-77.34615772126705, 34.552522259529646], [-77.34611836202444, 34.552523566907766], [-77.34604593969217, 34.55250166021185], [-77.34603535524796, 34.55249415838909], [-77.34596377198054, 34.55245227700658], [-77.34595516139058, 34.55243415231456], [-77.34592472377432, 34.55240739486578], [-77.3457894252778, 34.552318186562374], [-77.34566700429932, 34.552250153744794], [-77.3455368652633, 34.55220036612798], [-77.3453507949873, 34.55216732358257], [-77.34514421282731, 34.552201333598475], [-77.34499375282249, 34.552196086576615], [-77.34494787228627, 34.55220243658199], [-77.34476380336265, 34.55214204289114], [-77.34475302918534, 34.55213860641265], [-77.34475149517912, 34.55213801115442], [-77.3447495103706, 34.55213733162472], [-77.34455825380454, 34.55207185200873], [-77.34453185564576, 34.55206282434682], [-77.344497468432, 34.55205118125663], [-77.34436345231094, 34.552006242182955], [-77.34430773961427, 34.5519910239099], [-77.34421361625454, 34.55196960665198], [-77.34416838852366, 34.55195201468261], [-77.34408378013404, 34.55191910493547], [-77.34397299376745, 34.551912142695336], [-77.34388890455486, 34.551893909333444], [-77.34381923479674, 34.5518778895346], [-77.34377783487969, 34.55186205525391], [-77.34363880349068, 34.55180747817465], [-77.34363429162786, 34.55177645396478], [-77.34358517379772, 34.551703733915446], [-77.34351640575008, 34.551624289161026], [-77.34348425402109, 34.551584891557226], [-77.34338886328351, 34.551472884440635], [-77.34335813640175, 34.55135821462868], [-77.34328551028581, 34.55131627104368], [-77.34320109924754, 34.5513331305867], [-77.34311722298402, 34.55134067909411], [-77.34291023371382, 34.55135882398421], [-77.34280767516658, 34.551367672229546], [-77.34254862360442, 34.551391036379485], [-77.34241442719383, 34.551394568282234], [-77.34221902055111, 34.551399035105916], [-77.34221582544467, 34.55139875808531], [-77.34202269313612, 34.55135589658539], [-77.34197682411906, 34.55134091052581], [-77.34189856163755, 34.5513233509233], [-77.3418277029561, 34.55129860142101], [-77.3417497349511, 34.55127135733393], [-77.34163219882855, 34.5512635661282], [-77.3415740952893, 34.551247612586494], [-77.34148937362274, 34.55122697382416], [-77.34143704483859, 34.55121338060756], [-77.34125950836598, 34.55117045244915], [-77.34125636963918, 34.55116189464762], [-77.34124204342012, 34.55115660057167], [-77.34121086812135, 34.55115803013105], [-77.34104666621369, 34.55111609423163], [-77.3410101938319, 34.55110677942113], [-77.3409583520695, 34.55109135974198], [-77.34085157617919, 34.55106316814894], [-77.34077290232773, 34.5510449431096], [-77.34065634194822, 34.55101649094075], [-77.34064754311169, 34.551013654749546], [-77.34057046862965, 34.550956737812655], [-77.34046366098393, 34.550859356504], [-77.34042389401712, 34.55082627695085], [-77.3403922602969, 34.55080555368545], [-77.34031070501402, 34.550719899132645], [-77.34028346504182, 34.55069116727945], [-77.34012575777817, 34.55062987943914], [-77.34007680993848, 34.550609593116256], [-77.34007236211788, 34.550609520112864], [-77.33991664424327, 34.55065229621218], [-77.33987857560263, 34.5506927347], [-77.3398736365883, 34.55069653183514], [-77.33987241057078, 34.55070044121938], [-77.33984109350176, 34.55073972254827], [-77.33979525791696, 34.5507690090248], [-77.33977847211658, 34.55077695601152], [-77.33977019839737, 34.550777760573524], [-77.33976520996559, 34.55077333061624], [-77.33973820765802, 34.550741625610016], [-77.33971422623415, 34.55071945875517], [-77.33968221888216, 34.550694657456184], [-77.3396446579886, 34.55069172286003], [-77.33963341492638, 34.55068280318677], [-77.33962559898343, 34.55067597291424], [-77.33961962189919, 34.55067186049851], [-77.33960939884186, 34.55066018824756], [-77.33960832606166, 34.550658871873736], [-77.33959358724589, 34.55066582695645], [-77.33958710279605, 34.55066888689497], [-77.3395854897456, 34.55066964807526], [-77.33958463170096, 34.550670052976784], [-77.33958427768948, 34.55066952160926], [-77.33957401775612, 34.5506718266988], [-77.33957533874663, 34.550676283528546], [-77.3395782312123, 34.55067781337893], [-77.33957831659694, 34.550677851968516], [-77.33958137760442, 34.550679257210184], [-77.33958438778178, 34.55068060115694], [-77.33958962270438, 34.55068056196602], [-77.33959294623347, 34.55068334759956], [-77.33958924979945, 34.5506883858658], [-77.33959510743513, 34.550690687330174], [-77.33958404102995, 34.55069559629322], [-77.33956018873454, 34.550696145522664], [-77.33955886244767, 34.55069628893557], [-77.33953511047353, 34.55068921711575], [-77.33952325562103, 34.55068572003826], [-77.33950957043086, 34.5506732416635], [-77.33948666695204, 34.550661777649864], [-77.33943498822347, 34.55063721024959], [-77.33942704370543, 34.5506150004909], [-77.33936511237793, 34.550586055317915], [-77.33929295746327, 34.55054924003145], [-77.33921952730968, 34.55053063938399], [-77.3389390530885, 34.55052492145961], [-77.33890101488552, 34.55051978152156], [-77.33870791279274, 34.550434975670214], [-77.33850939725995, 34.5504762859967], [-77.3381666526759, 34.55039118521889], [-77.33815966905127, 34.55036701888186], [-77.3381192446048, 34.550369499988676], [-77.33801003795261, 34.55034526313497], [-77.33790867821045, 34.55031554266068], [-77.33772907911711, 34.55026330740576], [-77.33767715218343, 34.55024934215697], [-77.3375968795357, 34.55022830552265], [-77.33753058217765, 34.55011887837492], [-77.33753192082064, 34.550112534108315], [-77.33753227312747, 34.549992778973596], [-77.3375242844947, 34.54988230801441], [-77.33734609072879, 34.54984714694451], [-77.3373067284545, 34.54980554093818], [-77.33726105235516, 34.54978696453345], [-77.33715300284686, 34.54970795920952], [-77.33713282443547, 34.54969575385186], [-77.33695643276255, 34.549719177627345], [-77.33687884045554, 34.549719518617835], [-77.3367831387801, 34.549718932268945], [-77.33676020685984, 34.54971553067645], [-77.33671160486091, 34.54971322813161], [-77.33656383044413, 34.549718381959934], [-77.33641635431285, 34.54975504292236], [-77.33617335503467, 34.54962576898389], [-77.33597810894264, 34.549603875786445], [-77.33578002702727, 34.54965630323173], [-77.3355849346288, 34.549659946230385], [-77.33558362603743, 34.54966021386397], [-77.33558056391469, 34.54965946662034], [-77.33538834865604, 34.54961563904534], [-77.33533174822243, 34.54961012754034], [-77.33528594220336, 34.54958134119147], [-77.33502843957251, 34.54939069601758], [-77.33501083877671, 34.54937608084919], [-77.33501086078579, 34.54937018929613], [-77.33500145570169, 34.54936853865649], [-77.33476742721433, 34.549166262845276], [-77.33474237809475, 34.54909061254459], [-77.33461670708007, 34.5490290446052], [-77.33451133751223, 34.54895826752093], [-77.33437287800403, 34.54888744518103], [-77.33422708826808, 34.54889970379548], [-77.3340338274316, 34.548906514420345], [-77.33402871675807, 34.54890643897832], [-77.33383502259028, 34.54887590691369], [-77.33374261343195, 34.54888151695219], [-77.33344232593934, 34.54887931388407], [-77.333359778992, 34.54887901791178], [-77.33312978537906, 34.548862396794924], [-77.33305114402397, 34.54881743425821], [-77.33294097409883, 34.54887131249425], [-77.33255228361539, 34.548816553944455], [-77.33238833552397, 34.54877386373725], [-77.33230797315834, 34.54876001885797], [-77.33226769360361, 34.54874054650089], [-77.33209356069696, 34.548680869240314], [-77.33187701834822, 34.54865689676092], [-77.33182348253393, 34.548643823348165], [-77.3317461128586, 34.54862137439902], [-77.33158647443234, 34.5485817640079], [-77.3314868245063, 34.54855254575753], [-77.3311787836964, 34.54845811576796], [-77.3311772808338, 34.54840861608063], [-77.33109744237491, 34.54841328563582], [-77.33092172151113, 34.54838509021181], [-77.33089801747595, 34.5483785160988], [-77.33070715472543, 34.5483130553163], [-77.33066641670544, 34.548312365999934], [-77.33062790999777, 34.54829248907832], [-77.33044363657285, 34.54815233304035], [-77.33035828201487, 34.54808643256689], [-77.33035488033093, 34.54806535550017], [-77.33025830310979, 34.54806210215136], [-77.32992937659506, 34.547992348826625], [-77.3298230120709, 34.547984989794045], [-77.32953556842409, 34.54804369890005], [-77.32942854510313, 34.54804201944904], [-77.32933945207127, 34.54803548078655], [-77.3292191663765, 34.5480053565519], [-77.32917989875367, 34.54798876008681], [-77.3291446622831, 34.547970207993565], [-77.32898058276797, 34.54793685413638], [-77.32875433401665, 34.54787189317311], [-77.32871168333418, 34.54786024876198], [-77.32863496637123, 34.54784451175668], [-77.3283640610682, 34.54777123547643], [-77.32823039152055, 34.54774162610266], [-77.327972729655, 34.5477161106805], [-77.32792461645946, 34.54770179573556], [-77.32771812469446, 34.54764642954654], [-77.32758442785915, 34.54753080622228], [-77.32754924954216, 34.54751093116835], [-77.32754331075249, 34.54729601575875], [-77.3275298101733, 34.54726891077189], [-77.3272022444441, 34.54708268929403], [-77.32719024197169, 34.54708041741595], [-77.32680857421644, 34.54712819330424], [-77.32673299471324, 34.54713861551153], [-77.32641791775248, 34.547181898595355], [-77.32641469388014, 34.54718269839661], [-77.3264099821302, 34.5471820908594], [-77.32615432218921, 34.547139941764144], [-77.32602381220971, 34.54710841412428], [-77.32590476543295, 34.54708736708046], [-77.3257273284531, 34.54703832919991], [-77.3256786318915, 34.54701707819996], [-77.32563335767796, 34.547015817695154], [-77.32547651652129, 34.54697599580318], [-77.32542976842814, 34.5469639789841], [-77.32524289725181, 34.546923507312286], [-77.32508868482346, 34.546885292762695], [-77.32501049020334, 34.546798450874405], [-77.32485261097742, 34.54682375622826], [-77.32468673007924, 34.54680199302779], [-77.32465680171659, 34.54680247722486], [-77.32456241358577, 34.54677931963911], [-77.32446161172585, 34.54675463147415], [-77.3244212486137, 34.54676145999556], [-77.32439330746853, 34.546740405725295], [-77.32430699181424, 34.54665494644667], [-77.32420689645238, 34.54652237929787], [-77.3241926343319, 34.54645173956844], [-77.32407767736433, 34.54638247052513], [-77.32403883064184, 34.546326749654426], [-77.3239611381429, 34.546312880554765], [-77.32378615681931, 34.54627653047184], [-77.3236885807285, 34.54623185493374], [-77.32335631556583, 34.54619202384032], [-77.32328142912615, 34.54617562304062], [-77.32290593926162, 34.54612148926192], [-77.32276253295234, 34.54608542851186], [-77.32256749199817, 34.54602350618978], [-77.32229160591027, 34.545958956873896], [-77.3221264012406, 34.54587820223217], [-77.32182405812301, 34.545829929011234], [-77.32173455900015, 34.54584545213425], [-77.3214943571297, 34.54578218067189], [-77.32134422308184, 34.54574818626716], [-77.32129724121167, 34.54574572096862], [-77.32126853497581, 34.545720513593196], [-77.32095438236081, 34.545629747291876], [-77.32085263316475, 34.54559934364242], [-77.3206817358909, 34.54556000708498], [-77.32056390866829, 34.54553845456016], [-77.32035708446972, 34.54549148720653], [-77.32017365960142, 34.54543757801257], [-77.32013321401647, 34.54541948276906], [-77.32008319746456, 34.54540118453437], [-77.31994519325112, 34.54532036778122], [-77.31978460120217, 34.545285775595175], [-77.31969115617352, 34.545271175156074], [-77.31954480307354, 34.545233718972455], [-77.31943442749062, 34.54522401731076], [-77.31939389693869, 34.54520446082691], [-77.31920584818211, 34.54515557271124], [-77.31919874119673, 34.545155410852026], [-77.31917392089116, 34.545149023219196], [-77.31900362093229, 34.5451048518155], [-77.31896073840842, 34.54509962803168], [-77.31880779963127, 34.54509478223439], [-77.31865829760763, 34.54508703617943], [-77.31861155090752, 34.545082018358045], [-77.31853464781094, 34.5450861274066], [-77.31834612171694, 34.54508180510497], [-77.31834657573138, 34.54503863191646], [-77.31826596821523, 34.544955277880895], [-77.31824736501906, 34.54493047769719], [-77.31824790900063, 34.54491477847845], [-77.31822322992909, 34.544898855063465], [-77.31807791589635, 34.5448020310229], [-77.31788782178019, 34.544771115188986], [-77.31783376056549, 34.544764863954356], [-77.31775281824194, 34.54475670613902], [-77.31753479207538, 34.544730144175894], [-77.31744261639889, 34.54470251941292], [-77.31718971954896, 34.54467955936898], [-77.31692343204719, 34.544709853097466], [-77.31665768131569, 34.54469099407524], [-77.31651190712768, 34.544846317322744], [-77.31650236831126, 34.54493631969167], [-77.31651572117192, 34.54501814789211], [-77.31644308618763, 34.54518964551387], [-77.3164535642399, 34.54530643822428], [-77.31645205585446, 34.54531076280207], [-77.3164512061349, 34.545313627268406], [-77.3164463637461, 34.54533261335825], [-77.31642224803339, 34.545423742078064], [-77.31640092962564, 34.54544051163185], [-77.31633910289906, 34.54550746622147], [-77.31624473517716, 34.545560152354355], [-77.31614642980617, 34.54566206547737], [-77.316044519925, 34.545727268274725], [-77.31603337019047, 34.54573811527641], [-77.31601043428356, 34.54576215443356], [-77.3159560726368, 34.54581779278934], [-77.31589277747533, 34.54588071371294], [-77.3158436506307, 34.54592228743525], [-77.31576662605491, 34.545973963596154], [-77.31567696880352, 34.54603411491541], [-77.31564420621604, 34.54605640819351], [-77.31552799359734, 34.54610617924389], [-77.31544483137111, 34.54618752994301], [-77.31531940731827, 34.546253028446785], [-77.31524356152146, 34.54634117282866], [-77.31504419524082, 34.54653023942497], [-77.31498941001882, 34.54658918457385], [-77.31495063053919, 34.54662805412605], [-77.31480414902798, 34.54679490499814], [-77.31471889301682, 34.546906146108306], [-77.31469949658809, 34.5469448634605], [-77.3146412071286, 34.54697321361162], [-77.31451878849192, 34.5471052909285], [-77.31444724326516, 34.54718996935233], [-77.31439512413912, 34.547293500774025], [-77.31423885843132, 34.54738871548013], [-77.31418989687741, 34.54744198680296], [-77.31415815430842, 34.5474762964404], [-77.31403756240582, 34.547601595385714], [-77.31402561475402, 34.547610414668185], [-77.31398929043644, 34.54765231029226], [-77.31388635007856, 34.547760140283536], [-77.3138750555126, 34.54778552620623], [-77.31383623610759, 34.54781572360794], [-77.3137074531625, 34.54795233717755], [-77.3136350725366, 34.5480228645905], [-77.31362324062907, 34.54803554242224], [-77.31361446528837, 34.548043994896474], [-77.31354130514431, 34.54811985660144], [-77.31343369614778, 34.5482390429933], [-77.3133751930391, 34.548287393650426], [-77.31334161125272, 34.548327987847316], [-77.31323289699532, 34.54843055200087], [-77.31320713412288, 34.548453982665144], [-77.31318457797319, 34.54847294313137], [-77.31303257850188, 34.5486015186575], [-77.31301801732718, 34.54861031560453], [-77.31301007204328, 34.548620407225705], [-77.31285640420235, 34.54875015015189], [-77.31283535727182, 34.5487679009929], [-77.31283393403214, 34.54876910019176], [-77.31283230321174, 34.54877060737569], [-77.31267664795496, 34.548913096075516], [-77.31266364995645, 34.548934605687215], [-77.31263167347457, 34.54895477758667], [-77.3125053171245, 34.549060103293954], [-77.31248186102619, 34.54909450789627], [-77.31238553100881, 34.5491997086111], [-77.31234365024469, 34.5492756347321], [-77.31222951691657, 34.54936125542808], [-77.31215856658886, 34.5494339326429], [-77.31209265354858, 34.549486573167044], [-77.3119818686339, 34.54959631454868], [-77.31182760303285, 34.54975722132804], [-77.31181905746936, 34.54976546056868], [-77.31181110491552, 34.54977181023228], [-77.31162708231489, 34.54992040183011], [-77.3115182033085, 34.55005867634358], [-77.31148135226788, 34.5500978674535], [-77.31142576485581, 34.550149798207784], [-77.31130148646427, 34.55025870705859], [-77.31117047660932, 34.55035341349867], [-77.31110023491732, 34.550409130741066], [-77.31102566548346, 34.55046811696941], [-77.31084804556978, 34.55053474468324], [-77.3107179187038, 34.55066320094915], [-77.31068016684401, 34.55070142310607], [-77.31062703463166, 34.55072373741138], [-77.31038359559801, 34.550805420344], [-77.31022905946263, 34.55095132132695], [-77.31017861434603, 34.550985440827496], [-77.30994238672929, 34.551087415904355], [-77.30983213355734, 34.55113412350186], [-77.30946240096542, 34.551316131528935], [-77.30943493170939, 34.55132859777559], [-77.30942619452571, 34.55133288941028], [-77.30941161869333, 34.55134036675176], [-77.30889750203269, 34.55157227356407], [-77.3086411403608, 34.55169123703138], [-77.30834728471656, 34.55180117309854], [-77.30824526093105, 34.551829195465416], [-77.30800045747864, 34.55193878876706], [-77.30784872077483, 34.551995205801994], [-77.30772444175416, 34.552072191707], [-77.30729860479138, 34.55228417843608], [-77.30705374355932, 34.55240768795264], [-77.3068053042891, 34.55254079916706], [-77.30630220908292, 34.55274004531939], [-77.30626025273939, 34.55275663334798], [-77.30623792931101, 34.55276133858682], [-77.30619965306659, 34.55278068186969], [-77.30574440728913, 34.55301785022297], [-77.30546555000176, 34.55315678380494], [-77.3052311334574, 34.553264740494285], [-77.3047831157962, 34.55347361316308], [-77.3047095178866, 34.55350756713502], [-77.30467165928478, 34.5535221040941], [-77.3045643065749, 34.55357122844211], [-77.30419332049924, 34.55375303217757], [-77.30407460324187, 34.553820106895834], [-77.30387706244338, 34.553917098845716], [-77.303696406476, 34.55400788983866], [-77.30348055552204, 34.55408087007136], [-77.3032708816282, 34.554180259247055], [-77.30318031516178, 34.554253405673975], [-77.30308324799957, 34.55427855281785], [-77.30291465256154, 34.554335656975326], [-77.30287487590122, 34.55435307718751], [-77.3026866983308, 34.554443992054686], [-77.30259132629801, 34.55446341091138], [-77.30249924701215, 34.55453580093847], [-77.30228911763365, 34.554653105185], [-77.30211582658907, 34.554728698673856], [-77.3020224597128, 34.554768773297035], [-77.30189230037146, 34.55482974629932], [-77.30185487587785, 34.55485004058923], [-77.30178816577396, 34.55488264783821], [-77.30159933656861, 34.554974018395875], [-77.30149475316239, 34.555037270417245], [-77.30135569749542, 34.55510379309456], [-77.30111465890292, 34.55521367347377], [-77.30109777483365, 34.55522058559645], [-77.30109177391846, 34.55522368648387], [-77.30108094081766, 34.555228936663454], [-77.30082964361443, 34.55534445317683], [-77.30070052571475, 34.55541530340349], [-77.30057507609403, 34.555468903716466], [-77.30041849872114, 34.555568794880294], [-77.30034860310514, 34.555607040449935], [-77.30030278979373, 34.555630572713454], [-77.30014421940811, 34.55570590332915], [-77.300104207084, 34.555726084294186], [-77.30009290547962, 34.5557309404807], [-77.29990591818222, 34.55580912505665], [-77.29980929693775, 34.555841243668766], [-77.29960525270023, 34.55593028607809], [-77.29954113631696, 34.555959072085386], [-77.29950928743318, 34.55597739689529], [-77.29941353998811, 34.55601690494373], [-77.29911249655771, 34.55615238048346], [-77.29899750880837, 34.556191168877234], [-77.29881563248125, 34.55628838145492], [-77.29874731668657, 34.5563177502921], [-77.29871552081885, 34.55633511941154], [-77.29861592425476, 34.55637848859229], [-77.2984852737132, 34.5564385582186], [-77.29831864143023, 34.55651370154081], [-77.29821993886924, 34.556557762302596], [-77.29805113677749, 34.55664286650635], [-77.29796896217763, 34.55668396096826], [-77.29792130010733, 34.55671176437324], [-77.29777734929041, 34.55677101745501], [-77.29752448668371, 34.55688739985632], [-77.29745238959062, 34.55692923598926], [-77.29734221549444, 34.55698937352588], [-77.29720598577532, 34.557057662020846], [-77.29712677581253, 34.55710093975989], [-77.29694260566009, 34.55717781772048], [-77.29692851295798, 34.55718260161189], [-77.29689798444859, 34.55719436271004], [-77.29673047328195, 34.557254803510034], [-77.29648754513357, 34.557356783487776], [-77.29638177529716, 34.557401530522725], [-77.29633388073108, 34.55742087008187], [-77.2961725269005, 34.55750138003111], [-77.29612545775925, 34.557525126361114], [-77.29593640605482, 34.557624174364335], [-77.29588123632536, 34.557654614916586], [-77.2957808335921, 34.557702963075506], [-77.2955388929528, 34.55782901840605], [-77.29536541408265, 34.55790025321616], [-77.29534068323665, 34.55790828768028], [-77.29526950996176, 34.5579425762036], [-77.29514210589849, 34.5580030819656], [-77.29510838208583, 34.55802350043246], [-77.29505302697982, 34.558052163763925], [-77.29485550639404, 34.55814877237836], [-77.29474461585713, 34.558206786100925], [-77.29460966853752, 34.55827747297411], [-77.29435733236376, 34.55839068156522], [-77.29434747835037, 34.55839550695366], [-77.29434442519687, 34.55839671941869], [-77.2943324712317, 34.55840031949464], [-77.29404491699984, 34.55849927208435], [-77.29395125554757, 34.55854550106781], [-77.29377784641784, 34.558617627883926], [-77.29375293318708, 34.558629386566345], [-77.2936805012811, 34.55866092207823], [-77.29355455374257, 34.55871566578586], [-77.293508902925, 34.558735070979964], [-77.29342266101122, 34.5587756134191], [-77.29325033815454, 34.55885757036979], [-77.29315748085, 34.55890143146685], [-77.29286266405276, 34.559037711709756], [-77.29276046123802, 34.55908486925372], [-77.29273237485545, 34.55910216259416], [-77.29269209016998, 34.55912519434763], [-77.2924965382039, 34.5592357347539], [-77.29236261484206, 34.559303135210826], [-77.29223815092737, 34.55935832011936], [-77.29198057826949, 34.55947203702698], [-77.29197105305732, 34.559476661546014], [-77.2919657319887, 34.55948063942835], [-77.29194697657273, 34.559488433156076], [-77.29171484782421, 34.55960030968404], [-77.29156870629555, 34.55966409704645], [-77.29144518874921, 34.5597174028682], [-77.29119365856432, 34.55982968843219], [-77.29117874413116, 34.559836062055474], [-77.29117184741055, 34.55984043941169], [-77.29114766435475, 34.55985120108083], [-77.29077454636972, 34.560035359834785], [-77.29066676279575, 34.56008356628875], [-77.29048181756102, 34.56017656804101], [-77.29041473793166, 34.56020925069892], [-77.29037723874629, 34.56023047629423], [-77.29031054327167, 34.56026595926551], [-77.29005260825491, 34.56041198076669], [-77.28996596136571, 34.5604529344637], [-77.28989032048628, 34.560489881826875], [-77.28963065245398, 34.56062496481359], [-77.28955499597411, 34.56066214377991], [-77.28948920372932, 34.560692743493846], [-77.28917498750025, 34.56081731388261], [-77.28914947155276, 34.560827949701206], [-77.28914502453217, 34.56082936732482], [-77.28913754309853, 34.56083236386164], [-77.28873466881842, 34.56101271175405], [-77.28841265729554, 34.56116155925257], [-77.28832426767127, 34.56119789077885], [-77.28817605170019, 34.561249097325195], [-77.28791469597672, 34.56134804894046], [-77.28774260039728, 34.5614215879272], [-77.28766341905225, 34.56145495912894], [-77.28750446556974, 34.56152588342266], [-77.28719402749778, 34.56166421288621], [-77.28709396885455, 34.56171485411933], [-77.28700861721302, 34.561752057149526], [-77.2866836659583, 34.56189558334148], [-77.28664658253189, 34.561911825626794], [-77.28630562382814, 34.56208667078084], [-77.28627276994494, 34.56210119857037], [-77.2862467889031, 34.56211320238488], [-77.2859013431652, 34.562277528473835], [-77.28586498507721, 34.562294750796546], [-77.28586212359068, 34.56229621905635], [-77.2858589337339, 34.562297702334845], [-77.28551013061882, 34.56244659772019], [-77.28545192213576, 34.56247243690598], [-77.28537343086, 34.56250568541683], [-77.28504187571578, 34.56264205662927], [-77.28485557871579, 34.56271112735584], [-77.28483704492857, 34.5627187453573], [-77.28482385232836, 34.56272446446165], [-77.28463196996671, 34.56280568634963], [-77.28440615762531, 34.56292193983029], [-77.2842210275304, 34.56301283469889], [-77.28405285645934, 34.563095677076525], [-77.28381054233701, 34.56320067185378], [-77.28369606946153, 34.56324964162187], [-77.2835099776322, 34.56334377008209], [-77.28339990914677, 34.56339464804768], [-77.28331097211444, 34.563434799435996], [-77.28302236560553, 34.563551579727616], [-77.28298984371558, 34.563564682200855], [-77.28296762081584, 34.563573953056384], [-77.28285080719652, 34.56362156067989], [-77.2826221433845, 34.563715447105395], [-77.28257983177674, 34.56373239495832], [-77.28251726488386, 34.56375801430006], [-77.28216953307867, 34.56391207989201], [-77.2818550560297, 34.56408231849552], [-77.28175840895318, 34.56412635167645], [-77.2816744118152, 34.56418402062438], [-77.28155871862523, 34.564264769005284], [-77.28152251845519, 34.56428992387194], [-77.28150952621849, 34.56429909199032], [-77.28136349814993, 34.56439526703771], [-77.28129997296716, 34.56444130233532], [-77.28114554784443, 34.56456631765211], [-77.2811045733354, 34.56459609922687], [-77.28109091210997, 34.56460952311796], [-77.28107913490025, 34.564628236462895], [-77.28094689137004, 34.56478443697988], [-77.2809076079112, 34.564830790643214], [-77.2807690210017, 34.56495482237073], [-77.28061377199559, 34.56504337690704], [-77.28053895240842, 34.56507879100227], [-77.28044394676036, 34.56514787081114], [-77.2804361322803, 34.56515163689895], [-77.28042068816802, 34.565166696697766], [-77.28034737902789, 34.56523699186915], [-77.28031897456876, 34.56525588720041], [-77.28028733864839, 34.565292433507715], [-77.28021317245836, 34.56536540928634], [-77.28017003908278, 34.56540785028004], [-77.28008635426019, 34.56547328060696], [-77.28007377916201, 34.56548653026785], [-77.28003092201433, 34.56552095161669], [-77.27997604900956, 34.5655639028442], [-77.2799160321958, 34.5656153120739], [-77.27983050704543, 34.56568884924918], [-77.27978902006903, 34.56572614598876], [-77.27966808693718, 34.565821926512584], [-77.27958791143907, 34.56587586898905], [-77.27956666631741, 34.56590378961015], [-77.2795344845321, 34.565942026666484], [-77.27946792340231, 34.56601386573846], [-77.27942503894727, 34.566059594391184], [-77.27936087628292, 34.56612328936893], [-77.27924414383897, 34.56622729339999], [-77.27918262115281, 34.56625761431799], [-77.27903693203062, 34.566333507963485], [-77.279015069195, 34.56635214817695], [-77.2789577486825, 34.566393530838], [-77.27880882069901, 34.56649730167301], [-77.27876473642453, 34.56654779069924], [-77.27865327822305, 34.566639712569916], [-77.27851571814246, 34.5667638937671], [-77.27842800118162, 34.56681578006217], [-77.27826806035665, 34.56692426657898], [-77.27819154546228, 34.56697409266054], [-77.27801772799909, 34.56710806712729], [-77.27792905475752, 34.567189136412814], [-77.27771919283974, 34.56735720394755], [-77.27767489301567, 34.56740483426115], [-77.27763269878967, 34.567422804916866], [-77.27756963567109, 34.56747226134384], [-77.27738714306442, 34.567617892818], [-77.27724385807522, 34.56773415417804], [-77.27712509876173, 34.567832970441884], [-77.2770529145717, 34.56789292161422], [-77.2768897711307, 34.56803546125074], [-77.27688335472817, 34.56804964273748], [-77.27686675271909, 34.56805594151554], [-77.27684214467857, 34.568077724524976], [-77.27675160433147, 34.56815712401724], [-77.27668023048942, 34.568218641212866], [-77.27662634286632, 34.5682651149008], [-77.27652094768807, 34.56835739036616], [-77.27650283990141, 34.56837324409224], [-77.27649365024322, 34.56838128980874], [-77.27646544366777, 34.56840607104402], [-77.27638080274235, 34.568481488223604], [-77.27630997762797, 34.56854652441565], [-77.27617776436921, 34.56866970926255], [-77.27614680378257, 34.568698767900756], [-77.27612972315086, 34.568714799223535], [-77.2760703472286, 34.568770793751106], [-77.27595046403142, 34.56888395953826], [-77.27591629374334, 34.568916321319435], [-77.27585183600462, 34.568975560460785], [-77.27579823220401, 34.56902487750372], [-77.275769293374, 34.56905142036773], [-77.27566979163115, 34.5691326178677], [-77.2755791992869, 34.56921094601453], [-77.27546548825238, 34.56930405038961], [-77.27542829989696, 34.56934930790249], [-77.27538814848685, 34.56936962124941], [-77.275314676958, 34.569431937313894], [-77.27519874873214, 34.56952976510024], [-77.27515771568827, 34.56956371145064], [-77.27501085710156, 34.5696912502961], [-77.27492029427899, 34.569780720479294], [-77.274753379713, 34.56993832068862], [-77.27469948649517, 34.5699990348302], [-77.27465062271389, 34.570028050166194], [-77.27454975349863, 34.5701113532658], [-77.27442532814231, 34.57021315637653], [-77.27428061263547, 34.570356157629206], [-77.27420720342954, 34.57043168083092], [-77.27407242495379, 34.5705609099398], [-77.27400297490504, 34.5706512971652], [-77.27392255022241, 34.570694892206966], [-77.27377410518791, 34.570811950553896], [-77.27372756832743, 34.570850074948176], [-77.27370755153106, 34.57086374646585], [-77.27367588871628, 34.570893207234846], [-77.27357995447113, 34.57097155169261], [-77.27353132410452, 34.57100413537734], [-77.27343741187067, 34.57107818209103], [-77.27332968306249, 34.571153396733656], [-77.27329299086657, 34.57118466499654], [-77.27321560993887, 34.57124938558731], [-77.27316434575349, 34.57129238752671], [-77.2731391511591, 34.57131253795857], [-77.27307107270691, 34.57136891141392], [-77.27294933112526, 34.57147231259728], [-77.2729097041337, 34.5715080404341], [-77.27283314927006, 34.57157640362051], [-77.27278850063456, 34.571616347552904], [-77.2727647770695, 34.57163677077682], [-77.27266561378713, 34.5717245221325], [-77.27257848782406, 34.57179968617258], [-77.2725416592528, 34.57183261297537], [-77.27246908811796, 34.57189652549316], [-77.2724189582081, 34.57194080212724], [-77.27239186812044, 34.571962308103146], [-77.27232125968722, 34.57201836171978], [-77.27229451751752, 34.572040025719765], [-77.27228513723608, 34.57204811718584], [-77.27220105119534, 34.57212119770675], [-77.27216464529107, 34.57215647975507], [-77.27209432602407, 34.57222065471261], [-77.27204579610454, 34.57226497139553], [-77.27201914743245, 34.57228801439352], [-77.27193927003685, 34.57235708377942], [-77.27192553447966, 34.57236905637022], [-77.27192019803151, 34.57237293249991], [-77.27183078584832, 34.57244908835466], [-77.27180104317335, 34.57248139990795], [-77.27175417801948, 34.57253181290818], [-77.27170794424354, 34.57259191534605], [-77.27174327913393, 34.572699855405695], [-77.27172227591086, 34.57271087517473], [-77.27153721331777, 34.572735481380974], [-77.27145469561567, 34.57277180032456], [-77.27142598829666, 34.5728054190445], [-77.2713746771417, 34.57285771347608], [-77.27131867698111, 34.572914817114864], [-77.27128209074408, 34.572946888369714], [-77.27120583505527, 34.57301282942864], [-77.27119422636379, 34.57302286788812], [-77.27117151237324, 34.57304197789274], [-77.27109141930815, 34.57310590963085], [-77.27105934889913, 34.573130098880114], [-77.27098327767396, 34.57318806978797], [-77.27091923794083, 34.5732369183942], [-77.27089404458279, 34.57325896985985], [-77.27082366773575, 34.57331315792739], [-77.27069812990997, 34.57341332888915], [-77.27065037800004, 34.57345145021989], [-77.2705437328062, 34.573536461737355], [-77.27051582542927, 34.57355870635949], [-77.27050596859574, 34.57357102632402], [-77.27047062129068, 34.57359461900471], [-77.27037856563348, 34.57366574952921], [-77.2703060237537, 34.573721801872786], [-77.27023609226953, 34.57377238273713], [-77.27020416380563, 34.57379551120658], [-77.27013081072344, 34.573849901625984], [-77.27010322617132, 34.573870040823216], [-77.27009128335959, 34.573878832234016], [-77.27005985332666, 34.57390146072518], [-77.26994610514524, 34.573985252523975], [-77.26990079394778, 34.57401860491644], [-77.26979907549175, 34.574089211242395], [-77.26979607846887, 34.57409129157767], [-77.26976655244775, 34.574153521649286], [-77.26974231483017, 34.57420413788415], [-77.26974233358627, 34.57420489989664], [-77.26974236820139, 34.57420630621671], [-77.26960914125395, 34.57431226207107], [-77.26952935350924, 34.57434545961248], [-77.26943008354483, 34.57440218603163], [-77.26941387835122, 34.57441474447738], [-77.26932038632052, 34.57448821298992], [-77.26927851568485, 34.574521935859515], [-77.26918941910287, 34.57459498717243], [-77.26914766518864, 34.57462948193334], [-77.26912864646668, 34.57464628776304], [-77.26907473587725, 34.574688175086834], [-77.26901269713771, 34.574736704161076], [-77.26893227439253, 34.574800243194275], [-77.26887750976684, 34.57484390901485], [-77.26875691328618, 34.57494073053781], [-77.2687438584767, 34.5749512345812], [-77.26873893613315, 34.57495689719122], [-77.2687229128416, 34.5749671891368], [-77.26859503549744, 34.57505736709545], [-77.26853306952371, 34.5751024093381], [-77.26845073897907, 34.575163855417934], [-77.26838882905973, 34.57521112207141], [-77.26833370865953, 34.57525370780023], [-77.26826298576944, 34.575309481178444], [-77.26819414454052, 34.57537934754683], [-77.26813825880173, 34.57540848482457], [-77.268034148818, 34.575495774665015], [-77.26794848180694, 34.575568307429656], [-77.26790774411276, 34.57559249575323], [-77.26786502774678, 34.5756422763422], [-77.26776254556185, 34.575731546195016], [-77.26766489716603, 34.57580906807311], [-77.26742801538381, 34.575989699346536], [-77.26740268702846, 34.57602411760732], [-77.26736945003552, 34.57603914999426], [-77.26732414770281, 34.57606632957629], [-77.26715776913827, 34.576179493536976], [-77.26708822074102, 34.57623505746564], [-77.266987318289, 34.57631567081518], [-77.26696398292066, 34.57633575237256], [-77.26695621493784, 34.57634251096905], [-77.26694120686915, 34.576355773856285], [-77.26683430589976, 34.57645075830838], [-77.26677918498527, 34.57650000530935], [-77.26661115403174, 34.57664277818651], [-77.26658991573463, 34.57666028211857], [-77.26658244041599, 34.57666661996633], [-77.26656858540555, 34.576679070069915], [-77.26646115425707, 34.57677491602276], [-77.26640562026773, 34.57682498271596], [-77.26631120041003, 34.57688095741983], [-77.266203314373, 34.57697366586713], [-77.26613597143883, 34.5770248371651], [-77.26604514771796, 34.57709570266018], [-77.26600649852355, 34.57712723198105], [-77.26590330577923, 34.57720903030328], [-77.26581130060548, 34.57728223742356], [-77.265776789196, 34.57731026594439], [-77.26571665738506, 34.577365619501506], [-77.26565735418973, 34.577418707100186], [-77.26562981790475, 34.577449441187674], [-77.26554854126474, 34.57752798337568], [-77.26544368014888, 34.577612505268064], [-77.26534646418861, 34.57768799922333], [-77.26529971818269, 34.577744082427024], [-77.26524904051873, 34.57776800834431], [-77.26517283376977, 34.57781998803577], [-77.26504977445131, 34.57791939711396], [-77.2650039370343, 34.57795648775449], [-77.26492683884099, 34.57802889323599], [-77.26488640416497, 34.578065078007896], [-77.26487152052633, 34.57808947405552], [-77.26477112551447, 34.57817384524712], [-77.26467429758327, 34.57824268066659], [-77.26447768931662, 34.57838084373228], [-77.2644707072409, 34.57838588506263], [-77.26446872799669, 34.578388464336896], [-77.26446213673587, 34.57839182564473], [-77.2642758059187, 34.578545496715876], [-77.26421546687652, 34.578601477549306], [-77.26405622334141, 34.578722421429084], [-77.26396768101705, 34.57881765615771], [-77.2638899218917, 34.57885952724874], [-77.26372864148082, 34.57900871084753], [-77.26370885319415, 34.5790271031313], [-77.26370218531576, 34.579032441478326], [-77.2636961699361, 34.57904099421422], [-77.26354010862167, 34.579205640263254], [-77.26349439508715, 34.579251765358755], [-77.26341159348176, 34.57933129361592], [-77.26329861060344, 34.57947203348809], [-77.26317581370611, 34.579538875058276], [-77.26300859612434, 34.579665947644955], [-77.26298622265674, 34.579683129018925], [-77.26297971030243, 34.57969308074516], [-77.26295391774124, 34.57970707480934], [-77.26276890042888, 34.57983420663614], [-77.26269875508189, 34.57989618404979], [-77.26257514436014, 34.579990500896116], [-77.26253807029775, 34.58002589172604], [-77.26244880339317, 34.580112190185616], [-77.26239934516117, 34.580162766103896], [-77.26223335595091, 34.58032372885032], [-77.2622271365524, 34.58033042105999], [-77.26222279751997, 34.58033436616988], [-77.26221078440769, 34.58034295984274], [-77.26207415141178, 34.58043622019908], [-77.2620206602569, 34.580483207039265], [-77.26195305474063, 34.58054452786057], [-77.26183559294093, 34.5806472304543], [-77.26182077699538, 34.58066196412434], [-77.26171813152826, 34.5807617152599], [-77.2616523012926, 34.580812833427224], [-77.26148648170657, 34.58094159421549], [-77.26145514511487, 34.580966105697186], [-77.26144353490989, 34.58097578087189], [-77.26141902977858, 34.580996139977394], [-77.26131386860504, 34.58108341396738], [-77.26126368099597, 34.581124440789594], [-77.26118137990181, 34.58119082477994], [-77.26107095871453, 34.58128165730727], [-77.26099331256003, 34.58133929087887], [-77.26090601946939, 34.58140482953135], [-77.26087318422381, 34.58143438064661], [-77.26076509947988, 34.58153443109711], [-77.26069185959591, 34.581601735095326], [-77.26066204647103, 34.58162130327183], [-77.26059770281739, 34.58167116315734], [-77.26049257220332, 34.581753113578], [-77.26037811121644, 34.58183463224589], [-77.26008817333647, 34.58203936853689], [-77.26008091682563, 34.582044237521735], [-77.26007614095857, 34.58204654186548], [-77.26006984834973, 34.58205256118236], [-77.25978966397705, 34.582259669736246], [-77.25967787955891, 34.5823430277995], [-77.25960396650626, 34.58241074573611], [-77.25953551765136, 34.582475341484724], [-77.25949840587077, 34.58251203074595], [-77.25934008814234, 34.58268494124811], [-77.25933202187528, 34.582692676456816], [-77.25933150020934, 34.582694957475056], [-77.25932857162441, 34.58269758868813], [-77.25910301586116, 34.58291264770199], [-77.2589583267804, 34.5830175674195], [-77.25895362889763, 34.58302171128145], [-77.25883702371974, 34.58312738621323], [-77.25877205285684, 34.583180523599594], [-77.25860242853673, 34.5833098799287], [-77.25857261814699, 34.583331774690215], [-77.25855834081483, 34.583341125468436], [-77.25851940661443, 34.58336803158362], [-77.25825547894502, 34.583552961268715], [-77.25819896953257, 34.58365670975326], [-77.25801699173046, 34.583769863039706], [-77.25797442209426, 34.58378562598984], [-77.257919489372, 34.58382663650694], [-77.25776738537263, 34.58393011672287], [-77.25769922381416, 34.583980524747645], [-77.2575941860783, 34.58408192572436], [-77.25746669009756, 34.58419789421403], [-77.25739880153489, 34.58425955992609], [-77.25725394757782, 34.584393042841505], [-77.25724322879815, 34.584415977530696], [-77.25721809197371, 34.58442746838201], [-77.25717682645971, 34.584461415253735], [-77.25702681627843, 34.58458597918528], [-77.25696812143245, 34.584629995440835], [-77.25683891735348, 34.58473216551487], [-77.2568325559346, 34.58473716088858], [-77.25683040524463, 34.58473992287], [-77.25670379374961, 34.58484486142605], [-77.2566307681179, 34.58489099734336], [-77.25647925585402, 34.58500704621787], [-77.25641176903414, 34.58505754700858], [-77.25624490799191, 34.585205078454905], [-77.25613456162463, 34.58527139784388], [-77.25600576173825, 34.58541156177186], [-77.25593228551931, 34.58549114731366], [-77.25587143134791, 34.58553017591785], [-77.25573305726974, 34.58564876225515], [-77.25566596536463, 34.58570585491351], [-77.25549464035231, 34.58585232657363], [-77.25541056812116, 34.58592142173249], [-77.25523081659065, 34.58606915097553], [-77.25517918179705, 34.58613887846906], [-77.25511415669963, 34.58617119467153], [-77.25500545756452, 34.5862536942172], [-77.25487541229813, 34.58635063670561], [-77.25471250622508, 34.586471236782444], [-77.25458329822177, 34.586563311851286], [-77.25450954292076, 34.586619356948304], [-77.25433929067404, 34.58673719393803], [-77.25430166912838, 34.58676310952978], [-77.25424763492012, 34.5868047037311], [-77.25401134936786, 34.5869896273864], [-77.25390852648003, 34.58707072178259], [-77.25376479422094, 34.58720588798536], [-77.25360417338592, 34.58735693579855], [-77.25355158691173, 34.58741053751296], [-77.25353796714819, 34.5874237014698], [-77.25350576345996, 34.587449888808244], [-77.25327680036855, 34.58763881077357], [-77.25317574107345, 34.58773353773369], [-77.25302916944187, 34.58785498506873], [-77.25279134425129, 34.58804893402904], [-77.25276630007772, 34.588069960217446], [-77.25272512658378, 34.588109579966044], [-77.2526336420081, 34.588295186529216], [-77.25244717115928, 34.588400109584114], [-77.25208422388425, 34.58869458458352], [-77.25206193898964, 34.588714766001125], [-77.2520549056225, 34.588720961563055], [-77.2520381298955, 34.58873420222518], [-77.25168433637273, 34.58903620972897], [-77.2515457862412, 34.58915221588041], [-77.2514841328036, 34.58918679036949], [-77.25132750360999, 34.58935693556497], [-77.25131777759769, 34.58936747887418], [-77.25131556017179, 34.58936975887519], [-77.25131169860835, 34.58937358142781], [-77.25121734283306, 34.58959769633201], [-77.25101781443286, 34.589757985140665], [-77.25064255455119, 34.5899915044034], [-77.25060121533357, 34.59002052181396], [-77.25058547797234, 34.59003074881566], [-77.2505544143039, 34.59005160336667], [-77.25017453124144, 34.59032253928479], [-77.25004059526532, 34.59044771527266], [-77.2497737975128, 34.590623415869516], [-77.24973070145195, 34.5906589821056], [-77.24963976899778, 34.5907343295553], [-77.2494758149501, 34.59087458020948], [-77.24938893938142, 34.59093841517587], [-77.2492420460664, 34.59106692583893], [-77.24922897213973, 34.591090811626785], [-77.24916545013245, 34.591130212408665], [-77.24900766829121, 34.59125660641932], [-77.24895123230661, 34.591304608905645], [-77.2488331912184, 34.59140368658592], [-77.24870652208608, 34.59152100741012], [-77.24862455161056, 34.59157315775338], [-77.24846285270101, 34.59172602638005], [-77.24846014898453, 34.591737274727365], [-77.24843017618419, 34.59175008294757], [-77.2482279763268, 34.59187773866239], [-77.24814287654107, 34.591947956662935], [-77.24787552607847, 34.5921295947891], [-77.24784494035794, 34.59216016136915], [-77.24781750285146, 34.59216995872881], [-77.24778101314892, 34.59219979076922], [-77.24755628626498, 34.59237309652292], [-77.24750593601021, 34.59255015893352], [-77.24744686235834, 34.59260015033055], [-77.24712464455982, 34.59277808105789], [-77.2470738718123, 34.59280644117631], [-77.24706130735578, 34.592812000170866], [-77.24703638599128, 34.5928380940627], [-77.24686348617789, 34.593025540987455], [-77.24679118245368, 34.59322906738938], [-77.24676866992492, 34.59325374528229], [-77.24630602818449, 34.59344817901005], [-77.24630109946236, 34.59345047852041], [-77.24629794704322, 34.59345233484987], [-77.24628649791646, 34.59345922535024], [-77.24595151408998, 34.59366071504931], [-77.24588242387631, 34.59373540900448], [-77.2456665411391, 34.593873936450386], [-77.24549035111852, 34.59404400519965], [-77.24541953646806, 34.594151144919145], [-77.24527259612977, 34.59431424673903], [-77.24518297932431, 34.594427947308944], [-77.24481460707051, 34.5947289344141], [-77.24479876023908, 34.59474353299311], [-77.2447915490827, 34.59474769268967], [-77.24478870638673, 34.59475466654637], [-77.24457542084654, 34.59496633725537], [-77.2444767116523, 34.59511442285017], [-77.24438592343253, 34.59518708006263], [-77.2441833532566, 34.595348645116374], [-77.24414140926618, 34.595403487528586], [-77.24410417969892, 34.59544040770941], [-77.24389398950282, 34.595619665062344], [-77.2436931449399, 34.59573214385702], [-77.24336933233766, 34.59591842162714], [-77.24318378729515, 34.5960350488629], [-77.24295144012967, 34.59617713649856], [-77.24284623330334, 34.59624412247718], [-77.24282422185748, 34.59627394160804], [-77.24252680239996, 34.59645462286751], [-77.24234547343463, 34.596505446069294], [-77.2421877979701, 34.59683034306964], [-77.24224275710904, 34.59690358727581], [-77.24214881323996, 34.5969878865628], [-77.24210429350076, 34.59712835016609], [-77.24206150373479, 34.59723891117574], [-77.24205374136494, 34.597247902839804], [-77.24205345138557, 34.59726861446928], [-77.2420322772169, 34.597358349742734], [-77.24197149904782, 34.59746237660435], [-77.2419618257071, 34.59747893338463], [-77.24176813556086, 34.59757320678868], [-77.24164105792242, 34.59766683698097], [-77.24140876868914, 34.59764434067317], [-77.2412665675823, 34.59776934942478], [-77.24091261760987, 34.59786036977215], [-77.24088363732159, 34.597974842643296], [-77.2406183689226, 34.59815250285823], [-77.24063388913498, 34.598190832277545], [-77.24055903062882, 34.59820322099903], [-77.24052341767423, 34.598208939977354], [-77.24026351223522, 34.598397313095674], [-77.24014528346169, 34.598492556638995], [-77.24011535630015, 34.598524450452786], [-77.24003072887396, 34.598614639230775], [-77.2398185411657, 34.598819225010644], [-77.23980716011778, 34.59883269154493], [-77.23980297235403, 34.5988454415434], [-77.2397706511545, 34.59886306392611], [-77.23956005928862, 34.599048888288685], [-77.2394219727367, 34.59916391135408], [-77.2390418961578, 34.599469733802174], [-77.2390333233187, 34.59947557802711], [-77.23903101868251, 34.599478534506005], [-77.23902578827568, 34.59948328979785], [-77.23877657977184, 34.59969415155993], [-77.23865936154968, 34.599800311542445], [-77.23854242334257, 34.59991136742919], [-77.23832270307301, 34.60011378867641], [-77.23830611991461, 34.60014347953345], [-77.23827010151535, 34.60016138649965], [-77.23811436763197, 34.60030160320924], [-77.23806408784075, 34.60034500803462], [-77.23792663676866, 34.60046330445855], [-77.2375854175699, 34.60075707838104], [-77.23758817412715, 34.60077883821883], [-77.23755968375922, 34.60079427808056], [-77.23751713594191, 34.60081582113469], [-77.23717477178681, 34.60110927658526], [-77.23705747523674, 34.60120834736458], [-77.23679173105013, 34.60141579633888], [-77.23678575290165, 34.60142062354875], [-77.23678354925337, 34.60142242519182], [-77.23677872829266, 34.601426331509245], [-77.23659128927963, 34.601576338120935], [-77.23651913550772, 34.60163725231403], [-77.23641149195342, 34.60174510010677], [-77.23627500510659, 34.601853678632416], [-77.23606399073948, 34.6020203589878], [-77.23602145356651, 34.60205554302822], [-77.23600710186184, 34.60206823006296], [-77.235967981432, 34.602097093052116], [-77.2358248890853, 34.60220939015843], [-77.23571287375455, 34.60228070484358], [-77.23563853599539, 34.60237232162013], [-77.2354707128175, 34.60249728478992], [-77.23526243637403, 34.60269516748774], [-77.23524064522336, 34.60271481919981], [-77.2351912297877, 34.602755124031646], [-77.23507095198485, 34.602937113466815], [-77.23490806683617, 34.60303734592668], [-77.23459769854827, 34.60325076066642], [-77.23449406921515, 34.603326480058854], [-77.23442758611789, 34.603357729214416], [-77.23440451116376, 34.603416875014716], [-77.23400825586496, 34.60379601174327], [-77.23374608903303, 34.60397593537815], [-77.2336026971254, 34.60408426568416], [-77.2334358702476, 34.60422222198163], [-77.23337817597483, 34.60430607151083], [-77.23309538441333, 34.60455219465251], [-77.2330064337615, 34.60463280296523], [-77.23298021824702, 34.60465763757473], [-77.2329274951946, 34.60470427351589], [-77.23262595143768, 34.60495176015623], [-77.2324503397422, 34.60508719621836], [-77.23217447989904, 34.60520756430562], [-77.23185981579691, 34.60547111857038], [-77.23181116585347, 34.60550813250343], [-77.2318009713198, 34.60553272874398], [-77.23172640793246, 34.605590227634124], [-77.23143353961746, 34.60586330064689], [-77.23126909462853, 34.60593672551191], [-77.23114504510583, 34.60610591244384], [-77.23107405248932, 34.606200942243284], [-77.2309140515483, 34.60638007251373], [-77.23064340610821, 34.60647527841395], [-77.23050876611829, 34.606583776973], [-77.23027869062045, 34.606783655095285], [-77.23026412632854, 34.606795314638056], [-77.2302607939374, 34.6067998916294], [-77.23025286217847, 34.606807073064864], [-77.22989826279954, 34.607127287676335], [-77.22974761971233, 34.60723076002055], [-77.22958047730592, 34.60732969583547], [-77.22944669182269, 34.60738301213721], [-77.22900852135979, 34.607626428400884], [-77.22898291407351, 34.60762787759202], [-77.2289778524734, 34.6076413803433], [-77.22896200374507, 34.60765737015555], [-77.22845862799282, 34.608071766783986], [-77.22823014466404, 34.60827311360168], [-77.22821652787962, 34.60828834221437], [-77.22822711297712, 34.60829966024457], [-77.22812490879356, 34.60850822771236], [-77.22812064002176, 34.608516454849486], [-77.22811396491792, 34.6085256708551], [-77.22798634454371, 34.608713690861514], [-77.2279449531769, 34.60873827010261], [-77.22792469638507, 34.60878015712862], [-77.22778168620667, 34.608961064890565], [-77.22767053574944, 34.6090902055703], [-77.2276012182555, 34.60918250309315], [-77.22756561268613, 34.60928185096335], [-77.22754532620291, 34.609307551686], [-77.22740615949549, 34.609402789229094], [-77.227346894851, 34.60945975432004], [-77.22715783560207, 34.60961526430751], [-77.22695234351691, 34.60976621739192], [-77.22686750735588, 34.60983163810447], [-77.22668711193357, 34.609977844839705], [-77.22660129237357, 34.610046307931015], [-77.22656365856912, 34.61007790129861], [-77.22647815974314, 34.61012460459686], [-77.226264362243, 34.61025539570841], [-77.22611938513181, 34.610340130013874], [-77.22599653429039, 34.61046993690326], [-77.22593135216074, 34.6105015867559], [-77.22581673482769, 34.6105978934066], [-77.22574739884095, 34.61066667329585], [-77.22572243909117, 34.61068398307909], [-77.22561821778413, 34.610745047130706], [-77.22552841706788, 34.61080059575309], [-77.22549468760852, 34.61081742436296], [-77.22538236709991, 34.610892821018], [-77.22531490445428, 34.6109393842958], [-77.22523028423792, 34.61099865682163], [-77.22521153360874, 34.61101179077975], [-77.22516897951822, 34.61104417814798], [-77.22511131171521, 34.61108699886051], [-77.22506393244964, 34.611103366082055], [-77.22503550575323, 34.61114669587815], [-77.22492753432071, 34.611252243330505], [-77.22484215346071, 34.61132154013325], [-77.22463716354298, 34.611479376399245], [-77.22456963348587, 34.611535708676755], [-77.2245458330932, 34.611570147348644], [-77.2244562810161, 34.61161865046172], [-77.22426462649383, 34.61174731212362], [-77.22411719035782, 34.61184628883338], [-77.22398250452729, 34.61196072162956], [-77.22392721583188, 34.61200602180451], [-77.2237659807768, 34.61214888432352], [-77.22373486770746, 34.612163643131765], [-77.22373139692515, 34.61217657915038], [-77.22372214421942, 34.61218899273544], [-77.22349713514498, 34.612393765969976], [-77.22336667047934, 34.61249356624306], [-77.22335775494449, 34.61250060296097], [-77.22333539972692, 34.61251732778589], [-77.22321556963348, 34.61260721812153], [-77.22316658616927, 34.61264430567794], [-77.22305054777385, 34.61272870919588], [-77.22294641878258, 34.61277717722591], [-77.22292234205169, 34.61281974906101], [-77.22282559082632, 34.61289168965542], [-77.2226390073863, 34.61303306045214], [-77.22257108399418, 34.613100752821495], [-77.22238137307356, 34.61324840068052], [-77.22237341703514, 34.613253644685486], [-77.2223547523065, 34.61326974713354], [-77.22217198215809, 34.61340318404889], [-77.22213270050167, 34.61346444783362], [-77.22207484621465, 34.61353984034217], [-77.22208144227798, 34.61369608189539], [-77.22200160784728, 34.61390912010506], [-77.22197641977154, 34.61392347091122], [-77.22176100594623, 34.61402457634503], [-77.22154005836634, 34.61412469807274], [-77.22151653314012, 34.61413506306538], [-77.22148455843875, 34.61415500769308], [-77.22119774429805, 34.61433334998145], [-77.22109098031251, 34.61441396452512], [-77.22099078111677, 34.61455268860153], [-77.22073453243256, 34.61475435234162], [-77.22072622969516, 34.61476748058073], [-77.22071535993734, 34.614783007477], [-77.22056483477178, 34.61499041740628], [-77.22042619253631, 34.61513754449816], [-77.2203581262529, 34.615209775811664], [-77.22024499536496, 34.615326274322356], [-77.22014766892275, 34.61542883801884], [-77.22008650700107, 34.61549284946669], [-77.21993414362733, 34.61564765778653], [-77.2199048548027, 34.61565999555879], [-77.2198698917516, 34.615677260237796], [-77.2196457121252, 34.61575819584784], [-77.21961575651062, 34.61576266552478], [-77.21940598742532, 34.615841629857805], [-77.21938199767204, 34.61585232850675], [-77.2193505931523, 34.61586983574125], [-77.21921317710353, 34.615944243567895], [-77.21916783402246, 34.61599054854103], [-77.21906870372486, 34.61605067443205], [-77.21876488509521, 34.61624716102528], [-77.21876021247101, 34.6162619924956], [-77.21874181583755, 34.61626904414961], [-77.21871889624707, 34.61628424424315], [-77.21854978988392, 34.616426962046845], [-77.21849795945266, 34.6164769617883], [-77.21836644688815, 34.61659260577614], [-77.21826766512704, 34.6166944548791], [-77.21802707959611, 34.616890426858866], [-77.2179944026493, 34.616919127599125], [-77.21796726440954, 34.61693534577293], [-77.21779512042576, 34.617070590726065], [-77.21773780946559, 34.617123969087764], [-77.21761406137219, 34.61723826815198], [-77.217503845303, 34.61734117129997], [-77.21729103581124, 34.617533025547495], [-77.21726500337387, 34.61755798803076], [-77.21724842472234, 34.61757049426703], [-77.21720421534135, 34.61760895269767], [-77.21706107700714, 34.6177325776819], [-77.21701022909464, 34.61777354571869], [-77.21689867804633, 34.617863422246444], [-77.21687702840435, 34.617880865349534], [-77.21686826642568, 34.61788980092793], [-77.21675392124405, 34.61798898193001], [-77.2165559377785, 34.618175262269105], [-77.21651910630732, 34.61823668998826], [-77.2164251168165, 34.61831420494378], [-77.21633862574203, 34.6184048852312], [-77.21631245611017, 34.61842547398791], [-77.21615117559459, 34.61856687927585], [-77.21605979591214, 34.61864119725264], [-77.21581568148926, 34.61881941955637], [-77.2157856061842, 34.61885521939701], [-77.21575342317946, 34.61887053606504], [-77.2157074552768, 34.61889818275938], [-77.21534205693487, 34.61916208064288], [-77.215104278283, 34.619272758245], [-77.21501389984698, 34.61948657433906], [-77.21500255948978, 34.61951757398807], [-77.21478159223886, 34.61971863046639], [-77.21460030175828, 34.61981722596627], [-77.21443772804821, 34.61992714609443], [-77.21438524865584, 34.61995466331236], [-77.2143025272436, 34.620006086691845], [-77.21416438604503, 34.62008693135516], [-77.2141104830977, 34.620136973510796], [-77.21396197294825, 34.6202472510479], [-77.21375732915413, 34.62038231597254], [-77.21363582583928, 34.620489434144694], [-77.21354942082023, 34.620564008732], [-77.21351721765365, 34.62059722000325], [-77.21343001347888, 34.62074865475224], [-77.21340407366701, 34.62078820747419], [-77.21329635753122, 34.62086347130735], [-77.21314374431351, 34.62100332006266], [-77.21302466673083, 34.621045563792464], [-77.21287548058588, 34.621157547688405], [-77.21281602778087, 34.62121310804443], [-77.21279552457526, 34.6212344028589], [-77.21264690906511, 34.621367023038296], [-77.21256805234225, 34.62142919620024], [-77.21240810112084, 34.62156292777443], [-77.21230475925918, 34.62164407368031], [-77.21225748854432, 34.6216781061053], [-77.21212981632094, 34.62179666413333], [-77.21206040819021, 34.62186044769535], [-77.21203250393276, 34.62188702936368], [-77.21202021299895, 34.62201293430573], [-77.21199846002557, 34.622083428406775], [-77.21200141619741, 34.622091469816525], [-77.21201036154676, 34.622115803084384], [-77.21195103595142, 34.622149434453306], [-77.2117444303279, 34.6223068447609], [-77.21153372238851, 34.62234928232679], [-77.21136012437657, 34.6224831643289], [-77.2113250985741, 34.62250938914006], [-77.21114410645649, 34.62266019584431], [-77.21108894769316, 34.622726409656465], [-77.21096804602846, 34.622836015402406], [-77.21086385823259, 34.62294430421137], [-77.2108095568797, 34.62302010942154], [-77.21054392388032, 34.62315470170679], [-77.21040209594591, 34.62331514754579], [-77.21028235380973, 34.62345971064959], [-77.21015665903087, 34.62359546235812], [-77.2100712942084, 34.623678399273246], [-77.2097447315074, 34.62402804266575], [-77.20974485603513, 34.624034282282096], [-77.20971979634842, 34.62405524304247], [-77.20932247360642, 34.62432730076186], [-77.20883573110392, 34.624367869775824], [-77.2087179173908, 34.62436755751158], [-77.20842981606324, 34.6244017002595], [-77.2079772855323, 34.624445541333756], [-77.2077962046701, 34.62452168619745], [-77.20669483908546, 34.62461959927269], [-77.20578325850795, 34.62516432535272], [-77.20393241509595, 34.62479190149185], [-77.20086458482137, 34.625688868027936], [-77.19959731108864, 34.62818833396719], [-77.20300734751149, 34.629629384956246], [-77.20318391688988, 34.62978652216152], [-77.2032343137744, 34.63019254648567], [-77.2040505934093, 34.62971189008062], [-77.20946315997372, 34.62971332697178], [-77.20951838257227, 34.62825869444923], [-77.21044925376762, 34.627960306595696], [-77.21078632163642, 34.62694468395273], [-77.21068208408991, 34.626465200870015], [-77.21052741708408, 34.62630680203367], [-77.21053087425355, 34.62598188373879], [-77.21049903353274, 34.62595007539068], [-77.21053302608325, 34.62577957398501], [-77.21054177385155, 34.625747061094486], [-77.21060386497915, 34.62554354470943], [-77.21059603010677, 34.62551566461217], [-77.2106277474011, 34.62548873255443], [-77.2107352500185, 34.625380575140014], [-77.21097643142029, 34.6251413865841], [-77.21104112368344, 34.62507947278287], [-77.21112025910138, 34.62498314657665], [-77.21127828968108, 34.62475237783397], [-77.21140633506013, 34.62463696640161], [-77.21157175500886, 34.62444700644407], [-77.21178244610289, 34.62419532110657], [-77.21188656757357, 34.62397842352867], [-77.21206803540703, 34.62374652181261], [-77.2124729280851, 34.62337539829232], [-77.21250330570261, 34.62330955050113], [-77.21257467329173, 34.6232755067892], [-77.21267191190356, 34.6232237665667], [-77.21312570200841, 34.62288736373954], [-77.21333932313453, 34.62264070161178], [-77.21352849341753, 34.62244782310981], [-77.2138677715693, 34.622119192119555], [-77.21396697726416, 34.62201110202568], [-77.2140392021543, 34.62194827321018], [-77.21426941740533, 34.621736008682994], [-77.21445550311677, 34.621578333439686], [-77.21471745800194, 34.62123661119479], [-77.21478557375212, 34.62113304443665], [-77.214887155311, 34.62100334781563], [-77.2150309238373, 34.6208579504582], [-77.21528660242194, 34.62070126107236], [-77.21550015565887, 34.620617884248176], [-77.21577730439807, 34.620424977263696], [-77.21590732328978, 34.62032259751288], [-77.21594887222338, 34.620282214570274], [-77.21602988954157, 34.62020870747173], [-77.21627984790022, 34.61999648844921], [-77.21647192801088, 34.61985216725681], [-77.21668343234758, 34.61969801628855], [-77.21672525941568, 34.619636496360584], [-77.21681778299072, 34.619546738866], [-77.21693832390815, 34.61941764352847], [-77.21702778841134, 34.61934684761366], [-77.21719928660781, 34.61920257460776], [-77.21727003617059, 34.61914374530145], [-77.21742341471588, 34.61904129773546], [-77.21755413063903, 34.618994919685136], [-77.21750902574041, 34.61892090352602], [-77.21775957782171, 34.618682842715806], [-77.2178945995127, 34.61855044712421], [-77.21808986416892, 34.61835810341456], [-77.21811625904273, 34.61834264534632], [-77.2181253340188, 34.618323083332434], [-77.21831965107276, 34.61811265347921], [-77.21844399733112, 34.61797669772114], [-77.21866816859313, 34.6177527331521], [-77.21874298604429, 34.61767472430559], [-77.21879602757356, 34.61763236541684], [-77.21893236498084, 34.61752767684933], [-77.21918196388951, 34.61731820171238], [-77.21933760710962, 34.617250320292285], [-77.21945889260348, 34.61708967396653], [-77.21953409228982, 34.617030155869436], [-77.21956124299773, 34.61699811660344], [-77.21965160519142, 34.61694049674068], [-77.21976553727879, 34.61685111325776], [-77.21981114505006, 34.616816353151535], [-77.21996647471944, 34.61670112328146], [-77.22011076760688, 34.616604332245345], [-77.22030819230352, 34.61647695555152], [-77.2204032171166, 34.616432167093116], [-77.22044014687017, 34.61639466058172], [-77.22054323717605, 34.61631679459339], [-77.22077454287495, 34.616105009851864], [-77.22096749541947, 34.61596493827223], [-77.22118100283522, 34.61580911350126], [-77.22126374487479, 34.615752649415924], [-77.22149938765189, 34.61559184379204], [-77.22156915493063, 34.615541082773525], [-77.22159709447364, 34.61552178792342], [-77.22172533089886, 34.61513998494298], [-77.22165538233395, 34.61507652830973], [-77.22165874089904, 34.614919111520194], [-77.22166052474508, 34.614841253528716], [-77.22177578688012, 34.61475375899605], [-77.221815129011, 34.61472949038515], [-77.2219831458547, 34.614631045271445], [-77.22203736487371, 34.61459845459119], [-77.2221281546329, 34.61454947530771], [-77.22240503946165, 34.61451841064586], [-77.2225712328297, 34.614507313698624], [-77.22265506271891, 34.614490503327644], [-77.22286900885484, 34.61434487759779], [-77.2230209470174, 34.61424161851433], [-77.22307967096896, 34.614210760577784], [-77.22318775217335, 34.61412278053615], [-77.22356267640833, 34.61381302367349], [-77.22385237172905, 34.613583202554175], [-77.22410251405907, 34.613384277837625], [-77.22461601628723, 34.61296828282183], [-77.22462738633459, 34.61295771117153], [-77.22463162545097, 34.61295468428234], [-77.22464255614098, 34.61294679731155], [-77.22504555774758, 34.61267224799256], [-77.22522536549434, 34.61253018897372], [-77.22542823356363, 34.61235520689646], [-77.22554607192978, 34.61224147692196], [-77.22569503972204, 34.6120959001332], [-77.22578251110345, 34.61201290197718], [-77.22595778525432, 34.61172011084808], [-77.22598296030444, 34.611647265014675], [-77.22597222816282, 34.61152419397702], [-77.22618691124616, 34.61153210961453], [-77.22671934493843, 34.611234022990715], [-77.22692524378053, 34.61105708161817], [-77.22704483967279, 34.610946115510146], [-77.22691864771366, 34.610920016065585], [-77.22690397010716, 34.610815130170906], [-77.22689860796615, 34.610776811661324], [-77.22703374789427, 34.6106927784346], [-77.22725514699611, 34.61069309816013], [-77.22744678251652, 34.610584392709754], [-77.22753595871681, 34.61053380731131], [-77.22766741777974, 34.61040239578244], [-77.22771135386802, 34.61036959174308], [-77.22782246696723, 34.610287856454924], [-77.22807859682382, 34.61011072304116], [-77.22835960064671, 34.60994938649126], [-77.22850609550682, 34.60983357039735], [-77.22858681020051, 34.60973163643243], [-77.22876879993981, 34.6095664760183], [-77.22881189193808, 34.609513717772266], [-77.22884290972151, 34.609475742046264], [-77.22896066063731, 34.60938605445832], [-77.22928498421508, 34.60921155933911], [-77.22945666654041, 34.60909323406487], [-77.2294798614233, 34.60893309972037], [-77.22955179455948, 34.60879145574886], [-77.22977236045078, 34.60864678457198], [-77.22990414627313, 34.60844745419726], [-77.23005606509112, 34.608197810800974], [-77.23025430189612, 34.60810150236412], [-77.2303756260699, 34.60798734472968], [-77.23058886546991, 34.60783639084091], [-77.23065630532035, 34.607801677134894], [-77.23073909225951, 34.60778034108078], [-77.23079608137016, 34.60770594434123], [-77.23135008854584, 34.60735718534855], [-77.23147664722272, 34.60721656236972], [-77.23151387705988, 34.60713442833676], [-77.23157316750759, 34.60704784395139], [-77.23163086943481, 34.60690797870547], [-77.23199808943733, 34.60652149390802], [-77.23199662398497, 34.60646547498393], [-77.23200456566572, 34.606371305548414], [-77.23215881532423, 34.6064016206025], [-77.23250402806907, 34.606158190093566], [-77.23261468262275, 34.60604287233101], [-77.23282652834655, 34.605844165117915], [-77.23284770987193, 34.60582557528746], [-77.23285531680796, 34.60581325691438], [-77.23316433749596, 34.605614871317634], [-77.2332838576339, 34.60553704965141], [-77.23351947779256, 34.605380014359625], [-77.2337123661564, 34.6052608150364], [-77.23382054498231, 34.60519527279268], [-77.23397966838616, 34.60504533325572], [-77.23410087892128, 34.60494900115033], [-77.23431211492573, 34.604762686947836], [-77.23440760932918, 34.60456443351789], [-77.23485858637666, 34.60440089368587], [-77.23492861828784, 34.60437049256655], [-77.23498444764512, 34.604344355683104], [-77.23537228742643, 34.604107748602274], [-77.23554787622194, 34.60391743278602], [-77.23581896992344, 34.60362235416703], [-77.23594357183629, 34.60347728199228], [-77.23598959922138, 34.60334205324075], [-77.23631316667544, 34.60319364813192], [-77.23643849807505, 34.60308396774822], [-77.23652352139565, 34.60305165913751], [-77.23651607083097, 34.60299412643954], [-77.23676697554431, 34.60271875717666], [-77.23687477637094, 34.60260800219249], [-77.23712146551742, 34.60240020768823], [-77.23713466114584, 34.60238842770529], [-77.23743532056486, 34.602180845557456], [-77.237542041144, 34.60209341064756], [-77.23781255823513, 34.60189779965657], [-77.23795942408616, 34.601807293630266], [-77.23806507518687, 34.601759144047335], [-77.238423459642, 34.601562677664965], [-77.23868094533903, 34.601336345215785], [-77.23906109478713, 34.6009395975], [-77.23910280808343, 34.60089825053774], [-77.23913073555632, 34.60087703978748], [-77.23921440741915, 34.60079450297149], [-77.23956515183963, 34.600463345296646], [-77.23963567895237, 34.60035718539717], [-77.23981928792213, 34.60017475145965], [-77.23997311779601, 34.600024152503885], [-77.24017991588624, 34.59983815589646], [-77.24021012877279, 34.59980715989623], [-77.24026070162324, 34.59975589118504], [-77.24034844826772, 34.599582386590185], [-77.24051604809824, 34.59947977127242], [-77.24063412909088, 34.5993692296917], [-77.24082306984738, 34.59917803971601], [-77.24084275549436, 34.599149998412976], [-77.2408600601227, 34.5991283982424], [-77.24093425092008, 34.59906299728941], [-77.241196027317, 34.59876987024799], [-77.24143944067461, 34.598725676743996], [-77.24212505268905, 34.598376387208475], [-77.24220226311616, 34.59835019635447], [-77.24222606934634, 34.59831632358601], [-77.24222104220851, 34.59828744010967], [-77.2425475572218, 34.59799996974083], [-77.24275976607652, 34.59788703285296], [-77.24302410443173, 34.59776649847932], [-77.24322785968955, 34.59745257131148], [-77.24362332630133, 34.59708233229439], [-77.24371801619259, 34.597069009970184], [-77.24375685551473, 34.597022907651876], [-77.24382771314146, 34.596951311957646], [-77.24408375089484, 34.59673697241436], [-77.24411286011622, 34.59657961108715], [-77.24424832179663, 34.59642649035476], [-77.24436645743167, 34.59633108060369], [-77.24463533601401, 34.59614943030504], [-77.2447798072553, 34.59604140090095], [-77.24491415448537, 34.59593572522113], [-77.24511765308813, 34.59579596622096], [-77.2451878672062, 34.59574701742492], [-77.24523351758175, 34.595725213708675], [-77.24530108926774, 34.595665039919425], [-77.24551407116714, 34.595511643750186], [-77.24559371597785, 34.5954506679414], [-77.24578617653981, 34.595308105592544], [-77.24580136461778, 34.595298604519414], [-77.24599505922508, 34.595150312247654], [-77.24632981038633, 34.59491257514696], [-77.24638678968577, 34.594873378026065], [-77.24640572331901, 34.5948582490804], [-77.2464668666278, 34.594796188355126], [-77.2467688536997, 34.59452390530334], [-77.24688112485788, 34.59444097314673], [-77.24689029867365, 34.594335373769], [-77.24705979719425, 34.59412535271041], [-77.24719463426246, 34.59399432271401], [-77.24742720107099, 34.593794813994776], [-77.24751879447408, 34.593732709090794], [-77.2477705911631, 34.593568346070576], [-77.24784855759427, 34.59351226739291], [-77.2480424732505, 34.593349031215205], [-77.24823522228974, 34.593198863902465], [-77.2483688126258, 34.59314412022843], [-77.248483419544, 34.59300420446493], [-77.24885152958956, 34.59271079487297], [-77.2489652132874, 34.592533511317775], [-77.2492808547207, 34.59227326340547], [-77.24936440820805, 34.5922312587794], [-77.24950538165879, 34.59212442807018], [-77.24976216571321, 34.59192772803164], [-77.24990069206041, 34.59185073464795], [-77.25014256211718, 34.591648281959706], [-77.25015994967336, 34.59163548023793], [-77.25016650569665, 34.591630053991864], [-77.25040451681694, 34.59141906734249], [-77.25054117537107, 34.59130598970262], [-77.25078371339201, 34.59104084722924], [-77.25084047942467, 34.590982055004574], [-77.25088532919133, 34.59095478426783], [-77.25096648569561, 34.590903289509676], [-77.2512994232619, 34.590665790152855], [-77.25152009214553, 34.59056422691959], [-77.2516774502547, 34.590344717210264], [-77.25168265844917, 34.59033688846004], [-77.2519084443614, 34.59012346234959], [-77.2520282219057, 34.58999940250892], [-77.25213364919125, 34.5899055234228], [-77.25233863068384, 34.589723889309155], [-77.25237810709432, 34.589689099819395], [-77.25239877603599, 34.58967168575015], [-77.25245814893145, 34.58962166229793], [-77.25259130085021, 34.58951427447407], [-77.25266741781306, 34.589476207254876], [-77.2528179884243, 34.58938724976001], [-77.2530499290172, 34.58927065178683], [-77.25325399477708, 34.58911775274099], [-77.25364944630329, 34.58893350989217], [-77.25379194627347, 34.58893893140363], [-77.25384611510214, 34.58886199270131], [-77.2538747387965, 34.58878133912549], [-77.25406797966434, 34.58852714909142], [-77.25409485309183, 34.58841023193266], [-77.25415501085949, 34.588308994373165], [-77.25435767341352, 34.58812751844071], [-77.2545939009641, 34.587978175553054], [-77.25471801129277, 34.58773078193095], [-77.25480686618396, 34.587523597618656], [-77.25502277296948, 34.587404498635166], [-77.25512893932851, 34.58720950987283], [-77.25502619663104, 34.58706952062251], [-77.2551301631974, 34.586842724294904], [-77.25513071001427, 34.58684207720046], [-77.25513479769097, 34.58683991299272], [-77.2554595063305, 34.58663228781145], [-77.25555521443117, 34.58656349391234], [-77.25567866750623, 34.58658931530163], [-77.25594185840771, 34.58653770544125], [-77.25614837369739, 34.5864940715934], [-77.25621144389724, 34.58648988372411], [-77.25637389444128, 34.58637592474668], [-77.25657340631977, 34.58624862465525], [-77.25662958205892, 34.5862045062334], [-77.25681436888777, 34.58601087581046], [-77.25697073294029, 34.5858506554382], [-77.2569948002164, 34.58581044974864], [-77.25706096843712, 34.58575123152636], [-77.25733377419132, 34.585516276083254], [-77.25749332864142, 34.58537834457223], [-77.25759493273156, 34.58530122068179], [-77.25773241220077, 34.58521355907173], [-77.25775588326299, 34.585163337364385], [-77.25783531385325, 34.585093849214715], [-77.25799475985792, 34.58494646628095], [-77.25807608204158, 34.584861953507115], [-77.25824407049447, 34.5847304161417], [-77.25827319829463, 34.58470863733424], [-77.25835233680351, 34.58463731042728], [-77.25846391977652, 34.584549633547624], [-77.25848823463457, 34.58451396053057], [-77.25856741795194, 34.58445227696522], [-77.25883159950487, 34.58421938597442], [-77.25903746685933, 34.58408584035624], [-77.25923260811359, 34.583918783255726], [-77.25926855817261, 34.58386835547057], [-77.25935668594009, 34.58378928837805], [-77.25950949893732, 34.58365164472033], [-77.2595806821957, 34.58357110134088], [-77.25982418438934, 34.5833943228763], [-77.25998702922723, 34.58327524954989], [-77.26003065401716, 34.58322131255653], [-77.26013432493234, 34.583130645650876], [-77.26028003054547, 34.58300526449931], [-77.2603459725702, 34.582937238025096], [-77.26055295618053, 34.582791068444614], [-77.26073697708424, 34.582627743403776], [-77.26078842594308, 34.58257392600812], [-77.26091577096028, 34.58247056796556], [-77.26105359948666, 34.58235911972683], [-77.26111713725777, 34.582308605402616], [-77.26128582915041, 34.58217140177779], [-77.26132187830358, 34.582144557454406], [-77.26151402459507, 34.58200434559798], [-77.26157689040451, 34.58192895075849], [-77.26173007031895, 34.58179817637898], [-77.2618308662284, 34.58171326231577], [-77.26188096649585, 34.581673454385125], [-77.26202176980607, 34.581549785329265], [-77.2620868274368, 34.58149772972234], [-77.26227056670689, 34.58136271637291], [-77.2623230687931, 34.58128064522951], [-77.26243435788328, 34.58116697920098], [-77.2625400680379, 34.58106204681086], [-77.26258111145586, 34.58098166920911], [-77.26274098226321, 34.580842182861076], [-77.26277491359095, 34.58082541434548], [-77.26283523375373, 34.58077489079893], [-77.26298236483551, 34.58068129873239], [-77.26301416216215, 34.58062800328858], [-77.26310514472269, 34.58054832219159], [-77.2632678182965, 34.5804122874932], [-77.26333352059868, 34.58033637366374], [-77.26351780494198, 34.58019628283165], [-77.26353482256755, 34.58018679050014], [-77.26356983734784, 34.5801558620722], [-77.26372284540156, 34.58002539721555], [-77.26380059823828, 34.579982858092144], [-77.26388216752956, 34.579889866005814], [-77.26402992979382, 34.57976522785569], [-77.26408646012368, 34.57969155591476], [-77.2642560092796, 34.5795473416355], [-77.26427951156347, 34.579534636379975], [-77.26432728073866, 34.579491654153045], [-77.26446317781766, 34.579369370017474], [-77.26453058611057, 34.5793332694228], [-77.26458130017609, 34.57926057633759], [-77.264759318588, 34.57911559108828], [-77.26483772347592, 34.5790452536998], [-77.26487778944022, 34.579007074779334], [-77.26494332740592, 34.57894126130415], [-77.26498278113307, 34.57889749808087], [-77.26501046597976, 34.578870273311324], [-77.26510714037555, 34.57878310065858], [-77.26519461949344, 34.57870544191502], [-77.26525111572737, 34.578682933794965], [-77.26528867961942, 34.57862818998812], [-77.26547945851362, 34.5784652238422], [-77.26557745269277, 34.57838869913319], [-77.2657167061736, 34.57824821403385], [-77.26575669414558, 34.578219500496346], [-77.26585715388413, 34.57813352483387], [-77.26595024078978, 34.5780630245409], [-77.26600769591323, 34.57803543025338], [-77.2660199416379, 34.57798684980239], [-77.26608720030204, 34.57792384864215], [-77.26612419283157, 34.57788912227937], [-77.26623375686134, 34.57781753986336], [-77.26632626243536, 34.57774022684505], [-77.26646271192377, 34.57759987688437], [-77.26650044919775, 34.5775665343515], [-77.26661362482848, 34.57747115451979], [-77.26669395052961, 34.57741001961166], [-77.26671827745947, 34.577384306214306], [-77.26678174296087, 34.577334061122656], [-77.26688845258987, 34.57725439523149], [-77.26695920557387, 34.5772045226924], [-77.26699127492823, 34.57718153807846], [-77.2670060973475, 34.57717127144094], [-77.26709173854363, 34.57710658317069], [-77.26714133372766, 34.57706407179057], [-77.26725902904408, 34.576971556770104], [-77.26727492484696, 34.5769567426897], [-77.26728569189899, 34.57695047155821], [-77.26730728414616, 34.576932946764174], [-77.26747845517622, 34.57679330180129], [-77.26758100730962, 34.57674514279494], [-77.26765961968925, 34.57663777995506], [-77.26779720562628, 34.57652647490516], [-77.26786025458046, 34.57647564877293], [-77.2680398952165, 34.576317700717304], [-77.26804696734541, 34.57631309925177], [-77.26804825525419, 34.57631054719043], [-77.26805328961234, 34.57630659407639], [-77.26824791653631, 34.576163211060035], [-77.26837384533658, 34.57610047961944], [-77.2684561088053, 34.5760197648557], [-77.26852829507267, 34.57594493510271], [-77.26859715513575, 34.57588236992303], [-77.26863399006925, 34.57584936215438], [-77.26874729407808, 34.57575228098302], [-77.26882681141223, 34.575692246671636], [-77.26884718376208, 34.57566636066805], [-77.26890522014435, 34.57562001688968], [-77.26901486865599, 34.57553089464943], [-77.26912726833788, 34.57545271385077], [-77.26921398896808, 34.57537938178848], [-77.26933650648604, 34.575274730852655], [-77.2693749760144, 34.57523652135478], [-77.26940405576167, 34.57521981770178], [-77.26946059947882, 34.57517515939237], [-77.26959866492173, 34.57506429360984], [-77.26965136535273, 34.57502258330564], [-77.26977807777072, 34.5749255889534], [-77.26979643068009, 34.57491157722942], [-77.26993016383068, 34.57480883404129], [-77.26998989738165, 34.57475503779891], [-77.27017619784532, 34.574593480442466], [-77.27017713746419, 34.57459296136333], [-77.27017782810866, 34.574592637007974], [-77.27017794622844, 34.574592068016194], [-77.27037606822975, 34.57444128199908], [-77.270484550876, 34.57438108194857], [-77.27059888166325, 34.57431084229397], [-77.27071761723104, 34.57416373646415], [-77.27076493907342, 34.57412992883508], [-77.27085495364238, 34.57405669899994], [-77.27087858930074, 34.57403789365756], [-77.27096601452214, 34.57398015791394], [-77.27103175898695, 34.573952763725146], [-77.27105413588399, 34.57389637516039], [-77.27114919510858, 34.5738144730752], [-77.27123656011338, 34.57373319576737], [-77.27124918245886, 34.57372173411753], [-77.27133688399903, 34.573652797945705], [-77.27142974453164, 34.57357193585549], [-77.27148835009994, 34.57351732087225], [-77.27152823391205, 34.57349437901224], [-77.27160531054196, 34.57343417248724], [-77.2717243502386, 34.573340199274874], [-77.2717896818802, 34.573305339733324], [-77.27184702112987, 34.57323188273639], [-77.27188844120994, 34.57319526918694], [-77.27190852429948, 34.57317539950746], [-77.27201179675004, 34.57308713160567], [-77.27209257067969, 34.573010486542884], [-77.27222680744052, 34.57290587366365], [-77.27226515544757, 34.572871379089236], [-77.27228276648744, 34.57285104276074], [-77.27232867376966, 34.57283706737235], [-77.2725157658339, 34.572729664894375], [-77.27262246789782, 34.57266379626317], [-77.27273777934371, 34.57259851747667], [-77.2728488876355, 34.572489079633904], [-77.2728801827196, 34.57244838510655], [-77.2729086438674, 34.572421883294794], [-77.27299590436365, 34.57235094545763], [-77.27316800707307, 34.57223533979343], [-77.27331906049557, 34.57212969995998], [-77.27346013924515, 34.57202263255516], [-77.27367124866856, 34.57184875880442], [-77.27370904469085, 34.57181934790812], [-77.27372922256173, 34.57180811352657], [-77.27375247419197, 34.5717830870456], [-77.27397479293039, 34.57159174607777], [-77.27406697896492, 34.57148049490405], [-77.27419866975501, 34.571373673633474], [-77.2744218919966, 34.57119763408308], [-77.27446019515313, 34.571173019978225], [-77.27447823049448, 34.57115997677341], [-77.27451024706855, 34.571131719612865], [-77.27473218212569, 34.57094426685096], [-77.27479913610392, 34.57081727958285], [-77.2748952022073, 34.570721410951634], [-77.2751614906798, 34.57052026146046], [-77.27517914141194, 34.570508057426764], [-77.27518488462854, 34.57050316680599], [-77.27548202956325, 34.570296191258], [-77.27559279613982, 34.57020876416215], [-77.27584295122992, 34.57005397612745], [-77.27601749074844, 34.56992928802153], [-77.27608053903234, 34.56987188770905], [-77.27623347541795, 34.56975113454677], [-77.27638985589545, 34.56960327766392], [-77.27654151625632, 34.569505777422066], [-77.27661232841601, 34.569442339620586], [-77.2767628163515, 34.56927779822357], [-77.27691308622953, 34.569129028959985], [-77.2770183879197, 34.56900291178496], [-77.27708113064725, 34.56890372493783], [-77.27737748458335, 34.56868578520171], [-77.27747232342587, 34.56859446236243], [-77.27750263228741, 34.56856962557525], [-77.27759553496175, 34.568505852703765], [-77.27787836115832, 34.56829840204644], [-77.27805140948676, 34.568186272980284], [-77.27810898723446, 34.56814593062429], [-77.27829934936629, 34.56801563802354], [-77.27835394906725, 34.56792950904034], [-77.27849980371641, 34.567799540915345], [-77.27859999499248, 34.56771317240921], [-77.27863650804218, 34.56765832913561], [-77.27878981902796, 34.56755918955129], [-77.27884591326197, 34.56751598025668], [-77.27886849338284, 34.567498599169284], [-77.27892024062649, 34.56745825985253], [-77.27904303122025, 34.567362704959976], [-77.27913699340341, 34.56728402537644], [-77.27935329539287, 34.56711224697453], [-77.27940687678164, 34.56706956004752], [-77.27942096522935, 34.56704165886079], [-77.27949439379447, 34.56699900753217], [-77.27961937150795, 34.566889530370354], [-77.27965915260347, 34.566853711216204], [-77.27973028779289, 34.566787242289266], [-77.27980052922324, 34.56672206388636], [-77.2799171901375, 34.566638314398524], [-77.28013793990249, 34.566450744630444], [-77.28016372857147, 34.56642201425293], [-77.28018507366339, 34.56640689919843], [-77.28024599686213, 34.56634577555231], [-77.28039866148357, 34.566204802101545], [-77.28054213704823, 34.56606729833485], [-77.28063709968374, 34.56598786491399], [-77.2808161172177, 34.56582913538884], [-77.28087633072411, 34.565770989795894], [-77.28090138318271, 34.56572964042449], [-77.28109241400146, 34.56555229578087], [-77.28129127302442, 34.5654192335449], [-77.28138891722159, 34.56533991829168], [-77.28168718636813, 34.56513522400089], [-77.28169492521802, 34.565128286304486], [-77.28170010837766, 34.56512567550145], [-77.28170710700412, 34.5651225047807], [-77.28212699840557, 34.564848173047736], [-77.2823372526285, 34.56470740055905], [-77.2823386211886, 34.56470676154118], [-77.28257214129282, 34.56458690316482], [-77.28277210712662, 34.56450588399798], [-77.2828246983306, 34.56448293239447], [-77.28288894520922, 34.56445162166949], [-77.28306804152605, 34.564370768559115], [-77.28322722405018, 34.56430595720403], [-77.28337975850229, 34.564241589127846], [-77.28348888794362, 34.564195540092626], [-77.28378969885301, 34.56407691172216], [-77.2841961431655, 34.56389224505827], [-77.28419958934619, 34.56389078622715], [-77.28420072283365, 34.56389019850783], [-77.28461028623914, 34.563717620807964], [-77.28489467220231, 34.56360323246941], [-77.28502032277001, 34.56354867560582], [-77.28520956489474, 34.56347720746997], [-77.28543028360612, 34.56338284157018], [-77.28560095325884, 34.563303329679044], [-77.28617225994934, 34.563060587100075], [-77.28625082384842, 34.56302492016733], [-77.28631423277344, 34.562995705249975], [-77.2868547207239, 34.562752047831], [-77.28704703955371, 34.56266655102247], [-77.28707164981604, 34.5626546561932], [-77.28710712447565, 34.56264177583454], [-77.2877631537843, 34.56235578140924], [-77.28789160520972, 34.56232074367307], [-77.28842181629761, 34.562108316042746], [-77.28871194648383, 34.56197027730896], [-77.28902451175703, 34.561807874427664], [-77.28953281794992, 34.56159715276195], [-77.28990901877233, 34.56142614186163], [-77.29035442181464, 34.561192813904356], [-77.29059511215118, 34.561042557509246], [-77.29094251658364, 34.560844913784145], [-77.29106578368756, 34.560774923886186], [-77.29115036554042, 34.560746826617], [-77.29132895078621, 34.56065466671205], [-77.29143420574272, 34.560599631824516], [-77.29154787190714, 34.560543338656274], [-77.29157380131622, 34.56052548531004], [-77.29161077666014, 34.56050428189471], [-77.29194567930554, 34.56032705922178], [-77.29205738430093, 34.560264141492794], [-77.29223489878285, 34.56016997509324], [-77.29230282849937, 34.56013524910536], [-77.2923433808267, 34.56011515963117], [-77.2925677445131, 34.56001584299103], [-77.29274063312248, 34.559922140969064], [-77.29290227677062, 34.559829460992376], [-77.2930449423846, 34.559751387924436], [-77.29313857855414, 34.559699766855374], [-77.29329256917391, 34.55962355850786], [-77.2935242537217, 34.559495454304766], [-77.29353134158622, 34.5594914152568], [-77.2935362597161, 34.559488463792604], [-77.29357732209411, 34.55946262525272], [-77.2937572887817, 34.55935302359367], [-77.29377878414353, 34.55933654693388], [-77.2939345982009, 34.559249299649], [-77.29402341951001, 34.559234208739234], [-77.29422445583472, 34.559214832414526], [-77.29432697386912, 34.559262024961654], [-77.29458271529288, 34.559185338695954], [-77.29479168949524, 34.559111557050514], [-77.29492223453443, 34.559050140933564], [-77.29504980793887, 34.558988837912246], [-77.29512258029705, 34.55882855907802], [-77.29514327391433, 34.55878590401101], [-77.29514383826296, 34.55877355109206], [-77.29516004945178, 34.55874903906156], [-77.29527427343967, 34.55860125564857], [-77.29548845384724, 34.55850085583628], [-77.29552338682157, 34.55848469526918], [-77.2955365027233, 34.55848053932734], [-77.29555825868665, 34.55846930302935], [-77.29592021697529, 34.558308865300525], [-77.2961210653105, 34.5582683867264], [-77.29631602604127, 34.55817615496504], [-77.29647883971558, 34.55809244640717], [-77.29662399000873, 34.55801646221437], [-77.29671306752616, 34.55799124358106], [-77.2969298128849, 34.557894058867575], [-77.29710970697523, 34.557823267950525], [-77.29716902730064, 34.55778505290542], [-77.29728357640218, 34.55773220058093], [-77.29742882989576, 34.55766315314858], [-77.29750705733264, 34.557625130561505], [-77.2977089337628, 34.557551142938664], [-77.29790343595795, 34.5574680487159], [-77.29797588911124, 34.557432727554364], [-77.29814428063105, 34.55736391941052], [-77.29825413940864, 34.55731981415457], [-77.29830009312472, 34.557299105513344], [-77.29843952854394, 34.55723556693431], [-77.2986968154413, 34.55712733153018], [-77.29883519333525, 34.557105947522246], [-77.29909207677258, 34.55701737317563], [-77.2993474491061, 34.55685856547665], [-77.2998618187905, 34.55664311586063], [-77.29988645060834, 34.55663410869812], [-77.29989581271076, 34.556628772649105], [-77.29991508528926, 34.55662024910439], [-77.30028366142483, 34.55644134266916], [-77.3004226088992, 34.556388472314225], [-77.3006805189801, 34.55626347187693], [-77.30096471613032, 34.55615563005392], [-77.30134977607578, 34.55600099907238], [-77.30147325039708, 34.5559492237897], [-77.30152894163575, 34.55593356143406], [-77.30181861540402, 34.555857503914325], [-77.30186836900361, 34.55584490079927], [-77.30213834917424, 34.55573350068346], [-77.3022645063976, 34.5556973067994], [-77.30265988152591, 34.555493279278075], [-77.30266199514928, 34.55549230276248], [-77.3026630049614, 34.555492155052185], [-77.30305936153744, 34.55529240652653], [-77.30315702980877, 34.55523588771245], [-77.3034406192594, 34.55513512695262], [-77.30374542388918, 34.55502558804558], [-77.30385203010306, 34.55498001156009], [-77.30417571872707, 34.55473827678716], [-77.30425254731901, 34.55464606427246], [-77.30431110336968, 34.55455576864665], [-77.30436384476491, 34.55451301673608], [-77.30450267018556, 34.55440062679548], [-77.30465259440317, 34.55433195038222], [-77.30490155164819, 34.55428136803179], [-77.30525438740145, 34.554269879550475], [-77.30544035611878, 34.554227406814135], [-77.30591982263928, 34.55399417741426], [-77.30623457760558, 34.5538481414866], [-77.30633271254476, 34.55380131215721], [-77.30688055042474, 34.553662177418076], [-77.30700676638926, 34.55363273028638], [-77.30702509397025, 34.55362613211613], [-77.30757168402207, 34.553410987849325], [-77.3078183446747, 34.553287591794636], [-77.30802362072977, 34.553134216308514], [-77.30834460160197, 34.55296239891684], [-77.30851006908455, 34.552874253596116], [-77.308614700622, 34.55281659391447], [-77.30899369579079, 34.552612916339584], [-77.3090744983886, 34.55257448339945], [-77.3094095503013, 34.55240933936545], [-77.30952914985298, 34.55237682146036], [-77.30965696595102, 34.55228437764755], [-77.31001247082395, 34.55211533430267], [-77.31020377297354, 34.552028450563284], [-77.31050007445204, 34.551855932828374], [-77.31060156049894, 34.55180907567879], [-77.31075316775002, 34.55173075750959], [-77.31089613960816, 34.551679878668125], [-77.31099763319003, 34.55166268498415], [-77.31112077288381, 34.55166135441111], [-77.311173721847, 34.55157699353285], [-77.3115902629845, 34.55139312962106], [-77.3116769674914, 34.55125992709313], [-77.31179514730906, 34.551140839240084], [-77.3118924253663, 34.55104340944436], [-77.31194642957509, 34.55097642651562], [-77.31217901400026, 34.55070998724408], [-77.31219396237397, 34.55069338508589], [-77.31243005969921, 34.55041736254988], [-77.31250355856497, 34.550347286177995], [-77.31260158581458, 34.55023795114083], [-77.3128422443045, 34.55001535565437], [-77.31290882110795, 34.549858995717486], [-77.3129395153483, 34.54981428907513], [-77.3130064858851, 34.54971453263014], [-77.31306562280804, 34.54962726689833], [-77.31307674704043, 34.54959007211694], [-77.31320893421633, 34.54945281624289], [-77.31321174135076, 34.549449991082746], [-77.31321455042202, 34.549447878684425], [-77.31324764312168, 34.54941947797994], [-77.3133878097385, 34.54930059344358], [-77.31338852959513, 34.54928765258889], [-77.31340930549153, 34.5492796639796], [-77.31358957656019, 34.54913712914437], [-77.31374102916868, 34.54900505975136], [-77.31375700993638, 34.54897023463426], [-77.31380990159678, 34.548939501692175], [-77.31395496920544, 34.548818207557595], [-77.31404557032792, 34.5487165153737], [-77.31409578476553, 34.54863834942779], [-77.3142114427544, 34.54855886250198], [-77.3142838503263, 34.54848150406552], [-77.31436088618571, 34.5484264227117], [-77.31445700176428, 34.548317394783346], [-77.3145754608451, 34.54815079692921], [-77.31461433880148, 34.548120226204425], [-77.31476521348966, 34.547970625592164], [-77.31485940214284, 34.54786520826083], [-77.31492179586172, 34.54779844721159], [-77.31498707332045, 34.54772446744371], [-77.31501698193671, 34.547692209454546], [-77.31507820014623, 34.54762618229518], [-77.31511771507081, 34.547583299657376], [-77.31521841500987, 34.5474733737318], [-77.3152485256769, 34.54746069748382], [-77.31529605291887, 34.54738811626131], [-77.315364862138, 34.54730299381811], [-77.31537538040891, 34.54727404123756], [-77.3154199460131, 34.54725031092317], [-77.31554609500633, 34.54710874623211], [-77.31563846003667, 34.54701888828028], [-77.31570887532959, 34.54693958708714], [-77.31575106200386, 34.54688031067117], [-77.315823007983, 34.546804049926706], [-77.31585952840368, 34.546764521830866], [-77.3158836057056, 34.54673886863704], [-77.31599906395319, 34.54661526285815], [-77.31601572715552, 34.54659748708235], [-77.31601842012772, 34.54659346910294], [-77.31613795301011, 34.54645752649337], [-77.31618173907194, 34.54642457262355], [-77.3162255436201, 34.546380093466965], [-77.31626381411466, 34.54634032687146], [-77.31630522668364, 34.54631109569121], [-77.31636270016072, 34.54626426844076], [-77.31661404733688, 34.546150248383185], [-77.31662360920971, 34.54614698024653], [-77.31662986655144, 34.54614594832426], [-77.31664088366831, 34.54614047917936], [-77.3169183390026, 34.54603800438893], [-77.31702116146711, 34.545935709689715], [-77.3171183690346, 34.545886987235846], [-77.3171380374919, 34.545824259048274], [-77.3171727897881, 34.54572775293945], [-77.31720397600948, 34.545680244126444], [-77.31722367504868, 34.545670281747356], [-77.31725452438604, 34.545665948489514], [-77.31732236599154, 34.54564723131281], [-77.31741520637993, 34.5456588994631], [-77.31742023128923, 34.54565947440614], [-77.31742687163268, 34.545660365540854], [-77.31752180613742, 34.545705131313824], [-77.31776699977775, 34.545706010472465], [-77.3178116368519, 34.545710834912576], [-77.3178752272754, 34.54571836815267], [-77.3180725153277, 34.54577128691204], [-77.31819997516206, 34.54589338879779], [-77.31822566787929, 34.54591284030264], [-77.31832282976595, 34.54606459207732], [-77.31835691278118, 34.5461387986546], [-77.31841637708979, 34.546270695167664], [-77.31845007920909, 34.546370226989275], [-77.31849032190172, 34.54642052650111], [-77.31858033335516, 34.54641736698494], [-77.31874858697144, 34.546466527200074], [-77.31883034674809, 34.546472297890546], [-77.31897169055361, 34.54647096713965], [-77.31906204984368, 34.5464707874621], [-77.31936442435133, 34.546465675637656], [-77.31946725746579, 34.54646891830047], [-77.3196718316594, 34.54649227032334], [-77.31975610149175, 34.54650560423007], [-77.319905161107, 34.54649885727427], [-77.32026692215595, 34.546524859351194], [-77.32054102608144, 34.5465182574768], [-77.32088915514727, 34.54648118049405], [-77.32093449216953, 34.54648159133719], [-77.3209615095465, 34.54648220572377], [-77.32102909113138, 34.54648935188479], [-77.3212459237044, 34.54650842744586], [-77.32132553454176, 34.54654872853102], [-77.32144561727485, 34.54659871562927], [-77.3217166704658, 34.54661188010129], [-77.32174036664199, 34.546617121231705], [-77.32177671614272, 34.546626750693726], [-77.3219777906279, 34.546678876705315], [-77.32207757504631, 34.546705930407626], [-77.32209500008192, 34.546710890723645], [-77.32210650195893, 34.54673095203597], [-77.32216217720003, 34.54678074032793], [-77.32219298428792, 34.54681175473575], [-77.32214583564237, 34.54703439975258], [-77.32214168519364, 34.54706393796763], [-77.32252796258112, 34.54722802943839], [-77.32287700740696, 34.54736181806726], [-77.32298131409675, 34.54736779658044], [-77.32326981093973, 34.54735366076535], [-77.32344835142277, 34.5473658164495], [-77.32360688902659, 34.54737732101268], [-77.32366150312288, 34.547393159551966], [-77.32402240941089, 34.54752814228865], [-77.32402324423045, 34.54754506440109], [-77.32415726496319, 34.54775357693593], [-77.32431711349876, 34.54780543747397], [-77.32443625780465, 34.547842452936095], [-77.32457641005921, 34.5479381609782], [-77.32468729060918, 34.54800810360402], [-77.32482417814666, 34.5480439269174], [-77.32489972949614, 34.548088752704444], [-77.32500864459071, 34.548120862312246], [-77.32506815826522, 34.54820268447037], [-77.32521344359783, 34.548187741897884], [-77.3254088278835, 34.54818514748318], [-77.32560601296862, 34.54818976775132], [-77.32578747567102, 34.548141307604894], [-77.3259988766688, 34.54817915149579], [-77.32635763074303, 34.548192732712465], [-77.32678507851656, 34.54813751129398], [-77.32695735370501, 34.54822179628689], [-77.32709965620042, 34.548309989386745], [-77.32710259372406, 34.54851300254419], [-77.32710538857033, 34.54859246345209], [-77.32715238370848, 34.54879204032574], [-77.32716214555083, 34.54880559113526], [-77.32724247446808, 34.548971411887564], [-77.32740558152469, 34.5490004647991], [-77.32754947162438, 34.54903305373332], [-77.32780222394504, 34.549030705263014], [-77.32794258861814, 34.54901168717126], [-77.32807282757622, 34.548985393734114], [-77.32818141187238, 34.54898524129076], [-77.32833573257523, 34.54898914822383], [-77.32833591535223, 34.54898916013466], [-77.32847674354971, 34.54900319626626], [-77.3286594905006, 34.54902260701464], [-77.32872751557284, 34.54902511887049], [-77.32882792410258, 34.54904085051261], [-77.32899911010128, 34.549090757875916], [-77.32911773381365, 34.5491283999481], [-77.32935523974211, 34.54920987153893], [-77.32939858476017, 34.549271262811125], [-77.32950669176422, 34.54928593461395], [-77.32970719230767, 34.549404097285915], [-77.32979462334279, 34.549454366871736], [-77.32984722178256, 34.54960086787629], [-77.32979315780526, 34.54963655556129], [-77.32967269809538, 34.54976431523755], [-77.32954821136383, 34.54991657826621], [-77.32983118298775, 34.55033830394304], [-77.32983683562419, 34.55036472209512], [-77.32983626110796, 34.550388146368384], [-77.32987293725928, 34.55042079421545], [-77.33062240647335, 34.5507588465015], [-77.33065027139116, 34.55076160101828], [-77.33068241396359, 34.55075271943202], [-77.33074805781276, 34.550723369994074], [-77.33134032505862, 34.55057618651462], [-77.3314441691062, 34.5503893926051], [-77.3315475984756, 34.55018026884313], [-77.33165789564373, 34.550102949221326], [-77.33184495403685, 34.550037943726956], [-77.33216657256143, 34.54998477925855], [-77.33223908554405, 34.54997297847839], [-77.33232286491628, 34.54995536948365], [-77.33263356451828, 34.54989301051945], [-77.33300160705267, 34.54989447028984], [-77.33302624332607, 34.54989058832634], [-77.33303862111386, 34.549896648702784], [-77.33305256435365, 34.54990244981547], [-77.33311686793009, 34.549950580961415], [-77.33330691476701, 34.55011069818114], [-77.33329717496638, 34.55018373670807], [-77.33331898507336, 34.55035377832341], [-77.33337935025688, 34.550604231041035], [-77.33379371983018, 34.550656673386406], [-77.33382950636218, 34.55074640099142], [-77.33387650833488, 34.5507632552004], [-77.33418001392896, 34.550929725123254], [-77.33424157978693, 34.55091737358109], [-77.33446802622422, 34.55085673958061], [-77.33457447040094, 34.55085081783027], [-77.33485352187861, 34.55079598840473], [-77.33496937248503, 34.55075264969884], [-77.33518941050069, 34.55068310709946], [-77.33536365232436, 34.5506812873713], [-77.33562652793967, 34.55067546442592], [-77.33580619446083, 34.55069923437885], [-77.3361469259829, 34.55076664766685], [-77.33650798705696, 34.55087452236424], [-77.33671377757831, 34.55097805847531], [-77.33683517471933, 34.55126380206411], [-77.33679907976683, 34.55132229859236], [-77.33685709581849, 34.55135231587417], [-77.33691834070976, 34.55136419187714], [-77.33701014480239, 34.55147788078142], [-77.33714730310308, 34.55151704182188], [-77.33719058782357, 34.55158272426645], [-77.33730631311168, 34.55156530353993], [-77.33754330902657, 34.551608493560565], [-77.33769735691996, 34.551633798387506], [-77.33778975024882, 34.551612175142836], [-77.33783784484817, 34.551662557232554], [-77.33808656536343, 34.55178162625762], [-77.3382753412927, 34.5517275317783], [-77.33847957696594, 34.55176513472721], [-77.33872098263112, 34.5516849208731], [-77.33871998109123, 34.55153569772422], [-77.33875306826896, 34.55145213774], [-77.33883059024517, 34.5513973819217], [-77.3388809477047, 34.55138727091754], [-77.33889006740878, 34.55138882826232], [-77.33899749940292, 34.551422602960336], [-77.33907669322446, 34.55141184838975], [-77.33908776254925, 34.55141465838168], [-77.33910563805205, 34.55141903023915], [-77.3391254707798, 34.55142486012629], [-77.33914048558206, 34.55143511069189], [-77.33917350111206, 34.55147017939199], [-77.33917420713439, 34.55147037328279], [-77.33921762240071, 34.55149742964649], [-77.33927023603493, 34.55153167094505], [-77.339379177109, 34.551563303766926], [-77.33939440795695, 34.55160503858421], [-77.33946054018921, 34.55167401098921], [-77.33947268443411, 34.55178716417642], [-77.3397218829925, 34.551881241976545], [-77.339857959163, 34.551978400679175], [-77.33996397824448, 34.55228992767664], [-77.33995857490186, 34.55233683676279], [-77.33999266402643, 34.55235918131777], [-77.3400355758041, 34.55239320898269], [-77.34014940624468, 34.552380179622205], [-77.34042675361081, 34.55245614130747], [-77.3405075693975, 34.55245235914711], [-77.34081621269951, 34.55259347026187], [-77.34094562076795, 34.55260367264728], [-77.34141567003468, 34.552499692899445], [-77.34160514958563, 34.552434558865016], [-77.34189663703557, 34.55236694239408], [-77.3423522519984, 34.552482184482365], [-77.34236570113924, 34.5524947917899], [-77.34238906704564, 34.5524928861778], [-77.34241178754124, 34.5524877132516], [-77.34278071028176, 34.552535727445466], [-77.34286667185508, 34.55259850308873], [-77.34317335901908, 34.55253501665146], [-77.34327957510561, 34.55252749020243], [-77.34337025834913, 34.55250974574421], [-77.34345922221318, 34.55251226063614], [-77.3434683838208, 34.55251115629546], [-77.34349784659273, 34.55251949880521], [-77.34356591159202, 34.552538468352296], [-77.34357736206792, 34.55254356097103], [-77.34359467667227, 34.55254828321283], [-77.34381185336615, 34.55260751438444], [-77.34388851617881, 34.55262842269065], [-77.34395565743728, 34.55266357272051], [-77.34404034009417, 34.55267601021244], [-77.34405358008622, 34.5526737815212], [-77.34409612611638, 34.55268647288363], [-77.34415104217433, 34.552703955843306], [-77.3441727177714, 34.55270994801558], [-77.3442094530701, 34.55278942249727], [-77.34434366930812, 34.552863897134316], [-77.3444366497576, 34.55285889398677], [-77.34454077723936, 34.55282959301866], [-77.34467839796841, 34.5528456523751], [-77.34473636695719, 34.55286111370126], [-77.34474860019331, 34.55286424791889], [-77.3447639805107, 34.55286970815298], [-77.34485655133305, 34.55290325561573], [-77.34493090731712, 34.55293814670336], [-77.34495602037117, 34.55294868011718], [-77.34512442700202, 34.55305946201426], [-77.34512746215759, 34.55306033070108], [-77.34513197577277, 34.55306158634341], [-77.3451603933579, 34.55308022259686], [-77.34526632969585, 34.5531966243626], [-77.3453525411643, 34.55327467383047], [-77.3454119755076, 34.553451047384065], [-77.34540778239018, 34.55351154589766], [-77.34550541657529, 34.55356460384333], [-77.34571110054968, 34.55382554727271], [-77.34600159717232, 34.55391575311846], [-77.34615808006467, 34.55397009899846], [-77.34628166314073, 34.55395632147133], [-77.34640650252456, 34.55393503304977], [-77.34667596363916, 34.553884161317775], [-77.34689055502935, 34.553787854214406], [-77.34695979848216, 34.553707512828474], [-77.34707416431307, 34.55364263919148], [-77.34713524573955, 34.553713543609064], [-77.34721555629083, 34.55374109252425], [-77.34727250977747, 34.55385968910665], [-77.34739089423938, 34.554002842298395], [-77.3477783283314, 34.554149759075585], [-77.34780732280285, 34.55417050376116], [-77.34784655013078, 34.55420235818898], [-77.34793201409789, 34.55418062265357], [-77.34834702783016, 34.554244898957975], [-77.34835240194897, 34.55431197678097], [-77.34846537429634, 34.55444016621235], [-77.34850617456995, 34.55453467069323], [-77.34849005035107, 34.554619407388444], [-77.34861818405687, 34.55479518966474], [-77.3488013673772, 34.5548665919614], [-77.34923602174428, 34.55491929030711], [-77.34907231403014, 34.555144318580105], [-77.34915805033502, 34.5554201496409], [-77.34923856289585, 34.555809939316454], [-77.34891976384418, 34.556433721200186], [-77.34857920116009, 34.556704481201166], [-77.34810801731939, 34.55774162864951], [-77.34700146078589, 34.5597600359977], [-77.34672731258436, 34.55985016255342], [-77.3439267426086, 34.56046518843544], [-77.34384952456334, 34.56042520557023], [-77.34378714319976, 34.56050134935405], [-77.3437575195942, 34.56057278103963], [-77.34377568402078, 34.56064957152629], [-77.34384889280962, 34.56131110563059], [-77.34394658092411, 34.56224376620815], [-77.3450063500599, 34.56254118567514], [-77.34542335689949, 34.56318075018815], [-77.34584650019475, 34.5636686417395], [-77.3464001556244, 34.56423372928792], [-77.34699818834815, 34.564611111259076], [-77.34794828956507, 34.564389978614585], [-77.3491776214747, 34.564237338921316], [-77.35014986798463, 34.56454777057941], [-77.35038306886455, 34.56471412461462], [-77.35137461904269, 34.56494949436663], [-77.35248518958475, 34.56523054909927], [-77.35330109425438, 34.56522788032673], [-77.35378442987762, 34.56540185307261], [-77.35444410588588, 34.5653615477663], [-77.35487703511356, 34.565031137531925], [-77.3551808549773, 34.56539420838946], [-77.35531339795331, 34.565702773333086], [-77.35566446656196, 34.56587488794374], [-77.35645092420346, 34.56553903766582], [-77.35645173979734, 34.56553802164283], [-77.35645257422944, 34.56553700290641], [-77.35645340185218, 34.56553778864245], [-77.35645363044893, 34.565538648115655], [-77.35724038331556, 34.565730634014], [-77.35738479200084, 34.56556012966276], [-77.358017013686, 34.56532599384026], [-77.35802852256207, 34.565318862560886], [-77.35803615649729, 34.565319066495945], [-77.35868964974837, 34.56535337316285], [-77.35881637054112, 34.56544098364149], [-77.35929331487522, 34.5654649569159], [-77.35960391886297, 34.566142469298526], [-77.3599643484863, 34.56634292215652], [-77.36103252229802, 34.56641914127975], [-77.36117962351985, 34.566410810195705], [-77.36128404963797, 34.56642890077119], [-77.36155755980297, 34.566502064174955], [-77.36196744585467, 34.56661297537623], [-77.36220614404904, 34.567000343156614], [-77.3623698584249, 34.56723420995448], [-77.36275490155707, 34.567582848979], [-77.36306449604464, 34.567649627925555], [-77.36339419153121, 34.567935818934444], [-77.36354247898589, 34.5683342881041], [-77.36364436803946, 34.568638948867545], [-77.3637848602614, 34.56872867225807], [-77.36417209378604, 34.569351912013616], [-77.36424200249871, 34.56951195262474], [-77.36426545942587, 34.56957795454821], [-77.36380595359823, 34.57127296563722], [-77.36355044828983, 34.5721693943529], [-77.3629204401037, 34.57309869787401], [-77.36347009088905, 34.57394381200734], [-77.36432768728608, 34.57426550797895], [-77.36489071439183, 34.57451320194738], [-77.36562531604497, 34.57470715202192], [-77.36590347407814, 34.574726428781624], [-77.36679019853798, 34.57519535628827], [-77.3680687670589, 34.57511854412861], [-77.36819725896815, 34.57573522370534], [-77.36905489605753, 34.57614928034427], [-77.36957644238352, 34.576672590095036], [-77.3703108697215, 34.57712901231064], [-77.37052722384072, 34.57720914449584], [-77.37063048433015, 34.57728511181371], [-77.37093702771854, 34.57736915778998], [-77.37141839483078, 34.57758234632774], [-77.37152226710413, 34.5776916569579], [-77.37185579555174, 34.57775557815871], [-77.37220630396277, 34.57789837501237], [-77.37272503605931, 34.57792051250703], [-77.37299433173233, 34.57789346310068], [-77.37369763930307, 34.57833934776575], [-77.37371624882003, 34.5784077096849], [-77.37378218159678, 34.57840710809101], [-77.37422539637784, 34.57874100332888], [-77.37424974419577, 34.578259799712555], [-77.37517875818511, 34.57793237942071], [-77.3753585383269, 34.577490793866005], [-77.3756507050559, 34.57667423010634], [-77.37794232220013, 34.576029458449845], [-77.37828333375897, 34.575734856690595], [-77.3785111287942, 34.57571617694472], [-77.37861580010343, 34.5758195812461], [-77.37996344595824, 34.57560485817302], [-77.38008716777182, 34.57559160607606], [-77.38021711575814, 34.57556159091277], [-77.38135213597236, 34.57520274179963], [-77.38166328353323, 34.575136466061515], [-77.381912294125, 34.57518892151792], [-77.38244627939247, 34.575380293117234], [-77.38245121944635, 34.57538676737584], [-77.38278829926682, 34.57581677723598], [-77.3829302524705, 34.576676175667316], [-77.38302420727149, 34.576995241979446], [-77.38304235159643, 34.57720430545782], [-77.38247041507995, 34.57877333198924], [-77.38227241480485, 34.57945938567754], [-77.38223207725166, 34.579656819915996], [-77.3821768931191, 34.579959190457856], [-77.38229005941896, 34.580325208678055], [-77.38233508059332, 34.58049110268907], [-77.38241152712183, 34.580521532922965], [-77.38244998440298, 34.58056744562078], [-77.3828929765206, 34.58078242747825], [-77.38323790975274, 34.581104682559854], [-77.38342427621653, 34.58118322532604], [-77.38385612677443, 34.58130392105799], [-77.38465093861869, 34.58185552219001], [-77.38473733539645, 34.58192550364058], [-77.38481381424859, 34.58206542982736], [-77.38576565026658, 34.58339308121752], [-77.38596048404696, 34.5838273575759], [-77.3860088638401, 34.58464621417234], [-77.38572985893495, 34.58509650790465], [-77.38605966469757, 34.58540413769959], [-77.38638931023877, 34.58540589030301], [-77.38697504729922, 34.585984035357555], [-77.38717728524028, 34.58606622913767], [-77.38778727785672, 34.58649814711818], [-77.38789674555005, 34.58655622825949], [-77.38796529450875, 34.58659596449525], [-77.38813635518088, 34.586632128631784], [-77.38875338627619, 34.5866618898651], [-77.38927776865575, 34.58656738861211], [-77.38954151908624, 34.58645503631501], [-77.3897165424749, 34.58640853149599], [-77.3903296380663, 34.58631814394479], [-77.39070395789761, 34.586077570426205], [-77.39083821821498, 34.5857569597108], [-77.39111787088257, 34.58527721686329], [-77.39176246936515, 34.585230388769475], [-77.39194675577801, 34.58509313437602], [-77.3919845800993, 34.58504374594878], [-77.39269414431305, 34.58439838970499], [-77.39293373771189, 34.58431585816194], [-77.39339245752811, 34.58399154717895], [-77.39380679152868, 34.58343225788662], [-77.39409426116617, 34.58304118053872], [-77.39427044357612, 34.582878380280754], [-77.39489023736232, 34.58274503878013], [-77.39524709263702, 34.58267170336996], [-77.39584661112667, 34.582357130006294], [-77.39613127762365, 34.58220491384107], [-77.39627556986356, 34.581877377557795], [-77.39698026415203, 34.58129888259447], [-77.397422796546, 34.58114521106063], [-77.39765470014186, 34.58107914885473], [-77.39781682306929, 34.581085313884266], [-77.39793202676567, 34.58108969436253], [-77.39821084630422, 34.581082353720575], [-77.39829354283017, 34.58107256416494], [-77.39849781951236, 34.58101684595016], [-77.39860487673295, 34.58090793236749], [-77.39876912549789, 34.5806684805435], [-77.39886350733148, 34.5805089562509], [-77.39899892341829, 34.58026238335914], [-77.39902562805501, 34.58020689734698], [-77.39915354021781, 34.580021843778276], [-77.39918982249274, 34.57997091921597], [-77.39919285856946, 34.579967156908374], [-77.39937583390281, 34.57973179271858], [-77.39938739829849, 34.57972413043611], [-77.39939296055219, 34.57972497437976], [-77.39973569008603, 34.57962460041328], [-77.39978698146724, 34.57957009509519], [-77.40013782312175, 34.579197267879444], [-77.40016062391965, 34.57917201380728], [-77.40036742128683, 34.578963268265774], [-77.40057502464478, 34.57896929478104], [-77.40074242231015, 34.57886582887231], [-77.40133348067579, 34.57863202247626], [-77.40136305335331, 34.57863321980347], [-77.40140466206526, 34.578634719839286], [-77.40145612241227, 34.57858245740834], [-77.40196663650212, 34.57831003658525], [-77.40215107559374, 34.57828229665826], [-77.40278774347782, 34.57822719142256], [-77.40293909334355, 34.57826017455191], [-77.4032294131401, 34.57801369461814], [-77.40341479483573, 34.577963243876724], [-77.40343131479652, 34.57787282514634], [-77.40372710233255, 34.577757722828096], [-77.40404797622213, 34.57770501681944], [-77.4042209172717, 34.57765130544312], [-77.40451511073468, 34.577605095256004], [-77.40470083588674, 34.57746515501334], [-77.4047291091224, 34.577454903344645], [-77.40490911329886, 34.577514179995994], [-77.4052364768328, 34.5772595023083], [-77.40530311217907, 34.5773442729359], [-77.4059759440402, 34.57793011483781], [-77.4059983740122, 34.57802685100241], [-77.40592869244648, 34.57878608800678], [-77.4060958338362, 34.57960613693706], [-77.40687928234243, 34.58015451773884], [-77.40697625705651, 34.58033318359517], [-77.40703033892584, 34.58048812796335], [-77.40735165521085, 34.581468378796465], [-77.40742220453356, 34.58196712068753], [-77.40714361053173, 34.58229202753855], [-77.4071955534685, 34.58335755670508], [-77.40725924560856, 34.58368895642388], [-77.40766758396401, 34.58415278019707], [-77.40778569577961, 34.58433486399748], [-77.40790200265572, 34.584445327725525], [-77.40817003723927, 34.58471443683595], [-77.40828850641276, 34.585058510130814], [-77.40819695699155, 34.58525190543187], [-77.40830870574065, 34.58539421570079], [-77.40831717010379, 34.58593434149438], [-77.40804487489527, 34.5861230162324], [-77.40781023869611, 34.58631043370899], [-77.40730679176161, 34.58707871507323], [-77.40746694950059, 34.587688310269], [-77.40735655645321, 34.588256114834756], [-77.40707528532893, 34.588810444523375], [-77.4070098902061, 34.58896004286953], [-77.40687984849669, 34.58965652983329], [-77.40668958134373, 34.59035938063122], [-77.40669984903916, 34.59056294696428], [-77.40665428332595, 34.59081262968813], [-77.40631860578875, 34.59171145219382], [-77.40536143296497, 34.59245443250484], [-77.4053037426143, 34.592799014448275], [-77.4050723047322, 34.59394506142436], [-77.4049651912683, 34.59420992561759], [-77.40489573860418, 34.5946596121407], [-77.40470717168081, 34.595302616943634], [-77.40398171467281, 34.59605016010565], [-77.40382476542986, 34.59617756409261], [-77.40372753248703, 34.59622972798671], [-77.40299955464593, 34.597105888776326], [-77.40278406707667, 34.597239444838806], [-77.4021511741233, 34.597650295698806], [-77.40190355110784, 34.59778156713685], [-77.4016830084864, 34.59808016224524], [-77.40136297553569, 34.598558933989224], [-77.40123628071849, 34.59885727649759], [-77.40107179724805, 34.599017499656675], [-77.40057476037757, 34.59940712172468], [-77.40026567859884, 34.59964998137259], [-77.39988063648073, 34.60003850352504], [-77.39978653122697, 34.600124956716215], [-77.39929910179592, 34.60044644952029], [-77.3989982922277, 34.60069677744642], [-77.39840887067952, 34.60131416434129], [-77.39745004825572, 34.602056967398], [-77.39742177127862, 34.60207316518086], [-77.39740349569453, 34.60207445614485], [-77.39738108906413, 34.60209737565749], [-77.39615640479654, 34.60260921639068], [-77.39604172708783, 34.603139708927074], [-77.39584519981872, 34.60342999171273], [-77.39542932997887, 34.60362919902653], [-77.39514235595807, 34.60411856760679], [-77.39507920579928, 34.60415171278631], [-77.39505689119181, 34.60416125866528], [-77.39477409196232, 34.60447629444168], [-77.39463872669093, 34.60458991953833], [-77.39426859730692, 34.60452517571789], [-77.39361826346038, 34.60518751007555], [-77.39353763180414, 34.60526093495123], [-77.39348025519577, 34.60536388289855], [-77.39278258817038, 34.60615716022846], [-77.3927474260916, 34.60622204804331], [-77.39269189188457, 34.60626075848293], [-77.39241199778112, 34.60651207353306], [-77.39225200887302, 34.60660900631643], [-77.39219911304728, 34.60666586695317], [-77.39190355130643, 34.606778730489054], [-77.39166653077238, 34.60674266228689], [-77.3915909100903, 34.606665783119084], [-77.39134370733574, 34.60636464085083], [-77.39126655104255, 34.606212863508915], [-77.39111533619626, 34.60610761033906], [-77.39047119305229, 34.60548610762632], [-77.38972669640083, 34.60489950266794], [-77.3889212252004, 34.60398288914768], [-77.38796255259832, 34.60374662992724], [-77.38782543800569, 34.60362306901983], [-77.38754172725737, 34.60351624603554], [-77.38678403895867, 34.603196820981], [-77.38638612028609, 34.603184282435286], [-77.38581868923657, 34.603153372184494], [-77.38546499719189, 34.603109617442556], [-77.38538519321202, 34.60297798385575], [-77.38480968788421, 34.60272825555634], [-77.38443057190855, 34.602674853987764], [-77.38402147192916, 34.602528994825896], [-77.38357266394095, 34.60239010376914], [-77.38333132937981, 34.60231924530303], [-77.38323327006907, 34.6022796254642], [-77.3830359404007, 34.602254883609646], [-77.3821199319788, 34.60210057915868], [-77.38165681988467, 34.602040329794015], [-77.38088743185473, 34.601948261366914], [-77.3808482939709, 34.60195546819423], [-77.38070282835412, 34.60195456774946], [-77.38015203192202, 34.60195670897252], [-77.38008033937028, 34.60195388216271], [-77.37999018955215, 34.60196015032434], [-77.3793049500442, 34.602142094258596], [-77.37929203864125, 34.602147073383094], [-77.37928392299933, 34.60215028975352], [-77.37850375920117, 34.602247261115274], [-77.37789894969258, 34.60255628883563], [-77.3773059784074, 34.602884975605335], [-77.37692704814748, 34.602953061703026], [-77.37641744741418, 34.60342115563034], [-77.37593546995129, 34.60412107534094], [-77.37534985238712, 34.60515947683562], [-77.37514338445555, 34.60530294340203], [-77.37418291465575, 34.60588278770615], [-77.37384551377073, 34.60633902082113], [-77.37377289263655, 34.606380055091876], [-77.37356143287685, 34.6063799397232], [-77.3731450684921, 34.606267097719964], [-77.37287466271044, 34.6063604347111], [-77.37219627109596, 34.60647230235594], [-77.37163720221432, 34.60690416306976], [-77.37087669334454, 34.60733855336351], [-77.3706193358835, 34.60742285796478], [-77.37047836834911, 34.607521293716786], [-77.37032889159872, 34.607694623270014], [-77.36960395899875, 34.608403932804414], [-77.36904218942519, 34.60883708966987], [-77.36845082151709, 34.60902640337642], [-77.36783339402287, 34.60975220106352], [-77.36763123873426, 34.6099602507852], [-77.36749722251557, 34.61149883286845], [-77.36746447434739, 34.61155625757809], [-77.366471208156, 34.612275258643244], [-77.36588714004812, 34.61311067113574], [-77.36576314703072, 34.61331325940432], [-77.36565413991092, 34.61346240973447], [-77.36503325295575, 34.614330875760295], [-77.3643097830026, 34.614582151323845], [-77.36391987480513, 34.61499053195982], [-77.36282202664181, 34.615568313797425], [-77.36276591242202, 34.61561230364859], [-77.3627325486354, 34.61565527941865], [-77.36222439412946, 34.61650344117621], [-77.36273188885508, 34.61712965814342], [-77.3628028804866, 34.617192796743694], [-77.36283309030709, 34.61726493730769], [-77.36342357202746, 34.61813273236461], [-77.3639461272399, 34.61880293551492], [-77.36422910331541, 34.62037621088585], [-77.3627301756762, 34.62097617588442], [-77.36186716325925, 34.62156946795467], [-77.36115303236411, 34.62155357903084], [-77.36015570203918, 34.622120458676626], [-77.35957570862149, 34.622459832476125], [-77.35931553567549, 34.62258568344868], [-77.35814032308498, 34.62303491394426], [-77.3579984836173, 34.62309823494013], [-77.35794597815561, 34.62311941022955], [-77.35697959421846, 34.62380325958782], [-77.35642094569802, 34.62429305631057], [-77.35516317806405, 34.62516145052465], [-77.35498003981205, 34.62533489288458], [-77.35465863878842, 34.62557366743195], [-77.35373377441414, 34.62605578974435], [-77.35335103978194, 34.6264827195219], [-77.35263955782634, 34.62698145912312], [-77.3525480474138, 34.62706739474643], [-77.3523813238841, 34.627233725464066], [-77.35186786357231, 34.627766714580424], [-77.35156457695618, 34.62800291264403], [-77.35114962358296, 34.62843052477357], [-77.35075415882517, 34.62871422404109], [-77.35046090514498, 34.62888177497218], [-77.35038567884338, 34.629051666359814], [-77.34981673961357, 34.62927401490454], [-77.34933027700555, 34.629626640929594], [-77.34905430819487, 34.62978435962437], [-77.34877242351303, 34.63003622717447], [-77.34871438909003, 34.63016008781142], [-77.34839965870611, 34.630312647770225], [-77.34825563776896, 34.63065014636953], [-77.34812032908452, 34.630939855000456], [-77.34803789717994, 34.63120633270897], [-77.34781708774233, 34.63165332842831], [-77.34775917674698, 34.63193707425497], [-77.3474035656017, 34.63278107292009], [-77.347362227293, 34.63290088109784], [-77.34731310546061, 34.6329938710648], [-77.34736821004304, 34.63424086348881], [-77.34690866193567, 34.63473741139747], [-77.34675143330543, 34.635906914240266], [-77.34668413841152, 34.63627104312412], [-77.34589737566957, 34.6380283777775], [-77.34580092601374, 34.63811533421362], [-77.34382322890723, 34.63784730795638], [-77.34332148532513, 34.63795419134715], [-77.34273281053161, 34.63791983875164], [-77.34264690293197, 34.63788021806326], [-77.34205227572406, 34.63801031694847], [-77.34171883372781, 34.63798195218692], [-77.34146021894091, 34.63793361304256], [-77.34140256257757, 34.637963188900805], [-77.34139152353005, 34.638002039518575], [-77.34133935939805, 34.638034043321504], [-77.34087778494246, 34.63853781389714], [-77.34057610579677, 34.638575214160625], [-77.34050153003409, 34.63899304276103], [-77.34052658831028, 34.63978216662841], [-77.3406308167833, 34.63996079889568], [-77.34103734018626, 34.64060748396602], [-77.34119595479672, 34.64075310046915], [-77.34134927743688, 34.64088416823583], [-77.34223119084106, 34.64099964504847], [-77.34346781674076, 34.6412749600639], [-77.34379442440033, 34.64030738716756], [-77.3456951764154, 34.638733368470625], [-77.34605900126279, 34.63883243502842], [-77.34811915206906, 34.64311950304227], [-77.34897563327795, 34.64458156205151], [-77.35067272524998, 34.647249501760854], [-77.35183669511534, 34.649086836526145], [-77.35297011325649, 34.65078501343687], [-77.35331179862257, 34.651210610237754], [-77.35402562843828, 34.652977037524494], [-77.35445247140512, 34.65395742966007], [-77.35578658038823, 34.65549751130747], [-77.35722194426793, 34.65613248051842], [-77.35760707622947, 34.65648634683003], [-77.35809754244761, 34.65683272328475], [-77.35854117578097, 34.65693353506975], [-77.35871279813446, 34.65717646421664], [-77.35928114959663, 34.65776520505235], [-77.35992168360802, 34.65930011783104], [-77.3601944310586, 34.65992066586473], [-77.36019574290866, 34.6605483827907], [-77.36014424641075, 34.660771575017506], [-77.36011195666734, 34.66081183376175], [-77.36008757375005, 34.66082574149439], [-77.36001562266141, 34.66090512341208], [-77.35947185856159, 34.660948562247775], [-77.35933563657412, 34.66142168781124], [-77.35934966197428, 34.66172476085602], [-77.35927523551334, 34.662371474818144], [-77.35925632825919, 34.66258159600413], [-77.35926962044039, 34.66269428032047], [-77.3592320857831, 34.66293954515004], [-77.35907512993106, 34.663450502170946], [-77.35908704297744, 34.663601232310064], [-77.35902589675834, 34.66378620078586], [-77.35898265935745, 34.663950594248725], [-77.35901388118714, 34.66405177443759], [-77.35907131587497, 34.66430008206075], [-77.35907716017655, 34.66442499828553], [-77.35920308194999, 34.66469452989298], [-77.35922695173628, 34.66524094945439], [-77.35926437202298, 34.66537405222629], [-77.35925409844883, 34.66544368017573], [-77.35926057139932, 34.6657099955466], [-77.35926499583127, 34.66586135406021], [-77.3592078057749, 34.66626774864461], [-77.35919848282941, 34.66635787938068], [-77.3592118177568, 34.666504003120366], [-77.3591901131683, 34.66684641650503], [-77.35929621177036, 34.66698811216796], [-77.35943121342788, 34.667300678599496], [-77.35935527647108, 34.66773106784066], [-77.35939246258785, 34.667940643168585], [-77.35939105753909, 34.668280971691885], [-77.35939885441186, 34.66848594753124], [-77.35941256846445, 34.668596704197014], [-77.35951743452655, 34.66875099692214], [-77.35955057700146, 34.668834896255994], [-77.35968162762836, 34.66905667351051], [-77.35965661493682, 34.669219262908285], [-77.35964399119557, 34.66944012351698], [-77.35958832644808, 34.66952272100536], [-77.35979763842447, 34.6696872754381], [-77.35985035324741, 34.66971520616528], [-77.35988778398627, 34.66973503854125], [-77.36026914156031, 34.67010988340465], [-77.36031492783857, 34.670145969701835], [-77.36035846196397, 34.67017525073503], [-77.36056502657706, 34.670256723427805], [-77.36106470242692, 34.670357158886745], [-77.36154681984665, 34.67020448480862], [-77.36182698464143, 34.670383226879174], [-77.36184234238696, 34.67054689302257], [-77.36201654007786, 34.670648029564504], [-77.36213161999869, 34.67082875722199], [-77.36222463775775, 34.67104100902262], [-77.36245276603887, 34.67120702509712], [-77.362670707191, 34.671242071028885], [-77.36292570206903, 34.67128969936259], [-77.36302485751465, 34.6712977819697], [-77.3632198762266, 34.671334000514], [-77.36361102672484, 34.67134001826233], [-77.36414702383908, 34.671526588834524], [-77.36451328451773, 34.671644287392766], [-77.36469159952215, 34.671740782508294], [-77.36560212342201, 34.67230139873293], [-77.3656522404229, 34.672344290252845], [-77.36570493520064, 34.67237333032977], [-77.3659532495957, 34.67248076601236], [-77.36674882291608, 34.672900606102104], [-77.36684020757923, 34.673006557764694], [-77.36700374751597, 34.67308354193864], [-77.3677613723547, 34.67353594447773], [-77.36813994702769, 34.67358276030616], [-77.36876665471436, 34.67381601169463], [-77.36885705094556, 34.67388475988827], [-77.36894195911992, 34.67385373883444], [-77.36978490530885, 34.67389315126681], [-77.37004102558252, 34.673929194991956], [-77.37039508206479, 34.67386546173559], [-77.37209202849391, 34.67369362916689], [-77.37250044691554, 34.67370265873744], [-77.37287730015841, 34.673513032059795], [-77.37342871359222, 34.67345283765479], [-77.37379034054953, 34.673381839843884], [-77.37422846010853, 34.67343434628306], [-77.37456980912219, 34.673362641870945], [-77.37498104925075, 34.673402980394165], [-77.37570603551728, 34.67346768741228], [-77.37613532474809, 34.67354974832676], [-77.37627524432764, 34.673626378529086], [-77.37695360484474, 34.67366514662369], [-77.37728840572447, 34.673700636778186], [-77.3773663950203, 34.67366301051737], [-77.37787047213186, 34.67375702402497], [-77.37830934664062, 34.67363697987313], [-77.37851694106384, 34.67359130230563], [-77.37870957217325, 34.67357720401971], [-77.37949900917211, 34.673509329599824], [-77.37972665066744, 34.67354687042645], [-77.38018556286686, 34.67360908783079], [-77.38039665521717, 34.67360656890479], [-77.38083044236808, 34.67386774130984], [-77.38117467065892, 34.674059352999315], [-77.38072435256794, 34.674931340283365], [-77.38069904974276, 34.675340298501816], [-77.38054155575058, 34.676096037259356], [-77.37961743401442, 34.67693411752088], [-77.37944837529601, 34.6772212072212], [-77.37847367713405, 34.6778680956383], [-77.37815531789911, 34.67819077079988], [-77.37779479348126, 34.67842343292666], [-77.37691274086991, 34.67912345954244], [-77.37658502912188, 34.67935158072], [-77.37542604730322, 34.680122641626056], [-77.37457382083684, 34.680121656899786], [-77.37419242677832, 34.68024913761285], [-77.37304876455556, 34.681025636887185], [-77.3728909284467, 34.68118270913621], [-77.37270124255451, 34.68126358970027], [-77.37221953301986, 34.681480659028026], [-77.37131487700006, 34.68191655106465], [-77.371051583288, 34.68159143017146], [-77.37078476183302, 34.68133688484435], [-77.3704992357571, 34.68122820165675], [-77.37031632125866, 34.68123255657801], [-77.37001032422526, 34.68118226356602], [-77.36976183043708, 34.68108090613207], [-77.36962554443534, 34.68111239141267], [-77.36921342587858, 34.680908277219245], [-77.36899745140195, 34.68080748157073], [-77.36863696263838, 34.68065733239194], [-77.3682749697611, 34.680575244837804], [-77.36815204181698, 34.680440929655774], [-77.36773138008593, 34.68020527434316], [-77.36762258751172, 34.68020300259965], [-77.36722557372556, 34.67999036921757], [-77.36710351284067, 34.67992930488654], [-77.36705625145464, 34.67993657878405], [-77.36698355434797, 34.67990980003529], [-77.36666247274226, 34.67984551044222], [-77.36655055970341, 34.67977238672136], [-77.36629554745703, 34.67980419338429], [-77.36618653620008, 34.67981769492242], [-77.36591278166338, 34.67990783436095], [-77.36566566733879, 34.67988405560413], [-77.36557251915764, 34.679896184568605], [-77.36530325342912, 34.67994590705746], [-77.36501617830382, 34.67993026490666], [-77.36468375047673, 34.68001835167472], [-77.36424487548167, 34.67979877342439], [-77.3641793684907, 34.679786036215525], [-77.36415616218663, 34.67977401728832], [-77.36408295200675, 34.679757500237976], [-77.36353427508314, 34.67985466963181], [-77.36327146593027, 34.67969653221459], [-77.36301976000738, 34.67956529319012], [-77.36296775129486, 34.67953612021291], [-77.3627423726924, 34.67951783923491], [-77.36250586421887, 34.67949747532152], [-77.36245645940996, 34.67944404525485], [-77.36234048180839, 34.67948930548713], [-77.36130227588153, 34.67963559076464], [-77.36121520238204, 34.67959665763769], [-77.36105356962139, 34.67962492205256], [-77.36085942529795, 34.67977654387334], [-77.36063665776838, 34.68014799610658], [-77.36049392457406, 34.680405244776225], [-77.36049435213334, 34.680801473526195], [-77.35943899631062, 34.681592502160875], [-77.35923094652776, 34.68183853348851], [-77.35872343261055, 34.681995831813545], [-77.35870708264622, 34.68201236478145], [-77.35868018574578, 34.68202546623922], [-77.35824888287692, 34.682244406389884], [-77.35798497772224, 34.682477998743686], [-77.35777739680925, 34.68234900194439], [-77.35760958165096, 34.68231590143093], [-77.35740585940775, 34.68241117676553], [-77.35712362582079, 34.68252333757317], [-77.35708670106158, 34.6827317287358], [-77.35657303439538, 34.683218414645026], [-77.35646052691558, 34.683211979711785], [-77.3559371317743, 34.683347194789825], [-77.35590378898989, 34.68335666914549], [-77.35590399960293, 34.683381552235154], [-77.35583336310208, 34.683451175009026], [-77.35560362866742, 34.683728821237274], [-77.35561015661983, 34.68390929291901], [-77.35554974243941, 34.684000176451406], [-77.35555175435753, 34.684062135636346], [-77.35569294260108, 34.68414161593556], [-77.35570428376882, 34.68414935459445], [-77.35574988347653, 34.68413379582253], [-77.35593885673131, 34.68402600821], [-77.35617895127001, 34.68383117514984], [-77.35648988911916, 34.683504859158575], [-77.35674535880982, 34.68346448676212], [-77.35710356023029, 34.68345266883526], [-77.3575961265021, 34.68314914409477], [-77.3577625022406, 34.68308970471155], [-77.35782382662133, 34.683033219264544], [-77.35841145328872, 34.682549766489124], [-77.35852370649624, 34.68248803580853], [-77.35859189238735, 34.68244904990102], [-77.35869518781955, 34.6824309524802], [-77.35913742359651, 34.682393855894816], [-77.35921820730583, 34.682353250771435], [-77.35960609047574, 34.6821710907118], [-77.35988590483012, 34.68185983564817], [-77.3607607874711, 34.68116251754659], [-77.361004195439, 34.68085758565754], [-77.36179940145348, 34.68082978696162], [-77.36204696239287, 34.680855206507985], [-77.36236237255838, 34.68103221772419], [-77.36245401742597, 34.68111429839253], [-77.36255599382164, 34.681163504129046], [-77.36274126501594, 34.68128739429178], [-77.36295894919141, 34.68131395007917], [-77.36313071001825, 34.681245451212895], [-77.36347155277551, 34.68111941712364], [-77.3638131282034, 34.680956228003225], [-77.36397195465614, 34.680935500003734], [-77.36417728718365, 34.68097033851719], [-77.36437801806571, 34.681072032383], [-77.36454418691878, 34.68108210940446], [-77.3646431324007, 34.681206216866244], [-77.36490191984686, 34.68132910251658], [-77.36516091463886, 34.68139578194945], [-77.36544145747938, 34.68153228965617], [-77.36577775095324, 34.681709371491], [-77.36582215135735, 34.68201897702678], [-77.36588529614063, 34.682065322107015], [-77.36626800462881, 34.682120414968345], [-77.36643922305551, 34.6822189341751], [-77.36680301050552, 34.68249700603647], [-77.36727456038265, 34.68279415361232], [-77.36736637010199, 34.682851769165715], [-77.36743945621464, 34.682897121522466], [-77.36792554672652, 34.68320975372386], [-77.36810729891177, 34.68332454855887], [-77.3684724897739, 34.683462294401075], [-77.36853765061883, 34.68352698910008], [-77.3686266655001, 34.68358310252511], [-77.3689572535318, 34.68399243397127], [-77.36914183802625, 34.68424145614888], [-77.36934189700598, 34.68445958047394], [-77.36934133922122, 34.68448522576909], [-77.3693569016519, 34.684539810232835], [-77.36966944581283, 34.68490195056225], [-77.3697243648459, 34.68497883540723], [-77.36980783404377, 34.6850485141767], [-77.37018760704906, 34.68531811942378], [-77.3702680144687, 34.68534878056917], [-77.3703041909776, 34.68540065144903], [-77.37069131369552, 34.685811381254155], [-77.37108153058192, 34.6861700260704], [-77.37122779413312, 34.68634320413677], [-77.37166433071957, 34.68663926735502], [-77.37228143748754, 34.686837527386345], [-77.37250587805714, 34.686949009285684], [-77.37283722715345, 34.68731326536796], [-77.37327758957036, 34.687530083581336], [-77.37348377812806, 34.68778935796006], [-77.3736856606138, 34.688237091218454], [-77.37369825986151, 34.68827943546364], [-77.3737268961564, 34.6887307230957], [-77.37381177123913, 34.68892852740846], [-77.37376997143114, 34.689619224762055], [-77.3737693135692, 34.68969968263874], [-77.37370006595772, 34.68980306965908], [-77.37346881494241, 34.69062860341414], [-77.37344971504388, 34.690718411374], [-77.37345268480473, 34.69078206970215], [-77.37347777639856, 34.69096680248171], [-77.37353153057406, 34.69150989655728], [-77.37409464253257, 34.69245939571714], [-77.37415632138425, 34.69257084672673], [-77.37416281690639, 34.692600937819435], [-77.37402871491031, 34.69319442018265], [-77.37377530448137, 34.69447636068212], [-77.37368080161453, 34.6945858007968], [-77.37368990373373, 34.69465323424657], [-77.37383245223617, 34.6955397412739], [-77.37404385374023, 34.69584668147883], [-77.37414797486385, 34.6964711551543], [-77.3741900956662, 34.696522637925064], [-77.37419808588137, 34.69673757567137], [-77.37435027706093, 34.69718785520327], [-77.37453224397933, 34.697393115609145], [-77.37479309067427, 34.697635488997456], [-77.37500599975348, 34.69807953019066], [-77.37518131723003, 34.6981251474554], [-77.37522603397606, 34.69827252303994], [-77.37524294842586, 34.69858174388847], [-77.37528223627196, 34.69875219266679], [-77.37533097914044, 34.69879847572442], [-77.37534642711796, 34.69896955623396], [-77.37534930827564, 34.69923036708119], [-77.37551420455442, 34.699445963518514], [-77.37552526186266, 34.69969357161941], [-77.37551014733313, 34.699843363927855], [-77.37562348279452, 34.70007807795437], [-77.37565653682513, 34.70012493835103], [-77.37568493323228, 34.70015901479807], [-77.37571394525992, 34.7002752494852], [-77.37600789840738, 34.70060200731349], [-77.37602003925757, 34.70063364119436], [-77.37596955104043, 34.70085097778101], [-77.37599045877444, 34.70087662991398], [-77.37608565187574, 34.70097740556043], [-77.3761868255106, 34.70106480295675], [-77.37621191413488, 34.70114502230648], [-77.3763348919483, 34.701179800020086], [-77.37643117347855, 34.70142098987439], [-77.37648165816806, 34.70146108749504], [-77.37653595196495, 34.701504197407935], [-77.37660770517911, 34.701561186900726], [-77.3766746274251, 34.701613550502145], [-77.3767348960949, 34.70166040536146], [-77.37690382364998, 34.701855268669185], [-77.37701363810027, 34.70192591471933], [-77.37710976086683, 34.70214997115307], [-77.37711406157905, 34.70215705624092], [-77.37711481496744, 34.70215975502049], [-77.3771284697019, 34.702166545811316], [-77.37737188111015, 34.70230539662073], [-77.37747694018856, 34.702349608598965], [-77.37773999303764, 34.702463726669485], [-77.37790700888402, 34.70252430103136], [-77.3782302260852, 34.7027334271184], [-77.37831921494039, 34.70280636029378], [-77.37839943025861, 34.7028904551176], [-77.37865547203589, 34.70303256286064], [-77.37908171051565, 34.70333359031822], [-77.37948960033927, 34.70355206632079], [-77.38031231526034, 34.70447175699637], [-77.38039508600208, 34.70457136398583], [-77.38046587735967, 34.704606439234425], [-77.3805554059816, 34.70464462670358], [-77.38121717145582, 34.70512131750466], [-77.38151764694491, 34.70540057737415], [-77.3815694499954, 34.705471086620825], [-77.38177227104777, 34.705782543898266], [-77.38201140374204, 34.70590845270233], [-77.3822869522707, 34.705980995887245], [-77.38263100516674, 34.7059823955456], [-77.38318804456746, 34.7059583970469], [-77.38328047840872, 34.705953332281595], [-77.38336364449435, 34.70601186819887], [-77.3837969843404, 34.706382796009954], [-77.38418632551507, 34.70656156596561], [-77.38452992130846, 34.70665702719371], [-77.38501159734831, 34.706615500628], [-77.38553634413203, 34.70680673696666], [-77.38616407472372, 34.7070625088064], [-77.38694671063219, 34.707196197061634], [-77.38738888909955, 34.70726005804815], [-77.387632652945, 34.70724268431413], [-77.38797672826158, 34.707154887686286], [-77.38842479485419, 34.70704178079775], [-77.38871594385103, 34.70710496575652], [-77.38952864473632, 34.70735083619843], [-77.38988124903466, 34.70750777552314], [-77.39049552675891, 34.707435803012245], [-77.39059506761402, 34.70746063159521], [-77.39107652173688, 34.70780723650964], [-77.3916366272876, 34.70780576301273], [-77.39171771357502, 34.70780672518292], [-77.39196505623599, 34.70778214792356], [-77.3923379140509, 34.707878619972334], [-77.39254740017661, 34.70779890761288], [-77.3933832999296, 34.708083536298425], [-77.39354340099399, 34.70814286458716], [-77.39372294564845, 34.70822517275319], [-77.39468397683119, 34.708433925068135], [-77.39472773701722, 34.70848009129599], [-77.39481924400168, 34.708521777250795], [-77.39504968275115, 34.70851206399693], [-77.3952227256376, 34.70820932074859], [-77.39545705219415, 34.70809547437116], [-77.39546543382036, 34.70808209653245], [-77.39561677395393, 34.70804504039535], [-77.39607650164152, 34.70825001455256], [-77.39696304472685, 34.708376396554], [-77.39691184945121, 34.70916372455057], [-77.39609176236618, 34.709106605151014], [-77.39564462343066, 34.70974009142889], [-77.39559665098294, 34.70979342113025], [-77.39559593328408, 34.70982153161904], [-77.3955972691211, 34.70983844004291], [-77.39561514577227, 34.709841794894274], [-77.39577805896725, 34.710209386005424], [-77.3957458754097, 34.7104331542508], [-77.39576003340025, 34.710447776252636], [-77.39585155549234, 34.71062506291352], [-77.39592200678865, 34.710774364978036], [-77.39596627075431, 34.710842098531984], [-77.39616508240874, 34.71094067156792], [-77.39613463446246, 34.71112834621201], [-77.39618208387613, 34.71120338924623], [-77.39627192250208, 34.71134244840418], [-77.39639647636983, 34.71149954794281], [-77.3964113420341, 34.71151829798927], [-77.3966459950918, 34.711632816098344], [-77.39666906076397, 34.71173501608847], [-77.39689628070764, 34.71191918618486], [-77.39693822154875, 34.71191225993036], [-77.39696461199769, 34.71194630332035], [-77.39697849543222, 34.71198278565857], [-77.39718470272629, 34.71230086679722], [-77.39739640957576, 34.71254324583347], [-77.39745695008845, 34.71263368583706], [-77.39749390834046, 34.71272228388721], [-77.3974322346453, 34.7127957910293], [-77.39751243298673, 34.71328791196861], [-77.39749365675917, 34.71351102484723], [-77.39748160416241, 34.713556697902234], [-77.39767915510774, 34.71377959508503], [-77.3977687981101, 34.713842638914954], [-77.39784271771401, 34.713962626295164], [-77.39789757899503, 34.71423527160597], [-77.39789146841431, 34.71425925699665], [-77.39791855073318, 34.714339493397524], [-77.39795556191824, 34.71443425938754], [-77.39802123324502, 34.71458423392383], [-77.39804002613667, 34.7146222070162], [-77.39806135319222, 34.71467282904186], [-77.3981152862268, 34.71481399205545], [-77.39814973353259, 34.7149087678109], [-77.39818572317135, 34.71500778780917], [-77.39824085477757, 34.715159472332246], [-77.39828574720255, 34.715235930098295], [-77.39831371747081, 34.715359939793366], [-77.39832710844686, 34.71539516679496], [-77.39840423962465, 34.715556961231556], [-77.39843036553337, 34.71561158749664], [-77.3985753682754, 34.71573798949466], [-77.39856215283142, 34.71589178463992], [-77.39862629328081, 34.71604156849188], [-77.39869048530677, 34.71613632049917], [-77.3986966784399, 34.71621842447434], [-77.39871520588508, 34.716287792408664], [-77.3987568889378, 34.71633179850401], [-77.39877973178288, 34.716496234497356], [-77.39879053699848, 34.71653083493698], [-77.39879262401213, 34.716540062398145], [-77.39879611835285, 34.71656162184303], [-77.39896537732056, 34.716799845197755], [-77.39903202142094, 34.71688658115489], [-77.39905032887623, 34.71693877708543], [-77.39915746535503, 34.71721835646907], [-77.39919649403934, 34.71726433653101], [-77.39922270874331, 34.717301768398556], [-77.39933749203522, 34.71765187886208], [-77.39930424519058, 34.717828851045255], [-77.39934674678233, 34.71797983010273], [-77.39938882678666, 34.718076802529325], [-77.39943587402493, 34.71815447385101], [-77.399451820559, 34.71834365355745], [-77.39948408959921, 34.71845091261039], [-77.3994433899276, 34.718500380264146], [-77.39945483119463, 34.71871294616541], [-77.39951721114183, 34.71891592928452], [-77.39957451233111, 34.71904168651716], [-77.39947845506808, 34.71913548415479], [-77.39928730753599, 34.7192909737069], [-77.39917761010888, 34.71939177220591], [-77.39918497713946, 34.71946454263983], [-77.39895644421269, 34.71959603513873], [-77.3988879790215, 34.71966640064635], [-77.39879858521604, 34.71988849747396], [-77.39863054617211, 34.72017822125713], [-77.39845493449522, 34.72045478359854], [-77.3982746772389, 34.72082348096024], [-77.39793204499117, 34.721096249353124], [-77.39735397054783, 34.721603038465716], [-77.39734622498189, 34.72161693198326], [-77.39732694574913, 34.72163059230574], [-77.39669560722774, 34.722067412590306], [-77.3961164567902, 34.72211890403187], [-77.39588643532959, 34.72217646615706], [-77.39584559888286, 34.72217393462708], [-77.39579029343739, 34.72219083793807], [-77.39514510046837, 34.722522089428786], [-77.39514387909472, 34.72252297394348], [-77.39513962024586, 34.72252609264959], [-77.39466715386536, 34.72291616395051], [-77.39458371616035, 34.72310352915224], [-77.39432468816088, 34.72314046574222], [-77.39410402135763, 34.72327827936347], [-77.3939443353813, 34.72355453759015], [-77.39385118512747, 34.72374896483522], [-77.39318616069434, 34.72423296769719], [-77.39292396911259, 34.72454284200037], [-77.39276856346964, 34.724625020184654], [-77.39260951559186, 34.72463351989411], [-77.39222619222349, 34.724633088498784], [-77.3919712205971, 34.72462360460014], [-77.39185115489845, 34.72462133388558], [-77.39141273110211, 34.724525824656496], [-77.39135670580725, 34.724531667666874], [-77.39124999485071, 34.72451626222263], [-77.39087133407557, 34.72451556011178], [-77.39073191930953, 34.72447515757288], [-77.39056910982373, 34.72443112549319], [-77.39036121283159, 34.72442961226007], [-77.39007467402635, 34.72453059124337], [-77.38996393204908, 34.72452822411803], [-77.38946380231293, 34.72442608820952], [-77.38939986897704, 34.72442801702327], [-77.38913626567678, 34.724671302082434], [-77.38872302375768, 34.72476958490837], [-77.38780122987069, 34.72469207429011], [-77.38747536546018, 34.724649929529846], [-77.38722558402274, 34.72453977951304], [-77.3866626575135, 34.72427397083608], [-77.38634018240693, 34.72414242522161], [-77.38588197589048, 34.72370671417242], [-77.38583900409314, 34.72365968196391], [-77.38577324603588, 34.72366102365259], [-77.38519306777052, 34.72367609794134], [-77.384660906998, 34.72333838656489], [-77.38315175053017, 34.72305928088194], [-77.38282732879433, 34.72299008928358], [-77.38259393257744, 34.7229510562036], [-77.38190121162452, 34.72292201986957], [-77.38155379757463, 34.72295968055245], [-77.38057612322764, 34.722644089824016], [-77.3803819419586, 34.72257874030993], [-77.3801305021233, 34.722533069713734], [-77.37971548018402, 34.722665907853475], [-77.37967521223042, 34.722667277175255], [-77.37941620430819, 34.72259243542818], [-77.3793827665756, 34.722599682238766], [-77.379283988457, 34.72277577537199], [-77.3790122230299, 34.72287990607473], [-77.37893666661789, 34.72295610205209], [-77.37874490272448, 34.72293559382379], [-77.37830741812644, 34.7230992225639], [-77.37805478297344, 34.72301041112557], [-77.37768113659148, 34.723047852694684], [-77.37763709656058, 34.72307561579123], [-77.37763764645632, 34.72310719264549], [-77.37729047617768, 34.72325709431008], [-77.37727513572555, 34.72327652181046], [-77.37730226586292, 34.72354898640235], [-77.3768306403941, 34.723769321705454], [-77.37673642972543, 34.72384780173003], [-77.37650067594396, 34.72380161348665], [-77.37647117380259, 34.723817252201904], [-77.37630848673251, 34.72389622808862], [-77.37613646984259, 34.723951924911354], [-77.37606481425172, 34.72395459942277], [-77.37598076257692, 34.724108630981796], [-77.37561453316992, 34.7240765699815], [-77.37553563430987, 34.72412893893991], [-77.37542257808528, 34.7242024839541], [-77.37537211233156, 34.7242356985612], [-77.3753594678227, 34.724266879811665], [-77.37523747916495, 34.72438972643039], [-77.37523564115293, 34.72450313218907], [-77.37518351591437, 34.72459424464094], [-77.37496335820185, 34.724967015378255], [-77.37487714033382, 34.72529740879099], [-77.37440785228932, 34.7254898350775], [-77.37421819451858, 34.725716518264385], [-77.37375255089427, 34.72553840122119], [-77.37351833409156, 34.72557955255865], [-77.37326968913916, 34.7256618417662], [-77.3730968008962, 34.72558850465194], [-77.37289650775197, 34.72564146329837], [-77.37281766803923, 34.725670877465426], [-77.37274234006628, 34.72570517288723], [-77.37259882376486, 34.72567104516137], [-77.3724226565606, 34.72570198984235], [-77.37237036200301, 34.72568762661321], [-77.37184983441689, 34.725536794144126], [-77.3718307211321, 34.72553217073822], [-77.37120907331806, 34.725627440558405], [-77.37120535374062, 34.7256237323024], [-77.37117679295373, 34.72560906925315], [-77.37052643245778, 34.72589982049498], [-77.37007143700866, 34.7257144162703], [-77.36998747324171, 34.725693621768684], [-77.36984557761467, 34.725706175603484], [-77.3693047896109, 34.72598264991862], [-77.36892555213906, 34.725807727116766], [-77.36875101402717, 34.7258275039883], [-77.36856107974133, 34.72584465359725], [-77.36811709388739, 34.72594849559164], [-77.3679890607246, 34.72597610000646], [-77.36769019935946, 34.726114850383574], [-77.3675612762541, 34.726235309557744], [-77.36734145074723, 34.726238246259115], [-77.36683176115568, 34.72625071146784], [-77.366399961326, 34.72617423884034], [-77.3662386761607, 34.72623098940085], [-77.36610093851152, 34.7262180111776], [-77.3658203747582, 34.726225987731915], [-77.3656355086216, 34.72624599769328], [-77.3654533398156, 34.72628250009127], [-77.36517718674524, 34.72632667315757], [-77.36498119970977, 34.72643718201086], [-77.36485180806935, 34.726387795430114], [-77.364573355837, 34.726397069399624], [-77.36437466210884, 34.72646378589712], [-77.3639479304872, 34.72648407707192], [-77.36380012891847, 34.726380136471526], [-77.3633683880589, 34.72635001925513], [-77.36315270060487, 34.72654758782091], [-77.36251634196908, 34.72679714459373], [-77.36181462399807, 34.72703132483876], [-77.36128726905838, 34.72705909222342], [-77.36062918375939, 34.72698927087417], [-77.36034535222308, 34.726890646663996], [-77.36009644884825, 34.72676164092402], [-77.36000759015678, 34.726756298517536], [-77.35975896439456, 34.72689276695295], [-77.35965357936149, 34.72683156351982], [-77.35960767083469, 34.72684748560764], [-77.35943863163894, 34.72696481569479], [-77.35914760678645, 34.72702374507911], [-77.35907377206787, 34.727012683733264], [-77.35905857601836, 34.727092244489384], [-77.35910806710297, 34.72729362111175], [-77.35885908666751, 34.72746069024869], [-77.35858572217008, 34.72783986871479], [-77.3585732572046, 34.727854443043476], [-77.35831441045008, 34.72825455322239], [-77.35791982997647, 34.728431547919286], [-77.35779036901896, 34.72851664212755], [-77.35760236162909, 34.72847513684671], [-77.35731773432386, 34.728431597690246], [-77.35721805427998, 34.728425289712995], [-77.35710857350232, 34.728395407601084], [-77.35706226685062, 34.72842163567773], [-77.35688248814245, 34.72854976187303], [-77.35677900422792, 34.72858818175527], [-77.35669580121458, 34.728735178728094], [-77.35652043986755, 34.72904499094063], [-77.35651306848109, 34.729112076865135], [-77.35646922925802, 34.72917266549869], [-77.35638922403427, 34.729217276749246], [-77.35616211987724, 34.72932065640595], [-77.3555660985563, 34.729648966508016], [-77.35543893544468, 34.72987701602125], [-77.35521650773768, 34.73026484223865], [-77.3550918760325, 34.73050527814806], [-77.35510314912685, 34.73052954991779], [-77.35508683391518, 34.730608803744666], [-77.35510421563202, 34.730767641236405], [-77.35527514927212, 34.73079144003858], [-77.35515603303953, 34.7312003526295], [-77.35516623574647, 34.731246510714534], [-77.35503738865536, 34.73173347019701], [-77.35503000870563, 34.73175259483734], [-77.3550200719883, 34.73177608976802], [-77.3554185267276, 34.73218664340993], [-77.35515371947096, 34.732461695238015], [-77.35524716370834, 34.73314987574309], [-77.35528301344429, 34.733180013556726], [-77.35519928175673, 34.73331474519975], [-77.35490628967872, 34.73417025442488], [-77.35487499874075, 34.73421078979314], [-77.35419397971663, 34.73471410185655], [-77.35406596673357, 34.73470224599718], [-77.35375757905715, 34.7347183217387], [-77.35358287811876, 34.73475613787495], [-77.35348767171092, 34.73482814419017], [-77.35349961146896, 34.73488696483105], [-77.35342272627224, 34.734975904089374], [-77.3533148691281, 34.735156013234324], [-77.35321408261859, 34.73522399925021], [-77.35313084875172, 34.735281464964544], [-77.35293695805203, 34.73545157445165], [-77.35287695380507, 34.735563562279395], [-77.35272286351761, 34.735655135428544], [-77.35247753199772, 34.735847937261326], [-77.35195575289998, 34.73623422572429], [-77.3516678744171, 34.73640711097584], [-77.35132525358651, 34.73664753540187], [-77.35101390206569, 34.73710422340643], [-77.35097101736967, 34.73725597902776], [-77.35100534375806, 34.737666200583774], [-77.35117881642539, 34.737884537548055], [-77.35128721587044, 34.73853572295594], [-77.35130135734123, 34.73857867869735], [-77.35130373766278, 34.73860001404959], [-77.35130512670553, 34.7386387532969], [-77.35143814808005, 34.73926185824123], [-77.35163347366672, 34.73940553888297], [-77.35168574510517, 34.73946561399897], [-77.35192391279335, 34.739489664756775], [-77.35211917314268, 34.73952643164467], [-77.35218568056942, 34.739566384941675], [-77.35230954741418, 34.739528606722885], [-77.35229854716205, 34.739438249647215], [-77.35229120100948, 34.73939411143649], [-77.35228747456961, 34.73921594822472], [-77.35227320078593, 34.73901375574958], [-77.35230522334227, 34.73894995190054], [-77.35230510113207, 34.73888641910584], [-77.35227415039768, 34.73861882392266], [-77.35217125945506, 34.7384809556252], [-77.35229692046796, 34.73824092242561], [-77.35229846026193, 34.738219807703324], [-77.35230092882837, 34.73820402520074], [-77.35231370190738, 34.737974024666435], [-77.35235648293764, 34.73776709177383], [-77.35234257776027, 34.737643122592516], [-77.35232830384578, 34.73748463927727], [-77.352370797253, 34.737361879620195], [-77.35246062847547, 34.73710946013176], [-77.35262981151999, 34.736955876142545], [-77.35271943578584, 34.736700502457225], [-77.35273715275272, 34.736685875076766], [-77.35304296828544, 34.73641178834704], [-77.35307992792012, 34.736381633630195], [-77.3531145135956, 34.73636867299102], [-77.35317118192619, 34.73635201224021], [-77.35327326194275, 34.73638017947548], [-77.35370751726643, 34.736388990931225], [-77.35379666729237, 34.73630833854825], [-77.35403074968296, 34.73594752201542], [-77.3544180116017, 34.73539290652499], [-77.35445199767251, 34.73524362045251], [-77.3543207978018, 34.73492801198153], [-77.35487512455695, 34.73443088816477], [-77.35506288823959, 34.734896831318046], [-77.35551960184124, 34.73471360701248], [-77.35599063192977, 34.73471416659639], [-77.35619981590862, 34.73451630716721], [-77.3561688026215, 34.734100661548084], [-77.35600440725642, 34.734172546655486], [-77.35559064087194, 34.73411254922642], [-77.35624752152358, 34.73382960007406], [-77.35661273371065, 34.73312913888962], [-77.3568957497209, 34.73295861182393], [-77.35788381407608, 34.732319457417674], [-77.35840808539182, 34.73232337464212], [-77.35852449389417, 34.73226993044308], [-77.3592528287834, 34.73172958839235], [-77.35938703063458, 34.731641787799], [-77.35976079245768, 34.73081234580687], [-77.3607885735225, 34.73056538568717], [-77.361087130123, 34.730433556996964], [-77.36180694608669, 34.730072224411245], [-77.36222432234248, 34.72974544568392], [-77.3627617823359, 34.729762178806915], [-77.3634818454214, 34.729539319473915], [-77.36433645277774, 34.72976027119917], [-77.36504335679405, 34.72958359955986], [-77.36602781363467, 34.72902042949518], [-77.3662799475577, 34.72892920199061], [-77.36806669964069, 34.72883417237736], [-77.36836164844333, 34.72923225458066], [-77.36933326663359, 34.72930084054339], [-77.3695220376913, 34.729291290053304], [-77.36954311179221, 34.729288044788056], [-77.36956355171527, 34.72928515346379], [-77.36972603716548, 34.72924687381304], [-77.37089578739291, 34.7287538656109], [-77.3712342298775, 34.728917124057844], [-77.37158433307933, 34.7288935497397], [-77.3721842590909, 34.72873321546045], [-77.37262668757256, 34.72862264488356], [-77.3731635387407, 34.72848280572557], [-77.37361800323401, 34.72821190832921], [-77.37432694471379, 34.72809944347233], [-77.37453457679501, 34.72773146889426], [-77.37497984915926, 34.72793831335366], [-77.37615705636864, 34.727621683672496], [-77.37619547426232, 34.72745441221716], [-77.37636728544163, 34.727576470188396], [-77.37651565661855, 34.727609469476306], [-77.37712961561444, 34.727485533574004], [-77.3776393521726, 34.7276122291291], [-77.37767397961369, 34.727593473088056], [-77.37787682253168, 34.72721081190018], [-77.37802950120388, 34.7271587219018], [-77.37923349101682, 34.726537766249734], [-77.37930401745561, 34.72655141127377], [-77.37983229890042, 34.726683928453454], [-77.37984275440733, 34.72668421361097], [-77.37985333311359, 34.72667872609327], [-77.38023494329, 34.72657726169984], [-77.3805353078424, 34.72647087791475], [-77.38103270217319, 34.726385253979885], [-77.38165911858934, 34.726359004809154], [-77.38186464051564, 34.7263091084324], [-77.38197092148455, 34.726423027298594], [-77.38268005849609, 34.72682617557463], [-77.3829339874589, 34.72704365211534], [-77.38337588922474, 34.72742881425816], [-77.38344924507619, 34.7274778883814], [-77.38353005103934, 34.72747650025385], [-77.3840884038497, 34.727484948683696], [-77.38459987853318, 34.72781136777268], [-77.38466272128582, 34.72783230998482], [-77.38519392388186, 34.728094870408405], [-77.38558183741729, 34.72812443862996], [-77.38572084993945, 34.72806616431839], [-77.38598496855957, 34.728126778857096], [-77.38646535323892, 34.728132754650936], [-77.38659947378989, 34.728006390781076], [-77.38765836392822, 34.72832203236319], [-77.38769140739441, 34.72832709728073], [-77.38774609697538, 34.72838496179436], [-77.38871669667043, 34.72877359002545], [-77.38881601687618, 34.728871276569855], [-77.38896079734114, 34.72887484910014], [-77.3891987361355, 34.728830948546396], [-77.38976817743024, 34.728698522146594], [-77.39019029599365, 34.72855446126546], [-77.39100117875289, 34.728714130949605], [-77.39144032410687, 34.7286661267832], [-77.39158217253444, 34.72867171449722], [-77.39232605823906, 34.728806881155634], [-77.39268759873991, 34.7287872840976], [-77.39330408972748, 34.72914907457931], [-77.39376613497639, 34.729347002056954], [-77.39380550914987, 34.72935464941508], [-77.3938401887463, 34.72937102333579], [-77.39403102198736, 34.72940340739312], [-77.39508357944646, 34.729369594811594], [-77.39565191048115, 34.7293404136843], [-77.39641630008899, 34.729195995556395], [-77.3971195138711, 34.72973455172864], [-77.39751425754251, 34.72983226727764], [-77.39779625841466, 34.729853702533504], [-77.39846259023913, 34.729835472833514], [-77.39880450930855, 34.729805170578004], [-77.39947853891681, 34.72961138173241], [-77.40013819344615, 34.729303349312254], [-77.40028657473154, 34.729116256730286], [-77.40068425050809, 34.728589824868536], [-77.40083150871064, 34.728427605726765], [-77.4014198889903, 34.72794193194511], [-77.40169710753831, 34.727612128011046], [-77.40185124851985, 34.72750501144061], [-77.40205938478458, 34.72742401976601], [-77.40262369291023, 34.72727155695527], [-77.40273357637338, 34.72731008401222], [-77.40315958407332, 34.72700543870969], [-77.40328510815502, 34.7268565671331], [-77.40354445863062, 34.72672444338234], [-77.40409815583205, 34.726825380292105], [-77.4041579975729, 34.72681977842377], [-77.40419046102598, 34.726840424640535], [-77.40481647860022, 34.72676001529498], [-77.40497287934872, 34.72662328184057], [-77.4050191496553, 34.72653762998015], [-77.40544820064804, 34.72626252073984], [-77.4055969771638, 34.72614729768874], [-77.40587584913271, 34.72571903377288], [-77.40604021689121, 34.72537562824895], [-77.40607438271448, 34.72522935564208], [-77.40625052251929, 34.7250353277635], [-77.4064867078815, 34.7248144541975], [-77.40654386259591, 34.72470273208556], [-77.40685626396913, 34.723890086248424], [-77.40684270158947, 34.723820731240664], [-77.4068775036833, 34.72375189930767], [-77.40693209808708, 34.72329288102271], [-77.40713639919366, 34.723178930418705], [-77.40739234913931, 34.72309733649526], [-77.40760990193752, 34.72297083757217], [-77.40787597859881, 34.722839127205724], [-77.40811804132707, 34.722787505282525], [-77.40847361915081, 34.72232302238528], [-77.40851579343791, 34.72216945317997], [-77.40880107132259, 34.72185895330615], [-77.40910688165923, 34.72141164716235], [-77.40925049922812, 34.721308195560376], [-77.40962275007362, 34.72095116257359], [-77.40969348071964, 34.7208744397602], [-77.40979145657056, 34.720379176037625], [-77.40976419618511, 34.71999948733299], [-77.40978416856746, 34.71952647001204], [-77.41008657584521, 34.719364171891506], [-77.41015998539423, 34.71894174600148], [-77.40981623708174, 34.71835470860994], [-77.40972166679813, 34.71823183779011], [-77.40977823008588, 34.71813810160924], [-77.40990398578204, 34.71805179698514], [-77.41057589407373, 34.717828438156225], [-77.41102758202568, 34.71745685754155], [-77.41118613791595, 34.717329935231795], [-77.4114127197983, 34.71726964115959], [-77.41165550169777, 34.717117369764566], [-77.41164036219625, 34.71657636565828], [-77.41165890794602, 34.71655945369813], [-77.41307172106818, 34.71596855688195], [-77.41309089858368, 34.71595551535359], [-77.4131311659443, 34.71595616734451], [-77.41441965670276, 34.715741333893966], [-77.41489954799779, 34.71592012709886], [-77.4156362746878, 34.715967503218906], [-77.4161541605535, 34.71644190561822], [-77.4166673267517, 34.71683448314372], [-77.41742377344592, 34.717457385299106], [-77.41756355296808, 34.71763951201018], [-77.41769898946696, 34.717699412629884], [-77.41801591756327, 34.71802243241096], [-77.41823647615168, 34.71825156611858], [-77.41864025270363, 34.71887658657946], [-77.4187120530046, 34.71894593199223], [-77.41961810958507, 34.719927464764694], [-77.42178231490436, 34.72121777015023], [-77.42179846000414, 34.72122950918867], [-77.42180461035822, 34.721232401655804], [-77.4218102802344, 34.72123252321537], [-77.42184070766531, 34.721211886445715], [-77.424390009769, 34.71989318225437], [-77.42447065949214, 34.71959722912388], [-77.42552730086541, 34.71610302752018], [-77.42542392025628, 34.71578208049256], [-77.42552091599678, 34.71533060180765], [-77.42548351293179, 34.71356662661162], [-77.42537828705747, 34.71259417748414], [-77.42549524729176, 34.7122971217382], [-77.42547423035563, 34.71132709811621], [-77.42571536147867, 34.711161119177135], [-77.42588005401774, 34.71059932995081], [-77.42600742918883, 34.71039538823818], [-77.42605331279182, 34.71021772589855], [-77.42603391570722, 34.70964238066346], [-77.42592679518424, 34.709249051857], [-77.42592364588168, 34.70924200921359], [-77.42592358596639, 34.70921868188355], [-77.42584902468028, 34.70882676355431], [-77.4259216267764, 34.7085067190759], [-77.42619551246807, 34.70822486567235], [-77.42648291832516, 34.7079283982736], [-77.42657372571392, 34.707798041105924], [-77.42703138047389, 34.70760589913428], [-77.42718749591339, 34.70758428857311], [-77.42736021125958, 34.707513968495974], [-77.42749395128499, 34.707337322906966], [-77.42751053125767, 34.70724077869829], [-77.4273620587246, 34.70695554622117], [-77.42732969566757, 34.70686984936222], [-77.4274911677426, 34.70658491036692], [-77.4276085819786, 34.70648267530632], [-77.42795027527421, 34.70616453432129], [-77.42802810140381, 34.706070293561346], [-77.42803351085375, 34.70597564988595], [-77.42812125465144, 34.705543796247426], [-77.42804008961188, 34.70523429469446], [-77.427829451404, 34.70484847803273], [-77.42760915472851, 34.70452134032078], [-77.42702834676255, 34.70404351321324], [-77.42689133937921, 34.7039280884995], [-77.4268223726496, 34.70389892875393], [-77.42671265250866, 34.70381664768195], [-77.42612475258147, 34.703355184945906], [-77.42593145561483, 34.702548111187845], [-77.4259274540809, 34.70254041255876], [-77.42592944262562, 34.70253639377175], [-77.42576197280367, 34.7017210417989], [-77.42569677428462, 34.70134159830041], [-77.42568112100257, 34.70119858871131], [-77.42556519472858, 34.700910392734016], [-77.42556390141016, 34.700443057436445], [-77.42561582909906, 34.70019514197959], [-77.4255525176237, 34.70002292868088], [-77.42549926549586, 34.69961249922346], [-77.42545308147993, 34.699171665421474], [-77.42547359589626, 34.699027253349584], [-77.4251829203712, 34.69849111023231], [-77.42509962164443, 34.69842639596777], [-77.42506007846461, 34.69832356521157], [-77.42492296881736, 34.69805372980376], [-77.42495265857924, 34.69794801632978], [-77.42515948924674, 34.697799254404984], [-77.4254057350558, 34.69772127489627], [-77.42571588600232, 34.69769991890992], [-77.42609099758995, 34.697568001309854], [-77.42655295431796, 34.697572537632546], [-77.42707812909134, 34.69735207276515], [-77.4271949448833, 34.69712625406066], [-77.42860087189585, 34.69696540915861], [-77.42883472607167, 34.69694553011676], [-77.42891584272874, 34.696947941660035], [-77.4289841092363, 34.696900444554934], [-77.42912549162534, 34.69674648657726], [-77.4295028201392, 34.696411752297436], [-77.42980024155506, 34.69606770034661], [-77.43004071383406, 34.69579533837668], [-77.43016877200448, 34.69563750570218], [-77.43003673051516, 34.695473447914466], [-77.42985468301598, 34.69496860868718], [-77.43016067198137, 34.69452895383123], [-77.43005709355407, 34.694326441554864], [-77.42976885662317, 34.69382046797115], [-77.42980717017488, 34.69358500285856], [-77.42983689779601, 34.692878530417524], [-77.42986499834721, 34.69273595726079], [-77.42990245609965, 34.69257797641207], [-77.43006680906092, 34.69168839991312], [-77.43041595521295, 34.69085132764704], [-77.43032223334065, 34.69065959086578], [-77.43045167867557, 34.690484455564], [-77.43045911623317, 34.689589332477794], [-77.43039115843254, 34.6890761314603], [-77.43037004686201, 34.688440055362385], [-77.43017920899652, 34.68786973342287], [-77.43009052632316, 34.68741606181987], [-77.43002373885912, 34.68720081467818], [-77.42973570768784, 34.68667137776345], [-77.42978979846053, 34.68655993476563], [-77.42981860813038, 34.68645814854979], [-77.42996164448574, 34.68606096768203], [-77.43000135117404, 34.686009061564825], [-77.43005522756452, 34.68564525479569], [-77.4296985416558, 34.685514006264604], [-77.42957887831619, 34.68551511247036], [-77.42914839692682, 34.685362430214596], [-77.42906575240765, 34.685747643961705], [-77.42894089156464, 34.68577103955863], [-77.42880685494828, 34.68596860918585], [-77.42855422613184, 34.68588673760113], [-77.42868252758511, 34.686172684568426], [-77.42865730052489, 34.68622868451312], [-77.42846834994553, 34.686656847810596], [-77.42832657642464, 34.68701028831322], [-77.42826376996442, 34.68714436831135], [-77.42812507262775, 34.6873435678134], [-77.4281192038959, 34.687373343537125], [-77.42809735649475, 34.68738340821663], [-77.42806197789017, 34.687435535937176], [-77.42794968610441, 34.68759359186686], [-77.42785787361596, 34.68773975022131], [-77.42771754800191, 34.68796002110247], [-77.42780702229389, 34.688102767678146], [-77.42750092526286, 34.68826713273282], [-77.4273729661881, 34.68844272905478], [-77.42733749300399, 34.688497626497316], [-77.42721581013595, 34.6886157879717], [-77.42713391789727, 34.68879979084821], [-77.42702433669677, 34.68880681642905], [-77.42691106749454, 34.68890756047454], [-77.42682925957482, 34.68904958800224], [-77.4265806564576, 34.689232760881794], [-77.42651108937774, 34.689277296698435], [-77.4264785067974, 34.68931534854229], [-77.42639472647153, 34.689404815861494], [-77.4262660346615, 34.68962454618641], [-77.42614775764585, 34.68975874536082], [-77.42609581184286, 34.689800930256], [-77.42600180733389, 34.68994045287262], [-77.42587371504382, 34.69006861293362], [-77.4258715128017, 34.690221204853316], [-77.42581465173183, 34.690382368087256], [-77.42563785530325, 34.69069856020848], [-77.42544314123066, 34.6909489681985], [-77.4253564321181, 34.69112902638041], [-77.42525753132452, 34.691124619521794], [-77.4250079499327, 34.69132264095988], [-77.42471849003094, 34.69158185831665], [-77.42461088795875, 34.69161029406234], [-77.42441862901, 34.691568554095824], [-77.42426726747686, 34.69159205217785], [-77.42400183267101, 34.691500411685396], [-77.42398037576648, 34.69151654748265], [-77.42379751417113, 34.69157194646485], [-77.42364480750062, 34.69162685068479], [-77.42360116334272, 34.69166345425746], [-77.42352550462904, 34.69187514942818], [-77.42321717797866, 34.69199721841925], [-77.42316725798254, 34.692037357647294], [-77.4231230923365, 34.692055324476215], [-77.42284193411865, 34.69218658698081], [-77.42281374380555, 34.69220730491545], [-77.42275191963778, 34.6922640176747], [-77.42284321258883, 34.692516515066174], [-77.42264210438326, 34.69267462167336], [-77.4224809408354, 34.69266934656561], [-77.42245062308041, 34.69283610523888], [-77.42243555466028, 34.692933014000445], [-77.42223634005794, 34.69317175563365], [-77.42211723467274, 34.69331236080349], [-77.42208673410181, 34.693370092602756], [-77.42197009961095, 34.69348297208123], [-77.42184029138676, 34.69360751301094], [-77.42158667010914, 34.693754270756806], [-77.42152710235823, 34.693843404056906], [-77.42140246210744, 34.6938385078976], [-77.42123922540648, 34.69378792155017], [-77.42110489517427, 34.693759489820124], [-77.4210655819064, 34.69383677120378], [-77.42079070649724, 34.6937378925006], [-77.4207691035312, 34.69374784958532], [-77.42059113627944, 34.693809002112616], [-77.42042859709248, 34.69388183450949], [-77.42039076314423, 34.69389505767272], [-77.42031041394543, 34.69409798354379], [-77.41999450109655, 34.69427443970771], [-77.41996917154496, 34.694288012814965], [-77.41985415911145, 34.69426645207592], [-77.41967489043391, 34.694440601880714], [-77.41963156604095, 34.69448399031944], [-77.41925652182282, 34.69461649733045], [-77.41925563402322, 34.694617301926726], [-77.4192542482736, 34.694617673073175], [-77.4192492058138, 34.694618203227904], [-77.41856270122247, 34.69479264378621], [-77.4184771703654, 34.69484043333048], [-77.41829035041121, 34.694837628982455], [-77.4178778641809, 34.694944423690714], [-77.41766433810366, 34.69500737012703], [-77.4176602924857, 34.695176329991035], [-77.4170888718687, 34.69545593300107], [-77.41704772152488, 34.69549515528388], [-77.41698807118212, 34.695500280680314], [-77.41683822368964, 34.695624054638266], [-77.41672871777432, 34.695968653850905], [-77.41660507997162, 34.696267428394094], [-77.41663026676119, 34.696603527271044], [-77.41658436157962, 34.69703635675231], [-77.41660936715186, 34.69711205788854], [-77.41685788454394, 34.69740128824917], [-77.41673571853241, 34.69764840030364], [-77.41678952245528, 34.69806509091191], [-77.41681273595688, 34.69823443948868], [-77.41680387547342, 34.69831653768286], [-77.41688431359623, 34.69837604064614], [-77.41710029098307, 34.6988941220406], [-77.41720533098655, 34.699041781773225], [-77.41722061241391, 34.69921575816997], [-77.4172462744968, 34.699339527383245], [-77.41726705072747, 34.69946239426394], [-77.4173109059709, 34.69952689002541], [-77.41742933479442, 34.699814098422344], [-77.41745296597193, 34.69983119641049], [-77.41765884784202, 34.70012823726157], [-77.41769410229685, 34.70022002124908], [-77.41766355131402, 34.7002422279389], [-77.41759867538109, 34.70033606144808], [-77.41742886094264, 34.70060651815081], [-77.41743119772634, 34.700687158563134], [-77.41734380058392, 34.70076945703974], [-77.41724394124405, 34.7009012083236], [-77.41718401703238, 34.70095421122407], [-77.4171395517093, 34.70107784204625], [-77.41711065437961, 34.70113413568691], [-77.41709579685269, 34.701183979863785], [-77.41702140837867, 34.70122297084547], [-77.41694104233173, 34.70130496244431], [-77.41663435589687, 34.701452912054336], [-77.41658518300838, 34.701471144357164], [-77.41643017119551, 34.7014552122548], [-77.41628889309723, 34.70153921240212], [-77.41618087200905, 34.701558105866255], [-77.41601146772379, 34.70158830497146], [-77.41593274984108, 34.70166239404987], [-77.41587333477338, 34.70180330055547], [-77.41583765178828, 34.701807055960735], [-77.41562107278045, 34.70213887580431], [-77.41536280542621, 34.702200058372625], [-77.4144328174732, 34.702415305388314], [-77.41396929937089, 34.70243027363669], [-77.41315847669253, 34.70238913192884], [-77.4130006589874, 34.7023425525636], [-77.41267001976988, 34.702376319861], [-77.41219675443932, 34.702524190306235], [-77.41182103159142, 34.702580827495154], [-77.4113240530477, 34.702387756537846], [-77.41072861849322, 34.70192648078642], [-77.41059782281954, 34.70179796892022], [-77.41060857332494, 34.70165516783293], [-77.4101777587962, 34.70108047804911], [-77.40978538184211, 34.700757130614406], [-77.40907064237481, 34.699998887411056], [-77.40892719745332, 34.699816692547884], [-77.40883281264384, 34.69962008767501], [-77.4083918735206, 34.69864316773679], [-77.40838145716788, 34.698258938226694], [-77.40803346142056, 34.69795415523886], [-77.40756040027131, 34.69723400548123], [-77.40729328439005, 34.69692743188554], [-77.40720464635037, 34.69639005313131], [-77.4070401721283, 34.6959337324316], [-77.40704987445767, 34.69524359341958], [-77.40669362012025, 34.693728945931845], [-77.40659342203848, 34.69354090799365], [-77.40629563241325, 34.69198746248881], [-77.40573686224057, 34.691004636448746], [-77.40500077063919, 34.688956851243894], [-77.40369933808054, 34.68636603786976], [-77.4034958490993, 34.68601387548374], [-77.40179612866064, 34.685152433277175], [-77.40156575411821, 34.68503356518972], [-77.40152784180083, 34.68501315118831], [-77.40130866730655, 34.684715301234036], [-77.40053383920026, 34.683678639388646], [-77.3994855015063, 34.68321463886335], [-77.39781617472019, 34.681994274503204], [-77.39737528926746, 34.68165066175608], [-77.39725618971268, 34.68147502349715], [-77.39706871092423, 34.68126106618909], [-77.39663999563646, 34.68006971292506], [-77.3965975909688, 34.679977832859635], [-77.39659987967435, 34.67996346347541], [-77.39596605697724, 34.678638424557015], [-77.39594043334931, 34.67845321425884], [-77.39586900925168, 34.678002638875036], [-77.3955550470233, 34.67625789201572], [-77.39547865936055, 34.67507526557385], [-77.39532371248139, 34.67394023815524], [-77.39434196725963, 34.67197882535235], [-77.393542984008, 34.671080105543524], [-77.3932027881083, 34.67066868755058], [-77.39293930390161, 34.670422047582115], [-77.3923160767184, 34.669999853784574], [-77.39164418019536, 34.66953346385413], [-77.39077928360275, 34.66903137392191], [-77.38983974495696, 34.668500752356756], [-77.38967047894023, 34.66843548485972], [-77.38951259933603, 34.66840489087645], [-77.38874002426513, 34.668279846161695], [-77.38845091058732, 34.668221814805214], [-77.38832361886296, 34.66820166171357], [-77.3875576463788, 34.66809082050616], [-77.38730179756254, 34.668057554678626], [-77.38687644775018, 34.66805336081298], [-77.38613056892365, 34.6679695943655], [-77.38586897173566, 34.66781439249126], [-77.38499218531673, 34.66776832875915], [-77.38468165880437, 34.66772804597154], [-77.38407305845558, 34.667620558623454], [-77.38384745524844, 34.66758895453398], [-77.38342787951626, 34.66754946554464], [-77.38227459822099, 34.66742865718289], [-77.38154343182597, 34.66728045667717], [-77.38132866303735, 34.66721457204514], [-77.38081441906519, 34.66697618457717], [-77.3804703584236, 34.66685392824979], [-77.38009766365222, 34.6667396795362], [-77.37988788328659, 34.66643797647957], [-77.37963106201818, 34.66631049586893], [-77.3794632239106, 34.66619999638205], [-77.37875148933088, 34.665957206860554], [-77.37826246058661, 34.66621393232901], [-77.37826211962206, 34.665787742995995], [-77.37814964487237, 34.66542377030133], [-77.37822396379505, 34.66471726321364], [-77.37844666267641, 34.66441083148341], [-77.37899529665569, 34.663645915109726], [-77.37900494484616, 34.663635041250814], [-77.37900708349746, 34.663631365406005], [-77.3790179080647, 34.66360834829284], [-77.37948485402387, 34.66277864742289], [-77.3800544595134, 34.662515867842124], [-77.38043314214578, 34.66234297860875], [-77.3807676839929, 34.66170049797254], [-77.38090571215584, 34.661423961669996], [-77.38087936083397, 34.66131526906581], [-77.38070748818133, 34.66074994037223], [-77.38078325198506, 34.66046600861976], [-77.38080466306477, 34.660104421486054], [-77.38055102249794, 34.659285275640904], [-77.3804496298939, 34.658823842670095], [-77.38015567669592, 34.65816528078308], [-77.3800862933206, 34.65802979633293], [-77.38006567159277, 34.65794871292616], [-77.3794936141562, 34.65726729898884], [-77.37908835090744, 34.65659259917242], [-77.3786024084695, 34.65625177976792], [-77.37753450852298, 34.65523733269646], [-77.3757729919173, 34.65440296444553], [-77.37526467588152, 34.6536730436062], [-77.37450864372559, 34.65293227543006], [-77.37313136400306, 34.65139016400452], [-77.37223638885686, 34.65048150887647], [-77.37127203905189, 34.64957969581346], [-77.37054429351421, 34.648369824594], [-77.36932208882496, 34.647064490682006], [-77.36918930442141, 34.64660131270375], [-77.36883448545736, 34.64522882860107], [-77.36874198313816, 34.64361839442043], [-77.36870612150274, 34.643482374419115], [-77.36822412330105, 34.641936668430915], [-77.3677373905799, 34.64101347833143], [-77.36768482622179, 34.639861252458225], [-77.36793721969647, 34.63937578385833], [-77.36825050456517, 34.6385569554229], [-77.36837800306918, 34.63783993600231], [-77.36903213805101, 34.63619443527645], [-77.36957060271166, 34.635555051762495], [-77.36996672666389, 34.63491846153983], [-77.37011963797315, 34.63266963244802], [-77.36989747117654, 34.63153197373853], [-77.36970828977225, 34.63083317839527], [-77.36971503018111, 34.628894329181094], [-77.36957319641736, 34.62818220925618], [-77.36952107462153, 34.627666500982], [-77.36971788617193, 34.62719812300603], [-77.36982394944204, 34.626996067133504], [-77.36998571080888, 34.62659863436186], [-77.37010593978295, 34.626407275697666], [-77.37029744319187, 34.62604012390098], [-77.3706128641708, 34.62577216239971], [-77.37133456858149, 34.6253091694841], [-77.37154803638992, 34.62519274264514], [-77.37219005994507, 34.62504828175422], [-77.37277432803586, 34.62495396711745], [-77.37376720570943, 34.624394202151365], [-77.37390208686026, 34.62430761321775], [-77.3740821090188, 34.624136457330984], [-77.37483991561271, 34.62348400781223], [-77.37534447626396, 34.62322388060686], [-77.37592509172343, 34.62279793093568], [-77.37679529870407, 34.6220474232078], [-77.3768686073758, 34.62197966092371], [-77.37692173432079, 34.62193484780267], [-77.37704897724075, 34.62187385978837], [-77.378498792268, 34.621240547681154], [-77.37914276017013, 34.62101577352287], [-77.37928728716693, 34.62098955693143], [-77.37940935928674, 34.62095317946758], [-77.38007580684737, 34.62061412849031], [-77.38045863416139, 34.620233623015736], [-77.38136329295085, 34.61969107034064], [-77.38152863823873, 34.61953341914715], [-77.38165291588517, 34.61944088656314], [-77.38193961577639, 34.61929927599874], [-77.38322992182333, 34.618560034234505], [-77.38375079783876, 34.618209687726946], [-77.38436215363328, 34.61756066736639], [-77.38480699436278, 34.617124866872096], [-77.38546125280486, 34.61640852269954], [-77.38611651386623, 34.61560955684984], [-77.38638405402594, 34.61543841023627], [-77.38664410284832, 34.61525345277683], [-77.38717252811794, 34.61480204604311], [-77.38731350730104, 34.614739724448796], [-77.38760235987526, 34.614546252931106], [-77.38796097042042, 34.614300853208725], [-77.38839924226446, 34.61405426304264], [-77.38874942139725, 34.613666119504465], [-77.3894909482564, 34.613424865641086], [-77.38953118234515, 34.61341192495185], [-77.38953781189318, 34.613409895855234], [-77.38954712886881, 34.61340673145399], [-77.39072822683576, 34.61283033457111], [-77.39111460710973, 34.61262815844222], [-77.39123743654736, 34.6124562120454], [-77.39187388815483, 34.61226351169968], [-77.3919029919872, 34.61224979335749], [-77.39192170065745, 34.61224542207507], [-77.3926904218333, 34.61211542561232], [-77.39269134731667, 34.612115817339514], [-77.39269690805199, 34.612113493431245], [-77.39326207343619, 34.611797569353925], [-77.39395137468892, 34.611083457320596], [-77.39409843915827, 34.610879478085856], [-77.39426812742062, 34.61077537653934], [-77.39554865418307, 34.60947387275956], [-77.39584486880428, 34.60921389730355], [-77.39591550784584, 34.60917800279525], [-77.3961458918017, 34.60906868752232], [-77.39604042713798, 34.60887326829357], [-77.39597074292266, 34.60824480677216], [-77.3959772171809, 34.607537192187564], [-77.39600068769258, 34.60739134468207], [-77.3965582263041, 34.60723009037139], [-77.39663327691161, 34.60716146811185], [-77.39672834698158, 34.60718398349541], [-77.39680232777442, 34.6072757230008], [-77.39683032961469, 34.60790852655499], [-77.39742152617887, 34.60834484945226], [-77.39888762365416, 34.60867322409023], [-77.39897485641981, 34.608685707866414], [-77.39899812770673, 34.60868460817334], [-77.39903100648209, 34.608687957602996], [-77.40049566239256, 34.60852643317681], [-77.40057474050649, 34.60851094969099], [-77.40191542257844, 34.60849055226481], [-77.40215135008951, 34.6085609083962], [-77.40253117582657, 34.60855671859199], [-77.40372794806947, 34.60827760788563], [-77.40503534644094, 34.608076168189136], [-77.40688118574124, 34.60875010397786], [-77.41003041990922, 34.608763647859654], [-77.41003386654728, 34.60876372676924], [-77.41003440163578, 34.608763863232106], [-77.410035661424, 34.60876424826137], [-77.41452942490575, 34.61006558095388], [-77.41634119185595, 34.61069963554804], [-77.41880666819246, 34.61163424769309], [-77.41949471184029, 34.61178330251042], [-77.42091691686619, 34.612120244715385], [-77.4226482162076, 34.612501083760286], [-77.4234182628675, 34.61279435511701], [-77.42527322466712, 34.613355772741414], [-77.42800411856352, 34.613985880463105], [-77.42928959695807, 34.61404706653561], [-77.43067273223342, 34.614380901097505], [-77.43334217675152, 34.61435967496688], [-77.43359066700242, 34.61439519923526], [-77.43364962115784, 34.61439908587056], [-77.43539451265572, 34.613839180728235], [-77.43553140025334, 34.613802433579224], [-77.43617885881595, 34.61298032065553], [-77.43618336473105, 34.61287642059425], [-77.4364964065683, 34.612151310757554], [-77.43631935920351, 34.611135876516485], [-77.4361504110086, 34.61077296813737], [-77.43571745218085, 34.61023557361499], [-77.43505883234377, 34.60901998678508], [-77.43441831130855, 34.60831276629183], [-77.43377612889697, 34.606931231519425], [-77.4332170487211, 34.6054144186635], [-77.4330903695327, 34.603097956467266], [-77.43284687321508, 34.60207122737035], [-77.43367278636956, 34.6002612498545], [-77.43367556807256, 34.600248317879945], [-77.43367998907712, 34.60024628812716], [-77.43440571763416, 34.59844916245311], [-77.43487703773343, 34.597973296307316], [-77.4352550998359, 34.597038741296565], [-77.43535326846225, 34.59671971687781], [-77.43536508579865, 34.59661210145671], [-77.43555581169845, 34.596260192535674], [-77.43577441656595, 34.59541478565335], [-77.43599258682062, 34.59482300855352], [-77.43581459497796, 34.59424469349021], [-77.43544076492054, 34.59340605809477], [-77.4353194790553, 34.59322195567713], [-77.4352998271845, 34.593174908788946], [-77.4352535088737, 34.59313434999875], [-77.43422093759457, 34.592794791372654], [-77.4340071939111, 34.591713307315445], [-77.4339531550698, 34.59142309222899], [-77.4336763603452, 34.59091486340716], [-77.43317355079057, 34.590677113687676], [-77.43315185659566, 34.5901385931829], [-77.43209939805844, 34.58896983616828], [-77.4317815955979, 34.588980740427395], [-77.43139926562115, 34.58869357360026], [-77.42992064463286, 34.58785775931871], [-77.4289461027118, 34.58632112058212], [-77.42866382236862, 34.5859962880399], [-77.4283935623613, 34.58573129996424], [-77.4266205881137, 34.585096216128335], [-77.42579315110143, 34.584174100935996], [-77.42501605655852, 34.58365989184915], [-77.42454438447966, 34.582890861108794], [-77.4242166302201, 34.58270865954065], [-77.42365185841524, 34.581929838780354], [-77.42336722822401, 34.581362607258264], [-77.42323065526863, 34.58032053912638], [-77.42312027345417, 34.57969994508417], [-77.42289568870679, 34.57945657103688], [-77.4226396619895, 34.5791865700885], [-77.42160709049315, 34.57822023500002], [-77.42129289765279, 34.57801827657657], [-77.42106331167918, 34.57779723760312], [-77.42030766452324, 34.57759371994196], [-77.42025529212647, 34.577587886130175], [-77.4194871317429, 34.576983286089124], [-77.41939866908211, 34.576936270670195], [-77.41919717125197, 34.576870059981964], [-77.41822503724626, 34.57667215617563], [-77.41791106920391, 34.57663883547736], [-77.41731779321476, 34.57608243225458], [-77.41658114766918, 34.57581493788452], [-77.41633496358365, 34.57596515824735], [-77.41480559869794, 34.57580606458391], [-77.41476407343576, 34.575806549650196], [-77.41475895773323, 34.57580362224727], [-77.41474655617503, 34.575801227913196], [-77.41318296012196, 34.57566546539003], [-77.41204572186007, 34.57573182770762], [-77.41160698148842, 34.575665282729], [-77.4100697188525, 34.57479163389318], [-77.41004447545448, 34.574780672472365], [-77.41003092105831, 34.57477586192866], [-77.4100050033741, 34.57477304833169], [-77.40907146068051, 34.57427135396448], [-77.40845492761892, 34.57436506678098], [-77.40826248055475, 34.57441079610538], [-77.40791767081022, 34.5745233618823], [-77.40766696214507, 34.574581234470585], [-77.40735003070597, 34.5748427373813], [-77.40719221610912, 34.57486953681027], [-77.40687899013685, 34.574755889322184], [-77.40638608214286, 34.57479226866013], [-77.40609100739651, 34.57476380399687], [-77.40578420544622, 34.57489179754894], [-77.40563011673213, 34.57493589428175], [-77.40557670313804, 34.575015703864935], [-77.4053030381471, 34.57519010803702], [-77.4051195728111, 34.57530855582226], [-77.40508543290056, 34.57532111811763], [-77.40490904804452, 34.5753199576023], [-77.40480434229933, 34.575240021031604], [-77.4045150477153, 34.57507838745038], [-77.40419438489957, 34.57513620989181], [-77.40405872388867, 34.57516764221302], [-77.40404148571052, 34.57523730082869], [-77.4037270670774, 34.575515820651084], [-77.40361967872667, 34.575607033276704], [-77.4035098274301, 34.57573861298659], [-77.40333307640955, 34.576001770002236], [-77.40318974196502, 34.57605492724999], [-77.40293907913872, 34.5761316365098], [-77.40261862046789, 34.576212566188154], [-77.40243403856118, 34.57619879327247], [-77.40215108169917, 34.57606954923864], [-77.40206788136052, 34.57603637798393], [-77.4017570836924, 34.57599311334381], [-77.40141591168472, 34.57609773752948], [-77.40136308344357, 34.576139993126695], [-77.40109273340407, 34.576378773968386], [-77.4009547424787, 34.57651648910404], [-77.40091205925127, 34.576538096244256], [-77.4005750686848, 34.576882536790926], [-77.4005097662759, 34.57695035607962], [-77.40039562820766, 34.57703719416065], [-77.40003555288376, 34.5773569384145], [-77.39978705092693, 34.5772712055869], [-77.39965289460127, 34.57728893435312], [-77.39939304334285, 34.577349954161264], [-77.39921741646873, 34.57744253259029], [-77.3991960368238, 34.577452616845896], [-77.39913144160377, 34.57750150480292], [-77.39906592853961, 34.5775134401548], [-77.39899903112973, 34.5775227978571], [-77.39893246598972, 34.57753233941689], [-77.39887083302759, 34.577543647349906], [-77.39880202619472, 34.57756704856089], [-77.3987667853553, 34.57759065981952], [-77.39874353709509, 34.5776371341924], [-77.39868965462468, 34.57761673251055], [-77.39860502071559, 34.577618435505464], [-77.39853417360014, 34.57765402433092], [-77.39840801397358, 34.57769093689661], [-77.39822315227795, 34.57776215416165], [-77.39821100702471, 34.57776039098821], [-77.39818118612828, 34.57778129671898], [-77.39792192716462, 34.57793178024802], [-77.39781698578003, 34.57801615803687], [-77.39757817260438, 34.57812563088393], [-77.3974229654236, 34.57821480132331], [-77.3973236266995, 34.578222553426876], [-77.3968185614659, 34.57840246452713], [-77.39667375873934, 34.57846519718226], [-77.39663492656403, 34.57849997895458], [-77.39654857615338, 34.57853446067374], [-77.39624090283564, 34.57867255519512], [-77.39610238047295, 34.578781101200676], [-77.39596115473832, 34.57882759338186], [-77.39584688078351, 34.57880159856656], [-77.39559758914574, 34.57884723089346], [-77.39525508451189, 34.57883946989164], [-77.39505885166412, 34.57884230222637], [-77.3948058503318, 34.57896543355915], [-77.39466015075809, 34.578713839827756], [-77.39449627207115, 34.57849458102177], [-77.3946309402101, 34.5778689106316], [-77.39455837808752, 34.57756965123268], [-77.39451717499789, 34.577460750658084], [-77.39444269216114, 34.577286457364835], [-77.39427097419102, 34.577301273430045], [-77.39410169156213, 34.57727852983364], [-77.39387696321779, 34.57735015232865], [-77.3935863849498, 34.577281888108146], [-77.39348296644683, 34.57726068503859], [-77.3934082889, 34.577276602554456], [-77.39309967800882, 34.57724064829705], [-77.39286391218383, 34.57709261123715], [-77.39285933002074, 34.57660322081797], [-77.39287532050069, 34.57642386868104], [-77.39279755812464, 34.57632463811769], [-77.39269511839117, 34.57585506901269], [-77.39261030039572, 34.57570437149014], [-77.39261717861845, 34.575611962127596], [-77.39264073381099, 34.575549921452605], [-77.39252161478589, 34.574963685451415], [-77.39241309803008, 34.57479225721764], [-77.39241598926735, 34.57449087549797], [-77.39237073378146, 34.57429898497688], [-77.39228247179904, 34.57396195778759], [-77.39220842983376, 34.57344786359839], [-77.3922299170947, 34.572772962363516], [-77.39179320751575, 34.572334245060986], [-77.39165114572496, 34.571782005067675], [-77.3913078846552, 34.57090865494833], [-77.39122381108271, 34.57071809419758], [-77.39124122719984, 34.57058477431815], [-77.39111984685881, 34.57058438887116], [-77.39086951435985, 34.57049940770293], [-77.39003633754015, 34.57035876815178], [-77.39000394706602, 34.570044893762216], [-77.38964861874479, 34.569983441885], [-77.38954404177892, 34.569986857255586], [-77.38940192722721, 34.56997856492699], [-77.38879510150436, 34.570177163670664], [-77.38875607175707, 34.57013645239165], [-77.3886903281287, 34.57016349681771], [-77.38796804570451, 34.57058496828407], [-77.38739401115015, 34.57019082762741], [-77.3871801603554, 34.57023269838868], [-77.38697520217704, 34.570260801163684], [-77.38639219703887, 34.57031022958411], [-77.38568082674544, 34.57058572220255], [-77.38560419195149, 34.570581796862385], [-77.38554561728972, 34.57062469090447], [-77.38481615399886, 34.570982257630085], [-77.38428983275126, 34.571150849629355], [-77.38378736326727, 34.571200781442215], [-77.38324020858786, 34.57112316295407], [-77.38275244243677, 34.570767096790085], [-77.38221514594771, 34.57031882852937], [-77.38191239548554, 34.57009538403081], [-77.38166467429319, 34.569613876004645], [-77.38158756625587, 34.5695601697308], [-77.38160213535042, 34.56949064046939], [-77.38135464297238, 34.56907887074557], [-77.38107126492798, 34.56878546568164], [-77.38122469766424, 34.568388703305494], [-77.38111635474388, 34.56818766774006], [-77.38094264583955, 34.56795487736623], [-77.38091895890162, 34.56791326595166], [-77.3801523501193, 34.567219667113584], [-77.38015023156737, 34.5671544765419], [-77.38008949277598, 34.56702855746737], [-77.37866849432376, 34.5659018068208], [-77.37851399829327, 34.56584782102248], [-77.37847770266232, 34.56580192152389], [-77.37840302694585, 34.56577355426531], [-77.37601038827577, 34.565420142977004], [-77.37536252575785, 34.56533806641724], [-77.37441272186132, 34.56532500128908], [-77.37302429867069, 34.56567193371322], [-77.37221052099264, 34.56635724495541], [-77.37194167992145, 34.56641494916205], [-77.37063451085578, 34.56680823718507], [-77.370579099621, 34.56684125892561], [-77.36950823915905, 34.56657083743046], [-77.36905869938502, 34.56672661939278], [-77.36857046502111, 34.56634119699983], [-77.36853945994501, 34.56605640961779], [-77.36813357325475, 34.56555501156561], [-77.36795226509146, 34.5650760017282], [-77.36701063694687, 34.564018522615754], [-77.3672424862264, 34.56254787491139], [-77.36719618864375, 34.561982437683156], [-77.36748499214198, 34.56172950763324], [-77.36782337930093, 34.56050500127183], [-77.36767142938021, 34.55902833892941], [-77.36766751147464, 34.55882922360039], [-77.36780836805764, 34.558461922270624], [-77.36748665716277, 34.55786445449432], [-77.36651666508263, 34.5572967659518], [-77.36600612160548, 34.55726805011653], [-77.36591152376431, 34.55665749495831], [-77.36566814888525, 34.55572075823099], [-77.36508882464832, 34.55499350052105], [-77.36433650708248, 34.555299228254476], [-77.36393370016137, 34.55553653698769], [-77.36276002843336, 34.55702753450801], [-77.3618906693037, 34.5570260228575], [-77.3596307949605, 34.55826388889709], [-77.35960803548639, 34.558278095133524], [-77.35957808263782, 34.558263709974405], [-77.35957248911579, 34.55829680551298], [-77.35845825987866, 34.55891663135683], [-77.35803211069864, 34.558704891807736], [-77.35796941556833, 34.55859524038236], [-77.35763820438473, 34.55867035137212], [-77.35751171689864, 34.558593499283596], [-77.35757633208149, 34.558226590419], [-77.35730277330829, 34.5578370190661], [-77.35752324832211, 34.55774273393351], [-77.35744927615835, 34.55753312299387], [-77.35742509782311, 34.55690775949185], [-77.35724526036437, 34.55690220193307], [-77.35648503692386, 34.557013265855105], [-77.35645738075686, 34.55698313341494], [-77.35608483899023, 34.556653314555064], [-77.35599201545418, 34.5566122799567], [-77.35566973997535, 34.55664509627762], [-77.35562610104407, 34.5563648413237], [-77.35565495065111, 34.556313482003965], [-77.35527621648349, 34.55596780485768], [-77.35526588948142, 34.555956073095096], [-77.35524710244613, 34.55594763991714], [-77.35488248661007, 34.55565476808504], [-77.35484181380085, 34.55562528319225], [-77.35467326735375, 34.55560568947543], [-77.35449089345794, 34.55553180539071], [-77.35430008431251, 34.55565940593515], [-77.35412900396081, 34.55572108503587], [-77.35409461627643, 34.55573436294441], [-77.3539852488637, 34.55582253979691], [-77.35347206117893, 34.55577858811196], [-77.35403461726207, 34.55565977150515], [-77.35409585821935, 34.55563603260059], [-77.35444062401564, 34.555360560279986], [-77.35442924543979, 34.555151169887516], [-77.35446108166371, 34.55512213827034], [-77.35450182266118, 34.55505545473613], [-77.35462674234785, 34.554954364095295], [-77.35484660080172, 34.5548462719819], [-77.35490055704402, 34.55478982270575], [-77.35523794175865, 34.55478993961143], [-77.35527701803667, 34.55479433797928], [-77.35552093555354, 34.55499402496969], [-77.35559565252376, 34.55503598230096], [-77.35567415190586, 34.55529940342121], [-77.35593821531212, 34.55509569450309], [-77.3558192325271, 34.55486680675669], [-77.35586237013618, 34.55445522913863], [-77.35579189517945, 34.55440474875148], [-77.35588475671679, 34.554207184007616], [-77.35593160258986, 34.55409898426425], [-77.356160756529, 34.55392262881336], [-77.35610524947951, 34.55368489563979], [-77.35625074330564, 34.55342002879746], [-77.35595044709139, 34.55331928822034], [-77.35593705549064, 34.55322036417177], [-77.35584925190099, 34.553154488949694], [-77.35572641401737, 34.55302016869468], [-77.35571759382641, 34.55301274029394], [-77.35571105698801, 34.55300807530604], [-77.35570756637674, 34.55299648687104], [-77.35557823679734, 34.55278237255254], [-77.3555230763955, 34.5526771848658], [-77.35552002035651, 34.55266834184006], [-77.35552362474708, 34.55265861641395], [-77.35550497961364, 34.55260930134673], [-77.35554025726432, 34.55257717370374], [-77.35558413061443, 34.55256386839791], [-77.35567892656857, 34.552523055205036], [-77.35572375577323, 34.552507615850864], [-77.35573831851168, 34.552500999717296], [-77.35579043111977, 34.5524748820458], [-77.35613255940227, 34.55243067714164], [-77.35638960015231, 34.552334832229484], [-77.35652798987822, 34.55230842092218], [-77.35689667063053, 34.55212054173107], [-77.35692515894662, 34.55211024139597], [-77.35693446643396, 34.552103186652694], [-77.35694330155141, 34.55209621177935], [-77.35699734731747, 34.55204435908659], [-77.35711632138526, 34.5519432938749], [-77.35729188666853, 34.55180120344431], [-77.35730916865062, 34.55178874931329], [-77.35732565204302, 34.551766893451614], [-77.35746848391666, 34.55161789034816], [-77.3576002158139, 34.55151198954531], [-77.35765615750228, 34.55146082871925], [-77.35772683208077, 34.551393411976306], [-77.35811405539465, 34.55119318616465], [-77.35812042124927, 34.55118996675428], [-77.35812416183788, 34.551187893666416], [-77.35813188975979, 34.551185829058355], [-77.35813610508524, 34.55119001150046], [-77.35819060370824, 34.55122411250358], [-77.35848294317346, 34.5514029289176], [-77.35855444520972, 34.55140113133746], [-77.35890561358029, 34.55135353745531], [-77.35896471613987, 34.551315530720366], [-77.35909426015138, 34.55116702466913], [-77.35933401491553, 34.55101753239927], [-77.35948154533752, 34.550858708517985], [-77.35961178563473, 34.55048788891521], [-77.35958022738971, 34.5504099833171], [-77.3594629574402, 34.55026449498794], [-77.35956581706576, 34.5501546043578], [-77.35957421374384, 34.55009435507668], [-77.35966198856215, 34.54999101242916], [-77.35967499387054, 34.54995935305053], [-77.35969317016898, 34.54986411060077], [-77.35972604648589, 34.549815815417276], [-77.35978513107558, 34.549764569190344], [-77.35987679976895, 34.54974467855105], [-77.35992401767112, 34.549743106763415], [-77.35998698147122, 34.54969939156993], [-77.36005895383374, 34.549649421813456], [-77.36012619421827, 34.549486570650444], [-77.36014736223464, 34.54944406678383], [-77.36014788132871, 34.5494313985675], [-77.3601562408383, 34.549412514957446], [-77.36012818683561, 34.54939947574502], [-77.3601036942978, 34.54933159075942], [-77.3600906808736, 34.54931722319616], [-77.36003236074956, 34.54929776293477], [-77.36000220934955, 34.54928770199524], [-77.35998365602481, 34.54928151110492], [-77.3599678539707, 34.54927370376882], [-77.35995669493457, 34.549261801138634], [-77.3599623726688, 34.54922988159045], [-77.35996919272642, 34.54921230497876], [-77.35998585443869, 34.54918542866056], [-77.35999301875104, 34.54918269969316], [-77.36003523982947, 34.54917192850917], [-77.36011441640818, 34.549191393311006], [-77.36012577968964, 34.54919418686517], [-77.36013284384987, 34.5491959235183], [-77.36016312312961, 34.54920336735731], [-77.36016318468015, 34.54918437080727], [-77.36018736909665, 34.54914757724498], [-77.3603047131995, 34.54904157891785], [-77.36030876118217, 34.549025855985214], [-77.36038232459576, 34.54890799072319], [-77.36037837052756, 34.54881135519795], [-77.36037969754923, 34.54878595705191], [-77.36037460802373, 34.548764497525625], [-77.36038764655997, 34.54869168464214], [-77.36040159496947, 34.54866039172332], [-77.36037431864246, 34.54864402609124], [-77.3603676859604, 34.548604068594464], [-77.36035912648235, 34.548595178115], [-77.36034348921054, 34.548569106855695], [-77.36033536298648, 34.54855281680522], [-77.36033325835245, 34.54854782011719], [-77.36032954372554, 34.54853923269162], [-77.3603266434823, 34.548533471145255], [-77.36032617888492, 34.548529594615665], [-77.36031984785015, 34.548529909583564], [-77.36031117440282, 34.54853029557746], [-77.36030650603064, 34.54852939646509], [-77.36030578968084, 34.548527675780555], [-77.36031049351102, 34.548526378795145], [-77.36031997736511, 34.54852424817024], [-77.36032732262126, 34.54852262911822], [-77.36034051857548, 34.54851617162715], [-77.36034182324725, 34.54851416106532], [-77.36033833266501, 34.548490224201046], [-77.36033771268578, 34.54848597265054], [-77.36033695027287, 34.54848074433833], [-77.3603346021742, 34.548432702192635], [-77.36033403025468, 34.54842529687079], [-77.3603328889638, 34.548416676591124], [-77.36034872070385, 34.548340422770465], [-77.3603630930585, 34.54830718799515], [-77.36036657353056, 34.54828781622737], [-77.36041041372044, 34.548169473416635], [-77.36035431698122, 34.54809579330019], [-77.3603424036259, 34.54806472700498], [-77.36033493992585, 34.548057929601946], [-77.36031061979617, 34.54803329108812], [-77.36030726336014, 34.5479706304613], [-77.36030560880542, 34.5479397411915], [-77.3603353334833, 34.547921131312435], [-77.36033443121892, 34.54782937972118], [-77.36030268017964, 34.54781775080058], [-77.36022075739373, 34.54774120296548], [-77.36019887456159, 34.547710286690645], [-77.36018493098102, 34.54770113970064], [-77.3601672696484, 34.547691224548196], [-77.36013217159669, 34.54759747981964], [-77.36012824054342, 34.54757200685386], [-77.36012013914447, 34.54753800646385], [-77.36011723493803, 34.54751099118694], [-77.36011462021916, 34.54747759512784], [-77.36010690698134, 34.54743744346982], [-77.36010208184027, 34.54735698857569], [-77.36009772693563, 34.547284374425736], [-77.36009520229308, 34.547235567161266], [-77.36009200085235, 34.547181823345795], [-77.3601063525089, 34.54703646648189], [-77.36009621445254, 34.54699059728689], [-77.36007310260125, 34.546940939893524], [-77.36007209320722, 34.54692376977959], [-77.36009575147833, 34.54686825189177], [-77.3600977915059, 34.54680156527517], [-77.360089685378, 34.54674671334466], [-77.3600738623796, 34.54667626261515], [-77.36007550977044, 34.54662634256707], [-77.36003581892652, 34.546607086008066], [-77.3600308161937, 34.54653113502573], [-77.36007143892941, 34.54650451670695], [-77.36008724607757, 34.54643440641568], [-77.36016186106635, 34.54627031715927], [-77.36016542488719, 34.54624615856783], [-77.36016659744936, 34.54622464624962], [-77.36018588242305, 34.54601075751921], [-77.3601970835041, 34.54599677553646], [-77.36019894285276, 34.54599201586391], [-77.36020652626769, 34.54597539765045], [-77.36044975468826, 34.54586567826172], [-77.3604300365752, 34.545718405314744], [-77.36032561690496, 34.54566362498388], [-77.36031332592384, 34.545550932625275], [-77.36035424225523, 34.545484495757584], [-77.36028597684646, 34.54545224458024], [-77.36022274312164, 34.54526659814789], [-77.36022072098612, 34.54526025075636], [-77.36022059545634, 34.54525891725456], [-77.36022079272918, 34.545257543375875], [-77.36022431932273, 34.545197706433484], [-77.36023649833783, 34.54501681704899], [-77.36024635107236, 34.54501038415609], [-77.36023679342593, 34.54500670668167], [-77.36023062166824, 34.5449222472632], [-77.36022359720225, 34.54477531356663], [-77.36022346500593, 34.544768855652364], [-77.36022345985228, 34.54476210531759], [-77.36022856789393, 34.544645708725696], [-77.36022251399868, 34.54453475316714], [-77.36022344848148, 34.54452403383719], [-77.36022303066339, 34.54451352857854], [-77.36021285524835, 34.54430068292578], [-77.36021062181484, 34.54428105672122], [-77.36021002092842, 34.544258830692065], [-77.36021499029263, 34.54415801554824], [-77.36021180750011, 34.54406009576727], [-77.36021811602272, 34.54403515333319], [-77.36021835002498, 34.54401451526324], [-77.36020908801466, 34.54382077384494], [-77.36020953241946, 34.543791565205254], [-77.36020543358, 34.54375986265953], [-77.36019722320208, 34.54367092568336], [-77.36018114971077, 34.543623863175476], [-77.36019234192862, 34.54359206770813], [-77.36021683402902, 34.54354568954221], [-77.36020849109839, 34.54351298225653], [-77.36023351850184, 34.54342087480155], [-77.36020472220534, 34.543341317907974], [-77.3601829154683, 34.5433057496947], [-77.360166168179, 34.543244021374704], [-77.360105402382, 34.543072087699045], [-77.36009152633775, 34.54294422765662], [-77.360088504331, 34.542829696918446], [-77.36009603299476, 34.542713159648144], [-77.3603029853216, 34.54255398574564], [-77.36009838574216, 34.542456276796585], [-77.36010573140402, 34.54233756778327], [-77.36011431026124, 34.54222531602069], [-77.36012050371163, 34.54209061630558], [-77.36012861708505, 34.54195063721831], [-77.36013154578895, 34.54173696550552], [-77.36014158136969, 34.541597932606074], [-77.36015610368729, 34.54144707481156], [-77.36015901294994, 34.5413505981397], [-77.36016839851428, 34.541258160194914], [-77.36018448581608, 34.541102105657416], [-77.3602005490892, 34.5409306770707], [-77.36018468145404, 34.54076934620426], [-77.36020315008626, 34.54060976940907], [-77.36021900439208, 34.54043394965314], [-77.36022097729833, 34.54029027007695], [-77.36023675743064, 34.540115281196634], [-77.36024874665117, 34.53992867959295], [-77.36023953635777, 34.53980256362961], [-77.36025063436409, 34.539623634284695], [-77.36025739472827, 34.53943937468455], [-77.36025683426934, 34.53931424351863], [-77.360249898022, 34.539134091797465], [-77.36022313213635, 34.53898254728068], [-77.36011796797584, 34.538749935527974], [-77.36026745947169, 34.538641913740534], [-77.3601109906492, 34.53858466421987], [-77.36004368202204, 34.53821705087239], [-77.36012376944754, 34.53817295841364], [-77.36005353871653, 34.53814538925693], [-77.36002126978305, 34.53794289553788], [-77.36000957716938, 34.53793728342224], [-77.36002124240217, 34.537709393864205], [-77.36003846064492, 34.53769559564989], [-77.36003721098876, 34.53767498897625], [-77.36007002978536, 34.53744622509919], [-77.36003767452213, 34.53743325910139], [-77.36001715158343, 34.53721066505472], [-77.36001955541684, 34.53720866982177], [-77.36001893279665, 34.537206065194496], [-77.36001495360081, 34.5371911707584], [-77.35999474103133, 34.53698299632492], [-77.35997965199915, 34.536969592086066], [-77.35999552457415, 34.536951772086404], [-77.35995521793842, 34.53677153148951], [-77.3599705011724, 34.53672608572841], [-77.35998057563799, 34.53669612860437], [-77.3599953996822, 34.53660008796701], [-77.36000093007019, 34.536581848586586], [-77.36003119235878, 34.536481604510335], [-77.360037492887, 34.53647545566092], [-77.36004305027198, 34.53647081361452], [-77.36017318048265, 34.5362931127047], [-77.36020315694373, 34.5362029317902], [-77.36012168417454, 34.536162778172496], [-77.36010406095559, 34.5360111097427], [-77.36038631124487, 34.53593173066122], [-77.3604189047514, 34.53591594603227], [-77.36043680480235, 34.535910818013974], [-77.36067685947737, 34.535645062298286], [-77.36073457083492, 34.53557281364775], [-77.36081414577782, 34.535380466103675], [-77.36084298001776, 34.535315194109785], [-77.36091340968095, 34.535163101391234], [-77.36093012540562, 34.53511893816007], [-77.36091193517446, 34.535081880536296], [-77.36092342860952, 34.53504379270425], [-77.36101268064469, 34.5349846361717], [-77.36102607798422, 34.53496955847206], [-77.3610802446005, 34.53495448570594], [-77.36124269577965, 34.53500174463376], [-77.36153358855091, 34.534968146655174], [-77.36163696268153, 34.53492644726617], [-77.36173718678643, 34.534757876546095], [-77.36176980414919, 34.53458635523285], [-77.36188652778003, 34.534491541841625], [-77.36177178720646, 34.53443104474682], [-77.36171240409178, 34.53427179648014], [-77.3616829648222, 34.534256894616334], [-77.3616859364742, 34.53404881162954], [-77.36169643589625, 34.53402927166451], [-77.36173395492986, 34.53397691656031], [-77.36181672030196, 34.53386408468445], [-77.36192951342791, 34.533828892454515], [-77.3620543741288, 34.53383877246419], [-77.36222484336761, 34.5338143113517], [-77.36244961844494, 34.53372043576027], [-77.36252665039295, 34.53366486860634], [-77.36266879527219, 34.533533605866786], [-77.36294160341778, 34.5333602738122], [-77.36324865835877, 34.53310934223859], [-77.36367550466323, 34.53303000354254], [-77.364471840819, 34.53265019526147], [-77.36470172017923, 34.53253589200263], [-77.36483797197297, 34.532269579195145], [-77.36549711492884, 34.53192946292188], [-77.36535153154198, 34.53123852634242], [-77.3657087677422, 34.53051339538595], [-77.36535235931261, 34.53027234604235], [-77.36532342882984, 34.53007925969209], [-77.36512270404658, 34.52996342086798], [-77.36515240393283, 34.52977484283144], [-77.3652686061462, 34.52959750591134], [-77.36530398656105, 34.529351878430035], [-77.36530350773754, 34.52934765257549], [-77.36530613774367, 34.52934178080914], [-77.3652973273462, 34.52934195533077], [-77.36515665191058, 34.52921355537681], [-77.36510421680308, 34.52920404505066], [-77.36500779081364, 34.52914542890528], [-77.36496128276137, 34.529120064652474], [-77.36496820036346, 34.529064304635305], [-77.36502866967709, 34.52902000812159], [-77.36506960590671, 34.52898946738807], [-77.36522778027884, 34.52891832073418], [-77.36530705066987, 34.52891597303014], [-77.36538861552579, 34.52889633477881], [-77.36560937392728, 34.52862944401599], [-77.36567373493912, 34.528559836994866], [-77.36568272669157, 34.52854272520985], [-77.36570892588621, 34.52850583427716], [-77.36592339719449, 34.528279041819644], [-77.36605223271569, 34.528225802744274], [-77.36610889780478, 34.52817894116286], [-77.36632127432969, 34.52797689201237], [-77.36628681753479, 34.52784322886086], [-77.36624695329388, 34.52766399045814], [-77.36612195503957, 34.527606668556245], [-77.36607350882058, 34.52755390557742], [-77.36603617236108, 34.52752831574642], [-77.36604514487857, 34.52747727133924], [-77.36600276612593, 34.52736607050709], [-77.36600686547408, 34.527287711963126], [-77.3659471678742, 34.527181234742585], [-77.36594352765724, 34.52716952648968], [-77.36598965208167, 34.52704536571176], [-77.36587201353423, 34.5269822757578], [-77.36587118181522, 34.526940021199664], [-77.36587068388255, 34.52689565621403], [-77.3658680757258, 34.52687926220945], [-77.36587452351228, 34.52685968056431], [-77.36588561044621, 34.52681552937261], [-77.36594674086187, 34.52668460982706], [-77.36594702510803, 34.52668444303716], [-77.36594703110067, 34.526684093558984], [-77.36588093602185, 34.526571376615536], [-77.36581947999596, 34.52653926603023], [-77.36575413115155, 34.526524990926255], [-77.36567866180309, 34.526553855496246], [-77.36555630275005, 34.5265940556873], [-77.3655348085519, 34.526608036028904], [-77.36553081451083, 34.52662181949141], [-77.3654817157149, 34.5267063813873], [-77.36535352974317, 34.52687972636154], [-77.36534756910923, 34.52688946630151], [-77.36534138783371, 34.52689393609348], [-77.36532678126089, 34.52691226156824], [-77.36520369470729, 34.52703618621394], [-77.36518461724751, 34.52705853433133], [-77.36515262275803, 34.527083596219356], [-77.36506252005034, 34.52717893770111], [-77.36502963518572, 34.52723148068235], [-77.36494969295248, 34.52737602439568], [-77.36490648898382, 34.52741991892453], [-77.36457732671545, 34.52747962304376], [-77.36455485581885, 34.52747800357865], [-77.36451252862913, 34.527476575413445], [-77.36445676249585, 34.52747651848888], [-77.36437555645145, 34.527522729416006], [-77.36436552533398, 34.52752922291778], [-77.3643572988553, 34.52753503578283], [-77.36427736357051, 34.527610503619286], [-77.36415667869043, 34.52772617086342], [-77.36410257729418, 34.5277738132824], [-77.36402007316805, 34.52781876508619], [-77.36391555926139, 34.52793117083868], [-77.36375640636774, 34.52806594682735], [-77.36372407922384, 34.52808635712767], [-77.36370853388787, 34.528108469398965], [-77.36352004830069, 34.52823543603123], [-77.36342139675587, 34.52835467609952], [-77.36339113357263, 34.528399016903], [-77.3633727596318, 34.52841212702076], [-77.36335556279218, 34.528430580240915], [-77.36329133572337, 34.52853580544319], [-77.36327051422131, 34.52861073714415], [-77.36326284392064, 34.528662322231355], [-77.36329767685169, 34.52868971691489], [-77.36334839330746, 34.52874435373745], [-77.3633641847802, 34.52876006333003], [-77.36337778704807, 34.52876817749785], [-77.36344639502545, 34.528818523034346], [-77.36352265181911, 34.52886972236264], [-77.36352713398789, 34.528878096705924], [-77.36353382189043, 34.52898723269846], [-77.36353397018361, 34.52899050463797], [-77.36353387058267, 34.528993689892715], [-77.36353732858423, 34.52906484935486], [-77.36354129793813, 34.529111861754735], [-77.3635483413185, 34.52922412115987], [-77.3635449617767, 34.52923374665686], [-77.36354409929305, 34.529240598465464], [-77.36353595942751, 34.52935745597618], [-77.36350784859198, 34.529471322965385], [-77.36348653088093, 34.52951229672865], [-77.36342592905577, 34.52961813129691], [-77.36339244605253, 34.529663531178336], [-77.36333771897547, 34.529753250531], [-77.36332492698301, 34.5297713657064], [-77.36326863281194, 34.52985164686069], [-77.36314554817432, 34.529903344846964], [-77.36312545641148, 34.52991186251074], [-77.36310262013905, 34.529909528465765], [-77.36298592358737, 34.52989124940953], [-77.36293030261916, 34.529863441991516], [-77.36279349726824, 34.52979552791332], [-77.36257434382092, 34.52974079826028], [-77.36254131263402, 34.52970898563997], [-77.36243683017373, 34.52958274917163], [-77.36234210557012, 34.52952942491977], [-77.3622705001037, 34.529467273586434], [-77.36226376871821, 34.52941829617423], [-77.36220764110409, 34.52939416478844], [-77.36215743622787, 34.5293309284909], [-77.36212909718274, 34.52933292899004], [-77.36212172564359, 34.529316343454255], [-77.362132494439, 34.529298776932066], [-77.3620895477405, 34.52924217554685], [-77.36200149078205, 34.5292112493852], [-77.3619867263725, 34.52919931717842], [-77.3618829699239, 34.529177350301566], [-77.36176724193459, 34.52922930020023], [-77.36158652787006, 34.52939343115071], [-77.36152695969176, 34.52950083819403], [-77.36150806355312, 34.52964955698076], [-77.36175042587006, 34.52996465818488], [-77.36181901145407, 34.53005041823418], [-77.36184143500813, 34.530091190207884], [-77.36183819242899, 34.53014902885259], [-77.36185972464067, 34.53050236417578], [-77.36182350021626, 34.53058342313], [-77.36181568274858, 34.53063480949371], [-77.36185901453013, 34.53074428419766], [-77.36189609898884, 34.53081779119647], [-77.36196010625181, 34.53090914453273], [-77.36198254959545, 34.53096437771167], [-77.36202452612966, 34.53104411817321], [-77.36198766481091, 34.531129666387045], [-77.36196864488747, 34.53120597824528], [-77.36196194189166, 34.53129795726344], [-77.36185403518814, 34.531398573850936], [-77.36180873146216, 34.531506492793085], [-77.36178082316425, 34.53156886943149], [-77.36176503400233, 34.53160363121709], [-77.36171018512682, 34.53172438096953], [-77.36166817496765, 34.53180486495746], [-77.36166183040308, 34.53183083301311], [-77.36164228253678, 34.531873867839415], [-77.36158024741542, 34.53201044504581], [-77.36155597911127, 34.532090903619455], [-77.36152482625825, 34.53220415724838], [-77.36152363639178, 34.53221797432465], [-77.36152655972327, 34.532232687056755], [-77.36149576352905, 34.532344401052335], [-77.36154421337491, 34.53248964476485], [-77.36152022808609, 34.53258570215879], [-77.3614872671382, 34.53271030147734], [-77.36129333900351, 34.53278752873588], [-77.36116154875775, 34.5328001690137], [-77.36104398248176, 34.53289911910519], [-77.36094503902213, 34.53294317961155], [-77.36089593757504, 34.53300026260009], [-77.36077562019685, 34.533109105249686], [-77.36075467643096, 34.533185610283496], [-77.36077785041579, 34.53325232696237], [-77.36073841992072, 34.53343277628478], [-77.36071342139726, 34.53357557508228], [-77.36072417971002, 34.533679651649315], [-77.36066833586425, 34.5338020044643], [-77.36066553046628, 34.53382010439905], [-77.36067338719523, 34.5339317912847], [-77.3605980458581, 34.53401616874214], [-77.36049862083547, 34.53418781993574], [-77.36049606610324, 34.53420215357139], [-77.36048868712287, 34.53421132179423], [-77.36047524753593, 34.53423070654501], [-77.36043541763077, 34.534333300245564], [-77.36041844917301, 34.53442551168693], [-77.36040020307857, 34.5344607838791], [-77.36038153128743, 34.53451782523379], [-77.36035353520043, 34.53464229246466], [-77.36033598824845, 34.5347148562153], [-77.36026725177737, 34.53484570304262], [-77.36026644605343, 34.53484828268676], [-77.36022454271927, 34.53497573046867], [-77.36008041085428, 34.535228501222846], [-77.36008441878303, 34.535240734773446], [-77.36007058928027, 34.53524971438313], [-77.36005885565785, 34.53527284164247], [-77.3600113088217, 34.535373675729645], [-77.35999126593781, 34.53545948388557], [-77.35997794545067, 34.53550089252546], [-77.35991954245293, 34.535591639740446], [-77.35991069550207, 34.53563298952285], [-77.35990378588141, 34.535665284415934], [-77.35990036214318, 34.53575688962515], [-77.35983716730236, 34.535881236573694], [-77.35983035758673, 34.535889383310696], [-77.3597475505326, 34.535961812782105], [-77.35974695768718, 34.5359636450903], [-77.35981885653113, 34.53601345166687], [-77.35984514464285, 34.53603470944207], [-77.3599551531889, 34.53604744396835], [-77.35992960435092, 34.53617458689407], [-77.35994338102866, 34.536240342840024], [-77.35975068591904, 34.536335892987836], [-77.35976231806043, 34.53638883000204], [-77.35973315530634, 34.53645154732355], [-77.35972935160632, 34.53645972751052], [-77.35970131283118, 34.53652002742895], [-77.35968672961191, 34.536553140983244], [-77.35966512727049, 34.53662902651932], [-77.35966005592186, 34.53664838085014], [-77.35965634565093, 34.53666254075482], [-77.35963240700752, 34.536753899913926], [-77.35962517769133, 34.53677155905191], [-77.35962070794847, 34.5367764593291], [-77.35962082658132, 34.536783245667344], [-77.35954317351492, 34.536980024938046], [-77.35950045258438, 34.53703860094758], [-77.35944655359718, 34.53715652568344], [-77.35943996161149, 34.53716972419601], [-77.35943954557658, 34.53717796877553], [-77.35937506077447, 34.53730148215676], [-77.35940895108575, 34.53741145108764], [-77.35922251420479, 34.537511231153836], [-77.35912963305283, 34.53758164878852], [-77.35901426394486, 34.537716133867946], [-77.35888474005273, 34.53786173717853], [-77.35901926115201, 34.53796268106137], [-77.3589979880064, 34.53809025373983], [-77.35901962253358, 34.538203785017394], [-77.35901839748777, 34.5382148867957], [-77.35898773871338, 34.538336553542024], [-77.35898322565149, 34.53847270867356], [-77.35899531517362, 34.538700395745906], [-77.35893501575072, 34.53883379343646], [-77.35879568081532, 34.53900803785024], [-77.35864195206452, 34.539025189538016], [-77.35848354609438, 34.53914362784673], [-77.358509885715, 34.53931370559478], [-77.35846013738673, 34.539391822220615], [-77.35850576110653, 34.53945566081821], [-77.35848308630162, 34.539816740547266], [-77.35843725898434, 34.53988476404572], [-77.35850756049217, 34.53995327881454], [-77.35850259391628, 34.540284728882966], [-77.35841709761976, 34.540377314584525], [-77.3588193343925, 34.54052776389635], [-77.358812238001, 34.54059827570943], [-77.35886697330824, 34.54080218221653], [-77.35889566359496, 34.54088724048189], [-77.35890463223895, 34.540919171472886], [-77.3589137621648, 34.54093905241318], [-77.35891447088007, 34.54102057715996], [-77.35890628463903, 34.54104134545197], [-77.35891149613809, 34.54114331486624], [-77.3589090297533, 34.54118401111427], [-77.35891436305297, 34.54128500602914], [-77.35892319304699, 34.54129398059114], [-77.35892114994631, 34.541396382688156], [-77.35892127946701, 34.54140642202007], [-77.35892146342454, 34.54141597819815], [-77.35892352196358, 34.541521722052515], [-77.35891410131843, 34.54152986755378], [-77.35892287780344, 34.541645593772714], [-77.35891994451643, 34.54165850491844], [-77.3588357003142, 34.541785980667626], [-77.35880507891673, 34.54198681432725], [-77.35880820645023, 34.542034763464336], [-77.35889546819617, 34.54212899732589], [-77.35887794530248, 34.54217304505024], [-77.358869498991, 34.54227076153618], [-77.35891561365558, 34.542342570364646], [-77.35891980025723, 34.542382745794654], [-77.35892006301816, 34.54238589249926], [-77.3589206671588, 34.542389628942864], [-77.3587809834396, 34.54252833101153], [-77.35880714871797, 34.54258276330035], [-77.3588138037114, 34.54276842883961], [-77.35894887661382, 34.542843494954866], [-77.35898767670496, 34.5429189745191], [-77.35898654636918, 34.54298837875734], [-77.35900207539416, 34.54304461086545], [-77.35909512744092, 34.54307535521778], [-77.35916045641596, 34.543166123801335], [-77.35918860047947, 34.54320410760556], [-77.35929386206149, 34.54331632547799], [-77.3593325392319, 34.54342820474734], [-77.35941337536575, 34.54345746744528], [-77.35947770921112, 34.543512322296024], [-77.35954282666657, 34.543600875286444], [-77.35957066951578, 34.54363873847948], [-77.3595998442348, 34.543678412947564], [-77.35958741311568, 34.54370752714388], [-77.35954652107962, 34.543764627832395], [-77.35955620199685, 34.54383213132509], [-77.35953580786735, 34.54388858251963], [-77.359539356514, 34.54393251356336], [-77.35954538305917, 34.544081697951384], [-77.35955260666907, 34.544130987506506], [-77.35956803991415, 34.544185240458916], [-77.35956735463057, 34.544194505464134], [-77.35955942022218, 34.54423040548858], [-77.35955507059901, 34.54425062079179], [-77.35955340603013, 34.54425328443572], [-77.35954884644137, 34.54430968461129], [-77.35954826096824, 34.54432089874559], [-77.35953691828468, 34.544378070596565], [-77.35953381594281, 34.54442655582221], [-77.35953013344479, 34.54450145959193], [-77.35956907097409, 34.544546528323984], [-77.3595698466643, 34.54455694700278], [-77.35957072147994, 34.54456869708221], [-77.35957435517642, 34.54461750378324], [-77.35957757713945, 34.544660780199855], [-77.35957727215437, 34.54467828974225], [-77.35957876191007, 34.54469679368614], [-77.35957927659003, 34.54470860411318], [-77.3595780982214, 34.544720730567356], [-77.35957567732865, 34.544739725392404], [-77.35955096614524, 34.54480160899465], [-77.35955065230476, 34.54480453494224], [-77.35955037713595, 34.54480716733926], [-77.35947578568147, 34.54487652149925], [-77.3594662635884, 34.544890425779634], [-77.35944570747381, 34.544910451940495], [-77.35927111035349, 34.54504384165115], [-77.35924553365885, 34.54507985048339], [-77.3591711575121, 34.54508904864228], [-77.35915858980249, 34.54498909370528], [-77.35915405062164, 34.54492284985923], [-77.3591499965261, 34.5448636852268], [-77.35906262688546, 34.54469403227529], [-77.35906224217295, 34.544691245893766], [-77.35906190204898, 34.544688977268486], [-77.35905821158768, 34.54468784343729], [-77.35904596097922, 34.544685923233665], [-77.35853028329288, 34.54460854910228], [-77.35827539879025, 34.54458437251088], [-77.35792520858234, 34.54485496517847], [-77.35804577063756, 34.54497522176115], [-77.35800708657925, 34.54508800007281], [-77.35799124218482, 34.54516621337212], [-77.35800368803197, 34.5453333129218], [-77.35785967677943, 34.545594125053334], [-77.35785524765991, 34.54559678544218], [-77.35785427274432, 34.545599649818456], [-77.35784351131787, 34.545611038414], [-77.35757313035566, 34.54588495223422], [-77.35752281512892, 34.54593177681565], [-77.3574722475501, 34.54613337403261], [-77.35748201043039, 34.54614289503932], [-77.35745104205019, 34.54629414133858], [-77.35743896801029, 34.546387723332884], [-77.35743849220589, 34.54639398407264], [-77.35743809989366, 34.546400590288386], [-77.35743263869776, 34.546633015749094], [-77.35743248226674, 34.5466396727038], [-77.35743241984082, 34.54664626331497], [-77.35743113228408, 34.54670107290614], [-77.3574416697156, 34.546703197342325], [-77.35751030456277, 34.54670801069648], [-77.35755935230765, 34.546743817868354], [-77.3576087811323, 34.54675417500731], [-77.35773391051885, 34.546779604355905], [-77.35783236058826, 34.546786583878585], [-77.35786038301976, 34.54680514755893], [-77.35791941455808, 34.546814387885576], [-77.35802769673418, 34.54682869389698], [-77.35816120245522, 34.54681887345212], [-77.35822406936907, 34.546825555155294], [-77.35847437856805, 34.54689151499392], [-77.35861545261173, 34.54687875480041], [-77.35866482679586, 34.54692049829391], [-77.35866785706853, 34.54695144746813], [-77.35875696177493, 34.54702900691267], [-77.35879925631471, 34.54706014275412], [-77.35888295923309, 34.54716529891217], [-77.35894019971255, 34.54719485770138], [-77.35899905424074, 34.54727099448933], [-77.35899906116803, 34.54727100172771], [-77.35899907396428, 34.5472710196746], [-77.35905495410233, 34.54734939219557], [-77.35907820998216, 34.547382008741955], [-77.35909364434667, 34.54742742601882], [-77.35909803570694, 34.54743747808371], [-77.35910275582769, 34.54743968033156], [-77.35910324961486, 34.54744586215216], [-77.35911519193233, 34.54749909556998], [-77.35908286061945, 34.547569651175735], [-77.35932330543395, 34.547591540905515], [-77.35910611925385, 34.54769562759999], [-77.35909225001376, 34.54774722279879], [-77.3591095384702, 34.54779084018238], [-77.35914318296182, 34.54786230074606], [-77.35914503806758, 34.54796293248972], [-77.3591375819802, 34.547985519278285], [-77.35912229021177, 34.54802256820824], [-77.35902003577327, 34.54812485656946], [-77.35901302090507, 34.54814707004067], [-77.35899826895974, 34.54825040268314], [-77.35900296116472, 34.54826636028147], [-77.3590089644205, 34.54834970796775], [-77.35900433613517, 34.548371940976274], [-77.35902922798167, 34.54839471768291], [-77.35903187120205, 34.54839857922069], [-77.35902817292794, 34.54840281148845], [-77.35899993264975, 34.54843378097236], [-77.35902211191154, 34.54846044741009], [-77.35902204593253, 34.548461922798275], [-77.35902085249236, 34.54846341521072], [-77.35897513837187, 34.54849855700779], [-77.3589726219456, 34.54849996844651], [-77.3589709038052, 34.548501530370864], [-77.35887652198285, 34.548573962485506], [-77.35887658925685, 34.548577429498685], [-77.35878563433039, 34.54864825502436], [-77.35877095734719, 34.54866059705269], [-77.35872977884162, 34.548754369988146], [-77.35856986304157, 34.54886975971116], [-77.35853961996582, 34.548910219871644], [-77.35852084737756, 34.54893120398696], [-77.35835683408797, 34.54906965711357], [-77.35834955843626, 34.549078278523574], [-77.35828744259524, 34.54913710364882], [-77.35827287080868, 34.549152990617095], [-77.35826885489564, 34.549155767249935], [-77.3582208848557, 34.549219216914835], [-77.35820288044182, 34.549243122542954], [-77.35816760584478, 34.54929094828499], [-77.35811876862101, 34.549356331380615], [-77.35807929064362, 34.54943136137233], [-77.35802862664617, 34.54949172169958], [-77.35800133397562, 34.54951761752605], [-77.35796499755727, 34.549566078874335], [-77.35793113230554, 34.5496076467825], [-77.35788688942263, 34.549634540488356], [-77.35782189923951, 34.549678685638284], [-77.35776502711617, 34.54972599708496], [-77.35772525188965, 34.54975584796004], [-77.3576854330321, 34.549785957115375], [-77.35753585531752, 34.54991206933321], [-77.35736577728017, 34.550015570657344], [-77.35720976747923, 34.550099263541014], [-77.35712349349745, 34.55020817929473], [-77.35696568801909, 34.55034165157392], [-77.35692502668472, 34.55038508089233], [-77.35679172533871, 34.55054350248384], [-77.35656561981429, 34.550666676189515], [-77.35654062899185, 34.55068524442112], [-77.3563098056124, 34.55080576978377], [-77.35625124679089, 34.55084931637386], [-77.35620136184343, 34.550877192796], [-77.35616733856224, 34.550913617521935], [-77.35612338280055, 34.55096343848955], [-77.35609658038507, 34.550993993761224], [-77.35601146785918, 34.55110076575124], [-77.35598915342109, 34.551131870468296], [-77.35598141758894, 34.55114273836272], [-77.355965254064, 34.55116544603271], [-77.35587310017775, 34.55127098876499], [-77.3558248458631, 34.551314931442775], [-77.35576472796336, 34.55134925933295], [-77.35566441509778, 34.551363379298365], [-77.35549012045851, 34.55140044273523], [-77.35537056299219, 34.55141647398068], [-77.35530143425302, 34.551432823067984], [-77.3552718604901, 34.55144030346398], [-77.35519140535888, 34.55147992960757], [-77.35517258979893, 34.55148890177786], [-77.35516715958835, 34.55149167772708], [-77.35514250878371, 34.55151692883071], [-77.35503342432315, 34.551636686708044], [-77.35501317508292, 34.55166512983581], [-77.35497132364502, 34.55170486350477], [-77.3546839629831, 34.55193181379067], [-77.35462863930204, 34.55197477991321], [-77.3545721686922, 34.551989452496684], [-77.35445110318584, 34.55204009895044], [-77.35434610341548, 34.552085683754306], [-77.354174915043, 34.55219107110071], [-77.35412261912145, 34.55222531995397], [-77.35406666360454, 34.55226549323853], [-77.35402468787163, 34.552301858045226], [-77.35397561291845, 34.55232127113235], [-77.35389618045622, 34.552363518640185], [-77.3537903458348, 34.55242767773854], [-77.35378291460397, 34.55243259540643], [-77.3537766671292, 34.552435919237304], [-77.35361688450995, 34.55247599848405], [-77.35357916769696, 34.55248753669783], [-77.35352277017343, 34.55250116337929], [-77.35338148812868, 34.55254698875881], [-77.35330483606377, 34.55257254151705], [-77.35318349268975, 34.552620184592115], [-77.35310286390899, 34.552649042393256], [-77.35301661156996, 34.552680676400165], [-77.352985646431, 34.55268686777668], [-77.35294898258269, 34.55269395098039], [-77.35278827951613, 34.55273266357021], [-77.35263316215998, 34.552742476387664], [-77.3525916905065, 34.552744579087616], [-77.3525651782641, 34.55274298633353], [-77.35251827174403, 34.552733183159226], [-77.35232258169323, 34.55268517802773], [-77.35220139846939, 34.552642770415], [-77.35210052282562, 34.55261183009201], [-77.35196117576494, 34.5525685420395], [-77.35187576695294, 34.55254052251753], [-77.351812105559, 34.55249751512177], [-77.35169268475639, 34.55243768376279], [-77.35161696166855, 34.552373260620556], [-77.35152747912815, 34.55232131909895], [-77.35148684074517, 34.552269577098805], [-77.35142610379918, 34.55220910762168], [-77.35139025738286, 34.55218378138232], [-77.35136535326168, 34.55216465076821], [-77.35123843477263, 34.55205729074618], [-77.3511793508692, 34.55194659851138], [-77.35104324069285, 34.55178427096186], [-77.35100830325544, 34.55174868913429], [-77.35100009386849, 34.55172757544296], [-77.35096523361676, 34.551682492439795], [-77.35092551907769, 34.551615897357124], [-77.35090108768117, 34.551588448885724], [-77.35086518901538, 34.55150961920512], [-77.35086398327164, 34.55150234273262], [-77.35085457547787, 34.55145158296789], [-77.35084607158132, 34.5513887136779], [-77.35084211178861, 34.55138307974344], [-77.35084041432778, 34.55137337271348], [-77.35082115009081, 34.551263685676176], [-77.35079161272132, 34.551101243246094], [-77.35077736640616, 34.55102516559885], [-77.35076666643019, 34.55096607060162], [-77.35074517126586, 34.55090738845025], [-77.35067192818988, 34.5508572152152], [-77.35063177722313, 34.55082676974538], [-77.35058051856292, 34.550808673819745], [-77.35051910990973, 34.550791335769404], [-77.35047728531246, 34.55078465900493], [-77.3504578049033, 34.55077738020498], [-77.35042783062981, 34.5507694424407], [-77.35040972133116, 34.55075342102171], [-77.350403429581, 34.55074235143216], [-77.35038879556414, 34.550718939633235], [-77.35038816042568, 34.55071394621605], [-77.35038137756749, 34.55068690752614], [-77.35037876876203, 34.550656160118415], [-77.35037258914272, 34.55064895761791], [-77.35036022246501, 34.55059555623724], [-77.35035114936011, 34.55055637722982], [-77.35028865812026, 34.55045052086846], [-77.35026508540457, 34.55038013473709], [-77.35023431037357, 34.550368855423415], [-77.35011127873871, 34.550273415234116], [-77.35010079910998, 34.550263076944205], [-77.35009699912382, 34.55024827662979], [-77.35007388939678, 34.55016275745166], [-77.35006897125142, 34.55014782854945], [-77.35006144126356, 34.550124971466374], [-77.35004972055555, 34.550089393666994], [-77.3500420652967, 34.5500661563482], [-77.35004009522277, 34.550060176232655], [-77.35003432178544, 34.5500496786058], [-77.3500258378865, 34.550031625378864], [-77.35000422715571, 34.550014232020274], [-77.34996049937527, 34.55000719086492], [-77.34996707153398, 34.5499788772135], [-77.3499596549604, 34.5499512478017], [-77.34995913530372, 34.549947883088386], [-77.34995018233198, 34.54992010247604], [-77.34994350144967, 34.54989937207661], [-77.3499142220656, 34.549804947105386], [-77.34991361856099, 34.5498029538677], [-77.34991112438891, 34.54979459340209], [-77.34988857546219, 34.54969957080271], [-77.34988120200104, 34.54968520840518], [-77.34985587504264, 34.54965236181767], [-77.3497972059699, 34.54952734350451], [-77.34971517097786, 34.54946428067865], [-77.34964569120027, 34.54940062329866], [-77.3495312879387, 34.54923902606945], [-77.34942527704098, 34.54908467565197], [-77.34936167014844, 34.549025509975635], [-77.34909875583944, 34.548787148623546], [-77.34898615909276, 34.54858990617737], [-77.34895365032384, 34.548476084429296], [-77.34876462337913, 34.548432348212856], [-77.34856677778636, 34.54828608460835], [-77.34850740075805, 34.54816915898215], [-77.34840129845465, 34.54792857449485], [-77.34799503056678, 34.547753493935005], [-77.34799491188936, 34.54775334093013], [-77.34799486088686, 34.5477532720682], [-77.34799467037004, 34.54775306876877], [-77.34780835146881, 34.547411783543964], [-77.34775407689843, 34.54729827838149], [-77.347429531814, 34.54698125717047], [-77.34736319934767, 34.54686488263078], [-77.3472901617025, 34.54683843231463], [-77.34723233902093, 34.54677557153092], [-77.34703564754179, 34.546548291698315], [-77.34699749551034, 34.54642786339455], [-77.34680503976764, 34.54624006467085], [-77.34646455192636, 34.54601955932215], [-77.3464622133798, 34.54601674292814], [-77.34646042541384, 34.54601550144002], [-77.34644037308415, 34.546003072169476], [-77.34631710063535, 34.545885183185845], [-77.34622286609682, 34.54580486243954], [-77.34617717497586, 34.54574969888874], [-77.34622847723301, 34.54555923472109], [-77.34598112845246, 34.54541532495333], [-77.34569365312876, 34.54539912813171], [-77.3456896281506, 34.545394522200525], [-77.34568784037484, 34.54539220328357], [-77.34568086099125, 34.545385027732074], [-77.34565532115107, 34.54529980352214], [-77.34565082719215, 34.54527511881109], [-77.3456382005535, 34.54519208173947], [-77.3456319206572, 34.54515542912229], [-77.3454501220232, 34.54502433402548], [-77.3453826287456, 34.54490274566236], [-77.34531538533142, 34.54477764045464], [-77.34530374333484, 34.54472108052193], [-77.34528496074866, 34.544715709768795], [-77.34526861795503, 34.54468760260755], [-77.34519773217691, 34.54455993840615], [-77.34512148025652, 34.544494410993366], [-77.34493655204525, 34.54427758840838], [-77.34493664547901, 34.54427618473651], [-77.34493674417573, 34.5442747019993], [-77.34493443537802, 34.544272701373835], [-77.34493081019784, 34.54427479372827], [-77.3447284912335, 34.544190915513106], [-77.34466459904345, 34.54414522242559], [-77.34464362198551, 34.54407352352905], [-77.34459367238092, 34.54405156977883], [-77.34454718686524, 34.54404101196845], [-77.34449734945038, 34.54397215832611], [-77.34449863420042, 34.54388212666055], [-77.3444896969184, 34.543850849529406], [-77.34449230343665, 34.54364556874007], [-77.34444344376743, 34.54361268455289], [-77.34427293107817, 34.543570195857], [-77.34422065965794, 34.5435223270275], [-77.34416735793556, 34.54348783531988], [-77.3440696439078, 34.54348305010286], [-77.34406924988566, 34.54348295115297], [-77.3440691338348, 34.54348280183186], [-77.34406450528665, 34.54342238313019], [-77.34405371259201, 34.54335109897306], [-77.34403586816539, 34.54326686054432], [-77.34399272447715, 34.54318789067952], [-77.34400520008715, 34.543048716725295], [-77.34379771609149, 34.542971126916086], [-77.34378682211847, 34.54296551298559], [-77.34366389455322, 34.542824251275846], [-77.34363457197053, 34.542749778614855], [-77.34359683941776, 34.54269207309765], [-77.34357547661052, 34.542649801184965], [-77.34355550608234, 34.54261181292823], [-77.3436347976803, 34.54250492680949], [-77.3435978273038, 34.54239154507256], [-77.34340883873527, 34.54233281994355], [-77.34331442846386, 34.5423061975306], [-77.34328631975664, 34.54223239179693], [-77.34325372905572, 34.54216919415112], [-77.34321678876438, 34.542149051571826], [-77.34316651709382, 34.54217407740879], [-77.34307693213172, 34.54218228299074], [-77.34310921312802, 34.54214618440905], [-77.34319048277395, 34.542079209760175], [-77.34321940610405, 34.542035670509236], [-77.34330446813766, 34.5419928308133], [-77.3433301895952, 34.54187000041066], [-77.3433567138987, 34.5418104759824], [-77.34327584962837, 34.54166976808196], [-77.34328872384617, 34.54157543815134], [-77.34328657008363, 34.54148732899824], [-77.34324250874758, 34.54133726773276], [-77.34329103575645, 34.54124110802059], [-77.34327744515525, 34.54118587164198], [-77.34323922712287, 34.54117704262113], [-77.34317173802245, 34.54114517629341], [-77.3431418949747, 34.541141844216], [-77.34310787896054, 34.541133155237034], [-77.34309312358994, 34.541128807852985], [-77.34308756338544, 34.541114739822554], [-77.3430928022638, 34.54108422599339], [-77.3430903253105, 34.54108131123187], [-77.34309246641595, 34.541052829685114], [-77.34307084536526, 34.54104050223314], [-77.34305940454892, 34.541004161323215], [-77.34307041556193, 34.54099479723066], [-77.34305983635836, 34.540988495442065], [-77.34304759954983, 34.540975115025326], [-77.34303526800181, 34.54093864890524], [-77.34302908104193, 34.54089109242329], [-77.3430048483171, 34.54088182038232], [-77.34298717830583, 34.54084480640849], [-77.3429626880191, 34.540699980429764], [-77.34281479162354, 34.54066434318806], [-77.34275757918851, 34.54061381935105], [-77.34266653993348, 34.54047630211159], [-77.34260278087758, 34.54048959442689], [-77.34261027528154, 34.54044894616461], [-77.34258800401645, 34.540259430915], [-77.3425855305045, 34.54020768685372], [-77.34260165526632, 34.54016035374339], [-77.34250243656798, 34.53997482192828], [-77.34254952789746, 34.539886583354715], [-77.34251286757062, 34.53983359220225], [-77.34241942696303, 34.539741944778385], [-77.34238607879996, 34.53968817630038], [-77.3423783234967, 34.539554848309365], [-77.34238367700507, 34.53950226890809], [-77.34236733809222, 34.539461012573156], [-77.34236231889362, 34.53929866101191], [-77.34234373203826, 34.53926319659181], [-77.3423426169355, 34.53923837371922], [-77.34233287915964, 34.5390359336324], [-77.34234156372241, 34.53901868965141], [-77.34232774479315, 34.53900828326922], [-77.34230831671495, 34.53898895563074], [-77.34216940642126, 34.538886738560905], [-77.3420635561396, 34.53881386444776], [-77.34216917570734, 34.53870784814029], [-77.34217741371539, 34.5386393380121], [-77.34219855866755, 34.5385496244757], [-77.34217842351975, 34.53846395290597], [-77.34217207249733, 34.538431025449555], [-77.34216057333215, 34.53841073719417], [-77.3421778723511, 34.53833948614667], [-77.34220903592947, 34.53830329851491], [-77.34223607832925, 34.53824362176434], [-77.34225780179975, 34.53817387367406], [-77.34228918418466, 34.53807208796988], [-77.34230095715472, 34.53804525594209], [-77.342303461533, 34.53802802650007], [-77.3423313490282, 34.53799174598992], [-77.34233561060658, 34.5379815772081], [-77.34233845821026, 34.53797865632848], [-77.34238113377972, 34.53794163829511], [-77.34242717401997, 34.537904688860046], [-77.34243158160292, 34.53790118659804], [-77.34249891613001, 34.53787477535637], [-77.34253086392312, 34.53785176410743], [-77.34262167784146, 34.53782052159248], [-77.34272843303643, 34.53779601423919], [-77.34276288407216, 34.53775487580718], [-77.34278277710578, 34.53773112119708], [-77.34292947477418, 34.53758985567064], [-77.34293099498538, 34.53758831416438], [-77.34293218909463, 34.537587216498025], [-77.3429370884912, 34.537581878251004], [-77.34305846943468, 34.53744663932528], [-77.34309389831152, 34.53741921759843], [-77.34313060348192, 34.53737988733508], [-77.34317350858129, 34.53733377303891], [-77.34320926763428, 34.537302534777744], [-77.3432609508157, 34.537252140935294], [-77.34333143382591, 34.537182799845496], [-77.34338814847047, 34.537154389673894], [-77.34344279021919, 34.537092262509056], [-77.34353156941086, 34.53701576979423], [-77.34353645129566, 34.53701064358592], [-77.34364192208409, 34.536940801755584], [-77.34376105263303, 34.536855919721646], [-77.34385431632069, 34.53679579690906], [-77.34393054086235, 34.5367379227872], [-77.34405784599188, 34.53664647718039], [-77.34421568995072, 34.53654568889999], [-77.34426219542019, 34.53649755634368], [-77.34433060567163, 34.53641257290592], [-77.34466279782201, 34.53627614838753], [-77.3447268931796, 34.53625082627675], [-77.34475504572181, 34.53624067802889], [-77.34476640129586, 34.53622163265429], [-77.34478283406271, 34.53618532260203], [-77.34498702919069, 34.53594506799007], [-77.34493332722627, 34.53583067518198], [-77.34493325918096, 34.53583015499186], [-77.3449328830735, 34.53582977495778], [-77.34489416779297, 34.53571360983202], [-77.3449053579394, 34.53560991902759], [-77.34491511799679, 34.53557341829186], [-77.34498727676427, 34.535455392986236], [-77.3450231367274, 34.53537760653079], [-77.34502521075947, 34.53532752506943], [-77.34505706110993, 34.53525378291689], [-77.34508158497874, 34.53519700364964], [-77.34509820362962, 34.535165754709034], [-77.34514649171183, 34.53507831245755], [-77.34515216666928, 34.53506782647528], [-77.34515442388431, 34.535064113245795], [-77.3452131828621, 34.53497333151104], [-77.34521641396547, 34.53493278368326], [-77.34523416838297, 34.53487842320846], [-77.34525836531259, 34.534804337455284], [-77.34527795411024, 34.534756468288336], [-77.34528677304121, 34.53473904496969], [-77.34534504456276, 34.53467385202648], [-77.3453492965569, 34.53466884352577], [-77.34535227752137, 34.5346659062482], [-77.34546148361699, 34.5345974142453], [-77.34555196088283, 34.53451805193218], [-77.34567412313946, 34.53445253046392], [-77.34575069205525, 34.534411462794225], [-77.3457955116963, 34.534387423769765], [-77.3459088202735, 34.53436792813886], [-77.34594826804755, 34.53435495609118], [-77.345983588627, 34.53435477928156], [-77.34598209348731, 34.534332968507115], [-77.34610075377404, 34.53428761659224], [-77.34614794227411, 34.53420741798867], [-77.34618085765067, 34.53420241342128], [-77.34618142994212, 34.534181874595006], [-77.34616961154451, 34.534170590179656], [-77.34620624525158, 34.53409057586387], [-77.3462026218979, 34.534056415092564], [-77.34620435436369, 34.53402362545317], [-77.34615302701533, 34.53398684849623], [-77.34612821669589, 34.533960563294], [-77.34611504385502, 34.53394660733724], [-77.34595996027386, 34.53384781412305], [-77.34577527326715, 34.533995499008896], [-77.34576611613184, 34.53400052687689], [-77.34576751824432, 34.53405781990911], [-77.34581281285583, 34.534078551507996], [-77.34581268245073, 34.53408529236307], [-77.34581287746511, 34.5341124979504], [-77.3458341600826, 34.53412273567872], [-77.34583407472694, 34.53412675463893], [-77.34583396622506, 34.534140065882], [-77.34584020803338, 34.53414526468457], [-77.34584023696989, 34.53414681417752], [-77.34584144440078, 34.53414739240568], [-77.3458413174923, 34.53415356698756], [-77.34584131557374, 34.53415430959582], [-77.34584189841101, 34.53415459103173], [-77.34584186453829, 34.53415614325857], [-77.34584192455017, 34.534156456795024], [-77.3458418965862, 34.534157729999045], [-77.34584051819235, 34.53415824964695], [-77.345839323865, 34.53415864693565], [-77.34583847979869, 34.53415854296153], [-77.34583692830809, 34.53415835184518], [-77.34583626579052, 34.53415827023467], [-77.34583461577498, 34.53415806698173], [-77.34583264234941, 34.53415782389036], [-77.34583015062395, 34.53415747422706], [-77.34582841506915, 34.53415725153417], [-77.34582429770506, 34.534156758380284], [-77.34581797172201, 34.53415365158865], [-77.3458151339068, 34.53415221687963], [-77.34580584295958, 34.53414765439484], [-77.34580284680364, 34.53414643003311], [-77.34578844948672, 34.53414661549907], [-77.3457571682077, 34.53413059260332], [-77.34574729494805, 34.534128128041125], [-77.34566962806099, 34.53413985240047], [-77.34566105023232, 34.53419338814066], [-77.34566365251956, 34.53419517552314], [-77.34575489192494, 34.53422931473292], [-77.34576492867276, 34.53423545948194], [-77.34577332418893, 34.53424059942073], [-77.34585177063174, 34.53428386363617], [-77.34585659667421, 34.53428677028591], [-77.34586119957652, 34.534289159615426], [-77.34591020699212, 34.53431905889023], [-77.3457965155836, 34.53433223276869], [-77.34575257691966, 34.534329716328706], [-77.34566157357425, 34.53431366656707], [-77.34569469164977, 34.534251914139105], [-77.34564857642717, 34.53420282686391], [-77.34565033416253, 34.53419709194603], [-77.34562931983908, 34.534182329176744], [-77.34561710756722, 34.534166301597416], [-77.34560925838201, 34.53416118271031], [-77.34559307677401, 34.53414412591534], [-77.34557361337407, 34.534138875710866], [-77.34556074948284, 34.53413692975008], [-77.34555646473935, 34.534134092880755], [-77.34554902937576, 34.53412730940401], [-77.34554254729953, 34.534120794252246], [-77.3455517140375, 34.53409510935941], [-77.34552643970642, 34.53409250952953], [-77.34553809160184, 34.534075822962485], [-77.3455626062591, 34.53405640982719], [-77.34558636371557, 34.53403722289083], [-77.34560827181778, 34.5340195294999], [-77.34566260470258, 34.5339756492507], [-77.34570428871885, 34.53397043050028], [-77.34576202132669, 34.53392011360798], [-77.34592414820388, 34.533851666601706], [-77.34595285936237, 34.533843037847475], [-77.3459552589381, 34.533608739654916], [-77.345956270793, 34.53360222428822], [-77.34595172429289, 34.533370064640664], [-77.3459532685224, 34.533357836284615], [-77.34595495804764, 34.53334727610092], [-77.34594796541386, 34.53311377936127], [-77.34590086640156, 34.532925849422945], [-77.3459046835487, 34.53287518743316], [-77.34587191057011, 34.532810066309594], [-77.3458495073483, 34.53276071719444], [-77.34584905779596, 34.53272370374166], [-77.34568649157019, 34.532719806606224], [-77.34559364855842, 34.53271025326829], [-77.3455760110172, 34.53268896853314], [-77.34555298144585, 34.532680975998424], [-77.34548259278753, 34.532638983331424], [-77.34539886195066, 34.53264596369906], [-77.3453949224294, 34.532644985839525], [-77.34538713220299, 34.532643635717484], [-77.34535036347914, 34.5326213001847], [-77.34534633365236, 34.53262141553857], [-77.34532778487518, 34.532621572891806], [-77.34533973544018, 34.53261310690089], [-77.34535078370423, 34.532603079441884], [-77.34536242673605, 34.53258598569966], [-77.34538082238794, 34.53257100958059], [-77.34540097785838, 34.53255421670277], [-77.34545107099217, 34.532512025413226], [-77.34547458858285, 34.53249245800977], [-77.34554001360569, 34.532438022096954], [-77.34556876031988, 34.53241410385945], [-77.34558325811324, 34.53220078720416], [-77.3455791083903, 34.53218757664943], [-77.34552080162831, 34.532142365270865], [-77.34535748849842, 34.53197464652443], [-77.34534307398562, 34.53189983706365], [-77.34522049064206, 34.531869983534925], [-77.34513611606224, 34.53181509384099], [-77.34502572236957, 34.53180499589321], [-77.34500670849489, 34.53178030139082], [-77.34501237454576, 34.531667380967185], [-77.34500607322693, 34.531643403113165], [-77.34507228830978, 34.53152604512825], [-77.34508259248068, 34.53143225942674], [-77.34503412363668, 34.53116822812105], [-77.3449880017171, 34.531048533340126], [-77.34476884450089, 34.53088627033475], [-77.34472102734378, 34.53084212918106], [-77.34460994959598, 34.53076515917547], [-77.34457815852153, 34.5306899089541], [-77.34463005271064, 34.53061039979863], [-77.34454099715114, 34.53057598877655], [-77.34446931695312, 34.530401000550484], [-77.3444656033299, 34.53039169286506], [-77.34446497124775, 34.530389333680716], [-77.3444663305398, 34.53038707505938], [-77.34444113271759, 34.53027035394584], [-77.34444033135117, 34.530169469880555], [-77.34443087053054, 34.530149420751634], [-77.34442417473963, 34.53011815833514], [-77.34444468598537, 34.529924828571005], [-77.344445924369, 34.529902435067086], [-77.34434182330148, 34.529761318520265], [-77.34425749709334, 34.52968472778212], [-77.34419486135116, 34.52963117922694], [-77.34409638573598, 34.529551891312025], [-77.34402973613521, 34.52951478392434], [-77.34398420017018, 34.52947923194522], [-77.3438814399338, 34.529385654299254], [-77.34382830543063, 34.52933128368812], [-77.34377850199675, 34.529264009310516], [-77.34377186291141, 34.52922722592181], [-77.34371159353825, 34.529216943367715], [-77.34360478729421, 34.52911230699878], [-77.34355552396823, 34.52905127258719], [-77.34347243317339, 34.52897111452629], [-77.3434524125619, 34.528943698890025], [-77.34340027322395, 34.52887450646674], [-77.34337044447062, 34.52883308290481], [-77.34336327642596, 34.52881236891092], [-77.34332940310628, 34.5287694430925], [-77.34325451711393, 34.528653322706724], [-77.34320620192624, 34.52861189477491], [-77.34311290162215, 34.52851913884773], [-77.34309303205798, 34.52850576807269], [-77.34294421114251, 34.528452094072186], [-77.34289459866005, 34.52844298378535], [-77.34277290628783, 34.52842941739814], [-77.34275526002551, 34.52842774857182], [-77.34274852980894, 34.52842705484973], [-77.34273621393098, 34.52842701441076], [-77.34259052726118, 34.52843172851849], [-77.34255213735436, 34.52843280632031], [-77.34246212837388, 34.52841777427374], [-77.34245217933527, 34.52841574329138], [-77.34244653235007, 34.52841516963723], [-77.34235726526785, 34.52837274057472], [-77.34235513203127, 34.528368506467416], [-77.34235234442386, 34.52836751599442], [-77.34234549540064, 34.528360991069], [-77.34225134414585, 34.52825963762244], [-77.34222326134454, 34.528226949119706], [-77.34217976929685, 34.52815610725864], [-77.34217540372958, 34.52814815387068], [-77.34217817393797, 34.52814039528641], [-77.34216669131426, 34.528126644110316], [-77.34213373204284, 34.52805335299377], [-77.34210846053591, 34.52803537553081], [-77.34204097005245, 34.527964332349754], [-77.34201169866228, 34.527904352353744], [-77.34201036487585, 34.52780466966048], [-77.34203814980259, 34.52771456077973], [-77.34210280684381, 34.52759407126587], [-77.34206014276839, 34.52755268920217], [-77.34209017893679, 34.52749149331419], [-77.34218215796253, 34.527457182351604], [-77.34220295986078, 34.52740973249619], [-77.34218441440251, 34.527359514364065], [-77.34210728960863, 34.527349338138016], [-77.34199273048387, 34.52731756896691], [-77.34200602971916, 34.52718461893027], [-77.34179524327303, 34.527214834467216], [-77.34172150798315, 34.52715857208956], [-77.34164972368865, 34.527122098411844], [-77.34168497059221, 34.52694487887623], [-77.34160608534918, 34.52688355779981], [-77.34141534508505, 34.52666900259359], [-77.34141483602905, 34.52666660586082], [-77.34141501713587, 34.526666227744535], [-77.34141495019571, 34.526665947023595], [-77.34141543790098, 34.52666498679211], [-77.34141828293146, 34.52666575789555], [-77.34189940355628, 34.526782620353], [-77.34209768908771, 34.52681283063182], [-77.3421962893513, 34.52684551888276], [-77.34226509556345, 34.52683145885831], [-77.3423919996021, 34.526869140923424], [-77.34256116145033, 34.526746148890666], [-77.34255160082937, 34.52672254998062], [-77.34259331312086, 34.52665018595554], [-77.34267029279017, 34.52648562823196], [-77.34274758173368, 34.52632117024949], [-77.3429932425326, 34.52632895082667], [-77.3430896395666, 34.52623930802211], [-77.34317829219788, 34.52616771800357], [-77.34318752622444, 34.52603856796319], [-77.3433934867183, 34.525993948236334], [-77.34354979477833, 34.52586944536137], [-77.34355912793, 34.52572269246408], [-77.34379351053464, 34.52566835165879], [-77.3438557661043, 34.5256187169203], [-77.34390968697963, 34.52557284202201], [-77.34399358167173, 34.52550293622246], [-77.3440316508491, 34.525455951572894], [-77.34419386209713, 34.525328418263854], [-77.34427198728535, 34.52527589065218], [-77.34436247380998, 34.525120223043736], [-77.34459263836098, 34.52505661033992], [-77.34474060769065, 34.52496363883621], [-77.34480510575057, 34.52483892954652], [-77.34499193365829, 34.52476219015323], [-77.34507290759545, 34.52472091457747], [-77.34522167854641, 34.52464959324426], [-77.34527238569117, 34.52456963588364], [-77.34539176374854, 34.52444446094281], [-77.3455736480737, 34.52421951715338], [-77.34568567383442, 34.5240931821533], [-77.3461948145783, 34.523661545589775], [-77.34632409878441, 34.52359129780586], [-77.34704405760425, 34.523408051464536], [-77.34758887526112, 34.52321347014976], [-77.34777588959989, 34.52318007149785], [-77.34803694685814, 34.52310341580916], [-77.3493615579836, 34.5224981963716], [-77.34986303805755, 34.52233347144677], [-77.35057896978435, 34.52214494837532], [-77.35094210642025, 34.522037737091665], [-77.35113706277727, 34.52196012986322], [-77.35189695980753, 34.521730239984684], [-77.35235459905456, 34.521559282339894], [-77.35278826019457, 34.52143822548072], [-77.35410632651686, 34.52097833640587], [-77.35468269868367, 34.520705501651015], [-77.35538580977632, 34.520437549480896], [-77.35569142361511, 34.52031704214227], [-77.35584768536005, 34.52027906020862], [-77.3563193770089, 34.52011420451548], [-77.35704983162844, 34.51987070115364], [-77.3572736861912, 34.51977823353394], [-77.35779995395484, 34.5195756009648], [-77.3588564053293, 34.519218539359336], [-77.35929818264503, 34.518978065986516], [-77.3601546465673, 34.518582561985426], [-77.36044392783255, 34.518447995261155], [-77.36136052010595, 34.51799487768578], [-77.36202934563991, 34.51776814690085], [-77.36361130182108, 34.517105330013], [-77.36361324522704, 34.51710434868877], [-77.36361437831233, 34.517103963573675], [-77.36361738881459, 34.51710259454902], [-77.36520061649011, 34.51638582124064], [-77.36576886978051, 34.51616653969013], [-77.36678622799337, 34.515693894157515], [-77.36681617643377, 34.51568279039075], [-77.36686705082028, 34.51565693436739], [-77.36786659323828, 34.51520054487507], [-77.36837302283095, 34.514948846819095], [-77.36958479060456, 34.51428597765985], [-77.36978357524634, 34.51414658525457], [-77.3699625278324, 34.514083510628915], [-77.37023280596593, 34.51402480453171], [-77.37105315943454, 34.51377099260042], [-77.37154269647239, 34.51362692688037], [-77.37229543120026, 34.51338209826994], [-77.37312696498809, 34.51298921567136], [-77.37370204315344, 34.51271321062967], [-77.37437053336888, 34.51240506336741], [-77.37588418118146, 34.51167639557086], [-77.37630038788066, 34.51149519726146], [-77.37645868491542, 34.51143436901195], [-77.37666522584718, 34.51130669220841], [-77.37788950420995, 34.51064020836392], [-77.37838575326133, 34.51038528541824], [-77.37935379666968, 34.51001430926672], [-77.37947406204438, 34.509984861842824], [-77.37956066853464, 34.50996359311621], [-77.3808603690693, 34.50983889775374], [-77.38104697057169, 34.509842771450366], [-77.38131309233681, 34.50982288040677], [-77.38263435869703, 34.50906045073941], [-77.38294613995193, 34.508630721446096], [-77.38334443183284, 34.508384814668155], [-77.38422984567995, 34.50791853512436], [-77.38492082017424, 34.507604776121994], [-77.38581550634942, 34.50720964811024], [-77.3870968823098, 34.50667680116491], [-77.3881984054452, 34.506211849879435], [-77.38898462974016, 34.50588557174753], [-77.38926761124175, 34.50574621919389], [-77.38996806129674, 34.505470540704934], [-77.39056941127305, 34.50521201774066], [-77.3916401983052, 34.504913817516616], [-77.39215148959345, 34.50465733330592], [-77.3932684028505, 34.503719294283044], [-77.39374799270217, 34.5034604502148], [-77.3942159652739, 34.50318695769458], [-77.39526917872702, 34.50278640529019], [-77.3953330595016, 34.502770280787246], [-77.39535746881914, 34.50274895909185], [-77.39540431865808, 34.50272726431225], [-77.39691957761447, 34.502014269238494], [-77.39749532165574, 34.50180233794461], [-77.39850403442968, 34.50134877587314], [-77.3985606790041, 34.50132729271765], [-77.39870106159242, 34.50127197882855], [-77.39969207875546, 34.50088436134263], [-77.4012059880128, 34.500219443784445], [-77.40167252550577, 34.500033092752865], [-77.4019044103997, 34.49997394692386], [-77.40215557521627, 34.49979380719688], [-77.40325840387663, 34.49930054576707], [-77.40403983364814, 34.499026109780566], [-77.40484040931403, 34.49873986084375], [-77.40625710205161, 34.498118071555886], [-77.40701765177076, 34.49774677539531], [-77.40801227787185, 34.49726353118505], [-77.4083242162225, 34.49713699091144], [-77.40890637012538, 34.49685998642481], [-77.41045505980885, 34.4961868856647], [-77.41098166380685, 34.495852571127244], [-77.41160902848313, 34.49555964768362], [-77.41191440240527, 34.495220442910934], [-77.41212911544474, 34.49512284743536], [-77.41276160402869, 34.49493172273357], [-77.41313839991155, 34.49460753205391], [-77.41331100779601, 34.49451940251335], [-77.41382413199102, 34.49426001078318], [-77.41436371820993, 34.4939946781588], [-77.4144969432195, 34.49393082753152], [-77.41497085348357, 34.493629232998614], [-77.4154511292018, 34.49337475847594], [-77.41566134070153, 34.49326337795998], [-77.4161545229122, 34.49301642411607], [-77.41693266749452, 34.492774982029474], [-77.41757896795673, 34.49252069300985], [-77.41809080559474, 34.49229752341401], [-77.41891198365299, 34.49198049766115], [-77.4196049878722, 34.49156053087151], [-77.41995226452131, 34.49129794989282], [-77.42044998119397, 34.49107431509192], [-77.42119584485566, 34.49071426800813], [-77.42215465463283, 34.490339760590864], [-77.42250681909144, 34.49016333950662], [-77.42284808619767, 34.48999394104101], [-77.42375664199818, 34.48958268360912], [-77.4243095103905, 34.48909877331398], [-77.4246755494722, 34.488841118721844], [-77.42519105735997, 34.48871179207485], [-77.42602812962606, 34.48831042163329], [-77.4269897658203, 34.48788458729804], [-77.42730486621815, 34.48774283796871], [-77.42758552705988, 34.48761850392876], [-77.4283556511852, 34.48727879326425], [-77.42856735815133, 34.48716832499071], [-77.42877354542429, 34.487038173232015], [-77.42912775235905, 34.486846622388796], [-77.4293990422936, 34.48665651945303], [-77.42962233489543, 34.48649292033399], [-77.42991222800698, 34.486277198241176], [-77.430642578037, 34.485800629616556], [-77.43105505503203, 34.48553147669918], [-77.43116435512854, 34.48546015443762], [-77.43130160912784, 34.48540254917519], [-77.43181967263465, 34.485184593661764], [-77.4322783604684, 34.48508053826233], [-77.4334245330986, 34.48477651203086], [-77.43419927364943, 34.484508209267716], [-77.43475884843757, 34.48430284117149], [-77.43483614316423, 34.484274472493645], [-77.43491722567266, 34.48423594061302], [-77.43595245837784, 34.483743283308144], [-77.43610239693604, 34.48370176526026], [-77.43715093276352, 34.48320158359924], [-77.43744968454857, 34.483168444647625], [-77.43788643938953, 34.483036275345164], [-77.43963960029568, 34.48245411789789], [-77.44043928281008, 34.48224518163201], [-77.44120680736071, 34.4818544444635], [-77.44205956780044, 34.48145528983606], [-77.44267072198748, 34.48095339819721], [-77.44297649112534, 34.48059355242284], [-77.44314766662671, 34.4805097788587], [-77.44367331705789, 34.48025251903477], [-77.44423296398308, 34.479982024811655], [-77.4443362045403, 34.47993199440654], [-77.4450959443351, 34.47975578699591], [-77.44594952000016, 34.47939390748661], [-77.44638249020562, 34.479192912143574], [-77.44672732927668, 34.47882799740558], [-77.44683833558847, 34.478763640854986], [-77.44755700171747, 34.47857558180287], [-77.44839076000179, 34.47816713692155], [-77.44880199750567, 34.47799250595024], [-77.44913770688052, 34.47779465358368], [-77.44966635371776, 34.477556538091164], [-77.45007167431825, 34.47742142199348], [-77.4511161961404, 34.47695478615102], [-77.45133648840437, 34.476847971064466], [-77.45152845001022, 34.476689641231275], [-77.45218780827362, 34.47633378349356], [-77.45243648607095, 34.4761944194576], [-77.45271190973985, 34.47609361994167], [-77.45350745228309, 34.47572538601415], [-77.4537438891541, 34.47564165826811], [-77.45391747924334, 34.47557855044193], [-77.45504437572731, 34.47508553340982], [-77.45610111660721, 34.474631800826025], [-77.4563281501909, 34.47454683861378], [-77.45636042365926, 34.474536965651716], [-77.45638906709881, 34.47452087418331], [-77.45796147801673, 34.47412687277677], [-77.45871452296048, 34.473426411675845], [-77.45882170543905, 34.47335680986091], [-77.45890689193216, 34.47329781342671], [-77.45986813751172, 34.472721513686146], [-77.45989788968056, 34.47269167513709], [-77.45990464726357, 34.47267299727318], [-77.46104836922281, 34.47211404222194], [-77.46109949448473, 34.47208748249224], [-77.46115372064783, 34.47206094115233], [-77.4622373747466, 34.47153871744202], [-77.46233303511445, 34.471498804347675], [-77.46342497260238, 34.47095829322771], [-77.46357831785413, 34.470915828862076], [-77.4636751930732, 34.470837980226], [-77.46461511154018, 34.47038721666347], [-77.46477303139883, 34.47030828081103], [-77.46494410083122, 34.47022689774422], [-77.46578359952748, 34.46973700409633], [-77.46592502714643, 34.469679973874506], [-77.46609339000324, 34.46960973171055], [-77.46698068053364, 34.46919141867256], [-77.46721418869824, 34.46911830786285], [-77.46731847996205, 34.468996403570934], [-77.46813604340147, 34.46849331730975], [-77.46824658846, 34.46843189164124], [-77.46838796713561, 34.46837516881768], [-77.46934366127908, 34.46798636638539], [-77.46958091356197, 34.46789216238576], [-77.46982722096249, 34.46777268654589], [-77.47055837569457, 34.46750540975481], [-77.47089745711718, 34.4673437926655], [-77.47132733303475, 34.467173276928385], [-77.4717565354356, 34.46696396270566], [-77.47227512219135, 34.466825107862135], [-77.4729519242816, 34.46641242697504], [-77.47281109611711, 34.46589751342328], [-77.47266929858209, 34.465379035986345], [-77.4718845633395, 34.46585051456592], [-77.47116464874541, 34.46628560260933], [-77.47033435807126, 34.46668623478088], [-77.4691833290037, 34.467064497446046], [-77.46840259140836, 34.46731966459266], [-77.4678717351701, 34.46752671440272], [-77.46665451906695, 34.468287181320775], [-77.46614749540888, 34.46860002724516], [-77.46555005195026, 34.46888282026365], [-77.46440366498612, 34.46952393431697], [-77.46384199011239, 34.46985589141178], [-77.46320567069264, 34.47015614116481], [-77.4619852520929, 34.47075214042179], [-77.46139332642159, 34.47104218596162], [-77.46082829107715, 34.47130897518334], [-77.45933460104146, 34.47196850388561], [-77.4588689838006, 34.47219169389404], [-77.458443530451, 34.47243500920436], [-77.45683949598956, 34.47319272456504], [-77.45656485035398, 34.47344819216476], [-77.45606228965065, 34.47357411956817], [-77.45522353226018, 34.47398448010574], [-77.45425959583137, 34.47441258916984], [-77.45394106567402, 34.474549356388806], [-77.45366876625769, 34.47466848734005], [-77.45256619444609, 34.47506932191845], [-77.4524438318285, 34.475112653341874], [-77.4512860808856, 34.475612383955216], [-77.45126022806748, 34.47562276903111], [-77.45123995761678, 34.475633924353545], [-77.45019967795903, 34.476232628100625], [-77.45015172605228, 34.47627217880851], [-77.4489692553369, 34.47684553399374], [-77.44892625936943, 34.476864742265974], [-77.44888717616186, 34.47687777089192], [-77.44839920212851, 34.47709052630792], [-77.44763244754556, 34.47742408451999], [-77.44648029945787, 34.47792383805975], [-77.44629208265873, 34.47796079206494], [-77.44619711230187, 34.478055461193755], [-77.44510044687492, 34.47856979034955], [-77.4440951955547, 34.47904978835459], [-77.44386770551614, 34.479158803835254], [-77.44357321996844, 34.47927288497831], [-77.44261053657927, 34.479735940677685], [-77.44170956351142, 34.48017400347429], [-77.44125078023391, 34.48026320193564], [-77.43929486714958, 34.481191995453685], [-77.43879554889558, 34.48144618704268], [-77.43837537454002, 34.48171012005398], [-77.43616780268736, 34.4825452957902], [-77.43579706842291, 34.48292973546383], [-77.43515399781653, 34.48324072654128], [-77.43459456971765, 34.48354394702647], [-77.43455655776272, 34.483562089306815], [-77.43391895627398, 34.483828596754186], [-77.43278010705171, 34.484126912279784], [-77.43237610480145, 34.48426682353129], [-77.43207777511064, 34.48434595650764], [-77.43107794634214, 34.484572772163546], [-77.43071054138998, 34.484645382180226], [-77.4296225053658, 34.48521607941706], [-77.42946416220883, 34.48530876304789], [-77.42912239872837, 34.485594002109806], [-77.42858931345413, 34.48599069408496], [-77.42850452067363, 34.48605281895642], [-77.42781511380839, 34.48657565309535], [-77.42761201509302, 34.48670385526135], [-77.42737025755264, 34.48683000386471], [-77.42705283319413, 34.48702614635494], [-77.42667739397116, 34.487193096944445], [-77.42641407963012, 34.48730974640506], [-77.42532521813527, 34.4877995756394], [-77.42514320823736, 34.487880173753695], [-77.42498477468564, 34.487956141561], [-77.423580161193, 34.48830852017174], [-77.4225828080095, 34.48901055621257], [-77.42258178743728, 34.489011449490995], [-77.42258011028078, 34.48901220865524], [-77.42137234892371, 34.48961171829732], [-77.4202097480118, 34.49019413741545], [-77.42017116760746, 34.49021603316122], [-77.42012915925366, 34.49023623960046], [-77.41890240067443, 34.49078744860286], [-77.41798921343953, 34.49147792289328], [-77.4179398889214, 34.491507813994886], [-77.41788144164083, 34.4915303782767], [-77.41710069814872, 34.491870795230525], [-77.41663580422191, 34.492062067550876], [-77.41660431155232, 34.49208264644242], [-77.41545959673725, 34.49252407680747], [-77.41526087033817, 34.49258186170407], [-77.41509752010441, 34.49268111607263], [-77.41410592877452, 34.49320863288174], [-77.41308530658776, 34.49369223119056], [-77.41265592905714, 34.49390728628691], [-77.41167862248548, 34.49440506510487], [-77.41070628578188, 34.494843254190165], [-77.41008718093838, 34.495126903483154], [-77.40930133402372, 34.495625798381006], [-77.40803657276271, 34.49617549647433], [-77.40716179585837, 34.49657165792189], [-77.40556513746928, 34.497342659747346], [-77.40511480691337, 34.49756250863058], [-77.40486428302168, 34.49767246406981], [-77.40430117188188, 34.49787380664358], [-77.40283910029574, 34.4984421038655], [-77.40169668351834, 34.498954788073775], [-77.40047667320245, 34.499279490039214], [-77.39852730142864, 34.50031196417397], [-77.39851399033388, 34.50031964450855], [-77.39641202681949, 34.501275392998345], [-77.39571733749699, 34.501702735960976], [-77.3953530515965, 34.501880880932454], [-77.39424730384432, 34.50220892064469], [-77.39377214766533, 34.50238674541979], [-77.39245728237526, 34.50298532187054], [-77.39218671662519, 34.50309275862542], [-77.3920850251494, 34.5031436275377], [-77.39193315132702, 34.503228281123306], [-77.39018846330478, 34.50420758533653], [-77.38901018132262, 34.50475260362197], [-77.388059284319, 34.50515837241877], [-77.38590314821579, 34.506019147772925], [-77.38584184546647, 34.50604368276387], [-77.38581648459363, 34.50605387441509], [-77.38576554438288, 34.50607690246445], [-77.3836973888539, 34.50700954072977], [-77.3826686664347, 34.50754424063302], [-77.38173980433541, 34.50804378381826], [-77.37951629647807, 34.50892556669716], [-77.3794979355804, 34.50893152323916], [-77.379489740224, 34.5089357139537], [-77.37947239328666, 34.50894326914613], [-77.37723931768477, 34.50982744617656], [-77.37632689837787, 34.51032743717144], [-77.37531712097052, 34.51087888461496], [-77.37384826231863, 34.51171281247505], [-77.37339567694741, 34.51193068639688], [-77.37314844365834, 34.51204465105846], [-77.37243525679358, 34.512456733527436], [-77.372154541098, 34.512569587363004], [-77.37156237502158, 34.512762235494954], [-77.37123640871626, 34.51286674951804], [-77.37077157445488, 34.51302244479385], [-77.37023782323902, 34.513055413650584], [-77.36998560253666, 34.51307042288951], [-77.36966169422186, 34.51309384521454], [-77.36907361076538, 34.513380338305254], [-77.36857220380031, 34.51355706699816], [-77.36840202863809, 34.513676397772244], [-77.36785222425695, 34.514200116255964], [-77.36681474484277, 34.51468178046228], [-77.3668092684502, 34.51468396347602], [-77.36680655751717, 34.51468466436471], [-77.36680264740501, 34.51468690896052], [-77.36464474859031, 34.51561944778526], [-77.36383183455794, 34.51609425494315], [-77.36363541023721, 34.51618357882216], [-77.36250841671811, 34.516566623432404], [-77.36205154837265, 34.516797319428385], [-77.36081803592167, 34.517290853747106], [-77.36046813644475, 34.51739032426411], [-77.36029579179336, 34.51747665534604], [-77.36002554774768, 34.517621858384544], [-77.35888163056795, 34.51811734910661], [-77.35802044524527, 34.51835613932229], [-77.35729786523083, 34.518723575177106], [-77.35606677458597, 34.51917128703159], [-77.35579481480646, 34.5192598135543], [-77.35571524824591, 34.51927868925799], [-77.35553862889554, 34.51935640000311], [-77.35413465522373, 34.51974468934123], [-77.35319396573713, 34.519980803951604], [-77.35097030338576, 34.52081182216075], [-77.34976873723603, 34.52105730992899], [-77.34795622498261, 34.52140518743484], [-77.34781582995922, 34.52144641240317], [-77.34763169715674, 34.5214792964452], [-77.3462418615478, 34.52162107540927], [-77.34615274319567, 34.52163318008798], [-77.34468242714819, 34.521798464445276], [-77.34466778776164, 34.52179994873182], [-77.34465555233184, 34.52180084078906], [-77.34393530883091, 34.5219315021978], [-77.34387826776674, 34.521996811802765], [-77.34328190258634, 34.52199088166594], [-77.34311036154607, 34.52200480108386], [-77.34309302383878, 34.522008342225746], [-77.34298000497193, 34.52196317336642], [-77.34223595194265, 34.52170113564252], [-77.34203719937518, 34.52150412448523], [-77.34171650784461, 34.521236837328665], [-77.34154467447318, 34.521073503710355], [-77.34089700017694, 34.52078364494202], [-77.34031435395174, 34.52045929092207], [-77.3401665107482, 34.520371071737955], [-77.33999027864955, 34.52040150102774], [-77.3398258145132, 34.520427360358674], [-77.33968327542101, 34.5205500806408], [-77.3391940830061, 34.52088680990155], [-77.33893421899258, 34.5208208833322], [-77.33874542199753, 34.520894890780326], [-77.33865329579018, 34.521033455286165], [-77.33879941977307, 34.52116686458373], [-77.33839534832447, 34.52148138104169], [-77.33830499288362, 34.52167404611636], [-77.33813280687592, 34.52175239211249], [-77.33799171442135, 34.52196273507832], [-77.33797878605378, 34.52201201264031], [-77.33792102953322, 34.52207021039722], [-77.33765953905404, 34.52231010381494], [-77.33762235881136, 34.522335263788875], [-77.33758938380615, 34.52238761856833], [-77.337368484331, 34.52259678640671], [-77.33727600772977, 34.522663421752846], [-77.33682695219642, 34.522898051172106], [-77.33679253845604, 34.52289952539797], [-77.33675102452266, 34.52290459521227], [-77.33650310932063, 34.52296607264216], [-77.33537396107431, 34.52322765576809], [-77.3352136500038, 34.523283696769276], [-77.33484642346433, 34.52343125845886], [-77.33267540963185, 34.52390081058648], [-77.33205187600248, 34.524222061226105], [-77.33075028631009, 34.52495060254745], [-77.33045309851774, 34.52545966322314], [-77.33009185461128, 34.525846548556], [-77.32932488991747, 34.52624376225373], [-77.32885754154401, 34.526556766866264], [-77.32855249424665, 34.52686127386714], [-77.32824383353206, 34.52709148633723], [-77.32778477067168, 34.52748105664617], [-77.32725680027886, 34.527874712152524], [-77.32663714492836, 34.528301701876785], [-77.32653579706484, 34.52886015126646], [-77.32630377148, 34.529328876930805], [-77.32637199282766, 34.529774069727665], [-77.32637416607243, 34.529808389359175], [-77.32563556439695, 34.53007005997464], [-77.32544616193883, 34.53006004496072], [-77.32524421161958, 34.53001948218656], [-77.32506694916646, 34.53013217286047], [-77.32506563823135, 34.530347876989396], [-77.32514910065125, 34.53047409590331], [-77.32523531748068, 34.53070214191465], [-77.32525679672513, 34.53094824478116], [-77.32560958395877, 34.53118509764677], [-77.32567547761263, 34.5313344313079], [-77.32568403891709, 34.53137646690988], [-77.32570185165584, 34.53143508385091], [-77.32579666809238, 34.53172537708136], [-77.32592958142982, 34.531830803226605], [-77.32598599809816, 34.53187719120898], [-77.32611690588098, 34.53196576314977], [-77.3263756614492, 34.53200069303338], [-77.32645538813354, 34.53195104044765], [-77.32641517946358, 34.532005821477746], [-77.3263742547977, 34.53206108911263], [-77.32626761822856, 34.532207465548446], [-77.32621240269086, 34.532279780816985], [-77.3260893393174, 34.5326174874444], [-77.32556896584246, 34.53292837632097], [-77.32494528528457, 34.53305401611532], [-77.32457729749231, 34.53313030998339], [-77.3239913970684, 34.53324522730557], [-77.32363746113678, 34.533410777633264], [-77.32240169135588, 34.534081567714054], [-77.32031368093465, 34.535085951877875], [-77.31964004517307, 34.535438733137596], [-77.31922333666748, 34.53570479818546], [-77.31659860714826, 34.53757815966001], [-77.31627854799027, 34.537776418580904], [-77.31603191831928, 34.537880538609166], [-77.31460713047322, 34.53874013541939], [-77.3128465800635, 34.53978975767614], [-77.31253125079824, 34.53992617599442], [-77.31216246586726, 34.54017377552478], [-77.3096649151583, 34.54153619914271], [-77.30879181587792, 34.542079747365506], [-77.30794687297282, 34.54273753471141], [-77.30712204516774, 34.54325394529395], [-77.30647349128364, 34.54369164216638], [-77.30526868728793, 34.54433868766609], [-77.30362332152842, 34.54531662465727], [-77.30342215599163, 34.54542678004707], [-77.30329007488913, 34.54550008724784], [-77.3016402117625, 34.54654630523982], [-77.30009685692407, 34.54771784934345], [-77.29994963425419, 34.54780228010791], [-77.29798117444507, 34.54873902949626], [-77.29691164497255, 34.549589577790016], [-77.29594594454551, 34.550335132202235], [-77.29494512227996, 34.55123529487734], [-77.29371841608396, 34.55179374085011], [-77.29292395933436, 34.552238278952444], [-77.29142559853996, 34.55294192969524], [-77.29089529590944, 34.55323760347977], [-77.29053501790028, 34.553576041730906], [-77.28990362398261, 34.553777128426944], [-77.2881009850636, 34.55484471088988], [-77.28724425778466, 34.55538666089792], [-77.2856700158921, 34.55662264885321], [-77.28537332715543, 34.55685646037497], [-77.28393424787384, 34.55800029052963], [-77.28336049341729, 34.55841008285957], [-77.28101518134014, 34.559745556476145], [-77.28064011439385, 34.55993879181848], [-77.28029291345219, 34.56013794395984], [-77.27832840779925, 34.561364232675686], [-77.27747844493999, 34.56188563041813], [-77.27734343620708, 34.56197731926841], [-77.27487951821068, 34.56365019655958], [-77.27446582505338, 34.56394925692592], [-77.27351609725926, 34.56465510371273], [-77.27282714519505, 34.565120511528676], [-77.27237793925887, 34.56533890629844], [-77.27094543271959, 34.566075632337714], [-77.27079350002728, 34.566278074076756], [-77.27021124657853, 34.56705390386205], [-77.26974705589767, 34.567638537702685], [-77.26945561800139, 34.56793716932759], [-77.26887468001277, 34.56846669783819], [-77.26840647363937, 34.5687973444753], [-77.268235385184, 34.56892282480541], [-77.2678158001312, 34.56926125296327], [-77.26648478577532, 34.56999461817046], [-77.26570130079153, 34.57046993070012], [-77.26473212547153, 34.57106459851852], [-77.26393556700847, 34.57178670319178], [-77.26343870470056, 34.572177303412346], [-77.26320711226049, 34.57233708384936], [-77.26254248967705, 34.57302177146149], [-77.26250878618019, 34.57304682476234], [-77.26249975465123, 34.57305937541723], [-77.26170562816468, 34.57363052276064], [-77.26119888185318, 34.57388643356644], [-77.26005291324861, 34.574610842269706], [-77.25992829421052, 34.574678614781334], [-77.25960332499842, 34.57487907999366], [-77.25843595402424, 34.57555435533477], [-77.2581869687205, 34.57575875070912], [-77.25757607168036, 34.57617449592243], [-77.2564456504364, 34.57683890264234], [-77.25583733175077, 34.577235161892844], [-77.25300617565479, 34.5788193376009], [-77.2528783841449, 34.57888756360169], [-77.25285307271665, 34.57890149094977], [-77.25281049000293, 34.57892937726726], [-77.25038444886454, 34.58057651631623], [-77.24965151555064, 34.5813119834947], [-77.24873696594244, 34.58188745740684], [-77.24816253292444, 34.582286880017655], [-77.24796298538683, 34.58243919731122], [-77.24759022682888, 34.582581890065875], [-77.24590487107193, 34.58323761452287], [-77.24434843864861, 34.58387169030189], [-77.24179025863884, 34.58483592762475], [-77.24078987556834, 34.58547661554188], [-77.24015860772809, 34.586013820615555], [-77.23932419800235, 34.58688067136482], [-77.23905009698603, 34.587224856494], [-77.23882480717073, 34.587456724678724], [-77.23842615932644, 34.58736216199276], [-77.23620739698882, 34.58804719470353], [-77.23414871080298, 34.588555523083656], [-77.23303603338559, 34.589234047522666], [-77.23107068721337, 34.59036625868343], [-77.23062356891256, 34.590678445324635], [-77.22973772054168, 34.59120039145514], [-77.22972441866213, 34.591202738703814], [-77.22843081077878, 34.59135712368762], [-77.22692652215682, 34.591520161364855], [-77.22615894546051, 34.59160723714035], [-77.2258237571049, 34.591667113902965], [-77.22542185283466, 34.59180580641274], [-77.22471100778981, 34.59199187559966], [-77.22442674180824, 34.59245542832339], [-77.22434470475267, 34.5926634772635], [-77.22423976650033, 34.59288753128569], [-77.2239433495581, 34.59357450072174], [-77.22338755083379, 34.59475918502628], [-77.22271804967889, 34.59603350034492], [-77.22217442120228, 34.59720568042295], [-77.2216038750148, 34.59843208225836], [-77.22112524238558, 34.59956817489196], [-77.22070335682571, 34.60086043720935], [-77.2199740576738, 34.60224201031318], [-77.21885264328897, 34.60335704077623], [-77.21792052232843, 34.60441150637559], [-77.2175057189568, 34.60530581131603], [-77.21534769961788, 34.60629121855285], [-77.21188256414564, 34.607705283801586], [-77.2099967112868, 34.609144645235325], [-77.20952306262356, 34.60940426411146], [-77.20928906447357, 34.609872236164875], [-77.20861619517596, 34.611218011907965], [-77.20793832153996, 34.61257365638042], [-77.20461460167341, 34.614156082274086], [-77.20407261950865, 34.614394271431124], [-77.2016976523925, 34.61444176438076], [-77.19809058554077, 34.61433118197635], [-77.19773907159434, 34.61440739984629], [-77.19731713726459, 34.614347786332544], [-77.1923593731234, 34.61449107224456], [-77.19089698893734, 34.61459223502261], [-77.18905913017427, 34.615326662944724], [-77.18826640712592, 34.61610928710029], [-77.18707928356329, 34.61705530016262], [-77.18624842259918, 34.61957485096955], [-77.18426864691747, 34.62060364302073], [-77.18052998324984, 34.62172646812293], [-77.17755165962575, 34.62235678860806], [-77.17683553727622, 34.62235677973872], [-77.1748514962257, 34.622741848402825], [-77.17313291022201, 34.623002943277875], [-77.17161026629942, 34.62337085930407], [-77.16764229531375, 34.6240587373062], [-77.1687305631317, 34.62502790680826], [-77.17105521127934, 34.6270979965303], [-77.17570485551602, 34.6312380279716]], [[-77.43510740076182, 34.75496010219714], [-77.43510282199468, 34.754944204230334], [-77.43508043709991, 34.75487781934233], [-77.43513557967549, 34.754919420179824], [-77.43513889327478, 34.754946966530504], [-77.43578808594091, 34.754676181976464], [-77.43578160371533, 34.7546222944531], [-77.43573649330204, 34.754453837240405], [-77.4355477937356, 34.75398157899298], [-77.43558961177374, 34.75386616588257], [-77.43552637709665, 34.753569320755915], [-77.43549002971885, 34.75346130278641], [-77.43552044882308, 34.75341299016996], [-77.43552450528276, 34.753359945941774], [-77.43552913144094, 34.75313650518716], [-77.43558737060836, 34.75297429947093], [-77.4356259739194, 34.75289081885178], [-77.43565526957292, 34.752825807615295], [-77.43580899590677, 34.752592924084766], [-77.43588182063668, 34.752448104954055], [-77.43589550237584, 34.75242594243075], [-77.43597598533103, 34.75236579849338], [-77.4361312988162, 34.752228799711915], [-77.43618675118556, 34.752198409019975], [-77.43625745485322, 34.7521513594594], [-77.43646213756801, 34.75206485960055], [-77.43651819391985, 34.75199201263081], [-77.43664767273381, 34.7519110002338], [-77.43670522981454, 34.75187026556375], [-77.43684043143313, 34.75177058523652], [-77.43698965062167, 34.75169010879925], [-77.43718400679751, 34.75158400686805], [-77.4374181277462, 34.75146473872224], [-77.43754184913873, 34.75142072943809], [-77.4376466678961, 34.75136059896367], [-77.43778261646776, 34.751313252706154], [-77.43791970456705, 34.7512901363026], [-77.43812823122684, 34.75122697422586], [-77.43830284047463, 34.75116816746517], [-77.43849699089577, 34.75109861458556], [-77.43867326697381, 34.75102544428188], [-77.4387894650435, 34.750921270296445], [-77.43887089774373, 34.75087667411157], [-77.4389992375165, 34.75081012401544], [-77.43914371686031, 34.75076550589969], [-77.43923319508701, 34.75073273684957], [-77.43938608092901, 34.75069421255882], [-77.43962563330341, 34.75048464183827], [-77.43970738811774, 34.75047127970383], [-77.43972682759417, 34.750410173198915], [-77.43991409425666, 34.75027660814921], [-77.44020093139429, 34.75001676150663], [-77.44028724248034, 34.74992293255816], [-77.44044155902645, 34.74988112864534], [-77.44080253869298, 34.749667888744455], [-77.44096878180795, 34.74954064689172], [-77.44121631072478, 34.7492534024271], [-77.44124221611598, 34.74923955049491], [-77.4412846932312, 34.74918354261474], [-77.44151306728916, 34.748934235836565], [-77.44169656075212, 34.74864016159903], [-77.44178484007192, 34.748333952885524], [-77.44172853656588, 34.74779088232822], [-77.44173791985745, 34.74773008137257], [-77.44171147426727, 34.74770864792171], [-77.4416230863381, 34.74761868136018], [-77.44146909084746, 34.747438245920385], [-77.44139524339869, 34.74742663509885], [-77.44114827799794, 34.747438888724304], [-77.44055247398161, 34.747331826805585], [-77.44053783516607, 34.74733241231379], [-77.4405318113678, 34.74733182265415], [-77.44051148378472, 34.747330121751126], [-77.44021903047947, 34.74732611413174], [-77.44006573558018, 34.747318315976074], [-77.44005210862707, 34.7473173706955], [-77.44005985519026, 34.74730871282432], [-77.4400530698611, 34.74716998348035], [-77.44007161999924, 34.74708602598336], [-77.44009731267866, 34.74704568255393], [-77.44009119425472, 34.746986076118944], [-77.44010721276621, 34.74690938448675], [-77.4400499147643, 34.746802539238786], [-77.43993158414233, 34.74669803851335], [-77.43991252158298, 34.74669428689325], [-77.43976568215112, 34.7466767777846], [-77.43966706597256, 34.74666725002032], [-77.43960631462316, 34.74673440201014], [-77.43953660665159, 34.746828015043775], [-77.43949901093812, 34.74687850329576], [-77.43945883052689, 34.74696239350756], [-77.43946946885464, 34.747092191491525], [-77.43936203630571, 34.74720809315856], [-77.43927800137077, 34.747254051326905], [-77.43907754804424, 34.74719978307865], [-77.43886584727403, 34.747142647993485], [-77.43889361443456, 34.746899395414246], [-77.43893733344282, 34.74678021184983], [-77.4388937457687, 34.74668460231592], [-77.43905917145332, 34.746422124176554], [-77.43912650812953, 34.74628727077004], [-77.43925275522503, 34.74608842193852], [-77.43926477269144, 34.74605605897651], [-77.43907925535684, 34.74572494753422], [-77.43907052001985, 34.745718040706976], [-77.43903463923006, 34.74569614777167], [-77.43906881065644, 34.74569021850089], [-77.43910100806187, 34.745649778987556], [-77.4393345031168, 34.74537648775495], [-77.43935643216037, 34.745249537594994], [-77.43940048877934, 34.74513397317393], [-77.43946639158966, 34.74500843813517], [-77.43953565029565, 34.744957349614744], [-77.43960851115094, 34.74477857339012], [-77.43961118629932, 34.744599663003186], [-77.43962155777925, 34.74450361780276], [-77.43962279917832, 34.74435203570585], [-77.4396275532269, 34.744226198358945], [-77.43962413521902, 34.74414785220479], [-77.43962132386399, 34.743851746993585], [-77.43960929958475, 34.74370763362495], [-77.4396160482255, 34.743663151558806], [-77.43963509709158, 34.74362447869444], [-77.43966494263015, 34.743400719194966], [-77.43967731118947, 34.74331960123706], [-77.43969003464245, 34.74322754244509], [-77.43969667661986, 34.743132291797764], [-77.43970725342444, 34.74299468136555], [-77.43972748298688, 34.74276551022126], [-77.4397366864305, 34.742587241887534], [-77.43976473962775, 34.742340926504035], [-77.43977086795168, 34.74230100132338], [-77.4396873086566, 34.74201096309598], [-77.43963887314646, 34.74157519528872], [-77.43959745151058, 34.74148053585001], [-77.43960757721794, 34.74142407994216], [-77.43962230975542, 34.74136066415507], [-77.43971227408304, 34.74098622214197], [-77.43974244602683, 34.74091217040689], [-77.43976533124572, 34.740846608104675], [-77.43992212207607, 34.74045226155978], [-77.43994431844075, 34.74042367025582], [-77.43995372545142, 34.740406659397166], [-77.44001425417743, 34.74027793425953], [-77.44015477487783, 34.739987382182086], [-77.44019069802268, 34.73995071974762], [-77.44019340848828, 34.739892665906524], [-77.4403021590929, 34.73948045953158], [-77.44034335346448, 34.73944502570586], [-77.44034546263536, 34.73938281554445], [-77.44047465810782, 34.739014558067936], [-77.44052672462968, 34.73895006316698], [-77.44055721741596, 34.73840176512037], [-77.44055722246885, 34.73840169204642], [-77.44055722528117, 34.73840164231258], [-77.44070668252871, 34.73789488285224], [-77.44070779014297, 34.737892411124875], [-77.44086672982027, 34.737412017750046], [-77.44088244741535, 34.73739726421409], [-77.44089247037465, 34.73736894453437], [-77.44087549447339, 34.73730147463255], [-77.44090618875971, 34.73691681023551], [-77.44083930679382, 34.7368231656945], [-77.44069535760275, 34.73655836772005], [-77.44050722317004, 34.7363582921261], [-77.44021016848278, 34.73631440071394], [-77.44019356583684, 34.7363125413448], [-77.44017173570889, 34.73631041588465], [-77.43989534430057, 34.73625705917996], [-77.43966739004284, 34.73620076511767], [-77.43959680553444, 34.73618086640128], [-77.43951317614726, 34.73615880379268], [-77.43930875284329, 34.736068434969596], [-77.43913112363964, 34.73607250292098], [-77.43899216682854, 34.73605461443516], [-77.43872478837851, 34.736041336632724], [-77.43867630887536, 34.736038276803264], [-77.43865084402888, 34.73603568468103], [-77.43857386796462, 34.7360316455343], [-77.43819065589271, 34.73603168101257], [-77.43803311846017, 34.73604525193864], [-77.43754318888384, 34.73608791904355], [-77.43738199033162, 34.73607965331312], [-77.43732023315634, 34.73610526595417], [-77.4372646303353, 34.736133220912826], [-77.43697808273939, 34.73629406835132], [-77.43694215374849, 34.73633867787837], [-77.4367693776483, 34.73651920793388], [-77.43690109062655, 34.73691599414711], [-77.43667324786892, 34.73704465550186], [-77.43650962128142, 34.73702424365467], [-77.4364518449968, 34.737078192501386], [-77.43620570516423, 34.73727550609396], [-77.43613889956744, 34.73741698257626], [-77.43608074469026, 34.737590860003095], [-77.43598478680752, 34.73792217120983], [-77.43588230335124, 34.738242647355335], [-77.43588933119985, 34.73844785615784], [-77.43588052324634, 34.73856719185005], [-77.43585431567888, 34.73871514083332], [-77.43586521981034, 34.73896244784063], [-77.4358595022218, 34.738996472491394], [-77.43586419534694, 34.73902040410233], [-77.43586510375127, 34.739105609862634], [-77.43587921642187, 34.739460537822346], [-77.43589154407432, 34.73956670670525], [-77.43590305817798, 34.73977195704275], [-77.43590733723694, 34.73985174452572], [-77.43590999293218, 34.739894098984614], [-77.4359488470664, 34.74014576720102], [-77.43590841380473, 34.74034115823898], [-77.43591568246018, 34.740540279508025], [-77.43591173327519, 34.740691837777334], [-77.43589423931913, 34.74079347201558], [-77.43576963276419, 34.74104942453218], [-77.43571872113091, 34.74118343696186], [-77.43555875858053, 34.741271876258054], [-77.43547183584926, 34.74131070917636], [-77.43530386053526, 34.741318001534744], [-77.43521531720805, 34.741350766557495], [-77.4350773903231, 34.74123887064314], [-77.43499280641238, 34.74116952368318], [-77.4348430298812, 34.741031318661875], [-77.43469925132372, 34.74091835616119], [-77.43465223358702, 34.74086520009822], [-77.43459533792306, 34.740790913940515], [-77.43422284375819, 34.74034894193569], [-77.43412010319392, 34.74019438965564], [-77.43396441791498, 34.74001141344596], [-77.43374635000444, 34.73977984679372], [-77.43334519664273, 34.73979503826682], [-77.4331550646422, 34.73976952047069], [-77.43309912879815, 34.73980061653244], [-77.43294597121593, 34.73979139356136], [-77.43288929775309, 34.73963573019377], [-77.43272239699417, 34.739438263685464], [-77.43277483660779, 34.7391484009955], [-77.43276376539227, 34.73903281762117], [-77.43275541649508, 34.73897809560083], [-77.4327580425478, 34.738763743797705], [-77.43277695341384, 34.7385227173468], [-77.43271313358312, 34.738456077290614], [-77.43263167495026, 34.73813692628791], [-77.43244818790816, 34.73761900010999], [-77.43224016396191, 34.73740746008186], [-77.43216423356799, 34.73714616624518], [-77.43200972558864, 34.73691860668421], [-77.43185954906895, 34.73667345051132], [-77.43184373627598, 34.73647511510261], [-77.4316786308183, 34.73586209964151], [-77.43167743112255, 34.73585794709738], [-77.43167696438152, 34.73585683285814], [-77.43167662302491, 34.73585424346116], [-77.43136037890453, 34.735188094564194], [-77.43131691678177, 34.73511424555224], [-77.43126298765543, 34.735068130859304], [-77.43114078614062, 34.734983422924], [-77.43070068073573, 34.73479565601441], [-77.43012555266881, 34.73482036937377], [-77.42949467992467, 34.73509511309924], [-77.42997032986803, 34.73567596898383], [-77.4299926245007, 34.73582819616671], [-77.430279332655, 34.7362512501675], [-77.43037735722807, 34.73639895986915], [-77.43067956899948, 34.736627324418855], [-77.43060927894528, 34.737106226184636], [-77.43061061376345, 34.737162279459085], [-77.43056225150275, 34.737214611837565], [-77.43044993377781, 34.737665177437385], [-77.43082195213131, 34.738806842893446], [-77.43087518991602, 34.73886963375588], [-77.43091556230836, 34.73894600589114], [-77.43167903066687, 34.740276236051], [-77.4316835173963, 34.74031801752895], [-77.43169531575808, 34.74033659663835], [-77.4322002278539, 34.740690866434164], [-77.43263549225634, 34.740665134102095], [-77.4327455181863, 34.740596006992625], [-77.4328479436005, 34.740668418887886], [-77.43293124270176, 34.740690327023366], [-77.43312720326561, 34.74081127291679], [-77.43314474486378, 34.74084308488626], [-77.43308753159968, 34.7410715264976], [-77.4333159809384, 34.74126673133196], [-77.43336823030384, 34.741400829001975], [-77.43377140419975, 34.741621100717595], [-77.43384307221712, 34.741661040489824], [-77.43406276666568, 34.74200389582737], [-77.4340666208957, 34.74200627094817], [-77.4343376267557, 34.74216777748395], [-77.43457415186704, 34.74223696666559], [-77.43469697836373, 34.74228819029218], [-77.43496801974926, 34.74220520407066], [-77.43513173188836, 34.74245076581357], [-77.43528617576271, 34.74250286963027], [-77.43548829358866, 34.742623107260705], [-77.43580914939403, 34.74261457140814], [-77.43581253966794, 34.74261491214433], [-77.4361145467544, 34.74267484465694], [-77.43649963091693, 34.74277292328927], [-77.43688825973175, 34.742876535085486], [-77.43721844822018, 34.742825504808465], [-77.4373172581264, 34.74282953869697], [-77.43735337403875, 34.74282558324311], [-77.43749773008608, 34.7428029408516], [-77.43773359221089, 34.742761856058024], [-77.43801120633606, 34.742768195874824], [-77.43820340449159, 34.74278151686547], [-77.43832403240219, 34.74279510045034], [-77.43851729858874, 34.74282399286991], [-77.43862880976309, 34.742849817416136], [-77.43876079798457, 34.74294560935501], [-77.43883748509472, 34.74311163817878], [-77.43885350799523, 34.74313013434851], [-77.43885815486787, 34.74316520160189], [-77.43887096616245, 34.74340285016897], [-77.43888500885188, 34.74356339888221], [-77.4388591644371, 34.743678241946895], [-77.43884370860448, 34.74380383266759], [-77.43884165360994, 34.743811881884355], [-77.43884076926045, 34.7438224826878], [-77.43882887000831, 34.74394717312409], [-77.43883293303186, 34.74403153148043], [-77.43882653815399, 34.74417306721931], [-77.43882211210685, 34.74422432714963], [-77.4388147173763, 34.744262334258686], [-77.4387847410453, 34.74447863126359], [-77.4387787552952, 34.744488694916384], [-77.43878177691245, 34.744499280065206], [-77.43877642099963, 34.744555559997586], [-77.43876225351983, 34.744730628303586], [-77.4387608329537, 34.744761948486385], [-77.43875300084851, 34.74480062041083], [-77.43866799959166, 34.744993153131674], [-77.43866130934137, 34.74500669407958], [-77.43865622747089, 34.74501639859594], [-77.4386267929576, 34.74507260746746], [-77.4385362238616, 34.74524250950516], [-77.43844282342832, 34.745415525966834], [-77.43840613992519, 34.745476578802304], [-77.43840384426287, 34.74554976048334], [-77.43841342926518, 34.745758640726635], [-77.43841378886665, 34.74576881491721], [-77.43840248704738, 34.74584769704205], [-77.43838784246502, 34.74600284215474], [-77.43838006518442, 34.746026500005506], [-77.43836650596177, 34.74603854440041], [-77.43834148263642, 34.74605849567213], [-77.43820698050334, 34.74615184050907], [-77.43803195225112, 34.74618439980467], [-77.43800148934395, 34.746190066623], [-77.43798092589476, 34.74619647813975], [-77.43788989601343, 34.746210573401946], [-77.43779475990108, 34.74622627032846], [-77.43764602827989, 34.74624579412181], [-77.43758248214345, 34.74625341224141], [-77.43750027859056, 34.746278169988216], [-77.43746374463214, 34.74638835109154], [-77.43745240358578, 34.74640120255404], [-77.43744812395519, 34.74640781357929], [-77.43741281660914, 34.746527130455476], [-77.437371194364, 34.74665600768132], [-77.43731395788033, 34.74677210945222], [-77.43721202918346, 34.74693976172542], [-77.43719198103268, 34.74700901199959], [-77.43714466034125, 34.747033706306986], [-77.43709897574614, 34.74711627789841], [-77.4370903301876, 34.74713189324364], [-77.43707951341588, 34.7472182440756], [-77.4371110903395, 34.74726026866543], [-77.43717165036735, 34.747330976436835], [-77.43725620509102, 34.74736773703685], [-77.43731013984544, 34.74740638928118], [-77.4374219783224, 34.74748662020725], [-77.43771792355787, 34.74762152929999], [-77.43784460883174, 34.7477753885962], [-77.43787672903775, 34.74780726600418], [-77.43804465125434, 34.74793163481414], [-77.43833525369499, 34.74823047844447], [-77.43834986290406, 34.74824535046977], [-77.43835357180626, 34.74824916902081], [-77.43840142818358, 34.74827008390138], [-77.43885201334463, 34.7484876403309], [-77.43891379848387, 34.748512558482794], [-77.4390142328179, 34.74859167573514], [-77.43928489992322, 34.74875345867643], [-77.43937382466724, 34.7488892935475], [-77.43926526722424, 34.74900163628887], [-77.43922175169992, 34.7491156829841], [-77.43904504432355, 34.7492999278949], [-77.43901055362161, 34.74933331375344], [-77.43892493929195, 34.74957102448318], [-77.43875686205945, 34.74966666232217], [-77.43863752934246, 34.74975013710571], [-77.43854233491739, 34.749796118628176], [-77.43844578928291, 34.74990630593473], [-77.43838454670109, 34.74994127593514], [-77.43833483774175, 34.749959134392974], [-77.43825702994144, 34.74997187221871], [-77.43815144551144, 34.750038857108066], [-77.43802596340976, 34.74994825532979], [-77.43801286532022, 34.749946956319334], [-77.43800318642637, 34.749947809709795], [-77.43790963079086, 34.749965278541204], [-77.43788082312713, 34.74997494207685], [-77.4378837403872, 34.75000758460829], [-77.4379012530228, 34.75005195791267], [-77.43789338500295, 34.750125662786196], [-77.43789859918516, 34.75022458877645], [-77.4379068360293, 34.750333423590575], [-77.43783021270934, 34.750396326664], [-77.43771334730857, 34.750444703314045], [-77.4376517396391, 34.750478693623506], [-77.43758358225895, 34.75050001367408], [-77.43752710880796, 34.75053425392347], [-77.43748709592325, 34.750583645563296], [-77.43732930069109, 34.75066377747518], [-77.43731325306173, 34.75067357469771], [-77.43730358698383, 34.75068171539362], [-77.4371382280891, 34.7507615736985], [-77.43707353919451, 34.75079196431386], [-77.4369718690539, 34.75084534788245], [-77.43696320529747, 34.75084957660336], [-77.43695323477993, 34.75085526924373], [-77.43677679739979, 34.750918986086944], [-77.43665976468584, 34.751015831878945], [-77.43654196951098, 34.751168368068356], [-77.4365101380325, 34.75123117549197], [-77.43650057986574, 34.751239738042], [-77.43647408548999, 34.751265221779946], [-77.43632311080064, 34.75145725658939], [-77.43624173270939, 34.75154051546688], [-77.43608285651072, 34.75164676518019], [-77.43584788726103, 34.751644996101916], [-77.43576957475447, 34.75162131692201], [-77.43566030302208, 34.75171248805621], [-77.43552122544159, 34.75173615179762], [-77.43547387329319, 34.75178186531855], [-77.43541009660085, 34.75175546843507], [-77.4353443100459, 34.75173648363067], [-77.43525751913228, 34.7517287044673], [-77.43519218151606, 34.75169566355052], [-77.4351023092334, 34.751711034857856], [-77.43498844644304, 34.751736778123785], [-77.43491212491989, 34.75180287621278], [-77.43483632828367, 34.75186219305602], [-77.43476658284662, 34.75189178912765], [-77.4347766999156, 34.7519732442625], [-77.43483408084418, 34.75205512986799], [-77.43494255406736, 34.75226294996038], [-77.4349765956689, 34.75233626393413], [-77.43495836466454, 34.75243535295239], [-77.43493223581885, 34.75264845913145], [-77.43473060208342, 34.75281108269092], [-77.4344135493417, 34.75301751577777], [-77.43440512208166, 34.75302334665836], [-77.43440413296176, 34.75302561016285], [-77.43440099461598, 34.753026112169685], [-77.43407859718658, 34.753188791350915], [-77.43406578529186, 34.75322073925605], [-77.43401705246882, 34.753244743160764], [-77.43389631839948, 34.7534046301074], [-77.43377153336029, 34.753487887577336], [-77.43376060495679, 34.753513059113985], [-77.43371339453134, 34.75362024367402], [-77.43371502043445, 34.753734262863276], [-77.43373514175825, 34.753746878285405], [-77.43384901294095, 34.753825242242144], [-77.43408443475361, 34.75399891325911], [-77.43411456130866, 34.75401562140763], [-77.43412103065752, 34.75403232242965], [-77.43412056123017, 34.75404201202572], [-77.43419368448583, 34.75444841593599], [-77.43420925841622, 34.75463203821458], [-77.43422764012942, 34.754980502732735], [-77.43422398516218, 34.75519622256863], [-77.43403720993314, 34.75540647646032], [-77.43439666751935, 34.75525654960577]], [[-77.36746507279796, 34.62679451583145], [-77.3674585457581, 34.62680717295705], [-77.36743580374853, 34.6268161919061], [-77.36744381596094, 34.62677467641494], [-77.367458564767, 34.62675760502956], [-77.36816972243778, 34.62498781780065], [-77.3687975097822, 34.62464025811409], [-77.36903639156657, 34.62443879285856], [-77.36926528761049, 34.6242273904112], [-77.36943012493478, 34.62395723724265], [-77.36952669954917, 34.62362192019472], [-77.36974538224891, 34.62306273064268], [-77.36982542033611, 34.622867209235906], [-77.3703932164619, 34.62273176323694], [-77.37061397532094, 34.622572795814555], [-77.37087429300625, 34.62261980490189], [-77.37122302559251, 34.62284995832713], [-77.37081739442016, 34.62312764682648], [-77.37110906665359, 34.623715486640215], [-77.3706134077008, 34.624204151768], [-77.37041918938448, 34.6244548770121], [-77.37017481048485, 34.624699128493276], [-77.36982465491688, 34.625011540005474], [-77.36927126260343, 34.62508241212281], [-77.36903598061572, 34.625563120104545], [-77.3674751409664, 34.62678604270902]], [[-77.34353631294175, 34.536810270071165], [-77.34347395144586, 34.536859036147455], [-77.34345203035478, 34.53690037972052], [-77.34333515582291, 34.537021571296286], [-77.3433216003168, 34.53703326895423], [-77.34331524322579, 34.537042469003595], [-77.34326699330754, 34.53709092161891], [-77.34317003526331, 34.53718576954191], [-77.34315499708347, 34.53720056408282], [-77.34313427717737, 34.53722076708998], [-77.34303351095895, 34.53732782055137], [-77.34299372338327, 34.5373704536685], [-77.34285803584814, 34.537475474963486], [-77.34280973758919, 34.53752928740278], [-77.34273283443065, 34.53760541322607], [-77.34261934218198, 34.53768500109077], [-77.34253414720256, 34.537709597078106], [-77.34243646043036, 34.53778094341709], [-77.34238434765015, 34.537819004416455], [-77.34233442004708, 34.537858783323045], [-77.34216547830859, 34.537942336479], [-77.34214840448446, 34.53795254586251], [-77.34213455782293, 34.53801378556099], [-77.34212381863453, 34.538064776179354], [-77.34212099288679, 34.53807114551741], [-77.34207912893456, 34.53816722005785], [-77.3420670973172, 34.53820130821247], [-77.3420515411442, 34.53825188839062], [-77.34202420816185, 34.53832988753156], [-77.34201092410574, 34.53838241563078], [-77.3419867719261, 34.53845768239189], [-77.34195605771522, 34.538565472547894], [-77.34196038574777, 34.538583887577516], [-77.34195566573237, 34.53860391359933], [-77.34192401504869, 34.538631087196045], [-77.34186360645262, 34.538683298592204], [-77.34181003368431, 34.538727925991395], [-77.34177332427612, 34.53876354863406], [-77.34159315196916, 34.53888153462011], [-77.34152310502716, 34.538992146060934], [-77.34126565235675, 34.53901321239091], [-77.34112267665132, 34.539332213657154], [-77.3409270830474, 34.539102634585305], [-77.34090597475961, 34.538980384791564], [-77.34084877583302, 34.53881027710328], [-77.34082436372785, 34.538747306335424], [-77.34081408395073, 34.538705448526734], [-77.34084880828098, 34.53849897114092], [-77.34088955501207, 34.538333330501246], [-77.34090089857068, 34.538246660124855], [-77.34093646617839, 34.53813017762584], [-77.34099824842683, 34.53798783802825], [-77.34103268159963, 34.53790620768267], [-77.34099948621268, 34.53784115843261], [-77.34102092361388, 34.53773975787825], [-77.34104203613505, 34.53766236268643], [-77.34101748284061, 34.53758620266932], [-77.34100662601095, 34.537496996132056], [-77.34102493811537, 34.537405640342044], [-77.34104149837839, 34.53732669300947], [-77.34100729624637, 34.53725208111752], [-77.34117469544611, 34.53708138071299], [-77.34121951362025, 34.537003564085204], [-77.34126658664358, 34.536969963323564], [-77.34156423121493, 34.53668985550912], [-77.3415719305749, 34.53668121979593], [-77.34157424660155, 34.53667945467494], [-77.34157666085707, 34.53667434050712], [-77.34173794179192, 34.53651074476386], [-77.34175349283956, 34.536410282015055], [-77.34177940847724, 34.53628253297637], [-77.34197906331535, 34.53624821300929], [-77.34221678966749, 34.536098813454544], [-77.34226249931994, 34.536020910029414], [-77.34249664176728, 34.53581373366457], [-77.34267857028316, 34.53572666134323], [-77.34277699603682, 34.53569302160185], [-77.3430968946773, 34.53548255831176], [-77.34313961660868, 34.53545430690946], [-77.34317637347937, 34.53539744522156], [-77.34339082060097, 34.53519545150178], [-77.34346751131349, 34.53511713419961], [-77.34357621409373, 34.535081679201795], [-77.34370110181007, 34.534905990717995], [-77.34373698363481, 34.53480455137032], [-77.34375051058299, 34.53477647243157], [-77.34375767721068, 34.534761596089474], [-77.34378108901718, 34.53470908321462], [-77.34381553918297, 34.53464470664772], [-77.34382734572145, 34.534547115584395], [-77.3438868230584, 34.53444982963312], [-77.34390305635932, 34.53438729542174], [-77.34388149489155, 34.53432508042924], [-77.34398416592327, 34.53425321589211], [-77.34386071290106, 34.534228240673386], [-77.34369974041286, 34.53417172866614], [-77.34366753000214, 34.53413306834495], [-77.34368321420976, 34.53373176697479], [-77.34368645987826, 34.533684000685454], [-77.34380623201433, 34.53354542804931], [-77.34389631532098, 34.53333871542545], [-77.34400979041192, 34.53330400938942], [-77.34414763199668, 34.53328710285463], [-77.34423810419813, 34.533256704867085], [-77.34440463934942, 34.53320401621495], [-77.34449316405045, 34.53313247391801], [-77.34449819037926, 34.53307756925999], [-77.34452707426915, 34.53299998911433], [-77.3445595532814, 34.53294633025989], [-77.34457971482958, 34.5329262129199], [-77.34460808040606, 34.532893225403434], [-77.34461818367498, 34.53287668929699], [-77.34460910583925, 34.53284878005431], [-77.34459756997136, 34.53282597330084], [-77.3445876092473, 34.53281988361904], [-77.34452794952796, 34.53275798022756], [-77.34441521542439, 34.53274566373629], [-77.34439506487367, 34.53273785800555], [-77.34437046129294, 34.53272871819599], [-77.34429211186772, 34.53269508695888], [-77.34422022900475, 34.532690061754906], [-77.34410224502216, 34.53264490026546], [-77.34418874248536, 34.532531958142556], [-77.34421096541834, 34.53249831024435], [-77.34422478959343, 34.53249243279127], [-77.34426222995953, 34.53247635188626], [-77.34442324704045, 34.53239758557176], [-77.34446324992602, 34.53237272948415], [-77.34449515401167, 34.53234354745696], [-77.34446050740634, 34.5323263194441], [-77.34447375207267, 34.53228542199618], [-77.3444384909545, 34.53223647960505], [-77.3444365572082, 34.532229568913465], [-77.34442732213738, 34.53222097729952], [-77.3443682494988, 34.53215478300674], [-77.34433736130839, 34.53212143192276], [-77.34423552143075, 34.53202737943044], [-77.3442258251011, 34.53202120683305], [-77.34422142158392, 34.53201570411599], [-77.34415570414839, 34.53197461937691], [-77.34414106152833, 34.53196467285844], [-77.34408770587504, 34.53191253382923], [-77.34407929296891, 34.53189073902635], [-77.34406087198127, 34.53185518992654], [-77.34404404380236, 34.53181982130315], [-77.34403344132387, 34.53180476127854], [-77.34402983618838, 34.53179845057891], [-77.34401401450832, 34.53178144571569], [-77.34397031540266, 34.53173185464873], [-77.34393797962335, 34.53168925735992], [-77.34385293740755, 34.5315962209173], [-77.34384164117218, 34.531587874522494], [-77.34383869031232, 34.53158113360046], [-77.34382471928289, 34.53156509633404], [-77.34378546921675, 34.53150970611545], [-77.34374766621946, 34.531471820508884], [-77.34372898475448, 34.531431774162435], [-77.34366237671563, 34.531349025184866], [-77.34360979535356, 34.531280617463565], [-77.34357882035107, 34.53125129464978], [-77.34351214891555, 34.53116453499563], [-77.34343368968098, 34.531027356566], [-77.34339781804819, 34.53095832721715], [-77.34328143917932, 34.53084681968862], [-77.34326046246643, 34.530820917085784], [-77.34324732636708, 34.53080935098386], [-77.34317251871212, 34.530646118030205], [-77.34299051622071, 34.53041379685651], [-77.34296638807949, 34.53036013295188], [-77.34293882510708, 34.53034026183579], [-77.34290190499301, 34.53028404723322], [-77.34266068673438, 34.53006803617355], [-77.3425550830955, 34.5299296708975], [-77.34255450446689, 34.52990703941786], [-77.34251811588652, 34.52990571204437], [-77.34232251667035, 34.52984123561528], [-77.34222486451023, 34.52973236080557], [-77.34219801566339, 34.529694100467445], [-77.342131159653, 34.52966461560025], [-77.34203876247224, 34.52957326104726], [-77.34190168525889, 34.52953403726703], [-77.34174507426968, 34.529385926265284], [-77.34170592536344, 34.529342426091446], [-77.34144684185819, 34.52916546833909], [-77.34137310528676, 34.52912044431237], [-77.34136763088921, 34.529115721072436], [-77.34135904643617, 34.52910485625025], [-77.34107833533899, 34.52885194051592], [-77.34092505325341, 34.5286952640674], [-77.34077859943798, 34.528596060551855], [-77.3406929454963, 34.528483836967204], [-77.34066221594307, 34.528442784931656], [-77.34068926303047, 34.52829982911242], [-77.34069033274754, 34.52823939444728], [-77.34065823548507, 34.52820445860961], [-77.34061309214425, 34.528128096966164], [-77.34059692263341, 34.5281135019967], [-77.34050461491088, 34.528079358823106], [-77.34033676268137, 34.52804543960607], [-77.34029512936141, 34.52799652971755], [-77.34020878488649, 34.52792408400379], [-77.34009377795064, 34.52783557589215], [-77.34000422891147, 34.52773396614748], [-77.3398715232475, 34.52740488488002], [-77.3398774263197, 34.527377062392496], [-77.33989632323214, 34.52733294027316], [-77.33983350297137, 34.52717896365078], [-77.33972556933632, 34.52690927072578], [-77.33951465927241, 34.52665638219599], [-77.339478036147, 34.52645524082959], [-77.3393610034922, 34.526162704749964], [-77.33963576804283, 34.525599401446016], [-77.33957832150438, 34.52546154329564], [-77.33930254753844, 34.52536886723365], [-77.33932807736525, 34.525153061587936], [-77.33931763871612, 34.52500940724377], [-77.3394360734457, 34.52478516265375], [-77.3392657009819, 34.52462588351181], [-77.3391817135442, 34.5245393241123], [-77.3392166567052, 34.52446851804862], [-77.33941230948679, 34.52420046291972], [-77.33955474928602, 34.52421269324014], [-77.33955417725211, 34.5242695402894], [-77.3395730514323, 34.52448302923162], [-77.33952429868026, 34.52471840543567], [-77.33952802541143, 34.524753612373644], [-77.33959884288282, 34.524968955364976], [-77.3395837278247, 34.52515610817727], [-77.33987633197528, 34.525327421984066], [-77.33990964405825, 34.52539216962168], [-77.33992559552455, 34.52541158686922], [-77.33993237314097, 34.52544729590927], [-77.34004826690672, 34.52625262314017], [-77.34009693473874, 34.52636621147787], [-77.34033497681413, 34.526518354340254], [-77.34048580161902, 34.52671036280354], [-77.34051303357558, 34.52679598967883], [-77.34057405840761, 34.52682012432016], [-77.34062534445155, 34.52688428830926], [-77.34068289343747, 34.52701637220456], [-77.34072733206781, 34.52707636100244], [-77.34075682814105, 34.527164504302306], [-77.34081477465894, 34.52717953613694], [-77.3408652570403, 34.5272349557791], [-77.34090771964779, 34.527291667751435], [-77.34100508873509, 34.52743660931658], [-77.34101591918078, 34.52745113517845], [-77.34102190292444, 34.527457238945075], [-77.34104795787563, 34.52748086689918], [-77.34120601544527, 34.52767557039523], [-77.34130823274494, 34.52771262813089], [-77.34138966130271, 34.527780248834674], [-77.34148524155262, 34.52788021827142], [-77.3415908471349, 34.52798146094654], [-77.34160296045077, 34.52799948063493], [-77.34165757462489, 34.52810024403329], [-77.34171232175545, 34.528130884299934], [-77.34177306898572, 34.52817443533826], [-77.34187429704139, 34.52824966202212], [-77.34190675683693, 34.528309213459714], [-77.34202771797325, 34.52837491277237], [-77.34207347555034, 34.52840763724062], [-77.34215935779447, 34.52844407082135], [-77.34222821244771, 34.52846454412932], [-77.34225691435105, 34.528468886827575], [-77.34229156589439, 34.528476941206655], [-77.34229605968763, 34.52849802329189], [-77.34231366767239, 34.528520552590855], [-77.34235354253661, 34.52853389319167], [-77.34243330704696, 34.52855069446863], [-77.342548533014, 34.528588849898654], [-77.34271233054282, 34.52858090395148], [-77.34290339913481, 34.52865546161741], [-77.34292235248074, 34.528663325650435], [-77.34293916814714, 34.52867046612582], [-77.3430439530032, 34.528757648669384], [-77.34307544595096, 34.52878882449361], [-77.34312408416449, 34.52886424457482], [-77.34312661267128, 34.5288681653686], [-77.34312817457582, 34.528869596921155], [-77.34313075543787, 34.528872830330364], [-77.34319209439927, 34.52894190101469], [-77.34321816395749, 34.52897740263837], [-77.34324713913992, 34.529020921012275], [-77.34327829317475, 34.52906351812377], [-77.34329542735776, 34.52908869566146], [-77.34330396446026, 34.52909859364055], [-77.34332130223831, 34.52912029957875], [-77.34338660675814, 34.52919798637705], [-77.34342480480612, 34.529248498565025], [-77.34348260260197, 34.52930658408654], [-77.34349302290462, 34.529317550606144], [-77.34351254229267, 34.52933778983016], [-77.34356086165069, 34.52938688959194], [-77.34366031281792, 34.52949789513009], [-77.34368132115273, 34.52952281144838], [-77.3436903395561, 34.52953025905582], [-77.34370409244109, 34.52954189027742], [-77.34381232706617, 34.52962637159608], [-77.34384672621994, 34.52965326689446], [-77.34397598683039, 34.52972523317448], [-77.3440393898749, 34.52974882424867], [-77.34409075099502, 34.529796038030646], [-77.34418400621233, 34.52988073869594], [-77.34422360915309, 34.52993442335428], [-77.34421897281183, 34.53001826161156], [-77.34421890999835, 34.53005750937615], [-77.34423833724252, 34.53008097246392], [-77.34425713711323, 34.53017441879585], [-77.34426279356063, 34.53018313939111], [-77.34427723671072, 34.530219703609745], [-77.34430268277376, 34.53027362825525], [-77.34430281485638, 34.53029025614316], [-77.34430696800545, 34.53030949432103], [-77.34427389649763, 34.53036444646535], [-77.34422973952269, 34.53039609530065], [-77.34423938409799, 34.530421792746786], [-77.34424069495033, 34.53044120707871], [-77.34426994118121, 34.530535844021145], [-77.3442708111881, 34.53053909123621], [-77.34427140336709, 34.53054057545134], [-77.34419989661448, 34.530672293811804], [-77.34432586687876, 34.53073877650164], [-77.344414883732, 34.5308861797515], [-77.34443348105296, 34.53089869205685], [-77.3444572054062, 34.53092589007129], [-77.3445740014266, 34.531033707252384], [-77.34465813345058, 34.53109599822001], [-77.34471961761486, 34.53125556082365], [-77.3447622642013, 34.53132583500826], [-77.34476329669721, 34.5313731623671], [-77.34475078732314, 34.53151912850063], [-77.34476046022452, 34.531570914255], [-77.34477045243145, 34.53160909464092], [-77.34482083995559, 34.53180162432143], [-77.34482372054431, 34.531806631553835], [-77.34482520017181, 34.53180901460809], [-77.34482925066314, 34.53181385933787], [-77.34491115125431, 34.53191646099609], [-77.34494747146123, 34.531957840086605], [-77.34505714969264, 34.532017862959215], [-77.34500391345969, 34.53215647802288], [-77.34521291060271, 34.532198623715175], [-77.34525821305223, 34.53223375147951], [-77.34526903361854, 34.53226819852221], [-77.34532151253161, 34.53239884918108], [-77.34528468307722, 34.532474762486835], [-77.34524568082826, 34.53250522341374], [-77.34524911392106, 34.532541085592314], [-77.34526704045368, 34.53256074198686], [-77.34526450495136, 34.532576485136886], [-77.34526887507519, 34.53259944707961], [-77.34527907279343, 34.532611974247544], [-77.34527910509853, 34.53261327630026], [-77.34528069418911, 34.532615415076975], [-77.34528258781532, 34.53262439871834], [-77.34528334020021, 34.532627968140396], [-77.3452862583282, 34.53263364821915], [-77.3452869490791, 34.532636182845906], [-77.34528285225291, 34.53264333959054], [-77.34528533673014, 34.53264872414123], [-77.34528337633168, 34.53265856541622], [-77.34527661743691, 34.532674169226134], [-77.34529993406085, 34.53268036060189], [-77.34531562615412, 34.53268452739426], [-77.34533564258302, 34.53268984244695], [-77.34539037083547, 34.53270437466137], [-77.34539466775587, 34.53270551564081], [-77.34539744289827, 34.53270749467377], [-77.34550307853557, 34.53274415608119], [-77.34559043573599, 34.532849577514384], [-77.34567166565495, 34.53285793589108], [-77.34569549648359, 34.53290528863116], [-77.34568143686863, 34.533091890835905], [-77.34569600891828, 34.533150034823606], [-77.34569817238204, 34.53322227680739], [-77.3456699619642, 34.53339860278692], [-77.34564417758509, 34.53360278264964], [-77.3456450436788, 34.533647008319434], [-77.34563837433359, 34.53368995245122], [-77.34556921872488, 34.533769657720086], [-77.34551996978935, 34.53388070732927], [-77.34547791285644, 34.53391587723242], [-77.34542495114967, 34.53395865003248], [-77.3454432702365, 34.53399615539287], [-77.34542616587277, 34.5340457331605], [-77.34546358439276, 34.53409481438464], [-77.34546715898699, 34.53409875352589], [-77.34546676207293, 34.53410109667331], [-77.34547008264126, 34.5341048154948], [-77.34548161726188, 34.53411798179178], [-77.34548750241407, 34.53412152843542], [-77.3454940158312, 34.534127777558204], [-77.34550042047672, 34.534133922322255], [-77.34550137902447, 34.53413557453584], [-77.34550109065219, 34.53414206078856], [-77.34551140454246, 34.534148932341196], [-77.3455162306447, 34.534152127638876], [-77.34552002214056, 34.53415463793584], [-77.34553376586683, 34.5341690276355], [-77.34555956488458, 34.53418830040396], [-77.34557432836303, 34.53419867190705], [-77.34558538307323, 34.53420643794989], [-77.34556774284447, 34.53426399227038], [-77.3455728646983, 34.53426944421954], [-77.34555701209902, 34.53429900319845], [-77.34549764057903, 34.53436662244525], [-77.34543505167962, 34.534411684197096], [-77.34530750019783, 34.53452245815756], [-77.34526170120222, 34.53455903767317], [-77.3451557022751, 34.534678971589734], [-77.3451473563461, 34.534692895757345], [-77.34514336695985, 34.534698474583536], [-77.34513861619037, 34.53470937682313], [-77.3450779019218, 34.534830304058715], [-77.3450557093469, 34.5348966764411], [-77.3449922780627, 34.53496503397501], [-77.344921778985, 34.53507987459373], [-77.34490889864222, 34.53509944111227], [-77.34489071470769, 34.53513830379785], [-77.3448410947577, 34.535231606851326], [-77.34482061500272, 34.53527902292132], [-77.3447464580769, 34.53540272171447], [-77.34467676389498, 34.5355000711347], [-77.34461818180927, 34.53567726870291], [-77.34434020936254, 34.535996353121746], [-77.34429662902593, 34.53601753012209], [-77.34423385364802, 34.53605343663539], [-77.34426126544678, 34.53609727416281], [-77.34403002229871, 34.536384538677474], [-77.3439364615866, 34.53648137279817], [-77.34388356212277, 34.53656163884244], [-77.34383528249779, 34.53660042065623], [-77.34368592093055, 34.5367138246775]], [[-77.27127140910156, 34.573146768296084], [-77.27131250780826, 34.573064719662526], [-77.27134789510795, 34.57303494719877], [-77.27136473443518, 34.57302038561753], [-77.27141035023033, 34.57298093986063], [-77.2714152950017, 34.57297657493634], [-77.27145805507456, 34.572939082998495], [-77.2714841312127, 34.57292782273164], [-77.27156199601524, 34.572894811704145], [-77.2716061994023, 34.57290653644184], [-77.27165489015479, 34.57291945143141], [-77.27170840650176, 34.57291638969055], [-77.27172629034804, 34.57294685728792], [-77.27169429798039, 34.572984884344976], [-77.27163905239917, 34.573057833435335], [-77.27153392383904, 34.57316547642279], [-77.27153171886505, 34.57316722997814], [-77.27153118784402, 34.5731684165141], [-77.27152713804797, 34.57317208159786], [-77.27137957118691, 34.57327310377724], [-77.27131208401396, 34.57330215254566], [-77.27122736034504, 34.573378972537554], [-77.27119871413896, 34.5734048601319], [-77.27112102345515, 34.57346082849481], [-77.2710863105983, 34.57348571843646], [-77.27104147876057, 34.57353369068259], [-77.2709305114077, 34.57361999261159], [-77.27080245178752, 34.57369907149445], [-77.27084479389518, 34.57379109352097], [-77.2707970626445, 34.57382990503911], [-77.27073925236365, 34.57389675431719], [-77.27067892791123, 34.57392502834086], [-77.27056416621727, 34.57395137633466], [-77.27051002868737, 34.57402958453782], [-77.27044400480095, 34.574124963816764], [-77.2704222351922, 34.57414051644154], [-77.27041601899681, 34.57414821791295], [-77.270394772045, 34.574161271077294], [-77.27016993986946, 34.57425796606443], [-77.27010252153335, 34.57435104984959], [-77.27008066491629, 34.57436572300275], [-77.27000115418781, 34.5743827336158], [-77.27006882441393, 34.574348400773765], [-77.27008731032953, 34.5742585991728], [-77.27002554781119, 34.574227165039304], [-77.2699786052117, 34.57420746898526], [-77.26995752968058, 34.57419254711168], [-77.26995679853917, 34.57416284356472], [-77.26998852558228, 34.57411189610386], [-77.26999257033145, 34.57410673900214], [-77.26999668393097, 34.574103883609325], [-77.27000573901014, 34.57409721840135], [-77.2701048380096, 34.574035771580824], [-77.27019642337372, 34.5740049312499], [-77.27023427991868, 34.57398659160496], [-77.27027645769077, 34.573893389525566], [-77.27029694601092, 34.57387802573111], [-77.2703459043219, 34.57384123732388], [-77.2703474045053, 34.573840751750765], [-77.27034769237608, 34.57384007277504], [-77.27034851718956, 34.57383924101574], [-77.27039714962123, 34.57380284334125], [-77.27042923686335, 34.5737875664311], [-77.27046325443189, 34.5737503262094], [-77.27049472541503, 34.573725324018234], [-77.27058800418965, 34.573682213886954], [-77.27061256159624, 34.57366582296121], [-77.2706874670733, 34.57357219930235], [-77.27069618355824, 34.57356525150089], [-77.27079842216119, 34.57350252197997], [-77.27090006602285, 34.57347107814301], [-77.27091381800038, 34.57339780674819], [-77.27098689206785, 34.57334154190157], [-77.27104633562067, 34.573289511621994], [-77.27109829563936, 34.573276320561675], [-77.27110482102574, 34.57325150675198], [-77.27111511821658, 34.573230530984084], [-77.27117693040852, 34.57318195710064]], [[-77.37742776711681, 34.69385746818891], [-77.37805466768506, 34.693984414838226], [-77.37729844460016, 34.694303360490515], [-77.37726686963073, 34.69409274649512]], [[-77.33901628640366, 34.52317212463239], [-77.33901515648401, 34.52309437494376], [-77.33871755332741, 34.52291550108843], [-77.3387111207107, 34.52286542367761], [-77.33866353342943, 34.522655320151365], [-77.33876532407147, 34.52245397544716], [-77.3388970238519, 34.52245913711037], [-77.3390855767972, 34.52215435733534], [-77.33914293286863, 34.52209672209023], [-77.33912630417322, 34.52207397301861], [-77.33920610099892, 34.52206315828478], [-77.33920090617198, 34.52211029904882], [-77.33936611688966, 34.52255425194078], [-77.33938516494871, 34.522893001314394], [-77.33927461402077, 34.5231398030845], [-77.33913838522045, 34.523293638382825]], [[-77.35454233454377, 34.5532897533045], [-77.35437678061211, 34.55334249042833], [-77.35440613550762, 34.55344074006949], [-77.35414104062653, 34.5536671644824], [-77.35406188092043, 34.55368602583175], [-77.35401449912621, 34.55374193508037], [-77.3539299822112, 34.55388261944983], [-77.35379097660136, 34.554050968107646], [-77.3537383367095, 34.554105846707465], [-77.35360905515282, 34.55421082938894], [-77.35345444829414, 34.55424242806956], [-77.35334426732385, 34.554168242674955], [-77.35322806898913, 34.55409995288819], [-77.35309991671298, 34.5540279449732], [-77.35271594050842, 34.55402464753114], [-77.35255844777058, 34.554191965415846], [-77.352394894796, 34.55436519303433], [-77.35182901606406, 34.55450680455521], [-77.35176521632458, 34.55453823331278], [-77.35146645445738, 34.554353493272615], [-77.35141591153163, 34.55433663571172], [-77.35137833898185, 34.5542875036267], [-77.35120457201762, 34.55414636101588], [-77.35111689168446, 34.55408014962346], [-77.35103095212028, 34.55392652627667], [-77.35101984413261, 34.55391221418165], [-77.3509947320687, 34.55389459427684], [-77.35078179034394, 34.55385096358473], [-77.35062307483992, 34.553740403119335], [-77.35046227846298, 34.5536099830793], [-77.35022284767543, 34.553312353646966], [-77.35022049799345, 34.5533101923023], [-77.35021827655578, 34.553309015880544], [-77.3502136663498, 34.55330383225481], [-77.34990913271301, 34.553063049028474], [-77.34999265506657, 34.55285184229126], [-77.34994497869566, 34.55279456870164], [-77.34992531415668, 34.552739122714435], [-77.34984551168722, 34.55264723060759], [-77.34983999779848, 34.55263263722955], [-77.34983374943388, 34.55262988897955], [-77.34965068389528, 34.5525825543832], [-77.34960691336963, 34.55256762806646], [-77.34955283588637, 34.55256909197072], [-77.34949343284634, 34.55258078433992], [-77.34949514121661, 34.552617410939085], [-77.34945223266078, 34.552675395607714], [-77.34944553162543, 34.5526816667118], [-77.3494449615944, 34.552685837139926], [-77.34943445172041, 34.55269811079307], [-77.34941295740187, 34.552727911509514], [-77.34940229048439, 34.55275318280384], [-77.34941061536652, 34.55278886778998], [-77.34930570443714, 34.55282828685989], [-77.34941223423374, 34.55291384746212], [-77.3494267417964, 34.55293327982825], [-77.34924667377909, 34.553077144117715], [-77.34923884306669, 34.553077856549564], [-77.34923302455397, 34.55308356634075], [-77.34920258914777, 34.55311489271255], [-77.34909382074537, 34.55322600800351], [-77.34906705214892, 34.553242644380944], [-77.34904559604563, 34.553284060812715], [-77.34894007339543, 34.55331350612533], [-77.3489477289763, 34.55324703027941], [-77.34871680836551, 34.553241065462764], [-77.34867681915229, 34.553163603017886], [-77.34866466272022, 34.55315983895121], [-77.34865621447993, 34.55314272720104], [-77.3486379420076, 34.553107992112494], [-77.34862306097753, 34.55307063516591], [-77.34862563800704, 34.553048557447504], [-77.34864776619375, 34.55303861140869], [-77.34865871236552, 34.553034192074186], [-77.34868885312186, 34.55302085859095], [-77.34875749227352, 34.553007180832665], [-77.34878043748853, 34.552978979803136], [-77.3488526878378, 34.55295724460164], [-77.34885673805644, 34.5529599218594], [-77.34887029877058, 34.55295214656318], [-77.348934667257, 34.552929838956935], [-77.34895574854883, 34.55292288290675], [-77.34897967992244, 34.55292150456803], [-77.34899038027422, 34.55293486711088], [-77.34900428421501, 34.55294649842476], [-77.34901371637984, 34.552931509084516], [-77.3490049245846, 34.55291866890539], [-77.34898166418851, 34.55292000331345], [-77.34898701613294, 34.55290474861747], [-77.34899842766441, 34.55289876994287], [-77.34902243518991, 34.552869049276374], [-77.3490387576474, 34.5528562992006], [-77.34905569222195, 34.55284528422193], [-77.34914322488395, 34.552797769562574], [-77.34915494069304, 34.552797892091455], [-77.34916332058559, 34.55279272180053], [-77.34915901973056, 34.55278818969353], [-77.34915966889795, 34.55278532831309], [-77.34918962014385, 34.552743423608526], [-77.34919809998622, 34.5527213608528], [-77.34920609992531, 34.55270747868118], [-77.34921698367572, 34.552694643178256], [-77.34925590086716, 34.552676097367346], [-77.34928328799182, 34.5526648120774], [-77.3493007361874, 34.552645386223524], [-77.34932070178422, 34.552620922298765], [-77.34934667186477, 34.552577570818606], [-77.3493567325669, 34.55255987429864], [-77.34937654603742, 34.552523905162815], [-77.34939148066596, 34.5525099175359], [-77.34938311086054, 34.55249559613068], [-77.34938541671971, 34.55244958491564], [-77.34938897063785, 34.55240575922298], [-77.34938685797185, 34.55238817234111], [-77.34938376401163, 34.552374422739646], [-77.34937722877628, 34.552337949424995], [-77.34937899055731, 34.552328099276416], [-77.34938765443107, 34.55228092675455], [-77.34938804492775, 34.55226559112332], [-77.34938724741765, 34.55225110798182], [-77.34938445258308, 34.552204902831846], [-77.34940188260225, 34.552163658488304], [-77.34939958787771, 34.5521415196477], [-77.34939860793862, 34.552121833469], [-77.34938935919781, 34.55208178637698], [-77.34939096099774, 34.552067279485314], [-77.34937325236945, 34.5520255344301], [-77.34937173657454, 34.5520231171185], [-77.34937158362533, 34.55202160065622], [-77.34936924324867, 34.552016083615015], [-77.34934678463415, 34.551965502554225], [-77.34933155642327, 34.551931205733126], [-77.34930461223284, 34.55186794052597], [-77.34930261660975, 34.55184944801846], [-77.34929726861967, 34.55183646850504], [-77.34927595326337, 34.55180454253891], [-77.34921792242729, 34.55173922526424], [-77.34918768667958, 34.551678019200125], [-77.34908539845043, 34.55155426880036], [-77.34906547134217, 34.551529128582], [-77.34905425559754, 34.55151795632893], [-77.34900111535862, 34.551471866416364], [-77.34893988640167, 34.55141200373158], [-77.34892951287202, 34.551390636039095], [-77.34889733029759, 34.55135692239205], [-77.34889672830036, 34.55135510122312], [-77.34889368692586, 34.55135431005568], [-77.34884556557199, 34.55133347110856], [-77.34877614867528, 34.5513131550922], [-77.3487277566858, 34.55130192551553], [-77.34869863312994, 34.551299613873184], [-77.34862438851006, 34.55125945420667], [-77.34860169391862, 34.551246735718905], [-77.34857100586179, 34.551220264379154], [-77.34854212519099, 34.5512010152418], [-77.34852763745994, 34.55119590238088], [-77.34853433244469, 34.55118261820284], [-77.34853103907005, 34.55116481032867], [-77.34853413405651, 34.551146722076595], [-77.34853097194397, 34.551134217415466], [-77.34850643005066, 34.55112107609997], [-77.34849532148024, 34.55111574802967], [-77.34847684453158, 34.55111140358311], [-77.34846280487115, 34.55111018010394], [-77.34845792462218, 34.55109619970467], [-77.34845403874505, 34.551086642880485], [-77.34845259327557, 34.551084290675355], [-77.34845268062708, 34.551080786999826], [-77.34845273848444, 34.55105366720157], [-77.3484456203504, 34.55103267299913], [-77.34842547261499, 34.55099638551682], [-77.34841162992355, 34.550975282617884], [-77.34839515908469, 34.550950173158654], [-77.3483743744422, 34.55091848730515], [-77.34837634749246, 34.550881044111094], [-77.34836296029714, 34.55085385619999], [-77.34832079346198, 34.5507682197363], [-77.34832077490422, 34.550766630523015], [-77.3483186822261, 34.55074903206132], [-77.34831050092673, 34.550652190154665], [-77.34830519216105, 34.55064646253675], [-77.34828901699457, 34.55062856299802], [-77.34821114136119, 34.550486008332186], [-77.34818668263846, 34.550418694816024], [-77.34793818034736, 34.55022260282941], [-77.34793106605753, 34.55021519856234], [-77.34792688729983, 34.55021125739425], [-77.3479171476566, 34.55019920788928], [-77.34773474938413, 34.54988101845511], [-77.34757012712993, 34.5497729514013], [-77.34756353610568, 34.54976920157961], [-77.34755618224673, 34.549761356728695], [-77.34746146335253, 34.54960507352719], [-77.3473890389308, 34.54955418768002], [-77.34723666514394, 34.54937127244071], [-77.34722266780973, 34.54933330640908], [-77.34720526834309, 34.5493161986791], [-77.34717451435598, 34.54928596017787], [-77.34704633788864, 34.549113857768404], [-77.34697240794328, 34.54900966941712], [-77.34679051541775, 34.54891193426398], [-77.34678616178779, 34.548906473388705], [-77.34668472062278, 34.548744622338404], [-77.34658711858222, 34.54869029229806], [-77.34640635938358, 34.54854487491582], [-77.34637386152578, 34.54849710731508], [-77.34636013754324, 34.54847813098073], [-77.34632091283166, 34.54842882539844], [-77.34620999309996, 34.54813838262008], [-77.34602444906737, 34.54808052618988], [-77.34599109089362, 34.54804158973174], [-77.34596274896342, 34.548006123895796], [-77.34592096597709, 34.547929269311105], [-77.34588681444984, 34.547900189787214], [-77.3458333075784, 34.54785650527752], [-77.34580596243944, 34.547823405919125], [-77.34577703938595, 34.54774189199072], [-77.34564167937204, 34.54765364227734], [-77.34560321704774, 34.54763205082517], [-77.34559515716307, 34.547608916123174], [-77.34555305658253, 34.547558340672694], [-77.3455118065419, 34.54745985942898], [-77.34545005007028, 34.54745086727817], [-77.3454017733751, 34.54739191964753], [-77.34535219126766, 34.547339270055645], [-77.34534789282671, 34.54733429316198], [-77.34530428956285, 34.5472835352697], [-77.34529807393895, 34.54725953881956], [-77.34525883822589, 34.54723002798109], [-77.34522401913398, 34.54719489172195], [-77.3452005856021, 34.54717604565606], [-77.34515162312552, 34.54700831481201], [-77.34487671010646, 34.54677566617131], [-77.34484611262926, 34.54675675711509], [-77.34484445326753, 34.54673764408335], [-77.3447971163605, 34.54669364182228], [-77.34466647360145, 34.54651843046906], [-77.3446497536045, 34.546422619092056], [-77.3444939639188, 34.54634828052467], [-77.34445036325033, 34.54630470269579], [-77.34428777032923, 34.546213788223255], [-77.34425112772257, 34.546179510415314], [-77.34419188956173, 34.54609706923695], [-77.34415300025131, 34.54607440316095], [-77.34410832827933, 34.54604630163377], [-77.3440522271104, 34.5459947522247], [-77.34403057542812, 34.545925678240124], [-77.34401269777005, 34.54587802938402], [-77.34387335121005, 34.5458032815026], [-77.34384499706307, 34.54577974599509], [-77.34378864772982, 34.54574669170765], [-77.34372412496398, 34.54568237433477], [-77.3437200848044, 34.545677890608225], [-77.34371729372823, 34.54567570823579], [-77.34370232212173, 34.54566400176788], [-77.34361278816948, 34.54556833303005], [-77.34360185366891, 34.5455259934335], [-77.34355012642082, 34.545454937961594], [-77.34351106953471, 34.54535333094691], [-77.34334195614915, 34.54523044813589], [-77.34317953246199, 34.54512146735189], [-77.34295314935297, 34.54506623072378], [-77.34294254642559, 34.54505941598779], [-77.34293829201413, 34.545053318045106], [-77.34286580646753, 34.54487612922521], [-77.34256969337986, 34.54467034939179], [-77.34253894934469, 34.544640726034984], [-77.34252513451598, 34.544623115157755], [-77.34249322311965, 34.544578699860004], [-77.3424476580377, 34.54446844909426], [-77.3423783915604, 34.54445401380023], [-77.34233010232231, 34.5444063524042], [-77.34229859391442, 34.54433988036795], [-77.3421858480097, 34.54429148574958], [-77.34195803312902, 34.544215056120976], [-77.34196192418754, 34.54411190148751], [-77.34179736028794, 34.5441137350936], [-77.34165634649351, 34.54417134785703], [-77.34140343257945, 34.5441714956218], [-77.34134800071288, 34.544093677249656], [-77.34130633336294, 34.544063982737725], [-77.34125392256587, 34.544044180414275], [-77.34121098094715, 34.54400509577824], [-77.34118197915946, 34.54397793780703], [-77.3411593832378, 34.54396271138462], [-77.34109163169296, 34.5438964660471], [-77.34112081647237, 34.543845849639816], [-77.34115629431298, 34.54375602829414], [-77.34101966732769, 34.54378948571996], [-77.3407618131034, 34.54373592044709], [-77.34062915589615, 34.54369948321587], [-77.34060559986719, 34.54368996719729], [-77.34059210333831, 34.54367708196112], [-77.34038493965679, 34.54361556362081], [-77.34035925492657, 34.54358816528703], [-77.34030937991372, 34.543552057155196], [-77.34025094906873, 34.54348724491735], [-77.34024631674855, 34.54348200087273], [-77.34024626055893, 34.543479139209225], [-77.34024171297094, 34.54347678913174], [-77.34010416221642, 34.543380038651584], [-77.34016987667565, 34.543295586868965], [-77.33994840353739, 34.54328003298076], [-77.33989906014455, 34.54325912792436], [-77.33985358703828, 34.54328371789287], [-77.33974383175628, 34.54318704822594], [-77.33969339743955, 34.543173378413655], [-77.33966015899425, 34.54315975592813], [-77.33963243394227, 34.54314186630874], [-77.33960238971743, 34.54312155882983], [-77.33959830428245, 34.54311617297965], [-77.33957930009564, 34.54310885940314], [-77.33957829051812, 34.54310375045867], [-77.33957078006138, 34.543094049869104], [-77.33956886449313, 34.543089805089544], [-77.3395673540808, 34.54308772962603], [-77.3395637007379, 34.54308672521182], [-77.33953846804722, 34.543078320739234], [-77.33951498479057, 34.54307126110175], [-77.33951124222837, 34.54306984497572], [-77.33950788804799, 34.54306343472652], [-77.33948588632559, 34.543040535398575], [-77.33947770323877, 34.54303488354475], [-77.33947267364422, 34.543027134662395], [-77.33946725890036, 34.5430129917958], [-77.3394671359942, 34.54301271072128], [-77.3394670439805, 34.543012643257434], [-77.33946705731633, 34.543012508663345], [-77.33946001191593, 34.54298793308046], [-77.33944998555219, 34.54298449452896], [-77.33945254793429, 34.54297439554572], [-77.3394404265735, 34.542942415483694], [-77.33939823604422, 34.542930733166614], [-77.33939568748994, 34.542915927149444], [-77.33932181835183, 34.54291075747153], [-77.33931701322646, 34.542942415386094], [-77.33935390048362, 34.54294753975613], [-77.33937003835085, 34.54297293213943], [-77.33938162598113, 34.54298689916617], [-77.33938346713052, 34.54299406185649], [-77.33939157073499, 34.54300681258961], [-77.33939035500255, 34.54301046263117], [-77.339378095579, 34.543025436683315], [-77.3393755324517, 34.54303005539498], [-77.33936848098892, 34.54304026249504], [-77.33934676615598, 34.54304710231477], [-77.33930375096226, 34.543045812871455], [-77.3392707873457, 34.54302065570306], [-77.33926440731902, 34.543015242756766], [-77.3392616801203, 34.54301157834605], [-77.33925480008071, 34.54300233395954], [-77.33923526540015, 34.54295417306225], [-77.33923216715729, 34.54291896459774], [-77.33922549148247, 34.54289437434121], [-77.33927496728546, 34.54283995115773], [-77.33934235053351, 34.54279655189584], [-77.33935113672652, 34.54270829367399], [-77.33932211498535, 34.54263565909292], [-77.33928906883604, 34.54252221377376], [-77.33929830226283, 34.54251667526364], [-77.33928633492128, 34.542515980842225], [-77.33928260690311, 34.542509680505724], [-77.33922452022688, 34.54240487830499], [-77.33918118904474, 34.542354189184444], [-77.3391682791215, 34.54233921318076], [-77.3391446058798, 34.542293963347035], [-77.33909242735444, 34.54224541018331], [-77.339068136705, 34.542198379083935], [-77.3390550639464, 34.5421844330424], [-77.33903503335675, 34.54215014851967], [-77.33901944278938, 34.54199388079984], [-77.33890235385586, 34.54197660915991], [-77.33889397129136, 34.541962784797256], [-77.33888923418178, 34.54195497243211], [-77.33885521768104, 34.54187678440525], [-77.3388340393192, 34.54184899571569], [-77.33880804544927, 34.54181074986016], [-77.33880129662964, 34.54179690885619], [-77.3387955771488, 34.5417851788602], [-77.33883102145916, 34.541727020854594], [-77.33885337802958, 34.54163684038636], [-77.33871584217624, 34.54155392805968], [-77.33869068039986, 34.54150238779832], [-77.33868615167623, 34.54148350773555], [-77.33867725222646, 34.541381910268505], [-77.33864996355138, 34.541341689973414], [-77.33866774133267, 34.54129460741889], [-77.33862393297879, 34.541284423805294], [-77.3386189602362, 34.54126788530674], [-77.33861989132578, 34.54121013933231], [-77.33861888346927, 34.54120235876664], [-77.33864000593107, 34.54119492221595], [-77.33872373060623, 34.54121300775688], [-77.3387854896421, 34.54120552823064], [-77.33881121932784, 34.54124023334198], [-77.33889057218025, 34.54133461939666], [-77.33890325160812, 34.54134940559358], [-77.33889732219589, 34.541362260014665], [-77.33891224438207, 34.54147052092057], [-77.33902691655875, 34.541505554652446], [-77.33910729067479, 34.541602917952], [-77.33917283606596, 34.54167785834437], [-77.33928865349458, 34.5417902165013], [-77.33949066315375, 34.5420010937817], [-77.33956396606277, 34.54206460921951], [-77.33959806162265, 34.54210633359682], [-77.33962861742575, 34.542190702636915], [-77.3396515573135, 34.542221048284446], [-77.33965360925504, 34.54223812919736], [-77.33965678871928, 34.542342704692935], [-77.33963067017932, 34.54244010240831], [-77.33962757315247, 34.542469315967104], [-77.33965280314993, 34.542480076443205], [-77.33968956571819, 34.54258280829302], [-77.3396563967542, 34.542701026355346], [-77.3396578895802, 34.54271756587933], [-77.33967033965276, 34.542719542514845], [-77.33976650000297, 34.54281656076384], [-77.33978262079864, 34.54286454134925], [-77.3397807133092, 34.54287572096516], [-77.33979150991735, 34.54289099809481], [-77.33980401401267, 34.5429086913161], [-77.33981289515586, 34.54292125806476], [-77.33981997651365, 34.542931278130155], [-77.33984196416756, 34.54294031556303], [-77.33984454407502, 34.54294786445206], [-77.33985186466603, 34.54295729380708], [-77.33985079388879, 34.54296380289619], [-77.33986080449122, 34.542971601871656], [-77.33987437903188, 34.54297612739428], [-77.33988866867126, 34.54298260240361], [-77.33989612361049, 34.543020011554525], [-77.33993592160238, 34.54303701031569], [-77.34005407766467, 34.5431022540374], [-77.34010769521365, 34.54310129033299], [-77.34024872887659, 34.54317332687925], [-77.34053858915314, 34.543130463244054], [-77.34064346299137, 34.5430805255203], [-77.34087551048844, 34.54300309072753], [-77.34103831824252, 34.54298244033284], [-77.34168795157547, 34.54319314313368], [-77.34181763671607, 34.543235992959595], [-77.34183911610599, 34.543239443386135], [-77.34189402086507, 34.54324498954205], [-77.34259860375617, 34.54341834136915], [-77.3428953116072, 34.543405741353624], [-77.34303579378468, 34.54357037708515], [-77.34328932827385, 34.54359032998546], [-77.34337946298312, 34.54360549113645], [-77.34351424614977, 34.543661508866556], [-77.34353317378024, 34.54374364292665], [-77.34357221958899, 34.54375880976959], [-77.34370166276835, 34.54376105992381], [-77.3437678783304, 34.543786400653936], [-77.34393098287251, 34.54382890779095], [-77.34396290646829, 34.54384132465841], [-77.34401572082712, 34.54391904027435], [-77.3440899338181, 34.54394999541313], [-77.34415526279233, 34.54401206003367], [-77.34416233729384, 34.54402035654628], [-77.34421744470264, 34.5440948699982], [-77.34425701202798, 34.544129145440735], [-77.34429541658673, 34.54415655157197], [-77.34434691564994, 34.54421332195921], [-77.34436058108798, 34.54422792294076], [-77.34439768123201, 34.54426369903106], [-77.34448018494413, 34.5443418569571], [-77.34450287030408, 34.544361616932605], [-77.34453889706595, 34.54440038079432], [-77.3445845743086, 34.544449248063515], [-77.34463489165816, 34.54450307949513], [-77.34468543026176, 34.5445571473342], [-77.3447645624669, 34.54464632074724], [-77.34482913807528, 34.544722091723536], [-77.34487201809904, 34.544775122038736], [-77.34488815766323, 34.544794158855595], [-77.34492133091788, 34.544840906411466], [-77.34500288301243, 34.54494870790772], [-77.34503843932394, 34.544995997784966], [-77.3451347924118, 34.545090256052845], [-77.3451757538799, 34.545139187142766], [-77.3452250723997, 34.54521396553557], [-77.3452512869145, 34.545243466983045], [-77.34530335510554, 34.54529937510721], [-77.34537309608749, 34.545392657126676], [-77.34541737991523, 34.54543111670791], [-77.34549479688707, 34.54551004145425], [-77.34551032414622, 34.545530181801475], [-77.34554109409466, 34.54556539298998], [-77.3455838774017, 34.54565198102851], [-77.34561889881866, 34.54568938534419], [-77.34568537591886, 34.54575817412959], [-77.34577970705074, 34.545868624999315], [-77.3458868703219, 34.54596934173249], [-77.34589156833883, 34.54597494038765], [-77.34590768239947, 34.54599220316569], [-77.34597167567793, 34.54608582427688], [-77.34601174720342, 34.54611621177245], [-77.34606825149491, 34.54618007196381], [-77.34616111483395, 34.54624455234871], [-77.3463274727198, 34.54644490301007], [-77.34639132336933, 34.54651508409614], [-77.34639911981037, 34.54654718264141], [-77.3464514731973, 34.546587118313354], [-77.3465762981355, 34.5467332889727], [-77.34661650908814, 34.546865411102026], [-77.34672402660063, 34.54695685250108], [-77.34684187705619, 34.547177604340156], [-77.34685848439668, 34.54720011750018], [-77.3469444900715, 34.54741477133349], [-77.34707890236109, 34.54748097778969], [-77.34720091075025, 34.54762269557886], [-77.34720546053168, 34.54762657814238], [-77.34721255305827, 34.54763455050732], [-77.34733974739578, 34.54776633044137], [-77.3474068065548, 34.54783788889737], [-77.34755256219594, 34.54803468346867], [-77.34756074134016, 34.54806055971012], [-77.34758191113539, 34.54806581839898], [-77.34759474056611, 34.54808704127443], [-77.34775257444534, 34.54827777652974], [-77.34783324386466, 34.548358369155814], [-77.34787579608047, 34.548504866109894], [-77.34789779305801, 34.54855088653434], [-77.34797309654132, 34.548706123820246], [-77.34798975945671, 34.5487226600162], [-77.34800273503187, 34.54873142072352], [-77.34812263961884, 34.54880889231553], [-77.34831001180567, 34.548932025250956], [-77.34833193768347, 34.548946478911304], [-77.34835939114996, 34.548980597276724], [-77.34856972769975, 34.54913947302512], [-77.3486533866718, 34.54918598183652], [-77.34874695295736, 34.549200119563224], [-77.34890918680202, 34.5493354452843], [-77.34901589092425, 34.549394422862534], [-77.34913196975087, 34.54953033011636], [-77.34914642701698, 34.54954612661771], [-77.34934727822602, 34.54962640739539], [-77.34935637235783, 34.54963832492724], [-77.34945557936419, 34.54966514452893], [-77.34952032249446, 34.54971566625042], [-77.34954215621434, 34.54972031850659], [-77.34954798279077, 34.54973316144069], [-77.34956365685605, 34.549758542524785], [-77.34959523550512, 34.54978756668068], [-77.34960525700126, 34.54979325489461], [-77.34961629981065, 34.54981030074502], [-77.34964385835086, 34.54984177472135], [-77.34966460740189, 34.549869028894165], [-77.34966516342045, 34.549870035031056], [-77.34965045974694, 34.549902029962155], [-77.34965732154839, 34.549928314861575], [-77.34961339680198, 34.54993649405084], [-77.3495625836631, 34.54997588118973], [-77.34954546344242, 34.54999807300452], [-77.34954200620109, 34.55002213024765], [-77.34957943243236, 34.55001460343546], [-77.34961195496561, 34.54999917047988], [-77.34965848102667, 34.549994343578135], [-77.3497103462077, 34.54998888576766], [-77.3497375727302, 34.55001190419067], [-77.34977757454291, 34.55002491520056], [-77.3497914738658, 34.550055693519326], [-77.34979671882056, 34.55006459781962], [-77.34979670176803, 34.55007078302664], [-77.34980641347778, 34.55007963283764], [-77.34982873256395, 34.550106887824434], [-77.34984086279475, 34.55011945035184], [-77.3498555542078, 34.550148972776526], [-77.34986652505184, 34.550176962569914], [-77.34986636675879, 34.55019909281521], [-77.34987261147798, 34.55028146506582], [-77.34985827304462, 34.55030056058605], [-77.34986320834098, 34.55032216215339], [-77.34989848895941, 34.55034393842562], [-77.3499312345989, 34.55039137219221], [-77.34994965831008, 34.55040981990569], [-77.35002219553996, 34.55044322954752], [-77.35009095880672, 34.55051091625411], [-77.35009181872422, 34.55051123142127], [-77.35009225772357, 34.55051254223611], [-77.35016392991699, 34.55062380506562], [-77.35021151195109, 34.550662029466864], [-77.35024082909223, 34.550709031844605], [-77.35024930837895, 34.55073392871469], [-77.35026437789372, 34.550742710278456], [-77.35027783460447, 34.55076042610375], [-77.35027802880421, 34.55076255179808], [-77.35027111296279, 34.550785864309105], [-77.35026269619654, 34.55079320733728], [-77.35027311450814, 34.55079644005522], [-77.35028061170908, 34.55080042400643], [-77.35031402983226, 34.55081642245624], [-77.35031512715652, 34.55082499264313], [-77.35032723493131, 34.55084512471515], [-77.3503766131712, 34.550894101086], [-77.35038045000283, 34.55089624844162], [-77.3503855432844, 34.55089793871398], [-77.35043661240707, 34.55091409510373], [-77.35047397614773, 34.550928575036764], [-77.35048961349925, 34.550934333653984], [-77.35050044627607, 34.55094260795173], [-77.35050270670041, 34.55096065766605], [-77.35050797546349, 34.55100272970491], [-77.3505224358729, 34.55103017996751], [-77.35053865875935, 34.551059519230414], [-77.35055476217619, 34.551126401599184], [-77.35057624877143, 34.551244826592274], [-77.35058533771462, 34.55129762268078], [-77.35059254037284, 34.55133917887541], [-77.35059980704118, 34.551380481505376], [-77.35061951791154, 34.551415114292716], [-77.35065739392694, 34.551489378369524], [-77.35067670757397, 34.55151685754067], [-77.35067835771574, 34.55152905703556], [-77.35068577294517, 34.55154650453272], [-77.3507279407463, 34.55164433191714], [-77.35075785792331, 34.551696818961915], [-77.35080351584675, 34.551755866048616], [-77.35084791071021, 34.551870045030526], [-77.3508549410739, 34.551877205063064], [-77.35095781385951, 34.55197848149848], [-77.35097078235827, 34.55201843983576], [-77.35103577547787, 34.552109036317894], [-77.3510744016591, 34.552181401515085], [-77.35109978260523, 34.55220287119185], [-77.35123140018591, 34.55230397594989], [-77.35123417986142, 34.55230593984849], [-77.35132427926618, 34.55235396743266], [-77.35132459520072, 34.55235414406294], [-77.351349748728, 34.552411718029006], [-77.35137792960992, 34.552434471422345], [-77.35142021181176, 34.55246548475639], [-77.35153249483955, 34.55255888702409], [-77.351613074148, 34.55261572973983], [-77.35161757830603, 34.55261799353448], [-77.35171137285315, 34.552664907193765], [-77.35180719539383, 34.55271121444804], [-77.3518123314304, 34.55271237511655], [-77.35194796022975, 34.552727263164215], [-77.3520030462963, 34.55273143203288], [-77.35217046544469, 34.55278324188686], [-77.35218479514863, 34.55278943154559], [-77.35219792018574, 34.55279418276058], [-77.35223615174554, 34.55279767693132], [-77.35243732855864, 34.552839721648354], [-77.35257223978553, 34.55284782659869], [-77.35258909407789, 34.55285762685839], [-77.35260370763092, 34.55285233382688], [-77.35273435082844, 34.552856349670726], [-77.35278540070047, 34.55285801922318], [-77.35284011553527, 34.55284317572266], [-77.35294060924917, 34.5528209695576], [-77.3529822970682, 34.552832727935716], [-77.35315614078735, 34.552778572495], [-77.35322089827241, 34.5527800773716], [-77.35322910620698, 34.552753282849764], [-77.35334841638604, 34.55271793549403], [-77.35337820489146, 34.552689998356826], [-77.35346880105294, 34.55265757681222], [-77.35347639128122, 34.55265601582559], [-77.35347813787284, 34.55265561800281], [-77.35357479656336, 34.55267795185011], [-77.35365653194765, 34.552619478455405], [-77.35370578488285, 34.55260405224047], [-77.35377315287134, 34.55258902281723], [-77.35379965148087, 34.5525649275821], [-77.35383753736485, 34.55254329609321], [-77.3538727997182, 34.55252413074866], [-77.35392137948256, 34.55249996819823], [-77.35392654831799, 34.552497352408444], [-77.35397211118807, 34.55247384443625], [-77.35399564406288, 34.55247400878576], [-77.35402359807364, 34.55245530886857], [-77.35402998785395, 34.552428625200115], [-77.35407126655505, 34.552430354589816], [-77.35413739246437, 34.55239815725808], [-77.3541702761043, 34.55239321406931], [-77.35428907686241, 34.55240406755345], [-77.35447527088773, 34.55245149907736], [-77.35451542401296, 34.55247416752037], [-77.35456037055994, 34.55250366455805], [-77.35461013010676, 34.55246252556208], [-77.35461647577833, 34.552431173263216], [-77.35463289931981, 34.552385277756144], [-77.35456337089718, 34.55237289711606], [-77.35445943427001, 34.55227516402731], [-77.35449527221351, 34.55220379768715], [-77.35451248986121, 34.5521666416531], [-77.3545682529507, 34.55216011670923], [-77.3546450885548, 34.55213468519055], [-77.3547652998517, 34.55212815886708], [-77.3548130313668, 34.55206449828051], [-77.35487035408278, 34.55202739442946], [-77.35496563124923, 34.55195301208895], [-77.35501994452339, 34.55191679876679], [-77.35506826146096, 34.55187649432318], [-77.35518233838766, 34.551747438084746], [-77.35519780837379, 34.551735434667286], [-77.35532143458026, 34.55162290893337], [-77.35535966584882, 34.551589723516315], [-77.35536164582491, 34.55158630695578], [-77.35536669127698, 34.55158528788152], [-77.35537203833893, 34.551584617844085], [-77.35556451438903, 34.55151940584369], [-77.35569841569337, 34.551501790233836], [-77.35576143381024, 34.551492919849906], [-77.35595890819405, 34.5513801601063], [-77.35596036148777, 34.55137883666781], [-77.35604630802038, 34.55129849791152], [-77.35608490264494, 34.551240497818256], [-77.35610996757933, 34.55120528481484], [-77.35616233869129, 34.55113170983226], [-77.35620784716527, 34.5511003871849], [-77.35621549774959, 34.551067062155354], [-77.3562501171605, 34.55102510156174], [-77.35626332179177, 34.55100836709767], [-77.35632508207037, 34.550984139194064], [-77.35636229544502, 34.55097267173633], [-77.3564269808474, 34.55094642867398], [-77.35652853697006, 34.55091219392203], [-77.35656024467208, 34.5509011854131], [-77.35662694274751, 34.55087640508489], [-77.35675798543116, 34.55083877936994], [-77.35680144777486, 34.55079660568043], [-77.3569581023947, 34.55067266803421], [-77.35700597375923, 34.550647744872556], [-77.35704989445183, 34.550611926913675], [-77.35732532615621, 34.55034792527799], [-77.35735112077991, 34.55032373605586], [-77.35735472737271, 34.5503206855904], [-77.35735890754566, 34.55031540837151], [-77.3575122829007, 34.55014897175429], [-77.35756095023146, 34.55006513027946], [-77.35759729249708, 34.55004347058656], [-77.3576745026999, 34.5499795274977], [-77.35770596772144, 34.54993919468547], [-77.35775516904779, 34.549898328603504], [-77.35776119585195, 34.54989325108235], [-77.35794661198378, 34.54986354918649], [-77.35795925810893, 34.54981666026325], [-77.35798205857384, 34.54985095418705], [-77.35800836389154, 34.54989359398241], [-77.35795697296018, 34.54999168505644], [-77.3581509424443, 34.55001853840337], [-77.35825833945027, 34.550015216761615], [-77.35834321013834, 34.54993607489408], [-77.35851047222667, 34.54988951831992], [-77.35854777894195, 34.54983423502945], [-77.35863679962677, 34.54970261112659], [-77.35884823112588, 34.54961853670564], [-77.35872456583493, 34.54953044078625], [-77.35873028384233, 34.54949972479715], [-77.35877640462537, 34.549491211550716], [-77.35877394327566, 34.54950682132505], [-77.35894625282984, 34.549578327247296], [-77.35897194194243, 34.54958461535239], [-77.35909387054618, 34.549552437040774], [-77.3591454084925, 34.549453883269116], [-77.35914562254558, 34.54945343148063], [-77.35914574204718, 34.54945328724438], [-77.35914579907242, 34.54945304740859], [-77.35915807974112, 34.54933530778769], [-77.35915993995921, 34.54932883099816], [-77.35915985401041, 34.54932172195757], [-77.35915851958565, 34.549211337284], [-77.35915846269633, 34.54920663180094], [-77.3591584082317, 34.54920212686892], [-77.35915700945239, 34.54908641804586], [-77.35915807187408, 34.54908427616598], [-77.3591559071672, 34.548995235443456], [-77.35915262577548, 34.548965124440095], [-77.35915464507244, 34.548961083174184], [-77.35915679033175, 34.54895665334754], [-77.35918913193197, 34.548834980011506], [-77.3592061334526, 34.5488039424159], [-77.35923083857958, 34.54874978491028], [-77.35925151275957, 34.54870358586646], [-77.35926860904543, 34.54864397709392], [-77.3592677995807, 34.54864003479838], [-77.35926851890483, 34.54863604183854], [-77.35928345389037, 34.54857657475737], [-77.35927556875113, 34.54857036208389], [-77.35927228487759, 34.54854758001282], [-77.35927101388549, 34.54854363675226], [-77.35926492045809, 34.54852076046155], [-77.35926404558307, 34.548518737837796], [-77.35926410575655, 34.54851815474792], [-77.35925225338616, 34.54851183502452], [-77.35926501874398, 34.54851646651886], [-77.35926567329739, 34.54851750603207], [-77.35928413770053, 34.54851182482393], [-77.35928224217923, 34.54850496718789], [-77.35927130104506, 34.548501817202954], [-77.35926544897265, 34.54849767056796], [-77.35924189679156, 34.548505327070316], [-77.3592359572023, 34.54849160488607], [-77.35923531539478, 34.54848013535752], [-77.35923437859955, 34.54846122920194], [-77.35924632246152, 34.54841146089518], [-77.35924387749992, 34.54839865549045], [-77.35925053861676, 34.54838681623687], [-77.35926905904668, 34.5483399527434], [-77.35927082535972, 34.54833356929374], [-77.35927911103603, 34.54832630280984], [-77.35926924622134, 34.54833177541329], [-77.35922932358235, 34.54830363591043], [-77.35922568867193, 34.548278862581405], [-77.35924011391823, 34.54825755973481], [-77.35926408758466, 34.54821212750087], [-77.35930139058192, 34.54812840821542], [-77.35931596858468, 34.5480822451179], [-77.35934028019004, 34.548057925447225], [-77.35937464041325, 34.54801536367288], [-77.35951111635092, 34.54796969269104], [-77.35957266396164, 34.547940200128195], [-77.35961150245177, 34.54794151637412], [-77.35960197191332, 34.54790093508464], [-77.35959384596919, 34.54779740875949], [-77.35965010403521, 34.54771192897658], [-77.35965524442841, 34.547666155855914], [-77.35965099830992, 34.547622453502484], [-77.35968466364795, 34.547539507636415], [-77.35968162486374, 34.547478896679564], [-77.35968164174442, 34.54747873681938], [-77.359681570894, 34.547478627094186], [-77.35968141039807, 34.5474772365856], [-77.35967481591108, 34.5474185137062], [-77.35967909936424, 34.547359807851805], [-77.35967660061561, 34.54735226797574], [-77.35965983051119, 34.54729825953365], [-77.35964440840198, 34.547265371848745], [-77.35961856428148, 34.54719984674851], [-77.35961176262717, 34.547182769089524], [-77.35961494350667, 34.54716698090306], [-77.35960275550252, 34.54706797085711], [-77.35960503143525, 34.54706132636312], [-77.35960561869997, 34.54705334823771], [-77.35962369873008, 34.546953976316914], [-77.35962788240236, 34.54693562393475], [-77.35962610622083, 34.54691715393903], [-77.35962438936116, 34.54683012805344], [-77.35962599521235, 34.546813483690286], [-77.3596256780213, 34.5467967884243], [-77.35961953677254, 34.5467035827674], [-77.35961977891483, 34.54669196682025], [-77.35961721417317, 34.546682504228514], [-77.3596030987409, 34.54661036374604], [-77.35959639152827, 34.54657292251414], [-77.35958429557459, 34.5464660376525], [-77.35957527773917, 34.54645355080497], [-77.35949099670951, 34.5463926734161], [-77.3594324620288, 34.54635170360798], [-77.35943887870648, 34.54633470906194], [-77.35941383754857, 34.54630283678697], [-77.35927414598547, 34.54628716480396], [-77.35902238897259, 34.546252596779595], [-77.35888026188464, 34.54627470652792], [-77.35862789388733, 34.546335419636506], [-77.35848907032737, 34.54632937566613], [-77.35843169812745, 34.54633088793619], [-77.35837040098593, 34.546259806195444], [-77.35835604331558, 34.54618867076775], [-77.3583685161983, 34.54609489544808], [-77.35849608250783, 34.54599688600814], [-77.35839324246786, 34.54591914282997], [-77.35840048492842, 34.54586207960636], [-77.35841453195192, 34.545763804714205], [-77.3583767234728, 34.54572633286475], [-77.35840645463306, 34.54566776767142], [-77.3584378674729, 34.54563803290031], [-77.35843958098073, 34.54563273173875], [-77.35863549302309, 34.54548716533782], [-77.35863804330863, 34.54548092573368], [-77.35864788858697, 34.54546221584714], [-77.3586579117929, 34.54547746896428], [-77.358658663281, 34.54548382907485], [-77.35903568253703, 34.54567192382676], [-77.3590489083099, 34.54566432204655], [-77.35943326910262, 34.54545387798812], [-77.35948813282492, 34.54539780438264], [-77.35951650685267, 34.545360305696576], [-77.35949188126878, 34.545329082041725], [-77.35947490478523, 34.54514299923848], [-77.35946363742651, 34.545123094769735], [-77.35952383526174, 34.5450635204457], [-77.35962315430974, 34.544966761925295], [-77.35964132193723, 34.54494023332655], [-77.35967324633944, 34.544866950075125], [-77.35967164178481, 34.54484831868953], [-77.35967481754889, 34.54482856690866], [-77.35967849946789, 34.544786125186306], [-77.35968064753175, 34.544763809986755], [-77.3596821387779, 34.54474709237838], [-77.35968635503541, 34.54472378798748], [-77.35968599603402, 34.544699417410584], [-77.3596868191849, 34.544662515143614], [-77.35968745910216, 34.544625496627944], [-77.35968523763398, 34.5446015368784], [-77.3596873754711, 34.544577683929795], [-77.35968626923369, 34.54456282551306], [-77.35968460127197, 34.544540422506955], [-77.35968312231321, 34.544520557996705], [-77.3596814725705, 34.54449839946895], [-77.35968429601232, 34.544479260456946], [-77.35969068134699, 34.54445449246142], [-77.35969518255459, 34.54438088576899], [-77.35969712476, 34.54435500111027], [-77.35969941168734, 34.544327195737424], [-77.35969991342537, 34.54432109543551], [-77.35969631163013, 34.544293912191826], [-77.3596981873327, 34.54425816338154], [-77.35970755093797, 34.544231087727454], [-77.35971021438861, 34.54419833056364], [-77.3597148085309, 34.54414206618975], [-77.35972444987542, 34.54410624226456], [-77.35971247620031, 34.54407592926097], [-77.35970401816125, 34.544012631636114], [-77.35970002328929, 34.543987347667496], [-77.35969931143072, 34.543965203027426], [-77.35969246511773, 34.54388282597078], [-77.3597016022303, 34.543864708279784], [-77.35970888560472, 34.543837267630074], [-77.35973441020904, 34.54377905043014], [-77.35978912707614, 34.54372969260534], [-77.3598335496085, 34.54370310346838], [-77.35986624960015, 34.54368908577955], [-77.35989935969086, 34.54367303193379], [-77.35995787617392, 34.54364882696842], [-77.35996533317062, 34.54364813858591], [-77.35998713181363, 34.54367057659774], [-77.35998705939714, 34.5436870853715], [-77.35999030005866, 34.54370072337286], [-77.35998250066152, 34.54375088040633], [-77.35998610619744, 34.54377733138952], [-77.35999233139364, 34.54382284289128], [-77.35999277793532, 34.54386379215315], [-77.35999216793422, 34.54390446496347], [-77.35999151888554, 34.54394537195968], [-77.35998640615887, 34.54398930424958], [-77.3599860031098, 34.54402564960265], [-77.35998274478607, 34.544069047511236], [-77.3599571878193, 34.54413210703331], [-77.3599562415288, 34.54413535309715], [-77.35995406420136, 34.54414059597022], [-77.35993444631322, 34.54418684058656], [-77.3599380347839, 34.54419789792566], [-77.3599496203777, 34.5442563157279], [-77.35994951837311, 34.54425745030292], [-77.35994944319646, 34.544258658079876], [-77.35995295024156, 34.54431816209559], [-77.35995228406205, 34.54437719785624], [-77.3599528172676, 34.544382055379124], [-77.35996458598618, 34.544438898588794], [-77.35996104949528, 34.544491253838494], [-77.35996182602058, 34.544510622799486], [-77.3599618751701, 34.54456170100697], [-77.35995106394546, 34.544619500851134], [-77.35995016298307, 34.54462913227591], [-77.35994956916753, 34.544685885139955], [-77.35995011706642, 34.54474090726576], [-77.35995012002176, 34.54475329553717], [-77.35994881969324, 34.54480840511843], [-77.35994691201071, 34.54486402269908], [-77.35994717253267, 34.54487604558862], [-77.35994592512046, 34.54493123399158], [-77.35994518200098, 34.54498602180079], [-77.35994500361521, 34.54499917445165], [-77.35993292785867, 34.545055517654994], [-77.35992763650039, 34.54511490855863], [-77.3599274354818, 34.54517872060759], [-77.35991278939312, 34.54523186890993], [-77.35990760817104, 34.54524278180075], [-77.35991124066922, 34.54525308849487], [-77.3599140873146, 34.54530305479231], [-77.35991911415722, 34.54535913031942], [-77.35991625420606, 34.54542515480422], [-77.35992029693885, 34.5454876141676], [-77.35993548676326, 34.545544797269265], [-77.3599488154221, 34.54562194967843], [-77.35994172435379, 34.54566631120065], [-77.35993556728486, 34.5457174371557], [-77.35991962041973, 34.54579190611469], [-77.35990553654187, 34.54584926071878], [-77.35990061883388, 34.545917054457526], [-77.35987951937639, 34.546001233976824], [-77.35986243611815, 34.54604496472844], [-77.35984416675994, 34.54606776983543], [-77.359838445236, 34.54617083146252], [-77.35984697940542, 34.54626723979709], [-77.35984617655868, 34.54629213018842], [-77.35984471572863, 34.54631640523939], [-77.35983003086729, 34.54641686717128], [-77.3598318866178, 34.54652004152659], [-77.35982976654212, 34.54653931725728], [-77.35983097695762, 34.546558089035415], [-77.35982733917913, 34.54666207881602], [-77.3598321668221, 34.54668285211354], [-77.35983878583896, 34.54672163654777], [-77.35983746389748, 34.546757200258845], [-77.3598366909923, 34.54678314419548], [-77.35984094960872, 34.546811309425465], [-77.3598439173444, 34.54684330964864], [-77.3598431858543, 34.54687355971304], [-77.35984241906506, 34.54690473138834], [-77.3598463511718, 34.546938121616705], [-77.35984537181119, 34.54696551223433], [-77.35985109648703, 34.546988262813414], [-77.359852505478, 34.547025690991845], [-77.35985507255288, 34.54706654901271], [-77.35985649904052, 34.54708632196983], [-77.35985531438416, 34.547105760564236], [-77.3598610982128, 34.547146865684134], [-77.3598771404788, 34.54720146999089], [-77.35987850833013, 34.54720556472503], [-77.35987840639434, 34.54720897459728], [-77.35987546320948, 34.54726720918873], [-77.3598949721863, 34.54731712762284], [-77.35989591025744, 34.54733478623499], [-77.35990838666875, 34.54738488036228], [-77.3599170229787, 34.54742112968616], [-77.35992646649753, 34.54747383696168], [-77.3599122068247, 34.54750674227415], [-77.35991914610165, 34.5475944593084], [-77.35991377988884, 34.54762892779034], [-77.35993430214432, 34.54764943284208], [-77.35994452001438, 34.547730988614745], [-77.35993420320213, 34.547748398934864], [-77.3599684017978, 34.54780333931185], [-77.35998901417884, 34.547849407376205], [-77.3599946935575, 34.54786210052849], [-77.36000469288089, 34.54788444862107], [-77.36000899857117, 34.54795497347929], [-77.36001942924159, 34.5479809507047], [-77.36003232327081, 34.54799766670236], [-77.36004147757944, 34.548008378815574], [-77.36002791586026, 34.54801993124717], [-77.36001986024093, 34.54804209467333], [-77.36001938139617, 34.54804682494827], [-77.3600201852033, 34.54806719764778], [-77.36001549205801, 34.54807332669272], [-77.36003561681484, 34.5480829902141], [-77.36004243629787, 34.5480805308504], [-77.36005336322513, 34.54809440410329], [-77.36005460542592, 34.54809829747412], [-77.36005499053309, 34.54810120249947], [-77.36005309470126, 34.54815636539388], [-77.36005203603249, 34.548159873483996], [-77.36005313333317, 34.54816295303675], [-77.36007380601252, 34.5482179446448], [-77.36009481440223, 34.54825209949976], [-77.36011421360354, 34.54831028530995], [-77.36012787261691, 34.548332571256694], [-77.36013144174007, 34.54834507063034], [-77.36013733198224, 34.54844571683603], [-77.36013784607557, 34.54845354716193], [-77.36013874976626, 34.54846023020946], [-77.3601489801131, 34.54849063012022], [-77.36015379365664, 34.54850919033575], [-77.36015448900645, 34.54851235664713], [-77.36015722445775, 34.54851748693955], [-77.36016000445517, 34.54854216544818], [-77.36017767526064, 34.548551462222946], [-77.3601820634807, 34.54856959200577], [-77.36017902409858, 34.54859018489683], [-77.36017221071205, 34.54861594281502], [-77.36017300984756, 34.54863210173856], [-77.3601750873812, 34.54867411089651], [-77.36017601536308, 34.54869287496842], [-77.36017306072434, 34.54871146728111], [-77.36014300373071, 34.548751848992474], [-77.36010490187572, 34.548802490117865], [-77.36009090915864, 34.54882754210287], [-77.36010305618997, 34.54884931297023], [-77.3601039371267, 34.54892620453107], [-77.3600791794577, 34.54895164319112], [-77.3600243796418, 34.549011681731685], [-77.36000085724454, 34.54902412736132], [-77.35993973303589, 34.54905627809684], [-77.35991817853095, 34.54908419617587], [-77.3599175249245, 34.54909733287603], [-77.35990321547646, 34.549121238036285], [-77.3598770833518, 34.54916436227177], [-77.35986820928866, 34.549184068837704], [-77.35985006735967, 34.54922945844511], [-77.35984274602909, 34.549287689696676], [-77.35984200897472, 34.54929182481645], [-77.35984793229706, 34.54929838755018], [-77.35983789620809, 34.549353623038], [-77.35983543830666, 34.54941390989406], [-77.35983558166771, 34.5494165626427], [-77.35980184040912, 34.54943933579775], [-77.35973360128192, 34.549485671847584], [-77.35972947516706, 34.54948912329975], [-77.35972741744078, 34.54949194329005], [-77.35971312929415, 34.54950646969167], [-77.3595638014478, 34.5496568871425], [-77.35942900008543, 34.5497797367573], [-77.35939885829437, 34.549825006548005], [-77.35933044349123, 34.54994635696134], [-77.35923233345892, 34.549992356560395], [-77.35913324248212, 34.549985372660245], [-77.35898305678434, 34.55008877127402], [-77.35895476612308, 34.55010568147917], [-77.35893357879326, 34.550131954123486], [-77.3588695496327, 34.55018840583315], [-77.35883945365438, 34.55023185989663], [-77.35880521793993, 34.55028129123941], [-77.35862945694728, 34.550384507781715], [-77.35861391402813, 34.55043658566327], [-77.35853299959302, 34.55047969485689], [-77.3583652536153, 34.55056397464921], [-77.35827974779802, 34.550591186490266], [-77.35813714542907, 34.550620973623275], [-77.3580823916345, 34.550674723141086], [-77.35804834991586, 34.550712999236], [-77.35785707640038, 34.550813469988775], [-77.35773807535705, 34.55090258158198], [-77.35765936243797, 34.550965645884396], [-77.35756786852892, 34.55102700002614], [-77.35745249395234, 34.551113367806266], [-77.35733817039662, 34.551220509865445], [-77.35726933629488, 34.55127262603113], [-77.35719273007142, 34.55132583246265], [-77.35703307831344, 34.551534572470075], [-77.35698221344502, 34.551600963470115], [-77.35696637340921, 34.55162196628451], [-77.35693584405885, 34.55164396703233], [-77.35683339325202, 34.551685676092845], [-77.35653921302324, 34.55181876778988], [-77.35638833389697, 34.55183747032919], [-77.35623226696003, 34.55189917671123], [-77.35614371980634, 34.55194386089877], [-77.35612626317901, 34.551958333947226], [-77.35610819515686, 34.551971613203285], [-77.35593568674506, 34.552113982634864], [-77.35574480941625, 34.55221792457134], [-77.35570283045428, 34.55224906059229], [-77.35563614009908, 34.55228439172251], [-77.35545300090277, 34.55237587988155], [-77.35534691897914, 34.552447399656856], [-77.35523615807287, 34.55251874891454], [-77.35508516829464, 34.552608528193275], [-77.3550547240104, 34.55267884626969], [-77.35494659879906, 34.5527826968706], [-77.35471384041867, 34.552906802715306], [-77.3547592275947, 34.55303182118489], [-77.35477544089623, 34.553142757964636]], [[-77.39119277560137, 34.70408599237289], [-77.39234495485032, 34.70494591560319], [-77.39201189675944, 34.70542607073514], [-77.39167686207395, 34.706213329979526], [-77.39158362892898, 34.706222251212765], [-77.3915274151733, 34.706251839599545], [-77.39146071506357, 34.706207158240986], [-77.39077086368641, 34.70589622341456], [-77.39068026031235, 34.70563988940285]], [[-77.31977291518326, 34.54578595294784], [-77.31985334821564, 34.54587241498617], [-77.32003302525382, 34.54589801643242], [-77.32006181271898, 34.54607828247569], [-77.319764447039, 34.5461484018467], [-77.31973465957363, 34.546167394670036], [-77.31952952213994, 34.54611729109064], [-77.31937539308808, 34.54599629144599], [-77.31936471264599, 34.54599402603419], [-77.3192618936192, 34.54583707754155], [-77.31898842613946, 34.545754947445545], [-77.31893079780306, 34.54560485833433], [-77.31875886127429, 34.54559143563416], [-77.31864102500084, 34.54558268592551], [-77.31859990650517, 34.545580113072475], [-77.31846917912941, 34.545471338409534], [-77.31820868368459, 34.545520951829516], [-77.31788340556952, 34.545514267101275], [-77.31781641962303, 34.54550633161052], [-77.31778867576286, 34.54550333301362], [-77.31771977709482, 34.54549588625272], [-77.31751704098107, 34.54546744265807], [-77.31742461076662, 34.54547225297372], [-77.31727578590682, 34.54546678165413], [-77.31722847761388, 34.54546499405304], [-77.31716654967852, 34.54549118026992], [-77.31703048530235, 34.54553719800729], [-77.31695716776039, 34.54556004347476], [-77.31686149636015, 34.54561916937459], [-77.31675958084219, 34.54571224999014], [-77.31663012740513, 34.545868440491056], [-77.3164440792534, 34.545679124730015], [-77.31655938410267, 34.54561474924988], [-77.31659260465032, 34.54553538623297], [-77.31662126567073, 34.54542092003344], [-77.31662867916263, 34.54540779923686], [-77.31663043459359, 34.54540091652439], [-77.31664197879921, 34.54536200016925], [-77.31666539002434, 34.545293722672056], [-77.31672036255867, 34.545272224787574], [-77.31677207940085, 34.545221465151656], [-77.31692240093209, 34.54519321428661], [-77.31703867345674, 34.54518722749356], [-77.31713408936388, 34.54514933715272], [-77.31724474253785, 34.545074498460195], [-77.31743592882064, 34.54498841029147], [-77.3176831807096, 34.54501152043452], [-77.31777165848366, 34.545033616150754], [-77.31782674730798, 34.54506473791965], [-77.31791578643598, 34.545033168668226], [-77.31802352411297, 34.54504443123204], [-77.31806446448664, 34.54505349575382], [-77.31812131005755, 34.54506003984154], [-77.31813257920683, 34.545069372189815], [-77.31815377555623, 34.54510660709739], [-77.31815328016548, 34.545148831295485], [-77.31810368035548, 34.54519592911093], [-77.3181147151484, 34.54525679024687], [-77.31821384882926, 34.545300054710566], [-77.31842771431579, 34.54528248309296], [-77.31860644042014, 34.54530062166624], [-77.31872490732748, 34.54527796101875], [-77.31880344739432, 34.54527047949297], [-77.31887957943324, 34.54525411096472], [-77.31891210892827, 34.545257048676085], [-77.31899956153005, 34.54527852941976], [-77.31903157750324, 34.545287355022964], [-77.31907666795895, 34.5453009699541], [-77.31902658896892, 34.54553242224719], [-77.31938707016204, 34.545496596905494], [-77.31939174220113, 34.54549759165341], [-77.31949082697412, 34.54548628508671], [-77.31948219178233, 34.54554758221614], [-77.3195302279232, 34.545634165183124], [-77.31960558806361, 34.54571461040343]], [[-77.3950568198747, 34.605212569515984], [-77.39520359319687, 34.6051169776197], [-77.39537330296977, 34.60493440191817], [-77.39545097807212, 34.60488597490105], [-77.39574083838326, 34.60476905742789], [-77.39584512492797, 34.604701947773265], [-77.39606690874419, 34.60459545898079], [-77.39639215255147, 34.60452757065404], [-77.39663341058314, 34.60438730663853], [-77.39713068943045, 34.604145253133446], [-77.39742168754753, 34.60413468893827], [-77.39784514252733, 34.6041848874981], [-77.3978449591946, 34.60372875346634], [-77.39820997517401, 34.603372182746256], [-77.39880815246866, 34.603385047762806], [-77.39899823163125, 34.60338469485181], [-77.39926054179978, 34.603241977503444], [-77.39946703452141, 34.60349475931915], [-77.39899821729418, 34.60406430254219], [-77.39854391295222, 34.60483684772856], [-77.39807168936136, 34.60539433689283], [-77.39763800203534, 34.60568997819178], [-77.39742162607068, 34.605697487950835], [-77.39725256089984, 34.60569461122164], [-77.39663333782882, 34.60588325062498], [-77.39637519150199, 34.606210126960505], [-77.39623916847135, 34.60642793944481], [-77.39621464805546, 34.60648493215795], [-77.39616510463951, 34.606518487980296], [-77.39592777317861, 34.60664186702884], [-77.39584501161367, 34.606665515681044], [-77.39573543970924, 34.60669848587547], [-77.39545085976016, 34.60678477055778], [-77.39524047960333, 34.6068497980788], [-77.39505668960294, 34.60716323093331], [-77.39453029355424, 34.60760340706365], [-77.39444805571111, 34.60780884479919], [-77.3942683314896, 34.60801404963824], [-77.39402944682554, 34.60826747708238], [-77.39349243009399, 34.60858880893922], [-77.39347998012335, 34.608594265269325], [-77.3934681162582, 34.608592945876], [-77.39272706920228, 34.608674448617386], [-77.39269166677778, 34.6086487924622], [-77.39256790568717, 34.608602220316655], [-77.39210262278174, 34.60858799274878], [-77.39220743407515, 34.60826587516948], [-77.3923850201845, 34.6082431199582], [-77.39269171606736, 34.60812218082092], [-77.39286141240107, 34.608026856070175], [-77.39296774092226, 34.60782874038274], [-77.39304491153663, 34.6074372259298], [-77.39307763948085, 34.60737938819408], [-77.3934419464477, 34.60691121811726], [-77.39346360446604, 34.606890299949654], [-77.3934801263017, 34.606866430852286], [-77.3936078038439, 34.606749777041045], [-77.39387430171573, 34.60649958052858], [-77.39393400304823, 34.60647999679138], [-77.39426848653517, 34.60596433539526], [-77.39427752236777, 34.60595131031178], [-77.3942827505902, 34.605940823957106]], [[-77.34275893880103, 34.52323610427419], [-77.3427007188051, 34.52305378228255], [-77.34287009614704, 34.52290325158092], [-77.34307607080832, 34.52274241307588], [-77.34368932339396, 34.522532044388385], [-77.34377138242013, 34.52289972588066], [-77.34348488187838, 34.52320257774282], [-77.34306032948442, 34.52342402034836]], [[-77.33840554175407, 34.55084646533047], [-77.33828874198532, 34.55075205389789], [-77.33815436986085, 34.55066391955725], [-77.3383181562496, 34.55072980388793], [-77.33850204882489, 34.550793888142465], [-77.33887870597951, 34.55077841803916], [-77.33849949189941, 34.55090439960704], [-77.33845945727985, 34.55086425403697]], [[-77.21798660419842, 34.61724096355789], [-77.21821090124898, 34.61716133606582], [-77.21824423498879, 34.61714141537861], [-77.21831695487215, 34.617077544219065], [-77.21852050056972, 34.617073254637454], [-77.21839490001211, 34.61717586834196], [-77.2183762130169, 34.61725884168709], [-77.21825040320223, 34.617400138201184], [-77.21811618012988, 34.617473802074485], [-77.21808589401418, 34.617387144870456], [-77.21792823846141, 34.61729473944239]], [[-77.31141769640789, 34.55049369444787], [-77.31151656730216, 34.55042612538591], [-77.3115832427402, 34.550395936940085], [-77.31174526626226, 34.550270882680934], [-77.31177493816702, 34.55024085865764], [-77.31179430119184, 34.55014143724556], [-77.31181918796838, 34.550115962334594], [-77.311897853977, 34.550052281516756], [-77.31198805926941, 34.54999121107602], [-77.31201918980666, 34.54995875614602], [-77.3121735148631, 34.5499380985255], [-77.31221791819782, 34.54985581643368], [-77.31239726719956, 34.54982113264695], [-77.31227773094639, 34.54994961687661], [-77.31228602014397, 34.550146522585024], [-77.31222685031803, 34.55021251785822], [-77.31193787662204, 34.55048803541857], [-77.31188919455748, 34.55054494985801], [-77.31180698335491, 34.55063625633841], [-77.31150511105112, 34.550854769915915], [-77.31140615575194, 34.55098558561535], [-77.31134240863788, 34.55102396987962], [-77.31124915241851, 34.551076544894144], [-77.31117721318712, 34.55119195562103], [-77.31100807303821, 34.55121780039069], [-77.31068958885733, 34.551353477123676], [-77.31082104774437, 34.551138012121214], [-77.31076373158918, 34.551056145726804], [-77.31079729993249, 34.55100691826982], [-77.31096650270311, 34.550872318783895], [-77.310997614261, 34.55085603759587], [-77.31101697295739, 34.5508385393308], [-77.31129946196464, 34.55075460872282], [-77.31133992809221, 34.55057389255848], [-77.31137751584313, 34.550544181241946]], [[-77.3958467651204, 34.580310964518034], [-77.39568418620479, 34.5804395781041], [-77.39545271740279, 34.58065554170712], [-77.39541294531682, 34.5806852516553], [-77.39520983670445, 34.580757404240764], [-77.39505868219985, 34.58081499669925], [-77.39495191149256, 34.580794610791365], [-77.39472741898692, 34.58075937409161], [-77.39466466674938, 34.58073734416034], [-77.39446403090957, 34.58064878681196], [-77.39427065661178, 34.58061078668403], [-77.39413421456373, 34.580635007675745], [-77.39403360571062, 34.58050250311929], [-77.39373137465856, 34.58027808573162], [-77.39370407594072, 34.579939453149954], [-77.39396039318738, 34.57999830551019], [-77.39427071972011, 34.57994628574895], [-77.39433469154258, 34.57996556757321], [-77.39463211035189, 34.57995644276384], [-77.39466473775268, 34.57995041396457], [-77.39470909711139, 34.5799326965584], [-77.395058765208, 34.57984445497469], [-77.39533809980522, 34.579766174581785], [-77.39565207248293, 34.579629739226164], [-77.39584678223758, 34.58008648460121], [-77.3960012716618, 34.58005219337692], [-77.39593507021125, 34.580228211754374], [-77.39589359323475, 34.58028465203496]], [[-77.27250761211296, 34.57206652136716], [-77.27251248227877, 34.57206957250984], [-77.27251134036696, 34.572065896386256], [-77.27250931931063, 34.57206516607708], [-77.27260598099423, 34.571988429370826], [-77.27264372187238, 34.57195846798916], [-77.27268665531649, 34.57192079215306], [-77.27270081342324, 34.571908472444825], [-77.27270834418277, 34.57190463048304], [-77.27271503099234, 34.571896232516586], [-77.27276845055631, 34.57185043798687], [-77.27287359841672, 34.57175943861949], [-77.2729420280647, 34.57179440266019], [-77.27292754113418, 34.571745108582704], [-77.27290337237781, 34.571733806731956], [-77.27298226260008, 34.57166589144287], [-77.2730187883133, 34.571634446983275], [-77.27306130718858, 34.571596569219125], [-77.27307521930251, 34.57158426678795], [-77.27308259242473, 34.57158054502883], [-77.27309093747618, 34.57157167127273], [-77.27314728714055, 34.571526713014336], [-77.27324031452372, 34.571450906270144], [-77.27337093036864, 34.571518661779024], [-77.27335744287787, 34.57142539651317], [-77.27330397542207, 34.57139999083651], [-77.27336623594002, 34.57135019537419], [-77.27341398358037, 34.57131200710352], [-77.2734172900914, 34.57130926000208], [-77.27346275897807, 34.571271742667165], [-77.2734900808768, 34.571259071113616], [-77.27353656680006, 34.57122098319756], [-77.27355897960062, 34.571205569360465], [-77.27358393010401, 34.57118805238545], [-77.27362881938758, 34.57121105802297], [-77.2736525628325, 34.571269377753524], [-77.27364992477766, 34.571273899292166], [-77.27361542843238, 34.571327838640826], [-77.27357792001254, 34.57137415617245], [-77.27351982974069, 34.571438158603215], [-77.27342922643471, 34.571536775369054], [-77.27341785355829, 34.571547977311255], [-77.27341227761579, 34.57155543221813], [-77.27338255065936, 34.57158630873371], [-77.27332717050757, 34.571644037504086], [-77.27331387633598, 34.571657638690894], [-77.2732388785304, 34.57172981050991], [-77.27319789012651, 34.571766356178316], [-77.27311636901925, 34.57183771447844], [-77.27305267179867, 34.57189279933662], [-77.27298967581672, 34.571946573085185], [-77.27295814184822, 34.57197302523805], [-77.27294694824931, 34.57198230010601], [-77.2728608623227, 34.57205080591835], [-77.27281895216682, 34.57209007343036], [-77.27275100989158, 34.572158323533664], [-77.27269484583847, 34.572198152380146], [-77.27268076483222, 34.57221922852774], [-77.27262271867185, 34.57231031667478], [-77.27258743828405, 34.57240332516387], [-77.27256559955498, 34.57242366046064], [-77.2725556728688, 34.572436568615814], [-77.27250151998899, 34.57253645721691], [-77.27247325192624, 34.57255115622228], [-77.2723292721535, 34.57256381396128], [-77.27224636424171, 34.57258315496025], [-77.2721879495439, 34.57260242723142], [-77.27210778458229, 34.57262334343596], [-77.2720502441127, 34.572644257207294], [-77.27196654786604, 34.57271982116175], [-77.27197408974716, 34.57263313217211], [-77.27193758599134, 34.57260996575426], [-77.27192420701209, 34.57260589338708], [-77.27192969446058, 34.5725843598035], [-77.27193543609691, 34.572555757674856], [-77.27194133717045, 34.57254740419285], [-77.27200444867503, 34.57249738794856], [-77.27211462348194, 34.57239676387312], [-77.27212349061442, 34.57238891149637], [-77.27212811000155, 34.572384917146906], [-77.27214195618778, 34.57237294440618], [-77.2722217772169, 34.57230392348387], [-77.27224840711202, 34.57228089666477], [-77.272296902089, 34.57223661139551], [-77.27231364074635, 34.572221325884925], [-77.27237605187699, 34.57217309615184]], [[-77.2131380879678, 34.62135639913111], [-77.21321112624885, 34.621327495333745], [-77.21338197104619, 34.6213756701902], [-77.21337643789049, 34.62138454416548], [-77.21327253025119, 34.62148486420148], [-77.21303523611104, 34.621674574797446], [-77.21307804767066, 34.62146949663246], [-77.21309855830836, 34.621440103417335]], [[-77.22278655333577, 34.61324983187487], [-77.22315987701785, 34.61313401452941], [-77.22284109169281, 34.613284696021374], [-77.2228089684836, 34.61331240168599], [-77.22274067333943, 34.61334039782842], [-77.22273281637672, 34.61329374663282], [-77.222756660589, 34.61327803037293], [-77.22276395525716, 34.6132723530923]], [[-77.374970802076, 34.68567049884536], [-77.37489098321946, 34.685646300770095], [-77.37480154848, 34.68542841109617], [-77.3760306866653, 34.68485438581634], [-77.37537116814774, 34.68593318412845]], [[-77.32282974264635, 34.54699981382955], [-77.32276863768898, 34.54697385631132], [-77.32277840874139, 34.54690431697573], [-77.32278870186784, 34.54672616078204], [-77.32289527283609, 34.54657876518601], [-77.32322392946712, 34.54662441013191], [-77.32329976494871, 34.54664436449485], [-77.3233223181745, 34.54664948715629], [-77.32367587578867, 34.5467767434388], [-77.32371854562324, 34.54681027152511], [-77.32374244312064, 34.546833931924894], [-77.32390360855038, 34.54695537363722], [-77.3236725074297, 34.54692120569938], [-77.32357113030814, 34.54692175390114], [-77.32303573173476, 34.54702961962264], [-77.32288495781012, 34.54702097776182]], [[-77.35932948795299, 34.54035322405218], [-77.35937782918236, 34.54023897151648], [-77.35946017616527, 34.54004275120182], [-77.35950022725123, 34.5399395645637], [-77.35956213415031, 34.53982393313727], [-77.35959806227538, 34.53993839294985], [-77.35960198650046, 34.53998907948796], [-77.3596455123901, 34.54020042440156], [-77.35967874226998, 34.54036008752219], [-77.35967646664608, 34.54052205906936], [-77.35971345783567, 34.54068028808714], [-77.35974015582784, 34.5407963645098], [-77.35976337455187, 34.54106108516219], [-77.35976065174079, 34.54116314015387], [-77.35977951221676, 34.54124933610686], [-77.3597733156467, 34.54131429154272], [-77.35976443121153, 34.54140742012044], [-77.35976194638269, 34.541504009524814], [-77.35976039812536, 34.541556375206675], [-77.35971424558537, 34.541659470952396], [-77.35968645621553, 34.541802521578134], [-77.35968439255564, 34.5420161306906], [-77.3596495166931, 34.54215844018877], [-77.35967755327607, 34.54226117218626], [-77.35966073057585, 34.54230474944724], [-77.35959021277843, 34.5424118041007], [-77.35958517945049, 34.5424645946389], [-77.3595092777633, 34.54266828287793], [-77.3594964927726, 34.542691690379435], [-77.35948685835278, 34.5426777189704], [-77.35948736484913, 34.542671438336455], [-77.35943326580167, 34.542476900401155], [-77.35940458054151, 34.542438535142665], [-77.35928569422322, 34.542347207909295], [-77.3592807562345, 34.54233395382276], [-77.35920804370544, 34.54228528656658], [-77.35920754438071, 34.54228084720791], [-77.35925614933917, 34.542215085195764], [-77.3592416479016, 34.54213916513566], [-77.35923883823988, 34.54204770425966], [-77.35928387980735, 34.54196626798793], [-77.35926243715332, 34.54181081704478], [-77.35924273172745, 34.54172736935169], [-77.35920635380833, 34.54168312087267], [-77.35919316576027, 34.54152874124863], [-77.3591904156476, 34.541490078981965], [-77.35917028374584, 34.54146904199707], [-77.35916874215978, 34.54139267221632], [-77.35918523277394, 34.541368413354505], [-77.35918676850565, 34.54127725852821], [-77.359202280035, 34.54124354654863], [-77.35920298985101, 34.541202911151], [-77.35920606869594, 34.540998177063386], [-77.35920725171357, 34.54079048534192], [-77.35922503920945, 34.54075062137306], [-77.35925742671837, 34.54067895591084]], [[-77.3152351886223, 34.54675709197818], [-77.31539295169561, 34.54680933843531], [-77.31530543536836, 34.54689844708314], [-77.31523933558096, 34.54695934536045], [-77.31513116202817, 34.547091747325226], [-77.31506902228355, 34.54712483552638], [-77.31502759943979, 34.54723885599904], [-77.3149522259306, 34.547316390438155], [-77.3148140082659, 34.547382106732925], [-77.31474846661433, 34.54746559161511], [-77.31462717848981, 34.54757209719012], [-77.31449225844167, 34.54751330120294], [-77.31458405699128, 34.54741513139351], [-77.31461106756932, 34.54739867350082], [-77.3146322253806, 34.54735664481672], [-77.31476502132264, 34.547225215440626], [-77.31492614246298, 34.54712119195206], [-77.31499388801909, 34.54708824265436], [-77.3150329530412, 34.54701026468011], [-77.31521473907424, 34.54694736606693], [-77.31515725638647, 34.54684318923296]], [[-77.3402640547018, 34.55100184243203], [-77.34033543225158, 34.55105854525142], [-77.34038443037359, 34.55109746967122], [-77.3404577003649, 34.551117239468994], [-77.34056597769718, 34.55114779533764], [-77.34061996664772, 34.55116063436846], [-77.34065300978814, 34.551160669831205], [-77.34074412043442, 34.55118337764977], [-77.34074710726124, 34.55118512666457], [-77.34076015399155, 34.55118705586621], [-77.3408483220629, 34.55120398454106], [-77.34087174215155, 34.55121151434763], [-77.34089719440809, 34.55122256536177], [-77.3409285064452, 34.55122890898551], [-77.34094568537704, 34.55123831686228], [-77.34098618548325, 34.551245611600606], [-77.34104314491015, 34.5512684882773], [-77.34109720893002, 34.55128229581008], [-77.34119184231623, 34.55130259434631], [-77.34123838805806, 34.551314812509474], [-77.34130772752738, 34.55132937164645], [-77.34134277303995, 34.551337874086094], [-77.3414338103907, 34.55135338877569], [-77.3415162949959, 34.55137833565412], [-77.3415787113008, 34.551400733749105], [-77.34162861571262, 34.5514186827889], [-77.34164117819329, 34.551421577416164], [-77.34169776238883, 34.55143134503084], [-77.34172623571216, 34.55144192508795], [-77.34180394724736, 34.55145936955269], [-77.34181650616254, 34.551462188742256], [-77.34182385712005, 34.55146510849923], [-77.34187517965668, 34.55148135909069], [-77.34201871259609, 34.5515282533413], [-77.34204151710853, 34.55153331430503], [-77.3420702667265, 34.55154347130483], [-77.34215378413387, 34.551569057447026], [-77.342213628253, 34.55158880383794], [-77.34228388433804, 34.551591309852235], [-77.3424093271382, 34.55161544494578], [-77.34244384977406, 34.5516121433257], [-77.3425958992506, 34.551596617265204], [-77.34262197580398, 34.55159643227664], [-77.34280256523725, 34.55158902162193], [-77.3429520720374, 34.55156851834455], [-77.34299922188757, 34.55157417523175], [-77.3430832982319, 34.55164256980946], [-77.34311820909332, 34.55168418083592], [-77.34319210959995, 34.551722619201996], [-77.34328278417482, 34.55180102508025], [-77.34337087710041, 34.55184602028753], [-77.34337901314076, 34.551848900605364], [-77.34338546098364, 34.55185100109276], [-77.34347387546867, 34.55189780980078], [-77.34357983942526, 34.55193490031283], [-77.34358632228482, 34.551937437382946], [-77.34368827909721, 34.551976958677564], [-77.3437747560786, 34.551995489614356], [-77.3438797007591, 34.55201764293888], [-77.34393867303638, 34.55202888030705], [-77.34397013645122, 34.552035990630124], [-77.34406027316307, 34.55205756208212], [-77.34406775208623, 34.55205947533714], [-77.34409463260894, 34.55206476539129], [-77.34416544592322, 34.5520795722277], [-77.34418485437178, 34.552083988514475], [-77.34421402697892, 34.55209195719536], [-77.34429935655407, 34.552118039853596], [-77.34436050034563, 34.55213421877913], [-77.34441389416895, 34.55215206432771], [-77.34445789615623, 34.55216724271314], [-77.34448295019511, 34.552175679568805], [-77.34452394378907, 34.55218948401094], [-77.34455532540042, 34.55219882015386], [-77.34461219644581, 34.55221829083082], [-77.34463504020634, 34.552226111743416], [-77.34472922552455, 34.552262659565294], [-77.34474995538031, 34.552271892439244], [-77.34480534248766, 34.55228645438287], [-77.34485496700472, 34.55230108140221], [-77.3449450583092, 34.55232446846554], [-77.34504842128858, 34.552339148369846], [-77.34510488945182, 34.55235335844179], [-77.34514066183482, 34.55235534282589], [-77.3452179291686, 34.55236305165849], [-77.34539871682313, 34.55237241975842], [-77.34547955071892, 34.552399532667955], [-77.34550978458452, 34.55240906885489], [-77.34553186711771, 34.55241718378889], [-77.34560624705063, 34.552456767139404], [-77.3457266215273, 34.55248491182061], [-77.34572871984247, 34.552486094514514], [-77.34581051572448, 34.55254358193715], [-77.34591332252356, 34.55258194523087], [-77.34591725481286, 34.55258350576072], [-77.34592065428494, 34.55258396402497], [-77.34593386611633, 34.55258727519322], [-77.34603569706447, 34.55261457556838], [-77.34605927112688, 34.552622152070676], [-77.34609777588625, 34.55262794851034], [-77.34611567237258, 34.55264027894898], [-77.34615142654964, 34.55264769763562], [-77.34619729058514, 34.552663499528286], [-77.34627003684305, 34.55267864021447], [-77.34631076778119, 34.552693248733966], [-77.34646825769873, 34.552723143810695], [-77.34653047790188, 34.552722957881635], [-77.34657211942792, 34.55273198041603], [-77.34665404867675, 34.55275014744369], [-77.34670186168844, 34.55276001755993], [-77.34678615237354, 34.552753652360785], [-77.34680934520244, 34.5527533348926], [-77.34689835543483, 34.552752309525154], [-77.34703830055585, 34.55275216487427], [-77.34709454542423, 34.55275778644904], [-77.3471191197229, 34.55276032838473], [-77.34722640024688, 34.55276025199443], [-77.34727738690664, 34.552761267792], [-77.3472908152556, 34.552759796631776], [-77.34735970045548, 34.5528022772893], [-77.34737619955203, 34.55280718768395], [-77.34738753289164, 34.55282234238457], [-77.34744054425192, 34.5528518501369], [-77.34745234240552, 34.552870258530405], [-77.34748420286913, 34.55288696380843], [-77.34756114248238, 34.552908622366246], [-77.34758178676604, 34.552911903384775], [-77.34764094619244, 34.552921242199545], [-77.34767961539347, 34.55292621694808], [-77.3476998716769, 34.55293694660323], [-77.34776463314984, 34.55298143251102], [-77.34777270298702, 34.55298767217337], [-77.3477737631332, 34.55298911724885], [-77.3478400231383, 34.55303919066435], [-77.34785344365943, 34.55314884372875], [-77.34776631431325, 34.553172206541205], [-77.34747576899035, 34.55325319795417], [-77.34730829505455, 34.553238108897816], [-77.347131539494, 34.55323363987595], [-77.34708354401806, 34.5532354154974], [-77.34698764951106, 34.55322429116373], [-77.34684514523595, 34.55320895691955], [-77.3466925017101, 34.553166300530506], [-77.34659452570489, 34.553157208084215], [-77.34644961326205, 34.55311683607423], [-77.34635756319868, 34.55309512735382], [-77.34630168043708, 34.553087616860594], [-77.34610860762928, 34.55304348853147], [-77.34610721780103, 34.55304317087515], [-77.34610639101254, 34.55304302563252], [-77.34610421288683, 34.55304275885381], [-77.34591067715658, 34.553016857963506], [-77.34578884288727, 34.552967083841395], [-77.34564220880166, 34.5529122624113], [-77.34552123422117, 34.55287843598003], [-77.34541173671231, 34.55284527035195], [-77.34532613629102, 34.552825573673374], [-77.34524744404419, 34.552800154793985], [-77.34518080180706, 34.5527786282636], [-77.34513120921366, 34.55276531104244], [-77.34499061006169, 34.5527146946527], [-77.34496007180715, 34.55270426577688], [-77.34493642322421, 34.55269894111125], [-77.34482989451408, 34.552670989710734], [-77.34474127513587, 34.55264828497302], [-77.34472188130472, 34.55264311230474], [-77.3446922885982, 34.55263520246539], [-77.34448518388183, 34.55258082900125], [-77.34435101999235, 34.55254522146108], [-77.34425054117978, 34.552516991091], [-77.34415629657805, 34.55247618403183], [-77.34413789756844, 34.55247013793841], [-77.34403191150868, 34.55244103899669], [-77.34396137827268, 34.552415607049525], [-77.34385939449834, 34.55238779284829], [-77.34380323998208, 34.55237268352762], [-77.34376621070953, 34.552365844098816], [-77.34361902816478, 34.55229996110884], [-77.34359975453316, 34.552285274513295], [-77.34357201892372, 34.55227380447724], [-77.34345828118788, 34.55225184966111], [-77.34334827984908, 34.55223416932265], [-77.34318074789675, 34.55221488175891], [-77.34283943070531, 34.55216728754602], [-77.34280456110503, 34.552162799747144], [-77.34278939979194, 34.55215931732109], [-77.34269817914313, 34.55213030930541], [-77.34257712383757, 34.55209350940463], [-77.34239919268532, 34.55205435579285], [-77.34233470395634, 34.552035552982225], [-77.34222478273614, 34.552010882578735], [-77.34208838158725, 34.55198054851636], [-77.34200884025599, 34.551955724997526], [-77.34193886588564, 34.55192959998599], [-77.34186996919836, 34.55190443043984], [-77.34181423921162, 34.55188152069382], [-77.34166943047062, 34.55184594600251], [-77.34163834238471, 34.55183830869355], [-77.34161904463576, 34.55183302506535], [-77.34152903278203, 34.551809678483515], [-77.3414011030846, 34.55177643240042], [-77.3412287812431, 34.551730616978006], [-77.34105295222786, 34.55168979876706], [-77.34092280540843, 34.55165556808898], [-77.34083841672644, 34.55163262211796], [-77.34068244443219, 34.55159605257889], [-77.34064317011526, 34.551586422431214], [-77.34046540285651, 34.551529488134335], [-77.34045631694552, 34.55152576973862], [-77.34044832941085, 34.55152266966047], [-77.34041567894137, 34.55151618760265], [-77.34021686143515, 34.551465568744796], [-77.34005820930082, 34.55141417615698], [-77.33999253236533, 34.55139392503331], [-77.3398717107558, 34.55137005803978], [-77.33974316821389, 34.5513412190673], [-77.33966753784502, 34.55132956633474], [-77.33952525872813, 34.5513311926034], [-77.33947127257792, 34.551327468320125], [-77.33944684087535, 34.551324038155485], [-77.33939421060921, 34.551316323857776], [-77.33927549597207, 34.55130424080073], [-77.33919134633203, 34.55127596874181], [-77.3391285291009, 34.55126228939481], [-77.33908045026685, 34.551249417306074], [-77.33905439115969, 34.55124278708488], [-77.33897172402752, 34.55120076359956], [-77.33888666810083, 34.55113998196271], [-77.3386493710344, 34.55105621719174], [-77.3388950220645, 34.55077884622376], [-77.33889821075128, 34.550777583026154], [-77.33917266875329, 34.55080742278745], [-77.33928664855299, 34.550822024552524], [-77.3393132013739, 34.55082178563442], [-77.33934624065542, 34.550833587252626], [-77.33945084006048, 34.55083833738715], [-77.33948261733906, 34.55083689260992], [-77.33951955620711, 34.550831617849475], [-77.33953223806654, 34.55081343003103], [-77.3395373020273, 34.55083326740543], [-77.3395599194534, 34.550833458168064], [-77.33958071005374, 34.55083964302289], [-77.33959005370042, 34.550834881714856], [-77.33961318588976, 34.550836199195345], [-77.33961990656339, 34.55084941221956], [-77.33961392932825, 34.55085629262661], [-77.33961330240042, 34.550877247659116], [-77.33961880167914, 34.550886194113275], [-77.33961947853007, 34.550891773620855], [-77.33962150381139, 34.55091640771528], [-77.3396289092953, 34.550944974183835], [-77.33963073022892, 34.55097628522847], [-77.33964055816394, 34.55099649690508], [-77.33967463650947, 34.551022570990845], [-77.33969109110237, 34.551018605570064], [-77.33972485433645, 34.55102395258804], [-77.33976179943865, 34.55102545245372], [-77.33977271615873, 34.55102589563827], [-77.33986610200722, 34.55100688668445], [-77.33987131943042, 34.55100657300751], [-77.3398779799794, 34.55100607554537], [-77.34007093835255, 34.5508635720322], [-77.34019428481659, 34.550999968306364]], [[-77.26830905297632, 34.57578550797865], [-77.2683059726706, 34.57584451115061], [-77.26829062018106, 34.575858268510125], [-77.2682826554232, 34.575865505164934], [-77.26825503147263, 34.575892322667855], [-77.26807672114587, 34.57595928391973], [-77.26814691512618, 34.57599595331129], [-77.26810253036805, 34.57603391256523], [-77.26799918274541, 34.57607102100859], [-77.2679253869791, 34.57617079769812], [-77.26790447118894, 34.57618637066538], [-77.26789005879073, 34.57619731925754], [-77.26764645576716, 34.576278953722394], [-77.26765324167926, 34.57629154198308], [-77.26766673747046, 34.57635954762215], [-77.26760830399958, 34.57639378765997], [-77.26755493790463, 34.576443286318735], [-77.2674241904705, 34.576416437730316], [-77.26717581632346, 34.576477613504245], [-77.26733792711899, 34.57657457957704], [-77.2672725218252, 34.57661015448968], [-77.26721516888959, 34.57671637597487], [-77.26719986747301, 34.576728692586464], [-77.26714711641168, 34.576711024650336], [-77.26716727833734, 34.576638506309834], [-77.26709593848183, 34.57651754345824], [-77.26710773608104, 34.57647710099397], [-77.26711358816509, 34.5764727202425], [-77.26711520414342, 34.576470242802685], [-77.26712705110008, 34.576456028154055], [-77.26731133337096, 34.57637043594705], [-77.26736526083302, 34.576364028344784], [-77.26762885417699, 34.576277569670445], [-77.26763034770322, 34.576271181155825], [-77.26765147395948, 34.57625241381824], [-77.2678482943906, 34.57613640976547], [-77.26784357835469, 34.57605878587704], [-77.26790551792757, 34.57599452993263], [-77.26798167177415, 34.575926427013584], [-77.26818620553863, 34.57585005857915], [-77.26821733502, 34.57580741258282]], [[-77.22885628725855, 34.60879901619753], [-77.22884539095581, 34.60882047593872], [-77.22878643033025, 34.608897491734865], [-77.22860769112859, 34.60902624665446], [-77.22842852003865, 34.60910707881833], [-77.22849098598958, 34.60930304028657], [-77.2283566253251, 34.60947779376173], [-77.22832111310895, 34.60955027155036], [-77.22826836551411, 34.60962207356169], [-77.22818107883019, 34.60969962062093], [-77.22791383087636, 34.60988631444214], [-77.227881747125, 34.60991167925534], [-77.2278654092751, 34.60992105952748], [-77.22783602675662, 34.60994137978954], [-77.22741805129273, 34.61018054402217], [-77.22723969149389, 34.61028618918694], [-77.2271258326793, 34.61018109181401], [-77.22714957197698, 34.61008957857648], [-77.22723607422128, 34.61001864504236], [-77.22778595922613, 34.60990412021828], [-77.22777152928799, 34.609837538001706], [-77.22765806129702, 34.60965834789731], [-77.22765735134652, 34.609614896382546], [-77.22776295733964, 34.60950117137129], [-77.22782845538045, 34.60943611497838], [-77.22792490260048, 34.609316507886795], [-77.22821934237533, 34.609037296226894], [-77.22825294588361, 34.60899825383326], [-77.22827493374544, 34.60897043920555], [-77.22836288505107, 34.60890117698503], [-77.228765518295, 34.60880302129487], [-77.22880310948685, 34.60878285993907]], [[-77.36534824030856, 34.527111454776346], [-77.3654397782061, 34.52706810749693], [-77.3654526521008, 34.527064781651355], [-77.36545412500493, 34.52706131364095], [-77.36554663808667, 34.52701750444625], [-77.36557736532498, 34.52700128716202], [-77.36563110731666, 34.526974609258495], [-77.36564032012183, 34.52691628863087], [-77.36564498864963, 34.5269100123283], [-77.36564952353244, 34.52690932123648], [-77.36564911253886, 34.52691201904174], [-77.36565028676858, 34.526971846057236], [-77.3656455959852, 34.52703298942773], [-77.36564562331708, 34.52703450195893], [-77.36559736296775, 34.52710188381649], [-77.36555342431097, 34.527223462129655], [-77.36555052005902, 34.52723104551744], [-77.36555841625317, 34.5272404281002], [-77.36557609880114, 34.527349773369394], [-77.36564754577313, 34.52739359795837], [-77.36565738147289, 34.52741276585269], [-77.36568533830814, 34.52745644820669], [-77.36567206574878, 34.52749573020973], [-77.36565259782562, 34.52753461887337], [-77.36559185819299, 34.52759232891094], [-77.36553067214997, 34.52771704087051], [-77.36552029271846, 34.52771860041993], [-77.36550951589007, 34.527726604940646], [-77.36552009041614, 34.52773147628188], [-77.36552963432214, 34.527762512709195], [-77.36554578980376, 34.52784379198409], [-77.36556030458392, 34.52786225111571], [-77.36552747458452, 34.52785714041291], [-77.36547502496428, 34.52785398697887], [-77.36537151136771, 34.527843955816195], [-77.36533197546626, 34.527824014724146], [-77.3652451439839, 34.52783307373815], [-77.36522896387449, 34.5278894363014], [-77.36493284342986, 34.52811404865801], [-77.36488905685388, 34.52815652427758], [-77.36489244605953, 34.52818274264544], [-77.36489078980777, 34.52820787562747], [-77.36481195072861, 34.528367366565575], [-77.36476998807001, 34.52844521003067], [-77.36476368428546, 34.528545485324166], [-77.36477715401963, 34.52859879702911], [-77.36466813383512, 34.528704708893756], [-77.36462445608126, 34.52877285617804], [-77.364524617288, 34.52880220978776], [-77.36426397978228, 34.52884580867827], [-77.36412962552738, 34.52891064117554], [-77.36399664716407, 34.52888475384124], [-77.36396598814889, 34.528805858386235], [-77.36393372203831, 34.52868510130562], [-77.3640098706397, 34.528391970343165], [-77.36408860567548, 34.52829854368904], [-77.3641072493584, 34.528272814556175], [-77.36414552979241, 34.52821430251112], [-77.36433282374747, 34.52801853656085], [-77.36442313358634, 34.527929801115626], [-77.36454442265925, 34.527745919746], [-77.36454736969529, 34.527742803615354], [-77.3645482414404, 34.52774231707114], [-77.3645488289064, 34.5277419331824], [-77.36455343390837, 34.52773909803716], [-77.36467436863353, 34.52767951064823], [-77.36474637851354, 34.52768523735946], [-77.36482922752947, 34.52770219853626], [-77.36483469039369, 34.52776756784033], [-77.364939768541, 34.527810722083075], [-77.36507863051497, 34.52775204720453], [-77.36513673805618, 34.527657897007515], [-77.36513097195063, 34.52754327373454], [-77.36527878419274, 34.5273926070655], [-77.3652485559412, 34.52733800973532], [-77.36524472640454, 34.52727510077726], [-77.36519376977776, 34.52725434528218], [-77.36522276644095, 34.52720127928297], [-77.36531684423714, 34.527142297982735], [-77.3653321369448, 34.52713031891592]], [[-77.30743248166644, 34.55284628739092], [-77.3071957992644, 34.55263769379428], [-77.30744375013589, 34.55251975750439], [-77.30760343258632, 34.552432654899945], [-77.30776878009333, 34.5523552021253], [-77.30783951635047, 34.552386817520876], [-77.30791397773123, 34.55228979202724], [-77.30813022917187, 34.55219234777268], [-77.30823791851087, 34.552141648468925], [-77.30825901287992, 34.55213085091515], [-77.30840480179181, 34.552115662259084], [-77.30843446834294, 34.552131859519164], [-77.30850471254976, 34.552204989370274], [-77.3084491025136, 34.552323445724966], [-77.30845725848184, 34.552351635168705], [-77.30831158325549, 34.55242740645856], [-77.30823023526686, 34.55246860569397], [-77.30815813172987, 34.552499551283034], [-77.30792805685986, 34.55259077206287], [-77.30783372553715, 34.552633194168415], [-77.30743694744255, 34.55284846258555], [-77.30743160577002, 34.552851364208315]], [[-77.26689763805021, 34.57692322595501], [-77.26689181616062, 34.57692661683999], [-77.2668906278444, 34.57692772429033], [-77.26688414320095, 34.57693629939561], [-77.26687666029389, 34.57693108432481], [-77.2668823896456, 34.57692587556059], [-77.26688211467552, 34.57692015301914], [-77.2669003045993, 34.576904345628996]], [[-77.32881364318946, 34.54835240905705], [-77.32874217915221, 34.54839456610782], [-77.32850464495951, 34.54859768675201], [-77.32847953591013, 34.54868657508272], [-77.32847524489888, 34.54872431982926], [-77.32834091165125, 34.54876648610003], [-77.32815810821486, 34.54876990153692], [-77.32815729887538, 34.54876216373861], [-77.3279978559096, 34.54867052682695], [-77.32795194159557, 34.54860965948205], [-77.32790743185676, 34.54846851001358], [-77.32785622696065, 34.548446068130005], [-77.32769950386351, 34.54838445210781], [-77.32770550857958, 34.54830971679145], [-77.32768275263481, 34.54822618643813], [-77.32776754883915, 34.54809750803685], [-77.32777925423109, 34.548097204107805], [-77.32796394252284, 34.54809381400486], [-77.32826534063761, 34.54808545327358], [-77.32835604090634, 34.548116041323084], [-77.32837239696423, 34.54811685528287], [-77.32855281696037, 34.54809590395357], [-77.32856649218466, 34.548099168414], [-77.32858833280802, 34.54819485561883], [-77.32874525157854, 34.54826244813007], [-77.32877270921097, 34.54829672466808], [-77.32913800267373, 34.54825663660394], [-77.3291432778705, 34.548257773494186], [-77.32916341404834, 34.54825818498061], [-77.32916803849905, 34.548276537569954], [-77.32913755175534, 34.548276030549815]], [[-77.21658060601123, 34.61894896885023], [-77.21658060239868, 34.619153704282546], [-77.21631810155773, 34.61936624144878], [-77.21631533284231, 34.619368432415406], [-77.21631427781118, 34.61936956231888], [-77.21631093956454, 34.61937186567153], [-77.2160808575, 34.61949065629577], [-77.21600046715642, 34.619568414178204], [-77.21591090149258, 34.61951850723082], [-77.21595592706973, 34.6193794985715], [-77.21626479389204, 34.619364440013655], [-77.21629753745678, 34.61935466749178], [-77.21611759854729, 34.619117129276646], [-77.21630960325544, 34.619002071541416], [-77.21649964428615, 34.61891162643222], [-77.21651632311449, 34.618891772954576], [-77.21658510720188, 34.61883079346733], [-77.21699600564315, 34.61866101366795], [-77.21717098855382, 34.61849329196344], [-77.21718513734369, 34.618478950576936], [-77.21735747147085, 34.618325072597884], [-77.21743887632785, 34.61827876945924], [-77.21753435821896, 34.6181767324414], [-77.21754058935994, 34.61815922466606], [-77.21758174428287, 34.618159012260634], [-77.21755679337271, 34.61817364211507], [-77.21752186586653, 34.61828532456597], [-77.21752292225507, 34.618364683455894], [-77.21746242839951, 34.61841845750581], [-77.21718226073018, 34.618494182346645], [-77.21715264622686, 34.618686822301036], [-77.21708791308762, 34.61874278819157], [-77.2165972063386, 34.61891933319171]], [[-77.40421059133391, 34.57681475025624], [-77.40412108650442, 34.57670181509627], [-77.40407802633314, 34.57650575603614], [-77.40406432814547, 34.57614430751244], [-77.40407193027133, 34.57608205948168], [-77.40408985261215, 34.5760458290285], [-77.40412107102584, 34.57593697138805], [-77.40413758579905, 34.575878092694246], [-77.40431608098993, 34.5758366722959], [-77.40431806760262, 34.57583821958689], [-77.40432566384504, 34.575841334089525], [-77.40451506906837, 34.57595720117195], [-77.40460047143615, 34.57600577126697], [-77.40465489408422, 34.576271823782605], [-77.40490907351156, 34.576190428689735], [-77.40520531502483, 34.576343043855914], [-77.4049090855936, 34.57659691511238], [-77.40466857679301, 34.576585920970274], [-77.4045150850345, 34.57659680985469]], [[-77.35262443217127, 34.5549736366271], [-77.35293235481282, 34.55500766225768], [-77.35303009662768, 34.55504623799982], [-77.35332487832113, 34.55501279095291], [-77.35346363155773, 34.555045335633], [-77.35332264461522, 34.55511008727426], [-77.35301289492782, 34.55516264856134], [-77.35285982010718, 34.55517507282037], [-77.35265063791891, 34.55516234974244]], [[-77.36398977076979, 34.529614118819566], [-77.36395670125106, 34.52968973940234], [-77.36377646557298, 34.52977558996021], [-77.36388142063353, 34.52965310726185]], [[-77.31273367032989, 34.549325509750666], [-77.31298985314614, 34.54911293029334], [-77.3129973905127, 34.549097152333246], [-77.31302164612401, 34.549067852356], [-77.31327321380073, 34.54891757750963], [-77.31306194429176, 34.54910257804619], [-77.31303209570359, 34.549114055226475], [-77.3130187713182, 34.549353587554506], [-77.3130169592001, 34.54935512453118], [-77.31301486037752, 34.5493573071206], [-77.31283652189403, 34.5493797580613]], [[-77.30967623206482, 34.55170312039109], [-77.30947740388422, 34.551787341010325], [-77.30942377713659, 34.55180355919046], [-77.30940340858353, 34.55181868467868], [-77.30936496182801, 34.55183668252557], [-77.30922511363295, 34.55190338263909], [-77.30912579856448, 34.55187101772266], [-77.30922714674898, 34.551816821136285], [-77.30928346299652, 34.551760263348086], [-77.30933876479253, 34.551718039144596], [-77.30942681717458, 34.55167411432669], [-77.30958638762183, 34.55165936052084], [-77.30968270217772, 34.55154625681048], [-77.30977179813311, 34.55150122067964], [-77.30982407499631, 34.55147732503798], [-77.31001783861723, 34.55137261161205], [-77.31002290826896, 34.55137019488739], [-77.31002963447509, 34.55136985480431], [-77.310087563622, 34.55136572665825], [-77.31012120223761, 34.55136444124728], [-77.31014968324828, 34.551399735659416], [-77.31021729821552, 34.55145231457096], [-77.31024210128324, 34.551450505520364], [-77.31045307679676, 34.551435653139905], [-77.3102158128354, 34.5515155873571], [-77.31012288224842, 34.55154063589366], [-77.31001824444378, 34.55156884002676], [-77.30996288206387, 34.5515942902845], [-77.30982020516834, 34.55164213523358]], [[-77.22525165476007, 34.61182522421003], [-77.22514340507337, 34.611927159285045], [-77.2249438152464, 34.611924229180204], [-77.22489945420213, 34.61203310403371], [-77.22465900196535, 34.61220592670908], [-77.22459195416866, 34.61224451177547], [-77.22459184225274, 34.612268585136334], [-77.22453754410287, 34.61229071040491], [-77.22415036727399, 34.61244533395851], [-77.22407357541246, 34.61246499175807], [-77.22399832837394, 34.6125226865185], [-77.2238703821291, 34.6126129650939], [-77.22359045562308, 34.6126056070674], [-77.22376514521707, 34.6125193358711], [-77.22381229379931, 34.61241864605697], [-77.22386206885771, 34.6123754353709], [-77.22401568290358, 34.61241348501997], [-77.22402690438965, 34.61225867959061], [-77.2241086115625, 34.61220635730899], [-77.22412890536661, 34.61218546534697], [-77.22420161036158, 34.61209585848625], [-77.2242238512653, 34.61207748849382], [-77.22430728235574, 34.61201541402985], [-77.22437321777849, 34.611991564824024], [-77.22442201711213, 34.61192721092138], [-77.224509186829, 34.611866295384196], [-77.22473975092022, 34.61178481761369], [-77.2247691940382, 34.61176887065939], [-77.2248916243717, 34.611591716519825], [-77.22498488744668, 34.611568487208174], [-77.22520883896631, 34.611502517755966], [-77.22534561256553, 34.61152797238701], [-77.2253501527078, 34.61158004069388], [-77.22535166983398, 34.6115974383672], [-77.22534317082653, 34.61162203086166]], [[-77.30343670790941, 34.55452367176105], [-77.30347065898708, 34.55450100821662], [-77.3035156469577, 34.55451234306847], [-77.30346987563676, 34.554534263874494]], [[-77.39957526593737, 34.57947487712592], [-77.39939296726794, 34.57952826628187], [-77.39923023935108, 34.57950357607582], [-77.39919596034011, 34.57950548587909], [-77.3991386964298, 34.5794920167011], [-77.39907377981646, 34.579482459501335], [-77.398998954078, 34.57946816142516], [-77.39899865003675, 34.57946811362192], [-77.39899756344248, 34.579467942780425], [-77.39892063795646, 34.57945728922296], [-77.39890045078018, 34.57945518673684], [-77.39887778713998, 34.579460803872244], [-77.39881857835216, 34.57949376801565], [-77.3988054954448, 34.57949948135025], [-77.39880194507595, 34.5795011301145], [-77.39871545380439, 34.57952159259384], [-77.39870343996382, 34.57953049280005], [-77.39869128694725, 34.57952523013775], [-77.39865418787973, 34.57953353786003], [-77.3986458802245, 34.57952763809841], [-77.39861532374746, 34.57953428818824], [-77.39860493555284, 34.57954205400151], [-77.39856389108581, 34.57957474173367], [-77.39855248065601, 34.57958178421255], [-77.39850642843547, 34.57961343631306], [-77.39848406625352, 34.57962408047758], [-77.39845717555363, 34.57963274934876], [-77.3984359622637, 34.579632258538155], [-77.3984325496205, 34.57963106975721], [-77.39843083469218, 34.57963116891826], [-77.39841154970712, 34.579636011043576], [-77.39840792328543, 34.579638173525524], [-77.39838873703223, 34.57964125674156], [-77.39836522882565, 34.579658255488496], [-77.39835867011365, 34.579662893979], [-77.39835487349958, 34.57966681670662], [-77.39833480285725, 34.579697067694866], [-77.39830941524048, 34.57972319955658], [-77.39825534119797, 34.579729053414596], [-77.39821090807217, 34.57978588105662], [-77.3981012476975, 34.57979753259686], [-77.39801389704388, 34.57983657496244], [-77.39786778076096, 34.57989453862227], [-77.3978168833292, 34.579933310545], [-77.3976349536135, 34.57998297241973], [-77.39749350256565, 34.5800795037187], [-77.39742285602938, 34.58010033153838], [-77.39735868991417, 34.580091972344036], [-77.39725983463171, 34.58003709210118], [-77.39689076578611, 34.579814563046675], [-77.3968277569912, 34.579458137665725], [-77.39695214816386, 34.57923233691932], [-77.39724113413465, 34.57899475946219], [-77.39742293251035, 34.57877726833871], [-77.3974424594063, 34.57875806619495], [-77.39746360349739, 34.57873397538514], [-77.39761994605999, 34.578644986547204], [-77.39770242301462, 34.57857610291635], [-77.3977598986084, 34.57854042494616], [-77.39781696025075, 34.57848902925031], [-77.39785534615402, 34.57846516916897], [-77.39794884449479, 34.57838150063225], [-77.39817146232065, 34.57820727298527], [-77.39819586784637, 34.57818746091609], [-77.39821098649315, 34.57817566762601], [-77.39826843506646, 34.5781313788409], [-77.39831857976208, 34.57808969482843], [-77.39833283273055, 34.57807784666123], [-77.39840799861439, 34.57801657335234], [-77.39850265856307, 34.57804920477205], [-77.39850649938329, 34.57804620767598], [-77.39853059605475, 34.57802334758165], [-77.39855575278835, 34.57799483737284], [-77.39855824568721, 34.577994937572065], [-77.39855753428716, 34.577992353927755], [-77.3986050065189, 34.57793485569589], [-77.39860625789464, 34.57793360048378], [-77.39860767864431, 34.57793204709707], [-77.39870351167752, 34.5778629160784], [-77.39874254812543, 34.57784850784344], [-77.39880201501704, 34.577829758728555], [-77.39882440398148, 34.577818758281296], [-77.39887022811897, 34.57778802103397], [-77.39889213574662, 34.57777582625534], [-77.39890051928423, 34.5777721354252], [-77.39891135790135, 34.5777704070742], [-77.39897529666626, 34.577747294742714], [-77.39899902250116, 34.577737245050756], [-77.39906792759905, 34.5777276018446], [-77.39913206995564, 34.57771301512986], [-77.39919602682349, 34.577716476513345], [-77.39934265766585, 34.57766799251746], [-77.39939303225297, 34.57766109327546], [-77.39944409716699, 34.57765409940059], [-77.3997340026378, 34.577614393495324], [-77.39978704134545, 34.577580586781224], [-77.40010527465435, 34.577585318277535], [-77.40018104615781, 34.57763242585102], [-77.40055295246016, 34.57786364128648], [-77.40055664529604, 34.57788293774937], [-77.4005750462297, 34.57792653016016], [-77.40061437973986, 34.57789716140919], [-77.40088981298926, 34.57790041950895], [-77.4008647610442, 34.57813084057147], [-77.40079021551364, 34.57825397780854], [-77.40057503543976, 34.57844221252317], [-77.40045234705498, 34.578595105447135], [-77.4002564510663, 34.57875557510927], [-77.39999605594974, 34.579018423328066], [-77.3997891617599, 34.579247578501715], [-77.39978699089981, 34.57924988539917]], [[-77.36344827586439, 34.53026541146586], [-77.36369227281698, 34.530069415236525], [-77.36370345083287, 34.53006323402708], [-77.36371155997867, 34.530029065603145], [-77.36371880597069, 34.530060623937715], [-77.36371935025662, 34.530070970794235]], [[-77.24268881009296, 34.59746824145209], [-77.24255356770976, 34.597529909975144], [-77.24247666896409, 34.59745699399923], [-77.2425124339004, 34.59739619149836], [-77.24252849004162, 34.59732562959832], [-77.2428037963398, 34.5970356070224], [-77.24281150287666, 34.597331670396514], [-77.2427247159996, 34.59741292096763]], [[-77.40652938188894, 34.57636420384205], [-77.40648507859042, 34.57642173164031], [-77.40633255968373, 34.57639261601963], [-77.40629397803949, 34.576391826945205], [-77.40628807705076, 34.57638224847105], [-77.4061406925789, 34.5762080238321], [-77.40628805959847, 34.57600373507551], [-77.40632600116598, 34.576009871204334], [-77.40648505987372, 34.57603558332954], [-77.40659015795524, 34.57614314150395], [-77.40656345007599, 34.57623146099618]], [[-77.35546672544358, 34.55846333343226], [-77.35544008612783, 34.55828910917878], [-77.35544085454431, 34.55822135125425], [-77.35540244295133, 34.55804803547941], [-77.35534887782117, 34.55797618149639], [-77.35531540462179, 34.5578917246423], [-77.35545877004282, 34.557842009493896], [-77.35547209061413, 34.55784428463795], [-77.35548980186425, 34.557842271954605], [-77.35566901632302, 34.5579055036359], [-77.35572922501653, 34.55793608650035], [-77.3557705019494, 34.55799505416377], [-77.35587631924356, 34.55818078207355], [-77.35606267561523, 34.55836711094996], [-77.35606685704445, 34.5583724356175], [-77.35607012093453, 34.55837647559864], [-77.35610130977953, 34.55841365231571], [-77.35623357172473, 34.558565222379194], [-77.35624240907467, 34.55858238685303], [-77.35622438238013, 34.55874105304988], [-77.35623028080647, 34.558777971976816], [-77.35616087910326, 34.55885628619356], [-77.35611937607125, 34.55885534457044], [-77.35606238928511, 34.55887078952916], [-77.3560019039396, 34.55887603138979], [-77.35590589112873, 34.558824667960835], [-77.35577009747144, 34.55873476308601], [-77.35566859756986, 34.55863575155658]], [[-77.36277609578627, 34.53159889469832], [-77.36256186377253, 34.531701196323006], [-77.3624949918433, 34.53173541941479], [-77.36234982466468, 34.53173173801811], [-77.3621674488671, 34.53171772635545], [-77.36221863914687, 34.531628221209864], [-77.36227078777185, 34.53160137252353], [-77.36234633953342, 34.531487415021914], [-77.36244976071605, 34.53144009688675], [-77.36250505286098, 34.531295269279546], [-77.36257253528358, 34.53121000910316], [-77.36253110894894, 34.53098295001396], [-77.36263662676737, 34.53095595201437], [-77.36253300609297, 34.53095824786824], [-77.3625140146257, 34.530903210502174], [-77.3624908119311, 34.53074880382426], [-77.36247869820315, 34.53073387536062], [-77.36249299106458, 34.5307160352442], [-77.36251891771545, 34.530688710866926], [-77.36268391195712, 34.530560574294014], [-77.36330594617634, 34.530373152978676], [-77.36331077012, 34.53039094955932], [-77.36346284715728, 34.53073715157365], [-77.36340469879116, 34.530845315459416], [-77.36338439600434, 34.53090143720309], [-77.3632958206184, 34.53104522690167], [-77.36316865686044, 34.53129318709276], [-77.362895362997, 34.53140833314608]], [[-77.42926093540277, 34.68330284504452], [-77.42925789553907, 34.68330247225298], [-77.42925281407, 34.6833018490809], [-77.42899306046908, 34.683238811629735], [-77.42895623831389, 34.68323771879199], [-77.42889005099111, 34.68325736086795], [-77.42883949646097, 34.68325116091427], [-77.42879473853318, 34.68324222265997], [-77.42876642292052, 34.68324219922298], [-77.42873249286147, 34.683240022147956], [-77.4287157493547, 34.68323838935205], [-77.42870834372034, 34.6832116544753], [-77.4287246454894, 34.68320764380764], [-77.42875340865973, 34.683220921246374], [-77.42877782287988, 34.68320101320737], [-77.42880851140185, 34.68319462267746], [-77.42886694127492, 34.68321957720098], [-77.42893307131155, 34.68318542807921], [-77.42896321714137, 34.68319001887857], [-77.4289710777969, 34.68318643215376], [-77.4292576788647, 34.683297520768484], [-77.4292602263475, 34.683294416657134], [-77.42958461867826, 34.683133771912644], [-77.42961307821807, 34.68313072245066], [-77.42962841933969, 34.683129210487046], [-77.42968276970323, 34.68312239980517], [-77.42979453596767, 34.6831087475598], [-77.429873799788, 34.68318305909348], [-77.42992633285144, 34.683206901450724], [-77.42995372337458, 34.68326286416371], [-77.42989886328911, 34.68330184274302], [-77.42975878379502, 34.68336894176937], [-77.4296636148855, 34.68335358638134], [-77.42960234380507, 34.68321933250066], [-77.42927302760737, 34.68330432796168]], [[-77.22081983411377, 34.61548191643231], [-77.22081621036904, 34.61548455298309], [-77.22080623306233, 34.615493923645296], [-77.22061690097416, 34.615635988499776], [-77.22058760326074, 34.61569925999132], [-77.22044854277561, 34.61580117958076], [-77.22044003895563, 34.61580739640737], [-77.22027330827378, 34.6159101228309], [-77.22016187887294, 34.61609206513263], [-77.22009412175248, 34.6161571591271], [-77.21999486829222, 34.616262982877075], [-77.21985710350864, 34.616206046549436], [-77.21996064461598, 34.61612111394268], [-77.21998421674584, 34.61605937378422], [-77.22004495476341, 34.61589209014353], [-77.22010002079087, 34.615833640519874], [-77.22012193041687, 34.6157803280982], [-77.22027746258028, 34.61570520539594], [-77.22030569562423, 34.615687868013225], [-77.22034684914496, 34.61568024862863], [-77.22036503366492, 34.615648734527845], [-77.22050876132244, 34.61553977430614], [-77.2208001479324, 34.615480361948634], [-77.22080763367397, 34.61547692213214], [-77.22082149990536, 34.6154637895866], [-77.22083017630641, 34.615474774187476]], [[-77.3366664912736, 34.55011727962778], [-77.33662800441292, 34.550077610839345], [-77.33672188464374, 34.54996663623747], [-77.33678709579792, 34.54995727121843], [-77.33695187177119, 34.549916144185055], [-77.33701120789912, 34.549908414119635], [-77.33705028932863, 34.549904822418576], [-77.33708682712835, 34.549934427122565], [-77.3370712860718, 34.54998363590019], [-77.33707530798176, 34.55001447122589], [-77.33702130693226, 34.55006625752644], [-77.33699625436871, 34.55010019199935], [-77.33694469233933, 34.55022618871856]], [[-77.24485931249126, 34.59546301498846], [-77.24486249219207, 34.595460305960884], [-77.24486393819691, 34.59545887459631], [-77.24486861048169, 34.59545510519424], [-77.24487538685283, 34.59545699814068], [-77.24486860864452, 34.59546078789411], [-77.24486716343277, 34.595461743536525]], [[-77.29245539563428, 34.55971263476073], [-77.29257099011242, 34.55963216878323], [-77.29265954948968, 34.559563626134576], [-77.29275011752969, 34.55952164729764], [-77.2928651911699, 34.5595182865199], [-77.29278597754828, 34.55960133666019], [-77.29275818677968, 34.559611682060165], [-77.29274786058427, 34.55961695018148], [-77.29255716309034, 34.559762215825984], [-77.29251609259187, 34.5597820920944]], [[-77.3541577617579, 34.552938531527666], [-77.35411436452719, 34.55299309379597], [-77.35415610789174, 34.55301059951921], [-77.3543220107462, 34.55310325390112], [-77.3543921729602, 34.55310160391656], [-77.35440024039715, 34.55304406071072], [-77.35422436220061, 34.55297726048744]], [[-77.31412236624303, 34.54797105628781], [-77.31417066707357, 34.54792950065179], [-77.31422733040326, 34.54788075005192], [-77.31441896898555, 34.54781000142614], [-77.31430623441587, 34.54794465087187], [-77.31422420595644, 34.548014106649845], [-77.31405739584258, 34.548122773182484], [-77.31402668688008, 34.548229607039225], [-77.31402276712987, 34.5482330189524], [-77.31399475274229, 34.54823419303994], [-77.31390196941061, 34.54820090256533], [-77.31399010564985, 34.548090000318645]], [[-77.3522887749037, 34.554810316329466], [-77.35214948869165, 34.554902459962506], [-77.3520034790148, 34.55485753203941], [-77.35183028379004, 34.55458722608214], [-77.35238471725688, 34.5545690823204], [-77.35231120483047, 34.55472155924633]], [[-77.22604394525877, 34.61093050584727], [-77.2261010250876, 34.610869154499134], [-77.22625621018628, 34.610790607153355], [-77.22640735122775, 34.610817220408194], [-77.22653081106398, 34.610853177060456], [-77.22653282912381, 34.61086578395243], [-77.22649976089262, 34.61096633379407], [-77.22649957491335, 34.61098099928665], [-77.22645051437787, 34.61101170114002], [-77.22638769482865, 34.6110082542661], [-77.22624473284199, 34.61100170129068], [-77.22609819131729, 34.610978767437985], [-77.22604833655306, 34.61097317267989], [-77.22599299197631, 34.610972218788326], [-77.22596362535435, 34.610938699425915]], [[-77.22330446964244, 34.61305992243288], [-77.2232768920581, 34.61307120213501], [-77.22306735884871, 34.612984940561525], [-77.22312717925834, 34.6129380018174], [-77.22317311969826, 34.612902979387734], [-77.22331593216893, 34.61285082229246], [-77.22337546092706, 34.612830143133486], [-77.22349980867122, 34.61267431925661], [-77.2236146167879, 34.61287440185852]], [[-77.42770546930221, 34.68505997115108], [-77.4277084439312, 34.68506234954656], [-77.4277075666306, 34.685063400234654], [-77.42770550566838, 34.68506357580227], [-77.42762880859765, 34.68505706344775], [-77.42757978231013, 34.68504144626169], [-77.42751652064658, 34.685030851746006], [-77.42753802374244, 34.68497317172084], [-77.42760388399374, 34.68499439159842], [-77.42764252934356, 34.6850096468496]], [[-77.31543682708185, 34.54652936902036], [-77.3155844056259, 34.54638209154993], [-77.31572719410663, 34.54627171186264], [-77.31575703255317, 34.54621772867459], [-77.31575628897056, 34.546145127831075], [-77.31583967058991, 34.54609229679511], [-77.31589686347326, 34.54603739331683], [-77.31595229133762, 34.5459945712482], [-77.31604014221551, 34.54591428283078], [-77.3161518982603, 34.54591316567753], [-77.31623735953923, 34.54587526904309], [-77.31654653297223, 34.54590922002379], [-77.31639011956999, 34.54602918588054], [-77.31635527897892, 34.54605909575902], [-77.31623199414275, 34.5461045005341], [-77.31615808157137, 34.546164614035135], [-77.31608240908393, 34.546220693465166], [-77.31603129303676, 34.54629231795123], [-77.31597065027455, 34.546321766796495], [-77.3158318966004, 34.546424367021814], [-77.31576680373323, 34.5464709249787], [-77.31560664513252, 34.54653383634577], [-77.3155280946877, 34.54660310408755], [-77.31543226334642, 34.54672427275373], [-77.31534915675206, 34.546624100823735], [-77.31540556193787, 34.54656271670689]], [[-77.28152398419016, 34.564553368793646], [-77.28146600280176, 34.56458894424997], [-77.28144310026147, 34.5645836839907], [-77.28145270747113, 34.56457712142738]], [[-77.35406243997562, 34.55650853019207], [-77.35409417060416, 34.55648486304464], [-77.35414214294994, 34.5564795413941], [-77.35435598524863, 34.55635800592981], [-77.35448817481807, 34.55633417412745], [-77.35459959904566, 34.55634529810733], [-77.35468095185165, 34.55645368539624], [-77.35468288174067, 34.55645575619066], [-77.35468505922547, 34.55645853277936], [-77.35480885382802, 34.55651409274107], [-77.35488191329199, 34.556635862825885], [-77.35497929790137, 34.556835291469156], [-77.35506981624128, 34.55702502220079], [-77.35507392938973, 34.55703394548318], [-77.3550754686622, 34.55703713965909], [-77.35507863433305, 34.55704336124483], [-77.3551737968082, 34.557231845622496], [-77.35520429835985, 34.55730413120917], [-77.35527534779641, 34.557467495165085], [-77.35534689894791, 34.55755431002407], [-77.35538977537938, 34.557625307547], [-77.35545779570073, 34.55781236575091], [-77.35527515574309, 34.557799395316295], [-77.35518078620163, 34.55776593811535], [-77.3551760772455, 34.5577628738172], [-77.35507825352187, 34.557698630020724], [-77.35501962784845, 34.557678588491356], [-77.35493153920646, 34.55763715351733], [-77.35488134643673, 34.557607014354616], [-77.3547704918609, 34.557594967634614], [-77.35462975339986, 34.557581329078936], [-77.35453496687161, 34.55737489106323], [-77.35451228348838, 34.55732706538523], [-77.35450070823819, 34.557314601484485], [-77.35448760848192, 34.55729631075087], [-77.35437205949324, 34.55713497366193], [-77.35433474219002, 34.557092952220025], [-77.3542284494213, 34.556943369136576], [-77.35418949013909, 34.55684601360319], [-77.35409407626426, 34.556643821919565], [-77.35406191061671, 34.55657749906232], [-77.35404132487369, 34.55654575261706]], [[-77.35668722617312, 34.5593490206991], [-77.35669184053792, 34.559306533412844], [-77.35665302152805, 34.55932930125223], [-77.35661946960343, 34.55932261033581], [-77.35651600335522, 34.55930907507398], [-77.35646169532899, 34.55917519372217], [-77.35645872335984, 34.55916963878127], [-77.3564672350606, 34.55915647167112], [-77.35645615408885, 34.559157480548215], [-77.35643499344155, 34.55906691682932], [-77.3564562276313, 34.55902695517756], [-77.35651925271665, 34.55901656789437], [-77.3565836932852, 34.55901428133593], [-77.35665320478937, 34.55900264835691], [-77.35683930822398, 34.559103207845986], [-77.3568501100417, 34.55910678457802], [-77.35685380506764, 34.55910878116193], [-77.35685879373005, 34.55911204651256], [-77.35706846000183, 34.559270992071745], [-77.35724396124195, 34.55924419101332], [-77.35727725724614, 34.5592640811008], [-77.35735173694664, 34.55934941794429], [-77.35744081088505, 34.55945147588932], [-77.35744184679085, 34.55945266279487], [-77.35744080774334, 34.55945717420693], [-77.35742250674352, 34.55964811295398], [-77.35740266951366, 34.55967057893437], [-77.35738215565478, 34.55973657749586], [-77.35736995368387, 34.559811413509], [-77.35732238416854, 34.55980955658198], [-77.35724364133604, 34.55982197424618], [-77.35717178930948, 34.55983866517646], [-77.35710788367835, 34.55985930437674], [-77.35704664446871, 34.559878704347625], [-77.35697251947178, 34.55981242942782], [-77.35688671495518, 34.55974485508968], [-77.35686749928588, 34.55972850611342], [-77.35686453426517, 34.55955158540296], [-77.35687844785369, 34.5595337691852], [-77.35686940466098, 34.5595140313276], [-77.35684987821905, 34.55952182373241], [-77.3568227719725, 34.55951256511254], [-77.35671047288176, 34.55949593200771], [-77.35668109729532, 34.559380192063855]], [[-77.33094340544518, 34.54938930024562], [-77.331073966135, 34.54942402212244], [-77.3310997971463, 34.54943250217621], [-77.33113694832292, 34.54944339110982], [-77.33133228479083, 34.54949798293974], [-77.33143533927581, 34.54962879285678], [-77.33115170524994, 34.54963456244845], [-77.33107127557362, 34.549539860896225], [-77.33099223744149, 34.5495138534163], [-77.33067772294756, 34.549579942805096], [-77.33059865431893, 34.54957021391872], [-77.33061554359746, 34.549518342792624], [-77.33053012447188, 34.54943651020494], [-77.33051656952915, 34.549410162499754], [-77.33068402808001, 34.549308538225326], [-77.33084698765916, 34.549362665553], [-77.33083180869859, 34.54939387166038]], [[-77.2812670518607, 34.564741526759605], [-77.28126751508778, 34.56474099530771], [-77.28126849200844, 34.56473987449869], [-77.28127326460444, 34.56473919824264], [-77.281268895661, 34.56474222297841]], [[-77.32478988367218, 34.54713850450427], [-77.32459274674483, 34.54711437580166], [-77.32453092344389, 34.547012409758985], [-77.32466367206287, 34.5470607378151]], [[-77.33489419011126, 34.54982215753804], [-77.33459841684063, 34.549817945705385], [-77.33452247907177, 34.549739597616174], [-77.33444108830966, 34.549702816967795], [-77.33440322571698, 34.54958315621474], [-77.33460273060197, 34.54963188259677], [-77.33463332065402, 34.54965575840207], [-77.3346552846923, 34.549672019742324]], [[-77.21237800121428, 34.62212122959011], [-77.21237412349365, 34.622110681373705], [-77.21237771921301, 34.6220033653171], [-77.21233375401687, 34.62195806719759], [-77.21235294666624, 34.621927441423324], [-77.21243176070456, 34.62188979391587], [-77.2124658303162, 34.62186348737802], [-77.21255638085839, 34.62178721200398], [-77.21298109494884, 34.62171603277186], [-77.2127240150864, 34.62191288842893], [-77.21262701063709, 34.62200690384362], [-77.2126125635842, 34.62202192342226], [-77.21251393632619, 34.62207437015002], [-77.21243815645016, 34.62212598320546], [-77.21238182919231, 34.62213164251102]], [[-77.32685216731483, 34.547611116409385], [-77.32701311094938, 34.54769700464553], [-77.32705297404004, 34.54774358471822], [-77.3269640153719, 34.547734135193025], [-77.3267961611703, 34.54766142664696], [-77.32671644889888, 34.547630621462574], [-77.32679823345929, 34.547572406190405]], [[-77.3461188227252, 34.53404802076568], [-77.34613922240423, 34.534065538151154], [-77.34613757934106, 34.53407415366709], [-77.3461086872648, 34.53416728274378], [-77.34609024799806, 34.53419499545508], [-77.34604865104671, 34.53425751227456], [-77.34604626773924, 34.534261094187826], [-77.34604521190052, 34.53426268102216], [-77.34594920109174, 34.53431448590216], [-77.34589881689755, 34.53428374665893], [-77.34587614536487, 34.53427197804889], [-77.3458523747583, 34.53425766138516], [-77.34581148230595, 34.53423510867525], [-77.34578600534688, 34.534219511062496], [-77.34575554792076, 34.53420086426148], [-77.34571904304977, 34.534187205169296], [-77.34569292709185, 34.53416926740866], [-77.34569561342202, 34.53415250154872], [-77.34571993646577, 34.534148829815294], [-77.34573936224061, 34.53415367887548], [-77.34575650165745, 34.53415950080569], [-77.34575943530302, 34.534152519725865], [-77.34579541142783, 34.53415205628212], [-77.34580564504395, 34.534156238189944], [-77.34580817662128, 34.534157481365995], [-77.3458106351973, 34.53415872434374], [-77.34581783431395, 34.5341596111498], [-77.3458231995402, 34.53416027205203], [-77.34582425606759, 34.53416039859672], [-77.3458249580589, 34.534160488670786], [-77.345830066612, 34.53416111795508], [-77.34583282389244, 34.53416145760363], [-77.34583618276116, 34.534161871357256], [-77.34583710985135, 34.534161985558455], [-77.34583928092093, 34.534162252995976], [-77.34584139581023, 34.534162513513095], [-77.34584229891043, 34.53416262475913], [-77.34584454810263, 34.5341629018198], [-77.34584394397669, 34.53416158200567], [-77.3458450541231, 34.53415974531433], [-77.34584706963193, 34.53415730692756], [-77.34584709005753, 34.534156376945035], [-77.34584713345993, 34.53415440082152], [-77.3458471539152, 34.53415346948764], [-77.34584721768559, 34.5341505660039], [-77.3458472587395, 34.53414869681332], [-77.34584732248175, 34.53414579460767], [-77.34584738613673, 34.5341428963686], [-77.34584251147564, 34.53413883626307], [-77.3458425762225, 34.53413089298091], [-77.34584288976154, 34.53411613003864], [-77.34583016724831, 34.534110010037935], [-77.34583005067086, 34.53409374683886], [-77.34583060508325, 34.534065088344846], [-77.34580343371871, 34.534052651858204], [-77.34580259261845, 34.5340182828723], [-77.34586852783931, 34.53398208011074], [-77.3459585239219, 34.53391011478182], [-77.3460340945591, 34.533958255701], [-77.34607458100078, 34.53400114903249]], [[-77.32025071639674, 34.54611155429627], [-77.32055279162799, 34.54601447119995], [-77.3206653413067, 34.54605198687389], [-77.32055066212479, 34.546105653795415]], [[-77.32250307353571, 34.546561173850364], [-77.32247874302624, 34.54654134387241], [-77.32244125731442, 34.54653127001962], [-77.32236668882702, 34.54645540230524], [-77.32250511238846, 34.5464737845516], [-77.32265461220015, 34.546500614507345]], [[-77.36943298730084, 34.5201015776026], [-77.36950228416723, 34.52005131205617], [-77.36946662978073, 34.52003639022436], [-77.36950021098973, 34.51996925144647], [-77.36951566374313, 34.51992697028639], [-77.36953611326297, 34.51988173912727], [-77.36960377532056, 34.51991427226624], [-77.36961674222017, 34.51992273090316], [-77.3696330807422, 34.519932249086175], [-77.36966090096745, 34.5200099941547], [-77.36973869343151, 34.52001724233186], [-77.36978017174982, 34.52004038542809], [-77.36982661714002, 34.52005078333922], [-77.36983220178678, 34.520064973282814], [-77.36982611095759, 34.52007300820129], [-77.36975793384609, 34.520094661491896], [-77.36968860568723, 34.52014687435283], [-77.36962709443014, 34.52019506194628], [-77.36950167643744, 34.52021832089981], [-77.36942848375477, 34.52029927343252], [-77.36934427369917, 34.520249731531116], [-77.36939836896187, 34.52018870110275], [-77.36940858250286, 34.52017302058754]], [[-77.33760120585978, 34.550518863646104], [-77.3376285944802, 34.550527406729124], [-77.33767162734497, 34.55055314208323], [-77.33761674283471, 34.550536371641456]], [[-77.21764914689722, 34.617563189117526], [-77.2177331664725, 34.617594967138686], [-77.21761579620298, 34.617629010142316], [-77.21761066408429, 34.61759717373786], [-77.21762492290478, 34.61758641748439]], [[-77.43989477768122, 34.74690505169357], [-77.43988174194251, 34.74694203676844], [-77.43987994333042, 34.74696974778718], [-77.43986484059222, 34.74699023658845], [-77.43982352099616, 34.747030892714335], [-77.43977385432343, 34.74702855612609], [-77.43973434314051, 34.74700352996048], [-77.43973676603603, 34.74696798722136], [-77.43973369888896, 34.74691865916539], [-77.43975275111488, 34.74688424816801], [-77.43977941574833, 34.74685072935065], [-77.43982828721644, 34.746852735300706], [-77.43987311365825, 34.74685951753659]], [[-77.24503805350332, 34.59530426238245], [-77.24504752096104, 34.595293495469974], [-77.24516380933497, 34.59524837285926], [-77.24520074202844, 34.5952153851438], [-77.2451913236905, 34.59525054073721], [-77.24517695696031, 34.595262374622216], [-77.24505980537072, 34.59530442279392]], [[-77.34173669518572, 34.5380005248563], [-77.34174231791948, 34.53799974042968], [-77.34180000734771, 34.53793370761003], [-77.341815995567, 34.53791492928005], [-77.34182238733197, 34.537882246497986], [-77.34182493015146, 34.53786891764001], [-77.34181457935838, 34.537852140468246], [-77.34180629916177, 34.53783408338298], [-77.34176201769448, 34.53782655352708], [-77.34174637976368, 34.537823932723924], [-77.34173548694905, 34.53782732425158], [-77.34167483000746, 34.53784621006233], [-77.34164745119668, 34.53785802364663], [-77.34157231493967, 34.53789044385428], [-77.34154837700382, 34.5378984132707], [-77.3415211077704, 34.53789557696197], [-77.34136740275142, 34.53793473483824], [-77.34148634723657, 34.5379554861896], [-77.34152574614494, 34.53803436609586], [-77.34154512141731, 34.53803930966075], [-77.34163600135295, 34.53801850539601]], [[-77.39624204389666, 34.510341054445036], [-77.39619470055584, 34.51032548561125], [-77.3962434192201, 34.510279830415996], [-77.39633010599837, 34.510305939800645]], [[-77.3049113444184, 34.55385433118184], [-77.30475774701486, 34.55390753809927], [-77.30482597063273, 34.55381274551703], [-77.30495665331537, 34.55375718331938]], [[-77.32191879684022, 34.54636244210974], [-77.32191482243978, 34.54636209553088], [-77.32191885372318, 34.54636000473196], [-77.32192241712339, 34.54636100434413], [-77.32203623697815, 34.54639337685105], [-77.32208234231962, 34.54644115117594], [-77.32200646185208, 34.54641589362468]], [[-77.32133355212888, 34.54620528667793], [-77.32132772762066, 34.54620526627544], [-77.32113632924768, 34.546244636420944], [-77.32103704468294, 34.54624339696964], [-77.32113820742131, 34.546164191063866], [-77.32129657126762, 34.54618272235356], [-77.32133385676477, 34.54619223729486], [-77.32134015394702, 34.546195869239824], [-77.32135329131697, 34.54619796125041], [-77.32137355455176, 34.546220210805096]], [[-77.28191969793475, 34.56433528073725], [-77.28189067114765, 34.56434259962014], [-77.28178819414407, 34.564382619022005], [-77.28173180224961, 34.5643836180449], [-77.28176877034804, 34.564365346545095], [-77.28178981031839, 34.56433374156471], [-77.2818427295764, 34.5643150708901], [-77.28189616210419, 34.564314351716604], [-77.28191022377256, 34.56430391960006], [-77.28193403591243, 34.56430782025825]], [[-77.33438631362738, 34.55049903902626], [-77.33432757744518, 34.550453586432845], [-77.33438880547786, 34.55039156985785], [-77.33453951242957, 34.55042311476939], [-77.33455872496751, 34.55043616462396], [-77.33451310412529, 34.55050607202793], [-77.33444457392284, 34.55052250634999]], [[-77.3639765412068, 34.529141360603404], [-77.36396719506243, 34.529198117931585], [-77.3639255014593, 34.529301341814396], [-77.36392443046297, 34.529301899583075], [-77.36392391491889, 34.5293015703619], [-77.36380609604544, 34.5292703876407], [-77.36380951394501, 34.52924557059952], [-77.36390830735068, 34.5291814059347], [-77.36391477776083, 34.52917261113014]], [[-77.26568037519247, 34.577976266168974], [-77.2656743228826, 34.57798193759305], [-77.26561239647752, 34.578004342319744], [-77.2655983987788, 34.578020169164986], [-77.2655938158739, 34.57800288102603], [-77.26561755185207, 34.57798230219625], [-77.26565529105898, 34.57796501129727]], [[-77.33401818079791, 34.54944294789308], [-77.334123513154, 34.549503661170974], [-77.33401468395566, 34.54959372911619], [-77.33384795328023, 34.54954328001629]], [[-77.33071543558056, 34.54864713039473], [-77.33076733961329, 34.54868254978847], [-77.33069916573108, 34.54865693962995], [-77.33068519981846, 34.54865147675902], [-77.33069943327166, 34.54864542339664]], [[-77.21392520031982, 34.620711542630474], [-77.21396242459036, 34.620677229761206], [-77.21398023030684, 34.62071589068864], [-77.2139228929116, 34.62075523903533]], [[-77.40483488402417, 34.50775952250228], [-77.40479270371816, 34.50773743836241], [-77.40483721169745, 34.50765543272853], [-77.40489258425802, 34.50772301301435]], [[-77.34806691295368, 34.5531579691511], [-77.3479508726555, 34.553145650826025], [-77.34792168106421, 34.55311856363892], [-77.3479402009724, 34.55306686943544], [-77.34797917400591, 34.55307506667002], [-77.34806793986898, 34.553113362520065], [-77.34814784416851, 34.55311730858549]], [[-77.43848558314582, 34.75054617672716], [-77.43842616522547, 34.75056251822639], [-77.43848019768488, 34.750533719549885], [-77.43849184148195, 34.75052455209846], [-77.43849679294014, 34.75053951681336]], [[-77.2699461758835, 34.574423328810376], [-77.26993935830052, 34.57445605637451], [-77.26991384442115, 34.57448726046059], [-77.26990107598304, 34.57445304678942]], [[-77.40195407840723, 34.57676851894426], [-77.40203544180339, 34.5768005534486], [-77.40195407788576, 34.576865200873996], [-77.40178467884441, 34.576836742520186], [-77.40177274221358, 34.57682158439025], [-77.4018277559884, 34.57669440064868], [-77.40187359352066, 34.576698353896646]], [[-77.43479153748065, 34.75385714175061], [-77.43480333209148, 34.75385168327888], [-77.43482396654733, 34.753868470904585], [-77.4347855899323, 34.75391297635319]], [[-77.36932921298555, 34.52034985332044], [-77.36929301258311, 34.520326297710454], [-77.36933102777958, 34.52027019186404], [-77.36942009386402, 34.52030798394121]], [[-77.21186197806094, 34.62266966059154], [-77.2116480694603, 34.62274724250936], [-77.21162180049375, 34.62275645093407], [-77.21148967276244, 34.62273282905018], [-77.21154237377868, 34.62268577730897], [-77.21156017432328, 34.622645809507226], [-77.21160806347103, 34.62261812031278], [-77.21165651469828, 34.6226229412342], [-77.21171258409103, 34.62261994414676]], [[-77.35998451054748, 34.548077787946184], [-77.35998663039933, 34.548079081049636], [-77.35999536277303, 34.548085982899806], [-77.36000229842914, 34.548085082531955], [-77.3600053412279, 34.54807843135315], [-77.35999288150018, 34.548076582552284], [-77.3599867395045, 34.54807431267107]], [[-77.33953074756586, 34.55087788452778], [-77.33952520644584, 34.55088435397927], [-77.33952471845728, 34.550888037161265], [-77.33953052889308, 34.55088734071128], [-77.33953745043858, 34.55088259303727]], [[-77.22196192619249, 34.623585233007276], [-77.22194247571952, 34.625034320814166], [-77.22215029880888, 34.62563436181104], [-77.22233155213, 34.62580224087459], [-77.22328899852991, 34.62623215230009], [-77.22368480761666, 34.62646116248886], [-77.2248631434576, 34.62569967184567], [-77.22541359757977, 34.62549206366017], [-77.2261398405789, 34.62487703855611], [-77.22613877243735, 34.624857617255444], [-77.22620694716073, 34.624812882126186], [-77.22686591592594, 34.6241539764747], [-77.22703434146813, 34.62398555936268], [-77.22731841567301, 34.62370148951678], [-77.22902039212966, 34.6208106039801], [-77.22944050875458, 34.62040451131], [-77.23109209320461, 34.619350985114075], [-77.23088425836569, 34.61720885545558], [-77.2329911315427, 34.61808037747991], [-77.23452670444884, 34.61703481222441], [-77.23462094215145, 34.61656135393763], [-77.23454699361031, 34.616093711448244], [-77.234202822709, 34.61568790446457], [-77.23347193307532, 34.61552173251847], [-77.23157967087865, 34.61519764211817], [-77.23067237014872, 34.61599750571398], [-77.23014691999984, 34.616552979627336], [-77.22992120536104, 34.61667159522712], [-77.22963608871353, 34.616956711492435], [-77.22730667647407, 34.61928618930936], [-77.22673476490147, 34.62019102582832], [-77.2249408523942, 34.62165185003174], [-77.22481955626307, 34.622333652080975], [-77.22408677534813, 34.62233782289973]], [[-77.34542052252297, 34.56728051522089], [-77.34525198222394, 34.56715053408684], [-77.34438296561495, 34.5666958732579], [-77.34384495982452, 34.566842661512105], [-77.34330882133769, 34.5668522880701], [-77.34226903640217, 34.56692132403934], [-77.34170988937488, 34.56656465507431], [-77.34148133848215, 34.56660055011959], [-77.34105458904189, 34.566445164289995], [-77.3406931614943, 34.56692939177922], [-77.34000030451526, 34.5662076899314], [-77.33939593237983, 34.56599510187321], [-77.33911809939738, 34.56587415581489], [-77.3388896087622, 34.5657646429857], [-77.33861906937412, 34.565868543985765], [-77.33833014351057, 34.56591309296144], [-77.33827144302899, 34.56603175775393], [-77.33829868744552, 34.566418907634436], [-77.33830283442923, 34.56645178606873], [-77.33828949793391, 34.56649701559875], [-77.33829867766411, 34.56726869294553], [-77.33830496733854, 34.567300563631775], [-77.337917183483, 34.56776194721496], [-77.3378617422596, 34.56778883601726], [-77.33787032550792, 34.56785693270165], [-77.33820436415651, 34.56816411316012], [-77.33832832036532, 34.56826551992164], [-77.33885367297171, 34.56835364321476], [-77.33890274595186, 34.56891277664939], [-77.33911561851092, 34.56911589771378], [-77.33956239758007, 34.569185507097], [-77.33962491475621, 34.56965801693236], [-77.33990298918162, 34.5698916448736], [-77.34044437667684, 34.56980594627809], [-77.34069072187793, 34.570200844467536], [-77.34089318923655, 34.5703247212024], [-77.34136408235241, 34.57038035327563], [-77.34177414548274, 34.57051665306503], [-77.34226638213354, 34.57057382995434], [-77.34266442122444, 34.57049022707362], [-77.34323600010708, 34.57083686936413], [-77.34365130492812, 34.5709826548578], [-77.34384203657288, 34.57097344773622], [-77.34424730960163, 34.571128236082004], [-77.34486718877534, 34.57119559523276], [-77.34503901185198, 34.57142662594408], [-77.3454176150909, 34.571503738907424], [-77.34571474917242, 34.57164971232326], [-77.34588291692259, 34.57165282577803], [-77.34620560741467, 34.57147973234978], [-77.34638119434325, 34.57142272058399], [-77.34693199150757, 34.571220876171054], [-77.34699378611185, 34.571175589617084], [-77.34705746290763, 34.57113627108223], [-77.34699406948849, 34.570751736543826], [-77.34682786946208, 34.570499479751824], [-77.34678061331532, 34.57032700407997], [-77.34678709121745, 34.570102565572796], [-77.34616775555234, 34.5679112773687]], [[-77.42918892009848, 34.731158315155476], [-77.42912410667216, 34.730672320521734], [-77.42884642104822, 34.730396078667574], [-77.42878791796979, 34.730328722781024], [-77.42878665155965, 34.72992031944309], [-77.42864785125371, 34.72976761346099], [-77.42846849216882, 34.72960665476524], [-77.42838972604612, 34.72948944701733], [-77.42811865680184, 34.72930620308179], [-77.42774962370748, 34.72889458866049], [-77.42758897216227, 34.7286343921619], [-77.42745428202409, 34.72829134670968], [-77.427350941085, 34.72784092050218], [-77.42717879989783, 34.72757693317711], [-77.42706983005735, 34.72740468927994], [-77.42661609424323, 34.7272546941247], [-77.42649866793047, 34.727163009908985], [-77.42600663478379, 34.72716718909376], [-77.42562090318266, 34.72746005817946], [-77.4255927231386, 34.727681577956986], [-77.42524751347617, 34.72801996115431], [-77.42522277923146, 34.72830522559394], [-77.42517505528494, 34.72855370209413], [-77.42531147565188, 34.728691650413], [-77.42537709665004, 34.72882252167552], [-77.42546052071248, 34.729075859266516], [-77.42559014569869, 34.72925787175055], [-77.42572288181788, 34.72941280137147], [-77.42580001665475, 34.72957627966989], [-77.42590992274978, 34.72978116209845], [-77.42593435451995, 34.729937260512756], [-77.42597698011112, 34.730072323587244], [-77.42601558810648, 34.730183466590304], [-77.42621309067646, 34.73029739379395], [-77.42623072634373, 34.73030315761047], [-77.42646104904945, 34.73032863342219], [-77.426630732045, 34.73037325527475], [-77.42682554483596, 34.730463195692366], [-77.42698846023772, 34.73067041810762], [-77.42714776702962, 34.73092046914557], [-77.42719324512488, 34.73103137823652], [-77.42727586369544, 34.73112238142534], [-77.42745879801954, 34.73136699053766], [-77.42772435254318, 34.73164499085489], [-77.42775899262693, 34.73166825466819], [-77.42783651856783, 34.731720272981555], [-77.42816381645252, 34.73196567062401], [-77.42808525362216, 34.732234673075496], [-77.42810188985136, 34.732372087868775], [-77.42806458961142, 34.732453445782554], [-77.42795724990162, 34.73260106362865], [-77.42792322641843, 34.732717766218634], [-77.42792463869672, 34.73273501588259], [-77.42801716966147, 34.73290153738424], [-77.42801891563158, 34.73291888207022], [-77.42803149626936, 34.732941720194276], [-77.42832071178151, 34.73336720942369], [-77.42848692059856, 34.733583346800714], [-77.42863868565365, 34.733553125041006], [-77.42855690292049, 34.73364924229281], [-77.4289396594593, 34.73423427288191], [-77.4289753683125, 34.7343054551954], [-77.42899603355292, 34.734361780122995], [-77.4293777010511, 34.7349359935362], [-77.42996417244089, 34.73470014240153], [-77.4300583643964, 34.73471060009992], [-77.43010862928746, 34.73462595014097], [-77.43048428665107, 34.7343228626203], [-77.43035010938331, 34.73417838129755], [-77.43029545593208, 34.733980538598594], [-77.43029544605307, 34.733977989824986], [-77.43029486128552, 34.733977133540996], [-77.43021738109027, 34.733787360026454], [-77.43005311885216, 34.733710221713906], [-77.42985652739824, 34.73363304382174], [-77.42975883845881, 34.733619351549486], [-77.42943747583709, 34.733677479534215], [-77.42942737340667, 34.7336796919585], [-77.42938867433641, 34.73368666332605], [-77.42938901819683, 34.733617026318775], [-77.42932074027647, 34.73335715139544], [-77.42936576497951, 34.73324983279728], [-77.42949294316053, 34.7330390146573], [-77.42971106121622, 34.732934513014165], [-77.42968593051167, 34.73260651682538], [-77.42995082525138, 34.732113000644325], [-77.42974711451325, 34.731828999585176]], [[-77.24960249571282, 34.60859165121733], [-77.24971630945123, 34.6087080815593], [-77.2503051831575, 34.60884374815091], [-77.25035177079792, 34.60877734892358], [-77.25058788639684, 34.608437833017526], [-77.25062307491864, 34.608368666537544], [-77.25082529868092, 34.60794926155328], [-77.25080187217422, 34.60788812434947], [-77.25028734789062, 34.60775953958327], [-77.25004050219343, 34.60772633717584], [-77.24981984399429, 34.607754822284356], [-77.24971511579216, 34.607861855298374], [-77.2496660350678, 34.60799210616272], [-77.24936033901383, 34.608305266830726]], [[-77.4270039152053, 34.684187904089725], [-77.42675062741918, 34.68421655181778], [-77.42667694747757, 34.68431319504684], [-77.42665337566783, 34.68434483425106], [-77.42660692493975, 34.68440610598245], [-77.42655054601201, 34.68448047381513], [-77.42649152647608, 34.68455832444521], [-77.42648638506266, 34.68456596398814], [-77.42648560499471, 34.684578787145874], [-77.42647861086586, 34.684682844275066], [-77.42647914133242, 34.684703199300635], [-77.42649605952195, 34.68476533653028], [-77.42651514357591, 34.68485556064176], [-77.42650544015429, 34.68489483639665], [-77.4265424822503, 34.68493583848503], [-77.42661068166049, 34.684952746575526], [-77.42683105109376, 34.6850458437114], [-77.42702096021871, 34.68512607193017], [-77.42712022460785, 34.685153760939045], [-77.42720274816082, 34.685172886217835], [-77.4274180828932, 34.68523166765106], [-77.4276374239581, 34.685248090912374], [-77.42771123164587, 34.68525636275744], [-77.42773181522614, 34.685254717113125], [-77.42779426127834, 34.685249724526436], [-77.42792928292432, 34.68523892947876], [-77.42805980494839, 34.685228494006104], [-77.42826267729966, 34.68541007597216], [-77.42834231186015, 34.68535945489856], [-77.42862967235551, 34.68534745127345], [-77.42869704438591, 34.685372369262], [-77.42872373534584, 34.68530819413332], [-77.42857523258485, 34.685173214834236], [-77.42844397747757, 34.68500810446956], [-77.42843919581058, 34.68498056468816], [-77.4283835322611, 34.68494997202203], [-77.42797601259166, 34.68472749141355], [-77.4278902853843, 34.68470706622012], [-77.42780339983359, 34.68465917421409], [-77.42761169436164, 34.68456258152309], [-77.42742863150457, 34.68450955669737], [-77.42733211030581, 34.68442153077014], [-77.42711062237983, 34.68419589532566], [-77.4270848155955, 34.684168898789565], [-77.42696752138501, 34.68403242752625], [-77.42696487661502, 34.68402976914282], [-77.42696156575371, 34.68403065915032], [-77.4269614872496, 34.68403329562087], [-77.42695783442957, 34.68403647025281]], [[-77.28271293038912, 34.584389984149674], [-77.28367891490564, 34.58406796010239], [-77.2838419025602, 34.583900277438545], [-77.28404752720427, 34.58343282722774], [-77.28369161944138, 34.58314909412432], [-77.28347120612179, 34.58289017880671], [-77.28313993720353, 34.58271308776416], [-77.2829348644196, 34.58256433947022], [-77.28282875248189, 34.58275567108923], [-77.2827319139937, 34.583182118096744]], [[-77.33236223675776, 34.52821975205358], [-77.3323515061739, 34.52822157653883], [-77.33233893884018, 34.528224235524085], [-77.33203250290367, 34.52830759635145], [-77.33202561027346, 34.52838389625142], [-77.33195436299644, 34.528420590899835], [-77.33188111900579, 34.5284822913918], [-77.3318543191503, 34.52850296881486], [-77.33183289821153, 34.528520912949894], [-77.33182880554503, 34.528534601678885], [-77.33180405461994, 34.5285545996443], [-77.33178302664611, 34.52855873062756], [-77.33175454080185, 34.52857390785377], [-77.33167482789757, 34.52861794497399], [-77.33166484990502, 34.528625389366326], [-77.33162454089873, 34.528644036072606], [-77.33157949094635, 34.52858382200191], [-77.33157263892598, 34.52857143395382], [-77.33157529735495, 34.528560630022284], [-77.33156017837173, 34.528492160656484], [-77.3315496726684, 34.52845232822106], [-77.33156126228056, 34.528445500534026], [-77.33167399815326, 34.528381429559175], [-77.33176418848987, 34.528299076597534], [-77.33196290409222, 34.5280528399225], [-77.33217083161574, 34.52812654383364], [-77.33238514206627, 34.52796497566854], [-77.33201267096604, 34.52798842614177], [-77.33222930446289, 34.527658190502706], [-77.33269828748058, 34.5274303167026], [-77.3327633901603, 34.527387532785255], [-77.33282485603908, 34.527373976521346], [-77.33314424609264, 34.52736618994278], [-77.33307372320434, 34.52766833941001], [-77.3330257369542, 34.52787286343546], [-77.33278402456347, 34.52792832084773], [-77.3327508971499, 34.52792565571174]], [[-77.36983810743268, 34.588567539204554], [-77.3701203423206, 34.58873995056908], [-77.37023205230578, 34.588883029013594], [-77.37041004467996, 34.58876953102346], [-77.3706263552935, 34.588245288151654], [-77.37066075230761, 34.58811714211597], [-77.37083518159142, 34.58746757520053], [-77.37141480209291, 34.587358948742384], [-77.37150273437591, 34.58724143596095], [-77.37217587880686, 34.5870790168598], [-77.37220301187384, 34.58709369733383], [-77.37229824541558, 34.58713477149597], [-77.37231225926817, 34.5870301318508], [-77.37257276340725, 34.58659441739961], [-77.37220356065784, 34.585549376487386], [-77.37170099036291, 34.58657710118121], [-77.37141514459215, 34.58641885886274], [-77.37132743496832, 34.58641737559034], [-77.37062688557864, 34.58682534702275], [-77.3701627214863, 34.58683966943558], [-77.3694821094528, 34.58697288061184], [-77.36905062610798, 34.58691802437843], [-77.36872880647194, 34.58719967216224], [-77.36826235568437, 34.587310130615464], [-77.36805654132635, 34.5874214068474], [-77.36752076528239, 34.5877202617444], [-77.36750033575974, 34.58775151579909], [-77.36747404516392, 34.58778116295247], [-77.3671853512366, 34.58830687705433], [-77.36726024816538, 34.58860689235793], [-77.36728781747874, 34.588803107046466], [-77.3674736304064, 34.58879132656381], [-77.36794538579439, 34.588849052842505], [-77.36826167040593, 34.58901798423866], [-77.36839797175514, 34.58914525740505], [-77.36885159553691, 34.58901328357343], [-77.36904991415855, 34.58873406946824], [-77.36948969606199, 34.588661142895454]], [[-77.389332523823, 34.5121129192003], [-77.38890849424656, 34.511989101427815], [-77.38887424031854, 34.5119772053745], [-77.38884732830343, 34.51197376920722], [-77.38821833347096, 34.511991191425565], [-77.38787812955337, 34.51202345585561], [-77.38733627951872, 34.51221593955435], [-77.38728169687066, 34.51222997281445], [-77.38727163547871, 34.51223841314304], [-77.38700728012618, 34.512508237363264], [-77.38700680863391, 34.512592908475035], [-77.38696556108883, 34.51275908878149], [-77.38701091499013, 34.51290580637019], [-77.38725344951362, 34.51304416554717], [-77.38735945976718, 34.51312465501193], [-77.38760322253538, 34.51315675746859], [-77.38780072826191, 34.51327326545069], [-77.38803409516993, 34.51323141489316], [-77.38818312253404, 34.51316513453625], [-77.38872463566726, 34.513056277486996], [-77.38882347338301, 34.51303157070157], [-77.38889350184711, 34.51301404037685], [-77.38912439334655, 34.51293728262384], [-77.38951273222139, 34.51281860532068], [-77.38962010794158, 34.51250963856775], [-77.38966996931732, 34.51239843965188], [-77.38967279795175, 34.51236848747686], [-77.38969185371639, 34.512323592807725], [-77.3896244052055, 34.51231900515627]], [[-77.37583896256763, 34.58090846299778], [-77.37535743806427, 34.58090177368255], [-77.37516144326449, 34.58131388931521], [-77.37516474293393, 34.58152445433832], [-77.37519902084259, 34.58168993283023], [-77.37528989687638, 34.58235554436536], [-77.3753569416393, 34.58244859902021], [-77.37608475626601, 34.582241015205454], [-77.37612160450018, 34.582210407563224], [-77.37576693098566, 34.581437685609416]], [[-77.35051026802259, 34.55751944904907], [-77.35039598811834, 34.556481005935765], [-77.35039024790964, 34.556222120327234], [-77.35049853773941, 34.55599615821703], [-77.35055800857666, 34.55545844359541], [-77.35101049372726, 34.5556088227437], [-77.3511584256077, 34.55562192982394], [-77.35151016389702, 34.55571350224028], [-77.35173854197575, 34.555699170073154], [-77.35191957015115, 34.555757210464535], [-77.35195440566223, 34.55586011760553], [-77.35240060895057, 34.55585824674415], [-77.35251960507509, 34.555883191656875], [-77.35310768780701, 34.555831032672884], [-77.35321755066217, 34.555911286648595], [-77.3533065982952, 34.556055745687495], [-77.35338249425737, 34.556558455010354], [-77.35333176515017, 34.55664788201829], [-77.353377060421, 34.5567177344319], [-77.35335995937002, 34.55743451804054], [-77.35363031773953, 34.55745401160026], [-77.35362545666833, 34.557799494230316], [-77.35330544965541, 34.55796176162163], [-77.3527906007252, 34.55812963568829], [-77.35300132380826, 34.55754454056479], [-77.35210581462434, 34.55726858979564], [-77.3517301437274, 34.557341490808916], [-77.35132336370955, 34.557347625670275]], [[-77.36915031370908, 34.52128912819825], [-77.36921740600864, 34.521194088332685], [-77.36917121412404, 34.521104953513714], [-77.36918060212919, 34.52107697863865], [-77.36918099703132, 34.52105570229367], [-77.36916698787573, 34.520956526976285], [-77.36918603728894, 34.52085233374789], [-77.3691828447743, 34.52080824461927], [-77.36938987560413, 34.52069799738977], [-77.36941982484016, 34.52067938169685], [-77.36942581922479, 34.52067812111249], [-77.3694363724888, 34.52067287885562], [-77.36970542964866, 34.52056582464886], [-77.36981809950944, 34.52042476597644], [-77.36988013337864, 34.52036409975555], [-77.36987945938952, 34.52032730493201], [-77.36998177723913, 34.520203584719674], [-77.37002072378107, 34.52014430084454], [-77.370061062894, 34.52009319756168], [-77.37010149521649, 34.52001348428657], [-77.37009453815787, 34.51996595946614], [-77.37011161648388, 34.51991012516865], [-77.37005252818, 34.5198495999806], [-77.36994312407194, 34.51979630440772], [-77.3698338179621, 34.51973461856046], [-77.36976088192436, 34.5196928945896], [-77.3696720269854, 34.519659608791436], [-77.36956046235939, 34.519603248108524], [-77.36949058927769, 34.519563342896184], [-77.36944570278057, 34.519543397378264], [-77.36928481691112, 34.51957055978751], [-77.36922091217718, 34.51958498439522], [-77.3690488851172, 34.51973419009178], [-77.36903833593466, 34.5197444969151], [-77.36903727722469, 34.519751083665454], [-77.36903617037852, 34.51975882457853], [-77.36902760308769, 34.51987489135408], [-77.36904481931919, 34.51991263245002], [-77.3690694667213, 34.519975010154745], [-77.36908653446639, 34.519988812349446], [-77.36909578799482, 34.52002081103538], [-77.36913509044014, 34.52010422859891], [-77.36911962535434, 34.52015658916892], [-77.36911777808925, 34.52016793028946], [-77.36907464887138, 34.52021248264682], [-77.3690492105093, 34.520239018248276], [-77.36904439915635, 34.52024416163875], [-77.36903707945129, 34.52025232540838], [-77.3689882849899, 34.52027787312862], [-77.36883879363927, 34.520342238988306], [-77.36877752026592, 34.5203626518057], [-77.36863962126016, 34.520471035368594], [-77.36856772448523, 34.52050891936439], [-77.3685455420626, 34.52061309384543], [-77.36854955466353, 34.520800675549474], [-77.36851958641736, 34.520982210221725], [-77.36854844570969, 34.52109368568786], [-77.36858124233258, 34.52128576326544], [-77.36862057321004, 34.521306862756994], [-77.36886169639621, 34.52133930240173], [-77.36901076973534, 34.52140703202112]], [[-77.3842832389464, 34.51424794259983], [-77.384857154552, 34.514042574808826], [-77.3848764154703, 34.51403633066368], [-77.38488034727463, 34.514036770184056], [-77.38492387577388, 34.51403295020608], [-77.38559979088662, 34.51397468753946], [-77.38566300346201, 34.513960749361814], [-77.3857139073904, 34.513950600022895], [-77.38595979175258, 34.51388351426173], [-77.38638333824262, 34.51377959391066], [-77.38645607112099, 34.51359811386334], [-77.38657872196148, 34.51337797994367], [-77.38659740385015, 34.51330186677312], [-77.38664484344375, 34.51318309781457], [-77.38646935258642, 34.513009903334805], [-77.38640325304607, 34.51288323341143], [-77.38638017900183, 34.51284353966775], [-77.38608452737576, 34.51267293950913], [-77.38605252395115, 34.51266603918051], [-77.38569154404372, 34.512697267444395], [-77.38541009212918, 34.51280947286812], [-77.38529515677642, 34.512872239374175], [-77.38499949885743, 34.513042713512334], [-77.38493959892446, 34.513077251364166], [-77.38489741776715, 34.51310695058709], [-77.38436967633537, 34.51329665737697], [-77.38410651171961, 34.513373836281545], [-77.38374255335772, 34.513450012941654], [-77.383689499266, 34.513462425807454], [-77.38331758602527, 34.513552921667], [-77.3830822070205, 34.51366364885669], [-77.38269595702566, 34.51386464306849], [-77.38258832484931, 34.513920046775574], [-77.38252368848275, 34.513951577469186], [-77.38233155221506, 34.51403587869139], [-77.38203921793087, 34.51414957616959], [-77.38180813841659, 34.51443231109674], [-77.3817574707368, 34.514489660893574], [-77.38177015758916, 34.51451535099034], [-77.38172591171131, 34.51452126283024], [-77.38138517257592, 34.51482472757833], [-77.38132581683098, 34.51485921217443], [-77.38101215458823, 34.51503517598999], [-77.38092835877097, 34.515080575259354], [-77.3808841201566, 34.51510527598158], [-77.3806498334178, 34.51530958746305], [-77.38054370672428, 34.515399198814016], [-77.38055861459425, 34.51541595071485], [-77.38052769522099, 34.515443368100364], [-77.38045872153032, 34.51553386990765], [-77.38052547096241, 34.51554157157419], [-77.38065896939027, 34.51554408810697], [-77.38079122737123, 34.51552912058303], [-77.38091840530495, 34.51552012229513], [-77.38099841628431, 34.51552842174486], [-77.38131068968264, 34.51552736798763], [-77.3813198051529, 34.51552643145417], [-77.38166132262377, 34.515455753497406], [-77.38170521039841, 34.51543581387832], [-77.3819687314922, 34.515193685279186], [-77.38201187490012, 34.5151296233436], [-77.38216785016454, 34.51492013585181], [-77.3822637831857, 34.514755503119474], [-77.38251076780213, 34.514522626338994], [-77.38281502464557, 34.5145270086875], [-77.38329453889108, 34.5145719456326], [-77.38372930552575, 34.51442574915053], [-77.38408395362333, 34.51437165081966]], [[-77.37063212669, 34.57298711452821], [-77.37076228564965, 34.572958642957374], [-77.37119215595419, 34.57275647005876], [-77.37124451439882, 34.572559536167226], [-77.37156697288906, 34.57254438797123], [-77.37158385463965, 34.572700040923], [-77.37195917847818, 34.572914219215996], [-77.37202449917763, 34.573287964729744], [-77.37203779725095, 34.57348376238191], [-77.37198307922137, 34.573733815640516], [-77.37193333819012, 34.57405228632771], [-77.37158339187019, 34.574221896196974], [-77.37141961144927, 34.57431281886507], [-77.37136277011703, 34.574368900694196], [-77.37075256228954, 34.574387677487316], [-77.37063159638576, 34.57437104040959], [-77.37029832980936, 34.5741589091024], [-77.37026298932331, 34.574136738422936], [-77.36990286811616, 34.5737913167718], [-77.36989755965901, 34.57300052727463]], [[-77.4297072112259, 34.682856889288416], [-77.42962418219685, 34.682868075096074], [-77.42946219726488, 34.682884039725636], [-77.42937630139262, 34.68289324353561], [-77.42920076023054, 34.682999517911156], [-77.42912893761014, 34.68308703387426], [-77.42901285664813, 34.68304204006678], [-77.42890328726257, 34.68309203529082], [-77.4288409417502, 34.683082540918306], [-77.42873689171138, 34.683116813560815], [-77.42869764089329, 34.68312974222715], [-77.42866386913961, 34.68314086613748], [-77.42863399130067, 34.683150707439935], [-77.42860816977363, 34.68317042603881], [-77.4285669623275, 34.68319714747548], [-77.42856920589733, 34.68329368831348], [-77.42856331912081, 34.68333564088422], [-77.4285729560992, 34.68345506495092], [-77.4286219909705, 34.68356512962846], [-77.42881517471798, 34.683695840241825], [-77.42882394539598, 34.68369493296721], [-77.42903027608439, 34.68367358905547], [-77.42914867550027, 34.68367994977102], [-77.42937058654694, 34.683699078129045], [-77.42946245026624, 34.68370282869468], [-77.42951785417794, 34.68372289215078], [-77.42975699023495, 34.68375312512796], [-77.43002317696484, 34.6838012033977], [-77.43008982833739, 34.68374917747453], [-77.43048356211034, 34.68344816908953], [-77.43029085343429, 34.68305437941709], [-77.43021782385883, 34.682899082640404], [-77.42989095217403, 34.68283717633507]], [[-77.35409163064837, 34.56077480096822], [-77.3541037898009, 34.56078226762567], [-77.3540916159875, 34.56079962934417], [-77.35408057279211, 34.560785609290264]], [[-77.36449382301812, 34.62062330938778], [-77.3658839209938, 34.620977941538364], [-77.36636469816185, 34.62067064976321], [-77.36680550222694, 34.62079534425154], [-77.36698233255004, 34.62124714583028], [-77.36676350681523, 34.62179381561573], [-77.36683173676599, 34.622805520453284], [-77.36588334408462, 34.622399150057696], [-77.36556144206209, 34.62231356181142], [-77.36475714439874, 34.622082632559554]], [[-77.33316647984915, 34.52693203061554], [-77.33312404905988, 34.52687946239808], [-77.33316823326153, 34.52685648932385], [-77.33322528416042, 34.52686490507084]], [[-77.39138474883117, 34.512239259183], [-77.39158458564496, 34.51209261587538], [-77.39158824697655, 34.51208992184364], [-77.3915918614424, 34.51208356117773], [-77.39170164173157, 34.51189675621545], [-77.39173428973393, 34.51174211444073], [-77.39163203196624, 34.511596100236844], [-77.39149028470467, 34.51144407974857], [-77.39137522915317, 34.51138832561457], [-77.39121641401368, 34.5113295836485], [-77.39106935123449, 34.51128007952433], [-77.39082521200874, 34.51127524636776], [-77.39072410032968, 34.51130018581311], [-77.39056750032604, 34.51134508030481], [-77.39042905075942, 34.51144101668109], [-77.39033201888415, 34.511538864247015], [-77.39026684749837, 34.51169548146016], [-77.39014815254872, 34.51181022888062], [-77.39023832205885, 34.51190962438969], [-77.39041436793985, 34.51209263761859], [-77.39048652381906, 34.512204480527444], [-77.39054682075239, 34.512242369500086], [-77.39080084920991, 34.51235668858877], [-77.39092321006017, 34.51235655183075], [-77.39119360368589, 34.512342324507934]], [[-77.39753106364851, 34.50973277500908], [-77.39748175221384, 34.50974179922377], [-77.39713793849117, 34.509764316445], [-77.39685867882613, 34.509791404455754], [-77.39674451429327, 34.50980915566079], [-77.39665451946993, 34.509836084579], [-77.39635029868246, 34.50988920363863], [-77.39608830823204, 34.509973590039515], [-77.39598469844452, 34.5100069283031], [-77.3959546582851, 34.51003262945263], [-77.39576492565011, 34.51026510490085], [-77.39574051316146, 34.510384792992795], [-77.39560295534038, 34.51053331933309], [-77.3957738414862, 34.510613326253754], [-77.39594032510347, 34.51067058696696], [-77.39599302823187, 34.510688713711595], [-77.3961939026934, 34.510692853768546], [-77.3962945839216, 34.510701694647246], [-77.39633206662671, 34.510700865865445], [-77.39637965989603, 34.51069566066923], [-77.39672686985315, 34.51059482191311], [-77.3970888739792, 34.510543971134936], [-77.39751854002462, 34.5102906553944], [-77.39756259271803, 34.51027774476477], [-77.39757411928221, 34.5102487764549], [-77.39757954302135, 34.51021104777725], [-77.39771413405462, 34.509983727758716], [-77.39761032914524, 34.50980433482052], [-77.3975986551508, 34.50975556268606], [-77.39758522979504, 34.50972383062426]], [[-77.3705824902157, 34.5694478261705], [-77.37063350397791, 34.56940904680306], [-77.37100502549971, 34.56938695439456], [-77.37139667202948, 34.56935725523469], [-77.37142147331635, 34.56934828480426], [-77.37146095666647, 34.569363825774346], [-77.37198066032585, 34.56949285761469], [-77.37210342506454, 34.569963850856126], [-77.37213874560739, 34.57007274103955], [-77.37181507551712, 34.570345352828525], [-77.37158191449764, 34.57032625529261], [-77.37142106864876, 34.57042346103946], [-77.37112720974498, 34.5702184706316], [-77.37083371434589, 34.57004473579113], [-77.37063347391012, 34.569486918039544]], [[-77.43731037382575, 34.74064908542129], [-77.4373095915221, 34.74062121163969], [-77.43727227628955, 34.74051303037738], [-77.43719764032093, 34.74024971361362], [-77.4372183575434, 34.740030299916796], [-77.43722211768784, 34.739793098001854], [-77.43718421729439, 34.73945933651219], [-77.43716622648307, 34.73937001308366], [-77.43713043099753, 34.739164595356684], [-77.43706882771492, 34.73896424456604], [-77.4370355596106, 34.73884835983931], [-77.4370336793335, 34.73862794390446], [-77.43696872353712, 34.73826597109328], [-77.43698861434402, 34.73810490408184], [-77.43705923672263, 34.73801807944079], [-77.43707932134666, 34.73795481070705], [-77.4371386741356, 34.7377663176113], [-77.43726107173246, 34.73754483155543], [-77.43726570871985, 34.737531186782086], [-77.43724382813062, 34.7374758329327], [-77.4372947481052, 34.73748896103637], [-77.43746000842363, 34.737319558849144], [-77.43756768972662, 34.73725714990779], [-77.4377168128762, 34.73713830795795], [-77.43787790598907, 34.737016180763945], [-77.437990315792, 34.73694581673498], [-77.43812836848525, 34.736823959178295], [-77.4382185597828, 34.73682493035351], [-77.4384067720178, 34.736969742381305], [-77.43856949460493, 34.736998940415134], [-77.43881279567856, 34.73704787538165], [-77.4390253568777, 34.73704782143356], [-77.43921187870963, 34.737177328250695], [-77.43953615346848, 34.73748592431421], [-77.43953818962618, 34.737487590347015], [-77.43953845364555, 34.73749046180431], [-77.43958869751054, 34.737912924582965], [-77.43953898627724, 34.73804594302835], [-77.43951342497841, 34.73819223762929], [-77.4394753228163, 34.73840663513976], [-77.4394580563263, 34.7385766971148], [-77.43948707124635, 34.73862493738276], [-77.43949282998746, 34.738756067626596], [-77.43949637857911, 34.73884425796034], [-77.43948316582966, 34.738890464982575], [-77.43943212858083, 34.73896584340383], [-77.43936716878906, 34.73907483281536], [-77.43933505875339, 34.7390927536152], [-77.43923016122278, 34.739224884534465], [-77.43913707130562, 34.73930309552366], [-77.43918024132886, 34.73942256379991], [-77.43925671746811, 34.73957203483919], [-77.4392753317087, 34.7396309158418], [-77.43919037071215, 34.73986474492464], [-77.43918270613639, 34.73989502968349], [-77.43916173519294, 34.73990027427029], [-77.43902606032432, 34.74001300936676], [-77.43893270658054, 34.74007023988362], [-77.43887541891769, 34.74014079653472], [-77.43884599362056, 34.74017970188128], [-77.43884855855475, 34.74023055644898], [-77.43887944506858, 34.74033114665757], [-77.43888728289555, 34.740437603419], [-77.43887484909105, 34.740609055820784], [-77.43892230014015, 34.74086940065928], [-77.4389190809639, 34.74090402494167], [-77.43891640142839, 34.740955388684405], [-77.43893509119786, 34.741189133545184], [-77.43889802780515, 34.74132593377719], [-77.43888741263717, 34.7414519910132], [-77.43883481613467, 34.74156979410238], [-77.43878036188407, 34.741694105547694], [-77.43868923722843, 34.74185944827263], [-77.43862391519416, 34.74197299602436], [-77.438555522455, 34.741995165367506], [-77.43825281443438, 34.74206882511905], [-77.43822560850022, 34.7420701175111], [-77.43821294569466, 34.74207107790927], [-77.43819146526263, 34.7420671175792], [-77.43791179201624, 34.74200384872417], [-77.43773277394018, 34.74188713382771], [-77.43766021733353, 34.74184234535312], [-77.43764185261364, 34.74182875998706], [-77.43759699412547, 34.74179107833031], [-77.43726626204091, 34.7415602950309], [-77.43724195291963, 34.74121118299896], [-77.43724994638538, 34.741159406685], [-77.43727976945362, 34.741108256586905], [-77.43729090177109, 34.74082576167871]], [[-77.33381066191961, 34.52743460125289], [-77.33433166790238, 34.527464664868695], [-77.33445232415767, 34.527250238659136], [-77.3346680611176, 34.52714706115198], [-77.3349865982871, 34.52701358115186], [-77.33512793717867, 34.52698011274636], [-77.33529466922394, 34.52695334085322], [-77.33537640879561, 34.5270451920539], [-77.33523641429942, 34.52713522766578], [-77.33524481867852, 34.52747371166372], [-77.33519566326086, 34.52756082003272], [-77.33519057669606, 34.52760972609539], [-77.3352808481677, 34.52779338607323], [-77.33539025127925, 34.52784633427243], [-77.33549950006736, 34.52788385395302], [-77.33559595268791, 34.527932031444024], [-77.33567815829258, 34.527981063870115], [-77.33568555466027, 34.52798490390807], [-77.33569326376147, 34.52799151159274], [-77.33587191775253, 34.52796456800983], [-77.33589012701599, 34.527965462983396], [-77.33611936630003, 34.52806198318932], [-77.3359233193562, 34.52794580528649], [-77.33615138786605, 34.527829167767884], [-77.33619632694158, 34.527719122561535], [-77.33620165588354, 34.52766095769953], [-77.33608892851645, 34.527559051025506], [-77.33608477577273, 34.52754832473428], [-77.33607462849214, 34.527434409928], [-77.33610002760372, 34.527376871107556], [-77.3361720053943, 34.52734239150912], [-77.3362980501045, 34.52730072849113], [-77.33650654238068, 34.527372290752396], [-77.3365464019214, 34.527454255851936], [-77.33668436849327, 34.52756820581893], [-77.33669971831443, 34.527589324563856], [-77.33673251823711, 34.527796099493656], [-77.33677608753065, 34.52782315769812], [-77.3367390896795, 34.527866925764904], [-77.33667732298518, 34.527872299126905], [-77.33629862311217, 34.528149267823736], [-77.33627841283902, 34.52814812647553], [-77.33609138615374, 34.528296766978556], [-77.3360786302113, 34.528300130164176], [-77.33605661412679, 34.52830748574608], [-77.3358811500732, 34.52835276348803], [-77.33578891504817, 34.52839789416453], [-77.3357819923795, 34.528397092801264], [-77.335697138691, 34.52846796810702], [-77.33569436426407, 34.528476058994706], [-77.3356817603316, 34.52848776461329], [-77.33552679254537, 34.5285186678563], [-77.33548323442281, 34.52858547572525], [-77.33528218790597, 34.52852764392223], [-77.33519529038149, 34.528476491318216], [-77.33509476837318, 34.52841056068879], [-77.33500080025952, 34.52832329401693], [-77.33491446846426, 34.52820630035814], [-77.33490734668771, 34.52809191682987], [-77.33488649462902, 34.527986138742094], [-77.3347136740222, 34.52791786172868], [-77.33466764955085, 34.527910384727015], [-77.33432551740802, 34.52772980520815], [-77.33420415188303, 34.52777840147499], [-77.33384581482878, 34.52775493776954]], [[-77.36027012974009, 34.562575030314015], [-77.35999962982002, 34.56275647273163], [-77.35974873741102, 34.56251696419974], [-77.35968062099963, 34.56244618835696], [-77.35972372182769, 34.56222291975989], [-77.3597491253756, 34.56209235498708], [-77.35980303101977, 34.56204013539362], [-77.35995444730659, 34.56201368413554], [-77.36000004299508, 34.56195984155512], [-77.36013576823598, 34.56189045175021], [-77.36015843386033, 34.56203342281951], [-77.36024803719445, 34.562177688072595], [-77.36039379232366, 34.562331059307255], [-77.36046442649686, 34.562337792066884], [-77.36053339644167, 34.562403988277964], [-77.360522011835, 34.56254392719197], [-77.36039370549607, 34.56250003774877]], [[-77.34056181929503, 34.53334551484534], [-77.34053106388113, 34.533190816341815], [-77.34049799458735, 34.533163431625155], [-77.34049388155229, 34.533155579236556], [-77.34048099608162, 34.533127306973725], [-77.3404004290696, 34.53312721757834], [-77.34036155891243, 34.533183057853], [-77.34042075669343, 34.53321090651758], [-77.34038125760839, 34.53336628448707], [-77.34036575341102, 34.53342727289261], [-77.34044124376662, 34.53343674393169], [-77.34047380471686, 34.53343833782865], [-77.3406159670201, 34.53348055083548], [-77.34066966566826, 34.53345610223595], [-77.34068637394827, 34.53338115133004], [-77.34067218837829, 34.53334698232743]], [[-77.36776668378805, 34.52210598697416], [-77.36742005257118, 34.5223191455436], [-77.36732869986085, 34.52238957505375], [-77.36730951353051, 34.52244832249117], [-77.36729785526073, 34.522523323033084], [-77.36727376628184, 34.52257588672084], [-77.36728385862939, 34.52261611419379], [-77.36728847443965, 34.52269618059461], [-77.36740974876321, 34.522771002117324], [-77.36750741736631, 34.522847448037865], [-77.36771583007943, 34.522879428732985], [-77.36762558053559, 34.52299937921385], [-77.36779889441316, 34.5229175198281], [-77.36813982149056, 34.52281833350087], [-77.36818178432502, 34.52280469635272], [-77.3681963699865, 34.52269864686208], [-77.36821612011155, 34.522562512243006], [-77.36824141963567, 34.52233699903322], [-77.36827715105693, 34.522308890698575], [-77.36824481791386, 34.52228915110874], [-77.36820624350831, 34.52226548139162], [-77.36811307749718, 34.52214750025372], [-77.36795404479497, 34.52211062287388], [-77.36787401025254, 34.5220871087074]], [[-77.35246843433093, 34.6866937281887], [-77.35245468312414, 34.68677952617623], [-77.35242839186512, 34.68686027804873], [-77.35240811609485, 34.68690776592627], [-77.35247595742334, 34.687019534851245], [-77.35247624312497, 34.687020257462684], [-77.35247660809763, 34.687020516293856], [-77.35247999445723, 34.687019742378084], [-77.35275832071528, 34.6869507250021], [-77.3528037409242, 34.68692456976429], [-77.35309554812152, 34.68669152968417], [-77.35311285271754, 34.686626760302886], [-77.35309192941281, 34.68654669320332], [-77.35295197287668, 34.68646755255488], [-77.352952667835, 34.686456776852985], [-77.35292355792416, 34.6864589431158], [-77.35263705370329, 34.68646787723691], [-77.35257865105385, 34.68647230383506], [-77.35257266260687, 34.68651963528096]], [[-77.40440448975427, 34.5084200831278], [-77.40462441953035, 34.508397215108864], [-77.40482027264949, 34.50834459828314], [-77.40530281399232, 34.50822228159579], [-77.40541341139229, 34.50821047359804], [-77.4055459156206, 34.50811832907044], [-77.40578982549815, 34.50782287739157], [-77.40577460337295, 34.507381815657524], [-77.40543627781102, 34.50718760234183], [-77.40542028667117, 34.50716738084521], [-77.40539051062156, 34.50716142169285], [-77.40502473720025, 34.50698418938319], [-77.4046599882314, 34.5068068096189], [-77.40424187698974, 34.507070109215476], [-77.40386516526146, 34.50725465944188], [-77.40360530571586, 34.5074192469445], [-77.40375293536934, 34.50746501539395], [-77.4038572950869, 34.50760641551986], [-77.40395729777211, 34.50779308739209], [-77.40399061555787, 34.50785327722906], [-77.40407392076838, 34.50798164580575], [-77.40413040792627, 34.50807792661395], [-77.40416138584763, 34.50812136816073], [-77.4043902307764, 34.508285240313924]], [[-77.40212701151812, 34.50821415275541], [-77.401655236446, 34.508295225402485], [-77.40148658235225, 34.50833311130446], [-77.40126220308431, 34.50849211585034], [-77.40117830997761, 34.508559895644595], [-77.40098270841024, 34.508777309504666], [-77.40109770870328, 34.50899409516041], [-77.40111995828683, 34.50900232910944], [-77.40146940787935, 34.50909976449606], [-77.40169671827796, 34.509023130162035], [-77.4019461195529, 34.508933304541216], [-77.40226368461587, 34.5086776937603], [-77.40247205614594, 34.50856225005273], [-77.40251572200422, 34.50840253439724], [-77.40226968574464, 34.50840969687184]], [[-77.26724585143907, 34.59994033863197], [-77.267347944947, 34.59982221097654], [-77.2673109671387, 34.59964643269204], [-77.26759233532184, 34.59907572862221], [-77.26660937910114, 34.59902265588177], [-77.2661121078387, 34.599294301431215], [-77.26568771365721, 34.599691703712054], [-77.26580458636673, 34.59990216117208], [-77.26606058235186, 34.60038423382747], [-77.26702780435252, 34.600709074459814]], [[-77.35652979150865, 34.5612821671609], [-77.35645493288527, 34.561328048135145], [-77.35639694758554, 34.561301290222666], [-77.35645502225485, 34.56116904276441], [-77.3566235591353, 34.56060085675841], [-77.35681639085772, 34.56039180662623], [-77.35682640478512, 34.56036557465223], [-77.35684941503303, 34.56035173298128], [-77.3568512267681, 34.56038481941237], [-77.35685297294145, 34.56038654048865], [-77.35689588891239, 34.56075458618349], [-77.35724313927176, 34.560729601847385], [-77.35727601568786, 34.560750192595314], [-77.35739998307876, 34.56090148237391], [-77.3572430595728, 34.56087379382372], [-77.35702707009867, 34.56097786796619]], [[-77.39465569202304, 34.51115971761551], [-77.39479631997392, 34.51091881859331], [-77.3947993444136, 34.51086873123302], [-77.39466339544614, 34.51066893583125], [-77.39437223844283, 34.510599385165726], [-77.39427032876327, 34.5106629794388], [-77.39406479767845, 34.5107553342213], [-77.39400495860839, 34.51078222277614], [-77.39397536222872, 34.51079743829868], [-77.3937649719322, 34.51091381211761], [-77.39357798971912, 34.51101746671958], [-77.39340565381201, 34.51109530190371], [-77.39326521108688, 34.51116736651813], [-77.3931808297891, 34.51122795101668], [-77.39309182496356, 34.511263012258034], [-77.39301519432688, 34.511294077195856], [-77.39298175532736, 34.51135513399618], [-77.3928915716825, 34.51141433031948], [-77.3929798233893, 34.51144098906697], [-77.39307140606077, 34.51145347982629], [-77.39317574548318, 34.51145392041439], [-77.393345436821, 34.511487322336365], [-77.39356761151907, 34.51147881655862], [-77.39389902299762, 34.51147565328696], [-77.39395997323045, 34.51148167880723], [-77.39400318024175, 34.511471911906064], [-77.39435441606169, 34.51139198568198], [-77.39455721190112, 34.511299154611635]], [[-77.33527182267036, 34.53634358911725], [-77.33527481088288, 34.53636284217879], [-77.33527186395324, 34.536382362422316], [-77.33530227490529, 34.53639141486162], [-77.33534270498183, 34.53635307876787], [-77.33533838412463, 34.5363320392096], [-77.3353454339583, 34.53623027798304], [-77.33530618612086, 34.536222694983024], [-77.33526983971092, 34.536241148697144]], [[-77.38557755469998, 34.53499421328961], [-77.3855213430928, 34.53503856973482], [-77.38558005749854, 34.53501216852763], [-77.3855840436803, 34.534993277385595], [-77.38558050091112, 34.5349925313144]], [[-77.37065278272173, 34.51824019111874], [-77.37049580907109, 34.51817083047882], [-77.37036877288557, 34.51809023045711], [-77.37026491145461, 34.51803849911996], [-77.37015591027094, 34.51805311877375], [-77.37006831419232, 34.51805455658358], [-77.36997134905667, 34.51808748624093], [-77.3699507840585, 34.51815047119395], [-77.36996807133306, 34.51821006913313], [-77.37000942163681, 34.518297718012064], [-77.37011007824046, 34.51837234121807], [-77.37016330836158, 34.518422595678], [-77.37021653417169, 34.518479412677706], [-77.3702539538442, 34.51851970577849], [-77.3702954190066, 34.518563962043906], [-77.37032381482484, 34.51858636506858], [-77.37044729407874, 34.51864674180018], [-77.37049447087769, 34.518654641597045], [-77.37064237693544, 34.518697259226926], [-77.37080467646322, 34.51866115666051], [-77.37086500019552, 34.518646523714025], [-77.37089078565185, 34.518595955441825], [-77.37091437303371, 34.518501251702226], [-77.37091101689936, 34.51842056118248], [-77.3708729521278, 34.51836805916814], [-77.37074242778742, 34.51828120563203]], [[-77.37379292653016, 34.51710702677365], [-77.37380368257857, 34.51711445657691], [-77.37381792459668, 34.51712120114291], [-77.3741351052558, 34.517346298345274], [-77.37437321174755, 34.517373357444356], [-77.37459681285404, 34.517386491181306], [-77.37484864456052, 34.5172887791592], [-77.37505429958185, 34.517208057365195], [-77.37538821758415, 34.51710084434186], [-77.37563726857529, 34.51699501395959], [-77.37578462509708, 34.516926869218345], [-77.37592402557742, 34.516799804582234], [-77.37582212606826, 34.516588264703856], [-77.37580548486395, 34.51656418956096], [-77.37544092584012, 34.516379794155554], [-77.37540502630937, 34.516360708224646], [-77.37535865069971, 34.516362753434024], [-77.3750122237148, 34.51637605725305], [-77.37483094752977, 34.51646773123567], [-77.37469225907755, 34.516535202160064], [-77.37461548493832, 34.51656464461628], [-77.37443252702015, 34.51663826008121], [-77.37413640352658, 34.51676143355225], [-77.37381869402495, 34.51708734893256], [-77.37379984911365, 34.517094372388975]], [[-77.32906538158551, 34.53118330465409], [-77.32908210883274, 34.531132833573864], [-77.32913152697506, 34.531117968335195], [-77.32924850254301, 34.531044780661794], [-77.32953926179863, 34.53099947251171], [-77.32963207773649, 34.53086489075051], [-77.32985599267114, 34.53077676442597], [-77.32993753733834, 34.53075253711501], [-77.32994573725024, 34.5307638624305], [-77.32993717423899, 34.53076815539942], [-77.32974808752272, 34.53092138496753], [-77.329544876542, 34.53106630653412], [-77.3295374217212, 34.53107860539126], [-77.32916043409159, 34.53113204557136], [-77.32914306746252, 34.531156819387625]], [[-77.36592810002414, 34.52485079859908], [-77.36589007519876, 34.52491820133491], [-77.36589317154309, 34.52503513701506], [-77.36592470656512, 34.525096113652296], [-77.36590061020007, 34.52517168928216], [-77.36592815795, 34.52525004018344], [-77.36599568793034, 34.52533071307508], [-77.36606295162602, 34.525389383038316], [-77.36617101187237, 34.52545662678578], [-77.36626996844163, 34.52547404841639], [-77.36636617891294, 34.525504072688534], [-77.36650038398683, 34.52546354600019], [-77.36656650638498, 34.52532531339075], [-77.3666059079276, 34.52524279343937], [-77.36659523786561, 34.52522779672496], [-77.36664329646642, 34.52511499328327], [-77.3666650372426, 34.5250469468305], [-77.36672087942266, 34.52498140165359], [-77.36668489176061, 34.524918530308724], [-77.36657743402166, 34.52484628810041], [-77.36652239688846, 34.5248001599132], [-77.36646444266088, 34.52477352318533], [-77.36634900808328, 34.52469003680199], [-77.36589283877375, 34.524671184531975]], [[-77.34232808045822, 34.53505924690094], [-77.34263573676913, 34.53491376807934], [-77.34279614587133, 34.534863757202864], [-77.34280865051463, 34.534796399283636], [-77.34281294579158, 34.534788952703394], [-77.34319479482335, 34.53459956646553], [-77.34331634150757, 34.53454675376025], [-77.34346842636268, 34.53452506533019], [-77.34358908626884, 34.53452403727208], [-77.34360843766856, 34.534552094027525], [-77.34362126002742, 34.534650768632176], [-77.34361892099255, 34.53467299536762], [-77.34361162084497, 34.534690496137046], [-77.3435924875796, 34.53473800332666], [-77.34358372749001, 34.53475618733175], [-77.34356338969158, 34.534791214874986], [-77.34352068234985, 34.53480953908173], [-77.34345685597128, 34.53486355195223], [-77.34326832213486, 34.534917817635844], [-77.3431879940583, 34.53489412569026], [-77.34309994130084, 34.534938201090014], [-77.34285127712943, 34.53502825701151], [-77.34281651905155, 34.535259668741205], [-77.3427950695091, 34.535281162614545], [-77.34279532012009, 34.53528670281527], [-77.3428223491347, 34.53539964745691], [-77.3427831760128, 34.53542540339409], [-77.34264704132823, 34.53546291650636], [-77.34244804636083, 34.53553846577533], [-77.3423876250996, 34.53555523878289], [-77.34223495801297, 34.53551070850452], [-77.34217997253032, 34.53549995437384], [-77.34217385932354, 34.53548096511515], [-77.34220301629769, 34.535366338374374], [-77.34236163870314, 34.53512115912069]], [[-77.35715992838078, 34.543768223750234], [-77.35720562913161, 34.543680026431375], [-77.35727748585795, 34.543479285585924], [-77.35712597284626, 34.5433474301465], [-77.3570069132038, 34.54351824233927], [-77.35705681599421, 34.54371805017831], [-77.35705907361115, 34.54379093650226]], [[-77.33782164365678, 34.53035070425049], [-77.33794566957765, 34.530441660697605], [-77.3377931951381, 34.53053621891474], [-77.33775921319356, 34.53039793901003], [-77.33773793440002, 34.53037780836242], [-77.33775464573286, 34.530348653094876]], [[-77.34385219415496, 34.55330103702482], [-77.34394118978575, 34.553290665025784], [-77.34398332665548, 34.553252556851916], [-77.34403245208426, 34.55321976453876], [-77.3441963103933, 34.553107818075986], [-77.34419962512767, 34.55303820521304], [-77.34395502147548, 34.55299038917903], [-77.3439479373397, 34.552998195684424], [-77.3436791806613, 34.553104536336335], [-77.34384845973884, 34.553246232633086]], [[-77.35460709290902, 34.554199677283606], [-77.35461741381356, 34.55414479504519], [-77.35468040137175, 34.55403892100625], [-77.35470725660062, 34.554000036493825], [-77.35472277989244, 34.553981557365795], [-77.35477486654355, 34.55390874443063], [-77.35479004324505, 34.55387512349103], [-77.35482392962606, 34.553851187012754], [-77.35486423848974, 34.553864443352815], [-77.35487853398993, 34.553889002448955], [-77.35489412917161, 34.55396677154919], [-77.35489883593702, 34.55398187439911], [-77.35490339670716, 34.5539908748516], [-77.35491819951775, 34.55402072039532], [-77.35495001169076, 34.55407628818516], [-77.35495272361335, 34.55409652865103], [-77.35497650456983, 34.55413103854309], [-77.35500451945477, 34.55421148400988], [-77.35498053785788, 34.55429456044659], [-77.35501619533682, 34.554332214458555], [-77.3549083314166, 34.55445090784787], [-77.35475942067322, 34.554369176194925], [-77.35461385145751, 34.55433064576481], [-77.35458330124342, 34.55427211654187]], [[-77.39469930867955, 34.57658533437834], [-77.3946746339301, 34.57657856316346], [-77.39465220996246, 34.57657829544779], [-77.39464676318372, 34.576592914346755], [-77.39464099190984, 34.57661966411055], [-77.39459002876043, 34.57702566991232], [-77.39453641538712, 34.5771719551246], [-77.39466499420675, 34.5771488205918], [-77.39483489719439, 34.57699034642705], [-77.39501372401058, 34.576915739613156], [-77.39498090700474, 34.57662891236655]], [[-77.34486883631081, 34.54325106106042], [-77.34479422596904, 34.54331739692483], [-77.34478812042128, 34.54342175592256], [-77.34475257129364, 34.54356820949474], [-77.34492162049818, 34.54377353686584], [-77.34492033061642, 34.543788892855474], [-77.34491730346124, 34.54380671370702], [-77.34494492493202, 34.543817879418626], [-77.3449671754646, 34.543795709601326], [-77.34496940379299, 34.54378183239264], [-77.34536164279837, 34.543490922722846], [-77.34536907563582, 34.543464903609724], [-77.34540777460792, 34.543229121223604], [-77.345351639946, 34.54320533789411], [-77.34507886056196, 34.543201782622305], [-77.3449592022202, 34.54319882546842]], [[-77.37252621245236, 34.518024104031404], [-77.37252649638859, 34.51808158710372], [-77.37261845356443, 34.518092791679855], [-77.37278845720905, 34.518124627788346], [-77.37284072175541, 34.51811778131468], [-77.37301203107194, 34.518043763995394], [-77.37314388217033, 34.51793507124128], [-77.37314233581428, 34.51776783953656], [-77.37320987512982, 34.51768072986509], [-77.37311689607321, 34.517634519794456], [-77.37302178625504, 34.51761474429887], [-77.37288605566519, 34.51756791596591], [-77.372747412608, 34.517575675179444], [-77.37262951297637, 34.51760651413792], [-77.37246797264984, 34.517787670490584], [-77.37246793213318, 34.51788453046768], [-77.3724600534201, 34.51791122620097], [-77.3724923831002, 34.51794828395768]], [[-77.35931080741038, 34.54703507835699], [-77.3593250874894, 34.54705705781423], [-77.35928425872085, 34.54705516995638], [-77.35928103609598, 34.547035624836234], [-77.35927143941208, 34.546986949593006], [-77.35926685104448, 34.546947654564875], [-77.35926147988519, 34.54690192528095], [-77.35932331660459, 34.5469049223322], [-77.35932555021202, 34.54693309843702], [-77.35932007709651, 34.54697994612393]], [[-77.33673519048293, 34.53482040637297], [-77.33672568961869, 34.53479984528731], [-77.33669876220125, 34.53480267038607], [-77.33669808097767, 34.53482073244799]], [[-77.34967584098827, 34.55279373869017], [-77.3496456553037, 34.55280116183229], [-77.34960358048511, 34.55281150865338], [-77.34954694451149, 34.552825194030454], [-77.34952839680831, 34.55279624100908], [-77.34951984254027, 34.55275418443287], [-77.34951630176722, 34.55273677630329], [-77.34952250682036, 34.552719124084916], [-77.34952862249858, 34.55270440071216], [-77.34955039243003, 34.552675310616856], [-77.34955669023492, 34.552673662351076], [-77.34961655505987, 34.55268101275194], [-77.34964800788657, 34.552698888189404], [-77.3496792797868, 34.55271332317419], [-77.34966961576252, 34.552761547018754], [-77.34967264709321, 34.55277548286355]], [[-77.35928274242822, 34.54666390137421], [-77.35930781860512, 34.546646626579324], [-77.35931081008157, 34.54667300860201], [-77.35931122467154, 34.54667775934672], [-77.35929096205004, 34.54668802930829]], [[-77.35948905954963, 34.54750939044707], [-77.3594510225794, 34.547532412665646], [-77.35946484055854, 34.547497606931564], [-77.35947258278725, 34.54744763415758], [-77.35945133845392, 34.547411484195266], [-77.35942827440654, 34.54735563160875], [-77.35949423939925, 34.54737901751085], [-77.35949742245256, 34.54738927497848], [-77.35948892779221, 34.547445280583815], [-77.35949377790104, 34.54744959393791], [-77.35949648628198, 34.54749800657608], [-77.35948988468488, 34.54750634878041]], [[-77.34292358084491, 34.52588695450094], [-77.34291677279472, 34.5259067485633], [-77.34284206950755, 34.52594863501154], [-77.34286524207243, 34.52588166006586]], [[-77.35929890018517, 34.54660967062286], [-77.35923008579346, 34.546613410421784], [-77.35923760389252, 34.54657984701706], [-77.3592801951381, 34.546575488358506]], [[-77.34833398700891, 34.55115017940437], [-77.34833853324572, 34.55114943131305], [-77.34833992923083, 34.55114640637464], [-77.34834412031566, 34.551144388144685], [-77.34834341140044, 34.551140172375256], [-77.34834182994561, 34.551138482230016], [-77.34834213941409, 34.551135662106034], [-77.34834469572337, 34.55113041921761], [-77.34833917458042, 34.551128293124734], [-77.34833457871224, 34.55112447469072], [-77.34832556523267, 34.55112759646033], [-77.3483251338612, 34.55113323407019], [-77.34832708060931, 34.55113744323226], [-77.34832726383304, 34.5511405782198], [-77.34833039941614, 34.551145473073966], [-77.34833120440396, 34.55114766183291], [-77.3483323736087, 34.55114852339411]], [[-77.33875138499296, 34.55242939620653], [-77.33875065064515, 34.55243138114174], [-77.33875396613882, 34.55243065254414], [-77.33875416813038, 34.55242872041298]]]]}, "type": "Feature", "id": "demo8", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19031456423028, 34.644242465966386], [-77.19579313336114, 34.644867969925684], [-77.19922509637607, 34.64595892197913], [-77.20174566315922, 34.64644195046827], [-77.2064995025654, 34.64876032771997], [-77.20693013864486, 34.64895695019093], [-77.20717109531898, 34.649055743361714], [-77.20801839423129, 34.64947139331709], [-77.2094851188515, 34.649471407843805], [-77.21040126854231, 34.649342077984485], [-77.21354872164872, 34.64942192777886], [-77.21373770527407, 34.64941873638309], [-77.21389244066783, 34.64943563430496], [-77.21539977174766, 34.64946916863252], [-77.21541127974143, 34.649471416050744], [-77.21541130398025, 34.649464353106275], [-77.21540867517906, 34.649451603741596], [-77.21417794273995, 34.64918673118936], [-77.21536079187301, 34.64811140107318], [-77.21514474131347, 34.64755784604583], [-77.21485183938088, 34.64722079392992], [-77.21298226356478, 34.64669489587402], [-77.21256249278717, 34.64546841142918], [-77.21241914089262, 34.643966652044796], [-77.21278236966738, 34.64360035561435], [-77.21234912663044, 34.642802285664885], [-77.21169900452355, 34.641629308669565], [-77.21168958213337, 34.6413006286873], [-77.2116781313399, 34.640165187216546], [-77.21167805908188, 34.63836620071192], [-77.21105688995368, 34.63780761556779], [-77.21452185955086, 34.634554707499035], [-77.21478693157978, 34.63444976521246], [-77.2148492676433, 34.63433631038144], [-77.2150058429586, 34.63418339904141], [-77.21751137844407, 34.63077562424457], [-77.22174198798018, 34.630116096651534], [-77.22418014686573, 34.62881339898034], [-77.22602001527028, 34.62767637033778], [-77.22773970560704, 34.626482823391164], [-77.22849783743501, 34.62598644651425], [-77.22871933227447, 34.625802558298794], [-77.22939639786699, 34.62517733478553], [-77.23042952484724, 34.62425338856491], [-77.23158826339086, 34.62309465559353], [-77.23459736114216, 34.620978667472684], [-77.23475753291639, 34.62082384240837], [-77.23486873119352, 34.62075291034196], [-77.23508195833465, 34.620613489318686], [-77.23845242204641, 34.61868089998136], [-77.24003567254906, 34.61749347934612], [-77.24006425401458, 34.617471315021945], [-77.24008155818811, 34.617457278909015], [-77.24009461906998, 34.617377067884405], [-77.24058824250243, 34.615798146465245], [-77.24053421169616, 34.615622943652326], [-77.23860168906417, 34.613663191071424], [-77.23856277720752, 34.61361699765933], [-77.2385074165948, 34.6135778118515], [-77.23821969975391, 34.61321471445439], [-77.23887710982413, 34.613119259010645], [-77.24219206205805, 34.6114886678072], [-77.24125253050323, 34.61002334707714], [-77.24289192601294, 34.60948164200941], [-77.24294823055278, 34.60903685024018], [-77.24331455586929, 34.60830043293892], [-77.24349108392406, 34.60809891866248], [-77.24372412209445, 34.60759232980741], [-77.24374859858776, 34.60739193344756], [-77.2437555283163, 34.60726517524848], [-77.24391333839694, 34.60693356409336], [-77.24376276625672, 34.6068010010953], [-77.2432955291644, 34.606702557362574], [-77.2432853605019, 34.606412738913214], [-77.24316536148476, 34.60631534220565], [-77.24275802129785, 34.606168947699395], [-77.24273044087766, 34.60589766608635], [-77.24263806055797, 34.60569122265784], [-77.24259973151675, 34.60549341714625], [-77.2422790698592, 34.605390749446485], [-77.2422052845232, 34.60492667961873], [-77.24220043889949, 34.60491320423199], [-77.24275244737122, 34.60475598351683], [-77.24275705982872, 34.60469976494397], [-77.2427380376949, 34.60466091760645], [-77.24261791110557, 34.604636318946554], [-77.24219737153746, 34.6048960398644], [-77.24217733296227, 34.60490181771886], [-77.2421537913315, 34.60490952825456], [-77.24215203455093, 34.60492619710154], [-77.24158921103717, 34.6053363865379], [-77.24131376669632, 34.60544846305919], [-77.2410283727945, 34.60553941097788], [-77.24049708424974, 34.605545540075916], [-77.23964440428085, 34.60518310855096], [-77.24082274088076, 34.6050117046717], [-77.24096567042777, 34.60481589576365], [-77.24123271058556, 34.604718981354374], [-77.24124984269524, 34.60452906934876], [-77.24123352686928, 34.60436565530625], [-77.24119526065176, 34.6040282839407], [-77.24121454495472, 34.603807511323616], [-77.24134023432993, 34.6034313645542], [-77.24140749099864, 34.60312499181216], [-77.24143796663144, 34.602989129616674], [-77.24133489331118, 34.602959593013296], [-77.24142700515058, 34.60291965030801], [-77.2414039239911, 34.602493681002144], [-77.24171377442912, 34.602151133779664], [-77.24213301298161, 34.601608438833004], [-77.24253473480898, 34.601275453771585], [-77.24307676627015, 34.60090624741607], [-77.24321372043241, 34.60075090345629], [-77.24334027853504, 34.60067723463643], [-77.24352922349715, 34.60059957374836], [-77.24394724730487, 34.60058044432948], [-77.2445581688255, 34.600445795640496], [-77.24536526605024, 34.60030401047943], [-77.24599103063875, 34.60002702392191], [-77.246196405638, 34.59973859134169], [-77.24629405281004, 34.5993603790373], [-77.246462955492, 34.59912150659586], [-77.24656660871969, 34.5988652370491], [-77.24682515492974, 34.59851807429297], [-77.2469135560823, 34.59821430553261], [-77.24721215897102, 34.59788881003218], [-77.24738637035452, 34.59770256161717], [-77.24754402624492, 34.59732127313276], [-77.24802381516422, 34.596954858583636], [-77.24888960115577, 34.59667286865798], [-77.24924774931682, 34.59672881193442], [-77.2501564784637, 34.59678662162652], [-77.2505105918485, 34.596801925106746], [-77.25175403238852, 34.596923340880736], [-77.25171256894481, 34.597649550064794], [-77.25173783475532, 34.59770898027406], [-77.25231747952326, 34.59818199550538], [-77.25278967353121, 34.59867703495975], [-77.25287059615684, 34.5988027625638], [-77.2530466564725, 34.598792894029806], [-77.25395789556009, 34.598768992999624], [-77.25449399961869, 34.59876547066356], [-77.2545699911892, 34.59877692438478], [-77.25458727170557, 34.59880182819591], [-77.25460147626495, 34.59881965168641], [-77.25497862868055, 34.59902270839611], [-77.25506741134373, 34.59927541314937], [-77.25507984120574, 34.59932864337266], [-77.25462669098954, 34.59949793571918], [-77.25456956786704, 34.59948996591386], [-77.25415049948599, 34.599605843613176], [-77.25390779229805, 34.599558730297694], [-77.25375361468345, 34.59969559920072], [-77.25396843016388, 34.599965607415896], [-77.25399085657466, 34.60049473024507], [-77.25407688050271, 34.600663728197276], [-77.25480032761305, 34.601653994148336], [-77.25480423987193, 34.601659824849044], [-77.2548076578014, 34.60166393026035], [-77.25607981872776, 34.60245798828136], [-77.25626565339451, 34.602582300307276], [-77.25668714444396, 34.60275451208413], [-77.2574411152944, 34.60310036258896], [-77.25828939568368, 34.60329422266079], [-77.25956718222118, 34.60327678672509], [-77.25983943111673, 34.60300250659022], [-77.26004993848181, 34.60263503129478], [-77.26038202570751, 34.602102509010805], [-77.26051100604663, 34.6014870205333], [-77.2612702882009, 34.60070842797181], [-77.2604227385239, 34.60054061261452], [-77.25990010873583, 34.60048667005806], [-77.25960607434077, 34.6004882669545], [-77.25910138545446, 34.600116420530604], [-77.25902195045275, 34.60008066674142], [-77.25905197937092, 34.59991701575644], [-77.25908912525169, 34.5996441171913], [-77.25934936127813, 34.59922325119296], [-77.25932421333108, 34.59919127197089], [-77.25960614551012, 34.59882182719759], [-77.26011169058705, 34.59850296013854], [-77.26010888778765, 34.59831032040882], [-77.26005777088825, 34.59822316699362], [-77.26010075566688, 34.597844314652036], [-77.26018315105863, 34.597373485698355], [-77.26004166545607, 34.59675954794192], [-77.25978721327257, 34.596399660035715], [-77.25926687108594, 34.59615977154787], [-77.25812527005036, 34.59600750477297], [-77.25777296917494, 34.59577968113277], [-77.2575410989785, 34.595491429766625], [-77.25742319762404, 34.59527098352801], [-77.25713387167887, 34.59490909265716], [-77.25714394613584, 34.59430632853149], [-77.25708429521731, 34.59380828024446], [-77.25692989155792, 34.59351584831307], [-77.25639103205117, 34.59330439349714], [-77.25592532383652, 34.593157183854615], [-77.25576949409754, 34.59307432389849], [-77.25511604703574, 34.59272538673946], [-77.25528609599777, 34.59227474501154], [-77.25539108955553, 34.59188760025374], [-77.25542272093496, 34.591814159031536], [-77.25549722963083, 34.59177022734806], [-77.25546224944499, 34.59149355190812], [-77.25525819443305, 34.591329866383354], [-77.25536302652749, 34.59116329913534], [-77.25549228932132, 34.590451258254845], [-77.25567548080232, 34.59042002639268], [-77.25635607046165, 34.58990492796452], [-77.2566813494472, 34.58955651015673], [-77.25729206476605, 34.58897134790976], [-77.25768478516909, 34.58869279899735], [-77.25744108337514, 34.588240820813354], [-77.25740837930286, 34.58819970693333], [-77.25740015751077, 34.5881960625931], [-77.25739977190784, 34.58818622913983], [-77.25733339936257, 34.587722464171314], [-77.25772510439256, 34.58733956474125], [-77.25776480216277, 34.58721418699541], [-77.2582837614581, 34.58685457108703], [-77.25862280482454, 34.58666274928442], [-77.25886524514569, 34.58642899054001], [-77.2590056310618, 34.586345965844075], [-77.25912399270679, 34.586080888898046], [-77.25909035842831, 34.5859753641538], [-77.25909652029833, 34.585769536879766], [-77.25963108158558, 34.58544228182846], [-77.25992620529794, 34.585192927362115], [-77.26004496375421, 34.58510779667348], [-77.2601037259328, 34.58497915861723], [-77.26025589972946, 34.584207258490956], [-77.26025092387376, 34.584189211010646], [-77.26026294790076, 34.58418226992344], [-77.26026464414286, 34.5841794171686], [-77.26027850519144, 34.584162575630415], [-77.2606449793081, 34.58374098823008], [-77.26057950100251, 34.583698743150464], [-77.26079034885126, 34.58333246503073], [-77.26082373347309, 34.58328371316993], [-77.26102907272991, 34.58316295794208], [-77.26120518413487, 34.58304416376371], [-77.2613682448127, 34.58303592984238], [-77.26167698718359, 34.58306451655652], [-77.26195163412876, 34.583050793724524], [-77.26233819868155, 34.5829315198837], [-77.26279942676344, 34.58251206094715], [-77.26281059415246, 34.582500244799796], [-77.26282096774813, 34.582498158825956], [-77.26282591884974, 34.58248998070923], [-77.26350480825909, 34.581803180118044], [-77.26350242094273, 34.58160908578341], [-77.26381916473562, 34.58138312809334], [-77.26405711189236, 34.581181378078256], [-77.26418436858248, 34.58109309113657], [-77.26441862024441, 34.58097752228652], [-77.26466587435493, 34.580757921452495], [-77.2648436636439, 34.580364985788414], [-77.26511334396912, 34.580163538572435], [-77.26545537238151, 34.57987733923279], [-77.26559545333217, 34.579719146658924], [-77.26578514735498, 34.57943193742866], [-77.2659084555013, 34.57934029706823], [-77.26600980480518, 34.579092904687556], [-77.26603952476353, 34.578980605736625], [-77.26615387210491, 34.57890134141336], [-77.26641703246585, 34.578693101177294], [-77.26682924257709, 34.578571371392364], [-77.26708886341405, 34.5784184438035], [-77.2674178475141, 34.57838089654162], [-77.26790651947272, 34.578382396858075], [-77.26829089323398, 34.578321296346196], [-77.26840697473739, 34.578276267746425], [-77.26877176852723, 34.578252771688284], [-77.26925417197836, 34.5780832718231], [-77.2695681869633, 34.57799455079142], [-77.26998441567925, 34.57760397281089], [-77.26982422490444, 34.57739284084652], [-77.27016461470053, 34.577210574424136], [-77.27054052973082, 34.5772063904973], [-77.270752034422, 34.57699444307783], [-77.2708929418204, 34.576543903800335], [-77.27092759004852, 34.57653690915497], [-77.27097246488022, 34.57649895863802], [-77.27138032265589, 34.57562982881056], [-77.27136902942995, 34.57561553250577], [-77.27180414511325, 34.57519180803989], [-77.27164202191695, 34.57502828751255], [-77.27159032797996, 34.57479776661007], [-77.27150071080685, 34.57469662490934], [-77.27160486460815, 34.574548294940065], [-77.27162083669388, 34.57447040094995], [-77.2720251079217, 34.5742707420882], [-77.27203116542188, 34.57427022857599], [-77.27204028718738, 34.57426770326281], [-77.27206842363398, 34.57425121408202], [-77.27204058508306, 34.57424013584346], [-77.27214576209239, 34.57385480951542], [-77.27218344749866, 34.57380762250872], [-77.27218957223953, 34.57375392519001], [-77.27212471739199, 34.57356733997783], [-77.27222257678801, 34.573458600926614], [-77.27231145549155, 34.57334635079184], [-77.27240401204897, 34.57328745380152], [-77.27255399655836, 34.57322485057496], [-77.27283965041964, 34.57322739880026], [-77.27310959131997, 34.57325775386779], [-77.27344815322246, 34.573123348435956], [-77.27379112208516, 34.57323832690156], [-77.27402364250669, 34.5736520427681], [-77.27409735176083, 34.57385844843614], [-77.27419346226347, 34.573965587351196], [-77.27450550018656, 34.57407295129387], [-77.27447952435553, 34.57441729251131], [-77.2744924045091, 34.57444528998929], [-77.27449109741019, 34.57448628920621], [-77.27421971430884, 34.57491031084909], [-77.27392900072341, 34.57539124590531], [-77.27477760129187, 34.57549463351831], [-77.27526428428592, 34.57593504889313], [-77.2757444635782, 34.57618074695793], [-77.2759691625113, 34.57647186286814], [-77.27628707355075, 34.57671230052043], [-77.27653883413652, 34.57697784140642], [-77.27697304197908, 34.57719013723387], [-77.27719791350022, 34.57737558381473], [-77.27819131714837, 34.57805030183564], [-77.27828997540936, 34.57816641608923], [-77.27841840481248, 34.57829567962806], [-77.27881946918174, 34.578702884095634], [-77.27938004026937, 34.579086315496575], [-77.27954623433148, 34.579165428863725], [-77.27962024978444, 34.57925269411594], [-77.28015468440569, 34.579672309014725], [-77.28068147380455, 34.580131164346625], [-77.28076423795176, 34.58017877368255], [-77.2807876419582, 34.58027789235706], [-77.28091951743465, 34.581092506085625], [-77.2808445301204, 34.58161844614021], [-77.28054228473472, 34.58249524189715], [-77.2802027624923, 34.58292152809396], [-77.27999140176394, 34.58340787742714], [-77.2787831905659, 34.58618823230358], [-77.27825242575102, 34.58653898211948], [-77.27830991381367, 34.58697743382618], [-77.27847612408442, 34.58818345584739], [-77.27945400543842, 34.587551671946976], [-77.28015302986641, 34.58744714753394], [-77.2820365012713, 34.58766802339906], [-77.2836453672461, 34.587131695169084], [-77.28444349398407, 34.586907073044635], [-77.28503236796612, 34.58666935887463], [-77.28596397690953, 34.585702367766224], [-77.28640028857558, 34.585278019663974], [-77.28575800402442, 34.58295297852838], [-77.28543335521513, 34.582399223807656], [-77.28471298392655, 34.58185862035861], [-77.28419082895935, 34.58146676573935], [-77.28353112937907, 34.58097167269206], [-77.28320718323383, 34.58072755078562], [-77.28244060312556, 34.58034270709244], [-77.28099115742278, 34.580093739520905], [-77.2809448607201, 34.57996693433428], [-77.28048977077077, 34.57954674262834], [-77.28084462562802, 34.579201322157836], [-77.28067796341092, 34.57882774815031], [-77.28064376934907, 34.57875415358884], [-77.28060397190339, 34.57871109986446], [-77.2805780124004, 34.578584353945956], [-77.28039418952693, 34.57822329949217], [-77.28031283867038, 34.57814328237946], [-77.28021522789378, 34.5780759200797], [-77.27987238432526, 34.577573454023856], [-77.27905161040772, 34.57717521349255], [-77.27902828681074, 34.5771548834001], [-77.27901608087377, 34.577113598200675], [-77.27875866200964, 34.57652104059055], [-77.27875122096273, 34.57620896560335], [-77.27869533677045, 34.5760809789786], [-77.27862421857274, 34.575836544933054], [-77.27858618659926, 34.57572467514657], [-77.27852016294504, 34.57544041325137], [-77.27852546654451, 34.57524857690627], [-77.2784667924836, 34.57516066062006], [-77.27865522252316, 34.574787440933605], [-77.27868808638073, 34.57442833194955], [-77.27867889011448, 34.5743463066786], [-77.27865775818105, 34.57431631185717], [-77.27865802709078, 34.57424874600436], [-77.27846969863442, 34.57383021194477], [-77.2784916931524, 34.57368157880627], [-77.27831773209104, 34.57349386514595], [-77.27803014037855, 34.57348710064798], [-77.27788476560083, 34.57351672876971], [-77.27776726655966, 34.573456686796646], [-77.27754002465291, 34.57336509526762], [-77.27741909977023, 34.573348636681], [-77.27743881902283, 34.57327790744801], [-77.27747055289217, 34.57319284561167], [-77.2774163043424, 34.57304047438136], [-77.27743089589853, 34.5729767808957], [-77.27729004408906, 34.57279489067882], [-77.27736653842486, 34.5726334602476], [-77.2767620108182, 34.57228207785468], [-77.27663652355818, 34.572172143417234], [-77.27694137377445, 34.571408006891154], [-77.27705507119788, 34.57136244221097], [-77.27709463836408, 34.57126560638547], [-77.27741013077879, 34.570510569744656], [-77.27760990878072, 34.570463371013204], [-77.27748348632291, 34.57038502185718], [-77.27770075658916, 34.57011187194219], [-77.2782279904332, 34.57004059548546], [-77.27830334912447, 34.56999058973866], [-77.27905425074854, 34.56963416776353], [-77.27919217299491, 34.5694667052872], [-77.27953061205446, 34.56942787170425], [-77.28004894119918, 34.56891432103096], [-77.28006570626451, 34.56877095546351], [-77.28023857051136, 34.56861766869733], [-77.28039325119731, 34.56832535232002], [-77.28053332204149, 34.568030807949356], [-77.28073474623758, 34.567880842950366], [-77.2808912978588, 34.56763816162777], [-77.28089604566918, 34.56742218438754], [-77.28109633816324, 34.567217226256815], [-77.28238373925583, 34.56706768449271], [-77.28239320624328, 34.56705620247309], [-77.28197031096084, 34.5664988778332], [-77.28187441416071, 34.56645862281805], [-77.2817562259195, 34.56607575406031], [-77.28183479198682, 34.56590254817139], [-77.28226713357816, 34.56568173553128], [-77.28231415645313, 34.56567170369708], [-77.28331136417656, 34.56528308395632], [-77.28344571040529, 34.565363692961114], [-77.28355093880852, 34.565274025745225], [-77.28369201388993, 34.56511868357385], [-77.28431690898005, 34.56486283965131], [-77.28434217077826, 34.564846638491595], [-77.28438638683238, 34.564823485135285], [-77.28511742443051, 34.56445435992353], [-77.28540878461638, 34.56428737956124], [-77.28561875590049, 34.564240529858054], [-77.28691479679304, 34.56369121339375], [-77.28704648684771, 34.56371421506227], [-77.28712140879183, 34.563627280613716], [-77.28786487310352, 34.56344683523224], [-77.28829842743231, 34.563201151228924], [-77.28868885404225, 34.56294344484608], [-77.28908253585001, 34.56279680772539], [-77.29033348549699, 34.56207583815231], [-77.2907289174609, 34.56185475347634], [-77.29161827809355, 34.561541047648205], [-77.29191966859725, 34.56142497173136], [-77.29236627146169, 34.56134275336446], [-77.29302260406246, 34.561231332165114], [-77.29350356677489, 34.56086952635438], [-77.29406298858024, 34.560744304235094], [-77.2942956422663, 34.56036403142666], [-77.2947938558411, 34.560106486423734], [-77.29509422469991, 34.560027345445576], [-77.29560302006554, 34.55986176008837], [-77.29588610635223, 34.55975152717683], [-77.2964865502988, 34.560049777613145], [-77.29642675372841, 34.56020424055544], [-77.29640992495854, 34.56055037839268], [-77.29634194588078, 34.56086065453867], [-77.29577825905494, 34.56113059257538], [-77.29580780281715, 34.56159431364263], [-77.29583305095562, 34.56161790972906], [-77.29584179090251, 34.561625804574966], [-77.29613428824442, 34.561872759565425], [-77.2963238470784, 34.56184570292456], [-77.29645945532152, 34.56162702642403], [-77.2959336971885, 34.56159790803295], [-77.29663279957703, 34.56138742994172], [-77.29687877757998, 34.56112216981035], [-77.29702383614294, 34.560951924104785], [-77.29739907950331, 34.560434424179846], [-77.29738393642697, 34.56041065800195], [-77.29742924709998, 34.56039646752242], [-77.29744293874566, 34.559918774852086], [-77.29740402731719, 34.55991816600013], [-77.29745341390068, 34.55989571005747], [-77.29795095720337, 34.55965675591601], [-77.29824637579402, 34.55957371559963], [-77.29908694105808, 34.559676730922035], [-77.29946534487314, 34.55983783987783], [-77.29980446171574, 34.56010861985907], [-77.3005172465401, 34.560450742244754], [-77.29999424221208, 34.56065209116794], [-77.299778107103, 34.56122548477694], [-77.29956735398632, 34.56143799128343], [-77.29955530184766, 34.561567981340936], [-77.29971794627394, 34.561576981783006], [-77.29976737319409, 34.561680371829915], [-77.30002609786665, 34.56230911791176], [-77.30035986357788, 34.56243177023502], [-77.30015183442755, 34.562716535918454], [-77.30011381817822, 34.56295668487697], [-77.29972920176387, 34.56329802994116], [-77.29953486481276, 34.563409854076184], [-77.29934864206777, 34.563556075405785], [-77.29893569078601, 34.56412298270848], [-77.29870041445136, 34.56424475272731], [-77.29881583391966, 34.56448155697487], [-77.29847714401987, 34.56488610350873], [-77.29814620417012, 34.56536446017314], [-77.29809648716984, 34.56538024311536], [-77.29806712523525, 34.565438006379], [-77.2976048441816, 34.56577057243332], [-77.29740566444937, 34.56632954441376], [-77.29738989984452, 34.566384195468416], [-77.29739356477793, 34.56642314883869], [-77.29750188633787, 34.56706010445403], [-77.29750763441865, 34.56721634808841], [-77.29750736118183, 34.567379789204985], [-77.29747888796025, 34.567936032876446], [-77.29748527743425, 34.568068596338826], [-77.29750552647418, 34.56822827209782], [-77.29763505261575, 34.56859350916981], [-77.29796039081504, 34.56884948443509], [-77.29789835020219, 34.569120359803705], [-77.29797388675965, 34.569696590182105], [-77.2981405276127, 34.56988315208932], [-77.29835378810733, 34.569642094002745], [-77.2984416074557, 34.56910381317931], [-77.29851874256191, 34.56876938754745], [-77.2986744733998, 34.568174023313865], [-77.29869836882963, 34.56789457854381], [-77.2987762632476, 34.56771644870412], [-77.29869210615513, 34.567046432568155], [-77.2990601705531, 34.56628162523294], [-77.29936793410928, 34.56610043768316], [-77.2997216136907, 34.56573809811767], [-77.29996847372004, 34.56543083072836], [-77.30110200275166, 34.565213943659884], [-77.30129820749025, 34.565151508829246], [-77.30145680246768, 34.56512255563419], [-77.30158828221644, 34.56493283376347], [-77.30181083456992, 34.564603525334704], [-77.30181868159897, 34.564339994181935], [-77.30181730368076, 34.56405092696209], [-77.30180165285933, 34.5637447771483], [-77.30246222261883, 34.56310934025918], [-77.30202979441941, 34.562724843866754], [-77.3020354198552, 34.56264016900431], [-77.30230859621562, 34.562514126298], [-77.30288970168255, 34.562493731925706], [-77.30314667358708, 34.56203189858023], [-77.30381679289138, 34.56152017454295], [-77.30449165927735, 34.56116836765008], [-77.30470424097518, 34.56095859957598], [-77.30514381099346, 34.56076606246197], [-77.30570887603608, 34.56045410037057], [-77.3060869710518, 34.56012336079459], [-77.3064591016167, 34.559825691379714], [-77.30760842321988, 34.55947332362404], [-77.30767323585633, 34.559461542988004], [-77.30776240835905, 34.559466654420035], [-77.30924802803528, 34.55928712175067], [-77.31001235640774, 34.55958634460052], [-77.31007085096341, 34.559597124736314], [-77.31081074026298, 34.55962714960955], [-77.31091781191903, 34.55944762912229], [-77.31081921459977, 34.55926600683556], [-77.31065722310201, 34.55909886099938], [-77.31070888554129, 34.558988006315985], [-77.31071663330589, 34.55891784665877], [-77.31071387293149, 34.55857347843485], [-77.31068673091896, 34.558501568685976], [-77.31070275488572, 34.55809932459231], [-77.31067762663977, 34.55801325768547], [-77.31060699529849, 34.55787067557145], [-77.310857193477, 34.55764750667658], [-77.31119700690229, 34.55716424070703], [-77.31132819303353, 34.55694061650213], [-77.31179802497888, 34.55646317249468], [-77.31184797088014, 34.556268448025605], [-77.31169419539677, 34.55590882921176], [-77.31148340971545, 34.55531617643818], [-77.31172874202937, 34.554428331755076], [-77.31175955123385, 34.55394097032487], [-77.31175762726866, 34.553462182779846], [-77.31206168768482, 34.55291835083398], [-77.31204181397818, 34.55260682249074], [-77.31252289654088, 34.55189768803088], [-77.31254411567194, 34.551869843331914], [-77.312557222607, 34.551864074155475], [-77.31256351981597, 34.5518613969471], [-77.31265646969658, 34.551796700960324], [-77.31341891257527, 34.55128997503313], [-77.31345157427295, 34.55119556196649], [-77.31380287040841, 34.55070984770886], [-77.31391076085121, 34.550535755254145], [-77.31416896839073, 34.55037175586827], [-77.31496113280004, 34.55005422344395], [-77.31496167160044, 34.550053907988364], [-77.31496176709585, 34.55005385984952], [-77.31496277057754, 34.55005365689152], [-77.31575544869992, 34.549689915550815], [-77.31586056287053, 34.54949783291231], [-77.31597556898414, 34.5494185780345], [-77.316555337468, 34.549064440580054], [-77.31694491923281, 34.54903217372075], [-77.31693925730153, 34.548558538111486], [-77.31702941634359, 34.54828797135908], [-77.31711773718068, 34.54812259575312], [-77.31721820664276, 34.547771232460754], [-77.3173751418943, 34.54758704581107], [-77.31752605355753, 34.54732770874682], [-77.31808909810064, 34.54715651493133], [-77.318138221007, 34.54712896715338], [-77.31817142657347, 34.54711433085038], [-77.31819725986443, 34.547124718564795], [-77.31826341187933, 34.54713147556924], [-77.318807791206, 34.54714564194363], [-77.31895363410356, 34.54724350276746], [-77.31940760530767, 34.5472502800409], [-77.31973692246528, 34.54732649927496], [-77.31981968815757, 34.54734564924651], [-77.32000000044042, 34.54737163234508], [-77.320288657291, 34.54747361424467], [-77.32038758046704, 34.54772750611819], [-77.32040196838065, 34.54780350948241], [-77.32036557142101, 34.547898048287415], [-77.32029832774069, 34.54818090289437], [-77.31975464130609, 34.54836002383962], [-77.31971252672828, 34.54837068413338], [-77.3196367668976, 34.54835560325299], [-77.31943653009353, 34.54843182696205], [-77.3193334762749, 34.54845633966399], [-77.31945853509586, 34.54858393170956], [-77.31955951889334, 34.548658970855826], [-77.31970254092371, 34.54879809786607], [-77.31978733777697, 34.548817893127634], [-77.31980505338305, 34.54886851010092], [-77.3200736836869, 34.549083958560395], [-77.3202263106617, 34.54963641295895], [-77.3202200924886, 34.549788134010086], [-77.32012478112144, 34.55001051201036], [-77.3201108145723, 34.55007703217033], [-77.32024455348528, 34.55027424406035], [-77.32028841542092, 34.55066037513819], [-77.32032978283931, 34.55075162436866], [-77.32025299476815, 34.550878751657315], [-77.3200953109706, 34.55156006221425], [-77.31985340238455, 34.55179930700997], [-77.31983779401013, 34.55215789849679], [-77.32040567309426, 34.552314017323766], [-77.32062801850192, 34.552525561762074], [-77.32091790742447, 34.55262562918869], [-77.32124539158019, 34.553023929396765], [-77.32195550619218, 34.55320176418549], [-77.32219156338832, 34.55327366984466], [-77.32274022563516, 34.55322587544992], [-77.32293985118807, 34.55331438917488], [-77.32323093847401, 34.55345292965628], [-77.32328495813758, 34.55361003258885], [-77.32325161840646, 34.553759220456094], [-77.32350586911006, 34.554068153492224], [-77.32356982374873, 34.55416188850749], [-77.32363332882785, 34.554194001983134], [-77.32428297239986, 34.55441938742479], [-77.32449712716698, 34.55442589245064], [-77.3250685467391, 34.55440727064346], [-77.32513492906975, 34.55442620150695], [-77.32533477050055, 34.554439148942], [-77.32571685261111, 34.55446876139331], [-77.32585230206865, 34.55447323827791], [-77.32610950827488, 34.5544884072102], [-77.32623600025698, 34.55430964176753], [-77.326649239651, 34.55397294080748], [-77.32678643542008, 34.553824297313696], [-77.32719220885834, 34.55368259661099], [-77.327729347169, 34.553289684968405], [-77.32823892909384, 34.553151042866084], [-77.32872192077474, 34.552779249735465], [-77.32954270177387, 34.55254070532081], [-77.32982431518633, 34.55251291175563], [-77.33006914634792, 34.552441470621076], [-77.3303446400901, 34.55241684005487], [-77.33060813024964, 34.55257559291514], [-77.33069671435463, 34.55263320325325], [-77.33075418952129, 34.55268100997556], [-77.33138564620533, 34.552909567844104], [-77.33154051695386, 34.55296030891752], [-77.33178065047417, 34.553023088018534], [-77.33216728829304, 34.55306603865457], [-77.33283703628706, 34.55294500875158], [-77.3329553425419, 34.55294626488611], [-77.33304429928491, 34.552896169972534], [-77.33317152233505, 34.55282313851287], [-77.33335377245895, 34.55269654344676], [-77.33369495123975, 34.55274788679433], [-77.33373166856205, 34.5527510106595], [-77.3337447518329, 34.55276795231292], [-77.33393988717702, 34.553076175691466], [-77.3342390249068, 34.55347774708704], [-77.3342274091269, 34.55365059884662], [-77.33371217587651, 34.55417249637514], [-77.33368168534791, 34.55420007802968], [-77.33365053687258, 34.55426033031451], [-77.3339974186843, 34.55435376939079], [-77.33388884399838, 34.55418890713021], [-77.3345032583217, 34.553922420801655], [-77.33460760263905, 34.55408556975854], [-77.3345466737743, 34.554547851685584], [-77.33458501904495, 34.55457844938581], [-77.33462513187428, 34.55465932284153], [-77.33464264878474, 34.55544057314231], [-77.33467765119627, 34.5555443955998], [-77.33445684855768, 34.55592425431743], [-77.33417305685391, 34.556426523767286], [-77.33387488211065, 34.55663907332682], [-77.33373064463942, 34.55709565812643], [-77.33372369620436, 34.55720142524587], [-77.33423739076107, 34.557566222458405], [-77.334114854228, 34.55777038144003], [-77.3344152362221, 34.557719177287865], [-77.33480843679962, 34.557729425198914], [-77.3357049211468, 34.5575330851045], [-77.33599150995765, 34.55747575486214], [-77.33609750933206, 34.55736324728561], [-77.33618318876212, 34.55728646289311], [-77.3375908627563, 34.55623474531149], [-77.33836314739494, 34.55697299627549], [-77.33837253140474, 34.55744607581845], [-77.33913589949178, 34.55734025461476], [-77.33914776529384, 34.557349800836874], [-77.33920797299503, 34.557386749890156], [-77.33947617184965, 34.557547390088054], [-77.3395028037492, 34.55755649855311], [-77.33952302357837, 34.55757949731471], [-77.33967979660952, 34.55776292393071], [-77.33970478132534, 34.557982676107514], [-77.33969157207687, 34.55818577349017], [-77.3397103570434, 34.558390613887255], [-77.3397546581416, 34.55860124393128], [-77.33972953525276, 34.55880085038534], [-77.33967961538761, 34.559211666698125], [-77.33952925502669, 34.55948274499678], [-77.33962135703261, 34.55978127072266], [-77.33962039094058, 34.559894182191194], [-77.33966760382167, 34.56005022574455], [-77.3397891654837, 34.56029445355914], [-77.3397857643931, 34.56042899884275], [-77.33980851245681, 34.56071621430238], [-77.33975314675845, 34.560979963240975], [-77.33960739696103, 34.561169679172615], [-77.33956431611993, 34.56165325741918], [-77.33912085345635, 34.56228672985062], [-77.33846898175398, 34.562036096333046], [-77.33833316129046, 34.562030072818395], [-77.33796485924351, 34.56180297849953], [-77.33754705491138, 34.561465956672684], [-77.33754621028706, 34.56146554602146], [-77.33754571686562, 34.56146513105905], [-77.33754363120221, 34.561464200492445], [-77.33752441125911, 34.56146921255704], [-77.33682287695123, 34.561640331782094], [-77.33684090942731, 34.56232630493291], [-77.3368934766844, 34.562409016056996], [-77.33703989590296, 34.56269298474357], [-77.3373104644288, 34.56319814222646], [-77.33729151349598, 34.563473104536236], [-77.33729225849824, 34.56377866867037], [-77.33734716356294, 34.56404194880203], [-77.33705749329135, 34.564409052365946], [-77.33706881145316, 34.56459324728702], [-77.33714920283138, 34.56471258841718], [-77.33733679813739, 34.564892522868774], [-77.3371487395467, 34.565298556176494], [-77.33713989160577, 34.56533587361468], [-77.3371427583089, 34.56534496441306], [-77.33714581351053, 34.56534763647094], [-77.33734460084338, 34.56574048392288], [-77.33739269147848, 34.56642195160376], [-77.33741539284924, 34.56657938863381], [-77.337426823713, 34.56670142674041], [-77.33747158057432, 34.566995851704114], [-77.3374648921021, 34.567079152787954], [-77.33741039129168, 34.56728829875978], [-77.33729990203052, 34.56744507763496], [-77.33714694971091, 34.56756523438728], [-77.33685858324844, 34.56762237780751], [-77.33675276617876, 34.56783296297181], [-77.33658145689839, 34.567733060749575], [-77.33635881577328, 34.5678052495894], [-77.33622262489314, 34.56774677346884], [-77.33609710384174, 34.56776049548335], [-77.33596479226166, 34.56786887991474], [-77.33571615354587, 34.56794064783995], [-77.33518765855862, 34.567760315732514], [-77.33517692595187, 34.56777115036004], [-77.33513468891091, 34.56780186195916], [-77.33468823961738, 34.56814336228396], [-77.3347239891899, 34.56830302801925], [-77.33466190652132, 34.56867342275321], [-77.33457969254347, 34.56889173939433], [-77.33438797132578, 34.56900032625157], [-77.33411275841061, 34.569176905550165], [-77.33438776649876, 34.56924986153933], [-77.33447707411429, 34.569220743121434], [-77.33458480279032, 34.56919302675514], [-77.33474797315208, 34.56912209526021], [-77.33478186171129, 34.56910812433963], [-77.33480058917426, 34.56909819771038], [-77.33488678436424, 34.56906563493112], [-77.33511688149325, 34.568968901753685], [-77.33517600639924, 34.56890371525235], [-77.33538233111122, 34.56879208656107], [-77.33557006537129, 34.5688030727118], [-77.3357190343647, 34.568785477576114], [-77.33596411050668, 34.568718447435025], [-77.33674497728927, 34.56922302940657], [-77.33674899815536, 34.569225321915106], [-77.33675166112661, 34.56922656447546], [-77.33709790471313, 34.569647908594526], [-77.33745896250988, 34.56988309825876], [-77.33753910081563, 34.56988861692233], [-77.33758669979868, 34.5698997902647], [-77.3376377015237, 34.56994375813189], [-77.33811100538537, 34.57010833920554], [-77.33823793734305, 34.570611099713155], [-77.33828766960687, 34.57069938739528], [-77.33830217674634, 34.5707234243603], [-77.338326375078, 34.57078095163236], [-77.33843685238864, 34.57098326536097], [-77.33846020999766, 34.57109912063418], [-77.33852305227725, 34.57119112041614], [-77.33856244894868, 34.571254186848236], [-77.33859923727272, 34.57129140137191], [-77.33871987353139, 34.57141619074062], [-77.33877205362438, 34.5714225915316], [-77.33882999183672, 34.57147049255198], [-77.33900833760163, 34.571558438839425], [-77.33911345474009, 34.57195107166734], [-77.3393752388103, 34.57224117527508], [-77.33957476582998, 34.57256398777816], [-77.33956882147358, 34.572704631140844], [-77.3395067426756, 34.57288007933971], [-77.33947481239161, 34.57304166898916], [-77.33938077195029, 34.57308946523789], [-77.33920563547956, 34.57321501274673], [-77.33911248514876, 34.57322381844625], [-77.33901083242046, 34.57325216904234], [-77.33884742763382, 34.57330515774909], [-77.33871838502745, 34.573357816858106], [-77.33854309606461, 34.57344564977137], [-77.3383241581943, 34.57365451296339], [-77.33830571435887, 34.573668587017025], [-77.33810935642786, 34.573890104313165], [-77.33792997551433, 34.57389063697158], [-77.33776422895974, 34.57392500648775], [-77.33759276459081, 34.573771094240534], [-77.33755244729575, 34.57375925176138], [-77.33753608098543, 34.57375426773011], [-77.33727293047775, 34.57367615086865], [-77.33680014982762, 34.57351641265103], [-77.33674824766298, 34.57354228786569], [-77.33655865561312, 34.57369938253644], [-77.3363034873761, 34.573902066469344], [-77.33623811076151, 34.57396585300895], [-77.33619876503357, 34.574138533232784], [-77.3362344383701, 34.57439092138302], [-77.33632124256697, 34.574837436223106], [-77.33735471449732, 34.57507894329404], [-77.33750987411787, 34.575083757555305], [-77.3375350433917, 34.57508554932326], [-77.33755452087534, 34.575071192270514], [-77.33763812809276, 34.575038196680765], [-77.33818608488892, 34.574811598399414], [-77.33832329623331, 34.57477382247822], [-77.33856139959919, 34.5746489949729], [-77.33879393512653, 34.57452984534839], [-77.33911159525553, 34.57439336933169], [-77.3394906147254, 34.57436346765845], [-77.33951749725587, 34.57435622430107], [-77.3398996099877, 34.57438138388268], [-77.3402497960185, 34.57428542240103], [-77.34033016151972, 34.57426586482371], [-77.34068793579709, 34.5739494390681], [-77.34137954791805, 34.573651127122204], [-77.34143808590346, 34.573601648952646], [-77.34151463758094, 34.573590282092525], [-77.3422644122084, 34.573293290729424], [-77.3429435713803, 34.573543276221415], [-77.34305221498369, 34.57356109002225], [-77.34323118345993, 34.57357768715598], [-77.34384024795389, 34.57350918099576], [-77.3439826385762, 34.573430122444954], [-77.34438471222161, 34.57348135417309], [-77.34462826462223, 34.573478815320485], [-77.3449058276805, 34.57344302219273], [-77.34513291784447, 34.57341665719211], [-77.34528326950733, 34.57351422011414], [-77.34538409586983, 34.57353433360868], [-77.34541621542843, 34.57354327514316], [-77.34566913993851, 34.5736106763188], [-77.34581009123147, 34.57372233525036], [-77.3459744890571, 34.573839338119086], [-77.3460757133683, 34.573962930733245], [-77.34620383514498, 34.57409897266949], [-77.34644559030586, 34.574196117032734], [-77.3465402844712, 34.574244402595234], [-77.34659772871538, 34.574257841002975], [-77.34670290411486, 34.574272441607114], [-77.34699166991007, 34.5743473872044], [-77.34713171640914, 34.57437104144007], [-77.34724155069071, 34.57435087083293], [-77.3472730231077, 34.57419857502981], [-77.34730161246657, 34.57407297494545], [-77.34732075515133, 34.57400002451216], [-77.34738606143867, 34.57375735968989], [-77.34741157935264, 34.57366003559058], [-77.34744323259676, 34.57362805488941], [-77.34753748047581, 34.573352820609855], [-77.34778041565733, 34.57321593467206], [-77.34793437909565, 34.57339137098483], [-77.34817425170652, 34.57346046203278], [-77.34820575410221, 34.57348439453192], [-77.34832100840231, 34.573501775159585], [-77.3485119524554, 34.57353491340165], [-77.34856818668032, 34.57355587657059], [-77.34867510095387, 34.57356604287762], [-77.3488084568506, 34.57343164597254], [-77.34905524030827, 34.573071530187775], [-77.34922998940557, 34.57265849856008], [-77.3492483377532, 34.57251926368728], [-77.34931255150458, 34.57246225926489], [-77.34935692336066, 34.57239342081884], [-77.3496270143396, 34.5719063888708], [-77.35002727206998, 34.571685333577456], [-77.35014527353067, 34.571810404033286], [-77.35031389413044, 34.57169847676696], [-77.35093348277448, 34.57143636184405], [-77.35094240494982, 34.571426418542934], [-77.35093356779545, 34.57129948658459], [-77.3509008448292, 34.57061901830663], [-77.35090358439567, 34.57058290710717], [-77.35091820482053, 34.570563755982164], [-77.35093404835695, 34.5705259276325], [-77.35122890818695, 34.5702185607048], [-77.35172251377959, 34.56970820714305], [-77.35177368775032, 34.569663719589656], [-77.35201385361897, 34.56957404336711], [-77.35251062799249, 34.56944700415691], [-77.35254761596336, 34.56945736744609], [-77.35319814830287, 34.56929528921941], [-77.35329870588845, 34.56923824109678], [-77.35337114741705, 34.569300613570505], [-77.3534870175938, 34.56936204127955], [-77.35408632001395, 34.569815680790846], [-77.35432946528103, 34.569827874697914], [-77.3548351072778, 34.570017123883375], [-77.35487412446383, 34.57008058892998], [-77.3549020826395, 34.57003758533943], [-77.35539867241783, 34.5702197756411], [-77.35547551293456, 34.570349501877445], [-77.35560101957613, 34.57039704669957], [-77.3556618592562, 34.570477262417896], [-77.35582854543091, 34.57054357948392], [-77.35587212907981, 34.57071696696532], [-77.35601085807505, 34.571073437675146], [-77.35596574327238, 34.57112804400319], [-77.35566136246442, 34.571357187735856], [-77.35557161161236, 34.57151270453622], [-77.35538706039982, 34.57150682595611], [-77.35526730673708, 34.57148067517337], [-77.3552039581746, 34.57144996423782], [-77.35514955988978, 34.57137246600308], [-77.3549364924775, 34.57134417250785], [-77.35487337852818, 34.57137975030625], [-77.354556506975, 34.57141399087081], [-77.354479368459, 34.571421853238064], [-77.3543110135018, 34.57154754121246], [-77.35426235753806, 34.57113918402097], [-77.35426767213791, 34.57094789190319], [-77.35408571812515, 34.570846470503], [-77.35333144151511, 34.57104619926754], [-77.35329761733325, 34.57107246192134], [-77.3532889913218, 34.571079449615645], [-77.35326285350246, 34.57109250184501], [-77.35327117724921, 34.57111976493857], [-77.3532975903428, 34.57111800004677], [-77.35393152724444, 34.571845370070456], [-77.35402389854782, 34.57189803041629], [-77.35408503639921, 34.57201560121959], [-77.35426913885055, 34.57244722892193], [-77.35443686009901, 34.572621743981486], [-77.35414908069997, 34.57344235495075], [-77.35487243351128, 34.57302871395981], [-77.3552253570188, 34.572888471268854], [-77.35526650028551, 34.57289944789076], [-77.35528211100221, 34.572907817487135], [-77.35530766662671, 34.5729209659595], [-77.35557379611205, 34.57321398324181], [-77.35562951004782, 34.5732991946889], [-77.35565256415813, 34.57330417480206], [-77.35566026088905, 34.57331173068896], [-77.3557120741348, 34.57334316182622], [-77.35610641334553, 34.573598729126665], [-77.35633846337329, 34.573621704993656], [-77.35644807046336, 34.57363624181166], [-77.35674841430838, 34.573663596658506], [-77.35702977457102, 34.573724516436634], [-77.35721193902688, 34.573495978421626], [-77.35723614408597, 34.57348596900384], [-77.35761140865931, 34.57341825455441], [-77.35763020304591, 34.57336759929723], [-77.3577777587032, 34.57325559599194], [-77.35766833236165, 34.57347142997709], [-77.35751951828692, 34.57387625589468], [-77.35744528015539, 34.57411266343776], [-77.35723553526623, 34.574606222061114], [-77.35720857174408, 34.574741143445465], [-77.35720535150631, 34.57477058234721], [-77.3568412651002, 34.575098588038905], [-77.35672609887574, 34.57514004538691], [-77.35644721890786, 34.575176995688345], [-77.35607397309798, 34.57533551718519], [-77.35603707355752, 34.57534599812131], [-77.35598473323662, 34.575370823523215], [-77.35572859171398, 34.575482632833314], [-77.35565901993995, 34.57551929815159], [-77.3555368683684, 34.57556687622414], [-77.35540020754692, 34.575600675695455], [-77.35526481494743, 34.57587246671574], [-77.35497831592322, 34.575824409909515], [-77.3548708029947, 34.57588142533911], [-77.35482898745826, 34.57591667871411], [-77.35456302040342, 34.575999991605194], [-77.35478300442162, 34.57606282497883], [-77.35487071994197, 34.576026983628196], [-77.35493667587119, 34.57601727836351], [-77.35526479165385, 34.57591363157776], [-77.35534991728585, 34.575886741373154], [-77.3555906698192, 34.57577859913993], [-77.35565886601808, 34.57579353754294], [-77.3556885102236, 34.57580605953263], [-77.35577105397158, 34.575826129145135], [-77.35605282207095, 34.57588391532818], [-77.35626560273336, 34.57595018416433], [-77.35644667902575, 34.576155469921005], [-77.35670383157728, 34.576263824796044], [-77.35680020613106, 34.57652710449519], [-77.35694392874126, 34.57681933167871], [-77.35723408795212, 34.57727565299203], [-77.3572609017522, 34.5772810024237], [-77.35726146258507, 34.57730981700654], [-77.35725463119189, 34.57733296918331], [-77.3573580539974, 34.57801101522901], [-77.35735322903133, 34.57814571207558], [-77.35762746641099, 34.57845933583086], [-77.35771012124809, 34.578429850019766], [-77.35802147876467, 34.57847109290053], [-77.35828204581595, 34.5785802994496], [-77.35841538715125, 34.57868032209478], [-77.35855993665334, 34.578552245852215], [-77.35880967944674, 34.57815719465991], [-77.35887831102076, 34.57800004712981], [-77.35924435254444, 34.57787349242223], [-77.35953761692276, 34.57776630612621], [-77.35959802315986, 34.57755226805549], [-77.35979868221914, 34.577160583285696], [-77.35977199751385, 34.57694842851068], [-77.36038658369867, 34.576494205656225], [-77.36059936790227, 34.57659998021309], [-77.36078056221024, 34.57655462386947], [-77.36100154746846, 34.57658499568875], [-77.3611746052815, 34.576485665196785], [-77.36134316902988, 34.57654057163578], [-77.36138358268202, 34.576716414623505], [-77.36156834278762, 34.577039095898], [-77.3616128876084, 34.57705994573586], [-77.36161722066848, 34.57710733099263], [-77.36171676320494, 34.57725303699127], [-77.36181163454933, 34.577503894031345], [-77.3619067948658, 34.57754979205366], [-77.36196208788488, 34.57758806633536], [-77.36232257963532, 34.577890847333855], [-77.3624391506037, 34.57792776132843], [-77.36274990422073, 34.578031990190155], [-77.36305119034456, 34.57774997627309], [-77.36308532189162, 34.57768174433978], [-77.36322116846162, 34.577642461964274], [-77.36353819474462, 34.57747419975273], [-77.36378362316461, 34.57748441632913], [-77.36403500483922, 34.57749753838459], [-77.36432622422134, 34.57746535532413], [-77.36461621869955, 34.57763662049783], [-77.36472014924493, 34.57765919094793], [-77.36489654178168, 34.577718717692335], [-77.3649711594012, 34.57774401986724], [-77.36511410310501, 34.577792492473485], [-77.36516452498617, 34.57781588037001], [-77.3652568678065, 34.577856924184715], [-77.36550804271408, 34.577960822658724], [-77.36567837910529, 34.578037204131554], [-77.3658150604016, 34.5781074255449], [-77.36590197447235, 34.578150592196536], [-77.3659264038038, 34.57815873565637], [-77.36595034340809, 34.57818161485667], [-77.366149252011, 34.57831100610601], [-77.36645708345581, 34.578533194220206], [-77.36659694367327, 34.578613114041424], [-77.36668978613804, 34.57866390713524], [-77.36684028142409, 34.57874037024293], [-77.36706446447945, 34.578849524876844], [-77.36708372431156, 34.57885239392867], [-77.3670979245598, 34.57885015997337], [-77.36709914011676, 34.57886528482425], [-77.36747765280099, 34.579068303232134], [-77.3675707126707, 34.57912162929914], [-77.36775970686298, 34.57919470599723], [-77.36783308734208, 34.57922564284417], [-77.36787159659436, 34.57925188770256], [-77.36808613175299, 34.579341047943345], [-77.36826553911321, 34.579442749465244], [-77.36833183012696, 34.57946542409314], [-77.36848318181431, 34.57951506352817], [-77.36860083548481, 34.57956134193478], [-77.36875134979768, 34.579575399454114], [-77.36905350169332, 34.57964274617376], [-77.36923505563684, 34.57963570507383], [-77.36944748741766, 34.57973477795127], [-77.36947981193052, 34.57976123218179], [-77.3695606103007, 34.57978443489296], [-77.36976709224703, 34.579834835666546], [-77.36984145018744, 34.57988808321205], [-77.37000213915897, 34.57989398075279], [-77.37023545169419, 34.57994385238153], [-77.37032525140654, 34.58000207017082], [-77.37050657220814, 34.580072734684094], [-77.3706294068773, 34.58012319462044], [-77.37086178397003, 34.58019571085572], [-77.37117617077759, 34.58040083822655], [-77.37132236816724, 34.58048209021013], [-77.37141729910434, 34.58054445191965], [-77.37154444688751, 34.58063530996542], [-77.37169411987743, 34.580750785494054], [-77.37173669426375, 34.5808249555326], [-77.37181118638642, 34.58092475055463], [-77.37193639329031, 34.58100550350112], [-77.37206594322095, 34.58112178124721], [-77.37213790051209, 34.58118384364245], [-77.37220512372203, 34.58117565394906], [-77.37239461577661, 34.5812786467458], [-77.37259908415257, 34.58136796163319], [-77.37268358692256, 34.58136631278281], [-77.37268656841749, 34.58145693336016], [-77.37285802520319, 34.58157770865326], [-77.37293972529699, 34.58178765585384], [-77.37295245764919, 34.58184318831896], [-77.37293909356796, 34.58190311715225], [-77.37298542804078, 34.58267977081931], [-77.3729775322369, 34.58268869602487], [-77.3729811000113, 34.58270062512907], [-77.37299264746261, 34.582703759411466], [-77.37309530689046, 34.5827823699243], [-77.37340854490544, 34.583027486758446], [-77.3734181883294, 34.58308385904115], [-77.37345249656437, 34.58346939024631], [-77.37344806676202, 34.58353647473996], [-77.37338638961812, 34.58355834603108], [-77.37326296610743, 34.58349669512539], [-77.37307678404585, 34.5834325903747], [-77.3729924136912, 34.58337520977902], [-77.37287325563086, 34.58342446875791], [-77.37259836676749, 34.58339810043797], [-77.37243350018046, 34.58336927728519], [-77.37240135782923, 34.58336828791029], [-77.3723193427486, 34.583331973321876], [-77.37220437153759, 34.583275508892605], [-77.37211580695956, 34.58323739583352], [-77.37190952388501, 34.58316028282266], [-77.37181038659345, 34.583127588595204], [-77.37157319588877, 34.583059970895896], [-77.37141638835826, 34.58301948450611], [-77.37133652832827, 34.583011142607916], [-77.37115148017662, 34.58295174979882], [-77.37106679968815, 34.582916097455225], [-77.3710224148783, 34.5828473928432], [-77.37091148920427, 34.58268134516659], [-77.3706286241292, 34.58219469190557], [-77.37062046159859, 34.582187920994954], [-77.37060867032007, 34.5821808218517], [-77.37009061531808, 34.5819860991527], [-77.36993996344185, 34.581852585025764], [-77.36984070135203, 34.58182033549787], [-77.3695621609977, 34.581782579095936], [-77.36922995772754, 34.581721308823816], [-77.3690526704781, 34.581735978418024], [-77.36885680693057, 34.581795050418364], [-77.36839472114984, 34.581790810723874], [-77.3682645873927, 34.58178343234674], [-77.36816180096395, 34.58179488284952], [-77.36797440813123, 34.58171112820673], [-77.36787060178995, 34.581669788419376], [-77.36778967825995, 34.58165053218922], [-77.36767361340443, 34.58160318404064], [-77.36763369478945, 34.581590936184654], [-77.36747662232864, 34.581543814804746], [-77.3672477752904, 34.581569212791294], [-77.36708254749749, 34.58164750354025], [-77.36680347460498, 34.581755848924445], [-77.36668846429377, 34.58176847614972], [-77.36632151404339, 34.58149556036376], [-77.36625984732966, 34.58149610523815], [-77.36590032116798, 34.58194830006323], [-77.36587025036114, 34.58198177145729], [-77.36586717777465, 34.58201459846716], [-77.3659002442448, 34.582125595959546], [-77.36611906988023, 34.582591444261894], [-77.36614601966461, 34.58282355640303], [-77.36629392065576, 34.582959966071826], [-77.36650677224418, 34.58296682101313], [-77.3666879797563, 34.582910523187], [-77.36731642322178, 34.58282703676834], [-77.3674760948351, 34.582815132174176], [-77.36772162267516, 34.58286121306658], [-77.36826411915811, 34.58293866209395], [-77.36855916998755, 34.583007204344895], [-77.36865811373542, 34.583046131644004], [-77.36884662051219, 34.58328373773397], [-77.36892157341464, 34.58341347692431], [-77.36902977041692, 34.58408280136313], [-77.36903578382176, 34.58410560869542], [-77.36902100876011, 34.58414082532729], [-77.36887752708407, 34.58479011294579], [-77.36877430047126, 34.584992384505895], [-77.3687533941965, 34.58531631901529], [-77.36869195658628, 34.58546630646752], [-77.36834026092994, 34.58582072084151], [-77.36826292164281, 34.58590337104825], [-77.36825574255451, 34.58590845181447], [-77.36824258942515, 34.58591807875745], [-77.36774005024294, 34.586276382215125], [-77.36747453654752, 34.5865868406473], [-77.3671452617952, 34.58692522376983], [-77.3668952740068, 34.58718650808152], [-77.36668608787402, 34.587390647465995], [-77.36644976307917, 34.587619983103714], [-77.3660549112586, 34.587931352154136], [-77.36596727163989, 34.588018928127525], [-77.36589762620994, 34.58818962655417], [-77.36576644241251, 34.58811426064418], [-77.36534986035711, 34.588291883962604], [-77.36510941212552, 34.58839008073627], [-77.36476024482653, 34.58854233145204], [-77.36478589794713, 34.58861475346704], [-77.36493973994178, 34.5889410415965], [-77.36479336455508, 34.589302182811046], [-77.36510909979614, 34.58910217540445], [-77.36571908812127, 34.589677934120026], [-77.36581494277151, 34.58975248899443], [-77.36589692182862, 34.589831478257445], [-77.36663079571792, 34.59039576354826], [-77.36666886611818, 34.590407471386115], [-77.36668482072747, 34.59041014613979], [-77.36671225132254, 34.590413587900215], [-77.36722558868745, 34.59057655144797], [-77.36747286751304, 34.590653894004866], [-77.36773371213063, 34.59080496331896], [-77.36805733918243, 34.591039445657145], [-77.36814598660814, 34.59115039206262], [-77.3682607569443, 34.59130257182573], [-77.36856667692246, 34.59148554909261], [-77.36887614614534, 34.59158463121156], [-77.36904878788997, 34.59161911367011], [-77.36960664552001, 34.59166543270656], [-77.36938674105568, 34.59218189212538], [-77.36983679215867, 34.592021217583486], [-77.36993032726302, 34.591719459832944], [-77.3706251593386, 34.59146348551221], [-77.37087885353796, 34.59090617439527], [-77.37106669097746, 34.59060602217031], [-77.3714706327506, 34.58975981167103], [-77.37148548554521, 34.58969658287263], [-77.37220231462808, 34.589063189325834], [-77.372456563454, 34.58898147357826], [-77.37299057535195, 34.588687568062916], [-77.37304212169232, 34.58862323065451], [-77.37335787939742, 34.588124143699915], [-77.3737789711391, 34.587887345512236], [-77.37390198204027, 34.58778273175746], [-77.37412348271968, 34.587618326332944], [-77.37440610484036, 34.587403992013265], [-77.37456730394713, 34.587234136381], [-77.37486301853546, 34.58698117741572], [-77.37517165995081, 34.586816316851994], [-77.37535558708066, 34.586698377941126], [-77.37545449103504, 34.58668399748389], [-77.37603441346653, 34.58661165547438], [-77.3761437252148, 34.58660034929048], [-77.37629086737162, 34.58661547224644], [-77.37653775783821, 34.58666891161486], [-77.37665923066719, 34.586697531026694], [-77.37693175105471, 34.58687167948219], [-77.37714977820232, 34.586947364870156], [-77.37737212794514, 34.58715025652444], [-77.37753825587647, 34.58732184090739], [-77.37768413898533, 34.587916260420506], [-77.3776693946896, 34.58795654657756], [-77.37747823064166, 34.58857341251378], [-77.37726016945055, 34.58886463780782], [-77.37693104842279, 34.58923467806192], [-77.37663483196462, 34.58927386997003], [-77.37647570445132, 34.589336245446226], [-77.37648501553652, 34.589456807513685], [-77.37642635232217, 34.58983390547998], [-77.37653671018793, 34.5901399745622], [-77.37659269084497, 34.59017417680412], [-77.37693066107555, 34.590542978230474], [-77.37695542854068, 34.590580100975345], [-77.37700958550627, 34.59059899315534], [-77.37744782861671, 34.59082769749151], [-77.37756012357418, 34.591368790115276], [-77.37759997882074, 34.59149077359399], [-77.3775751701414, 34.59179118454833], [-77.3777184124487, 34.59191649147518], [-77.37787837082999, 34.59174749549918], [-77.37785238857573, 34.59147088037696], [-77.37788048812838, 34.59132262772478], [-77.3779944808694, 34.590754145759725], [-77.37804964877327, 34.590449127218164], [-77.37823781457463, 34.589863048110374], [-77.3782080226147, 34.589577180686206], [-77.3782552484276, 34.589298823770505], [-77.37843337530205, 34.588695582144744], [-77.37847638891425, 34.588655895491534], [-77.37850750579064, 34.58853264317824], [-77.37859881245691, 34.58792080739265], [-77.37867473592053, 34.587811675200186], [-77.37898203114177, 34.58742919577046], [-77.37908049467661, 34.587328639486245], [-77.37903562388895, 34.58719106650473], [-77.37911804894, 34.58689866440007], [-77.37912654917687, 34.58671473976498], [-77.37912862927125, 34.58622861334251], [-77.37916335599442, 34.58604300881943], [-77.3791677009101, 34.58590378387876], [-77.3791486165729, 34.58577976710181], [-77.3789662228512, 34.58564685488851], [-77.37893524220516, 34.585615899649795], [-77.3789023704821, 34.58560771564627], [-77.37871179569491, 34.5854643330729], [-77.37870538726538, 34.58546051617598], [-77.37850847767386, 34.58528825728973], [-77.37850845664491, 34.58528821198601], [-77.37850841193477, 34.585287678087184], [-77.37842844149542, 34.584875228143865], [-77.37850855371725, 34.58478242567665], [-77.37866838511175, 34.5845882387778], [-77.37880902317985, 34.58439581936048], [-77.37929695829183, 34.58361982045291], [-77.37936915109883, 34.583543734039026], [-77.37950478733092, 34.58344642320916], [-77.37988535205685, 34.583176297036275], [-77.38008519599902, 34.58300971966713], [-77.38015347592635, 34.5829283702308], [-77.38008525590348, 34.582782163173874], [-77.38002206906204, 34.58259088215695], [-77.37998818141975, 34.58252762935618], [-77.37983982320162, 34.5822844195513], [-77.37973989345625, 34.58208660679044], [-77.37966232708646, 34.581725464542565], [-77.37961698058083, 34.581387833986085], [-77.37960017431266, 34.58130985912793], [-77.37929764203743, 34.5811156691606], [-77.37922327841135, 34.58101976904773], [-77.3791719509479, 34.580947011277374], [-77.37899992757893, 34.58065087684498], [-77.3789536800791, 34.58055390482653], [-77.37896571245756, 34.58048544948787], [-77.37893916443116, 34.58013143300649], [-77.37900336765178, 34.57980470774502], [-77.37903018940004, 34.57969375195866], [-77.37929815752187, 34.57923852629396], [-77.37930228448235, 34.57923442002265], [-77.37931423644943, 34.579228251777735], [-77.37982870050746, 34.57887654342042], [-77.38008630948603, 34.5788024899833], [-77.38039662614, 34.57873789285656], [-77.38048035186526, 34.57870057939644], [-77.3807643765808, 34.5789007827892], [-77.38087429947589, 34.57896401290618], [-77.3809030383801, 34.578999259833886], [-77.38098167867811, 34.57972113971938], [-77.38097247490673, 34.57983837987587], [-77.38097566752997, 34.57994741684473], [-77.38104041501691, 34.58049830097647], [-77.38107781091753, 34.5806723256031], [-77.38134280218846, 34.58097789095619], [-77.38166177437795, 34.58122864855687], [-77.38174948745224, 34.58133010310254], [-77.38183184198972, 34.581412770370164], [-77.38208805138531, 34.581765516457764], [-77.38210192094441, 34.58179840597253], [-77.38244961179, 34.582146382654315], [-77.38245999509672, 34.58216016543713], [-77.3824690336943, 34.582170053996826], [-77.38247949094573, 34.582200754797505], [-77.38264361347382, 34.582569454042044], [-77.38264905713379, 34.58277817471235], [-77.38270706745362, 34.58298487252506], [-77.38277572044782, 34.58332664940879], [-77.38277668940323, 34.58347121368338], [-77.38283746426664, 34.58381520610887], [-77.3826762450009, 34.584083124603225], [-77.38244905691661, 34.58451213773397], [-77.38238288716462, 34.58465860258583], [-77.38230617478237, 34.58474091810021], [-77.38225719161636, 34.584954591187994], [-77.38202973859194, 34.58562989249836], [-77.38213681578853, 34.58595051876287], [-77.38215523476003, 34.58603636911326], [-77.38220733757964, 34.58619340821319], [-77.38227379961253, 34.5864438439061], [-77.38225927335831, 34.586649879648704], [-77.38228735211693, 34.587117448485515], [-77.38205440020828, 34.587098510111154], [-77.38192407361127, 34.58705924432606], [-77.38181373753969, 34.58709998913686], [-77.3816603314891, 34.58715663846467], [-77.38164569790041, 34.58717122260762], [-77.3816603130795, 34.587232959950235], [-77.38167720302962, 34.58736073313494], [-77.38170225678354, 34.587375352899386], [-77.38185729894737, 34.58740800094269], [-77.38199674522151, 34.58739495041373], [-77.38205432308078, 34.587424653075615], [-77.38238627423122, 34.58734369531429], [-77.38237200702407, 34.587703383366666], [-77.38241662932288, 34.58773108309982], [-77.3824483012751, 34.58776131823147], [-77.38251638086118, 34.58782149102922], [-77.3825467942406, 34.58785452432359], [-77.38260141394827, 34.58788259965532], [-77.38263058200444, 34.58789425244517], [-77.38264529713751, 34.58790532767783], [-77.38266731606939, 34.58789682200169], [-77.38284238025821, 34.58766724601421], [-77.38321805818036, 34.58800599824187], [-77.38322439033307, 34.58801798133236], [-77.38323635287816, 34.5880481707888], [-77.38329119407945, 34.588148628051485], [-77.38329912835749, 34.588206595092494], [-77.38327042944218, 34.58838621924596], [-77.38350637318163, 34.58825541195382], [-77.38353952888471, 34.58817194246063], [-77.3835604471626, 34.58809355684837], [-77.38355488982893, 34.58803881625081], [-77.38346017920921, 34.58797109772672], [-77.38343340278897, 34.58795485470003], [-77.38324969454898, 34.58798707808075], [-77.3832363738535, 34.5879536034076], [-77.38291334287463, 34.587625355508756], [-77.38323650522548, 34.58736189886821], [-77.38332237262279, 34.58723431612908], [-77.38344748227559, 34.58712379698167], [-77.38363064787234, 34.58696199250335], [-77.38390286184776, 34.58692687221376], [-77.3840247289867, 34.58683325956413], [-77.38413493553553, 34.586905943326116], [-77.38416419254618, 34.58702048318175], [-77.38433728437957, 34.58708328306337], [-77.38441872299482, 34.58711609713735], [-77.38458939585287, 34.58719984734584], [-77.38469790205201, 34.58724437043341], [-77.38481275371628, 34.58723160387362], [-77.38505045663727, 34.58731728829362], [-77.38517500289713, 34.58733357985251], [-77.38525968874298, 34.58734412392561], [-77.3856008327212, 34.5873878775138], [-77.38582732196973, 34.58738583288588], [-77.38599489056446, 34.5873743054115], [-77.38628503009771, 34.58745192561881], [-77.38638893269957, 34.58744478603752], [-77.38643957543141, 34.58748701887566], [-77.38653867040765, 34.587527304489996], [-77.38678296148117, 34.58759296384093], [-77.3870370256976, 34.587606282312926], [-77.38717700194121, 34.58768198603382], [-77.38745677435375, 34.58781950296755], [-77.38754781126849, 34.58783139687948], [-77.38757103213412, 34.58783587734651], [-77.38762612093103, 34.58785444401115], [-77.38776805210868, 34.58788684889416], [-77.38785307874494, 34.58788303765328], [-77.38796507721305, 34.58790817500122], [-77.38818400463038, 34.58790333841726], [-77.38830267210889, 34.588122106362384], [-77.38835909655405, 34.58814473317945], [-77.38841746650202, 34.588168447709755], [-77.38855611357576, 34.5882216786019], [-77.38860075957854, 34.58824330347173], [-77.38868146991452, 34.58827977223092], [-77.38875312890846, 34.588311735521444], [-77.38886307011103, 34.58834741206374], [-77.38903610269607, 34.588440921336996], [-77.38910777875584, 34.588473020117135], [-77.38914716105508, 34.58849027916958], [-77.38928709023355, 34.58855550369289], [-77.38937789679484, 34.588567593231296], [-77.38938948613337, 34.58860224989473], [-77.3895411950921, 34.58866698870081], [-77.3896171657843, 34.58869984618326], [-77.38971484565437, 34.588742440344895], [-77.38973821406506, 34.58874592599842], [-77.38975823702725, 34.5887613615075], [-77.38987327831389, 34.58881152610006], [-77.38993523142013, 34.588838992328945], [-77.3902228849999, 34.58880900858237], [-77.39032927430435, 34.58897428019084], [-77.39038901757634, 34.589030594547914], [-77.39040544152768, 34.58909260293879], [-77.39047733636413, 34.58924179865827], [-77.39049383597764, 34.589327072631896], [-77.39058165273222, 34.58933916162907], [-77.39072328920108, 34.58933234732051], [-77.39102973382236, 34.58933274354417], [-77.39111736334556, 34.58924798918333], [-77.39120754751977, 34.58930432928092], [-77.39136224557828, 34.58937919407164], [-77.3915114008811, 34.58945717943464], [-77.39169137919352, 34.58956237413337], [-77.39170841943614, 34.58956969070805], [-77.39183519746746, 34.58973555809838], [-77.39183129994794, 34.58981598078941], [-77.39178087205094, 34.590033797674884], [-77.39160250329807, 34.59009544767086], [-77.39151132693495, 34.59006715509263], [-77.3913225237845, 34.590012915817425], [-77.39111730848113, 34.589682942919225], [-77.39093779329491, 34.59009618793375], [-77.39072318115468, 34.590159041567205], [-77.39034486907454, 34.59035804072415], [-77.39032908526075, 34.59036956645477], [-77.39032361160088, 34.59037221304909], [-77.39030033475149, 34.59038146651629], [-77.39013203981354, 34.59045112096188], [-77.39003582947844, 34.59052824725724], [-77.39003351170508, 34.59052969278546], [-77.39002858575982, 34.59053210167392], [-77.38993498626898, 34.59058782049469], [-77.38973860984305, 34.59067402817804], [-77.389737606314, 34.59067453679527], [-77.38973752498121, 34.5906753532325], [-77.38973854303048, 34.59067541107015], [-77.38993497052144, 34.590700701956884], [-77.39002124150039, 34.59075332475998], [-77.39009967569832, 34.59080015307512], [-77.39013198901361, 34.59082151103164], [-77.3901389346245, 34.59082182609855], [-77.39014522151096, 34.59082840273643], [-77.39025886764237, 34.590887591526226], [-77.39032900664819, 34.59095300167858], [-77.3905725909036, 34.59092891176858], [-77.39078665839801, 34.59116047496812], [-77.39056449289572, 34.59144629285271], [-77.39058955416377, 34.591613467590456], [-77.39047357230189, 34.59178606512336], [-77.39043590572963, 34.5918479084628], [-77.3903911256067, 34.59192143145719], [-77.39032886482065, 34.59200996989324], [-77.39030029410566, 34.592048972216446], [-77.39025250265288, 34.59208663944975], [-77.39010303667392, 34.59228949989921], [-77.39000245167817, 34.592474297264864], [-77.3899984209579, 34.59254784608165], [-77.39003360958131, 34.59264933363925], [-77.38993469791427, 34.59266544230097], [-77.38982109262152, 34.59269580548546], [-77.38954057772966, 34.59295093867642], [-77.38941499322586, 34.5929212359116], [-77.3892747190028, 34.592938626778114], [-77.38914649652224, 34.59295312849664], [-77.38911510283768, 34.5929213249305], [-77.38898004316728, 34.59293992265865], [-77.38894944860988, 34.59300284620343], [-77.3887923052585, 34.59314632453424], [-77.38894940623106, 34.593286272504685], [-77.38898110997445, 34.593297227590526], [-77.38914642459055, 34.59344211129664], [-77.38922206552154, 34.59342743675448], [-77.38954053187867, 34.59327310039356], [-77.38981236553377, 34.59355547449198], [-77.3899345703731, 34.59359161475712], [-77.39005069298113, 34.59368889511739], [-77.39022774884958, 34.59367978600698], [-77.39032864980096, 34.593624124371374], [-77.39036530620452, 34.593556364642254], [-77.3904146826311, 34.59342962055882], [-77.39051601331565, 34.59332234832483], [-77.3906133941369, 34.593190447950036], [-77.39072279412038, 34.593151800234196], [-77.39079763613749, 34.593069453805384], [-77.39086239042136, 34.59299820657169], [-77.3909198695991, 34.59287626208746], [-77.39093172326425, 34.59283783355477], [-77.39091987821587, 34.592807926823845], [-77.39080504524938, 34.59276753901412], [-77.39074414007175, 34.592463216532664], [-77.39073326380016, 34.59244188272677], [-77.39073450128947, 34.59242919125037], [-77.39072289332957, 34.59237988927993], [-77.3906526992115, 34.592104594758915], [-77.39064066994936, 34.59203066579485], [-77.39065073283211, 34.59195141088924], [-77.39072295579902, 34.591895562887146], [-77.39083998593671, 34.59170341377137], [-77.39111709596357, 34.59137759271377], [-77.3914803014016, 34.591518254865505], [-77.39151115329612, 34.5915081532177], [-77.3915417959424, 34.59150916283474], [-77.3919052305645, 34.59147630129574], [-77.3919759645, 34.591489746047145], [-77.39210226986727, 34.59145315282994], [-77.39221789398695, 34.59137864680798], [-77.39226324501342, 34.5913332398606], [-77.39229932340429, 34.59130025057803], [-77.39264172370926, 34.59094866412549], [-77.39269343907951, 34.5908928053069], [-77.39269803942436, 34.59088978713543], [-77.39271031939634, 34.59088306005824], [-77.39308753058651, 34.59068567253985], [-77.39335475207139, 34.5906534479189], [-77.39348160488028, 34.59063516374131], [-77.39360843151744, 34.5906168882835], [-77.39374640921832, 34.59073362937793], [-77.39414590529508, 34.59080941576898], [-77.39426972750348, 34.5908119908985], [-77.39451102758008, 34.59088332978334], [-77.39481059763395, 34.590846542264046], [-77.39481059715756, 34.59100470890628], [-77.39505784097747, 34.591145825287335], [-77.39519170835034, 34.59123007361589], [-77.3953003257133, 34.59135864185683], [-77.39545187756667, 34.591621118651986], [-77.39555060156908, 34.59164074652127], [-77.39555768755946, 34.59174609091296], [-77.3955759421728, 34.5918771433019], [-77.39533501164752, 34.59190409757646], [-77.39505777171492, 34.592041116349776], [-77.39493476267245, 34.59212799228051], [-77.39468010936004, 34.592297243919006], [-77.39466367349875, 34.592319159206866], [-77.39465107715404, 34.592315002801165], [-77.39440229197642, 34.59248029279388], [-77.39426957977992, 34.59251436765558], [-77.3942324582855, 34.59253410364302], [-77.39417105573897, 34.59256674882675], [-77.39412923352491, 34.59258898391908], [-77.39408845013007, 34.59261201572818], [-77.39407252959407, 34.592641524295175], [-77.39400721543892, 34.592712725290255], [-77.3940298600119, 34.59276964303518], [-77.39403391051817, 34.592815017771095], [-77.39407250880907, 34.59287684191602], [-77.3941397271962, 34.59293961591963], [-77.39426953130878, 34.59307845293585], [-77.39433373944824, 34.593127163351866], [-77.3943875458502, 34.59318858354713], [-77.39459334833512, 34.59323458611478], [-77.39466360073982, 34.59321482123961], [-77.39498486351356, 34.593180884472694], [-77.39505768542499, 34.59316706461454], [-77.39512116277388, 34.59315115768003], [-77.39525472902581, 34.59312339064398], [-77.39543595514787, 34.593054407864585], [-77.39545177461855, 34.59304881889152], [-77.39548349361257, 34.593030507825404], [-77.39569835050997, 34.592840583665875], [-77.3958458853791, 34.59259146541782], [-77.39588437732772, 34.59254811128867], [-77.39603872613299, 34.59230901779193], [-77.39660024278946, 34.592020276556795], [-77.39661986499637, 34.59200213614085], [-77.39663407571678, 34.591992911664406], [-77.39666381039889, 34.591979071681365], [-77.3972417286197, 34.59173325882746], [-77.39742224746806, 34.591541552220505], [-77.39746876563136, 34.591520531870785], [-77.39744708208022, 34.59147354256449], [-77.39742225100464, 34.59146932288037], [-77.39740810794804, 34.591463926978435], [-77.39709485218081, 34.591452521638665], [-77.39702817971931, 34.59145009408145], [-77.39665154784127, 34.59118250463846], [-77.39663412327943, 34.59117928993021], [-77.39663056640164, 34.591170590666955], [-77.39663059895835, 34.591166753252416], [-77.39662913647282, 34.59116159030345], [-77.39653183962068, 34.590866647838624], [-77.39645451960445, 34.59076758084204], [-77.39646436781992, 34.59058322661288], [-77.39646947372341, 34.59051828839937], [-77.39652885530293, 34.590332285641], [-77.39651807006405, 34.59020874235067], [-77.3966341958152, 34.58995410702616], [-77.39665658336857, 34.58988928807423], [-77.39669760938708, 34.589815055720706], [-77.39663420426155, 34.58981264580683], [-77.3964548322841, 34.589687085478786], [-77.39624015457859, 34.58958072272718], [-77.39621706345443, 34.589552998933684], [-77.39593268058081, 34.58966243991297], [-77.39584608514585, 34.589664306277236], [-77.39576935052933, 34.5896753750607], [-77.39564813369708, 34.58961018588209], [-77.39549296704953, 34.589588458185936], [-77.3954520274381, 34.58957797514803], [-77.395362682484, 34.589555097272275], [-77.39516981255588, 34.589558674819294], [-77.39505796941589, 34.58950511787358], [-77.39483675904214, 34.589302650064354], [-77.39481647945323, 34.58914122176105], [-77.39481462939924, 34.58909355652396], [-77.39480283594584, 34.589032615955226], [-77.39477870162753, 34.58897510278764], [-77.39473322670358, 34.5888930124152], [-77.39470880452448, 34.588848219314], [-77.3946639625035, 34.588830054730956], [-77.39453878695119, 34.588786186645336], [-77.39446693721383, 34.588773344756035], [-77.39441776776536, 34.58877920410192], [-77.39426990682475, 34.58877704913867], [-77.39402817575092, 34.58873425471751], [-77.3938758491025, 34.58875034267659], [-77.39380207434388, 34.58868224106174], [-77.3937063013984, 34.5886165608419], [-77.39348182497498, 34.588384269147745], [-77.39335678180977, 34.588377127087256], [-77.39336008087793, 34.588241925777524], [-77.39336619737499, 34.588116433702304], [-77.39348187317574, 34.58789673477574], [-77.39378317125376, 34.58733176083335], [-77.39393465672529, 34.586948520103476], [-77.39396109795089, 34.58688152720546], [-77.39397176108326, 34.58677684865695], [-77.39408857335681, 34.58643856952763], [-77.39417478415513, 34.58632340668372], [-77.39427014929699, 34.58607788099053], [-77.39431237518234, 34.585981717620484], [-77.39443237039293, 34.58571459000314], [-77.39466423363152, 34.5856494918909], [-77.39494255391604, 34.585466247260975], [-77.3950123173421, 34.585406640478524], [-77.39505830311876, 34.58535349386444], [-77.39514740896995, 34.58534068904638], [-77.39560136463804, 34.58510718489835], [-77.395846415924, 34.58500528455721], [-77.39612125740194, 34.584871645710116], [-77.3961751588826, 34.58479349577987], [-77.39624047351599, 34.584776234788706], [-77.39643830623675, 34.58461275834911], [-77.39663453529599, 34.58444687674189], [-77.39667794477435, 34.58441353684235], [-77.39675749700696, 34.58435528938417], [-77.397191020073, 34.584043182806276], [-77.39742264836403, 34.583809752226514], [-77.39772245841823, 34.58368996939199], [-77.39801236491945, 34.58353884658522], [-77.39821073808983, 34.583418145566526], [-77.39832467002445, 34.58340280860611], [-77.39886335560804, 34.58334827692058], [-77.3989988107906, 34.583288606539476], [-77.39909767263227, 34.583275041079865], [-77.39941359557218, 34.58312293448702], [-77.39978689053893, 34.582795519460745], [-77.40010932927039, 34.58267511762206], [-77.40040049704557, 34.58279255539594], [-77.40057495024159, 34.58289619559453], [-77.4006119812156, 34.5829101156644], [-77.40075769755529, 34.58292899061872], [-77.40113685322211, 34.58311796565922], [-77.40136301164625, 34.582991915345104], [-77.40170397092305, 34.58315983088352], [-77.40183085796545, 34.58311916823579], [-77.40215107448223, 34.583070625744625], [-77.40226851353808, 34.582837515490866], [-77.40274293231168, 34.5828539194938], [-77.40293913414827, 34.58274449741755], [-77.40326392083821, 34.583066511400965], [-77.40333316916404, 34.58307224684363], [-77.40368219750425, 34.58335610543428], [-77.4037036631977, 34.58337837595099], [-77.40372720742666, 34.58340580576281], [-77.40399711669096, 34.583868987682436], [-77.40411682594751, 34.58414253055029], [-77.40412125961038, 34.58415756268142], [-77.4042568712444, 34.584400778981944], [-77.40426075446423, 34.584696624072194], [-77.4043361261694, 34.58496003240297], [-77.40434900207181, 34.585137386716184], [-77.40435386334495, 34.58538204886494], [-77.40436434598597, 34.58564241544234], [-77.40435787624877, 34.5858060458252], [-77.40430520563606, 34.58604007912674], [-77.4042860420625, 34.58624098990826], [-77.40422303076109, 34.586359676567156], [-77.40413324630055, 34.58667477581893], [-77.40412980834468, 34.586688114520356], [-77.40412994477754, 34.586697379320455], [-77.40412132842864, 34.58671829194045], [-77.40403204524682, 34.587030590522524], [-77.40400055689281, 34.58713134436203], [-77.4039041760792, 34.587379247008094], [-77.40386911367288, 34.587574890352954], [-77.40381470917427, 34.587676919243506], [-77.40372730833006, 34.58792784718935], [-77.40368973745595, 34.588025353710265], [-77.40360510261871, 34.58833046241292], [-77.40360703978136, 34.58846186422115], [-77.40361401490733, 34.58858294226102], [-77.40362132208526, 34.588672091135585], [-77.40366248996241, 34.588808576661506], [-77.40367675864246, 34.58887637871932], [-77.40372733525138, 34.58903249332103], [-77.40383331588764, 34.589164176173824], [-77.40393063535029, 34.58926431569291], [-77.40383286373367, 34.58939211648722], [-77.4037273461779, 34.589470767975754], [-77.40351994256004, 34.58974816132272], [-77.40341298457332, 34.58984945963709], [-77.40333329649413, 34.590052173136364], [-77.40327143352886, 34.59020860005085], [-77.4032570461534, 34.59055308675521], [-77.40326589168357, 34.5907066131631], [-77.4032906267217, 34.59105498176803], [-77.40329163424869, 34.591434492958605], [-77.40330126285404, 34.59151256925917], [-77.40330196371535, 34.59190249720139], [-77.40330735414534, 34.59192971304897], [-77.40333333984647, 34.592067112497375], [-77.40334006261799, 34.59210204480802], [-77.40334334266255, 34.592108813756795], [-77.40337814363491, 34.5922678126869], [-77.40341101382454, 34.59231133597074], [-77.40352034609663, 34.592497027162324], [-77.40365652775311, 34.59270048155625], [-77.4035576714597, 34.592897648769245], [-77.4034443940631, 34.59358024570405], [-77.4032489094081, 34.59394202169136], [-77.40312431230043, 34.59405101165627], [-77.40293930458336, 34.59418310257685], [-77.40283029882036, 34.5942108791335], [-77.40271526346181, 34.59429323636624], [-77.4025452239957, 34.59442474386999], [-77.40248327244211, 34.594501344421275], [-77.40243373993307, 34.59457523777607], [-77.40239738473059, 34.59463349107621], [-77.40234818524833, 34.594742738929625], [-77.40233023787252, 34.59478312406986], [-77.40229098541892, 34.594869751019246], [-77.40227311349187, 34.59502299079681], [-77.40215114625448, 34.59517540005179], [-77.40205823699613, 34.59537847261028], [-77.40198594354999, 34.59548900294642], [-77.40175706145894, 34.5958798851086], [-77.40173152795418, 34.59592277922772], [-77.40171289334096, 34.595952976849176], [-77.4016165150447, 34.596118301793865], [-77.40157870465586, 34.5961846263329], [-77.4015705492446, 34.59619715043572], [-77.40156001658107, 34.59621114402566], [-77.40138483955363, 34.59642488608321], [-77.40137942912727, 34.59644339877504], [-77.40136297005768, 34.59646128433687], [-77.40103346186994, 34.596900159164605], [-77.40099982242079, 34.59693835500616], [-77.40096887350573, 34.59697457398162], [-77.40089742784315, 34.59699675682913], [-77.40057477415638, 34.59721059625769], [-77.40046032233562, 34.597284124807246], [-77.40037772353148, 34.59733751889751], [-77.40023455042083, 34.59744000020882], [-77.4002042877351, 34.59746980795579], [-77.40018067174745, 34.59751290113524], [-77.40009310115535, 34.597672694823785], [-77.40010598397956, 34.597802663941714], [-77.4000740640758, 34.597887728257604], [-77.39999589426306, 34.59809806212105], [-77.39998283378587, 34.59832546389015], [-77.39986884455692, 34.59843055919893], [-77.39978655587844, 34.59848407701316], [-77.39944491196422, 34.59882764414478], [-77.39941079480013, 34.598852336255824], [-77.39939244302869, 34.59887038079576], [-77.3993592953304, 34.59887570572333], [-77.3989983330058, 34.59899733273167], [-77.3987733218793, 34.59910670182237], [-77.39832827062729, 34.599286009777984], [-77.39821010622026, 34.5993334908217], [-77.39810926680515, 34.599336265460444], [-77.39770470105537, 34.5995032593431], [-77.39749799713647, 34.59961508245035], [-77.39742187269805, 34.59967412735455], [-77.39726402337142, 34.59973687362777], [-77.3970277537561, 34.599837294064535], [-77.3968875661715, 34.599894683222125], [-77.39668790977694, 34.6000160294915], [-77.39663362963196, 34.60006895947149], [-77.39657387960933, 34.600090949782], [-77.39635579072306, 34.60024767782199], [-77.39604500101308, 34.60037676296436], [-77.39584537345773, 34.600553172547365], [-77.3957849228275, 34.60056419774842], [-77.39545125337159, 34.6006209927209], [-77.39540761862152, 34.60063673342449], [-77.39525419196923, 34.600670853718576], [-77.39518548567612, 34.600715777286965], [-77.39513589904446, 34.600807791032096], [-77.39505711879156, 34.600883957605824], [-77.394863448994, 34.60097085120026], [-77.39466298306488, 34.60112857283908], [-77.39457179893334, 34.60113062864393], [-77.39430612078843, 34.60122703151299], [-77.39426885460405, 34.60125262637911], [-77.39424490528178, 34.601250203567446], [-77.39409732783074, 34.60126978003162], [-77.39407179265638, 34.6012812663424], [-77.39397495097052, 34.601314936202236], [-77.39391562537236, 34.60136755168959], [-77.39387472437093, 34.601383166161106], [-77.39382477890216, 34.60139039706121], [-77.39348058708204, 34.601578364150825], [-77.39334979185047, 34.60154599728291], [-77.3932287952345, 34.601575868063435], [-77.39308645516346, 34.601695883465965], [-77.39271051088664, 34.60190225122226], [-77.3926923121935, 34.6019137116315], [-77.39191549907369, 34.60202416982105], [-77.39190405587819, 34.602015449340804], [-77.39185384335877, 34.601991294115415], [-77.39111583768533, 34.60177326504527], [-77.39076346723402, 34.60173307124999], [-77.39032762196172, 34.60154493187851], [-77.39010708837458, 34.601448119186955], [-77.38969623219349, 34.60133841724667], [-77.389539402939, 34.60137069573664], [-77.38937477061025, 34.601376356396415], [-77.38897800444613, 34.601366544106035], [-77.38875116305697, 34.601359706819125], [-77.38865371202833, 34.60133808112956], [-77.38844571447024, 34.601358608100455], [-77.38835704360488, 34.60135073068517], [-77.3882782095327, 34.60137215587761], [-77.3880851233484, 34.60144672910141], [-77.38796289586534, 34.60152402020325], [-77.38772702355382, 34.60153717441228], [-77.3873375151644, 34.60167194831806], [-77.38717462844699, 34.6016690664038], [-77.3868413404615, 34.60149438006991], [-77.38679103057896, 34.60149032752315], [-77.38678053604534, 34.601490972165614], [-77.38676448948107, 34.60148817206914], [-77.38638641806082, 34.60146912593572], [-77.38619353624965, 34.60137099783944], [-77.3861572904333, 34.601346138663644], [-77.38599233676577, 34.601243032403374], [-77.3859488577181, 34.601245305823014], [-77.38585717355869, 34.60121168475803], [-77.38572129618159, 34.601098711653776], [-77.38559825282094, 34.60104285385487], [-77.38542650959566, 34.60103421030788], [-77.38540119317919, 34.60104114099438], [-77.3853911683387, 34.6010557791061], [-77.385204108924, 34.60116994096698], [-77.3849389984831, 34.60120505203784], [-77.3848099661728, 34.60128453180892], [-77.38473038107942, 34.60128837401118], [-77.38441584057115, 34.601306726214], [-77.38422532793635, 34.60122758408609], [-77.38420746555288, 34.60122498952465], [-77.38402174065624, 34.6012007777354], [-77.38390018022356, 34.601200153733956], [-77.38365332575626, 34.601132459415645], [-77.3836276296116, 34.6011529889087], [-77.38358959728684, 34.601154937685166], [-77.3832334762279, 34.60130664641591], [-77.38294556848919, 34.60109242170222], [-77.38283942438485, 34.60098498106707], [-77.38262395996345, 34.60082857738416], [-77.38252636088012, 34.60075537986255], [-77.38244540835359, 34.60051598164604], [-77.38239476189308, 34.600491610140246], [-77.38236314427586, 34.60044160216547], [-77.38234242294126, 34.60034328915061], [-77.38224837802315, 34.6003882942869], [-77.38219044134377, 34.600466492204056], [-77.38215707638575, 34.60058527574949], [-77.38205125762688, 34.60066006526739], [-77.38190306345138, 34.6007728586018], [-77.38185417156829, 34.60077637904], [-77.38167410301149, 34.60094712360503], [-77.38165706859834, 34.60096340123728], [-77.38165413098244, 34.60096518401627], [-77.38126294939497, 34.60095876155323], [-77.38098255274355, 34.60094262568724], [-77.38086883438882, 34.600936550392404], [-77.38069480480094, 34.600919120135565], [-77.38067177797177, 34.6009211200467], [-77.38065766186315, 34.60091487584245], [-77.38056770249722, 34.60091263136974], [-77.38047472012752, 34.60091177041173], [-77.38033234917825, 34.60088763956745], [-77.3801853600252, 34.600868287098365], [-77.38008059398177, 34.60093520633], [-77.37980541013027, 34.600810197651725], [-77.37971220483489, 34.60079594769072], [-77.37968651213667, 34.60078371515109], [-77.37960389317894, 34.60075022590201], [-77.37948947037742, 34.60071322507478], [-77.37942680905485, 34.60071997125214], [-77.37929241770368, 34.60068599784994], [-77.3790764432292, 34.60072332201342], [-77.37889830349863, 34.600666152701216], [-77.37882279209748, 34.60060858579606], [-77.37862278297831, 34.60055604457974], [-77.37853350408855, 34.600537361125006], [-77.37850422332666, 34.600520407431816], [-77.37837345289776, 34.60045107813668], [-77.37830719009816, 34.60042413165403], [-77.37828154757028, 34.600420555693276], [-77.37811013848008, 34.60039656076657], [-77.3779376603785, 34.600415994081544], [-77.37771603225053, 34.600353408708514], [-77.3769442056793, 34.59994877434667], [-77.37693542110348, 34.59994195346147], [-77.37692792342293, 34.599911183809496], [-77.37650194954976, 34.59916336834997], [-77.37669696943794, 34.598886153545955], [-77.37674623523108, 34.59870361188367], [-77.37687655051776, 34.59831611445081], [-77.37681851140712, 34.598268636734694], [-77.376474763095, 34.597957826821094], [-77.37646322684043, 34.597818564890495], [-77.37637513817313, 34.5974833925762], [-77.37667082616792, 34.59716296591011], [-77.376864500053, 34.596988325779], [-77.37689909442503, 34.59695135983145], [-77.37692880296144, 34.59687794324768], [-77.377080119721, 34.596695652144305], [-77.37750999888893, 34.59647075858131], [-77.37725704923477, 34.59615381237871], [-77.37692893657731, 34.59641919600698], [-77.3768365633931, 34.596468291084435], [-77.37653480724533, 34.59651906350354], [-77.37626934968984, 34.59651092756758], [-77.3761407159981, 34.5964891046122], [-77.37549448559828, 34.59660816228705], [-77.37535263629246, 34.596099827109775], [-77.37520004531999, 34.59595444384027], [-77.37489864249582, 34.595637984031214], [-77.3747933125366, 34.59516391804698], [-77.3749980096606, 34.59475193312434], [-77.37499250986929, 34.594674546357346], [-77.37495901323504, 34.59459401829465], [-77.37484277809021, 34.59460701372302], [-77.37456489411464, 34.594680222712725], [-77.37406391311914, 34.59526899573847], [-77.37396691455154, 34.5954881630502], [-77.37377642638154, 34.59553952262699], [-77.37363167791845, 34.59618038207098], [-77.3735784772872, 34.59682437305963], [-77.37357075389147, 34.59703827830671], [-77.37355744662707, 34.597275481314774], [-77.37377572682885, 34.59766533079127], [-77.37394821077335, 34.59783302511376], [-77.37421770976644, 34.59816700922154], [-77.37451238949711, 34.59860087322391], [-77.37453324264958, 34.59863060596976], [-77.37456362036761, 34.59866595657973], [-77.37495454779987, 34.59896506219853], [-77.37499479419864, 34.599845382236765], [-77.37524573964629, 34.600193469904355], [-77.37522056911861, 34.600337953006054], [-77.3751135868226, 34.60080568240264], [-77.37495705388348, 34.60083207871994], [-77.37461487131065, 34.60107743957939], [-77.37456284261444, 34.601117269422296], [-77.37454961952983, 34.60112863260814], [-77.37453934705542, 34.60114435286611], [-77.37434476239781, 34.60136210541926], [-77.37416859774413, 34.60149877489981], [-77.37410642539741, 34.601564325371825], [-77.37401174206073, 34.601644915455246], [-77.37387111982522, 34.601769376234024], [-77.37377436158292, 34.601842437789735], [-77.37361320839045, 34.60191460332334], [-77.3735857232905, 34.601927667759895], [-77.37357726756791, 34.601937109917486], [-77.37352750123898, 34.601980542689176], [-77.37338014403393, 34.602119880804835], [-77.37330973192302, 34.60217059715526], [-77.37322567035243, 34.60244097826414], [-77.37298586989638, 34.602558663168935], [-77.3727058545146, 34.60255921364228], [-77.37222506207587, 34.60235632656451], [-77.37219767789196, 34.60236332647499], [-77.37218091159687, 34.60235125506099], [-77.37218074589924, 34.60233321375729], [-77.37180359206485, 34.60224016644845], [-77.37152667921315, 34.60230112958661], [-77.37140944347077, 34.602297741560015], [-77.37119353097962, 34.60224279652765], [-77.37078611478125, 34.60235639201579], [-77.37077517978193, 34.60211109426777], [-77.37062132501887, 34.601915144833356], [-77.3704513115646, 34.60191631882448], [-77.37047018580107, 34.60173046115305], [-77.37033053679657, 34.601437143512754], [-77.37024573648513, 34.6013184943287], [-77.37000736730037, 34.60094799846363], [-77.36983369233616, 34.60025025986379], [-77.36971202878733, 34.60027246535773], [-77.36971022799929, 34.600141675164984], [-77.36976328646288, 34.60005811295886], [-77.36955759075849, 34.59961222574849], [-77.36907185740145, 34.59941259013116], [-77.36904576578642, 34.59943666514319], [-77.36899829103388, 34.59944622457394], [-77.36793738178305, 34.59954786149317], [-77.36748089521438, 34.59960103816976], [-77.3674692400773, 34.59959327372495], [-77.36745220856093, 34.599599383146185], [-77.36726505995998, 34.5996446751846], [-77.36602840076179, 34.59996901317561], [-77.36589260454498, 34.5999936633401], [-77.36554391928748, 34.600366167057196], [-77.36549831607348, 34.60039205419455], [-77.3652805699248, 34.60077952631369], [-77.36540338915928, 34.601084459375066], [-77.36547519950366, 34.60120059070378], [-77.36569543876192, 34.601568905554146], [-77.36575393481209, 34.60170908049258], [-77.36589177171071, 34.60197409998821], [-77.36608482343334, 34.602153916572675], [-77.36636050624878, 34.60232226010605], [-77.3665297357452, 34.602459571997386], [-77.36667977357314, 34.6025939142185], [-77.36697382647652, 34.60255068281357], [-77.36746805106895, 34.60255435493385], [-77.36787589476512, 34.60251385874929], [-77.3680912914908, 34.60292215676236], [-77.36821218808531, 34.60295211052407], [-77.36825612021175, 34.60304503619477], [-77.3686408345998, 34.60327762890696], [-77.36865725509877, 34.603272853218456], [-77.36904437721776, 34.60306684987776], [-77.36939567889192, 34.60311276023079], [-77.36947548719057, 34.60310753734925], [-77.36983272856527, 34.60283513720152], [-77.3701743413619, 34.603103209026386], [-77.37037727425329, 34.60317967840918], [-77.37062096172937, 34.60291669582671], [-77.37092919774359, 34.60336258745381], [-77.37116801585883, 34.60358776559977], [-77.37114580349586, 34.603897127042465], [-77.37104051582523, 34.6041956723912], [-77.37080984600235, 34.60443294698376], [-77.37062034063285, 34.60463334350433], [-77.3704474675805, 34.60494410556782], [-77.37022603878222, 34.60507618607978], [-77.37009861934122, 34.605180437946274], [-77.36993786650402, 34.60531783157275], [-77.3698317618561, 34.60544068095271], [-77.36958805711376, 34.605678521508125], [-77.36958189797267, 34.60583497970544], [-77.3692500273655, 34.605929066586], [-77.36904324015866, 34.60605765462732], [-77.3689494907302, 34.60609406698723], [-77.36864905260347, 34.60616366725952], [-77.36839697991444, 34.606274595665276], [-77.36828486450477, 34.606323077289595], [-77.36825482990707, 34.606357406421985], [-77.36818656122432, 34.60637842139724], [-77.36772909607373, 34.60665371151677], [-77.36746635805626, 34.60679722777185], [-77.36733247325245, 34.60685243196673], [-77.36713610309555, 34.60694959708403], [-77.36707212638737, 34.60699865353661], [-77.3668307480721, 34.60718458873045], [-77.36667784975448, 34.60730584382686], [-77.36663799392808, 34.607334063747544], [-77.36657857897913, 34.60738553590737], [-77.36618587410467, 34.60776146688876], [-77.36588923423912, 34.608049020462744], [-77.36576882844989, 34.608221617169235], [-77.36555070255086, 34.60838263557088], [-77.3654949166086, 34.60843146460006], [-77.36544118588446, 34.60845626556316], [-77.36525505170817, 34.60859146535619], [-77.36510059855706, 34.60880656530763], [-77.36505531761001, 34.60887851005128], [-77.36493670679802, 34.60914376550307], [-77.36471505485596, 34.60935204983009], [-77.36454078668095, 34.609623647027846], [-77.36431176561909, 34.60998676036043], [-77.36418192041418, 34.610138123447946], [-77.3640591571202, 34.610295581305884], [-77.36381294921608, 34.610643170812565], [-77.3636612938336, 34.61105296835318], [-77.36359080721579, 34.611212110851746], [-77.36356326980139, 34.611259588566064], [-77.36352282489048, 34.61136177022313], [-77.36343774530721, 34.61165869829402], [-77.36332052487924, 34.611882482676265], [-77.36330494696087, 34.61191222207753], [-77.36319722327882, 34.612117874909245], [-77.36317111769887, 34.61216775838065], [-77.36312825648946, 34.6122481966171], [-77.3630763710936, 34.61234754799416], [-77.36301859814, 34.612450129138196], [-77.36294627074811, 34.612578551946136], [-77.36286181114306, 34.61272851683686], [-77.36281616982939, 34.6128095560237], [-77.36278341719975, 34.612867710650164], [-77.36273375659462, 34.61296477768898], [-77.36270927989597, 34.613010878388565], [-77.36270032452593, 34.61303850780413], [-77.36268584827177, 34.61309212947427], [-77.36267752703922, 34.61325406627353], [-77.36273357601702, 34.613366253483505], [-77.36276782149588, 34.61341643794565], [-77.36279248837472, 34.61344979578659], [-77.362850683825, 34.613739661525074], [-77.36294803697564, 34.613851959761064], [-77.36284191455451, 34.61398421927798], [-77.36273326154611, 34.61406604144174], [-77.36239505404063, 34.61435610931552], [-77.36235974378928, 34.61438360734721], [-77.3623389249426, 34.614397951396725], [-77.36230669795242, 34.614403533517354], [-77.3619446724783, 34.61453952495202], [-77.36157442510205, 34.614448483721766], [-77.36155052355144, 34.61445420747128], [-77.36153133402652, 34.614459760738455], [-77.361290683192, 34.61451506172851], [-77.36116863893807, 34.61454592446226], [-77.36115628609747, 34.614559823614954], [-77.36099734090915, 34.614557280804945], [-77.36077694787757, 34.61457299923671], [-77.36076208959675, 34.61457648660927], [-77.36074590037472, 34.61457603218851], [-77.36036788758382, 34.61460422163579], [-77.36004491040421, 34.614617649193676], [-77.35979994053181, 34.614542433290104], [-77.35957939005456, 34.614849887068786], [-77.35927696631853, 34.61470611025679], [-77.35913906698497, 34.614400161738224], [-77.35896982269256, 34.61423225951408], [-77.35883483935568, 34.614019390627185], [-77.35879145008771, 34.61396165271323], [-77.3584683946734, 34.613995494473336], [-77.35836335131523, 34.61405076248987], [-77.3580028923522, 34.61432772522089], [-77.35782264992332, 34.61439550668474], [-77.3576113513814, 34.61462000143666], [-77.35741408894354, 34.61486362760439], [-77.35721420328227, 34.61493485191832], [-77.35696646589031, 34.6151373464873], [-77.35721404631897, 34.615239817391945], [-77.35744268185323, 34.615247126293596], [-77.3576664974805, 34.61546116887493], [-77.3577743377272, 34.615691064711356], [-77.35778622845515, 34.61586849213754], [-77.35800193948441, 34.61621415463377], [-77.35802366553438, 34.61623546703135], [-77.35802456753254, 34.616258747907196], [-77.35819893001434, 34.61642924080161], [-77.3582123782459, 34.61642951443477], [-77.35839596099714, 34.61656541731143], [-77.35844417463433, 34.61657098975397], [-77.35844293250929, 34.61662309784241], [-77.35879000912844, 34.61686960104893], [-77.35884489088201, 34.61693066766349], [-77.35890016532602, 34.61698185352415], [-77.35918409872687, 34.61709493618162], [-77.35945879107015, 34.617030208075434], [-77.35949668925927, 34.617320563094054], [-77.35954379937506, 34.617350806502714], [-77.35957814096948, 34.61742228518887], [-77.35972881169457, 34.617549374090736], [-77.35978806297526, 34.61770318436768], [-77.35980070791703, 34.61794133613729], [-77.35977968335106, 34.61812894264713], [-77.35957767273479, 34.61838910376192], [-77.35943009701616, 34.6184448957428], [-77.35889725063947, 34.61856408238476], [-77.35878915468041, 34.61859961547542], [-77.358647652451, 34.61856398444641], [-77.35859206002559, 34.61858055635085], [-77.35854292903377, 34.61857210852456], [-77.35845932772968, 34.618600558628856], [-77.35839490448069, 34.618683924108204], [-77.35836330774711, 34.618723306253436], [-77.35833347146384, 34.61876160720184], [-77.35827186619919, 34.61906271798924], [-77.35800043985623, 34.61919324887276], [-77.35794789862854, 34.61924164007684], [-77.35786484435305, 34.61953229419297], [-77.35765376088492, 34.61970851424787], [-77.35721148462828, 34.62023514985609], [-77.35690333935149, 34.62033378862148], [-77.3565308583829, 34.62060287515447], [-77.35642281359202, 34.620693260078276], [-77.35641232771458, 34.62072496218282], [-77.35640739366868, 34.62073694699796], [-77.35638753161358, 34.620777753731595], [-77.35619577256949, 34.621372366782595], [-77.35600293947832, 34.62164423779335], [-77.35563363381041, 34.622096539076495], [-77.3554551736639, 34.622380118183116], [-77.3548448274858, 34.62275774092167], [-77.35421418281048, 34.622920720083066], [-77.35348924847517, 34.62346527295076], [-77.35326753948566, 34.62342760523352], [-77.3531778069498, 34.62365235760668], [-77.35296198481976, 34.62377792768601], [-77.3522144392725, 34.62408726952802], [-77.35207474635742, 34.62417201952823], [-77.35187671559137, 34.62443913350634], [-77.3518155121917, 34.624779436071584], [-77.35176689736909, 34.625003774793086], [-77.35162193257496, 34.625103880086606], [-77.3511271480265, 34.62571800250015], [-77.35111638432377, 34.625730790959], [-77.3511103948107, 34.62574366838495], [-77.35107874733549, 34.62577456470912], [-77.35060017535322, 34.62639004751882], [-77.35054119974284, 34.6265281410037], [-77.35033140165832, 34.62667131268205], [-77.35013852250599, 34.62681937258246], [-77.35005094068939, 34.62684237696742], [-77.34994334358704, 34.626875162154576], [-77.34974227838939, 34.62689918412152], [-77.3495129562405, 34.626902508219175], [-77.34945492635408, 34.62706200776395], [-77.34917947256709, 34.627239819228244], [-77.34917051728995, 34.62723948117418], [-77.34916776726521, 34.62724741574958], [-77.34917076280493, 34.62725707032152], [-77.34929578001089, 34.6276575630161], [-77.34918322491315, 34.627929037803185], [-77.3490173063069, 34.62806966534109], [-77.34880663942783, 34.62824463642216], [-77.34873508633873, 34.62825805002465], [-77.34861214092697, 34.628363492712914], [-77.3484630047973, 34.62849687744659], [-77.34840745415079, 34.62853913647212], [-77.34833655844731, 34.62863330941622], [-77.34811079611887, 34.62892936155473], [-77.34794944787343, 34.62912682587235], [-77.34782060851825, 34.62932562974033], [-77.34765105304892, 34.62957145591449], [-77.34753537477619, 34.62972652506952], [-77.34744994313573, 34.629826727030334], [-77.34728178158885, 34.63004416927808], [-77.34722844301275, 34.63010716445741], [-77.34719265324642, 34.630139189791706], [-77.34708774360983, 34.63023433736018], [-77.34692208489689, 34.630385595490424], [-77.34685278031704, 34.63042363472695], [-77.34666909345353, 34.63055030787625], [-77.34664803932846, 34.63056608337061], [-77.3466404621547, 34.63057700826576], [-77.34642770000309, 34.63069396814703], [-77.34638609915656, 34.630904056347376], [-77.3461016889772, 34.63147222396019], [-77.34603513593112, 34.63166187385364], [-77.34592034107375, 34.63177197651389], [-77.34551508679982, 34.63220060181472], [-77.34539493413888, 34.632343147956625], [-77.3453563389227, 34.63236254887988], [-77.34481530066161, 34.6324381913071], [-77.34477353989614, 34.632436731730046], [-77.34470887071014, 34.63242525708412], [-77.34425228872, 34.63240491686456], [-77.34410973864695, 34.63186586527978], [-77.34407878357773, 34.631749986835636], [-77.34409686845449, 34.63156450055618], [-77.34392943589201, 34.63103029025603], [-77.34387665620395, 34.63093374095141], [-77.34384989593245, 34.63090539154034], [-77.34380130922484, 34.630784484478845], [-77.34344789265356, 34.630148611430684], [-77.34323611383259, 34.629824506162606], [-77.34318620301921, 34.62976254194769], [-77.34291064163425, 34.62953794725486], [-77.34276344834988, 34.629612350768994], [-77.34256023547233, 34.62975184905962], [-77.34232518119452, 34.62981026960714], [-77.34228725190391, 34.62983057575779], [-77.34205594797857, 34.62986522359272], [-77.34200595958978, 34.62981459077099], [-77.3416958197428, 34.62954515648869], [-77.34171409566525, 34.6293940329373], [-77.34178857869726, 34.62911042435337], [-77.34161936785836, 34.628873314972424], [-77.3415584202786, 34.62872002321642], [-77.34151952750753, 34.628631197307165], [-77.34144040372945, 34.62859287165243], [-77.3410431221275, 34.62833523121454], [-77.34070299832075, 34.62810888491427], [-77.3406352528295, 34.628086017423165], [-77.34052427971801, 34.627850743067725], [-77.34064996843668, 34.627844928149905], [-77.34074909189606, 34.627143136992544], [-77.34086328099603, 34.626832789064416], [-77.34093985791134, 34.62633474623799], [-77.34067707695563, 34.62638664719851], [-77.34060149149698, 34.626588328275275], [-77.34044256242635, 34.62681254418079], [-77.34008482865752, 34.62687977891588], [-77.33984445859896, 34.62702186876249], [-77.33952982612875, 34.62683069966629], [-77.33940655490596, 34.62680699802273], [-77.33917600939901, 34.62688102446292], [-77.33894713146312, 34.62683644794482], [-77.33849705843545, 34.62660827603914], [-77.33847955560917, 34.62660075421531], [-77.33815304623145, 34.62611273864458], [-77.33780513149856, 34.62597878229812], [-77.33770506206452, 34.62593193040622], [-77.33765719082933, 34.62594654583594], [-77.33729023872246, 34.62616521957888], [-77.33712305773749, 34.62622140345993], [-77.33693124555529, 34.62640119175267], [-77.33721001259467, 34.626757583325016], [-77.33690487873073, 34.62682680573003], [-77.33722860141371, 34.62679516439091], [-77.33723758684327, 34.626791608736085], [-77.33726260422685, 34.626806697114105], [-77.33768729945169, 34.62703493985573], [-77.33772674035953, 34.62724013643852], [-77.33765208819537, 34.62756824420946], [-77.3376173469293, 34.62780525943583], [-77.33766085100808, 34.628235319996286], [-77.33781015422889, 34.62839054172128], [-77.33788374407243, 34.62841498165131], [-77.3381453456971, 34.62842403460003], [-77.33820804608501, 34.62843598442193], [-77.33828322564307, 34.62842708441879], [-77.33874563745076, 34.62838346692716], [-77.33889349765218, 34.628661413280554], [-77.33908686482846, 34.62885586126906], [-77.33911525132203, 34.62905540139393], [-77.33909535013942, 34.62918546129207], [-77.33912435025002, 34.62981057936988], [-77.33912916034991, 34.62989748567238], [-77.33912820814355, 34.62992205381655], [-77.3391127180473, 34.63032173906058], [-77.33910469616956, 34.63052872542034], [-77.33910578662343, 34.63054047658534], [-77.33911278384628, 34.630549678442065], [-77.33911761258501, 34.630540786619605], [-77.3392644755578, 34.630508093404394], [-77.33946819706216, 34.630396917480226], [-77.3395818763071, 34.630307043483974], [-77.33982717632361, 34.63012241759081], [-77.3400425901389, 34.63006998634168], [-77.34020522421648, 34.63008561992392], [-77.34050422534746, 34.63030592602241], [-77.34067846982188, 34.63029662848624], [-77.34074800175158, 34.6305192659314], [-77.34080562547877, 34.630782482729614], [-77.34085005499864, 34.63092725437721], [-77.34087306556087, 34.63105940664516], [-77.34098531182796, 34.631107236113024], [-77.34115228879361, 34.63130776275816], [-77.34128917692841, 34.63138356154265], [-77.34138296372471, 34.6314932409765], [-77.34196423864783, 34.63204029446409], [-77.34192526118443, 34.63242026947627], [-77.34193473270467, 34.63288834082447], [-77.34186166511807, 34.63310303786458], [-77.3419310398352, 34.63355696238035], [-77.34198767518592, 34.63372506876714], [-77.34201053720733, 34.633909283690336], [-77.34216924426528, 34.63423342620527], [-77.34229963312367, 34.63452623873128], [-77.34231948475374, 34.63486498509783], [-77.34233564166601, 34.63494329381619], [-77.34227799357748, 34.63516623358505], [-77.34222580631314, 34.635380370126306], [-77.34222076651616, 34.63544005520984], [-77.34218955839768, 34.63550744581254], [-77.34197148257327, 34.635874548105676], [-77.3419444077874, 34.6358804932282], [-77.34187182494401, 34.635970484898195], [-77.34180856949781, 34.63605606281326], [-77.34169187045337, 34.636216789319846], [-77.34166428652765, 34.63625497201469], [-77.3416268789678, 34.63630658465934], [-77.34135190303249, 34.63663055419533], [-77.34121926980521, 34.63678453568655], [-77.34119262704145, 34.636815466906], [-77.3411780568165, 34.63684591949878], [-77.341046319415, 34.63701248731742], [-77.3409041029369, 34.637075659399386], [-77.34066978411326, 34.6372819594909], [-77.34065320563086, 34.637312698233146], [-77.34063335027368, 34.637321338818026], [-77.34060297114206, 34.6373347231184], [-77.34044045596826, 34.637447685090535], [-77.34035573573433, 34.63753287408599], [-77.34024692175409, 34.63760061298521], [-77.34005897548113, 34.63764912960862], [-77.33977833034753, 34.637819372857386], [-77.3397715863415, 34.63782405777514], [-77.33976680223334, 34.637827900379776], [-77.33957326663366, 34.63797251880424], [-77.33951215856516, 34.63811409874441], [-77.33938134175341, 34.63812695117425], [-77.33926187638275, 34.63831920010515], [-77.33923964182377, 34.63835103249355], [-77.33907168300107, 34.638505088009325], [-77.33897466958759, 34.63862552150453], [-77.33883192982688, 34.638545064059606], [-77.33862450216321, 34.638406678676546], [-77.33839770180728, 34.638256713619626], [-77.33823447813157, 34.638128048335176], [-77.33799088950508, 34.63791408938894], [-77.33771492985674, 34.637905547264396], [-77.3375463229437, 34.63788954951724], [-77.33741612760133, 34.63790397563605], [-77.33721097749084, 34.6378137578338], [-77.33718447428939, 34.63778859028337], [-77.33712775511123, 34.63776810144235], [-77.33693808866872, 34.637702371283545], [-77.33685602117724, 34.63764033987131], [-77.33652578076972, 34.6373706387502], [-77.33622033667143, 34.63717726374891], [-77.3361213987018, 34.63717047228744], [-77.33606226574848, 34.637140287171775], [-77.33600746923422, 34.637077847852105], [-77.33557235813609, 34.63696218795815], [-77.33542795641502, 34.63643736094374], [-77.33543531220326, 34.63631237197543], [-77.33543639287355, 34.636111592586694], [-77.33543203078472, 34.63609202893937], [-77.33539499541348, 34.636072936044116], [-77.33524054416728, 34.63597254518814], [-77.33521153415509, 34.635954567289176], [-77.33507557535792, 34.63594148754365], [-77.33507439291049, 34.635942197385496], [-77.33506701412615, 34.6359409155559], [-77.3349330200919, 34.63593196320024], [-77.33491199975292, 34.63593055878074], [-77.33488315714503, 34.6359286316736], [-77.33463731119812, 34.63615670188227], [-77.33432841008607, 34.635980949366214], [-77.33406091391788, 34.63565697310669], [-77.3339893982867, 34.63550414397639], [-77.33388356783071, 34.63499519872802], [-77.33387619504573, 34.63483833085792], [-77.33387361232019, 34.63465224930232], [-77.33387773595516, 34.634577274369136], [-77.33387563694177, 34.634416413613934], [-77.3337856082183, 34.63430683351191], [-77.33370644840942, 34.63443962799549], [-77.33376210906003, 34.63454812330324], [-77.33366728328141, 34.6345145989509], [-77.33352439221545, 34.634659787326214], [-77.33358899123158, 34.63487773764459], [-77.33322309294067, 34.635490628576676], [-77.33316702661803, 34.63566068588567], [-77.3329929386259, 34.63580350640464], [-77.33298284626639, 34.6358223478973], [-77.33296995135143, 34.6358240768244], [-77.33294916520298, 34.635841536605504], [-77.33277245818368, 34.63595953597587], [-77.33267821748994, 34.63596536943373], [-77.33259662751976, 34.635965462980195], [-77.33242172427693, 34.635965663315766], [-77.33236850924092, 34.63601716439152], [-77.33211470126753, 34.63601260902263], [-77.33204875654056, 34.63601894476291], [-77.3320089380355, 34.635980938769414], [-77.33175902807952, 34.63601412254653], [-77.33172850032265, 34.63601821746361], [-77.33169810846698, 34.63602229689957], [-77.33160804405058, 34.635993508098], [-77.33143335238171, 34.63597245145582], [-77.331398262991, 34.63596778601095], [-77.33133776583611, 34.63595438316807], [-77.33106863096704, 34.63592036613191], [-77.33092039945667, 34.6358982806228], [-77.33090456732513, 34.635900402572624], [-77.33089300946435, 34.635894199696025], [-77.33086005838345, 34.63588512563749], [-77.3307342311456, 34.6358492011496], [-77.33063722000719, 34.63582660488685], [-77.33043621474333, 34.63577977520072], [-77.33040623004536, 34.63580989781626], [-77.33035078109376, 34.635819678932], [-77.33030787617403, 34.63574987860157], [-77.33004987872334, 34.63562940411894], [-77.32988486294795, 34.635594108036955], [-77.32964006325773, 34.63541949460374], [-77.32956579663795, 34.63507786179085], [-77.3293251478359, 34.635208484328736], [-77.32899088429342, 34.63506804171082], [-77.32894907982208, 34.63505827208884], [-77.32891897729085, 34.635096415474564], [-77.32873887947724, 34.63519563373428], [-77.32870994574083, 34.6353330488424], [-77.32869764926049, 34.63549080086213], [-77.32865807091663, 34.63555419454803], [-77.32847569859622, 34.6357606832632], [-77.32835860546994, 34.63584150786455], [-77.32833330443478, 34.63584864106359], [-77.32828113180769, 34.63589899915508], [-77.32819918188581, 34.635977797922585], [-77.32812547971122, 34.636049237521746], [-77.32808403235384, 34.63625242672791], [-77.32793853788247, 34.6362739767021], [-77.3278243511422, 34.63634358009676], [-77.32779336264397, 34.63634808920158], [-77.32774906143814, 34.63637824394894], [-77.32765380046115, 34.636450159722486], [-77.32760367025467, 34.636471156363655], [-77.32735210920629, 34.63654190280864], [-77.32719833705133, 34.63659839167428], [-77.32710930982222, 34.636676812839255], [-77.32706198511934, 34.63669126425862], [-77.3269908014747, 34.636731285910265], [-77.32665553163108, 34.636920370982565], [-77.32650047723963, 34.63708334735138], [-77.32623558786429, 34.63707828143297], [-77.32615403642455, 34.63711936544181], [-77.32603454468193, 34.63717999226246], [-77.32590377238265, 34.63730013253435], [-77.32580081805035, 34.637456843272375], [-77.32540125193665, 34.63758185287052], [-77.3253296488759, 34.63762941715848], [-77.32524156187932, 34.637601893140555], [-77.32507154190752, 34.63766054110959], [-77.32502303310667, 34.63769665851874], [-77.32498506691431, 34.63769602320512], [-77.32475796897702, 34.637707290079874], [-77.32471079249936, 34.63773588061968], [-77.32465924879557, 34.637725407429514], [-77.32438807309335, 34.63772290111617], [-77.32422257091402, 34.63765125106109], [-77.32420713261396, 34.63764976262148], [-77.32404539005766, 34.637610465168194], [-77.3238935022531, 34.63747359828221], [-77.32375362332924, 34.63739961963448], [-77.32367239030597, 34.637346987219935], [-77.3235388844615, 34.63725077037472], [-77.32333153145993, 34.63712866750634], [-77.32331537091989, 34.63711928723591], [-77.3233056446059, 34.6371146550535], [-77.32329369363647, 34.637117380222705], [-77.32310526156103, 34.637159693062486], [-77.32301206415941, 34.637188031343655], [-77.32300690505274, 34.63722113215038], [-77.32282182347852, 34.63734403982883], [-77.32283281658724, 34.63794865181981], [-77.32263525982256, 34.63783717979307], [-77.32283848369912, 34.63804024936362], [-77.32257499127701, 34.63825899129142], [-77.32234664946502, 34.6382350094601], [-77.32225446562983, 34.63825694586817], [-77.32203901455226, 34.638149864299535], [-77.32181749468747, 34.63778829963451], [-77.32176429935541, 34.63769108569399], [-77.32189381721449, 34.63763726250053], [-77.32212388279159, 34.63760633318704], [-77.3221646754668, 34.63767505491245], [-77.32244399783853, 34.637658539936325], [-77.322311748107, 34.63738400495731], [-77.32216343507955, 34.63728882947892], [-77.32208536054503, 34.63725820976519], [-77.32204952671343, 34.63723585727243], [-77.32197832124604, 34.63722358832816], [-77.3214124600479, 34.637251578974706], [-77.32090616227256, 34.63729655812758], [-77.32077096215659, 34.63724521932711], [-77.32048671999726, 34.63697901194114], [-77.32022324593686, 34.6369190802927], [-77.32006959220104, 34.636940509747866], [-77.31994789095172, 34.6368977173157], [-77.31973177389202, 34.63685226292982], [-77.31968327989628, 34.63684756502887], [-77.31957791512659, 34.636883137547784], [-77.3195399803017, 34.63694827809996], [-77.31944944970351, 34.63704055459614], [-77.31927105108144, 34.6372633778789], [-77.31923658560167, 34.63733230257372], [-77.31912635486233, 34.63737584247804], [-77.31890074306243, 34.63749659907356], [-77.318595243331, 34.63727926773652], [-77.31853616794666, 34.63727501165073], [-77.3184408896009, 34.6372564780669], [-77.31820505021199, 34.63722015235965], [-77.31806045265753, 34.637189972538614], [-77.31770359910519, 34.637056254304596], [-77.31758700411606, 34.6369792988598], [-77.31748199444915, 34.63680730236667], [-77.31719653667592, 34.63660443486419], [-77.31701411518334, 34.63630678956595], [-77.31691585530707, 34.63601234192707], [-77.3167927738834, 34.63549315692151], [-77.31669472574693, 34.63495791282343], [-77.31672131036754, 34.63465898114035], [-77.31672693755567, 34.63432056501962], [-77.31671369464267, 34.634117430240096], [-77.31659320054516, 34.633832570129925], [-77.31660503779902, 34.63375870249127], [-77.31655549347794, 34.63378490514124], [-77.31633346373002, 34.633722342436855], [-77.31624120913368, 34.6338138713887], [-77.315885407676, 34.6334614658342], [-77.31576128519183, 34.633418476717864], [-77.31555493718201, 34.63358416905533], [-77.31502066998625, 34.633204130027174], [-77.31491563749782, 34.63308546591185], [-77.31486692556149, 34.632803216761644], [-77.31468610467279, 34.63241403714889], [-77.31468142506337, 34.632406655492], [-77.31467950459269, 34.63240528119849], [-77.31467815869483, 34.63240476372736], [-77.31467435454887, 34.63240305995175], [-77.314503105211, 34.63232994280098], [-77.31439795104222, 34.63238867260217], [-77.31435552172907, 34.63239206432398], [-77.31426310365079, 34.63246398615919], [-77.31418192232219, 34.63261047595472], [-77.31410705416835, 34.63274911854646], [-77.31384387970282, 34.633365406950674], [-77.31384235606522, 34.63362816750691], [-77.31336208504374, 34.63386452544583], [-77.31306055368546, 34.63391505408657], [-77.31261484263901, 34.63353383154576], [-77.3124363399043, 34.633401413874346], [-77.31231823982571, 34.6334058910908], [-77.31208583936615, 34.63332209947802], [-77.31197319546507, 34.63328148601133], [-77.31191032562195, 34.63329478759243], [-77.3116687368066, 34.63335943159165], [-77.31121278603, 34.63352751069324], [-77.31097187352131, 34.633616319060614], [-77.31098220566116, 34.63398369452117], [-77.31119692824007, 34.63419897024076], [-77.31134616139617, 34.634410954617685], [-77.3115243416617, 34.63452722641878], [-77.31173974104688, 34.63477960903673], [-77.31204125240613, 34.63521672645962], [-77.31263513524479, 34.635302800295094], [-77.31338962234024, 34.635959561822624], [-77.31343931779939, 34.63600646786442], [-77.31342433940414, 34.63724243856848], [-77.31329545315393, 34.63766040005312], [-77.31354988009028, 34.63808247861548], [-77.31389036876799, 34.63805185375364], [-77.31417843722548, 34.63794689728935], [-77.31485389294096, 34.63779728665713], [-77.31507957204653, 34.63759704993907], [-77.31517612167363, 34.63754398187099], [-77.31569581043472, 34.63747751557508], [-77.31581178762707, 34.63747033754197], [-77.3161977262567, 34.63743327414325], [-77.31633149718697, 34.63745492332459], [-77.31661158598779, 34.637627918490494], [-77.31664767335866, 34.63769045299089], [-77.31685353761625, 34.63801674113345], [-77.31700237987175, 34.63813608332325], [-77.3171275906, 34.63823179100967], [-77.31719904009715, 34.63832069956453], [-77.31740674548175, 34.63829277751658], [-77.31745294899477, 34.638257932041675], [-77.31752038085361, 34.63825861468667], [-77.3177514757703, 34.638150348547306], [-77.31820659373093, 34.638048302086546], [-77.31837335526757, 34.63805891604339], [-77.31852857365897, 34.63800580740212], [-77.31867798396264, 34.63798175205326], [-77.31882569777693, 34.63797077351228], [-77.31906185381547, 34.638299473074], [-77.31921308311033, 34.63835175718087], [-77.31934188155279, 34.63851962721853], [-77.31960818068944, 34.6390142282138], [-77.31979951661067, 34.63930086665531], [-77.31966036762778, 34.63973039024839], [-77.31959809537341, 34.63988498997837], [-77.3194692817392, 34.64019011047619], [-77.31946885337554, 34.64021892407589], [-77.3194528959987, 34.64024810603189], [-77.31940127963519, 34.64027443906728], [-77.31914374254667, 34.64058267562357], [-77.31907892782169, 34.64066560695544], [-77.31899133073327, 34.640774026883975], [-77.3189462707276, 34.64091395067838], [-77.31890271409169, 34.641024965239154], [-77.3188649190348, 34.64111692902341], [-77.3187907753204, 34.641482447875674], [-77.3187779803256, 34.6419728187155], [-77.31877598953642, 34.642241440674354], [-77.31870755508129, 34.64279464178741], [-77.3189558111786, 34.64240939813669], [-77.31918266536566, 34.64209191807321], [-77.31976741065229, 34.64184505876289], [-77.31977259974107, 34.641841166855684], [-77.31977472469157, 34.64183944344991], [-77.31978381680399, 34.641834940062566], [-77.32015681058714, 34.64152890297228], [-77.32034493332833, 34.641502730481285], [-77.32053841104582, 34.64146700318283], [-77.32090905162805, 34.64156408867462], [-77.32097433548509, 34.641448658400634], [-77.32114444428751, 34.64141536809021], [-77.32158315007725, 34.641292015735914], [-77.32177775583914, 34.641309751404506], [-77.32197623558886, 34.641226021756935], [-77.32219164649177, 34.64113379727677], [-77.32254517780885, 34.64093873459791], [-77.3227948210492, 34.64094907510843], [-77.32304623500016, 34.641094821943994], [-77.32314390786782, 34.64109335595025], [-77.32328480653442, 34.641196527870505], [-77.32336444154004, 34.641187774963], [-77.32345541943972, 34.641050438191535], [-77.32363716641292, 34.64107305190184], [-77.32384853945263, 34.6409725135279], [-77.3240334969459, 34.64074070378438], [-77.32432098512339, 34.6408674549596], [-77.32444196024021, 34.64085935372606], [-77.32468147644468, 34.64077920140782], [-77.32495083709438, 34.64076864713219], [-77.32536464467248, 34.64099297662718], [-77.32547975602385, 34.64105398235537], [-77.32581351119046, 34.641356776142544], [-77.32607840489621, 34.641359104825014], [-77.32619499574798, 34.641161801358514], [-77.32668769918976, 34.64120488530461], [-77.32711140849548, 34.641083556269884], [-77.32728647878287, 34.64099830605032], [-77.32741068961755, 34.640962407144904], [-77.32789465346103, 34.64083853083128], [-77.32796996590955, 34.640817350258246], [-77.32817773279592, 34.640683971257204], [-77.32827134050875, 34.64043144502791], [-77.3284379964838, 34.640355885428185], [-77.32868859944114, 34.640257516934426], [-77.32900121757933, 34.63997226592144], [-77.32915591922188, 34.639922834539576], [-77.32947311725067, 34.639852539223256], [-77.3296090851708, 34.639811008841406], [-77.33011403576316, 34.63973177174059], [-77.33023224283731, 34.63972590213432], [-77.33034397197993, 34.63969762424924], [-77.33073581234108, 34.63964888791354], [-77.3308808076558, 34.63976731592396], [-77.33123902960043, 34.639800672709875], [-77.33150627765276, 34.64022739579016], [-77.33165132371053, 34.640415960562365], [-77.33197868882667, 34.640632315620344], [-77.33250186409803, 34.6417126768776], [-77.33249619053723, 34.641779563523386], [-77.3325358904267, 34.6418251492348], [-77.33258533513275, 34.64187857444277], [-77.33274360822405, 34.641938409234626], [-77.33344284403402, 34.64232569111775], [-77.33392640457515, 34.64217995114653], [-77.334063664186, 34.642244712536254], [-77.3342964648267, 34.6420537812123], [-77.33444629190383, 34.6419340059285], [-77.33450328325537, 34.641864374398764], [-77.33471885557456, 34.64178088398206], [-77.33491457347, 34.64170825276767], [-77.33510021380462, 34.64164863640367], [-77.33519869840848, 34.641719787764124], [-77.33533512676668, 34.641689019130816], [-77.33542375615154, 34.641665607748436], [-77.33553691423134, 34.64162424342754], [-77.33561051436712, 34.641612508641956], [-77.33570567795104, 34.64147539202865], [-77.33578229352618, 34.641439257025056], [-77.33588039422855, 34.641315233404974], [-77.33594601280562, 34.64092483534129], [-77.33622459667995, 34.64087134847058], [-77.33650403274558, 34.64085768388854], [-77.33748937917322, 34.64103132245784], [-77.33753363256035, 34.64101327013704], [-77.3375682659089, 34.64104685164961], [-77.33760513524587, 34.641078552449706], [-77.33805913649128, 34.64122309081769], [-77.33819914546518, 34.6411389432022], [-77.33864043123448, 34.64122031058416], [-77.3388722932653, 34.64130260118779], [-77.33907701846022, 34.64150402360781], [-77.33923584761574, 34.641698743892924], [-77.33928256872638, 34.64175123009364], [-77.33944041911548, 34.64193263560762], [-77.3395541307275, 34.64207705636188], [-77.33970648922411, 34.642267739705076], [-77.3398141820408, 34.64234073749077], [-77.33985584090925, 34.64245764298714], [-77.3399545690149, 34.64266569577632], [-77.34009465735475, 34.6429335397768], [-77.34021682950505, 34.64321428764011], [-77.34022887288528, 34.64324186683831], [-77.34023235938704, 34.643249958282986], [-77.34023853030983, 34.64326443372241], [-77.34036280617991, 34.64355075404009], [-77.34041325967895, 34.64364712565945], [-77.34046728219836, 34.64381162233073], [-77.340562258877, 34.64404867162332], [-77.34062031943856, 34.64418903223842], [-77.34070996236751, 34.64423939695368], [-77.34074503250865, 34.644249660928466], [-77.34085204243951, 34.644304317569336], [-77.34102009203782, 34.644407827615254], [-77.34107469108542, 34.64443756962403], [-77.34110707709173, 34.64445815488965], [-77.34127229357439, 34.644563169781534], [-77.3414433683569, 34.64453849004785], [-77.34155118164635, 34.64464231739224], [-77.3415752896244, 34.64475361765571], [-77.34159740088742, 34.64486668000671], [-77.34163641500115, 34.64516722484261], [-77.34162136283771, 34.64522267048993], [-77.34165475347972, 34.64558540184404], [-77.34165482719638, 34.64558669506523], [-77.34165501388087, 34.64558770570895], [-77.34165457338275, 34.64558942571325], [-77.34162355719278, 34.646012984648436], [-77.34160203969061, 34.64620549129064], [-77.34158925113907, 34.64628915853152], [-77.34156821699888, 34.64644257826674], [-77.34156489771698, 34.64650443740288], [-77.34155123641061, 34.6466682566267], [-77.34153921813486, 34.64681408422933], [-77.34153397319996, 34.64686927597882], [-77.34152893661876, 34.646982642784415], [-77.34152524749264, 34.64713466218839], [-77.34151543222244, 34.647286612893915], [-77.34151502094062, 34.64729387481602], [-77.34149903383243, 34.647443810732135], [-77.34141780417363, 34.647597351553415], [-77.34136756465739, 34.64773611181755], [-77.34142160082182, 34.6480387643314], [-77.3413551672855, 34.64815981048248], [-77.34125592319639, 34.648551340854475], [-77.34103468220042, 34.64887711153311], [-77.34082007224046, 34.64881170472382], [-77.34047344764632, 34.64907227028379], [-77.34043665115702, 34.64908757236347], [-77.34031033386233, 34.6488211321895], [-77.34023000906137, 34.64885589007336], [-77.34015852835066, 34.64883463591235], [-77.34013539429137, 34.648839781103895], [-77.34008408401525, 34.64892633318895], [-77.33995619976793, 34.64898481649639], [-77.34010073816926, 34.649009204792705], [-77.3401996647489, 34.64904022516428], [-77.34042522039498, 34.64913144317091], [-77.34044062660737, 34.649137246965836], [-77.34044688837258, 34.64913851202754], [-77.34046509530201, 34.64914756905773], [-77.34097837567847, 34.649220771635264], [-77.34105582403369, 34.649466888876844], [-77.34121418417031, 34.64977025857418], [-77.34125194441079, 34.649827310719786], [-77.34129313162592, 34.649856314424134], [-77.34167195352519, 34.650143940171816], [-77.34189922867877, 34.6499927100985], [-77.34211067988991, 34.65001649969988], [-77.3423170011899, 34.6500150447517], [-77.34237011669228, 34.65013048528877], [-77.34259552474953, 34.650271121422634], [-77.34272636559723, 34.650352755077705], [-77.3428454782568, 34.65048723220927], [-77.34300262082215, 34.650703584562365], [-77.34310483316618, 34.65075164025986], [-77.34312872199874, 34.65087034975274], [-77.34326669873589, 34.65100527026169], [-77.34330574940276, 34.651057048278815], [-77.34340738270365, 34.65112441303032], [-77.34348066392846, 34.65115575259269], [-77.34363070212686, 34.65122344036691], [-77.3437582432034, 34.651277074924785], [-77.34397969840026, 34.65131594374443], [-77.34409930253446, 34.65138097246388], [-77.34419608448462, 34.65146163615148], [-77.34428258514492, 34.651496360211965], [-77.3443162481899, 34.651510782168955], [-77.34438740077094, 34.65154156204622], [-77.34443535672365, 34.6515620173004], [-77.34445792340665, 34.651572225527005], [-77.3445242223186, 34.65160221638302], [-77.34463402505216, 34.65165188660193], [-77.3446794493884, 34.65165285495161], [-77.34480236862115, 34.65169295365706], [-77.3449597506229, 34.651672002818444], [-77.34510519197164, 34.651865020858274], [-77.34516657574305, 34.651911977532926], [-77.34532689291667, 34.65201783611986], [-77.34535133223889, 34.652034681784784], [-77.34535648110824, 34.652034755057244], [-77.34551831727086, 34.65206898480785], [-77.34578826798675, 34.652193242025085], [-77.3458453714162, 34.65221504027037], [-77.34593930998646, 34.652255862179274], [-77.34620073196766, 34.65227818572186], [-77.34633636864254, 34.65239115597385], [-77.34648934323235, 34.652518988640075], [-77.34658113674172, 34.6525777381341], [-77.34679384819003, 34.65263363799262], [-77.34695005256404, 34.652820131664534], [-77.34737293458429, 34.653241671609706], [-77.34755479588216, 34.65342355881624], [-77.34773376769583, 34.653533082189426], [-77.3479744002947, 34.653741049991595], [-77.34823320509221, 34.653967552113286], [-77.34837892512955, 34.65408840303803], [-77.34851514341327, 34.65423432596159], [-77.34894956003765, 34.65471318959428], [-77.34913102096317, 34.6548958978578], [-77.3493094062368, 34.65508577846455], [-77.34931974263708, 34.65509639438683], [-77.34933039862297, 34.65510397413741], [-77.34957316841046, 34.655168771088036], [-77.34967262810355, 34.65521356413042], [-77.34995508067638, 34.655419115997745], [-77.34983944044161, 34.65578990062502], [-77.34982136645822, 34.65585947912992], [-77.34983411258719, 34.65589100544667], [-77.34957886211693, 34.656314780777805], [-77.35011711474958, 34.656388459630804], [-77.35025259478032, 34.656505276186664], [-77.35054331718109, 34.656692924130446], [-77.35087192644197, 34.65698121632114], [-77.35101384297832, 34.657106180131564], [-77.35136450016361, 34.65736368831787], [-77.35175264969848, 34.65770426815572], [-77.35217836124188, 34.65804897338256], [-77.35255913712439, 34.65842113754792], [-77.35299476019034, 34.65872925353001], [-77.3532547980968, 34.65869581342499], [-77.35384235767835, 34.65896440957185], [-77.35395539098221, 34.6589949739531], [-77.35400097125228, 34.659033680143835], [-77.35405400780202, 34.65907620446882], [-77.35475226262899, 34.65977268138578], [-77.35478600181719, 34.65977611341798], [-77.35482485750012, 34.65981433135205], [-77.35541423009523, 34.659879773190575], [-77.35587547553314, 34.659915668716415], [-77.35610662211724, 34.66013807203771], [-77.3562754199381, 34.660272189773906], [-77.3564196619785, 34.660439270461914], [-77.3565014642047, 34.660508991837034], [-77.35665775718715, 34.66066358402448], [-77.35684999540663, 34.660802159174615], [-77.35688584050858, 34.6608278762835], [-77.35714312961966, 34.660850933066364], [-77.35754552726927, 34.661128614157484], [-77.35757365010495, 34.66114691454026], [-77.35772621726298, 34.661947801044064], [-77.35772394831771, 34.66199785809269], [-77.35770215437232, 34.66256599047806], [-77.35756644714856, 34.66261892665521], [-77.35742664910286, 34.66283296494303], [-77.35738332857579, 34.66293561892749], [-77.3574452328705, 34.663124120546044], [-77.35761672426503, 34.66315338652215], [-77.3576598935629, 34.663083316792516], [-77.35774746122517, 34.66309989261241], [-77.35797671980946, 34.66306642620113], [-77.35840909982514, 34.66354200574132], [-77.35839682393325, 34.663738435840074], [-77.35838371809011, 34.66378918661869], [-77.35838903200883, 34.66385972894585], [-77.35841478337095, 34.66402861223319], [-77.35840434790288, 34.66412685395991], [-77.35840221875776, 34.66415218523122], [-77.35840740849326, 34.66419514522537], [-77.35841089038621, 34.664272840589675], [-77.35843561896496, 34.66442866968096], [-77.35846013056393, 34.66447811698302], [-77.35848479049072, 34.664506381372675], [-77.35847035445478, 34.66457008096749], [-77.35851630732814, 34.66482907688426], [-77.35854508144311, 34.66498548558882], [-77.35854236931789, 34.665091831461474], [-77.35854838450145, 34.66519859196908], [-77.35854922162972, 34.66527825418844], [-77.35857002028621, 34.66546944617244], [-77.3585920317465, 34.665951725466755], [-77.3585923189355, 34.66595319002992], [-77.35859224128451, 34.66595378077359], [-77.35859213613287, 34.665954547172], [-77.35856172720044, 34.66637095394374], [-77.35857915372313, 34.66644296552897], [-77.35859873540836, 34.66673667205732], [-77.35855882043916, 34.66693314583919], [-77.35858274799462, 34.66722270304641], [-77.35859787567355, 34.66741516747955], [-77.35841040699626, 34.66767008722348], [-77.35829158035767, 34.667944632914526], [-77.35814111819073, 34.66810760753117], [-77.3579425395208, 34.66823627647543], [-77.35793529231981, 34.66824423030696], [-77.35790062699851, 34.66845676694973], [-77.35793926316396, 34.66848041980781], [-77.35813277719328, 34.66856530665915], [-77.35820898678043, 34.668613579717906], [-77.35841590278255, 34.6686207199748], [-77.35860123962632, 34.668705805460235], [-77.3588225758898, 34.66884645921877], [-77.35888683898617, 34.668880141217905], [-77.35891314880917, 34.668969338042906], [-77.35908983148481, 34.6692971301978], [-77.35897817526353, 34.66948802482537], [-77.35893623941726, 34.669630535521165], [-77.35883585926099, 34.66981940871874], [-77.35882078916006, 34.669986717562196], [-77.35881409304915, 34.67011878599041], [-77.35904102968742, 34.67027860932686], [-77.35907400098122, 34.670312903990435], [-77.35911525819373, 34.67033500091351], [-77.35935928492077, 34.670487486597885], [-77.35944896670767, 34.67054367468346], [-77.35962171807634, 34.67065191103518], [-77.35964160167241, 34.67066435334793], [-77.35966759589482, 34.67067991696243], [-77.35987618560415, 34.67080610519477], [-77.3599367388792, 34.6708313498527], [-77.36013580320818, 34.67094255409016], [-77.36022116319157, 34.67100659431249], [-77.3603389791241, 34.67107506431506], [-77.36038997500827, 34.67109777308154], [-77.36053664521224, 34.671157928103895], [-77.36066220575894, 34.671190760477025], [-77.36072304106966, 34.67121153426598], [-77.36081624686233, 34.67125318502316], [-77.36088747348805, 34.67128204935113], [-77.36112442051112, 34.671390897611225], [-77.3611994371577, 34.67140165593289], [-77.36122227563706, 34.67141850864634], [-77.3612251103953, 34.671440702770774], [-77.36145458400158, 34.67155352321723], [-77.36151827544819, 34.67158484161242], [-77.36166011327475, 34.67162462763571], [-77.36172838231818, 34.67164111489464], [-77.36188627176853, 34.671695744101825], [-77.36203813539703, 34.67181638026101], [-77.36216287003805, 34.67187701445629], [-77.36224481162182, 34.67192371501884], [-77.36244522826667, 34.67205385045206], [-77.3624948876959, 34.67209306799333], [-77.36257622612436, 34.67215010730321], [-77.36267704853762, 34.6722159784176], [-77.36271396860771, 34.672241171214075], [-77.36274415066805, 34.67226522563731], [-77.36299098754299, 34.672422118503405], [-77.36304926843697, 34.6724591623618], [-77.36325244623396, 34.67257587945565], [-77.36327648462174, 34.67259653839417], [-77.36330181534521, 34.67261751738781], [-77.36349006213523, 34.67278818763556], [-77.3635471222076, 34.67278239893229], [-77.36373507781563, 34.67297499559316], [-77.36377162934775, 34.67300377677007], [-77.3637650233235, 34.67304125486408], [-77.3639692706321, 34.673199109052874], [-77.36399835241482, 34.6732234490698], [-77.36400405580984, 34.67325210231216], [-77.36408500186243, 34.67331587241383], [-77.36412551385419, 34.673322660444015], [-77.36420931789924, 34.673403048198445], [-77.36428370369555, 34.67339798215324], [-77.36434190098123, 34.67344937007281], [-77.3645067713242, 34.67362046958442], [-77.36449765195415, 34.673671661674284], [-77.36467687429048, 34.673854151878736], [-77.36469475888346, 34.67386996678657], [-77.36469243112086, 34.67388858954778], [-77.36478454556608, 34.67399749280964], [-77.36478478290236, 34.67399777196726], [-77.36487097446246, 34.67410774834389], [-77.36488123788511, 34.67412062576433], [-77.3650595975024, 34.674325521613135], [-77.36508484938223, 34.67435809440087], [-77.36511302119848, 34.67441353009788], [-77.3653212459796, 34.67457032139784], [-77.36534928371807, 34.674630533913486], [-77.3655110633563, 34.674750867911555], [-77.36548294235016, 34.674840063064934], [-77.36549023026224, 34.67494215447586], [-77.36551985075359, 34.67499335569717], [-77.36553469701475, 34.67502280613276], [-77.36573299009471, 34.67504178029726], [-77.36583074808412, 34.67519432365734], [-77.36595575030194, 34.675264507203], [-77.36589395602677, 34.67567302803651], [-77.36590758972058, 34.675695827051925], [-77.36592792069571, 34.675730170394495], [-77.36598741633621, 34.67583148548631], [-77.36610794981927, 34.67588731369066], [-77.3661376366178, 34.67591294561938], [-77.36627576134994, 34.67595757493585], [-77.36647449118556, 34.67590899454166], [-77.36657156818528, 34.67597308620576], [-77.367034225958, 34.67599171740201], [-77.36704996264069, 34.67598820500518], [-77.36705852757291, 34.6759923976792], [-77.367173741395, 34.67598452839603], [-77.36735373033676, 34.675972548069446], [-77.36741125361065, 34.675951883782204], [-77.36758538053468, 34.67584209378783], [-77.36777234795593, 34.675560995386604], [-77.36785830848423, 34.67544584843309], [-77.36838253177065, 34.675520534705754], [-77.36861904812456, 34.67557935008944], [-77.36873145248202, 34.67558163625118], [-77.36896571096969, 34.67557316017149], [-77.36941079690878, 34.67554563541994], [-77.36958314999526, 34.675507679518745], [-77.36979628586228, 34.67546139578161], [-77.37061855864961, 34.67533984996453], [-77.37085911920492, 34.67523503187953], [-77.37169540576346, 34.6750180212366], [-77.37212761884179, 34.6749880941463], [-77.37248744131597, 34.6749661913626], [-77.37299459208302, 34.674893260755866], [-77.37336520296962, 34.67484771201185], [-77.3736344156683, 34.67482221764427], [-77.37369962538966, 34.674821279603805], [-77.37379635988248, 34.674965750514986], [-77.37387591986369, 34.67506316716894], [-77.37388255088123, 34.6750746821216], [-77.37389613611678, 34.67508044914612], [-77.37407711369409, 34.67531912356345], [-77.37431691131692, 34.67548992530374], [-77.37436727625848, 34.67551936389507], [-77.37443395808083, 34.67553085385056], [-77.37465016559591, 34.67557566534991], [-77.37479969043622, 34.67555122916028], [-77.37495889420727, 34.67554286911758], [-77.37515155607532, 34.67552872883664], [-77.37558282583154, 34.6754549467918], [-77.37598094135626, 34.67543011532099], [-77.37618818735287, 34.67543105220676], [-77.37642515946463, 34.675482302418665], [-77.37656566752707, 34.67550578225776], [-77.37675661277156, 34.675534525133614], [-77.37685495609699, 34.675545592809925], [-77.37709071917953, 34.675595879700744], [-77.37732001010322, 34.67565533834489], [-77.37761205259963, 34.67575110320819], [-77.37773712310681, 34.67599437761903], [-77.37750793340425, 34.67634085577793], [-77.37747029918344, 34.67651847153277], [-77.37716192927401, 34.67688630091047], [-77.37702969953175, 34.67706646343062], [-77.37698994394417, 34.67715800484848], [-77.37687312271515, 34.67719640753099], [-77.37627522206907, 34.677657617272835], [-77.37619150977253, 34.67772662229274], [-77.37608922693555, 34.6778358982936], [-77.37546386084095, 34.678256587561584], [-77.37541524797743, 34.67831489424479], [-77.37497034786315, 34.67857397077145], [-77.37461399276248, 34.67879560475094], [-77.37451256854986, 34.67879113390948], [-77.37365560743032, 34.67879783009795], [-77.37348729544318, 34.67855349497908], [-77.37312793915021, 34.678840240331006], [-77.37306315205845, 34.679074079949956], [-77.37267976885401, 34.67927430048472], [-77.3723348572873, 34.67941361512016], [-77.37195082713791, 34.679724125669395], [-77.37138080984421, 34.67976090580513], [-77.37133787493401, 34.679774055661284], [-77.3712902228704, 34.67976404697431], [-77.37074953112392, 34.679739139756265], [-77.37048753386523, 34.679660190647716], [-77.36992669811394, 34.67950526526894], [-77.36970510248142, 34.67947412689266], [-77.36963372418153, 34.67945944120913], [-77.36940904171053, 34.67937302716934], [-77.36895694000964, 34.67926167387559], [-77.36895672800796, 34.67915120379232], [-77.36872819646862, 34.679043545655304], [-77.36857735090835, 34.678974882222306], [-77.36856786773915, 34.67896986601705], [-77.36852690531994, 34.67896658812863], [-77.36834351052536, 34.678945483955744], [-77.36820490942375, 34.67894390961794], [-77.36794724206526, 34.6790839388002], [-77.36772878882377, 34.67916006055222], [-77.36730636716612, 34.6792300958861], [-77.36693433506719, 34.679241957000016], [-77.36667940995542, 34.67932827003215], [-77.36651490486807, 34.67936045011746], [-77.3662868167238, 34.67934624821818], [-77.36608128684125, 34.67932705304011], [-77.36583267527503, 34.67930165329405], [-77.36570194169482, 34.67927802563198], [-77.36550614071555, 34.67924664070099], [-77.3653929261883, 34.67924597606198], [-77.36492123408533, 34.67921844029161], [-77.36491703932106, 34.67921812013562], [-77.36491596532332, 34.67921802718128], [-77.36491108617643, 34.679215191211476], [-77.36457523254633, 34.67908703620144], [-77.36442835374466, 34.67883593099616], [-77.3644069918053, 34.67882232763976], [-77.3644069984734, 34.678801715516876], [-77.36433907033526, 34.6787081426656], [-77.36421907207628, 34.67857276998349], [-77.36403586646172, 34.678365324610766], [-77.36401533825767, 34.67833538742534], [-77.36399292105344, 34.67827401862408], [-77.36378560778311, 34.678118020166615], [-77.36375703985982, 34.67805567295037], [-77.36359948220823, 34.67793789950916], [-77.36354164378369, 34.67791161122223], [-77.36350774066979, 34.67788357371725], [-77.3630352951915, 34.67752803419696], [-77.36302584401945, 34.6775202522818], [-77.36301805164032, 34.67750868061223], [-77.36299983072776, 34.67752097310871], [-77.3624782269395, 34.67754761633478], [-77.36240079392839, 34.67757342822358], [-77.36235040753492, 34.6775834815855], [-77.36209620590297, 34.6775918742761], [-77.36190179871966, 34.67759715805947], [-77.3618024924757, 34.677572843519734], [-77.3613540566752, 34.6773384375641], [-77.36125265404247, 34.67740525128061], [-77.36100437729601, 34.67766666285958], [-77.36092743864958, 34.677817647651594], [-77.36074758575126, 34.67807723432779], [-77.36055350439585, 34.67835640909916], [-77.36043500289922, 34.678438349578585], [-77.36023953702836, 34.67887682573535], [-77.36023276900119, 34.67888786070214], [-77.3602292718624, 34.6788941905056], [-77.3602185311715, 34.678906450668], [-77.35954882942264, 34.679469206116785], [-77.35951316692484, 34.679535809774414], [-77.35943951749331, 34.679971608559676], [-77.35911331059567, 34.680457792244006], [-77.35901775598363, 34.680516934728395], [-77.3586943795788, 34.680724638898255], [-77.3584658010308, 34.6808213585054], [-77.35843648291001, 34.68084047569609], [-77.3582995199016, 34.68101282603791], [-77.35829287956835, 34.68110389455216], [-77.35828645611096, 34.68116872451892], [-77.3582269254973, 34.68158670602118], [-77.35822199381056, 34.681601018191465], [-77.35818434464312, 34.68164153948697], [-77.35821271703205, 34.681693348140485], [-77.35821168243105, 34.681724281198704], [-77.35820176395183, 34.68173108613306], [-77.35807765362333, 34.68177349363564], [-77.35801826254215, 34.68176938290051], [-77.35788870552808, 34.68177864805014], [-77.35773391695282, 34.681787886678535], [-77.35758464296981, 34.68179521429753], [-77.35745150126809, 34.681811437943566], [-77.35712096093482, 34.68188273195812], [-77.3569360893941, 34.68196762801209], [-77.3568224537435, 34.68203694467694], [-77.35669684190182, 34.68214498501741], [-77.35635514019178, 34.682344821106824], [-77.35629289514824, 34.68242512244734], [-77.35620222596675, 34.68243392958798], [-77.35611625322913, 34.68244501894679], [-77.35569180573519, 34.6825304868778], [-77.3555391986769, 34.6826561693157], [-77.35533938484308, 34.68285630576865], [-77.35523240527792, 34.68298640186039], [-77.35510786338628, 34.68311116126036], [-77.35496113998221, 34.68315923209141], [-77.35477939621468, 34.68321177062492], [-77.35452127921862, 34.68327847835271], [-77.35464034981598, 34.68306770948752], [-77.35450003425072, 34.68290063142083], [-77.35439202744146, 34.6826546839265], [-77.35438112423334, 34.682615924438885], [-77.35437948989276, 34.682599213890406], [-77.35436392482802, 34.68258119268393], [-77.35394197290199, 34.68214756985028], [-77.35400471365644, 34.68175683142292], [-77.35399150262643, 34.68169466142491], [-77.35400339943367, 34.68167187414814], [-77.35387480484704, 34.68141087296043], [-77.35372509979544, 34.68124386077536], [-77.35360173007926, 34.681083279339354], [-77.35347054480795, 34.68093363626267], [-77.35335749338117, 34.68080695739318], [-77.35317095662003, 34.6805054772027], [-77.35299773709274, 34.68050916145663], [-77.35304176397045, 34.680362929735686], [-77.35294468330213, 34.68015580323439], [-77.35295085295921, 34.68013172204208], [-77.35287539359493, 34.680033515315685], [-77.35278069721178, 34.679911395642684], [-77.35276901121571, 34.67989682279529], [-77.35275051267335, 34.67989211326278], [-77.35270738109054, 34.67988455200475], [-77.35246443252677, 34.67984674151789], [-77.35232471258237, 34.6798446020112], [-77.3521688181045, 34.679834211113764], [-77.3517354188138, 34.67990397890778], [-77.3515539196308, 34.67989067903005], [-77.35133902570371, 34.67981488440806], [-77.35111570920473, 34.67974987757707], [-77.35099877882365, 34.679741312311805], [-77.35064452316212, 34.67996101803827], [-77.35087587054952, 34.68016465529243], [-77.35089348239698, 34.680157804810825], [-77.35088729277068, 34.680171376913414], [-77.35116897521213, 34.680339954224266], [-77.35108967010841, 34.68063097223572], [-77.35126301031701, 34.68089269784272], [-77.35132476068722, 34.68100843030267], [-77.35139568380391, 34.68107633820738], [-77.3517293869161, 34.681347837158974], [-77.35197309959511, 34.68129780502731], [-77.3519409192404, 34.68148885678408], [-77.35219875470588, 34.681792689010415], [-77.35228794740861, 34.68184386104713], [-77.3523467407165, 34.681920516667155], [-77.35258763168585, 34.682331482739926], [-77.35261308810209, 34.68237132749621], [-77.35260742580196, 34.68238635435162], [-77.35254470160808, 34.682868099392124], [-77.35217984339988, 34.683246492425155], [-77.35203389759582, 34.683425621683796], [-77.35163915149629, 34.68391997635906], [-77.35219662665857, 34.68386162591108], [-77.35221431591084, 34.68388823224943], [-77.35245863533686, 34.68407764520369], [-77.35272105191953, 34.68411688697445], [-77.35312379705385, 34.684354088160916], [-77.35355208235339, 34.68467930568118], [-77.35344804679463, 34.684892917742445], [-77.35325785771394, 34.68520709169526], [-77.35309459788058, 34.68533403651868], [-77.3528778220528, 34.68563856138726], [-77.35282268938914, 34.68573124703772], [-77.35275689930917, 34.685763263074215], [-77.35238821915758, 34.68598433887854], [-77.35213625188166, 34.68613119434066], [-77.35186795745712, 34.68616137232684], [-77.35174762843147, 34.68638922405293], [-77.3516935542538, 34.686637442516954], [-77.35169395318628, 34.68664028540336], [-77.35169270053852, 34.686644275209325], [-77.35168471625254, 34.686644244420386], [-77.35138357120306, 34.68666205978465], [-77.35117740203506, 34.6868257109055], [-77.351145265513, 34.68695930993951], [-77.35116723803013, 34.68704250265191], [-77.35104630952466, 34.6873477721478], [-77.35088094981391, 34.68748298103499], [-77.35083636801838, 34.68751595423377], [-77.35071517276589, 34.687505740735624], [-77.35056867904346, 34.68750315515076], [-77.35054152975154, 34.687500654116015], [-77.35050089317181, 34.687502509221936], [-77.35038255901314, 34.687532788207605], [-77.35036269060957, 34.68755413280269], [-77.35029484038033, 34.68763897249958], [-77.35017214654758, 34.68774208749225], [-77.35010925481143, 34.68779358175117], [-77.34987763136763, 34.68786441515701], [-77.34982970395389, 34.68789073049303], [-77.34981647772258, 34.687884947287806], [-77.34958184611608, 34.6879642843073], [-77.34950390597587, 34.68798204578148], [-77.34940056891254, 34.68805175216477], [-77.34938979277103, 34.68811316022496], [-77.34937147556106, 34.688177591323885], [-77.34935822390683, 34.688404319409216], [-77.34904280152816, 34.688539329274285], [-77.3488093050315, 34.68855595298972], [-77.34867213638961, 34.68856850522204], [-77.34855969298827, 34.68853271917884], [-77.34846221049129, 34.68853296485917], [-77.34845135607564, 34.688514787788876], [-77.34831349755643, 34.68845031708501], [-77.34824133264377, 34.688332729857905], [-77.34831155630478, 34.68811465077975], [-77.34830431703743, 34.688080394107274], [-77.34829827698854, 34.6880678508113], [-77.34829705602965, 34.68801549903717], [-77.34813114103892, 34.687860475458365], [-77.34806947678945, 34.687849745934976], [-77.3480915806521, 34.687692449060606], [-77.34793972834875, 34.68755541460594], [-77.34801588196342, 34.68738891609955], [-77.34807558259178, 34.687267129980945], [-77.34799860858254, 34.68711592580249], [-77.34806103484193, 34.68689533780399], [-77.34805844098238, 34.68677593329229], [-77.34802332539563, 34.68670272637308], [-77.34803484559929, 34.686655242531224], [-77.3480365986131, 34.686594260857575], [-77.34803650534329, 34.68659403904824], [-77.3480362009485, 34.68659390827763], [-77.34796434669036, 34.68658464969643], [-77.34790193968155, 34.686599051183435], [-77.34780524727472, 34.68661722520846], [-77.34754092226581, 34.686679786587085], [-77.34742006731652, 34.68668593255171], [-77.3471732119994, 34.68673249814245], [-77.34689035436097, 34.68678625445592], [-77.3466555176539, 34.686600883411224], [-77.3466251888705, 34.68659613843198], [-77.3466134616431, 34.686598849385135], [-77.3466029067468, 34.6865997150855], [-77.34631571644611, 34.686593560549454], [-77.34609478549089, 34.68661013132819], [-77.34600821703357, 34.68662185865801], [-77.34588720744608, 34.686603452451365], [-77.34542140898374, 34.68677026745092], [-77.34537865310119, 34.68679085691243], [-77.34535574156482, 34.686807494503796], [-77.3448157809386, 34.6869300981522], [-77.34471830767825, 34.686941324587046], [-77.34466628508642, 34.686921055440514], [-77.34457384077616, 34.68688659023256], [-77.34419158804846, 34.68669394058577], [-77.34365587178881, 34.687012568267036], [-77.34357057667502, 34.687102654601944], [-77.34364879836392, 34.687309846710356], [-77.34371858903803, 34.687491339432256], [-77.34376532113178, 34.68761434616371], [-77.34435270752414, 34.687891694938926], [-77.34434869204944, 34.68795377652684], [-77.34439790136219, 34.68804453624054], [-77.34483482587989, 34.688223640622965], [-77.34500782260096, 34.68823490974045], [-77.34554268454474, 34.68822484942096], [-77.3459946148105, 34.687975325847454], [-77.34633674408789, 34.68800062513326], [-77.34662202751689, 34.68853161390939], [-77.34663586045652, 34.68855310041643], [-77.34663870545371, 34.68855660570704], [-77.34664001032833, 34.688568587963545], [-77.34699383648622, 34.6890716711909], [-77.34709279670133, 34.68907061474776], [-77.3472797465716, 34.689245831529355], [-77.34734095293605, 34.68924669336755], [-77.34754400705944, 34.68940320954805], [-77.3475786263421, 34.68941001104888], [-77.3475903835385, 34.689418386429026], [-77.34776631150193, 34.689616385593915], [-77.34747254535961, 34.689824167610105], [-77.34728539270425, 34.689758075598185], [-77.34706845843337, 34.68980259911179], [-77.34688066252517, 34.68980109232659], [-77.34666878879924, 34.689849701223224], [-77.34669293393989, 34.69000740560795], [-77.34649620992349, 34.6902429522868], [-77.34639971574421, 34.69053502898718], [-77.3461698728515, 34.69068398730069], [-77.3460251659277, 34.69068572171453], [-77.34593007829206, 34.69067859382591], [-77.34547224015158, 34.690703774126085], [-77.34541152459491, 34.69073753773733], [-77.34521289112267, 34.69083629242131], [-77.345143013094, 34.69070750640798], [-77.3449074902513, 34.69067712459065], [-77.34484865748733, 34.69061452623558], [-77.34453576944168, 34.69051179337058], [-77.34459501423547, 34.69078271244706], [-77.34405423579398, 34.6912887596502], [-77.34399100072451, 34.69130543985052], [-77.34386503538398, 34.691370266995506], [-77.34336485552276, 34.691601302710815], [-77.34295918824705, 34.691667254997185], [-77.34255467426118, 34.69203745421436], [-77.34213269740147, 34.69221112276847], [-77.34198423278325, 34.69223273410925], [-77.34178754102771, 34.692289446339686], [-77.34160787785983, 34.69238412935761], [-77.34153876189012, 34.69248086143314], [-77.34139709597717, 34.692683665376435], [-77.34136004526155, 34.692802732501036], [-77.34118202521647, 34.69293361800456], [-77.34097142749428, 34.693096507170566], [-77.34066767435817, 34.693151080603414], [-77.3405124740817, 34.69317780116897], [-77.34040591879837, 34.69323343763389], [-77.34032344582026, 34.69331333810792], [-77.34032045986578, 34.69331875732061], [-77.34031999052392, 34.69332523239787], [-77.34034983535805, 34.693395623766094], [-77.34032540040597, 34.69348122186838], [-77.34034095496803, 34.69355963339069], [-77.34029231230963, 34.69377106182559], [-77.34028987433692, 34.693810329371466], [-77.34027605700308, 34.69399162827066], [-77.34036199435253, 34.69417457449875], [-77.34033217255916, 34.694291902197335], [-77.3402597154744, 34.69438051622344], [-77.34023869737086, 34.69446651350622], [-77.34027737506985, 34.69454310808459], [-77.34031036891075, 34.69460844718322], [-77.34040922193171, 34.69476870706567], [-77.34036332090406, 34.69496185903702], [-77.34052988385167, 34.69523952754493], [-77.34016498596569, 34.6955732363941], [-77.33971073032123, 34.69593761193261], [-77.33939726059091, 34.6957051121539], [-77.33916643927338, 34.69575053816838], [-77.3388001933399, 34.69563983878761], [-77.33857394878225, 34.69572936884348], [-77.33844818024099, 34.69564698836328], [-77.33841420087995, 34.69552977197746], [-77.33806473164648, 34.695421580033326], [-77.33767187151246, 34.69545593914869], [-77.33746829974973, 34.69541397872767], [-77.33698085493879, 34.695199271638614], [-77.33694250908725, 34.695163247699035], [-77.3367926550328, 34.69513649659731], [-77.33633930593473, 34.69517895023565], [-77.33611545407965, 34.69507675687971], [-77.33526051612617, 34.69505466495799], [-77.33517907936097, 34.69505142156046], [-77.33510198418796, 34.695068148418216], [-77.33493954541682, 34.69503161787072], [-77.33418378004856, 34.69498624370397], [-77.3340060363526, 34.69496799345832], [-77.33374944365876, 34.69499149288954], [-77.3329811414286, 34.69530019377781], [-77.33278359085917, 34.695411801998006], [-77.33267501088613, 34.69542820152593], [-77.33223266359866, 34.695890203533864], [-77.3320276998717, 34.69601830698862], [-77.33187011349317, 34.69613790012391], [-77.33138017990055, 34.696494467895434], [-77.33133490425809, 34.69668076982922], [-77.33110232451111, 34.696719863311735], [-77.33092335802473, 34.69670606630369], [-77.33070212367306, 34.696758037774984], [-77.33044222698433, 34.69693124954414], [-77.33025334708252, 34.696998481067666], [-77.32970608812727, 34.697404246930226], [-77.32956142776185, 34.69766173251577], [-77.32939404295678, 34.697741523129466], [-77.32886288696045, 34.69824555834305], [-77.32874903874932, 34.69821815406886], [-77.3285501114402, 34.69834459104832], [-77.32819551005427, 34.69848191346362], [-77.3277463494866, 34.698605813816485], [-77.32756589634388, 34.69858833726923], [-77.32748490249102, 34.698562633763316], [-77.32710895640528, 34.69867898995759], [-77.32689934836995, 34.69882181039006], [-77.32665166398203, 34.6986048352759], [-77.32648183475544, 34.698545917722896], [-77.32638266645031, 34.698539721539305], [-77.32617546789872, 34.698489566044], [-77.3260131779565, 34.69851227088115], [-77.32600892889303, 34.69844925257329], [-77.32583623427652, 34.698359982764934], [-77.32565103137598, 34.698396702647855], [-77.3253205424144, 34.698369808040425], [-77.32519685013361, 34.698499993481335], [-77.32498409400738, 34.69870987774376], [-77.32478291029764, 34.699064383231224], [-77.32455094103068, 34.699380138696995], [-77.32490991395427, 34.699487009747614], [-77.32534225969223, 34.699422387052714], [-77.32549329584435, 34.699539667972566], [-77.32634751591803, 34.69943743248875], [-77.32631925575981, 34.70011250244861], [-77.32648672796655, 34.70024125479118], [-77.3268726672093, 34.7006099574195], [-77.32729676266878, 34.70095324836104], [-77.3274444997317, 34.70106556605131], [-77.3276687334824, 34.701090756925474], [-77.3280216593021, 34.701139661648355], [-77.32824135183373, 34.70113370092571], [-77.32862511469357, 34.70112328907402], [-77.32917432185896, 34.70114903561996], [-77.32985973972686, 34.70099518362993], [-77.33112613638687, 34.700491302222055], [-77.3312130106801, 34.700458825891516], [-77.33125872596268, 34.7004437300089], [-77.33156366476939, 34.70036827469145], [-77.33238448425942, 34.70016516819531], [-77.33229814409913, 34.699589794065844], [-77.33205341606248, 34.69962710851796], [-77.33181815781143, 34.699662977817596], [-77.331240181435, 34.70036533912317], [-77.33107556428719, 34.69974195785051], [-77.33083733329332, 34.699493121437314], [-77.33067156856085, 34.69926446577651], [-77.33073520223572, 34.69870264154723], [-77.33098910681997, 34.69849757101309], [-77.331225853859, 34.697860901375], [-77.3320022559368, 34.6977431651231], [-77.3328059814717, 34.697622641513114], [-77.33330247546587, 34.6973891124215], [-77.33347418003213, 34.69730101239118], [-77.3339739871458, 34.69713841760688], [-77.33446200485788, 34.69713700793384], [-77.33458448487707, 34.697097673446], [-77.33470750972849, 34.69711786469523], [-77.33557531788465, 34.69706883306732], [-77.33576016346314, 34.697172125498135], [-77.33675521516417, 34.69765682203081], [-77.33681566867578, 34.69766017348162], [-77.33685998518825, 34.697657106703744], [-77.33685050516938, 34.6976937609247], [-77.336938711819, 34.69781952613561], [-77.33735147966878, 34.698599792423664], [-77.33739404592039, 34.698822821049056], [-77.33770987835274, 34.69870339470701], [-77.33782481723813, 34.69860521614724], [-77.33800671222794, 34.698509916111156], [-77.33921891705889, 34.69763047909392], [-77.33944420255129, 34.697487587981925], [-77.34032190841991, 34.697217564917814], [-77.34047117662722, 34.6971214312485], [-77.34056161301413, 34.69713001005895], [-77.34063510512657, 34.69711768074013], [-77.34156674864099, 34.696816094296125], [-77.34192294892594, 34.696565296731464], [-77.34229698224786, 34.69618684347134], [-77.34261418418123, 34.69592830789857], [-77.34278808572826, 34.695461209702756], [-77.34282254062668, 34.69537613158094], [-77.34287942248778, 34.695333419958075], [-77.34349404150231, 34.69483282174194], [-77.34359674198184, 34.694785875757105], [-77.34366554652499, 34.69468792120883], [-77.34373521372626, 34.69455603888107], [-77.34379596688345, 34.694324177800944], [-77.34380440220146, 34.69430285558628], [-77.34379029577458, 34.6942584329078], [-77.34361506050473, 34.694036592214104], [-77.34343167218319, 34.6940011885803], [-77.34324527714233, 34.694073890334025], [-77.34294175049962, 34.6942051484939], [-77.34256383095928, 34.694359024960505], [-77.34227528031741, 34.69402529983883], [-77.34239093761552, 34.69371677910006], [-77.3427452367483, 34.69373450774174], [-77.34320328811381, 34.69356509487638], [-77.34337468727985, 34.69362836099461], [-77.34355778226706, 34.69347466581348], [-77.34404278170584, 34.69338915614024], [-77.34446484829314, 34.69338272812006], [-77.34466054311639, 34.69332323467404], [-77.34486826983455, 34.69335990281154], [-77.34501163315109, 34.69335617027461], [-77.34507827948804, 34.693396973606696], [-77.34523523781166, 34.69340558645748], [-77.34548506007657, 34.69334114791823], [-77.34553709033538, 34.69331455444212], [-77.34560246410602, 34.69329571646878], [-77.34591787763658, 34.69311626433668], [-77.34600200624698, 34.693088424840674], [-77.3464887312999, 34.69300792570549], [-77.34654831240168, 34.693006679358454], [-77.34693241253616, 34.69306069139712], [-77.34701558797876, 34.69337477860537], [-77.34702597539503, 34.693423133713075], [-77.34710310480304, 34.69371769824518], [-77.34709423559089, 34.6938513637747], [-77.34718390295333, 34.69390994805708], [-77.34727707536291, 34.69397800665598], [-77.34741655741712, 34.694023363984236], [-77.3475018265716, 34.69380506232436], [-77.34749720272349, 34.693796054841535], [-77.34750684859004, 34.693784258602385], [-77.34753970798548, 34.69338173459426], [-77.34717852360684, 34.69335241493995], [-77.34755396061128, 34.69318771965635], [-77.34779421408962, 34.69283902199374], [-77.3478212442755, 34.692786377459534], [-77.3478393029775, 34.69277433845379], [-77.34782626656268, 34.692728649856605], [-77.34774618416861, 34.692434493080015], [-77.34728334444179, 34.69253691418735], [-77.34711748701895, 34.69252410239231], [-77.34698693245086, 34.69252696450464], [-77.34673603259333, 34.69246257113899], [-77.34668973313954, 34.69251972451953], [-77.34669490436647, 34.692455103336904], [-77.34668577740545, 34.69244528628211], [-77.34669415064197, 34.692425439376485], [-77.34672489501519, 34.69239865078201], [-77.34696622625471, 34.692028344983356], [-77.3473459873957, 34.6919540938833], [-77.3474534758146, 34.691951078274975], [-77.34764589201197, 34.69199261164398], [-77.34778650812626, 34.69200928596116], [-77.34800754242025, 34.69210442378465], [-77.34828090335424, 34.69202301772326], [-77.3491992124214, 34.69209311544387], [-77.34920858941857, 34.69209116044127], [-77.34988444400236, 34.691424012063216], [-77.3505308179286, 34.69094272307252], [-77.35049966303737, 34.69069285176486], [-77.35082627745112, 34.69064298571818], [-77.35145261391114, 34.690261104762946], [-77.35183945050271, 34.689788294218076], [-77.35193722905811, 34.689414171325225], [-77.35189769998135, 34.68929291539704], [-77.3519545668126, 34.68919590575838], [-77.35219530003349, 34.68876467089148], [-77.3523446356667, 34.688498797289625], [-77.35264785066701, 34.68849235383442], [-77.35299956845691, 34.68816685842784], [-77.35313596740899, 34.687923790113345], [-77.35314044602802, 34.68790382324468], [-77.35315610952067, 34.68787698427409], [-77.35323698833176, 34.68764687480983], [-77.35355260081377, 34.687437701228916], [-77.35377891310154, 34.687572460886315], [-77.35389935801837, 34.68769914905749], [-77.35401581814108, 34.68790388707363], [-77.35418911414006, 34.688003516848156], [-77.35417256109042, 34.68827727746372], [-77.3544930053908, 34.68832196754305], [-77.35487315181294, 34.6881872848334], [-77.35516270424162, 34.68807691289314], [-77.35534865796319, 34.687844283309744], [-77.35531703405249, 34.68779063128924], [-77.35541753329869, 34.68739336365486], [-77.35542394794051, 34.687346559197465], [-77.35543285384188, 34.687307284490615], [-77.35555771667987, 34.68687938235428], [-77.35560429010506, 34.68683440767453], [-77.3558118214637, 34.686466392133745], [-77.35606824534358, 34.68628330523143], [-77.35612301021699, 34.68598767125433], [-77.35627637946286, 34.68576733530743], [-77.35633685575353, 34.68565533305261], [-77.35650333057802, 34.68552053006229], [-77.3567942579811, 34.68547101273073], [-77.35681952970398, 34.68546220324319], [-77.35684683754972, 34.685469180778945], [-77.35712465033615, 34.68544203949994], [-77.35729644816233, 34.68547868009415], [-77.35749728286521, 34.68540754546858], [-77.35780688351824, 34.68515368016528], [-77.3580390129416, 34.6850378561955], [-77.35828960898196, 34.68483344623293], [-77.35854193198432, 34.68468333172981], [-77.35885696920693, 34.68467171003775], [-77.35919903070726, 34.684481525667564], [-77.3593124667406, 34.68446370778944], [-77.3598639829782, 34.68425264180576], [-77.36035035898863, 34.68410729685358], [-77.36071335828083, 34.68403116708468], [-77.36112061951788, 34.68404729515635], [-77.36146406778848, 34.683818091182374], [-77.36182225702436, 34.683691960090236], [-77.36211042578944, 34.68350377724234], [-77.36235120565246, 34.68332804881129], [-77.36257601420024, 34.68315699198646], [-77.36273662893024, 34.68303148852778], [-77.36295465731635, 34.682900394793336], [-77.36312325826802, 34.68273599769786], [-77.36335552157098, 34.68253324649588], [-77.36387558538306, 34.68238530231013], [-77.36361343318217, 34.68280987754104], [-77.36380355764467, 34.683051794168705], [-77.36390660832664, 34.68314988568466], [-77.36410922950449, 34.68322914132904], [-77.36432157822527, 34.68332917338857], [-77.36490507147127, 34.683169693160025], [-77.36496801763381, 34.683163981994234], [-77.36504456784411, 34.68316263356944], [-77.36570028915273, 34.683345963406914], [-77.3661088775725, 34.683357506265985], [-77.36622484469046, 34.68342580912629], [-77.36636489769398, 34.6836227836217], [-77.36678741469935, 34.68383588591616], [-77.36691779387334, 34.683985608468085], [-77.36712969721789, 34.68396477853069], [-77.36745343099355, 34.68402135030876], [-77.36774021028889, 34.684140935525164], [-77.3677908286294, 34.68418537476159], [-77.36819471838145, 34.684419739126966], [-77.36830666761784, 34.68449331952585], [-77.3683292443036, 34.684598766401166], [-77.36852716534656, 34.68497299983618], [-77.368562650184, 34.68505407869199], [-77.36856216831158, 34.68508510967844], [-77.36862341568111, 34.68553311762527], [-77.36873548245582, 34.68574017471251], [-77.36887035560288, 34.68598657069806], [-77.36891734683019, 34.68605493567651], [-77.3691014708691, 34.6862469052455], [-77.36926595178076, 34.686419588222826], [-77.36957634366895, 34.68666980860727], [-77.36987168156875, 34.68689153996395], [-77.37025633243175, 34.68725824388998], [-77.37045670626559, 34.687569038521474], [-77.37054799610759, 34.68770554712384], [-77.3707113194539, 34.68812358053479], [-77.37072271662062, 34.68815275191621], [-77.37073138093774, 34.688167733012065], [-77.37080737181911, 34.688270121445896], [-77.37108751164067, 34.688660411484605], [-77.37114911323322, 34.68867766805111], [-77.37125736103317, 34.688668900958916], [-77.37171236011596, 34.68879931070012], [-77.37187926873489, 34.68883935316974], [-77.37224389641959, 34.68890501492169], [-77.37227798269451, 34.688912767066654], [-77.37229437139129, 34.68891402214603], [-77.37230676144347, 34.68892596087997], [-77.3722987192104, 34.68895359726182], [-77.37235589327179, 34.689162903776754], [-77.37237349517837, 34.68924736611291], [-77.37241362395528, 34.689398664286976], [-77.37237244132828, 34.68965705763811], [-77.3722593405639, 34.68990726798164], [-77.3720592307375, 34.69027784528381], [-77.37201112737473, 34.690428783637806], [-77.37203048419718, 34.69063029325822], [-77.3720812740322, 34.69090653480633], [-77.37209512239022, 34.69103873788643], [-77.37206002138049, 34.69129460061098], [-77.37198922412495, 34.69140658267029], [-77.37180206429986, 34.691704145339436], [-77.37145955436324, 34.69196678525985], [-77.37141960346027, 34.69234733184346], [-77.37140677886643, 34.69246143478347], [-77.3715744105309, 34.69262241126421], [-77.37162861342117, 34.69282671223414], [-77.37165713469149, 34.69291441477385], [-77.37163530751798, 34.692969789316635], [-77.3714985901481, 34.69334962901744], [-77.37114975179705, 34.69347155226865], [-77.37104858245796, 34.69358899809098], [-77.37079691711028, 34.694007443008054], [-77.37108849581567, 34.69417927874476], [-77.37114133223542, 34.694894243091106], [-77.37114862507532, 34.6949215086293], [-77.37114630291111, 34.69493420700639], [-77.37114578428056, 34.69495140659423], [-77.37121025812996, 34.69590020168403], [-77.37108459483079, 34.69617345870395], [-77.37114476593345, 34.696501518301964], [-77.37123105778619, 34.6966482399819], [-77.37130046864428, 34.696775913910116], [-77.37140257495756, 34.696848554963466], [-77.37156472763783, 34.69696673783233], [-77.37167487580605, 34.69718173623796], [-77.37182528336187, 34.69727784491238], [-77.37196314596088, 34.697448545605866], [-77.37212466172957, 34.69769467945914], [-77.37215990268484, 34.69771924272229], [-77.37256528172256, 34.697773522958066], [-77.3726242215582, 34.69803606389309], [-77.37282009827202, 34.69836588114113], [-77.37287259656391, 34.69859606113215], [-77.37342511831481, 34.698688645180084], [-77.37361997608286, 34.69873047555496], [-77.37376483032301, 34.69882138659207], [-77.37394897941009, 34.69893548756392], [-77.3740468584531, 34.69899853524367], [-77.374117776557, 34.69907796317247], [-77.37436565873315, 34.69936559963072], [-77.37446954429004, 34.69946166881287], [-77.37457536605814, 34.69956408243088], [-77.37468759406501, 34.69968807300986], [-77.37475821346521, 34.69979902733824], [-77.37485601307066, 34.69995268665445], [-77.37499950545046, 34.7001655331912], [-77.37503152881666, 34.700211837431915], [-77.37505147617071, 34.700246105304856], [-77.37521666988702, 34.7004487028239], [-77.37522621752436, 34.70045622820512], [-77.37525445904588, 34.70050625859025], [-77.37536945408381, 34.70068978449142], [-77.3753920748186, 34.70072281551071], [-77.3754248607289, 34.70076281204306], [-77.37556891503073, 34.7009809480257], [-77.37569520746412, 34.70113239404969], [-77.37585848338472, 34.70133160914209], [-77.37594488968293, 34.70148005138857], [-77.37602724581255, 34.70157413913944], [-77.37611276370181, 34.701745088582314], [-77.3761301540915, 34.70180368881286], [-77.37618074187907, 34.70196501240091], [-77.37620243944046, 34.70203744842931], [-77.37620770638452, 34.7020662735718], [-77.37623083884792, 34.70211164350982], [-77.37634507694324, 34.702354795383094], [-77.37641146807142, 34.702496105109375], [-77.37649194689, 34.70263600452959], [-77.37653868124598, 34.702722312975155], [-77.37662137431985, 34.702829025951715], [-77.37667090025582, 34.70289251461553], [-77.37671057111228, 34.70294237776939], [-77.37684031040109, 34.70310612830278], [-77.376883295265, 34.70312327925184], [-77.37705886064923, 34.70338105870768], [-77.37705945414557, 34.70338180531052], [-77.37705952470016, 34.70338188743555], [-77.3770596099322, 34.70338198241575], [-77.37726472314962, 34.70361819350645], [-77.37744408269529, 34.70381631697819], [-77.37747495472642, 34.70385062527439], [-77.37751081585479, 34.70389024047112], [-77.37784352676252, 34.70396115423716], [-77.37779677829838, 34.704255218614875], [-77.37780689589617, 34.704383640855646], [-77.37782447015661, 34.704697399277926], [-77.37781543132739, 34.704740051076946], [-77.37768483775201, 34.7048718928488], [-77.3777503372322, 34.70512832658784], [-77.37776976026507, 34.70521918733183], [-77.37818475379912, 34.70525664336935], [-77.37835516680963, 34.70525319328779], [-77.37867913955296, 34.70528649318676], [-77.37898730956279, 34.70528389218073], [-77.37910090408236, 34.70525872397381], [-77.37957890900886, 34.70545437858783], [-77.38014789951302, 34.70556695341149], [-77.38018675967781, 34.70556883584534], [-77.38021812456516, 34.705589839549354], [-77.38073839199708, 34.705877137435465], [-77.38107488399274, 34.70607319337978], [-77.38127552563216, 34.70623544339152], [-77.3814765464903, 34.706352081892184], [-77.38163903733415, 34.70641788369528], [-77.3818439991601, 34.70648569739472], [-77.38206223199371, 34.706554273068534], [-77.38239869373622, 34.70678347117686], [-77.38306985277819, 34.70702689713802], [-77.38445826634421, 34.708159966213124], [-77.38451005678239, 34.70821181321625], [-77.38454434478072, 34.70822686671834], [-77.38457571574018, 34.70822898040101], [-77.38461667518852, 34.70821542004579], [-77.38521822537282, 34.70811367398873], [-77.3853809385811, 34.70804946685356], [-77.3856007353393, 34.70800071649776], [-77.38590309201386, 34.70796258295918], [-77.38635643766972, 34.70814854892595], [-77.38662964750219, 34.70822095488986], [-77.38703910751998, 34.708466435570685], [-77.3875284488595, 34.708569130614], [-77.38787218347619, 34.70859564182601], [-77.38826685668434, 34.7086539303619], [-77.38845507319603, 34.7085882222681], [-77.38878497645854, 34.70855613727251], [-77.38960326641647, 34.70846662792783], [-77.38979431699407, 34.70868703662454], [-77.39010374228289, 34.70895152443364], [-77.39013467323726, 34.70899146690082], [-77.39018780819788, 34.709047144399534], [-77.39048616955859, 34.70929125223304], [-77.39062958497401, 34.70934893578354], [-77.39075179200742, 34.70935187767413], [-77.39094050280526, 34.70938208582739], [-77.39124129191795, 34.709415860096236], [-77.39124783685754, 34.70941495349227], [-77.39125191055498, 34.70941354546926], [-77.39165125442825, 34.70932649636375], [-77.39191994795257, 34.709320465679234], [-77.3921695099356, 34.70942590283914], [-77.39227845544391, 34.709436741580454], [-77.3925259873611, 34.709441252171956], [-77.39268876927501, 34.70952694552999], [-77.39296522159952, 34.709596760458844], [-77.3931116820196, 34.70963222626774], [-77.39322024249822, 34.70964796406811], [-77.39362192028499, 34.70976931095999], [-77.3937137070111, 34.70976686836842], [-77.39375077587906, 34.70976744049716], [-77.39434507868994, 34.70980026623703], [-77.39485755244621, 34.7100811488109], [-77.3948984113295, 34.71010290532967], [-77.39491005316837, 34.710124936732555], [-77.39492987960249, 34.710147599375816], [-77.39524776196328, 34.71043046454872], [-77.39539495901897, 34.710601466278916], [-77.39553021150444, 34.71075902976894], [-77.39566519581979, 34.710964071752414], [-77.39578068382033, 34.71110092635321], [-77.39585833973396, 34.71121447742142], [-77.39600868029831, 34.71145219328249], [-77.39621825454566, 34.711716757000225], [-77.39626563727467, 34.711791387010514], [-77.39629898136035, 34.71190596487888], [-77.3964485087313, 34.71216146699559], [-77.39656649237101, 34.71239776380685], [-77.39668602928661, 34.712782386908856], [-77.3967705717342, 34.712919837807014], [-77.39678092784843, 34.71303194751815], [-77.39689761207147, 34.71341800084116], [-77.39690874140825, 34.713635819079094], [-77.39698706171167, 34.71372222360714], [-77.39704816505468, 34.713744790736705], [-77.39713848095894, 34.71381196168314], [-77.39737910395269, 34.71400510283058], [-77.39753179172348, 34.7142880454368], [-77.39756507910275, 34.71437389107462], [-77.39758887356265, 34.71443295038634], [-77.39772772483585, 34.71471798228274], [-77.39774184721936, 34.71474651810275], [-77.39775149820893, 34.714769425748855], [-77.39780752884354, 34.71490621729028], [-77.39788554203605, 34.715095899812574], [-77.3979000208764, 34.715126897416376], [-77.39791896051504, 34.71516413322746], [-77.39806299029452, 34.715505277673536], [-77.39818497121577, 34.71575981222284], [-77.39824519047261, 34.71587564104822], [-77.39830226164399, 34.71605359334877], [-77.39838955797104, 34.716261777203414], [-77.39841879691627, 34.71640076867095], [-77.39845670055823, 34.71662672874503], [-77.39846773344328, 34.716675509220096], [-77.39847150547217, 34.71669878195043], [-77.39848580646245, 34.71676382500484], [-77.39853809728103, 34.71700165221308], [-77.3985679185075, 34.71708006553769], [-77.39862036469725, 34.71716804090007], [-77.39866022548392, 34.71726474487912], [-77.39871188164224, 34.717342027208005], [-77.39878160650252, 34.717437303206275], [-77.3989558852139, 34.71770696893194], [-77.39901385677908, 34.7177868026353], [-77.39906082970701, 34.717860321610104], [-77.39913681946337, 34.71804984357759], [-77.3991080032099, 34.718193877584596], [-77.3991501863387, 34.71833409007358], [-77.39905738639447, 34.71844688202813], [-77.3989536963344, 34.71870453194386], [-77.39891649601087, 34.71881146955744], [-77.39887555949707, 34.718897807150725], [-77.39867648360715, 34.719186454776676], [-77.39863472331356, 34.71925223256781], [-77.39862127579559, 34.71926732176248], [-77.39856117514164, 34.71931449410847], [-77.39819761497463, 34.71967823621712], [-77.39811318196911, 34.719895888346485], [-77.39787646995667, 34.720125019069215], [-77.39772419169391, 34.720260061957745], [-77.3974772883602, 34.72035254494653], [-77.39706381960141, 34.72032645871036], [-77.39698734925213, 34.7202995977125], [-77.39690464145221, 34.72034414204076], [-77.3969725290215, 34.72042308551781], [-77.39699560472204, 34.72056180112232], [-77.39716519495293, 34.7207890896651], [-77.39697277235668, 34.72102406770287], [-77.39683578135501, 34.72111319009279], [-77.39667214331665, 34.72128072678586], [-77.39658172032829, 34.721349449629], [-77.39636238884853, 34.721522462261596], [-77.3960702251522, 34.72154242499938], [-77.39591924457807, 34.721546051909314], [-77.39556291599258, 34.7215521328893], [-77.39546927582676, 34.72155847823681], [-77.3954257013037, 34.7215540997273], [-77.39531179739444, 34.72156168803914], [-77.39501641948374, 34.721566180322334], [-77.39472885367718, 34.72174626691368], [-77.39467363480715, 34.721753902460065], [-77.39463676673614, 34.72178722958575], [-77.39417346748594, 34.72203618523292], [-77.3939946719756, 34.72214015752153], [-77.39331565017432, 34.72244327383431], [-77.39327926545283, 34.72246681435134], [-77.39320602636307, 34.72257597984352], [-77.39208348718071, 34.723130437473884], [-77.39187282038965, 34.723159999900005], [-77.39167570297045, 34.72354690662743], [-77.39163579210161, 34.723569081601376], [-77.39136880507542, 34.72383242285598], [-77.39100104676987, 34.72386999036732], [-77.39090767941647, 34.72386896878349], [-77.39044213098703, 34.72381355558504], [-77.39028320050963, 34.7238114127769], [-77.38999009095986, 34.723779834252525], [-77.38936621385056, 34.72355057113814], [-77.38909047043065, 34.723502384373276], [-77.38881443123844, 34.72337720754312], [-77.38808909309878, 34.72295845473061], [-77.38798806410587, 34.72288188932917], [-77.3879538278188, 34.72284327132922], [-77.3878946755645, 34.7227829461523], [-77.38747901851582, 34.72242627690497], [-77.38730794511062, 34.722219845989756], [-77.38714054134986, 34.7219598566277], [-77.38702582547911, 34.72177807710604], [-77.38686556695626, 34.7215116092781], [-77.38680129798337, 34.72144685127366], [-77.38672956857991, 34.72134513761162], [-77.38661147190768, 34.721289850783734], [-77.38652266233072, 34.721302217833994], [-77.3862126228294, 34.72135552235625], [-77.38620249591226, 34.721369303542076], [-77.38588303393435, 34.72151975895255], [-77.38581253856732, 34.72154004038654], [-77.38529540378437, 34.72138238656444], [-77.38513159886828, 34.72134164038547], [-77.38510230764692, 34.72106650277253], [-77.38496156190384, 34.72063807685588], [-77.38490043927521, 34.720545381542074], [-77.38483869474322, 34.72047637953768], [-77.38473934894054, 34.72047273766146], [-77.38442457158294, 34.7204501302932], [-77.38417719326351, 34.72054654434184], [-77.38392712070294, 34.7206409883318], [-77.38358498025778, 34.72071544786289], [-77.38347977364904, 34.72074054614333], [-77.3832472631851, 34.72102579445944], [-77.383073772627, 34.72103507504676], [-77.38302715013407, 34.72107938248615], [-77.38290761802674, 34.721218664166095], [-77.38263830867791, 34.721431174910585], [-77.38260311266428, 34.72146902406261], [-77.38258803004837, 34.72148486665819], [-77.38253480753724, 34.72153120268336], [-77.38230580789373, 34.72173116588245], [-77.38190234783143, 34.721804049490295], [-77.38189768323821, 34.721812009098564], [-77.38188754005313, 34.72180905947614], [-77.38187284325839, 34.72180704852655], [-77.38124752717184, 34.72180507658345], [-77.38096165495637, 34.721777730635736], [-77.38059770925273, 34.7218348910712], [-77.3800818702237, 34.72183546568287], [-77.37995366902564, 34.721844786220466], [-77.37937922726299, 34.72195353988675], [-77.37927295159848, 34.72198111157047], [-77.37925555281082, 34.72198067576223], [-77.3792295192451, 34.72198684718282], [-77.37847935808206, 34.72220789154139], [-77.37796980771115, 34.72205279188041], [-77.37793204247987, 34.72206099587719], [-77.37786023980317, 34.722066721711], [-77.3777139077149, 34.72207839086886], [-77.37763966804715, 34.72208571551853], [-77.37750434031278, 34.722109802987724], [-77.37732273291981, 34.72215815965509], [-77.37730910105742, 34.722164659250474], [-77.37729251342721, 34.72217728730738], [-77.37714508553748, 34.72227060277413], [-77.37704210226242, 34.72233951909713], [-77.37688991940601, 34.72260171175097], [-77.37658605429286, 34.72273907027676], [-77.37635181171085, 34.72321494061063], [-77.37635109730654, 34.72321601860484], [-77.3763505199997, 34.72321638301319], [-77.37634975066345, 34.72321679583575], [-77.37602183721664, 34.723427213151496], [-77.37565518989835, 34.723505178593705], [-77.3756233004154, 34.72351066480099], [-77.37561828783574, 34.72351554762653], [-77.37561399296696, 34.7235171801978], [-77.37523872914649, 34.72364313637547], [-77.37512679166586, 34.72372532450624], [-77.37494698972404, 34.72384288033971], [-77.37491760329631, 34.723866336529944], [-77.37486867757885, 34.72390160942029], [-77.37469835107191, 34.72403543865252], [-77.37462122826406, 34.72413003682948], [-77.37447916340096, 34.72423830681514], [-77.37429527427834, 34.7243453412168], [-77.37416243256676, 34.72440702757921], [-77.3740620490929, 34.7244717575956], [-77.37396073377323, 34.72454659784964], [-77.37389154268891, 34.72459179564818], [-77.37373670282368, 34.72492867849535], [-77.37343303748166, 34.72499048521451], [-77.37325605862199, 34.72503966326695], [-77.37299140853325, 34.72520649712776], [-77.37275855435365, 34.72531356276433], [-77.37262569454316, 34.725356752168025], [-77.3725173133529, 34.72537578988489], [-77.37234796884005, 34.72532927770172], [-77.37221404888953, 34.72531602934809], [-77.37211964511664, 34.72527737501311], [-77.37191876061503, 34.7252287820788], [-77.37167942164719, 34.725265461658324], [-77.37151532605466, 34.72510186553015], [-77.37142628784567, 34.725066008336285], [-77.37137422767987, 34.725041799365314], [-77.3710354230417, 34.724972549682406], [-77.37083578671852, 34.724833827215576], [-77.3704197327917, 34.72465785227874], [-77.37034361454681, 34.72446643105488], [-77.37014518525937, 34.7246953026016], [-77.36984711275949, 34.72484371102439], [-77.36967821063587, 34.72491979379066], [-77.36959862955506, 34.724970175143085], [-77.3695401350036, 34.724940511184634], [-77.36904338729113, 34.72499560526038], [-77.36899075886302, 34.72500144214595], [-77.36893417386763, 34.725012579454926], [-77.36844142292483, 34.725100521393074], [-77.36834829417003, 34.72515189766542], [-77.36823587956876, 34.725155698469166], [-77.36781326415706, 34.725182232663656], [-77.36774206981146, 34.72517747872008], [-77.3676881576855, 34.72518294074842], [-77.3675455839544, 34.72515993757202], [-77.36726734592926, 34.72511251854735], [-77.36718423901763, 34.725036322143396], [-77.36698449370463, 34.7250862336858], [-77.3667273365918, 34.72513382107647], [-77.36653770731156, 34.72520076602235], [-77.36641646962929, 34.72522120902309], [-77.36622119818267, 34.72525970539864], [-77.36607534513395, 34.7253619225477], [-77.36596778860277, 34.72546190360929], [-77.36584239634473, 34.72553324837057], [-77.36554529646811, 34.72572579791234], [-77.36516546672613, 34.72580238327078], [-77.36481101215747, 34.72581995287952], [-77.36456668184431, 34.72580229686288], [-77.36408375233324, 34.725707399222564], [-77.36399617607373, 34.72570479041241], [-77.36392796871228, 34.7257109583834], [-77.36390960662533, 34.725659422532246], [-77.36371828575334, 34.7254780655809], [-77.36369743741933, 34.72544487125556], [-77.36350805410954, 34.725323491743445], [-77.36346062490355, 34.72528209067515], [-77.3633878847687, 34.72524369551334], [-77.36337389079561, 34.725078541038684], [-77.36333724104406, 34.72498279352038], [-77.36315364119858, 34.7248834214735], [-77.3630313381903, 34.72490291526549], [-77.36292117093902, 34.72490870979028], [-77.36242064191329, 34.724943868911545], [-77.36206487329709, 34.725195232445394], [-77.36172509656805, 34.72527708091679], [-77.361501980805, 34.72533474096794], [-77.36139523626338, 34.72538198041492], [-77.36124337565396, 34.72553823124924], [-77.3611536624633, 34.725664346681434], [-77.3609587613039, 34.725854097666016], [-77.36030942156948, 34.7261538784862], [-77.36027649414034, 34.72616362305919], [-77.36026989844781, 34.726164239172086], [-77.36025730145582, 34.72616994132516], [-77.3597994618, 34.72637919935045], [-77.35959447294752, 34.72642807707405], [-77.35908010722845, 34.726380089322625], [-77.3590082766998, 34.72638458668214], [-77.35897870488708, 34.72636525120977], [-77.35892815880221, 34.72634355396681], [-77.3587375479024, 34.72628580039657], [-77.358572688555, 34.72628341495661], [-77.35844809007918, 34.72625151755761], [-77.35821276634434, 34.726441785185074], [-77.35816198695893, 34.72659940266045], [-77.3581247390949, 34.72669756489643], [-77.35812216227565, 34.72680780412845], [-77.35801983182334, 34.726955661664434], [-77.35804768463245, 34.72708156393723], [-77.35797551331888, 34.727316091639494], [-77.35778104885864, 34.727475832759], [-77.35760364062921, 34.727624839131366], [-77.35742667182082, 34.72770686151334], [-77.35716358513119, 34.72787318066189], [-77.35697853209533, 34.7279041304635], [-77.35676529125521, 34.72792224281823], [-77.35654622124967, 34.727889064698246], [-77.35649923975294, 34.72787865813616], [-77.35633339205935, 34.72777586623706], [-77.35622481825504, 34.72772125222819], [-77.35617605395811, 34.72773308488384], [-77.35594192976905, 34.72772833546734], [-77.35619315526131, 34.72765161745245], [-77.3561928694339, 34.72732593473434], [-77.35614989283434, 34.727212400782555], [-77.35608342591225, 34.72717707414954], [-77.3560106330709, 34.72707192472873], [-77.35594857345214, 34.72699634771486], [-77.35584916109886, 34.72695271669316], [-77.35553774598995, 34.72704152411963], [-77.35538655947857, 34.72682981241826], [-77.35532079172759, 34.72681422418861], [-77.35530696352289, 34.726757689033846], [-77.35513690871309, 34.72656148215582], [-77.35523996345711, 34.726362554135505], [-77.35521931025507, 34.726150547557815], [-77.35521474021247, 34.726107394296534], [-77.35514938130584, 34.726088588288185], [-77.35508983866958, 34.72620348559742], [-77.35492031022042, 34.726406436725725], [-77.35493457542339, 34.72653649923976], [-77.3549273607037, 34.72672269413826], [-77.35514601305519, 34.72686283527256], [-77.35511101747274, 34.7269756096057], [-77.35524064519745, 34.726986055005234], [-77.35548723826162, 34.727080381478544], [-77.35568418971103, 34.72727633609463], [-77.35559039264393, 34.727395231042124], [-77.3554572682716, 34.72779487255175], [-77.35541709684335, 34.727922764295414], [-77.35526659849502, 34.728107147703255], [-77.35519637587376, 34.72816953212238], [-77.35516459368263, 34.728117021346065], [-77.35493312800054, 34.728044970466655], [-77.35476606617853, 34.72802940606287], [-77.35453552797624, 34.72792140849205], [-77.35438088386275, 34.727884514579955], [-77.35433450964844, 34.72794900345923], [-77.35424803073049, 34.7280337307492], [-77.35404067180767, 34.728297432319266], [-77.35395463483482, 34.72832121396766], [-77.3537681610317, 34.728514129546795], [-77.35366423213688, 34.72860213986712], [-77.35353194147537, 34.72878172093106], [-77.35353119737779, 34.728790348268575], [-77.353510348372, 34.728820002365275], [-77.35341043211251, 34.72901551105335], [-77.35339113753236, 34.72905326475917], [-77.35320804283027, 34.729227992254565], [-77.3529817602375, 34.729596838942925], [-77.35280758825508, 34.72975786979463], [-77.35278383122812, 34.72994853142185], [-77.35307112627119, 34.730071955011475], [-77.35311829805411, 34.73008543797888], [-77.35314024619667, 34.730094302796694], [-77.35337814729507, 34.730263397123636], [-77.35367668330815, 34.730309232761414], [-77.35369826526053, 34.73042769029777], [-77.35368027511271, 34.73047572398213], [-77.3541189068709, 34.730848567511465], [-77.35416624832912, 34.73085609126253], [-77.35417002487985, 34.730895880199704], [-77.35438886793618, 34.73107904092555], [-77.3544382409301, 34.731202639768654], [-77.35449704051493, 34.73133837381896], [-77.35445602015815, 34.731421589213255], [-77.35433397356243, 34.73174849868413], [-77.35423793063418, 34.73186132445249], [-77.35409572800717, 34.73217565641441], [-77.35398372638213, 34.7323836002366], [-77.35401373479219, 34.73255024106811], [-77.3539138554352, 34.73288057461848], [-77.35381650272342, 34.733204750543806], [-77.35361694982565, 34.73340871028827], [-77.35355504405489, 34.73369150381177], [-77.35346278887856, 34.733917253917134], [-77.35334062136457, 34.73405961897926], [-77.3531070121812, 34.734453469541855], [-77.35308596804899, 34.7344722493502], [-77.35305378536513, 34.734515820729456], [-77.35277424211799, 34.734834316119304], [-77.352383895139, 34.73498659714876], [-77.35231394695438, 34.73500106588712], [-77.35169235934052, 34.73512433697486], [-77.35167965642157, 34.735122911988896], [-77.35166325626048, 34.73512650978127], [-77.3513770150921, 34.73513389951492], [-77.35109466733921, 34.73521703897508], [-77.35105811558898, 34.73522861797976], [-77.35104994118973, 34.73522899690478], [-77.3508794338327, 34.73536842221016], [-77.35086570349523, 34.73537727165039], [-77.35085427095456, 34.73538716428198], [-77.3507606306876, 34.73550657138724], [-77.35073816833594, 34.73558340647742], [-77.35061721613374, 34.73568779488286], [-77.3505442860213, 34.73577995148514], [-77.35048168448066, 34.735994425052425], [-77.35040902048475, 34.736042204496684], [-77.3502840187779, 34.736138425735206], [-77.35016797096218, 34.73629688480487], [-77.3501635943451, 34.73631957461138], [-77.35015047806615, 34.73633924140613], [-77.35011973505263, 34.73636949141887], [-77.34946589170309, 34.736902697158484], [-77.3494251464867, 34.73697313227777], [-77.34932858693084, 34.73703122339417], [-77.34909436691127, 34.73712266080798], [-77.34862644726687, 34.73738652964933], [-77.34812397759966, 34.73709682751812], [-77.34810232914097, 34.737129054336094], [-77.34790851003987, 34.73754419816177], [-77.3479448321534, 34.737598789472365], [-77.34796031472537, 34.737617874089665], [-77.34813237314312, 34.73786257143213], [-77.34837183851084, 34.738027579117706], [-77.34842643133283, 34.73807500584543], [-77.34884379277578, 34.73810376839161], [-77.34899138073838, 34.738191954618664], [-77.34937237844532, 34.73848559150522], [-77.34946413621608, 34.738626261761624], [-77.34973774740175, 34.73881491276705], [-77.3498319464907, 34.73892050115556], [-77.34986029081392, 34.739273470017295], [-77.34986675058889, 34.739284591226514], [-77.34987017646213, 34.7392902347433], [-77.35016330820656, 34.73945402059016], [-77.35015578083033, 34.739732309402264], [-77.35012116442302, 34.740142858835675], [-77.35008809263195, 34.740228978296564], [-77.34999105588216, 34.74037489540477], [-77.35017404052755, 34.740704563196104], [-77.34997509290662, 34.74117556121168], [-77.34999210593149, 34.74130504793], [-77.35004255271716, 34.741697367161], [-77.34993170758469, 34.74199731642016], [-77.34976078532009, 34.74237664162651], [-77.3498009726926, 34.7427052771758], [-77.3499060001244, 34.74280547638554], [-77.34993840673067, 34.743178749901816], [-77.3504803836581, 34.74358680818966], [-77.34960966574826, 34.744310307743056], [-77.34922254172011, 34.744452864514834], [-77.34901937678774, 34.74476204296472], [-77.34892629601126, 34.74482868448816], [-77.3489712346742, 34.745101173920986], [-77.34901623810951, 34.74524985308389], [-77.34893263814834, 34.74547257243434], [-77.34877775891897, 34.74576995368095], [-77.34867003234537, 34.7458781980003], [-77.34872232404642, 34.74608098629368], [-77.34899948831927, 34.74622691068122], [-77.34904702803456, 34.74624689625924], [-77.3495404530874, 34.74624016541083], [-77.34957940192263, 34.74647616188645], [-77.34969508338503, 34.74661884772847], [-77.34990584811605, 34.74674753453804], [-77.35005987216265, 34.74688408979737], [-77.35020091246278, 34.7470368207002], [-77.35036531141223, 34.747182558805], [-77.35036909185287, 34.747257434024455], [-77.35050181285722, 34.74742465454425], [-77.35054611994258, 34.747437697873465], [-77.3505596441466, 34.74747497688036], [-77.3508103261839, 34.747628695836724], [-77.35092379266591, 34.74791238895126], [-77.35093167760942, 34.74792956508831], [-77.35079808428817, 34.748401656412966], [-77.35079179326341, 34.748417882571125], [-77.35077671374671, 34.74844294319128], [-77.350587470921, 34.74893329969746], [-77.3503968743276, 34.7493227594768], [-77.35027984308671, 34.749462891155275], [-77.35009075117925, 34.749689841920386], [-77.35004853125955, 34.749791359867146], [-77.34993045025395, 34.74999821254557], [-77.349884616935, 34.750145499776224], [-77.34964332695735, 34.750379536153815], [-77.34938076886554, 34.75056101271429], [-77.34919971336325, 34.75081530872402], [-77.34887751684934, 34.75095361187081], [-77.34861687174019, 34.750892368569154], [-77.34858156555465, 34.75090599126505], [-77.34847453646081, 34.75092903888112], [-77.3482564561185, 34.75102947679996], [-77.34803999146553, 34.75098865643601], [-77.3479730147838, 34.75099331971931], [-77.34796130209946, 34.75099479714126], [-77.34761568423448, 34.751173169617026], [-77.34735990690118, 34.751100316082514], [-77.34733747731855, 34.75109985419545], [-77.34732804167403, 34.751095124422406], [-77.34725583119305, 34.751096235422175], [-77.34703552483504, 34.7511082581526], [-77.34700968320189, 34.75113000344608], [-77.34691115670643, 34.75134105882463], [-77.34688710267419, 34.75139050850047], [-77.34680763347207, 34.751495317699465], [-77.34662666641088, 34.751913613558926], [-77.34650942437939, 34.75226173804783], [-77.34596821191863, 34.75271977884444], [-77.34547922820528, 34.752516835886546], [-77.34549319702776, 34.75229300820534], [-77.34529294368068, 34.75246065318237], [-77.34476639523665, 34.75273266605224], [-77.3444680130466, 34.753006439017476], [-77.34379723279923, 34.753021852510486], [-77.3434775740878, 34.75304490778676], [-77.34265040906365, 34.75311532732294], [-77.34271880905698, 34.752449628463374], [-77.34260705184585, 34.75236033007468], [-77.34261035447777, 34.75197712797054], [-77.34260192059627, 34.75197010677615], [-77.34259796419474, 34.75194913528617], [-77.3424117417329, 34.751760678995986], [-77.3423741583791, 34.75175106948805], [-77.34226634549319, 34.75169422431614], [-77.3420717135995, 34.75169870695567], [-77.34179088770182, 34.75160213635445], [-77.34159093338938, 34.7515649705023], [-77.34151375199161, 34.75155739217803], [-77.34140289929343, 34.75156755850201], [-77.34085464705637, 34.751730527292324], [-77.34035359052378, 34.75191453970549], [-77.3401471444459, 34.75213722372486], [-77.33880266781073, 34.752920508003164], [-77.3387066832637, 34.75297104269452], [-77.33827665484384, 34.75253662649457], [-77.33824222251732, 34.75250805152628], [-77.33805856119014, 34.75211392735057], [-77.33799065679632, 34.75196820887699], [-77.33784453955823, 34.7518153594185], [-77.33764707153502, 34.751682972163074], [-77.33730121653393, 34.75170998079847], [-77.3372803872995, 34.751695338885945], [-77.33705583840509, 34.751504488006034], [-77.33699200471897, 34.75148946798792], [-77.33673942072309, 34.751495564796826], [-77.3366507986133, 34.75142174995348], [-77.33654190931101, 34.7513471180155], [-77.3364961205348, 34.75130217464739], [-77.33628016983117, 34.75131255443667], [-77.33622607338808, 34.7512007915781], [-77.33589882911848, 34.75121159308278], [-77.3356317606009, 34.75118452589082], [-77.33522086710846, 34.750944537769385], [-77.33509638097144, 34.7509655528938], [-77.33500255922334, 34.7510033929867], [-77.3348911820364, 34.75119800551399], [-77.33512534495866, 34.75154131308461], [-77.33498686835266, 34.75191272699152], [-77.33485994694422, 34.752153759208944], [-77.33454600861216, 34.75225166216344], [-77.33405536608704, 34.752485715904214], [-77.33366716541076, 34.75222856839776], [-77.33367437974252, 34.75213348474117], [-77.33335964864347, 34.752101095780255], [-77.33300947257335, 34.75196220575352], [-77.33288447719573, 34.751952472921786], [-77.33275672664422, 34.75186598815343], [-77.33232512723023, 34.75159421628709], [-77.33226757326184, 34.75144566303296], [-77.3319867076853, 34.75135918738349], [-77.33162028568005, 34.75134780953216], [-77.33118153013956, 34.75110714052481], [-77.33099474854288, 34.75104043533423], [-77.33090458590611, 34.750960338016775], [-77.33039479011566, 34.75075058363657], [-77.3305385819445, 34.75119525542193], [-77.33000959440487, 34.75168603350778], [-77.32995793536469, 34.75183748136117], [-77.3299812420073, 34.752075549512064], [-77.32997744438333, 34.75221661088915], [-77.33000525983397, 34.752243081690565], [-77.33023162325692, 34.75241534074176], [-77.33037710528026, 34.75277430899493], [-77.33088558080736, 34.752700871404166], [-77.33073273532369, 34.753118122949566], [-77.33131959432023, 34.753653433038856], [-77.33175878410326, 34.753606126404804], [-77.33166242061075, 34.753965449712325], [-77.3323250811986, 34.75431596189465], [-77.33300948454024, 34.75422118514524], [-77.33314631885705, 34.75473681063724], [-77.3333689465252, 34.75484654520302], [-77.3337286965156, 34.75498160720739], [-77.33391373134049, 34.75503325448451], [-77.33410706018165, 34.75495396783853], [-77.33458133592495, 34.754797538012255], [-77.3349869575292, 34.754819759417614], [-77.33629466710283, 34.75484873573074], [-77.3368874767556, 34.75510755771168], [-77.33757110835276, 34.75455596685291], [-77.33765535917053, 34.75452685222965], [-77.33780672860837, 34.754474542539064], [-77.33831314835794, 34.75432482616258], [-77.33868283389133, 34.75458926994979], [-77.33916840254693, 34.754885996179766], [-77.33932827014038, 34.75495436057282], [-77.33982256142548, 34.75528962670238], [-77.33986668297854, 34.75531312584044], [-77.34034493830623, 34.755578617126936], [-77.34041045934123, 34.755625939652305], [-77.34046531222666, 34.75568291422644], [-77.34060450133461, 34.7557161243781], [-77.34076515890702, 34.75574738732878], [-77.34084961558497, 34.75590334171679], [-77.34110906021125, 34.75587713604722], [-77.34114172522357, 34.75644273368808], [-77.34122374171046, 34.75655366263868], [-77.34123409020893, 34.75656933691861], [-77.34124886586271, 34.756590788667786], [-77.34145181170288, 34.75679610430521], [-77.34156428104987, 34.75681708222964], [-77.34182200198815, 34.756680012581796], [-77.34217327666485, 34.7566355551162], [-77.34245872279311, 34.75655047033083], [-77.34271011613967, 34.75655555084189], [-77.34335812689207, 34.756512878116446], [-77.3435827095407, 34.75671753130171], [-77.3436058941117, 34.75672582145166], [-77.34382420876081, 34.7569428568009], [-77.34393317923346, 34.75715684032661], [-77.34402645871283, 34.75734001120398], [-77.34437106345194, 34.757096782929544], [-77.34436473264753, 34.756744729030004], [-77.34464112546846, 34.75631471832888], [-77.34487836469884, 34.756052449096906], [-77.34493674541272, 34.75597486197392], [-77.34505468005187, 34.75586333515471], [-77.3451757345032, 34.75590364369614], [-77.34564369641417, 34.755897891079876], [-77.34567647308758, 34.755912788822286], [-77.34594310323841, 34.75589831116209], [-77.3459626708621, 34.755889810162174], [-77.34615327116806, 34.75577594256111], [-77.34632332883763, 34.755620619040705], [-77.34633582791004, 34.75560884456261], [-77.34647695442175, 34.75542439003098], [-77.34659929730825, 34.75532901390108], [-77.3467087113795, 34.75499140699217], [-77.34712954699464, 34.75490770576625], [-77.34765965860811, 34.75469617430732], [-77.347709211598, 34.754601127533476], [-77.34782136903758, 34.75458842993752], [-77.34788040795645, 34.754612230176335], [-77.34824811399241, 34.75444022720839], [-77.3484552354082, 34.754343340431625], [-77.34850088378451, 34.754311487879605], [-77.34863828916806, 34.75422652036822], [-77.34868859087071, 34.754192139908916], [-77.34869324157651, 34.754184261998844], [-77.34872387507093, 34.75406279499326], [-77.3487240612262, 34.75396346556442], [-77.34866032197529, 34.75376276900694], [-77.3485241950541, 34.753602810716885], [-77.34858720041854, 34.753280328962596], [-77.3487239734458, 34.75294694708438], [-77.34925957753907, 34.752763261060124], [-77.34958924043866, 34.75262740544294], [-77.34969539508097, 34.75253092434491], [-77.34994792090217, 34.75243271398598], [-77.35105709554387, 34.75169874964277], [-77.35158261178215, 34.75164960786463], [-77.35228296968663, 34.75160292182114], [-77.35283266725975, 34.75159215288153], [-77.35300977413455, 34.752012563195755], [-77.35324812672292, 34.75206104562584], [-77.3533404356427, 34.75208679625461], [-77.35373241277614, 34.752477000891176], [-77.35371257882232, 34.75286779171498], [-77.35372981286851, 34.75288851250047], [-77.35410138929845, 34.752981641269926], [-77.35389064816171, 34.75369397552569], [-77.35390511266642, 34.75383921844818], [-77.35387141684927, 34.75394692981821], [-77.35392262031742, 34.7542068257667], [-77.35442413091651, 34.754742750887004], [-77.35434025333976, 34.755163191831116], [-77.35493093049759, 34.75564795569946], [-77.35516643913029, 34.756104624279956], [-77.35522214468544, 34.75755752374404], [-77.35530689029484, 34.75769021758419], [-77.35595551492688, 34.75865150232508], [-77.3561669015639, 34.758854145274796], [-77.35672130514746, 34.75930129392418], [-77.35705690329894, 34.759381326405105], [-77.35722594067697, 34.759332963474655], [-77.35769716141972, 34.75967735633999], [-77.35772271692056, 34.75968511202447], [-77.3579071478644, 34.759804067821094], [-77.35797667070092, 34.75984202911645], [-77.35799788859954, 34.759840292865874], [-77.35799975732564, 34.759886081174976], [-77.35810462695457, 34.760086185283825], [-77.35812936874464, 34.760133396256734], [-77.35816939134637, 34.76020976335946], [-77.35851500087438, 34.76051723795916], [-77.35853383076079, 34.760610777515296], [-77.35850709801728, 34.76076201532553], [-77.35856834783866, 34.760898719705786], [-77.35867027500893, 34.76090006530947], [-77.3587310655283, 34.76097496310202], [-77.35901156002035, 34.76103181011656], [-77.35889102376504, 34.76144039009207], [-77.35891418547888, 34.76177057953259], [-77.35897580144969, 34.76184776899153], [-77.35895460499773, 34.76191904710395], [-77.35893576657652, 34.76199136160844], [-77.35902709880948, 34.76220254491188], [-77.35921746183497, 34.76237034849037], [-77.35925262445336, 34.762423323215216], [-77.35926037611262, 34.762641249746856], [-77.35946857820112, 34.7628232613031], [-77.35931060543861, 34.76296148132022], [-77.35936873981827, 34.76312247931119], [-77.35939778971655, 34.763199443881845], [-77.35944989668248, 34.76325717751319], [-77.35944118217951, 34.7633144075663], [-77.35945776181761, 34.76341088418813], [-77.35946102764686, 34.763445731916974], [-77.35950368365992, 34.76354952012491], [-77.35955419681983, 34.76369225140583], [-77.3596584517196, 34.76368812549757], [-77.35974645761932, 34.76375988527195], [-77.35970223418083, 34.76394645804367], [-77.35986771826458, 34.76423062425658], [-77.3598778508707, 34.76430785027006], [-77.35983224538656, 34.76472287936362], [-77.35982899071846, 34.76480878714617], [-77.36006395917117, 34.76495318043479], [-77.36000384948676, 34.76548990016706], [-77.36005950856072, 34.76566645133827], [-77.3600733499249, 34.766030132362644], [-77.36059696002653, 34.76636993293589], [-77.36056788192049, 34.766902214863286], [-77.36050533872357, 34.76730057562222], [-77.36050448911632, 34.767439259352244], [-77.36041079828367, 34.76751811547788], [-77.36041402210644, 34.767784838898216], [-77.36041623161258, 34.76796760012337], [-77.36045934816964, 34.768014392120875], [-77.36054182601745, 34.768177887031015], [-77.3606065489891, 34.76821274024538], [-77.36073462077935, 34.768171071563245], [-77.36083971108972, 34.768219746135365], [-77.3611843219645, 34.7683566795907], [-77.36132500192127, 34.768347283088104], [-77.36146340448295, 34.768491180624125], [-77.36170554656022, 34.768585953630556], [-77.36174584963737, 34.76871257679513], [-77.36184172102307, 34.76877712597344], [-77.36207122287487, 34.76887997974855], [-77.36223020638906, 34.768996695106246], [-77.36244343245755, 34.76891434128541], [-77.36285042771537, 34.769001855577244], [-77.36303637906333, 34.76908173911714], [-77.36348547826006, 34.769552403313824], [-77.3638332770056, 34.769485206038794], [-77.3641761278034, 34.7695754453961], [-77.36433496114915, 34.769444348589445], [-77.3642746624908, 34.76931798561149], [-77.36463257495713, 34.769182387031215], [-77.36463055893742, 34.76916292497971], [-77.36466264759665, 34.76913993180008], [-77.36462408778317, 34.769137514000924], [-77.36452639746102, 34.76900871775502], [-77.36429439204937, 34.769168211908536], [-77.36427751395466, 34.76875976254542], [-77.36385580307675, 34.768583315590064], [-77.36382759066613, 34.76856644388748], [-77.36377136717391, 34.768522494938125], [-77.3633354750458, 34.76835367551969], [-77.36327725527701, 34.768252332967094], [-77.36315125260171, 34.7680859929278], [-77.36305363611791, 34.76802475094354], [-77.3629788976303, 34.76797501187865], [-77.36269814472199, 34.76803731312529], [-77.36230547654677, 34.76762224201545], [-77.3621557433561, 34.76769590343881], [-77.3620904522904, 34.76753321523876], [-77.36213690221052, 34.76745137333201], [-77.36216612407529, 34.76739429271036], [-77.36193243023969, 34.76670649354563], [-77.36191356345871, 34.766320803605254], [-77.36186716411838, 34.766238511946995], [-77.36190659456959, 34.766220961401636], [-77.36186416437202, 34.76584240781157], [-77.36175982644824, 34.76564171542169], [-77.36179373557312, 34.765287544526466], [-77.36177554378186, 34.7650879881071], [-77.36185744026449, 34.76495270178802], [-77.36187460546049, 34.764563432767744], [-77.36182113021988, 34.76443012359047], [-77.361589351155, 34.7641718043142], [-77.36133765517555, 34.7638162632627], [-77.36124447099382, 34.76342287696791], [-77.36135536233692, 34.76307281346194], [-77.36146719510225, 34.762743145620355], [-77.36193858192199, 34.762529300758395], [-77.36203591998499, 34.762200883810834], [-77.36210175181277, 34.76184679649459], [-77.36213112802196, 34.76134669417282], [-77.36222095115549, 34.761329290624516], [-77.36222318184994, 34.761230417720725], [-77.3623218620128, 34.7609099242891], [-77.36234088975823, 34.76081204387816], [-77.3625145735918, 34.760476391205614], [-77.36249786502859, 34.76022355279958], [-77.36201777466596, 34.75966365689089], [-77.36193314695014, 34.75962655291862], [-77.36189238750549, 34.75956618605316], [-77.3614521509693, 34.75915468364752], [-77.36080349865564, 34.75939080565254], [-77.36037385481379, 34.759435733879435], [-77.3601846477182, 34.75945895821007], [-77.36009693266406, 34.75940857270197], [-77.359872016763, 34.75935618063251], [-77.35963481959985, 34.75928945375034], [-77.35933450727329, 34.75920651267154], [-77.35943000624643, 34.75892947539883], [-77.35925298173386, 34.75854156080878], [-77.35921834410765, 34.7585074004714], [-77.35922592218132, 34.758470107255405], [-77.35921533147197, 34.75840979192009], [-77.35916980295741, 34.758150506254374], [-77.35909413448667, 34.75800081353135], [-77.3590455602618, 34.75785183580092], [-77.3590545326024, 34.75751886521514], [-77.3590415515508, 34.757460692388534], [-77.35901385203637, 34.75730234369041], [-77.35900390174626, 34.75728212348714], [-77.35900199370418, 34.75726357663106], [-77.35893752197589, 34.757146477679655], [-77.35885900676743, 34.757058321886916], [-77.35880232513186, 34.75699937358183], [-77.35865533382349, 34.7569692904494], [-77.3585583413216, 34.75680815700996], [-77.3583294034746, 34.756825745965514], [-77.35822757323045, 34.75625864642542], [-77.35816557455081, 34.756178743608224], [-77.35816500159498, 34.75616374381634], [-77.35816269520201, 34.75610787771818], [-77.35810032823574, 34.75581926154733], [-77.35798404985171, 34.755716277113564], [-77.35801562737439, 34.75549018250674], [-77.35779991775966, 34.7552944562888], [-77.3577547851852, 34.75526036446356], [-77.35750565718459, 34.75509397056332], [-77.35729547388223, 34.754968797187225], [-77.35698934773713, 34.75470263571723], [-77.35677767268011, 34.75441972004238], [-77.35671265688316, 34.75412700611417], [-77.35677406951831, 34.75393283211026], [-77.35654324551435, 34.753490510388], [-77.35653675510613, 34.75347802324649], [-77.35653520824583, 34.75347505049792], [-77.35653248654111, 34.75347094346659], [-77.35571860814545, 34.752615554059346], [-77.3556780578073, 34.752557438205415], [-77.35562214298628, 34.7524804836739], [-77.3551191487853, 34.751723065457206], [-77.35505044624603, 34.75146329080572], [-77.35509992921581, 34.75093571484362], [-77.35551128489958, 34.750799918077334], [-77.35582061733513, 34.75065201969838], [-77.35609289244645, 34.750538775324024], [-77.35621648090861, 34.75043431649516], [-77.35646325273726, 34.75007642648611], [-77.35637660035482, 34.74988304618861], [-77.3562632751104, 34.749742028877336], [-77.35608798856781, 34.74964055318105], [-77.35593634976972, 34.74933651089272], [-77.35580077058144, 34.74930933296543], [-77.3553912067196, 34.74915111352785], [-77.3547158243266, 34.74885412588252], [-77.35453885735191, 34.74870307450415], [-77.35444369015258, 34.74828883650734], [-77.35422385962642, 34.748156930651625], [-77.35389550969452, 34.748113927154066], [-77.35387180758275, 34.74799520297719], [-77.3539614723943, 34.74788684522761], [-77.35438586416936, 34.74775031632103], [-77.35447959339322, 34.74742440221271], [-77.35431092078922, 34.747301549274006], [-77.35433545684523, 34.74695680136058], [-77.35425208226768, 34.74655838623146], [-77.35423816025681, 34.74634301919107], [-77.35417925927483, 34.746003475068086], [-77.35421460589674, 34.74579879210444], [-77.35409882498719, 34.74535192241152], [-77.35398851900665, 34.74505488968129], [-77.35436527843368, 34.74443459460544], [-77.35455938230494, 34.74407464009719], [-77.35468840862193, 34.74398406215043], [-77.3552480900563, 34.74345732775626], [-77.35528516558676, 34.743441102700025], [-77.35527709925351, 34.743415875386425], [-77.35528153547885, 34.74340129424021], [-77.35556286582157, 34.74288926609081], [-77.3557702348747, 34.742631173095276], [-77.35578287077429, 34.74260553430817], [-77.35600423964003, 34.74234129575571], [-77.3559592794671, 34.74209154194577], [-77.3557279678001, 34.74189183469288], [-77.35538179822312, 34.741747318016024], [-77.355233951972, 34.74144385456014], [-77.35489723903272, 34.74103109914671], [-77.354842696812, 34.74058515791896], [-77.35486268202776, 34.74051393653904], [-77.35498790264036, 34.7400438895886], [-77.35501502969682, 34.74001066698503], [-77.35506721847483, 34.739624030530535], [-77.3549420431883, 34.73956280112008], [-77.35466858652298, 34.73926617843323], [-77.3544830623493, 34.739284953651854], [-77.35447273526015, 34.739139836330565], [-77.35370245531907, 34.738468410736694], [-77.35360365129017, 34.738384579060344], [-77.35311896035569, 34.73841530708983], [-77.35309470046816, 34.73838186338332], [-77.35299065961917, 34.73836849606292], [-77.3530449571343, 34.73826538500539], [-77.3531585581737, 34.73827898041438], [-77.35366144077912, 34.738173298022716], [-77.35381723466489, 34.73807323948408], [-77.35438828180271, 34.73720189699387], [-77.3548709489245, 34.7366918745017], [-77.35495509514361, 34.73663671080903], [-77.35552064405088, 34.7363324623561], [-77.35600994876171, 34.73649190770657], [-77.3560480430215, 34.73650426253518], [-77.35606809533618, 34.73650961820531], [-77.3561290053189, 34.73652993336019], [-77.35661894597564, 34.7366750727675], [-77.35687793717537, 34.736654279467245], [-77.35691453681677, 34.73685510835752], [-77.35713323287371, 34.73696643749556], [-77.35735629865778, 34.737074723721726], [-77.35752219917356, 34.73712591155384], [-77.35769018048624, 34.737110909979506], [-77.35779478611285, 34.73697795270126], [-77.35791012758705, 34.73683134950119], [-77.35829618322123, 34.73666542090476], [-77.35847879332069, 34.73645761777856], [-77.35871963670368, 34.73627203968908], [-77.35925031774829, 34.73586312571457], [-77.35957408215943, 34.73575253986969], [-77.35974375724905, 34.73549189138015], [-77.3601226682597, 34.73496210719091], [-77.36011891419503, 34.734949417230645], [-77.35989095877532, 34.734496907273716], [-77.35987486933189, 34.73434871463434], [-77.36002795422928, 34.733601812607404], [-77.3602727882892, 34.73346970371027], [-77.36088961572166, 34.73308872980854], [-77.36129098616003, 34.732960153791154], [-77.3614538362881, 34.732820133377245], [-77.3616769334317, 34.73250979445736], [-77.36200334860008, 34.732257279921846], [-77.36290583061387, 34.73152343803148], [-77.36318471309234, 34.731292716454355], [-77.36410270126275, 34.731095874188135], [-77.36424678234889, 34.73103000472332], [-77.36433299928564, 34.73103354898045], [-77.36483669516147, 34.731060783546695], [-77.36509822883083, 34.731118360826265], [-77.36515931299232, 34.7311273364911], [-77.36540771608563, 34.73115664150865], [-77.36560831544416, 34.731120118463906], [-77.36583806366025, 34.7310904078934], [-77.36605890228046, 34.73097633280592], [-77.36632995576352, 34.73095908938077], [-77.36669374067344, 34.73085233042349], [-77.36703043706376, 34.73087027695954], [-77.3680040564368, 34.73045824733253], [-77.36800518529897, 34.7304573806438], [-77.36800602004114, 34.73045751698288], [-77.36800638482968, 34.73045760884815], [-77.36800750302388, 34.73045777382], [-77.36879759818592, 34.73063727695044], [-77.36918482801087, 34.73052251673891], [-77.36963809334924, 34.73062743742955], [-77.36987911039478, 34.7305935525206], [-77.3703948602776, 34.730479919844115], [-77.37077605653673, 34.730565762406485], [-77.37141614780046, 34.73062642126757], [-77.37164436261293, 34.730593651474244], [-77.37169878335429, 34.73057818725385], [-77.37211160248587, 34.73067915923425], [-77.3726688585879, 34.730668070926555], [-77.3729347090276, 34.730566625641515], [-77.3732965517173, 34.73073565136715], [-77.37336516096802, 34.73111798844238], [-77.37340461578786, 34.731157096315265], [-77.37348899959717, 34.73116133901429], [-77.37377642673684, 34.7309829073086], [-77.37411624198506, 34.73091457692798], [-77.37455006017896, 34.730751366434006], [-77.37549707797797, 34.730575662960405], [-77.37627366655191, 34.73057679972349], [-77.37677270149166, 34.73059933710334], [-77.37804987874253, 34.73052101649135], [-77.37747458091138, 34.729887643596065], [-77.3770430239486, 34.72966763004987], [-77.37659968340347, 34.72935957855734], [-77.37697753647583, 34.729027279943566], [-77.37708613133013, 34.72891159461988], [-77.37727184657197, 34.72887894409522], [-77.37774310545248, 34.728489231106614], [-77.37803766605796, 34.72827996666363], [-77.37840704647999, 34.72807827165352], [-77.37880528263877, 34.72801382891009], [-77.37889856788195, 34.728022111471034], [-77.3792968925475, 34.72803689705172], [-77.37943402136627, 34.72805685261716], [-77.37958284434046, 34.727982024375805], [-77.37967566054047, 34.72790798074311], [-77.37980289291326, 34.727779449131845], [-77.3800049606138, 34.7276981383411], [-77.38021844730828, 34.72756318669731], [-77.38044989488849, 34.72744671794938], [-77.38068373274884, 34.727311458092906], [-77.38138114008964, 34.727213470084905], [-77.38151398202622, 34.72717258930742], [-77.38162176435097, 34.72714642203865], [-77.38170286882983, 34.72723335510266], [-77.38180322527748, 34.7273611986048], [-77.38243774468353, 34.72781972797081], [-77.38265152926425, 34.72801746493211], [-77.38275305057013, 34.72813463758787], [-77.38289706800077, 34.7283032125494], [-77.38302277963753, 34.72846853757247], [-77.38353499670588, 34.72908565122513], [-77.38352037006821, 34.72915378487286], [-77.38355327937225, 34.72932992759516], [-77.3839560079698, 34.72967027588942], [-77.38462265341006, 34.729466290831375], [-77.38476112674938, 34.72949025080347], [-77.38478703464567, 34.72949779188861], [-77.38484787157734, 34.729493213202375], [-77.38558333426083, 34.729338176902395], [-77.38569763048758, 34.72928330753531], [-77.38597330589401, 34.72922757564821], [-77.38620188315716, 34.72904123389328], [-77.38627742187789, 34.728976543293264], [-77.38630456388567, 34.72893652896121], [-77.3866263055652, 34.72879873849953], [-77.38666393456394, 34.72878270238347], [-77.38694666482408, 34.72868411188702], [-77.38700603577645, 34.728671388747124], [-77.38733957454511, 34.728739548864766], [-77.38756191500414, 34.72877362931161], [-77.38762366150887, 34.72883896042954], [-77.38782225238667, 34.729146339287745], [-77.38784285437313, 34.72919524648168], [-77.38792298758746, 34.729422725591675], [-77.38795569420517, 34.72951431575791], [-77.38797830851718, 34.729548879796134], [-77.38800677707624, 34.72955977083605], [-77.38824975711786, 34.72971839873944], [-77.38849406162898, 34.72975897958111], [-77.38855580655397, 34.72976860246863], [-77.38859754333535, 34.729777577687834], [-77.388809536275, 34.72981309159898], [-77.38910566929819, 34.72986021650343], [-77.38917494623787, 34.72984473046479], [-77.38924988486093, 34.729890302270086], [-77.38963027584023, 34.729969805514344], [-77.38979038282976, 34.72993362898552], [-77.39028467707317, 34.72990535954954], [-77.39050874510053, 34.729909724312805], [-77.39110406702859, 34.72982582842343], [-77.39130223821864, 34.72971066536243], [-77.39171607203056, 34.72971176970795], [-77.39178132998994, 34.72970149059304], [-77.39221924690771, 34.72971360780798], [-77.39241975051108, 34.729711105665515], [-77.39261054801153, 34.72982863380213], [-77.39298537238761, 34.72997181034246], [-77.39337460705337, 34.73010633539637], [-77.39357622561977, 34.73014549429789], [-77.39377116455663, 34.73023753443171], [-77.39389835986563, 34.73047529691892], [-77.39405398263007, 34.73070928227133], [-77.39421840535942, 34.73094375986935], [-77.39428217301219, 34.73102804992565], [-77.39438209569026, 34.73100556018883], [-77.39461089006095, 34.73100007645954], [-77.39481741968551, 34.730969102281605], [-77.39581232061857, 34.731144899067246], [-77.39585126719575, 34.731145123881724], [-77.3958604895663, 34.731151976391985], [-77.39679503217576, 34.73120969237246], [-77.39710674386377, 34.731238081293284], [-77.39740573994317, 34.73114318518039], [-77.3976402702144, 34.73109521462882], [-77.39780075181281, 34.73105594245757], [-77.39821990184781, 34.731061170962796], [-77.39844438163989, 34.73104758791411], [-77.39852113765589, 34.73103899241936], [-77.39866470758926, 34.73102445611097], [-77.39911304756833, 34.73095285405723], [-77.39936726362228, 34.730925960247774], [-77.39976237702521, 34.73092482381164], [-77.4003474477985, 34.73106697254093], [-77.40036059142126, 34.731073144061284], [-77.40037519109187, 34.73107748374665], [-77.40041092510515, 34.73107615548901], [-77.40100155951696, 34.73107395556364], [-77.40133334838258, 34.731147615543456], [-77.402207135641, 34.73114531551355], [-77.4022380510067, 34.73113034418625], [-77.40227022423804, 34.7311213606224], [-77.4022923988781, 34.7311488543953], [-77.40229967536767, 34.73117768407109], [-77.40229203343145, 34.73121860368463], [-77.40215403559858, 34.732099197045294], [-77.40234015277113, 34.73231009814564], [-77.40228009855211, 34.73269552672983], [-77.40220845735628, 34.73282316494334], [-77.40186219266722, 34.732760496062085], [-77.40179272870657, 34.73276891139504], [-77.40146404544417, 34.73285776727947], [-77.40112024152222, 34.73287680780623], [-77.4007336149446, 34.732866429145076], [-77.40061014850626, 34.73295813453333], [-77.40048766294156, 34.73284700418294], [-77.40040765169766, 34.732827188712676], [-77.39958177677501, 34.73277322613264], [-77.39925106233463, 34.73268887021184], [-77.39886795373937, 34.7327729677449], [-77.3986945746776, 34.73281912822658], [-77.39855138314948, 34.73289054884068], [-77.3979310291695, 34.732966874795494], [-77.39788526415383, 34.73297643806958], [-77.39787543082241, 34.73297630785435], [-77.39784902636909, 34.732975678742626], [-77.39741838269288, 34.73297726772083], [-77.3972232017991, 34.73304832298979], [-77.39696310147968, 34.73298111581262], [-77.39670635545008, 34.733135094548956], [-77.39652535293197, 34.733243646948154], [-77.39634779441951, 34.73347159908844], [-77.39626625564603, 34.73354028117248], [-77.39601277872434, 34.73367210358565], [-77.39589148220686, 34.733816972747476], [-77.3961027274722, 34.734042219599985], [-77.39610928815999, 34.734578222001595], [-77.3960875139975, 34.73459604252297], [-77.3960788596439, 34.7346315137173], [-77.39612512663395, 34.73462421551859], [-77.39616280843171, 34.73462238198461], [-77.39687897185864, 34.734340148500586], [-77.3975159063894, 34.7342506050552], [-77.397717048399, 34.734047791666434], [-77.3981075918205, 34.73378592658778], [-77.39826110202519, 34.73367896584201], [-77.39829662138933, 34.733664993154484], [-77.3983295750078, 34.733655745590625], [-77.39849276595453, 34.73362537831113], [-77.39900619170595, 34.73353365392468], [-77.39943470772104, 34.73412540341242], [-77.39947395065725, 34.734132105799844], [-77.39950438809863, 34.73414321184951], [-77.39976038462684, 34.734250027737694], [-77.39988630059696, 34.734247452618995], [-77.40003194735883, 34.734257519273925], [-77.40009204652377, 34.734211914071366], [-77.4002601651558, 34.73409865755124], [-77.40034000187718, 34.73401293658079], [-77.40045656062293, 34.73388778617432], [-77.40090088871118, 34.73363361927792], [-77.4009991870167, 34.73359420638331], [-77.40121843598706, 34.73359514204055], [-77.40145205038738, 34.7335863870065], [-77.4015528491814, 34.733596569146556], [-77.40170641605093, 34.73362478670457], [-77.40198321576992, 34.73370658395724], [-77.40217830112417, 34.73365097610137], [-77.40272899280302, 34.73356435883109], [-77.40254159456279, 34.73312305327195], [-77.4029130776909, 34.73332815920699], [-77.40324617299149, 34.732778556256584], [-77.4034665535618, 34.732704075143715], [-77.40362896347935, 34.7326561769607], [-77.40374917530272, 34.732326890595644], [-77.40374525721418, 34.73224242901448], [-77.40374363456782, 34.73209545333936], [-77.40366552596572, 34.73165541609197], [-77.40359247684071, 34.73149954566823], [-77.40349745491591, 34.73131172850872], [-77.40341670636364, 34.731126487655494], [-77.4033523438449, 34.73098675095228], [-77.40326073640531, 34.730745174526426], [-77.40302728837491, 34.73031392763487], [-77.40305569702738, 34.72993798525293], [-77.40316048599027, 34.7296456424244], [-77.40334041823462, 34.72964106708431], [-77.40358128172457, 34.72938944836515], [-77.40379550155727, 34.729187463816906], [-77.40379921233992, 34.72918168655168], [-77.4039534781557, 34.728960507294225], [-77.40404628112756, 34.72884927934138], [-77.4042987398283, 34.7285466951518], [-77.40431076089405, 34.72853349758507], [-77.40431642578126, 34.72852833136977], [-77.40436214220009, 34.72850066463246], [-77.40484342535792, 34.728153535532414], [-77.4049269400023, 34.72804453875105], [-77.40508191630653, 34.72805665798773], [-77.40533561304932, 34.72796451056917], [-77.40543017461118, 34.72796116011614], [-77.4056523021764, 34.72787733009041], [-77.40570087578875, 34.72781350972615], [-77.40580625474696, 34.72776964133727], [-77.40641922136497, 34.72758644616859], [-77.40646546484501, 34.72756720181395], [-77.40650334003557, 34.72757665984518], [-77.40657066468795, 34.72757988887985], [-77.40697628855294, 34.72765417649055], [-77.40714933678774, 34.72755998473802], [-77.4074074280019, 34.72761087690066], [-77.40768219646382, 34.727469053221455], [-77.40776551117835, 34.7274481418979], [-77.40782152300724, 34.72745291486885], [-77.40804534508803, 34.72731650412223], [-77.40812768833966, 34.72729210139549], [-77.4082119356031, 34.727211892681375], [-77.40834114811443, 34.727140400957964], [-77.40832346404568, 34.72686402627211], [-77.40832134228852, 34.7268499553664], [-77.40836008016109, 34.726587907835004], [-77.408436521466, 34.7263007220974], [-77.40847017296971, 34.726067297913296], [-77.40858735623219, 34.72584634988214], [-77.40872114339189, 34.72559595926745], [-77.40879291485689, 34.72538710820879], [-77.40894597394507, 34.72511547900578], [-77.40902399370715, 34.7250167604781], [-77.40910557376687, 34.72473758157358], [-77.4091432964677, 34.72462537874786], [-77.40919946173786, 34.7245554997469], [-77.40938235751571, 34.72427852997699], [-77.40944757655815, 34.72417268636467], [-77.40946381404005, 34.72414185889553], [-77.40959211068154, 34.723943680218625], [-77.40967047583665, 34.723829294853516], [-77.40974296912891, 34.723716885784306], [-77.40990381127634, 34.72351204177408], [-77.40991385817256, 34.72347907187351], [-77.4099370378654, 34.723470408650556], [-77.41013772711955, 34.7232958383896], [-77.41021461692033, 34.72322265175332], [-77.41034568633866, 34.723166345769535], [-77.41071410847508, 34.72293831098968], [-77.41088561842162, 34.72282341249735], [-77.4111386995214, 34.72264201620189], [-77.41124719231814, 34.72256564088544], [-77.41140620720981, 34.722439200993456], [-77.41149438716354, 34.72237253942599], [-77.41151509855543, 34.722356302054145], [-77.41155357588255, 34.72231642132316], [-77.41170115904498, 34.72216530057236], [-77.41179257760425, 34.72206183562294], [-77.41202326863677, 34.72180157375646], [-77.4120636380793, 34.72175687952023], [-77.41208448323623, 34.721740254436945], [-77.41210567095091, 34.72170116661427], [-77.41224107720734, 34.72151546718745], [-77.41230721492781, 34.721406995707504], [-77.41238184247668, 34.72128514400569], [-77.41252123380136, 34.72100879285438], [-77.41257743586182, 34.720794443975414], [-77.4127075547537, 34.72056531580107], [-77.41270921821769, 34.72056098037616], [-77.41271284110245, 34.720555260102486], [-77.41284025743943, 34.72032725647978], [-77.41292446778782, 34.72017185100196], [-77.41303386951884, 34.719975028711744], [-77.41300213943559, 34.719824767317974], [-77.41311187250636, 34.719730149595826], [-77.41328192483391, 34.71942522768622], [-77.41330805782962, 34.71937265304631], [-77.41332536316693, 34.71933109629519], [-77.4134663066196, 34.71903295684237], [-77.41353577475516, 34.7188931896318], [-77.41379936517463, 34.7186098654705], [-77.41395975375492, 34.71848236454088], [-77.41430670271056, 34.718344806197564], [-77.41449676916345, 34.7182538604561], [-77.41483043599384, 34.71822776181911], [-77.41492030082709, 34.7181981878819], [-77.4150019801194, 34.718157674470774], [-77.41536766373355, 34.71818147104357], [-77.41562490289296, 34.71822036212369], [-77.41614555706418, 34.71823093263007], [-77.41626703254198, 34.718216728282016], [-77.41642723658715, 34.71841751202843], [-77.41651070728645, 34.71852499763414], [-77.416515522705, 34.71853750547568], [-77.41671836044037, 34.71887194477652], [-77.41672636963776, 34.718881410052454], [-77.41674163974437, 34.718896125381605], [-77.41676495314876, 34.71896956761581], [-77.41688436268679, 34.71922558174873], [-77.41684135019389, 34.71927981467093], [-77.41686171339987, 34.71949720766088], [-77.41676234362673, 34.719759126082856], [-77.4167637794263, 34.72002205427188], [-77.41659337016469, 34.720185115056296], [-77.41652019074303, 34.720495967061645], [-77.41661542166713, 34.720713123998905], [-77.41668320982204, 34.72107998373221], [-77.41668434996897, 34.7211124658367], [-77.41651524404605, 34.72155343709073], [-77.41647714642416, 34.72159910265679], [-77.41649538117983, 34.72165590867125], [-77.41649954311512, 34.72184120809314], [-77.41649901371403, 34.72216584332086], [-77.4166983066518, 34.72246399630911], [-77.41683362491125, 34.722841943584136], [-77.41684560728244, 34.72285997498675], [-77.41688151606822, 34.72290015170087], [-77.41708450570101, 34.723141935092826], [-77.417146202447, 34.72316991899564], [-77.41733403219452, 34.723387201119074], [-77.4175162846774, 34.723461933178584], [-77.41754384902208, 34.72364937998704], [-77.41736241567824, 34.72397246765242], [-77.41777843668058, 34.72406645229811], [-77.41783877554772, 34.724220158874985], [-77.41795947537454, 34.72435379888073], [-77.4181698549636, 34.72452844042381], [-77.41820529318683, 34.724806322359896], [-77.4182480806295, 34.72494217888487], [-77.41830980109305, 34.725035381022096], [-77.41815441234175, 34.72542760782006], [-77.41861545670457, 34.72560386115072], [-77.41865598252119, 34.725664785473924], [-77.41880091527298, 34.72576618550472], [-77.41906787184007, 34.72593936481114], [-77.41914154566177, 34.72600111505564], [-77.41932068975416, 34.72613894344571], [-77.41967620704594, 34.7263687807487], [-77.41989734780559, 34.72648614557019], [-77.42024331658276, 34.726624404145866], [-77.42062461650377, 34.72677411685657], [-77.42099486693013, 34.72692112915544], [-77.42100406138562, 34.72709555495924], [-77.4211232770437, 34.727313941394506], [-77.42121255113106, 34.72744798645818], [-77.42126955375073, 34.7275085972096], [-77.42139929374694, 34.72751327373964], [-77.4215443980718, 34.72752937846439], [-77.42158716744045, 34.72751880327916], [-77.42180128759983, 34.72747752224302], [-77.42192580864327, 34.72745638864668], [-77.42195620976864, 34.72745445939685], [-77.42251322128844, 34.72762695117148], [-77.42251402896969, 34.727639141629496], [-77.42258487994758, 34.72804343458472], [-77.42261284819276, 34.72821707403157], [-77.42288345280122, 34.72857755855581], [-77.42312190215421, 34.728712190587544], [-77.42343241282755, 34.728895936309875], [-77.42355936890411, 34.728976098038984], [-77.42386129936601, 34.729071938568154], [-77.42401756214005, 34.72908933392068], [-77.42433929117814, 34.72909716304215], [-77.42464733677902, 34.729128605066265], [-77.42509453370349, 34.72959141283153], [-77.42513954072535, 34.72964304481113], [-77.42514779632658, 34.72965268075029], [-77.42515323833983, 34.729664214463206], [-77.42536591713717, 34.73000807745835], [-77.4253765164923, 34.73005219360252], [-77.42541146537434, 34.73031354879885], [-77.42531731410091, 34.73047472825267], [-77.4254791698786, 34.730684499535734], [-77.42568822559696, 34.73096935938578], [-77.42555431755011, 34.731090597970905], [-77.42532990810136, 34.73120004741448], [-77.42520853001382, 34.73127343821026], [-77.42511207796552, 34.731327033052494], [-77.42485794517097, 34.73144844217619], [-77.42478199027975, 34.731491183546524], [-77.42468609564176, 34.73154157053206], [-77.42455821505308, 34.73165089119379], [-77.42453569883584, 34.73166975413311], [-77.42452810208515, 34.73168196977604], [-77.4245362793764, 34.73169325904832], [-77.42454526801671, 34.73169560814813], [-77.42458482377863, 34.731750027181945], [-77.42460656123376, 34.73177553874856], [-77.42468488383851, 34.73176701711787], [-77.42471765842863, 34.73174823081735], [-77.42473934952639, 34.731628590334815], [-77.42490405413449, 34.73156365530981], [-77.4249181192825, 34.731546769913145], [-77.42527150636607, 34.73140176506232], [-77.42528481634707, 34.73139809388338], [-77.42530189242606, 34.73139338387157], [-77.4256520684041, 34.73125032589887], [-77.42592414536362, 34.73136211602093], [-77.42602248120384, 34.731365731999425], [-77.42606193217966, 34.731172186833334], [-77.42644963748114, 34.731341556046026], [-77.4265748373654, 34.73132918564328], [-77.42666959630498, 34.73141725108158], [-77.42697593346854, 34.73156840702373], [-77.42708482412257, 34.73173706403104], [-77.42708627621465, 34.73174557140767], [-77.4270937192511, 34.73175155242334], [-77.42722447366839, 34.73191111655721], [-77.42732553384499, 34.73205816970687], [-77.42736155108784, 34.73211332055452], [-77.42746489133275, 34.73225721450048], [-77.42753553179683, 34.732440153058846], [-77.42753826863537, 34.732454619625855], [-77.42756967720851, 34.73265988850543], [-77.42757217700589, 34.73274600242366], [-77.42756562300069, 34.7328813087572], [-77.42755881762304, 34.733020864001276], [-77.4275058041269, 34.733132914650845], [-77.42760852642587, 34.73331776894215], [-77.42781102502227, 34.73370329106758], [-77.42791736602462, 34.73385400867497], [-77.4279340551497, 34.733990608627465], [-77.42803406332743, 34.73425171585259], [-77.42815572258445, 34.7345932901841], [-77.42817070831236, 34.734632382706124], [-77.4281712296239, 34.73464088489805], [-77.42809177038589, 34.7349483192293], [-77.42804420424702, 34.735140254412656], [-77.42804677028178, 34.7351481253411], [-77.42804252866217, 34.73515617448527], [-77.42807748626831, 34.73534956393456], [-77.42813274052568, 34.73545770252446], [-77.42818128027419, 34.735529461514254], [-77.42822986095872, 34.735578728713], [-77.42830639133784, 34.73570046755713], [-77.42837095647795, 34.735820489808376], [-77.42839882705044, 34.735885103156015], [-77.42843253701528, 34.735986049834295], [-77.42850533098579, 34.736146983301495], [-77.4285120390688, 34.73628426510193], [-77.428486479652, 34.73641992417183], [-77.42850895829802, 34.73666605473517], [-77.42837159905817, 34.736659303071285], [-77.42822234835782, 34.73671209428324], [-77.4280763637274, 34.736707104163074], [-77.42789005806779, 34.736543703748424], [-77.42767136431219, 34.73640048822179], [-77.42722292686193, 34.73606056533026], [-77.42714182439448, 34.73601482476068], [-77.42708725514855, 34.735985794305165], [-77.4266384773979, 34.73585349533762], [-77.42654724804845, 34.735853811264406], [-77.4262894596317, 34.73587217569837], [-77.42622098620961, 34.73587338024197], [-77.42618808453149, 34.7358654531898], [-77.42606163932467, 34.73585194607817], [-77.42591284114667, 34.73583037375432], [-77.42583441610944, 34.7357725257368], [-77.42583829274761, 34.73561397590059], [-77.42583735064868, 34.73549401818454], [-77.42571373346897, 34.735090401411625], [-77.42565705586904, 34.734871933439756], [-77.42562502927557, 34.734810168209364], [-77.42556896011179, 34.734803501970184], [-77.42550761783718, 34.73475362155145], [-77.42505117126962, 34.73460314251954], [-77.42498378670676, 34.7346100440479], [-77.42493882254088, 34.73462088431514], [-77.42454899852407, 34.734683008921536], [-77.42430067456706, 34.73475484296417], [-77.42418140086633, 34.73483023724866], [-77.4240310443561, 34.73486264426533], [-77.42393718769668, 34.735179076866544], [-77.42356870061666, 34.73506837767502], [-77.42341068670886, 34.73506665856763], [-77.42313795392897, 34.73510953418051], [-77.42304577611677, 34.73521827982154], [-77.42281803741268, 34.73544642859166], [-77.4223924142451, 34.7356464665117], [-77.42241375155842, 34.73597453089842], [-77.42241131844115, 34.73615053429059], [-77.42220282206694, 34.73683248725051], [-77.42212825249948, 34.73699288273752], [-77.4216942601862, 34.737342329542585], [-77.42165639860207, 34.737387019328125], [-77.42210752549347, 34.737900076022335], [-77.42239236860767, 34.73794392927701], [-77.42246949737805, 34.73823031475867], [-77.42221366942607, 34.73834603515185], [-77.42225037700139, 34.73871279753622], [-77.42178722630914, 34.739006137125656], [-77.42172540050046, 34.73904403056738], [-77.42164297514657, 34.739059556095015], [-77.42136153137766, 34.7391973836577], [-77.4210796126749, 34.739235378605585], [-77.42092162408913, 34.73922648797085], [-77.42072075940891, 34.73929626768411], [-77.42060136283484, 34.739451100926104], [-77.42053137011473, 34.73961277654702], [-77.42056009345919, 34.73979918421631], [-77.42082110302096, 34.740128017443865], [-77.4213807812298, 34.740086059075786], [-77.42144982218086, 34.740089573219], [-77.42147432516343, 34.74008662496047], [-77.4215158297571, 34.740094970960335], [-77.42247881188169, 34.740275087281674], [-77.42273300317757, 34.74016876740282], [-77.4228636801254, 34.74042561210241], [-77.42309053569541, 34.74068368571974], [-77.42318662205436, 34.74081666167501], [-77.42332983925465, 34.74112395232548], [-77.4237043498943, 34.74124318413312], [-77.42408256074484, 34.74139967579939], [-77.42426345674407, 34.74152682233363], [-77.42434257941743, 34.741594342589835], [-77.42439764968859, 34.74169961958326], [-77.42453402490392, 34.74196087699958], [-77.42453598963093, 34.74214050821463], [-77.42447723692857, 34.74228650431229], [-77.42442798048495, 34.74245148059384], [-77.42441361595262, 34.742543802604786], [-77.42437364993249, 34.74262314707872], [-77.42436305612172, 34.74270174613763], [-77.42447254045081, 34.742784716038486], [-77.42453243334892, 34.74281243564699], [-77.42477342485334, 34.74275379025478], [-77.42489114295093, 34.74272076198463], [-77.42518247688038, 34.74278206101499], [-77.42545960109103, 34.74290163823004], [-77.42546728431616, 34.74290575694964], [-77.42547336212931, 34.74290825617346], [-77.4257687523467, 34.742971913909074], [-77.42597752929211, 34.74299995447447], [-77.4261687681697, 34.743064608453366], [-77.42636368485239, 34.74313187362247], [-77.42655474249004, 34.74319512218392], [-77.42665606077558, 34.743229436397456], [-77.42677728187479, 34.7432571981388], [-77.42695336601378, 34.74330997486999], [-77.427108179941, 34.7433514405319], [-77.42743979917938, 34.74342726212837], [-77.42754939314364, 34.74346616341087], [-77.42767880519774, 34.74353583227722], [-77.4279675701218, 34.74365352379553], [-77.42804525061332, 34.74396833849931], [-77.4284181165355, 34.74399578709385], [-77.42866835316306, 34.744031023582295], [-77.42887563969163, 34.7439953981953], [-77.42911464033128, 34.74406786771975], [-77.42927929588325, 34.74413571056797], [-77.4294379994212, 34.74429972050628], [-77.429459554259, 34.744370394045035], [-77.42938452973952, 34.74456056243886], [-77.42930727066727, 34.74470050668018], [-77.42914569000615, 34.74494769148623], [-77.42911099073473, 34.745024029285474], [-77.42908388170343, 34.74508338282541], [-77.42906253740718, 34.7454287604234], [-77.42903125533846, 34.74555522113026], [-77.4290322303026, 34.74574680680822], [-77.42903633105834, 34.74588607780145], [-77.42916593340169, 34.74616133865705], [-77.42898732927122, 34.74635290259585], [-77.42906312875525, 34.74654508054549], [-77.42914081919568, 34.74671161774422], [-77.42916427282054, 34.74672549012482], [-77.4291701578388, 34.74672765400923], [-77.42917956145187, 34.7467352782224], [-77.42959802998831, 34.74699096539179], [-77.42971441534937, 34.747062746165476], [-77.42986932059605, 34.74732420287924], [-77.43003878340986, 34.74758445128007], [-77.43004412373665, 34.74769768406826], [-77.42999364122392, 34.7478482036571], [-77.43001236500595, 34.74793412487478], [-77.43002427211239, 34.74799867005842], [-77.4300532786439, 34.74810731505271], [-77.4300802244479, 34.74812901643597], [-77.4302055014347, 34.74820175909339], [-77.43031550422563, 34.74830908663707], [-77.43040083082775, 34.7482700117358], [-77.43051164817831, 34.748163443347366], [-77.43071437775872, 34.74786451894113], [-77.43072112156106, 34.74782287749127], [-77.43073780992756, 34.747785092810005], [-77.43080670280615, 34.74771993698255], [-77.43129528382562, 34.74762222310632], [-77.4322082161141, 34.74730897490154], [-77.4322721804625, 34.7473003230577], [-77.43243028174696, 34.74730198563762], [-77.43294524651938, 34.74697815795068], [-77.43305239437133, 34.747335714269724], [-77.43330187139682, 34.74748670945653], [-77.43342794925626, 34.74752593948565], [-77.43345338758095, 34.74761484807379], [-77.43360918619305, 34.747614794475005], [-77.43371374481433, 34.74764629687151], [-77.43377697303019, 34.74763275858493], [-77.43378964121462, 34.74753567361703], [-77.433804939363, 34.747502769215764], [-77.43382649452046, 34.747459216503174], [-77.43365322132772, 34.74731285388506], [-77.43350621782805, 34.747255547376525], [-77.43337022488623, 34.74720314085224], [-77.43307084310486, 34.74696675587008], [-77.43300566741576, 34.746908809746486], [-77.43290280048974, 34.746834880278556], [-77.4323531651981, 34.74680824621642], [-77.43229967418083, 34.746310502210775], [-77.43171941604606, 34.74639742753127], [-77.43126858536363, 34.74633702418305], [-77.43120179999323, 34.74635515101235], [-77.43119169488496, 34.74632625835269], [-77.43072844021043, 34.74627424141056], [-77.43059914397327, 34.74622178710307], [-77.43040041119946, 34.746209911488606], [-77.43022386858233, 34.74619780536512], [-77.42995204522319, 34.746241938884545], [-77.42975595269276, 34.74603232125476], [-77.42955621623253, 34.7457386662226], [-77.42952878589011, 34.74568068184624], [-77.42962428881098, 34.745482926959866], [-77.42971512072019, 34.74536675366423], [-77.42979594219443, 34.74526338292373], [-77.42998008859867, 34.74505180161875], [-77.42998387523195, 34.74504952850112], [-77.43005432268936, 34.7450150955429], [-77.43031462446919, 34.74488557942909], [-77.43031964465659, 34.744858693955244], [-77.430350706619, 34.74486487289449], [-77.43066253434982, 34.744727626547494], [-77.43068766813997, 34.74471209037867], [-77.4307247468984, 34.74468036508787], [-77.43091792311628, 34.74453734308206], [-77.43089508335197, 34.7443031319414], [-77.43092266045677, 34.74420651889771], [-77.43068162326503, 34.7438957200427], [-77.4306602317605, 34.74379567364134], [-77.4306784647992, 34.74341559425075], [-77.43069343862038, 34.743340797372966], [-77.43069078626924, 34.743221628900365], [-77.4308198578486, 34.74282592246417], [-77.43096563815328, 34.74274067709252], [-77.43125196467152, 34.74264279207786], [-77.43179152724181, 34.74260641140853], [-77.43199278187045, 34.74235741063023], [-77.43232728498262, 34.74246715068917], [-77.4328842500848, 34.742318121001304], [-77.43299870711411, 34.74236285121323], [-77.43316574717838, 34.74237808427823], [-77.43349076763698, 34.74256110823342], [-77.43356831573104, 34.74261029097529], [-77.43360122531585, 34.74264282339813], [-77.4337822924513, 34.74274299206816], [-77.43402677914263, 34.74291170145185], [-77.43420370923285, 34.74297792040596], [-77.43465216826289, 34.74329647947233], [-77.4349992502029, 34.743398829059096], [-77.4352734999112, 34.743365242383625], [-77.43535738845986, 34.74336689436615], [-77.43571955899974, 34.74341988290383], [-77.43589771061983, 34.74342405721113], [-77.43605673351992, 34.743537689008306], [-77.43627076630342, 34.743761202364], [-77.43630076660054, 34.74418198825241], [-77.43630613530124, 34.74422846256111], [-77.43661001192335, 34.74451248387463], [-77.43675847453466, 34.744881156483146], [-77.43716438812943, 34.74517402141858], [-77.43730650793243, 34.74520322538702], [-77.43737111304502, 34.745160527064876], [-77.4374443887337, 34.74514057787355], [-77.43797597374439, 34.745105703968356], [-77.43803725696708, 34.74525628771302], [-77.43798240801055, 34.74532854366799], [-77.43803755420312, 34.74547936647958], [-77.43803729090688, 34.745500873349094], [-77.4379569122388, 34.745599152229474], [-77.43794370444701, 34.74572186013156], [-77.43792604392203, 34.745749088476636], [-77.43784332029966, 34.74583898349455], [-77.43779033002103, 34.74584520158343], [-77.43776062488969, 34.745849821708305], [-77.43764749728214, 34.745865290746366], [-77.43759451109067, 34.7458698689727], [-77.43756909084384, 34.745857706271444], [-77.43744249098663, 34.745841217178175], [-77.43727197416622, 34.745746285146666], [-77.43709162429658, 34.74594571224055], [-77.43687226117127, 34.745841136790645], [-77.43681694480307, 34.746039435526036], [-77.43691552019052, 34.746170647576804], [-77.43700136908112, 34.74625756772882], [-77.43699322018114, 34.746380538269214], [-77.4370103193156, 34.74644045975133], [-77.43700874942802, 34.74657815906767], [-77.43694364708001, 34.746642736093975], [-77.43692435574663, 34.746673901674285], [-77.43686024548364, 34.746893115511845], [-77.43684573750882, 34.746919341064185], [-77.43677045473396, 34.74705542645545], [-77.43672168445086, 34.74709057582714], [-77.4367252815339, 34.74712548092276], [-77.43673500505705, 34.7471387570894], [-77.43674290838987, 34.74715060415582], [-77.43690484480538, 34.747389715730094], [-77.43696750101691, 34.74748243277432], [-77.43697124912717, 34.74748660912808], [-77.43697958335184, 34.74749384199087], [-77.43722190798763, 34.74771125176724], [-77.4373132721563, 34.74779033475596], [-77.43746627290069, 34.74793279709335], [-77.43747583735215, 34.747941725625665], [-77.43747923800647, 34.747944302466244], [-77.43748535853136, 34.74795005540287], [-77.43765168273003, 34.748095567235126], [-77.4377225061392, 34.74819729044828], [-77.43798368985941, 34.74840347048273], [-77.43821454453172, 34.748712924991466], [-77.43825354581003, 34.74873730242599], [-77.43843194845645, 34.74883977584818], [-77.43848476535673, 34.74888712355978], [-77.43852745522858, 34.74906944283762], [-77.43851785273658, 34.749149300425216], [-77.43851644208365, 34.74927403517064], [-77.43851120582961, 34.74929942490995], [-77.43844093969052, 34.74940194646146], [-77.43831879270903, 34.749602895743045], [-77.43829614806955, 34.74963088007694], [-77.43828638070275, 34.74964597671672], [-77.43824351436, 34.74975225059683], [-77.43823983747359, 34.74975688116697], [-77.43823331329907, 34.7497559788982], [-77.43811948347013, 34.749747245124624], [-77.43799796004899, 34.749736734378516], [-77.43792196238162, 34.74972388736247], [-77.43787179216251, 34.74971656804614], [-77.43785326305117, 34.74975567750635], [-77.43770744555403, 34.74982200272085], [-77.43766987189193, 34.749873598389], [-77.43762865077102, 34.74995672644248], [-77.43760454813594, 34.750027791667506], [-77.43751644183499, 34.75016080447831], [-77.43750899890965, 34.75019444264084], [-77.43748517746478, 34.75020667864354], [-77.43745353707632, 34.750234519934516], [-77.43733032103978, 34.75032761336569], [-77.43729113238852, 34.75039784820934], [-77.4371819193065, 34.75045909059703], [-77.43714719648196, 34.75048732308731], [-77.43703722123438, 34.75056508780438], [-77.43702451784023, 34.75057587048481], [-77.43701754580795, 34.75058178835464], [-77.43685988053072, 34.75062389103782], [-77.43682474361442, 34.75062345033077], [-77.43672451491085, 34.75061917695945], [-77.43670004603204, 34.75062220826287], [-77.43659100925953, 34.75061556835744], [-77.43654303561826, 34.750610767897456], [-77.43649052573888, 34.750588760345536], [-77.43644970822872, 34.75057172307426], [-77.43638028968913, 34.750619143738845], [-77.43636947057739, 34.750627603492056], [-77.4363620816199, 34.75063231908606], [-77.43636527331998, 34.75064100789529], [-77.43636410171128, 34.750675073220805], [-77.43635573159045, 34.75086818916436], [-77.43635486706219, 34.75090931598812], [-77.4363359334789, 34.75094667427754], [-77.43626783279672, 34.751007681321454], [-77.43619659305104, 34.75109295316213], [-77.43615858132353, 34.75112026065533], [-77.43608768018068, 34.75120320350476], [-77.43605662034805, 34.75123820000016], [-77.43599786179428, 34.7512406695677], [-77.43587631067345, 34.75125255554147], [-77.43583749852954, 34.75125418418327], [-77.43574959216882, 34.7512568964913], [-77.43561947265795, 34.751271958035574], [-77.43555056763272, 34.75127016340311], [-77.43542479533629, 34.751283185652674], [-77.43541151210371, 34.75130617023567], [-77.43531246654756, 34.75130336611938], [-77.43521334505462, 34.75132742933021], [-77.43519324329594, 34.7513235470097], [-77.43515580154256, 34.75132896933008], [-77.43498102186982, 34.751350800188014], [-77.43486381669706, 34.75142720586855], [-77.43481578190173, 34.751454783390926], [-77.43479398570577, 34.75148208359762], [-77.43474566042113, 34.751539792189945], [-77.43459235612885, 34.75169116085465], [-77.43454198273781, 34.7517553229221], [-77.43448722135889, 34.75187079034048], [-77.43447279205316, 34.75192890907341], [-77.43448877250717, 34.7520933424342], [-77.43450881311404, 34.752448860941804], [-77.43448464279466, 34.752492088671346], [-77.43419200580453, 34.75264035212595], [-77.43417534873387, 34.752651961909145], [-77.43416123631178, 34.7526586222912], [-77.43382525134363, 34.752799610855675], [-77.43380833506077, 34.7528002714137], [-77.43376723479042, 34.75280049182153], [-77.4337755236331, 34.752837240804475], [-77.43361516536328, 34.75302688438586], [-77.43355408236322, 34.75313274504224], [-77.43353795563843, 34.753279430589714], [-77.43349385945768, 34.753401119108304], [-77.43344138534218, 34.75352521296178], [-77.43342537827428, 34.75367026927299], [-77.43337429322588, 34.75378129389682], [-77.43338098880723, 34.75389459323008], [-77.43338757847906, 34.7540654565394], [-77.43336342384981, 34.754316811499784], [-77.43335253606456, 34.75433273489314], [-77.4333530930954, 34.754352624788964], [-77.4333729460576, 34.75436209345603], [-77.43341158371776, 34.7543954657437], [-77.43363110643065, 34.75457799761139], [-77.43371139625006, 34.754649576446894], [-77.43368446630664, 34.75484113208857], [-77.43366771776456, 34.755001888356205], [-77.43350873932796, 34.75518049956122], [-77.43347071445088, 34.75523976134292], [-77.43310787296518, 34.755365342909904], [-77.43309531870544, 34.75537440041109], [-77.43307887995853, 34.75537791170669], [-77.43303519924044, 34.755378005934226], [-77.43287409853734, 34.755386972013945], [-77.43280961539492, 34.75540090356831], [-77.43280517516702, 34.75547394444881], [-77.43276996671028, 34.75552681248269], [-77.4327445225623, 34.75554921618253], [-77.43269806921451, 34.75578121571906], [-77.4325759429858, 34.75600752982704], [-77.43257211285619, 34.75601537369755], [-77.4325703277529, 34.756016109311055], [-77.43222915503522, 34.75609775416444], [-77.43215624117485, 34.75608391265765], [-77.43193202797075, 34.75601643893588], [-77.43188121015801, 34.756008601688805], [-77.43178524621972, 34.75602134991706], [-77.43177466914558, 34.75602153388497], [-77.43176756412208, 34.75603070357704], [-77.43170943932918, 34.75610193628667], [-77.43165591548177, 34.75617646496774], [-77.43163469440084, 34.756248274270654], [-77.43148891305762, 34.75643938012209], [-77.43147325852769, 34.75646395140304], [-77.43146733513596, 34.756469326844226], [-77.43144810753236, 34.756486330155305], [-77.43147905740717, 34.756473422312844], [-77.43184376353258, 34.75632131686902], [-77.43202611607444, 34.75624526375661], [-77.43220846826904, 34.75616921038386], [-77.43257317161654, 34.75601710285736], [-77.43293787357506, 34.755864994289574], [-77.4333025741446, 34.7557128846805], [-77.43366727332518, 34.75556077403017], [-77.43403720993314, 34.75540647646032], [-77.43422398516218, 34.75519622256863], [-77.43422764012942, 34.754980502732735], [-77.43420925841622, 34.75463203821459], [-77.43419368448583, 34.75444841593599], [-77.43412056123016, 34.75404201202572], [-77.43412103065754, 34.75403232242965], [-77.43411456130866, 34.75401562140763], [-77.43408443475361, 34.75399891325911], [-77.43384901294095, 34.753825242242144], [-77.43373514175826, 34.753746878285405], [-77.43371502043445, 34.753734262863276], [-77.43371339453134, 34.75362024367402], [-77.43376060495679, 34.753513059113985], [-77.43377153336029, 34.753487887577336], [-77.43389631839946, 34.7534046301074], [-77.43401705246882, 34.753244743160764], [-77.43406578529186, 34.75322073925605], [-77.43407859718658, 34.753188791350915], [-77.43440099461598, 34.753026112169685], [-77.43440413296177, 34.75302561016285], [-77.43440512208166, 34.75302334665836], [-77.43441354934171, 34.75301751577778], [-77.43473060208342, 34.75281108269092], [-77.43493223581885, 34.75264845913145], [-77.43495836466454, 34.75243535295239], [-77.43497659566891, 34.75233626393414], [-77.43494255406736, 34.75226294996038], [-77.43483408084418, 34.75205512986799], [-77.4347766999156, 34.7519732442625], [-77.43476658284662, 34.75189178912765], [-77.43483632828367, 34.75186219305602], [-77.43491212491989, 34.75180287621278], [-77.43498844644304, 34.751736778123785], [-77.4351023092334, 34.75171103485785], [-77.43519218151606, 34.75169566355052], [-77.43525751913226, 34.7517287044673], [-77.4353443100459, 34.75173648363068], [-77.43541009660083, 34.75175546843507], [-77.43547387329319, 34.75178186531855], [-77.43552122544159, 34.75173615179762], [-77.43566030302206, 34.7517124880562], [-77.43576957475447, 34.751621316922005], [-77.43584788726102, 34.751644996101916], [-77.43608285651072, 34.75164676518019], [-77.43624173270939, 34.75154051546687], [-77.43632311080064, 34.7514572565894], [-77.43647408548999, 34.751265221779946], [-77.43650057986574, 34.751239738042], [-77.4365101380325, 34.75123117549197], [-77.43654196951098, 34.75116836806835], [-77.43665976468583, 34.751015831878945], [-77.43677679739979, 34.750918986086944], [-77.43695323477993, 34.75085526924373], [-77.43696320529747, 34.75084957660336], [-77.4369718690539, 34.75084534788245], [-77.43707353919451, 34.75079196431386], [-77.4371382280891, 34.7507615736985], [-77.43730358698383, 34.75068171539361], [-77.43731325306173, 34.7506735746977], [-77.43732930069109, 34.75066377747518], [-77.43748709592325, 34.7505836455633], [-77.43752710880796, 34.75053425392347], [-77.43758358225895, 34.75050001367408], [-77.4376517396391, 34.750478693623506], [-77.43771334730857, 34.750444703314045], [-77.43783021270934, 34.750396326664], [-77.4379068360293, 34.750333423590575], [-77.43789859918516, 34.750224588776454], [-77.43789338500295, 34.75012566278619], [-77.4379012530228, 34.75005195791267], [-77.4378837403872, 34.75000758460829], [-77.43788082312713, 34.74997494207685], [-77.43790963079087, 34.749965278541204], [-77.43800318642637, 34.749947809709795], [-77.4380128653202, 34.749946956319334], [-77.43802596340976, 34.74994825532979], [-77.43815144551144, 34.750038857108066], [-77.43825702994144, 34.74997187221871], [-77.43833483774175, 34.74995913439297], [-77.43838454670109, 34.74994127593514], [-77.43844578928291, 34.74990630593473], [-77.43854233491739, 34.74979611862817], [-77.43863752934246, 34.74975013710571], [-77.43875686205945, 34.74966666232218], [-77.43892493929197, 34.74957102448318], [-77.43901055362161, 34.74933331375344], [-77.43904504432354, 34.7492999278949], [-77.43922175169992, 34.7491156829841], [-77.43926526722424, 34.74900163628887], [-77.43937382466724, 34.7488892935475], [-77.43928489992322, 34.74875345867643], [-77.4390142328179, 34.74859167573514], [-77.43891379848387, 34.748512558482794], [-77.43885201334464, 34.7484876403309], [-77.43840142818358, 34.74827008390139], [-77.43835357180626, 34.74824916902081], [-77.43834986290405, 34.74824535046977], [-77.438335253695, 34.74823047844447], [-77.43804465125434, 34.74793163481414], [-77.43787672903775, 34.74780726600418], [-77.43784460883174, 34.7477753885962], [-77.43771792355787, 34.74762152929999], [-77.4374219783224, 34.74748662020725], [-77.43731013984544, 34.74740638928118], [-77.43725620509102, 34.74736773703685], [-77.43717165036735, 34.747330976436835], [-77.43711109033949, 34.74726026866543], [-77.43707951341588, 34.7472182440756], [-77.4370903301876, 34.74713189324364], [-77.43709897574614, 34.74711627789841], [-77.43714466034123, 34.747033706306986], [-77.4371919810327, 34.747009011999594], [-77.43721202918346, 34.74693976172542], [-77.43731395788033, 34.74677210945222], [-77.437371194364, 34.74665600768132], [-77.43741281660914, 34.746527130455476], [-77.43744812395519, 34.74640781357929], [-77.43745240358578, 34.74640120255404], [-77.43746374463213, 34.74638835109153], [-77.43750027859056, 34.746278169988216], [-77.43758248214345, 34.74625341224141], [-77.4376460282799, 34.74624579412182], [-77.43779475990108, 34.74622627032846], [-77.43788989601343, 34.746210573401946], [-77.43798092589476, 34.74619647813975], [-77.43800148934395, 34.746190066623], [-77.43803195225112, 34.74618439980467], [-77.43820698050334, 34.74615184050907], [-77.4383414826364, 34.74605849567213], [-77.43836650596175, 34.74603854440041], [-77.4383800651844, 34.7460265000055], [-77.43838784246502, 34.74600284215474], [-77.43840248704738, 34.74584769704205], [-77.43841378886664, 34.74576881491721], [-77.43841342926518, 34.745758640726635], [-77.43840384426287, 34.74554976048334], [-77.43840613992519, 34.745476578802304], [-77.43844282342832, 34.745415525966834], [-77.4385362238616, 34.74524250950516], [-77.4386267929576, 34.74507260746746], [-77.43865622747089, 34.74501639859594], [-77.43866130934138, 34.74500669407958], [-77.43866799959166, 34.744993153131674], [-77.4387530008485, 34.74480062041083], [-77.4387608329537, 34.744761948486385], [-77.43876225351983, 34.744730628303586], [-77.43877642099963, 34.74455555999758], [-77.43878177691245, 34.744499280065206], [-77.4387787552952, 34.744488694916384], [-77.4387847410453, 34.74447863126358], [-77.4388147173763, 34.744262334258686], [-77.43882211210685, 34.74422432714963], [-77.43882653815398, 34.74417306721931], [-77.43883293303186, 34.74403153148043], [-77.43882887000831, 34.74394717312409], [-77.43884076926045, 34.7438224826878], [-77.43884165360994, 34.743811881884355], [-77.43884370860448, 34.74380383266759], [-77.4388591644371, 34.743678241946895], [-77.4388850088519, 34.74356339888221], [-77.43887096616244, 34.74340285016897], [-77.43885815486789, 34.74316520160189], [-77.43885350799522, 34.74313013434851], [-77.43883748509471, 34.743111638178775], [-77.43876079798457, 34.74294560935502], [-77.43862880976309, 34.742849817416136], [-77.43851729858874, 34.74282399286991], [-77.43832403240219, 34.74279510045034], [-77.43820340449159, 34.74278151686547], [-77.43801120633607, 34.742768195874824], [-77.43773359221089, 34.742761856058024], [-77.43749773008608, 34.7428029408516], [-77.43735337403875, 34.74282558324311], [-77.4373172581264, 34.74282953869697], [-77.43721844822018, 34.742825504808465], [-77.43688825973175, 34.742876535085486], [-77.43649963091693, 34.74277292328928], [-77.4361145467544, 34.74267484465694], [-77.43581253966794, 34.74261491214433], [-77.43580914939403, 34.74261457140814], [-77.43548829358866, 34.7426231072607], [-77.43528617576271, 34.74250286963027], [-77.43513173188836, 34.74245076581357], [-77.43496801974926, 34.74220520407066], [-77.43469697836373, 34.74228819029218], [-77.43457415186704, 34.74223696666559], [-77.4343376267557, 34.74216777748396], [-77.4340666208957, 34.74200627094817], [-77.43406276666568, 34.74200389582737], [-77.43384307221712, 34.741661040489824], [-77.43377140419975, 34.741621100717595], [-77.43336823030386, 34.741400829001975], [-77.4333159809384, 34.74126673133196], [-77.43308753159968, 34.7410715264976], [-77.43314474486378, 34.74084308488625], [-77.43312720326561, 34.74081127291679], [-77.43293124270176, 34.74069032702336], [-77.4328479436005, 34.740668418887886], [-77.4327455181863, 34.740596006992625], [-77.43263549225634, 34.740665134102095], [-77.43220022785391, 34.740690866434164], [-77.43169531575808, 34.74033659663835], [-77.4316835173963, 34.74031801752895], [-77.43167903066687, 34.740276236051], [-77.43091556230836, 34.73894600589114], [-77.43087518991604, 34.73886963375588], [-77.43082195213131, 34.738806842893446], [-77.4304499337778, 34.73766517743738], [-77.43056225150275, 34.737214611837565], [-77.43061061376345, 34.737162279459085], [-77.43060927894528, 34.73710622618464], [-77.43067956899947, 34.736627324418855], [-77.43037735722807, 34.73639895986915], [-77.430279332655, 34.7362512501675], [-77.4299926245007, 34.73582819616671], [-77.42997032986803, 34.73567596898383], [-77.42949467992467, 34.73509511309924], [-77.43012555266881, 34.73482036937377], [-77.43070068073573, 34.734795656014406], [-77.43114078614062, 34.734983422924], [-77.43126298765543, 34.735068130859304], [-77.43131691678177, 34.73511424555224], [-77.43136037890453, 34.735188094564194], [-77.43167662302491, 34.735854243461155], [-77.43167696438152, 34.73585683285814], [-77.43167743112255, 34.73585794709738], [-77.4316786308183, 34.735862099641515], [-77.43184373627598, 34.73647511510261], [-77.43185954906895, 34.73667345051132], [-77.43200972558864, 34.73691860668421], [-77.43216423356799, 34.737146166245175], [-77.43224016396191, 34.73740746008186], [-77.43244818790816, 34.73761900010999], [-77.43263167495027, 34.73813692628791], [-77.43271313358312, 34.738456077290614], [-77.43277695341384, 34.7385227173468], [-77.4327580425478, 34.738763743797705], [-77.4327554164951, 34.73897809560083], [-77.43276376539225, 34.739032817621165], [-77.43277483660779, 34.7391484009955], [-77.43272239699417, 34.739438263685464], [-77.43288929775309, 34.73963573019377], [-77.43294597121593, 34.73979139356136], [-77.43309912879815, 34.739800616532435], [-77.4331550646422, 34.73976952047069], [-77.43334519664273, 34.73979503826682], [-77.43374635000444, 34.73977984679372], [-77.43396441791498, 34.74001141344596], [-77.43412010319392, 34.74019438965564], [-77.43422284375819, 34.74034894193569], [-77.43459533792306, 34.740790913940515], [-77.43465223358702, 34.74086520009822], [-77.4346992513237, 34.74091835616119], [-77.4348430298812, 34.741031318661875], [-77.43499280641238, 34.74116952368318], [-77.4350773903231, 34.74123887064314], [-77.43521531720805, 34.741350766557495], [-77.43530386053526, 34.74131800153474], [-77.43547183584926, 34.74131070917636], [-77.43555875858053, 34.741271876258054], [-77.43571872113091, 34.74118343696186], [-77.43576963276419, 34.74104942453218], [-77.43589423931913, 34.74079347201558], [-77.43591173327519, 34.740691837777334], [-77.43591568246018, 34.740540279508025], [-77.43590841380473, 34.74034115823898], [-77.4359488470664, 34.74014576720102], [-77.43590999293218, 34.739894098984614], [-77.43590733723696, 34.73985174452572], [-77.43590305817798, 34.73977195704275], [-77.43589154407432, 34.73956670670525], [-77.43587921642187, 34.73946053782235], [-77.43586510375127, 34.739105609862634], [-77.43586419534694, 34.73902040410233], [-77.43585950222182, 34.738996472491394], [-77.43586521981032, 34.73896244784063], [-77.43585431567888, 34.73871514083332], [-77.43588052324634, 34.73856719185005], [-77.43588933119985, 34.73844785615784], [-77.43588230335124, 34.738242647355335], [-77.43598478680752, 34.73792217120983], [-77.43608074469026, 34.737590860003095], [-77.43613889956744, 34.73741698257626], [-77.43620570516423, 34.73727550609396], [-77.4364518449968, 34.737078192501386], [-77.43650962128142, 34.73702424365467], [-77.43667324786892, 34.73704465550186], [-77.43690109062655, 34.73691599414711], [-77.4367693776483, 34.73651920793388], [-77.43694215374849, 34.736338677878365], [-77.43697808273939, 34.73629406835132], [-77.4372646303353, 34.736133220912826], [-77.43732023315636, 34.73610526595417], [-77.43738199033162, 34.73607965331311], [-77.43754318888384, 34.73608791904355], [-77.43803311846017, 34.73604525193864], [-77.43819065589271, 34.73603168101257], [-77.43857386796462, 34.7360316455343], [-77.43865084402888, 34.73603568468103], [-77.43867630887536, 34.736038276803264], [-77.43872478837851, 34.736041336632724], [-77.43899216682854, 34.73605461443516], [-77.43913112363964, 34.73607250292098], [-77.43930875284329, 34.736068434969596], [-77.43951317614726, 34.73615880379267], [-77.43959680553445, 34.73618086640128], [-77.43966739004284, 34.73620076511767], [-77.43989534430057, 34.73625705917996], [-77.44017173570889, 34.736310415884645], [-77.44019356583685, 34.7363125413448], [-77.44021016848276, 34.73631440071394], [-77.44050722317004, 34.7363582921261], [-77.44069535760276, 34.73655836772006], [-77.4408393067938, 34.7368231656945], [-77.4409061887597, 34.73691681023551], [-77.4408754944734, 34.73730147463255], [-77.44089247037465, 34.73736894453437], [-77.44088244741535, 34.73739726421409], [-77.44086672982027, 34.737412017750046], [-77.44070779014297, 34.737892411124875], [-77.44070668252871, 34.73789488285224], [-77.44055722528117, 34.73840164231258], [-77.44055722246885, 34.73840169204642], [-77.44055721741596, 34.73840176512037], [-77.44052672462966, 34.73895006316698], [-77.44047465810783, 34.739014558067936], [-77.44034546263536, 34.73938281554445], [-77.44034335346448, 34.73944502570587], [-77.4403021590929, 34.73948045953158], [-77.44019340848827, 34.739892665906524], [-77.44019069802269, 34.73995071974762], [-77.44015477487783, 34.73998738218208], [-77.44001425417743, 34.74027793425953], [-77.43995372545142, 34.740406659397166], [-77.43994431844075, 34.74042367025582], [-77.43992212207607, 34.74045226155978], [-77.43976533124571, 34.740846608104675], [-77.43974244602683, 34.74091217040689], [-77.43971227408304, 34.74098622214197], [-77.43962230975544, 34.74136066415507], [-77.43960757721794, 34.74142407994216], [-77.43959745151058, 34.74148053585001], [-77.43963887314646, 34.74157519528872], [-77.4396873086566, 34.74201096309598], [-77.43977086795168, 34.74230100132338], [-77.43976473962775, 34.742340926504035], [-77.4397366864305, 34.742587241887534], [-77.43972748298688, 34.74276551022126], [-77.43970725342446, 34.74299468136556], [-77.43969667661986, 34.74313229179776], [-77.43969003464244, 34.74322754244509], [-77.43967731118947, 34.74331960123706], [-77.43966494263015, 34.743400719194966], [-77.43963509709158, 34.74362447869444], [-77.4396160482255, 34.743663151558806], [-77.43960929958475, 34.74370763362495], [-77.43962132386399, 34.743851746993585], [-77.43962413521902, 34.74414785220479], [-77.4396275532269, 34.744226198358945], [-77.43962279917832, 34.74435203570585], [-77.43962155777925, 34.74450361780276], [-77.43961118629932, 34.744599663003186], [-77.43960851115094, 34.74477857339012], [-77.43953565029565, 34.74495734961474], [-77.43946639158965, 34.745008438135166], [-77.43940048877934, 34.74513397317393], [-77.43935643216038, 34.745249537594994], [-77.4393345031168, 34.745376487754946], [-77.43910100806187, 34.745649778987556], [-77.43906881065644, 34.74569021850089], [-77.43903463923006, 34.74569614777167], [-77.43907052001984, 34.745718040706976], [-77.43907925535684, 34.745724947534214], [-77.43926477269144, 34.74605605897651], [-77.43925275522503, 34.74608842193852], [-77.43912650812953, 34.74628727077005], [-77.43905917145332, 34.746422124176554], [-77.4388937457687, 34.74668460231592], [-77.43893733344282, 34.746780211849824], [-77.43889361443456, 34.746899395414246], [-77.43886584727403, 34.747142647993485], [-77.43907754804422, 34.74719978307865], [-77.43927800137077, 34.747254051326905], [-77.43936203630571, 34.74720809315856], [-77.43946946885465, 34.747092191491525], [-77.43945883052689, 34.74696239350756], [-77.43949901093812, 34.74687850329576], [-77.43953660665159, 34.746828015043775], [-77.43960631462316, 34.74673440201014], [-77.43966706597256, 34.74666725002032], [-77.43976568215112, 34.7466767777846], [-77.43991252158298, 34.74669428689325], [-77.43993158414233, 34.74669803851335], [-77.44004991476432, 34.74680253923879], [-77.44010721276621, 34.74690938448675], [-77.44009119425472, 34.746986076118944], [-77.44009731267866, 34.747045682553924], [-77.44007161999924, 34.74708602598336], [-77.44005306986108, 34.74716998348035], [-77.44005985519026, 34.74730871282432], [-77.44005210862707, 34.74731737069549], [-77.44006573558019, 34.747318315976074], [-77.44021903047947, 34.74732611413174], [-77.44051148378472, 34.747330121751126], [-77.4405318113678, 34.74733182265415], [-77.44053783516607, 34.747332412313796], [-77.44055247398161, 34.74733182680558], [-77.44114827799793, 34.747438888724304], [-77.44139524339869, 34.747426635098854], [-77.44146909084746, 34.747438245920385], [-77.4416230863381, 34.74761868136018], [-77.44171147426727, 34.74770864792171], [-77.44173791985745, 34.74773008137257], [-77.44172853656588, 34.74779088232822], [-77.44178484007192, 34.748333952885524], [-77.44169656075212, 34.74864016159903], [-77.44151306728916, 34.748934235836565], [-77.4412846932312, 34.74918354261474], [-77.44124221611597, 34.74923955049491], [-77.44121631072478, 34.7492534024271], [-77.44096878180795, 34.74954064689172], [-77.44080253869299, 34.749667888744455], [-77.44044155902645, 34.74988112864534], [-77.44028724248034, 34.74992293255816], [-77.44020093139429, 34.75001676150663], [-77.43991409425666, 34.75027660814921], [-77.43972682759417, 34.75041017319892], [-77.43970738811774, 34.75047127970383], [-77.4396256333034, 34.75048464183826], [-77.43938608092901, 34.75069421255881], [-77.43923319508703, 34.75073273684958], [-77.43914371686031, 34.7507655058997], [-77.4389992375165, 34.75081012401544], [-77.43887089774373, 34.75087667411157], [-77.4387894650435, 34.750921270296445], [-77.43867326697381, 34.75102544428188], [-77.43849699089577, 34.75109861458556], [-77.43830284047463, 34.75116816746517], [-77.43812823122684, 34.75122697422586], [-77.43791970456705, 34.7512901363026], [-77.43778261646776, 34.751313252706154], [-77.4376466678961, 34.75136059896367], [-77.43754184913871, 34.75142072943808], [-77.4374181277462, 34.75146473872224], [-77.43718400679751, 34.75158400686805], [-77.43698965062168, 34.75169010879925], [-77.43684043143313, 34.75177058523652], [-77.43670522981454, 34.75187026556375], [-77.43664767273381, 34.7519110002338], [-77.43651819391985, 34.75199201263081], [-77.43646213756801, 34.752064859600544], [-77.43625745485322, 34.7521513594594], [-77.43618675118556, 34.752198409019975], [-77.4361312988162, 34.752228799711915], [-77.43597598533103, 34.75236579849338], [-77.43589550237583, 34.75242594243074], [-77.43588182063668, 34.752448104954055], [-77.43580899590678, 34.752592924084766], [-77.43565526957292, 34.752825807615295], [-77.4356259739194, 34.75289081885178], [-77.43558737060836, 34.75297429947093], [-77.43552913144094, 34.75313650518716], [-77.43552450528276, 34.75335994594178], [-77.43552044882308, 34.75341299016996], [-77.43549002971886, 34.75346130278642], [-77.43552637709665, 34.753569320755915], [-77.43558961177374, 34.75386616588257], [-77.4355477937356, 34.75398157899298], [-77.43573649330204, 34.75445383724041], [-77.43578160371533, 34.7546222944531], [-77.43578808594091, 34.754676181976464], [-77.43585543923982, 34.7546480882626], [-77.43614678406632, 34.7545265635694], [-77.4360185707573, 34.75416680932838], [-77.43600980688421, 34.75414297978354], [-77.43601344146617, 34.754135781381194], [-77.43617834193336, 34.75368004534017], [-77.43619868684294, 34.753649928145855], [-77.43623813218849, 34.753595656231525], [-77.43620096930842, 34.75345433611929], [-77.43616221958995, 34.75318091905535], [-77.4361936981949, 34.75308915069097], [-77.43600940130764, 34.752798261487534], [-77.43604855416626, 34.75272040218122], [-77.43613176279699, 34.75258561571902], [-77.43616236720335, 34.75253242976496], [-77.43617093406934, 34.752522163698906], [-77.43624034828471, 34.75247872667441], [-77.43632444263909, 34.75242327615719], [-77.43648921333543, 34.7523538354905], [-77.43652370768302, 34.75233929822708], [-77.43672432368822, 34.7523286455048], [-77.43711023426576, 34.752291266362626], [-77.43714227636801, 34.75226352837266], [-77.43719624075196, 34.75223138257764], [-77.43726224196598, 34.75227566201055], [-77.43760722621383, 34.75227516035548], [-77.43782426632829, 34.752277238495374], [-77.4378569282507, 34.752272596276235], [-77.4380116108461, 34.75218788447364], [-77.43835575009896, 34.75216733358157], [-77.43851499222686, 34.752106445192446], [-77.4387083042795, 34.752118846899336], [-77.43887188397112, 34.75209744077031], [-77.43920269715993, 34.751946076822094], [-77.4392737011362, 34.75192896633192], [-77.43958547967867, 34.75176746931068], [-77.43997295683971, 34.75150042273452], [-77.44031320499536, 34.75146057845525], [-77.44053757484829, 34.75125240272533], [-77.44046489957358, 34.750939644670396], [-77.44054817497512, 34.750697083147074], [-77.44067730226297, 34.75055990046803], [-77.4409254952563, 34.75042484229803], [-77.44100251728433, 34.75034335307732], [-77.44105097051863, 34.75031369198197], [-77.44136413345109, 34.75018624781387], [-77.441776868497, 34.74969878162237], [-77.44190031099225, 34.74956659420159], [-77.44195149345799, 34.7495102076308], [-77.44211314690395, 34.749359187685315], [-77.44244573039755, 34.74896204125399], [-77.44278653822374, 34.74868385026601], [-77.44298400718175, 34.748345836183766], [-77.44307683688162, 34.74806429717585], [-77.44322322126283, 34.74771834958894], [-77.44332104699396, 34.74740103367931], [-77.44339623396479, 34.74721976587844], [-77.44359869393911, 34.74710683659525], [-77.44382901659698, 34.746857637220664], [-77.44385559120052, 34.7468212033002], [-77.44387488240801, 34.74681025959054], [-77.44389979092884, 34.746794272586484], [-77.44401034506606, 34.74678198105342], [-77.44428079943799, 34.74672552222446], [-77.44458305077515, 34.74664904649833], [-77.44469680297337, 34.746657254635664], [-77.44488026491805, 34.74662010087603], [-77.44489901182592, 34.74641119480333], [-77.4446502310502, 34.74641684485268], [-77.44455174191268, 34.74642038250094], [-77.44432561163708, 34.746426364449974], [-77.44418390253604, 34.746567296395014], [-77.44400377353784, 34.74643487818115], [-77.44379838334862, 34.746424001348984], [-77.44361888434793, 34.74639222770782], [-77.443380977467, 34.746371126605794], [-77.44292215952194, 34.746343170403605], [-77.44275694688912, 34.74631164180923], [-77.4426619679606, 34.74632477625196], [-77.44245945098092, 34.746333521889945], [-77.44210136529725, 34.74636119694943], [-77.44180722044248, 34.746361930013116], [-77.44177284576338, 34.746368027170746], [-77.44176712811736, 34.74637865706569], [-77.44173510143466, 34.74663951464212], [-77.441549125351, 34.74675029237133], [-77.44150191464973, 34.74683756891902], [-77.44130542050789, 34.74689582660935], [-77.441187041117, 34.7469066072654], [-77.44087295124612, 34.74689736787656], [-77.44066127459229, 34.746905834300506], [-77.4405335106896, 34.74689332770346], [-77.44049579125117, 34.746765614832235], [-77.44019935691621, 34.74658632535121], [-77.44012739871431, 34.74653477776161], [-77.43995753980353, 34.746393988611956], [-77.43983456445521, 34.746438743835], [-77.43974716390261, 34.74642423993549], [-77.43970014010159, 34.7464876656341], [-77.43966194693796, 34.74648126686935], [-77.43964786810257, 34.74648159559634], [-77.43962090584988, 34.74645998585955], [-77.43961215291233, 34.746384893441125], [-77.43967564398737, 34.746307439604124], [-77.43975751475284, 34.74622819541866], [-77.43981918917818, 34.746168046665176], [-77.43996152909867, 34.7460199522957], [-77.44011913199694, 34.7457269752101], [-77.44015054707032, 34.74552695781974], [-77.44014728545275, 34.74520859659198], [-77.44012764871562, 34.744959932492705], [-77.44014834819654, 34.74482196748162], [-77.44005706168258, 34.74456188080727], [-77.44005797728018, 34.74441326168407], [-77.44005934552001, 34.74437704504289], [-77.44004174546485, 34.7439736239045], [-77.44004020458684, 34.74381133134252], [-77.44001654642847, 34.74353772860412], [-77.44001825363488, 34.74352414983351], [-77.44002054443817, 34.74350634243013], [-77.44003063094976, 34.74324896007644], [-77.4400501813915, 34.74307728659504], [-77.44007439247385, 34.74284664898964], [-77.44008694552659, 34.742709607169694], [-77.4401091152756, 34.742606289606364], [-77.4401692402522, 34.742253917263085], [-77.44018413686705, 34.74218453497141], [-77.44020606308581, 34.74211943244707], [-77.44018696094331, 34.74189701890468], [-77.44015335260642, 34.74161475344173], [-77.44018207545517, 34.74123662136134], [-77.44022231598835, 34.74107981961817], [-77.44025807769445, 34.7409037359546], [-77.44028513819997, 34.74082225426959], [-77.44036268170227, 34.740714859764424], [-77.4404475088074, 34.740599467005914], [-77.44047894860813, 34.740516832065936], [-77.44064020583282, 34.74033063433658], [-77.44075442365273, 34.7402191109203], [-77.4407901568843, 34.74016014914337], [-77.4408905648709, 34.74004820211256], [-77.44112683002072, 34.73971874402024], [-77.44128924172395, 34.73959733085679], [-77.44139907615488, 34.73938962256299], [-77.44138159924476, 34.7392487257227], [-77.44163611738946, 34.73910470104295], [-77.44179203606855, 34.738923259539064], [-77.44185283778796, 34.73885433327278], [-77.4419710058496, 34.73870457570972], [-77.4419889124338, 34.738342849122844], [-77.44228814984473, 34.738238289972045], [-77.44247499736039, 34.738047871379685], [-77.44244548017552, 34.73794333189784], [-77.44267831368077, 34.73771868305536], [-77.4427847232742, 34.737554081472794], [-77.4429507427127, 34.737560826299685], [-77.44325986631338, 34.737582478782144], [-77.44335627962467, 34.73759151966479], [-77.44343359611031, 34.73764788418475], [-77.44356363816178, 34.737774940651626], [-77.44375454123659, 34.73796037919364], [-77.4438613188787, 34.73806207905674], [-77.44422080057434, 34.73856353188846], [-77.4442572440781, 34.73864344968861], [-77.44425944155486, 34.73885653916845], [-77.44426775301983, 34.73887349631878], [-77.44434442316214, 34.738886225973644], [-77.4444997092296, 34.73885972108147], [-77.44473589524503, 34.73889013863653], [-77.44491250369605, 34.738861160149774], [-77.44517658412798, 34.73889741542085], [-77.4453696372405, 34.738785243500175], [-77.44554646809995, 34.738886105014096], [-77.44600929870843, 34.7388051882283], [-77.44622213348514, 34.73876689164587], [-77.44654334733312, 34.739206844265354], [-77.44667168501535, 34.73886066776173], [-77.44636954571808, 34.738654860310504], [-77.44627896133068, 34.73857044328592], [-77.44623829845513, 34.73826320789738], [-77.44593728540094, 34.738045119233696], [-77.44583834495273, 34.73798368487759], [-77.44570047156692, 34.737830399988674], [-77.44532725672966, 34.737427462754255], [-77.44514965720046, 34.73737822695348], [-77.44477290095587, 34.73712737032524], [-77.44473955533753, 34.73710293857671], [-77.44434351540217, 34.737109487588484], [-77.44413225231045, 34.737125571596245], [-77.44386772129864, 34.737020319340154], [-77.4435317434804, 34.7369850245306], [-77.44336113893999, 34.736785287459966], [-77.4430515574261, 34.73649467615401], [-77.44303651523946, 34.73648058208058], [-77.44303322745206, 34.73647570034474], [-77.44302219559158, 34.736467748315235], [-77.4427667278243, 34.73630500840193], [-77.44260788218091, 34.73620676878314], [-77.44250079171977, 34.73611612589485], [-77.44230577879362, 34.73588641264501], [-77.44205913115346, 34.73557226647293], [-77.44204912441114, 34.735547092429286], [-77.44203473475943, 34.735510891757876], [-77.44167035378013, 34.735258726158676], [-77.44163318737158, 34.73486442872056], [-77.44159345924736, 34.734820026754036], [-77.44142316675456, 34.73458270583477], [-77.44136419822757, 34.73450440800328], [-77.44135309655981, 34.734498282859185], [-77.44135588765153, 34.734488033278126], [-77.44127512337224, 34.73434090390087], [-77.44116514996402, 34.73414187965391], [-77.44115950970739, 34.734132648119555], [-77.44115511468327, 34.734119055856915], [-77.44110762161023, 34.73406731848074], [-77.44091129176249, 34.73385377836736], [-77.44083458329895, 34.73382181622586], [-77.44064642061022, 34.73366125253298], [-77.44031729091336, 34.73328661657529], [-77.44020781959058, 34.73319051865487], [-77.44015007235514, 34.73316079829477], [-77.44007356872775, 34.73312596745379], [-77.43964080877396, 34.73305025213098], [-77.43954292658569, 34.73304328768887], [-77.43953057573873, 34.733026692030364], [-77.43949622060441, 34.73299973206642], [-77.43912851019438, 34.73274804527864], [-77.43907376993481, 34.73244888875871], [-77.43901727196575, 34.73227335023746], [-77.43905660928904, 34.73221249051914], [-77.43909837800646, 34.73186780531752], [-77.4388176724509, 34.73164457405575], [-77.43870442074382, 34.731509579833144], [-77.43863806010704, 34.73152880031128], [-77.43824652250458, 34.731330427682366], [-77.43813860937065, 34.73124926106201], [-77.4378124176861, 34.73092777474143], [-77.43762266838854, 34.73081660744037], [-77.43720964532238, 34.73108268035047], [-77.43702004426473, 34.73112876859613], [-77.43687734517054, 34.731176658208994], [-77.43666639325608, 34.73129875099034], [-77.43629002708724, 34.73125393682345], [-77.43621827519237, 34.73123862488752], [-77.43614889550743, 34.7312010758729], [-77.43570331850255, 34.7310523235906], [-77.43572974986395, 34.730711258959225], [-77.43557511299056, 34.73101144839436], [-77.43557537148861, 34.731070626912576], [-77.43540319113315, 34.731478308949846], [-77.43522531062402, 34.731507337392394], [-77.43479637944263, 34.73172105149453], [-77.43467423685408, 34.73178291057546], [-77.43416807824588, 34.731676669463226], [-77.4340471294198, 34.731654651563105], [-77.43364506374392, 34.73159705582907], [-77.43353782772934, 34.73163902004657], [-77.43346765298777, 34.73153865776566], [-77.43326611985844, 34.73147018136257], [-77.43314967588832, 34.731448117824826], [-77.43310105781848, 34.73145605972918], [-77.4330302417172, 34.731497944439475], [-77.43297204496116, 34.7315584622582], [-77.4329077982033, 34.7316006060415], [-77.43281305134961, 34.731733292556875], [-77.43264599645238, 34.73172403884789], [-77.43220694930096, 34.731806870013344], [-77.43207181677735, 34.73152337227583], [-77.43181145120883, 34.73133681295664], [-77.43180541162403, 34.73115074144633], [-77.43179880826719, 34.73100183717528], [-77.43179153139086, 34.730898731615106], [-77.43179756200958, 34.73086847247145], [-77.43180684076785, 34.7308371576469], [-77.43187536317592, 34.73073734261222], [-77.43193400630885, 34.730636633196006], [-77.43202770422518, 34.730450228739386], [-77.43205905070307, 34.73040080982655], [-77.43220729982204, 34.73027888851699], [-77.43222058774695, 34.73017774052651], [-77.43229070673209, 34.730132149164476], [-77.4323814628205, 34.730096333775094], [-77.43252298550195, 34.73014718848398], [-77.43269008634948, 34.730137605240266], [-77.43276927426123, 34.7301662552549], [-77.43325572437774, 34.73028788911326], [-77.43328233537676, 34.73030652232615], [-77.43379770798374, 34.73050816923695], [-77.4338534470443, 34.73054847951262], [-77.43393520365548, 34.73057557018516], [-77.43393209242429, 34.73049635865539], [-77.43403008808016, 34.73041121988673], [-77.43415045885251, 34.7302931492788], [-77.43417285999232, 34.730216090764785], [-77.43433127793325, 34.73007681771992], [-77.434501777566, 34.73000570689492], [-77.4346565525967, 34.7299888153785], [-77.4348481754362, 34.73006990693592], [-77.4350207223047, 34.73010576835928], [-77.4352786130587, 34.730054716402094], [-77.43572645106948, 34.73051096322274], [-77.43578522237306, 34.73051957005144], [-77.43600965189478, 34.73022589646786], [-77.43620145030373, 34.7301713315378], [-77.4363971642239, 34.73011123734156], [-77.43656053507087, 34.73005588860562], [-77.43689275731113, 34.7301096573455], [-77.43715845402645, 34.73020521346905], [-77.43752421902063, 34.73045698770658], [-77.43776807867289, 34.730159744638236], [-77.4381687136226, 34.730014438528094], [-77.43857081394779, 34.72975557305379], [-77.43902295335383, 34.72991452150227], [-77.43916144451963, 34.72952856535791], [-77.43945394900061, 34.7291232278849], [-77.44012610028912, 34.728811871940266], [-77.44015552661232, 34.72877395543587], [-77.44016888584507, 34.728762530597066], [-77.44028659626228, 34.72869356124593], [-77.44014962420273, 34.72873056665463], [-77.44004697849896, 34.72859664133088], [-77.439596804946, 34.72808857728547], [-77.43958790268287, 34.72800048869102], [-77.439183655582, 34.727637527935926], [-77.43896108557053, 34.72746103023442], [-77.4385748439203, 34.72708745243013], [-77.43829404298044, 34.72684655403913], [-77.43822224179372, 34.726528826261784], [-77.43737107969605, 34.7255487195539], [-77.43740321367437, 34.72543264869652], [-77.43707729555969, 34.72524071734197], [-77.43701430266847, 34.7254240373732], [-77.43595937742667, 34.72548677572965], [-77.43523166942674, 34.72521630568511], [-77.43469119386877, 34.72543836318136], [-77.43438946451678, 34.72490452444342], [-77.4336256500748, 34.724689734383404], [-77.43317764578768, 34.724851378689], [-77.43232580371166, 34.72475074236459], [-77.43219935942346, 34.72474850975725], [-77.43174882570833, 34.724529201053315], [-77.43125682997393, 34.72452990008152], [-77.43115384340392, 34.72453577563205], [-77.43110147948492, 34.7245507937719], [-77.43100745262622, 34.72452998179426], [-77.43046847609989, 34.724522826519404], [-77.43018177015804, 34.724443027055614], [-77.42985414136442, 34.72443035741385], [-77.42964907083899, 34.72420391153332], [-77.42964103370167, 34.72396511725954], [-77.42953430357039, 34.723805404836426], [-77.42945419266327, 34.723597229266716], [-77.42939244362341, 34.723418200604506], [-77.42937381618177, 34.7233126523876], [-77.42940896192417, 34.723180241076676], [-77.42962547155372, 34.723005483983115], [-77.42970148216762, 34.72291041963838], [-77.42978590757974, 34.72289764100001], [-77.42983631242853, 34.722786636126045], [-77.42998300851376, 34.722622634917336], [-77.43035520689683, 34.72253758169373], [-77.43040794563278, 34.72251699432039], [-77.43089152610494, 34.72261156868687], [-77.43168490486818, 34.72244331076152], [-77.43170186916007, 34.72244008414626], [-77.43171520254572, 34.72243029306132], [-77.43298860470934, 34.72178088884928], [-77.43304582797329, 34.72164495880235], [-77.433760872496, 34.72159563045043], [-77.43447994837769, 34.72173765445439], [-77.43536807539593, 34.72149444918913], [-77.43561507794182, 34.71986089677794], [-77.43598063828259, 34.71947235944534], [-77.43574812177312, 34.71898084675299], [-77.43546207324276, 34.718343626415276], [-77.43530890597066, 34.717378531927864], [-77.43454788135568, 34.717072271626265], [-77.43446242030113, 34.716705544133866], [-77.43453605640903, 34.716602391986655], [-77.43446747706413, 34.715944052998836], [-77.43424824781118, 34.71551258553019], [-77.43413402451327, 34.71519040244421], [-77.433855329492, 34.715035063749944], [-77.4335123348587, 34.714929597291004], [-77.43329021392533, 34.714772761049716], [-77.43313130495957, 34.7147160174452], [-77.4328573473359, 34.71446734309142], [-77.4327771308968, 34.7144174090387], [-77.43275894963712, 34.7143934881391], [-77.43234488801792, 34.71415137434638], [-77.43223116413128, 34.71400220723273], [-77.43208723253768, 34.71363908189936], [-77.43216888815662, 34.71348202654908], [-77.43226964114906, 34.71328998950642], [-77.43225622989324, 34.713139105092125], [-77.43218619758069, 34.71305005715207], [-77.43194474262968, 34.712979166042025], [-77.43189251805674, 34.7129573634995], [-77.43130102921803, 34.712801370005295], [-77.43129367986221, 34.712799568033276], [-77.43074085127054, 34.712506951757305], [-77.43045752081366, 34.71226054691154], [-77.43020750919985, 34.712134935482396], [-77.4297106414545, 34.71170810565546], [-77.42969312300485, 34.71169743635778], [-77.42968752177934, 34.711689052376755], [-77.42967458532691, 34.71167752817672], [-77.42935427282985, 34.71138171179895], [-77.42924166652364, 34.71104251703309], [-77.42919412689261, 34.71100214595213], [-77.42914384694647, 34.710781781141506], [-77.42893497841416, 34.71030082634461], [-77.42890412210416, 34.710230378473064], [-77.42886761469381, 34.71012017363054], [-77.42878518185853, 34.709833621190484], [-77.42879962224221, 34.70969443911875], [-77.42882843188646, 34.70951844292972], [-77.42882662822399, 34.70942434910941], [-77.42885112287287, 34.709359723799125], [-77.42879152555591, 34.709132543832425], [-77.42883344928843, 34.70877880182333], [-77.42907359579057, 34.70867209953454], [-77.4293014289571, 34.70862123552836], [-77.42960002868317, 34.708536018402064], [-77.42993788017753, 34.708415211685605], [-77.42997289084794, 34.7083975871834], [-77.43002214763327, 34.708345700336245], [-77.43025240439606, 34.708106589607574], [-77.43050654967004, 34.707776214926874], [-77.430661058266, 34.70754992709829], [-77.43078575361518, 34.707482638980956], [-77.43089352602097, 34.70735167242003], [-77.43092372898644, 34.70733423335198], [-77.43095996383154, 34.70714063096794], [-77.43094045406292, 34.707088549703], [-77.43090837849557, 34.7069352394644], [-77.43086250899094, 34.706734908386466], [-77.43082444525933, 34.706488931248195], [-77.43085387538582, 34.70629212300923], [-77.43087911592879, 34.70613960203039], [-77.4309388267251, 34.70596986251494], [-77.43097697110164, 34.70592562855005], [-77.43103094917305, 34.70577184562427], [-77.4310458110196, 34.70572773712729], [-77.43103167636639, 34.70564113221244], [-77.43102553571497, 34.705550910466854], [-77.4309508547093, 34.70550903865334], [-77.43085129579379, 34.70548054621841], [-77.43076814206441, 34.705435122171465], [-77.43066885667619, 34.705316414147205], [-77.43041457813467, 34.70513626976566], [-77.4303249404908, 34.70508454589628], [-77.43017301104999, 34.70498554143511], [-77.42977978452072, 34.70475352633272], [-77.4294490233876, 34.70464639938431], [-77.42922591242225, 34.70445263541503], [-77.42859314872152, 34.704110757890945], [-77.42843470366714, 34.7034171298262], [-77.42837659918757, 34.70330835334937], [-77.42850610707798, 34.70288303105315], [-77.42850989211894, 34.70280635194028], [-77.42852793045984, 34.70261112887214], [-77.42855544911524, 34.702341651034466], [-77.4285555194091, 34.70234124257705], [-77.42855564427224, 34.70234087808834], [-77.4288985622312, 34.70140679009772], [-77.42896363663853, 34.70136581409864], [-77.42919862024972, 34.70117981104359], [-77.42920392868939, 34.70117030306317], [-77.42894430086601, 34.70099627555207], [-77.42878095910608, 34.70090770976904], [-77.42845914445434, 34.70068852781682], [-77.42840218215132, 34.7006548674517], [-77.42836076054061, 34.70063666713361], [-77.42833279563197, 34.700586162332826], [-77.42837605128459, 34.7005527039], [-77.42833490688119, 34.70020107278007], [-77.42831398106311, 34.7000205160826], [-77.42829575885924, 34.6999152809209], [-77.42826513933883, 34.699783803207374], [-77.42823584957968, 34.69971366135802], [-77.42811642014965, 34.699427657238644], [-77.42809289447041, 34.69940929558115], [-77.42806951372621, 34.69937596286228], [-77.4281586441774, 34.69928175429506], [-77.42830676331613, 34.69894373000765], [-77.42834665568975, 34.698913806362256], [-77.42897782881116, 34.69866571305041], [-77.42904920301905, 34.698661636956935], [-77.42924444077173, 34.69866867525375], [-77.42949883602357, 34.69864876623164], [-77.4296141972619, 34.698681384208115], [-77.42980516193221, 34.69869478177654], [-77.43000509546566, 34.698728454819125], [-77.43025389348048, 34.69868555139032], [-77.43070988269136, 34.698622028892295], [-77.43083648429017, 34.698591757069885], [-77.43092281058526, 34.69858873178201], [-77.43116248218134, 34.69857474700685], [-77.43128036553287, 34.698569480398405], [-77.43160869742422, 34.69843325450777], [-77.4316468781796, 34.69842074219749], [-77.43182930726293, 34.698296467103916], [-77.43221833055736, 34.69803134517297], [-77.43230182018846, 34.697995642886404], [-77.43239288626164, 34.697614880186535], [-77.43232838473867, 34.697510767879145], [-77.4324419983098, 34.697476966090306], [-77.43264553898953, 34.69706481115033], [-77.43264637724691, 34.69706322895125], [-77.43264641248813, 34.69706290938546], [-77.43264652226459, 34.69706263842198], [-77.4327556200924, 34.69682156534815], [-77.43280262723758, 34.69657082701706], [-77.43280447102084, 34.6965591178162], [-77.43280039043661, 34.696529610423575], [-77.43266261112831, 34.69616314200644], [-77.43238418731092, 34.69585310689404], [-77.43238019781963, 34.6957668727834], [-77.43228688498122, 34.695427166804], [-77.43235824424265, 34.69509666770601], [-77.43246480976606, 34.69476318146439], [-77.43267510609986, 34.694372363749665], [-77.43271822674005, 34.6942927344218], [-77.43272206544393, 34.69419576001599], [-77.43292005210255, 34.693900988994656], [-77.43295447850642, 34.69381628588937], [-77.43298291939487, 34.693797506257674], [-77.43320905297286, 34.69349618738856], [-77.43322646271722, 34.69335233163066], [-77.43381142804955, 34.69303508589792], [-77.4338297930223, 34.69301525169059], [-77.43384096774557, 34.69300814393923], [-77.43387679663958, 34.69297804315603], [-77.43416627269877, 34.69256283451696], [-77.43429859798903, 34.6922859787156], [-77.43465601341836, 34.69233085200089], [-77.43480322229443, 34.692226493599], [-77.43506803310241, 34.69204811054854], [-77.43511509189345, 34.69201481258933], [-77.43525460611525, 34.69182526839954], [-77.43550521001964, 34.691610623372064], [-77.43562537525767, 34.691463576049706], [-77.43567135871118, 34.69141193441414], [-77.43574737655493, 34.69130450622047], [-77.43606351043891, 34.69068420694222], [-77.43639260079881, 34.69075830251981], [-77.43660283263678, 34.69061952157889], [-77.43684739967132, 34.690469986463306], [-77.43709117537082, 34.690297200603695], [-77.43712611520161, 34.69024343536328], [-77.4372246045941, 34.69009739346509], [-77.43737319255345, 34.689833915804186], [-77.43847533432397, 34.69016582397275], [-77.43848539167735, 34.690169503952944], [-77.43850224490747, 34.690183853303125], [-77.43902449043362, 34.69052119746259], [-77.43914872353083, 34.69077753611704], [-77.43924970684336, 34.690985899388444], [-77.43944527478305, 34.6912819692818], [-77.43963632552575, 34.69146680269188], [-77.43979996024083, 34.691557114311514], [-77.43998810520576, 34.69162079553932], [-77.44039288509882, 34.69194460150523], [-77.44044168849969, 34.69202342438597], [-77.44045486445947, 34.692222653139225], [-77.44054529521611, 34.692872987184444], [-77.44073881315086, 34.693183608235735], [-77.44089084394113, 34.69362155365288], [-77.44116118475765, 34.6942120013672], [-77.44127086147665, 34.69435573738852], [-77.44192620350391, 34.69471676569797], [-77.44218339821897, 34.69486762377159], [-77.44221586160174, 34.69499696390029], [-77.44370799507362, 34.69757571870356], [-77.44381101355694, 34.69775947028958], [-77.44425440126734, 34.69808879671207], [-77.44629022961924, 34.69863656608864], [-77.4473652688163, 34.69984702543222], [-77.44965371142357, 34.7009299666791], [-77.45060050591471, 34.701461298545084], [-77.45171199341351, 34.70160369961001], [-77.45189827250415, 34.70160682263406], [-77.45216657413803, 34.70141390339327], [-77.45305761344277, 34.700843283301126], [-77.45317475694613, 34.70070213858358], [-77.45342083821096, 34.7005729739619], [-77.45361589664186, 34.7008087696821], [-77.45373366570004, 34.70107951520568], [-77.4540982433563, 34.70221071146888], [-77.45415834768235, 34.70236801461763], [-77.45419683367379, 34.70237176326483], [-77.45421484917418, 34.70236565081667], [-77.45423044539265, 34.702337911061306], [-77.45485914718482, 34.70147277974735], [-77.4554164482715, 34.70137418569911], [-77.45578798956727, 34.70125221113967], [-77.45629267963757, 34.70131060723303], [-77.4564955790112, 34.701392102511115], [-77.45698204123204, 34.70155561265773], [-77.45732785220827, 34.70193745228788], [-77.45749352662882, 34.70200327697228], [-77.45779591269685, 34.70227116804279], [-77.45806667859078, 34.70223759433693], [-77.45818246500883, 34.70247347208732], [-77.45817798894959, 34.702632362950034], [-77.45835836336273, 34.70318984978767], [-77.45839284386264, 34.70326641548846], [-77.4583895676422, 34.70327987761048], [-77.45837294269872, 34.703395340502425], [-77.45845039611737, 34.70334016959757], [-77.45893626276725, 34.703663713129515], [-77.45916264463396, 34.703849944787194], [-77.45970982609617, 34.70390240824344], [-77.46018249172946, 34.70378669439145], [-77.46069319466598, 34.704013742175455], [-77.46091347654338, 34.70401170866139], [-77.46142225404287, 34.70393205133277], [-77.46176799900523, 34.70454775735365], [-77.4619977312017, 34.70508475531], [-77.46208430855258, 34.70530856581322], [-77.46212293444091, 34.70568747048856], [-77.46218038135763, 34.70574409422091], [-77.46258420631541, 34.705992708549154], [-77.46268504164676, 34.7062155360532], [-77.46283966300821, 34.70649681116713], [-77.46302900664246, 34.70669986142628], [-77.46303099727866, 34.707236193643766], [-77.46320437029921, 34.707519534329194], [-77.46360683893516, 34.707882734795874], [-77.46389688305067, 34.708675555952496], [-77.46517771106083, 34.708431422429506], [-77.46522012155754, 34.708417256028326], [-77.46527134998857, 34.708354957843405], [-77.46574144967971, 34.707510387776765], [-77.46616108608585, 34.706964642196596], [-77.46636046654702, 34.706201464933244], [-77.46590175576658, 34.70533050484409], [-77.4658191034371, 34.70464172673631], [-77.46519670058957, 34.70417721248313], [-77.46511334192851, 34.70404357112514], [-77.46510883548594, 34.70393561282529], [-77.4647585729252, 34.70347551897619], [-77.4645580049681, 34.703382589304496], [-77.46422510571882, 34.70310380013291], [-77.46370683379482, 34.70232793212851], [-77.46346882204531, 34.70205165316837], [-77.46330660233882, 34.7018467363741], [-77.46320320940401, 34.70171612912067], [-77.46297854386171, 34.70151454670082], [-77.46286382354403, 34.70141141460757], [-77.46269923614965, 34.701311220152114], [-77.46225735338325, 34.70104221848278], [-77.46195178745708, 34.70089940221524], [-77.46166655460786, 34.70049723410635], [-77.46126667449677, 34.70003508012029], [-77.46090430603014, 34.69955105554983], [-77.46053223396427, 34.69926663868358], [-77.46026587750484, 34.69906303208567], [-77.46008689087436, 34.69899952598], [-77.4598789000471, 34.69875472768253], [-77.45954080936541, 34.69833468207628], [-77.45928797683374, 34.69801182613752], [-77.45901651337365, 34.69766074485025], [-77.45833630707013, 34.69717459208508], [-77.45826370891663, 34.697121138324626], [-77.45821299207661, 34.697103412713055], [-77.45813133965689, 34.69702617483129], [-77.45719724381848, 34.696376513097846], [-77.45655856890076, 34.696476629840596], [-77.45630009374358, 34.6968380967472], [-77.45582688717559, 34.69668334309873], [-77.45526714766133, 34.69654780255127], [-77.45521414482799, 34.69655900975857], [-77.45520489930918, 34.696562619175054], [-77.4545461006636, 34.69668025164415], [-77.45438108193812, 34.696693020162314], [-77.4539660722301, 34.69668872401625], [-77.4538982534722, 34.69670448583191], [-77.45385841223856, 34.696689607519566], [-77.45345688377407, 34.696678146992085], [-77.45326318132607, 34.69668452021533], [-77.45276067190173, 34.69670153891422], [-77.45253277732039, 34.69666341536191], [-77.45193625739685, 34.696840989046215], [-77.45147766137626, 34.69634438870471], [-77.45121754142295, 34.69572822142975], [-77.45110756184887, 34.695606061112834], [-77.45103754147435, 34.69551625792774], [-77.45086387705258, 34.695261380359355], [-77.45069710470459, 34.69498733116146], [-77.45064055127904, 34.694908198886196], [-77.4502982813521, 34.694288936322764], [-77.45024537612153, 34.69418034403927], [-77.45017812758962, 34.694055674254095], [-77.4492747776645, 34.69369274427226], [-77.44918303120608, 34.693064499650816], [-77.44900162179248, 34.69271772578241], [-77.44891687018571, 34.692250666575795], [-77.44886177119932, 34.69210983234671], [-77.44883738691668, 34.69208967341524], [-77.44882537694534, 34.692085076378305], [-77.44879308115844, 34.69204840069504], [-77.44831218518709, 34.69164365045168], [-77.44800035084906, 34.69154631059247], [-77.4480980439874, 34.691283876448175], [-77.44798041134761, 34.69072049916688], [-77.44796392641202, 34.69067798121864], [-77.44796375160149, 34.69066874951723], [-77.44774199264974, 34.690041388363085], [-77.44778175791006, 34.68985189350789], [-77.44793592587015, 34.68915266460095], [-77.44801701605398, 34.689019482909735], [-77.4484974532993, 34.688660221733755], [-77.44845148388706, 34.688053305405255], [-77.44892836415116, 34.687784103656895], [-77.44942708066597, 34.68778732628652], [-77.44997230059654, 34.68746685701906], [-77.45029240467264, 34.6870228034723], [-77.45097363905938, 34.68687063586976], [-77.45132618071307, 34.68682204615096], [-77.45198764894167, 34.68680271313737], [-77.4523148207465, 34.686664317519394], [-77.45310937245438, 34.68632727468547], [-77.45342358124674, 34.68615892055105], [-77.45390619946879, 34.685592335585206], [-77.45397382693326, 34.68551139537959], [-77.45399927389187, 34.68546995023], [-77.45425574625031, 34.68505092268548], [-77.45441622702526, 34.68479086979329], [-77.4545789413134, 34.68460487634849], [-77.45468539670046, 34.68448319081676], [-77.45495094672317, 34.68417964703325], [-77.4549530108406, 34.68417661137231], [-77.45442707542952, 34.683790167380806], [-77.45430730343158, 34.683950936920375], [-77.45425206661871, 34.68402508036601], [-77.45420604068414, 34.684195046783316], [-77.45408488484617, 34.68424948619723], [-77.45396350708378, 34.6842856106615], [-77.45369537867332, 34.68429606968698], [-77.45368120755992, 34.684337390642575], [-77.45362408863801, 34.684351499940924], [-77.45339920972464, 34.68462411289893], [-77.45295146574185, 34.68446177119464], [-77.45241291783377, 34.68434669293789], [-77.4523444719382, 34.68434498160346], [-77.4523068385698, 34.684334214181405], [-77.4521136869632, 34.684302251243395], [-77.45205448390769, 34.68429562231685], [-77.45203618644342, 34.684303154046226], [-77.45183618565488, 34.68431267786944], [-77.45169652707926, 34.68436986437185], [-77.45144048042856, 34.68441360557731], [-77.45107829184882, 34.68429196407435], [-77.45081416205286, 34.6841377022384], [-77.45080352650113, 34.68413417701581], [-77.45079800165651, 34.684128210572155], [-77.4505775549153, 34.6841248378254], [-77.45047587751077, 34.68415933468145], [-77.45034004722439, 34.68411050100236], [-77.44999089932452, 34.68401881346438], [-77.44987601055769, 34.68401789565823], [-77.44977970455217, 34.683942392561434], [-77.44959060287275, 34.68389692989028], [-77.44949815745579, 34.6837781448147], [-77.44941703994556, 34.683723531954044], [-77.44930719681986, 34.68376904204712], [-77.4492049569466, 34.68375073832466], [-77.4489641484455, 34.68376037674648], [-77.4486211379602, 34.68392575620019], [-77.44845340196136, 34.684017712746034], [-77.44789069777387, 34.684235968641524], [-77.44776066991327, 34.68438081969124], [-77.44760870106144, 34.68440460278809], [-77.44719064702045, 34.68444104853041], [-77.44692547335454, 34.68440596368195], [-77.44686643973826, 34.684414643499785], [-77.44669454769915, 34.684502384316296], [-77.44653131015245, 34.68458700086846], [-77.4465176332527, 34.684592212171346], [-77.44650396966755, 34.684599856173904], [-77.44645699423035, 34.68460157185775], [-77.44611257648069, 34.68467785576644], [-77.44580582632679, 34.684798305610535], [-77.44573625126239, 34.684810454342696], [-77.44557237635459, 34.684810801695754], [-77.44546166277316, 34.68488054971671], [-77.4453326167998, 34.68489842356478], [-77.44527567007646, 34.68498659073087], [-77.4451003613914, 34.685022061137225], [-77.44500902946533, 34.685117211893726], [-77.44495175851827, 34.68515286877746], [-77.44463783663409, 34.6852582014409], [-77.44456851639973, 34.6852984053983], [-77.44446901588739, 34.685356113205856], [-77.44434158301752, 34.685430176081184], [-77.44430059492322, 34.6854546784859], [-77.44427045305127, 34.685473719163774], [-77.44418801574358, 34.68554892051069], [-77.44416077780997, 34.68557513474959], [-77.44416103547617, 34.685600412770356], [-77.44414908600663, 34.68571080454304], [-77.44417327847839, 34.68599423770469], [-77.44417335895267, 34.685998804759436], [-77.44417270648, 34.68600172562533], [-77.44417415700445, 34.68600919189266], [-77.4442806059717, 34.68659532540429], [-77.44406817252445, 34.686938194910624], [-77.44402705638595, 34.68706571658433], [-77.44394476862982, 34.68711605451359], [-77.44384499500555, 34.687147523110646], [-77.44366266226943, 34.68710749470995], [-77.44320709562695, 34.687137529597216], [-77.4430099028178, 34.68708349164777], [-77.44221667270706, 34.68681835766593], [-77.442079948929, 34.686603499634394], [-77.44194533493618, 34.68648522749487], [-77.4416511801949, 34.6863581858959], [-77.44145013066657, 34.68656556657859], [-77.44137112069973, 34.68669623128404], [-77.44112805580446, 34.686998544144416], [-77.44070030078636, 34.686942604531666], [-77.44064809497797, 34.68696177809815], [-77.44053366070743, 34.686962476907745], [-77.44024976001525, 34.68705841970382], [-77.44002317658826, 34.68706822331877], [-77.43974746990018, 34.68695635977254], [-77.43956099986131, 34.68645063300226], [-77.43941682314681, 34.68620158209576], [-77.43946522107271, 34.68602987938194], [-77.43958193156438, 34.6859668874588], [-77.43965865011606, 34.685654225862876], [-77.4396898735402, 34.68554938536158], [-77.43970639390304, 34.68542261773838], [-77.43972768502417, 34.68517900209957], [-77.43958072326453, 34.68495218082403], [-77.43978211675419, 34.68479868613021], [-77.43978969633906, 34.684745726079285], [-77.4397956350551, 34.6847042310739], [-77.43980874563599, 34.684612626335465], [-77.43978756674389, 34.6845594449135], [-77.43970712314096, 34.68451797967013], [-77.43966625964998, 34.684423047013496], [-77.43958308545193, 34.68434655911167], [-77.43954344397396, 34.6842957444008], [-77.43937721079081, 34.68398610097228], [-77.43919165607015, 34.683698061496564], [-77.43916942968201, 34.683626438862156], [-77.43912694638483, 34.6835202812953], [-77.43885441221721, 34.683282324174556], [-77.43860306905596, 34.683116118349346], [-77.43853135834618, 34.68300000542402], [-77.43829143730768, 34.68282424962866], [-77.43809027904602, 34.68267363642716], [-77.4377174800197, 34.682446963319826], [-77.43758671073513, 34.682199287019344], [-77.43744962602139, 34.681970847428644], [-77.43755021533764, 34.68189820186484], [-77.43764510733874, 34.68158437633666], [-77.43766470061442, 34.6814870068183], [-77.43770152252947, 34.681397801352915], [-77.43769132454398, 34.68134188274907], [-77.43768168238101, 34.68131707728448], [-77.43766152279619, 34.681242723814464], [-77.43757228322232, 34.68118653923644], [-77.43755885506349, 34.681187900942064], [-77.4375329295482, 34.681184806345556], [-77.4373484002685, 34.68119443394159], [-77.43723009537314, 34.68121688134348], [-77.43713889783785, 34.68122583572905], [-77.43693481582493, 34.68123178015674], [-77.43681637846777, 34.68144636231017], [-77.43630201156543, 34.68125225706957], [-77.43599922368111, 34.68104180025689], [-77.43590274814406, 34.68087087625504], [-77.43577895303254, 34.680577812702694], [-77.43578713178235, 34.68055091976038], [-77.43570352727777, 34.68038610080153], [-77.43569845402757, 34.68038014611617], [-77.43557520410525, 34.68029250290796], [-77.4354911818133, 34.6802515450501], [-77.43537481394179, 34.68021143191465], [-77.43527553493387, 34.680220916283844], [-77.43511869400851, 34.68016661815784], [-77.43495056373052, 34.68023680193053], [-77.43468220639637, 34.680200828937835], [-77.43464441605866, 34.68018761329566], [-77.43457706961523, 34.68018673533804], [-77.43445020431903, 34.68019544185285], [-77.43431094977123, 34.680232864953254], [-77.43426309613334, 34.68026344749391], [-77.43422867678854, 34.680285444239956], [-77.43409055712678, 34.68035527168054], [-77.43393605361838, 34.68042133523791], [-77.4339097362803, 34.68043355669242], [-77.43388493680548, 34.680444761151776], [-77.43356998770867, 34.68057927326888], [-77.43354448438407, 34.680584225691064], [-77.43342220602966, 34.68056246372542], [-77.43308245678712, 34.68057668131815], [-77.43291254497507, 34.68063694769279], [-77.43267289200921, 34.68065490450653], [-77.4322845719284, 34.68059274823138], [-77.4321150787861, 34.68049075971773], [-77.4320142370241, 34.68041976008292], [-77.43187041471796, 34.680423761596415], [-77.43184859257619, 34.68042899112133], [-77.43166923812176, 34.680504858739376], [-77.43166700339323, 34.680506020831224], [-77.4316655385989, 34.680507165010155], [-77.43166224995043, 34.680510650166696], [-77.43158599774208, 34.680619112248394], [-77.43156633977287, 34.68071535761131], [-77.4315550681832, 34.68074806077876], [-77.43150747301124, 34.68099302946621], [-77.43150421333588, 34.681009806585585], [-77.43150142320995, 34.68102416672855], [-77.43146548025902, 34.68120916131984], [-77.43145423136743, 34.68126705818957], [-77.43145335818261, 34.681271552411566], [-77.43145133083357, 34.68127515641514], [-77.43144334383487, 34.681285676776696], [-77.43132830309027, 34.68144793176245], [-77.43129390287775, 34.681495316530025], [-77.43122699331279, 34.68158509940697], [-77.43113200537978, 34.68171822697024], [-77.43107749149418, 34.681785709530786], [-77.43100185007629, 34.681902265535136], [-77.43097373496921, 34.681942406034246], [-77.43095898995858, 34.6819658872734], [-77.43091928663432, 34.681989666122874], [-77.43080619125907, 34.6820899924499], [-77.43050992621635, 34.68233078022255], [-77.4305135991196, 34.68234054330307], [-77.43049660175656, 34.682343246354385], [-77.4301668368318, 34.6825403810442], [-77.43002334324163, 34.68253386938758], [-77.42979359526335, 34.6825583258854], [-77.4296481561608, 34.682596925723], [-77.42932121906057, 34.682653546079024], [-77.42907725405193, 34.682819474840976], [-77.42899962856566, 34.682875617967824], [-77.42895225675545, 34.68291260330223], [-77.42883014620088, 34.68297245156546], [-77.42870584512805, 34.68299579459859], [-77.42864044974556, 34.6830362357119], [-77.42861424122094, 34.68307391589373], [-77.42855968885479, 34.68309116054144], [-77.42850906415418, 34.683122232670094], [-77.42846653961047, 34.68312583055928], [-77.42842990927844, 34.68319891455349], [-77.42841786254934, 34.68328476650542], [-77.42843045062179, 34.68344076133518], [-77.42818865885022, 34.68374598249917], [-77.42821281035106, 34.68377211935274], [-77.4281836021997, 34.68378504251074], [-77.42815112829418, 34.683805614834085], [-77.4281078937695, 34.68377968968346], [-77.42751428903836, 34.68379195183944], [-77.42735922240347, 34.68364576526929], [-77.42727348064551, 34.68351690969888], [-77.42717126174774, 34.683625625350416], [-77.42707067373001, 34.683652179451954], [-77.42696127894594, 34.683656243066096], [-77.42690097846034, 34.68369697703523], [-77.42679943587335, 34.68376557077902], [-77.42675025493182, 34.68381964424851], [-77.42670063598122, 34.68392061935855], [-77.426690375701, 34.683938469206424], [-77.42668236635522, 34.68394810626955], [-77.42662034110575, 34.684053741945], [-77.42656370172, 34.68412803371303], [-77.42645410752829, 34.68427513624994], [-77.4264379751402, 34.684296415988484], [-77.42637573049126, 34.68440487838582], [-77.42632597491306, 34.68448724176342], [-77.42631973870893, 34.684507675996], [-77.42631206147459, 34.68452916141479], [-77.42631457564566, 34.68461620833587], [-77.42630801900765, 34.684754037089434], [-77.42631466088352, 34.684785438035426], [-77.42630458525298, 34.684826220350224], [-77.42628790929234, 34.6849856180009], [-77.42628815767509, 34.68505570618558], [-77.426290613991, 34.68509608359945], [-77.42630867859711, 34.68513276831314], [-77.42630270671033, 34.68514683415983], [-77.42631963204927, 34.68515233162743], [-77.42637631897723, 34.685171911010244], [-77.42640494593014, 34.6851772888274], [-77.42646866250165, 34.68519093449464], [-77.42653851859271, 34.68520870800673], [-77.42670938699612, 34.685256101295074], [-77.42676405242794, 34.685277371079884], [-77.4268146920175, 34.68528630652082], [-77.42706191397794, 34.685355267112996], [-77.42735597986443, 34.68542341846928], [-77.42736211166309, 34.685425092309394], [-77.42737223873753, 34.68542585057867], [-77.42767481703436, 34.685451693163955], [-77.42790567214595, 34.685574265679676], [-77.42797457640481, 34.68552303353843], [-77.42800447705159, 34.685608373319134], [-77.42807230392094, 34.68584670005651], [-77.42810902737615, 34.685972106637024], [-77.42808595721257, 34.68602074912714], [-77.4279398724557, 34.68637805863394], [-77.42789750052094, 34.68645719705487], [-77.42780670420147, 34.68658367197062], [-77.427647653467, 34.68692888572127], [-77.42749344753781, 34.68714394005976], [-77.42730556523162, 34.68736831399722], [-77.42700219103607, 34.687812177529295], [-77.42699747253876, 34.68781963289079], [-77.42699441594614, 34.687823827407065], [-77.42698348922875, 34.68784073733086], [-77.42677057641974, 34.688205753340476], [-77.4267052707446, 34.68827650961138], [-77.42649383687805, 34.6884255569216], [-77.42646700477012, 34.68845732504884], [-77.42632625026822, 34.68854063635793], [-77.42617758274432, 34.68865102525575], [-77.42614045779017, 34.68867133498664], [-77.42609805511114, 34.68868598475388], [-77.42590690177553, 34.688835891756085], [-77.4258195897639, 34.68889463197513], [-77.42570476093157, 34.68902317649776], [-77.42569856853305, 34.689042564616436], [-77.42565011595475, 34.68912662748841], [-77.42558414386548, 34.68925759357084], [-77.42554618722056, 34.689312537417806], [-77.42546310412747, 34.689519286433416], [-77.4253596466347, 34.689638457477194], [-77.4251511759321, 34.689969265827706], [-77.42512220298708, 34.6899981598381], [-77.42505252514317, 34.69008434253547], [-77.42486948583188, 34.6903328912365], [-77.42481741266812, 34.690411608276925], [-77.42458533767221, 34.690606241144366], [-77.4243623495394, 34.69081152554449], [-77.4242708804653, 34.69085003184135], [-77.42417642246195, 34.690897187585435], [-77.4239448628283, 34.69106492651162], [-77.42378766026255, 34.69116960193186], [-77.42361158363434, 34.69126795060711], [-77.423372973635, 34.69145895167142], [-77.42330612099889, 34.69151645710972], [-77.42326854576284, 34.69154711628661], [-77.42308012971014, 34.69168069773747], [-77.42299230792015, 34.69175131270401], [-77.42296466758948, 34.6917625569433], [-77.42273003395336, 34.691917845247815], [-77.42266564767516, 34.69196516471881], [-77.4225566508652, 34.69206515004922], [-77.42235903293212, 34.69221179384526], [-77.42222775157467, 34.69230124547051], [-77.42206860523065, 34.69248489201535], [-77.4217747161519, 34.692552502201146], [-77.42165053440787, 34.692549288930266], [-77.42151768515357, 34.6926119676378], [-77.42132524490799, 34.69276539083658], [-77.4213102489972, 34.692865552619544], [-77.42121634848856, 34.693065654257936], [-77.42116989151066, 34.693259350021805], [-77.42088701346539, 34.693405197849856], [-77.42084090393473, 34.6934694100876], [-77.4208127378565, 34.693483567589276], [-77.42050292636395, 34.693625067274766], [-77.42048342074682, 34.69363287949275], [-77.42014584998763, 34.6937516218772], [-77.42010605925569, 34.693763847381334], [-77.42006097226853, 34.693779701707186], [-77.41977778192569, 34.69391614101084], [-77.41974994261906, 34.69392955378158], [-77.41972261585356, 34.69394089421259], [-77.41942710814057, 34.694020568813684], [-77.41933420207319, 34.69399776953496], [-77.41886974675732, 34.69388379089275], [-77.41882971957484, 34.69387031773521], [-77.41878860188898, 34.69385364741125], [-77.4184288238906, 34.69376787706386], [-77.41826893721525, 34.69375192903246], [-77.41821795140213, 34.69376973923872], [-77.4180608588698, 34.69377490172291], [-77.41783490185541, 34.69379022573699], [-77.41770930517546, 34.69379573320698], [-77.4175529538957, 34.693853017482986], [-77.41745608313069, 34.693918811572], [-77.41746123482264, 34.693988504187686], [-77.4172480779732, 34.69432671115733], [-77.41707283838316, 34.694633458758496], [-77.4169001457511, 34.69491042463853], [-77.41676746713017, 34.6950368867263], [-77.41656424286629, 34.69505434856924], [-77.41634428002673, 34.69509293133302], [-77.416229264356, 34.695104528048375], [-77.41607039167141, 34.695179264027495], [-77.41597859349753, 34.695243000726975], [-77.41583668905936, 34.69535362646922], [-77.41555996787598, 34.695559808590346], [-77.41537260808194, 34.69574818217554], [-77.41535272079678, 34.695766860488234], [-77.41529921646347, 34.69581973015318], [-77.41524016375836, 34.69590563357566], [-77.41522589859498, 34.69600204651382], [-77.41526812623651, 34.69621050876073], [-77.4153122445005, 34.69626065105798], [-77.41531956777905, 34.6964095060644], [-77.41537739215856, 34.69661414462774], [-77.41523620075978, 34.6967387292609], [-77.41521956780912, 34.69699404200861], [-77.41487217883264, 34.69689058377993], [-77.41474313911432, 34.69691686136213], [-77.41471747477362, 34.69692106985826], [-77.4146702018119, 34.69692585792306], [-77.41455709622346, 34.69700600772099], [-77.41454123578416, 34.69700691085119], [-77.41454641327334, 34.6970223297961], [-77.41454817483412, 34.697025743345144], [-77.41465953227373, 34.69720167757837], [-77.41466029891721, 34.697202947758825], [-77.41494496399766, 34.697306576341724], [-77.41493700284907, 34.697354057406784], [-77.41501027014121, 34.69739985543498], [-77.41521059416, 34.6975159189731], [-77.41535502154048, 34.69772452342782], [-77.41528631457106, 34.69785124364179], [-77.4152573394837, 34.697969904395215], [-77.41535914820076, 34.698026508563835], [-77.41527662517292, 34.69825620200173], [-77.41529547639789, 34.69832949982763], [-77.41535474423569, 34.69847470176207], [-77.41532773129103, 34.698553630575816], [-77.41536483425578, 34.69864333538324], [-77.4154105109347, 34.69867461657442], [-77.4154911075648, 34.698760613553226], [-77.41560245810172, 34.69881772315783], [-77.41590572853275, 34.699035367599514], [-77.41598740213462, 34.69910349865211], [-77.41602568831402, 34.69912789963836], [-77.41606134598918, 34.69911854518067], [-77.41661908371128, 34.69928634456796], [-77.41662073544852, 34.69928636767743], [-77.41662280721249, 34.699288561749185], [-77.41691321274595, 34.69961000352094], [-77.41699540743699, 34.6998977964582], [-77.41702653847571, 34.69998651929153], [-77.41702861494609, 34.70000822137426], [-77.41702577083728, 34.70010109259343], [-77.41703877620587, 34.70054989676682], [-77.41697402793793, 34.70061086768265], [-77.41681126186802, 34.70099161117562], [-77.41679948926897, 34.70102529583279], [-77.41678132923046, 34.70104382319166], [-77.41674817671779, 34.701059816404154], [-77.41641024748183, 34.70118511366357], [-77.41639196806734, 34.701183234906736], [-77.41624252157365, 34.70122886315928], [-77.41604028049895, 34.70129103464277], [-77.4160201999397, 34.70129539450527], [-77.41599178493546, 34.701301870269546], [-77.41562351394403, 34.701394821223886], [-77.4153476902872, 34.70146937573575], [-77.41522048310254, 34.70148387389004], [-77.4148845485986, 34.70147366563852], [-77.4146856554878, 34.7015421850173], [-77.4143844146204, 34.70161291345598], [-77.41361685031175, 34.701431414402734], [-77.41345188801014, 34.701375953655244], [-77.41326609998954, 34.701280429062066], [-77.41286888876981, 34.701175833670284], [-77.41268527749757, 34.701078751434366], [-77.4125251427006, 34.70099408202748], [-77.4125274443408, 34.70092867429524], [-77.41253103838116, 34.70082653502079], [-77.41253716135117, 34.700652518831006], [-77.41248777232559, 34.700563319239], [-77.4124270903794, 34.70048815448877], [-77.41236891885218, 34.70038971966797], [-77.41220153754122, 34.700287719635966], [-77.41216682151428, 34.70028026680137], [-77.41212845544541, 34.700266845081345], [-77.41187224237066, 34.70019085376066], [-77.41161873365147, 34.699772112080815], [-77.4116465424581, 34.699575157949326], [-77.41168788593166, 34.69944775470878], [-77.41172947169935, 34.699251741604314], [-77.41175779098855, 34.699188016515066], [-77.41177383608466, 34.699075713601765], [-77.41174569343698, 34.69897786092002], [-77.41163492329802, 34.698797166778405], [-77.41152578502164, 34.6987328302119], [-77.41143092027934, 34.698588182898646], [-77.41131869710377, 34.698372861028474], [-77.41134384131045, 34.69827816257275], [-77.41122195319994, 34.698010022326805], [-77.41116868234482, 34.697989086342204], [-77.4111291304243, 34.69792348899847], [-77.41114969825782, 34.69781952563734], [-77.41096221989777, 34.697305980735365], [-77.41093218998078, 34.697195035370115], [-77.41087435916808, 34.69699716768446], [-77.41077647225822, 34.696813640728266], [-77.41078286473332, 34.69668411757202], [-77.41070242677664, 34.69648431419348], [-77.41067761864053, 34.69640852751513], [-77.41064558447091, 34.696356530794645], [-77.41063997022027, 34.696237800346914], [-77.41060139251637, 34.69606151185713], [-77.41058748168346, 34.69599977850749], [-77.41055930315852, 34.69587199453796], [-77.4105379761425, 34.69579725501673], [-77.41053426922318, 34.69575847013705], [-77.41050954483701, 34.69565043519151], [-77.4104959263392, 34.69559162162527], [-77.41044867174942, 34.69544896426814], [-77.41040197114174, 34.69530874263933], [-77.41029897616941, 34.695227426648096], [-77.41032818829501, 34.69512725238473], [-77.41025274721649, 34.694856389578156], [-77.41024071557722, 34.69481708976839], [-77.41024209486811, 34.69480480736565], [-77.41024207330503, 34.69475435803584], [-77.41024251772043, 34.69458145823872], [-77.41022860127116, 34.694533293015134], [-77.41020369250522, 34.694374480072725], [-77.41010348380695, 34.69420995822084], [-77.41049631300237, 34.69380607628775], [-77.41050061584143, 34.69378979101627], [-77.41050533536443, 34.69377322160037], [-77.41052772558821, 34.693768026705115], [-77.41082921512518, 34.69355478733685], [-77.41091089376472, 34.69355146105711], [-77.41101739835175, 34.69348849125123], [-77.41108993328832, 34.69348649222546], [-77.4111309076059, 34.69345120075213], [-77.41115335141464, 34.693336775039285], [-77.41115887161618, 34.69330653095179], [-77.4111297362262, 34.6931712336633], [-77.4111432054045, 34.69308989209454], [-77.41106675111209, 34.69286963898779], [-77.41125809779251, 34.6927599607962], [-77.41127679978788, 34.69266357359261], [-77.41128747944269, 34.69258336303952], [-77.4112980971453, 34.692531246623375], [-77.41123515145708, 34.69243178150721], [-77.41118325848375, 34.69240366384562], [-77.41096417157739, 34.69227463408791], [-77.41096140890994, 34.69227303195431], [-77.41096079087745, 34.69227265057625], [-77.41052339994631, 34.692009393559374], [-77.41048520802367, 34.691701850299864], [-77.4103910111044, 34.69151497650937], [-77.4104734692486, 34.691476702420104], [-77.4105815621532, 34.69109244067201], [-77.410531948658, 34.69100517289569], [-77.41056687071342, 34.69088132761067], [-77.410625194427, 34.690478682554186], [-77.41054028467538, 34.69021696678736], [-77.41056067867311, 34.689896992316925], [-77.41054543175476, 34.689768474551286], [-77.41054879086846, 34.6896132747707], [-77.41049688300572, 34.68944856101106], [-77.41047494189642, 34.6893515334009], [-77.41046973229189, 34.68930605374393], [-77.41045842926954, 34.68920769370831], [-77.41040497581079, 34.688934373749134], [-77.41039813652007, 34.68872188507475], [-77.41039599206346, 34.688690464784166], [-77.41038488932426, 34.688496407468065], [-77.41036535195107, 34.68843085478269], [-77.41030755221607, 34.68821278060878], [-77.41028244514219, 34.688122286219745], [-77.41027815805631, 34.688094584850475], [-77.41026216385629, 34.68804611139058], [-77.41014870229091, 34.68770224193234], [-77.410033343331, 34.68747600405263], [-77.41019048173524, 34.68727315538199], [-77.41019795811413, 34.68723535020582], [-77.41023814277767, 34.687022590263766], [-77.41024174275519, 34.68698980823957], [-77.41024480139698, 34.68698793088014], [-77.41025436493938, 34.686966573095674], [-77.41033865307493, 34.6867673667976], [-77.4103685322789, 34.686717849731394], [-77.41037484241693, 34.686477263440054], [-77.41039756032623, 34.686259395292666], [-77.41040454309223, 34.686208097673905], [-77.41040149908207, 34.68612201830034], [-77.41038752484246, 34.68592258346488], [-77.41036885721869, 34.68582502352853], [-77.410354811092, 34.685513248039804], [-77.41033285506855, 34.685393697405694], [-77.41029749417862, 34.68533196180613], [-77.410347603192, 34.68528572023438], [-77.41034889475989, 34.68494066116991], [-77.41028977796717, 34.68477014311697], [-77.41034549163788, 34.68453412100223], [-77.41034663790016, 34.68423092145469], [-77.41046407282445, 34.683999922128976], [-77.41016808454592, 34.68360932014694], [-77.4105225074878, 34.683327378819754], [-77.41104970596314, 34.68311357689249], [-77.41144705888337, 34.683343386486], [-77.41160644078165, 34.68340395602534], [-77.41166405814006, 34.68349931922606], [-77.4120532407606, 34.6835867683942], [-77.41217775962991, 34.68364397783848], [-77.41249610739352, 34.68359854838163], [-77.41251600493095, 34.68359556457431], [-77.41252110479174, 34.68358811972891], [-77.41248590761732, 34.68330214605594], [-77.41243852399381, 34.68317622198618], [-77.41239652959959, 34.68288844041264], [-77.41219351494433, 34.682385739814954], [-77.41195712700082, 34.68199888754888], [-77.41235587677892, 34.681837420818404], [-77.41255119009826, 34.681647649997984], [-77.41266977650923, 34.68160274241946], [-77.41278047781098, 34.6814483257881], [-77.41279541769379, 34.681434193361056], [-77.4128839084229, 34.68120501094706], [-77.41288393077798, 34.68120496954886], [-77.41288393685011, 34.68120492572675], [-77.41294364844939, 34.68095691208853], [-77.41268302795805, 34.680876305302604], [-77.41265772302135, 34.68087981721311], [-77.41262250913375, 34.68086771815044], [-77.41236475066987, 34.68078509338921], [-77.41202808164769, 34.68066936448284], [-77.41180351116336, 34.68051033013326], [-77.4114663060657, 34.68014978961785], [-77.411356061186, 34.68005703461202], [-77.41107466714821, 34.67974172393346], [-77.41079147450273, 34.67957942575132], [-77.41067239899078, 34.6794495607121], [-77.4106338870676, 34.67929937248972], [-77.41009757308888, 34.67879668180758], [-77.40979929355011, 34.67858002252868], [-77.40949872923788, 34.678153823746825], [-77.40905506872886, 34.677628606570316], [-77.40897676338167, 34.67747889429583], [-77.40887531068257, 34.67734519162523], [-77.40853914894154, 34.67709031974289], [-77.40834397616202, 34.67696726424688], [-77.40823223757067, 34.67689681265232], [-77.40796850199926, 34.676689206458335], [-77.4078624314033, 34.67641742015615], [-77.40779717646079, 34.67618563000436], [-77.4077897919404, 34.676067533115805], [-77.4077338413469, 34.67577286890322], [-77.40798676429846, 34.675988082741085], [-77.40831790442226, 34.675693240825495], [-77.40831874002738, 34.675233378188075], [-77.40833003135931, 34.67513835927133], [-77.40830930692336, 34.67507930025369], [-77.40830433444489, 34.674891452015935], [-77.40825475542346, 34.674209377646235], [-77.40814024147816, 34.67395368018946], [-77.40844291626452, 34.67323819638748], [-77.40851425410504, 34.672966332114086], [-77.40866004777732, 34.67279902508068], [-77.40891142840218, 34.67279496932826], [-77.4090688022028, 34.67260129898001], [-77.40916414030616, 34.67249096300656], [-77.40927715176358, 34.672312262095666], [-77.40941042731913, 34.672161742478735], [-77.40941970672826, 34.67214604114693], [-77.40951337793095, 34.67195055833148], [-77.40954595476597, 34.67188532467439], [-77.40954205503633, 34.671648687600296], [-77.40961753447154, 34.67137278866073], [-77.40977783970553, 34.67117208821785], [-77.40991861849534, 34.67111720003877], [-77.4101098354384, 34.67075737783788], [-77.40993022680352, 34.67066630045202], [-77.40957638259334, 34.670498564420505], [-77.40933628472004, 34.67045842032869], [-77.40908440266526, 34.670500567660156], [-77.40893666187822, 34.67049509375488], [-77.40865109146729, 34.670539825314606], [-77.40860107747305, 34.67054765939734], [-77.40847869923536, 34.67071738463682], [-77.40835122255173, 34.67079740392261], [-77.40832868865124, 34.670830983658135], [-77.40826626093933, 34.67092259216625], [-77.4082364285095, 34.670983686441254], [-77.40816090905517, 34.67112415163437], [-77.40817430725703, 34.6711699707375], [-77.40815192055409, 34.67121951993012], [-77.40804334017321, 34.67136738991929], [-77.40793055119792, 34.67160553503018], [-77.40791275712289, 34.67163755242355], [-77.40783136361712, 34.67170797626652], [-77.40754680125661, 34.67206859098951], [-77.4074462031526, 34.67230949674669], [-77.40673178973144, 34.67234245211658], [-77.40662280155999, 34.67245874716842], [-77.4062169624274, 34.67327415277187], [-77.40621424030206, 34.673279562960886], [-77.40621150873123, 34.673282259527845], [-77.40619184151916, 34.673335715700226], [-77.40603023898791, 34.67377429069001], [-77.40605389423607, 34.67381203985953], [-77.40647828300176, 34.67405780918686], [-77.40678418361215, 34.674219203230926], [-77.407151612442, 34.67444669333632], [-77.40738927123905, 34.6745704429402], [-77.40740779277596, 34.6748155792286], [-77.40742718112433, 34.67527117269624], [-77.40743149646416, 34.67538300398937], [-77.40729367908824, 34.67550299825378], [-77.40705878989486, 34.67581168525702], [-77.40688874348663, 34.67588668252229], [-77.40673682536864, 34.67618163812353], [-77.40675487427711, 34.67626444417542], [-77.40659648841833, 34.676363534554035], [-77.4064318906521, 34.676635677421274], [-77.40637034590272, 34.67668898895792], [-77.40627107949945, 34.67674669272038], [-77.40620507649554, 34.67684979900855], [-77.40623615508413, 34.6769215873053], [-77.40626786947139, 34.676945086143704], [-77.40639621934608, 34.67699323078473], [-77.40641217497028, 34.67699995062781], [-77.4066765932456, 34.67709943893194], [-77.40672693990594, 34.67711838192083], [-77.40701268039697, 34.67713901583552], [-77.40723378958984, 34.677313335636256], [-77.40738359632596, 34.677602750937915], [-77.40747235154785, 34.67776438988267], [-77.40782587100543, 34.67795901667206], [-77.40775158603137, 34.67829066884178], [-77.40785451661617, 34.678657418246665], [-77.40802297778049, 34.678769469743784], [-77.40800176530149, 34.678937352440094], [-77.4083087093084, 34.67930175837234], [-77.40843087717415, 34.67949198911847], [-77.4085230084668, 34.67967889770217], [-77.40873648012546, 34.68003735964893], [-77.4088510858121, 34.680209374322274], [-77.40888267612956, 34.68036389247476], [-77.40892697239227, 34.680485950205956], [-77.40901534318539, 34.68058719331225], [-77.40918419976457, 34.68070409958874], [-77.40944854535371, 34.68085281649854], [-77.40972026708418, 34.681065778353705], [-77.40982258910638, 34.68125194003048], [-77.40995232136837, 34.681535342824084], [-77.40998417912026, 34.6816986679838], [-77.41001000106893, 34.68187664407498], [-77.40979903110616, 34.682143961700234], [-77.40939699451611, 34.68218210322878], [-77.40936960032077, 34.682189670340385], [-77.40933670956605, 34.682200150220055], [-77.4089837431719, 34.68230665423099], [-77.40868764236026, 34.68241876543874], [-77.40861165059417, 34.682446155090574], [-77.40842391057706, 34.682439837832376], [-77.40824805187437, 34.68259954999775], [-77.40800137641662, 34.682575693982486], [-77.40780671729406, 34.68262578612588], [-77.40775429179817, 34.6827646247505], [-77.40758230911084, 34.68300687619016], [-77.40727496544903, 34.68287122272662], [-77.40704753646506, 34.68288026305713], [-77.40688674361098, 34.682814162299465], [-77.40669209884321, 34.682671111671034], [-77.40654370949416, 34.68251091618688], [-77.40634203468213, 34.68227038042379], [-77.40627957315255, 34.68217475932715], [-77.40622100415872, 34.68208509635595], [-77.40613300827026, 34.6821324017839], [-77.40604535667141, 34.68216654985494], [-77.40576310757908, 34.682275487747084], [-77.40549581804098, 34.682376376041105], [-77.40539241902344, 34.68241728496822], [-77.40522708100593, 34.68243929895314], [-77.40480742676817, 34.68254060115355], [-77.4046013125414, 34.68242846586598], [-77.40446631354963, 34.68239867478581], [-77.4042289603377, 34.68232531375012], [-77.40393569715513, 34.68225976889809], [-77.403921737304, 34.68225599482177], [-77.40362418905005, 34.68220084395848], [-77.40335650383393, 34.68205502223744], [-77.40333554346012, 34.682045221728316], [-77.40306376370224, 34.68192328700999], [-77.4028128853331, 34.68183543558005], [-77.40272896062352, 34.68180108335184], [-77.40247439739375, 34.68174564643928], [-77.40196503904293, 34.6812975707699], [-77.40196437524996, 34.68129668758684], [-77.40196383153176, 34.681295989575], [-77.40195993952744, 34.6812911722626], [-77.40166090839462, 34.6809769332187], [-77.40166922761583, 34.68091445841357], [-77.4014885743924, 34.68072446286323], [-77.40144726656655, 34.68061971417486], [-77.40125734164754, 34.68049071446397], [-77.40123916117484, 34.68047938789498], [-77.40099792789262, 34.68036080152541], [-77.40095878649237, 34.680341194246644], [-77.40050396965937, 34.680120497914324], [-77.40041673376953, 34.68000027599523], [-77.40001535513382, 34.67960610202577], [-77.39990233709993, 34.67956390780504], [-77.39986432937829, 34.67949463127129], [-77.39982819896981, 34.679431307427905], [-77.39985229557692, 34.6793393002744], [-77.39992429414579, 34.67890579860679], [-77.40001660256605, 34.678859838205504], [-77.40021081431561, 34.67845747102496], [-77.40020428361623, 34.67844466355871], [-77.40020958626853, 34.67842730011424], [-77.40018267925149, 34.67787795261539], [-77.40030844708745, 34.67752410048696], [-77.40039026446055, 34.677226327065235], [-77.40058512829904, 34.67720698569101], [-77.40076039468454, 34.67708365406513], [-77.40087750286085, 34.67700288936449], [-77.40093020944622, 34.67698736460271], [-77.40099504811909, 34.67689794673191], [-77.40105375278077, 34.67681536416335], [-77.40106109305233, 34.67676384959552], [-77.40104097080015, 34.67673941890297], [-77.40095949940019, 34.67658306180722], [-77.4008430384163, 34.676470583823075], [-77.4008051571419, 34.67644744407712], [-77.40077704932631, 34.6764359993941], [-77.40075866192578, 34.67640214303618], [-77.40042908493547, 34.67613481052577], [-77.40032674439003, 34.675886932941424], [-77.40025430807351, 34.67576138559918], [-77.40018145337388, 34.675640937132414], [-77.40030411029738, 34.6755887492451], [-77.40036508266164, 34.675268857331474], [-77.40038046397353, 34.675151457686084], [-77.40042155401525, 34.67503261786038], [-77.4005658532295, 34.67473879067806], [-77.40052754821674, 34.67464380039649], [-77.40061296158058, 34.674597516345244], [-77.40067369203808, 34.67441538791715], [-77.40067737084755, 34.67432875942396], [-77.40066152536129, 34.674252560536786], [-77.400617449509, 34.67411612596951], [-77.4005635055391, 34.67396363480805], [-77.40052584935847, 34.67386282775344], [-77.40050077756315, 34.673795709095074], [-77.40038305776937, 34.67348056671669], [-77.40037725218308, 34.67347848493163], [-77.40037871801596, 34.67347340575352], [-77.40037804590075, 34.67346481527491], [-77.40033327299221, 34.67327366706581], [-77.40028624768411, 34.673161460228414], [-77.40025599528344, 34.67308273837491], [-77.40010949008646, 34.67282000675322], [-77.40000491070973, 34.672574004802286], [-77.39988850333285, 34.672343376261814], [-77.39981065840271, 34.672156241700826], [-77.39961491869624, 34.671708361249564], [-77.39955272087285, 34.671590789281424], [-77.3995470984063, 34.671504822753825], [-77.39949047101668, 34.671264089419864], [-77.39946747004146, 34.67118002623644], [-77.39946034418924, 34.67113601515119], [-77.39942246107766, 34.6709020377478], [-77.39939572992213, 34.670763627899014], [-77.39939332460163, 34.67075204963526], [-77.39937398215982, 34.670699301968064], [-77.39933544663491, 34.670591998934434], [-77.39931018775722, 34.67054842515428], [-77.39908347127275, 34.67044755283361], [-77.3989599656156, 34.67039594635622], [-77.39871245052102, 34.6703999657105], [-77.39840604320386, 34.67028379183909], [-77.39816825421724, 34.670066693806035], [-77.39785957934609, 34.669619084979466], [-77.39769857696356, 34.6694762138288], [-77.39750959642815, 34.66931874517458], [-77.39734582219802, 34.669251069149496], [-77.39715686353223, 34.66913440391258], [-77.39703459124058, 34.669070551052016], [-77.39663770478917, 34.66884054334204], [-77.39659834896148, 34.66885059769135], [-77.39655122206408, 34.66877845965923], [-77.39657199357903, 34.6687330004825], [-77.39659074482324, 34.66836304394808], [-77.39665225377249, 34.668254676447226], [-77.39661524215587, 34.66805541299479], [-77.39659468391217, 34.66791508497871], [-77.39639216755607, 34.66760445112138], [-77.39637191349208, 34.66756168564813], [-77.39634272610019, 34.6675213350085], [-77.39619600787212, 34.6673692819642], [-77.39609365126896, 34.667275273853704], [-77.39594360561503, 34.66744738912743], [-77.39587637206341, 34.66759452788895], [-77.39566498446149, 34.66764909172602], [-77.39552358653961, 34.66776552103082], [-77.39505776345638, 34.66769637096204], [-77.39500564491465, 34.667713323930585], [-77.39499064169458, 34.667691483540395], [-77.3947137572558, 34.66761503559933], [-77.39469458612268, 34.66759180596293], [-77.3944666069333, 34.667532362338356], [-77.39441300955943, 34.66754732789649], [-77.39433492083968, 34.66751865778498], [-77.39392497896239, 34.66739427195668], [-77.3938269906301, 34.667358501320365], [-77.39376960658521, 34.667308123846055], [-77.39361250744994, 34.66725704227829], [-77.39354261352315, 34.667234297952874], [-77.39346991177344, 34.66720996207867], [-77.39332568813437, 34.667161796493176], [-77.39324300922034, 34.6671626486211], [-77.39313838981712, 34.667125073652684], [-77.39276132049793, 34.66698647415774], [-77.3926635111567, 34.66695132946328], [-77.39260559011927, 34.666900975702596], [-77.39243938663236, 34.66683374786029], [-77.39238253117091, 34.666815409870566], [-77.39228581191465, 34.66681118799153], [-77.39219206060085, 34.66680313830483], [-77.39205354030156, 34.66684517980238], [-77.39187246037974, 34.66686054658289], [-77.39180122433508, 34.66691184611781], [-77.39154142627893, 34.66702420658727], [-77.39147172741187, 34.66712095685416], [-77.39134625314534, 34.66707486309713], [-77.39121605468736, 34.66703417735607], [-77.39076495236405, 34.66686977248594], [-77.39028153809382, 34.6666696831134], [-77.39018823329971, 34.666648878077574], [-77.38997898436884, 34.666657476145936], [-77.38951778740454, 34.66675141044547], [-77.38942730392014, 34.66676831695588], [-77.38922184479146, 34.66677105260608], [-77.38897790835117, 34.66678116475191], [-77.38886334180611, 34.66679872296142], [-77.38877471277324, 34.66675894957703], [-77.38835260072172, 34.666735461764134], [-77.38829877854177, 34.6667312721523], [-77.38828411515186, 34.66673274299476], [-77.38826586048471, 34.66673246442851], [-77.38769258881969, 34.666709200411105], [-77.38729109505205, 34.66671890674742], [-77.38708743155257, 34.66673268641617], [-77.38682715798612, 34.6666819831414], [-77.38676416176123, 34.666677781112455], [-77.38648803176045, 34.66673630332498], [-77.3863601753321, 34.66664740246195], [-77.38622420103046, 34.66661435693004], [-77.38617910386338, 34.666589731997576], [-77.38600976437023, 34.66657048648263], [-77.38595579644465, 34.66656459617064], [-77.38593949662814, 34.66656442862726], [-77.38591630317198, 34.666564463313925], [-77.38563889379827, 34.66656935129845], [-77.38542931805054, 34.666575842826845], [-77.38533700706832, 34.666578702178086], [-77.38521145630828, 34.666577875516346], [-77.38472696950518, 34.66661901168286], [-77.38445582894816, 34.66654628237026], [-77.38444262082542, 34.66654729030532], [-77.38415980119792, 34.666511423416594], [-77.38387107966517, 34.666377376098986], [-77.38370317741644, 34.6663282744956], [-77.38362146365823, 34.666304377799925], [-77.38338877011641, 34.66617615872135], [-77.38338699493963, 34.66608115148597], [-77.38314348848718, 34.66599008633106], [-77.38311694838197, 34.66599124021314], [-77.38311421630098, 34.66599008701194], [-77.38306408024712, 34.66595092525351], [-77.38259943869635, 34.66570178261554], [-77.38256056444865, 34.66563121710394], [-77.38257145965157, 34.66558138944315], [-77.3823633893212, 34.66548402208784], [-77.38230610571526, 34.66543292519084], [-77.38220370472226, 34.665388286251044], [-77.38210713415032, 34.6653359664588], [-77.38194763469984, 34.665314750289866], [-77.38175974413946, 34.665205666153085], [-77.38163708913439, 34.66515966032463], [-77.38159519398022, 34.665037895306604], [-77.38141649022964, 34.66493528804474], [-77.38137621473112, 34.664771031012734], [-77.38153340048476, 34.66459432412838], [-77.38167231728829, 34.66434394262428], [-77.38172636801087, 34.66423545789236], [-77.3817593465534, 34.66415650179427], [-77.38188536075884, 34.66403695187867], [-77.3820800473907, 34.66380266154367], [-77.38221891162063, 34.66368029207097], [-77.38240357667802, 34.66345133054952], [-77.38246544338122, 34.66333872160296], [-77.38246253982962, 34.663159371693645], [-77.38253783766113, 34.662932252608336], [-77.38288924607873, 34.66222367768263], [-77.38287930245495, 34.6621272276204], [-77.38296938403866, 34.66203859099765], [-77.3830936484226, 34.661932781562825], [-77.38366654566885, 34.66138034993107], [-77.38408373165917, 34.66130354289399], [-77.38413569996573, 34.66146694948627], [-77.38431935515071, 34.661516335169665], [-77.38440321206451, 34.66154321074383], [-77.38483935480724, 34.661510059897424], [-77.3849910608742, 34.661579331147834], [-77.38524341222924, 34.661593100246925], [-77.38534035478642, 34.66158769643886], [-77.38559148612414, 34.6615720591142], [-77.38577392162892, 34.661485214958724], [-77.38586274233272, 34.66141261692905], [-77.38597279401019, 34.66121414490888], [-77.38615643444153, 34.661034855383036], [-77.38644968335993, 34.66067537875732], [-77.38646497235024, 34.66065900817691], [-77.3864606136443, 34.660637665007265], [-77.38643865657956, 34.660278024469015], [-77.38614898662637, 34.660215091803096], [-77.38599535239126, 34.66017860750729], [-77.38559667351626, 34.660138051074284], [-77.38490258686059, 34.65989921485097], [-77.38488426382975, 34.65989159915644], [-77.38487599656143, 34.659888744531514], [-77.38485706615623, 34.65988225457088], [-77.38389818383487, 34.65954732000153], [-77.38348651828102, 34.65934992149826], [-77.38263372666975, 34.658523343337905], [-77.38237721705192, 34.657964597406604], [-77.3822843519399, 34.6577273816584], [-77.38222950998554, 34.657431772778544], [-77.38241137997176, 34.6571928127586], [-77.38239528985237, 34.656919471781116], [-77.38238683162794, 34.65686924709096], [-77.38237256102055, 34.65682457424368], [-77.38228631843083, 34.65657219453811], [-77.38225576951865, 34.65648141629478], [-77.38223984788634, 34.6564674539689], [-77.38208910883499, 34.656237094169754], [-77.38205180937166, 34.65607130947042], [-77.3820139349117, 34.65589687922004], [-77.38191190802976, 34.655439044591574], [-77.38187809915027, 34.6552511764673], [-77.38184516968775, 34.65507255579775], [-77.38183938914322, 34.65443353404923], [-77.38181997141973, 34.65441514037745], [-77.38183236671449, 34.6543936942021], [-77.3818222421217, 34.65426911208899], [-77.38178031659919, 34.65367822529253], [-77.38177740660402, 34.653576962840944], [-77.3819158786359, 34.653137743680794], [-77.38191790620806, 34.65313561419484], [-77.38218550354917, 34.652893737637754], [-77.38229411754914, 34.65282360919957], [-77.38270784820348, 34.65271229778459], [-77.38279609959395, 34.65274588423929], [-77.38294638922753, 34.6527650664887], [-77.38332389059329, 34.6526405632376], [-77.38344086434691, 34.65276760405728], [-77.38348878204455, 34.652888381929706], [-77.3835393091127, 34.65291250711957], [-77.38370256238865, 34.6530393021487], [-77.38399125506916, 34.65327233258941], [-77.38421363740521, 34.653424529155984], [-77.38450499834163, 34.65355183367458], [-77.38434164786355, 34.65322411398226], [-77.38426881587085, 34.65306624988818], [-77.38417469998012, 34.65282507039036], [-77.3840698768056, 34.65271115113019], [-77.38395117682501, 34.65254653761422], [-77.38374488558178, 34.65250944909874], [-77.3837072283857, 34.65250047546442], [-77.3836861400417, 34.65249721175172], [-77.38359562987519, 34.65248273898065], [-77.38341777720088, 34.65245447790755], [-77.38337644021333, 34.652447897187386], [-77.38283458889177, 34.652461098126146], [-77.38273452629716, 34.65244031267254], [-77.38248388001917, 34.65233368411686], [-77.38233080760386, 34.652310334786996], [-77.38206924512096, 34.65231675448757], [-77.38176983885724, 34.65227291199762], [-77.38170972835911, 34.65189820672558], [-77.38172475923602, 34.651625637819684], [-77.38170435621724, 34.65125346995151], [-77.38166536975635, 34.65106027652709], [-77.38143056222714, 34.650736032022515], [-77.38139775804694, 34.650711913423855], [-77.38105180705291, 34.65044532680117], [-77.38086245718347, 34.650326716708946], [-77.38056714939567, 34.65005971544674], [-77.38030178907704, 34.64990105848451], [-77.37982184196497, 34.64923848107411], [-77.37950018104115, 34.64882607876058], [-77.37946717806312, 34.64879222164745], [-77.37943548526182, 34.648779507648186], [-77.37900783390785, 34.64855342692301], [-77.37873206882382, 34.648466444291], [-77.3781543593927, 34.64794660964218], [-77.37795946857452, 34.647809897450664], [-77.37774297646955, 34.64761277937557], [-77.37733495470485, 34.64743588821558], [-77.37726599331562, 34.64740895927693], [-77.37723679048413, 34.64740113649015], [-77.3771731847112, 34.647379932537945], [-77.3768931049811, 34.64728438907679], [-77.37677175617728, 34.64723933518514], [-77.37658281167188, 34.647162670322075], [-77.37654719127028, 34.64715657344271], [-77.37649953279877, 34.647128793331206], [-77.37628538589809, 34.64705412206045], [-77.3760356690999, 34.64698573110721], [-77.37587045030479, 34.64697583111008], [-77.37578217053434, 34.646902293939114], [-77.37552905372053, 34.646840270025024], [-77.37552275479489, 34.646839151836645], [-77.37524172422681, 34.646824247011146], [-77.37519843681511, 34.64681854580776], [-77.37512365848382, 34.646801886912634], [-77.37488620797173, 34.64685796901841], [-77.37470309295155, 34.64674260301121], [-77.37470242065785, 34.64674239661088], [-77.37456480791842, 34.64685185139081], [-77.37444050185714, 34.64683153665192], [-77.37407214024958, 34.64684390461161], [-77.37393790989292, 34.6469185807443], [-77.37376752464814, 34.64687068012401], [-77.3735122262985, 34.64680443038375], [-77.373219168076, 34.64652920959819], [-77.37310889985983, 34.64645466421932], [-77.37304612723669, 34.646337738508976], [-77.37282647782227, 34.646169039384255], [-77.37273393981336, 34.64604869375796], [-77.3726455526845, 34.64597081508827], [-77.37243856100514, 34.645832556406056], [-77.37226422237634, 34.645830495292856], [-77.3720490552886, 34.64563083378826], [-77.37211795136429, 34.645331689038706], [-77.37211624029328, 34.64519958238357], [-77.37219603869195, 34.645071043177076], [-77.37225893899733, 34.644940469644155], [-77.37231089707686, 34.64484470413878], [-77.37235957391087, 34.64474410594156], [-77.3723161855839, 34.64457856256769], [-77.37219197372502, 34.64434514250509], [-77.37210442722777, 34.64398506662159], [-77.37210523997382, 34.64393505779388], [-77.37216301364847, 34.643733122700404], [-77.37232047616332, 34.643061432445165], [-77.37234756052048, 34.64287790780007], [-77.37229176121146, 34.64232903771099], [-77.37228068743786, 34.64222287951959], [-77.37225056898272, 34.64212041080525], [-77.37204923302923, 34.64166068063448], [-77.37200029460755, 34.64141741545665], [-77.37181966462224, 34.64116859111839], [-77.37175793364463, 34.6410889778325], [-77.37167876035709, 34.641039621464735], [-77.37141158559244, 34.64073181467916], [-77.3713651577451, 34.64071836867884], [-77.3712994505396, 34.64066977202905], [-77.3712603348351, 34.64052947080592], [-77.37114749250803, 34.64026771885252], [-77.37107261468827, 34.64020273686435], [-77.37115103381873, 34.63984265106606], [-77.37118055092313, 34.639605610232124], [-77.37139686358532, 34.639269363536], [-77.37170963833432, 34.63924987363003], [-77.37197032317962, 34.638875571896136], [-77.3721856535181, 34.63869393872153], [-77.37228629369481, 34.63872170357416], [-77.37257993884198, 34.63874288008658], [-77.37287514003481, 34.63863854869817], [-77.37297427355938, 34.638633121553354], [-77.37303101442478, 34.63866173851864], [-77.37323925415706, 34.63855358775464], [-77.37336865224566, 34.63837507522818], [-77.37344347225039, 34.63831943521621], [-77.37376307723589, 34.63795429207182], [-77.37397191093575, 34.637963100632945], [-77.37431615834237, 34.63794225450147], [-77.37455170152089, 34.6378488143543], [-77.3749290299987, 34.638043173771656], [-77.37494594277207, 34.63804126819045], [-77.3749640010244, 34.638039371024234], [-77.37514309754562, 34.63801923148258], [-77.37531147405844, 34.63800087233686], [-77.37534025196143, 34.637998044017344], [-77.3756212477895, 34.63792527401884], [-77.37572065639132, 34.637895968511955], [-77.37573458091845, 34.6378814199146], [-77.37575161809099, 34.63788815153431], [-77.37607022034466, 34.6377974296601], [-77.37612890438308, 34.63778071930049], [-77.37622603984198, 34.63773359406551], [-77.3763717006077, 34.63765402849667], [-77.3765232610192, 34.63755184706322], [-77.37686420827522, 34.63732169822601], [-77.37687458510287, 34.63727385610771], [-77.37691763073613, 34.637264580349736], [-77.3769667541079, 34.637254036961735], [-77.37705675157389, 34.637293965958335], [-77.37761709136919, 34.63730921327987], [-77.37770619532074, 34.63734900165184], [-77.37787622611071, 34.637417393681424], [-77.37799253015766, 34.63746752916093], [-77.37810044942363, 34.637506842873556], [-77.37815047052388, 34.637507132726526], [-77.37827078173737, 34.637543664108975], [-77.37849472262516, 34.6375920739623], [-77.3787597526976, 34.637612412680724], [-77.3790459773427, 34.63785656366652], [-77.37916881626597, 34.637962059365826], [-77.37928318470959, 34.6381333839779], [-77.37940188948997, 34.63822985788078], [-77.37953482754584, 34.638364254704065], [-77.37954410359055, 34.63842165325142], [-77.37967739467811, 34.638513046214925], [-77.37977135484802, 34.63850002968094], [-77.3800588767613, 34.63854598819199], [-77.38007168796189, 34.63853581197239], [-77.38009230456444, 34.638532766411366], [-77.3808509807994, 34.638435630381494], [-77.38086030772217, 34.638428161109985], [-77.38090953921423, 34.638437235374106], [-77.38156864789649, 34.63842869552], [-77.38164890091286, 34.638439233135315], [-77.38220291732245, 34.638250899597374], [-77.38269164344848, 34.637604841888674], [-77.38301349783974, 34.63666512972361], [-77.38296987805028, 34.63644214392775], [-77.38243787967069, 34.63647940201888], [-77.38240370653804, 34.63648692232335], [-77.38191947956501, 34.63659348226176], [-77.38170388830883, 34.63668336479442], [-77.38164926242649, 34.63667671069295], [-77.38163123415468, 34.636654428137454], [-77.38161128264099, 34.63663788511362], [-77.38125501459221, 34.63647955557341], [-77.38106293085545, 34.63649914885271], [-77.38086073998487, 34.63641525058094], [-77.38060938100365, 34.63620380681337], [-77.38034527699331, 34.635971145279896], [-77.38019622844628, 34.635859159756244], [-77.38007230801753, 34.63577266908028], [-77.37955207819144, 34.63579645568238], [-77.37940206632453, 34.63525789595214], [-77.37936318679002, 34.63517809580725], [-77.37928402654455, 34.634542701150885], [-77.37926216376118, 34.6344524896853], [-77.37926161533628, 34.634429003976905], [-77.37926210952486, 34.63440529745429], [-77.37925505348873, 34.6336122596029], [-77.3792235190841, 34.6335853671224], [-77.3792373565749, 34.633532861968625], [-77.37893849893626, 34.63314972666472], [-77.37889011244506, 34.633025631864754], [-77.37879905441471, 34.63289547524798], [-77.37855665067143, 34.632832306133494], [-77.37853230999193, 34.632796600918425], [-77.37849591529977, 34.6327194507989], [-77.37845931893726, 34.63280694184233], [-77.37821593691119, 34.63288138450774], [-77.37779745608375, 34.63303875605872], [-77.37770726242705, 34.633150790593845], [-77.37756316034779, 34.633130588595414], [-77.37754375732263, 34.63297820740448], [-77.37705956709097, 34.63289634936332], [-77.37691877164268, 34.63293897081867], [-77.37670617383704, 34.63286990009263], [-77.37635163083364, 34.63291151010869], [-77.37623689751081, 34.6327418797396], [-77.3761302879317, 34.632715107591444], [-77.37603828137341, 34.63267139836144], [-77.37583274070892, 34.63269594008089], [-77.37573652705059, 34.63238983834955], [-77.37573621322015, 34.63238943150934], [-77.37573610744738, 34.63238917136056], [-77.37549023131788, 34.63226510136599], [-77.37543339093355, 34.63168229551348], [-77.3753891853652, 34.6315902911615], [-77.37537579904925, 34.63155590328054], [-77.37534210940024, 34.63143422203998], [-77.37521802275226, 34.63119038217877], [-77.37523227657678, 34.63106994469419], [-77.37518971326134, 34.63093415978352], [-77.37512561331215, 34.63077913098041], [-77.37494812109156, 34.63047880077905], [-77.37486818313475, 34.630477727434716], [-77.37487273464318, 34.63039099087774], [-77.37478388732643, 34.63022685225987], [-77.3747568768043, 34.63018914952109], [-77.37458946255134, 34.630007227694975], [-77.37457249481182, 34.62998975972899], [-77.37455400932569, 34.62997297803676], [-77.37437307679124, 34.62980872213256], [-77.3742552995281, 34.62973360852693], [-77.37415983349318, 34.62969640876041], [-77.37411613433864, 34.62969789222245], [-77.37376562231691, 34.629544122879295], [-77.37351304556796, 34.6295851012855], [-77.37351308304761, 34.62931312226258], [-77.37346100810504, 34.628992411374774], [-77.3734537131355, 34.628897113267136], [-77.37344979166585, 34.628813467267136], [-77.37337168156041, 34.628525799836005], [-77.3733587419874, 34.62848623085892], [-77.37308175609293, 34.62841380998276], [-77.37297747793471, 34.62837160242165], [-77.37239457605249, 34.62777595849694], [-77.37297787835607, 34.62710597903883], [-77.37318959191322, 34.62704032137955], [-77.37376643797, 34.62688341911507], [-77.3739255122342, 34.62687767404576], [-77.37416069576086, 34.62683923534594], [-77.37434479128325, 34.626872283524804], [-77.37436865759486, 34.62686651088498], [-77.3745549404133, 34.62683749790381], [-77.37457398787498, 34.62682525676845], [-77.37470123464597, 34.62675216674903], [-77.37475210506085, 34.62669345109678], [-77.37488115534498, 34.62656873721499], [-77.3748925595826, 34.626506010461384], [-77.37494929984096, 34.6264444449437], [-77.37505145587124, 34.62622959321675], [-77.375343636234, 34.62611823327428], [-77.37539245715129, 34.62607053513544], [-77.37548740756134, 34.625787024238456], [-77.3760704793005, 34.62554831641483], [-77.3761071339911, 34.62551595053876], [-77.37613228760962, 34.62550919585577], [-77.37615401454426, 34.62551288513814], [-77.37637915362711, 34.625345099839876], [-77.37652660958976, 34.625202414685134], [-77.37660690866976, 34.62513294357775], [-77.3767689532623, 34.625023147208964], [-77.37692093856084, 34.6248590500789], [-77.37710617428752, 34.62477511138488], [-77.37712114843015, 34.62476343776663], [-77.37731523646556, 34.62462005583002], [-77.37749610725271, 34.624493841640955], [-77.37754255252595, 34.62430730391632], [-77.37770962060802, 34.62404342713773], [-77.3782696771002, 34.62377932943071], [-77.3784981942299, 34.62359537608266], [-77.37860513279398, 34.62360012409649], [-77.37905219739372, 34.62342055092757], [-77.3792867175912, 34.62331811634556], [-77.37953598760909, 34.62277003545087], [-77.38007534336653, 34.6225810725137], [-77.38021842417216, 34.62255749364164], [-77.38046958742798, 34.62248871153608], [-77.38077170486062, 34.62242290091401], [-77.38086382994886, 34.622399152804675], [-77.381042409112, 34.62247702901307], [-77.38165224546292, 34.62252918207867], [-77.38194672085532, 34.62268634014235], [-77.3821952234234, 34.62270338936255], [-77.38244068455238, 34.622555314660325], [-77.38265694511307, 34.62266824741368], [-77.382942239353, 34.622551096370756], [-77.3832291386739, 34.62250581100423], [-77.38358473406613, 34.62234291945567], [-77.38359855092264, 34.62231416937088], [-77.3836460918534, 34.62230963702573], [-77.38401765317877, 34.62212823662103], [-77.38410008421035, 34.622179867395715], [-77.38428920552201, 34.62210928610179], [-77.38441188631882, 34.622055961780845], [-77.38447384165157, 34.622002509153745], [-77.38451330907446, 34.62189373681688], [-77.38461035816101, 34.62177055255975], [-77.38463753628184, 34.621584998279836], [-77.38480623661444, 34.62132416529177], [-77.38493998039192, 34.621017899450436], [-77.38520053016667, 34.62087874560845], [-77.38527728800578, 34.62082530552618], [-77.38549420415633, 34.62068572691332], [-77.38559478873246, 34.620615091226156], [-77.38584671519037, 34.62047193875299], [-77.38598904008016, 34.62037973127602], [-77.38604369353465, 34.62034913832892], [-77.38618742524174, 34.620269566199646], [-77.38632822150846, 34.620189973139816], [-77.38638329127618, 34.62013127505526], [-77.3865862839641, 34.62000611451438], [-77.38677752722005, 34.619965178706124], [-77.38708241315749, 34.61981222898442], [-77.38717176579172, 34.61977099480049], [-77.38723053169788, 34.61975794223761], [-77.38756598235273, 34.619713625039395], [-77.38788737318274, 34.61959997498013], [-77.387935084686, 34.61956603602226], [-77.3879602155186, 34.61953532973242], [-77.38799658191064, 34.61954506426245], [-77.38835443300846, 34.61945814194677], [-77.38851959994449, 34.61950884140218], [-77.38865219987323, 34.61959357427383], [-77.38874859500177, 34.619793169189094], [-77.38892036380908, 34.62011516261204], [-77.3889875078784, 34.6202905270826], [-77.38894696815171, 34.62051012176609], [-77.38874841510638, 34.62115373141687], [-77.38874534319213, 34.6211712647736], [-77.3887435141655, 34.62117483437523], [-77.38833164138637, 34.621634546545415], [-77.38828109980003, 34.621666057419446], [-77.38795987187625, 34.621964758344106], [-77.38791040856762, 34.622090805115604], [-77.3878529357713, 34.622152341312244], [-77.38780486346477, 34.62232615603028], [-77.3879597933902, 34.62252423152256], [-77.38820920467111, 34.62268148808764], [-77.38836711661082, 34.62292735986911], [-77.38854995726203, 34.6231144608608], [-77.38853284078087, 34.623328039480825], [-77.38874812384142, 34.62337906024081], [-77.38886685383133, 34.62340776508035], [-77.38899165153234, 34.623424193233575], [-77.38908645931711, 34.623460520793294], [-77.38914233695829, 34.62347315061087], [-77.38929193211044, 34.62348207530425], [-77.38940140099571, 34.62348184236538], [-77.38939097739777, 34.62336114514246], [-77.38938233717552, 34.62320558586466], [-77.38933949201339, 34.623128543065945], [-77.38927958524039, 34.62307263907795], [-77.38919267702087, 34.62286249030061], [-77.38916500643445, 34.62281234666528], [-77.38914242686056, 34.622757083526665], [-77.38902405594001, 34.62253560993795], [-77.38888812271809, 34.62242769169255], [-77.38889782606361, 34.62216278084513], [-77.38885865525589, 34.62200737165598], [-77.38891145354995, 34.62182407497242], [-77.38892068702435, 34.62157386234443], [-77.38903431806304, 34.62144087090245], [-77.38914261010919, 34.62130651188913], [-77.38934216745074, 34.621298183067815], [-77.38953684001936, 34.621184653327504], [-77.389622031718, 34.62113993854598], [-77.38973395860238, 34.62108957180689], [-77.38992924767199, 34.62100587395378], [-77.38993107548937, 34.62100503804201], [-77.38993458460727, 34.621003136130156], [-77.38993779428675, 34.62099543846835], [-77.39005083809583, 34.62077409285587], [-77.38998858539003, 34.62063267433904], [-77.38997646884492, 34.62057252985443], [-77.3899761643325, 34.620524073497116], [-77.3897513600545, 34.62041135064941], [-77.38953694964896, 34.62028985292124], [-77.389451093774, 34.62031616267452], [-77.38941982504949, 34.62022820665302], [-77.38946797630952, 34.62014696119404], [-77.3895369720139, 34.62010803875941], [-77.38965838535887, 34.62006305813249], [-77.39003246596357, 34.619824369522675], [-77.39001139124139, 34.61963203158984], [-77.39008307455545, 34.61928345659538], [-77.39004630031616, 34.618988032700514], [-77.39032556510678, 34.61857726296816], [-77.39038469060966, 34.61845450237201], [-77.39101707653535, 34.618404042261254], [-77.39111398926025, 34.618382321318045], [-77.39121856198878, 34.61838324638673], [-77.3917725538407, 34.61833058951901], [-77.39190237746769, 34.618521864798396], [-77.39241770072043, 34.61839185336337], [-77.39268347141625, 34.618908546227274], [-77.39269074458322, 34.61893254521557], [-77.39310172879382, 34.61925470349252], [-77.39347915238426, 34.61891076844541], [-77.39352659650844, 34.618838069222896], [-77.39358487569513, 34.61877857294325], [-77.39390896347908, 34.618345578840064], [-77.39394711569915, 34.61830176967294], [-77.39407671491695, 34.618077474631036], [-77.39407535572975, 34.618065779491474], [-77.39406294410318, 34.618064627581276], [-77.39387342147015, 34.617991578727526], [-77.39377391620121, 34.61800934448986], [-77.39368240594679, 34.617915369478055], [-77.39354900469202, 34.617859457640456], [-77.39347923577952, 34.61782625126612], [-77.39310566633007, 34.6175517677467], [-77.39308506143789, 34.617540528418154], [-77.39298501163563, 34.61748359464276], [-77.39288797150908, 34.617442262078455], [-77.39286574258611, 34.61742021479344], [-77.3928255002294, 34.61740207356351], [-77.39269088211731, 34.617343065051564], [-77.39257968182214, 34.61734500098515], [-77.39234323983686, 34.61725932424959], [-77.39229669519197, 34.617248112452415], [-77.39194751561442, 34.61726789435677], [-77.39190249913773, 34.617256233495176], [-77.39171524024236, 34.617127002818464], [-77.39168976840199, 34.61712440676804], [-77.39150830289321, 34.6172646954277], [-77.39123109698606, 34.61729366520971], [-77.39111409934091, 34.617340659200245], [-77.3910227450916, 34.6173513197063], [-77.39071988848696, 34.617475096952525], [-77.39070184939911, 34.61749597611075], [-77.39046249060297, 34.61767784785178], [-77.39032565253763, 34.61781601629842], [-77.39009809084413, 34.617828110010876], [-77.38993144525966, 34.61789049603716], [-77.38969708694695, 34.61781297282198], [-77.38953725463641, 34.617825048645855], [-77.38939440839927, 34.61783831192939], [-77.3893966835405, 34.617684135131086], [-77.38916497283462, 34.6173165047873], [-77.38914859083795, 34.61729533206455], [-77.38914834911422, 34.61728974071554], [-77.38915555963708, 34.61686975962071], [-77.38914320810645, 34.61665371718669], [-77.38913021248312, 34.61646286956942], [-77.38913021434301, 34.61644884554037], [-77.38913021620503, 34.61643482151088], [-77.38913854070216, 34.61602819232879], [-77.38913379232655, 34.61602376190648], [-77.38913854206281, 34.61601796226801], [-77.38914329545584, 34.61598400228813], [-77.38917585387135, 34.61562814784585], [-77.38921099231521, 34.61558806483729], [-77.38938835248462, 34.61540179045895], [-77.38953757798804, 34.61524962328534], [-77.38960580272385, 34.615180053561424], [-77.38979469302971, 34.6150793481887], [-77.39032602469445, 34.614616977491565], [-77.39053372670581, 34.61474907309231], [-77.39088029212411, 34.6146706988975], [-77.39111441203951, 34.61442118756387], [-77.39145721591088, 34.614470421571134], [-77.39150859091139, 34.61445135597839], [-77.3915799258391, 34.61447423241479], [-77.3919027657269, 34.6145254648636], [-77.39205230861963, 34.61459277746388], [-77.39222284997632, 34.61464946813827], [-77.39229693464179, 34.6146689390764], [-77.39232353481864, 34.61468609594057], [-77.39247990632498, 34.61467699395953], [-77.39249403526463, 34.614569240384085], [-77.39251417984129, 34.61449666509248], [-77.3925082971668, 34.61446047230029], [-77.39247933661713, 34.61426771382389], [-77.39253277871018, 34.61400604775558], [-77.39255439641178, 34.6138323213042], [-77.39261518280348, 34.613741677805336], [-77.39269121000189, 34.613636023143236], [-77.39290220459345, 34.61335760017408], [-77.39294073368578, 34.613196195466905], [-77.39322914857851, 34.61315565400879], [-77.39347961170503, 34.61306856854222], [-77.39368358465104, 34.61304005534476], [-77.39387379056868, 34.613019741282386], [-77.39397728183297, 34.61309109769978], [-77.39426189874712, 34.61315500807169], [-77.3942679557959, 34.6131549515922], [-77.3942732647644, 34.61315417483794], [-77.39429035760097, 34.6131574282173], [-77.39460611992405, 34.61317222167017], [-77.39466212771069, 34.613208175073666], [-77.39482589937461, 34.613256602054676], [-77.39489338200859, 34.61324594840615], [-77.3950563025854, 34.61322022764569], [-77.39529294824992, 34.61318252294297], [-77.39545048176332, 34.613157338902944], [-77.39560350172198, 34.61313287494823], [-77.39584466437348, 34.613016998781376], [-77.39626915355866, 34.61290470097042], [-77.39663302134191, 34.61282884872148], [-77.39689324917254, 34.61292631610143], [-77.39702719256739, 34.6128851489868], [-77.39714456467578, 34.6128722215801], [-77.39722428015685, 34.61286348714138], [-77.39736319755411, 34.61277692301408], [-77.39742137096667, 34.612742714741465], [-77.39749557342545, 34.61269517148354], [-77.39750008958778, 34.612354723372135], [-77.39748951050663, 34.61227147356752], [-77.39751070679716, 34.612172210516015], [-77.39768770765725, 34.61168058335454], [-77.39800685448989, 34.61156624958784], [-77.3982097464088, 34.61153505251788], [-77.39833352714635, 34.61143391426045], [-77.39899808244748, 34.611399824538125], [-77.39927645320942, 34.611464420253895], [-77.39939224784399, 34.61147083783287], [-77.3994480535948, 34.61150428323374], [-77.39957480903831, 34.61154610955686], [-77.3997864134247, 34.611615407273675], [-77.39999175841811, 34.61168934972382], [-77.40018058026054, 34.61180064559101], [-77.40022085044583, 34.611834111485074], [-77.40029234660435, 34.611867174199276], [-77.40048871216874, 34.61193151928425], [-77.40057474863512, 34.61194029132132], [-77.4007409057415, 34.61198143881414], [-77.40077183316025, 34.611990021330364], [-77.40079046293805, 34.61198753575799], [-77.40096891799124, 34.612047236510925], [-77.40111277137231, 34.61201844125856], [-77.40112485582327, 34.61217164872437], [-77.40136309072173, 34.61233680320473], [-77.40148610092443, 34.61241161000463], [-77.40160976610889, 34.61252626642508], [-77.40175726896102, 34.6127780109853], [-77.40186101357173, 34.61280284714783], [-77.40215144420765, 34.61290759448777], [-77.40238859777277, 34.61300760941388], [-77.40279844746776, 34.613203920368136], [-77.402896862308, 34.613235970899176], [-77.40293980417889, 34.61335223434631], [-77.40337590201716, 34.61350002690132], [-77.40372815603138, 34.61341244354128], [-77.40403255865031, 34.61354713653651], [-77.40412233715017, 34.61354690685495], [-77.40434981304351, 34.61364967171402], [-77.40451652209579, 34.61373057812977], [-77.40457333663882, 34.6137357849987], [-77.40465106507892, 34.613785765296655], [-77.40503358408843, 34.61402280092908], [-77.4053049036836, 34.614203993519766], [-77.40559477992305, 34.61418650798484], [-77.40571737110193, 34.614481052596346], [-77.40609329521673, 34.614693944941315], [-77.40645863613186, 34.61476759279026], [-77.4064874819089, 34.61477667860191], [-77.40650375231678, 34.614774626383216], [-77.40688166984883, 34.614864633475754], [-77.4072426090182, 34.61511010346934], [-77.40750452179765, 34.615250615581225], [-77.40767007490874, 34.615336788014275], [-77.40796241691763, 34.61554051569445], [-77.40839145181181, 34.61579346069875], [-77.40843002070002, 34.61581855833357], [-77.40845849093343, 34.61583086893367], [-77.40852953265171, 34.6158500494533], [-77.40885269311656, 34.61599006090495], [-77.40895220926342, 34.61602992340916], [-77.40920585144188, 34.61605630147898], [-77.40924688493408, 34.616042706526585], [-77.40951485790761, 34.61605590131313], [-77.40962434679487, 34.61605811427109], [-77.40964107483454, 34.61607503558037], [-77.40989130164999, 34.6164261467342], [-77.40987329205021, 34.61660327003522], [-77.40982146244895, 34.61686080555397], [-77.40977995995024, 34.61701627001728], [-77.40979318501067, 34.61712576069055], [-77.40979473335125, 34.61728924222694], [-77.40983832804878, 34.617427521213145], [-77.40985332309789, 34.61747693055969], [-77.40986083688296, 34.61749199068376], [-77.40987582073274, 34.61753019753526], [-77.40994425987554, 34.61769223925204], [-77.4100354827332, 34.61790822396494], [-77.41014902186704, 34.617964980351346], [-77.4102003876055, 34.61807985007216], [-77.41017511862289, 34.618233852867164], [-77.41019532938608, 34.61833304818228], [-77.41036304734237, 34.618480951498306], [-77.41037109555603, 34.61854297300828], [-77.41073330497147, 34.61885208847363], [-77.410784529069, 34.6188872087235], [-77.41082400218426, 34.61889629534621], [-77.41136795793348, 34.61902378009206], [-77.41161243034375, 34.619104738260816], [-77.41185015990305, 34.619284014366684], [-77.41236439921529, 34.619465807703754], [-77.41239485637544, 34.61946790485757], [-77.41240088552482, 34.61946850334822], [-77.41241124153456, 34.619470199797775], [-77.41279509251115, 34.61950194207103], [-77.41308523579471, 34.61947382405183], [-77.41318929283477, 34.61949230510125], [-77.41350553150409, 34.61964166078605], [-77.41363889456743, 34.61964676414525], [-77.4138200783433, 34.61968025001751], [-77.41395921267683, 34.619680106414954], [-77.41397772726697, 34.61967508692509], [-77.41427591383783, 34.61961444321166], [-77.41435855964897, 34.61958812785369], [-77.41437191473887, 34.61958956158837], [-77.41437806329813, 34.61959307448814], [-77.41471402798118, 34.61949510830678], [-77.41476609946055, 34.61949361805104], [-77.41481217989178, 34.61948738975687], [-77.41492335874543, 34.61952097148968], [-77.41511732516805, 34.61953926461621], [-77.41516031086249, 34.61954775836798], [-77.41527512413616, 34.619593837596206], [-77.41555452897089, 34.619635033049576], [-77.41570129561747, 34.61967516838389], [-77.4157732127735, 34.6198228542106], [-77.41590211729873, 34.62017850543837], [-77.4159163853747, 34.620261733642046], [-77.41594886876807, 34.6203452617203], [-77.41602841974088, 34.620549532875096], [-77.41615898686379, 34.6206163194587], [-77.41626620126105, 34.62068370791408], [-77.41634316914804, 34.620822758079065], [-77.416622769123, 34.6208504942719], [-77.41681918303541, 34.6208574767499], [-77.41713156087566, 34.62071249545451], [-77.41741812533756, 34.62074315430515], [-77.41761188330338, 34.62073837503663], [-77.41791996329233, 34.62066228955082], [-77.41820635981927, 34.62086144498586], [-77.4183142187373, 34.62088263985387], [-77.41848521977707, 34.62094543391686], [-77.4185333384325, 34.62093405636701], [-77.41870840997538, 34.62081217799689], [-77.41902953874197, 34.62070509357598], [-77.41917757340859, 34.62068579820745], [-77.41949675689864, 34.62053050295798], [-77.41988384496273, 34.62051069846673], [-77.42028515487173, 34.62047882733884], [-77.42075296152088, 34.62045680316673], [-77.4210735490089, 34.62041720304005], [-77.42127890621286, 34.620504991653306], [-77.42179122103911, 34.620652158998], [-77.4218322062535, 34.620678358704], [-77.42186203062289, 34.62069079176599], [-77.42191371364072, 34.62069013361517], [-77.42217756314102, 34.620681092435106], [-77.42225621953907, 34.62062875362139], [-77.422461752916, 34.6205553124719], [-77.4226014557161, 34.6204824345096], [-77.42265037438762, 34.62044516591314], [-77.42269690033751, 34.62047124450923], [-77.42292240495709, 34.62045056645914], [-77.42365368500184, 34.62035170368506], [-77.42431095239803, 34.62032708887162], [-77.4247661513697, 34.62057451175548], [-77.42483521117538, 34.620600525513716], [-77.42485193989087, 34.620639261339534], [-77.42536416130362, 34.6208386367039], [-77.42538217818051, 34.62084621348409], [-77.42540600653251, 34.62085062126836], [-77.42554220998763, 34.620921024394434], [-77.42589789397786, 34.621079696361136], [-77.42592860721082, 34.62109255961597], [-77.42596490991366, 34.62111275622091], [-77.42647990952656, 34.62133295196571], [-77.42658143778502, 34.62144454252218], [-77.42681481544746, 34.62155689236981], [-77.42696239238722, 34.62165744027103], [-77.42701626814976, 34.62186872256437], [-77.42725762835101, 34.622141016010325], [-77.42713810776662, 34.62220323831927], [-77.42726449901066, 34.62220234609513], [-77.4273164268624, 34.62220934427463], [-77.42762318288976, 34.62243425072661], [-77.42770428916711, 34.6225790107491], [-77.4277050890208, 34.622607385382054], [-77.42753312628913, 34.62282914655471], [-77.42752000002294, 34.62285232356324], [-77.42749605012023, 34.62286594920071], [-77.4272828609171, 34.623269692515635], [-77.42720429436416, 34.62336126899912], [-77.42716122797195, 34.6235639931825], [-77.42713461875408, 34.62368116700118], [-77.42719340986272, 34.623976920105335], [-77.42716161054427, 34.62404270942993], [-77.42712156347383, 34.62420514745305], [-77.42775861332895, 34.624241830867575], [-77.42785361113943, 34.62422470209467], [-77.42787119107675, 34.62423722174606], [-77.42833885302574, 34.62437788253366], [-77.4284509748208, 34.62440883150501], [-77.42845391995903, 34.62441293885206], [-77.42902044165946, 34.62459421296337], [-77.42905173241296, 34.6245888134275], [-77.4290789875968, 34.62460405798146], [-77.42914373192866, 34.62465962150534], [-77.4295662465928, 34.62487418401667], [-77.4299608967626, 34.625091220271145], [-77.42996554819265, 34.625300345569464], [-77.42996905806376, 34.62545813187221], [-77.42997152063083, 34.62556882499839], [-77.42985233353099, 34.625712979105906], [-77.42953226146577, 34.62595183810602], [-77.42945303748535, 34.626006797673114], [-77.42941452831334, 34.62603459884903], [-77.42932378925047, 34.626084563642316], [-77.42929307418096, 34.626105670140674], [-77.42929554864762, 34.62611907274306], [-77.42933099847316, 34.6261938075061], [-77.42933254650279, 34.62627435000583], [-77.42939917331485, 34.62635899865036], [-77.429525622027, 34.62665165791098], [-77.4295408929016, 34.62668785103399], [-77.42956025255359, 34.62670971544825], [-77.42963449499396, 34.6268385513433], [-77.42972036347234, 34.62697111803484], [-77.42972960407532, 34.62700331320108], [-77.42975385189483, 34.62704126956496], [-77.42985468912865, 34.627264030184534], [-77.42990313287358, 34.6273231013889], [-77.42993459657819, 34.62741425907279], [-77.42982538132773, 34.627536204385635], [-77.42971270489971, 34.62774660144551], [-77.42962900287749, 34.62792675034127], [-77.42960966874654, 34.62802048812399], [-77.4296846155311, 34.62812384204029], [-77.42979242218061, 34.62825422529433], [-77.42993398375603, 34.62865294925326], [-77.43001834008578, 34.62876721911754], [-77.43020783832375, 34.62893397015735], [-77.43050947491247, 34.62920624581872], [-77.43060780235037, 34.62933772297815], [-77.43090253377119, 34.62955111998383], [-77.43097540640154, 34.62955101727696], [-77.43147813553284, 34.62973301569841], [-77.43157775594527, 34.62972909144767], [-77.43186568601236, 34.62971774825547], [-77.43251630710469, 34.6296837340099], [-77.43252252771805, 34.62955892094828], [-77.43252523805472, 34.629529795756454], [-77.43253413779998, 34.62947453880403], [-77.4325495837416, 34.6292586677754], [-77.43256546606649, 34.629149092242706], [-77.43257927886994, 34.6291141994451], [-77.43257495475194, 34.62896758797079], [-77.43257104899081, 34.62896288149424], [-77.4325651188813, 34.62895438262745], [-77.4324495967289, 34.62881287252529], [-77.43240084166747, 34.628723284196745], [-77.4321564356564, 34.628368666878266], [-77.43195594154292, 34.62835281717245], [-77.43184301566423, 34.62824725356826], [-77.4319188586319, 34.62750047168939], [-77.43191709034365, 34.62748868979054], [-77.43191709135405, 34.62748615769851], [-77.43183641895752, 34.626772178873104], [-77.43179015263854, 34.626205366468355], [-77.43179779434033, 34.626044708132746], [-77.43172967706305, 34.62588691527211], [-77.43144129369134, 34.625755204093736], [-77.43101250064674, 34.625530020798905], [-77.43096907515209, 34.6252985353535], [-77.43086377690474, 34.6252031660988], [-77.4308084026821, 34.625184486127054], [-77.43072355824899, 34.625053744461155], [-77.43063427942734, 34.624940209004286], [-77.43062505632297, 34.624901957242855], [-77.4306113874782, 34.624863613829795], [-77.4304847482687, 34.62466588072566], [-77.43035425789913, 34.62460988915716], [-77.43030948201564, 34.62444821413412], [-77.43027123724184, 34.62426431044417], [-77.43036239037751, 34.62415700765159], [-77.43032870175757, 34.62394245932678], [-77.43022803071514, 34.623907386047414], [-77.43015939481954, 34.623776227166175], [-77.43001244269644, 34.62359958472079], [-77.42997349458196, 34.62346241969092], [-77.42979212261551, 34.62302821663205], [-77.42982492920625, 34.62291454754706], [-77.42978903168483, 34.62277373163238], [-77.42952302489822, 34.62258760348189], [-77.42934118714984, 34.622406905646116], [-77.4293165921795, 34.62232093482183], [-77.42929082935828, 34.62223328888413], [-77.42918862283096, 34.62198816586055], [-77.4292547681517, 34.62160708769849], [-77.42925508803467, 34.621601322280256], [-77.42925594227256, 34.6215997464904], [-77.42926385496537, 34.62158731034484], [-77.42950994365458, 34.62107107801943], [-77.42962239409212, 34.62102903228813], [-77.4299188329912, 34.62078690075365], [-77.43005122009332, 34.620674687934944], [-77.43007315862042, 34.6206487750228], [-77.43022934458725, 34.62058387898681], [-77.43092906832747, 34.620039851145364], [-77.43124904235441, 34.6200753974411], [-77.43178502244209, 34.62000908956237], [-77.43195096784311, 34.61993154659723], [-77.43206880720356, 34.61998768245702], [-77.43247230756488, 34.61994465575669], [-77.43247999070853, 34.61994344895843], [-77.43248919385522, 34.619939843122495], [-77.43291079157976, 34.619783691562546], [-77.43295087883091, 34.61974288476243], [-77.43310875381638, 34.61963086443073], [-77.43355330400638, 34.61938913816404], [-77.43383122736404, 34.61911728556635], [-77.43431803627382, 34.61906706399954], [-77.43491107151144, 34.619249573154086], [-77.434919132083, 34.61925022684075], [-77.4349375750986, 34.61925420651909], [-77.43547470740447, 34.61935916221548], [-77.43556045613211, 34.61937691200926], [-77.43592776959433, 34.619291054965444], [-77.43597965327083, 34.61928308169466], [-77.43603374907143, 34.619255530723535], [-77.43629313116924, 34.619109210795244], [-77.43641310662653, 34.61894576014426], [-77.43678978405443, 34.61871407250131], [-77.43681125839338, 34.618671115054156], [-77.43660607764865, 34.6180989095325], [-77.43658228188157, 34.61803473219634], [-77.43657758925778, 34.61796989714516], [-77.43665477137425, 34.61790763243042], [-77.4367876269826, 34.617877007527134], [-77.43719978055708, 34.617568225280976], [-77.43758733288178, 34.61747297315186], [-77.43768167094098, 34.61735210577015], [-77.43784084415947, 34.617173157571095], [-77.43796729708119, 34.61694025692444], [-77.43803427341642, 34.616882348045294], [-77.43806544227866, 34.6166323318025], [-77.43836373405836, 34.61646774594182], [-77.4387980222674, 34.61633388974502], [-77.43887667655302, 34.61629682063958], [-77.4393391725121, 34.61618983197061], [-77.43970767120847, 34.61613619539452], [-77.43991574753719, 34.61604104298175], [-77.44031093053317, 34.6158984874438], [-77.44073278003403, 34.61579735112772], [-77.44080342028869, 34.61577697498244], [-77.44091498731888, 34.615771319780556], [-77.44130266253009, 34.61568013633123], [-77.44172206801461, 34.6154617806244], [-77.44172982621672, 34.61543705908624], [-77.44183145568078, 34.61536855687517], [-77.4421941858551, 34.61509570002837], [-77.44292913526326, 34.61548688780785], [-77.4429019291049, 34.61584723728867], [-77.44290994570513, 34.61586161048633], [-77.44290706790011, 34.61588220268436], [-77.442989652628, 34.61608105696116], [-77.44306314947167, 34.6161871810226], [-77.44311608197557, 34.616540963228054], [-77.44311585944367, 34.61654140360758], [-77.44311589565852, 34.61654153033107], [-77.44328078345039, 34.61686363171801], [-77.44338284263635, 34.61712913455217], [-77.44345406215963, 34.61727928254556], [-77.44337975015621, 34.61757391714731], [-77.44397925039632, 34.61777548813782], [-77.44438249478239, 34.61773566064147], [-77.44459105441803, 34.61796706045861], [-77.44470406732337, 34.618256841883635], [-77.44471463278727, 34.61833979911184], [-77.44471558932023, 34.61854467752531], [-77.44473399811588, 34.61866481042483], [-77.44482756458675, 34.61899872693068], [-77.44483293434703, 34.61901360157732], [-77.44484888452114, 34.61903156940662], [-77.44511717532023, 34.619123274818186], [-77.44514402410564, 34.61910945875674], [-77.4453551309611, 34.618960247746095], [-77.44549616991073, 34.61881675135224], [-77.44555911521819, 34.618635291286616], [-77.44603185068709, 34.61846224640979], [-77.44626008692973, 34.61842483268292], [-77.44652745888556, 34.61852269977194], [-77.44660403621621, 34.61867705852708], [-77.44662183485468, 34.61886504429829], [-77.4467535481716, 34.619053220951855], [-77.44690925994523, 34.619218238832374], [-77.44704883791735, 34.61938533575408], [-77.44719708383008, 34.61943952924078], [-77.44718908231944, 34.61951531188316], [-77.4473208535241, 34.619629383800735], [-77.44750425667087, 34.61972119731185], [-77.44761173376885, 34.61997289135897], [-77.44768214562312, 34.62003972936945], [-77.4477104989983, 34.62006736389623], [-77.44780779266858, 34.620236944901094], [-77.44792299021077, 34.62034031035772], [-77.44820443755498, 34.62037784544425], [-77.44830303434124, 34.6206011990583], [-77.44847396339675, 34.62074964508322], [-77.4485860505811, 34.62082565304061], [-77.448664424084, 34.620867406429554], [-77.44889461171239, 34.62104113209754], [-77.44900893007974, 34.621138427565064], [-77.44889147535466, 34.62136660663122], [-77.44918366252739, 34.6214212696007], [-77.44915679248531, 34.621132858747075], [-77.44917000921618, 34.62109249571927], [-77.44920613733484, 34.620981917291466], [-77.44930521419622, 34.62068468425115], [-77.44930840957718, 34.62056650512178], [-77.44936495324833, 34.62029839098305], [-77.44917464739925, 34.61990030746419], [-77.4491594290767, 34.61961848276364], [-77.44926083340701, 34.61931106410956], [-77.44926003355695, 34.619087316749656], [-77.44925359396633, 34.61885311721544], [-77.44928809522142, 34.61870120414345], [-77.44927954543758, 34.618606285422075], [-77.4492706179735, 34.61847900554174], [-77.4491620061384, 34.618462005112264], [-77.4489837165142, 34.618510785522545], [-77.448912890444, 34.61851229572659], [-77.44880105912807, 34.61853080403701], [-77.44846091101948, 34.618781795890655], [-77.4481239513897, 34.61864756330915], [-77.44813110799618, 34.61843468605977], [-77.44809279297051, 34.61828299763637], [-77.44808013273997, 34.61824396567814], [-77.44803024639621, 34.61809419072181], [-77.44796581732648, 34.61792655404071], [-77.44784538250701, 34.6177776487825], [-77.44760332679307, 34.61756993824997], [-77.44753709836243, 34.61753635591208], [-77.44739267095598, 34.6175374829433], [-77.44707016895674, 34.61754293744387], [-77.44686623428387, 34.61744219381313], [-77.4467160388071, 34.61736116508797], [-77.4466113552112, 34.61729663317751], [-77.44642607989806, 34.61711075444697], [-77.44640542662796, 34.61709122966396], [-77.44638793219328, 34.61708546701351], [-77.446383853756, 34.617065646973295], [-77.4462762972451, 34.61679193723719], [-77.44624833848296, 34.61675601627558], [-77.44624226625228, 34.61670640090626], [-77.4461302600147, 34.616513316295695], [-77.44595171836195, 34.616471339598206], [-77.44579261226966, 34.6162393576626], [-77.4457008743116, 34.616173610670835], [-77.44567526293841, 34.6161552553961], [-77.44562853922557, 34.616118029117004], [-77.44473884745672, 34.61570940748473], [-77.44533147172712, 34.61503290298445], [-77.4455011342572, 34.614898543784335], [-77.44626798548624, 34.61461291168748], [-77.44633515037593, 34.61457097472133], [-77.44673840012535, 34.61441080855113], [-77.44676685773348, 34.614392638114495], [-77.44705657532833, 34.614204004859424], [-77.44718048811401, 34.61410524605572], [-77.44757085463604, 34.61379412016286], [-77.44759425209375, 34.61377273832457], [-77.44761208848948, 34.61376138844729], [-77.44766674554205, 34.61372053086792], [-77.44787805205078, 34.61356234004856], [-77.44802516815633, 34.61334989543286], [-77.44805990256566, 34.61331626895351], [-77.44810370131191, 34.61327291667148], [-77.44842753795561, 34.612825504016136], [-77.44842644007345, 34.61279170773398], [-77.44832231642533, 34.61247206306656], [-77.44830770813027, 34.612461625107635], [-77.4480703915836, 34.61231269050514], [-77.44788877866964, 34.612017583320586], [-77.44780301276296, 34.61188163971362], [-77.44784376904585, 34.61167543637217], [-77.44783835584572, 34.61138053539769], [-77.44809994664115, 34.61105845113375], [-77.44823012609297, 34.61089821867266], [-77.44836108026949, 34.61073633074848], [-77.44865426077803, 34.610684480661554], [-77.44915548924668, 34.610757435196724], [-77.44936659830407, 34.61072786098482], [-77.44941147660234, 34.610732497874196], [-77.44951339918333, 34.610727848211866], [-77.44992388754528, 34.61068387554693], [-77.45030893140225, 34.61049001721855], [-77.45039095754949, 34.61046965813398], [-77.45082487128641, 34.61065060314336], [-77.45086876991932, 34.61071985181881], [-77.45106232395273, 34.61095214007179], [-77.45094101545429, 34.61122736634123], [-77.45078504137027, 34.611736598098425], [-77.45081968641352, 34.61175985845836], [-77.45125366039065, 34.61170034005592], [-77.45153510859005, 34.61155582142838], [-77.45166052919767, 34.611479113413694], [-77.45170677153644, 34.61143513344289], [-77.45190489476634, 34.6112816876839], [-77.45221497411885, 34.61105370930152], [-77.45253785324881, 34.61063034439019], [-77.45257030192592, 34.61055863905289], [-77.45259738251862, 34.610514332113134], [-77.45270736575699, 34.61030044929822], [-77.45282680253223, 34.61007963723203], [-77.4528153677453, 34.61002499118273], [-77.4529731978945, 34.6099753917745], [-77.45336102389182, 34.60979671877841], [-77.45381324831978, 34.609754733069444], [-77.45387361431034, 34.609748769922476], [-77.45390260350202, 34.6097533046092], [-77.4539237404273, 34.60976676527712], [-77.45394945357731, 34.609802386822196], [-77.45414469202777, 34.610073004753744], [-77.45431057635476, 34.61016883324308], [-77.45447517216408, 34.61034800507765], [-77.45458256826328, 34.61041785664696], [-77.45474871220557, 34.61054748217108], [-77.45485081825116, 34.610610121381484], [-77.45491148177331, 34.61065903871167], [-77.45500479382655, 34.610691545630964], [-77.45504390240046, 34.610804674558395], [-77.45512588343982, 34.6109009261818], [-77.45516797693026, 34.610949209847185], [-77.45534311480975, 34.610909353610865], [-77.45530494952968, 34.6107817132939], [-77.45523906757225, 34.610499378313946], [-77.45521847205679, 34.610430249703384], [-77.45518836883144, 34.61032920789801], [-77.45513727220344, 34.61021795673404], [-77.45511699198399, 34.61016493550206], [-77.4551021395074, 34.6101152948909], [-77.45498118248355, 34.6099537094609], [-77.45492119049312, 34.60987935802617], [-77.4548595763363, 34.60986909680415], [-77.45466589561804, 34.609734334825774], [-77.4546607300059, 34.60955655186953], [-77.45453887168233, 34.60938921691523], [-77.45446066131103, 34.60924435529407], [-77.4544718541115, 34.609057202185255], [-77.45448312884297, 34.60886868448286], [-77.4544419611466, 34.60873592579797], [-77.4544807354266, 34.60850010454546], [-77.45450820395232, 34.60844940949622], [-77.45445455501299, 34.60816394307144], [-77.45443866647634, 34.60814284164924], [-77.45419269279118, 34.60803430562512], [-77.45418563230854, 34.608035591852314], [-77.45393713338726, 34.6080609480709], [-77.45376152691203, 34.60809700505524], [-77.4529408080454, 34.60821070972586], [-77.45292750649077, 34.608213575187584], [-77.45291503379653, 34.60821772620101], [-77.4529023682643, 34.60821177941829], [-77.45277570200784, 34.608152941310145], [-77.45238130921486, 34.607991136032076], [-77.452746643923, 34.60755306978907], [-77.45277253015986, 34.60753244091122], [-77.45277398158366, 34.60750987647014], [-77.45319564838509, 34.60706109438826], [-77.45324821147709, 34.60689590899951], [-77.45332586561355, 34.60661394106841], [-77.4533127808077, 34.60648268760212], [-77.45345425494429, 34.60629753881837], [-77.45416464883967, 34.60577522687387], [-77.45432471075551, 34.60563677049076], [-77.45437968568164, 34.6056172061315], [-77.45482733452846, 34.60555251745181], [-77.45494248773731, 34.605504426478404], [-77.45506379570759, 34.605456161179625], [-77.45508206713701, 34.60537447400209], [-77.45511512346562, 34.60529870246854], [-77.45512445826623, 34.6052700660364], [-77.45513161317791, 34.60526090485316], [-77.45513389555299, 34.60523222345278], [-77.45513855021795, 34.60517373043155], [-77.45514360154974, 34.60511025312763], [-77.45515021157604, 34.60502718741467], [-77.45511042860676, 34.60499712048821], [-77.45508224903116, 34.6049339409316], [-77.45513123785564, 34.604742594461], [-77.4551289196416, 34.60464057762705], [-77.4551477752487, 34.604617203727884], [-77.45514521736688, 34.60457608412095], [-77.45502732410179, 34.60436312324457], [-77.45477785072308, 34.60411092865694], [-77.45465511422805, 34.60401921008435], [-77.45417233604951, 34.60393701197453], [-77.45381086384688, 34.60376023091242], [-77.45343701570086, 34.603628144556936], [-77.4531286762247, 34.603384504467854], [-77.45303942565724, 34.60329008913529], [-77.45284471074545, 34.60305857143231], [-77.4529932538731, 34.60265454024638], [-77.45346931267736, 34.60251285220127], [-77.45368612561855, 34.60227759240911], [-77.45434586435863, 34.6018959852747], [-77.45435106809491, 34.60189349030508], [-77.45435576232927, 34.601892512180726], [-77.45435497928806, 34.60188924990887], [-77.45435399040292, 34.601886047595876], [-77.4542872683472, 34.60124915769615], [-77.45425909722887, 34.601178075690775], [-77.45426382368643, 34.60062156490944], [-77.45447624400163, 34.600377607089314], [-77.45467923244462, 34.6001475325112], [-77.4546296434697, 34.59972011588791], [-77.45437657509206, 34.59966751391506], [-77.45366949030908, 34.599404249151576], [-77.45342329838059, 34.59936662934197], [-77.45322234508045, 34.59925824291093], [-77.45298809648662, 34.59898446811305], [-77.45297334162602, 34.59896001163364], [-77.4529293743995, 34.59891583655794], [-77.45253064806482, 34.59871702903018], [-77.4524668682894, 34.598707514351936], [-77.45242525156418, 34.59869957321357], [-77.45230922133565, 34.598671711078936], [-77.45225212894633, 34.598678846284265], [-77.45216007300493, 34.59869097540537], [-77.45205939986334, 34.598748630304854], [-77.4520070240136, 34.598747923563764], [-77.45203859007037, 34.59877407909644], [-77.45210146846472, 34.59883945076212], [-77.4520932986331, 34.59893296304889], [-77.4520833719604, 34.59917650242343], [-77.45215099885371, 34.599194582381195], [-77.45215307440341, 34.59926357806174], [-77.45238205168096, 34.59949793548522], [-77.45203411054408, 34.59984134336929], [-77.45200449333757, 34.59997489153427], [-77.45194040878758, 34.60011825193138], [-77.45181593339387, 34.6003139665124], [-77.4517723877542, 34.600369153470666], [-77.45165293444148, 34.600444428387824], [-77.45132097388759, 34.600830584426845], [-77.45103842187731, 34.60131409345384], [-77.45101927007676, 34.60134440501019], [-77.45102915225638, 34.60136086907716], [-77.45099545850266, 34.60142127116348], [-77.45096293348404, 34.60174901498378], [-77.45083741864107, 34.60190016657849], [-77.4506928527455, 34.601971926945374], [-77.45067067008996, 34.602017004749065], [-77.45063407884813, 34.602091775788665], [-77.45064086861385, 34.60214108602917], [-77.45069818017097, 34.602193787520314], [-77.45072722552584, 34.60220646214318], [-77.45076094330923, 34.60222063755223], [-77.45112294648357, 34.602179736545445], [-77.45123078266798, 34.602657213932794], [-77.45127739588457, 34.602767099460394], [-77.45112617797979, 34.60309015172871], [-77.45117490962716, 34.60325705925033], [-77.45107245701482, 34.60335846476773], [-77.4509830380727, 34.60349961723866], [-77.45103495379739, 34.60357476744624], [-77.45117062188496, 34.60371701198822], [-77.45133697747531, 34.603746746113664], [-77.4513343120996, 34.603858643203004], [-77.45132996132413, 34.60393071197574], [-77.45143230811647, 34.60408735817139], [-77.45153799908141, 34.60416980636542], [-77.45160679366123, 34.604331176513554], [-77.45191623108687, 34.60452026804904], [-77.45215405965092, 34.60457633343353], [-77.4522995597614, 34.604691108723244], [-77.45238620678286, 34.604919698502805], [-77.45208565922727, 34.605139067230205], [-77.45194548086053, 34.605530621445645], [-77.45165738747005, 34.605903468752466], [-77.45132959638907, 34.6062176738869], [-77.4511117195079, 34.60633192976356], [-77.45058904282982, 34.60649006154827], [-77.45044572919687, 34.60632763234557], [-77.4502944866403, 34.606277145200146], [-77.4501027649257, 34.606170313336165], [-77.44991927020641, 34.60622437108612], [-77.44979224702132, 34.60636281980203], [-77.44968041212317, 34.606450488765354], [-77.44932879788038, 34.60659018459644], [-77.44904031579019, 34.606728455609876], [-77.44893438891903, 34.60680883686982], [-77.44905752562136, 34.60699121081302], [-77.4491709811645, 34.60706044768119], [-77.44917768301605, 34.607301461437245], [-77.44919886550755, 34.60742175230113], [-77.44913094150442, 34.607497017843635], [-77.4491203270501, 34.607748904424064], [-77.44911106488283, 34.60781604941305], [-77.44904953642448, 34.608087933633016], [-77.44889832920659, 34.608245975781195], [-77.44879950828945, 34.60849727952154], [-77.44873728033758, 34.60859807059171], [-77.44851912868302, 34.60872337435044], [-77.4483647750386, 34.60882958381966], [-77.4481410530176, 34.609008838893814], [-77.44792508346997, 34.609143786631506], [-77.44767436335658, 34.60913957588401], [-77.44742679752572, 34.60903488063653], [-77.44696569326206, 34.6090917188829], [-77.44686195743195, 34.60910103755388], [-77.44666415421648, 34.609111428980995], [-77.44635592214573, 34.60917291091575], [-77.44616726177627, 34.60915360382461], [-77.44587703147195, 34.60910756460131], [-77.44580974590822, 34.60909814803084], [-77.44567777775873, 34.60907595659303], [-77.44553921116092, 34.609070092222275], [-77.44548943463161, 34.609068029058875], [-77.44541091986679, 34.60908154866313], [-77.44538734497192, 34.60912917228826], [-77.44532713241819, 34.60925558522084], [-77.44532408565917, 34.60926188758838], [-77.44531868722403, 34.609266778694796], [-77.44491964075267, 34.609687463953776], [-77.44435907223185, 34.609540409291135], [-77.4443568761679, 34.60953840151012], [-77.44407237753074, 34.60925290487885], [-77.44408631850612, 34.60895489753827], [-77.44395016011059, 34.60878106773603], [-77.44369378454086, 34.608622354334784], [-77.44366645711833, 34.60855393360565], [-77.44352169138706, 34.6080116986936], [-77.44351262057829, 34.607935509344756], [-77.44357846001357, 34.60774724336777], [-77.44357051414906, 34.60754975062127], [-77.44361948730807, 34.60742650747886], [-77.44355420800562, 34.60731975806976], [-77.44326006401153, 34.607269021447145], [-77.44322602913472, 34.60726384956114], [-77.44319908851668, 34.607242800006], [-77.4431203091577, 34.6072518046086], [-77.44268856919967, 34.60743197357121], [-77.44227851826443, 34.60757660933377], [-77.4422407960816, 34.60758295958693], [-77.44220746263744, 34.60759485197058], [-77.44216432642366, 34.60758145154897], [-77.44149090179846, 34.607556625860944], [-77.44139705153718, 34.607430970755736], [-77.44109933747518, 34.6072538612634], [-77.44103070190138, 34.60720499128519], [-77.44097204433155, 34.607182900003146], [-77.44083694173597, 34.607072059611035], [-77.440597680651, 34.60692038905971], [-77.44056421842747, 34.60686104027247], [-77.44027455745324, 34.606643267342875], [-77.44046171982662, 34.60632130169057], [-77.44044918377645, 34.606224232381145], [-77.44051512374264, 34.60603028062189], [-77.44050937114277, 34.60601386047485], [-77.44046742450675, 34.60590525791069], [-77.4404495572772, 34.60585842673716], [-77.44044538554319, 34.6058560680066], [-77.44035630814537, 34.605743868561646], [-77.44032223522743, 34.605653052670505], [-77.44025308868069, 34.605541647198514], [-77.44021901414268, 34.60545459931136], [-77.44006392078327, 34.60522633470582], [-77.44005551959279, 34.60519736291701], [-77.44001161655476, 34.60505662391014], [-77.43993429958493, 34.60491757482295], [-77.4399229435358, 34.60490232848314], [-77.43991499866456, 34.60489954755354], [-77.4399124368789, 34.60489018575685], [-77.43967889972176, 34.60459761548135], [-77.43968423065645, 34.60450059234202], [-77.43958231348724, 34.60440453600886], [-77.43942620953861, 34.604300413929955], [-77.43935911272668, 34.60407707489421], [-77.4392791970527, 34.603973082546325], [-77.43925358777493, 34.603892193840885], [-77.43911468266698, 34.60365074130449], [-77.43910710813466, 34.60361416235722], [-77.43906461216488, 34.6034803939688], [-77.43901392174998, 34.603336813485306], [-77.43900759850315, 34.60331202613332], [-77.43899808052991, 34.60329034544339], [-77.43888709387933, 34.60297713742833], [-77.43888432871373, 34.602972305210095], [-77.43884563594224, 34.602860141090936], [-77.43882574818974, 34.60281000483872], [-77.43882645198424, 34.602806616426584], [-77.43874253136181, 34.602688552110315], [-77.43870375110367, 34.6026601645094], [-77.43868818590781, 34.60260335832183], [-77.43859918203394, 34.60240669723338], [-77.43846374787115, 34.60235934584091], [-77.43838633176814, 34.60220980936564], [-77.43833608052512, 34.60202649956382], [-77.4384296941947, 34.60189343904022], [-77.43839452904058, 34.60174268794776], [-77.4382538120391, 34.60168070982975], [-77.4382304545633, 34.60148617273424], [-77.43823036850438, 34.60129294668553], [-77.43827887205747, 34.60114502140172], [-77.43825882322773, 34.601026693058074], [-77.43823669929769, 34.600867437633624], [-77.43822269289122, 34.60066825606536], [-77.43822094270212, 34.60064820480067], [-77.43816255913335, 34.600453563847225], [-77.43818528612884, 34.60026699799526], [-77.43818527323147, 34.60023798278163], [-77.43819163170005, 34.60021490775023], [-77.43818522760225, 34.6000546705531], [-77.43817586933436, 34.60002704561832], [-77.43817558630836, 34.5998540583866], [-77.43817555143164, 34.599775525936714], [-77.43815331166135, 34.59960571339163], [-77.4381749872373, 34.599429992906614], [-77.43817495199357, 34.59935057709605], [-77.43826564394233, 34.59916487690148], [-77.43832037686714, 34.598827447065084], [-77.43823209076572, 34.59874513437356], [-77.43832029257439, 34.59863730291489], [-77.43840851002726, 34.59856670121384], [-77.4386312275036, 34.59826282645391], [-77.43864663510357, 34.59809278593441], [-77.43871714852014, 34.597825807674866], [-77.43876354431201, 34.59743604100078], [-77.4387662773036, 34.59735555752498], [-77.43876599021215, 34.596969557378706], [-77.43851405837701, 34.59689146097179], [-77.43844657733419, 34.59659115081273], [-77.43840758639755, 34.59650091592888], [-77.43831017641287, 34.59629113002246], [-77.43824987294082, 34.59619500013396], [-77.43824979803395, 34.59602523568593], [-77.43826149749323, 34.59550104972225], [-77.43821519035475, 34.59535082739335], [-77.43809891701616, 34.59503577501898], [-77.43840692151299, 34.59500926630135], [-77.43858802072944, 34.594643025016], [-77.43863351399298, 34.59444114887072], [-77.4386569150208, 34.59428287172669], [-77.43865583961635, 34.59416932355045], [-77.43856388089378, 34.59402662399974], [-77.43847459121724, 34.59368848475648], [-77.4385129012391, 34.593609401808386], [-77.43880019022555, 34.59320152956971], [-77.4388169460088, 34.59315891514076], [-77.43919404570786, 34.59272304098706], [-77.43922249612287, 34.5926882712625], [-77.43997093850072, 34.592561401991915], [-77.4399821116005, 34.592563166523746], [-77.44004751588227, 34.59260873751087], [-77.44037625558137, 34.59272358980122], [-77.44055387866152, 34.592698258625376], [-77.44077030779022, 34.592686394812866], [-77.44092351960467, 34.59257673554817], [-77.44109354564117, 34.59238700953249], [-77.44110948198151, 34.59232574195592], [-77.44099876866906, 34.59215428661033], [-77.44078250834212, 34.59200739852336], [-77.44076998609799, 34.5920043550441], [-77.4407652765184, 34.5920048160197], [-77.44057295318044, 34.592004847235714], [-77.44040219948926, 34.59203409956144], [-77.44037593578274, 34.59203864622247], [-77.44034691979022, 34.592039130709516], [-77.44027336551356, 34.592081032390126], [-77.44008807506805, 34.59222217117284], [-77.43998208761758, 34.592511284590074], [-77.43996499925518, 34.59253180088983], [-77.43923653927207, 34.59260972865196], [-77.43919399726104, 34.592616083418626], [-77.43861789701427, 34.59251651692935], [-77.43840576928756, 34.59241555756416], [-77.43800741849847, 34.591984119846614], [-77.4379615021879, 34.59161987743473], [-77.43796109122403, 34.59156622562007], [-77.43785923343597, 34.591417146489015], [-77.43781969633109, 34.59136846312011], [-77.4376932955369, 34.59118035544866], [-77.43766206161912, 34.59113640235393], [-77.43761704544929, 34.59106259119031], [-77.43743780976794, 34.59079270490054], [-77.43761676362006, 34.59041105480215], [-77.43763981153907, 34.59036375772679], [-77.43766171878704, 34.59033573409575], [-77.43801060409635, 34.589910070079966], [-77.43804103884504, 34.58988909243438], [-77.43807706045574, 34.589851080453904], [-77.43809421127575, 34.58975844251258], [-77.43801056639086, 34.589823717619524], [-77.43798487910934, 34.589836726264416], [-77.43761651164314, 34.589827892193526], [-77.43732670126616, 34.58984726771007], [-77.43722245433825, 34.589826359170594], [-77.43707204638889, 34.589733834217036], [-77.43684048971306, 34.58960529544821], [-77.43683254506892, 34.5896018731543], [-77.43682830065825, 34.5895968201442], [-77.43651794631563, 34.58922734002358], [-77.43649164652591, 34.58916909989901], [-77.43643401683755, 34.58905018486059], [-77.43634721509545, 34.58892090437247], [-77.43627409639322, 34.588838005700595], [-77.43616844946952, 34.58871468743466], [-77.43603976000034, 34.58855619336165], [-77.43598914837375, 34.588509127062245], [-77.43596063028514, 34.588458737054445], [-77.43584266363057, 34.588383106697], [-77.43578620703587, 34.58833247046005], [-77.43573071508166, 34.588279683719676], [-77.43564556365394, 34.58819911977989], [-77.43556836029404, 34.588174038125004], [-77.43549316347483, 34.588101734045345], [-77.43542362368865, 34.58792621990303], [-77.43542425993131, 34.58789940034309], [-77.43539004896509, 34.58784147860598], [-77.43529328674276, 34.58770604077356], [-77.43527483627214, 34.587683355108055], [-77.43525129594819, 34.587656054406], [-77.43518861104712, 34.58757638865647], [-77.43513536983194, 34.587516576810145], [-77.4350973294367, 34.58747560436621], [-77.43497053232086, 34.58732811318856], [-77.4348570681085, 34.587200131924696], [-77.43472817077279, 34.5870773993761], [-77.43465995796754, 34.586977630422155], [-77.43464621599001, 34.58696521309903], [-77.43464178580905, 34.58695105157597], [-77.43456139948897, 34.586856676305864], [-77.43456133627808, 34.58685660298517], [-77.43456128747546, 34.586856541960664], [-77.43456091738284, 34.58685607623952], [-77.43448562791522, 34.58676133270252], [-77.43446284010555, 34.5867326566938], [-77.43435582934507, 34.586683088807995], [-77.43424884088591, 34.58658327071258], [-77.43407503957653, 34.58619075845509], [-77.4344625183713, 34.585910597583094], [-77.43449936983633, 34.585737647310445], [-77.4347348448462, 34.585663819710405], [-77.43504032604933, 34.58499664754083], [-77.43498303696809, 34.58477875045413], [-77.43446180619414, 34.584086650026514], [-77.43440388905516, 34.58407570561237], [-77.43367394855883, 34.584619317362254], [-77.43334916623215, 34.584165789792024], [-77.43313709188655, 34.583925478770105], [-77.43288548028134, 34.58353386539766], [-77.4327039047023, 34.58360558060524], [-77.43280403926373, 34.583395416811456], [-77.43279423598423, 34.58329860557875], [-77.43280958131913, 34.58262685790875], [-77.43280280312787, 34.5825464129079], [-77.43249101554127, 34.58233784937755], [-77.432421412789, 34.5822519275557], [-77.43216073189583, 34.582283349006296], [-77.43209697931312, 34.58229911464228], [-77.43197981023702, 34.58236708443185], [-77.4318641574893, 34.58243117372672], [-77.43170307330647, 34.582625862698116], [-77.43150468642898, 34.582734074092556], [-77.43142720850449, 34.58287250548055], [-77.4313092022322, 34.58306075167968], [-77.43121895001256, 34.58287256102793], [-77.43113392911803, 34.582787669371285], [-77.43052094331387, 34.58245459625994], [-77.43026627268077, 34.58263859649786], [-77.43012697651344, 34.58262232597589], [-77.43002033251761, 34.58263897315156], [-77.42973300804158, 34.58278979380434], [-77.42954672248811, 34.582816352482176], [-77.42913348675623, 34.58287370313017], [-77.42896790925633, 34.58267617016794], [-77.42895474170925, 34.582667488265145], [-77.4289449167089, 34.582661630859505], [-77.42870459911609, 34.5825485582872], [-77.4285508129696, 34.58241219995803], [-77.42845582839267, 34.58232559466813], [-77.42826481818224, 34.5822367332195], [-77.42815670646485, 34.5821465035866], [-77.4279501297568, 34.58197409505535], [-77.4279205014996, 34.58180820362124], [-77.42787823970505, 34.581559896539645], [-77.42799806589183, 34.58137189006761], [-77.42799649379268, 34.581290571412225], [-77.42801336813987, 34.58111577769756], [-77.42795934083213, 34.58100259907831], [-77.42793209842038, 34.58094456609369], [-77.42790763211643, 34.58091876540278], [-77.42776225298154, 34.58074389864881], [-77.42775131956213, 34.58074084362994], [-77.42773723902275, 34.580731097912775], [-77.42750788034401, 34.58061372502654], [-77.42736813656295, 34.58041037695519], [-77.42734102079505, 34.5803929880186], [-77.42733706904852, 34.58036434501128], [-77.4273061420063, 34.58030204468895], [-77.42721155007209, 34.58012654255246], [-77.42713355070981, 34.57996917005428], [-77.42704208145162, 34.57963128354251], [-77.4270716610604, 34.57955352630994], [-77.42736778024396, 34.57922864196757], [-77.42745192091388, 34.57916467189047], [-77.42756475286464, 34.57912438387329], [-77.42765096548264, 34.579045212243415], [-77.42769973997194, 34.578971382812725], [-77.42769353394947, 34.578900209788046], [-77.4276365537092, 34.57883500084658], [-77.42760991622902, 34.57879007253696], [-77.42748657692587, 34.57864438259996], [-77.42749667839486, 34.578357519740806], [-77.42744769030692, 34.578225414305884], [-77.42776134415672, 34.577772284402215], [-77.4277694009885, 34.57776301371203], [-77.42777803337597, 34.577753080706366], [-77.42795827537356, 34.577545682167724], [-77.42797312410623, 34.577528596170325], [-77.42800198130419, 34.57750841811638], [-77.42803062107475, 34.577476116795694], [-77.42803093707474, 34.5774258904124], [-77.42797768228567, 34.577405782966046], [-77.42795823109795, 34.5774014072243], [-77.42787871847308, 34.57739962463478], [-77.42783480269843, 34.57739957080045], [-77.42776124411515, 34.5774438528414], [-77.42765793054193, 34.577457189392206], [-77.42739192382663, 34.57738429713688], [-77.42737087708085, 34.57738340440875], [-77.42736722585771, 34.57738321510113], [-77.42736230564921, 34.577383275658704], [-77.42697322622138, 34.5773839859065], [-77.42690148209186, 34.57737786769876], [-77.42677622932435, 34.57739448882305], [-77.42669499483353, 34.57736025878727], [-77.42666472272887, 34.57736924211266], [-77.42657924000167, 34.57743130700344], [-77.42651880816211, 34.57744535777783], [-77.42626722342916, 34.57745850500979], [-77.42618525422567, 34.577481975963764], [-77.42609653539522, 34.57747590843611], [-77.42589576106815, 34.577487909638776], [-77.42579125840712, 34.57749891284008], [-77.42572412777456, 34.57748537663742], [-77.42565419695426, 34.577487740180175], [-77.42559425604773, 34.57749172581273], [-77.42554889110961, 34.57748724838981], [-77.42539771131078, 34.57746021071335], [-77.42539724696337, 34.57746012692557], [-77.42538836105169, 34.57746156194497], [-77.42520542647824, 34.57749357035948], [-77.42519495524847, 34.57749522405295], [-77.42500326980996, 34.577546521587955], [-77.4247771112293, 34.57751848015755], [-77.42444282065009, 34.577565281631735], [-77.42421521806756, 34.577357586134475], [-77.42404616605812, 34.57720076997463], [-77.42398312925837, 34.5770277479388], [-77.42382106730098, 34.57677250735612], [-77.42373535561048, 34.57673131918], [-77.42355681016586, 34.57638009804662], [-77.42348884200467, 34.576249999281025], [-77.42388914245353, 34.57584118723596], [-77.42392364233444, 34.57576258357298], [-77.42408337810404, 34.57559791883166], [-77.4241894180352, 34.57551188447992], [-77.42405571336784, 34.57549027724116], [-77.42382732172648, 34.57535191552827], [-77.42382070250446, 34.57534880355628], [-77.42343766138718, 34.57539643455573], [-77.42342671989132, 34.57538204685092], [-77.42334816083338, 34.57533650724299], [-77.42337601829814, 34.57541712921618], [-77.42318015339985, 34.5756042447769], [-77.42314039016213, 34.575759842247294], [-77.42311096229692, 34.575880015641374], [-77.42307514127631, 34.57593075170092], [-77.42303287057234, 34.57595764858399], [-77.42297620960012, 34.575960547956306], [-77.42271876014223, 34.57602275574891], [-77.4226389101642, 34.576096360921234], [-77.42240003332898, 34.57614988748061], [-77.42224493059969, 34.57616022437443], [-77.42217322778839, 34.576092763508356], [-77.42206541264419, 34.576031088686975], [-77.42185088346469, 34.57593653002992], [-77.42168441020911, 34.575840927683466], [-77.42150346540296, 34.575737937279484], [-77.4214568382992, 34.575712430978], [-77.42144743091747, 34.57570592832048], [-77.42142372433536, 34.575699217252456], [-77.4212598352866, 34.57568378884549], [-77.42118305834056, 34.575651258353865], [-77.42116132794267, 34.57564322814023], [-77.42115004446643, 34.57564477241689], [-77.42106282496097, 34.57562180579905], [-77.42097201709205, 34.57555218733469], [-77.42090463704284, 34.57552007613417], [-77.42072129767925, 34.57543270183894], [-77.42066879954196, 34.57547215011225], [-77.42062738377959, 34.57543430903689], [-77.4206264730855, 34.57538981795834], [-77.42047176873106, 34.575311037543855], [-77.42040839842491, 34.575277314969796], [-77.42031295950454, 34.57522282018259], [-77.4202747492669, 34.57519959050482], [-77.42015156904766, 34.57516658189238], [-77.41996974016033, 34.57506011324132], [-77.41988071868684, 34.575009304261414], [-77.41976813220113, 34.57496791952484], [-77.41963283362516, 34.574951322438444], [-77.41961695580011, 34.57489878746948], [-77.4194866753503, 34.574747745248764], [-77.41946686387988, 34.574729524541134], [-77.41944038053923, 34.57471200454642], [-77.41928964585031, 34.57457338584604], [-77.41925823751258, 34.5745598702226], [-77.4190926310598, 34.5744689697922], [-77.41892224729955, 34.5743622719676], [-77.41886057758911, 34.57419661309123], [-77.41872097419302, 34.573566433366466], [-77.41871238606448, 34.573543420771145], [-77.4187309573103, 34.57350571324295], [-77.41869840942243, 34.57325800188077], [-77.41861406118255, 34.572799260669285], [-77.41861441430885, 34.572708405547644], [-77.41860429490471, 34.572608576513765], [-77.4186982627715, 34.57249608683634], [-77.41908915798768, 34.572211975605306], [-77.41909218485843, 34.57221008757609], [-77.41909782493825, 34.57220790722646], [-77.41937410843283, 34.57205334680199], [-77.41938030120667, 34.571960884896185], [-77.41931954200805, 34.57193687603617], [-77.41921980985029, 34.57177177856971], [-77.41909207111303, 34.571631091140766], [-77.41888128933155, 34.571623255525694], [-77.41891037919011, 34.57139189680683], [-77.41869804294473, 34.57134990746712], [-77.41851932377543, 34.57144839043013], [-77.41854771459302, 34.57170679115542], [-77.4185149992638, 34.57187359890176], [-77.41821374767535, 34.57224418282785], [-77.41791029491165, 34.57243693256689], [-77.41764963816377, 34.57227948211282], [-77.41724313635773, 34.57218755714147], [-77.41712229635331, 34.57219619361858], [-77.41702541280935, 34.572193187514046], [-77.41690025329785, 34.57210685741255], [-77.41650088653739, 34.571985023807976], [-77.41633427285299, 34.57177634667001], [-77.41632160902999, 34.57176585777332], [-77.41605395430386, 34.57168201482916], [-77.41555833270046, 34.571451523294535], [-77.41555184741095, 34.57144645028313], [-77.41554627016343, 34.57144145600948], [-77.41546456379314, 34.57137702303857], [-77.41515224948091, 34.571128577562384], [-77.4151185283434, 34.571126805122724], [-77.41510504892771, 34.57104155733021], [-77.41506889899681, 34.5706730503789], [-77.41515216196345, 34.5705389867552], [-77.41530291045326, 34.57037715616767], [-77.4155461066602, 34.570374298672675], [-77.41573598311892, 34.57037206720597], [-77.41574680088085, 34.5703668439245], [-77.41594005073358, 34.57021594773007], [-77.41599472943157, 34.57017367669074], [-77.41613743942565, 34.56988134265372], [-77.41614382281745, 34.569668623456195], [-77.41618794298434, 34.569504945564894], [-77.41633388281797, 34.569374724599484], [-77.41667754845686, 34.5691127841142], [-77.41672779937245, 34.569088611336575], [-77.4168018560807, 34.56906917257614], [-77.41695070255956, 34.56894315917126], [-77.41701134367491, 34.56890643637692], [-77.41707859630532, 34.56885024439706], [-77.41712170665832, 34.56876384769048], [-77.41714807208916, 34.568702819748665], [-77.41715968672878, 34.568672715936366], [-77.41718241489325, 34.56860397583424], [-77.41716636807153, 34.56824716736789], [-77.41717912692151, 34.56788278641477], [-77.41748679720816, 34.567776295046144], [-77.41790941143864, 34.56755302346356], [-77.41800857451126, 34.56759405397476], [-77.41811209619394, 34.56768596402958], [-77.41830340014525, 34.56773524996668], [-77.41846866994335, 34.56788094607575], [-77.41859692577884, 34.56793222861365], [-77.41869739002837, 34.56791469332335], [-77.41880978237894, 34.567706343855974], [-77.41909128352228, 34.567587484847074], [-77.41919108141798, 34.56753008450775], [-77.41940677292648, 34.56741439301899], [-77.4194851980185, 34.567382001460274], [-77.4195761548059, 34.56737642055026], [-77.41993410665208, 34.56742273426701], [-77.42022012844413, 34.567438519296985], [-77.42027312904781, 34.56749227207717], [-77.42038952817626, 34.56748238596488], [-77.42066708584989, 34.56750330473591], [-77.42090724546402, 34.567447871128415], [-77.42106112584457, 34.56789740740917], [-77.42121590175714, 34.56740445956021], [-77.42145496482489, 34.56736853689755], [-77.42184875778926, 34.567146209804214], [-77.42184886820206, 34.56714620161716], [-77.42184892278767, 34.56714612581148], [-77.42184911608184, 34.56714603903203], [-77.42250518712173, 34.566909478263625], [-77.42263670879927, 34.56687253730622], [-77.42282351544296, 34.566803885951565], [-77.42319043512444, 34.566699873682744], [-77.42342452808334, 34.566533734047056], [-77.42385091131027, 34.56639718652603], [-77.42415537682238, 34.56681276983066], [-77.42419308571627, 34.56682824589931], [-77.42421252279358, 34.56691236808459], [-77.42433628968334, 34.567077865810994], [-77.42440955073067, 34.5671167916532], [-77.42446383429387, 34.56703901246202], [-77.42460647891002, 34.566932261947485], [-77.42480817309493, 34.566718428386075], [-77.4249040143415, 34.56660075714761], [-77.42500031513995, 34.566496599076125], [-77.42524122914483, 34.56639615931446], [-77.42578805792266, 34.56592848444515], [-77.42587919579631, 34.5658127219869], [-77.42614253666267, 34.565676399302085], [-77.42641127848987, 34.565460217786416], [-77.42657581288593, 34.565442165068646], [-77.42679436973356, 34.56534659736014], [-77.42712364309682, 34.565275912210964], [-77.42736351857485, 34.56481807433633], [-77.42770508243807, 34.565082493903034], [-77.42789062428936, 34.56542372743961], [-77.4277202075892, 34.565832478200605], [-77.42770226805884, 34.56593538307652], [-77.42753793151692, 34.56632388661554], [-77.42756584916167, 34.56652690883764], [-77.42756603218895, 34.56653211938759], [-77.42769508486217, 34.56665794782603], [-77.42775546057062, 34.56671703272581], [-77.42775661220533, 34.566718384735694], [-77.42776517267883, 34.56672333503785], [-77.42815201428094, 34.566863787991736], [-77.42832880872695, 34.5668682010389], [-77.4288867914619, 34.56692081297483], [-77.42893992447856, 34.566897124057135], [-77.42898166186944, 34.566919396080685], [-77.42903765112987, 34.566956278541795], [-77.42972794890098, 34.567285828678], [-77.43009608328131, 34.56725567135692], [-77.43028362621229, 34.56762533738488], [-77.42998023082744, 34.5679408718481], [-77.42972822546166, 34.568147752301265], [-77.42957328030563, 34.568410123540524], [-77.429547059177, 34.5685809984448], [-77.42950864694768, 34.56877427307872], [-77.42951712004066, 34.56881307616144], [-77.42959342371665, 34.56899888590102], [-77.42972859525344, 34.569297723047065], [-77.42979967812947, 34.56931705679524], [-77.42987797343167, 34.56938234097369], [-77.42981504638726, 34.56948454508027], [-77.42979037527161, 34.5701779075127], [-77.4298582008629, 34.57023437959941], [-77.43012287655706, 34.57027644963714], [-77.43050534098082, 34.57015317835384], [-77.43051679979025, 34.57014868218233], [-77.43052419751001, 34.57014607489804], [-77.43130471313702, 34.570100100340596], [-77.43137370787173, 34.570089649726384], [-77.43169865789599, 34.57004278725548], [-77.43176473306477, 34.57002997199364], [-77.43202588372004, 34.56992099882022], [-77.43200334206166, 34.569828117722956], [-77.43187462936362, 34.56932835563727], [-77.43180300323532, 34.569104039830336], [-77.43167901121652, 34.56871805339978], [-77.43154128785724, 34.5682926960653], [-77.43132044039127, 34.56749335123595], [-77.4313179031159, 34.567460626237015], [-77.43142306159787, 34.56661142553138], [-77.43130348793879, 34.566498510372455], [-77.4310873103511, 34.56604361339934], [-77.43080141655348, 34.5658521185655], [-77.43051531421001, 34.565652835563526], [-77.42994326914966, 34.565743576406426], [-77.4296587361222, 34.56516813227768], [-77.42927044985714, 34.56486734428896], [-77.42893923498353, 34.56467271689018], [-77.42879661744949, 34.56459727250859], [-77.42851749050502, 34.56448393370583], [-77.4283177954249, 34.56433329965652], [-77.4281976400135, 34.563680991573435], [-77.42815101848134, 34.56354559610623], [-77.42799912976619, 34.56302404928928], [-77.42756847704553, 34.563144191148], [-77.42761281497052, 34.56349641955577], [-77.42809762452711, 34.56369544916898], [-77.42761225799843, 34.56403394815128], [-77.4273634225954, 34.56448740597817], [-77.42732486746313, 34.56461473417056], [-77.42706770484352, 34.564693499768936], [-77.42672889949164, 34.56490762972183], [-77.4265756530848, 34.56487387303611], [-77.42647004046592, 34.56489372158663], [-77.42646610241204, 34.56478045636422], [-77.42618163919616, 34.56460973676282], [-77.42606854949042, 34.56453519503971], [-77.42586964639604, 34.56453042317275], [-77.42578767726314, 34.56452813102099], [-77.42571091101874, 34.564547764296975], [-77.42540265344415, 34.564519184691655], [-77.42539373726298, 34.56452615567539], [-77.42537308684003, 34.56453610580453], [-77.42499981951893, 34.56460937716881], [-77.42477912118963, 34.56478635937558], [-77.42431249406857, 34.565091714886705], [-77.42424785509104, 34.565139621720085], [-77.42421207610589, 34.565150377353255], [-77.42417589048966, 34.565150457205995], [-77.42409977451496, 34.56512245681233], [-77.4235623057276, 34.56505124393305], [-77.42342415872915, 34.56501930216973], [-77.42306934777226, 34.56480455006723], [-77.42303016094776, 34.56478667261068], [-77.42283522621912, 34.56467054411953], [-77.42288801997303, 34.56487298428112], [-77.42283875065664, 34.565086480090315], [-77.42285209501436, 34.565302761773836], [-77.42272054051237, 34.565412494129276], [-77.4226363843942, 34.56549042604593], [-77.42231065121564, 34.565879009831015], [-77.42224253546223, 34.56590728479488], [-77.42215516947816, 34.5659222209325], [-77.42184859549393, 34.5659368762213], [-77.42142365471884, 34.565967167074405], [-77.42106070336959, 34.56594500737559], [-77.42083296684785, 34.5658399461209], [-77.42047845305152, 34.565867400120325], [-77.42027281864239, 34.565991517229754], [-77.42023058686152, 34.56606061245229], [-77.42013034709672, 34.566120626874955], [-77.41996303996186, 34.56623546090775], [-77.41987892337046, 34.566250388041524], [-77.4198223350475, 34.566226112698494], [-77.41968194684662, 34.56623965096449], [-77.41961888916134, 34.566194522845464], [-77.41955612042577, 34.56612688650677], [-77.41948492167211, 34.565981570194495], [-77.41936143619196, 34.56594021387821], [-77.41934196140902, 34.56580994794009], [-77.41921067382282, 34.56553343306815], [-77.41918280506063, 34.56540835774162], [-77.41948476322408, 34.56517529153185], [-77.4196465115003, 34.565091124296984], [-77.41987867391454, 34.565011012629526], [-77.41998485418267, 34.56498233879833], [-77.420232314912, 34.56487554576019], [-77.42027258512346, 34.56485712432255], [-77.4202999749605, 34.564851884652526], [-77.42034493905848, 34.56481586647072], [-77.4205456976101, 34.564656676032754], [-77.42066642358104, 34.56436382293114], [-77.42067359065175, 34.56435152245781], [-77.42106028850137, 34.564015159120295], [-77.42113600868316, 34.56393402348581], [-77.42125565744033, 34.563835105133634], [-77.42138576352171, 34.56374258027013], [-77.4214541379456, 34.56361099501481], [-77.42159613716271, 34.56351439102544], [-77.4218480550719, 34.56352685459518], [-77.42199436797864, 34.5635706762406], [-77.42208802226882, 34.563548876076176], [-77.4222419881783, 34.56351666281421], [-77.42232720762522, 34.56346797319812], [-77.4224080909334, 34.56342304193977], [-77.42243892674352, 34.563390314146574], [-77.42260702582077, 34.56321524462219], [-77.42261498642158, 34.56319160950584], [-77.42263584160806, 34.56316463279311], [-77.42277640629669, 34.562917745422574], [-77.4230296771079, 34.562750929686075], [-77.4230727111173, 34.562723362018005], [-77.42323313051739, 34.56249494457088], [-77.42323154547515, 34.56248276188516], [-77.42316256442402, 34.562285790363745], [-77.42313787455876, 34.5621725923277], [-77.42294323454777, 34.56222445040643], [-77.42271954512154, 34.562349811768016], [-77.42266105804606, 34.5623856375517], [-77.42263566750563, 34.56241491191607], [-77.42242127227425, 34.56258637830265], [-77.42224182285742, 34.56279082618201], [-77.42218257531766, 34.56285199394836], [-77.42199796676282, 34.56304036377344], [-77.42184795872981, 34.5630951533057], [-77.42162068791046, 34.56317816175547], [-77.42129749754712, 34.56323573341777], [-77.4210601222569, 34.56323827598405], [-77.42087320981483, 34.563242651543405], [-77.42052043959902, 34.56309216744519], [-77.42027211059536, 34.56253723758398], [-77.42022004897785, 34.56234247064195], [-77.42022415747984, 34.56228580717024], [-77.41987809915122, 34.56213369045657], [-77.41978012586495, 34.56203095446082], [-77.4195046859502, 34.56196517562121], [-77.41948413571016, 34.561957877548906], [-77.41946942537206, 34.56197027017387], [-77.41940692128045, 34.56232058640696], [-77.41939281948345, 34.562405922797765], [-77.41948428055309, 34.56270372017899], [-77.41964987681564, 34.56303954098246], [-77.41974976498389, 34.56320352012456], [-77.41971019443882, 34.56345257051874], [-77.41948454626227, 34.56406732165264], [-77.41947860811463, 34.56408546307778], [-77.41947963725123, 34.564091718320064], [-77.41948005582468, 34.56409650372917], [-77.419322396311, 34.564788690179476], [-77.41909076515999, 34.56489164081463], [-77.41872924755228, 34.56501437830386], [-77.41869684720655, 34.565023268892986], [-77.41866553050653, 34.56502475316165], [-77.41830290314542, 34.56501854541072], [-77.41804238808137, 34.56500472150968], [-77.41790891321969, 34.56475479028006], [-77.41763700403189, 34.56465096600474], [-77.4176994035815, 34.56434891268349], [-77.41751487263089, 34.56418275907223], [-77.4172913962945, 34.56440785459846], [-77.41735714541817, 34.56465285672402], [-77.41742319442953, 34.56481339847352], [-77.41712110792996, 34.56522594672907], [-77.4170906703981, 34.56525320865746], [-77.41702559929595, 34.56529541847099], [-77.41682252961198, 34.56542750075618], [-77.4167272196344, 34.56556984999085], [-77.41664292946854, 34.56568441496624], [-77.4163333415175, 34.56599793605031], [-77.41617590598128, 34.56609763054832], [-77.41593941952087, 34.5661684046156], [-77.41576029952145, 34.566327359367534], [-77.4156304113011, 34.566437623310115], [-77.41554553101761, 34.56657306118043], [-77.41539562652937, 34.5668046168082], [-77.41532957425267, 34.56700592242506], [-77.41515166916373, 34.567186631949646], [-77.41509404604058, 34.56727275977442], [-77.41496855890631, 34.5675180691409], [-77.41475781594224, 34.56790034087291], [-77.41460838689264, 34.56803100594905], [-77.41429422264578, 34.568237445994484], [-77.414574149918, 34.568395033037305], [-77.41453404173376, 34.568810666625296], [-77.41418129229018, 34.56887523789081], [-77.41396999042594, 34.56857793576867], [-77.41358713645431, 34.568752204900775], [-77.413563082067, 34.56875364728742], [-77.41318206863548, 34.56857915308966], [-77.4128943318592, 34.56843962528487], [-77.4126212688765, 34.56823423994311], [-77.41239407285198, 34.567931133747365], [-77.41229853015325, 34.567779458046076], [-77.41222365722516, 34.56768732028538], [-77.4120000771666, 34.56758557685615], [-77.41170636646535, 34.56776202332352], [-77.41163145473176, 34.56780012084989], [-77.41160614486976, 34.567820375866354], [-77.41156189549747, 34.56783057610079], [-77.41086755731085, 34.56793630295201], [-77.41081824124791, 34.56794839854082], [-77.41045392817423, 34.568367460883685], [-77.41045419414199, 34.56839961491092], [-77.41057372035168, 34.56877474245237], [-77.41061784756995, 34.568984443179644], [-77.41065412838822, 34.56918771199486], [-77.41081837789685, 34.569388015285654], [-77.41094322086636, 34.569436007077655], [-77.41111051917453, 34.56954638843133], [-77.41142472812669, 34.56969674039015], [-77.41160635319035, 34.56981394146008], [-77.41192264628184, 34.5697699887179], [-77.41205983023909, 34.56976974302171], [-77.41210078313756, 34.56982796880657], [-77.41230274468549, 34.56989746951726], [-77.41239431301128, 34.57003751697314], [-77.41249736528448, 34.57008422389879], [-77.41259783780825, 34.57018076840403], [-77.41249905308625, 34.57030787930462], [-77.41239438029294, 34.57062258186796], [-77.41239191365425, 34.57063242849446], [-77.41238765538391, 34.570635702943505], [-77.4122238376612, 34.570900113311126], [-77.41166945194732, 34.571096143096085], [-77.41160648820777, 34.5710920755254], [-77.41153889425243, 34.57111000357249], [-77.41139148470677, 34.571204137471206], [-77.4109368801908, 34.57139728251947], [-77.41081858133147, 34.57150199008345], [-77.41064717816357, 34.57197600835312], [-77.41054689076363, 34.57217525634228], [-77.41042467864246, 34.57228746665111], [-77.41016114634745, 34.57237152528984], [-77.41003071936177, 34.57251210102362], [-77.40989577974528, 34.57241468160524], [-77.4097287983959, 34.57229338153542], [-77.40963671781466, 34.572257889197864], [-77.40944945528085, 34.57211092989512], [-77.40941923356466, 34.572103715748035], [-77.40924272293023, 34.57205775563854], [-77.40915342069366, 34.572048115867815], [-77.4089915960649, 34.57197524286223], [-77.40889517820781, 34.57193911399131], [-77.40868291972188, 34.571841121316496], [-77.4084547544467, 34.57188553258471], [-77.40832041390769, 34.571792336234736], [-77.4078100886731, 34.57172124609799], [-77.40770214895753, 34.57169872203234], [-77.40766678639592, 34.571672113605935], [-77.40761060768648, 34.57168950210463], [-77.4072728073053, 34.571629790041115], [-77.40702620791366, 34.57167559150248], [-77.40687883234247, 34.57166307674098], [-77.40675074819764, 34.571736143714205], [-77.40612147214787, 34.57193206473425], [-77.40609088949434, 34.571935451004755], [-77.40592907447878, 34.57199279648623], [-77.40542407946413, 34.57219624074986], [-77.40530294398796, 34.57229273114061], [-77.40500202043685, 34.57245091389094], [-77.40451499519466, 34.572816391975465], [-77.4042615054714, 34.572809487017295], [-77.40412101205557, 34.57279934159765], [-77.40403145226708, 34.57278780436912], [-77.40374834724905, 34.57275512712754], [-77.40372702893828, 34.57277510843985], [-77.4033750103323, 34.57283126065186], [-77.40346273704185, 34.5731979523263], [-77.40349613083936, 34.57344196747077], [-77.4034259136065, 34.573727912297], [-77.40320616612624, 34.57408413581797], [-77.4029390698122, 34.57436274752591], [-77.40268091377912, 34.57473089869039], [-77.40254507938461, 34.57478289241679], [-77.40232519435426, 34.57506043473552], [-77.4022244907857, 34.57515407154503], [-77.40215108501856, 34.5752163261076], [-77.4019666754643, 34.57531089774322], [-77.4017570883079, 34.57545507920405], [-77.4016836219194, 34.575498432714184], [-77.40150578801625, 34.57560326486294], [-77.40140495124892, 34.57566292744954], [-77.40136308924218, 34.575698471073], [-77.40114868492986, 34.57584833216468], [-77.40071073456286, 34.576142573811694], [-77.4006350455126, 34.57621811158924], [-77.4005750827035, 34.57624846601421], [-77.4004533201962, 34.576310929552534], [-77.40018107815138, 34.576425241504765], [-77.40003736564864, 34.57650945581582], [-77.39978706760498, 34.576738982971435], [-77.39950135204936, 34.57685835668208], [-77.39939305981925, 34.57689073461937], [-77.39924606805312, 34.57693689455598], [-77.3991960557175, 34.57695780848195], [-77.39914649331394, 34.57695174625021], [-77.39899905425058, 34.576952544935835], [-77.39860725302658, 34.57687304383063], [-77.39860505444332, 34.576872813812884], [-77.39860067591215, 34.576876341708406], [-77.39821104809315, 34.57693844201498], [-77.39802986054701, 34.57718332499476], [-77.39798448887743, 34.577385103308536], [-77.39781701360671, 34.57750374284643], [-77.39764375373782, 34.577672146841294], [-77.39756288978056, 34.57771975685063], [-77.39742298953755, 34.57780496307582], [-77.39732829721149, 34.5778023126613], [-77.39713673388769, 34.57781587696192], [-77.39702898517672, 34.5777519061696], [-77.39666990373219, 34.57761239194843], [-77.39663498776038, 34.57760346745552], [-77.39661826153196, 34.57760024117205], [-77.39659098304678, 34.57758615261308], [-77.39658551363618, 34.57753362393245], [-77.39646128907447, 34.57675571831327], [-77.3965118697717, 34.5760320634646], [-77.39642615729072, 34.57591164186627], [-77.39584713931308, 34.575503584494236], [-77.39565479472577, 34.57538105984936], [-77.395618422605, 34.57517902732976], [-77.39541369532671, 34.57482656026344], [-77.39541330765486, 34.57478404655844], [-77.39538594986149, 34.574715514109386], [-77.39523677279475, 34.57438494200724], [-77.39523802200142, 34.574192126341345], [-77.3952130417819, 34.573704890758655], [-77.39523883105574, 34.57353550139368], [-77.39532264123807, 34.573239677458105], [-77.3953566382585, 34.5729897073065], [-77.39563284910244, 34.572860669656386], [-77.39584735898055, 34.57277649833415], [-77.39661907570665, 34.572504763618504], [-77.39663534727225, 34.57250035730287], [-77.3966453907672, 34.57249425542694], [-77.396674353136, 34.572479254001465], [-77.39665612951363, 34.57245949048631], [-77.3966353524508, 34.57242891473383], [-77.39652068494806, 34.571775901642866], [-77.39641263961504, 34.57166786745452], [-77.39605260799156, 34.57149873412584], [-77.39584747569236, 34.571354503244706], [-77.39566236490715, 34.57112647337972], [-77.39553817305989, 34.57094488423155], [-77.39529348226272, 34.570728115383055], [-77.39528636133963, 34.57037643060076], [-77.39532256482042, 34.57012684624759], [-77.39545362795411, 34.56987549917222], [-77.39552425602767, 34.56974927831247], [-77.39557870471714, 34.56966532098026], [-77.39569338674241, 34.56948254922408], [-77.3956793663501, 34.56940756913351], [-77.39559322943828, 34.56923865336013], [-77.39546378080821, 34.56884360004768], [-77.39545912849368, 34.56883342835737], [-77.395459128938, 34.56882760012217], [-77.39545372211686, 34.56881440932711], [-77.39518908091125, 34.568447816061195], [-77.39538435225722, 34.56806990333428], [-77.3954101106549, 34.567991356075375], [-77.39541614444917, 34.56794990467411], [-77.39545379999937, 34.56794379312253], [-77.39548947454233, 34.567941459661185], [-77.395847773561, 34.56780203631722], [-77.39603729967128, 34.56768053823407], [-77.39604476413396, 34.567678844710954], [-77.39606431187191, 34.56766361993792], [-77.39624175845196, 34.567502130772], [-77.39632512978565, 34.5674347684532], [-77.39624177375029, 34.5673126762514], [-77.39607269325555, 34.56722884436613], [-77.3960085537221, 34.567229092957135], [-77.39584782216937, 34.56723257484768], [-77.39555746080345, 34.567232600018556], [-77.39545386209399, 34.56725407735834], [-77.39537633871231, 34.56723063407664], [-77.39510094486934, 34.56723104370523], [-77.3950599059546, 34.567231104722836], [-77.39497263880065, 34.5672993677217], [-77.39483707776063, 34.567409330529145], [-77.39466592458946, 34.567462921134585], [-77.39442870495112, 34.56753944128895], [-77.39427195008837, 34.56760728078397], [-77.394125731349, 34.5675944952212], [-77.39387799291987, 34.56757937521763], [-77.39367763716757, 34.56760806720102], [-77.39348404622373, 34.56746088495013], [-77.39346419865197, 34.56744432963793], [-77.39344667321828, 34.56742546604222], [-77.3933643921308, 34.56730836507635], [-77.3933001343844, 34.56722026622466], [-77.3931687694263, 34.567040983997586], [-77.39313284945878, 34.56700013855632], [-77.39309014748557, 34.566947230113726], [-77.39304022826772, 34.5670057357048], [-77.3930089271033, 34.56706404178079], [-77.3929378561991, 34.567334789107306], [-77.39269608788668, 34.56777741010669], [-77.3926406402884, 34.567906570151166], [-77.39260293603012, 34.56797174735054], [-77.39263512414747, 34.568032770457116], [-77.39269604892206, 34.56809440107084], [-77.39290751222907, 34.568352383265704], [-77.39298146790692, 34.56845864511738], [-77.39299264116161, 34.56865981117155], [-77.39298438182242, 34.56876586558833], [-77.39290175586581, 34.568999589754554], [-77.39269593239237, 34.56904669966143], [-77.39256031941062, 34.56910546698491], [-77.39243235677405, 34.569129532847086], [-77.39230195613231, 34.56911727579936], [-77.3920113023953, 34.569017553394744], [-77.39190800612752, 34.56898241602045], [-77.39187256826352, 34.56896443291748], [-77.39176607196018, 34.56894160074202], [-77.39151405040558, 34.568898439765064], [-77.39139091446796, 34.56886300648035], [-77.391284900017, 34.56883339441204], [-77.39112009980332, 34.568783315136415], [-77.39085361764134, 34.56864863974231], [-77.39084601453101, 34.568520583249935], [-77.39088243507119, 34.56821991364859], [-77.39092628318971, 34.56800459597124], [-77.39112030025521, 34.56736778606785], [-77.39112927076494, 34.56734483596903], [-77.39113500064697, 34.56733434551045], [-77.39114420159464, 34.567307269058595], [-77.39126033899548, 34.566617932702776], [-77.39125676448846, 34.56646764254023], [-77.39153716052083, 34.56602710967627], [-77.39167798705937, 34.56580609484182], [-77.3917519820066, 34.56554707163604], [-77.39190851148143, 34.56517997476842], [-77.39201333216258, 34.56477314244442], [-77.39198220373456, 34.564664722914806], [-77.39217104326495, 34.564354661443275], [-77.39223422684437, 34.56420379876046], [-77.39226722910537, 34.56416092509946], [-77.39230262189258, 34.56393892083623], [-77.39231852456757, 34.56376706838014], [-77.39232116966608, 34.56374672397082], [-77.39234575969732, 34.56355085442024], [-77.39230268800071, 34.56343271727143], [-77.39225855540866, 34.56339871716214], [-77.39200994728051, 34.56338701006221], [-77.39190875728701, 34.563357677063216], [-77.3918901784353, 34.56340428660349], [-77.39179573637445, 34.5637207244264], [-77.39170428963651, 34.5638556701932], [-77.39134926776255, 34.56415315113602], [-77.39112072442632, 34.56440594185926], [-77.39057470876676, 34.56486774084733], [-77.3906499112407, 34.56519874698146], [-77.39033271391729, 34.565181554583276], [-77.39005681492866, 34.565494286145174], [-77.38979785023821, 34.56555615946491], [-77.38954473830515, 34.56565216128985], [-77.38941990295581, 34.56574891641955], [-77.3893477327402, 34.56583210650976], [-77.38932061915729, 34.56589775576637], [-77.38934770765029, 34.565984703348875], [-77.3893950929002, 34.56604822032668], [-77.3895446421309, 34.566245642874385], [-77.3895758169876, 34.566285519112895], [-77.38972580367962, 34.56649317329115], [-77.3898618271786, 34.566668837635646], [-77.38954450555141, 34.56709161660883], [-77.38930767733831, 34.567004004219996], [-77.38909557612664, 34.56714468568086], [-77.3890464246839, 34.56721100668372], [-77.38875649571759, 34.5676330646344], [-77.38873539675706, 34.56765769734191], [-77.38867400993075, 34.567689283904315], [-77.38845764949735, 34.567823026434006], [-77.38836248854707, 34.567894751977654], [-77.3881617002587, 34.5679713612386], [-77.38796848196603, 34.56813943083533], [-77.38756048449338, 34.56828952444912], [-77.38718048537001, 34.568503023521956], [-77.38701726258536, 34.568601454003826], [-77.3867864783262, 34.56871616106294], [-77.38658103204894, 34.56884023905137], [-77.38646733586793, 34.56893731653149], [-77.38639245554238, 34.56899886136379], [-77.38622783092688, 34.5690685638411], [-77.38599844310997, 34.56921684054234], [-77.38584493773712, 34.569205515442334], [-77.38560447453905, 34.56921286377045], [-77.38545966368372, 34.56915799975064], [-77.3849598038186, 34.569074002281184], [-77.38484551272535, 34.56905928912937], [-77.38481657758787, 34.56901816884079], [-77.38438013794706, 34.56877883577914], [-77.38427921599467, 34.568322996284145], [-77.38402891724411, 34.567793863510786], [-77.38383053070665, 34.56775235910762], [-77.38382508681697, 34.567539338614075], [-77.38391397511828, 34.56740255615716], [-77.38402912904262, 34.5668613716705], [-77.38409336796273, 34.566651527054766], [-77.38409572266781, 34.566579488712186], [-77.38402921675167, 34.566476022543355], [-77.38375087427569, 34.566151821262736], [-77.38355069636995, 34.56588063480022], [-77.38353128461368, 34.5653465273609], [-77.38349198491557, 34.565039967805546], [-77.38341463937743, 34.5648647240805], [-77.38324168392222, 34.56487366652765], [-77.38278569164315, 34.56429266421043], [-77.38254940520174, 34.564223849984074], [-77.38245398335275, 34.56407379900684], [-77.3821358153685, 34.56388017472254], [-77.38202799390191, 34.56355276852], [-77.38180179248907, 34.563439305521946], [-77.38166627772105, 34.56335238364728], [-77.38158313729733, 34.56328195847172], [-77.38148190993735, 34.56320692863985], [-77.3813606629027, 34.56312927642639], [-77.38127241185057, 34.56306083370139], [-77.38096745213687, 34.562856527204666], [-77.38093716227796, 34.562797715017396], [-77.38087861328793, 34.562528755319065], [-77.38012293358022, 34.562163730147645], [-77.38009084140464, 34.562147489223214], [-77.38008289358737, 34.562143476986485], [-77.38006591009778, 34.56213735827092], [-77.3800794815904, 34.56212315167937], [-77.38009085095818, 34.56211312934704], [-77.38029987895625, 34.56167906723328], [-77.38025440412872, 34.56143712538184], [-77.3801631171749, 34.56127421737802], [-77.380122522377, 34.561246195149735], [-77.38009109951712, 34.56122036119749], [-77.37991061364289, 34.56108061421784], [-77.37986564876904, 34.561074071989886], [-77.3796972050264, 34.561085133357025], [-77.37943264680221, 34.56124003096691], [-77.37930321511047, 34.56128519827075], [-77.37918371933426, 34.56128660765661], [-77.3790757416833, 34.5614309584924], [-77.37851516059449, 34.56191709200938], [-77.37815128958319, 34.56202120733334], [-77.37810429070593, 34.562013763124455], [-77.37805797332535, 34.56200222060386], [-77.37772726561224, 34.56198882114909], [-77.3776048777616, 34.56206752549103], [-77.37742500152643, 34.56219231842416], [-77.37733324681238, 34.562252002903676], [-77.37720165570913, 34.562267455712714], [-77.37696465838123, 34.56215979778465], [-77.37693933828992, 34.56215784414964], [-77.37661682523606, 34.56213295886196], [-77.37654540757316, 34.56213554113025], [-77.37646294199033, 34.562143231816094], [-77.37634843563686, 34.562144881627326], [-77.37625693757336, 34.56214812320395], [-77.3761514644759, 34.562151691739835], [-77.37587465110236, 34.56219064382274], [-77.37575751555565, 34.56218478914838], [-77.37557395172124, 34.56213351252643], [-77.37554298163008, 34.56213345605081], [-77.37536359469804, 34.562132839184194], [-77.37523103706712, 34.56212794205177], [-77.37507965970906, 34.562125444403044], [-77.374969627906, 34.56221751608474], [-77.37487701365296, 34.56213593887068], [-77.37461764809076, 34.562118654944975], [-77.37457572128663, 34.56212471599838], [-77.37455160084336, 34.56210899014015], [-77.37448743831752, 34.56209223482073], [-77.37437877478193, 34.56205957138137], [-77.37426265384939, 34.56203750185376], [-77.37418182905729, 34.56199305885749], [-77.3739403135499, 34.562006798632225], [-77.3737879399554, 34.56185599276167], [-77.37333461215192, 34.56189778155258], [-77.37303446126799, 34.561452482056055], [-77.37300022908443, 34.56140639129814], [-77.37269047516874, 34.56098692658019], [-77.37252314077713, 34.56067703658576], [-77.3723705999311, 34.56052882387898], [-77.37229531229501, 34.55994956112753], [-77.3723101853827, 34.559858600901], [-77.3723813833366, 34.55966687349011], [-77.37244317423631, 34.559238210435396], [-77.3726083562011, 34.55896651698559], [-77.37265414547196, 34.55858580792997], [-77.37289190730239, 34.55807653914674], [-77.37282774782645, 34.557898506502355], [-77.37300152131976, 34.55786433386569], [-77.37325200825654, 34.558024650017714], [-77.37354860598963, 34.55824124233277], [-77.37378926379408, 34.55812812054964], [-77.37407038210979, 34.558209738766124], [-77.37418314548096, 34.55823524174909], [-77.37422810747245, 34.55826008583108], [-77.37431848544988, 34.55829553068882], [-77.37457700922532, 34.55839691967543], [-77.3747213758316, 34.558237471237504], [-77.37457711213463, 34.55810028950246], [-77.37448101381362, 34.55795117754988], [-77.37440888455932, 34.5578579423818], [-77.37428204785583, 34.55755799847468], [-77.37423072321623, 34.55740808982136], [-77.37411041555058, 34.55705183075173], [-77.37435630361949, 34.55677791303362], [-77.37457764121436, 34.55657803893222], [-77.374586971265, 34.55655859481156], [-77.37458856792884, 34.55654659958041], [-77.37466193138071, 34.55633551155609], [-77.37464869696265, 34.55626095305039], [-77.37465461864215, 34.55623042508303], [-77.37463606385442, 34.556189781594924], [-77.37460836554504, 34.55613095029123], [-77.37461551393606, 34.556089283742416], [-77.37457783097943, 34.556033245040155], [-77.37446301829905, 34.55585115025686], [-77.3743487084676, 34.555743807968746], [-77.37449207266346, 34.5553912596502], [-77.37440758565025, 34.5553107616381], [-77.37379050586178, 34.554655556075744], [-77.37372428061278, 34.55463149720856], [-77.37323127554103, 34.55463115037298], [-77.37233551202993, 34.55463023170658], [-77.37221486119988, 34.55473986850149], [-77.3721862612092, 34.55475091415642], [-77.37205896248412, 34.55480007786857], [-77.37162030200105, 34.555071709649255], [-77.37142691103585, 34.5551080847259], [-77.37119964078883, 34.55516882568788], [-77.37090804064769, 34.55525584195804], [-77.37063894253708, 34.55550461416257], [-77.37039143624558, 34.55530719132704], [-77.36993744244856, 34.555198648526], [-77.36985123354404, 34.55524198024712], [-77.36979542382083, 34.55518638785293], [-77.36978109688185, 34.55512827531699], [-77.36945745727098, 34.55492442687235], [-77.36932581467838, 34.55491120098606], [-77.36906363195163, 34.55473225600134], [-77.36891475333553, 34.55456450957552], [-77.36878354786343, 34.55442287230788], [-77.36866997578275, 34.5541417772325], [-77.3686361118257, 34.554056092508425], [-77.36862341085913, 34.554021383930134], [-77.36847312711345, 34.55390030446296], [-77.36844530873046, 34.55386476230034], [-77.36840143607546, 34.5538410829183], [-77.36827622178284, 34.553794704010194], [-77.36814810786112, 34.5538033794806], [-77.36790277306883, 34.55370064083337], [-77.3678825841666, 34.55369378189546], [-77.36755581951526, 34.55370932902677], [-77.3674906388056, 34.55366368608113], [-77.3669993230598, 34.55334113280773], [-77.36686427838985, 34.55326713853463], [-77.36671891903451, 34.553069659061265], [-77.36625988494609, 34.55316273604117], [-77.36593245847637, 34.55312241737877], [-77.36578303621259, 34.553119889358946], [-77.36549452075917, 34.55306823821688], [-77.36514834514406, 34.55307224171746], [-77.36506376927336, 34.55307762114309], [-77.36457803556438, 34.55306629569067], [-77.36436328148022, 34.55306372242217], [-77.36401674107381, 34.55300830978364], [-77.36386841471175, 34.552992862921755], [-77.3635803889614, 34.55296011506816], [-77.36341791606522, 34.55297872421036], [-77.36321014186612, 34.55290760193707], [-77.36279803605164, 34.55283295487467], [-77.36244474864138, 34.55274966135378], [-77.36221360429991, 34.552684579353546], [-77.36201631146767, 34.55267838878781], [-77.36194646040897, 34.5526439857957], [-77.3619424150332, 34.55260052232909], [-77.36192759076452, 34.552545440181085], [-77.36179844263557, 34.55237643079132], [-77.36178273615636, 34.552285119767916], [-77.36175734890077, 34.55213752402936], [-77.36173568781388, 34.55195535378873], [-77.36176360154948, 34.55181683231456], [-77.36179061347252, 34.55164308451647], [-77.36179253853852, 34.55148628165152], [-77.36181598032823, 34.55129442473909], [-77.36181752723463, 34.55114955952118], [-77.36182428832265, 34.55100499837262], [-77.36184671874268, 34.5507883940452], [-77.36176154396506, 34.5506679719541], [-77.36188003153146, 34.55053538782035], [-77.36199664286637, 34.55019216401724], [-77.36200462567932, 34.550143316967365], [-77.36200910491688, 34.550101452391814], [-77.36203157769465, 34.54968295664239], [-77.36199511692689, 34.54965503683206], [-77.36202900619332, 34.54961440541718], [-77.36182070022817, 34.54935978070251], [-77.36176982422278, 34.54919783247808], [-77.36176161677342, 34.54898759064706], [-77.3617557281822, 34.54892618427319], [-77.3615973400754, 34.548733022308575], [-77.36175188065296, 34.54848612401088], [-77.3617481716776, 34.5484491357118], [-77.36173113403119, 34.54822410596552], [-77.36173288980464, 34.54798015468256], [-77.36173385238666, 34.54797720549563], [-77.36166616993447, 34.547743811724054], [-77.36213985766418, 34.54727275691223], [-77.36223162147382, 34.54722933415042], [-77.36243232903455, 34.54714382413037], [-77.3625377282458, 34.54704221321093], [-77.36259731886652, 34.54691052146064], [-77.36293495520805, 34.54683974226737], [-77.36295557376236, 34.54682364088187], [-77.3631414252173, 34.54667850626541], [-77.36314813216327, 34.54666545363151], [-77.36322943745066, 34.546539372583936], [-77.36324646052196, 34.54648124340366], [-77.36328751999129, 34.546318571802075], [-77.36326738775455, 34.546289081579935], [-77.36326023264412, 34.546239580569264], [-77.36325130338162, 34.54604657254684], [-77.36333210847661, 34.545802051544804], [-77.36331880272259, 34.54577134959908], [-77.36335197811712, 34.5457705218446], [-77.36342321089168, 34.54573310003906], [-77.3637496848128, 34.54554669160763], [-77.3640216754535, 34.54561657622904], [-77.3644529775588, 34.54538384192951], [-77.36449080235681, 34.54534808386416], [-77.36425298635426, 34.545105071965295], [-77.3640987593972, 34.544945211242734], [-77.36398705639814, 34.54482357054076], [-77.36376913565738, 34.544694969705795], [-77.36352342483897, 34.54469170403186], [-77.36326380228996, 34.54475113898187], [-77.36301255279844, 34.54507836331916], [-77.3629883550139, 34.5451051445299], [-77.36298383963536, 34.545111659334836], [-77.36297419054932, 34.545122384728835], [-77.36294845529672, 34.54512687585713], [-77.3625775192092, 34.5453008917615], [-77.3622751369181, 34.5452078643428], [-77.36224899547683, 34.545173490618026], [-77.36218867468769, 34.545136878524744], [-77.36197694779784, 34.545118512158794], [-77.36175778488112, 34.54506249063974], [-77.36175636788272, 34.54503775173419], [-77.36174993032841, 34.545008061574], [-77.36167505361094, 34.54480463754324], [-77.36166534679953, 34.54464968447516], [-77.36161558957701, 34.54456837663939], [-77.36142070598139, 34.54438392965718], [-77.36139872344297, 34.54436870967303], [-77.36135867902071, 34.544360550836394], [-77.36126682088596, 34.54427627934492], [-77.36143048180779, 34.54395639285095], [-77.36145027924096, 34.543868807255876], [-77.36145496156635, 34.5438570358072], [-77.36145378499005, 34.54384427160982], [-77.36143348915033, 34.54382486963321], [-77.36118784953486, 34.5435627776139], [-77.36126594909436, 34.54339460681903], [-77.361084745441, 34.54319422534574], [-77.36120023634727, 34.54307063863225], [-77.36143024940607, 34.54288129643335], [-77.36144027185242, 34.542870473663775], [-77.36145548843871, 34.542862756379265], [-77.36147806092987, 34.54286036794793], [-77.36224563193966, 34.542644884694084], [-77.36247852450532, 34.542585924812656], [-77.36269954556373, 34.54248970338245], [-77.36303796991848, 34.54233076432467], [-77.36333518069499, 34.54230223408721], [-77.36374024612846, 34.54205894662317], [-77.36378163269046, 34.5420227203541], [-77.36383048001437, 34.54200883092065], [-77.36389559464251, 34.54199614358741], [-77.36422603786833, 34.541878292844004], [-77.3645085144839, 34.54187964230234], [-77.36461858127497, 34.54187974569417], [-77.36476307830512, 34.54191161697109], [-77.36499931846151, 34.54211842740965], [-77.36500356358286, 34.54212180204525], [-77.365001062701, 34.54212496753172], [-77.36493688910443, 34.542376231274154], [-77.36520023108714, 34.54271289399373], [-77.3645996920952, 34.542707197103255], [-77.36427708241463, 34.542760492709526], [-77.36420357796646, 34.54286195956837], [-77.3641868675508, 34.54297391794442], [-77.36412075166409, 34.54318115879546], [-77.36387813692181, 34.54345768251977], [-77.3639276341536, 34.543500907671024], [-77.36384993460207, 34.543546125951295], [-77.36391954257613, 34.54390911867074], [-77.3639264258994, 34.543990732561376], [-77.36405676849573, 34.54414347787649], [-77.36410887340337, 34.54424859427316], [-77.3642450617214, 34.544235084507015], [-77.36456683773798, 34.54414641287676], [-77.36482884346549, 34.54386074843353], [-77.36480397984145, 34.543513556966914], [-77.36559527776963, 34.54326069264525], [-77.3656446706336, 34.54292911591537], [-77.36559193520651, 34.54277152441897], [-77.36617365448895, 34.54254754450637], [-77.36672394053599, 34.542608452242426], [-77.36665991983526, 34.542800477267875], [-77.36725056461368, 34.542716939826896], [-77.36773645596492, 34.54287727387494], [-77.36783373358948, 34.54287755241082], [-77.36921522445957, 34.54267927575142], [-77.36931226716008, 34.54263616225828], [-77.36940245743043, 34.542655682409496], [-77.37001506417117, 34.54262393806807], [-77.37009779998905, 34.54261967061343], [-77.37058511405642, 34.542726034600676], [-77.37087791988588, 34.54284104944508], [-77.37117293116195, 34.54263819849652], [-77.37123573527312, 34.542448046387186], [-77.37134305952398, 34.54215227211482], [-77.37148538534156, 34.54179678696046], [-77.37168748898762, 34.54176775056915], [-77.37207779329529, 34.541588259796704], [-77.372104839513, 34.54157559621513], [-77.37247871082232, 34.54150058464783], [-77.37284913019394, 34.5417258902078], [-77.3730024531633, 34.54186169880717], [-77.37321090863135, 34.542163409247884], [-77.37322121069695, 34.54217890674956], [-77.37324640857706, 34.54226835216407], [-77.3734070161427, 34.54252105893986], [-77.37338079028271, 34.54262858252887], [-77.37335997831451, 34.54270864848327], [-77.37323018024213, 34.542982481651535], [-77.37318953354495, 34.54312243687555], [-77.37314992041232, 34.543151510980266], [-77.3728076295015, 34.54343336778656], [-77.37278874499725, 34.54347191964241], [-77.37260769658192, 34.5437193079716], [-77.37267867600103, 34.543867338953994], [-77.37274796241455, 34.54398560460645], [-77.37297849573571, 34.54415552753535], [-77.37309402295195, 34.54456606532246], [-77.37304707492385, 34.5446353007228], [-77.37279558524543, 34.54491517848394], [-77.37319155349778, 34.54468227072402], [-77.3735088707839, 34.544858028091326], [-77.37358001764154, 34.54486375335344], [-77.37372431786123, 34.54493633916707], [-77.37385272830963, 34.544935102775476], [-77.3739712563368, 34.544923159665174], [-77.37404731942446, 34.54493322895666], [-77.37409510317678, 34.54492882006467], [-77.37416857496743, 34.54487805322112], [-77.37418938465274, 34.544850505102374], [-77.37420044356118, 34.544817310211904], [-77.37410350068802, 34.54472788116898], [-77.37415328266025, 34.54458459897472], [-77.37413165208511, 34.544478995310925], [-77.37429345508488, 34.54426407918899], [-77.37432818605448, 34.544172979804955], [-77.3743835069383, 34.54405736741197], [-77.37441385696947, 34.54394866669041], [-77.37451055600756, 34.543764992697675], [-77.37463149188127, 34.54352535336671], [-77.37456754671305, 34.543436858616076], [-77.3745604920094, 34.54329258971059], [-77.37456063417665, 34.54294819593716], [-77.37485720481251, 34.54244353056502], [-77.37489911128603, 34.54240975674823], [-77.37532258349817, 34.54217320186426], [-77.37560837798587, 34.541981304818016], [-77.37575987234614, 34.54188921013386], [-77.37600405659674, 34.54184448953827], [-77.3762809665421, 34.54179377450957], [-77.37639825614087, 34.541772807244044], [-77.37651819632995, 34.54176136737173], [-77.37664142641448, 34.54166896522575], [-77.37673521382617, 34.54161857990718], [-77.37670656028533, 34.54147156330459], [-77.37665175001813, 34.54142264793626], [-77.37640991196209, 34.54125904550586], [-77.37633369454794, 34.541271028700976], [-77.3756841469489, 34.541355689522476], [-77.37562232980028, 34.54136659497186], [-77.3755799246876, 34.54135886915883], [-77.37553360486011, 34.54133898995179], [-77.3751330470293, 34.541214364248404], [-77.37498819717514, 34.540927944514436], [-77.37495332325545, 34.540867607982534], [-77.37487799249767, 34.54046687943245], [-77.3748774987339, 34.540454242740424], [-77.37487340845726, 34.54044528905945], [-77.37486046981444, 34.540341207469055], [-77.37481048317883, 34.54001010797517], [-77.37475360695262, 34.539982441967794], [-77.3748121175172, 34.539938145509836], [-77.37487398920351, 34.53974580440285], [-77.37492917566087, 34.539498394008746], [-77.37503171690452, 34.539452699586526], [-77.37567334623648, 34.5391188621837], [-77.3761277518849, 34.53908802239703], [-77.37646062446325, 34.53902377942619], [-77.37682240554203, 34.53896971672441], [-77.3768720844191, 34.53895338642863], [-77.37725079737965, 34.53880095786132], [-77.37750162303217, 34.53876290992745], [-77.37803955012919, 34.53864058154331], [-77.37866304635548, 34.53854177568391], [-77.37882609712472, 34.53857739756693], [-77.37935352838713, 34.53867029516057], [-77.37960997341577, 34.53863205329822], [-77.3801677709248, 34.538222640204474], [-77.38030381269759, 34.53813913886829], [-77.38035899303765, 34.53795023981204], [-77.38041150617585, 34.53790688294771], [-77.38057145933433, 34.53777264064259], [-77.38067564973454, 34.5377421660349], [-77.38080626566136, 34.53780943364805], [-77.38085498773303, 34.5378477962847], [-77.38088862335594, 34.53792689920569], [-77.38065785726296, 34.538151978568884], [-77.38118321992943, 34.53849868796694], [-77.38121161211981, 34.53854345665401], [-77.38151948811858, 34.53851740321937], [-77.38196884890365, 34.5384758465501], [-77.38260621195695, 34.538453170379825], [-77.382748468724, 34.53871871254596], [-77.38279874399723, 34.53879023716714], [-77.38283394262201, 34.53881752593144], [-77.38298406739824, 34.53913276110267], [-77.38330920337685, 34.539238653758545], [-77.3832450360763, 34.53941800917702], [-77.38322507968866, 34.53955989965684], [-77.38342736889196, 34.53971127640501], [-77.38347244990779, 34.53972866492401], [-77.38351039559055, 34.53974453374742], [-77.38385985806885, 34.53991817223397], [-77.38397577222729, 34.5401218547465], [-77.38408152744236, 34.540233178916395], [-77.3841426380071, 34.540342622914636], [-77.38427833554988, 34.540505054042214], [-77.38430804379088, 34.54054451685949], [-77.38433450126445, 34.54055978558597], [-77.3843336899443, 34.540595702778795], [-77.38444922428604, 34.54092047233911], [-77.38462754027238, 34.541007188047736], [-77.38444623804614, 34.541147096690395], [-77.38425843096886, 34.541386050029374], [-77.38414361783573, 34.54156663870822], [-77.38399249141787, 34.54174917217417], [-77.38394000783617, 34.54184083258056], [-77.38390201212673, 34.5418757590118], [-77.38385190371636, 34.54200372955528], [-77.38381855646864, 34.54210317809206], [-77.38384670941619, 34.54223358855187], [-77.3838967357247, 34.542304536202955], [-77.38398799766502, 34.54241423603302], [-77.3840848409199, 34.54255444048077], [-77.38393586037694, 34.542885542661566], [-77.3837831966594, 34.54308760187291], [-77.38368923924655, 34.543262273610665], [-77.38367381932014, 34.54343904034253], [-77.3837897684239, 34.543576316830226], [-77.38375376063951, 34.54379031274553], [-77.38368751557488, 34.543911527116364], [-77.38386171530144, 34.54384281065217], [-77.38420476868231, 34.543761224841646], [-77.38459233869153, 34.543709267296265], [-77.38499341006468, 34.54360707113584], [-77.38540871315766, 34.54360177613883], [-77.38628038146818, 34.543396800724935], [-77.3865709666342, 34.54328618872134], [-77.38725977581646, 34.5435655416763], [-77.38729501820836, 34.54359423211623], [-77.38734924947785, 34.543590841118274], [-77.38802411911368, 34.543944960665385], [-77.38808110069016, 34.543964728731595], [-77.38812562611966, 34.543980278197786], [-77.3882760001011, 34.54405858052993], [-77.38841966015504, 34.54407257977384], [-77.38851590581567, 34.54408233103801], [-77.38866770627355, 34.54400340057606], [-77.38872820874535, 34.54397428554694], [-77.38891369593634, 34.54385116286451], [-77.38894413817883, 34.54383095584697], [-77.38898013428322, 34.54380706201409], [-77.38932020644135, 34.543517169222106], [-77.38933145140906, 34.54351155209185], [-77.38934702914834, 34.543488977885914], [-77.389249359435, 34.543482720625114], [-77.38892025567321, 34.5435600894735], [-77.38876239607015, 34.54344881794904], [-77.38879930299159, 34.54334348050363], [-77.3886784225279, 34.543205106348395], [-77.38831097249046, 34.542924253961715], [-77.3882063622891, 34.542904123070414], [-77.3881507672566, 34.54286516482931], [-77.38745031876616, 34.54260793557081], [-77.38737202180671, 34.54258121778967], [-77.38736108797235, 34.54257845750474], [-77.38735130889287, 34.54257301015015], [-77.38735150804624, 34.542559887730036], [-77.3870232615653, 34.54213065898459], [-77.38729942507004, 34.54165940672584], [-77.3873015471232, 34.54160085775589], [-77.38732931896023, 34.54155579509381], [-77.38739733768469, 34.541458834526544], [-77.3874453180854, 34.54133528849395], [-77.38747652432278, 34.541283862429616], [-77.38751630416063, 34.54115006956282], [-77.38755782851212, 34.54107422777745], [-77.38752886375195, 34.54100279175198], [-77.38752187827707, 34.54090445457066], [-77.38746734417566, 34.54084244658238], [-77.38741518685725, 34.540667494792544], [-77.38737322867587, 34.540637775397684], [-77.3873606094678, 34.54061300924344], [-77.38736209422962, 34.540578429541355], [-77.38711217421582, 34.540159177522284], [-77.38715776634629, 34.53983519232347], [-77.3871673067185, 34.53966156069561], [-77.38721013614882, 34.53951123096851], [-77.3873313028489, 34.53922090898181], [-77.38736357358344, 34.539143587152154], [-77.38706150672957, 34.53894392644446], [-77.38705998331359, 34.538943500348616], [-77.38667219155633, 34.538800271686945], [-77.38650601185972, 34.538777613551936], [-77.38615138001724, 34.53866581445394], [-77.38588952583746, 34.53869188312902], [-77.38564447422038, 34.53874985265425], [-77.38509908871475, 34.538927673959456], [-77.38464174017088, 34.53884325332601], [-77.38431770257344, 34.538762650121555], [-77.38410349218942, 34.53863444757346], [-77.38391769039731, 34.53842580887556], [-77.38391972675616, 34.53841611781889], [-77.38391692227982, 34.53840637178342], [-77.38388428708313, 34.53817639657615], [-77.38370441723342, 34.53780635947095], [-77.3837566347644, 34.537705142822], [-77.38375640253977, 34.5375822265093], [-77.3838140169947, 34.53736299860005], [-77.38426177139036, 34.53719954355076], [-77.3843535735162, 34.53717500510615], [-77.3844002657242, 34.53715144946074], [-77.38514779982214, 34.53677082871394], [-77.38531503329583, 34.53660300672772], [-77.38564864546646, 34.536452949368346], [-77.38641610611919, 34.53614516738733], [-77.38673564582446, 34.535988293533386], [-77.38689197069758, 34.53587993348202], [-77.38707391763997, 34.53575771282449], [-77.38731803117257, 34.535590477703266], [-77.38753174300939, 34.53550012311848], [-77.38782473607361, 34.53546713090722], [-77.38831771785578, 34.535460466995715], [-77.38846844062321, 34.53546252013548], [-77.38868539850155, 34.53552526022864], [-77.38870861119734, 34.53553351406334], [-77.38872587983715, 34.53551942059033], [-77.38892140172928, 34.53537690085601], [-77.38910839941292, 34.535211923691364], [-77.38925700835769, 34.535043456761215], [-77.38955311990554, 34.534910416781976], [-77.38976585639733, 34.53479425839103], [-77.38990367438699, 34.53475926157548], [-77.39002065373163, 34.53476985680617], [-77.39033247524591, 34.53479798183348], [-77.39059044957266, 34.53482120406706], [-77.39068715775525, 34.534829828952105], [-77.39106654759831, 34.53494351251246], [-77.39116690534888, 34.53497891882587], [-77.39146712093057, 34.53505682204339], [-77.39150454738771, 34.535094674007624], [-77.39155897957605, 34.535110695507996], [-77.3920111836314, 34.53519385144156], [-77.39224828928816, 34.53523042351844], [-77.39227600866136, 34.53523472506756], [-77.39233322768915, 34.53524381860715], [-77.39253950787078, 34.53527660180395], [-77.39263943112672, 34.53529248208483], [-77.39272341395196, 34.535239152944676], [-77.39278655306892, 34.53508949370057], [-77.3928940355002, 34.53491806616182], [-77.39285326987563, 34.53480566009574], [-77.39285026349015, 34.53479979387853], [-77.39279149992319, 34.534688026999596], [-77.39275947218755, 34.53462711132049], [-77.39266455428786, 34.53446151007612], [-77.39265835622508, 34.53445120390821], [-77.39254557785947, 34.53430622028072], [-77.39248616092982, 34.534242416134774], [-77.39227430679276, 34.53407411008085], [-77.39223709782675, 34.53405696792287], [-77.39216928049201, 34.53404330409944], [-77.39188473067749, 34.533942743380834], [-77.3915903324822, 34.53406392649785], [-77.39149155555604, 34.5339713122499], [-77.39142300679349, 34.53390614516048], [-77.39125091365982, 34.533838106762744], [-77.39125923770469, 34.53378221513797], [-77.3914429128463, 34.533658439391715], [-77.3914652731818, 34.5336340853559], [-77.39149952611263, 34.53361722186884], [-77.39162926589721, 34.53355155092284], [-77.39195449415443, 34.5333753420578], [-77.39201867027275, 34.5332566215642], [-77.39209548518392, 34.5330746156303], [-77.39220729572197, 34.53300163418024], [-77.39229995343551, 34.53293428989956], [-77.39255791585575, 34.5326754934531], [-77.3930062605493, 34.532508620198655], [-77.39309517876113, 34.53248206014007], [-77.39317293155254, 34.5324779205698], [-77.3937347063221, 34.53243977817786], [-77.39388102202932, 34.53244674904458], [-77.39425394978159, 34.53227348784412], [-77.39435563873404, 34.532059757612686], [-77.39467410293219, 34.532089325190945], [-77.3950630033392, 34.53191657954809], [-77.3950735246927, 34.53191220215947], [-77.3951107117125, 34.53188044283954], [-77.39544017637989, 34.53161263261638], [-77.39543359640851, 34.53159065736032], [-77.39527190692006, 34.531275442433525], [-77.39475499871494, 34.53122184375019], [-77.39472156438485, 34.53120939874556], [-77.3946937201836, 34.531216389685845], [-77.3946705382529, 34.53121961793365], [-77.3943002421887, 34.5312590770127], [-77.39396218878161, 34.53130168244293], [-77.39390654802173, 34.53131135713], [-77.39386167763595, 34.531322931447335], [-77.39371186116367, 34.5313723760796], [-77.39356001093434, 34.5314245576125], [-77.39351094280995, 34.5314485955398], [-77.39330562860548, 34.53154917621867], [-77.39311481747146, 34.53160889770287], [-77.39297577635236, 34.53156592221345], [-77.39276939010131, 34.531508372916434], [-77.39249158652734, 34.53144976258538], [-77.39233422833166, 34.531411018499576], [-77.3919266649491, 34.53162997054673], [-77.39186083951948, 34.531839880580726], [-77.39153514411349, 34.53203491186801], [-77.39140103799909, 34.53219547845143], [-77.39131347510006, 34.532342063611026], [-77.39120831163135, 34.53251584703803], [-77.3909682431886, 34.532603536499636], [-77.39073480703024, 34.53271390333687], [-77.39062566189858, 34.53272915229267], [-77.3900170634379, 34.532841049725896], [-77.38994704404348, 34.532834181021855], [-77.38984541496883, 34.53284636498378], [-77.38958033647124, 34.532947825062706], [-77.38923733161089, 34.533047298482145], [-77.38915688329861, 34.533060725714265], [-77.3888070557488, 34.5333042140598], [-77.38878197036627, 34.533322501063324], [-77.38865940516875, 34.533386394649156], [-77.3883610139984, 34.53354024119252], [-77.38819831516383, 34.53353531209404], [-77.3877260255792, 34.533610397335785], [-77.3875751342872, 34.533576479463015], [-77.3874251765123, 34.53365597195], [-77.38696696174928, 34.53418524641798], [-77.38686204359608, 34.534319279962105], [-77.38684319952945, 34.53436625127896], [-77.38677159671651, 34.534395156423614], [-77.38672522233136, 34.534368317436076], [-77.38663224029064, 34.53435242672342], [-77.38598924443286, 34.534274722309554], [-77.38520606708015, 34.53455302728469], [-77.38519784984406, 34.53455473659103], [-77.38519344621217, 34.534557237373065], [-77.38518959576412, 34.53456050410188], [-77.38480011598732, 34.53478480428063], [-77.38471606000338, 34.534821724577725], [-77.38445560531213, 34.5348798990791], [-77.3844064469245, 34.534834868882676], [-77.38431124153797, 34.53474779083737], [-77.38429515031785, 34.53468950334859], [-77.38427292603748, 34.53460620712118], [-77.38421823279734, 34.53445576491798], [-77.38418236538921, 34.534362525945745], [-77.38410910459056, 34.53422667120956], [-77.38397267875722, 34.53396351620106], [-77.38394874432633, 34.533760133980365], [-77.38364943682978, 34.53359320387903], [-77.38304770134287, 34.53329033908979], [-77.3828719004706, 34.53326026213819], [-77.3826118296484, 34.53313755288064], [-77.38221738891275, 34.53310979481866], [-77.38208965485728, 34.533135743014434], [-77.38188737067648, 34.53320329456768], [-77.38081754367346, 34.53342226663895], [-77.38051272219558, 34.53343645315262], [-77.38026291944107, 34.533467679764144], [-77.37972407050592, 34.53359477631331], [-77.37940977341944, 34.53363084724491], [-77.37927751193756, 34.533666541721296], [-77.37893106903579, 34.53394490554683], [-77.3788681643912, 34.534003071900315], [-77.37857888672951, 34.534320079239784], [-77.37793367819842, 34.53462745384283], [-77.37757180628299, 34.53482358031149], [-77.37733567679658, 34.535058250669366], [-77.3768856215546, 34.535483172264705], [-77.37662536601232, 34.53579537909457], [-77.37657604955541, 34.53582927518297], [-77.37653226771648, 34.535866008929744], [-77.37620338029392, 34.53614468525693], [-77.37592039613443, 34.53627286335206], [-77.37573662150304, 34.53633107104115], [-77.37532231190256, 34.5364728681587], [-77.37502977215846, 34.53656718002055], [-77.37494552638545, 34.53659530294317], [-77.37482603305543, 34.53661859786971], [-77.37415550875137, 34.5368118660313], [-77.37342542015847, 34.53678013357068], [-77.37337121516515, 34.53677635524296], [-77.37333677760252, 34.53678046856876], [-77.37328116229043, 34.53676706413494], [-77.3728092354585, 34.53669704584695], [-77.37267658304219, 34.53641585303966], [-77.37265560012888, 34.53636756466106], [-77.37263063383439, 34.53634944980869], [-77.37259682941578, 34.536305060805965], [-77.3724060428603, 34.536036671597216], [-77.37233946093185, 34.53592346949907], [-77.37219759183257, 34.535711675589596], [-77.3721906090006, 34.53570009408618], [-77.37217960781142, 34.535677388800345], [-77.37212883444732, 34.53546416827087], [-77.37199256338312, 34.53508969388237], [-77.37199012703952, 34.534994502574705], [-77.3722325631172, 34.53471958170687], [-77.37239144094272, 34.53444701048845], [-77.37252774990554, 34.534356652341806], [-77.37264262419976, 34.534290802169124], [-77.37298261870724, 34.53415172371414], [-77.37343442176017, 34.53399509574943], [-77.3736255627176, 34.533897317025364], [-77.3742245324176, 34.533773384729486], [-77.37431591468187, 34.5336799847397], [-77.37434198185392, 34.533605353673295], [-77.37445706182584, 34.53341481175157], [-77.37441029344045, 34.53328567558603], [-77.37438723822628, 34.533180047090504], [-77.37437359912468, 34.53309859877996], [-77.37424786612281, 34.532746230758136], [-77.3742352323019, 34.5327205438532], [-77.37423312375506, 34.53271260390736], [-77.37423704534106, 34.53270470111094], [-77.37424897033475, 34.53269762330996], [-77.37461693304117, 34.53239281197422], [-77.37490233393972, 34.532215458366124], [-77.3750469795223, 34.532127431139074], [-77.37514232540016, 34.532151706557855], [-77.37551892867606, 34.5322314266056], [-77.37557275902128, 34.53227467666136], [-77.37582721372152, 34.53233984917919], [-77.37604779932002, 34.53231381252064], [-77.37629535661884, 34.532415341803556], [-77.37647054105516, 34.532476553884834], [-77.37649934695033, 34.53263076528506], [-77.3766040840866, 34.53270068501309], [-77.37673282854098, 34.53276078560857], [-77.37690827802152, 34.53276242052645], [-77.37699802793024, 34.532638365490996], [-77.3770482848618, 34.53258218288034], [-77.37706602199695, 34.532508502230286], [-77.37700539063954, 34.53231378951682], [-77.3770052195878, 34.5323131265119], [-77.37700508672368, 34.53231302959581], [-77.37688195625164, 34.53216504402271], [-77.37662214570686, 34.53190462683821], [-77.37660442185387, 34.531892358761674], [-77.37660270844712, 34.53188137731527], [-77.37662337285292, 34.531850541081255], [-77.37685752722052, 34.53149601540648], [-77.37688450627225, 34.531197458477216], [-77.37704625991873, 34.53083811686486], [-77.37717016845822, 34.53065472798167], [-77.37722629968736, 34.53032250288315], [-77.37741769509992, 34.52982807962947], [-77.37741272578492, 34.52980596795995], [-77.37743317377411, 34.52978929795148], [-77.37745570237533, 34.52976597693996], [-77.37791084600158, 34.52924449445976], [-77.37806022127697, 34.529100960094524], [-77.37826353525598, 34.52876023967724], [-77.37831988360793, 34.52869586282314], [-77.37841070936193, 34.528278090404505], [-77.37899830909956, 34.5281083880161], [-77.37906655273706, 34.52796615106601], [-77.3792440586021, 34.52807295470702], [-77.37980324479153, 34.52802168433328], [-77.3798502993209, 34.52802212500731], [-77.37994008293288, 34.52802869285652], [-77.38041866569539, 34.52790358840689], [-77.38064003849733, 34.52781346687796], [-77.38088556897303, 34.52749525988767], [-77.3808536895499, 34.52735119754382], [-77.3809241740054, 34.52717284690461], [-77.38103974690122, 34.526834707281914], [-77.38103681836797, 34.52657548280712], [-77.38108971149717, 34.52633783950708], [-77.38099003429792, 34.526157286835286], [-77.38094694768971, 34.525538415388965], [-77.38086230398892, 34.52539131108971], [-77.3808236928654, 34.525317571277384], [-77.38081642418565, 34.52497824715994], [-77.38086400712761, 34.524901404230654], [-77.38104300386883, 34.524591790767126], [-77.38211376183608, 34.5243406002166], [-77.38228740171523, 34.524395028458784], [-77.38259645672159, 34.52435411337501], [-77.38385198647916, 34.523989894423984], [-77.38386659353793, 34.52398656008461], [-77.38387791381511, 34.52398411732025], [-77.38389230836088, 34.5239750140166], [-77.38439604888168, 34.523242815251535], [-77.38447910292788, 34.522911050428625], [-77.38458315221254, 34.52247042445802], [-77.38483216086217, 34.521880798937104], [-77.38393308379253, 34.5210452902154], [-77.38389833222773, 34.521057670082925], [-77.38277235766591, 34.52145965501238], [-77.3823537506095, 34.5214624403204], [-77.38196039808447, 34.52205801617447], [-77.38180873371965, 34.522316859097394], [-77.38167599364736, 34.52241633946903], [-77.38154055916671, 34.522710076903934], [-77.38148391975281, 34.52281957771415], [-77.38080604306133, 34.52291672939704], [-77.38075127142544, 34.52290101293262], [-77.38033827395238, 34.522788130762315], [-77.38016148175562, 34.52255440332638], [-77.3800865376247, 34.52249593315781], [-77.37997780247673, 34.52239346070482], [-77.37967264734107, 34.52232653225023], [-77.37919483084482, 34.52230562806704], [-77.3786743896111, 34.522116831776486], [-77.37841472792049, 34.52209131648951], [-77.37800050504987, 34.5221183231243], [-77.37762908523857, 34.522121409225505], [-77.3771380146995, 34.522314621907356], [-77.3768373263214, 34.5224210082539], [-77.3767186070475, 34.52248804553235], [-77.37655737884825, 34.52258439722826], [-77.37604080643897, 34.52293007698517], [-77.37569853432848, 34.522921836617456], [-77.37560609089793, 34.52294016846123], [-77.37525413551569, 34.523005008792154], [-77.37460019306485, 34.52335620347267], [-77.37459542728396, 34.5234418416509], [-77.37445779427094, 34.52350551740617], [-77.37421274163297, 34.52356408386713], [-77.37298960071902, 34.52365394118576], [-77.372884614071, 34.52364751871324], [-77.37283606892444, 34.52364086677098], [-77.37274805632778, 34.52362317650382], [-77.37210174275823, 34.523554917168994], [-77.37133586144893, 34.52381116608181], [-77.37131073596846, 34.52381988104715], [-77.3712944315409, 34.523822553848426], [-77.3712839460952, 34.52383419748853], [-77.37125144526074, 34.52387508202608], [-77.37070825574764, 34.524406820843616], [-77.37065031928886, 34.52450256436912], [-77.37079212360342, 34.52488438912062], [-77.37074209158072, 34.525043925847896], [-77.37074593616771, 34.52513587357603], [-77.37071024630657, 34.525250450282755], [-77.37069760718643, 34.52538766577813], [-77.37070769513454, 34.525523896915345], [-77.37047991506905, 34.52583350535629], [-77.37043898319777, 34.52588986110489], [-77.37041662178986, 34.52591781526728], [-77.37007954635888, 34.52617909548505], [-77.37000158225769, 34.526173747296426], [-77.36968778599405, 34.52614655671712], [-77.36956564687469, 34.526117052488786], [-77.36940939582601, 34.52606296350757], [-77.36945261809133, 34.5259066383357], [-77.36935129391901, 34.52558168279787], [-77.36933652570303, 34.52532493231014], [-77.36924880834428, 34.52510679551434], [-77.36945337048603, 34.52491358112732], [-77.36952338091379, 34.52457757548029], [-77.3697328539292, 34.5241676913789], [-77.36978261674498, 34.52408036360297], [-77.36987223045745, 34.524037648794206], [-77.36980668675702, 34.524003373529254], [-77.36980617037602, 34.52359511338621], [-77.36982223672472, 34.523555198901384], [-77.36980910508441, 34.5235187465151], [-77.36981693365027, 34.52310363961059], [-77.36990952302953, 34.523052965080396], [-77.37054890985874, 34.522802816508616], [-77.37118429364875, 34.52277555048687], [-77.3713400065746, 34.52253361064547], [-77.37148079466506, 34.522735822810674], [-77.37198460824158, 34.52266825352764], [-77.3721222793525, 34.522652082495654], [-77.37226277346858, 34.52262653313649], [-77.37274971801371, 34.522543822963755], [-77.37291210656781, 34.52243838836432], [-77.37309525080327, 34.52247899955813], [-77.3734853912454, 34.52240506659988], [-77.37370265706178, 34.52219267630814], [-77.37389060443951, 34.522105522958896], [-77.37390389044714, 34.52186669455136], [-77.37353769282917, 34.52193381383499], [-77.37292343725255, 34.52194006378991], [-77.37244733731362, 34.52200397674598], [-77.37213476263685, 34.522103292593904], [-77.37196204572064, 34.52216057086725], [-77.37141555816085, 34.52230241542731], [-77.37134574928793, 34.52228125361708], [-77.37101650187441, 34.52212176511605], [-77.37084436576961, 34.52193892671536], [-77.37103908747821, 34.52171148165953], [-77.3711134354686, 34.521410494012244], [-77.37137644806415, 34.52093223927271], [-77.37141623345745, 34.520901580833645], [-77.37143896377304, 34.520873921746265], [-77.3721755826609, 34.520308778799176], [-77.37295221632984, 34.52065581056934], [-77.37295237345413, 34.52065595109545], [-77.37295262848558, 34.520656239074015], [-77.37295358003253, 34.52065561399936], [-77.37295266729086, 34.520654532437234], [-77.37228297603862, 34.520197206599384], [-77.37267155329602, 34.519716950617344], [-77.37266704375962, 34.51952338053863], [-77.37298267186858, 34.519334951051], [-77.37355904196451, 34.51860971026024], [-77.37419282554869, 34.51827898262026], [-77.37457943143545, 34.51815153423572], [-77.37514171906416, 34.518032476472335], [-77.37568196360911, 34.51801014817479], [-77.37615715444358, 34.51780468173072], [-77.37677315337703, 34.51754768246261], [-77.3776454305022, 34.517041274976066], [-77.37770587746434, 34.51700811425286], [-77.37774504436487, 34.51700894419806], [-77.37778235818094, 34.516998403636244], [-77.37914585630773, 34.51671533817849], [-77.3793234019843, 34.516632422950416], [-77.37947723909511, 34.516680491139184], [-77.38001703559988, 34.516699301728806], [-77.38010632789259, 34.516719917751225], [-77.38017227363872, 34.51667691555565], [-77.38024180558116, 34.516584288008396], [-77.38048360487734, 34.51637281588928], [-77.38060037414616, 34.51631272464219], [-77.38090348791886, 34.516178879842045], [-77.38097011756291, 34.51611283092679], [-77.38127828351314, 34.516040720844416], [-77.38129880176213, 34.51605245182158], [-77.38137909296472, 34.516013216306234], [-77.38164803387664, 34.51594596418076], [-77.3816939227038, 34.515934489055034], [-77.3819018826812, 34.51580984203217], [-77.38247927596133, 34.515914466619535], [-77.38291320150577, 34.51556811547171], [-77.38358174902298, 34.515503214019375], [-77.38405668579713, 34.515577801597296], [-77.38435175927859, 34.515274611546296], [-77.3850951323359, 34.514987572193874], [-77.38543144946732, 34.514806519791605], [-77.38564523368491, 34.51474741812971], [-77.3859524617071, 34.51467327531947], [-77.38682717894943, 34.51449216421369], [-77.38722396420687, 34.514350560431424], [-77.38738688105154, 34.51426777449912], [-77.3878158731131, 34.51422753154377], [-77.38800976506869, 34.51430984935341], [-77.38852482644579, 34.51449278914108], [-77.38859624724772, 34.514602147108654], [-77.38878592213845, 34.514696728837436], [-77.38941757309722, 34.51494574256911], [-77.38990778240792, 34.51527258065846], [-77.38995226453336, 34.515506464298674], [-77.38974471934945, 34.515911355592465], [-77.38909079155249, 34.51615902702538], [-77.3887521951024, 34.5161923261183], [-77.3885413725694, 34.51631932962843], [-77.38834271830564, 34.516477726093214], [-77.38752354654815, 34.51681754151366], [-77.38715871720945, 34.51724148497932], [-77.38648356435623, 34.51716816905384], [-77.38622311335035, 34.517178280094384], [-77.38557539576729, 34.51783919248551], [-77.38555768468952, 34.517847909976], [-77.38400737833305, 34.51775887080859], [-77.38261794455492, 34.51816458877217], [-77.38242777719923, 34.51819058095906], [-77.38203671779166, 34.51812175254933], [-77.38086313911622, 34.51796071642052], [-77.3803424393808, 34.518290854038526], [-77.37975588694661, 34.51840080301831], [-77.37928255762131, 34.518434654078895], [-77.37918829722477, 34.51834781871414], [-77.378590534884, 34.518431898616896], [-77.37849439368094, 34.51857749575595], [-77.37810693385603, 34.51893337138956], [-77.37810180127026, 34.51918748979982], [-77.37769320549785, 34.519294418319305], [-77.3769344361205, 34.5196129095721], [-77.3761069818232, 34.52001487545892], [-77.37576337678033, 34.52025057213179], [-77.37577251747939, 34.520451711309335], [-77.37548675461966, 34.52078011048786], [-77.37551237554342, 34.520907798980005], [-77.37556535371031, 34.52125843751756], [-77.3756207075744, 34.521532308417875], [-77.37607420530682, 34.5214587597861], [-77.37646969262883, 34.52137356292472], [-77.37730306113033, 34.52122398578157], [-77.377650581511, 34.52117365543347], [-77.37789512547856, 34.52107368359895], [-77.37845772864823, 34.520841428839965], [-77.37856605260598, 34.52040672164897], [-77.37924473521136, 34.52010356693668], [-77.37985977855428, 34.52025347040573], [-77.38008712100302, 34.52015336081628], [-77.38082426732942, 34.5196773489844], [-77.38109765002567, 34.519651614363084], [-77.38227163253947, 34.51939257021103], [-77.38226451999783, 34.52021926888493], [-77.38231145846882, 34.52028570976836], [-77.38231423558176, 34.52032599889951], [-77.38237370734785, 34.52058037569458], [-77.38380587099617, 34.520969068543344], [-77.38397453642528, 34.520999954961184], [-77.38551116973598, 34.52068259562734], [-77.3862867167714, 34.52118016949991], [-77.38642818361261, 34.52165057848207], [-77.38633505831687, 34.522109289643346], [-77.38643990752715, 34.522138554088535], [-77.38704907575146, 34.522099561103204], [-77.38778889708902, 34.5219738747589], [-77.38809467343083, 34.52206189975439], [-77.38861918297529, 34.522090813659425], [-77.38993733524957, 34.521964832516254], [-77.3899860703166, 34.521137288448614], [-77.38878908086708, 34.52121630466133], [-77.38863955473911, 34.521187399226214], [-77.38811856496876, 34.52091705940039], [-77.3880285791146, 34.52082659167122], [-77.38739336168183, 34.520532014658045], [-77.38867699506089, 34.51952707400232], [-77.38934328410548, 34.519689300563485], [-77.3896569776245, 34.51959316103711], [-77.39025239556867, 34.51928116961411], [-77.39154000678289, 34.51895439835899], [-77.39177519904794, 34.51888555290918], [-77.39183151408986, 34.51886962838714], [-77.39189393215229, 34.518864460565055], [-77.39192707787373, 34.518898544444255], [-77.3920676363478, 34.51902778382903], [-77.3930373379332, 34.519717661446606], [-77.39315104497236, 34.51984373809792], [-77.39337817689378, 34.519900198685605], [-77.39398211625202, 34.5201799700644], [-77.39428112444689, 34.5201043188864], [-77.394947061049, 34.519943702607506], [-77.39497290082164, 34.5199279930486], [-77.39509696112125, 34.51950781961749], [-77.39513518884532, 34.51941489932171], [-77.39577257510611, 34.51884312759673], [-77.39655056866096, 34.51844538810426], [-77.39809138620592, 34.51803272852824], [-77.39812986327918, 34.51802362354223], [-77.39951414907675, 34.51878280333901], [-77.39962846838714, 34.5187998718404], [-77.39968144285221, 34.51883731685169], [-77.40030300186012, 34.5192546659549], [-77.40045382167423, 34.51939686114373], [-77.40076198804351, 34.519581996651276], [-77.40074914424956, 34.51977335063895], [-77.40079387602975, 34.51984860976512], [-77.40107350328589, 34.520026694435366], [-77.40121468162603, 34.520471100488564], [-77.40138635835703, 34.52036557269251], [-77.40201171489853, 34.51993064616878], [-77.4020333106786, 34.51990117560461], [-77.40210469228394, 34.519821330803005], [-77.40253966864245, 34.519325327116285], [-77.40268271389141, 34.51922372825805], [-77.4028171014845, 34.519016491455375], [-77.40303857756051, 34.51876361279222], [-77.40322151408901, 34.51849250178561], [-77.40401364053042, 34.5181331355844], [-77.4044132273696, 34.51784083211652], [-77.40457538035679, 34.51794934108468], [-77.40460068140189, 34.51804836332134], [-77.40518959214847, 34.518222932564385], [-77.40587417186286, 34.51793110974713], [-77.40598185902518, 34.51789363379841], [-77.40602798861309, 34.51787069465121], [-77.40629502082878, 34.51780366818916], [-77.40724539644677, 34.51746942265778], [-77.40756786006304, 34.517168428787144], [-77.4080007394553, 34.51728561174945], [-77.40869445517191, 34.51718077388316], [-77.40914119446956, 34.51700977689006], [-77.41015406166984, 34.51661977325427], [-77.41072610037908, 34.51633159347132], [-77.41087316121036, 34.51625368396996], [-77.41104520416077, 34.516138162640964], [-77.41232252310688, 34.515135029593935], [-77.4124321925688, 34.51502531662085], [-77.4126044035901, 34.51493353675973], [-77.41391111326408, 34.51428839896808], [-77.41463573826499, 34.514110288677074], [-77.41479792654742, 34.51406638513943], [-77.41548933596516, 34.51390660019446], [-77.41630269282675, 34.5138918777061], [-77.41705612883473, 34.51403863475553], [-77.41746474823388, 34.51423119907585], [-77.41822322579458, 34.514368218246034], [-77.41861532884717, 34.514512926367665], [-77.41864973090699, 34.51452794844585], [-77.4187125833345, 34.514540535651335], [-77.41916341683378, 34.514621596541616], [-77.42009096249492, 34.51477591770316], [-77.42017974283857, 34.51475282297985], [-77.42028085777248, 34.51474062131823], [-77.42043442416252, 34.51478133955579], [-77.42188548466451, 34.5154563746377], [-77.42197531717103, 34.515691849550684], [-77.42194302838273, 34.516522009271206], [-77.42184282053474, 34.5166205490699], [-77.42193090564625, 34.517013448692886], [-77.42182418131861, 34.51710803924934], [-77.42188999691987, 34.51738499656621], [-77.42190135914333, 34.51750740642943], [-77.42198520226876, 34.517682852477165], [-77.42200937931483, 34.51777751895114], [-77.42242823995154, 34.51792092691469], [-77.42244334516529, 34.517931596602864], [-77.4225364790992, 34.517950796214], [-77.42325104174762, 34.51783233734376], [-77.42377621402338, 34.51788732655303], [-77.42403324057798, 34.51817857871049], [-77.42479697024854, 34.518911200180135], [-77.42485450996514, 34.519002066819176], [-77.4258073074116, 34.5185473951881], [-77.42589825175534, 34.51839862001436], [-77.42605161597464, 34.51816959324262], [-77.42612516309417, 34.518038891406206], [-77.42622541247684, 34.51786162693135], [-77.42627103605933, 34.517779695354115], [-77.42639677582014, 34.5175538874833], [-77.42652197040924, 34.5173290569456], [-77.42664040757174, 34.51696613924322], [-77.42675417990337, 34.516805790497514], [-77.42692811799807, 34.51660943302207], [-77.42703748186452, 34.51638125495647], [-77.42706764533058, 34.51627077427311], [-77.42707317480841, 34.51618339716937], [-77.42700063902265, 34.51592615277097], [-77.42685915662469, 34.51581123255009], [-77.42677095441897, 34.51561723560949], [-77.42671306575605, 34.515015313538825], [-77.42666397192708, 34.51486007782249], [-77.42663147990348, 34.51475690698478], [-77.42651619708144, 34.5143917582869], [-77.42646894351913, 34.51428837548347], [-77.42634974168817, 34.514004426393406], [-77.42628901577632, 34.51393491948864], [-77.42610493002033, 34.51372667626127], [-77.4258685104565, 34.51340317633301], [-77.4254363648022, 34.51307883064911], [-77.42528123449662, 34.51288231792664], [-77.4252110345559, 34.512299133708076], [-77.42528735762713, 34.51212099997406], [-77.42535490249637, 34.511375978432966], [-77.42605316833126, 34.51036503048908], [-77.4260426121686, 34.51005303371147], [-77.42621312439067, 34.50980696366213], [-77.42656902905081, 34.50975977464185], [-77.4268347090626, 34.509772548677326], [-77.42779723536269, 34.50958384221669], [-77.42814744055892, 34.50936238148758], [-77.42891014325664, 34.50913168467429], [-77.42973224797427, 34.50867435821871], [-77.43108627014146, 34.508203218227735], [-77.43131260156119, 34.5081871147475], [-77.4323515447517, 34.50752206466979], [-77.43290461194493, 34.50716975529747], [-77.43294878693588, 34.50712232654033], [-77.43297764300989, 34.50710523479432], [-77.43316365804895, 34.506967113689285], [-77.43380567724304, 34.50647192300674], [-77.43373382750124, 34.506315589790155], [-77.43404342756585, 34.50633474765832], [-77.43489836866857, 34.50585209969556], [-77.4348966913838, 34.50569247487284], [-77.43521718309772, 34.505701371104784], [-77.4360412971767, 34.505464538520044], [-77.43646453770559, 34.50533745019125], [-77.43658538345147, 34.50532489677003], [-77.43675165960623, 34.50527103588665], [-77.43735830951675, 34.505106394525285], [-77.43769896159051, 34.504926229328014], [-77.43828607108682, 34.50496312860632], [-77.43968372984001, 34.50512808758392], [-77.44011022683492, 34.50544216287599], [-77.44060724814005, 34.505712111874935], [-77.4414945372184, 34.505748077247446], [-77.44233201259408, 34.50574094772472], [-77.443109198945, 34.50501088482548], [-77.44311529954467, 34.50493336006652], [-77.44311494288769, 34.50491965532346], [-77.44311676675837, 34.50490087215344], [-77.4431296805149, 34.50375215822122], [-77.44321317945301, 34.503573597232105], [-77.44312775928893, 34.50256302783518], [-77.44338392443505, 34.502231232639325], [-77.44477979620186, 34.50126783351108], [-77.44511062405178, 34.50115016281701], [-77.44607637704969, 34.50108435202499], [-77.44624124725851, 34.5010256352253], [-77.44685162757835, 34.500807937107275], [-77.44729310011783, 34.50060869497243], [-77.44770715333777, 34.50042470531843], [-77.4479489598859, 34.50015294790957], [-77.44852911042994, 34.49979099505957], [-77.44909889290952, 34.49952351826181], [-77.44956444062254, 34.49906444499296], [-77.45003837965264, 34.498791839811965], [-77.45023959398088, 34.49852696015831], [-77.45180822378728, 34.49741966433489], [-77.4519066132321, 34.49732327165061], [-77.45200979773763, 34.49726594556368], [-77.45412220892352, 34.496031961161755], [-77.45412939298502, 34.49602695952985], [-77.45413604515493, 34.496023007987525], [-77.45414690170074, 34.49600786947796], [-77.45468469434687, 34.49537537490306], [-77.45494420342695, 34.49523471374921], [-77.45520907991428, 34.49508171209659], [-77.45582251023157, 34.49475768547179], [-77.45614995551568, 34.494632400315], [-77.45640534309614, 34.49453165898034], [-77.45726852929641, 34.49415564758423], [-77.45743410440275, 34.49406817052291], [-77.45760049793326, 34.49397760057716], [-77.4583490319336, 34.49381239390521], [-77.45888010584483, 34.493732454681094], [-77.45953638333788, 34.493901376132825], [-77.46026682417059, 34.493879027180895], [-77.46076031491388, 34.49411828516017], [-77.46174618865246, 34.49436434500187], [-77.46338628808552, 34.493790817825115], [-77.46387588954988, 34.493633253162365], [-77.46419622288548, 34.49347484939767], [-77.46490534792994, 34.49351813929244], [-77.46521684634632, 34.49388372346802], [-77.46637027145633, 34.49431846983562], [-77.46720909559733, 34.49525225604534], [-77.46730348289019, 34.49534061962277], [-77.46728082482045, 34.49540850289347], [-77.46695604486756, 34.49631736047648], [-77.4668458197599, 34.49666842367377], [-77.46677906541308, 34.49682541295482], [-77.46676251838903, 34.49724523934425], [-77.46674872929236, 34.497339010481284], [-77.46674165623371, 34.49740125092018], [-77.46672477818633, 34.49779577922109], [-77.46672100581226, 34.498013114787], [-77.46662495523323, 34.49853258239704], [-77.46656733450654, 34.49891311026327], [-77.46667224789049, 34.49936166116352], [-77.46643097877029, 34.49962638872401], [-77.46648294677556, 34.49974014731623], [-77.46652562858675, 34.500029735577186], [-77.46663452546184, 34.50031925237528], [-77.46661762167304, 34.50045270978409], [-77.4670109269021, 34.50072986112946], [-77.4671604263585, 34.50116866453048], [-77.46729897942694, 34.50141998155861], [-77.46741498455975, 34.501601921702516], [-77.46854024682024, 34.50215843593814], [-77.46795370660602, 34.502741926103184], [-77.46797592001623, 34.502805333106004], [-77.4679741777612, 34.502875599049545], [-77.46835905236277, 34.502938775224756], [-77.46922879104599, 34.502868862116564], [-77.46945255090542, 34.50284378023423], [-77.4699015006126, 34.50249983279492], [-77.47032519817064, 34.50224893353221], [-77.47059214730453, 34.5016472254369], [-77.47173480003053, 34.50134037747523], [-77.47230759478732, 34.500998401731835], [-77.47200493596026, 34.49995734525264], [-77.4724609280403, 34.49965515846617], [-77.47205864192082, 34.49917518297202], [-77.47119380039648, 34.499363169442915], [-77.46928309802547, 34.49814305036941], [-77.46877933434811, 34.49775716654068], [-77.46846769305331, 34.49742619735886], [-77.4686136551333, 34.49712242748946], [-77.46867795558657, 34.49676135128], [-77.46901282714256, 34.496313927322305], [-77.46910197849982, 34.4961715952811], [-77.46917740778673, 34.49611117082952], [-77.4699186148017, 34.49559587231555], [-77.47006400080868, 34.49548061897902], [-77.4700738535729, 34.495455609194245], [-77.47011834691206, 34.4954323561945], [-77.47026655802215, 34.49541402998899], [-77.47031470481205, 34.495493328709564], [-77.47237177001867, 34.49587968703425], [-77.47289893518104, 34.49682758611286], [-77.47301214704942, 34.49698107555282], [-77.47308127541972, 34.49707479715484], [-77.47336721265562, 34.49746244594485], [-77.47389897740699, 34.49702601001123], [-77.47426005185233, 34.496300590196455], [-77.47364797609995, 34.49521266476879], [-77.47339448053418, 34.49429842124725], [-77.47321994314167, 34.49341956279736], [-77.472759535124, 34.492545158592506], [-77.472580559951, 34.49155514397336], [-77.47193792870267, 34.49042100169075], [-77.47235131467126, 34.48962667150211], [-77.47261743796344, 34.48885498364719], [-77.47301831109127, 34.4885697721778], [-77.47343016594637, 34.48784895653343], [-77.47409578401505, 34.487578900461806], [-77.47513492124479, 34.487221813757515], [-77.47600059264732, 34.48740042843784], [-77.4771123881353, 34.48705624306311], [-77.47714561287451, 34.48701036069068], [-77.47724218637096, 34.48701677909769], [-77.47783969257605, 34.48675346300706], [-77.47784327296237, 34.48675293693588], [-77.47828637622813, 34.48644020273856], [-77.47831396378731, 34.48638981657039], [-77.47837346681112, 34.486230038735165], [-77.47824556311846, 34.48576263260074], [-77.47805812008235, 34.48507763534655], [-77.47768324421894, 34.48370763936858], [-77.47730838196632, 34.48233764143129], [-77.47693353332322, 34.480967641534875], [-77.47618387686052, 34.47822763586535], [-77.4758090690384, 34.476857630092624], [-77.4756216702291, 34.47617262647183], [-77.47552797209983, 34.475830124477845], [-77.47543427482077, 34.47548762236146], [-77.47505949420636, 34.474117612672096], [-77.4746847271939, 34.472747601024686], [-77.47393523396987, 34.47000757185645], [-77.47383809409408, 34.469652423679534], [-77.47355117306826, 34.469820995836685], [-77.47310977616695, 34.46996571154019], [-77.47145125184349, 34.4707702248792], [-77.47090424067119, 34.470911083414755], [-77.47035117439691, 34.47117682077641], [-77.46947480022132, 34.47140463531093], [-77.46902335402035, 34.47173809450842], [-77.46853145986823, 34.47213434447811], [-77.46816901943947, 34.47241712971453], [-77.46672180168123, 34.473168183478904], [-77.46607918260594, 34.47331897324789], [-77.46541770742499, 34.47332261170186], [-77.46430602120927, 34.4735720777651], [-77.4641907565466, 34.47358950425825], [-77.46414913009203, 34.47360694434997], [-77.46398955011367, 34.473640710093726], [-77.46341632120726, 34.47380725064191], [-77.46330300789575, 34.473999544814234], [-77.46326081659439, 34.474194518292435], [-77.46329541101402, 34.47434252740223], [-77.46302093816848, 34.47440476961991], [-77.46277630710668, 34.474684335955814], [-77.46219427226647, 34.47481586760108], [-77.462003190227, 34.47490272196124], [-77.46184819112047, 34.47503969512403], [-77.46115616257116, 34.47543865356262], [-77.4611161199096, 34.47565976744086], [-77.45954522303012, 34.475963504919264], [-77.45941220111388, 34.4759786743647], [-77.4593434625734, 34.47598651254944], [-77.45924268887966, 34.47601695540499], [-77.45816469667298, 34.47634026941291], [-77.45742031573894, 34.47592433789984], [-77.45801739821349, 34.47580140654595], [-77.45843319230426, 34.475544198235866], [-77.45872217922623, 34.47531498448085], [-77.45916294398171, 34.4750668561867], [-77.46012938577309, 34.47518031541975], [-77.45968360644241, 34.47468832086621], [-77.4602950328215, 34.47428314495911], [-77.46122042670657, 34.47452238051929], [-77.46057941481759, 34.47405831774344], [-77.46053044031181, 34.47388279996072], [-77.46083457349869, 34.47339576239052], [-77.46102022517245, 34.473237035019054], [-77.46111939046895, 34.47307247444306], [-77.46125077636493, 34.47285444601407], [-77.46129711734869, 34.47277754495147], [-77.46132504955918, 34.472745163404916], [-77.46182327079006, 34.47248625683208], [-77.46187136900203, 34.47246254359899], [-77.46192359585856, 34.472437809871025], [-77.46241706697046, 34.47219600115246], [-77.46250362295918, 34.47217572473857], [-77.46256935907482, 34.47213285146708], [-77.46314426690023, 34.47189297835357], [-77.46361659416718, 34.47165917546387], [-77.46456670200817, 34.47139607160966], [-77.4648325371942, 34.47118244724994], [-77.46515149027238, 34.47108618816401], [-77.46517852210633, 34.470914316394925], [-77.46540191772823, 34.47080295633273], [-77.46582010897721, 34.47081703306972], [-77.4660515454876, 34.470716966292756], [-77.46715611540345, 34.47041968387363], [-77.46750306747468, 34.470446689002614], [-77.46752533513248, 34.47035793025513], [-77.46799186652692, 34.47009016395562], [-77.46810720799628, 34.469922514129216], [-77.46838734812411, 34.46972616431591], [-77.4684347414834, 34.469711325576206], [-77.46846078361683, 34.46968088536751], [-77.46893195575903, 34.469358888008074], [-77.46899681322492, 34.4691795179921], [-77.46912833685923, 34.46908825213574], [-77.46933534276515, 34.46896086584309], [-77.46959092646884, 34.46889057085002], [-77.4697534816596, 34.46878221486372], [-77.47005435335777, 34.46871618596862], [-77.47045646941649, 34.46848012277037], [-77.47064060990363, 34.468407007476515], [-77.47078569397756, 34.468336631833935], [-77.47121346256553, 34.468091318546975], [-77.4713607764981, 34.46797813683898], [-77.47165611557195, 34.46786546602948], [-77.47186789453235, 34.46781526168643], [-77.47197812573702, 34.46777420199976], [-77.47247973973165, 34.467636665765], [-77.47333148797756, 34.467800215152415], [-77.4731857951386, 34.46726753485821], [-77.4729519242816, 34.46641242697504], [-77.47227512219135, 34.466825107862135], [-77.4717565354356, 34.46696396270566], [-77.47132733303474, 34.46717327692838], [-77.47089745711718, 34.4673437926655], [-77.47055837569458, 34.46750540975481], [-77.46982722096249, 34.46777268654589], [-77.46958091356197, 34.467892162385766], [-77.46934366127908, 34.46798636638539], [-77.46838796713561, 34.46837516881768], [-77.46824658846, 34.46843189164123], [-77.46813604340146, 34.46849331730975], [-77.46731847996205, 34.468996403570934], [-77.46721418869824, 34.46911830786285], [-77.46698068053364, 34.46919141867256], [-77.46609339000324, 34.46960973171055], [-77.46592502714643, 34.469679973874506], [-77.46578359952748, 34.46973700409633], [-77.46494410083122, 34.47022689774422], [-77.46477303139883, 34.47030828081103], [-77.46461511154018, 34.47038721666347], [-77.4636751930732, 34.470837980226], [-77.46357831785411, 34.47091582886207], [-77.46342497260238, 34.4709582932277], [-77.46233303511445, 34.471498804347675], [-77.4622373747466, 34.47153871744202], [-77.46115372064783, 34.47206094115233], [-77.46109949448473, 34.47208748249224], [-77.46104836922281, 34.47211404222194], [-77.45990464726357, 34.47267299727318], [-77.45989788968056, 34.47269167513709], [-77.45986813751172, 34.472721513686146], [-77.45890689193216, 34.47329781342671], [-77.45882170543905, 34.47335680986091], [-77.45871452296048, 34.473426411675845], [-77.45796147801673, 34.47412687277677], [-77.45638906709881, 34.47452087418331], [-77.45636042365928, 34.474536965651716], [-77.4563281501909, 34.47454683861378], [-77.45610111660721, 34.47463180082602], [-77.45504437572731, 34.47508553340982], [-77.45391747924334, 34.47557855044193], [-77.45374388915408, 34.47564165826811], [-77.45350745228309, 34.47572538601414], [-77.45271190973983, 34.47609361994167], [-77.45243648607095, 34.4761944194576], [-77.45218780827364, 34.476333783493565], [-77.45152845001022, 34.476689641231275], [-77.45133648840437, 34.476847971064466], [-77.45111619614039, 34.47695478615101], [-77.45007167431827, 34.47742142199348], [-77.44966635371775, 34.47755653809116], [-77.44913770688052, 34.47779465358367], [-77.44880199750567, 34.47799250595024], [-77.44839076000177, 34.47816713692154], [-77.44755700171747, 34.47857558180287], [-77.44683833558847, 34.478763640854986], [-77.44672732927667, 34.47882799740558], [-77.44638249020562, 34.479192912143574], [-77.44594952000016, 34.47939390748661], [-77.4450959443351, 34.47975578699591], [-77.44433620454032, 34.47993199440654], [-77.44423296398308, 34.479982024811655], [-77.44367331705789, 34.48025251903477], [-77.44314766662673, 34.4805097788587], [-77.44297649112535, 34.480593552422846], [-77.44267072198748, 34.48095339819721], [-77.44205956780044, 34.48145528983606], [-77.44120680736071, 34.4818544444635], [-77.44043928281008, 34.48224518163201], [-77.43963960029566, 34.48245411789788], [-77.43788643938953, 34.483036275345164], [-77.43744968454857, 34.483168444647625], [-77.43715093276352, 34.48320158359924], [-77.43610239693604, 34.48370176526026], [-77.43595245837784, 34.483743283308144], [-77.43491722567266, 34.484235940613026], [-77.43483614316423, 34.48427447249365], [-77.43475884843757, 34.48430284117149], [-77.43419927364943, 34.48450820926772], [-77.4334245330986, 34.48477651203086], [-77.4322783604684, 34.48508053826233], [-77.43181967263465, 34.485184593661764], [-77.43130160912784, 34.48540254917519], [-77.43116435512854, 34.48546015443762], [-77.43105505503205, 34.48553147669918], [-77.430642578037, 34.485800629616556], [-77.42991222800698, 34.486277198241176], [-77.42962233489543, 34.48649292033399], [-77.4293990422936, 34.486656519453035], [-77.42912775235905, 34.486846622388796], [-77.42877354542429, 34.487038173232015], [-77.42856735815133, 34.48716832499071], [-77.42835565118519, 34.48727879326425], [-77.42758552705986, 34.48761850392876], [-77.42730486621815, 34.48774283796871], [-77.4269897658203, 34.48788458729804], [-77.42602812962606, 34.48831042163328], [-77.42519105735997, 34.48871179207485], [-77.4246755494722, 34.488841118721844], [-77.4243095103905, 34.48909877331398], [-77.42375664199818, 34.48958268360912], [-77.42284808619767, 34.48999394104101], [-77.42250681909144, 34.49016333950662], [-77.42215465463283, 34.490339760590864], [-77.42119584485567, 34.490714268008134], [-77.42044998119397, 34.49107431509192], [-77.41995226452131, 34.49129794989282], [-77.4196049878722, 34.49156053087151], [-77.41891198365299, 34.49198049766115], [-77.41809080559474, 34.49229752341401], [-77.41757896795673, 34.49252069300985], [-77.41693266749454, 34.49277498202948], [-77.4161545229122, 34.49301642411607], [-77.41566134070153, 34.49326337795998], [-77.4154511292018, 34.49337475847594], [-77.41497085348357, 34.493629232998614], [-77.4144969432195, 34.49393082753152], [-77.41436371820993, 34.4939946781588], [-77.41382413199102, 34.49426001078318], [-77.41331100779601, 34.49451940251335], [-77.41313839991155, 34.49460753205391], [-77.41276160402869, 34.49493172273357], [-77.41212911544474, 34.495122847435354], [-77.41191440240526, 34.495220442910934], [-77.41160902848313, 34.49555964768362], [-77.41098166380685, 34.49585257112724], [-77.41045505980885, 34.4961868856647], [-77.4089063701254, 34.496859986424816], [-77.4083242162225, 34.49713699091144], [-77.40801227787185, 34.49726353118505], [-77.40701765177076, 34.49774677539531], [-77.40625710205161, 34.498118071555886], [-77.40484040931403, 34.49873986084375], [-77.40403983364814, 34.49902610978056], [-77.40325840387663, 34.49930054576707], [-77.40215557521627, 34.49979380719688], [-77.4019044103997, 34.49997394692385], [-77.40167252550577, 34.500033092752865], [-77.4012059880128, 34.50021944378445], [-77.39969207875546, 34.50088436134263], [-77.39870106159242, 34.50127197882855], [-77.3985606790041, 34.50132729271765], [-77.39850403442968, 34.50134877587314], [-77.39749532165575, 34.50180233794461], [-77.39691957761447, 34.502014269238494], [-77.39540431865808, 34.50272726431225], [-77.39535746881914, 34.50274895909185], [-77.3953330595016, 34.502770280787246], [-77.39526917872702, 34.50278640529019], [-77.3942159652739, 34.50318695769458], [-77.39374799270217, 34.503460450214796], [-77.39326840285051, 34.503719294283044], [-77.39215148959345, 34.50465733330592], [-77.3916401983052, 34.504913817516616], [-77.39056941127303, 34.50521201774066], [-77.38996806129674, 34.505470540704934], [-77.38926761124175, 34.505746219193895], [-77.38898462974016, 34.50588557174753], [-77.38819840544521, 34.506211849879435], [-77.3870968823098, 34.50667680116491], [-77.38581550634942, 34.50720964811024], [-77.38492082017423, 34.507604776121994], [-77.38422984567995, 34.50791853512436], [-77.38334443183282, 34.508384814668155], [-77.38294613995193, 34.508630721446096], [-77.38263435869703, 34.50906045073941], [-77.38131309233681, 34.50982288040677], [-77.38104697057169, 34.509842771450366], [-77.3808603690693, 34.50983889775374], [-77.37956066853465, 34.50996359311621], [-77.3794740620444, 34.509984861842824], [-77.37935379666968, 34.51001430926672], [-77.37838575326133, 34.51038528541824], [-77.37788950420995, 34.51064020836392], [-77.37666522584718, 34.51130669220841], [-77.37645868491542, 34.51143436901195], [-77.37630038788066, 34.51149519726146], [-77.37588418118145, 34.51167639557086], [-77.37437053336888, 34.51240506336741], [-77.37370204315344, 34.51271321062967], [-77.37312696498809, 34.51298921567137], [-77.37229543120026, 34.51338209826994], [-77.37154269647239, 34.51362692688037], [-77.37105315943454, 34.51377099260042], [-77.37023280596593, 34.51402480453171], [-77.3699625278324, 34.514083510628915], [-77.36978357524634, 34.51414658525457], [-77.36958479060456, 34.51428597765985], [-77.36837302283095, 34.514948846819095], [-77.36786659323828, 34.51520054487507], [-77.36686705082028, 34.515656934367385], [-77.36681617643377, 34.51568279039075], [-77.36678622799336, 34.515693894157515], [-77.36576886978051, 34.51616653969013], [-77.36520061649011, 34.51638582124064], [-77.36361738881459, 34.51710259454902], [-77.36361437831233, 34.517103963573675], [-77.36361324522704, 34.51710434868877], [-77.36361130182108, 34.517105330013], [-77.36202934563991, 34.51776814690085], [-77.36136052010595, 34.51799487768578], [-77.36044392783253, 34.518447995261155], [-77.3601546465673, 34.518582561985426], [-77.35929818264503, 34.518978065986516], [-77.3588564053293, 34.519218539359336], [-77.35779995395484, 34.5195756009648], [-77.3572736861912, 34.51977823353394], [-77.35704983162844, 34.519870701153636], [-77.3563193770089, 34.52011420451548], [-77.35584768536005, 34.52027906020862], [-77.35569142361511, 34.52031704214227], [-77.35538580977632, 34.520437549480896], [-77.35468269868367, 34.520705501651015], [-77.35410632651686, 34.52097833640587], [-77.35278826019457, 34.52143822548072], [-77.35235459905456, 34.521559282339894], [-77.35189695980753, 34.521730239984684], [-77.35113706277727, 34.52196012986322], [-77.35094210642025, 34.522037737091665], [-77.35057896978435, 34.52214494837532], [-77.34986303805755, 34.52233347144677], [-77.3493615579836, 34.5224981963716], [-77.34803694685814, 34.52310341580916], [-77.34777588959989, 34.52318007149785], [-77.34758887526112, 34.52321347014976], [-77.34704405760425, 34.52340805146453], [-77.34632409878441, 34.52359129780586], [-77.3461948145783, 34.523661545589775], [-77.34568567383442, 34.5240931821533], [-77.3455736480737, 34.52421951715338], [-77.34539176374854, 34.52444446094282], [-77.34527238569119, 34.52456963588364], [-77.34522167854642, 34.52464959324426], [-77.34507290759545, 34.52472091457747], [-77.34499193365829, 34.52476219015323], [-77.34480510575057, 34.524838929546526], [-77.34474060769065, 34.52496363883621], [-77.34459263836098, 34.52505661033992], [-77.34436247380998, 34.525120223043736], [-77.34427198728535, 34.52527589065218], [-77.34419386209711, 34.525328418263854], [-77.3440316508491, 34.525455951572894], [-77.34399358167173, 34.52550293622246], [-77.34390968697963, 34.52557284202201], [-77.3438557661043, 34.5256187169203], [-77.34379351053464, 34.52566835165879], [-77.34355912793, 34.52572269246408], [-77.34354979477833, 34.52586944536137], [-77.3433934867183, 34.525993948236334], [-77.34318752622444, 34.52603856796319], [-77.34317829219788, 34.52616771800356], [-77.3430896395666, 34.52623930802211], [-77.34299324253261, 34.526328950826674], [-77.34274758173368, 34.52632117024949], [-77.34267029279017, 34.52648562823196], [-77.34259331312086, 34.52665018595554], [-77.34255160082937, 34.52672254998062], [-77.34256116145033, 34.52674614889066], [-77.3423919996021, 34.526869140923424], [-77.34226509556343, 34.52683145885831], [-77.3421962893513, 34.52684551888276], [-77.34209768908771, 34.52681283063182], [-77.34189940355628, 34.526782620353], [-77.34141828293146, 34.52666575789555], [-77.34141543790098, 34.52666498679211], [-77.34141495019571, 34.526665947023595], [-77.34141501713587, 34.526666227744535], [-77.34141483602903, 34.52666660586082], [-77.34141534508505, 34.52666900259359], [-77.34160608534918, 34.52688355779982], [-77.34168497059221, 34.52694487887623], [-77.34164972368865, 34.52712209841184], [-77.34172150798315, 34.52715857208956], [-77.34179524327303, 34.527214834467216], [-77.34200602971916, 34.527184618930264], [-77.34199273048387, 34.52731756896691], [-77.34210728960863, 34.527349338138016], [-77.34218441440251, 34.52735951436407], [-77.34220295986078, 34.52740973249618], [-77.34218215796253, 34.527457182351604], [-77.34209017893679, 34.52749149331419], [-77.34206014276839, 34.52755268920217], [-77.34210280684381, 34.52759407126587], [-77.34203814980259, 34.52771456077973], [-77.34201036487585, 34.52780466966048], [-77.34201169866228, 34.527904352353744], [-77.34204097005245, 34.527964332349754], [-77.3421084605359, 34.528035375530806], [-77.34213373204284, 34.52805335299377], [-77.34216669131425, 34.528126644110316], [-77.34217817393798, 34.52814039528641], [-77.34217540372958, 34.52814815387068], [-77.34217976929685, 34.52815610725864], [-77.34222326134454, 34.528226949119706], [-77.34225134414585, 34.52825963762244], [-77.34234549540064, 34.528360991069], [-77.34235234442386, 34.52836751599442], [-77.34235513203127, 34.528368506467416], [-77.34235726526785, 34.52837274057472], [-77.34244653235008, 34.52841516963723], [-77.34245217933527, 34.52841574329138], [-77.34246212837388, 34.52841777427374], [-77.34255213735435, 34.52843280632031], [-77.34259052726118, 34.52843172851849], [-77.34273621393098, 34.52842701441076], [-77.34274852980893, 34.52842705484973], [-77.34275526002551, 34.52842774857183], [-77.34277290628783, 34.52842941739814], [-77.34289459866005, 34.52844298378534], [-77.34294421114251, 34.528452094072186], [-77.34309303205798, 34.52850576807269], [-77.34311290162215, 34.52851913884773], [-77.34320620192624, 34.52861189477491], [-77.34325451711393, 34.528653322706724], [-77.34332940310628, 34.5287694430925], [-77.34336327642596, 34.52881236891092], [-77.34337044447062, 34.528833082904804], [-77.34340027322395, 34.52887450646674], [-77.3434524125619, 34.528943698890025], [-77.34347243317339, 34.52897111452629], [-77.34355552396822, 34.52905127258719], [-77.34360478729421, 34.52911230699878], [-77.34371159353825, 34.52921694336771], [-77.34377186291142, 34.52922722592181], [-77.34377850199675, 34.529264009310516], [-77.34382830543063, 34.529331283688116], [-77.3438814399338, 34.529385654299254], [-77.34398420017018, 34.52947923194522], [-77.34402973613521, 34.52951478392434], [-77.34409638573598, 34.529551891312025], [-77.34419486135116, 34.52963117922694], [-77.34425749709335, 34.52968472778212], [-77.34434182330148, 34.529761318520265], [-77.344445924369, 34.529902435067086], [-77.34444468598537, 34.529924828571005], [-77.34442417473963, 34.53011815833514], [-77.34443087053054, 34.530149420751634], [-77.34444033135117, 34.530169469880555], [-77.34444113271759, 34.53027035394584], [-77.3444663305398, 34.53038707505938], [-77.34446497124776, 34.530389333680716], [-77.34446560332988, 34.53039169286506], [-77.34446931695312, 34.530401000550484], [-77.34454099715114, 34.53057598877655], [-77.34463005271064, 34.53061039979863], [-77.34457815852153, 34.5306899089541], [-77.34460994959598, 34.53076515917547], [-77.34472102734378, 34.53084212918106], [-77.34476884450089, 34.53088627033475], [-77.34498800171711, 34.531048533340126], [-77.34503412363668, 34.53116822812105], [-77.34508259248068, 34.53143225942674], [-77.34507228830978, 34.53152604512825], [-77.34500607322693, 34.531643403113165], [-77.34501237454576, 34.531667380967185], [-77.34500670849489, 34.53178030139082], [-77.34502572236957, 34.53180499589321], [-77.34513611606224, 34.53181509384099], [-77.34522049064205, 34.53186998353492], [-77.34534307398562, 34.53189983706365], [-77.34535748849842, 34.53197464652443], [-77.34552080162831, 34.532142365270865], [-77.3455791083903, 34.53218757664943], [-77.34558325811324, 34.53220078720416], [-77.34556876031988, 34.53241410385945], [-77.3455400136057, 34.53243802209696], [-77.34547458858285, 34.53249245800977], [-77.34545107099217, 34.532512025413226], [-77.34540097785839, 34.53255421670278], [-77.34538082238794, 34.53257100958059], [-77.34536242673605, 34.53258598569966], [-77.34535078370422, 34.532603079441884], [-77.34533973544018, 34.53261310690089], [-77.34532778487518, 34.532621572891806], [-77.34534633365236, 34.53262141553857], [-77.34535036347914, 34.5326213001847], [-77.345387132203, 34.53264363571749], [-77.3453949224294, 34.532644985839525], [-77.34539886195066, 34.53264596369906], [-77.34548259278753, 34.532638983331424], [-77.34555298144585, 34.532680975998424], [-77.3455760110172, 34.53268896853314], [-77.34559364855842, 34.53271025326829], [-77.34568649157019, 34.532719806606224], [-77.34584905779596, 34.53272370374166], [-77.3458495073483, 34.53276071719445], [-77.34587191057011, 34.532810066309594], [-77.3459046835487, 34.53287518743316], [-77.34590086640156, 34.532925849422945], [-77.34594796541386, 34.533113779361265], [-77.34595495804764, 34.53334727610092], [-77.3459532685224, 34.533357836284615], [-77.34595172429289, 34.53337006464067], [-77.345956270793, 34.53360222428822], [-77.3459552589381, 34.53360873965491], [-77.34595285936238, 34.533843037847475], [-77.34592414820386, 34.5338516666017], [-77.34576202132669, 34.53392011360798], [-77.34570428871885, 34.53397043050029], [-77.34566260470258, 34.5339756492507], [-77.34560827181778, 34.5340195294999], [-77.34558636371557, 34.53403722289083], [-77.3455626062591, 34.53405640982719], [-77.34553809160184, 34.534075822962485], [-77.34552643970642, 34.53409250952953], [-77.3455517140375, 34.53409510935941], [-77.34554254729954, 34.534120794252246], [-77.34554902937577, 34.53412730940401], [-77.34555646473935, 34.534134092880755], [-77.34556074948284, 34.53413692975009], [-77.34557361337407, 34.534138875710866], [-77.34559307677401, 34.53414412591534], [-77.34560925838201, 34.53416118271031], [-77.34561710756721, 34.534166301597416], [-77.34562931983908, 34.534182329176744], [-77.34565033416253, 34.53419709194603], [-77.34564857642717, 34.53420282686391], [-77.34569469164977, 34.534251914139105], [-77.34566157357425, 34.53431366656707], [-77.34575257691966, 34.534329716328706], [-77.3457965155836, 34.53433223276869], [-77.34591020699212, 34.53431905889023], [-77.34586119957652, 34.534289159615426], [-77.34585659667421, 34.53428677028591], [-77.34585177063174, 34.53428386363617], [-77.34577332418891, 34.53424059942072], [-77.34576492867275, 34.53423545948194], [-77.34575489192494, 34.53422931473292], [-77.34566365251955, 34.53419517552314], [-77.34566105023232, 34.53419338814066], [-77.34566962806099, 34.53413985240047], [-77.34574729494805, 34.534128128041125], [-77.3457571682077, 34.53413059260332], [-77.34578844948672, 34.53414661549907], [-77.34580284680365, 34.53414643003311], [-77.34580584295958, 34.53414765439484], [-77.3458151339068, 34.53415221687963], [-77.34581797172201, 34.53415365158865], [-77.34582429770505, 34.53415675838028], [-77.34582841506915, 34.53415725153417], [-77.34583015062395, 34.53415747422706], [-77.34583264234941, 34.53415782389036], [-77.34583461577498, 34.53415806698173], [-77.34583626579052, 34.53415827023467], [-77.34583692830809, 34.53415835184518], [-77.34583847979869, 34.53415854296153], [-77.345839323865, 34.53415864693565], [-77.34584051819236, 34.53415824964696], [-77.3458418965862, 34.53415772999905], [-77.34584192455019, 34.534156456795024], [-77.34584186453829, 34.53415614325857], [-77.34584189841101, 34.53415459103173], [-77.34584131557374, 34.53415430959582], [-77.3458413174923, 34.53415356698756], [-77.34584144440078, 34.53414739240568], [-77.34584023696989, 34.53414681417752], [-77.34584020803338, 34.53414526468457], [-77.34583396622506, 34.534140065882], [-77.34583407472694, 34.53412675463893], [-77.3458341600826, 34.53412273567872], [-77.34581287746511, 34.5341124979504], [-77.34581268245071, 34.534085292363066], [-77.34581281285583, 34.534078551507996], [-77.34576751824432, 34.53405781990911], [-77.34576611613184, 34.53400052687689], [-77.34577527326715, 34.533995499008896], [-77.34595996027386, 34.53384781412305], [-77.34611504385502, 34.53394660733724], [-77.34612821669587, 34.533960563294], [-77.34615302701533, 34.533986848496234], [-77.34620435436369, 34.53402362545317], [-77.3462026218979, 34.534056415092564], [-77.34620624525158, 34.53409057586387], [-77.34616961154451, 34.534170590179656], [-77.34618142994212, 34.534181874595006], [-77.34618085765067, 34.53420241342128], [-77.3461479422741, 34.53420741798867], [-77.34610075377404, 34.53428761659224], [-77.34598209348731, 34.534332968507115], [-77.345983588627, 34.53435477928156], [-77.34594826804755, 34.53435495609118], [-77.3459088202735, 34.53436792813886], [-77.3457955116963, 34.534387423769765], [-77.34575069205525, 34.534411462794225], [-77.34567412313945, 34.53445253046392], [-77.34555196088283, 34.53451805193218], [-77.34546148361699, 34.5345974142453], [-77.34535227752137, 34.5346659062482], [-77.3453492965569, 34.53466884352577], [-77.34534504456276, 34.53467385202648], [-77.34528677304121, 34.53473904496969], [-77.34527795411024, 34.534756468288336], [-77.34525836531259, 34.534804337455284], [-77.34523416838297, 34.53487842320846], [-77.34521641396546, 34.53493278368326], [-77.3452131828621, 34.53497333151104], [-77.34515442388431, 34.535064113245795], [-77.34515216666928, 34.53506782647528], [-77.34514649171183, 34.53507831245755], [-77.34509820362962, 34.535165754709034], [-77.34508158497874, 34.53519700364964], [-77.34505706110993, 34.53525378291689], [-77.34502521075947, 34.53532752506943], [-77.3450231367274, 34.53537760653079], [-77.34498727676427, 34.535455392986236], [-77.34491511799679, 34.53557341829187], [-77.3449053579394, 34.53560991902759], [-77.34489416779297, 34.53571360983202], [-77.34493288307351, 34.53582977495779], [-77.34493325918096, 34.535830154991864], [-77.34493332722627, 34.53583067518198], [-77.34498702919069, 34.53594506799007], [-77.3447828340627, 34.53618532260202], [-77.34476640129586, 34.536221632654296], [-77.34475504572181, 34.53624067802889], [-77.3447268931796, 34.53625082627675], [-77.34466279782201, 34.53627614838753], [-77.34433060567163, 34.53641257290592], [-77.34426219542019, 34.53649755634368], [-77.34421568995072, 34.53654568889999], [-77.34405784599188, 34.5366464771804], [-77.34393054086235, 34.5367379227872], [-77.34385431632069, 34.53679579690906], [-77.343761052633, 34.536855919721646], [-77.3436419220841, 34.536940801755584], [-77.34353645129566, 34.53701064358592], [-77.34353156941086, 34.53701576979422], [-77.34344279021919, 34.537092262509056], [-77.34338814847047, 34.537154389673894], [-77.34333143382591, 34.537182799845496], [-77.3432609508157, 34.537252140935294], [-77.34320926763428, 34.53730253477774], [-77.34317350858129, 34.53733377303891], [-77.34313060348194, 34.53737988733508], [-77.34309389831152, 34.53741921759844], [-77.34305846943468, 34.53744663932528], [-77.3429370884912, 34.537581878251004], [-77.34293218909463, 34.53758721649802], [-77.34293099498538, 34.537588314164374], [-77.34292947477418, 34.53758985567064], [-77.34278277710578, 34.53773112119708], [-77.34276288407216, 34.53775487580718], [-77.34272843303643, 34.53779601423919], [-77.34262167784146, 34.53782052159248], [-77.34253086392312, 34.53785176410743], [-77.34249891613001, 34.53787477535637], [-77.34243158160291, 34.537901186598035], [-77.34242717401997, 34.537904688860046], [-77.34238113377972, 34.53794163829511], [-77.34233845821026, 34.53797865632848], [-77.34233561060658, 34.5379815772081], [-77.3423313490282, 34.53799174598992], [-77.342303461533, 34.538028026500065], [-77.34230095715472, 34.53804525594209], [-77.34228918418466, 34.53807208796988], [-77.34225780179975, 34.53817387367406], [-77.34223607832925, 34.53824362176434], [-77.34220903592947, 34.53830329851491], [-77.3421778723511, 34.53833948614667], [-77.34216057333215, 34.53841073719417], [-77.34217207249733, 34.538431025449555], [-77.34217842351975, 34.538463952905964], [-77.34219855866755, 34.5385496244757], [-77.34217741371539, 34.5386393380121], [-77.34216917570734, 34.53870784814029], [-77.3420635561396, 34.53881386444776], [-77.34216940642126, 34.538886738560905], [-77.34230831671495, 34.53898895563074], [-77.34232774479315, 34.53900828326922], [-77.34234156372241, 34.53901868965141], [-77.34233287915966, 34.5390359336324], [-77.3423426169355, 34.53923837371922], [-77.34234373203826, 34.53926319659181], [-77.34236231889362, 34.53929866101191], [-77.34236733809223, 34.53946101257316], [-77.34238367700507, 34.53950226890809], [-77.3423783234967, 34.539554848309365], [-77.34238607879995, 34.53968817630037], [-77.34241942696303, 34.539741944778385], [-77.34251286757062, 34.53983359220225], [-77.34254952789746, 34.539886583354715], [-77.34250243656798, 34.53997482192828], [-77.34260165526631, 34.54016035374338], [-77.3425855305045, 34.54020768685372], [-77.34258800401645, 34.540259430915], [-77.34261027528156, 34.54044894616461], [-77.34260278087758, 34.54048959442689], [-77.34266653993348, 34.540476302111585], [-77.34275757918851, 34.54061381935105], [-77.34281479162355, 34.54066434318806], [-77.3429626880191, 34.540699980429764], [-77.34298717830583, 34.54084480640849], [-77.3430048483171, 34.54088182038232], [-77.34302908104195, 34.54089109242329], [-77.3430352680018, 34.54093864890524], [-77.34304759954983, 34.540975115025326], [-77.34305983635838, 34.54098849544207], [-77.34307041556193, 34.54099479723066], [-77.34305940454892, 34.541004161323215], [-77.34307084536526, 34.54104050223314], [-77.34309246641595, 34.541052829685114], [-77.3430903253105, 34.54108131123187], [-77.34309280226378, 34.54108422599339], [-77.34308756338542, 34.541114739822554], [-77.34309312358994, 34.541128807852985], [-77.34310787896054, 34.541133155237034], [-77.3431418949747, 34.541141844216], [-77.34317173802245, 34.54114517629341], [-77.34323922712287, 34.54117704262113], [-77.34327744515525, 34.54118587164198], [-77.34329103575645, 34.54124110802059], [-77.34324250874758, 34.54133726773276], [-77.34328657008365, 34.54148732899824], [-77.34328872384617, 34.54157543815134], [-77.34327584962837, 34.54166976808196], [-77.3433567138987, 34.5418104759824], [-77.3433301895952, 34.54187000041066], [-77.34330446813766, 34.54199283081329], [-77.34321940610407, 34.54203567050924], [-77.34319048277393, 34.542079209760175], [-77.34310921312802, 34.54214618440904], [-77.34307693213172, 34.54218228299074], [-77.34316651709382, 34.54217407740878], [-77.34321678876438, 34.542149051571826], [-77.34325372905572, 34.54216919415112], [-77.34328631975664, 34.54223239179693], [-77.34331442846386, 34.5423061975306], [-77.34340883873527, 34.54233281994355], [-77.3435978273038, 34.54239154507256], [-77.3436347976803, 34.54250492680949], [-77.34355550608234, 34.542611812928236], [-77.34357547661052, 34.542649801184965], [-77.34359683941776, 34.54269207309765], [-77.34363457197053, 34.542749778614855], [-77.34366389455322, 34.542824251275846], [-77.34378682211847, 34.54296551298559], [-77.34379771609149, 34.542971126916086], [-77.34400520008715, 34.543048716725295], [-77.34399272447715, 34.54318789067952], [-77.34403586816539, 34.54326686054432], [-77.34405371259201, 34.54335109897306], [-77.34406450528665, 34.54342238313019], [-77.3440691338348, 34.54348280183186], [-77.34406924988568, 34.54348295115297], [-77.3440696439078, 34.54348305010286], [-77.34416735793558, 34.54348783531989], [-77.34422065965795, 34.5435223270275], [-77.34427293107817, 34.543570195857], [-77.34444344376742, 34.54361268455289], [-77.34449230343667, 34.543645568740075], [-77.3444896969184, 34.543850849529406], [-77.34449863420042, 34.54388212666055], [-77.34449734945038, 34.54397215832611], [-77.34454718686524, 34.54404101196846], [-77.34459367238094, 34.54405156977884], [-77.34464362198551, 34.54407352352906], [-77.34466459904345, 34.5441452224256], [-77.3447284912335, 34.544190915513106], [-77.34493081019784, 34.54427479372827], [-77.34493443537802, 34.544272701373835], [-77.34493674417571, 34.5442747019993], [-77.34493664547901, 34.54427618473651], [-77.34493655204525, 34.54427758840838], [-77.34512148025652, 34.544494410993366], [-77.34519773217691, 34.54455993840615], [-77.34526861795503, 34.54468760260755], [-77.34528496074864, 34.544715709768795], [-77.34530374333484, 34.54472108052193], [-77.34531538533142, 34.54477764045464], [-77.34538262874558, 34.54490274566236], [-77.3454501220232, 34.54502433402547], [-77.3456319206572, 34.54515542912229], [-77.3456382005535, 34.54519208173947], [-77.34565082719215, 34.54527511881109], [-77.34565532115107, 34.54529980352214], [-77.34568086099127, 34.545385027732074], [-77.34568784037484, 34.54539220328357], [-77.3456896281506, 34.545394522200525], [-77.34569365312878, 34.54539912813171], [-77.34598112845246, 34.54541532495333], [-77.34622847723301, 34.54555923472109], [-77.34617717497586, 34.54574969888874], [-77.34622286609682, 34.54580486243954], [-77.34631710063535, 34.545885183185845], [-77.34644037308415, 34.546003072169476], [-77.34646042541384, 34.54601550144002], [-77.3464622133798, 34.54601674292814], [-77.34646455192636, 34.546019559322154], [-77.34680503976766, 34.546240064670855], [-77.34699749551034, 34.54642786339455], [-77.34703564754179, 34.546548291698315], [-77.34723233902093, 34.54677557153092], [-77.3472901617025, 34.54683843231463], [-77.34736319934767, 34.54686488263078], [-77.347429531814, 34.54698125717047], [-77.34775407689843, 34.54729827838149], [-77.34780835146881, 34.547411783543964], [-77.34799467037004, 34.54775306876877], [-77.34799486088686, 34.5477532720682], [-77.34799491188936, 34.54775334093013], [-77.34799503056678, 34.547753493935005], [-77.34840129845466, 34.54792857449485], [-77.34850740075805, 34.54816915898215], [-77.34856677778636, 34.54828608460835], [-77.34876462337913, 34.548432348212856], [-77.34895365032384, 34.548476084429296], [-77.34898615909276, 34.54858990617737], [-77.34909875583944, 34.548787148623546], [-77.34936167014844, 34.549025509975635], [-77.34942527704098, 34.549084675651976], [-77.34953128793872, 34.54923902606945], [-77.34964569120027, 34.549400623298666], [-77.34971517097786, 34.54946428067865], [-77.3497972059699, 34.54952734350451], [-77.34985587504264, 34.54965236181767], [-77.34988120200106, 34.54968520840518], [-77.34988857546219, 34.54969957080271], [-77.34991112438891, 34.54979459340209], [-77.34991361856099, 34.5498029538677], [-77.3499142220656, 34.549804947105386], [-77.34994350144967, 34.54989937207661], [-77.34995018233198, 34.54992010247604], [-77.34995913530372, 34.54994788308838], [-77.3499596549604, 34.5499512478017], [-77.34996707153398, 34.5499788772135], [-77.34996049937527, 34.55000719086492], [-77.35000422715571, 34.550014232020274], [-77.3500258378865, 34.550031625378864], [-77.35003432178544, 34.550049678605795], [-77.35004009522277, 34.550060176232655], [-77.35004206529672, 34.5500661563482], [-77.35004972055555, 34.550089393666994], [-77.35006144126356, 34.550124971466374], [-77.35006897125142, 34.55014782854945], [-77.35007388939678, 34.55016275745166], [-77.35009699912382, 34.55024827662979], [-77.35010079910998, 34.55026307694421], [-77.35011127873871, 34.550273415234116], [-77.35023431037357, 34.550368855423415], [-77.35026508540457, 34.55038013473709], [-77.35028865812026, 34.55045052086846], [-77.35035114936011, 34.55055637722982], [-77.35036022246501, 34.55059555623724], [-77.35037258914272, 34.55064895761791], [-77.35037876876203, 34.550656160118415], [-77.35038137756749, 34.55068690752614], [-77.35038816042568, 34.55071394621605], [-77.35038879556414, 34.550718939633235], [-77.350403429581, 34.55074235143216], [-77.35040972133116, 34.55075342102171], [-77.35042783062981, 34.5507694424407], [-77.3504578049033, 34.55077738020498], [-77.35047728531246, 34.55078465900493], [-77.35051910990973, 34.550791335769404], [-77.35058051856292, 34.550808673819745], [-77.35063177722313, 34.55082676974538], [-77.35067192818988, 34.55085721521521], [-77.35074517126586, 34.55090738845025], [-77.35076666643019, 34.55096607060162], [-77.35077736640615, 34.55102516559885], [-77.35079161272132, 34.551101243246094], [-77.3508211500908, 34.551263685676176], [-77.35084041432778, 34.55137337271348], [-77.35084211178861, 34.55138307974344], [-77.3508460715813, 34.5513887136779], [-77.35085457547787, 34.55145158296789], [-77.35086398327164, 34.55150234273262], [-77.35086518901538, 34.55150961920512], [-77.35090108768118, 34.55158844888573], [-77.35092551907769, 34.551615897357124], [-77.35096523361676, 34.55168249243979], [-77.35100009386849, 34.55172757544296], [-77.35100830325544, 34.55174868913429], [-77.35104324069285, 34.55178427096186], [-77.3511793508692, 34.55194659851137], [-77.35123843477263, 34.55205729074617], [-77.35136535326168, 34.55216465076821], [-77.35139025738286, 34.55218378138232], [-77.35142610379918, 34.55220910762168], [-77.35148684074517, 34.552269577098805], [-77.35152747912815, 34.55232131909895], [-77.35161696166855, 34.55237326062056], [-77.3516926847564, 34.55243768376279], [-77.351812105559, 34.55249751512177], [-77.35187576695294, 34.55254052251754], [-77.35196117576494, 34.5525685420395], [-77.35210052282562, 34.55261183009201], [-77.35220139846939, 34.552642770415], [-77.35232258169323, 34.55268517802773], [-77.35251827174403, 34.552733183159226], [-77.35256517826409, 34.55274298633353], [-77.3525916905065, 34.552744579087616], [-77.35263316215998, 34.552742476387664], [-77.35278827951613, 34.55273266357021], [-77.35294898258269, 34.55269395098039], [-77.352985646431, 34.55268686777668], [-77.35301661156997, 34.552680676400165], [-77.35310286390899, 34.552649042393256], [-77.35318349268975, 34.552620184592115], [-77.35330483606377, 34.55257254151705], [-77.35338148812868, 34.55254698875881], [-77.35352277017343, 34.55250116337929], [-77.35357916769696, 34.55248753669783], [-77.35361688450995, 34.55247599848405], [-77.3537766671292, 34.552435919237304], [-77.35378291460397, 34.55243259540642], [-77.3537903458348, 34.55242767773854], [-77.35389618045622, 34.552363518640185], [-77.35397561291845, 34.55232127113235], [-77.35402468787163, 34.55230185804523], [-77.35406666360454, 34.55226549323853], [-77.35412261912145, 34.55222531995396], [-77.354174915043, 34.55219107110071], [-77.35434610341548, 34.552085683754306], [-77.35445110318582, 34.55204009895044], [-77.3545721686922, 34.551989452496684], [-77.35462863930202, 34.55197477991321], [-77.3546839629831, 34.55193181379067], [-77.354971323645, 34.55170486350477], [-77.35501317508293, 34.55166512983582], [-77.35503342432315, 34.55163668670804], [-77.35514250878371, 34.55151692883071], [-77.35516715958835, 34.55149167772708], [-77.35517258979893, 34.55148890177786], [-77.35519140535888, 34.55147992960757], [-77.3552718604901, 34.55144030346398], [-77.35530143425302, 34.551432823067984], [-77.35537056299219, 34.55141647398068], [-77.35549012045851, 34.55140044273523], [-77.35566441509778, 34.551363379298365], [-77.35576472796336, 34.55134925933295], [-77.3558248458631, 34.551314931442775], [-77.35587310017773, 34.55127098876498], [-77.355965254064, 34.55116544603271], [-77.35598141758894, 34.55114273836272], [-77.35598915342109, 34.551131870468296], [-77.35601146785918, 34.55110076575124], [-77.35609658038507, 34.550993993761224], [-77.35612338280055, 34.55096343848955], [-77.35616733856224, 34.550913617521935], [-77.35620136184343, 34.550877192796], [-77.35625124679089, 34.55084931637386], [-77.3563098056124, 34.55080576978377], [-77.35654062899185, 34.55068524442111], [-77.35656561981428, 34.55066667618951], [-77.35679172533871, 34.55054350248384], [-77.35692502668472, 34.55038508089233], [-77.35696568801909, 34.55034165157392], [-77.35712349349745, 34.55020817929473], [-77.35720976747923, 34.550099263541014], [-77.35736577728017, 34.550015570657344], [-77.35753585531751, 34.54991206933321], [-77.3576854330321, 34.549785957115375], [-77.35772525188966, 34.54975584796004], [-77.35776502711617, 34.54972599708496], [-77.35782189923951, 34.549678685638284], [-77.35788688942263, 34.549634540488356], [-77.35793113230554, 34.5496076467825], [-77.35796499755727, 34.549566078874335], [-77.35800133397562, 34.54951761752605], [-77.35802862664617, 34.54949172169958], [-77.3580792906436, 34.54943136137232], [-77.35811876862101, 34.549356331380615], [-77.35816760584478, 34.54929094828499], [-77.35820288044182, 34.549243122542954], [-77.3582208848557, 34.549219216914835], [-77.35826885489564, 34.54915576724994], [-77.35827287080866, 34.549152990617095], [-77.35828744259524, 34.54913710364882], [-77.35834955843626, 34.549078278523574], [-77.35835683408797, 34.54906965711357], [-77.35852084737756, 34.54893120398696], [-77.35853961996582, 34.548910219871644], [-77.35856986304157, 34.54886975971116], [-77.35872977884162, 34.548754369988146], [-77.35877095734719, 34.54866059705269], [-77.35878563433037, 34.548648255024354], [-77.35887658925685, 34.54857742949868], [-77.35887652198285, 34.548573962485506], [-77.3589709038052, 34.548501530370864], [-77.3589726219456, 34.54849996844651], [-77.35897513837187, 34.54849855700779], [-77.35902085249236, 34.54846341521072], [-77.35902204593253, 34.548461922798275], [-77.35902211191154, 34.54846044741009], [-77.35899993264975, 34.54843378097236], [-77.35902817292794, 34.54840281148845], [-77.35903187120205, 34.54839857922069], [-77.35902922798167, 34.54839471768291], [-77.35900433613517, 34.54837194097627], [-77.3590089644205, 34.54834970796775], [-77.35900296116472, 34.54826636028147], [-77.35899826895974, 34.548250402683145], [-77.35901302090505, 34.54814707004067], [-77.35902003577327, 34.54812485656946], [-77.35912229021177, 34.54802256820824], [-77.3591375819802, 34.547985519278285], [-77.35914503806758, 34.54796293248972], [-77.35914318296182, 34.54786230074606], [-77.3591095384702, 34.54779084018238], [-77.35909225001376, 34.54774722279879], [-77.35910611925385, 34.54769562759999], [-77.35932330543395, 34.547591540905515], [-77.35908286061944, 34.54756965117573], [-77.35911519193233, 34.54749909556998], [-77.35910324961486, 34.547445862152166], [-77.35910275582769, 34.54743968033156], [-77.35909803570694, 34.54743747808371], [-77.35909364434667, 34.54742742601882], [-77.35907820998216, 34.547382008741955], [-77.35905495410233, 34.54734939219557], [-77.35899907396428, 34.5472710196746], [-77.35899906116803, 34.54727100172771], [-77.35899905424074, 34.54727099448933], [-77.35894019971255, 34.54719485770138], [-77.35888295923309, 34.54716529891217], [-77.35879925631471, 34.54706014275412], [-77.35875696177493, 34.54702900691267], [-77.35866785706853, 34.54695144746813], [-77.35866482679586, 34.54692049829391], [-77.35861545261173, 34.54687875480041], [-77.35847437856805, 34.54689151499392], [-77.35822406936909, 34.546825555155294], [-77.35816120245522, 34.54681887345212], [-77.35802769673418, 34.54682869389698], [-77.35791941455808, 34.546814387885576], [-77.35786038301976, 34.54680514755893], [-77.35783236058826, 34.546786583878585], [-77.35773391051885, 34.546779604355905], [-77.3576087811323, 34.54675417500731], [-77.35755935230765, 34.546743817868354], [-77.35751030456277, 34.54670801069648], [-77.3574416697156, 34.546703197342325], [-77.35743113228408, 34.54670107290614], [-77.35743241984082, 34.54664626331497], [-77.35743248226674, 34.5466396727038], [-77.35743263869776, 34.546633015749094], [-77.35743809989366, 34.546400590288386], [-77.35743849220587, 34.54639398407264], [-77.35743896801029, 34.546387723332884], [-77.35745104205019, 34.54629414133858], [-77.35748201043039, 34.54614289503932], [-77.3574722475501, 34.54613337403261], [-77.35752281512892, 34.54593177681565], [-77.35757313035566, 34.54588495223422], [-77.35784351131787, 34.545611038414], [-77.35785427274432, 34.545599649818456], [-77.35785524765991, 34.545596785442186], [-77.35785967677943, 34.545594125053334], [-77.35800368803197, 34.5453333129218], [-77.35799124218482, 34.54516621337211], [-77.35800708657925, 34.54508800007281], [-77.35804577063756, 34.54497522176115], [-77.35792520858234, 34.54485496517847], [-77.35827539879025, 34.54458437251088], [-77.35853028329286, 34.54460854910227], [-77.35904596097922, 34.544685923233665], [-77.35905821158767, 34.54468784343729], [-77.35906190204898, 34.544688977268486], [-77.35906224217295, 34.544691245893766], [-77.35906262688546, 34.54469403227529], [-77.3591499965261, 34.5448636852268], [-77.35915405062164, 34.544922849859226], [-77.35915858980249, 34.54498909370529], [-77.3591711575121, 34.54508904864228], [-77.35924553365885, 34.54507985048339], [-77.35927111035349, 34.54504384165115], [-77.35944570747381, 34.544910451940495], [-77.35946626358839, 34.544890425779634], [-77.35947578568148, 34.54487652149925], [-77.35955037713595, 34.54480716733926], [-77.35955065230476, 34.54480453494224], [-77.35955096614524, 34.54480160899465], [-77.35957567732865, 34.54473972539241], [-77.3595780982214, 34.544720730567356], [-77.35957927659003, 34.54470860411318], [-77.35957876191007, 34.54469679368614], [-77.35957727215437, 34.54467828974225], [-77.35957757713945, 34.544660780199855], [-77.35957435517642, 34.54461750378324], [-77.35957072147994, 34.54456869708221], [-77.35956984666431, 34.54455694700279], [-77.35956907097409, 34.544546528323984], [-77.35953013344479, 34.54450145959193], [-77.35953381594281, 34.54442655582221], [-77.35953691828468, 34.544378070596565], [-77.35954826096824, 34.54432089874559], [-77.35954884644137, 34.54430968461129], [-77.35955340603013, 34.544253284435726], [-77.35955507059901, 34.54425062079179], [-77.35955942022218, 34.54423040548858], [-77.35956735463056, 34.54419450546413], [-77.35956803991415, 34.544185240458916], [-77.35955260666907, 34.544130987506506], [-77.35954538305917, 34.544081697951384], [-77.359539356514, 34.54393251356336], [-77.35953580786733, 34.54388858251963], [-77.35955620199687, 34.54383213132509], [-77.35954652107962, 34.543764627832395], [-77.35958741311568, 34.54370752714388], [-77.3595998442348, 34.543678412947564], [-77.35957066951578, 34.54363873847948], [-77.35954282666657, 34.543600875286444], [-77.35947770921112, 34.543512322296024], [-77.35941337536575, 34.54345746744528], [-77.3593325392319, 34.54342820474734], [-77.35929386206149, 34.54331632547799], [-77.35918860047948, 34.54320410760556], [-77.35916045641596, 34.54316612380134], [-77.35909512744092, 34.54307535521778], [-77.35900207539416, 34.54304461086545], [-77.35898654636918, 34.54298837875734], [-77.35898767670496, 34.5429189745191], [-77.35894887661382, 34.542843494954866], [-77.3588138037114, 34.54276842883961], [-77.35880714871799, 34.54258276330035], [-77.35878098343959, 34.54252833101153], [-77.3589206671588, 34.542389628942864], [-77.35892006301816, 34.54238589249926], [-77.35891980025723, 34.542382745794654], [-77.35891561365558, 34.542342570364646], [-77.358869498991, 34.54227076153618], [-77.35887794530248, 34.54217304505024], [-77.35889546819615, 34.54212899732589], [-77.35880820645022, 34.542034763464336], [-77.35880507891672, 34.54198681432725], [-77.35883570031422, 34.541785980667626], [-77.35891994451643, 34.54165850491844], [-77.35892287780342, 34.541645593772714], [-77.35891410131843, 34.54152986755378], [-77.35892352196358, 34.541521722052515], [-77.35892146342454, 34.54141597819815], [-77.35892127946701, 34.54140642202007], [-77.35892114994631, 34.541396382688156], [-77.35892319304699, 34.54129398059114], [-77.35891436305297, 34.54128500602914], [-77.3589090297533, 34.54118401111427], [-77.35891149613808, 34.54114331486624], [-77.35890628463903, 34.54104134545197], [-77.35891447088007, 34.54102057715996], [-77.3589137621648, 34.54093905241318], [-77.35890463223895, 34.540919171472886], [-77.35889566359496, 34.54088724048189], [-77.35886697330824, 34.54080218221653], [-77.358812238001, 34.54059827570943], [-77.3588193343925, 34.54052776389635], [-77.35841709761976, 34.54037731458453], [-77.35850259391628, 34.54028472888297], [-77.35850756049217, 34.53995327881454], [-77.35843725898434, 34.53988476404572], [-77.35848308630162, 34.539816740547266], [-77.35850576110653, 34.53945566081821], [-77.35846013738674, 34.539391822220615], [-77.35850988571498, 34.53931370559478], [-77.35848354609436, 34.53914362784673], [-77.35864195206453, 34.53902518953802], [-77.3587956808153, 34.53900803785023], [-77.35893501575072, 34.53883379343646], [-77.35899531517362, 34.538700395745906], [-77.35898322565149, 34.53847270867356], [-77.35898773871338, 34.53833655354202], [-77.35901839748777, 34.53821488679571], [-77.35901962253358, 34.538203785017394], [-77.35899798800641, 34.53809025373983], [-77.35901926115201, 34.53796268106137], [-77.35888474005273, 34.53786173717853], [-77.35901426394486, 34.537716133867946], [-77.35912963305283, 34.53758164878852], [-77.35922251420479, 34.53751123115383], [-77.35940895108575, 34.53741145108764], [-77.35937506077447, 34.53730148215676], [-77.35943954557658, 34.53717796877553], [-77.3594399616115, 34.53716972419601], [-77.3594465535972, 34.53715652568345], [-77.35950045258438, 34.53703860094758], [-77.35954317351492, 34.53698002493804], [-77.35962082658132, 34.536783245667344], [-77.35962070794847, 34.5367764593291], [-77.35962517769133, 34.53677155905191], [-77.35963240700754, 34.536753899913926], [-77.35965634565093, 34.53666254075482], [-77.35966005592186, 34.53664838085014], [-77.35966512727049, 34.53662902651932], [-77.35968672961191, 34.536553140983244], [-77.35970131283118, 34.53652002742895], [-77.35972935160632, 34.53645972751052], [-77.35973315530634, 34.53645154732355], [-77.35976231806043, 34.53638883000204], [-77.35975068591904, 34.536335892987836], [-77.35994338102866, 34.536240342840024], [-77.35992960435091, 34.53617458689407], [-77.3599551531889, 34.53604744396835], [-77.35984514464285, 34.53603470944207], [-77.35981885653113, 34.53601345166687], [-77.35974695768718, 34.5359636450903], [-77.3597475505326, 34.53596181278211], [-77.35983035758673, 34.535889383310696], [-77.35983716730236, 34.535881236573694], [-77.35990036214318, 34.53575688962515], [-77.35990378588141, 34.535665284415934], [-77.35991069550207, 34.53563298952285], [-77.35991954245293, 34.53559163974045], [-77.35997794545067, 34.53550089252546], [-77.35999126593781, 34.535459483885575], [-77.36001130882171, 34.53537367572965], [-77.36005885565785, 34.53527284164247], [-77.36007058928027, 34.53524971438313], [-77.36008441878303, 34.53524073477344], [-77.36008041085428, 34.535228501222846], [-77.36022454271927, 34.53497573046867], [-77.36026644605343, 34.53484828268676], [-77.36026725177737, 34.53484570304262], [-77.36033598824845, 34.5347148562153], [-77.36035353520043, 34.53464229246466], [-77.36038153128743, 34.53451782523379], [-77.36040020307856, 34.5344607838791], [-77.36041844917301, 34.53442551168693], [-77.36043541763077, 34.534333300245564], [-77.36047524753593, 34.53423070654501], [-77.36048868712287, 34.53421132179423], [-77.36049606610324, 34.53420215357139], [-77.36049862083547, 34.53418781993574], [-77.3605980458581, 34.534016168742134], [-77.36067338719523, 34.533931791284694], [-77.36066553046628, 34.53382010439904], [-77.36066833586425, 34.5338020044643], [-77.36072417971002, 34.533679651649315], [-77.36071342139728, 34.53357557508228], [-77.36073841992072, 34.53343277628478], [-77.36077785041579, 34.53325232696237], [-77.36075467643094, 34.53318561028349], [-77.36077562019685, 34.533109105249686], [-77.36089593757504, 34.53300026260009], [-77.36094503902213, 34.53294317961155], [-77.36104398248175, 34.53289911910519], [-77.36116154875775, 34.5328001690137], [-77.36129333900351, 34.53278752873588], [-77.3614872671382, 34.53271030147734], [-77.36152022808609, 34.53258570215879], [-77.36154421337491, 34.53248964476485], [-77.36149576352905, 34.532344401052335], [-77.36152655972327, 34.53223268705676], [-77.36152363639177, 34.53221797432465], [-77.36152482625825, 34.53220415724838], [-77.36155597911127, 34.532090903619455], [-77.36158024741542, 34.53201044504581], [-77.36164228253678, 34.531873867839415], [-77.36166183040308, 34.53183083301311], [-77.36166817496765, 34.53180486495746], [-77.36171018512682, 34.53172438096953], [-77.36176503400233, 34.53160363121709], [-77.36178082316425, 34.531568869431496], [-77.36180873146216, 34.531506492793085], [-77.36185403518814, 34.531398573850936], [-77.36196194189166, 34.53129795726344], [-77.36196864488747, 34.53120597824528], [-77.36198766481091, 34.53112966638705], [-77.36202452612966, 34.53104411817321], [-77.36198254959547, 34.53096437771167], [-77.36196010625183, 34.53090914453273], [-77.36189609898882, 34.53081779119647], [-77.36185901453013, 34.53074428419766], [-77.36181568274858, 34.53063480949371], [-77.36182350021627, 34.53058342313], [-77.36185972464067, 34.53050236417578], [-77.36183819242899, 34.53014902885259], [-77.36184143500813, 34.53009119020788], [-77.36181901145406, 34.53005041823418], [-77.36175042587006, 34.52996465818488], [-77.36150806355312, 34.52964955698076], [-77.36152695969176, 34.52950083819403], [-77.36158652787005, 34.52939343115071], [-77.36176724193459, 34.52922930020023], [-77.3618829699239, 34.529177350301566], [-77.3619867263725, 34.52919931717842], [-77.36200149078205, 34.5292112493852], [-77.3620895477405, 34.52924217554685], [-77.362132494439, 34.529298776932066], [-77.36212172564359, 34.529316343454255], [-77.36212909718276, 34.529332928990044], [-77.36215743622787, 34.5293309284909], [-77.36220764110409, 34.52939416478844], [-77.36226376871821, 34.52941829617423], [-77.3622705001037, 34.529467273586434], [-77.36234210557011, 34.52952942491977], [-77.36243683017373, 34.52958274917163], [-77.36254131263402, 34.52970898563997], [-77.36257434382092, 34.52974079826028], [-77.36279349726824, 34.52979552791332], [-77.36293030261918, 34.529863441991516], [-77.36298592358737, 34.52989124940953], [-77.36310262013905, 34.529909528465765], [-77.36312545641147, 34.52991186251074], [-77.36314554817432, 34.529903344846964], [-77.36326863281194, 34.52985164686069], [-77.36332492698301, 34.5297713657064], [-77.36333771897547, 34.529753250531], [-77.36339244605253, 34.529663531178336], [-77.36342592905577, 34.52961813129691], [-77.36348653088093, 34.52951229672864], [-77.363507848592, 34.52947132296539], [-77.36353595942751, 34.52935745597618], [-77.36354409929305, 34.529240598465464], [-77.3635449617767, 34.52923374665686], [-77.36354834131849, 34.52922412115987], [-77.36354129793813, 34.529111861754735], [-77.36353732858423, 34.52906484935486], [-77.36353387058267, 34.52899368989271], [-77.3635339701836, 34.52899050463797], [-77.36353382189041, 34.52898723269846], [-77.36352713398789, 34.528878096705924], [-77.36352265181912, 34.52886972236264], [-77.36344639502545, 34.528818523034346], [-77.36337778704805, 34.52876817749785], [-77.3633641847802, 34.52876006333003], [-77.36334839330748, 34.52874435373745], [-77.36329767685169, 34.52868971691489], [-77.36326284392064, 34.528662322231355], [-77.36327051422131, 34.52861073714415], [-77.36329133572337, 34.52853580544319], [-77.36335556279218, 34.528430580240915], [-77.3633727596318, 34.52841212702076], [-77.36339113357263, 34.528399016903], [-77.36342139675588, 34.528354676099525], [-77.36352004830069, 34.52823543603124], [-77.36370853388787, 34.528108469398965], [-77.36372407922384, 34.52808635712768], [-77.36375640636774, 34.52806594682735], [-77.36391555926139, 34.52793117083868], [-77.36402007316804, 34.52781876508619], [-77.36410257729418, 34.5277738132824], [-77.36415667869043, 34.52772617086342], [-77.36427736357051, 34.527610503619286], [-77.3643572988553, 34.52753503578283], [-77.36436552533398, 34.52752922291778], [-77.36437555645145, 34.527522729416006], [-77.36445676249585, 34.52747651848888], [-77.36451252862913, 34.527476575413445], [-77.36455485581887, 34.52747800357865], [-77.36457732671545, 34.52747962304376], [-77.36490648898382, 34.52741991892453], [-77.36494969295248, 34.52737602439568], [-77.36502963518572, 34.52723148068235], [-77.36506252005034, 34.52717893770111], [-77.36515262275803, 34.527083596219356], [-77.36518461724751, 34.52705853433133], [-77.36520369470729, 34.52703618621394], [-77.36532678126089, 34.52691226156825], [-77.3653413878337, 34.52689393609348], [-77.36534756910923, 34.52688946630151], [-77.36535352974317, 34.52687972636154], [-77.3654817157149, 34.5267063813873], [-77.36553081451083, 34.52662181949141], [-77.3655348085519, 34.526608036028904], [-77.36555630275005, 34.5265940556873], [-77.36567866180309, 34.526553855496246], [-77.36575413115155, 34.526524990926255], [-77.36581947999596, 34.52653926603023], [-77.36588093602185, 34.526571376615536], [-77.36594703110067, 34.526684093558984], [-77.36594702510804, 34.52668444303716], [-77.36594674086186, 34.52668460982706], [-77.36588561044621, 34.52681552937261], [-77.36587452351228, 34.52685968056431], [-77.3658680757258, 34.52687926220945], [-77.36587068388255, 34.52689565621403], [-77.36587118181522, 34.526940021199664], [-77.36587201353422, 34.5269822757578], [-77.36598965208167, 34.52704536571176], [-77.36594352765724, 34.52716952648968], [-77.36594716787421, 34.527181234742585], [-77.36600686547408, 34.527287711963126], [-77.36600276612593, 34.52736607050709], [-77.36604514487857, 34.52747727133924], [-77.36603617236106, 34.52752831574642], [-77.36607350882058, 34.52755390557742], [-77.36612195503957, 34.527606668556245], [-77.36624695329388, 34.52766399045814], [-77.36628681753479, 34.52784322886086], [-77.36632127432969, 34.52797689201237], [-77.36610889780479, 34.528178941162864], [-77.36605223271569, 34.528225802744274], [-77.36592339719449, 34.528279041819644], [-77.36570892588621, 34.52850583427716], [-77.36568272669157, 34.52854272520985], [-77.36567373493912, 34.528559836994866], [-77.36560937392728, 34.52862944401599], [-77.36538861552579, 34.52889633477881], [-77.36530705066987, 34.528915973030145], [-77.36522778027884, 34.52891832073418], [-77.36506960590671, 34.52898946738807], [-77.36502866967709, 34.52902000812159], [-77.36496820036346, 34.529064304635305], [-77.36496128276137, 34.529120064652474], [-77.36500779081362, 34.52914542890528], [-77.36510421680308, 34.52920404505066], [-77.36515665191058, 34.52921355537681], [-77.3652973273462, 34.52934195533077], [-77.36530613774367, 34.52934178080914], [-77.36530350773754, 34.52934765257549], [-77.36530398656106, 34.529351878430035], [-77.3652686061462, 34.52959750591134], [-77.36515240393283, 34.52977484283144], [-77.36512270404658, 34.52996342086798], [-77.36532342882983, 34.53007925969209], [-77.36535235931261, 34.53027234604235], [-77.3657087677422, 34.53051339538595], [-77.36535153154198, 34.53123852634242], [-77.36549711492884, 34.53192946292188], [-77.36483797197297, 34.532269579195145], [-77.36470172017923, 34.53253589200263], [-77.364471840819, 34.53265019526146], [-77.36367550466323, 34.53303000354254], [-77.36324865835877, 34.53310934223859], [-77.36294160341778, 34.5333602738122], [-77.36266879527219, 34.533533605866786], [-77.36252665039295, 34.53366486860634], [-77.36244961844494, 34.53372043576027], [-77.36222484336761, 34.5338143113517], [-77.3620543741288, 34.53383877246419], [-77.36192951342791, 34.533828892454515], [-77.36181672030196, 34.53386408468446], [-77.36173395492986, 34.53397691656031], [-77.36169643589625, 34.53402927166451], [-77.3616859364742, 34.53404881162954], [-77.3616829648222, 34.534256894616334], [-77.36171240409178, 34.53427179648014], [-77.36177178720646, 34.53443104474682], [-77.36188652778003, 34.534491541841625], [-77.36176980414919, 34.53458635523285], [-77.36173718678643, 34.534757876546095], [-77.36163696268152, 34.53492644726617], [-77.36153358855093, 34.534968146655174], [-77.36124269577965, 34.53500174463376], [-77.3610802446005, 34.53495448570594], [-77.36102607798422, 34.53496955847206], [-77.36101268064469, 34.5349846361717], [-77.36092342860952, 34.53504379270425], [-77.36091193517446, 34.535081880536296], [-77.36093012540562, 34.53511893816007], [-77.36091340968095, 34.535163101391234], [-77.36084298001776, 34.535315194109785], [-77.36081414577782, 34.535380466103675], [-77.36073457083492, 34.53557281364775], [-77.36067685947737, 34.535645062298286], [-77.36043680480235, 34.535910818013974], [-77.3604189047514, 34.53591594603227], [-77.36038631124487, 34.53593173066122], [-77.36010406095559, 34.536011109742695], [-77.36012168417454, 34.536162778172496], [-77.36020315694374, 34.5362029317902], [-77.36017318048265, 34.536293112704705], [-77.36004305027198, 34.53647081361452], [-77.360037492887, 34.53647545566092], [-77.36003119235878, 34.536481604510335], [-77.36000093007019, 34.536581848586586], [-77.3599953996822, 34.53660008796701], [-77.35998057563799, 34.53669612860437], [-77.35997050117241, 34.53672608572841], [-77.35995521793842, 34.53677153148951], [-77.35999552457415, 34.536951772086404], [-77.35997965199915, 34.536969592086066], [-77.35999474103133, 34.53698299632492], [-77.36001495360081, 34.5371911707584], [-77.36001893279665, 34.537206065194496], [-77.36001955541684, 34.53720866982177], [-77.36001715158343, 34.53721066505472], [-77.36003767452213, 34.5374332591014], [-77.36007002978536, 34.53744622509919], [-77.36003721098876, 34.53767498897625], [-77.36003846064492, 34.53769559564989], [-77.36002124240217, 34.5377093938642], [-77.36000957716938, 34.53793728342224], [-77.36002126978305, 34.53794289553788], [-77.36005353871653, 34.53814538925693], [-77.36012376944754, 34.53817295841364], [-77.36004368202204, 34.53821705087239], [-77.3601109906492, 34.53858466421987], [-77.36026745947169, 34.538641913740534], [-77.36011796797584, 34.538749935527974], [-77.36022313213634, 34.53898254728068], [-77.36024989802202, 34.539134091797465], [-77.36025683426934, 34.53931424351863], [-77.36025739472827, 34.53943937468455], [-77.36025063436409, 34.539623634284695], [-77.36023953635777, 34.53980256362961], [-77.36024874665117, 34.53992867959295], [-77.36023675743064, 34.540115281196634], [-77.36022097729833, 34.54029027007695], [-77.36021900439208, 34.54043394965314], [-77.36020315008626, 34.54060976940907], [-77.36018468145404, 34.54076934620425], [-77.36020054908921, 34.540930677070705], [-77.36018448581606, 34.54110210565741], [-77.36016839851428, 34.541258160194914], [-77.36015901294994, 34.541350598139694], [-77.36015610368729, 34.54144707481156], [-77.36014158136967, 34.54159793260607], [-77.36013154578896, 34.54173696550552], [-77.36012861708505, 34.54195063721831], [-77.36012050371161, 34.54209061630558], [-77.36011431026124, 34.54222531602069], [-77.36010573140402, 34.54233756778327], [-77.36009838574216, 34.542456276796585], [-77.3603029853216, 34.54255398574564], [-77.36009603299476, 34.542713159648144], [-77.36008850433102, 34.542829696918446], [-77.36009152633775, 34.54294422765662], [-77.360105402382, 34.543072087699045], [-77.360166168179, 34.543244021374704], [-77.3601829154683, 34.54330574969471], [-77.36020472220534, 34.543341317907974], [-77.36023351850184, 34.54342087480155], [-77.36020849109838, 34.54351298225653], [-77.36021683402902, 34.54354568954221], [-77.36019234192861, 34.543592067708126], [-77.36018114971077, 34.54362386317548], [-77.36019722320208, 34.543670925683365], [-77.36020543358, 34.54375986265953], [-77.36020953241945, 34.543791565205254], [-77.36020908801466, 34.54382077384494], [-77.36021835002498, 34.54401451526324], [-77.36021811602272, 34.54403515333319], [-77.36021180750011, 34.54406009576728], [-77.36021499029263, 34.54415801554824], [-77.36021002092842, 34.544258830692065], [-77.36021062181484, 34.54428105672122], [-77.36021285524835, 34.54430068292578], [-77.36022303066339, 34.54451352857854], [-77.36022344848148, 34.54452403383719], [-77.36022251399868, 34.54453475316714], [-77.36022856789393, 34.544645708725696], [-77.36022345985228, 34.54476210531759], [-77.36022346500593, 34.544768855652364], [-77.36022359720225, 34.54477531356663], [-77.36023062166824, 34.5449222472632], [-77.36023679342593, 34.54500670668167], [-77.36024635107236, 34.5450103841561], [-77.36023649833783, 34.54501681704898], [-77.36022431932273, 34.545197706433484], [-77.36022079272918, 34.545257543375875], [-77.36022059545634, 34.54525891725456], [-77.36022072098612, 34.54526025075636], [-77.36022274312164, 34.54526659814789], [-77.36028597684646, 34.54545224458024], [-77.36035424225523, 34.545484495757584], [-77.36031332592384, 34.545550932625275], [-77.36032561690496, 34.545663624983874], [-77.3604300365752, 34.54571840531475], [-77.36044975468825, 34.54586567826171], [-77.36020652626769, 34.54597539765045], [-77.36019894285278, 34.54599201586391], [-77.3601970835041, 34.545996775536466], [-77.36018588242307, 34.54601075751921], [-77.36016659744936, 34.54622464624962], [-77.36016542488719, 34.54624615856783], [-77.36016186106635, 34.54627031715927], [-77.36008724607757, 34.54643440641568], [-77.36007143892941, 34.54650451670695], [-77.3600308161937, 34.54653113502573], [-77.36003581892652, 34.546607086008066], [-77.36007550977044, 34.54662634256707], [-77.3600738623796, 34.54667626261515], [-77.360089685378, 34.54674671334466], [-77.3600977915059, 34.54680156527517], [-77.36009575147833, 34.54686825189177], [-77.36007209320724, 34.546923769779596], [-77.36007310260125, 34.546940939893524], [-77.36009621445254, 34.54699059728689], [-77.3601063525089, 34.54703646648189], [-77.36009200085235, 34.547181823345795], [-77.36009520229308, 34.547235567161266], [-77.36009772693563, 34.54728437442573], [-77.36010208184027, 34.54735698857569], [-77.36010690698134, 34.54743744346982], [-77.36011462021916, 34.54747759512784], [-77.36011723493803, 34.54751099118694], [-77.36012013914447, 34.54753800646385], [-77.36012824054342, 34.54757200685386], [-77.36013217159669, 34.54759747981964], [-77.3601672696484, 34.547691224548196], [-77.36018493098102, 34.54770113970064], [-77.36019887456159, 34.547710286690645], [-77.36022075739373, 34.54774120296548], [-77.36030268017964, 34.54781775080058], [-77.36033443121892, 34.54782937972118], [-77.3603353334833, 34.547921131312435], [-77.36030560880542, 34.5479397411915], [-77.36030726336014, 34.5479706304613], [-77.36031061979617, 34.54803329108812], [-77.36033493992583, 34.54805792960194], [-77.3603424036259, 34.54806472700498], [-77.36035431698122, 34.54809579330019], [-77.36041041372044, 34.548169473416635], [-77.36036657353056, 34.54828781622737], [-77.3603630930585, 34.54830718799515], [-77.36034872070385, 34.548340422770465], [-77.3603328889638, 34.548416676591124], [-77.36033403025468, 34.54842529687079], [-77.3603346021742, 34.54843270219264], [-77.36033695027287, 34.54848074433833], [-77.36033771268578, 34.54848597265054], [-77.36033833266501, 34.548490224201046], [-77.36034182324725, 34.54851416106532], [-77.36034051857548, 34.548516171627156], [-77.36032732262126, 34.54852262911822], [-77.36031997736511, 34.54852424817024], [-77.36031049351102, 34.548526378795145], [-77.36030578968082, 34.548527675780555], [-77.36030650603064, 34.54852939646509], [-77.36031117440284, 34.54853029557746], [-77.36031984785015, 34.548529909583564], [-77.36032617888492, 34.548529594615665], [-77.3603266434823, 34.548533471145255], [-77.36032954372554, 34.54853923269162], [-77.36033325835245, 34.54854782011719], [-77.36033536298648, 34.54855281680522], [-77.36034348921054, 34.548569106855695], [-77.36035912648235, 34.548595178115], [-77.3603676859604, 34.548604068594464], [-77.36037431864246, 34.54864402609124], [-77.36040159496946, 34.54866039172332], [-77.36038764655997, 34.54869168464214], [-77.36037460802373, 34.548764497525625], [-77.36037969754923, 34.54878595705191], [-77.36037837052756, 34.54881135519795], [-77.36038232459576, 34.54890799072319], [-77.36030876118217, 34.549025855985214], [-77.3603047131995, 34.54904157891785], [-77.36018736909665, 34.54914757724498], [-77.36016318468015, 34.54918437080727], [-77.36016312312961, 34.54920336735731], [-77.36013284384988, 34.5491959235183], [-77.36012577968964, 34.54919418686517], [-77.36011441640818, 34.549191393311006], [-77.36003523982947, 34.54917192850917], [-77.35999301875104, 34.54918269969316], [-77.35998585443869, 34.54918542866056], [-77.35996919272642, 34.54921230497876], [-77.3599623726688, 34.54922988159045], [-77.35995669493457, 34.549261801138634], [-77.35996785397072, 34.54927370376882], [-77.35998365602481, 34.54928151110492], [-77.36000220934955, 34.54928770199524], [-77.36003236074956, 34.54929776293477], [-77.3600906808736, 34.54931722319617], [-77.3601036942978, 34.54933159075942], [-77.36012818683561, 34.54939947574501], [-77.3601562408383, 34.549412514957446], [-77.36014788132871, 34.5494313985675], [-77.36014736223464, 34.54944406678383], [-77.36012619421827, 34.549486570650444], [-77.36005895383374, 34.549649421813456], [-77.35998698147122, 34.54969939156993], [-77.35992401767112, 34.549743106763415], [-77.35987679976895, 34.54974467855105], [-77.35978513107558, 34.549764569190344], [-77.35972604648589, 34.549815815417276], [-77.35969317016898, 34.54986411060077], [-77.35967499387054, 34.54995935305053], [-77.35966198856215, 34.54999101242916], [-77.35957421374384, 34.55009435507668], [-77.35956581706576, 34.55015460435781], [-77.35946295744019, 34.55026449498794], [-77.35958022738971, 34.5504099833171], [-77.35961178563473, 34.55048788891521], [-77.35948154533752, 34.550858708517985], [-77.35933401491553, 34.55101753239927], [-77.35909426015138, 34.55116702466913], [-77.35896471613987, 34.55131553072036], [-77.35890561358029, 34.55135353745531], [-77.35855444520972, 34.55140113133746], [-77.35848294317346, 34.5514029289176], [-77.35819060370824, 34.55122411250358], [-77.35813610508524, 34.55119001150046], [-77.35813188975979, 34.551185829058355], [-77.35812416183786, 34.551187893666416], [-77.35812042124928, 34.55118996675428], [-77.35811405539465, 34.55119318616465], [-77.35772683208077, 34.551393411976306], [-77.35765615750228, 34.55146082871925], [-77.3576002158139, 34.55151198954531], [-77.35746848391668, 34.55161789034816], [-77.35732565204303, 34.551766893451614], [-77.35730916865062, 34.55178874931329], [-77.35729188666853, 34.55180120344431], [-77.35711632138526, 34.5519432938749], [-77.35699734731747, 34.55204435908659], [-77.35694330155141, 34.55209621177935], [-77.35693446643396, 34.552103186652694], [-77.35692515894662, 34.55211024139597], [-77.35689667063053, 34.55212054173108], [-77.35652798987822, 34.55230842092218], [-77.35638960015231, 34.552334832229484], [-77.35613255940228, 34.55243067714164], [-77.35579043111977, 34.5524748820458], [-77.35573831851168, 34.552500999717296], [-77.35572375577324, 34.552507615850864], [-77.35567892656857, 34.552523055205036], [-77.35558413061443, 34.55256386839791], [-77.35554025726432, 34.55257717370374], [-77.35550497961366, 34.55260930134673], [-77.35552362474708, 34.55265861641395], [-77.35552002035651, 34.55266834184006], [-77.3555230763955, 34.5526771848658], [-77.35557823679734, 34.55278237255254], [-77.35570756637674, 34.55299648687104], [-77.35571105698801, 34.55300807530604], [-77.35571759382641, 34.55301274029394], [-77.35572641401737, 34.55302016869468], [-77.35584925190099, 34.553154488949694], [-77.35593705549064, 34.55322036417177], [-77.3559504470914, 34.55331928822034], [-77.35625074330562, 34.55342002879746], [-77.35610524947951, 34.55368489563979], [-77.356160756529, 34.55392262881336], [-77.35593160258986, 34.55409898426425], [-77.35588475671679, 34.554207184007616], [-77.35579189517945, 34.55440474875147], [-77.35586237013618, 34.55445522913863], [-77.3558192325271, 34.55486680675669], [-77.35593821531212, 34.55509569450309], [-77.35567415190587, 34.55529940342121], [-77.35559565252376, 34.55503598230096], [-77.35552093555354, 34.55499402496969], [-77.35527701803667, 34.55479433797928], [-77.35523794175863, 34.55478993961143], [-77.35490055704402, 34.55478982270574], [-77.35484660080172, 34.5548462719819], [-77.35462674234786, 34.554954364095295], [-77.35450182266118, 34.55505545473612], [-77.35446108166371, 34.55512213827034], [-77.35442924543979, 34.555151169887516], [-77.35444062401564, 34.555360560279986], [-77.35409585821935, 34.555636032600596], [-77.35403461726209, 34.55565977150515], [-77.35347206117893, 34.55577858811196], [-77.35398524886368, 34.55582253979691], [-77.35409461627643, 34.55573436294441], [-77.35412900396081, 34.55572108503587], [-77.35430008431251, 34.55565940593516], [-77.35449089345794, 34.55553180539071], [-77.35467326735375, 34.55560568947543], [-77.35484181380085, 34.55562528319225], [-77.35488248661007, 34.55565476808504], [-77.35524710244613, 34.555947639917136], [-77.35526588948142, 34.555956073095096], [-77.35527621648349, 34.55596780485768], [-77.35565495065111, 34.556313482003965], [-77.35562610104407, 34.5563648413237], [-77.35566973997537, 34.55664509627762], [-77.35599201545418, 34.5566122799567], [-77.35608483899021, 34.55665331455506], [-77.35645738075686, 34.55698313341494], [-77.35648503692386, 34.557013265855105], [-77.35724526036437, 34.55690220193307], [-77.35742509782311, 34.55690775949185], [-77.35744927615835, 34.55753312299387], [-77.35752324832211, 34.55774273393351], [-77.35730277330829, 34.5578370190661], [-77.35757633208149, 34.558226590419], [-77.35751171689866, 34.5585934992836], [-77.35763820438473, 34.55867035137212], [-77.35796941556833, 34.55859524038237], [-77.35803211069864, 34.558704891807736], [-77.35845825987866, 34.55891663135683], [-77.35957248911579, 34.55829680551298], [-77.35957808263782, 34.558263709974405], [-77.35960803548639, 34.558278095133524], [-77.3596307949605, 34.55826388889708], [-77.3618906693037, 34.5570260228575], [-77.36276002843336, 34.55702753450801], [-77.36393370016137, 34.55553653698769], [-77.36433650708248, 34.555299228254476], [-77.36508882464832, 34.55499350052105], [-77.36566814888525, 34.55572075823098], [-77.36591152376431, 34.55665749495831], [-77.36600612160548, 34.55726805011653], [-77.36651666508261, 34.5572967659518], [-77.36748665716277, 34.55786445449432], [-77.36780836805764, 34.558461922270624], [-77.36766751147464, 34.55882922360039], [-77.36767142938021, 34.55902833892941], [-77.36782337930093, 34.560505001271835], [-77.36748499214198, 34.56172950763324], [-77.36719618864375, 34.561982437683156], [-77.3672424862264, 34.56254787491139], [-77.36701063694687, 34.564018522615754], [-77.36795226509146, 34.5650760017282], [-77.36813357325475, 34.565555011565614], [-77.36853945994501, 34.566056409617794], [-77.36857046502111, 34.56634119699983], [-77.36905869938501, 34.56672661939278], [-77.36950823915905, 34.56657083743046], [-77.37057909962098, 34.56684125892561], [-77.37063451085578, 34.56680823718507], [-77.37194167992145, 34.56641494916205], [-77.37221052099262, 34.56635724495541], [-77.37302429867067, 34.56567193371321], [-77.37441272186132, 34.565325001289075], [-77.37536252575785, 34.56533806641724], [-77.37601038827577, 34.565420142977004], [-77.37840302694585, 34.56577355426531], [-77.37847770266232, 34.56580192152389], [-77.37851399829326, 34.56584782102248], [-77.37866849432376, 34.565901806820804], [-77.38008949277598, 34.56702855746736], [-77.38015023156737, 34.5671544765419], [-77.3801523501193, 34.567219667113584], [-77.3809189589016, 34.56791326595166], [-77.38094264583955, 34.56795487736623], [-77.38111635474388, 34.56818766774006], [-77.38122469766424, 34.568388703305494], [-77.38107126492798, 34.56878546568164], [-77.38135464297238, 34.56907887074557], [-77.38160213535042, 34.56949064046939], [-77.38158756625587, 34.5695601697308], [-77.38166467429319, 34.569613876004645], [-77.38191239548554, 34.57009538403081], [-77.3822151459477, 34.57031882852937], [-77.38275244243677, 34.570767096790085], [-77.38324020858786, 34.57112316295407], [-77.38378736326727, 34.571200781442215], [-77.38428983275128, 34.571150849629355], [-77.38481615399886, 34.57098225763009], [-77.38554561728972, 34.570624690904474], [-77.3856041919515, 34.57058179686239], [-77.38568082674544, 34.57058572220255], [-77.38639219703887, 34.57031022958411], [-77.38697520217704, 34.570260801163684], [-77.38718016035538, 34.57023269838868], [-77.38739401115015, 34.57019082762741], [-77.38796804570451, 34.57058496828407], [-77.38869032812869, 34.57016349681771], [-77.38875607175706, 34.57013645239165], [-77.38879510150436, 34.570177163670664], [-77.38940192722721, 34.56997856492699], [-77.38954404177892, 34.569986857255586], [-77.38964861874479, 34.569983441885], [-77.39000394706602, 34.570044893762216], [-77.39003633754015, 34.57035876815178], [-77.39086951435985, 34.57049940770293], [-77.39111984685881, 34.57058438887116], [-77.39124122719984, 34.57058477431815], [-77.39122381108272, 34.57071809419759], [-77.3913078846552, 34.57090865494834], [-77.39165114572496, 34.571782005067675], [-77.39179320751575, 34.572334245060986], [-77.3922299170947, 34.572772962363516], [-77.39220842983374, 34.57344786359839], [-77.39228247179904, 34.57396195778759], [-77.39237073378146, 34.57429898497688], [-77.39241598926735, 34.57449087549797], [-77.39241309803008, 34.57479225721764], [-77.39252161478589, 34.57496368545142], [-77.39264073381099, 34.575549921452605], [-77.39261717861845, 34.575611962127596], [-77.39261030039572, 34.57570437149014], [-77.39269511839117, 34.57585506901269], [-77.39279755812464, 34.57632463811768], [-77.39287532050069, 34.57642386868104], [-77.39285933002074, 34.57660322081797], [-77.39286391218383, 34.57709261123715], [-77.39309967800882, 34.57724064829706], [-77.3934082889, 34.577276602554456], [-77.39348296644683, 34.57726068503859], [-77.3935863849498, 34.577281888108146], [-77.39387696321779, 34.57735015232865], [-77.39410169156213, 34.57727852983364], [-77.39427097419102, 34.577301273430045], [-77.39444269216114, 34.577286457364835], [-77.39451717499789, 34.577460750658084], [-77.39455837808752, 34.57756965123268], [-77.3946309402101, 34.5778689106316], [-77.39449627207115, 34.57849458102177], [-77.39466015075809, 34.578713839827756], [-77.3948058503318, 34.57896543355915], [-77.39505885166412, 34.57884230222637], [-77.39525508451189, 34.57883946989165], [-77.39559758914574, 34.57884723089346], [-77.39584688078352, 34.57880159856656], [-77.39596115473832, 34.57882759338186], [-77.39610238047295, 34.578781101200676], [-77.39624090283564, 34.57867255519512], [-77.39654857615338, 34.57853446067374], [-77.39663492656403, 34.578499978954575], [-77.39667375873934, 34.57846519718226], [-77.3968185614659, 34.57840246452714], [-77.3973236266995, 34.578222553426876], [-77.3974229654236, 34.57821480132331], [-77.39757817260438, 34.57812563088393], [-77.39781698578003, 34.578016158036874], [-77.39792192716462, 34.57793178024802], [-77.39818118612828, 34.57778129671898], [-77.39821100702471, 34.57776039098821], [-77.39822315227794, 34.57776215416165], [-77.39840801397358, 34.5776909368966], [-77.39853417360014, 34.57765402433092], [-77.39860502071559, 34.577618435505464], [-77.39868965462468, 34.57761673251055], [-77.39874353709507, 34.5776371341924], [-77.3987667853553, 34.57759065981952], [-77.39880202619472, 34.57756704856089], [-77.39887083302759, 34.577543647349906], [-77.3989324659897, 34.57753233941689], [-77.39899903112973, 34.5775227978571], [-77.39906592853961, 34.5775134401548], [-77.39913144160377, 34.57750150480292], [-77.3991960368238, 34.577452616845896], [-77.39921741646873, 34.57744253259029], [-77.39939304334285, 34.57734995416126], [-77.39965289460127, 34.57728893435312], [-77.39978705092693, 34.5772712055869], [-77.40003555288376, 34.5773569384145], [-77.40039562820765, 34.57703719416065], [-77.4005097662759, 34.57695035607962], [-77.4005750686848, 34.576882536790926], [-77.40091205925127, 34.576538096244256], [-77.4009547424787, 34.57651648910404], [-77.40109273340407, 34.576378773968386], [-77.40136308344357, 34.576139993126695], [-77.40141591168472, 34.57609773752948], [-77.4017570836924, 34.57599311334382], [-77.40206788136052, 34.57603637798393], [-77.40215108169916, 34.57606954923864], [-77.40243403856118, 34.57619879327247], [-77.40261862046788, 34.576212566188154], [-77.40293907913872, 34.5761316365098], [-77.40318974196502, 34.57605492724999], [-77.40333307640955, 34.57600177000224], [-77.4035098274301, 34.57573861298659], [-77.40361967872667, 34.575607033276704], [-77.4037270670774, 34.575515820651084], [-77.40404148571052, 34.57523730082869], [-77.40405872388867, 34.57516764221302], [-77.40419438489957, 34.5751362098918], [-77.4045150477153, 34.57507838745039], [-77.40480434229931, 34.575240021031604], [-77.40490904804452, 34.575319957602304], [-77.40508543290056, 34.57532111811763], [-77.40511957281109, 34.575308555822254], [-77.4053030381471, 34.57519010803702], [-77.40557670313804, 34.57501570386493], [-77.40563011673213, 34.57493589428175], [-77.40578420544622, 34.57489179754894], [-77.40609100739651, 34.57476380399687], [-77.40638608214286, 34.57479226866013], [-77.40687899013685, 34.574755889322184], [-77.40719221610912, 34.57486953681027], [-77.40735003070597, 34.5748427373813], [-77.40766696214507, 34.574581234470585], [-77.40791767081022, 34.5745233618823], [-77.40826248055475, 34.57441079610538], [-77.40845492761892, 34.57436506678098], [-77.40907146068051, 34.57427135396448], [-77.4100050033741, 34.57477304833169], [-77.41003092105831, 34.57477586192866], [-77.41004447545448, 34.574780672472365], [-77.4100697188525, 34.57479163389318], [-77.41160698148842, 34.57566528272899], [-77.41204572186007, 34.57573182770762], [-77.41318296012196, 34.57566546539004], [-77.41474655617503, 34.575801227913196], [-77.41475895773323, 34.57580362224727], [-77.41476407343576, 34.5758065496502], [-77.41480559869794, 34.57580606458391], [-77.41633496358365, 34.57596515824736], [-77.41658114766919, 34.57581493788452], [-77.41731779321475, 34.57608243225458], [-77.4179110692039, 34.576638835477354], [-77.41822503724626, 34.57667215617563], [-77.41919717125195, 34.576870059981964], [-77.41939866908211, 34.576936270670195], [-77.4194871317429, 34.576983286089124], [-77.42025529212647, 34.577587886130175], [-77.42030766452324, 34.57759371994196], [-77.42106331167918, 34.57779723760312], [-77.42129289765279, 34.57801827657657], [-77.42160709049315, 34.57822023500002], [-77.4226396619895, 34.5791865700885], [-77.42289568870679, 34.57945657103688], [-77.42312027345419, 34.57969994508417], [-77.42323065526863, 34.58032053912638], [-77.42336722822401, 34.58136260725827], [-77.42365185841524, 34.581929838780354], [-77.4242166302201, 34.58270865954065], [-77.42454438447966, 34.582890861108794], [-77.42501605655852, 34.58365989184915], [-77.42579315110143, 34.58417410093599], [-77.4266205881137, 34.585096216128335], [-77.4283935623613, 34.58573129996424], [-77.42866382236862, 34.5859962880399], [-77.4289461027118, 34.58632112058212], [-77.42992064463287, 34.58785775931871], [-77.43139926562115, 34.58869357360026], [-77.43178159559791, 34.588980740427395], [-77.43209939805844, 34.58896983616828], [-77.43315185659566, 34.5901385931829], [-77.43317355079057, 34.590677113687676], [-77.4336763603452, 34.590914863407164], [-77.4339531550698, 34.59142309222899], [-77.43400719391111, 34.59171330731545], [-77.43422093759457, 34.592794791372654], [-77.4352535088737, 34.593134349998756], [-77.4352998271845, 34.593174908788946], [-77.4353194790553, 34.59322195567713], [-77.43544076492054, 34.59340605809477], [-77.43581459497797, 34.59424469349021], [-77.43599258682062, 34.59482300855352], [-77.43577441656595, 34.59541478565335], [-77.43555581169846, 34.596260192535674], [-77.43536508579865, 34.59661210145671], [-77.43535326846225, 34.59671971687781], [-77.4352550998359, 34.597038741296565], [-77.43487703773343, 34.597973296307316], [-77.43440571763416, 34.59844916245311], [-77.43367998907712, 34.60024628812716], [-77.43367556807256, 34.600248317879945], [-77.43367278636956, 34.6002612498545], [-77.43284687321508, 34.60207122737036], [-77.4330903695327, 34.603097956467266], [-77.4332170487211, 34.6054144186635], [-77.43377612889697, 34.606931231519425], [-77.43441831130855, 34.60831276629183], [-77.43505883234376, 34.60901998678508], [-77.43571745218085, 34.61023557361499], [-77.4361504110086, 34.610772968137375], [-77.43631935920351, 34.611135876516485], [-77.4364964065683, 34.612151310757554], [-77.43618336473104, 34.61287642059424], [-77.43617885881594, 34.61298032065553], [-77.43553140025335, 34.613802433579224], [-77.4353945126557, 34.613839180728235], [-77.43364962115784, 34.614399085870566], [-77.43359066700242, 34.61439519923526], [-77.43334217675152, 34.61435967496688], [-77.43067273223343, 34.614380901097505], [-77.42928959695807, 34.61404706653561], [-77.42800411856352, 34.6139858804631], [-77.42527322466712, 34.613355772741414], [-77.4234182628675, 34.61279435511701], [-77.4226482162076, 34.612501083760286], [-77.42091691686618, 34.612120244715385], [-77.41949471184029, 34.61178330251042], [-77.41880666819246, 34.61163424769309], [-77.41634119185595, 34.61069963554804], [-77.41452942490575, 34.61006558095387], [-77.410035661424, 34.60876424826137], [-77.41003440163578, 34.608763863232106], [-77.41003386654728, 34.60876372676924], [-77.41003041990923, 34.60876364785966], [-77.40688118574124, 34.60875010397786], [-77.40503534644094, 34.608076168189136], [-77.40372794806947, 34.60827760788563], [-77.40253117582657, 34.60855671859199], [-77.40215135008953, 34.6085609083962], [-77.40191542257844, 34.60849055226481], [-77.40057474050649, 34.60851094969099], [-77.40049566239254, 34.60852643317681], [-77.39903100648209, 34.60868795760299], [-77.39899812770673, 34.60868460817334], [-77.39897485641981, 34.608685707866414], [-77.39888762365416, 34.60867322409023], [-77.39742152617887, 34.60834484945226], [-77.39683032961469, 34.60790852655499], [-77.39680232777441, 34.60727572300079], [-77.39672834698158, 34.60718398349541], [-77.39663327691161, 34.60716146811185], [-77.3965582263041, 34.60723009037139], [-77.39600068769258, 34.60739134468207], [-77.3959772171809, 34.607537192187564], [-77.39597074292266, 34.60824480677216], [-77.39604042713798, 34.60887326829357], [-77.3961458918017, 34.60906868752232], [-77.39591550784584, 34.60917800279524], [-77.39584486880428, 34.60921389730355], [-77.39554865418306, 34.60947387275956], [-77.39426812742062, 34.61077537653934], [-77.39409843915827, 34.610879478085856], [-77.39395137468892, 34.611083457320596], [-77.39326207343619, 34.611797569353925], [-77.39269690805199, 34.612113493431245], [-77.39269134731667, 34.612115817339514], [-77.3926904218333, 34.61211542561232], [-77.39192170065745, 34.61224542207507], [-77.39190299198718, 34.61224979335749], [-77.39187388815483, 34.61226351169968], [-77.39123743654736, 34.6124562120454], [-77.39111460710973, 34.61262815844222], [-77.39072822683576, 34.6128303345711], [-77.38954712886881, 34.61340673145399], [-77.38953781189318, 34.613409895855234], [-77.38953118234515, 34.61341192495185], [-77.3894909482564, 34.613424865641086], [-77.38874942139725, 34.613666119504465], [-77.38839924226446, 34.61405426304264], [-77.38796097042042, 34.614300853208725], [-77.38760235987526, 34.614546252931106], [-77.38731350730104, 34.614739724448796], [-77.38717252811794, 34.61480204604311], [-77.38664410284832, 34.61525345277683], [-77.38638405402594, 34.61543841023627], [-77.38611651386623, 34.61560955684985], [-77.38546125280486, 34.616408522699544], [-77.38480699436278, 34.617124866872096], [-77.38436215363328, 34.61756066736639], [-77.38375079783876, 34.618209687726946], [-77.38322992182333, 34.618560034234505], [-77.38193961577639, 34.61929927599874], [-77.38165291588517, 34.61944088656314], [-77.38152863823873, 34.61953341914715], [-77.38136329295085, 34.61969107034064], [-77.38045863416139, 34.620233623015736], [-77.38007580684737, 34.62061412849032], [-77.37940935928674, 34.62095317946758], [-77.37928728716693, 34.62098955693143], [-77.37914276017013, 34.62101577352287], [-77.378498792268, 34.621240547681154], [-77.37704897724076, 34.62187385978837], [-77.37692173432079, 34.62193484780267], [-77.3768686073758, 34.62197966092371], [-77.37679529870407, 34.6220474232078], [-77.37592509172342, 34.622797930935675], [-77.37534447626398, 34.62322388060686], [-77.37483991561271, 34.62348400781223], [-77.37408210901881, 34.624136457330984], [-77.37390208686026, 34.62430761321775], [-77.37376720570943, 34.624394202151365], [-77.37277432803586, 34.62495396711745], [-77.37219005994507, 34.62504828175422], [-77.37154803638991, 34.62519274264514], [-77.37133456858149, 34.6253091694841], [-77.3706128641708, 34.62577216239971], [-77.37029744319187, 34.62604012390097], [-77.37010593978295, 34.626407275697666], [-77.36998571080888, 34.62659863436187], [-77.36982394944204, 34.626996067133504], [-77.36971788617193, 34.62719812300603], [-77.36952107462153, 34.627666500982], [-77.36957319641735, 34.62818220925618], [-77.36971503018111, 34.628894329181094], [-77.36970828977225, 34.630833178395264], [-77.36989747117654, 34.63153197373853], [-77.37011963797315, 34.63266963244802], [-77.36996672666389, 34.634918461539826], [-77.36957060271166, 34.635555051762495], [-77.36903213805101, 34.63619443527645], [-77.36837800306918, 34.63783993600231], [-77.36825050456517, 34.6385569554229], [-77.36793721969647, 34.63937578385833], [-77.36768482622179, 34.639861252458225], [-77.3677373905799, 34.64101347833143], [-77.36822412330105, 34.641936668430915], [-77.36870612150274, 34.643482374419115], [-77.36874198313816, 34.64361839442043], [-77.36883448545734, 34.64522882860106], [-77.36918930442143, 34.64660131270375], [-77.36932208882496, 34.647064490682006], [-77.37054429351421, 34.648369824594], [-77.37127203905189, 34.64957969581346], [-77.37223638885685, 34.65048150887647], [-77.37313136400306, 34.651390164004525], [-77.37450864372559, 34.65293227543006], [-77.37526467588152, 34.6536730436062], [-77.3757729919173, 34.65440296444553], [-77.37753450852298, 34.65523733269646], [-77.3786024084695, 34.65625177976793], [-77.37908835090744, 34.65659259917242], [-77.3794936141562, 34.65726729898884], [-77.38006567159277, 34.65794871292616], [-77.38008629332062, 34.65802979633293], [-77.38015567669594, 34.65816528078309], [-77.38044962989392, 34.658823842670095], [-77.38055102249794, 34.659285275640904], [-77.38080466306477, 34.660104421486054], [-77.38078325198506, 34.66046600861976], [-77.38070748818134, 34.66074994037223], [-77.38087936083399, 34.66131526906581], [-77.38090571215584, 34.66142396166999], [-77.3807676839929, 34.66170049797254], [-77.38043314214578, 34.66234297860875], [-77.3800544595134, 34.662515867842124], [-77.37948485402387, 34.66277864742289], [-77.3790179080647, 34.66360834829284], [-77.37900708349746, 34.663631365406005], [-77.37900494484616, 34.663635041250814], [-77.37899529665569, 34.663645915109726], [-77.3784466626764, 34.66441083148341], [-77.37822396379505, 34.664717263213646], [-77.37814964487237, 34.66542377030133], [-77.37826211962206, 34.665787742995995], [-77.37826246058661, 34.666213932329], [-77.37875148933088, 34.665957206860554], [-77.3794632239106, 34.66619999638205], [-77.37963106201818, 34.66631049586893], [-77.37988788328659, 34.66643797647957], [-77.38009766365222, 34.6667396795362], [-77.3804703584236, 34.66685392824979], [-77.38081441906519, 34.66697618457717], [-77.38132866303735, 34.66721457204514], [-77.38154343182597, 34.66728045667717], [-77.38227459822099, 34.66742865718289], [-77.38342787951626, 34.66754946554464], [-77.38384745524844, 34.66758895453398], [-77.38407305845558, 34.667620558623454], [-77.38468165880437, 34.66772804597154], [-77.38499218531672, 34.66776832875915], [-77.38586897173565, 34.66781439249126], [-77.38613056892365, 34.66796959436551], [-77.38687644775018, 34.66805336081298], [-77.38730179756254, 34.668057554678626], [-77.3875576463788, 34.66809082050616], [-77.38832361886296, 34.66820166171357], [-77.38845091058732, 34.668221814805214], [-77.38874002426513, 34.66827984616169], [-77.38951259933603, 34.66840489087645], [-77.38967047894022, 34.66843548485973], [-77.38983974495696, 34.668500752356756], [-77.39077928360275, 34.66903137392191], [-77.39164418019536, 34.66953346385413], [-77.3923160767184, 34.669999853784574], [-77.39293930390161, 34.670422047582115], [-77.3932027881083, 34.670668687550574], [-77.393542984008, 34.671080105543524], [-77.39434196725963, 34.67197882535235], [-77.39532371248139, 34.67394023815524], [-77.39547865936053, 34.67507526557385], [-77.3955550470233, 34.67625789201572], [-77.39586900925168, 34.678002638875036], [-77.39594043334931, 34.678453214258845], [-77.39596605697724, 34.678638424557015], [-77.39659987967435, 34.67996346347541], [-77.3965975909688, 34.679977832859635], [-77.39663999563645, 34.68006971292506], [-77.39706871092423, 34.68126106618909], [-77.39725618971268, 34.68147502349714], [-77.39737528926746, 34.68165066175608], [-77.39781617472019, 34.681994274503204], [-77.3994855015063, 34.68321463886335], [-77.40053383920026, 34.683678639388646], [-77.40130866730655, 34.684715301234036], [-77.40152784180083, 34.68501315118831], [-77.4015657541182, 34.68503356518971], [-77.40179612866064, 34.685152433277175], [-77.4034958490993, 34.68601387548374], [-77.40369933808054, 34.68636603786976], [-77.4050007706392, 34.688956851243894], [-77.40573686224057, 34.691004636448746], [-77.40629563241325, 34.69198746248881], [-77.40659342203848, 34.69354090799365], [-77.40669362012025, 34.693728945931845], [-77.40704987445767, 34.69524359341958], [-77.4070401721283, 34.6959337324316], [-77.40720464635037, 34.69639005313131], [-77.40729328439005, 34.69692743188554], [-77.40756040027132, 34.69723400548123], [-77.40803346142056, 34.69795415523886], [-77.40838145716788, 34.698258938226694], [-77.4083918735206, 34.69864316773679], [-77.40883281264384, 34.69962008767501], [-77.40892719745332, 34.699816692547884], [-77.40907064237481, 34.699998887411056], [-77.40978538184211, 34.700757130614406], [-77.4101777587962, 34.70108047804911], [-77.41060857332494, 34.70165516783293], [-77.41059782281955, 34.70179796892022], [-77.41072861849322, 34.70192648078642], [-77.4113240530477, 34.702387756537846], [-77.41182103159142, 34.702580827495154], [-77.41219675443932, 34.702524190306235], [-77.41267001976988, 34.702376319861], [-77.41300065898741, 34.7023425525636], [-77.41315847669254, 34.70238913192885], [-77.41396929937089, 34.70243027363669], [-77.4144328174732, 34.702415305388314], [-77.41536280542621, 34.702200058372625], [-77.41562107278045, 34.70213887580431], [-77.41583765178828, 34.701807055960735], [-77.4158733347734, 34.701803300555476], [-77.41593274984108, 34.70166239404987], [-77.4160114677238, 34.701588304971466], [-77.41618087200905, 34.701558105866255], [-77.41628889309723, 34.70153921240212], [-77.41643017119551, 34.7014552122548], [-77.41658518300838, 34.701471144357164], [-77.41663435589687, 34.70145291205433], [-77.41694104233173, 34.70130496244432], [-77.41702140837867, 34.701222970845464], [-77.41709579685269, 34.701183979863785], [-77.41711065437961, 34.70113413568691], [-77.4171395517093, 34.70107784204625], [-77.41718401703237, 34.700954211224065], [-77.41724394124405, 34.7009012083236], [-77.41734380058392, 34.70076945703974], [-77.41743119772634, 34.70068715856314], [-77.41742886094264, 34.700606518150806], [-77.41759867538109, 34.700336061448084], [-77.41766355131402, 34.70024222793891], [-77.41769410229685, 34.70022002124908], [-77.41765884784202, 34.70012823726157], [-77.41745296597193, 34.69983119641049], [-77.41742933479442, 34.699814098422344], [-77.4173109059709, 34.69952689002541], [-77.41726705072747, 34.69946239426394], [-77.41724627449679, 34.699339527383245], [-77.41722061241391, 34.69921575816997], [-77.41720533098655, 34.699041781773225], [-77.41710029098307, 34.69889412204059], [-77.41688431359623, 34.698376040646146], [-77.41680387547342, 34.69831653768286], [-77.41681273595688, 34.69823443948868], [-77.41678952245528, 34.69806509091191], [-77.41673571853241, 34.69764840030364], [-77.41685788454394, 34.69740128824917], [-77.41660936715186, 34.69711205788854], [-77.41658436157962, 34.6970363567523], [-77.41663026676119, 34.696603527271044], [-77.41660507997162, 34.696267428394094], [-77.4167287177743, 34.695968653850905], [-77.41683822368964, 34.695624054638266], [-77.41698807118212, 34.69550028068031], [-77.41704772152488, 34.69549515528388], [-77.4170888718687, 34.69545593300107], [-77.4176602924857, 34.695176329991035], [-77.41766433810366, 34.69500737012703], [-77.41787786418088, 34.694944423690714], [-77.41829035041121, 34.69483762898246], [-77.4184771703654, 34.69484043333048], [-77.41856270122247, 34.69479264378621], [-77.4192492058138, 34.694618203227904], [-77.4192542482736, 34.694617673073175], [-77.41925563402322, 34.694617301926726], [-77.41925652182282, 34.69461649733045], [-77.41963156604095, 34.69448399031944], [-77.41967489043392, 34.694440601880714], [-77.41985415911145, 34.69426645207592], [-77.41996917154495, 34.69428801281496], [-77.41999450109655, 34.69427443970771], [-77.42031041394543, 34.69409798354379], [-77.42039076314424, 34.69389505767272], [-77.42042859709248, 34.69388183450949], [-77.42059113627944, 34.693809002112616], [-77.4207691035312, 34.69374784958532], [-77.42079070649724, 34.6937378925006], [-77.4210655819064, 34.69383677120378], [-77.42110489517427, 34.693759489820124], [-77.42123922540648, 34.69378792155017], [-77.42140246210744, 34.6938385078976], [-77.42152710235823, 34.693843404056906], [-77.42158667010914, 34.693754270756806], [-77.42184029138676, 34.69360751301093], [-77.42197009961095, 34.69348297208123], [-77.42208673410181, 34.69337009260275], [-77.42211723467275, 34.69331236080349], [-77.42223634005794, 34.69317175563365], [-77.42243555466028, 34.692933014000445], [-77.42245062308041, 34.69283610523888], [-77.4224809408354, 34.69266934656561], [-77.42264210438326, 34.69267462167336], [-77.42284321258883, 34.69251651506618], [-77.42275191963778, 34.6922640176747], [-77.42281374380555, 34.69220730491545], [-77.42284193411865, 34.69218658698081], [-77.42312309233651, 34.692055324476215], [-77.42316725798253, 34.692037357647294], [-77.42321717797866, 34.69199721841925], [-77.42352550462905, 34.69187514942818], [-77.42360116334272, 34.69166345425746], [-77.42364480750061, 34.69162685068479], [-77.42379751417113, 34.69157194646485], [-77.42398037576648, 34.69151654748265], [-77.42400183267101, 34.691500411685396], [-77.42426726747686, 34.691592052177846], [-77.42441862901002, 34.691568554095824], [-77.42461088795875, 34.69161029406234], [-77.42471849003094, 34.69158185831665], [-77.4250079499327, 34.69132264095988], [-77.42525753132452, 34.691124619521794], [-77.4253564321181, 34.69112902638041], [-77.42544314123066, 34.6909489681985], [-77.42563785530325, 34.69069856020848], [-77.42581465173183, 34.690382368087256], [-77.4258715128017, 34.690221204853316], [-77.42587371504382, 34.69006861293362], [-77.42600180733389, 34.68994045287262], [-77.42609581184286, 34.689800930256], [-77.42614775764585, 34.68975874536082], [-77.4262660346615, 34.68962454618641], [-77.42639472647153, 34.689404815861494], [-77.4264785067974, 34.68931534854229], [-77.42651108937774, 34.689277296698435], [-77.4265806564576, 34.689232760881794], [-77.42682925957483, 34.68904958800224], [-77.42691106749456, 34.68890756047454], [-77.42702433669677, 34.68880681642905], [-77.42713391789727, 34.68879979084821], [-77.42721581013595, 34.6886157879717], [-77.42733749300399, 34.688497626497316], [-77.42737296618809, 34.68844272905477], [-77.42750092526286, 34.68826713273282], [-77.42780702229389, 34.68810276767814], [-77.42771754800191, 34.68796002110247], [-77.42785787361596, 34.68773975022131], [-77.42794968610441, 34.68759359186686], [-77.42806197789017, 34.687435535937176], [-77.42809735649475, 34.68738340821663], [-77.42811920389592, 34.687373343537125], [-77.42812507262774, 34.6873435678134], [-77.42826376996442, 34.68714436831135], [-77.42832657642464, 34.68701028831322], [-77.42846834994553, 34.686656847810596], [-77.42865730052489, 34.68622868451312], [-77.42868252758511, 34.686172684568426], [-77.42855422613184, 34.68588673760114], [-77.42880685494828, 34.68596860918585], [-77.42894089156464, 34.68577103955863], [-77.42906575240765, 34.685747643961705], [-77.42914839692683, 34.685362430214596], [-77.4295788783162, 34.68551511247036], [-77.42969854165578, 34.6855140062646], [-77.43005522756452, 34.68564525479569], [-77.43000135117404, 34.686009061564825], [-77.42996164448573, 34.68606096768203], [-77.42981860813038, 34.68645814854979], [-77.42978979846053, 34.68655993476563], [-77.42973570768784, 34.68667137776345], [-77.43002373885912, 34.687200814678185], [-77.43009052632317, 34.68741606181987], [-77.43017920899652, 34.68786973342288], [-77.43037004686201, 34.688440055362385], [-77.43039115843254, 34.6890761314603], [-77.43045911623317, 34.689589332477794], [-77.43045167867557, 34.69048445556399], [-77.43032223334065, 34.69065959086578], [-77.43041595521294, 34.69085132764704], [-77.43006680906092, 34.69168839991311], [-77.42990245609965, 34.692577976412075], [-77.42986499834721, 34.69273595726079], [-77.42983689779601, 34.692878530417524], [-77.42980717017488, 34.69358500285857], [-77.42976885662317, 34.69382046797115], [-77.43005709355407, 34.694326441554864], [-77.43016067198137, 34.69452895383123], [-77.42985468301598, 34.69496860868718], [-77.43003673051516, 34.695473447914466], [-77.43016877200448, 34.69563750570218], [-77.43004071383406, 34.69579533837668], [-77.42980024155506, 34.69606770034661], [-77.4295028201392, 34.696411752297436], [-77.42912549162534, 34.69674648657726], [-77.42898410923628, 34.696900444554934], [-77.42891584272874, 34.696947941660035], [-77.42883472607167, 34.69694553011676], [-77.42860087189585, 34.69696540915861], [-77.4271949448833, 34.69712625406066], [-77.42707812909134, 34.69735207276515], [-77.42655295431794, 34.697572537632546], [-77.42609099758995, 34.697568001309854], [-77.42571588600232, 34.69769991890992], [-77.4254057350558, 34.69772127489627], [-77.42515948924674, 34.697799254404984], [-77.42495265857923, 34.697948016329775], [-77.42492296881736, 34.69805372980376], [-77.42506007846461, 34.69832356521157], [-77.42509962164442, 34.698426395967765], [-77.42518292037121, 34.69849111023232], [-77.42547359589625, 34.699027253349584], [-77.42545308147993, 34.699171665421474], [-77.42549926549586, 34.69961249922346], [-77.4255525176237, 34.70002292868088], [-77.42561582909906, 34.700195141979584], [-77.42556390141016, 34.700443057436445], [-77.42556519472858, 34.700910392734016], [-77.42568112100257, 34.70119858871131], [-77.42569677428462, 34.70134159830042], [-77.42576197280367, 34.7017210417989], [-77.42592944262563, 34.70253639377175], [-77.4259274540809, 34.70254041255876], [-77.42593145561483, 34.70254811118785], [-77.42612475258147, 34.703355184945906], [-77.42671265250866, 34.703816647681954], [-77.4268223726496, 34.70389892875393], [-77.4268913393792, 34.7039280884995], [-77.42702834676255, 34.70404351321324], [-77.42760915472851, 34.70452134032078], [-77.42782945140398, 34.70484847803273], [-77.42804008961188, 34.70523429469446], [-77.42812125465144, 34.705543796247426], [-77.42803351085375, 34.70597564988595], [-77.42802810140381, 34.706070293561346], [-77.42795027527421, 34.70616453432129], [-77.4276085819786, 34.70648267530631], [-77.4274911677426, 34.706584910366914], [-77.42732969566757, 34.70686984936222], [-77.42736205872461, 34.706955546221174], [-77.42751053125765, 34.70724077869829], [-77.42749395128499, 34.707337322906966], [-77.42736021125958, 34.707513968495974], [-77.42718749591339, 34.70758428857311], [-77.42703138047389, 34.70760589913428], [-77.42657372571392, 34.707798041105924], [-77.42648291832516, 34.7079283982736], [-77.42619551246807, 34.70822486567235], [-77.4259216267764, 34.7085067190759], [-77.42584902468028, 34.70882676355431], [-77.42592358596639, 34.70921868188355], [-77.42592364588167, 34.70924200921359], [-77.42592679518424, 34.709249051857], [-77.42603391570722, 34.70964238066346], [-77.42605331279182, 34.71021772589855], [-77.42600742918883, 34.71039538823818], [-77.42588005401774, 34.71059932995081], [-77.42571536147867, 34.711161119177135], [-77.42547423035563, 34.71132709811621], [-77.42549524729178, 34.7122971217382], [-77.42537828705747, 34.71259417748414], [-77.42548351293179, 34.71356662661163], [-77.42552091599678, 34.71533060180765], [-77.42542392025628, 34.71578208049256], [-77.42552730086543, 34.71610302752018], [-77.42447065949214, 34.71959722912388], [-77.424390009769, 34.719893182254374], [-77.4218407076653, 34.721211886445715], [-77.4218102802344, 34.72123252321537], [-77.42180461035822, 34.721232401655804], [-77.42179846000414, 34.72122950918867], [-77.42178231490438, 34.72121777015023], [-77.41961810958509, 34.719927464764694], [-77.4187120530046, 34.71894593199223], [-77.41864025270363, 34.71887658657946], [-77.41823647615168, 34.71825156611858], [-77.41801591756327, 34.71802243241096], [-77.41769898946694, 34.717699412629884], [-77.41756355296808, 34.71763951201018], [-77.41742377344593, 34.717457385299106], [-77.4166673267517, 34.71683448314372], [-77.4161541605535, 34.71644190561822], [-77.4156362746878, 34.715967503218906], [-77.4148995479978, 34.71592012709886], [-77.41441965670276, 34.715741333893966], [-77.4131311659443, 34.71595616734451], [-77.41309089858368, 34.71595551535359], [-77.41307172106818, 34.71596855688195], [-77.41165890794602, 34.71655945369813], [-77.41164036219625, 34.71657636565828], [-77.41165550169777, 34.717117369764566], [-77.4114127197983, 34.71726964115959], [-77.41118613791595, 34.717329935231795], [-77.41102758202568, 34.71745685754155], [-77.41057589407373, 34.717828438156225], [-77.40990398578205, 34.71805179698514], [-77.40977823008588, 34.718138101609235], [-77.40972166679813, 34.7182318377901], [-77.40981623708174, 34.71835470860994], [-77.41015998539423, 34.71894174600148], [-77.41008657584521, 34.719364171891506], [-77.40978416856746, 34.71952647001204], [-77.40976419618511, 34.71999948733299], [-77.40979145657056, 34.720379176037625], [-77.40969348071964, 34.7208744397602], [-77.40962275007362, 34.7209511625736], [-77.40925049922814, 34.721308195560376], [-77.40910688165923, 34.72141164716235], [-77.40880107132259, 34.72185895330615], [-77.40851579343791, 34.72216945317997], [-77.40847361915081, 34.72232302238528], [-77.40811804132707, 34.722787505282525], [-77.40787597859881, 34.72283912720573], [-77.40760990193752, 34.72297083757217], [-77.40739234913931, 34.72309733649526], [-77.40713639919366, 34.723178930418705], [-77.40693209808708, 34.72329288102271], [-77.4068775036833, 34.723751899307665], [-77.40684270158947, 34.723820731240664], [-77.40685626396913, 34.723890086248424], [-77.40654386259591, 34.724702732085554], [-77.4064867078815, 34.7248144541975], [-77.40625052251929, 34.7250353277635], [-77.40607438271448, 34.72522935564208], [-77.40604021689121, 34.72537562824895], [-77.40587584913271, 34.72571903377288], [-77.4055969771638, 34.72614729768874], [-77.40544820064804, 34.72626252073984], [-77.4050191496553, 34.72653762998015], [-77.4049728793487, 34.72662328184057], [-77.40481647860022, 34.72676001529498], [-77.40419046102598, 34.726840424640535], [-77.4041579975729, 34.72681977842377], [-77.40409815583206, 34.72682538029211], [-77.40354445863062, 34.72672444338234], [-77.40328510815502, 34.7268565671331], [-77.40315958407334, 34.72700543870969], [-77.40273357637338, 34.72731008401222], [-77.40262369291023, 34.72727155695527], [-77.40205938478458, 34.72742401976601], [-77.40185124851985, 34.72750501144061], [-77.40169710753833, 34.727612128011046], [-77.40141988899029, 34.727941931945104], [-77.40083150871065, 34.72842760572677], [-77.40068425050809, 34.728589824868536], [-77.40028657473154, 34.729116256730286], [-77.40013819344614, 34.729303349312254], [-77.3994785389168, 34.72961138173241], [-77.39880450930856, 34.72980517057801], [-77.39846259023913, 34.729835472833514], [-77.39779625841466, 34.729853702533504], [-77.39751425754251, 34.72983226727764], [-77.3971195138711, 34.72973455172864], [-77.39641630008899, 34.729195995556395], [-77.39565191048113, 34.7293404136843], [-77.39508357944646, 34.729369594811594], [-77.39403102198736, 34.72940340739312], [-77.3938401887463, 34.72937102333579], [-77.39380550914989, 34.72935464941508], [-77.3937661349764, 34.729347002056954], [-77.39330408972748, 34.72914907457931], [-77.39268759873991, 34.7287872840976], [-77.39232605823906, 34.728806881155634], [-77.39158217253444, 34.72867171449722], [-77.39144032410687, 34.7286661267832], [-77.39100117875289, 34.728714130949605], [-77.39019029599365, 34.72855446126546], [-77.38976817743024, 34.728698522146594], [-77.38919873613551, 34.728830948546396], [-77.38896079734114, 34.72887484910014], [-77.38881601687618, 34.72887127656985], [-77.38871669667044, 34.72877359002545], [-77.38774609697539, 34.72838496179436], [-77.38769140739443, 34.72832709728074], [-77.38765836392822, 34.72832203236319], [-77.38659947378989, 34.728006390781076], [-77.38646535323892, 34.728132754650936], [-77.38598496855957, 34.728126778857096], [-77.38572084993945, 34.72806616431839], [-77.38558183741729, 34.72812443862996], [-77.38519392388186, 34.72809487040841], [-77.38466272128582, 34.72783230998482], [-77.38459987853317, 34.72781136777268], [-77.3840884038497, 34.727484948683696], [-77.38353005103934, 34.72747650025384], [-77.38344924507619, 34.7274778883814], [-77.38337588922474, 34.72742881425816], [-77.3829339874589, 34.72704365211534], [-77.38268005849609, 34.72682617557462], [-77.38197092148455, 34.726423027298594], [-77.38186464051563, 34.7263091084324], [-77.38165911858934, 34.726359004809154], [-77.38103270217319, 34.726385253979885], [-77.3805353078424, 34.72647087791475], [-77.38023494329, 34.72657726169984], [-77.37985333311359, 34.72667872609327], [-77.37984275440732, 34.72668421361097], [-77.37983229890042, 34.726683928453454], [-77.37930401745561, 34.726551411273775], [-77.37923349101682, 34.726537766249734], [-77.37802950120388, 34.7271587219018], [-77.37787682253169, 34.72721081190018], [-77.37767397961369, 34.727593473088056], [-77.3776393521726, 34.72761222912911], [-77.37712961561444, 34.727485533574004], [-77.37651565661855, 34.727609469476306], [-77.37636728544163, 34.727576470188396], [-77.37619547426232, 34.72745441221716], [-77.37615705636864, 34.727621683672496], [-77.37497984915926, 34.72793831335366], [-77.37453457679501, 34.72773146889426], [-77.37432694471379, 34.72809944347233], [-77.37361800323401, 34.72821190832921], [-77.3731635387407, 34.72848280572557], [-77.37262668757256, 34.72862264488356], [-77.37218425909091, 34.72873321546045], [-77.37158433307931, 34.7288935497397], [-77.3712342298775, 34.72891712405784], [-77.37089578739291, 34.7287538656109], [-77.36972603716548, 34.72924687381304], [-77.36956355171527, 34.72928515346379], [-77.36954311179221, 34.729288044788056], [-77.36952203769128, 34.729291290053304], [-77.36933326663359, 34.72930084054339], [-77.36836164844333, 34.72923225458066], [-77.36806669964069, 34.72883417237736], [-77.3662799475577, 34.72892920199061], [-77.36602781363469, 34.72902042949518], [-77.36504335679405, 34.72958359955986], [-77.36433645277774, 34.72976027119917], [-77.3634818454214, 34.729539319473915], [-77.3627617823359, 34.729762178806915], [-77.36222432234248, 34.72974544568392], [-77.36180694608669, 34.730072224411245], [-77.361087130123, 34.730433556996964], [-77.36078857352251, 34.73056538568717], [-77.35976079245768, 34.73081234580687], [-77.35938703063458, 34.731641787799], [-77.3592528287834, 34.73172958839235], [-77.35852449389417, 34.73226993044309], [-77.35840808539182, 34.73232337464212], [-77.35788381407608, 34.73231945741767], [-77.3568957497209, 34.73295861182393], [-77.35661273371065, 34.73312913888962], [-77.35624752152358, 34.73382960007406], [-77.35559064087194, 34.73411254922641], [-77.3560044072564, 34.734172546655486], [-77.3561688026215, 34.734100661548084], [-77.35619981590862, 34.73451630716721], [-77.35599063192977, 34.73471416659639], [-77.35551960184124, 34.73471360701248], [-77.35506288823959, 34.73489683131805], [-77.35487512455695, 34.73443088816477], [-77.3543207978018, 34.73492801198153], [-77.3544519976725, 34.73524362045251], [-77.3544180116017, 34.73539290652499], [-77.35403074968296, 34.73594752201542], [-77.35379666729237, 34.73630833854825], [-77.35370751726644, 34.736388990931225], [-77.35327326194275, 34.73638017947548], [-77.35317118192619, 34.73635201224021], [-77.3531145135956, 34.73636867299103], [-77.35307992792012, 34.736381633630195], [-77.35304296828544, 34.73641178834704], [-77.35273715275271, 34.736685875076766], [-77.35271943578586, 34.736700502457225], [-77.35262981151999, 34.736955876142545], [-77.35246062847546, 34.73710946013176], [-77.35237079725302, 34.737361879620195], [-77.35232830384578, 34.73748463927727], [-77.35234257776028, 34.73764312259252], [-77.35235648293764, 34.73776709177383], [-77.35231370190738, 34.737974024666435], [-77.35230092882837, 34.738204025200744], [-77.35229846026193, 34.738219807703324], [-77.35229692046796, 34.73824092242561], [-77.35217125945506, 34.7384809556252], [-77.35227415039768, 34.73861882392266], [-77.35230510113206, 34.73888641910584], [-77.35230522334227, 34.73894995190054], [-77.35227320078593, 34.73901375574958], [-77.35228747456961, 34.73921594822472], [-77.35229120100948, 34.73939411143649], [-77.35229854716205, 34.739438249647215], [-77.35230954741417, 34.739528606722885], [-77.35218568056942, 34.739566384941675], [-77.35211917314268, 34.73952643164467], [-77.35192391279335, 34.739489664756775], [-77.35168574510517, 34.73946561399897], [-77.35163347366672, 34.73940553888297], [-77.35143814808004, 34.73926185824123], [-77.35130512670553, 34.7386387532969], [-77.35130373766278, 34.73860001404959], [-77.35130135734121, 34.73857867869735], [-77.35128721587044, 34.73853572295594], [-77.3511788164254, 34.73788453754806], [-77.35100534375806, 34.737666200583774], [-77.35097101736967, 34.73725597902776], [-77.35101390206569, 34.73710422340643], [-77.35132525358651, 34.73664753540187], [-77.3516678744171, 34.73640711097585], [-77.35195575289998, 34.73623422572429], [-77.35247753199772, 34.735847937261326], [-77.35272286351761, 34.735655135428544], [-77.35287695380508, 34.7355635622794], [-77.35293695805203, 34.73545157445165], [-77.35313084875173, 34.735281464964544], [-77.35321408261858, 34.73522399925021], [-77.3533148691281, 34.735156013234324], [-77.35342272627224, 34.734975904089374], [-77.35349961146896, 34.73488696483105], [-77.35348767171092, 34.734828144190175], [-77.35358287811876, 34.73475613787495], [-77.35375757905715, 34.7347183217387], [-77.35406596673357, 34.734702245997184], [-77.35419397971663, 34.73471410185655], [-77.35487499874075, 34.73421078979314], [-77.35490628967872, 34.73417025442488], [-77.35519928175671, 34.73331474519975], [-77.35528301344429, 34.733180013556726], [-77.35524716370834, 34.73314987574309], [-77.35515371947095, 34.732461695238015], [-77.35541852672759, 34.73218664340993], [-77.3550200719883, 34.73177608976802], [-77.35503000870563, 34.73175259483734], [-77.35503738865536, 34.73173347019701], [-77.35516623574647, 34.731246510714534], [-77.35515603303953, 34.7312003526295], [-77.35527514927212, 34.73079144003858], [-77.35510421563202, 34.730767641236405], [-77.35508683391518, 34.730608803744666], [-77.35510314912685, 34.73052954991779], [-77.3550918760325, 34.73050527814806], [-77.35521650773768, 34.73026484223865], [-77.35543893544468, 34.72987701602125], [-77.35556609855628, 34.729648966508016], [-77.35616211987724, 34.72932065640595], [-77.35638922403427, 34.729217276749246], [-77.35646922925802, 34.72917266549869], [-77.35651306848109, 34.729112076865135], [-77.35652043986755, 34.72904499094063], [-77.35669580121458, 34.728735178728094], [-77.35677900422792, 34.72858818175527], [-77.35688248814245, 34.72854976187304], [-77.35706226685062, 34.728421635677726], [-77.35710857350232, 34.728395407601084], [-77.35721805427998, 34.728425289712995], [-77.35731773432386, 34.728431597690246], [-77.35760236162909, 34.72847513684671], [-77.35779036901896, 34.72851664212755], [-77.35791982997648, 34.728431547919286], [-77.35831441045008, 34.72825455322239], [-77.3585732572046, 34.727854443043476], [-77.35858572217008, 34.72783986871479], [-77.35885908666751, 34.72746069024869], [-77.35910806710297, 34.72729362111175], [-77.35905857601836, 34.72709224448939], [-77.35907377206787, 34.72701268373326], [-77.35914760678645, 34.72702374507911], [-77.35943863163894, 34.72696481569479], [-77.35960767083469, 34.72684748560765], [-77.35965357936149, 34.72683156351982], [-77.35975896439456, 34.72689276695295], [-77.36000759015678, 34.72675629851753], [-77.36009644884825, 34.72676164092402], [-77.36034535222308, 34.72689064666399], [-77.36062918375939, 34.72698927087417], [-77.36128726905838, 34.72705909222342], [-77.36181462399807, 34.727031324838755], [-77.36251634196908, 34.72679714459373], [-77.36315270060487, 34.72654758782091], [-77.3633683880589, 34.72635001925513], [-77.36380012891847, 34.726380136471526], [-77.3639479304872, 34.72648407707192], [-77.36437466210883, 34.72646378589712], [-77.364573355837, 34.726397069399624], [-77.36485180806935, 34.726387795430114], [-77.36498119970977, 34.72643718201086], [-77.36517718674524, 34.72632667315757], [-77.36545333981559, 34.726282500091266], [-77.3656355086216, 34.72624599769329], [-77.3658203747582, 34.726225987731915], [-77.36610093851154, 34.72621801117761], [-77.3662386761607, 34.72623098940085], [-77.366399961326, 34.72617423884034], [-77.36683176115568, 34.72625071146784], [-77.36734145074723, 34.726238246259115], [-77.3675612762541, 34.726235309557744], [-77.36769019935946, 34.726114850383574], [-77.3679890607246, 34.72597610000646], [-77.36811709388739, 34.72594849559164], [-77.36856107974133, 34.72584465359726], [-77.36875101402717, 34.7258275039883], [-77.36892555213906, 34.72580772711676], [-77.3693047896109, 34.72598264991862], [-77.36984557761467, 34.725706175603484], [-77.36998747324171, 34.725693621768684], [-77.37007143700866, 34.7257144162703], [-77.37052643245778, 34.72589982049498], [-77.37117679295373, 34.72560906925315], [-77.37120535374062, 34.7256237323024], [-77.37120907331806, 34.725627440558405], [-77.3718307211321, 34.72553217073822], [-77.37184983441689, 34.725536794144126], [-77.37237036200301, 34.72568762661321], [-77.3724226565606, 34.72570198984235], [-77.37259882376486, 34.72567104516137], [-77.37274234006628, 34.72570517288723], [-77.37281766803923, 34.725670877465426], [-77.37289650775197, 34.72564146329837], [-77.3730968008962, 34.72558850465194], [-77.37326968913918, 34.725661841766204], [-77.37351833409156, 34.72557955255865], [-77.37375255089427, 34.72553840122119], [-77.37421819451859, 34.725716518264385], [-77.37440785228932, 34.7254898350775], [-77.37487714033382, 34.72529740879099], [-77.37496335820185, 34.724967015378255], [-77.37518351591437, 34.72459424464094], [-77.37523564115294, 34.72450313218907], [-77.37523747916495, 34.72438972643039], [-77.3753594678227, 34.724266879811665], [-77.37537211233156, 34.724235698561195], [-77.37542257808526, 34.724202483954095], [-77.37553563430987, 34.72412893893991], [-77.37561453316992, 34.7240765699815], [-77.37598076257692, 34.72410863098179], [-77.37606481425172, 34.72395459942277], [-77.37613646984259, 34.723951924911354], [-77.3763084867325, 34.72389622808862], [-77.37647117380259, 34.723817252201904], [-77.37650067594396, 34.72380161348665], [-77.37673642972543, 34.72384780173003], [-77.3768306403941, 34.72376932170545], [-77.37730226586292, 34.72354898640235], [-77.37727513572555, 34.72327652181046], [-77.37729047617768, 34.72325709431008], [-77.37763764645632, 34.72310719264549], [-77.37763709656058, 34.72307561579123], [-77.37768113659148, 34.723047852694684], [-77.37805478297344, 34.72301041112557], [-77.37830741812644, 34.7230992225639], [-77.37874490272446, 34.72293559382379], [-77.37893666661789, 34.72295610205209], [-77.3790122230299, 34.72287990607473], [-77.379283988457, 34.72277577537199], [-77.3793827665756, 34.72259968223876], [-77.3794162043082, 34.72259243542818], [-77.37967521223042, 34.722667277175255], [-77.37971548018402, 34.722665907853475], [-77.3801305021233, 34.722533069713734], [-77.3803819419586, 34.72257874030992], [-77.38057612322764, 34.722644089824016], [-77.38155379757464, 34.72295968055245], [-77.38190121162452, 34.72292201986957], [-77.38259393257744, 34.7229510562036], [-77.38282732879433, 34.72299008928358], [-77.38315175053017, 34.72305928088194], [-77.384660906998, 34.72333838656489], [-77.38519306777053, 34.72367609794134], [-77.38577324603588, 34.72366102365259], [-77.38583900409314, 34.72365968196391], [-77.38588197589048, 34.72370671417242], [-77.38634018240693, 34.72414242522161], [-77.38666265751348, 34.72427397083608], [-77.38722558402274, 34.72453977951304], [-77.38747536546018, 34.724649929529846], [-77.38780122987069, 34.72469207429011], [-77.38872302375768, 34.72476958490837], [-77.3891362656768, 34.724671302082434], [-77.38939986897702, 34.72442801702327], [-77.38946380231293, 34.72442608820952], [-77.38996393204908, 34.72452822411804], [-77.39007467402635, 34.72453059124337], [-77.3903612128316, 34.72442961226007], [-77.39056910982373, 34.72443112549319], [-77.39073191930953, 34.72447515757288], [-77.39087133407557, 34.72451556011178], [-77.3912499948507, 34.72451626222262], [-77.39135670580724, 34.724531667666874], [-77.39141273110211, 34.724525824656496], [-77.39185115489845, 34.72462133388558], [-77.3919712205971, 34.72462360460014], [-77.39222619222349, 34.724633088498784], [-77.39260951559186, 34.72463351989411], [-77.39276856346964, 34.724625020184654], [-77.39292396911259, 34.72454284200037], [-77.39318616069434, 34.7242329676972], [-77.39385118512747, 34.72374896483522], [-77.3939443353813, 34.72355453759015], [-77.39410402135763, 34.72327827936347], [-77.39432468816088, 34.72314046574222], [-77.39458371616035, 34.72310352915224], [-77.39466715386536, 34.72291616395051], [-77.39513962024586, 34.72252609264959], [-77.39514387909472, 34.72252297394348], [-77.39514510046837, 34.722522089428786], [-77.39579029343739, 34.72219083793807], [-77.39584559888286, 34.72217393462708], [-77.39588643532959, 34.72217646615706], [-77.3961164567902, 34.72211890403187], [-77.39669560722774, 34.722067412590306], [-77.39732694574913, 34.72163059230574], [-77.39734622498189, 34.72161693198327], [-77.39735397054783, 34.721603038465716], [-77.39793204499117, 34.721096249353124], [-77.3982746772389, 34.72082348096024], [-77.39845493449522, 34.72045478359854], [-77.39863054617211, 34.72017822125713], [-77.39879858521604, 34.71988849747396], [-77.3988879790215, 34.71966640064635], [-77.39895644421269, 34.71959603513873], [-77.39918497713947, 34.71946454263983], [-77.39917761010888, 34.71939177220591], [-77.39928730753599, 34.719290973706904], [-77.39947845506808, 34.71913548415479], [-77.39957451233111, 34.71904168651716], [-77.39951721114183, 34.71891592928452], [-77.39945483119463, 34.71871294616541], [-77.3994433899276, 34.718500380264146], [-77.39948408959921, 34.71845091261039], [-77.399451820559, 34.71834365355745], [-77.39943587402492, 34.71815447385101], [-77.39938882678666, 34.718076802529325], [-77.39934674678233, 34.71797983010273], [-77.39930424519058, 34.717828851045255], [-77.39933749203522, 34.71765187886208], [-77.39922270874331, 34.717301768398556], [-77.39919649403933, 34.71726433653101], [-77.39915746535503, 34.71721835646907], [-77.39905032887623, 34.71693877708543], [-77.39903202142092, 34.71688658115489], [-77.39896537732056, 34.716799845197755], [-77.39879611835285, 34.71656162184303], [-77.39879262401213, 34.716540062398145], [-77.39879053699848, 34.71653083493698], [-77.39877973178288, 34.716496234497356], [-77.3987568889378, 34.71633179850401], [-77.39871520588508, 34.716287792408664], [-77.3986966784399, 34.71621842447434], [-77.39869048530677, 34.71613632049917], [-77.39862629328081, 34.71604156849188], [-77.39856215283142, 34.71589178463992], [-77.39857536827539, 34.715737989494656], [-77.39843036553337, 34.71561158749664], [-77.39840423962465, 34.71555696123156], [-77.39832710844686, 34.71539516679496], [-77.39831371747081, 34.71535993979336], [-77.39828574720255, 34.715235930098295], [-77.39824085477757, 34.715159472332246], [-77.39818572317134, 34.715007787809164], [-77.39814973353259, 34.7149087678109], [-77.3981152862268, 34.71481399205545], [-77.39806135319222, 34.71467282904186], [-77.39804002613667, 34.7146222070162], [-77.39802123324502, 34.71458423392383], [-77.39795556191824, 34.71443425938754], [-77.39791855073318, 34.71433949339753], [-77.39789146841431, 34.71425925699665], [-77.39789757899503, 34.71423527160597], [-77.39784271771401, 34.713962626295164], [-77.3977687981101, 34.713842638914954], [-77.39767915510774, 34.71377959508503], [-77.39748160416241, 34.713556697902234], [-77.39749365675917, 34.71351102484723], [-77.39751243298673, 34.71328791196861], [-77.3974322346453, 34.7127957910293], [-77.39749390834046, 34.71272228388721], [-77.39745695008845, 34.71263368583706], [-77.39739640957576, 34.71254324583347], [-77.39718470272629, 34.71230086679722], [-77.39697849543222, 34.71198278565857], [-77.39696461199769, 34.71194630332036], [-77.39693822154875, 34.71191225993036], [-77.39689628070762, 34.71191918618485], [-77.39666906076397, 34.71173501608847], [-77.39664599509179, 34.711632816098344], [-77.3964113420341, 34.71151829798927], [-77.39639647636983, 34.71149954794281], [-77.39627192250208, 34.71134244840418], [-77.39618208387613, 34.71120338924623], [-77.39613463446246, 34.71112834621201], [-77.39616508240874, 34.71094067156792], [-77.39596627075431, 34.710842098531984], [-77.39592200678865, 34.710774364978036], [-77.39585155549234, 34.71062506291352], [-77.39576003340025, 34.710447776252636], [-77.3957458754097, 34.7104331542508], [-77.39577805896725, 34.710209386005424], [-77.39561514577228, 34.709841794894274], [-77.3955972691211, 34.70983844004291], [-77.39559593328408, 34.70982153161904], [-77.39559665098294, 34.70979342113026], [-77.39564462343066, 34.70974009142889], [-77.39609176236618, 34.709106605151014], [-77.39691184945121, 34.70916372455057], [-77.39696304472686, 34.70837639655401], [-77.39607650164152, 34.708250014552554], [-77.39561677395393, 34.70804504039535], [-77.39546543382036, 34.70808209653245], [-77.39545705219413, 34.70809547437116], [-77.3952227256376, 34.70820932074859], [-77.39504968275114, 34.70851206399693], [-77.39481924400168, 34.708521777250795], [-77.39472773701722, 34.70848009129599], [-77.3946839768312, 34.70843392506814], [-77.39372294564845, 34.70822517275318], [-77.39354340099399, 34.70814286458716], [-77.39338329992961, 34.708083536298425], [-77.39254740017661, 34.70779890761288], [-77.3923379140509, 34.707878619972334], [-77.39196505623599, 34.70778214792356], [-77.39171771357502, 34.70780672518292], [-77.3916366272876, 34.70780576301273], [-77.39107652173688, 34.70780723650964], [-77.39059506761402, 34.70746063159521], [-77.39049552675891, 34.707435803012245], [-77.38988124903466, 34.70750777552314], [-77.38952864473633, 34.70735083619844], [-77.38871594385103, 34.70710496575652], [-77.38842479485419, 34.70704178079775], [-77.38797672826158, 34.707154887686286], [-77.387632652945, 34.70724268431413], [-77.38738888909955, 34.70726005804815], [-77.38694671063219, 34.707196197061634], [-77.38616407472374, 34.7070625088064], [-77.38553634413203, 34.70680673696666], [-77.38501159734831, 34.706615500628], [-77.38452992130846, 34.70665702719371], [-77.38418632551507, 34.7065615659656], [-77.3837969843404, 34.706382796009954], [-77.38336364449435, 34.70601186819887], [-77.38328047840872, 34.705953332281595], [-77.38318804456746, 34.7059583970469], [-77.38263100516674, 34.7059823955456], [-77.3822869522707, 34.705980995887245], [-77.38201140374204, 34.70590845270233], [-77.38177227104777, 34.70578254389826], [-77.3815694499954, 34.70547108662083], [-77.38151764694491, 34.70540057737415], [-77.38121717145582, 34.70512131750466], [-77.38055540598158, 34.70464462670358], [-77.38046587735965, 34.70460643923443], [-77.38039508600208, 34.70457136398583], [-77.38031231526034, 34.70447175699637], [-77.37948960033927, 34.70355206632079], [-77.37908171051565, 34.703333590318216], [-77.37865547203589, 34.70303256286064], [-77.37839943025861, 34.70289045511759], [-77.37831921494039, 34.70280636029378], [-77.3782302260852, 34.7027334271184], [-77.37790700888404, 34.70252430103136], [-77.37773999303764, 34.702463726669485], [-77.37747694018856, 34.702349608598965], [-77.37737188111015, 34.70230539662073], [-77.3771284697019, 34.702166545811316], [-77.37711481496746, 34.70215975502049], [-77.37711406157905, 34.70215705624092], [-77.37710976086683, 34.70214997115308], [-77.37701363810027, 34.70192591471933], [-77.37690382364998, 34.701855268669185], [-77.3767348960949, 34.70166040536146], [-77.3766746274251, 34.701613550502145], [-77.37660770517911, 34.701561186900726], [-77.37653595196495, 34.701504197407935], [-77.37648165816807, 34.70146108749504], [-77.37643117347855, 34.70142098987439], [-77.3763348919483, 34.701179800020086], [-77.37621191413488, 34.70114502230648], [-77.3761868255106, 34.70106480295675], [-77.37608565187574, 34.70097740556043], [-77.37599045877444, 34.70087662991398], [-77.37596955104043, 34.70085097778101], [-77.37602003925757, 34.70063364119436], [-77.37600789840738, 34.70060200731349], [-77.37571394525992, 34.7002752494852], [-77.3756849332323, 34.70015901479807], [-77.37565653682513, 34.70012493835103], [-77.37562348279452, 34.70007807795437], [-77.37551014733313, 34.699843363927855], [-77.37552526186266, 34.69969357161941], [-77.37551420455442, 34.699445963518514], [-77.37534930827564, 34.69923036708119], [-77.37534642711796, 34.69896955623396], [-77.37533097914044, 34.69879847572442], [-77.37528223627196, 34.69875219266679], [-77.37524294842588, 34.698581743888475], [-77.37522603397605, 34.69827252303994], [-77.37518131723003, 34.6981251474554], [-77.37500599975348, 34.69807953019066], [-77.37479309067427, 34.69763548899746], [-77.37453224397933, 34.697393115609145], [-77.37435027706091, 34.69718785520327], [-77.37419808588137, 34.69673757567137], [-77.3741900956662, 34.696522637925064], [-77.37414797486385, 34.6964711551543], [-77.37404385374023, 34.69584668147883], [-77.37383245223617, 34.6955397412739], [-77.37368990373373, 34.694653234246566], [-77.37368080161453, 34.6945858007968], [-77.37377530448137, 34.69447636068212], [-77.3740287149103, 34.69319442018265], [-77.37416281690639, 34.692600937819435], [-77.37415632138425, 34.69257084672673], [-77.37409464253257, 34.69245939571714], [-77.37353153057406, 34.69150989655728], [-77.37347777639856, 34.69096680248171], [-77.37345268480473, 34.69078206970216], [-77.37344971504389, 34.690718411374], [-77.37346881494241, 34.69062860341413], [-77.37370006595772, 34.68980306965908], [-77.3737693135692, 34.68969968263874], [-77.37376997143114, 34.689619224762055], [-77.37381177123913, 34.68892852740846], [-77.3737268961564, 34.6887307230957], [-77.37369825986151, 34.68827943546365], [-77.3736856606138, 34.68823709121845], [-77.37348377812806, 34.68778935796006], [-77.37327758957036, 34.68753008358133], [-77.37283722715345, 34.68731326536796], [-77.37250587805714, 34.68694900928568], [-77.37228143748754, 34.686837527386345], [-77.37166433071957, 34.68663926735502], [-77.37122779413312, 34.68634320413677], [-77.3710815305819, 34.68617002607041], [-77.37069131369552, 34.685811381254155], [-77.3703041909776, 34.68540065144903], [-77.37026801446869, 34.68534878056917], [-77.37018760704906, 34.68531811942379], [-77.36980783404377, 34.68504851417669], [-77.36972436484588, 34.68497883540723], [-77.36966944581283, 34.68490195056225], [-77.3693569016519, 34.684539810232835], [-77.36934133922124, 34.68448522576909], [-77.36934189700598, 34.68445958047394], [-77.36914183802625, 34.68424145614888], [-77.3689572535318, 34.68399243397127], [-77.3686266655001, 34.68358310252511], [-77.36853765061885, 34.68352698910008], [-77.3684724897739, 34.68346229440107], [-77.36810729891175, 34.68332454855887], [-77.36792554672652, 34.68320975372386], [-77.36743945621464, 34.682897121522466], [-77.36736637010199, 34.682851769165715], [-77.36727456038265, 34.68279415361232], [-77.36680301050552, 34.68249700603647], [-77.36643922305551, 34.6822189341751], [-77.36626800462881, 34.682120414968345], [-77.36588529614063, 34.682065322107015], [-77.36582215135735, 34.68201897702678], [-77.36577775095326, 34.681709371491], [-77.36544145747938, 34.68153228965617], [-77.36516091463886, 34.68139578194945], [-77.36490191984686, 34.68132910251658], [-77.3646431324007, 34.68120621686624], [-77.36454418691879, 34.68108210940446], [-77.3643780180657, 34.681072032383], [-77.36417728718365, 34.68097033851719], [-77.36397195465614, 34.680935500003734], [-77.36381312820342, 34.680956228003225], [-77.36347155277551, 34.68111941712363], [-77.36313071001825, 34.68124545121289], [-77.36295894919141, 34.68131395007917], [-77.36274126501594, 34.68128739429178], [-77.36255599382164, 34.681163504129046], [-77.36245401742596, 34.68111429839253], [-77.36236237255838, 34.681032217724194], [-77.36204696239287, 34.680855206507985], [-77.36179940145348, 34.68082978696162], [-77.361004195439, 34.68085758565754], [-77.3607607874711, 34.68116251754658], [-77.35988590483012, 34.68185983564817], [-77.35960609047572, 34.6821710907118], [-77.35921820730583, 34.682353250771435], [-77.35913742359651, 34.682393855894816], [-77.35869518781954, 34.6824309524802], [-77.35859189238735, 34.68244904990102], [-77.35852370649624, 34.68248803580853], [-77.35841145328872, 34.682549766489124], [-77.35782382662133, 34.683033219264544], [-77.3577625022406, 34.68308970471155], [-77.3575961265021, 34.68314914409477], [-77.35710356023029, 34.68345266883526], [-77.35674535880982, 34.68346448676212], [-77.35648988911916, 34.683504859158575], [-77.35617895127001, 34.68383117514984], [-77.35593885673131, 34.68402600821], [-77.35574988347653, 34.68413379582253], [-77.35570428376882, 34.68414935459445], [-77.35569294260108, 34.68414161593556], [-77.35555175435753, 34.684062135636346], [-77.35554974243941, 34.684000176451406], [-77.35561015661983, 34.68390929291902], [-77.35560362866742, 34.68372882123727], [-77.35583336310208, 34.683451175009026], [-77.35590399960293, 34.683381552235154], [-77.35590378898989, 34.68335666914549], [-77.3559371317743, 34.683347194789825], [-77.35646052691558, 34.683211979711785], [-77.35657303439538, 34.683218414645026], [-77.35708670106158, 34.6827317287358], [-77.3571236258208, 34.68252333757318], [-77.35740585940773, 34.68241117676553], [-77.35760958165096, 34.68231590143093], [-77.35777739680925, 34.68234900194438], [-77.35798497772224, 34.682477998743686], [-77.35824888287692, 34.682244406389884], [-77.35868018574578, 34.68202546623922], [-77.35870708264622, 34.68201236478145], [-77.35872343261055, 34.681995831813545], [-77.35923094652776, 34.68183853348851], [-77.35943899631062, 34.681592502160875], [-77.36049435213334, 34.680801473526195], [-77.36049392457406, 34.680405244776225], [-77.36063665776838, 34.68014799610658], [-77.36085942529795, 34.67977654387334], [-77.3610535696214, 34.67962492205256], [-77.36121520238203, 34.67959665763769], [-77.36130227588151, 34.67963559076465], [-77.36234048180839, 34.67948930548713], [-77.36245645940996, 34.679444045254854], [-77.36250586421886, 34.67949747532152], [-77.3627423726924, 34.67951783923491], [-77.36296775129486, 34.67953612021291], [-77.36301976000738, 34.67956529319012], [-77.36327146593028, 34.67969653221459], [-77.36353427508314, 34.67985466963181], [-77.36408295200674, 34.679757500237976], [-77.36415616218663, 34.67977401728832], [-77.3641793684907, 34.67978603621552], [-77.36424487548166, 34.67979877342439], [-77.36468375047673, 34.68001835167472], [-77.36501617830382, 34.67993026490666], [-77.36530325342912, 34.67994590705746], [-77.36557251915765, 34.67989618456861], [-77.36566566733879, 34.67988405560413], [-77.36591278166338, 34.67990783436095], [-77.36618653620008, 34.67981769492242], [-77.36629554745703, 34.679804193384285], [-77.36655055970341, 34.67977238672137], [-77.36666247274226, 34.67984551044222], [-77.36698355434797, 34.67990980003528], [-77.36705625145464, 34.67993657878405], [-77.36710351284066, 34.679929304886535], [-77.36722557372556, 34.67999036921757], [-77.36762258751172, 34.68020300259964], [-77.36773138008593, 34.68020527434316], [-77.36815204181698, 34.680440929655774], [-77.3682749697611, 34.680575244837804], [-77.36863696263838, 34.68065733239193], [-77.36899745140195, 34.68080748157073], [-77.36921342587858, 34.680908277219245], [-77.36962554443534, 34.68111239141267], [-77.36976183043708, 34.68108090613207], [-77.37001032422526, 34.681182263566015], [-77.37031632125866, 34.68123255657801], [-77.3704992357571, 34.68122820165675], [-77.37078476183304, 34.68133688484435], [-77.371051583288, 34.68159143017146], [-77.37131487700006, 34.68191655106465], [-77.37221953301986, 34.681480659028026], [-77.37270124255451, 34.68126358970027], [-77.3728909284467, 34.68118270913621], [-77.37304876455556, 34.681025636887185], [-77.37419242677832, 34.68024913761285], [-77.37457382083684, 34.680121656899786], [-77.37542604730324, 34.680122641626056], [-77.37658502912188, 34.67935158072], [-77.37691274086991, 34.67912345954244], [-77.37779479348126, 34.678423432926664], [-77.37815531789911, 34.67819077079988], [-77.37847367713405, 34.6778680956383], [-77.37944837529601, 34.677221207221194], [-77.37961743401442, 34.67693411752089], [-77.38054155575058, 34.676096037259356], [-77.38069904974276, 34.675340298501816], [-77.38072435256794, 34.674931340283365], [-77.38117467065892, 34.674059352999315], [-77.38083044236808, 34.67386774130984], [-77.38039665521717, 34.67360656890479], [-77.38018556286686, 34.67360908783079], [-77.37972665066742, 34.67354687042645], [-77.3794990091721, 34.67350932959982], [-77.37870957217325, 34.673577204019715], [-77.37851694106384, 34.67359130230564], [-77.37830934664062, 34.67363697987313], [-77.37787047213187, 34.67375702402498], [-77.37736639502032, 34.67366301051737], [-77.37728840572447, 34.673700636778186], [-77.37695360484474, 34.67366514662369], [-77.37627524432764, 34.673626378529086], [-77.37613532474809, 34.67354974832676], [-77.37570603551728, 34.67346768741228], [-77.37498104925075, 34.673402980394165], [-77.37456980912219, 34.673362641870945], [-77.37422846010853, 34.67343434628306], [-77.37379034054953, 34.673381839843884], [-77.37342871359222, 34.67345283765479], [-77.3728773001584, 34.673513032059795], [-77.37250044691554, 34.67370265873744], [-77.37209202849391, 34.67369362916689], [-77.37039508206479, 34.67386546173559], [-77.37004102558252, 34.673929194991956], [-77.36978490530885, 34.6738931512668], [-77.36894195911992, 34.67385373883444], [-77.36885705094556, 34.67388475988827], [-77.36876665471436, 34.67381601169463], [-77.36813994702769, 34.67358276030616], [-77.3677613723547, 34.67353594447773], [-77.36700374751597, 34.67308354193864], [-77.36684020757924, 34.673006557764694], [-77.36674882291608, 34.672900606102104], [-77.3659532495957, 34.67248076601236], [-77.36570493520064, 34.67237333032977], [-77.3656522404229, 34.67234429025284], [-77.36560212342201, 34.67230139873293], [-77.36469159952215, 34.671740782508294], [-77.36451328451773, 34.671644287392766], [-77.36414702383908, 34.671526588834524], [-77.36361102672483, 34.67134001826232], [-77.36321987622658, 34.671334000514], [-77.36302485751465, 34.6712977819697], [-77.36292570206903, 34.67128969936259], [-77.362670707191, 34.671242071028885], [-77.36245276603887, 34.67120702509712], [-77.36222463775775, 34.67104100902262], [-77.36213161999869, 34.67082875722199], [-77.36201654007786, 34.670648029564504], [-77.36184234238696, 34.67054689302257], [-77.36182698464143, 34.670383226879174], [-77.36154681984667, 34.67020448480862], [-77.36106470242692, 34.670357158886745], [-77.36056502657706, 34.67025672342781], [-77.36035846196397, 34.67017525073503], [-77.36031492783857, 34.670145969701835], [-77.36026914156031, 34.670109883404656], [-77.35988778398625, 34.66973503854124], [-77.35985035324741, 34.669715206165286], [-77.35979763842447, 34.6696872754381], [-77.35958832644808, 34.66952272100536], [-77.35964399119557, 34.669440123516985], [-77.35965661493682, 34.669219262908285], [-77.35968162762836, 34.66905667351051], [-77.35955057700147, 34.668834896255994], [-77.35951743452657, 34.66875099692214], [-77.35941256846445, 34.668596704197014], [-77.35939885441186, 34.66848594753124], [-77.35939105753907, 34.668280971691885], [-77.35939246258785, 34.66794064316859], [-77.35935527647108, 34.66773106784066], [-77.35943121342788, 34.667300678599496], [-77.35929621177036, 34.66698811216796], [-77.3591901131683, 34.66684641650504], [-77.3592118177568, 34.666504003120366], [-77.35919848282941, 34.66635787938068], [-77.3592078057749, 34.66626774864461], [-77.35926499583127, 34.66586135406021], [-77.35926057139932, 34.6657099955466], [-77.35925409844883, 34.66544368017573], [-77.35926437202298, 34.66537405222629], [-77.35922695173628, 34.66524094945439], [-77.35920308194999, 34.66469452989298], [-77.35907716017655, 34.664424998285526], [-77.35907131587498, 34.664300082060755], [-77.35901388118714, 34.66405177443759], [-77.35898265935745, 34.663950594248725], [-77.35902589675834, 34.66378620078586], [-77.35908704297744, 34.663601232310064], [-77.35907512993106, 34.66345050217095], [-77.3592320857831, 34.66293954515004], [-77.35926962044039, 34.66269428032047], [-77.35925632825919, 34.662581596004124], [-77.35927523551334, 34.662371474818144], [-77.35934966197428, 34.66172476085602], [-77.35933563657412, 34.66142168781124], [-77.35947185856159, 34.660948562247775], [-77.36001562266141, 34.66090512341208], [-77.36008757375005, 34.66082574149439], [-77.36011195666734, 34.660811833761755], [-77.36014424641075, 34.660771575017506], [-77.36019574290866, 34.6605483827907], [-77.3601944310586, 34.65992066586473], [-77.35992168360802, 34.65930011783104], [-77.35928114959663, 34.65776520505235], [-77.35871279813446, 34.65717646421665], [-77.35854117578097, 34.65693353506975], [-77.35809754244761, 34.65683272328475], [-77.35760707622947, 34.65648634683003], [-77.35722194426793, 34.65613248051842], [-77.35578658038823, 34.65549751130747], [-77.35445247140512, 34.65395742966007], [-77.35402562843828, 34.652977037524494], [-77.35331179862257, 34.651210610237754], [-77.3529701132565, 34.65078501343687], [-77.35183669511534, 34.64908683652615], [-77.35067272524998, 34.64724950176086], [-77.34897563327795, 34.64458156205151], [-77.34811915206906, 34.64311950304227], [-77.34605900126279, 34.63883243502842], [-77.3456951764154, 34.638733368470625], [-77.34379442440033, 34.64030738716757], [-77.34346781674076, 34.6412749600639], [-77.34223119084106, 34.64099964504847], [-77.34134927743688, 34.64088416823583], [-77.34119595479673, 34.64075310046915], [-77.34103734018626, 34.64060748396602], [-77.34063081678329, 34.63996079889568], [-77.34052658831028, 34.63978216662841], [-77.34050153003409, 34.63899304276103], [-77.34057610579677, 34.638575214160625], [-77.34087778494248, 34.638537813897145], [-77.34133935939805, 34.638034043321504], [-77.34139152353005, 34.638002039518575], [-77.34140256257757, 34.637963188900805], [-77.34146021894091, 34.63793361304257], [-77.34171883372781, 34.63798195218693], [-77.34205227572406, 34.63801031694846], [-77.34264690293197, 34.63788021806326], [-77.34273281053161, 34.63791983875164], [-77.34332148532513, 34.63795419134715], [-77.34382322890724, 34.63784730795638], [-77.34580092601374, 34.63811533421362], [-77.34589737566958, 34.6380283777775], [-77.34668413841152, 34.63627104312411], [-77.34675143330543, 34.635906914240266], [-77.34690866193567, 34.63473741139747], [-77.34736821004304, 34.63424086348881], [-77.34731310546061, 34.6329938710648], [-77.347362227293, 34.63290088109784], [-77.3474035656017, 34.63278107292009], [-77.34775917674698, 34.63193707425497], [-77.34781708774234, 34.631653328428314], [-77.34803789717994, 34.63120633270897], [-77.34812032908452, 34.630939855000456], [-77.34825563776896, 34.63065014636953], [-77.34839965870611, 34.63031264777022], [-77.34871438909005, 34.630160087811426], [-77.34877242351303, 34.63003622717447], [-77.34905430819487, 34.62978435962437], [-77.34933027700555, 34.629626640929594], [-77.34981673961357, 34.62927401490454], [-77.35038567884338, 34.629051666359814], [-77.35046090514498, 34.62888177497218], [-77.35075415882518, 34.6287142240411], [-77.35114962358296, 34.62843052477357], [-77.35156457695618, 34.62800291264403], [-77.35186786357231, 34.62776671458042], [-77.3523813238841, 34.627233725464066], [-77.3525480474138, 34.62706739474643], [-77.35263955782634, 34.62698145912313], [-77.35335103978196, 34.6264827195219], [-77.35373377441414, 34.62605578974435], [-77.35465863878841, 34.62557366743195], [-77.35498003981206, 34.62533489288458], [-77.35516317806405, 34.62516145052465], [-77.35642094569802, 34.62429305631057], [-77.35697959421844, 34.62380325958782], [-77.35794597815561, 34.62311941022954], [-77.3579984836173, 34.62309823494013], [-77.35814032308498, 34.62303491394426], [-77.35931553567549, 34.62258568344868], [-77.35957570862149, 34.622459832476125], [-77.36015570203918, 34.622120458676626], [-77.36115303236411, 34.621553579030845], [-77.36186716325923, 34.62156946795467], [-77.3627301756762, 34.62097617588442], [-77.36422910331541, 34.62037621088585], [-77.3639461272399, 34.61880293551492], [-77.36342357202747, 34.61813273236461], [-77.36283309030709, 34.61726493730769], [-77.3628028804866, 34.617192796743694], [-77.36273188885508, 34.617129658143426], [-77.36222439412946, 34.61650344117621], [-77.3627325486354, 34.615655279418654], [-77.36276591242202, 34.61561230364859], [-77.36282202664181, 34.615568313797425], [-77.36391987480513, 34.61499053195982], [-77.3643097830026, 34.614582151323845], [-77.36503325295575, 34.614330875760295], [-77.36565413991092, 34.61346240973447], [-77.36576314703072, 34.61331325940432], [-77.36588714004812, 34.61311067113574], [-77.366471208156, 34.612275258643244], [-77.36746447434737, 34.61155625757809], [-77.36749722251557, 34.61149883286845], [-77.36763123873428, 34.60996025078521], [-77.36783339402287, 34.60975220106352], [-77.36845082151709, 34.60902640337642], [-77.36904218942519, 34.60883708966986], [-77.36960395899875, 34.608403932804414], [-77.37032889159872, 34.607694623270014], [-77.37047836834911, 34.60752129371678], [-77.3706193358835, 34.60742285796478], [-77.37087669334454, 34.60733855336351], [-77.37163720221432, 34.60690416306976], [-77.37219627109596, 34.60647230235594], [-77.37287466271044, 34.6063604347111], [-77.3731450684921, 34.606267097719964], [-77.37356143287685, 34.6063799397232], [-77.37377289263655, 34.606380055091876], [-77.37384551377073, 34.60633902082113], [-77.37418291465575, 34.60588278770615], [-77.37514338445554, 34.60530294340203], [-77.37534985238713, 34.60515947683562], [-77.37593546995129, 34.60412107534094], [-77.37641744741418, 34.60342115563034], [-77.37692704814748, 34.602953061703026], [-77.3773059784074, 34.602884975605335], [-77.37789894969258, 34.60255628883563], [-77.37850375920115, 34.602247261115274], [-77.37928392299933, 34.60215028975352], [-77.37929203864125, 34.602147073383094], [-77.37930495004422, 34.602142094258596], [-77.37999018955216, 34.601960150324345], [-77.38008033937028, 34.60195388216271], [-77.38015203192202, 34.60195670897252], [-77.38070282835412, 34.601954567749466], [-77.3808482939709, 34.60195546819423], [-77.38088743185473, 34.601948261366914], [-77.38165681988467, 34.602040329794015], [-77.3821199319788, 34.60210057915868], [-77.3830359404007, 34.602254883609646], [-77.38323327006907, 34.6022796254642], [-77.38333132937981, 34.60231924530303], [-77.38357266394095, 34.60239010376914], [-77.38402147192916, 34.60252899482589], [-77.38443057190855, 34.602674853987764], [-77.38480968788421, 34.60272825555634], [-77.38538519321202, 34.60297798385575], [-77.38546499719189, 34.603109617442556], [-77.38581868923657, 34.603153372184494], [-77.38638612028609, 34.60318428243529], [-77.38678403895867, 34.603196820981], [-77.38754172725737, 34.60351624603554], [-77.38782543800569, 34.60362306901983], [-77.38796255259832, 34.60374662992724], [-77.3889212252004, 34.60398288914769], [-77.38972669640083, 34.60489950266794], [-77.39047119305229, 34.60548610762632], [-77.39111533619626, 34.60610761033906], [-77.39126655104255, 34.606212863508915], [-77.39134370733574, 34.60636464085083], [-77.39159091009029, 34.606665783119084], [-77.3916665307724, 34.60674266228689], [-77.39190355130643, 34.606778730489054], [-77.39219911304728, 34.60666586695317], [-77.392252008873, 34.60660900631643], [-77.39241199778112, 34.60651207353306], [-77.39269189188457, 34.60626075848293], [-77.3927474260916, 34.606222048043314], [-77.39278258817038, 34.606157160228456], [-77.39348025519577, 34.60536388289855], [-77.39353763180414, 34.60526093495123], [-77.39361826346038, 34.60518751007555], [-77.39426859730692, 34.604525175717896], [-77.39463872669093, 34.60458991953833], [-77.39477409196232, 34.60447629444168], [-77.39505689119181, 34.60416125866528], [-77.39507920579928, 34.60415171278631], [-77.39514235595807, 34.60411856760679], [-77.39542932997887, 34.60362919902653], [-77.39584519981872, 34.60342999171273], [-77.39604172708783, 34.603139708927074], [-77.39615640479654, 34.602609216390675], [-77.39738108906413, 34.60209737565749], [-77.39740349569453, 34.60207445614485], [-77.39742177127862, 34.60207316518086], [-77.39745004825572, 34.602056967398], [-77.39840887067952, 34.60131416434129], [-77.3989982922277, 34.60069677744642], [-77.39929910179592, 34.60044644952029], [-77.39978653122697, 34.600124956716215], [-77.39988063648073, 34.60003850352504], [-77.40026567859884, 34.59964998137259], [-77.40057476037757, 34.59940712172468], [-77.40107179724805, 34.599017499656675], [-77.40123628071849, 34.59885727649759], [-77.40136297553569, 34.598558933989224], [-77.4016830084864, 34.59808016224524], [-77.40190355110784, 34.597781567136856], [-77.40215117412332, 34.597650295698806], [-77.40278406707667, 34.597239444838806], [-77.40299955464593, 34.597105888776326], [-77.40372753248704, 34.59622972798671], [-77.40382476542986, 34.59617756409261], [-77.40398171467281, 34.59605016010565], [-77.4047071716808, 34.595302616943634], [-77.40489573860418, 34.5946596121407], [-77.4049651912683, 34.59420992561759], [-77.4050723047322, 34.59394506142436], [-77.4053037426143, 34.592799014448275], [-77.40536143296498, 34.592454432504844], [-77.40631860578875, 34.59171145219382], [-77.40665428332595, 34.59081262968813], [-77.40669984903917, 34.59056294696428], [-77.40668958134371, 34.59035938063121], [-77.40687984849669, 34.58965652983329], [-77.4070098902061, 34.58896004286953], [-77.40707528532892, 34.588810444523375], [-77.40735655645321, 34.588256114834756], [-77.40746694950059, 34.587688310269], [-77.40730679176161, 34.58707871507323], [-77.40781023869611, 34.58631043370899], [-77.40804487489527, 34.586123016232406], [-77.40831717010379, 34.58593434149438], [-77.40830870574065, 34.58539421570079], [-77.40819695699155, 34.58525190543187], [-77.40828850641276, 34.585058510130814], [-77.40817003723927, 34.58471443683595], [-77.40790200265572, 34.58444532772552], [-77.40778569577961, 34.58433486399748], [-77.40766758396401, 34.58415278019707], [-77.40725924560856, 34.58368895642388], [-77.4071955534685, 34.58335755670508], [-77.40714361053173, 34.58229202753855], [-77.40742220453356, 34.58196712068753], [-77.40735165521085, 34.581468378796465], [-77.40703033892584, 34.58048812796335], [-77.40697625705651, 34.58033318359517], [-77.40687928234243, 34.58015451773884], [-77.4060958338362, 34.57960613693706], [-77.40592869244648, 34.57878608800678], [-77.40599837401219, 34.57802685100241], [-77.4059759440402, 34.577930114837805], [-77.40530311217907, 34.5773442729359], [-77.40523647683278, 34.5772595023083], [-77.40490911329886, 34.57751417999599], [-77.4047291091224, 34.57745490334465], [-77.40470083588674, 34.577465155013336], [-77.40451511073468, 34.577605095256], [-77.4042209172717, 34.57765130544311], [-77.40404797622213, 34.57770501681944], [-77.40372710233255, 34.577757722828096], [-77.40343131479652, 34.577872825146336], [-77.40341479483573, 34.577963243876724], [-77.4032294131401, 34.57801369461814], [-77.40293909334355, 34.57826017455191], [-77.40278774347782, 34.57822719142256], [-77.40215107559374, 34.57828229665826], [-77.40196663650212, 34.57831003658525], [-77.40145612241227, 34.57858245740834], [-77.40140466206526, 34.578634719839286], [-77.40136305335331, 34.57863321980347], [-77.40133348067579, 34.57863202247626], [-77.40074242231015, 34.57886582887231], [-77.40057502464478, 34.57896929478104], [-77.40036742128683, 34.578963268265774], [-77.40016062391965, 34.57917201380728], [-77.40013782312175, 34.579197267879444], [-77.39978698146724, 34.57957009509519], [-77.39973569008603, 34.57962460041329], [-77.39939296055219, 34.57972497437976], [-77.39938739829849, 34.57972413043611], [-77.39937583390281, 34.57973179271858], [-77.39919285856946, 34.579967156908374], [-77.39918982249273, 34.57997091921596], [-77.39915354021781, 34.580021843778276], [-77.39902562805503, 34.58020689734698], [-77.39899892341829, 34.58026238335914], [-77.39886350733148, 34.5805089562509], [-77.39876912549789, 34.5806684805435], [-77.39860487673295, 34.58090793236749], [-77.39849781951236, 34.58101684595016], [-77.39829354283017, 34.58107256416495], [-77.39821084630422, 34.581082353720575], [-77.39793202676569, 34.58108969436253], [-77.39781682306929, 34.581085313884266], [-77.39765470014186, 34.58107914885473], [-77.397422796546, 34.58114521106063], [-77.39698026415206, 34.581298882594474], [-77.39627556986356, 34.581877377557795], [-77.39613127762365, 34.58220491384107], [-77.39584661112666, 34.582357130006294], [-77.39524709263702, 34.58267170336996], [-77.3948902373623, 34.58274503878013], [-77.39427044357612, 34.582878380280754], [-77.39409426116616, 34.583041180538714], [-77.39380679152866, 34.583432257886614], [-77.39339245752811, 34.58399154717895], [-77.39293373771189, 34.58431585816194], [-77.39269414431307, 34.58439838970499], [-77.3919845800993, 34.58504374594878], [-77.39194675577801, 34.58509313437601], [-77.39176246936515, 34.585230388769475], [-77.39111787088257, 34.58527721686329], [-77.39083821821498, 34.58575695971079], [-77.39070395789761, 34.586077570426205], [-77.3903296380663, 34.58631814394479], [-77.3897165424749, 34.58640853149599], [-77.38954151908624, 34.58645503631501], [-77.38927776865575, 34.58656738861211], [-77.38875338627619, 34.5866618898651], [-77.38813635518088, 34.586632128631784], [-77.38796529450875, 34.58659596449525], [-77.38789674555005, 34.5865562282595], [-77.38778727785672, 34.58649814711818], [-77.38717728524028, 34.58606622913767], [-77.38697504729922, 34.585984035357555], [-77.38638931023877, 34.58540589030301], [-77.38605966469757, 34.58540413769959], [-77.38572985893495, 34.58509650790465], [-77.38600886384012, 34.58464621417234], [-77.38596048404696, 34.5838273575759], [-77.38576565026658, 34.58339308121752], [-77.38481381424859, 34.58206542982736], [-77.38473733539645, 34.58192550364058], [-77.38465093861869, 34.58185552219001], [-77.38385612677443, 34.58130392105799], [-77.38342427621653, 34.58118322532604], [-77.38323790975275, 34.581104682559854], [-77.3828929765206, 34.58078242747825], [-77.38244998440298, 34.58056744562078], [-77.38241152712183, 34.580521532922965], [-77.38233508059332, 34.58049110268907], [-77.38229005941896, 34.580325208678055], [-77.3821768931191, 34.579959190457856], [-77.38223207725166, 34.579656819915996], [-77.38227241480485, 34.57945938567754], [-77.38247041507995, 34.57877333198924], [-77.38304235159643, 34.57720430545782], [-77.38302420727149, 34.576995241979446], [-77.3829302524705, 34.576676175667316], [-77.38278829926682, 34.575816777235985], [-77.38245121944635, 34.57538676737584], [-77.38244627939247, 34.575380293117234], [-77.381912294125, 34.57518892151793], [-77.38166328353323, 34.575136466061515], [-77.38135213597236, 34.57520274179963], [-77.38021711575814, 34.57556159091277], [-77.38008716777182, 34.57559160607606], [-77.37996344595825, 34.57560485817303], [-77.37861580010343, 34.5758195812461], [-77.37851112879422, 34.57571617694472], [-77.37828333375897, 34.575734856690595], [-77.37794232220013, 34.576029458449845], [-77.3756507050559, 34.57667423010634], [-77.3753585383269, 34.577490793866005], [-77.37517875818511, 34.57793237942071], [-77.37424974419575, 34.57825979971255], [-77.37422539637784, 34.57874100332888], [-77.37378218159678, 34.57840710809101], [-77.37371624882005, 34.5784077096849], [-77.37369763930307, 34.57833934776575], [-77.37299433173233, 34.57789346310068], [-77.37272503605931, 34.57792051250703], [-77.37220630396277, 34.57789837501237], [-77.37185579555174, 34.57775557815871], [-77.37152226710413, 34.5776916569579], [-77.37141839483078, 34.57758234632774], [-77.37093702771854, 34.57736915778998], [-77.37063048433015, 34.57728511181371], [-77.37052722384074, 34.57720914449584], [-77.3703108697215, 34.57712901231064], [-77.36957644238352, 34.576672590095036], [-77.36905489605753, 34.57614928034427], [-77.36819725896814, 34.57573522370534], [-77.3680687670589, 34.575118544128614], [-77.36679019853798, 34.57519535628827], [-77.36590347407814, 34.574726428781624], [-77.36562531604497, 34.57470715202193], [-77.36489071439183, 34.57451320194738], [-77.36432768728608, 34.57426550797895], [-77.36347009088905, 34.57394381200734], [-77.3629204401037, 34.57309869787401], [-77.36355044828983, 34.5721693943529], [-77.36380595359823, 34.57127296563722], [-77.36426545942587, 34.56957795454821], [-77.36424200249873, 34.56951195262474], [-77.36417209378604, 34.569351912013616], [-77.3637848602614, 34.56872867225807], [-77.36364436803946, 34.568638948867545], [-77.36354247898589, 34.5683342881041], [-77.36339419153121, 34.567935818934444], [-77.36306449604463, 34.567649627925555], [-77.36275490155707, 34.567582848979], [-77.36236985842488, 34.56723420995447], [-77.36220614404905, 34.56700034315662], [-77.36196744585466, 34.56661297537623], [-77.36155755980296, 34.566502064174955], [-77.36128404963799, 34.56642890077119], [-77.36117962351985, 34.566410810195705], [-77.361032522298, 34.56641914127975], [-77.3599643484863, 34.56634292215652], [-77.35960391886297, 34.566142469298526], [-77.35929331487522, 34.5654649569159], [-77.35881637054112, 34.56544098364149], [-77.35868964974837, 34.56535337316285], [-77.35803615649728, 34.565319066495945], [-77.35802852256205, 34.56531886256088], [-77.358017013686, 34.56532599384026], [-77.35738479200084, 34.56556012966276], [-77.35724038331556, 34.565730634014], [-77.35645363044893, 34.565538648115655], [-77.35645340185218, 34.56553778864245], [-77.35645257422944, 34.56553700290641], [-77.35645173979734, 34.56553802164283], [-77.35645092420346, 34.56553903766582], [-77.35566446656196, 34.56587488794374], [-77.35531339795332, 34.565702773333086], [-77.35518085497729, 34.56539420838946], [-77.35487703511356, 34.565031137531925], [-77.35444410588588, 34.56536154776631], [-77.35378442987762, 34.56540185307261], [-77.35330109425438, 34.56522788032673], [-77.35248518958475, 34.56523054909927], [-77.35137461904269, 34.56494949436663], [-77.35038306886455, 34.56471412461462], [-77.35014986798463, 34.56454777057941], [-77.34917762147468, 34.564237338921316], [-77.34794828956507, 34.564389978614585], [-77.34699818834814, 34.564611111259076], [-77.3464001556244, 34.56423372928792], [-77.34584650019475, 34.5636686417395], [-77.34542335689949, 34.56318075018815], [-77.3450063500599, 34.56254118567514], [-77.3439465809241, 34.56224376620815], [-77.3438488928096, 34.56131110563059], [-77.34377568402077, 34.560649571526284], [-77.3437575195942, 34.56057278103963], [-77.34378714319976, 34.56050134935405], [-77.34384952456334, 34.56042520557023], [-77.3439267426086, 34.56046518843544], [-77.34672731258436, 34.55985016255342], [-77.34700146078589, 34.5597600359977], [-77.34810801731939, 34.55774162864951], [-77.34857920116009, 34.556704481201166], [-77.34891976384418, 34.556433721200186], [-77.34923856289585, 34.555809939316454], [-77.34915805033502, 34.5554201496409], [-77.34907231403014, 34.555144318580105], [-77.34923602174429, 34.55491929030711], [-77.34880136737719, 34.55486659196139], [-77.34861818405687, 34.55479518966474], [-77.34849005035107, 34.554619407388444], [-77.34850617456995, 34.55453467069323], [-77.34846537429635, 34.55444016621236], [-77.34835240194896, 34.554311976780966], [-77.34834702783016, 34.554244898957975], [-77.34793201409788, 34.55418062265356], [-77.34784655013078, 34.55420235818898], [-77.34780732280285, 34.55417050376116], [-77.34777832833142, 34.554149759075585], [-77.34739089423938, 34.554002842298395], [-77.34727250977747, 34.55385968910666], [-77.34721555629085, 34.55374109252425], [-77.34713524573955, 34.553713543609064], [-77.34707416431307, 34.55364263919148], [-77.34695979848217, 34.553707512828474], [-77.34689055502935, 34.553787854214406], [-77.34667596363917, 34.553884161317775], [-77.34640650252456, 34.55393503304977], [-77.34628166314073, 34.55395632147133], [-77.34615808006467, 34.553970098998455], [-77.34600159717232, 34.55391575311846], [-77.34571110054968, 34.55382554727271], [-77.3455054165753, 34.55356460384333], [-77.34540778239018, 34.55351154589766], [-77.3454119755076, 34.553451047384065], [-77.3453525411643, 34.55327467383047], [-77.34526632969585, 34.5531966243626], [-77.3451603933579, 34.55308022259686], [-77.34513197577277, 34.55306158634341], [-77.34512746215759, 34.55306033070108], [-77.345124427002, 34.55305946201426], [-77.34495602037117, 34.55294868011718], [-77.34493090731712, 34.55293814670336], [-77.34485655133305, 34.55290325561573], [-77.3447639805107, 34.55286970815298], [-77.34474860019331, 34.55286424791889], [-77.34473636695719, 34.55286111370126], [-77.34467839796841, 34.5528456523751], [-77.34454077723936, 34.55282959301866], [-77.3444366497576, 34.55285889398677], [-77.34434366930812, 34.552863897134316], [-77.3442094530701, 34.55278942249727], [-77.34417271777139, 34.55270994801558], [-77.34415104217433, 34.552703955843306], [-77.34409612611638, 34.55268647288362], [-77.34405358008622, 34.55267378152121], [-77.34404034009417, 34.55267601021244], [-77.34395565743728, 34.55266357272051], [-77.34388851617881, 34.55262842269065], [-77.34381185336615, 34.55260751438444], [-77.34359467667227, 34.55254828321283], [-77.34357736206792, 34.55254356097103], [-77.34356591159202, 34.552538468352296], [-77.34349784659273, 34.55251949880521], [-77.34346838382079, 34.55251115629546], [-77.34345922221318, 34.55251226063614], [-77.34337025834913, 34.55250974574421], [-77.34327957510561, 34.55252749020243], [-77.34317335901909, 34.55253501665146], [-77.34286667185509, 34.55259850308873], [-77.34278071028176, 34.552535727445466], [-77.34241178754124, 34.5524877132516], [-77.34238906704564, 34.5524928861778], [-77.34236570113924, 34.5524947917899], [-77.3423522519984, 34.552482184482365], [-77.34189663703557, 34.55236694239408], [-77.34160514958562, 34.552434558865016], [-77.34141567003468, 34.552499692899445], [-77.34094562076795, 34.55260367264728], [-77.34081621269951, 34.55259347026187], [-77.3405075693975, 34.55245235914712], [-77.3404267536108, 34.55245614130746], [-77.34014940624468, 34.552380179622205], [-77.3400355758041, 34.55239320898269], [-77.33999266402643, 34.55235918131776], [-77.33995857490186, 34.55233683676279], [-77.33996397824448, 34.55228992767664], [-77.339857959163, 34.551978400679175], [-77.3397218829925, 34.551881241976545], [-77.33947268443411, 34.55178716417642], [-77.33946054018921, 34.55167401098921], [-77.33939440795695, 34.55160503858421], [-77.339379177109, 34.551563303766926], [-77.33927023603493, 34.55153167094505], [-77.33921762240071, 34.55149742964649], [-77.33917420713438, 34.55147037328279], [-77.33917350111204, 34.55147017939199], [-77.33914048558206, 34.55143511069189], [-77.3391254707798, 34.551424860126296], [-77.33910563805205, 34.55141903023915], [-77.33908776254925, 34.55141465838168], [-77.33907669322446, 34.55141184838975], [-77.33899749940294, 34.55142260296034], [-77.33889006740878, 34.55138882826232], [-77.3388809477047, 34.55138727091754], [-77.33883059024518, 34.5513973819217], [-77.33875306826896, 34.55145213774], [-77.33871998109123, 34.55153569772422], [-77.3387209826311, 34.55168492087309], [-77.33847957696594, 34.551765134727205], [-77.3382753412927, 34.5517275317783], [-77.33808656536343, 34.55178162625762], [-77.33783784484817, 34.551662557232554], [-77.33778975024882, 34.551612175142836], [-77.33769735691996, 34.551633798387506], [-77.33754330902657, 34.551608493560565], [-77.33730631311168, 34.55156530353993], [-77.33719058782356, 34.55158272426645], [-77.33714730310308, 34.55151704182188], [-77.33701014480239, 34.55147788078142], [-77.33691834070976, 34.55136419187714], [-77.33685709581849, 34.551352315874176], [-77.33679907976683, 34.55132229859237], [-77.33683517471933, 34.55126380206411], [-77.33671377757831, 34.55097805847531], [-77.33650798705699, 34.55087452236424], [-77.3361469259829, 34.55076664766685], [-77.33580619446083, 34.55069923437885], [-77.33562652793967, 34.55067546442592], [-77.33536365232436, 34.5506812873713], [-77.3351894105007, 34.55068310709946], [-77.33496937248503, 34.55075264969884], [-77.33485352187861, 34.55079598840473], [-77.33457447040095, 34.55085081783027], [-77.33446802622422, 34.55085673958061], [-77.33424157978693, 34.55091737358109], [-77.33418001392897, 34.550929725123254], [-77.33387650833488, 34.5507632552004], [-77.33382950636216, 34.55074640099142], [-77.33379371983018, 34.550656673386406], [-77.33337935025688, 34.550604231041035], [-77.33331898507336, 34.55035377832341], [-77.33329717496636, 34.55018373670807], [-77.33330691476702, 34.55011069818115], [-77.33311686793009, 34.549950580961415], [-77.33305256435365, 34.54990244981547], [-77.33303862111386, 34.549896648702784], [-77.33302624332607, 34.54989058832634], [-77.33300160705267, 34.549894470289836], [-77.33263356451828, 34.54989301051945], [-77.33232286491628, 34.54995536948365], [-77.33223908554405, 34.54997297847839], [-77.33216657256143, 34.54998477925855], [-77.33184495403685, 34.550037943726956], [-77.33165789564374, 34.55010294922133], [-77.3315475984756, 34.55018026884313], [-77.33144416910619, 34.5503893926051], [-77.33134032505862, 34.55057618651461], [-77.33074805781276, 34.550723369994074], [-77.33068241396359, 34.55075271943202], [-77.33065027139116, 34.55076160101828], [-77.33062240647335, 34.5507588465015], [-77.32987293725928, 34.55042079421545], [-77.32983626110796, 34.550388146368384], [-77.32983683562419, 34.55036472209512], [-77.32983118298775, 34.55033830394304], [-77.32954821136383, 34.54991657826621], [-77.32967269809538, 34.54976431523756], [-77.32979315780526, 34.54963655556129], [-77.32984722178256, 34.54960086787629], [-77.32979462334279, 34.549454366871736], [-77.32970719230767, 34.549404097285915], [-77.32950669176422, 34.54928593461395], [-77.32939858476017, 34.549271262811125], [-77.3293552397421, 34.54920987153893], [-77.32911773381365, 34.5491283999481], [-77.32899911010128, 34.549090757875916], [-77.32882792410258, 34.54904085051261], [-77.32872751557282, 34.54902511887049], [-77.3286594905006, 34.54902260701464], [-77.32847674354971, 34.549003196266256], [-77.32833591535223, 34.54898916013466], [-77.32833573257523, 34.54898914822383], [-77.32818141187238, 34.54898524129076], [-77.32807282757622, 34.548985393734114], [-77.32794258861813, 34.54901168717126], [-77.32780222394504, 34.549030705263014], [-77.32754947162438, 34.54903305373332], [-77.32740558152469, 34.5490004647991], [-77.32724247446808, 34.548971411887564], [-77.32716214555083, 34.54880559113526], [-77.32715238370848, 34.54879204032574], [-77.32710538857033, 34.54859246345209], [-77.32710259372406, 34.54851300254418], [-77.32709965620042, 34.548309989386745], [-77.32695735370501, 34.54822179628689], [-77.32678507851656, 34.54813751129398], [-77.32635763074303, 34.548192732712465], [-77.3259988766688, 34.54817915149579], [-77.325787475671, 34.548141307604894], [-77.32560601296862, 34.54818976775132], [-77.3254088278835, 34.54818514748318], [-77.32521344359783, 34.548187741897884], [-77.32506815826522, 34.54820268447037], [-77.32500864459071, 34.548120862312246], [-77.32489972949614, 34.54808875270445], [-77.32482417814666, 34.5480439269174], [-77.32468729060918, 34.54800810360402], [-77.32457641005921, 34.5479381609782], [-77.32443625780465, 34.547842452936095], [-77.32431711349876, 34.54780543747397], [-77.32415726496319, 34.54775357693593], [-77.32402324423045, 34.54754506440109], [-77.32402240941089, 34.547528142288655], [-77.32366150312288, 34.547393159551966], [-77.32360688902659, 34.547377321012675], [-77.32344835142278, 34.5473658164495], [-77.32326981093973, 34.54735366076535], [-77.32298131409674, 34.54736779658044], [-77.32287700740697, 34.54736181806726], [-77.32252796258112, 34.54722802943839], [-77.32214168519364, 34.54706393796763], [-77.32214583564237, 34.54703439975258], [-77.32219298428792, 34.54681175473575], [-77.32216217720003, 34.54678074032793], [-77.32210650195893, 34.54673095203597], [-77.32209500008192, 34.546710890723645], [-77.32207757504631, 34.546705930407626], [-77.3219777906279, 34.546678876705315], [-77.32177671614272, 34.546626750693726], [-77.32174036664199, 34.546617121231705], [-77.3217166704658, 34.54661188010129], [-77.32144561727485, 34.54659871562927], [-77.32132553454177, 34.54654872853102], [-77.3212459237044, 34.54650842744586], [-77.32102909113138, 34.54648935188479], [-77.32096150954649, 34.54648220572377], [-77.32093449216953, 34.54648159133719], [-77.32088915514727, 34.54648118049405], [-77.32054102608144, 34.5465182574768], [-77.32026692215595, 34.54652485935119], [-77.31990516110699, 34.54649885727427], [-77.31975610149175, 34.54650560423007], [-77.3196718316594, 34.54649227032334], [-77.31946725746579, 34.54646891830047], [-77.31936442435132, 34.546465675637656], [-77.31906204984368, 34.5464707874621], [-77.31897169055361, 34.54647096713965], [-77.31883034674809, 34.546472297890546], [-77.31874858697142, 34.546466527200074], [-77.31858033335516, 34.54641736698494], [-77.31849032190173, 34.54642052650111], [-77.31845007920907, 34.546370226989275], [-77.31841637708979, 34.546270695167664], [-77.31835691278118, 34.5461387986546], [-77.31832282976595, 34.546064592077315], [-77.31822566787929, 34.54591284030264], [-77.31819997516206, 34.54589338879779], [-77.3180725153277, 34.54577128691204], [-77.3178752272754, 34.54571836815267], [-77.3178116368519, 34.545710834912576], [-77.31776699977775, 34.545706010472465], [-77.31752180613742, 34.545705131313824], [-77.31742687163268, 34.545660365540854], [-77.31742023128923, 34.54565947440614], [-77.31741520637993, 34.545658899463106], [-77.31732236599154, 34.54564723131281], [-77.31725452438604, 34.545665948489514], [-77.31722367504868, 34.54567028174735], [-77.31720397600947, 34.545680244126444], [-77.3171727897881, 34.54572775293945], [-77.3171380374919, 34.545824259048274], [-77.3171183690346, 34.545886987235846], [-77.3170211614671, 34.54593570968971], [-77.3169183390026, 34.546038004388926], [-77.31664088366831, 34.54614047917936], [-77.31662986655142, 34.54614594832426], [-77.31662360920971, 34.54614698024653], [-77.31661404733688, 34.546150248383185], [-77.31636270016072, 34.54626426844076], [-77.31630522668364, 34.54631109569121], [-77.31626381411466, 34.54634032687146], [-77.3162255436201, 34.546380093466965], [-77.31618173907194, 34.54642457262355], [-77.31613795301011, 34.54645752649337], [-77.31601842012772, 34.54659346910294], [-77.31601572715552, 34.54659748708235], [-77.31599906395319, 34.54661526285815], [-77.3158836057056, 34.54673886863705], [-77.31585952840368, 34.546764521830866], [-77.315823007983, 34.546804049926706], [-77.31575106200387, 34.54688031067117], [-77.31570887532959, 34.54693958708714], [-77.31563846003667, 34.54701888828028], [-77.31554609500633, 34.54710874623211], [-77.3154199460131, 34.54725031092316], [-77.31537538040891, 34.54727404123756], [-77.315364862138, 34.54730299381811], [-77.31529605291887, 34.54738811626131], [-77.3152485256769, 34.54746069748382], [-77.31521841500987, 34.5474733737318], [-77.31511771507081, 34.547583299657376], [-77.31507820014623, 34.54762618229518], [-77.31501698193671, 34.547692209454546], [-77.31498707332045, 34.5477244674437], [-77.31492179586172, 34.54779844721159], [-77.31485940214284, 34.54786520826083], [-77.31476521348966, 34.547970625592164], [-77.31461433880146, 34.548120226204425], [-77.3145754608451, 34.54815079692921], [-77.31445700176428, 34.548317394783346], [-77.31436088618571, 34.5484264227117], [-77.31428385032629, 34.54848150406552], [-77.3142114427544, 34.54855886250198], [-77.31409578476553, 34.54863834942779], [-77.31404557032792, 34.5487165153737], [-77.31395496920544, 34.548818207557595], [-77.3138099015968, 34.548939501692175], [-77.31375700993638, 34.54897023463426], [-77.31374102916868, 34.54900505975136], [-77.31358957656018, 34.54913712914437], [-77.31340930549153, 34.5492796639796], [-77.31338852959513, 34.54928765258889], [-77.3133878097385, 34.54930059344358], [-77.31324764312168, 34.54941947797994], [-77.31321455042202, 34.549447878684425], [-77.31321174135076, 34.549449991082746], [-77.31320893421633, 34.54945281624289], [-77.31307674704041, 34.54959007211694], [-77.31306562280803, 34.54962726689833], [-77.3130064858851, 34.54971453263014], [-77.31293951534829, 34.54981428907512], [-77.31290882110795, 34.549858995717486], [-77.3128422443045, 34.55001535565437], [-77.31260158581458, 34.55023795114083], [-77.31250355856498, 34.550347286177995], [-77.31243005969921, 34.55041736254988], [-77.31219396237397, 34.55069338508589], [-77.31217901400026, 34.55070998724408], [-77.31194642957509, 34.55097642651562], [-77.3118924253663, 34.55104340944436], [-77.31179514730907, 34.551140839240084], [-77.3116769674914, 34.551259927093135], [-77.3115902629845, 34.55139312962106], [-77.311173721847, 34.55157699353285], [-77.31112077288381, 34.55166135441111], [-77.31099763319003, 34.55166268498415], [-77.31089613960819, 34.551679878668125], [-77.31075316775002, 34.55173075750959], [-77.31060156049895, 34.55180907567879], [-77.31050007445205, 34.551855932828374], [-77.31020377297354, 34.552028450563284], [-77.31001247082395, 34.55211533430267], [-77.30965696595102, 34.55228437764755], [-77.30952914985298, 34.55237682146036], [-77.3094095503013, 34.55240933936545], [-77.3090744983886, 34.55257448339945], [-77.30899369579079, 34.55261291633958], [-77.308614700622, 34.55281659391447], [-77.30851006908455, 34.552874253596116], [-77.30834460160196, 34.55296239891683], [-77.30802362072977, 34.553134216308514], [-77.3078183446747, 34.553287591794636], [-77.30757168402207, 34.553410987849325], [-77.30702509397025, 34.55362613211613], [-77.30700676638926, 34.55363273028638], [-77.30688055042474, 34.553662177418076], [-77.30633271254476, 34.55380131215721], [-77.30623457760558, 34.5538481414866], [-77.30591982263928, 34.55399417741426], [-77.30544035611877, 34.554227406814135], [-77.30525438740145, 34.554269879550475], [-77.30490155164819, 34.55428136803179], [-77.30465259440317, 34.55433195038222], [-77.30450267018556, 34.55440062679548], [-77.30436384476491, 34.55451301673608], [-77.30431110336968, 34.55455576864665], [-77.30425254731901, 34.55464606427246], [-77.30417571872707, 34.55473827678716], [-77.30385203010306, 34.55498001156009], [-77.30374542388918, 34.55502558804558], [-77.3034406192594, 34.55513512695262], [-77.30315702980877, 34.55523588771245], [-77.30305936153744, 34.55529240652653], [-77.3026630049614, 34.555492155052185], [-77.30266199514928, 34.55549230276248], [-77.3026598815259, 34.555493279278075], [-77.3022645063976, 34.5556973067994], [-77.30213834917424, 34.55573350068346], [-77.30186836900361, 34.55584490079927], [-77.30181861540403, 34.555857503914325], [-77.30152894163575, 34.55593356143406], [-77.30147325039708, 34.5559492237897], [-77.3013497760758, 34.55600099907238], [-77.30096471613032, 34.55615563005392], [-77.3006805189801, 34.55626347187693], [-77.3004226088992, 34.556388472314225], [-77.30028366142481, 34.55644134266915], [-77.29991508528927, 34.55662024910439], [-77.29989581271076, 34.556628772649105], [-77.29988645060834, 34.55663410869812], [-77.2998618187905, 34.55664311586063], [-77.2993474491061, 34.55685856547665], [-77.29909207677257, 34.557017373175626], [-77.29883519333525, 34.557105947522246], [-77.2986968154413, 34.55712733153018], [-77.29843952854395, 34.55723556693431], [-77.29830009312472, 34.55729910551335], [-77.29825413940864, 34.55731981415457], [-77.29814428063105, 34.55736391941053], [-77.29797588911124, 34.55743272755436], [-77.29790343595795, 34.557468048715904], [-77.2977089337628, 34.557551142938664], [-77.29750705733264, 34.557625130561505], [-77.29742882989576, 34.55766315314858], [-77.29728357640218, 34.55773220058093], [-77.29716902730064, 34.55778505290542], [-77.29710970697523, 34.557823267950525], [-77.2969298128849, 34.557894058867575], [-77.29671306752614, 34.55799124358106], [-77.29662399000873, 34.55801646221437], [-77.29647883971558, 34.558092446407166], [-77.29631602604127, 34.55817615496504], [-77.2961210653105, 34.5582683867264], [-77.29592021697529, 34.558308865300525], [-77.29555825868665, 34.55846930302935], [-77.2955365027233, 34.55848053932734], [-77.29552338682157, 34.55848469526918], [-77.29548845384724, 34.55850085583628], [-77.29527427343967, 34.55860125564857], [-77.29516004945178, 34.55874903906156], [-77.29514383826296, 34.55877355109205], [-77.29514327391433, 34.55878590401101], [-77.29512258029703, 34.55882855907802], [-77.29504980793888, 34.558988837912246], [-77.29492223453443, 34.559050140933564], [-77.29479168949524, 34.559111557050514], [-77.29458271529288, 34.559185338695954], [-77.2943269738691, 34.559262024961654], [-77.29422445583472, 34.559214832414526], [-77.29402341951001, 34.55923420873923], [-77.2939345982009, 34.559249299649], [-77.29377878414353, 34.55933654693388], [-77.2937572887817, 34.55935302359367], [-77.29357732209411, 34.55946262525273], [-77.2935362597161, 34.559488463792604], [-77.29353134158622, 34.5594914152568], [-77.2935242537217, 34.559495454304766], [-77.29329256917391, 34.55962355850785], [-77.29313857855412, 34.559699766855374], [-77.2930449423846, 34.559751387924436], [-77.2929022767706, 34.559829460992376], [-77.29274063312248, 34.559922140969064], [-77.2925677445131, 34.56001584299103], [-77.2923433808267, 34.56011515963117], [-77.29230282849937, 34.56013524910536], [-77.29223489878285, 34.56016997509324], [-77.29205738430093, 34.560264141492794], [-77.29194567930554, 34.56032705922178], [-77.29161077666014, 34.560504281894715], [-77.29157380131622, 34.56052548531004], [-77.29154787190714, 34.560543338656274], [-77.29143420574272, 34.560599631824516], [-77.29132895078621, 34.56065466671205], [-77.29115036554042, 34.560746826617], [-77.29106578368756, 34.560774923886186], [-77.29094251658364, 34.560844913784145], [-77.29059511215118, 34.561042557509246], [-77.29035442181464, 34.561192813904356], [-77.28990901877236, 34.56142614186163], [-77.28953281794992, 34.561597152761955], [-77.28902451175703, 34.561807874427664], [-77.28871194648383, 34.56197027730896], [-77.28842181629761, 34.562108316042746], [-77.28789160520972, 34.56232074367307], [-77.2877631537843, 34.56235578140924], [-77.28710712447565, 34.56264177583454], [-77.28707164981604, 34.5626546561932], [-77.28704703955373, 34.56266655102247], [-77.2868547207239, 34.562752047831], [-77.28631423277344, 34.562995705249975], [-77.2862508238484, 34.56302492016733], [-77.28617225994934, 34.563060587100075], [-77.28560095325884, 34.563303329679044], [-77.28543028360612, 34.56338284157018], [-77.28520956489474, 34.56347720746997], [-77.28502032277001, 34.56354867560583], [-77.28489467220231, 34.56360323246941], [-77.28461028623914, 34.563717620807964], [-77.28420072283365, 34.56389019850783], [-77.28419958934619, 34.56389078622715], [-77.2841961431655, 34.56389224505827], [-77.28378969885301, 34.56407691172216], [-77.28348888794362, 34.564195540092626], [-77.2833797585023, 34.564241589127846], [-77.28322722405018, 34.564305957204034], [-77.28306804152605, 34.564370768559115], [-77.28288894520922, 34.56445162166949], [-77.2828246983306, 34.56448293239447], [-77.28277210712662, 34.56450588399798], [-77.28257214129282, 34.56458690316482], [-77.2823386211886, 34.56470676154118], [-77.28233725262851, 34.56470740055905], [-77.28212699840557, 34.564848173047736], [-77.28170710700412, 34.565122504780696], [-77.28170010837766, 34.56512567550145], [-77.28169492521802, 34.565128286304486], [-77.28168718636813, 34.56513522400089], [-77.28138891722159, 34.56533991829167], [-77.28129127302442, 34.5654192335449], [-77.28109241400148, 34.56555229578087], [-77.28090138318271, 34.56572964042449], [-77.28087633072411, 34.565770989795894], [-77.2808161172177, 34.56582913538883], [-77.28063709968373, 34.56598786491399], [-77.28054213704823, 34.56606729833484], [-77.28039866148357, 34.566204802101545], [-77.28024599686213, 34.56634577555231], [-77.28018507366339, 34.56640689919843], [-77.28016372857147, 34.566422014252936], [-77.28013793990249, 34.566450744630444], [-77.2799171901375, 34.56663831439853], [-77.27980052922322, 34.56672206388636], [-77.27973028779289, 34.566787242289266], [-77.27965915260347, 34.566853711216204], [-77.27961937150795, 34.56688953037035], [-77.27949439379447, 34.56699900753217], [-77.27942096522935, 34.56704165886079], [-77.27940687678165, 34.56706956004753], [-77.27935329539287, 34.56711224697453], [-77.27913699340341, 34.56728402537644], [-77.27904303122025, 34.567362704959976], [-77.2789202406265, 34.567458259852536], [-77.27886849338284, 34.567498599169284], [-77.27884591326197, 34.56751598025668], [-77.27878981902796, 34.56755918955129], [-77.27863650804218, 34.56765832913561], [-77.27859999499248, 34.56771317240921], [-77.27849980371641, 34.567799540915345], [-77.27835394906725, 34.56792950904034], [-77.27829934936629, 34.56801563802354], [-77.27810898723446, 34.56814593062429], [-77.27805140948676, 34.568186272980284], [-77.27787836115832, 34.56829840204644], [-77.27759553496173, 34.568505852703765], [-77.27750263228741, 34.56856962557525], [-77.27747232342587, 34.56859446236243], [-77.27737748458335, 34.56868578520171], [-77.27708113064725, 34.568903724937826], [-77.2770183879197, 34.56900291178496], [-77.27691308622953, 34.569129028959985], [-77.2767628163515, 34.56927779822357], [-77.27661232841601, 34.569442339620586], [-77.27654151625632, 34.569505777422066], [-77.27638985589545, 34.56960327766392], [-77.27623347541797, 34.56975113454677], [-77.27608053903234, 34.56987188770905], [-77.27601749074844, 34.56992928802153], [-77.27584295122992, 34.57005397612745], [-77.27559279613982, 34.57020876416215], [-77.27548202956325, 34.570296191258], [-77.27518488462853, 34.570503166805985], [-77.27517914141194, 34.570508057426764], [-77.2751614906798, 34.570520261460466], [-77.27489520220729, 34.570721410951634], [-77.27479913610392, 34.57081727958285], [-77.2747321821257, 34.57094426685096], [-77.27451024706855, 34.571131719612865], [-77.27447823049447, 34.57115997677341], [-77.27446019515313, 34.571173019978225], [-77.2744218919966, 34.57119763408308], [-77.27419866975501, 34.571373673633474], [-77.27406697896492, 34.57148049490405], [-77.27397479293039, 34.57159174607777], [-77.27375247419198, 34.5717830870456], [-77.27372922256174, 34.57180811352658], [-77.27370904469085, 34.57181934790812], [-77.27367124866856, 34.57184875880442], [-77.27346013924515, 34.57202263255516], [-77.27331906049557, 34.57212969995998], [-77.27316800707305, 34.57223533979343], [-77.27299590436365, 34.57235094545763], [-77.27290864386741, 34.572421883294794], [-77.2728801827196, 34.57244838510655], [-77.27284888763552, 34.572489079633904], [-77.27273777934371, 34.57259851747668], [-77.27262246789783, 34.57266379626318], [-77.2725157658339, 34.572729664894375], [-77.27232867376968, 34.57283706737235], [-77.27228276648744, 34.57285104276073], [-77.27226515544757, 34.572871379089236], [-77.27222680744052, 34.57290587366365], [-77.27209257067969, 34.57301048654289], [-77.27201179675002, 34.57308713160567], [-77.27190852429948, 34.57317539950746], [-77.27188844120994, 34.57319526918694], [-77.27184702112987, 34.57323188273639], [-77.2717896818802, 34.573305339733324], [-77.2717243502386, 34.573340199274874], [-77.27160531054194, 34.57343417248723], [-77.27152823391205, 34.57349437901224], [-77.27148835009994, 34.57351732087225], [-77.27142974453164, 34.57357193585549], [-77.27133688399903, 34.573652797945705], [-77.27124918245886, 34.57372173411753], [-77.27123656011338, 34.57373319576737], [-77.27114919510858, 34.5738144730752], [-77.27105413588399, 34.57389637516039], [-77.27103175898695, 34.573952763725146], [-77.27096601452214, 34.57398015791394], [-77.27087858930074, 34.57403789365756], [-77.27085495364238, 34.57405669899994], [-77.27076493907342, 34.57412992883508], [-77.27071761723104, 34.57416373646415], [-77.27059888166325, 34.57431084229397], [-77.270484550876, 34.57438108194857], [-77.27037606822975, 34.57444128199908], [-77.27017794622844, 34.574592068016194], [-77.27017782810866, 34.574592637007974], [-77.27017713746419, 34.57459296136332], [-77.27017619784532, 34.57459348044246], [-77.26998989738163, 34.57475503779891], [-77.26993016383068, 34.57480883404129], [-77.26979643068007, 34.574911577229415], [-77.26977807777071, 34.57492558895339], [-77.26965136535273, 34.57502258330564], [-77.26959866492173, 34.57506429360984], [-77.26946059947882, 34.57517515939237], [-77.26940405576167, 34.57521981770178], [-77.2693749760144, 34.57523652135478], [-77.26933650648604, 34.575274730852655], [-77.26921398896808, 34.57537938178848], [-77.26912726833788, 34.57545271385077], [-77.26901486865599, 34.57553089464943], [-77.26890522014435, 34.57562001688968], [-77.26884718376208, 34.57566636066805], [-77.26882681141223, 34.575692246671636], [-77.26874729407807, 34.57575228098302], [-77.26863399006923, 34.57584936215437], [-77.26859715513575, 34.57588236992303], [-77.26852829507266, 34.575944935102704], [-77.2684561088053, 34.5760197648557], [-77.26837384533658, 34.57610047961944], [-77.26824791653631, 34.576163211060035], [-77.26805328961234, 34.57630659407639], [-77.26804825525419, 34.576310547190424], [-77.26804696734541, 34.57631309925177], [-77.2680398952165, 34.576317700717304], [-77.26786025458046, 34.57647564877293], [-77.2677972056263, 34.57652647490516], [-77.26765961968925, 34.57663777995506], [-77.26758100730962, 34.57674514279494], [-77.26747845517622, 34.57679330180129], [-77.26730728414616, 34.576932946764174], [-77.26728569189899, 34.57695047155821], [-77.26727492484696, 34.5769567426897], [-77.2672590290441, 34.57697155677011], [-77.26714133372766, 34.57706407179057], [-77.26709173854364, 34.57710658317069], [-77.2670060973475, 34.57717127144094], [-77.26699127492823, 34.57718153807847], [-77.26695920557387, 34.5772045226924], [-77.26688845258987, 34.5772543952315], [-77.26678174296087, 34.577334061122656], [-77.26671827745947, 34.577384306214306], [-77.26669395052961, 34.57741001961166], [-77.26661362482848, 34.57747115451979], [-77.26650044919775, 34.5775665343515], [-77.26646271192377, 34.57759987688437], [-77.26632626243537, 34.57774022684506], [-77.26623375686134, 34.57781753986336], [-77.26612419283158, 34.57788912227937], [-77.26608720030204, 34.57792384864215], [-77.26601994163791, 34.57798684980239], [-77.26600769591323, 34.57803543025338], [-77.26595024078978, 34.5780630245409], [-77.26585715388413, 34.57813352483387], [-77.26575669414558, 34.578219500496346], [-77.2657167061736, 34.57824821403385], [-77.26557745269278, 34.5783886991332], [-77.26547945851362, 34.5784652238422], [-77.26528867961942, 34.57862818998812], [-77.26525111572735, 34.578682933794965], [-77.26519461949344, 34.57870544191502], [-77.26510714037553, 34.57878310065858], [-77.26501046597976, 34.578870273311324], [-77.26498278113307, 34.57889749808087], [-77.26494332740592, 34.57894126130415], [-77.26487778944022, 34.579007074779334], [-77.26483772347592, 34.5790452536998], [-77.264759318588, 34.57911559108828], [-77.26458130017609, 34.57926057633759], [-77.26453058611057, 34.5793332694228], [-77.26446317781766, 34.579369370017474], [-77.26432728073866, 34.579491654153045], [-77.26427951156347, 34.57953463637997], [-77.2642560092796, 34.5795473416355], [-77.26408646012366, 34.57969155591476], [-77.26402992979382, 34.57976522785569], [-77.26388216752956, 34.579889866005814], [-77.26380059823829, 34.57998285809215], [-77.26372284540156, 34.58002539721555], [-77.26356983734784, 34.5801558620722], [-77.26353482256756, 34.58018679050014], [-77.26351780494198, 34.58019628283165], [-77.26333352059868, 34.58033637366374], [-77.26326781829651, 34.58041228749321], [-77.26310514472269, 34.58054832219159], [-77.26301416216215, 34.58062800328858], [-77.26298236483551, 34.58068129873239], [-77.26283523375373, 34.58077489079893], [-77.26277491359095, 34.58082541434548], [-77.26274098226322, 34.58084218286108], [-77.26258111145586, 34.58098166920911], [-77.2625400680379, 34.58106204681086], [-77.26243435788328, 34.58116697920098], [-77.26232306879308, 34.58128064522951], [-77.26227056670689, 34.58136271637291], [-77.2620868274368, 34.58149772972234], [-77.26202176980607, 34.581549785329265], [-77.26188096649585, 34.581673454385125], [-77.2618308662284, 34.58171326231577], [-77.26173007031893, 34.58179817637898], [-77.26157689040451, 34.58192895075849], [-77.26151402459507, 34.58200434559798], [-77.26132187830358, 34.582144557454406], [-77.2612858291504, 34.58217140177779], [-77.26111713725777, 34.582308605402616], [-77.26105359948666, 34.58235911972683], [-77.26091577096028, 34.58247056796556], [-77.26078842594308, 34.58257392600812], [-77.26073697708424, 34.58262774340377], [-77.26055295618055, 34.58279106844462], [-77.2603459725702, 34.582937238025096], [-77.26028003054546, 34.583005264499306], [-77.26013432493234, 34.58313064565087], [-77.26003065401716, 34.58322131255653], [-77.25998702922723, 34.58327524954989], [-77.25982418438934, 34.58339432287631], [-77.25958068219569, 34.58357110134088], [-77.25950949893732, 34.58365164472033], [-77.25935668594009, 34.58378928837805], [-77.25926855817261, 34.58386835547057], [-77.25923260811359, 34.583918783255726], [-77.25903746685933, 34.58408584035624], [-77.25883159950487, 34.58421938597442], [-77.25856741795192, 34.58445227696522], [-77.25848823463457, 34.58451396053057], [-77.25846391977652, 34.58454963354762], [-77.25835233680351, 34.58463731042728], [-77.25827319829463, 34.58470863733424], [-77.25824407049447, 34.58473041614171], [-77.25807608204158, 34.584861953507115], [-77.25799475985792, 34.58494646628095], [-77.25783531385325, 34.585093849214715], [-77.25775588326297, 34.585163337364385], [-77.25773241220077, 34.58521355907173], [-77.25759493273156, 34.58530122068179], [-77.25749332864143, 34.585378344572234], [-77.25733377419132, 34.585516276083254], [-77.25706096843713, 34.58575123152636], [-77.2569948002164, 34.58581044974864], [-77.25697073294029, 34.5858506554382], [-77.25681436888777, 34.58601087581046], [-77.25662958205893, 34.5862045062334], [-77.25657340631976, 34.58624862465525], [-77.25637389444128, 34.58637592474668], [-77.25621144389724, 34.58648988372411], [-77.25614837369739, 34.58649407159341], [-77.25594185840771, 34.58653770544125], [-77.25567866750623, 34.58658931530163], [-77.25555521443118, 34.586563493912344], [-77.2554595063305, 34.58663228781145], [-77.25513479769097, 34.58683991299272], [-77.25513071001427, 34.58684207720046], [-77.25513016319742, 34.586842724294904], [-77.25502619663104, 34.58706952062251], [-77.25512893932851, 34.58720950987283], [-77.25502277296948, 34.587404498635166], [-77.25480686618394, 34.58752359761865], [-77.25471801129277, 34.58773078193095], [-77.2545939009641, 34.587978175553054], [-77.25435767341352, 34.58812751844071], [-77.25415501085949, 34.588308994373165], [-77.25409485309183, 34.588410231932656], [-77.25406797966434, 34.58852714909142], [-77.2538747387965, 34.58878133912549], [-77.25384611510214, 34.58886199270131], [-77.25379194627347, 34.58893893140363], [-77.25364944630329, 34.58893350989217], [-77.25325399477708, 34.58911775274099], [-77.25304992901721, 34.58927065178683], [-77.2528179884243, 34.58938724976001], [-77.25266741781306, 34.589476207254876], [-77.2525913008502, 34.58951427447407], [-77.25245814893145, 34.58962166229793], [-77.25239877603599, 34.58967168575015], [-77.25237810709432, 34.589689099819395], [-77.25233863068384, 34.58972388930915], [-77.25213364919125, 34.5899055234228], [-77.2520282219057, 34.58999940250892], [-77.25190844436139, 34.59012346234959], [-77.25168265844917, 34.59033688846004], [-77.2516774502547, 34.590344717210264], [-77.25152009214553, 34.59056422691959], [-77.2512994232619, 34.590665790152855], [-77.2509664856956, 34.590903289509676], [-77.25088532919132, 34.59095478426783], [-77.25084047942467, 34.590982055004574], [-77.25078371339201, 34.59104084722924], [-77.25054117537107, 34.59130598970262], [-77.25040451681694, 34.59141906734249], [-77.25016650569665, 34.591630053991864], [-77.25015994967335, 34.59163548023793], [-77.25014256211718, 34.591648281959706], [-77.24990069206042, 34.59185073464795], [-77.24976216571321, 34.59192772803164], [-77.24950538165879, 34.59212442807018], [-77.24936440820807, 34.5922312587794], [-77.2492808547207, 34.59227326340547], [-77.2489652132874, 34.592533511317775], [-77.24885152958956, 34.59271079487298], [-77.248483419544, 34.59300420446493], [-77.2483688126258, 34.59314412022843], [-77.24823522228974, 34.59319886390246], [-77.24804247325049, 34.5933490312152], [-77.24784855759427, 34.59351226739291], [-77.2477705911631, 34.593568346070576], [-77.24751879447408, 34.593732709090794], [-77.24742720107098, 34.593794813994776], [-77.24719463426244, 34.59399432271401], [-77.24705979719425, 34.59412535271041], [-77.24689029867365, 34.594335373769006], [-77.24688112485788, 34.59444097314673], [-77.2467688536997, 34.59452390530334], [-77.2464668666278, 34.59479618835513], [-77.24640572331901, 34.5948582490804], [-77.24638678968577, 34.594873378026065], [-77.24632981038633, 34.59491257514696], [-77.24599505922508, 34.595150312247654], [-77.24580136461778, 34.595298604519414], [-77.24578617653981, 34.595308105592544], [-77.24559371597786, 34.5954506679414], [-77.24551407116714, 34.595511643750186], [-77.24530108926774, 34.595665039919425], [-77.24523351758175, 34.59572521370868], [-77.2451878672062, 34.59574701742492], [-77.24511765308813, 34.59579596622096], [-77.24491415448537, 34.59593572522113], [-77.2447798072553, 34.59604140090095], [-77.24463533601401, 34.59614943030504], [-77.24436645743167, 34.59633108060369], [-77.24424832179663, 34.59642649035476], [-77.24411286011622, 34.59657961108715], [-77.24408375089484, 34.59673697241436], [-77.24382771314146, 34.596951311957646], [-77.24375685551475, 34.597022907651876], [-77.2437180161926, 34.597069009970184], [-77.24362332630133, 34.59708233229439], [-77.24322785968955, 34.59745257131148], [-77.24302410443173, 34.597766498479324], [-77.24275976607652, 34.59788703285296], [-77.2425475572218, 34.59799996974083], [-77.24222104220851, 34.59828744010967], [-77.24222606934634, 34.598316323586005], [-77.24220226311616, 34.59835019635447], [-77.24212505268905, 34.598376387208475], [-77.24143944067461, 34.598725676743996], [-77.241196027317, 34.59876987024799], [-77.24093425092008, 34.59906299728941], [-77.24086006012269, 34.5991283982424], [-77.24084275549436, 34.599149998412976], [-77.24082306984738, 34.59917803971601], [-77.24063412909088, 34.5993692296917], [-77.24051604809824, 34.59947977127243], [-77.24034844826771, 34.599582386590185], [-77.24026070162324, 34.59975589118503], [-77.24021012877279, 34.59980715989623], [-77.24017991588624, 34.59983815589646], [-77.23997311779601, 34.600024152503885], [-77.23981928792213, 34.60017475145965], [-77.23963567895237, 34.60035718539717], [-77.23956515183963, 34.600463345296646], [-77.23921440741915, 34.60079450297149], [-77.23913073555632, 34.60087703978748], [-77.23910280808343, 34.60089825053774], [-77.23906109478715, 34.6009395975], [-77.23868094533904, 34.601336345215785], [-77.238423459642, 34.60156267766497], [-77.23806507518687, 34.601759144047335], [-77.23795942408617, 34.601807293630266], [-77.23781255823513, 34.60189779965657], [-77.237542041144, 34.60209341064756], [-77.23743532056486, 34.602180845557456], [-77.23713466114584, 34.6023884277053], [-77.23712146551742, 34.60240020768823], [-77.23687477637094, 34.60260800219249], [-77.23676697554431, 34.60271875717666], [-77.23651607083097, 34.60299412643955], [-77.23652352139567, 34.60305165913751], [-77.23643849807503, 34.60308396774822], [-77.23631316667544, 34.60319364813192], [-77.2359895992214, 34.60334205324075], [-77.2359435718363, 34.60347728199228], [-77.23581896992344, 34.60362235416703], [-77.23554787622194, 34.60391743278602], [-77.23537228742643, 34.60410774860228], [-77.2349844476451, 34.604344355683104], [-77.23492861828784, 34.60437049256655], [-77.23485858637666, 34.60440089368587], [-77.23440760932918, 34.60456443351789], [-77.23431211492573, 34.604762686947836], [-77.23410087892128, 34.604949001150324], [-77.23397966838614, 34.60504533325572], [-77.23382054498231, 34.60519527279268], [-77.2337123661564, 34.6052608150364], [-77.23351947779256, 34.605380014359625], [-77.2332838576339, 34.60553704965141], [-77.23316433749596, 34.605614871317634], [-77.23285531680796, 34.60581325691438], [-77.23284770987195, 34.60582557528746], [-77.23282652834655, 34.605844165117915], [-77.23261468262275, 34.60604287233101], [-77.23250402806909, 34.606158190093566], [-77.23215881532423, 34.6064016206025], [-77.23200456566572, 34.606371305548414], [-77.23199662398497, 34.60646547498393], [-77.23199808943734, 34.60652149390802], [-77.23163086943481, 34.60690797870547], [-77.23157316750759, 34.60704784395139], [-77.23151387705988, 34.607134428336764], [-77.23147664722272, 34.60721656236972], [-77.23135008854584, 34.60735718534854], [-77.23079608137016, 34.60770594434123], [-77.23073909225953, 34.60778034108078], [-77.23065630532035, 34.607801677134894], [-77.23058886546991, 34.60783639084091], [-77.2303756260699, 34.60798734472968], [-77.23025430189612, 34.60810150236412], [-77.2300560650911, 34.608197810800974], [-77.22990414627314, 34.60844745419727], [-77.22977236045078, 34.60864678457198], [-77.22955179455948, 34.60879145574886], [-77.22947986142331, 34.60893309972037], [-77.22945666654041, 34.60909323406487], [-77.2292849842151, 34.609211559339116], [-77.22896066063731, 34.60938605445833], [-77.2288429097215, 34.609475742046264], [-77.22881189193808, 34.609513717772266], [-77.22876879993981, 34.6095664760183], [-77.22858681020053, 34.60973163643243], [-77.22850609550682, 34.60983357039735], [-77.22835960064671, 34.60994938649126], [-77.22807859682382, 34.61011072304116], [-77.22782246696724, 34.610287856454924], [-77.22771135386802, 34.61036959174309], [-77.22766741777974, 34.61040239578244], [-77.22753595871683, 34.61053380731131], [-77.22744678251652, 34.610584392709754], [-77.22725514699611, 34.61069309816012], [-77.22703374789427, 34.6106927784346], [-77.22689860796613, 34.610776811661324], [-77.22690397010716, 34.610815130170906], [-77.22691864771366, 34.610920016065585], [-77.2270448396728, 34.610946115510146], [-77.22692524378053, 34.61105708161817], [-77.22671934493843, 34.611234022990715], [-77.22618691124616, 34.61153210961453], [-77.22597222816282, 34.61152419397702], [-77.22598296030444, 34.611647265014675], [-77.22595778525432, 34.61172011084808], [-77.22578251110345, 34.61201290197718], [-77.22569503972204, 34.6120959001332], [-77.22554607192978, 34.61224147692196], [-77.22542823356363, 34.61235520689645], [-77.22522536549434, 34.61253018897372], [-77.22504555774759, 34.61267224799256], [-77.22464255614098, 34.61294679731156], [-77.22463162545097, 34.61295468428234], [-77.22462738633459, 34.61295771117153], [-77.22461601628723, 34.61296828282183], [-77.22410251405907, 34.61338427783762], [-77.22385237172904, 34.613583202554175], [-77.22356267640833, 34.61381302367349], [-77.22318775217335, 34.61412278053615], [-77.22307967096896, 34.614210760577784], [-77.2230209470174, 34.61424161851433], [-77.22286900885486, 34.61434487759779], [-77.22265506271891, 34.614490503327644], [-77.2225712328297, 34.61450731369863], [-77.22240503946165, 34.61451841064586], [-77.2221281546329, 34.61454947530771], [-77.2220373648737, 34.61459845459119], [-77.2219831458547, 34.614631045271445], [-77.221815129011, 34.61472949038515], [-77.22177578688013, 34.61475375899605], [-77.22166052474508, 34.614841253528716], [-77.22165874089904, 34.614919111520194], [-77.22165538233395, 34.61507652830973], [-77.22172533089886, 34.61513998494298], [-77.22159709447362, 34.61552178792342], [-77.22156915493063, 34.61554108277352], [-77.2214993876519, 34.61559184379204], [-77.22126374487479, 34.615752649415924], [-77.22118100283524, 34.61580911350126], [-77.22096749541947, 34.615964938272235], [-77.22077454287495, 34.616105009851864], [-77.22054323717605, 34.61631679459339], [-77.22044014687017, 34.61639466058172], [-77.2204032171166, 34.616432167093116], [-77.22030819230352, 34.61647695555152], [-77.22011076760688, 34.616604332245345], [-77.21996647471946, 34.616701123281466], [-77.21981114505006, 34.616816353151535], [-77.21976553727879, 34.61685111325776], [-77.21965160519143, 34.61694049674069], [-77.21956124299773, 34.61699811660344], [-77.21953409228982, 34.617030155869436], [-77.2194588926035, 34.61708967396654], [-77.21933760710962, 34.617250320292285], [-77.21918196388951, 34.61731820171238], [-77.21893236498084, 34.61752767684933], [-77.21879602757356, 34.61763236541684], [-77.21874298604429, 34.61767472430559], [-77.21866816859313, 34.6177527331521], [-77.21844399733112, 34.61797669772114], [-77.21831965107276, 34.6181126534792], [-77.2181253340188, 34.61832308333243], [-77.21811625904273, 34.61834264534632], [-77.21808986416892, 34.61835810341456], [-77.2178945995127, 34.61855044712421], [-77.21775957782171, 34.618682842715806], [-77.21750902574041, 34.61892090352602], [-77.21755413063903, 34.618994919685136], [-77.21742341471588, 34.61904129773546], [-77.21727003617059, 34.61914374530144], [-77.21719928660781, 34.61920257460776], [-77.21702778841134, 34.61934684761366], [-77.21693832390815, 34.61941764352847], [-77.21681778299072, 34.619546738866006], [-77.21672525941568, 34.619636496360584], [-77.21668343234758, 34.61969801628855], [-77.21647192801088, 34.61985216725681], [-77.21627984790022, 34.61999648844921], [-77.21602988954157, 34.62020870747173], [-77.21594887222338, 34.620282214570274], [-77.21590732328978, 34.62032259751288], [-77.21577730439807, 34.620424977263696], [-77.21550015565887, 34.620617884248176], [-77.21528660242194, 34.62070126107237], [-77.2150309238373, 34.6208579504582], [-77.214887155311, 34.62100334781563], [-77.21478557375212, 34.62113304443665], [-77.21471745800194, 34.62123661119479], [-77.21445550311677, 34.621578333439686], [-77.21426941740533, 34.621736008682994], [-77.2140392021543, 34.62194827321017], [-77.21396697726416, 34.62201110202568], [-77.2138677715693, 34.622119192119555], [-77.21352849341753, 34.62244782310981], [-77.21333932313453, 34.62264070161178], [-77.21312570200841, 34.62288736373954], [-77.21267191190356, 34.6232237665667], [-77.21257467329173, 34.6232755067892], [-77.21250330570261, 34.62330955050113], [-77.21247292808509, 34.62337539829232], [-77.21206803540701, 34.62374652181261], [-77.21188656757357, 34.62397842352867], [-77.21178244610289, 34.62419532110657], [-77.21157175500886, 34.62444700644407], [-77.21140633506013, 34.62463696640161], [-77.21127828968108, 34.62475237783397], [-77.21112025910138, 34.62498314657665], [-77.21104112368344, 34.62507947278287], [-77.21097643142029, 34.6251413865841], [-77.2107352500185, 34.625380575140014], [-77.2106277474011, 34.62548873255443], [-77.21059603010677, 34.62551566461217], [-77.21060386497915, 34.62554354470942], [-77.21054177385155, 34.62574706109448], [-77.21053302608325, 34.62577957398501], [-77.21049903353274, 34.62595007539068], [-77.21053087425355, 34.62598188373879], [-77.21052741708408, 34.62630680203367], [-77.21068208408991, 34.626465200870015], [-77.21078632163642, 34.62694468395273], [-77.21044925376762, 34.627960306595696], [-77.20951838257227, 34.62825869444923], [-77.20946315997372, 34.62971332697178], [-77.2040505934093, 34.62971189008062], [-77.2032343137744, 34.630192546485674], [-77.20318391688988, 34.62978652216151], [-77.20300734751149, 34.62962938495624], [-77.19959731108865, 34.628188333967195], [-77.20086458482137, 34.62568886802794], [-77.20393241509595, 34.62479190149185], [-77.20578325850795, 34.62516432535273], [-77.20669483908546, 34.62461959927269], [-77.2077962046701, 34.62452168619745], [-77.2079772855323, 34.624445541333756], [-77.20842981606324, 34.6244017002595], [-77.2087179173908, 34.62436755751158], [-77.2088357311039, 34.624367869775824], [-77.20932247360642, 34.62432730076186], [-77.20971979634842, 34.62405524304247], [-77.20974485603514, 34.624034282282096], [-77.2097447315074, 34.62402804266575], [-77.2100712942084, 34.623678399273246], [-77.21015665903087, 34.62359546235812], [-77.21028235380973, 34.62345971064959], [-77.21040209594591, 34.62331514754579], [-77.21054392388032, 34.623154701706795], [-77.2108095568797, 34.62302010942153], [-77.21086385823259, 34.62294430421137], [-77.21096804602846, 34.622836015402406], [-77.21108894769316, 34.622726409656465], [-77.21114410645649, 34.62266019584431], [-77.21132509857408, 34.62250938914006], [-77.21136012437657, 34.6224831643289], [-77.21153372238851, 34.62234928232679], [-77.2117444303279, 34.62230684476091], [-77.21195103595142, 34.622149434453306], [-77.21201036154676, 34.622115803084384], [-77.21200141619741, 34.622091469816525], [-77.21199846002557, 34.622083428406775], [-77.21202021299895, 34.62201293430574], [-77.21203250393276, 34.62188702936368], [-77.21206040819021, 34.62186044769535], [-77.21212981632092, 34.62179666413332], [-77.21225748854432, 34.6216781061053], [-77.21230475925918, 34.62164407368031], [-77.21240810112084, 34.62156292777443], [-77.21256805234225, 34.62142919620024], [-77.21264690906511, 34.621367023038296], [-77.21279552457526, 34.6212344028589], [-77.21281602778087, 34.62121310804442], [-77.21287548058588, 34.6211575476884], [-77.21302466673083, 34.621045563792464], [-77.21314374431351, 34.62100332006266], [-77.21329635753122, 34.62086347130735], [-77.21340407366701, 34.62078820747419], [-77.21343001347887, 34.62074865475224], [-77.21351721765365, 34.62059722000325], [-77.21354942082023, 34.620564008732], [-77.21363582583928, 34.620489434144694], [-77.21375732915413, 34.62038231597254], [-77.21396197294825, 34.6202472510479], [-77.2141104830977, 34.620136973510796], [-77.21416438604503, 34.62008693135516], [-77.2143025272436, 34.620006086691845], [-77.21438524865584, 34.61995466331236], [-77.21443772804821, 34.619927146094426], [-77.2146003017583, 34.61981722596627], [-77.21478159223886, 34.61971863046639], [-77.21500255948978, 34.61951757398807], [-77.215013899847, 34.619486574339064], [-77.215104278283, 34.619272758245], [-77.21534205693487, 34.61916208064288], [-77.2157074552768, 34.61889818275938], [-77.21575342317945, 34.61887053606503], [-77.2157856061842, 34.61885521939701], [-77.21581568148926, 34.61881941955637], [-77.21605979591214, 34.61864119725264], [-77.21615117559459, 34.61856687927585], [-77.21631245611017, 34.61842547398791], [-77.21633862574203, 34.6184048852312], [-77.2164251168165, 34.61831420494378], [-77.21651910630732, 34.61823668998825], [-77.2165559377785, 34.618175262269105], [-77.21675392124403, 34.617988981930004], [-77.21686826642568, 34.61788980092793], [-77.21687702840435, 34.617880865349534], [-77.21689867804635, 34.617863422246444], [-77.21701022909464, 34.61777354571869], [-77.21706107700714, 34.6177325776819], [-77.21720421534135, 34.61760895269767], [-77.21724842472234, 34.61757049426703], [-77.21726500337385, 34.61755798803076], [-77.21729103581124, 34.617533025547495], [-77.21750384530301, 34.61734117129997], [-77.21761406137219, 34.61723826815198], [-77.21773780946558, 34.617123969087764], [-77.21779512042576, 34.617070590726065], [-77.21796726440954, 34.61693534577293], [-77.2179944026493, 34.61691912759913], [-77.21802707959613, 34.61689042685887], [-77.21826766512704, 34.6166944548791], [-77.21836644688815, 34.61659260577614], [-77.21849795945268, 34.6164769617883], [-77.21854978988392, 34.616426962046845], [-77.21871889624707, 34.61628424424315], [-77.21874181583756, 34.61626904414961], [-77.21876021247101, 34.61626199249561], [-77.21876488509521, 34.61624716102528], [-77.21906870372486, 34.61605067443205], [-77.21916783402246, 34.61599054854103], [-77.21921317710353, 34.615944243567895], [-77.2193505931523, 34.61586983574125], [-77.21938199767203, 34.61585232850674], [-77.2194059874253, 34.6158416298578], [-77.21961575651062, 34.61576266552478], [-77.2196457121252, 34.61575819584784], [-77.2198698917516, 34.6156772602378], [-77.2199048548027, 34.61565999555879], [-77.21993414362733, 34.61564765778653], [-77.22008650700107, 34.61549284946669], [-77.22014766892275, 34.61542883801884], [-77.22024499536496, 34.615326274322356], [-77.2203581262529, 34.615209775811664], [-77.22042619253631, 34.615137544498154], [-77.22056483477178, 34.61499041740628], [-77.22071535993734, 34.614783007477], [-77.22072622969516, 34.61476748058073], [-77.22073453243256, 34.61475435234162], [-77.22099078111677, 34.61455268860153], [-77.22109098031251, 34.61441396452512], [-77.22119774429805, 34.61433334998145], [-77.22148455843875, 34.61415500769308], [-77.22151653314012, 34.61413506306538], [-77.22154005836634, 34.61412469807274], [-77.22176100594623, 34.61402457634503], [-77.22197641977152, 34.61392347091122], [-77.22200160784728, 34.61390912010506], [-77.222081442278, 34.61369608189539], [-77.22207484621465, 34.61353984034217], [-77.22213270050169, 34.61346444783363], [-77.22217198215809, 34.61340318404889], [-77.2223547523065, 34.61326974713354], [-77.22237341703514, 34.613253644685486], [-77.22238137307356, 34.61324840068052], [-77.22257108399418, 34.613100752821495], [-77.2226390073863, 34.61303306045214], [-77.22282559082632, 34.61289168965542], [-77.22292234205169, 34.61281974906101], [-77.2229464187826, 34.61277717722591], [-77.22305054777387, 34.61272870919588], [-77.22316658616927, 34.61264430567794], [-77.22321556963348, 34.61260721812153], [-77.22333539972692, 34.61251732778589], [-77.22335775494449, 34.61250060296097], [-77.22336667047934, 34.61249356624306], [-77.22349713514498, 34.612393765969976], [-77.22372214421942, 34.61218899273544], [-77.22373139692515, 34.61217657915038], [-77.22373486770745, 34.612163643131765], [-77.2237659807768, 34.61214888432352], [-77.22392721583188, 34.61200602180452], [-77.22398250452729, 34.61196072162956], [-77.22411719035782, 34.61184628883338], [-77.22426462649383, 34.61174731212362], [-77.2244562810161, 34.61161865046172], [-77.2245458330932, 34.611570147348644], [-77.22456963348587, 34.611535708676755], [-77.22463716354298, 34.611479376399245], [-77.22484215346071, 34.61132154013325], [-77.22492753432071, 34.6112522433305], [-77.22503550575324, 34.61114669587815], [-77.22506393244964, 34.611103366082055], [-77.22511131171521, 34.61108699886051], [-77.22516897951822, 34.61104417814798], [-77.22521153360874, 34.61101179077975], [-77.22523028423792, 34.61099865682163], [-77.22531490445428, 34.6109393842958], [-77.22538236709991, 34.610892821018], [-77.22549468760852, 34.61081742436296], [-77.22552841706786, 34.61080059575309], [-77.22561821778413, 34.610745047130706], [-77.22572243909119, 34.61068398307909], [-77.22574739884095, 34.61066667329585], [-77.2258167348277, 34.610597893406606], [-77.22593135216074, 34.6105015867559], [-77.22599653429037, 34.61046993690326], [-77.22611938513181, 34.61034013001388], [-77.226264362243, 34.6102553957084], [-77.22647815974314, 34.61012460459686], [-77.22656365856912, 34.61007790129862], [-77.22660129237357, 34.610046307931015], [-77.22668711193359, 34.609977844839705], [-77.22686750735588, 34.609831638104474], [-77.22695234351691, 34.60976621739192], [-77.22715783560207, 34.60961526430751], [-77.227346894851, 34.60945975432004], [-77.22740615949547, 34.609402789229094], [-77.22754532620293, 34.609307551686], [-77.22756561268613, 34.60928185096335], [-77.2276012182555, 34.60918250309315], [-77.22767053574944, 34.6090902055703], [-77.22778168620667, 34.608961064890565], [-77.22792469638507, 34.60878015712862], [-77.2279449531769, 34.60873827010261], [-77.22798634454371, 34.608713690861514], [-77.22811396491792, 34.6085256708551], [-77.22812064002176, 34.608516454849486], [-77.22812490879356, 34.60850822771236], [-77.22822711297712, 34.60829966024457], [-77.22821652787962, 34.60828834221437], [-77.22823014466402, 34.60827311360168], [-77.22845862799282, 34.608071766783986], [-77.22896200374507, 34.60765737015555], [-77.2289778524734, 34.60764138034331], [-77.22898291407351, 34.60762787759203], [-77.22900852135979, 34.607626428400884], [-77.22944669182269, 34.60738301213722], [-77.22958047730592, 34.60732969583547], [-77.22974761971233, 34.60723076002055], [-77.22989826279954, 34.607127287676335], [-77.23025286217846, 34.60680707306486], [-77.2302607939374, 34.6067998916294], [-77.23026412632854, 34.606795314638056], [-77.23027869062047, 34.606783655095285], [-77.23050876611829, 34.606583776973], [-77.23064340610821, 34.60647527841395], [-77.2309140515483, 34.60638007251373], [-77.23107405248932, 34.606200942243284], [-77.23114504510583, 34.60610591244384], [-77.23126909462853, 34.60593672551191], [-77.23143353961746, 34.60586330064689], [-77.23172640793246, 34.605590227634124], [-77.2318009713198, 34.60553272874398], [-77.23181116585349, 34.60550813250343], [-77.23185981579691, 34.60547111857038], [-77.23217447989904, 34.605207564305616], [-77.2324503397422, 34.60508719621836], [-77.23262595143768, 34.60495176015623], [-77.2329274951946, 34.60470427351589], [-77.23298021824701, 34.60465763757473], [-77.2330064337615, 34.60463280296523], [-77.23309538441333, 34.60455219465252], [-77.23337817597482, 34.60430607151083], [-77.2334358702476, 34.60422222198163], [-77.2336026971254, 34.60408426568416], [-77.23374608903303, 34.60397593537815], [-77.23400825586496, 34.60379601174327], [-77.23440451116376, 34.603416875014716], [-77.23442758611789, 34.603357729214416], [-77.23449406921515, 34.603326480058854], [-77.23459769854827, 34.60325076066642], [-77.23490806683617, 34.60303734592668], [-77.23507095198485, 34.602937113466815], [-77.2351912297877, 34.602755124031646], [-77.23524064522336, 34.60271481919981], [-77.23526243637403, 34.60269516748774], [-77.2354707128175, 34.60249728478992], [-77.23563853599539, 34.60237232162013], [-77.23571287375455, 34.60228070484358], [-77.2358248890853, 34.60220939015843], [-77.235967981432, 34.60209709305211], [-77.23600710186184, 34.60206823006297], [-77.23602145356651, 34.60205554302822], [-77.23606399073948, 34.6020203589878], [-77.2362750051066, 34.601853678632416], [-77.23641149195342, 34.60174510010676], [-77.23651913550772, 34.60163725231403], [-77.23659128927963, 34.601576338120935], [-77.23677872829266, 34.601426331509245], [-77.23678354925337, 34.60142242519182], [-77.23678575290165, 34.60142062354875], [-77.23679173105012, 34.60141579633888], [-77.23705747523674, 34.60120834736458], [-77.23717477178683, 34.60110927658527], [-77.23751713594191, 34.60081582113469], [-77.23755968375922, 34.60079427808057], [-77.23758817412715, 34.60077883821882], [-77.23758541756989, 34.60075707838104], [-77.23792663676866, 34.60046330445855], [-77.23806408784074, 34.60034500803462], [-77.23811436763197, 34.60030160320923], [-77.23827010151535, 34.60016138649965], [-77.23830611991461, 34.60014347953345], [-77.23832270307301, 34.60011378867641], [-77.23854242334257, 34.59991136742919], [-77.23865936154968, 34.599800311542445], [-77.23877657977184, 34.59969415155993], [-77.23902578827568, 34.59948328979785], [-77.23903101868251, 34.599478534506005], [-77.2390333233187, 34.59947557802711], [-77.2390418961578, 34.599469733802174], [-77.2394219727367, 34.59916391135408], [-77.23956005928864, 34.59904888828869], [-77.2397706511545, 34.59886306392611], [-77.23980297235403, 34.5988454415434], [-77.23980716011778, 34.59883269154493], [-77.2398185411657, 34.598819225010644], [-77.24003072887396, 34.598614639230775], [-77.24011535630015, 34.59852445045278], [-77.24014528346169, 34.598492556638995], [-77.24026351223522, 34.598397313095674], [-77.24052341767423, 34.598208939977354], [-77.24055903062882, 34.598203220999025], [-77.24063388913498, 34.598190832277545], [-77.24061836892258, 34.59815250285823], [-77.24088363732159, 34.597974842643296], [-77.24091261760985, 34.59786036977215], [-77.2412665675823, 34.59776934942478], [-77.24140876868914, 34.59764434067317], [-77.24164105792244, 34.59766683698097], [-77.24176813556086, 34.59757320678868], [-77.2419618257071, 34.59747893338463], [-77.24197149904782, 34.59746237660434], [-77.2420322772169, 34.597358349742734], [-77.24205345138557, 34.59726861446928], [-77.24205374136494, 34.597247902839804], [-77.24206150373479, 34.59723891117574], [-77.24210429350076, 34.59712835016609], [-77.24214881323996, 34.5969878865628], [-77.24224275710904, 34.59690358727581], [-77.2421877979701, 34.59683034306964], [-77.24234547343463, 34.596505446069294], [-77.24252680239996, 34.59645462286751], [-77.24282422185748, 34.59627394160804], [-77.24284623330334, 34.59624412247718], [-77.24295144012967, 34.59617713649856], [-77.24318378729515, 34.59603504886291], [-77.24336933233766, 34.59591842162715], [-77.24369314493991, 34.59573214385702], [-77.24389398950281, 34.595619665062344], [-77.24410417969892, 34.59544040770941], [-77.24414140926618, 34.595403487528586], [-77.2441833532566, 34.595348645116374], [-77.24438592343255, 34.59518708006263], [-77.2444767116523, 34.59511442285017], [-77.24457542084654, 34.59496633725537], [-77.24478870638673, 34.59475466654637], [-77.2447915490827, 34.59474769268967], [-77.24479876023908, 34.59474353299311], [-77.24481460707051, 34.5947289344141], [-77.24518297932431, 34.594427947308944], [-77.24527259612978, 34.59431424673903], [-77.24541953646806, 34.594151144919145], [-77.2454903511185, 34.59404400519965], [-77.2456665411391, 34.593873936450386], [-77.24588242387631, 34.59373540900448], [-77.24595151408998, 34.59366071504931], [-77.24628649791646, 34.59345922535023], [-77.24629794704323, 34.59345233484987], [-77.24630109946236, 34.59345047852041], [-77.24630602818449, 34.593448179010046], [-77.24676866992493, 34.5932537452823], [-77.24679118245369, 34.59322906738938], [-77.24686348617789, 34.593025540987455], [-77.24703638599127, 34.5928380940627], [-77.24706130735578, 34.592812000170866], [-77.2470738718123, 34.59280644117631], [-77.24712464455982, 34.59277808105789], [-77.24744686235834, 34.59260015033055], [-77.24750593601021, 34.59255015893352], [-77.247556286265, 34.59237309652292], [-77.24778101314892, 34.59219979076922], [-77.24781750285146, 34.59216995872881], [-77.24784494035794, 34.59216016136916], [-77.24787552607847, 34.5921295947891], [-77.24814287654107, 34.591947956662935], [-77.2482279763268, 34.59187773866239], [-77.24843017618419, 34.59175008294758], [-77.24846014898453, 34.591737274727365], [-77.24846285270101, 34.591726026380044], [-77.24862455161056, 34.59157315775338], [-77.24870652208608, 34.59152100741012], [-77.24883319121841, 34.59140368658593], [-77.24895123230661, 34.591304608905645], [-77.24900766829121, 34.59125660641932], [-77.24916545013245, 34.591130212408665], [-77.24922897213973, 34.591090811626785], [-77.2492420460664, 34.59106692583893], [-77.24938893938142, 34.59093841517587], [-77.2494758149501, 34.59087458020948], [-77.24963976899778, 34.5907343295553], [-77.24973070145195, 34.5906589821056], [-77.2497737975128, 34.590623415869516], [-77.25004059526532, 34.59044771527266], [-77.25017453124144, 34.59032253928479], [-77.2505544143039, 34.59005160336667], [-77.25058547797232, 34.59003074881566], [-77.25060121533357, 34.59002052181397], [-77.25064255455119, 34.5899915044034], [-77.25101781443286, 34.589757985140665], [-77.25121734283306, 34.58959769633201], [-77.25131169860835, 34.58937358142781], [-77.25131556017179, 34.58936975887519], [-77.25131777759769, 34.58936747887418], [-77.25132750360999, 34.58935693556497], [-77.2514841328036, 34.58918679036949], [-77.2515457862412, 34.58915221588042], [-77.25168433637273, 34.58903620972896], [-77.2520381298955, 34.58873420222518], [-77.2520549056225, 34.588720961563055], [-77.25206193898966, 34.588714766001125], [-77.25208422388424, 34.588694584583514], [-77.25244717115928, 34.588400109584114], [-77.2526336420081, 34.588295186529216], [-77.25272512658378, 34.588109579966044], [-77.25276630007772, 34.588069960217446], [-77.25279134425128, 34.58804893402904], [-77.25302916944187, 34.587854985068724], [-77.25317574107345, 34.58773353773369], [-77.25327680036855, 34.58763881077357], [-77.25350576345996, 34.587449888808244], [-77.25353796714819, 34.587423701469795], [-77.25355158691173, 34.58741053751296], [-77.25360417338592, 34.58735693579855], [-77.25376479422094, 34.58720588798536], [-77.25390852648003, 34.58707072178259], [-77.25401134936786, 34.586989627386416], [-77.25424763492013, 34.5868047037311], [-77.25430166912838, 34.58676310952978], [-77.25433929067404, 34.58673719393803], [-77.25450954292076, 34.586619356948304], [-77.25458329822177, 34.586563311851286], [-77.25471250622508, 34.586471236782444], [-77.25487541229813, 34.58635063670561], [-77.25500545756452, 34.5862536942172], [-77.25511415669963, 34.58617119467153], [-77.25517918179705, 34.58613887846906], [-77.25523081659065, 34.58606915097553], [-77.25541056812116, 34.58592142173249], [-77.25549464035232, 34.58585232657363], [-77.25566596536463, 34.58570585491351], [-77.25573305726974, 34.58564876225515], [-77.25587143134791, 34.58553017591785], [-77.25593228551932, 34.58549114731366], [-77.25600576173825, 34.58541156177186], [-77.25613456162463, 34.58527139784388], [-77.25624490799191, 34.585205078454905], [-77.25641176903414, 34.58505754700858], [-77.25647925585402, 34.58500704621787], [-77.2566307681179, 34.58489099734336], [-77.25670379374961, 34.58484486142605], [-77.25683040524463, 34.58473992287], [-77.2568325559346, 34.58473716088858], [-77.25683891735348, 34.58473216551487], [-77.25696812143245, 34.584629995440835], [-77.25702681627843, 34.58458597918528], [-77.25717682645971, 34.584461415253735], [-77.25721809197371, 34.58442746838201], [-77.25724322879816, 34.584415977530696], [-77.25725394757782, 34.584393042841505], [-77.25739880153489, 34.58425955992609], [-77.25746669009756, 34.58419789421403], [-77.2575941860783, 34.58408192572436], [-77.25769922381416, 34.583980524747645], [-77.25776738537263, 34.58393011672287], [-77.257919489372, 34.58382663650694], [-77.25797442209425, 34.58378562598984], [-77.25801699173046, 34.583769863039706], [-77.25819896953257, 34.58365670975326], [-77.25825547894502, 34.583552961268715], [-77.25851940661443, 34.583368031583625], [-77.25855834081483, 34.583341125468436], [-77.25857261814697, 34.583331774690215], [-77.25860242853673, 34.583309879928706], [-77.25877205285684, 34.583180523599594], [-77.25883702371975, 34.58312738621323], [-77.25895362889763, 34.58302171128145], [-77.2589583267804, 34.5830175674195], [-77.25910301586116, 34.58291264770199], [-77.25932857162441, 34.58269758868813], [-77.25933150020934, 34.582694957475056], [-77.25933202187528, 34.582692676456816], [-77.25934008814234, 34.58268494124811], [-77.25949840587077, 34.58251203074595], [-77.25953551765136, 34.582475341484724], [-77.25960396650626, 34.58241074573611], [-77.25967787955891, 34.5823430277995], [-77.25978966397705, 34.582259669736246], [-77.26006984834973, 34.58205256118236], [-77.26007614095856, 34.58204654186548], [-77.26008091682563, 34.582044237521735], [-77.26008817333647, 34.58203936853689], [-77.26037811121645, 34.58183463224589], [-77.26049257220332, 34.581753113578], [-77.2605977028174, 34.58167116315734], [-77.26066204647103, 34.581621303271824], [-77.26069185959591, 34.581601735095326], [-77.26076509947988, 34.58153443109711], [-77.26087318422381, 34.58143438064661], [-77.26090601946939, 34.58140482953135], [-77.26099331256003, 34.58133929087888], [-77.26107095871451, 34.58128165730727], [-77.26118137990181, 34.58119082477994], [-77.26126368099597, 34.581124440789594], [-77.26131386860504, 34.58108341396738], [-77.26141902977858, 34.580996139977394], [-77.26144353490989, 34.58097578087189], [-77.26145514511488, 34.58096610569719], [-77.26148648170657, 34.58094159421549], [-77.2616523012926, 34.580812833427224], [-77.26171813152826, 34.5807617152599], [-77.26182077699538, 34.58066196412434], [-77.26183559294093, 34.5806472304543], [-77.26195305474063, 34.58054452786057], [-77.2620206602569, 34.580483207039265], [-77.26207415141178, 34.58043622019908], [-77.26221078440767, 34.58034295984274], [-77.26222279751997, 34.58033436616987], [-77.2622271365524, 34.58033042105999], [-77.26223335595091, 34.58032372885032], [-77.26239934516117, 34.580162766103896], [-77.26244880339317, 34.580112190185616], [-77.26253807029775, 34.58002589172604], [-77.26257514436014, 34.579990500896116], [-77.26269875508189, 34.57989618404979], [-77.26276890042888, 34.57983420663614], [-77.26295391774124, 34.57970707480934], [-77.26297971030243, 34.57969308074516], [-77.26298622265674, 34.579683129018925], [-77.26300859612435, 34.579665947644955], [-77.26317581370611, 34.579538875058276], [-77.26329861060344, 34.57947203348809], [-77.26341159348176, 34.57933129361593], [-77.26349439508715, 34.579251765358755], [-77.26354010862167, 34.579205640263254], [-77.26369616993608, 34.57904099421422], [-77.26370218531576, 34.579032441478326], [-77.26370885319415, 34.5790271031313], [-77.26372864148081, 34.57900871084753], [-77.2638899218917, 34.57885952724874], [-77.26396768101704, 34.5788176561577], [-77.26405622334141, 34.578722421429084], [-77.26421546687652, 34.578601477549306], [-77.2642758059187, 34.578545496715876], [-77.26446213673587, 34.57839182564473], [-77.26446872799667, 34.578388464336896], [-77.2644707072409, 34.57838588506263], [-77.26447768931662, 34.57838084373228], [-77.26467429758327, 34.57824268066659], [-77.26477112551447, 34.57817384524712], [-77.26487152052633, 34.57808947405552], [-77.26488640416497, 34.578065078007896], [-77.26492683884099, 34.57802889323599], [-77.2650039370343, 34.57795648775449], [-77.26504977445131, 34.57791939711396], [-77.26517283376977, 34.57781998803577], [-77.26524904051871, 34.57776800834431], [-77.26529971818269, 34.577744082427024], [-77.26534646418861, 34.57768799922333], [-77.26544368014889, 34.577612505268064], [-77.26554854126474, 34.57752798337568], [-77.26562981790475, 34.577449441187674], [-77.26565735418973, 34.577418707100186], [-77.26571665738506, 34.57736561950151], [-77.265776789196, 34.57731026594439], [-77.26581130060548, 34.57728223742356], [-77.26590330577923, 34.57720903030328], [-77.26600649852355, 34.57712723198105], [-77.26604514771796, 34.57709570266019], [-77.26613597143883, 34.5770248371651], [-77.266203314373, 34.57697366586713], [-77.26631120041003, 34.57688095741983], [-77.26640562026773, 34.57682498271596], [-77.26646115425707, 34.57677491602276], [-77.26656858540555, 34.576679070069915], [-77.26658244041597, 34.57666661996633], [-77.26658991573463, 34.57666028211856], [-77.26661115403174, 34.57664277818651], [-77.26677918498527, 34.576500005309356], [-77.26683430589975, 34.57645075830838], [-77.26694120686915, 34.576355773856285], [-77.26695621493782, 34.57634251096905], [-77.26696398292066, 34.576335752372565], [-77.26698731828898, 34.57631567081518], [-77.26708822074102, 34.57623505746564], [-77.26715776913827, 34.576179493536976], [-77.2673241477028, 34.57606632957629], [-77.26736945003552, 34.57603914999426], [-77.26740268702846, 34.57602411760732], [-77.26742801538381, 34.575989699346536], [-77.26766489716603, 34.57580906807311], [-77.26776254556185, 34.575731546195016], [-77.26786502774678, 34.5756422763422], [-77.26790774411276, 34.57559249575323], [-77.26794848180694, 34.575568307429656], [-77.268034148818, 34.575495774665015], [-77.26813825880173, 34.57540848482457], [-77.26819414454052, 34.57537934754683], [-77.26826298576943, 34.575309481178444], [-77.26833370865953, 34.57525370780023], [-77.26838882905975, 34.57521112207141], [-77.26845073897907, 34.575163855417934], [-77.26853306952371, 34.5751024093381], [-77.26859503549744, 34.57505736709545], [-77.2687229128416, 34.5749671891368], [-77.26873893613316, 34.57495689719122], [-77.26874385847671, 34.5749512345812], [-77.26875691328618, 34.57494073053781], [-77.26887750976684, 34.57484390901485], [-77.26893227439253, 34.574800243194275], [-77.26901269713771, 34.57473670416108], [-77.26907473587725, 34.574688175086834], [-77.26912864646668, 34.57464628776304], [-77.26914766518864, 34.57462948193334], [-77.26918941910287, 34.57459498717243], [-77.26927851568485, 34.574521935859515], [-77.26932038632053, 34.57448821298992], [-77.26941387835122, 34.57441474447738], [-77.26943008354483, 34.57440218603163], [-77.26952935350926, 34.57434545961249], [-77.26960914125395, 34.57431226207107], [-77.26974236820139, 34.57420630621671], [-77.26974233358627, 34.57420489989665], [-77.26974231483017, 34.57420413788415], [-77.26976655244775, 34.574153521649286], [-77.26979607846887, 34.57409129157767], [-77.26979907549175, 34.574089211242395], [-77.26990079394778, 34.57401860491644], [-77.26994610514524, 34.573985252523975], [-77.27005985332666, 34.573901460725175], [-77.27009128335959, 34.573878832234016], [-77.27010322617132, 34.57387004082322], [-77.27013081072346, 34.57384990162599], [-77.27020416380563, 34.57379551120658], [-77.27023609226953, 34.57377238273713], [-77.2703060237537, 34.573721801872786], [-77.27037856563348, 34.57366574952921], [-77.27047062129068, 34.57359461900471], [-77.27050596859574, 34.57357102632402], [-77.27051582542926, 34.57355870635949], [-77.27054373280622, 34.573536461737355], [-77.27065037800004, 34.57345145021989], [-77.27069812990999, 34.57341332888915], [-77.27082366773577, 34.573313157927394], [-77.27089404458277, 34.57325896985984], [-77.27091923794083, 34.5732369183942], [-77.27098327767396, 34.57318806978797], [-77.27105934889912, 34.57313009888011], [-77.27109141930814, 34.57310590963085], [-77.27117151237326, 34.57304197789274], [-77.27119422636379, 34.57302286788812], [-77.27120583505527, 34.57301282942864], [-77.27128209074408, 34.572946888369714], [-77.27131867698112, 34.572914817114864], [-77.2713746771417, 34.57285771347609], [-77.27142598829666, 34.5728054190445], [-77.27145469561567, 34.57277180032456], [-77.27153721331777, 34.572735481380974], [-77.27172227591086, 34.57271087517473], [-77.27174327913393, 34.57269985540569], [-77.27170794424354, 34.57259191534605], [-77.27175417801948, 34.57253181290818], [-77.27180104317335, 34.57248139990796], [-77.27183078584832, 34.57244908835466], [-77.27192019803151, 34.5723729324999], [-77.27192553447966, 34.57236905637022], [-77.27193927003685, 34.57235708377942], [-77.27201914743245, 34.57228801439352], [-77.27204579610454, 34.57226497139553], [-77.27209432602407, 34.57222065471261], [-77.27216464529107, 34.57215647975507], [-77.27220105119534, 34.57212119770675], [-77.27228513723608, 34.57204811718584], [-77.27229451751752, 34.572040025719765], [-77.27232125968722, 34.57201836171978], [-77.27239186812044, 34.571962308103146], [-77.27241895820812, 34.571940802127244], [-77.27246908811796, 34.57189652549316], [-77.2725416592528, 34.57183261297537], [-77.27257848782406, 34.57179968617258], [-77.27266561378713, 34.5717245221325], [-77.2727647770695, 34.57163677077682], [-77.27278850063456, 34.571616347552904], [-77.27283314927006, 34.57157640362051], [-77.2729097041337, 34.5715080404341], [-77.27294933112526, 34.57147231259728], [-77.27307107270691, 34.57136891141391], [-77.2731391511591, 34.571312537958576], [-77.27316434575349, 34.57129238752671], [-77.27321560993887, 34.57124938558731], [-77.27329299086657, 34.57118466499654], [-77.27332968306249, 34.57115339673366], [-77.27343741187067, 34.57107818209103], [-77.27353132410452, 34.57100413537734], [-77.27357995447113, 34.57097155169261], [-77.27367588871628, 34.570893207234846], [-77.27370755153107, 34.57086374646585], [-77.27372756832743, 34.570850074948176], [-77.27377410518791, 34.570811950553896], [-77.27392255022242, 34.570694892206966], [-77.27400297490504, 34.5706512971652], [-77.2740724249538, 34.57056090993981], [-77.27420720342954, 34.57043168083092], [-77.27428061263547, 34.570356157629206], [-77.27442532814231, 34.57021315637653], [-77.27454975349863, 34.5701113532658], [-77.27465062271389, 34.57002805016619], [-77.27469948649517, 34.5699990348302], [-77.274753379713, 34.56993832068862], [-77.27492029427899, 34.569780720479294], [-77.27501085710156, 34.5696912502961], [-77.27515771568827, 34.56956371145064], [-77.27519874873214, 34.56952976510024], [-77.27531467695802, 34.5694319373139], [-77.27538814848685, 34.56936962124941], [-77.27542829989696, 34.56934930790249], [-77.27546548825238, 34.56930405038961], [-77.2755791992869, 34.56921094601453], [-77.27566979163115, 34.56913261786771], [-77.27576929337398, 34.56905142036773], [-77.27579823220401, 34.56902487750372], [-77.27585183600462, 34.568975560460785], [-77.27591629374335, 34.568916321319435], [-77.27595046403142, 34.56888395953826], [-77.2760703472286, 34.568770793751106], [-77.27612972315087, 34.568714799223535], [-77.27614680378257, 34.56869876790076], [-77.27617776436921, 34.56866970926255], [-77.27630997762797, 34.56854652441565], [-77.27638080274235, 34.568481488223604], [-77.27646544366777, 34.56840607104402], [-77.27649365024322, 34.56838128980874], [-77.27650283990141, 34.568373244092236], [-77.27652094768807, 34.56835739036616], [-77.27662634286632, 34.5682651149008], [-77.27668023048942, 34.568218641212866], [-77.27675160433145, 34.56815712401724], [-77.27684214467857, 34.568077724524976], [-77.27686675271909, 34.56805594151554], [-77.27688335472817, 34.56804964273747], [-77.27688977113071, 34.568035461250744], [-77.2770529145717, 34.567892921614224], [-77.27712509876173, 34.567832970441884], [-77.27724385807522, 34.56773415417804], [-77.27738714306442, 34.567617892818], [-77.27756963567109, 34.56747226134384], [-77.27763269878967, 34.567422804916866], [-77.27767489301567, 34.56740483426115], [-77.27771919283974, 34.56735720394755], [-77.27792905475752, 34.567189136412814], [-77.27801772799909, 34.56710806712729], [-77.27819154546228, 34.56697409266054], [-77.27826806035665, 34.56692426657898], [-77.27842800118162, 34.56681578006217], [-77.27851571814246, 34.5667638937671], [-77.27865327822306, 34.56663971256992], [-77.27876473642453, 34.56654779069923], [-77.27880882069901, 34.56649730167301], [-77.2789577486825, 34.566393530838], [-77.279015069195, 34.56635214817695], [-77.27903693203062, 34.566333507963485], [-77.27918262115281, 34.56625761431799], [-77.27924414383898, 34.56622729339999], [-77.27936087628292, 34.56612328936893], [-77.27942503894727, 34.566059594391184], [-77.27946792340231, 34.56601386573846], [-77.2795344845321, 34.565942026666484], [-77.27956666631741, 34.56590378961015], [-77.27958791143907, 34.56587586898905], [-77.27966808693716, 34.565821926512584], [-77.27978902006903, 34.56572614598876], [-77.27983050704543, 34.56568884924918], [-77.2799160321958, 34.5656153120739], [-77.27997604900956, 34.5655639028442], [-77.28003092201433, 34.56552095161669], [-77.28007377916201, 34.56548653026785], [-77.28008635426019, 34.56547328060696], [-77.28017003908278, 34.565407850280046], [-77.28021317245836, 34.565365409286336], [-77.28028733864839, 34.565292433507715], [-77.28031897456876, 34.56525588720041], [-77.28034737902789, 34.56523699186915], [-77.28042068816802, 34.565166696697766], [-77.2804361322803, 34.56515163689895], [-77.28044394676036, 34.56514787081114], [-77.28053895240842, 34.56507879100227], [-77.28061377199559, 34.565043376907035], [-77.28076902100169, 34.56495482237073], [-77.28090760791122, 34.564830790643214], [-77.28094689137004, 34.56478443697988], [-77.28107913490025, 34.56462823646289], [-77.28109091210999, 34.56460952311796], [-77.2811045733354, 34.56459609922687], [-77.28114554784443, 34.56456631765211], [-77.28129997296716, 34.56444130233532], [-77.28136349814993, 34.56439526703771], [-77.28150952621849, 34.56429909199032], [-77.28152251845519, 34.56428992387194], [-77.28155871862523, 34.564264769005284], [-77.2816744118152, 34.56418402062438], [-77.28175840895318, 34.56412635167645], [-77.2818550560297, 34.56408231849552], [-77.28216953307867, 34.56391207989201], [-77.28251726488386, 34.56375801430006], [-77.28257983177674, 34.56373239495832], [-77.2826221433845, 34.563715447105395], [-77.28285080719652, 34.56362156067989], [-77.28296762081584, 34.563573953056384], [-77.28298984371558, 34.563564682200855], [-77.28302236560553, 34.563551579727616], [-77.28331097211444, 34.563434799435996], [-77.28339990914677, 34.56339464804768], [-77.2835099776322, 34.56334377008209], [-77.28369606946154, 34.56324964162187], [-77.28381054233701, 34.56320067185378], [-77.28405285645934, 34.563095677076525], [-77.2842210275304, 34.56301283469889], [-77.28440615762531, 34.56292193983029], [-77.28463196996671, 34.56280568634963], [-77.28482385232836, 34.56272446446166], [-77.28483704492857, 34.5627187453573], [-77.28485557871579, 34.56271112735584], [-77.28504187571578, 34.56264205662927], [-77.28537343086, 34.56250568541683], [-77.28545192213576, 34.56247243690598], [-77.2855101306188, 34.56244659772018], [-77.2858589337339, 34.562297702334845], [-77.28586212359068, 34.56229621905635], [-77.28586498507721, 34.562294750796546], [-77.2859013431652, 34.562277528473835], [-77.2862467889031, 34.56211320238488], [-77.28627276994494, 34.56210119857037], [-77.28630562382814, 34.56208667078084], [-77.28664658253189, 34.561911825626794], [-77.2866836659583, 34.56189558334148], [-77.28700861721302, 34.561752057149526], [-77.28709396885455, 34.56171485411933], [-77.28719402749778, 34.56166421288621], [-77.28750446556974, 34.561525883422654], [-77.28766341905225, 34.561454959128945], [-77.28774260039728, 34.5614215879272], [-77.28791469597672, 34.56134804894047], [-77.28817605170019, 34.561249097325195], [-77.28832426767127, 34.56119789077885], [-77.28841265729555, 34.561161559252575], [-77.28873466881842, 34.56101271175405], [-77.28913754309853, 34.56083236386164], [-77.28914502453216, 34.56082936732482], [-77.28914947155278, 34.56082794970121], [-77.28917498750023, 34.56081731388261], [-77.28948920372932, 34.560692743493846], [-77.28955499597411, 34.5606621437799], [-77.28963065245398, 34.5606249648136], [-77.28989032048628, 34.560489881826875], [-77.28996596136571, 34.5604529344637], [-77.29005260825491, 34.56041198076669], [-77.29031054327167, 34.56026595926551], [-77.29037723874629, 34.56023047629423], [-77.29041473793166, 34.56020925069892], [-77.29048181756102, 34.56017656804101], [-77.29066676279575, 34.56008356628875], [-77.29077454636972, 34.560035359834785], [-77.29114766435475, 34.55985120108083], [-77.29117184741055, 34.55984043941169], [-77.29117874413116, 34.55983606205547], [-77.29119365856432, 34.55982968843219], [-77.29144518874921, 34.5597174028682], [-77.29156870629555, 34.55966409704645], [-77.29171484782421, 34.55960030968404], [-77.29194697657273, 34.559488433156076], [-77.29196573198871, 34.55948063942835], [-77.29197105305732, 34.559476661546014], [-77.29198057826949, 34.55947203702698], [-77.29223815092737, 34.55935832011936], [-77.29236261484206, 34.559303135210826], [-77.2924965382039, 34.5592357347539], [-77.29269209016998, 34.55912519434763], [-77.29273237485545, 34.559102162594165], [-77.29276046123802, 34.55908486925372], [-77.29286266405276, 34.559037711709756], [-77.29315748085, 34.55890143146685], [-77.29325033815454, 34.558857570369796], [-77.29342266101122, 34.5587756134191], [-77.293508902925, 34.558735070979964], [-77.29355455374257, 34.55871566578586], [-77.29368050128109, 34.55866092207823], [-77.29375293318708, 34.558629386566345], [-77.29377784641785, 34.558617627883926], [-77.29395125554757, 34.55854550106781], [-77.29404491699984, 34.55849927208435], [-77.29433247123168, 34.55840031949464], [-77.29434442519687, 34.558396719418695], [-77.29434747835037, 34.55839550695366], [-77.29435733236376, 34.55839068156522], [-77.2946096685375, 34.55827747297411], [-77.29474461585713, 34.558206786100925], [-77.29485550639404, 34.55814877237836], [-77.29505302697982, 34.558052163763925], [-77.29510838208583, 34.55802350043246], [-77.29514210589849, 34.5580030819656], [-77.29526950996176, 34.5579425762036], [-77.29534068323665, 34.55790828768028], [-77.29536541408264, 34.55790025321616], [-77.2955388929528, 34.55782901840605], [-77.29578083359209, 34.557702963075506], [-77.29588123632536, 34.55765461491658], [-77.29593640605482, 34.557624174364335], [-77.29612545775925, 34.557525126361114], [-77.2961725269005, 34.55750138003111], [-77.2963338807311, 34.55742087008187], [-77.29638177529716, 34.557401530522725], [-77.29648754513357, 34.557356783487776], [-77.29673047328195, 34.557254803510034], [-77.29689798444859, 34.55719436271004], [-77.29692851295798, 34.55718260161189], [-77.29694260566009, 34.55717781772048], [-77.29712677581253, 34.55710093975989], [-77.29720598577532, 34.557057662020846], [-77.29734221549444, 34.55698937352588], [-77.2974523895906, 34.55692923598925], [-77.2975244866837, 34.55688739985632], [-77.29777734929041, 34.556771017455006], [-77.29792130010733, 34.55671176437324], [-77.29796896217763, 34.55668396096826], [-77.29805113677749, 34.55664286650635], [-77.29821993886924, 34.556557762302596], [-77.29831864143023, 34.55651370154081], [-77.2984852737132, 34.5564385582186], [-77.29861592425476, 34.55637848859229], [-77.29871552081885, 34.55633511941154], [-77.29874731668657, 34.5563177502921], [-77.29881563248125, 34.55628838145492], [-77.29899750880837, 34.556191168877234], [-77.29911249655771, 34.55615238048346], [-77.29941353998811, 34.55601690494373], [-77.29950928743318, 34.55597739689528], [-77.29954113631696, 34.555959072085386], [-77.29960525270023, 34.555930286078095], [-77.29980929693775, 34.555841243668766], [-77.29990591818222, 34.55580912505665], [-77.30009290547962, 34.5557309404807], [-77.300104207084, 34.555726084294186], [-77.30014421940811, 34.55570590332914], [-77.30030278979373, 34.55563057271345], [-77.30034860310514, 34.555607040449935], [-77.30041849872114, 34.555568794880294], [-77.30057507609405, 34.555468903716466], [-77.30070052571475, 34.55541530340349], [-77.30082964361443, 34.55534445317683], [-77.30108094081766, 34.555228936663454], [-77.30109177391846, 34.55522368648387], [-77.30109777483365, 34.55522058559645], [-77.30111465890292, 34.55521367347377], [-77.30135569749541, 34.55510379309455], [-77.30149475316239, 34.555037270417245], [-77.30159933656861, 34.554974018395875], [-77.30178816577396, 34.55488264783821], [-77.30185487587785, 34.55485004058923], [-77.30189230037145, 34.55482974629932], [-77.3020224597128, 34.554768773297035], [-77.30211582658907, 34.554728698673856], [-77.30228911763365, 34.554653105185], [-77.30249924701215, 34.55453580093847], [-77.30259132629801, 34.55446341091138], [-77.3026866983308, 34.55444399205468], [-77.30287487590122, 34.55435307718751], [-77.30291465256154, 34.554335656975326], [-77.30308324799957, 34.554278552817856], [-77.30318031516178, 34.554253405673975], [-77.30327088162821, 34.55418025924706], [-77.30348055552204, 34.55408087007136], [-77.30369640647602, 34.55400788983866], [-77.30387706244338, 34.553917098845716], [-77.30407460324187, 34.55382010689583], [-77.30419332049924, 34.55375303217757], [-77.3045643065749, 34.55357122844211], [-77.30467165928478, 34.5535221040941], [-77.3047095178866, 34.55350756713502], [-77.3047831157962, 34.55347361316308], [-77.3052311334574, 34.553264740494285], [-77.30546555000176, 34.55315678380494], [-77.30574440728913, 34.55301785022297], [-77.30619965306659, 34.5527806818697], [-77.30623792931101, 34.55276133858682], [-77.30626025273939, 34.55275663334798], [-77.30630220908292, 34.55274004531938], [-77.3068053042891, 34.55254079916706], [-77.30705374355932, 34.55240768795264], [-77.30729860479138, 34.55228417843608], [-77.30772444175416, 34.552072191707], [-77.30784872077483, 34.551995205801994], [-77.30800045747864, 34.55193878876706], [-77.30824526093105, 34.551829195465416], [-77.30834728471656, 34.55180117309854], [-77.3086411403608, 34.55169123703138], [-77.30889750203269, 34.55157227356407], [-77.30941161869333, 34.55134036675176], [-77.30942619452571, 34.551332889410276], [-77.30943493170939, 34.55132859777559], [-77.30946240096542, 34.551316131528935], [-77.30983213355734, 34.55113412350186], [-77.30994238672929, 34.551087415904355], [-77.31017861434603, 34.550985440827496], [-77.31022905946263, 34.55095132132695], [-77.31038359559801, 34.550805420344], [-77.31062703463166, 34.55072373741138], [-77.31068016684401, 34.55070142310607], [-77.3107179187038, 34.55066320094915], [-77.31084804556978, 34.55053474468324], [-77.31102566548346, 34.55046811696941], [-77.31110023491732, 34.550409130741066], [-77.31117047660932, 34.55035341349867], [-77.31130148646429, 34.55025870705859], [-77.31142576485581, 34.550149798207784], [-77.31148135226788, 34.5500978674535], [-77.31151820330848, 34.55005867634358], [-77.31162708231489, 34.54992040183011], [-77.3118111049155, 34.54977181023228], [-77.31181905746938, 34.54976546056868], [-77.31182760303285, 34.54975722132804], [-77.31198186863388, 34.54959631454868], [-77.31209265354858, 34.549486573167044], [-77.31215856658886, 34.549433932642906], [-77.31222951691657, 34.54936125542808], [-77.31234365024469, 34.5492756347321], [-77.31238553100881, 34.5491997086111], [-77.31248186102619, 34.54909450789627], [-77.3125053171245, 34.549060103293954], [-77.31263167347458, 34.54895477758667], [-77.31266364995645, 34.548934605687215], [-77.31267664795496, 34.54891309607552], [-77.31283230321174, 34.548770607375694], [-77.31283393403214, 34.54876910019176], [-77.31283535727182, 34.5487679009929], [-77.31285640420235, 34.54875015015189], [-77.31301007204328, 34.548620407225705], [-77.3130180173272, 34.54861031560453], [-77.31303257850188, 34.5486015186575], [-77.31318457797317, 34.548472943131365], [-77.31320713412286, 34.548453982665144], [-77.31323289699532, 34.548430552000866], [-77.31334161125272, 34.548327987847316], [-77.3133751930391, 34.548287393650426], [-77.31343369614778, 34.5482390429933], [-77.31354130514431, 34.54811985660144], [-77.31361446528837, 34.548043994896474], [-77.31362324062907, 34.54803554242225], [-77.3136350725366, 34.5480228645905], [-77.3137074531625, 34.54795233717755], [-77.31383623610759, 34.54781572360794], [-77.3138750555126, 34.54778552620624], [-77.31388635007856, 34.547760140283536], [-77.31398929043644, 34.54765231029226], [-77.31402561475403, 34.547610414668185], [-77.31403756240582, 34.547601595385714], [-77.31415815430842, 34.54747629644041], [-77.31418989687741, 34.54744198680296], [-77.31423885843132, 34.54738871548013], [-77.31439512413912, 34.547293500774025], [-77.31444724326516, 34.54718996935233], [-77.31451878849192, 34.5471052909285], [-77.3146412071286, 34.54697321361162], [-77.31469949658809, 34.546944863460496], [-77.31471889301682, 34.546906146108306], [-77.31480414902798, 34.54679490499814], [-77.31495063053919, 34.54662805412605], [-77.31498941001882, 34.54658918457385], [-77.3150441952408, 34.54653023942497], [-77.31524356152146, 34.54634117282866], [-77.31531940731826, 34.54625302844678], [-77.31544483137111, 34.54618752994301], [-77.31552799359734, 34.54610617924389], [-77.31564420621604, 34.54605640819351], [-77.31567696880352, 34.54603411491541], [-77.31576662605491, 34.545973963596154], [-77.3158436506307, 34.54592228743525], [-77.31589277747534, 34.54588071371294], [-77.3159560726368, 34.54581779278934], [-77.31601043428356, 34.54576215443356], [-77.31603337019047, 34.54573811527641], [-77.31604451992501, 34.54572726827472], [-77.31614642980617, 34.54566206547737], [-77.31624473517718, 34.54556015235436], [-77.31633910289906, 34.545507466221466], [-77.31640092962563, 34.54544051163185], [-77.3164222480334, 34.545423742078064], [-77.3164463637461, 34.54533261335825], [-77.31645120613489, 34.545313627268406], [-77.31645205585446, 34.545310762802075], [-77.31645356423988, 34.54530643822428], [-77.31644308618763, 34.54518964551387], [-77.31651572117192, 34.54501814789211], [-77.31650236831126, 34.54493631969167], [-77.31651190712768, 34.544846317322744], [-77.31665768131569, 34.54469099407524], [-77.31692343204719, 34.544709853097466], [-77.31718971954896, 34.54467955936898], [-77.31744261639889, 34.54470251941292], [-77.31753479207538, 34.54473014417589], [-77.31775281824196, 34.54475670613902], [-77.31783376056548, 34.544764863954356], [-77.31788782178019, 34.544771115188986], [-77.31807791589635, 34.5448020310229], [-77.3182232299291, 34.54489885506347], [-77.31824790900063, 34.54491477847845], [-77.31824736501906, 34.54493047769719], [-77.31826596821523, 34.54495527788089], [-77.3183465757314, 34.54503863191646], [-77.31834612171694, 34.54508180510497], [-77.31853464781094, 34.5450861274066], [-77.31861155090753, 34.545082018358045], [-77.31865829760763, 34.54508703617943], [-77.31880779963127, 34.54509478223439], [-77.31896073840842, 34.54509962803168], [-77.31900362093229, 34.545104851815495], [-77.31917392089116, 34.545149023219196], [-77.31919874119673, 34.545155410852026], [-77.31920584818211, 34.54515557271124], [-77.31939389693868, 34.54520446082691], [-77.31943442749062, 34.54522401731076], [-77.31954480307354, 34.545233718972455], [-77.31969115617352, 34.545271175156074], [-77.31978460120217, 34.54528577559517], [-77.31994519325112, 34.54532036778122], [-77.32008319746454, 34.54540118453437], [-77.32013321401647, 34.54541948276906], [-77.32017365960144, 34.54543757801257], [-77.32035708446972, 34.54549148720653], [-77.32056390866829, 34.54553845456016], [-77.3206817358909, 34.54556000708498], [-77.32085263316475, 34.54559934364242], [-77.32095438236081, 34.545629747291876], [-77.32126853497581, 34.5457205135932], [-77.32129724121165, 34.54574572096861], [-77.32134422308184, 34.54574818626716], [-77.3214943571297, 34.545782180671885], [-77.32173455900015, 34.54584545213425], [-77.32182405812301, 34.545829929011234], [-77.3221264012406, 34.54587820223217], [-77.32229160591028, 34.5459589568739], [-77.32256749199817, 34.54602350618978], [-77.32276253295234, 34.54608542851186], [-77.32290593926162, 34.54612148926192], [-77.32328142912615, 34.54617562304062], [-77.32335631556583, 34.54619202384032], [-77.3236885807285, 34.54623185493374], [-77.32378615681931, 34.54627653047184], [-77.3239611381429, 34.546312880554765], [-77.32403883064184, 34.546326749654426], [-77.32407767736433, 34.54638247052513], [-77.3241926343319, 34.54645173956844], [-77.32420689645238, 34.54652237929787], [-77.32430699181424, 34.546654946446665], [-77.32439330746854, 34.546740405725295], [-77.3244212486137, 34.54676145999556], [-77.32446161172585, 34.54675463147415], [-77.32456241358577, 34.54677931963911], [-77.32465680171659, 34.546802477224865], [-77.32468673007924, 34.54680199302779], [-77.32485261097742, 34.54682375622826], [-77.32501049020334, 34.546798450874405], [-77.32508868482346, 34.546885292762695], [-77.32524289725181, 34.546923507312286], [-77.32542976842814, 34.54696397898411], [-77.32547651652129, 34.54697599580318], [-77.32563335767796, 34.547015817695154], [-77.32567863189149, 34.54701707819996], [-77.3257273284531, 34.54703832919991], [-77.32590476543295, 34.54708736708046], [-77.32602381220971, 34.54710841412429], [-77.32615432218921, 34.547139941764144], [-77.3264099821302, 34.547182090859394], [-77.32641469388014, 34.54718269839661], [-77.32641791775248, 34.547181898595355], [-77.32673299471324, 34.54713861551152], [-77.32680857421644, 34.54712819330424], [-77.32719024197169, 34.54708041741595], [-77.3272022444441, 34.54708268929403], [-77.3275298101733, 34.5472689107719], [-77.32754331075249, 34.54729601575875], [-77.32754924954214, 34.54751093116834], [-77.32758442785915, 34.54753080622228], [-77.32771812469444, 34.54764642954654], [-77.32792461645946, 34.54770179573556], [-77.327972729655, 34.5477161106805], [-77.32823039152055, 34.54774162610266], [-77.3283640610682, 34.54777123547643], [-77.32863496637123, 34.54784451175668], [-77.32871168333416, 34.54786024876198], [-77.32875433401665, 34.54787189317311], [-77.32898058276797, 34.54793685413638], [-77.3291446622831, 34.547970207993565], [-77.32917989875367, 34.54798876008681], [-77.3292191663765, 34.5480053565519], [-77.32933945207127, 34.54803548078655], [-77.32942854510313, 34.54804201944904], [-77.3295355684241, 34.54804369890005], [-77.3298230120709, 34.547984989794045], [-77.32992937659506, 34.547992348826625], [-77.33025830310979, 34.54806210215136], [-77.33035488033093, 34.54806535550017], [-77.33035828201487, 34.54808643256689], [-77.33044363657285, 34.54815233304035], [-77.33062790999777, 34.548292489078314], [-77.33066641670544, 34.548312365999934], [-77.33070715472543, 34.5483130553163], [-77.33089801747595, 34.5483785160988], [-77.33092172151112, 34.54838509021181], [-77.33109744237491, 34.54841328563582], [-77.3311772808338, 34.54840861608063], [-77.3311787836964, 34.548458115767964], [-77.3314868245063, 34.54855254575753], [-77.33158647443234, 34.5485817640079], [-77.3317461128586, 34.548621374399026], [-77.33182348253393, 34.548643823348165], [-77.33187701834822, 34.54865689676092], [-77.33209356069696, 34.548680869240314], [-77.33226769360361, 34.54874054650089], [-77.33230797315834, 34.54876001885797], [-77.33238833552397, 34.54877386373725], [-77.33255228361539, 34.548816553944455], [-77.33294097409883, 34.54887131249425], [-77.33305114402397, 34.54881743425821], [-77.33312978537906, 34.548862396794924], [-77.333359778992, 34.54887901791179], [-77.33344232593934, 34.54887931388407], [-77.33374261343195, 34.54888151695219], [-77.33383502259028, 34.54887590691369], [-77.33402871675807, 34.54890643897832], [-77.3340338274316, 34.548906514420345], [-77.33422708826808, 34.54889970379548], [-77.33437287800405, 34.54888744518103], [-77.33451133751223, 34.54895826752093], [-77.33461670708007, 34.5490290446052], [-77.33474237809475, 34.54909061254459], [-77.33476742721433, 34.549166262845276], [-77.33500145570169, 34.54936853865649], [-77.3350108607858, 34.54937018929613], [-77.33501083877671, 34.54937608084919], [-77.33502843957251, 34.54939069601758], [-77.33528594220334, 34.54958134119147], [-77.33533174822244, 34.54961012754034], [-77.33538834865604, 34.54961563904534], [-77.33558056391469, 34.54965946662034], [-77.33558362603743, 34.54966021386397], [-77.3355849346288, 34.549659946230385], [-77.33578002702727, 34.549656303231735], [-77.33597810894264, 34.549603875786445], [-77.33617335503467, 34.54962576898389], [-77.33641635431285, 34.54975504292236], [-77.33656383044413, 34.549718381959934], [-77.33671160486091, 34.54971322813161], [-77.33676020685984, 34.54971553067645], [-77.3367831387801, 34.549718932268945], [-77.33687884045554, 34.549719518617835], [-77.33695643276255, 34.549719177627345], [-77.33713282443547, 34.54969575385185], [-77.33715300284686, 34.54970795920952], [-77.33726105235516, 34.54978696453345], [-77.33730672845448, 34.54980554093818], [-77.33734609072879, 34.54984714694451], [-77.3375242844947, 34.54988230801442], [-77.33753227312747, 34.549992778973596], [-77.33753192082064, 34.55011253410832], [-77.33753058217765, 34.55011887837492], [-77.3375968795357, 34.55022830552265], [-77.33767715218343, 34.55024934215697], [-77.33772907911711, 34.55026330740576], [-77.33790867821045, 34.55031554266068], [-77.33801003795261, 34.55034526313497], [-77.3381192446048, 34.550369499988676], [-77.33815966905127, 34.55036701888186], [-77.33816665267588, 34.55039118521889], [-77.33850939725995, 34.5504762859967], [-77.33870791279276, 34.550434975670214], [-77.33890101488552, 34.55051978152156], [-77.3389390530885, 34.55052492145961], [-77.33921952730968, 34.55053063938399], [-77.33929295746327, 34.55054924003145], [-77.33936511237792, 34.55058605531791], [-77.33942704370543, 34.5506150004909], [-77.33943498822347, 34.55063721024959], [-77.33948666695204, 34.550661777649864], [-77.33950957043085, 34.5506732416635], [-77.33952325562103, 34.55068572003826], [-77.33953511047353, 34.550689217115746], [-77.33955886244767, 34.55069628893556], [-77.33956018873454, 34.55069614552266], [-77.33958404102995, 34.55069559629322], [-77.33959510743513, 34.550690687330174], [-77.33958924979945, 34.550688385865804], [-77.33959294623347, 34.55068334759956], [-77.33958962270438, 34.55068056196602], [-77.33958438778178, 34.55068060115694], [-77.33958137760442, 34.550679257210184], [-77.33957831659694, 34.550677851968516], [-77.3395782312123, 34.55067781337893], [-77.33957533874664, 34.550676283528546], [-77.33957401775612, 34.5506718266988], [-77.33958427768948, 34.55066952160926], [-77.33958463170096, 34.55067005297678], [-77.3395854897456, 34.55066964807526], [-77.33958710279606, 34.55066888689497], [-77.33959358724589, 34.55066582695645], [-77.33960832606166, 34.550658871873736], [-77.33960939884186, 34.55066018824756], [-77.33961962189919, 34.55067186049851], [-77.33962559898345, 34.55067597291425], [-77.33963341492638, 34.55068280318677], [-77.33964465798859, 34.55069172286003], [-77.33968221888217, 34.55069465745619], [-77.33971422623415, 34.550719458755175], [-77.33973820765802, 34.550741625610016], [-77.3397652099656, 34.55077333061624], [-77.33977019839737, 34.550777760573524], [-77.33977847211658, 34.55077695601152], [-77.33979525791696, 34.5507690090248], [-77.33984109350176, 34.55073972254827], [-77.33987241057078, 34.55070044121938], [-77.3398736365883, 34.55069653183514], [-77.33987857560263, 34.5506927347], [-77.33991664424327, 34.55065229621217], [-77.34007236211788, 34.550609520112864], [-77.34007680993848, 34.550609593116256], [-77.34012575777817, 34.55062987943914], [-77.34028346504182, 34.55069116727945], [-77.34031070501403, 34.550719899132645], [-77.3403922602969, 34.55080555368545], [-77.34042389401712, 34.55082627695085], [-77.34046366098391, 34.550859356504], [-77.34057046862965, 34.550956737812655], [-77.34064754311169, 34.551013654749546], [-77.34065634194822, 34.55101649094075], [-77.34077290232773, 34.5510449431096], [-77.34085157617919, 34.55106316814894], [-77.3409583520695, 34.55109135974198], [-77.3410101938319, 34.55110677942113], [-77.34104666621369, 34.55111609423163], [-77.34121086812135, 34.55115803013104], [-77.34124204342012, 34.55115660057167], [-77.34125636963918, 34.55116189464762], [-77.34125950836598, 34.55117045244915], [-77.34143704483859, 34.55121338060756], [-77.34148937362274, 34.55122697382416], [-77.34157409528932, 34.5512476125865], [-77.34163219882853, 34.5512635661282], [-77.3417497349511, 34.55127135733393], [-77.3418277029561, 34.55129860142101], [-77.34189856163755, 34.5513233509233], [-77.34197682411906, 34.55134091052581], [-77.34202269313612, 34.55135589658539], [-77.34221582544467, 34.55139875808531], [-77.34221902055111, 34.551399035105916], [-77.34241442719383, 34.551394568282234], [-77.34254862360442, 34.551391036379485], [-77.34280767516658, 34.551367672229546], [-77.34291023371384, 34.55135882398421], [-77.34311722298402, 34.55134067909411], [-77.34320109924754, 34.5513331305867], [-77.34328551028581, 34.55131627104368], [-77.34335813640175, 34.55135821462868], [-77.34338886328351, 34.551472884440635], [-77.34348425402109, 34.551584891557226], [-77.34351640575008, 34.551624289161026], [-77.34358517379772, 34.551703733915446], [-77.34363429162786, 34.55177645396478], [-77.34363880349068, 34.55180747817465], [-77.34377783487969, 34.55186205525391], [-77.34381923479674, 34.5518778895346], [-77.34388890455486, 34.551893909333444], [-77.34397299376745, 34.551912142695336], [-77.34408378013404, 34.55191910493547], [-77.34416838852366, 34.55195201468261], [-77.34421361625454, 34.55196960665198], [-77.34430773961427, 34.551991023909906], [-77.34436345231094, 34.552006242182955], [-77.344497468432, 34.55205118125663], [-77.34453185564576, 34.55206282434682], [-77.34455825380454, 34.55207185200873], [-77.3447495103706, 34.55213733162472], [-77.34475149517912, 34.55213801115441], [-77.34475302918536, 34.55213860641265], [-77.34476380336265, 34.55214204289114], [-77.34494787228627, 34.55220243658199], [-77.34499375282249, 34.552196086576615], [-77.34514421282731, 34.552201333598475], [-77.3453507949873, 34.552167323582566], [-77.34553686526328, 34.55220036612798], [-77.34566700429932, 34.552250153744794], [-77.34578942527781, 34.552318186562374], [-77.34592472377432, 34.552407394865774], [-77.34595516139058, 34.55243415231456], [-77.34596377198054, 34.55245227700658], [-77.34603535524798, 34.55249415838909], [-77.34604593969219, 34.55250166021186], [-77.34611836202446, 34.552523566907766], [-77.34615772126705, 34.55252225952965], [-77.34626977122001, 34.55253066142759], [-77.34630141518159, 34.552534225181944], [-77.34631434674147, 34.55253793104556], [-77.34648896355954, 34.552513012786655], [-77.3465524802396, 34.552515742231286], [-77.3467073432425, 34.552522083612956], [-77.34676891448085, 34.552542569348844], [-77.34688046029804, 34.552565206358736], [-77.3470315673643, 34.55258521257524], [-77.34709836660934, 34.55259188904123], [-77.34725202111332, 34.552607782876976], [-77.347310097541, 34.552615843268775], [-77.34748863229109, 34.55269462023989], [-77.34755925319766, 34.552712359387485], [-77.34776708226443, 34.55275281645726], [-77.34787855099106, 34.552812459458465], [-77.34809127923538, 34.55288062720057], [-77.3482004977005, 34.5529076207804], [-77.3482686386084, 34.552923004287464], [-77.34844250966623, 34.552965878379325], [-77.3484639518263, 34.55296658710918], [-77.34848466748217, 34.552959243599496], [-77.34854340867582, 34.552937979497905], [-77.34866187261572, 34.55289687679535], [-77.3487742561789, 34.55285177935497], [-77.34885989156541, 34.55282288556215], [-77.34892502153681, 34.552800952828704], [-77.34901354872396, 34.55274791765302], [-77.34904449035074, 34.55273489663079], [-77.34905839475869, 34.552727833069916], [-77.3491368136911, 34.552655630873005], [-77.34920536554785, 34.55259790492213], [-77.34922601232087, 34.55257484459054], [-77.34926062994917, 34.55247055266731], [-77.34926173263422, 34.552468034743555], [-77.34926176551868, 34.55246737856533], [-77.34926182194747, 34.55246668270511], [-77.34926301090644, 34.55236706691822], [-77.34926327203003, 34.55234490648039], [-77.34926326641195, 34.55234475219266], [-77.34926325095691, 34.55234458151834], [-77.34926250201168, 34.552222451794115], [-77.34926294125644, 34.552220238729824], [-77.34926117722787, 34.55210513317312], [-77.34926012618897, 34.55210038328401], [-77.34925689150742, 34.55209310269241], [-77.3492218423279, 34.55201421448267], [-77.34919107149778, 34.55198790991978], [-77.34916210177983, 34.55193873449882], [-77.34907843623701, 34.55185684154934], [-77.34902735953717, 34.55179932127608], [-77.34900158889286, 34.55177035581014], [-77.34888647093473, 34.55166787930522], [-77.34888413258854, 34.551666327712745], [-77.34887525945118, 34.551659006009615], [-77.34877412775914, 34.551558266478466], [-77.34874329621343, 34.55153152547626], [-77.34869382844782, 34.55150837875267], [-77.34862382875073, 34.55145748389652], [-77.34857132746858, 34.55142027776826], [-77.34850079036481, 34.55136609682838], [-77.34849124748028, 34.55135415161398], [-77.34848537623358, 34.55134508342601], [-77.34844927815695, 34.551298985683154], [-77.34843846964787, 34.5512794395438], [-77.34841645080253, 34.5512494453933], [-77.34841182305593, 34.551243170179006], [-77.34841000284231, 34.55124063799899], [-77.34840565701576, 34.551234766932595], [-77.34839130806986, 34.55121551962244], [-77.34838126186635, 34.55120204389592], [-77.34838035986674, 34.551200833975294], [-77.3483707040367, 34.5511878818798], [-77.34838238233846, 34.551179838805375], [-77.34839467393724, 34.5511767515394], [-77.34838704747288, 34.55116749705826], [-77.34838273913, 34.551164338705], [-77.34837116987089, 34.55115721228216], [-77.34836452250491, 34.55115436956996], [-77.34836280611583, 34.551150765145216], [-77.34835867306411, 34.551143792044286], [-77.34835864046644, 34.55114373506469], [-77.34835863015778, 34.55114371540396], [-77.34835859865893, 34.551143671815524], [-77.3483550869136, 34.551138881245535], [-77.34835272319825, 34.55113691474495], [-77.34835065458792, 34.55113469229229], [-77.34834850310874, 34.55112987135372], [-77.34834677649228, 34.55112759073876], [-77.34834338366335, 34.55112510859817], [-77.3483355486181, 34.551124084799014], [-77.34834074552492, 34.551119459675796], [-77.34833943956788, 34.55111587426922], [-77.34833777230911, 34.551114269299276], [-77.34833488427864, 34.55111120030932], [-77.34832831409781, 34.55110634047344], [-77.34831125415187, 34.551105108012656], [-77.34831143481526, 34.55111225336915], [-77.34831030895035, 34.551112777859956], [-77.34830928655784, 34.55111256249214], [-77.34830202392472, 34.55111114644367], [-77.34830162247869, 34.551108182915215], [-77.3483095365173, 34.55110487588326], [-77.34831008796344, 34.551104540499225], [-77.34831058176519, 34.55110092642079], [-77.34831437871786, 34.55108887783342], [-77.34831110009316, 34.55107840956569], [-77.34831006882627, 34.55107489028348], [-77.34830979307307, 34.55107423640184], [-77.34830900920723, 34.55107296730757], [-77.3482851493703, 34.5510334049231], [-77.34826730169311, 34.551019145547635], [-77.34824783842282, 34.55098110265003], [-77.34822966292163, 34.55095470708489], [-77.34813836755144, 34.55091528815561], [-77.34811919031121, 34.55088718899192], [-77.34803932561334, 34.55085735733043], [-77.3480218463973, 34.5508519246535], [-77.34798246114262, 34.550815311774954], [-77.34795261064077, 34.55080228657168], [-77.34792534553856, 34.550780047773095], [-77.34791291570934, 34.55076411371703], [-77.3479026356118, 34.55071941907387], [-77.34789460248649, 34.55070554372262], [-77.34785255008799, 34.55066454465863], [-77.34780230090998, 34.550553975199094], [-77.34773565233293, 34.55049263371384], [-77.34773068948682, 34.55048430901144], [-77.34769059627916, 34.55039713389829], [-77.34754434729322, 34.550275268995456], [-77.34754014926813, 34.55026960455508], [-77.34753614485369, 34.55026748170437], [-77.34743997369995, 34.55010404064737], [-77.3474133416081, 34.55004033131858], [-77.34730914697549, 34.54996166755947], [-77.34728729992167, 34.54993605720698], [-77.34722243952507, 34.549861124829306], [-77.34720777077172, 34.5498250903092], [-77.34719610360035, 34.54980583984273], [-77.34716307403636, 34.54978263306655], [-77.34706913310235, 34.54966054935971], [-77.34699434392799, 34.549610979244406], [-77.34693948715284, 34.54951728291375], [-77.346814602931, 34.54939202126171], [-77.34678022399589, 34.54935863620695], [-77.34665859248301, 34.54924709561067], [-77.34658605914686, 34.54918008476591], [-77.34647570063046, 34.54900093516329], [-77.34644008959543, 34.54895626728329], [-77.34642879639807, 34.5489382488008], [-77.34639769365185, 34.54892093550031], [-77.3462687639687, 34.54881797319091], [-77.34624270100285, 34.548739847836664], [-77.34620661281653, 34.54869415221384], [-77.34614460604611, 34.54867055604577], [-77.34610838052909, 34.54857377974875], [-77.3460694534063, 34.54851995469503], [-77.34601587332732, 34.54845260437205], [-77.34587186267416, 34.548394203154814], [-77.34585601386186, 34.54830584409511], [-77.34578977349315, 34.54817032890454], [-77.34571367403692, 34.54808150379938], [-77.34568861293931, 34.548050143452], [-77.34565563010085, 34.547967445170194], [-77.34563498483455, 34.54794403994627], [-77.3455596660706, 34.547906350437586], [-77.3455023332861, 34.54786709085434], [-77.34538190660959, 34.54779948737812], [-77.3453288615382, 34.54764722937811], [-77.34530385516108, 34.547617189203564], [-77.34525186784853, 34.547532328647996], [-77.34518700393848, 34.54746424557683], [-77.34516212048908, 34.54742639940514], [-77.34510776851862, 34.54734162057065], [-77.34508140791046, 34.5473156019537], [-77.34507415004751, 34.54730827797885], [-77.34495386642996, 34.54721154168689], [-77.34494104794888, 34.547167629393215], [-77.34486907513256, 34.54710672148153], [-77.3446018351294, 34.54694156877265], [-77.34458734217515, 34.54677463453066], [-77.34448629575107, 34.54668070631665], [-77.34427508388629, 34.54670608062064], [-77.34410082566764, 34.546371483366734], [-77.3440896166932, 34.546363703703705], [-77.34408878741064, 34.54635672141997], [-77.34408360807704, 34.54634636864556], [-77.34382599781823, 34.546149708021396], [-77.34378793204775, 34.54610925251769], [-77.34371791382105, 34.54595152505544], [-77.34369189163314, 34.545940566456764], [-77.34368262048628, 34.54592551557324], [-77.3436890556678, 34.54590593835521], [-77.34363822450115, 34.54586049573626], [-77.34362259494489, 34.54582883546919], [-77.34359749103255, 34.54581535288848], [-77.34360578933185, 34.54580331207761], [-77.34358464884964, 34.545780355832946], [-77.34354340943507, 34.54576192835634], [-77.34352634012077, 34.545746711987185], [-77.34346322432131, 34.54575154743932], [-77.343382335715, 34.545723895697094], [-77.34334414554158, 34.54572096431171], [-77.3433309842119, 34.545705802653394], [-77.3431513387817, 34.545625487281804], [-77.3430915660881, 34.54552090627977], [-77.34294479457414, 34.54542812387091], [-77.34286831761288, 34.545356918226915], [-77.34281294347004, 34.54531616914003], [-77.34275195524906, 34.5452782595801], [-77.3427073622505, 34.545237344775245], [-77.34268363396106, 34.54521236151443], [-77.34260631951874, 34.545130540100075], [-77.3425876367557, 34.54510376167981], [-77.34258226886138, 34.54509064001759], [-77.34256034029998, 34.54507540105686], [-77.34229822790962, 34.54482284316016], [-77.34218044773692, 34.544672699267224], [-77.34217947366675, 34.54467134352535], [-77.3421771376651, 34.544668624811116], [-77.34204024446433, 34.54453533385653], [-77.34183479088192, 34.54450660393563], [-77.34178838244749, 34.544502376569895], [-77.34174644700212, 34.544516261756925], [-77.34174125266156, 34.544491058414735], [-77.34155297733065, 34.544421287009264], [-77.34139766943025, 34.544420925652275], [-77.34118870151943, 34.54432572167005], [-77.34126189462535, 34.54422774186483], [-77.3412299919913, 34.54418295515275], [-77.34120724561687, 34.54416674479889], [-77.34114242716224, 34.54412853061176], [-77.34113535178327, 34.54408857738201], [-77.3411114165975, 34.54406637813836], [-77.34105128445582, 34.54407681284812], [-77.3410140555074, 34.5440323161358], [-77.34092676854715, 34.54406461425557], [-77.34073920261898, 34.54407157213913], [-77.3406219056398, 34.54401314691506], [-77.34053014084297, 34.543930812736846], [-77.34037179624582, 34.54386684566791], [-77.34023569904826, 34.54373691266462], [-77.34022934591266, 34.543733274272384], [-77.34022965495257, 34.54372921559231], [-77.34022026805958, 34.543720709457375], [-77.34010983995091, 34.543624040111304], [-77.34008259655326, 34.54360295491448], [-77.33997228763275, 34.5435214156945], [-77.33991902805249, 34.54348535976866], [-77.3398494909972, 34.54346084996232], [-77.33970439462848, 34.54340639635212], [-77.33968295142547, 34.54331821378393], [-77.3396569184659, 34.54329987720011], [-77.33957765263386, 34.54326094154921], [-77.33956045052105, 34.54322725820274], [-77.33955214984786, 34.5432199005432], [-77.33955144688105, 34.54321471925631], [-77.33952622742633, 34.54319656241965], [-77.3395138080892, 34.54318857244723], [-77.33947407025786, 34.54316464387108], [-77.33947239101713, 34.54315957088022], [-77.3394639525229, 34.543155945726255], [-77.3394059217936, 34.54314952165959], [-77.33936581780014, 34.5431554017965], [-77.33931002649373, 34.54315341819601], [-77.33926733039527, 34.543170104604336], [-77.33921794383077, 34.54314027776204], [-77.33913578287346, 34.543112548877225], [-77.33908448969521, 34.54304362854752], [-77.33908007597803, 34.54303769803999], [-77.33907832641523, 34.54303534723453], [-77.33907427896408, 34.543029908848354], [-77.33899520865856, 34.542977558590096], [-77.33892198769792, 34.54293802623103], [-77.33893954175014, 34.542848867765926], [-77.33896886992402, 34.54275614809785], [-77.33900670541743, 34.54268102394623], [-77.33903654634818, 34.54264768792477], [-77.33903273134055, 34.542587168092794], [-77.33902274141401, 34.54255630864358], [-77.338997961969, 34.542492803521526], [-77.33891247852202, 34.542449758352575], [-77.3389298016562, 34.54234732320421], [-77.33891773430196, 34.542326593695094], [-77.3389123743957, 34.54231621594526], [-77.33882047136329, 34.54221817363081], [-77.33879058329103, 34.54216701695943], [-77.33874310434045, 34.54200803668793], [-77.33872996812039, 34.54198637268881], [-77.33872380156993, 34.54197620291271], [-77.33870680063032, 34.5419446843407], [-77.33863762912094, 34.541877244458504], [-77.33859551909217, 34.54183191514764], [-77.33851862593797, 34.54177195101765], [-77.33850082457703, 34.54164169075051], [-77.33844973517706, 34.54153704150044], [-77.33843399890463, 34.541471437627465], [-77.33841076806026, 34.54142023716601], [-77.3383804431718, 34.54133468543685], [-77.33836995939907, 34.54130369759455], [-77.33836661448903, 34.54128108030767], [-77.33837484535367, 34.54108355774839], [-77.33842404637294, 34.54105110090367], [-77.3384031931276, 34.54101207310093], [-77.33841771922455, 34.54080719327067], [-77.33840731752808, 34.540767618378396], [-77.33843617579134, 34.5406821300123], [-77.33843340573642, 34.540615260661305], [-77.33841269920454, 34.54056309769791], [-77.33840572798489, 34.54052748624798], [-77.33835066683804, 34.54036972045413], [-77.33831620929851, 34.54033215761752], [-77.33821437561413, 34.54018957946725], [-77.33820864089907, 34.5401028107716], [-77.33825378331514, 34.54003101129936], [-77.33824222046385, 34.53992718022796], [-77.33818918398273, 34.539860791535816], [-77.33820256499546, 34.53971584609533], [-77.33821508650038, 34.53961224856245], [-77.3382056701612, 34.53951078261859], [-77.33820558941754, 34.53947222425209], [-77.33818291410235, 34.539372058284], [-77.33817761855798, 34.53936565829245], [-77.33813844374411, 34.53928168780481], [-77.33810121054171, 34.5392115254721], [-77.33812015551172, 34.539136266732754], [-77.33805489822902, 34.53910355850215], [-77.33800034645027, 34.53903108941281], [-77.33799660027238, 34.53902699582322], [-77.33798946403112, 34.53901438698973], [-77.33794333450362, 34.53894662604014], [-77.33793153620364, 34.53891857703256], [-77.33790408635092, 34.53886715556166], [-77.3378711981982, 34.5388048462637], [-77.337870685036, 34.53876025398719], [-77.33784622479095, 34.53868602911855], [-77.33777397456063, 34.53859208505938], [-77.33773826634194, 34.53853802452702], [-77.33774489361235, 34.538455785253554], [-77.33761220260794, 34.53835319083701], [-77.33754449450693, 34.538283027291996], [-77.33750776774056, 34.538245071376316], [-77.33736940498815, 34.53811004285609], [-77.33735725899982, 34.5380219000063], [-77.33733911824282, 34.53795573548079], [-77.3372287377704, 34.53796013514449], [-77.33719660527946, 34.537922596348196], [-77.33713066706501, 34.53787210246932], [-77.33712851909686, 34.537868565988056], [-77.33713234505916, 34.537809429399566], [-77.33710560644741, 34.537733208400645], [-77.33712783198234, 34.53763291543305], [-77.33710464559513, 34.53756859565897], [-77.33684979191926, 34.537372138290486], [-77.3368288976994, 34.53737640427733], [-77.33683632358519, 34.537362367528424], [-77.33680853702973, 34.53734017369161], [-77.3371347458214, 34.537145021230245], [-77.33724919476037, 34.53707677017847], [-77.33726936190531, 34.53706771825288], [-77.33804644752449, 34.536552746742046], [-77.33812222910893, 34.53648932009385], [-77.33813847040636, 34.53644063899027], [-77.33850299822642, 34.53617788994212], [-77.3386944584577, 34.53596502352662], [-77.33881345210303, 34.535853920960946], [-77.33881389359368, 34.53583244227408], [-77.3386946151212, 34.53548223539693], [-77.33846388852919, 34.53547763755317], [-77.33840076234762, 34.535423643414056], [-77.3384147205057, 34.53538970270017], [-77.33836789738612, 34.535305961600436], [-77.3383631712233, 34.53525032644267], [-77.33834740171181, 34.535186500555625], [-77.33838445550735, 34.53512656466706], [-77.3384731199893, 34.535078771541706], [-77.33858467335983, 34.53508274501028], [-77.33866929757518, 34.53508301363487], [-77.3388536873068, 34.53511368032152], [-77.33885881309135, 34.535116673367895], [-77.33886454857357, 34.53512729888519], [-77.33888630765891, 34.53512248917029], [-77.33909727551134, 34.53517759375474], [-77.33923983286462, 34.53529460146332], [-77.33923827258624, 34.5353031808868], [-77.33925284298286, 34.53531131558347], [-77.33950115785458, 34.53535469628654], [-77.33964374405653, 34.53538270736509], [-77.33994793692554, 34.53539093180979], [-77.34047094064958, 34.53512586744284], [-77.34090177926136, 34.53486169161146], [-77.34077480663612, 34.53459252157429], [-77.34123886131111, 34.534304995329805], [-77.34172742744707, 34.53427004276327], [-77.3420258415375, 34.53422335402935], [-77.34219686658626, 34.534280461765974], [-77.34241842152177, 34.534221905492714], [-77.34248007549218, 34.534139651681755], [-77.34252805950682, 34.53409548156384], [-77.34268923152939, 34.53390792045612], [-77.34275652097581, 34.53381779426358], [-77.34279840225828, 34.53379782427154], [-77.34282178082162, 34.53375366854831], [-77.3429376115635, 34.533546921601], [-77.3428295750681, 34.533416150346454], [-77.34278193131982, 34.53335509401125], [-77.34262069582081, 34.5333476971902], [-77.34243996113155, 34.533289353567795], [-77.34231239878201, 34.53322767801379], [-77.34232861151699, 34.533144899750646], [-77.34205408125813, 34.53300097228349], [-77.34196427009432, 34.53300840287099], [-77.34184696646702, 34.532969372572936], [-77.34175170319673, 34.53292789799419], [-77.34166417394883, 34.53288699914832], [-77.34152877389502, 34.532855233091084], [-77.34127635281025, 34.53268280352914], [-77.34121726707812, 34.53260824910449], [-77.34116961233143, 34.532577179499036], [-77.34089013511155, 34.5324093230385], [-77.34084694805344, 34.532405764533046], [-77.34082583044574, 34.53238181616166], [-77.34068973550727, 34.53227446404873], [-77.34063220276198, 34.532164851590395], [-77.34056455924045, 34.53213674971344], [-77.34050508133814, 34.53208560978869], [-77.34038026110092, 34.532123796841496], [-77.34042103007316, 34.53219522964648], [-77.34030414394483, 34.53228752071711], [-77.34016615422577, 34.53223189368063], [-77.34020820160487, 34.53216503981068], [-77.34011044304398, 34.53217647272972], [-77.34005728020594, 34.53203789229759], [-77.34002687243408, 34.53200711089341], [-77.33977833958754, 34.531830747782585], [-77.33977387092261, 34.53179868632499], [-77.33972708406851, 34.53177965928461], [-77.33958197425366, 34.53173514493388], [-77.33933798240693, 34.531631223925686], [-77.33932074331854, 34.53162982043149], [-77.33928924263088, 34.53162357954307], [-77.33928433181357, 34.531590233363374], [-77.33923913648279, 34.53138596839304], [-77.33907516916503, 34.531332952933994], [-77.33895581393374, 34.531183227617646], [-77.33879662096822, 34.5310610348876], [-77.33861772743852, 34.530985716194515], [-77.33846701335429, 34.530827749408665], [-77.33818275158916, 34.53066468279374], [-77.33780083845612, 34.53084911040011], [-77.33778636021819, 34.530831408224444], [-77.33776745496046, 34.530851699587096], [-77.33739559752394, 34.53075501730117], [-77.33729003497668, 34.53068704661663], [-77.33730926816409, 34.530628611972986], [-77.33718120589148, 34.53045788189769], [-77.33714905109905, 34.53037691912537], [-77.33708264399877, 34.530227240370934], [-77.33701591580827, 34.53020027783486], [-77.3367738288837, 34.53017814547601], [-77.33662744002572, 34.53002532974408], [-77.33643224119061, 34.52995392469555], [-77.33636075169194, 34.52984143059115], [-77.33624353501062, 34.529653205127445], [-77.33621787754836, 34.52963344960682], [-77.33599709273942, 34.52949289221881], [-77.33586745047924, 34.52942274238159], [-77.33586080380933, 34.52942094639747], [-77.3358564613909, 34.529417935050404], [-77.3358341014664, 34.529413528911455], [-77.3357741108759, 34.529436165899575], [-77.33583462776808, 34.52944075049324], [-77.33561751085958, 34.52980488297743], [-77.3354545199229, 34.529824089104125], [-77.33527578464279, 34.529863553963196], [-77.3350653341704, 34.52967996027924], [-77.33482413408271, 34.52972260175811], [-77.33457576275637, 34.529794448061025], [-77.3345731961329, 34.52985368696122], [-77.33456725609436, 34.52991694449275], [-77.33449562385621, 34.53000383615774], [-77.33443370833429, 34.53001798026425], [-77.33427290762066, 34.52999776880926], [-77.33409277045934, 34.52992277361631], [-77.33409418190831, 34.52979219783521], [-77.33396927361214, 34.529695715625685], [-77.3334987207296, 34.529529319672164], [-77.33330537048948, 34.529672667316134], [-77.33312620180881, 34.5298169471045], [-77.33312059434381, 34.52983110362837], [-77.33319623967168, 34.52992928422499], [-77.33322933656243, 34.52996384004891], [-77.33328556557515, 34.53003884785669], [-77.33328708638923, 34.530040812039786], [-77.33329042992091, 34.53004755078013], [-77.33332192483454, 34.53013511713722], [-77.33332692524795, 34.53017998734978], [-77.3333489266563, 34.53027455309235], [-77.3333592182284, 34.53031991809432], [-77.33335013976495, 34.53033558273956], [-77.3333724681423, 34.53033820280619], [-77.33338159534631, 34.53034775352102], [-77.33341597566117, 34.53038731996047], [-77.33339492088793, 34.530441878257015], [-77.33345573269247, 34.53049112068586], [-77.33337064611254, 34.53046024286964], [-77.33334050410073, 34.530435011330916], [-77.33331514609674, 34.53040181867691], [-77.3332941211237, 34.53039747470625], [-77.33328265586783, 34.530382516920334], [-77.33325380125265, 34.53034943562285], [-77.33324472081452, 34.5303141859398], [-77.33321331085172, 34.530294053791216], [-77.33315344646056, 34.53026257617733], [-77.3330903701103, 34.5302110584142], [-77.3330633927538, 34.530193202833615], [-77.33301093007236, 34.530129071066895], [-77.33297331000361, 34.530083747897706], [-77.33294996258601, 34.53005453348823], [-77.3328992099399, 34.529991144591804], [-77.33288892029414, 34.52998005247827], [-77.33285867635757, 34.529951975683154], [-77.33277164416592, 34.52986792947186], [-77.33278423603961, 34.529817926703075], [-77.33270712101566, 34.52981128009691], [-77.3326453954575, 34.529848118473396], [-77.33256159271184, 34.52989813244861], [-77.33230907651873, 34.53004883564191], [-77.33213657858656, 34.53009717469793], [-77.33213679473576, 34.53020402843212], [-77.33220082449631, 34.53025928947265], [-77.33230147543291, 34.530376183284766], [-77.33232610451509, 34.530405834363584], [-77.33233538199644, 34.53042029059428], [-77.33242475544122, 34.530572524375415], [-77.33246334832899, 34.530646706663035], [-77.33249177062976, 34.53076696291049], [-77.33247845300757, 34.53088935077391], [-77.33247197394525, 34.53101944572758], [-77.33244663293877, 34.53113874200981], [-77.33252795204811, 34.531218419541446], [-77.33258206010117, 34.531307755159496], [-77.33260131039779, 34.53136131763133], [-77.33256970030706, 34.53142815818855], [-77.33266990332118, 34.53141442245129], [-77.33272076424129, 34.53146654972262], [-77.33278072693902, 34.531509836185045], [-77.33283462988055, 34.53155494807475], [-77.33273284475023, 34.53158722070552], [-77.33268048151712, 34.53160409348368], [-77.3326654048289, 34.53160819492522], [-77.33264753191816, 34.53159948759854], [-77.33240728579209, 34.53155102614616], [-77.33227705275446, 34.531427972712386], [-77.33225690963097, 34.53141083735388], [-77.33211245268507, 34.531291426519786], [-77.331888390474, 34.531261175866256], [-77.33184714476275, 34.531250812489965], [-77.33168652853936, 34.531248031588646], [-77.33156175097488, 34.531225392427054], [-77.33140631195364, 34.531232052518384], [-77.33110380030634, 34.53124048351982], [-77.3308824368193, 34.53125664970898], [-77.33059897019024, 34.53133573969127], [-77.33031406133227, 34.531441305582405], [-77.3300033380167, 34.53154251929749], [-77.32991815530198, 34.53158623480242], [-77.329817679494, 34.531579479971896], [-77.32954116650819, 34.531565872002034], [-77.32962995212887, 34.531721489241455], [-77.3296683168196, 34.53178300571176], [-77.32962115713171, 34.53185324268634], [-77.32951835116067, 34.531898741138015], [-77.32940959306055, 34.531998634530765], [-77.32919495648038, 34.532095870673885], [-77.329164510071, 34.53212770334037], [-77.32895788693082, 34.532374765247724], [-77.32871620549746, 34.53263244109451], [-77.32854459807547, 34.5328194946264], [-77.32848435982315, 34.53293246546107], [-77.32817475595704, 34.53313622855113], [-77.327917115626, 34.533234222870554], [-77.32785294463807, 34.5332680446133], [-77.32776813227296, 34.53343505038003], [-77.32751880121731, 34.53348205928537], [-77.32736479316239, 34.53358302682787], [-77.32728101061875, 34.533694671055876], [-77.32711580998826, 34.53393067917004], [-77.32695798682937, 34.53403420473505], [-77.32664720610192, 34.53417579657511], [-77.32602873291125, 34.53457535493894], [-77.32552498747395, 34.53481589341871], [-77.32425833661641, 34.53549838518671], [-77.3240959099464, 34.535621461337094], [-77.32341461540986, 34.5359401404478], [-77.32234743552523, 34.53640645180821], [-77.32200026881105, 34.53658826209465], [-77.3215680667781, 34.53686421963579], [-77.3200885389387, 34.537644632850125], [-77.31963910540247, 34.538120623157894], [-77.31938594397914, 34.53829617249843], [-77.31915948093919, 34.53843666924898], [-77.31829933996342, 34.538760675867934], [-77.31757479734723, 34.53905194518492], [-77.31632797943277, 34.53957552559574], [-77.31610109522059, 34.539677488464164], [-77.3159890259896, 34.53971262643691], [-77.31550879984135, 34.53998862137358], [-77.31420381948719, 34.54074088160111], [-77.3128078705765, 34.541440548060976], [-77.31141472648926, 34.54223962308649], [-77.3103480961349, 34.54283785801124], [-77.30962471479998, 34.54324783927847], [-77.3085271331974, 34.54393841426764], [-77.30803113100663, 34.5442345541061], [-77.30719730907558, 34.544803615983255], [-77.30675702029629, 34.545063740161304], [-77.30643650753088, 34.54526382507266], [-77.30501534567598, 34.546096059481286], [-77.30491699676494, 34.54615501009904], [-77.30484404016764, 34.546199802025505], [-77.3043867120326, 34.54646751303123], [-77.30325244862136, 34.54709704802183], [-77.30304312790018, 34.547229783338516], [-77.30283427240785, 34.54738832330253], [-77.30132141790808, 34.548378687014406], [-77.30006411368576, 34.549105362998304], [-77.2993907743705, 34.549425791278736], [-77.29875387332106, 34.54993228980431], [-77.29769659827699, 34.55058811436014], [-77.2968748382944, 34.5511468134557], [-77.29610410044631, 34.55179997047378], [-77.29527602664771, 34.552341458535444], [-77.29514580932128, 34.55240835490347], [-77.2942022859225, 34.55286112428274], [-77.29368474957893, 34.55321587000451], [-77.29285610012275, 34.55371599036748], [-77.29239284529108, 34.55396728295081], [-77.29209088621143, 34.55419798994211], [-77.29055761937781, 34.55502483698793], [-77.29051927302827, 34.55504219327046], [-77.29049990667473, 34.55505685938834], [-77.29045831618798, 34.55507949512108], [-77.28757889416357, 34.5567724993177], [-77.2872057447126, 34.557008305105775], [-77.28663684847622, 34.557377598195934], [-77.28501711232624, 34.558540160978325], [-77.28390266813429, 34.55932784092439], [-77.28242666292638, 34.560305531788764], [-77.28225259803867, 34.56042299061405], [-77.28196365512316, 34.56061393441068], [-77.28060532594787, 34.56139885500873], [-77.27952192649559, 34.562046169307784], [-77.27895701986012, 34.562416414842744], [-77.27802565403243, 34.56303964912628], [-77.27730642623187, 34.563528100270865], [-77.27689349344257, 34.56380846101624], [-77.27636551831047, 34.56419013625946], [-77.2756576507572, 34.564654016251275], [-77.27541628124825, 34.56479456057466], [-77.27490429774818, 34.56524309222512], [-77.27454144900551, 34.56550896269479], [-77.2743523327709, 34.565679420363836], [-77.27385704770869, 34.56603648757882], [-77.27325008684473, 34.5663501320345], [-77.27235754159008, 34.566946419230476], [-77.27207882494356, 34.567083669912684], [-77.27199586476996, 34.567194211076156], [-77.27187938829735, 34.56734090959969], [-77.27117657343395, 34.56807247331006], [-77.27065193630085, 34.56844334243719], [-77.26993199847179, 34.568917296327825], [-77.26979909966371, 34.56899921831215], [-77.26953937410613, 34.56918620019449], [-77.26898700006396, 34.56959132441515], [-77.2682855297167, 34.57015711510725], [-77.26753791579489, 34.5706143862428], [-77.26737236648864, 34.57078406713856], [-77.2667766916806, 34.57131591320704], [-77.26649825272847, 34.57147529649684], [-77.26568829872753, 34.57191506835695], [-77.26518044069401, 34.57231431268833], [-77.26405469925548, 34.57309098510027], [-77.2639848441442, 34.57316294914503], [-77.26379302475323, 34.573309764798026], [-77.26280713814324, 34.57401297382343], [-77.26247955707157, 34.57431891246997], [-77.26153985002662, 34.57500393716978], [-77.26080815835695, 34.575461247258026], [-77.26038238581042, 34.57570753888936], [-77.25959965606481, 34.57635009223272], [-77.25930315534036, 34.576565295505766], [-77.25919345310439, 34.57665403241862], [-77.25891215226117, 34.57686587465541], [-77.25809870066342, 34.577413181168026], [-77.25775235410637, 34.57800125880124], [-77.25649628298675, 34.57830882070546], [-77.25508659675504, 34.57906143137618], [-77.25381772522442, 34.579759614634746], [-77.25301381218627, 34.580286076484285], [-77.25232773641372, 34.5807295789022], [-77.25210689457526, 34.580866966849655], [-77.2516161378245, 34.58128976076183], [-77.25126892867493, 34.58158888385957], [-77.25074273233926, 34.58228272518083], [-77.25051603333337, 34.58247227539151], [-77.25010543965762, 34.5828446659671], [-77.24931624489116, 34.583643067868884], [-77.24797081008234, 34.58415715905515], [-77.24740073972396, 34.584568403895844], [-77.2461676968058, 34.58539268558084], [-77.24505956790165, 34.58581316695003], [-77.24331820567227, 34.58619533644813], [-77.2427373755218, 34.58657285266913], [-77.2421333331879, 34.58729872626136], [-77.2420126541868, 34.58745842807508], [-77.24186717533598, 34.587533936150315], [-77.24156247249573, 34.58782855260004], [-77.24048691654936, 34.588935514335205], [-77.23793599095222, 34.58833041291645], [-77.23615070153875, 34.588881612847004], [-77.2349878558592, 34.589302186280996], [-77.23377058322859, 34.59042866652482], [-77.23362919184194, 34.59056814118259], [-77.23355339706801, 34.590655608091794], [-77.233266201397, 34.5908926829966], [-77.23186216728928, 34.59178057509099], [-77.23087406420697, 34.592236174055586], [-77.2284539375314, 34.593735550137744], [-77.22816077703249, 34.593746776934125], [-77.22682733020032, 34.59361744254536], [-77.22652549479014, 34.593778390205614], [-77.22611217852054, 34.594553788776324], [-77.22599344235503, 34.594808159220484], [-77.22579724963046, 34.59560633184557], [-77.22524828537605, 34.59641503522983], [-77.22478595896027, 34.59741191055457], [-77.22434277001663, 34.59836455513587], [-77.22394091322019, 34.59923065946424], [-77.22352018005803, 34.60013737835931], [-77.2235184693328, 34.600142375262855], [-77.2234579831698, 34.60107797717379], [-77.22341599915917, 34.60165013070208], [-77.22328664562627, 34.60200718080192], [-77.22318460798697, 34.60246883886508], [-77.22284227990414, 34.60291481124184], [-77.22205540588548, 34.60409411637596], [-77.22152328130865, 34.60469608445155], [-77.22014933690538, 34.60765827172346], [-77.21884203634399, 34.6082552188456], [-77.21768289296537, 34.60967213990306], [-77.21748806424624, 34.610033756172314], [-77.21723461487338, 34.61032507678391], [-77.21635872479928, 34.61182996330169], [-77.21501297616946, 34.6136087007784], [-77.21501245225234, 34.61360959013861], [-77.21384553159689, 34.615402362807274], [-77.21249926561492, 34.61663251493705], [-77.21211718369646, 34.617151242023], [-77.21139408136332, 34.61790128742428], [-77.2107447201337, 34.61892824029039], [-77.20952791229779, 34.61924922768447], [-77.20810825308477, 34.62059914008349], [-77.20811306099074, 34.62060569464358], [-77.20811056827564, 34.620618428333], [-77.2080889200192, 34.62061548348851], [-77.20803875773622, 34.62059981949076], [-77.20618924480083, 34.61984718937536], [-77.20515949423259, 34.619737920620096], [-77.20366126084026, 34.61928938259122], [-77.20112774652863, 34.621034914446426], [-77.19998932487108, 34.62128267517039], [-77.1964497988855, 34.621568486304014], [-77.19400764477861, 34.62176725513636], [-77.19141993392915, 34.62417859655902], [-77.1892271402478, 34.624767523020274], [-77.18912826249873, 34.62622343785512], [-77.19093320907399, 34.627830120558016], [-77.19377871604456, 34.63036274816484], [-77.19561989894964, 34.63189837249991], [-77.19618571070288, 34.632401914384815], [-77.19630202836706, 34.63286989169778], [-77.19776191020118, 34.63432978682535], [-77.19888350191741, 34.634332321449605], [-77.20028582997315, 34.63600814650073], [-77.20323441340273, 34.63469310809048], [-77.20323444769551, 34.633418310254335], [-77.20931232722586, 34.631516775656465], [-77.20955788676083, 34.63391822390154], [-77.2075432860065, 34.636973030024926], [-77.20699611524682, 34.63748671308308], [-77.20906171456865, 34.639344199301426], [-77.20906173600346, 34.63987785557711], [-77.20857271004205, 34.64138228454226], [-77.2092711534609, 34.64220462105509], [-77.21002629937048, 34.64336634750251], [-77.20982028858467, 34.64336634750631], [-77.20706945957703, 34.64336633806168], [-77.20628821347435, 34.64331951247588], [-77.20361398387391, 34.642757217013255], [-77.20045859232499, 34.64274581185113], [-77.20020945983903, 34.64265259616357], [-77.19983027664777, 34.64257656813858], [-77.19771946831962, 34.642113744741664], [-77.19736051157322, 34.64177726028186], [-77.1957661004802, 34.641374330827304], [-77.1932833070197, 34.640172987890644], [-77.19205094558153, 34.63893607047069], [-77.18689680409523, 34.63881093323493], [-77.18565093306229, 34.638245079433304], [-77.18337339005524, 34.63806456131876], [-77.18500553610146, 34.639517498559236], [-77.18733099634333, 34.64158724275226], [-77.18965657264816, 34.64365693754346]], [[-77.42726645501145, 34.75823022538552], [-77.42728927697492, 34.758084346998075], [-77.42719900280056, 34.75796526340287], [-77.42708496714074, 34.75785952358831], [-77.42704300351606, 34.75782755808191], [-77.42690327434754, 34.75787909705444], [-77.42673819493443, 34.75770359999205], [-77.42662791432699, 34.75772259347232], [-77.42648850879043, 34.75766186717495], [-77.42637050109846, 34.7575041188347], [-77.42623858614527, 34.757635366841235], [-77.42604981498275, 34.757504142305045], [-77.4259734706242, 34.757430256899234], [-77.42568420654243, 34.75747766614895], [-77.42560526217781, 34.75749592852238], [-77.4254801333349, 34.75751824558266], [-77.42539421163663, 34.75755332904635], [-77.42530241110077, 34.75760186762774], [-77.42521094020103, 34.75763767327272], [-77.42498443172171, 34.75783031110163], [-77.4249642131567, 34.75785111088793], [-77.42486055463458, 34.75807430184332], [-77.42449778653062, 34.758434059590286], [-77.42444034619353, 34.75843727515234], [-77.42391794839614, 34.758221601744296], [-77.42379563571663, 34.75813201569966], [-77.42366150783651, 34.75799978025653], [-77.4236026990884, 34.75797245684711], [-77.42337592798853, 34.757878574048384], [-77.42289176958333, 34.757386331401506], [-77.42288513748139, 34.75737890664957], [-77.42288141763993, 34.75737152086189], [-77.42275301037746, 34.75698762408585], [-77.4225536420229, 34.75670910189331], [-77.42250021117313, 34.75664665832741], [-77.42245752377949, 34.75662066940755], [-77.42238593068156, 34.75657708174826], [-77.42217685330738, 34.75648253270161], [-77.42193519130747, 34.75643587790757], [-77.42187464983193, 34.75641874337522], [-77.42157011493836, 34.75636539568934], [-77.4213437004147, 34.75637027746088], [-77.42125036991348, 34.756359778556615], [-77.42118496079998, 34.756302320531944], [-77.4210549798405, 34.75618537082157], [-77.4209659665916, 34.755753192341594], [-77.4208874544041, 34.755567750763], [-77.42087798749364, 34.75553757172345], [-77.42085986244845, 34.75549372474303], [-77.42080764353551, 34.75534371649166], [-77.42070971666088, 34.755334564979655], [-77.4205688401055, 34.75539134523406], [-77.42034132140626, 34.75531496569939], [-77.42027334241148, 34.75530441797615], [-77.41973569724269, 34.755121110110636], [-77.41969433527917, 34.75508918011024], [-77.41956569192129, 34.75474562447181], [-77.41937026963613, 34.75464213899774], [-77.41919040144286, 34.75461477766342], [-77.41904405768236, 34.75464396361505], [-77.4189728511625, 34.75474079276079], [-77.41879427662454, 34.75483620422382], [-77.41898947907848, 34.75530840815845], [-77.4193512868286, 34.75528138689578], [-77.41965518273624, 34.7552243469654], [-77.41978863353366, 34.75532563468075], [-77.42022011765927, 34.75548817050765], [-77.4204375038121, 34.75572123266118], [-77.42045717799517, 34.75597645247687], [-77.42058601749953, 34.75643915998756], [-77.42060633493072, 34.75654357968106], [-77.42061470896601, 34.756590581707826], [-77.42061097935635, 34.756669093259525], [-77.42062705279022, 34.756981312102766], [-77.42066191239388, 34.7571661526649], [-77.42082791551537, 34.75734393369987], [-77.42094500136504, 34.7574140558562], [-77.421105737711, 34.757477349499084], [-77.4212273438808, 34.757546427873876], [-77.42132904113916, 34.75758136195527], [-77.42152199849369, 34.75763629369063], [-77.42169732254538, 34.75769586190063], [-77.42192900587533, 34.75777757726642], [-77.42208896166218, 34.75789318204409], [-77.42252667217228, 34.758302767317296], [-77.42259832588921, 34.75834894963342], [-77.42263844439655, 34.7583745192163], [-77.42279995384425, 34.75847238367525], [-77.4231443454405, 34.75867817300501], [-77.42370447104285, 34.758822774839054], [-77.42373955911785, 34.75883755080493], [-77.42467480893698, 34.75912752368372], [-77.42483893440846, 34.75908834772365], [-77.424919185806, 34.75919361421936], [-77.42525339827459, 34.75877063388988], [-77.42540671399895, 34.75852008145289], [-77.42578060404479, 34.758433774511275], [-77.42615093052828, 34.75852518593694], [-77.42633014585168, 34.75853274913097], [-77.42640880431438, 34.758479237382566], [-77.42643584269284, 34.758576594344575], [-77.42710247556444, 34.75829860640727]], [[-77.22408677534813, 34.62233782289973], [-77.22481955626307, 34.622333652080975], [-77.2249408523942, 34.62165185003174], [-77.22673476490147, 34.620191025828326], [-77.22730667647409, 34.61928618930936], [-77.22963608871353, 34.616956711492435], [-77.22992120536104, 34.61667159522712], [-77.23014691999984, 34.616552979627336], [-77.23067237014872, 34.61599750571398], [-77.23157967087865, 34.61519764211817], [-77.23347193307532, 34.61552173251847], [-77.234202822709, 34.61568790446457], [-77.23454699361031, 34.61609371144825], [-77.23462094215145, 34.61656135393763], [-77.23452670444884, 34.61703481222442], [-77.2329911315427, 34.61808037747991], [-77.23088425836569, 34.61720885545558], [-77.23109209320461, 34.619350985114075], [-77.22944050875458, 34.62040451131], [-77.22902039212966, 34.6208106039801], [-77.22731841567301, 34.62370148951678], [-77.22703434146813, 34.62398555936268], [-77.22686591592594, 34.6241539764747], [-77.22620694716073, 34.624812882126186], [-77.22613877243737, 34.624857617255444], [-77.2261398405789, 34.62487703855611], [-77.22541359757977, 34.62549206366017], [-77.2248631434576, 34.62569967184567], [-77.22368480761666, 34.62646116248886], [-77.22328899852991, 34.62623215230009], [-77.22233155213, 34.62580224087459], [-77.2221502988089, 34.62563436181104], [-77.2219424757195, 34.625034320814166], [-77.22196192619249, 34.623585233007276]], [[-77.34616775555234, 34.5679112773687], [-77.34678709121744, 34.570102565572796], [-77.34678061331532, 34.57032700407997], [-77.34682786946208, 34.570499479751824], [-77.34699406948849, 34.570751736543826], [-77.34705746290763, 34.57113627108224], [-77.34699378611184, 34.571175589617084], [-77.34693199150757, 34.571220876171054], [-77.34638119434325, 34.57142272058398], [-77.34620560741467, 34.57147973234978], [-77.34588291692259, 34.571652825778024], [-77.34571474917242, 34.57164971232326], [-77.3454176150909, 34.571503738907424], [-77.34503901185198, 34.57142662594408], [-77.34486718877534, 34.57119559523276], [-77.34424730960163, 34.571128236082004], [-77.34384203657288, 34.57097344773622], [-77.34365130492812, 34.5709826548578], [-77.34323600010708, 34.57083686936413], [-77.34266442122444, 34.57049022707362], [-77.34226638213354, 34.57057382995434], [-77.34177414548276, 34.57051665306503], [-77.34136408235241, 34.57038035327563], [-77.34089318923657, 34.5703247212024], [-77.34069072187793, 34.570200844467536], [-77.34044437667684, 34.56980594627809], [-77.33990298918162, 34.5698916448736], [-77.33962491475621, 34.56965801693236], [-77.33956239758007, 34.569185507097], [-77.33911561851092, 34.56911589771378], [-77.33890274595186, 34.56891277664939], [-77.33885367297171, 34.56835364321476], [-77.33832832036532, 34.56826551992164], [-77.33820436415651, 34.56816411316012], [-77.33787032550792, 34.56785693270165], [-77.3378617422596, 34.56778883601726], [-77.337917183483, 34.56776194721496], [-77.33830496733854, 34.567300563631775], [-77.33829867766411, 34.56726869294553], [-77.33828949793391, 34.566497015598756], [-77.33830283442923, 34.56645178606874], [-77.33829868744553, 34.566418907634436], [-77.33827144302899, 34.56603175775393], [-77.33833014351057, 34.56591309296144], [-77.33861906937412, 34.565868543985765], [-77.3388896087622, 34.5657646429857], [-77.33911809939738, 34.56587415581489], [-77.33939593237983, 34.56599510187321], [-77.34000030451526, 34.5662076899314], [-77.3406931614943, 34.56692939177922], [-77.34105458904189, 34.566445164289995], [-77.34148133848215, 34.56660055011959], [-77.34170988937488, 34.56656465507431], [-77.34226903640217, 34.56692132403934], [-77.34330882133769, 34.5668522880701], [-77.34384495982452, 34.566842661512105], [-77.34438296561495, 34.5666958732579], [-77.34525198222393, 34.567150534086835], [-77.34542052252297, 34.56728051522089]], [[-77.42974711451325, 34.731828999585176], [-77.42995082525138, 34.732113000644325], [-77.42968593051167, 34.73260651682538], [-77.42971106121621, 34.73293451301416], [-77.42949294316053, 34.7330390146573], [-77.42936576497951, 34.73324983279728], [-77.42932074027647, 34.73335715139544], [-77.42938901819683, 34.733617026318775], [-77.42938867433641, 34.73368666332605], [-77.42942737340667, 34.73367969195851], [-77.42943747583709, 34.733677479534215], [-77.42975883845881, 34.733619351549486], [-77.42985652739824, 34.73363304382174], [-77.43005311885216, 34.733710221713906], [-77.43021738109029, 34.733787360026454], [-77.43029486128552, 34.733977133540996], [-77.43029544605307, 34.733977989824986], [-77.43029545593208, 34.733980538598594], [-77.43035010938331, 34.73417838129755], [-77.43048428665107, 34.7343228626203], [-77.43010862928746, 34.73462595014097], [-77.43005836439642, 34.73471060009992], [-77.42996417244089, 34.73470014240153], [-77.4293777010511, 34.7349359935362], [-77.42899603355292, 34.734361780122995], [-77.4289753683125, 34.7343054551954], [-77.42893965945932, 34.73423427288191], [-77.42855690292049, 34.73364924229281], [-77.42863868565365, 34.733553125041006], [-77.42848692059856, 34.733583346800714], [-77.42832071178151, 34.73336720942369], [-77.42803149626936, 34.732941720194276], [-77.42801891563158, 34.73291888207022], [-77.42801716966147, 34.73290153738424], [-77.42792463869672, 34.73273501588259], [-77.42792322641843, 34.732717766218634], [-77.42795724990161, 34.73260106362864], [-77.42806458961142, 34.732453445782554], [-77.42810188985138, 34.732372087868775], [-77.42808525362216, 34.732234673075496], [-77.42816381645252, 34.73196567062401], [-77.42783651856783, 34.731720272981555], [-77.42775899262693, 34.73166825466819], [-77.42772435254318, 34.731644990854896], [-77.42745879801954, 34.73136699053766], [-77.42727586369546, 34.73112238142534], [-77.42719324512488, 34.73103137823652], [-77.42714776702962, 34.73092046914557], [-77.42698846023772, 34.73067041810762], [-77.42682554483596, 34.730463195692366], [-77.426630732045, 34.73037325527475], [-77.42646104904945, 34.73032863342219], [-77.42623072634373, 34.73030315761047], [-77.42621309067646, 34.73029739379395], [-77.42601558810647, 34.7301834665903], [-77.42597698011112, 34.730072323587244], [-77.42593435451995, 34.729937260512756], [-77.42590992274978, 34.72978116209845], [-77.42580001665473, 34.72957627966989], [-77.42572288181788, 34.72941280137147], [-77.42559014569869, 34.72925787175055], [-77.42546052071248, 34.729075859266516], [-77.42537709665004, 34.72882252167552], [-77.42531147565188, 34.728691650413], [-77.42517505528494, 34.72855370209414], [-77.42522277923146, 34.72830522559394], [-77.42524751347617, 34.72801996115431], [-77.4255927231386, 34.727681577956986], [-77.42562090318266, 34.72746005817946], [-77.4260066347838, 34.72716718909376], [-77.42649866793047, 34.727163009908985], [-77.42661609424323, 34.7272546941247], [-77.42706983005735, 34.72740468927994], [-77.42717879989783, 34.72757693317711], [-77.427350941085, 34.727840920502175], [-77.42745428202409, 34.72829134670968], [-77.42758897216227, 34.728634392161894], [-77.42774962370748, 34.72889458866049], [-77.42811865680184, 34.72930620308179], [-77.42838972604612, 34.72948944701733], [-77.42846849216882, 34.72960665476524], [-77.42864785125371, 34.72976761346099], [-77.42878665155965, 34.72992031944309], [-77.42878791796979, 34.730328722781024], [-77.42884642104822, 34.730396078667574], [-77.42912410667216, 34.730672320521734], [-77.42918892009848, 34.731158315155476]], [[-77.24936033901383, 34.608305266830726], [-77.2496660350678, 34.60799210616272], [-77.24971511579216, 34.607861855298374], [-77.24981984399429, 34.607754822284356], [-77.25004050219341, 34.60772633717583], [-77.25028734789062, 34.60775953958327], [-77.25080187217422, 34.60788812434947], [-77.25082529868091, 34.60794926155327], [-77.25062307491865, 34.608368666537544], [-77.25058788639684, 34.60843783301753], [-77.2503517707979, 34.60877734892358], [-77.2503051831575, 34.60884374815091], [-77.24971630945123, 34.6087080815593], [-77.24960249571282, 34.60859165121733]], [[-77.42695783442957, 34.68403647025281], [-77.4269614872496, 34.68403329562087], [-77.42696156575371, 34.68403065915032], [-77.42696487661502, 34.68402976914282], [-77.42696752138501, 34.68403242752625], [-77.4270848155955, 34.684168898789565], [-77.42711062237984, 34.68419589532566], [-77.42733211030583, 34.68442153077014], [-77.42742863150457, 34.68450955669737], [-77.42761169436164, 34.68456258152309], [-77.42780339983359, 34.68465917421409], [-77.4278902853843, 34.68470706622012], [-77.42797601259166, 34.68472749141355], [-77.4283835322611, 34.68494997202203], [-77.42843919581058, 34.68498056468817], [-77.42844397747757, 34.68500810446956], [-77.42857523258485, 34.685173214834236], [-77.42872373534584, 34.68530819413332], [-77.42869704438593, 34.685372369262], [-77.42862967235551, 34.68534745127345], [-77.42834231186015, 34.68535945489856], [-77.42826267729964, 34.68541007597216], [-77.42805980494839, 34.685228494006104], [-77.42792928292432, 34.68523892947876], [-77.42779426127834, 34.685249724526436], [-77.42773181522614, 34.685254717113125], [-77.42771123164587, 34.68525636275744], [-77.4276374239581, 34.685248090912374], [-77.4274180828932, 34.68523166765106], [-77.42720274816082, 34.685172886217835], [-77.42712022460785, 34.685153760939045], [-77.42702096021871, 34.68512607193017], [-77.42683105109376, 34.6850458437114], [-77.42661068166049, 34.684952746575526], [-77.4265424822503, 34.68493583848503], [-77.42650544015429, 34.68489483639665], [-77.42651514357591, 34.68485556064176], [-77.42649605952195, 34.68476533653028], [-77.42647914133242, 34.68470319930064], [-77.42647861086586, 34.68468284427506], [-77.42648560499471, 34.684578787145874], [-77.42648638506266, 34.68456596398814], [-77.42649152647608, 34.68455832444521], [-77.42655054601201, 34.68448047381512], [-77.42660692493976, 34.684406105982454], [-77.42665337566783, 34.68434483425106], [-77.42667694747757, 34.68431319504684], [-77.42675062741918, 34.68421655181777], [-77.4270039152053, 34.684187904089725]], [[-77.2827319139937, 34.583182118096744], [-77.28282875248189, 34.58275567108923], [-77.2829348644196, 34.582564339470224], [-77.28313993720353, 34.582713087764155], [-77.28347120612179, 34.58289017880671], [-77.28369161944137, 34.58314909412432], [-77.28404752720427, 34.58343282722774], [-77.2838419025602, 34.583900277438545], [-77.28367891490564, 34.58406796010239], [-77.28271293038912, 34.584389984149674]], [[-77.3327508971499, 34.52792565571174], [-77.33278402456347, 34.52792832084773], [-77.3330257369542, 34.52787286343546], [-77.33307372320434, 34.52766833941001], [-77.33314424609264, 34.52736618994278], [-77.33282485603908, 34.527373976521346], [-77.3327633901603, 34.527387532785255], [-77.33269828748058, 34.5274303167026], [-77.33222930446289, 34.527658190502706], [-77.33201267096605, 34.52798842614177], [-77.33238514206627, 34.52796497566854], [-77.33217083161574, 34.52812654383364], [-77.33196290409222, 34.5280528399225], [-77.33176418848987, 34.528299076597534], [-77.33167399815326, 34.528381429559175], [-77.33156126228056, 34.528445500534026], [-77.33154967266839, 34.52845232822106], [-77.33156017837172, 34.528492160656484], [-77.33157529735495, 34.528560630022284], [-77.33157263892598, 34.52857143395382], [-77.33157949094634, 34.52858382200191], [-77.33162454089874, 34.528644036072606], [-77.33166484990502, 34.52862538936632], [-77.33167482789757, 34.528617944973995], [-77.33175454080187, 34.52857390785377], [-77.33178302664612, 34.52855873062756], [-77.33180405461994, 34.5285545996443], [-77.33182880554503, 34.528534601678885], [-77.33183289821153, 34.528520912949894], [-77.33185431915028, 34.52850296881486], [-77.33188111900579, 34.52848229139181], [-77.33195436299644, 34.528420590899835], [-77.33202561027346, 34.52838389625142], [-77.33203250290367, 34.52830759635145], [-77.33233893884017, 34.528224235524085], [-77.3323515061739, 34.52822157653883], [-77.33236223675776, 34.52821975205358]], [[-77.36948969606199, 34.588661142895454], [-77.36904991415855, 34.58873406946824], [-77.36885159553691, 34.58901328357343], [-77.36839797175513, 34.58914525740504], [-77.36826167040591, 34.58901798423866], [-77.36794538579439, 34.588849052842505], [-77.36747363040638, 34.5887913265638], [-77.36728781747874, 34.588803107046466], [-77.3672602481654, 34.58860689235793], [-77.3671853512366, 34.58830687705433], [-77.36747404516392, 34.58778116295247], [-77.36750033575974, 34.58775151579909], [-77.36752076528239, 34.587720261744394], [-77.36805654132635, 34.5874214068474], [-77.36826235568437, 34.587310130615464], [-77.36872880647194, 34.58719967216224], [-77.36905062610799, 34.58691802437843], [-77.3694821094528, 34.58697288061184], [-77.3701627214863, 34.58683966943558], [-77.37062688557864, 34.58682534702275], [-77.37132743496832, 34.58641737559034], [-77.37141514459215, 34.58641885886274], [-77.37170099036291, 34.58657710118121], [-77.37220356065784, 34.585549376487386], [-77.37257276340723, 34.58659441739961], [-77.37231225926817, 34.5870301318508], [-77.37229824541558, 34.58713477149597], [-77.37220301187384, 34.58709369733382], [-77.37217587880686, 34.5870790168598], [-77.37150273437591, 34.58724143596095], [-77.37141480209291, 34.587358948742384], [-77.37083518159142, 34.58746757520053], [-77.37066075230761, 34.58811714211597], [-77.3706263552935, 34.58824528815166], [-77.37041004467996, 34.58876953102346], [-77.3702320523058, 34.588883029013594], [-77.3701203423206, 34.58873995056908], [-77.36983810743268, 34.588567539204554]], [[-77.3896244052055, 34.51231900515627], [-77.38969185371639, 34.512323592807725], [-77.38967279795175, 34.51236848747686], [-77.38966996931732, 34.51239843965188], [-77.38962010794157, 34.51250963856775], [-77.38951273222139, 34.51281860532068], [-77.38912439334655, 34.51293728262384], [-77.38889350184711, 34.51301404037685], [-77.38882347338301, 34.51303157070157], [-77.38872463566726, 34.513056277486996], [-77.38818312253404, 34.51316513453625], [-77.38803409516993, 34.51323141489316], [-77.3878007282619, 34.513273265450685], [-77.38760322253538, 34.51315675746859], [-77.38735945976718, 34.51312465501193], [-77.38725344951362, 34.51304416554717], [-77.38701091499013, 34.51290580637019], [-77.38696556108883, 34.51275908878149], [-77.38700680863391, 34.512592908475035], [-77.3870072801262, 34.512508237363264], [-77.38727163547871, 34.51223841314304], [-77.38728169687066, 34.51222997281445], [-77.38733627951872, 34.51221593955435], [-77.38787812955337, 34.51202345585561], [-77.38821833347097, 34.51199119142557], [-77.38884732830343, 34.51197376920722], [-77.38887424031854, 34.51197720537451], [-77.38890849424655, 34.511989101427815], [-77.389332523823, 34.5121129192003]], [[-77.37576693098566, 34.581437685609416], [-77.37612160450018, 34.582210407563224], [-77.37608475626601, 34.582241015205454], [-77.3753569416393, 34.58244859902021], [-77.37528989687637, 34.58235554436536], [-77.37519902084259, 34.58168993283023], [-77.37516474293393, 34.58152445433833], [-77.37516144326449, 34.58131388931521], [-77.37535743806427, 34.58090177368255], [-77.37583896256763, 34.58090846299778]], [[-77.35132336370955, 34.557347625670275], [-77.3517301437274, 34.557341490808916], [-77.35210581462434, 34.55726858979564], [-77.35300132380826, 34.55754454056479], [-77.3527906007252, 34.55812963568829], [-77.35330544965541, 34.55796176162163], [-77.35362545666833, 34.557799494230316], [-77.35363031773953, 34.55745401160026], [-77.35335995937002, 34.55743451804054], [-77.353377060421, 34.5567177344319], [-77.35333176515017, 34.55664788201829], [-77.35338249425737, 34.556558455010354], [-77.3533065982952, 34.55605574568749], [-77.35321755066217, 34.555911286648595], [-77.35310768780701, 34.555831032672884], [-77.35251960507509, 34.555883191656875], [-77.35240060895057, 34.55585824674415], [-77.35195440566224, 34.55586011760553], [-77.35191957015115, 34.555757210464535], [-77.35173854197575, 34.555699170073154], [-77.35151016389702, 34.55571350224028], [-77.3511584256077, 34.55562192982394], [-77.35101049372726, 34.5556088227437], [-77.35055800857666, 34.55545844359541], [-77.35049853773941, 34.55599615821703], [-77.35039024790964, 34.556222120327234], [-77.35039598811834, 34.556481005935765], [-77.35051026802259, 34.55751944904907]], [[-77.36901076973534, 34.52140703202112], [-77.36886169639622, 34.52133930240173], [-77.36862057321004, 34.521306862756994], [-77.36858124233258, 34.52128576326544], [-77.36854844570969, 34.52109368568786], [-77.36851958641736, 34.520982210221725], [-77.36854955466353, 34.520800675549474], [-77.3685455420626, 34.52061309384543], [-77.36856772448523, 34.52050891936439], [-77.36863962126016, 34.520471035368594], [-77.36877752026592, 34.5203626518057], [-77.36883879363927, 34.52034223898831], [-77.3689882849899, 34.52027787312862], [-77.36903707945129, 34.52025232540838], [-77.36904439915635, 34.52024416163875], [-77.3690492105093, 34.520239018248276], [-77.36907464887138, 34.52021248264682], [-77.36911777808925, 34.52016793028946], [-77.36911962535434, 34.52015658916892], [-77.36913509044014, 34.52010422859891], [-77.36909578799482, 34.52002081103538], [-77.36908653446639, 34.51998881234944], [-77.3690694667213, 34.519975010154745], [-77.3690448193192, 34.51991263245002], [-77.36902760308769, 34.51987489135408], [-77.36903617037852, 34.51975882457853], [-77.36903727722469, 34.519751083665454], [-77.36903833593465, 34.519744496915095], [-77.3690488851172, 34.519734190091775], [-77.36922091217718, 34.51958498439522], [-77.36928481691112, 34.51957055978751], [-77.36944570278057, 34.519543397378264], [-77.36949058927769, 34.519563342896184], [-77.36956046235939, 34.519603248108524], [-77.3696720269854, 34.519659608791436], [-77.36976088192435, 34.519692894589596], [-77.3698338179621, 34.51973461856046], [-77.36994312407194, 34.51979630440772], [-77.37005252818, 34.5198495999806], [-77.37011161648388, 34.51991012516865], [-77.37009453815787, 34.51996595946614], [-77.37010149521649, 34.52001348428657], [-77.370061062894, 34.52009319756168], [-77.37002072378107, 34.52014430084454], [-77.36998177723913, 34.520203584719674], [-77.36987945938952, 34.52032730493201], [-77.36988013337864, 34.52036409975555], [-77.36981809950944, 34.52042476597644], [-77.36970542964866, 34.52056582464886], [-77.3694363724888, 34.52067287885563], [-77.36942581922479, 34.52067812111249], [-77.36941982484016, 34.52067938169685], [-77.36938987560413, 34.52069799738977], [-77.36918284477431, 34.52080824461927], [-77.36918603728894, 34.52085233374789], [-77.36916698787573, 34.520956526976285], [-77.36918099703132, 34.52105570229367], [-77.36918060212919, 34.52107697863865], [-77.36917121412404, 34.521104953513714], [-77.36921740600863, 34.521194088332685], [-77.36915031370908, 34.52128912819825]], [[-77.38408395362333, 34.51437165081966], [-77.38372930552575, 34.51442574915053], [-77.38329453889108, 34.5145719456326], [-77.38281502464557, 34.5145270086875], [-77.38251076780213, 34.514522626338994], [-77.38226378318572, 34.514755503119474], [-77.38216785016454, 34.51492013585181], [-77.38201187490012, 34.5151296233436], [-77.3819687314922, 34.515193685279186], [-77.38170521039841, 34.51543581387832], [-77.38166132262377, 34.51545575349741], [-77.3813198051529, 34.51552643145417], [-77.38131068968265, 34.51552736798764], [-77.38099841628433, 34.51552842174486], [-77.38091840530495, 34.51552012229513], [-77.38079122737123, 34.51552912058303], [-77.38065896939027, 34.51554408810697], [-77.38052547096241, 34.51554157157419], [-77.38045872153032, 34.51553386990765], [-77.380527695221, 34.515443368100364], [-77.38055861459425, 34.51541595071485], [-77.38054370672428, 34.515399198814016], [-77.38064983341782, 34.51530958746305], [-77.3808841201566, 34.51510527598158], [-77.38092835877097, 34.515080575259354], [-77.38101215458823, 34.51503517598999], [-77.38132581683098, 34.51485921217442], [-77.38138517257592, 34.51482472757833], [-77.38172591171131, 34.51452126283024], [-77.38177015758916, 34.51451535099034], [-77.3817574707368, 34.514489660893574], [-77.38180813841659, 34.51443231109675], [-77.38203921793087, 34.51414957616959], [-77.38233155221506, 34.51403587869139], [-77.38252368848275, 34.513951577469186], [-77.38258832484931, 34.513920046775574], [-77.38269595702566, 34.51386464306849], [-77.3830822070205, 34.51366364885669], [-77.38331758602527, 34.513552921667], [-77.383689499266, 34.513462425807454], [-77.38374255335772, 34.513450012941654], [-77.38410651171961, 34.51337383628154], [-77.38436967633538, 34.51329665737697], [-77.38489741776715, 34.51310695058709], [-77.38493959892446, 34.513077251364166], [-77.38499949885743, 34.513042713512334], [-77.38529515677642, 34.51287223937418], [-77.38541009212918, 34.51280947286812], [-77.38569154404372, 34.512697267444395], [-77.38605252395115, 34.5126660391805], [-77.38608452737576, 34.51267293950912], [-77.38638017900183, 34.51284353966775], [-77.38640325304607, 34.51288323341143], [-77.38646935258643, 34.51300990333481], [-77.38664484344375, 34.51318309781457], [-77.38659740385015, 34.51330186677312], [-77.38657872196148, 34.51337797994367], [-77.38645607112099, 34.51359811386334], [-77.38638333824262, 34.51377959391066], [-77.38595979175258, 34.51388351426172], [-77.3857139073904, 34.513950600022895], [-77.38566300346201, 34.513960749361814], [-77.38559979088662, 34.51397468753946], [-77.38492387577386, 34.51403295020608], [-77.38488034727463, 34.514036770184056], [-77.3848764154703, 34.51403633066367], [-77.384857154552, 34.514042574808826], [-77.3842832389464, 34.51424794259983]], [[-77.36989755965901, 34.57300052727463], [-77.36990286811616, 34.5737913167718], [-77.37026298932331, 34.57413673842294], [-77.37029832980936, 34.5741589091024], [-77.37063159638576, 34.57437104040959], [-77.37075256228954, 34.574387677487316], [-77.37136277011702, 34.5743689006942], [-77.37141961144928, 34.57431281886507], [-77.37158339187019, 34.574221896196974], [-77.37193333819012, 34.57405228632771], [-77.37198307922137, 34.573733815640516], [-77.37203779725095, 34.57348376238191], [-77.37202449917763, 34.573287964729744], [-77.37195917847818, 34.572914219215996], [-77.37158385463965, 34.572700040923], [-77.37156697288906, 34.57254438797123], [-77.37124451439882, 34.572559536167226], [-77.37119215595419, 34.57275647005876], [-77.37076228564965, 34.572958642957374], [-77.37063212669, 34.57298711452821]], [[-77.42989095217403, 34.68283717633507], [-77.43021782385883, 34.682899082640404], [-77.43029085343429, 34.68305437941709], [-77.43048356211034, 34.68344816908953], [-77.43008982833739, 34.68374917747453], [-77.43002317696484, 34.6838012033977], [-77.42975699023498, 34.68375312512796], [-77.42951785417794, 34.68372289215078], [-77.42946245026624, 34.68370282869468], [-77.42937058654694, 34.683699078129045], [-77.42914867550027, 34.68367994977102], [-77.42903027608439, 34.68367358905547], [-77.42882394539598, 34.68369493296721], [-77.42881517471798, 34.683695840241825], [-77.4286219909705, 34.68356512962846], [-77.4285729560992, 34.68345506495092], [-77.42856331912081, 34.68333564088422], [-77.42856920589733, 34.68329368831348], [-77.4285669623275, 34.68319714747548], [-77.42860816977363, 34.683170426038814], [-77.42863399130067, 34.683150707439935], [-77.42866386913961, 34.68314086613748], [-77.42869764089328, 34.68312974222715], [-77.42873689171138, 34.683116813560815], [-77.4288409417502, 34.683082540918306], [-77.42890328726257, 34.68309203529082], [-77.42901285664813, 34.68304204006678], [-77.42912893761014, 34.68308703387426], [-77.42920076023054, 34.682999517911156], [-77.42937630139262, 34.68289324353561], [-77.42946219726488, 34.682884039725636], [-77.42962418219685, 34.682868075096074], [-77.4297072112259, 34.682856889288416]], [[-77.35408057279211, 34.560785609290264], [-77.3540916159875, 34.56079962934417], [-77.35410378980092, 34.56078226762567], [-77.35409163064837, 34.56077480096822]], [[-77.36475714439874, 34.622082632559554], [-77.36556144206209, 34.62231356181142], [-77.36588334408462, 34.6223991500577], [-77.36683173676599, 34.622805520453284], [-77.36676350681523, 34.62179381561573], [-77.36698233255004, 34.62124714583028], [-77.36680550222694, 34.62079534425155], [-77.36636469816185, 34.62067064976321], [-77.3658839209938, 34.620977941538364], [-77.36449382301812, 34.62062330938778]], [[-77.33322528416042, 34.52686490507084], [-77.33316823326153, 34.52685648932385], [-77.33312404905988, 34.52687946239808], [-77.33316647984915, 34.52693203061554]], [[-77.39119360368589, 34.512342324507934], [-77.39092321006015, 34.51235655183075], [-77.39080084920991, 34.51235668858877], [-77.39054682075238, 34.51224236950008], [-77.39048652381905, 34.512204480527444], [-77.39041436793985, 34.51209263761859], [-77.39023832205885, 34.51190962438969], [-77.39014815254872, 34.51181022888062], [-77.39026684749837, 34.51169548146016], [-77.39033201888415, 34.511538864247015], [-77.39042905075942, 34.51144101668109], [-77.39056750032604, 34.51134508030481], [-77.39072410032968, 34.51130018581311], [-77.39082521200874, 34.51127524636776], [-77.3910693512345, 34.51128007952434], [-77.39121641401368, 34.5113295836485], [-77.39137522915316, 34.51138832561456], [-77.39149028470469, 34.51144407974858], [-77.39163203196624, 34.511596100236844], [-77.39173428973393, 34.51174211444073], [-77.39170164173157, 34.51189675621545], [-77.3915918614424, 34.51208356117773], [-77.39158824697655, 34.51208992184364], [-77.39158458564496, 34.51209261587538], [-77.39138474883117, 34.512239259183]], [[-77.39758522979504, 34.50972383062426], [-77.3975986551508, 34.50975556268606], [-77.39761032914524, 34.50980433482052], [-77.39771413405462, 34.509983727758716], [-77.39757954302135, 34.51021104777725], [-77.39757411928221, 34.5102487764549], [-77.39756259271803, 34.51027774476477], [-77.39751854002462, 34.5102906553944], [-77.3970888739792, 34.510543971134936], [-77.39672686985315, 34.51059482191311], [-77.39637965989603, 34.51069566066923], [-77.39633206662671, 34.510700865865445], [-77.3962945839216, 34.510701694647246], [-77.3961939026934, 34.510692853768546], [-77.39599302823187, 34.510688713711595], [-77.39594032510347, 34.51067058696696], [-77.3957738414862, 34.510613326253754], [-77.39560295534037, 34.51053331933309], [-77.39574051316146, 34.510384792992795], [-77.39576492565011, 34.51026510490085], [-77.39595465828512, 34.51003262945264], [-77.39598469844452, 34.5100069283031], [-77.39608830823204, 34.509973590039515], [-77.39635029868248, 34.50988920363863], [-77.39665451946995, 34.509836084579], [-77.39674451429327, 34.50980915566079], [-77.39685867882613, 34.509791404455754], [-77.39713793849117, 34.509764316445], [-77.39748175221384, 34.50974179922377], [-77.39753106364851, 34.50973277500908]], [[-77.37063347391012, 34.569486918039544], [-77.37083371434589, 34.57004473579113], [-77.37112720974498, 34.5702184706316], [-77.37142106864876, 34.57042346103946], [-77.37158191449765, 34.57032625529261], [-77.37181507551712, 34.570345352828525], [-77.3721387456074, 34.57007274103955], [-77.37210342506454, 34.569963850856126], [-77.37198066032585, 34.56949285761469], [-77.37146095666647, 34.569363825774346], [-77.37142147331635, 34.56934828480426], [-77.37139667202948, 34.569357255234685], [-77.3710050254997, 34.56938695439456], [-77.37063350397791, 34.56940904680306], [-77.3705824902157, 34.5694478261705]], [[-77.43729090177109, 34.74082576167871], [-77.43727976945362, 34.741108256586905], [-77.43724994638539, 34.741159406685], [-77.43724195291962, 34.74121118299895], [-77.43726626204092, 34.7415602950309], [-77.43759699412547, 34.74179107833031], [-77.43764185261365, 34.74182875998706], [-77.43766021733353, 34.74184234535312], [-77.43773277394018, 34.74188713382771], [-77.43791179201624, 34.74200384872417], [-77.43819146526265, 34.7420671175792], [-77.43821294569466, 34.74207107790927], [-77.43822560850022, 34.74207011751109], [-77.43825281443438, 34.74206882511905], [-77.438555522455, 34.741995165367506], [-77.43862391519416, 34.74197299602436], [-77.43868923722843, 34.74185944827262], [-77.43878036188407, 34.741694105547694], [-77.43883481613467, 34.74156979410238], [-77.43888741263717, 34.7414519910132], [-77.43889802780514, 34.74132593377719], [-77.43893509119786, 34.741189133545184], [-77.4389164014284, 34.740955388684405], [-77.4389190809639, 34.74090402494167], [-77.43892230014015, 34.74086940065927], [-77.43887484909105, 34.740609055820784], [-77.43888728289555, 34.740437603419], [-77.43887944506858, 34.74033114665757], [-77.43884855855475, 34.74023055644898], [-77.43884599362056, 34.74017970188128], [-77.43887541891769, 34.74014079653472], [-77.43893270658056, 34.74007023988362], [-77.43902606032432, 34.74001300936676], [-77.43916173519294, 34.73990027427029], [-77.43918270613639, 34.739895029683495], [-77.43919037071217, 34.73986474492464], [-77.4392753317087, 34.7396309158418], [-77.43925671746811, 34.73957203483919], [-77.43918024132884, 34.73942256379991], [-77.43913707130562, 34.73930309552366], [-77.43923016122278, 34.739224884534465], [-77.43933505875339, 34.7390927536152], [-77.43936716878906, 34.73907483281536], [-77.43943212858083, 34.73896584340383], [-77.43948316582966, 34.738890464982575], [-77.43949637857911, 34.73884425796034], [-77.43949282998746, 34.738756067626596], [-77.43948707124636, 34.73862493738276], [-77.4394580563263, 34.7385766971148], [-77.43947532281632, 34.73840663513977], [-77.43951342497841, 34.73819223762929], [-77.43953898627724, 34.73804594302835], [-77.43958869751054, 34.737912924582965], [-77.43953845364555, 34.73749046180431], [-77.43953818962618, 34.737487590347015], [-77.43953615346848, 34.73748592431421], [-77.43921187870963, 34.737177328250695], [-77.43902535687772, 34.73704782143356], [-77.43881279567856, 34.73704787538165], [-77.43856949460493, 34.736998940415134], [-77.4384067720178, 34.736969742381305], [-77.4382185597828, 34.73682493035351], [-77.43812836848525, 34.736823959178295], [-77.437990315792, 34.73694581673498], [-77.43787790598905, 34.737016180763945], [-77.4377168128762, 34.73713830795795], [-77.43756768972662, 34.73725714990779], [-77.43746000842361, 34.737319558849144], [-77.4372947481052, 34.73748896103637], [-77.43724382813063, 34.7374758329327], [-77.43726570871985, 34.737531186782086], [-77.43726107173246, 34.73754483155543], [-77.4371386741356, 34.7377663176113], [-77.43707932134664, 34.73795481070705], [-77.43705923672265, 34.73801807944079], [-77.43698861434402, 34.73810490408184], [-77.43696872353712, 34.73826597109328], [-77.4370336793335, 34.73862794390446], [-77.4370355596106, 34.73884835983931], [-77.43706882771494, 34.73896424456604], [-77.43713043099753, 34.739164595356684], [-77.43716622648307, 34.73937001308366], [-77.43718421729439, 34.73945933651219], [-77.43722211768784, 34.739793098001854], [-77.4372183575434, 34.74003029991679], [-77.43719764032093, 34.74024971361362], [-77.43727227628955, 34.74051303037738], [-77.4373095915221, 34.7406212116397], [-77.43731037382575, 34.74064908542129]], [[-77.33384581482878, 34.52775493776954], [-77.33420415188303, 34.52777840147499], [-77.33432551740803, 34.52772980520815], [-77.33466764955084, 34.527910384727015], [-77.3347136740222, 34.52791786172868], [-77.334886494629, 34.527986138742094], [-77.33490734668771, 34.52809191682987], [-77.33491446846426, 34.52820630035814], [-77.33500080025952, 34.52832329401693], [-77.33509476837318, 34.52841056068879], [-77.33519529038149, 34.528476491318216], [-77.33528218790597, 34.52852764392224], [-77.33548323442281, 34.52858547572525], [-77.33552679254537, 34.5285186678563], [-77.3356817603316, 34.52848776461329], [-77.33569436426406, 34.528476058994706], [-77.33569713869102, 34.52846796810702], [-77.3357819923795, 34.528397092801264], [-77.33578891504817, 34.52839789416453], [-77.3358811500732, 34.52835276348803], [-77.33605661412679, 34.52830748574608], [-77.3360786302113, 34.528300130164176], [-77.33609138615375, 34.528296766978556], [-77.33627841283902, 34.52814812647553], [-77.33629862311217, 34.528149267823736], [-77.33667732298518, 34.527872299126905], [-77.3367390896795, 34.527866925764904], [-77.33677608753065, 34.52782315769812], [-77.33673251823711, 34.52779609949365], [-77.33669971831443, 34.52758932456385], [-77.33668436849327, 34.52756820581893], [-77.3365464019214, 34.527454255851936], [-77.33650654238068, 34.527372290752396], [-77.33629805010452, 34.52730072849113], [-77.3361720053943, 34.527342391509116], [-77.33610002760372, 34.527376871107556], [-77.33607462849213, 34.52743440992799], [-77.33608477577273, 34.52754832473428], [-77.33608892851645, 34.5275590510255], [-77.33620165588354, 34.52766095769953], [-77.33619632694158, 34.527719122561535], [-77.33615138786605, 34.527829167767884], [-77.3359233193562, 34.52794580528649], [-77.33611936630003, 34.52806198318932], [-77.33589012701599, 34.527965462983396], [-77.33587191775253, 34.52796456800983], [-77.33569326376146, 34.52799151159274], [-77.33568555466029, 34.52798490390807], [-77.33567815829258, 34.527981063870115], [-77.33559595268791, 34.527932031444024], [-77.33549950006734, 34.52788385395302], [-77.33539025127925, 34.52784633427243], [-77.3352808481677, 34.52779338607323], [-77.33519057669606, 34.52760972609539], [-77.33519566326086, 34.52756082003271], [-77.33524481867852, 34.52747371166372], [-77.33523641429942, 34.52713522766578], [-77.33537640879561, 34.5270451920539], [-77.33529466922394, 34.52695334085322], [-77.33512793717867, 34.52698011274635], [-77.3349865982871, 34.52701358115186], [-77.3346680611176, 34.52714706115198], [-77.33445232415767, 34.527250238659136], [-77.33433166790238, 34.527464664868695], [-77.33381066191961, 34.52743460125289]], [[-77.36039370549607, 34.56250003774877], [-77.360522011835, 34.56254392719197], [-77.36053339644167, 34.56240398827797], [-77.36046442649686, 34.562337792066884], [-77.36039379232365, 34.562331059307255], [-77.36024803719445, 34.562177688072595], [-77.36015843386033, 34.56203342281951], [-77.36013576823596, 34.56189045175021], [-77.3600000429951, 34.56195984155513], [-77.3599544473066, 34.56201368413554], [-77.35980303101977, 34.56204013539362], [-77.3597491253756, 34.56209235498708], [-77.35972372182769, 34.56222291975988], [-77.35968062099963, 34.56244618835695], [-77.35974873741102, 34.56251696419974], [-77.35999962982002, 34.56275647273163], [-77.36027012974009, 34.562575030314015]], [[-77.34067218837829, 34.53334698232743], [-77.34068637394827, 34.53338115133004], [-77.34066966566826, 34.533456102235945], [-77.3406159670201, 34.533480550835485], [-77.34047380471686, 34.53343833782865], [-77.34044124376662, 34.53343674393169], [-77.34036575341102, 34.53342727289262], [-77.3403812576084, 34.53336628448707], [-77.34042075669343, 34.53321090651758], [-77.34036155891243, 34.533183057853], [-77.3404004290696, 34.53312721757834], [-77.34048099608164, 34.533127306973725], [-77.34049388155229, 34.533155579236556], [-77.34049799458735, 34.533163431625155], [-77.34053106388113, 34.533190816341815], [-77.34056181929503, 34.53334551484534]], [[-77.36787401025254, 34.5220871087074], [-77.36795404479497, 34.52211062287388], [-77.36811307749718, 34.52214750025372], [-77.36820624350833, 34.52226548139163], [-77.36824481791386, 34.52228915110874], [-77.36827715105693, 34.522308890698575], [-77.36824141963567, 34.52233699903322], [-77.36821612011155, 34.522562512243006], [-77.3681963699865, 34.52269864686208], [-77.36818178432502, 34.52280469635272], [-77.36813982149056, 34.522818333500865], [-77.36779889441316, 34.5229175198281], [-77.36762558053559, 34.52299937921385], [-77.36771583007943, 34.522879428732985], [-77.36750741736631, 34.52284744803787], [-77.36740974876321, 34.522771002117324], [-77.36728847443965, 34.52269618059461], [-77.3672838586294, 34.52261611419379], [-77.36727376628184, 34.52257588672083], [-77.36729785526074, 34.522523323033084], [-77.36730951353051, 34.52244832249117], [-77.36732869986085, 34.52238957505375], [-77.36742005257118, 34.5223191455436], [-77.36776668378805, 34.52210598697416]], [[-77.35257266260687, 34.68651963528096], [-77.35257865105385, 34.68647230383505], [-77.35263705370329, 34.68646787723691], [-77.35292355792416, 34.6864589431158], [-77.352952667835, 34.686456776852985], [-77.35295197287668, 34.68646755255488], [-77.35309192941281, 34.68654669320332], [-77.35311285271754, 34.68662676030289], [-77.35309554812152, 34.68669152968417], [-77.3528037409242, 34.68692456976428], [-77.35275832071528, 34.6869507250021], [-77.35247999445723, 34.687019742378084], [-77.35247660809763, 34.687020516293856], [-77.35247624312497, 34.687020257462684], [-77.35247595742334, 34.687019534851245], [-77.35240811609485, 34.68690776592627], [-77.35242839186512, 34.68686027804873], [-77.35245468312414, 34.68677952617623], [-77.35246843433093, 34.6866937281887]], [[-77.4043902307764, 34.508285240313924], [-77.40416138584763, 34.50812136816073], [-77.40413040792627, 34.50807792661395], [-77.40407392076838, 34.50798164580575], [-77.40399061555787, 34.50785327722906], [-77.40395729777211, 34.50779308739209], [-77.40385729508691, 34.50760641551986], [-77.40375293536934, 34.50746501539395], [-77.40360530571586, 34.5074192469445], [-77.40386516526146, 34.50725465944188], [-77.40424187698976, 34.507070109215476], [-77.4046599882314, 34.5068068096189], [-77.40502473720025, 34.50698418938319], [-77.40539051062157, 34.50716142169285], [-77.40542028667117, 34.50716738084521], [-77.40543627781102, 34.50718760234183], [-77.40577460337293, 34.507381815657524], [-77.40578982549815, 34.50782287739157], [-77.4055459156206, 34.50811832907044], [-77.40541341139229, 34.50821047359804], [-77.40530281399231, 34.50822228159579], [-77.40482027264949, 34.50834459828314], [-77.40462441953035, 34.508397215108864], [-77.40440448975427, 34.5084200831278]], [[-77.40226968574464, 34.50840969687184], [-77.40251572200422, 34.50840253439724], [-77.40247205614594, 34.50856225005273], [-77.40226368461586, 34.5086776937603], [-77.4019461195529, 34.508933304541216], [-77.40169671827796, 34.509023130162035], [-77.40146940787935, 34.50909976449606], [-77.40111995828684, 34.50900232910945], [-77.40109770870328, 34.50899409516041], [-77.40098270841023, 34.508777309504666], [-77.40117830997761, 34.50855989564459], [-77.40126220308431, 34.50849211585034], [-77.40148658235223, 34.50833311130445], [-77.401655236446, 34.508295225402485], [-77.40212701151812, 34.50821415275541]], [[-77.26702780435252, 34.600709074459814], [-77.26606058235186, 34.60038423382747], [-77.26580458636673, 34.59990216117208], [-77.2656877136572, 34.599691703712054], [-77.2661121078387, 34.599294301431215], [-77.26660937910114, 34.599022655881775], [-77.26759233532184, 34.59907572862221], [-77.2673109671387, 34.59964643269204], [-77.267347944947, 34.59982221097654], [-77.26724585143907, 34.59994033863197]], [[-77.35702707009867, 34.56097786796619], [-77.3572430595728, 34.56087379382372], [-77.35739998307878, 34.56090148237391], [-77.35727601568786, 34.560750192595314], [-77.35724313927174, 34.56072960184738], [-77.35689588891239, 34.56075458618349], [-77.35685297294145, 34.56038654048865], [-77.3568512267681, 34.56038481941237], [-77.35684941503303, 34.56035173298129], [-77.35682640478512, 34.56036557465223], [-77.35681639085772, 34.56039180662623], [-77.3566235591353, 34.560600856758406], [-77.35645502225485, 34.56116904276441], [-77.35639694758552, 34.561301290222666], [-77.35645493288527, 34.561328048135145], [-77.35652979150865, 34.5612821671609]], [[-77.39455721190112, 34.511299154611635], [-77.39435441606169, 34.51139198568198], [-77.39400318024175, 34.511471911906064], [-77.39395997323045, 34.51148167880723], [-77.39389902299762, 34.51147565328696], [-77.39356761151907, 34.51147881655863], [-77.39334543682101, 34.51148732233637], [-77.39317574548318, 34.51145392041439], [-77.39307140606077, 34.51145347982629], [-77.3929798233893, 34.51144098906697], [-77.3928915716825, 34.51141433031948], [-77.39298175532736, 34.51135513399618], [-77.39301519432688, 34.511294077195856], [-77.39309182496356, 34.51126301225804], [-77.3931808297891, 34.51122795101668], [-77.39326521108688, 34.51116736651813], [-77.39340565381201, 34.51109530190371], [-77.39357798971912, 34.51101746671958], [-77.3937649719322, 34.51091381211761], [-77.3939753622287, 34.51079743829868], [-77.39400495860839, 34.51078222277614], [-77.39406479767845, 34.5107553342213], [-77.39427032876327, 34.5106629794388], [-77.39437223844283, 34.510599385165726], [-77.39466339544616, 34.51066893583125], [-77.3947993444136, 34.51086873123302], [-77.39479631997392, 34.51091881859331], [-77.39465569202304, 34.51115971761551]], [[-77.33526983971092, 34.536241148697144], [-77.33530618612086, 34.536222694983024], [-77.3353454339583, 34.53623027798304], [-77.33533838412463, 34.5363320392096], [-77.33534270498183, 34.53635307876787], [-77.33530227490529, 34.53639141486162], [-77.33527186395324, 34.536382362422316], [-77.33527481088286, 34.53636284217878], [-77.33527182267036, 34.53634358911725]], [[-77.38558050091112, 34.5349925313144], [-77.3855840436803, 34.534993277385595], [-77.38558005749854, 34.53501216852763], [-77.38552134309279, 34.53503856973482], [-77.38557755469998, 34.53499421328961]], [[-77.37074242778742, 34.51828120563203], [-77.3708729521278, 34.51836805916814], [-77.37091101689936, 34.51842056118248], [-77.37091437303371, 34.51850125170223], [-77.37089078565185, 34.51859595544183], [-77.37086500019552, 34.51864652371403], [-77.37080467646322, 34.51866115666051], [-77.37064237693544, 34.518697259226926], [-77.3704944708777, 34.518654641597045], [-77.37044729407873, 34.51864674180018], [-77.37032381482484, 34.51858636506858], [-77.3702954190066, 34.518563962043906], [-77.3702539538442, 34.51851970577849], [-77.37021653417169, 34.5184794126777], [-77.37016330836158, 34.518422595678], [-77.37011007824046, 34.51837234121806], [-77.37000942163681, 34.518297718012064], [-77.36996807133306, 34.51821006913313], [-77.3699507840585, 34.51815047119395], [-77.36997134905667, 34.51808748624094], [-77.37006831419232, 34.51805455658358], [-77.37015591027094, 34.51805311877375], [-77.37026491145461, 34.51803849911996], [-77.37036877288557, 34.51809023045711], [-77.37049580907109, 34.51817083047882], [-77.37065278272173, 34.51824019111874]], [[-77.37379984911365, 34.517094372388975], [-77.37381869402495, 34.51708734893256], [-77.37413640352658, 34.51676143355225], [-77.37443252702015, 34.51663826008121], [-77.37461548493832, 34.51656464461629], [-77.37469225907755, 34.516535202160064], [-77.37483094752977, 34.51646773123567], [-77.3750122237148, 34.51637605725305], [-77.37535865069971, 34.516362753434024], [-77.37540502630937, 34.516360708224646], [-77.37544092584012, 34.516379794155554], [-77.37580548486395, 34.51656418956097], [-77.37582212606827, 34.51658826470386], [-77.37592402557742, 34.516799804582234], [-77.37578462509708, 34.516926869218345], [-77.37563726857529, 34.51699501395959], [-77.37538821758415, 34.51710084434186], [-77.37505429958183, 34.51720805736519], [-77.37484864456052, 34.5172887791592], [-77.37459681285404, 34.517386491181306], [-77.37437321174755, 34.517373357444356], [-77.3741351052558, 34.517346298345274], [-77.37381792459668, 34.51712120114291], [-77.37380368257857, 34.51711445657691], [-77.37379292653016, 34.51710702677365]], [[-77.32914306746252, 34.531156819387625], [-77.32916043409159, 34.53113204557136], [-77.3295374217212, 34.53107860539126], [-77.329544876542, 34.531066306534115], [-77.32974808752272, 34.53092138496753], [-77.32993717423899, 34.53076815539942], [-77.32994573725024, 34.5307638624305], [-77.32993753733834, 34.530752537115006], [-77.32985599267113, 34.530776764425966], [-77.32963207773649, 34.53086489075051], [-77.32953926179863, 34.53099947251171], [-77.32924850254301, 34.531044780661794], [-77.32913152697508, 34.531117968335195], [-77.32908210883274, 34.531132833573864], [-77.32906538158551, 34.53118330465409]], [[-77.36589283877375, 34.524671184531975], [-77.36634900808326, 34.52469003680199], [-77.36646444266088, 34.52477352318533], [-77.36652239688846, 34.52480015991319], [-77.36657743402166, 34.52484628810041], [-77.36668489176061, 34.524918530308724], [-77.36672087942266, 34.52498140165359], [-77.3666650372426, 34.5250469468305], [-77.3666432964664, 34.52511499328326], [-77.3665952378656, 34.52522779672496], [-77.36660590792762, 34.52524279343937], [-77.36656650638498, 34.52532531339075], [-77.36650038398683, 34.52546354600019], [-77.36636617891294, 34.525504072688534], [-77.36626996844163, 34.52547404841639], [-77.36617101187237, 34.52545662678578], [-77.36606295162603, 34.525389383038316], [-77.36599568793034, 34.52533071307508], [-77.36592815795, 34.52525004018344], [-77.36590061020007, 34.52517168928215], [-77.36592470656512, 34.5250961136523], [-77.36589317154309, 34.52503513701506], [-77.36589007519876, 34.52491820133491], [-77.36592810002414, 34.52485079859908]], [[-77.34236163870314, 34.53512115912069], [-77.34220301629769, 34.53536633837437], [-77.34217385932352, 34.53548096511515], [-77.34217997253032, 34.53549995437384], [-77.34223495801297, 34.53551070850452], [-77.3423876250996, 34.53555523878289], [-77.34244804636083, 34.53553846577533], [-77.34264704132823, 34.53546291650636], [-77.3427831760128, 34.5354254033941], [-77.3428223491347, 34.53539964745691], [-77.34279532012009, 34.53528670281527], [-77.3427950695091, 34.535281162614545], [-77.34281651905155, 34.535259668741205], [-77.34285127712943, 34.53502825701151], [-77.34309994130084, 34.53493820109002], [-77.3431879940583, 34.53489412569026], [-77.34326832213486, 34.534917817635844], [-77.34345685597128, 34.53486355195223], [-77.34352068234985, 34.53480953908173], [-77.34356338969158, 34.534791214874986], [-77.34358372749001, 34.53475618733175], [-77.3435924875796, 34.53473800332666], [-77.34361162084495, 34.534690496137046], [-77.34361892099255, 34.53467299536762], [-77.34362126002742, 34.53465076863218], [-77.34360843766856, 34.534552094027525], [-77.34358908626884, 34.534524037272085], [-77.34346842636268, 34.53452506533019], [-77.34331634150759, 34.53454675376025], [-77.34319479482335, 34.53459956646553], [-77.34281294579158, 34.534788952703394], [-77.34280865051463, 34.53479639928364], [-77.34279614587133, 34.534863757202864], [-77.34263573676913, 34.53491376807934], [-77.34232808045822, 34.53505924690094]], [[-77.35705907361115, 34.54379093650226], [-77.35705681599421, 34.54371805017831], [-77.3570069132038, 34.54351824233927], [-77.35712597284626, 34.5433474301465], [-77.35727748585795, 34.543479285585924], [-77.35720562913161, 34.543680026431375], [-77.35715992838078, 34.543768223750234]], [[-77.33775464573286, 34.530348653094876], [-77.33773793440002, 34.53037780836242], [-77.33775921319356, 34.53039793901003], [-77.3377931951381, 34.53053621891474], [-77.33794566957766, 34.530441660697605], [-77.33782164365678, 34.53035070425049]], [[-77.34384845973884, 34.553246232633086], [-77.34367918066128, 34.553104536336335], [-77.34394793733969, 34.552998195684424], [-77.34395502147547, 34.55299038917902], [-77.34419962512767, 34.55303820521304], [-77.3441963103933, 34.553107818075986], [-77.34403245208426, 34.55321976453877], [-77.34398332665548, 34.553252556851916], [-77.34394118978575, 34.553290665025784], [-77.34385219415496, 34.55330103702482]], [[-77.35458330124342, 34.55427211654187], [-77.35461385145751, 34.55433064576481], [-77.35475942067322, 34.554369176194925], [-77.3549083314166, 34.55445090784787], [-77.35501619533682, 34.554332214458555], [-77.3549805378579, 34.55429456044659], [-77.35500451945478, 34.55421148400988], [-77.35497650456983, 34.55413103854309], [-77.35495272361335, 34.55409652865103], [-77.35495001169076, 34.55407628818516], [-77.35491819951775, 34.55402072039532], [-77.35490339670716, 34.5539908748516], [-77.35489883593701, 34.55398187439911], [-77.35489412917161, 34.55396677154919], [-77.35487853398993, 34.553889002448955], [-77.35486423848974, 34.553864443352815], [-77.35482392962606, 34.553851187012754], [-77.35479004324506, 34.55387512349103], [-77.35477486654355, 34.55390874443063], [-77.35472277989244, 34.553981557365795], [-77.35470725660062, 34.554000036493825], [-77.35468040137175, 34.55403892100625], [-77.35461741381356, 34.55414479504519], [-77.35460709290902, 34.554199677283606]], [[-77.39498090700474, 34.57662891236655], [-77.39501372401058, 34.576915739613156], [-77.39483489719439, 34.57699034642705], [-77.39466499420675, 34.5771488205918], [-77.39453641538712, 34.5771719551246], [-77.39459002876043, 34.57702566991232], [-77.39464099190984, 34.57661966411055], [-77.39464676318372, 34.57659291434676], [-77.39465220996244, 34.57657829544779], [-77.3946746339301, 34.57657856316346], [-77.39469930867955, 34.57658533437834]], [[-77.3449592022202, 34.54319882546842], [-77.34507886056196, 34.5432017826223], [-77.345351639946, 34.54320533789411], [-77.34540777460792, 34.543229121223604], [-77.34536907563582, 34.543464903609724], [-77.34536164279837, 34.543490922722846], [-77.34496940379299, 34.54378183239264], [-77.3449671754646, 34.543795709601326], [-77.34494492493201, 34.543817879418626], [-77.34491730346124, 34.54380671370702], [-77.34492033061642, 34.543788892855474], [-77.34492162049818, 34.54377353686584], [-77.34475257129364, 34.54356820949474], [-77.34478812042128, 34.54342175592256], [-77.34479422596904, 34.54331739692483], [-77.34486883631081, 34.54325106106042]], [[-77.3724923831002, 34.51794828395768], [-77.3724600534201, 34.51791122620097], [-77.37246793213318, 34.517884530467676], [-77.37246797264984, 34.517787670490584], [-77.37262951297637, 34.51760651413792], [-77.372747412608, 34.517575675179444], [-77.37288605566518, 34.517567915965905], [-77.37302178625504, 34.51761474429887], [-77.37311689607321, 34.517634519794456], [-77.37320987512982, 34.51768072986509], [-77.37314233581428, 34.51776783953656], [-77.37314388217033, 34.51793507124128], [-77.37301203107194, 34.51804376399539], [-77.37284072175541, 34.51811778131468], [-77.37278845720905, 34.518124627788346], [-77.37261845356444, 34.518092791679855], [-77.37252649638859, 34.51808158710372], [-77.37252621245236, 34.518024104031404]], [[-77.35932007709651, 34.54697994612393], [-77.35932555021202, 34.54693309843702], [-77.35932331660459, 34.5469049223322], [-77.35926147988519, 34.54690192528095], [-77.35926685104447, 34.54694765456487], [-77.35927143941208, 34.546986949593006], [-77.35928103609598, 34.54703562483624], [-77.35928425872085, 34.54705516995638], [-77.3593250874894, 34.54705705781423], [-77.35931080741038, 34.54703507835699]], [[-77.33669808097767, 34.53482073244799], [-77.33669876220124, 34.534802670386064], [-77.33672568961869, 34.53479984528731], [-77.33673519048293, 34.53482040637297]], [[-77.34967264709321, 34.55277548286355], [-77.34966961576252, 34.552761547018754], [-77.3496792797868, 34.55271332317419], [-77.34964800788657, 34.552698888189404], [-77.34961655505987, 34.55268101275194], [-77.34955669023492, 34.552673662351076], [-77.34955039243005, 34.55267531061686], [-77.34952862249858, 34.55270440071216], [-77.34952250682036, 34.552719124084916], [-77.34951630176724, 34.5527367763033], [-77.34951984254027, 34.55275418443287], [-77.34952839680831, 34.55279624100908], [-77.3495469445115, 34.552825194030454], [-77.34960358048512, 34.55281150865338], [-77.3496456553037, 34.55280116183229], [-77.34967584098827, 34.55279373869017]], [[-77.35929096205004, 34.54668802930829], [-77.35931122467154, 34.54667775934672], [-77.35931081008157, 34.54667300860201], [-77.35930781860512, 34.546646626579324], [-77.35928274242822, 34.54666390137421]], [[-77.35948988468488, 34.54750634878041], [-77.359496486282, 34.54749800657608], [-77.35949377790104, 34.54744959393791], [-77.35948892779221, 34.547445280583815], [-77.35949742245256, 34.547389274978485], [-77.35949423939925, 34.54737901751085], [-77.35942827440654, 34.54735563160875], [-77.35945133845392, 34.547411484195266], [-77.35947258278725, 34.54744763415758], [-77.35946484055854, 34.547497606931564], [-77.3594510225794, 34.547532412665646], [-77.35948905954963, 34.54750939044707]], [[-77.34286524207243, 34.52588166006586], [-77.34284206950755, 34.52594863501154], [-77.34291677279472, 34.5259067485633], [-77.34292358084491, 34.52588695450094]], [[-77.3592801951381, 34.546575488358506], [-77.35923760389252, 34.54657984701706], [-77.35923008579346, 34.54661341042179], [-77.35929890018517, 34.54660967062286]], [[-77.3483323736087, 34.55114852339411], [-77.34833120440396, 34.55114766183291], [-77.34833039941614, 34.55114547307396], [-77.34832726383304, 34.5511405782198], [-77.34832708060931, 34.55113744323226], [-77.3483251338612, 34.55113323407019], [-77.34832556523267, 34.55112759646033], [-77.34833457871224, 34.55112447469072], [-77.34833917458042, 34.551128293124734], [-77.34834469572337, 34.55113041921761], [-77.34834213941409, 34.551135662106034], [-77.34834182994562, 34.551138482230016], [-77.34834341140044, 34.55114017237525], [-77.34834412031566, 34.551144388144685], [-77.34833992923083, 34.55114640637464], [-77.34833853324574, 34.55114943131305], [-77.34833398700891, 34.55115017940437]], [[-77.33875416813038, 34.55242872041298], [-77.33875396613882, 34.55243065254414], [-77.33875065064514, 34.55243138114173], [-77.33875138499296, 34.55242939620653]], [[-77.43130416952543, 34.50245853040128], [-77.43162087051162, 34.502396202568804], [-77.43186518804995, 34.5024367460162], [-77.4326311973756, 34.50254841101801], [-77.43275126649519, 34.50270271049551], [-77.43312975140923, 34.5029899010392], [-77.43319670188741, 34.50303591761163], [-77.4332611002971, 34.50306647991119], [-77.43327793907271, 34.50312338217209], [-77.43317914850316, 34.50317074452791], [-77.43309902758327, 34.503630558720005], [-77.43304970231462, 34.50373123412321], [-77.43294158036386, 34.50395191764872], [-77.432972665448, 34.50406507306273], [-77.43287361321697, 34.504115135921616], [-77.43278167743777, 34.504180813915056], [-77.43257311871211, 34.50438246377631], [-77.4326160628626, 34.50458409393764], [-77.43227593399335, 34.50479452152277], [-77.43138967624455, 34.50476222382902], [-77.43091056061887, 34.50472634658438], [-77.4304381544661, 34.504476257450946], [-77.43026016176333, 34.50426447688379], [-77.43031982224674, 34.50406219032385], [-77.43022792226617, 34.5038032476571], [-77.42982668542535, 34.503566820434855], [-77.4301135155653, 34.50336777365762], [-77.43026487946636, 34.50325141131379], [-77.43046558548173, 34.50309711703966], [-77.43050784451097, 34.502965296023426], [-77.43059467689339, 34.502930468728906], [-77.4307071188922, 34.50277027105042], [-77.43068401847569, 34.502597258639156], [-77.43079950816191, 34.50251291843264], [-77.43096181872312, 34.50244857902942]], [[-77.33557498576968, 34.57448572484134], [-77.33524264931101, 34.57445684827548], [-77.3351714899327, 34.57448223921797], [-77.33512244768181, 34.57449795109166], [-77.33497443670434, 34.57454536987437], [-77.33482601249113, 34.57459339402381], [-77.33478432121102, 34.57460686153489], [-77.33477737429727, 34.57461941944666], [-77.33466840352415, 34.57482832047608], [-77.33470738107954, 34.574959867981065], [-77.3347321994569, 34.575031419806855], [-77.3347416055919, 34.57506821528146], [-77.33511472457128, 34.57540097124744], [-77.33510218870639, 34.57547657934103], [-77.33517045172994, 34.57576840000466], [-77.3353657067784, 34.57536489119452], [-77.33564103182533, 34.574982595554516], [-77.33567350133032, 34.57477946808181]], [[-77.23839492503372, 34.59384131357728], [-77.23768601105361, 34.59433251087505], [-77.23738253263244, 34.59441993545362], [-77.23715909183805, 34.594521143834], [-77.23653951390295, 34.59456854716329], [-77.2364798574987, 34.5945742636417], [-77.23645711906771, 34.594582354973994], [-77.23612551206818, 34.59469062545955], [-77.23522288786374, 34.59477079819089], [-77.23466852763988, 34.594784230313806], [-77.23457716277254, 34.594535302700265], [-77.23444861223697, 34.59440363230317], [-77.2334772572982, 34.59380638645136], [-77.23339259680118, 34.59350909077749], [-77.23340758247667, 34.59315565750252], [-77.23328921633413, 34.59242674521554], [-77.23383928327385, 34.5918724439387], [-77.23440040209957, 34.5914092503546], [-77.23503328418236, 34.5906789066012], [-77.23508816071497, 34.59062477398545], [-77.23571831563483, 34.58995212693679], [-77.23608524769509, 34.58981916916125], [-77.23742876769658, 34.58933234180453], [-77.2387437724477, 34.59002882904578], [-77.23875476260154, 34.590032846543195], [-77.2387590424934, 34.59003552536354], [-77.23878808026062, 34.59005370002205], [-77.23953694307136, 34.590474852963055], [-77.23961063213272, 34.590568531168], [-77.24002279971339, 34.59087013256271], [-77.24018607428127, 34.590966656986794], [-77.24037007048149, 34.59109975754883], [-77.24027855723726, 34.59137974614153], [-77.2399815743733, 34.59177795962134], [-77.24096059236749, 34.59208901412231], [-77.23922093791643, 34.59245409232773], [-77.238885892676, 34.59277035869046], [-77.23826866817757, 34.592819487240305], [-77.23817803444878, 34.59284865079053], [-77.23786027183, 34.59293927472372], [-77.23767114678868, 34.59300445418488], [-77.23716666579624, 34.593180890976484], [-77.23711312206127, 34.59319971984049], [-77.23710869639226, 34.59329539100388], [-77.23731466188478, 34.593510846385435], [-77.23810526364207, 34.593749307647855]], [[-77.26276050112547, 34.59663351737372], [-77.26299353791056, 34.59712380647524], [-77.26229244732156, 34.597813135714816], [-77.26214072077656, 34.59847013091744], [-77.26158483437493, 34.599120990881545], [-77.26255843763812, 34.59965238895014], [-77.26271945838593, 34.60016576862405], [-77.26285010358626, 34.60041126012053], [-77.2635229633344, 34.6013345442653], [-77.26435410289594, 34.60227515828406], [-77.26448442232915, 34.60242511421032], [-77.2644979456052, 34.6024391060965], [-77.26451312648581, 34.6024548127835], [-77.26655965659728, 34.60313667686936], [-77.26843122327544, 34.603271150522005], [-77.26868440361481, 34.60234094212731], [-77.26947685874067, 34.60093218183394], [-77.26996913595151, 34.599380949075076], [-77.27017117311952, 34.59884469675585], [-77.27095476495194, 34.597277662333774], [-77.27174322524215, 34.59570082073165], [-77.2720470644787, 34.595202628612626], [-77.27072622194419, 34.59479663085175], [-77.26823192432312, 34.595103903808536], [-77.26569438471971, 34.59558026505324], [-77.2643619743025, 34.59608763156415]], [[-77.4285779580003, 34.491926697360874], [-77.42766237941565, 34.491972178396956], [-77.42854789252264, 34.492156132895786], [-77.42820921390742, 34.49267564241334], [-77.42830755289803, 34.49298354410473], [-77.42824325551166, 34.493352920782485], [-77.42820163204888, 34.493902465738245], [-77.42832124355624, 34.4940324424668], [-77.42819758303219, 34.494118391877485], [-77.42853316688087, 34.49451212047813], [-77.4288204729819, 34.49473346549742], [-77.42914125395104, 34.4949773713268], [-77.42916733729695, 34.495426709578396], [-77.42890870809, 34.49565238806724], [-77.42894454341021, 34.49575310921735], [-77.42853984611264, 34.49604537903943], [-77.42851802353142, 34.49605662091865], [-77.42832680904779, 34.496059346959704], [-77.42765902188052, 34.4962331913605], [-77.42724184443763, 34.4962233712078], [-77.42696825841733, 34.49611198141457], [-77.4269045670007, 34.495986739330974], [-77.42676332242004, 34.495797766749455], [-77.42658757545789, 34.49563278349672], [-77.42656754457715, 34.49553844547057], [-77.42606385642377, 34.49526826870729], [-77.42644772441999, 34.49481824788203], [-77.42499838712952, 34.494538307474905], [-77.42431087604126, 34.49436842519535], [-77.42444602278607, 34.493482866753226], [-77.42450478306691, 34.493162010013755], [-77.42536521482539, 34.492741425841004], [-77.42553724816375, 34.4925392067895], [-77.42575406957826, 34.49204940639853], [-77.42339822880932, 34.4917543988905], [-77.4233355443873, 34.49174667468034], [-77.42328123594599, 34.49107287731003], [-77.4239294330215, 34.49085503772569], [-77.42393379011884, 34.49076844499072], [-77.42435129107369, 34.490568016022465], [-77.42451673692574, 34.4905464158269], [-77.4246408360516, 34.49046679191958], [-77.42518428422594, 34.49027680414855], [-77.42552197532525, 34.489923974902545], [-77.42611923630776, 34.48954303987975], [-77.42599305919998, 34.48918477412657], [-77.42658873723735, 34.488899345306045], [-77.42694481075326, 34.48875610352712], [-77.42745876808979, 34.488584082249794], [-77.4278082616479, 34.48843432989081], [-77.42877357491938, 34.488651211107324], [-77.42882425352717, 34.48888075951903], [-77.42987095560116, 34.48938276263344], [-77.42893478179381, 34.48972355931579], [-77.4288238805162, 34.490446487079595], [-77.42911348610374, 34.49069517940562], [-77.42936255327871, 34.49111980831051], [-77.42865407150556, 34.49153216545165]], [[-77.44760956182509, 34.48205688456746], [-77.44829329217586, 34.48130975545623], [-77.44779132691836, 34.48083873757279], [-77.44848838556292, 34.480345662417875], [-77.44999661988714, 34.48095097547215], [-77.44999051266073, 34.480956243759145], [-77.44913929167602, 34.48172090310133], [-77.44777410648545, 34.48218891550581], [-77.4476681856247, 34.4822714326115], [-77.44673429357177, 34.482135977313966], [-77.44753280976659, 34.48212833051504]], [[-77.46803174423486, 34.507531821394444], [-77.46802191195421, 34.50753622720144], [-77.46613627475597, 34.50779935333861], [-77.46605257554754, 34.50811186110211], [-77.46599372333935, 34.50832413627674], [-77.46568377210818, 34.508760033755294], [-77.465679641161, 34.50876561836116], [-77.46568117846194, 34.50876853440558], [-77.46566371865534, 34.50878051646966], [-77.46499193851193, 34.50940907996867], [-77.46555466601843, 34.509892938815014], [-77.46584559583468, 34.51012789182948], [-77.46451046263057, 34.51057387097243], [-77.46439530400293, 34.51072983335946], [-77.46398672524882, 34.51091354452387], [-77.46391578491699, 34.511259639720976], [-77.46401644692615, 34.511386124622604], [-77.46431530611883, 34.511667123682784], [-77.46440340037975, 34.51178780754956], [-77.46457276552731, 34.51179215075114], [-77.4647882996475, 34.51158670954391], [-77.46495194247613, 34.51143358375324], [-77.46497518392593, 34.51139356127341], [-77.46504360370818, 34.511343361108004], [-77.46539095807923, 34.51100145486564], [-77.46610476522011, 34.510298831075836], [-77.46634772645427, 34.510153358979665], [-77.46725055404222, 34.50952847279489], [-77.46725692413084, 34.5095139385099], [-77.46757170418039, 34.508864413727196], [-77.46768333941199, 34.50855062912851], [-77.46804667079246, 34.50755063637919], [-77.46805022364846, 34.5075407951875], [-77.46805137442665, 34.50753772118767], [-77.46805281124978, 34.507532182064104], [-77.46848803081917, 34.50620883895122], [-77.46739934273172, 34.50484871236818], [-77.46740539530282, 34.50480292549097], [-77.46751713483336, 34.5046803113855], [-77.46727212158515, 34.504719614627945], [-77.4672500203702, 34.50477619856155], [-77.46724198825326, 34.50479464014571], [-77.46722282412696, 34.504834102474106], [-77.46692381885117, 34.506129516979]], [[-77.3329571542724, 34.63416644539829], [-77.3330183153501, 34.63418718778295], [-77.3330337615119, 34.63410993134731], [-77.33300329150656, 34.6340125418583], [-77.33288651123355, 34.6338146834509], [-77.33257229189839, 34.63371786480704], [-77.33254991049317, 34.63373252890141], [-77.33253584052876, 34.63373662182698], [-77.33237641703704, 34.63366558957425], [-77.33225702673452, 34.63379450702922], [-77.33232017367533, 34.633868875287575], [-77.33243522209797, 34.63398920798032], [-77.33245727716508, 34.63399691254708], [-77.332558565859, 34.63377562859419], [-77.33286058006394, 34.634133692538164], [-77.33293017067624, 34.63415729406774]], [[-77.36376855502148, 34.527611271171935], [-77.36376678176622, 34.52761177512083], [-77.36374865348988, 34.52762416990522], [-77.36336905035786, 34.527840297097384], [-77.36314539996084, 34.52780475738521], [-77.3632019145007, 34.52793662315169], [-77.36309181597042, 34.52812139815904], [-77.36299337825997, 34.5282114878058], [-77.36299826656818, 34.528229889364674], [-77.36305802608689, 34.5283883617289], [-77.36301148462162, 34.52845370482106], [-77.3630052041171, 34.528481630917916], [-77.36303457331378, 34.5286474998045], [-77.3630273247942, 34.528696248286515], [-77.36315568860539, 34.528797201203155], [-77.36315811979375, 34.52879982032165], [-77.36316744566187, 34.52880894694678], [-77.3632080516681, 34.528915040338056], [-77.36327210271372, 34.528950461455466], [-77.36329014262844, 34.528964421607526], [-77.36329170717411, 34.52899359773254], [-77.36321441602374, 34.52903653619859], [-77.3632120607545, 34.52907902273689], [-77.36300473182374, 34.52915285844457], [-77.36294670829119, 34.529145588304964], [-77.36268726254778, 34.5289900577648], [-77.36262498851679, 34.52895755015183], [-77.36256044621055, 34.52887194215969], [-77.36237893535883, 34.52866104107315], [-77.3622754143959, 34.5285597306853], [-77.36220677652332, 34.52834145771618], [-77.36220191752263, 34.52832549282], [-77.36225021916405, 34.528275711193274], [-77.36242787181301, 34.5280481206298], [-77.36249472175118, 34.527984848637075], [-77.36258180750568, 34.5279374475913], [-77.36285469880185, 34.52774181365382], [-77.36262961437049, 34.5275537595852], [-77.36259834492608, 34.52753391530872], [-77.3625960517338, 34.5275311538215], [-77.36259143544534, 34.52751625532888], [-77.36248914610606, 34.52712931387164], [-77.36250617197092, 34.5270575420289], [-77.36251074490765, 34.526999180272945], [-77.36258141535887, 34.52680187858145], [-77.36260851210595, 34.52676920800366], [-77.36292343688906, 34.52670328018792], [-77.36299196322904, 34.5264979144314], [-77.36321293405445, 34.52634742901864], [-77.36340487231273, 34.52595333415294], [-77.36340278862262, 34.52594908449506], [-77.36340211310966, 34.525942760186275], [-77.36341247012484, 34.52594004835979], [-77.36369178815968, 34.52558699673222], [-77.36381465499883, 34.52551619646324], [-77.3639524028886, 34.525380258161036], [-77.3640119550183, 34.52524607239912], [-77.36421658262783, 34.5251034297593], [-77.36451991789308, 34.52510920805726], [-77.36481544392306, 34.52525592595224], [-77.36499701195035, 34.525303431114175], [-77.36526442105128, 34.52535883152839], [-77.3653874648542, 34.52539304953618], [-77.365402759286, 34.525406408236115], [-77.36540815946101, 34.5254153605487], [-77.36546742741024, 34.52545761863437], [-77.3655607730606, 34.52552817241144], [-77.36562574643688, 34.52562883827505], [-77.3655687546726, 34.52576351893393], [-77.36553529088498, 34.52598736586563], [-77.36554766365767, 34.52612973986012], [-77.36544609312637, 34.52633915873759], [-77.36543481990218, 34.52639082340122], [-77.36538704365435, 34.526411950921535], [-77.36536378772979, 34.52643032841441], [-77.36526832855975, 34.52653722272106], [-77.36524793166906, 34.52659261930855], [-77.36517267756372, 34.52667341579786], [-77.36518830791522, 34.526775702528575], [-77.36517120688158, 34.52680364637522], [-77.36497293903791, 34.52694701743379], [-77.36496805071731, 34.52695315034377], [-77.36495903463417, 34.5269668520186], [-77.36479575302768, 34.52711767052655], [-77.364573203172, 34.527249430595475], [-77.36456961866473, 34.52725599307659], [-77.36455994613874, 34.52725508947513], [-77.36455299830789, 34.52725665277178], [-77.36424094133798, 34.52734441618098], [-77.36416393627458, 34.52740841336132], [-77.3637695801401, 34.52761002462091]], [[-77.41795964627488, 34.4962052471993], [-77.41903847546583, 34.49576977274973], [-77.41983403869949, 34.49630107132387], [-77.41948703304936, 34.49688680610677], [-77.4194790304036, 34.49695847144549], [-77.41937679640655, 34.4970092942396], [-77.41918714866213, 34.497043355178945], [-77.41803353941813, 34.49702152847064], [-77.41775727941183, 34.49687044719336], [-77.41788320631673, 34.496470717262326], [-77.41788336856109, 34.49623385977808]], [[-77.30863385752433, 34.54518683383262], [-77.30879631482993, 34.54508667776726], [-77.30881825219008, 34.54507402300852], [-77.30886844075019, 34.54505332374009], [-77.30959016580468, 34.544718868283226], [-77.30995382315683, 34.544633379718185], [-77.31025415621517, 34.54436474894139], [-77.3111818405788, 34.543813023470435], [-77.31170314101534, 34.54349790792337], [-77.31245607652626, 34.54306933443936], [-77.31277405664147, 34.54288257463404], [-77.31336354330783, 34.54257591428305], [-77.31356902766152, 34.542465273953646], [-77.31365469298507, 34.542460940886514], [-77.31370690035902, 34.54240008802896], [-77.31436336006152, 34.542074878424465], [-77.31467133793184, 34.541962360586226], [-77.31550675657489, 34.54165196756398], [-77.31582295980151, 34.541529520824895], [-77.3159481746003, 34.54145755754138], [-77.31623988169122, 34.54136609625696], [-77.3175253353085, 34.54116636475703], [-77.31801014045699, 34.54099259711881], [-77.31831509670471, 34.54097005796768], [-77.31841452285927, 34.540804252501225], [-77.31841935903641, 34.5407439741301], [-77.31879432323015, 34.54049236162643], [-77.31885937221965, 34.54043595153734], [-77.31911597785003, 34.54029784140039], [-77.31925884655814, 34.5402217337452], [-77.31946913733654, 34.54010353909047], [-77.31991170414062, 34.539845695971344], [-77.32028083999316, 34.53975800789676], [-77.32035646874904, 34.539762578043245], [-77.32069939105259, 34.53973739218702], [-77.32113787315188, 34.53937416353943], [-77.32125601375486, 34.539206951572275], [-77.32205647237342, 34.53875254957312], [-77.32216504898598, 34.53865594776063], [-77.32229664855113, 34.53858272341938], [-77.32243818989309, 34.53860905089224], [-77.32356911603885, 34.53834602320149], [-77.32387987779846, 34.53802773892542], [-77.3239129606069, 34.53799615360465], [-77.32436231721145, 34.53773860496254], [-77.32497434001709, 34.53735399379347], [-77.32547501513032, 34.536960693860856], [-77.32603012597457, 34.536563414697326], [-77.32627575387721, 34.53629038580962], [-77.32639598077819, 34.53617042005818], [-77.32655176908968, 34.53598039796266], [-77.32665791917798, 34.535875449694174], [-77.32681824467124, 34.535778839882475], [-77.32707586001436, 34.53564669513189], [-77.32721161946492, 34.53556355821298], [-77.327617072799, 34.53534884881442], [-77.32786971781115, 34.5352709702012], [-77.3281851414803, 34.53522754232584], [-77.3283127901214, 34.53519080233612], [-77.32866122649267, 34.53499591030154], [-77.32877512306867, 34.53491910369296], [-77.32903401175052, 34.5348119706775], [-77.32919786013863, 34.53462812343689], [-77.32945713577064, 34.53453135782536], [-77.3297438983154, 34.5343971846234], [-77.3298896466629, 34.53419933783378], [-77.33025469787447, 34.53399530276954], [-77.33090655044052, 34.533969672932066], [-77.33144682879924, 34.53348583398497], [-77.33168589928816, 34.53335551178269], [-77.33184147806125, 34.533281119542934], [-77.33223921951591, 34.53312609431417], [-77.33263409306561, 34.53295695538504], [-77.33282235175933, 34.53291523690836], [-77.33303037076803, 34.532768519741246], [-77.33342775852013, 34.532587244820256], [-77.33374703728097, 34.53237184477974], [-77.33382590037863, 34.53234584530779], [-77.33422041023377, 34.532109951408366], [-77.33422393923647, 34.53210878430233], [-77.33422536414065, 34.532107931322564], [-77.33422780551584, 34.532106703908354], [-77.33479235411373, 34.53188718861069], [-77.33501410503982, 34.531889327443515], [-77.33520953126472, 34.531844295923094], [-77.33570626940771, 34.53189409192678], [-77.33576132008419, 34.53190949581586], [-77.33579768013803, 34.531954030376], [-77.33583342455287, 34.531897278229025], [-77.33597042033455, 34.53185610361534], [-77.33619356700692, 34.5318094938465], [-77.33623833528925, 34.53181757335381], [-77.33639052382844, 34.53191612391346], [-77.33658276783436, 34.53195348048523], [-77.3369681505939, 34.53195295904351], [-77.3369777545687, 34.53195450500747], [-77.33736499449472, 34.53207645160078], [-77.33745952010217, 34.53207267563315], [-77.33775942245535, 34.531994812975775], [-77.33814660795419, 34.53203275140301], [-77.33814345418615, 34.532037887775324], [-77.33814887443097, 34.532128087272895], [-77.33816749616955, 34.53250236456013], [-77.33819310025311, 34.53251569946933], [-77.33822412996956, 34.53256447162395], [-77.3387486379846, 34.53292542919406], [-77.3387164625634, 34.533052359230865], [-77.33891356374357, 34.53300907475007], [-77.33912038306207, 34.53311677627423], [-77.3392411797483, 34.53313803261595], [-77.33930107101298, 34.53322668203693], [-77.33937318534134, 34.53332523112618], [-77.33947085396497, 34.53344693338402], [-77.33968809759051, 34.53346515534912], [-77.33972585564848, 34.53351932017134], [-77.33972968074593, 34.53373377873426], [-77.33975818170616, 34.533759488338774], [-77.33995006688058, 34.53390156388514], [-77.33967209482248, 34.53415700593533], [-77.3394872315189, 34.534173036415964], [-77.33914340300473, 34.53433755438666], [-77.33897636070836, 34.53442112377048], [-77.33887951813654, 34.53448037587177], [-77.33883701682453, 34.534409158691254], [-77.33870355951845, 34.534400819966216], [-77.33836803851013, 34.5342813064653], [-77.33839031230544, 34.53395623969649], [-77.33810881182653, 34.53385870496595], [-77.33777090850054, 34.53383423670955], [-77.33768750563844, 34.533830845927646], [-77.33732246860025, 34.53391273233919], [-77.33721946416367, 34.534062563899916], [-77.33692507513273, 34.534121988082816], [-77.33686594209924, 34.53413884841202], [-77.33672822877976, 34.53414670621805], [-77.3366102491069, 34.53421225719488], [-77.33655669926782, 34.53423669084504], [-77.33652907895619, 34.534270843222274], [-77.33645472016276, 34.534357033351945], [-77.33641102845394, 34.534414172988235], [-77.33629587085483, 34.53450228664157], [-77.3362281810062, 34.53457355459023], [-77.33612738643718, 34.534665456247474], [-77.33578907017782, 34.53478444407481], [-77.33573260059212, 34.53476191166004], [-77.33545764491944, 34.53469520675138], [-77.33522862621162, 34.53472577858935], [-77.33494582534206, 34.534834086264645], [-77.3345579546545, 34.5347539696707], [-77.33371794296869, 34.53490332142639], [-77.33337213556828, 34.5349842079854], [-77.33316287497884, 34.53506834016528], [-77.3327951527737, 34.53525049952942], [-77.33200299142823, 34.53549722293274], [-77.33177929975034, 34.53595841857272], [-77.33151645162005, 34.53560341518195], [-77.33100133002799, 34.53565087187711], [-77.33082634238458, 34.53591793766226], [-77.33020560340888, 34.536107527565335], [-77.33020204771232, 34.53611077864207], [-77.33019302005806, 34.536114246778496], [-77.32992086099998, 34.536470689642925], [-77.32930054858767, 34.5367321726679], [-77.32860449982492, 34.537434546388894], [-77.32821118522564, 34.53762551256811], [-77.32800652656269, 34.53789744204662], [-77.32751228245607, 34.53827886099176], [-77.32756696369842, 34.538450254575324], [-77.3270021566399, 34.53881260708029], [-77.32645750810988, 34.53875891403808], [-77.32621813256567, 34.5387645016359], [-77.32555005687904, 34.5391511418413], [-77.32542292370093, 34.539196474780354], [-77.32530343607924, 34.53926520850885], [-77.32436486638511, 34.539727242641916], [-77.32383574735869, 34.539920315591736], [-77.3232852396074, 34.53989884641057], [-77.32289186938233, 34.54000362091536], [-77.32226515759419, 34.53993215694862], [-77.32204135838191, 34.53987437553881], [-77.32168176423986, 34.53991115624933], [-77.32147870877542, 34.5399874722205], [-77.32096536005386, 34.54005911829624], [-77.32068889916354, 34.54018662491819], [-77.32024978393352, 34.54048100926305], [-77.3201089525162, 34.540635756436956], [-77.31989157026435, 34.54070742571601], [-77.31958523981582, 34.540877561153145], [-77.31938702094581, 34.54091654602887], [-77.31909954558235, 34.54100086105801], [-77.31891812549007, 34.54104952377988], [-77.31857108712421, 34.54121180045426], [-77.31839876321973, 34.54129344488389], [-77.31830505082809, 34.541399677898006], [-77.31778864567849, 34.5414931632167], [-77.31756214711281, 34.54184635929919], [-77.31750883275461, 34.541871826936536], [-77.31748758475767, 34.54187034151098], [-77.31696033591336, 34.54208348407474], [-77.31671371196325, 34.54229669160259], [-77.31616586942957, 34.54253654277192], [-77.31604234978042, 34.54263012751344], [-77.31591777635188, 34.54275600317369], [-77.3151200334147, 34.54317465793589], [-77.31466584181297, 34.54373122834462], [-77.31454637754996, 34.543889014210045], [-77.31464868903394, 34.54449958940249], [-77.31479000736655, 34.54469263693632], [-77.31522513703686, 34.54502886385258], [-77.31526309727495, 34.545114313934576], [-77.31545699189145, 34.54532628500119], [-77.31544289613821, 34.54534678381347], [-77.31546445109801, 34.54534963333886], [-77.31554115896026, 34.54556399920173], [-77.31558909411974, 34.54563906173283], [-77.31545714605, 34.54566160841256], [-77.31523707089048, 34.545716050810896], [-77.3150629357297, 34.54573005135208], [-77.31483734109996, 34.54590989320634], [-77.31476438965163, 34.54598271278731], [-77.31462081426815, 34.54618580013311], [-77.3144626467228, 34.54633262918195], [-77.31454093172735, 34.546511355314415], [-77.31455902819818, 34.54668429483618], [-77.31452109188686, 34.546767642538796], [-77.3144562005519, 34.546826368786], [-77.31444774767262, 34.54685167005175], [-77.31434364494352, 34.54696003729212], [-77.31433524565999, 34.54701589826766], [-77.31424591062768, 34.547087717188205], [-77.31421209324691, 34.54710133488863], [-77.31407084308115, 34.54713556275777], [-77.31385707410803, 34.54726970941443], [-77.31384895734375, 34.547272870258794], [-77.31348504192403, 34.547309716663385], [-77.31345589270073, 34.54729203833485], [-77.31334597187363, 34.54727939698295], [-77.31339286676194, 34.54734138735849], [-77.31322386298942, 34.547507190796864], [-77.31310173769279, 34.547628004457344], [-77.31308906631709, 34.54765115394637], [-77.31305455938269, 34.54766390169007], [-77.31287091900606, 34.547905959903716], [-77.31278630296114, 34.54800057581529], [-77.31270374733644, 34.54817477538381], [-77.3126866391699, 34.548200476540565], [-77.31264683213391, 34.548308297318066], [-77.31258430551247, 34.54839907675926], [-77.3125633177579, 34.548439750342936], [-77.31258996796927, 34.548469029820325], [-77.31258888070599, 34.548558484535334], [-77.31257373237446, 34.54864236934843], [-77.31257251951271, 34.5486832387358], [-77.31242859690572, 34.54882012336789], [-77.31242118032485, 34.54883792621299], [-77.31227135683235, 34.54897129373953], [-77.31225593561642, 34.54898447098853], [-77.3122378978536, 34.549003899173236], [-77.31208937114575, 34.54915178816501], [-77.312036276353, 34.54923027124404], [-77.3120154333855, 34.549252851851946], [-77.31192416966127, 34.549319769320604], [-77.31183621136006, 34.5493902421774], [-77.31166149322414, 34.549440274812596], [-77.31155940793921, 34.549563141151104], [-77.31151088894649, 34.5496153660043], [-77.31147099746985, 34.54969824044796], [-77.31143569932922, 34.54972636844428], [-77.31128052792602, 34.5497516110984], [-77.31108258747143, 34.549876414367915], [-77.31103877271019, 34.5499095684684], [-77.31073970333748, 34.54998508616006], [-77.31035653730068, 34.55022546848889], [-77.31028016308805, 34.55025815151951], [-77.31024497299603, 34.550273455660516], [-77.30984632129532, 34.55054373361638], [-77.30953571211326, 34.550832933384164], [-77.30948778882119, 34.55086599647753], [-77.30944530376105, 34.5508869572679], [-77.30925009338526, 34.550998669030335], [-77.30923120154804, 34.55100836671329], [-77.30904805483918, 34.55108344145398], [-77.30892523968859, 34.551088888693], [-77.30890811136614, 34.551167843504764], [-77.30865048701405, 34.55129341619836], [-77.30851007044703, 34.55138356577203], [-77.30825891571185, 34.55150212832794], [-77.30825299925051, 34.55149989570187], [-77.30823481219662, 34.55150931012937], [-77.30790044627922, 34.551583527434026], [-77.30785802615574, 34.551599299607325], [-77.30759882458717, 34.55175986465866], [-77.3070668929013, 34.55184845965632], [-77.3068776337965, 34.55207912868765], [-77.30688725151137, 34.55219236816237], [-77.30666350092638, 34.55230569588352], [-77.30652505473438, 34.55240429251495], [-77.30632765003948, 34.55247954419265], [-77.30626733105736, 34.55245571923745], [-77.30589805273941, 34.55257916479148], [-77.30587423543919, 34.55258418490237], [-77.30586163764255, 34.55259055132488], [-77.3057992205521, 34.552547645080566], [-77.30557178181178, 34.55238118776597], [-77.30557841596541, 34.5523221107246], [-77.30506375432705, 34.551964488561154], [-77.3051126731854, 34.551709105975824], [-77.3035078089213, 34.55120857041799], [-77.30338100754228, 34.55108798620194], [-77.30315554584912, 34.5512099273548], [-77.30310539330864, 34.55123543146225], [-77.30300186107395, 34.551281184364534], [-77.30156256586312, 34.55216129767188], [-77.30113141147245, 34.5522614780898], [-77.30046586470053, 34.5526243247986], [-77.30001851844926, 34.553629600853576], [-77.3000865276481, 34.55365797971669], [-77.30004082076944, 34.553717878832046], [-77.30018521543981, 34.554468631688906], [-77.30006905971217, 34.55463970991146], [-77.30004631104168, 34.55471439783618], [-77.30029190696945, 34.55509734645774], [-77.3002253133757, 34.55529852020681], [-77.30024497115771, 34.555348887459125], [-77.30009471013034, 34.5554833587148], [-77.30009630047277, 34.55549262215433], [-77.29997265066118, 34.55554812872227], [-77.29995189323373, 34.55557454336147], [-77.29991102012889, 34.555592918793465], [-77.29983883059352, 34.5556071695905], [-77.29975164924598, 34.55564073043825], [-77.2997140127345, 34.55562166210214], [-77.2996137060494, 34.555624361907576], [-77.29951878679098, 34.555574920793916], [-77.29934926091173, 34.55558297690869], [-77.29913090665941, 34.55537252269208], [-77.29851313489465, 34.555842169417225], [-77.29841360356144, 34.55590671669182], [-77.29833189980619, 34.555952294815796], [-77.29816763405236, 34.55599354199556], [-77.29780276406231, 34.556106066943315], [-77.29753679084385, 34.556366604524904], [-77.29749546708672, 34.556453292047216], [-77.29747918788738, 34.55648011383419], [-77.29746024402385, 34.556528174601254], [-77.29741494083285, 34.55661173316248], [-77.29735684577543, 34.55663422552604], [-77.2972847249408, 34.55675281597012], [-77.29719071920874, 34.55680175941982], [-77.29713183992166, 34.556886634585354], [-77.2971253309004, 34.5568941371372], [-77.29712173490694, 34.556898600487564], [-77.29703236325572, 34.55694208753941], [-77.29698643407778, 34.556950703882094], [-77.29693362078739, 34.55696646772851], [-77.29682637091365, 34.557007235101345], [-77.29673743618207, 34.55696020301163], [-77.2964026738587, 34.556914778655525], [-77.29634301703487, 34.557034389531864], [-77.29627494864043, 34.55714247550997], [-77.29611693084408, 34.55727250535367], [-77.29594380467955, 34.5573112623467], [-77.29587585384608, 34.55740352543389], [-77.29587160736426, 34.55744513778318], [-77.29574284333421, 34.55750696468553], [-77.29568366308868, 34.55755836184639], [-77.2955748071536, 34.55761011382989], [-77.29554371999579, 34.557624907282936], [-77.29539429859395, 34.55766585714472], [-77.29518024596713, 34.55778911162726], [-77.29515782608483, 34.55779912030071], [-77.29514680657533, 34.55780435360176], [-77.29507830323732, 34.55784582972878], [-77.29490884369628, 34.557926288719436], [-77.29490448916894, 34.55795106735044], [-77.2947486902226, 34.55803457006291], [-77.29467189729527, 34.558059320810756], [-77.29460500846554, 34.55811642496243], [-77.29445115237704, 34.55820024602632], [-77.294350838839, 34.55825349331952], [-77.29432981167704, 34.55826536508887], [-77.29427408541073, 34.558286291710886], [-77.29418796274692, 34.558320492650566], [-77.29409322758039, 34.55834902325012], [-77.29395510225204, 34.55838297221136], [-77.29380365946581, 34.55838173338531], [-77.29357688814696, 34.55850869011687], [-77.29356452650109, 34.55851369974765], [-77.29355928081146, 34.55851597981206], [-77.29354507989633, 34.55852201631981], [-77.29336215480949, 34.558549316569035], [-77.29326845662992, 34.55861043785995], [-77.29325150572672, 34.55860966803279], [-77.293163686359, 34.55863934350978], [-77.29305567947694, 34.558705844191394], [-77.29296817123172, 34.558720099095275], [-77.29277120686716, 34.55886904431744], [-77.29276551012971, 34.558871672857045], [-77.29275275544843, 34.55887952616621], [-77.29249213555515, 34.55898511738858], [-77.29250188829417, 34.55903007030603], [-77.29236729446578, 34.559105570674724], [-77.29230559704088, 34.55914270753193], [-77.29217011666772, 34.559199192818895], [-77.29216874315539, 34.55919899027782], [-77.29216605353942, 34.55920063478177], [-77.29201721987047, 34.55925068117766], [-77.29197073185685, 34.55926959659178], [-77.29183376476917, 34.559332743009094], [-77.29157610477051, 34.55935187155652], [-77.29142994576154, 34.55946150233899], [-77.29137603618383, 34.55950925005679], [-77.29130487249732, 34.55956893702198], [-77.29121640795638, 34.559605938015046], [-77.29117698773892, 34.559623553556996], [-77.29101994641711, 34.55970647280154], [-77.29094781104568, 34.55972354802826], [-77.29094590723834, 34.55974281457612], [-77.29077967025015, 34.559819210626095], [-77.29067201592258, 34.559837650716716], [-77.29056708099193, 34.559919538737596], [-77.29044352362067, 34.55997480005907], [-77.29038257413477, 34.560005449180665], [-77.29027394289227, 34.56006707875517], [-77.2899704714178, 34.56026275582705], [-77.28975238676048, 34.56038842220633], [-77.28955910357784, 34.560488970818945], [-77.28937843187572, 34.56057561049767], [-77.28935376695324, 34.56058740166096], [-77.2893135763046, 34.56060008277538], [-77.28914922119169, 34.560652475986494], [-77.28877176483053, 34.56080365849228], [-77.2887392844927, 34.56081819841394], [-77.28871332343347, 34.56083019872589], [-77.28857274187274, 34.56088798314018], [-77.28836404167083, 34.56097592509211], [-77.28832925026204, 34.560987957722965], [-77.28825723646997, 34.56100937341177], [-77.28805666057775, 34.56107547125659], [-77.287920041459, 34.56112287205676], [-77.28771905512626, 34.561213230035136], [-77.2877117841769, 34.561216338418745], [-77.28768963032111, 34.56122604859312], [-77.28753198752179, 34.56129488052314], [-77.28750971238978, 34.56130490775427], [-77.2874748397756, 34.561317109989545], [-77.2873700013657, 34.56135379380874], [-77.28730531485652, 34.56136359615768], [-77.28717030991896, 34.561416255354075], [-77.28710039516878, 34.56144425800286], [-77.28672326022355, 34.56162726114765], [-77.28668968412005, 34.561642225187995], [-77.2866606757912, 34.56165708633991], [-77.28627816911775, 34.56187394551145], [-77.2862191910254, 34.56190440916294], [-77.28607249653845, 34.561986194400646], [-77.28594259680924, 34.56205817349328], [-77.28586685681721, 34.56209703650554], [-77.28579848463029, 34.562128829467255], [-77.28566137859917, 34.562201059139554], [-77.2855057924837, 34.5622699798747], [-77.28545621102873, 34.56229198945749], [-77.28519170339376, 34.562404033565414], [-77.28506571406609, 34.56245793581887], [-77.285046055903, 34.562466218606424], [-77.28501291983524, 34.56247738317189], [-77.28474102946278, 34.56257653136868], [-77.28463658957816, 34.56261140373556], [-77.28449959028192, 34.56268317864085], [-77.28436367399485, 34.56275316706568], [-77.28422547232306, 34.562825942326825], [-77.2840709577558, 34.562895622274226], [-77.28398138903603, 34.562935231981385], [-77.28381534133464, 34.5629989271886], [-77.28361467147302, 34.563100138650825], [-77.28340414554549, 34.56321659070155], [-77.28319914865833, 34.56331936378742], [-77.28319835905071, 34.563319694623445], [-77.28299387367882, 34.56339533590961], [-77.28286842900377, 34.563444058622146], [-77.28278903919252, 34.56347201334418], [-77.28265962143642, 34.563523095549996], [-77.28258409345155, 34.56355334817445], [-77.28226164253385, 34.56368538254395], [-77.28219211416345, 34.56371091283633], [-77.28217412728964, 34.56371910145038], [-77.28215290782668, 34.56372940214445], [-77.28181914745261, 34.563882692996394], [-77.28176362973518, 34.56390709892136], [-77.28170081167914, 34.56393999616883], [-77.28153307771733, 34.5640642961593], [-77.28139110144541, 34.56416177117369], [-77.28137093300023, 34.56417584779562], [-77.2813289520643, 34.564203504757415], [-77.28112400041553, 34.5642848181075], [-77.28104866679162, 34.564370541446245], [-77.2810249911148, 34.56438803904629], [-77.28088656086061, 34.564402230297276], [-77.2808678483428, 34.56452370481153], [-77.28080348589685, 34.56458694909882], [-77.2807752542432, 34.564631807659104], [-77.28075309751432, 34.56470082366988], [-77.28068423286757, 34.564776242593176], [-77.28065482974027, 34.56481093767109], [-77.28063109987288, 34.56483217529343], [-77.28057305944378, 34.56486528174233], [-77.28041804137871, 34.56497126978818], [-77.28037409403143, 34.56502455237355], [-77.28027452524803, 34.56511351585455], [-77.28025242889763, 34.56513282852405], [-77.28024175442621, 34.56514306413445], [-77.28009821783365, 34.565238548137565], [-77.28004664755045, 34.56529812293091], [-77.27998145378778, 34.56534720913211], [-77.27986599173624, 34.56543044962661], [-77.27984375620731, 34.56544625974548], [-77.27982342724027, 34.56545262894413], [-77.2798023362365, 34.565474203276274], [-77.27964071924725, 34.56559426727797], [-77.27953946651535, 34.565659599418595], [-77.27952404733455, 34.56566477772381], [-77.2795212346872, 34.56567141334884], [-77.2794274871301, 34.56573320901148], [-77.27938521862674, 34.56577170501007], [-77.27935808603081, 34.56582441675153], [-77.279312860022, 34.565883853373045], [-77.27927628400417, 34.56592731147338], [-77.279225607199, 34.56599483193119], [-77.27912009999481, 34.56609732624276], [-77.2791135187452, 34.56610385952114], [-77.27910943325335, 34.566107499534205], [-77.27910000102648, 34.56611214812476], [-77.27886688619078, 34.56622037330762], [-77.27860754161492, 34.566299777889355], [-77.27859585750544, 34.56630791920552], [-77.27855738235043, 34.566351984195414], [-77.27832614322185, 34.56651333682971], [-77.2783427092212, 34.56657238333487], [-77.27824373818946, 34.5666519193205], [-77.2780246660643, 34.56672531808593], [-77.27787250406757, 34.566873198924654], [-77.27778069684751, 34.56689727989489], [-77.2777136226329, 34.56699185519813], [-77.27744960677941, 34.567151470264704], [-77.27746665669305, 34.56726812392211], [-77.2774626254762, 34.56727156160577], [-77.27725659150862, 34.56737197122574], [-77.27712213862176, 34.567523921878475], [-77.27703776900593, 34.56755088198284], [-77.27700059734333, 34.567587523865015], [-77.2770068129094, 34.567624165817065], [-77.27685697256368, 34.567718672697396], [-77.27680862008734, 34.56780810592965], [-77.27673695072335, 34.56786906238959], [-77.27668442427581, 34.567893798745125], [-77.27664492187841, 34.56791307697256], [-77.2766242275888, 34.567951253130026], [-77.27651910850729, 34.56802102441501], [-77.27649066433645, 34.56805006175751], [-77.27643153164007, 34.56813197616053], [-77.27636378272791, 34.568190421656], [-77.27631521125073, 34.56822260540878], [-77.27627945214087, 34.56823785972708], [-77.27626296937228, 34.56827034628294], [-77.2761253820021, 34.56838236471557], [-77.27606896238458, 34.56845698636596], [-77.27597426427025, 34.56854411279712], [-77.27595383231973, 34.56855838047564], [-77.27595022716048, 34.568565489631126], [-77.2759415102087, 34.56857452367984], [-77.27586667169732, 34.56864515610195], [-77.27581817942018, 34.56867294672255], [-77.27576394690834, 34.5687180905998], [-77.27572114329827, 34.56878315480988], [-77.27562027945129, 34.568878613752496], [-77.27560619244532, 34.56889195518536], [-77.27559821823142, 34.56889928379468], [-77.27557324115357, 34.56892055029722], [-77.27550315566378, 34.56897903264267], [-77.27545526038243, 34.56899792815845], [-77.27538665583, 34.5690397173432], [-77.27533656047297, 34.56910643375261], [-77.27522569307058, 34.56919121760623], [-77.27519702192662, 34.56919965238535], [-77.2751881611774, 34.569212605539036], [-77.27517711529136, 34.56922839292517], [-77.27510792225759, 34.56928470441505], [-77.27501709065882, 34.56931699561406], [-77.27498290969648, 34.56933781901839], [-77.27488994281615, 34.56943854613277], [-77.27473464268112, 34.56944561163152], [-77.27466336273498, 34.56960461915965], [-77.27444189391342, 34.569743126504946], [-77.27450813645966, 34.56984650009676], [-77.27447897070802, 34.569875399171366], [-77.27427233805055, 34.569965467811826], [-77.27411085265173, 34.5701790803512], [-77.27410041200517, 34.57018762274426], [-77.27409600112996, 34.57019198136962], [-77.27407846554328, 34.57021002193597], [-77.27375475540877, 34.57039612403412], [-77.27379792349078, 34.570480050644335], [-77.27374020552432, 34.57053273120363], [-77.27366327635094, 34.57062460092408], [-77.2736541676027, 34.570632451078495], [-77.27352607265875, 34.57067088233639], [-77.27343951735284, 34.5707980593623], [-77.27338092680345, 34.57083807684147], [-77.27336317275953, 34.570854596149374], [-77.2732986506701, 34.570949443697906], [-77.27327266569974, 34.57097023539331], [-77.27314235857236, 34.57098680614509], [-77.27300773292089, 34.571044412364515], [-77.27300053761296, 34.57114625619701], [-77.27297927568482, 34.571160009057614], [-77.27297565134424, 34.57116713488355], [-77.27293219675167, 34.57122686524227], [-77.27286445244191, 34.571268817613735], [-77.27274453477659, 34.57129018337704], [-77.27260432146998, 34.571458584920805], [-77.27258185589933, 34.57147409537479], [-77.27257012404216, 34.5714813507013], [-77.27253082728606, 34.57150596434782], [-77.27240306846531, 34.57158605360142], [-77.27235437540716, 34.57160037816301], [-77.27219541227136, 34.57168756499512], [-77.27215329692982, 34.57175014116506], [-77.2719624266242, 34.57189461069117], [-77.27194834800987, 34.57190381204614], [-77.27173953809928, 34.572039350154256], [-77.27160388505803, 34.57211240249099], [-77.27153275285067, 34.572184039174914], [-77.2714995782076, 34.572259776447126], [-77.27147051556409, 34.57233758563552], [-77.27143716532768, 34.57242762011639], [-77.27142250874189, 34.57247236554708], [-77.27139527092982, 34.57256733782033], [-77.27140688586806, 34.57257652891215], [-77.27138219925553, 34.57267118175645], [-77.27137527368397, 34.57268359926768], [-77.27136205862459, 34.5726894156802], [-77.27133199839768, 34.572724618770714], [-77.27122514498839, 34.57278963152677], [-77.2712511224223, 34.57281214846409], [-77.27119333650042, 34.57286795663359], [-77.27116546820939, 34.572902773915004], [-77.27111545360351, 34.57294449667041], [-77.27109896338234, 34.57294832324699], [-77.27108921100539, 34.57296466746176], [-77.27102800077793, 34.5730098012711], [-77.27100447059706, 34.573028583488494], [-77.27094482732716, 34.573073569691246], [-77.27083881892078, 34.57311276327965], [-77.2708472244675, 34.57314718695018], [-77.27080466535169, 34.57317948205645], [-77.27072248910207, 34.57322145202403], [-77.27062236880366, 34.573323287416535], [-77.27060893608324, 34.57333400584753], [-77.2705979995398, 34.573342736714835], [-77.27043802621714, 34.573434756888055], [-77.27041080560241, 34.57348639450983], [-77.27040493414796, 34.5734966068552], [-77.27034202433875, 34.573545043408906], [-77.27024997412337, 34.57361426655984], [-77.27017760228685, 34.57360759181083], [-77.27007221257222, 34.57364166575189], [-77.27011962550351, 34.57369535450833], [-77.27002276196731, 34.573755611851496], [-77.26999880205582, 34.57377717234386], [-77.26997780287503, 34.57381099416197], [-77.26991747049738, 34.573855098367765], [-77.26990101390606, 34.57385450291765], [-77.26987500812882, 34.57386182959298], [-77.26974690539868, 34.57388174539841], [-77.26960567768499, 34.57407161584117], [-77.26959958666218, 34.57407584382679], [-77.26959842524968, 34.574078291660285], [-77.2695918116409, 34.57408239082495], [-77.26908256435118, 34.57427086252585], [-77.26908488931531, 34.574278774314], [-77.26897355804552, 34.5744921447717], [-77.26896440224473, 34.5744972396916], [-77.26896236055619, 34.57449840171428], [-77.26890412501551, 34.5746103342065], [-77.26890290473814, 34.57461128875251], [-77.26877686011704, 34.57466202561466], [-77.26874947165192, 34.574716008444774], [-77.26873973089673, 34.57472560959456], [-77.26866839980192, 34.57472986587865], [-77.26859907098047, 34.57479541252977], [-77.2685675705447, 34.5748044929208], [-77.26836346675759, 34.5748446236335], [-77.26827020217219, 34.574868626894954], [-77.26822768920619, 34.57491064983206], [-77.26811109473171, 34.57499896098228], [-77.26808405698658, 34.57501719008137], [-77.2680760474921, 34.57502455520615], [-77.26797222109904, 34.57512623010537], [-77.26789958195513, 34.575196215704665], [-77.2678508402267, 34.57528016934103], [-77.2677960641538, 34.57534804655383], [-77.26772972669289, 34.575373755601206], [-77.26767003986946, 34.575531611639434], [-77.26760728891499, 34.57556887050796], [-77.26759531816124, 34.57558282092622], [-77.26754694565726, 34.575681959471396], [-77.26750021750205, 34.57571820208547], [-77.26736503793234, 34.575706621883334], [-77.26714067006999, 34.57576784588505], [-77.26721766694983, 34.57588478827927], [-77.26720456409038, 34.575892506586364], [-77.26719825802373, 34.57589860262802], [-77.26699749190736, 34.575992254853965], [-77.26695960967199, 34.57600325739756], [-77.26687215500866, 34.57619793093246], [-77.26685065466675, 34.576216375930464], [-77.26684006575886, 34.57622554466171], [-77.26680793230477, 34.57625371550456], [-77.26677657358802, 34.57626946732447], [-77.26677946270472, 34.57627858174887], [-77.26674689733653, 34.5763069867096], [-77.26671485689056, 34.57632353099756], [-77.26668102448458, 34.57636138482004], [-77.26665155914957, 34.57638649912046], [-77.26656958459702, 34.57642994084271], [-77.26647855017816, 34.57652908751813], [-77.26645978808375, 34.57654455064234], [-77.26644284949609, 34.57655891179469], [-77.26635897249332, 34.576619191885264], [-77.2662850726864, 34.57664323460702], [-77.26623427735163, 34.57667259535208], [-77.26613736753015, 34.57674626351668], [-77.2659374283046, 34.57673719347562], [-77.26569488802247, 34.577006355108395], [-77.26559484572087, 34.57706028838029], [-77.26558351405806, 34.577079649401426], [-77.26547608700875, 34.57727202567322], [-77.26545970729276, 34.57728532849734], [-77.26545262395253, 34.577291848974156], [-77.265428916866, 34.57731369590198], [-77.26521777311548, 34.57741158824191], [-77.26518575526259, 34.57749945085922], [-77.26512714361212, 34.577586444592285], [-77.2650844592388, 34.577621633076696], [-77.26488064440274, 34.5777111219957], [-77.26485444838653, 34.577745677604426], [-77.26482153271478, 34.577824307084256], [-77.2647209384037, 34.57792231081048], [-77.26470751405624, 34.57793317350036], [-77.26470180667545, 34.57793853349177], [-77.26468506903228, 34.57795108633511], [-77.2644495203625, 34.57804276713431], [-77.26438258300573, 34.578143284863295], [-77.26437241780442, 34.578152589734714], [-77.26423638993103, 34.578181825723846], [-77.26421412428095, 34.57829585993906], [-77.26412743408451, 34.57835888436672], [-77.26409879851315, 34.57838806843901], [-77.26406593472345, 34.578471881438844], [-77.26395053532339, 34.57857003647703], [-77.26393107660712, 34.57856751383584], [-77.26388717330994, 34.57857565468073], [-77.26390444235057, 34.578595566118025], [-77.26371033721783, 34.57869980622727], [-77.26364675557451, 34.57879241237374], [-77.26360833569305, 34.578829945477274], [-77.26350007647241, 34.57884141852462], [-77.26349521047774, 34.57893255853046], [-77.26340012926168, 34.57900868117381], [-77.26336877661606, 34.57905325872533], [-77.26333897672063, 34.57912170533804], [-77.26325430800668, 34.579206499157856], [-77.26323005391198, 34.57923097161324], [-77.26316139206605, 34.57929691908994], [-77.26302766946398, 34.57940711623619], [-77.26300367882578, 34.57944883302574], [-77.26290966185519, 34.579519296572116], [-77.26284191754331, 34.57957052826819], [-77.26269070684361, 34.57965988167288], [-77.26262424477999, 34.579705550067125], [-77.2624596608521, 34.57985096935169], [-77.26240909106134, 34.579873396688924], [-77.26241959015915, 34.579886561345404], [-77.2622554803446, 34.58003481247809], [-77.26220442891085, 34.58009296520393], [-77.26208461328012, 34.58019573284374], [-77.26207602562188, 34.58020382681123], [-77.2619104440891, 34.58030550611099], [-77.26185981683183, 34.58034015210935], [-77.26174037462424, 34.580439700143884], [-77.26153773284584, 34.5805118526646], [-77.26160411368426, 34.58055940646418], [-77.26149265479222, 34.58067084262876], [-77.26142565842775, 34.580738704801554], [-77.26134681709952, 34.580801097984036], [-77.26130626831804, 34.58083369333441], [-77.261276470539, 34.580844801932], [-77.2612604802077, 34.580871815964606], [-77.26116227685313, 34.58095365212632], [-77.26111542312225, 34.58099257866941], [-77.2610328831991, 34.58106130652631], [-77.26098504066469, 34.58109966460129], [-77.26092194512046, 34.58114912282895], [-77.26087825778497, 34.58116697545186], [-77.26083013705414, 34.5812166988403], [-77.26071977214067, 34.5812979338158], [-77.26064684518394, 34.58135161203168], [-77.26061329488437, 34.58136754484891], [-77.26060533791124, 34.58138117153669], [-77.26057902539435, 34.58140259980408], [-77.26052271565575, 34.58145129590752], [-77.26044306028379, 34.581486237931735], [-77.26031506697942, 34.58159331120454], [-77.26031412733812, 34.58159392794856], [-77.26031384268981, 34.58159414852249], [-77.26031317826757, 34.58159460293302], [-77.2601961570976, 34.58165379089317], [-77.26015978900311, 34.58169961878559], [-77.2601518940929, 34.58170512737318], [-77.26006680824669, 34.581703059752684], [-77.26002744312362, 34.58174284315774], [-77.25996100721818, 34.581725913434134], [-77.25985153569155, 34.58167398733316], [-77.25962745104553, 34.581640913462245], [-77.25921387573311, 34.581638314419685], [-77.2592367986516, 34.58129345303129], [-77.25924623756171, 34.58127422614374], [-77.25923940458327, 34.581261344454184], [-77.25944501519183, 34.58082138553765], [-77.25944689248823, 34.5808186758594], [-77.25945361738904, 34.58081370912901], [-77.25977789959447, 34.580373380278395], [-77.26007591035716, 34.580068006676775], [-77.26031439516797, 34.579944258347666], [-77.26079562747522, 34.57980777991156], [-77.26114588645365, 34.579705169918], [-77.26102330067074, 34.57952869873993], [-77.26103156854222, 34.579487902233346], [-77.26121176980749, 34.57907218825556], [-77.261194411544, 34.57901946924066], [-77.26099645058397, 34.579055246230055], [-77.2607530193692, 34.579355740224514], [-77.25992558346094, 34.579167305918716], [-77.25951475159647, 34.579007181597596], [-77.2594670167042, 34.578463554456704], [-77.25947573742266, 34.57821965345411], [-77.25945070188365, 34.57799093083702], [-77.25970454417724, 34.57778045080671], [-77.25994484925322, 34.57755847616449], [-77.2600885806332, 34.577450234835794], [-77.26045045761153, 34.57715751659166], [-77.26084861437992, 34.576811746839965], [-77.26097504149796, 34.576696862360144], [-77.26126912593405, 34.576459628399654], [-77.26161770467067, 34.5761813192613], [-77.26208694649472, 34.57584166822006], [-77.26322916750418, 34.57499064137052], [-77.26323224363371, 34.57498839894326], [-77.26323461382827, 34.574986185341245], [-77.2639462162409, 34.57430896332205], [-77.26419233587006, 34.57412194815064], [-77.26468412933912, 34.57378682862462], [-77.26477291194576, 34.57372979610442], [-77.26503008047206, 34.573581206281716], [-77.2655513833575, 34.573286172520525], [-77.2658905111482, 34.573068096530754], [-77.26653740153047, 34.57267028689864], [-77.26697789498105, 34.572455689648706], [-77.26733894025611, 34.571981429887515], [-77.26786068074924, 34.57158243986006], [-77.26803582494577, 34.57137415581054], [-77.2681267218065, 34.57113202592961], [-77.26839989917057, 34.570849116768066], [-77.26855117461406, 34.570694065965746], [-77.26887789812436, 34.57049422855475], [-77.26961362316634, 34.57014864461082], [-77.26997432104031, 34.56999273550069], [-77.27039093150451, 34.569896047751804], [-77.27067324487825, 34.56977667270067], [-77.27107395171922, 34.56948485935794], [-77.27161924496457, 34.56930364700403], [-77.27170880120482, 34.569056980412185], [-77.27213038506046, 34.568716576822496], [-77.27230754347423, 34.568601441511746], [-77.27273185529391, 34.56819473019585], [-77.27306126165658, 34.567957419781436], [-77.27312439626472, 34.56775425298964], [-77.27332884867508, 34.56753265678615], [-77.27339632788505, 34.56730429197893], [-77.27404425373413, 34.566944092494396], [-77.27459851451695, 34.566695913373366], [-77.27502001473954, 34.56648923402559], [-77.27543888678368, 34.56612897569581], [-77.27548894502944, 34.5660547548196], [-77.27569153172729, 34.56591244694633], [-77.27606789704512, 34.565628915975374], [-77.27621225314084, 34.565502450419636], [-77.27656145478788, 34.565299117739286], [-77.27705197669542, 34.56493494684852], [-77.27725426835121, 34.564779472357316], [-77.27784424768691, 34.56442868664947], [-77.2779145607885, 34.564387778006896], [-77.27798005144726, 34.564365164472136], [-77.27819642720218, 34.56423886329875], [-77.27868346980046, 34.56394909470944], [-77.27892413770387, 34.56379535943537], [-77.2791764629801, 34.56368512745749], [-77.28018796984958, 34.56308288295109], [-77.28057264783732, 34.56277035407981], [-77.28127615175146, 34.56232828768831], [-77.2813972341469, 34.562243288673386], [-77.2814592389294, 34.56219833891618], [-77.28222406370173, 34.561621550305716], [-77.28362977586139, 34.5606915015705], [-77.2838733461797, 34.56056048261389], [-77.28406246729493, 34.56043398373262], [-77.28456330152629, 34.560062273481044], [-77.28552510003898, 34.559393631372025], [-77.28681860094744, 34.558681588660335], [-77.2871714452101, 34.55845254346762], [-77.28770221698583, 34.55811713078903], [-77.28882129266148, 34.55736225055405], [-77.28970194212354, 34.556939127374704], [-77.29046512568686, 34.55652376269585], [-77.29167678010208, 34.55560617816248], [-77.29206165078912, 34.55543197841565], [-77.29334495139852, 34.55462509296735], [-77.29349992587613, 34.554506687203556], [-77.2936561986831, 34.554421917019454], [-77.29440066027183, 34.553951660813624], [-77.29481118021062, 34.553705273962535], [-77.29525013493054, 34.55343604147242], [-77.29529313628467, 34.55339260946312], [-77.29532885369152, 34.55336131638648], [-77.29604916493045, 34.552855289701554], [-77.29614359810522, 34.55281308817634], [-77.29627743202056, 34.55273563447364], [-77.29684523088406, 34.552399465561344], [-77.29713898978852, 34.55230417595734], [-77.29749917661746, 34.552070752582225], [-77.29843882883137, 34.551424603091725], [-77.29885275663982, 34.55115139037608], [-77.29929887124479, 34.55083332384875], [-77.30003442898092, 34.550363275109945], [-77.30050252377808, 34.54996742676775], [-77.30139328986326, 34.54955357147544], [-77.30162738561033, 34.54941229938649], [-77.30211134018563, 34.54915259671579], [-77.3024227477152, 34.548983574433315], [-77.30250761116636, 34.54895656450039], [-77.30258838685472, 34.5488924559394], [-77.30321796412687, 34.548560674515116], [-77.30346579042512, 34.5484295177238], [-77.30372189073738, 34.54824016380443], [-77.30425009755842, 34.54781776926171], [-77.30458258460371, 34.54762701950651], [-77.30481354209431, 34.54749526083277], [-77.30511364841925, 34.547244624591215], [-77.30555206725575, 34.54699825100604], [-77.30561136962164, 34.54696025323888], [-77.30602705793491, 34.546695768044586], [-77.30640845884707, 34.546456188136695], [-77.30698818437148, 34.546170155589934], [-77.30778861187777, 34.545697964436755], [-77.30790711486752, 34.54562398716422], [-77.30799975900474, 34.54556925267818]], [[-77.36909429461826, 34.517741244881535], [-77.36901210176805, 34.517744871865666], [-77.36830831705994, 34.51778745198399], [-77.36794770024451, 34.51768622664511], [-77.36711747480265, 34.51781630535827], [-77.366785427283, 34.51811696116275], [-77.36675179087467, 34.51813506716666], [-77.36673024786737, 34.518147698140055], [-77.36627019266078, 34.51839741704925], [-77.36537303481823, 34.51867002671025], [-77.36514706662967, 34.51873117727985], [-77.36497435892174, 34.51876023515849], [-77.36436012788431, 34.5188188711021], [-77.36422423596622, 34.51889190064325], [-77.36411169600467, 34.51899184385943], [-77.36403937688249, 34.519298663464376], [-77.3635521183341, 34.51982857972806], [-77.36335703507521, 34.519960046396186], [-77.36317332232301, 34.52010632987042], [-77.36244882301092, 34.52051150352378], [-77.36196071272374, 34.520769204526985], [-77.36135412426938, 34.520972199170416], [-77.36059764333864, 34.521319762198985], [-77.36037568535183, 34.52142954552619], [-77.36031909433319, 34.52146193269759], [-77.3602224342779, 34.5215106930105], [-77.35978929217391, 34.52170081814859], [-77.3595788823787, 34.52194661068435], [-77.35945150389118, 34.52203315742817], [-77.35933936416346, 34.52212752833103], [-77.35936761622597, 34.5222508967051], [-77.35956505626731, 34.522550442916994], [-77.35958115973695, 34.52258235275129], [-77.35956299838634, 34.522640317691305], [-77.3591801210308, 34.522894561585446], [-77.35877358940007, 34.522833871440696], [-77.35836532172195, 34.523009611001285], [-77.35797985195074, 34.523216132488216], [-77.35786580895513, 34.52324836531859], [-77.35783076988335, 34.52332408717278], [-77.35717975192, 34.52387559967714], [-77.35712982722252, 34.52388364861809], [-77.35604293344718, 34.52380204872937], [-77.35560919404003, 34.52390092531922], [-77.35530869435348, 34.52387507324293], [-77.35508188986364, 34.523880359564565], [-77.35498286317123, 34.524121698456554], [-77.3549686106791, 34.524225876128625], [-77.35480880855323, 34.52457168740996], [-77.35469838381565, 34.524687205638045], [-77.354013107719, 34.52503787353162], [-77.35312531227765, 34.525044923009084], [-77.3524364909387, 34.52532570618703], [-77.35209566744194, 34.525407369963126], [-77.35141711735736, 34.52571646629946], [-77.35104230613756, 34.525888160293796], [-77.35085200435891, 34.52595516054637], [-77.35038706730991, 34.526151917372474], [-77.35005966646702, 34.52627358762213], [-77.34989056309071, 34.52632105721242], [-77.34970715400375, 34.526452251510705], [-77.34926487282016, 34.526698422513405], [-77.34897243493256, 34.52673981169271], [-77.34882858582107, 34.52679764776461], [-77.34847665274074, 34.5268374345177], [-77.34841288363805, 34.52688335932564], [-77.34841980346151, 34.527095431307465], [-77.34831673438063, 34.527142018104186], [-77.34821388842118, 34.52749196941426], [-77.3476754452571, 34.52754006882357], [-77.34660440569397, 34.528049159868466], [-77.3460938726918, 34.528039583665134], [-77.3457524403724, 34.528280846423684], [-77.34572312649043, 34.528494551588416], [-77.34580324225254, 34.52865543731595], [-77.34555321663693, 34.529177432190224], [-77.34556862037259, 34.52949606610819], [-77.34556655251751, 34.52979994106191], [-77.34555416370489, 34.529987786261536], [-77.34549140030447, 34.530140911302745], [-77.34529406910231, 34.530270033405394], [-77.3452556167538, 34.53034706526738], [-77.34523306386741, 34.53027881176678], [-77.3450075375273, 34.530222956616626], [-77.3448657632844, 34.53023115135686], [-77.34478186981403, 34.53022132545467], [-77.34471543262512, 34.53020264692429], [-77.34467010746445, 34.530204810632895], [-77.34465511196045, 34.530187955084], [-77.34466202184423, 34.53017736555094], [-77.34465914357631, 34.530124567691345], [-77.34466039345403, 34.530116394940215], [-77.34465578330783, 34.53000643709201], [-77.34465828189992, 34.52998373192368], [-77.34481811977406, 34.52984887981205], [-77.34465441354395, 34.5297661270076], [-77.34456286845618, 34.5296888884951], [-77.34463137767933, 34.52963093057283], [-77.34462050534128, 34.52955043870842], [-77.34449040487357, 34.529487097971014], [-77.3444724672249, 34.52942111412673], [-77.34442846402943, 34.52941530824447], [-77.34441553758354, 34.52936876995098], [-77.34437192163239, 34.52925585145004], [-77.34431135094616, 34.5291873397729], [-77.34410917366671, 34.528997806724874], [-77.34410507278204, 34.528975086059695], [-77.34409589994685, 34.52897352108285], [-77.34408270887047, 34.52895834468296], [-77.34400431735338, 34.52880998275947], [-77.34395272168207, 34.52874930284365], [-77.34393738712735, 34.52861928376686], [-77.34372646611409, 34.52857266663635], [-77.34370291825307, 34.52855536269806], [-77.34370951099585, 34.52853947788764], [-77.3435319842123, 34.52844336433065], [-77.34353053741708, 34.52844281953541], [-77.34342256889227, 34.5284054867941], [-77.34337738793673, 34.52840365014382], [-77.3433380635831, 34.52839435024287], [-77.34329431848018, 34.52838822971804], [-77.3432887118855, 34.52838610419646], [-77.34324044145062, 34.528372367244216], [-77.343217655664, 34.528365427715904], [-77.34317473140928, 34.52835168100142], [-77.34314314862146, 34.52833612526495], [-77.34308598042827, 34.528323168273154], [-77.34306951610256, 34.528310625218225], [-77.34304544564549, 34.528317647769924], [-77.34301628029604, 34.52831496720698], [-77.34298807695441, 34.52831191391257], [-77.34294757583521, 34.528306396135584], [-77.34292016790596, 34.528302964414976], [-77.34284982638869, 34.52829594085661], [-77.34284988454837, 34.52829581154513], [-77.3428496913391, 34.528295781252496], [-77.34284923426848, 34.52829574037909], [-77.34279500920381, 34.52827699952947], [-77.34275191852146, 34.528280331765636], [-77.34274619449664, 34.52828024866705], [-77.34275202669414, 34.528275648151904], [-77.34278213105831, 34.52826307118586], [-77.34281242786037, 34.52826381899989], [-77.34285062176093, 34.528255494203215], [-77.34287979174572, 34.528248517974916], [-77.34292494046868, 34.52823901735812], [-77.34294919675256, 34.5282362072203], [-77.3429980260325, 34.528244049743535], [-77.34304685502252, 34.528256615858254], [-77.34307220839028, 34.52826394498178], [-77.34311689130004, 34.52827477667004], [-77.34314436167412, 34.52828359233649], [-77.34323486221797, 34.52829718463024], [-77.34326202386673, 34.52823663435024], [-77.34334413506211, 34.52813138975568], [-77.34353514374752, 34.528194978489985], [-77.34354266603779, 34.52819393725695], [-77.3435407665046, 34.528197715889306], [-77.34359475994012, 34.52831116930729], [-77.34354726739001, 34.52843179952556], [-77.34372936870588, 34.52844692734451], [-77.34383272334158, 34.52833985205082], [-77.34385526878407, 34.52827368583593], [-77.34384098662501, 34.528209540919065], [-77.34380098405457, 34.52803667745287], [-77.34374281204902, 34.527864567551795], [-77.34363792075771, 34.52788051309754], [-77.34373057465082, 34.52780198897995], [-77.34372981623858, 34.527792961370295], [-77.34374468818804, 34.527783294193355], [-77.3440547573681, 34.527454365053764], [-77.34408586012458, 34.52726122907782], [-77.34410293086646, 34.52722942271325], [-77.34407417430563, 34.52706770532883], [-77.3440149420151, 34.52702661381436], [-77.34376379365689, 34.526955657971605], [-77.34367789047018, 34.52688489069219], [-77.34363293200536, 34.52683676061901], [-77.34349377174327, 34.52678287181642], [-77.34337861245977, 34.52663815553758], [-77.34337385422775, 34.52663227125545], [-77.34336952522472, 34.526629841545045], [-77.34337189695347, 34.5266251239867], [-77.3433502331298, 34.52651020769938], [-77.34336172622983, 34.52649597402669], [-77.34336373770984, 34.52644705980261], [-77.34338358281585, 34.52642288803031], [-77.34341851749761, 34.526399424887025], [-77.34346184234583, 34.52637173924276], [-77.3435831853751, 34.52627788076232], [-77.34365398859264, 34.526265668703516], [-77.34378204009523, 34.52616523864631], [-77.3440944707385, 34.52608696600312], [-77.34422317701146, 34.52626219182982], [-77.34432977447105, 34.526391595532054], [-77.34455680596736, 34.52660946206397], [-77.34470192400462, 34.526592670501756], [-77.34507257046856, 34.52645950846099], [-77.345155031384, 34.5262497871084], [-77.34512699504421, 34.52613213703202], [-77.34488859668107, 34.52596871550421], [-77.34473661044598, 34.52594349295258], [-77.3445740898739, 34.52586043540714], [-77.34445459147862, 34.52581445144173], [-77.34437815828284, 34.52584649324885], [-77.34430512398599, 34.52576076178549], [-77.3442839432089, 34.525702978576035], [-77.3443826888843, 34.52565017279628], [-77.344450755174, 34.52565999332459], [-77.34457909149737, 34.52564368250857], [-77.34464652051142, 34.52566921140709], [-77.34501650773582, 34.52565839624662], [-77.3451945630018, 34.52573717719176], [-77.34536146564075, 34.52575800423419], [-77.34546057848779, 34.525594494627], [-77.34549632272169, 34.52550882043726], [-77.34560945099325, 34.52523052081813], [-77.34576645397799, 34.525216729844345], [-77.3459295733866, 34.52518095438401], [-77.34616063366656, 34.5251440207861], [-77.34624604311485, 34.52504365146376], [-77.34631143284703, 34.52498241098175], [-77.34660377177202, 34.52472102143055], [-77.34696075342536, 34.52448822623458], [-77.34766993725565, 34.52434658369684], [-77.34774928044327, 34.52433508441949], [-77.34783438580487, 34.524326552747056], [-77.34788656983324, 34.524266080420524], [-77.34854381950484, 34.52392073035949], [-77.3487335222362, 34.52377071132077], [-77.34899157599847, 34.52361739531345], [-77.34934005693049, 34.523432240642364], [-77.34970459079832, 34.52324988576312], [-77.35013305004424, 34.5230843319531], [-77.35024690107934, 34.52301711247263], [-77.35063246811592, 34.52289155939981], [-77.35082870845423, 34.522803564414914], [-77.35092502917699, 34.52278020679236], [-77.35107765366783, 34.522732950069134], [-77.35171559426972, 34.52253731930884], [-77.35210054761964, 34.52242914691501], [-77.35250659983379, 34.522275049880236], [-77.3530022684638, 34.52224169728017], [-77.35329016215108, 34.52233655474546], [-77.35360256276671, 34.5221667664992], [-77.35408386336252, 34.52195656213207], [-77.35475164300611, 34.521732579380355], [-77.354875829013, 34.52165185121913], [-77.35511366976841, 34.52141204176942], [-77.35553841616093, 34.52120595533326], [-77.35562378995941, 34.52116358964114], [-77.35567244016252, 34.521144406260824], [-77.35575349853227, 34.521124703718634], [-77.35646139762231, 34.52097024023493], [-77.35698785211463, 34.52083403660344], [-77.35725155223768, 34.52074369497447], [-77.35777891218453, 34.52055702503345], [-77.35804208635385, 34.52050038499019], [-77.35818781191801, 34.52042460175822], [-77.35883195946704, 34.52028571388789], [-77.35886533581495, 34.52025762541327], [-77.35889492559599, 34.520232945145814], [-77.35920946115891, 34.51992837307683], [-77.35963115307855, 34.519637261092306], [-77.3596317693712, 34.51963688345159], [-77.36028963330773, 34.51946062726148], [-77.36042219717133, 34.51939741257967], [-77.36074291094793, 34.51927876033248], [-77.36121412688796, 34.519092080543324], [-77.36142038746314, 34.5190174962825], [-77.36157324680443, 34.518867875706555], [-77.36201016715555, 34.51860674219638], [-77.36243552651793, 34.51851809187207], [-77.36323781619697, 34.51813843586333], [-77.3635939860427, 34.51799636256173], [-77.36386619368724, 34.51787976377616], [-77.36438655195786, 34.51766202957243], [-77.36467975935936, 34.51762340532447], [-77.36503036480818, 34.51739053385913], [-77.36517914665464, 34.51732614340289], [-77.36569844811906, 34.517125721260484], [-77.36662047805613, 34.51675999630676], [-77.36676240515347, 34.516738126861284], [-77.36683797287486, 34.516686842241214], [-77.36713987049129, 34.516596928238144], [-77.36755347392356, 34.5164683064993], [-77.36804502531075, 34.51628081985531], [-77.36834596249588, 34.51613596081493], [-77.36904589040958, 34.51577445416729], [-77.36939236068872, 34.51562678518155], [-77.36992666591968, 34.515658032591446], [-77.37019565500562, 34.515340545234004], [-77.37060705136848, 34.51511795480164], [-77.37120869186582, 34.514840095781274], [-77.37151787606093, 34.514717563562634], [-77.37230980714418, 34.514382509259434], [-77.37231198728188, 34.514381578074705], [-77.3731035562572, 34.51401866574459], [-77.37341431167155, 34.51392656487176], [-77.37383579843495, 34.51367324325739], [-77.3746898844619, 34.51329002226695], [-77.37541785744199, 34.51299519102529], [-77.37548188699577, 34.5129763672208], [-77.37550824438512, 34.5129586738713], [-77.37556484154544, 34.51293432113537], [-77.37627480283135, 34.512622205178204], [-77.37660852357908, 34.51250066426622], [-77.37737924282827, 34.51218305907588], [-77.37772461311154, 34.51205034484156], [-77.37785940802694, 34.51196701906306], [-77.37826306224208, 34.51180606589895], [-77.37865098572027, 34.51167096335805], [-77.37888858302802, 34.51162331921452], [-77.37943981274917, 34.51149601104776], [-77.38074676647406, 34.511534054052994], [-77.38100939310765, 34.511502139653714], [-77.38122142010047, 34.51149679162549], [-77.38160107717746, 34.51157424183451], [-77.38131335870528, 34.5118097219396], [-77.38099960615962, 34.51193432135457], [-77.38011156745996, 34.51233738541914], [-77.37941295828168, 34.51268089684434], [-77.37922175217022, 34.512778794227216], [-77.37888738979736, 34.512944912396904], [-77.37821436339479, 34.51328201636446], [-77.37781748352704, 34.51381531271957], [-77.37761799032737, 34.51398522107457], [-77.37738258222959, 34.51414121552251], [-77.37761947353154, 34.51422479576429], [-77.37780402836017, 34.51440850544858], [-77.37797480559135, 34.51415883325724], [-77.37850089149228, 34.51397996491288], [-77.37914400375762, 34.513734334085925], [-77.37938955889167, 34.51371334481979], [-77.37960294408421, 34.513688280091515], [-77.3808213915485, 34.51364533712286], [-77.3809351260363, 34.51364499468348], [-77.38076318850774, 34.51414339276124], [-77.38040273204267, 34.514346750181346], [-77.37964002280492, 34.51479502403974], [-77.37945187637594, 34.51487749366269], [-77.37936133839943, 34.514958525086506], [-77.37911206172753, 34.51502571992862], [-77.37857451244008, 34.51504379093559], [-77.37823612636346, 34.51527935271821], [-77.37777947217305, 34.51549111242027], [-77.37774681865085, 34.51553797018747], [-77.37700772187159, 34.51565373948582], [-77.376990824463, 34.51565633319764], [-77.37697391477856, 34.515658601589934], [-77.37692988247241, 34.51567546702279], [-77.37650213029687, 34.515925742309626], [-77.37619480960136, 34.51614592825947], [-77.37573665748343, 34.515847500117296], [-77.37568946551285, 34.51568640968141], [-77.3752927639255, 34.51542183537563], [-77.37465313949228, 34.51490730646735], [-77.37409617423957, 34.51496171612481], [-77.37386507051352, 34.51504695853335], [-77.37372627953323, 34.51507177199097], [-77.37307457096506, 34.515293369527924], [-77.37256200519681, 34.515498640276206], [-77.37233215329893, 34.51584861962632], [-77.3720379080137, 34.51623702167059], [-77.37147089804772, 34.516781854672786], [-77.37075564067527, 34.516606470657756], [-77.37097613719713, 34.51702338113805], [-77.37007612604404, 34.51726922638548], [-77.36988958144337, 34.51728624970072], [-77.36954951813819, 34.517509679758945], [-77.36948822587271, 34.51767674868297], [-77.36921059094757, 34.517695590029625]], [[-77.40952721219135, 34.49970581887075], [-77.40952407649189, 34.49970688393265], [-77.40807238448504, 34.499845073615475], [-77.40795424294535, 34.49986264532237], [-77.40788424366022, 34.499902606333116], [-77.40777784327429, 34.49996109932045], [-77.40693920596652, 34.50043621109413], [-77.40635713020076, 34.501099518397744], [-77.4061972001651, 34.50116878297339], [-77.40542277692512, 34.501685137110904], [-77.40538218684084, 34.50188391804443], [-77.40592702867866, 34.50193036954079], [-77.40633580860501, 34.50205363630819], [-77.40640615433361, 34.50207377944719], [-77.40644290248868, 34.5021126467884], [-77.40723783340852, 34.50240936504724], [-77.40732588181005, 34.5026106554289], [-77.40757188686513, 34.50292891932172], [-77.40726644089537, 34.50335357774365], [-77.4071664482738, 34.50352631997501], [-77.40677188342175, 34.50372838334399], [-77.40629297009401, 34.50397063628844], [-77.40613287742815, 34.50401688805476], [-77.40587554020233, 34.50415330612903], [-77.40550078827056, 34.50430193913247], [-77.40493472388908, 34.50428919309189], [-77.40478022208623, 34.50427186103302], [-77.4047217378413, 34.504045810568634], [-77.4044366839128, 34.50418520489445], [-77.40442480723004, 34.504362838658544], [-77.40336665228139, 34.50465803132157], [-77.40313490257563, 34.504817846759835], [-77.402538473926, 34.50524847877676], [-77.40162533648999, 34.50574647237622], [-77.40159467562849, 34.505782695406545], [-77.40154315928149, 34.50580760275366], [-77.4014925386222, 34.50579737637581], [-77.40105382100862, 34.505828996737236], [-77.40010890967235, 34.505879977497294], [-77.39997196207523, 34.50587926234593], [-77.39924090069482, 34.50560109092969], [-77.39928393086504, 34.50553925932841], [-77.3996281181995, 34.50505550856282], [-77.39966512792518, 34.50484423274821], [-77.39999707350438, 34.504759281852074], [-77.40140195957441, 34.50382003109423], [-77.40002354686662, 34.50357856960099], [-77.3992424576507, 34.50363902230218], [-77.39845457376896, 34.50355284585841], [-77.3973025571411, 34.50343257516125], [-77.39704523329269, 34.50337228930123], [-77.39689367361737, 34.50316764067181], [-77.396829380086, 34.50301121611453], [-77.39689785785941, 34.502981336887636], [-77.39748991943978, 34.50279297227601], [-77.39818728271553, 34.502506929615336], [-77.3984729362058, 34.50273457312363], [-77.39862010097136, 34.50234944795599], [-77.39889467519895, 34.50222337013993], [-77.3992723614331, 34.50208111879038], [-77.39973631438804, 34.501899125089416], [-77.40006411482497, 34.50176926039063], [-77.40138291406977, 34.50170676803502], [-77.40163834586092, 34.501558739814435], [-77.40226251948343, 34.50135049308784], [-77.40321802469313, 34.50110441834221], [-77.40371828382969, 34.50085616341756], [-77.40446368311767, 34.500439815853014], [-77.40480625882797, 34.500266744624724], [-77.40547670894391, 34.499724946850215], [-77.40593768053378, 34.49953116923825], [-77.40639718112922, 34.499307304567225], [-77.406572580894, 34.4992647079753], [-77.40670302448126, 34.499137007618124], [-77.40746784538362, 34.49870690443866], [-77.40786533215666, 34.498479427029594], [-77.40798656201149, 34.49841521711671], [-77.40844969668473, 34.498191210084755], [-77.40953855071604, 34.497767921604726], [-77.40957070645867, 34.49775627121452], [-77.40960299372904, 34.49775889185862], [-77.4096400752408, 34.497733349651426], [-77.4111541115269, 34.49712931372127], [-77.41223267161303, 34.497051349921676], [-77.41235441023456, 34.49659406665789], [-77.41251118084094, 34.49652309311194], [-77.41304335149331, 34.496257156595576], [-77.41349895264317, 34.49597708413679], [-77.41367335465442, 34.49584732154726], [-77.41502106528769, 34.49603045994537], [-77.41506759502862, 34.496022019893154], [-77.41597713280385, 34.495428313025975], [-77.41598422393506, 34.49531040665332], [-77.41548436829922, 34.49472755763995], [-77.41551729696236, 34.49426278358683], [-77.41572880974826, 34.494064512906476], [-77.41578822254884, 34.494026702845794], [-77.4158593588897, 34.4939890111914], [-77.41634959506983, 34.49370548268382], [-77.41693453111287, 34.493450633219894], [-77.41699016811856, 34.49342277379569], [-77.41732618096714, 34.493318515994346], [-77.41830010844853, 34.493064438381225], [-77.41855863148146, 34.49299706050831], [-77.41888407433814, 34.4928747737256], [-77.41952942239672, 34.49263496425938], [-77.42053164307151, 34.49276803682142], [-77.42084767759867, 34.49253137637644], [-77.42141002029344, 34.49275197637101], [-77.42152578660793, 34.493009808476245], [-77.42168668584554, 34.49332963818267], [-77.42135674018742, 34.49367671553411], [-77.42124493125607, 34.49370903404889], [-77.42118971989414, 34.49378449246449], [-77.42095687449978, 34.49416315369524], [-77.42056340818333, 34.494311713912005], [-77.42004243320142, 34.49451453344089], [-77.41953244881792, 34.49465893529943], [-77.4189438856855, 34.4954232111123], [-77.41856897649456, 34.495378842272444], [-77.41767579448717, 34.495515178330535], [-77.41744604877499, 34.49602121673478], [-77.41637389181653, 34.49587443238772], [-77.4152171358373, 34.49612580114199], [-77.41567127373823, 34.49676376146142], [-77.41460078434764, 34.49701449245081], [-77.4140643792359, 34.49728028424192], [-77.41400306098662, 34.497318047552454], [-77.41389707887251, 34.49734855624665], [-77.41329411853219, 34.49756751176228], [-77.4117111241379, 34.49805302627678], [-77.41112997078187, 34.4982122775159], [-77.41090785469247, 34.498393450595266], [-77.41071190565191, 34.49855784598712]], [[-77.3243681465633, 34.750777604736456], [-77.32450798459968, 34.75090332022651], [-77.32480120097776, 34.75090075284258], [-77.32496218011326, 34.75079487742297], [-77.32517591382026, 34.7507840145861], [-77.32516110516666, 34.750957358377626], [-77.32549854320285, 34.75101043001279], [-77.32569338398051, 34.751174471771165], [-77.32574457991146, 34.75119434791252], [-77.32583083784596, 34.75126587037773], [-77.32592206356928, 34.751255696663335], [-77.32605450132056, 34.75115861655086], [-77.32626200364857, 34.75113149828059], [-77.32648180320554, 34.751113334796415], [-77.32671454340988, 34.750948927833996], [-77.3268627043394, 34.751063861240134], [-77.32709913904107, 34.751022016088186], [-77.32730436094296, 34.7509806897565], [-77.32762922202778, 34.750868756569915], [-77.32764285907251, 34.750865455739756], [-77.3276936533363, 34.75081922763996], [-77.32789104173871, 34.75058332455876], [-77.32795991119501, 34.7502204325675], [-77.3280047355625, 34.74990932402622], [-77.32854498420848, 34.749518980393056], [-77.32878248277204, 34.74932175572007], [-77.3289913005365, 34.74929973582967], [-77.32912941975853, 34.74932139805071], [-77.32940988384752, 34.74923936100012], [-77.3294667764932, 34.749062056542044], [-77.32941431797076, 34.74891248466804], [-77.32918566501294, 34.74863135567476], [-77.32895082487586, 34.748670445821524], [-77.32867883264578, 34.74852590306329], [-77.32823816459617, 34.748430055117346], [-77.32803772146667, 34.74845898506357], [-77.32787021111363, 34.74851326787534], [-77.32676703335036, 34.74877271502616], [-77.32674600435182, 34.748780981125684], [-77.32673357852438, 34.74878276453457], [-77.32556207268907, 34.74891074389364], [-77.3255114429267, 34.74890640912371], [-77.3253550874006, 34.748837900914886], [-77.32433606314251, 34.74906493720827], [-77.32426871145263, 34.74905989938599], [-77.32411131197266, 34.74901242484209], [-77.32312211734745, 34.74920984142567], [-77.32300965603696, 34.749269478379674], [-77.3229858000773, 34.74929176233661], [-77.32294650701832, 34.74931127970673], [-77.32229486898618, 34.74966735454339], [-77.32215226024174, 34.749829882109125], [-77.32219062141775, 34.749902185235136], [-77.32219589613736, 34.74992177327889], [-77.32216968557282, 34.750097701714466], [-77.32225860970193, 34.750380236348875], [-77.32213330461282, 34.750451540026376], [-77.32213828956574, 34.75075424859169], [-77.32213791985454, 34.75088413227671], [-77.32208217386881, 34.75104468009249], [-77.32201264474963, 34.751244920200634], [-77.32230743350027, 34.75134827709998], [-77.32165395737375, 34.75187059415717], [-77.32160439264958, 34.75189813295555], [-77.32103090004644, 34.75195304702702], [-77.32078654689255, 34.75179320883562], [-77.32077817553915, 34.75179213482752], [-77.32076388069639, 34.75179162874325], [-77.32063243103316, 34.75177830477314], [-77.32056048365247, 34.75183123531279], [-77.32053638732145, 34.75190922710471], [-77.32039724513153, 34.752092421798906], [-77.32040223169926, 34.75209659097891], [-77.3204011797159, 34.75210862222986], [-77.32037339692688, 34.752153895238614], [-77.32021970671991, 34.75260895211429], [-77.32017238319507, 34.75265933857827], [-77.3200958998665, 34.75310774735532], [-77.32009816378502, 34.75311047397986], [-77.3201002921253, 34.75311887673422], [-77.32017048289185, 34.75359041909079], [-77.31998988454566, 34.75398187640157], [-77.31987215931736, 34.75419362047591], [-77.32012428697425, 34.75457147119985], [-77.31997618052915, 34.75478059203069], [-77.31975184756377, 34.75510984036242], [-77.31963994979432, 34.755264755743525], [-77.31946340840433, 34.75556877418405], [-77.31941701391595, 34.755643057955304], [-77.31939824085093, 34.75568900045956], [-77.31921311383476, 34.756142047727195], [-77.31920656282642, 34.75615758991433], [-77.31920568282517, 34.75615936107027], [-77.31920526423605, 34.75616125739347], [-77.31920797219519, 34.756159719987025], [-77.31920839318235, 34.75615921218913], [-77.31920879497397, 34.75615893488589], [-77.31962187489239, 34.75588720969497], [-77.31967304224398, 34.75585167683694], [-77.31982700534766, 34.75574978164203], [-77.31990297874802, 34.75562503635286], [-77.3198153140109, 34.755588511569925], [-77.31982770380559, 34.7554311643445], [-77.32004858612228, 34.755329606216286], [-77.32016186496905, 34.755053688230475], [-77.32028649727641, 34.75456085566457], [-77.32031704505636, 34.75454507277482], [-77.32056846614883, 34.754325384049665], [-77.32069106459996, 34.753642491631496], [-77.32084095789166, 34.753498591541444], [-77.32152266437848, 34.753102618671015], [-77.32188986176834, 34.75311901946938], [-77.3221270777281, 34.7531274596171], [-77.32221216964142, 34.75307526937119], [-77.32221905976706, 34.753066156641665], [-77.32241484500376, 34.75293567133213], [-77.32244472416993, 34.75288331494516], [-77.32248787863789, 34.75278565332292], [-77.32249612108721, 34.75268847828587], [-77.32256373003887, 34.752594795516416], [-77.32250633138273, 34.7525394435456], [-77.3224500222557, 34.75248514245318], [-77.32228506770147, 34.75232606883878], [-77.32222589813267, 34.75226330674019], [-77.32246564419607, 34.751384555768546], [-77.32261870358418, 34.751305639556435], [-77.32286160285624, 34.75098648921585], [-77.32309612319939, 34.75075287855676], [-77.32314069601676, 34.750705953289284], [-77.32321301818018, 34.75062981324135], [-77.32334161720914, 34.75061753297041], [-77.32384863998502, 34.7505041077649], [-77.32412472781866, 34.750803805063775]], [[-77.34319613251044, 34.685687357576356], [-77.34257819312319, 34.686066266589], [-77.34239013140348, 34.68621150600371], [-77.34251942252062, 34.68626860883595], [-77.34273967328292, 34.686365882836476], [-77.34304993651693, 34.686502911259595], [-77.34312033849551, 34.68653400410071], [-77.34313680398168, 34.68659642197155], [-77.34351626459245, 34.68695821551336], [-77.34405687395062, 34.68647015907338], [-77.34401873263992, 34.686223362593545], [-77.34393644480909, 34.68599930765484], [-77.34392828660363, 34.68591228882992], [-77.34389120617631, 34.68566726203781], [-77.34383172356954, 34.685592431523666], [-77.34332507721949, 34.68560829108082], [-77.34330792409715, 34.68561465848048]], [[-77.38417149230037, 34.51049958954373], [-77.38365824509663, 34.51061676245911], [-77.383948323228, 34.51025636090768], [-77.38419187457201, 34.50959804626069], [-77.38434283238746, 34.509310250842766], [-77.3842924548525, 34.509227394319964], [-77.38499653570544, 34.50872093980045], [-77.38516614464157, 34.508717467943626], [-77.38578490482104, 34.508564306168864], [-77.38698197376668, 34.50860754159332], [-77.38785785315908, 34.50840130719654], [-77.38775482216624, 34.508983521486634], [-77.38600117176053, 34.50996022496066], [-77.38584935907966, 34.51004318400911], [-77.38575072319776, 34.51007746638785], [-77.38558908733445, 34.51011992016954]], [[-77.22753102299859, 34.59888808964578], [-77.22775775763778, 34.59953198731087], [-77.22734191839581, 34.59959302216082], [-77.22699720871863, 34.59994211537161], [-77.22670608393665, 34.599684604416396], [-77.22696853322113, 34.599469693287496]], [[-77.24421578771135, 34.59258054776161], [-77.24464765947059, 34.59297051963876], [-77.2449352729947, 34.59334496796766], [-77.24499057973986, 34.59357693385837], [-77.24478606869684, 34.59380456220012], [-77.24485337565272, 34.59399568224517], [-77.24478826092498, 34.594076829083434], [-77.24474428613415, 34.59427261950148], [-77.24471318567831, 34.594415546308994], [-77.24457409345591, 34.59454368225892], [-77.24428906574563, 34.594708098161604], [-77.24421744746616, 34.59488379602887], [-77.24420166686598, 34.59493688642365], [-77.24417137015521, 34.59498574297557], [-77.2440689306788, 34.59508036773938], [-77.24396342948694, 34.595153788001724], [-77.2438710482405, 34.59523302637844], [-77.24364487320808, 34.595374094509346], [-77.24342627795028, 34.59549475218726], [-77.24326474327697, 34.595570078496884], [-77.24278712852305, 34.59587125025347], [-77.24259976137857, 34.595989022799884], [-77.24254297085149, 34.59602375200221], [-77.24244760449918, 34.596073601175995], [-77.2420822741304, 34.59627131307508], [-77.24193218797483, 34.59640775989878], [-77.24176641609877, 34.59658641056112], [-77.24147599940133, 34.59638937255988], [-77.24145297053549, 34.5963727825635], [-77.24144532070221, 34.59637346842433], [-77.2414499860103, 34.596369753923256], [-77.24083446101065, 34.59592897642784], [-77.2407012578002, 34.5959171843085], [-77.24072737353461, 34.59584144366263], [-77.24067871691588, 34.59568011742447], [-77.24048748056669, 34.59535118165125], [-77.24044373347604, 34.59527880386187], [-77.24038475289707, 34.595151743756894], [-77.2403053046508, 34.59496323157014], [-77.24015044936655, 34.59485326108228], [-77.24016449867746, 34.594648548090575], [-77.24002067809495, 34.59420537168606], [-77.23976250561196, 34.59406423904016], [-77.23877180614734, 34.59380186431603], [-77.23944494774685, 34.59326772336267], [-77.23978209528673, 34.59293880529135], [-77.24112119678196, 34.59212939827272], [-77.24291183223578, 34.591825261916355], [-77.243777310508, 34.59256152789865]], [[-77.22436266772682, 34.60937789606304], [-77.2247208273717, 34.60909582556035], [-77.22536995872721, 34.60877071738056], [-77.22602469321676, 34.60852232120943], [-77.22605458444696, 34.608745009704606], [-77.22612728325267, 34.60883049631764], [-77.22650774171522, 34.60923368425753], [-77.22654302179288, 34.60929702120147], [-77.22656554215791, 34.60933644692476], [-77.2264985784192, 34.609362510049195], [-77.22648640560193, 34.609565880919845], [-77.22638078703929, 34.60972507120704], [-77.22630061275011, 34.60978689695518], [-77.22626710044733, 34.6098140579791], [-77.22619075193917, 34.60985950204428], [-77.22605569977233, 34.60995472344003], [-77.2259265480386, 34.60999305299214], [-77.22580550243237, 34.610060871802446], [-77.22535049005839, 34.610183263949565], [-77.22559021694413, 34.61038816024145], [-77.22554666472152, 34.610434428980206], [-77.22554588222118, 34.61048738575078], [-77.2254990412577, 34.61054851010716], [-77.22552403386541, 34.61059659747855], [-77.22550246215266, 34.6106131295883], [-77.22539042795883, 34.61065777714213], [-77.22537611639834, 34.61066509499394], [-77.22535135386697, 34.610684141246495], [-77.22497253429931, 34.61063477849437], [-77.22491785692715, 34.61070744135389], [-77.22487734090538, 34.61065481837189], [-77.22484656640226, 34.61061484732666], [-77.22465774404776, 34.6103696002741], [-77.22462134244756, 34.61032232047511], [-77.22446017103697, 34.61011298496113], [-77.224438148341, 34.61008438138561], [-77.2240737806666, 34.60961111977783]], [[-77.4435130608636, 34.482551019186374], [-77.44471583551473, 34.48214624755453], [-77.4452515959774, 34.48328254715125], [-77.44532692877424, 34.4834153836039], [-77.44529439590427, 34.48343919945101], [-77.444385383635, 34.48416317239035], [-77.4432269382963, 34.48465949065127], [-77.4429608745486, 34.48475456722923], [-77.44222192894684, 34.485014685297514], [-77.44173866700369, 34.485209374389434], [-77.44169524812021, 34.48523209772439], [-77.4416417714925, 34.48531773639617], [-77.44155272325895, 34.48592525910014], [-77.44074488033465, 34.48650039312643], [-77.44047629001467, 34.48701604916091], [-77.43977200919855, 34.4871855853868], [-77.43843935233839, 34.48791874758554], [-77.43722915233627, 34.487622541842605], [-77.43686753496297, 34.48763843928894], [-77.4357698076647, 34.48800456303516], [-77.43543475408386, 34.48813023196401], [-77.43531305746448, 34.48830934039061], [-77.43498130070502, 34.48909805454517], [-77.43405583023424, 34.48959629152942], [-77.43357836746195, 34.489841060391406], [-77.43250990094204, 34.48951742749569], [-77.43131630141488, 34.48914495102328], [-77.43140488375187, 34.48810996859494], [-77.43126225937566, 34.487607623382516], [-77.43126489835831, 34.48742729222692], [-77.43119605918278, 34.487257997505026], [-77.43106237427654, 34.48692923271372], [-77.43122248837903, 34.48674958968029], [-77.43136210732791, 34.48665598968598], [-77.43208249264146, 34.48650064370644], [-77.43206490777736, 34.48611703844411], [-77.43225730669793, 34.48599149122394], [-77.43248630446452, 34.485842059304986], [-77.4325181934277, 34.48582125011734], [-77.43257657457643, 34.485805378498256], [-77.43291109018219, 34.48571518218221], [-77.43349942717342, 34.485514691791096], [-77.43372621988863, 34.485451949621215], [-77.43438144933009, 34.48524169424479], [-77.43495204102098, 34.485010263658346], [-77.4350424388544, 34.48496888745975], [-77.43516449927183, 34.48492408851471], [-77.43573884923656, 34.48471329083396], [-77.4361624028786, 34.48451201045067], [-77.43637722999154, 34.48442949036451], [-77.4368114738947, 34.484332541105054], [-77.43718642482902, 34.4842287170385], [-77.43740321834272, 34.484125300314965], [-77.43807195200534, 34.48405112123522], [-77.43871005470258, 34.483980339420015], [-77.43904377307912, 34.483943318827656], [-77.43963824626834, 34.48380111113879], [-77.43998068364796, 34.48370282978399], [-77.44080210821554, 34.48360976895229], [-77.4417735951835, 34.483234388081556], [-77.44222939822674, 34.48311529858777], [-77.44247841257057, 34.48298852849352]], [[-77.3943030266258, 34.506209138457564], [-77.3928574008423, 34.50654527026761], [-77.39303807464266, 34.506006825527976], [-77.39342082106332, 34.50578000616403], [-77.39447797456995, 34.50531745773195], [-77.3952688415349, 34.50562722780752], [-77.3959246823137, 34.50501140613505], [-77.39631808609083, 34.50488905581486], [-77.39629071923511, 34.505189451416435], [-77.39542938019028, 34.50566166918441], [-77.3952666553546, 34.50572448832981]], [[-77.44526722278461, 34.493195691861125], [-77.44506261714027, 34.492924830836685], [-77.44483672086758, 34.49284781605009], [-77.44514642442414, 34.49275362691784], [-77.44586472472406, 34.49201121170727], [-77.44734286533465, 34.49162433688437], [-77.44750272989072, 34.49152092963194], [-77.44799083948526, 34.49139521142307], [-77.44876811375195, 34.491223847408286], [-77.44899131330884, 34.49115421492721], [-77.45013854453674, 34.49131113203779], [-77.45126158111289, 34.491069220986944], [-77.45142552737634, 34.49109310180237], [-77.45169958968371, 34.491023430568816], [-77.45270944447898, 34.490863863786686], [-77.45319590224513, 34.49124656192851], [-77.4528957462231, 34.49154542450497], [-77.4517174005668, 34.49129070073592], [-77.45257793432427, 34.49189066066387], [-77.45177699289674, 34.49237895295997], [-77.45114620695946, 34.49220129235291], [-77.45034605309995, 34.49207036315725], [-77.44993432626829, 34.49194564720354], [-77.44920632328464, 34.49185276866598], [-77.44898583744147, 34.492020499747014], [-77.44782780302756, 34.491776988141645], [-77.44759727186491, 34.49186687845979], [-77.44722068206337, 34.492670127865296], [-77.44570822575693, 34.49289218311456]], [[-77.4365424629726, 34.68802488937845], [-77.43689871386557, 34.688145541272235], [-77.43711423312982, 34.68826356776049], [-77.43729412628633, 34.6886250393002], [-77.43695781587581, 34.68880432516244], [-77.4367822577664, 34.688868032577076], [-77.43646400046083, 34.68877339741299], [-77.43635647958568, 34.68866784756523], [-77.43612961417297, 34.68846657640411], [-77.43566248535161, 34.68805452780787], [-77.4359779310739, 34.68755330981627]], [[-77.39979660910375, 34.51186087448863], [-77.39980352115623, 34.51188560736951], [-77.39976052093253, 34.51193896903952], [-77.39924288257583, 34.51258482139838], [-77.3990309337899, 34.512844587563215], [-77.39871486420077, 34.51273123244369], [-77.39825343197774, 34.5125165582648], [-77.39791644338729, 34.51237033712705], [-77.39749435247694, 34.512218975597165], [-77.3973370498545, 34.51165792778662], [-77.39828257296044, 34.51121787305086], [-77.39832596479793, 34.511145641988996], [-77.39839618832724, 34.51110944223905], [-77.39953221303347, 34.51073904801489], [-77.39986439774378, 34.51067679985585], [-77.40048353059356, 34.510425310046685], [-77.40065374518097, 34.5104757252644], [-77.40096223487123, 34.5107389605878], [-77.40064262591513, 34.5109718798498], [-77.40029895684103, 34.51111194153414], [-77.39983894660459, 34.51181198819746]], [[-77.33309165869187, 34.569748225861446], [-77.33320520586703, 34.569994502639396], [-77.333316608977, 34.569715890615136], [-77.33343730471476, 34.56952367946914], [-77.33359954673152, 34.56956359493884], [-77.3337319129623, 34.56951360361586], [-77.33383779686845, 34.56947308059043], [-77.33390306485589, 34.56930475943771], [-77.33375457413848, 34.56939529652067], [-77.33359968913595, 34.569392028902165], [-77.33342358571133, 34.56946567059356], [-77.33338999993313, 34.56947946583884], [-77.33320546462818, 34.56968441427774]], [[-77.22002920270297, 34.61369801934448], [-77.22047417478453, 34.61377114841741], [-77.22018734242184, 34.61401788033796], [-77.22052876455169, 34.61437677750587], [-77.22052534205582, 34.61448672004684], [-77.22050537857062, 34.614514359151386], [-77.2204838438551, 34.6145313066385], [-77.22035311339803, 34.61473801686138], [-77.22032646177477, 34.614776087349874], [-77.22020873635837, 34.61494406687281], [-77.2201972789114, 34.61496139245823], [-77.22017410368397, 34.61498543452761], [-77.22004220936628, 34.61512466907008], [-77.2199851115596, 34.615180319200384], [-77.21986796906542, 34.61529840869137], [-77.21977207476881, 34.615399177143026], [-77.21969720822425, 34.615475244991714], [-77.21966445901977, 34.615508519497816], [-77.21960604278011, 34.615565234833795], [-77.21955303337025, 34.615617560718476], [-77.21950662804157, 34.615634447447036], [-77.2194611807814, 34.615651564481965], [-77.21924996419803, 34.61573485281844], [-77.21908816502773, 34.615816529448644], [-77.21901584822183, 34.615855320107364], [-77.21890649766392, 34.61591397521776], [-77.21871642158388, 34.61589793394005], [-77.21869816226774, 34.61578572748971], [-77.2186882465639, 34.61572479555724], [-77.2186620812313, 34.61556400700338], [-77.2186521276502, 34.61555462778023], [-77.21865761891016, 34.615536585210485], [-77.21862045789442, 34.6153082259833], [-77.21860372138612, 34.61520537952312], [-77.21855955799475, 34.614933986734925], [-77.21848184094263, 34.61482591300751], [-77.21832695779972, 34.61457418028259], [-77.2184163651242, 34.6140068318317], [-77.21922996145432, 34.61394226951861]], [[-77.41909555337183, 34.502374610982216], [-77.41888241253933, 34.50247961918122], [-77.41863011947883, 34.50246793613806], [-77.41809460462125, 34.502617121289504], [-77.4177456621165, 34.50243818911497], [-77.4176077878359, 34.502276920450086], [-77.41760205251757, 34.50214505406787], [-77.41767638913541, 34.50195851798574], [-77.41765841427564, 34.50167588980739], [-77.41844153279942, 34.501644906859575], [-77.4186565890943, 34.501816834420865], [-77.41877242076703, 34.50187707187855], [-77.41889217554464, 34.502039776586344], [-77.41908977594227, 34.50211949369556], [-77.41945886803039, 34.50219054540712]], [[-77.4542218568421, 34.47711276592874], [-77.45427097395438, 34.477085926025175], [-77.45431878058459, 34.47704689974707], [-77.45463580376145, 34.47666915805302], [-77.4551411014644, 34.47648398772405], [-77.45532950262925, 34.47641220496549], [-77.45619966622279, 34.47614607312044], [-77.45676694506318, 34.476152216142225], [-77.45783211662003, 34.47662078920876], [-77.45700430034438, 34.47702057663547], [-77.45683465666825, 34.477143619115594], [-77.4567235829531, 34.47723996363027], [-77.45648447340513, 34.477563016690596], [-77.45623741485319, 34.47789077008092], [-77.45636254116094, 34.47810230388096], [-77.45519219329738, 34.47823830738004], [-77.45449629227669, 34.477696383997696], [-77.45399209381327, 34.47729964976676]], [[-77.45725423727782, 34.48267109198498], [-77.45622656250688, 34.48278863910333], [-77.45596170705312, 34.483057688955526], [-77.45578294964885, 34.48316714163214], [-77.45482736058679, 34.483126239818176], [-77.45477478993739, 34.48267726902047], [-77.45503630350389, 34.48255835494082], [-77.4553154634195, 34.482345931315365], [-77.45563724488724, 34.48187068955437], [-77.45706686782148, 34.48131052941284], [-77.45737879791434, 34.4809723026899], [-77.45870337016773, 34.481100846241205], [-77.45872287832404, 34.48139468956828], [-77.45844644592874, 34.48149107279912], [-77.4583425484168, 34.48191614235218]], [[-77.46315550469257, 34.486749083937845], [-77.46285193450093, 34.48700855254083], [-77.46264798456222, 34.487096556045664], [-77.46247833798608, 34.487193154305245], [-77.46212633317214, 34.48743716338447], [-77.46190254233127, 34.48763586138513], [-77.46162548920813, 34.48778787917787], [-77.4615408412515, 34.48823004499481], [-77.46163909819249, 34.48829800025849], [-77.46146344063892, 34.48840600273802], [-77.4613106698207, 34.48882299721088], [-77.46126253003806, 34.48895439371665], [-77.46105998122258, 34.48926423511472], [-77.46105963331469, 34.489281848236004], [-77.46105055527606, 34.48929066404238], [-77.46103399529515, 34.489297730751964], [-77.46089174157936, 34.489352148812216], [-77.46042261789684, 34.48952413548239], [-77.45997558702724, 34.489362464936626], [-77.45840493161556, 34.489085789252755], [-77.45816759088551, 34.48879718182671], [-77.45841294330258, 34.48860329654525], [-77.4582894814578, 34.48836321802567], [-77.45822284130602, 34.48812447226102], [-77.45819370243434, 34.48790273958855], [-77.45842172075145, 34.487511220571115], [-77.4583568640105, 34.48745576312289], [-77.45836548126644, 34.48739215529294], [-77.4584885015171, 34.48737517503115], [-77.45883231945179, 34.48680440047517], [-77.45875182141558, 34.48639177303488], [-77.45958716116692, 34.48646858934316], [-77.4606503969894, 34.48634662641523], [-77.46089445402474, 34.486325120884274], [-77.460991171611, 34.486291658668165], [-77.4610603321165, 34.48624205987316], [-77.4620993559134, 34.48580720439142], [-77.46231706177473, 34.48574773982865], [-77.46333182797004, 34.48572827382388], [-77.46350425538597, 34.48602070290747], [-77.46371954636872, 34.48630857307071], [-77.46375003576003, 34.48644388007274], [-77.4636217348052, 34.4864503065379]], [[-77.25110060950558, 34.61079898676154], [-77.25189018523889, 34.61009874824532], [-77.25209231788637, 34.60993437162394], [-77.25217330201849, 34.60984766626867], [-77.25258889051862, 34.60903076247959], [-77.25300562491078, 34.60821160103912], [-77.25304999828553, 34.60812438082924], [-77.25307125390957, 34.60801695583533], [-77.25334503316736, 34.607204908044864], [-77.25269396321485, 34.60581590962568], [-77.2519015084582, 34.60568571200883], [-77.25030339071616, 34.605555562057816], [-77.24942843071842, 34.605603679357515], [-77.24797646314308, 34.606115460521764], [-77.24735122522907, 34.606733019341604], [-77.24680711104702, 34.607450403047416], [-77.24669274190317, 34.6076031430987], [-77.24668339277403, 34.60762311543763], [-77.24667348708115, 34.60764263242278], [-77.24710107097359, 34.60859869564494], [-77.24771901243838, 34.608980674177566], [-77.24849603194076, 34.60989961854532], [-77.2493917056409, 34.610664451356314], [-77.24991370598288, 34.61130871023784]], [[-77.39590682458739, 34.51122396369877], [-77.39590924179826, 34.51121180828312], [-77.39591745717514, 34.51110001128406], [-77.39593077884928, 34.51109548429866], [-77.39594828070008, 34.51109556201129], [-77.39595319518921, 34.51120179440765], [-77.39598306514036, 34.511212958594584], [-77.39592582118861, 34.51131614709882]], [[-77.31383942808596, 34.69843896761304], [-77.3143182713932, 34.698442145885934], [-77.31427429793419, 34.698838714947186], [-77.31431398396552, 34.69886581293051], [-77.31455790811886, 34.698799868317955], [-77.31477281088561, 34.69859166231664], [-77.31501012045177, 34.698530807763575], [-77.31524332921165, 34.69821862122695], [-77.31515820505929, 34.69819034127321], [-77.3151070242531, 34.69819761812962], [-77.31490247983419, 34.69802162939042], [-77.31487496808633, 34.698014073414505], [-77.31483635498836, 34.698009494853764], [-77.31448943071791, 34.69826258206858], [-77.31411656290967, 34.69788559783217], [-77.314032081627, 34.69787408520061], [-77.31400601138402, 34.697866221407445], [-77.31391172832868, 34.697827809827274], [-77.31370827817098, 34.69786066532694], [-77.31361702660041, 34.69779917775776], [-77.31354090714488, 34.6977207635894], [-77.31345792921283, 34.6976921950325], [-77.31323186072376, 34.69776309167942], [-77.3134065619376, 34.69786880259619], [-77.31347025873636, 34.69791203337789], [-77.31350836423692, 34.697968901087705], [-77.31362905311009, 34.698133054082405], [-77.31370307586654, 34.69812707202597], [-77.3137746152816, 34.698344721064004], [-77.31382179867775, 34.698413332106234]], [[-77.44092190174149, 34.495870431264684], [-77.44059849530636, 34.49582244335585], [-77.43994665795381, 34.49559696105045], [-77.43967678216747, 34.49528711674935], [-77.4400811462493, 34.49514151856732], [-77.44036333842776, 34.4949617185615], [-77.44047755842199, 34.49474006807298], [-77.44063205870947, 34.494660261823356], [-77.44085146255831, 34.49432767373112], [-77.4408529384529, 34.49399598358772], [-77.44128309433653, 34.493399369204184], [-77.44146039004877, 34.49343540197685], [-77.44270253811597, 34.49366599938135], [-77.44312265159152, 34.49393814327545], [-77.44420113504805, 34.49416650635125], [-77.44289574534167, 34.49437311967713], [-77.44216867418012, 34.49496781576252], [-77.44177507114438, 34.495200051347226], [-77.4416068198953, 34.495288872261895], [-77.44165735663576, 34.49538802379129], [-77.4414221507785, 34.495609156582326], [-77.44129026071369, 34.495729134495384]], [[-77.357122824501, 34.570112390363306], [-77.3570938605426, 34.56996116404799], [-77.35709438857513, 34.569904207727326], [-77.35723818142003, 34.569749144876916], [-77.35730675516265, 34.56973524939579], [-77.35757842574162, 34.569680198898176], [-77.35763219218394, 34.56968772162235], [-77.35791702110089, 34.569691130497], [-77.3580261335596, 34.569754325368635], [-77.35859891798391, 34.569707244413856], [-77.35881413672516, 34.56966233467497], [-77.35899258518806, 34.56961094670386], [-77.35936647928239, 34.569618771652785], [-77.35960214650369, 34.5695536479854], [-77.35996610508205, 34.56967079541603], [-77.36001404771119, 34.56967679094197], [-77.36038995037651, 34.56984501880249], [-77.36058646749292, 34.570038315841096], [-77.36078961622565, 34.57042717560607], [-77.36079218933057, 34.570433251218], [-77.36079949812097, 34.57044930569813], [-77.36090057015385, 34.57062992383937], [-77.36096418390316, 34.57063836712318], [-77.3611266020627, 34.570809657231074], [-77.36116112669492, 34.57082224123046], [-77.3611774057454, 34.570845567961705], [-77.3614514695353, 34.571187436952975], [-77.36141112324519, 34.57136566828062], [-77.36141079754739, 34.57161784707888], [-77.36141113361401, 34.57187020995039], [-77.36117673879018, 34.57218480828631], [-77.36106602828178, 34.57239740894944], [-77.36042873801517, 34.57256506220263], [-77.36038859089871, 34.57252253968976], [-77.36031041291004, 34.57254114973071], [-77.35972726375206, 34.57257283013625], [-77.3596006517341, 34.57244320220937], [-77.35937959862437, 34.572148646298835], [-77.35922899501308, 34.571931962511], [-77.3592069419557, 34.57190580344379], [-77.3590050859885, 34.57175724263317], [-77.35881317063928, 34.571495388932604], [-77.35852488493458, 34.57149487139008], [-77.35806094950206, 34.5712510048958], [-77.35804461190597, 34.57123258991714], [-77.35802536178865, 34.571192619331356], [-77.35796563119013, 34.57090470520046], [-77.35785585383547, 34.57085597631264], [-77.35771091716947, 34.57079136226108], [-77.35763160819864, 34.57076627234133], [-77.3574266375033, 34.570696845751755], [-77.35723770107259, 34.57062858491041], [-77.35717565203542, 34.570596220656796], [-77.35694636340448, 34.570562342880976], [-77.35716258422232, 34.570450168323895]], [[-77.34177108716145, 34.6537029045822], [-77.34167777541964, 34.6536698088833], [-77.34163344310038, 34.65366464088312], [-77.34159231041104, 34.65361322601527], [-77.34129709721874, 34.653368822760974], [-77.34119649343123, 34.65338151179957], [-77.34118104984313, 34.6532476751355], [-77.34090944354637, 34.653033115803346], [-77.34082696380702, 34.652964919141176], [-77.3406735134771, 34.652895336759386], [-77.34054952844664, 34.65283540812095], [-77.34030772798808, 34.652844696386595], [-77.33997470469006, 34.652569247091606], [-77.33995230672724, 34.65240018344228], [-77.33975621585303, 34.651755239826066], [-77.33973480605167, 34.65168264916856], [-77.33967709159982, 34.651680609042], [-77.33961199430613, 34.65177503267985], [-77.33931984290287, 34.652081952041186], [-77.33916263969259, 34.65230707528525], [-77.3390433477636, 34.652491094533076], [-77.33863154108627, 34.65271856791526], [-77.33860837578754, 34.65273546961568], [-77.33859554504293, 34.65274032052222], [-77.33851414211709, 34.65276968704032], [-77.33832693865705, 34.653156831015586], [-77.33823060123228, 34.65323059231709], [-77.33836759891348, 34.65324104953388], [-77.33843422276827, 34.65325698292813], [-77.33863596818009, 34.65287277329777], [-77.33890945737056, 34.65331649765177], [-77.33924654858055, 34.65334803977085], [-77.33936549648998, 34.653316488110534], [-77.33957616326802, 34.65314479809685], [-77.33965890114605, 34.653456580366836], [-77.33966753144237, 34.653741023996496], [-77.33944512705929, 34.6537127203988], [-77.33917948016635, 34.65395268636468], [-77.33917342170497, 34.653953936522036], [-77.33916504210929, 34.65395864221775], [-77.33886614100848, 34.654018132945964], [-77.33875448116578, 34.6542232060566], [-77.33839780299581, 34.65432932852944], [-77.33828670042772, 34.65432130406686], [-77.3379905823112, 34.65452951494653], [-77.33779730930719, 34.65466420234739], [-77.33771715047317, 34.654673713166005], [-77.33759858231363, 34.655005300890046], [-77.33763302801168, 34.6551781091769], [-77.33754038347837, 34.65543528173196], [-77.33742250005399, 34.6556488460901], [-77.33728147386849, 34.65569235164571], [-77.33718538038741, 34.65590598905665], [-77.33712501103116, 34.65603840648731], [-77.33712520776822, 34.65627432946276], [-77.33735427407092, 34.656252424693506], [-77.33739562461471, 34.65626040322328], [-77.33742781398256, 34.65624937369354], [-77.33763043857857, 34.65617659082216], [-77.3376821418174, 34.656092836558905], [-77.33782109700307, 34.65602093699431], [-77.33793757900509, 34.65577061510507], [-77.33815343326938, 34.65596111944781], [-77.33836647610397, 34.65586278196591], [-77.33858625160771, 34.655811889620054], [-77.33873432700003, 34.65569344225149], [-77.33871890613152, 34.65552451192452], [-77.3388991185143, 34.65524883213992], [-77.33898411155889, 34.65510482100494], [-77.33908209453642, 34.65509270554205], [-77.33924023654102, 34.654780024626895], [-77.33927757131657, 34.65471150732269], [-77.33930969567012, 34.654632018117994], [-77.33940943166978, 34.654622954714476], [-77.33960079607685, 34.654487299048135], [-77.34011489491688, 34.654374547457856], [-77.34020728775054, 34.65431873846062], [-77.34025388546134, 34.65428837550889], [-77.34069175165631, 34.65415882394345], [-77.34079730253117, 34.65406820817237], [-77.34083817699988, 34.65409085468023], [-77.34132178792085, 34.65395074043218], [-77.34141137630257, 34.653937393008924], [-77.34147377242844, 34.65398073801282], [-77.34167475363688, 34.65394659939873], [-77.34172931077859, 34.653926205515454], [-77.34178049019462, 34.65394761200685], [-77.34185022305743, 34.65394358246988], [-77.34187807092277, 34.65386983025561], [-77.3419138454457, 34.65383616212189], [-77.34188151498013, 34.653747613512124]], [[-77.38254448162654, 34.513396828346416], [-77.38253903181393, 34.51339939205186], [-77.38253614846317, 34.51340089247081], [-77.38252462351471, 34.51340679918919], [-77.3821395341266, 34.51358542566963], [-77.38191386421627, 34.51359191473627], [-77.38174670627384, 34.51360259884162], [-77.38136742384927, 34.51382273864501], [-77.38120267915241, 34.513925194213314], [-77.38102253997457, 34.513654944999566], [-77.38099154263624, 34.513620799289825], [-77.38175670972916, 34.513160667686996], [-77.38198834430746, 34.51313147506802], [-77.38219352363397, 34.513174731333685], [-77.38253641608722, 34.51338906451778], [-77.38254882619111, 34.51338846774948]], [[-77.42912987687154, 34.49820611863881], [-77.4299809653713, 34.49884592665107], [-77.42967997561837, 34.49899803694201], [-77.4295267623917, 34.49916051905234], [-77.42941974618681, 34.49926759668743], [-77.42933403724652, 34.49942402793547], [-77.42920517084261, 34.49948187540548], [-77.42834897014139, 34.50008765889027], [-77.42832878760018, 34.50011268654054], [-77.42831728190347, 34.5001180920708], [-77.42830682960928, 34.50012356326696], [-77.42824350297705, 34.500142725269406], [-77.42762269223417, 34.50037460665347], [-77.42706457889128, 34.500505959114065], [-77.42672914219966, 34.50053440370455], [-77.42631653323161, 34.50068550046818], [-77.42581687111917, 34.50086840233469], [-77.42540828845966, 34.50108063761007], [-77.42523842906081, 34.50130599199676], [-77.42493509319031, 34.50144476983547], [-77.42465477678752, 34.50154444072808], [-77.4245139010587, 34.501606764016486], [-77.42431716164093, 34.50173854274991], [-77.42379844336011, 34.50190799267131], [-77.42363690707683, 34.502002017875064], [-77.42343994244595, 34.50202736614128], [-77.42313780210449, 34.50202556533639], [-77.42237029134203, 34.50198043708967], [-77.42202965324923, 34.502108360479845], [-77.4215055121147, 34.502220187723736], [-77.42132857587569, 34.50192025228651], [-77.42162461655741, 34.50161792696824], [-77.42144992286786, 34.50145024414242], [-77.42149185938166, 34.50131933470226], [-77.42127029980392, 34.501103292128825], [-77.42171219553722, 34.500631536702194], [-77.42175502559884, 34.50049297768249], [-77.42184642154119, 34.50045718649469], [-77.42285068798296, 34.49986902702789], [-77.4228791143616, 34.499851116978995], [-77.42291247778681, 34.49983610838568], [-77.42349825423184, 34.49955794284692], [-77.42405294683141, 34.49934014493151], [-77.42434389232868, 34.49937487588728], [-77.42491394606887, 34.499262796116064], [-77.42535480966707, 34.49917611678906], [-77.42569041116768, 34.498841139081854], [-77.4260275714669, 34.49864412307193], [-77.42650343260576, 34.49845087450173], [-77.42688050962275, 34.49850607439645], [-77.42741832986746, 34.49849280464614], [-77.42785220250934, 34.49845867807867], [-77.42799106409302, 34.49840659866314], [-77.42821178480138, 34.498284357409375], [-77.42900494444069, 34.49817962187577]], [[-77.25891795633473, 34.581853092921676], [-77.25901610761625, 34.58207978956548], [-77.25887994106085, 34.5821880817127], [-77.2592234288364, 34.58236955559302], [-77.25913011910758, 34.582443439957046], [-77.25909243298548, 34.58247957935305], [-77.25904827350833, 34.58267266953526], [-77.25882191791787, 34.58287604072147], [-77.25880727389287, 34.58288321658405], [-77.25880563102754, 34.582889245407735], [-77.25880090776592, 34.582895201150954], [-77.25862578356478, 34.58305042725327], [-77.25849027971802, 34.58310009864701], [-77.25840915008261, 34.583186380883745], [-77.25839609951923, 34.58321052225341], [-77.25833278223908, 34.58325421760384], [-77.25823851653075, 34.583315955870034], [-77.25814525250752, 34.58338040749677], [-77.25798319374533, 34.58346479125862], [-77.25793000414251, 34.58352734643549], [-77.2578162704285, 34.5836141019107], [-77.25779445140284, 34.58362555328871], [-77.25777014595714, 34.583632600589894], [-77.25774247057262, 34.583658988300265], [-77.25760503854899, 34.58373744137094], [-77.25757428381506, 34.58375836459794], [-77.25750757235942, 34.583807700217385], [-77.25720567779737, 34.5839416801902], [-77.25724674406547, 34.58402833379234], [-77.25719610944769, 34.5840792769623], [-77.25712098801849, 34.584155235681685], [-77.25710012313691, 34.58416904331363], [-77.25710128188187, 34.584174658247626], [-77.25701968876257, 34.584250999880226], [-77.25697221275014, 34.58427681116304], [-77.25688938472335, 34.584345860585586], [-77.25683658611659, 34.58438397158481], [-77.256817509486, 34.584399812235056], [-77.25676864900205, 34.58443507945138], [-77.25666459805896, 34.584488269906934], [-77.25663744027445, 34.58453205907089], [-77.25661550917013, 34.58454878415127], [-77.25653694289934, 34.58459605754361], [-77.25644692264798, 34.58465441397604], [-77.25633978963022, 34.5846321865111], [-77.25620291910771, 34.5847866259153], [-77.25617175718922, 34.58480298381083], [-77.25615203731186, 34.58482069557775], [-77.25581675796954, 34.58482425829279], [-77.25569670716814, 34.585159886637726], [-77.25558335991306, 34.585228009593514], [-77.25556013108351, 34.585253287907676], [-77.25543366438825, 34.58545189721362], [-77.25539435986597, 34.58548509384309], [-77.25508141409433, 34.58548477816184], [-77.2546065857496, 34.58562245841362], [-77.25491564155118, 34.58581976561684], [-77.2548344655658, 34.58587607014909], [-77.25480801693013, 34.58589889500111], [-77.25473477173001, 34.585986057690604], [-77.25470985953899, 34.58600484418772], [-77.25461860080935, 34.586059063530435], [-77.2545260881761, 34.58608746478616], [-77.25446488207731, 34.58617225349015], [-77.25441457685552, 34.586206239179106], [-77.2541735388659, 34.586281345203574], [-77.254156973422, 34.58626446991227], [-77.25404167836847, 34.58614701793742], [-77.25393775109754, 34.58604114517823], [-77.25382117018229, 34.5858621835194], [-77.25380740956177, 34.585666176844356], [-77.25391570380323, 34.58556806568424], [-77.25418762193682, 34.585347067998654], [-77.25431889388933, 34.58512846530026], [-77.25445121664126, 34.58489146015428], [-77.25431982639513, 34.58465719320477], [-77.2552417095168, 34.58412068250689], [-77.25551344538462, 34.58389718090524], [-77.2555321264608, 34.583809947916144], [-77.25563739021004, 34.583712480878575], [-77.25625255573117, 34.58324002375697], [-77.25703505638614, 34.58318908956979], [-77.25743334590891, 34.58312131807933], [-77.2575466583614, 34.58307651690343], [-77.25756712773823, 34.58302744524593], [-77.25758277574135, 34.58298397764418], [-77.25760042016668, 34.58279109205576], [-77.2574719752861, 34.58254861403955], [-77.2578157617621, 34.58216191143691], [-77.2578050592959, 34.58210348777541], [-77.25800916789014, 34.58198318152925], [-77.25833217685373, 34.58196851445831]], [[-77.43761357012784, 34.582975955007385], [-77.43751482200922, 34.582820626329934], [-77.43745291169418, 34.582723241314966], [-77.43721093968911, 34.582342621930145], [-77.43695851360435, 34.58194554772763], [-77.43682500446988, 34.58173553338459], [-77.43660318990959, 34.58138661132689], [-77.43638195270778, 34.581179732107], [-77.43567429033831, 34.58082329602531], [-77.43524862130461, 34.580958899252366], [-77.43489894859451, 34.58092177761991], [-77.43485459326197, 34.58092631919856], [-77.43479014518508, 34.580915863922975], [-77.43481477351597, 34.58098174812431], [-77.43482579270677, 34.58101122615733], [-77.43498073229344, 34.58138234416211], [-77.43487636612907, 34.58179893396132], [-77.4348719270011, 34.58184096104378], [-77.43467434535039, 34.58227582882364], [-77.43457327754673, 34.58241126419536], [-77.43446117255162, 34.58245841547545], [-77.43416149325178, 34.58267299728828], [-77.4340183887092, 34.58274259950174], [-77.43403337652117, 34.58282964164161], [-77.43406730130444, 34.58285221906155], [-77.43437980445117, 34.583167599619024], [-77.4344049263104, 34.5832248977567], [-77.43446172142428, 34.58386908107202], [-77.4344876615221, 34.583973280962645], [-77.43449627068283, 34.58399994494621], [-77.43525006600777, 34.58458676386137], [-77.43554551846118, 34.583848236963355], [-77.43560207953101, 34.58337071518938], [-77.43603758615743, 34.58325436415734], [-77.4361901090607, 34.58307028332943], [-77.43670268279881, 34.58296409173572], [-77.43666977891999, 34.58326108025416], [-77.43682567008426, 34.58333200685502], [-77.43698218835681, 34.58347190112637], [-77.43702275434491, 34.58350164224841], [-77.43717426567191, 34.58361272325083], [-77.43720009445056, 34.583630246192975], [-77.43721983025911, 34.58364959831905], [-77.43758109904921, 34.58358916407173], [-77.43761385590298, 34.58364531342886], [-77.4379817491111, 34.58394885042748], [-77.4380080268805, 34.583977747982175], [-77.43818692234261, 34.58412276659258], [-77.4382051808713, 34.58429880956042], [-77.43823831145566, 34.58430803977417], [-77.43837313807487, 34.58431986373871], [-77.43840219890639, 34.58430535501427], [-77.43851570191171, 34.58448022211916], [-77.43857608701407, 34.58449650088403], [-77.43872796746346, 34.5846618221127], [-77.43876597829353, 34.584689105021624], [-77.43898426044358, 34.58482712357241], [-77.43919028605399, 34.58436477886687], [-77.43935825415541, 34.58481448439679], [-77.4393107606394, 34.58500213328452], [-77.43947861830831, 34.58509210720854], [-77.4395329682472, 34.585182294501266], [-77.43958470776843, 34.585231036625956], [-77.43966861178288, 34.58528458917351], [-77.43977298738318, 34.585359879165935], [-77.43997888444287, 34.58554226850828], [-77.44024870834015, 34.58542486330172], [-77.44076159291038, 34.5856356671101], [-77.44062888834125, 34.584959979250826], [-77.44058325213584, 34.584818095921015], [-77.44031787625491, 34.58437314801971], [-77.4401169959933, 34.58403634034674], [-77.4399781205133, 34.583868209063105], [-77.43981877544488, 34.58390774531707], [-77.4391901386864, 34.584034795511904], [-77.4390789194219, 34.58406661092801], [-77.43879615948413, 34.58414749692974], [-77.43844258756081, 34.5842349435101], [-77.43840216001426, 34.5842163703212], [-77.43827453935663, 34.58401563216441], [-77.43819452688967, 34.58388977736892], [-77.43812259380967, 34.58377663139818], [-77.4379473192555, 34.58350093226712], [-77.43781870483008, 34.58329862901395]], [[-77.43820054818349, 34.740724112391256], [-77.43798083763647, 34.740657385683114], [-77.43792705713703, 34.7406150103175], [-77.43784476556911, 34.740573657898025], [-77.43777537881347, 34.74050443629035], [-77.43777303037507, 34.74045606769641], [-77.43784146336452, 34.74032118987285], [-77.43793402759351, 34.740280349605364], [-77.43796877883463, 34.740155301482844], [-77.43806316363315, 34.74004595175969], [-77.43813582827511, 34.73985830347143], [-77.43814982052905, 34.73979671221542], [-77.43817251361611, 34.73974039761973], [-77.43826464218361, 34.73967666594258], [-77.4383279639996, 34.73962046541572], [-77.43846941161965, 34.73962885720699], [-77.43854566435769, 34.73960220734299], [-77.43859833294084, 34.73963142735726], [-77.43862588662992, 34.73965384796533], [-77.43862789647181, 34.739684229481256], [-77.43860399253626, 34.73969747574647], [-77.4386087497543, 34.739817297782736], [-77.43851962167857, 34.73990342963488], [-77.4384957376815, 34.739894493109155], [-77.43843748053995, 34.73989721684539], [-77.43846593197128, 34.74008896386812], [-77.43844524531852, 34.74017561873616], [-77.43844477423117, 34.74017928108177], [-77.43844438392144, 34.740184448292986], [-77.43842963240841, 34.74031374869011], [-77.4384104219665, 34.740413349987605], [-77.43840635722651, 34.740445374627285], [-77.43836530977464, 34.740655373633246], [-77.43837684316391, 34.74071457875888], [-77.4383903230447, 34.740843813892354]], [[-77.22939400891362, 34.59720950079052], [-77.23012977542817, 34.59708672386418], [-77.23048893772679, 34.59739073543547], [-77.23057875487117, 34.59750095159125], [-77.23063536293446, 34.59775348856646], [-77.23078854876432, 34.59788573519664], [-77.2309290317086, 34.59810462643412], [-77.23093498548383, 34.59818767963143], [-77.23083540398416, 34.59836079012922], [-77.2306427178487, 34.59858510006263], [-77.23041026837681, 34.59879860232549], [-77.23000790549082, 34.5989925307133], [-77.2294845756984, 34.598869579938366], [-77.22917490391697, 34.59897228205811], [-77.22830031086848, 34.59863208985038], [-77.22885311413401, 34.59830772448151], [-77.22879408170598, 34.59819970301536], [-77.22874842043535, 34.59818577860524], [-77.22879915900357, 34.598049129831], [-77.22876078511575, 34.59772571557704], [-77.22870216055924, 34.59746835519225], [-77.22893895327212, 34.59706914466365], [-77.22940016173958, 34.59683345784202], [-77.22941579738458, 34.596831481657766], [-77.22941912915736, 34.59683495475752]], [[-77.43131197623893, 34.5009404527302], [-77.4312947441947, 34.50097121022051], [-77.43126373665322, 34.50108859706034], [-77.43121711132915, 34.50123054608718], [-77.43070841490825, 34.5012474289431], [-77.43065378590413, 34.50125380868481], [-77.43061967727306, 34.50125037396259], [-77.43061755157888, 34.50123619670112], [-77.43060765502696, 34.501151810069096], [-77.43057945424871, 34.50092060845379], [-77.43074231444277, 34.50091138959156], [-77.43108579703967, 34.50086965018063], [-77.43120090452216, 34.50085853909677]], [[-77.45178773456348, 34.47923435189524], [-77.45169021353468, 34.479396155432745], [-77.4514848818456, 34.479675645719894], [-77.45112315116415, 34.480133318549655], [-77.44968996170718, 34.47958431899598], [-77.4497523039908, 34.479514983477344], [-77.45016868416003, 34.47925079567786], [-77.45075352958361, 34.47899185745317], [-77.45080494257809, 34.47896889379946], [-77.45084657004259, 34.47898616498673]], [[-77.43686988759859, 34.49696190832504], [-77.43672403430672, 34.4970746218378], [-77.43661184710353, 34.497157514313216], [-77.43566842024079, 34.497493361822016], [-77.43544103298522, 34.49763929534056], [-77.43505103535844, 34.49775347332759], [-77.43446010148044, 34.49799977856732], [-77.43342417342382, 34.49784727437343], [-77.43307964900359, 34.49787600558339], [-77.43280630234509, 34.49776026100044], [-77.43238745708183, 34.497617627651586], [-77.43259546254613, 34.49744447413155], [-77.43290882610306, 34.49725056038875], [-77.43326681738236, 34.49658252558262], [-77.43403788098834, 34.496453961297505], [-77.43413120636166, 34.496408539816926], [-77.43455826628549, 34.4963772765761], [-77.43481078821685, 34.49614471847186], [-77.43530343510487, 34.49615715739802], [-77.43623338101392, 34.495970616422724], [-77.43658468555941, 34.49591784444056], [-77.4367038922767, 34.495876593115874], [-77.43693867774631, 34.49582310776311], [-77.43784992415955, 34.495619930700855], [-77.43864389439429, 34.49591001959192], [-77.4386431613966, 34.496224991957874], [-77.4386730109926, 34.49624927130742], [-77.43863974857568, 34.4962795186274], [-77.43832875704184, 34.49656949253689], [-77.43827015377879, 34.49663782047956], [-77.43814714360062, 34.49670792808856], [-77.4375865450095, 34.49682955171765]], [[-77.39363079197497, 34.50867023731463], [-77.39399422215114, 34.50880684053356], [-77.39481187093611, 34.50892765223408], [-77.39497350220829, 34.50951509128521], [-77.39506164379368, 34.50963211338403], [-77.3949299177119, 34.50980401050711], [-77.39479947035049, 34.51015962515281], [-77.3945878214863, 34.51032076938336], [-77.3943796217369, 34.510271035284696], [-77.39400452895622, 34.510505102871086], [-77.39398170127845, 34.51051558644195], [-77.39397641627758, 34.51052002061047], [-77.3939730629366, 34.51052373973138], [-77.39378331054291, 34.51061250359337], [-77.39369799392637, 34.510632914444514], [-77.39358540922727, 34.510687643025676], [-77.39335436339995, 34.510714090192636], [-77.39292375142175, 34.51084100657331], [-77.39279689238066, 34.51085079875686], [-77.3926684032678, 34.51087707311659], [-77.39220928125081, 34.510899389475455], [-77.39201115430443, 34.51089037659268], [-77.39127782402888, 34.510697308862866], [-77.39123092757559, 34.51068520990481], [-77.391205229695, 34.51069426182347], [-77.39114416673364, 34.510687167691025], [-77.3911636063819, 34.510641749707254], [-77.39123302192067, 34.510592225482554], [-77.39133367562071, 34.510227830093385], [-77.39135532907785, 34.51016702737891], [-77.39143323793766, 34.50977961333878], [-77.39157568075684, 34.50944785153089], [-77.39129350286034, 34.5091966112903], [-77.39132322108694, 34.50873279957292], [-77.39206186906483, 34.50863782511237], [-77.392797964614, 34.50852185255509]], [[-77.45416684912878, 34.680177778309414], [-77.45417579953137, 34.680224148845404], [-77.4542850856092, 34.680354792903245], [-77.45454450581684, 34.680294700506906], [-77.45477392169751, 34.68021859763704], [-77.45488642709714, 34.68011960069752], [-77.4548052115297, 34.680044747580105], [-77.45477490434165, 34.680013173998795], [-77.45469167013034, 34.679918569661424], [-77.45456360891305, 34.67981412632391], [-77.45454663574897, 34.679749185633106], [-77.45450051083867, 34.679675032430296], [-77.45441524464253, 34.679538182917206], [-77.45418697598393, 34.67948243504658], [-77.45401137580947, 34.679194383098576], [-77.45397923673373, 34.679156486295774], [-77.45392127796944, 34.679162891274764], [-77.45391878340985, 34.679189613656305], [-77.45393805478588, 34.67920680678461], [-77.45395542761625, 34.67954843275784], [-77.45406483536505, 34.67983243757876], [-77.45409761625507, 34.679877169178894], [-77.45410644570612, 34.679915506998164], [-77.45414201993586, 34.680049145000815]], [[-77.30193360796103, 34.55411214942524], [-77.3021697021557, 34.55433828464776], [-77.30168785645, 34.55452022184888], [-77.30157475484525, 34.55466846522534], [-77.30150967428933, 34.5546818824628], [-77.30150117518946, 34.55476490679849], [-77.30138822234628, 34.55481763484232], [-77.30131237482829, 34.55483423023628], [-77.30130327064677, 34.5548318092859], [-77.30129511671426, 34.55483601674594], [-77.30128900558103, 34.554822846265964], [-77.30142513090591, 34.55468993549489], [-77.301314064096, 34.554580435824406], [-77.30127813807889, 34.55446622137373], [-77.3011380248252, 34.55425237838926], [-77.30151833120078, 34.55403730851118]], [[-77.41128594386556, 34.671232877546004], [-77.4113686641548, 34.671244979973295], [-77.41159328838086, 34.67127784371179], [-77.41166631632643, 34.67127391024918], [-77.41178167811239, 34.67117250575781], [-77.4120283342985, 34.67088174050331], [-77.41204746807543, 34.67085918512677], [-77.41205466191828, 34.67085070472358], [-77.41207052454388, 34.67083200522312], [-77.4123132563974, 34.6705458639021], [-77.41242038075785, 34.6704195806238], [-77.41244614955552, 34.670389203164405], [-77.412514686916, 34.67030840778635], [-77.412579042469, 34.67023254223674], [-77.4126102901139, 34.67020648599958], [-77.4127348840983, 34.67011342447485], [-77.41275235326736, 34.67010116553619], [-77.41287074886216, 34.67001808180417], [-77.41266715700411, 34.66978177007155], [-77.41256941927755, 34.66991262437998], [-77.41251662810578, 34.669976348009286], [-77.4125192823065, 34.670034856694706], [-77.41246841116424, 34.67005155811201], [-77.41242391550082, 34.670068671868236], [-77.41231748198683, 34.67010401046551], [-77.41230583091394, 34.67015965221829], [-77.41223633269232, 34.67016332359076], [-77.41213337092867, 34.67025158406908], [-77.41205724389854, 34.67029249103288], [-77.41203078038838, 34.67083188529701], [-77.41196923464513, 34.67082080705194], [-77.4115375202088, 34.670773078251855], [-77.41143318914645, 34.67072431878211], [-77.41120363961112, 34.67083242296118], [-77.41112900516278, 34.67085290907022], [-77.41107104790558, 34.670868616138925], [-77.41098329280432, 34.670839292075264], [-77.41076508009556, 34.67081889971102], [-77.41022093084003, 34.67076804582452], [-77.41067584294008, 34.67112710020923], [-77.41086071996935, 34.67116215153952], [-77.41097411085457, 34.67120341430478], [-77.41114475034965, 34.671218272381466]], [[-77.38756081132452, 34.624317282438696], [-77.38744669424513, 34.624461455431685], [-77.38737661657774, 34.62455611467491], [-77.38756527470635, 34.624588030407814], [-77.38764301458285, 34.624517717412616], [-77.38771299954371, 34.624454418445566], [-77.3877624194566, 34.624380388047115], [-77.38785479637765, 34.62427490834089], [-77.3878249838084, 34.62413426349079], [-77.38780230759482, 34.62402728629488], [-77.38772981846081, 34.624045477999104], [-77.38756531494562, 34.62430764277782], [-77.38756259292033, 34.62431409514445]], [[-77.42422251055567, 34.527455277796484], [-77.42413943193223, 34.52727242294422], [-77.42414605979837, 34.526976642645735], [-77.42421252436861, 34.52673400422403], [-77.4242105950252, 34.52670910972329], [-77.42417032901128, 34.52648344739943], [-77.42419548188592, 34.52645349550996], [-77.42423514340013, 34.52623383892502], [-77.42421657441747, 34.52623191825617], [-77.42385419389183, 34.526046022341475], [-77.42374515633527, 34.526300068597074], [-77.42366296592589, 34.52644298016405], [-77.42345455099549, 34.52658692182718], [-77.42305043388652, 34.526894757495995], [-77.42284179323443, 34.527036997553026], [-77.42265249461656, 34.52714085789498], [-77.42258812999636, 34.527201855244], [-77.42241397821579, 34.52732563394833], [-77.42235085633345, 34.527420458165864], [-77.42230213492178, 34.527488039141545], [-77.42230375507313, 34.52752034046627], [-77.42227944479373, 34.52771608756099], [-77.422310944918, 34.52773160869001], [-77.42232061221732, 34.52777680516503], [-77.42230623587571, 34.528178796665856], [-77.42237238754846, 34.528212413121196], [-77.42235202502445, 34.52862710723736], [-77.42243152698151, 34.528823795757376], [-77.42251548110687, 34.52917110133022], [-77.4226683445808, 34.52935340291853], [-77.42280844178302, 34.530000049915934], [-77.42285857096469, 34.5301008808014], [-77.42291187728466, 34.53013486761327], [-77.42297848711027, 34.530145121515886], [-77.42313710447621, 34.53015976492246], [-77.42414566191553, 34.5301658318659], [-77.42454855601393, 34.53014302131445], [-77.42483443187417, 34.53012683453029], [-77.4249901774301, 34.53006717282531], [-77.42502180853785, 34.530033007609376], [-77.42520620783831, 34.52992388083009], [-77.42523026764769, 34.52982682505207], [-77.42519039091071, 34.529763791743996], [-77.42514814016263, 34.52964739583987], [-77.4250097555902, 34.52951092908516], [-77.42476799335925, 34.52933516930195], [-77.4245734691705, 34.5290165436118], [-77.42446790832831, 34.52895555510424], [-77.42447937589509, 34.52888720662214], [-77.42448226288525, 34.52882728301122], [-77.4244049301043, 34.528520264198704], [-77.42418640112177, 34.52843987254097], [-77.42417483914082, 34.5282116303782], [-77.42419784695196, 34.5279485305967], [-77.42442153706156, 34.52780469654398], [-77.42441762561376, 34.52754459645645]], [[-77.24032737272962, 34.60193523302069], [-77.24032633754483, 34.60194058754214], [-77.24033335765634, 34.60240930514684], [-77.24017789091255, 34.60272593826533], [-77.24024435001613, 34.60287364061778], [-77.2402980290318, 34.6030483611394], [-77.240216364559, 34.60315754994233], [-77.24000861524317, 34.60315667037056], [-77.23975474114334, 34.60305831720733], [-77.23922867562165, 34.60308116573647], [-77.23957701824574, 34.60258883143521], [-77.23969899529864, 34.60235930266478], [-77.2403067731128, 34.601942942218365], [-77.2403183909576, 34.601933518788336]], [[-77.30139592424379, 34.559228739896824], [-77.30155185510964, 34.55932306936577], [-77.30157799627145, 34.55943587267879], [-77.30138510285069, 34.55968769612532], [-77.30085216203992, 34.55942346446611], [-77.30116797488728, 34.55923614960457]], [[-77.30819996521298, 34.54857661068935], [-77.30923937884594, 34.54826052937229], [-77.30919823295503, 34.547655438721634], [-77.30864984737366, 34.54797337288488], [-77.30792842865986, 34.54860398778254], [-77.30788915893957, 34.54859663750701], [-77.30780971006398, 34.54863263550635], [-77.30792728053983, 34.548652834816515]], [[-77.3997869251106, 34.58153733290659], [-77.39965349061919, 34.581390024847956], [-77.39964963000317, 34.58068939935768], [-77.39970564100454, 34.58053335203984], [-77.39973564936335, 34.58047373769072], [-77.39978695675288, 34.58042084083459], [-77.39986324202519, 34.580428409890835], [-77.40018098092344, 34.58022963175154], [-77.40030813318698, 34.58015885216853], [-77.40037799191909, 34.58015168037623], [-77.40053446557914, 34.58003286303701], [-77.40057500401016, 34.57999881565206], [-77.40059643626404, 34.580003333643916], [-77.40077201143686, 34.58007409637184], [-77.40085803091714, 34.58006208748901], [-77.40096901976929, 34.58011187199102], [-77.40120487088632, 34.58031701473497], [-77.40130315538443, 34.580367354755154], [-77.40136303461733, 34.58041568026265], [-77.40150914446357, 34.580540239401344], [-77.40167632364091, 34.58067355569665], [-77.40170462120338, 34.580725968690444], [-77.40212903904002, 34.58103279924656], [-77.40173660327049, 34.58149197628291], [-77.40170529168658, 34.58151852555468], [-77.40153964448646, 34.58173274579634], [-77.40136302209288, 34.5817499484288], [-77.40120616054405, 34.581759576227945], [-77.40113070744194, 34.58177569023309], [-77.4009689937767, 34.581949665424496], [-77.40069909737639, 34.58195454337474], [-77.4005749666859, 34.58197447437691], [-77.40043797891266, 34.581849012837566], [-77.40022809418629, 34.58173168789163], [-77.40019840622253, 34.581717157486594], [-77.40018094601739, 34.58170592271367], [-77.39995205416227, 34.58152487565597]], [[-77.35793996979561, 34.53619987357609], [-77.35799963364516, 34.53603060075544], [-77.3578857498401, 34.53592407343652], [-77.3578543590476, 34.53556187258815], [-77.35778844847488, 34.53551496864231], [-77.35770289271554, 34.53530255094485], [-77.35763062657674, 34.53515166897103], [-77.35758413528258, 34.535111136134816], [-77.35754993826892, 34.5350165783528], [-77.35741824393408, 34.53464537601481], [-77.35763074006503, 34.53418608712983], [-77.3576566231088, 34.53407500331908], [-77.35800418469692, 34.53390343787362], [-77.35852430338142, 34.53371702591267], [-77.35865688035014, 34.53356828260963], [-77.35882447345162, 34.53346358592563], [-77.35932802059772, 34.53290298722039], [-77.35932959693639, 34.532902168250715], [-77.35933030150393, 34.532901095320774], [-77.35932982765131, 34.53290007803866], [-77.35947654246453, 34.53239038420809], [-77.35964475877992, 34.53206205482796], [-77.35961248361491, 34.531881160627194], [-77.359827753029, 34.53155768105131], [-77.35994593003775, 34.5313434907268], [-77.35999440303073, 34.53123872549086], [-77.36008614185533, 34.53083364934707], [-77.360163165635, 34.530715055152], [-77.36032721932459, 34.53079892904634], [-77.36065983146548, 34.53092785873593], [-77.36093880432831, 34.531126458348446], [-77.36097030374994, 34.53117561079293], [-77.36098318674071, 34.53119410324505], [-77.36133167338876, 34.53138483687015], [-77.36133494852692, 34.5313882644928], [-77.36134712248955, 34.53140026630836], [-77.36143959869217, 34.531544524766836], [-77.36135795676451, 34.5316297752728], [-77.36137172120873, 34.53166060435928], [-77.36131699003099, 34.531753473984175], [-77.36125045017221, 34.53184995878307], [-77.36122411417882, 34.53189387701222], [-77.36110235477526, 34.53202626022686], [-77.36101090601352, 34.532110399623676], [-77.36093418761446, 34.53218045874235], [-77.36093047223642, 34.53219098625348], [-77.36091430697424, 34.5321972908133], [-77.36058795189325, 34.53252104428523], [-77.36029222966948, 34.53276256315964], [-77.36023164218818, 34.53284439253129], [-77.36025615019145, 34.53316445076885], [-77.36022965803723, 34.53326122339146], [-77.36026265618361, 34.533356223312744], [-77.36023648771715, 34.53366209182558], [-77.36026521480846, 34.533745751441145], [-77.360225555097, 34.533834907585856], [-77.36028607172014, 34.53398757201405], [-77.3603641270382, 34.53404823959154], [-77.36032397563184, 34.53413117031576], [-77.36029658852424, 34.53423088190068], [-77.36027779353236, 34.534282408886966], [-77.36022826664922, 34.53433296569231], [-77.36022816399829, 34.534392529969054], [-77.36017616616415, 34.53449304888299], [-77.36015839634375, 34.5345473347639], [-77.36014030779474, 34.53462062527281], [-77.36009374216188, 34.53473565290871], [-77.36009021190047, 34.53475025196896], [-77.36008507746274, 34.53476002589068], [-77.36006994227861, 34.53478840867773], [-77.36003392313958, 34.53485931803145], [-77.36000617778474, 34.534884766190835], [-77.35996296612156, 34.53494897383149], [-77.35983837144425, 34.5350313444474], [-77.35977541695124, 34.53510607863669], [-77.35974872158238, 34.535289079286414], [-77.35972881998542, 34.5353317737027], [-77.35966116786645, 34.53549743443589], [-77.35958090202196, 34.535508164093095], [-77.35956455132502, 34.53556042577412], [-77.35960638883016, 34.535587282656294], [-77.3595126352271, 34.53572331450618], [-77.35950437457731, 34.53581391592894], [-77.3594963252615, 34.53591196557695], [-77.35948527364386, 34.53593907866325], [-77.35948128605823, 34.535956429649644], [-77.35933128058812, 34.536083666719904], [-77.35934407648594, 34.53626857643659], [-77.35938293045822, 34.53632105277912], [-77.35943343198672, 34.536429883501164], [-77.35943474214652, 34.53644133199967], [-77.35944214741889, 34.53649104957084], [-77.35945356062595, 34.536547777708], [-77.35945715813348, 34.53655518767377], [-77.35944775435591, 34.53656103802744], [-77.35944031534132, 34.53657107890481], [-77.35937896643452, 34.53665175002334], [-77.35931094451375, 34.53677640836989], [-77.35926404943584, 34.53682782047282], [-77.35926433823087, 34.536844340861606], [-77.35923621497051, 34.53691280884169], [-77.35921743746553, 34.53695694483681], [-77.35921929242558, 34.536966465611485], [-77.35919076735333, 34.537056910831055], [-77.35916452148415, 34.53708697691782], [-77.35907991292072, 34.53719264541472], [-77.35904591011308, 34.5372347921468], [-77.3590008710067, 34.53725246914343], [-77.35883606212309, 34.53724461294716], [-77.35860141961413, 34.53731341962915], [-77.35844152468093, 34.53733110761522], [-77.35829614528836, 34.537366687010994], [-77.35820137496609, 34.53747049327751], [-77.35804296583595, 34.5375931012334], [-77.35786208848828, 34.53751934841644], [-77.35777352388646, 34.537457259022204], [-77.35765893951447, 34.53722075113962], [-77.35758379379247, 34.537118105587474], [-77.357596510285, 34.53702622740834], [-77.35789135665274, 34.53653583742108]], [[-77.34551038155473, 34.57465290360756], [-77.3454154658208, 34.57463734181519], [-77.34523043071997, 34.574596048082896], [-77.34521849121806, 34.57459824143785], [-77.34521176184367, 34.57459312482152], [-77.34519136152122, 34.574588804363586], [-77.34502151919665, 34.574555660502], [-77.34492618074569, 34.57462694743203], [-77.34502134021587, 34.574815247623725], [-77.34502358589324, 34.57482278436586], [-77.34502545596534, 34.57482494073326], [-77.34521825945002, 34.57493558062584], [-77.34528512781273, 34.574927816587284], [-77.34541522725024, 34.57498579491529], [-77.34559774688972, 34.575167168042974], [-77.34572205714882, 34.575243029813535], [-77.34613488977489, 34.57551444915254], [-77.34617156496353, 34.57554289441395], [-77.34620282870944, 34.57558957508625], [-77.34634043619926, 34.57563318651104], [-77.34659674182242, 34.57573001776215], [-77.34683507398826, 34.57558157611457], [-77.34699090009319, 34.575503826560016], [-77.34709956253668, 34.57549275763263], [-77.34710914569732, 34.57537430207782], [-77.3470792825853, 34.575283522332526], [-77.34699113049182, 34.575157606858646], [-77.34672331579131, 34.57486949359222], [-77.34659728376543, 34.574921306953094], [-77.3464547320427, 34.57489026965814], [-77.3462033399174, 34.57483214998077], [-77.34601819290467, 34.57488160595291], [-77.34581308062205, 34.57471164807975], [-77.34581036346587, 34.57471102077833], [-77.34580941861961, 34.57471093740942]], [[-77.45166910326614, 34.60993362986566], [-77.45148482207296, 34.60996657594899], [-77.45143179727569, 34.609850599066945], [-77.45161151309675, 34.609811662813954]], [[-77.3422149937771, 34.55103301598971], [-77.34211970223399, 34.55099148154969], [-77.34203331459481, 34.55089599003445], [-77.3419295770353, 34.550893966188724], [-77.34183866970423, 34.55084232854627], [-77.34174910273035, 34.550674807854655], [-77.34177685712035, 34.550606400937184], [-77.34194608289178, 34.55039879385333], [-77.34188775808019, 34.550245501379976], [-77.34180106817976, 34.550113281279025], [-77.34197373815019, 34.54989518698975], [-77.3420267793308, 34.54981637373436], [-77.3419453324189, 34.54960289312784], [-77.34206493920716, 34.54952666038217], [-77.34217107637643, 34.54938981425687], [-77.34234513895527, 34.54937287782154], [-77.3424603303672, 34.54940657677132], [-77.34257035503143, 34.54944384321027], [-77.34277979229819, 34.54948285851151], [-77.34323691103877, 34.54978154665218], [-77.34339563956308, 34.54978488114608], [-77.34346378506964, 34.54987410230626], [-77.34349047955821, 34.5500319790546], [-77.34367904724569, 34.55033277363545], [-77.343645762612, 34.550561042053886], [-77.34369274269766, 34.5508204417131], [-77.34341939644227, 34.550990957752], [-77.34320692164609, 34.55108086786586], [-77.34316682465713, 34.55111642615146], [-77.34300963690714, 34.55112297699365], [-77.34297154729424, 34.551145582229125], [-77.34286017721416, 34.55115534694886], [-77.34281276293875, 34.55114728293187], [-77.34271842134935, 34.55114658305553], [-77.34255376115512, 34.55114580590652], [-77.34242060788034, 34.551126891305124], [-77.342287169533, 34.551106136977644]], [[-77.32142540502701, 34.69810749228493], [-77.32172642204168, 34.69808145344487], [-77.32202710262608, 34.698031073216946], [-77.32205828436092, 34.69825964890952], [-77.32225215903301, 34.69833235834737], [-77.32250052920561, 34.69845515865072], [-77.32274576144191, 34.698652803850564], [-77.32275554431212, 34.698660150652366], [-77.32335648825867, 34.69858504606643], [-77.32331555191465, 34.69879319594938], [-77.3234598872018, 34.698634991069966], [-77.32342664026194, 34.69855949314464], [-77.32340542522633, 34.69854740941132], [-77.3233879936866, 34.69854402569324], [-77.32298524035748, 34.69808237777936], [-77.3229331121188, 34.69804939974809], [-77.32272953187372, 34.69788494573004], [-77.3226557565265, 34.69769040632116], [-77.32261382558951, 34.6975798398349], [-77.32253295133722, 34.697366577928605], [-77.32246819069245, 34.69729775384191], [-77.32248006458727, 34.69722711794004], [-77.32232981790162, 34.69703567677347], [-77.32231676691744, 34.697020119974596], [-77.32227691503404, 34.69701127479112], [-77.32205036169654, 34.69696729027977], [-77.32182295002333, 34.69700581300425], [-77.3216214808343, 34.6970044272669], [-77.32140243307299, 34.697136678883204], [-77.32093820868434, 34.697292148517704], [-77.32046671569395, 34.69725715977839], [-77.32006872904806, 34.697960820886784], [-77.32014902739067, 34.69803390607915], [-77.3205519400366, 34.6980027205975], [-77.3209678308982, 34.698057540375615], [-77.32114010774286, 34.69803890040675]], [[-77.3187450530614, 34.698039924468624], [-77.31883656873823, 34.6981202255365], [-77.31925358450898, 34.69809662370441], [-77.31935063527027, 34.69801622480352], [-77.31989642061596, 34.69802831255078], [-77.32000141185084, 34.69722442364621], [-77.31993384026453, 34.69708866236495], [-77.31968740207687, 34.69707182901822], [-77.31962724149379, 34.697064961067], [-77.31952045769363, 34.69700317522878], [-77.31945830436345, 34.69700120212434], [-77.31934522646328, 34.69700537445535], [-77.31924588296677, 34.697017292706555], [-77.31910443140028, 34.69695862313046], [-77.31906117817948, 34.69695278072957], [-77.31875963344581, 34.69699715392498], [-77.31870589162736, 34.69697230722019], [-77.31844242588095, 34.69702179497865], [-77.31806809676073, 34.69713488112792], [-77.31779521718076, 34.69718865898932], [-77.31765848444522, 34.69732025218704], [-77.31758937660784, 34.69740987585501], [-77.3174901059991, 34.697579361352894], [-77.31738547641112, 34.697925172991965], [-77.31755769536684, 34.69800544459881], [-77.31794905480018, 34.69801457828369], [-77.31845718981631, 34.69802872360249]], [[-77.43137952285468, 34.58367689003583], [-77.43205231685087, 34.583552703491954], [-77.43209743791708, 34.58357105679947], [-77.43243117702549, 34.58387391157691], [-77.43244008573667, 34.583928129554316], [-77.43259078839375, 34.58427542787469], [-77.43209789049091, 34.58482286381752], [-77.43180442413427, 34.58470528536757], [-77.43170382666395, 34.584739765093936], [-77.43153375660927, 34.584669592545076], [-77.43130975525408, 34.584632953148315], [-77.43116967563306, 34.58463180576552], [-77.43102745308849, 34.584501422320116], [-77.4310603987633, 34.58422811843804], [-77.43101665110387, 34.58407839391242], [-77.43130943704313, 34.58372902414532]], [[-77.34308856044365, 34.684193490069255], [-77.34311578391194, 34.684215349048266], [-77.34322027536616, 34.68423867926381], [-77.34339567819734, 34.684282080106776], [-77.34346969153346, 34.6842943672883], [-77.34367931448742, 34.68432655572384], [-77.3436262996448, 34.68417385494166], [-77.34366701537135, 34.68408677089206], [-77.34361646099981, 34.68403711832782], [-77.3435928245783, 34.68400253328666], [-77.34356626286458, 34.68397875312433], [-77.34350036323258, 34.68392163784188], [-77.3434399039977, 34.683923127035854], [-77.3433769250619, 34.68388289207748], [-77.34325139761373, 34.683748420760026], [-77.343130501256, 34.68376705511899], [-77.34305174136281, 34.68368382838325], [-77.34274613400058, 34.683668669086195], [-77.34270778228934, 34.68355928678017], [-77.34247451536123, 34.683483522686565], [-77.34227516989806, 34.68340060440674], [-77.34216806071542, 34.683356753467564], [-77.34209515568921, 34.68338128289806], [-77.3420731121553, 34.68333074494201], [-77.34163557186612, 34.68312932381205], [-77.34094917073799, 34.68347479751559], [-77.34111132483733, 34.68297534342211], [-77.34108401288063, 34.68296755725083], [-77.34076823787294, 34.68302241922693], [-77.34046602275674, 34.68307299132759], [-77.34038506859187, 34.68331319657311], [-77.3402827780612, 34.68357640566077], [-77.34030797364332, 34.683578609454585], [-77.34092953376951, 34.683489907908005], [-77.34093257106097, 34.683488937194895], [-77.34093505290619, 34.68348892508338], [-77.3414362502975, 34.68349415085878], [-77.34152932375216, 34.68349512119853], [-77.34173970479874, 34.68365480118842], [-77.34192267332267, 34.683726371367264], [-77.34205948440662, 34.68373057401758], [-77.3420956075493, 34.6837750928088], [-77.34215480024768, 34.68380691285767], [-77.34228399214749, 34.68398799242899], [-77.342341098085, 34.68398034606604], [-77.34257682183406, 34.684010183789724], [-77.34269586734412, 34.68410150947088], [-77.34298474462963, 34.684180400166156]], [[-77.42455697870642, 34.51922759438146], [-77.42375014382156, 34.51953375872177], [-77.42321481676007, 34.51946873782892], [-77.42291465994126, 34.51950640680869], [-77.42219654374833, 34.51977176456776], [-77.4221336725549, 34.52009836467772], [-77.42214334986733, 34.52041054157192], [-77.42240336446874, 34.520667177344336], [-77.42259076009768, 34.52071793954438], [-77.42317907009793, 34.521083555900546], [-77.42333349405375, 34.521121009173285], [-77.4233524636913, 34.52121512410448], [-77.42342709862703, 34.52136292756338], [-77.42369206523759, 34.52181526096479], [-77.42423297954852, 34.52175458606433], [-77.4242069177942, 34.52158128356382], [-77.42454228222982, 34.52140836584574], [-77.42460719439131, 34.52112162020403], [-77.42443028175961, 34.52105930344453], [-77.42446438895317, 34.520873969300844], [-77.42476479352777, 34.52036597630032], [-77.42486100885361, 34.52001765467142], [-77.42496452180748, 34.51988472338775], [-77.42478933833303, 34.51925625321415]], [[-77.41297641748099, 34.66949594781161], [-77.41281916684628, 34.66962693822542], [-77.41293142640754, 34.66997550137082], [-77.41321492880301, 34.66977655345934], [-77.41340236640957, 34.66964501736345], [-77.41353495520315, 34.66955197211834], [-77.41377412703493, 34.6692777964017], [-77.4138035258511, 34.66924321596244], [-77.41381217191588, 34.669229323200774], [-77.41382623421389, 34.669206727495194], [-77.41395503685743, 34.66899976482995], [-77.41387636710878, 34.66892463299791], [-77.41360290231607, 34.66885356597461], [-77.41356409024417, 34.668851523225754], [-77.41354962454534, 34.668857883288425], [-77.41335472497599, 34.66888307619601], [-77.413265485828, 34.668994358164156], [-77.41323859031158, 34.66902858695273], [-77.41323314209535, 34.66905823430231], [-77.41318536345102, 34.66909837065098], [-77.41307028717816, 34.66924924249924], [-77.41300887128043, 34.66943946296349]], [[-77.32388482281738, 34.69889438252342], [-77.32371799718307, 34.698863912562956], [-77.32359788583483, 34.69885170588544], [-77.32329698669845, 34.69906462791274], [-77.32352372106119, 34.69910680462239], [-77.32377906820845, 34.69904823733176], [-77.32384199819188, 34.69904168514742], [-77.32401683960528, 34.69912895740586], [-77.32400598054656, 34.69887372078595]], [[-77.45419799971383, 34.68219185619315], [-77.45420243951686, 34.68223727730265], [-77.45404483324924, 34.68231532964994], [-77.45404417575769, 34.68232616706742], [-77.45404596114041, 34.68233765364505], [-77.4541332010493, 34.68249257935779], [-77.45414756091625, 34.682506207464805], [-77.45415530472694, 34.68251355664981], [-77.45438595833919, 34.68262986326656], [-77.45459940668059, 34.68293502335378], [-77.45463957671541, 34.68305491787491], [-77.45473486632474, 34.68337701816928], [-77.45498124460653, 34.683627477725565], [-77.4549573778141, 34.68417229578865], [-77.45524898702934, 34.683721052710325], [-77.45537370038451, 34.68336539623036], [-77.45549607119456, 34.68305911463231], [-77.45536959127789, 34.68264520154662], [-77.45580490597389, 34.682575015301005], [-77.45599239252812, 34.68230387078852], [-77.45605070724648, 34.6822291717932], [-77.45610582779474, 34.681911582232686], [-77.45597129864758, 34.68173749971229], [-77.45579598311163, 34.68150892052644], [-77.45531880912452, 34.68150945381571], [-77.45517654790655, 34.68154832917679], [-77.45505114616057, 34.681630862386676], [-77.45464887173132, 34.68183430707893], [-77.45453949383577, 34.68200236202905], [-77.454270614817, 34.68211458722051]], [[-77.46623903941274, 34.476326287760536], [-77.46627492615687, 34.47637409007864], [-77.46625512217207, 34.47638510147835], [-77.46619765479332, 34.476370167893016]], [[-77.40223216468122, 34.510085313376976], [-77.40299607577667, 34.51044527814009], [-77.40300202225585, 34.51044868917897], [-77.40283489066444, 34.51085536233978], [-77.40251797774692, 34.511003991903166], [-77.40232612055235, 34.51110455634469], [-77.40212246129954, 34.511115162259685], [-77.40210563131286, 34.51106353526323], [-77.40194278034073, 34.5109181341615], [-77.40179071168157, 34.51061933427988]], [[-77.40845435725132, 34.56593303316731], [-77.4081169637475, 34.56621834768005], [-77.40807586136414, 34.566587930359944], [-77.4080097323064, 34.56707674414075], [-77.40794246595411, 34.56745634856375], [-77.40795787429289, 34.56776808041001], [-77.40794776790997, 34.56788016215545], [-77.40801449921982, 34.56792013355782], [-77.4082013889958, 34.56799534840722], [-77.4084544931367, 34.56801554951341], [-77.40853529960438, 34.568132834061956], [-77.40864920886341, 34.56820346608686], [-77.40924243511333, 34.56832618608454], [-77.40939521689171, 34.56826041402943], [-77.40963638806745, 34.568231725044555], [-77.40985230018515, 34.568221638467264], [-77.41003034576559, 34.56820392801012], [-77.41038940141112, 34.56833914816698], [-77.41042431757009, 34.56833696930027], [-77.41075982235462, 34.56789870972908], [-77.41066102660643, 34.56774356131953], [-77.41051586563898, 34.5674106028052], [-77.41031436220379, 34.567113873812964], [-77.41042302909501, 34.56667237237964], [-77.41085756905431, 34.5661862717638], [-77.41025666380297, 34.566028931300934], [-77.41003014331199, 34.56580033726641], [-77.40988706825888, 34.56563143984349], [-77.40958243272792, 34.56552124327357], [-77.40935114394345, 34.56543724451923], [-77.40897490858553, 34.56532087635143]], [[-77.34257412198124, 34.5274810243195], [-77.34257033185263, 34.527481641754584], [-77.34257034413457, 34.52747928491147], [-77.34257216061738, 34.52747775309539], [-77.3425743248574, 34.52747224121689], [-77.34263885550959, 34.52734701820222], [-77.34267696609614, 34.52728038082849], [-77.3427763506977, 34.52722248170422], [-77.34290734213198, 34.52722662704501], [-77.3429721563021, 34.5272420170404], [-77.34301264701142, 34.527293237836055], [-77.3429969971616, 34.52740012790553], [-77.3430271470297, 34.52741356111757], [-77.34299322966694, 34.52743435552121], [-77.34296745899167, 34.52744541857907], [-77.34292721471809, 34.52745293223842], [-77.34277031596358, 34.52748376939897], [-77.34257872094578, 34.52748094703885]], [[-77.33545954643077, 34.62455798894787], [-77.33551928727282, 34.62461074474666], [-77.33584877821406, 34.624935279339624], [-77.33607563459036, 34.625030905592624], [-77.33624933046879, 34.6250584094506], [-77.33631257807963, 34.625164931383125], [-77.33652694203703, 34.62519069390973], [-77.33659660367563, 34.62519385860528], [-77.33688580154296, 34.625177926130945], [-77.33692283577844, 34.62522453831084], [-77.336942803151, 34.62517346844914], [-77.33722015815742, 34.625111282763264], [-77.33724487074849, 34.62509216030648], [-77.33736796716512, 34.62490324031163], [-77.33731320203944, 34.62433165543356], [-77.33715977578815, 34.624259847767256], [-77.33683096012342, 34.62413852643505], [-77.33669141028828, 34.62407228147792], [-77.33647337499143, 34.624067775857384], [-77.33636950029327, 34.62406309914753], [-77.33629105933234, 34.62405956734454], [-77.33603339968732, 34.62398325409187], [-77.33575689026554, 34.62396925787583], [-77.33563942612122, 34.623956223298094], [-77.33539830137519, 34.624008309857224], [-77.3353005148697, 34.624093022751424], [-77.33531080348544, 34.62431660990923], [-77.3353540436797, 34.6245076713779]], [[-77.2385457556734, 34.6036824496847], [-77.23863688338639, 34.603600670435604], [-77.23868745469127, 34.603693620080755], [-77.23857129171228, 34.603730217325875]], [[-77.38769940817745, 34.66000170987992], [-77.38771058970288, 34.66008676185127], [-77.38782782526454, 34.66004900648973], [-77.38792873830869, 34.660053388802886], [-77.38812691031083, 34.66004923402565], [-77.3883961893466, 34.65990580653391], [-77.38819507239187, 34.659814029252345], [-77.38799831377662, 34.65986509959213], [-77.38787728110032, 34.65987835300672], [-77.38776648659649, 34.65990959482615]], [[-77.39971680065541, 34.52970030348407], [-77.39990992709582, 34.529498466711026], [-77.39985084840791, 34.5292556373085], [-77.39944470779353, 34.52939747340486], [-77.39921755675704, 34.529457562975594], [-77.39890883627449, 34.52964297732945], [-77.39864973932274, 34.52984119675166], [-77.3983464536189, 34.53002725040534], [-77.39825216322276, 34.53006700806048], [-77.39804206716047, 34.530257763095705], [-77.39810381533385, 34.53040589348858], [-77.3981516264658, 34.530542838358016], [-77.39833982300468, 34.530520646225355], [-77.39863656177596, 34.53042879731933], [-77.39890209478459, 34.5302974145755], [-77.39943346877706, 34.52989884126852]], [[-77.45106906446901, 34.74196046368062], [-77.45086017036158, 34.741441645249935], [-77.4508176019331, 34.741262898589554], [-77.45084105016022, 34.74115546839187], [-77.45071713786292, 34.7409603298009], [-77.45066334121012, 34.74088084553459], [-77.45060736574209, 34.740794352113944], [-77.45049483964337, 34.7406204766809], [-77.45038542725726, 34.74055039647433], [-77.45037365909613, 34.7404332267863], [-77.45027327133033, 34.740278105952285], [-77.4502083898787, 34.74017784945986], [-77.45015126572967, 34.74007605156368], [-77.45006090021398, 34.739903942480346], [-77.44997968304689, 34.73982686568385], [-77.44983654274697, 34.7397255383709], [-77.44979767340413, 34.73970561490398], [-77.44954724104464, 34.73962689514661], [-77.44941927087694, 34.73961431045214], [-77.44918944043826, 34.73959170855263], [-77.44863727988823, 34.739494221823584], [-77.44861063154566, 34.73937607872969], [-77.4485729406607, 34.73896576973405], [-77.44844085492456, 34.738683341011246], [-77.44839834404686, 34.73862528190096], [-77.4482208823112, 34.73850684237676], [-77.44793613781255, 34.73844754095335], [-77.44790484929607, 34.73844002491059], [-77.44758585920606, 34.73848558095199], [-77.4472346331078, 34.738498300479456], [-77.44711421186189, 34.738643987208945], [-77.44684248504444, 34.73892033006202], [-77.44683335047603, 34.738932880179625], [-77.44669944014339, 34.739410041608444], [-77.44673528521938, 34.73944189413736], [-77.44722738363342, 34.73972485464541], [-77.44745004932147, 34.73969156280302], [-77.4477384954069, 34.73966342264278], [-77.44791270538718, 34.73957226133302], [-77.44818421973201, 34.739643740938526], [-77.44833639611481, 34.73961978428359], [-77.4485573911647, 34.73956014364619], [-77.44859536050959, 34.739567585977866], [-77.44903000471407, 34.739776758543016], [-77.44913018718415, 34.739796565851734], [-77.44926662273184, 34.739916179311734], [-77.44947706689807, 34.74003661884477], [-77.44966639676842, 34.74015948983517], [-77.44967457351089, 34.74017740948682], [-77.44968243581272, 34.74019180299749], [-77.44972323936052, 34.74038031423075], [-77.44982240835887, 34.740520192080886], [-77.44991299403559, 34.740747553726976], [-77.4500673448814, 34.74099008318436], [-77.45014674282022, 34.74109643496986], [-77.45018599655597, 34.74120618316319], [-77.45024222289875, 34.741493887371654], [-77.45024588183763, 34.74150149176389], [-77.4504956304256, 34.74172618694278], [-77.45076295284954, 34.74196669012136], [-77.45092294695793, 34.74211179679912], [-77.45084772963493, 34.74255529762579], [-77.45067438219573, 34.74296227453941], [-77.4506624737282, 34.74304959524322], [-77.45067699816488, 34.743107298597884], [-77.4507096395847, 34.74320316917555], [-77.45072647483909, 34.743309866476956], [-77.45080120956726, 34.74337754806281], [-77.45088932949879, 34.74346511952721], [-77.45107358450991, 34.743614066578154], [-77.45124322501388, 34.743575258823725], [-77.45127466668791, 34.74375074181363], [-77.45149205894975, 34.74389832100038], [-77.45174207444116, 34.744067465290094], [-77.45185474970077, 34.74414201002769], [-77.4520137457369, 34.74423665570771], [-77.45213139334157, 34.744286073652766], [-77.45229962068241, 34.74435673755484], [-77.45245684464614, 34.74437757380811], [-77.45288491520331, 34.74455007476402], [-77.45307015330846, 34.74444943877231], [-77.45295670786737, 34.74430183515426], [-77.45246481242297, 34.74414692748203], [-77.45237874638819, 34.7440831487086], [-77.4521629710334, 34.74382646183915], [-77.45198618172944, 34.74351189162487], [-77.45197357000936, 34.74345907105108], [-77.45194574962103, 34.74336323971664], [-77.45164662101485, 34.74305473947542], [-77.45143074924444, 34.742926888518625], [-77.45135694041056, 34.74282354315859], [-77.4511034741827, 34.7426446161387], [-77.4512851475281, 34.74246455345174], [-77.45109544057314, 34.74203981081843]], [[-77.34189998686334, 34.68530400889216], [-77.34171284475715, 34.685252094080774], [-77.3416274636815, 34.685217959802], [-77.34129391771134, 34.68508386912577], [-77.34096941662028, 34.685431696515764], [-77.34151717674433, 34.68559765259005]], [[-77.34282253486836, 34.5381512378903], [-77.34295477660895, 34.53795119533091], [-77.34290356883324, 34.537848583388644], [-77.34292067561263, 34.53783369193683], [-77.34292159178068, 34.53783213270436], [-77.34292460855, 34.53777192136427], [-77.34292529057973, 34.53777106937102], [-77.3429746255599, 34.53773375088636], [-77.34300986004077, 34.53769845178284], [-77.34302563035035, 34.537675826739516], [-77.34306479078961, 34.53765344415808], [-77.34311323963105, 34.537569271345404], [-77.34312368892114, 34.53755966599796], [-77.34312652416062, 34.53755657679943], [-77.34321970750774, 34.53748045978928], [-77.34322699126037, 34.53745579777947], [-77.34330733230186, 34.53741083590017], [-77.34332335147101, 34.537406714400696], [-77.34332633601163, 34.5374036259842], [-77.34350925981033, 34.53737301391819], [-77.3435233874045, 34.53737023224004], [-77.34371079771478, 34.53722272406792], [-77.34372349056848, 34.53720460762438], [-77.34377358492881, 34.537129090369206], [-77.34382533224695, 34.537091490978796], [-77.34387218973808, 34.53705289199865], [-77.34392457949826, 34.53699623414571], [-77.34412030744282, 34.53692796801918], [-77.34429214443846, 34.53702432776283], [-77.34430334148267, 34.5370308235627], [-77.34431612086325, 34.53704034014012], [-77.3445097500576, 34.53723783822452], [-77.34457827383542, 34.53730549169544], [-77.34472179419296, 34.53745214823048], [-77.3445852937781, 34.53764840682402], [-77.34453466575779, 34.53772389242067], [-77.34438603056311, 34.53779980515975], [-77.34429667751758, 34.53788301326877], [-77.3442176208757, 34.53796622200839], [-77.34402415604798, 34.53804216257075], [-77.3438989493336, 34.538106817902765], [-77.34355931578322, 34.53814256485856], [-77.34350462537799, 34.53818304759713], [-77.34341835621115, 34.538183120044444], [-77.342978382253, 34.53819261790513]], [[-77.44477879172808, 34.73039029581868], [-77.44476633410252, 34.73050108887212], [-77.44480955155512, 34.73039484448075], [-77.4448105803304, 34.73038431883841], [-77.4448159221235, 34.73032966539955], [-77.4449000122345, 34.72944687217389], [-77.44425369544231, 34.72948696886269], [-77.4440652538358, 34.72956490187175], [-77.44388846201963, 34.729638017119605], [-77.44370975200694, 34.729721046654745], [-77.44352993864265, 34.72980002450187], [-77.44335346311632, 34.72987523337657], [-77.44319880051115, 34.730156803995456], [-77.4435717929129, 34.730197942610275], [-77.44377341314888, 34.73036343292428], [-77.44393123005663, 34.730455462085295], [-77.44412151634384, 34.73051387732446]], [[-77.35180632180032, 34.684191890076605], [-77.35192026937578, 34.68409780699855], [-77.35175336814322, 34.68414494183224], [-77.35152534311283, 34.68411220247076], [-77.3514037657475, 34.68410113873967], [-77.35120830288808, 34.68417341505025], [-77.35117378808897, 34.68408104332635], [-77.35103683377497, 34.684147948306126], [-77.35103287538246, 34.684189494329544], [-77.35115732524118, 34.68427705147852], [-77.35116369843499, 34.68428590314851], [-77.3511987209284, 34.684291477431834], [-77.35148681076186, 34.684244920620095], [-77.35179612988561, 34.684193350490965]], [[-77.3364637759114, 34.539100609047026], [-77.33641953858259, 34.53899902195269], [-77.33630843875585, 34.538907186136676], [-77.33626275619946, 34.538770020694024], [-77.33615434497105, 34.53868452859203], [-77.33627371423405, 34.53857022730109], [-77.33643387538294, 34.53838018306813], [-77.3365946228973, 34.53822965096442], [-77.3368307903732, 34.538192489830834], [-77.33694333842921, 34.53825515226587], [-77.3370257508269, 34.53824960614314], [-77.33708184607792, 34.538306326539036], [-77.33712345782692, 34.538360219876665], [-77.33721747812137, 34.53844634669305], [-77.3372644486029, 34.53849488915435], [-77.3372898649279, 34.53852122720605], [-77.33744087603, 34.53860275013289], [-77.33747524331471, 34.538658378601596], [-77.33747321383069, 34.538739675645814], [-77.33745345316835, 34.538834567389], [-77.33760033729692, 34.53886566129968], [-77.3376388706062, 34.538935627827435], [-77.33765128475439, 34.53895888309828], [-77.33766905927845, 34.53900113984385], [-77.33768443445851, 34.53907652426503], [-77.33766546037, 34.53915684496596], [-77.33767888769859, 34.539199730644704], [-77.33780516927365, 34.53931580655306], [-77.337639870505, 34.53945015954102], [-77.33758544116083, 34.53950903747286], [-77.33751286035145, 34.53946842593794], [-77.33733597382688, 34.539406107605586], [-77.33719458212053, 34.539435041164715], [-77.33687053973101, 34.539315984269926], [-77.33684049058985, 34.53929828350386], [-77.3368053204888, 34.53929210498375], [-77.33651529709503, 34.53912225504903]], [[-77.33546308146308, 34.53364278310704], [-77.33542793906499, 34.533609682143364], [-77.335366892011, 34.53360402138671], [-77.33501372554797, 34.53346258657105], [-77.33499543311835, 34.533454232173106], [-77.33497842531305, 34.53342811147156], [-77.33490437824867, 34.53347831097265], [-77.33449011742387, 34.53372730244777], [-77.33423469010042, 34.5338194291178], [-77.33435809895568, 34.533936389817484], [-77.3343710802636, 34.534044632567664], [-77.33450077976302, 34.53422931317973], [-77.33449663374655, 34.53431423788587], [-77.33458863040055, 34.53427208792423], [-77.3346091788944, 34.53425521115384], [-77.33496242649662, 34.5341181083745], [-77.33516565233705, 34.534056221146415], [-77.33566826141961, 34.53385809317006], [-77.33565853173063, 34.533799385210116]], [[-77.43462108511847, 34.7380046998609], [-77.43469068026786, 34.73779157866748], [-77.43493427042903, 34.737890883516215], [-77.43496259824609, 34.738057335210854], [-77.43503762742196, 34.738150252602026], [-77.43504180891526, 34.73836514675389], [-77.43496735629533, 34.73868473915388], [-77.43468517316683, 34.73875155771743], [-77.43459940555798, 34.738556167569676], [-77.43472806782846, 34.73815517585514]], [[-77.36348749414861, 34.773516281824506], [-77.36321624958343, 34.77360465249885], [-77.36305040980852, 34.77382741129152], [-77.3629817088285, 34.77389850506325], [-77.36320949748556, 34.774008391063354], [-77.36322783240331, 34.773984636061215], [-77.36329477442366, 34.77373308799988], [-77.36365418294743, 34.77358183116573], [-77.36365942430963, 34.77357644871562], [-77.36369291851439, 34.773448455900784]], [[-77.35793902336212, 34.54698701092543], [-77.35817545290121, 34.547022346396744], [-77.35820693888185, 34.54702563785089], [-77.3582194452794, 34.547027457279746], [-77.35846623540947, 34.547070786488774], [-77.35860906288536, 34.547157807623464], [-77.35864005440442, 34.54718062255485], [-77.35865408850069, 34.54719825362046], [-77.35882148618617, 34.54728469721676], [-77.35882973941757, 34.54729537395734], [-77.35886092504109, 34.54732796003734], [-77.35888096213658, 34.547349204422844], [-77.35888464585098, 34.54735758843232], [-77.35891106561688, 34.54740607576291], [-77.35888909098621, 34.54747491321231], [-77.35887884457674, 34.5475331271072], [-77.3588638181032, 34.54757773729999], [-77.35882655555778, 34.54766306785723], [-77.35878822458541, 34.54778932735864], [-77.35878806990459, 34.54779274076591], [-77.35877728728997, 34.547914985751504], [-77.35876509856739, 34.54802644526185], [-77.35876633263749, 34.54803897493024], [-77.35876475225965, 34.548051764270454], [-77.35880313974523, 34.5481560868927], [-77.35873877309469, 34.548262006531054], [-77.35871900531734, 34.54832776136201], [-77.3586926049247, 34.54841682623549], [-77.3586693739995, 34.548476610707276], [-77.35857534924683, 34.54863016258173], [-77.35855519214618, 34.54866942637375], [-77.35854788418892, 34.5486824875387], [-77.3585133189526, 34.548724793921764], [-77.3584186950574, 34.54885138481545], [-77.35832162686454, 34.54895988824201], [-77.35825201016277, 34.54901865573609], [-77.35818124271026, 34.549102512859406], [-77.35817712937767, 34.54910640827966], [-77.35817166904211, 34.549113533551974], [-77.35810765595456, 34.549196791662126], [-77.35807293794781, 34.549240518226405], [-77.35797044446873, 34.54937699112523], [-77.35796986205992, 34.54937777085201], [-77.35796971593511, 34.54937804856996], [-77.35796929276138, 34.54937855273281], [-77.35785939778955, 34.54951608695029], [-77.35782634177444, 34.54955666156084], [-77.35776809502046, 34.54959206773163], [-77.35763966634096, 34.54967013478643], [-77.35760403926666, 34.54969687251837], [-77.35743937615543, 34.54982138305182], [-77.35740647721823, 34.54984912085985], [-77.35736906932841, 34.54987188550477], [-77.35718832886798, 34.54996884537678], [-77.35697181969152, 34.55007408229187], [-77.35691280962124, 34.550105671234135], [-77.35663758660432, 34.55038560398028], [-77.35659337222138, 34.55043282821786], [-77.35658491516547, 34.55044287898101], [-77.35657057032111, 34.55045069350762], [-77.35618622042237, 34.55073626625963], [-77.3561769286626, 34.550741117989624], [-77.35617119546069, 34.550745381418906], [-77.35605013079794, 34.55087826929481], [-77.35601955772051, 34.55091292186914], [-77.35592703310748, 34.55101840171629], [-77.35587081626772, 34.55108892463629], [-77.35576831282852, 34.551192920806045], [-77.35548237675233, 34.551259754802416], [-77.35537313249465, 34.55130443906812], [-77.35532096653586, 34.55131813927718], [-77.35517538836113, 34.55136689188899], [-77.35516301930629, 34.55137320876488], [-77.35504630427374, 34.55143287403926], [-77.35497590878543, 34.55150498380591], [-77.35486236114849, 34.55159174917766], [-77.35473336531037, 34.55167987955541], [-77.35446148855118, 34.551893449983936], [-77.35426460983346, 34.55199217792724], [-77.35420611831658, 34.55201757154777], [-77.35417850656019, 34.552034569955396], [-77.35398757522732, 34.55215961181351], [-77.3539791849332, 34.55216563562834], [-77.35390770210493, 34.552209902641394], [-77.3537800682541, 34.55228774462376], [-77.35369782986595, 34.55231858323307], [-77.35345120615055, 34.552395383812424], [-77.35338447175907, 34.55241702937129], [-77.35326023181855, 34.5524584460398], [-77.35314847232692, 34.55249645870269], [-77.35298864090136, 34.55255646287153], [-77.35285506928338, 34.55260207337755], [-77.35279090752795, 34.55261822905349], [-77.3527000385794, 34.55264094619799], [-77.35269217371533, 34.55264332140065], [-77.35268020890959, 34.55264117909776], [-77.35259434983836, 34.552628792618336], [-77.35252513374115, 34.55260978470218], [-77.35245761309577, 34.5525830088388], [-77.3522842588994, 34.55252204228861], [-77.3522048637439, 34.55249192445639], [-77.3520201053313, 34.55243131194722], [-77.35187846478169, 34.5523356245801], [-77.35184786528937, 34.5523202702317], [-77.35181669089692, 34.55229795309338], [-77.35167042071961, 34.55221316608579], [-77.35159258630713, 34.55213194725905], [-77.35143187345275, 34.551958054070084], [-77.35140246788616, 34.55193317997726], [-77.35139320240634, 34.55191582132952], [-77.35135768221629, 34.551873459284565], [-77.35125950579354, 34.55169024134068], [-77.35120183259068, 34.55160226067496], [-77.35118343226591, 34.55157877918057], [-77.35115004642083, 34.55152404203079], [-77.35111255798992, 34.55146656854383], [-77.35105688149763, 34.551230326008856], [-77.3510566510957, 34.55122979328513], [-77.35105662163453, 34.55122940685214], [-77.35105605609925, 34.55122675353215], [-77.35101198380532, 34.550991400292375], [-77.35100576822644, 34.55095707221372], [-77.35096509480974, 34.55081593485396], [-77.35089488802194, 34.550763431004455], [-77.35081647092792, 34.55068702611583], [-77.35076199692251, 34.550660145714374], [-77.35069635485667, 34.55055812556392], [-77.35068899304561, 34.55054824152515], [-77.35068572324636, 34.55054459199372], [-77.35067947671094, 34.55052889577883], [-77.35060840783993, 34.550361729763736], [-77.35058299111054, 34.55031867548412], [-77.35053153504707, 34.5501785326105], [-77.35046888457622, 34.55009027585054], [-77.35044858548218, 34.54999993413955], [-77.35044259400962, 34.5499716489814], [-77.35043256718967, 34.54993299633976], [-77.3504151110895, 34.54985319357067], [-77.35040394272971, 34.549794875711854], [-77.35040687474229, 34.54979013324514], [-77.35043486796977, 34.54972793969293], [-77.35040443820446, 34.54967092541483], [-77.35052089936914, 34.54959314777315], [-77.3504467409111, 34.549443128181835], [-77.35100507698883, 34.54933751340805], [-77.35110025781479, 34.54930383261612], [-77.35112254220086, 34.549275225051844], [-77.3518182621976, 34.54920494488715], [-77.35188813095722, 34.54918879107432], [-77.35199548624644, 34.54920325169728], [-77.35225473990697, 34.549116045122865], [-77.35228164686376, 34.549149539601906], [-77.3523103125127, 34.549108069320795], [-77.35231696540818, 34.54908983080026], [-77.35242118426326, 34.548913640560905], [-77.35268417722683, 34.54871779142503], [-77.35301491821059, 34.54870579592607], [-77.35346996329665, 34.548693284806276], [-77.35355001139756, 34.5488600470905], [-77.3535532480328, 34.548911884600436], [-77.35357516645404, 34.54897841338042], [-77.35364443934931, 34.54902996232134], [-77.35370189244783, 34.54904007757665], [-77.35385419603827, 34.54905830516264], [-77.35389459951463, 34.549082037543656], [-77.35397348502913, 34.54909621650335], [-77.3540492840896, 34.54911139450756], [-77.35417455481267, 34.54911156674194], [-77.35424526672071, 34.54912551296106], [-77.35441555674802, 34.54913896203019], [-77.35444125565873, 34.54913935825498], [-77.35445469397519, 34.54914095643986], [-77.35463779133545, 34.54912290969689], [-77.35463794081309, 34.54912286192133], [-77.35481067312222, 34.54908284283184], [-77.35486394003738, 34.549072650516464], [-77.35503290204602, 34.54902050395007], [-77.35521074341929, 34.54905159346953], [-77.35522853170798, 34.54905000281208], [-77.35524915440129, 34.54904782304376], [-77.35532689680818, 34.549040762999326], [-77.35538678717941, 34.54901518132942], [-77.35541322503887, 34.549003468325225], [-77.3554262340482, 34.548989135614505], [-77.35547021919908, 34.54894196498778], [-77.35548973881052, 34.54891651055987], [-77.35552801751012, 34.54887243873546], [-77.35562766412762, 34.54876570490609], [-77.35564662838011, 34.54874447430998], [-77.35570925123407, 34.54867436738802], [-77.35577418812035, 34.54859217732832], [-77.35580127442812, 34.54857134656881], [-77.35582886124224, 34.548552387138685], [-77.35600943424052, 34.54844721331647], [-77.3560307807054, 34.548434643885344], [-77.35622677423531, 34.54832108368312], [-77.35626597832818, 34.54830071030798], [-77.35631335906089, 34.54826973347123], [-77.35649399108024, 34.548163280873645], [-77.35654279506521, 34.54804360432081], [-77.35647677553797, 34.54800138389413], [-77.35639276719441, 34.54786565473786], [-77.35633365924895, 34.547777164974605], [-77.35639935142078, 34.547669407258155], [-77.35647459054411, 34.547512052414774], [-77.35653427463963, 34.54743776165653], [-77.35664304992514, 34.54728856234483], [-77.35666934382512, 34.54723919100911], [-77.35676766479276, 34.54705457642902], [-77.35687512532942, 34.546964741151186], [-77.35704577572626, 34.54684688467185], [-77.35713914072855, 34.546868203728124], [-77.35732840945711, 34.54689947995266], [-77.35739314858229, 34.54691735651498], [-77.3574370376804, 34.546905363227], [-77.35750381751285, 34.54691602083664], [-77.35782804669851, 34.54697490304068]], [[-77.36452016974275, 34.54586840392076], [-77.36452728257915, 34.54587918342963], [-77.36453585449412, 34.545866723800565], [-77.36453771356125, 34.545861287866465], [-77.36453977982386, 34.54585356158548], [-77.36462261595938, 34.54560423304197], [-77.36453829839304, 34.54539661760938], [-77.36425299861827, 34.54565747189194], [-77.36444678520594, 34.54582339183401], [-77.36451740451118, 34.54586421316374]], [[-77.34533382088566, 34.54880126632004], [-77.34561300076439, 34.54889767585276], [-77.34569336956659, 34.54901194642357], [-77.34574065131571, 34.54905690141962], [-77.34590174879983, 34.54921838525157], [-77.3458688969668, 34.54936185041926], [-77.34582219745127, 34.54953480805703], [-77.34611544768156, 34.549658021774405], [-77.34637953853203, 34.54970880361072], [-77.34654022976763, 34.54981935002179], [-77.3467685083778, 34.54986715738587], [-77.3467809279276, 34.54987859807578], [-77.34679714585717, 34.54988417323687], [-77.34691315834473, 34.549958997599546], [-77.3469532103832, 34.549989607018695], [-77.34696197654782, 34.549990494159346], [-77.34704262666243, 34.55004263370119], [-77.34709534019663, 34.550086087750195], [-77.34711489058239, 34.55010863737756], [-77.34715515296006, 34.550126521633246], [-77.34721644908711, 34.55027315431738], [-77.34723832623934, 34.550310334123864], [-77.34738414281031, 34.5503876355167], [-77.34744089576441, 34.55046421288742], [-77.34746152378833, 34.55052303908977], [-77.34750001825783, 34.55054132120756], [-77.34753737383463, 34.55057808015327], [-77.34758083815746, 34.550628281243505], [-77.34760944322385, 34.550699887266674], [-77.34766895931747, 34.55073801168217], [-77.34772907985297, 34.55077806258499], [-77.3477651657106, 34.5508234260068], [-77.34778194806073, 34.55084416387915], [-77.347845137491, 34.55090932390448], [-77.34786270543093, 34.55095495381048], [-77.34786870018617, 34.55098644909579], [-77.34791987909716, 34.551017468445224], [-77.3480221803853, 34.551111684531854], [-77.34811331061907, 34.551142584384564], [-77.34812908535827, 34.551151480242474], [-77.34813954438317, 34.55115993928625], [-77.34814312737564, 34.5511785319417], [-77.3481815696244, 34.55123244954156], [-77.34822212957445, 34.551270466014216], [-77.34830502865606, 34.55134216107184], [-77.3483251077218, 34.551365207283155], [-77.34833271908386, 34.55137696309337], [-77.34835627736226, 34.55140645194297], [-77.34841833166497, 34.55148705412313], [-77.34844754263742, 34.55151393147814], [-77.34849616950797, 34.55156685401158], [-77.34853347568445, 34.55159289569527], [-77.3485999597391, 34.55163997176096], [-77.3486890152554, 34.55171751373753], [-77.34874998420979, 34.55176782250271], [-77.34879796160683, 34.55179965755287], [-77.34888180807482, 34.551870503187914], [-77.34890251499898, 34.551893777177455], [-77.34894454122936, 34.55194110522065], [-77.34896389647201, 34.55202060034149], [-77.34901240625271, 34.55205199241822], [-77.34907321351004, 34.5520838178358], [-77.34909826438593, 34.552107712200254], [-77.34910678018844, 34.55212244990493], [-77.34913039708708, 34.55214374047999], [-77.34913295355675, 34.55215698376442], [-77.34912419969513, 34.55218114841844], [-77.34912735535465, 34.55220638127615], [-77.34912009850588, 34.55224294374546], [-77.34912029518526, 34.55227501604807], [-77.34912836780059, 34.552364164161304], [-77.34912981250386, 34.552403839610704], [-77.34913130222878, 34.55244475306644], [-77.34913081353162, 34.552486222620225], [-77.34913058475384, 34.55250563540346], [-77.3491276127634, 34.55252696135485], [-77.3491193454784, 34.55254907805659], [-77.3490610835413, 34.55261097975774], [-77.34905389287717, 34.55261527988166], [-77.34903755766138, 34.55262205246073], [-77.34896184430022, 34.552657977560315], [-77.34891731598273, 34.55267301081396], [-77.34886291788992, 34.5526913761967], [-77.34875892864056, 34.55272648392146], [-77.34866532448831, 34.552746890448645], [-77.34861253900368, 34.55277308391786], [-77.34849599517216, 34.55280473446229], [-77.34846780441367, 34.55279920645296], [-77.34839584094077, 34.55275983001586], [-77.34827422697524, 34.55268023538301], [-77.34811172197958, 34.55263286524723], [-77.34797566957606, 34.552595006495885], [-77.34788387217124, 34.55258134502913], [-77.34756937332604, 34.55251383199597], [-77.34749323603401, 34.552494707196715], [-77.34747869363846, 34.55248829048584], [-77.34744628926839, 34.55248379310318], [-77.34722570502308, 34.55243833681698], [-77.34710293132622, 34.552393711309605], [-77.34699470410642, 34.55237174777295], [-77.34685244769307, 34.55232441678872], [-77.34671313467399, 34.5522706994138], [-77.34645414762375, 34.552297999846026], [-77.34632077715352, 34.552258868135624], [-77.34622382028704, 34.55223090092302], [-77.34618700513303, 34.55217533952623], [-77.34607548336808, 34.55210177241734], [-77.34593292401972, 34.55205159886485], [-77.34575752224697, 34.551992311054676], [-77.3456824180562, 34.551916439390105], [-77.34554297304267, 34.551935413369684], [-77.34533237294355, 34.55192196651646], [-77.34514977318622, 34.55196017688598], [-77.34499494383401, 34.55195383619276], [-77.34485813332029, 34.551876885124884], [-77.34476014631677, 34.55182999457875], [-77.3446356489017, 34.551742953683664], [-77.34454938911148, 34.551676482685046], [-77.34437511740778, 34.55150052615694], [-77.3443331192513, 34.55148912779725], [-77.34430502617718, 34.551466817810905], [-77.34424160350386, 34.55139111647343], [-77.34410943174176, 34.55125013646793], [-77.34466194438448, 34.55075766563075], [-77.3446907882774, 34.55067686280174], [-77.34471293106894, 34.55062693593691], [-77.34478783739242, 34.55062926486904], [-77.34486342692793, 34.5506052378277], [-77.34531960467088, 34.55042540974182], [-77.34534608287133, 34.55024008842496], [-77.34533423859125, 34.55009465167304], [-77.34537032878711, 34.54995331432097], [-77.34537538105938, 34.549599093223264], [-77.34531876661465, 34.54929535401676], [-77.34515282849054, 34.54914147279381], [-77.34502548707052, 34.54903453776105], [-77.34484561637905, 34.54870438048767], [-77.34484505592059, 34.54869611344342], [-77.34523134507323, 34.54842239130991], [-77.34534271748146, 34.5486245144373]], [[-77.33661046844603, 34.65218692012311], [-77.33658548676945, 34.65217653293856], [-77.3365747491335, 34.65217525869412], [-77.33652239806742, 34.652139479981166], [-77.3364150028513, 34.652213740155176], [-77.33611626509366, 34.65242760376597], [-77.33633021838855, 34.65268181856191], [-77.33642715591765, 34.65271784154227], [-77.33669583693472, 34.652777889776715], [-77.33693095079394, 34.65264072845383], [-77.33724696246396, 34.65294357320931], [-77.33734228216159, 34.65297454870702], [-77.33737885426379, 34.65299020611069], [-77.33745807344886, 34.65301298340334], [-77.33768706940494, 34.652930673733174], [-77.33784550564475, 34.65312647522555], [-77.33801309985323, 34.65319748635555], [-77.33790807784197, 34.65300261390727], [-77.3377185713465, 34.65287885944294], [-77.3376719128845, 34.652855247967025], [-77.33740172119809, 34.65285689111725], [-77.33733713453523, 34.652782584640505], [-77.33700990722754, 34.652484437799814]], [[-77.26010129831559, 34.59925240119767], [-77.26021214355293, 34.599267597074444], [-77.26022263125577, 34.59926976585356], [-77.26025801341935, 34.59926472875547], [-77.26024527264393, 34.59922501882597]], [[-77.32046768452778, 34.54444265849517], [-77.32058893700165, 34.544466780288005], [-77.32115080888455, 34.5444086586004], [-77.32137590005375, 34.54439128060336], [-77.32165099594773, 34.54436788812542], [-77.32216622275537, 34.54417173256654], [-77.32257933892517, 34.54429354696177], [-77.32294980700368, 34.54424086640723], [-77.3231918885122, 34.544312908641416], [-77.32331833649587, 34.54444674158145], [-77.32332930557985, 34.54469159143237], [-77.32336506372341, 34.544929653318604], [-77.32319576914809, 34.54512014172144], [-77.32292699021419, 34.545219026125984], [-77.32261851736877, 34.545335897580884], [-77.32247911679866, 34.54533455006282], [-77.32213792257751, 34.54538447673886], [-77.32203968846181, 34.545425561501595], [-77.3218540371916, 34.5454604775776], [-77.32174275760468, 34.54549418696813], [-77.32168249263643, 34.545454383895944], [-77.32143098887454, 34.545452360789454], [-77.32135137277206, 34.54544192317739], [-77.32132547648777, 34.5454515120002], [-77.32112213327477, 34.54539554249406], [-77.3209616237743, 34.54531961785333], [-77.3207346700355, 34.54530758986393], [-77.32071811423317, 34.545218471562265], [-77.3205719532114, 34.545193998977425], [-77.32044915537145, 34.545273190710404], [-77.32036029793561, 34.5452477597832], [-77.32026139285257, 34.54518175286539], [-77.32032273588888, 34.54512195923061], [-77.32021475828209, 34.545116520902155], [-77.32018092937889, 34.54512635954918], [-77.32000085445569, 34.54504579628227], [-77.31999401604422, 34.54504215112687], [-77.31998671244558, 34.545037115974246], [-77.31993560361241, 34.5450230966721], [-77.31979183410665, 34.54497619826835], [-77.31972593362389, 34.54500357995833], [-77.31965877504416, 34.54497253390748], [-77.31966638283339, 34.544891987435605], [-77.31979672493334, 34.54476686515165], [-77.31981920028088, 34.54471797777526], [-77.31984679210707, 34.54470071126036], [-77.31998239718527, 34.54454902254708]], [[-77.247825064529, 34.591413699434625], [-77.24819369216117, 34.591384414374595], [-77.248174257542, 34.59146667208879], [-77.24815875709753, 34.59147786070853], [-77.24812935995519, 34.591511523899165], [-77.24775532672824, 34.59145730818454], [-77.24775781825628, 34.5916819511245], [-77.24788583857634, 34.59175834126281], [-77.24779672476433, 34.59182280456448], [-77.2477213497351, 34.5919147521392], [-77.24771075302043, 34.59192215466068], [-77.24755228123765, 34.59193403885949], [-77.2474268484256, 34.5920666350923], [-77.2471640028547, 34.59202856321639], [-77.24717245645687, 34.59173635278714], [-77.24713066745642, 34.591632546034326], [-77.24725428869749, 34.591574670991214], [-77.24771603907227, 34.591422360752794]], [[-77.39057901169613, 34.62712816089288], [-77.39061560037672, 34.62684891692782], [-77.39075481946654, 34.62644293509752], [-77.390759487148, 34.62635993283463], [-77.390718955332, 34.62615229701801], [-77.39070120939543, 34.62600656693029], [-77.3906850866006, 34.625989763599904], [-77.39052186245337, 34.62590906167177], [-77.39043999846774, 34.625900974237524], [-77.39032474628961, 34.62588958829356], [-77.39021078986346, 34.62593541822976], [-77.39022944804678, 34.62605544739919], [-77.39023656659953, 34.62614935430267], [-77.39024652883717, 34.626265269295416], [-77.39023818101215, 34.62638559014816], [-77.39023165156395, 34.626479697965074], [-77.39021051170526, 34.62678439607685], [-77.39019296228089, 34.62690984316164], [-77.39016511358078, 34.62708562896736], [-77.3901678692389, 34.62733802881215], [-77.39024450501016, 34.62766534428086], [-77.39027033699485, 34.627747825846996], [-77.39028682175203, 34.62778606859356], [-77.39042427161989, 34.62783304203773], [-77.39043642092018, 34.62772388388118], [-77.39048443462836, 34.627544797085235], [-77.39057633218037, 34.62727914660396]], [[-77.39186770647053, 34.520917116317776], [-77.3920295479946, 34.52084242936636], [-77.39194182229129, 34.52075973071699], [-77.39178927400322, 34.52074592223638], [-77.39157576336774, 34.520554131187026], [-77.39118825489302, 34.52058665751492], [-77.39100524559849, 34.520705429460314], [-77.39034199952033, 34.52108593397875], [-77.39099223450833, 34.52128314324747], [-77.39149773890968, 34.52109611778967], [-77.39178404707917, 34.52097810302554]], [[-77.34128962584052, 34.75912703404781], [-77.34109421886768, 34.75918385446816], [-77.34091118847296, 34.759182593438304], [-77.34074659650179, 34.759284290210374], [-77.34070487260371, 34.75930537342903], [-77.34053927639022, 34.7594197875479], [-77.34049554665211, 34.75950215354656], [-77.34060683261555, 34.75956250397992], [-77.34066344655875, 34.759635305209244], [-77.34076052850367, 34.759692591114145], [-77.3409542795204, 34.759665281287226], [-77.3413373849438, 34.75964324697824], [-77.34156430926927, 34.75962765200377], [-77.34202118331415, 34.75990584804051], [-77.3420799055669, 34.75991490959815], [-77.34218265368415, 34.75991814364609], [-77.3425858509423, 34.75986587102758], [-77.34270955043242, 34.75980979368504], [-77.34311548975367, 34.759705864008424], [-77.34325016618419, 34.75958718813338], [-77.34339235398426, 34.759521770201424], [-77.3435511577149, 34.75915873917343], [-77.34368139101356, 34.758692583560034], [-77.34374185840329, 34.758645208902365], [-77.34439490096477, 34.758133565475525], [-77.34443914544107, 34.758087240562666], [-77.34446032163319, 34.75805929434487], [-77.34452705720923, 34.75797913851929], [-77.34458143724935, 34.75789414109612], [-77.34459295353861, 34.75779741475565], [-77.34459154378943, 34.757583946510216], [-77.3445928750986, 34.75755373716431], [-77.34459072350805, 34.757459773050236], [-77.34446195459243, 34.75757169355151], [-77.34442305639162, 34.75766492778148], [-77.34427966043486, 34.75784038445398], [-77.34430933505273, 34.757972248701606], [-77.34423635439207, 34.758090012035304], [-77.3436914272299, 34.758492764608164], [-77.34357823255998, 34.758601200531714], [-77.3429384774061, 34.75902216287659], [-77.3426359567032, 34.75864483240832], [-77.34246496946767, 34.758590117135356], [-77.34231079063147, 34.75850067287775], [-77.34219652935182, 34.75848311487847], [-77.34205016292859, 34.75850397591096], [-77.34203370747521, 34.758509573573036], [-77.34186676685655, 34.75858708829533], [-77.34171266200138, 34.75867980420297], [-77.34162907995402, 34.75878943524324], [-77.34127461697317, 34.75898356012593]], [[-77.44087905328428, 34.72995580979068], [-77.44043223479923, 34.729969673917914], [-77.4404252082124, 34.72997015278383], [-77.43998411128801, 34.729989250079974], [-77.43974661581723, 34.73012346103041], [-77.4391620513363, 34.730141739795506], [-77.43906916673207, 34.73024900352149], [-77.43882449224996, 34.730528891558336], [-77.4388936369979, 34.73061401536929], [-77.43894137020908, 34.73069067737427], [-77.4391338591011, 34.730960187407874], [-77.43935716937605, 34.731469443395724], [-77.4399637909579, 34.73145135902998], [-77.440088542055, 34.73145465393226], [-77.44067621096303, 34.731342343457385], [-77.44079045979585, 34.73130637399538], [-77.44117129252109, 34.731348893179266], [-77.44162054172568, 34.73116696341328], [-77.44183544528276, 34.730725719729335], [-77.44190199164163, 34.730486148423836], [-77.44164248379998, 34.7302185124739], [-77.44126694776674, 34.73007012062011], [-77.44106019187811, 34.730015173200094]], [[-77.33377579103663, 34.577291597179524], [-77.3335931366127, 34.57731177284028], [-77.33358810055823, 34.577313151055975], [-77.33353309271142, 34.5773264826244], [-77.33358440291715, 34.5773285027992], [-77.33359312501267, 34.577325840336414]], [[-77.45021193337442, 34.697356804365114], [-77.45005803713516, 34.69755904006853], [-77.4497691198319, 34.69768698089473], [-77.44945374045633, 34.69761313604987], [-77.44917828087057, 34.69751397822415], [-77.44890528958008, 34.6974184039901], [-77.44862633082998, 34.69720647868735], [-77.44839743855576, 34.69697868171011], [-77.4482563849094, 34.69679647713977], [-77.44855005986838, 34.69613665670952], [-77.44869402814004, 34.69596430915098], [-77.44902212956957, 34.695837537748105], [-77.44925334673403, 34.695790638626974], [-77.44971975067664, 34.695641155423175], [-77.45017717448347, 34.695804954490704], [-77.45031404567405, 34.6958021603549], [-77.45035721121238, 34.69591935547747], [-77.4503875431553, 34.69599716451173], [-77.45036549354661, 34.696112633959274], [-77.45038445188428, 34.69655509419969], [-77.45035145352341, 34.69681461196308], [-77.45029074672937, 34.69708135642372]], [[-77.37899149053976, 34.73014822034237], [-77.3788213656778, 34.73016868929446], [-77.37876760522295, 34.73016529773626], [-77.37811354602131, 34.73051400021554], [-77.37892602411553, 34.730424460411925]], [[-77.39686649159249, 34.58900986261334], [-77.39689562813426, 34.589148609063], [-77.3970283036422, 34.58918277154905], [-77.39707290556005, 34.589028131641534], [-77.39729382619367, 34.588948215388875], [-77.39736375499099, 34.5888749620509], [-77.39728733651916, 34.58867009150576], [-77.39709330073305, 34.58862256734965], [-77.39702833568549, 34.588607088724885], [-77.39699956817569, 34.58859708851193], [-77.39690613400968, 34.58857957156038], [-77.39683130870911, 34.58856498493853], [-77.3966879940188, 34.588553166622056], [-77.39663428030872, 34.588549470289614], [-77.39655193655466, 34.58854194658974], [-77.39653427302767, 34.58863321513477], [-77.39656971872488, 34.58869765260996], [-77.39663426587103, 34.588787923182295], [-77.39671015576972, 34.58895063857041]], [[-77.30983387545325, 34.54736280177081], [-77.31030833931067, 34.54757427937282], [-77.31057505577627, 34.54725638489431], [-77.31037304877087, 34.54682515397725], [-77.3103808503717, 34.54676133778713], [-77.31025507439301, 34.54676769004808], [-77.31019152535023, 34.54690447592888]], [[-77.4503750880115, 34.62321025966956], [-77.45040783105449, 34.62295507185902], [-77.45047835020875, 34.62283399374088], [-77.45024571903673, 34.62245405281813], [-77.45020112001555, 34.62227550065202], [-77.44988935903038, 34.62207823349904], [-77.44978285359485, 34.622105567416135], [-77.44933434881432, 34.62197154896842], [-77.44915997492605, 34.62195270764252], [-77.4489793693273, 34.62188537113582], [-77.44875740328385, 34.62178475351908], [-77.44872739085305, 34.621957222117956], [-77.44867060701063, 34.62220156004386], [-77.44854140636457, 34.62270892538166], [-77.44857669783218, 34.622738704607116], [-77.44853334027029, 34.62277293604049], [-77.44851338187601, 34.62281376574919], [-77.44838152838172, 34.623339222076936], [-77.44829472053549, 34.62355761974297], [-77.44831266563926, 34.62390290498491], [-77.44848025889613, 34.62424322895568], [-77.4488762203068, 34.62475108761143], [-77.44893678891924, 34.62485156871854], [-77.4490152557936, 34.62487269393695], [-77.4490878174853, 34.62491147622195], [-77.44924107114086, 34.624878727974576], [-77.44959342000547, 34.62483767272116], [-77.44988159198799, 34.624582164871384], [-77.44992051448521, 34.624497026216304], [-77.44999489523477, 34.624383646047235], [-77.450223251478, 34.62398353790865]], [[-77.42392598343406, 34.522801505865445], [-77.42409382075567, 34.52295980593396], [-77.42410353447517, 34.52306529238673], [-77.42411804123162, 34.52318834993139], [-77.42419161844477, 34.523368700215855], [-77.42451375919329, 34.5233806624673], [-77.4245426988588, 34.523102595161234], [-77.42456140109626, 34.52299909784641], [-77.42457443763205, 34.52291361176198], [-77.42457806177438, 34.52259276891915], [-77.42432299906895, 34.522543876263065], [-77.42428788584644, 34.52232968982006], [-77.42361287673438, 34.522446301736466], [-77.4238375238954, 34.52267104792055]], [[-77.4575293876773, 34.598002505269946], [-77.45752609961325, 34.59803049416885], [-77.4580323671486, 34.59806033333462], [-77.45823641895917, 34.59805219638323], [-77.45837460223953, 34.59803391676286], [-77.4584593829536, 34.59777948928028], [-77.45846254519722, 34.5977633259457], [-77.4584535721537, 34.597751858398915], [-77.45833195240323, 34.59723483402564], [-77.45829189566881, 34.59707591328617], [-77.45829131647446, 34.59707364511327], [-77.45829634475609, 34.59706444535138], [-77.45848084586717, 34.59652264671101], [-77.45863724682263, 34.596430203367305], [-77.45867724967486, 34.59622500144883], [-77.45868770582261, 34.59597564753028], [-77.45891597352417, 34.59578762335638], [-77.45895627176043, 34.595759927481566], [-77.45897385702783, 34.59573994473392], [-77.45902407728687, 34.59557214609889], [-77.45901324589101, 34.595470173953586], [-77.45897340650406, 34.59540196957186], [-77.45893529921173, 34.595368462145174], [-77.45886367189757, 34.59533758971265], [-77.45879879298731, 34.59530681397864], [-77.45870055022084, 34.59529518623991], [-77.45863355479727, 34.59528030900715], [-77.45844575064817, 34.5952716129363], [-77.45833256001643, 34.595317584295394], [-77.45816005179881, 34.59540223850926], [-77.45784391421054, 34.5954526548471], [-77.45776816640539, 34.595424337886], [-77.45736330197917, 34.59551224538233], [-77.4573382873782, 34.595525717094596], [-77.45731466129831, 34.59552180259684], [-77.45713085216565, 34.595585755598925], [-77.45709451970473, 34.595595283168294], [-77.4570353689219, 34.59567795627482], [-77.4570506920546, 34.59571255253938], [-77.45705945995098, 34.595763399402514], [-77.45705717276343, 34.595836736357725], [-77.45720952605953, 34.59590521818612], [-77.45723942035295, 34.59608827925169], [-77.45739777149066, 34.59633459264956], [-77.4574933483371, 34.59656277501181], [-77.45760008096455, 34.5968338539217], [-77.45763178942734, 34.59696281212269], [-77.45828316176716, 34.59707597168746], [-77.45772263575891, 34.59749611405364]], [[-77.3039145484741, 34.55357985075134], [-77.30389483863055, 34.55360109928521], [-77.30388814669607, 34.553604378703945], [-77.30388437709135, 34.55360650851371], [-77.30369634231809, 34.55375940339455], [-77.30364721878026, 34.55378192335392], [-77.30348945203974, 34.553703186516], [-77.30313436004698, 34.5537102379933], [-77.30349431099677, 34.55349690973502], [-77.30375254465095, 34.553538324746256], [-77.30388550045892, 34.55355880883759]], [[-77.31852605619105, 34.64300912962548], [-77.31867711225847, 34.64283061799823], [-77.31832581979307, 34.64260788627028], [-77.31810329332933, 34.6429092715151], [-77.31808638211528, 34.642932175729406], [-77.31808631086932, 34.6430096455003], [-77.31808400305171, 34.64333390149879], [-77.31820633590272, 34.6436077539651], [-77.31826130678917, 34.64342927148726], [-77.31833592715594, 34.64345588898669], [-77.31840991555744, 34.64328922917733], [-77.31842713361837, 34.64325044529319], [-77.31844789457064, 34.643216204318705], [-77.31853593303356, 34.64306096281966]], [[-77.41889451545006, 34.56868270339831], [-77.41895882571714, 34.568768100538975], [-77.41903686007535, 34.56876721831997], [-77.41907140784468, 34.56863047358923], [-77.41902921359736, 34.56861493103578], [-77.41894387821073, 34.56857403691934], [-77.41883640489164, 34.56858017940246], [-77.41887764858949, 34.568654999857166]], [[-77.33978110458132, 34.68333183578362], [-77.34041219386742, 34.68307127248684], [-77.33986309128312, 34.68304958890981], [-77.33971151591808, 34.68304225182922], [-77.33926606899257, 34.683193292166024], [-77.33922276602009, 34.68319340539464], [-77.33917950241616, 34.683208820578194], [-77.33869938916013, 34.68323517951437], [-77.33859831186774, 34.6832825750646], [-77.33843304045566, 34.68334281291787], [-77.3381789369213, 34.68359823715269], [-77.33789755213476, 34.68363440335038], [-77.33785364979511, 34.68366598684528], [-77.33787736384966, 34.683703897211245], [-77.33814221343985, 34.68366389483208], [-77.33823171792464, 34.683645045194005], [-77.33854087153337, 34.68348030728956], [-77.33910157347091, 34.68331986377136], [-77.33924918328418, 34.68327061496038]], [[-77.31392369428745, 34.54738756213129], [-77.31400195400943, 34.547401450655215], [-77.31394596943048, 34.54744740403146], [-77.31385766063374, 34.547510550444656], [-77.3138439151912, 34.547488033840146], [-77.31379749151547, 34.54740568591945], [-77.31384836841606, 34.54729800153668]], [[-77.3474515464295, 34.656336092564274], [-77.34743814350577, 34.65652531654262], [-77.34744093420768, 34.65660833632934], [-77.34741025833043, 34.656701354167396], [-77.34737161625357, 34.65692868172145], [-77.34735226700973, 34.657042510301466], [-77.34734714539228, 34.65707264028928], [-77.34736155864714, 34.65725110749778], [-77.34736151785621, 34.657252240207654], [-77.34744811912242, 34.657287740141335], [-77.34747472874427, 34.65731411701252], [-77.34751822360482, 34.65733622476036], [-77.3475402922379, 34.6573480315777], [-77.34761369975399, 34.65732604242261], [-77.34762036332516, 34.657327634698014], [-77.34768326931348, 34.65726288145199], [-77.34770962720953, 34.65724414763442], [-77.3477994578586, 34.65704451234693], [-77.34786761198674, 34.65697175325523], [-77.34793974103953, 34.65679172624681], [-77.34803801208515, 34.65663850168169], [-77.34832519501872, 34.656491466084326], [-77.34832804495201, 34.65648850260315], [-77.34832917025217, 34.65648799613603], [-77.34833731559544, 34.65648526040604], [-77.34832851391715, 34.65648489467877], [-77.34832747744196, 34.65648568043072], [-77.3483256681576, 34.65648472765121], [-77.34800413283487, 34.65647001994047], [-77.34786985845741, 34.65624469583476], [-77.34770573948111, 34.65623973963922], [-77.34763976898265, 34.656250364300476], [-77.34753551997763, 34.6563325154468]], [[-77.25355229703, 34.58669766131641], [-77.25309364462973, 34.58691737358908], [-77.25328395237389, 34.587165540749545], [-77.25328168537763, 34.58716785152075], [-77.2532803151358, 34.58716924821533], [-77.25327475746775, 34.58717491314276], [-77.25313655427274, 34.58727426054374], [-77.2531411466518, 34.58731086152426], [-77.25310690981648, 34.587343660980295], [-77.25303757048584, 34.58738430296833], [-77.2529372014132, 34.58747907414883], [-77.25291219641429, 34.58749912103972], [-77.25270173967846, 34.58759353246303], [-77.25255596763834, 34.58776235985927], [-77.25236307518517, 34.587667995952465], [-77.25228073385334, 34.58779605434197], [-77.25241870939985, 34.58785690886585], [-77.25228468588138, 34.587926926065464], [-77.25224280562404, 34.58802874025831], [-77.25217009784359, 34.588108391942676], [-77.25210998107434, 34.588100184877916], [-77.25210846268861, 34.58815677007652], [-77.25195841426341, 34.58824201863833], [-77.25181621391908, 34.58844989104595], [-77.25179041803294, 34.588473252051706], [-77.25176205125265, 34.58849823981934], [-77.25158218613089, 34.588616690098014], [-77.25155875600205, 34.58868189226164], [-77.25148211669398, 34.58875867899746], [-77.25142650861783, 34.58880687525736], [-77.25128343954077, 34.58889588408962], [-77.25116998434582, 34.58905924127153], [-77.25111033408565, 34.58911792478756], [-77.2510773803649, 34.5891536476776], [-77.2509344903534, 34.589300570003196], [-77.25090214645647, 34.58932643894065], [-77.25089590101234, 34.589336710779165], [-77.250871668583, 34.58935462956287], [-77.25071320310003, 34.589487035930674], [-77.25055720584419, 34.589545710188325], [-77.25029642757144, 34.58972842062058], [-77.25012586635387, 34.58962192464654], [-77.24991083328666, 34.58965738924004], [-77.24979083685497, 34.58957558465549], [-77.24985010892769, 34.58937663534718], [-77.2496483484315, 34.589002783791514], [-77.24975108885295, 34.58885567389188], [-77.25001802246746, 34.58821133876317], [-77.25021884092294, 34.588105023762616], [-77.25082276594829, 34.587855404117036], [-77.2511159628375, 34.587873323922274], [-77.25169858823595, 34.587790664012644], [-77.25175913142955, 34.58778810650307], [-77.25184527551701, 34.58776176455648], [-77.25186257042336, 34.58769773688512], [-77.25213296882829, 34.587463318228785], [-77.2521615897523, 34.58731532746022], [-77.2521818024038, 34.587210812151746], [-77.25225581960217, 34.58691528008683], [-77.25229524192949, 34.58685450716384], [-77.2525619583438, 34.58653027721955], [-77.25319625880431, 34.58649702993576]], [[-77.33986217302834, 34.68509095183962], [-77.33986582712734, 34.685096697987994], [-77.33987120906563, 34.68509896490256], [-77.34047467902842, 34.68506531856631], [-77.34059606985404, 34.684995548244686], [-77.34052033898247, 34.68498723015497], [-77.34049709978999, 34.68498813222304], [-77.33986965833499, 34.68509375005208]], [[-77.34787794597574, 34.73687063829847], [-77.34785798416438, 34.7368611494778], [-77.34774283605421, 34.7368203172003], [-77.34772072368217, 34.73679953352869], [-77.34765749954596, 34.736785300332684], [-77.34760595162494, 34.73677610438427], [-77.34744839092988, 34.73681190089668], [-77.34743645749487, 34.73680680270354], [-77.34744206950533, 34.736816762890705], [-77.3475048000158, 34.73692809635742], [-77.34754266321369, 34.73699394231303], [-77.34760394577506, 34.73708644355753], [-77.34764768378423, 34.737152181298306], [-77.34775102514757, 34.73730750209029], [-77.34811038495174, 34.737088694909794], [-77.3480817485401, 34.73705941142127], [-77.34788294075821, 34.73687185949861]], [[-77.34391712279228, 34.624176200833816], [-77.34379783083583, 34.62411944015844], [-77.34354468318725, 34.62399869732324], [-77.34303017055004, 34.623760838018676], [-77.34287046071665, 34.62365969149122], [-77.34246523300683, 34.62353155052818], [-77.34233781654137, 34.62350091974603], [-77.34232301604767, 34.623551076461354], [-77.3422913376004, 34.623658430310556], [-77.34220026392683, 34.62398992784208], [-77.34217465549352, 34.62405385085269], [-77.3421444818041, 34.624131709211376], [-77.34203041359882, 34.62443524514336], [-77.34225983626565, 34.62470586497844], [-77.34232957882935, 34.62473083104696], [-77.34248399621362, 34.62467633799122], [-77.34256599288004, 34.62463661456729], [-77.34265796168741, 34.62450516433657], [-77.34284798004438, 34.62444707226562], [-77.34306182000654, 34.62442887583626], [-77.34316064273175, 34.624410208186475], [-77.34319635881295, 34.624340675355676], [-77.34374955260624, 34.624215052147136], [-77.34376169717319, 34.62421569237075], [-77.34377798312724, 34.62421655087687]], [[-77.40583849937606, 34.67164669550057], [-77.4057467186753, 34.67155400135218], [-77.40568822934671, 34.67148621702813], [-77.40549058651392, 34.67134886436941], [-77.40548767107013, 34.67134671738812], [-77.40548660554732, 34.67134593924675], [-77.40547857604676, 34.67134466024339], [-77.40548342757685, 34.671348487654015], [-77.40546844865342, 34.671408633364415], [-77.4054206595368, 34.67159783979834], [-77.40541960721654, 34.67160358612364], [-77.40553032379708, 34.671748089502316], [-77.40555398031037, 34.67176538935621], [-77.40566251300599, 34.67184475851472], [-77.40589343529938, 34.67201362922071]], [[-77.34148376006445, 34.55054566109069], [-77.34125623212341, 34.55054248453951], [-77.34113487702447, 34.55052977679893], [-77.34086302524764, 34.55056773009286], [-77.34075899756851, 34.550572780702744], [-77.34066631438552, 34.550584995413274], [-77.34061301426838, 34.55052898463282], [-77.34053341036444, 34.5505020912973], [-77.34047248025563, 34.55047779621436], [-77.34028661118714, 34.55045352186104], [-77.34028412862834, 34.55044932583824], [-77.34008771000977, 34.55035972019329], [-77.3400847996859, 34.55035877248727], [-77.3401092074163, 34.550125026342855], [-77.34013079669414, 34.55010870508612], [-77.34021551699561, 34.54992837218512], [-77.34040619827587, 34.54982427588833], [-77.34065262296109, 34.54964432973163], [-77.34088601380765, 34.5495729460697], [-77.3410575767963, 34.54962288871561], [-77.34138932883982, 34.54968286847386], [-77.34153963482316, 34.55007606302368], [-77.34156894948671, 34.55014666936426], [-77.34155427936733, 34.550212505113414]], [[-77.3385429255936, 34.549027187070415], [-77.33865304162669, 34.549028466636074], [-77.33865392553804, 34.549097021207544], [-77.33894763869199, 34.54928828940396], [-77.33894799265799, 34.549311410391155], [-77.338928117284, 34.549348172716435], [-77.33884287746378, 34.549508645847894], [-77.33855835474368, 34.54958276485474], [-77.33853013015727, 34.54958020579224], [-77.33826261035111, 34.549398115494135], [-77.33835979784644, 34.54925029164063], [-77.33839452788878, 34.54913432629579]], [[-77.3951101113231, 34.51268915134271], [-77.39505806279338, 34.51260431339888], [-77.39488007789183, 34.51259634063187], [-77.39447942670496, 34.512559792329455], [-77.39457681189202, 34.512301960314275], [-77.39502631762107, 34.51214546569981], [-77.39511790498011, 34.512342400941215], [-77.39533890972866, 34.51239154015988], [-77.39536996099079, 34.51252563101729], [-77.39527210907929, 34.512640136811385]], [[-77.26972721800823, 34.57881456784505], [-77.26974941588499, 34.57880096437133], [-77.26974428673428, 34.57878081815967], [-77.2697157221555, 34.578798315668294]], [[-77.33839319914917, 34.762292637834086], [-77.33837705462011, 34.76229175404349], [-77.33809809499364, 34.76227731716344], [-77.3378790543247, 34.76237337037248], [-77.33804399860679, 34.76246339296788], [-77.33834452198573, 34.76233834509522], [-77.338387009729, 34.76231392795209], [-77.33844770538465, 34.76229541018985]], [[-77.39939135775818, 34.5937417777051], [-77.39939149134766, 34.59374046799204], [-77.39919551770568, 34.59360794605562], [-77.39913806400907, 34.59362664218201], [-77.39899847484583, 34.593672066265505], [-77.39861028442202, 34.593853172821], [-77.3986069810395, 34.59385644491677], [-77.39872306702702, 34.59413360262561], [-77.39877947390387, 34.594253337582444], [-77.39880141445472, 34.594296252989025], [-77.39885459368949, 34.594397490086145], [-77.3989728660668, 34.59462244958607], [-77.39898412166696, 34.59464838674305], [-77.39899844626328, 34.59468493011891], [-77.39902170847893, 34.594668025353734], [-77.39901916020044, 34.59464333175544], [-77.39922883474928, 34.59443671288149], [-77.3992312781768, 34.594361894453726], [-77.39926267635263, 34.59418362604322], [-77.3992688573023, 34.59404947356384]], [[-77.21160972401933, 34.621589146418536], [-77.2118259519564, 34.62156400296068], [-77.2119537155425, 34.62154914599097], [-77.21181202144572, 34.62160513414955], [-77.21174196295377, 34.62181198699633], [-77.21171862152414, 34.62183343692602], [-77.21170625950037, 34.62184521302207], [-77.2116600700009, 34.62189132025162], [-77.21152756336653, 34.62193617963086], [-77.21157959808832, 34.62196452723005], [-77.21152789526951, 34.62201530036432], [-77.21141479624009, 34.62204510961348], [-77.21135620650291, 34.62213988335003], [-77.21132334082503, 34.62216208385598], [-77.21122281126327, 34.62218975648721], [-77.21124284940714, 34.622090461814366], [-77.21125455722529, 34.622032445508715], [-77.21126290121482, 34.62199109787063], [-77.21129910082065, 34.62181171696522], [-77.21131766849545, 34.62180174907914], [-77.21144058576836, 34.62160881416197]], [[-77.40307280303807, 34.509944523054926], [-77.40301000316364, 34.51039786949806], [-77.40239152953066, 34.51004290232215], [-77.40302106344609, 34.50990372811366]], [[-77.2590523546049, 34.58491992333676], [-77.25926804524039, 34.58504666546602], [-77.25895357547805, 34.58511516626842], [-77.2589157080182, 34.58505666239032], [-77.25894939439294, 34.58502159135924], [-77.25895711809477, 34.58498828937684]], [[-77.3500214765716, 34.69028939072959], [-77.35002095633077, 34.690268459411456], [-77.35008744047286, 34.69009527275385], [-77.35006610028216, 34.69025504985718], [-77.35006507663662, 34.6903075740904]], [[-77.43659554879677, 34.734173817646536], [-77.43620418534564, 34.73396815542386], [-77.43626244272184, 34.73362967918174], [-77.43645509918449, 34.73361420245468], [-77.43670362379179, 34.733602662429284], [-77.43698383108776, 34.73364287523175], [-77.43691889634114, 34.73377626811715], [-77.43695111757614, 34.73400694651088], [-77.43667488184619, 34.73409189406604]], [[-77.39012473983344, 34.65869952526613], [-77.39004771210932, 34.658720804499424], [-77.38978105667621, 34.65880490689351], [-77.38978037062324, 34.65880585258381], [-77.38975547065952, 34.65911514862448], [-77.38971498226945, 34.6592368739971], [-77.38967847907574, 34.65935929841058], [-77.3898081397829, 34.65940916333646], [-77.38997268645159, 34.659312670421], [-77.39014649047243, 34.65927387233379], [-77.3902657920483, 34.65930112978837], [-77.39043972264952, 34.65929428135564], [-77.3907316394048, 34.659336538964865], [-77.39101934116542, 34.6593587249952], [-77.39131550478336, 34.65938071269931], [-77.39133265926964, 34.65938294910235], [-77.39137245160826, 34.65938176437718], [-77.39165482161982, 34.65937664833956], [-77.39188275410707, 34.65931533104594], [-77.39214676195634, 34.65911910599137], [-77.3921660486625, 34.65910477109677], [-77.39201522908152, 34.65885392951019], [-77.39191647592072, 34.65881542967465], [-77.39154193500516, 34.65869952152335], [-77.3914232779049, 34.658662800742235], [-77.39119751775647, 34.658607658140994], [-77.39111034063527, 34.65858320963821], [-77.39075338334322, 34.658631364911386], [-77.39066398767169, 34.65862861765982], [-77.39042734923135, 34.658833930933156]], [[-77.45447491760314, 34.67720856359675], [-77.4541107677907, 34.67737101591703], [-77.45422972429694, 34.67793595208743], [-77.45425217788663, 34.6779867942518], [-77.45470958666667, 34.67806460154031], [-77.4548164362877, 34.67813348999776], [-77.45498992214242, 34.678145774604225], [-77.45499483044354, 34.67814545183441], [-77.45499581119059, 34.67814409599374], [-77.45509653497464, 34.67802525580293], [-77.45509904425971, 34.67801677496493], [-77.45509032162269, 34.677932524121104], [-77.45504948419124, 34.67784871729819], [-77.45485672329923, 34.677814476490994], [-77.45481818572283, 34.677618281536475], [-77.45463995327307, 34.677434676755894]], [[-77.47357665846458, 34.485871028980974], [-77.47350217379613, 34.48589327319438], [-77.4735368948363, 34.485851716266836], [-77.47357343901292, 34.48585602192516]], [[-77.35760970497726, 34.61236988248373], [-77.35743344385563, 34.612332982293466], [-77.35744559448374, 34.61269767065992], [-77.35760951552544, 34.61274010187202], [-77.35777415404657, 34.6127210567408], [-77.35782818164009, 34.61270153676893], [-77.35782163563637, 34.612663116084136], [-77.35784644027694, 34.612463416633645], [-77.35780677965606, 34.6123988506629], [-77.35771259328878, 34.61237185960612]], [[-77.22120692930334, 34.61320207275996], [-77.22179697798212, 34.61327641187778], [-77.22156913708312, 34.6134199501725], [-77.22169763574627, 34.613497245066995], [-77.2216193387678, 34.61356900709866], [-77.2215848605696, 34.61365687309976], [-77.22149351284698, 34.61372112016444], [-77.22138301006466, 34.61368750135432], [-77.22123443690236, 34.61381629602835], [-77.22119627067835, 34.61362618946134], [-77.22126028953356, 34.61347713952246]], [[-77.4438093990976, 34.73491716142695], [-77.4439162933146, 34.73499117830001], [-77.44396062617625, 34.73498900216301], [-77.4441137267262, 34.734973328756354], [-77.44421310712244, 34.73492723254704], [-77.44421039212784, 34.734868454713634], [-77.44419700490133, 34.73478185283835], [-77.44417567971671, 34.73475917548937], [-77.44412473400297, 34.73475660468206], [-77.44404503796142, 34.73475307106963], [-77.44401671149635, 34.73475461388415], [-77.44393907362803, 34.73475846420173], [-77.4438539350623, 34.734763215781186], [-77.44382290377628, 34.73476407306701], [-77.44349429821479, 34.73489823346637], [-77.44344427188949, 34.73489327562779], [-77.44320323611959, 34.73479621364083], [-77.44309314306975, 34.734815472917184], [-77.44298197585525, 34.73488583581236], [-77.44296531471177, 34.73494158752101], [-77.44302593466529, 34.7349576311196], [-77.44316735036054, 34.73492025496774], [-77.44339753108164, 34.73498444063213], [-77.44346777543862, 34.73498991226751], [-77.4435115329594, 34.7350031278025], [-77.4436210274676, 34.73499989533052]], [[-77.46159490361892, 34.59571386795126], [-77.46158821607371, 34.59575171664257], [-77.46157020864767, 34.59580341306888], [-77.46154855783071, 34.596144283042364], [-77.46138289500193, 34.59629925134683], [-77.46127526298133, 34.5964660108179], [-77.46117877634727, 34.59661906475485], [-77.4612166192006, 34.596860446749446], [-77.46090501561086, 34.59703339775424], [-77.46084215261533, 34.59708438351679], [-77.46076404605498, 34.59724675094578], [-77.46073109025609, 34.59730994959589], [-77.46071911591886, 34.59731426415148], [-77.46069736400061, 34.597328314530536], [-77.46048821278531, 34.597430815425454], [-77.46037187915981, 34.59758783368781], [-77.46055763700139, 34.597684300312636], [-77.46071758306456, 34.59776082679268], [-77.46107671961596, 34.59774055590814], [-77.46109720951112, 34.59773513150481], [-77.46114382648435, 34.59769670401773], [-77.4613752232695, 34.59753530445243], [-77.46150873207502, 34.59731843854753], [-77.46154979263625, 34.59725174098285], [-77.46168895200293, 34.59702569525017], [-77.4617466515954, 34.596826298828894], [-77.46193299239033, 34.59649170647346], [-77.46193300390664, 34.59627413635812], [-77.46189244321508, 34.59604615883472], [-77.4616816456763, 34.59578440378288], [-77.46163955273664, 34.59571859048435]], [[-77.39756523419686, 34.508210618739675], [-77.39768870238073, 34.50827354777333], [-77.39794750120134, 34.50848352724471], [-77.398059461003, 34.50870969440922], [-77.3981621032382, 34.50880383788279], [-77.39811091806945, 34.50905455133264], [-77.39774959281377, 34.50911638886302], [-77.39754386128575, 34.50916269103634], [-77.39731581497684, 34.50916446400802], [-77.39681332444147, 34.50937926095537], [-77.39676300536067, 34.50939221979963], [-77.39675384587213, 34.50939364398939], [-77.3967413756912, 34.50939737540937], [-77.3966923868793, 34.50939671896234], [-77.39667936873758, 34.5093515403268], [-77.39659231496357, 34.508921493436134], [-77.39677133022539, 34.50861511413413], [-77.39682951468863, 34.50843130864056], [-77.39684328377696, 34.5083955937025], [-77.39717387316858, 34.50816391024192], [-77.39736971491408, 34.508197423039405]], [[-77.33975636610636, 34.64888873943381], [-77.33991386371044, 34.64896659801576], [-77.33980630115876, 34.64879439093763], [-77.33973483502366, 34.64878159783098], [-77.33957430120358, 34.64882623127924]], [[-77.37771714945674, 34.59637076575172], [-77.37795467244344, 34.59615086971144], [-77.37813680941157, 34.59598330155647], [-77.37813768085131, 34.59592741214725], [-77.37779190924954, 34.59566133831748], [-77.37771736576579, 34.59560430697607], [-77.37736277398136, 34.59606740982567]], [[-77.36817055626298, 34.60451742274876], [-77.3680756482963, 34.604622637701986], [-77.36818948165266, 34.60467734136492], [-77.36825549564624, 34.60464583832696], [-77.36828760525164, 34.60462669627035], [-77.36838052535639, 34.60457873647101], [-77.36851758211589, 34.604416660327814], [-77.36864971692638, 34.60443534768312], [-77.36879926175584, 34.60435738459557], [-77.36886882969485, 34.604319838822654], [-77.3688793180884, 34.604259661730005], [-77.36876651714104, 34.60409859645802], [-77.36876357433667, 34.60397656486144], [-77.36851228360165, 34.60398697920076], [-77.36844303168895, 34.60414517845015], [-77.36836513280608, 34.60427433854622], [-77.36825558601778, 34.60441393413866]], [[-77.38831368585096, 34.59406446875304], [-77.38824525324802, 34.59419595347666], [-77.38835814630687, 34.59415715825736], [-77.38837824749841, 34.59424577343436], [-77.38851511798569, 34.59420454696411], [-77.38855518425905, 34.5941924786505], [-77.38860811820732, 34.5941772756059], [-77.38868870371155, 34.59415423872663], [-77.38875224186258, 34.59409880922849], [-77.38882877782873, 34.59407265346704], [-77.38894384281278, 34.593973611244], [-77.38907892769178, 34.59360225817531], [-77.38875230769503, 34.59366389072194], [-77.38869227008205, 34.593649999900265], [-77.38847746327662, 34.59374476431803], [-77.38835817594382, 34.59396716082524]], [[-77.36981693646105, 34.59331251511787], [-77.36966322697415, 34.59269311185793], [-77.36917947751724, 34.592717326141155], [-77.36914405535337, 34.593326938261995]], [[-77.3332762720548, 34.65643052611393], [-77.33326662371242, 34.656426990994674], [-77.33324342929888, 34.65641849264382], [-77.33317770599021, 34.65645582732418], [-77.33323955967677, 34.65650318585225], [-77.33342818277245, 34.65684345974892], [-77.33371065726197, 34.657043407991736], [-77.33386674902945, 34.657000402694436], [-77.33403030650571, 34.65704070594161], [-77.33422874289974, 34.65684130079376], [-77.33429671488818, 34.65677301301673], [-77.33431659287558, 34.65675306427569], [-77.33435282429734, 34.656716613274625], [-77.33450433724808, 34.656295837343734], [-77.33428219874013, 34.65670076352392], [-77.33426322281638, 34.65670324053684], [-77.3339532092041, 34.65665697118726], [-77.33370222200863, 34.656735436571594], [-77.33364701924837, 34.65672665894942]], [[-77.39505581988179, 34.62144148007954], [-77.39491037626823, 34.62129151456279], [-77.39475310330457, 34.6212560726714], [-77.3946616177561, 34.62123553961317], [-77.39459745048197, 34.621249093516134], [-77.39451866248228, 34.62119134699979], [-77.39432820451249, 34.6211533335651], [-77.39426741191431, 34.62111595959951], [-77.3935788821816, 34.62058526401209], [-77.39360539021831, 34.6213230354571], [-77.39358808236805, 34.621443054929095], [-77.39352650847005, 34.62175897974235], [-77.39381892191636, 34.62177522251526], [-77.39401026990264, 34.621836904740135], [-77.39426736693129, 34.62180577873669], [-77.39449074638597, 34.6218039336107], [-77.3947705941593, 34.62200415952488], [-77.39496307359194, 34.62207625341468], [-77.3950557848953, 34.622071822451524], [-77.3952092538042, 34.62220018275244], [-77.39530755075799, 34.62219788808386], [-77.39544999535643, 34.6222109215785], [-77.39561640083035, 34.62209447780157], [-77.39558198997273, 34.62202930244058], [-77.39549373348264, 34.621899881582486], [-77.39545001489822, 34.621824700860856], [-77.39516492232882, 34.62182977038448], [-77.39516751029225, 34.621522353379085]], [[-77.24601868763648, 34.59282469485365], [-77.24610306813132, 34.592616968008016], [-77.24626604625576, 34.5927320996905], [-77.24625130151693, 34.592748827629315], [-77.24620560604856, 34.592973711564035], [-77.24632764092168, 34.59307643322137], [-77.24629368430668, 34.593115205619085], [-77.24624084918707, 34.593160510177206], [-77.24608274184871, 34.59319970582185], [-77.24602457970026, 34.59320450546028], [-77.2459928560296, 34.593234024789766], [-77.24594952348212, 34.59321797588324], [-77.24580288550115, 34.59300729970878], [-77.24578278076389, 34.59294039844711]], [[-77.4177958441453, 34.75506166980276], [-77.41777495740145, 34.75507301345306], [-77.41770168612645, 34.75507642735667], [-77.41709449144483, 34.755208017150096], [-77.41681845367927, 34.75496071601857], [-77.41686501393066, 34.75528007059529], [-77.41692924487265, 34.75539847354879], [-77.4168559489323, 34.7558359882093], [-77.4168779974257, 34.75595533228051], [-77.41693453579603, 34.75628899443754], [-77.41707191376597, 34.756470555301526], [-77.4172201588069, 34.756988153652046], [-77.41730583762057, 34.757026921721405], [-77.41724435642811, 34.75708991002006], [-77.41731591920593, 34.757269424445205], [-77.41739018061445, 34.757438122455746], [-77.41740429261043, 34.75745951810586], [-77.4175057482258, 34.75761312324658], [-77.41756123840894, 34.75767021944104], [-77.41767236897176, 34.75764112660453], [-77.41772967347923, 34.75753907146725], [-77.41775441731193, 34.75735790062859], [-77.41776099089647, 34.757283526728294], [-77.41775764913314, 34.757269307801074], [-77.41774766842258, 34.757226840767714], [-77.41766544637007, 34.756876995713036], [-77.41761449318481, 34.75666019131375], [-77.4176947201617, 34.756392373782184], [-77.41811891821868, 34.7557952030256], [-77.41815020356154, 34.75572926047061], [-77.41819579358985, 34.7557151039556], [-77.41823590775297, 34.755695788036206], [-77.4188057709404, 34.75539930170567], [-77.41844848004057, 34.75496196518005], [-77.41781769405837, 34.7550539637331]], [[-77.37430968751504, 34.55928270095508], [-77.37435868868437, 34.55937379443913], [-77.37439492167292, 34.55936231131413], [-77.37445532543106, 34.55933721445133], [-77.3745767342575, 34.55919036283055], [-77.37460338304014, 34.55913229747708], [-77.37466806041243, 34.55909427723158], [-77.37457679607175, 34.559011894397685], [-77.37443405923817, 34.55912799829096]], [[-77.30897960959675, 34.55399727059322], [-77.30882626425168, 34.55387248740228], [-77.3089879976227, 34.5536401755908], [-77.30927092129679, 34.55380865258502]], [[-77.34816168386573, 34.625640878632375], [-77.34809745889388, 34.6259379877181], [-77.34821054639175, 34.62611860909607], [-77.34846991227151, 34.626348588910744], [-77.34865692719676, 34.62627675356759], [-77.34894563625082, 34.62637283080473], [-77.3489830067708, 34.626306610100194], [-77.34896552791236, 34.62601491670608], [-77.3488907813688, 34.625847776803155], [-77.34881403126805, 34.625667008976144], [-77.34857430816024, 34.6256466479655], [-77.34852995062231, 34.625645016100535], [-77.34824501945467, 34.62564572497825]], [[-77.3978162838736, 34.592363863327485], [-77.3979752633083, 34.592499776151065], [-77.39808649699586, 34.592521575863714], [-77.39821035265976, 34.59255942440351], [-77.39826354395144, 34.59257216806419], [-77.39853331883111, 34.59251394086988], [-77.39852442738682, 34.592379552888445], [-77.39848056282247, 34.59230705687214], [-77.39847106041897, 34.592281108750214], [-77.39840740392069, 34.592214423798644], [-77.39838711948791, 34.59220892982607], [-77.39835672827611, 34.59219145980779], [-77.39826257653041, 34.59214879434073], [-77.39821037069888, 34.59209724981403], [-77.3978627028321, 34.592212725698744], [-77.39781629753918, 34.59205216379485], [-77.39771113933918, 34.592171303889586], [-77.39776527670315, 34.592331740702456]], [[-77.36353761263709, 34.770737710758176], [-77.3635402262075, 34.77049971614302], [-77.36344884191016, 34.770147422073336], [-77.36342813272955, 34.76994191528115], [-77.3633694226048, 34.77011962824605], [-77.36336117257027, 34.77012800043979], [-77.36318944902887, 34.77056573596396], [-77.36318303703538, 34.770613622708616], [-77.36303077065848, 34.77068057681109], [-77.3630404719124, 34.7707077616484], [-77.36314711685435, 34.770870880838324], [-77.36315930713275, 34.770867551596], [-77.36323738903046, 34.77091225550727], [-77.36344403698143, 34.770986016133556], [-77.3634827515635, 34.77104547904793], [-77.36350396883185, 34.77096106674482]], [[-77.34477964866508, 34.68881304523873], [-77.34477885922313, 34.68880796830061], [-77.34478201766697, 34.68878296092693], [-77.34477314053046, 34.6888087531358], [-77.34477349892603, 34.688809390246455], [-77.34477319596431, 34.688813335569584]], [[-77.37880990829446, 34.527325374930925], [-77.37896814509308, 34.527555894979876], [-77.3785014054838, 34.52755898456126], [-77.37845124351827, 34.527452774402924], [-77.37850403826707, 34.527330125930334]], [[-77.45408461023496, 34.67692676497384], [-77.4541148613941, 34.67706276235128], [-77.45404245330855, 34.67725032715392], [-77.4544402880624, 34.67717651086186], [-77.45423681423655, 34.677012829816896], [-77.45419574672023, 34.67689508708605], [-77.45410407548151, 34.676815439082496]], [[-77.42569271019183, 34.62593817772107], [-77.42570261910505, 34.62593896319422], [-77.4257084798515, 34.625941601759706], [-77.42571096009557, 34.6259358286542], [-77.42571052793198, 34.625933101068334], [-77.4257116118754, 34.62592797512666], [-77.42552533458633, 34.625616633609766], [-77.42577346833266, 34.62533824478108], [-77.42584666280493, 34.62515584830447], [-77.42591239566718, 34.62507714605667], [-77.4259667283768, 34.624963565780675], [-77.426124026298, 34.624967023226645], [-77.42629742884166, 34.62490219946996], [-77.42645919100569, 34.62484172700017], [-77.42652148556651, 34.62477895510709], [-77.42661837774895, 34.62470481916128], [-77.42666485105966, 34.62463250227742], [-77.42674691256443, 34.62453010655528], [-77.42662411321228, 34.62448358616359], [-77.42647185551445, 34.62454200861309], [-77.42638713403015, 34.624578322431475], [-77.42602662951802, 34.6246290030885], [-77.42588355601049, 34.62465952201316], [-77.42533450686044, 34.624565113073125], [-77.42533199208059, 34.624565303711584], [-77.4253300062108, 34.624566149918955], [-77.42482610127402, 34.62463804749843], [-77.42478243070843, 34.6249913129587], [-77.42474261852463, 34.625101182175314], [-77.42464004589317, 34.625251202021516], [-77.42451788043306, 34.62543344163941], [-77.42445218835138, 34.6254951719413], [-77.42433541135775, 34.62558643186024], [-77.42409078523258, 34.625794271252104], [-77.42391195572718, 34.625925518660075], [-77.42387043117427, 34.625949807465744], [-77.4237905797354, 34.62599008454589], [-77.42363148526668, 34.62603737587546], [-77.42346260802834, 34.62620432901383], [-77.42337719718388, 34.62635778131357], [-77.42325391206779, 34.62657927798518], [-77.42321836406383, 34.62664314373421], [-77.42327772259254, 34.62666632764796], [-77.42353036539518, 34.62655425460686], [-77.42368169105748, 34.62646437861633], [-77.42374982295732, 34.62647000444082], [-77.42379617564721, 34.6264402618493], [-77.42404711460887, 34.626282569806804], [-77.42420418977888, 34.626208857338185], [-77.42442513615309, 34.62610517039636], [-77.42467017101782, 34.625990178817304], [-77.42494522889967, 34.625950342271835], [-77.42518163147616, 34.62593776402734]], [[-77.37011170846668, 34.59414004004084], [-77.36983628542643, 34.593357621258], [-77.3695342949128, 34.59422320085706], [-77.36983589373585, 34.594393143536394]], [[-77.33482942562709, 34.65623712370211], [-77.33483815508062, 34.65622803661774], [-77.33496203364803, 34.65602103866897], [-77.33496120231828, 34.65596557136157], [-77.33493596345987, 34.65599670089392], [-77.33482702871865, 34.6562251941355], [-77.33459532409918, 34.65626135110305]], [[-77.43817158979213, 34.74123422367338], [-77.43814289034215, 34.74147138807091], [-77.4381082559885, 34.741504614652], [-77.43809179132394, 34.74159329321062], [-77.438024256479, 34.741615223450935], [-77.43795160305953, 34.741622588953796], [-77.43793833405746, 34.741614716221406], [-77.437919019926, 34.74156937105677], [-77.43792492100775, 34.74153499192022], [-77.43794236958045, 34.74150143140406], [-77.43801752346198, 34.7414275873117], [-77.438114092992, 34.74120658662675], [-77.43813615707938, 34.74117635169548], [-77.43818442253557, 34.74117724527996], [-77.43818144495636, 34.74120534226723]], [[-77.34872149900711, 34.65618697302761], [-77.34868211397803, 34.65635893371427], [-77.34884476593601, 34.65630201650315], [-77.34892454599019, 34.656270246359], [-77.34900991827655, 34.65628404643337], [-77.34916227207975, 34.65626475146833], [-77.3490950508605, 34.656115479915286], [-77.34902963770404, 34.65614096616784], [-77.34890465825039, 34.656171349378454], [-77.34877302635776, 34.65617892471553]], [[-77.39939250973646, 34.59572600063083], [-77.39953182158082, 34.59563080356189], [-77.39939251499119, 34.59549183938287], [-77.39937439760729, 34.59546074810011], [-77.39931035738192, 34.59545046772627], [-77.39930679459368, 34.59535862743927], [-77.399218401489, 34.59522674875005], [-77.39919547717079, 34.59518589634868], [-77.39915331216919, 34.595215412076385], [-77.39915195194206, 34.5953079227047], [-77.39914938676341, 34.59547369097103], [-77.3991289430883, 34.59561725828695], [-77.3991212140585, 34.595770033330446], [-77.39925448856674, 34.595734405046045]], [[-77.22261972412453, 34.61260133262218], [-77.22259467577834, 34.61246422513294], [-77.22256840763562, 34.61232044345765], [-77.22293306231042, 34.612128173741525], [-77.22295186595161, 34.612124508622124], [-77.22323767818028, 34.61218652138418], [-77.2231184611912, 34.61227273138125], [-77.22311108691802, 34.61236328867535], [-77.22312922653644, 34.61241076450887], [-77.223107990794, 34.612427794270985], [-77.22300797473308, 34.612472988500286], [-77.22298808363503, 34.61248548969543], [-77.22272433266632, 34.61256843525395], [-77.22271610602719, 34.612572264437226], [-77.22263924309988, 34.612708171420664]], [[-77.45070193095489, 34.61229540263294], [-77.45084563922396, 34.61213022839879], [-77.45085298971865, 34.612119619554214], [-77.45080967370163, 34.61199887900683], [-77.45075286595967, 34.61209062881474], [-77.45055794166775, 34.612039543355415], [-77.45036312190467, 34.612259325518], [-77.45036022679062, 34.612262947408084], [-77.45035846175843, 34.61227104099811], [-77.45026643034197, 34.612471529879116], [-77.45042927217202, 34.61252965026019], [-77.45063659420819, 34.61236596327199], [-77.4506433735358, 34.612362016942654], [-77.45064553284892, 34.61235943629029]], [[-77.33289450899765, 34.570625642887315], [-77.33310235932206, 34.570281790844035], [-77.33281097892805, 34.57028485359304], [-77.33267466360965, 34.570510560672844], [-77.33263647965433, 34.57066273189082], [-77.3325266858509, 34.57079717689389], [-77.33254371615524, 34.57096343927731], [-77.33266895217298, 34.570930146693684], [-77.33281058225722, 34.570757724150916], [-77.33286666788055, 34.57069001846919]], [[-77.44184753330842, 34.68602423854533], [-77.44180128999162, 34.68609895480968], [-77.44197501160394, 34.68613978183584], [-77.44198093096423, 34.686070876082006], [-77.4419851113883, 34.6860222127586], [-77.44199258707414, 34.68593519258893], [-77.44197279008364, 34.68586614222538], [-77.44196355104793, 34.68580800942432], [-77.44186385735554, 34.68577119714984], [-77.4418116029565, 34.685869570881756], [-77.44181076714077, 34.68587134406388], [-77.4418103236418, 34.685871979307294]], [[-77.38949711371002, 34.51132105160367], [-77.38941515810781, 34.51142632904711], [-77.38925102034068, 34.5114742599802], [-77.38912067508782, 34.51146881996962], [-77.38904487175516, 34.511365075004946], [-77.38899005082374, 34.511074390987744], [-77.38951765936774, 34.51100692368138]], [[-77.37343294849923, 34.67853584155246], [-77.37319804996602, 34.67851907271847], [-77.3731387369825, 34.67857629319997], [-77.37312990798135, 34.67875401147487]], [[-77.36474032733396, 34.682254775240494], [-77.36492410523172, 34.68236656787727], [-77.36509759196946, 34.682571446673954], [-77.3645687110804, 34.68264016987596]], [[-77.34248224908256, 34.538363455054885], [-77.34249799404958, 34.53826172890901], [-77.34252403960727, 34.53814725955302], [-77.34266338809982, 34.53823793491568], [-77.34268138976677, 34.53825802956226], [-77.34271596044312, 34.53833613748833], [-77.34277349762424, 34.538466913103576], [-77.34278840214793, 34.53865975007833], [-77.34280485561408, 34.53870722061309], [-77.34276005001279, 34.53874708047258], [-77.34274791558403, 34.53896023139653], [-77.34273974467905, 34.53898559233262], [-77.34269929349156, 34.539057899564696], [-77.34268125059553, 34.53898216482686], [-77.34268795233798, 34.53896885791407], [-77.34265611596676, 34.53894488344833], [-77.34265428819111, 34.53876122124123], [-77.34266670718203, 34.538727095301724], [-77.34246386023193, 34.538663955997926], [-77.34247240364417, 34.53860705892828], [-77.3424722436413, 34.538510252286784], [-77.34248250423481, 34.5384085070798], [-77.34247549941892, 34.53838737445904]], [[-77.34393330114503, 34.53906979400088], [-77.34413599127772, 34.53908821732359], [-77.34416446121264, 34.539182314657616], [-77.34406532405873, 34.53926033637535], [-77.3441893546628, 34.539442825501695], [-77.34421848639485, 34.53948311976904], [-77.34424556485357, 34.53948800483314], [-77.34425734536131, 34.539587680462844], [-77.34428152955766, 34.53971886888762], [-77.34427195212356, 34.53973142440987], [-77.34425194116963, 34.53982190124172], [-77.34419402804892, 34.53994188768411], [-77.34417565048673, 34.53997892151543], [-77.34420767984376, 34.53999936245518], [-77.34424507496755, 34.540119486925406], [-77.34428455291297, 34.54020807273391], [-77.3442421618619, 34.54024574298228], [-77.34395346498957, 34.54032157913459], [-77.34373126736364, 34.540359820252455], [-77.3434543384695, 34.54036161691913], [-77.34342966485312, 34.54034666826777], [-77.3434296940537, 34.54033106183379], [-77.3433327464919, 34.54017865143156], [-77.34325856843556, 34.5401108617872], [-77.34327702044608, 34.53999231077268], [-77.34346971127037, 34.539695620966974], [-77.34353227216175, 34.53961976944352], [-77.34354790591064, 34.53957959732319], [-77.34359617229083, 34.53949665220713], [-77.34375850727139, 34.539233104180006], [-77.34387577790767, 34.53911086887255]], [[-77.3453989941993, 34.53065078135075], [-77.34533232215564, 34.53056025684887], [-77.34550828086671, 34.53056808293544], [-77.34563332170929, 34.530706784997804], [-77.34563682077174, 34.53071035253163], [-77.3456329914488, 34.530715061527815], [-77.34555662291761, 34.53091784033238], [-77.34541986276916, 34.53087633817881], [-77.34539540920386, 34.53083936095164], [-77.34536254481792, 34.53074981980146]], [[-77.3706652651392, 34.516562492482365], [-77.37041157454783, 34.516303422514504], [-77.37021401011462, 34.516342901426356], [-77.36996326071909, 34.51664288586982]], [[-77.44183242787173, 34.68441140930912], [-77.44181654120337, 34.684476056259655], [-77.44175590465682, 34.684473255696076], [-77.44173808226397, 34.68456291356268], [-77.44175954940113, 34.68459588959505], [-77.4417409631831, 34.68463575252859], [-77.4417486043576, 34.68478172487628], [-77.44192207165129, 34.68493175836874], [-77.44189911250125, 34.6847188896136], [-77.44191167408167, 34.68464907549685], [-77.4419093149902, 34.68453707494098], [-77.44191542061779, 34.68448887683093]], [[-77.33289133786728, 34.5345633502086], [-77.33312966408164, 34.53455534672714], [-77.33327044809778, 34.534276555915355], [-77.33289298339426, 34.53444010284885]], [[-77.30312425884208, 34.55395649440241], [-77.30309057080015, 34.5539677398803], [-77.3028921997558, 34.55411305932957], [-77.30288281732867, 34.554118458016106], [-77.30286114912185, 34.554097933866736], [-77.3029302727252, 34.553984332990865], [-77.30309535341502, 34.55376474430086]], [[-77.42419067805474, 34.52525628726964], [-77.4241622274546, 34.52532306139269], [-77.42433943296935, 34.525282102029635], [-77.42434921565979, 34.52523336772507], [-77.42441096109013, 34.52513453582369], [-77.42435348305705, 34.525110329000924], [-77.42444231758923, 34.525083831409134], [-77.4244545197508, 34.52498076520615], [-77.42430760770287, 34.52501836622684], [-77.42426781051257, 34.525090828083286], [-77.42424689009451, 34.52512573904825], [-77.42420845375501, 34.52521844998983]], [[-77.35210526318222, 34.729773836878294], [-77.35211839652936, 34.72971534159574], [-77.3520662708303, 34.729712125031305], [-77.35205375200873, 34.72971135250637], [-77.3520313707218, 34.72970836506522], [-77.35190261633787, 34.72971624369682], [-77.35185479449603, 34.72975152158966], [-77.35188514051261, 34.729776410844174], [-77.35201953067435, 34.729748080380254], [-77.35204277726488, 34.72974913745426]], [[-77.43831673466713, 34.74371427625203], [-77.43837048866126, 34.743742464427605], [-77.43837462487018, 34.74377632705114], [-77.43838130832042, 34.74379081131326], [-77.43838323730589, 34.74382289055364], [-77.43835054627836, 34.74381137603801], [-77.43833037164055, 34.743794788960855], [-77.43831072069784, 34.743766150226996]], [[-77.42434610616657, 34.74335880973688], [-77.42434985075958, 34.743376819445274], [-77.42435256814817, 34.74343358883166], [-77.42436241667662, 34.74359476758784], [-77.42436264601176, 34.74364412456158], [-77.42441486130369, 34.74377209488994], [-77.42442455733939, 34.74379204093333], [-77.42455084912363, 34.7438474955249], [-77.42455369973388, 34.743846259827315], [-77.4246322426454, 34.74379350759841], [-77.4246691353639, 34.74375124292153], [-77.42468885615811, 34.7436818159491], [-77.42467281275353, 34.74347299464566], [-77.42466865660741, 34.743449262448344], [-77.42443872531871, 34.74333975456622], [-77.42443868701008, 34.74313618323045], [-77.42434598320713, 34.74332581835275]], [[-77.39624138545415, 34.62285349222563], [-77.3962476926376, 34.622862585458996], [-77.39631989727835, 34.62296668486266], [-77.3963781116849, 34.62304606046959], [-77.39643550523334, 34.623129717265414], [-77.39657472004484, 34.62301770708153], [-77.39657732679142, 34.62295777829413], [-77.39649204062711, 34.62275647185723], [-77.3964355199962, 34.622742026153404], [-77.39637074931565, 34.62269231016153], [-77.39629666216118, 34.622633234950875], [-77.39626108907268, 34.62261394512875], [-77.39623841573135, 34.622595384707125], [-77.39616336658368, 34.62265245756069], [-77.39620420944034, 34.622683403566185], [-77.39623840584267, 34.622838786389096], [-77.39624413685415, 34.62284692284469]], [[-77.39657651957266, 34.53065651676729], [-77.39655970337282, 34.53054143067152], [-77.39641601501022, 34.530578472650014], [-77.39639008333418, 34.530669914301576]], [[-77.42100208603532, 34.56860598012398], [-77.42106128847807, 34.56864572182975], [-77.42113209484734, 34.56865938536259], [-77.42118089195463, 34.56864525086163], [-77.4212582584398, 34.56860057803215], [-77.42139234616594, 34.56848579651976], [-77.42137121041347, 34.56839833852219], [-77.42135658136289, 34.5681726028248], [-77.4211337448236, 34.568176775482975], [-77.42106118768464, 34.56818230453403], [-77.4209438797767, 34.568338302203685], [-77.42092952383211, 34.56841071602828], [-77.42093211074533, 34.56855229525652]], [[-77.43570033580355, 34.620760047677564], [-77.43543971246598, 34.6205758647366], [-77.43537186457694, 34.620521586212874], [-77.43528329725092, 34.62043582630676], [-77.43523278442304, 34.620396409918044], [-77.43519117903386, 34.620462082381174], [-77.43511155915158, 34.62055398023156], [-77.43512569573632, 34.62059390950725], [-77.43517424318003, 34.62065153060841], [-77.43523440697231, 34.62068958643762], [-77.43532521954614, 34.62073418938475]], [[-77.44239570610274, 34.61775263520866], [-77.44249861307955, 34.61764050958743], [-77.44236523759581, 34.61764132780563], [-77.44233223925755, 34.617687942797644]], [[-77.33947186661248, 34.76198497292511], [-77.33950624081032, 34.76203647343159], [-77.33952326271526, 34.76203050389738], [-77.33953639056946, 34.76201329447914]], [[-77.44179533475058, 34.685167436215615], [-77.4418000843841, 34.685206641102354], [-77.44181279032881, 34.685311514876304], [-77.4419169009205, 34.6852971404653], [-77.4419077694375, 34.68520674534497], [-77.4419077445031, 34.685161694514896], [-77.44192210968663, 34.6849334894003], [-77.44178491366445, 34.68508142030737]], [[-77.44192688987935, 34.68560011044107], [-77.44184138808794, 34.685547556619014], [-77.441850094443, 34.685632171331044], [-77.4418600886771, 34.685701908815346], [-77.44195319253299, 34.685730288639974]], [[-77.45594486504461, 34.59811159228759], [-77.45594358826449, 34.59811080107492], [-77.45569674757002, 34.59795783556601], [-77.45553764982745, 34.59785924303821], [-77.45544616367036, 34.59780709597476], [-77.45533825570996, 34.5978197881992], [-77.45524405416276, 34.59782567607563], [-77.45519185859256, 34.59784935839063], [-77.45511913648541, 34.597978452558465], [-77.4551190195926, 34.597978668389224], [-77.45511902473964, 34.5979787195485], [-77.45511899798694, 34.59797889544528], [-77.45510475524866, 34.59812857303373], [-77.45507633417859, 34.59825940385463], [-77.4552254169342, 34.59831757894763], [-77.45551099378801, 34.59845063985907], [-77.45593595105568, 34.59812249433942], [-77.45594949530143, 34.598114461593774]], [[-77.44525459809259, 34.74654429273699], [-77.44542261646237, 34.74653003147259], [-77.44529206073824, 34.74641480316636], [-77.44510145844848, 34.74641785525574]], [[-77.39647527040276, 34.53160053609599], [-77.39653458698572, 34.53152627186178], [-77.39637266112733, 34.531550643640074], [-77.39640777966564, 34.531622324760846]], [[-77.39584421061772, 34.622272413058774], [-77.39583348539364, 34.622263906785534], [-77.39584100704556, 34.62227437356127], [-77.39584421042949, 34.62227653938589], [-77.39584548292368, 34.62227372810659]], [[-77.44157492422258, 34.73820816518561], [-77.44156687298167, 34.73819540556882], [-77.44145176702227, 34.73802840313387], [-77.44146362755613, 34.738013089742125], [-77.44150176534006, 34.73800754150345], [-77.44158313069438, 34.73817980188759], [-77.44158711434368, 34.73820247714625]], [[-77.3567373148972, 34.57047768347901], [-77.3566157750455, 34.57060992843668], [-77.35646344500144, 34.570646636772224], [-77.35644969210912, 34.570710462918846], [-77.35642286144217, 34.570666635169], [-77.35640547289978, 34.570640199379625], [-77.35636334094798, 34.57055311819574], [-77.35630017065877, 34.570443080704266], [-77.35644992481171, 34.57029149502489], [-77.35658519047264, 34.57033556727916], [-77.35665986106633, 34.57037730505588]], [[-77.43595880447945, 34.621128140194855], [-77.43594940157783, 34.62098445279665], [-77.43590498270635, 34.620931470005736], [-77.43588998938057, 34.62100138709353]], [[-77.3832362305726, 34.58860026732008], [-77.38323063546761, 34.58864103324096], [-77.38323096479355, 34.58864664809582], [-77.38321936726149, 34.58874879879045], [-77.38323619147744, 34.58877694731934], [-77.38326745339799, 34.58881431813106], [-77.38330729909636, 34.58881274430274], [-77.38332361829319, 34.58874572619914], [-77.38330590244153, 34.58873632531489], [-77.38327544066544, 34.58867683835212], [-77.38325066018231, 34.588638146805415]], [[-77.33290910122176, 34.57752842266379], [-77.33291198484505, 34.57751268327031], [-77.33289690042417, 34.57751702022025], [-77.33280491690489, 34.57753228943988], [-77.33278974083713, 34.57753946245819], [-77.33280490933348, 34.577541368533176], [-77.33289805540696, 34.577529678521124]], [[-77.43561372913007, 34.62178845150967], [-77.43559997711871, 34.62182253435242], [-77.43558496803253, 34.621860942254116], [-77.43556711532503, 34.62192421146146], [-77.43561025941855, 34.6219673971996], [-77.43562937689194, 34.62199877601119], [-77.43563655883358, 34.62202643336931], [-77.43568311191089, 34.62204198294541], [-77.43569236066342, 34.6219961313471], [-77.43569727276375, 34.62197942396772], [-77.43571116726869, 34.62193524789987], [-77.43572668829333, 34.621878729086916], [-77.43568034163475, 34.621837065597], [-77.4356738446599, 34.621801480175996]], [[-77.3332644341844, 34.53116765034442], [-77.3333600278605, 34.53125222171173], [-77.33326147576244, 34.53129512280123], [-77.33323196099425, 34.53127063680331]], [[-77.34092309807389, 34.626018034581875], [-77.34086694357751, 34.62607196514435], [-77.34095900544413, 34.6261967659968], [-77.34097756518841, 34.62605677900585]], [[-77.34386595441946, 34.629247214744545], [-77.34397482001992, 34.62925860315997], [-77.34400420585942, 34.62922823258337], [-77.34406986817584, 34.62915972338728], [-77.34409113168121, 34.62904097416409], [-77.34410626528737, 34.62900322001892], [-77.3440782880933, 34.62897705959161], [-77.34400477220248, 34.62901715531514], [-77.34394830650466, 34.62904621938367], [-77.34394521178878, 34.62911126053126]], [[-77.37770767765869, 34.631530231078486], [-77.3779046084075, 34.631440264594644], [-77.37770770877393, 34.63140910148405], [-77.37765039711535, 34.63132633997199], [-77.37754461530005, 34.63131646741228], [-77.37751059343867, 34.63134259408964], [-77.37748914499497, 34.631393968915255], [-77.37751057150038, 34.63142719801641], [-77.37755572769738, 34.63144188834991], [-77.37763070467909, 34.63147971869402]], [[-77.34266593425423, 34.53911442484095], [-77.34262765590009, 34.5391794258356], [-77.34259180254934, 34.539170512730635], [-77.34259140480201, 34.539161779508035]], [[-77.32150690982634, 34.64345727555698], [-77.32146406115645, 34.643365001674205], [-77.32143997927852, 34.64339476525423], [-77.32144388736062, 34.643404921366006]], [[-77.3751101501437, 34.55860600641737], [-77.37516777742606, 34.55872823750218], [-77.37522555251519, 34.55865161642691], [-77.37518739349971, 34.558594874726815], [-77.37516782989664, 34.5585737055552]], [[-77.36365125021479, 34.59010374616476], [-77.36364043426711, 34.5900731005914], [-77.36362884056203, 34.59008281926818], [-77.3636279181856, 34.59008837935663]], [[-77.34267693257584, 34.527278320967746], [-77.3426757300136, 34.52721930331669], [-77.34267834136257, 34.52721732745187], [-77.34269071411465, 34.52721714744677]]]]}, "type": "Feature", "id": "demo9", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19415315749714, 34.64765832343758], [-77.19436568185941, 34.6476825879539], [-77.19449881438611, 34.64772490810792], [-77.19526628858908, 34.647871982927434], [-77.20048712386406, 34.64892389118626], [-77.20230841254785, 34.649652837064764], [-77.20355047897954, 34.65021994739885], [-77.20413293251328, 34.650458755606365], [-77.20612335101106, 34.651122226886166], [-77.20774491978939, 34.65159111202921], [-77.21174739417134, 34.65278830433852], [-77.21202955285221, 34.652788307035216], [-77.21240464412014, 34.652788300925884], [-77.21363020580472, 34.653094584529725], [-77.21824460449486, 34.65384519564731], [-77.22064335481151, 34.655439522972664], [-77.22116703849758, 34.653689515223746], [-77.22300204450099, 34.6522769501663], [-77.22278798213121, 34.65193201515613], [-77.22285048285298, 34.651822275469364], [-77.22276903743209, 34.65157792809977], [-77.22218001886873, 34.64999860578518], [-77.22197104209911, 34.64921219205378], [-77.22075799968462, 34.64888627187387], [-77.22014407024739, 34.648425829187055], [-77.21943876792588, 34.64789683907007], [-77.21911343206625, 34.64734171125109], [-77.21822744583906, 34.64591574713975], [-77.21707321521681, 34.64516562818895], [-77.21608179973467, 34.64479421259827], [-77.21552328959608, 34.643816825209676], [-77.21504747122309, 34.64298415783976], [-77.21456883723823, 34.64214651954458], [-77.2143949851133, 34.64184227156524], [-77.21439071135173, 34.6417602912183], [-77.21438169615043, 34.64148975374804], [-77.21434778807885, 34.64030694300145], [-77.21433774093087, 34.63931068466408], [-77.21839369405147, 34.638794355131886], [-77.21914308835272, 34.63875399820001], [-77.22024530107669, 34.639305108275934], [-77.22026105267042, 34.638534514928935], [-77.21979626934083, 34.63826994476541], [-77.22161759013477, 34.63487071331967], [-77.22153535776678, 34.63468085907367], [-77.22359492994609, 34.63176429839439], [-77.22437671966043, 34.631317568588955], [-77.2265986517688, 34.629848420606805], [-77.2296499703405, 34.627962722366085], [-77.2304914332546, 34.6273787070522], [-77.23255924512043, 34.62559425588084], [-77.23463576329372, 34.624585040189565], [-77.23769614955725, 34.62326745366923], [-77.2409843895848, 34.621314600436115], [-77.24124550484878, 34.621164879320396], [-77.24175570897118, 34.62075908703993], [-77.24434937586092, 34.61866610418277], [-77.24495645571989, 34.617856692089184], [-77.24549166573536, 34.616902303318284], [-77.24588933619908, 34.6160448004684], [-77.24596706997812, 34.614845908017834], [-77.2467925840569, 34.61423052692949], [-77.25018069581319, 34.61333424170995], [-77.25298006675376, 34.61191483940579], [-77.25375877580609, 34.61125747465853], [-77.25411455361245, 34.61103619670362], [-77.25400812081513, 34.6107755306786], [-77.25480695682576, 34.60920533042575], [-77.25560351971376, 34.60763952852649], [-77.2569646746592, 34.607489716642675], [-77.2569086752643, 34.60675041238126], [-77.25747651346548, 34.60564465047513], [-77.25856468376324, 34.60501440973235], [-77.25991303023703, 34.60488056848066], [-77.26128669456375, 34.604805696539636], [-77.26186828634857, 34.60434920536878], [-77.26201857019561, 34.6048372010177], [-77.2629176534528, 34.60560813534343], [-77.26332031559683, 34.60610426515395], [-77.26435017605685, 34.60690343456918], [-77.26532538634103, 34.60751545237979], [-77.26604900544899, 34.607736972439795], [-77.26648598916881, 34.60823846279], [-77.26660902823532, 34.608311506607215], [-77.26672059834688, 34.608256902220276], [-77.26749078533612, 34.60769262278476], [-77.26864129509319, 34.606766190204425], [-77.26868697780166, 34.60652609827643], [-77.26937360900521, 34.60618032839395], [-77.2702430482679, 34.605484750864534], [-77.2705865325633, 34.60520994805869], [-77.27145023087554, 34.60207525881468], [-77.27168366075955, 34.60121761545184], [-77.27174401544372, 34.60111032195367], [-77.27178150808477, 34.60099217751849], [-77.27298811861709, 34.597789560382374], [-77.27315755356784, 34.597450722751425], [-77.27332804121832, 34.59710976452784], [-77.27521490503842, 34.59401595513215], [-77.2744532884824, 34.5937818510597], [-77.27504575406783, 34.59337964260534], [-77.27588498392583, 34.59330730326859], [-77.27912496612915, 34.59182751205006], [-77.28017377586457, 34.591149903153294], [-77.28173145929745, 34.59091698433103], [-77.28328934265039, 34.590380791787084], [-77.28503997861522, 34.58988809864595], [-77.2873633570309, 34.588950207028184], [-77.28743905728307, 34.5889203842586], [-77.28771490081641, 34.588254813064644], [-77.2890158607232, 34.585284638086435], [-77.28890842146133, 34.58495313405212], [-77.2870182825101, 34.58045994301182], [-77.28568390304076, 34.58031614220101], [-77.28501252737036, 34.57984139522097], [-77.28425077356732, 34.5795482845711], [-77.28384350090279, 34.57924104213064], [-77.28323043489533, 34.57878043823306], [-77.28281150435528, 34.57841308948953], [-77.28237636512259, 34.57810487296216], [-77.28198707578495, 34.57790551113256], [-77.28169499435367, 34.57762533143998], [-77.28138536853663, 34.577428559671084], [-77.2812795221568, 34.577350163864516], [-77.28103669414688, 34.57713714321013], [-77.28093649997265, 34.57664930956264], [-77.28076763129691, 34.576503090628336], [-77.28075501497665, 34.5763663250035], [-77.28125228587214, 34.575586582851905], [-77.28111873974184, 34.57545223164233], [-77.28125222650137, 34.575241152992575], [-77.28144109283366, 34.57478094406689], [-77.28116862844962, 34.574513494948036], [-77.28110744994751, 34.57417109154985], [-77.2814996291005, 34.57359683241061], [-77.28192682025855, 34.57321253125816], [-77.28230271740074, 34.572717236804166], [-77.28280953085788, 34.57206343411374], [-77.28292423008973, 34.571823382412134], [-77.28307983571209, 34.57160932280116], [-77.28353941877258, 34.571500559125596], [-77.28520439310671, 34.57116585286624], [-77.28555728257089, 34.57118371555242], [-77.2868997530354, 34.57152178846704], [-77.28720047891825, 34.5713370438796], [-77.28770570995515, 34.57123694780516], [-77.28790588559065, 34.57108951136695], [-77.28776125277255, 34.57096398066653], [-77.28766173133381, 34.571017132983684], [-77.28713233062228, 34.571061660439405], [-77.28648068367187, 34.57068748071057], [-77.28648192792257, 34.57068111688368], [-77.2864607359611, 34.570215694111724], [-77.28673310175955, 34.56985796791319], [-77.28685927190614, 34.56977564937363], [-77.28691201988474, 34.56975991259514], [-77.28699856853851, 34.56965899601668], [-77.2874386731021, 34.56934979710576], [-77.28771462287776, 34.56915936320043], [-77.28787640926122, 34.56869451212379], [-77.28769684079074, 34.56842740932777], [-77.28786110004559, 34.567975465577945], [-77.28815226510147, 34.56752050339012], [-77.28785583533373, 34.56723241947432], [-77.28793733779764, 34.56672912754321], [-77.28820729440434, 34.56658217836487], [-77.28857815192202, 34.566533793202865], [-77.28878766533872, 34.566515665789666], [-77.28873550009452, 34.56662362848177], [-77.28877932584413, 34.56688624330748], [-77.28910764620568, 34.56715350632099], [-77.28936483433131, 34.56751398755141], [-77.28956170675863, 34.56772483703398], [-77.28988711175268, 34.56790453358771], [-77.29082497031594, 34.56805077774489], [-77.29090150990979, 34.56802709603323], [-77.29096375972846, 34.56806756119519], [-77.29213290928621, 34.56778759249534], [-77.29284939782107, 34.567880798753876], [-77.29333280359332, 34.56796668645957], [-77.29347982649335, 34.56812532446191], [-77.29402165997126, 34.56837040999347], [-77.29498982041076, 34.568945944288274], [-77.29525370754625, 34.56895336813874], [-77.29537407702915, 34.569220453891504], [-77.295197096972, 34.56946990636648], [-77.29517660944985, 34.57021095814585], [-77.29504777197351, 34.57095553701478], [-77.29543331128622, 34.57149341569726], [-77.29591842214779, 34.572024410842914], [-77.29703247443808, 34.57309076826612], [-77.29751360674639, 34.5734550706643], [-77.29807969481871, 34.57391606861903], [-77.29891429041842, 34.57527069702414], [-77.30039419918184, 34.574330686044284], [-77.30165651424777, 34.57132119323055], [-77.30225310251855, 34.56993171305055], [-77.30193885681061, 34.56897403455138], [-77.3028693266871, 34.569107820141156], [-77.30326296707027, 34.569362327465385], [-77.30423494255416, 34.56964733346348], [-77.30601997079539, 34.57017074401669], [-77.30813654975202, 34.570202894323714], [-77.30917182993952, 34.570220119622185], [-77.30993314465988, 34.56964913018453], [-77.31128469796595, 34.568635484885725], [-77.3119510127552, 34.56813576577997], [-77.31232907986053, 34.56530177819004], [-77.31238061778939, 34.565137272154296], [-77.31252068973927, 34.56506181768002], [-77.31322874019341, 34.56399218093951], [-77.31536000858304, 34.56125788726172], [-77.31537889744826, 34.56118822820419], [-77.31550270998582, 34.560486352189415], [-77.31572095864227, 34.55924756789465], [-77.31573286755923, 34.559122272885396], [-77.31591125665054, 34.55747248133754], [-77.3159575607996, 34.55725510485186], [-77.31585374928616, 34.55710056744846], [-77.31616734773316, 34.55660344592887], [-77.31638173107015, 34.55648339951667], [-77.3171688503455, 34.556106273689835], [-77.31717587024235, 34.55610617157316], [-77.31717752648684, 34.55610161861833], [-77.31717952499694, 34.55610036533632], [-77.31718119974344, 34.55609693664621], [-77.31749648091085, 34.55556521906913], [-77.31719062954343, 34.55547517733104], [-77.31683611537915, 34.5553926773735], [-77.316359427973, 34.55523890361059], [-77.31601674367353, 34.55504701771768], [-77.31563828189194, 34.55469493527866], [-77.31506481155401, 34.554801580482724], [-77.31504515998351, 34.554448409578896], [-77.3149251583763, 34.55394201066542], [-77.31514812393942, 34.55345438135621], [-77.31494744370994, 34.55302814085298], [-77.31497216161178, 34.552941330205286], [-77.31538058449375, 34.552441755681755], [-77.31524464898645, 34.55217912710846], [-77.31569824396178, 34.55213351458603], [-77.31627085028742, 34.55195941564523], [-77.31648955945825, 34.55187538355788], [-77.31667929273692, 34.55188403963268], [-77.31727947731372, 34.55167677952441], [-77.31786569438744, 34.551468053943296], [-77.31779762342067, 34.55111536358068], [-77.31808408729347, 34.5508496391015], [-77.31881027589158, 34.550934305912186], [-77.31855030717568, 34.5502358744247], [-77.31863055631356, 34.55001647361615], [-77.31889393646777, 34.54979765966229], [-77.3189739447337, 34.54991554278934], [-77.31897214264444, 34.54996740701821], [-77.31900385275507, 34.55003484343977], [-77.31888110871205, 34.55095092209498], [-77.31889987662836, 34.55095703447573], [-77.31887798508546, 34.55096727820457], [-77.31886567456849, 34.55100685516457], [-77.3182592496498, 34.551659703753366], [-77.31803400931781, 34.552060652848766], [-77.31824367821054, 34.55239808082356], [-77.31815539325008, 34.55253284253485], [-77.31833874909074, 34.552692147881075], [-77.31866177992441, 34.55294972783249], [-77.31870523163447, 34.55301426880466], [-77.31881701964572, 34.55308859480383], [-77.31942657512758, 34.55343402488243], [-77.31959464052929, 34.55341653488156], [-77.32017354690817, 34.553585597272914], [-77.32037492600955, 34.553630622525134], [-77.32040948631119, 34.55365600105997], [-77.32042023042938, 34.553676375519224], [-77.3205140613966, 34.55375140467966], [-77.32093613919946, 34.55409188498175], [-77.32099628653863, 34.55417749110417], [-77.32165596820772, 34.554478096045145], [-77.32168975259054, 34.55461832623623], [-77.3219210611943, 34.55467791463771], [-77.32327948864908, 34.55509791583648], [-77.32348021265497, 34.55516856039765], [-77.32350417466557, 34.55517675195453], [-77.32361494305303, 34.55517589518263], [-77.32505052469948, 34.555180862766264], [-77.32553743113016, 34.55520356556177], [-77.32583499435023, 34.555216468391855], [-77.32605134176094, 34.55518105531308], [-77.32630677031527, 34.555278727027826], [-77.3266185569796, 34.555291050524175], [-77.32680182209756, 34.555207585358254], [-77.32705543416614, 34.554948935819006], [-77.32718586947311, 34.55466276582733], [-77.32742292475362, 34.55447153526991], [-77.3277129739851, 34.55458701336814], [-77.32783938319305, 34.55479413286854], [-77.32819901008075, 34.55486732099294], [-77.32836407509328, 34.55498306663313], [-77.32860007494939, 34.55518411973605], [-77.32873712236224, 34.55541908009815], [-77.32877717883783, 34.55553281740811], [-77.32896662561427, 34.555627711371926], [-77.32923308063106, 34.55567067090598], [-77.32927510897804, 34.55583138653433], [-77.32951174971458, 34.555942560465546], [-77.32973891082712, 34.556187769447384], [-77.32979748365275, 34.55620910687375], [-77.32986786931549, 34.556235818715066], [-77.32990906771367, 34.5563381668103], [-77.33025214331096, 34.55667021511549], [-77.3302687486081, 34.55681798006633], [-77.33047836529435, 34.55712732941155], [-77.33050190328382, 34.55714829127307], [-77.33078564806121, 34.55739234561545], [-77.33118205516699, 34.55751581154881], [-77.33121458752356, 34.55755059437339], [-77.3312058269367, 34.557963076101736], [-77.33113007759245, 34.5580129132683], [-77.33105348973352, 34.55815506906054], [-77.33068809206762, 34.558566073916595], [-77.3307765699503, 34.55874776843722], [-77.33095598307817, 34.55901719712455], [-77.33103867328224, 34.5592271998537], [-77.33109795503077, 34.56053816685097], [-77.33109728838325, 34.56069504067386], [-77.33100195152969, 34.5609685780163], [-77.33124286473674, 34.56119533738152], [-77.33185472478468, 34.56162454179145], [-77.33203021558163, 34.56181941424427], [-77.33257136045879, 34.561915488074256], [-77.33281804950278, 34.56188553743365], [-77.33310908083709, 34.56156827852202], [-77.33324737427205, 34.561621703641336], [-77.33360596142975, 34.56185939631267], [-77.33380493096777, 34.56200397935952], [-77.33427705833749, 34.562061788609554], [-77.33439369286086, 34.562050873331685], [-77.33476091555559, 34.5623196453446], [-77.33486969121384, 34.56236414854431], [-77.33518122730271, 34.56248782286957], [-77.33529976997838, 34.56251038646771], [-77.33541859507619, 34.56262107125986], [-77.33580921591646, 34.563242324003], [-77.33592513399637, 34.56339732660421], [-77.33593656342309, 34.56342995155215], [-77.33596820758791, 34.5636224217338], [-77.33608443445695, 34.56409784127288], [-77.33610624971152, 34.56422036839147], [-77.33611004914806, 34.564373327238684], [-77.33617803409751, 34.56483196433334], [-77.33619261778807, 34.565057033101894], [-77.33636072199015, 34.56541933402154], [-77.3363702716056, 34.565445718430155], [-77.33637816495263, 34.56545489718143], [-77.3364675702361, 34.56555730311016], [-77.33670230298745, 34.56583283459012], [-77.3367204296167, 34.565866757115124], [-77.33675413730145, 34.56610606659451], [-77.33683443183628, 34.56666291988907], [-77.33684337053482, 34.56675835115894], [-77.33687933986809, 34.567081004547624], [-77.3368520809004, 34.56719139671677], [-77.33675326976308, 34.56719835225222], [-77.33654225155368, 34.56732672791785], [-77.33635916052697, 34.567373377210764], [-77.33616295397056, 34.56739541483887], [-77.33596514144077, 34.5674340126924], [-77.33568884610162, 34.56737892381038], [-77.33548696296778, 34.56737198519794], [-77.33540774038428, 34.56729257930176], [-77.3351774342764, 34.56714555586732], [-77.33504613027009, 34.56706159190078], [-77.33486549549912, 34.56694599395402], [-77.33478367185634, 34.566892205167065], [-77.33459619613701, 34.56676230693141], [-77.33451231564095, 34.566704187422474], [-77.33438991509547, 34.566634849734186], [-77.33432880574783, 34.56659860801285], [-77.33412899913296, 34.566484089203264], [-77.33410033638182, 34.566419182030884], [-77.33399618600816, 34.56634694986041], [-77.33389115136546, 34.56635016631522], [-77.33378176425829, 34.56625270814048], [-77.33366540340879, 34.566201478650946], [-77.33360237917044, 34.566155738974416], [-77.33287039575363, 34.56553463810596], [-77.33284397373556, 34.56550720797611], [-77.33281504785572, 34.56544418723348], [-77.3324967617708, 34.56524517471617], [-77.33248216844682, 34.56559044324896], [-77.33260908567121, 34.56579382745631], [-77.33260418550945, 34.566421982501716], [-77.33281396563886, 34.56672983815217], [-77.33298048018517, 34.56703725660932], [-77.33293351640296, 34.56722372199853], [-77.33309089255606, 34.56750021116671], [-77.33318074163644, 34.567641204053466], [-77.33320715755701, 34.56765769733093], [-77.33353022260987, 34.5679108442818], [-77.33360087374157, 34.5679657853454], [-77.33360855072974, 34.56796749258241], [-77.33361358134675, 34.56797504358158], [-77.3336389793556, 34.568012496263606], [-77.33391626928903, 34.56835607163516], [-77.33363879125895, 34.5687789118498], [-77.33361528749128, 34.56882387756996], [-77.33360592586799, 34.56883144229079], [-77.33360015256781, 34.568833862905464], [-77.33359054252507, 34.56883778659772], [-77.33320604014094, 34.56899505762743], [-77.33297223052256, 34.56908899183344], [-77.33281188888904, 34.56920064328808], [-77.33245356828118, 34.56937681775036], [-77.33202359676788, 34.56959246368579], [-77.33179903329568, 34.56969213512444], [-77.33148113143113, 34.569979716262], [-77.33164067338262, 34.570368691513856], [-77.33165759907038, 34.57080342961273], [-77.3316710575373, 34.571179919087925], [-77.33169412095569, 34.57129379049527], [-77.33171123321142, 34.57164479847681], [-77.3318323016116, 34.57183147688622], [-77.33202166825811, 34.57186648946306], [-77.33222752351344, 34.571792337629326], [-77.33280980250561, 34.57168794928394], [-77.33320436339682, 34.57143018222426], [-77.33346004119653, 34.57124460987829], [-77.33359843100381, 34.57090871206521], [-77.33371613219302, 34.570634122992104], [-77.33375876892123, 34.57050141082415], [-77.33399298045693, 34.57022718292169], [-77.33412673559428, 34.5701680517824], [-77.33438708744241, 34.57007757484876], [-77.33476012595419, 34.569910207107974], [-77.33478121378872, 34.569902298629096], [-77.33482055796884, 34.56988185806538], [-77.33517534948913, 34.569713508221504], [-77.33534875730086, 34.56961052966565], [-77.33591503880939, 34.5693946438592], [-77.33596358704106, 34.56937109584519], [-77.33605582078926, 34.569421541961276], [-77.33641866947204, 34.56962842119663], [-77.33675121988517, 34.56978359146188], [-77.3368691327336, 34.56992707970885], [-77.33702907581441, 34.570031265132364], [-77.33732295092409, 34.57022164639412], [-77.33753866717777, 34.5704429581693], [-77.33773786027373, 34.57056369625418], [-77.33784976202008, 34.570762350911195], [-77.33802811573356, 34.57105786623212], [-77.33806912267232, 34.57115535300743], [-77.3383258155138, 34.57150556729621], [-77.33833991629363, 34.57152574819981], [-77.33835283959387, 34.57153910106948], [-77.33861129148573, 34.57180980451516], [-77.33870795221378, 34.57191258283727], [-77.33870369661024, 34.57193020105264], [-77.33866119815474, 34.57234384705602], [-77.33868582557189, 34.57272924587896], [-77.33864022517139, 34.57277140542445], [-77.33832470256777, 34.572948214500435], [-77.33810746019397, 34.57303854048374], [-77.33793055000012, 34.573149647777385], [-77.3378327718764, 34.573206734372164], [-77.33773345020501, 34.573279635140345], [-77.33763282429365, 34.57323698450317], [-77.33753648131434, 34.573241059955095], [-77.33736411396616, 34.57319365688675], [-77.33705770683991, 34.57309041455715], [-77.33674868448671, 34.572989161242894], [-77.33651214192167, 34.572907782735214], [-77.33609369060083, 34.572856188712095], [-77.33596068835661, 34.5729921436123], [-77.33559502019116, 34.57323996097868], [-77.3352527750231, 34.57368296447655], [-77.33521481616815, 34.57373445485493], [-77.3351720770666, 34.57375553921998], [-77.33509463451064, 34.573789113762224], [-77.33465696305456, 34.57406292339094], [-77.33438372533729, 34.57418391623948], [-77.33399355456116, 34.57428430037374], [-77.33398629645106, 34.57428596081673], [-77.3339715742855, 34.57429167806623], [-77.33398406950812, 34.57429587370574], [-77.33387724540633, 34.574729776363384], [-77.33402961629368, 34.57508862748684], [-77.3340487429523, 34.57512966483956], [-77.33407215684662, 34.57521603514247], [-77.3341917243041, 34.57553365136587], [-77.33418833633525, 34.57574329247417], [-77.33420191978155, 34.57638126539343], [-77.33399107212108, 34.576839915387005], [-77.33359348963428, 34.57688383159338], [-77.33323399216025, 34.57698221517225], [-77.33319938516156, 34.57699060244056], [-77.3331578031295, 34.57700068007161], [-77.33286894788924, 34.5770659760271], [-77.33280529411996, 34.577080054449304], [-77.33273181957742, 34.57709626517332], [-77.33250114550958, 34.57714715881512], [-77.33241117336485, 34.5772038360162], [-77.33214408051279, 34.57738920187102], [-77.33201692672748, 34.577475395453234], [-77.33197386139202, 34.57750421684485], [-77.331895255163, 34.57756188932888], [-77.3318210410203, 34.57778333276629], [-77.33201677870849, 34.57765091574581], [-77.33233200933894, 34.57800822373433], [-77.33251668605874, 34.578011526802605], [-77.33280451088392, 34.57801927622918], [-77.33303963629645, 34.57799317416312], [-77.33336745603481, 34.577956781345065], [-77.33359266156874, 34.5778880362424], [-77.33386256252825, 34.57783743974558], [-77.3343807791976, 34.57779411887522], [-77.3348586383883, 34.577650691188424], [-77.33516899325349, 34.5775775046869], [-77.33553347682235, 34.57749536975257], [-77.33558875024738, 34.57748318089325], [-77.33595717536033, 34.57739573977076], [-77.33631632023747, 34.577313291769734], [-77.33635127386611, 34.57729361123679], [-77.33645770212266, 34.57721600369711], [-77.33674550798618, 34.577017958149035], [-77.33709458068368, 34.5768145086869], [-77.33723437513176, 34.57647160756592], [-77.33753396040925, 34.576476793902174], [-77.3379681588952, 34.576221282120045], [-77.33832235026611, 34.57600353726187], [-77.33845504804924, 34.57591273042469], [-77.33900144146179, 34.575808793437275], [-77.33911049131783, 34.57584584631951], [-77.33979624010428, 34.575687302998105], [-77.34006287338264, 34.57571563316297], [-77.34033105901904, 34.57550007539058], [-77.3405570789591, 34.57532767707507], [-77.34068691414377, 34.575327310095005], [-77.34116071453795, 34.57504197686325], [-77.3414752928197, 34.57482895395389], [-77.3416383855917, 34.57463857539579], [-77.34211976008582, 34.574548650104845], [-77.34226335253332, 34.57475873389029], [-77.3424388640885, 34.57453681558507], [-77.34279106968037, 34.574577824693165], [-77.34305145451036, 34.574626884329696], [-77.34314211462487, 34.57467127595326], [-77.34324777329046, 34.574868901918975], [-77.34353130793154, 34.57503984500883], [-77.34383898974349, 34.57529683454779], [-77.34404563061128, 34.575592079472855], [-77.34462676579862, 34.575637632956074], [-77.3446854723868, 34.57565965971823], [-77.34502075104653, 34.57567024807471], [-77.34502749566973, 34.575673738310094], [-77.34503481223118, 34.57568784995338], [-77.34502073856636, 34.57568836910718], [-77.34476614709897, 34.57586168002839], [-77.34462655922022, 34.57593557051649], [-77.34421334511674, 34.57619488457652], [-77.34396666559243, 34.577385348127194], [-77.3441612587726, 34.57749651090481], [-77.34462540879123, 34.57759622540411], [-77.34495699905867, 34.5778736599749], [-77.34541319677675, 34.57795677478531], [-77.34616643068334, 34.57801973462585], [-77.34620119364229, 34.57801607835397], [-77.34622696569727, 34.57802070871601], [-77.34662499843523, 34.57799122524438], [-77.34698925329347, 34.577982332560836], [-77.3470223227174, 34.57793407117948], [-77.34719957872815, 34.57728560263419], [-77.34727220036551, 34.57704903213275], [-77.34777815658205, 34.57665840826873], [-77.3482021856012, 34.57652294624192], [-77.34834580113863, 34.576045491348054], [-77.34842605877664, 34.57588242289877], [-77.34841095123771, 34.57535519278632], [-77.34836788495105, 34.57519321984728], [-77.34829137751018, 34.574906901170124], [-77.34836591084434, 34.57456166481241], [-77.34841010420621, 34.57433805175397], [-77.34846766167324, 34.57422191684263], [-77.34856773125247, 34.57425922109102], [-77.34880272228864, 34.57428156601229], [-77.34916949398512, 34.57442935772197], [-77.34935559779842, 34.57446987172056], [-77.34967656275278, 34.574501712426326], [-77.35014360728914, 34.57445880657614], [-77.35073276602608, 34.5742182933691], [-77.3509317818047, 34.574180222348794], [-77.35113941467371, 34.574169085501026], [-77.3517198270172, 34.574105013894204], [-77.35195118762678, 34.57442813791664], [-77.35250762652323, 34.57443578356887], [-77.3525818292981, 34.57450690081907], [-77.35301961880707, 34.57452390329027], [-77.3532560829792, 34.574532423979974], [-77.35329557058337, 34.574532142724955], [-77.35336466004517, 34.57454870660547], [-77.35385195988093, 34.57465361597215], [-77.35408325914159, 34.57507120097249], [-77.35426354042946, 34.57499977448133], [-77.35422357066902, 34.5751997426809], [-77.35414429599473, 34.57527704920186], [-77.35408311876806, 34.57531300245896], [-77.35396837523564, 34.575360078161914], [-77.35368898014117, 34.57554234029336], [-77.35353840861859, 34.5755606627568], [-77.35329487765392, 34.57570673209604], [-77.35310371501825, 34.57556697120497], [-77.35290096146765, 34.575554769318174], [-77.35260346161422, 34.57553686459779], [-77.35250677564136, 34.57585535744697], [-77.35218309217441, 34.57634247792558], [-77.35250622306737, 34.576778480527395], [-77.35264878048457, 34.57697083386006], [-77.35329421780034, 34.576826660330454], [-77.35344539356825, 34.57684702473065], [-77.35403009984121, 34.576925786848555], [-77.35405122057763, 34.57695609091081], [-77.35414486572805, 34.57697684238322], [-77.35486991973528, 34.57743102376975], [-77.35507155119123, 34.577407761053436], [-77.35540803657389, 34.57757657979755], [-77.35565779350226, 34.57770711038327], [-77.35598930665529, 34.577984652068295], [-77.35605164975908, 34.577993747976365], [-77.35628919219131, 34.57829886203626], [-77.35629892295457, 34.578455301961746], [-77.35644512239081, 34.57898321928182], [-77.35646854312648, 34.579096848110915], [-77.35649230409817, 34.57911873117698], [-77.35659424033022, 34.57926489663221], [-77.35704775816598, 34.58008701338062], [-77.35753086772108, 34.58013978748539], [-77.35802054916712, 34.580223954174535], [-77.35830912323266, 34.58024448860736], [-77.35880862874362, 34.580173879368395], [-77.35924364112157, 34.58004044484551], [-77.35959692649385, 34.5796948016191], [-77.35991524415249, 34.578968602094264], [-77.36038549735392, 34.578652864012525], [-77.36092770921334, 34.57848026212126], [-77.36114235904549, 34.57841564135461], [-77.36117365762121, 34.57840440425325], [-77.3611967563898, 34.578416632768345], [-77.36126651650265, 34.57843148489316], [-77.36142029859823, 34.57867524305148], [-77.36151397503087, 34.57887802419988], [-77.36152061371553, 34.579244009780474], [-77.36154409974179, 34.57968990613404], [-77.36196109098222, 34.579649557245475], [-77.36260835556102, 34.57993651048003], [-77.3626804987777, 34.57999990094477], [-77.36249688814844, 34.58080166839977], [-77.36274832136397, 34.581375751150226], [-77.3629011695045, 34.58142785332895], [-77.36298598506403, 34.5815803579204], [-77.3635361769841, 34.581823133649806], [-77.36425571380336, 34.581471543770334], [-77.36432440471901, 34.58146719726059], [-77.36450080619693, 34.5820210179097], [-77.36471812018445, 34.58217204725433], [-77.36472268728774, 34.582179404925085], [-77.36485169535638, 34.58244133228729], [-77.36488488142109, 34.58276056577742], [-77.36459834118779, 34.58304642068234], [-77.36454876024231, 34.58329618211136], [-77.36432355741209, 34.58333934101642], [-77.36397540423046, 34.58351114775044], [-77.36390278810367, 34.58354242999839], [-77.3638428337025, 34.583672992678544], [-77.36364361643129, 34.584033000802876], [-77.3637305478969, 34.58423110209705], [-77.36387343210482, 34.584484330378935], [-77.36417793975963, 34.58480517633186], [-77.36424375681412, 34.58488092788331], [-77.36432284740015, 34.58491240564025], [-77.36445869347193, 34.58491111306109], [-77.36459431429479, 34.58474522287929], [-77.36486351640852, 34.58443965099768], [-77.36511129210001, 34.58412150379228], [-77.365412666796, 34.58410297381409], [-77.36589927749701, 34.58435784328918], [-77.36612798126212, 34.584278001293924], [-77.36675782904835, 34.58443367494912], [-77.36721823750989, 34.584644378317165], [-77.36740791007949, 34.585189172006224], [-77.36742640000682, 34.58523897114608], [-77.36722490826135, 34.58579533548862], [-77.36693582691123, 34.586106270716286], [-77.36668653199905, 34.586335867382736], [-77.36636741672378, 34.586693585443136], [-77.36606702731186, 34.58708049485358], [-77.3659692371247, 34.58717125827006], [-77.3658980273337, 34.58725652536389], [-77.3656858109644, 34.58736397945141], [-77.3653870657512, 34.58747711653269], [-77.36510980291982, 34.58750043120034], [-77.36476911827307, 34.5877495673646], [-77.3646606955594, 34.587766733651], [-77.36432151479569, 34.58787524871421], [-77.3641947474349, 34.587911203262124], [-77.36408688956502, 34.58796198991615], [-77.3639273620048, 34.58807593244822], [-77.36375807700225, 34.588262071333446], [-77.36367737014288, 34.58842908406531], [-77.36362559824147, 34.58860599846647], [-77.36363264311832, 34.58870468615316], [-77.36371867619437, 34.588916719691696], [-77.36379540021312, 34.58910580727921], [-77.36368270129057, 34.58928358923021], [-77.36353267961921, 34.58942998619388], [-77.36335260746367, 34.589594114269325], [-77.3632211416977, 34.589702092764014], [-77.36313846887933, 34.58973631069956], [-77.36300050703835, 34.589793412004624], [-77.3627443220168, 34.5898994453103], [-77.36259080413085, 34.58996298476343], [-77.3623501734848, 34.590062578720435], [-77.36196478677275, 34.59020903758071], [-77.36195603089352, 34.59020990718705], [-77.36194635872593, 34.59021070333163], [-77.36189081727673, 34.59022911898456], [-77.36163372823057, 34.59034352032838], [-77.36160948416351, 34.590642747233424], [-77.36177443337493, 34.59067042755728], [-77.36195579660023, 34.59070289735321], [-77.3622954004056, 34.59065413754677], [-77.36238357570045, 34.590619001995115], [-77.36274401917672, 34.59054939633186], [-77.36293012005608, 34.59072801963288], [-77.36334300192829, 34.59086916130735], [-77.36347279535104, 34.59091426039015], [-77.36353193520627, 34.59106075952256], [-77.3638852936048, 34.591640194991385], [-77.36387686044245, 34.59211840036509], [-77.36408987480313, 34.592459850462696], [-77.36431940550911, 34.59259350597444], [-77.36494378437564, 34.59233690435133], [-77.3650719635336, 34.59227993793231], [-77.36510772115865, 34.592254827771846], [-77.3652109521046, 34.592187253193664], [-77.36589606882436, 34.591826139548786], [-77.3664586663483, 34.59187579019851], [-77.36668425549473, 34.5917622177527], [-77.36703566754814, 34.59156507598519], [-77.3670784245919, 34.59154547625087], [-77.36712149298077, 34.59155236970776], [-77.36711531554779, 34.59159966174844], [-77.36711420529387, 34.59163841080194], [-77.36694935643783, 34.59204811641925], [-77.3672857984192, 34.59264812304212], [-77.36739944061515, 34.59283241671432], [-77.36743976606657, 34.592861299900015], [-77.36747190027745, 34.59302408590284], [-77.36767884051784, 34.59426692479796], [-77.36767382631183, 34.59449113169654], [-77.36780965940812, 34.59483623072197], [-77.36761935387723, 34.59603703444742], [-77.3676869665741, 34.59618746661645], [-77.36805053735327, 34.59676008824951], [-77.36747052832058, 34.59640271604722], [-77.36726245186526, 34.596472717543506], [-77.365893824258, 34.597107122560416], [-77.36551153848643, 34.597787421901785], [-77.3652599239616, 34.59823516267271], [-77.36488533408101, 34.59890174877305], [-77.36431616377268, 34.59991455954056], [-77.36425911692987, 34.60001607156967], [-77.36425345320231, 34.60014573394302], [-77.36431598629409, 34.60031794924082], [-77.3645379094804, 34.60149594250769], [-77.3646715460573, 34.60171631984749], [-77.3649311098294, 34.60234251584875], [-77.36497210199599, 34.602522159529805], [-77.3650003897403, 34.602628870039844], [-77.36510311811507, 34.602899878228015], [-77.36511230654786, 34.60292652980836], [-77.36510310265369, 34.60293594303475], [-77.36488156355199, 34.60314576307145], [-77.36451130306374, 34.603437610784766], [-77.3643855600146, 34.60353217645685], [-77.36431454318343, 34.60360667706393], [-77.3640449244958, 34.6039293080438], [-77.36400121128736, 34.604022839255435], [-77.36379428821883, 34.60438994418956], [-77.36413587715398, 34.60499808078206], [-77.36419369191974, 34.60518155537282], [-77.36409949539173, 34.605425897634994], [-77.36395954816282, 34.60606437261362], [-77.36378338918243, 34.60636801210744], [-77.36385207164183, 34.606576594670834], [-77.36405693067327, 34.60662339738666], [-77.36431332381967, 34.60639950612826], [-77.36490322456288, 34.60614233817569], [-77.36510165122453, 34.606331857330396], [-77.36549936434389, 34.60627105813245], [-77.36589008447456, 34.606006487036026], [-77.36593284061243, 34.60578028378278], [-77.36636381217627, 34.6053791194616], [-77.36660632928961, 34.605258759641465], [-77.36667869578505, 34.60522886981384], [-77.36672323887139, 34.60524192673512], [-77.36699138486851, 34.60529103020402], [-77.36707281033965, 34.6053002297036], [-77.3671819850839, 34.60529346971361], [-77.36746692803054, 34.60536521605361], [-77.36762826556796, 34.60536238525252], [-77.36786107457031, 34.6053583003968], [-77.36810861648041, 34.60530906932931], [-77.3682552786727, 34.60520309801255], [-77.3685346593492, 34.60498109864745], [-77.36861556491735, 34.60493286700628], [-77.36864953221989, 34.604915335116715], [-77.36872108969591, 34.6048771886278], [-77.3690437523083, 34.604708437976676], [-77.36919505959213, 34.60462439194041], [-77.36943797631616, 34.604485719064655], [-77.36947797405807, 34.60446377681145], [-77.3695083364837, 34.60441632860477], [-77.36943812555077, 34.60408844044164], [-77.3694135034109, 34.60403197283156], [-77.36942041083783, 34.60400443288634], [-77.36942008642451, 34.603985006224256], [-77.36943823438213, 34.60379891700728], [-77.36945462306706, 34.60359251841731], [-77.3697797946279, 34.60358484002666], [-77.36983243121091, 34.60363515296874], [-77.37012421329491, 34.60379288643828], [-77.37024923540736, 34.60386056512196], [-77.37028318850432, 34.60388018325462], [-77.3702601483469, 34.60391978767986], [-77.37037259419176, 34.604291865620965], [-77.37022622831583, 34.604558064008515], [-77.37017082750923, 34.604685855028855], [-77.37008283390813, 34.60475815317212], [-77.36983193849164, 34.60496361563307], [-77.36965877490042, 34.60505729020346], [-77.36946934227561, 34.605271059573056], [-77.36943766995313, 34.605302230807546], [-77.3693060402096, 34.6054363085511], [-77.36924052260463, 34.60550304465886], [-77.36923199035319, 34.605508329830506], [-77.3690434185619, 34.60558728269919], [-77.36874270585552, 34.60569956666739], [-77.36864921818409, 34.60573237764997], [-77.36858994661756, 34.60575841777086], [-77.36831889236547, 34.60586128288819], [-77.36825501309994, 34.605885884057074], [-77.36799705402791, 34.60605439123783], [-77.36750667313973, 34.60635955476246], [-77.36746652537705, 34.60637646069187], [-77.36745045847464, 34.60639358804008], [-77.36737476757904, 34.60642178559462], [-77.36707231077204, 34.60654027362169], [-77.36678040607208, 34.60661753043435], [-77.36667809679358, 34.60669866619581], [-77.36633374087154, 34.606942487430565], [-77.36611365466565, 34.60684455484638], [-77.36609641793092, 34.60703040026444], [-77.36588961792226, 34.60712630685023], [-77.36573070290773, 34.60733653113733], [-77.36571565893777, 34.60750977532891], [-77.36549516671737, 34.60783629498491], [-77.3654457971809, 34.607920043875154], [-77.365392263903, 34.607980890182276], [-77.36510084139377, 34.60823476601616], [-77.36500505160781, 34.608358070677994], [-77.36492601831277, 34.608472569112905], [-77.36470642888926, 34.608827616987725], [-77.36466604619544, 34.60889108332356], [-77.36460607559138, 34.60894318399107], [-77.36431209793811, 34.60921984883364], [-77.36415031800306, 34.609259112990664], [-77.36397585949155, 34.609458462760955], [-77.36374374160681, 34.60972904710578], [-77.36352342179558, 34.61001163226954], [-77.36331304464602, 34.610176468132124], [-77.3630879848609, 34.610435381521135], [-77.36329596716222, 34.61065012681108], [-77.36322241046683, 34.61094136950822], [-77.3631684944979, 34.611272901066556], [-77.36309696038067, 34.611673768771155], [-77.36309659485634, 34.61170780553836], [-77.36304740025055, 34.61180218832814], [-77.36285695713858, 34.61216685380632], [-77.36281069290526, 34.612256034808986], [-77.36273401320955, 34.61239471241913], [-77.36260997491661, 34.61262695857142], [-77.3625024823117, 34.61281781835835], [-77.36246107207909, 34.612942098328276], [-77.36241658592192, 34.613079348550045], [-77.36239868031032, 34.613145672945045], [-77.36233938421393, 34.61338637172311], [-77.36230871287881, 34.61348644367021], [-77.36229805954434, 34.61352096264456], [-77.36230310827237, 34.613559222150904], [-77.36231507005988, 34.613917140328496], [-77.36222270027335, 34.6139563631515], [-77.3620064695182, 34.61405380380448], [-77.36194488451211, 34.614076937627736], [-77.36188995010943, 34.61406342964382], [-77.36155066692751, 34.614144678429], [-77.36127827108245, 34.61422350721251], [-77.36115643035166, 34.61425150592299], [-77.36103319160786, 34.61426029531061], [-77.3607622089685, 34.61432389738107], [-77.36046695286412, 34.61431560973719], [-77.36036802181276, 34.61432298729616], [-77.36028349432397, 34.614326501469364], [-77.36008161951129, 34.61426451753519], [-77.3598261741115, 34.61403591132591], [-77.35957999636454, 34.61360457092033], [-77.35952700407645, 34.613552331883064], [-77.35948769081409, 34.61350088739373], [-77.35925542865515, 34.6131845177822], [-77.35919326291994, 34.61311094330499], [-77.35879247371082, 34.612751831481646], [-77.35879224131084, 34.612751660397706], [-77.35879205154656, 34.61275139536832], [-77.3584218800457, 34.61235496526424], [-77.3581936415302, 34.61198890207283], [-77.35800419762833, 34.61175150413092], [-77.35763252680931, 34.611620928063985], [-77.35757151020141, 34.611612319623475], [-77.35721594356603, 34.61156215485093], [-77.35649962907891, 34.61146109052499], [-77.35642756428952, 34.6116169306671], [-77.35550659633739, 34.61223305580888], [-77.3554047404503, 34.61323928989667], [-77.35571226420807, 34.613964109364446], [-77.35593750132281, 34.61486084527047], [-77.3558039565115, 34.61554946565514], [-77.355814812195, 34.61572760021949], [-77.35642534810532, 34.61583722947666], [-77.35668264654875, 34.61587987064861], [-77.3568876568548, 34.61592438061024], [-77.35721359582718, 34.61611587223891], [-77.35731898457993, 34.61624669923444], [-77.35740097453771, 34.61634847816842], [-77.3576856401691, 34.616647934978786], [-77.3577567490583, 34.61672183675091], [-77.3580015558585, 34.61697508558639], [-77.35806569330806, 34.61703282573051], [-77.35814088651303, 34.617091112745], [-77.35854193962464, 34.617300340920096], [-77.35878976702962, 34.617359340294136], [-77.35889760902063, 34.617406773312496], [-77.35909417899259, 34.61747512843201], [-77.35918388573968, 34.617530060194724], [-77.35924470085757, 34.61756910182139], [-77.35930570954311, 34.61764133698719], [-77.35935135541285, 34.617766029654774], [-77.35937531457438, 34.617968978777256], [-77.35935221100978, 34.61797818275013], [-77.35918364211396, 34.61802813715564], [-77.35902860403432, 34.6180700758373], [-77.35893320655344, 34.6180958812397], [-77.35878940211596, 34.61809819732099], [-77.3586087161911, 34.61806750770951], [-77.35839524886568, 34.617992685395144], [-77.35809265418933, 34.61804584784076], [-77.35800096266914, 34.61815326393327], [-77.35777554583541, 34.618417337341626], [-77.35769122730018, 34.61852064346763], [-77.35728283882102, 34.61883670734395], [-77.35721217531108, 34.618884851449295], [-77.357182573194, 34.61889533553271], [-77.3571051591506, 34.618938348815696], [-77.35656811136538, 34.61917124690305], [-77.35642354264235, 34.61929324363981], [-77.35604963004997, 34.61953676632477], [-77.35580432641657, 34.619974611783306], [-77.35573217978815, 34.62008997668276], [-77.35563458286884, 34.620303590999825], [-77.35542137046124, 34.62064938682107], [-77.35484561458446, 34.62129526431116], [-77.3545951548406, 34.62157720548205], [-77.35405690182138, 34.62178618700418], [-77.35387833229267, 34.62175756726326], [-77.35357147853715, 34.6216677673706], [-77.35326860630227, 34.62151179184281], [-77.35307401611166, 34.621426103792174], [-77.35279535633057, 34.6212565775147], [-77.35261378135397, 34.621139021849636], [-77.35222982423085, 34.62106805886655], [-77.35201764003281, 34.62186632329698], [-77.35187439721904, 34.62223814598432], [-77.35185714168082, 34.62241934138939], [-77.35174355803355, 34.622524541711456], [-77.35140825829728, 34.62333458928871], [-77.35129706026473, 34.62348780336599], [-77.35090547040501, 34.62406044323339], [-77.35086655714704, 34.624163186199155], [-77.3508061813717, 34.624230326286195], [-77.35065923156797, 34.6243088161495], [-77.35022828015205, 34.62453997065755], [-77.34997036918627, 34.624660820679395], [-77.34964370596798, 34.624816435735326], [-77.34925256503554, 34.62479840678398], [-77.34899334054643, 34.624765593361104], [-77.34886145682887, 34.62495984717914], [-77.34859783507, 34.624946918339994], [-77.34839583747782, 34.62497775798375], [-77.34808150192558, 34.62489881376309], [-77.34804400099017, 34.62489558181052], [-77.34788768282993, 34.62471784546315], [-77.3477718903213, 34.624490850342156], [-77.3478254137305, 34.62399250012204], [-77.3480251377999, 34.6236120669969], [-77.3476340816758, 34.62341092755253], [-77.3467913241836, 34.62302694773789], [-77.34671978448637, 34.62300849073866], [-77.34669219603879, 34.62297993731902], [-77.34664517813874, 34.62295758544291], [-77.34531612855935, 34.622394404395365], [-77.34478293450738, 34.622168461073485], [-77.34363668005864, 34.6216827075699], [-77.34251734947036, 34.62120835574045], [-77.34234919808873, 34.62154784857879], [-77.34220694386569, 34.62187901802294], [-77.34173522457375, 34.62230899690857], [-77.3415704267619, 34.62286746762947], [-77.34139234958843, 34.62332331222718], [-77.3413284015825, 34.62368762730522], [-77.34117511881783, 34.62408611218086], [-77.34097467499394, 34.62426778380411], [-77.34093989260201, 34.62458495878971], [-77.34070538334342, 34.624934322905695], [-77.3405556823208, 34.62521103322736], [-77.34020530687398, 34.62552979664372], [-77.34019396068965, 34.62554050791841], [-77.34018839732883, 34.62554737462041], [-77.34017116782643, 34.62556073869793], [-77.33966841112199, 34.625716994918704], [-77.33958194631637, 34.62571510328904], [-77.33951347288289, 34.62571502182764], [-77.33927125212172, 34.62576179242627], [-77.33896267018848, 34.62572521111779], [-77.33894317579933, 34.62572195062893], [-77.3389191026278, 34.625706352768816], [-77.33854284059217, 34.62534091133409], [-77.33853927786127, 34.62532982278267], [-77.33865368542034, 34.6248987914643], [-77.33869332708944, 34.62480640930417], [-77.33857814688548, 34.6241229687352], [-77.33855782860056, 34.624067956298695], [-77.33822122967528, 34.62372124452043], [-77.33820767017957, 34.6237085350484], [-77.33785612405856, 34.623496997939164], [-77.33775902866105, 34.623448881634964], [-77.33757686732297, 34.62335860906284], [-77.33731073441407, 34.623188543311], [-77.33656415271423, 34.62265361353973], [-77.33637819034172, 34.62251271444661], [-77.33545252143298, 34.62227599700482], [-77.33499640317753, 34.62200700089287], [-77.33456200000788, 34.62228264265831], [-77.3338886518973, 34.62286596226011], [-77.33367628806468, 34.62304992903184], [-77.33320179682568, 34.62368148985375], [-77.33354644401854, 34.626049859190054], [-77.33403426556939, 34.62637675893333], [-77.3348607980015, 34.62790014977457], [-77.33489056409054, 34.627980405152904], [-77.33510480700843, 34.62960581082742], [-77.33528111150133, 34.62979970909898], [-77.33529843634443, 34.62964345504224], [-77.33530059776177, 34.629578943402336], [-77.33540691102918, 34.629254004522195], [-77.33497824565877, 34.62800983444406], [-77.33573784119997, 34.628598807456704], [-77.33638728907525, 34.62893255674606], [-77.33663924324317, 34.62911006353505], [-77.33724201891201, 34.62931250737612], [-77.33761772879268, 34.629468712935434], [-77.33777819101387, 34.62948298334014], [-77.33823943944736, 34.63001960538719], [-77.33825111468144, 34.630510666922035], [-77.3382514571312, 34.6308619482722], [-77.33878631120966, 34.63131459925508], [-77.3389553609596, 34.63141234808079], [-77.33930304520449, 34.631381206419206], [-77.33943349173887, 34.63134940151423], [-77.33960786235879, 34.63126843971905], [-77.33972696407754, 34.63121688711288], [-77.3398012156889, 34.63117912044204], [-77.33999005438496, 34.63108571541152], [-77.34002098607685, 34.63108711296434], [-77.34020800245975, 34.63122820264974], [-77.34032977318947, 34.63142067110144], [-77.3405455245348, 34.631707971133025], [-77.34067753284657, 34.631794931634815], [-77.34087611042892, 34.632156890572105], [-77.34089310452765, 34.6321678310269], [-77.34089737303889, 34.63218675117015], [-77.34089396868065, 34.632199480450325], [-77.34089004037703, 34.63222622120542], [-77.34058392713926, 34.633073772491784], [-77.34095877963313, 34.63359449864302], [-77.34117058896443, 34.63383723576416], [-77.34119708956098, 34.63386213396079], [-77.34122661887241, 34.63390136776762], [-77.34150492430322, 34.63440071556796], [-77.34167784118083, 34.63455390103], [-77.34171745924058, 34.63460615952034], [-77.34179572940624, 34.634709586040984], [-77.34186821597675, 34.634829495566436], [-77.34187008045566, 34.63500720584165], [-77.34184711172611, 34.63509118277094], [-77.34172757358735, 34.63544876624016], [-77.34165483332383, 34.63557890065386], [-77.34159047790511, 34.63571220087914], [-77.34150048848377, 34.63590193719445], [-77.34141416048172, 34.6360214356223], [-77.34116115616872, 34.63637051537391], [-77.34112235434479, 34.63641623067943], [-77.34109751167563, 34.63644507195341], [-77.34100634676874, 34.636536042048334], [-77.34083282007572, 34.63672090295563], [-77.34078325702033, 34.63676687265555], [-77.34066906288736, 34.636860061255874], [-77.34055951566296, 34.63695387783718], [-77.34039774702856, 34.63707418120518], [-77.34028048900424, 34.637158380378004], [-77.34004250596801, 34.637296323358036], [-77.33999442238107, 34.63732785202836], [-77.33995762493578, 34.63733050141176], [-77.33992156392208, 34.6373846612376], [-77.33956573007416, 34.63763185145437], [-77.33943617301927, 34.63773591192377], [-77.33937735226046, 34.637789595356836], [-77.33929758372956, 34.63784277431767], [-77.33927354582167, 34.63785948751023], [-77.33920403010232, 34.63790514316207], [-77.33916866082045, 34.63792837257138], [-77.3391584213312, 34.637946785386504], [-77.33912543417162, 34.63796396579523], [-77.33898941829402, 34.63793459871982], [-77.3388584388053, 34.637918551296615], [-77.33882557480398, 34.63788344279863], [-77.33866265511895, 34.63773214730466], [-77.33847774789376, 34.63758282788628], [-77.33829266196852, 34.63731662928074], [-77.33807638518154, 34.63734113951728], [-77.33789373184914, 34.637405225091904], [-77.33766899036502, 34.63740335880807], [-77.33745054847557, 34.63741281157991], [-77.33721924942033, 34.63733354974913], [-77.33714064257863, 34.63730136101816], [-77.33710296201303, 34.63727607526283], [-77.33675862546609, 34.63701261002124], [-77.33672477988519, 34.63698702755072], [-77.33672107581398, 34.636984002505535], [-77.33671577699353, 34.63698064785105], [-77.33626716304167, 34.6367346445659], [-77.3360551659541, 34.63664930787282], [-77.33605361894348, 34.63635430066272], [-77.33603108919844, 34.63623061687918], [-77.33609233084206, 34.635932783827535], [-77.3358909720674, 34.6360233489462], [-77.33567941579403, 34.63560227417793], [-77.33521624529456, 34.63557237264581], [-77.33515765758345, 34.63555988860956], [-77.33512311645516, 34.63555562986121], [-77.33493805182796, 34.6355366170925], [-77.33484821510366, 34.63552587621784], [-77.33482792304102, 34.63551196841322], [-77.33458505344417, 34.63547288097654], [-77.33441105414605, 34.63482047607688], [-77.33444920836993, 34.634759706099395], [-77.33463494153008, 34.63455115784063], [-77.33473345018018, 34.634454235638614], [-77.33479704376924, 34.63390526146205], [-77.33475229757072, 34.63387412848748], [-77.33477880680337, 34.63367369209637], [-77.33483904323084, 34.63321824091595], [-77.33487514596646, 34.633013281644025], [-77.33492322962078, 34.63250749314782], [-77.3350382792446, 34.6313029174718], [-77.33415004194106, 34.630543014031744], [-77.33310297865862, 34.63151940447911], [-77.3330615167393, 34.631558276964334], [-77.33306409726049, 34.63157380804238], [-77.33244146375247, 34.632313847312815], [-77.33242431917454, 34.632505574725634], [-77.33223112249584, 34.632784732186686], [-77.33208257892798, 34.632999366607294], [-77.33189853447101, 34.63314145127717], [-77.33177893357015, 34.63343810616048], [-77.3316706462388, 34.63359595352521], [-77.33172560856373, 34.634246064599694], [-77.331757197649, 34.634285074214915], [-77.33192147284949, 34.63449751888552], [-77.332076903497, 34.63469852579274], [-77.33210629960531, 34.63471149035759], [-77.33219023556065, 34.634748508480826], [-77.33245751157074, 34.63486638499671], [-77.332554499683, 34.63490097070778], [-77.33279421732006, 34.634986784474386], [-77.33280001192435, 34.63498890349306], [-77.3328076683824, 34.63501602086918], [-77.33293737751704, 34.63529092253276], [-77.33289822735554, 34.63540967066523], [-77.33288835218328, 34.63541777218454], [-77.3328601275285, 34.635443846003554], [-77.33275334538723, 34.635542491046394], [-77.33270891172074, 34.63556653625404], [-77.33260517532958, 34.63560166663213], [-77.33243342681115, 34.63564293274194], [-77.33229397681968, 34.63564603461334], [-77.33217453927121, 34.63565312505506], [-77.33198353509444, 34.635694172139644], [-77.33181296228447, 34.635730828013365], [-77.33167450830382, 34.63574935677257], [-77.33155166208307, 34.63573825742199], [-77.33151185197701, 34.63573640080094], [-77.33145270603703, 34.63572805971525], [-77.33134730851839, 34.63571404618287], [-77.33104970273662, 34.63564811310651], [-77.33102494979423, 34.63563302739953], [-77.33101109193261, 34.63563383140846], [-77.33099134919593, 34.635630874543], [-77.33067141094537, 34.63553635928409], [-77.33051338458651, 34.63549781456485], [-77.33050306994286, 34.635495089713544], [-77.33047647634129, 34.63548370875242], [-77.33032974362187, 34.63542899092066], [-77.33019713670964, 34.63534307761592], [-77.3301357523618, 34.635097490431406], [-77.32990899338623, 34.63462006895098], [-77.32989432450445, 34.634540632698034], [-77.32982385007395, 34.634503728819354], [-77.32979718322092, 34.634515648280995], [-77.32925022820324, 34.63455469861816], [-77.32919479885216, 34.63455928875955], [-77.32912175833577, 34.634552196409146], [-77.32869722601508, 34.63450151509479], [-77.32854436963805, 34.63450837172939], [-77.32833273665527, 34.634754836095574], [-77.32835108179964, 34.63516713231207], [-77.32835241486022, 34.6351741285299], [-77.32811931905682, 34.63558002347014], [-77.32810301431367, 34.63560280418845], [-77.32807093946808, 34.63563472727561], [-77.3278530188835, 34.635848025390146], [-77.32772716620954, 34.63591913896272], [-77.32758351940527, 34.63610010072132], [-77.32757599323328, 34.636111630897666], [-77.3275283623547, 34.6361311368854], [-77.32732900428849, 34.636214636437366], [-77.32728868201885, 34.63622597625825], [-77.32723640261102, 34.63624518132464], [-77.32694615026098, 34.63611428588162], [-77.32665732222527, 34.63624358342637], [-77.32664084405563, 34.63623929229175], [-77.32631546050376, 34.636161743770145], [-77.32598757455156, 34.63642142737956], [-77.32577443742635, 34.63665587054788], [-77.32573057892269, 34.63672387479229], [-77.3256709247031, 34.63680786909263], [-77.3253930302622, 34.637075986675725], [-77.3252348065007, 34.63715696196306], [-77.32517877220768, 34.63720956361519], [-77.32497098618236, 34.63728570795399], [-77.32494199363487, 34.63729295555825], [-77.3249098107832, 34.63729204918334], [-77.3246711140885, 34.63730534399246], [-77.32462004480288, 34.63728380667467], [-77.3244150823713, 34.63723821498981], [-77.32400316134088, 34.63703657238651], [-77.32394853616461, 34.63701387781722], [-77.32392185693764, 34.63699503787211], [-77.32381226909231, 34.636934343059224], [-77.3235597966709, 34.63678604445952], [-77.32350100196422, 34.63675191749056], [-77.32320449358033, 34.636610704599285], [-77.32296484234706, 34.63666535206216], [-77.32277604738145, 34.63663389270714], [-77.32256176283173, 34.636598185970385], [-77.32242685653975, 34.63658240007584], [-77.32221033011146, 34.636438423206485], [-77.32184006872879, 34.636192220510154], [-77.32148836211772, 34.63614443456821], [-77.32117760862953, 34.636081365328835], [-77.32098239124448, 34.63629334750782], [-77.32057766948937, 34.6362820535884], [-77.32032959739331, 34.63614237438337], [-77.3201626561933, 34.636195073320735], [-77.31993445659259, 34.63626710936879], [-77.31963962547992, 34.636360178187196], [-77.31963341929197, 34.63636213728716], [-77.3196286958362, 34.636363728509494], [-77.31959593240987, 34.63637486767878], [-77.31936654723702, 34.63645256886973], [-77.31933866221577, 34.6364884642172], [-77.31914205986483, 34.63657658778383], [-77.31885479898082, 34.63676566670453], [-77.31876375798777, 34.636813939359634], [-77.31869026418347, 34.636821992555454], [-77.31854171221725, 34.63681143591714], [-77.318433326903, 34.63676249398084], [-77.31829589833926, 34.636724086555446], [-77.31806061231887, 34.63650031421594], [-77.31788698617535, 34.636385716863145], [-77.31777511373508, 34.63620247975772], [-77.31756438128144, 34.63587657654403], [-77.31752904412521, 34.63573728503575], [-77.3175464033477, 34.63538985783346], [-77.31759178179456, 34.63467487133502], [-77.31758735279904, 34.63454027327925], [-77.31757864593796, 34.63444875255575], [-77.31755929867563, 34.6341221330227], [-77.31739371853166, 34.63391930947597], [-77.3173557769677, 34.633728044432345], [-77.31713065906538, 34.63336282840834], [-77.31710973586684, 34.63333376880335], [-77.31708025708198, 34.633315744606755], [-77.31673968573378, 34.63310750955373], [-77.3166667297072, 34.63306290198788], [-77.3165264638136, 34.63299774658374], [-77.31638079021933, 34.632914097348376], [-77.3161718875546, 34.632894607511595], [-77.3160366137603, 34.63279404389749], [-77.31539216765536, 34.632309244906715], [-77.3153391696807, 34.632247438768545], [-77.31528398169252, 34.63223349754253], [-77.31494978659089, 34.631992917968645], [-77.3149043450384, 34.63196039988271], [-77.31489230226317, 34.631955769673596], [-77.31456415953994, 34.63183645930829], [-77.31441457930009, 34.631782072712454], [-77.31404262318685, 34.63165023368495], [-77.31381229942201, 34.63127965678387], [-77.31366147599493, 34.63097741346111], [-77.31361992996497, 34.63086419373596], [-77.31365265123532, 34.630781079277455], [-77.31363731179177, 34.63043982785157], [-77.3136369208075, 34.630432649957974], [-77.3135490264864, 34.63005253636475], [-77.3135401668685, 34.630031157008766], [-77.31349561629555, 34.62996689928683], [-77.31322659464865, 34.62954314192813], [-77.31295382470981, 34.62926754274217], [-77.3126886413435, 34.62886906215744], [-77.31245031533928, 34.62878439227465], [-77.31201994995635, 34.62872674302742], [-77.31137706282615, 34.62865500550469], [-77.3113654023856, 34.62865495256833], [-77.31135044087499, 34.62866591895802], [-77.31077478002757, 34.62890190646665], [-77.31048850753277, 34.62915976645699], [-77.30997222576542, 34.629676098278566], [-77.30941473778846, 34.630826481090466], [-77.30905253028672, 34.63308280143605], [-77.30898656837121, 34.63318700292351], [-77.30912145934744, 34.63589244702641], [-77.30935298682218, 34.63651265015798], [-77.30940761034277, 34.63709874116901], [-77.30993975378095, 34.63980812051248], [-77.31025454615586, 34.640012444750504], [-77.31047242421837, 34.640162799978675], [-77.31225364603203, 34.64064691300994], [-77.31317110677996, 34.64084937538632], [-77.3132091803765, 34.63971129867889], [-77.31417030045019, 34.63944726059523], [-77.31426314802978, 34.639360946630354], [-77.31475987944903, 34.639194773351484], [-77.31536747145933, 34.639076001373425], [-77.31537589849752, 34.63907408594705], [-77.31538846135102, 34.63907723673642], [-77.31545898255034, 34.639051844434306], [-77.3159540375433, 34.63876460111511], [-77.31638604858657, 34.638924786072955], [-77.31659314093685, 34.63894581670716], [-77.31663849144157, 34.6389850154006], [-77.31669119616947, 34.63895925311371], [-77.31726902533892, 34.63893668130337], [-77.31730435126752, 34.63886456464846], [-77.31783394239002, 34.63878566956608], [-77.3178804918781, 34.63879332517439], [-77.31800882156729, 34.63885516973349], [-77.31835323659642, 34.63890564793416], [-77.3185363793896, 34.639347946688744], [-77.31856022376576, 34.63947075025714], [-77.31848392905769, 34.63979455833093], [-77.31834277224, 34.640344529568104], [-77.3182806132136, 34.64044389468177], [-77.31823460588748, 34.64055805488843], [-77.31796007246908, 34.6412409584711], [-77.317914340271, 34.6414366278241], [-77.31780215152656, 34.641593581193504], [-77.31739563755781, 34.6421622947915], [-77.31734163212116, 34.642236549638554], [-77.31732816928503, 34.642422203020544], [-77.31722458442997, 34.643029710599265], [-77.31722498470617, 34.643462457293765], [-77.31715971581824, 34.643882571278255], [-77.31731964643737, 34.64439323105421], [-77.3178518096883, 34.64547565594983], [-77.3179496541788, 34.64551925064427], [-77.31797712788881, 34.64545847966128], [-77.3181805753163, 34.64498484845778], [-77.31829708352771, 34.644463821235426], [-77.31838863987973, 34.644516191664664], [-77.31858769117515, 34.644067829138706], [-77.31860911458224, 34.64401957254931], [-77.31876778590068, 34.643662161545144], [-77.3187971417929, 34.64359603697506], [-77.31882985800847, 34.6435243043326], [-77.31898465042157, 34.64321044878717], [-77.31902757271912, 34.643143842468284], [-77.31928293118489, 34.64274757507347], [-77.31929606274905, 34.64272719752073], [-77.31930706589182, 34.64271179873742], [-77.31933542788049, 34.64269982528314], [-77.31986518524184, 34.64230249801185], [-77.32008212278275, 34.64212655442426], [-77.32024615540162, 34.64204530791241], [-77.3204350796006, 34.6419518963988], [-77.32066558268596, 34.64200409548713], [-77.32083569551635, 34.642026320837445], [-77.32114180080694, 34.64228304087587], [-77.32128481922337, 34.64228518682944], [-77.32156512992299, 34.6424347131518], [-77.32131587623316, 34.64261145733671], [-77.3212233747731, 34.642689470643006], [-77.32097685621443, 34.64293735031855], [-77.3209645620854, 34.64295074153913], [-77.32096002549052, 34.64297238390098], [-77.32087601554736, 34.64337316196286], [-77.32110787936998, 34.64370903774052], [-77.32112820757551, 34.643742681356514], [-77.32114092759569, 34.64375883219174], [-77.32121249915338, 34.64384970740067], [-77.32144088884276, 34.644139696802945], [-77.32153961757764, 34.644265052691566], [-77.32206640252566, 34.64418140600602], [-77.32221920526612, 34.64412252039457], [-77.32219114598561, 34.64403683824626], [-77.32217290512574, 34.643970658104095], [-77.32200860082295, 34.64341167763021], [-77.32195938455807, 34.643245559418034], [-77.32195384614471, 34.64322539650823], [-77.32194708657956, 34.643200983985366], [-77.32194339948003, 34.64308684301993], [-77.32189824528845, 34.64248797272487], [-77.3219405618825, 34.642383242015484], [-77.32199455632549, 34.642244226215766], [-77.32208170559926, 34.6421809748555], [-77.32221426535148, 34.64211572849737], [-77.3223713285928, 34.64202898560584], [-77.32267313169132, 34.6418768968355], [-77.32297603961568, 34.6418518870427], [-77.32327420946503, 34.64179132220781], [-77.32329189210446, 34.64178740270094], [-77.32359603543328, 34.641750942936596], [-77.32393177068901, 34.641717625290056], [-77.32420860963619, 34.64161303358237], [-77.32447632082004, 34.64155882058767], [-77.32455508494053, 34.64155184943407], [-77.32487186931624, 34.64172761100658], [-77.32516152228283, 34.64194160077114], [-77.32542951185135, 34.642116730776564], [-77.3256189111082, 34.6422594984211], [-77.32563868106902, 34.64227663157908], [-77.32587450333233, 34.64226581867064], [-77.32593614142242, 34.64226180002975], [-77.32594240387905, 34.6422606362023], [-77.32595707586657, 34.64225449517134], [-77.32619140355294, 34.64215949212723], [-77.32623211125481, 34.642124697659334], [-77.32640705992051, 34.64202720907322], [-77.3267205453033, 34.64185712682884], [-77.32681068420607, 34.641817438345825], [-77.3268702245275, 34.641792390667405], [-77.32712899881278, 34.641671786965475], [-77.32739563227786, 34.64154195019089], [-77.32788104491347, 34.64140165822412], [-77.32800153073066, 34.64137081844326], [-77.32814674068715, 34.641329980173495], [-77.32830442740519, 34.64128499604441], [-77.32842365956688, 34.64124103754662], [-77.32859258113866, 34.64112575125342], [-77.32884101250791, 34.64096344043678], [-77.32895553668357, 34.640876976111485], [-77.32917529761795, 34.64083919708616], [-77.32933566417279, 34.64075802905551], [-77.32945369781304, 34.64063139801763], [-77.3296929873664, 34.64056516340023], [-77.3297690506639, 34.64060762194433], [-77.33006148696941, 34.64076849227685], [-77.33046416911463, 34.640880823625345], [-77.33058721772275, 34.641090852331075], [-77.33065982629371, 34.641187496652], [-77.33062366309731, 34.641293466105125], [-77.33058351032311, 34.641475092061974], [-77.33049921259308, 34.64184458172076], [-77.33045638628867, 34.642059387517364], [-77.33069620446699, 34.64269586001751], [-77.33071157074019, 34.643140406305804], [-77.33159861277642, 34.643590669749805], [-77.33163538178528, 34.643607606735685], [-77.33165032126969, 34.64359896131177], [-77.3316622567406, 34.643597941690324], [-77.33299604491233, 34.64392338606963], [-77.33320420565732, 34.643703109812634], [-77.33358460363871, 34.64366588870747], [-77.33378871842072, 34.64358158461543], [-77.33388424218805, 34.6435638248544], [-77.33409917511656, 34.6433223566161], [-77.3341458395798, 34.643272382754404], [-77.33415936710752, 34.64326036781477], [-77.33417504595738, 34.6432372039963], [-77.33466777389987, 34.642683246857345], [-77.3347825289348, 34.64250763281183], [-77.33517417451705, 34.642342317485785], [-77.3352337958557, 34.64231361995927], [-77.33528503968833, 34.64230954296958], [-77.3358155277213, 34.64222067780754], [-77.33585516465035, 34.64221952348481], [-77.3359083149304, 34.6422242112417], [-77.3364842210564, 34.64216369821185], [-77.33694651533011, 34.64227772800634], [-77.33715953129617, 34.64233810064664], [-77.33740395438696, 34.642520167625676], [-77.33760939625172, 34.6424779276264], [-77.33778617484853, 34.642270261379764], [-77.33822095103119, 34.64183803130151], [-77.33828365896315, 34.641772923291505], [-77.33832190432462, 34.641749937222244], [-77.33836856684624, 34.64175854118703], [-77.3384889184507, 34.641801255408694], [-77.33889756768451, 34.64185929910526], [-77.33900962399, 34.64198609111364], [-77.33926776913397, 34.6422744483171], [-77.33945825152321, 34.64251221187264], [-77.33962240547977, 34.642720419615536], [-77.33988816449876, 34.64327095434995], [-77.33989939320972, 34.64329565877233], [-77.33990541103796, 34.643308213548465], [-77.339924344732, 34.64335191965989], [-77.34017570487067, 34.643921180677665], [-77.34024418573034, 34.644092328623046], [-77.34046511224633, 34.64444983198575], [-77.34047717601086, 34.64447243114504], [-77.34050166845599, 34.64447898501082], [-77.34080677884958, 34.644556921526316], [-77.34097104547011, 34.64464277201839], [-77.34098566753575, 34.64465054935221], [-77.34105730309747, 34.64469608248064], [-77.34116918264242, 34.644767195606725], [-77.34122373844616, 34.64480187236378], [-77.34131795410225, 34.645104075713064], [-77.34133354553117, 34.64520879742929], [-77.34134094778207, 34.64529450616426], [-77.34140545353583, 34.64562092426847], [-77.34138551283196, 34.64600335235596], [-77.34138416345239, 34.64604584426093], [-77.3413583312141, 34.64617227140928], [-77.34130421098729, 34.6464788157957], [-77.34129534320091, 34.64658641592509], [-77.34126943151307, 34.64685908115612], [-77.34126484924097, 34.646906215895434], [-77.34124552805355, 34.64720715318223], [-77.34122176849883, 34.64733412623152], [-77.34110784115386, 34.647648082566015], [-77.34108736975982, 34.647726748997854], [-77.34106020700477, 34.64777829884381], [-77.34088187007644, 34.64811674935116], [-77.34082699112194, 34.64815091930612], [-77.34062968714541, 34.64825938597143], [-77.34038954482736, 34.648409791980555], [-77.34030340918652, 34.64842456483321], [-77.34020454043126, 34.64845651769765], [-77.34011367809369, 34.64848588299094], [-77.34000152282117, 34.64851550268254], [-77.3397493239233, 34.6484793655848], [-77.33967129220085, 34.6484653971766], [-77.33961175736354, 34.64848194973281], [-77.33943580663825, 34.64842324217135], [-77.33933808136013, 34.64840045847558], [-77.33910696973952, 34.64833317718066], [-77.33899426423963, 34.64828273465434], [-77.33886961829552, 34.64822901323671], [-77.33874814899796, 34.64821196137751], [-77.33866365686572, 34.64823074444748], [-77.3384269429549, 34.64856169565463], [-77.33849056010791, 34.64863874459471], [-77.338596195478, 34.648770291175296], [-77.33866732553378, 34.6489507029222], [-77.33870955852957, 34.64911990894039], [-77.33876916626528, 34.64935872282674], [-77.33891117795568, 34.64969867917891], [-77.33874911516509, 34.65018967459223], [-77.33874864931632, 34.65020553044558], [-77.33874614078515, 34.6502118679573], [-77.33874326089112, 34.65022016451461], [-77.33873411022736, 34.65021937834402], [-77.33816327744165, 34.650520504784346], [-77.33798992668409, 34.65054448336558], [-77.33785624092877, 34.65058585935324], [-77.3378274141391, 34.650688711343605], [-77.33759074388988, 34.65085794068166], [-77.3374746359984, 34.65102663849736], [-77.33710613240466, 34.65114593196181], [-77.33702252103785, 34.651216853416344], [-77.33696657077107, 34.651219596686516], [-77.33648127197736, 34.651234804252546], [-77.3363863835473, 34.65123777752408], [-77.3361365463443, 34.650985963568964], [-77.33616055275441, 34.65072164301921], [-77.33576976902599, 34.650769557883606], [-77.33566717175849, 34.650845221583296], [-77.3353023093958, 34.651000419419816], [-77.33513883402493, 34.65140269071561], [-77.33460488289803, 34.65150496176025], [-77.33452221985465, 34.65152079476037], [-77.33444586880061, 34.65153541832833], [-77.33390560327426, 34.651638895811324], [-77.33332066735092, 34.65175092580819], [-77.33328898509463, 34.65175699376907], [-77.33297559018514, 34.6518416288559], [-77.33328185644766, 34.65182774314635], [-77.33332562667673, 34.65193939080167], [-77.33358538044047, 34.652601962244475], [-77.33396592991232, 34.65276965151478], [-77.33414889009866, 34.65284988626716], [-77.33444037416194, 34.65297854205101], [-77.33461990939098, 34.6530324871154], [-77.33484136971197, 34.65310934085648], [-77.33494051706751, 34.65313656903088], [-77.33515055929635, 34.653194251027166], [-77.33517990281157, 34.653200700646856], [-77.33526428027209, 34.653215615306436], [-77.3354646476648, 34.65324711689945], [-77.33551244471491, 34.65326223661156], [-77.33560127636127, 34.65328138698991], [-77.33600038390328, 34.65333469276587], [-77.33619799890971, 34.65348717619855], [-77.336902561681, 34.653828932091564], [-77.33690753370733, 34.6538314412576], [-77.336909125823, 34.65383195863834], [-77.3369125952211, 34.65383344397178], [-77.33691052270441, 34.65383636407575], [-77.33691088174639, 34.65384810305694], [-77.33697000587631, 34.65466955616872], [-77.33682459776361, 34.655090692523814], [-77.33668786725458, 34.655552258668244], [-77.33666312678848, 34.65560723032787], [-77.33663448943487, 34.655659467095994], [-77.33625486158866, 34.655893377712076], [-77.33613262587933, 34.656348802872124], [-77.33577755885949, 34.65607174601465], [-77.33571869854092, 34.65568523382214], [-77.33548207284849, 34.65517194986355], [-77.33537367639317, 34.65488858259066], [-77.33532712935335, 34.654667300762], [-77.3352686129592, 34.65448100328683], [-77.3350958843954, 34.65437611767272], [-77.33486224026636, 34.65443947857845], [-77.33475153128555, 34.65448994662948], [-77.3346782918345, 34.654803565703446], [-77.33463513590937, 34.654989907883916], [-77.33462302034165, 34.655037261895785], [-77.33460242565579, 34.6551073096703], [-77.33447994268325, 34.65557097912765], [-77.33415725565564, 34.655834829970125], [-77.33411662750008, 34.65587667255568], [-77.33409453523653, 34.65587846820492], [-77.33355380666758, 34.655881233910776], [-77.33343854061089, 34.65568896202346], [-77.33319847370221, 34.6554365683819], [-77.33309739316155, 34.65520086543725], [-77.33294668988748, 34.65483447352867], [-77.33293585113623, 34.6548084194667], [-77.33293279080793, 34.65480145255284], [-77.33289211130926, 34.65475590300373], [-77.33275292479433, 34.65459650308361], [-77.33269688998011, 34.654573643115015], [-77.33258337632745, 34.65461977688564], [-77.33242770414202, 34.6548707386411], [-77.33237615327363, 34.65494150583275], [-77.33240660512304, 34.65529562528247], [-77.33232451517571, 34.65556060299208], [-77.33223527007395, 34.65607463374555], [-77.33222195644935, 34.65613216182611], [-77.33222343640493, 34.65616473667899], [-77.33223099021686, 34.65620344520574], [-77.33233590749352, 34.65690585250794], [-77.33234856331865, 34.656991557991994], [-77.33233092271621, 34.6571535769096], [-77.33230252856075, 34.65754199670205], [-77.33206442209985, 34.65768100543679], [-77.33193656780007, 34.65777546971628], [-77.3318814497804, 34.65781619308154], [-77.33159152253606, 34.65793938421334], [-77.33158147259815, 34.658203447829784], [-77.33121710730686, 34.65820998634193], [-77.33073557448026, 34.65817264067509], [-77.33029137589133, 34.658333651703785], [-77.32993396109126, 34.658453575254214], [-77.32943219480515, 34.658060134289656], [-77.32918518464541, 34.65763967497105], [-77.32877220585786, 34.65748207580462], [-77.32796696701317, 34.657141752677205], [-77.3276461822625, 34.65719865882253], [-77.32733271000957, 34.657172250627916], [-77.32710536921564, 34.657164150725684], [-77.32664623234663, 34.656942703255964], [-77.32615118862222, 34.65713750345649], [-77.3260476563522, 34.6571508749559], [-77.32593878536107, 34.65717705313761], [-77.32536714864617, 34.65695103296926], [-77.32487359166572, 34.656989321770666], [-77.3244700138487, 34.65690248346504], [-77.32406534701344, 34.65684621398514], [-77.32324389558772, 34.65709234150483], [-77.32374588034304, 34.65817128115354], [-77.32359785619448, 34.658757606091605], [-77.32364077242846, 34.65942861883825], [-77.32437235443672, 34.65948076712463], [-77.32456764797666, 34.65934774554278], [-77.32471988683275, 34.65958887496461], [-77.32523716175382, 34.65949275063219], [-77.32536096957223, 34.65946811735737], [-77.32562513702615, 34.65931575860958], [-77.32582073890441, 34.65920980795503], [-77.32608206324078, 34.65907502588364], [-77.32614837721205, 34.659057816890936], [-77.32641663050615, 34.65898820285821], [-77.3266413676036, 34.658929880908346], [-77.32681597682772, 34.65888456743209], [-77.32710505449253, 34.65922735252238], [-77.32718742305745, 34.65929733300184], [-77.3272645757277, 34.659376784981234], [-77.3272452933337, 34.65949374103586], [-77.32719687048473, 34.65968451926312], [-77.32719285171395, 34.66011212449109], [-77.32709219051644, 34.66024440352487], [-77.32690933647362, 34.66051476806851], [-77.32679461474284, 34.66087029973813], [-77.32659772913551, 34.661156184084604], [-77.32685382360056, 34.66179763167289], [-77.32698054276192, 34.66200224760261], [-77.32711714893831, 34.66204347907439], [-77.32762731839465, 34.66182770656652], [-77.3277905271689, 34.66133747257979], [-77.32786043661876, 34.660983037220774], [-77.32797053202816, 34.66083819126837], [-77.32805135672356, 34.6607504236667], [-77.32831129491223, 34.66048899490073], [-77.3285731454464, 34.66015984643738], [-77.32903492874244, 34.6602326698352], [-77.32925334353769, 34.66035796061098], [-77.32956035014058, 34.66074991747864], [-77.32976221231422, 34.66108914800108], [-77.33003961752681, 34.66152817106908], [-77.33015392021981, 34.66165312830054], [-77.33048898644373, 34.661946659778344], [-77.33090763746159, 34.662253105607995], [-77.33091623548323, 34.66225991409569], [-77.33132530220772, 34.66258742163312], [-77.33167941373591, 34.66287092443238], [-77.33197359543686, 34.662573368387726], [-77.33203497628766, 34.662098481821666], [-77.3320845086245, 34.6620096048214], [-77.33210429681465, 34.66179807655174], [-77.33213246023763, 34.66138706265275], [-77.33213404055483, 34.66124090896243], [-77.33251637829918, 34.660661552172655], [-77.33263743937597, 34.6605238719034], [-77.33279821623836, 34.66047058268158], [-77.33301056360465, 34.66040019986173], [-77.33309973920187, 34.66037759544424], [-77.33318813768035, 34.66037066665829], [-77.33341409752775, 34.66034849487881], [-77.3336310201253, 34.660320202957045], [-77.33373560914224, 34.66035499631876], [-77.33392074973442, 34.66038727903049], [-77.33387330187887, 34.660158344052526], [-77.33379754128106, 34.65999063707712], [-77.33360584662844, 34.65970915100639], [-77.33347919457786, 34.65947273475908], [-77.33337146601534, 34.659383199195986], [-77.33318477173906, 34.65920708045411], [-77.33308225883661, 34.6591103744112], [-77.33301470543412, 34.65887416306932], [-77.33323163896978, 34.658814734532456], [-77.33347018047044, 34.65903391073297], [-77.33352320763976, 34.65868157533199], [-77.33398379218694, 34.658455213595545], [-77.33399073879102, 34.658450740469554], [-77.33399335194461, 34.658450452468045], [-77.33399784358032, 34.65844625488445], [-77.33434731653874, 34.6581163267352], [-77.33453054159381, 34.65793679252557], [-77.33506619782798, 34.65747973183436], [-77.3350771119106, 34.65746985451425], [-77.33508102587824, 34.65746669347657], [-77.33509118264362, 34.657459304595385], [-77.33561537049658, 34.65696157463292], [-77.33590740453283, 34.65690357289128], [-77.33617654825815, 34.65656738928717], [-77.33649937459113, 34.65693906204406], [-77.33689932917761, 34.65697743370005], [-77.33704954487958, 34.656998113302095], [-77.33736197544823, 34.6569268807129], [-77.33751995300314, 34.656879089327575], [-77.33772029770459, 34.65681848032341], [-77.33790662844477, 34.656768043305235], [-77.33812358219288, 34.656696184112356], [-77.33844369494068, 34.65660212178982], [-77.33871774698017, 34.65646619676803], [-77.33916889538537, 34.65605580287057], [-77.33923460620002, 34.656005906535235], [-77.33925739317094, 34.65596495597122], [-77.33943480580837, 34.65572082235203], [-77.33975925075394, 34.65527572119529], [-77.33982751379202, 34.655224864735075], [-77.33996000165932, 34.65510324356798], [-77.34032111983893, 34.65488511362557], [-77.34065800150378, 34.65466560237589], [-77.34090281466533, 34.654593169453044], [-77.34117064480537, 34.65447689375355], [-77.34122882840474, 34.654465644404354], [-77.34150975632099, 34.65442685180157], [-77.341796104804, 34.65439349125498], [-77.34182237503344, 34.654389210325625], [-77.34184807982825, 34.65438788600305], [-77.34213184294522, 34.65437326610061], [-77.34213898683328, 34.654371433203096], [-77.34242717501873, 34.654315323715224], [-77.34247998535358, 34.65428506991281], [-77.34273801045424, 34.654165738770565], [-77.34292390019826, 34.65411175316877], [-77.34303558150836, 34.6540532441247], [-77.34320939876707, 34.65398920423212], [-77.34333916454571, 34.65397065794703], [-77.34345074424381, 34.65378013269364], [-77.34336234303532, 34.653686408753856], [-77.34327705860903, 34.65366170257924], [-77.34316478293971, 34.65350343535738], [-77.34294910040646, 34.653468050988764], [-77.34291641546821, 34.65346042053486], [-77.34289678056979, 34.65345992240944], [-77.34284747938793, 34.65344094299327], [-77.34257491734144, 34.653354373148694], [-77.34237416454357, 34.653346389340804], [-77.34194219279102, 34.653195389565184], [-77.34190145148702, 34.65318967941999], [-77.34187733233432, 34.65318181297744], [-77.34184705746071, 34.65315626338976], [-77.34145131996573, 34.652877036002025], [-77.34115404456134, 34.65265708172788], [-77.34103153396894, 34.65255993743675], [-77.34086009274294, 34.65244773235021], [-77.34081495941064, 34.6524146177351], [-77.34076862713947, 34.652332482164354], [-77.34063126523135, 34.65220420609059], [-77.34058598368938, 34.651929402870536], [-77.340686678119, 34.65162753909408], [-77.34074824021008, 34.651413624609354], [-77.34075605307014, 34.65080903897329], [-77.34074319389707, 34.65077578891084], [-77.34071599295727, 34.65071627807074], [-77.34060499144663, 34.64995997138533], [-77.34047682018692, 34.649968354688994], [-77.34030386494771, 34.64998205266664], [-77.34034115889546, 34.64969911811342], [-77.34043908400082, 34.64971435951453], [-77.34060908838335, 34.64994559562617], [-77.3406112684676, 34.64994754474268], [-77.34061256725276, 34.64994972365101], [-77.34061312620685, 34.64995300602332], [-77.3407887155166, 34.650744377107806], [-77.34084574579862, 34.65076171357123], [-77.34143556218199, 34.65087173448005], [-77.34150532236008, 34.65078587562701], [-77.34201623341521, 34.65060105784635], [-77.34202047836072, 34.650599532148085], [-77.34202110944874, 34.65059911221882], [-77.34202193932093, 34.650599205584705], [-77.34203529144014, 34.65059844192568], [-77.34232299283978, 34.65057726745749], [-77.34233807037292, 34.650583143772984], [-77.34254061989432, 34.6507204958064], [-77.34271049143696, 34.65084309327822], [-77.34292515839618, 34.65110736440251], [-77.34311730070516, 34.65127411355089], [-77.34312644336939, 34.65128295195184], [-77.34313895663801, 34.651290942994635], [-77.34334417469861, 34.65142597864672], [-77.34348166945975, 34.65149397466508], [-77.34382282068977, 34.651626540296796], [-77.34382876029238, 34.6516278769336], [-77.34384280392729, 34.651633375632166], [-77.34417621039844, 34.65176355759818], [-77.34430683297757, 34.651816479140784], [-77.3444805557582, 34.65189506403966], [-77.34452705054115, 34.65191609634113], [-77.34454287627838, 34.651923255243034], [-77.34457503486756, 34.651937802341365], [-77.3447636197103, 34.652060323596075], [-77.34490986340957, 34.652227667644034], [-77.3451640029483, 34.652415845943246], [-77.34555108105458, 34.65256069620048], [-77.34562285245337, 34.652588952845534], [-77.34565107917783, 34.65259972790877], [-77.34571114390413, 34.652625829613086], [-77.34611427894446, 34.65283088549221], [-77.34633714141891, 34.65296188494186], [-77.34633788165999, 34.6529623003576], [-77.34633840718412, 34.652962963004526], [-77.34653591398279, 34.653144343615736], [-77.3466964910566, 34.65333454713103], [-77.34717040886014, 34.65391608666911], [-77.34726052593189, 34.65400621657928], [-77.34738716976578, 34.654083717385674], [-77.34769726973109, 34.65428977558193], [-77.34790342687828, 34.654376844439106], [-77.34813571244544, 34.65456997441797], [-77.34829416717733, 34.654727713042604], [-77.34835705405091, 34.654794547944384], [-77.3485203206794, 34.654956772067436], [-77.348719519572, 34.65525068280241], [-77.34887252350171, 34.655407740046876], [-77.3490863448772, 34.65553840924745], [-77.34890008127715, 34.65568646373431], [-77.34881382480634, 34.655719652034755], [-77.3487063600367, 34.65573675136498], [-77.34851120242918, 34.65580702832504], [-77.34834000087614, 34.65583092199108], [-77.34821488709163, 34.655925770763155], [-77.3480695789512, 34.65584925066309], [-77.34787882208596, 34.65584684092217], [-77.34761395563235, 34.655820482935674], [-77.34755286374012, 34.65581816849036], [-77.34750301257483, 34.65582272048012], [-77.34727655153634, 34.65578690547387], [-77.34697045089732, 34.655728860385864], [-77.34689003157175, 34.65570653053701], [-77.34675971465047, 34.65569039063439], [-77.34666601861089, 34.65575746766094], [-77.34659418233768, 34.65582759993765], [-77.3465247642335, 34.65589012290133], [-77.34655006860584, 34.656161915909735], [-77.34660528881281, 34.656451853571255], [-77.34660786891992, 34.656722712351865], [-77.34679594814786, 34.65705859564528], [-77.34684626570541, 34.65712303870892], [-77.34686863672798, 34.657126437098015], [-77.34720697360393, 34.657282782609784], [-77.34729379643821, 34.65738527168597], [-77.34740077725642, 34.657450400378856], [-77.34740469257221, 34.65745278397989], [-77.34741076217554, 34.65745647907521], [-77.34751128697458, 34.65752881336991], [-77.34759008449383, 34.65759565185121], [-77.34773112421877, 34.65766770980051], [-77.34789662728996, 34.657752265624495], [-77.34794164659009, 34.6577516157283], [-77.34821067765593, 34.6577117717996], [-77.34832407304626, 34.65764202665206], [-77.34853666766128, 34.65752595031316], [-77.34904476256335, 34.65736341042904], [-77.34914273964301, 34.65735525286716], [-77.34924669467372, 34.65734430235689], [-77.34967894947127, 34.65725606257946], [-77.34976659037734, 34.65727296863808], [-77.35013301767563, 34.65750535601694], [-77.35054594096488, 34.65786998447423], [-77.35085938183921, 34.65836388681818], [-77.35132005549264, 34.65862864447622], [-77.351722743946, 34.658951168511756], [-77.35203617061241, 34.659353341318734], [-77.35226902654344, 34.66016267493723], [-77.35226970070958, 34.66016500280679], [-77.35226984876472, 34.66016525385717], [-77.35226983730496, 34.6601655593067], [-77.35226979498049, 34.660166495191405], [-77.35221163637382, 34.6605952507245], [-77.35236824803857, 34.6606559439006], [-77.35249097996696, 34.66055688677834], [-77.3525889232065, 34.66046332026748], [-77.3526400505485, 34.6604152797388], [-77.3527498392203, 34.66036271020515], [-77.35292851499462, 34.66025745207707], [-77.35348880580045, 34.66004788914413], [-77.3535265742064, 34.660046854927955], [-77.3535839444854, 34.66005754639253], [-77.35421597642916, 34.6602903209662], [-77.35442397308412, 34.66049302764495], [-77.35532216672648, 34.660345273647366], [-77.35551212718012, 34.66036636618108], [-77.35564275603248, 34.66037653211652], [-77.35579687464624, 34.66052482109821], [-77.35604717753723, 34.660724189953655], [-77.35625753465226, 34.660888138594174], [-77.35645760632605, 34.661059955435775], [-77.35671264260915, 34.66124303193154], [-77.35687464786585, 34.661382630276194], [-77.35703235253845, 34.661556026757445], [-77.35728428688532, 34.66171996808376], [-77.35733785212403, 34.66200115361097], [-77.35732807057735, 34.662216952276275], [-77.35730282413905, 34.66242797071061], [-77.35723033006485, 34.66253993678292], [-77.35711982741766, 34.662689759308954], [-77.35695271280295, 34.662898071250055], [-77.35699508006925, 34.6632404740065], [-77.35703635035142, 34.66335955893909], [-77.35710346034097, 34.66334159787482], [-77.35739915457208, 34.66337893872817], [-77.35759086620686, 34.663410009751765], [-77.3580701398164, 34.663588573212266], [-77.35807713702745, 34.663590357682345], [-77.35807787369437, 34.66359943561998], [-77.35813086740407, 34.66394319932217], [-77.3581494494574, 34.66406506435982], [-77.35812804625843, 34.66426655365631], [-77.35811959759513, 34.66434608609163], [-77.35814445915105, 34.66455313645222], [-77.35814942462497, 34.66471733183531], [-77.35817309506116, 34.664944743276266], [-77.35813619654066, 34.66504165853168], [-77.35814568529273, 34.665427777010045], [-77.35814136148208, 34.66551196000937], [-77.35814311669756, 34.66552809485586], [-77.3581444633111, 34.66555759965999], [-77.35813578405444, 34.666016488747054], [-77.35806880775326, 34.66635623743278], [-77.35806033247803, 34.66651424082086], [-77.35806791886836, 34.66676621597611], [-77.35802081583724, 34.66700705619196], [-77.35810261736641, 34.66711862906973], [-77.35812754742076, 34.66745733178267], [-77.35812019478404, 34.667480790959075], [-77.3577697369297, 34.66775425886129], [-77.35774915083006, 34.66776006104521], [-77.35738180327172, 34.66805999830296], [-77.35737223456698, 34.66807092714605], [-77.35735371315803, 34.66815678925196], [-77.35726620859653, 34.66855097412883], [-77.35726338444634, 34.66857326597044], [-77.35727594793664, 34.66861697728445], [-77.35732791243169, 34.6692918849977], [-77.35762294019752, 34.669291088636726], [-77.35791290650712, 34.66918174769092], [-77.35803241338688, 34.669143728724116], [-77.35829030623198, 34.669053509553194], [-77.35849338961832, 34.669135376342275], [-77.35854221365088, 34.66914546053234], [-77.35853261675405, 34.66924957311143], [-77.35853500662175, 34.66937335257775], [-77.35855344465486, 34.6695310258893], [-77.35850244399447, 34.669704460934064], [-77.35835376036954, 34.66988563812215], [-77.35830806415998, 34.67011414647831], [-77.35840099736528, 34.67036653590235], [-77.35849179622899, 34.670421273691964], [-77.35867955797738, 34.67061657163917], [-77.35897538729724, 34.6707750146683], [-77.35898592570487, 34.67078067009929], [-77.35926401975544, 34.67095504197213], [-77.35949222762504, 34.67109813244226], [-77.3595471664712, 34.67113127235946], [-77.35962023318405, 34.67117381118044], [-77.35983964185715, 34.67130031856462], [-77.3600158674347, 34.671355858841025], [-77.36018383778386, 34.67142954855913], [-77.36055871055699, 34.67152757289989], [-77.36056406311117, 34.671528972520534], [-77.36056582179485, 34.67152968522063], [-77.360568504205, 34.671530917460956], [-77.36091896084399, 34.67165202801785], [-77.36110104395107, 34.671740738108085], [-77.36123209462409, 34.67180517053518], [-77.36157557987568, 34.67187993680962], [-77.36163128151561, 34.671892061421055], [-77.36165412287505, 34.6718970332694], [-77.36173428689132, 34.67193158478591], [-77.36195355082522, 34.672038170190554], [-77.36217498265044, 34.672164369738184], [-77.36224371316564, 34.672208998144065], [-77.36231546515842, 34.67226566284563], [-77.36242047265249, 34.672349530203434], [-77.36250145345957, 34.67240478830522], [-77.36266567858888, 34.67253567203947], [-77.36276308359191, 34.67259758398072], [-77.36288463463815, 34.67267484291477], [-77.36303857376986, 34.67277970897031], [-77.36316332204302, 34.67288304292562], [-77.3632797660855, 34.67298824061968], [-77.3633904335233, 34.673092729194934], [-77.36346868440236, 34.67323701819201], [-77.36365156332377, 34.673262830701496], [-77.36379534330665, 34.673379749573684], [-77.36389543661458, 34.673453582596025], [-77.36392501142862, 34.67347703155543], [-77.363952656638, 34.67350286045109], [-77.36404067450252, 34.673585095760274], [-77.36412914135869, 34.67367938338779], [-77.36426499947271, 34.67380661546556], [-77.36439266361037, 34.67392978419563], [-77.3644827868253, 34.6740331690955], [-77.36458237378882, 34.674147409205865], [-77.36458938844792, 34.67415568466065], [-77.36468305719961, 34.67427320996765], [-77.36476396017495, 34.67436614963668], [-77.36487999135423, 34.67451582003741], [-77.36500943950156, 34.67477054441199], [-77.36503560350378, 34.67479024565935], [-77.3650469664099, 34.67481464809689], [-77.36506134631337, 34.6748810601587], [-77.36511099181686, 34.675126437739166], [-77.36519360639315, 34.675281885996704], [-77.36535937279744, 34.67562710010564], [-77.36543191055631, 34.67566782703993], [-77.3654212981278, 34.67573798561244], [-77.36554899380192, 34.67595152536786], [-77.36555641767458, 34.675966204014415], [-77.36567019774168, 34.67619117018558], [-77.36565468175567, 34.67628478490653], [-77.36575173565438, 34.67633743676397], [-77.36613253127842, 34.67646879265093], [-77.36629102455467, 34.67654137451596], [-77.36634539524724, 34.67654146497365], [-77.3664462128903, 34.67657191089942], [-77.36681042178779, 34.67681388109011], [-77.36707096885823, 34.6767713024159], [-77.36744957502724, 34.676673602065904], [-77.36767418932145, 34.676558985431086], [-77.36801481934883, 34.676438831990886], [-77.36811221594243, 34.676452347852326], [-77.36841640601995, 34.67652387191241], [-77.36916499133093, 34.676604078571806], [-77.3692668360594, 34.67659810966463], [-77.36933545369699, 34.6766047325573], [-77.36941292966917, 34.676651531064614], [-77.36974104859625, 34.67708093069536], [-77.36991273056822, 34.6775576127469], [-77.36991126339049, 34.677738379083934], [-77.37006791562831, 34.677962659512986], [-77.3702961913642, 34.67823050063498], [-77.37053558285263, 34.678413557101294], [-77.37056302686936, 34.678443006521626], [-77.37051882360983, 34.67847133281609], [-77.37022782527957, 34.678822432009206], [-77.37007330045876, 34.678796375733285], [-77.36987303534073, 34.678634474887126], [-77.36981455868754, 34.67860134501543], [-77.36926998697543, 34.678650272390854], [-77.3692504687155, 34.67864142165137], [-77.36920864965887, 34.67862918319367], [-77.36923315842829, 34.678260498205915], [-77.36883231222936, 34.67809599927306], [-77.36832437682496, 34.67841163506873], [-77.36814667835387, 34.6783964809626], [-77.36795999262164, 34.67845227497513], [-77.36756251954398, 34.67834715903068], [-77.36713950703839, 34.678637735974434], [-77.36682573093725, 34.67882393102789], [-77.36673029224814, 34.67891318964891], [-77.3665056948768, 34.6790006924105], [-77.36647237059451, 34.67901048540861], [-77.36642863507035, 34.67901128300242], [-77.36619793342055, 34.67902044003989], [-77.36617128027356, 34.67901687320831], [-77.36612090167688, 34.67901120928989], [-77.36577506694806, 34.6789517670158], [-77.36562143760943, 34.67884925556814], [-77.36539830190054, 34.67884760007533], [-77.36532666179323, 34.678833879689925], [-77.36521856111685, 34.67884955350711], [-77.36514670317035, 34.67884418634089], [-77.36505079958869, 34.67875331613814], [-77.36503370206599, 34.67873406682813], [-77.3650211829856, 34.678717314781736], [-77.3647988101511, 34.67852067235668], [-77.36458305268465, 34.67830276493794], [-77.36457766917214, 34.67829669167874], [-77.36457308600508, 34.67829150211726], [-77.36440007103946, 34.6780391867615], [-77.3643265753157, 34.677837986628916], [-77.3642728377969, 34.67774290984072], [-77.36418214224554, 34.67762188014501], [-77.36407524343363, 34.677500802465865], [-77.36395871570714, 34.67740114632967], [-77.36376896281138, 34.67698330243492], [-77.36374699472414, 34.67696505339355], [-77.36374605091791, 34.67694297999979], [-77.36372711926138, 34.67688928787664], [-77.36373047791751, 34.6767014250283], [-77.36376686533757, 34.67660542219404], [-77.36375083520204, 34.67656786548817], [-77.36371859771789, 34.676562634533774], [-77.36357658294651, 34.676615048416906], [-77.36347956489661, 34.676669838946154], [-77.36322033587939, 34.6768115451809], [-77.36303657577241, 34.676915342855864], [-77.36275349439347, 34.67707936563151], [-77.36258773041574, 34.67715565628403], [-77.36251498390098, 34.677179905953814], [-77.36241887533987, 34.67719908204644], [-77.36218997744484, 34.677268722829936], [-77.36195626542455, 34.677188906074676], [-77.36193005022027, 34.67718118380253], [-77.36191831738054, 34.67717369799304], [-77.36182537569813, 34.67711804730963], [-77.36163708209068, 34.67701250234871], [-77.36142653882253, 34.67680603672505], [-77.36139244988247, 34.676806609634625], [-77.36089175489201, 34.67684777423049], [-77.36081996743567, 34.67685311180441], [-77.36081437307635, 34.67685324158908], [-77.36080831589169, 34.67685463415281], [-77.36077823424074, 34.67686337076759], [-77.36014528723032, 34.67709657910639], [-77.36005214397237, 34.67704998997212], [-77.35979692733417, 34.67699818619691], [-77.35968411457425, 34.676939090644], [-77.35960166792964, 34.67690756970065], [-77.35948634849572, 34.67695912210577], [-77.3589880195515, 34.67695986660465], [-77.35878398722025, 34.676974679335814], [-77.35880378083698, 34.67713462016384], [-77.35885069360266, 34.67718645730409], [-77.35890442922438, 34.67724789253009], [-77.35900045820136, 34.677465381600726], [-77.35908975579501, 34.677582722430245], [-77.35910075260904, 34.67760250287219], [-77.3591864126893, 34.677716447248315], [-77.35932340894624, 34.67786638195011], [-77.3594347038038, 34.67791952593778], [-77.35960253569041, 34.67799966612474], [-77.35971710707044, 34.67809634494915], [-77.35983292469221, 34.678172925417], [-77.35999544068825, 34.67827629709259], [-77.35995062631828, 34.67843923385098], [-77.35994568854588, 34.67851170663418], [-77.35991651560644, 34.67861693001378], [-77.35983498704931, 34.67869881393805], [-77.35963730774081, 34.67884697441397], [-77.35952384953976, 34.67890705272065], [-77.35938271357762, 34.67900463877969], [-77.35911803058335, 34.67918551606227], [-77.3587577732909, 34.67981535788612], [-77.35861941796684, 34.68001995126585], [-77.35857656416658, 34.680090153322666], [-77.35793597515774, 34.68058474464788], [-77.35785826955949, 34.68062164983313], [-77.35774666417036, 34.680691536280904], [-77.35766109024439, 34.68086168469158], [-77.35758338161179, 34.68101619483067], [-77.3576061304635, 34.68119822595665], [-77.35761752828844, 34.68128942798307], [-77.35761205544215, 34.681360734986605], [-77.3573812622047, 34.68147129473527], [-77.35737900706657, 34.68147267100618], [-77.35737849725865, 34.68147280130288], [-77.35737731393806, 34.68147334819327], [-77.3570490352665, 34.68157850294106], [-77.35684631791517, 34.68163925392915], [-77.35639444964175, 34.681852036994385], [-77.35637717569483, 34.68186159133337], [-77.35636659889309, 34.68186764615899], [-77.35634949475364, 34.681871280534516], [-77.35572558417547, 34.68201406959007], [-77.35550279760193, 34.68212879864396], [-77.35548006754297, 34.68197761907366], [-77.35530026749719, 34.681890485344525], [-77.3551796899585, 34.681832796243526], [-77.35493903224523, 34.68156453759768], [-77.35486569063286, 34.681436581026276], [-77.35477828220078, 34.68115378464741], [-77.35468685075509, 34.68078583466275], [-77.35457351614085, 34.680639964808165], [-77.35426711119769, 34.680320514810816], [-77.35394552850224, 34.679898964820914], [-77.35389049047413, 34.67982200823748], [-77.35384880125795, 34.67976472168651], [-77.35350991681621, 34.67933784653274], [-77.35350431375602, 34.67933085931996], [-77.35348845673427, 34.67932682229056], [-77.35296500820913, 34.67915324319796], [-77.3527634522531, 34.679112712815225], [-77.35211295436655, 34.67902831893613], [-77.35183567552563, 34.67892016643463], [-77.35134722846625, 34.678625998493175], [-77.34979137641068, 34.6785756272468], [-77.34940243380007, 34.67905531662048], [-77.34908751279339, 34.67944371057774], [-77.34858703402139, 34.680060949190505], [-77.34819812861049, 34.680540564183055], [-77.34841239405041, 34.68088479564979], [-77.34883479385945, 34.681010320390186], [-77.34995518910493, 34.68127414880451], [-77.34995522451837, 34.68127416874013], [-77.34995558421028, 34.68127441124596], [-77.35046804850002, 34.68166780121159], [-77.35081775307154, 34.68203884703011], [-77.3508836510486, 34.682121405981], [-77.35088901918873, 34.68213217726096], [-77.35087243958814, 34.6822379584083], [-77.35078921023755, 34.68299736840917], [-77.35073543640236, 34.68311651937784], [-77.3506768831692, 34.683190524790746], [-77.35046804106125, 34.68403292390355], [-77.35039723632144, 34.68413771669786], [-77.35041723292835, 34.68423689314622], [-77.35039269400141, 34.68448509956482], [-77.35037548480268, 34.68462808473498], [-77.35042950923375, 34.68485095108187], [-77.35088326023836, 34.68504575167243], [-77.35102158625804, 34.685183652630755], [-77.35105077727536, 34.685746732859656], [-77.35129297652972, 34.685763162795], [-77.35104974414611, 34.68599765994092], [-77.35101051506936, 34.686039469442996], [-77.35093127924544, 34.686158308420765], [-77.35075267749455, 34.68644916116725], [-77.35068144466638, 34.68653560704462], [-77.3504607891302, 34.686797812720705], [-77.35044785594366, 34.68681136780035], [-77.35044724462064, 34.686816657765775], [-77.35042129241424, 34.68688401903628], [-77.35035515706757, 34.687067785228706], [-77.35035256534846, 34.68707819489923], [-77.35023857269834, 34.6872699422491], [-77.35021077883867, 34.687331297422304], [-77.35011045168199, 34.687439201381785], [-77.35008822089026, 34.68745578844703], [-77.34993564242774, 34.687525881987774], [-77.34982910897686, 34.68754521014233], [-77.34931440727604, 34.6876980443468], [-77.34928943150828, 34.68770503338065], [-77.34928441008284, 34.68770726806034], [-77.34927994219255, 34.687706577070934], [-77.34897674198147, 34.687746953469876], [-77.3489724124074, 34.68775105613357], [-77.34896487045812, 34.687746027811436], [-77.34873932064934, 34.687728440952064], [-77.34868742619275, 34.68770182042937], [-77.3485678918463, 34.687556832120634], [-77.34855429890479, 34.687476646242146], [-77.34850965482622, 34.68732113574514], [-77.34848795857258, 34.68713351932919], [-77.34846732317266, 34.68697614978973], [-77.34844996695996, 34.68684194878787], [-77.34843681701386, 34.686778696197365], [-77.3484095577126, 34.68660380557894], [-77.34840881351163, 34.686599983154316], [-77.3483759790785, 34.68643133572013], [-77.34830543995756, 34.68637440757013], [-77.3481938623442, 34.686309577586925], [-77.34807460841793, 34.68626908194721], [-77.34792782144183, 34.68619511553881], [-77.34761987671831, 34.68622484827522], [-77.34734677700592, 34.686134807934266], [-77.34726007009168, 34.686107565569], [-77.34680701066786, 34.686142369069685], [-77.34674163474553, 34.68615748185435], [-77.34667599710028, 34.686162865377966], [-77.34621158683613, 34.686252748344174], [-77.34611147097898, 34.68626631092475], [-77.34584144496154, 34.68622523852066], [-77.34560962877302, 34.68619513342847], [-77.34554536231201, 34.68615456613339], [-77.34520793032331, 34.68600115501235], [-77.34499609760667, 34.685984824164755], [-77.34492120876381, 34.68593655261972], [-77.34489589694911, 34.685867633108415], [-77.3448812590899, 34.685711499591804], [-77.34476402484349, 34.68526917442904], [-77.3446862276635, 34.68499079545293], [-77.34467293656392, 34.68494510361944], [-77.34466761820983, 34.684924205984565], [-77.34463711246761, 34.68485668578806], [-77.34454122671309, 34.684652291468], [-77.34448962894658, 34.6844612546473], [-77.34436270632334, 34.684043797617456], [-77.34435267895876, 34.68400905310304], [-77.34434813141154, 34.68399329575892], [-77.34410516511885, 34.68380535719875], [-77.3440814637208, 34.683786204044864], [-77.34387904788161, 34.683648212268224], [-77.34383818984095, 34.68361663768263], [-77.34380134283178, 34.68358095796819], [-77.34340569013415, 34.68321717365169], [-77.3433372720622, 34.68321377985296], [-77.34331836703758, 34.68315986113274], [-77.34294910435247, 34.68272840324447], [-77.3429458532399, 34.68272666316846], [-77.34294431029583, 34.682723816089805], [-77.34268903444476, 34.6825934339747], [-77.34262059861555, 34.682582792218575], [-77.3424054784551, 34.68253932934029], [-77.34219243361996, 34.68251811084353], [-77.34195975289492, 34.68237154462167], [-77.34153198946775, 34.68223801320416], [-77.34132388227384, 34.682141728243984], [-77.34101479442892, 34.68201383518546], [-77.34087892322401, 34.68195223854557], [-77.34046356509792, 34.68179408795332], [-77.34021096287918, 34.681851986302014], [-77.33956823958692, 34.68227682379654], [-77.33948416367815, 34.68229353327743], [-77.33938424024115, 34.68231406765171], [-77.33884463244722, 34.682434628575905], [-77.33793064404504, 34.682644249729506], [-77.33754224752926, 34.68279707280159], [-77.3373174864796, 34.682834260657195], [-77.33690878867513, 34.68291723294003], [-77.33668178947549, 34.68290886949929], [-77.3365919005781, 34.682977855220834], [-77.3364625867925, 34.68312575266716], [-77.33639880465836, 34.68329628764947], [-77.33632924156278, 34.68348227663583], [-77.33629734146612, 34.68363579381182], [-77.33600612535564, 34.683963991607996], [-77.33586993387459, 34.68410403080184], [-77.33558532607026, 34.68422083379136], [-77.33483446177257, 34.68502647998058], [-77.3347728476952, 34.685307022062304], [-77.33547608283513, 34.68532110180688], [-77.33561901258352, 34.68529641206507], [-77.33598696045225, 34.68562786442146], [-77.3360399171259, 34.68567556849602], [-77.33609536494376, 34.68571708451586], [-77.33654175195153, 34.68603913730268], [-77.33655674687023, 34.68606620005443], [-77.33658691224998, 34.68608547027737], [-77.33721651745944, 34.686346848562806], [-77.337625176322, 34.68663236882077], [-77.33848333059018, 34.68694872785896], [-77.33950843072037, 34.6873307193668], [-77.33980913132083, 34.687356492306975], [-77.33995436989309, 34.687393468177405], [-77.34027853234059, 34.68747599296836], [-77.34157578214376, 34.68772249166304], [-77.34210739069829, 34.68768716909756], [-77.34244971350691, 34.68783835533537], [-77.34282150738368, 34.68810182046135], [-77.34293450778215, 34.68825363885624], [-77.34313718330282, 34.68826338269922], [-77.34331754876877, 34.688747224836845], [-77.34350879028318, 34.68898226272785], [-77.34364217318846, 34.68928576112362], [-77.34371488224053, 34.68944136019431], [-77.34384421208846, 34.6898986236734], [-77.343847341271, 34.68991056131646], [-77.34384729408603, 34.68991625570684], [-77.34383369098818, 34.68998714282991], [-77.34379500456913, 34.69016143248417], [-77.34373991868227, 34.69039304200158], [-77.34373513731934, 34.69041333694081], [-77.34373068664702, 34.69043629937985], [-77.34369689046281, 34.69045814139463], [-77.34352365499218, 34.69057190068782], [-77.34350687954705, 34.69057235724407], [-77.34336874203463, 34.69055747251865], [-77.34309418431768, 34.69051027349364], [-77.34308343667477, 34.690509298313316], [-77.34307710688483, 34.69050888661337], [-77.34249382139635, 34.69061628938618], [-77.34242871725623, 34.690702515477795], [-77.34217385653024, 34.69097092730536], [-77.34202309071672, 34.691135641496246], [-77.34144563818232, 34.69160192539366], [-77.34078653580839, 34.69223436910387], [-77.34075564527102, 34.692266823618745], [-77.3407439274545, 34.692285905862065], [-77.34066530578416, 34.69236459477899], [-77.34020014587172, 34.692847887604955], [-77.34008193191806, 34.692946162506395], [-77.33995060473566, 34.693308633795404], [-77.3399231573317, 34.693373264926144], [-77.33991663959155, 34.69343795897995], [-77.33988018958269, 34.69375696120768], [-77.33987332810395, 34.69386747656694], [-77.33986116072768, 34.694027126174475], [-77.33975045407166, 34.69437170938672], [-77.33968971230613, 34.69451346714706], [-77.33957570858232, 34.69477952210842], [-77.3395814700667, 34.694882267720516], [-77.33954617044496, 34.69502455272011], [-77.3393671660564, 34.69505961492097], [-77.33925468658025, 34.695026503454066], [-77.33881942776476, 34.69488442324595], [-77.33854065110611, 34.69478755241591], [-77.33805431256862, 34.69460438970976], [-77.3378363166716, 34.69454113780462], [-77.33772338967557, 34.69453599329945], [-77.33727316321963, 34.69418610669527], [-77.3372354486619, 34.69415500707641], [-77.3368059941962, 34.69380087498962], [-77.33677140494481, 34.69378384307919], [-77.33674769636009, 34.6937733840249], [-77.33662832892134, 34.69369684566966], [-77.33659680802958, 34.693686067986185], [-77.33648171861142, 34.69365864550734], [-77.33641779946693, 34.69366174185377], [-77.33637196655428, 34.69361672116523], [-77.33620905071045, 34.693566934224776], [-77.3360134010228, 34.693578716117074], [-77.33587209985149, 34.693441596009485], [-77.33574357511799, 34.69310866519225], [-77.33561355872766, 34.69309804746586], [-77.3355869044822, 34.69299333935855], [-77.3353637275358, 34.69259261884813], [-77.33532838707768, 34.69252916445629], [-77.33508255821754, 34.69208776593141], [-77.33492510773786, 34.69180505407735], [-77.33378282200849, 34.692266021992225], [-77.33367500662698, 34.69237186577565], [-77.3333477300811, 34.69330043523215], [-77.33327978030607, 34.69334707323657], [-77.33253214909757, 34.693912000919724], [-77.33251579992616, 34.693916059161246], [-77.33223655726613, 34.69442755580863], [-77.33220358771378, 34.694538900167466], [-77.33216134744382, 34.69468155487304], [-77.33210153884615, 34.69480695775006], [-77.33197138572322, 34.69495128862118], [-77.33169314173941, 34.69532568219581], [-77.33160046933416, 34.69548952050788], [-77.33154788430113, 34.695592804081386], [-77.3313981511105, 34.695701960708675], [-77.33068803168058, 34.69610711667348], [-77.3306813270085, 34.69610856482704], [-77.33067487939519, 34.696108959893486], [-77.3300909281642, 34.69621601683677], [-77.33005035950053, 34.69621973356408], [-77.32988927805377, 34.696319133718454], [-77.32964702839715, 34.69646078244745], [-77.3296063899071, 34.69653673155134], [-77.32951673802317, 34.696749962313696], [-77.32930486966666, 34.697162773501475], [-77.32920308454494, 34.69734394407704], [-77.32911238030542, 34.6973871818544], [-77.32886661171928, 34.69749987346698], [-77.32842168155071, 34.697703800432585], [-77.32823383585773, 34.69776125268007], [-77.32776490632456, 34.69790369051983], [-77.32745769582087, 34.698006977567374], [-77.32718206580815, 34.698105378764616], [-77.32710105434515, 34.69812791063554], [-77.32704885450545, 34.69810980134492], [-77.32681443901832, 34.6980951547157], [-77.3265647141853, 34.69808806711383], [-77.32652249580431, 34.69805869751033], [-77.32628659234838, 34.69790787382533], [-77.32612296607147, 34.6977025697662], [-77.32605060311722, 34.69762255087562], [-77.32588818795475, 34.697426092933256], [-77.32572972134182, 34.69726910392132], [-77.32563767026804, 34.697224670991446], [-77.32556850987918, 34.697221509396485], [-77.32545997526017, 34.69721654762002], [-77.32542067360109, 34.69721520686525], [-77.3253920415643, 34.69721654022487], [-77.32526964779512, 34.6972198757052], [-77.32505906076673, 34.697275592874455], [-77.32494918163184, 34.697292556615466], [-77.324825003199, 34.69729185072715], [-77.32369999215332, 34.69753266943136], [-77.3236824086496, 34.69753134168211], [-77.32325400643715, 34.69708748508164], [-77.32279776095993, 34.69669621394306], [-77.32276783071951, 34.69667321268716], [-77.32273956553223, 34.696655918712935], [-77.32264044314823, 34.69663123901569], [-77.32219001245898, 34.69648696389569], [-77.32197781445281, 34.6964926195448], [-77.32159262258483, 34.696482542420895], [-77.32102235187276, 34.69647301280386], [-77.32097313015464, 34.69647712020245], [-77.32036525096184, 34.69658578689554], [-77.32033068634424, 34.69657711286849], [-77.32010143717378, 34.69657833383873], [-77.31982814489179, 34.69656950915052], [-77.31976833207192, 34.696579734847504], [-77.31969715117415, 34.69657455776797], [-77.31918520807537, 34.69652623794262], [-77.31891370885316, 34.69648458470861], [-77.31862024200018, 34.69641029645792], [-77.31853470749745, 34.696381971312455], [-77.31829837752838, 34.69633801462741], [-77.3181149110141, 34.696310728232454], [-77.3180527101697, 34.69630318057557], [-77.317936191138, 34.69628955749239], [-77.31776320229697, 34.69626936906802], [-77.31765275088313, 34.69627206303798], [-77.3174661736738, 34.69626141916651], [-77.31707550163631, 34.696321899398015], [-77.31685762780421, 34.696295340383884], [-77.31665336980404, 34.696252449557726], [-77.316457653055, 34.696255050904064], [-77.31626993664338, 34.69625754561848], [-77.31608188259345, 34.69629785074957], [-77.31582689252917, 34.69633404674629], [-77.31561487589128, 34.69665697285537], [-77.31561678435045, 34.6967053801358], [-77.31568474468278, 34.69684648102794], [-77.31571302994675, 34.696975562302725], [-77.31575642899764, 34.6971736125724], [-77.31535106707952, 34.69735849934979], [-77.31490474770347, 34.69743162777644], [-77.31473453397857, 34.697419840654824], [-77.31463963038863, 34.697406907730155], [-77.31445651485919, 34.69735167300716], [-77.31426526963745, 34.697300712029474], [-77.31418242295803, 34.69725967531094], [-77.31395397482751, 34.69714601939752], [-77.31353902942169, 34.696989978366545], [-77.3132527270939, 34.69689712071799], [-77.31312620550875, 34.69677431212008], [-77.31266765436347, 34.696621964873074], [-77.31261148231033, 34.69660208332044], [-77.31257814617567, 34.69660023409203], [-77.31250919313368, 34.696583597567134], [-77.31199200228947, 34.69655709138669], [-77.31180297219728, 34.69643565808222], [-77.31146126709399, 34.69632346380653], [-77.31144806790347, 34.69631449957632], [-77.31141663200017, 34.696305937345535], [-77.31105410741415, 34.696223369031905], [-77.31090955954649, 34.69616193843508], [-77.31040869293649, 34.695931535059806], [-77.3102708895453, 34.69587498719833], [-77.30983589398836, 34.69573663698646], [-77.30970187200668, 34.69568691521107], [-77.30927195323171, 34.69562731052168], [-77.30926879384127, 34.695628042810284], [-77.30925971036845, 34.69562658847457], [-77.30877178350714, 34.695613961500555], [-77.30867474115209, 34.69561209808554], [-77.30853126722997, 34.69560874472475], [-77.30806280838583, 34.69565761306558], [-77.30779423529697, 34.695593417481575], [-77.30751043953714, 34.69586610484959], [-77.30745078559298, 34.69592728646009], [-77.30730883279426, 34.69619136144867], [-77.30700987509344, 34.6968132786134], [-77.30693293728692, 34.697027785200525], [-77.30706928392526, 34.69701474836924], [-77.30747318369468, 34.69740049725235], [-77.3076487130608, 34.697380070345986], [-77.30817834207987, 34.69731843347645], [-77.3086810090338, 34.697259931694504], [-77.30892132018721, 34.69723196337806], [-77.30944459318303, 34.6970817743304], [-77.30990329247953, 34.69710823404723], [-77.31003978316465, 34.697093842591656], [-77.31038432931189, 34.697422022588086], [-77.31039612245019, 34.697517398993064], [-77.3104327319893, 34.69780114974429], [-77.31049120334522, 34.69823239193622], [-77.31051365148811, 34.698379030948416], [-77.31054516856886, 34.69867259134077], [-77.31057555483176, 34.69895563656377], [-77.31085004759768, 34.699307681953016], [-77.31100610654705, 34.69994643208222], [-77.31136070265083, 34.69992815114202], [-77.31220243720307, 34.699950217389954], [-77.31280044295048, 34.700397361808], [-77.31422381942768, 34.700795071413694], [-77.31434028527214, 34.70083387434949], [-77.31442787491514, 34.70083983174093], [-77.31552491438156, 34.700877906060335], [-77.31581376282114, 34.70057729116436], [-77.31621095832915, 34.70013929287241], [-77.31634761741833, 34.69998859536664], [-77.31671022730451, 34.69947976413291], [-77.31724386536243, 34.69908461216782], [-77.31759287031315, 34.699076634722466], [-77.31785413092962, 34.699044845547455], [-77.3181914135973, 34.69907000010478], [-77.31844675181931, 34.69906574782888], [-77.31872145851753, 34.69899690384217], [-77.31936814547521, 34.698836742264554], [-77.31971698672322, 34.69881525209357], [-77.32004354388266, 34.69876835538648], [-77.32063392843853, 34.69868246525721], [-77.32096247753182, 34.698649817510024], [-77.32119774236186, 34.69866890179274], [-77.32125851518924, 34.698661195698776], [-77.32138676484232, 34.6987117101352], [-77.3215278197365, 34.69876451638948], [-77.3216216812483, 34.698806843803624], [-77.32181497732321, 34.69898239078067], [-77.32202578271779, 34.69911095836576], [-77.32235489002372, 34.69935534708276], [-77.3229555179429, 34.69959878956507], [-77.32305910131012, 34.69967527206281], [-77.32325964800937, 34.69973434593598], [-77.32359839568652, 34.699879587234825], [-77.32367836835553, 34.69991387590182], [-77.32408976396341, 34.70024875683224], [-77.32424186711788, 34.700268694012536], [-77.32438261423077, 34.700377941215855], [-77.32476044561345, 34.700658056474296], [-77.32546312086228, 34.70120457946612], [-77.32607209535196, 34.70166756896485], [-77.32681393522182, 34.70223155480634], [-77.32771332197021, 34.702407181874364], [-77.32824900759579, 34.702417196747064], [-77.32860059806862, 34.702433840023446], [-77.33061641686612, 34.70242784086054], [-77.33064369472116, 34.70241764354435], [-77.33069205371874, 34.70240167466678], [-77.33271385335973, 34.701734044553405], [-77.33327770555631, 34.70159451846788], [-77.33496539129334, 34.701176880280414], [-77.3358580098696, 34.70095598097916], [-77.33697900086298, 34.700408761948175], [-77.33724205688281, 34.70031349616385], [-77.33831230603526, 34.69944274623987], [-77.33854512361509, 34.69924387799262], [-77.33878699064681, 34.699117156872525], [-77.33930585020269, 34.698641641837966], [-77.33960749174764, 34.6982903248295], [-77.3400166969163, 34.697995184882146], [-77.34037491996187, 34.69777264884395], [-77.34043982519147, 34.69773198854924], [-77.3410139643217, 34.69761451173965], [-77.34101963582387, 34.6976140828442], [-77.34102805689997, 34.69761517697186], [-77.34162574181805, 34.697588414269205], [-77.34214582169697, 34.69753200697272], [-77.34233171242168, 34.69749431833471], [-77.34266385128089, 34.6971334410498], [-77.34289874747972, 34.69686401657177], [-77.34296356978132, 34.69677784348885], [-77.34310216870509, 34.6966274721331], [-77.34364327138704, 34.696103793320404], [-77.34389586874349, 34.69575243639483], [-77.34410670363756, 34.69523800812616], [-77.34410689423915, 34.69523610215141], [-77.34410794762147, 34.69523401034048], [-77.34439893722259, 34.69470864741341], [-77.34457431170063, 34.694375930443286], [-77.3447554304353, 34.69417234713111], [-77.34490139347783, 34.694027594608514], [-77.34506469290211, 34.6939927810157], [-77.34540807686744, 34.69383849214867], [-77.34573784409672, 34.69373614900789], [-77.34615016996474, 34.69366261451737], [-77.34635695368137, 34.693665575800516], [-77.34660623367584, 34.6941000316017], [-77.34680026143924, 34.69420033753071], [-77.34689898233256, 34.69426894361479], [-77.34703538813233, 34.694346820174204], [-77.3471956642373, 34.6944348280524], [-77.34731145224458, 34.69450137154141], [-77.34772571982275, 34.69473944932052], [-77.34775599495703, 34.69479201570821], [-77.34798676632113, 34.694848027992315], [-77.34849606730491, 34.69454481600869], [-77.34885064968171, 34.69473804040875], [-77.34903211017156, 34.69476029136543], [-77.34919902575378, 34.69486414576066], [-77.34949958633833, 34.69498334155028], [-77.34954572645489, 34.69499153921661], [-77.34955775527602, 34.69501157839161], [-77.34966253982508, 34.69505703214354], [-77.34963326944947, 34.69496499058542], [-77.3496132738411, 34.694939560373804], [-77.34967268086491, 34.694715889959966], [-77.34965165730264, 34.69468820932262], [-77.34949272132289, 34.69463814250469], [-77.34940034661889, 34.69450958295874], [-77.34926892583412, 34.694416171994675], [-77.34900239659905, 34.694076827521286], [-77.34940357802157, 34.693550878569525], [-77.34940939656386, 34.69353357878676], [-77.34945897962962, 34.69348155354731], [-77.34989253567491, 34.69297987427355], [-77.35003101670586, 34.6928305333967], [-77.35024975242736, 34.692628499730205], [-77.35069961997633, 34.6921466865215], [-77.35102954127314, 34.69184901824565], [-77.35142130635009, 34.69150990815719], [-77.35183624530737, 34.691287722800205], [-77.35226842039269, 34.690984325785934], [-77.35277246658788, 34.69063495595371], [-77.35306197648192, 34.690411268915376], [-77.35337622992677, 34.69006467311734], [-77.3533830005012, 34.69005758790295], [-77.35340924788916, 34.689993219983094], [-77.3535771462439, 34.689591431101164], [-77.35360218137811, 34.6895462637425], [-77.35429342237848, 34.68900945441182], [-77.35438297811277, 34.68902926832094], [-77.35485257438147, 34.68914522006858], [-77.35502887484725, 34.689195025511154], [-77.3553579540799, 34.689255305153466], [-77.35541657476415, 34.68926428855337], [-77.35545101042524, 34.6892643318132], [-77.35548692623038, 34.68928744914791], [-77.35581598226563, 34.68937763243585], [-77.3559533452061, 34.68947716059995], [-77.35623094543767, 34.68967265635291], [-77.35621559423959, 34.6898584794995], [-77.35662572599641, 34.690105822994624], [-77.35670404906053, 34.6902709496618], [-77.35686872619652, 34.69044777685279], [-77.35789021545939, 34.69086174333692], [-77.35782607581011, 34.68994096365319], [-77.3573025637533, 34.689810289165784], [-77.35757219444555, 34.689303375430015], [-77.35756805504573, 34.68900163126261], [-77.35775439821138, 34.688826650541614], [-77.3578667155586, 34.68858764523093], [-77.35777462355706, 34.68848587356131], [-77.35752703221006, 34.688179903609814], [-77.35742573630796, 34.688138640969456], [-77.35734261925892, 34.68805782241044], [-77.35703275323006, 34.68782067003713], [-77.35689720192116, 34.68775702937459], [-77.35666865311003, 34.68766300160963], [-77.35660445232003, 34.687234155830076], [-77.35623768437534, 34.68748216051346], [-77.35623312689223, 34.68747974393204], [-77.35623245144359, 34.687479216825466], [-77.35610264736287, 34.68738306829147], [-77.35609906348881, 34.68735927685443], [-77.35608048290995, 34.68725639510523], [-77.35617988526022, 34.68715028861615], [-77.35621870039483, 34.68714620826692], [-77.35633470612609, 34.687132431368006], [-77.35660507624445, 34.68716959666804], [-77.35662303071203, 34.68717015349516], [-77.35663485272953, 34.68717054073497], [-77.35666699451075, 34.68717584423393], [-77.35718571672824, 34.68729370139234], [-77.35732724701448, 34.687085162351266], [-77.35744880867865, 34.68664105181911], [-77.35750397892066, 34.686573502668686], [-77.35790127615749, 34.6861957666492], [-77.35808899181943, 34.68600576405364], [-77.35812453703366, 34.685963583837605], [-77.35817965444782, 34.68593149557567], [-77.35887562178898, 34.68535292165693], [-77.35895857289447, 34.6853100103293], [-77.35931377061674, 34.685103090234485], [-77.3593225101435, 34.68510179512747], [-77.35960811156278, 34.68513426252101], [-77.36006088195276, 34.6852475115482], [-77.36011597433496, 34.6852794585962], [-77.36026772641408, 34.685310487054245], [-77.36072474029086, 34.68541139063122], [-77.36103794606004, 34.685358196852754], [-77.36184426611827, 34.68543152200556], [-77.36194009217638, 34.68534834607072], [-77.3625216844703, 34.684755570147544], [-77.36293539116832, 34.68468601251364], [-77.36336168592686, 34.684574556340735], [-77.36389645786268, 34.68469774588639], [-77.36393326704518, 34.68470629525587], [-77.36450883652448, 34.68474647110131], [-77.36481959819696, 34.684812438358094], [-77.36515530824296, 34.68503495634942], [-77.36540799745254, 34.68514793988187], [-77.36559495594267, 34.68512873302666], [-77.36580656705415, 34.68523534290077], [-77.36597037663206, 34.68525958515903], [-77.36614788572854, 34.68528585466441], [-77.3662928827153, 34.685255192165506], [-77.36665575235624, 34.68531615500096], [-77.36673042153978, 34.68534094030617], [-77.36691981094096, 34.68527986556986], [-77.36727615596291, 34.685140568072526], [-77.36740125887935, 34.68509167717181], [-77.36765654465296, 34.68499384095483], [-77.36749606858632, 34.68520066908371], [-77.36772787933877, 34.685333168133916], [-77.3677313633483, 34.685544017357685], [-77.36769568413283, 34.68566062645317], [-77.36761555515932, 34.685813888884724], [-77.36773203982733, 34.68601448810462], [-77.36781600606231, 34.68644806053136], [-77.3681913397059, 34.68649435616436], [-77.36823458782202, 34.68656134452197], [-77.36834009837706, 34.68672168944564], [-77.3682427702109, 34.68690800383328], [-77.3684414710523, 34.68702030228204], [-77.36811166592591, 34.68715739894187], [-77.36762143151373, 34.68738634948703], [-77.36729179061948, 34.68753187870661], [-77.36713815235048, 34.687686815397385], [-77.36721460996584, 34.68779788898658], [-77.36788252686011, 34.687973832330364], [-77.36766668931739, 34.68858896004307], [-77.3680358806174, 34.68909315278838], [-77.36834813591727, 34.68919237454971], [-77.36835550731179, 34.68946907615781], [-77.36889759902633, 34.690249090910946], [-77.36903678862053, 34.69023921779692], [-77.36950115703135, 34.69028640069227], [-77.36997191607068, 34.69030780500779], [-77.37008167619547, 34.69029397064262], [-77.37022665731507, 34.69067407562767], [-77.37035219588904, 34.690803550726926], [-77.37044237162995, 34.69111384450621], [-77.37045631963593, 34.69112990144938], [-77.37043404590814, 34.69114254297311], [-77.37041110069539, 34.691136116906115], [-77.37003419026776, 34.691048372957226], [-77.36989358081412, 34.69094231773114], [-77.36955678833276, 34.69099073338535], [-77.36905331733922, 34.69101499634399], [-77.3686912960367, 34.69096016195821], [-77.36847503030369, 34.690914826470106], [-77.36862173732197, 34.690558745276086], [-77.3678933471547, 34.69079288774626], [-77.3675136647054, 34.69089301894149], [-77.36646075948585, 34.690799607702104], [-77.36620990026002, 34.69171350065132], [-77.36566591427712, 34.69264787681273], [-77.36568045322784, 34.69282298817292], [-77.36594261634255, 34.69289310050755], [-77.36593955843857, 34.69272543673878], [-77.367181247306, 34.69203868864582], [-77.3673607471915, 34.69231798903215], [-77.36748602748696, 34.6925129206076], [-77.36718470152671, 34.693241998441366], [-77.36798456394513, 34.693395989477885], [-77.36800142356515, 34.69340177934134], [-77.3680238127978, 34.69341379825109], [-77.36859704624453, 34.69373175263752], [-77.36833362160662, 34.694346003183306], [-77.36864191087915, 34.69525646989411], [-77.3686470089256, 34.69527030066592], [-77.36864674266226, 34.69527775580544], [-77.36866369836714, 34.695304516474515], [-77.36899261648308, 34.69579275219829], [-77.36934436206163, 34.69615666162967], [-77.36945299481079, 34.69622685494407], [-77.36953911767114, 34.69629034710876], [-77.37023768591722, 34.697008667352286], [-77.37034117462564, 34.69712014215707], [-77.37047145921196, 34.69720319478953], [-77.37080782320739, 34.697549425060906], [-77.37115252447443, 34.697857711065254], [-77.37129572470582, 34.697962347074046], [-77.37141649023769, 34.69807236834832], [-77.37160974327473, 34.69828225950992], [-77.37165760322304, 34.698472286240374], [-77.37175631576761, 34.69874950483836], [-77.37161596697938, 34.69929285801695], [-77.37216343230253, 34.699624406971296], [-77.37276232081305, 34.69919889644431], [-77.37291493502494, 34.69909737925889], [-77.37292657907342, 34.69908184860748], [-77.37333175586403, 34.699154789336944], [-77.37348978854445, 34.69917925499564], [-77.3735675511899, 34.69923162082071], [-77.37363442214024, 34.6993160509236], [-77.37375235823436, 34.69944991236787], [-77.37396125815887, 34.69961751844458], [-77.37410026900648, 34.699745957970904], [-77.37419729742487, 34.69983560719521], [-77.37423406869635, 34.69987108552125], [-77.37432984204528, 34.699963491457694], [-77.37441283165391, 34.70009020762732], [-77.37441575103846, 34.700094490265776], [-77.3744199521812, 34.70009983918679], [-77.37450721598586, 34.70022121117387], [-77.37456969668938, 34.700312339610086], [-77.37469745493001, 34.70046902730691], [-77.374855309441, 34.70066262463797], [-77.37489495852186, 34.700711251272736], [-77.37492020763182, 34.70075154749544], [-77.37507022095105, 34.70097059841871], [-77.37510176532554, 34.70100908036365], [-77.37525605121135, 34.70119277120355], [-77.37527072750855, 34.701210511418985], [-77.3752899905525, 34.70122776066064], [-77.3756288328204, 34.701628915500066], [-77.37567561483671, 34.7016873563764], [-77.37571912151162, 34.70181204862392], [-77.37580337305218, 34.70198327705653], [-77.3758347424159, 34.702088001826354], [-77.37587725626344, 34.70232067331436], [-77.3759958383013, 34.70255324948294], [-77.37607282023225, 34.702656404992915], [-77.3761986710058, 34.70286178647679], [-77.37630439668922, 34.70299822248887], [-77.37639003755888, 34.70310874001625], [-77.37649958135364, 34.70324890574801], [-77.3765831120407, 34.70335437927496], [-77.37664969853131, 34.70343814333524], [-77.37678375931034, 34.70359418910334], [-77.37694570873649, 34.703774661015174], [-77.3769920952023, 34.70382808028195], [-77.3770326574612, 34.70387288601297], [-77.37720183341187, 34.70406089238678], [-77.37739834916621, 34.70427798009763], [-77.37742470125349, 34.70428359676275], [-77.37742099858075, 34.70430688788415], [-77.37742380026054, 34.704342449487214], [-77.37744381699457, 34.70454744880427], [-77.37734945877011, 34.70473580601822], [-77.37733454687336, 34.70480617123996], [-77.37720811936101, 34.70493380713012], [-77.37680648323857, 34.70507174785388], [-77.37653682001317, 34.705184293319384], [-77.37627215859732, 34.705170885240676], [-77.37619581041703, 34.70516884479661], [-77.37585399965444, 34.7054744786365], [-77.37583873773234, 34.70549060757566], [-77.37581092653141, 34.705525957813784], [-77.37542883411693, 34.706042972813435], [-77.37526353431048, 34.706257228039505], [-77.37521461235553, 34.706379290212595], [-77.37530805708722, 34.70654697241883], [-77.3753799695861, 34.70664627105592], [-77.37562907468603, 34.70699023441166], [-77.37564861491967, 34.70722801406803], [-77.37574543627699, 34.70791244113603], [-77.37575801611953, 34.707932355530644], [-77.37666031050603, 34.707494620740384], [-77.37690863670446, 34.70704658150295], [-77.37661647434705, 34.70685448413406], [-77.37681512244046, 34.70635558395855], [-77.37683440728303, 34.70633712625779], [-77.3774581459815, 34.706135674847495], [-77.37777568300564, 34.70608441220776], [-77.37851047745475, 34.70607766886428], [-77.37868279273542, 34.706071687138575], [-77.37875900125017, 34.70607104392606], [-77.37914188707768, 34.705986211050615], [-77.379450933708, 34.70589561884165], [-77.37948302290505, 34.70588405238151], [-77.37956186691127, 34.705886591827706], [-77.38008722060431, 34.705912040602335], [-77.38058319797798, 34.706244175127004], [-77.38061398509818, 34.70626527979993], [-77.38062236427729, 34.70627720330379], [-77.38065818221627, 34.70630995826555], [-77.38113188758591, 34.70673071912441], [-77.38138325742632, 34.706837249167116], [-77.3822152155589, 34.70736070617269], [-77.3822286417944, 34.70736985213906], [-77.38223845050821, 34.70737340970953], [-77.38225874160239, 34.70738996904881], [-77.38350014463529, 34.70863272792835], [-77.38432201883836, 34.708993556370935], [-77.3847128299806, 34.70901988807239], [-77.3851190544062, 34.70911797895404], [-77.38565050155488, 34.70883369308294], [-77.38580572591309, 34.70874448437786], [-77.38626674285187, 34.70891929134572], [-77.38655597623271, 34.7091442590233], [-77.3867767808025, 34.70937116540156], [-77.38720199532915, 34.70976759029946], [-77.38727737511601, 34.709855630581536], [-77.38738920777094, 34.709838255223616], [-77.38759202958563, 34.7098759055008], [-77.38768976821663, 34.70985030680613], [-77.38782291367268, 34.70979935385074], [-77.38795186375114, 34.709740354623605], [-77.38818181539408, 34.70963806945993], [-77.38845699727455, 34.709559679013665], [-77.38894348965461, 34.70938727951441], [-77.38927929747652, 34.70928832722401], [-77.38936917307407, 34.709274078610974], [-77.38989746100044, 34.70945108554793], [-77.3899490715071, 34.709485034853806], [-77.38997344768039, 34.7095049785048], [-77.39047725172375, 34.709707615061646], [-77.39052036492754, 34.709725680067834], [-77.39052232862741, 34.70972491004795], [-77.39052671648834, 34.70972492764941], [-77.39097968831766, 34.709724697075735], [-77.39115649890803, 34.709742666842956], [-77.39146002883625, 34.70977791222665], [-77.39146640908439, 34.709779297201656], [-77.39147203025827, 34.709781710458834], [-77.39175983359236, 34.70987279468312], [-77.39205848222092, 34.709992669726134], [-77.39233963186166, 34.71008411793429], [-77.39265307388933, 34.710173196150365], [-77.39293552871894, 34.71023991220084], [-77.39314980347791, 34.71028111585375], [-77.39355017388503, 34.710331032501756], [-77.39364345047547, 34.710340248910214], [-77.3939516013903, 34.71036439992929], [-77.39411727775962, 34.71036695701335], [-77.39417981704426, 34.71037041131014], [-77.39424090722916, 34.71040389432885], [-77.39478818358148, 34.71048319317087], [-77.39490110973986, 34.710574980569035], [-77.39504635278549, 34.710698335989996], [-77.39510721151126, 34.710768809363415], [-77.39521425784363, 34.710890748400516], [-77.39528546191721, 34.710979240440935], [-77.39550035890505, 34.71121779206998], [-77.39552858491592, 34.71124630271306], [-77.39573529378872, 34.71154775305433], [-77.39574600817002, 34.71156169996214], [-77.3957535090194, 34.711576157900296], [-77.39596340550766, 34.71190715242509], [-77.39595955345094, 34.711918991981605], [-77.39596656584553, 34.712187832908405], [-77.39564981040354, 34.71249443783823], [-77.39606890475672, 34.71269976627817], [-77.39609175871414, 34.7127907916161], [-77.39600058344661, 34.713240840298454], [-77.39599730595114, 34.71331688959671], [-77.3963674501922, 34.713881541812626], [-77.3964325724225, 34.713953385961965], [-77.39693402865328, 34.714138587411966], [-77.3969788885077, 34.71417195118001], [-77.39708842801086, 34.714257840819464], [-77.39716631978024, 34.71431697231461], [-77.3971924203142, 34.714353016455306], [-77.39725545060556, 34.714502974219165], [-77.39739305118289, 34.71476673920069], [-77.39744366726624, 34.714870828410774], [-77.39747751709601, 34.71495313142752], [-77.39761431762474, 34.71524600630451], [-77.39779326514498, 34.71559782167903], [-77.39780041074577, 34.71561474652632], [-77.39780646245931, 34.7156273744862], [-77.39789467609921, 34.71579704915221], [-77.39798384221801, 34.715969010835494], [-77.39799069623231, 34.71598173927493], [-77.39799654072083, 34.71600244036573], [-77.39808387283892, 34.716283582484806], [-77.39809698885499, 34.71638374847252], [-77.39813159411194, 34.71664245360927], [-77.39815559080473, 34.71680564017373], [-77.39817040136316, 34.7168730010194], [-77.39829277362328, 34.71719477235121], [-77.39829323815492, 34.71719555157537], [-77.39852838811098, 34.71748539303736], [-77.39856061732709, 34.71752943286374], [-77.39859338777921, 34.71758013938825], [-77.39880629320129, 34.717873335341345], [-77.39885637777611, 34.7179517244637], [-77.39889125140324, 34.71806107872228], [-77.39887405033106, 34.71814705586345], [-77.39885714327005, 34.718231562834106], [-77.39881391201428, 34.71831648303883], [-77.39869858954316, 34.71860839222337], [-77.39861613380938, 34.71870638092436], [-77.39853622307982, 34.718878572973324], [-77.39847001165779, 34.71898286441178], [-77.3983127146707, 34.719159364258395], [-77.39796385650055, 34.719433179220836], [-77.39781805430499, 34.71941323614491], [-77.39766688837852, 34.71949254766555], [-77.39754657790415, 34.71971756090727], [-77.39725445851784, 34.71966874364568], [-77.39698645004586, 34.71954981498476], [-77.3966938545653, 34.719390952503225], [-77.39649608445492, 34.719282739223175], [-77.39628400701866, 34.719149312829664], [-77.39613944221233, 34.71909181082155], [-77.39588696360238, 34.71886977107054], [-77.39573041922297, 34.71870927943469], [-77.39564253691697, 34.71859428716372], [-77.39538411320149, 34.71842585653006], [-77.39472106412268, 34.718237401839836], [-77.39446551989168, 34.7182313102262], [-77.39431464549881, 34.71817336814465], [-77.39386817819634, 34.71808030173129], [-77.39373740341637, 34.71811761509523], [-77.39352186059436, 34.71837340805162], [-77.39346028617886, 34.71876295047274], [-77.3938731635417, 34.71928342773616], [-77.39366952316279, 34.71956835979538], [-77.39350894333629, 34.71984900904557], [-77.3934274591163, 34.7202457766556], [-77.39318145750133, 34.720664427448746], [-77.39317957379403, 34.72071819416815], [-77.39313926122495, 34.720741097931885], [-77.39296424532287, 34.720754966530244], [-77.3924373630444, 34.72080429699395], [-77.39222814379275, 34.72074762730422], [-77.39124010109886, 34.720511049876094], [-77.39032922242421, 34.7200680327406], [-77.38992583316917, 34.719975415265516], [-77.38900907918071, 34.71936070770789], [-77.38854117459391, 34.71920730820792], [-77.38789106314422, 34.719426665709044], [-77.38873004860075, 34.720323029074294], [-77.38918614028512, 34.720544461638205], [-77.38962498129341, 34.72098014749031], [-77.38978140142953, 34.7211194984352], [-77.38990663347666, 34.72113678005832], [-77.39004927539975, 34.721300284648194], [-77.39049274966028, 34.721785103378956], [-77.39073021268524, 34.7222696901902], [-77.39070814053837, 34.7225879478616], [-77.39069402306777, 34.7226442325615], [-77.39074643725719, 34.72281447779497], [-77.39060044646246, 34.72271725444456], [-77.39048835094837, 34.7226795538215], [-77.38968917644428, 34.72258199003531], [-77.3894007067461, 34.722432455114806], [-77.38904718379283, 34.722387594146554], [-77.3887637292294, 34.72241803636435], [-77.38868443110269, 34.72243538736868], [-77.38821709632194, 34.7223366112909], [-77.38814980796423, 34.72232410126191], [-77.38813297224826, 34.72230717157421], [-77.38787894676832, 34.721981874487916], [-77.38769010731684, 34.721698330069266], [-77.38760487126314, 34.721563186784486], [-77.38739838910985, 34.72128955033072], [-77.38721026288391, 34.721142047503996], [-77.38701174703861, 34.72100438726472], [-77.38694020323565, 34.72096784281511], [-77.38684166943351, 34.7209179487578], [-77.38666035684932, 34.720827389293994], [-77.38642904198711, 34.72080093387723], [-77.3860733958134, 34.720640521239716], [-77.38567996721181, 34.72033033824469], [-77.38558571752348, 34.72025979535829], [-77.38555343357893, 34.72022262868161], [-77.3854364962423, 34.72011622633278], [-77.38504416200144, 34.71976788719937], [-77.3847493021559, 34.71971577433426], [-77.38421522147505, 34.719615295199915], [-77.38380523983136, 34.71961833635334], [-77.383337182909, 34.719675865600095], [-77.38318967803707, 34.72001790393543], [-77.38287193024264, 34.72041175617417], [-77.38282148977348, 34.72044821545183], [-77.38274284179866, 34.72055192820247], [-77.38240502648874, 34.72086162829114], [-77.38232638530285, 34.72101629925597], [-77.38229837023914, 34.721103888719355], [-77.38222083540272, 34.72121574729276], [-77.3821204399659, 34.72132120143357], [-77.3820778713962, 34.72135826203585], [-77.38201268519825, 34.72137759690011], [-77.38188277064653, 34.72141334331838], [-77.38175860286356, 34.72140836313302], [-77.38169347165075, 34.72137287870246], [-77.38158545058596, 34.72130119084683], [-77.38142287046686, 34.72120056214824], [-77.38117348830474, 34.72120589165077], [-77.38078489858744, 34.72118955526169], [-77.38053060139106, 34.721323898029304], [-77.37983102864499, 34.721425066302174], [-77.37940195903823, 34.72153638220453], [-77.37897750210671, 34.72152575032406], [-77.3783423930621, 34.721676306920024], [-77.37818313872383, 34.721723233200386], [-77.37807496449255, 34.72169030655063], [-77.37774878964078, 34.721761163721176], [-77.37773346739002, 34.72176238557899], [-77.37766979561515, 34.721773241127295], [-77.3773983274629, 34.72181254775348], [-77.37732653970482, 34.721818888774045], [-77.37722315523835, 34.72184370217088], [-77.37692801039972, 34.721915425409875], [-77.3766820625246, 34.722071369946974], [-77.37657902218612, 34.72209302249337], [-77.37646845277072, 34.72213870247445], [-77.37595089753503, 34.72238152934844], [-77.37585667581996, 34.72240834583784], [-77.37575386751395, 34.722447744446455], [-77.37574085111079, 34.72257693344133], [-77.3755820841712, 34.722946808154816], [-77.37554914558763, 34.7231030825607], [-77.3754344739031, 34.723214785888416], [-77.3751064137196, 34.72333948856478], [-77.37506221853856, 34.72335432254496], [-77.3750180627505, 34.72338674315744], [-77.3747608357044, 34.72360982557287], [-77.37464019821026, 34.7237354783596], [-77.37446559988881, 34.72387538940446], [-77.37417471108982, 34.724083476792536], [-77.37414794311464, 34.724104269189965], [-77.374124868788, 34.72411427468798], [-77.37392376613924, 34.72422652715571], [-77.37381565428606, 34.72428562572504], [-77.37380572441354, 34.72429296078733], [-77.3735378223847, 34.72446796284209], [-77.37350233062355, 34.724545181751644], [-77.37339308938166, 34.72456741623752], [-77.37315316283774, 34.724722506875054], [-77.37296304778893, 34.724825946380214], [-77.37281383208305, 34.72491592935833], [-77.37265878431747, 34.7249990301293], [-77.37262178384499, 34.725015768677416], [-77.37245484477802, 34.725077189761045], [-77.37242464032941, 34.72507420170853], [-77.37229102103018, 34.72505077493448], [-77.37211821000825, 34.72497872210672], [-77.37200808638804, 34.72492095945999], [-77.37175999830426, 34.72480918461168], [-77.37174346333086, 34.72480113159904], [-77.37165333319538, 34.72475492799746], [-77.37148076292833, 34.724674679528775], [-77.37143470419792, 34.724665265394144], [-77.37097700006535, 34.724347217829816], [-77.3708778573031, 34.724305284224094], [-77.37084369583971, 34.72421937539712], [-77.37066584732597, 34.7240741835075], [-77.37051719805152, 34.723868285623396], [-77.36994957655457, 34.72434223961828], [-77.36986140720772, 34.72444393556775], [-77.36973276311929, 34.72450798665019], [-77.36940168009639, 34.724674845019756], [-77.36936821570174, 34.72467855654413], [-77.36907477597742, 34.72471194941505], [-77.36877165847471, 34.724754906256905], [-77.36844660760815, 34.724813155299756], [-77.36813355719508, 34.72484018493961], [-77.36784324271989, 34.72482889293754], [-77.36770085639816, 34.72477891583079], [-77.36730721158808, 34.7247052967578], [-77.36729475241202, 34.724697177415926], [-77.3672820535693, 34.72469931590153], [-77.36726883803955, 34.724699965494224], [-77.36667499641366, 34.72472776924389], [-77.36632423092064, 34.7248403411049], [-77.36607938310617, 34.72492260162423], [-77.36600453186409, 34.724974667505265], [-77.36568380765533, 34.725210338469644], [-77.36534480485832, 34.725409203288095], [-77.36526555956819, 34.7254575610983], [-77.36524268036044, 34.72545772401536], [-77.36480791180026, 34.72542809707953], [-77.36468506867296, 34.725394461278704], [-77.36442518029145, 34.725328361988815], [-77.36413155128213, 34.72523844155444], [-77.36408527477624, 34.725195675020004], [-77.36402663464713, 34.7251559591414], [-77.36384637709742, 34.72498526293642], [-77.36378982526705, 34.72480884038706], [-77.36376512186732, 34.72470449154198], [-77.36372818994437, 34.72456516509753], [-77.36366944851466, 34.72433292857063], [-77.36363040398219, 34.724235607594686], [-77.36355219811061, 34.72414004200621], [-77.36348456490894, 34.724080955438346], [-77.36332600422284, 34.72388786088767], [-77.36323572541382, 34.72387819519025], [-77.36313295263912, 34.723816546301975], [-77.3628046587595, 34.72362105325312], [-77.36259121666407, 34.72358565812987], [-77.36167850313868, 34.723576558447405], [-77.36157191843215, 34.72374210169454], [-77.36111522288411, 34.72435390486751], [-77.36114967217286, 34.72457632570656], [-77.36117832224265, 34.72467282317932], [-77.36106699111517, 34.724949368334585], [-77.36101026374033, 34.7250828582512], [-77.36080810420242, 34.72535820357098], [-77.36044096776227, 34.72557502713374], [-77.36035385468895, 34.72559396155782], [-77.35987509865097, 34.72572613528101], [-77.35980518845302, 34.72574607098887], [-77.3597893915466, 34.725756743162954], [-77.35946611260938, 34.726083868238305], [-77.35934888977894, 34.726080431211926], [-77.35913342674525, 34.7259535593691], [-77.35902901350305, 34.72593232103887], [-77.35879509187035, 34.725874439948136], [-77.35876520881024, 34.72574106877145], [-77.35860285346803, 34.725718510434746], [-77.35842340866489, 34.725798274746374], [-77.35826393458774, 34.725947373957126], [-77.35782293409532, 34.72634219960351], [-77.35772121408169, 34.7264525733715], [-77.35720939417472, 34.72654386621684], [-77.35716671754126, 34.72653983947345], [-77.35661958237496, 34.72660342886135], [-77.35654086027729, 34.726632916501], [-77.35648961987057, 34.72663783242889], [-77.3561279862187, 34.7265874265982], [-77.35597111002454, 34.72653277458937], [-77.35575362562052, 34.72648122657712], [-77.35570885388996, 34.72629818208408], [-77.35565173841687, 34.72616540291867], [-77.35562269926137, 34.725869728368956], [-77.3556227182639, 34.72582262384419], [-77.35562731386284, 34.72578998291496], [-77.35561831386488, 34.72568554310855], [-77.35556970186265, 34.72534251828857], [-77.35560317033985, 34.725214192939106], [-77.35562380023738, 34.72500426450972], [-77.35561299934506, 34.72484919014445], [-77.35537278150824, 34.72446896678636], [-77.35514336148424, 34.72458547078671], [-77.35440978708544, 34.724795034623114], [-77.35448105450749, 34.72509501319011], [-77.35455935361648, 34.725207969540065], [-77.35466444396029, 34.72534813259077], [-77.35464921858667, 34.7254688851995], [-77.35460253066327, 34.72578997099782], [-77.35455779794486, 34.7259688185045], [-77.35448822981527, 34.726141019977405], [-77.35419126403163, 34.7264754435071], [-77.35415709934522, 34.726511208203625], [-77.35411425068055, 34.72655982519325], [-77.35387822276739, 34.72687701087484], [-77.35388638055274, 34.72703575309941], [-77.35387380914175, 34.72713900491226], [-77.3539951312363, 34.72750820628669], [-77.35368899045761, 34.72798583171886], [-77.35366944567963, 34.728040297263206], [-77.35358447809006, 34.72814999759168], [-77.35321203205044, 34.72859046678122], [-77.35310733379384, 34.72874695597139], [-77.35296895883837, 34.729017713478626], [-77.3529175690813, 34.72911826781852], [-77.35278932260015, 34.729240653590416], [-77.35266192626139, 34.72925390656665], [-77.35228326352613, 34.72929329840561], [-77.35217707943535, 34.72928674588238], [-77.3521203661715, 34.72927631207205], [-77.35198446344634, 34.72924634234074], [-77.35161297564068, 34.72916709480539], [-77.35121876758672, 34.729181477890904], [-77.35064259851688, 34.7289431273709], [-77.35053578252486, 34.72891847386256], [-77.35049051226308, 34.72890802514193], [-77.35034438977138, 34.728984053726045], [-77.35044496752852, 34.729064821084144], [-77.3507427985438, 34.72954761579378], [-77.3511151691942, 34.72985303205634], [-77.35123881677073, 34.72995444784749], [-77.35135629463693, 34.73005080151803], [-77.35148682834809, 34.730157863292916], [-77.35172177587717, 34.7302571595897], [-77.35180736726528, 34.73030548630757], [-77.35187503834828, 34.73032664186493], [-77.35206894678811, 34.73037991354965], [-77.35243345962817, 34.73046588380683], [-77.35257219337736, 34.730505537652874], [-77.35279815802029, 34.73059680439163], [-77.35291437965495, 34.73063650875309], [-77.35296992365343, 34.73068072862509], [-77.3531589823085, 34.73084254548165], [-77.35348066486846, 34.73098414616253], [-77.3534870566285, 34.73098962860499], [-77.35341667478595, 34.73143271925829], [-77.3534961331433, 34.731475764920035], [-77.35341487245631, 34.731572426665], [-77.35311926604432, 34.732228450775054], [-77.35299948649208, 34.73248088835738], [-77.35297079755843, 34.73252263692948], [-77.35287973591839, 34.732634169672174], [-77.35246140227136, 34.73328064643991], [-77.35244901625285, 34.73356901661984], [-77.35214262649355, 34.73398958391267], [-77.35214281168372, 34.73409842567233], [-77.35203341417352, 34.734177956688896], [-77.35195441086984, 34.73417701331592], [-77.35171660222642, 34.734317290342844], [-77.3512440675421, 34.73456069692176], [-77.35114616032429, 34.73466836560718], [-77.35111598414966, 34.734726732320766], [-77.35078104757147, 34.73498313560263], [-77.35072120912228, 34.735082953107884], [-77.35059648932885, 34.735285406708115], [-77.3505209739804, 34.735390971981154], [-77.35033606108772, 34.735624805892876], [-77.35021210405827, 34.73575557643998], [-77.35013777172699, 34.735835737502505], [-77.34996256854681, 34.73606068178576], [-77.34991825818324, 34.73610955134777], [-77.34990905782665, 34.73612534248461], [-77.34975598156335, 34.736375509681125], [-77.34944981460403, 34.736613925307076], [-77.34928250737802, 34.736583762234964], [-77.34900137385233, 34.73659766550273], [-77.34885000229238, 34.73661701745942], [-77.34871759368227, 34.736624078826324], [-77.34845998618198, 34.73655334562759], [-77.34828195232363, 34.73651077591403], [-77.34815674376327, 34.73648757937512], [-77.34799704406497, 34.736460696358215], [-77.34792198494421, 34.7364476430253], [-77.34771212639265, 34.73641064884755], [-77.34752404530218, 34.73635952797654], [-77.34718909827646, 34.73626848785426], [-77.34715044995687, 34.736282474062925], [-77.34661397891752, 34.73680662893728], [-77.34686745757662, 34.737256508000904], [-77.34686832323071, 34.737258044371835], [-77.34686889042398, 34.737259034228565], [-77.34687164888116, 34.737263787555655], [-77.3472046423575, 34.73778774055679], [-77.34727373765915, 34.73791956887932], [-77.34746126460041, 34.73815251651866], [-77.3476019717264, 34.73827051548244], [-77.34773470900944, 34.73839440533065], [-77.3480777171538, 34.73869298133456], [-77.3484906502963, 34.738986034611855], [-77.34857100932558, 34.739101951542985], [-77.3487105072881, 34.7391587559599], [-77.34918964644048, 34.73941452049675], [-77.34922946723921, 34.739434036540175], [-77.34949078457672, 34.739823561281746], [-77.34896315198927, 34.7403507257498], [-77.3489347657526, 34.740368289434045], [-77.3488575308485, 34.740397833685], [-77.34841517431866, 34.74054621781406], [-77.34834108298469, 34.74071238558903], [-77.34832113134311, 34.74078203593719], [-77.34831949884762, 34.74087214852646], [-77.34830899985877, 34.74096047727339], [-77.34829457573723, 34.741077646391616], [-77.34826631013223, 34.74130724386255], [-77.34832248975677, 34.741446005325585], [-77.3482224027031, 34.74165197977077], [-77.3482010858747, 34.74175159581985], [-77.34816137449258, 34.74195549091553], [-77.34815581610079, 34.74209878359511], [-77.34816065007367, 34.74217688260746], [-77.34815358431696, 34.74222928586017], [-77.34814990438932, 34.74244444349828], [-77.34814756652857, 34.742581132402876], [-77.34814572706892, 34.74268870649179], [-77.34813098993664, 34.742847544929504], [-77.34811328814651, 34.74293684667565], [-77.3480400221049, 34.74340522854297], [-77.34803204847533, 34.74345835085002], [-77.34800322185306, 34.743654763979464], [-77.347969055092, 34.74390098516246], [-77.34796460889115, 34.74393200412287], [-77.34796193660318, 34.74397432611029], [-77.34795779425508, 34.744303832573635], [-77.34799194024272, 34.744415632915604], [-77.34800140672968, 34.74464757087337], [-77.34803241573306, 34.744897458670124], [-77.34791940045201, 34.74512173333567], [-77.34786917286853, 34.745407234476204], [-77.34772757601363, 34.74568152987521], [-77.34738830205157, 34.74577116347167], [-77.34711866593122, 34.74573754564077], [-77.34706243019542, 34.7457305341669], [-77.3468135256505, 34.74568785473268], [-77.34667766430114, 34.745682511888944], [-77.34633982306173, 34.74572862682197], [-77.34619534394851, 34.74575392521518], [-77.34597127383569, 34.74583157004896], [-77.34577607782595, 34.74586746170507], [-77.34579361532705, 34.745968194636816], [-77.34595653689095, 34.74602734133842], [-77.3461082164778, 34.74605377233176], [-77.34614181118563, 34.74609460279852], [-77.3462157561972, 34.7461214473533], [-77.34637300363158, 34.74617321361019], [-77.34653162447815, 34.746189005001526], [-77.34666388891019, 34.746202838627475], [-77.34689938700257, 34.74622437034893], [-77.34727542036323, 34.746159662999915], [-77.34745558644647, 34.746266807341975], [-77.34774329616579, 34.746333735505566], [-77.34781881141262, 34.74635100250849], [-77.34785089461683, 34.74635698146332], [-77.34790804532405, 34.746376659242436], [-77.34823751489068, 34.74645383514796], [-77.34836194662299, 34.74654322705318], [-77.34879968988349, 34.74674170359816], [-77.34885653262957, 34.746766151466375], [-77.3488847349596, 34.74680548898172], [-77.349325054205, 34.74709674993108], [-77.34938649095444, 34.74714015227909], [-77.34939098778027, 34.74714350224549], [-77.34939533680334, 34.74714735638053], [-77.3498705993313, 34.747535569075346], [-77.34988719102584, 34.747550272353585], [-77.34990053687592, 34.74756541703395], [-77.34997578873003, 34.74767322034676], [-77.35019622302488, 34.748012224611415], [-77.35023563270757, 34.74807068404401], [-77.35025834180675, 34.74826269368366], [-77.35031134962146, 34.74840664781689], [-77.35027975310672, 34.748488143290906], [-77.35011170236947, 34.748767426491696], [-77.34998273997888, 34.74895590047238], [-77.34990909042322, 34.749026383210996], [-77.34991432606643, 34.74910618116402], [-77.34964519826343, 34.74954997166711], [-77.34953492468584, 34.749835726089906], [-77.3494249392615, 34.750067572580534], [-77.3490555438762, 34.75034088830066], [-77.3487755794979, 34.750439589713224], [-77.3483941193949, 34.75055568857088], [-77.34795686286853, 34.75061155125379], [-77.3477776663977, 34.75061570073555], [-77.34751795783322, 34.750602050914594], [-77.34717598974879, 34.7506248536983], [-77.34664340200094, 34.75093656166126], [-77.34655001374759, 34.75102112820629], [-77.34637458255116, 34.75143414761402], [-77.34636068227836, 34.75146272344603], [-77.3463166102751, 34.75152084849619], [-77.34584210706032, 34.75167057238639], [-77.3456856331102, 34.75163079936882], [-77.3456310662273, 34.751611716904954], [-77.34550995215585, 34.75157942208295], [-77.34512663870383, 34.75149303876353], [-77.34490167221526, 34.75147573114682], [-77.34483268678687, 34.75147390030208], [-77.34474017615257, 34.7515084266784], [-77.34450513010697, 34.75157039593468], [-77.34431356073128, 34.75159301038039], [-77.34381062037359, 34.7518989352239], [-77.34352026977993, 34.75165812608654], [-77.34328727445444, 34.75163850986395], [-77.34316652149954, 34.75153596640928], [-77.34305825178393, 34.75142832323061], [-77.34294821698707, 34.75130965681507], [-77.34282522242796, 34.75116719163242], [-77.34267566041251, 34.75099341956862], [-77.34254177913937, 34.75083384215403], [-77.34249196779174, 34.75077492493429], [-77.34237506289188, 34.75065497111468], [-77.34232998606821, 34.750602528287835], [-77.3422468768867, 34.750564850327486], [-77.34211646131575, 34.75051420628825], [-77.34195023928785, 34.75050035915516], [-77.34183468419451, 34.75045318283768], [-77.34132500291568, 34.7502219019051], [-77.34128173014557, 34.7502260602937], [-77.34067085731049, 34.75033542770298], [-77.34032727997598, 34.75061457205193], [-77.34025173388015, 34.750838456759325], [-77.3398128490449, 34.751226419415545], [-77.33969821901458, 34.75133388282306], [-77.33910834896949, 34.7515892418801], [-77.33871981574136, 34.75140758424797], [-77.33856335229467, 34.751403331179816], [-77.33813585069117, 34.75122626899268], [-77.33802403318595, 34.7511978929177], [-77.33796083743141, 34.75120282802371], [-77.33790102239243, 34.75116078103581], [-77.33748343873128, 34.75099684738609], [-77.33726377601334, 34.750950463043374], [-77.33697398298582, 34.75080050911884], [-77.336946344072, 34.75078376997985], [-77.3367570753117, 34.75055173971961], [-77.33661678923116, 34.750362107311474], [-77.33649254044877, 34.75028418872503], [-77.3363249023995, 34.750095718811394], [-77.33626162619852, 34.75004820713248], [-77.33619935589579, 34.74999517108314], [-77.33611392517658, 34.74994367584043], [-77.33605689498387, 34.74990762763132], [-77.33600842101129, 34.74988890585894], [-77.33587893771738, 34.74986485449196], [-77.33571850340925, 34.749855890072524], [-77.33559717864068, 34.74986692977245], [-77.33541538853777, 34.749868268557115], [-77.3351830739875, 34.74988661430682], [-77.33478580638076, 34.749973346485135], [-77.33453867786109, 34.749953978076206], [-77.3344065931143, 34.74999399778467], [-77.33418214515615, 34.74998925980918], [-77.333910064114, 34.75003532408655], [-77.33371756414294, 34.750129591108795], [-77.33350855361947, 34.75024568849789], [-77.33327931441296, 34.75033224887768], [-77.33296810168365, 34.750477378731716], [-77.33278022534408, 34.75045607694623], [-77.33225496498301, 34.75043659689726], [-77.33193079932096, 34.75032082782443], [-77.33164689926802, 34.75006862099596], [-77.33164495348746, 34.74975231930792], [-77.33159102711534, 34.74925707740925], [-77.33160133214714, 34.74910012848177], [-77.33161377866243, 34.74898802415103], [-77.33149670909938, 34.748923977635876], [-77.33131521509469, 34.74865197294938], [-77.3311291466688, 34.74857233849008], [-77.33084470797138, 34.748229087227216], [-77.33070528328696, 34.74810993745932], [-77.33058129038604, 34.747951943131355], [-77.33028203633086, 34.74764706458302], [-77.3301209001184, 34.747475173508235], [-77.32999498767049, 34.74737080325143], [-77.32975562285796, 34.74726350536031], [-77.32958991392884, 34.74724119223857], [-77.32936113020935, 34.74728093020215], [-77.32897077887716, 34.74731035122531], [-77.32870309476198, 34.74728440203343], [-77.32836094266291, 34.74734752553855], [-77.32812039192063, 34.747338235150025], [-77.32797964491684, 34.7473334176887], [-77.32776812399116, 34.747326177506324], [-77.32755307975788, 34.74738023197655], [-77.32736806606918, 34.747429816826205], [-77.327101737725, 34.74755779214572], [-77.32688119649046, 34.74763674091875], [-77.32603591917187, 34.74775827546912], [-77.32584539295605, 34.747758186174394], [-77.32551139575409, 34.7476995640169], [-77.32526502051844, 34.747694022775185], [-77.3249051121677, 34.74783930558994], [-77.3245850290165, 34.74797236478298], [-77.32446246610775, 34.74804676901614], [-77.32404195767357, 34.74818648535458], [-77.32391074031754, 34.748231080806086], [-77.32375725376032, 34.748225487683236], [-77.32337375414919, 34.748228215164886], [-77.32331864612893, 34.748207197584954], [-77.32311559225701, 34.74812989497603], [-77.322774991612, 34.74801678278328], [-77.32268245999603, 34.74797138154841], [-77.32247406708272, 34.74791390191561], [-77.32222393386549, 34.74785182481365], [-77.32159707726375, 34.74801746018886], [-77.32155569416814, 34.74802419336205], [-77.3208423942544, 34.748482471420665], [-77.32054904571521, 34.74840886127001], [-77.32010598886879, 34.74872562147484], [-77.31967531137785, 34.74891134457896], [-77.31982860016392, 34.74925097643872], [-77.3198973079146, 34.74932393429768], [-77.31996474890644, 34.749440134113456], [-77.32005796234286, 34.749594546791315], [-77.32019662784019, 34.74968793477829], [-77.32028717831652, 34.74981246193781], [-77.32041862363154, 34.74993918780636], [-77.3209559065418, 34.75008666115801], [-77.32097258704188, 34.75009420537746], [-77.32102166100096, 34.750104709211186], [-77.32138182272222, 34.75015339149641], [-77.3215010894873, 34.750336749209005], [-77.32152765421975, 34.75043539921863], [-77.32152081655839, 34.75048129441717], [-77.32153015554904, 34.75055541024426], [-77.32152863452276, 34.75072390551026], [-77.32141411874842, 34.75091676067324], [-77.3213788338723, 34.750988105338514], [-77.32128899927032, 34.75106582646562], [-77.32123002091458, 34.751058259803244], [-77.32076065283995, 34.751150299831934], [-77.32065344201654, 34.751191264040635], [-77.3199852942392, 34.75166633045019], [-77.3199447159499, 34.75170403788065], [-77.31987703564053, 34.75180083652356], [-77.3195956704204, 34.75220705341468], [-77.31944026749495, 34.75253386911218], [-77.31939306360462, 34.75272216300256], [-77.31933980982274, 34.75290513640295], [-77.31924252813735, 34.75323014101227], [-77.31913433773234, 34.753539664197305], [-77.3188977135228, 34.753764723048185], [-77.31847295542352, 34.7542304123519], [-77.31795251300292, 34.75475950790638], [-77.31785693435926, 34.75488197101738], [-77.31781562504702, 34.75492475825798], [-77.31776148494238, 34.75495396065046], [-77.31736750074424, 34.755436351243326], [-77.3172148873947, 34.755669270999846], [-77.31694558943917, 34.75598148214934], [-77.3167318552276, 34.75651811722267], [-77.31718857838061, 34.75692293451175], [-77.31766486172589, 34.75734507940697], [-77.31814114994133, 34.75776722221781], [-77.31861744302704, 34.75818936294419], [-77.3190937409831, 34.758611501586024], [-77.31921311475652, 34.75871729989524], [-77.31955916987496, 34.75854776329446], [-77.32014242879605, 34.75826398387393], [-77.32043330975576, 34.758125743559276], [-77.32061136720785, 34.7580411219228], [-77.32062360906046, 34.75791462820871], [-77.32052448989803, 34.75781233933205], [-77.32038671773165, 34.75761781860841], [-77.3202685129793, 34.757475896422335], [-77.32008615916597, 34.757259699425866], [-77.31998170222109, 34.75714090173734], [-77.31988887806551, 34.75704052462016], [-77.31963172069419, 34.75676244258471], [-77.3195068586516, 34.756717651343294], [-77.31948884986502, 34.75660794483254], [-77.31958450643887, 34.7564925631486], [-77.3197418297294, 34.75638398383622], [-77.32008125633023, 34.75603945305244], [-77.32025963375293, 34.755813985233154], [-77.32028184975614, 34.75572794756361], [-77.32034079510316, 34.75551654566332], [-77.32047938302614, 34.755182037644346], [-77.32055413346843, 34.75499996489145], [-77.3205958436016, 34.75483503083556], [-77.32082618992612, 34.754716019547196], [-77.32140154747108, 34.75439653947335], [-77.32149416037595, 34.75435427892949], [-77.32153486972194, 34.754339314777276], [-77.32162771468465, 34.754299463237366], [-77.32198941292387, 34.75415475640606], [-77.32221038027208, 34.75407660528864], [-77.32226816711147, 34.754034158389686], [-77.32234362198085, 34.75383023004148], [-77.3223612199971, 34.753777730530764], [-77.32239465035842, 34.753710001461975], [-77.3226424719952, 34.753251841693555], [-77.32275950839423, 34.75303546886296], [-77.32278482723544, 34.75298866044358], [-77.32280126795803, 34.75295892689495], [-77.32293751528023, 34.75272406287531], [-77.32304679573417, 34.75253808294913], [-77.3231727307759, 34.752323756280035], [-77.32321342062806, 34.75219890467359], [-77.32322344251644, 34.752056191897836], [-77.32343712407393, 34.7519188594065], [-77.32402781234342, 34.751492198741104], [-77.32416532010728, 34.75147492200169], [-77.32428510556372, 34.75146874296557], [-77.32480625489379, 34.75133096107153], [-77.32526298931593, 34.75150530213813], [-77.3253553734286, 34.75150267198195], [-77.32548269527678, 34.75150473753551], [-77.32564897387466, 34.75152306119345], [-77.3257703722546, 34.75150940412034], [-77.3259583375613, 34.75148925155785], [-77.32636937731431, 34.75144307425749], [-77.32685313296737, 34.75144242048296], [-77.32718582881961, 34.75138825549263], [-77.32755964956307, 34.751316353311196], [-77.32822984565001, 34.75138565243388], [-77.32840864698662, 34.75130330351001], [-77.32868397685881, 34.7511496936251], [-77.32886240667852, 34.75110314935083], [-77.32904554565486, 34.75115617673844], [-77.32885061913404, 34.751297372086306], [-77.3287538480408, 34.751439832054174], [-77.32850811227686, 34.75163225347312], [-77.32830764607333, 34.752317842607496], [-77.32837618948204, 34.75246631632968], [-77.32840823559027, 34.753028755519665], [-77.32858986015268, 34.7534117729893], [-77.32888987580492, 34.75376843434973], [-77.32914214247482, 34.75404109047879], [-77.32989584098273, 34.75442927348535], [-77.33025914785104, 34.75475894096179], [-77.33081897055692, 34.75505577557904], [-77.33148616952637, 34.75539221195571], [-77.33194487462877, 34.7556235065627], [-77.33272911735017, 34.75601326542287], [-77.33382284730922, 34.75634177438108], [-77.3341163523612, 34.75639679004588], [-77.3342802849414, 34.75639736191291], [-77.33486209950134, 34.756451107812545], [-77.33647778691994, 34.756516770006854], [-77.33679386807384, 34.75642072352188], [-77.33771566528426, 34.756380128064876], [-77.33815898801289, 34.75635350940637], [-77.33852045685161, 34.75629073712974], [-77.3389821277107, 34.75614512359065], [-77.33927517228105, 34.75606573542729], [-77.33977918490983, 34.75611129692284], [-77.34018476623442, 34.75612965032233], [-77.340244905512, 34.756147389683726], [-77.34027513405837, 34.75619636620861], [-77.34051648721726, 34.75633274520513], [-77.34066601514962, 34.756534986060586], [-77.34072989330608, 34.75662138255389], [-77.340876865155, 34.75684399242417], [-77.34103080962, 34.75706749373948], [-77.34109137581414, 34.757132610997175], [-77.34141073204576, 34.75722185420189], [-77.3416507705496, 34.7572691244059], [-77.34211813805109, 34.75730774388767], [-77.34225004785097, 34.75726842467505], [-77.34237226761061, 34.7572708946642], [-77.34285113691972, 34.757261489335434], [-77.34292850937297, 34.75729462803356], [-77.34323124679823, 34.7573987828364], [-77.34329830230755, 34.75771491947215], [-77.34328516686655, 34.75773309063136], [-77.34296508667708, 34.75790002177479], [-77.34276452473894, 34.75788036736758], [-77.34267487648546, 34.75786792697712], [-77.34260784878552, 34.75787810316054], [-77.34219858623797, 34.75801732429767], [-77.34201413789252, 34.758080068393376], [-77.34170419115371, 34.758217659471114], [-77.34130682110214, 34.75845243949116], [-77.34122343046457, 34.75850320448366], [-77.34084993113149, 34.758737512103515], [-77.3405800842425, 34.758891592469936], [-77.34001739676606, 34.759155951993755], [-77.33993465276886, 34.75920331275938], [-77.33986931848776, 34.759275773255204], [-77.33943810627616, 34.75972275414075], [-77.3394122248562, 34.760017146496395], [-77.33908781765142, 34.76058443488948], [-77.33900017787971, 34.76075754446173], [-77.33892457011501, 34.760861793839005], [-77.33874604438918, 34.76107891757809], [-77.33862519742651, 34.76123491229677], [-77.33821390208406, 34.76125629321771], [-77.33810759933381, 34.761214229890605], [-77.33780250114657, 34.7611444108079], [-77.33754262993251, 34.761096798845585], [-77.33713816461822, 34.761012821126954], [-77.33677509807396, 34.76078578501795], [-77.3359296926152, 34.76076190501498], [-77.33603023009277, 34.76135840631394], [-77.33615890814221, 34.76212180131199], [-77.33625578378204, 34.76276160831729], [-77.33629038838585, 34.76307852665151], [-77.33640314794283, 34.76373476806798], [-77.33645401737549, 34.76403083941603], [-77.33647753864079, 34.76416774066437], [-77.33659420502778, 34.76435894862571], [-77.33679562397157, 34.76471152308032], [-77.3370161324598, 34.76492852837431], [-77.33722368631986, 34.76517075992521], [-77.33745338946761, 34.76552523844639], [-77.33754540189827, 34.76571175865232], [-77.33760381837129, 34.765822710319064], [-77.33787104789295, 34.76624973510493], [-77.33787948805868, 34.766272292674294], [-77.33791701179712, 34.76635257270072], [-77.33811945988906, 34.76672676684011], [-77.33826061787522, 34.76687031489924], [-77.33855264567543, 34.76730239490959], [-77.33889177162922, 34.767595633153256], [-77.33898714648889, 34.76849305762419], [-77.3390083090576, 34.76852874914357], [-77.33900803009331, 34.76855444229782], [-77.33902004334465, 34.76860634514746], [-77.33929646895403, 34.76900227121939], [-77.33936294450385, 34.76904445080908], [-77.33928126817166, 34.769491728878094], [-77.33913589631979, 34.76998562488057], [-77.33906579848143, 34.77000864216543], [-77.33869103467214, 34.77034928140824], [-77.33852777949777, 34.770569773154506], [-77.33842523223436, 34.77063278020824], [-77.33833638284602, 34.771083384847685], [-77.33827230455233, 34.77113565001524], [-77.3383218554129, 34.77142138891425], [-77.33848081168759, 34.77155095806577], [-77.33839241242532, 34.77188037232252], [-77.33842424363665, 34.772130999763725], [-77.33845458299317, 34.77238571306193], [-77.3385389645444, 34.77243697418589], [-77.33851682642597, 34.77252076692026], [-77.33848129227941, 34.77259743238211], [-77.33850931284248, 34.77265684689909], [-77.33864229068004, 34.772747253815844], [-77.33864565334493, 34.77274912311271], [-77.33866415762247, 34.7727594095072], [-77.33898375768086, 34.772626523736314], [-77.33921149167334, 34.772605891225794], [-77.33937678072597, 34.772402873434345], [-77.33981293246808, 34.771861977553016], [-77.33983116422554, 34.77183781823934], [-77.3401277301199, 34.771325171764744], [-77.3404033360722, 34.77110829293583], [-77.3407340130363, 34.77035544247573], [-77.34078921126644, 34.77025973200365], [-77.34078848674102, 34.77017281118444], [-77.34096952858343, 34.769918046557905], [-77.34160537827664, 34.76917307416438], [-77.34119628380236, 34.76913802675093], [-77.34077839761945, 34.7687446574547], [-77.34072353574366, 34.76870318239734], [-77.34043603750095, 34.76835865853264], [-77.34041106311292, 34.76823871626451], [-77.3404739000094, 34.76786609327876], [-77.34050210122498, 34.76740386550334], [-77.34050410520032, 34.76737886077297], [-77.34050493355959, 34.767374464376246], [-77.34050294303532, 34.76736661276606], [-77.34040403831844, 34.76706162346131], [-77.34025044202127, 34.76692198317453], [-77.34017551469076, 34.76684313933868], [-77.33959705462632, 34.76656416360882], [-77.33955202485447, 34.76655003514599], [-77.33953733079352, 34.7665454246979], [-77.33953598458874, 34.76653256612649], [-77.33954001020464, 34.76651363219219], [-77.33943386354753, 34.76583664189393], [-77.33947240846204, 34.765566535086634], [-77.33930832985465, 34.76532737484835], [-77.33922193220573, 34.76521124645097], [-77.33905500265654, 34.765136388900586], [-77.33882210696206, 34.764938982533046], [-77.33855378104894, 34.76493657378468], [-77.3382413874466, 34.76487564059671], [-77.33807853873736, 34.76478288606588], [-77.33803907637855, 34.764543940091315], [-77.33821268709863, 34.76406115232047], [-77.33837422759194, 34.76376760165202], [-77.33865418173463, 34.76328275917002], [-77.33867940901705, 34.76323839008892], [-77.33869377611767, 34.76321067007058], [-77.33873439380007, 34.76317983840358], [-77.33891699238922, 34.76308071681157], [-77.33946760970824, 34.76271856763745], [-77.3395383301632, 34.76268218000524], [-77.33961278978441, 34.76262304567039], [-77.34033292136692, 34.76210943375795], [-77.34057923505674, 34.761802794928386], [-77.34067322165399, 34.76150289800253], [-77.34079764380843, 34.7612444732511], [-77.34114899451089, 34.76105644720907], [-77.34155641992635, 34.76064001227962], [-77.34186695655706, 34.76064753221468], [-77.34224423462788, 34.760522693241995], [-77.34252672392728, 34.76043880155525], [-77.34274681491023, 34.760417906603024], [-77.34311559448848, 34.76047398079147], [-77.34329705338256, 34.76050157153036], [-77.3436340939538, 34.76056558730188], [-77.34368549751254, 34.76057441809677], [-77.34370507139938, 34.76058203441432], [-77.3437235135598, 34.76059722976312], [-77.34392916628086, 34.76076667655923], [-77.34405171171932, 34.760709687580466], [-77.34421333696609, 34.76081958354633], [-77.34465632077934, 34.76083279557402], [-77.34437805791764, 34.76045876695761], [-77.34433501830539, 34.76040091415565], [-77.34419151438905, 34.76020802000407], [-77.34412758160528, 34.760083994177904], [-77.3441200249019, 34.76006589897908], [-77.34411947059536, 34.7600555489448], [-77.34410988657768, 34.759876605697464], [-77.34410054554905, 34.759702185780824], [-77.3440935582795, 34.75957172617609], [-77.3440896105972, 34.75949801929382], [-77.34407918940988, 34.759219853980476], [-77.34404513643173, 34.75913803857917], [-77.34406703038316, 34.759087988220394], [-77.34407907653781, 34.759044870349115], [-77.34414507400821, 34.758993163014274], [-77.34457019426364, 34.75853160106199], [-77.34474198838123, 34.75835551016484], [-77.34493869907068, 34.758056801872875], [-77.3449864605054, 34.75798713064251], [-77.34500221392395, 34.757947734331744], [-77.34513633646739, 34.75751065655971], [-77.345137731324, 34.757479005229285], [-77.34513657402688, 34.75742846382862], [-77.34528164059293, 34.75697188921916], [-77.34535273502847, 34.75689909771779], [-77.34567631860942, 34.75663001093979], [-77.34609658771967, 34.75640086908321], [-77.3461373894587, 34.75636713132096], [-77.34648119265891, 34.75606642596722], [-77.34670605931473, 34.75580174667302], [-77.34680273799142, 34.7557129798711], [-77.3469225915444, 34.755619901108645], [-77.34719230386345, 34.755419788583296], [-77.34765584978831, 34.75515804850684], [-77.34818196511729, 34.755019901518345], [-77.34831282775572, 34.75495868737077], [-77.34901006040344, 34.75451091063364], [-77.34903218351747, 34.75449649707688], [-77.34905685965836, 34.7544597027723], [-77.3493966947007, 34.75397048489177], [-77.3494662277581, 34.753604448434984], [-77.34959758001425, 34.75345554255359], [-77.35016105937859, 34.75294341132119], [-77.35076356115842, 34.75270909106131], [-77.35118423489757, 34.75257322998396], [-77.35162755797039, 34.75251897549147], [-77.35201842014034, 34.752513551028485], [-77.35226867365505, 34.75260164739446], [-77.35247322065962, 34.752657010839926], [-77.35256935957216, 34.7526790630622], [-77.3529791904632, 34.7528866612726], [-77.35309841243595, 34.75291991960526], [-77.35312373472696, 34.75294512739041], [-77.35312237720068, 34.75297187489735], [-77.35333180096178, 34.75317931489747], [-77.3533365711459, 34.7532032108586], [-77.35338060870302, 34.753423818079675], [-77.35338953535984, 34.75352911954968], [-77.35339450842292, 34.75389276226941], [-77.35338347226204, 34.75391080721714], [-77.35323107713438, 34.75438624005331], [-77.3531399145246, 34.75450950992889], [-77.35293758188959, 34.75494675986599], [-77.35285483259517, 34.75532945846824], [-77.35220302874879, 34.756022317471036], [-77.35269197008348, 34.75773815561058], [-77.35272975048022, 34.757899569106286], [-77.352744402904, 34.75796732594102], [-77.35277863390863, 34.75814467479442], [-77.3537470920543, 34.76034987274085], [-77.35379968053297, 34.761651796447026], [-77.35411891097785, 34.76177961266822], [-77.35425093441846, 34.761671797048166], [-77.3544566388407, 34.761561642715755], [-77.35554103082399, 34.761008691746675], [-77.35597452395261, 34.76064536542805], [-77.35633290456822, 34.7603449890788], [-77.3563447679376, 34.76033504579376], [-77.35636156900354, 34.76032543802566], [-77.35675305558242, 34.76005841756575], [-77.35703897870732, 34.7599766126989], [-77.35717694589124, 34.760077446362374], [-77.35748568655946, 34.76017114420148], [-77.35754733173675, 34.76018681209178], [-77.35756853352513, 34.760215926595585], [-77.35769881781682, 34.760464528178005], [-77.35777936333693, 34.76061821703739], [-77.35797967252742, 34.7608629260605], [-77.35805263387498, 34.76098086241764], [-77.358105353751, 34.76106085412583], [-77.35831013706051, 34.76143733631421], [-77.35836538953843, 34.761528777030875], [-77.35852401393207, 34.761978153484066], [-77.35859991248503, 34.762136860243544], [-77.35872399703632, 34.76242537133276], [-77.35872733515919, 34.762433089920094], [-77.3587317912066, 34.76243701789244], [-77.35890179593201, 34.762693140842515], [-77.35890915588904, 34.76290005524034], [-77.35905707088307, 34.76334120519093], [-77.35906299839088, 34.76335762089626], [-77.3590661208813, 34.763365893597694], [-77.35906720376592, 34.76338413204597], [-77.35908789826951, 34.76373269930602], [-77.3591328306172, 34.76384412070237], [-77.35916803392332, 34.76406529647544], [-77.35926326795125, 34.764313600307545], [-77.35928144386654, 34.764372306142754], [-77.35927648167551, 34.764648389960364], [-77.35929101720838, 34.764759173034875], [-77.35928677727951, 34.7647977581714], [-77.35928468118868, 34.764853085015986], [-77.35899667737195, 34.76577399883819], [-77.35900826626919, 34.765810758942784], [-77.35901117831929, 34.76588727288689], [-77.35884540425728, 34.766132493982326], [-77.35755448537404, 34.76698507579236], [-77.35859399823596, 34.76699800841563], [-77.35893225629108, 34.76740045690819], [-77.35923670973591, 34.767728938995276], [-77.35954617414654, 34.767845117851635], [-77.35997918197496, 34.76830969474518], [-77.36003595636896, 34.76836766773102], [-77.36004793123091, 34.768383482338194], [-77.36010704659176, 34.7684186150116], [-77.3605778988076, 34.76871065290849], [-77.3610071483822, 34.76887668410589], [-77.36115069414899, 34.76894742517798], [-77.36159403223138, 34.76949828398225], [-77.36160628664379, 34.76951977851576], [-77.36162025323591, 34.76953965320812], [-77.36179811730557, 34.76988617530199], [-77.36201449733699, 34.77014143017923], [-77.36207364556778, 34.77018756571686], [-77.362095856578, 34.77020848445428], [-77.36209007188546, 34.770231115918136], [-77.36253795873834, 34.770797899097175], [-77.36260932627152, 34.770887242384845], [-77.36268622526863, 34.7709989785581], [-77.36298058344633, 34.7714829320331], [-77.36308991667323, 34.77157968823315], [-77.36302903479162, 34.77180089678027], [-77.36285664790518, 34.77217706889673], [-77.36281878934047, 34.77220578445024], [-77.36275805479153, 34.772249130561185], [-77.36248588768257, 34.772410049547574], [-77.36198877368071, 34.77268877282424], [-77.36180250103328, 34.772789827898364], [-77.361667903761, 34.772879500259045], [-77.36146733036796, 34.7729903894429], [-77.36119306029345, 34.77321938809616], [-77.36116552049053, 34.773245520129244], [-77.36112244441254, 34.7732912020172], [-77.36082864840049, 34.77370424062044], [-77.36073641193443, 34.774041234567306], [-77.36055185895762, 34.77442121177724], [-77.36047484374478, 34.774698876904026], [-77.36035122626521, 34.774908806108805], [-77.35993130199913, 34.77535438685951], [-77.35979554067303, 34.775497503836945], [-77.35978864843418, 34.77557718764917], [-77.35980534905579, 34.77562444048324], [-77.35980059686699, 34.77580434946859], [-77.35981129460782, 34.77606821473587], [-77.35983606096893, 34.77615301180809], [-77.35963348358281, 34.77637964151175], [-77.35952276627819, 34.77654897038848], [-77.35950663579845, 34.77659695375715], [-77.35947022640173, 34.776656426384065], [-77.3593688255338, 34.776828339939875], [-77.3592998536227, 34.77693317901282], [-77.35928314783676, 34.776957417512435], [-77.3592333220104, 34.77706053349443], [-77.35917089427146, 34.77722726379718], [-77.35921295754069, 34.77753986934527], [-77.359223232942, 34.77761623474716], [-77.359200196317, 34.77766131534739], [-77.35898803382368, 34.778093154332865], [-77.35886859465901, 34.778245581268735], [-77.35881759089011, 34.77831312108626], [-77.35879006140358, 34.77834580483829], [-77.35861845171675, 34.77852304444204], [-77.35850749503483, 34.77863245008518], [-77.35827065268232, 34.778862253074585], [-77.35821920375996, 34.77890973403809], [-77.35816518673393, 34.778984592252755], [-77.35783101277133, 34.77936593091824], [-77.35768087007958, 34.77952687294632], [-77.35760494058013, 34.77966401164418], [-77.35752232329438, 34.77981713336041], [-77.35748031379066, 34.779947672200805], [-77.35738436945347, 34.780202056176975], [-77.35741140880718, 34.780337551961836], [-77.35739596009694, 34.78055854415052], [-77.35729879614323, 34.780857376858116], [-77.35716978891622, 34.78093745265452], [-77.35707997850997, 34.78122122757019], [-77.35723540412161, 34.78139442790564], [-77.35745551699318, 34.781668038362625], [-77.35767560201427, 34.78186582676098], [-77.35781776522873, 34.78262982388011], [-77.35784225386618, 34.78268895982642], [-77.35784236317993, 34.78272531352884], [-77.35781962141036, 34.78274919783579], [-77.35775819747097, 34.782834857308536], [-77.35752035928662, 34.78317186020867], [-77.35733834961783, 34.783459708905454], [-77.35698870895152, 34.783545039452015], [-77.35692523402089, 34.783963090237364], [-77.35691702495883, 34.78407918935119], [-77.35697845095311, 34.784368752913096], [-77.35708259043243, 34.78469636649348], [-77.35708685026303, 34.784788318548536], [-77.35692221217622, 34.78519947790892], [-77.35679561749932, 34.78556741662875], [-77.3567952450386, 34.7857142814147], [-77.35682398958544, 34.785790199053366], [-77.356708025522, 34.78624299594724], [-77.35652883793827, 34.786628786544185], [-77.3564818367287, 34.786723077106465], [-77.35588393289186, 34.78707171135408], [-77.35588150000925, 34.78707222554308], [-77.35518289469346, 34.78728126239153], [-77.35510446918374, 34.78729455628899], [-77.35490365342032, 34.78728925785043], [-77.35484900101625, 34.7873261208088], [-77.35480506834102, 34.78729972659979], [-77.35466972884169, 34.78733236248419], [-77.35463088112968, 34.78737221123506], [-77.35466786485648, 34.787486360758194], [-77.35450884066748, 34.787646115165415], [-77.35457535086455, 34.78773360476383], [-77.35456711568338, 34.787913408095804], [-77.35437903082368, 34.78783926273957], [-77.35424202515279, 34.7881761947406], [-77.35421270382884, 34.788215583602174], [-77.35416014813109, 34.78842716204303], [-77.35400627694371, 34.78849386014521], [-77.35393784098316, 34.788553078470834], [-77.3539588799523, 34.78863634642555], [-77.35378775822895, 34.78876981321008], [-77.35375532514956, 34.78883228776919], [-77.35371296871344, 34.78886977002776], [-77.3537650032859, 34.788848117828984], [-77.3541300051703, 34.78869623462076], [-77.35449500566659, 34.788544350367175], [-77.35486000477475, 34.788392465068256], [-77.3555899988267, 34.78808869133445], [-77.35631998732612, 34.78778491341953], [-77.35653201158411, 34.78769667961385], [-77.35671934402134, 34.787365429884666], [-77.35690669383357, 34.78724679567465], [-77.35713968372286, 34.787172358634706], [-77.3575233477921, 34.787087550305], [-77.35757712064229, 34.78684561441242], [-77.3580631195819, 34.786167006645115], [-77.35805990199476, 34.78615684475258], [-77.35805458607413, 34.78612885065817], [-77.35783968404048, 34.78536750179792], [-77.35798774601062, 34.78501312691909], [-77.35804976566475, 34.784623295333716], [-77.35806227596106, 34.78438237325429], [-77.35829209676633, 34.78400116664762], [-77.35843755759933, 34.783759887475426], [-77.35851567259618, 34.783520173608935], [-77.35851119601779, 34.783303047888616], [-77.35852746824017, 34.78324468553952], [-77.3585500870848, 34.7831951087667], [-77.35862962282278, 34.78300081778744], [-77.35873978498032, 34.782756544251775], [-77.35907377789961, 34.78217640998684], [-77.35911237996584, 34.78205129458335], [-77.35914716179235, 34.781925192518585], [-77.35939197272498, 34.78158990704796], [-77.35939722788862, 34.781585376471256], [-77.3594163894457, 34.78154457462979], [-77.35959612057049, 34.781161863209554], [-77.35960977249938, 34.78110689496696], [-77.35959309855457, 34.78106777045629], [-77.35963436816702, 34.780794219439315], [-77.35965488499505, 34.78059580550793], [-77.35963408967388, 34.78055617461919], [-77.35971972773791, 34.780500380504314], [-77.35993400370397, 34.780216871000846], [-77.35997964637123, 34.78011787238238], [-77.3600776968188, 34.77997357529876], [-77.36011214150699, 34.77988462461818], [-77.36016474853734, 34.779845464988384], [-77.36025217977851, 34.77977187530062], [-77.36034709565425, 34.77968723224244], [-77.36036105712772, 34.77941773743352], [-77.36036491854146, 34.779407777545025], [-77.36019864221385, 34.77907605176025], [-77.36018705221208, 34.779035559550486], [-77.36016639741644, 34.77896274639817], [-77.36011193294965, 34.778486477784384], [-77.3603883778487, 34.778198571950064], [-77.36047304169722, 34.778103287515954], [-77.3605129862576, 34.7780675998913], [-77.3605852076314, 34.77797733496026], [-77.36092591752845, 34.777652878524705], [-77.36104024340911, 34.77753340321335], [-77.36120158379363, 34.77727452499376], [-77.36123296805653, 34.77720110466668], [-77.36137888315557, 34.77699752455166], [-77.36150683595663, 34.77679897320249], [-77.36155122173588, 34.776753251562305], [-77.36173189947414, 34.776607529825924], [-77.3619916941702, 34.776348169188815], [-77.36209549803212, 34.77626421123108], [-77.36229451729848, 34.77605414930349], [-77.36241716916173, 34.77593783893978], [-77.3626242952449, 34.77563154399397], [-77.36271462647386, 34.775482708393724], [-77.36287836886154, 34.77523779240724], [-77.36302483945761, 34.775032043921314], [-77.36311343379086, 34.77493402444071], [-77.36330723857438, 34.774776415731004], [-77.36344852602782, 34.77462108868332], [-77.36366155026168, 34.7743329781092], [-77.36413597929621, 34.77382176374693], [-77.36419302782323, 34.77376317957749], [-77.36420373895585, 34.7737222486755], [-77.36425950856719, 34.77370672185262], [-77.36473888296177, 34.77339497580303], [-77.36487715805256, 34.773326162244764], [-77.36505583400339, 34.773173925019066], [-77.36529969683741, 34.77303200639484], [-77.36548705495744, 34.77282618945957], [-77.3658027482314, 34.77281123674567], [-77.36611192217447, 34.77299917762325], [-77.36630413712908, 34.773294028497936], [-77.36634650864531, 34.773398314472864], [-77.3664491860591, 34.77365102761287], [-77.36648181194782, 34.77373771243141], [-77.36655597603482, 34.774030824754625], [-77.36666412184695, 34.77426378340435], [-77.36682848665478, 34.774271356500705], [-77.3669615461838, 34.77434427598705], [-77.36729250340993, 34.774292735072635], [-77.36729753871646, 34.774291950911255], [-77.36729876774884, 34.7742917595086], [-77.36730079045904, 34.77429144449777], [-77.36771676926773, 34.774226661528274], [-77.36787787834824, 34.77404903022409], [-77.36757093424383, 34.773826758225916], [-77.36745338072913, 34.77375526897401], [-77.36723625861268, 34.77342362231238], [-77.3671307021252, 34.772657019751556], [-77.36706213297145, 34.77260358802568], [-77.36712092315318, 34.77255087055307], [-77.36702270475625, 34.77234285328349], [-77.3668572050316, 34.771796378107446], [-77.36674787296782, 34.77176594586021], [-77.36665903875159, 34.771748081944175], [-77.36615504532139, 34.771598064765186], [-77.36577308066833, 34.77135519783325], [-77.36563908892346, 34.77116548096], [-77.36551201881724, 34.77086943742452], [-77.36541984063685, 34.77060973655526], [-77.36532268758783, 34.7700457315323], [-77.36527297038043, 34.769778361849305], [-77.36528778426835, 34.769672532681724], [-77.36529969186553, 34.76952479425573], [-77.3653013013943, 34.76932030783492], [-77.36528108744, 34.76911097099213], [-77.36521021743415, 34.76891196793421], [-77.36505959680109, 34.76874243800374], [-77.36490759109472, 34.76859169889404], [-77.36459768328734, 34.768376564106354], [-77.36453468869222, 34.76834075517835], [-77.36448668649419, 34.7683206707031], [-77.36429751364486, 34.76820754077258], [-77.3639863021894, 34.76801993326964], [-77.3636674369796, 34.76776922074009], [-77.363478499933, 34.76755937427503], [-77.36298576884587, 34.76723747317607], [-77.36293959728438, 34.76720592538441], [-77.3629144345878, 34.76719019140867], [-77.36287883643527, 34.76706255725311], [-77.36271295125958, 34.76653453259908], [-77.36270286793658, 34.766385758586466], [-77.36267761790288, 34.765898961137715], [-77.36264900720352, 34.76551567315187], [-77.36263752161223, 34.765389680970145], [-77.3627042635912, 34.76527942865684], [-77.36291259737834, 34.76508984812662], [-77.36306198492571, 34.764979016328326], [-77.36332834240349, 34.764802739065395], [-77.36333075027302, 34.76478559892085], [-77.36320546598338, 34.764470009211706], [-77.3631596842406, 34.76441056183807], [-77.36312554505668, 34.764356583495946], [-77.36294137668494, 34.76405519304075], [-77.36276454004232, 34.763756460423735], [-77.36273049308177, 34.76369673355573], [-77.3626942405896, 34.763632707924714], [-77.36252128087926, 34.76333757884144], [-77.36253065538509, 34.76311537304282], [-77.3625125875299, 34.76289494382894], [-77.36269576587976, 34.76227038321278], [-77.36278941967993, 34.76208749012284], [-77.36294577805074, 34.76193058750393], [-77.36325169102926, 34.76171314729877], [-77.36326533776315, 34.761704564095936], [-77.36328841248682, 34.76167943880506], [-77.36342183632956, 34.76119039157618], [-77.36341198496754, 34.76116116549647], [-77.36330408436179, 34.76078040336506], [-77.36335421166453, 34.76035239038891], [-77.36348917559808, 34.76009551114555], [-77.36376899904334, 34.75993174101973], [-77.36402106657685, 34.75994573839478], [-77.3643690520525, 34.760074446091856], [-77.36475765959659, 34.76017521170047], [-77.36512151398392, 34.7602483822752], [-77.36541618783998, 34.760210750615286], [-77.3655486596505, 34.76019836524417], [-77.36567839937996, 34.75998364526243], [-77.36578926797638, 34.75984320874781], [-77.36589465673543, 34.759818992231914], [-77.36581608419714, 34.75973452406671], [-77.3657639247372, 34.759689098002745], [-77.36556727934482, 34.75948007554604], [-77.36527122233082, 34.75917669670435], [-77.36515738787593, 34.759116264343334], [-77.3650535499952, 34.75896538704512], [-77.36474867121161, 34.758767109204804], [-77.36463322208328, 34.758700853181836], [-77.36447591688537, 34.75860185223752], [-77.36431539240128, 34.75857432362696], [-77.3641675470525, 34.75855925004683], [-77.3640812253252, 34.75854661224098], [-77.36394986065744, 34.75857908471525], [-77.36371321962949, 34.75869336164139], [-77.36342342787229, 34.7589127003323], [-77.36339898342324, 34.7589280747091], [-77.36335840502473, 34.758931289309295], [-77.36272047342774, 34.75912437089897], [-77.36257923801642, 34.759084593793624], [-77.36217923819936, 34.758779152268666], [-77.36206983017043, 34.758679588280344], [-77.36192468692602, 34.75858697805744], [-77.36168112847362, 34.75843157304077], [-77.36135316022174, 34.758442349454526], [-77.36109282385952, 34.75839457512869], [-77.36072657169231, 34.75847172063603], [-77.36043661189805, 34.75859139944811], [-77.36015111375595, 34.7586003037013], [-77.36012964751066, 34.758594947539635], [-77.36010563429718, 34.75856002892175], [-77.35996177366688, 34.75836908786149], [-77.35994978966954, 34.75833905174651], [-77.35993280517806, 34.75826345627258], [-77.35986600361248, 34.758009263099595], [-77.35984785154517, 34.75789734193958], [-77.35979406303369, 34.757645925924464], [-77.35971654959312, 34.75733575394151], [-77.35964934752461, 34.75717683693988], [-77.35960356333503, 34.757028427505055], [-77.3595586161493, 34.75696227877752], [-77.35937320885554, 34.75681137286411], [-77.35919789275705, 34.75666867847168], [-77.35913306725661, 34.75660184867952], [-77.3590853368129, 34.7565398663433], [-77.358936196729, 34.75635904098693], [-77.35875617081003, 34.75612702723778], [-77.35873558403433, 34.75610049536024], [-77.35872164619741, 34.7557356074586], [-77.3587166960312, 34.755615703142816], [-77.35875363584543, 34.755448144844785], [-77.35883479243573, 34.75511210608309], [-77.35887871107187, 34.754920720336756], [-77.35887241388717, 34.75483119293309], [-77.35884519886302, 34.754789241812496], [-77.3588008885519, 34.75468909358667], [-77.3587486993558, 34.75463654029544], [-77.35868904047375, 34.754578008385025], [-77.35862560291307, 34.75451407904747], [-77.35832706984112, 34.75446219104327], [-77.35804077456167, 34.754246335741925], [-77.35785610498932, 34.75403598344353], [-77.35776384873824, 34.75335622087198], [-77.35775055712783, 34.753328720844735], [-77.3577421575332, 34.75331256054737], [-77.35770681362573, 34.7532446367989], [-77.3575061658634, 34.75285757111645], [-77.35759730380528, 34.75265814966364], [-77.35749020634974, 34.752372376380954], [-77.35788304905176, 34.75212431684898], [-77.35816575062083, 34.751972457189154], [-77.35844801976783, 34.75175350831183], [-77.3586867931413, 34.75155977007197], [-77.35906987963364, 34.751180751028485], [-77.35874784164803, 34.750984746481336], [-77.35851085466457, 34.75078421718065], [-77.35850271274467, 34.75077907149344], [-77.35848010643744, 34.75077433410224], [-77.3581215651646, 34.75067801646531], [-77.35766704728161, 34.750656599578946], [-77.35747766369549, 34.75091194672035], [-77.35714875535132, 34.75134920566042], [-77.35708871496455, 34.75142078679296], [-77.35658118081466, 34.751468599511114], [-77.35675036302396, 34.75112110764097], [-77.35699739292674, 34.75097787402204], [-77.3569304425886, 34.75080574450214], [-77.3570921746622, 34.75047747846574], [-77.35721231654682, 34.75025384338023], [-77.35733795873541, 34.7497038576756], [-77.35727780240458, 34.74947722854314], [-77.35703963136098, 34.74914488309979], [-77.35669141011525, 34.74879917636974], [-77.35661041362376, 34.7486865876851], [-77.35649917032782, 34.74860934422677], [-77.35634563707215, 34.74820977682297], [-77.35629983180574, 34.748137043898986], [-77.35629031295534, 34.748117855577135], [-77.35618311858475, 34.747832599441146], [-77.35610833657671, 34.747688226012], [-77.35601214119512, 34.747569893225254], [-77.35589016402844, 34.747433289705185], [-77.35581496571503, 34.747327340150434], [-77.35574175364259, 34.747251161309244], [-77.35563153754748, 34.74707421280451], [-77.35561708584717, 34.747024582145016], [-77.35547292048493, 34.74680760134989], [-77.35547048467213, 34.746803875823545], [-77.35546853222165, 34.74680128130983], [-77.35545356429803, 34.74678139117334], [-77.35531952343258, 34.746525776726166], [-77.35530820962558, 34.74633590372005], [-77.35538255350758, 34.74608026698397], [-77.35537228714936, 34.74583972525609], [-77.35538543168626, 34.74568665456035], [-77.35554928027224, 34.744951506761126], [-77.3556438687287, 34.744827680032486], [-77.35577734655782, 34.74459676944761], [-77.35618678295458, 34.74377838767558], [-77.35647202160808, 34.74327399706116], [-77.35648330089629, 34.74325030166777], [-77.35648903081662, 34.74323106148679], [-77.35662966473546, 34.74274282406135], [-77.35699853067737, 34.74240594778664], [-77.35711841435324, 34.74218834657455], [-77.35725229661298, 34.74199252281893], [-77.3572992498292, 34.74184923611408], [-77.35731305019078, 34.74167424233175], [-77.35722755901566, 34.74133239704393], [-77.35722279831576, 34.74111960711615], [-77.35696471386827, 34.740747293023], [-77.35739419837232, 34.74019931419656], [-77.3572769878904, 34.73972964972876], [-77.35727431016247, 34.738820957658895], [-77.35843317684517, 34.738677099355854], [-77.35881701507593, 34.73854345145126], [-77.35955343069443, 34.73828703984155], [-77.3601500238495, 34.73807930402408], [-77.36109826790073, 34.737749121739185], [-77.3615687214508, 34.73719083652975], [-77.36154222951214, 34.736220086426655], [-77.36149748219765, 34.735465735270054], [-77.3615970300748, 34.73523740313912], [-77.36149880645803, 34.7349047442558], [-77.36130170644097, 34.73430318438512], [-77.36141450915005, 34.73395264471518], [-77.3614861423121, 34.733790470759054], [-77.36157608217249, 34.73369682822919], [-77.36206951697827, 34.73322296770493], [-77.36228149739836, 34.73304533676245], [-77.36251668876562, 34.7328638115294], [-77.36313529532232, 34.732525291788114], [-77.36367096986132, 34.732028248240155], [-77.36385111930227, 34.73188303191566], [-77.36403321497332, 34.731765674727534], [-77.36429806952515, 34.73164077537147], [-77.36441534364397, 34.73164380079613], [-77.3646604897086, 34.73166777060359], [-77.36494001265089, 34.731571242661545], [-77.36528329272716, 34.731585261935884], [-77.36556472647814, 34.73154790322678], [-77.36591468741571, 34.7314731474205], [-77.36630263141883, 34.731501910984605], [-77.36652090180152, 34.73144777031567], [-77.36672125921186, 34.73144649228855], [-77.3676017049645, 34.731488304704634], [-77.36766432059424, 34.731509332184444], [-77.36770525264477, 34.731493736432625], [-77.36772360451445, 34.73148425472871], [-77.36776801792307, 34.73146545664128], [-77.3683831319469, 34.7312214384895], [-77.36883063666919, 34.731188516566974], [-77.36900529374773, 34.73114109219332], [-77.36913879198552, 34.731163241135334], [-77.36947773939883, 34.73123055583629], [-77.36978635546862, 34.73145345078446], [-77.36999904043576, 34.73184375713742], [-77.3702608627905, 34.73200018908746], [-77.37051535939348, 34.73227427808457], [-77.37076677386068, 34.73204796584306], [-77.37088487931211, 34.73174025982078], [-77.37081378692028, 34.731343244032445], [-77.37123577273027, 34.731317969296725], [-77.37144278638127, 34.73128824381797], [-77.37203065327874, 34.73112119531696], [-77.3722451103604, 34.731173649659766], [-77.37263761991356, 34.73159039334902], [-77.37281937551913, 34.7318269745727], [-77.373021484779, 34.73211609150638], [-77.37321651983227, 34.732554081154724], [-77.37434866291113, 34.73369907292044], [-77.37409932605343, 34.73397142481765], [-77.37447493582653, 34.73409825575783], [-77.37625597672144, 34.73436665525895], [-77.37866938058349, 34.73449603538523], [-77.37949945422616, 34.734462400855236], [-77.38201838068193, 34.734242540277506], [-77.38217074471937, 34.73423515822847], [-77.38468562056872, 34.734269106787835], [-77.38533600305864, 34.733424457518666], [-77.38543413323221, 34.73310530748785], [-77.38532006543058, 34.73286682771341], [-77.38562118649746, 34.73205242063774], [-77.38569346837261, 34.73181863779692], [-77.38579085953029, 34.73155262349357], [-77.38585964228253, 34.73128706342674], [-77.38594829596906, 34.731048542917954], [-77.38631775712076, 34.730665893544725], [-77.38631925708589, 34.730060012284774], [-77.38645890301561, 34.729714479358016], [-77.38659549093792, 34.729597507289014], [-77.38663590485717, 34.72956289721543], [-77.38673356468664, 34.72941892139483], [-77.38690313496639, 34.729251533265284], [-77.38693568875077, 34.729157384777885], [-77.38703952087657, 34.72910038466095], [-77.38714767446965, 34.729096507274136], [-77.38727449344597, 34.72927594416515], [-77.38724813822108, 34.72938558920236], [-77.38734294035288, 34.729528714928975], [-77.38764937032019, 34.72996629258856], [-77.38769441394699, 34.73009221781391], [-77.38781870846874, 34.73009923264429], [-77.38787486987951, 34.73009246345026], [-77.38809619196869, 34.730122645644286], [-77.388373661267, 34.73015983548272], [-77.38843938317257, 34.730170078178865], [-77.3888977985444, 34.73026865737715], [-77.38904487084537, 34.730293295521406], [-77.3892506203589, 34.73033630067212], [-77.38964418378174, 34.730437809576124], [-77.38994785123818, 34.73048919777118], [-77.39075959271959, 34.73060005212879], [-77.39086763400095, 34.730641236073325], [-77.39096170876863, 34.73065052697281], [-77.39116513761864, 34.730637319988034], [-77.39157417392542, 34.73026056654464], [-77.39162161971728, 34.730232994410564], [-77.39162721742106, 34.73023300934844], [-77.3916626867032, 34.730223677501165], [-77.39197678323953, 34.73013313139187], [-77.39201735101284, 34.73013180109159], [-77.39228090187419, 34.7301889726391], [-77.39228118108495, 34.73018903320775], [-77.3922814966979, 34.73018918075558], [-77.39252281024449, 34.73031151373741], [-77.39262272312044, 34.730373451906566], [-77.39283024486227, 34.730506856438595], [-77.39299111305404, 34.730562647659525], [-77.39319381142437, 34.73078795231562], [-77.39324330936539, 34.73129376804877], [-77.39324279074171, 34.73135038097244], [-77.39382168899799, 34.73151050976746], [-77.39387723817056, 34.73153226932783], [-77.39427629598262, 34.73158088644418], [-77.39443738860717, 34.73159853205544], [-77.39472132936041, 34.73162677702447], [-77.39499192848514, 34.73189751652868], [-77.39505386400688, 34.73199785302313], [-77.39527395756357, 34.7322890794503], [-77.39546551737601, 34.73247574326344], [-77.39579171835757, 34.73281512932546], [-77.39581098223498, 34.73295788633804], [-77.39553322545156, 34.73328384608102], [-77.39541181889547, 34.733437739320365], [-77.39513040550426, 34.73370207332912], [-77.39509234910818, 34.7337629266937], [-77.39489276168418, 34.73408562629162], [-77.39481849855422, 34.73415210471204], [-77.39480421122305, 34.73427013411773], [-77.3947216404186, 34.735041587922424], [-77.39470016210892, 34.73520613387389], [-77.39475963930185, 34.73524980964252], [-77.39502532786707, 34.73596324382146], [-77.39635473973759, 34.736476170421724], [-77.39687672467156, 34.736455489598306], [-77.39770431440985, 34.73663195426773], [-77.39834790692377, 34.73674194300905], [-77.39873334022569, 34.73620304859429], [-77.39926865069746, 34.73570881216459], [-77.39927198195366, 34.73525974395961], [-77.39927463479609, 34.73515177067021], [-77.39986499667057, 34.734995235817635], [-77.39997028756642, 34.73490495650543], [-77.40004225531963, 34.73486113724142], [-77.40060313174588, 34.73453101835667], [-77.4006392505751, 34.734510820829115], [-77.40064299286958, 34.734508319288004], [-77.40064898163607, 34.73450273435103], [-77.40096371317128, 34.734284444783135], [-77.40121542143685, 34.7341532189844], [-77.40131634883704, 34.73411275194923], [-77.40140313454161, 34.73411312231208], [-77.40152048366141, 34.73414862370587], [-77.40199235622495, 34.7342925497304], [-77.40249638692828, 34.734545570329594], [-77.40255356938326, 34.73456862334773], [-77.40260205778623, 34.73459042680492], [-77.40309665474352, 34.73477872345441], [-77.40313546835613, 34.73477333079916], [-77.40344402004123, 34.73465313327668], [-77.40345863772403, 34.73462231099], [-77.40351070676849, 34.73439689396159], [-77.40355084817973, 34.734194907346975], [-77.40368278827623, 34.733897954618214], [-77.40381557464141, 34.73370945557632], [-77.4040676186863, 34.73347342502835], [-77.40417231933158, 34.73340817937456], [-77.40444948669456, 34.733249424876036], [-77.40467994855877, 34.73312846233396], [-77.40476468164931, 34.73301653485183], [-77.40481796748838, 34.732773997044475], [-77.4047985256768, 34.73261081193266], [-77.40476677293827, 34.73227177217898], [-77.4047519171818, 34.73203538799336], [-77.40479932227124, 34.731889094509285], [-77.4046652242128, 34.731707289742616], [-77.40441936133335, 34.731154825910565], [-77.40424770767177, 34.73093541245942], [-77.40414166002509, 34.73070370097918], [-77.4041174241994, 34.73038803010106], [-77.40402870556551, 34.73010506908625], [-77.4041886288079, 34.7298302009534], [-77.40419142980936, 34.729602859988894], [-77.40418194203522, 34.729468462188336], [-77.40430402781028, 34.72927068005515], [-77.40443270114653, 34.72912812449776], [-77.40457733772519, 34.72896933234579], [-77.40485452850167, 34.728716542276274], [-77.40489839125107, 34.72868999734566], [-77.4052021688623, 34.7284945177512], [-77.40549963451676, 34.72838305384338], [-77.40557440169142, 34.7283549084953], [-77.40564430841053, 34.72832853277314], [-77.40594667725671, 34.72821537016122], [-77.4062646216823, 34.72809149333011], [-77.40636422927025, 34.72805675933498], [-77.4069108035864, 34.72829527037231], [-77.40693488451633, 34.72830012300749], [-77.40695990039913, 34.72831028515545], [-77.40741419981833, 34.728370092433444], [-77.40759160679922, 34.72824644635062], [-77.40773460150272, 34.728145749861284], [-77.40783523440652, 34.728081692186606], [-77.40834832032542, 34.72784764537607], [-77.40845450481054, 34.72782638339378], [-77.40870102678076, 34.7278253762501], [-77.40889914484386, 34.727805149129296], [-77.40900832381246, 34.727782619780726], [-77.40927740893899, 34.72779035106255], [-77.40936071045272, 34.72781158323907], [-77.40935602305429, 34.727757572156044], [-77.40935002584895, 34.72770971859603], [-77.40933265870544, 34.72754414120749], [-77.40931766523416, 34.727481921195064], [-77.40924859476027, 34.72735601958452], [-77.40919230578115, 34.72714758319429], [-77.4091348487451, 34.72695710172506], [-77.40909532592123, 34.7268450504478], [-77.40909966441657, 34.72652542625373], [-77.40913268146738, 34.72629900276203], [-77.40923361687737, 34.72610757657047], [-77.40943452961523, 34.72584545789549], [-77.40966980076179, 34.72539500584604], [-77.40968195264567, 34.72537287928926], [-77.40968761595497, 34.72535354418462], [-77.4097973441736, 34.72485412485452], [-77.40984947494593, 34.72442739215864], [-77.4099073397979, 34.724333483620086], [-77.40994044066211, 34.72427064038641], [-77.41000743254116, 34.72408893473169], [-77.41014042053706, 34.72387490844684], [-77.4101482882092, 34.72386232407255], [-77.41015422395576, 34.72386071812714], [-77.41017450215864, 34.723845514522246], [-77.41047777395458, 34.7236528656787], [-77.41078540344483, 34.72359077445943], [-77.41085586387945, 34.723618379679195], [-77.41109681833797, 34.72363126517384], [-77.41140493455084, 34.72367238470639], [-77.41187016082793, 34.72334261538512], [-77.41196708975485, 34.723095205152816], [-77.41246222580705, 34.7224994740268], [-77.41252862038536, 34.722454684626975], [-77.41252510845631, 34.72241895720655], [-77.41283997988653, 34.722004469549844], [-77.4130209960181, 34.72182578649911], [-77.41327385897799, 34.721597102632174], [-77.41321365261781, 34.72139266746689], [-77.41319564295556, 34.72124662343236], [-77.41315037166643, 34.72123041683735], [-77.41311184028415, 34.72098133905005], [-77.41303804506347, 34.72086599334594], [-77.41306989378282, 34.720783624367414], [-77.41309955645465, 34.72069749176025], [-77.41317502699859, 34.72058569116242], [-77.41317635422037, 34.7205836294931], [-77.4132820786703, 34.72048177261524], [-77.41340310980942, 34.72026739609221], [-77.4134214318585, 34.72023621042378], [-77.41344853881566, 34.72020100036179], [-77.41374131084213, 34.72008327416752], [-77.41377138091227, 34.72006023364031], [-77.41382815640985, 34.71999705865702], [-77.41398120927293, 34.72002630524599], [-77.41442688867508, 34.72014331799551], [-77.41482000238409, 34.72056920125712], [-77.41487811565364, 34.72103992709866], [-77.41512603023928, 34.721334286084414], [-77.41523518535479, 34.72177956725075], [-77.41530816896359, 34.72215104039208], [-77.41552595031816, 34.72238466826162], [-77.41584699516615, 34.72281903997688], [-77.4161303869227, 34.723115861089525], [-77.41617516719327, 34.723170787738574], [-77.41637654645334, 34.723490909418146], [-77.41635312718557, 34.72353248492654], [-77.41607903987358, 34.723696268034615], [-77.41619604556757, 34.72402373749166], [-77.41632459357757, 34.72440529581118], [-77.41672193262748, 34.725039257181365], [-77.41674210430213, 34.72512389422218], [-77.41666471981455, 34.72557834480442], [-77.41667935504015, 34.72564774880853], [-77.4166590237874, 34.72605126419769], [-77.4167238758863, 34.726158121505094], [-77.41705396213146, 34.726568030394866], [-77.41738735582916, 34.72664023823546], [-77.41761531291685, 34.72684353030725], [-77.41792843433436, 34.726855328897514], [-77.41826403076873, 34.72681736340616], [-77.41862935561785, 34.72701498391072], [-77.41879871994988, 34.727184941643955], [-77.41898473668087, 34.727085802964105], [-77.41987660144298, 34.72738753294048], [-77.42000778837831, 34.72743775814416], [-77.42021465739955, 34.72760000805115], [-77.42053349523009, 34.727836388383636], [-77.4206263341603, 34.72796757530717], [-77.42097521427692, 34.72820363093484], [-77.4210346467817, 34.72831983343595], [-77.42115991684918, 34.72863776852384], [-77.42159729001408, 34.728980190263684], [-77.42201446730148, 34.729364419605076], [-77.42225123102334, 34.72943243518054], [-77.42301826432072, 34.729648165206015], [-77.42320386492726, 34.72968527717616], [-77.4233240812508, 34.72968984214366], [-77.423680544539, 34.729818305467326], [-77.42359046851419, 34.73012515688108], [-77.42351903792837, 34.73021108926287], [-77.42340760420691, 34.73037852223563], [-77.4231694988017, 34.730647971273854], [-77.42309669542811, 34.73081406727281], [-77.42292954521756, 34.73112316407191], [-77.42290559858068, 34.73124969649599], [-77.42293991533793, 34.731466339084186], [-77.42316437772901, 34.73176433004915], [-77.42307691987486, 34.73227756189289], [-77.42307834565389, 34.73230134994413], [-77.42308337098416, 34.73231576019521], [-77.42308974544174, 34.73229852039217], [-77.42308991532026, 34.732297374235884], [-77.42309066733179, 34.73229621083421], [-77.42324122845179, 34.73179815698669], [-77.42327271218241, 34.73180220080879], [-77.42369834192064, 34.731797227158275], [-77.42388683582945, 34.73175524447997], [-77.42403908971038, 34.731900635074815], [-77.42424400198246, 34.73194098749], [-77.42445506592614, 34.73200714954167], [-77.42459740876514, 34.73198573151256], [-77.4247214477905, 34.731973277611], [-77.42479847318103, 34.73192831850317], [-77.4249303781665, 34.73182258823247], [-77.42502061705534, 34.73171425524998], [-77.42520265929262, 34.73163955810149], [-77.4253993822316, 34.731585297685], [-77.42565176850053, 34.73151568320799], [-77.42578192327949, 34.731462510860425], [-77.42588304990936, 34.731504061450806], [-77.42604570775302, 34.73151004266033], [-77.42627669890562, 34.73152311580152], [-77.42652581905921, 34.73149850142866], [-77.42671717566989, 34.731676341154], [-77.42676369344854, 34.73178417932604], [-77.42680102179462, 34.731864557877266], [-77.42682473472374, 34.73192568552342], [-77.42685690614684, 34.73201587697784], [-77.426873921158, 34.73205734076357], [-77.42689319442766, 34.73208938063247], [-77.42689242296666, 34.73215526675955], [-77.42690374039215, 34.73223283275663], [-77.42688591084054, 34.7324693615227], [-77.42689912268197, 34.732493210361454], [-77.42697947316557, 34.732538835682035], [-77.42694343179157, 34.732612535036544], [-77.42703374792845, 34.732837338173546], [-77.4270230022967, 34.73288791948122], [-77.42691796954745, 34.733076401629866], [-77.42699653401365, 34.733345341974335], [-77.42716500577095, 34.73372002783989], [-77.42716612537265, 34.733722202451034], [-77.42709205666743, 34.73419826201497], [-77.42730725758591, 34.73433059339821], [-77.4273337822625, 34.73454381720405], [-77.42754892698368, 34.73460863719524], [-77.42758027935005, 34.734664190731785], [-77.42759289735638, 34.73470996090961], [-77.42755845284059, 34.73473918008705], [-77.42749454806118, 34.73479647191406], [-77.42731979903385, 34.73472316734315], [-77.42715884133953, 34.73461678769211], [-77.42695663986666, 34.73443975074632], [-77.42687958473374, 34.734286887076294], [-77.42654589940068, 34.73420653615719], [-77.42640577855748, 34.73412778404936], [-77.42586727185025, 34.7338455550841], [-77.42584857384033, 34.73383773871327], [-77.42582731670288, 34.733833035006064], [-77.42576314746285, 34.73379088305076], [-77.4258261973003, 34.7337784410123], [-77.42584463088252, 34.73337943339317], [-77.42588315843861, 34.73327376512373], [-77.42576248622532, 34.73302778441213], [-77.42574549771166, 34.732974403028905], [-77.42558301283805, 34.73300715268706], [-77.4254186327542, 34.73310814782619], [-77.42541658248814, 34.73310914053098], [-77.42541484757355, 34.73311007121086], [-77.42540549457917, 34.73311621984246], [-77.42520426826638, 34.73359553217591], [-77.42488445440958, 34.73373538826117], [-77.42462213267405, 34.73364461279628], [-77.42458105394826, 34.73365722433191], [-77.42442463306112, 34.73373191498282], [-77.42425266931237, 34.73381340918284], [-77.42423942350412, 34.733817342266256], [-77.42412452356645, 34.73398941362854], [-77.42383637463537, 34.73414393756147], [-77.42366935665746, 34.734177144133554], [-77.42336742682755, 34.73424807242846], [-77.4231509526837, 34.734296712004905], [-77.42273722574193, 34.73441038180317], [-77.42257231894355, 34.73444462356215], [-77.42199514823989, 34.734538612104615], [-77.421803539539, 34.73452130760903], [-77.42163475413285, 34.734584067855785], [-77.42091717832884, 34.73473163300996], [-77.42068728563032, 34.735084059908644], [-77.42074991126955, 34.735392903847696], [-77.42085419161482, 34.735907192361076], [-77.42086848714082, 34.73599343582867], [-77.42082337999497, 34.73607422339], [-77.42040266189548, 34.73638967293546], [-77.42019891865532, 34.73654965315852], [-77.41969011594533, 34.73739088859126], [-77.41913815454244, 34.73818395300419], [-77.41891636595675, 34.73850078753002], [-77.41858082620465, 34.73910729057897], [-77.4183265828727, 34.73947365551949], [-77.41787127133031, 34.739977407312224], [-77.41823439557771, 34.74057063296538], [-77.41875574310737, 34.740617080692346], [-77.41904190418539, 34.74064257297806], [-77.41973550557525, 34.7408374017208], [-77.41994508934859, 34.74093867085053], [-77.42043264810907, 34.74143187216983], [-77.42043635712302, 34.741437876337876], [-77.42045439304914, 34.7414547511559], [-77.42102105712905, 34.74165176842709], [-77.42135809363481, 34.74143552982071], [-77.42148112766306, 34.741239287373844], [-77.42181203543923, 34.741134733069956], [-77.42202231206163, 34.7412228679821], [-77.42210197884398, 34.741240666230624], [-77.42225143006254, 34.741399371745175], [-77.42234648123662, 34.7415035163965], [-77.42236357393459, 34.741526923701294], [-77.4224415868936, 34.741575003792406], [-77.42288761499297, 34.741849217491065], [-77.4233130651161, 34.74202369834103], [-77.4234130851641, 34.74224902268425], [-77.42349645963775, 34.742393591085346], [-77.42350568290232, 34.7425060031635], [-77.42341738071416, 34.742872945195735], [-77.42345696544189, 34.74304804607637], [-77.42370293908245, 34.7434625072341], [-77.42374635614222, 34.74362850195696], [-77.42377712723258, 34.743719016486274], [-77.42411847248943, 34.74424201022154], [-77.42420623531423, 34.74432946763673], [-77.42457475525372, 34.744447454442195], [-77.42471984332505, 34.74437976588114], [-77.42500558246495, 34.7444034570426], [-77.42510194178183, 34.74418204010398], [-77.42522926394999, 34.7440210382607], [-77.42525787037721, 34.7439570035658], [-77.42533644325091, 34.743858117936554], [-77.42541051093468, 34.74373081738951], [-77.42542904499254, 34.74359957244705], [-77.42558814016981, 34.74359567980106], [-77.42582738798987, 34.74350251195786], [-77.42593813790901, 34.74349424211108], [-77.42602914641559, 34.74345820802786], [-77.42621793950434, 34.74349048204246], [-77.42625744059424, 34.74349881164345], [-77.42629871932625, 34.74352469409694], [-77.42651602369888, 34.74358935205537], [-77.4265282334474, 34.743670920491525], [-77.42666214566381, 34.74375160012696], [-77.42657355590902, 34.74397369751507], [-77.42655702207213, 34.7441315068717], [-77.42655453331592, 34.74424286327949], [-77.42656314999948, 34.74465768558366], [-77.42672229938833, 34.74506565807089], [-77.42666620819264, 34.74528778837082], [-77.42669793388916, 34.74567256481292], [-77.42677713183284, 34.74593555489194], [-77.42688118192767, 34.74597192918221], [-77.42713564941064, 34.74601090423687], [-77.42738913673993, 34.74605391255929], [-77.42745965597899, 34.74599091198378], [-77.42785502669828, 34.74606717339851], [-77.42804525138362, 34.74576971570167], [-77.42816649140421, 34.745764446424985], [-77.42818314729661, 34.74581790448852], [-77.4280869860096, 34.746282027682035], [-77.42807552945773, 34.746339354346624], [-77.42847085632806, 34.74692808678717], [-77.4285423712043, 34.74698487063225], [-77.42893899707494, 34.747090106166524], [-77.42905307720955, 34.747132052718634], [-77.42912328259274, 34.74718897347906], [-77.42932225619745, 34.74730979073769], [-77.4293659603192, 34.747349345193456], [-77.42949485633075, 34.7474803854655], [-77.42953814699464, 34.7476715921478], [-77.42958763700497, 34.74788807666552], [-77.42961165540528, 34.74799425288007], [-77.4296809322359, 34.74828591320084], [-77.42968310491119, 34.74829464755871], [-77.42969551797648, 34.74832588832555], [-77.42981396784423, 34.748623999477516], [-77.42963783952244, 34.748759915060575], [-77.42955954020964, 34.74885156038759], [-77.42951796343604, 34.74884881434576], [-77.42917625400698, 34.74896021762379], [-77.42916976352285, 34.74896266100229], [-77.42916398772105, 34.748963943937746], [-77.42913478707996, 34.74896972485338], [-77.42876216476834, 34.74904464945885], [-77.42848439843266, 34.74909622999166], [-77.4283547819488, 34.749126990856645], [-77.4281906083438, 34.74917485406934], [-77.42815999329756, 34.749182704895006], [-77.42813609237915, 34.749191766099415], [-77.42797240228214, 34.74925017584016], [-77.42781462216732, 34.74952031548255], [-77.4279189043262, 34.74963896695607], [-77.42798487708528, 34.74971403035546], [-77.42815683668174, 34.749823978317885], [-77.42825861018972, 34.74987606338898], [-77.42837110524191, 34.74990146084828], [-77.42851593958152, 34.74984759222234], [-77.42877449822366, 34.749812596311656], [-77.42893442437912, 34.7497568396631], [-77.42919122166026, 34.749745504908134], [-77.42957933537187, 34.74966011853271], [-77.42959486709564, 34.74965705405349], [-77.42960506593886, 34.749655471951044], [-77.43004177797692, 34.749639271503646], [-77.4302685372142, 34.74957885823452], [-77.43069860485113, 34.74921659652166], [-77.43101601081754, 34.749044016267284], [-77.4310716312658, 34.7490199507342], [-77.43148087867885, 34.74899883409573], [-77.43175357503286, 34.74887949464952], [-77.4321481821724, 34.74905205234518], [-77.43226770386518, 34.74931873841743], [-77.43234096969375, 34.749418034741204], [-77.43271797125497, 34.74952395145209], [-77.43290068289862, 34.74934742795776], [-77.43307510322974, 34.749204420438964], [-77.43313067270427, 34.748702552873375], [-77.43313795170384, 34.74866733568544], [-77.43312601588498, 34.74864419187551], [-77.43311510046499, 34.74860671270167], [-77.43311976262903, 34.74838145867522], [-77.43320285369902, 34.748303561342624], [-77.43328829038104, 34.74821226098065], [-77.43338900723035, 34.74819600939756], [-77.43355445023839, 34.74819660829188], [-77.43377718142327, 34.74826304872562], [-77.43385208156266, 34.748276084647955], [-77.43411560938986, 34.748231413098466], [-77.43444405640814, 34.74844639735511], [-77.43477910054327, 34.748404037187925], [-77.4351137803857, 34.748348105770745], [-77.43518514465177, 34.74826451124513], [-77.43519227188769, 34.748228703684504], [-77.4354063957065, 34.747933164140136], [-77.4355515557244, 34.74783348776434], [-77.43597946003875, 34.74757277099371], [-77.43610982483918, 34.747586642561814], [-77.43649231667081, 34.747603125469574], [-77.43656623161203, 34.74758437082526], [-77.43661061535852, 34.74760769762021], [-77.43662859700333, 34.7476295483399], [-77.43674497920384, 34.74769139703081], [-77.43688723249518, 34.747759775703415], [-77.43699318160719, 34.74792386288112], [-77.43713957724506, 34.74799572264065], [-77.43733984575732, 34.74817873600994], [-77.43737349873017, 34.74821161468662], [-77.43739014778154, 34.74823780452563], [-77.43761347906307, 34.748553846860574], [-77.4376155491647, 34.74855704550256], [-77.43761676676344, 34.74856264992277], [-77.43779870142357, 34.7488980698887], [-77.43778876241102, 34.748931192613824], [-77.4378208802394, 34.748965263877615], [-77.43794330629565, 34.749089925723325], [-77.43792305914674, 34.74922102926779], [-77.43781693859205, 34.74936584357367], [-77.43779492552781, 34.74945578205544], [-77.43770398244794, 34.749442514400215], [-77.43764943765441, 34.749557642286845], [-77.43753752225868, 34.74964537522103], [-77.43737867464482, 34.74965891104329], [-77.43733169136404, 34.749852984958494], [-77.43719308073237, 34.75002657285896], [-77.43716327163128, 34.75005480022578], [-77.43713502633457, 34.75006379685519], [-77.43707845629075, 34.75012030763158], [-77.43691722274264, 34.75026722399191], [-77.43693133969687, 34.7504048785491], [-77.43692540317356, 34.75040984026414], [-77.4369238039177, 34.750411391096655], [-77.43691954378127, 34.75041774926334], [-77.43687794381124, 34.75046313957823], [-77.43685789036208, 34.7504906642672], [-77.43685777449991, 34.750491033056356], [-77.43681601981962, 34.7504984717253], [-77.4368020814765, 34.750492980200306], [-77.43674767080965, 34.75048149476022], [-77.4367427048441, 34.750474819434736], [-77.43673010938198, 34.7504688992571], [-77.43662642850072, 34.75042046923699], [-77.4366063912668, 34.75039187153037], [-77.4365292808107, 34.75034939279617], [-77.43647811874669, 34.75028114217569], [-77.43632066187105, 34.75017404806255], [-77.4362739127566, 34.75032199939058], [-77.43617724755674, 34.75031367182811], [-77.43613979241326, 34.75034224051091], [-77.43597210435792, 34.7503524813334], [-77.4358995118136, 34.75047071774227], [-77.43593874393434, 34.75059572741007], [-77.43599882714159, 34.75064517331327], [-77.43601402532204, 34.75077676132186], [-77.43601478339362, 34.75078720957339], [-77.43601288105049, 34.75078984207536], [-77.43601135127851, 34.75079042384257], [-77.43600952679363, 34.75079230350136], [-77.435831822808, 34.750871068846045], [-77.43582038255722, 34.7508918809967], [-77.43572023883186, 34.750967123639086], [-77.4356551193595, 34.75095632794086], [-77.43564217455548, 34.750953673216024], [-77.43540249543338, 34.750917594906475], [-77.43529592647, 34.751098404735465], [-77.43528533499106, 34.75110009979466], [-77.43527867806844, 34.751101715861246], [-77.43502774245643, 34.75105325181936], [-77.43496962340956, 34.751061668628516], [-77.43467215464966, 34.75116000061363], [-77.43464487734438, 34.75117566093844], [-77.43459954551311, 34.75123244003717], [-77.43432198497902, 34.75131718233901], [-77.43435914552056, 34.7514567111143], [-77.43435946231752, 34.75147768195347], [-77.43423208567992, 34.75156529436914], [-77.43421789227394, 34.75175993132098], [-77.43418129937608, 34.75182707132017], [-77.43421745298977, 34.75197301136078], [-77.43421517983501, 34.75198426182932], [-77.43416227613443, 34.752099945309226], [-77.43407999804401, 34.752263845945784], [-77.43403936137466, 34.75233652316802], [-77.43400145044512, 34.75236795010764], [-77.43393920224912, 34.75244129109454], [-77.43392735675, 34.75244688159791], [-77.43383124335057, 34.75246382510568], [-77.43361658635901, 34.75246833940016], [-77.43360536535688, 34.752468777565156], [-77.43358846021319, 34.75246886822213], [-77.43333577621765, 34.75227510513777], [-77.43278639037405, 34.75245781113349], [-77.43292763174566, 34.752744497350804], [-77.4330936420489, 34.75284467944726], [-77.43315878138739, 34.75288652836004], [-77.43322937558717, 34.75306503779929], [-77.43325291518306, 34.753115191791224], [-77.43326076640523, 34.7531825894126], [-77.43321383152856, 34.753294719153196], [-77.43320695255686, 34.75331353348692], [-77.43313856128432, 34.753419415709274], [-77.43305885333582, 34.75358255700459], [-77.43302375903592, 34.75365882846893], [-77.43303051188205, 34.75377309680879], [-77.43284740745857, 34.754117144083324], [-77.43282581892377, 34.75414871733013], [-77.43282692839998, 34.75418833338786], [-77.43275493164278, 34.75428158187169], [-77.43251869019241, 34.75460045907447], [-77.43253019411661, 34.754695843167454], [-77.43238612423401, 34.75496387760748], [-77.43234556726962, 34.75509901945403], [-77.43228642645218, 34.75524390755918], [-77.43227211348893, 34.755352879136936], [-77.43225546549257, 34.755498224485805], [-77.43217903246513, 34.75559988177979], [-77.4321246740389, 34.75565848565372], [-77.43204637291015, 34.7556214722915], [-77.43187675847476, 34.75562745726674], [-77.43172843115264, 34.755612059806325], [-77.43160582038234, 34.755679140399515], [-77.4315075302242, 34.75577217202564], [-77.43140690610544, 34.755889167987824], [-77.43128198872219, 34.75604649693446], [-77.43124460294393, 34.75609050380327], [-77.43122732956465, 34.756105951800265], [-77.43117099055634, 34.756155512105316], [-77.43100368642007, 34.75630733956976], [-77.43084523131117, 34.75644746423427], [-77.43064345047036, 34.756604194021634], [-77.43057068444486, 34.75671510613103], [-77.43045678879604, 34.75689976399717], [-77.43074964098945, 34.7567776300764], [-77.43144810753236, 34.756486330155305], [-77.43146733513598, 34.75646932684423], [-77.43147325852769, 34.75646395140304], [-77.43148891305762, 34.75643938012209], [-77.43163469440084, 34.756248274270654], [-77.43165591548177, 34.75617646496774], [-77.43170943932918, 34.75610193628667], [-77.43176756412208, 34.75603070357704], [-77.43177466914557, 34.75602153388496], [-77.43178524621972, 34.75602134991706], [-77.43188121015801, 34.756008601688805], [-77.43193202797075, 34.75601643893588], [-77.43215624117485, 34.75608391265765], [-77.43222915503522, 34.75609775416444], [-77.4325703277529, 34.756016109311055], [-77.43257211285618, 34.75601537369755], [-77.4325759429858, 34.75600752982704], [-77.43269806921452, 34.75578121571906], [-77.4327445225623, 34.75554921618253], [-77.43276996671028, 34.75552681248269], [-77.43280517516702, 34.75547394444881], [-77.43280961539492, 34.75540090356831], [-77.43287409853734, 34.755386972013945], [-77.43303519924042, 34.755378005934226], [-77.43307887995853, 34.75537791170669], [-77.43309531870544, 34.75537440041109], [-77.43310787296518, 34.755365342909904], [-77.43347071445088, 34.75523976134292], [-77.43350873932796, 34.75518049956122], [-77.43366771776456, 34.755001888356205], [-77.43368446630664, 34.75484113208857], [-77.43371139625006, 34.754649576446894], [-77.43363110643065, 34.75457799761139], [-77.43341158371776, 34.7543954657437], [-77.4333729460576, 34.75436209345603], [-77.4333530930954, 34.75435262478896], [-77.43335253606455, 34.75433273489314], [-77.43336342384983, 34.754316811499784], [-77.43338757847906, 34.7540654565394], [-77.43338098880723, 34.75389459323008], [-77.43337429322588, 34.75378129389682], [-77.43342537827428, 34.75367026927298], [-77.43344138534218, 34.75352521296178], [-77.43349385945768, 34.753401119108304], [-77.43353795563843, 34.753279430589714], [-77.4335540823632, 34.75313274504224], [-77.43361516536328, 34.75302688438586], [-77.4337755236331, 34.752837240804475], [-77.43376723479042, 34.75280049182153], [-77.43380833506077, 34.7528002714137], [-77.43382525134363, 34.752799610855675], [-77.4341612363118, 34.75265862229121], [-77.43417534873386, 34.75265196190914], [-77.43419200580452, 34.75264035212595], [-77.43448464279466, 34.752492088671346], [-77.43450881311404, 34.752448860941804], [-77.43448877250717, 34.7520933424342], [-77.43447279205316, 34.75192890907341], [-77.43448722135889, 34.75187079034048], [-77.4345419827378, 34.7517553229221], [-77.43459235612886, 34.751691160854655], [-77.43474566042111, 34.751539792189945], [-77.43479398570577, 34.75148208359762], [-77.43481578190173, 34.751454783390926], [-77.43486381669706, 34.75142720586855], [-77.43498102186982, 34.75135080018801], [-77.43515580154258, 34.75132896933009], [-77.43519324329594, 34.7513235470097], [-77.43521334505462, 34.75132742933021], [-77.43531246654756, 34.75130336611939], [-77.43541151210371, 34.75130617023567], [-77.43542479533629, 34.751283185652674], [-77.43555056763272, 34.75127016340311], [-77.43561947265795, 34.751271958035574], [-77.43574959216882, 34.7512568964913], [-77.43583749852954, 34.75125418418327], [-77.43587631067345, 34.75125255554147], [-77.43599786179428, 34.7512406695677], [-77.43605662034804, 34.75123820000016], [-77.43608768018068, 34.75120320350476], [-77.43615858132353, 34.75112026065532], [-77.43619659305104, 34.75109295316213], [-77.43626783279672, 34.751007681321454], [-77.43633593347892, 34.75094667427754], [-77.43635486706219, 34.75090931598812], [-77.43635573159045, 34.75086818916436], [-77.43636410171128, 34.750675073220805], [-77.43636527331998, 34.75064100789529], [-77.4363620816199, 34.75063231908606], [-77.43636947057739, 34.750627603492056], [-77.43638028968913, 34.75061914373885], [-77.43644970822872, 34.75057172307426], [-77.43649052573888, 34.75058876034553], [-77.43654303561826, 34.75061076789745], [-77.43659100925953, 34.75061556835744], [-77.43670004603204, 34.75062220826287], [-77.43672451491085, 34.75061917695944], [-77.43682474361442, 34.75062345033077], [-77.43685988053072, 34.75062389103782], [-77.43701754580796, 34.75058178835464], [-77.43702451784023, 34.75057587048481], [-77.43703722123438, 34.75056508780438], [-77.43714719648196, 34.75048732308731], [-77.43718191930651, 34.75045909059703], [-77.43729113238852, 34.75039784820934], [-77.43733032103977, 34.75032761336569], [-77.43745353707632, 34.750234519934516], [-77.4374851774648, 34.750206678643536], [-77.43750899890965, 34.75019444264084], [-77.43751644183499, 34.75016080447831], [-77.43760454813594, 34.750027791667506], [-77.43762865077102, 34.74995672644247], [-77.43766987189193, 34.749873598389], [-77.43770744555403, 34.74982200272085], [-77.43785326305117, 34.74975567750634], [-77.43787179216251, 34.74971656804614], [-77.43792196238162, 34.74972388736247], [-77.43799796004899, 34.749736734378516], [-77.43811948347013, 34.749747245124624], [-77.43823331329907, 34.7497559788982], [-77.43823983747359, 34.74975688116697], [-77.43824351435998, 34.74975225059683], [-77.43828638070275, 34.74964597671672], [-77.43829614806955, 34.749630880076936], [-77.43831879270904, 34.74960289574305], [-77.43844093969052, 34.74940194646146], [-77.43851120582961, 34.74929942490995], [-77.43851644208365, 34.74927403517064], [-77.43851785273658, 34.749149300425216], [-77.4385274552286, 34.74906944283762], [-77.43848476535673, 34.74888712355978], [-77.43843194845645, 34.74883977584818], [-77.43825354581003, 34.74873730242599], [-77.43821454453172, 34.748712924991466], [-77.43798368985941, 34.74840347048273], [-77.43772250613918, 34.748197290448275], [-77.43765168273003, 34.74809556723513], [-77.43748535853136, 34.747950055402875], [-77.43747923800647, 34.747944302466244], [-77.43747583735217, 34.747941725625665], [-77.43746627290069, 34.747932797093355], [-77.4373132721563, 34.74779033475596], [-77.43722190798763, 34.74771125176724], [-77.43697958335184, 34.74749384199087], [-77.43697124912717, 34.74748660912808], [-77.43696750101691, 34.74748243277432], [-77.43690484480538, 34.747389715730094], [-77.43674290838987, 34.74715060415581], [-77.43673500505706, 34.74713875708941], [-77.4367252815339, 34.74712548092276], [-77.43672168445086, 34.74709057582714], [-77.43677045473396, 34.74705542645544], [-77.43684573750882, 34.746919341064185], [-77.43686024548363, 34.746893115511845], [-77.43692435574663, 34.746673901674285], [-77.43694364708001, 34.746642736093975], [-77.43700874942803, 34.74657815906767], [-77.4370103193156, 34.74644045975133], [-77.43699322018114, 34.746380538269214], [-77.43700136908113, 34.74625756772882], [-77.43691552019052, 34.746170647576804], [-77.43681694480307, 34.746039435526036], [-77.43687226117129, 34.745841136790645], [-77.43709162429658, 34.74594571224055], [-77.43727197416621, 34.745746285146666], [-77.43744249098663, 34.745841217178175], [-77.43756909084384, 34.745857706271444], [-77.43759451109065, 34.7458698689727], [-77.43764749728214, 34.74586529074636], [-77.43776062488969, 34.74584982170831], [-77.43779033002103, 34.74584520158343], [-77.43784332029966, 34.74583898349455], [-77.43792604392203, 34.745749088476636], [-77.43794370444701, 34.74572186013156], [-77.4379569122388, 34.745599152229474], [-77.43803729090686, 34.745500873349094], [-77.43803755420312, 34.74547936647958], [-77.43798240801057, 34.745328543667995], [-77.43803725696708, 34.745256287713026], [-77.43797597374439, 34.745105703968356], [-77.43744438873371, 34.74514057787355], [-77.43737111304502, 34.745160527064876], [-77.43730650793243, 34.74520322538702], [-77.43716438812943, 34.74517402141858], [-77.43675847453466, 34.744881156483146], [-77.43661001192336, 34.74451248387463], [-77.43630613530124, 34.74422846256112], [-77.43630076660055, 34.74418198825241], [-77.43627076630342, 34.743761202364], [-77.43605673351992, 34.743537689008306], [-77.43589771061983, 34.74342405721113], [-77.43571955899974, 34.74341988290383], [-77.43535738845986, 34.74336689436615], [-77.4352734999112, 34.743365242383625], [-77.4349992502029, 34.7433988290591], [-77.43465216826289, 34.74329647947232], [-77.43420370923285, 34.74297792040596], [-77.43402677914263, 34.74291170145186], [-77.4337822924513, 34.74274299206816], [-77.43360122531585, 34.74264282339813], [-77.43356831573104, 34.74261029097529], [-77.43349076763698, 34.74256110823342], [-77.43316574717838, 34.742378084278236], [-77.43299870711411, 34.74236285121323], [-77.4328842500848, 34.742318121001304], [-77.43232728498262, 34.74246715068917], [-77.43199278187045, 34.74235741063023], [-77.43179152724181, 34.74260641140853], [-77.43125196467153, 34.74264279207786], [-77.43096563815328, 34.74274067709252], [-77.4308198578486, 34.74282592246417], [-77.43069078626924, 34.743221628900365], [-77.43069343862038, 34.743340797372966], [-77.43067846479921, 34.74341559425075], [-77.4306602317605, 34.74379567364134], [-77.43068162326503, 34.7438957200427], [-77.43092266045677, 34.74420651889771], [-77.43089508335198, 34.74430313194141], [-77.43091792311627, 34.74453734308206], [-77.4307247468984, 34.74468036508787], [-77.43068766813997, 34.74471209037867], [-77.43066253434982, 34.744727626547494], [-77.430350706619, 34.74486487289449], [-77.43031964465659, 34.744858693955244], [-77.43031462446918, 34.74488557942908], [-77.43005432268936, 34.7450150955429], [-77.42998387523195, 34.74504952850111], [-77.42998008859867, 34.74505180161875], [-77.42979594219443, 34.74526338292373], [-77.42971512072019, 34.74536675366423], [-77.42962428881098, 34.745482926959866], [-77.42952878589011, 34.74568068184624], [-77.42955621623253, 34.7457386662226], [-77.42975595269276, 34.74603232125476], [-77.42995204522319, 34.746241938884545], [-77.43022386858233, 34.74619780536512], [-77.43040041119946, 34.746209911488606], [-77.43059914397327, 34.746221787103075], [-77.43072844021043, 34.74627424141056], [-77.43119169488496, 34.74632625835269], [-77.43120179999323, 34.74635515101235], [-77.43126858536363, 34.746337024183056], [-77.43171941604606, 34.746397427531264], [-77.43229967418081, 34.746310502210775], [-77.4323531651981, 34.74680824621642], [-77.43290280048976, 34.746834880278556], [-77.43300566741576, 34.746908809746486], [-77.43307084310487, 34.74696675587008], [-77.43337022488623, 34.74720314085225], [-77.43350621782804, 34.747255547376525], [-77.43365322132772, 34.74731285388506], [-77.43382649452046, 34.747459216503174], [-77.433804939363, 34.747502769215764], [-77.43378964121462, 34.74753567361703], [-77.43377697303019, 34.74763275858493], [-77.43371374481433, 34.747646296871515], [-77.43360918619305, 34.747614794475005], [-77.43345338758095, 34.74761484807379], [-77.43342794925626, 34.74752593948565], [-77.43330187139682, 34.74748670945653], [-77.43305239437132, 34.74733571426972], [-77.43294524651938, 34.74697815795068], [-77.43243028174697, 34.74730198563762], [-77.43227218046249, 34.7473003230577], [-77.4322082161141, 34.74730897490154], [-77.43129528382562, 34.74762222310632], [-77.43080670280617, 34.74771993698255], [-77.43073780992756, 34.747785092810005], [-77.43072112156106, 34.74782287749127], [-77.43071437775872, 34.74786451894113], [-77.43051164817831, 34.748163443347366], [-77.43040083082775, 34.7482700117358], [-77.43031550422563, 34.74830908663707], [-77.4302055014347, 34.74820175909339], [-77.4300802244479, 34.74812901643597], [-77.4300532786439, 34.74810731505271], [-77.43002427211239, 34.74799867005842], [-77.43001236500595, 34.74793412487478], [-77.42999364122392, 34.7478482036571], [-77.43004412373665, 34.74769768406826], [-77.43003878340986, 34.74758445128006], [-77.42986932059605, 34.74732420287924], [-77.42971441534937, 34.747062746165476], [-77.42959802998831, 34.74699096539179], [-77.42917956145189, 34.74673527822241], [-77.4291701578388, 34.746727654009234], [-77.42916427282054, 34.74672549012482], [-77.42914081919568, 34.74671161774422], [-77.42906312875526, 34.746545080545495], [-77.42898732927122, 34.74635290259585], [-77.42916593340169, 34.746161338657046], [-77.42903633105834, 34.74588607780145], [-77.4290322303026, 34.74574680680822], [-77.42903125533846, 34.74555522113026], [-77.42906253740718, 34.7454287604234], [-77.42908388170343, 34.74508338282541], [-77.42911099073474, 34.745024029285474], [-77.42914569000614, 34.74494769148623], [-77.42930727066727, 34.74470050668018], [-77.42938452973952, 34.74456056243886], [-77.429459554259, 34.744370394045035], [-77.4294379994212, 34.74429972050627], [-77.42927929588325, 34.74413571056797], [-77.42911464033128, 34.74406786771975], [-77.42887563969163, 34.7439953981953], [-77.42866835316306, 34.744031023582295], [-77.4284181165355, 34.74399578709385], [-77.42804525061332, 34.74396833849931], [-77.4279675701218, 34.74365352379553], [-77.42767880519776, 34.74353583227722], [-77.42754939314364, 34.74346616341087], [-77.4274397991794, 34.74342726212837], [-77.427108179941, 34.7433514405319], [-77.42695336601378, 34.74330997486999], [-77.42677728187479, 34.7432571981388], [-77.42665606077558, 34.743229436397456], [-77.42655474249004, 34.74319512218392], [-77.42636368485239, 34.74313187362247], [-77.4261687681697, 34.743064608453366], [-77.42597752929211, 34.74299995447447], [-77.4257687523467, 34.742971913909074], [-77.42547336212931, 34.74290825617346], [-77.42546728431616, 34.74290575694964], [-77.42545960109102, 34.74290163823004], [-77.42518247688038, 34.74278206101499], [-77.42489114295093, 34.74272076198463], [-77.42477342485334, 34.74275379025478], [-77.42453243334892, 34.74281243564699], [-77.42447254045081, 34.742784716038486], [-77.42436305612172, 34.74270174613763], [-77.42437364993249, 34.74262314707872], [-77.42441361595262, 34.742543802604786], [-77.42442798048495, 34.74245148059384], [-77.42447723692857, 34.74228650431229], [-77.42453598963093, 34.74214050821463], [-77.42453402490392, 34.74196087699958], [-77.42439764968859, 34.74169961958326], [-77.42434257941744, 34.74159434258984], [-77.42426345674407, 34.74152682233363], [-77.42408256074485, 34.74139967579939], [-77.42370434989428, 34.74124318413311], [-77.42332983925465, 34.74112395232548], [-77.42318662205436, 34.74081666167501], [-77.42309053569541, 34.74068368571974], [-77.4228636801254, 34.74042561210241], [-77.42273300317757, 34.74016876740283], [-77.42247881188167, 34.740275087281674], [-77.4215158297571, 34.740094970960335], [-77.42147432516343, 34.74008662496047], [-77.42144982218086, 34.740089573219], [-77.4213807812298, 34.740086059075786], [-77.42082110302096, 34.740128017443865], [-77.42056009345919, 34.73979918421631], [-77.42053137011473, 34.73961277654702], [-77.42060136283484, 34.739451100926104], [-77.4207207594089, 34.73929626768411], [-77.42092162408915, 34.73922648797085], [-77.4210796126749, 34.739235378605585], [-77.42136153137767, 34.7391973836577], [-77.42164297514657, 34.739059556095015], [-77.42172540050046, 34.73904403056738], [-77.42178722630914, 34.739006137125656], [-77.42225037700139, 34.73871279753622], [-77.42221366942607, 34.73834603515185], [-77.42246949737805, 34.73823031475867], [-77.42239236860767, 34.73794392927701], [-77.42210752549347, 34.737900076022335], [-77.42165639860207, 34.737387019328125], [-77.4216942601862, 34.737342329542585], [-77.42212825249948, 34.73699288273752], [-77.42220282206694, 34.73683248725051], [-77.42241131844115, 34.73615053429059], [-77.42241375155842, 34.735974530898424], [-77.4223924142451, 34.7356464665117], [-77.42281803741268, 34.73544642859166], [-77.42304577611677, 34.73521827982154], [-77.42313795392897, 34.73510953418051], [-77.42341068670886, 34.73506665856763], [-77.42356870061666, 34.73506837767502], [-77.42393718769668, 34.735179076866544], [-77.42403104435608, 34.73486264426533], [-77.42418140086633, 34.734830237248666], [-77.42430067456706, 34.73475484296417], [-77.42454899852409, 34.734683008921536], [-77.4249388225409, 34.73462088431515], [-77.42498378670676, 34.734610044047905], [-77.42505117126962, 34.73460314251954], [-77.42550761783718, 34.73475362155145], [-77.42556896011179, 34.73480350197019], [-77.42562502927557, 34.734810168209364], [-77.42565705586904, 34.734871933439756], [-77.42571373346895, 34.735090401411625], [-77.42583735064868, 34.735494018184546], [-77.42583829274761, 34.73561397590059], [-77.42583441610944, 34.7357725257368], [-77.42591284114667, 34.73583037375432], [-77.42606163932467, 34.73585194607817], [-77.42618808453149, 34.7358654531898], [-77.42622098620961, 34.73587338024197], [-77.4262894596317, 34.73587217569837], [-77.42654724804845, 34.73585381126441], [-77.42663847739792, 34.73585349533762], [-77.42708725514856, 34.73598579430517], [-77.42714182439448, 34.73601482476068], [-77.42722292686193, 34.73606056533026], [-77.42767136431219, 34.73640048822179], [-77.42789005806779, 34.736543703748424], [-77.42807636372741, 34.736707104163074], [-77.42822234835782, 34.73671209428324], [-77.42837159905817, 34.736659303071285], [-77.42850895829802, 34.73666605473517], [-77.42848647965201, 34.73641992417183], [-77.4285120390688, 34.73628426510193], [-77.42850533098579, 34.7361469833015], [-77.42843253701528, 34.735986049834295], [-77.42839882705044, 34.735885103156015], [-77.42837095647795, 34.735820489808376], [-77.42830639133784, 34.73570046755713], [-77.42822986095872, 34.735578728713], [-77.42818128027419, 34.735529461514254], [-77.42813274052568, 34.73545770252446], [-77.42807748626831, 34.73534956393456], [-77.42804252866217, 34.735156174485276], [-77.42804677028178, 34.7351481253411], [-77.42804420424703, 34.735140254412656], [-77.42809177038589, 34.7349483192293], [-77.42817122962389, 34.73464088489805], [-77.42817070831236, 34.734632382706124], [-77.42815572258445, 34.7345932901841], [-77.42803406332743, 34.73425171585259], [-77.4279340551497, 34.733990608627465], [-77.42791736602462, 34.73385400867497], [-77.42781102502227, 34.73370329106758], [-77.42760852642587, 34.73331776894215], [-77.4275058041269, 34.733132914650845], [-77.42755881762304, 34.733020864001276], [-77.42756562300069, 34.7328813087572], [-77.42757217700589, 34.73274600242366], [-77.4275696772085, 34.73265988850543], [-77.42753826863537, 34.732454619625855], [-77.42753553179683, 34.732440153058846], [-77.42746489133275, 34.73225721450048], [-77.42736155108784, 34.73211332055452], [-77.42732553384499, 34.73205816970687], [-77.42722447366839, 34.73191111655721], [-77.42709371925112, 34.73175155242334], [-77.42708627621465, 34.73174557140767], [-77.42708482412257, 34.73173706403104], [-77.42697593346854, 34.73156840702374], [-77.42666959630498, 34.73141725108158], [-77.4265748373654, 34.73132918564328], [-77.42644963748114, 34.73134155604603], [-77.42606193217966, 34.731172186833334], [-77.42602248120384, 34.731365731999425], [-77.42592414536362, 34.73136211602093], [-77.4256520684041, 34.73125032589887], [-77.42530189242606, 34.73139338387157], [-77.42528481634707, 34.73139809388338], [-77.42527150636609, 34.73140176506233], [-77.4249181192825, 34.731546769913145], [-77.42490405413449, 34.73156365530981], [-77.42473934952639, 34.73162859033481], [-77.42471765842863, 34.73174823081735], [-77.42468488383851, 34.73176701711787], [-77.42460656123376, 34.73177553874856], [-77.42458482377863, 34.731750027181945], [-77.42454526801671, 34.73169560814813], [-77.4245362793764, 34.73169325904831], [-77.42452810208515, 34.73168196977604], [-77.42453569883585, 34.73166975413311], [-77.42455821505308, 34.73165089119379], [-77.42468609564176, 34.73154157053206], [-77.42478199027975, 34.731491183546524], [-77.42485794517097, 34.73144844217619], [-77.42511207796552, 34.731327033052494], [-77.42520853001383, 34.73127343821026], [-77.42532990810136, 34.73120004741448], [-77.42555431755011, 34.731090597970905], [-77.42568822559696, 34.73096935938578], [-77.4254791698786, 34.730684499535734], [-77.42531731410091, 34.73047472825267], [-77.42541146537435, 34.730313548798854], [-77.4253765164923, 34.73005219360252], [-77.42536591713717, 34.73000807745835], [-77.42515323833983, 34.72966421446321], [-77.4251477963266, 34.72965268075029], [-77.42513954072535, 34.72964304481113], [-77.42509453370349, 34.72959141283153], [-77.424647336779, 34.729128605066265], [-77.42433929117814, 34.729097163042155], [-77.42401756214004, 34.72908933392068], [-77.42386129936601, 34.729071938568154], [-77.42355936890411, 34.728976098038984], [-77.42343241282755, 34.728895936309875], [-77.42312190215421, 34.72871219058755], [-77.42288345280122, 34.72857755855581], [-77.42261284819276, 34.72821707403157], [-77.42258487994758, 34.72804343458472], [-77.42251402896969, 34.727639141629496], [-77.42251322128844, 34.72762695117149], [-77.42195620976865, 34.72745445939685], [-77.42192580864327, 34.72745638864668], [-77.42180128759983, 34.72747752224302], [-77.42158716744045, 34.72751880327916], [-77.4215443980718, 34.72752937846439], [-77.42139929374694, 34.72751327373964], [-77.42126955375073, 34.7275085972096], [-77.42121255113106, 34.72744798645818], [-77.4211232770437, 34.727313941394506], [-77.42100406138562, 34.72709555495924], [-77.42099486693013, 34.72692112915544], [-77.42062461650377, 34.72677411685657], [-77.42024331658276, 34.726624404145866], [-77.41989734780557, 34.72648614557019], [-77.41967620704594, 34.7263687807487], [-77.41932068975416, 34.72613894344571], [-77.41914154566177, 34.72600111505564], [-77.41906787184007, 34.72593936481114], [-77.41880091527298, 34.72576618550472], [-77.41865598252119, 34.725664785473924], [-77.41861545670457, 34.72560386115072], [-77.41815441234176, 34.72542760782006], [-77.41830980109305, 34.725035381022096], [-77.4182480806295, 34.72494217888487], [-77.41820529318682, 34.724806322359896], [-77.4181698549636, 34.72452844042381], [-77.41795947537454, 34.72435379888073], [-77.41783877554774, 34.724220158874985], [-77.41777843668058, 34.72406645229811], [-77.41736241567824, 34.72397246765243], [-77.41754384902208, 34.72364937998704], [-77.4175162846774, 34.723461933178584], [-77.4173340321945, 34.723387201119074], [-77.417146202447, 34.72316991899564], [-77.41708450570101, 34.723141935092826], [-77.41688151606822, 34.72290015170088], [-77.41684560728244, 34.72285997498675], [-77.41683362491125, 34.722841943584136], [-77.4166983066518, 34.72246399630911], [-77.41649901371403, 34.72216584332086], [-77.41649954311512, 34.72184120809314], [-77.41649538117984, 34.72165590867125], [-77.41647714642416, 34.72159910265679], [-77.41651524404605, 34.72155343709073], [-77.41668434996897, 34.7211124658367], [-77.41668320982205, 34.72107998373221], [-77.41661542166715, 34.720713123998905], [-77.41652019074303, 34.72049596706164], [-77.41659337016469, 34.720185115056296], [-77.4167637794263, 34.72002205427188], [-77.41676234362673, 34.719759126082856], [-77.41686171339987, 34.71949720766087], [-77.41684135019389, 34.71927981467093], [-77.41688436268679, 34.71922558174873], [-77.41676495314874, 34.71896956761581], [-77.41674163974437, 34.718896125381605], [-77.41672636963776, 34.718881410052454], [-77.41671836044037, 34.71887194477652], [-77.416515522705, 34.71853750547567], [-77.41651070728645, 34.71852499763414], [-77.41642723658715, 34.71841751202843], [-77.41626703254198, 34.71821672828201], [-77.4161455570642, 34.71823093263007], [-77.41562490289296, 34.71822036212369], [-77.41536766373355, 34.71818147104358], [-77.4150019801194, 34.718157674470774], [-77.41492030082709, 34.7181981878819], [-77.41483043599385, 34.71822776181911], [-77.41449676916343, 34.7182538604561], [-77.41430670271056, 34.718344806197564], [-77.41395975375492, 34.71848236454088], [-77.41379936517463, 34.7186098654705], [-77.41353577475516, 34.7188931896318], [-77.41346630661961, 34.719032956842376], [-77.41332536316693, 34.71933109629519], [-77.41330805782962, 34.71937265304631], [-77.41328192483391, 34.71942522768622], [-77.41311187250636, 34.71973014959583], [-77.41300213943559, 34.719824767317974], [-77.41303386951884, 34.719975028711744], [-77.41292446778782, 34.720171851001965], [-77.41284025743943, 34.72032725647978], [-77.41271284110245, 34.720555260102486], [-77.41270921821769, 34.72056098037616], [-77.4127075547537, 34.72056531580107], [-77.41257743586182, 34.720794443975414], [-77.41252123380136, 34.72100879285438], [-77.41238184247668, 34.72128514400569], [-77.41230721492781, 34.721406995707504], [-77.41224107720734, 34.72151546718745], [-77.41210567095091, 34.72170116661427], [-77.41208448323623, 34.721740254436945], [-77.4120636380793, 34.72175687952023], [-77.41202326863677, 34.72180157375646], [-77.41179257760425, 34.72206183562294], [-77.41170115904498, 34.722165300572364], [-77.41155357588256, 34.72231642132316], [-77.41151509855543, 34.72235630205414], [-77.41149438716354, 34.72237253942599], [-77.41140620720981, 34.722439200993456], [-77.41124719231814, 34.72256564088544], [-77.4111386995214, 34.72264201620189], [-77.41088561842162, 34.72282341249735], [-77.41071410847508, 34.72293831098968], [-77.41034568633866, 34.72316634576953], [-77.41021461692033, 34.72322265175332], [-77.41013772711955, 34.7232958383896], [-77.4099370378654, 34.723470408650556], [-77.40991385817256, 34.72347907187351], [-77.40990381127635, 34.72351204177408], [-77.40974296912891, 34.723716885784306], [-77.40967047583663, 34.723829294853516], [-77.40959211068154, 34.723943680218625], [-77.40946381404005, 34.72414185889553], [-77.40944757655815, 34.72417268636467], [-77.40938235751571, 34.72427852997699], [-77.40919946173786, 34.7245554997469], [-77.4091432964677, 34.72462537874786], [-77.40910557376687, 34.72473758157358], [-77.40902399370714, 34.7250167604781], [-77.40894597394507, 34.72511547900577], [-77.40879291485689, 34.72538710820879], [-77.40872114339189, 34.72559595926745], [-77.40858735623219, 34.72584634988213], [-77.40847017296971, 34.7260672979133], [-77.408436521466, 34.7263007220974], [-77.40836008016109, 34.726587907835], [-77.40832134228852, 34.7268499553664], [-77.40832346404568, 34.72686402627211], [-77.40834114811442, 34.727140400957964], [-77.4082119356031, 34.727211892681375], [-77.40812768833966, 34.72729210139549], [-77.40804534508803, 34.72731650412223], [-77.40782152300724, 34.72745291486885], [-77.40776551117835, 34.7274481418979], [-77.40768219646382, 34.727469053221455], [-77.4074074280019, 34.72761087690066], [-77.40714933678774, 34.72755998473802], [-77.40697628855294, 34.72765417649055], [-77.40657066468795, 34.72757988887985], [-77.40650334003558, 34.72757665984518], [-77.40646546484501, 34.72756720181395], [-77.40641922136497, 34.727586446168594], [-77.40580625474696, 34.72776964133727], [-77.40570087578875, 34.72781350972615], [-77.4056523021764, 34.727877330090415], [-77.40543017461118, 34.72796116011614], [-77.40533561304932, 34.72796451056917], [-77.40508191630651, 34.72805665798772], [-77.4049269400023, 34.72804453875105], [-77.40484342535792, 34.728153535532414], [-77.4043621422001, 34.72850066463246], [-77.40431642578126, 34.72852833136977], [-77.40431076089405, 34.72853349758507], [-77.4042987398283, 34.7285466951518], [-77.40404628112756, 34.72884927934138], [-77.4039534781557, 34.72896050729422], [-77.40379921233992, 34.72918168655168], [-77.40379550155725, 34.729187463816906], [-77.40358128172457, 34.72938944836515], [-77.40334041823462, 34.72964106708431], [-77.40316048599027, 34.729645642424394], [-77.40305569702738, 34.72993798525293], [-77.40302728837491, 34.73031392763487], [-77.40326073640533, 34.73074517452643], [-77.40335234384492, 34.73098675095228], [-77.40341670636364, 34.731126487655494], [-77.40349745491591, 34.73131172850873], [-77.40359247684071, 34.73149954566823], [-77.40366552596572, 34.73165541609197], [-77.40374363456782, 34.73209545333937], [-77.40374525721417, 34.73224242901448], [-77.40374917530272, 34.732326890595644], [-77.40362896347935, 34.732656176960695], [-77.4034665535618, 34.732704075143715], [-77.40324617299149, 34.732778556256584], [-77.4029130776909, 34.73332815920699], [-77.40254159456279, 34.73312305327195], [-77.40272899280303, 34.73356435883109], [-77.40217830112417, 34.73365097610137], [-77.40198321576992, 34.73370658395724], [-77.40170641605093, 34.73362478670456], [-77.4015528491814, 34.733596569146556], [-77.40145205038739, 34.7335863870065], [-77.40121843598706, 34.73359514204055], [-77.4009991870167, 34.73359420638331], [-77.40090088871116, 34.73363361927792], [-77.40045656062293, 34.73388778617432], [-77.40034000187718, 34.73401293658079], [-77.4002601651558, 34.73409865755124], [-77.40009204652377, 34.734211914071366], [-77.40003194735883, 34.734257519273925], [-77.39988630059696, 34.734247452618995], [-77.39976038462684, 34.734250027737694], [-77.39950438809862, 34.73414321184951], [-77.39947395065725, 34.734132105799844], [-77.39943470772104, 34.73412540341242], [-77.39900619170594, 34.733533653924674], [-77.39849276595454, 34.73362537831113], [-77.3983295750078, 34.73365574559063], [-77.39829662138933, 34.733664993154484], [-77.39826110202519, 34.73367896584201], [-77.3981075918205, 34.73378592658778], [-77.39771704839902, 34.734047791666434], [-77.39751590638939, 34.734250605055195], [-77.39687897185864, 34.734340148500586], [-77.39616280843171, 34.73462238198461], [-77.39612512663395, 34.73462421551859], [-77.3960788596439, 34.7346315137173], [-77.3960875139975, 34.73459604252297], [-77.39610928815998, 34.734578222001595], [-77.3961027274722, 34.734042219599985], [-77.39589148220686, 34.733816972747476], [-77.39601277872434, 34.73367210358565], [-77.39626625564603, 34.73354028117248], [-77.39634779441951, 34.73347159908844], [-77.39652535293197, 34.733243646948154], [-77.39670635545008, 34.733135094548956], [-77.39696310147968, 34.73298111581262], [-77.39722320179911, 34.73304832298979], [-77.39741838269286, 34.73297726772082], [-77.39784902636909, 34.732975678742626], [-77.39787543082241, 34.73297630785435], [-77.39788526415383, 34.73297643806958], [-77.3979310291695, 34.7329668747955], [-77.39855138314948, 34.73289054884068], [-77.3986945746776, 34.73281912822658], [-77.39886795373937, 34.7327729677449], [-77.39925106233463, 34.73268887021183], [-77.39958177677501, 34.73277322613265], [-77.40040765169766, 34.73282718871267], [-77.40048766294156, 34.73284700418294], [-77.40061014850626, 34.73295813453333], [-77.4007336149446, 34.732866429145076], [-77.40112024152222, 34.73287680780623], [-77.40146404544417, 34.73285776727947], [-77.40179272870657, 34.73276891139504], [-77.40186219266722, 34.732760496062085], [-77.40220845735628, 34.73282316494334], [-77.40228009855211, 34.73269552672983], [-77.40234015277113, 34.73231009814563], [-77.40215403559858, 34.732099197045294], [-77.40229203343145, 34.73121860368463], [-77.40229967536767, 34.73117768407109], [-77.40229239887812, 34.7311488543953], [-77.40227022423804, 34.7311213606224], [-77.40223805100672, 34.73113034418625], [-77.402207135641, 34.73114531551355], [-77.4013333483826, 34.73114761554346], [-77.40100155951696, 34.73107395556364], [-77.40041092510515, 34.73107615548902], [-77.40037519109187, 34.73107748374665], [-77.40036059142128, 34.731073144061284], [-77.4003474477985, 34.73106697254093], [-77.39976237702521, 34.73092482381164], [-77.39936726362228, 34.730925960247774], [-77.39911304756833, 34.73095285405723], [-77.39866470758926, 34.73102445611097], [-77.39852113765589, 34.73103899241936], [-77.39844438163989, 34.73104758791411], [-77.39821990184781, 34.731061170962796], [-77.39780075181281, 34.73105594245757], [-77.3976402702144, 34.73109521462882], [-77.39740573994317, 34.73114318518039], [-77.39710674386377, 34.731238081293284], [-77.39679503217576, 34.73120969237246], [-77.3958604895663, 34.731151976391985], [-77.39585126719575, 34.731145123881724], [-77.39581232061857, 34.73114489906725], [-77.39481741968551, 34.730969102281605], [-77.39461089006095, 34.73100007645954], [-77.39438209569026, 34.73100556018883], [-77.39428217301219, 34.731028049925655], [-77.39421840535942, 34.73094375986935], [-77.39405398263007, 34.73070928227133], [-77.39389835986563, 34.73047529691892], [-77.39377116455663, 34.73023753443171], [-77.39357622561977, 34.73014549429789], [-77.39337460705339, 34.73010633539637], [-77.39298537238761, 34.72997181034246], [-77.39261054801153, 34.72982863380213], [-77.39241975051108, 34.729711105665515], [-77.39221924690771, 34.72971360780798], [-77.39178132998994, 34.72970149059303], [-77.39171607203056, 34.72971176970795], [-77.39130223821864, 34.72971066536243], [-77.3911040670286, 34.72982582842343], [-77.39050874510053, 34.729909724312805], [-77.39028467707317, 34.72990535954954], [-77.38979038282974, 34.72993362898551], [-77.38963027584023, 34.729969805514344], [-77.38924988486093, 34.729890302270086], [-77.38917494623789, 34.72984473046479], [-77.38910566929819, 34.72986021650343], [-77.388809536275, 34.72981309159898], [-77.38859754333535, 34.729777577687834], [-77.38855580655397, 34.72976860246863], [-77.38849406162898, 34.72975897958111], [-77.38824975711786, 34.72971839873944], [-77.38800677707624, 34.72955977083605], [-77.38797830851718, 34.72954887979614], [-77.38795569420517, 34.72951431575791], [-77.38792298758746, 34.729422725591675], [-77.38784285437313, 34.72919524648168], [-77.38782225238668, 34.729146339287745], [-77.38762366150887, 34.72883896042954], [-77.38756191500414, 34.72877362931161], [-77.38733957454511, 34.728739548864766], [-77.38700603577645, 34.728671388747124], [-77.38694666482408, 34.72868411188702], [-77.38666393456394, 34.72878270238347], [-77.3866263055652, 34.72879873849953], [-77.38630456388567, 34.72893652896121], [-77.38627742187789, 34.728976543293264], [-77.38620188315714, 34.72904123389327], [-77.38597330589401, 34.72922757564821], [-77.38569763048758, 34.72928330753531], [-77.38558333426083, 34.729338176902395], [-77.38484787157734, 34.729493213202375], [-77.38478703464567, 34.72949779188861], [-77.38476112674938, 34.72949025080347], [-77.38462265341006, 34.729466290831375], [-77.3839560079698, 34.72967027588942], [-77.38355327937225, 34.72932992759516], [-77.38352037006823, 34.72915378487286], [-77.38353499670588, 34.72908565122513], [-77.38302277963753, 34.72846853757247], [-77.38289706800077, 34.728303212549406], [-77.38275305057012, 34.72813463758787], [-77.38265152926424, 34.72801746493211], [-77.38243774468353, 34.72781972797081], [-77.38180322527747, 34.7273611986048], [-77.38170286882983, 34.72723335510266], [-77.38162176435098, 34.72714642203866], [-77.38151398202622, 34.72717258930742], [-77.38138114008964, 34.727213470084905], [-77.38068373274884, 34.7273114580929], [-77.38044989488849, 34.72744671794938], [-77.38021844730828, 34.72756318669731], [-77.3800049606138, 34.7276981383411], [-77.37980289291326, 34.727779449131845], [-77.37967566054047, 34.72790798074311], [-77.37958284434046, 34.727982024375805], [-77.37943402136625, 34.72805685261716], [-77.3792968925475, 34.728036897051716], [-77.37889856788195, 34.728022111471034], [-77.37880528263877, 34.72801382891009], [-77.37840704647999, 34.728078271653516], [-77.37803766605796, 34.72827996666363], [-77.37774310545248, 34.72848923110662], [-77.37727184657197, 34.72887894409522], [-77.37708613133015, 34.72891159461989], [-77.37697753647583, 34.729027279943566], [-77.37659968340347, 34.72935957855734], [-77.3770430239486, 34.72966763004987], [-77.3774745809114, 34.729887643596065], [-77.37804987874253, 34.73052101649135], [-77.37677270149167, 34.73059933710334], [-77.37627366655191, 34.73057679972349], [-77.37549707797797, 34.730575662960405], [-77.37455006017896, 34.730751366434006], [-77.37411624198506, 34.73091457692798], [-77.37377642673684, 34.7309829073086], [-77.37348899959717, 34.73116133901429], [-77.37340461578785, 34.731157096315265], [-77.37336516096802, 34.73111798844238], [-77.3732965517173, 34.73073565136715], [-77.3729347090276, 34.730566625641515], [-77.3726688585879, 34.730668070926555], [-77.37211160248587, 34.73067915923425], [-77.37169878335429, 34.73057818725385], [-77.37164436261294, 34.730593651474244], [-77.37141614780046, 34.73062642126757], [-77.37077605653673, 34.730565762406485], [-77.37039486027759, 34.730479919844115], [-77.36987911039478, 34.7305935525206], [-77.36963809334924, 34.73062743742955], [-77.36918482801087, 34.7305225167389], [-77.36879759818592, 34.73063727695044], [-77.36800750302388, 34.73045777382], [-77.36800638482968, 34.73045760884815], [-77.36800602004114, 34.73045751698288], [-77.36800518529897, 34.7304573806438], [-77.3680040564368, 34.73045824733253], [-77.36703043706375, 34.73087027695954], [-77.36669374067344, 34.73085233042349], [-77.36632995576352, 34.73095908938077], [-77.36605890228046, 34.73097633280592], [-77.36583806366025, 34.7310904078934], [-77.36560831544416, 34.731120118463906], [-77.36540771608563, 34.73115664150865], [-77.36515931299232, 34.7311273364911], [-77.36509822883083, 34.731118360826265], [-77.36483669516147, 34.731060783546695], [-77.36433299928564, 34.73103354898045], [-77.36424678234889, 34.73103000472332], [-77.36410270126275, 34.731095874188135], [-77.36318471309234, 34.731292716454355], [-77.36290583061387, 34.73152343803148], [-77.3620033486001, 34.73225727992185], [-77.36167693343168, 34.73250979445735], [-77.3614538362881, 34.732820133377245], [-77.36129098616003, 34.732960153791154], [-77.36088961572166, 34.73308872980854], [-77.3602727882892, 34.73346970371027], [-77.36002795422928, 34.733601812607404], [-77.35987486933189, 34.73434871463434], [-77.35989095877531, 34.734496907273716], [-77.36011891419503, 34.734949417230645], [-77.3601226682597, 34.73496210719091], [-77.35974375724903, 34.73549189138015], [-77.35957408215941, 34.73575253986969], [-77.35925031774829, 34.73586312571457], [-77.35871963670368, 34.73627203968907], [-77.35847879332067, 34.73645761777856], [-77.35829618322123, 34.736665420904764], [-77.35791012758705, 34.736831349501195], [-77.35779478611285, 34.73697795270126], [-77.35769018048624, 34.737110909979506], [-77.35752219917357, 34.73712591155384], [-77.35735629865778, 34.737074723721726], [-77.35713323287371, 34.73696643749556], [-77.35691453681679, 34.73685510835752], [-77.35687793717537, 34.736654279467245], [-77.35661894597564, 34.7366750727675], [-77.3561290053189, 34.73652993336019], [-77.35606809533618, 34.73650961820531], [-77.3560480430215, 34.73650426253518], [-77.35600994876171, 34.73649190770657], [-77.35552064405088, 34.7363324623561], [-77.35495509514361, 34.73663671080903], [-77.3548709489245, 34.7366918745017], [-77.3543882818027, 34.73720189699387], [-77.3538172346649, 34.73807323948408], [-77.35366144077912, 34.738173298022716], [-77.3531585581737, 34.73827898041438], [-77.3530449571343, 34.73826538500539], [-77.35299065961917, 34.73836849606292], [-77.35309470046818, 34.73838186338332], [-77.35311896035569, 34.73841530708983], [-77.35360365129017, 34.738384579060344], [-77.35370245531907, 34.738468410736694], [-77.35447273526015, 34.739139836330565], [-77.3544830623493, 34.739284953651854], [-77.35466858652298, 34.73926617843323], [-77.3549420431883, 34.73956280112008], [-77.35506721847483, 34.739624030530535], [-77.3550150296968, 34.74001066698503], [-77.35498790264036, 34.74004388958859], [-77.35486268202776, 34.74051393653904], [-77.35484269681199, 34.74058515791896], [-77.35489723903272, 34.74103109914671], [-77.355233951972, 34.74144385456014], [-77.35538179822312, 34.741747318016024], [-77.3557279678001, 34.74189183469288], [-77.3559592794671, 34.74209154194577], [-77.35600423964001, 34.74234129575571], [-77.35578287077429, 34.742605534308176], [-77.3557702348747, 34.742631173095276], [-77.35556286582157, 34.74288926609081], [-77.35528153547885, 34.74340129424021], [-77.3552770992535, 34.743415875386425], [-77.35528516558676, 34.743441102700025], [-77.3552480900563, 34.74345732775626], [-77.35468840862193, 34.74398406215043], [-77.35455938230493, 34.74407464009718], [-77.35436527843368, 34.74443459460544], [-77.35398851900665, 34.74505488968129], [-77.35409882498719, 34.74535192241152], [-77.35421460589674, 34.74579879210444], [-77.35417925927483, 34.746003475068086], [-77.35423816025681, 34.74634301919107], [-77.35425208226766, 34.74655838623146], [-77.35433545684523, 34.74695680136058], [-77.35431092078922, 34.747301549274006], [-77.35447959339322, 34.74742440221271], [-77.35438586416936, 34.74775031632103], [-77.3539614723943, 34.74788684522761], [-77.35387180758275, 34.74799520297719], [-77.35389550969452, 34.748113927154066], [-77.3542238596264, 34.748156930651625], [-77.35444369015258, 34.74828883650734], [-77.35453885735193, 34.74870307450415], [-77.3547158243266, 34.74885412588252], [-77.3553912067196, 34.74915111352785], [-77.35580077058144, 34.74930933296543], [-77.3559363497697, 34.74933651089272], [-77.35608798856781, 34.74964055318105], [-77.3562632751104, 34.74974202887733], [-77.35637660035482, 34.74988304618861], [-77.35646325273726, 34.75007642648611], [-77.35621648090861, 34.75043431649516], [-77.35609289244645, 34.750538775324024], [-77.35582061733514, 34.75065201969838], [-77.35551128489958, 34.750799918077334], [-77.35509992921581, 34.750935714843614], [-77.35505044624603, 34.75146329080572], [-77.3551191487853, 34.7517230654572], [-77.35562214298628, 34.7524804836739], [-77.3556780578073, 34.752557438205415], [-77.35571860814545, 34.752615554059346], [-77.35653248654111, 34.75347094346659], [-77.35653520824583, 34.75347505049792], [-77.35653675510613, 34.75347802324649], [-77.35654324551435, 34.753490510388], [-77.35677406951831, 34.75393283211026], [-77.35671265688316, 34.75412700611417], [-77.3567776726801, 34.75441972004238], [-77.35698934773714, 34.75470263571723], [-77.35729547388223, 34.754968797187225], [-77.35750565718459, 34.75509397056332], [-77.3577547851852, 34.75526036446356], [-77.35779991775966, 34.7552944562888], [-77.35801562737439, 34.75549018250674], [-77.3579840498517, 34.755716277113564], [-77.35810032823574, 34.75581926154733], [-77.35816269520201, 34.75610787771818], [-77.35816500159497, 34.75616374381633], [-77.35816557455081, 34.756178743608224], [-77.35822757323045, 34.75625864642542], [-77.3583294034746, 34.756825745965514], [-77.3585583413216, 34.75680815700996], [-77.35865533382349, 34.7569692904494], [-77.35880232513186, 34.75699937358183], [-77.35885900676743, 34.757058321886916], [-77.35893752197589, 34.757146477679655], [-77.35900199370418, 34.75726357663106], [-77.35900390174626, 34.75728212348714], [-77.35901385203637, 34.75730234369041], [-77.3590415515508, 34.757460692388534], [-77.3590545326024, 34.75751886521514], [-77.3590455602618, 34.75785183580092], [-77.35909413448667, 34.75800081353135], [-77.35916980295741, 34.758150506254374], [-77.35921533147197, 34.75840979192008], [-77.35922592218132, 34.7584701072554], [-77.35921834410765, 34.7585074004714], [-77.35925298173386, 34.75854156080878], [-77.35943000624643, 34.75892947539883], [-77.3593345072733, 34.75920651267154], [-77.35963481959985, 34.75928945375034], [-77.359872016763, 34.75935618063251], [-77.36009693266406, 34.75940857270197], [-77.3601846477182, 34.75945895821007], [-77.36037385481379, 34.75943573387944], [-77.36080349865564, 34.75939080565254], [-77.3614521509693, 34.75915468364752], [-77.36189238750548, 34.75956618605316], [-77.36193314695014, 34.75962655291862], [-77.36201777466596, 34.75966365689089], [-77.36249786502859, 34.76022355279958], [-77.3625145735918, 34.760476391205614], [-77.36234088975823, 34.76081204387816], [-77.3623218620128, 34.7609099242891], [-77.36222318184994, 34.761230417720725], [-77.36222095115548, 34.76132929062451], [-77.36213112802196, 34.76134669417282], [-77.36210175181277, 34.76184679649459], [-77.36203591998499, 34.762200883810834], [-77.36193858192199, 34.762529300758395], [-77.36146719510225, 34.762743145620355], [-77.36135536233692, 34.76307281346193], [-77.36124447099382, 34.76342287696791], [-77.36133765517556, 34.7638162632627], [-77.361589351155, 34.7641718043142], [-77.36182113021988, 34.76443012359047], [-77.36187460546049, 34.764563432767744], [-77.36185744026449, 34.76495270178802], [-77.36177554378186, 34.7650879881071], [-77.36179373557312, 34.765287544526466], [-77.36175982644824, 34.765641715421694], [-77.36186416437202, 34.76584240781157], [-77.36190659456959, 34.766220961401636], [-77.36186716411838, 34.766238511946995], [-77.36191356345871, 34.766320803605254], [-77.36193243023969, 34.76670649354563], [-77.36216612407529, 34.76739429271036], [-77.36213690221052, 34.767451373332015], [-77.3620904522904, 34.76753321523876], [-77.3621557433561, 34.767695903438806], [-77.36230547654677, 34.76762224201545], [-77.36269814472199, 34.76803731312529], [-77.3629788976303, 34.76797501187865], [-77.36305363611791, 34.76802475094354], [-77.36315125260172, 34.7680859929278], [-77.36327725527701, 34.768252332967094], [-77.3633354750458, 34.76835367551969], [-77.36377136717391, 34.768522494938125], [-77.36382759066613, 34.76856644388748], [-77.36385580307675, 34.768583315590064], [-77.36427751395468, 34.76875976254542], [-77.36429439204937, 34.769168211908536], [-77.36452639746102, 34.769008717755014], [-77.36462408778318, 34.769137514000924], [-77.36466264759665, 34.76913993180008], [-77.36463055893742, 34.76916292497971], [-77.36463257495713, 34.769182387031215], [-77.3642746624908, 34.76931798561149], [-77.36433496114915, 34.769444348589445], [-77.3641761278034, 34.7695754453961], [-77.3638332770056, 34.769485206038794], [-77.36348547826006, 34.769552403313824], [-77.36303637906333, 34.76908173911715], [-77.36285042771537, 34.76900185557725], [-77.36244343245755, 34.76891434128541], [-77.36223020638906, 34.768996695106246], [-77.36207122287487, 34.76887997974855], [-77.36184172102307, 34.76877712597344], [-77.36174584963737, 34.76871257679513], [-77.36170554656022, 34.768585953630556], [-77.36146340448293, 34.768491180624125], [-77.36132500192127, 34.76834728308811], [-77.3611843219645, 34.7683566795907], [-77.36083971108972, 34.768219746135365], [-77.36073462077935, 34.768171071563245], [-77.3606065489891, 34.76821274024538], [-77.36054182601745, 34.768177887031015], [-77.36045934816964, 34.768014392120875], [-77.36041623161258, 34.76796760012337], [-77.36041402210645, 34.76778483889822], [-77.36041079828365, 34.76751811547788], [-77.36050448911632, 34.767439259352244], [-77.36050533872357, 34.76730057562222], [-77.3605678819205, 34.766902214863286], [-77.36059696002653, 34.76636993293589], [-77.3600733499249, 34.766030132362644], [-77.36005950856074, 34.76566645133827], [-77.36000384948676, 34.76548990016706], [-77.36006395917117, 34.76495318043479], [-77.35982899071846, 34.76480878714617], [-77.35983224538656, 34.76472287936362], [-77.3598778508707, 34.76430785027006], [-77.3598677182646, 34.764230624256584], [-77.35970223418084, 34.76394645804368], [-77.35974645761932, 34.76375988527195], [-77.3596584517196, 34.76368812549757], [-77.35955419681983, 34.76369225140583], [-77.35950368365992, 34.76354952012491], [-77.35946102764684, 34.763445731916974], [-77.35945776181761, 34.76341088418813], [-77.35944118217952, 34.7633144075663], [-77.35944989668248, 34.76325717751319], [-77.35939778971655, 34.763199443881845], [-77.35936873981827, 34.76312247931119], [-77.3593106054386, 34.76296148132022], [-77.35946857820112, 34.7628232613031], [-77.35926037611263, 34.762641249746856], [-77.35925262445336, 34.762423323215216], [-77.35921746183497, 34.76237034849037], [-77.35902709880948, 34.76220254491188], [-77.35893576657654, 34.76199136160844], [-77.35895460499773, 34.76191904710395], [-77.35897580144969, 34.76184776899153], [-77.35891418547888, 34.76177057953259], [-77.35889102376503, 34.76144039009207], [-77.35901156002035, 34.76103181011656], [-77.3587310655283, 34.76097496310202], [-77.35867027500893, 34.76090006530947], [-77.35856834783866, 34.760898719705786], [-77.35850709801728, 34.76076201532553], [-77.35853383076079, 34.760610777515296], [-77.35851500087438, 34.76051723795916], [-77.35816939134637, 34.76020976335946], [-77.35812936874464, 34.760133396256734], [-77.35810462695457, 34.760086185283825], [-77.35799975732566, 34.759886081174976], [-77.35799788859954, 34.759840292865874], [-77.35797667070092, 34.75984202911645], [-77.3579071478644, 34.759804067821094], [-77.35772271692056, 34.75968511202447], [-77.35769716141974, 34.75967735634], [-77.35722594067697, 34.75933296347466], [-77.35705690329894, 34.759381326405105], [-77.35672130514746, 34.75930129392418], [-77.3561669015639, 34.758854145274796], [-77.35595551492688, 34.75865150232508], [-77.35530689029484, 34.75769021758419], [-77.35522214468544, 34.75755752374404], [-77.35516643913029, 34.756104624279956], [-77.35493093049759, 34.75564795569946], [-77.35434025333976, 34.755163191831116], [-77.35442413091651, 34.754742750887004], [-77.35392262031742, 34.7542068257667], [-77.35387141684927, 34.75394692981821], [-77.35390511266641, 34.75383921844817], [-77.35389064816171, 34.75369397552569], [-77.35410138929845, 34.752981641269926], [-77.35372981286851, 34.75288851250047], [-77.35371257882232, 34.75286779171499], [-77.35373241277614, 34.752477000891176], [-77.35334043564269, 34.75208679625461], [-77.35324812672292, 34.75206104562584], [-77.35300977413455, 34.752012563195755], [-77.35283266725976, 34.75159215288153], [-77.35228296968663, 34.75160292182114], [-77.35158261178215, 34.75164960786463], [-77.35105709554387, 34.75169874964277], [-77.34994792090217, 34.75243271398598], [-77.34969539508097, 34.75253092434491], [-77.34958924043868, 34.75262740544293], [-77.34925957753907, 34.752763261060124], [-77.3487239734458, 34.75294694708438], [-77.34858720041852, 34.753280328962596], [-77.3485241950541, 34.753602810716885], [-77.34866032197529, 34.75376276900694], [-77.3487240612262, 34.753963465564425], [-77.34872387507092, 34.75406279499325], [-77.34869324157651, 34.754184261998844], [-77.34868859087071, 34.754192139908916], [-77.34863828916806, 34.75422652036821], [-77.34850088378451, 34.754311487879605], [-77.3484552354082, 34.754343340431625], [-77.34824811399241, 34.75444022720839], [-77.34788040795645, 34.754612230176335], [-77.34782136903758, 34.75458842993752], [-77.347709211598, 34.754601127533476], [-77.34765965860811, 34.75469617430732], [-77.34712954699464, 34.75490770576625], [-77.3467087113795, 34.75499140699217], [-77.34659929730825, 34.75532901390108], [-77.34647695442175, 34.75542439003098], [-77.34633582791004, 34.7556088445626], [-77.34632332883763, 34.755620619040705], [-77.34615327116806, 34.75577594256111], [-77.3459626708621, 34.755889810162174], [-77.34594310323841, 34.75589831116209], [-77.34567647308758, 34.755912788822286], [-77.34564369641416, 34.755897891079876], [-77.3451757345032, 34.75590364369614], [-77.34505468005187, 34.755863335154714], [-77.34493674541274, 34.75597486197392], [-77.34487836469884, 34.756052449096906], [-77.34464112546846, 34.75631471832888], [-77.34436473264753, 34.75674472903001], [-77.34437106345196, 34.75709678292955], [-77.34402645871283, 34.75734001120398], [-77.34393317923346, 34.75715684032661], [-77.34382420876081, 34.7569428568009], [-77.3436058941117, 34.75672582145166], [-77.3435827095407, 34.75671753130171], [-77.34335812689207, 34.756512878116446], [-77.34271011613967, 34.75655555084189], [-77.34245872279311, 34.75655047033083], [-77.34217327666485, 34.7566355551162], [-77.34182200198815, 34.756680012581796], [-77.34156428104987, 34.75681708222964], [-77.34145181170288, 34.75679610430522], [-77.3412488658627, 34.756590788667786], [-77.34123409020893, 34.75656933691861], [-77.34122374171046, 34.75655366263869], [-77.34114172522355, 34.75644273368808], [-77.34110906021125, 34.75587713604722], [-77.34084961558497, 34.75590334171679], [-77.34076515890702, 34.75574738732878], [-77.34060450133461, 34.7557161243781], [-77.34046531222664, 34.75568291422643], [-77.34041045934121, 34.755625939652305], [-77.34034493830623, 34.755578617126936], [-77.33986668297854, 34.75531312584044], [-77.33982256142548, 34.75528962670238], [-77.33932827014038, 34.75495436057282], [-77.33916840254693, 34.754885996179766], [-77.33868283389133, 34.75458926994979], [-77.33831314835794, 34.75432482616257], [-77.33780672860837, 34.754474542539064], [-77.33765535917053, 34.75452685222966], [-77.33757110835276, 34.75455596685291], [-77.3368874767556, 34.75510755771168], [-77.33629466710283, 34.75484873573074], [-77.3349869575292, 34.754819759417614], [-77.33458133592495, 34.754797538012255], [-77.33410706018165, 34.75495396783853], [-77.33391373134049, 34.75503325448451], [-77.3337286965156, 34.75498160720739], [-77.3333689465252, 34.75484654520302], [-77.33314631885705, 34.75473681063724], [-77.33300948454023, 34.75422118514524], [-77.3323250811986, 34.75431596189465], [-77.33166242061075, 34.753965449712325], [-77.33175878410326, 34.753606126404804], [-77.33131959432023, 34.75365343303885], [-77.33073273532369, 34.753118122949566], [-77.33088558080736, 34.752700871404166], [-77.33037710528026, 34.75277430899493], [-77.33023162325692, 34.75241534074176], [-77.33000525983397, 34.75224308169056], [-77.32997744438333, 34.75221661088915], [-77.3299812420073, 34.752075549512064], [-77.32995793536469, 34.75183748136117], [-77.33000959440487, 34.75168603350778], [-77.3305385819445, 34.75119525542193], [-77.33039479011566, 34.75075058363656], [-77.33090458590611, 34.750960338016775], [-77.33099474854288, 34.75104043533423], [-77.33118153013956, 34.75110714052481], [-77.33162028568003, 34.75134780953216], [-77.3319867076853, 34.75135918738349], [-77.33226757326184, 34.75144566303297], [-77.33232512723023, 34.75159421628709], [-77.33275672664422, 34.75186598815343], [-77.33288447719573, 34.751952472921786], [-77.33300947257335, 34.75196220575352], [-77.33335964864347, 34.752101095780255], [-77.33367437974252, 34.75213348474117], [-77.33366716541074, 34.75222856839776], [-77.33405536608704, 34.752485715904214], [-77.33454600861218, 34.752251662163445], [-77.33485994694422, 34.752153759208944], [-77.33498686835266, 34.75191272699152], [-77.33512534495866, 34.75154131308461], [-77.3348911820364, 34.751198005513984], [-77.33500255922334, 34.7510033929867], [-77.33509638097144, 34.7509655528938], [-77.33522086710845, 34.75094453776938], [-77.33563176060089, 34.75118452589082], [-77.33589882911849, 34.751211593082786], [-77.33622607338808, 34.7512007915781], [-77.33628016983118, 34.75131255443667], [-77.3364961205348, 34.75130217464739], [-77.336541909311, 34.7513471180155], [-77.3366507986133, 34.75142174995348], [-77.33673942072309, 34.751495564796826], [-77.33699200471897, 34.75148946798792], [-77.33705583840509, 34.751504488006034], [-77.3372803872995, 34.751695338885945], [-77.33730121653393, 34.75170998079847], [-77.33764707153502, 34.75168297216307], [-77.33784453955823, 34.7518153594185], [-77.33799065679632, 34.751968208876995], [-77.33805856119014, 34.75211392735057], [-77.33824222251732, 34.75250805152628], [-77.33827665484384, 34.75253662649457], [-77.3387066832637, 34.75297104269452], [-77.33880266781073, 34.752920508003164], [-77.3401471444459, 34.75213722372486], [-77.34035359052378, 34.75191453970549], [-77.34085464705637, 34.751730527292324], [-77.34140289929343, 34.75156755850201], [-77.34151375199161, 34.75155739217803], [-77.34159093338937, 34.7515649705023], [-77.34179088770182, 34.75160213635445], [-77.3420717135995, 34.75169870695567], [-77.34226634549319, 34.75169422431614], [-77.3423741583791, 34.75175106948805], [-77.3424117417329, 34.751760678995986], [-77.34259796419474, 34.75194913528617], [-77.34260192059627, 34.75197010677615], [-77.34261035447777, 34.751977127970534], [-77.34260705184585, 34.75236033007468], [-77.34271880905698, 34.752449628463374], [-77.34265040906365, 34.75311532732294], [-77.3434775740878, 34.75304490778676], [-77.34379723279923, 34.753021852510486], [-77.3444680130466, 34.753006439017476], [-77.34476639523663, 34.75273266605224], [-77.34529294368068, 34.75246065318237], [-77.34549319702776, 34.75229300820534], [-77.34547922820528, 34.752516835886546], [-77.34596821191863, 34.75271977884444], [-77.34650942437939, 34.75226173804783], [-77.34662666641088, 34.75191361355893], [-77.34680763347207, 34.751495317699465], [-77.34688710267419, 34.75139050850047], [-77.34691115670643, 34.75134105882463], [-77.3470096832019, 34.75113000344608], [-77.34703552483504, 34.7511082581526], [-77.34725583119305, 34.751096235422175], [-77.34732804167403, 34.751095124422406], [-77.34733747731855, 34.75109985419545], [-77.34735990690118, 34.751100316082514], [-77.34761568423448, 34.751173169617026], [-77.34796130209946, 34.75099479714126], [-77.3479730147838, 34.75099331971931], [-77.34803999146553, 34.75098865643601], [-77.3482564561185, 34.75102947679996], [-77.34847453646081, 34.75092903888112], [-77.34858156555465, 34.75090599126505], [-77.34861687174019, 34.750892368569154], [-77.34887751684934, 34.750953611870806], [-77.34919971336323, 34.750815308724015], [-77.34938076886554, 34.75056101271429], [-77.34964332695736, 34.75037953615382], [-77.34988461693501, 34.750145499776224], [-77.34993045025395, 34.74999821254557], [-77.35004853125955, 34.749791359867146], [-77.35009075117925, 34.749689841920386], [-77.35027984308671, 34.749462891155275], [-77.3503968743276, 34.7493227594768], [-77.350587470921, 34.748933299697455], [-77.3507767137467, 34.74844294319128], [-77.35079179326341, 34.748417882571125], [-77.35079808428817, 34.748401656412966], [-77.35093167760942, 34.74792956508831], [-77.35092379266591, 34.74791238895126], [-77.3508103261839, 34.747628695836724], [-77.3505596441466, 34.74747497688036], [-77.35054611994258, 34.747437697873465], [-77.35050181285722, 34.74742465454425], [-77.35036909185288, 34.747257434024455], [-77.35036531141223, 34.747182558805], [-77.35020091246278, 34.7470368207002], [-77.35005987216265, 34.74688408979737], [-77.34990584811604, 34.74674753453804], [-77.34969508338503, 34.74661884772847], [-77.34957940192263, 34.746476161886456], [-77.3495404530874, 34.74624016541083], [-77.34904702803456, 34.74624689625924], [-77.34899948831927, 34.74622691068122], [-77.34872232404643, 34.746080986293684], [-77.34867003234537, 34.7458781980003], [-77.34877775891897, 34.74576995368095], [-77.34893263814834, 34.74547257243434], [-77.34901623810951, 34.74524985308389], [-77.34897123467421, 34.74510117392099], [-77.34892629601126, 34.74482868448816], [-77.34901937678774, 34.74476204296472], [-77.34922254172011, 34.744452864514834], [-77.34960966574826, 34.74431030774305], [-77.3504803836581, 34.74358680818966], [-77.34993840673067, 34.743178749901816], [-77.3499060001244, 34.742805476385534], [-77.3498009726926, 34.7427052771758], [-77.34976078532009, 34.74237664162651], [-77.34993170758469, 34.74199731642016], [-77.35004255271716, 34.741697367161], [-77.34999210593149, 34.74130504793], [-77.34997509290662, 34.74117556121169], [-77.35017404052753, 34.740704563196104], [-77.34999105588216, 34.74037489540477], [-77.35008809263195, 34.740228978296564], [-77.350121164423, 34.740142858835675], [-77.35015578083033, 34.739732309402264], [-77.35016330820656, 34.73945402059016], [-77.34987017646213, 34.7392902347433], [-77.34986675058889, 34.739284591226514], [-77.34986029081392, 34.739273470017295], [-77.3498319464907, 34.73892050115556], [-77.34973774740175, 34.73881491276704], [-77.3494641362161, 34.738626261761624], [-77.34937237844532, 34.73848559150522], [-77.34899138073838, 34.738191954618664], [-77.3488437927758, 34.73810376839161], [-77.34842643133283, 34.73807500584543], [-77.34837183851084, 34.738027579117706], [-77.34813237314313, 34.73786257143213], [-77.34796031472536, 34.737617874089665], [-77.3479448321534, 34.737598789472365], [-77.34790851003987, 34.73754419816177], [-77.34810232914096, 34.737129054336094], [-77.34812397759966, 34.73709682751812], [-77.34862644726687, 34.73738652964933], [-77.34909436691127, 34.73712266080798], [-77.34932858693084, 34.73703122339417], [-77.34942514648671, 34.73697313227777], [-77.34946589170309, 34.736902697158484], [-77.35011973505262, 34.73636949141887], [-77.35015047806615, 34.73633924140613], [-77.3501635943451, 34.73631957461138], [-77.35016797096218, 34.73629688480487], [-77.3502840187779, 34.736138425735206], [-77.35040902048475, 34.736042204496684], [-77.35048168448064, 34.735994425052425], [-77.3505442860213, 34.73577995148514], [-77.35061721613376, 34.73568779488286], [-77.35073816833594, 34.73558340647742], [-77.3507606306876, 34.73550657138723], [-77.35085427095456, 34.73538716428198], [-77.35086570349523, 34.73537727165039], [-77.3508794338327, 34.73536842221016], [-77.35104994118973, 34.73522899690478], [-77.35105811558898, 34.73522861797976], [-77.35109466733921, 34.73521703897508], [-77.3513770150921, 34.73513389951492], [-77.35166325626048, 34.73512650978127], [-77.35167965642157, 34.735122911988896], [-77.35169235934052, 34.73512433697486], [-77.35231394695438, 34.73500106588712], [-77.352383895139, 34.73498659714876], [-77.35277424211799, 34.734834316119304], [-77.35305378536513, 34.734515820729456], [-77.35308596804899, 34.7344722493502], [-77.3531070121812, 34.734453469541855], [-77.35334062136457, 34.73405961897926], [-77.35346278887857, 34.73391725391714], [-77.35355504405489, 34.73369150381177], [-77.35361694982565, 34.73340871028827], [-77.35381650272342, 34.733204750543806], [-77.3539138554352, 34.73288057461848], [-77.35401373479219, 34.73255024106811], [-77.35398372638211, 34.7323836002366], [-77.35409572800717, 34.73217565641441], [-77.35423793063418, 34.73186132445248], [-77.35433397356243, 34.73174849868413], [-77.35445602015815, 34.731421589213255], [-77.35449704051491, 34.73133837381895], [-77.3544382409301, 34.731202639768654], [-77.3543888679362, 34.73107904092556], [-77.35417002487985, 34.730895880199704], [-77.35416624832914, 34.73085609126253], [-77.3541189068709, 34.73084856751147], [-77.3536802751127, 34.73047572398213], [-77.35369826526053, 34.73042769029777], [-77.35367668330815, 34.730309232761414], [-77.35337814729507, 34.730263397123636], [-77.35314024619666, 34.730094302796694], [-77.35311829805411, 34.73008543797888], [-77.35307112627119, 34.730071955011475], [-77.35278383122812, 34.72994853142185], [-77.35280758825509, 34.72975786979464], [-77.3529817602375, 34.729596838942925], [-77.35320804283026, 34.729227992254565], [-77.35339113753236, 34.72905326475917], [-77.35341043211251, 34.72901551105335], [-77.353510348372, 34.728820002365275], [-77.35353119737779, 34.728790348268575], [-77.35353194147538, 34.72878172093107], [-77.35366423213688, 34.72860213986712], [-77.3537681610317, 34.728514129546795], [-77.35395463483482, 34.72832121396766], [-77.35404067180767, 34.728297432319266], [-77.35424803073049, 34.7280337307492], [-77.35433450964842, 34.72794900345923], [-77.35438088386273, 34.727884514579955], [-77.35453552797624, 34.72792140849205], [-77.35476606617853, 34.72802940606287], [-77.35493312800054, 34.728044970466655], [-77.35516459368264, 34.728117021346065], [-77.35519637587376, 34.72816953212238], [-77.35526659849504, 34.728107147703255], [-77.35541709684335, 34.727922764295414], [-77.35545726827159, 34.72779487255175], [-77.35559039264393, 34.727395231042124], [-77.35568418971103, 34.727276336094626], [-77.35548723826162, 34.727080381478544], [-77.35524064519745, 34.726986055005234], [-77.35511101747274, 34.7269756096057], [-77.35514601305519, 34.72686283527256], [-77.3549273607037, 34.72672269413826], [-77.35493457542339, 34.72653649923976], [-77.35492031022041, 34.726406436725725], [-77.35508983866958, 34.72620348559742], [-77.35514938130585, 34.726088588288185], [-77.35521474021247, 34.726107394296534], [-77.35521931025508, 34.726150547557815], [-77.35523996345711, 34.726362554135505], [-77.35513690871308, 34.72656148215582], [-77.35530696352289, 34.726757689033846], [-77.35532079172759, 34.72681422418861], [-77.35538655947857, 34.72682981241826], [-77.35553774598995, 34.72704152411963], [-77.35584916109886, 34.72695271669316], [-77.35594857345214, 34.72699634771486], [-77.3560106330709, 34.727071924728726], [-77.35608342591225, 34.72717707414954], [-77.35614989283434, 34.72721240078255], [-77.3561928694339, 34.72732593473434], [-77.35619315526131, 34.72765161745245], [-77.35594192976905, 34.72772833546734], [-77.35617605395811, 34.72773308488384], [-77.35622481825503, 34.72772125222819], [-77.35633339205935, 34.72777586623707], [-77.35649923975294, 34.72787865813616], [-77.35654622124967, 34.727889064698246], [-77.35676529125521, 34.72792224281823], [-77.35697853209533, 34.7279041304635], [-77.35716358513119, 34.72787318066189], [-77.35742667182082, 34.72770686151334], [-77.35760364062921, 34.727624839131366], [-77.35778104885864, 34.727475832759], [-77.35797551331888, 34.727316091639494], [-77.35804768463245, 34.72708156393723], [-77.35801983182334, 34.726955661664434], [-77.35812216227565, 34.72680780412845], [-77.3581247390949, 34.72669756489643], [-77.35816198695893, 34.72659940266045], [-77.35821276634434, 34.72644178518508], [-77.35844809007918, 34.72625151755761], [-77.358572688555, 34.72628341495661], [-77.35873754790238, 34.72628580039656], [-77.35892815880221, 34.7263435539668], [-77.35897870488708, 34.72636525120977], [-77.3590082766998, 34.726384586682144], [-77.35908010722844, 34.72638008932262], [-77.35959447294752, 34.72642807707405], [-77.3597994618, 34.72637919935045], [-77.36025730145582, 34.72616994132516], [-77.36026989844781, 34.726164239172086], [-77.36027649414034, 34.72616362305919], [-77.36030942156948, 34.7261538784862], [-77.3609587613039, 34.725854097666016], [-77.3611536624633, 34.725664346681434], [-77.36124337565396, 34.72553823124924], [-77.36139523626338, 34.72538198041492], [-77.361501980805, 34.72533474096794], [-77.36172509656805, 34.72527708091679], [-77.36206487329709, 34.725195232445394], [-77.36242064191329, 34.724943868911545], [-77.36292117093902, 34.72490870979028], [-77.3630313381903, 34.72490291526549], [-77.36315364119858, 34.7248834214735], [-77.36333724104406, 34.72498279352038], [-77.36337389079561, 34.725078541038684], [-77.36338788476868, 34.72524369551334], [-77.36346062490354, 34.72528209067515], [-77.36350805410954, 34.725323491743445], [-77.36369743741933, 34.72544487125556], [-77.36371828575334, 34.7254780655809], [-77.36390960662533, 34.725659422532246], [-77.36392796871228, 34.725710958383395], [-77.36399617607374, 34.72570479041241], [-77.36408375233324, 34.725707399222564], [-77.36456668184431, 34.72580229686288], [-77.36481101215747, 34.72581995287952], [-77.36516546672613, 34.725802383270775], [-77.36554529646811, 34.72572579791234], [-77.36584239634472, 34.72553324837057], [-77.36596778860277, 34.72546190360929], [-77.36607534513395, 34.7253619225477], [-77.36622119818267, 34.72525970539864], [-77.36641646962929, 34.72522120902309], [-77.36653770731156, 34.72520076602235], [-77.3667273365918, 34.72513382107647], [-77.36698449370463, 34.7250862336858], [-77.36718423901763, 34.725036322143396], [-77.36726734592926, 34.72511251854735], [-77.3675455839544, 34.72515993757202], [-77.3676881576855, 34.72518294074842], [-77.36774206981146, 34.72517747872008], [-77.36781326415706, 34.725182232663656], [-77.36823587956877, 34.72515569846917], [-77.36834829417003, 34.72515189766542], [-77.36844142292483, 34.725100521393074], [-77.36893417386763, 34.725012579454926], [-77.36899075886302, 34.72500144214595], [-77.36904338729113, 34.72499560526038], [-77.3695401350036, 34.724940511184634], [-77.36959862955504, 34.724970175143085], [-77.36967821063587, 34.724919793790654], [-77.3698471127595, 34.72484371102439], [-77.37014518525939, 34.72469530260161], [-77.37034361454681, 34.72446643105488], [-77.3704197327917, 34.72465785227874], [-77.37083578671852, 34.724833827215576], [-77.37103542304172, 34.724972549682406], [-77.37137422767987, 34.725041799365314], [-77.37142628784567, 34.725066008336285], [-77.37151532605466, 34.72510186553015], [-77.37167942164719, 34.72526546165832], [-77.37191876061503, 34.7252287820788], [-77.37211964511664, 34.72527737501311], [-77.37221404888953, 34.72531602934809], [-77.37234796884006, 34.725329277701725], [-77.3725173133529, 34.72537578988489], [-77.37262569454316, 34.725356752168025], [-77.37275855435365, 34.72531356276433], [-77.37299140853325, 34.72520649712776], [-77.37325605862199, 34.72503966326695], [-77.37343303748166, 34.72499048521451], [-77.37373670282368, 34.72492867849535], [-77.37389154268891, 34.72459179564818], [-77.37396073377323, 34.72454659784964], [-77.3740620490929, 34.72447175759561], [-77.37416243256676, 34.72440702757921], [-77.37429527427835, 34.724345341216804], [-77.37447916340096, 34.72423830681514], [-77.37462122826406, 34.72413003682948], [-77.37469835107191, 34.72403543865252], [-77.37486867757885, 34.72390160942029], [-77.37491760329631, 34.723866336529944], [-77.37494698972404, 34.72384288033971], [-77.37512679166585, 34.72372532450624], [-77.3752387291465, 34.72364313637547], [-77.37561399296696, 34.7235171801978], [-77.37561828783574, 34.72351554762654], [-77.3756233004154, 34.72351066480099], [-77.37565518989835, 34.7235051785937], [-77.37602183721664, 34.723427213151496], [-77.37634975066345, 34.72321679583575], [-77.3763505199997, 34.72321638301319], [-77.37635109730654, 34.72321601860484], [-77.37635181171086, 34.72321494061063], [-77.37658605429284, 34.72273907027676], [-77.37688991940601, 34.72260171175097], [-77.37704210226241, 34.722339519097126], [-77.37714508553748, 34.72227060277413], [-77.37729251342721, 34.722177287307375], [-77.37730910105742, 34.72216465925048], [-77.37732273291981, 34.72215815965508], [-77.37750434031278, 34.722109802987724], [-77.37763966804715, 34.72208571551853], [-77.3777139077149, 34.72207839086886], [-77.37786023980317, 34.722066721711], [-77.37793204247987, 34.722060995877186], [-77.37796980771115, 34.72205279188041], [-77.37847935808206, 34.72220789154139], [-77.3792295192451, 34.72198684718282], [-77.3792555528108, 34.721980675762225], [-77.37927295159848, 34.72198111157047], [-77.37937922726299, 34.72195353988675], [-77.37995366902564, 34.721844786220466], [-77.38008187022372, 34.72183546568287], [-77.38059770925273, 34.7218348910712], [-77.38096165495637, 34.721777730635736], [-77.38124752717184, 34.72180507658345], [-77.38187284325839, 34.72180704852655], [-77.38188754005313, 34.72180905947614], [-77.38189768323821, 34.721812009098564], [-77.38190234783141, 34.721804049490295], [-77.38230580789373, 34.72173116588245], [-77.38253480753725, 34.72153120268336], [-77.38258803004837, 34.72148486665819], [-77.3826031126643, 34.72146902406261], [-77.38263830867791, 34.721431174910585], [-77.38290761802674, 34.721218664166095], [-77.38302715013407, 34.72107938248615], [-77.383073772627, 34.72103507504676], [-77.3832472631851, 34.72102579445944], [-77.38347977364904, 34.72074054614333], [-77.38358498025778, 34.72071544786289], [-77.38392712070294, 34.7206409883318], [-77.38417719326351, 34.72054654434184], [-77.38442457158294, 34.7204501302932], [-77.38473934894056, 34.72047273766147], [-77.38483869474322, 34.720476379537686], [-77.38490043927521, 34.720545381542074], [-77.38496156190384, 34.72063807685588], [-77.38510230764692, 34.72106650277253], [-77.38513159886828, 34.72134164038547], [-77.38529540378437, 34.72138238656444], [-77.38581253856732, 34.72154004038654], [-77.38588303393435, 34.72151975895255], [-77.38620249591227, 34.721369303542076], [-77.38621262282942, 34.72135552235625], [-77.38652266233072, 34.721302217833994], [-77.38661147190768, 34.721289850783734], [-77.38672956857991, 34.72134513761162], [-77.38680129798337, 34.72144685127366], [-77.38686556695626, 34.721511609278096], [-77.38702582547911, 34.72177807710604], [-77.38714054134986, 34.72195985662769], [-77.38730794511062, 34.722219845989756], [-77.38747901851582, 34.72242627690497], [-77.3878946755645, 34.7227829461523], [-77.3879538278188, 34.72284327132922], [-77.38798806410587, 34.72288188932917], [-77.38808909309878, 34.72295845473061], [-77.38881443123844, 34.72337720754312], [-77.38909047043065, 34.723502384373276], [-77.38936621385056, 34.72355057113814], [-77.38999009095986, 34.723779834252525], [-77.39028320050963, 34.7238114127769], [-77.39044213098703, 34.72381355558504], [-77.39090767941647, 34.72386896878349], [-77.39100104676987, 34.72386999036732], [-77.39136880507542, 34.72383242285598], [-77.39163579210161, 34.723569081601376], [-77.39167570297045, 34.72354690662743], [-77.39187282038965, 34.723159999900005], [-77.39208348718071, 34.723130437473884], [-77.39320602636307, 34.72257597984352], [-77.39327926545283, 34.72246681435134], [-77.39331565017432, 34.72244327383431], [-77.3939946719756, 34.72214015752153], [-77.39417346748594, 34.72203618523292], [-77.39463676673614, 34.72178722958575], [-77.39467363480715, 34.721753902460065], [-77.39472885367718, 34.72174626691367], [-77.39501641948372, 34.72156618032233], [-77.39531179739444, 34.72156168803914], [-77.3954257013037, 34.72155409972729], [-77.39546927582676, 34.72155847823681], [-77.39556291599258, 34.7215521328893], [-77.39591924457807, 34.721546051909314], [-77.3960702251522, 34.72154242499938], [-77.39636238884853, 34.721522462261596], [-77.39658172032829, 34.721349449629], [-77.39667214331665, 34.72128072678586], [-77.39683578135501, 34.72111319009279], [-77.39697277235668, 34.72102406770287], [-77.39716519495293, 34.7207890896651], [-77.39699560472204, 34.720561801122315], [-77.3969725290215, 34.72042308551781], [-77.39690464145221, 34.72034414204076], [-77.39698734925213, 34.7202995977125], [-77.3970638196014, 34.72032645871036], [-77.3974772883602, 34.72035254494653], [-77.39772419169391, 34.720260061957745], [-77.39787646995667, 34.720125019069215], [-77.39811318196912, 34.719895888346485], [-77.39819761497463, 34.71967823621713], [-77.39856117514164, 34.71931449410847], [-77.39862127579559, 34.71926732176247], [-77.39863472331356, 34.71925223256781], [-77.39867648360715, 34.71918645477667], [-77.39887555949707, 34.718897807150725], [-77.39891649601086, 34.71881146955744], [-77.3989536963344, 34.71870453194386], [-77.39905738639447, 34.71844688202813], [-77.3991501863387, 34.71833409007358], [-77.3991080032099, 34.718193877584596], [-77.39913681946337, 34.71804984357759], [-77.39906082970701, 34.717860321610104], [-77.39901385677908, 34.7177868026353], [-77.3989558852139, 34.71770696893194], [-77.39878160650251, 34.717437303206275], [-77.39871188164224, 34.717342027208005], [-77.39866022548391, 34.71726474487911], [-77.39862036469725, 34.71716804090007], [-77.3985679185075, 34.71708006553769], [-77.39853809728103, 34.71700165221308], [-77.39848580646245, 34.71676382500484], [-77.39847150547217, 34.71669878195043], [-77.39846773344327, 34.716675509220096], [-77.39845670055823, 34.71662672874503], [-77.39841879691627, 34.71640076867095], [-77.39838955797104, 34.716261777203414], [-77.39830226164399, 34.71605359334877], [-77.39824519047261, 34.71587564104822], [-77.39818497121577, 34.71575981222284], [-77.39806299029452, 34.715505277673536], [-77.39791896051504, 34.71516413322746], [-77.3979000208764, 34.715126897416376], [-77.39788554203605, 34.715095899812574], [-77.39780752884353, 34.71490621729028], [-77.39775149820893, 34.714769425748855], [-77.39774184721936, 34.71474651810275], [-77.39772772483585, 34.71471798228274], [-77.39758887356264, 34.71443295038634], [-77.39756507910275, 34.71437389107462], [-77.39753179172348, 34.7142880454368], [-77.39737910395269, 34.71400510283058], [-77.39713848095894, 34.71381196168314], [-77.3970481650547, 34.713744790736705], [-77.39698706171167, 34.71372222360714], [-77.39690874140827, 34.713635819079094], [-77.39689761207147, 34.71341800084116], [-77.39678092784843, 34.71303194751815], [-77.39677057173418, 34.712919837807014], [-77.3966860292866, 34.71278238690885], [-77.39656649237101, 34.71239776380685], [-77.3964485087313, 34.712161466995596], [-77.39629898136035, 34.71190596487888], [-77.39626563727468, 34.711791387010514], [-77.39621825454566, 34.711716757000225], [-77.39600868029831, 34.71145219328249], [-77.39585833973396, 34.71121447742142], [-77.39578068382033, 34.71110092635321], [-77.39566519581979, 34.710964071752414], [-77.39553021150444, 34.71075902976894], [-77.39539495901897, 34.71060146627892], [-77.39524776196328, 34.710430464548715], [-77.39492987960249, 34.71014759937581], [-77.39491005316837, 34.710124936732555], [-77.3948984113295, 34.71010290532967], [-77.39485755244621, 34.7100811488109], [-77.39434507868994, 34.70980026623703], [-77.39375077587906, 34.70976744049716], [-77.39371370701112, 34.70976686836842], [-77.39362192028499, 34.70976931095999], [-77.39322024249822, 34.70964796406811], [-77.3931116820196, 34.70963222626775], [-77.39296522159952, 34.70959676045885], [-77.39268876927501, 34.70952694552999], [-77.3925259873611, 34.709441252171956], [-77.39227845544391, 34.709436741580454], [-77.39216950993561, 34.70942590283915], [-77.39191994795257, 34.709320465679234], [-77.39165125442824, 34.709326496363744], [-77.39125191055498, 34.70941354546926], [-77.39124783685754, 34.70941495349227], [-77.39124129191795, 34.709415860096236], [-77.39094050280525, 34.709382085827386], [-77.39075179200742, 34.70935187767413], [-77.39062958497401, 34.70934893578354], [-77.39048616955859, 34.70929125223304], [-77.39018780819788, 34.709047144399534], [-77.39013467323726, 34.70899146690082], [-77.39010374228289, 34.70895152443364], [-77.38979431699407, 34.70868703662454], [-77.38960326641647, 34.708466627927834], [-77.38878497645854, 34.70855613727251], [-77.38845507319603, 34.70858822226809], [-77.38826685668434, 34.7086539303619], [-77.38787218347618, 34.70859564182601], [-77.3875284488595, 34.708569130614], [-77.38703910751998, 34.708466435570685], [-77.38662964750219, 34.70822095488986], [-77.38635643766973, 34.70814854892595], [-77.38590309201386, 34.70796258295918], [-77.3856007353393, 34.70800071649776], [-77.3853809385811, 34.70804946685356], [-77.38521822537282, 34.70811367398873], [-77.38461667518851, 34.70821542004579], [-77.38457571574018, 34.70822898040101], [-77.38454434478072, 34.70822686671834], [-77.38451005678239, 34.70821181321625], [-77.38445826634421, 34.70815996621313], [-77.38306985277819, 34.70702689713802], [-77.38239869373622, 34.70678347117686], [-77.38206223199371, 34.706554273068534], [-77.3818439991601, 34.70648569739472], [-77.38163903733415, 34.70641788369528], [-77.3814765464903, 34.706352081892184], [-77.38127552563216, 34.70623544339152], [-77.38107488399274, 34.70607319337978], [-77.38073839199708, 34.705877137435465], [-77.38021812456516, 34.70558983954935], [-77.38018675967781, 34.70556883584534], [-77.38014789951302, 34.70556695341149], [-77.37957890900887, 34.70545437858783], [-77.37910090408236, 34.70525872397381], [-77.37898730956279, 34.70528389218073], [-77.37867913955296, 34.70528649318676], [-77.37835516680963, 34.70525319328779], [-77.37818475379912, 34.70525664336935], [-77.37776976026507, 34.70521918733183], [-77.3777503372322, 34.70512832658784], [-77.37768483775201, 34.7048718928488], [-77.37781543132739, 34.704740051076946], [-77.37782447015661, 34.704697399277926], [-77.37780689589616, 34.70438364085564], [-77.37779677829836, 34.704255218614875], [-77.37784352676252, 34.703961154237156], [-77.37751081585479, 34.70389024047112], [-77.37747495472642, 34.70385062527439], [-77.37744408269529, 34.7038163169782], [-77.37726472314964, 34.70361819350645], [-77.3770596099322, 34.70338198241575], [-77.37705952470016, 34.70338188743554], [-77.37705945414557, 34.70338180531052], [-77.37705886064923, 34.70338105870768], [-77.376883295265, 34.70312327925184], [-77.37684031040109, 34.70310612830278], [-77.37671057111228, 34.70294237776939], [-77.37667090025582, 34.70289251461553], [-77.37662137431985, 34.702829025951715], [-77.37653868124598, 34.702722312975155], [-77.37649194689, 34.70263600452958], [-77.37641146807142, 34.702496105109375], [-77.37634507694324, 34.702354795383094], [-77.37623083884792, 34.70211164350982], [-77.37620770638452, 34.7020662735718], [-77.37620243944046, 34.70203744842931], [-77.37618074187907, 34.70196501240091], [-77.37613015409151, 34.70180368881286], [-77.37611276370181, 34.701745088582314], [-77.37602724581255, 34.70157413913944], [-77.37594488968293, 34.70148005138857], [-77.37585848338472, 34.70133160914209], [-77.37569520746412, 34.70113239404969], [-77.37556891503073, 34.700980948025695], [-77.3754248607289, 34.70076281204306], [-77.3753920748186, 34.700722815510716], [-77.37536945408381, 34.70068978449142], [-77.37525445904588, 34.70050625859025], [-77.37522621752437, 34.70045622820512], [-77.37521666988701, 34.7004487028239], [-77.37505147617071, 34.700246105304856], [-77.37503152881666, 34.700211837431915], [-77.37499950545046, 34.7001655331912], [-77.37485601307066, 34.69995268665445], [-77.37475821346521, 34.69979902733823], [-77.37468759406501, 34.69968807300986], [-77.37457536605814, 34.69956408243088], [-77.37446954429004, 34.69946166881287], [-77.37436565873315, 34.69936559963072], [-77.374117776557, 34.69907796317247], [-77.3740468584531, 34.69899853524367], [-77.37394897941009, 34.69893548756392], [-77.37376483032301, 34.698821386592066], [-77.37361997608286, 34.69873047555495], [-77.3734251183148, 34.698688645180084], [-77.37287259656391, 34.69859606113215], [-77.37282009827202, 34.69836588114113], [-77.3726242215582, 34.69803606389309], [-77.37256528172256, 34.697773522958066], [-77.37215990268486, 34.69771924272229], [-77.37212466172957, 34.69769467945914], [-77.37196314596088, 34.697448545605866], [-77.37182528336187, 34.69727784491238], [-77.37167487580604, 34.69718173623796], [-77.37156472763783, 34.69696673783233], [-77.37140257495756, 34.696848554963466], [-77.37130046864428, 34.696775913910116], [-77.37123105778619, 34.6966482399819], [-77.37114476593345, 34.696501518301964], [-77.37108459483079, 34.69617345870396], [-77.37121025812996, 34.69590020168403], [-77.37114578428056, 34.69495140659423], [-77.37114630291111, 34.69493420700638], [-77.37114862507532, 34.6949215086293], [-77.37114133223542, 34.694894243091106], [-77.37108849581567, 34.69417927874476], [-77.37079691711028, 34.694007443008054], [-77.37104858245796, 34.69358899809098], [-77.37114975179705, 34.69347155226865], [-77.3714985901481, 34.69334962901744], [-77.37163530751798, 34.692969789316635], [-77.37165713469149, 34.69291441477385], [-77.37162861342118, 34.69282671223414], [-77.3715744105309, 34.69262241126421], [-77.37140677886643, 34.69246143478347], [-77.37141960346027, 34.69234733184346], [-77.37145955436326, 34.69196678525985], [-77.37180206429986, 34.691704145339436], [-77.37198922412495, 34.69140658267029], [-77.37206002138049, 34.69129460061098], [-77.37209512239022, 34.69103873788643], [-77.37208127403218, 34.690906534806324], [-77.37203048419718, 34.69063029325822], [-77.37201112737472, 34.690428783637806], [-77.3720592307375, 34.690277845283816], [-77.37225934056391, 34.689907267981646], [-77.37237244132828, 34.68965705763811], [-77.37241362395528, 34.689398664286976], [-77.37237349517837, 34.68924736611291], [-77.37235589327179, 34.689162903776754], [-77.3722987192104, 34.68895359726182], [-77.37230676144347, 34.68892596087997], [-77.37229437139129, 34.68891402214603], [-77.37227798269451, 34.688912767066654], [-77.37224389641958, 34.68890501492168], [-77.37187926873489, 34.68883935316974], [-77.37171236011596, 34.68879931070012], [-77.37125736103317, 34.688668900958916], [-77.37114911323322, 34.688677668051106], [-77.37108751164067, 34.688660411484605], [-77.37080737181911, 34.688270121445896], [-77.37073138093776, 34.68816773301207], [-77.37072271662062, 34.68815275191621], [-77.3707113194539, 34.68812358053479], [-77.37054799610759, 34.68770554712384], [-77.37045670626559, 34.687569038521474], [-77.37025633243175, 34.68725824388997], [-77.36987168156875, 34.68689153996395], [-77.36957634366895, 34.68666980860727], [-77.36926595178076, 34.686419588222826], [-77.3691014708691, 34.6862469052455], [-77.36891734683019, 34.68605493567651], [-77.36887035560288, 34.68598657069806], [-77.36873548245582, 34.68574017471251], [-77.36862341568111, 34.68553311762527], [-77.36856216831158, 34.68508510967844], [-77.368562650184, 34.68505407869199], [-77.36852716534656, 34.68497299983618], [-77.3683292443036, 34.684598766401166], [-77.36830666761784, 34.68449331952585], [-77.36819471838145, 34.684419739126966], [-77.3677908286294, 34.68418537476159], [-77.36774021028889, 34.684140935525164], [-77.36745343099355, 34.68402135030876], [-77.36712969721789, 34.68396477853069], [-77.36691779387334, 34.68398560846809], [-77.36678741469935, 34.68383588591616], [-77.36636489769398, 34.68362278362169], [-77.36622484469046, 34.68342580912629], [-77.3661088775725, 34.683357506265985], [-77.36570028915274, 34.683345963406914], [-77.36504456784411, 34.68316263356944], [-77.3649680176338, 34.683163981994234], [-77.36490507147127, 34.683169693160025], [-77.36432157822527, 34.68332917338857], [-77.36410922950449, 34.68322914132904], [-77.36390660832664, 34.68314988568466], [-77.36380355764467, 34.683051794168705], [-77.36361343318217, 34.68280987754104], [-77.36387558538306, 34.68238530231013], [-77.36335552157098, 34.68253324649588], [-77.36312325826802, 34.68273599769786], [-77.36295465731635, 34.682900394793336], [-77.36273662893025, 34.68303148852778], [-77.36257601420024, 34.68315699198646], [-77.36235120565246, 34.68332804881129], [-77.36211042578944, 34.68350377724234], [-77.36182225702436, 34.683691960090236], [-77.36146406778848, 34.683818091182374], [-77.36112061951789, 34.68404729515635], [-77.36071335828083, 34.68403116708468], [-77.36035035898863, 34.68410729685358], [-77.3598639829782, 34.68425264180576], [-77.3593124667406, 34.68446370778943], [-77.35919903070726, 34.684481525667564], [-77.35885696920693, 34.68467171003775], [-77.35854193198432, 34.68468333172981], [-77.35828960898196, 34.68483344623293], [-77.3580390129416, 34.68503785619551], [-77.35780688351824, 34.68515368016528], [-77.35749728286522, 34.68540754546858], [-77.35729644816233, 34.68547868009415], [-77.35712465033615, 34.68544203949994], [-77.35684683754972, 34.685469180778945], [-77.35681952970398, 34.68546220324319], [-77.3567942579811, 34.68547101273073], [-77.35650333057802, 34.68552053006229], [-77.35633685575354, 34.68565533305261], [-77.35627637946286, 34.68576733530743], [-77.35612301021699, 34.68598767125433], [-77.35606824534358, 34.68628330523143], [-77.3558118214637, 34.686466392133745], [-77.35560429010506, 34.68683440767453], [-77.35555771667987, 34.68687938235428], [-77.35543285384186, 34.687307284490615], [-77.35542394794051, 34.687346559197465], [-77.35541753329869, 34.68739336365486], [-77.35531703405249, 34.68779063128924], [-77.35534865796319, 34.687844283309744], [-77.35516270424162, 34.68807691289314], [-77.35487315181294, 34.688187284833404], [-77.3544930053908, 34.68832196754305], [-77.35417256109042, 34.68827727746372], [-77.35418911414006, 34.688003516848156], [-77.35401581814108, 34.68790388707363], [-77.35389935801837, 34.68769914905749], [-77.35377891310154, 34.687572460886315], [-77.35355260081377, 34.687437701228916], [-77.35323698833176, 34.68764687480983], [-77.35315610952065, 34.68787698427409], [-77.35314044602802, 34.68790382324468], [-77.35313596740899, 34.687923790113345], [-77.35299956845691, 34.68816685842784], [-77.352647850667, 34.68849235383442], [-77.3523446356667, 34.688498797289625], [-77.35219530003349, 34.68876467089148], [-77.3519545668126, 34.68919590575838], [-77.35189769998135, 34.68929291539704], [-77.35193722905811, 34.689414171325225], [-77.35183945050271, 34.689788294218076], [-77.35145261391112, 34.690261104762946], [-77.35082627745112, 34.69064298571818], [-77.35049966303737, 34.69069285176486], [-77.3505308179286, 34.69094272307251], [-77.34988444400236, 34.691424012063216], [-77.34920858941857, 34.69209116044127], [-77.3491992124214, 34.69209311544387], [-77.34828090335424, 34.69202301772326], [-77.34800754242025, 34.69210442378465], [-77.34778650812625, 34.69200928596116], [-77.34764589201197, 34.69199261164398], [-77.3474534758146, 34.691951078274975], [-77.34734598739571, 34.691954093883304], [-77.34696622625471, 34.692028344983356], [-77.34672489501519, 34.69239865078201], [-77.34669415064198, 34.692425439376485], [-77.34668577740545, 34.69244528628211], [-77.34669490436647, 34.692455103336904], [-77.34668973313954, 34.69251972451953], [-77.34673603259333, 34.69246257113899], [-77.34698693245086, 34.69252696450464], [-77.34711748701895, 34.69252410239231], [-77.34728334444179, 34.69253691418735], [-77.34774618416861, 34.692434493080015], [-77.34782626656268, 34.692728649856605], [-77.3478393029775, 34.69277433845379], [-77.3478212442755, 34.692786377459534], [-77.34779421408962, 34.692839021993734], [-77.34755396061128, 34.69318771965635], [-77.34717852360684, 34.69335241493995], [-77.34753970798548, 34.69338173459426], [-77.34750684859006, 34.693784258602385], [-77.34749720272349, 34.69379605484153], [-77.3475018265716, 34.69380506232436], [-77.34741655741712, 34.694023363984236], [-77.34727707536291, 34.69397800665598], [-77.34718390295333, 34.69390994805708], [-77.34709423559089, 34.6938513637747], [-77.34710310480304, 34.69371769824518], [-77.34702597539503, 34.69342313371307], [-77.34701558797876, 34.69337477860537], [-77.34693241253616, 34.69306069139713], [-77.34654831240168, 34.693006679358454], [-77.3464887312999, 34.69300792570549], [-77.34600200624698, 34.693088424840674], [-77.34591787763658, 34.69311626433668], [-77.34560246410602, 34.69329571646878], [-77.34553709033538, 34.69331455444212], [-77.34548506007657, 34.69334114791823], [-77.34523523781166, 34.69340558645749], [-77.34507827948804, 34.693396973606696], [-77.34501163315109, 34.69335617027461], [-77.34486826983455, 34.69335990281154], [-77.3446605431164, 34.69332323467404], [-77.34446484829314, 34.69338272812006], [-77.34404278170585, 34.69338915614024], [-77.34355778226706, 34.69347466581348], [-77.34337468727985, 34.69362836099461], [-77.34320328811381, 34.69356509487638], [-77.3427452367483, 34.69373450774174], [-77.34239093761552, 34.69371677910006], [-77.34227528031741, 34.69402529983883], [-77.34256383095928, 34.694359024960505], [-77.34294175049962, 34.6942051484939], [-77.34324527714233, 34.69407389033402], [-77.34343167218319, 34.694001188580295], [-77.34361506050473, 34.694036592214104], [-77.34379029577458, 34.6942584329078], [-77.34380440220146, 34.69430285558628], [-77.34379596688345, 34.694324177800944], [-77.34373521372626, 34.69455603888107], [-77.34366554652497, 34.69468792120883], [-77.34359674198184, 34.694785875757105], [-77.34349404150231, 34.69483282174194], [-77.34287942248778, 34.695333419958075], [-77.34282254062668, 34.69537613158094], [-77.34278808572826, 34.695461209702756], [-77.34261418418123, 34.69592830789857], [-77.34229698224786, 34.69618684347133], [-77.34192294892594, 34.696565296731464], [-77.34156674864099, 34.696816094296125], [-77.34063510512655, 34.69711768074013], [-77.34056161301413, 34.69713001005895], [-77.34047117662722, 34.6971214312485], [-77.34032190841992, 34.69721756491782], [-77.33944420255129, 34.697487587981925], [-77.33921891705889, 34.69763047909392], [-77.33800671222794, 34.698509916111156], [-77.33782481723813, 34.69860521614724], [-77.33770987835274, 34.69870339470701], [-77.33739404592039, 34.698822821049056], [-77.3373514796688, 34.698599792423664], [-77.336938711819, 34.69781952613561], [-77.33685050516938, 34.6976937609247], [-77.33685998518827, 34.697657106703744], [-77.33681566867578, 34.69766017348162], [-77.33675521516419, 34.697656822030815], [-77.33576016346314, 34.697172125498135], [-77.33557531788465, 34.69706883306732], [-77.33470750972849, 34.69711786469523], [-77.33458448487707, 34.697097673446], [-77.33446200485788, 34.69713700793383], [-77.33397398714581, 34.69713841760688], [-77.33347418003214, 34.69730101239118], [-77.33330247546587, 34.6973891124215], [-77.3328059814717, 34.69762264151311], [-77.33200225593679, 34.6977431651231], [-77.331225853859, 34.697860901375], [-77.33098910681997, 34.69849757101309], [-77.33073520223572, 34.69870264154723], [-77.33067156856085, 34.69926446577651], [-77.3308373332933, 34.699493121437314], [-77.33107556428718, 34.69974195785051], [-77.331240181435, 34.70036533912317], [-77.33181815781143, 34.699662977817596], [-77.33205341606248, 34.69962710851796], [-77.33229814409913, 34.699589794065844], [-77.33238448425942, 34.70016516819531], [-77.33156366476939, 34.70036827469145], [-77.33125872596268, 34.7004437300089], [-77.3312130106801, 34.700458825891516], [-77.33112613638687, 34.700491302222055], [-77.32985973972686, 34.700995183629935], [-77.32917432185896, 34.70114903561996], [-77.32862511469357, 34.701123289074026], [-77.32824135183373, 34.7011337009257], [-77.3280216593021, 34.701139661648355], [-77.3276687334824, 34.701090756925474], [-77.3274444997317, 34.70106556605131], [-77.32729676266877, 34.70095324836104], [-77.3268726672093, 34.7006099574195], [-77.32648672796655, 34.70024125479117], [-77.32631925575981, 34.70011250244861], [-77.32634751591803, 34.69943743248875], [-77.32549329584435, 34.699539667972566], [-77.32534225969225, 34.699422387052714], [-77.32490991395427, 34.699487009747614], [-77.3245509410307, 34.699380138696995], [-77.32478291029764, 34.699064383231224], [-77.32498409400738, 34.69870987774376], [-77.32519685013362, 34.698499993481335], [-77.3253205424144, 34.698369808040425], [-77.32565103137598, 34.698396702647855], [-77.32583623427652, 34.698359982764934], [-77.32600892889303, 34.69844925257329], [-77.3260131779565, 34.69851227088115], [-77.32617546789872, 34.698489566044], [-77.32638266645031, 34.698539721539305], [-77.32648183475544, 34.698545917722896], [-77.32665166398203, 34.6986048352759], [-77.32689934836995, 34.69882181039006], [-77.32710895640528, 34.69867898995759], [-77.32748490249102, 34.698562633763316], [-77.32756589634388, 34.69858833726923], [-77.3277463494866, 34.698605813816485], [-77.32819551005427, 34.698481913463624], [-77.3285501114402, 34.69834459104832], [-77.32874903874932, 34.69821815406886], [-77.32886288696045, 34.69824555834305], [-77.32939404295676, 34.697741523129466], [-77.32956142776185, 34.69766173251577], [-77.32970608812727, 34.697404246930226], [-77.33025334708253, 34.696998481067666], [-77.33044222698433, 34.69693124954414], [-77.33070212367306, 34.696758037774984], [-77.33092335802473, 34.69670606630369], [-77.33110232451111, 34.69671986331173], [-77.33133490425809, 34.69668076982922], [-77.33138017990055, 34.696494467895434], [-77.33187011349317, 34.69613790012391], [-77.33202769987172, 34.69601830698862], [-77.33223266359866, 34.695890203533864], [-77.33267501088613, 34.69542820152593], [-77.33278359085917, 34.695411801998006], [-77.3329811414286, 34.69530019377781], [-77.33374944365875, 34.69499149288954], [-77.3340060363526, 34.69496799345832], [-77.33418378004856, 34.69498624370397], [-77.3349395454168, 34.69503161787072], [-77.33510198418797, 34.695068148418216], [-77.33517907936097, 34.69505142156046], [-77.33526051612617, 34.69505466495799], [-77.33611545407966, 34.695076756879715], [-77.33633930593473, 34.69517895023565], [-77.3367926550328, 34.69513649659731], [-77.33694250908725, 34.695163247699035], [-77.33698085493879, 34.695199271638614], [-77.33746829974973, 34.69541397872768], [-77.33767187151244, 34.69545593914868], [-77.33806473164648, 34.695421580033326], [-77.33841420087995, 34.69552977197746], [-77.33844818024099, 34.69564698836327], [-77.33857394878225, 34.69572936884348], [-77.3388001933399, 34.69563983878761], [-77.33916643927338, 34.69575053816838], [-77.33939726059091, 34.6957051121539], [-77.33971073032123, 34.69593761193261], [-77.34016498596567, 34.6955732363941], [-77.34052988385166, 34.69523952754493], [-77.34036332090406, 34.69496185903702], [-77.34040922193171, 34.69476870706567], [-77.34031036891075, 34.69460844718322], [-77.34027737506985, 34.69454310808459], [-77.34023869737086, 34.69446651350622], [-77.3402597154744, 34.69438051622344], [-77.34033217255916, 34.69429190219734], [-77.34036199435253, 34.69417457449875], [-77.34027605700308, 34.69399162827066], [-77.34028987433692, 34.693810329371466], [-77.34029231230963, 34.69377106182559], [-77.34034095496803, 34.6935596333907], [-77.34032540040597, 34.69348122186838], [-77.34034983535805, 34.69339562376609], [-77.34031999052392, 34.693325232397875], [-77.34032045986578, 34.69331875732061], [-77.34032344582026, 34.69331333810792], [-77.34040591879837, 34.69323343763389], [-77.3405124740817, 34.69317780116897], [-77.34066767435816, 34.69315108060341], [-77.34097142749428, 34.693096507170566], [-77.34118202521645, 34.69293361800456], [-77.34136004526155, 34.692802732501036], [-77.34139709597719, 34.692683665376435], [-77.34153876189012, 34.69248086143314], [-77.34160787785981, 34.69238412935761], [-77.34178754102771, 34.692289446339686], [-77.34198423278325, 34.69223273410925], [-77.34213269740147, 34.69221112276846], [-77.34255467426118, 34.69203745421436], [-77.34295918824705, 34.691667254997185], [-77.34336485552276, 34.691601302710815], [-77.34386503538398, 34.691370266995506], [-77.34399100072451, 34.69130543985052], [-77.34405423579398, 34.6912887596502], [-77.34459501423547, 34.69078271244706], [-77.34453576944168, 34.69051179337058], [-77.34484865748733, 34.69061452623558], [-77.34490749025132, 34.69067712459065], [-77.345143013094, 34.690707506407975], [-77.34521289112267, 34.69083629242131], [-77.34541152459491, 34.69073753773733], [-77.34547224015158, 34.690703774126085], [-77.34593007829206, 34.69067859382591], [-77.34602516592768, 34.69068572171453], [-77.3461698728515, 34.69068398730069], [-77.34639971574421, 34.69053502898718], [-77.34649620992349, 34.6902429522868], [-77.34669293393989, 34.69000740560795], [-77.34666878879924, 34.689849701223224], [-77.34688066252517, 34.68980109232659], [-77.34706845843337, 34.68980259911179], [-77.34728539270425, 34.689758075598185], [-77.34747254535961, 34.689824167610105], [-77.34776631150194, 34.68961638559392], [-77.3475903835385, 34.689418386429026], [-77.3475786263421, 34.68941001104888], [-77.34754400705944, 34.68940320954805], [-77.34734095293605, 34.68924669336755], [-77.3472797465716, 34.689245831529355], [-77.34709279670133, 34.68907061474776], [-77.34699383648622, 34.6890716711909], [-77.34664001032833, 34.688568587963545], [-77.34663870545371, 34.68855660570704], [-77.34663586045652, 34.68855310041643], [-77.34662202751689, 34.68853161390939], [-77.3463367440879, 34.68800062513326], [-77.3459946148105, 34.687975325847454], [-77.34554268454474, 34.68822484942096], [-77.34500782260096, 34.68823490974045], [-77.34483482587989, 34.688223640622965], [-77.3443979013622, 34.68804453624055], [-77.34434869204944, 34.68795377652684], [-77.34435270752414, 34.687891694938926], [-77.3437653211318, 34.68761434616372], [-77.34371858903803, 34.687491339432256], [-77.34364879836392, 34.68730984671035], [-77.34357057667502, 34.68710265460195], [-77.34365587178883, 34.687012568267036], [-77.34419158804846, 34.68669394058577], [-77.34457384077618, 34.68688659023256], [-77.34466628508642, 34.686921055440514], [-77.34471830767824, 34.686941324587046], [-77.3448157809386, 34.686930098152196], [-77.34535574156482, 34.68680749450379], [-77.34537865310119, 34.68679085691243], [-77.34542140898374, 34.68677026745092], [-77.34588720744608, 34.686603452451365], [-77.34600821703357, 34.68662185865801], [-77.34609478549089, 34.68661013132819], [-77.3463157164461, 34.686593560549454], [-77.3466029067468, 34.6865997150855], [-77.3466134616431, 34.686598849385135], [-77.3466251888705, 34.68659613843199], [-77.3466555176539, 34.68660088341123], [-77.34689035436097, 34.68678625445591], [-77.3471732119994, 34.686732498142455], [-77.34742006731652, 34.68668593255171], [-77.34754092226581, 34.686679786587085], [-77.34780524727472, 34.686617225208465], [-77.34790193968155, 34.686599051183435], [-77.34796434669036, 34.68658464969643], [-77.3480362009485, 34.68659390827763], [-77.34803650534329, 34.68659403904824], [-77.3480365986131, 34.686594260857575], [-77.34803484559929, 34.686655242531224], [-77.34802332539564, 34.68670272637308], [-77.34805844098238, 34.68677593329229], [-77.34806103484193, 34.68689533780399], [-77.34799860858253, 34.68711592580249], [-77.34807558259178, 34.687267129980945], [-77.34801588196342, 34.68738891609955], [-77.34793972834876, 34.68755541460594], [-77.3480915806521, 34.687692449060606], [-77.34806947678945, 34.687849745934976], [-77.34813114103892, 34.687860475458365], [-77.34829705602965, 34.68801549903717], [-77.34829827698853, 34.6880678508113], [-77.34830431703743, 34.688080394107274], [-77.34831155630478, 34.68811465077975], [-77.34824133264377, 34.688332729857905], [-77.34831349755643, 34.68845031708501], [-77.34845135607564, 34.688514787788876], [-77.34846221049128, 34.68853296485917], [-77.34855969298827, 34.68853271917884], [-77.34867213638961, 34.68856850522204], [-77.3488093050315, 34.68855595298972], [-77.34904280152816, 34.688539329274285], [-77.34935822390683, 34.688404319409216], [-77.34937147556107, 34.68817759132389], [-77.34938979277103, 34.68811316022496], [-77.34940056891254, 34.68805175216477], [-77.34950390597587, 34.68798204578148], [-77.34958184611608, 34.687964284307306], [-77.34981647772258, 34.687884947287806], [-77.34982970395389, 34.68789073049303], [-77.34987763136763, 34.68786441515701], [-77.35010925481144, 34.68779358175118], [-77.35017214654758, 34.68774208749225], [-77.35029484038033, 34.68763897249958], [-77.35036269060957, 34.68755413280269], [-77.35038255901314, 34.687532788207605], [-77.35050089317181, 34.687502509221936], [-77.35054152975154, 34.687500654116015], [-77.35056867904346, 34.68750315515076], [-77.35071517276589, 34.687505740735624], [-77.35083636801838, 34.68751595423377], [-77.35088094981391, 34.68748298103499], [-77.35104630952466, 34.6873477721478], [-77.35116723803013, 34.68704250265191], [-77.351145265513, 34.68695930993951], [-77.35117740203506, 34.686825710905495], [-77.35138357120306, 34.68666205978465], [-77.35168471625254, 34.686644244420386], [-77.35169270053852, 34.686644275209325], [-77.35169395318628, 34.68664028540336], [-77.3516935542538, 34.686637442516954], [-77.35174762843147, 34.68638922405293], [-77.35186795745712, 34.68616137232684], [-77.35213625188166, 34.68613119434066], [-77.35238821915758, 34.68598433887854], [-77.35275689930918, 34.685763263074215], [-77.35282268938914, 34.68573124703772], [-77.3528778220528, 34.68563856138726], [-77.35309459788058, 34.68533403651868], [-77.35325785771394, 34.68520709169526], [-77.35344804679463, 34.684892917742445], [-77.35355208235339, 34.68467930568118], [-77.35312379705385, 34.684354088160916], [-77.35272105191953, 34.68411688697445], [-77.35245863533684, 34.68407764520369], [-77.35221431591084, 34.68388823224943], [-77.35219662665857, 34.683861625911085], [-77.35163915149629, 34.68391997635906], [-77.3520338975958, 34.683425621683796], [-77.35217984339988, 34.683246492425155], [-77.35254470160808, 34.682868099392124], [-77.35260742580196, 34.68238635435162], [-77.35261308810209, 34.68237132749621], [-77.35258763168586, 34.682331482739926], [-77.35234674071648, 34.681920516667155], [-77.35228794740861, 34.68184386104713], [-77.35219875470588, 34.681792689010415], [-77.3519409192404, 34.68148885678408], [-77.35197309959511, 34.68129780502731], [-77.3517293869161, 34.681347837158974], [-77.35139568380391, 34.68107633820738], [-77.35132476068722, 34.68100843030267], [-77.35126301031701, 34.68089269784272], [-77.3510896701084, 34.68063097223572], [-77.35116897521213, 34.680339954224266], [-77.35088729277068, 34.680171376913414], [-77.35089348239698, 34.680157804810825], [-77.35087587054952, 34.68016465529243], [-77.35064452316212, 34.67996101803827], [-77.35099877882365, 34.679741312311805], [-77.35111570920472, 34.679749877577066], [-77.35133902570371, 34.67981488440806], [-77.3515539196308, 34.679890679030045], [-77.3517354188138, 34.67990397890778], [-77.3521688181045, 34.679834211113764], [-77.35232471258237, 34.6798446020112], [-77.35246443252677, 34.67984674151789], [-77.35270738109054, 34.67988455200475], [-77.35275051267334, 34.67989211326278], [-77.35276901121571, 34.67989682279529], [-77.35278069721177, 34.679911395642684], [-77.35287539359493, 34.680033515315685], [-77.35295085295921, 34.68013172204208], [-77.35294468330213, 34.6801558032344], [-77.35304176397045, 34.680362929735686], [-77.35299773709274, 34.68050916145663], [-77.35317095662003, 34.6805054772027], [-77.35335749338117, 34.68080695739318], [-77.35347054480795, 34.68093363626267], [-77.35360173007926, 34.681083279339354], [-77.35372509979544, 34.68124386077536], [-77.35387480484704, 34.68141087296043], [-77.35400339943367, 34.681671874148144], [-77.35399150262641, 34.68169466142491], [-77.35400471365644, 34.681756831422916], [-77.35394197290199, 34.68214756985028], [-77.35436392482802, 34.68258119268393], [-77.35437948989276, 34.682599213890406], [-77.35438112423334, 34.682615924438885], [-77.35439202744146, 34.6826546839265], [-77.35450003425072, 34.68290063142083], [-77.35464034981598, 34.68306770948752], [-77.35452127921862, 34.68327847835271], [-77.35477939621468, 34.68321177062492], [-77.3549611399822, 34.68315923209141], [-77.35510786338628, 34.68311116126036], [-77.35523240527792, 34.68298640186039], [-77.35533938484308, 34.68285630576865], [-77.3555391986769, 34.6826561693157], [-77.35569180573519, 34.6825304868778], [-77.35611625322913, 34.68244501894679], [-77.35620222596675, 34.68243392958798], [-77.35629289514824, 34.68242512244734], [-77.35635514019177, 34.682344821106824], [-77.35669684190182, 34.68214498501741], [-77.3568224537435, 34.68203694467694], [-77.3569360893941, 34.68196762801209], [-77.35712096093482, 34.68188273195812], [-77.35745150126809, 34.681811437943566], [-77.35758464296981, 34.68179521429754], [-77.35773391695284, 34.68178788667854], [-77.35788870552808, 34.681778648050134], [-77.35801826254215, 34.681769382900505], [-77.35807765362333, 34.68177349363564], [-77.35820176395183, 34.68173108613306], [-77.35821168243105, 34.681724281198704], [-77.35821271703205, 34.68169334814049], [-77.35818434464312, 34.68164153948697], [-77.35822199381056, 34.681601018191465], [-77.3582269254973, 34.68158670602118], [-77.35828645611096, 34.68116872451892], [-77.35829287956835, 34.68110389455216], [-77.3582995199016, 34.68101282603791], [-77.35843648291001, 34.68084047569609], [-77.3584658010308, 34.6808213585054], [-77.35869437957881, 34.680724638898255], [-77.35901775598363, 34.680516934728395], [-77.35911331059567, 34.680457792244006], [-77.35943951749331, 34.679971608559676], [-77.35951316692484, 34.679535809774414], [-77.35954882942264, 34.67946920611679], [-77.3602185311715, 34.67890645066801], [-77.3602292718624, 34.67889419050561], [-77.36023276900119, 34.67888786070214], [-77.36023953702836, 34.67887682573535], [-77.36043500289922, 34.678438349578585], [-77.36055350439584, 34.67835640909915], [-77.36074758575126, 34.67807723432779], [-77.36092743864958, 34.677817647651594], [-77.36100437729603, 34.67766666285958], [-77.36125265404247, 34.67740525128061], [-77.3613540566752, 34.6773384375641], [-77.3618024924757, 34.677572843519734], [-77.36190179871966, 34.67759715805947], [-77.36209620590297, 34.6775918742761], [-77.36235040753492, 34.6775834815855], [-77.36240079392839, 34.67757342822358], [-77.3624782269395, 34.67754761633478], [-77.36299983072776, 34.67752097310871], [-77.36301805164031, 34.67750868061223], [-77.36302584401945, 34.6775202522818], [-77.3630352951915, 34.67752803419696], [-77.36350774066979, 34.67788357371725], [-77.36354164378369, 34.67791161122223], [-77.36359948220824, 34.67793789950916], [-77.36375703985982, 34.67805567295037], [-77.36378560778311, 34.67811802016661], [-77.36399292105344, 34.67827401862408], [-77.36401533825767, 34.67833538742534], [-77.36403586646172, 34.678365324610766], [-77.36421907207628, 34.67857276998348], [-77.36433907033526, 34.6787081426656], [-77.3644069984734, 34.67880171551687], [-77.3644069918053, 34.67882232763976], [-77.36442835374466, 34.67883593099615], [-77.36457523254633, 34.67908703620144], [-77.36491108617643, 34.679215191211476], [-77.36491596532332, 34.67921802718128], [-77.36491703932106, 34.679218120135616], [-77.36492123408532, 34.67921844029161], [-77.3653929261883, 34.67924597606198], [-77.36550614071555, 34.67924664070099], [-77.36570194169482, 34.67927802563198], [-77.36583267527503, 34.67930165329405], [-77.36608128684125, 34.67932705304011], [-77.3662868167238, 34.67934624821818], [-77.36651490486808, 34.67936045011746], [-77.36667940995542, 34.67932827003215], [-77.36693433506719, 34.679241957000016], [-77.36730636716612, 34.6792300958861], [-77.36772878882377, 34.67916006055222], [-77.36794724206524, 34.6790839388002], [-77.36820490942375, 34.67894390961794], [-77.36834351052535, 34.67894548395574], [-77.36852690531994, 34.67896658812863], [-77.36856786773915, 34.67896986601705], [-77.36857735090835, 34.678974882222306], [-77.36872819646862, 34.679043545655304], [-77.36895672800796, 34.679151203792316], [-77.36895694000964, 34.67926167387559], [-77.36940904171053, 34.67937302716934], [-77.36963372418153, 34.679459441209126], [-77.36970510248142, 34.679474126892664], [-77.36992669811394, 34.67950526526894], [-77.37048753386523, 34.679660190647716], [-77.37074953112392, 34.679739139756265], [-77.3712902228704, 34.67976404697431], [-77.37133787493401, 34.679774055661284], [-77.37138080984421, 34.67976090580513], [-77.37195082713791, 34.679724125669395], [-77.37233485728731, 34.67941361512017], [-77.37267976885401, 34.67927430048472], [-77.37306315205845, 34.679074079949956], [-77.37312793915021, 34.678840240331006], [-77.37348729544318, 34.67855349497908], [-77.37365560743032, 34.67879783009795], [-77.37451256854985, 34.67879113390948], [-77.37461399276248, 34.67879560475094], [-77.37497034786315, 34.67857397077145], [-77.37541524797743, 34.67831489424479], [-77.37546386084095, 34.67825658756158], [-77.37608922693555, 34.6778358982936], [-77.37619150977253, 34.67772662229274], [-77.37627522206907, 34.67765761727283], [-77.37687312271515, 34.67719640753099], [-77.37698994394417, 34.67715800484848], [-77.37702969953175, 34.67706646343062], [-77.37716192927401, 34.67688630091047], [-77.37747029918344, 34.67651847153277], [-77.37750793340425, 34.67634085577793], [-77.37773712310681, 34.67599437761903], [-77.37761205259963, 34.67575110320819], [-77.37732001010322, 34.67565533834489], [-77.37709071917953, 34.675595879700744], [-77.37685495609699, 34.675545592809925], [-77.37675661277157, 34.675534525133614], [-77.37656566752707, 34.67550578225776], [-77.37642515946463, 34.675482302418665], [-77.37618818735287, 34.67543105220676], [-77.37598094135625, 34.675430115320985], [-77.37558282583154, 34.6754549467918], [-77.37515155607531, 34.67552872883664], [-77.37495889420727, 34.67554286911758], [-77.37479969043622, 34.67555122916028], [-77.37465016559591, 34.67557566534991], [-77.37443395808083, 34.67553085385056], [-77.37436727625848, 34.67551936389506], [-77.37431691131692, 34.67548992530374], [-77.37407711369409, 34.67531912356345], [-77.37389613611678, 34.67508044914612], [-77.37388255088123, 34.675074682121604], [-77.37387591986368, 34.67506316716894], [-77.37379635988248, 34.674965750514986], [-77.37369962538966, 34.6748212796038], [-77.3736344156683, 34.67482221764426], [-77.37336520296962, 34.67484771201185], [-77.37299459208303, 34.674893260755866], [-77.37248744131597, 34.6749661913626], [-77.37212761884179, 34.67498809414629], [-77.37169540576346, 34.6750180212366], [-77.37085911920492, 34.67523503187953], [-77.37061855864961, 34.67533984996453], [-77.36979628586226, 34.6754613957816], [-77.36958314999526, 34.675507679518745], [-77.3694107969088, 34.67554563541994], [-77.36896571096969, 34.67557316017149], [-77.36873145248202, 34.67558163625118], [-77.36861904812456, 34.67557935008944], [-77.36838253177064, 34.675520534705754], [-77.36785830848424, 34.675445848433085], [-77.36777234795593, 34.675560995386604], [-77.36758538053468, 34.67584209378783], [-77.36741125361065, 34.675951883782204], [-77.36735373033676, 34.67597254806945], [-77.36717374139499, 34.67598452839603], [-77.36705852757291, 34.67599239767921], [-77.36704996264069, 34.67598820500519], [-77.36703422595801, 34.67599171740202], [-77.36657156818528, 34.67597308620576], [-77.36647449118556, 34.67590899454166], [-77.36627576134994, 34.67595757493584], [-77.3661376366178, 34.67591294561938], [-77.36610794981927, 34.67588731369066], [-77.36598741633621, 34.67583148548631], [-77.36592792069571, 34.67573017039449], [-77.36590758972056, 34.675695827051925], [-77.36589395602677, 34.67567302803651], [-77.36595575030194, 34.675264507203], [-77.36583074808412, 34.67519432365734], [-77.36573299009471, 34.675041780297256], [-77.36553469701477, 34.675022806132766], [-77.36551985075357, 34.67499335569716], [-77.36549023026225, 34.67494215447586], [-77.36548294235016, 34.674840063064934], [-77.3655110633563, 34.674750867911555], [-77.36534928371809, 34.674630533913486], [-77.36532124597962, 34.67457032139784], [-77.36511302119848, 34.67441353009788], [-77.36508484938223, 34.67435809440087], [-77.3650595975024, 34.674325521613135], [-77.36488123788511, 34.67412062576433], [-77.36487097446246, 34.67410774834389], [-77.36478478290236, 34.673997771967265], [-77.36478454556608, 34.67399749280964], [-77.36469243112086, 34.67388858954778], [-77.36469475888345, 34.67386996678657], [-77.36467687429048, 34.673854151878736], [-77.36449765195417, 34.673671661674284], [-77.3645067713242, 34.67362046958442], [-77.36434190098123, 34.6734493700728], [-77.36428370369555, 34.67339798215324], [-77.36420931789924, 34.673403048198445], [-77.36412551385418, 34.673322660444015], [-77.36408500186243, 34.67331587241383], [-77.36400405580983, 34.67325210231216], [-77.36399835241482, 34.6732234490698], [-77.3639692706321, 34.673199109052874], [-77.3637650233235, 34.67304125486408], [-77.36377162934775, 34.67300377677007], [-77.36373507781563, 34.67297499559316], [-77.3635471222076, 34.67278239893229], [-77.36349006213523, 34.67278818763556], [-77.36330181534521, 34.67261751738781], [-77.36327648462174, 34.67259653839417], [-77.36325244623396, 34.67257587945565], [-77.36304926843697, 34.6724591623618], [-77.362990987543, 34.672422118503405], [-77.36274415066805, 34.67226522563731], [-77.36271396860771, 34.672241171214075], [-77.36267704853762, 34.672215978417604], [-77.36257622612436, 34.67215010730321], [-77.3624948876959, 34.67209306799333], [-77.36244522826667, 34.67205385045206], [-77.36224481162182, 34.67192371501884], [-77.36216287003805, 34.67187701445629], [-77.36203813539703, 34.67181638026101], [-77.36188627176853, 34.671695744101825], [-77.36172838231818, 34.67164111489464], [-77.36166011327477, 34.671624627635715], [-77.36151827544819, 34.67158484161242], [-77.36145458400158, 34.67155352321723], [-77.3612251103953, 34.671440702770774], [-77.36122227563706, 34.67141850864634], [-77.3611994371577, 34.67140165593289], [-77.36112442051112, 34.671390897611225], [-77.36088747348805, 34.67128204935113], [-77.36081624686231, 34.671253185023154], [-77.36072304106966, 34.67121153426598], [-77.36066220575894, 34.671190760477025], [-77.36053664521224, 34.671157928103895], [-77.36038997500827, 34.67109777308154], [-77.36033897912411, 34.67107506431506], [-77.36022116319158, 34.67100659431249], [-77.36013580320818, 34.67094255409017], [-77.3599367388792, 34.6708313498527], [-77.35987618560415, 34.67080610519477], [-77.35966759589482, 34.67067991696243], [-77.35964160167241, 34.67066435334793], [-77.35962171807634, 34.67065191103518], [-77.35944896670767, 34.67054367468346], [-77.35935928492077, 34.670487486597885], [-77.35911525819373, 34.67033500091351], [-77.35907400098122, 34.67031290399044], [-77.35904102968742, 34.67027860932686], [-77.35881409304915, 34.67011878599041], [-77.35882078916006, 34.669986717562196], [-77.35883585926099, 34.66981940871874], [-77.35893623941726, 34.669630535521165], [-77.35897817526353, 34.66948802482537], [-77.3590898314848, 34.6692971301978], [-77.35891314880917, 34.668969338042906], [-77.35888683898617, 34.668880141217905], [-77.3588225758898, 34.66884645921877], [-77.35860123962632, 34.668705805460235], [-77.35841590278255, 34.66862071997479], [-77.35820898678043, 34.668613579717906], [-77.35813277719328, 34.66856530665915], [-77.35793926316396, 34.66848041980781], [-77.35790062699851, 34.66845676694973], [-77.35793529231982, 34.66824423030696], [-77.35794253952082, 34.66823627647543], [-77.35814111819073, 34.66810760753117], [-77.35829158035767, 34.667944632914526], [-77.35841040699626, 34.667670087223485], [-77.35859787567355, 34.66741516747955], [-77.35858274799462, 34.66722270304641], [-77.35855882043917, 34.666933145839195], [-77.35859873540836, 34.66673667205732], [-77.35857915372313, 34.66644296552897], [-77.35856172720045, 34.66637095394374], [-77.35859213613287, 34.665954547172], [-77.35859224128451, 34.66595378077359], [-77.3585923189355, 34.66595319002992], [-77.3585920317465, 34.665951725466755], [-77.35857002028621, 34.66546944617244], [-77.35854922162972, 34.66527825418844], [-77.35854838450143, 34.66519859196907], [-77.35854236931789, 34.665091831461474], [-77.35854508144311, 34.66498548558882], [-77.35851630732814, 34.66482907688426], [-77.35847035445477, 34.66457008096749], [-77.35848479049072, 34.664506381372675], [-77.35846013056393, 34.66447811698302], [-77.35843561896498, 34.66442866968096], [-77.35841089038622, 34.664272840589675], [-77.35840740849326, 34.66419514522537], [-77.35840221875776, 34.66415218523122], [-77.35840434790286, 34.66412685395991], [-77.35841478337093, 34.66402861223318], [-77.35838903200883, 34.66385972894585], [-77.35838371809011, 34.66378918661869], [-77.35839682393325, 34.663738435840074], [-77.35840909982514, 34.66354200574132], [-77.35797671980946, 34.66306642620113], [-77.35774746122519, 34.66309989261241], [-77.3576598935629, 34.663083316792516], [-77.35761672426503, 34.66315338652215], [-77.3574452328705, 34.663124120546044], [-77.35738332857579, 34.662935618927484], [-77.35742664910286, 34.66283296494303], [-77.35756644714856, 34.662618926655206], [-77.3577021543723, 34.66256599047806], [-77.35772394831771, 34.66199785809269], [-77.35772621726296, 34.661947801044064], [-77.35757365010495, 34.66114691454026], [-77.35754552726927, 34.661128614157484], [-77.35714312961966, 34.66085093306636], [-77.35688584050858, 34.6608278762835], [-77.35684999540663, 34.660802159174615], [-77.35665775718715, 34.66066358402448], [-77.3565014642047, 34.660508991837034], [-77.35641966197849, 34.660439270461914], [-77.3562754199381, 34.660272189773906], [-77.35610662211724, 34.66013807203771], [-77.35587547553314, 34.65991566871642], [-77.35541423009523, 34.659879773190575], [-77.35482485750012, 34.65981433135205], [-77.35478600181719, 34.65977611341798], [-77.35475226262899, 34.65977268138578], [-77.35405400780202, 34.65907620446881], [-77.35400097125228, 34.659033680143835], [-77.35395539098221, 34.6589949739531], [-77.35384235767835, 34.65896440957185], [-77.3532547980968, 34.65869581342499], [-77.35299476019034, 34.65872925353001], [-77.35255913712439, 34.65842113754792], [-77.3521783612419, 34.65804897338256], [-77.35175264969848, 34.65770426815572], [-77.35136450016361, 34.65736368831787], [-77.35101384297832, 34.657106180131564], [-77.35087192644197, 34.65698121632114], [-77.35054331718109, 34.656692924130446], [-77.35025259478032, 34.656505276186664], [-77.3501171147496, 34.65638845963081], [-77.34957886211693, 34.656314780777805], [-77.34983411258719, 34.65589100544667], [-77.34982136645822, 34.65585947912993], [-77.34983944044161, 34.65578990062502], [-77.34995508067638, 34.65541911599775], [-77.34967262810355, 34.65521356413042], [-77.34957316841044, 34.655168771088036], [-77.34933039862297, 34.65510397413741], [-77.34931974263708, 34.65509639438683], [-77.34930940623678, 34.65508577846455], [-77.34913102096317, 34.6548958978578], [-77.34894956003765, 34.654713189594275], [-77.34851514341327, 34.65423432596159], [-77.34837892512955, 34.65408840303803], [-77.34823320509221, 34.653967552113286], [-77.3479744002947, 34.653741049991595], [-77.34773376769583, 34.653533082189426], [-77.34755479588216, 34.65342355881624], [-77.34737293458429, 34.653241671609706], [-77.34695005256404, 34.65282013166454], [-77.34679384819003, 34.65263363799262], [-77.34658113674173, 34.6525777381341], [-77.34648934323235, 34.652518988640075], [-77.34633636864254, 34.65239115597385], [-77.34620073196766, 34.65227818572186], [-77.34593930998646, 34.652255862179274], [-77.3458453714162, 34.65221504027037], [-77.34578826798675, 34.652193242025085], [-77.34551831727086, 34.65206898480785], [-77.34535648110824, 34.652034755057244], [-77.34535133223889, 34.652034681784784], [-77.34532689291667, 34.65201783611986], [-77.34516657574305, 34.651911977532926], [-77.34510519197164, 34.651865020858274], [-77.3449597506229, 34.651672002818444], [-77.34480236862115, 34.65169295365706], [-77.34467944938841, 34.651652854951614], [-77.34463402505216, 34.65165188660193], [-77.3445242223186, 34.65160221638302], [-77.34445792340664, 34.651572225527005], [-77.34443535672365, 34.6515620173004], [-77.34438740077094, 34.65154156204622], [-77.3443162481899, 34.651510782168955], [-77.34428258514492, 34.651496360211965], [-77.34419608448461, 34.65146163615148], [-77.34409930253446, 34.65138097246388], [-77.34397969840026, 34.65131594374443], [-77.3437582432034, 34.651277074924785], [-77.34363070212686, 34.65122344036691], [-77.34348066392847, 34.65115575259269], [-77.34340738270365, 34.65112441303032], [-77.34330574940276, 34.65105704827882], [-77.34326669873589, 34.6510052702617], [-77.34312872199874, 34.65087034975274], [-77.34310483316618, 34.650751640259855], [-77.34300262082215, 34.650703584562365], [-77.3428454782568, 34.65048723220927], [-77.34272636559723, 34.650352755077705], [-77.34259552474953, 34.650271121422634], [-77.34237011669228, 34.65013048528877], [-77.3423170011899, 34.6500150447517], [-77.34211067988991, 34.65001649969988], [-77.34189922867877, 34.649992710098495], [-77.34167195352519, 34.650143940171816], [-77.34129313162592, 34.649856314424134], [-77.34125194441079, 34.649827310719786], [-77.34121418417031, 34.64977025857418], [-77.34105582403369, 34.649466888876844], [-77.34097837567847, 34.64922077163527], [-77.340465095302, 34.64914756905773], [-77.34044688837258, 34.64913851202754], [-77.34044062660736, 34.649137246965836], [-77.34042522039498, 34.64913144317091], [-77.3401996647489, 34.64904022516428], [-77.34010073816926, 34.649009204792705], [-77.33995619976793, 34.648984816496395], [-77.34008408401525, 34.64892633318895], [-77.34013539429137, 34.648839781103895], [-77.34015852835066, 34.64883463591235], [-77.34023000906137, 34.64885589007336], [-77.34031033386233, 34.64882113218949], [-77.34043665115702, 34.64908757236347], [-77.34047344764632, 34.64907227028378], [-77.34082007224046, 34.64881170472382], [-77.34103468220042, 34.64887711153311], [-77.34125592319639, 34.648551340854475], [-77.3413551672855, 34.64815981048248], [-77.34142160082182, 34.6480387643314], [-77.34136756465739, 34.64773611181755], [-77.34141780417363, 34.647597351553415], [-77.34149903383245, 34.647443810732135], [-77.34151502094062, 34.64729387481602], [-77.34151543222244, 34.647286612893915], [-77.34152524749264, 34.64713466218839], [-77.34152893661876, 34.646982642784415], [-77.34153397319996, 34.64686927597882], [-77.34153921813486, 34.64681408422932], [-77.34155123641061, 34.6466682566267], [-77.34156489771698, 34.64650443740288], [-77.34156821699888, 34.64644257826674], [-77.34158925113907, 34.64628915853152], [-77.34160203969061, 34.64620549129064], [-77.34162355719278, 34.646012984648436], [-77.34165457338275, 34.64558942571325], [-77.34165501388088, 34.64558770570895], [-77.3416548271964, 34.645586695065234], [-77.34165475347972, 34.64558540184404], [-77.34162136283771, 34.64522267048993], [-77.34163641500115, 34.645167224842616], [-77.34159740088742, 34.64486668000671], [-77.3415752896244, 34.64475361765571], [-77.34155118164635, 34.64464231739224], [-77.3414433683569, 34.64453849004785], [-77.34127229357439, 34.644563169781534], [-77.34110707709173, 34.644458154889655], [-77.34107469108542, 34.64443756962403], [-77.34102009203782, 34.644407827615254], [-77.34085204243951, 34.644304317569336], [-77.34074503250865, 34.644249660928466], [-77.34070996236751, 34.64423939695368], [-77.34062031943856, 34.64418903223842], [-77.340562258877, 34.64404867162332], [-77.34046728219836, 34.64381162233072], [-77.34041325967897, 34.64364712565945], [-77.34036280617991, 34.64355075404009], [-77.34023853030985, 34.643264433722415], [-77.34023235938704, 34.643249958282986], [-77.34022887288529, 34.64324186683831], [-77.34021682950505, 34.64321428764011], [-77.34009465735475, 34.6429335397768], [-77.3399545690149, 34.64266569577633], [-77.33985584090925, 34.64245764298714], [-77.3398141820408, 34.64234073749077], [-77.33970648922411, 34.642267739705076], [-77.3395541307275, 34.64207705636188], [-77.33944041911548, 34.64193263560762], [-77.33928256872636, 34.64175123009363], [-77.33923584761574, 34.64169874389292], [-77.33907701846022, 34.64150402360781], [-77.3388722932653, 34.64130260118779], [-77.33864043123448, 34.64122031058416], [-77.33819914546518, 34.6411389432022], [-77.33805913649128, 34.64122309081769], [-77.33760513524587, 34.641078552449706], [-77.3375682659089, 34.64104685164961], [-77.33753363256035, 34.64101327013704], [-77.33748937917322, 34.64103132245784], [-77.33650403274558, 34.64085768388854], [-77.33622459667995, 34.64087134847058], [-77.33594601280562, 34.64092483534129], [-77.33588039422855, 34.641315233404974], [-77.33578229352618, 34.641439257025056], [-77.33570567795105, 34.64147539202866], [-77.33561051436712, 34.641612508641956], [-77.33553691423134, 34.64162424342754], [-77.33542375615156, 34.641665607748436], [-77.33533512676668, 34.641689019130816], [-77.33519869840848, 34.64171978776412], [-77.33510021380461, 34.64164863640367], [-77.33491457347, 34.641708252767664], [-77.33471885557456, 34.64178088398206], [-77.33450328325537, 34.641864374398764], [-77.33444629190382, 34.6419340059285], [-77.3342964648267, 34.642053781212304], [-77.334063664186, 34.642244712536254], [-77.33392640457514, 34.64217995114653], [-77.33344284403402, 34.64232569111775], [-77.33274360822406, 34.641938409234626], [-77.33258533513275, 34.64187857444277], [-77.3325358904267, 34.6418251492348], [-77.33249619053724, 34.641779563523386], [-77.33250186409803, 34.6417126768776], [-77.33197868882667, 34.640632315620344], [-77.33165132371053, 34.640415960562365], [-77.33150627765276, 34.64022739579016], [-77.33123902960043, 34.639800672709875], [-77.3308808076558, 34.63976731592396], [-77.33073581234108, 34.63964888791354], [-77.33034397197994, 34.63969762424924], [-77.33023224283733, 34.63972590213433], [-77.33011403576316, 34.63973177174059], [-77.3296090851708, 34.639811008841406], [-77.32947311725067, 34.639852539223256], [-77.32915591922188, 34.639922834539576], [-77.32900121757933, 34.63997226592144], [-77.32868859944114, 34.640257516934426], [-77.3284379964838, 34.640355885428185], [-77.32827134050875, 34.64043144502791], [-77.32817773279592, 34.640683971257204], [-77.32796996590955, 34.640817350258246], [-77.32789465346103, 34.64083853083128], [-77.32741068961755, 34.640962407144904], [-77.32728647878287, 34.64099830605032], [-77.32711140849548, 34.641083556269884], [-77.32668769918975, 34.64120488530461], [-77.32619499574798, 34.641161801358514], [-77.32607840489621, 34.641359104825014], [-77.32581351119046, 34.641356776142544], [-77.32547975602385, 34.64105398235537], [-77.32536464467246, 34.64099297662718], [-77.32495083709438, 34.64076864713219], [-77.32468147644468, 34.64077920140782], [-77.32444196024021, 34.64085935372606], [-77.32432098512339, 34.6408674549596], [-77.3240334969459, 34.64074070378438], [-77.32384853945263, 34.6409725135279], [-77.32363716641292, 34.64107305190184], [-77.32345541943971, 34.641050438191535], [-77.32336444154004, 34.641187774963], [-77.32328480653442, 34.64119652787051], [-77.32314390786782, 34.64109335595025], [-77.32304623500015, 34.641094821943994], [-77.3227948210492, 34.64094907510843], [-77.32254517780885, 34.64093873459791], [-77.32219164649177, 34.64113379727677], [-77.32197623558888, 34.641226021756935], [-77.32177775583914, 34.641309751404506], [-77.32158315007725, 34.641292015735914], [-77.32114444428751, 34.64141536809021], [-77.32097433548509, 34.641448658400634], [-77.32090905162805, 34.64156408867463], [-77.32053841104582, 34.64146700318283], [-77.32034493332833, 34.641502730481285], [-77.32015681058714, 34.64152890297228], [-77.31978381680399, 34.641834940062566], [-77.31977472469157, 34.64183944344991], [-77.31977259974107, 34.641841166855684], [-77.31976741065229, 34.64184505876289], [-77.31918266536566, 34.64209191807321], [-77.3189558111786, 34.64240939813669], [-77.31870755508129, 34.64279464178741], [-77.31877598953642, 34.642241440674354], [-77.3187779803256, 34.6419728187155], [-77.31879077532038, 34.641482447875674], [-77.31886491903481, 34.64111692902341], [-77.31890271409169, 34.641024965239154], [-77.3189462707276, 34.64091395067838], [-77.31899133073328, 34.640774026883975], [-77.31907892782169, 34.64066560695544], [-77.31914374254667, 34.64058267562357], [-77.31940127963519, 34.64027443906728], [-77.31945289599871, 34.64024810603188], [-77.31946885337554, 34.64021892407589], [-77.3194692817392, 34.64019011047619], [-77.31959809537341, 34.63988498997837], [-77.31966036762776, 34.63973039024839], [-77.31979951661067, 34.63930086665532], [-77.31960818068944, 34.6390142282138], [-77.31934188155279, 34.63851962721853], [-77.31921308311034, 34.63835175718087], [-77.31906185381547, 34.638299473074], [-77.31882569777693, 34.63797077351228], [-77.31867798396266, 34.637981752053264], [-77.31852857365897, 34.63800580740212], [-77.31837335526757, 34.63805891604339], [-77.31820659373093, 34.63804830208654], [-77.3177514757703, 34.63815034854731], [-77.31752038085361, 34.63825861468667], [-77.31745294899477, 34.638257932041675], [-77.31740674548175, 34.63829277751658], [-77.31719904009715, 34.63832069956453], [-77.3171275906, 34.63823179100967], [-77.31700237987174, 34.63813608332325], [-77.31685353761624, 34.63801674113345], [-77.31664767335866, 34.63769045299089], [-77.31661158598777, 34.637627918490494], [-77.31633149718697, 34.6374549233246], [-77.3161977262567, 34.63743327414324], [-77.31581178762706, 34.63747033754197], [-77.31569581043472, 34.63747751557508], [-77.31517612167363, 34.63754398187099], [-77.31507957204651, 34.63759704993907], [-77.31485389294096, 34.63779728665713], [-77.31417843722548, 34.63794689728935], [-77.313890368768, 34.63805185375364], [-77.31354988009028, 34.63808247861548], [-77.31329545315393, 34.63766040005313], [-77.31342433940415, 34.63724243856848], [-77.31343931779939, 34.63600646786442], [-77.31338962234024, 34.635959561822624], [-77.31263513524479, 34.635302800295094], [-77.31204125240613, 34.63521672645962], [-77.31173974104688, 34.63477960903673], [-77.3115243416617, 34.63452722641878], [-77.31134616139617, 34.634410954617685], [-77.31119692824007, 34.63419897024076], [-77.31098220566115, 34.63398369452116], [-77.31097187352131, 34.633616319060614], [-77.31121278603, 34.63352751069324], [-77.3116687368066, 34.63335943159165], [-77.31191032562195, 34.63329478759243], [-77.31197319546507, 34.63328148601132], [-77.31208583936615, 34.63332209947802], [-77.31231823982571, 34.6334058910908], [-77.3124363399043, 34.633401413874346], [-77.312614842639, 34.633533831545755], [-77.31306055368546, 34.63391505408657], [-77.31336208504374, 34.63386452544583], [-77.31384235606524, 34.63362816750691], [-77.31384387970282, 34.633365406950674], [-77.31410705416835, 34.63274911854646], [-77.31418192232219, 34.63261047595472], [-77.31426310365079, 34.63246398615919], [-77.31435552172907, 34.63239206432398], [-77.31439795104222, 34.63238867260217], [-77.314503105211, 34.63232994280098], [-77.31467435454887, 34.63240305995175], [-77.31467815869483, 34.63240476372735], [-77.3146795045927, 34.63240528119849], [-77.31468142506337, 34.632406655492], [-77.31468610467279, 34.6324140371489], [-77.31486692556149, 34.632803216761644], [-77.31491563749782, 34.633085465911854], [-77.31502066998625, 34.633204130027174], [-77.31555493718201, 34.63358416905533], [-77.31576128519183, 34.633418476717864], [-77.315885407676, 34.6334614658342], [-77.31624120913368, 34.6338138713887], [-77.31633346373002, 34.633722342436855], [-77.31655549347795, 34.63378490514124], [-77.31660503779902, 34.63375870249127], [-77.31659320054514, 34.633832570129925], [-77.31671369464267, 34.634117430240096], [-77.31672693755567, 34.63432056501962], [-77.31672131036753, 34.63465898114035], [-77.31669472574693, 34.63495791282343], [-77.3167927738834, 34.63549315692151], [-77.31691585530707, 34.63601234192707], [-77.31701411518333, 34.63630678956595], [-77.31719653667592, 34.63660443486419], [-77.31748199444915, 34.63680730236668], [-77.31758700411606, 34.6369792988598], [-77.3177035991052, 34.637056254304596], [-77.31806045265753, 34.63718997253862], [-77.31820505021199, 34.63722015235965], [-77.3184408896009, 34.6372564780669], [-77.31853616794666, 34.63727501165073], [-77.318595243331, 34.63727926773652], [-77.31890074306241, 34.63749659907355], [-77.31912635486233, 34.63737584247804], [-77.31923658560167, 34.63733230257372], [-77.31927105108144, 34.6372633778789], [-77.31944944970351, 34.63704055459613], [-77.3195399803017, 34.63694827809996], [-77.31957791512659, 34.636883137547784], [-77.31968327989628, 34.63684756502887], [-77.319731773892, 34.63685226292982], [-77.31994789095172, 34.6368977173157], [-77.32006959220104, 34.636940509747866], [-77.32022324593686, 34.6369190802927], [-77.32048671999726, 34.63697901194114], [-77.32077096215659, 34.637245219327106], [-77.32090616227256, 34.63729655812758], [-77.3214124600479, 34.637251578974706], [-77.32197832124604, 34.63722358832816], [-77.32204952671343, 34.63723585727243], [-77.32208536054503, 34.637258209765186], [-77.32216343507955, 34.63728882947892], [-77.322311748107, 34.63738400495731], [-77.32244399783853, 34.637658539936325], [-77.3221646754668, 34.63767505491245], [-77.32212388279159, 34.63760633318704], [-77.32189381721449, 34.63763726250053], [-77.32176429935541, 34.63769108569399], [-77.32181749468747, 34.63778829963451], [-77.32203901455226, 34.638149864299535], [-77.32225446562983, 34.63825694586817], [-77.32234664946502, 34.6382350094601], [-77.32257499127701, 34.63825899129143], [-77.32283848369912, 34.63804024936362], [-77.32263525982256, 34.63783717979307], [-77.32283281658724, 34.63794865181981], [-77.32282182347852, 34.63734403982883], [-77.32300690505274, 34.63722113215038], [-77.32301206415941, 34.637188031343655], [-77.32310526156101, 34.637159693062486], [-77.32329369363647, 34.637117380222705], [-77.3233056446059, 34.6371146550535], [-77.32331537091989, 34.63711928723592], [-77.32333153145993, 34.63712866750634], [-77.3235388844615, 34.63725077037472], [-77.32367239030597, 34.637346987219935], [-77.32375362332924, 34.63739961963448], [-77.3238935022531, 34.63747359828221], [-77.32404539005766, 34.637610465168194], [-77.32420713261396, 34.63764976262148], [-77.32422257091402, 34.63765125106109], [-77.32438807309335, 34.63772290111617], [-77.32465924879557, 34.637725407429514], [-77.32471079249936, 34.63773588061967], [-77.32475796897702, 34.637707290079874], [-77.32498506691431, 34.63769602320512], [-77.32502303310667, 34.63769665851874], [-77.32507154190752, 34.63766054110959], [-77.32524156187932, 34.637601893140555], [-77.3253296488759, 34.63762941715848], [-77.32540125193665, 34.63758185287051], [-77.32580081805035, 34.637456843272375], [-77.32590377238265, 34.63730013253435], [-77.32603454468193, 34.63717999226246], [-77.32615403642457, 34.63711936544181], [-77.32623558786429, 34.63707828143297], [-77.32650047723963, 34.63708334735138], [-77.32665553163108, 34.636920370982565], [-77.3269908014747, 34.636731285910265], [-77.32706198511934, 34.63669126425862], [-77.32710930982222, 34.636676812839255], [-77.32719833705133, 34.63659839167428], [-77.32735210920629, 34.63654190280864], [-77.32760367025467, 34.636471156363655], [-77.32765380046116, 34.636450159722486], [-77.32774906143814, 34.63637824394894], [-77.32779336264397, 34.63634808920158], [-77.32782435114221, 34.636343580096764], [-77.32793853788247, 34.6362739767021], [-77.32808403235384, 34.63625242672791], [-77.32812547971123, 34.63604923752175], [-77.32819918188581, 34.63597779792259], [-77.32828113180769, 34.63589899915508], [-77.32833330443478, 34.63584864106358], [-77.32835860546994, 34.63584150786455], [-77.32847569859622, 34.6357606832632], [-77.32865807091663, 34.63555419454803], [-77.32869764926048, 34.63549080086213], [-77.32870994574083, 34.6353330488424], [-77.32873887947724, 34.63519563373428], [-77.32891897729085, 34.635096415474564], [-77.3289490798221, 34.63505827208884], [-77.32899088429343, 34.635068041710824], [-77.3293251478359, 34.635208484328736], [-77.32956579663795, 34.63507786179085], [-77.32964006325774, 34.63541949460374], [-77.32988486294795, 34.63559410803695], [-77.33004987872334, 34.63562940411894], [-77.33030787617403, 34.63574987860157], [-77.33035078109376, 34.635819678931995], [-77.33040623004534, 34.63580989781626], [-77.33043621474333, 34.63577977520072], [-77.33063722000719, 34.63582660488685], [-77.3307342311456, 34.6358492011496], [-77.33086005838345, 34.63588512563749], [-77.33089300946435, 34.635894199696025], [-77.33090456732513, 34.635900402572624], [-77.33092039945667, 34.63589828062279], [-77.33106863096705, 34.63592036613191], [-77.33133776583611, 34.63595438316808], [-77.331398262991, 34.63596778601095], [-77.33143335238171, 34.63597245145582], [-77.33160804405058, 34.635993508098], [-77.33169810846698, 34.636022296899576], [-77.33172850032265, 34.636018217463615], [-77.33175902807952, 34.63601412254653], [-77.3320089380355, 34.63598093876942], [-77.33204875654056, 34.63601894476291], [-77.33211470126753, 34.63601260902263], [-77.33236850924092, 34.63601716439152], [-77.33242172427693, 34.63596566331576], [-77.33259662751976, 34.635965462980195], [-77.33267821748996, 34.63596536943373], [-77.33277245818368, 34.63595953597587], [-77.33294916520298, 34.635841536605504], [-77.33296995135144, 34.6358240768244], [-77.33298284626639, 34.6358223478973], [-77.33299293862592, 34.63580350640464], [-77.33316702661803, 34.63566068588567], [-77.33322309294067, 34.635490628576676], [-77.33358899123158, 34.634877737644594], [-77.33352439221545, 34.634659787326214], [-77.33366728328143, 34.6345145989509], [-77.33376210906005, 34.63454812330324], [-77.33370644840942, 34.63443962799549], [-77.3337856082183, 34.63430683351191], [-77.33387563694177, 34.634416413613934], [-77.33387773595516, 34.634577274369136], [-77.33387361232019, 34.63465224930232], [-77.33387619504573, 34.63483833085792], [-77.33388356783072, 34.63499519872803], [-77.3339893982867, 34.63550414397639], [-77.33406091391788, 34.63565697310669], [-77.33432841008609, 34.635980949366214], [-77.33463731119812, 34.63615670188227], [-77.33488315714501, 34.63592863167359], [-77.33491199975292, 34.63593055878074], [-77.3349330200919, 34.63593196320024], [-77.33506701412615, 34.6359409155559], [-77.33507439291049, 34.635942197385496], [-77.33507557535792, 34.63594148754365], [-77.33521153415509, 34.63595456728917], [-77.33524054416728, 34.63597254518814], [-77.33539499541347, 34.636072936044116], [-77.33543203078472, 34.63609202893937], [-77.33543639287355, 34.63611159258669], [-77.33543531220326, 34.63631237197543], [-77.33542795641502, 34.63643736094374], [-77.33557235813609, 34.63696218795815], [-77.3360074692342, 34.6370778478521], [-77.33606226574848, 34.637140287171775], [-77.3361213987018, 34.63717047228744], [-77.33622033667143, 34.63717726374891], [-77.3365257807697, 34.6373706387502], [-77.33685602117724, 34.63764033987131], [-77.33693808866872, 34.637702371283545], [-77.33712775511123, 34.637768101442354], [-77.33718447428939, 34.63778859028337], [-77.33721097749084, 34.6378137578338], [-77.33741612760133, 34.63790397563605], [-77.3375463229437, 34.63788954951724], [-77.33771492985673, 34.637905547264396], [-77.33799088950508, 34.63791408938894], [-77.33823447813157, 34.638128048335176], [-77.33839770180728, 34.638256713619626], [-77.33862450216321, 34.638406678676546], [-77.33883192982688, 34.638545064059606], [-77.33897466958759, 34.63862552150453], [-77.33907168300107, 34.638505088009325], [-77.33923964182377, 34.63835103249355], [-77.33926187638275, 34.638319200105144], [-77.33938134175341, 34.63812695117425], [-77.33951215856516, 34.63811409874441], [-77.33957326663368, 34.63797251880425], [-77.33976680223334, 34.637827900379776], [-77.3397715863415, 34.63782405777514], [-77.33977833034753, 34.63781937285738], [-77.34005897548113, 34.63764912960862], [-77.34024692175409, 34.63760061298521], [-77.34035573573433, 34.63753287408599], [-77.34044045596826, 34.637447685090535], [-77.34060297114206, 34.6373347231184], [-77.34063335027368, 34.637321338818026], [-77.34065320563086, 34.637312698233146], [-77.34066978411326, 34.6372819594909], [-77.3409041029369, 34.637075659399386], [-77.341046319415, 34.63701248731742], [-77.3411780568165, 34.63684591949878], [-77.34119262704145, 34.636815466906], [-77.34121926980521, 34.63678453568655], [-77.3413519030325, 34.636630554195335], [-77.34162687896779, 34.63630658465934], [-77.34166428652763, 34.63625497201469], [-77.34169187045337, 34.636216789319846], [-77.34180856949781, 34.63605606281326], [-77.34187182494401, 34.635970484898195], [-77.3419444077874, 34.6358804932282], [-77.34197148257327, 34.635874548105676], [-77.34218955839768, 34.63550744581254], [-77.34222076651616, 34.63544005520984], [-77.34222580631314, 34.635380370126306], [-77.34227799357748, 34.63516623358505], [-77.34233564166601, 34.63494329381619], [-77.34231948475374, 34.63486498509783], [-77.34229963312367, 34.63452623873128], [-77.34216924426528, 34.63423342620527], [-77.34201053720733, 34.63390928369034], [-77.34198767518592, 34.63372506876714], [-77.3419310398352, 34.63355696238035], [-77.34186166511809, 34.633103037864586], [-77.34193473270467, 34.63288834082447], [-77.34192526118443, 34.63242026947627], [-77.34196423864783, 34.63204029446409], [-77.34138296372471, 34.6314932409765], [-77.34128917692841, 34.63138356154265], [-77.34115228879361, 34.63130776275816], [-77.34098531182796, 34.63110723611303], [-77.34087306556087, 34.63105940664516], [-77.34085005499864, 34.63092725437721], [-77.34080562547877, 34.630782482729614], [-77.34074800175158, 34.6305192659314], [-77.34067846982188, 34.63029662848624], [-77.34050422534744, 34.63030592602241], [-77.34020522421648, 34.63008561992392], [-77.34004259013889, 34.63006998634168], [-77.33982717632361, 34.63012241759081], [-77.3395818763071, 34.63030704348397], [-77.33946819706216, 34.630396917480226], [-77.3392644755578, 34.630508093404394], [-77.33911761258501, 34.630540786619605], [-77.33911278384629, 34.63054967844207], [-77.33910578662342, 34.63054047658534], [-77.33910469616956, 34.63052872542034], [-77.3391127180473, 34.630321739060584], [-77.33912820814355, 34.62992205381656], [-77.33912916034991, 34.62989748567238], [-77.33912435025002, 34.62981057936988], [-77.33909535013942, 34.62918546129207], [-77.33911525132203, 34.62905540139392], [-77.33908686482846, 34.62885586126906], [-77.33889349765218, 34.628661413280554], [-77.33874563745076, 34.62838346692716], [-77.33828322564307, 34.62842708441879], [-77.33820804608501, 34.62843598442193], [-77.3381453456971, 34.62842403460003], [-77.33788374407243, 34.62841498165131], [-77.33781015422889, 34.62839054172128], [-77.33766085100808, 34.62823531999629], [-77.3376173469293, 34.627805259435824], [-77.33765208819536, 34.627568244209456], [-77.33772674035951, 34.62724013643852], [-77.33768729945169, 34.62703493985573], [-77.33726260422685, 34.626806697114105], [-77.33723758684327, 34.626791608736085], [-77.33722860141371, 34.62679516439091], [-77.33690487873073, 34.62682680573003], [-77.33721001259467, 34.626757583325016], [-77.33693124555529, 34.62640119175267], [-77.33712305773749, 34.62622140345993], [-77.33729023872245, 34.62616521957888], [-77.33765719082933, 34.62594654583594], [-77.33770506206452, 34.62593193040622], [-77.33780513149856, 34.62597878229812], [-77.33815304623144, 34.62611273864458], [-77.33847955560917, 34.62660075421531], [-77.33849705843545, 34.62660827603914], [-77.33894713146312, 34.62683644794482], [-77.339176009399, 34.62688102446291], [-77.33940655490596, 34.62680699802273], [-77.33952982612875, 34.626830699666286], [-77.33984445859896, 34.62702186876249], [-77.34008482865752, 34.62687977891588], [-77.34044256242635, 34.62681254418079], [-77.34060149149698, 34.626588328275275], [-77.34067707695563, 34.62638664719851], [-77.34093985791132, 34.62633474623799], [-77.34086328099603, 34.626832789064416], [-77.34074909189606, 34.627143136992544], [-77.34064996843668, 34.627844928149905], [-77.34052427971801, 34.627850743067725], [-77.3406352528295, 34.628086017423165], [-77.34070299832075, 34.62810888491427], [-77.3410431221275, 34.62833523121454], [-77.34144040372945, 34.62859287165243], [-77.34151952750753, 34.628631197307165], [-77.3415584202786, 34.62872002321642], [-77.34161936785836, 34.628873314972424], [-77.34178857869728, 34.62911042435337], [-77.34171409566525, 34.6293940329373], [-77.3416958197428, 34.62954515648869], [-77.34200595958978, 34.62981459077099], [-77.34205594797857, 34.62986522359272], [-77.34228725190391, 34.62983057575779], [-77.34232518119452, 34.62981026960714], [-77.34256023547233, 34.62975184905962], [-77.34276344834988, 34.629612350768994], [-77.34291064163425, 34.62953794725486], [-77.34318620301921, 34.62976254194769], [-77.34323611383259, 34.6298245061626], [-77.34344789265356, 34.630148611430684], [-77.34380130922484, 34.630784484478845], [-77.34384989593244, 34.63090539154034], [-77.34387665620395, 34.63093374095141], [-77.34392943589201, 34.63103029025603], [-77.34409686845449, 34.63156450055618], [-77.34407878357773, 34.631749986835636], [-77.34410973864695, 34.63186586527977], [-77.34425228872, 34.63240491686456], [-77.34470887071015, 34.63242525708412], [-77.34477353989614, 34.632436731730046], [-77.3448153006616, 34.632438191307095], [-77.3453563389227, 34.63236254887988], [-77.34539493413888, 34.632343147956625], [-77.34551508679982, 34.63220060181472], [-77.34592034107375, 34.63177197651389], [-77.34603513593112, 34.631661873853645], [-77.3461016889772, 34.63147222396019], [-77.34638609915656, 34.630904056347376], [-77.34642770000309, 34.63069396814703], [-77.3466404621547, 34.63057700826576], [-77.34664803932846, 34.63056608337061], [-77.34666909345353, 34.63055030787625], [-77.34685278031704, 34.63042363472695], [-77.34692208489689, 34.63038559549042], [-77.34708774360983, 34.63023433736018], [-77.34719265324642, 34.630139189791706], [-77.34722844301275, 34.63010716445741], [-77.34728178158885, 34.63004416927808], [-77.34744994313573, 34.629826727030334], [-77.34753537477619, 34.62972652506952], [-77.34765105304893, 34.62957145591449], [-77.34782060851825, 34.62932562974033], [-77.34794944787343, 34.62912682587235], [-77.34811079611887, 34.62892936155473], [-77.3483365584473, 34.62863330941622], [-77.34840745415079, 34.62853913647212], [-77.3484630047973, 34.62849687744659], [-77.34861214092697, 34.628363492712914], [-77.34873508633873, 34.62825805002464], [-77.34880663942783, 34.62824463642216], [-77.3490173063069, 34.62806966534109], [-77.34918322491315, 34.627929037803185], [-77.34929578001089, 34.6276575630161], [-77.34917076280493, 34.62725707032152], [-77.34916776726521, 34.627247415749586], [-77.34917051728995, 34.627239481174186], [-77.3491794725671, 34.627239819228244], [-77.34945492635408, 34.62706200776395], [-77.3495129562405, 34.626902508219175], [-77.34974227838939, 34.62689918412152], [-77.34994334358706, 34.62687516215458], [-77.35005094068939, 34.62684237696742], [-77.35013852250599, 34.62681937258246], [-77.35033140165832, 34.62667131268205], [-77.35054119974284, 34.6265281410037], [-77.35060017535322, 34.62639004751882], [-77.35107874733549, 34.62577456470912], [-77.3511103948107, 34.62574366838495], [-77.35111638432377, 34.625730790959004], [-77.3511271480265, 34.62571800250015], [-77.35162193257496, 34.625103880086606], [-77.35176689736909, 34.625003774793086], [-77.3518155121917, 34.624779436071584], [-77.35187671559137, 34.62443913350634], [-77.35207474635742, 34.624172019528224], [-77.3522144392725, 34.62408726952802], [-77.35296198481976, 34.623777927686], [-77.35317780694982, 34.62365235760669], [-77.35326753948566, 34.62342760523352], [-77.35348924847519, 34.62346527295076], [-77.3542141828105, 34.622920720083066], [-77.3548448274858, 34.62275774092167], [-77.3554551736639, 34.622380118183116], [-77.35563363381041, 34.622096539076495], [-77.35600293947832, 34.62164423779335], [-77.35619577256949, 34.621372366782595], [-77.35638753161358, 34.620777753731595], [-77.35640739366868, 34.62073694699796], [-77.35641232771458, 34.62072496218282], [-77.35642281359202, 34.620693260078276], [-77.35653085838291, 34.62060287515447], [-77.3569033393515, 34.62033378862148], [-77.35721148462828, 34.62023514985609], [-77.35765376088492, 34.61970851424787], [-77.35786484435305, 34.61953229419297], [-77.35794789862854, 34.61924164007684], [-77.35800043985623, 34.61919324887276], [-77.35827186619919, 34.61906271798924], [-77.35833347146382, 34.61876160720183], [-77.35836330774711, 34.618723306253436], [-77.35839490448069, 34.618683924108204], [-77.35845932772968, 34.618600558628856], [-77.35854292903377, 34.61857210852456], [-77.35859206002559, 34.61858055635085], [-77.358647652451, 34.61856398444641], [-77.35878915468041, 34.618599615475425], [-77.35889725063949, 34.618564082384765], [-77.35943009701617, 34.6184448957428], [-77.35957767273479, 34.61838910376192], [-77.35977968335106, 34.61812894264713], [-77.35980070791703, 34.61794133613729], [-77.35978806297527, 34.61770318436768], [-77.35972881169457, 34.617549374090736], [-77.35957814096948, 34.617422285188866], [-77.35954379937506, 34.617350806502714], [-77.35949668925927, 34.617320563094054], [-77.35945879107015, 34.617030208075434], [-77.35918409872687, 34.61709493618162], [-77.35890016532602, 34.61698185352415], [-77.35884489088203, 34.61693066766349], [-77.35879000912846, 34.61686960104893], [-77.35844293250929, 34.61662309784241], [-77.35844417463433, 34.61657098975397], [-77.35839596099714, 34.61656541731143], [-77.3582123782459, 34.61642951443477], [-77.35819893001434, 34.61642924080161], [-77.35802456753255, 34.616258747907196], [-77.35802366553436, 34.61623546703135], [-77.35800193948441, 34.61621415463377], [-77.35778622845515, 34.61586849213754], [-77.3577743377272, 34.615691064711356], [-77.3576664974805, 34.61546116887493], [-77.35744268185323, 34.615247126293596], [-77.35721404631897, 34.615239817391945], [-77.35696646589031, 34.6151373464873], [-77.35721420328227, 34.61493485191832], [-77.35741408894354, 34.61486362760439], [-77.3576113513814, 34.61462000143666], [-77.35782264992332, 34.61439550668474], [-77.3580028923522, 34.61432772522089], [-77.35836335131523, 34.61405076248987], [-77.35846839467341, 34.613995494473336], [-77.35879145008771, 34.61396165271323], [-77.35883483935568, 34.614019390627185], [-77.35896982269256, 34.61423225951408], [-77.35913906698497, 34.614400161738224], [-77.35927696631853, 34.61470611025679], [-77.35957939005456, 34.614849887068786], [-77.35979994053181, 34.614542433290104], [-77.36004491040421, 34.614617649193676], [-77.36036788758382, 34.61460422163579], [-77.36074590037472, 34.6145760321885], [-77.36076208959675, 34.61457648660927], [-77.36077694787757, 34.61457299923671], [-77.36099734090915, 34.614557280804945], [-77.36115628609747, 34.61455982361495], [-77.36116863893807, 34.61454592446226], [-77.361290683192, 34.61451506172851], [-77.36153133402652, 34.614459760738455], [-77.36155052355144, 34.61445420747128], [-77.36157442510205, 34.614448483721766], [-77.3619446724783, 34.61453952495202], [-77.36230669795242, 34.614403533517354], [-77.3623389249426, 34.614397951396725], [-77.36235974378928, 34.61438360734721], [-77.36239505404063, 34.61435610931552], [-77.3627332615461, 34.61406604144174], [-77.36284191455451, 34.61398421927798], [-77.36294803697564, 34.61385195976106], [-77.362850683825, 34.613739661525074], [-77.36279248837472, 34.61344979578659], [-77.36276782149588, 34.61341643794565], [-77.362733576017, 34.613366253483505], [-77.36267752703922, 34.61325406627353], [-77.36268584827178, 34.613092129474275], [-77.36270032452593, 34.61303850780413], [-77.36270927989597, 34.613010878388565], [-77.36273375659462, 34.61296477768897], [-77.36278341719976, 34.612867710650164], [-77.36281616982939, 34.6128095560237], [-77.36286181114306, 34.61272851683686], [-77.3629462707481, 34.61257855194613], [-77.36301859814, 34.612450129138196], [-77.3630763710936, 34.61234754799417], [-77.36312825648946, 34.6122481966171], [-77.36317111769887, 34.61216775838065], [-77.36319722327882, 34.61211787490925], [-77.36330494696088, 34.61191222207753], [-77.36332052487924, 34.611882482676265], [-77.36343774530721, 34.61165869829402], [-77.36352282489048, 34.61136177022313], [-77.36356326980139, 34.611259588566064], [-77.36359080721579, 34.61121211085175], [-77.36366129383362, 34.61105296835318], [-77.36381294921608, 34.610643170812565], [-77.3640591571202, 34.610295581305884], [-77.36418192041418, 34.610138123447946], [-77.3643117656191, 34.609986760360435], [-77.36454078668095, 34.609623647027846], [-77.36471505485596, 34.60935204983009], [-77.36493670679802, 34.60914376550307], [-77.36505531761001, 34.60887851005128], [-77.36510059855706, 34.60880656530764], [-77.36525505170816, 34.60859146535619], [-77.36544118588446, 34.60845626556316], [-77.3654949166086, 34.60843146460006], [-77.36555070255086, 34.60838263557088], [-77.36576882844989, 34.608221617169235], [-77.36588923423912, 34.608049020462744], [-77.36618587410469, 34.60776146688876], [-77.36657857897913, 34.60738553590737], [-77.36663799392808, 34.607334063747544], [-77.36667784975448, 34.60730584382686], [-77.36683074807212, 34.60718458873045], [-77.36707212638737, 34.60699865353661], [-77.36713610309555, 34.60694959708403], [-77.36733247325245, 34.60685243196673], [-77.36746635805626, 34.60679722777185], [-77.36772909607373, 34.60665371151677], [-77.36818656122432, 34.60637842139724], [-77.36825482990709, 34.606357406421985], [-77.36828486450477, 34.606323077289595], [-77.36839697991442, 34.60627459566527], [-77.36864905260349, 34.60616366725953], [-77.3689494907302, 34.60609406698723], [-77.36904324015866, 34.60605765462732], [-77.3692500273655, 34.605929066586], [-77.36958189797267, 34.60583497970544], [-77.36958805711376, 34.605678521508125], [-77.36983176185609, 34.60544068095271], [-77.369937866504, 34.60531783157274], [-77.37009861934122, 34.605180437946274], [-77.37022603878222, 34.60507618607978], [-77.3704474675805, 34.60494410556782], [-77.37062034063285, 34.60463334350433], [-77.37080984600235, 34.60443294698376], [-77.37104051582523, 34.6041956723912], [-77.37114580349586, 34.60389712704247], [-77.37116801585883, 34.60358776559977], [-77.37092919774359, 34.60336258745381], [-77.37062096172937, 34.60291669582671], [-77.37037727425329, 34.60317967840917], [-77.37017434136192, 34.60310320902639], [-77.36983272856527, 34.60283513720152], [-77.36947548719058, 34.60310753734925], [-77.36939567889192, 34.6031127602308], [-77.36904437721778, 34.60306684987776], [-77.36865725509877, 34.603272853218456], [-77.3686408345998, 34.60327762890696], [-77.36825612021175, 34.60304503619478], [-77.36821218808531, 34.60295211052407], [-77.3680912914908, 34.60292215676236], [-77.36787589476512, 34.60251385874929], [-77.36746805106895, 34.60255435493385], [-77.36697382647652, 34.60255068281357], [-77.36667977357314, 34.6025939142185], [-77.36652973574519, 34.602459571997386], [-77.36636050624878, 34.60232226010606], [-77.36608482343334, 34.602153916572675], [-77.36589177171071, 34.60197409998821], [-77.36575393481209, 34.60170908049258], [-77.36569543876192, 34.601568905554146], [-77.36547519950366, 34.60120059070378], [-77.3654033891593, 34.601084459375066], [-77.3652805699248, 34.60077952631369], [-77.36549831607348, 34.60039205419455], [-77.36554391928748, 34.600366167057196], [-77.36589260454498, 34.5999936633401], [-77.36602840076179, 34.59996901317562], [-77.36726505995998, 34.5996446751846], [-77.36745220856093, 34.59959938314618], [-77.3674692400773, 34.59959327372495], [-77.36748089521438, 34.59960103816975], [-77.36793738178307, 34.59954786149318], [-77.36899829103388, 34.59944622457394], [-77.36904576578642, 34.59943666514319], [-77.36907185740145, 34.59941259013116], [-77.36955759075849, 34.59961222574849], [-77.36976328646288, 34.60005811295886], [-77.3697102279993, 34.600141675164984], [-77.36971202878733, 34.60027246535773], [-77.36983369233616, 34.60025025986379], [-77.37000736730037, 34.60094799846363], [-77.37024573648513, 34.6013184943287], [-77.37033053679656, 34.60143714351275], [-77.37047018580105, 34.60173046115305], [-77.37045131156458, 34.60191631882448], [-77.37062132501887, 34.601915144833356], [-77.37077517978193, 34.60211109426777], [-77.37078611478125, 34.60235639201579], [-77.37119353097962, 34.60224279652765], [-77.37140944347077, 34.602297741560015], [-77.37152667921315, 34.60230112958661], [-77.37180359206485, 34.60224016644845], [-77.37218074589924, 34.60233321375729], [-77.37218091159687, 34.60235125506099], [-77.37219767789196, 34.60236332647499], [-77.37222506207587, 34.60235632656451], [-77.3727058545146, 34.60255921364228], [-77.37298586989638, 34.602558663168935], [-77.37322567035243, 34.602440978264134], [-77.37330973192302, 34.60217059715526], [-77.37338014403393, 34.602119880804835], [-77.37352750123898, 34.601980542689176], [-77.37357726756791, 34.601937109917486], [-77.3735857232905, 34.601927667759895], [-77.37361320839045, 34.60191460332334], [-77.37377436158292, 34.601842437789735], [-77.37387111982522, 34.601769376234024], [-77.37401174206073, 34.601644915455246], [-77.37410642539741, 34.601564325371825], [-77.37416859774413, 34.60149877489981], [-77.37434476239781, 34.601362105419255], [-77.37453934705542, 34.60114435286611], [-77.37454961952983, 34.60112863260814], [-77.37456284261444, 34.601117269422296], [-77.37461487131065, 34.60107743957939], [-77.37495705388348, 34.60083207871995], [-77.3751135868226, 34.60080568240264], [-77.37522056911861, 34.60033795300605], [-77.37524573964627, 34.600193469904355], [-77.37499479419864, 34.599845382236765], [-77.37495454779987, 34.59896506219853], [-77.37456362036761, 34.59866595657974], [-77.37453324264958, 34.59863060596977], [-77.37451238949711, 34.59860087322391], [-77.37421770976644, 34.59816700922154], [-77.37394821077335, 34.59783302511376], [-77.37377572682885, 34.59766533079127], [-77.37355744662707, 34.597275481314774], [-77.37357075389147, 34.59703827830671], [-77.3735784772872, 34.59682437305963], [-77.37363167791845, 34.59618038207098], [-77.37377642638155, 34.59553952262699], [-77.37396691455154, 34.5954881630502], [-77.37406391311914, 34.59526899573847], [-77.37456489411463, 34.594680222712725], [-77.37484277809021, 34.59460701372302], [-77.37495901323504, 34.59459401829465], [-77.37499250986929, 34.594674546357346], [-77.3749980096606, 34.594751933124336], [-77.3747933125366, 34.59516391804698], [-77.37489864249585, 34.595637984031214], [-77.37520004531999, 34.59595444384027], [-77.37535263629246, 34.596099827109775], [-77.37549448559827, 34.59660816228705], [-77.3761407159981, 34.5964891046122], [-77.37626934968984, 34.596510927567586], [-77.37653480724533, 34.59651906350354], [-77.37683656339311, 34.596468291084435], [-77.37692893657731, 34.59641919600698], [-77.37725704923477, 34.59615381237871], [-77.37750999888893, 34.59647075858131], [-77.377080119721, 34.596695652144305], [-77.37692880296144, 34.59687794324768], [-77.37689909442503, 34.59695135983144], [-77.376864500053, 34.596988325779], [-77.37667082616792, 34.597162965910115], [-77.37637513817313, 34.5974833925762], [-77.37646322684043, 34.597818564890495], [-77.37647476309499, 34.597957826821094], [-77.37681851140712, 34.598268636734694], [-77.37687655051776, 34.59831611445081], [-77.37674623523108, 34.59870361188367], [-77.37669696943794, 34.598886153545955], [-77.37650194954976, 34.59916336834997], [-77.37692792342293, 34.599911183809496], [-77.37693542110348, 34.59994195346147], [-77.3769442056793, 34.59994877434667], [-77.37771603225053, 34.600353408708514], [-77.3779376603785, 34.600415994081544], [-77.37811013848008, 34.60039656076657], [-77.37828154757027, 34.60042055569328], [-77.37830719009816, 34.60042413165403], [-77.37837345289778, 34.60045107813668], [-77.37850422332666, 34.600520407431816], [-77.37853350408855, 34.600537361125006], [-77.37862278297831, 34.60055604457974], [-77.37882279209748, 34.60060858579606], [-77.37889830349863, 34.60066615270122], [-77.3790764432292, 34.60072332201342], [-77.37929241770368, 34.60068599784994], [-77.37942680905485, 34.60071997125214], [-77.37948947037741, 34.60071322507477], [-77.37960389317894, 34.60075022590201], [-77.37968651213667, 34.60078371515109], [-77.37971220483489, 34.60079594769072], [-77.37980541013027, 34.60081019765173], [-77.38008059398177, 34.60093520633], [-77.3801853600252, 34.600868287098365], [-77.38033234917825, 34.60088763956745], [-77.38047472012752, 34.600911770411734], [-77.38056770249722, 34.60091263136974], [-77.38065766186315, 34.60091487584245], [-77.38067177797177, 34.6009211200467], [-77.38069480480094, 34.600919120135565], [-77.38086883438882, 34.600936550392404], [-77.38098255274355, 34.60094262568724], [-77.38126294939497, 34.60095876155323], [-77.38165413098244, 34.60096518401627], [-77.38165706859834, 34.60096340123728], [-77.38167410301149, 34.60094712360503], [-77.38185417156829, 34.60077637904], [-77.38190306345138, 34.6007728586018], [-77.38205125762688, 34.60066006526739], [-77.38215707638575, 34.60058527574949], [-77.38219044134377, 34.600466492204056], [-77.38224837802315, 34.60038829428691], [-77.38234242294125, 34.60034328915061], [-77.38236314427586, 34.60044160216547], [-77.38239476189308, 34.600491610140246], [-77.38244540835359, 34.60051598164603], [-77.38252636088012, 34.60075537986255], [-77.38262395996347, 34.60082857738417], [-77.38283942438485, 34.60098498106707], [-77.38294556848919, 34.60109242170222], [-77.3832334762279, 34.60130664641591], [-77.38358959728684, 34.601154937685166], [-77.38362762961158, 34.6011529889087], [-77.38365332575624, 34.601132459415645], [-77.38390018022356, 34.601200153733956], [-77.38402174065624, 34.60120077773541], [-77.38420746555288, 34.60122498952465], [-77.38422532793635, 34.60122758408608], [-77.38441584057115, 34.601306726214], [-77.38473038107942, 34.60128837401118], [-77.3848099661728, 34.60128453180892], [-77.3849389984831, 34.60120505203785], [-77.385204108924, 34.60116994096698], [-77.38539116833869, 34.6010557791061], [-77.38540119317919, 34.60104114099438], [-77.38542650959567, 34.60103421030788], [-77.38559825282094, 34.60104285385487], [-77.38572129618159, 34.601098711653776], [-77.38585717355869, 34.60121168475803], [-77.3859488577181, 34.601245305823014], [-77.38599233676577, 34.601243032403374], [-77.3861572904333, 34.601346138663644], [-77.38619353624965, 34.60137099783944], [-77.38638641806082, 34.60146912593573], [-77.38676448948107, 34.60148817206914], [-77.38678053604534, 34.601490972165614], [-77.38679103057896, 34.60149032752315], [-77.3868413404615, 34.60149438006991], [-77.38717462844699, 34.6016690664038], [-77.3873375151644, 34.60167194831806], [-77.38772702355382, 34.60153717441228], [-77.38796289586534, 34.60152402020325], [-77.3880851233484, 34.60144672910141], [-77.3882782095327, 34.60137215587761], [-77.38835704360488, 34.60135073068517], [-77.38844571447024, 34.601358608100455], [-77.38865371202833, 34.60133808112956], [-77.38875116305695, 34.601359706819125], [-77.38897800444612, 34.601366544106035], [-77.38937477061025, 34.601376356396415], [-77.38953940293898, 34.601370695736634], [-77.38969623219347, 34.60133841724667], [-77.39010708837458, 34.601448119186955], [-77.39032762196172, 34.6015449318785], [-77.39076346723402, 34.60173307124999], [-77.39111583768535, 34.60177326504527], [-77.39185384335877, 34.601991294115415], [-77.39190405587819, 34.602015449340804], [-77.39191549907369, 34.60202416982104], [-77.3926923121935, 34.60191371163149], [-77.39271051088664, 34.60190225122226], [-77.39308645516346, 34.601695883465965], [-77.3932287952345, 34.601575868063435], [-77.39334979185047, 34.60154599728291], [-77.39348058708205, 34.60157836415083], [-77.39382477890214, 34.60139039706121], [-77.39387472437093, 34.6013831661611], [-77.39391562537236, 34.60136755168959], [-77.39397495097052, 34.601314936202236], [-77.39407179265638, 34.6012812663424], [-77.39409732783074, 34.60126978003162], [-77.39424490528178, 34.601250203567446], [-77.39426885460405, 34.60125262637911], [-77.39430612078843, 34.60122703151299], [-77.39457179893334, 34.60113062864393], [-77.39466298306488, 34.60112857283908], [-77.39486344899399, 34.60097085120026], [-77.39505711879156, 34.600883957605824], [-77.39513589904446, 34.600807791032096], [-77.39518548567611, 34.600715777286965], [-77.39525419196923, 34.600670853718576], [-77.39540761862152, 34.60063673342449], [-77.39545125337159, 34.6006209927209], [-77.3957849228275, 34.60056419774842], [-77.39584537345773, 34.600553172547365], [-77.39604500101308, 34.60037676296436], [-77.39635579072305, 34.60024767782198], [-77.39657387960933, 34.600090949782], [-77.39663362963196, 34.60006895947149], [-77.39668790977694, 34.60001602949149], [-77.39688756617151, 34.59989468322213], [-77.3970277537561, 34.599837294064535], [-77.39726402337142, 34.59973687362777], [-77.39742187269805, 34.59967412735455], [-77.39749799713647, 34.59961508245035], [-77.39770470105537, 34.5995032593431], [-77.39810926680515, 34.59933626546044], [-77.39821010622026, 34.5993334908217], [-77.39832827062729, 34.599286009777984], [-77.3987733218793, 34.59910670182237], [-77.3989983330058, 34.59899733273167], [-77.3993592953304, 34.59887570572333], [-77.39939244302869, 34.59887038079576], [-77.39941079480013, 34.59885233625582], [-77.39944491196422, 34.59882764414478], [-77.39978655587844, 34.59848407701316], [-77.39986884455693, 34.59843055919894], [-77.39998283378587, 34.59832546389015], [-77.39999589426306, 34.59809806212105], [-77.4000740640758, 34.597887728257604], [-77.40010598397954, 34.597802663941714], [-77.40009310115536, 34.597672694823785], [-77.40018067174745, 34.59751290113524], [-77.40020428773511, 34.59746980795579], [-77.40023455042083, 34.59744000020882], [-77.40037772353146, 34.597337518897504], [-77.40046032233562, 34.597284124807246], [-77.40057477415638, 34.59721059625769], [-77.40089742784315, 34.59699675682913], [-77.40096887350572, 34.59697457398162], [-77.40099982242079, 34.596938355006166], [-77.40103346186994, 34.596900159164605], [-77.40136297005768, 34.59646128433687], [-77.40137942912727, 34.59644339877504], [-77.40138483955363, 34.59642488608322], [-77.40156001658107, 34.59621114402566], [-77.40157054924461, 34.59619715043572], [-77.40157870465586, 34.5961846263329], [-77.40161651504468, 34.596118301793865], [-77.40171289334096, 34.595952976849176], [-77.40173152795418, 34.59592277922772], [-77.40175706145894, 34.5958798851086], [-77.40198594354999, 34.59548900294642], [-77.40205823699613, 34.59537847261028], [-77.40215114625448, 34.59517540005179], [-77.40227311349186, 34.59502299079681], [-77.40229098541892, 34.594869751019246], [-77.40233023787252, 34.59478312406986], [-77.40234818524833, 34.594742738929625], [-77.4023973847306, 34.59463349107621], [-77.40243373993307, 34.59457523777607], [-77.40248327244211, 34.594501344421275], [-77.4025452239957, 34.59442474386999], [-77.40271526346183, 34.59429323636624], [-77.40283029882036, 34.5942108791335], [-77.40293930458336, 34.59418310257685], [-77.40312431230043, 34.59405101165627], [-77.40324890940812, 34.59394202169137], [-77.4034443940631, 34.59358024570405], [-77.4035576714597, 34.592897648769245], [-77.40365652775311, 34.59270048155625], [-77.40352034609663, 34.592497027162324], [-77.40341101382454, 34.59231133597074], [-77.40337814363491, 34.592267812686906], [-77.40334334266255, 34.592108813756795], [-77.40334006261799, 34.59210204480802], [-77.40333333984647, 34.59206711249738], [-77.40330735414534, 34.59192971304897], [-77.40330196371535, 34.59190249720139], [-77.40330126285404, 34.59151256925917], [-77.40329163424869, 34.591434492958605], [-77.4032906267217, 34.59105498176803], [-77.40326589168357, 34.5907066131631], [-77.40325704615339, 34.59055308675521], [-77.40327143352886, 34.59020860005085], [-77.40333329649414, 34.59005217313637], [-77.40341298457332, 34.58984945963709], [-77.40351994256004, 34.58974816132272], [-77.4037273461779, 34.589470767975754], [-77.40383286373367, 34.58939211648722], [-77.40393063535029, 34.58926431569291], [-77.40383331588764, 34.589164176173824], [-77.40372733525138, 34.58903249332103], [-77.40367675864246, 34.58887637871932], [-77.4036624899624, 34.588808576661506], [-77.40362132208526, 34.588672091135585], [-77.40361401490733, 34.58858294226103], [-77.40360703978136, 34.58846186422115], [-77.40360510261871, 34.58833046241292], [-77.40368973745595, 34.588025353710265], [-77.40372730833005, 34.58792784718934], [-77.40381470917427, 34.587676919243506], [-77.40386911367288, 34.587574890352954], [-77.4039041760792, 34.587379247008094], [-77.40400055689281, 34.58713134436203], [-77.40403204524681, 34.58703059052252], [-77.40412132842864, 34.58671829194045], [-77.40412994477754, 34.586697379320455], [-77.40412980834466, 34.58668811452035], [-77.40413324630055, 34.58667477581892], [-77.40422303076109, 34.586359676567156], [-77.4042860420625, 34.58624098990826], [-77.40430520563606, 34.58604007912675], [-77.40435787624877, 34.5858060458252], [-77.40436434598597, 34.58564241544234], [-77.40435386334497, 34.58538204886494], [-77.40434900207181, 34.585137386716184], [-77.4043361261694, 34.58496003240297], [-77.40426075446423, 34.584696624072194], [-77.4042568712444, 34.584400778981944], [-77.40412125961039, 34.58415756268142], [-77.40411682594751, 34.58414253055029], [-77.40399711669095, 34.583868987682436], [-77.40372720742666, 34.58340580576281], [-77.4037036631977, 34.58337837595099], [-77.40368219750425, 34.58335610543428], [-77.40333316916404, 34.58307224684363], [-77.40326392083821, 34.583066511400965], [-77.40293913414827, 34.58274449741755], [-77.40274293231167, 34.58285391949379], [-77.40226851353808, 34.582837515490866], [-77.40215107448223, 34.583070625744625], [-77.40183085796545, 34.58311916823579], [-77.40170397092305, 34.583159830883524], [-77.40136301164625, 34.582991915345104], [-77.40113685322211, 34.58311796565922], [-77.40075769755529, 34.582928990618726], [-77.4006119812156, 34.5829101156644], [-77.40057495024159, 34.58289619559453], [-77.40040049704555, 34.58279255539593], [-77.40010932927039, 34.58267511762206], [-77.39978689053893, 34.582795519460745], [-77.39941359557218, 34.58312293448703], [-77.39909767263227, 34.583275041079865], [-77.3989988107906, 34.58328860653948], [-77.39886335560804, 34.58334827692058], [-77.39832467002444, 34.5834028086061], [-77.39821073808983, 34.583418145566526], [-77.39801236491945, 34.58353884658522], [-77.39772245841823, 34.583689969392], [-77.39742264836403, 34.583809752226514], [-77.397191020073, 34.584043182806276], [-77.39675749700696, 34.58435528938417], [-77.39667794477435, 34.58441353684235], [-77.39663453529599, 34.58444687674189], [-77.39643830623675, 34.5846127583491], [-77.39624047351599, 34.584776234788706], [-77.3961751588826, 34.58479349577988], [-77.39612125740194, 34.58487164571011], [-77.395846415924, 34.585005284557205], [-77.39560136463804, 34.58510718489835], [-77.39514740896995, 34.58534068904638], [-77.39505830311876, 34.58535349386444], [-77.3950123173421, 34.58540664047853], [-77.39494255391605, 34.58546624726098], [-77.39466423363152, 34.5856494918909], [-77.39443237039293, 34.58571459000314], [-77.39431237518234, 34.585981717620484], [-77.39427014929699, 34.58607788099053], [-77.39417478415513, 34.58632340668372], [-77.39408857335681, 34.58643856952763], [-77.39397176108326, 34.58677684865695], [-77.39396109795088, 34.58688152720546], [-77.39393465672529, 34.586948520103476], [-77.39378317125376, 34.587331760833344], [-77.39348187317574, 34.58789673477574], [-77.39336619737499, 34.5881164337023], [-77.39336008087793, 34.588241925777524], [-77.39335678180977, 34.588377127087256], [-77.39348182497498, 34.588384269147745], [-77.3937063013984, 34.5886165608419], [-77.39380207434388, 34.58868224106174], [-77.3938758491025, 34.58875034267659], [-77.39402817575092, 34.58873425471751], [-77.39426990682475, 34.58877704913867], [-77.39441776776536, 34.58877920410191], [-77.39446693721383, 34.58877334475604], [-77.39453878695119, 34.588786186645336], [-77.3946639625035, 34.588830054730956], [-77.39470880452448, 34.588848219314], [-77.39473322670358, 34.5888930124152], [-77.39477870162753, 34.58897510278764], [-77.39480283594584, 34.589032615955226], [-77.39481462939924, 34.58909355652396], [-77.39481647945323, 34.58914122176105], [-77.39483675904214, 34.589302650064354], [-77.39505796941589, 34.58950511787358], [-77.39516981255588, 34.58955867481929], [-77.395362682484, 34.58955509727228], [-77.3954520274381, 34.58957797514803], [-77.39549296704953, 34.589588458185936], [-77.39564813369708, 34.58961018588209], [-77.39576935052935, 34.5896753750607], [-77.39584608514585, 34.58966430627724], [-77.39593268058081, 34.58966243991297], [-77.39621706345443, 34.589552998933684], [-77.39624015457859, 34.58958072272718], [-77.3964548322841, 34.589687085478786], [-77.39663420426155, 34.58981264580683], [-77.39669760938708, 34.589815055720706], [-77.39665658336857, 34.58988928807423], [-77.39663419581521, 34.58995410702616], [-77.39651807006405, 34.59020874235067], [-77.39652885530293, 34.590332285641], [-77.39646947372343, 34.59051828839937], [-77.39646436781992, 34.59058322661288], [-77.39645451960445, 34.59076758084204], [-77.39653183962068, 34.590866647838624], [-77.39662913647281, 34.59116159030345], [-77.39663059895835, 34.591166753252416], [-77.39663056640164, 34.591170590666955], [-77.39663412327944, 34.59117928993021], [-77.39665154784127, 34.59118250463846], [-77.39702817971931, 34.59145009408145], [-77.39709485218081, 34.591452521638665], [-77.39740810794804, 34.591463926978435], [-77.39742225100464, 34.59146932288037], [-77.39744708208022, 34.59147354256449], [-77.39746876563136, 34.591520531870785], [-77.39742224746806, 34.591541552220505], [-77.39724172861969, 34.59173325882746], [-77.3966638103989, 34.591979071681365], [-77.39663407571678, 34.591992911664406], [-77.39661986499637, 34.59200213614085], [-77.39660024278946, 34.592020276556795], [-77.39603872613299, 34.59230901779193], [-77.39588437732772, 34.59254811128867], [-77.3958458853791, 34.59259146541782], [-77.39569835050997, 34.592840583665875], [-77.39548349361257, 34.593030507825404], [-77.39545177461855, 34.59304881889152], [-77.39543595514787, 34.593054407864585], [-77.39525472902581, 34.59312339064398], [-77.39512116277388, 34.59315115768003], [-77.39505768542499, 34.59316706461454], [-77.39498486351354, 34.59318088447269], [-77.39466360073982, 34.59321482123961], [-77.39459334833512, 34.59323458611478], [-77.3943875458502, 34.59318858354713], [-77.39433373944824, 34.593127163351866], [-77.3942695313088, 34.59307845293585], [-77.3941397271962, 34.59293961591963], [-77.39407250880907, 34.59287684191602], [-77.39403391051817, 34.592815017771095], [-77.3940298600119, 34.59276964303518], [-77.39400721543892, 34.592712725290255], [-77.39407252959407, 34.592641524295175], [-77.39408845013008, 34.59261201572818], [-77.39412923352492, 34.59258898391908], [-77.39417105573897, 34.59256674882675], [-77.3942324582855, 34.59253410364302], [-77.39426957977992, 34.59251436765558], [-77.3944022919764, 34.59248029279388], [-77.39465107715404, 34.592315002801165], [-77.39466367349875, 34.592319159206866], [-77.39468010936004, 34.592297243919006], [-77.39493476267245, 34.59212799228051], [-77.3950577717149, 34.592041116349776], [-77.39533501164752, 34.59190409757646], [-77.3955759421728, 34.5918771433019], [-77.39555768755946, 34.59174609091296], [-77.39555060156908, 34.59164074652127], [-77.39545187756667, 34.591621118651986], [-77.3953003257133, 34.59135864185683], [-77.39519170835034, 34.59123007361589], [-77.39505784097747, 34.59114582528734], [-77.39481059715756, 34.59100470890628], [-77.39481059763395, 34.590846542264046], [-77.39451102758008, 34.590883329783345], [-77.39426972750348, 34.5908119908985], [-77.39414590529508, 34.59080941576898], [-77.39374640921832, 34.59073362937793], [-77.39360843151744, 34.5906168882835], [-77.39348160488028, 34.59063516374131], [-77.39335475207139, 34.5906534479189], [-77.39308753058651, 34.59068567253984], [-77.39271031939634, 34.59088306005824], [-77.39269803942436, 34.59088978713543], [-77.39269343907951, 34.5908928053069], [-77.39264172370926, 34.59094866412549], [-77.39229932340427, 34.59130025057803], [-77.39226324501342, 34.5913332398606], [-77.39221789398695, 34.59137864680798], [-77.39210226986727, 34.59145315282994], [-77.3919759645, 34.591489746047145], [-77.3919052305645, 34.59147630129574], [-77.39154179594239, 34.59150916283473], [-77.39151115329612, 34.5915081532177], [-77.3914803014016, 34.591518254865505], [-77.39111709596357, 34.59137759271377], [-77.39083998593672, 34.59170341377137], [-77.39072295579902, 34.591895562887146], [-77.39065073283211, 34.59195141088923], [-77.39064066994936, 34.59203066579485], [-77.3906526992115, 34.59210459475892], [-77.39072289332958, 34.59237988927993], [-77.39073450128947, 34.59242919125037], [-77.39073326380016, 34.59244188272677], [-77.39074414007175, 34.592463216532664], [-77.39080504524938, 34.59276753901411], [-77.39091987821587, 34.592807926823845], [-77.39093172326425, 34.59283783355477], [-77.3909198695991, 34.59287626208746], [-77.39086239042136, 34.59299820657169], [-77.39079763613748, 34.59306945380538], [-77.39072279412038, 34.593151800234196], [-77.3906133941369, 34.593190447950036], [-77.39051601331565, 34.59332234832483], [-77.3904146826311, 34.59342962055882], [-77.39036530620452, 34.593556364642254], [-77.39032864980096, 34.593624124371374], [-77.39022774884958, 34.59367978600698], [-77.39005069298113, 34.59368889511739], [-77.3899345703731, 34.59359161475713], [-77.38981236553377, 34.59355547449198], [-77.38954053187867, 34.59327310039356], [-77.38922206552155, 34.59342743675449], [-77.38914642459055, 34.59344211129664], [-77.38898110997445, 34.593297227590526], [-77.38894940623106, 34.593286272504685], [-77.3887923052585, 34.59314632453424], [-77.38894944860988, 34.59300284620343], [-77.38898004316728, 34.59293992265865], [-77.38911510283768, 34.59292132493051], [-77.38914649652224, 34.59295312849664], [-77.3892747190028, 34.592938626778114], [-77.38941499322586, 34.5929212359116], [-77.38954057772966, 34.59295093867642], [-77.38982109262152, 34.59269580548546], [-77.38993469791427, 34.59266544230097], [-77.39003360958131, 34.59264933363925], [-77.3899984209579, 34.59254784608165], [-77.39000245167817, 34.592474297264864], [-77.39010303667393, 34.592289499899216], [-77.39025250265288, 34.59208663944975], [-77.39030029410566, 34.592048972216446], [-77.39032886482065, 34.59200996989324], [-77.3903911256067, 34.59192143145719], [-77.39043590572965, 34.5918479084628], [-77.39047357230189, 34.59178606512336], [-77.39058955416375, 34.591613467590456], [-77.39056449289572, 34.59144629285271], [-77.39078665839801, 34.59116047496812], [-77.3905725909036, 34.59092891176858], [-77.39032900664819, 34.59095300167858], [-77.39025886764239, 34.590887591526226], [-77.39014522151096, 34.590828402736435], [-77.3901389346245, 34.59082182609855], [-77.39013198901361, 34.59082151103164], [-77.39009967569832, 34.59080015307512], [-77.39002124150039, 34.59075332475999], [-77.38993497052144, 34.59070070195689], [-77.38973854303048, 34.59067541107015], [-77.38973752498121, 34.5906753532325], [-77.389737606314, 34.59067453679527], [-77.38973860984305, 34.59067402817804], [-77.38993498626898, 34.59058782049469], [-77.39002858575982, 34.59053210167392], [-77.39003351170507, 34.59052969278546], [-77.39003582947845, 34.59052824725724], [-77.39013203981355, 34.59045112096188], [-77.39030033475149, 34.59038146651629], [-77.39032361160088, 34.59037221304909], [-77.39032908526075, 34.59036956645477], [-77.39034486907454, 34.59035804072415], [-77.39072318115467, 34.590159041567205], [-77.39093779329491, 34.59009618793375], [-77.39111730848113, 34.589682942919225], [-77.3913225237845, 34.590012915817425], [-77.39151132693495, 34.59006715509263], [-77.39160250329807, 34.59009544767086], [-77.39178087205094, 34.590033797674884], [-77.39183129994794, 34.58981598078942], [-77.39183519746746, 34.58973555809838], [-77.39170841943614, 34.58956969070805], [-77.39169137919352, 34.58956237413337], [-77.3915114008811, 34.58945717943464], [-77.39136224557828, 34.58937919407164], [-77.39120754751977, 34.58930432928092], [-77.39111736334556, 34.58924798918333], [-77.39102973382236, 34.58933274354417], [-77.39072328920108, 34.58933234732051], [-77.39058165273222, 34.58933916162907], [-77.39049383597765, 34.589327072631896], [-77.39047733636413, 34.58924179865827], [-77.39040544152768, 34.58909260293879], [-77.39038901757634, 34.589030594547914], [-77.39032927430435, 34.58897428019084], [-77.3902228849999, 34.58880900858237], [-77.38993523142013, 34.588838992328945], [-77.38987327831389, 34.58881152610006], [-77.38975823702725, 34.5887613615075], [-77.38973821406506, 34.58874592599842], [-77.38971484565437, 34.588742440344895], [-77.3896171657843, 34.58869984618326], [-77.38954119509208, 34.58866698870081], [-77.38938948613335, 34.58860224989473], [-77.38937789679485, 34.5885675932313], [-77.38928709023355, 34.58855550369289], [-77.38914716105508, 34.58849027916958], [-77.38910777875584, 34.588473020117135], [-77.38903610269607, 34.588440921336996], [-77.38886307011103, 34.58834741206374], [-77.38875312890848, 34.588311735521444], [-77.38868146991452, 34.58827977223091], [-77.38860075957854, 34.58824330347173], [-77.38855611357576, 34.5882216786019], [-77.38841746650202, 34.588168447709755], [-77.38835909655405, 34.58814473317945], [-77.38830267210889, 34.588122106362384], [-77.38818400463038, 34.58790333841726], [-77.38796507721305, 34.58790817500122], [-77.38785307874494, 34.58788303765328], [-77.38776805210868, 34.58788684889416], [-77.38762612093102, 34.58785444401114], [-77.38757103213412, 34.58783587734651], [-77.38754781126849, 34.58783139687948], [-77.38745677435375, 34.58781950296754], [-77.38717700194121, 34.58768198603382], [-77.3870370256976, 34.587606282312926], [-77.38678296148117, 34.58759296384093], [-77.38653867040763, 34.587527304489996], [-77.38643957543141, 34.58748701887566], [-77.38638893269957, 34.58744478603752], [-77.38628503009771, 34.58745192561881], [-77.38599489056446, 34.5873743054115], [-77.38582732196973, 34.58738583288588], [-77.38560083272118, 34.5873878775138], [-77.38525968874299, 34.58734412392562], [-77.38517500289713, 34.58733357985251], [-77.38505045663729, 34.587317288293626], [-77.38481275371628, 34.58723160387362], [-77.38469790205201, 34.58724437043341], [-77.38458939585287, 34.58719984734584], [-77.38441872299482, 34.58711609713735], [-77.38433728437957, 34.58708328306338], [-77.38416419254618, 34.58702048318175], [-77.38413493553553, 34.586905943326116], [-77.3840247289867, 34.58683325956413], [-77.38390286184776, 34.58692687221375], [-77.38363064787234, 34.58696199250335], [-77.38344748227559, 34.58712379698167], [-77.38332237262279, 34.58723431612908], [-77.38323650522548, 34.58736189886821], [-77.38291334287463, 34.587625355508756], [-77.3832363738535, 34.58795360340759], [-77.38324969454898, 34.587987078080744], [-77.38343340278897, 34.58795485470003], [-77.38346017920921, 34.58797109772672], [-77.38355488982893, 34.58803881625081], [-77.3835604471626, 34.58809355684837], [-77.38353952888471, 34.58817194246063], [-77.38350637318163, 34.58825541195382], [-77.38327042944218, 34.58838621924596], [-77.38329912835749, 34.58820659509249], [-77.38329119407945, 34.588148628051485], [-77.38323635287816, 34.5880481707888], [-77.38322439033307, 34.58801798133236], [-77.38321805818036, 34.58800599824187], [-77.38284238025821, 34.58766724601421], [-77.38266731606939, 34.58789682200169], [-77.38264529713751, 34.58790532767783], [-77.38263058200444, 34.58789425244517], [-77.38260141394825, 34.58788259965532], [-77.38254679424058, 34.58785452432359], [-77.38251638086118, 34.58782149102922], [-77.38244830127512, 34.58776131823147], [-77.38241662932288, 34.58773108309982], [-77.38237200702407, 34.587703383366666], [-77.38238627423122, 34.587343695314296], [-77.38205432308078, 34.587424653075615], [-77.38199674522153, 34.58739495041374], [-77.38185729894735, 34.58740800094269], [-77.38170225678354, 34.587375352899386], [-77.38167720302962, 34.58736073313495], [-77.3816603130795, 34.587232959950235], [-77.38164569790041, 34.58717122260762], [-77.3816603314891, 34.58715663846467], [-77.38181373753969, 34.58709998913686], [-77.38192407361127, 34.58705924432606], [-77.38205440020828, 34.587098510111154], [-77.38228735211693, 34.587117448485515], [-77.38225927335831, 34.586649879648704], [-77.38227379961253, 34.5864438439061], [-77.38220733757966, 34.58619340821319], [-77.38215523476002, 34.58603636911326], [-77.38213681578853, 34.58595051876288], [-77.38202973859194, 34.58562989249836], [-77.38225719161636, 34.584954591187994], [-77.38230617478236, 34.58474091810021], [-77.38238288716462, 34.58465860258583], [-77.38244905691661, 34.58451213773397], [-77.38267624500091, 34.58408312460323], [-77.38283746426664, 34.58381520610887], [-77.38277668940322, 34.583471213683374], [-77.38277572044782, 34.58332664940879], [-77.38270706745362, 34.58298487252506], [-77.38264905713379, 34.58277817471235], [-77.38264361347382, 34.58256945404204], [-77.38247949094574, 34.582200754797505], [-77.3824690336943, 34.582170053996826], [-77.38245999509672, 34.58216016543713], [-77.38244961179, 34.582146382654315], [-77.38210192094441, 34.58179840597253], [-77.38208805138532, 34.581765516457764], [-77.38183184198971, 34.581412770370164], [-77.38174948745224, 34.58133010310254], [-77.38166177437793, 34.58122864855687], [-77.38134280218846, 34.58097789095619], [-77.38107781091753, 34.5806723256031], [-77.38104041501691, 34.58049830097647], [-77.38097566752998, 34.57994741684473], [-77.38097247490673, 34.57983837987588], [-77.38098167867811, 34.57972113971939], [-77.38090303838008, 34.578999259833886], [-77.38087429947589, 34.57896401290618], [-77.3807643765808, 34.5789007827892], [-77.38048035186526, 34.57870057939644], [-77.38039662614, 34.57873789285656], [-77.38008630948603, 34.5788024899833], [-77.37982870050746, 34.57887654342042], [-77.37931423644943, 34.579228251777735], [-77.37930228448235, 34.57923442002265], [-77.37929815752186, 34.57923852629396], [-77.37903018940004, 34.57969375195866], [-77.37900336765178, 34.57980470774502], [-77.37893916443116, 34.58013143300649], [-77.37896571245756, 34.58048544948787], [-77.3789536800791, 34.58055390482653], [-77.37899992757893, 34.58065087684498], [-77.37917195094792, 34.580947011277374], [-77.37922327841135, 34.58101976904773], [-77.37929764203743, 34.5811156691606], [-77.37960017431266, 34.58130985912793], [-77.37961698058085, 34.581387833986085], [-77.37966232708646, 34.581725464542565], [-77.37973989345625, 34.58208660679044], [-77.37983982320162, 34.5822844195513], [-77.37998818141976, 34.58252762935618], [-77.38002206906204, 34.58259088215695], [-77.3800852559035, 34.58278216317388], [-77.38015347592636, 34.5829283702308], [-77.38008519599902, 34.58300971966713], [-77.37988535205685, 34.583176297036275], [-77.37950478733092, 34.58344642320915], [-77.37936915109883, 34.583543734039026], [-77.37929695829183, 34.58361982045291], [-77.37880902317985, 34.58439581936048], [-77.37866838511175, 34.5845882387778], [-77.37850855371725, 34.58478242567665], [-77.37842844149542, 34.584875228143865], [-77.37850841193477, 34.585287678087184], [-77.37850845664491, 34.58528821198601], [-77.37850847767386, 34.58528825728973], [-77.37870538726538, 34.58546051617598], [-77.37871179569493, 34.5854643330729], [-77.3789023704821, 34.58560771564627], [-77.37893524220516, 34.585615899649795], [-77.3789662228512, 34.58564685488851], [-77.3791486165729, 34.58577976710181], [-77.37916770091012, 34.58590378387876], [-77.37916335599441, 34.58604300881942], [-77.37912862927125, 34.58622861334251], [-77.37912654917687, 34.58671473976498], [-77.37911804894, 34.58689866440007], [-77.37903562388895, 34.58719106650473], [-77.37908049467661, 34.587328639486245], [-77.37898203114177, 34.58742919577046], [-77.37867473592053, 34.587811675200186], [-77.37859881245691, 34.58792080739265], [-77.37850750579064, 34.58853264317824], [-77.37847638891427, 34.588655895491534], [-77.37843337530205, 34.588695582144744], [-77.3782552484276, 34.589298823770505], [-77.3782080226147, 34.589577180686206], [-77.37823781457463, 34.589863048110374], [-77.37804964877327, 34.590449127218164], [-77.37799448086939, 34.590754145759725], [-77.3778804881284, 34.59132262772478], [-77.37785238857573, 34.59147088037696], [-77.37787837082999, 34.59174749549918], [-77.37771841244871, 34.59191649147518], [-77.3775751701414, 34.591791184548335], [-77.37759997882074, 34.59149077359399], [-77.37756012357418, 34.591368790115276], [-77.37744782861671, 34.59082769749151], [-77.37700958550627, 34.590598993155346], [-77.37695542854067, 34.590580100975345], [-77.37693066107555, 34.590542978230474], [-77.37659269084497, 34.59017417680412], [-77.37653671018793, 34.5901399745622], [-77.37642635232216, 34.58983390547998], [-77.3764850155365, 34.589456807513685], [-77.37647570445132, 34.589336245446226], [-77.37663483196462, 34.58927386997003], [-77.37693104842279, 34.58923467806192], [-77.37726016945055, 34.58886463780782], [-77.37747823064166, 34.58857341251378], [-77.37766939468962, 34.58795654657756], [-77.37768413898533, 34.587916260420506], [-77.37753825587647, 34.5873218409074], [-77.37737212794514, 34.58715025652444], [-77.37714977820234, 34.586947364870156], [-77.37693175105471, 34.586871679482186], [-77.3766592306672, 34.586697531026694], [-77.37653775783821, 34.586668911614865], [-77.37629086737164, 34.58661547224645], [-77.3761437252148, 34.58660034929048], [-77.37603441346653, 34.58661165547438], [-77.37545449103504, 34.58668399748388], [-77.37535558708065, 34.586698377941126], [-77.37517165995081, 34.586816316851994], [-77.37486301853546, 34.58698117741572], [-77.37456730394713, 34.587234136381], [-77.37440610484036, 34.587403992013265], [-77.37412348271968, 34.587618326332944], [-77.37390198204027, 34.58778273175746], [-77.3737789711391, 34.587887345512236], [-77.37335787939742, 34.588124143699915], [-77.37304212169234, 34.58862323065451], [-77.37299057535195, 34.588687568062916], [-77.372456563454, 34.58898147357826], [-77.37220231462808, 34.589063189325834], [-77.37148548554521, 34.58969658287263], [-77.37147063275059, 34.58975981167103], [-77.37106669097746, 34.59060602217031], [-77.37087885353796, 34.59090617439527], [-77.3706251593386, 34.59146348551221], [-77.36993032726302, 34.591719459832944], [-77.36983679215867, 34.592021217583486], [-77.36938674105568, 34.59218189212538], [-77.36960664552001, 34.59166543270656], [-77.36904878788997, 34.59161911367011], [-77.36887614614534, 34.59158463121156], [-77.36856667692246, 34.59148554909261], [-77.3682607569443, 34.59130257182572], [-77.36814598660814, 34.59115039206262], [-77.36805733918243, 34.591039445657145], [-77.36773371213063, 34.59080496331896], [-77.36747286751304, 34.590653894004866], [-77.36722558868745, 34.59057655144797], [-77.36671225132254, 34.590413587900215], [-77.36668482072747, 34.59041014613979], [-77.36666886611818, 34.590407471386115], [-77.36663079571792, 34.59039576354826], [-77.36589692182862, 34.589831478257445], [-77.36581494277151, 34.58975248899443], [-77.36571908812127, 34.589677934120026], [-77.36510909979614, 34.58910217540445], [-77.3647933645551, 34.58930218281105], [-77.36493973994178, 34.5889410415965], [-77.36478589794713, 34.58861475346705], [-77.36476024482653, 34.58854233145204], [-77.36510941212552, 34.58839008073627], [-77.36534986035713, 34.58829188396261], [-77.36576644241251, 34.58811426064418], [-77.36589762620996, 34.58818962655417], [-77.36596727163989, 34.588018928127525], [-77.3660549112586, 34.587931352154136], [-77.36644976307917, 34.58761998310371], [-77.366686087874, 34.587390647465995], [-77.3668952740068, 34.58718650808152], [-77.3671452617952, 34.58692522376983], [-77.36747453654752, 34.5865868406473], [-77.36774005024294, 34.586276382215125], [-77.36824258942515, 34.58591807875745], [-77.36825574255451, 34.58590845181447], [-77.36826292164281, 34.58590337104825], [-77.36834026092994, 34.58582072084151], [-77.36869195658629, 34.58546630646752], [-77.3687533941965, 34.58531631901529], [-77.36877430047126, 34.584992384505895], [-77.36887752708407, 34.58479011294579], [-77.3690210087601, 34.58414082532729], [-77.36903578382176, 34.58410560869541], [-77.36902977041692, 34.58408280136313], [-77.36892157341464, 34.5834134769243], [-77.36884662051219, 34.58328373773397], [-77.36865811373542, 34.583046131644004], [-77.36855916998755, 34.583007204344895], [-77.36826411915811, 34.58293866209395], [-77.36772162267515, 34.58286121306658], [-77.3674760948351, 34.582815132174176], [-77.36731642322178, 34.58282703676834], [-77.3666879797563, 34.58291052318701], [-77.36650677224418, 34.58296682101313], [-77.36629392065576, 34.58295996607182], [-77.36614601966461, 34.582823556403035], [-77.36611906988023, 34.582591444261894], [-77.3659002442448, 34.582125595959546], [-77.36586717777465, 34.58201459846716], [-77.36587025036114, 34.58198177145729], [-77.36590032116798, 34.58194830006323], [-77.36625984732966, 34.58149610523815], [-77.36632151404339, 34.58149556036376], [-77.36668846429377, 34.58176847614972], [-77.36680347460498, 34.581755848924445], [-77.36708254749749, 34.58164750354025], [-77.3672477752904, 34.581569212791294], [-77.36747662232864, 34.581543814804746], [-77.36763369478945, 34.581590936184654], [-77.36767361340443, 34.58160318404064], [-77.36778967825995, 34.581650532189215], [-77.36787060178995, 34.581669788419376], [-77.36797440813123, 34.58171112820673], [-77.36816180096395, 34.58179488284952], [-77.3682645873927, 34.58178343234674], [-77.36839472114984, 34.581790810723874], [-77.36885680693058, 34.581795050418364], [-77.3690526704781, 34.581735978418024], [-77.36922995772753, 34.581721308823816], [-77.3695621609977, 34.58178257909593], [-77.36984070135203, 34.58182033549787], [-77.36993996344185, 34.581852585025764], [-77.37009061531808, 34.5819860991527], [-77.37060867032007, 34.5821808218517], [-77.37062046159859, 34.582187920994954], [-77.3706286241292, 34.58219469190557], [-77.37091148920427, 34.58268134516659], [-77.37102241487828, 34.5828473928432], [-77.37106679968815, 34.58291609745523], [-77.37115148017662, 34.58295174979882], [-77.37133652832827, 34.583011142607916], [-77.37141638835827, 34.58301948450611], [-77.37157319588877, 34.583059970895896], [-77.37181038659344, 34.5831275885952], [-77.37190952388501, 34.58316028282266], [-77.37211580695956, 34.58323739583352], [-77.37220437153759, 34.583275508892605], [-77.3723193427486, 34.583331973321876], [-77.37240135782923, 34.58336828791029], [-77.37243350018046, 34.58336927728519], [-77.3725983667675, 34.58339810043797], [-77.37287325563086, 34.58342446875791], [-77.3729924136912, 34.58337520977902], [-77.37307678404586, 34.5834325903747], [-77.37326296610743, 34.58349669512539], [-77.37338638961812, 34.58355834603108], [-77.37344806676202, 34.58353647473996], [-77.37345249656437, 34.58346939024631], [-77.3734181883294, 34.58308385904115], [-77.37340854490544, 34.583027486758446], [-77.37309530689046, 34.5827823699243], [-77.37299264746261, 34.582703759411466], [-77.3729811000113, 34.58270062512907], [-77.3729775322369, 34.58268869602487], [-77.37298542804078, 34.58267977081931], [-77.37293909356796, 34.58190311715225], [-77.37295245764919, 34.58184318831897], [-77.37293972529699, 34.58178765585383], [-77.37285802520319, 34.58157770865326], [-77.37268656841749, 34.581456933360165], [-77.37268358692256, 34.58136631278281], [-77.37259908415257, 34.58136796163319], [-77.37239461577661, 34.5812786467458], [-77.37220512372204, 34.58117565394906], [-77.37213790051209, 34.58118384364245], [-77.37206594322095, 34.58112178124721], [-77.37193639329033, 34.581005503501125], [-77.37181118638642, 34.58092475055463], [-77.37173669426375, 34.580824955532606], [-77.37169411987743, 34.580750785494054], [-77.37154444688751, 34.58063530996542], [-77.37141729910434, 34.58054445191965], [-77.37132236816724, 34.58048209021013], [-77.37117617077759, 34.58040083822656], [-77.37086178397003, 34.58019571085572], [-77.3706294068773, 34.58012319462044], [-77.37050657220816, 34.580072734684094], [-77.37032525140654, 34.58000207017082], [-77.3702354516942, 34.57994385238153], [-77.37000213915897, 34.57989398075279], [-77.36984145018744, 34.57988808321205], [-77.36976709224703, 34.579834835666546], [-77.3695606103007, 34.57978443489296], [-77.36947981193052, 34.57976123218179], [-77.36944748741766, 34.57973477795127], [-77.36923505563686, 34.57963570507383], [-77.36905350169332, 34.57964274617376], [-77.36875134979768, 34.57957539945412], [-77.3686008354848, 34.57956134193478], [-77.36848318181433, 34.57951506352818], [-77.36833183012696, 34.57946542409314], [-77.36826553911321, 34.579442749465244], [-77.36808613175299, 34.579341047943345], [-77.36787159659436, 34.57925188770256], [-77.36783308734208, 34.57922564284417], [-77.36775970686298, 34.57919470599724], [-77.3675707126707, 34.57912162929914], [-77.36747765280099, 34.579068303232134], [-77.36709914011676, 34.57886528482425], [-77.3670979245598, 34.57885015997336], [-77.36708372431156, 34.57885239392867], [-77.36706446447945, 34.578849524876844], [-77.36684028142409, 34.57874037024293], [-77.36668978613804, 34.57866390713524], [-77.36659694367327, 34.578613114041424], [-77.36645708345583, 34.578533194220206], [-77.366149252011, 34.57831100610601], [-77.36595034340809, 34.57818161485666], [-77.36592640380378, 34.57815873565637], [-77.36590197447234, 34.57815059219653], [-77.3658150604016, 34.5781074255449], [-77.36567837910529, 34.578037204131554], [-77.36550804271408, 34.577960822658724], [-77.36525686780651, 34.577856924184715], [-77.36516452498617, 34.57781588037001], [-77.36511410310501, 34.577792492473485], [-77.3649711594012, 34.57774401986724], [-77.36489654178168, 34.577718717692335], [-77.36472014924493, 34.57765919094793], [-77.36461621869954, 34.57763662049783], [-77.36432622422134, 34.57746535532413], [-77.36403500483922, 34.57749753838459], [-77.36378362316461, 34.57748441632913], [-77.36353819474462, 34.57747419975272], [-77.36322116846162, 34.577642461964274], [-77.36308532189162, 34.57768174433978], [-77.36305119034456, 34.57774997627309], [-77.36274990422073, 34.578031990190155], [-77.36243915060372, 34.57792776132844], [-77.36232257963532, 34.577890847333855], [-77.36196208788486, 34.57758806633536], [-77.3619067948658, 34.57754979205366], [-77.36181163454933, 34.577503894031345], [-77.36171676320494, 34.57725303699127], [-77.36161722066848, 34.57710733099263], [-77.3616128876084, 34.577059945735854], [-77.36156834278762, 34.577039095898], [-77.36138358268204, 34.576716414623505], [-77.36134316902988, 34.57654057163578], [-77.3611746052815, 34.576485665196785], [-77.36100154746846, 34.57658499568875], [-77.36078056221024, 34.57655462386947], [-77.36059936790227, 34.57659998021309], [-77.36038658369867, 34.576494205656225], [-77.35977199751383, 34.57694842851068], [-77.35979868221912, 34.57716058328569], [-77.35959802315986, 34.57755226805549], [-77.35953761692276, 34.57776630612621], [-77.35924435254444, 34.57787349242223], [-77.35887831102076, 34.57800004712981], [-77.35880967944674, 34.57815719465991], [-77.35855993665334, 34.57855224585221], [-77.35841538715125, 34.57868032209478], [-77.35828204581594, 34.5785802994496], [-77.35802147876468, 34.57847109290053], [-77.35771012124809, 34.578429850019766], [-77.35762746641097, 34.578459335830864], [-77.35735322903133, 34.57814571207558], [-77.3573580539974, 34.57801101522901], [-77.35725463119189, 34.57733296918332], [-77.35726146258507, 34.57730981700654], [-77.3572609017522, 34.5772810024237], [-77.35723408795212, 34.57727565299203], [-77.35694392874126, 34.57681933167871], [-77.35680020613106, 34.57652710449519], [-77.35670383157728, 34.57626382479605], [-77.35644667902575, 34.576155469921005], [-77.35626560273336, 34.57595018416433], [-77.35605282207095, 34.57588391532818], [-77.35577105397157, 34.57582612914513], [-77.3556885102236, 34.57580605953263], [-77.35565886601808, 34.575793537542935], [-77.3555906698192, 34.57577859913993], [-77.35534991728585, 34.575886741373154], [-77.35526479165385, 34.57591363157776], [-77.35493667587119, 34.57601727836351], [-77.35487071994197, 34.576026983628196], [-77.35478300442162, 34.57606282497883], [-77.35456302040342, 34.5759999916052], [-77.35482898745828, 34.57591667871411], [-77.3548708029947, 34.57588142533911], [-77.35497831592322, 34.575824409909515], [-77.35526481494743, 34.57587246671574], [-77.35540020754692, 34.575600675695455], [-77.3555368683684, 34.57556687622414], [-77.35565901993995, 34.57551929815159], [-77.35572859171398, 34.575482632833314], [-77.35598473323662, 34.575370823523215], [-77.35603707355752, 34.57534599812131], [-77.35607397309798, 34.57533551718519], [-77.35644721890785, 34.575176995688345], [-77.35672609887574, 34.57514004538692], [-77.3568412651002, 34.575098588038905], [-77.35720535150631, 34.57477058234721], [-77.35720857174408, 34.574741143445465], [-77.35723553526623, 34.574606222061114], [-77.35744528015539, 34.57411266343776], [-77.35751951828692, 34.57387625589468], [-77.35766833236165, 34.57347142997709], [-77.35777775870318, 34.57325559599194], [-77.35763020304591, 34.57336759929723], [-77.3576114086593, 34.57341825455441], [-77.35723614408597, 34.57348596900384], [-77.35721193902687, 34.573495978421626], [-77.35702977457102, 34.573724516436634], [-77.35674841430838, 34.573663596658506], [-77.35644807046336, 34.57363624181167], [-77.35633846337329, 34.573621704993656], [-77.35610641334553, 34.573598729126665], [-77.35571207413481, 34.57334316182622], [-77.35566026088905, 34.57331173068896], [-77.35565256415813, 34.57330417480206], [-77.35562951004783, 34.5732991946889], [-77.35557379611205, 34.5732139832418], [-77.35530766662671, 34.5729209659595], [-77.35528211100221, 34.572907817487135], [-77.35526650028551, 34.57289944789076], [-77.35522535701881, 34.572888471268854], [-77.35487243351128, 34.57302871395981], [-77.35414908069997, 34.57344235495075], [-77.35443686009901, 34.572621743981486], [-77.35426913885055, 34.57244722892193], [-77.35408503639921, 34.57201560121959], [-77.35402389854782, 34.57189803041629], [-77.35393152724444, 34.571845370070456], [-77.35329759034282, 34.57111800004677], [-77.35327117724921, 34.57111976493857], [-77.35326285350244, 34.57109250184501], [-77.3532889913218, 34.571079449615645], [-77.35329761733325, 34.57107246192134], [-77.35333144151511, 34.57104619926755], [-77.35408571812515, 34.570846470503], [-77.35426767213791, 34.57094789190319], [-77.35426235753806, 34.57113918402097], [-77.35431101350181, 34.57154754121246], [-77.354479368459, 34.571421853238064], [-77.354556506975, 34.57141399087081], [-77.35487337852818, 34.57137975030625], [-77.3549364924775, 34.57134417250784], [-77.35514955988978, 34.57137246600308], [-77.35520395817458, 34.57144996423782], [-77.35526730673708, 34.57148067517337], [-77.35538706039982, 34.57150682595611], [-77.35557161161236, 34.57151270453622], [-77.35566136246442, 34.571357187735856], [-77.35596574327238, 34.57112804400318], [-77.35601085807505, 34.571073437675146], [-77.35587212907981, 34.57071696696533], [-77.35582854543091, 34.57054357948392], [-77.3556618592562, 34.570477262417896], [-77.35560101957613, 34.57039704669957], [-77.35547551293456, 34.570349501877445], [-77.35539867241783, 34.5702197756411], [-77.3549020826395, 34.57003758533943], [-77.35487412446382, 34.57008058892998], [-77.35483510727778, 34.570017123883375], [-77.35432946528104, 34.569827874697914], [-77.35408632001395, 34.569815680790846], [-77.3534870175938, 34.56936204127955], [-77.35337114741705, 34.569300613570505], [-77.35329870588845, 34.56923824109678], [-77.35319814830285, 34.56929528921941], [-77.35254761596336, 34.56945736744609], [-77.35251062799249, 34.56944700415691], [-77.35201385361897, 34.56957404336711], [-77.35177368775032, 34.569663719589656], [-77.35172251377959, 34.56970820714305], [-77.35122890818695, 34.57021856070481], [-77.35093404835695, 34.570525927632495], [-77.35091820482053, 34.57056375598216], [-77.35090358439567, 34.57058290710717], [-77.3509008448292, 34.57061901830662], [-77.35093356779545, 34.57129948658459], [-77.35094240494982, 34.571426418542934], [-77.35093348277447, 34.57143636184405], [-77.35031389413044, 34.57169847676696], [-77.35014527353067, 34.571810404033286], [-77.35002727206998, 34.571685333577456], [-77.3496270143396, 34.5719063888708], [-77.34935692336066, 34.572393420818834], [-77.34931255150458, 34.57246225926489], [-77.3492483377532, 34.57251926368728], [-77.34922998940556, 34.572658498560074], [-77.34905524030827, 34.573071530187775], [-77.34880845685062, 34.57343164597254], [-77.34867510095387, 34.57356604287762], [-77.34856818668032, 34.57355587657059], [-77.3485119524554, 34.57353491340165], [-77.34832100840231, 34.573501775159585], [-77.34820575410221, 34.57348439453192], [-77.34817425170652, 34.57346046203278], [-77.34793437909565, 34.57339137098483], [-77.34778041565733, 34.573215934672064], [-77.34753748047581, 34.573352820609855], [-77.34744323259675, 34.57362805488941], [-77.34741157935264, 34.57366003559058], [-77.34738606143867, 34.5737573596899], [-77.34732075515133, 34.57400002451216], [-77.34730161246657, 34.57407297494545], [-77.34727302310769, 34.57419857502981], [-77.34724155069071, 34.57435087083293], [-77.34713171640914, 34.57437104144007], [-77.34699166991007, 34.5743473872044], [-77.34670290411485, 34.57427244160711], [-77.34659772871538, 34.57425784100298], [-77.3465402844712, 34.574244402595234], [-77.34644559030586, 34.574196117032734], [-77.34620383514498, 34.57409897266949], [-77.34607571336831, 34.57396293073325], [-77.34597448905711, 34.573839338119086], [-77.34581009123147, 34.57372233525036], [-77.34566913993851, 34.57361067631879], [-77.34541621542843, 34.57354327514316], [-77.34538409586983, 34.57353433360868], [-77.34528326950735, 34.57351422011415], [-77.34513291784447, 34.57341665719211], [-77.3449058276805, 34.57344302219273], [-77.34462826462224, 34.573478815320485], [-77.34438471222161, 34.57348135417309], [-77.3439826385762, 34.573430122444954], [-77.34384024795389, 34.57350918099576], [-77.34323118345993, 34.57357768715598], [-77.3430522149837, 34.57356109002225], [-77.3429435713803, 34.573543276221415], [-77.3422644122084, 34.57329329072942], [-77.34151463758094, 34.573590282092525], [-77.34143808590346, 34.57360164895265], [-77.34137954791805, 34.573651127122204], [-77.34068793579709, 34.57394943906811], [-77.3403301615197, 34.57426586482371], [-77.3402497960185, 34.574285422401026], [-77.3398996099877, 34.57438138388268], [-77.33951749725587, 34.57435622430107], [-77.3394906147254, 34.57436346765845], [-77.33911159525553, 34.57439336933169], [-77.33879393512653, 34.57452984534839], [-77.33856139959919, 34.574648994972904], [-77.33832329623331, 34.57477382247822], [-77.33818608488892, 34.574811598399414], [-77.33763812809275, 34.575038196680765], [-77.33755452087533, 34.575071192270514], [-77.33753504339171, 34.57508554932326], [-77.33750987411787, 34.5750837575553], [-77.33735471449731, 34.57507894329404], [-77.33632124256697, 34.574837436223106], [-77.33623443837008, 34.574390921383014], [-77.33619876503357, 34.57413853323278], [-77.33623811076151, 34.57396585300895], [-77.33630348737611, 34.573902066469344], [-77.33655865561313, 34.57369938253644], [-77.33674824766298, 34.57354228786569], [-77.33680014982762, 34.57351641265103], [-77.33727293047775, 34.57367615086865], [-77.33753608098543, 34.57375426773011], [-77.33755244729575, 34.57375925176138], [-77.33759276459082, 34.57377109424054], [-77.33776422895974, 34.57392500648774], [-77.33792997551433, 34.57389063697158], [-77.33810935642785, 34.573890104313165], [-77.33830571435885, 34.57366858701702], [-77.3383241581943, 34.57365451296339], [-77.33854309606463, 34.57344564977137], [-77.33871838502745, 34.573357816858106], [-77.33884742763381, 34.57330515774909], [-77.33901083242046, 34.57325216904235], [-77.33911248514876, 34.57322381844625], [-77.33920563547956, 34.57321501274673], [-77.33938077195029, 34.57308946523789], [-77.33947481239161, 34.57304166898916], [-77.3395067426756, 34.57288007933971], [-77.33956882147358, 34.57270463114085], [-77.33957476582998, 34.57256398777816], [-77.3393752388103, 34.57224117527508], [-77.3391134547401, 34.57195107166734], [-77.33900833760163, 34.571558438839425], [-77.33882999183672, 34.57147049255199], [-77.33877205362437, 34.5714225915316], [-77.33871987353139, 34.57141619074062], [-77.33859923727272, 34.57129140137191], [-77.33856244894868, 34.571254186848236], [-77.33852305227725, 34.57119112041614], [-77.33846020999766, 34.57109912063418], [-77.33843685238864, 34.57098326536097], [-77.338326375078, 34.57078095163236], [-77.33830217674634, 34.5707234243603], [-77.33828766960688, 34.57069938739529], [-77.33823793734305, 34.570611099713155], [-77.33811100538537, 34.57010833920554], [-77.3376377015237, 34.569943758131885], [-77.33758669979869, 34.5698997902647], [-77.33753910081562, 34.56988861692233], [-77.33745896250988, 34.56988309825875], [-77.33709790471313, 34.569647908594526], [-77.33675166112661, 34.56922656447546], [-77.33674899815534, 34.569225321915106], [-77.33674497728927, 34.56922302940657], [-77.33596411050668, 34.568718447435025], [-77.3357190343647, 34.568785477576114], [-77.33557006537129, 34.5688030727118], [-77.33538233111122, 34.56879208656106], [-77.33517600639922, 34.56890371525235], [-77.33511688149325, 34.568968901753685], [-77.33488678436424, 34.56906563493112], [-77.33480058917425, 34.56909819771038], [-77.33478186171129, 34.56910812433963], [-77.33474797315209, 34.56912209526022], [-77.33458480279032, 34.569193026755144], [-77.33447707411428, 34.569220743121434], [-77.33438776649876, 34.56924986153933], [-77.33411275841061, 34.569176905550165], [-77.33438797132578, 34.56900032625157], [-77.33457969254346, 34.56889173939433], [-77.33466190652132, 34.56867342275321], [-77.3347239891899, 34.56830302801925], [-77.33468823961738, 34.56814336228396], [-77.33513468891091, 34.56780186195916], [-77.33517692595187, 34.56777115036004], [-77.33518765855862, 34.567760315732514], [-77.33571615354587, 34.56794064783995], [-77.33596479226166, 34.56786887991474], [-77.33609710384174, 34.567760495483355], [-77.33622262489314, 34.56774677346884], [-77.33635881577328, 34.5678052495894], [-77.33658145689839, 34.567733060749575], [-77.33675276617875, 34.567832962971806], [-77.33685858324843, 34.56762237780751], [-77.33714694971091, 34.56756523438729], [-77.33729990203052, 34.56744507763496], [-77.33741039129168, 34.56728829875978], [-77.3374648921021, 34.567079152787954], [-77.33747158057432, 34.566995851704114], [-77.337426823713, 34.56670142674041], [-77.33741539284924, 34.56657938863381], [-77.33739269147848, 34.56642195160376], [-77.33734460084338, 34.56574048392289], [-77.33714581351055, 34.565347636470946], [-77.3371427583089, 34.56534496441306], [-77.33713989160577, 34.56533587361468], [-77.33714873954672, 34.565298556176494], [-77.33733679813739, 34.564892522868774], [-77.33714920283138, 34.56471258841718], [-77.33706881145316, 34.56459324728702], [-77.33705749329135, 34.564409052365946], [-77.33734716356295, 34.56404194880203], [-77.33729225849822, 34.56377866867037], [-77.33729151349598, 34.563473104536236], [-77.3373104644288, 34.56319814222646], [-77.33703989590296, 34.56269298474357], [-77.3368934766844, 34.562409016056996], [-77.33684090942731, 34.56232630493292], [-77.33682287695123, 34.561640331782094], [-77.33752441125912, 34.56146921255704], [-77.3375436312022, 34.561464200492445], [-77.33754571686562, 34.561465131059045], [-77.33754621028706, 34.56146554602146], [-77.33754705491138, 34.561465956672684], [-77.33796485924351, 34.561802978499536], [-77.33833316129045, 34.562030072818395], [-77.33846898175398, 34.562036096333046], [-77.33912085345635, 34.56228672985062], [-77.33956431611993, 34.56165325741919], [-77.33960739696103, 34.561169679172615], [-77.33975314675845, 34.560979963240975], [-77.33980851245681, 34.56071621430238], [-77.3397857643931, 34.56042899884275], [-77.3397891654837, 34.56029445355914], [-77.33966760382167, 34.56005022574455], [-77.33962039094058, 34.559894182191194], [-77.33962135703261, 34.55978127072266], [-77.3395292550267, 34.559482744996785], [-77.33967961538761, 34.559211666698125], [-77.33972953525276, 34.55880085038534], [-77.3397546581416, 34.55860124393128], [-77.3397103570434, 34.558390613887255], [-77.33969157207689, 34.55818577349018], [-77.33970478132534, 34.557982676107514], [-77.3396797966095, 34.55776292393071], [-77.33952302357838, 34.55757949731471], [-77.3395028037492, 34.55755649855311], [-77.33947617184965, 34.557547390088054], [-77.33920797299501, 34.557386749890156], [-77.33914776529383, 34.55734980083688], [-77.33913589949178, 34.55734025461476], [-77.33837253140474, 34.55744607581845], [-77.33836314739494, 34.55697299627549], [-77.3375908627563, 34.556234745311485], [-77.33618318876212, 34.55728646289311], [-77.33609750933206, 34.55736324728561], [-77.33599150995765, 34.55747575486214], [-77.3357049211468, 34.5575330851045], [-77.33480843679962, 34.557729425198914], [-77.3344152362221, 34.557719177287865], [-77.33411485422799, 34.55777038144002], [-77.33423739076107, 34.557566222458405], [-77.33372369620436, 34.55720142524587], [-77.33373064463942, 34.55709565812643], [-77.33387488211065, 34.55663907332682], [-77.33417305685393, 34.556426523767286], [-77.33445684855768, 34.55592425431743], [-77.33467765119626, 34.5555443955998], [-77.33464264878474, 34.55544057314231], [-77.33462513187426, 34.55465932284153], [-77.33458501904495, 34.55457844938581], [-77.3345466737743, 34.554547851685584], [-77.33460760263905, 34.55408556975854], [-77.3345032583217, 34.553922420801655], [-77.33388884399838, 34.55418890713021], [-77.3339974186843, 34.55435376939079], [-77.33365053687258, 34.55426033031451], [-77.33368168534791, 34.55420007802968], [-77.33371217587651, 34.55417249637514], [-77.3342274091269, 34.55365059884662], [-77.3342390249068, 34.55347774708704], [-77.33393988717702, 34.553076175691466], [-77.3337447518329, 34.55276795231292], [-77.33373166856205, 34.5527510106595], [-77.33369495123975, 34.55274788679432], [-77.33335377245895, 34.55269654344676], [-77.33317152233505, 34.55282313851287], [-77.33304429928491, 34.552896169972534], [-77.3329553425419, 34.55294626488611], [-77.33283703628706, 34.55294500875158], [-77.33216728829304, 34.55306603865457], [-77.33178065047417, 34.553023088018534], [-77.33154051695386, 34.55296030891752], [-77.33138564620533, 34.55290956784411], [-77.33075418952129, 34.55268100997556], [-77.33069671435463, 34.55263320325325], [-77.33060813024964, 34.55257559291514], [-77.33034464009012, 34.55241684005487], [-77.33006914634792, 34.552441470621076], [-77.32982431518633, 34.55251291175563], [-77.32954270177387, 34.55254070532081], [-77.32872192077475, 34.552779249735465], [-77.32823892909384, 34.553151042866084], [-77.327729347169, 34.553289684968405], [-77.32719220885834, 34.55368259661099], [-77.32678643542008, 34.553824297313696], [-77.326649239651, 34.55397294080748], [-77.32623600025698, 34.55430964176753], [-77.32610950827488, 34.5544884072102], [-77.32585230206865, 34.55447323827791], [-77.32571685261111, 34.55446876139331], [-77.32533477050055, 34.554439148942], [-77.32513492906975, 34.55442620150695], [-77.3250685467391, 34.55440727064346], [-77.32449712716698, 34.55442589245064], [-77.32428297239986, 34.55441938742479], [-77.32363332882785, 34.554194001983134], [-77.32356982374871, 34.55416188850749], [-77.32350586911006, 34.554068153492224], [-77.32325161840646, 34.553759220456094], [-77.32328495813758, 34.55361003258884], [-77.32323093847403, 34.55345292965628], [-77.32293985118807, 34.553314389174886], [-77.32274022563516, 34.55322587544992], [-77.32219156338832, 34.55327366984466], [-77.32195550619218, 34.55320176418549], [-77.32124539158019, 34.553023929396765], [-77.32091790742447, 34.55262562918869], [-77.32062801850192, 34.552525561762074], [-77.32040567309426, 34.552314017323766], [-77.31983779401013, 34.55215789849679], [-77.31985340238457, 34.55179930700998], [-77.3200953109706, 34.55156006221425], [-77.32025299476817, 34.55087875165732], [-77.32032978283931, 34.55075162436866], [-77.32028841542092, 34.55066037513819], [-77.32024455348528, 34.55027424406035], [-77.32011081457232, 34.55007703217033], [-77.32012478112142, 34.55001051201036], [-77.3202200924886, 34.549788134010086], [-77.3202263106617, 34.54963641295895], [-77.32007368368689, 34.54908395856039], [-77.31980505338305, 34.54886851010092], [-77.31978733777697, 34.548817893127634], [-77.31970254092371, 34.54879809786606], [-77.31955951889334, 34.548658970855826], [-77.31945853509586, 34.54858393170956], [-77.3193334762749, 34.548456339664], [-77.31943653009353, 34.54843182696205], [-77.31963676689762, 34.54835560325299], [-77.31971252672827, 34.54837068413338], [-77.31975464130609, 34.54836002383962], [-77.32029832774069, 34.54818090289437], [-77.32036557142101, 34.54789804828741], [-77.32040196838065, 34.5478035094824], [-77.32038758046704, 34.54772750611819], [-77.320288657291, 34.54747361424467], [-77.32000000044042, 34.54737163234508], [-77.31981968815757, 34.54734564924651], [-77.31973692246528, 34.547326499274966], [-77.31940760530767, 34.5472502800409], [-77.31895363410356, 34.54724350276746], [-77.31880779120601, 34.54714564194364], [-77.31826341187933, 34.54713147556924], [-77.31819725986443, 34.547124718564795], [-77.31817142657346, 34.54711433085038], [-77.318138221007, 34.54712896715338], [-77.31808909810064, 34.54715651493134], [-77.31752605355753, 34.54732770874682], [-77.31737514189429, 34.54758704581107], [-77.31721820664276, 34.547771232460754], [-77.31711773718068, 34.548122595753114], [-77.31702941634359, 34.54828797135908], [-77.31693925730153, 34.54855853811148], [-77.31694491923281, 34.54903217372075], [-77.316555337468, 34.549064440580054], [-77.31597556898414, 34.5494185780345], [-77.31586056287053, 34.5494978329123], [-77.31575544869992, 34.549689915550815], [-77.31496277057754, 34.55005365689153], [-77.31496176709584, 34.55005385984951], [-77.31496167160044, 34.550053907988364], [-77.31496113280004, 34.55005422344395], [-77.31416896839073, 34.55037175586828], [-77.31391076085121, 34.550535755254145], [-77.31380287040841, 34.55070984770886], [-77.31345157427295, 34.55119556196649], [-77.31341891257527, 34.55128997503313], [-77.31265646969659, 34.551796700960324], [-77.31256351981597, 34.5518613969471], [-77.312557222607, 34.551864074155475], [-77.31254411567193, 34.551869843331914], [-77.31252289654088, 34.55189768803088], [-77.31204181397818, 34.55260682249074], [-77.31206168768482, 34.55291835083398], [-77.31175762726866, 34.553462182779846], [-77.31175955123385, 34.55394097032487], [-77.31172874202936, 34.55442833175507], [-77.31148340971546, 34.55531617643818], [-77.31169419539677, 34.55590882921176], [-77.31184797088014, 34.556268448025605], [-77.3117980249789, 34.55646317249468], [-77.31132819303353, 34.55694061650213], [-77.31119700690229, 34.55716424070703], [-77.310857193477, 34.55764750667659], [-77.31060699529849, 34.55787067557145], [-77.31067762663979, 34.55801325768547], [-77.31070275488572, 34.55809932459231], [-77.31068673091896, 34.558501568685976], [-77.31071387293147, 34.55857347843485], [-77.31071663330589, 34.55891784665877], [-77.31070888554129, 34.558988006315985], [-77.31065722310201, 34.55909886099938], [-77.31081921459977, 34.55926600683556], [-77.31091781191903, 34.55944762912229], [-77.31081074026298, 34.55962714960955], [-77.3100708509634, 34.559597124736314], [-77.31001235640774, 34.55958634460051], [-77.30924802803528, 34.55928712175067], [-77.30776240835904, 34.559466654420035], [-77.30767323585633, 34.559461542988004], [-77.30760842321988, 34.55947332362404], [-77.3064591016167, 34.559825691379714], [-77.3060869710518, 34.56012336079459], [-77.30570887603608, 34.56045410037057], [-77.30514381099346, 34.560766062461965], [-77.30470424097518, 34.56095859957598], [-77.30449165927735, 34.56116836765008], [-77.30381679289137, 34.561520174542956], [-77.30314667358708, 34.56203189858022], [-77.30288970168255, 34.562493731925706], [-77.30230859621562, 34.562514126298], [-77.3020354198552, 34.56264016900431], [-77.30202979441941, 34.562724843866754], [-77.30246222261883, 34.56310934025918], [-77.30180165285933, 34.5637447771483], [-77.30181730368076, 34.56405092696209], [-77.30181868159897, 34.564339994181935], [-77.30181083456992, 34.564603525334704], [-77.30158828221644, 34.56493283376347], [-77.30145680246768, 34.56512255563419], [-77.30129820749026, 34.565151508829246], [-77.30110200275166, 34.565213943659884], [-77.29996847372004, 34.56543083072836], [-77.29972161369069, 34.56573809811767], [-77.29936793410928, 34.56610043768316], [-77.29906017055312, 34.566281625232946], [-77.29869210615513, 34.567046432568155], [-77.2987762632476, 34.56771644870411], [-77.29869836882963, 34.56789457854381], [-77.2986744733998, 34.568174023313865], [-77.29851874256191, 34.56876938754745], [-77.29844160745571, 34.56910381317931], [-77.29835378810733, 34.569642094002745], [-77.2981405276127, 34.56988315208932], [-77.29797388675965, 34.569696590182105], [-77.29789835020219, 34.569120359803705], [-77.29796039081504, 34.56884948443509], [-77.29763505261575, 34.56859350916981], [-77.29750552647418, 34.56822827209782], [-77.29748527743423, 34.56806859633882], [-77.29747888796027, 34.56793603287645], [-77.29750736118183, 34.567379789204985], [-77.29750763441865, 34.56721634808841], [-77.29750188633786, 34.56706010445403], [-77.29739356477792, 34.56642314883869], [-77.29738989984452, 34.566384195468416], [-77.29740566444937, 34.56632954441376], [-77.29760484418162, 34.56577057243332], [-77.29806712523525, 34.565438006379], [-77.29809648716984, 34.56538024311536], [-77.29814620417012, 34.56536446017314], [-77.29847714401987, 34.56488610350873], [-77.29881583391966, 34.56448155697486], [-77.29870041445136, 34.56424475272732], [-77.29893569078601, 34.56412298270848], [-77.29934864206777, 34.563556075405785], [-77.29953486481276, 34.563409854076184], [-77.29972920176387, 34.56329802994116], [-77.30011381817822, 34.56295668487697], [-77.30015183442754, 34.562716535918454], [-77.30035986357788, 34.56243177023502], [-77.30002609786665, 34.56230911791176], [-77.29976737319407, 34.56168037182992], [-77.29971794627394, 34.561576981783006], [-77.29955530184766, 34.561567981340936], [-77.29956735398632, 34.56143799128343], [-77.299778107103, 34.56122548477694], [-77.29999424221208, 34.56065209116794], [-77.3005172465401, 34.560450742244754], [-77.29980446171574, 34.56010861985907], [-77.29946534487314, 34.55983783987783], [-77.29908694105806, 34.559676730922035], [-77.29824637579402, 34.55957371559963], [-77.29795095720337, 34.55965675591601], [-77.29745341390068, 34.55989571005747], [-77.29740402731719, 34.55991816600013], [-77.29744293874566, 34.559918774852086], [-77.29742924709998, 34.56039646752242], [-77.29738393642697, 34.56041065800195], [-77.2973990795033, 34.560434424179846], [-77.29702383614294, 34.560951924104785], [-77.29687877757998, 34.56112216981035], [-77.29663279957703, 34.56138742994172], [-77.2959336971885, 34.56159790803295], [-77.29645945532152, 34.56162702642403], [-77.29632384707838, 34.56184570292456], [-77.29613428824442, 34.561872759565425], [-77.29584179090251, 34.561625804574966], [-77.29583305095562, 34.56161790972906], [-77.29580780281717, 34.56159431364263], [-77.29577825905494, 34.56113059257538], [-77.29634194588078, 34.56086065453867], [-77.29640992495854, 34.56055037839268], [-77.29642675372841, 34.56020424055544], [-77.2964865502988, 34.560049777613145], [-77.29588610635223, 34.55975152717683], [-77.29560302006553, 34.55986176008837], [-77.29509422469991, 34.560027345445576], [-77.2947938558411, 34.56010648642374], [-77.2942956422663, 34.56036403142666], [-77.29406298858025, 34.560744304235094], [-77.29350356677489, 34.56086952635438], [-77.29302260406244, 34.561231332165114], [-77.29236627146169, 34.56134275336446], [-77.29191966859725, 34.56142497173136], [-77.29161827809355, 34.561541047648205], [-77.29072891746091, 34.56185475347634], [-77.29033348549699, 34.56207583815231], [-77.28908253585001, 34.56279680772539], [-77.28868885404225, 34.56294344484608], [-77.28829842743231, 34.563201151228924], [-77.28786487310352, 34.56344683523224], [-77.28712140879183, 34.563627280613716], [-77.28704648684771, 34.56371421506227], [-77.28691479679304, 34.56369121339375], [-77.28561875590049, 34.564240529858054], [-77.28540878461638, 34.56428737956124], [-77.28511742443051, 34.56445435992353], [-77.28438638683238, 34.564823485135285], [-77.28434217077826, 34.564846638491595], [-77.28431690898005, 34.56486283965131], [-77.28369201388993, 34.56511868357386], [-77.28355093880852, 34.565274025745225], [-77.28344571040527, 34.56536369296111], [-77.28331136417656, 34.56528308395632], [-77.28231415645313, 34.56567170369708], [-77.28226713357816, 34.56568173553128], [-77.28183479198682, 34.56590254817139], [-77.2817562259195, 34.56607575406031], [-77.28187441416071, 34.56645862281805], [-77.28197031096084, 34.5664988778332], [-77.28239320624328, 34.56705620247309], [-77.28238373925583, 34.56706768449271], [-77.28109633816324, 34.567217226256815], [-77.28089604566918, 34.56742218438754], [-77.2808912978588, 34.56763816162777], [-77.28073474623758, 34.567880842950366], [-77.28053332204149, 34.568030807949356], [-77.28039325119732, 34.56832535232002], [-77.28023857051136, 34.56861766869733], [-77.28006570626451, 34.56877095546351], [-77.28004894119918, 34.56891432103096], [-77.27953061205447, 34.56942787170426], [-77.27919217299491, 34.5694667052872], [-77.27905425074854, 34.56963416776353], [-77.27830334912447, 34.56999058973866], [-77.2782279904332, 34.570040595485466], [-77.27770075658916, 34.57011187194219], [-77.27748348632291, 34.57038502185718], [-77.27760990878072, 34.570463371013204], [-77.27741013077879, 34.570510569744656], [-77.27709463836408, 34.57126560638547], [-77.27705507119788, 34.57136244221097], [-77.27694137377445, 34.571408006891154], [-77.27663652355818, 34.572172143417234], [-77.2767620108182, 34.57228207785468], [-77.27736653842487, 34.5726334602476], [-77.27729004408906, 34.57279489067882], [-77.27743089589853, 34.5729767808957], [-77.27741630434241, 34.57304047438136], [-77.27747055289217, 34.57319284561167], [-77.27743881902283, 34.57327790744801], [-77.27741909977023, 34.573348636681], [-77.27754002465291, 34.57336509526762], [-77.27776726655966, 34.573456686796646], [-77.27788476560083, 34.57351672876971], [-77.27803014037856, 34.57348710064798], [-77.27831773209104, 34.57349386514595], [-77.27849169315239, 34.57368157880627], [-77.27846969863444, 34.57383021194477], [-77.27865802709078, 34.57424874600436], [-77.27865775818105, 34.574316311857174], [-77.27867889011448, 34.57434630667859], [-77.27868808638073, 34.57442833194955], [-77.27865522252316, 34.574787440933605], [-77.2784667924836, 34.57516066062006], [-77.27852546654452, 34.57524857690627], [-77.27852016294504, 34.57544041325137], [-77.27858618659926, 34.57572467514657], [-77.27862421857274, 34.575836544933054], [-77.27869533677045, 34.5760809789786], [-77.27875122096273, 34.57620896560335], [-77.27875866200965, 34.57652104059055], [-77.27901608087377, 34.577113598200675], [-77.27902828681074, 34.5771548834001], [-77.27905161040772, 34.577175213492545], [-77.27987238432526, 34.577573454023856], [-77.28021522789378, 34.57807592007969], [-77.28031283867038, 34.57814328237946], [-77.28039418952693, 34.578223299492166], [-77.28057801240041, 34.578584353945956], [-77.28060397190337, 34.57871109986445], [-77.28064376934907, 34.57875415358883], [-77.28067796341092, 34.57882774815031], [-77.28084462562802, 34.579201322157836], [-77.28048977077077, 34.57954674262834], [-77.28094486072011, 34.57996693433429], [-77.28099115742278, 34.580093739520905], [-77.28244060312556, 34.58034270709245], [-77.28320718323383, 34.58072755078562], [-77.28353112937907, 34.58097167269206], [-77.28419082895935, 34.58146676573935], [-77.28471298392655, 34.5818586203586], [-77.28543335521513, 34.582399223807656], [-77.28575800402442, 34.58295297852839], [-77.28640028857558, 34.585278019663974], [-77.28596397690953, 34.585702367766224], [-77.28503236796612, 34.58666935887464], [-77.28444349398409, 34.586907073044635], [-77.2836453672461, 34.587131695169084], [-77.2820365012713, 34.58766802339906], [-77.28015302986641, 34.58744714753394], [-77.27945400543841, 34.58755167194697], [-77.27847612408442, 34.58818345584739], [-77.27830991381366, 34.58697743382618], [-77.27825242575102, 34.58653898211948], [-77.2787831905659, 34.58618823230358], [-77.27999140176394, 34.58340787742714], [-77.2802027624923, 34.58292152809396], [-77.28054228473472, 34.58249524189715], [-77.2808445301204, 34.58161844614021], [-77.28091951743465, 34.581092506085625], [-77.2807876419582, 34.58027789235706], [-77.28076423795177, 34.58017877368255], [-77.28068147380455, 34.580131164346625], [-77.28015468440569, 34.579672309014725], [-77.27962024978446, 34.579252694115944], [-77.27954623433148, 34.579165428863725], [-77.27938004026937, 34.579086315496575], [-77.27881946918174, 34.578702884095634], [-77.27841840481248, 34.57829567962806], [-77.27828997540936, 34.57816641608923], [-77.27819131714837, 34.57805030183564], [-77.27719791350022, 34.57737558381473], [-77.27697304197908, 34.57719013723387], [-77.27653883413652, 34.57697784140642], [-77.27628707355075, 34.57671230052043], [-77.2759691625113, 34.57647186286814], [-77.2757444635782, 34.57618074695793], [-77.27526428428592, 34.57593504889313], [-77.27477760129187, 34.57549463351831], [-77.2739290007234, 34.57539124590531], [-77.27421971430884, 34.57491031084909], [-77.27449109741019, 34.57448628920621], [-77.27449240450909, 34.57444528998929], [-77.27447952435553, 34.57441729251131], [-77.27450550018656, 34.57407295129387], [-77.27419346226347, 34.573965587351196], [-77.27409735176083, 34.57385844843614], [-77.27402364250669, 34.5736520427681], [-77.27379112208516, 34.57323832690156], [-77.27344815322246, 34.573123348435956], [-77.27310959131997, 34.57325775386779], [-77.27283965041964, 34.57322739880026], [-77.27255399655834, 34.57322485057495], [-77.27240401204897, 34.57328745380152], [-77.27231145549155, 34.57334635079184], [-77.27222257678802, 34.573458600926614], [-77.27212471739199, 34.57356733997783], [-77.27218957223953, 34.57375392519001], [-77.27218344749866, 34.57380762250872], [-77.2721457620924, 34.573854809515424], [-77.27204058508306, 34.57424013584346], [-77.27206842363398, 34.57425121408202], [-77.27204028718738, 34.57426770326281], [-77.27203116542188, 34.57427022857599], [-77.2720251079217, 34.5742707420882], [-77.27162083669388, 34.57447040094995], [-77.27160486460815, 34.574548294940065], [-77.27150071080685, 34.57469662490934], [-77.27159032797996, 34.57479776661007], [-77.27164202191695, 34.57502828751255], [-77.27180414511326, 34.57519180803989], [-77.27136902942995, 34.57561553250577], [-77.27138032265589, 34.575629828810555], [-77.27097246488022, 34.57649895863802], [-77.27092759004853, 34.57653690915497], [-77.27089294182039, 34.576543903800335], [-77.270752034422, 34.57699444307783], [-77.27054052973082, 34.5772063904973], [-77.27016461470053, 34.57721057442413], [-77.26982422490443, 34.577392840846514], [-77.26998441567923, 34.57760397281089], [-77.2695681869633, 34.57799455079142], [-77.26925417197836, 34.5780832718231], [-77.26877176852723, 34.578252771688284], [-77.26840697473739, 34.578276267746425], [-77.26829089323398, 34.578321296346196], [-77.26790651947272, 34.578382396858075], [-77.2674178475141, 34.57838089654162], [-77.26708886341405, 34.5784184438035], [-77.26682924257709, 34.57857137139236], [-77.26641703246585, 34.578693101177294], [-77.26615387210491, 34.57890134141336], [-77.26603952476353, 34.57898060573663], [-77.26600980480518, 34.579092904687556], [-77.26590845550132, 34.57934029706823], [-77.26578514735498, 34.57943193742866], [-77.26559545333218, 34.57971914665893], [-77.26545537238151, 34.57987733923279], [-77.26511334396912, 34.580163538572435], [-77.2648436636439, 34.580364985788414], [-77.26466587435493, 34.580757921452495], [-77.26441862024441, 34.58097752228652], [-77.26418436858248, 34.58109309113657], [-77.26405711189236, 34.581181378078256], [-77.26381916473562, 34.58138312809334], [-77.26350242094273, 34.58160908578341], [-77.26350480825909, 34.581803180118044], [-77.26282591884974, 34.58248998070923], [-77.26282096774813, 34.582498158825956], [-77.26281059415246, 34.582500244799796], [-77.26279942676344, 34.58251206094715], [-77.26233819868155, 34.5829315198837], [-77.26195163412876, 34.583050793724524], [-77.2616769871836, 34.58306451655652], [-77.2613682448127, 34.58303592984238], [-77.26120518413485, 34.58304416376371], [-77.26102907272991, 34.58316295794208], [-77.26082373347309, 34.58328371316993], [-77.26079034885126, 34.58333246503073], [-77.26057950100251, 34.583698743150464], [-77.26064497930811, 34.58374098823008], [-77.26027850519144, 34.584162575630415], [-77.26026464414286, 34.5841794171686], [-77.26026294790076, 34.58418226992344], [-77.26025092387376, 34.584189211010646], [-77.26025589972946, 34.58420725849095], [-77.2601037259328, 34.58497915861723], [-77.26004496375421, 34.58510779667348], [-77.25992620529794, 34.585192927362115], [-77.25963108158558, 34.58544228182846], [-77.25909652029833, 34.58576953687976], [-77.25909035842832, 34.5859753641538], [-77.25912399270679, 34.586080888898046], [-77.2590056310618, 34.586345965844075], [-77.25886524514569, 34.58642899054001], [-77.25862280482454, 34.58666274928442], [-77.2582837614581, 34.58685457108703], [-77.25776480216278, 34.58721418699542], [-77.25772510439256, 34.58733956474125], [-77.25733339936257, 34.58772246417132], [-77.25739977190784, 34.58818622913983], [-77.25740015751077, 34.5881960625931], [-77.25740837930286, 34.58819970693333], [-77.25744108337514, 34.588240820813354], [-77.25768478516909, 34.58869279899735], [-77.25729206476605, 34.588971347909755], [-77.2566813494472, 34.58955651015673], [-77.25635607046166, 34.58990492796452], [-77.25567548080232, 34.59042002639268], [-77.25549228932132, 34.590451258254845], [-77.25536302652749, 34.59116329913534], [-77.25525819443305, 34.591329866383354], [-77.25546224944499, 34.591493551908115], [-77.25549722963083, 34.591770227348064], [-77.25542272093494, 34.591814159031536], [-77.25539108955553, 34.59188760025375], [-77.25528609599777, 34.59227474501154], [-77.25511604703574, 34.59272538673946], [-77.25576949409754, 34.59307432389849], [-77.25592532383652, 34.593157183854615], [-77.25639103205117, 34.59330439349714], [-77.25692989155792, 34.59351584831307], [-77.25708429521731, 34.59380828024446], [-77.25714394613584, 34.59430632853149], [-77.25713387167887, 34.59490909265716], [-77.25742319762404, 34.595270983528], [-77.2575410989785, 34.595491429766625], [-77.25777296917494, 34.59577968113277], [-77.25812527005036, 34.59600750477297], [-77.25926687108594, 34.59615977154787], [-77.25978721327257, 34.596399660035715], [-77.26004166545607, 34.59675954794192], [-77.26018315105863, 34.597373485698355], [-77.26010075566688, 34.597844314652036], [-77.26005777088825, 34.59822316699362], [-77.26010888778765, 34.59831032040882], [-77.26011169058705, 34.59850296013854], [-77.2596061455101, 34.59882182719759], [-77.25932421333108, 34.59919127197089], [-77.25934936127813, 34.59922325119296], [-77.25908912525169, 34.5996441171913], [-77.25905197937092, 34.59991701575644], [-77.25902195045275, 34.60008066674142], [-77.25910138545446, 34.600116420530604], [-77.25960607434077, 34.6004882669545], [-77.25990010873583, 34.60048667005806], [-77.26042273852389, 34.60054061261452], [-77.2612702882009, 34.60070842797181], [-77.26051100604663, 34.6014870205333], [-77.26038202570751, 34.602102509010805], [-77.26004993848181, 34.60263503129478], [-77.25983943111673, 34.60300250659022], [-77.25956718222118, 34.60327678672509], [-77.25828939568368, 34.60329422266079], [-77.2574411152944, 34.60310036258896], [-77.25668714444396, 34.60275451208413], [-77.25626565339451, 34.602582300307276], [-77.25607981872776, 34.60245798828135], [-77.2548076578014, 34.60166393026035], [-77.25480423987193, 34.601659824849044], [-77.25480032761305, 34.601653994148336], [-77.25407688050271, 34.600663728197276], [-77.25399085657466, 34.60049473024507], [-77.25396843016388, 34.599965607415896], [-77.25375361468345, 34.59969559920072], [-77.25390779229805, 34.599558730297694], [-77.25415049948599, 34.599605843613176], [-77.25456956786704, 34.59948996591386], [-77.25462669098954, 34.59949793571918], [-77.25507984120574, 34.59932864337266], [-77.25506741134372, 34.59927541314937], [-77.25497862868055, 34.59902270839611], [-77.25460147626494, 34.59881965168641], [-77.25458727170557, 34.59880182819591], [-77.2545699911892, 34.59877692438478], [-77.25449399961869, 34.59876547066356], [-77.25395789556008, 34.598768992999624], [-77.2530466564725, 34.598792894029806], [-77.25287059615685, 34.5988027625638], [-77.25278967353121, 34.59867703495975], [-77.25231747952326, 34.59818199550538], [-77.25173783475532, 34.59770898027406], [-77.25171256894481, 34.597649550064794], [-77.25175403238852, 34.596923340880736], [-77.2505105918485, 34.596801925106746], [-77.25015647846368, 34.59678662162652], [-77.24924774931682, 34.59672881193442], [-77.24888960115577, 34.59667286865798], [-77.24802381516422, 34.596954858583636], [-77.24754402624492, 34.59732127313276], [-77.24738637035452, 34.59770256161717], [-77.24721215897102, 34.59788881003218], [-77.2469135560823, 34.59821430553261], [-77.24682515492974, 34.59851807429297], [-77.2465666087197, 34.598865237049104], [-77.246462955492, 34.59912150659586], [-77.24629405281004, 34.59936037903729], [-77.24619640563799, 34.59973859134169], [-77.24599103063875, 34.60002702392191], [-77.24536526605024, 34.60030401047943], [-77.2445581688255, 34.600445795640496], [-77.24394724730487, 34.60058044432948], [-77.24352922349715, 34.60059957374836], [-77.24334027853504, 34.60067723463643], [-77.24321372043241, 34.60075090345629], [-77.24307676627015, 34.60090624741607], [-77.24253473480898, 34.601275453771585], [-77.24213301298161, 34.601608438833004], [-77.24171377442912, 34.602151133779664], [-77.2414039239911, 34.602493681002144], [-77.24142700515058, 34.60291965030801], [-77.24133489331118, 34.602959593013296], [-77.24143796663144, 34.602989129616674], [-77.24140749099864, 34.60312499181216], [-77.24134023432993, 34.6034313645542], [-77.24121454495472, 34.603807511323616], [-77.24119526065176, 34.6040282839407], [-77.24123352686928, 34.60436565530625], [-77.24124984269524, 34.60452906934876], [-77.24123271058556, 34.604718981354374], [-77.24096567042777, 34.60481589576365], [-77.24082274088076, 34.6050117046717], [-77.23964440428085, 34.60518310855096], [-77.24049708424974, 34.60554554007592], [-77.2410283727945, 34.60553941097788], [-77.24131376669632, 34.60544846305919], [-77.24158921103717, 34.6053363865379], [-77.24215203455093, 34.60492619710154], [-77.2421537913315, 34.60490952825456], [-77.24217733296227, 34.60490181771886], [-77.24219737153746, 34.6048960398644], [-77.24261791110557, 34.604636318946554], [-77.2427380376949, 34.60466091760645], [-77.24275705982872, 34.60469976494397], [-77.24275244737122, 34.60475598351683], [-77.24220043889949, 34.60491320423199], [-77.24220528452318, 34.60492667961873], [-77.24227906985921, 34.60539074944649], [-77.24259973151673, 34.60549341714625], [-77.24263806055797, 34.60569122265784], [-77.24273044087766, 34.60589766608635], [-77.24275802129785, 34.6061689476994], [-77.24316536148476, 34.60631534220565], [-77.2432853605019, 34.606412738913214], [-77.2432955291644, 34.606702557362574], [-77.24376276625674, 34.606801001095306], [-77.24391333839694, 34.60693356409335], [-77.2437555283163, 34.60726517524848], [-77.24374859858776, 34.60739193344756], [-77.24372412209445, 34.60759232980741], [-77.24349108392406, 34.60809891866248], [-77.24331455586929, 34.60830043293892], [-77.24294823055278, 34.60903685024018], [-77.24289192601294, 34.609481642009406], [-77.24125253050323, 34.61002334707714], [-77.24219206205805, 34.6114886678072], [-77.23887710982413, 34.613119259010645], [-77.23821969975391, 34.61321471445439], [-77.2385074165948, 34.6135778118515], [-77.23856277720752, 34.61361699765933], [-77.23860168906417, 34.613663191071424], [-77.24053421169614, 34.615622943652326], [-77.24058824250243, 34.615798146465245], [-77.24009461906998, 34.617377067884405], [-77.24008155818811, 34.617457278909015], [-77.24006425401458, 34.617471315021945], [-77.24003567254904, 34.61749347934612], [-77.23845242204641, 34.61868089998137], [-77.23508195833465, 34.620613489318686], [-77.23486873119352, 34.62075291034196], [-77.23475753291639, 34.62082384240837], [-77.23459736114216, 34.620978667472684], [-77.23158826339086, 34.62309465559353], [-77.23042952484724, 34.62425338856491], [-77.22939639786699, 34.62517733478553], [-77.22871933227447, 34.625802558298794], [-77.22849783743501, 34.62598644651425], [-77.22773970560705, 34.626482823391164], [-77.22602001527028, 34.62767637033778], [-77.22418014686573, 34.62881339898034], [-77.22174198798018, 34.630116096651534], [-77.21751137844407, 34.63077562424456], [-77.2150058429586, 34.63418339904141], [-77.2148492676433, 34.63433631038144], [-77.21478693157978, 34.63444976521246], [-77.21452185955086, 34.634554707499035], [-77.21105688995368, 34.63780761556779], [-77.21167805908189, 34.63836620071193], [-77.2116781313399, 34.64016518721654], [-77.21168958213337, 34.6413006286873], [-77.21169900452355, 34.641629308669565], [-77.21234912663046, 34.64280228566489], [-77.21278236966737, 34.64360035561435], [-77.21241914089262, 34.643966652044796], [-77.21256249278717, 34.64546841142918], [-77.21298226356478, 34.64669489587402], [-77.2148518393809, 34.64722079392992], [-77.21514474131347, 34.64755784604583], [-77.215360791873, 34.64811140107318], [-77.21417794273995, 34.64918673118936], [-77.21540867517908, 34.649451603741596], [-77.21541130398025, 34.649464353106275], [-77.21541127974143, 34.64947141605074], [-77.21539977174766, 34.649469168632514], [-77.21389244066783, 34.64943563430496], [-77.21373770527407, 34.64941873638309], [-77.21354872164872, 34.64942192777886], [-77.21040126854231, 34.649342077984485], [-77.20948511885152, 34.64947140784381], [-77.20801839423129, 34.649471393317086], [-77.20717109531898, 34.649055743361714], [-77.20693013864486, 34.64895695019093], [-77.2064995025654, 34.64876032771997], [-77.20174566315922, 34.64644195046827], [-77.19922509637607, 34.64595892197913], [-77.19579313336112, 34.644867969925684], [-77.19031456423028, 34.644242465966386]], [[-77.35887472442256, 34.78672173144588], [-77.35809777962615, 34.786199494908935], [-77.35832517148077, 34.78695044068937], [-77.3585099195088, 34.78687355458946]], [[-77.42643584269284, 34.758576594344575], [-77.42640880431438, 34.758479237382566], [-77.42633014585168, 34.75853274913097], [-77.42615093052828, 34.75852518593694], [-77.42578060404479, 34.758433774511275], [-77.42540671399895, 34.75852008145289], [-77.42525339827458, 34.75877063388988], [-77.424919185806, 34.75919361421936], [-77.42483893440846, 34.75908834772365], [-77.42467480893698, 34.75912752368372], [-77.42373955911785, 34.75883755080493], [-77.42370447104285, 34.758822774839054], [-77.4231443454405, 34.75867817300501], [-77.42279995384425, 34.75847238367525], [-77.42263844439655, 34.7583745192163], [-77.42259832588921, 34.75834894963342], [-77.42252667217228, 34.758302767317296], [-77.42208896166218, 34.75789318204409], [-77.42192900587533, 34.75777757726642], [-77.42169732254537, 34.75769586190062], [-77.42152199849369, 34.75763629369063], [-77.42132904113916, 34.75758136195527], [-77.4212273438808, 34.757546427873876], [-77.421105737711, 34.757477349499084], [-77.42094500136504, 34.7574140558562], [-77.42082791551537, 34.75734393369987], [-77.42066191239388, 34.7571661526649], [-77.42062705279022, 34.756981312102766], [-77.42061097935635, 34.756669093259525], [-77.42061470896601, 34.756590581707826], [-77.42060633493072, 34.75654357968106], [-77.42058601749953, 34.75643915998755], [-77.42045717799517, 34.75597645247687], [-77.4204375038121, 34.75572123266118], [-77.42022011765926, 34.75548817050765], [-77.41978863353364, 34.75532563468075], [-77.41965518273625, 34.755224346965406], [-77.4193512868286, 34.75528138689578], [-77.41898947907848, 34.75530840815845], [-77.41879427662454, 34.75483620422382], [-77.4189728511625, 34.75474079276079], [-77.41904405768236, 34.75464396361505], [-77.41919040144286, 34.75461477766342], [-77.41937026963613, 34.75464213899774], [-77.41956569192129, 34.75474562447181], [-77.41969433527917, 34.75508918011024], [-77.41973569724269, 34.755121110110636], [-77.42027334241148, 34.75530441797615], [-77.42034132140624, 34.75531496569939], [-77.4205688401055, 34.75539134523406], [-77.42070971666088, 34.755334564979655], [-77.42080764353551, 34.75534371649166], [-77.42085986244845, 34.75549372474303], [-77.42087798749364, 34.75553757172345], [-77.4208874544041, 34.755567750763], [-77.4209659665916, 34.755753192341594], [-77.4210549798405, 34.75618537082157], [-77.42118496079998, 34.756302320531944], [-77.42125036991348, 34.756359778556615], [-77.4213437004147, 34.75637027746088], [-77.42157011493836, 34.75636539568934], [-77.42187464983193, 34.75641874337522], [-77.42193519130747, 34.75643587790757], [-77.42217685330738, 34.75648253270161], [-77.42238593068154, 34.75657708174826], [-77.4224575237795, 34.75662066940755], [-77.42250021117313, 34.75664665832741], [-77.4225536420229, 34.75670910189331], [-77.42275301037746, 34.75698762408585], [-77.42288141763993, 34.75737152086189], [-77.42288513748139, 34.75737890664957], [-77.42289176958333, 34.757386331401506], [-77.42337592798853, 34.757878574048384], [-77.4236026990884, 34.757972456847114], [-77.42366150783651, 34.757999780256526], [-77.42379563571663, 34.75813201569966], [-77.42391794839614, 34.758221601744296], [-77.42444034619353, 34.75843727515234], [-77.42449778653062, 34.758434059590286], [-77.42486055463458, 34.75807430184332], [-77.4249642131567, 34.75785111088793], [-77.42498443172171, 34.75783031110163], [-77.42521094020101, 34.75763767327271], [-77.42530241110077, 34.75760186762774], [-77.42539421163664, 34.75755332904635], [-77.4254801333349, 34.75751824558266], [-77.42560526217781, 34.75749592852238], [-77.42568420654243, 34.75747766614896], [-77.4259734706242, 34.757430256899234], [-77.42604981498275, 34.757504142305045], [-77.42623858614527, 34.757635366841235], [-77.42637050109846, 34.7575041188347], [-77.42648850879041, 34.757661867174946], [-77.42662791432699, 34.75772259347232], [-77.42673819493443, 34.75770359999205], [-77.42690327434754, 34.75787909705444], [-77.42704300351606, 34.75782755808191], [-77.42708496714074, 34.7578595235883], [-77.42719900280058, 34.75796526340287], [-77.42728927697492, 34.758084346998075], [-77.42726645501145, 34.75823022538552], [-77.42746719835712, 34.75814651346101], [-77.42761088020023, 34.75808659609868], [-77.42745399074946, 34.75786236995175], [-77.4273186859886, 34.757551950820634], [-77.4271335567899, 34.75739287708609], [-77.42691766133339, 34.75724891657355], [-77.42678587874148, 34.7571770934501], [-77.42669617840275, 34.757128884774076], [-77.42631959459452, 34.75701985698626], [-77.42619417392267, 34.75700563835399], [-77.42589376968849, 34.75703767860966], [-77.42587413918532, 34.75704007131719], [-77.42582476051793, 34.75704588758905], [-77.42554560484152, 34.75703054862428], [-77.42539845487205, 34.75701090533322], [-77.42518139125416, 34.757068285216356], [-77.42503039462474, 34.7571575401587], [-77.42484914205022, 34.75722083264765], [-77.4246337632665, 34.75725750377704], [-77.42423699841684, 34.75729734672024], [-77.42420416926635, 34.75730362605949], [-77.42418553245113, 34.75729766207768], [-77.42371459684634, 34.75725176929977], [-77.42357084353088, 34.75720556684762], [-77.42349757214798, 34.7571235382769], [-77.42344587585677, 34.75702089470059], [-77.42323770830035, 34.75678551886686], [-77.42309892345092, 34.75662052489316], [-77.42295796413816, 34.75645578856254], [-77.42257313517318, 34.75622149716451], [-77.42252281284676, 34.756190859680146], [-77.42229456374835, 34.75605949400255], [-77.422122586351, 34.75591136692705], [-77.42206815859969, 34.755750627824675], [-77.42191811586223, 34.75536886696304], [-77.42186342391885, 34.75512668253024], [-77.42179910948062, 34.75504774202001], [-77.42172618799776, 34.754960718981955], [-77.42165954417007, 34.75494707595111], [-77.42152318184893, 34.754951312476564], [-77.4214153073572, 34.754991446914815], [-77.42124914777514, 34.754936441505905], [-77.42102545404448, 34.75492201816906], [-77.42091265088798, 34.75491818005847], [-77.42049809513809, 34.754803228165756], [-77.42042597152792, 34.754777477695356], [-77.4203237102172, 34.75470394580863], [-77.41988023761114, 34.754447380556016], [-77.41959688161123, 34.75428625087643], [-77.41904759773301, 34.75411496735936], [-77.41868305144462, 34.754152185818725], [-77.41849377525762, 34.75417209673783], [-77.41821836254599, 34.75425606647708], [-77.41799009440872, 34.754330347392674], [-77.4177970212514, 34.75431563160466], [-77.41753842996192, 34.7542517640875], [-77.41740906925979, 34.75412210657805], [-77.41708756507656, 34.75368060265783], [-77.41701294116878, 34.753578126056304], [-77.41671692193545, 34.753298872043764], [-77.41641318650483, 34.75313205592025], [-77.41573787692512, 34.753195165984984], [-77.41526745203973, 34.75430584194508], [-77.41524791582572, 34.754714848021585], [-77.41553701649983, 34.75508618211505], [-77.41576298562643, 34.755376421208325], [-77.41581530058772, 34.755472258140145], [-77.41603434463278, 34.755771566738076], [-77.41608458816296, 34.756005631168875], [-77.41604392530863, 34.756111255738986], [-77.41613658549524, 34.75630067172959], [-77.41617175941394, 34.75660700085692], [-77.41647908986894, 34.75733228592388], [-77.41649171286605, 34.757366336175444], [-77.41650474550295, 34.75739049354939], [-77.4169267513862, 34.75800095012631], [-77.41697047273315, 34.7580594656392], [-77.41704890414577, 34.75813976589913], [-77.41727357921576, 34.75837946280069], [-77.41727361496928, 34.75869624005939], [-77.4172436668064, 34.75876691944173], [-77.41717990874486, 34.75886487808981], [-77.41698974528141, 34.75923725767177], [-77.41686368780177, 34.759443074608896], [-77.41685182456193, 34.759468596971665], [-77.41684928976392, 34.7594989357668], [-77.41682913119553, 34.759740207382976], [-77.41677946859932, 34.75992454780616], [-77.41695794279894, 34.760107207162385], [-77.41713039271013, 34.759958182619314], [-77.41724433784645, 34.759885320247406], [-77.41747252800994, 34.759769173324216], [-77.41775642578227, 34.75956496140637], [-77.41779041129973, 34.75954054436331], [-77.41789893798028, 34.75945784074208], [-77.418310438553, 34.759139747990616], [-77.41840516992781, 34.75904897112234], [-77.41856148641648, 34.758288883048806], [-77.41854124763583, 34.75810225236068], [-77.4185304102935, 34.757757682229936], [-77.41850462304987, 34.75753037232286], [-77.41890041048472, 34.757254843707315], [-77.41888849751977, 34.75710545326601], [-77.41901433125034, 34.75705238499253], [-77.41913486775135, 34.75702059893521], [-77.41920889802795, 34.75712622636822], [-77.41955843125632, 34.75733958489485], [-77.42013366800998, 34.75763339527162], [-77.42021628300088, 34.757715617017524], [-77.42034136562457, 34.757724473625274], [-77.42077058943626, 34.75801619748765], [-77.42096384798353, 34.75799346508605], [-77.42126796566866, 34.75805319956032], [-77.42138867570532, 34.75809659072895], [-77.42147798433916, 34.75808545383843], [-77.42161370211838, 34.75813223116458], [-77.42166123796704, 34.75826273818191], [-77.42168956033223, 34.75832378839577], [-77.42177103315105, 34.758564172050114], [-77.4217880622203, 34.75867784794144], [-77.42179616479494, 34.75872571256572], [-77.42191778468543, 34.758803899391005], [-77.42235956165284, 34.759173310902256], [-77.422569220544, 34.75929613189549], [-77.4234388766156, 34.75979286148067], [-77.42346027084254, 34.75980187081979], [-77.42348156511366, 34.75980847307832], [-77.4249141096414, 34.75921114221085], [-77.42564357050469, 34.75890696777626], [-77.42637302581237, 34.75860278917501]], [[-77.43655809501588, 34.75435499757169], [-77.43643542036627, 34.754306081082184], [-77.43642522004741, 34.75428809886075], [-77.43646995068748, 34.754186782290304], [-77.43647770727503, 34.75416893424149], [-77.4364793662555, 34.754167255572895], [-77.43648235327564, 34.7541633898114], [-77.43657277349331, 34.75406012743505], [-77.43671868007529, 34.75388136233269], [-77.43679197503259, 34.75393447780088], [-77.43675320539822, 34.75384364183566], [-77.43677354116352, 34.75381872649529], [-77.43699287071007, 34.75351488019582], [-77.43721184086007, 34.7534448250327], [-77.43734801573125, 34.75334718421327], [-77.43760313678041, 34.75304127278184], [-77.43763049949264, 34.75306083045941], [-77.43764525543773, 34.75303719862381], [-77.43762840905485, 34.75301572840238], [-77.43791948303188, 34.75278509362584], [-77.43801527281333, 34.75272517739738], [-77.43808243153605, 34.75267736698851], [-77.43817923207817, 34.75266470086692], [-77.43830423176225, 34.75266574736766], [-77.43835495256413, 34.75265942441553], [-77.43847855596026, 34.75266109348912], [-77.43895188782844, 34.752812713185754], [-77.43946197746965, 34.75306106258109], [-77.43955252412515, 34.752953217436435], [-77.43991957790897, 34.75271360515135], [-77.44016613850111, 34.75271567340146], [-77.44026089534248, 34.75272144578221], [-77.4408459018136, 34.752478150463816], [-77.44090527201513, 34.75242739840967], [-77.44098862023847, 34.752422776065636], [-77.44158622751375, 34.75217772278763], [-77.44165299742085, 34.75215315808816], [-77.44171600415517, 34.75212526172713], [-77.44233079110401, 34.75187877302346], [-77.44238472748644, 34.751852802725416], [-77.44244038409806, 34.75183810594373], [-77.44255203049039, 34.75185457169889], [-77.44314896447565, 34.75160553169891], [-77.44387828643991, 34.75130125314341], [-77.44533691369928, 34.75069268354396], [-77.44558957901982, 34.750587261831896], [-77.44563789099197, 34.749679775496816], [-77.44517209412106, 34.748975767967664], [-77.44468209035303, 34.748523116292816], [-77.44460529918321, 34.74820109864512], [-77.44413506117468, 34.747622780104514], [-77.44418358852042, 34.747494786313936], [-77.44424829215251, 34.74742000835272], [-77.44436717493295, 34.74739519082117], [-77.44462925524785, 34.747416585382936], [-77.44482984459971, 34.748012424449776], [-77.44550424263052, 34.74797569854726], [-77.44608027178467, 34.7481232868798], [-77.44678343922278, 34.748303441667304], [-77.44713068609423, 34.748925527604065], [-77.44786696717547, 34.748222274774314], [-77.44776664744066, 34.746727146384416], [-77.44765714248484, 34.746153181602715], [-77.44727838125476, 34.7457806833763], [-77.44684774877948, 34.74547037406972], [-77.44671064704985, 34.745460335318626], [-77.44624182211652, 34.74534834704911], [-77.4461767399059, 34.7453959073379], [-77.4458479683138, 34.745546771623445], [-77.4455368718603, 34.74556860426656], [-77.44543138679887, 34.74561408871497], [-77.44527193913484, 34.745638883237575], [-77.4450200894929, 34.74569003188966], [-77.44485651532797, 34.74570383689768], [-77.4444038881181, 34.745724944028325], [-77.44423934230275, 34.74562067246213], [-77.44407864078019, 34.745647837262055], [-77.44366938892836, 34.74563812974161], [-77.44359701106504, 34.74562446279323], [-77.44307603824176, 34.74550577085722], [-77.44299602504198, 34.74548535144142], [-77.44285474805595, 34.74547846618589], [-77.44207743626063, 34.745370222861894], [-77.4417159594787, 34.74547703070424], [-77.44168882880903, 34.74548321549534], [-77.44126519674055, 34.745357320541416], [-77.4415658581479, 34.7455698041478], [-77.44136412086927, 34.7457005592394], [-77.44131788586083, 34.745744708421256], [-77.44127612800278, 34.74569068306731], [-77.44111751370943, 34.74532914406468], [-77.44110998113416, 34.7453135897116], [-77.44111184037872, 34.745303748613814], [-77.44111287850806, 34.74529026175232], [-77.44097424373332, 34.744696657173314], [-77.44102841988148, 34.744454794638386], [-77.44076518738697, 34.74433070877217], [-77.4405948026579, 34.74400507854816], [-77.44047393195169, 34.74379331287713], [-77.44036740431517, 34.74348939639701], [-77.4403531895494, 34.74339727810268], [-77.44035456704594, 34.74336212786291], [-77.4403601273275, 34.743313302731295], [-77.44037951364572, 34.74309133004163], [-77.44039840700104, 34.74293200295977], [-77.44040848884362, 34.74282193936928], [-77.44043665868423, 34.74269065961104], [-77.44045481447054, 34.7425586106237], [-77.44050116144395, 34.742442722376225], [-77.44053060726297, 34.742305575888565], [-77.4405760433581, 34.742170668701874], [-77.4406363664481, 34.74206301065604], [-77.44065858663674, 34.74193063155381], [-77.44064694760608, 34.741787194179494], [-77.44066701608416, 34.741571613309176], [-77.4408258353535, 34.74129066416601], [-77.44088085949345, 34.74117323340059], [-77.44110136828395, 34.74095285592552], [-77.44121516096524, 34.74097158431603], [-77.44128749805627, 34.74077541112986], [-77.44158067793595, 34.740436322374364], [-77.44164994253278, 34.74018642448023], [-77.44165205019306, 34.74017689582509], [-77.44182844654291, 34.73996385776525], [-77.44183874413957, 34.7396525864206], [-77.44193883730871, 34.739443400305056], [-77.44203908708498, 34.739326740323875], [-77.4422979770284, 34.73903325656466], [-77.44233239072253, 34.739021867282055], [-77.4423348753009, 34.73899916503491], [-77.44259599891262, 34.73874106375652], [-77.44296160606044, 34.738682662095954], [-77.44306495944626, 34.738598455786224], [-77.4436088319374, 34.73889998190967], [-77.44361661398369, 34.738907908819755], [-77.44361778310147, 34.73891027668747], [-77.44361871734274, 34.738912219606895], [-77.44406312610278, 34.73958080296786], [-77.44412748072045, 34.7395904302245], [-77.44416388974771, 34.73966168457151], [-77.44456528862133, 34.74006135983667], [-77.44477092127558, 34.740214778364894], [-77.44491728968275, 34.74028922754386], [-77.44516275857224, 34.740212488382284], [-77.44557345184775, 34.740613195962325], [-77.44566548381442, 34.74069113075432], [-77.445689575497, 34.74072428643987], [-77.44659589857, 34.74078774131338], [-77.44693232265575, 34.74062873906807], [-77.44696916322535, 34.7406175187377], [-77.44734284796019, 34.74051240485467], [-77.44780160465614, 34.74037336539835], [-77.44813438693222, 34.74030988364129], [-77.44835043342673, 34.74027563703443], [-77.44852511259091, 34.74020038867222], [-77.44869960072145, 34.740176848922175], [-77.44874243625772, 34.740181500864104], [-77.44892502040886, 34.74026699712073], [-77.44898268743785, 34.740306514870106], [-77.44915652066729, 34.740567116055814], [-77.44914452306054, 34.74062182268559], [-77.44914127654289, 34.74084129288423], [-77.44897914090576, 34.74113726517717], [-77.44900413557096, 34.74135239625961], [-77.44893225541959, 34.74161270808689], [-77.4487553788159, 34.74182451551334], [-77.44842991189313, 34.74225931465598], [-77.44844296682405, 34.74230878733754], [-77.44841164773082, 34.742280708011094], [-77.44803762919727, 34.742691832042304], [-77.44812147774843, 34.743278868805], [-77.44812122135956, 34.74328098126622], [-77.44812379053474, 34.74328264522302], [-77.4487622075871, 34.743285500294064], [-77.44893739822774, 34.74311611193569], [-77.44984355987951, 34.74345510323133], [-77.44999423567732, 34.7434597012099], [-77.4502589515296, 34.74377893708755], [-77.45046817952826, 34.74403799367213], [-77.45050688591377, 34.74407114990791], [-77.45090634053635, 34.744740023075515], [-77.45097061787177, 34.744770489868586], [-77.45135382963059, 34.74496803774482], [-77.45200997422847, 34.745358218510674], [-77.4523132998684, 34.745303113572625], [-77.45304313366168, 34.74533476286116], [-77.4533633372014, 34.74511295849668], [-77.45378630820622, 34.74505319706522], [-77.45412490957584, 34.744817773752956], [-77.45392499568696, 34.74443040672894], [-77.45380104641175, 34.74414568866667], [-77.45368096839984, 34.744014649874906], [-77.45361808635016, 34.74403113206963], [-77.45314664678457, 34.743862373359434], [-77.45308691374903, 34.74385161502053], [-77.4530193595719, 34.7438010726343], [-77.45271138472688, 34.743597589976574], [-77.4526596163828, 34.743213737942426], [-77.45266344532949, 34.74318942057648], [-77.4526749288619, 34.74316636983555], [-77.45266115320632, 34.74310667143432], [-77.45267569911289, 34.74271961365574], [-77.45255098352197, 34.74259115110453], [-77.45236109739912, 34.74240447490394], [-77.45225568364768, 34.742291593407614], [-77.45184846590833, 34.74178680897649], [-77.45182526230774, 34.74173523273382], [-77.45178444298216, 34.74170395715014], [-77.4514568179647, 34.741091029609485], [-77.45146221603014, 34.74099388006807], [-77.45135894281405, 34.74095818941952], [-77.45091960268721, 34.74034440561735], [-77.45091012426582, 34.740331424719955], [-77.45090335818686, 34.740316466738115], [-77.45058924050997, 34.73967002221953], [-77.45060154425165, 34.73956734397939], [-77.4505003886631, 34.73949284868203], [-77.45019477288172, 34.73918924039715], [-77.45000201743085, 34.73899910785514], [-77.44991512819593, 34.73896094812976], [-77.44974021107714, 34.738814475968574], [-77.44925123093564, 34.738345154010155], [-77.44892047538889, 34.73830486123164], [-77.44867580813741, 34.73820392729593], [-77.44836110487478, 34.73802206039255], [-77.44806133786722, 34.73794886776261], [-77.44778662582945, 34.737791502449554], [-77.44734162249482, 34.737520282923526], [-77.44713647848154, 34.73744197414571], [-77.44673800227362, 34.736983549524204], [-77.44615275457306, 34.73644334939997], [-77.44596216136617, 34.736146332753634], [-77.44574027182439, 34.73599972616148], [-77.44541379928327, 34.735867117669386], [-77.44521171878247, 34.73611461685101], [-77.44506181856686, 34.73612864914887], [-77.44472204253267, 34.73623252508285], [-77.44468265677358, 34.736233845415946], [-77.44465097786886, 34.73611646592113], [-77.44472174227428, 34.73594344817285], [-77.44464017594655, 34.73580515378934], [-77.444883861823, 34.7354410676722], [-77.44500569159064, 34.73520062168491], [-77.44503852446388, 34.734936081777036], [-77.44492668462851, 34.73479275960029], [-77.44483780926043, 34.73468665486574], [-77.44479030733025, 34.7344032514482], [-77.44444259026977, 34.73428098016629], [-77.44431999174024, 34.73426032650231], [-77.44407929028253, 34.73425353684899], [-77.44395729386933, 34.7342359736507], [-77.44369588056406, 34.734201436481285], [-77.4434766787405, 34.73419860977943], [-77.4431541091257, 34.73427775155524], [-77.44307113949031, 34.73428386185528], [-77.44302883241124, 34.734290960607005], [-77.44288689548975, 34.73430468837585], [-77.44270499935473, 34.734302221975064], [-77.44264113212353, 34.7343291510325], [-77.44255253895278, 34.73434709234697], [-77.44233684090344, 34.7344666904936], [-77.44226227948114, 34.73445798942056], [-77.44189014005829, 34.734274193727934], [-77.44175995753835, 34.73424455152626], [-77.44162450287098, 34.734022857704716], [-77.44169965600216, 34.73390726447627], [-77.44170601113497, 34.73377182269315], [-77.44196772376542, 34.733348995856396], [-77.44146155545523, 34.73305989640055], [-77.44107354066155, 34.73282928742511], [-77.44089565211505, 34.73237063820477], [-77.44136537441072, 34.732245432137375], [-77.44166855657602, 34.73234442270555], [-77.4420553304731, 34.73241961458002], [-77.44228218393751, 34.73243950976275], [-77.44243908698286, 34.73250393362386], [-77.4426356262355, 34.73241954277784], [-77.44284355729448, 34.73241695211633], [-77.4429438934024, 34.73236839705834], [-77.44321923705564, 34.7322829450314], [-77.44360082385941, 34.73219773741804], [-77.44375446792483, 34.73171058609741], [-77.44374470696572, 34.73168898832603], [-77.44376386587628, 34.73167729019085], [-77.44378187086944, 34.73168796513751], [-77.44379294392974, 34.731694530165036], [-77.4443326992851, 34.732000113797056], [-77.44471185066413, 34.732203901433216], [-77.44510627394942, 34.732374610280644], [-77.44546018574948, 34.73253516012263], [-77.44586330895521, 34.73261622338001], [-77.44619008482022, 34.73264955206806], [-77.44641351769597, 34.732386610692984], [-77.446611559639, 34.73213153100403], [-77.44668132504749, 34.73195672379409], [-77.44695652441456, 34.73126715568485], [-77.4469428010607, 34.73112922441872], [-77.44736244512877, 34.73020490461044], [-77.44735754909507, 34.73015609316411], [-77.4475871947906, 34.72961461215304], [-77.44818792038949, 34.728436933362794], [-77.4484626166922, 34.72830609612994], [-77.44840051625721, 34.72798595511202], [-77.44820770293447, 34.72746919672627], [-77.4474928328437, 34.7273017004826], [-77.44580734193683, 34.72690222973207], [-77.44428050128147, 34.72613406088669], [-77.44495572218898, 34.72315777063624], [-77.44515035684985, 34.72267677240054], [-77.44562057526687, 34.72200342687489], [-77.4474504938199, 34.71900830562186], [-77.44892413798733, 34.717678925465165], [-77.44905806857994, 34.7169973009978], [-77.4475298632106, 34.714563946982736], [-77.447241663565, 34.71418410256743], [-77.44706926910003, 34.71367342515609], [-77.44552948392989, 34.71213360144753], [-77.44309185386108, 34.70969587425665], [-77.44121358718344, 34.70955752685238], [-77.44059172645868, 34.709475588647365], [-77.44040736779576, 34.709746299895855], [-77.44032892257111, 34.709811379775964], [-77.43988365760687, 34.710112590927544], [-77.43902272642131, 34.711590960847495], [-77.43816114503454, 34.71205755484464], [-77.43707144500284, 34.71278141319134], [-77.43690561511033, 34.7129969109091], [-77.43494195459442, 34.7121748901076], [-77.43468566128203, 34.71216551857716], [-77.43448926798918, 34.71203943923664], [-77.43353688488902, 34.71170513646329], [-77.4328080427627, 34.71127976156538], [-77.43247780463722, 34.71093481481144], [-77.43158770116901, 34.710003414883445], [-77.4315004517951, 34.709882148581286], [-77.43142319649338, 34.70893449430713], [-77.43146911549738, 34.70859947146633], [-77.43144084409668, 34.7082791371066], [-77.43147522616044, 34.70783457093837], [-77.43146923804544, 34.70777503084176], [-77.43151071484556, 34.707357203356], [-77.43152022736896, 34.70729124620017], [-77.43149105818281, 34.707139729881405], [-77.43144719457642, 34.7067066552265], [-77.43138470345859, 34.70651700721232], [-77.431426306799, 34.706286102045325], [-77.43149781438733, 34.70616529499654], [-77.43163682066768, 34.70588235151675], [-77.43181696943398, 34.70571781797349], [-77.43177425668271, 34.70546167234095], [-77.4315343914154, 34.70533490704061], [-77.43135654469097, 34.7051895906866], [-77.43115133277593, 34.705088886440706], [-77.43098883416584, 34.70500525889741], [-77.43089234982637, 34.704936904282974], [-77.4304463993158, 34.70467957616766], [-77.43044275816311, 34.70467741579108], [-77.43044178291176, 34.70467700872052], [-77.43000720650403, 34.70441348438132], [-77.42990338816895, 34.704326410690236], [-77.42946321973906, 34.70382541899953], [-77.4294186334712, 34.70378669740544], [-77.42939734370037, 34.70377519470051], [-77.4293920127073, 34.703751857106205], [-77.42921175776254, 34.70341440467614], [-77.42901263667113, 34.703060143391966], [-77.4290080643241, 34.70304486235318], [-77.42902510340923, 34.702931781807585], [-77.42906809197228, 34.702573430218386], [-77.42907668912234, 34.702523474653184], [-77.42923657866884, 34.70205674007181], [-77.42925893636661, 34.70199583904156], [-77.42930420999312, 34.701967331181805], [-77.42982683184368, 34.701667637901494], [-77.42993785897289, 34.701609882179], [-77.43006422473688, 34.70155580958659], [-77.4301703938842, 34.701508234270946], [-77.43029557899516, 34.701446750658434], [-77.43033898483444, 34.70137352695953], [-77.43019140370093, 34.70127647530272], [-77.430141742131, 34.70128793512635], [-77.43013433185011, 34.70123573429092], [-77.43011833870497, 34.70121050182578], [-77.42980461706615, 34.70092693536127], [-77.42963508529016, 34.70082396681813], [-77.42936942460135, 34.70068075571831], [-77.42935037076845, 34.70067010334617], [-77.42910399502577, 34.700576294671265], [-77.42906963841092, 34.700563168839594], [-77.42906842907271, 34.700562680273904], [-77.42882435551157, 34.700443217999904], [-77.42879733252249, 34.70039677491265], [-77.42874177034265, 34.700170102924055], [-77.42872765061085, 34.700037187934925], [-77.42868683288671, 34.699671264080166], [-77.42867872899033, 34.69961121921336], [-77.4286678606007, 34.69958519210738], [-77.42863270179181, 34.69947651793444], [-77.42855781765657, 34.69926717926023], [-77.42869202206838, 34.69915928899556], [-77.42880542128076, 34.69907422717771], [-77.4288665649839, 34.69905019360705], [-77.42896723804627, 34.69904444429193], [-77.42919449859319, 34.699024344833845], [-77.42927923019704, 34.69903764113076], [-77.42950599752879, 34.699055286304215], [-77.42985722330327, 34.69911944126702], [-77.43010191166391, 34.69921076434699], [-77.43033327982235, 34.69926489175956], [-77.43073825605387, 34.69922652417931], [-77.43119633496006, 34.69917994338314], [-77.43139558301463, 34.699169770658585], [-77.43197911166023, 34.699065818839955], [-77.43203111427125, 34.699048776935015], [-77.43208140851041, 34.6990145152857], [-77.4326350692229, 34.69854033289523], [-77.43288176325001, 34.698263311104576], [-77.43284292894035, 34.69787345213949], [-77.43288202884771, 34.69770434774853], [-77.43295470068603, 34.697567180669644], [-77.43299680054339, 34.69718542108285], [-77.43306924282093, 34.697006610344516], [-77.43309028328004, 34.69693857937706], [-77.43310079606456, 34.69687305132912], [-77.43313218643095, 34.69667370246109], [-77.43307643882343, 34.6962705821106], [-77.4330952646323, 34.69610173722901], [-77.43307193573804, 34.695992312552946], [-77.43306004153372, 34.69563218464147], [-77.43303803816346, 34.695522672209805], [-77.43307975896943, 34.6950962638895], [-77.43311217513748, 34.69498953824908], [-77.43315015060372, 34.694895487349356], [-77.43330587596617, 34.69449821097162], [-77.4334797122068, 34.69418164950017], [-77.43354967496742, 34.69405295159972], [-77.43355942260001, 34.694027809607476], [-77.43358556286688, 34.69399237959506], [-77.43390634246818, 34.69359005663236], [-77.43407199960902, 34.69341114658873], [-77.43439889411204, 34.69320322333266], [-77.43470330277695, 34.69294748171744], [-77.43487830114074, 34.692811796749154], [-77.43522474003058, 34.69258014526561], [-77.43537955314602, 34.6925572918535], [-77.43560319837925, 34.69250620166229], [-77.43609406259738, 34.69222964244258], [-77.43630390876325, 34.69196500582272], [-77.43652928242997, 34.6917119003278], [-77.43661669066073, 34.69158837527262], [-77.4367428133036, 34.69122751198742], [-77.436934366734, 34.69110077057522], [-77.437171039504, 34.69099896678585], [-77.43757520540055, 34.69095949884899], [-77.43762117802063, 34.69094180998262], [-77.43811662041895, 34.69104901086507], [-77.43821996978957, 34.69108714093673], [-77.43831023880767, 34.69112754304365], [-77.43840138586566, 34.69124835290908], [-77.43870659628459, 34.69162026611268], [-77.43878548058669, 34.691821970305966], [-77.43895499983871, 34.692000947876565], [-77.43882114720643, 34.692200484409504], [-77.4387905302003, 34.692502487846376], [-77.4385528559002, 34.6928118780668], [-77.43879261239327, 34.693538442680264], [-77.43880863421498, 34.69362690125447], [-77.43857971774389, 34.69458627578856], [-77.43885756742617, 34.69525082093472], [-77.43916574576284, 34.69598790728009], [-77.43919031446933, 34.69611701832469], [-77.43925363476755, 34.696375764216484], [-77.4397565124373, 34.69843057866042], [-77.43917779781792, 34.69969346691424], [-77.44016571504558, 34.70208521687494], [-77.44061352375462, 34.702665439368005], [-77.44302801272633, 34.70404635450906], [-77.44064268650693, 34.70414945187943], [-77.44108793374782, 34.70603870288532], [-77.44131992266776, 34.706958139287195], [-77.44279070173671, 34.70765918774486], [-77.44409824228751, 34.706216269560564], [-77.44617628200469, 34.70514666349652], [-77.44883079180835, 34.70556585060387], [-77.4493450292593, 34.70580350991388], [-77.44987823363905, 34.705940701831615], [-77.45278277587921, 34.70604164955449], [-77.45318700610287, 34.70536050091128], [-77.45479742539497, 34.704679013107054], [-77.45544478495586, 34.70441024742493], [-77.45562812533825, 34.70397744615937], [-77.45650934304932, 34.703172113283166], [-77.45651323530551, 34.703168710023185], [-77.45651411950037, 34.7031671774366], [-77.45651818815999, 34.70316040564253], [-77.45674543386505, 34.70279758044087], [-77.45681795177617, 34.702716182027615], [-77.4569680620073, 34.702712615442536], [-77.45722237215634, 34.70282918792212], [-77.45725124339332, 34.70284152607262], [-77.45726787814762, 34.70285537820332], [-77.45728066687144, 34.702877847657675], [-77.45728528904348, 34.70293195520257], [-77.45732118001925, 34.70317149739374], [-77.45724854127329, 34.70330989351777], [-77.4571999400037, 34.703408633586434], [-77.45695324947552, 34.70387250053125], [-77.45672673125813, 34.70351445537429], [-77.45694773862495, 34.70388193788963], [-77.45695386455087, 34.703885452492685], [-77.45748483565988, 34.70425066754663], [-77.45762976039613, 34.70449003421302], [-77.45801086810755, 34.704648068009426], [-77.45845274835699, 34.70483880747398], [-77.45858735585149, 34.70487091109233], [-77.45958973002274, 34.70520101890362], [-77.45977207852629, 34.70520677308964], [-77.46040771838298, 34.70504223097039], [-77.46045875840915, 34.7050483557871], [-77.4605516559507, 34.70505569958138], [-77.46077327430737, 34.70506887898687], [-77.46093021151785, 34.70527081859406], [-77.46095331731456, 34.70533441741646], [-77.46098555474413, 34.70544316185752], [-77.46105622130244, 34.705737893745024], [-77.46145233575645, 34.7060121904381], [-77.46188172097688, 34.70628606837834], [-77.4620129610525, 34.70632343345654], [-77.46226005989215, 34.70657452567517], [-77.46226064620868, 34.70657523155331], [-77.46227540462641, 34.706597741915004], [-77.46248306277761, 34.70691447379155], [-77.46249204075087, 34.706924101682155], [-77.46249214316597, 34.70695169513046], [-77.46241590421297, 34.707466738942834], [-77.462265541584, 34.70791159045711], [-77.46222966798899, 34.7080177249829], [-77.46207793320059, 34.708466633321024], [-77.4619720181744, 34.70909163821478], [-77.46167753221377, 34.70994293677609], [-77.46251089617817, 34.710853765981255], [-77.46222273697961, 34.711501066331884], [-77.46283140495666, 34.71236253830444], [-77.46487325376245, 34.71167886652646], [-77.4668568831198, 34.711089854793244], [-77.46785738089655, 34.7091479647845], [-77.46824974799446, 34.70838643885318], [-77.46842804275845, 34.707677241378875], [-77.46883500921035, 34.70516793737285], [-77.46877454569542, 34.704098046766404], [-77.46803434556081, 34.7032283158694], [-77.46624785776676, 34.70267681482741], [-77.46566858639166, 34.70254401640338], [-77.4647573697432, 34.701513502219655], [-77.46450401124412, 34.701269414373414], [-77.46370379277684, 34.70047215198735], [-77.463422085084, 34.70028535705932], [-77.46303131026181, 34.6998560458271], [-77.46176937078297, 34.698295477141464], [-77.46121695520739, 34.69763468964595], [-77.46038216468214, 34.69669461700289], [-77.45981978874065, 34.696171597139845], [-77.45828594084142, 34.69528716818881], [-77.45761311358311, 34.69493757336698], [-77.45701502814488, 34.695016239241305], [-77.45670122738294, 34.69540848567216], [-77.45559937412675, 34.695693412269904], [-77.45507068905412, 34.69595672234781], [-77.45487127393997, 34.6959988877639], [-77.45472674131247, 34.696055312769246], [-77.45450281964018, 34.696144430269094], [-77.45416491057472, 34.69619920642009], [-77.45408269879164, 34.696205567653585], [-77.45404259177545, 34.69620515246909], [-77.45396214394435, 34.696199859272156], [-77.45341992724936, 34.69614227800861], [-77.45304549118745, 34.696006057230925], [-77.45254748362919, 34.69589769249292], [-77.45225478340849, 34.69573915004157], [-77.45199166185029, 34.695439748867784], [-77.45186147741418, 34.69529127156863], [-77.45130675005613, 34.694641382685624], [-77.45130070036289, 34.694632562392265], [-77.45129500083017, 34.69462568507697], [-77.45096601025256, 34.69396329092913], [-77.45096463853099, 34.693880025638116], [-77.45066463443712, 34.69329895252836], [-77.45061368641952, 34.69313370690705], [-77.45050869518091, 34.69291223689552], [-77.45031965194491, 34.69236362591123], [-77.45015239551202, 34.69200190510928], [-77.45013662351438, 34.691982637975556], [-77.44956458444459, 34.691786045543054], [-77.44955296250077, 34.69178494785621], [-77.44954596366455, 34.69178347600289], [-77.44900106949682, 34.69157490781604], [-77.44897616236632, 34.691563532958], [-77.44871438955388, 34.69124818143588], [-77.44855394413204, 34.6908842091085], [-77.4485517114326, 34.690869682391174], [-77.44855083920326, 34.69081819611598], [-77.44854342622799, 34.69042671873108], [-77.44850099694685, 34.69030668532286], [-77.44853704260363, 34.69013491563097], [-77.44855813634626, 34.689767641231974], [-77.44896620784172, 34.68938148618792], [-77.44898916481941, 34.689378575640184], [-77.44901819369518, 34.689369428924714], [-77.44975458075756, 34.689134162709635], [-77.45113287369071, 34.68899051885359], [-77.45139571502214, 34.688825589562114], [-77.45170630737485, 34.68876943667019], [-77.45302379784036, 34.68849566638996], [-77.45447766982143, 34.688049022755365], [-77.45463262117656, 34.68797764390741], [-77.45566591600146, 34.686832656723034], [-77.45588934406994, 34.68618083836922], [-77.45632465089798, 34.68539169125961], [-77.45642001203379, 34.6852483056671], [-77.45646176336732, 34.68514313173756], [-77.45668861508729, 34.68422417643217], [-77.4569005995977, 34.6833653976357], [-77.45696245281587, 34.68320189153487], [-77.45703503124713, 34.68308997461337], [-77.45731887174254, 34.682652281080976], [-77.45755151543389, 34.682289767232035], [-77.45750252366803, 34.682167105280534], [-77.45716217915538, 34.68158850598977], [-77.45682238195093, 34.68116920858073], [-77.45668852011588, 34.68098499138425], [-77.45643901802043, 34.68072317167195], [-77.45641841839003, 34.68069271731122], [-77.45635196169158, 34.680631816234104], [-77.45607632953518, 34.68042096098702], [-77.4559977543607, 34.68034788519842], [-77.45582983763491, 34.680231616648406], [-77.45555547709773, 34.679973842268375], [-77.45543701476784, 34.679864660310145], [-77.45518857630965, 34.67960584079035], [-77.45515780820197, 34.67957498049353], [-77.45514543144694, 34.67956041754613], [-77.45510190568434, 34.67949567841042], [-77.45494425544399, 34.67926658581536], [-77.45481728642835, 34.67904691807955], [-77.4546633551239, 34.67880289868663], [-77.4548918376918, 34.67872941248115], [-77.4551591463279, 34.678629185918126], [-77.45537874898474, 34.67858623256334], [-77.45543033302394, 34.67845160798577], [-77.45545039986702, 34.67838378385131], [-77.45550160609804, 34.67821071589806], [-77.45556971887036, 34.677980507399894], [-77.45559641171826, 34.67789029081152], [-77.4556575077826, 34.67768379511418], [-77.4556890367503, 34.67757723077036], [-77.45560455248253, 34.677273771172835], [-77.45559861328941, 34.67717770016397], [-77.45537399605757, 34.67692850040835], [-77.45484056064033, 34.67638736763989], [-77.45480640703092, 34.67635175988339], [-77.45478949689101, 34.67633747600675], [-77.45475427374942, 34.67630828282043], [-77.45434358460446, 34.675967901796014], [-77.45395018598158, 34.6758572883095], [-77.45376894180065, 34.67575563207651], [-77.45346426981271, 34.675906295327245], [-77.45346908168354, 34.67599442024171], [-77.45347561570424, 34.676114061014204], [-77.45349875476032, 34.676537721295816], [-77.45350879779593, 34.67672162594374], [-77.45349308891085, 34.67700715881084], [-77.45349320492417, 34.677095334430476], [-77.45348502746432, 34.677152294501894], [-77.453421921587, 34.677484914439304], [-77.45339180364054, 34.677739079868076], [-77.45323272711074, 34.678239746411606], [-77.4532225873184, 34.67828025704177], [-77.45321930527321, 34.67829815640778], [-77.45320450137166, 34.6783323303753], [-77.45296909394474, 34.67883006901533], [-77.45285866946172, 34.6789901824325], [-77.45279237317848, 34.679141402137205], [-77.45297605496519, 34.67945187474591], [-77.452982035182, 34.67946051001784], [-77.45320216867775, 34.679763127696205], [-77.45333281046786, 34.67994635063732], [-77.45342429582755, 34.68006908107684], [-77.45345717264331, 34.68023941234186], [-77.45352948627507, 34.680408362444524], [-77.45363418175191, 34.68092065090296], [-77.45373513972784, 34.68111592969399], [-77.45380388022227, 34.68151257431836], [-77.4538117482561, 34.68154172056589], [-77.45380324621023, 34.68154683488516], [-77.45375606473868, 34.68200005611877], [-77.45374790794094, 34.682078411694825], [-77.45374194743758, 34.682194164179975], [-77.45375099861434, 34.68244860426213], [-77.45380206611698, 34.68262728801835], [-77.45381085618665, 34.682646822922656], [-77.453830971515, 34.68266644816918], [-77.45396413299726, 34.68280602753384], [-77.45404781923631, 34.68288544902268], [-77.45429738296582, 34.68338846665994], [-77.45415273520466, 34.68362012899641], [-77.45398913126539, 34.68383973399959], [-77.45390402440628, 34.683953971506305], [-77.45373392762154, 34.683971476118515], [-77.45351395692805, 34.684064111369274], [-77.45308735731165, 34.68408355973654], [-77.45307646579424, 34.6840967631478], [-77.45305881766778, 34.684090364341706], [-77.4530375904443, 34.68408582845578], [-77.45242381542855, 34.68407048240311], [-77.4521754612986, 34.68399942488555], [-77.4520839082009, 34.68396994432301], [-77.45182598269352, 34.6839220085085], [-77.45142217225877, 34.68386756459821], [-77.45120225943789, 34.68386310587834], [-77.45111873527766, 34.68388786073767], [-77.45095176365311, 34.68389612487789], [-77.45067729087256, 34.68391404497464], [-77.45055055206544, 34.68390100958833], [-77.45040050811627, 34.68384777006906], [-77.45011790046158, 34.68374749285237], [-77.44995455550136, 34.68374618794666], [-77.44982254198536, 34.68364269046255], [-77.44958129112018, 34.68341708517568], [-77.44944642757373, 34.68328741636502], [-77.44891602146888, 34.68312838001559], [-77.44880984807081, 34.683105070228414], [-77.44853944841475, 34.683052901416104], [-77.44829688941759, 34.68301437347104], [-77.44824785307506, 34.68300057508155], [-77.44807197870973, 34.68303439980741], [-77.44787574366431, 34.68307371420526], [-77.44761188537639, 34.68322651493073], [-77.44756067347541, 34.683269773365446], [-77.4475212591058, 34.683297504686905], [-77.44726548695701, 34.68357159105841], [-77.44707027837029, 34.683657365291836], [-77.44690578864828, 34.683731354825575], [-77.44672510654124, 34.6838349992634], [-77.4465747987327, 34.68393803466443], [-77.44644963671502, 34.6839994261043], [-77.44596013126004, 34.68426462274023], [-77.44588822277197, 34.68431120577911], [-77.44581744130464, 34.68433744688425], [-77.44549347534078, 34.684413694661444], [-77.44524430337958, 34.684524236152654], [-77.44512362561593, 34.68455687342526], [-77.44506443830679, 34.684633233289745], [-77.44480674769522, 34.68478662623816], [-77.44447119890597, 34.68498191554379], [-77.44446942758246, 34.684982971864166], [-77.44446805881019, 34.684983772241715], [-77.44445822224812, 34.68498969274388], [-77.44417285591717, 34.68516008530554], [-77.44413440376867, 34.68518307173907], [-77.44408331591406, 34.68521534403406], [-77.44388668526537, 34.68533955583912], [-77.44382629808256, 34.68542716617388], [-77.44365782426942, 34.68577027804194], [-77.44365868059639, 34.68581887607855], [-77.44356076347843, 34.68625721286797], [-77.44357878505615, 34.686349975122155], [-77.44353884333566, 34.68645265502185], [-77.44350930209626, 34.68660519968245], [-77.44334489326323, 34.686661005213324], [-77.44318984197241, 34.68662992236041], [-77.44287856279176, 34.68654202811479], [-77.4427910403873, 34.686360381326466], [-77.4427173058682, 34.68616294070857], [-77.44268248276225, 34.68603662749003], [-77.44250720809889, 34.68580424422753], [-77.4423839297877, 34.685552328457], [-77.44233181869959, 34.68543105772737], [-77.44232385416034, 34.68535221451143], [-77.44232377792349, 34.685214471868946], [-77.44232149292661, 34.684988959046045], [-77.44231949462531, 34.68479165616236], [-77.44236630550161, 34.68453631798004], [-77.44236878654264, 34.684522804862056], [-77.4423270966627, 34.68423527988363], [-77.4423293442619, 34.684092861646164], [-77.44221468279326, 34.68392175711391], [-77.44181270352139, 34.683496401969755], [-77.4417806001598, 34.683429141757586], [-77.44177154511706, 34.68323835045854], [-77.44167866689325, 34.68341242628857], [-77.4416761379586, 34.68344865515651], [-77.44167514597986, 34.683473168050604], [-77.44153976973897, 34.683960013360775], [-77.44153471069511, 34.683978206448195], [-77.44146893084866, 34.68421476445575], [-77.44143606433069, 34.684398441722216], [-77.44142240279248, 34.68447150129772], [-77.44142150547432, 34.68447770158999], [-77.44142161402507, 34.684487636218726], [-77.44140193147068, 34.68492645525941], [-77.44141501771166, 34.68503446942315], [-77.44144372824361, 34.68527145468739], [-77.44145037881658, 34.68532635091105], [-77.44144302488644, 34.685355707378946], [-77.44143536515735, 34.685600619522425], [-77.44129549988638, 34.685776863203245], [-77.4411924386422, 34.685906729163506], [-77.44110799983918, 34.68604520276702], [-77.44087105722897, 34.68635216621274], [-77.44079612024406, 34.68645602902147], [-77.44075906117102, 34.686482244050275], [-77.44048380747381, 34.686583336177044], [-77.44041113807131, 34.6865744910127], [-77.44017630461511, 34.68653875719659], [-77.44001373891226, 34.686221659551705], [-77.44008242736297, 34.68603723265067], [-77.44009907404649, 34.685971975820024], [-77.44009739008196, 34.68591747302323], [-77.44010003889488, 34.68569279292277], [-77.44012516543498, 34.685359391096625], [-77.44012561172092, 34.68514269436633], [-77.44014206312269, 34.685006013141134], [-77.44016074777565, 34.68487545955594], [-77.44010065356157, 34.68458469069401], [-77.44009994120609, 34.68457719285837], [-77.4400987354454, 34.68457425796087], [-77.44007997575108, 34.68453783648624], [-77.43991592561542, 34.68420760899656], [-77.4397113852927, 34.683935374605014], [-77.43966490023786, 34.68387578740638], [-77.43966060790221, 34.6838677920501], [-77.43965581666183, 34.68386035453321], [-77.43953576694727, 34.68347350459778], [-77.43943611529684, 34.68322449434093], [-77.43943406101943, 34.683069560612665], [-77.43930546388859, 34.682903029575414], [-77.43912927491436, 34.68275039568345], [-77.4387910197201, 34.68246626292992], [-77.43872236346822, 34.682415883936315], [-77.4383963059649, 34.68216358149121], [-77.43830950103259, 34.68191566986304], [-77.43827450238572, 34.681700237674576], [-77.4380998136713, 34.681394554181296], [-77.43809029135673, 34.68135630175188], [-77.4379117582206, 34.68107544187233], [-77.43788478211206, 34.681037921541126], [-77.43783492687466, 34.680987484017294], [-77.43766619352392, 34.68081678005102], [-77.43735398062324, 34.68081311075881], [-77.4373470815994, 34.680812409596136], [-77.43734361742565, 34.680812745471265], [-77.43733583754845, 34.680812962674224], [-77.43689982123058, 34.68083501958638], [-77.43669664911029, 34.680845874531244], [-77.43640528207571, 34.68077434296809], [-77.43639195752577, 34.68076831289987], [-77.43617280510799, 34.680441684866224], [-77.43616073619661, 34.6804184388776], [-77.43613482621065, 34.68039298171302], [-77.43591346340162, 34.680230674713584], [-77.4357737173435, 34.68013360216666], [-77.43563757808923, 34.68007686286806], [-77.4354926801967, 34.68003023127509], [-77.43534538676742, 34.67997942725156], [-77.4351971164184, 34.679927904828546], [-77.43505498574723, 34.67987580312307], [-77.43485917808127, 34.67974236136151], [-77.43445009405708, 34.679751839852884], [-77.43430045785009, 34.67975149057789], [-77.43421157068778, 34.679892912862016], [-77.43410042196355, 34.67996106311583], [-77.43408439641449, 34.67997130480334], [-77.43406211567213, 34.67998554400035], [-77.43381772710205, 34.68014172788662], [-77.43375036463262, 34.68017301020527], [-77.43367806033834, 34.68020567745053], [-77.4335723903298, 34.68025594855216], [-77.43338168803032, 34.68026876467197], [-77.43335472634169, 34.68027400028995], [-77.43331539294383, 34.68026700009718], [-77.43304557742984, 34.68017708223425], [-77.43278489540769, 34.68009020732014], [-77.43269871933596, 34.68007801960893], [-77.43247934467044, 34.67991947504844], [-77.43230849003534, 34.68005914870582], [-77.43216444882742, 34.680122589642856], [-77.43190544279366, 34.680148024151634], [-77.43176256517306, 34.68018226371896], [-77.4316598371837, 34.680225639320895], [-77.43153516308487, 34.68029047169414], [-77.43138386607019, 34.68040865269342], [-77.43138075834175, 34.680411946119335], [-77.43137292324367, 34.68042167512543], [-77.43124868280273, 34.68056992712971], [-77.43113925751632, 34.68072894615317], [-77.43111138208754, 34.68087241731138], [-77.43107881412632, 34.68104003719305], [-77.43098201611295, 34.681240964196846], [-77.4308979069442, 34.68135682084774], [-77.43085246119617, 34.681417802412994], [-77.43067780835145, 34.68171692715155], [-77.43062863601564, 34.68179970323927], [-77.43061954723669, 34.68181853210333], [-77.43058313830697, 34.68185383705999], [-77.43033908685146, 34.68207415243019], [-77.43007550379485, 34.68218732188141], [-77.42998115314887, 34.682236799249424], [-77.42988361877028, 34.682247181709954], [-77.42921651858687, 34.682424231473654], [-77.42918948669212, 34.682431583745654], [-77.42918616964413, 34.68243274481964], [-77.42918331527073, 34.68243434745664], [-77.42917311469702, 34.68244234693652], [-77.42886910881876, 34.682662221122264], [-77.42878288472048, 34.68272954021127], [-77.42866702565286, 34.68281284224667], [-77.42855861950801, 34.6829024444543], [-77.42851081370702, 34.68294195777431], [-77.42842608670541, 34.68300810751553], [-77.42839608960718, 34.68301064549069], [-77.4283607585613, 34.6830811371791], [-77.42824656695618, 34.683140113499974], [-77.42809622851087, 34.68317227184088], [-77.42787288633303, 34.683277021578476], [-77.42766451183692, 34.68327280070251], [-77.42755391149664, 34.68311813322057], [-77.42740628849901, 34.68293095527259], [-77.42728396046036, 34.68278441712552], [-77.42719593419628, 34.68267766793406], [-77.42713939032632, 34.68262156356204], [-77.42699577537776, 34.68259080452618], [-77.42687548688525, 34.6826778563914], [-77.42681698622808, 34.68272483436782], [-77.42683216835906, 34.682827556016896], [-77.42685904010793, 34.68296175508647], [-77.42688646467036, 34.68302867371237], [-77.42695810136141, 34.68327710013154], [-77.42697792358575, 34.68334020099365], [-77.42693991494048, 34.68337438097689], [-77.4267135757209, 34.683527277223526], [-77.42667120148575, 34.68355590173975], [-77.42659816905665, 34.683636199446596], [-77.42651082949916, 34.683735900008855], [-77.42643491104073, 34.68391745488086], [-77.42636163135354, 34.684062097059005], [-77.42625483976667, 34.68420543784375], [-77.42620454382613, 34.6842886957154], [-77.42615527066876, 34.68445014956369], [-77.42609461172196, 34.68461990898735], [-77.42609719576153, 34.68470937493094], [-77.42608907686336, 34.684847807133565], [-77.42594800780793, 34.684936731625996], [-77.42593249943404, 34.68496574965255], [-77.42592243911832, 34.68513813746026], [-77.4259674398347, 34.6852230669103], [-77.42609613157299, 34.68537106721878], [-77.4262272653549, 34.685457303420776], [-77.42623492685436, 34.685460229971405], [-77.42638614592734, 34.68547608184607], [-77.42647930833242, 34.68548584762971], [-77.42669711679804, 34.685508679436936], [-77.42682121070159, 34.68552168728188], [-77.42697528345553, 34.68554887367903], [-77.42700360334803, 34.68555677328695], [-77.42703891605767, 34.685564957198], [-77.427306140134, 34.68561851694167], [-77.42739207014748, 34.68564076393573], [-77.42745517664808, 34.685657101994394], [-77.42752650021347, 34.685702214911764], [-77.42759829239779, 34.68571614811282], [-77.4276564454077, 34.68575362047095], [-77.4276776986962, 34.68582124967746], [-77.42764579776104, 34.68589726210289], [-77.42762916943994, 34.68594404468539], [-77.42760044983794, 34.686000179509776], [-77.42756936116331, 34.686062894734526], [-77.42744450261773, 34.68624761237629], [-77.4274200934441, 34.68627612788263], [-77.42740926828199, 34.686286438380705], [-77.42714863121002, 34.68658018257725], [-77.42707083029546, 34.68672714182672], [-77.4269818639651, 34.686927902171234], [-77.4268061329276, 34.6871936371076], [-77.42671185249179, 34.68736184772821], [-77.42653755588152, 34.68765877613303], [-77.4264813379541, 34.687732861724335], [-77.42630118519601, 34.68810471893548], [-77.42628565614461, 34.68812974878275], [-77.42627463096767, 34.68814280214498], [-77.42625124258971, 34.688156645513104], [-77.4259680063081, 34.68838938270335], [-77.42577050841338, 34.68850864873245], [-77.42563966574443, 34.68860046073231], [-77.42543703560455, 34.68875573387581], [-77.4252195880929, 34.688875036990645], [-77.42504890268648, 34.68913039705608], [-77.42492630269842, 34.68933153562944], [-77.42474710339795, 34.6896459900087], [-77.42466174730694, 34.68979808360707], [-77.4245965396828, 34.689886628904624], [-77.42436962447874, 34.69022964807229], [-77.42435754610405, 34.69024380228148], [-77.42434771235952, 34.69024732622958], [-77.42434898921243, 34.690258492242506], [-77.42407365935188, 34.69052757676716], [-77.42393577957691, 34.690662327879785], [-77.42392058142727, 34.69067403918156], [-77.42378050811364, 34.69079620699268], [-77.42368784487317, 34.690855149574816], [-77.42351304230603, 34.69097501585497], [-77.42344337980421, 34.69099293607163], [-77.42338581744286, 34.691029051261175], [-77.42334160295485, 34.69112522241514], [-77.42316155773923, 34.69128009407973], [-77.42308661335451, 34.69134124427838], [-77.42300995271302, 34.69140618927305], [-77.4229645951004, 34.69144080392821], [-77.42285145587606, 34.69152101624834], [-77.42269333116681, 34.69162546569978], [-77.4226817338618, 34.69163300818164], [-77.42252252195281, 34.69173114975335], [-77.4223609712775, 34.69178875701795], [-77.4221840974171, 34.69192576767512], [-77.42213359027912, 34.691988767878634], [-77.42189358259826, 34.692141853508964], [-77.42185673793759, 34.692138479439045], [-77.42175993976286, 34.692137616367894], [-77.42139294878625, 34.692128120274674], [-77.42123513742618, 34.69220257618437], [-77.42095887273405, 34.692416505312174], [-77.42096504835928, 34.692563216227], [-77.42092214797546, 34.69285427299764], [-77.42093063154272, 34.69296571594753], [-77.42091511257681, 34.69303041824442], [-77.42073004367269, 34.69328814562313], [-77.4205783922132, 34.69336437227325], [-77.42055554257152, 34.6933768134594], [-77.4205315005129, 34.693385195643444], [-77.42037120418814, 34.693449396115724], [-77.42021770949287, 34.693503388725034], [-77.41998962507587, 34.69357346652575], [-77.41986421648639, 34.69361756502884], [-77.41979980078575, 34.69363708063928], [-77.41973118225233, 34.693664344820995], [-77.4196203910056, 34.69371772321912], [-77.4195003598808, 34.693767535359875], [-77.41942350382118, 34.69376978916452], [-77.41924688134308, 34.693726445745895], [-77.41919587867066, 34.69371240213717], [-77.4191478887703, 34.6936931249002], [-77.41890471352508, 34.69361127206456], [-77.4185532234796, 34.69346876762151], [-77.41832110556412, 34.69341343117977], [-77.41801131576852, 34.69334920950095], [-77.41772277971293, 34.69326643293108], [-77.41747707763102, 34.693205114168], [-77.4174230149342, 34.69319501460603], [-77.41735202069802, 34.69317790811669], [-77.41721774508119, 34.6931550654745], [-77.41711207932065, 34.69316218021167], [-77.4169980654823, 34.693169856906756], [-77.41686123226312, 34.69321951508666], [-77.41689524982044, 34.69336847037552], [-77.4168981951756, 34.69351199536379], [-77.41687313598926, 34.693713605188094], [-77.41687071009439, 34.693781930063025], [-77.41683432577076, 34.693840245937416], [-77.41645595666816, 34.69452750269805], [-77.41626091206844, 34.694686810682406], [-77.41611475457641, 34.69471760702638], [-77.41600575163426, 34.694769731244236], [-77.41574064545146, 34.69485389950383], [-77.4152228868697, 34.69526002850348], [-77.41505238808409, 34.69522454207961], [-77.41506539327563, 34.695386794302244], [-77.41489667556152, 34.69554129992415], [-77.41484450694007, 34.6955890741722], [-77.41483292449489, 34.69561372740852], [-77.4148031567402, 34.695854160319264], [-77.41478517542546, 34.69603416812925], [-77.41487816697502, 34.6964357749004], [-77.41487780875725, 34.69643937989599], [-77.41454367937499, 34.69649899785833], [-77.41447460612169, 34.696523920085454], [-77.41415431322989, 34.69673696895604], [-77.41414799949352, 34.69673790651077], [-77.41414696968823, 34.69674281727416], [-77.41414837858099, 34.69674616443158], [-77.41415005136474, 34.696751686900754], [-77.41419562260133, 34.69694963340983], [-77.41424545840609, 34.69705682406162], [-77.41428152386473, 34.69713697660862], [-77.41444383167008, 34.697405772345604], [-77.41449011769811, 34.697496316026985], [-77.41453668030914, 34.697629857161004], [-77.41465494847345, 34.697873911466836], [-77.41473075635203, 34.698065248648035], [-77.41478011255214, 34.69826805368457], [-77.41491104760958, 34.69855040147308], [-77.41494846772933, 34.69864418026459], [-77.41497238363279, 34.698708877250375], [-77.41510245729371, 34.69899609039677], [-77.41511856413766, 34.699019580338465], [-77.41533549643715, 34.69929801877109], [-77.41538086795538, 34.69935651638236], [-77.41544135384255, 34.6994320291823], [-77.41557110907706, 34.69959106554785], [-77.41573327309445, 34.699655866772744], [-77.4158619017794, 34.69969354976586], [-77.41595764233567, 34.69969702010327], [-77.41622748822181, 34.69970701846866], [-77.41642576679938, 34.69971441578477], [-77.41649650883454, 34.69971540553721], [-77.41654286513143, 34.69976449850457], [-77.41659927058862, 34.69983706576255], [-77.4166893590778, 34.69992656648974], [-77.41670499285247, 34.700102161518174], [-77.41670877095464, 34.70014164808479], [-77.4167077354671, 34.70017546078256], [-77.41665713840041, 34.70041640524569], [-77.41666941356789, 34.70060442510591], [-77.41660630016104, 34.70075763892346], [-77.41648610147888, 34.70091567746753], [-77.41646733982012, 34.70092293078221], [-77.4162914792635, 34.70099091875322], [-77.41625485290247, 34.70100054027504], [-77.41611428905807, 34.701035442657464], [-77.41606184926248, 34.701046828324515], [-77.41589088235783, 34.701083948416], [-77.41557475054707, 34.70115599468665], [-77.4154904627233, 34.701177268786], [-77.41542733373319, 34.701194332409536], [-77.41519058741657, 34.70122131504134], [-77.4150956426015, 34.70123306912636], [-77.41506108036819, 34.701223231784425], [-77.41479063803476, 34.701179644790145], [-77.41425463122626, 34.70116537957322], [-77.41405546149211, 34.701075024471606], [-77.41358419443503, 34.70091907880914], [-77.41348700415926, 34.70089356997585], [-77.4131672380407, 34.70072625321517], [-77.4130319010619, 34.70061293903964], [-77.41290628130074, 34.70038875199864], [-77.41256730302935, 34.700137741787394], [-77.41253613813588, 34.700111609600334], [-77.41252160850733, 34.70010285531257], [-77.4124688219782, 34.70006950282901], [-77.4120891294277, 34.69983689875333], [-77.41208966842783, 34.69944008884121], [-77.41208698221713, 34.6993914449832], [-77.41209005877147, 34.69937788911878], [-77.41209239549538, 34.69936114078736], [-77.41214881038806, 34.69891930570637], [-77.41208634381567, 34.69881747862736], [-77.41189127556544, 34.698580378659685], [-77.41175260898531, 34.6983908016802], [-77.41166197052156, 34.69822967678894], [-77.41159543628058, 34.69808662626955], [-77.4114903992612, 34.69785489357633], [-77.41137225008215, 34.69749105723664], [-77.41135482923579, 34.69744333766604], [-77.41125156265278, 34.697061819835824], [-77.4111819827876, 34.69682375285649], [-77.41111589128711, 34.696672063764474], [-77.41102431429283, 34.69647938567101], [-77.41094759863547, 34.69629591440186], [-77.41092075467029, 34.69617324556459], [-77.41085639076395, 34.69588761209048], [-77.41085246190703, 34.695869795510866], [-77.41084008447903, 34.69581694372816], [-77.41078107556038, 34.69556526219548], [-77.41076097653941, 34.69548106435612], [-77.41072002713923, 34.69531702958615], [-77.41064709133332, 34.695082221616985], [-77.41060493407255, 34.694944520320234], [-77.41062962757239, 34.6947246279734], [-77.41063922567291, 34.69463915635172], [-77.41062586917933, 34.694392729563305], [-77.4106749736869, 34.69417789871533], [-77.41071240245307, 34.69411187316276], [-77.41100653676692, 34.69396680072964], [-77.41106375367633, 34.69393836544949], [-77.41112799158788, 34.69390833737538], [-77.41135603751763, 34.69380952453487], [-77.41141773734955, 34.69376916448065], [-77.41155880554318, 34.6936009100657], [-77.41159825226504, 34.6933464236126], [-77.41160018827328, 34.69333583257473], [-77.41160263627248, 34.693323438168605], [-77.41165025071255, 34.69307379101725], [-77.41168147023954, 34.69286536185665], [-77.41169280671446, 34.6928091240813], [-77.41169136794456, 34.69272043763087], [-77.41168368547017, 34.692526376031125], [-77.41170226384669, 34.69241033929721], [-77.41158553313416, 34.6923284029862], [-77.4113650188215, 34.69210467079525], [-77.41133597713362, 34.69208361915995], [-77.41128017810854, 34.69204795029695], [-77.4110644203495, 34.69191480960125], [-77.41093577205567, 34.691837378718134], [-77.41091866157629, 34.69169959532746], [-77.41083242761603, 34.69143414149217], [-77.41085546441107, 34.69135333141567], [-77.41098544344058, 34.691163846130046], [-77.41127986252624, 34.69080115047121], [-77.41129636444276, 34.69071351875582], [-77.41131767589235, 34.69061303158486], [-77.41146750478325, 34.69049384157786], [-77.41139775611197, 34.690305624335146], [-77.41135334712963, 34.69017434169544], [-77.41126464700515, 34.689914802736354], [-77.41111270944953, 34.689535031004624], [-77.41111224476393, 34.68953203096856], [-77.41111190116791, 34.68953074737992], [-77.41090164802083, 34.6891735337645], [-77.41078033514324, 34.688855617235546], [-77.41073763066126, 34.68879560786951], [-77.41072250994087, 34.68866944505002], [-77.4106961452594, 34.688366567397885], [-77.41066556391362, 34.68825634188082], [-77.41062285042898, 34.68798034507339], [-77.41061776680486, 34.687952917339054], [-77.4106138260359, 34.687938257384715], [-77.41051716147024, 34.68764529813592], [-77.41050246146186, 34.68755467136458], [-77.41058142815262, 34.687164456807324], [-77.41060177943871, 34.68711578967757], [-77.41064120779295, 34.68705044717705], [-77.41080409060568, 34.686780511260785], [-77.41097084586953, 34.68668581270042], [-77.41100113759981, 34.68645395324806], [-77.41099482318687, 34.686344343703695], [-77.41104381443206, 34.68615222898299], [-77.41090564734321, 34.68582404669644], [-77.41086614022777, 34.685617576300444], [-77.41086217465953, 34.685529554385226], [-77.41085123997087, 34.68536135946051], [-77.41084094012464, 34.685242565848355], [-77.41084393566663, 34.68518049347974], [-77.41085418076119, 34.68496764014027], [-77.41086608757851, 34.68472490644384], [-77.41086707380171, 34.68463912226394], [-77.41087504707639, 34.684415825073415], [-77.41091449224693, 34.684258367295975], [-77.41099157979542, 34.68409463710806], [-77.41137458475933, 34.684066428893765], [-77.41141482133827, 34.68406570007323], [-77.41143560489724, 34.684072781550014], [-77.41199616530066, 34.68425346609316], [-77.4120002784299, 34.684256910458764], [-77.4120067111708, 34.684258782845845], [-77.41201889440421, 34.684256960304516], [-77.41292622383898, 34.68426651946547], [-77.41340402432826, 34.68383522108951], [-77.41356511238955, 34.683815273007305], [-77.41361961102993, 34.68369883429219], [-77.41363462294693, 34.68356991398835], [-77.41352739194531, 34.683409142836275], [-77.4133569672332, 34.68279304988645], [-77.41315054513804, 34.68249747702551], [-77.41313154433054, 34.68240983669853], [-77.41331499583276, 34.681917859581276], [-77.41331646348195, 34.6819154304586], [-77.41331729590671, 34.68191374692704], [-77.41343828553245, 34.681420071206276], [-77.41344305398718, 34.68140061470073], [-77.41344817570538, 34.68137971648798], [-77.41356013465958, 34.68092288320845], [-77.4135692564486, 34.68088566354282], [-77.41356166672777, 34.68081724605918], [-77.41362751675152, 34.68034693720995], [-77.41375615296378, 34.67994839798161], [-77.41359173607148, 34.67977530752667], [-77.41336655535596, 34.67953824818786], [-77.4132032904957, 34.67963938288521], [-77.41294091804087, 34.67980190910779], [-77.41291490100883, 34.67981802519292], [-77.4127418051261, 34.679925248165596], [-77.41262651046542, 34.67999666664809], [-77.41258864647666, 34.680011829011264], [-77.41255626018295, 34.68000265910561], [-77.41227685186, 34.67998212234188], [-77.41209396669511, 34.67981031418951], [-77.41206977374019, 34.679759274950825], [-77.412049248193, 34.679661650738694], [-77.41189601989589, 34.67918193022918], [-77.41187819260769, 34.67894650680678], [-77.41135465966227, 34.67870345498489], [-77.41109267933324, 34.67853921810448], [-77.41095646454568, 34.67843835927545], [-77.41052519228387, 34.67828609106354], [-77.41028757405877, 34.67805994100439], [-77.41014056540305, 34.67788605828096], [-77.41005255503303, 34.67770541913424], [-77.40986267642224, 34.67735212246296], [-77.40982646890204, 34.67712440854831], [-77.40945978821766, 34.67665200099727], [-77.40948157623393, 34.6763756070186], [-77.40977434182034, 34.67564384203014], [-77.4103028101481, 34.675486512834986], [-77.41054932470699, 34.675355944368775], [-77.4106482889112, 34.67530352728327], [-77.41076418321286, 34.67524781337472], [-77.41100284218038, 34.67513538555917], [-77.41122386924482, 34.67503289171382], [-77.41154380381155, 34.67462254651624], [-77.41153874336351, 34.67458396967045], [-77.41112830505786, 34.67399026788085], [-77.41104781202417, 34.67393679128104], [-77.41029465139408, 34.673976856256076], [-77.40979660234899, 34.67416364087062], [-77.40935881114551, 34.6737487715026], [-77.40946695097657, 34.673299770298115], [-77.40970370190186, 34.67301009231076], [-77.40995421489359, 34.67260767863194], [-77.41008768740535, 34.67239877711545], [-77.41015805932126, 34.6722570833675], [-77.4103977859598, 34.67194818642079], [-77.41044452062185, 34.671926014588365], [-77.41090616120239, 34.67198463974968], [-77.41106381457465, 34.67200006147968], [-77.41132053517504, 34.67203762076788], [-77.41164883112177, 34.67219249524197], [-77.4119291745059, 34.67216192751524], [-77.41290778911416, 34.67227023999878], [-77.41291349850754, 34.67226950161348], [-77.41349293751765, 34.67172756191005], [-77.41379007278786, 34.67145803750098], [-77.41409260369845, 34.67121231503991], [-77.41465926003389, 34.6706467027101], [-77.41466062126676, 34.67064530295473], [-77.41466174097397, 34.67064350373376], [-77.41523250283771, 34.66972637882027], [-77.41556053544016, 34.66912504929848], [-77.41562181611869, 34.66845746658001], [-77.41509931197311, 34.66837056367095], [-77.41465679826598, 34.66840668720966], [-77.41422566372833, 34.668437577122965], [-77.41403577061611, 34.668374006108465], [-77.41372205782008, 34.668357494753884], [-77.41326781464917, 34.66836683855535], [-77.41320601724914, 34.668458072469605], [-77.41302098321815, 34.668650030422924], [-77.4130037132699, 34.66866682850243], [-77.412998131808, 34.66867377448026], [-77.41282785886943, 34.66888484059297], [-77.4127395498194, 34.668998871899205], [-77.41249362751104, 34.66931642261591], [-77.41248857576466, 34.6693252150264], [-77.4124840377926, 34.669328995175455], [-77.41247424005061, 34.66934158842581], [-77.41222733674707, 34.66965717433228], [-77.41201084673742, 34.669717135575716], [-77.41183624172854, 34.66976549609228], [-77.41169003097149, 34.66983721851793], [-77.4114664377961, 34.669908647986176], [-77.410951934275, 34.67017354819722], [-77.41068639048072, 34.670128798355464], [-77.41003804661034, 34.66989464225446], [-77.40978625097009, 34.66977376206244], [-77.40940223032393, 34.66952420098796], [-77.40924617256736, 34.66942619521164], [-77.40918959415605, 34.66935595161067], [-77.40891082554045, 34.669191255857044], [-77.40912215258527, 34.66906597294465], [-77.40908123062965, 34.6686917746522], [-77.40906251922624, 34.66851628649077], [-77.40921023845726, 34.66817780423681], [-77.40922408347593, 34.668002537076475], [-77.40922686488796, 34.66790406155905], [-77.40918830881242, 34.66767785530446], [-77.40918204205958, 34.667608810127106], [-77.40918067695719, 34.667574305916354], [-77.40915992330632, 34.667511321066016], [-77.40872645916858, 34.66687113580158], [-77.40866297339338, 34.6668183362865], [-77.40799353766982, 34.66711409901478], [-77.40789414446924, 34.6671580112644], [-77.40722273197423, 34.66745464122903], [-77.40652414034776, 34.6677632725314], [-77.40648190269833, 34.667781932494826], [-77.40651343741827, 34.66780023206827], [-77.40652040485979, 34.667801915960894], [-77.40707455818607, 34.66807507374463], [-77.40714869985254, 34.66808171937791], [-77.40740361561711, 34.668104568081404], [-77.40729118426043, 34.6675666421439], [-77.40793002164448, 34.66733344648194], [-77.4078789392694, 34.66811741579857], [-77.40836173496851, 34.66805519237403], [-77.40868244594395, 34.66855219317947], [-77.40867361329258, 34.6686785457879], [-77.40864333532235, 34.66909763034145], [-77.40852141636636, 34.66957948031053], [-77.40850890921378, 34.66960970547032], [-77.40848862053463, 34.66964840843629], [-77.4082093808622, 34.67006399224351], [-77.40804420765463, 34.670295098490826], [-77.40789528682308, 34.67051318152095], [-77.40780546706982, 34.67065269105953], [-77.40766503465132, 34.67088469068258], [-77.4076138014454, 34.670973785120594], [-77.40758350970384, 34.671037743766654], [-77.40740510814742, 34.67135874684192], [-77.40736599857301, 34.671430075009894], [-77.40735806088547, 34.67144340039185], [-77.40731138756975, 34.67147856844909], [-77.40706055845418, 34.671678547037224], [-77.40683961825854, 34.67167538480686], [-77.40668591488183, 34.67162966758539], [-77.4064873991806, 34.671418214180584], [-77.40645787762897, 34.671388304292776], [-77.4063892875246, 34.671328474678255], [-77.40618371710357, 34.67115128088265], [-77.40611173587139, 34.67108637216058], [-77.40592323798595, 34.670941173789345], [-77.40577584369183, 34.670780163847425], [-77.40566624282043, 34.67072566151546], [-77.40550007061583, 34.67062178750143], [-77.4051247059103, 34.670383143620825], [-77.40491771059777, 34.67024548786562], [-77.40473675461902, 34.6701210752942], [-77.40458904873928, 34.67002033709952], [-77.40440460332388, 34.670013207973156], [-77.40420891429308, 34.67000564415048], [-77.40395071679004, 34.670012053133156], [-77.40340049830716, 34.670058091233884], [-77.40333426811961, 34.67007099528943], [-77.40329043975649, 34.67007953451242], [-77.40318532681894, 34.67007551170988], [-77.4028646667621, 34.67005085194823], [-77.40267423382038, 34.669994850283544], [-77.40245986663912, 34.669931809412574], [-77.40230648438353, 34.66988575835842], [-77.40208410628148, 34.66982013312672], [-77.40182115259111, 34.66975191829136], [-77.40176247599491, 34.66974385269973], [-77.40171813173124, 34.669794892512186], [-77.40158650017861, 34.66998220297869], [-77.40168038224137, 34.6701079145339], [-77.40180041535552, 34.67020689527354], [-77.40194473577539, 34.67030130017369], [-77.40224749450573, 34.67046672668561], [-77.4024823428581, 34.67065735603357], [-77.4025910941422, 34.670769724730064], [-77.40285535031839, 34.67098553563757], [-77.40293594823541, 34.67107219873799], [-77.40299385367268, 34.67110352411941], [-77.40305804942788, 34.67111555354717], [-77.40317127103215, 34.671096127613914], [-77.40349552181058, 34.67108311450239], [-77.40363673913603, 34.671096120228], [-77.40396660506325, 34.671105668751395], [-77.40426857508302, 34.671126863186714], [-77.40445119515581, 34.671332767194826], [-77.40473953404295, 34.67164510111429], [-77.40474874525994, 34.671654973607595], [-77.40475350502395, 34.67166484397901], [-77.40496248024988, 34.6720121433333], [-77.40521358523388, 34.67228864605559], [-77.40526147542182, 34.67233374726635], [-77.40538431499706, 34.67242993356378], [-77.40553965343086, 34.67266403482906], [-77.40547660356401, 34.67282808419399], [-77.40535410770555, 34.672978494173975], [-77.40519339451663, 34.6731129419898], [-77.40477810304367, 34.67387439117521], [-77.40479499054433, 34.67390105567728], [-77.40514052372183, 34.67461586957626], [-77.4056892343379, 34.67507116324445], [-77.4060265487795, 34.675138929153285], [-77.40582018029201, 34.675378162401856], [-77.40587279157705, 34.675720964487255], [-77.40590047940236, 34.67596540100944], [-77.40595042800247, 34.67606335537677], [-77.40582273884473, 34.676387297300025], [-77.40581859040086, 34.67649587141716], [-77.40578311771696, 34.67657948493682], [-77.40581316278386, 34.676855731636664], [-77.40580112845672, 34.67701830709399], [-77.40584908127306, 34.677065675467894], [-77.406025094089, 34.67723022075001], [-77.40616313070933, 34.67731363278446], [-77.4062967794137, 34.67739839455329], [-77.40668383753722, 34.677542753350835], [-77.40683457211274, 34.67775401243995], [-77.40698493264861, 34.67802235107061], [-77.40674225592265, 34.678411058487434], [-77.40679506004606, 34.678726233877846], [-77.40658308923258, 34.67899996684778], [-77.40687211448241, 34.679249562311675], [-77.40701438121923, 34.679345737730166], [-77.40722416054862, 34.679428219126], [-77.40756545083187, 34.6796555622634], [-77.40778393006751, 34.67976187133662], [-77.40784909142639, 34.67978249007798], [-77.40793494946709, 34.679842816381], [-77.40811137385857, 34.67998316967303], [-77.40819533823039, 34.680123348554886], [-77.40831462281585, 34.68043316777665], [-77.40833657290835, 34.68049982263867], [-77.40836832692207, 34.68074301337086], [-77.40841590759224, 34.68083725632603], [-77.40847806039599, 34.680929707311954], [-77.40868023250655, 34.68113173046729], [-77.40869240716964, 34.68116825266075], [-77.40890401387806, 34.681489605774516], [-77.40854890702516, 34.68159534465802], [-77.40830809166253, 34.681516614824915], [-77.40818710058747, 34.68137904518119], [-77.40774586152514, 34.68124527808269], [-77.40738858129791, 34.6811935849132], [-77.40711723125682, 34.68120322046513], [-77.40655224239393, 34.68122568994147], [-77.40651172785871, 34.68125553923468], [-77.40646378640074, 34.68124684008224], [-77.40604148434763, 34.68160606417061], [-77.40586821125274, 34.681699213498966], [-77.40566953125955, 34.681776616976], [-77.40551056746173, 34.681862348571244], [-77.40532659875419, 34.68191499653281], [-77.4051323617814, 34.68199184471138], [-77.40495971471978, 34.6820148318614], [-77.40466867169363, 34.6819540353783], [-77.40434969404805, 34.68190849410814], [-77.40415720804053, 34.68189298225705], [-77.4039114050823, 34.6818235693068], [-77.40375630858485, 34.68174472813208], [-77.40341568923357, 34.68158400426457], [-77.40319234044428, 34.681479411075834], [-77.40283570729459, 34.68122746458836], [-77.40264784967647, 34.681146864418736], [-77.40257475193569, 34.68104210199483], [-77.40237022772203, 34.680880254507244], [-77.40213116868266, 34.68071832803075], [-77.40181111461439, 34.6804679554323], [-77.40159589027246, 34.68035400591641], [-77.40135021923203, 34.68021386497788], [-77.40132033436498, 34.68019917916656], [-77.40127999122795, 34.68017869048132], [-77.40104060169854, 34.68005877200093], [-77.40086096044926, 34.67997160248132], [-77.40068706353642, 34.67973195088122], [-77.4006451523261, 34.67961528826937], [-77.40064110184551, 34.67922578120794], [-77.40061583353518, 34.67918119182816], [-77.40063328964844, 34.679153982906755], [-77.40064248472684, 34.67913561665092], [-77.40072209245318, 34.678946205206465], [-77.4010440092285, 34.67829600404745], [-77.40110607028356, 34.67820118783002], [-77.40108303764855, 34.67809367341897], [-77.40112703785586, 34.67764938408357], [-77.4014095963202, 34.67739760225014], [-77.40143604618297, 34.67719840770892], [-77.40145862544561, 34.67704436268381], [-77.40149807390816, 34.6766609770957], [-77.40141957639668, 34.67653846488386], [-77.401258988351, 34.67640288703167], [-77.40116385315507, 34.67631521869358], [-77.40113422773445, 34.67628701902687], [-77.40091229599206, 34.67607759424784], [-77.4008089572811, 34.67597636525525], [-77.40066861528135, 34.67581278552652], [-77.40066782057303, 34.67581119759889], [-77.40069845215055, 34.67557613247946], [-77.40071221192017, 34.675508219190334], [-77.40081631309778, 34.675304033082114], [-77.40091683569136, 34.67509474202837], [-77.40110849810429, 34.67484717105192], [-77.40111926874107, 34.67467768604], [-77.4011142528805, 34.67451004771652], [-77.40106975651662, 34.67427446388542], [-77.40096659773681, 34.674125311108455], [-77.4008972370716, 34.67391755623841], [-77.40083402300664, 34.67373428467108], [-77.40079081707799, 34.67361767045344], [-77.4007430138978, 34.673325921118206], [-77.40074200378146, 34.67332100960017], [-77.40073736141211, 34.67330447210487], [-77.40068496441576, 34.673021468054195], [-77.40064747010659, 34.67291944900836], [-77.40059100331064, 34.67276271670832], [-77.40042403375489, 34.67237097495774], [-77.4003525756248, 34.67214980560635], [-77.40021580930973, 34.67184596715708], [-77.40016052825726, 34.671719578465456], [-77.40002031898746, 34.67139574733171], [-77.39988466636171, 34.671063853525325], [-77.39985358232711, 34.67101897351773], [-77.39983351332354, 34.670953762818726], [-77.39974442716486, 34.670618181049896], [-77.39962765233264, 34.6704147244281], [-77.3994407219246, 34.670097817175275], [-77.39915113130752, 34.669973009013404], [-77.39874288734482, 34.6695458117639], [-77.39857551484258, 34.66932046402574], [-77.3985297256127, 34.66881893074248], [-77.39813013219185, 34.669037924409395], [-77.39788078431822, 34.66884726625251], [-77.39762134945133, 34.6688258147938], [-77.39756749885147, 34.66882282229055], [-77.39754011720174, 34.66882068963191], [-77.39731377644169, 34.668730945029274], [-77.39728400646716, 34.66869553888809], [-77.39713116375448, 34.66858395380082], [-77.39718254375063, 34.66844034902949], [-77.39716091336196, 34.66820009469337], [-77.39715564705537, 34.6681513535832], [-77.39715317308787, 34.66812845662898], [-77.39712425296656, 34.66786078258826], [-77.39702937006646, 34.66736283738795], [-77.3969995599328, 34.6672998947373], [-77.39695894418065, 34.667243744753655], [-77.39655911692496, 34.666774421165954], [-77.39605302053151, 34.66692654028663], [-77.39592409901948, 34.666924261005285], [-77.39585563473067, 34.6669910478504], [-77.39564804680839, 34.667220836636794], [-77.39554626766586, 34.667308260992804], [-77.39541338991219, 34.667411731570084], [-77.39533500267376, 34.66745687144104], [-77.39509221893812, 34.667414516510675], [-77.39480058402283, 34.667324440302494], [-77.39479814657429, 34.667323772714255], [-77.39479615476058, 34.66732333684403], [-77.39449711202388, 34.66725705807068], [-77.39426401719973, 34.667200779601174], [-77.39413013235922, 34.667157758555575], [-77.39390625933693, 34.66708492125923], [-77.39369392563849, 34.66701609654609], [-77.39361342231852, 34.66698991877813], [-77.39352958351364, 34.66696191989995], [-77.39332103194612, 34.66689337524513], [-77.39312003642178, 34.66682519087862], [-77.3929419566128, 34.66676069001913], [-77.3927411950789, 34.666683231636306], [-77.3925191051116, 34.66659001562782], [-77.39245531688042, 34.666564219659136], [-77.39236855926002, 34.666553523764264], [-77.39215411744813, 34.666498083134734], [-77.39199995643278, 34.66648869660528], [-77.39159977672043, 34.66648546889461], [-77.3915436584222, 34.666490251356244], [-77.39151172100627, 34.666503843992], [-77.39147324766753, 34.666480610780695], [-77.39096740247885, 34.66629544798427], [-77.39093289050061, 34.66629024225385], [-77.39090366009991, 34.66627185070826], [-77.39039248124428, 34.66610282236152], [-77.39035051972212, 34.66608886425596], [-77.390258911594, 34.66609443395897], [-77.38993059355064, 34.666095217806436], [-77.38968537467309, 34.66617312155996], [-77.38935109759663, 34.66625714126887], [-77.38913921468102, 34.666296730822054], [-77.3890083177011, 34.666298473691064], [-77.38887415009705, 34.666288029852055], [-77.38839919225123, 34.66633567150751], [-77.38780791032832, 34.66632664854445], [-77.38780351276594, 34.666326470086354], [-77.38780043291045, 34.66632654454359], [-77.38776482753035, 34.666328953568], [-77.38723392391606, 34.66636863800013], [-77.387193359691, 34.6663672033719], [-77.38714572294276, 34.666377873146494], [-77.38672410881199, 34.66636705530603], [-77.38659790207643, 34.6663572282294], [-77.38636980999351, 34.66632831294497], [-77.38630948724868, 34.66632010529848], [-77.38627769053727, 34.66631663485658], [-77.38601210938782, 34.66631390498751], [-77.38576888748948, 34.66631426873483], [-77.38563535702633, 34.666315489174565], [-77.38541128817099, 34.66632242975243], [-77.38491955793762, 34.66631919206138], [-77.38481120871134, 34.66632839163459], [-77.38474859778, 34.666311597208676], [-77.38465423407983, 34.66626961519963], [-77.3843696113542, 34.66620922759558], [-77.38426013737683, 34.66616527815815], [-77.38413763510346, 34.66609699857711], [-77.3840597679228, 34.6660535974781], [-77.38400257463489, 34.66602171930234], [-77.38378697324622, 34.66590154774119], [-77.38376425931716, 34.665886925510115], [-77.38374613697745, 34.665874281543935], [-77.3835500033664, 34.66574350948051], [-77.38349535894312, 34.66570732204233], [-77.38348495122877, 34.66570777453771], [-77.38322754755218, 34.665599125406494], [-77.38310998356054, 34.66550729503121], [-77.3828719511016, 34.665391362636086], [-77.3827182486179, 34.665291929479466], [-77.38258287528353, 34.665219736933054], [-77.38240345881867, 34.665117102860755], [-77.38230253119036, 34.66504138464359], [-77.38220818354202, 34.6649873876743], [-77.38203825181317, 34.66492364916958], [-77.38198220479904, 34.66489382984729], [-77.38192877386936, 34.664695010801225], [-77.38204296987631, 34.66445273183417], [-77.38205866739627, 34.66442178767157], [-77.38232403569715, 34.66415322925672], [-77.3823883138915, 34.66407587541099], [-77.38250127304053, 34.66397633392711], [-77.3828933372277, 34.66358749960955], [-77.38301898818028, 34.66335869172605], [-77.38318967393545, 34.66305932401574], [-77.38345908232569, 34.66257332098995], [-77.38349002416452, 34.66250003086448], [-77.38355739897194, 34.66239704583961], [-77.3837642450523, 34.66210500448004], [-77.38395015605491, 34.66207415131432], [-77.3840614218696, 34.66210932818219], [-77.38422393547917, 34.66216171891966], [-77.38476076825815, 34.662350138488705], [-77.38476713025133, 34.662351916020306], [-77.38477054009658, 34.66235167521617], [-77.38530834477633, 34.662548948232086], [-77.38558476391107, 34.662513051669826], [-77.38589726059647, 34.66258140930308], [-77.38594423800185, 34.66263043851442], [-77.38594046829289, 34.66268080172903], [-77.3860872644779, 34.66288769430392], [-77.38609847756152, 34.66290592656378], [-77.38633990209696, 34.6631132351724], [-77.38634133477103, 34.66311361574074], [-77.38634208899703, 34.663113527866585], [-77.38663576006257, 34.66312996268414], [-77.38683847457807, 34.66312448213269], [-77.38693523234778, 34.6631288949261], [-77.38709216494416, 34.66314021843206], [-77.38756845623801, 34.66300847757421], [-77.38770847685282, 34.66304836317957], [-77.38784929234818, 34.66307171052665], [-77.38801190078581, 34.66300913412591], [-77.3881642462241, 34.66301721801249], [-77.38830573029946, 34.662939616298296], [-77.38835590328551, 34.66283577551042], [-77.38827630579348, 34.66280544161104], [-77.3882270213702, 34.662800607935374], [-77.38804922223625, 34.66271229915141], [-77.38795902315783, 34.66269308080469], [-77.38794861461956, 34.66266357591119], [-77.38791678448109, 34.662652512144426], [-77.38768968307653, 34.66259018525878], [-77.38758500052002, 34.66254938344342], [-77.38738941595531, 34.66248139257866], [-77.38722842899895, 34.66242976556451], [-77.38714669232169, 34.66239927208793], [-77.38689017332949, 34.66229603767001], [-77.38683118991295, 34.66227089674723], [-77.3866012173938, 34.6622169362189], [-77.38649488376498, 34.6622062457275], [-77.38647635151274, 34.66211965096079], [-77.38654380505864, 34.662016206646456], [-77.38677617435526, 34.66161326848967], [-77.38678673495735, 34.66159345746477], [-77.38679161143772, 34.6615888607095], [-77.38710502355113, 34.66134190295912], [-77.38754418463063, 34.660988656415206], [-77.3875569661, 34.66098362760567], [-77.38757056393379, 34.66098326013367], [-77.38820357564067, 34.66081695623071], [-77.38869014890507, 34.660728169860256], [-77.38883144813333, 34.660714933728975], [-77.38901899310412, 34.66065601596012], [-77.38950650052702, 34.66045008886182], [-77.38973757828543, 34.66038035852327], [-77.39055790266707, 34.660259036939095], [-77.39075589156896, 34.66026791210069], [-77.39095735024526, 34.66029132416871], [-77.39152103232189, 34.66030699121765], [-77.39186751818275, 34.6602843573411], [-77.39202721274883, 34.66030256253113], [-77.39247321881551, 34.660261569552176], [-77.39274935152463, 34.660231003077364], [-77.39342268500059, 34.65990869935772], [-77.39346493337104, 34.65990550413583], [-77.39350967055617, 34.659885105764225], [-77.39364200415876, 34.65980126457561], [-77.39465611136906, 34.65904749625484], [-77.39444908613501, 34.65862414835415], [-77.3937452869273, 34.658295081629035], [-77.39289779003786, 34.6578868635959], [-77.39222025285814, 34.6576900408509], [-77.39138126894963, 34.65730746907114], [-77.39111046366807, 34.65698354971744], [-77.39008592252404, 34.65689883653857], [-77.38984138678757, 34.65583112728251], [-77.38953306592272, 34.65556072940929], [-77.3888564386633, 34.65500328819191], [-77.38805635081317, 34.65439010008564], [-77.38795569986706, 34.65432905913756], [-77.38765725049424, 34.6541262830215], [-77.38699153593072, 34.653883316588484], [-77.38637829255306, 34.65374162732434], [-77.3859839577929, 34.65341503142896], [-77.38587053808654, 34.653006798580826], [-77.38558970337262, 34.65271938196093], [-77.38547182181209, 34.65234208487284], [-77.38534866823085, 34.65223286107455], [-77.38480114463673, 34.651630712626734], [-77.38474552329633, 34.651530530453634], [-77.38401243112277, 34.6515956417336], [-77.38399722684737, 34.6515948121975], [-77.38391468437563, 34.65159033506628], [-77.38350533120975, 34.651346167231665], [-77.38341458616947, 34.651018640446566], [-77.38349019463787, 34.65080236215957], [-77.38322387302712, 34.650682175983135], [-77.38299926065599, 34.65026585962935], [-77.38257683734967, 34.65008481700873], [-77.38247638990617, 34.650055027245735], [-77.38243528473409, 34.650024380574834], [-77.38208316883166, 34.6496859654795], [-77.38193555367292, 34.64932807237364], [-77.38187033723486, 34.648728967947974], [-77.3819213083735, 34.64848099770205], [-77.3818252078012, 34.648302889740194], [-77.38164692100256, 34.64829056615559], [-77.3812874073719, 34.64811029084714], [-77.38119157457925, 34.64809583738337], [-77.38085827214356, 34.6480972556672], [-77.38057596123915, 34.648129607117916], [-77.38006960517116, 34.648002984777996], [-77.38002352644085, 34.64795486882678], [-77.3799268227196, 34.64791917713365], [-77.37944714631945, 34.647809348377095], [-77.3792809691773, 34.64777858377821], [-77.37883060253523, 34.6475921456088], [-77.37853731807961, 34.64749963696519], [-77.37842905041217, 34.64740221552484], [-77.37828979936432, 34.64730453357092], [-77.3778126914423, 34.64708120524705], [-77.3774941408433, 34.646956813473096], [-77.37712751600293, 34.64685860286107], [-77.37698743589742, 34.64681190502648], [-77.37658088015954, 34.64669558871405], [-77.37647952423394, 34.646669387597186], [-77.3764479329121, 34.646663747087], [-77.37641603871919, 34.64667360652029], [-77.37593509584265, 34.64659923698792], [-77.37577640167801, 34.646508849719545], [-77.37554396655061, 34.64652702101402], [-77.37545677664893, 34.646511543019706], [-77.37540101237809, 34.64650858548832], [-77.37512879415159, 34.64647273276779], [-77.374868533885, 34.64641475275659], [-77.37479302639431, 34.646395265443175], [-77.37462785822385, 34.646339344134674], [-77.37445194060618, 34.646291384357454], [-77.3743504662692, 34.646292362359205], [-77.37392645422302, 34.646216665989904], [-77.37382009964053, 34.64619434499772], [-77.3737869533089, 34.646168943861554], [-77.37372526810388, 34.64616426883774], [-77.37333087599885, 34.646014797762646], [-77.3731467433901, 34.645901888112604], [-77.37308629285484, 34.64586933186198], [-77.3729286704838, 34.64575457323705], [-77.37289480863933, 34.64572991977217], [-77.37271297134373, 34.64560533253143], [-77.37263055277359, 34.64555086529147], [-77.37261303122557, 34.645139308256816], [-77.37261290944782, 34.645131279070206], [-77.37261463891676, 34.645128091433776], [-77.37283186812098, 34.6446791537252], [-77.37282652924128, 34.64465878381885], [-77.37283160724566, 34.644604488021194], [-77.37298719787572, 34.64381376536029], [-77.3730787084683, 34.6435600699988], [-77.37321869204698, 34.643346863166855], [-77.3736051772438, 34.642884746833275], [-77.37357904321465, 34.64269289173752], [-77.37376168301964, 34.64263360449522], [-77.37406251270377, 34.64229457710016], [-77.37397304096848, 34.641983667335445], [-77.3737619428389, 34.64175762265508], [-77.37339706673374, 34.64167371637328], [-77.37334339978932, 34.641675887273514], [-77.37297331036767, 34.641765625549624], [-77.3727444958537, 34.64155788535084], [-77.37264040804834, 34.64132643950393], [-77.37233137746202, 34.64121317367922], [-77.37218492663847, 34.640985335952045], [-77.37201102343118, 34.640755266653514], [-77.371898500876, 34.64058414691837], [-77.37186360221801, 34.6405107494773], [-77.3717908202041, 34.64034673048347], [-77.37172969672305, 34.64024973942743], [-77.37172188226914, 34.64018501865306], [-77.37169065590125, 34.64008157370525], [-77.37173995445026, 34.639757858377735], [-77.37179102239081, 34.63971846363921], [-77.37203597105173, 34.63955436366156], [-77.37218540886595, 34.63946376415264], [-77.3725180493385, 34.639287719357434], [-77.37257977470851, 34.63926712377212], [-77.37261789466648, 34.639247926679424], [-77.3729741183485, 34.63913651217615], [-77.37318383326055, 34.63892657565009], [-77.37336851091098, 34.63884015944426], [-77.37348695975372, 34.63878470896742], [-77.37371256293596, 34.638678859015876], [-77.3737628673478, 34.638655256873086], [-77.37379775586814, 34.63864999813446], [-77.37417846895187, 34.63855760961101], [-77.37450536672091, 34.63846083517146], [-77.37455152931201, 34.6384425224386], [-77.37458687739567, 34.63846073000403], [-77.37494583467344, 34.63842028588361], [-77.374969871895, 34.63841776057808], [-77.37533348666942, 34.638384108700016], [-77.37534014385008, 34.638383454426005], [-77.37534728050252, 34.638381606234205], [-77.37608907690766, 34.63823970765688], [-77.37612878290369, 34.638228733697424], [-77.37620107764431, 34.63818849535291], [-77.3766786582141, 34.63794041944787], [-77.37691749706545, 34.637774714557864], [-77.37693816910988, 34.63775786080036], [-77.37730063157792, 34.6376954406364], [-77.3773118113118, 34.63770145301428], [-77.37735855544132, 34.63772539680948], [-77.37770605652901, 34.63789872310444], [-77.37779521103695, 34.63794071636697], [-77.37800313798553, 34.63800677644025], [-77.37831665762465, 34.63815320308193], [-77.37849455405677, 34.63828663107737], [-77.37873274435668, 34.63849428078501], [-77.37897318517781, 34.638716173169556], [-77.37928299027102, 34.638968581282505], [-77.37958930850424, 34.63914667541146], [-77.37995839984961, 34.63930158067826], [-77.38007150872818, 34.639339235051345], [-77.38011862093701, 34.63934956854208], [-77.38017404901753, 34.63939231440951], [-77.38046573767079, 34.639675343593346], [-77.38053907536333, 34.63968532470004], [-77.38086001047162, 34.639820720695354], [-77.38144124896698, 34.63983560644215], [-77.38164861052697, 34.63986283403371], [-77.38183727655448, 34.63979869849577], [-77.38251330557615, 34.639904430196495], [-77.38442107155657, 34.64004080874375], [-77.38480300399613, 34.64010382899778], [-77.38538793179566, 34.64012004381242], [-77.38686237510397, 34.639277733815334], [-77.38845246823003, 34.63618455636994], [-77.38876919772916, 34.63473301593245], [-77.3879580541566, 34.63535802504502], [-77.38735888696412, 34.635164445283465], [-77.38480399044471, 34.63421821486292], [-77.38341826911535, 34.63488550097285], [-77.38322676013203, 34.63485809117854], [-77.3824797057554, 34.63570851479111], [-77.3824380307436, 34.63571143346802], [-77.38239627361995, 34.63572062274215], [-77.38204372860382, 34.63579820579947], [-77.38173766317948, 34.63586555921551], [-77.38164942559173, 34.63588497688288], [-77.38158977438889, 34.63585609481278], [-77.3814934705635, 34.63580573126127], [-77.38134246488946, 34.63573349003115], [-77.38125518681018, 34.63566315011583], [-77.3811251988385, 34.63557421435462], [-77.38086101076495, 34.63516084192109], [-77.38080272251838, 34.635118893340874], [-77.38062862746257, 34.63508119992632], [-77.38074686715042, 34.63494120423576], [-77.38086106101765, 34.63492864874527], [-77.38094245178232, 34.6349483420678], [-77.38164488320628, 34.63492968639073], [-77.38164962335036, 34.63492804803839], [-77.38165671219507, 34.634925453189084], [-77.38243822304018, 34.634737054958784], [-77.38309057040627, 34.634579789431164], [-77.38293633739745, 34.63336349893266], [-77.38169448949914, 34.63327733251641], [-77.38164996672674, 34.633274243204745], [-77.3815820186527, 34.63331875093874], [-77.38113675709648, 34.63360630866418], [-77.38086133753644, 34.63365426753026], [-77.38071375621429, 34.63352963085712], [-77.38030806643745, 34.63342912884319], [-77.38013302913008, 34.6333895399133], [-77.3800728521786, 34.633367269197294], [-77.37993431023914, 34.633333779495], [-77.3796786117264, 34.63322257930679], [-77.3796013143534, 34.63318962477375], [-77.3792844263538, 34.63285100422981], [-77.37923507534357, 34.632787736265875], [-77.37921545038219, 34.63273740495239], [-77.37920045118453, 34.632649086924715], [-77.37916940718489, 34.63231947534763], [-77.37928460566131, 34.63209503926447], [-77.37939494787308, 34.63198121384147], [-77.37956302681671, 34.631838208984874], [-77.37969386813147, 34.6314107730896], [-77.37969966797274, 34.631393962580695], [-77.37969392498562, 34.631378761606896], [-77.37956181022946, 34.630989259225245], [-77.37948258029465, 34.630787817979616], [-77.37928492177059, 34.63076677404948], [-77.3790365714205, 34.63079749486137], [-77.37889066507748, 34.63074547629057], [-77.3788217303361, 34.63074554304605], [-77.37849636883635, 34.63088443088012], [-77.37824003850089, 34.63090364137605], [-77.37810209883433, 34.63091397914371], [-77.37798079568219, 34.63092306970229], [-77.37770783608954, 34.630913922000914], [-77.37764407597723, 34.630909611456666], [-77.37740734363146, 34.63087504983722], [-77.37733468391076, 34.63086279721158], [-77.3773135870236, 34.63086136189316], [-77.37728093551428, 34.63085809606121], [-77.37691919781147, 34.631336048307226], [-77.37690483873472, 34.63135653489713], [-77.37690291369482, 34.63137226879622], [-77.37690807052293, 34.63138349471036], [-77.37691917872384, 34.63140767598373], [-77.37703300074622, 34.631655453466266], [-77.37709891830178, 34.631768597863555], [-77.37718235107648, 34.631897607859344], [-77.3773132667857, 34.632085487932315], [-77.37736370928683, 34.632155019091826], [-77.37739445103763, 34.63223805564775], [-77.377313231436, 34.632220855666425], [-77.37712178230939, 34.632408321373305], [-77.37691889644216, 34.632468866352895], [-77.37674146836613, 34.63247814906363], [-77.37671152767923, 34.63247225654246], [-77.37652464027434, 34.63241640686791], [-77.37627404214057, 34.63231196903574], [-77.37620438518017, 34.63224235165052], [-77.37613046496033, 34.63207178317214], [-77.37606426742617, 34.63191762212781], [-77.37595250438827, 34.631700902162976], [-77.37586850803767, 34.63152125634176], [-77.37582777534595, 34.631428701204825], [-77.37573644845988, 34.63117276020218], [-77.37572139932668, 34.631134100738045], [-77.3757170814986, 34.63111850548279], [-77.37570866083355, 34.631089770161246], [-77.37569308253386, 34.630697400858026], [-77.37557053896131, 34.63046936249023], [-77.37534243976974, 34.63027817552255], [-77.37520784499316, 34.630063172025615], [-77.37510443586902, 34.629933060631565], [-77.3750312818645, 34.62985423978682], [-77.37494832692256, 34.62977147138611], [-77.3748414758638, 34.62966147024783], [-77.37473205203352, 34.62956213193289], [-77.37455418275289, 34.62938720000109], [-77.37444420472272, 34.62929748712959], [-77.37434681029822, 34.62919305419237], [-77.37416008075854, 34.628875108274336], [-77.37412555849703, 34.62883754650969], [-77.37412458850935, 34.62880049826457], [-77.37410832227238, 34.62874706191389], [-77.37401201178604, 34.62839215092493], [-77.37402379504412, 34.62811290485932], [-77.37394689816267, 34.627976969089005], [-77.37382501779446, 34.62763329388147], [-77.37388745546376, 34.62756096998163], [-77.37444751091897, 34.62736479113624], [-77.37455479057613, 34.62734053195194], [-77.37479461710682, 34.627172107002835], [-77.37494911625764, 34.62707016257238], [-77.37499795935797, 34.62702906028686], [-77.37534347269657, 34.62668441120935], [-77.37543743208427, 34.6265897730369], [-77.37555524520104, 34.62647164863834], [-77.37587975196946, 34.62615314555304], [-77.3761049780101, 34.6259679082809], [-77.3761321645661, 34.62594875488857], [-77.37638041454143, 34.625770963702465], [-77.37652648404969, 34.62565826807101], [-77.3767907789179, 34.6254445645518], [-77.37686865323793, 34.62537719123632], [-77.37692080776606, 34.625341852952495], [-77.37710902825978, 34.62519606551038], [-77.37731512575195, 34.625035709824566], [-77.37736961638166, 34.62499529474661], [-77.37770943403058, 34.624755723216495], [-77.37788588454, 34.62462768208294], [-77.37846617813298, 34.62438836199375], [-77.37849799701644, 34.624375543330764], [-77.37852809229148, 34.62437759063284], [-77.37920108132278, 34.624340183819804], [-77.37928646474592, 34.62435693313059], [-77.37947658070357, 34.62442833833561], [-77.37949294289147, 34.6244285626447], [-77.37950019744933, 34.62439950962765], [-77.37948361341059, 34.62420752394161], [-77.37953873389698, 34.62392801504471], [-77.37962835138167, 34.62370556924087], [-77.37993204779711, 34.62329379237541], [-77.3799812779958, 34.62318554778359], [-77.38007520925986, 34.62315263902661], [-77.38018932414458, 34.6231338335673], [-77.38073176122408, 34.62303649523799], [-77.3808636940529, 34.62300248544432], [-77.38113444011334, 34.623120554519424], [-77.38141745225803, 34.623332451848405], [-77.38156475893958, 34.62348311644688], [-77.38160998620299, 34.62352188049437], [-77.38165203083511, 34.623524587979816], [-77.38197475925035, 34.623501046064824], [-77.38204626724217, 34.62347986671955], [-77.38210526320614, 34.62346876941442], [-77.3824405255941, 34.62332637477236], [-77.38278332219147, 34.62336291119563], [-77.38290496910157, 34.623365633038986], [-77.38322901034346, 34.623158264817555], [-77.38334567118238, 34.62292752410452], [-77.38348204959203, 34.62278228133739], [-77.38362332597995, 34.62268558125208], [-77.38389090913297, 34.62258695572231], [-77.38401757454484, 34.622547281859255], [-77.38420736495578, 34.6224733745011], [-77.38441182653246, 34.62238272897421], [-77.38452627528956, 34.62233048298895], [-77.38472513897216, 34.62217857647568], [-77.3847758308622, 34.62213868155844], [-77.38480609784688, 34.622100688328196], [-77.38497742351893, 34.62190212852528], [-77.3851306073014, 34.62169557641134], [-77.38520041013865, 34.62156761849742], [-77.38539567425877, 34.62144308233956], [-77.3855946679725, 34.62132697658261], [-77.38585696361964, 34.621024195753435], [-77.38598894974568, 34.62092661905775], [-77.38610324872336, 34.62082934686205], [-77.38637038930202, 34.620681562243824], [-77.38638320350378, 34.62067761623813], [-77.38639278509356, 34.62067485302265], [-77.38641372776503, 34.62066151562535], [-77.38700628369608, 34.62039798586209], [-77.38717168243976, 34.62032165814911], [-77.38740252417456, 34.62027038562643], [-77.38762223916662, 34.62048732556654], [-77.38775137641468, 34.62069345421449], [-77.3877222419921, 34.62106598238769], [-77.38774507557339, 34.6213187542789], [-77.38756569336509, 34.62169003834728], [-77.38753933393134, 34.621744596657344], [-77.38751362732614, 34.62177668215351], [-77.38717140785104, 34.62214505761476], [-77.38710481668811, 34.62218846276829], [-77.38695638151128, 34.62228156738935], [-77.38659945787818, 34.62256623654594], [-77.38657789046579, 34.62297518552538], [-77.38673510991745, 34.62316259246697], [-77.38690052177105, 34.62343027905466], [-77.38703910994454, 34.623825700760094], [-77.38710115720598, 34.62395896731311], [-77.3869386879731, 34.624232676573634], [-77.38683170800385, 34.62442236976139], [-77.38680452947155, 34.62445611472507], [-77.38650575301729, 34.62489391495896], [-77.3864447635708, 34.62496973626876], [-77.38638249208759, 34.625157144864275], [-77.3861820604333, 34.62557391778862], [-77.3861056908369, 34.62580070545744], [-77.38600828116107, 34.626217559772186], [-77.38638233079197, 34.62618643158109], [-77.38681308486969, 34.6261626381767], [-77.38717082416419, 34.626076023081964], [-77.38740723357955, 34.62586768213908], [-77.38746070226986, 34.62560541140384], [-77.38761903061776, 34.62521601325189], [-77.38765346929424, 34.625153060768085], [-77.38795946561868, 34.62487647646154], [-77.3880657630539, 34.62478352947706], [-77.38827654883981, 34.62463868360849], [-77.38854473696503, 34.62438112805349], [-77.38870988369605, 34.62415165453488], [-77.38874802953117, 34.624105474461906], [-77.38878566626009, 34.624100198273794], [-77.38894515497364, 34.62401699941283], [-77.38906689053428, 34.624019013757945], [-77.38914226784522, 34.6240257403002], [-77.38919443180404, 34.624025629306274], [-77.389536445771, 34.6244421760033], [-77.389589025589, 34.624392874699105], [-77.38963387206329, 34.62444302983657], [-77.38956813808738, 34.62448664261086], [-77.38953643829396, 34.62450459151167], [-77.38938246938683, 34.62490383791879], [-77.38953635240739, 34.62522307137378], [-77.38956085723746, 34.625276293903525], [-77.38956672553329, 34.62530184521087], [-77.389553699099, 34.625322417117886], [-77.38965924607018, 34.6260051946614], [-77.38967927514045, 34.62613475674986], [-77.38967900788079, 34.62628856150391], [-77.38960620741396, 34.62691897973255], [-77.38959543574069, 34.62699597798502], [-77.38958662109242, 34.62705161756754], [-77.38959518959282, 34.62778146036308], [-77.38961427437093, 34.62784239808837], [-77.3898302682887, 34.62834347921192], [-77.39048249282203, 34.6285663767176], [-77.39060210773818, 34.629099197800734], [-77.39111278055898, 34.6303646829678], [-77.39176016266889, 34.62907921255075], [-77.391802204555, 34.62837612614608], [-77.39169279790204, 34.627767540806495], [-77.39171541075922, 34.62753950309659], [-77.39174484258051, 34.627366487631136], [-77.39212838350359, 34.62663082509235], [-77.39210145034872, 34.62600070910234], [-77.39208990940041, 34.625787235540834], [-77.39200185933008, 34.625692073350166], [-77.39121678310737, 34.62517543057397], [-77.39111329820129, 34.62510069686526], [-77.39110167400632, 34.62509308971232], [-77.39105165510381, 34.62508778106427], [-77.39099199106569, 34.62496572496672], [-77.3905364292747, 34.6243129198412], [-77.39045896661672, 34.62417973915973], [-77.3905238401428, 34.623890166648664], [-77.39032498214057, 34.623747578092306], [-77.39002481808403, 34.62386078885328], [-77.39011195107358, 34.623524975742384], [-77.38990564569728, 34.62315726479785], [-77.38990334493434, 34.62313048020408], [-77.38986658014947, 34.623066579464236], [-77.38967916089432, 34.62273822954429], [-77.38965262099948, 34.622617173439124], [-77.38953673714407, 34.6220287658877], [-77.38951416214553, 34.62193720399469], [-77.38950824603116, 34.62191373196043], [-77.3895152168599, 34.62188953175067], [-77.38953675637293, 34.62187048254746], [-77.38963922429976, 34.6217845045211], [-77.3899310186147, 34.62148947315777], [-77.39000233831767, 34.621494748195104], [-77.39032524336716, 34.621409884079064], [-77.39104349950036, 34.621692407221026], [-77.3910623133412, 34.6217449723983], [-77.39111361534222, 34.62197810798345], [-77.391157641515, 34.62205309634901], [-77.39114630359423, 34.62210215506267], [-77.39131069881977, 34.622231844420305], [-77.39138731433505, 34.62219718266668], [-77.39150781826785, 34.62213021824684], [-77.39156530284431, 34.622103654987626], [-77.39176210836979, 34.621739545182606], [-77.39162727322653, 34.62160824419383], [-77.39150787615816, 34.62153985755413], [-77.39128874100348, 34.6214684969553], [-77.39111366543507, 34.6214914397523], [-77.39094086430347, 34.62085806630498], [-77.39096405509295, 34.62069350275145], [-77.39091239089686, 34.62022994930733], [-77.39087289724046, 34.620018727552875], [-77.39069047167105, 34.61965188411693], [-77.39068665548164, 34.619585466682935], [-77.3906719116164, 34.619198566602286], [-77.39071970699939, 34.61912382520068], [-77.39089643786095, 34.618931949833765], [-77.39093969170044, 34.61892305458869], [-77.39111393619709, 34.618887220758495], [-77.3912784753428, 34.61886376000458], [-77.39133775892788, 34.61886150952926], [-77.3915081210639, 34.619070066667085], [-77.39151392517189, 34.619077172026245], [-77.39166049796901, 34.6193164676864], [-77.39190225885973, 34.61976646854391], [-77.39197595565119, 34.61985969594761], [-77.3920717535101, 34.62002845899332], [-77.39220838935923, 34.62025075327559], [-77.39221788422314, 34.62033396263631], [-77.39228876408188, 34.62066373368059], [-77.39238300954624, 34.62098138973916], [-77.39246439905071, 34.621243986807514], [-77.39249145870713, 34.62148364848514], [-77.39255808633885, 34.62161666840905], [-77.39269051386769, 34.62164816967322], [-77.39294132110291, 34.621997775638505], [-77.39319383880975, 34.62223151592426], [-77.39327345928658, 34.622441276827445], [-77.39347887936064, 34.62254237383883], [-77.39377032951849, 34.622683634005384], [-77.39402607260477, 34.62270084891267], [-77.39426730426285, 34.6227760682972], [-77.394389263291, 34.622776939196555], [-77.3949463814998, 34.62271016436895], [-77.39505575036821, 34.62269902773516], [-77.3951526096016, 34.622693898279], [-77.39526414517005, 34.622782130683404], [-77.39563951573842, 34.6229484208392], [-77.39582476848705, 34.62312585770018], [-77.39584417072523, 34.62315228776871], [-77.39599262858087, 34.62336632486253], [-77.39609345124754, 34.623511682703594], [-77.39623836819933, 34.62377605795193], [-77.39628569935056, 34.62385755195055], [-77.39631725991859, 34.62390397883738], [-77.3963804454018, 34.624047891373245], [-77.39649057835659, 34.62430355569019], [-77.3966325643652, 34.6246155593972], [-77.39678369416926, 34.624947654320295], [-77.39695040603506, 34.62508638582896], [-77.39704113580032, 34.62551334583389], [-77.39712212795436, 34.62591076368551], [-77.39742098063459, 34.62634799716238], [-77.39856064626785, 34.62570329917718], [-77.39877020863513, 34.62542782384567], [-77.39876234748938, 34.62422964509243], [-77.398795028031, 34.62397120550045], [-77.39883243659051, 34.62378756182396], [-77.39873586980151, 34.623412844994476], [-77.39859441610244, 34.623150994315026], [-77.39833749534876, 34.6230502054435], [-77.39820950839965, 34.622909660648034], [-77.39794821466663, 34.62267646554886], [-77.39781529659372, 34.62248699669929], [-77.39774553734779, 34.62242428136055], [-77.39755223236105, 34.62231091143445], [-77.39742108280169, 34.62229295368303], [-77.39721589662688, 34.622279681198144], [-77.39691420376965, 34.62224094148346], [-77.39663264957217, 34.622204786903716], [-77.39660156694993, 34.622198168227634], [-77.39656627384294, 34.62216978186083], [-77.39637392193578, 34.62205160485504], [-77.39613528317268, 34.62180736417585], [-77.39604567936104, 34.62160333621482], [-77.39584426817981, 34.62102434027223], [-77.39583687589189, 34.62100921785032], [-77.39582734365982, 34.62100263016347], [-77.39525552470295, 34.62087003962601], [-77.39505585250097, 34.6208584985231], [-77.39471507674193, 34.6207960006646], [-77.39466164491644, 34.620788711858644], [-77.39463169485902, 34.620782734137926], [-77.39426744850003, 34.620558803407974], [-77.394070311189, 34.620406856591295], [-77.39407074070809, 34.620194910755544], [-77.39402569704279, 34.619988719761714], [-77.39403295471567, 34.61981571051099], [-77.3938423454252, 34.61959058736836], [-77.39402811104473, 34.61930593639542], [-77.39426754791853, 34.61906149916129], [-77.39450420367297, 34.61890088339837], [-77.39474756485325, 34.61861091473039], [-77.39485734573113, 34.618381131230976], [-77.39505232680881, 34.617721816329045], [-77.39505298210776, 34.617717730957644], [-77.39504765284049, 34.617709473670075], [-77.39488248439422, 34.617504681175504], [-77.39482974650883, 34.61750618706065], [-77.39466184528344, 34.617562882867986], [-77.39453799862618, 34.61750081657653], [-77.39426765458651, 34.617481191433654], [-77.39390577511585, 34.61749339782443], [-77.39387345768365, 34.61749288133225], [-77.39385539448499, 34.61748531058914], [-77.39347927608117, 34.61730629778726], [-77.39337151983334, 34.617227122913114], [-77.39320322636053, 34.6171353240521], [-77.39308509997979, 34.617072833918726], [-77.3928841071704, 34.616973257497555], [-77.39269092360772, 34.61686775109613], [-77.39248430913743, 34.61681441445192], [-77.39234967247714, 34.61677681418961], [-77.39229673884496, 34.61677409353628], [-77.39221795538697, 34.61676796344566], [-77.39190255004681, 34.61673051816517], [-77.39170635350646, 34.6167133298631], [-77.39119772505356, 34.61666533878379], [-77.39111416754545, 34.61669890100412], [-77.39101321188907, 34.61671068193817], [-77.39078520383721, 34.61663482139708], [-77.39071998366224, 34.61661756476121], [-77.39069348297514, 34.616648045022664], [-77.39051751017325, 34.61687993944514], [-77.39039874270888, 34.617115106231076], [-77.39032572354583, 34.61720056819142], [-77.39016809801701, 34.6174031810421], [-77.39006992008927, 34.61743799440461], [-77.38993149365473, 34.61748707965483], [-77.38978135632784, 34.61746697293383], [-77.38971189666577, 34.617450646615204], [-77.38958487678067, 34.617283655755635], [-77.38954996042702, 34.617237470859315], [-77.3895488809217, 34.617225185009104], [-77.38953736445045, 34.616946111060834], [-77.38953196967437, 34.616821323658165], [-77.38953206996894, 34.61681548194294], [-77.38953172446756, 34.61680943872789], [-77.38944530492661, 34.61640342199199], [-77.38946479204907, 34.61605433004865], [-77.38946602449928, 34.61597586704361], [-77.38947251369719, 34.61590494191221], [-77.38953750460064, 34.615830805705464], [-77.3898338286343, 34.61549827484406], [-77.389887837338, 34.61544320140832], [-77.39002529368307, 34.61536991764501], [-77.39032595862551, 34.615179952845786], [-77.39048068130244, 34.61514709427939], [-77.39099308727057, 34.615037179114175], [-77.39111434185818, 34.61507133873204], [-77.39125268214856, 34.61501814429665], [-77.39150854356858, 34.61491001030793], [-77.39171904683712, 34.61499973577762], [-77.39190271473137, 34.615044012518766], [-77.39217379159523, 34.615028309450004], [-77.39229689883528, 34.61505143524807], [-77.3923743879457, 34.61504852349587], [-77.39261945393017, 34.61501949548469], [-77.39269108920574, 34.614988713904594], [-77.39297203279534, 34.61492383464528], [-77.39308530523843, 34.614613279820425], [-77.39308896745064, 34.61460437989171], [-77.39308759734497, 34.614602109659266], [-77.39308530666504, 34.6145963678137], [-77.39297371405637, 34.61431664925729], [-77.3929594581032, 34.61419848432162], [-77.39297349272084, 34.61407597884974], [-77.39297999676708, 34.61398323793176], [-77.39308537476481, 34.61379189690926], [-77.39310315759008, 34.61377234590645], [-77.39314080037525, 34.61374776584471], [-77.39335949804774, 34.61358690012778], [-77.3934795733004, 34.613545150232106], [-77.39362175024493, 34.61352527544296], [-77.39387376006735, 34.61342165722499], [-77.39404913395772, 34.61342788745528], [-77.39407084798506, 34.6134280231687], [-77.3941200209738, 34.61344724295124], [-77.39426793092068, 34.61350505519508], [-77.39433115393865, 34.61350801719107], [-77.39441777746808, 34.61356362393602], [-77.3946620955047, 34.613694295425724], [-77.39481927788876, 34.613760988516574], [-77.39491289262989, 34.613762363319594], [-77.39505626853196, 34.61377381823554], [-77.39517419475314, 34.61375209447127], [-77.39532889070506, 34.613725871150876], [-77.39545045211868, 34.613679089699545], [-77.39560009708546, 34.61365650773501], [-77.39584463435725, 34.61359218225329], [-77.3960587505325, 34.61355759679716], [-77.39643139538938, 34.61349037104937], [-77.39663299454006, 34.61345361105408], [-77.39683740695233, 34.61343484518774], [-77.39702717342064, 34.61338787141334], [-77.39725720180095, 34.61333093169251], [-77.39742134952722, 34.61338587811061], [-77.39807214669948, 34.61318474690308], [-77.39820970319722, 34.61330528436133], [-77.3985906726676, 34.61340058376514], [-77.39860387666172, 34.61340308183165], [-77.39861251648826, 34.613392516644836], [-77.39861375156786, 34.613383032622956], [-77.39861552028954, 34.61337023655194], [-77.39867070061568, 34.61295024516178], [-77.39871157309736, 34.61263576294919], [-77.39879526259892, 34.612301579565795], [-77.39873866052346, 34.612091295983156], [-77.39889833426108, 34.61196083042044], [-77.39899807381684, 34.61195571407609], [-77.39906561212084, 34.61197138628627], [-77.3992204248758, 34.61202180281671], [-77.39959735939269, 34.61217106222837], [-77.39978640988241, 34.61222912664171], [-77.40010461912156, 34.6122370090164], [-77.4001805797785, 34.61226161754666], [-77.40021043866712, 34.61227140170984], [-77.40034106457883, 34.61228471996183], [-77.40057475003279, 34.61231283165411], [-77.40064819628248, 34.61231952458898], [-77.40082520095959, 34.612369683460216], [-77.40096892143376, 34.61244813416642], [-77.40116161933598, 34.61259091922359], [-77.40121694349787, 34.61274036253843], [-77.40136309988938, 34.61300601774464], [-77.40150203749096, 34.61324130702795], [-77.40165252243571, 34.613369246949], [-77.40175728134874, 34.61344149060394], [-77.40195910573631, 34.613532202970504], [-77.40215146080216, 34.61361538200036], [-77.4023126287642, 34.61369858741803], [-77.40239513087293, 34.61384880362908], [-77.40248324587344, 34.61409854615483], [-77.4026027393291, 34.614444401549726], [-77.40262395906572, 34.61450282024562], [-77.40293984970364, 34.61471006761988], [-77.40307717625835, 34.614714090707714], [-77.40319114916855, 34.614845562204394], [-77.40347881430027, 34.615072701332956], [-77.40361722338835, 34.61551365539771], [-77.40363217014905, 34.61563108245574], [-77.40361263569203, 34.61575843678747], [-77.40372825867489, 34.615777330168385], [-77.40384880234366, 34.61572966497607], [-77.40436799278594, 34.61568500526122], [-77.40451662220451, 34.615620866756814], [-77.40466273419118, 34.615639760323724], [-77.40530499087663, 34.6155975730726], [-77.40565126338309, 34.61581594402121], [-77.4058397525917, 34.61588851634355], [-77.4060933777982, 34.6158359609849], [-77.40626337794077, 34.61591746867562], [-77.40640273936975, 34.61608045869151], [-77.40666962226868, 34.616270464778516], [-77.4067025715666, 34.61646176850402], [-77.40688181725204, 34.61665970878781], [-77.40703772181546, 34.61667005788404], [-77.40756801264962, 34.616761453276794], [-77.40764987588429, 34.61677153716952], [-77.40767020641412, 34.61676958502181], [-77.40770195368593, 34.61677631752053], [-77.40845857798048, 34.61668898845072], [-77.40856256359197, 34.61672991859777], [-77.40898414847571, 34.616840162061614], [-77.4092469749833, 34.61685362691827], [-77.40928345414598, 34.61689917083206], [-77.4092868871278, 34.61693796130859], [-77.40936707450294, 34.617221652420895], [-77.40938082588966, 34.61734898157584], [-77.40945077513105, 34.61755831015506], [-77.40951430981207, 34.61789105684056], [-77.40959129973314, 34.61816776051086], [-77.40965072811615, 34.61857367840509], [-77.40965255054417, 34.6185834993865], [-77.40965344679621, 34.61859637926658], [-77.40961525375582, 34.61901346027702], [-77.4095987947692, 34.61939445934667], [-77.40958888654002, 34.61949848486652], [-77.40956820935767, 34.61986940765408], [-77.40953936507445, 34.61998360935972], [-77.40964153202435, 34.61998476649407], [-77.40984353274408, 34.62003669025634], [-77.4100357343379, 34.61996474308813], [-77.41061661392706, 34.61994160411914], [-77.4108241264069, 34.61983638595262], [-77.41098623133429, 34.619839334941474], [-77.41138942126004, 34.6198468486375], [-77.41161253590079, 34.61984990536797], [-77.41205709272094, 34.61988051570809], [-77.41240095308606, 34.61991464941441], [-77.41268614115694, 34.619961366942285], [-77.41307027079695, 34.620084776343866], [-77.41318939151674, 34.62010593277795], [-77.41324249892585, 34.62013101476262], [-77.41333736282192, 34.62017451589999], [-77.41358362724067, 34.62029347100486], [-77.41390408007604, 34.620172116997985], [-77.41397782004682, 34.62021932685217], [-77.41401876408895, 34.62012026495896], [-77.41406125170185, 34.62007001404665], [-77.41437197091679, 34.619910506507736], [-77.41462321773756, 34.61983492556257], [-77.41476615460647, 34.6198004894047], [-77.4149036255869, 34.61980033675697], [-77.41496325557951, 34.61979796330085], [-77.41505911377726, 34.61981690434976], [-77.41516036419206, 34.619836910910095], [-77.41529674400377, 34.61989164566567], [-77.4153845252303, 34.62006216286268], [-77.41545032147206, 34.62060620029691], [-77.4154376037379, 34.62072047196708], [-77.41544141856865, 34.62084199267126], [-77.41555478948156, 34.621008603798714], [-77.41575745992978, 34.62130523030825], [-77.41592165659159, 34.621499748491715], [-77.41611077640665, 34.62172293331427], [-77.41634336518406, 34.62180383153495], [-77.41637801355476, 34.62182112790344], [-77.41657621673815, 34.6218298245966], [-77.41670975468273, 34.621840517798894], [-77.41677043448341, 34.621837163702736], [-77.41713176082511, 34.621668205793355], [-77.41736141393636, 34.62153924493106], [-77.41768346897499, 34.62150027894875], [-77.41792014492749, 34.62149323790722], [-77.41813351526342, 34.62141021146923], [-77.41831433908948, 34.62142141902545], [-77.41847381026287, 34.62138405899079], [-77.41870852807308, 34.62132986084399], [-77.41891208009224, 34.62128720238525], [-77.41929071303585, 34.6212353789065], [-77.41949691876394, 34.62121245942482], [-77.41972155638047, 34.62119301274228], [-77.42005203672359, 34.621154595628994], [-77.42028531601265, 34.62113196840156], [-77.42053983756415, 34.6211070294016], [-77.42080845213692, 34.62107980253099], [-77.42107377812842, 34.621311145951374], [-77.4212193461778, 34.62142716923029], [-77.42129584513607, 34.621572874110534], [-77.42136081214146, 34.621872485141765], [-77.42136795969301, 34.62209499782607], [-77.42141579916581, 34.622356716849296], [-77.42158989185131, 34.62241768082357], [-77.42170997845923, 34.62227290662785], [-77.42161826053953, 34.62202512539314], [-77.42180670968669, 34.621876120366316], [-77.42191249124747, 34.62181840262389], [-77.42193746306098, 34.621766106577084], [-77.4220303164656, 34.62154991645299], [-77.42246628687452, 34.62131897621399], [-77.42270194973702, 34.62116558994714], [-77.4228122820732, 34.62111997081256], [-77.42325547485495, 34.62109412849058], [-77.42372545071927, 34.62104251610246], [-77.42384045968682, 34.621034584429346], [-77.42415755928178, 34.62105573572042], [-77.4244450421946, 34.62107727867166], [-77.4249405142362, 34.62121197794856], [-77.42504898320466, 34.62125335292885], [-77.42514231222037, 34.62129498735401], [-77.42560452345172, 34.621488569738126], [-77.42596202120173, 34.62168745963502], [-77.42604630683911, 34.62177587255047], [-77.4261091740435, 34.62178597184259], [-77.42615268455499, 34.621799212216494], [-77.42628031335565, 34.62189381141598], [-77.42627724177748, 34.62203763147902], [-77.42628092518127, 34.62207825337061], [-77.42624591263133, 34.62214002507096], [-77.42611790879167, 34.622232326476805], [-77.42602578337706, 34.62229633691661], [-77.42591884783661, 34.622291811409795], [-77.42576436782875, 34.6223017192501], [-77.42555094804779, 34.622468083463346], [-77.425581530236, 34.6222775356895], [-77.42518108803573, 34.6220914923858], [-77.42508884401288, 34.62211868906435], [-77.42493179985787, 34.62225599726478], [-77.42493864232009, 34.62230222153829], [-77.42510883621132, 34.622412220258305], [-77.42524328527507, 34.62267477713711], [-77.42529537928168, 34.62272830046157], [-77.42531957899165, 34.62275079665481], [-77.42537754266336, 34.62280969487921], [-77.4255225793758, 34.62295977269432], [-77.42559349638273, 34.62301259000333], [-77.42575178581083, 34.623136727436076], [-77.42596329872484, 34.62327645397826], [-77.42604593542802, 34.6233310440735], [-77.4261295015454, 34.62329475337368], [-77.42645974086298, 34.62318571891234], [-77.42652810942249, 34.623171629682204], [-77.42664686650843, 34.623266297459736], [-77.42660260063934, 34.62344393648019], [-77.42658042673602, 34.62345260775776], [-77.4265843074505, 34.62346873946895], [-77.42658527684618, 34.62348935387145], [-77.42649284522025, 34.623731680194325], [-77.42638856241572, 34.62389374701643], [-77.42623852833901, 34.62403508782121], [-77.42590107236683, 34.62414398438284], [-77.42575127102835, 34.62417593841711], [-77.42566192914053, 34.62416057608948], [-77.42550371572389, 34.62414586665825], [-77.42529424120458, 34.624152826848686], [-77.42519177019122, 34.6240526913177], [-77.42505907862287, 34.62398314596041], [-77.42491921946475, 34.62394317184717], [-77.42462255926905, 34.62389393712367], [-77.4244960995184, 34.62406372679578], [-77.4243893677196, 34.62423424141526], [-77.42429422517218, 34.62446067859518], [-77.42428208777005, 34.62449393288854], [-77.4242724672928, 34.624536253227014], [-77.42421751992848, 34.62479355002308], [-77.4239267455483, 34.625194563419875], [-77.42371231865516, 34.625236158161556], [-77.4231959460781, 34.625345582601796], [-77.4229156766092, 34.62534269003997], [-77.42264917977327, 34.62548343796723], [-77.42250558926706, 34.62573852197163], [-77.42215112288447, 34.62639212491526], [-77.42206642086606, 34.62651836746692], [-77.42201388690306, 34.62661705953359], [-77.4217813762656, 34.627073883397244], [-77.42155125073691, 34.62748731370889], [-77.42178579609174, 34.62765907386126], [-77.4217895562897, 34.628157876836404], [-77.42225067061248, 34.62832852918458], [-77.42293668417338, 34.6280619796011], [-77.42298083374081, 34.62781849986236], [-77.42391541483168, 34.6271656683728], [-77.42437760190076, 34.62684281017704], [-77.42451574665515, 34.626756359290646], [-77.42516547605541, 34.626595277877655], [-77.42535406199345, 34.626568102482544], [-77.4255543983071, 34.62650048741973], [-77.4258532664357, 34.62647087289166], [-77.4260829092933, 34.62638835150798], [-77.42610065173808, 34.626381975804335], [-77.42620967237758, 34.62623346188256], [-77.42628202240194, 34.62613950047263], [-77.42628275009498, 34.62613598842461], [-77.42628457305037, 34.62612544947969], [-77.42636598775132, 34.62574634332942], [-77.42639032018856, 34.62555418007342], [-77.42660106656253, 34.62536034770973], [-77.42662509136036, 34.62532663207966], [-77.42665170070197, 34.625295701977834], [-77.42682091307793, 34.62508544884116], [-77.42699710101992, 34.624886020064466], [-77.42737697664695, 34.62480712207715], [-77.42749680659688, 34.624790660138004], [-77.42782089148477, 34.624962553808174], [-77.4279019046894, 34.625079769924916], [-77.4282112471389, 34.62548020128376], [-77.42846424779444, 34.625517700285], [-77.42833889831974, 34.62561681398593], [-77.42861672949914, 34.62603446472295], [-77.42861010330999, 34.62621460983185], [-77.42870712792293, 34.6263651636467], [-77.42881286845119, 34.626526067484654], [-77.4288514678141, 34.62666171961799], [-77.42893530272998, 34.62686041468301], [-77.4291959896969, 34.627154829471074], [-77.42919625658462, 34.627155292612066], [-77.42919652733097, 34.62715592223386], [-77.428882750805, 34.62761386114079], [-77.42886098438834, 34.627657929756346], [-77.42885112211198, 34.627818969725666], [-77.42883406077014, 34.62836620599593], [-77.42903773035816, 34.628958703852156], [-77.42901913175844, 34.62905194239974], [-77.42892177053976, 34.629318100823845], [-77.42927634960299, 34.62937310602925], [-77.42984578458768, 34.63001723534405], [-77.43043547393306, 34.6301253036282], [-77.43054115274275, 34.630152092248906], [-77.43098889261131, 34.63044865974342], [-77.4318440960532, 34.63107034639591], [-77.4319777183901, 34.63106861707305], [-77.43306671574939, 34.63036881418773], [-77.43298687400834, 34.630136719244454], [-77.43297829981535, 34.62984591548607], [-77.43298454470158, 34.62972061540287], [-77.43300172013284, 34.62953604876352], [-77.43301269162923, 34.629390882601825], [-77.4330332986565, 34.62911823478927], [-77.43305442179755, 34.628838741988986], [-77.43303781597794, 34.62864524230352], [-77.43294959574138, 34.62846949732964], [-77.43288864109857, 34.62812718176091], [-77.43281706277963, 34.6279696724492], [-77.43279076680021, 34.62779446539975], [-77.43279114563236, 34.62684509767591], [-77.43281846544414, 34.6265652718721], [-77.43282562040879, 34.62649027481832], [-77.43278988598374, 34.626419570666116], [-77.43278689847773, 34.62576283009442], [-77.43271011602194, 34.625602909828956], [-77.43269859236457, 34.62541875726421], [-77.43233588277184, 34.62515748042147], [-77.43233186896153, 34.625154029497224], [-77.43233052109969, 34.625152657153336], [-77.4323277613635, 34.625151712337704], [-77.4317638372301, 34.62493103946536], [-77.43174091008532, 34.62492859420709], [-77.43157541930792, 34.62489131371415], [-77.43117961130031, 34.62479884877308], [-77.43113601095715, 34.624784140608526], [-77.43112079033425, 34.62476068627546], [-77.43109299402911, 34.62472245903305], [-77.43081611532341, 34.62447827299403], [-77.43075629736069, 34.62433404176015], [-77.43074601663925, 34.62429128568117], [-77.43071628402421, 34.6241374847627], [-77.43068816022665, 34.62396130871028], [-77.43067587118065, 34.6237797639326], [-77.43068624675409, 34.62350552824669], [-77.43062037059138, 34.62342634241238], [-77.4305862523803, 34.623306187033656], [-77.43060646524494, 34.62270411418135], [-77.43060681479588, 34.62269173147719], [-77.43060494718446, 34.62269076478135], [-77.43060080901586, 34.62268344124996], [-77.43045734162357, 34.62241408855751], [-77.43041685593587, 34.62237662791623], [-77.43025640755496, 34.62220258268077], [-77.43005776322653, 34.62210972248354], [-77.4299642297156, 34.62184955282902], [-77.42990752024784, 34.62178330205798], [-77.42991701034148, 34.62170323347482], [-77.42985897701703, 34.62161251740762], [-77.42992507037499, 34.621526118701865], [-77.43010839911824, 34.62135681992977], [-77.43016182077196, 34.62129926420626], [-77.43021075191761, 34.621257789608734], [-77.43057703463936, 34.62082515108416], [-77.43108605940446, 34.62061364879526], [-77.43134292612476, 34.620473791078446], [-77.43175155306602, 34.62037540271897], [-77.43208359478285, 34.62041627199269], [-77.43245438351482, 34.62043059541365], [-77.43263435057972, 34.62050758968796], [-77.43287854702625, 34.62039185065572], [-77.43310129401, 34.62029259786961], [-77.43348621135127, 34.62008370121376], [-77.43356283311248, 34.62005786512151], [-77.43380339545728, 34.620096117261745], [-77.43410933872258, 34.62013364667909], [-77.43429180396537, 34.62016456073639], [-77.434278575062, 34.6202624343813], [-77.43459717381619, 34.62055423427856], [-77.43464958739546, 34.62080106898227], [-77.43485502747853, 34.620937303024355], [-77.43496957385861, 34.621013262263915], [-77.4350548489567, 34.621054802751225], [-77.43524872170622, 34.621221424778966], [-77.43539774421122, 34.6213263118153], [-77.43533773310818, 34.62147747600599], [-77.43522948102046, 34.62174351308354], [-77.43519764799036, 34.62182298838915], [-77.435140475353, 34.62198039646425], [-77.43507657051074, 34.62215633802758], [-77.4351442384716, 34.62242373405088], [-77.43517145276174, 34.622594874564804], [-77.43523964107705, 34.622848344184284], [-77.4354446225804, 34.62309178880042], [-77.43548138978895, 34.62313025630722], [-77.43550030428536, 34.62314329260625], [-77.4355618826873, 34.62318934049574], [-77.43578261049001, 34.6234320711892], [-77.43579061785327, 34.6236665073517], [-77.43584637032578, 34.62378314182745], [-77.43607192177825, 34.62398727766144], [-77.43613583490668, 34.624069880831954], [-77.43618544571896, 34.62409814556418], [-77.436252498974, 34.62412251250505], [-77.43670243851085, 34.62438047979491], [-77.43720397586871, 34.624503918171406], [-77.4373424275836, 34.624512490611835], [-77.43742643394417, 34.624569504080974], [-77.43766762790754, 34.62474100672747], [-77.43779161748215, 34.62487769671531], [-77.43779671858545, 34.62488883398571], [-77.43781968824851, 34.62490864259688], [-77.43795762081305, 34.62502759328578], [-77.43794136025677, 34.625151785422425], [-77.4380991641181, 34.625106315367816], [-77.43815054547133, 34.62512467090709], [-77.4382694787393, 34.62506604530696], [-77.43833557360375, 34.62500952379024], [-77.43844972924384, 34.62488732274691], [-77.43835907689682, 34.62478768524067], [-77.43829647775244, 34.624717756378324], [-77.43818047046526, 34.624594826866286], [-77.43809615783793, 34.62450548338083], [-77.43790588106107, 34.62430385073377], [-77.43787018961464, 34.624269744594685], [-77.43768876227524, 34.624089198663704], [-77.43759502497367, 34.6240232113457], [-77.4372977013158, 34.623796824157736], [-77.43724094417912, 34.62375489256965], [-77.43722516320449, 34.62374160926644], [-77.43719315997582, 34.6237171915105], [-77.4367519239703, 34.623405804192295], [-77.4365350036645, 34.62323356292801], [-77.43652430286062, 34.623226905694146], [-77.43650435764458, 34.62322635536837], [-77.4362490489153, 34.62310622276364], [-77.43630359609745, 34.62291433449983], [-77.43623366947085, 34.622805014065875], [-77.43610383003352, 34.622602030040674], [-77.43609256507796, 34.6224459134634], [-77.43609763932284, 34.6223770879346], [-77.43612814353858, 34.62222585682016], [-77.43614269053619, 34.622153738339996], [-77.43619659441038, 34.621997035359236], [-77.43626093731237, 34.62181876326836], [-77.4363403987253, 34.62160349619219], [-77.43641626332291, 34.621073476114184], [-77.4364245294867, 34.621033647217914], [-77.43642621877333, 34.62101409671561], [-77.4363339677776, 34.62071696549032], [-77.43631361792544, 34.620696017388475], [-77.43614849260243, 34.62048656338986], [-77.43604965856292, 34.62040201141457], [-77.4357811222738, 34.620168885000744], [-77.43574785384003, 34.62011879280253], [-77.43610763041605, 34.61975073096128], [-77.43624836618073, 34.619712979246486], [-77.43699644400671, 34.61945016513866], [-77.43707210368376, 34.619432595602696], [-77.43754352671996, 34.61954683034963], [-77.43764866901236, 34.619567174052406], [-77.43765896730535, 34.61957404675462], [-77.43772542911131, 34.619610491995545], [-77.43810189371584, 34.619817034411696], [-77.43815571301015, 34.61986163337221], [-77.43824254841688, 34.61986706223628], [-77.43831223077918, 34.619815856426754], [-77.43842671962524, 34.61972444033], [-77.43887218092559, 34.61939239129636], [-77.43882379856083, 34.619045035059656], [-77.4388444980816, 34.61886685689566], [-77.43869625329398, 34.618711393368834], [-77.43851566898647, 34.61850744822737], [-77.43806730948899, 34.618349911028595], [-77.43794932671717, 34.618285479028415], [-77.43775983159536, 34.618103280941995], [-77.43772730356933, 34.61807758777463], [-77.43774700647083, 34.61805641858712], [-77.43792609093487, 34.617822424094214], [-77.4380333367341, 34.617621105416276], [-77.43812257336192, 34.61750762898439], [-77.43824979467038, 34.61731628345716], [-77.43847273352145, 34.6171266044383], [-77.43852896750273, 34.61707149552416], [-77.43886192689821, 34.61691108749249], [-77.4391667601502, 34.616797383016895], [-77.43947434057317, 34.616683703356344], [-77.4396997248866, 34.61658486750777], [-77.44032162293983, 34.61629994677493], [-77.44040898801241, 34.61625675269412], [-77.44046201435573, 34.61623221953982], [-77.44084012219247, 34.61612325720292], [-77.44089708013355, 34.61611916590959], [-77.44121941692842, 34.616116727181705], [-77.44142646392798, 34.61613244040879], [-77.44182790903764, 34.61609080440022], [-77.44202240882433, 34.616049385767525], [-77.44205146499829, 34.61610636789389], [-77.44208232568056, 34.616179837942305], [-77.44224506577648, 34.61642042151884], [-77.44218852358162, 34.61676058165615], [-77.4421950247893, 34.61683869664853], [-77.44187383058282, 34.61726475916062], [-77.44180540795574, 34.617321771448545], [-77.44177013580774, 34.61738800427936], [-77.44164285871237, 34.617699857449495], [-77.44161795220245, 34.61787559222677], [-77.44152080271526, 34.618103902764304], [-77.44133999501875, 34.618397743286806], [-77.44111203406321, 34.6188253150805], [-77.44106825541435, 34.61892207097202], [-77.44103501065301, 34.618980893917914], [-77.4410779016244, 34.61903245782666], [-77.44115441197229, 34.61931610341732], [-77.44129468489609, 34.61949259659101], [-77.44140793923123, 34.61954328021137], [-77.44228888166442, 34.619349216929805], [-77.44229610253764, 34.619309475898945], [-77.44250993589749, 34.61880715249724], [-77.44263837276752, 34.618639131714374], [-77.44282141164445, 34.618729721175015], [-77.44322696514804, 34.61886862819296], [-77.44340792258754, 34.6189270301128], [-77.44377150419675, 34.61893719093054], [-77.44377327927573, 34.61893872445543], [-77.44400268199132, 34.6191142560253], [-77.44408579844378, 34.619358585323184], [-77.44421651730886, 34.61955085594184], [-77.44426281124908, 34.61971055049194], [-77.4443299322441, 34.61988777207171], [-77.44455601198803, 34.620142531098686], [-77.44454170959396, 34.62019664415251], [-77.44453439561026, 34.62029284651661], [-77.44467944524736, 34.6203331566588], [-77.44478027322434, 34.620221001285756], [-77.44513536592244, 34.62002738272359], [-77.44552990814934, 34.619863890051334], [-77.44559357136808, 34.6198311707059], [-77.44572417857401, 34.61975268369761], [-77.44574202172157, 34.61985441294276], [-77.44628538491712, 34.619980929162416], [-77.44658725345998, 34.620233847644194], [-77.4466679333205, 34.62032891833061], [-77.44673500030841, 34.62034559598259], [-77.44679572351683, 34.6203811941333], [-77.44704829526981, 34.6205897194071], [-77.44715938380378, 34.62074111073285], [-77.44744392639629, 34.62082829578296], [-77.44746378159378, 34.62084050491828], [-77.44749791265708, 34.62086217262954], [-77.4476762224208, 34.62102360255865], [-77.44774136959343, 34.62113060937415], [-77.44775099828445, 34.62126042134922], [-77.4476413215717, 34.62152839165084], [-77.44752845358803, 34.621801960636304], [-77.44748436882497, 34.6223116560959], [-77.4473925510823, 34.622560924027816], [-77.44729444096423, 34.622958893840796], [-77.44726870379056, 34.62311165935654], [-77.44724123638144, 34.623384035174816], [-77.4472216993258, 34.62355284727719], [-77.44721676769203, 34.62386497803181], [-77.44726843700893, 34.624188600344965], [-77.44688122895147, 34.624534082936734], [-77.44671128390374, 34.62461307813759], [-77.44643368859278, 34.624826760112384], [-77.44644426512414, 34.62513906090549], [-77.44661944469021, 34.6255123047506], [-77.4472484084758, 34.62587501612302], [-77.44804674338785, 34.626056677114974], [-77.448620470315, 34.626418786730326], [-77.4495518203138, 34.62660581758541], [-77.45059800780174, 34.62585490874706], [-77.45106774846357, 34.6255177505098], [-77.45129973421234, 34.62530821475544], [-77.45249378876912, 34.62383726343974], [-77.4525197712913, 34.62354813275809], [-77.45202639513252, 34.62302017038422], [-77.45178844720475, 34.622561368630855], [-77.45154391308948, 34.62235998540052], [-77.45122462654065, 34.62217163625767], [-77.45114109321811, 34.62200745452947], [-77.45081348717727, 34.621712448971195], [-77.45052327681111, 34.62144511633282], [-77.45041020730068, 34.621338584276124], [-77.45020115225289, 34.62116771643517], [-77.45021175152846, 34.62088254294687], [-77.45018277765877, 34.62080369738373], [-77.45022185165557, 34.62065449584915], [-77.45029188611734, 34.620291182966966], [-77.4503773130656, 34.62000970517185], [-77.45074730216963, 34.61945112526057], [-77.45106227423854, 34.61932191496816], [-77.45123000757539, 34.619293832594], [-77.4514294844403, 34.6191780299917], [-77.45167919821874, 34.619014162482095], [-77.45179701433919, 34.618959568612915], [-77.45214576778987, 34.61879796231683], [-77.4523202700162, 34.61871710000762], [-77.45223196520249, 34.61849234223929], [-77.4520676124023, 34.61839782304269], [-77.45197228631059, 34.61840149577989], [-77.45151860801533, 34.618427753711785], [-77.45128254972683, 34.618443297282134], [-77.45084254836902, 34.61839999854467], [-77.45037547374011, 34.61809329717923], [-77.45018644109868, 34.61795468984731], [-77.44996244914854, 34.61791246106899], [-77.44944597066666, 34.61794563684858], [-77.44929536160315, 34.617988959061954], [-77.44909260955035, 34.61801341073618], [-77.44901351716662, 34.61801717673829], [-77.44876988849265, 34.61799004138696], [-77.44864004389788, 34.618016604966925], [-77.44861167273449, 34.617928395179774], [-77.448575437121, 34.617832463934334], [-77.44847049917493, 34.61759939508593], [-77.44838882275221, 34.61740939943753], [-77.44833623742372, 34.61726842418717], [-77.44824698734934, 34.617125635185516], [-77.44823802060102, 34.617111803376716], [-77.44816469977381, 34.61706935280668], [-77.44803196493157, 34.61698593290388], [-77.44800556862653, 34.61696361952342], [-77.44795950230208, 34.616950549479505], [-77.4478144697455, 34.61694681085528], [-77.4474319372395, 34.61694396263203], [-77.44727094872744, 34.616947410421126], [-77.44711893433305, 34.616877027498916], [-77.44695219715496, 34.616645105137366], [-77.44685464433664, 34.616583133748684], [-77.44684062316384, 34.61655918317895], [-77.44678088669208, 34.61648634311361], [-77.44662946496261, 34.616278087497754], [-77.44646227461917, 34.616107414285615], [-77.44635215855965, 34.61598790475739], [-77.44626418708731, 34.6158924289975], [-77.44611804941596, 34.615733824174114], [-77.44610468270528, 34.61568921626139], [-77.44621183912561, 34.615499270003035], [-77.44622884369393, 34.6152845583126], [-77.44634389912707, 34.615193443580566], [-77.44641923616055, 34.61516538249906], [-77.44655353445928, 34.61508152822288], [-77.44702074127217, 34.61481087174869], [-77.44733054695985, 34.614653343366655], [-77.44758868306246, 34.61439019366925], [-77.44809359821264, 34.614014309589066], [-77.44815223912343, 34.61396798093307], [-77.44818723316956, 34.613941830469116], [-77.44830585796738, 34.613853473522056], [-77.44880358475932, 34.61357648463599], [-77.44907119080742, 34.61332996651328], [-77.44938727993394, 34.613445625434146], [-77.44963126700908, 34.613455370967515], [-77.44972722630388, 34.61348716291532], [-77.45007972004817, 34.613447922217624], [-77.45013825128801, 34.61344179298849], [-77.45015286103889, 34.61344022488363], [-77.4510089389691, 34.61329157585903], [-77.45130423965736, 34.613212635124114], [-77.45132278904937, 34.61309341218622], [-77.45137674151495, 34.61284186020144], [-77.45140775387729, 34.61262945929376], [-77.45149935709256, 34.612304536095806], [-77.4516485705723, 34.61209432208211], [-77.45185153786962, 34.611963810576], [-77.45217618713536, 34.61186434879998], [-77.45233883809561, 34.61182345856957], [-77.45255520652098, 34.611792138556595], [-77.45282764451935, 34.6116886092451], [-77.45343410860133, 34.61148024659126], [-77.45367799572516, 34.6109542131303], [-77.45368693860078, 34.6109493165689], [-77.4543532375331, 34.61103108002331], [-77.45445363781604, 34.61109267271854], [-77.4546881239761, 34.61129958864445], [-77.4547739744186, 34.611370565965125], [-77.4548078901164, 34.611389537413785], [-77.45486777964354, 34.611459302618], [-77.45504277794062, 34.61166315762419], [-77.45519085800485, 34.611835655009486], [-77.45563715470169, 34.61186288290057], [-77.45572506566424, 34.612281738393065], [-77.45581165452022, 34.61255163533956], [-77.45591295497995, 34.61278150373106], [-77.4565770593997, 34.61257979093628], [-77.45653803034443, 34.61234444298898], [-77.45638408227491, 34.612205391276945], [-77.45622392913141, 34.61169551094175], [-77.45605525393279, 34.611158489890165], [-77.45612557997792, 34.61098503358381], [-77.45599664894348, 34.61085029214214], [-77.45582964687677, 34.6103309199962], [-77.45573330353349, 34.610257896677865], [-77.45565778884357, 34.61001067793471], [-77.45557912821612, 34.609753157860034], [-77.45562962905487, 34.6096494458287], [-77.45554234594762, 34.609576982687514], [-77.45538566215788, 34.6093497727125], [-77.45536831991124, 34.60933258087322], [-77.4552763463673, 34.60902784596403], [-77.45528169257615, 34.60901016570272], [-77.4552776393027, 34.60898625866247], [-77.45529820909945, 34.608416111090975], [-77.45537215886912, 34.60824583244461], [-77.45529110655005, 34.608055362624974], [-77.45490965019292, 34.60777281576135], [-77.45485002111191, 34.60768033913891], [-77.45482405463451, 34.607663650409876], [-77.45471200154853, 34.60759163338305], [-77.45440932607076, 34.60730483834596], [-77.45408285585748, 34.60713654384665], [-77.45428613587092, 34.60682324683962], [-77.45456871154062, 34.60652781175235], [-77.45477577479878, 34.606200369037936], [-77.4551869175547, 34.60589963849219], [-77.45530242468583, 34.605680879746195], [-77.45534595067951, 34.605645588290066], [-77.45535889445404, 34.605573932122475], [-77.45548092423901, 34.605383119646845], [-77.45546901766832, 34.605264094620566], [-77.45538928352444, 34.60519203154384], [-77.45539659723292, 34.6051001213414], [-77.45540094801913, 34.605045446475835], [-77.45550074102214, 34.60488578160934], [-77.45549810426724, 34.60476974685917], [-77.45576265423074, 34.604441803869236], [-77.45572676636243, 34.60386488314473], [-77.45565439782283, 34.60373415754643], [-77.45522358251188, 34.60343492706059], [-77.45552432002879, 34.6030327364286], [-77.45528307990966, 34.60283636103734], [-77.45557060930639, 34.60250771777331], [-77.45556984468453, 34.60231731191852], [-77.45557910301217, 34.60227858174639], [-77.45552485113015, 34.602282968752725], [-77.4554326893846, 34.60200405697368], [-77.45530871364019, 34.60163287638993], [-77.4553050013649, 34.601618246457996], [-77.45530073875052, 34.601603770100304], [-77.45524315363909, 34.60131189254598], [-77.45516763276177, 34.60093781155427], [-77.45519763272884, 34.60091034803572], [-77.45597013102964, 34.60012738804595], [-77.45623287801519, 34.60007176530457], [-77.45694630291143, 34.59985295256295], [-77.45705974951895, 34.59974169752003], [-77.45708227483097, 34.5996341749739], [-77.45733437497856, 34.599218403247605], [-77.45774494841838, 34.59893027809576], [-77.457898667969, 34.59879646242716], [-77.45853375513448, 34.5986029831634], [-77.45870141415313, 34.598583947552385], [-77.45898310970216, 34.59855650688202], [-77.45941171066214, 34.598443614264504], [-77.45972936183921, 34.59849864592168], [-77.4597564445023, 34.59850196599867], [-77.46013244132253, 34.59847654330052], [-77.46049084567565, 34.59846463830524], [-77.4607670882758, 34.598449047188275], [-77.46090912377667, 34.59844103018904], [-77.46135180497316, 34.598416042103516], [-77.46169747903639, 34.598391232579495], [-77.46201526848071, 34.59837858979386], [-77.46272690660959, 34.59792767679187], [-77.46312077994978, 34.597526608529165], [-77.46312608017163, 34.59717122672437], [-77.46317963925841, 34.59657823485173], [-77.46320325374452, 34.596410664886825], [-77.46320325865531, 34.59631674091877], [-77.4632032813046, 34.595672109264235], [-77.46317766313297, 34.59506905904261], [-77.46314559635728, 34.59479084231869], [-77.46283160288056, 34.59447173894114], [-77.46273724749939, 34.59437584836309], [-77.46200235155828, 34.59465787073885], [-77.46183278678575, 34.59466323345696], [-77.46174224277232, 34.594678479282194], [-77.46151279939461, 34.59479627836423], [-77.46136646918183, 34.59487980616662], [-77.46131490596437, 34.59491850855427], [-77.46122625159468, 34.595005709312716], [-77.46114612508711, 34.59515130280402], [-77.46108830756577, 34.5952671319441], [-77.46100270655033, 34.59547084470053], [-77.46097321607286, 34.595536550074755], [-77.46094790171554, 34.5955771326187], [-77.46090565536039, 34.59570180382958], [-77.46079081672158, 34.59609210457478], [-77.46069451547831, 34.59626480900094], [-77.46064878256956, 34.596352097151026], [-77.46055742441243, 34.59642708619781], [-77.46041397261014, 34.59657963004615], [-77.46028517262555, 34.596689454738204], [-77.45992773570477, 34.59689796839042], [-77.4598580732773, 34.59662662744497], [-77.45952099966907, 34.596480996715435], [-77.45949372647296, 34.596257660550236], [-77.45953616737594, 34.595979938809755], [-77.45954717128046, 34.59591403937165], [-77.45955211889576, 34.59565871682195], [-77.45950774084078, 34.5955827439418], [-77.45941116486993, 34.59541740832792], [-77.45935196108809, 34.595316053131526], [-77.4593409001401, 34.59529711696869], [-77.4592993648068, 34.595260595293944], [-77.45913677781134, 34.59512202298786], [-77.45893355961663, 34.595044071272206], [-77.45876565518326, 34.594979665249454], [-77.45852611680904, 34.594954491272496], [-77.4579843481279, 34.59494562629917], [-77.45785308830352, 34.5948632433902], [-77.45767959605774, 34.59485258993689], [-77.45759265714644, 34.5949731167846], [-77.4572281547664, 34.595123522204084], [-77.45707778872523, 34.59520427222988], [-77.45683461004751, 34.5953272529984], [-77.45677397453052, 34.595384459995024], [-77.45657037055201, 34.59571830184075], [-77.45655975945625, 34.59585046289548], [-77.45655075446, 34.595998911509625], [-77.4565479975326, 34.59609394946643], [-77.45652642355354, 34.59640002121455], [-77.45652296888865, 34.59645697247912], [-77.45649846930071, 34.59652007611929], [-77.45659889506607, 34.59681795831187], [-77.45667794213598, 34.597130580638016], [-77.45624834875267, 34.5973041277454], [-77.45596878863384, 34.59716790609011], [-77.45528087594779, 34.59726112018874], [-77.45518870507229, 34.59727360947732], [-77.45504659573916, 34.597381359500815], [-77.4546850568251, 34.597672020467044], [-77.45437636844932, 34.59814631762758], [-77.45435852145297, 34.59817714816019], [-77.45408424396484, 34.5982738562944], [-77.45343837100944, 34.59856012347218], [-77.4533647553193, 34.59852383184472], [-77.45331041876823, 34.5984945980923], [-77.452876046044, 34.598426166465714], [-77.45271736820922, 34.59840116772388], [-77.45238391930306, 34.598415267269175], [-77.45234714455188, 34.59841428267425], [-77.45233099119206, 34.598416493123565], [-77.45224771608711, 34.598428474269056], [-77.45190729769652, 34.598477451800676], [-77.45174382619204, 34.59850097069989], [-77.45133565925678, 34.598559693739276], [-77.45093914708258, 34.59874704434116], [-77.45070623752765, 34.598757267297756], [-77.45080313074948, 34.59891337751873], [-77.4511638735225, 34.599106888296056], [-77.45134493588273, 34.59916517040933], [-77.45153925203456, 34.59930335713872], [-77.45158688272878, 34.599355491062894], [-77.45157529639629, 34.599435014746355], [-77.4515412247001, 34.59966886515019], [-77.45151469336622, 34.5997453412835], [-77.45131553683349, 34.60011548989574], [-77.45129158345748, 34.60017823914403], [-77.451277569929, 34.60019599899363], [-77.45122007288505, 34.600232231435584], [-77.45077840943493, 34.60036434889008], [-77.45043417297553, 34.600278924658774], [-77.45025203642342, 34.60036173944171], [-77.45011225180858, 34.60040760171096], [-77.4500080206366, 34.60043046161573], [-77.44989745663251, 34.600478074071994], [-77.44977290851222, 34.60053170859176], [-77.44953809903984, 34.60067837375462], [-77.44942420913027, 34.60078622159559], [-77.44943506135768, 34.60104350724211], [-77.44957658439816, 34.60103665444068], [-77.44982434047418, 34.60102465774077], [-77.44991242532429, 34.60104134482489], [-77.45023686594615, 34.60121758869524], [-77.45033240428234, 34.601317728727196], [-77.45045635919843, 34.60152424207909], [-77.45034314385879, 34.60172720084637], [-77.45023795040012, 34.601955795516204], [-77.45021937192807, 34.60199358827831], [-77.45019394881375, 34.60206969068724], [-77.45012571915748, 34.602270515088016], [-77.45009125362142, 34.60236689359816], [-77.45014267854958, 34.60246408675335], [-77.45031334522477, 34.60250581166748], [-77.45043729447674, 34.602561000552754], [-77.45054573508732, 34.602606526035395], [-77.45071402315196, 34.60267978712082], [-77.45076099730107, 34.60280252125406], [-77.45077785285817, 34.60290958033846], [-77.45072520566883, 34.60305014201198], [-77.4506979364011, 34.60309015339213], [-77.45050383181456, 34.603201594017186], [-77.45019156918681, 34.60331865677854], [-77.45001533440255, 34.60333739698438], [-77.44972758784075, 34.60336999409242], [-77.449519021909, 34.60344465753779], [-77.44933196334392, 34.60369122268642], [-77.44962091684602, 34.60381685493349], [-77.44981794256395, 34.603775529940116], [-77.44991908482393, 34.603893028619055], [-77.45044184722042, 34.603926970166526], [-77.45070480112282, 34.604038191709236], [-77.45072050764196, 34.60404340079991], [-77.45074685043532, 34.60408923865128], [-77.45087864915058, 34.60430720375458], [-77.45090539344989, 34.60435023810436], [-77.45092830215026, 34.60440955941354], [-77.45098727009298, 34.60496736827182], [-77.45099431026735, 34.60505205413784], [-77.45099303435923, 34.60506375929379], [-77.45098961723811, 34.60508587612065], [-77.45089574622085, 34.605636961305024], [-77.45048419955252, 34.605703901096405], [-77.45013999251572, 34.605712851342346], [-77.44975632298966, 34.60585765173824], [-77.4496616357436, 34.605885750048195], [-77.44951627169723, 34.60597310608012], [-77.44920657235718, 34.60614373644152], [-77.44883105464474, 34.60615327409168], [-77.44868780166867, 34.606169024907224], [-77.44860826764862, 34.60616902508985], [-77.44830194024762, 34.606200520100884], [-77.44817294447869, 34.60620860827768], [-77.44814611458351, 34.606244959624824], [-77.44810507827872, 34.606327122115424], [-77.44802693979479, 34.606463574397175], [-77.4480252875882, 34.606490710865444], [-77.4480458580664, 34.6066428068262], [-77.448085025856, 34.60680880503692], [-77.44820720444591, 34.60696604930052], [-77.44842888146087, 34.60725134722553], [-77.44843934499451, 34.607269102602984], [-77.44844620504915, 34.60728151931319], [-77.44847445050925, 34.60730994798195], [-77.44855156055672, 34.60742172845446], [-77.448549968043, 34.607585792831756], [-77.44854724283955, 34.60760246734106], [-77.44854423432119, 34.607608445962654], [-77.44834546820819, 34.60784156168724], [-77.44828050567315, 34.60805291301942], [-77.44818903789108, 34.608187667430705], [-77.44805687239688, 34.608359977786094], [-77.44785050649249, 34.60846704632229], [-77.44774255974151, 34.608477071500786], [-77.44735500892062, 34.6086157173564], [-77.44726392232812, 34.60864901218603], [-77.44721247031998, 34.60868389872239], [-77.4469031757409, 34.60871099821237], [-77.44675836859861, 34.60872263484838], [-77.44659604916627, 34.608717902309074], [-77.44653388470824, 34.6087053560071], [-77.44633929177655, 34.6086880415789], [-77.44621937313119, 34.60867409503132], [-77.44614047309574, 34.608663188370855], [-77.44585023437563, 34.60862690673461], [-77.44567914684899, 34.60862105448626], [-77.4454860480266, 34.6086991546833], [-77.44543973220954, 34.60870668018185], [-77.44539508449914, 34.60872623429657], [-77.44520162534742, 34.60879708422231], [-77.44510327029762, 34.60887490584425], [-77.44480976085993, 34.608984709318], [-77.44467712067977, 34.6088014768728], [-77.44462296084286, 34.608726659078314], [-77.44447982551166, 34.608473800267504], [-77.44439623959275, 34.608422055066114], [-77.44434781759819, 34.60830081903777], [-77.44424084730016, 34.60809711296379], [-77.44418897768726, 34.60793552273417], [-77.44438889329282, 34.607748481388946], [-77.44443887926053, 34.60771327265374], [-77.44459109641133, 34.6076279886871], [-77.4447786029496, 34.60752245759504], [-77.44484053024227, 34.60747790444628], [-77.44497963768475, 34.60728310553057], [-77.44498587578786, 34.60714616446128], [-77.44489830849852, 34.607047871345415], [-77.44486864693559, 34.60699496673728], [-77.44471206993849, 34.60687975876065], [-77.44468875045779, 34.60686163864463], [-77.44466922401486, 34.60685205901205], [-77.44432431674082, 34.60683535974322], [-77.44413769488705, 34.60683074051514], [-77.44366292034407, 34.60678489997298], [-77.44362016376714, 34.6067819850618], [-77.44358124646362, 34.60671837474679], [-77.4433795210729, 34.60649645806176], [-77.4434782564851, 34.60634208898124], [-77.44360316848233, 34.606181960193155], [-77.44386100958393, 34.60581985693146], [-77.44396765408366, 34.605690106622035], [-77.44397542670482, 34.60558803588261], [-77.4440229226474, 34.60537529208179], [-77.44407679654802, 34.60518987928256], [-77.4440911600781, 34.60511391480302], [-77.4441348962681, 34.60480405959319], [-77.44414861961639, 34.60451460791272], [-77.44416286121678, 34.6042899211293], [-77.4440441913863, 34.60409142251882], [-77.44403962789227, 34.60398345386831], [-77.4438828068852, 34.60397884430391], [-77.44365529031224, 34.60399622305287], [-77.4433689592298, 34.604022057991756], [-77.44307863266441, 34.60414011986822], [-77.44288309980276, 34.604167539208376], [-77.44276887948183, 34.60434141682457], [-77.44278342817083, 34.60445092659146], [-77.44276940031654, 34.604651309197905], [-77.44279829133518, 34.60481593850064], [-77.44274706305083, 34.605106636125605], [-77.44273791207992, 34.605202405181664], [-77.4427250216551, 34.60525519783741], [-77.44267470646514, 34.605326850645866], [-77.44240712972109, 34.60566597318936], [-77.44234376923642, 34.60574118164255], [-77.44187527531085, 34.60618687120203], [-77.44187972485679, 34.606198188942244], [-77.44187047083099, 34.60622984923647], [-77.44157260558295, 34.606710120123296], [-77.44148250068721, 34.606733065303175], [-77.44144358223987, 34.60670023160584], [-77.44140737461312, 34.60668953039223], [-77.44111056189004, 34.60665024039254], [-77.44105025338195, 34.606527294856924], [-77.44114026628986, 34.60639644016783], [-77.44100576272507, 34.60632124091616], [-77.44097463529923, 34.60607441679343], [-77.44088568550441, 34.60585026850842], [-77.44080983632341, 34.60575215633422], [-77.44076715845776, 34.60569870724149], [-77.44062296239338, 34.605448598832375], [-77.44061850612029, 34.605437460631585], [-77.44056986794376, 34.605319136102636], [-77.44049217308995, 34.60512065438396], [-77.44048282626798, 34.605106897839924], [-77.44047731950756, 34.60508790759086], [-77.44039287875813, 34.60478493056895], [-77.44038457353744, 34.60476566401196], [-77.44021785262021, 34.60454179220406], [-77.44017087227807, 34.604457346617394], [-77.43994617278821, 34.604282564711596], [-77.43981616247169, 34.604189233295116], [-77.4397769153157, 34.604166630002446], [-77.43970363869406, 34.6040746585557], [-77.43956332657729, 34.60389207376683], [-77.43947692273375, 34.6036191611486], [-77.43944148728559, 34.60355756529397], [-77.43942561671756, 34.60348092311379], [-77.43939653854598, 34.60326032577304], [-77.43938246263819, 34.6032051477148], [-77.4392725549034, 34.602954792365196], [-77.43924437640212, 34.60287527169845], [-77.43918911932496, 34.6027787081308], [-77.43911583285666, 34.602689284659746], [-77.43901843802061, 34.60257044357547], [-77.43893511822492, 34.60245310858207], [-77.43885023500312, 34.60224915451667], [-77.43881155563147, 34.602147064520075], [-77.43875915944079, 34.60200876936146], [-77.43873201263987, 34.601913615467225], [-77.43870881423943, 34.60181556578592], [-77.43865081576888, 34.601567520093404], [-77.43860622790652, 34.601335801299406], [-77.43858106830946, 34.6012181604589], [-77.43856178484756, 34.60108111045764], [-77.43851926937386, 34.60082657947724], [-77.43848911263646, 34.6004922530071], [-77.43847832166455, 34.600407906417004], [-77.43847505254315, 34.60033754428908], [-77.43845782391412, 34.59998627638144], [-77.43845732129391, 34.59961383695333], [-77.43851386923296, 34.59955357821379], [-77.43870570986603, 34.59920595125861], [-77.43877446700658, 34.59909130237359], [-77.43877829091231, 34.59906430820668], [-77.43909104838909, 34.59862092974246], [-77.43914127267641, 34.59855395112262], [-77.43919667619315, 34.598502787301335], [-77.4394348285549, 34.598314541977544], [-77.43962620480028, 34.598157294031374], [-77.4396974862865, 34.598108640881584], [-77.43998459117097, 34.59790366082318], [-77.44017364009233, 34.597818912040125], [-77.44018159642398, 34.59781427939651], [-77.4402936569423, 34.5975978329071], [-77.44027191221488, 34.59748615175994], [-77.44024333082105, 34.59732605404709], [-77.44011858582235, 34.59719855563828], [-77.43998413920107, 34.596933635944566], [-77.43992080494692, 34.5968707674377], [-77.43981149700697, 34.59681836972307], [-77.43958998093684, 34.59678502777319], [-77.43930081377442, 34.59677917218435], [-77.43919588814671, 34.59677704741973], [-77.43891119509735, 34.59652396598434], [-77.43884942122858, 34.59648144628719], [-77.43880161547679, 34.59637033312638], [-77.4386791713863, 34.596132923218406], [-77.43876545372339, 34.59573450481005], [-77.43876700176202, 34.59565868050154], [-77.43893163873861, 34.595247226472054], [-77.43902259257929, 34.59504820849307], [-77.43906352776348, 34.59452046882191], [-77.43909157894143, 34.59437490977497], [-77.43909051682309, 34.594262764570665], [-77.43919462309287, 34.59399630427659], [-77.43934122367716, 34.593647744284745], [-77.43944945088317, 34.593473968759625], [-77.43958838174966, 34.593304159805356], [-77.43990665953402, 34.593326173205824], [-77.43998247010254, 34.59333814572586], [-77.44001308830887, 34.59335947922039], [-77.44005829102407, 34.59338592116545], [-77.44056244486185, 34.593537404979784], [-77.44077073461152, 34.59359032752124], [-77.44098606051791, 34.59348380167004], [-77.44134243177774, 34.59320020415037], [-77.441460162147, 34.59307707684137], [-77.44155860801641, 34.59302168414366], [-77.44192106497104, 34.592725827954354], [-77.44196044459673, 34.592694763100546], [-77.44234638082482, 34.5922699129705], [-77.4424277272085, 34.592194041986325], [-77.44244898653, 34.59208031150055], [-77.44234617590273, 34.59185184462037], [-77.44219844785874, 34.59153701975313], [-77.4416783324691, 34.591582985911444], [-77.44155790800549, 34.591566325593746], [-77.4415065546379, 34.591533399695585], [-77.44078514636615, 34.59159896226935], [-77.44076979333178, 34.591595230778324], [-77.4407603750966, 34.59159615263909], [-77.44040046045288, 34.59166466935533], [-77.44037576332326, 34.59166894481725], [-77.44016222713546, 34.591672510282606], [-77.44000065771259, 34.59167545165691], [-77.43998170202582, 34.59167655892705], [-77.43995162639919, 34.591670564596406], [-77.43922496484485, 34.59177427682783], [-77.43919360260637, 34.591743991980515], [-77.43911975219919, 34.59174369735203], [-77.438662667681, 34.591612182902885], [-77.43840533199625, 34.5914282147172], [-77.43829231948489, 34.591215401068034], [-77.43819104134926, 34.59110838001637], [-77.43809920016089, 34.59102672605616], [-77.43801104741088, 34.590924440548775], [-77.43800951096874, 34.59092233326757], [-77.43795578427509, 34.5907772809437], [-77.43792522653753, 34.59072222403044], [-77.43795616308248, 34.590658738554986], [-77.43801090061487, 34.59058871860478], [-77.43817771000649, 34.59044092454763], [-77.43828971445112, 34.590368995171275], [-77.43840483097365, 34.590295067246736], [-77.43845130979393, 34.5902716469637], [-77.43848269444018, 34.59021701687522], [-77.43884791662288, 34.58979267577817], [-77.43887005289915, 34.58973640674269], [-77.43893884321756, 34.58957531273095], [-77.43896544148092, 34.5895103152235], [-77.43897667858006, 34.58948834854026], [-77.43909343056242, 34.589279508884694], [-77.43879834698407, 34.58907827292619], [-77.43864653033457, 34.58908312773134], [-77.4385574466686, 34.58909743824026], [-77.4384043246722, 34.58914761386394], [-77.43824448960687, 34.589230012773754], [-77.43801035498385, 34.589339284326506], [-77.43770967396321, 34.58947961217154], [-77.43763982997285, 34.58951498281464], [-77.43761637629225, 34.58951442035597], [-77.43759792428268, 34.58951565398059], [-77.43754032196136, 34.58950410083045], [-77.43728204766886, 34.58947707484859], [-77.43722229908131, 34.58946277626403], [-77.43701821460206, 34.58937486331811], [-77.43685353882523, 34.58917881528477], [-77.43684474083594, 34.589162175425834], [-77.43682810046269, 34.58912248275873], [-77.43672198018965, 34.58888748247969], [-77.43667024273105, 34.58878072566651], [-77.4364797375791, 34.58843322007904], [-77.43645113314413, 34.58836906552929], [-77.4363763784969, 34.58833683780534], [-77.43603959229708, 34.588149004503805], [-77.4359729149853, 34.588104193618264], [-77.43590706490943, 34.588041889079804], [-77.43564539923338, 34.587794979068335], [-77.43559204578398, 34.58772030090495], [-77.43555483987517, 34.5876682238906], [-77.4354214030478, 34.58750415743963], [-77.43539921795532, 34.58747842845642], [-77.43525116285781, 34.58732478880063], [-77.4352349581417, 34.587307335069724], [-77.43522161244746, 34.587291811276884], [-77.43505880405988, 34.587108172552604], [-77.43488770444515, 34.58691549637143], [-77.43487353142746, 34.58689967740036], [-77.43485694086665, 34.58687940239599], [-77.43469752777199, 34.586690091460696], [-77.43457515083088, 34.5865360933463], [-77.43462483404352, 34.58635419588019], [-77.43471363049107, 34.5859374588577], [-77.43505260928187, 34.58583118010394], [-77.4352505427899, 34.58577867499627], [-77.43548689853894, 34.58580975355168], [-77.43564457906177, 34.585774645034526], [-77.4357379732781, 34.585842767432176], [-77.43584163128467, 34.5858563972176], [-77.43589481597928, 34.585863390320554], [-77.43603650568747, 34.58589787949229], [-77.43603866753706, 34.58589827135438], [-77.43604023954293, 34.58589797487993], [-77.43604781845845, 34.58589857305056], [-77.43623569303739, 34.585913622821344], [-77.43634957367365, 34.58585494089386], [-77.43638595055107, 34.58579934419063], [-77.4364325764538, 34.58558615380389], [-77.43650702409784, 34.58540758087575], [-77.43643243818406, 34.58525248287077], [-77.43635468389087, 34.58508872655969], [-77.43631636394551, 34.58488564348251], [-77.436294376197, 34.58458914239509], [-77.43630815134554, 34.58429605769001], [-77.43637879862962, 34.58409505829364], [-77.43643191733263, 34.58399376019012], [-77.43651297339278, 34.583795779514915], [-77.43668542118345, 34.583683411684234], [-77.43677293283648, 34.58361380218201], [-77.43682579781871, 34.58363785443353], [-77.43683773726295, 34.58364852577447], [-77.43685238921229, 34.58365926791176], [-77.43694903307235, 34.58372483391244], [-77.43702286916343, 34.58377492630289], [-77.43706075078268, 34.583800626218164], [-77.43721996007018, 34.58395674032889], [-77.43729007438975, 34.58394501137182], [-77.43748333102069, 34.58427627748372], [-77.43752093039384, 34.58441178052091], [-77.43754175919369, 34.58448684459379], [-77.43761422832077, 34.58451632327237], [-77.43789471430748, 34.58490485442648], [-77.43812903166274, 34.58487840668458], [-77.43840243606743, 34.584847546589444], [-77.43854986118717, 34.584953363434494], [-77.43875427278448, 34.58508261171437], [-77.43901837001064, 34.58523008429783], [-77.43919072272345, 34.58534164537547], [-77.4392455298128, 34.58537712111354], [-77.43929993589818, 34.58542829343985], [-77.43942220232034, 34.58558589146363], [-77.43966150636976, 34.585800596444386], [-77.43975953940102, 34.5860230080323], [-77.439979175083, 34.5861777777317], [-77.44022104381557, 34.58630830270197], [-77.44073108154694, 34.58645598074524], [-77.44076738885381, 34.58646939661608], [-77.4407808643162, 34.586473378254546], [-77.44082391895887, 34.58648166951601], [-77.44116146541, 34.58654667263391], [-77.44155403158352, 34.58637606907079], [-77.44155498988489, 34.586375462509835], [-77.44155542378077, 34.586374663254055], [-77.44198965257225, 34.585931997658626], [-77.44300057087534, 34.58531763994821], [-77.44296840659828, 34.58514711538838], [-77.44266216306117, 34.58417286367413], [-77.44238506735451, 34.58370828555559], [-77.44207609396832, 34.58319026971442], [-77.44155349598046, 34.582314046510064], [-77.44080891995117, 34.58134135504264], [-77.43976444235966, 34.58069056033985], [-77.43907420699487, 34.580064200556016], [-77.43840026291245, 34.57985797568203], [-77.4371695332497, 34.578994960042515], [-77.43659749482454, 34.57920614946015], [-77.43524809929977, 34.57964213943507], [-77.43524541721479, 34.57964281266618], [-77.43518809364292, 34.57965399170199], [-77.43450162651949, 34.579797953419664], [-77.43446013397009, 34.57977854170241], [-77.43409691337757, 34.58023635638761], [-77.43408489356226, 34.58025812294013], [-77.43406632915642, 34.58031507455122], [-77.43386941858964, 34.58069383997258], [-77.43396290083604, 34.58099318179305], [-77.43399628686564, 34.58110008917768], [-77.43401342483426, 34.581154967177], [-77.4340667145994, 34.58132250018056], [-77.43412921303957, 34.581505462444035], [-77.43413794010945, 34.58158084621688], [-77.4341500442558, 34.58171474668097], [-77.43406690352965, 34.58181562302651], [-77.4339746595039, 34.581852983190174], [-77.43375723362352, 34.5818929725149], [-77.43367290042644, 34.581858870564], [-77.43349587822553, 34.58178775747797], [-77.43314546922416, 34.58164768973856], [-77.4329727634445, 34.581577823355715], [-77.43288476413487, 34.58159692943913], [-77.432818636028, 34.5816236713725], [-77.4324907546999, 34.58162236415506], [-77.43214719718101, 34.581737677750745], [-77.43209678359779, 34.58175524160995], [-77.43205853606682, 34.581763608575564], [-77.43161192385972, 34.58186939008946], [-77.4313406642067, 34.581942929224674], [-77.43130881621704, 34.58196044490051], [-77.43125160760738, 34.58192147751744], [-77.43074886682182, 34.58174828202798], [-77.43052069119321, 34.58171528444724], [-77.43021066145336, 34.58155679506545], [-77.42985814972431, 34.58140906863299], [-77.42979506941924, 34.58170743220459], [-77.42984237085994, 34.582007057019894], [-77.42985303784404, 34.5821236426455], [-77.42978382205476, 34.58218861862936], [-77.42973282112004, 34.582226589937854], [-77.42954095216149, 34.58238653224774], [-77.42953079148631, 34.58238798164462], [-77.42951448918295, 34.582384872939485], [-77.429372084698, 34.58236963864611], [-77.4293388403758, 34.582353658463255], [-77.42925538122823, 34.58229994443573], [-77.42913797799207, 34.58222699924319], [-77.42910926959387, 34.58205383376918], [-77.42894474628626, 34.58213290183641], [-77.428759490382, 34.58205671716334], [-77.42874770977792, 34.58205313607465], [-77.42870933619045, 34.582035315081164], [-77.42855067013602, 34.581962287364156], [-77.4285062231005, 34.5819416097891], [-77.42845731446984, 34.58190079082981], [-77.42829681784956, 34.581772880619], [-77.42828475770604, 34.58163929867732], [-77.42831531665604, 34.581496725214485], [-77.42826457992277, 34.58138755938161], [-77.42825936348544, 34.581080223359606], [-77.42815630729515, 34.58086807001567], [-77.42809640051094, 34.58074370129213], [-77.42804795363057, 34.58068619005232], [-77.42776212396426, 34.58032334533201], [-77.42775033832865, 34.58031731410583], [-77.42774240040538, 34.58030576324199], [-77.42760616829278, 34.58015744953088], [-77.42756951157092, 34.580118456422085], [-77.42756820569453, 34.5801152486945], [-77.42748799517543, 34.579917943412994], [-77.42776186275526, 34.57947058925043], [-77.42777076856282, 34.57946208552741], [-77.42777985587402, 34.57945117232804], [-77.42779896961363, 34.57940840228011], [-77.42804842547602, 34.57898776633613], [-77.42802795533616, 34.5788530858404], [-77.42799961405159, 34.578738374461416], [-77.4279477723529, 34.57857772521383], [-77.42795682958771, 34.5783659506417], [-77.42785947037919, 34.57816589902433], [-77.42801251918776, 34.57798979159239], [-77.42815536508706, 34.57783485847334], [-77.42845406245867, 34.577655369925225], [-77.4285125244073, 34.57760729422037], [-77.42848587863666, 34.577294416552405], [-77.42846168522166, 34.57722967900523], [-77.42837141902132, 34.57700962131079], [-77.42815511080282, 34.57701244967392], [-77.42802506363361, 34.577008341329105], [-77.42787339197646, 34.577011117561604], [-77.4277611127269, 34.57701209063293], [-77.42767749399331, 34.57700854382353], [-77.42736710886079, 34.576992451059866], [-77.42699207184867, 34.57699706698865], [-77.4269600535464, 34.5770080504035], [-77.42688044598755, 34.577033631740996], [-77.42662019161787, 34.57711547495405], [-77.42657915181499, 34.57712741888797], [-77.42652964846344, 34.57713768064239], [-77.42626583001433, 34.577209373738114], [-77.4261851829861, 34.57723246610216], [-77.42610897176529, 34.57722725397653], [-77.42586035624988, 34.577255593224805], [-77.42579119229168, 34.57726347703481], [-77.42572986223963, 34.577266008071305], [-77.4255248947016, 34.577229536973775], [-77.42542375157872, 34.5772155184859], [-77.42539717750945, 34.57720851738752], [-77.42533466792196, 34.577189670332096], [-77.42500316781903, 34.577170670563554], [-77.42478046851062, 34.577152510528734], [-77.42455547294338, 34.576945041168486], [-77.42440306769728, 34.57676446314302], [-77.42432280489354, 34.57624574314528], [-77.42428720546057, 34.57613463400061], [-77.42436939158111, 34.575956217131605], [-77.42444138573708, 34.57568776682634], [-77.42452993500427, 34.57559003741251], [-77.42451341723174, 34.575355437589224], [-77.42426875777647, 34.575288125852346], [-77.42422983211586, 34.57527741648071], [-77.42421467332844, 34.575271759793935], [-77.42416161362556, 34.57524643553841], [-77.42382063538057, 34.57508612746212], [-77.42367686914106, 34.57510400473265], [-77.42357071042528, 34.574964409536044], [-77.42349477342674, 34.574624339354465], [-77.4234747209046, 34.57455369359154], [-77.42347291921266, 34.57450392918504], [-77.42346707528588, 34.57434250514078], [-77.423465557403, 34.57430057840607], [-77.42346325250121, 34.57423691090774], [-77.42342642120519, 34.57418994796795], [-77.423364738605, 34.574211478861045], [-77.42331087533296, 34.57424054218395], [-77.42322945772041, 34.57430813077566], [-77.423182541823, 34.5743330536738], [-77.42303249903699, 34.574448135987176], [-77.42270365129869, 34.57459495088204], [-77.42263855599931, 34.574630075130074], [-77.42259087193005, 34.57463001976946], [-77.4225940756244, 34.57468094424494], [-77.42260900308277, 34.57471065615097], [-77.4226385961033, 34.57479641546455], [-77.42275121305804, 34.57508282497525], [-77.42275902273326, 34.57537665483563], [-77.42273822184023, 34.57550928832978], [-77.42272171717849, 34.57560103906369], [-77.42263879506822, 34.575620574046475], [-77.42250919286732, 34.575682062979496], [-77.422441823709, 34.57572449528014], [-77.422397824869, 34.575723350995105], [-77.42224482952713, 34.57573419201401], [-77.42200463321598, 34.57561528472397], [-77.42189330473477, 34.57558556705671], [-77.42185080187869, 34.57558546995195], [-77.42178853729877, 34.57557940958067], [-77.42145679558385, 34.57552464839581], [-77.42127134316304, 34.57549649386524], [-77.42122126273739, 34.57547465943705], [-77.42106277536026, 34.575399129558235], [-77.42102018245049, 34.575378831124475], [-77.42094628278942, 34.575343612660326], [-77.42077702739535, 34.57525138199776], [-77.42066873657656, 34.57518314410487], [-77.42053907254359, 34.57511757742686], [-77.42035381328924, 34.575004625338295], [-77.42031196012933, 34.57497051881265], [-77.42027469676273, 34.574953037345495], [-77.42007789042918, 34.57483242634244], [-77.41988065845386, 34.57471985625031], [-77.41983570569772, 34.57470333243789], [-77.41979726325074, 34.57466044629829], [-77.4197142066912, 34.574493117418314], [-77.41961893956334, 34.574261623679725], [-77.41959952437976, 34.57414268252571], [-77.41948648428405, 34.573805949859505], [-77.41936863526531, 34.57357556740969], [-77.41932368142615, 34.57345510990775], [-77.41938284721374, 34.57333497819315], [-77.4194863524223, 34.57315434260877], [-77.41969912156532, 34.57278107983463], [-77.41988020457843, 34.572529198242876], [-77.4198827793961, 34.572525168230946], [-77.41998498750183, 34.5721988135416], [-77.41995926620788, 34.57200421184557], [-77.41990159805485, 34.57167327987383], [-77.41988000663731, 34.57156834758379], [-77.41982795394061, 34.57131537584801], [-77.41981113958502, 34.57126176401843], [-77.41979941844366, 34.571176694071404], [-77.41979027028233, 34.57114910303075], [-77.41969320690502, 34.57107759606991], [-77.419682918658, 34.57107092412404], [-77.4196812678992, 34.57107001354782], [-77.4194859355145, 34.57108396587391], [-77.4193552784811, 34.57104383886817], [-77.41909194865556, 34.571006451947525], [-77.41881003564012, 34.57098180882778], [-77.418717065304, 34.57097466210146], [-77.41869797137556, 34.57097561642484], [-77.41867753450747, 34.57097892510311], [-77.41854393275753, 34.571020251013884], [-77.4180064707349, 34.571201784668055], [-77.41791010312446, 34.571384948189696], [-77.41757523091391, 34.571648415391614], [-77.41747922862129, 34.57163845712526], [-77.41712215411054, 34.571372715918876], [-77.417031430257, 34.571336508379794], [-77.41686691157992, 34.571262507135195], [-77.41643474512453, 34.57058425458579], [-77.41635970177856, 34.570486606629906], [-77.41643854035067, 34.570362600302865], [-77.41669546761514, 34.56997851907332], [-77.41685682321874, 34.56956563153908], [-77.41699951595781, 34.56941321249623], [-77.41712180187025, 34.569321407063995], [-77.41737604041442, 34.569066045832365], [-77.4174533263519, 34.568987652111744], [-77.41751568523523, 34.568863458856555], [-77.41770128988563, 34.568594477415274], [-77.41776018161178, 34.568424970834315], [-77.41790954912675, 34.56832056267403], [-77.41805022375249, 34.56839247333634], [-77.41825906900411, 34.56851389972409], [-77.41828870251761, 34.56852561580824], [-77.4183035503216, 34.5685503589398], [-77.4184324795027, 34.56877452496673], [-77.41850581929549, 34.56890283687174], [-77.41869763245883, 34.56919555572396], [-77.41874681703996, 34.56923960641192], [-77.41909067915104, 34.56924193063772], [-77.41909160429131, 34.569241901494216], [-77.4194607874555, 34.56916276837251], [-77.41948554701555, 34.56914021546082], [-77.41963213228583, 34.56900669364869], [-77.42000511827182, 34.56882167217741], [-77.42027338145924, 34.568706661043144], [-77.42036629865649, 34.568958547472775], [-77.42051819574708, 34.569036684903274], [-77.42066742910279, 34.56911710749662], [-77.42086144293737, 34.5692026008343], [-77.42106140344961, 34.56917322653683], [-77.42122980610173, 34.56911537352697], [-77.42145533803605, 34.5690491433129], [-77.42176082068688, 34.56885714049587], [-77.42181540310322, 34.56881277999024], [-77.42184922366839, 34.568714842898714], [-77.42253341704344, 34.567896330226596], [-77.42258116735309, 34.56782932746264], [-77.4226369210895, 34.56777368900263], [-77.42300909866184, 34.56742638749675], [-77.42303078742388, 34.567403649854384], [-77.42303297809651, 34.56740191729302], [-77.42305074810218, 34.567396987930266], [-77.42342471389294, 34.56729325060976], [-77.42349032625374, 34.56733346530518], [-77.4236649552015, 34.56747394143201], [-77.42381873870457, 34.567580999331604], [-77.42387842145011, 34.56763765969926], [-77.42397358945954, 34.567688214888406], [-77.42412257460239, 34.56776385964564], [-77.42421274828104, 34.5677983032848], [-77.42432558619745, 34.56775896826245], [-77.42460667801429, 34.56770047530366], [-77.42487874136636, 34.56755740465043], [-77.42496030179316, 34.5675022068216], [-77.42500056814292, 34.56745629279157], [-77.42508500249885, 34.56743658922011], [-77.42519742103762, 34.567511347831754], [-77.4256670154323, 34.56757441788262], [-77.425788516659, 34.56760930763173], [-77.42592936629651, 34.56767836841659], [-77.4260549551096, 34.567674548101884], [-77.42618248064251, 34.56764543522336], [-77.42635627646058, 34.567556154076435], [-77.42637029221946, 34.567544280739256], [-77.42642972570363, 34.56733324388098], [-77.42628463206213, 34.567039903449995], [-77.42623799597008, 34.56693636724025], [-77.42622286430947, 34.56689480496748], [-77.4261822598413, 34.56685121530447], [-77.42598011508213, 34.56654905128673], [-77.42618210455922, 34.56629165710601], [-77.42626412799981, 34.56617185285378], [-77.4265526095941, 34.566041717923774], [-77.42657597854395, 34.566030452465185], [-77.42665241718336, 34.566027291885405], [-77.42692135868828, 34.56604076617106], [-77.42686978569847, 34.566312447056845], [-77.42686624584435, 34.566420973754724], [-77.42697008898881, 34.566602677349465], [-77.42705311483702, 34.56672910782459], [-77.4270903830576, 34.56681316545132], [-77.42731795097195, 34.56715501610732], [-77.42726919064314, 34.567211908855406], [-77.42735102313407, 34.567214300142716], [-77.42736421943574, 34.567224387437946], [-77.42743660236073, 34.56726570918623], [-77.42815227313179, 34.56772175974744], [-77.42832435934415, 34.56772309656089], [-77.42851994300358, 34.56788029418115], [-77.42879459950511, 34.56799758634027], [-77.42887241201086, 34.56860518792958], [-77.42887928666497, 34.56867752949927], [-77.42889409916191, 34.56872539009308], [-77.42894053108684, 34.56884429640739], [-77.42902735523188, 34.56908071509475], [-77.42911129685737, 34.5693092845739], [-77.42918748795313, 34.56948215627632], [-77.4292498943409, 34.56980622374892], [-77.42923306264812, 34.569900158329744], [-77.42894096471474, 34.57023068815279], [-77.42885428006697, 34.57028606049834], [-77.42865311872161, 34.570408579711426], [-77.42857893519263, 34.57080966377966], [-77.42840826916392, 34.57129315089171], [-77.42866297609649, 34.57155637415071], [-77.42894136833328, 34.5715168908511], [-77.4295666326642, 34.57130095314036], [-77.42972922340455, 34.57124379573661], [-77.4298358161442, 34.57120168651305], [-77.43010877879058, 34.57104733547081], [-77.43041306516002, 34.5708912837011], [-77.43051703309146, 34.570850489091995], [-77.43107030046151, 34.5706554931519], [-77.43130489824142, 34.57064167468531], [-77.43152223312555, 34.57060875502791], [-77.43182912002652, 34.570514464498515], [-77.43209275302212, 34.570415532969896], [-77.43229561177637, 34.57030659273217], [-77.43243289228698, 34.570228804963214], [-77.43260956346897, 34.57012869596], [-77.43288052612431, 34.569975157725494], [-77.4333016169764, 34.569736547167714], [-77.43339562164616, 34.56942912634147], [-77.43366790686082, 34.56849420510255], [-77.43397467042207, 34.5679408587996], [-77.43377790643147, 34.566390332044385], [-77.4337064346146, 34.566238857666654], [-77.43322270336151, 34.565872416324424], [-77.43209086948569, 34.56502132788833], [-77.4319961982232, 34.564932199256546], [-77.43187082321239, 34.564848322788166], [-77.43051463617758, 34.56358543758831], [-77.43039338706673, 34.56349421741285], [-77.43027553362754, 34.563380603454505], [-77.42934173552477, 34.56225186965878], [-77.42901226700869, 34.561864871341484], [-77.42893835925314, 34.561830344936574], [-77.42888126687075, 34.56182227497263], [-77.42736259033178, 34.561607615061405], [-77.4268849678292, 34.56165756433097], [-77.4268737057111, 34.562174009503266], [-77.42689070515058, 34.562680493309855], [-77.42677268820603, 34.56303778820628], [-77.42682841028679, 34.56330263502753], [-77.42686391869702, 34.563562685137455], [-77.42696929730924, 34.563834183708806], [-77.42697467387687, 34.5638577701564], [-77.42696930975934, 34.56387787944342], [-77.42689057015748, 34.564209547265854], [-77.42666976726949, 34.56422479710504], [-77.4265754566944, 34.56417426344834], [-77.42642244869836, 34.56410248007283], [-77.42590124474614, 34.564135440484286], [-77.42578756948015, 34.56413057078939], [-77.42570802791495, 34.56412657747991], [-77.4254333365411, 34.5640805497754], [-77.42499962181964, 34.56385348892751], [-77.42473438220473, 34.56389567913961], [-77.42441557602984, 34.56400799852524], [-77.42421181229325, 34.56410541112609], [-77.42408372812353, 34.564137543340095], [-77.42358306544979, 34.56417646464951], [-77.42342396252263, 34.56421206140903], [-77.42323546718137, 34.564195032069435], [-77.42303000609041, 34.56413648673902], [-77.42291192830663, 34.564147622888086], [-77.4228734270753, 34.56385722993756], [-77.42298865804031, 34.56358468176307], [-77.42302986506651, 34.563543296094686], [-77.42330583511153, 34.56341173576816], [-77.42342375253381, 34.56334564715298], [-77.42403019839229, 34.5625849891819], [-77.42399085514074, 34.562352996738], [-77.42393268288224, 34.56205020481359], [-77.4238765500882, 34.56175802015346], [-77.42380053898995, 34.561362372162996], [-77.42301906081069, 34.561446242968415], [-77.4226354695183, 34.561559902233654], [-77.42192298526162, 34.56195919439981], [-77.42184771210452, 34.56198720756323], [-77.4218009703105, 34.56200758053304], [-77.4217111558622, 34.56207094332487], [-77.42145383583929, 34.562226199553976], [-77.42117460072332, 34.56214847504975], [-77.4210970686667, 34.56211959918313], [-77.42105988367373, 34.56211954359452], [-77.42069753948209, 34.5617586954816], [-77.42027196410741, 34.56181716095931], [-77.4200546810431, 34.5616952902713], [-77.41965852904796, 34.56151836256762], [-77.4195847253058, 34.56142049452619], [-77.41948402589793, 34.561390324155155], [-77.41927208315434, 34.561345767341365], [-77.4190175479676, 34.56161097257352], [-77.41878947043114, 34.56174441189267], [-77.41869632551507, 34.56221255879838], [-77.41864173970752, 34.562455555753424], [-77.41863313374283, 34.562515680924776], [-77.41848482694911, 34.562765171854494], [-77.41839047385477, 34.56307008750441], [-77.41820817584559, 34.56310338280646], [-77.41790863774905, 34.56319364736172], [-77.41756092573132, 34.563144992500405], [-77.41712078202467, 34.56327656551534], [-77.41676145783073, 34.563247967898], [-77.41650457930406, 34.56367234982228], [-77.41637504525646, 34.563736395338], [-77.41633301108504, 34.563910416661216], [-77.41588389561088, 34.56461117469928], [-77.41619980662873, 34.56470924207531], [-77.41633315269006, 34.56480772563987], [-77.4164401379667, 34.56495540834178], [-77.41633319074418, 34.565048203486626], [-77.41617442529292, 34.5652472270093], [-77.41601100684659, 34.56536469144034], [-77.41593929833512, 34.5653823889937], [-77.41584136833598, 34.56546648380241], [-77.41562544584134, 34.565583961996005], [-77.41554539291597, 34.565650384693285], [-77.41518297716172, 34.565952231341065], [-77.41499878159424, 34.56584820524726], [-77.41475750852801, 34.56571670734221], [-77.41466650629683, 34.56573426412673], [-77.41468159459123, 34.5656340041291], [-77.41458456307532, 34.565461661504], [-77.41409578963207, 34.56473332281038], [-77.41396946343073, 34.564559563371695], [-77.41372631500148, 34.564660739973846], [-77.41318158931772, 34.56464032231573], [-77.41282759422171, 34.564584968790946], [-77.41239371983161, 34.564782071240316], [-77.41205608624949, 34.564800139195725], [-77.41160583820063, 34.56483059410111], [-77.41127918455832, 34.56477911733782], [-77.41071646547348, 34.564508327329904], [-77.41028322862134, 34.56429798086205], [-77.4100300178756, 34.5642819753542], [-77.40947204450765, 34.564086663462604], [-77.40845421622016, 34.56372155384525], [-77.40776426428755, 34.56397990849455], [-77.40687847290039, 34.56401129171987], [-77.4056044436744, 34.56387328015005], [-77.40372695412195, 34.565470502580425], [-77.40070266429622, 34.56581673101221], [-77.40057535399993, 34.56586651590062], [-77.40047510123463, 34.565878738439864], [-77.39899954111186, 34.566058632173345], [-77.39758404923556, 34.566231183601126], [-77.39742372887261, 34.56611739887372], [-77.39715944747523, 34.565051853553626], [-77.39718330802438, 34.56476350863427], [-77.39663597290463, 34.564193602992816], [-77.3960043756984, 34.56493361181652], [-77.39590095889659, 34.565005593163825], [-77.3958960819205, 34.565746508194096], [-77.39600806138219, 34.56578222485281], [-77.39584792198448, 34.56607217782462], [-77.3956703857615, 34.56648879302676], [-77.39527075664981, 34.56651058063062], [-77.39505997201579, 34.56653774901133], [-77.3948754067829, 34.566595878810574], [-77.39460398413252, 34.56683393908726], [-77.39439476762378, 34.56699641488014], [-77.39427200627392, 34.567068988126955], [-77.39413071623991, 34.5671745293691], [-77.39403598799647, 34.56717022804564], [-77.3938780564678, 34.56699698437416], [-77.39382637724368, 34.56694611959771], [-77.39366068692124, 34.566779737212606], [-77.39348414525578, 34.566592473238344], [-77.39347481500349, 34.56658232089039], [-77.39344638863064, 34.56657636498957], [-77.39317215143366, 34.56652760184484], [-77.39296965303359, 34.566515222128714], [-77.39269623037124, 34.56662208435845], [-77.39265748985314, 34.56664841882916], [-77.39261469565983, 34.56669633942912], [-77.39246910439309, 34.56689717223908], [-77.39230220615435, 34.56715473966291], [-77.39228639687603, 34.56715122827991], [-77.39228942779438, 34.567167829314556], [-77.39227860859683, 34.56719481549498], [-77.39214754123667, 34.567446224004314], [-77.39204231494541, 34.56762804434936], [-77.39190815422393, 34.56785985997503], [-77.39175805531416, 34.567669046672066], [-77.39190821757067, 34.567381757996046], [-77.39201262835081, 34.56732027099824], [-77.39198014331409, 34.56721244205272], [-77.39199092478006, 34.56712179006397], [-77.39203292870546, 34.566914592787874], [-77.39204599708901, 34.566778372620554], [-77.39207031795692, 34.56652486835615], [-77.39208730049889, 34.56634784446114], [-77.3922523217257, 34.56595339794349], [-77.39228487499973, 34.56587591929713], [-77.39242046018182, 34.56545064563389], [-77.39253837219972, 34.565263326609355], [-77.39269646363834, 34.56474804811713], [-77.39274337324548, 34.56460546108846], [-77.3927623327212, 34.56455218910221], [-77.39282309697923, 34.56383063581775], [-77.39286256439755, 34.56368858845923], [-77.39288700330745, 34.563479879661756], [-77.39291742952972, 34.563256103297704], [-77.39291371148627, 34.563065981056276], [-77.3929528122042, 34.562826428267044], [-77.392963519651, 34.562687856364654], [-77.3929945575981, 34.562608120846534], [-77.39294306280868, 34.56256235547631], [-77.39276271748997, 34.56242927997772], [-77.39269676749228, 34.56233628712215], [-77.3925238708429, 34.562225521123025], [-77.39228644560802, 34.56207341311886], [-77.39190896508464, 34.561831577033836], [-77.39149069531582, 34.561789862147194], [-77.39112110261914, 34.561802260535245], [-77.39087028328365, 34.56200739585341], [-77.39049854979856, 34.56233130836222], [-77.39045903944032, 34.56305035071318], [-77.39048847641031, 34.563181900481226], [-77.39082034533027, 34.56345791326833], [-77.39084126661578, 34.56355558487675], [-77.3907769291071, 34.56361878755061], [-77.39062030116787, 34.56370232469182], [-77.39033298836713, 34.56339687942136], [-77.38992665353825, 34.564112072555105], [-77.3896985868203, 34.56431053839447], [-77.38954488786764, 34.56473248003829], [-77.38948487351759, 34.564960289098906], [-77.38945164101216, 34.565029721127445], [-77.3890352209167, 34.565389752641764], [-77.38894315603193, 34.565751373110004], [-77.38888055794382, 34.565961221713806], [-77.38893119059341, 34.566141915094434], [-77.38890786493369, 34.5666434709962], [-77.3889456293151, 34.56680097420369], [-77.38881806317923, 34.566885585650326], [-77.38875660903486, 34.566968506929086], [-77.38862960983866, 34.56713428237564], [-77.38845424422176, 34.56729640883308], [-77.38840722680075, 34.56735130093916], [-77.38836257961559, 34.56737427412714], [-77.38829131162579, 34.56739670626439], [-77.38796859996494, 34.56748206686457], [-77.38765322916737, 34.567496621945565], [-77.38737299508263, 34.567669606216185], [-77.38718062508407, 34.567762881973216], [-77.38691744380256, 34.56794259368105], [-77.38653895807097, 34.56815487363354], [-77.38639260727064, 34.56823219750432], [-77.38602172134888, 34.56852125567801], [-77.38599858105175, 34.568535341355926], [-77.38597068769899, 34.56853373986925], [-77.38560459897411, 34.568612130425755], [-77.38527712954303, 34.568532038360246], [-77.38521066417391, 34.568461729953135], [-77.38501693902818, 34.568216631435774], [-77.38497859049275, 34.56804778896215], [-77.38490140276885, 34.56747521050013], [-77.38495856153887, 34.567375915115505], [-77.38515502701327, 34.566862692696176], [-77.385233935171, 34.5664870765044], [-77.3853939167124, 34.56584254912248], [-77.38533391178049, 34.56562352751326], [-77.38529837345659, 34.56529788163233], [-77.3856053056999, 34.5652233894501], [-77.3859047286264, 34.565218525716915], [-77.38639324728767, 34.56502123071755], [-77.38673007038643, 34.564936056119606], [-77.3869433942839, 34.56479858698344], [-77.38718120838098, 34.56469538069916], [-77.38726064561087, 34.56458214951255], [-77.38726797158617, 34.56449550480207], [-77.387260348047, 34.564411371287235], [-77.38725741133024, 34.56372981934124], [-77.38732878888395, 34.563637598558735], [-77.38768341912086, 34.563278283276006], [-77.3876584657744, 34.563076027339235], [-77.38757546084031, 34.56306714698738], [-77.3874765786753, 34.56287375949265], [-77.3872374032144, 34.5628016417524], [-77.38720323620855, 34.562783223904596], [-77.38718157489711, 34.562785882056055], [-77.38715261946078, 34.562782660912944], [-77.38698461345177, 34.56274504857748], [-77.38686327800015, 34.56277407269586], [-77.38678763884167, 34.562771827492746], [-77.3864399195607, 34.56286680942547], [-77.38639367989525, 34.56287131751596], [-77.38634625316084, 34.562879037769875], [-77.38605346907292, 34.56297236983142], [-77.38599971292514, 34.563004677488934], [-77.3859888408157, 34.56299340905126], [-77.38569563357001, 34.56312084201324], [-77.38560571893606, 34.56325980262673], [-77.38525878944235, 34.56351152588609], [-77.385254613691, 34.563558363386235], [-77.38502592082763, 34.563969669578654], [-77.38481763318696, 34.56418101614575], [-77.38476233493355, 34.56406729907427], [-77.38466782405173, 34.5640213027514], [-77.38430761930162, 34.56377385862247], [-77.384029815057, 34.56385987066762], [-77.3837774053815, 34.56387765842831], [-77.38324194157795, 34.563794477377925], [-77.38296655024669, 34.563714274547436], [-77.3827936483201, 34.563442386050994], [-77.38257870826382, 34.5633391502694], [-77.38245418275466, 34.56327169777373], [-77.38217461752615, 34.5631070658702], [-77.38211292773074, 34.56305923446085], [-77.38206030018513, 34.563037239521464], [-77.38183154734168, 34.56290995324886], [-77.38166641413088, 34.56282467738998], [-77.38162941488645, 34.56280098136117], [-77.38158605109054, 34.56276735075523], [-77.3814424542205, 34.562604919355806], [-77.38141586053578, 34.56252176854858], [-77.38142841115732, 34.5623655113625], [-77.38154377728563, 34.56205670077666], [-77.38157626049701, 34.56191963218939], [-77.38156549635187, 34.56181213667023], [-77.38145070081336, 34.56132150979854], [-77.38123543643214, 34.56111963580845], [-77.38107012523952, 34.56093752345466], [-77.38087909765582, 34.56072810386148], [-77.38064506048549, 34.56060788654246], [-77.38018052498083, 34.56042257954847], [-77.38038608206075, 34.56007536765185], [-77.38009137318382, 34.5602398835021], [-77.37997324532434, 34.56032516946401], [-77.37930357905104, 34.56002412672382], [-77.3790830522971, 34.55996934451007], [-77.37880742094782, 34.5600857823711], [-77.37851562356852, 34.5603617249984], [-77.37836773486153, 34.56052454567076], [-77.37830028495388, 34.560693605257256], [-77.37801189960246, 34.56104162456262], [-77.37772745489049, 34.56137186668106], [-77.37762112697921, 34.56152607657113], [-77.37749326913313, 34.5616590486357], [-77.37733339691276, 34.56176966969471], [-77.3770747210661, 34.56186518040364], [-77.37693943406038, 34.561854741996115], [-77.37685023693301, 34.56184785949586], [-77.37654549628446, 34.56185887808821], [-77.37648946744085, 34.5618641033012], [-77.37619652026174, 34.561894407847824], [-77.37615154768238, 34.56189592943264], [-77.37611130248705, 34.56190159257733], [-77.37588784879587, 34.561890423904515], [-77.37575761342273, 34.56188824799766], [-77.3754284200767, 34.56188685679146], [-77.37536367671999, 34.56188787709803], [-77.37528067459478, 34.56188847009262], [-77.3749697412494, 34.561883655614665], [-77.37481713410241, 34.56188025239604], [-77.37474082428967, 34.5618778745618], [-77.37457581713156, 34.56184635011027], [-77.37445663318515, 34.56180057881697], [-77.37429021626052, 34.561696093603175], [-77.37422876582345, 34.56165449032556], [-77.37418198064657, 34.561558874729215], [-77.37393953970984, 34.56132206499737], [-77.37393799491582, 34.56116083087471], [-77.37378839371459, 34.56057499444262], [-77.37374206478889, 34.56050139902349], [-77.37373646802523, 34.56044619293742], [-77.37378843502051, 34.56045852560385], [-77.3739284537616, 34.56032368524614], [-77.37418248884262, 34.56010607057726], [-77.37421212135017, 34.560041015008004], [-77.37457650279649, 34.55985945765737], [-77.37472685430649, 34.55967233987148], [-77.37497054698223, 34.559517030432154], [-77.37503952629325, 34.5594653071797], [-77.37524465213964, 34.55930653005548], [-77.37536457560977, 34.559211412295426], [-77.37566277379439, 34.55895092727121], [-77.37571568936383, 34.558897048528785], [-77.37575864798697, 34.55876541170795], [-77.3758687527318, 34.558496680196946], [-77.37575881885174, 34.55825165763824], [-77.37571139163661, 34.558145951043045], [-77.37568463225956, 34.55809865332623], [-77.37557465333448, 34.55791589003729], [-77.37545980116589, 34.55770649335301], [-77.37543549542822, 34.5576341325514], [-77.3753651370278, 34.55754742156654], [-77.3751831996691, 34.55732179400344], [-77.37523909811273, 34.55702521145788], [-77.37525876989666, 34.556886341389855], [-77.37528209102629, 34.55679319792441], [-77.37536541310745, 34.55673134265866], [-77.37546595114512, 34.55674811613928], [-77.3757593036316, 34.55679705781838], [-77.37581445085527, 34.55680625818535], [-77.3760773503672, 34.55685011844358], [-77.37615319716541, 34.5568554584178], [-77.37629054349269, 34.556885685008595], [-77.37672998375545, 34.556052919067135], [-77.37688217487113, 34.55580324756933], [-77.37682338270812, 34.555684521010996], [-77.3763780340337, 34.554785180274024], [-77.3760972410511, 34.55421812644663], [-77.37536676914722, 34.552742924635105], [-77.37532458511669, 34.552676730207445], [-77.37527643157671, 34.55263817817227], [-77.3738060123188, 34.552198078122004], [-77.37350851422126, 34.55271476573185], [-77.37339662846068, 34.55290907999417], [-77.37274019682576, 34.55356942516181], [-77.37248462429788, 34.553889622333216], [-77.37221509001526, 34.55413455123136], [-77.37196843907938, 34.55422981074235], [-77.371821124711, 34.55430260999435], [-77.37174230822184, 34.55433620751662], [-77.37142715249706, 34.554484489682714], [-77.37097402668024, 34.554595624967945], [-77.37063930004989, 34.55460268887768], [-77.37025129655785, 34.55464234943187], [-77.3702415552379, 34.55464150003082], [-77.3698516093641, 34.554316311978866], [-77.36982587197392, 34.55430045400836], [-77.36979446119932, 34.5542772320351], [-77.3690639630162, 34.553935994028066], [-77.36890608748757, 34.55372635880431], [-77.36873148660908, 34.55358125577789], [-77.36867147532112, 34.553534434574715], [-77.3685275642897, 34.55345664780812], [-77.3682831319489, 34.55334624255826], [-77.36811670973663, 34.55328481440131], [-77.36797349063158, 34.55320079997533], [-77.36770469797736, 34.5528720986251], [-77.36763977937817, 34.55275922096775], [-77.36762239932888, 34.552693352132145], [-77.36751418945465, 34.5526302506007], [-77.36698037458167, 34.55236455782426], [-77.36689006991875, 34.55228203934531], [-77.36654052932332, 34.55230582106387], [-77.36594976064387, 34.55236380336069], [-77.36524552226682, 34.55266931490295], [-77.36515751549078, 34.552670332696124], [-77.3650960656611, 34.55267424119611], [-77.36476338674618, 34.552736130647716], [-77.3644317251783, 34.55273166560346], [-77.3643812197273, 34.55273246929801], [-77.36437086687941, 34.55273141372458], [-77.36434734826526, 34.55272912050015], [-77.36381843107712, 34.552675614303105], [-77.36358738053809, 34.55265394788068], [-77.3628391314535, 34.552492154888654], [-77.36280595897452, 34.552486146169485], [-77.36279604110194, 34.552483807862195], [-77.36278143114966, 34.55247969422086], [-77.36233763522294, 34.552347952154385], [-77.36229911395289, 34.552304329490795], [-77.36225794074544, 34.552209420678125], [-77.36224744895269, 34.55218935759691], [-77.36225087362705, 34.552172227083084], [-77.36225766687511, 34.55206547359647], [-77.36229395879757, 34.551898235356944], [-77.36232402194892, 34.551744840148395], [-77.36242276049268, 34.55155204806407], [-77.36245331838785, 34.55131101229111], [-77.3625608392463, 34.55104251320154], [-77.3627385484708, 34.550596228677264], [-77.36274786159638, 34.55052592952489], [-77.36277005724345, 34.55047164753427], [-77.36285766835661, 34.5502227031867], [-77.36293376942982, 34.550009505596655], [-77.36286437076146, 34.54992932555937], [-77.36270231297276, 34.54965810900348], [-77.36266656707862, 34.549558337644655], [-77.36237784237454, 34.54942090125373], [-77.3622437298858, 34.549222139331825], [-77.36218387355237, 34.54913820412633], [-77.36217122346333, 34.54909450281309], [-77.36213409951672, 34.548672075691755], [-77.36216093942406, 34.54865185746231], [-77.36213147326588, 34.548641817240124], [-77.36211259450013, 34.54846560941944], [-77.36208535423314, 34.54819395187383], [-77.3620837920213, 34.54817331849943], [-77.36208395301125, 34.54815095017596], [-77.36212248430687, 34.548032896864676], [-77.36224428506783, 34.54773222387429], [-77.36255791502558, 34.54761538649006], [-77.36279373499576, 34.54750280649481], [-77.36292253803961, 34.547383254828304], [-77.36309444526123, 34.54715237626377], [-77.36315575368107, 34.54703963495568], [-77.36332602679528, 34.54690666572246], [-77.36342367169132, 34.5468158199533], [-77.36349057681187, 34.546746586344696], [-77.36352509651849, 34.546621535579874], [-77.36358988835795, 34.546487457441174], [-77.36361133641252, 34.546410393921605], [-77.36367739677078, 34.5462300284637], [-77.36373695275111, 34.54610421146744], [-77.36384682313505, 34.54613664807721], [-77.36387073859632, 34.546202181087395], [-77.36395890205935, 34.546293207717255], [-77.36403147307526, 34.54642385485895], [-77.36415478396555, 34.546627729428536], [-77.36417110524818, 34.546648568995955], [-77.36425186903212, 34.54672201109608], [-77.36438710117142, 34.5468622833393], [-77.36444269151635, 34.546892601015884], [-77.36450349739441, 34.54692113839286], [-77.36469921374311, 34.54693963946537], [-77.36489552736649, 34.54694612272402], [-77.36506907113963, 34.54690129454826], [-77.36529028708028, 34.54685148172728], [-77.36542961545183, 34.54679824706523], [-77.36568569725523, 34.546728284579274], [-77.36579056947369, 34.54666012510839], [-77.3657807549764, 34.54647235036213], [-77.36608931605754, 34.546245141335426], [-77.36618149040468, 34.54617058093811], [-77.36672711283015, 34.54603556160894], [-77.3668850074423, 34.545784674811145], [-77.3669473150254, 34.54554970251991], [-77.36767606057198, 34.54552733346988], [-77.36864643365303, 34.545382830945286], [-77.36925315182039, 34.545232192599], [-77.36994352329539, 34.54502038516101], [-77.37020135242332, 34.54494774289688], [-77.3708347267808, 34.54473942527759], [-77.37121161376177, 34.54489979747445], [-77.3714103664056, 34.54499816028546], [-77.37138803703822, 34.54522634037514], [-77.37130162296742, 34.54537648257561], [-77.37127812372994, 34.54566957603811], [-77.37127936569348, 34.54606293671298], [-77.37162080551974, 34.54630979761896], [-77.37235827915418, 34.5467980611053], [-77.37249647185838, 34.546262197052855], [-77.37255549893706, 34.546175108927784], [-77.37286568786143, 34.54582773447452], [-77.37302802511115, 34.54561735824109], [-77.37303126983832, 34.545528932527816], [-77.37317335357578, 34.54548317501519], [-77.37355257315072, 34.54530776048551], [-77.37357016591501, 34.54529737729738], [-77.373574844515, 34.54529663391577], [-77.37396320936209, 34.545277420855186], [-77.37429550184618, 34.54522816700339], [-77.37439912878985, 34.545200868843686], [-77.37445285947548, 34.54510904314392], [-77.37459018724712, 34.544902567112814], [-77.37462117844925, 34.5448121806484], [-77.37474945483254, 34.5444016911529], [-77.374747119988, 34.54439029209687], [-77.37475458414384, 34.54438037777247], [-77.37477016217443, 34.544318486842556], [-77.37480987275292, 34.54415892461098], [-77.37483764758557, 34.544132416013895], [-77.37494284793593, 34.54397525754752], [-77.37507537758154, 34.54385332311619], [-77.37524771326514, 34.543626851453155], [-77.37558555687029, 34.542986797873795], [-77.37569734614992, 34.54285217294947], [-77.37573067522982, 34.54277955797742], [-77.37579690646288, 34.54264306967173], [-77.37592072357977, 34.54246413480066], [-77.37620899911954, 34.54233108567557], [-77.37638760134686, 34.54224244763621], [-77.37647025813462, 34.54223473626297], [-77.37704481233843, 34.54218113288293], [-77.37717391370529, 34.54219119119535], [-77.37755649922889, 34.54202671611261], [-77.37742275872804, 34.54189499164473], [-77.37747365122749, 34.54172940191994], [-77.37780938812756, 34.541500602276166], [-77.3775219237354, 34.541337081228825], [-77.37721217190442, 34.54109703465062], [-77.37719920698963, 34.54107585822745], [-77.37709324466188, 34.54069597607258], [-77.37681804465785, 34.5406641888366], [-77.3767526326846, 34.54038533910505], [-77.37669249845393, 34.54019262772566], [-77.37684711146196, 34.5399166662565], [-77.37691346308648, 34.539671117268966], [-77.3771316955646, 34.53957634554132], [-77.37723434282277, 34.539526524271174], [-77.37755795903176, 34.5392869952355], [-77.37770881412128, 34.53926425914663], [-77.378022831184, 34.53937811119897], [-77.37835949128117, 34.5394626624403], [-77.37851877060919, 34.53961668272365], [-77.3788026882088, 34.539610473917826], [-77.37980116332614, 34.53961139785221], [-77.38037554704428, 34.53949513615892], [-77.38076548904951, 34.53935702838216], [-77.38116682121537, 34.53922329263418], [-77.38136281367204, 34.53915086980855], [-77.38170180925442, 34.53913798081129], [-77.38194922795158, 34.53934319188511], [-77.38202268099492, 34.53942417005522], [-77.3820676982029, 34.53949368925926], [-77.38219909651963, 34.53972713976044], [-77.38231111217266, 34.53987224103473], [-77.38271755064909, 34.54008602139655], [-77.38290501244997, 34.54015832862001], [-77.38311471218259, 34.5402460247104], [-77.38349513405068, 34.5404197386383], [-77.38364416334569, 34.54056435458195], [-77.38371552499852, 34.54064904737596], [-77.38391236277398, 34.54084413016544], [-77.38392651306728, 34.54089434942293], [-77.38395865957978, 34.54110364816354], [-77.38366193387476, 34.54151661114544], [-77.38357829775403, 34.54164816174539], [-77.3835368773111, 34.5416981901727], [-77.38346208123582, 34.541882081584234], [-77.38335512871167, 34.5421064671772], [-77.38329748071583, 34.542178318734884], [-77.38314765624563, 34.54250223420203], [-77.38298452842346, 34.54271310842471], [-77.38286369556964, 34.54286080626997], [-77.38264772524789, 34.543174006459246], [-77.38260426287225, 34.5432313064972], [-77.38256690121901, 34.54331145813603], [-77.3824718372887, 34.54376636027882], [-77.38236058112372, 34.544106132989114], [-77.38227746454501, 34.54428404869158], [-77.38207934299999, 34.544646317934486], [-77.38213749469875, 34.544793892518626], [-77.38251874223236, 34.54517638036655], [-77.38256398884158, 34.54522205862572], [-77.38258140815496, 34.545231885676884], [-77.38260074086244, 34.545251903968584], [-77.38279027791481, 34.54555659333268], [-77.3829945199484, 34.54564964049563], [-77.38317075491041, 34.545751368502586], [-77.38337263124127, 34.54583966826322], [-77.38368906463567, 34.54574549902222], [-77.38416285967975, 34.54561621230361], [-77.38464488382462, 34.54560092630117], [-77.38494972768603, 34.545541356133825], [-77.38521836474126, 34.54549584314833], [-77.38573597391768, 34.54549396262374], [-77.38601850781077, 34.5455265642811], [-77.38651910687976, 34.545584485665586], [-77.38694839896465, 34.545343780758245], [-77.38710085819247, 34.545057456341624], [-77.38720910511594, 34.54462503175689], [-77.38712576767361, 34.54443672384023], [-77.38733050779534, 34.54442176977753], [-77.3874337058933, 34.54445495874593], [-77.38765288656978, 34.54448817093892], [-77.38811333377892, 34.544525498213076], [-77.38876674869347, 34.54441127803574], [-77.38890193020954, 34.54437324237994], [-77.38898658417892, 34.544348240100035], [-77.38911511237865, 34.544277257212116], [-77.38946428710635, 34.54408387043598], [-77.38969709333847, 34.543929336116456], [-77.38995863029044, 34.54382759063708], [-77.39048917785492, 34.5436217621353], [-77.39067290985886, 34.54356287092418], [-77.39109048239429, 34.54338464139059], [-77.39081357104048, 34.5428612789175], [-77.39050594331756, 34.542877213832384], [-77.3901291059567, 34.54289673189127], [-77.39008316357388, 34.54289485807941], [-77.3897211449752, 34.54286165576118], [-77.38950564841872, 34.54288597829297], [-77.38942018930645, 34.54276425188638], [-77.3889428354475, 34.542558167873], [-77.38871987329036, 34.54251526166603], [-77.38816738498836, 34.54212810526889], [-77.38802490460691, 34.54207578147438], [-77.38796319450546, 34.54199508678012], [-77.38802296558924, 34.541893091919256], [-77.38807638115358, 34.54148909621923], [-77.38810321082543, 34.541435463487595], [-77.38801632028623, 34.54111653302232], [-77.38800635104545, 34.541009532439745], [-77.38798933811677, 34.54088344153392], [-77.38796380956883, 34.54067342307692], [-77.38789613051087, 34.54053576524296], [-77.38793044915406, 34.54021581045604], [-77.38787454461945, 34.54004921364867], [-77.38795373907305, 34.539872831108596], [-77.38798596535813, 34.539690896424595], [-77.38795775624183, 34.539547545772855], [-77.38818654261595, 34.53905612858257], [-77.38819598369844, 34.53902351772124], [-77.3882074392593, 34.53900290051509], [-77.38823951558295, 34.538928888396356], [-77.38842220271594, 34.538610686140856], [-77.38864223547743, 34.53847801455076], [-77.38865033432512, 34.53846831270567], [-77.38879308426526, 34.53829438940102], [-77.38904455353833, 34.5380447795373], [-77.38925215523102, 34.53789183119825], [-77.38956390493996, 34.537675926838695], [-77.3898421769726, 34.537489043480534], [-77.39020191448344, 34.53726515109631], [-77.39041804215927, 34.53709797944648], [-77.39051733565033, 34.536808113330345], [-77.39041683681901, 34.536744478288945], [-77.39039859435057, 34.53641515566914], [-77.39020564731048, 34.53600141021428], [-77.3906653035575, 34.53580030400699], [-77.39104339421405, 34.535926818608274], [-77.39145146124604, 34.53575250960558], [-77.3916483680141, 34.535709678158966], [-77.39223642713038, 34.535757625215695], [-77.39248887900965, 34.535797839195], [-77.39295145061902, 34.535846671653175], [-77.39301943222179, 34.53584990825333], [-77.39317960783288, 34.535757587570515], [-77.39352770691218, 34.53563023873957], [-77.39349271350275, 34.53552044456099], [-77.39342836752802, 34.53533063350763], [-77.39330094132805, 34.53518279558636], [-77.39335564331309, 34.53504993980113], [-77.39333786793125, 34.5348540241192], [-77.39333874015014, 34.534671271509986], [-77.39329504682243, 34.53461536868327], [-77.39317586782575, 34.534465889140705], [-77.39343405626622, 34.53435047536503], [-77.39328987345657, 34.53422538668892], [-77.3930790047622, 34.5339120397587], [-77.39332725452786, 34.533546231450174], [-77.39348997080097, 34.533363068261814], [-77.39433418875787, 34.53304259102311], [-77.39465583686813, 34.53290214121267], [-77.39530415249762, 34.53252097265272], [-77.39545071842777, 34.532464577319004], [-77.3956759534437, 34.532418106241416], [-77.39623984479303, 34.53228294277086], [-77.39653445021743, 34.532125935534225], [-77.39701296987609, 34.53187531188216], [-77.39702711736005, 34.531868861912606], [-77.39703436229048, 34.53186093882334], [-77.39751012675535, 34.531607090099634], [-77.39782871346647, 34.531445977860656], [-77.3982951847747, 34.53139992121562], [-77.39861201950029, 34.53152317058044], [-77.39877068902203, 34.531621606576394], [-77.3990158047051, 34.53181988435938], [-77.39901825367487, 34.53183070799026], [-77.39908605914424, 34.53187671362376], [-77.39931109444936, 34.532033272859294], [-77.39938521685397, 34.532051361207905], [-77.39942661983316, 34.53204229540318], [-77.39977932359893, 34.5319806076974], [-77.39981631352791, 34.531960343950274], [-77.39999642883407, 34.531822720345545], [-77.40006490857164, 34.53150809114437], [-77.40003887704894, 34.53143854310734], [-77.3999866734251, 34.531321362991186], [-77.39993821422932, 34.5311211430083], [-77.3998161988012, 34.530981014781645], [-77.39993893919063, 34.53080153935083], [-77.40062625283846, 34.53037440245828], [-77.40082182639863, 34.530237572853494], [-77.40087782032316, 34.52984841362834], [-77.40100908439535, 34.52965004404578], [-77.4011512246527, 34.52940450294488], [-77.40128946908176, 34.52929931142775], [-77.40157603393999, 34.52891456364311], [-77.40171103289714, 34.528748776329884], [-77.4015721593832, 34.52861593917388], [-77.40182173949083, 34.52841564513084], [-77.40195601346761, 34.52822373337884], [-77.4018269993207, 34.52818071351402], [-77.40133223017916, 34.52813340646752], [-77.40104282745288, 34.528143527948345], [-77.4008209595847, 34.528250702184984], [-77.40025316180423, 34.528351528735776], [-77.3999438778103, 34.5285142202973], [-77.39963564883803, 34.528667614586], [-77.39945969141247, 34.52872906402859], [-77.39916973269894, 34.528805768475536], [-77.39828785864927, 34.52900551879601], [-77.3978793683979, 34.529188165257224], [-77.3971117432925, 34.529398902436526], [-77.3970776416104, 34.52941030983357], [-77.39629696053976, 34.52973927242785], [-77.39610299374732, 34.529929639803754], [-77.39594025431128, 34.530071450434036], [-77.39549625567109, 34.530437400589506], [-77.3953332141493, 34.53054858794796], [-77.39470524926271, 34.530703367638374], [-77.39405909087267, 34.53083260002989], [-77.39392784522596, 34.530858473163704], [-77.39391668624755, 34.53086041346114], [-77.39390234588225, 34.530864112558795], [-77.39324174676659, 34.531021476770725], [-77.39312720009684, 34.53105835312175], [-77.3929840980163, 34.531076726168365], [-77.3927619005495, 34.53101978592057], [-77.39273570669681, 34.53101280050305], [-77.39252709460911, 34.53093997685658], [-77.39234591266046, 34.53089173886534], [-77.39197509589188, 34.530875177911064], [-77.3919359495427, 34.53088312721253], [-77.39155463959803, 34.53116884413754], [-77.3915030438205, 34.531201425894075], [-77.39113913705486, 34.5314889244116], [-77.39106054519638, 34.5315678577545], [-77.39081101724508, 34.53179093951835], [-77.39075377827831, 34.53187147156876], [-77.3904657874507, 34.53201831725519], [-77.39011342236158, 34.53198340660706], [-77.38996743616819, 34.53192903122667], [-77.3899115008494, 34.53195523690077], [-77.38917226398362, 34.53237830289635], [-77.3889786489152, 34.532424849728294], [-77.38893251033407, 34.532551616599946], [-77.38891384250952, 34.53271082188598], [-77.38880301988614, 34.532836088601584], [-77.38876870286263, 34.53286784140243], [-77.38863951469176, 34.53300489857246], [-77.3883767666279, 34.53311757241116], [-77.38837052139385, 34.53311858286693], [-77.38827981445084, 34.533078295946126], [-77.38817137698167, 34.53303168409846], [-77.38816079903654, 34.53302041668613], [-77.38806835427951, 34.53292111049781], [-77.38805940747066, 34.532875045362616], [-77.38773235332502, 34.53272474631148], [-77.38770490585347, 34.532660647609696], [-77.38725179328529, 34.532578343385126], [-77.38681252758333, 34.53258136052992], [-77.38640698834587, 34.532677844084425], [-77.38633999679298, 34.532435919877955], [-77.38524833907307, 34.53231923845154], [-77.38429843566907, 34.53234319274497], [-77.38367613406643, 34.532412124555144], [-77.38298125804451, 34.532374949484264], [-77.3828917619519, 34.53238196117528], [-77.38260181980314, 34.53230343676579], [-77.38211147658863, 34.532171159777775], [-77.38199846917404, 34.53215347056618], [-77.38181484193095, 34.532109214359586], [-77.38132936925908, 34.53204101718582], [-77.38085320096624, 34.53205502128977], [-77.38054335443502, 34.5320835427065], [-77.38007491452709, 34.532067697094746], [-77.37918257073538, 34.53235437300438], [-77.37896919753712, 34.53226230663263], [-77.3788386442177, 34.53204868821463], [-77.37886491851228, 34.531629229787924], [-77.37885525455935, 34.531556633043614], [-77.37863066867754, 34.5308409324352], [-77.37865310639194, 34.530606457302625], [-77.37860797100237, 34.53036077674675], [-77.37886901633493, 34.5296947873078], [-77.37893859041654, 34.52958597843431], [-77.37898000438004, 34.529548387816725], [-77.3790328770127, 34.52945219979861], [-77.37940535559633, 34.529288656066925], [-77.37994925824641, 34.529026511850745], [-77.38061167635028, 34.52906607408948], [-77.38130518599674, 34.528815693501855], [-77.38155269381642, 34.528813115793845], [-77.38218619682672, 34.5288683649443], [-77.38254312689357, 34.528798205255185], [-77.38258047332405, 34.52879029784521], [-77.38284591084039, 34.528532892192395], [-77.38286075034279, 34.52845603030988], [-77.38298915280919, 34.528075297113844], [-77.38301665936004, 34.528018605211116], [-77.38309528619493, 34.52757677321329], [-77.38308792983118, 34.52751866406781], [-77.38313257409693, 34.52743183997491], [-77.38323476119507, 34.527007823417215], [-77.38351221130398, 34.5267862339115], [-77.3838101507254, 34.52648342484708], [-77.38420402196554, 34.52612940446221], [-77.38464258488604, 34.525825451755836], [-77.3849847213497, 34.525515810309145], [-77.38540657584296, 34.52531328611], [-77.38588391139022, 34.524959855308005], [-77.38687255702102, 34.524599385632634], [-77.38699267330041, 34.52459875752513], [-77.38720061935689, 34.52460697334664], [-77.387774563098, 34.52473568401938], [-77.38798986667258, 34.52471888199838], [-77.38855930806619, 34.52474608735502], [-77.39013525846678, 34.52405967473466], [-77.3901448196335, 34.52405575190291], [-77.39015708860329, 34.52405830529938], [-77.39016234759085, 34.52404985718058], [-77.39172786445417, 34.523473770522344], [-77.3921261086973, 34.52302935679489], [-77.39251207921083, 34.5227314705819], [-77.39283698375206, 34.522381802699115], [-77.39332829735866, 34.522117707584215], [-77.39387314993446, 34.52219409506709], [-77.39433444371852, 34.522116788250074], [-77.3949075849726, 34.52170016703666], [-77.39559250451953, 34.52130757374172], [-77.3961447902239, 34.52101065925052], [-77.3965019003428, 34.52061264376364], [-77.39783227599762, 34.52000494146373], [-77.39801656643012, 34.519934406207625], [-77.39808736108697, 34.519917870448054], [-77.39818865481546, 34.51989068691327], [-77.3982118676584, 34.51995014684202], [-77.39916303506638, 34.5201183252239], [-77.39945235836977, 34.52026074220496], [-77.39934549679084, 34.52058064658154], [-77.39939701512134, 34.52075840429724], [-77.39931556324059, 34.520968603571006], [-77.39936715506133, 34.5215844163178], [-77.39928980479476, 34.52175322528494], [-77.39961334095342, 34.521875075963344], [-77.399770221372, 34.52178041449257], [-77.4011575289258, 34.521504793179844], [-77.40119183773734, 34.52149093690393], [-77.40122108822436, 34.52149267915883], [-77.4012976474642, 34.52146335332058], [-77.40252044644161, 34.5211312618844], [-77.40277462436046, 34.52091440512835], [-77.40322347994497, 34.52047988641131], [-77.40401876608581, 34.52009109702612], [-77.40401777281029, 34.519872885802044], [-77.4043713957048, 34.519711457013486], [-77.40503813083768, 34.51937580118724], [-77.40595307687326, 34.519181791897864], [-77.40681466879963, 34.519150248131936], [-77.40752730677839, 34.518984928197305], [-77.40822306662074, 34.51904895636079], [-77.40838925870776, 34.51901875392286], [-77.40910422173744, 34.518667284244216], [-77.40972831699024, 34.51828711764658], [-77.4102820929335, 34.51795265702417], [-77.41069402695055, 34.517770665094595], [-77.41131855074502, 34.517463385993004], [-77.4114887564977, 34.51732953005811], [-77.41177120362295, 34.51732615151503], [-77.41227292117705, 34.51736243206041], [-77.41267498937974, 34.517129667831725], [-77.41306921198395, 34.516825101448134], [-77.41351169972702, 34.51654328287556], [-77.41385723426541, 34.51574527237365], [-77.41385936342517, 34.515731574223594], [-77.41386772160594, 34.51572321272672], [-77.41387932563532, 34.51571702835944], [-77.41390984648453, 34.51570539938137], [-77.41530854205789, 34.515430510029674], [-77.41545545042422, 34.5154307984788], [-77.4165905958721, 34.515336898174816], [-77.41690724444715, 34.51536563664112], [-77.41702682426245, 34.51535789258392], [-77.41709198440213, 34.51530435173528], [-77.41805582024412, 34.51546108950972], [-77.41859482434815, 34.51543679906875], [-77.41891316046762, 34.51549091356296], [-77.41921625662161, 34.51554754490562], [-77.41937538898756, 34.5156311296485], [-77.41974591607061, 34.515860232927324], [-77.4198378975156, 34.51604237207283], [-77.4201453074161, 34.516305704999226], [-77.42043923024211, 34.516552592653085], [-77.42043446026713, 34.51674007705833], [-77.420527694156, 34.51697442007048], [-77.4206271635343, 34.51737615955168], [-77.42061780727032, 34.5176929448068], [-77.42081119587438, 34.51810532597314], [-77.4208284942564, 34.518189572954235], [-77.42084472299948, 34.51863951526005], [-77.42087123109995, 34.51912319360605], [-77.4208708320567, 34.51912741693916], [-77.42051930860332, 34.51966592371796], [-77.42006068397933, 34.52012193019938], [-77.41949863513406, 34.520446669099705], [-77.41847349085303, 34.52090388743492], [-77.41837472608412, 34.52095525909888], [-77.41738480218531, 34.52140545006898], [-77.41688747124877, 34.5216316181641], [-77.41680411385218, 34.52167192287214], [-77.41633853730508, 34.521890013486036], [-77.41622433532451, 34.522000546508394], [-77.4161454880045, 34.52204445885436], [-77.41609093664005, 34.52215362149499], [-77.41604320860804, 34.52224302569514], [-77.41602989538777, 34.522273485006046], [-77.41608570393863, 34.522389108177364], [-77.4164582341621, 34.52246777944], [-77.41648863259091, 34.52245953688674], [-77.41687281545141, 34.52229144833155], [-77.4170345096169, 34.52222830847104], [-77.41729957253672, 34.52209000461944], [-77.41804208160063, 34.521724932433266], [-77.4184706759601, 34.52103072528133], [-77.4191179349053, 34.5214180491491], [-77.42003938336649, 34.521082535084545], [-77.42047815424485, 34.52092276586079], [-77.42106143394518, 34.52091105847635], [-77.42160189553917, 34.52141398354005], [-77.42163715335067, 34.521440721080396], [-77.42164712326259, 34.52146164552962], [-77.42169842915209, 34.521515860293434], [-77.42219346516649, 34.52198509389751], [-77.42247180599115, 34.52232180423027], [-77.42271305973118, 34.522557299321846], [-77.42313614424455, 34.52302271754205], [-77.42323847719328, 34.5231250955985], [-77.42327877416439, 34.523184524577175], [-77.42334241877823, 34.52330794608322], [-77.42358946681509, 34.5236292964109], [-77.42364946767994, 34.52377962263367], [-77.42399105114941, 34.52406092607261], [-77.42370088617638, 34.52447524201129], [-77.42370054682587, 34.524592612430425], [-77.42360354310291, 34.52478046823223], [-77.42353633276764, 34.5251060386167], [-77.42339513164406, 34.52531973561994], [-77.42326987489722, 34.52551638481819], [-77.42320147884558, 34.52564413247576], [-77.42307135705217, 34.525949522576866], [-77.42300049072841, 34.526121033704115], [-77.42297386381695, 34.52616672239789], [-77.42226123596102, 34.52675485879996], [-77.42225951874474, 34.52675967003919], [-77.42225346436858, 34.52676975045969], [-77.42190238989156, 34.5273009776202], [-77.42180968122551, 34.527528502981895], [-77.42179559968933, 34.52759977521184], [-77.42176344049771, 34.52781074797212], [-77.42172338317506, 34.528137517312906], [-77.42171887772446, 34.52830687508492], [-77.42171439737984, 34.528475289758106], [-77.4216591332017, 34.52880519654904], [-77.4214275876401, 34.52928184318607], [-77.42139555100863, 34.52931343302962], [-77.42133464115538, 34.52934178432592], [-77.42135505294536, 34.5293826869104], [-77.42108169992467, 34.530357713428565], [-77.4210395021567, 34.5305878483838], [-77.42096278653818, 34.53086458691544], [-77.4213851466957, 34.531197615364384], [-77.42147841615606, 34.53122123893828], [-77.42164058114568, 34.53125630575584], [-77.42294646029217, 34.53159203980294], [-77.4235171115874, 34.53160824050404], [-77.4252891312218, 34.53120550946525], [-77.42546443019107, 34.53070354697758], [-77.42581509435453, 34.53046802052509], [-77.42600676111645, 34.530135453880725], [-77.42603865219485, 34.530080119383], [-77.42612681590134, 34.52977015979536], [-77.42621710871678, 34.52967030211951], [-77.42621203935391, 34.52961608678303], [-77.42618047852679, 34.52958966276854], [-77.42613109280559, 34.529576609861465], [-77.4255685733613, 34.529087386514064], [-77.4253589718364, 34.528993804933705], [-77.42517838287353, 34.52878615171484], [-77.4250762587134, 34.528619393899305], [-77.42503384723085, 34.52856220390114], [-77.42503666209019, 34.52852448503522], [-77.42504289471205, 34.52831605143416], [-77.4250414799616, 34.52810595614042], [-77.42510640780758, 34.52781717972863], [-77.42509443330152, 34.52751464609548], [-77.4250907430976, 34.52732975827316], [-77.42503841494347, 34.52711139329571], [-77.42499772726623, 34.52685351668559], [-77.4250102110616, 34.52661243084644], [-77.42499114002914, 34.526364782504785], [-77.42503586431914, 34.52611707989346], [-77.42506990132684, 34.52586370639712], [-77.42511820680052, 34.52556452566232], [-77.42515363830658, 34.52536191371961], [-77.42517816856015, 34.525193160881635], [-77.425200907794, 34.52501881792456], [-77.42522130393907, 34.52486244298571], [-77.42523385388196, 34.52472368501928], [-77.4252538734217, 34.524495646534085], [-77.4252619995347, 34.52436687137425], [-77.42526971749254, 34.52424457615065], [-77.42529940622161, 34.52387177311148], [-77.42532904817496, 34.52347261460907], [-77.4253351543704, 34.523376918745925], [-77.42534283079772, 34.523287033514166], [-77.42538771425383, 34.52287962931175], [-77.42543319578897, 34.52242762195865], [-77.42543371916014, 34.52238329213039], [-77.42543191797947, 34.52233725431312], [-77.42541466333077, 34.521896356697], [-77.42540569767081, 34.52148241335782], [-77.425402751968, 34.5214083929896], [-77.42541691366331, 34.521336888460546], [-77.42560893903854, 34.520888891132635], [-77.42623645588085, 34.51988664077667], [-77.42625597926649, 34.51981596162624], [-77.42628842983176, 34.519774288626536], [-77.42634979902601, 34.51967959072477], [-77.4270092788418, 34.518727657828244], [-77.42727185644685, 34.518266085099704], [-77.4274490999186, 34.518001354724625], [-77.4276861358888, 34.51765040441881], [-77.42775693389528, 34.5175087618883], [-77.42797398863203, 34.517217382416206], [-77.42838648819357, 34.51682165227532], [-77.42851180660236, 34.516229678534046], [-77.42840576537247, 34.51558757827492], [-77.42802866092914, 34.514741412288785], [-77.42801098033686, 34.514677207456856], [-77.42800737674584, 34.5146658128265], [-77.42800197707751, 34.514648667439964], [-77.42783404196939, 34.513845271941385], [-77.42779592690039, 34.51371701024558], [-77.4278322229337, 34.51288058073053], [-77.42768857570397, 34.512753154591245], [-77.4275400284397, 34.51243802848023], [-77.42808777764418, 34.51206423120083], [-77.42887756328332, 34.51208809540948], [-77.42966453102623, 34.51174352902807], [-77.43010238144883, 34.51169723457653], [-77.43123832064346, 34.51155664945698], [-77.43190064250473, 34.511164574589756], [-77.43225907823026, 34.51075927514746], [-77.43284084282081, 34.510064889038006], [-77.43342549028299, 34.50934005772365], [-77.43455823598163, 34.508821339021395], [-77.43473237147286, 34.50798911470815], [-77.43557145744309, 34.50727547732752], [-77.43563052496798, 34.50724049103197], [-77.43563308512337, 34.50723859004864], [-77.4356361970565, 34.50723515561517], [-77.43616755525997, 34.50690420274619], [-77.43620322058933, 34.506845781432794], [-77.4364038878636, 34.50684081007269], [-77.43691709402717, 34.50699392421357], [-77.43808798390378, 34.50736572984451], [-77.4382800616534, 34.5074267223011], [-77.43838843465157, 34.507449724144095], [-77.43870013481714, 34.50754077642346], [-77.44134293467145, 34.508404346664776], [-77.44194518603611, 34.508644040442476], [-77.44626284993589, 34.50883898598559], [-77.44653548472263, 34.50769160517142], [-77.44911106047475, 34.508032912303094], [-77.44938509562202, 34.507979555196414], [-77.44936159288861, 34.50790205773591], [-77.44741069661337, 34.506489321981874], [-77.4478429577446, 34.50556381949519], [-77.44604650473477, 34.50590263675083], [-77.44519505182731, 34.50538111853489], [-77.44525087488898, 34.50502838449117], [-77.44493032539401, 34.5047365402337], [-77.44493985262926, 34.50463170904722], [-77.44518801346823, 34.504349659147366], [-77.44545254943255, 34.50372947202205], [-77.44557926306537, 34.50375421325753], [-77.44605649016083, 34.503718330564524], [-77.44553548004185, 34.50363763176919], [-77.44624851860414, 34.50289122113076], [-77.44648050824449, 34.50256302142962], [-77.446674077338, 34.50250391042464], [-77.44720678398646, 34.50242581936327], [-77.44769748406357, 34.50240707287055], [-77.44777814381456, 34.502383320844395], [-77.44844078474941, 34.50212013755195], [-77.4500553258584, 34.50257072723355], [-77.44822206018753, 34.50266194080571], [-77.44837558282137, 34.503160810597855], [-77.44852381690197, 34.50364248721281], [-77.45019322352628, 34.50361961346343], [-77.45056149958349, 34.502711990818085], [-77.45056380032155, 34.50259659121647], [-77.45058697793318, 34.50143464216527], [-77.45067564903812, 34.50125123037516], [-77.4519372200788, 34.50029373309506], [-77.45238844636793, 34.49998728602445], [-77.45243958749947, 34.4999584559185], [-77.45248814537631, 34.499906867564675], [-77.45326978195666, 34.499173666214666], [-77.45343610327068, 34.498689508174934], [-77.45348870320197, 34.498640668774584], [-77.45473369424847, 34.498696752963994], [-77.45483417622592, 34.49863615956419], [-77.455305343777, 34.49853419190529], [-77.45542466492952, 34.49879058191125], [-77.4562940070519, 34.499049891222796], [-77.45652739379142, 34.49884661820797], [-77.45642232009487, 34.49832899241862], [-77.45643656130358, 34.4979431944729], [-77.45651892423905, 34.4974951465569], [-77.45669892751248, 34.49727527683351], [-77.4570777372539, 34.49699090796387], [-77.45806124137104, 34.4967489949465], [-77.45830307118979, 34.49654710899246], [-77.45863310904228, 34.49679556984417], [-77.45897920781907, 34.49719492335899], [-77.45879637130788, 34.49761084632432], [-77.45957412020341, 34.49786971173102], [-77.46006847925433, 34.49807832152892], [-77.46086008595265, 34.49771565305422], [-77.46177370510358, 34.49736430917699], [-77.46180615287713, 34.49708817786244], [-77.4624260837529, 34.496850432958865], [-77.4632425159736, 34.49716109278437], [-77.46342087021793, 34.49742556941991], [-77.46335320151857, 34.4978422203549], [-77.46436836635215, 34.49849631959544], [-77.46435501450085, 34.498618113373375], [-77.46452976276414, 34.49925296172418], [-77.46499530542864, 34.499734576084464], [-77.46509014893007, 34.499956907494095], [-77.46508344487599, 34.50015993372394], [-77.4654195199457, 34.50064913027132], [-77.46535274068361, 34.50111366584612], [-77.46543373298428, 34.501325362849634], [-77.46533192839522, 34.50146864282104], [-77.46527504102357, 34.501937200769454], [-77.46529947341124, 34.50199406380795], [-77.46527337760728, 34.502034217900984], [-77.46522897035553, 34.5021741889618], [-77.46521950374212, 34.502327762279165], [-77.46521586774972, 34.502600297431854], [-77.46520747523303, 34.50266490696766], [-77.46518346614099, 34.50276798248096], [-77.46589654568123, 34.503375369352355], [-77.46538596198067, 34.50387092440456], [-77.46455908883559, 34.50464880906051], [-77.46455482287448, 34.50465529825093], [-77.46455096369424, 34.50465813232588], [-77.46453247208397, 34.50467400001323], [-77.46409579472481, 34.505620388356824], [-77.46391849855294, 34.50597706276294], [-77.46369731020148, 34.50642204126482], [-77.46364726990025, 34.50659059025393], [-77.4636692263418, 34.50669089788374], [-77.4636043354771, 34.50731214491679], [-77.46354727266939, 34.50773005412989], [-77.4633408124181, 34.5084283367049], [-77.46346077050765, 34.50865588038769], [-77.46327287593556, 34.50878482596282], [-77.4631032538825, 34.50917410493023], [-77.46292882990963, 34.50980577364397], [-77.46285744172341, 34.509976291475354], [-77.4627943784038, 34.51027967617464], [-77.46269525175515, 34.51064357286116], [-77.46265612317869, 34.51086136975384], [-77.4624787643102, 34.51130809303049], [-77.46249927457114, 34.51197323742779], [-77.46250007725033, 34.51199928040558], [-77.46310236504077, 34.512690761658774], [-77.46311056998519, 34.51324617015939], [-77.46437017433547, 34.51380521492623], [-77.46597077314465, 34.513659025112496], [-77.46692120955191, 34.51328288234234], [-77.46781417257627, 34.512929752602055], [-77.46870498750044, 34.51261069913831], [-77.46932554970182, 34.51222450586261], [-77.47044101305065, 34.51107763743266], [-77.47072926677856, 34.510375474456524], [-77.47125682110041, 34.509097860761436], [-77.47127568068785, 34.50905218155322], [-77.47131009722455, 34.50896191169823], [-77.47177264803564, 34.50772632943342], [-77.47194634383874, 34.50705671151082], [-77.47288031005621, 34.50552654688221], [-77.4731878855635, 34.50528364038635], [-77.47371862485868, 34.505122918813896], [-77.47553664978896, 34.504048190341145], [-77.47771413384915, 34.50350384264381], [-77.47812539161242, 34.50264409579956], [-77.47808291989247, 34.50229040554529], [-77.47800261911436, 34.50128688284465], [-77.47794399348379, 34.50046531241176], [-77.47787823274638, 34.49992956734126], [-77.47880352022989, 34.49878179397378], [-77.47892002596417, 34.49863132957554], [-77.47888111725311, 34.49854449046081], [-77.47928835211442, 34.49729894616171], [-77.47863789741095, 34.49605048359508], [-77.48066623206402, 34.49460753051757], [-77.47993270360493, 34.4919275858403], [-77.47955178388486, 34.49053573881685], [-77.47770385457736, 34.49084525887068], [-77.4760939119677, 34.49080230184988], [-77.47625583692566, 34.49014207769562], [-77.4772352789623, 34.48908895226339], [-77.47811234330129, 34.488667756410315], [-77.47890443026951, 34.488170308265424], [-77.47880791264647, 34.48781762142382], [-77.47862045940037, 34.48713262563939], [-77.47843300955776, 34.486447629365024], [-77.47837346681112, 34.486230038735165], [-77.47831396378731, 34.48638981657039], [-77.47828637622813, 34.48644020273856], [-77.47784327296239, 34.48675293693588], [-77.47783969257607, 34.48675346300707], [-77.47724218637096, 34.48701677909769], [-77.47714561287451, 34.48701036069068], [-77.4771123881353, 34.48705624306311], [-77.47600059264732, 34.48740042843784], [-77.47513492124479, 34.487221813757515], [-77.47409578401505, 34.487578900461806], [-77.47343016594637, 34.48784895653343], [-77.47301831109127, 34.4885697721778], [-77.47261743796344, 34.48885498364719], [-77.47235131467126, 34.48962667150211], [-77.47193792870267, 34.49042100169075], [-77.472580559951, 34.49155514397336], [-77.472759535124, 34.492545158592506], [-77.47321994314167, 34.49341956279736], [-77.47339448053418, 34.49429842124725], [-77.47364797609995, 34.49521266476879], [-77.47426005185233, 34.49630059019646], [-77.47389897740699, 34.497026010011226], [-77.47336721265562, 34.49746244594485], [-77.47308127541972, 34.49707479715484], [-77.47301214704943, 34.49698107555282], [-77.47289893518104, 34.49682758611286], [-77.47237177001867, 34.49587968703425], [-77.47031470481204, 34.49549332870956], [-77.47026655802215, 34.49541402998899], [-77.47011834691206, 34.4954323561945], [-77.4700738535729, 34.495455609194245], [-77.47006400080868, 34.49548061897903], [-77.46991861480171, 34.49559587231555], [-77.46917740778673, 34.49611117082952], [-77.46910197849982, 34.4961715952811], [-77.46901282714256, 34.496313927322305], [-77.46867795558657, 34.49676135128], [-77.4686136551333, 34.49712242748946], [-77.46846769305331, 34.49742619735886], [-77.46877933434811, 34.49775716654068], [-77.46928309802549, 34.49814305036941], [-77.47119380039648, 34.499363169442915], [-77.47205864192082, 34.49917518297202], [-77.4724609280403, 34.49965515846617], [-77.47200493596026, 34.49995734525264], [-77.47230759478732, 34.500998401731835], [-77.47173480003053, 34.50134037747523], [-77.47059214730453, 34.5016472254369], [-77.47032519817066, 34.50224893353221], [-77.4699015006126, 34.50249983279492], [-77.46945255090542, 34.50284378023423], [-77.46922879104599, 34.502868862116564], [-77.46835905236277, 34.502938775224756], [-77.46797417776122, 34.502875599049545], [-77.46797592001622, 34.502805333106], [-77.46795370660602, 34.502741926103184], [-77.46854024682023, 34.50215843593814], [-77.46741498455975, 34.501601921702516], [-77.46729897942693, 34.50141998155861], [-77.4671604263585, 34.50116866453048], [-77.4670109269021, 34.50072986112946], [-77.46661762167304, 34.50045270978409], [-77.46663452546184, 34.50031925237527], [-77.46652562858675, 34.500029735577186], [-77.46648294677556, 34.49974014731623], [-77.46643097877029, 34.49962638872401], [-77.46667224789049, 34.49936166116352], [-77.46656733450654, 34.49891311026327], [-77.46662495523323, 34.49853258239704], [-77.46672100581226, 34.498013114787], [-77.46672477818633, 34.49779577922109], [-77.4667416562337, 34.49740125092018], [-77.46674872929236, 34.497339010481284], [-77.46676251838903, 34.497245239344245], [-77.46677906541308, 34.49682541295482], [-77.4668458197599, 34.49666842367377], [-77.46695604486754, 34.49631736047648], [-77.46728082482045, 34.49540850289347], [-77.46730348289019, 34.49534061962277], [-77.46720909559733, 34.49525225604534], [-77.46637027145633, 34.49431846983562], [-77.46521684634632, 34.49388372346802], [-77.46490534792994, 34.49351813929244], [-77.46419622288548, 34.49347484939768], [-77.46387588954988, 34.493633253162365], [-77.46338628808552, 34.493790817825115], [-77.46174618865246, 34.49436434500187], [-77.46076031491388, 34.49411828516017], [-77.46026682417059, 34.493879027180895], [-77.45953638333788, 34.493901376132825], [-77.45888010584483, 34.493732454681094], [-77.4583490319336, 34.49381239390521], [-77.45760049793327, 34.49397760057716], [-77.45743410440275, 34.49406817052291], [-77.45726852929641, 34.49415564758423], [-77.45640534309614, 34.49453165898034], [-77.45614995551568, 34.494632400315], [-77.45582251023157, 34.49475768547179], [-77.45520907991428, 34.49508171209659], [-77.45494420342695, 34.49523471374921], [-77.45468469434687, 34.49537537490306], [-77.45414690170074, 34.49600786947796], [-77.45413604515493, 34.49602300798753], [-77.45412939298502, 34.49602695952985], [-77.45412220892352, 34.496031961161755], [-77.45200979773763, 34.49726594556368], [-77.4519066132321, 34.49732327165061], [-77.45180822378728, 34.49741966433489], [-77.45023959398088, 34.498526960158316], [-77.45003837965263, 34.49879183981196], [-77.44956444062252, 34.49906444499296], [-77.44909889290952, 34.49952351826181], [-77.44852911042993, 34.49979099505957], [-77.4479489598859, 34.50015294790957], [-77.44770715333777, 34.50042470531843], [-77.44729310011785, 34.50060869497243], [-77.44685162757835, 34.500807937107275], [-77.44624124725851, 34.5010256352253], [-77.44607637704969, 34.50108435202499], [-77.44511062405178, 34.50115016281701], [-77.44477979620186, 34.50126783351108], [-77.44338392443507, 34.502231232639325], [-77.44312775928894, 34.50256302783518], [-77.44321317945301, 34.503573597232105], [-77.44312968051491, 34.503752158221225], [-77.44311676675837, 34.50490087215344], [-77.44311494288769, 34.50491965532346], [-77.44311529954467, 34.50493336006652], [-77.443109198945, 34.50501088482548], [-77.44233201259408, 34.50574094772472], [-77.4414945372184, 34.505748077247446], [-77.44060724814005, 34.505712111874935], [-77.44011022683492, 34.50544216287599], [-77.43968372984001, 34.50512808758392], [-77.43828607108682, 34.50496312860632], [-77.43769896159051, 34.50492622932801], [-77.43735830951675, 34.505106394525285], [-77.43675165960623, 34.50527103588665], [-77.43658538345147, 34.50532489677003], [-77.43646453770559, 34.50533745019125], [-77.43604129717669, 34.505464538520044], [-77.43521718309772, 34.505701371104784], [-77.4348966913838, 34.50569247487284], [-77.43489836866857, 34.50585209969556], [-77.43404342756585, 34.50633474765832], [-77.43373382750124, 34.506315589790155], [-77.43380567724304, 34.50647192300674], [-77.43316365804895, 34.506967113689285], [-77.43297764300989, 34.50710523479432], [-77.43294878693588, 34.50712232654033], [-77.43290461194493, 34.50716975529747], [-77.43235154475168, 34.50752206466979], [-77.43131260156119, 34.5081871147475], [-77.43108627014146, 34.508203218227735], [-77.42973224797427, 34.50867435821871], [-77.42891014325664, 34.50913168467429], [-77.42814744055892, 34.50936238148758], [-77.42779723536269, 34.50958384221669], [-77.4268347090626, 34.509772548677326], [-77.42656902905081, 34.50975977464185], [-77.42621312439069, 34.50980696366213], [-77.4260426121686, 34.51005303371147], [-77.42605316833126, 34.51036503048908], [-77.42535490249637, 34.511375978432966], [-77.42528735762713, 34.51212099997406], [-77.4252110345559, 34.512299133708076], [-77.42528123449662, 34.51288231792664], [-77.4254363648022, 34.51307883064911], [-77.4258685104565, 34.51340317633301], [-77.42610493002033, 34.51372667626127], [-77.42628901577632, 34.51393491948865], [-77.42634974168817, 34.514004426393406], [-77.42646894351913, 34.51428837548347], [-77.42651619708144, 34.5143917582869], [-77.42663147990348, 34.51475690698478], [-77.42666397192708, 34.51486007782249], [-77.42671306575605, 34.515015313538825], [-77.42677095441897, 34.5156172356095], [-77.42685915662469, 34.51581123255009], [-77.42700063902265, 34.51592615277097], [-77.42707317480841, 34.51618339716938], [-77.42706764533058, 34.51627077427311], [-77.42703748186452, 34.51638125495647], [-77.42692811799809, 34.51660943302207], [-77.42675417990338, 34.51680579049752], [-77.42664040757175, 34.51696613924323], [-77.42652197040924, 34.5173290569456], [-77.42639677582014, 34.5175538874833], [-77.42627103605933, 34.517779695354115], [-77.42622541247684, 34.51786162693135], [-77.42612516309417, 34.518038891406206], [-77.42605161597466, 34.518169593242625], [-77.42589825175534, 34.51839862001436], [-77.4258073074116, 34.5185473951881], [-77.42485450996516, 34.519002066819176], [-77.42479697024855, 34.518911200180135], [-77.424033240578, 34.51817857871049], [-77.42377621402338, 34.51788732655303], [-77.4232510417476, 34.51783233734376], [-77.4225364790992, 34.517950796214], [-77.42244334516528, 34.517931596602864], [-77.42242823995154, 34.51792092691469], [-77.42200937931483, 34.51777751895114], [-77.42198520226876, 34.517682852477165], [-77.42190135914332, 34.51750740642943], [-77.42188999691987, 34.5173849965662], [-77.42182418131861, 34.51710803924934], [-77.42193090564625, 34.517013448692886], [-77.42184282053474, 34.5166205490699], [-77.42194302838273, 34.51652200927121], [-77.42197531717103, 34.515691849550684], [-77.42188548466451, 34.5154563746377], [-77.42043442416254, 34.51478133955579], [-77.42028085777248, 34.51474062131823], [-77.42017974283856, 34.51475282297985], [-77.42009096249492, 34.51477591770316], [-77.41916341683378, 34.514621596541616], [-77.4187125833345, 34.514540535651335], [-77.41864973090699, 34.51452794844585], [-77.41861532884717, 34.514512926367665], [-77.41822322579458, 34.514368218246034], [-77.41746474823388, 34.51423119907585], [-77.41705612883473, 34.51403863475553], [-77.41630269282675, 34.5138918777061], [-77.41548933596516, 34.51390660019446], [-77.41479792654741, 34.51406638513943], [-77.41463573826499, 34.514110288677074], [-77.41391111326408, 34.51428839896808], [-77.4126044035901, 34.51493353675973], [-77.41243219256879, 34.51502531662085], [-77.41232252310688, 34.515135029593935], [-77.41104520416077, 34.51613816264097], [-77.41087316121035, 34.51625368396995], [-77.41072610037908, 34.51633159347132], [-77.41015406166984, 34.51661977325427], [-77.40914119446956, 34.51700977689006], [-77.40869445517191, 34.51718077388316], [-77.4080007394553, 34.51728561174945], [-77.40756786006304, 34.517168428787144], [-77.40724539644677, 34.51746942265778], [-77.40629502082878, 34.51780366818916], [-77.40602798861309, 34.51787069465121], [-77.40598185902518, 34.51789363379841], [-77.40587417186286, 34.51793110974713], [-77.40518959214847, 34.518222932564385], [-77.40460068140189, 34.51804836332134], [-77.40457538035679, 34.51794934108468], [-77.4044132273696, 34.51784083211652], [-77.40401364053042, 34.5181331355844], [-77.40322151408901, 34.51849250178561], [-77.4030385775605, 34.51876361279222], [-77.4028171014845, 34.519016491455375], [-77.40268271389141, 34.51922372825805], [-77.40253966864245, 34.519325327116285], [-77.40210469228394, 34.519821330803005], [-77.4020333106786, 34.51990117560461], [-77.40201171489853, 34.51993064616878], [-77.40138635835704, 34.52036557269251], [-77.40121468162603, 34.520471100488564], [-77.40107350328589, 34.52002669443536], [-77.40079387602975, 34.51984860976512], [-77.40074914424956, 34.51977335063895], [-77.40076198804351, 34.51958199665128], [-77.40045382167423, 34.51939686114373], [-77.40030300186012, 34.5192546659549], [-77.39968144285221, 34.51883731685169], [-77.39962846838714, 34.5187998718404], [-77.39951414907675, 34.51878280333901], [-77.39812986327918, 34.51802362354223], [-77.39809138620593, 34.51803272852824], [-77.39655056866096, 34.51844538810426], [-77.39577257510611, 34.51884312759673], [-77.39513518884532, 34.51941489932171], [-77.39509696112125, 34.51950781961749], [-77.39497290082164, 34.5199279930486], [-77.394947061049, 34.519943702607506], [-77.39428112444689, 34.5201043188864], [-77.39398211625202, 34.5201799700644], [-77.39337817689378, 34.519900198685605], [-77.39315104497236, 34.51984373809792], [-77.3930373379332, 34.519717661446606], [-77.3920676363478, 34.51902778382903], [-77.39192707787373, 34.518898544444255], [-77.39189393215229, 34.518864460565055], [-77.39183151408986, 34.51886962838714], [-77.39177519904796, 34.51888555290918], [-77.39154000678289, 34.518954398359], [-77.39025239556867, 34.51928116961412], [-77.3896569776245, 34.51959316103711], [-77.38934328410548, 34.519689300563485], [-77.38867699506089, 34.51952707400232], [-77.38739336168183, 34.52053201465804], [-77.3880285791146, 34.52082659167122], [-77.38811856496878, 34.5209170594004], [-77.38863955473911, 34.521187399226214], [-77.38878908086708, 34.52121630466133], [-77.3899860703166, 34.521137288448614], [-77.38993733524957, 34.521964832516254], [-77.38861918297529, 34.522090813659425], [-77.38809467343083, 34.52206189975439], [-77.38778889708902, 34.5219738747589], [-77.38704907575146, 34.522099561103204], [-77.38643990752715, 34.522138554088535], [-77.38633505831687, 34.522109289643346], [-77.38642818361261, 34.52165057848207], [-77.3862867167714, 34.521180169499914], [-77.38551116973598, 34.52068259562734], [-77.3839745364253, 34.520999954961184], [-77.38380587099617, 34.520969068543344], [-77.38237370734784, 34.52058037569458], [-77.38231423558176, 34.52032599889951], [-77.38231145846882, 34.52028570976836], [-77.38226451999783, 34.52021926888493], [-77.38227163253947, 34.51939257021103], [-77.38109765002567, 34.519651614363084], [-77.38082426732942, 34.5196773489844], [-77.38008712100302, 34.52015336081628], [-77.37985977855428, 34.52025347040573], [-77.37924473521136, 34.52010356693668], [-77.37856605260598, 34.52040672164897], [-77.37845772864823, 34.520841428839965], [-77.37789512547856, 34.52107368359894], [-77.377650581511, 34.52117365543347], [-77.37730306113033, 34.52122398578157], [-77.37646969262883, 34.52137356292472], [-77.37607420530681, 34.52145875978609], [-77.3756207075744, 34.521532308417875], [-77.37556535371031, 34.52125843751756], [-77.37551237554342, 34.520907798980005], [-77.37548675461966, 34.52078011048786], [-77.37577251747939, 34.520451711309335], [-77.37576337678033, 34.52025057213179], [-77.3761069818232, 34.52001487545892], [-77.3769344361205, 34.5196129095721], [-77.37769320549785, 34.519294418319305], [-77.37810180127026, 34.51918748979982], [-77.37810693385605, 34.51893337138956], [-77.37849439368094, 34.51857749575594], [-77.378590534884, 34.518431898616896], [-77.37918829722477, 34.51834781871413], [-77.37928255762131, 34.518434654078895], [-77.37975588694661, 34.5184008030183], [-77.3803424393808, 34.518290854038526], [-77.38086313911623, 34.51796071642052], [-77.38203671779166, 34.51812175254933], [-77.38242777719923, 34.51819058095906], [-77.38261794455492, 34.51816458877217], [-77.38400737833305, 34.51775887080859], [-77.38555768468952, 34.517847909976], [-77.38557539576729, 34.51783919248551], [-77.38622311335035, 34.517178280094384], [-77.38648356435623, 34.517168169053846], [-77.38715871720946, 34.51724148497932], [-77.38752354654815, 34.51681754151366], [-77.38834271830562, 34.516477726093214], [-77.3885413725694, 34.51631932962843], [-77.3887521951024, 34.5161923261183], [-77.38909079155249, 34.51615902702538], [-77.38974471934945, 34.515911355592465], [-77.38995226453335, 34.515506464298674], [-77.38990778240792, 34.51527258065846], [-77.38941757309722, 34.51494574256912], [-77.38878592213845, 34.514696728837436], [-77.38859624724772, 34.514602147108654], [-77.38852482644579, 34.51449278914108], [-77.38800976506869, 34.51430984935341], [-77.3878158731131, 34.51422753154377], [-77.38738688105154, 34.514267774499125], [-77.38722396420687, 34.514350560431424], [-77.38682717894943, 34.51449216421369], [-77.3859524617071, 34.51467327531947], [-77.38564523368491, 34.51474741812971], [-77.38543144946732, 34.514806519791605], [-77.3850951323359, 34.514987572193874], [-77.38435175927859, 34.515274611546296], [-77.38405668579713, 34.515577801597296], [-77.38358174902297, 34.515503214019375], [-77.38291320150577, 34.51556811547171], [-77.38247927596133, 34.515914466619535], [-77.3819018826812, 34.51580984203217], [-77.3816939227038, 34.51593448905504], [-77.38164803387664, 34.51594596418076], [-77.38137909296472, 34.516013216306234], [-77.38129880176213, 34.51605245182158], [-77.38127828351314, 34.516040720844416], [-77.38097011756292, 34.516112830926794], [-77.38090348791886, 34.516178879842045], [-77.38060037414616, 34.51631272464219], [-77.38048360487734, 34.51637281588928], [-77.38024180558116, 34.516584288008396], [-77.38017227363872, 34.51667691555565], [-77.38010632789259, 34.516719917751225], [-77.38001703559988, 34.516699301728806], [-77.37947723909511, 34.516680491139184], [-77.3793234019843, 34.51663242295041], [-77.37914585630773, 34.51671533817849], [-77.37778235818094, 34.516998403636244], [-77.37774504436487, 34.51700894419806], [-77.37770587746435, 34.51700811425286], [-77.37764543050218, 34.51704127497606], [-77.37677315337703, 34.51754768246261], [-77.37615715444358, 34.51780468173072], [-77.37568196360911, 34.51801014817479], [-77.37514171906416, 34.518032476472335], [-77.37457943143545, 34.51815153423573], [-77.37419282554869, 34.51827898262026], [-77.37355904196451, 34.51860971026024], [-77.37298267186858, 34.51933495105101], [-77.37266704375962, 34.51952338053863], [-77.37267155329602, 34.519716950617344], [-77.3722829760386, 34.520197206599384], [-77.37295266729086, 34.520654532437234], [-77.37295358003253, 34.52065561399936], [-77.37295262848558, 34.520656239074015], [-77.37295237345413, 34.52065595109545], [-77.37295221632984, 34.52065581056934], [-77.37217558266089, 34.52030877879918], [-77.37143896377304, 34.520873921746265], [-77.37141623345745, 34.520901580833645], [-77.37137644806415, 34.52093223927271], [-77.37111343546859, 34.521410494012244], [-77.37103908747821, 34.52171148165953], [-77.37084436576961, 34.52193892671536], [-77.37101650187441, 34.52212176511605], [-77.37134574928793, 34.52228125361708], [-77.37141555816085, 34.52230241542731], [-77.37196204572064, 34.52216057086725], [-77.37213476263683, 34.522103292593904], [-77.37244733731362, 34.52200397674598], [-77.37292343725255, 34.52194006378991], [-77.37353769282917, 34.52193381383499], [-77.37390389044714, 34.52186669455136], [-77.37389060443951, 34.522105522958896], [-77.37370265706178, 34.52219267630814], [-77.3734853912454, 34.52240506659988], [-77.37309525080327, 34.52247899955813], [-77.37291210656781, 34.52243838836432], [-77.37274971801371, 34.522543822963755], [-77.37226277346856, 34.52262653313649], [-77.3721222793525, 34.522652082495654], [-77.37198460824158, 34.52266825352764], [-77.37148079466506, 34.522735822810674], [-77.3713400065746, 34.52253361064547], [-77.37118429364875, 34.52277555048687], [-77.37054890985874, 34.522802816508616], [-77.36990952302952, 34.523052965080396], [-77.36981693365027, 34.52310363961059], [-77.36980910508441, 34.5235187465151], [-77.36982223672472, 34.52355519890138], [-77.36980617037602, 34.52359511338621], [-77.36980668675702, 34.524003373529254], [-77.36987223045745, 34.524037648794206], [-77.36978261674498, 34.52408036360297], [-77.3697328539292, 34.5241676913789], [-77.36952338091379, 34.52457757548029], [-77.36945337048603, 34.52491358112732], [-77.36924880834428, 34.52510679551434], [-77.36933652570303, 34.52532493231014], [-77.36935129391901, 34.52558168279787], [-77.36945261809132, 34.5259066383357], [-77.36940939582601, 34.52606296350758], [-77.36956564687469, 34.526117052488786], [-77.36968778599405, 34.52614655671712], [-77.37000158225769, 34.526173747296426], [-77.3700795463589, 34.526179095485055], [-77.37041662178986, 34.52591781526728], [-77.37043898319776, 34.52588986110489], [-77.37047991506904, 34.52583350535629], [-77.37070769513454, 34.525523896915345], [-77.37069760718643, 34.525387665778126], [-77.37071024630657, 34.525250450282755], [-77.37074593616771, 34.525135873576026], [-77.37074209158072, 34.525043925847896], [-77.37079212360342, 34.52488438912062], [-77.37065031928886, 34.52450256436912], [-77.37070825574764, 34.52440682084361], [-77.37125144526074, 34.52387508202608], [-77.3712839460952, 34.52383419748853], [-77.3712944315409, 34.523822553848426], [-77.37131073596846, 34.52381988104715], [-77.37133586144893, 34.52381116608181], [-77.37210174275823, 34.523554917168994], [-77.37274805632778, 34.52362317650382], [-77.37283606892444, 34.52364086677098], [-77.372884614071, 34.52364751871324], [-77.37298960071902, 34.52365394118576], [-77.37421274163297, 34.52356408386713], [-77.37445779427094, 34.52350551740617], [-77.37459542728396, 34.5234418416509], [-77.37460019306485, 34.52335620347267], [-77.37525413551569, 34.523005008792154], [-77.37560609089793, 34.52294016846123], [-77.37569853432848, 34.522921836617456], [-77.37604080643897, 34.52293007698517], [-77.37655737884825, 34.52258439722826], [-77.3767186070475, 34.522488045532356], [-77.3768373263214, 34.5224210082539], [-77.3771380146995, 34.522314621907356], [-77.37762908523857, 34.522121409225505], [-77.37800050504987, 34.5221183231243], [-77.37841472792049, 34.52209131648951], [-77.3786743896111, 34.522116831776486], [-77.37919483084482, 34.52230562806704], [-77.37967264734107, 34.52232653225023], [-77.37997780247673, 34.52239346070482], [-77.3800865376247, 34.52249593315781], [-77.38016148175561, 34.522554403326374], [-77.38033827395239, 34.522788130762315], [-77.38075127142544, 34.52290101293262], [-77.38080604306134, 34.522916729397046], [-77.3814839197528, 34.522819577714145], [-77.38154055916672, 34.522710076903934], [-77.38167599364736, 34.52241633946903], [-77.38180873371965, 34.522316859097394], [-77.38196039808447, 34.52205801617447], [-77.3823537506095, 34.5214624403204], [-77.38277235766591, 34.52145965501238], [-77.38389833222773, 34.521057670082925], [-77.38393308379253, 34.521045290215405], [-77.38483216086216, 34.521880798937104], [-77.38458315221254, 34.52247042445803], [-77.38447910292788, 34.522911050428625], [-77.38439604888168, 34.523242815251535], [-77.38389230836088, 34.5239750140166], [-77.38387791381511, 34.52398411732025], [-77.38386659353793, 34.52398656008461], [-77.38385198647916, 34.523989894423984], [-77.38259645672159, 34.52435411337501], [-77.38228740171522, 34.524395028458784], [-77.38211376183608, 34.5243406002166], [-77.38104300386883, 34.524591790767126], [-77.38086400712761, 34.524901404230654], [-77.38081642418567, 34.52497824715994], [-77.3808236928654, 34.525317571277384], [-77.38086230398892, 34.52539131108972], [-77.3809469476897, 34.525538415388965], [-77.38099003429792, 34.52615728683528], [-77.38108971149715, 34.52633783950708], [-77.38103681836796, 34.52657548280712], [-77.38103974690122, 34.526834707281914], [-77.3809241740054, 34.52717284690461], [-77.3808536895499, 34.52735119754382], [-77.38088556897301, 34.52749525988767], [-77.38064003849733, 34.52781346687796], [-77.38041866569539, 34.52790358840689], [-77.37994008293288, 34.52802869285652], [-77.3798502993209, 34.52802212500731], [-77.37980324479153, 34.52802168433328], [-77.3792440586021, 34.52807295470702], [-77.37906655273706, 34.52796615106601], [-77.37899830909956, 34.52810838801611], [-77.37841070936193, 34.528278090404505], [-77.37831988360793, 34.52869586282314], [-77.37826353525598, 34.52876023967724], [-77.37806022127697, 34.529100960094524], [-77.37791084600158, 34.52924449445976], [-77.37745570237533, 34.52976597693996], [-77.37743317377411, 34.52978929795148], [-77.37741272578494, 34.52980596795995], [-77.37741769509992, 34.52982807962947], [-77.37722629968736, 34.53032250288315], [-77.37717016845822, 34.53065472798167], [-77.37704625991873, 34.53083811686486], [-77.37688450627225, 34.531197458477216], [-77.37685752722052, 34.53149601540649], [-77.37662337285292, 34.531850541081255], [-77.37660270844712, 34.53188137731527], [-77.37660442185387, 34.531892358761674], [-77.37662214570686, 34.53190462683821], [-77.37688195625164, 34.53216504402271], [-77.37700508672368, 34.53231302959581], [-77.3770052195878, 34.5323131265119], [-77.37700539063955, 34.53231378951682], [-77.37706602199695, 34.532508502230286], [-77.3770482848618, 34.53258218288034], [-77.37699802793026, 34.532638365491], [-77.37690827802152, 34.53276242052645], [-77.37673282854098, 34.53276078560857], [-77.3766040840866, 34.53270068501309], [-77.37649934695031, 34.53263076528506], [-77.37647054105516, 34.532476553884834], [-77.37629535661884, 34.532415341803556], [-77.37604779932002, 34.53231381252064], [-77.37582721372152, 34.53233984917919], [-77.37557275902127, 34.53227467666136], [-77.37551892867606, 34.5322314266056], [-77.37514232540016, 34.532151706557855], [-77.37504697952228, 34.532127431139074], [-77.37490233393972, 34.532215458366124], [-77.37461693304118, 34.53239281197422], [-77.37424897033475, 34.53269762330996], [-77.37423704534106, 34.53270470111094], [-77.37423312375506, 34.53271260390736], [-77.3742352323019, 34.5327205438532], [-77.37424786612281, 34.532746230758136], [-77.37437359912468, 34.53309859877996], [-77.37438723822628, 34.5331800470905], [-77.37441029344045, 34.53328567558603], [-77.37445706182584, 34.53341481175157], [-77.37434198185392, 34.533605353673295], [-77.37431591468187, 34.5336799847397], [-77.3742245324176, 34.533773384729486], [-77.37362556271762, 34.533897317025364], [-77.37343442176015, 34.53399509574943], [-77.37298261870724, 34.53415172371414], [-77.37264262419976, 34.534290802169124], [-77.37252774990554, 34.534356652341806], [-77.37239144094272, 34.53444701048845], [-77.37223256311721, 34.53471958170687], [-77.37199012703952, 34.534994502574705], [-77.37199256338312, 34.53508969388237], [-77.37212883444732, 34.53546416827087], [-77.37217960781142, 34.535677388800345], [-77.3721906090006, 34.53570009408618], [-77.37219759183257, 34.535711675589596], [-77.37233946093185, 34.53592346949907], [-77.3724060428603, 34.536036671597216], [-77.37259682941578, 34.536305060805965], [-77.37263063383439, 34.53634944980869], [-77.37265560012888, 34.53636756466106], [-77.37267658304219, 34.53641585303966], [-77.3728092354585, 34.53669704584694], [-77.37328116229043, 34.53676706413494], [-77.37333677760253, 34.53678046856876], [-77.37337121516514, 34.53677635524295], [-77.37342542015847, 34.53678013357068], [-77.37415550875137, 34.5368118660313], [-77.37482603305544, 34.53661859786972], [-77.37494552638545, 34.53659530294317], [-77.37502977215846, 34.53656718002055], [-77.37532231190256, 34.5364728681587], [-77.37573662150302, 34.53633107104114], [-77.37592039613445, 34.53627286335207], [-77.37620338029392, 34.53614468525693], [-77.37653226771648, 34.53586600892974], [-77.3765760495554, 34.53582927518297], [-77.37662536601232, 34.53579537909458], [-77.3768856215546, 34.535483172264705], [-77.37733567679659, 34.535058250669366], [-77.37757180628297, 34.53482358031148], [-77.3779336781984, 34.53462745384283], [-77.37857888672951, 34.534320079239784], [-77.3788681643912, 34.53400307190032], [-77.3789310690358, 34.53394490554683], [-77.37927751193756, 34.533666541721296], [-77.37940977341944, 34.53363084724491], [-77.37972407050592, 34.53359477631331], [-77.38026291944107, 34.533467679764144], [-77.38051272219559, 34.53343645315262], [-77.38081754367346, 34.53342226663895], [-77.38188737067648, 34.53320329456768], [-77.38208965485728, 34.533135743014434], [-77.38221738891275, 34.53310979481866], [-77.3826118296484, 34.533137552880646], [-77.3828719004706, 34.5332602621382], [-77.38304770134287, 34.53329033908979], [-77.38364943682978, 34.53359320387903], [-77.38394874432633, 34.533760133980365], [-77.38397267875722, 34.53396351620106], [-77.38410910459056, 34.53422667120957], [-77.38418236538921, 34.534362525945745], [-77.38421823279734, 34.53445576491798], [-77.38427292603748, 34.53460620712118], [-77.38429515031785, 34.53468950334859], [-77.38431124153797, 34.53474779083737], [-77.38440644692452, 34.53483486888268], [-77.38445560531213, 34.5348798990791], [-77.38471606000338, 34.534821724577725], [-77.38480011598732, 34.53478480428063], [-77.3851895957641, 34.534560504101876], [-77.38519344621217, 34.53455723737306], [-77.38519784984406, 34.53455473659103], [-77.38520606708013, 34.53455302728469], [-77.38598924443286, 34.534274722309554], [-77.38663224029064, 34.53435242672343], [-77.38672522233135, 34.53436831743607], [-77.38677159671651, 34.534395156423614], [-77.38684319952947, 34.53436625127896], [-77.38686204359607, 34.534319279962105], [-77.38696696174928, 34.53418524641798], [-77.3874251765123, 34.53365597195], [-77.38757513428719, 34.533576479463015], [-77.3877260255792, 34.533610397335785], [-77.38819831516383, 34.53353531209404], [-77.3883610139984, 34.53354024119252], [-77.38865940516875, 34.533386394649156], [-77.38878197036625, 34.53332250106332], [-77.3888070557488, 34.5333042140598], [-77.3891568832986, 34.533060725714265], [-77.38923733161089, 34.533047298482145], [-77.38958033647124, 34.532947825062706], [-77.38984541496883, 34.53284636498378], [-77.38994704404348, 34.532834181021855], [-77.39001706343791, 34.5328410497259], [-77.3906256618986, 34.53272915229267], [-77.39073480703024, 34.53271390333687], [-77.3909682431886, 34.532603536499636], [-77.39120831163135, 34.53251584703803], [-77.39131347510006, 34.532342063611026], [-77.39140103799909, 34.53219547845143], [-77.39153514411348, 34.53203491186801], [-77.39186083951948, 34.531839880580726], [-77.3919266649491, 34.53162997054673], [-77.39233422833166, 34.531411018499576], [-77.39249158652734, 34.53144976258538], [-77.3927693901013, 34.531508372916434], [-77.39297577635236, 34.53156592221346], [-77.39311481747146, 34.53160889770287], [-77.39330562860548, 34.531549176218675], [-77.39351094280995, 34.5314485955398], [-77.39356001093434, 34.5314245576125], [-77.39371186116367, 34.5313723760796], [-77.39386167763594, 34.531322931447335], [-77.39390654802173, 34.53131135713], [-77.39396218878161, 34.53130168244293], [-77.3943002421887, 34.531259077012706], [-77.3946705382529, 34.53121961793365], [-77.3946937201836, 34.531216389685845], [-77.39472156438485, 34.53120939874557], [-77.39475499871494, 34.53122184375019], [-77.39527190692006, 34.531275442433525], [-77.39543359640851, 34.53159065736032], [-77.39544017637989, 34.53161263261637], [-77.39511071171252, 34.531880442839544], [-77.3950735246927, 34.53191220215947], [-77.3950630033392, 34.53191657954808], [-77.39467410293219, 34.532089325190945], [-77.39435563873404, 34.532059757612686], [-77.39425394978159, 34.53227348784412], [-77.39388102202932, 34.53244674904458], [-77.3937347063221, 34.53243977817786], [-77.39317293155253, 34.5324779205698], [-77.39309517876113, 34.53248206014007], [-77.3930062605493, 34.532508620198655], [-77.39255791585573, 34.53267549345309], [-77.39229995343551, 34.53293428989956], [-77.39220729572196, 34.53300163418024], [-77.39209548518392, 34.533074615630305], [-77.39201867027275, 34.5332566215642], [-77.39195449415442, 34.533375342057795], [-77.3916292658972, 34.53355155092284], [-77.39149952611263, 34.53361722186884], [-77.39146527318181, 34.5336340853559], [-77.3914429128463, 34.53365843939172], [-77.39125923770469, 34.53378221513796], [-77.39125091365982, 34.533838106762744], [-77.39142300679349, 34.53390614516048], [-77.39149155555603, 34.5339713122499], [-77.39159033248218, 34.53406392649784], [-77.39188473067748, 34.533942743380834], [-77.39216928049201, 34.53404330409944], [-77.39223709782675, 34.53405696792287], [-77.39227430679276, 34.53407411008085], [-77.39248616092982, 34.534242416134774], [-77.39254557785947, 34.53430622028072], [-77.39265835622508, 34.534451203908205], [-77.39266455428786, 34.53446151007612], [-77.39275947218755, 34.53462711132049], [-77.39279149992319, 34.534688026999596], [-77.39285026349015, 34.53479979387853], [-77.39285326987563, 34.53480566009574], [-77.3928940355002, 34.53491806616182], [-77.39278655306892, 34.53508949370057], [-77.39272341395196, 34.535239152944676], [-77.39263943112672, 34.53529248208483], [-77.3925395078708, 34.53527660180396], [-77.39233322768915, 34.53524381860715], [-77.39227600866136, 34.53523472506756], [-77.39224828928816, 34.53523042351844], [-77.3920111836314, 34.53519385144156], [-77.39155897957605, 34.535110695507996], [-77.39150454738771, 34.535094674007624], [-77.39146712093057, 34.53505682204339], [-77.39116690534888, 34.53497891882587], [-77.39106654759831, 34.53494351251246], [-77.39068715775525, 34.53482982895211], [-77.39059044957266, 34.534821204067065], [-77.39033247524591, 34.53479798183348], [-77.39002065373163, 34.53476985680617], [-77.38990367438699, 34.53475926157548], [-77.38976585639733, 34.53479425839103], [-77.38955311990554, 34.534910416781976], [-77.38925700835769, 34.53504345676122], [-77.3891083994129, 34.535211923691364], [-77.38892140172928, 34.53537690085601], [-77.38872587983715, 34.53551942059033], [-77.38870861119734, 34.53553351406334], [-77.38868539850155, 34.53552526022864], [-77.38846844062321, 34.53546252013549], [-77.38831771785578, 34.535460466995715], [-77.38782473607361, 34.53546713090722], [-77.38753174300939, 34.53550012311848], [-77.38731803117257, 34.535590477703266], [-77.38707391763998, 34.5357577128245], [-77.38689197069758, 34.53587993348202], [-77.38673564582446, 34.535988293533386], [-77.38641610611919, 34.53614516738733], [-77.38564864546646, 34.536452949368346], [-77.38531503329583, 34.53660300672772], [-77.38514779982214, 34.53677082871394], [-77.3844002657242, 34.53715144946074], [-77.3843535735162, 34.53717500510616], [-77.38426177139037, 34.53719954355076], [-77.3838140169947, 34.53736299860005], [-77.38375640253977, 34.5375822265093], [-77.38375663476438, 34.537705142822], [-77.38370441723342, 34.53780635947095], [-77.38388428708313, 34.53817639657615], [-77.38391692227982, 34.53840637178342], [-77.38391972675616, 34.53841611781889], [-77.38391769039731, 34.53842580887556], [-77.38410349218944, 34.53863444757346], [-77.38431770257344, 34.538762650121555], [-77.38464174017088, 34.53884325332601], [-77.38509908871475, 34.538927673959456], [-77.38564447422038, 34.53874985265425], [-77.38588952583746, 34.53869188312902], [-77.38615138001724, 34.53866581445394], [-77.38650601185971, 34.538777613551936], [-77.38667219155633, 34.538800271686945], [-77.38705998331359, 34.53894350034861], [-77.38706150672957, 34.53894392644446], [-77.38736357358344, 34.539143587152154], [-77.38733130284889, 34.53922090898181], [-77.38721013614882, 34.53951123096851], [-77.3871673067185, 34.53966156069561], [-77.38715776634629, 34.53983519232347], [-77.38711217421582, 34.54015917752228], [-77.38736209422962, 34.540578429541355], [-77.3873606094678, 34.540613009243444], [-77.38737322867587, 34.540637775397684], [-77.38741518685727, 34.540667494792544], [-77.38746734417568, 34.54084244658238], [-77.38752187827707, 34.54090445457065], [-77.38752886375197, 34.54100279175198], [-77.38755782851212, 34.54107422777745], [-77.38751630416063, 34.54115006956282], [-77.38747652432278, 34.54128386242961], [-77.3874453180854, 34.54133528849395], [-77.38739733768469, 34.541458834526544], [-77.38732931896023, 34.54155579509381], [-77.38730154712322, 34.54160085775589], [-77.38729942507004, 34.54165940672584], [-77.3870232615653, 34.54213065898459], [-77.38735150804624, 34.542559887730036], [-77.38735130889287, 34.54257301015015], [-77.38736108797235, 34.54257845750473], [-77.38737202180671, 34.54258121778967], [-77.38745031876616, 34.54260793557081], [-77.3881507672566, 34.54286516482931], [-77.3882063622891, 34.542904123070414], [-77.38831097249046, 34.542924253961715], [-77.3886784225279, 34.543205106348395], [-77.38879930299159, 34.54334348050363], [-77.38876239607015, 34.54344881794904], [-77.38892025567321, 34.5435600894735], [-77.389249359435, 34.543482720625114], [-77.38934702914834, 34.54348897788591], [-77.38933145140906, 34.54351155209185], [-77.38932020644135, 34.543517169222106], [-77.38898013428323, 34.543807062014096], [-77.38894413817883, 34.54383095584697], [-77.38891369593634, 34.54385116286451], [-77.38872820874533, 34.54397428554694], [-77.38866770627355, 34.54400340057606], [-77.38851590581567, 34.54408233103801], [-77.38841966015504, 34.54407257977384], [-77.3882760001011, 34.54405858052993], [-77.38812562611966, 34.543980278197786], [-77.38808110069016, 34.543964728731595], [-77.38802411911368, 34.543944960665385], [-77.38734924947785, 34.543590841118274], [-77.38729501820836, 34.54359423211623], [-77.38725977581646, 34.5435655416763], [-77.38657096663418, 34.54328618872134], [-77.38628038146818, 34.543396800724935], [-77.38540871315766, 34.54360177613883], [-77.38499341006468, 34.54360707113584], [-77.38459233869153, 34.543709267296265], [-77.38420476868231, 34.543761224841646], [-77.38386171530144, 34.54384281065217], [-77.38368751557488, 34.543911527116364], [-77.38375376063951, 34.54379031274553], [-77.3837897684239, 34.543576316830226], [-77.38367381932014, 34.54343904034253], [-77.38368923924655, 34.543262273610665], [-77.3837831966594, 34.54308760187291], [-77.38393586037694, 34.542885542661566], [-77.3840848409199, 34.54255444048077], [-77.38398799766502, 34.54241423603302], [-77.38389673572472, 34.542304536202955], [-77.38384670941619, 34.54223358855187], [-77.38381855646864, 34.54210317809206], [-77.38385190371636, 34.54200372955528], [-77.38390201212673, 34.5418757590118], [-77.38394000783617, 34.54184083258056], [-77.38399249141787, 34.541749172174164], [-77.38414361783573, 34.54156663870822], [-77.38425843096886, 34.541386050029374], [-77.38444623804614, 34.541147096690395], [-77.38462754027238, 34.541007188047736], [-77.38444922428604, 34.54092047233911], [-77.3843336899443, 34.540595702778795], [-77.38433450126445, 34.54055978558597], [-77.38430804379087, 34.54054451685949], [-77.38427833554988, 34.540505054042214], [-77.38414263800712, 34.540342622914636], [-77.38408152744236, 34.540233178916395], [-77.38397577222727, 34.5401218547465], [-77.38385985806885, 34.53991817223397], [-77.38351039559055, 34.53974453374742], [-77.38347244990779, 34.53972866492401], [-77.38342736889196, 34.53971127640501], [-77.38322507968866, 34.53955989965684], [-77.3832450360763, 34.53941800917701], [-77.38330920337685, 34.539238653758545], [-77.38298406739824, 34.53913276110267], [-77.38283394262201, 34.53881752593144], [-77.38279874399723, 34.53879023716714], [-77.382748468724, 34.53871871254596], [-77.38260621195695, 34.538453170379825], [-77.38196884890365, 34.5384758465501], [-77.38151948811858, 34.53851740321937], [-77.38121161211981, 34.53854345665401], [-77.38118321992943, 34.53849868796694], [-77.38065785726296, 34.538151978568884], [-77.38088862335594, 34.537926899205694], [-77.38085498773303, 34.5378477962847], [-77.38080626566136, 34.53780943364805], [-77.38067564973454, 34.5377421660349], [-77.38057145933433, 34.53777264064259], [-77.38041150617585, 34.53790688294771], [-77.38035899303763, 34.53795023981204], [-77.38030381269758, 34.53813913886828], [-77.3801677709248, 34.538222640204474], [-77.37960997341577, 34.53863205329822], [-77.37935352838714, 34.53867029516057], [-77.37882609712472, 34.53857739756693], [-77.37866304635548, 34.53854177568391], [-77.37803955012919, 34.53864058154331], [-77.37750162303217, 34.53876290992744], [-77.37725079737965, 34.53880095786131], [-77.3768720844191, 34.53895338642863], [-77.37682240554203, 34.53896971672441], [-77.37646062446325, 34.53902377942619], [-77.3761277518849, 34.53908802239703], [-77.37567334623648, 34.5391188621837], [-77.37503171690452, 34.539452699586526], [-77.37492917566087, 34.539498394008746], [-77.3748739892035, 34.53974580440284], [-77.3748121175172, 34.539938145509836], [-77.37475360695262, 34.539982441967794], [-77.37481048317883, 34.54001010797517], [-77.37486046981445, 34.540341207469055], [-77.37487340845726, 34.54044528905945], [-77.3748774987339, 34.540454242740424], [-77.37487799249769, 34.54046687943245], [-77.37495332325545, 34.54086760798253], [-77.37498819717514, 34.540927944514436], [-77.37513304702931, 34.541214364248404], [-77.37553360486011, 34.54133898995179], [-77.37557992468759, 34.54135886915882], [-77.37562232980028, 34.54136659497186], [-77.37568414694888, 34.54135568952248], [-77.37633369454794, 34.54127102870097], [-77.37640991196209, 34.54125904550586], [-77.37665175001813, 34.54142264793626], [-77.37670656028533, 34.5414715633046], [-77.37673521382617, 34.54161857990718], [-77.37664142641448, 34.54166896522575], [-77.37651819632995, 34.54176136737173], [-77.37639825614087, 34.541772807244044], [-77.3762809665421, 34.54179377450957], [-77.37600405659674, 34.54184448953827], [-77.37575987234614, 34.54188921013386], [-77.37560837798587, 34.54198130481802], [-77.37532258349817, 34.54217320186426], [-77.37489911128603, 34.54240975674823], [-77.37485720481251, 34.54244353056502], [-77.37456063417666, 34.542948195937164], [-77.3745604920094, 34.54329258971059], [-77.37456754671305, 34.543436858616076], [-77.37463149188127, 34.54352535336671], [-77.37451055600756, 34.543764992697675], [-77.37441385696947, 34.54394866669041], [-77.3743835069383, 34.54405736741197], [-77.37432818605448, 34.544172979804955], [-77.37429345508488, 34.54426407918899], [-77.3741316520851, 34.54447899531092], [-77.37415328266025, 34.54458459897472], [-77.37410350068802, 34.54472788116898], [-77.37420044356116, 34.544817310211904], [-77.37418938465275, 34.544850505102374], [-77.37416857496744, 34.544878053221126], [-77.37409510317678, 34.54492882006466], [-77.37404731942446, 34.54493322895666], [-77.3739712563368, 34.544923159665174], [-77.37385272830963, 34.544935102775476], [-77.37372431786123, 34.54493633916707], [-77.37358001764154, 34.54486375335344], [-77.3735088707839, 34.544858028091326], [-77.37319155349778, 34.54468227072402], [-77.37279558524543, 34.54491517848394], [-77.37304707492385, 34.5446353007228], [-77.37309402295195, 34.544566065322456], [-77.37297849573571, 34.54415552753535], [-77.37274796241456, 34.54398560460644], [-77.37267867600103, 34.543867338953994], [-77.37260769658192, 34.54371930797159], [-77.37278874499724, 34.54347191964241], [-77.3728076295015, 34.543433367786555], [-77.37314992041232, 34.543151510980266], [-77.37318953354495, 34.54312243687555], [-77.37323018024213, 34.542982481651535], [-77.37335997831451, 34.54270864848327], [-77.37338079028271, 34.54262858252887], [-77.3734070161427, 34.54252105893986], [-77.37324640857706, 34.54226835216407], [-77.37322121069695, 34.54217890674956], [-77.37321090863135, 34.54216340924788], [-77.3730024531633, 34.54186169880717], [-77.37284913019394, 34.5417258902078], [-77.37247871082234, 34.54150058464783], [-77.372104839513, 34.54157559621513], [-77.37207779329529, 34.541588259796704], [-77.37168748898762, 34.54176775056915], [-77.37148538534156, 34.54179678696046], [-77.37134305952398, 34.54215227211482], [-77.37123573527312, 34.542448046387186], [-77.37117293116194, 34.54263819849652], [-77.37087791988588, 34.54284104944507], [-77.37058511405641, 34.542726034600676], [-77.37009779998905, 34.54261967061343], [-77.37001506417117, 34.54262393806806], [-77.36940245743044, 34.542655682409496], [-77.36931226716008, 34.54263616225828], [-77.36921522445957, 34.54267927575142], [-77.36783373358948, 34.542877552410815], [-77.36773645596492, 34.542877273874936], [-77.36725056461368, 34.54271693982689], [-77.36665991983526, 34.542800477267875], [-77.36672394053599, 34.542608452242426], [-77.36617365448895, 34.54254754450637], [-77.36559193520651, 34.54277152441897], [-77.3656446706336, 34.54292911591537], [-77.36559527776963, 34.54326069264525], [-77.36480397984145, 34.543513556966914], [-77.36482884346549, 34.543860748433524], [-77.36456683773798, 34.544146412876756], [-77.3642450617214, 34.544235084507015], [-77.36410887340335, 34.54424859427316], [-77.36405676849573, 34.54414347787649], [-77.3639264258994, 34.543990732561376], [-77.36391954257613, 34.54390911867074], [-77.36384993460207, 34.543546125951295], [-77.3639276341536, 34.543500907671024], [-77.36387813692181, 34.54345768251977], [-77.36412075166407, 34.54318115879546], [-77.3641868675508, 34.54297391794442], [-77.36420357796646, 34.54286195956837], [-77.36427708241463, 34.542760492709526], [-77.3645996920952, 34.542707197103255], [-77.36520023108714, 34.54271289399374], [-77.36493688910443, 34.54237623127415], [-77.365001062701, 34.54212496753172], [-77.36500356358286, 34.54212180204525], [-77.36499931846151, 34.54211842740965], [-77.36476307830512, 34.54191161697109], [-77.36461858127497, 34.54187974569416], [-77.3645085144839, 34.54187964230234], [-77.36422603786833, 34.541878292844004], [-77.36389559464251, 34.54199614358741], [-77.36383048001436, 34.54200883092065], [-77.36378163269046, 34.5420227203541], [-77.36374024612846, 34.54205894662317], [-77.36333518069499, 34.54230223408721], [-77.36303796991848, 34.542330764324674], [-77.36269954556373, 34.54248970338245], [-77.36247852450532, 34.542585924812656], [-77.36224563193966, 34.54264488469409], [-77.36147806092987, 34.542860367947924], [-77.36145548843871, 34.542862756379265], [-77.36144027185242, 34.542870473663775], [-77.36143024940607, 34.54288129643334], [-77.36120023634729, 34.54307063863226], [-77.361084745441, 34.54319422534574], [-77.36126594909436, 34.54339460681903], [-77.36118784953486, 34.5435627776139], [-77.36143348915033, 34.54382486963321], [-77.36145378499005, 34.54384427160982], [-77.36145496156635, 34.5438570358072], [-77.36145027924096, 34.543868807255876], [-77.36143048180777, 34.543956392850944], [-77.36126682088596, 34.54427627934492], [-77.36135867902071, 34.544360550836394], [-77.36139872344297, 34.54436870967303], [-77.36142070598139, 34.54438392965718], [-77.36161558957701, 34.54456837663939], [-77.36166534679953, 34.54464968447516], [-77.36167505361095, 34.544804637543244], [-77.36174993032843, 34.545008061574], [-77.36175636788272, 34.54503775173419], [-77.36175778488112, 34.54506249063974], [-77.36197694779784, 34.545118512158794], [-77.36218867468769, 34.545136878524744], [-77.36224899547685, 34.545173490618026], [-77.36227513691811, 34.5452078643428], [-77.3625775192092, 34.5453008917615], [-77.36294845529672, 34.54512687585713], [-77.36297419054932, 34.545122384728835], [-77.36298383963536, 34.54511165933484], [-77.3629883550139, 34.5451051445299], [-77.36301255279844, 34.54507836331916], [-77.36326380228996, 34.54475113898187], [-77.36352342483897, 34.54469170403187], [-77.36376913565738, 34.544694969705795], [-77.36398705639814, 34.54482357054076], [-77.3640987593972, 34.544945211242734], [-77.36425298635426, 34.545105071965295], [-77.36449080235681, 34.54534808386416], [-77.3644529775588, 34.54538384192951], [-77.3640216754535, 34.54561657622904], [-77.3637496848128, 34.54554669160763], [-77.36342321089167, 34.54573310003906], [-77.36335197811712, 34.5457705218446], [-77.36331880272259, 34.54577134959907], [-77.36333210847661, 34.545802051544804], [-77.36325130338162, 34.54604657254684], [-77.36326023264412, 34.546239580569264], [-77.36326738775456, 34.546289081579935], [-77.36328751999127, 34.546318571802075], [-77.36324646052198, 34.54648124340366], [-77.36322943745066, 34.546539372583936], [-77.36314813216327, 34.54666545363151], [-77.3631414252173, 34.54667850626541], [-77.36295557376236, 34.54682364088187], [-77.36293495520805, 34.54683974226737], [-77.36259731886652, 34.54691052146064], [-77.36253772824581, 34.547042213210936], [-77.36243232903455, 34.54714382413037], [-77.36223162147382, 34.54722933415042], [-77.36213985766418, 34.54727275691223], [-77.36166616993447, 34.547743811724054], [-77.36173385238666, 34.54797720549563], [-77.36173288980464, 34.54798015468256], [-77.36173113403119, 34.54822410596552], [-77.3617481716776, 34.5484491357118], [-77.36175188065296, 34.54848612401088], [-77.3615973400754, 34.548733022308575], [-77.3617557281822, 34.54892618427319], [-77.36176161677344, 34.54898759064706], [-77.36176982422278, 34.549197832478086], [-77.36182070022817, 34.54935978070251], [-77.36202900619332, 34.549614405417174], [-77.36199511692689, 34.54965503683206], [-77.36203157769465, 34.54968295664239], [-77.36200910491688, 34.55010145239182], [-77.36200462567932, 34.550143316967365], [-77.36199664286637, 34.55019216401724], [-77.36188003153146, 34.55053538782035], [-77.36176154396506, 34.5506679719541], [-77.36184671874267, 34.5507883940452], [-77.36182428832265, 34.55100499837262], [-77.36181752723465, 34.55114955952118], [-77.36181598032823, 34.55129442473908], [-77.36179253853852, 34.55148628165152], [-77.36179061347251, 34.55164308451646], [-77.36176360154948, 34.55181683231456], [-77.36173568781388, 34.55195535378873], [-77.36175734890077, 34.55213752402936], [-77.36178273615636, 34.552285119767916], [-77.36179844263557, 34.55237643079132], [-77.36192759076452, 34.552545440181085], [-77.3619424150332, 34.55260052232909], [-77.36194646040897, 34.5526439857957], [-77.36201631146767, 34.55267838878781], [-77.36221360429991, 34.552684579353546], [-77.3624447486414, 34.55274966135378], [-77.36279803605164, 34.55283295487467], [-77.36321014186612, 34.552907601937065], [-77.3634179160652, 34.552978724210355], [-77.3635803889614, 34.55296011506816], [-77.36386841471175, 34.552992862921755], [-77.36401674107381, 34.55300830978364], [-77.36436328148022, 34.55306372242217], [-77.36457803556438, 34.55306629569067], [-77.36506376927336, 34.55307762114309], [-77.36514834514406, 34.55307224171745], [-77.3654945207592, 34.55306823821688], [-77.36578303621259, 34.553119889358946], [-77.36593245847635, 34.55312241737877], [-77.36625988494609, 34.55316273604117], [-77.36671891903451, 34.553069659061265], [-77.36686427838985, 34.55326713853463], [-77.3669993230598, 34.55334113280773], [-77.3674906388056, 34.55366368608113], [-77.36755581951526, 34.55370932902677], [-77.3678825841666, 34.553693781895454], [-77.36790277306883, 34.55370064083337], [-77.36814810786112, 34.5538033794806], [-77.36827622178284, 34.553794704010194], [-77.36840143607546, 34.553841082918304], [-77.36844530873046, 34.55386476230034], [-77.36847312711345, 34.55390030446296], [-77.36862341085914, 34.554021383930134], [-77.36863611182568, 34.55405609250842], [-77.36866997578275, 34.5541417772325], [-77.36878354786343, 34.55442287230789], [-77.36891475333553, 34.55456450957552], [-77.36906363195163, 34.55473225600134], [-77.36932581467838, 34.55491120098606], [-77.36945745727098, 34.55492442687235], [-77.36978109688185, 34.55512827531699], [-77.36979542382083, 34.55518638785293], [-77.36985123354404, 34.555241980247125], [-77.36993744244856, 34.555198648526], [-77.37039143624558, 34.55530719132704], [-77.37063894253708, 34.55550461416257], [-77.37090804064769, 34.55525584195804], [-77.37119964078883, 34.55516882568788], [-77.37142691103585, 34.5551080847259], [-77.37162030200105, 34.555071709649255], [-77.37205896248412, 34.55480007786857], [-77.3721862612092, 34.55475091415642], [-77.37221486119988, 34.55473986850149], [-77.37233551202993, 34.55463023170658], [-77.37323127554103, 34.55463115037297], [-77.37372428061278, 34.55463149720856], [-77.37379050586178, 34.554655556075744], [-77.37440758565025, 34.5553107616381], [-77.37449207266346, 34.5553912596502], [-77.3743487084676, 34.555743807968746], [-77.37446301829905, 34.55585115025686], [-77.37457783097943, 34.55603324504015], [-77.37461551393606, 34.556089283742416], [-77.37460836554503, 34.55613095029123], [-77.37463606385442, 34.55618978159492], [-77.37465461864215, 34.55623042508303], [-77.37464869696265, 34.55626095305039], [-77.37466193138071, 34.55633551155609], [-77.37458856792884, 34.55654659958041], [-77.374586971265, 34.55655859481156], [-77.37457764121436, 34.55657803893222], [-77.37435630361949, 34.55677791303362], [-77.37411041555056, 34.55705183075173], [-77.37423072321623, 34.55740808982136], [-77.37428204785583, 34.55755799847468], [-77.37440888455933, 34.5578579423818], [-77.37448101381362, 34.55795117754988], [-77.37457711213463, 34.55810028950246], [-77.3747213758316, 34.5582374712375], [-77.37457700922532, 34.55839691967543], [-77.37431848544988, 34.55829553068882], [-77.37422810747245, 34.55826008583108], [-77.37418314548096, 34.55823524174909], [-77.37407038210978, 34.558209738766124], [-77.37378926379408, 34.55812812054965], [-77.37354860598963, 34.55824124233277], [-77.37325200825654, 34.558024650017714], [-77.37300152131976, 34.55786433386568], [-77.37282774782645, 34.557898506502355], [-77.37289190730239, 34.55807653914674], [-77.37265414547196, 34.55858580792997], [-77.37260835620111, 34.55896651698559], [-77.37244317423631, 34.559238210435396], [-77.37238138333662, 34.55966687349011], [-77.3723101853827, 34.559858600901], [-77.37229531229502, 34.55994956112753], [-77.37237059993109, 34.56052882387898], [-77.37252314077713, 34.56067703658576], [-77.37269047516874, 34.5609869265802], [-77.37300022908441, 34.56140639129814], [-77.37303446126799, 34.561452482056055], [-77.37333461215192, 34.56189778155258], [-77.3737879399554, 34.56185599276167], [-77.3739403135499, 34.562006798632225], [-77.37418182905729, 34.56199305885749], [-77.37426265384939, 34.562037501853766], [-77.37437877478193, 34.56205957138136], [-77.37448743831753, 34.56209223482074], [-77.37455160084336, 34.56210899014015], [-77.37457572128663, 34.56212471599838], [-77.37461764809076, 34.562118654944975], [-77.37487701365296, 34.56213593887068], [-77.374969627906, 34.56221751608474], [-77.37507965970906, 34.562125444403044], [-77.37523103706712, 34.56212794205177], [-77.37536359469804, 34.562132839184194], [-77.37554298163008, 34.56213345605081], [-77.37557395172124, 34.56213351252642], [-77.37575751555566, 34.56218478914838], [-77.37587465110236, 34.56219064382274], [-77.3761514644759, 34.562151691739835], [-77.37625693757336, 34.56214812320395], [-77.37634843563686, 34.562144881627326], [-77.37646294199033, 34.562143231816094], [-77.37654540757316, 34.56213554113025], [-77.37661682523606, 34.56213295886196], [-77.37693933828992, 34.56215784414964], [-77.37696465838121, 34.56215979778465], [-77.37720165570913, 34.56226745571271], [-77.37733324681238, 34.562252002903676], [-77.37742500152643, 34.56219231842416], [-77.3776048777616, 34.56206752549103], [-77.37772726561224, 34.56198882114909], [-77.37805797332535, 34.56200222060386], [-77.37810429070593, 34.562013763124455], [-77.37815128958319, 34.56202120733334], [-77.37851516059449, 34.56191709200938], [-77.3790757416833, 34.5614309584924], [-77.37918371933426, 34.56128660765661], [-77.37930321511047, 34.56128519827075], [-77.37943264680221, 34.56124003096691], [-77.3796972050264, 34.561085133357025], [-77.37986564876904, 34.561074071989886], [-77.37991061364289, 34.56108061421784], [-77.38009109951712, 34.56122036119749], [-77.380122522377, 34.561246195149735], [-77.3801631171749, 34.56127421737802], [-77.38025440412872, 34.56143712538184], [-77.38029987895625, 34.56167906723328], [-77.38009085095818, 34.56211312934704], [-77.3800794815904, 34.56212315167937], [-77.38006591009777, 34.56213735827092], [-77.38008289358737, 34.562143476986485], [-77.38009084140464, 34.562147489223214], [-77.38012293358022, 34.562163730147645], [-77.38087861328792, 34.562528755319065], [-77.38093716227795, 34.562797715017396], [-77.38096745213687, 34.562856527204666], [-77.38127241185057, 34.56306083370139], [-77.3813606629027, 34.563129276426395], [-77.38148190993735, 34.56320692863986], [-77.38158313729733, 34.56328195847172], [-77.38166627772105, 34.56335238364728], [-77.38180179248906, 34.563439305521946], [-77.38202799390191, 34.56355276852], [-77.3821358153685, 34.563880174722534], [-77.38245398335275, 34.56407379900684], [-77.38254940520174, 34.564223849984074], [-77.38278569164314, 34.56429266421043], [-77.38324168392224, 34.56487366652765], [-77.38341463937743, 34.5648647240805], [-77.38349198491557, 34.565039967805546], [-77.38353128461368, 34.5653465273609], [-77.38355069636994, 34.56588063480022], [-77.38375087427569, 34.566151821262736], [-77.38402921675167, 34.56647602254336], [-77.38409572266781, 34.566579488712186], [-77.38409336796275, 34.56665152705477], [-77.38402912904262, 34.5668613716705], [-77.38391397511828, 34.56740255615716], [-77.38382508681697, 34.567539338614075], [-77.38383053070665, 34.56775235910762], [-77.38402891724411, 34.567793863510786], [-77.38427921599467, 34.568322996284145], [-77.38438013794706, 34.56877883577914], [-77.38481657758787, 34.569018168840785], [-77.38484551272535, 34.56905928912936], [-77.3849598038186, 34.56907400228119], [-77.38545966368372, 34.56915799975064], [-77.38560447453904, 34.56921286377045], [-77.38584493773712, 34.569205515442334], [-77.38599844310997, 34.56921684054234], [-77.38622783092688, 34.5690685638411], [-77.38639245554238, 34.56899886136379], [-77.38646733586792, 34.56893731653149], [-77.38658103204894, 34.56884023905137], [-77.3867864783262, 34.56871616106294], [-77.38701726258536, 34.568601454003826], [-77.38718048537001, 34.568503023521956], [-77.38756048449338, 34.56828952444912], [-77.38796848196603, 34.56813943083534], [-77.3881617002587, 34.5679713612386], [-77.38836248854706, 34.56789475197765], [-77.38845764949735, 34.567823026434006], [-77.38867400993075, 34.567689283904315], [-77.38873539675706, 34.56765769734191], [-77.38875649571759, 34.5676330646344], [-77.3890464246839, 34.56721100668372], [-77.38909557612665, 34.56714468568086], [-77.38930767733831, 34.567004004219996], [-77.38954450555141, 34.56709161660883], [-77.3898618271786, 34.566668837635646], [-77.38972580367962, 34.56649317329115], [-77.3895758169876, 34.566285519112895], [-77.3895446421309, 34.566245642874385], [-77.3893950929002, 34.56604822032668], [-77.38934770765029, 34.565984703348875], [-77.38932061915729, 34.56589775576637], [-77.38934773274019, 34.56583210650976], [-77.38941990295581, 34.56574891641955], [-77.38954473830515, 34.56565216128985], [-77.38979785023821, 34.56555615946491], [-77.39005681492864, 34.565494286145174], [-77.39033271391729, 34.565181554583276], [-77.3906499112407, 34.56519874698146], [-77.39057470876676, 34.56486774084733], [-77.39112072442632, 34.56440594185926], [-77.39134926776255, 34.56415315113602], [-77.39170428963651, 34.563855670193206], [-77.39179573637445, 34.5637207244264], [-77.3918901784353, 34.5634042866035], [-77.39190875728701, 34.563357677063216], [-77.39200994728051, 34.56338701006221], [-77.39225855540866, 34.56339871716214], [-77.39230268800071, 34.56343271727144], [-77.39234575969732, 34.56355085442024], [-77.39232116966608, 34.56374672397082], [-77.39231852456756, 34.56376706838014], [-77.39230262189258, 34.56393892083623], [-77.39226722910537, 34.56416092509946], [-77.39223422684437, 34.56420379876046], [-77.39217104326495, 34.564354661443275], [-77.39198220373456, 34.564664722914806], [-77.39201333216256, 34.56477314244442], [-77.39190851148143, 34.56517997476842], [-77.3917519820066, 34.56554707163604], [-77.39167798705938, 34.56580609484182], [-77.39153716052084, 34.56602710967627], [-77.39125676448846, 34.56646764254023], [-77.39126033899548, 34.566617932702776], [-77.39114420159464, 34.567307269058595], [-77.39113500064697, 34.56733434551046], [-77.39112927076494, 34.56734483596903], [-77.39112030025521, 34.56736778606785], [-77.39092628318971, 34.56800459597124], [-77.39088243507119, 34.5682199136486], [-77.39084601453101, 34.568520583249935], [-77.39085361764134, 34.56864863974231], [-77.39112009980332, 34.568783315136415], [-77.39128490001701, 34.56883339441204], [-77.39139091446796, 34.56886300648035], [-77.39151405040558, 34.568898439765064], [-77.39176607196018, 34.56894160074202], [-77.39187256826352, 34.56896443291749], [-77.39190800612752, 34.56898241602045], [-77.3920113023953, 34.569017553394744], [-77.39230195613231, 34.56911727579936], [-77.39243235677405, 34.569129532847086], [-77.39256031941062, 34.56910546698491], [-77.39269593239237, 34.56904669966142], [-77.39290175586581, 34.568999589754554], [-77.39298438182242, 34.56876586558833], [-77.39299264116161, 34.56865981117156], [-77.39298146790692, 34.56845864511738], [-77.39290751222907, 34.568352383265704], [-77.39269604892206, 34.56809440107084], [-77.39263512414749, 34.56803277045712], [-77.39260293603012, 34.56797174735054], [-77.3926406402884, 34.567906570151166], [-77.39269608788669, 34.5677774101067], [-77.3929378561991, 34.567334789107306], [-77.39300892710331, 34.56706404178079], [-77.39304022826772, 34.5670057357048], [-77.39309014748557, 34.566947230113726], [-77.39313284945878, 34.56700013855632], [-77.39316876942631, 34.567040983997586], [-77.3933001343844, 34.56722026622466], [-77.3933643921308, 34.56730836507635], [-77.39344667321829, 34.56742546604222], [-77.39346419865197, 34.56744432963792], [-77.39348404622373, 34.56746088495013], [-77.39367763716757, 34.56760806720102], [-77.39387799291987, 34.56757937521763], [-77.39412573134902, 34.5675944952212], [-77.39427195008837, 34.567607280783974], [-77.39442870495112, 34.56753944128895], [-77.39466592458946, 34.567462921134585], [-77.39483707776063, 34.567409330529145], [-77.39497263880065, 34.5672993677217], [-77.3950599059546, 34.567231104722836], [-77.39510094486934, 34.56723104370523], [-77.39537633871232, 34.56723063407664], [-77.39545386209399, 34.56725407735834], [-77.39555746080345, 34.567232600018556], [-77.39584782216937, 34.56723257484768], [-77.3960085537221, 34.567229092957135], [-77.39607269325555, 34.56722884436613], [-77.39624177375029, 34.567312676251404], [-77.39632512978565, 34.5674347684532], [-77.39624175845196, 34.567502130772], [-77.3960643118719, 34.56766361993792], [-77.39604476413396, 34.567678844710954], [-77.39603729967126, 34.56768053823407], [-77.395847773561, 34.56780203631722], [-77.39548947454233, 34.567941459661185], [-77.39545379999937, 34.56794379312253], [-77.39541614444917, 34.56794990467411], [-77.3954101106549, 34.567991356075375], [-77.39538435225722, 34.56806990333428], [-77.39518908091125, 34.568447816061195], [-77.39545372211687, 34.56881440932711], [-77.395459128938, 34.56882760012217], [-77.39545912849368, 34.56883342835737], [-77.39546378080821, 34.56884360004768], [-77.39559322943829, 34.56923865336013], [-77.3956793663501, 34.56940756913351], [-77.3956933867424, 34.56948254922408], [-77.39557870471714, 34.56966532098026], [-77.39552425602767, 34.56974927831247], [-77.39545362795411, 34.56987549917222], [-77.39532256482042, 34.57012684624759], [-77.39528636133963, 34.57037643060076], [-77.39529348226272, 34.570728115383055], [-77.39553817305989, 34.570944884231544], [-77.39566236490715, 34.57112647337972], [-77.39584747569236, 34.571354503244706], [-77.39605260799156, 34.57149873412584], [-77.39641263961504, 34.57166786745452], [-77.39652068494806, 34.571775901642866], [-77.3966353524508, 34.57242891473383], [-77.39665612951363, 34.57245949048631], [-77.396674353136, 34.572479254001465], [-77.3966453907672, 34.57249425542694], [-77.39663534727225, 34.57250035730287], [-77.39661907570665, 34.572504763618504], [-77.39584735898053, 34.57277649833414], [-77.39563284910244, 34.572860669656386], [-77.3953566382585, 34.5729897073065], [-77.39532264123807, 34.573239677458105], [-77.39523883105574, 34.57353550139368], [-77.39521304178191, 34.57370489075866], [-77.39523802200142, 34.574192126341345], [-77.39523677279475, 34.57438494200724], [-77.39538594986149, 34.574715514109386], [-77.39541330765486, 34.57478404655844], [-77.39541369532671, 34.57482656026344], [-77.395618422605, 34.57517902732976], [-77.39565479472577, 34.57538105984936], [-77.39584713931308, 34.575503584494236], [-77.39642615729072, 34.57591164186627], [-77.3965118697717, 34.5760320634646], [-77.39646128907445, 34.57675571831327], [-77.39658551363618, 34.57753362393245], [-77.39659098304678, 34.57758615261308], [-77.39661826153197, 34.57760024117205], [-77.39663498776038, 34.57760346745552], [-77.39666990373219, 34.577612391948435], [-77.39702898517672, 34.5777519061696], [-77.39713673388768, 34.577815876961914], [-77.39732829721149, 34.577802312661305], [-77.39742298953755, 34.57780496307582], [-77.39756288978054, 34.57771975685062], [-77.39764375373782, 34.577672146841294], [-77.39781701360671, 34.577503742846424], [-77.39798448887743, 34.577385103308536], [-77.39802986054701, 34.57718332499476], [-77.39821104809315, 34.57693844201498], [-77.39860067591215, 34.576876341708406], [-77.39860505444332, 34.576872813812884], [-77.39860725302658, 34.57687304383063], [-77.39899905425058, 34.576952544935835], [-77.39914649331394, 34.57695174625021], [-77.3991960557175, 34.57695780848195], [-77.39924606805312, 34.576936894555985], [-77.39939305981925, 34.57689073461937], [-77.39950135204936, 34.57685835668208], [-77.39978706760498, 34.576738982971435], [-77.40003736564864, 34.57650945581582], [-77.40018107815139, 34.57642524150477], [-77.4004533201962, 34.576310929552534], [-77.4005750827035, 34.57624846601422], [-77.4006350455126, 34.57621811158924], [-77.40071073456286, 34.5761425738117], [-77.40114868492986, 34.57584833216468], [-77.40136308924218, 34.575698471073], [-77.4014049512489, 34.57566292744954], [-77.40150578801625, 34.57560326486294], [-77.40168362191939, 34.57549843271418], [-77.4017570883079, 34.57545507920405], [-77.4019666754643, 34.57531089774322], [-77.40215108501856, 34.5752163261076], [-77.4022244907857, 34.57515407154503], [-77.40232519435426, 34.57506043473552], [-77.40254507938461, 34.57478289241679], [-77.40268091377911, 34.57473089869039], [-77.4029390698122, 34.57436274752591], [-77.40320616612624, 34.57408413581797], [-77.4034259136065, 34.573727912297], [-77.40349613083936, 34.573441967470764], [-77.40346273704185, 34.5731979523263], [-77.4033750103323, 34.57283126065186], [-77.40372702893828, 34.57277510843985], [-77.40374834724905, 34.57275512712754], [-77.40403145226708, 34.57278780436912], [-77.40412101205555, 34.57279934159765], [-77.4042615054714, 34.572809487017295], [-77.40451499519466, 34.572816391975465], [-77.40500202043685, 34.57245091389094], [-77.40530294398796, 34.57229273114061], [-77.40542407946413, 34.57219624074986], [-77.40592907447878, 34.57199279648623], [-77.40609088949434, 34.57193545100476], [-77.40612147214787, 34.571932064734256], [-77.40675074819764, 34.571736143714205], [-77.40687883234247, 34.57166307674098], [-77.40702620791366, 34.57167559150248], [-77.4072728073053, 34.571629790041115], [-77.40761060768648, 34.57168950210463], [-77.40766678639592, 34.571672113605935], [-77.40770214895753, 34.57169872203234], [-77.4078100886731, 34.57172124609799], [-77.40832041390769, 34.571792336234736], [-77.4084547544467, 34.57188553258471], [-77.40868291972188, 34.5718411213165], [-77.40889517820781, 34.57193911399131], [-77.4089915960649, 34.57197524286222], [-77.40915342069366, 34.572048115867815], [-77.40924272293023, 34.57205775563854], [-77.40941923356466, 34.57210371574804], [-77.40944945528085, 34.57211092989512], [-77.40963671781466, 34.572257889197864], [-77.4097287983959, 34.57229338153542], [-77.40989577974528, 34.57241468160524], [-77.41003071936177, 34.57251210102362], [-77.41016114634745, 34.57237152528984], [-77.41042467864244, 34.57228746665111], [-77.41054689076363, 34.57217525634228], [-77.41064717816357, 34.57197600835312], [-77.41081858133147, 34.57150199008345], [-77.4109368801908, 34.57139728251947], [-77.41139148470677, 34.571204137471206], [-77.41153889425243, 34.57111000357249], [-77.41160648820777, 34.5710920755254], [-77.41166945194732, 34.571096143096085], [-77.4122238376612, 34.570900113311126], [-77.4123876553839, 34.570635702943505], [-77.41239191365425, 34.57063242849446], [-77.41239438029294, 34.57062258186796], [-77.41249905308624, 34.57030787930462], [-77.41259783780824, 34.57018076840402], [-77.41249736528448, 34.57008422389879], [-77.41239431301129, 34.570037516973144], [-77.41230274468549, 34.56989746951726], [-77.41210078313756, 34.56982796880657], [-77.41205983023909, 34.56976974302171], [-77.41192264628184, 34.5697699887179], [-77.41160635319035, 34.56981394146008], [-77.41142472812669, 34.56969674039015], [-77.41111051917453, 34.56954638843133], [-77.41094322086636, 34.569436007077655], [-77.41081837789685, 34.569388015285654], [-77.41065412838822, 34.56918771199486], [-77.41061784756995, 34.568984443179644], [-77.41057372035168, 34.56877474245236], [-77.41045419414199, 34.56839961491092], [-77.41045392817423, 34.568367460883685], [-77.41081824124791, 34.56794839854082], [-77.41086755731085, 34.56793630295201], [-77.41156189549747, 34.56783057610079], [-77.41160614486978, 34.567820375866354], [-77.41163145473176, 34.56780012084989], [-77.41170636646535, 34.56776202332352], [-77.41200007716661, 34.56758557685615], [-77.41222365722516, 34.56768732028538], [-77.41229853015325, 34.567779458046076], [-77.41239407285198, 34.567931133747365], [-77.4126212688765, 34.56823423994311], [-77.4128943318592, 34.56843962528487], [-77.41318206863549, 34.56857915308966], [-77.413563082067, 34.56875364728742], [-77.41358713645431, 34.568752204900775], [-77.41396999042595, 34.56857793576867], [-77.41418129229018, 34.56887523789081], [-77.41453404173376, 34.568810666625296], [-77.414574149918, 34.568395033037305], [-77.41429422264578, 34.568237445994484], [-77.41460838689264, 34.56803100594905], [-77.41475781594224, 34.56790034087292], [-77.41496855890631, 34.5675180691409], [-77.4150940460406, 34.56727275977442], [-77.41515166916375, 34.567186631949646], [-77.41532957425267, 34.56700592242506], [-77.41539562652937, 34.5668046168082], [-77.41554553101761, 34.56657306118043], [-77.4156304113011, 34.566437623310115], [-77.41576029952145, 34.566327359367534], [-77.41593941952087, 34.5661684046156], [-77.41617590598128, 34.56609763054832], [-77.4163333415175, 34.56599793605031], [-77.41664292946854, 34.56568441496624], [-77.4167272196344, 34.56556984999085], [-77.41682252961198, 34.565427500756186], [-77.41702559929595, 34.56529541847099], [-77.4170906703981, 34.56525320865746], [-77.41712110792996, 34.56522594672907], [-77.41742319442953, 34.56481339847352], [-77.41735714541815, 34.56465285672401], [-77.4172913962945, 34.56440785459846], [-77.41751487263087, 34.564182759072224], [-77.4176994035815, 34.56434891268349], [-77.41763700403189, 34.564650966004734], [-77.41790891321969, 34.56475479028006], [-77.41804238808137, 34.56500472150968], [-77.41830290314542, 34.56501854541072], [-77.41866553050653, 34.56502475316165], [-77.41869684720656, 34.565023268892986], [-77.41872924755228, 34.56501437830386], [-77.41909076515999, 34.564891640814636], [-77.41932239631102, 34.56478869017948], [-77.41948005582468, 34.56409650372917], [-77.41947963725123, 34.56409171832006], [-77.41947860811463, 34.56408546307778], [-77.41948454626227, 34.56406732165264], [-77.41971019443884, 34.56345257051875], [-77.41974976498389, 34.56320352012456], [-77.41964987681561, 34.56303954098246], [-77.41948428055308, 34.56270372017899], [-77.41939281948345, 34.562405922797765], [-77.41940692128045, 34.56232058640696], [-77.41946942537206, 34.56197027017388], [-77.41948413571016, 34.561957877548906], [-77.4195046859502, 34.56196517562121], [-77.41978012586495, 34.56203095446082], [-77.41987809915122, 34.56213369045657], [-77.42022415747984, 34.56228580717024], [-77.42022004897785, 34.562342470641944], [-77.42027211059536, 34.56253723758398], [-77.420520439599, 34.563092167445184], [-77.42087320981483, 34.563242651543405], [-77.4210601222569, 34.56323827598405], [-77.42129749754712, 34.56323573341777], [-77.42162068791046, 34.56317816175547], [-77.42184795872981, 34.5630951533057], [-77.42199796676282, 34.56304036377344], [-77.42218257531766, 34.56285199394836], [-77.42224182285742, 34.56279082618201], [-77.42242127227425, 34.56258637830265], [-77.42263566750563, 34.56241491191607], [-77.42266105804606, 34.5623856375517], [-77.42271954512154, 34.56234981176802], [-77.42294323454779, 34.56222445040644], [-77.42313787455875, 34.5621725923277], [-77.42316256442402, 34.56228579036374], [-77.42323154547515, 34.56248276188516], [-77.42323313051739, 34.56249494457088], [-77.42307271111731, 34.562723362018005], [-77.4230296771079, 34.562750929686075], [-77.42277640629669, 34.562917745422574], [-77.42263584160806, 34.56316463279311], [-77.42261498642156, 34.56319160950584], [-77.42260702582078, 34.56321524462219], [-77.42243892674352, 34.563390314146574], [-77.4224080909334, 34.56342304193977], [-77.42232720762522, 34.56346797319812], [-77.4222419881783, 34.56351666281421], [-77.42208802226884, 34.563548876076176], [-77.42199436797863, 34.5635706762406], [-77.4218480550719, 34.56352685459518], [-77.42159613716272, 34.56351439102544], [-77.4214541379456, 34.56361099501481], [-77.42138576352171, 34.56374258027013], [-77.42125565744033, 34.563835105133634], [-77.42113600868316, 34.56393402348581], [-77.42106028850137, 34.564015159120295], [-77.42067359065175, 34.56435152245781], [-77.42066642358104, 34.56436382293114], [-77.42054569761011, 34.564656676032754], [-77.42034493905848, 34.56481586647072], [-77.4202999749605, 34.564851884652526], [-77.42027258512346, 34.56485712432255], [-77.420232314912, 34.56487554576019], [-77.41998485418264, 34.56498233879833], [-77.41987867391454, 34.565011012629526], [-77.4196465115003, 34.565091124296984], [-77.41948476322408, 34.56517529153185], [-77.41918280506063, 34.56540835774162], [-77.41921067382282, 34.56553343306815], [-77.41934196140902, 34.56580994794009], [-77.41936143619196, 34.56594021387821], [-77.41948492167211, 34.565981570194495], [-77.41955612042577, 34.56612688650677], [-77.41961888916134, 34.566194522845464], [-77.41968194684662, 34.56623965096449], [-77.4198223350475, 34.56622611269849], [-77.41987892337046, 34.566250388041524], [-77.41996303996186, 34.56623546090775], [-77.4201303470967, 34.566120626874955], [-77.42023058686152, 34.56606061245229], [-77.42027281864239, 34.56599151722976], [-77.42047845305152, 34.565867400120325], [-77.42083296684785, 34.5658399461209], [-77.42106070336959, 34.56594500737559], [-77.42142365471884, 34.565967167074405], [-77.42184859549393, 34.5659368762213], [-77.42215516947817, 34.5659222209325], [-77.42224253546223, 34.56590728479488], [-77.42231065121564, 34.56587900983101], [-77.4226363843942, 34.56549042604593], [-77.42272054051237, 34.565412494129276], [-77.42285209501438, 34.565302761773836], [-77.42283875065662, 34.56508648009031], [-77.42288801997303, 34.56487298428112], [-77.42283522621912, 34.56467054411953], [-77.42303016094775, 34.56478667261068], [-77.42306934777226, 34.56480455006723], [-77.42342415872915, 34.56501930216973], [-77.42356230572761, 34.565051243933056], [-77.42409977451496, 34.56512245681233], [-77.42417589048966, 34.565150457205995], [-77.42421207610589, 34.565150377353255], [-77.42424785509105, 34.565139621720085], [-77.42431249406857, 34.56509171488671], [-77.42477912118963, 34.56478635937558], [-77.42499981951893, 34.56460937716881], [-77.42537308684003, 34.56453610580453], [-77.42539373726298, 34.56452615567539], [-77.42540265344415, 34.564519184691655], [-77.42571091101874, 34.564547764296975], [-77.42578767726314, 34.56452813102099], [-77.42586964639604, 34.56453042317275], [-77.42606854949042, 34.56453519503971], [-77.42618163919616, 34.56460973676282], [-77.42646610241204, 34.564780456364225], [-77.42647004046592, 34.56489372158663], [-77.4265756530848, 34.56487387303611], [-77.42672889949162, 34.56490762972183], [-77.42706770484352, 34.564693499768936], [-77.42732486746314, 34.56461473417056], [-77.4273634225954, 34.56448740597817], [-77.42761225799843, 34.56403394815128], [-77.42809762452711, 34.56369544916898], [-77.4276128149705, 34.56349641955576], [-77.42756847704553, 34.563144191148], [-77.42799912976619, 34.56302404928928], [-77.42815101848134, 34.56354559610623], [-77.4281976400135, 34.563680991573435], [-77.4283177954249, 34.56433329965652], [-77.42851749050502, 34.56448393370583], [-77.42879661744949, 34.56459727250859], [-77.42893923498353, 34.56467271689018], [-77.42927044985714, 34.564867344288956], [-77.4296587361222, 34.56516813227768], [-77.42994326914966, 34.565743576406426], [-77.43051531421001, 34.565652835563526], [-77.43080141655348, 34.5658521185655], [-77.4310873103511, 34.56604361339934], [-77.43130348793878, 34.566498510372455], [-77.43142306159787, 34.56661142553138], [-77.4313179031159, 34.567460626237015], [-77.43132044039127, 34.56749335123595], [-77.43154128785726, 34.568292696065306], [-77.43167901121652, 34.56871805339978], [-77.43180300323532, 34.569104039830336], [-77.43187462936362, 34.56932835563727], [-77.43200334206166, 34.569828117722956], [-77.43202588372004, 34.56992099882022], [-77.43176473306477, 34.57002997199364], [-77.43169865789599, 34.57004278725548], [-77.43137370787173, 34.570089649726384], [-77.43130471313702, 34.570100100340596], [-77.43052419751001, 34.57014607489804], [-77.43051679979024, 34.57014868218232], [-77.43050534098082, 34.57015317835384], [-77.43012287655706, 34.57027644963714], [-77.4298582008629, 34.57023437959941], [-77.42979037527162, 34.5701779075127], [-77.42981504638726, 34.569484545080265], [-77.42987797343167, 34.56938234097369], [-77.42979967812947, 34.56931705679524], [-77.42972859525345, 34.569297723047065], [-77.42959342371665, 34.56899888590102], [-77.42951712004066, 34.56881307616144], [-77.42950864694768, 34.56877427307872], [-77.429547059177, 34.5685809984448], [-77.42957328030565, 34.568410123540524], [-77.42972822546166, 34.568147752301265], [-77.42998023082744, 34.5679408718481], [-77.43028362621229, 34.56762533738488], [-77.43009608328131, 34.56725567135692], [-77.42972794890098, 34.567285828678], [-77.42903765112987, 34.566956278541795], [-77.42898166186944, 34.566919396080685], [-77.42893992447856, 34.56689712405714], [-77.42888679146189, 34.56692081297483], [-77.42832880872695, 34.5668682010389], [-77.42815201428095, 34.566863787991736], [-77.42776517267883, 34.56672333503784], [-77.42775661220533, 34.566718384735694], [-77.42775546057062, 34.56671703272582], [-77.42769508486215, 34.56665794782602], [-77.42756603218895, 34.56653211938759], [-77.42756584916167, 34.56652690883764], [-77.42753793151692, 34.56632388661554], [-77.42770226805882, 34.56593538307652], [-77.4277202075892, 34.565832478200605], [-77.42789062428935, 34.56542372743961], [-77.42770508243807, 34.56508249390303], [-77.42736351857485, 34.56481807433633], [-77.42712364309682, 34.565275912210964], [-77.42679436973356, 34.56534659736014], [-77.42657581288593, 34.565442165068646], [-77.42641127848987, 34.565460217786416], [-77.42614253666267, 34.56567639930208], [-77.42587919579631, 34.56581272198691], [-77.42578805792266, 34.56592848444515], [-77.42524122914483, 34.56639615931446], [-77.42500031513995, 34.566496599076125], [-77.4249040143415, 34.56660075714761], [-77.42480817309493, 34.56671842838608], [-77.42460647891002, 34.56693226194749], [-77.42446383429387, 34.56703901246202], [-77.42440955073067, 34.5671167916532], [-77.42433628968332, 34.567077865810994], [-77.42421252279358, 34.56691236808458], [-77.42419308571627, 34.56682824589931], [-77.42415537682238, 34.56681276983066], [-77.42385091131027, 34.56639718652603], [-77.42342452808333, 34.56653373404705], [-77.42319043512444, 34.566699873682744], [-77.42282351544296, 34.566803885951565], [-77.42263670879927, 34.56687253730622], [-77.42250518712173, 34.566909478263625], [-77.42184911608184, 34.56714603903203], [-77.42184892278767, 34.56714612581148], [-77.42184886820206, 34.56714620161716], [-77.42184875778926, 34.567146209804214], [-77.42145496482489, 34.56736853689755], [-77.42121590175714, 34.56740445956021], [-77.42106112584459, 34.56789740740917], [-77.42090724546402, 34.567447871128415], [-77.42066708584989, 34.56750330473591], [-77.42038952817626, 34.56748238596488], [-77.42027312904783, 34.56749227207717], [-77.42022012844413, 34.567438519296985], [-77.41993410665208, 34.56742273426701], [-77.4195761548059, 34.56737642055026], [-77.4194851980185, 34.567382001460274], [-77.41940677292648, 34.56741439301899], [-77.41919108141798, 34.56753008450775], [-77.41909128352228, 34.567587484847074], [-77.41880978237896, 34.567706343855974], [-77.41869739002837, 34.56791469332335], [-77.41859692577884, 34.56793222861366], [-77.41846866994335, 34.56788094607575], [-77.41830340014525, 34.56773524996668], [-77.41811209619394, 34.56768596402958], [-77.41800857451126, 34.56759405397476], [-77.41790941143864, 34.56755302346356], [-77.41748679720816, 34.56777629504615], [-77.41717912692151, 34.56788278641478], [-77.41716636807153, 34.56824716736789], [-77.41718241489325, 34.56860397583424], [-77.41715968672878, 34.568672715936366], [-77.41714807208915, 34.56870281974866], [-77.41712170665832, 34.56876384769048], [-77.41707859630532, 34.56885024439706], [-77.41701134367491, 34.56890643637692], [-77.41695070255956, 34.56894315917126], [-77.4168018560807, 34.56906917257614], [-77.41672779937245, 34.56908861133657], [-77.41667754845686, 34.5691127841142], [-77.41633388281797, 34.569374724599484], [-77.41618794298434, 34.569504945564894], [-77.41614382281745, 34.569668623456195], [-77.41613743942565, 34.56988134265372], [-77.41599472943157, 34.57017367669074], [-77.41594005073358, 34.57021594773007], [-77.41574680088085, 34.5703668439245], [-77.41573598311892, 34.57037206720597], [-77.4155461066602, 34.570374298672675], [-77.41530291045326, 34.57037715616768], [-77.41515216196345, 34.570538986755196], [-77.41506889899681, 34.5706730503789], [-77.41510504892771, 34.57104155733021], [-77.4151185283434, 34.571126805122724], [-77.41515224948093, 34.57112857756239], [-77.41546456379314, 34.57137702303857], [-77.41554627016343, 34.57144145600948], [-77.41555184741095, 34.57144645028313], [-77.41555833270046, 34.571451523294535], [-77.41605395430386, 34.57168201482916], [-77.41632160902999, 34.57176585777332], [-77.41633427285299, 34.57177634667001], [-77.41650088653739, 34.571985023807976], [-77.41690025329785, 34.57210685741255], [-77.41702541280935, 34.572193187514046], [-77.41712229635331, 34.57219619361858], [-77.41724313635773, 34.57218755714147], [-77.41764963816377, 34.57227948211282], [-77.41791029491165, 34.57243693256689], [-77.41821374767535, 34.57224418282785], [-77.4185149992638, 34.57187359890175], [-77.41854771459302, 34.57170679115542], [-77.41851932377543, 34.57144839043012], [-77.41869804294473, 34.571349907467116], [-77.41891037919011, 34.57139189680683], [-77.41888128933155, 34.571623255525694], [-77.41909207111303, 34.571631091140766], [-77.41921980985029, 34.57177177856971], [-77.41931954200805, 34.57193687603616], [-77.41938030120667, 34.571960884896185], [-77.41937410843285, 34.57205334680199], [-77.41909782493825, 34.57220790722646], [-77.41909218485843, 34.57221008757609], [-77.41908915798768, 34.572211975605306], [-77.4186982627715, 34.57249608683634], [-77.41860429490471, 34.572608576513765], [-77.41861441430886, 34.572708405547644], [-77.41861406118255, 34.572799260669285], [-77.41869840942243, 34.57325800188077], [-77.4187309573103, 34.57350571324295], [-77.41871238606448, 34.573543420771145], [-77.41872097419302, 34.573566433366466], [-77.41886057758911, 34.57419661309123], [-77.41892224729955, 34.5743622719676], [-77.4190926310598, 34.5744689697922], [-77.41925823751258, 34.5745598702226], [-77.41928964585031, 34.57457338584604], [-77.41944038053923, 34.57471200454642], [-77.41946686387988, 34.574729524541134], [-77.4194866753503, 34.574747745248764], [-77.41961695580011, 34.57489878746948], [-77.41963283362516, 34.57495132243845], [-77.41976813220113, 34.57496791952484], [-77.41988071868684, 34.575009304261414], [-77.41996974016033, 34.575060113241314], [-77.42015156904766, 34.57516658189238], [-77.4202747492669, 34.57519959050482], [-77.42031295950454, 34.57522282018259], [-77.42040839842491, 34.575277314969796], [-77.42047176873106, 34.575311037543855], [-77.4206264730855, 34.57538981795834], [-77.42062738377959, 34.57543430903689], [-77.42066879954196, 34.57547215011225], [-77.42072129767925, 34.57543270183894], [-77.42090463704284, 34.57552007613417], [-77.42097201709205, 34.57555218733469], [-77.42106282496097, 34.57562180579905], [-77.42115004446642, 34.57564477241689], [-77.42116132794268, 34.57564322814024], [-77.42118305834056, 34.575651258353865], [-77.4212598352866, 34.57568378884549], [-77.42142372433536, 34.575699217252456], [-77.42144743091747, 34.57570592832048], [-77.4214568382992, 34.575712430978], [-77.42150346540296, 34.57573793727949], [-77.4216844102091, 34.57584092768347], [-77.42185088346469, 34.57593653002992], [-77.42206541264419, 34.576031088686975], [-77.42217322778839, 34.576092763508356], [-77.42224493059969, 34.57616022437443], [-77.42240003332898, 34.57614988748061], [-77.42263891016421, 34.57609636092124], [-77.42271876014223, 34.57602275574891], [-77.42297620960012, 34.575960547956306], [-77.42303287057234, 34.57595764858399], [-77.42307514127633, 34.57593075170092], [-77.42311096229692, 34.575880015641374], [-77.42314039016213, 34.575759842247294], [-77.42318015339985, 34.5756042447769], [-77.42337601829814, 34.57541712921618], [-77.42334816083338, 34.57533650724299], [-77.42342671989132, 34.57538204685092], [-77.42343766138718, 34.57539643455573], [-77.42382070250444, 34.575348803556274], [-77.42382732172648, 34.57535191552827], [-77.42405571336785, 34.57549027724116], [-77.4241894180352, 34.57551188447992], [-77.42408337810404, 34.57559791883166], [-77.42392364233444, 34.575762583572974], [-77.42388914245353, 34.57584118723596], [-77.42348884200467, 34.576249999281025], [-77.42355681016586, 34.57638009804662], [-77.42373535561048, 34.57673131918], [-77.42382106730098, 34.576772507356125], [-77.42398312925837, 34.5770277479388], [-77.42404616605812, 34.57720076997463], [-77.42421521806756, 34.57735758613447], [-77.42444282065009, 34.577565281631735], [-77.4247771112293, 34.57751848015755], [-77.42500326980995, 34.577546521587955], [-77.42519495524847, 34.577495224052946], [-77.42520542647826, 34.57749357035948], [-77.42538836105169, 34.57746156194497], [-77.42539724696337, 34.57746012692557], [-77.42539771131078, 34.57746021071335], [-77.42554889110963, 34.57748724838981], [-77.42559425604776, 34.57749172581273], [-77.42565419695426, 34.577487740180175], [-77.42572412777456, 34.57748537663742], [-77.42579125840712, 34.57749891284008], [-77.42589576106815, 34.577487909638776], [-77.42609653539522, 34.577475908436114], [-77.42618525422567, 34.577481975963764], [-77.42626722342916, 34.57745850500979], [-77.42651880816211, 34.57744535777783], [-77.42657924000167, 34.57743130700343], [-77.42666472272887, 34.57736924211266], [-77.42669499483353, 34.57736025878727], [-77.42677622932435, 34.57739448882305], [-77.42690148209186, 34.57737786769876], [-77.42697322622138, 34.5773839859065], [-77.42736230564921, 34.577383275658704], [-77.4273672258577, 34.57738321510113], [-77.42737087708085, 34.57738340440875], [-77.42739192382663, 34.57738429713688], [-77.42765793054193, 34.577457189392206], [-77.42776124411516, 34.577443852841405], [-77.42783480269843, 34.57739957080045], [-77.42787871847308, 34.57739962463478], [-77.42795823109795, 34.5774014072243], [-77.42797768228567, 34.577405782966046], [-77.42803093707474, 34.5774258904124], [-77.42803062107475, 34.57747611679569], [-77.42800198130419, 34.57750841811638], [-77.42797312410623, 34.577528596170325], [-77.42795827537356, 34.577545682167724], [-77.42777803337597, 34.577753080706366], [-77.4277694009885, 34.57776301371203], [-77.42776134415672, 34.577772284402215], [-77.42744769030692, 34.578225414305884], [-77.42749667839486, 34.57835751974081], [-77.42748657692587, 34.57864438259996], [-77.42760991622902, 34.57879007253696], [-77.42763655370919, 34.57883500084658], [-77.42769353394945, 34.578900209788046], [-77.42769973997194, 34.578971382812725], [-77.42765096548263, 34.579045212243415], [-77.42756475286464, 34.57912438387329], [-77.42745192091388, 34.57916467189047], [-77.42736778024396, 34.57922864196757], [-77.4270716610604, 34.57955352630993], [-77.42704208145162, 34.57963128354251], [-77.42713355070981, 34.579969170054284], [-77.42721155007209, 34.58012654255246], [-77.4273061420063, 34.58030204468895], [-77.42733706904852, 34.58036434501129], [-77.42734102079505, 34.5803929880186], [-77.42736813656295, 34.58041037695519], [-77.42750788034401, 34.58061372502654], [-77.42773723902275, 34.580731097912775], [-77.42775131956215, 34.58074084362994], [-77.42776225298154, 34.58074389864881], [-77.42790763211643, 34.58091876540278], [-77.42793209842037, 34.58094456609369], [-77.42795934083215, 34.58100259907831], [-77.42801336813987, 34.58111577769757], [-77.42799649379268, 34.581290571412225], [-77.42799806589183, 34.581371890067615], [-77.42787823970505, 34.581559896539645], [-77.4279205014996, 34.58180820362125], [-77.4279501297568, 34.58197409505535], [-77.42815670646485, 34.58214650358659], [-77.42826481818224, 34.5822367332195], [-77.42845582839267, 34.58232559466813], [-77.42855081296962, 34.58241219995803], [-77.42870459911607, 34.5825485582872], [-77.4289449167089, 34.582661630859505], [-77.42895474170926, 34.582667488265145], [-77.42896790925633, 34.58267617016794], [-77.42913348675623, 34.58287370313017], [-77.42954672248811, 34.582816352482176], [-77.42973300804158, 34.58278979380434], [-77.43002033251761, 34.58263897315156], [-77.43012697651344, 34.58262232597589], [-77.43026627268077, 34.58263859649786], [-77.43052094331387, 34.58245459625994], [-77.43113392911803, 34.582787669371285], [-77.43121895001256, 34.58287256102793], [-77.4313092022322, 34.58306075167968], [-77.43142720850449, 34.58287250548055], [-77.43150468642898, 34.582734074092556], [-77.43170307330647, 34.582625862698116], [-77.4318641574893, 34.58243117372672], [-77.43197981023702, 34.58236708443185], [-77.43209697931312, 34.58229911464228], [-77.43216073189583, 34.582283349006296], [-77.432421412789, 34.5822519275557], [-77.43249101554127, 34.58233784937755], [-77.43280280312787, 34.582546412907895], [-77.43280958131913, 34.58262685790875], [-77.43279423598423, 34.58329860557875], [-77.43280403926373, 34.583395416811456], [-77.4327039047023, 34.58360558060524], [-77.43288548028134, 34.58353386539766], [-77.43313709188655, 34.583925478770105], [-77.43334916623215, 34.584165789792024], [-77.43367394855883, 34.584619317362254], [-77.43440388905516, 34.58407570561237], [-77.43446180619414, 34.584086650026514], [-77.43498303696809, 34.58477875045413], [-77.43504032604933, 34.58499664754083], [-77.4347348448462, 34.585663819710405], [-77.43449936983633, 34.585737647310445], [-77.43446251837129, 34.585910597583094], [-77.43407503957653, 34.58619075845509], [-77.43424884088591, 34.58658327071258], [-77.43435582934507, 34.586683088808], [-77.43446284010555, 34.5867326566938], [-77.43448562791522, 34.58676133270252], [-77.43456091738284, 34.58685607623952], [-77.43456128747546, 34.586856541960664], [-77.43456133627807, 34.586856602985165], [-77.43456139948897, 34.586856676305864], [-77.43464178580905, 34.586951051575966], [-77.43464621599003, 34.58696521309903], [-77.43465995796754, 34.58697763042216], [-77.43472817077279, 34.5870773993761], [-77.4348570681085, 34.587200131924696], [-77.43497053232086, 34.58732811318856], [-77.4350973294367, 34.587475604366205], [-77.43513536983194, 34.587516576810145], [-77.43518861104712, 34.58757638865647], [-77.43525129594819, 34.587656054406], [-77.43527483627214, 34.587683355108055], [-77.43529328674276, 34.587706040773554], [-77.43539004896509, 34.58784147860598], [-77.43542425993131, 34.58789940034309], [-77.43542362368866, 34.58792621990304], [-77.43549316347483, 34.588101734045345], [-77.43556836029404, 34.588174038125004], [-77.43564556365394, 34.58819911977989], [-77.43573071508166, 34.588279683719676], [-77.43578620703587, 34.58833247046005], [-77.43584266363057, 34.588383106697], [-77.43596063028514, 34.588458737054445], [-77.43598914837375, 34.588509127062245], [-77.43603976000034, 34.58855619336165], [-77.43616844946953, 34.58871468743467], [-77.43627409639322, 34.588838005700595], [-77.43634721509545, 34.58892090437247], [-77.43643401683755, 34.58905018486059], [-77.43649164652591, 34.58916909989901], [-77.43651794631563, 34.58922734002358], [-77.43682830065825, 34.5895968201442], [-77.43683254506891, 34.5896018731543], [-77.43684048971306, 34.58960529544821], [-77.43707204638889, 34.589733834217036], [-77.43722245433825, 34.58982635917059], [-77.43732670126616, 34.58984726771007], [-77.43761651164314, 34.58982789219353], [-77.43798487910932, 34.58983672626441], [-77.43801056639086, 34.58982371761953], [-77.43809421127575, 34.58975844251258], [-77.43807706045574, 34.58985108045391], [-77.43804103884504, 34.58988909243438], [-77.43801060409635, 34.58991007007996], [-77.43766171878704, 34.59033573409576], [-77.43763981153907, 34.59036375772679], [-77.43761676362004, 34.59041105480215], [-77.43743780976794, 34.590792704900544], [-77.4376170454493, 34.59106259119031], [-77.43766206161912, 34.59113640235393], [-77.4376932955369, 34.59118035544866], [-77.43781969633109, 34.59136846312011], [-77.43785923343597, 34.591417146489015], [-77.43796109122403, 34.59156622562007], [-77.4379615021879, 34.59161987743473], [-77.43800741849847, 34.591984119846614], [-77.43840576928754, 34.59241555756416], [-77.43861789701427, 34.59251651692936], [-77.43919399726104, 34.59261608341862], [-77.43923653927207, 34.59260972865196], [-77.43996499925518, 34.59253180088983], [-77.43998208761758, 34.59251128459008], [-77.44008807506805, 34.59222217117284], [-77.44027336551355, 34.592081032390126], [-77.44034691979022, 34.592039130709516], [-77.44037593578274, 34.59203864622247], [-77.44040219948926, 34.59203409956144], [-77.44057295318044, 34.59200484723571], [-77.4407652765184, 34.5920048160197], [-77.44076998609799, 34.5920043550441], [-77.44078250834212, 34.59200739852336], [-77.44099876866906, 34.59215428661033], [-77.44110948198151, 34.59232574195592], [-77.44109354564117, 34.59238700953249], [-77.44092351960467, 34.59257673554817], [-77.44077030779022, 34.59268639481286], [-77.44055387866152, 34.592698258625376], [-77.44037625558137, 34.59272358980122], [-77.44004751588227, 34.59260873751088], [-77.4399821116005, 34.592563166523746], [-77.43997093850072, 34.592561401991915], [-77.43922249612287, 34.5926882712625], [-77.43919404570786, 34.59272304098706], [-77.4388169460088, 34.59315891514076], [-77.43880019022555, 34.59320152956971], [-77.4385129012391, 34.593609401808386], [-77.43847459121724, 34.59368848475648], [-77.43856388089378, 34.59402662399974], [-77.43865583961635, 34.59416932355045], [-77.4386569150208, 34.59428287172669], [-77.43863351399298, 34.59444114887072], [-77.43858802072944, 34.594643025016], [-77.438406921513, 34.59500926630135], [-77.43809891701616, 34.595035775018985], [-77.43821519035475, 34.59535082739335], [-77.43826149749324, 34.59550104972226], [-77.43824979803395, 34.59602523568593], [-77.43824987294082, 34.59619500013397], [-77.43831017641286, 34.59629113002245], [-77.43840758639755, 34.59650091592888], [-77.43844657733419, 34.59659115081273], [-77.43851405837702, 34.59689146097179], [-77.43876599021215, 34.596969557378706], [-77.4387662773036, 34.59735555752498], [-77.43876354431201, 34.59743604100078], [-77.43871714852014, 34.597825807674866], [-77.43864663510358, 34.59809278593442], [-77.4386312275036, 34.59826282645391], [-77.43840851002726, 34.59856670121384], [-77.43832029257439, 34.59863730291489], [-77.43823209076572, 34.59874513437356], [-77.43832037686714, 34.598827447065084], [-77.43826564394233, 34.59916487690149], [-77.43817495199357, 34.59935057709605], [-77.4381749872373, 34.599429992906614], [-77.43815331166137, 34.59960571339164], [-77.43817555143164, 34.599775525936714], [-77.43817558630836, 34.59985405838659], [-77.43817586933436, 34.60002704561832], [-77.43818522760225, 34.60005467055311], [-77.43819163170005, 34.60021490775022], [-77.43818527323145, 34.60023798278163], [-77.43818528612883, 34.60026699799526], [-77.43816255913335, 34.600453563847225], [-77.43822094270212, 34.60064820480067], [-77.4382226928912, 34.60066825606536], [-77.43823669929769, 34.600867437633624], [-77.43825882322773, 34.601026693058074], [-77.43827887205747, 34.60114502140172], [-77.43823036850438, 34.60129294668554], [-77.43823045456331, 34.60148617273424], [-77.4382538120391, 34.60168070982975], [-77.43839452904058, 34.60174268794776], [-77.4384296941947, 34.60189343904022], [-77.43833608052512, 34.60202649956382], [-77.43838633176814, 34.60220980936564], [-77.43846374787115, 34.60235934584091], [-77.43859918203394, 34.60240669723338], [-77.43868818590781, 34.60260335832183], [-77.43870375110367, 34.6026601645094], [-77.43874253136181, 34.60268855211031], [-77.43882645198424, 34.602806616426584], [-77.43882574818974, 34.60281000483872], [-77.43884563594224, 34.602860141090936], [-77.43888432871373, 34.602972305210095], [-77.43888709387933, 34.60297713742833], [-77.4389980805299, 34.603290345443384], [-77.43900759850315, 34.60331202613332], [-77.43901392174998, 34.603336813485306], [-77.43906461216488, 34.60348039396881], [-77.43910710813466, 34.60361416235722], [-77.439114682667, 34.60365074130449], [-77.43925358777493, 34.603892193840885], [-77.43927919705271, 34.60397308254633], [-77.43935911272668, 34.60407707489421], [-77.43942620953861, 34.604300413929955], [-77.43958231348724, 34.604404536008865], [-77.43968423065645, 34.60450059234202], [-77.43967889972176, 34.60459761548135], [-77.4399124368789, 34.60489018575685], [-77.43991499866456, 34.60489954755354], [-77.4399229435358, 34.60490232848314], [-77.43993429958492, 34.60491757482295], [-77.44001161655476, 34.60505662391013], [-77.44005551959279, 34.60519736291701], [-77.44006392078329, 34.60522633470582], [-77.44021901414268, 34.60545459931135], [-77.44025308868069, 34.60554164719851], [-77.44032223522743, 34.605653052670505], [-77.44035630814537, 34.605743868561646], [-77.44044538554319, 34.60585606800661], [-77.4404495572772, 34.60585842673715], [-77.44046742450676, 34.60590525791069], [-77.44050937114277, 34.60601386047485], [-77.44051512374264, 34.60603028062189], [-77.44044918377644, 34.606224232381145], [-77.44046171982662, 34.60632130169057], [-77.44027455745324, 34.606643267342875], [-77.44056421842747, 34.60686104027247], [-77.440597680651, 34.60692038905971], [-77.44083694173597, 34.607072059611035], [-77.44097204433155, 34.607182900003146], [-77.44103070190138, 34.60720499128519], [-77.44109933747518, 34.6072538612634], [-77.44139705153718, 34.607430970755736], [-77.44149090179846, 34.607556625860944], [-77.44216432642366, 34.60758145154897], [-77.44220746263744, 34.60759485197058], [-77.4422407960816, 34.60758295958693], [-77.44227851826444, 34.607576609333776], [-77.44268856919967, 34.60743197357121], [-77.4431203091577, 34.6072518046086], [-77.44319908851668, 34.607242800006], [-77.44322602913472, 34.60726384956114], [-77.44326006401154, 34.607269021447145], [-77.44355420800562, 34.60731975806976], [-77.44361948730807, 34.60742650747886], [-77.44357051414906, 34.60754975062127], [-77.44357846001357, 34.60774724336777], [-77.44351262057829, 34.60793550934475], [-77.44352169138708, 34.6080116986936], [-77.44366645711833, 34.60855393360565], [-77.44369378454087, 34.608622354334784], [-77.44395016011059, 34.608781067736025], [-77.44408631850612, 34.60895489753827], [-77.44407237753074, 34.60925290487885], [-77.44435687616792, 34.60953840151012], [-77.44435907223185, 34.609540409291135], [-77.44491964075267, 34.609687463953776], [-77.44531868722403, 34.60926677869479], [-77.44532408565917, 34.60926188758838], [-77.44532713241817, 34.60925558522084], [-77.44538734497192, 34.60912917228826], [-77.44541091986679, 34.60908154866313], [-77.44548943463161, 34.609068029058875], [-77.44553921116092, 34.609070092222275], [-77.44567777775873, 34.60907595659303], [-77.44580974590822, 34.60909814803083], [-77.44587703147195, 34.60910756460131], [-77.44616726177628, 34.60915360382461], [-77.44635592214574, 34.60917291091575], [-77.44666415421648, 34.609111428980995], [-77.44686195743195, 34.60910103755388], [-77.44696569326206, 34.6090917188829], [-77.44742679752572, 34.60903488063653], [-77.44767436335658, 34.60913957588401], [-77.44792508346997, 34.609143786631506], [-77.4481410530176, 34.609008838893814], [-77.4483647750386, 34.60882958381966], [-77.44851912868302, 34.60872337435044], [-77.44873728033758, 34.60859807059171], [-77.44879950828945, 34.60849727952154], [-77.44889832920659, 34.608245975781195], [-77.44904953642448, 34.608087933633016], [-77.44911106488283, 34.60781604941306], [-77.44912032705008, 34.60774890442406], [-77.44913094150442, 34.607497017843635], [-77.44919886550755, 34.60742175230113], [-77.44917768301605, 34.607301461437245], [-77.4491709811645, 34.6070604476812], [-77.44905752562136, 34.60699121081302], [-77.44893438891904, 34.60680883686982], [-77.4490403157902, 34.60672845560988], [-77.4493287978804, 34.60659018459644], [-77.44968041212317, 34.606450488765354], [-77.44979224702132, 34.60636281980203], [-77.44991927020641, 34.60622437108612], [-77.4501027649257, 34.606170313336165], [-77.4502944866403, 34.606277145200146], [-77.45044572919689, 34.60632763234557], [-77.45058904282982, 34.60649006154827], [-77.4511117195079, 34.60633192976356], [-77.45132959638907, 34.6062176738869], [-77.45165738747005, 34.605903468752466], [-77.45194548086053, 34.605530621445645], [-77.45208565922727, 34.60513906723021], [-77.45238620678285, 34.604919698502805], [-77.4522995597614, 34.604691108723244], [-77.45215405965092, 34.604576333433535], [-77.45191623108687, 34.60452026804904], [-77.45160679366123, 34.604331176513554], [-77.45153799908141, 34.60416980636542], [-77.45143230811647, 34.60408735817139], [-77.45132996132413, 34.60393071197574], [-77.4513343120996, 34.603858643203004], [-77.45133697747531, 34.603746746113664], [-77.45117062188496, 34.60371701198823], [-77.45103495379739, 34.60357476744624], [-77.4509830380727, 34.60349961723866], [-77.45107245701482, 34.60335846476773], [-77.45117490962716, 34.60325705925033], [-77.45112617797979, 34.60309015172871], [-77.45127739588457, 34.602767099460394], [-77.45123078266798, 34.602657213932794], [-77.45112294648357, 34.602179736545445], [-77.45076094330923, 34.602220637552236], [-77.45072722552584, 34.60220646214318], [-77.45069818017097, 34.602193787520314], [-77.45064086861386, 34.60214108602917], [-77.45063407884813, 34.602091775788665], [-77.45067067008996, 34.602017004749065], [-77.4506928527455, 34.601971926945374], [-77.45083741864107, 34.60190016657849], [-77.45096293348404, 34.60174901498378], [-77.45099545850267, 34.60142127116348], [-77.45102915225638, 34.60136086907716], [-77.45101927007676, 34.60134440501019], [-77.45103842187731, 34.60131409345384], [-77.45132097388759, 34.600830584426845], [-77.45165293444148, 34.600444428387824], [-77.4517723877542, 34.600369153470666], [-77.45181593339387, 34.6003139665124], [-77.45194040878758, 34.60011825193138], [-77.45200449333757, 34.59997489153427], [-77.45203411054408, 34.59984134336929], [-77.45238205168096, 34.59949793548522], [-77.45215307440341, 34.59926357806174], [-77.45215099885371, 34.599194582381195], [-77.4520833719604, 34.59917650242343], [-77.4520932986331, 34.59893296304889], [-77.45210146846472, 34.59883945076212], [-77.45203859007037, 34.59877407909644], [-77.4520070240136, 34.598747923563764], [-77.45205939986336, 34.598748630304854], [-77.45216007300493, 34.598690975405376], [-77.45225212894633, 34.598678846284265], [-77.45230922133565, 34.598671711078936], [-77.4524252515642, 34.59869957321357], [-77.4524668682894, 34.598707514351936], [-77.45253064806482, 34.59871702903019], [-77.4529293743995, 34.598915836557936], [-77.452973341626, 34.59896001163364], [-77.45298809648662, 34.598984468113045], [-77.45322234508045, 34.59925824291093], [-77.45342329838059, 34.59936662934198], [-77.45366949030908, 34.599404249151576], [-77.45437657509206, 34.59966751391506], [-77.4546296434697, 34.59972011588791], [-77.45467923244462, 34.6001475325112], [-77.45447624400163, 34.600377607089314], [-77.45426382368643, 34.600621564909446], [-77.45425909722887, 34.601178075690775], [-77.4542872683472, 34.60124915769615], [-77.45435399040292, 34.601886047595876], [-77.45435497928806, 34.60188924990887], [-77.45435576232927, 34.601892512180726], [-77.45435106809491, 34.60189349030508], [-77.45434586435863, 34.6018959852747], [-77.45368612561855, 34.60227759240911], [-77.45346931267736, 34.60251285220127], [-77.4529932538731, 34.60265454024638], [-77.45284471074545, 34.6030585714323], [-77.45303942565724, 34.60329008913529], [-77.4531286762247, 34.603384504467854], [-77.45343701570087, 34.603628144556936], [-77.45381086384688, 34.60376023091242], [-77.45417233604951, 34.60393701197453], [-77.45465511422805, 34.60401921008435], [-77.45477785072308, 34.60411092865694], [-77.45502732410179, 34.60436312324457], [-77.45514521736688, 34.60457608412095], [-77.4551477752487, 34.604617203727884], [-77.4551289196416, 34.60464057762705], [-77.45513123785562, 34.604742594461], [-77.45508224903116, 34.6049339409316], [-77.45511042860676, 34.60499712048821], [-77.45515021157604, 34.60502718741467], [-77.45514360154974, 34.60511025312763], [-77.45513855021795, 34.60517373043155], [-77.45513389555299, 34.60523222345278], [-77.4551316131779, 34.60526090485316], [-77.45512445826623, 34.60527006603639], [-77.45511512346562, 34.60529870246854], [-77.45508206713701, 34.60537447400209], [-77.45506379570759, 34.605456161179625], [-77.4549424877373, 34.6055044264784], [-77.45482733452846, 34.60555251745181], [-77.45437968568164, 34.6056172061315], [-77.45432471075551, 34.60563677049076], [-77.45416464883967, 34.60577522687387], [-77.45345425494429, 34.60629753881837], [-77.45331278080772, 34.60648268760212], [-77.45332586561355, 34.60661394106841], [-77.45324821147709, 34.60689590899951], [-77.45319564838509, 34.60706109438826], [-77.45277398158366, 34.60750987647014], [-77.45277253015986, 34.60753244091122], [-77.452746643923, 34.60755306978907], [-77.45238130921486, 34.607991136032076], [-77.45277570200784, 34.60815294131015], [-77.4529023682643, 34.60821177941829], [-77.45291503379653, 34.60821772620102], [-77.45292750649077, 34.608213575187584], [-77.4529408080454, 34.60821070972586], [-77.45376152691203, 34.60809700505524], [-77.45393713338726, 34.6080609480709], [-77.45418563230854, 34.608035591852314], [-77.45419269279118, 34.608034305625125], [-77.45443866647634, 34.60814284164924], [-77.45445455501299, 34.60816394307144], [-77.45450820395232, 34.60844940949622], [-77.45448073542661, 34.60850010454546], [-77.4544419611466, 34.60873592579797], [-77.45448312884295, 34.60886868448286], [-77.4544718541115, 34.60905720218526], [-77.45446066131103, 34.609244355294074], [-77.45453887168235, 34.60938921691524], [-77.45466073000588, 34.60955655186953], [-77.45466589561804, 34.609734334825774], [-77.4548595763363, 34.609869096804154], [-77.45492119049312, 34.60987935802617], [-77.45498118248355, 34.6099537094609], [-77.4551021395074, 34.6101152948909], [-77.45511699198399, 34.61016493550206], [-77.45513727220344, 34.61021795673404], [-77.45518836883144, 34.61032920789801], [-77.45521847205679, 34.610430249703384], [-77.45523906757225, 34.610499378313946], [-77.45530494952968, 34.6107817132939], [-77.45534311480975, 34.610909353610865], [-77.45516797693026, 34.610949209847185], [-77.45512588343982, 34.6109009261818], [-77.45504390240046, 34.610804674558395], [-77.45500479382655, 34.610691545630964], [-77.45491148177331, 34.61065903871167], [-77.45485081825116, 34.61061012138148], [-77.45474871220557, 34.61054748217108], [-77.45458256826328, 34.61041785664696], [-77.4544751721641, 34.61034800507765], [-77.45431057635476, 34.61016883324308], [-77.45414469202778, 34.610073004753744], [-77.45394945357731, 34.609802386822196], [-77.45392374042729, 34.60976676527712], [-77.45390260350202, 34.6097533046092], [-77.45387361431034, 34.609748769922476], [-77.45381324831978, 34.60975473306945], [-77.45336102389182, 34.60979671877841], [-77.45297319789448, 34.6099753917745], [-77.4528153677453, 34.61002499118273], [-77.45282680253223, 34.61007963723203], [-77.45270736575699, 34.61030044929822], [-77.45259738251862, 34.610514332113134], [-77.45257030192592, 34.61055863905289], [-77.45253785324881, 34.61063034439019], [-77.45221497411886, 34.61105370930153], [-77.45190489476634, 34.6112816876839], [-77.45170677153644, 34.61143513344289], [-77.45166052919767, 34.611479113413694], [-77.45153510859004, 34.61155582142838], [-77.45125366039065, 34.61170034005591], [-77.45081968641352, 34.61175985845836], [-77.45078504137027, 34.611736598098425], [-77.45094101545429, 34.61122736634123], [-77.45106232395273, 34.610952140071795], [-77.45086876991931, 34.61071985181881], [-77.45082487128641, 34.61065060314336], [-77.45039095754949, 34.61046965813398], [-77.45030893140223, 34.61049001721856], [-77.44992388754528, 34.61068387554693], [-77.44951339918333, 34.61072784821187], [-77.44941147660234, 34.610732497874196], [-77.44936659830407, 34.610727860984824], [-77.44915548924668, 34.610757435196724], [-77.44865426077803, 34.610684480661554], [-77.44836108026949, 34.61073633074848], [-77.44823012609297, 34.610898218672666], [-77.44809994664115, 34.61105845113375], [-77.4478383558457, 34.61138053539769], [-77.44784376904586, 34.61167543637217], [-77.44780301276296, 34.61188163971362], [-77.44788877866964, 34.612017583320586], [-77.4480703915836, 34.61231269050514], [-77.44830770813027, 34.612461625107635], [-77.44832231642532, 34.61247206306656], [-77.44842644007345, 34.61279170773398], [-77.44842753795561, 34.612825504016136], [-77.44810370131191, 34.61327291667148], [-77.44805990256566, 34.61331626895351], [-77.44802516815633, 34.61334989543286], [-77.44787805205078, 34.61356234004856], [-77.44766674554205, 34.61372053086792], [-77.44761208848948, 34.61376138844729], [-77.44759425209374, 34.61377273832457], [-77.44757085463604, 34.61379412016286], [-77.44718048811401, 34.61410524605573], [-77.44705657532833, 34.614204004859424], [-77.44676685773348, 34.614392638114495], [-77.44673840012535, 34.61441080855113], [-77.44633515037593, 34.61457097472133], [-77.44626798548624, 34.61461291168748], [-77.4455011342572, 34.614898543784335], [-77.44533147172712, 34.61503290298445], [-77.44473884745672, 34.61570940748473], [-77.44562853922557, 34.61611802911701], [-77.44567526293842, 34.61615525539611], [-77.4457008743116, 34.616173610670835], [-77.44579261226966, 34.61623935766261], [-77.44595171836195, 34.616471339598206], [-77.44613026001468, 34.616513316295695], [-77.44624226625228, 34.61670640090626], [-77.44624833848296, 34.61675601627558], [-77.4462762972451, 34.61679193723719], [-77.44638385375602, 34.6170656469733], [-77.44638793219328, 34.61708546701351], [-77.44640542662796, 34.61709122966396], [-77.44642607989806, 34.61711075444697], [-77.4466113552112, 34.61729663317751], [-77.4467160388071, 34.61736116508797], [-77.44686623428387, 34.61744219381313], [-77.44707016895674, 34.61754293744387], [-77.44739267095598, 34.6175374829433], [-77.44753709836243, 34.61753635591207], [-77.44760332679306, 34.61756993824997], [-77.44784538250701, 34.6177776487825], [-77.44796581732648, 34.61792655404071], [-77.44803024639621, 34.61809419072181], [-77.44808013273997, 34.61824396567814], [-77.44809279297051, 34.61828299763637], [-77.44813110799618, 34.618434686059764], [-77.4481239513897, 34.61864756330915], [-77.44846091101948, 34.618781795890655], [-77.44880105912807, 34.61853080403701], [-77.448912890444, 34.61851229572659], [-77.4489837165142, 34.618510785522545], [-77.4491620061384, 34.618462005112264], [-77.44927061797351, 34.61847900554174], [-77.44927954543758, 34.618606285422075], [-77.44928809522142, 34.61870120414345], [-77.44925359396633, 34.61885311721544], [-77.44926003355695, 34.619087316749656], [-77.44926083340701, 34.61931106410955], [-77.4491594290767, 34.61961848276365], [-77.44917464739925, 34.61990030746419], [-77.44936495324833, 34.62029839098305], [-77.44930840957718, 34.62056650512178], [-77.44930521419622, 34.62068468425115], [-77.44920613733484, 34.620981917291466], [-77.44917000921619, 34.621092495719274], [-77.44915679248531, 34.621132858747075], [-77.44918366252739, 34.6214212696007], [-77.44889147535466, 34.62136660663122], [-77.44900893007974, 34.621138427565064], [-77.44889461171239, 34.62104113209754], [-77.448664424084, 34.620867406429554], [-77.4485860505811, 34.62082565304061], [-77.44847396339675, 34.62074964508322], [-77.44830303434124, 34.6206011990583], [-77.44820443755498, 34.62037784544425], [-77.44792299021077, 34.62034031035772], [-77.44780779266858, 34.620236944901094], [-77.4477104989983, 34.62006736389624], [-77.4476821456231, 34.620039729369445], [-77.44761173376885, 34.61997289135897], [-77.44750425667087, 34.61972119731185], [-77.4473208535241, 34.619629383800735], [-77.44718908231944, 34.61951531188316], [-77.44719708383008, 34.61943952924078], [-77.44704883791735, 34.61938533575408], [-77.44690925994523, 34.619218238832374], [-77.4467535481716, 34.619053220951855], [-77.44662183485468, 34.61886504429829], [-77.44660403621621, 34.61867705852708], [-77.44652745888556, 34.61852269977194], [-77.44626008692973, 34.61842483268292], [-77.44603185068709, 34.61846224640979], [-77.44555911521819, 34.618635291286616], [-77.44549616991074, 34.61881675135224], [-77.4453551309611, 34.618960247746095], [-77.44514402410564, 34.61910945875674], [-77.44511717532023, 34.619123274818186], [-77.44484888452114, 34.61903156940662], [-77.44483293434705, 34.61901360157732], [-77.44482756458675, 34.61899872693068], [-77.44473399811588, 34.61866481042483], [-77.44471558932023, 34.61854467752531], [-77.44471463278727, 34.61833979911184], [-77.44470406732336, 34.61825684188363], [-77.44459105441804, 34.61796706045861], [-77.44438249478239, 34.61773566064148], [-77.44397925039632, 34.61777548813782], [-77.44337975015621, 34.61757391714731], [-77.44345406215965, 34.61727928254557], [-77.44338284263635, 34.61712913455217], [-77.44328078345039, 34.616863631718005], [-77.44311589565852, 34.61654153033107], [-77.44311585944368, 34.61654140360758], [-77.44311608197556, 34.616540963228054], [-77.44306314947167, 34.6161871810226], [-77.442989652628, 34.61608105696116], [-77.4429070679001, 34.61588220268436], [-77.44290994570513, 34.615861610486334], [-77.44290192910492, 34.61584723728867], [-77.44292913526326, 34.61548688780785], [-77.4421941858551, 34.61509570002837], [-77.44183145568077, 34.61536855687517], [-77.4417298262167, 34.61543705908624], [-77.44172206801461, 34.6154617806244], [-77.44130266253009, 34.61568013633123], [-77.44091498731888, 34.615771319780556], [-77.44080342028869, 34.61577697498244], [-77.44073278003403, 34.61579735112772], [-77.44031093053317, 34.6158984874438], [-77.43991574753719, 34.61604104298175], [-77.43970767120845, 34.61613619539451], [-77.43933917251212, 34.61618983197061], [-77.43887667655304, 34.61629682063958], [-77.43879802226739, 34.61633388974502], [-77.43836373405834, 34.61646774594182], [-77.43806544227866, 34.61663233180249], [-77.43803427341642, 34.616882348045294], [-77.4379672970812, 34.61694025692443], [-77.43784084415947, 34.617173157571095], [-77.43768167094098, 34.61735210577015], [-77.43758733288178, 34.61747297315186], [-77.43719978055708, 34.61756822528097], [-77.4367876269826, 34.617877007527134], [-77.43665477137425, 34.61790763243042], [-77.43657758925778, 34.61796989714516], [-77.43658228188157, 34.61803473219634], [-77.43660607764865, 34.618098909532506], [-77.43681125839338, 34.618671115054156], [-77.43678978405443, 34.61871407250131], [-77.43641310662653, 34.61894576014426], [-77.43629313116924, 34.619109210795244], [-77.43603374907143, 34.619255530723535], [-77.43597965327083, 34.61928308169466], [-77.43592776959431, 34.619291054965444], [-77.43556045613211, 34.61937691200926], [-77.43547470740447, 34.61935916221548], [-77.4349375750986, 34.61925420651909], [-77.43491913208298, 34.61925022684075], [-77.43491107151144, 34.619249573154086], [-77.43431803627382, 34.61906706399954], [-77.43383122736404, 34.61911728556635], [-77.43355330400637, 34.61938913816404], [-77.43310875381638, 34.61963086443073], [-77.43295087883091, 34.61974288476243], [-77.43291079157976, 34.619783691562546], [-77.43248919385522, 34.619939843122495], [-77.43247999070853, 34.61994344895843], [-77.43247230756488, 34.61994465575669], [-77.43206880720356, 34.61998768245703], [-77.43195096784311, 34.61993154659723], [-77.43178502244209, 34.62000908956237], [-77.43124904235441, 34.6200753974411], [-77.43092906832749, 34.620039851145364], [-77.43022934458723, 34.62058387898681], [-77.43007315862042, 34.6206487750228], [-77.43005122009332, 34.620674687934944], [-77.4299188329912, 34.62078690075365], [-77.42962239409212, 34.62102903228813], [-77.42950994365458, 34.62107107801943], [-77.42926385496537, 34.62158731034484], [-77.42925594227258, 34.6215997464904], [-77.42925508803467, 34.621601322280256], [-77.4292547681517, 34.621607087698486], [-77.42918862283096, 34.62198816586055], [-77.42929082935828, 34.62223328888413], [-77.4293165921795, 34.62232093482183], [-77.42934118714984, 34.622406905646116], [-77.42952302489822, 34.62258760348189], [-77.42978903168483, 34.62277373163238], [-77.42982492920625, 34.62291454754706], [-77.42979212261551, 34.62302821663205], [-77.42997349458196, 34.62346241969092], [-77.43001244269644, 34.62359958472079], [-77.43015939481954, 34.62377622716618], [-77.43022803071514, 34.623907386047414], [-77.43032870175757, 34.62394245932678], [-77.43036239037752, 34.62415700765159], [-77.43027123724184, 34.62426431044417], [-77.43030948201563, 34.62444821413412], [-77.43035425789913, 34.62460988915716], [-77.4304847482687, 34.62466588072566], [-77.4306113874782, 34.624863613829795], [-77.43062505632295, 34.624901957242855], [-77.43063427942735, 34.624940209004286], [-77.43072355824899, 34.625053744461155], [-77.43080840268209, 34.62518448612705], [-77.43086377690474, 34.6252031660988], [-77.43096907515209, 34.6252985353535], [-77.43101250064674, 34.625530020798905], [-77.43144129369134, 34.62575520409373], [-77.43172967706305, 34.62588691527211], [-77.43179779434033, 34.626044708132746], [-77.43179015263854, 34.626205366468355], [-77.43183641895752, 34.626772178873104], [-77.43191709135405, 34.62748615769851], [-77.43191709034363, 34.62748868979054], [-77.4319188586319, 34.62750047168939], [-77.43184301566423, 34.62824725356826], [-77.43195594154292, 34.62835281717245], [-77.4321564356564, 34.628368666878266], [-77.43240084166747, 34.628723284196745], [-77.4324495967289, 34.62881287252529], [-77.4325651188813, 34.62895438262745], [-77.43257104899082, 34.62896288149424], [-77.43257495475194, 34.62896758797079], [-77.43257927886992, 34.62911419944509], [-77.43256546606649, 34.629149092242706], [-77.4325495837416, 34.6292586677754], [-77.43253413779998, 34.62947453880403], [-77.43252523805472, 34.629529795756454], [-77.43252252771805, 34.62955892094828], [-77.43251630710469, 34.6296837340099], [-77.43186568601237, 34.62971774825547], [-77.43157775594526, 34.62972909144767], [-77.43147813553284, 34.62973301569841], [-77.43097540640154, 34.62955101727696], [-77.43090253377119, 34.62955111998383], [-77.43060780235037, 34.62933772297815], [-77.43050947491247, 34.62920624581872], [-77.43020783832375, 34.62893397015735], [-77.43001834008578, 34.62876721911754], [-77.42993398375602, 34.62865294925325], [-77.42979242218061, 34.62825422529433], [-77.4296846155311, 34.62812384204028], [-77.42960966874654, 34.62802048812399], [-77.42962900287749, 34.62792675034127], [-77.42971270489971, 34.62774660144551], [-77.42982538132773, 34.627536204385635], [-77.4299345965782, 34.6274142590728], [-77.42990313287358, 34.6273231013889], [-77.42985468912865, 34.627264030184534], [-77.42975385189483, 34.62704126956496], [-77.42972960407532, 34.62700331320107], [-77.42972036347234, 34.62697111803484], [-77.42963449499396, 34.6268385513433], [-77.42956025255359, 34.62670971544825], [-77.4295408929016, 34.62668785103399], [-77.429525622027, 34.62665165791098], [-77.42939917331485, 34.62635899865035], [-77.42933254650279, 34.62627435000583], [-77.42933099847315, 34.6261938075061], [-77.42929554864762, 34.62611907274306], [-77.42929307418096, 34.626105670140674], [-77.42932378925047, 34.626084563642316], [-77.42941452831334, 34.62603459884903], [-77.42945303748535, 34.626006797673114], [-77.42953226146577, 34.62595183810602], [-77.42985233353099, 34.625712979105906], [-77.42997152063083, 34.62556882499839], [-77.42996905806376, 34.62545813187221], [-77.42996554819263, 34.62530034556946], [-77.4299608967626, 34.625091220271145], [-77.4295662465928, 34.62487418401667], [-77.42914373192865, 34.62465962150534], [-77.4290789875968, 34.62460405798146], [-77.42905173241296, 34.6245888134275], [-77.42902044165946, 34.62459421296337], [-77.42845391995903, 34.62441293885206], [-77.4284509748208, 34.62440883150501], [-77.42833885302574, 34.62437788253366], [-77.42787119107675, 34.62423722174606], [-77.42785361113943, 34.62422470209467], [-77.42775861332895, 34.624241830867575], [-77.42712156347383, 34.62420514745305], [-77.42716161054427, 34.62404270942993], [-77.42719340986274, 34.623976920105335], [-77.42713461875408, 34.62368116700119], [-77.42716122797195, 34.6235639931825], [-77.42720429436416, 34.62336126899912], [-77.4272828609171, 34.623269692515635], [-77.42749605012023, 34.62286594920071], [-77.42752000002294, 34.62285232356324], [-77.42753312628913, 34.62282914655471], [-77.4277050890208, 34.622607385382054], [-77.42770428916711, 34.62257901074911], [-77.42762318288976, 34.62243425072661], [-77.4273164268624, 34.62220934427463], [-77.42726449901066, 34.62220234609513], [-77.42713810776661, 34.622203238319265], [-77.42725762835101, 34.622141016010325], [-77.42701626814976, 34.62186872256437], [-77.42696239238722, 34.62165744027103], [-77.42681481544746, 34.62155689236981], [-77.42658143778502, 34.62144454252218], [-77.42647990952656, 34.62133295196571], [-77.42596490991366, 34.62111275622091], [-77.42592860721082, 34.621092559615974], [-77.42589789397786, 34.621079696361136], [-77.42554220998763, 34.620921024394434], [-77.42540600653251, 34.62085062126836], [-77.42538217818051, 34.62084621348409], [-77.42536416130362, 34.6208386367039], [-77.42485193989087, 34.620639261339534], [-77.42483521117538, 34.620600525513716], [-77.4247661513697, 34.62057451175548], [-77.42431095239803, 34.62032708887162], [-77.42365368500184, 34.62035170368506], [-77.42292240495709, 34.62045056645914], [-77.42269690033751, 34.62047124450923], [-77.42265037438762, 34.62044516591314], [-77.4226014557161, 34.6204824345096], [-77.422461752916, 34.62055531247191], [-77.42225621953907, 34.62062875362139], [-77.42217756314102, 34.620681092435106], [-77.4219137136407, 34.62069013361517], [-77.42186203062289, 34.62069079176599], [-77.4218322062535, 34.620678358704], [-77.42179122103911, 34.620652158998], [-77.42127890621286, 34.620504991653306], [-77.4210735490089, 34.62041720304005], [-77.42075296152088, 34.62045680316674], [-77.42028515487173, 34.62047882733884], [-77.41988384496273, 34.62051069846673], [-77.41949675689864, 34.62053050295798], [-77.41917757340859, 34.62068579820744], [-77.41902953874197, 34.62070509357598], [-77.41870840997538, 34.62081217799689], [-77.4185333384325, 34.62093405636701], [-77.41848521977707, 34.62094543391686], [-77.4183142187373, 34.62088263985387], [-77.41820635981927, 34.62086144498586], [-77.41791996329233, 34.62066228955082], [-77.41761188330338, 34.62073837503663], [-77.41741812533756, 34.62074315430515], [-77.41713156087566, 34.62071249545451], [-77.41681918303541, 34.62085747674989], [-77.416622769123, 34.6208504942719], [-77.41634316914804, 34.620822758079065], [-77.41626620126105, 34.62068370791409], [-77.41615898686379, 34.6206163194587], [-77.41602841974088, 34.620549532875096], [-77.41594886876807, 34.6203452617203], [-77.4159163853747, 34.620261733642046], [-77.41590211729873, 34.62017850543837], [-77.4157732127735, 34.6198228542106], [-77.41570129561747, 34.61967516838389], [-77.41555452897089, 34.619635033049576], [-77.41527512413616, 34.61959383759621], [-77.41516031086249, 34.61954775836798], [-77.41511732516805, 34.61953926461621], [-77.41492335874543, 34.61952097148968], [-77.41481217989178, 34.61948738975687], [-77.41476609946055, 34.61949361805104], [-77.41471402798118, 34.61949510830678], [-77.41437806329813, 34.61959307448814], [-77.41437191473887, 34.61958956158837], [-77.41435855964897, 34.61958812785368], [-77.41427591383783, 34.61961444321166], [-77.41397772726697, 34.619675086925085], [-77.41395921267684, 34.619680106414954], [-77.4138200783433, 34.61968025001751], [-77.41363889456741, 34.61964676414525], [-77.41350553150409, 34.61964166078605], [-77.41318929283476, 34.61949230510125], [-77.41308523579471, 34.61947382405183], [-77.41279509251115, 34.61950194207104], [-77.41241124153456, 34.619470199797775], [-77.41240088552482, 34.61946850334822], [-77.41239485637544, 34.61946790485757], [-77.41236439921529, 34.619465807703754], [-77.41185015990305, 34.619284014366684], [-77.41161243034375, 34.619104738260816], [-77.41136795793348, 34.61902378009206], [-77.41082400218426, 34.61889629534621], [-77.410784529069, 34.6188872087235], [-77.41073330497147, 34.61885208847363], [-77.41037109555603, 34.61854297300828], [-77.41036304734237, 34.618480951498306], [-77.41019532938608, 34.61833304818228], [-77.41017511862289, 34.618233852867164], [-77.4102003876055, 34.61807985007216], [-77.41014902186704, 34.617964980351346], [-77.41003548273319, 34.61790822396494], [-77.40994425987554, 34.61769223925204], [-77.40987582073274, 34.61753019753526], [-77.40986083688296, 34.61749199068377], [-77.40985332309789, 34.61747693055969], [-77.40983832804878, 34.617427521213145], [-77.40979473335125, 34.61728924222694], [-77.40979318501067, 34.617125760690556], [-77.40977995995024, 34.61701627001728], [-77.40982146244895, 34.61686080555397], [-77.40987329205021, 34.61660327003522], [-77.40989130164999, 34.6164261467342], [-77.40964107483454, 34.61607503558037], [-77.40962434679487, 34.61605811427109], [-77.40951485790761, 34.61605590131313], [-77.40924688493409, 34.616042706526585], [-77.40920585144188, 34.61605630147898], [-77.40895220926342, 34.61602992340916], [-77.40885269311656, 34.61599006090495], [-77.40852953265171, 34.61585004945329], [-77.40845849093343, 34.61583086893367], [-77.40843002070002, 34.61581855833357], [-77.40839145181181, 34.61579346069874], [-77.40796241691763, 34.61554051569445], [-77.40767007490872, 34.615336788014275], [-77.40750452179765, 34.61525061558123], [-77.4072426090182, 34.61511010346934], [-77.40688166984883, 34.614864633475754], [-77.40650375231678, 34.614774626383216], [-77.40648748190888, 34.61477667860191], [-77.40645863613186, 34.61476759279026], [-77.40609329521672, 34.614693944941315], [-77.40571737110193, 34.614481052596346], [-77.40559477992305, 34.61418650798484], [-77.4053049036836, 34.614203993519766], [-77.40503358408843, 34.61402280092908], [-77.40465106507892, 34.613785765296655], [-77.40457333663882, 34.6137357849987], [-77.40451652209579, 34.61373057812977], [-77.40434981304351, 34.61364967171402], [-77.40412233715017, 34.61354690685495], [-77.40403255865031, 34.61354713653651], [-77.40372815603138, 34.61341244354128], [-77.40337590201719, 34.61350002690132], [-77.40293980417889, 34.61335223434631], [-77.402896862308, 34.61323597089917], [-77.40279844746776, 34.613203920368136], [-77.40238859777277, 34.61300760941388], [-77.40215144420765, 34.612907594487766], [-77.40186101357173, 34.61280284714783], [-77.40175726896102, 34.6127780109853], [-77.40160976610889, 34.61252626642508], [-77.40148610092442, 34.61241161000463], [-77.40136309072173, 34.61233680320473], [-77.40112485582327, 34.61217164872437], [-77.40111277137231, 34.61201844125856], [-77.40096891799124, 34.612047236510925], [-77.40079046293805, 34.61198753575799], [-77.40077183316025, 34.611990021330364], [-77.4007409057415, 34.61198143881414], [-77.40057474863512, 34.61194029132132], [-77.40048871216875, 34.611931519284255], [-77.40029234660435, 34.611867174199276], [-77.40022085044583, 34.61183411148507], [-77.40018058026054, 34.61180064559101], [-77.39999175841811, 34.61168934972382], [-77.3997864134247, 34.611615407273675], [-77.39957480903831, 34.61154610955686], [-77.3994480535948, 34.61150428323374], [-77.39939224784399, 34.61147083783287], [-77.39927645320942, 34.611464420253895], [-77.39899808244746, 34.61139982453812], [-77.39833352714636, 34.61143391426045], [-77.3982097464088, 34.61153505251788], [-77.39800685448989, 34.61156624958784], [-77.39768770765725, 34.61168058335454], [-77.39751070679716, 34.612172210516015], [-77.39748951050663, 34.61227147356752], [-77.39750008958778, 34.612354723372135], [-77.39749557342545, 34.61269517148354], [-77.39742137096667, 34.612742714741465], [-77.39736319755411, 34.61277692301408], [-77.39722428015685, 34.61286348714139], [-77.39714456467578, 34.61287222158009], [-77.39702719256739, 34.6128851489868], [-77.39689324917254, 34.61292631610142], [-77.39663302134191, 34.61282884872148], [-77.39626915355866, 34.61290470097042], [-77.39584466437348, 34.613016998781376], [-77.39560350172198, 34.61313287494823], [-77.39545048176333, 34.61315733890295], [-77.39529294824992, 34.61318252294297], [-77.3950563025854, 34.61322022764569], [-77.39489338200859, 34.61324594840615], [-77.39482589937461, 34.613256602054676], [-77.39466212771069, 34.61320817507366], [-77.39460611992405, 34.61317222167017], [-77.39429035760097, 34.61315742821729], [-77.3942732647644, 34.61315417483794], [-77.39426795579588, 34.6131549515922], [-77.39426189874713, 34.61315500807169], [-77.39397728183296, 34.61309109769978], [-77.39387379056868, 34.613019741282386], [-77.39368358465104, 34.61304005534476], [-77.39347961170503, 34.61306856854222], [-77.39322914857851, 34.61315565400879], [-77.39294073368578, 34.613196195466905], [-77.39290220459345, 34.61335760017408], [-77.39269121000189, 34.613636023143236], [-77.39261518280347, 34.61374167780533], [-77.39255439641178, 34.6138323213042], [-77.39253277871018, 34.61400604775558], [-77.39247933661713, 34.61426771382389], [-77.3925082971668, 34.61446047230029], [-77.39251417984129, 34.61449666509248], [-77.39249403526463, 34.614569240384085], [-77.39247990632498, 34.61467699395953], [-77.39232353481863, 34.61468609594056], [-77.39229693464179, 34.6146689390764], [-77.39222284997632, 34.614649468138275], [-77.39205230861964, 34.61459277746388], [-77.3919027657269, 34.6145254648636], [-77.3915799258391, 34.61447423241479], [-77.39150859091139, 34.61445135597839], [-77.39145721591086, 34.61447042157113], [-77.39111441203951, 34.61442118756386], [-77.39088029212411, 34.6146706988975], [-77.39053372670581, 34.61474907309231], [-77.39032602469445, 34.614616977491565], [-77.38979469302971, 34.6150793481887], [-77.38960580272385, 34.61518005356143], [-77.38953757798804, 34.61524962328533], [-77.38938835248462, 34.61540179045895], [-77.38921099231523, 34.61558806483729], [-77.38917585387135, 34.61562814784585], [-77.38914329545584, 34.61598400228814], [-77.3891385420628, 34.61601796226801], [-77.38913379232655, 34.61602376190648], [-77.38913854070216, 34.61602819232879], [-77.38913021620503, 34.61643482151087], [-77.389130214343, 34.61644884554036], [-77.38913021248311, 34.61646286956941], [-77.38914320810645, 34.61665371718669], [-77.38915555963706, 34.61686975962071], [-77.38914834911422, 34.61728974071554], [-77.38914859083795, 34.61729533206455], [-77.38916497283462, 34.6173165047873], [-77.3893966835405, 34.617684135131086], [-77.38939440839927, 34.61783831192939], [-77.38953725463641, 34.617825048645855], [-77.38969708694695, 34.61781297282198], [-77.38993144525966, 34.61789049603716], [-77.39009809084413, 34.61782811001087], [-77.39032565253763, 34.61781601629842], [-77.39046249060297, 34.61767784785177], [-77.39070184939912, 34.61749597611075], [-77.39071988848696, 34.617475096952525], [-77.3910227450916, 34.6173513197063], [-77.39111409934091, 34.617340659200245], [-77.39123109698605, 34.6172936652097], [-77.39150830289321, 34.6172646954277], [-77.39168976840199, 34.61712440676804], [-77.39171524024236, 34.617127002818464], [-77.39190249913773, 34.617256233495176], [-77.39194751561442, 34.61726789435677], [-77.39229669519197, 34.617248112452415], [-77.39234323983686, 34.61725932424959], [-77.39257968182214, 34.61734500098515], [-77.39269088211731, 34.617343065051564], [-77.3928255002294, 34.61740207356351], [-77.39286574258612, 34.61742021479344], [-77.39288797150908, 34.617442262078455], [-77.39298501163563, 34.61748359464276], [-77.39308506143789, 34.617540528418154], [-77.39310566633007, 34.6175517677467], [-77.39347923577952, 34.61782625126612], [-77.39354900469202, 34.617859457640456], [-77.39368240594679, 34.617915369478055], [-77.39377391620121, 34.61800934448986], [-77.39387342147015, 34.617991578727526], [-77.39406294410318, 34.618064627581276], [-77.39407535572975, 34.618065779491474], [-77.39407671491695, 34.618077474631036], [-77.39394711569915, 34.61830176967294], [-77.39390896347909, 34.618345578840064], [-77.39358487569513, 34.61877857294325], [-77.39352659650844, 34.618838069222896], [-77.39347915238426, 34.61891076844541], [-77.39310172879382, 34.61925470349252], [-77.39269074458322, 34.61893254521557], [-77.39268347141625, 34.618908546227274], [-77.39241770072043, 34.61839185336337], [-77.39190237746767, 34.618521864798396], [-77.3917725538407, 34.61833058951901], [-77.39121856198878, 34.61838324638672], [-77.39111398926025, 34.618382321318045], [-77.39101707653535, 34.618404042261254], [-77.39038469060966, 34.61845450237201], [-77.39032556510678, 34.61857726296816], [-77.39004630031616, 34.618988032700514], [-77.39008307455545, 34.61928345659538], [-77.39001139124139, 34.61963203158984], [-77.39003246596357, 34.619824369522675], [-77.38965838535887, 34.62006305813249], [-77.38953697201391, 34.62010803875942], [-77.38946797630952, 34.62014696119404], [-77.38941982504949, 34.62022820665301], [-77.389451093774, 34.62031616267452], [-77.38953694964896, 34.62028985292124], [-77.3897513600545, 34.62041135064941], [-77.3899761643325, 34.620524073497116], [-77.38997646884492, 34.62057252985443], [-77.38998858539003, 34.62063267433904], [-77.39005083809583, 34.62077409285587], [-77.38993779428675, 34.62099543846835], [-77.38993458460727, 34.621003136130156], [-77.38993107548937, 34.62100503804201], [-77.38992924767199, 34.62100587395378], [-77.38973395860238, 34.62108957180689], [-77.389622031718, 34.62113993854598], [-77.38953684001936, 34.6211846533275], [-77.38934216745074, 34.62129818306781], [-77.38914261010919, 34.621306511889124], [-77.38903431806304, 34.62144087090245], [-77.38892068702435, 34.62157386234443], [-77.38891145354995, 34.62182407497243], [-77.38885865525589, 34.62200737165598], [-77.38889782606361, 34.62216278084513], [-77.38888812271809, 34.62242769169255], [-77.38902405594001, 34.62253560993795], [-77.38914242686056, 34.622757083526665], [-77.38916500643444, 34.62281234666528], [-77.38919267702089, 34.62286249030061], [-77.38927958524039, 34.623072639077954], [-77.38933949201339, 34.623128543065945], [-77.38938233717552, 34.62320558586466], [-77.38939097739777, 34.62336114514246], [-77.3894014009957, 34.62348184236537], [-77.38929193211044, 34.62348207530425], [-77.38914233695829, 34.62347315061087], [-77.38908645931711, 34.623460520793294], [-77.38899165153234, 34.623424193233575], [-77.38886685383133, 34.62340776508035], [-77.38874812384142, 34.62337906024081], [-77.38853284078085, 34.62332803948082], [-77.38854995726203, 34.6231144608608], [-77.38836711661082, 34.62292735986912], [-77.38820920467111, 34.62268148808764], [-77.3879597933902, 34.62252423152256], [-77.38780486346477, 34.62232615603028], [-77.3878529357713, 34.62215234131224], [-77.38791040856763, 34.62209080511561], [-77.38795987187625, 34.621964758344106], [-77.38828109980003, 34.621666057419446], [-77.38833164138637, 34.621634546545415], [-77.3887435141655, 34.62117483437523], [-77.38874534319213, 34.6211712647736], [-77.38874841510638, 34.62115373141687], [-77.38894696815171, 34.62051012176609], [-77.3889875078784, 34.6202905270826], [-77.38892036380908, 34.62011516261204], [-77.38874859500177, 34.619793169189094], [-77.38865219987323, 34.61959357427383], [-77.38851959994449, 34.61950884140218], [-77.38835443300846, 34.61945814194677], [-77.38799658191064, 34.61954506426245], [-77.3879602155186, 34.61953532973242], [-77.38793508468599, 34.61956603602226], [-77.38788737318274, 34.61959997498013], [-77.38756598235273, 34.619713625039395], [-77.38723053169788, 34.61975794223761], [-77.38717176579172, 34.61977099480048], [-77.38708241315749, 34.61981222898442], [-77.38677752722005, 34.619965178706124], [-77.3865862839641, 34.62000611451438], [-77.38638329127616, 34.62013127505526], [-77.38632822150846, 34.620189973139816], [-77.38618742524174, 34.620269566199646], [-77.38604369353465, 34.62034913832892], [-77.38598904008015, 34.62037973127602], [-77.38584671519037, 34.62047193875299], [-77.38559478873246, 34.620615091226156], [-77.38549420415633, 34.62068572691332], [-77.38527728800578, 34.62082530552619], [-77.38520053016668, 34.62087874560845], [-77.38493998039192, 34.621017899450436], [-77.38480623661444, 34.62132416529177], [-77.38463753628183, 34.621584998279836], [-77.38461035816101, 34.62177055255975], [-77.38451330907446, 34.62189373681688], [-77.38447384165157, 34.622002509153745], [-77.38441188631882, 34.622055961780845], [-77.38428920552201, 34.62210928610179], [-77.38410008421035, 34.622179867395715], [-77.38401765317879, 34.62212823662103], [-77.38364609185341, 34.62230963702573], [-77.38359855092264, 34.62231416937088], [-77.38358473406612, 34.62234291945567], [-77.3832291386739, 34.62250581100423], [-77.382942239353, 34.622551096370756], [-77.38265694511307, 34.62266824741368], [-77.38244068455236, 34.622555314660325], [-77.3821952234234, 34.62270338936255], [-77.38194672085532, 34.62268634014235], [-77.38165224546292, 34.62252918207867], [-77.381042409112, 34.62247702901307], [-77.38086382994886, 34.622399152804675], [-77.38077170486062, 34.622422900914], [-77.38046958742798, 34.62248871153608], [-77.38021842417216, 34.62255749364164], [-77.38007534336653, 34.6225810725137], [-77.37953598760909, 34.62277003545087], [-77.3792867175912, 34.62331811634556], [-77.37905219739373, 34.62342055092758], [-77.37860513279398, 34.623600124096484], [-77.3784981942299, 34.62359537608266], [-77.3782696771002, 34.62377932943071], [-77.37770962060802, 34.62404342713773], [-77.37754255252597, 34.624307303916325], [-77.37749610725271, 34.624493841640955], [-77.37731523646556, 34.62462005583002], [-77.37712114843015, 34.62476343776663], [-77.3771061742875, 34.62477511138488], [-77.37692093856083, 34.6248590500789], [-77.3767689532623, 34.625023147208964], [-77.37660690866976, 34.62513294357775], [-77.37652660958976, 34.625202414685134], [-77.37637915362711, 34.625345099839876], [-77.37615401454426, 34.62551288513814], [-77.37613228760962, 34.62550919585576], [-77.3761071339911, 34.62551595053876], [-77.3760704793005, 34.62554831641483], [-77.37548740756134, 34.625787024238456], [-77.37539245715129, 34.62607053513544], [-77.375343636234, 34.62611823327428], [-77.37505145587123, 34.62622959321675], [-77.37494929984096, 34.6264444449437], [-77.3748925595826, 34.626506010461384], [-77.37488115534498, 34.62656873721499], [-77.37475210506085, 34.62669345109678], [-77.37470123464597, 34.62675216674903], [-77.37457398787498, 34.62682525676845], [-77.37455494041332, 34.62683749790381], [-77.37436865759486, 34.62686651088498], [-77.37434479128325, 34.626872283524804], [-77.37416069576086, 34.62683923534594], [-77.3739255122342, 34.62687767404576], [-77.37376643797, 34.62688341911507], [-77.37318959191322, 34.62704032137955], [-77.37297787835607, 34.62710597903883], [-77.37239457605249, 34.62777595849694], [-77.37297747793471, 34.62837160242166], [-77.37308175609293, 34.62841380998276], [-77.3733587419874, 34.62848623085892], [-77.37337168156043, 34.628525799836005], [-77.37344979166583, 34.628813467267136], [-77.3734537131355, 34.628897113267136], [-77.37346100810504, 34.628992411374774], [-77.37351308304761, 34.62931312226258], [-77.37351304556796, 34.6295851012855], [-77.37376562231691, 34.629544122879295], [-77.37411613433864, 34.62969789222245], [-77.37415983349318, 34.62969640876041], [-77.3742552995281, 34.62973360852693], [-77.37437307679124, 34.62980872213256], [-77.37455400932569, 34.62997297803676], [-77.37457249481182, 34.62998975972899], [-77.37458946255133, 34.630007227694975], [-77.3747568768043, 34.63018914952109], [-77.37478388732644, 34.63022685225987], [-77.37487273464318, 34.63039099087774], [-77.37486818313475, 34.63047772743472], [-77.37494812109156, 34.63047880077905], [-77.37512561331215, 34.63077913098041], [-77.37518971326134, 34.63093415978352], [-77.37523227657678, 34.63106994469419], [-77.37521802275226, 34.63119038217877], [-77.37534210940024, 34.63143422203998], [-77.37537579904925, 34.63155590328054], [-77.3753891853652, 34.6315902911615], [-77.37543339093355, 34.63168229551348], [-77.3754902313179, 34.63226510136599], [-77.37573610744738, 34.63238917136056], [-77.37573621322015, 34.63238943150934], [-77.3757365270506, 34.63238983834955], [-77.37583274070892, 34.63269594008089], [-77.37603828137341, 34.63267139836144], [-77.3761302879317, 34.632715107591444], [-77.37623689751082, 34.6327418797396], [-77.37635163083364, 34.63291151010869], [-77.37670617383704, 34.63286990009263], [-77.37691877164268, 34.63293897081867], [-77.37705956709097, 34.63289634936332], [-77.37754375732263, 34.63297820740448], [-77.37756316034779, 34.63313058859542], [-77.37770726242705, 34.633150790593845], [-77.37779745608374, 34.63303875605872], [-77.37821593691119, 34.63288138450774], [-77.37845931893726, 34.63280694184233], [-77.37849591529977, 34.632719450798895], [-77.37853230999193, 34.632796600918425], [-77.37855665067143, 34.632832306133494], [-77.37879905441471, 34.63289547524798], [-77.37889011244506, 34.633025631864754], [-77.37893849893626, 34.63314972666472], [-77.3792373565749, 34.633532861968625], [-77.37922351908409, 34.6335853671224], [-77.37925505348873, 34.633612259602906], [-77.37926210952487, 34.6344052974543], [-77.37926161533628, 34.634429003976905], [-77.37926216376118, 34.6344524896853], [-77.37928402654455, 34.634542701150885], [-77.37936318679003, 34.63517809580725], [-77.37940206632453, 34.63525789595214], [-77.37955207819144, 34.63579645568238], [-77.38007230801753, 34.63577266908028], [-77.38019622844627, 34.635859159756244], [-77.38034527699331, 34.635971145279896], [-77.38060938100365, 34.63620380681337], [-77.38086073998487, 34.63641525058094], [-77.38106293085545, 34.63649914885271], [-77.38125501459221, 34.63647955557341], [-77.38161128264099, 34.63663788511362], [-77.38163123415467, 34.636654428137454], [-77.38164926242649, 34.63667671069295], [-77.38170388830885, 34.63668336479442], [-77.38191947956503, 34.636593482261766], [-77.38240370653804, 34.63648692232335], [-77.38243787967069, 34.63647940201888], [-77.38296987805028, 34.63644214392775], [-77.38301349783974, 34.63666512972361], [-77.38269164344848, 34.637604841888674], [-77.38220291732245, 34.638250899597374], [-77.38164890091286, 34.63843923313532], [-77.38156864789649, 34.63842869552], [-77.38090953921423, 34.638437235374106], [-77.38086030772217, 34.638428161109985], [-77.3808509807994, 34.638435630381494], [-77.38009230456444, 34.638532766411366], [-77.38007168796189, 34.63853581197239], [-77.3800588767613, 34.63854598819199], [-77.37977135484802, 34.63850002968094], [-77.37967739467811, 34.638513046214925], [-77.37954410359055, 34.63842165325142], [-77.37953482754584, 34.638364254704065], [-77.37940188948997, 34.63822985788078], [-77.37928318470959, 34.6381333839779], [-77.37916881626597, 34.637962059365826], [-77.3790459773427, 34.63785656366652], [-77.37875975269762, 34.637612412680724], [-77.37849472262518, 34.6375920739623], [-77.37827078173737, 34.637543664108975], [-77.37815047052388, 34.637507132726526], [-77.37810044942361, 34.63750684287355], [-77.37799253015766, 34.63746752916093], [-77.37787622611073, 34.63741739368143], [-77.37770619532074, 34.63734900165185], [-77.37761709136919, 34.63730921327987], [-77.37705675157389, 34.637293965958335], [-77.3769667541079, 34.637254036961735], [-77.37691763073614, 34.63726458034974], [-77.37687458510287, 34.63727385610771], [-77.37686420827522, 34.63732169822601], [-77.3765232610192, 34.63755184706322], [-77.3763717006077, 34.63765402849667], [-77.37622603984198, 34.63773359406551], [-77.37612890438308, 34.63778071930049], [-77.37607022034466, 34.6377974296601], [-77.37575161809099, 34.63788815153431], [-77.37573458091845, 34.6378814199146], [-77.37572065639132, 34.637895968511955], [-77.37562124778948, 34.63792527401884], [-77.37534025196143, 34.637998044017344], [-77.37531147405844, 34.63800087233686], [-77.37514309754562, 34.63801923148258], [-77.3749640010244, 34.638039371024234], [-77.37494594277207, 34.63804126819044], [-77.3749290299987, 34.638043173771656], [-77.37455170152089, 34.6378488143543], [-77.37431615834237, 34.63794225450147], [-77.37397191093574, 34.637963100632945], [-77.37376307723589, 34.63795429207181], [-77.37344347225039, 34.63831943521622], [-77.37336865224566, 34.63837507522818], [-77.37323925415706, 34.63855358775464], [-77.37303101442478, 34.63866173851864], [-77.37297427355938, 34.638633121553354], [-77.37287514003481, 34.63863854869817], [-77.37257993884198, 34.63874288008658], [-77.37228629369481, 34.63872170357416], [-77.3721856535181, 34.63869393872153], [-77.37197032317961, 34.638875571896136], [-77.37170963833432, 34.63924987363003], [-77.37139686358532, 34.639269363536], [-77.37118055092313, 34.63960561023213], [-77.37115103381873, 34.63984265106606], [-77.37107261468829, 34.64020273686435], [-77.37114749250803, 34.64026771885252], [-77.3712603348351, 34.64052947080592], [-77.37129945053958, 34.64066977202905], [-77.3713651577451, 34.64071836867884], [-77.37141158559244, 34.64073181467916], [-77.37167876035709, 34.641039621464735], [-77.37175793364463, 34.64108897783251], [-77.37181966462224, 34.64116859111839], [-77.37200029460755, 34.64141741545665], [-77.37204923302923, 34.64166068063448], [-77.37225056898272, 34.64212041080525], [-77.37228068743786, 34.64222287951959], [-77.37229176121146, 34.64232903771099], [-77.3723475605205, 34.64287790780008], [-77.37232047616331, 34.643061432445165], [-77.37216301364849, 34.643733122700404], [-77.37210523997382, 34.64393505779388], [-77.37210442722777, 34.64398506662159], [-77.37219197372502, 34.64434514250509], [-77.3723161855839, 34.64457856256769], [-77.37235957391087, 34.64474410594156], [-77.37231089707684, 34.64484470413878], [-77.37225893899733, 34.644940469644155], [-77.37219603869195, 34.645071043177076], [-77.37211624029327, 34.64519958238356], [-77.37211795136429, 34.645331689038706], [-77.3720490552886, 34.64563083378826], [-77.37226422237634, 34.645830495292856], [-77.37243856100514, 34.645832556406056], [-77.3726455526845, 34.64597081508826], [-77.37273393981336, 34.64604869375796], [-77.37282647782227, 34.646169039384255], [-77.37304612723669, 34.646337738508976], [-77.37310889985983, 34.64645466421932], [-77.373219168076, 34.64652920959819], [-77.3735122262985, 34.64680443038375], [-77.37376752464814, 34.64687068012401], [-77.37393790989292, 34.6469185807443], [-77.37407214024958, 34.6468439046116], [-77.37444050185714, 34.64683153665192], [-77.37456480791842, 34.64685185139081], [-77.37470242065785, 34.64674239661088], [-77.37470309295153, 34.646742603011205], [-77.37488620797173, 34.64685796901841], [-77.3751236584838, 34.646801886912634], [-77.37519843681511, 34.646818545807754], [-77.37524172422681, 34.64682424701114], [-77.37552275479489, 34.646839151836645], [-77.37552905372053, 34.646840270025024], [-77.37578217053434, 34.646902293939114], [-77.37587045030479, 34.64697583111008], [-77.3760356690999, 34.64698573110721], [-77.37628538589809, 34.64705412206045], [-77.37649953279877, 34.647128793331206], [-77.37654719127028, 34.64715657344271], [-77.37658281167188, 34.647162670322075], [-77.37677175617728, 34.647239335185134], [-77.37689310498108, 34.64728438907678], [-77.3771731847112, 34.647379932537945], [-77.37723679048413, 34.64740113649015], [-77.37726599331562, 34.64740895927693], [-77.37733495470484, 34.64743588821558], [-77.37774297646955, 34.64761277937557], [-77.37795946857452, 34.647809897450664], [-77.3781543593927, 34.64794660964218], [-77.37873206882382, 34.648466444291], [-77.37900783390785, 34.64855342692301], [-77.37943548526181, 34.648779507648186], [-77.37946717806314, 34.648792221647454], [-77.37950018104115, 34.64882607876058], [-77.37982184196497, 34.64923848107411], [-77.38030178907704, 34.64990105848452], [-77.38056714939567, 34.65005971544674], [-77.38086245718347, 34.650326716708946], [-77.38105180705291, 34.65044532680117], [-77.38139775804694, 34.650711913423855], [-77.38143056222714, 34.650736032022515], [-77.38166536975635, 34.65106027652709], [-77.38170435621726, 34.65125346995151], [-77.38172475923601, 34.65162563781968], [-77.38170972835911, 34.65189820672559], [-77.38176983885724, 34.65227291199762], [-77.38206924512096, 34.65231675448757], [-77.38233080760386, 34.652310334786996], [-77.38248388001917, 34.65233368411687], [-77.38273452629716, 34.65244031267254], [-77.38283458889177, 34.652461098126146], [-77.38337644021333, 34.652447897187386], [-77.38341777720088, 34.65245447790755], [-77.38359562987519, 34.65248273898065], [-77.3836861400417, 34.65249721175172], [-77.38370722838569, 34.65250047546442], [-77.38374488558176, 34.65250944909873], [-77.38395117682501, 34.65254653761423], [-77.3840698768056, 34.65271115113019], [-77.38417469998014, 34.65282507039036], [-77.38426881587085, 34.653066249888184], [-77.38434164786355, 34.65322411398226], [-77.38450499834163, 34.65355183367458], [-77.38421363740521, 34.653424529155984], [-77.38399125506916, 34.65327233258941], [-77.38370256238865, 34.6530393021487], [-77.3835393091127, 34.65291250711957], [-77.38348878204455, 34.65288838192971], [-77.38344086434691, 34.65276760405728], [-77.38332389059329, 34.6526405632376], [-77.38294638922753, 34.6527650664887], [-77.38279609959395, 34.65274588423929], [-77.3827078482035, 34.65271229778459], [-77.38229411754914, 34.65282360919957], [-77.38218550354915, 34.652893737637754], [-77.38191790620806, 34.65313561419484], [-77.3819158786359, 34.653137743680794], [-77.38177740660402, 34.65357696284094], [-77.38178031659919, 34.65367822529253], [-77.3818222421217, 34.65426911208899], [-77.38183236671449, 34.65439369420209], [-77.38181997141973, 34.65441514037745], [-77.38183938914322, 34.654433534049225], [-77.38184516968775, 34.65507255579775], [-77.38187809915027, 34.6552511764673], [-77.38191190802976, 34.655439044591574], [-77.3820139349117, 34.65589687922004], [-77.38205180937166, 34.65607130947042], [-77.38208910883499, 34.656237094169754], [-77.38223984788634, 34.6564674539689], [-77.38225576951865, 34.65648141629478], [-77.38228631843083, 34.65657219453811], [-77.38237256102055, 34.65682457424368], [-77.38238683162794, 34.65686924709095], [-77.38239528985237, 34.656919471781116], [-77.38241137997176, 34.6571928127586], [-77.38222950998554, 34.657431772778544], [-77.3822843519399, 34.6577273816584], [-77.38237721705192, 34.657964597406604], [-77.38263372666975, 34.658523343337905], [-77.383486518281, 34.65934992149826], [-77.38389818383487, 34.659547320001536], [-77.38485706615623, 34.65988225457088], [-77.38487599656143, 34.659888744531514], [-77.38488426382975, 34.65989159915643], [-77.38490258686059, 34.65989921485097], [-77.38559667351626, 34.660138051074284], [-77.38599535239126, 34.66017860750729], [-77.38614898662637, 34.6602150918031], [-77.38643865657956, 34.660278024469015], [-77.3864606136443, 34.660637665007265], [-77.38646497235024, 34.66065900817691], [-77.38644968335993, 34.66067537875732], [-77.38615643444153, 34.661034855383036], [-77.38597279401019, 34.66121414490888], [-77.38586274233272, 34.66141261692905], [-77.38577392162892, 34.66148521495873], [-77.38559148612413, 34.6615720591142], [-77.38534035478642, 34.66158769643886], [-77.38524341222924, 34.66159310024692], [-77.3849910608742, 34.661579331147834], [-77.38483935480726, 34.661510059897424], [-77.38440321206451, 34.66154321074383], [-77.38431935515071, 34.661516335169665], [-77.38413569996574, 34.66146694948627], [-77.38408373165917, 34.66130354289399], [-77.38366654566885, 34.66138034993107], [-77.3830936484226, 34.661932781562825], [-77.38296938403866, 34.66203859099765], [-77.38287930245495, 34.6621272276204], [-77.38288924607873, 34.66222367768263], [-77.38253783766113, 34.662932252608336], [-77.38246253982962, 34.663159371693645], [-77.38246544338122, 34.66333872160296], [-77.38240357667803, 34.66345133054952], [-77.38221891162061, 34.663680292070964], [-77.3820800473907, 34.66380266154367], [-77.38188536075884, 34.66403695187867], [-77.38175934655338, 34.66415650179427], [-77.38172636801087, 34.66423545789236], [-77.38167231728829, 34.664343942624285], [-77.38153340048476, 34.66459432412838], [-77.38137621473112, 34.664771031012734], [-77.38141649022964, 34.66493528804474], [-77.38159519398022, 34.6650378953066], [-77.38163708913439, 34.66515966032463], [-77.38175974413946, 34.665205666153085], [-77.38194763469984, 34.665314750289866], [-77.38210713415032, 34.6653359664588], [-77.38220370472226, 34.66538828625105], [-77.38230610571526, 34.66543292519084], [-77.38236338932121, 34.665484022087846], [-77.38257145965157, 34.665581389443155], [-77.38256056444865, 34.66563121710394], [-77.38259943869635, 34.66570178261554], [-77.38306408024712, 34.66595092525351], [-77.38311421630097, 34.66599008701194], [-77.38311694838197, 34.66599124021314], [-77.38314348848718, 34.66599008633106], [-77.38338699493963, 34.66608115148597], [-77.38338877011641, 34.66617615872135], [-77.38362146365823, 34.66630437779992], [-77.38370317741644, 34.6663282744956], [-77.38387107966517, 34.66637737609899], [-77.38415980119794, 34.666511423416594], [-77.38444262082542, 34.66654729030531], [-77.38445582894816, 34.66654628237027], [-77.38472696950518, 34.66661901168287], [-77.38521145630828, 34.666577875516346], [-77.38533700706832, 34.666578702178086], [-77.38542931805054, 34.666575842826845], [-77.38563889379827, 34.66656935129845], [-77.38591630317198, 34.666564463313925], [-77.38593949662814, 34.666564428627254], [-77.38595579644465, 34.66656459617064], [-77.38600976437023, 34.66657048648263], [-77.38617910386338, 34.666589731997576], [-77.38622420103046, 34.66661435693004], [-77.3863601753321, 34.66664740246195], [-77.38648803176045, 34.66673630332498], [-77.38676416176123, 34.666677781112455], [-77.38682715798612, 34.666681983141395], [-77.38708743155257, 34.66673268641617], [-77.38729109505205, 34.66671890674742], [-77.3876925888197, 34.66670920041111], [-77.38826586048471, 34.66673246442851], [-77.38828411515186, 34.66673274299476], [-77.38829877854177, 34.6667312721523], [-77.38835260072172, 34.666735461764134], [-77.38877471277324, 34.66675894957703], [-77.38886334180611, 34.66679872296142], [-77.38897790835117, 34.66678116475192], [-77.38922184479146, 34.66677105260608], [-77.38942730392014, 34.66676831695588], [-77.38951778740456, 34.66675141044547], [-77.38997898436885, 34.66665747614594], [-77.39018823329971, 34.666648878077574], [-77.39028153809382, 34.6666696831134], [-77.39076495236404, 34.66686977248593], [-77.39121605468736, 34.66703417735607], [-77.39134625314534, 34.66707486309713], [-77.39147172741187, 34.66712095685416], [-77.39154142627893, 34.66702420658727], [-77.39180122433508, 34.66691184611781], [-77.39187246037974, 34.66686054658289], [-77.39205354030156, 34.66684517980238], [-77.39219206060085, 34.66680313830483], [-77.39228581191465, 34.666811187991534], [-77.39238253117092, 34.66681540987057], [-77.39243938663236, 34.66683374786029], [-77.39260559011927, 34.666900975702596], [-77.3926635111567, 34.66695132946328], [-77.39276132049793, 34.66698647415774], [-77.39313838981712, 34.667125073652684], [-77.39324300922034, 34.6671626486211], [-77.39332568813437, 34.667161796493176], [-77.39346991177344, 34.66720996207867], [-77.39354261352315, 34.667234297952874], [-77.39361250744994, 34.66725704227829], [-77.39376960658521, 34.667308123846055], [-77.3938269906301, 34.667358501320365], [-77.39392497896239, 34.66739427195669], [-77.39433492083968, 34.66751865778498], [-77.39441300955943, 34.66754732789649], [-77.3944666069333, 34.667532362338356], [-77.39469458612268, 34.66759180596293], [-77.3947137572558, 34.66761503559933], [-77.39499064169458, 34.667691483540395], [-77.39500564491465, 34.667713323930585], [-77.39505776345639, 34.66769637096204], [-77.39552358653961, 34.66776552103082], [-77.39566498446149, 34.66764909172602], [-77.39587637206341, 34.66759452788895], [-77.39594360561503, 34.66744738912743], [-77.39609365126896, 34.667275273853704], [-77.39619600787212, 34.6673692819642], [-77.39634272610017, 34.6675213350085], [-77.39637191349209, 34.66756168564813], [-77.39639216755607, 34.66760445112138], [-77.39659468391217, 34.66791508497871], [-77.39661524215589, 34.66805541299479], [-77.39665225377249, 34.668254676447226], [-77.39659074482324, 34.66836304394808], [-77.39657199357903, 34.6687330004825], [-77.39655122206406, 34.66877845965924], [-77.39659834896148, 34.66885059769135], [-77.39663770478919, 34.66884054334204], [-77.39703459124058, 34.669070551052016], [-77.39715686353222, 34.66913440391258], [-77.39734582219802, 34.669251069149496], [-77.39750959642816, 34.669318745174586], [-77.39769857696356, 34.6694762138288], [-77.39785957934609, 34.669619084979466], [-77.39816825421724, 34.670066693806035], [-77.39840604320388, 34.6702837918391], [-77.39871245052102, 34.6703999657105], [-77.3989599656156, 34.67039594635622], [-77.39908347127275, 34.67044755283361], [-77.39931018775722, 34.67054842515428], [-77.3993354466349, 34.670591998934434], [-77.39937398215982, 34.670699301968064], [-77.39939332460163, 34.67075204963526], [-77.39939572992213, 34.670763627899014], [-77.39942246107766, 34.6709020377478], [-77.39946034418922, 34.671136015151184], [-77.39946747004146, 34.67118002623644], [-77.39949047101668, 34.671264089419864], [-77.3995470984063, 34.671504822753825], [-77.39955272087285, 34.671590789281424], [-77.39961491869624, 34.67170836124957], [-77.39981065840271, 34.672156241700826], [-77.39988850333285, 34.672343376261814], [-77.40000491070973, 34.672574004802286], [-77.40010949008645, 34.67282000675322], [-77.40025599528344, 34.673082738374916], [-77.4002862476841, 34.673161460228414], [-77.40033327299221, 34.67327366706581], [-77.40037804590075, 34.67346481527491], [-77.40037871801596, 34.67347340575352], [-77.40037725218308, 34.67347848493163], [-77.40038305776936, 34.67348056671669], [-77.40050077756317, 34.673795709095074], [-77.40052584935849, 34.67386282775344], [-77.4005635055391, 34.67396363480805], [-77.40061744950899, 34.67411612596951], [-77.40066152536129, 34.674252560536786], [-77.40067737084755, 34.67432875942396], [-77.40067369203808, 34.67441538791715], [-77.40061296158058, 34.674597516345244], [-77.40052754821676, 34.67464380039649], [-77.4005658532295, 34.67473879067806], [-77.40042155401525, 34.67503261786038], [-77.40038046397353, 34.675151457686084], [-77.40036508266164, 34.675268857331474], [-77.40030411029737, 34.6755887492451], [-77.40018145337388, 34.675640937132414], [-77.40025430807351, 34.67576138559918], [-77.40032674439001, 34.675886932941424], [-77.40042908493547, 34.67613481052577], [-77.40075866192578, 34.67640214303618], [-77.40077704932631, 34.6764359993941], [-77.4008051571419, 34.67644744407712], [-77.4008430384163, 34.67647058382307], [-77.40095949940019, 34.67658306180723], [-77.40104097080014, 34.67673941890297], [-77.40106109305233, 34.67676384959552], [-77.40105375278077, 34.67681536416335], [-77.40099504811909, 34.67689794673191], [-77.40093020944623, 34.67698736460271], [-77.40087750286085, 34.67700288936449], [-77.40076039468454, 34.67708365406513], [-77.40058512829906, 34.67720698569101], [-77.40039026446055, 34.677226327065235], [-77.40030844708745, 34.67752410048696], [-77.40018267925149, 34.67787795261539], [-77.40020958626853, 34.67842730011424], [-77.40020428361623, 34.67844466355871], [-77.40021081431561, 34.67845747102496], [-77.40001660256605, 34.678859838205504], [-77.39992429414579, 34.67890579860679], [-77.39985229557692, 34.6793393002744], [-77.3998281989698, 34.679431307427905], [-77.39986432937829, 34.67949463127129], [-77.39990233709993, 34.67956390780504], [-77.40001535513382, 34.67960610202577], [-77.40041673376953, 34.680000275995226], [-77.40050396965937, 34.680120497914324], [-77.40095878649237, 34.680341194246644], [-77.40099792789262, 34.68036080152541], [-77.40123916117484, 34.68047938789498], [-77.40125734164754, 34.68049071446397], [-77.40144726656655, 34.68061971417486], [-77.4014885743924, 34.68072446286324], [-77.40166922761583, 34.68091445841357], [-77.40166090839462, 34.6809769332187], [-77.40195993952744, 34.68129117226259], [-77.40196383153176, 34.681295989575], [-77.40196437524996, 34.68129668758684], [-77.40196503904293, 34.6812975707699], [-77.40247439739375, 34.68174564643928], [-77.40272896062352, 34.68180108335184], [-77.4028128853331, 34.68183543558005], [-77.40306376370224, 34.68192328700998], [-77.4033355434601, 34.682045221728316], [-77.40335650383393, 34.68205502223744], [-77.40362418905002, 34.68220084395848], [-77.403921737304, 34.68225599482177], [-77.40393569715513, 34.68225976889809], [-77.4042289603377, 34.68232531375012], [-77.40446631354965, 34.68239867478581], [-77.40460131254139, 34.68242846586598], [-77.40480742676817, 34.68254060115354], [-77.40522708100593, 34.68243929895314], [-77.40539241902344, 34.682417284968224], [-77.40549581804098, 34.6823763760411], [-77.40576310757909, 34.682275487747084], [-77.40604535667141, 34.68216654985494], [-77.40613300827026, 34.68213240178391], [-77.40622100415872, 34.68208509635595], [-77.40627957315255, 34.68217475932715], [-77.40634203468213, 34.68227038042379], [-77.40654370949416, 34.68251091618688], [-77.40669209884321, 34.682671111671034], [-77.40688674361098, 34.68281416229946], [-77.40704753646506, 34.68288026305713], [-77.40727496544903, 34.68287122272662], [-77.40758230911084, 34.68300687619016], [-77.40775429179817, 34.6827646247505], [-77.40780671729406, 34.68262578612588], [-77.40800137641662, 34.682575693982486], [-77.40824805187435, 34.68259954999775], [-77.40842391057706, 34.682439837832376], [-77.40861165059415, 34.682446155090574], [-77.40868764236026, 34.68241876543874], [-77.4089837431719, 34.68230665423099], [-77.40933670956605, 34.682200150220055], [-77.40936960032077, 34.682189670340385], [-77.4093969945161, 34.68218210322878], [-77.40979903110616, 34.682143961700234], [-77.41001000106891, 34.68187664407498], [-77.40998417912026, 34.68169866798381], [-77.40995232136837, 34.68153534282408], [-77.40982258910637, 34.68125194003048], [-77.40972026708418, 34.681065778353705], [-77.40944854535371, 34.68085281649854], [-77.40918419976457, 34.680704099588745], [-77.40901534318539, 34.68058719331225], [-77.40892697239227, 34.680485950205956], [-77.40888267612958, 34.68036389247476], [-77.4088510858121, 34.680209374322274], [-77.40873648012546, 34.68003735964893], [-77.4085230084668, 34.67967889770216], [-77.40843087717417, 34.67949198911847], [-77.40830870930839, 34.67930175837233], [-77.40800176530149, 34.678937352440094], [-77.40802297778049, 34.678769469743784], [-77.40785451661617, 34.678657418246665], [-77.40775158603137, 34.678290668841775], [-77.40782587100543, 34.67795901667206], [-77.40747235154785, 34.67776438988267], [-77.40738359632596, 34.677602750937915], [-77.40723378958984, 34.677313335636256], [-77.40701268039697, 34.67713901583552], [-77.40672693990594, 34.67711838192083], [-77.4066765932456, 34.67709943893194], [-77.40641217497027, 34.67699995062781], [-77.40639621934608, 34.67699323078473], [-77.40626786947139, 34.676945086143704], [-77.40623615508413, 34.6769215873053], [-77.40620507649554, 34.67684979900855], [-77.40627107949945, 34.67674669272038], [-77.40637034590272, 34.67668898895792], [-77.4064318906521, 34.676635677421274], [-77.40659648841833, 34.676363534554035], [-77.40675487427711, 34.67626444417542], [-77.40673682536864, 34.67618163812353], [-77.40688874348663, 34.67588668252229], [-77.40705878989485, 34.675811685257], [-77.40729367908826, 34.67550299825378], [-77.40743149646416, 34.67538300398937], [-77.40742718112433, 34.67527117269624], [-77.40740779277596, 34.6748155792286], [-77.40738927123905, 34.6745704429402], [-77.407151612442, 34.67444669333632], [-77.40678418361215, 34.674219203230926], [-77.40647828300176, 34.67405780918686], [-77.40605389423607, 34.67381203985953], [-77.40603023898791, 34.67377429069001], [-77.40619184151916, 34.673335715700226], [-77.40621150873123, 34.673282259527845], [-77.40621424030206, 34.67327956296089], [-77.4062169624274, 34.67327415277187], [-77.40662280155999, 34.67245874716842], [-77.40673178973144, 34.67234245211659], [-77.4074462031526, 34.67230949674669], [-77.40754680125661, 34.67206859098951], [-77.40783136361712, 34.67170797626652], [-77.40791275712289, 34.67163755242355], [-77.40793055119792, 34.67160553503018], [-77.40804334017321, 34.67136738991929], [-77.40815192055409, 34.67121951993012], [-77.40817430725703, 34.67116997073751], [-77.40816090905517, 34.67112415163437], [-77.4082364285095, 34.670983686441254], [-77.40826626093933, 34.67092259216625], [-77.40832868865124, 34.67083098365813], [-77.40835122255173, 34.67079740392261], [-77.40847869923536, 34.67071738463682], [-77.40860107747307, 34.67054765939734], [-77.40865109146729, 34.670539825314606], [-77.40893666187822, 34.67049509375488], [-77.40908440266526, 34.670500567660156], [-77.40933628472004, 34.67045842032869], [-77.40957638259334, 34.670498564420505], [-77.40993022680352, 34.67066630045202], [-77.4101098354384, 34.67075737783788], [-77.40991861849534, 34.671117200038765], [-77.40977783970553, 34.67117208821785], [-77.40961753447152, 34.671372788660726], [-77.40954205503633, 34.671648687600296], [-77.40954595476597, 34.67188532467439], [-77.40951337793096, 34.67195055833148], [-77.40941970672824, 34.67214604114693], [-77.40941042731913, 34.672161742478735], [-77.40927715176358, 34.672312262095666], [-77.40916414030616, 34.67249096300656], [-77.4090688022028, 34.67260129898001], [-77.40891142840218, 34.67279496932826], [-77.40866004777732, 34.67279902508068], [-77.40851425410504, 34.672966332114086], [-77.40844291626452, 34.67323819638748], [-77.40814024147816, 34.67395368018946], [-77.40825475542346, 34.674209377646235], [-77.40830433444489, 34.674891452015935], [-77.40830930692336, 34.67507930025369], [-77.40833003135931, 34.67513835927133], [-77.40831874002738, 34.675233378188075], [-77.40831790442226, 34.675693240825495], [-77.40798676429846, 34.675988082741085], [-77.4077338413469, 34.67577286890322], [-77.4077897919404, 34.676067533115805], [-77.40779717646079, 34.67618563000436], [-77.4078624314033, 34.67641742015615], [-77.40796850199926, 34.676689206458335], [-77.40823223757067, 34.67689681265233], [-77.40834397616202, 34.67696726424689], [-77.40853914894154, 34.67709031974288], [-77.40887531068257, 34.67734519162523], [-77.40897676338167, 34.67747889429583], [-77.40905506872886, 34.677628606570316], [-77.40949872923788, 34.678153823746825], [-77.40979929355011, 34.67858002252867], [-77.41009757308888, 34.67879668180758], [-77.4106338870676, 34.67929937248972], [-77.41067239899078, 34.6794495607121], [-77.41079147450274, 34.67957942575133], [-77.41107466714821, 34.67974172393346], [-77.411356061186, 34.68005703461202], [-77.4114663060657, 34.68014978961785], [-77.41180351116336, 34.68051033013327], [-77.41202808164769, 34.68066936448284], [-77.41236475066987, 34.68078509338921], [-77.41262250913375, 34.68086771815044], [-77.41265772302135, 34.68087981721311], [-77.41268302795805, 34.680876305302604], [-77.41294364844937, 34.680956912088526], [-77.4128839368501, 34.68120492572675], [-77.41288393077798, 34.68120496954886], [-77.4128839084229, 34.68120501094706], [-77.41279541769377, 34.68143419336105], [-77.41278047781098, 34.6814483257881], [-77.41266977650923, 34.68160274241946], [-77.41255119009826, 34.681647649997984], [-77.41235587677892, 34.681837420818404], [-77.41195712700082, 34.68199888754888], [-77.41219351494433, 34.682385739814954], [-77.41239652959958, 34.68288844041263], [-77.41243852399381, 34.68317622198618], [-77.41248590761732, 34.68330214605594], [-77.41252110479175, 34.68358811972891], [-77.41251600493095, 34.68359556457431], [-77.41249610739354, 34.68359854838163], [-77.41217775962991, 34.68364397783848], [-77.4120532407606, 34.6835867683942], [-77.41166405814006, 34.68349931922606], [-77.41160644078165, 34.68340395602534], [-77.41144705888337, 34.683343386485994], [-77.41104970596314, 34.68311357689249], [-77.4105225074878, 34.683327378819754], [-77.4101680845459, 34.68360932014694], [-77.41046407282445, 34.683999922128976], [-77.41034663790015, 34.684230921454684], [-77.41034549163787, 34.68453412100223], [-77.41028977796717, 34.68477014311698], [-77.41034889475989, 34.68494066116991], [-77.410347603192, 34.68528572023438], [-77.41029749417862, 34.68533196180613], [-77.41033285506856, 34.685393697405694], [-77.410354811092, 34.685513248039804], [-77.4103688572187, 34.68582502352853], [-77.41038752484245, 34.68592258346487], [-77.41040149908208, 34.68612201830034], [-77.41040454309223, 34.6862080976739], [-77.41039756032623, 34.686259395292666], [-77.41037484241693, 34.686477263440054], [-77.4103685322789, 34.686717849731394], [-77.41033865307493, 34.6867673667976], [-77.41025436493938, 34.686966573095674], [-77.41024480139698, 34.68698793088014], [-77.41024174275519, 34.68698980823957], [-77.41023814277766, 34.687022590263766], [-77.41019795811413, 34.68723535020582], [-77.41019048173524, 34.68727315538199], [-77.410033343331, 34.68747600405263], [-77.41014870229093, 34.68770224193234], [-77.41026216385627, 34.68804611139058], [-77.41027815805631, 34.688094584850475], [-77.41028244514219, 34.688122286219745], [-77.41030755221607, 34.68821278060879], [-77.41036535195107, 34.68843085478269], [-77.41038488932426, 34.688496407468065], [-77.41039599206344, 34.688690464784166], [-77.41039813652007, 34.68872188507475], [-77.41040497581079, 34.688934373749134], [-77.41045842926954, 34.68920769370831], [-77.41046973229189, 34.68930605374393], [-77.41047494189642, 34.6893515334009], [-77.41049688300572, 34.68944856101106], [-77.41054879086846, 34.6896132747707], [-77.41054543175476, 34.689768474551286], [-77.41056067867311, 34.689896992316925], [-77.41054028467538, 34.69021696678736], [-77.410625194427, 34.690478682554186], [-77.41056687071341, 34.69088132761067], [-77.410531948658, 34.69100517289569], [-77.4105815621532, 34.69109244067201], [-77.4104734692486, 34.691476702420104], [-77.4103910111044, 34.69151497650937], [-77.41048520802367, 34.691701850299864], [-77.41052339994631, 34.692009393559374], [-77.41096079087744, 34.69227265057625], [-77.41096140890994, 34.69227303195431], [-77.41096417157739, 34.69227463408791], [-77.41118325848375, 34.69240366384562], [-77.41123515145708, 34.69243178150721], [-77.4112980971453, 34.692531246623375], [-77.41128747944269, 34.69258336303952], [-77.41127679978788, 34.69266357359261], [-77.41125809779251, 34.6927599607962], [-77.41106675111209, 34.69286963898779], [-77.4111432054045, 34.69308989209454], [-77.4111297362262, 34.69317123366331], [-77.41115887161618, 34.69330653095179], [-77.41115335141464, 34.693336775039285], [-77.4111309076059, 34.69345120075212], [-77.41108993328831, 34.69348649222546], [-77.41101739835173, 34.69348849125122], [-77.41091089376472, 34.69355146105712], [-77.41082921512518, 34.69355478733685], [-77.41052772558821, 34.693768026705115], [-77.41050533536443, 34.69377322160037], [-77.41050061584143, 34.69378979101627], [-77.41049631300235, 34.69380607628774], [-77.41010348380695, 34.69420995822084], [-77.41020369250523, 34.694374480072725], [-77.41022860127116, 34.694533293015134], [-77.41024251772043, 34.69458145823872], [-77.41024207330501, 34.69475435803583], [-77.41024209486811, 34.69480480736565], [-77.41024071557722, 34.69481708976839], [-77.41025274721649, 34.694856389578156], [-77.41032818829501, 34.69512725238473], [-77.41029897616941, 34.69522742664809], [-77.41040197114174, 34.69530874263932], [-77.41044867174942, 34.69544896426814], [-77.4104959263392, 34.69559162162527], [-77.41050954483703, 34.69565043519151], [-77.41053426922319, 34.69575847013705], [-77.4105379761425, 34.69579725501673], [-77.41055930315852, 34.69587199453796], [-77.41058748168345, 34.69599977850749], [-77.41060139251637, 34.69606151185713], [-77.41063997022029, 34.696237800346914], [-77.41064558447091, 34.696356530794645], [-77.41067761864053, 34.69640852751513], [-77.41070242677664, 34.69648431419348], [-77.41078286473332, 34.69668411757202], [-77.41077647225822, 34.696813640728266], [-77.41087435916808, 34.69699716768446], [-77.41093218998078, 34.697195035370115], [-77.41096221989777, 34.697305980735365], [-77.41114969825782, 34.69781952563734], [-77.4111291304243, 34.69792348899847], [-77.41116868234482, 34.697989086342204], [-77.41122195319994, 34.698010022326805], [-77.41134384131045, 34.69827816257275], [-77.41131869710377, 34.69837286102848], [-77.41143092027934, 34.69858818289865], [-77.41152578502164, 34.6987328302119], [-77.41163492329804, 34.698797166778405], [-77.41174569343698, 34.69897786092002], [-77.41177383608466, 34.699075713601765], [-77.41175779098855, 34.699188016515066], [-77.41172947169935, 34.699251741604314], [-77.41168788593166, 34.69944775470878], [-77.4116465424581, 34.699575157949326], [-77.41161873365147, 34.699772112080815], [-77.41187224237066, 34.70019085376066], [-77.41212845544541, 34.700266845081345], [-77.41216682151426, 34.70028026680137], [-77.41220153754122, 34.700287719635966], [-77.41236891885218, 34.70038971966797], [-77.4124270903794, 34.70048815448877], [-77.41248777232559, 34.700563319239], [-77.41253716135117, 34.700652518831006], [-77.41253103838116, 34.70082653502079], [-77.4125274443408, 34.700928674295234], [-77.4125251427006, 34.70099408202748], [-77.41268527749757, 34.701078751434366], [-77.41286888876981, 34.701175833670284], [-77.41326609998956, 34.701280429062066], [-77.41345188801014, 34.701375953655244], [-77.41361685031175, 34.701431414402734], [-77.4143844146204, 34.70161291345598], [-77.4146856554878, 34.7015421850173], [-77.41488454859858, 34.70147366563852], [-77.41522048310254, 34.701483873890034], [-77.4153476902872, 34.70146937573575], [-77.41562351394401, 34.70139482122388], [-77.41599178493544, 34.701301870269546], [-77.4160201999397, 34.70129539450527], [-77.41604028049895, 34.70129103464277], [-77.41624252157365, 34.70122886315928], [-77.41639196806734, 34.701183234906736], [-77.41641024748183, 34.70118511366357], [-77.4167481767178, 34.701059816404154], [-77.41678132923047, 34.70104382319166], [-77.41679948926897, 34.70102529583279], [-77.41681126186803, 34.70099161117562], [-77.41697402793793, 34.70061086768265], [-77.41703877620587, 34.70054989676682], [-77.41702577083727, 34.70010109259343], [-77.4170286149461, 34.70000822137426], [-77.41702653847571, 34.69998651929153], [-77.41699540743699, 34.6998977964582], [-77.41691321274595, 34.69961000352094], [-77.41662280721249, 34.699288561749185], [-77.41662073544852, 34.69928636767743], [-77.41661908371128, 34.69928634456796], [-77.41606134598918, 34.69911854518067], [-77.41602568831402, 34.69912789963836], [-77.41598740213463, 34.69910349865211], [-77.41590572853275, 34.699035367599514], [-77.41560245810172, 34.69881772315783], [-77.4154911075648, 34.698760613553226], [-77.41541051093469, 34.69867461657442], [-77.4153648342558, 34.69864333538324], [-77.41532773129103, 34.698553630575816], [-77.41535474423567, 34.69847470176207], [-77.41529547639789, 34.69832949982763], [-77.41527662517292, 34.69825620200173], [-77.41535914820076, 34.69802650856383], [-77.4152573394837, 34.697969904395215], [-77.41528631457105, 34.69785124364179], [-77.41535502154048, 34.69772452342782], [-77.41521059416, 34.6975159189731], [-77.41501027014121, 34.69739985543498], [-77.41493700284909, 34.697354057406784], [-77.41494496399766, 34.697306576341724], [-77.41466029891721, 34.697202947758825], [-77.41465953227373, 34.69720167757837], [-77.41454817483412, 34.69702574334514], [-77.41454641327334, 34.6970223297961], [-77.41454123578416, 34.69700691085119], [-77.41455709622346, 34.69700600772099], [-77.4146702018119, 34.69692585792306], [-77.41471747477362, 34.69692106985826], [-77.41474313911431, 34.696916861362126], [-77.41487217883264, 34.69689058377993], [-77.41521956780912, 34.69699404200861], [-77.41523620075978, 34.6967387292609], [-77.41537739215856, 34.69661414462774], [-77.41531956777905, 34.6964095060644], [-77.4153122445005, 34.69626065105798], [-77.4152681262365, 34.69621050876072], [-77.41522589859498, 34.69600204651381], [-77.41524016375836, 34.695905633575656], [-77.41529921646347, 34.69581973015318], [-77.41535272079678, 34.695766860488234], [-77.41537260808194, 34.69574818217554], [-77.41555996787596, 34.695559808590346], [-77.41583668905936, 34.69535362646922], [-77.41597859349753, 34.695243000726975], [-77.41607039167141, 34.695179264027495], [-77.41622926435602, 34.695104528048375], [-77.41634428002675, 34.69509293133302], [-77.41656424286629, 34.69505434856924], [-77.41676746713017, 34.6950368867263], [-77.4169001457511, 34.69491042463853], [-77.41707283838316, 34.694633458758496], [-77.4172480779732, 34.69432671115733], [-77.41746123482262, 34.69398850418768], [-77.41745608313067, 34.693918811572], [-77.4175529538957, 34.69385301748298], [-77.41770930517546, 34.69379573320698], [-77.41783490185541, 34.69379022573699], [-77.41806085886978, 34.69377490172291], [-77.41821795140213, 34.69376973923872], [-77.41826893721525, 34.69375192903246], [-77.4184288238906, 34.69376787706386], [-77.41878860188896, 34.693853647411245], [-77.41882971957484, 34.69387031773521], [-77.41886974675734, 34.693883790892755], [-77.4193342020732, 34.69399776953496], [-77.41942710814057, 34.69402056881369], [-77.41972261585356, 34.69394089421259], [-77.41974994261906, 34.69392955378158], [-77.41977778192569, 34.69391614101084], [-77.42006097226853, 34.693779701707186], [-77.4201060592557, 34.693763847381334], [-77.42014584998763, 34.69375162187719], [-77.42048342074682, 34.69363287949275], [-77.42050292636395, 34.693625067274766], [-77.4208127378565, 34.69348356758927], [-77.42084090393473, 34.693469410087594], [-77.42088701346539, 34.693405197849856], [-77.42116989151066, 34.693259350021805], [-77.42121634848857, 34.693065654257936], [-77.4213102489972, 34.692865552619544], [-77.42132524490799, 34.69276539083658], [-77.42151768515356, 34.6926119676378], [-77.42165053440787, 34.692549288930266], [-77.4217747161519, 34.692552502201146], [-77.42206860523065, 34.692484892015344], [-77.42222775157467, 34.69230124547051], [-77.42235903293212, 34.69221179384526], [-77.42255665086522, 34.69206515004922], [-77.42266564767516, 34.69196516471881], [-77.42273003395336, 34.691917845247815], [-77.42296466758947, 34.6917625569433], [-77.42299230792015, 34.69175131270401], [-77.42308012971014, 34.69168069773747], [-77.42326854576285, 34.69154711628661], [-77.42330612099889, 34.69151645710972], [-77.423372973635, 34.69145895167142], [-77.42361158363434, 34.69126795060711], [-77.42378766026255, 34.69116960193186], [-77.42394486282831, 34.69106492651162], [-77.42417642246195, 34.69089718758543], [-77.4242708804653, 34.69085003184135], [-77.4243623495394, 34.69081152554449], [-77.42458533767221, 34.690606241144366], [-77.42481741266813, 34.690411608276925], [-77.42486948583189, 34.6903328912365], [-77.42505252514317, 34.69008434253547], [-77.42512220298708, 34.6899981598381], [-77.4251511759321, 34.689969265827706], [-77.4253596466347, 34.689638457477194], [-77.42546310412747, 34.689519286433416], [-77.42554618722055, 34.689312537417806], [-77.42558414386548, 34.68925759357083], [-77.42565011595474, 34.689126627488406], [-77.42569856853305, 34.689042564616436], [-77.42570476093157, 34.68902317649776], [-77.4258195897639, 34.68889463197513], [-77.42590690177553, 34.688835891756085], [-77.42609805511114, 34.68868598475388], [-77.42614045779017, 34.68867133498664], [-77.42617758274432, 34.68865102525575], [-77.42632625026822, 34.68854063635793], [-77.4264670047701, 34.68845732504884], [-77.42649383687805, 34.688425556921594], [-77.4267052707446, 34.68827650961138], [-77.42677057641974, 34.688205753340476], [-77.42698348922876, 34.68784073733086], [-77.42699441594614, 34.687823827407065], [-77.42699747253876, 34.68781963289079], [-77.42700219103608, 34.687812177529295], [-77.42730556523162, 34.68736831399722], [-77.4274934475378, 34.68714394005976], [-77.427647653467, 34.68692888572127], [-77.42780670420146, 34.68658367197062], [-77.42789750052094, 34.68645719705487], [-77.4279398724557, 34.68637805863394], [-77.42808595721256, 34.68602074912714], [-77.42810902737615, 34.68597210663702], [-77.42807230392094, 34.68584670005651], [-77.42800447705159, 34.685608373319134], [-77.42797457640481, 34.68552303353843], [-77.42790567214595, 34.685574265679676], [-77.42767481703436, 34.685451693163955], [-77.42737223873753, 34.685425850578675], [-77.42736211166309, 34.685425092309394], [-77.42735597986442, 34.68542341846928], [-77.42706191397794, 34.685355267112996], [-77.42681469201749, 34.68528630652082], [-77.42676405242794, 34.685277371079884], [-77.42670938699612, 34.68525610129507], [-77.42653851859271, 34.68520870800673], [-77.42646866250165, 34.68519093449464], [-77.42640494593014, 34.68517728882739], [-77.42637631897722, 34.685171911010244], [-77.42631963204927, 34.68515233162743], [-77.42630270671033, 34.68514683415982], [-77.42630867859711, 34.68513276831314], [-77.426290613991, 34.68509608359945], [-77.42628815767509, 34.68505570618558], [-77.42628790929234, 34.6849856180009], [-77.42630458525298, 34.684826220350224], [-77.42631466088352, 34.684785438035426], [-77.42630801900765, 34.684754037089434], [-77.42631457564566, 34.68461620833587], [-77.42631206147459, 34.68452916141479], [-77.42631973870893, 34.684507675995995], [-77.42632597491306, 34.68448724176342], [-77.42637573049126, 34.68440487838582], [-77.4264379751402, 34.68429641598848], [-77.42645410752829, 34.68427513624994], [-77.42656370172, 34.68412803371304], [-77.42662034110575, 34.684053741945], [-77.42668236635522, 34.68394810626955], [-77.426690375701, 34.683938469206424], [-77.42670063598122, 34.683920619358545], [-77.42675025493182, 34.68381964424851], [-77.42679943587335, 34.68376557077902], [-77.42690097846034, 34.683696977035225], [-77.42696127894595, 34.6836562430661], [-77.42707067373001, 34.683652179451954], [-77.42717126174774, 34.683625625350416], [-77.42727348064551, 34.68351690969888], [-77.42735922240347, 34.68364576526929], [-77.42751428903836, 34.68379195183944], [-77.4281078937695, 34.68377968968346], [-77.42815112829418, 34.683805614834085], [-77.4281836021997, 34.68378504251074], [-77.42821281035106, 34.68377211935274], [-77.42818865885022, 34.68374598249916], [-77.42843045062179, 34.68344076133518], [-77.42841786254934, 34.68328476650542], [-77.42842990927842, 34.683198914553486], [-77.42846653961047, 34.683125830559284], [-77.42850906415417, 34.68312223267009], [-77.42855968885479, 34.68309116054144], [-77.42861424122094, 34.68307391589373], [-77.42864044974554, 34.683036235711896], [-77.42870584512805, 34.68299579459859], [-77.42883014620088, 34.68297245156546], [-77.42895225675544, 34.68291260330222], [-77.42899962856566, 34.682875617967824], [-77.42907725405193, 34.682819474840976], [-77.42932121906057, 34.682653546079024], [-77.4296481561608, 34.682596925723], [-77.42979359526335, 34.682558325885395], [-77.43002334324163, 34.68253386938758], [-77.4301668368318, 34.6825403810442], [-77.43049660175656, 34.682343246354385], [-77.4305135991196, 34.68234054330307], [-77.43050992621635, 34.68233078022255], [-77.43080619125907, 34.6820899924499], [-77.43091928663432, 34.681989666122874], [-77.43095898995858, 34.68196588727341], [-77.43097373496921, 34.68194240603425], [-77.43100185007629, 34.681902265535136], [-77.43107749149418, 34.681785709530786], [-77.43113200537978, 34.68171822697024], [-77.43122699331278, 34.68158509940697], [-77.43129390287774, 34.681495316530025], [-77.43132830309027, 34.68144793176245], [-77.43144334383487, 34.681285676776696], [-77.43145133083357, 34.68127515641515], [-77.43145335818261, 34.681271552411566], [-77.43145423136743, 34.68126705818957], [-77.431465480259, 34.68120916131984], [-77.43150142320995, 34.68102416672855], [-77.43150421333588, 34.681009806585585], [-77.43150747301124, 34.68099302946621], [-77.4315550681832, 34.68074806077876], [-77.43156633977289, 34.68071535761131], [-77.43158599774208, 34.680619112248394], [-77.43166224995043, 34.680510650166696], [-77.4316655385989, 34.68050716501016], [-77.43166700339323, 34.680506020831224], [-77.43166923812176, 34.68050485873938], [-77.43184859257619, 34.68042899112133], [-77.43187041471796, 34.680423761596415], [-77.4320142370241, 34.68041976008291], [-77.4321150787861, 34.68049075971773], [-77.4322845719284, 34.68059274823138], [-77.43267289200921, 34.68065490450653], [-77.43291254497507, 34.68063694769279], [-77.43308245678712, 34.68057668131815], [-77.43342220602966, 34.68056246372542], [-77.43354448438407, 34.680584225691064], [-77.43356998770867, 34.68057927326888], [-77.43388493680548, 34.680444761151776], [-77.4339097362803, 34.68043355669242], [-77.43393605361838, 34.68042133523791], [-77.43409055712678, 34.68035527168054], [-77.43422867678854, 34.680285444239956], [-77.43426309613334, 34.6802634474939], [-77.43431094977123, 34.680232864953254], [-77.43445020431903, 34.68019544185286], [-77.43457706961523, 34.68018673533804], [-77.43464441605867, 34.68018761329566], [-77.43468220639639, 34.680200828937835], [-77.43495056373052, 34.68023680193053], [-77.4351186940085, 34.68016661815784], [-77.43527553493387, 34.680220916283844], [-77.43537481394179, 34.68021143191465], [-77.4354911818133, 34.68025154505009], [-77.43557520410525, 34.68029250290797], [-77.43569845402757, 34.680380146116164], [-77.43570352727777, 34.680386100801535], [-77.43578713178233, 34.68055091976038], [-77.43577895303254, 34.680577812702694], [-77.43590274814406, 34.68087087625504], [-77.43599922368111, 34.68104180025689], [-77.43630201156543, 34.68125225706957], [-77.43681637846777, 34.68144636231017], [-77.43693481582493, 34.68123178015674], [-77.43713889783785, 34.68122583572905], [-77.43723009537314, 34.681216881343474], [-77.4373484002685, 34.68119443394159], [-77.4375329295482, 34.68118480634555], [-77.43755885506349, 34.681187900942064], [-77.43757228322232, 34.68118653923644], [-77.43766152279619, 34.681242723814464], [-77.43768168238103, 34.68131707728449], [-77.43769132454398, 34.68134188274907], [-77.43770152252947, 34.681397801352915], [-77.43766470061442, 34.6814870068183], [-77.43764510733874, 34.68158437633666], [-77.43755021533764, 34.68189820186484], [-77.43744962602139, 34.681970847428644], [-77.43758671073513, 34.682199287019344], [-77.4377174800197, 34.682446963319826], [-77.43809027904602, 34.68267363642716], [-77.43829143730768, 34.68282424962866], [-77.43853135834618, 34.68300000542402], [-77.43860306905596, 34.683116118349346], [-77.43885441221721, 34.683282324174556], [-77.43912694638483, 34.6835202812953], [-77.43916942968201, 34.683626438862156], [-77.43919165607015, 34.683698061496564], [-77.43937721079081, 34.68398610097228], [-77.43954344397396, 34.6842957444008], [-77.43958308545193, 34.68434655911167], [-77.43966625964998, 34.684423047013496], [-77.43970712314095, 34.68451797967013], [-77.43978756674389, 34.6845594449135], [-77.43980874563599, 34.684612626335465], [-77.43979563505512, 34.6847042310739], [-77.43978969633906, 34.684745726079285], [-77.43978211675419, 34.68479868613021], [-77.43958072326453, 34.68495218082403], [-77.43972768502417, 34.68517900209957], [-77.43970639390304, 34.68542261773838], [-77.43968987354019, 34.68554938536158], [-77.43965865011606, 34.685654225862876], [-77.43958193156438, 34.6859668874588], [-77.43946522107271, 34.68602987938195], [-77.43941682314681, 34.68620158209576], [-77.43956099986131, 34.68645063300226], [-77.43974746990018, 34.68695635977254], [-77.44002317658827, 34.687068223318775], [-77.44024976001523, 34.68705841970381], [-77.44053366070743, 34.686962476907745], [-77.44064809497797, 34.68696177809815], [-77.44070030078636, 34.686942604531666], [-77.44112805580446, 34.686998544144416], [-77.44137112069973, 34.68669623128404], [-77.44145013066657, 34.68656556657859], [-77.4416511801949, 34.686358185895905], [-77.44194533493618, 34.68648522749487], [-77.442079948929, 34.6866034996344], [-77.44221667270705, 34.68681835766593], [-77.4430099028178, 34.68708349164777], [-77.44320709562696, 34.687137529597216], [-77.44366266226943, 34.68710749470995], [-77.44384499500555, 34.687147523110646], [-77.44394476862982, 34.68711605451359], [-77.44402705638595, 34.68706571658433], [-77.44406817252445, 34.686938194910624], [-77.4442806059717, 34.68659532540429], [-77.44417415700445, 34.68600919189266], [-77.44417270648002, 34.68600172562533], [-77.44417335895268, 34.685998804759436], [-77.4441732784784, 34.68599423770469], [-77.44414908600663, 34.68571080454304], [-77.44416103547617, 34.685600412770356], [-77.44416077780998, 34.68557513474959], [-77.44418801574358, 34.6855489205107], [-77.44427045305127, 34.685473719163774], [-77.44430059492322, 34.6854546784859], [-77.44434158301752, 34.68543017608118], [-77.44446901588738, 34.685356113205856], [-77.44456851639973, 34.6852984053983], [-77.4446378366341, 34.68525820144091], [-77.44495175851827, 34.68515286877746], [-77.44500902946533, 34.685117211893726], [-77.44510036139138, 34.685022061137225], [-77.44527567007646, 34.68498659073087], [-77.4453326167998, 34.68489842356478], [-77.44546166277316, 34.68488054971671], [-77.44557237635459, 34.684810801695754], [-77.44573625126237, 34.684810454342696], [-77.44580582632679, 34.684798305610535], [-77.44611257648069, 34.68467785576644], [-77.44645699423035, 34.68460157185775], [-77.44650396966755, 34.684599856173904], [-77.4465176332527, 34.684592212171346], [-77.44653131015247, 34.68458700086847], [-77.44669454769915, 34.684502384316296], [-77.44686643973826, 34.684414643499785], [-77.44692547335454, 34.68440596368195], [-77.44719064702045, 34.68444104853041], [-77.44760870106144, 34.68440460278809], [-77.44776066991327, 34.68438081969124], [-77.44789069777386, 34.684235968641524], [-77.44845340196136, 34.684017712746034], [-77.4486211379602, 34.68392575620018], [-77.4489641484455, 34.68376037674648], [-77.4492049569466, 34.68375073832466], [-77.44930719681986, 34.68376904204712], [-77.44941703994556, 34.683723531954044], [-77.44949815745578, 34.6837781448147], [-77.44959060287275, 34.68389692989028], [-77.44977970455217, 34.683942392561434], [-77.4498760105577, 34.68401789565823], [-77.44999089932452, 34.68401881346438], [-77.45034004722439, 34.684110501002365], [-77.45047587751077, 34.68415933468145], [-77.4505775549153, 34.6841248378254], [-77.45079800165651, 34.684128210572155], [-77.45080352650112, 34.68413417701581], [-77.45081416205285, 34.6841377022384], [-77.45107829184882, 34.68429196407435], [-77.45144048042856, 34.68441360557731], [-77.45169652707926, 34.68436986437185], [-77.45183618565488, 34.68431267786944], [-77.45203618644342, 34.68430315404622], [-77.45205448390769, 34.68429562231685], [-77.4521136869632, 34.684302251243395], [-77.4523068385698, 34.684334214181405], [-77.4523444719382, 34.68434498160346], [-77.45241291783377, 34.68434669293789], [-77.45295146574185, 34.68446177119464], [-77.45339920972464, 34.68462411289893], [-77.45362408863801, 34.68435149994093], [-77.45368120755992, 34.684337390642575], [-77.45369537867332, 34.68429606968698], [-77.45396350708378, 34.68428561066149], [-77.45408488484617, 34.68424948619723], [-77.45420604068414, 34.684195046783316], [-77.45425206661872, 34.68402508036602], [-77.45430730343158, 34.683950936920375], [-77.45442707542952, 34.683790167380806], [-77.4549530108406, 34.68417661137231], [-77.45495094672317, 34.68417964703325], [-77.45468539670046, 34.68448319081676], [-77.4545789413134, 34.68460487634849], [-77.45441622702526, 34.68479086979329], [-77.45425574625031, 34.68505092268548], [-77.45399927389185, 34.68546995023], [-77.45397382693326, 34.68551139537959], [-77.4539061994688, 34.685592335585206], [-77.45342358124672, 34.68615892055105], [-77.45310937245438, 34.68632727468547], [-77.4523148207465, 34.686664317519394], [-77.45198764894167, 34.68680271313737], [-77.45132618071305, 34.68682204615095], [-77.45097363905938, 34.68687063586976], [-77.45029240467264, 34.6870228034723], [-77.44997230059654, 34.68746685701906], [-77.44942708066597, 34.68778732628652], [-77.44892836415116, 34.687784103656895], [-77.44845148388706, 34.688053305405255], [-77.4484974532993, 34.688660221733755], [-77.44801701605397, 34.689019482909735], [-77.44793592587015, 34.68915266460095], [-77.44778175791006, 34.68985189350789], [-77.44774199264974, 34.690041388363085], [-77.44796375160148, 34.69066874951723], [-77.44796392641202, 34.690677981218634], [-77.44798041134761, 34.69072049916688], [-77.44809804398741, 34.69128387644818], [-77.44800035084906, 34.69154631059247], [-77.44831218518708, 34.69164365045168], [-77.44879308115843, 34.69204840069504], [-77.44882537694535, 34.69208507637831], [-77.44883738691668, 34.69208967341524], [-77.44886177119932, 34.69210983234671], [-77.44891687018571, 34.692250666575795], [-77.44900162179248, 34.69271772578241], [-77.44918303120608, 34.693064499650816], [-77.44927477766448, 34.69369274427226], [-77.45017812758962, 34.69405567425409], [-77.45024537612153, 34.69418034403927], [-77.45029828135209, 34.69428893632276], [-77.45064055127904, 34.694908198886196], [-77.45069710470459, 34.69498733116146], [-77.45086387705258, 34.695261380359355], [-77.45103754147435, 34.69551625792775], [-77.45110756184889, 34.695606061112834], [-77.45121754142295, 34.695728221429746], [-77.45147766137626, 34.69634438870471], [-77.45193625739685, 34.696840989046215], [-77.4525327773204, 34.69666341536191], [-77.45276067190173, 34.69670153891422], [-77.45326318132607, 34.69668452021533], [-77.45345688377407, 34.696678146992085], [-77.45385841223856, 34.696689607519566], [-77.4538982534722, 34.69670448583191], [-77.4539660722301, 34.69668872401625], [-77.45438108193811, 34.69669302016231], [-77.4545461006636, 34.69668025164416], [-77.45520489930918, 34.696562619175054], [-77.45521414482799, 34.69655900975857], [-77.45526714766133, 34.69654780255127], [-77.45582688717559, 34.69668334309873], [-77.45630009374358, 34.6968380967472], [-77.45655856890076, 34.696476629840596], [-77.45719724381848, 34.696376513097846], [-77.45813133965689, 34.69702617483129], [-77.45821299207662, 34.697103412713055], [-77.45826370891663, 34.697121138324626], [-77.45833630707013, 34.69717459208508], [-77.45901651337367, 34.69766074485025], [-77.45928797683374, 34.69801182613751], [-77.45954080936541, 34.69833468207628], [-77.4598789000471, 34.69875472768253], [-77.46008689087436, 34.69899952598], [-77.46026587750484, 34.69906303208567], [-77.46053223396427, 34.69926663868358], [-77.46090430603014, 34.69955105554983], [-77.46126667449677, 34.70003508012029], [-77.46166655460787, 34.70049723410635], [-77.46195178745708, 34.700899402215235], [-77.46225735338325, 34.70104221848278], [-77.46269923614963, 34.70131122015211], [-77.46286382354403, 34.70141141460757], [-77.46297854386171, 34.70151454670082], [-77.46320320940401, 34.701716129120676], [-77.46330660233882, 34.7018467363741], [-77.46346882204531, 34.70205165316837], [-77.46370683379482, 34.70232793212851], [-77.46422510571882, 34.70310380013291], [-77.4645580049681, 34.703382589304496], [-77.4647585729252, 34.70347551897619], [-77.46510883548594, 34.7039356128253], [-77.46511334192851, 34.70404357112515], [-77.46519670058957, 34.70417721248313], [-77.4658191034371, 34.70464172673631], [-77.46590175576658, 34.70533050484409], [-77.466360466547, 34.706201464933244], [-77.46616108608585, 34.706964642196596], [-77.46574144967971, 34.707510387776765], [-77.46527134998858, 34.70835495784341], [-77.46522012155754, 34.708417256028326], [-77.46517771106083, 34.708431422429506], [-77.46389688305067, 34.708675555952496], [-77.46360683893516, 34.707882734795874], [-77.4632043702992, 34.707519534329194], [-77.46303099727866, 34.707236193643766], [-77.46302900664246, 34.70669986142628], [-77.46283966300821, 34.70649681116713], [-77.46268504164676, 34.7062155360532], [-77.46258420631543, 34.705992708549154], [-77.46218038135763, 34.70574409422091], [-77.46212293444091, 34.70568747048856], [-77.46208430855258, 34.70530856581322], [-77.4619977312017, 34.70508475531], [-77.46176799900523, 34.70454775735365], [-77.46142225404287, 34.70393205133277], [-77.46091347654338, 34.70401170866139], [-77.46069319466598, 34.70401374217546], [-77.46018249172946, 34.70378669439145], [-77.45970982609617, 34.70390240824344], [-77.45916264463396, 34.703849944787194], [-77.45893626276727, 34.703663713129515], [-77.45845039611737, 34.70334016959757], [-77.45837294269872, 34.703395340502425], [-77.4583895676422, 34.70327987761048], [-77.45839284386264, 34.70326641548846], [-77.45835836336273, 34.70318984978767], [-77.45817798894957, 34.702632362950034], [-77.45818246500883, 34.70247347208732], [-77.45806667859078, 34.70223759433693], [-77.45779591269685, 34.70227116804279], [-77.45749352662882, 34.70200327697228], [-77.45732785220827, 34.70193745228787], [-77.45698204123204, 34.70155561265773], [-77.4564955790112, 34.701392102511115], [-77.45629267963757, 34.70131060723304], [-77.45578798956727, 34.70125221113967], [-77.4554164482715, 34.70137418569911], [-77.45485914718482, 34.70147277974735], [-77.45423044539265, 34.702337911061306], [-77.45421484917419, 34.70236565081667], [-77.4541968336738, 34.70237176326483], [-77.45415834768237, 34.70236801461763], [-77.4540982433563, 34.70221071146888], [-77.45373366570004, 34.70107951520568], [-77.45361589664186, 34.7008087696821], [-77.45342083821097, 34.7005729739619], [-77.45317475694614, 34.70070213858358], [-77.45305761344277, 34.700843283301126], [-77.45216657413803, 34.70141390339327], [-77.45189827250415, 34.70160682263406], [-77.45171199341353, 34.70160369961001], [-77.45060050591471, 34.701461298545084], [-77.44965371142357, 34.7009299666791], [-77.44736526881631, 34.69984702543222], [-77.44629022961925, 34.69863656608864], [-77.44425440126734, 34.69808879671207], [-77.44381101355694, 34.69775947028959], [-77.44370799507362, 34.69757571870356], [-77.44221586160174, 34.69499696390028], [-77.44218339821897, 34.69486762377159], [-77.44192620350391, 34.69471676569797], [-77.44127086147665, 34.69435573738852], [-77.44116118475765, 34.6942120013672], [-77.44089084394113, 34.69362155365288], [-77.44073881315084, 34.69318360823573], [-77.44054529521611, 34.692872987184444], [-77.44045486445947, 34.692222653139225], [-77.44044168849969, 34.69202342438597], [-77.44039288509882, 34.691944601505234], [-77.43998810520576, 34.69162079553932], [-77.43979996024083, 34.69155711431152], [-77.43963632552575, 34.69146680269188], [-77.43944527478305, 34.6912819692818], [-77.43924970684334, 34.69098589938844], [-77.43914872353083, 34.69077753611704], [-77.43902449043364, 34.690521197462594], [-77.43850224490747, 34.690183853303125], [-77.43848539167733, 34.690169503952944], [-77.43847533432398, 34.69016582397275], [-77.43737319255345, 34.689833915804186], [-77.4372246045941, 34.69009739346509], [-77.43712611520161, 34.69024343536328], [-77.43709117537082, 34.690297200603695], [-77.43684739967132, 34.690469986463306], [-77.43660283263677, 34.69061952157888], [-77.43639260079881, 34.69075830251981], [-77.43606351043891, 34.69068420694222], [-77.43574737655493, 34.69130450622047], [-77.43567135871119, 34.69141193441415], [-77.43562537525766, 34.691463576049706], [-77.43550521001964, 34.691610623372064], [-77.43525460611525, 34.69182526839954], [-77.43511509189345, 34.69201481258933], [-77.43506803310241, 34.69204811054854], [-77.43480322229443, 34.692226493599], [-77.43465601341836, 34.69233085200089], [-77.43429859798903, 34.6922859787156], [-77.43416627269877, 34.69256283451696], [-77.4338767966396, 34.69297804315603], [-77.43384096774557, 34.69300814393923], [-77.4338297930223, 34.69301525169059], [-77.43381142804955, 34.69303508589792], [-77.43322646271722, 34.69335233163066], [-77.43320905297287, 34.69349618738856], [-77.43298291939487, 34.693797506257674], [-77.4329544785064, 34.69381628588936], [-77.43292005210255, 34.693900988994656], [-77.43272206544393, 34.69419576001599], [-77.43271822674004, 34.6942927344218], [-77.43267510609986, 34.694372363749665], [-77.43246480976606, 34.69476318146439], [-77.43235824424265, 34.69509666770602], [-77.43228688498124, 34.695427166804], [-77.43238019781961, 34.6957668727834], [-77.43238418731092, 34.69585310689405], [-77.43266261112831, 34.69616314200644], [-77.43280039043661, 34.696529610423575], [-77.43280447102084, 34.6965591178162], [-77.43280262723758, 34.696570827017055], [-77.4327556200924, 34.69682156534815], [-77.43264652226459, 34.69706263842198], [-77.43264641248814, 34.69706290938546], [-77.4326463772469, 34.69706322895125], [-77.43264553898953, 34.69706481115033], [-77.4324419983098, 34.697476966090306], [-77.43232838473867, 34.697510767879145], [-77.43239288626164, 34.69761488018653], [-77.43230182018846, 34.697995642886404], [-77.43221833055736, 34.69803134517297], [-77.43182930726293, 34.698296467103916], [-77.4316468781796, 34.69842074219749], [-77.43160869742422, 34.69843325450776], [-77.43128036553287, 34.698569480398405], [-77.43116248218134, 34.69857474700685], [-77.43092281058526, 34.69858873178201], [-77.43083648429018, 34.698591757069885], [-77.43070988269136, 34.698622028892295], [-77.43025389348048, 34.69868555139032], [-77.43000509546566, 34.698728454819125], [-77.42980516193221, 34.69869478177654], [-77.4296141972619, 34.698681384208115], [-77.42949883602357, 34.69864876623164], [-77.42924444077173, 34.69866867525374], [-77.42904920301905, 34.698661636956935], [-77.42897782881116, 34.69866571305041], [-77.42834665568975, 34.698913806362256], [-77.42830676331613, 34.69894373000765], [-77.4281586441774, 34.69928175429506], [-77.4280695137262, 34.69937596286227], [-77.42809289447041, 34.69940929558115], [-77.42811642014965, 34.699427657238644], [-77.42823584957966, 34.69971366135801], [-77.42826513933883, 34.699783803207374], [-77.42829575885922, 34.6999152809209], [-77.42831398106313, 34.7000205160826], [-77.42833490688119, 34.70020107278007], [-77.42837605128459, 34.7005527039], [-77.42833279563197, 34.700586162332826], [-77.4283607605406, 34.7006366671336], [-77.42840218215132, 34.7006548674517], [-77.42845914445434, 34.70068852781682], [-77.42878095910608, 34.70090770976904], [-77.428944300866, 34.70099627555207], [-77.42920392868939, 34.701170303063165], [-77.42919862024972, 34.70117981104359], [-77.42896363663854, 34.70136581409864], [-77.4288985622312, 34.70140679009772], [-77.42855564427224, 34.70234087808834], [-77.4285555194091, 34.70234124257705], [-77.42855544911525, 34.702341651034466], [-77.42852793045985, 34.70261112887214], [-77.42850989211894, 34.70280635194028], [-77.42850610707798, 34.70288303105315], [-77.42837659918757, 34.70330835334937], [-77.42843470366714, 34.7034171298262], [-77.42859314872152, 34.704110757890945], [-77.42922591242225, 34.70445263541504], [-77.4294490233876, 34.70464639938431], [-77.42977978452072, 34.70475352633272], [-77.43017301104999, 34.70498554143511], [-77.4303249404908, 34.705084545896284], [-77.43041457813467, 34.70513626976566], [-77.43066885667619, 34.705316414147205], [-77.43076814206441, 34.70543512217147], [-77.43085129579379, 34.70548054621841], [-77.4309508547093, 34.70550903865334], [-77.43102553571497, 34.705550910466854], [-77.43103167636639, 34.705641132212435], [-77.4310458110196, 34.70572773712729], [-77.43103094917305, 34.70577184562427], [-77.43097697110164, 34.70592562855005], [-77.4309388267251, 34.70596986251494], [-77.43087911592879, 34.70613960203039], [-77.43085387538582, 34.70629212300923], [-77.43082444525933, 34.706488931248195], [-77.43086250899094, 34.706734908386466], [-77.43090837849557, 34.7069352394644], [-77.43094045406292, 34.707088549703], [-77.43095996383154, 34.70714063096794], [-77.43092372898644, 34.70733423335198], [-77.43089352602097, 34.70735167242003], [-77.43078575361518, 34.70748263898096], [-77.430661058266, 34.70754992709829], [-77.43050654967004, 34.707776214926874], [-77.43025240439606, 34.708106589607574], [-77.43002214763328, 34.708345700336245], [-77.42997289084792, 34.7083975871834], [-77.42993788017753, 34.708415211685605], [-77.42960002868317, 34.708536018402064], [-77.4293014289571, 34.70862123552836], [-77.42907359579058, 34.70867209953454], [-77.42883344928843, 34.70877880182333], [-77.42879152555591, 34.709132543832425], [-77.42885112287287, 34.709359723799125], [-77.42882662822399, 34.70942434910941], [-77.42882843188646, 34.70951844292972], [-77.42879962224222, 34.70969443911875], [-77.42878518185854, 34.709833621190484], [-77.42886761469381, 34.71012017363054], [-77.42890412210416, 34.710230378473064], [-77.42893497841415, 34.71030082634461], [-77.42914384694647, 34.710781781141506], [-77.42919412689261, 34.71100214595213], [-77.42924166652364, 34.71104251703309], [-77.42935427282985, 34.71138171179895], [-77.42967458532691, 34.71167752817672], [-77.42968752177934, 34.711689052376755], [-77.42969312300485, 34.71169743635779], [-77.4297106414545, 34.71170810565546], [-77.43020750919985, 34.712134935482396], [-77.43045752081366, 34.71226054691154], [-77.43074085127054, 34.712506951757305], [-77.43129367986221, 34.712799568033276], [-77.43130102921803, 34.712801370005295], [-77.43189251805673, 34.7129573634995], [-77.43194474262968, 34.712979166042025], [-77.43218619758069, 34.71305005715207], [-77.43225622989324, 34.713139105092125], [-77.43226964114906, 34.71328998950642], [-77.43216888815662, 34.71348202654908], [-77.43208723253768, 34.71363908189936], [-77.43223116413128, 34.71400220723273], [-77.43234488801792, 34.714151374346386], [-77.43275894963712, 34.7143934881391], [-77.4327771308968, 34.7144174090387], [-77.4328573473359, 34.71446734309142], [-77.43313130495957, 34.7147160174452], [-77.43329021392533, 34.714772761049716], [-77.4335123348587, 34.714929597291004], [-77.433855329492, 34.715035063749944], [-77.43413402451327, 34.715190402444215], [-77.43424824781118, 34.71551258553019], [-77.43446747706415, 34.715944052998836], [-77.43453605640903, 34.716602391986655], [-77.43446242030112, 34.716705544133866], [-77.4345478813557, 34.717072271626265], [-77.43530890597066, 34.717378531927864], [-77.43546207324275, 34.718343626415276], [-77.43574812177312, 34.718980846753], [-77.43598063828259, 34.71947235944534], [-77.43561507794182, 34.71986089677794], [-77.43536807539593, 34.72149444918912], [-77.43447994837769, 34.72173765445439], [-77.433760872496, 34.72159563045043], [-77.43304582797327, 34.721644958802344], [-77.43298860470932, 34.72178088884928], [-77.43171520254572, 34.72243029306132], [-77.43170186916007, 34.72244008414626], [-77.43168490486818, 34.72244331076152], [-77.43089152610494, 34.72261156868687], [-77.43040794563278, 34.72251699432039], [-77.43035520689683, 34.722537581693736], [-77.42998300851376, 34.722622634917336], [-77.42983631242853, 34.722786636126045], [-77.42978590757974, 34.72289764100001], [-77.4297014821676, 34.72291041963838], [-77.42962547155372, 34.72300548398311], [-77.42940896192417, 34.723180241076676], [-77.42937381618177, 34.7233126523876], [-77.42939244362341, 34.723418200604506], [-77.42945419266327, 34.723597229266716], [-77.42953430357039, 34.723805404836426], [-77.42964103370167, 34.72396511725954], [-77.42964907083899, 34.72420391153332], [-77.42985414136442, 34.72443035741385], [-77.43018177015804, 34.724443027055614], [-77.43046847609989, 34.724522826519404], [-77.43100745262622, 34.72452998179426], [-77.43110147948492, 34.7245507937719], [-77.43115384340392, 34.72453577563205], [-77.43125682997393, 34.72452990008152], [-77.43174882570833, 34.724529201053315], [-77.43219935942346, 34.72474850975725], [-77.43232580371166, 34.72475074236459], [-77.43317764578768, 34.724851378689], [-77.4336256500748, 34.724689734383404], [-77.43438946451678, 34.72490452444342], [-77.43469119386879, 34.72543836318137], [-77.43523166942676, 34.72521630568511], [-77.43595937742667, 34.72548677572965], [-77.43701430266847, 34.7254240373732], [-77.43707729555969, 34.72524071734197], [-77.43740321367437, 34.725432648696525], [-77.43737107969605, 34.7255487195539], [-77.43822224179372, 34.72652882626179], [-77.43829404298044, 34.726846554039135], [-77.4385748439203, 34.72708745243013], [-77.43896108557053, 34.72746103023442], [-77.439183655582, 34.727637527935926], [-77.43958790268287, 34.72800048869102], [-77.439596804946, 34.72808857728547], [-77.44004697849896, 34.72859664133088], [-77.44014962420273, 34.72873056665463], [-77.44028659626228, 34.72869356124593], [-77.44016888584507, 34.728762530597066], [-77.44015552661232, 34.72877395543587], [-77.44012610028912, 34.728811871940266], [-77.43945394900061, 34.7291232278849], [-77.43916144451963, 34.72952856535791], [-77.43902295335383, 34.72991452150227], [-77.43857081394779, 34.72975557305379], [-77.4381687136226, 34.730014438528094], [-77.43776807867289, 34.730159744638236], [-77.43752421902063, 34.73045698770658], [-77.43715845402646, 34.73020521346905], [-77.43689275731113, 34.7301096573455], [-77.43656053507087, 34.73005588860562], [-77.4363971642239, 34.73011123734156], [-77.43620145030374, 34.7301713315378], [-77.43600965189478, 34.73022589646786], [-77.43578522237307, 34.73051957005144], [-77.43572645106948, 34.73051096322274], [-77.4352786130587, 34.730054716402094], [-77.4350207223047, 34.73010576835928], [-77.4348481754362, 34.73006990693592], [-77.4346565525967, 34.7299888153785], [-77.434501777566, 34.73000570689492], [-77.43433127793325, 34.73007681771992], [-77.43417285999232, 34.730216090764785], [-77.43415045885251, 34.7302931492788], [-77.43403008808018, 34.73041121988673], [-77.43393209242429, 34.730496358655394], [-77.43393520365548, 34.73057557018516], [-77.4338534470443, 34.73054847951262], [-77.43379770798374, 34.73050816923695], [-77.43328233537677, 34.73030652232615], [-77.43325572437774, 34.73028788911326], [-77.43276927426123, 34.73016625525491], [-77.43269008634948, 34.730137605240266], [-77.43252298550195, 34.73014718848398], [-77.4323814628205, 34.730096333775094], [-77.43229070673209, 34.730132149164476], [-77.43222058774697, 34.730177740526514], [-77.43220729982204, 34.73027888851699], [-77.43205905070307, 34.73040080982655], [-77.43202770422518, 34.730450228739386], [-77.43193400630886, 34.73063663319601], [-77.43187536317592, 34.73073734261222], [-77.43180684076785, 34.7308371576469], [-77.43179756200958, 34.73086847247145], [-77.43179153139086, 34.730898731615106], [-77.43179880826717, 34.73100183717527], [-77.43180541162403, 34.73115074144633], [-77.43181145120883, 34.73133681295664], [-77.43207181677735, 34.73152337227583], [-77.43220694930096, 34.731806870013344], [-77.43264599645238, 34.73172403884789], [-77.43281305134961, 34.731733292556875], [-77.4329077982033, 34.7316006060415], [-77.43297204496116, 34.7315584622582], [-77.4330302417172, 34.731497944439475], [-77.43310105781848, 34.731456059729176], [-77.43314967588832, 34.731448117824826], [-77.43326611985844, 34.73147018136257], [-77.43346765298777, 34.73153865776566], [-77.43353782772935, 34.73163902004657], [-77.43364506374392, 34.73159705582907], [-77.4340471294198, 34.731654651563105], [-77.43416807824588, 34.731676669463226], [-77.43467423685408, 34.73178291057546], [-77.43479637944263, 34.73172105149453], [-77.43522531062402, 34.731507337392394], [-77.43540319113315, 34.731478308949846], [-77.43557537148861, 34.731070626912576], [-77.43557511299056, 34.73101144839436], [-77.43572974986395, 34.730711258959225], [-77.43570331850255, 34.7310523235906], [-77.43614889550742, 34.731201075872896], [-77.43621827519237, 34.73123862488752], [-77.43629002708724, 34.73125393682345], [-77.43666639325608, 34.73129875099034], [-77.43687734517054, 34.731176658208994], [-77.43702004426471, 34.73112876859613], [-77.43720964532238, 34.73108268035047], [-77.43762266838854, 34.73081660744037], [-77.4378124176861, 34.730927774741424], [-77.43813860937067, 34.73124926106201], [-77.43824652250458, 34.731330427682366], [-77.43863806010704, 34.73152880031128], [-77.43870442074382, 34.731509579833144], [-77.43881767245088, 34.73164457405575], [-77.43909837800646, 34.73186780531751], [-77.43905660928904, 34.73221249051914], [-77.43901727196575, 34.73227335023746], [-77.43907376993481, 34.73244888875871], [-77.43912851019438, 34.73274804527864], [-77.43949622060441, 34.73299973206642], [-77.43953057573873, 34.733026692030364], [-77.43954292658569, 34.73304328768887], [-77.43964080877396, 34.73305025213098], [-77.44007356872775, 34.73312596745378], [-77.44015007235514, 34.73316079829477], [-77.44020781959058, 34.73319051865487], [-77.44031729091336, 34.73328661657529], [-77.44064642061024, 34.733661252533], [-77.44083458329895, 34.73382181622586], [-77.44091129176249, 34.73385377836736], [-77.44110762161023, 34.73406731848074], [-77.44115511468327, 34.73411905585691], [-77.44115950970739, 34.734132648119555], [-77.44116514996404, 34.73414187965392], [-77.44127512337224, 34.73434090390087], [-77.44135588765153, 34.734488033278126], [-77.44135309655981, 34.734498282859185], [-77.44136419822757, 34.73450440800328], [-77.44142316675456, 34.73458270583477], [-77.44159345924736, 34.734820026754036], [-77.44163318737158, 34.73486442872056], [-77.44167035378013, 34.735258726158676], [-77.44203473475943, 34.735510891757876], [-77.44204912441114, 34.735547092429286], [-77.44205913115346, 34.73557226647293], [-77.44230577879362, 34.73588641264501], [-77.44250079171977, 34.73611612589485], [-77.44260788218091, 34.73620676878314], [-77.44276672782429, 34.73630500840193], [-77.4430221955916, 34.736467748315235], [-77.44303322745206, 34.73647570034474], [-77.44303651523946, 34.73648058208058], [-77.4430515574261, 34.73649467615401], [-77.44336113893998, 34.736785287459966], [-77.4435317434804, 34.7369850245306], [-77.44386772129866, 34.73702031934016], [-77.44413225231045, 34.737125571596245], [-77.44434351540217, 34.737109487588484], [-77.44473955533753, 34.737102938576705], [-77.44477290095587, 34.73712737032523], [-77.44514965720046, 34.73737822695348], [-77.44532725672966, 34.737427462754255], [-77.44570047156692, 34.737830399988674], [-77.44583834495272, 34.73798368487759], [-77.44593728540094, 34.738045119233696], [-77.44623829845513, 34.73826320789738], [-77.44627896133068, 34.73857044328592], [-77.44636954571808, 34.738654860310504], [-77.44667168501535, 34.73886066776173], [-77.44654334733312, 34.739206844265354], [-77.44622213348514, 34.73876689164587], [-77.44600929870843, 34.738805188228305], [-77.44554646809993, 34.738886105014096], [-77.44536963724052, 34.738785243500175], [-77.44517658412798, 34.73889741542085], [-77.44491250369605, 34.738861160149774], [-77.44473589524503, 34.73889013863653], [-77.4444997092296, 34.73885972108147], [-77.44434442316214, 34.738886225973644], [-77.44426775301983, 34.73887349631878], [-77.44425944155485, 34.73885653916845], [-77.4442572440781, 34.73864344968861], [-77.44422080057434, 34.73856353188846], [-77.4438613188787, 34.73806207905673], [-77.44375454123659, 34.73796037919363], [-77.44356363816178, 34.737774940651626], [-77.44343359611031, 34.73764788418475], [-77.44335627962467, 34.73759151966479], [-77.4432598663134, 34.737582478782144], [-77.44295074271268, 34.73756082629968], [-77.44278472327422, 34.737554081472794], [-77.44267831368077, 34.73771868305536], [-77.44244548017552, 34.73794333189784], [-77.44247499736039, 34.738047871379685], [-77.44228814984473, 34.738238289972045], [-77.4419889124338, 34.738342849122844], [-77.4419710058496, 34.73870457570971], [-77.44185283778796, 34.73885433327278], [-77.44179203606855, 34.738923259539064], [-77.44163611738946, 34.73910470104295], [-77.44138159924476, 34.7392487257227], [-77.44139907615488, 34.739389622562996], [-77.44128924172395, 34.73959733085679], [-77.44112683002072, 34.73971874402024], [-77.4408905648709, 34.74004820211256], [-77.44079015688432, 34.74016014914337], [-77.44075442365273, 34.7402191109203], [-77.44064020583282, 34.74033063433658], [-77.44047894860813, 34.740516832065936], [-77.4404475088074, 34.740599467005914], [-77.44036268170227, 34.740714859764424], [-77.44028513819997, 34.74082225426959], [-77.44025807769445, 34.7409037359546], [-77.44022231598835, 34.74107981961817], [-77.44018207545517, 34.74123662136133], [-77.44015335260642, 34.74161475344173], [-77.44018696094331, 34.74189701890468], [-77.44020606308581, 34.742119432447076], [-77.44018413686705, 34.74218453497141], [-77.44016924025219, 34.742253917263085], [-77.4401091152756, 34.74260628960636], [-77.44008694552659, 34.74270960716969], [-77.44007439247385, 34.74284664898964], [-77.44005018139151, 34.743077286595046], [-77.44003063094976, 34.743248960076436], [-77.44002054443817, 34.74350634243013], [-77.44001825363488, 34.74352414983351], [-77.44001654642847, 34.74353772860412], [-77.44004020458685, 34.74381133134252], [-77.44004174546485, 34.7439736239045], [-77.44005934552001, 34.74437704504289], [-77.44005797728018, 34.74441326168407], [-77.44005706168258, 34.74456188080727], [-77.44014834819654, 34.74482196748162], [-77.44012764871562, 34.744959932492705], [-77.44014728545275, 34.74520859659198], [-77.44015054707032, 34.74552695781974], [-77.44011913199694, 34.7457269752101], [-77.43996152909867, 34.7460199522957], [-77.43981918917818, 34.746168046665176], [-77.43975751475284, 34.74622819541866], [-77.43967564398737, 34.746307439604124], [-77.43961215291233, 34.746384893441125], [-77.43962090584986, 34.746459985859545], [-77.43964786810257, 34.74648159559634], [-77.43966194693796, 34.74648126686935], [-77.43970014010159, 34.7464876656341], [-77.43974716390261, 34.74642423993549], [-77.43983456445523, 34.746438743835], [-77.43995753980353, 34.746393988611956], [-77.44012739871431, 34.74653477776161], [-77.44019935691621, 34.74658632535121], [-77.44049579125118, 34.74676561483224], [-77.44053351068959, 34.74689332770346], [-77.4406612745923, 34.746905834300506], [-77.44087295124612, 34.74689736787656], [-77.441187041117, 34.7469066072654], [-77.4413054205079, 34.74689582660935], [-77.44150191464973, 34.74683756891902], [-77.441549125351, 34.74675029237133], [-77.44173510143466, 34.746639514642126], [-77.44176712811736, 34.74637865706569], [-77.44177284576338, 34.746368027170746], [-77.44180722044248, 34.746361930013116], [-77.44210136529723, 34.74636119694943], [-77.44245945098092, 34.746333521889945], [-77.4426619679606, 34.74632477625196], [-77.44275694688912, 34.74631164180923], [-77.44292215952194, 34.746343170403605], [-77.443380977467, 34.746371126605794], [-77.44361888434793, 34.74639222770782], [-77.44379838334862, 34.746424001348984], [-77.44400377353784, 34.74643487818115], [-77.44418390253604, 34.746567296395014], [-77.44432561163708, 34.746426364449974], [-77.44455174191268, 34.74642038250094], [-77.4446502310502, 34.746416844852675], [-77.44489901182592, 34.74641119480333], [-77.44488026491805, 34.74662010087603], [-77.44469680297337, 34.746657254635664], [-77.44458305077515, 34.74664904649833], [-77.44428079943799, 34.74672552222446], [-77.44401034506606, 34.74678198105342], [-77.44389979092882, 34.746794272586484], [-77.44387488240801, 34.74681025959054], [-77.44385559120052, 34.7468212033002], [-77.44382901659698, 34.746857637220664], [-77.44359869393911, 34.74710683659525], [-77.4433962339648, 34.74721976587845], [-77.44332104699396, 34.74740103367931], [-77.44322322126283, 34.74771834958894], [-77.44307683688162, 34.74806429717585], [-77.44298400718175, 34.748345836183766], [-77.44278653822373, 34.74868385026601], [-77.44244573039754, 34.74896204125398], [-77.44211314690395, 34.749359187685315], [-77.44195149345799, 34.7495102076308], [-77.44190031099225, 34.74956659420159], [-77.441776868497, 34.74969878162237], [-77.44136413345109, 34.75018624781387], [-77.44105097051863, 34.75031369198197], [-77.44100251728433, 34.75034335307732], [-77.4409254952563, 34.75042484229803], [-77.44067730226297, 34.75055990046803], [-77.4405481749751, 34.750697083147074], [-77.44046489957358, 34.750939644670396], [-77.44053757484829, 34.75125240272533], [-77.44031320499536, 34.75146057845526], [-77.43997295683971, 34.75150042273452], [-77.43958547967867, 34.75176746931068], [-77.4392737011362, 34.75192896633192], [-77.43920269715993, 34.751946076822094], [-77.43887188397112, 34.75209744077031], [-77.4387083042795, 34.752118846899336], [-77.43851499222686, 34.752106445192446], [-77.43835575009896, 34.75216733358157], [-77.4380116108461, 34.75218788447364], [-77.4378569282507, 34.752272596276235], [-77.43782426632829, 34.752277238495374], [-77.43760722621383, 34.75227516035548], [-77.43726224196598, 34.75227566201055], [-77.43719624075197, 34.75223138257764], [-77.43714227636801, 34.75226352837266], [-77.43711023426577, 34.75229126636263], [-77.43672432368822, 34.752328645504804], [-77.43652370768302, 34.75233929822708], [-77.43648921333543, 34.752353835490496], [-77.43632444263909, 34.75242327615719], [-77.43624034828471, 34.75247872667441], [-77.43617093406934, 34.752522163698906], [-77.43616236720335, 34.75253242976496], [-77.43613176279699, 34.75258561571902], [-77.43604855416628, 34.75272040218121], [-77.43600940130763, 34.752798261487534], [-77.43619369819488, 34.75308915069097], [-77.43616221958995, 34.75318091905535], [-77.43620096930842, 34.75345433611929], [-77.43623813218849, 34.753595656231525], [-77.43619868684294, 34.753649928145855], [-77.43617834193336, 34.75368004534017], [-77.43601344146617, 34.754135781381194], [-77.43600980688421, 34.75414297978354], [-77.4360185707573, 34.75416680932838], [-77.43614678406632, 34.7545265635694], [-77.43622012869743, 34.75449597032393], [-77.43640247290536, 34.754419910964174]], [[-77.45646195047158, 34.74605023354384], [-77.45633449733336, 34.74592527268683], [-77.45614821437353, 34.745734734083754], [-77.45595052602224, 34.74559670286188], [-77.45580855023374, 34.7455266638675], [-77.45565981178935, 34.74549213308026], [-77.45531840056316, 34.74531216055626], [-77.45523224907055, 34.745302196679106], [-77.45484820842344, 34.74529196834856], [-77.45459078775795, 34.74530305850135], [-77.45421952336089, 34.74540980402743], [-77.45403690266173, 34.745462310787026], [-77.4539121435421, 34.745775082980906], [-77.453942287578, 34.74587198111509], [-77.45410194443471, 34.746142308360746], [-77.4542992728293, 34.746311093399086], [-77.45453439897918, 34.74640826571022], [-77.45462981681567, 34.74643026438189], [-77.45490371037296, 34.74643828701223], [-77.45525746796756, 34.74633123934404], [-77.45542930380637, 34.74624061189766], [-77.45563318963744, 34.74613308001237], [-77.45580921066707, 34.74632266170935], [-77.45627590968232, 34.74612788090358]], [[-77.47333148797756, 34.467800215152415], [-77.47247973973165, 34.467636665765], [-77.47197812573702, 34.46777420199976], [-77.47186789453235, 34.46781526168643], [-77.47165611557196, 34.46786546602948], [-77.4713607764981, 34.46797813683899], [-77.47121346256553, 34.468091318546975], [-77.47078569397756, 34.468336631833935], [-77.47064060990363, 34.46840700747652], [-77.47045646941649, 34.46848012277037], [-77.47005435335777, 34.46871618596862], [-77.4697534816596, 34.46878221486372], [-77.46959092646884, 34.46889057085002], [-77.46933534276515, 34.46896086584309], [-77.46912833685924, 34.46908825213574], [-77.46899681322492, 34.4691795179921], [-77.46893195575903, 34.469358888008074], [-77.46846078361683, 34.46968088536751], [-77.4684347414834, 34.469711325576206], [-77.46838734812411, 34.46972616431591], [-77.46810720799628, 34.469922514129216], [-77.46799186652692, 34.47009016395562], [-77.46752533513246, 34.47035793025513], [-77.46750306747467, 34.470446689002614], [-77.46715611540345, 34.47041968387363], [-77.4660515454876, 34.470716966292756], [-77.46582010897721, 34.47081703306972], [-77.46540191772823, 34.47080295633273], [-77.46517852210633, 34.470914316394925], [-77.46515149027238, 34.47108618816401], [-77.4648325371942, 34.47118244724994], [-77.46456670200817, 34.47139607160966], [-77.46361659416718, 34.47165917546387], [-77.46314426690023, 34.47189297835357], [-77.46256935907482, 34.47213285146708], [-77.46250362295918, 34.47217572473857], [-77.46241706697046, 34.47219600115246], [-77.46192359585856, 34.472437809871025], [-77.46187136900203, 34.47246254359899], [-77.46182327079008, 34.47248625683208], [-77.46132504955918, 34.472745163404916], [-77.46129711734869, 34.47277754495147], [-77.46125077636492, 34.47285444601407], [-77.46111939046895, 34.47307247444306], [-77.46102022517245, 34.473237035019054], [-77.46083457349869, 34.47339576239052], [-77.46053044031181, 34.47388279996072], [-77.46057941481759, 34.47405831774344], [-77.46122042670657, 34.47452238051929], [-77.4602950328215, 34.47428314495911], [-77.45968360644241, 34.47468832086621], [-77.46012938577309, 34.47518031541974], [-77.45916294398171, 34.4750668561867], [-77.45872217922624, 34.47531498448086], [-77.45843319230426, 34.475544198235866], [-77.45801739821349, 34.47580140654595], [-77.45742031573894, 34.47592433789984], [-77.45816469667298, 34.47634026941291], [-77.45924268887964, 34.47601695540499], [-77.4593434625734, 34.47598651254944], [-77.45941220111388, 34.4759786743647], [-77.45954522303012, 34.475963504919264], [-77.4611161199096, 34.47565976744086], [-77.46115616257117, 34.47543865356263], [-77.46184819112047, 34.47503969512403], [-77.462003190227, 34.47490272196124], [-77.46219427226647, 34.47481586760108], [-77.46277630710668, 34.474684335955814], [-77.46302093816848, 34.47440476961991], [-77.463295411014, 34.47434252740223], [-77.46326081659439, 34.474194518292435], [-77.46330300789575, 34.473999544814234], [-77.46341632120726, 34.47380725064191], [-77.46398955011367, 34.473640710093726], [-77.46414913009203, 34.47360694434997], [-77.46419075654659, 34.47358950425825], [-77.46430602120927, 34.47357207776509], [-77.46541770742499, 34.47332261170186], [-77.46607918260595, 34.47331897324789], [-77.46672180168122, 34.4731681834789], [-77.46816901943947, 34.47241712971453], [-77.46853145986822, 34.47213434447811], [-77.46902335402035, 34.47173809450842], [-77.46947480022132, 34.47140463531093], [-77.4703511743969, 34.47117682077641], [-77.47090424067119, 34.470911083414755], [-77.47145125184349, 34.4707702248792], [-77.47310977616695, 34.46996571154019], [-77.47355117306826, 34.469820995836685], [-77.47383809409408, 34.469652423679534], [-77.47356050775576, 34.468637554335984]], [[-77.43096181872312, 34.50244857902942], [-77.43079950816191, 34.50251291843264], [-77.43068401847569, 34.502597258639156], [-77.4307071188922, 34.50277027105042], [-77.43059467689339, 34.502930468728906], [-77.43050784451097, 34.502965296023426], [-77.43046558548173, 34.50309711703966], [-77.43026487946636, 34.50325141131379], [-77.4301135155653, 34.50336777365762], [-77.42982668542534, 34.503566820434855], [-77.43022792226617, 34.5038032476571], [-77.43031982224674, 34.50406219032385], [-77.43026016176333, 34.50426447688379], [-77.4304381544661, 34.50447625745094], [-77.43091056061886, 34.50472634658438], [-77.43138967624455, 34.50476222382902], [-77.43227593399335, 34.50479452152277], [-77.43261606286259, 34.50458409393763], [-77.43257311871211, 34.50438246377631], [-77.43278167743777, 34.504180813915056], [-77.43287361321697, 34.504115135921616], [-77.432972665448, 34.50406507306273], [-77.43294158036387, 34.50395191764872], [-77.43304970231463, 34.50373123412321], [-77.43309902758327, 34.503630558720005], [-77.43317914850314, 34.50317074452791], [-77.43327793907271, 34.50312338217209], [-77.43326110029712, 34.50306647991119], [-77.43319670188741, 34.50303591761163], [-77.43312975140923, 34.5029899010392], [-77.43275126649519, 34.50270271049551], [-77.4326311973756, 34.502548411018005], [-77.43186518804995, 34.5024367460162], [-77.43162087051162, 34.502396202568804], [-77.43130416952543, 34.50245853040128]], [[-77.33567350133032, 34.57477946808181], [-77.33564103182533, 34.574982595554516], [-77.3353657067784, 34.57536489119452], [-77.33517045172994, 34.57576840000466], [-77.33510218870639, 34.57547657934103], [-77.33511472457128, 34.57540097124744], [-77.3347416055919, 34.57506821528146], [-77.3347321994569, 34.57503141980685], [-77.33470738107954, 34.574959867981065], [-77.33466840352415, 34.57482832047608], [-77.33477737429727, 34.57461941944666], [-77.33478432121103, 34.57460686153489], [-77.33482601249113, 34.57459339402381], [-77.33497443670434, 34.57454536987438], [-77.33512244768181, 34.57449795109166], [-77.3351714899327, 34.57448223921797], [-77.33524264931103, 34.57445684827549], [-77.33557498576968, 34.57448572484134]], [[-77.23810526364207, 34.593749307647855], [-77.23731466188478, 34.593510846385435], [-77.23710869639226, 34.59329539100388], [-77.23711312206129, 34.59319971984049], [-77.23716666579624, 34.593180890976484], [-77.23767114678868, 34.59300445418488], [-77.23786027183, 34.59293927472372], [-77.2381780344488, 34.592848650790536], [-77.23826866817757, 34.592819487240305], [-77.238885892676, 34.59277035869046], [-77.23922093791643, 34.59245409232773], [-77.24096059236749, 34.59208901412231], [-77.23998157437329, 34.591777959621325], [-77.24027855723726, 34.59137974614153], [-77.24037007048149, 34.59109975754883], [-77.24018607428127, 34.590966656986794], [-77.24002279971339, 34.59087013256271], [-77.23961063213271, 34.590568531167996], [-77.23953694307136, 34.590474852963055], [-77.23878808026062, 34.59005370002205], [-77.2387590424934, 34.59003552536354], [-77.23875476260154, 34.590032846543195], [-77.2387437724477, 34.59002882904578], [-77.23742876769658, 34.58933234180453], [-77.23608524769509, 34.58981916916125], [-77.23571831563483, 34.589952126936794], [-77.23508816071497, 34.59062477398545], [-77.23503328418236, 34.590678906601205], [-77.23440040209957, 34.5914092503546], [-77.23383928327385, 34.5918724439387], [-77.23328921633413, 34.59242674521554], [-77.23340758247667, 34.59315565750252], [-77.23339259680118, 34.59350909077749], [-77.2334772572982, 34.59380638645136], [-77.23444861223697, 34.59440363230317], [-77.23457716277252, 34.594535302700265], [-77.23466852763988, 34.594784230313806], [-77.23522288786374, 34.59477079819089], [-77.23612551206818, 34.59469062545955], [-77.23645711906772, 34.594582354973994], [-77.2364798574987, 34.5945742636417], [-77.23653951390295, 34.59456854716329], [-77.23715909183807, 34.594521143834], [-77.23738253263244, 34.594419935453615], [-77.23768601105361, 34.59433251087505], [-77.23839492503372, 34.59384131357728]], [[-77.2643619743025, 34.59608763156415], [-77.26569438471971, 34.59558026505324], [-77.26823192432312, 34.595103903808536], [-77.2707262219442, 34.594796630851754], [-77.27204706447871, 34.595202628612626], [-77.27174322524215, 34.59570082073165], [-77.27095476495194, 34.597277662333774], [-77.27017117311951, 34.59884469675584], [-77.26996913595151, 34.599380949075076], [-77.26947685874066, 34.60093218183394], [-77.26868440361481, 34.60234094212731], [-77.26843122327544, 34.603271150522005], [-77.26655965659728, 34.60313667686936], [-77.26451312648581, 34.6024548127835], [-77.2644979456052, 34.6024391060965], [-77.26448442232915, 34.60242511421032], [-77.26435410289594, 34.60227515828406], [-77.2635229633344, 34.6013345442653], [-77.26285010358626, 34.60041126012053], [-77.26271945838593, 34.60016576862405], [-77.26255843763812, 34.59965238895014], [-77.26158483437493, 34.59912099088154], [-77.26214072077656, 34.59847013091744], [-77.26229244732156, 34.597813135714816], [-77.26299353791056, 34.59712380647524], [-77.26276050112547, 34.59663351737372]], [[-77.42865407150556, 34.49153216545165], [-77.4293625532787, 34.49111980831051], [-77.42911348610374, 34.49069517940562], [-77.42882388051622, 34.490446487079595], [-77.42893478179381, 34.48972355931579], [-77.42987095560116, 34.48938276263344], [-77.42882425352715, 34.48888075951903], [-77.42877357491938, 34.488651211107324], [-77.4278082616479, 34.48843432989081], [-77.42745876808979, 34.488584082249794], [-77.42694481075326, 34.48875610352712], [-77.42658873723735, 34.488899345306045], [-77.42599305919998, 34.48918477412657], [-77.42611923630776, 34.48954303987975], [-77.42552197532524, 34.489923974902545], [-77.42518428422594, 34.49027680414855], [-77.4246408360516, 34.49046679191958], [-77.42451673692574, 34.4905464158269], [-77.42435129107369, 34.490568016022465], [-77.42393379011882, 34.49076844499072], [-77.4239294330215, 34.49085503772569], [-77.423281235946, 34.49107287731003], [-77.4233355443873, 34.49174667468034], [-77.42339822880933, 34.4917543988905], [-77.42575406957826, 34.49204940639853], [-77.42553724816375, 34.4925392067895], [-77.42536521482539, 34.492741425841004], [-77.42450478306691, 34.49316201001376], [-77.42444602278607, 34.493482866753226], [-77.42431087604126, 34.49436842519535], [-77.42499838712952, 34.494538307474905], [-77.42644772441999, 34.49481824788203], [-77.42606385642377, 34.49526826870729], [-77.42656754457715, 34.49553844547057], [-77.42658757545787, 34.49563278349672], [-77.42676332242004, 34.495797766749455], [-77.42690456700069, 34.495986739330974], [-77.42696825841733, 34.49611198141457], [-77.42724184443763, 34.4962233712078], [-77.42765902188052, 34.4962331913605], [-77.42832680904777, 34.496059346959704], [-77.42851802353142, 34.49605662091865], [-77.42853984611264, 34.49604537903943], [-77.42894454341021, 34.49575310921735], [-77.42890870809, 34.49565238806724], [-77.42916733729695, 34.495426709578396], [-77.42914125395104, 34.4949773713268], [-77.4288204729819, 34.49473346549742], [-77.42853316688087, 34.49451212047813], [-77.4281975830322, 34.494118391877485], [-77.42832124355624, 34.494032442466796], [-77.42820163204888, 34.493902465738245], [-77.42824325551167, 34.493352920782485], [-77.42830755289802, 34.49298354410473], [-77.42820921390742, 34.49267564241334], [-77.42854789252264, 34.492156132895786], [-77.42766237941565, 34.491972178396956], [-77.4285779580003, 34.491926697360874]], [[-77.44753280976659, 34.48212833051504], [-77.44673429357175, 34.48213597731396], [-77.4476681856247, 34.4822714326115], [-77.44777410648545, 34.48218891550581], [-77.449139291676, 34.48172090310133], [-77.44999051266073, 34.480956243759145], [-77.44999661988714, 34.48095097547215], [-77.44848838556292, 34.480345662417875], [-77.44779132691836, 34.48083873757279], [-77.44829329217586, 34.48130975545622], [-77.44760956182509, 34.48205688456746]], [[-77.46692381885117, 34.506129516979], [-77.46722282412696, 34.504834102474106], [-77.46724198825326, 34.50479464014571], [-77.4672500203702, 34.50477619856155], [-77.46727212158515, 34.504719614627945], [-77.46751713483336, 34.5046803113855], [-77.46740539530282, 34.50480292549097], [-77.46739934273172, 34.50484871236818], [-77.46848803081917, 34.50620883895122], [-77.46805281124978, 34.507532182064104], [-77.46805137442665, 34.50753772118767], [-77.46805022364846, 34.5075407951875], [-77.46804667079246, 34.50755063637919], [-77.46768333941199, 34.50855062912851], [-77.46757170418039, 34.508864413727196], [-77.46725692413082, 34.5095139385099], [-77.46725055404222, 34.50952847279489], [-77.46634772645427, 34.510153358979665], [-77.4661047652201, 34.510298831075836], [-77.46539095807921, 34.51100145486564], [-77.46504360370818, 34.511343361108004], [-77.46497518392593, 34.51139356127341], [-77.46495194247613, 34.51143358375324], [-77.4647882996475, 34.51158670954391], [-77.46457276552731, 34.51179215075114], [-77.46440340037975, 34.51178780754956], [-77.46431530611883, 34.511667123682784], [-77.46401644692614, 34.511386124622604], [-77.46391578491699, 34.51125963972098], [-77.46398672524882, 34.51091354452387], [-77.46439530400292, 34.51072983335946], [-77.46451046263057, 34.51057387097243], [-77.46584559583468, 34.51012789182948], [-77.46555466601843, 34.50989293881502], [-77.46499193851193, 34.50940907996868], [-77.46566371865534, 34.50878051646966], [-77.46568117846194, 34.508768534405576], [-77.465679641161, 34.50876561836116], [-77.46568377210818, 34.508760033755294], [-77.46599372333935, 34.50832413627674], [-77.46605257554754, 34.50811186110211], [-77.46613627475597, 34.50779935333861], [-77.46802191195421, 34.50753622720144], [-77.46803174423486, 34.507531821394444]], [[-77.33293017067624, 34.63415729406774], [-77.33286058006394, 34.634133692538164], [-77.332558565859, 34.63377562859419], [-77.33245727716508, 34.63399691254708], [-77.33243522209797, 34.63398920798032], [-77.33232017367533, 34.633868875287575], [-77.33225702673452, 34.63379450702923], [-77.33237641703705, 34.63366558957425], [-77.33253584052876, 34.63373662182698], [-77.33254991049317, 34.63373252890141], [-77.33257229189839, 34.63371786480704], [-77.33288651123355, 34.63381468345091], [-77.33300329150656, 34.6340125418583], [-77.3330337615119, 34.63410993134731], [-77.3330183153501, 34.63418718778295], [-77.3329571542724, 34.63416644539829]], [[-77.3637695801401, 34.52761002462091], [-77.36416393627458, 34.52740841336132], [-77.36424094133797, 34.52734441618098], [-77.36455299830789, 34.52725665277178], [-77.36455994613874, 34.52725508947513], [-77.36456961866473, 34.52725599307658], [-77.364573203172, 34.527249430595475], [-77.36479575302768, 34.52711767052655], [-77.36495903463417, 34.5269668520186], [-77.36496805071731, 34.52695315034377], [-77.36497293903791, 34.52694701743379], [-77.36517120688158, 34.52680364637522], [-77.36518830791522, 34.526775702528575], [-77.36517267756372, 34.52667341579786], [-77.36524793166906, 34.52659261930855], [-77.36526832855976, 34.52653722272106], [-77.3653637877298, 34.52643032841441], [-77.36538704365435, 34.526411950921535], [-77.36543481990218, 34.52639082340122], [-77.36544609312637, 34.52633915873759], [-77.36554766365767, 34.52612973986012], [-77.36553529088499, 34.52598736586563], [-77.36556875467261, 34.52576351893393], [-77.36562574643688, 34.52562883827505], [-77.36556077306061, 34.52552817241145], [-77.36546742741024, 34.52545761863438], [-77.36540815946101, 34.525415360548706], [-77.365402759286, 34.525406408236115], [-77.3653874648542, 34.52539304953618], [-77.36526442105128, 34.52535883152839], [-77.36499701195034, 34.525303431114175], [-77.36481544392306, 34.52525592595224], [-77.36451991789308, 34.52510920805726], [-77.36421658262783, 34.5251034297593], [-77.3640119550183, 34.52524607239911], [-77.3639524028886, 34.525380258161036], [-77.36381465499883, 34.52551619646324], [-77.36369178815968, 34.52558699673222], [-77.36341247012484, 34.52594004835979], [-77.36340211310967, 34.525942760186275], [-77.36340278862262, 34.52594908449505], [-77.36340487231273, 34.52595333415294], [-77.36321293405445, 34.52634742901865], [-77.36299196322904, 34.5264979144314], [-77.36292343688906, 34.52670328018792], [-77.36260851210595, 34.526769208003664], [-77.36258141535887, 34.52680187858145], [-77.36251074490765, 34.52699918027294], [-77.36250617197092, 34.5270575420289], [-77.36248914610606, 34.52712931387164], [-77.36259143544534, 34.52751625532887], [-77.3625960517338, 34.5275311538215], [-77.36259834492607, 34.52753391530872], [-77.36262961437049, 34.5275537595852], [-77.36285469880185, 34.52774181365382], [-77.36258180750568, 34.5279374475913], [-77.36249472175118, 34.527984848637075], [-77.36242787181301, 34.528048120629805], [-77.36225021916405, 34.528275711193274], [-77.36220191752263, 34.52832549282], [-77.36220677652331, 34.52834145771618], [-77.3622754143959, 34.5285597306853], [-77.36237893535883, 34.52866104107315], [-77.36256044621055, 34.52887194215969], [-77.36262498851677, 34.52895755015183], [-77.36268726254778, 34.5289900577648], [-77.36294670829119, 34.529145588304964], [-77.36300473182374, 34.52915285844457], [-77.36321206075449, 34.52907902273689], [-77.36321441602374, 34.52903653619859], [-77.36329170717411, 34.52899359773254], [-77.36329014262844, 34.528964421607526], [-77.36327210271374, 34.528950461455466], [-77.3632080516681, 34.528915040338056], [-77.36316744566187, 34.52880894694678], [-77.36315811979375, 34.52879982032165], [-77.36315568860539, 34.52879720120316], [-77.3630273247942, 34.528696248286515], [-77.36303457331377, 34.52864749980449], [-77.3630052041171, 34.528481630917916], [-77.36301148462164, 34.52845370482106], [-77.36305802608689, 34.5283883617289], [-77.36299826656818, 34.528229889364674], [-77.36299337825999, 34.5282114878058], [-77.36309181597042, 34.52812139815904], [-77.3632019145007, 34.52793662315169], [-77.36314539996084, 34.52780475738521], [-77.36336905035786, 34.527840297097384], [-77.36374865348988, 34.52762416990522], [-77.36376678176622, 34.52761177512083], [-77.36376855502148, 34.527611271171935]], [[-77.41788336856109, 34.49623385977808], [-77.41788320631674, 34.496470717262326], [-77.41775727941183, 34.49687044719336], [-77.41803353941813, 34.49702152847064], [-77.41918714866213, 34.497043355178945], [-77.41937679640655, 34.4970092942396], [-77.41947903040361, 34.49695847144549], [-77.41948703304936, 34.49688680610677], [-77.41983403869949, 34.49630107132387], [-77.41903847546583, 34.49576977274973], [-77.41795964627488, 34.4962052471993]], [[-77.30799975900474, 34.54556925267818], [-77.30790711486752, 34.54562398716422], [-77.30778861187777, 34.545697964436755], [-77.30698818437148, 34.54617015558993], [-77.30640845884707, 34.546456188136695], [-77.30602705793491, 34.546695768044586], [-77.30561136962164, 34.54696025323888], [-77.30555206725575, 34.54699825100604], [-77.30511364841925, 34.547244624591215], [-77.30481354209431, 34.54749526083277], [-77.30458258460371, 34.547627019506514], [-77.30425009755842, 34.54781776926171], [-77.30372189073738, 34.54824016380443], [-77.30346579042512, 34.5484295177238], [-77.30321796412687, 34.548560674515116], [-77.30258838685472, 34.5488924559394], [-77.30250761116636, 34.54895656450039], [-77.3024227477152, 34.548983574433315], [-77.30211134018563, 34.54915259671579], [-77.30162738561035, 34.54941229938649], [-77.30139328986326, 34.54955357147544], [-77.30050252377808, 34.54996742676775], [-77.30003442898092, 34.550363275109945], [-77.29929887124479, 34.55083332384875], [-77.29885275663982, 34.55115139037608], [-77.29843882883137, 34.551424603091725], [-77.29749917661746, 34.552070752582225], [-77.29713898978852, 34.55230417595734], [-77.29684523088406, 34.55239946556134], [-77.29627743202056, 34.55273563447364], [-77.29614359810522, 34.55281308817634], [-77.29604916493045, 34.55285528970155], [-77.29532885369152, 34.55336131638648], [-77.29529313628467, 34.55339260946312], [-77.29525013493054, 34.55343604147242], [-77.29481118021062, 34.55370527396254], [-77.29440066027183, 34.55395166081363], [-77.2936561986831, 34.55442191701946], [-77.29349992587613, 34.554506687203556], [-77.29334495139852, 34.55462509296735], [-77.29206165078912, 34.55543197841565], [-77.29167678010208, 34.55560617816248], [-77.29046512568686, 34.556523762695846], [-77.28970194212354, 34.556939127374704], [-77.28882129266148, 34.55736225055404], [-77.28770221698585, 34.55811713078903], [-77.2871714452101, 34.55845254346762], [-77.28681860094744, 34.558681588660335], [-77.28552510003898, 34.559393631372025], [-77.28456330152628, 34.560062273481044], [-77.28406246729493, 34.56043398373262], [-77.2838733461797, 34.56056048261389], [-77.28362977586139, 34.5606915015705], [-77.28222406370173, 34.561621550305716], [-77.2814592389294, 34.56219833891618], [-77.2813972341469, 34.562243288673386], [-77.28127615175146, 34.56232828768831], [-77.28057264783732, 34.56277035407981], [-77.28018796984958, 34.56308288295109], [-77.2791764629801, 34.56368512745749], [-77.27892413770387, 34.56379535943537], [-77.27868346980047, 34.56394909470944], [-77.27819642720218, 34.56423886329874], [-77.27798005144724, 34.564365164472136], [-77.27791456078849, 34.564387778006896], [-77.27784424768693, 34.56442868664947], [-77.27725426835121, 34.564779472357316], [-77.27705197669542, 34.56493494684852], [-77.27656145478788, 34.565299117739286], [-77.27621225314083, 34.565502450419636], [-77.27606789704512, 34.565628915975374], [-77.27569153172729, 34.56591244694633], [-77.27548894502944, 34.5660547548196], [-77.27543888678368, 34.56612897569581], [-77.27502001473955, 34.56648923402559], [-77.27459851451695, 34.566695913373366], [-77.27404425373413, 34.566944092494396], [-77.27339632788505, 34.56730429197893], [-77.27332884867508, 34.56753265678615], [-77.27312439626472, 34.56775425298964], [-77.27306126165658, 34.567957419781436], [-77.27273185529391, 34.56819473019585], [-77.27230754347424, 34.568601441511746], [-77.27213038506048, 34.568716576822496], [-77.27170880120482, 34.569056980412185], [-77.27161924496458, 34.56930364700403], [-77.27107395171922, 34.56948485935794], [-77.27067324487825, 34.56977667270067], [-77.27039093150451, 34.569896047751804], [-77.26997432104031, 34.56999273550069], [-77.26961362316634, 34.57014864461082], [-77.26887789812436, 34.57049422855475], [-77.26855117461406, 34.57069406596575], [-77.26839989917057, 34.570849116768066], [-77.2681267218065, 34.57113202592961], [-77.26803582494577, 34.57137415581054], [-77.26786068074924, 34.57158243986006], [-77.26733894025611, 34.571981429887515], [-77.26697789498105, 34.572455689648706], [-77.26653740153047, 34.57267028689864], [-77.26589051114821, 34.573068096530754], [-77.2655513833575, 34.57328617252053], [-77.26503008047206, 34.573581206281716], [-77.26477291194576, 34.573729796104416], [-77.26468412933912, 34.57378682862462], [-77.26419233587006, 34.57412194815063], [-77.2639462162409, 34.57430896332205], [-77.26323461382827, 34.574986185341245], [-77.26323224363371, 34.574988398943255], [-77.26322916750418, 34.57499064137052], [-77.26208694649472, 34.57584166822006], [-77.26161770467067, 34.5761813192613], [-77.26126912593405, 34.576459628399654], [-77.26097504149796, 34.576696862360144], [-77.26084861437992, 34.576811746839965], [-77.26045045761153, 34.57715751659166], [-77.26008858063321, 34.577450234835794], [-77.25994484925322, 34.5775584761645], [-77.25970454417724, 34.57778045080671], [-77.25945070188365, 34.57799093083702], [-77.25947573742266, 34.57821965345411], [-77.2594670167042, 34.578463554456704], [-77.25951475159647, 34.579007181597596], [-77.25992558346093, 34.579167305918716], [-77.2607530193692, 34.579355740224514], [-77.26099645058397, 34.579055246230055], [-77.26119441154398, 34.57901946924066], [-77.26121176980749, 34.57907218825556], [-77.26103156854222, 34.579487902233346], [-77.26102330067074, 34.57952869873993], [-77.26114588645363, 34.579705169918], [-77.26079562747523, 34.57980777991157], [-77.26031439516797, 34.579944258347666], [-77.26007591035716, 34.580068006676775], [-77.25977789959447, 34.580373380278395], [-77.25945361738904, 34.58081370912901], [-77.25944689248823, 34.5808186758594], [-77.25944501519183, 34.58082138553765], [-77.25923940458327, 34.581261344454184], [-77.25924623756171, 34.58127422614374], [-77.2592367986516, 34.58129345303129], [-77.2592138757331, 34.58163831441968], [-77.25962745104553, 34.58164091346225], [-77.25985153569155, 34.58167398733316], [-77.25996100721818, 34.581725913434134], [-77.26002744312362, 34.58174284315774], [-77.26006680824669, 34.581703059752684], [-77.2601518940929, 34.581705127373176], [-77.26015978900311, 34.581699618785585], [-77.2601961570976, 34.58165379089317], [-77.26031317826757, 34.58159460293302], [-77.26031384268981, 34.58159414852249], [-77.26031412733813, 34.58159392794856], [-77.26031506697942, 34.58159331120454], [-77.26044306028379, 34.581486237931735], [-77.26052271565575, 34.58145129590752], [-77.26057902539435, 34.58140259980408], [-77.26060533791124, 34.58138117153669], [-77.26061329488437, 34.58136754484891], [-77.26064684518396, 34.58135161203168], [-77.26071977214067, 34.5812979338158], [-77.26083013705414, 34.5812166988403], [-77.26087825778497, 34.58116697545186], [-77.26092194512046, 34.58114912282895], [-77.26098504066469, 34.58109966460129], [-77.2610328831991, 34.58106130652631], [-77.26111542312225, 34.58099257866941], [-77.26116227685313, 34.58095365212632], [-77.26126048020771, 34.58087181596461], [-77.26127647053902, 34.58084480193201], [-77.26130626831804, 34.580833693334405], [-77.26134681709952, 34.580801097984036], [-77.26142565842775, 34.580738704801554], [-77.26149265479222, 34.58067084262876], [-77.26160411368426, 34.58055940646418], [-77.26153773284584, 34.5805118526646], [-77.26174037462424, 34.580439700143884], [-77.26185981683183, 34.58034015210935], [-77.2619104440891, 34.58030550611099], [-77.26207602562188, 34.58020382681123], [-77.26208461328012, 34.58019573284374], [-77.26220442891085, 34.58009296520393], [-77.2622554803446, 34.58003481247809], [-77.26241959015915, 34.579886561345404], [-77.26240909106134, 34.579873396688924], [-77.2624596608521, 34.57985096935169], [-77.26262424478, 34.57970555006713], [-77.26269070684361, 34.57965988167288], [-77.26284191754331, 34.57957052826819], [-77.26290966185519, 34.579519296572116], [-77.26300367882578, 34.57944883302574], [-77.26302766946397, 34.57940711623619], [-77.26316139206605, 34.57929691908994], [-77.263230053912, 34.579230971613235], [-77.26325430800668, 34.579206499157856], [-77.26333897672063, 34.57912170533804], [-77.26336877661606, 34.57905325872533], [-77.26340012926168, 34.57900868117381], [-77.26349521047774, 34.57893255853046], [-77.26350007647241, 34.57884141852462], [-77.26360833569305, 34.578829945477274], [-77.26364675557451, 34.57879241237373], [-77.26371033721783, 34.57869980622727], [-77.26390444235057, 34.578595566118025], [-77.26388717330994, 34.57857565468073], [-77.26393107660712, 34.57856751383584], [-77.26395053532339, 34.57857003647703], [-77.26406593472345, 34.578471881438844], [-77.26409879851315, 34.57838806843901], [-77.26412743408451, 34.57835888436672], [-77.26421412428095, 34.57829585993906], [-77.26423638993103, 34.57818182572385], [-77.26437241780442, 34.578152589734714], [-77.26438258300573, 34.578143284863295], [-77.2644495203625, 34.57804276713431], [-77.26468506903228, 34.57795108633511], [-77.26470180667545, 34.57793853349177], [-77.26470751405624, 34.57793317350036], [-77.2647209384037, 34.57792231081048], [-77.26482153271478, 34.577824307084256], [-77.26485444838653, 34.577745677604426], [-77.26488064440274, 34.5777111219957], [-77.2650844592388, 34.577621633076696], [-77.26512714361212, 34.57758644459228], [-77.26518575526259, 34.57749945085922], [-77.26521777311548, 34.57741158824191], [-77.265428916866, 34.57731369590198], [-77.26545262395253, 34.577291848974156], [-77.26545970729276, 34.57728532849734], [-77.26547608700875, 34.57727202567322], [-77.26558351405806, 34.577079649401426], [-77.26559484572088, 34.57706028838029], [-77.26569488802247, 34.577006355108395], [-77.2659374283046, 34.57673719347562], [-77.26613736753015, 34.57674626351668], [-77.26623427735163, 34.57667259535208], [-77.2662850726864, 34.57664323460702], [-77.26635897249332, 34.576619191885264], [-77.2664428494961, 34.57655891179469], [-77.26645978808375, 34.57654455064234], [-77.26647855017816, 34.576529087518125], [-77.26656958459702, 34.5764299408427], [-77.26665155914957, 34.57638649912046], [-77.2666810244846, 34.57636138482004], [-77.26671485689056, 34.57632353099756], [-77.26674689733655, 34.5763069867096], [-77.26677946270472, 34.57627858174887], [-77.266776573588, 34.57626946732447], [-77.26680793230477, 34.57625371550456], [-77.26684006575886, 34.57622554466171], [-77.26685065466675, 34.576216375930464], [-77.26687215500866, 34.57619793093246], [-77.26695960967199, 34.57600325739756], [-77.26699749190738, 34.575992254853965], [-77.26719825802371, 34.57589860262802], [-77.26720456409038, 34.575892506586364], [-77.26721766694983, 34.57588478827927], [-77.26714067006999, 34.57576784588505], [-77.26736503793234, 34.57570662188334], [-77.26750021750205, 34.57571820208547], [-77.26754694565726, 34.575681959471396], [-77.26759531816124, 34.57558282092622], [-77.26760728891499, 34.57556887050796], [-77.26767003986946, 34.575531611639434], [-77.26772972669289, 34.575373755601206], [-77.2677960641538, 34.57534804655383], [-77.2678508402267, 34.57528016934103], [-77.26789958195513, 34.575196215704665], [-77.26797222109903, 34.57512623010537], [-77.26807604749212, 34.575024555206156], [-77.26808405698658, 34.575017190081375], [-77.26811109473171, 34.57499896098228], [-77.2682276892062, 34.57491064983206], [-77.26827020217219, 34.57486862689496], [-77.26836346675759, 34.5748446236335], [-77.2685675705447, 34.5748044929208], [-77.26859907098047, 34.57479541252977], [-77.26866839980192, 34.57472986587865], [-77.26873973089673, 34.57472560959456], [-77.26874947165192, 34.574716008444774], [-77.26877686011704, 34.574662025614664], [-77.26890290473814, 34.57461128875251], [-77.26890412501551, 34.5746103342065], [-77.26896236055619, 34.57449840171428], [-77.26896440224473, 34.57449723969161], [-77.26897355804552, 34.5744921447717], [-77.26908488931531, 34.574278774314], [-77.26908256435118, 34.57427086252585], [-77.26959181164091, 34.57408239082495], [-77.26959842524968, 34.574078291660285], [-77.2695995866622, 34.5740758438268], [-77.26960567768499, 34.57407161584117], [-77.26974690539868, 34.57388174539841], [-77.26987500812884, 34.57386182959298], [-77.26990101390605, 34.57385450291765], [-77.26991747049738, 34.573855098367765], [-77.26997780287503, 34.57381099416196], [-77.26999880205582, 34.57377717234386], [-77.27002276196731, 34.573755611851496], [-77.27011962550351, 34.57369535450833], [-77.27007221257222, 34.573641665751886], [-77.27017760228685, 34.57360759181083], [-77.27024997412337, 34.573614266559844], [-77.27034202433875, 34.573545043408906], [-77.27040493414795, 34.5734966068552], [-77.27041080560241, 34.57348639450983], [-77.27043802621714, 34.573434756888055], [-77.2705979995398, 34.573342736714835], [-77.27060893608324, 34.57333400584753], [-77.27062236880366, 34.573323287416535], [-77.27072248910206, 34.57322145202402], [-77.27080466535169, 34.57317948205645], [-77.2708472244675, 34.57314718695018], [-77.27083881892078, 34.57311276327966], [-77.27094482732716, 34.573073569691246], [-77.27100447059706, 34.573028583488494], [-77.27102800077793, 34.5730098012711], [-77.2710892110054, 34.57296466746177], [-77.27109896338234, 34.57294832324699], [-77.27111545360351, 34.57294449667041], [-77.27116546820939, 34.572902773915004], [-77.27119333650042, 34.57286795663359], [-77.2712511224223, 34.57281214846409], [-77.27122514498839, 34.572789631526774], [-77.27133199839768, 34.572724618770714], [-77.27136205862459, 34.5726894156802], [-77.27137527368397, 34.57268359926768], [-77.27138219925553, 34.57267118175645], [-77.27140688586805, 34.57257652891215], [-77.27139527092982, 34.57256733782033], [-77.27142250874189, 34.57247236554708], [-77.27143716532767, 34.57242762011639], [-77.27147051556409, 34.57233758563552], [-77.2714995782076, 34.572259776447126], [-77.27153275285067, 34.572184039174914], [-77.27160388505801, 34.57211240249099], [-77.27173953809928, 34.572039350154256], [-77.27194834800987, 34.571903812046145], [-77.2719624266242, 34.57189461069117], [-77.27215329692982, 34.57175014116506], [-77.27219541227136, 34.57168756499512], [-77.27235437540716, 34.57160037816301], [-77.27240306846531, 34.57158605360142], [-77.27253082728606, 34.57150596434782], [-77.27257012404216, 34.5714813507013], [-77.27258185589933, 34.57147409537479], [-77.27260432146998, 34.571458584920805], [-77.27274453477659, 34.57129018337704], [-77.27286445244192, 34.571268817613735], [-77.27293219675167, 34.57122686524227], [-77.27297565134424, 34.57116713488355], [-77.27297927568482, 34.571160009057614], [-77.27300053761296, 34.57114625619701], [-77.27300773292089, 34.571044412364515], [-77.27314235857236, 34.57098680614509], [-77.27327266569974, 34.57097023539332], [-77.2732986506701, 34.570949443697906], [-77.27336317275955, 34.570854596149374], [-77.27338092680345, 34.57083807684147], [-77.27343951735284, 34.5707980593623], [-77.27352607265875, 34.57067088233638], [-77.2736541676027, 34.570632451078495], [-77.27366327635094, 34.57062460092408], [-77.27374020552432, 34.57053273120363], [-77.27379792349078, 34.570480050644335], [-77.27375475540876, 34.57039612403412], [-77.27407846554328, 34.57021002193597], [-77.27409600112996, 34.57019198136962], [-77.27410041200517, 34.57018762274426], [-77.27411085265175, 34.57017908035121], [-77.27427233805055, 34.569965467811826], [-77.27447897070802, 34.569875399171366], [-77.27450813645966, 34.56984650009676], [-77.27444189391343, 34.56974312650495], [-77.27466336273498, 34.56960461915965], [-77.27473464268112, 34.56944561163152], [-77.27488994281615, 34.56943854613277], [-77.27498290969648, 34.56933781901839], [-77.27501709065882, 34.56931699561406], [-77.27510792225759, 34.56928470441505], [-77.27517711529137, 34.56922839292517], [-77.27518816117741, 34.569212605539036], [-77.27519702192662, 34.56919965238535], [-77.27522569307058, 34.56919121760624], [-77.27533656047297, 34.56910643375261], [-77.27538665583, 34.5690397173432], [-77.27545526038243, 34.56899792815845], [-77.27550315566378, 34.56897903264267], [-77.27557324115357, 34.56892055029722], [-77.27559821823142, 34.56889928379468], [-77.27560619244532, 34.56889195518536], [-77.27562027945129, 34.568878613752496], [-77.27572114329827, 34.56878315480988], [-77.27576394690834, 34.5687180905998], [-77.27581817942018, 34.56867294672255], [-77.27586667169732, 34.56864515610195], [-77.2759415102087, 34.56857452367984], [-77.27595022716048, 34.568565489631126], [-77.27595383231973, 34.56855838047564], [-77.27597426427026, 34.56854411279712], [-77.27606896238458, 34.56845698636596], [-77.2761253820021, 34.56838236471557], [-77.27626296937228, 34.56827034628294], [-77.27627945214087, 34.56823785972707], [-77.27631521125073, 34.56822260540878], [-77.27636378272791, 34.568190421656], [-77.27643153164007, 34.56813197616053], [-77.27649066433645, 34.56805006175751], [-77.27651910850729, 34.56802102441501], [-77.2766242275888, 34.56795125313002], [-77.27664492187841, 34.56791307697256], [-77.27668442427581, 34.567893798745125], [-77.27673695072335, 34.56786906238959], [-77.27680862008734, 34.56780810592965], [-77.27685697256366, 34.567718672697396], [-77.2770068129094, 34.567624165817065], [-77.27700059734332, 34.567587523865015], [-77.27703776900593, 34.56755088198285], [-77.27712213862176, 34.567523921878475], [-77.27725659150862, 34.56737197122574], [-77.2774626254762, 34.56727156160577], [-77.27746665669305, 34.56726812392211], [-77.27744960677941, 34.567151470264704], [-77.2777136226329, 34.56699185519813], [-77.27778069684751, 34.56689727989489], [-77.27787250406757, 34.566873198924654], [-77.2780246660643, 34.56672531808593], [-77.27824373818946, 34.56665191932049], [-77.2783427092212, 34.56657238333487], [-77.27832614322185, 34.56651333682971], [-77.27855738235043, 34.566351984195414], [-77.27859585750544, 34.56630791920552], [-77.27860754161493, 34.566299777889355], [-77.27886688619078, 34.56622037330762], [-77.27910000102648, 34.56611214812476], [-77.27910943325335, 34.566107499534205], [-77.2791135187452, 34.56610385952114], [-77.27912009999481, 34.56609732624276], [-77.279225607199, 34.56599483193119], [-77.27927628400417, 34.56592731147339], [-77.279312860022, 34.565883853373045], [-77.27935808603081, 34.56582441675153], [-77.27938521862674, 34.56577170501007], [-77.2794274871301, 34.56573320901148], [-77.2795212346872, 34.56567141334884], [-77.27952404733455, 34.56566477772381], [-77.27953946651535, 34.565659599418595], [-77.27964071924725, 34.56559426727797], [-77.2798023362365, 34.565474203276274], [-77.27982342724027, 34.56545262894413], [-77.27984375620731, 34.56544625974548], [-77.27986599173624, 34.56543044962661], [-77.27998145378778, 34.56534720913211], [-77.28004664755045, 34.56529812293091], [-77.28009821783365, 34.565238548137565], [-77.28024175442621, 34.56514306413445], [-77.28025242889763, 34.56513282852406], [-77.28027452524803, 34.56511351585455], [-77.28037409403143, 34.56502455237355], [-77.28041804137871, 34.56497126978819], [-77.28057305944378, 34.56486528174233], [-77.28063109987288, 34.56483217529343], [-77.28065482974027, 34.56481093767109], [-77.28068423286757, 34.564776242593176], [-77.28075309751434, 34.56470082366988], [-77.2807752542432, 34.564631807659104], [-77.28080348589685, 34.56458694909882], [-77.28086784834278, 34.56452370481153], [-77.28088656086061, 34.564402230297276], [-77.2810249911148, 34.5643880390463], [-77.28104866679162, 34.564370541446245], [-77.28112400041552, 34.5642848181075], [-77.2813289520643, 34.564203504757415], [-77.28137093300023, 34.56417584779562], [-77.28139110144541, 34.56416177117369], [-77.28153307771733, 34.5640642961593], [-77.28170081167916, 34.56393999616883], [-77.28176362973517, 34.56390709892136], [-77.28181914745261, 34.563882692996394], [-77.28215290782668, 34.56372940214445], [-77.28217412728964, 34.56371910145038], [-77.28219211416345, 34.56371091283633], [-77.28226164253385, 34.56368538254396], [-77.28258409345155, 34.56355334817445], [-77.28265962143642, 34.563523095549996], [-77.28278903919252, 34.56347201334418], [-77.28286842900377, 34.563444058622146], [-77.28299387367882, 34.56339533590961], [-77.28319835905071, 34.563319694623445], [-77.28319914865833, 34.56331936378742], [-77.28340414554549, 34.56321659070155], [-77.283614671473, 34.56310013865082], [-77.28381534133464, 34.56299892718861], [-77.28398138903603, 34.562935231981385], [-77.2840709577558, 34.562895622274226], [-77.28422547232306, 34.562825942326825], [-77.28436367399485, 34.56275316706568], [-77.28449959028192, 34.56268317864085], [-77.28463658957816, 34.56261140373556], [-77.28474102946277, 34.56257653136867], [-77.28501291983525, 34.56247738317189], [-77.285046055903, 34.562466218606424], [-77.28506571406609, 34.56245793581887], [-77.28519170339376, 34.562404033565414], [-77.28545621102873, 34.56229198945749], [-77.2855057924837, 34.5622699798747], [-77.28566137859917, 34.562201059139554], [-77.28579848463029, 34.562128829467255], [-77.28586685681721, 34.56209703650554], [-77.28594259680924, 34.56205817349328], [-77.28607249653845, 34.561986194400646], [-77.2862191910254, 34.56190440916294], [-77.28627816911775, 34.56187394551145], [-77.2866606757912, 34.56165708633991], [-77.28668968412006, 34.561642225187995], [-77.28672326022355, 34.56162726114765], [-77.28710039516878, 34.56144425800286], [-77.28717030991896, 34.561416255354075], [-77.28730531485652, 34.56136359615769], [-77.2873700013657, 34.56135379380874], [-77.2874748397756, 34.561317109989545], [-77.28750971238978, 34.56130490775426], [-77.28753198752179, 34.56129488052314], [-77.28768963032111, 34.56122604859312], [-77.2877117841769, 34.561216338418745], [-77.28771905512626, 34.561213230035136], [-77.287920041459, 34.56112287205676], [-77.28805666057774, 34.56107547125659], [-77.28825723646997, 34.56100937341177], [-77.28832925026204, 34.560987957722965], [-77.28836404167082, 34.56097592509211], [-77.28857274187274, 34.56088798314018], [-77.28871332343347, 34.56083019872589], [-77.2887392844927, 34.56081819841394], [-77.28877176483053, 34.56080365849228], [-77.28914922119169, 34.560652475986494], [-77.28931357630461, 34.56060008277538], [-77.28935376695324, 34.56058740166096], [-77.28937843187572, 34.56057561049767], [-77.28955910357784, 34.560488970818945], [-77.28975238676048, 34.56038842220632], [-77.2899704714178, 34.56026275582704], [-77.29027394289227, 34.56006707875517], [-77.29038257413477, 34.560005449180665], [-77.29044352362067, 34.55997480005907], [-77.29056708099193, 34.559919538737596], [-77.29067201592258, 34.559837650716716], [-77.29077967025015, 34.559819210626095], [-77.29094590723834, 34.55974281457612], [-77.29094781104568, 34.55972354802826], [-77.29101994641711, 34.55970647280154], [-77.29117698773892, 34.559623553556996], [-77.29121640795638, 34.559605938015046], [-77.29130487249732, 34.55956893702198], [-77.29137603618383, 34.55950925005679], [-77.29142994576154, 34.55946150233898], [-77.29157610477051, 34.55935187155652], [-77.29183376476917, 34.559332743009094], [-77.29197073185686, 34.55926959659178], [-77.29201721987047, 34.55925068117766], [-77.29216605353942, 34.55920063478177], [-77.29216874315539, 34.55919899027782], [-77.29217011666772, 34.559199192818895], [-77.29230559704088, 34.55914270753193], [-77.29236729446578, 34.559105570674724], [-77.29250188829417, 34.55903007030603], [-77.29249213555515, 34.55898511738858], [-77.29275275544843, 34.558879526166216], [-77.29276551012971, 34.558871672857045], [-77.29277120686716, 34.55886904431743], [-77.2929681712317, 34.558720099095275], [-77.29305567947694, 34.5587058441914], [-77.29316368635898, 34.55863934350978], [-77.29325150572672, 34.55860966803279], [-77.29326845662992, 34.55861043785995], [-77.29336215480949, 34.55854931656904], [-77.29354507989633, 34.55852201631981], [-77.29355928081146, 34.55851597981206], [-77.29356452650109, 34.55851369974765], [-77.29357688814696, 34.55850869011687], [-77.29380365946581, 34.55838173338531], [-77.29395510225204, 34.55838297221137], [-77.29409322758039, 34.55834902325012], [-77.2941879627469, 34.55832049265056], [-77.29427408541073, 34.558286291710886], [-77.29432981167704, 34.558265365088864], [-77.294350838839, 34.55825349331952], [-77.29445115237704, 34.55820024602632], [-77.29460500846554, 34.55811642496243], [-77.29467189729527, 34.558059320810756], [-77.2947486902226, 34.55803457006291], [-77.29490448916894, 34.55795106735044], [-77.29490884369628, 34.557926288719436], [-77.29507830323732, 34.55784582972878], [-77.29514680657533, 34.55780435360176], [-77.29515782608483, 34.55779912030071], [-77.29518024596713, 34.55778911162726], [-77.29539429859395, 34.55766585714472], [-77.29554371999579, 34.557624907282936], [-77.2955748071536, 34.557610113829895], [-77.29568366308868, 34.55755836184639], [-77.29574284333421, 34.55750696468553], [-77.29587160736426, 34.55744513778318], [-77.29587585384607, 34.55740352543389], [-77.29594380467955, 34.5573112623467], [-77.2961169308441, 34.55727250535367], [-77.29627494864043, 34.55714247550997], [-77.29634301703487, 34.557034389531864], [-77.2964026738587, 34.556914778655525], [-77.29673743618207, 34.55696020301163], [-77.29682637091365, 34.557007235101345], [-77.29693362078739, 34.5569664677285], [-77.29698643407778, 34.556950703882094], [-77.29703236325572, 34.55694208753941], [-77.29712173490694, 34.556898600487564], [-77.2971253309004, 34.5568941371372], [-77.29713183992168, 34.55688663458536], [-77.29719071920874, 34.55680175941983], [-77.2972847249408, 34.55675281597012], [-77.29735684577543, 34.55663422552604], [-77.29741494083285, 34.55661173316248], [-77.29746024402385, 34.556528174601254], [-77.29747918788738, 34.55648011383419], [-77.29749546708672, 34.556453292047216], [-77.29753679084384, 34.5563666045249], [-77.2978027640623, 34.556106066943315], [-77.29816763405236, 34.55599354199556], [-77.2983318998062, 34.555952294815796], [-77.29841360356144, 34.55590671669182], [-77.29851313489465, 34.555842169417225], [-77.29913090665943, 34.55537252269208], [-77.29934926091173, 34.55558297690869], [-77.29951878679098, 34.555574920793916], [-77.2996137060494, 34.555624361907576], [-77.2997140127345, 34.55562166210214], [-77.29975164924598, 34.55564073043825], [-77.29983883059352, 34.5556071695905], [-77.29991102012887, 34.55559291879346], [-77.29995189323373, 34.55557454336147], [-77.29997265066118, 34.55554812872227], [-77.30009630047277, 34.55549262215433], [-77.30009471013034, 34.55548335871481], [-77.30024497115771, 34.555348887459125], [-77.3002253133757, 34.55529852020681], [-77.30029190696946, 34.55509734645774], [-77.30004631104168, 34.55471439783618], [-77.30006905971217, 34.55463970991146], [-77.30018521543981, 34.554468631688906], [-77.30004082076944, 34.55371787883205], [-77.3000865276481, 34.55365797971669], [-77.30001851844926, 34.553629600853576], [-77.30046586470053, 34.55262432479859], [-77.30113141147245, 34.5522614780898], [-77.30156256586312, 34.55216129767188], [-77.30300186107395, 34.551281184364534], [-77.30310539330864, 34.55123543146225], [-77.30315554584912, 34.5512099273548], [-77.3033810075423, 34.55108798620194], [-77.3035078089213, 34.55120857041799], [-77.30511267318542, 34.55170910597583], [-77.30506375432705, 34.551964488561154], [-77.30557841596541, 34.5523221107246], [-77.30557178181178, 34.55238118776597], [-77.3057992205521, 34.552547645080566], [-77.30586163764255, 34.55259055132488], [-77.30587423543919, 34.55258418490237], [-77.30589805273941, 34.55257916479148], [-77.30626733105736, 34.55245571923745], [-77.30632765003948, 34.55247954419265], [-77.30652505473438, 34.55240429251495], [-77.30666350092639, 34.55230569588352], [-77.30688725151137, 34.55219236816237], [-77.3068776337965, 34.55207912868765], [-77.3070668929013, 34.55184845965632], [-77.30759882458717, 34.55175986465866], [-77.30785802615574, 34.551599299607325], [-77.30790044627922, 34.551583527434026], [-77.3082348121966, 34.55150931012937], [-77.30825299925051, 34.551499895701866], [-77.30825891571185, 34.55150212832794], [-77.30851007044703, 34.551383565772035], [-77.30865048701405, 34.55129341619836], [-77.30890811136614, 34.551167843504764], [-77.30892523968859, 34.551088888693], [-77.30904805483918, 34.55108344145398], [-77.30923120154806, 34.5510083667133], [-77.30925009338526, 34.550998669030335], [-77.30944530376105, 34.5508869572679], [-77.30948778882119, 34.55086599647753], [-77.30953571211326, 34.550832933384164], [-77.30984632129532, 34.55054373361638], [-77.31024497299603, 34.550273455660516], [-77.31028016308807, 34.550258151519515], [-77.31035653730068, 34.55022546848889], [-77.31073970333748, 34.54998508616006], [-77.31103877271019, 34.5499095684684], [-77.31108258747143, 34.549876414367915], [-77.31128052792602, 34.5497516110984], [-77.31143569932922, 34.54972636844428], [-77.31147099746985, 34.54969824044796], [-77.31151088894649, 34.5496153660043], [-77.31155940793921, 34.549563141151104], [-77.31166149322414, 34.549440274812596], [-77.31183621136006, 34.5493902421774], [-77.31192416966127, 34.549319769320604], [-77.3120154333855, 34.549252851851946], [-77.31203627635298, 34.54923027124404], [-77.31208937114575, 34.54915178816501], [-77.31223789785359, 34.54900389917323], [-77.31225593561642, 34.54898447098853], [-77.31227135683234, 34.54897129373953], [-77.31242118032485, 34.54883792621299], [-77.31242859690572, 34.54882012336789], [-77.31257251951271, 34.5486832387358], [-77.31257373237446, 34.54864236934843], [-77.31258888070599, 34.548558484535334], [-77.31258996796927, 34.548469029820325], [-77.31256331775789, 34.548439750342936], [-77.31258430551249, 34.54839907675926], [-77.31264683213391, 34.548308297318066], [-77.3126866391699, 34.548200476540565], [-77.31270374733646, 34.54817477538381], [-77.31278630296114, 34.54800057581529], [-77.31287091900603, 34.547905959903716], [-77.31305455938268, 34.54766390169007], [-77.31308906631709, 34.54765115394636], [-77.31310173769279, 34.547628004457344], [-77.31322386298942, 34.547507190796864], [-77.31339286676196, 34.5473413873585], [-77.31334597187362, 34.547279396982944], [-77.31345589270072, 34.54729203833485], [-77.31348504192403, 34.547309716663385], [-77.31384895734377, 34.547272870258794], [-77.31385707410803, 34.54726970941442], [-77.31407084308115, 34.54713556275776], [-77.31421209324691, 34.54710133488864], [-77.31424591062768, 34.547087717188205], [-77.31433524565999, 34.54701589826766], [-77.31434364494353, 34.54696003729212], [-77.31444774767262, 34.54685167005175], [-77.31445620055192, 34.546826368786], [-77.31452109188686, 34.546767642538796], [-77.31455902819818, 34.54668429483618], [-77.31454093172735, 34.54651135531442], [-77.3144626467228, 34.54633262918195], [-77.31462081426815, 34.54618580013311], [-77.31476438965163, 34.54598271278731], [-77.31483734109996, 34.54590989320634], [-77.3150629357297, 34.54573005135208], [-77.31523707089048, 34.545716050810896], [-77.31545714605, 34.54566160841256], [-77.31558909411976, 34.54563906173283], [-77.31554115896026, 34.54556399920173], [-77.31546445109801, 34.54534963333886], [-77.31544289613821, 34.54534678381347], [-77.31545699189144, 34.54532628500119], [-77.31526309727495, 34.545114313934576], [-77.31522513703686, 34.54502886385258], [-77.31479000736655, 34.544692636936325], [-77.31464868903396, 34.5444995894025], [-77.31454637754995, 34.543889014210045], [-77.31466584181297, 34.54373122834461], [-77.3151200334147, 34.54317465793589], [-77.31591777635188, 34.54275600317369], [-77.31604234978042, 34.54263012751345], [-77.31616586942957, 34.54253654277192], [-77.31671371196325, 34.54229669160259], [-77.31696033591336, 34.54208348407474], [-77.31748758475767, 34.54187034151098], [-77.31750883275461, 34.541871826936536], [-77.31756214711281, 34.54184635929919], [-77.31778864567849, 34.54149316321669], [-77.31830505082809, 34.541399677898006], [-77.31839876321973, 34.54129344488389], [-77.31857108712421, 34.54121180045426], [-77.31891812549006, 34.54104952377988], [-77.31909954558235, 34.54100086105801], [-77.31938702094583, 34.54091654602887], [-77.31958523981582, 34.540877561153145], [-77.31989157026435, 34.54070742571601], [-77.3201089525162, 34.540635756436956], [-77.3202497839335, 34.54048100926305], [-77.32068889916354, 34.54018662491819], [-77.32096536005386, 34.54005911829624], [-77.32147870877542, 34.5399874722205], [-77.32168176423986, 34.53991115624933], [-77.32204135838191, 34.53987437553881], [-77.32226515759419, 34.53993215694862], [-77.32289186938233, 34.54000362091536], [-77.3232852396074, 34.53989884641057], [-77.32383574735869, 34.539920315591736], [-77.32436486638511, 34.539727242641916], [-77.32530343607924, 34.53926520850885], [-77.32542292370093, 34.53919647478036], [-77.32555005687904, 34.5391511418413], [-77.32621813256567, 34.5387645016359], [-77.32645750810988, 34.53875891403808], [-77.3270021566399, 34.53881260708029], [-77.32756696369842, 34.538450254575324], [-77.32751228245607, 34.53827886099176], [-77.32800652656267, 34.53789744204662], [-77.32821118522564, 34.53762551256811], [-77.32860449982492, 34.537434546388894], [-77.32930054858767, 34.5367321726679], [-77.32992086099998, 34.536470689642925], [-77.33019302005806, 34.536114246778496], [-77.33020204771232, 34.53611077864207], [-77.33020560340888, 34.536107527565335], [-77.33082634238457, 34.53591793766226], [-77.331001330028, 34.53565087187711], [-77.33151645162003, 34.53560341518195], [-77.33177929975034, 34.53595841857272], [-77.33200299142823, 34.53549722293274], [-77.3327951527737, 34.53525049952942], [-77.33316287497884, 34.53506834016528], [-77.33337213556828, 34.5349842079854], [-77.33371794296869, 34.5349033214264], [-77.3345579546545, 34.5347539696707], [-77.33494582534206, 34.534834086264645], [-77.33522862621162, 34.53472577858935], [-77.33545764491944, 34.53469520675138], [-77.33573260059212, 34.53476191166004], [-77.33578907017782, 34.5347844440748], [-77.33612738643718, 34.534665456247474], [-77.33622818100622, 34.53457355459023], [-77.33629587085481, 34.53450228664157], [-77.33641102845394, 34.534414172988235], [-77.33645472016276, 34.534357033351945], [-77.33652907895619, 34.534270843222274], [-77.33655669926782, 34.53423669084504], [-77.3366102491069, 34.53421225719489], [-77.33672822877978, 34.53414670621805], [-77.33686594209924, 34.53413884841202], [-77.33692507513273, 34.534121988082816], [-77.33721946416367, 34.534062563899916], [-77.33732246860025, 34.53391273233919], [-77.33768750563844, 34.533830845927646], [-77.33777090850054, 34.53383423670955], [-77.33810881182653, 34.53385870496596], [-77.33839031230544, 34.53395623969649], [-77.33836803851013, 34.5342813064653], [-77.33870355951846, 34.534400819966216], [-77.33883701682453, 34.534409158691254], [-77.33887951813654, 34.53448037587177], [-77.33897636070834, 34.53442112377048], [-77.33914340300473, 34.53433755438665], [-77.3394872315189, 34.534173036415964], [-77.33967209482248, 34.53415700593533], [-77.33995006688058, 34.53390156388514], [-77.33975818170616, 34.533759488338774], [-77.33972968074593, 34.53373377873426], [-77.3397258556485, 34.53351932017134], [-77.33968809759051, 34.53346515534912], [-77.33947085396497, 34.53344693338403], [-77.33937318534134, 34.53332523112618], [-77.33930107101298, 34.53322668203693], [-77.3392411797483, 34.53313803261595], [-77.33912038306207, 34.53311677627423], [-77.33891356374357, 34.53300907475007], [-77.3387164625634, 34.533052359230865], [-77.3387486379846, 34.53292542919406], [-77.33822412996955, 34.53256447162395], [-77.33819310025311, 34.53251569946933], [-77.33816749616953, 34.53250236456012], [-77.33814887443097, 34.532128087272895], [-77.33814345418615, 34.532037887775324], [-77.33814660795419, 34.53203275140301], [-77.33775942245535, 34.531994812975775], [-77.33745952010217, 34.53207267563315], [-77.33736499449472, 34.53207645160078], [-77.3369777545687, 34.53195450500747], [-77.33696815059389, 34.53195295904351], [-77.33658276783434, 34.53195348048523], [-77.33639052382844, 34.53191612391346], [-77.33623833528927, 34.53181757335381], [-77.33619356700692, 34.53180949384651], [-77.33597042033455, 34.53185610361534], [-77.33583342455287, 34.53189727822902], [-77.33579768013803, 34.531954030376], [-77.3357613200842, 34.53190949581586], [-77.33570626940771, 34.53189409192678], [-77.33520953126474, 34.531844295923094], [-77.33501410503982, 34.531889327443515], [-77.33479235411373, 34.53188718861069], [-77.33422780551584, 34.532106703908354], [-77.33422536414065, 34.532107931322564], [-77.33422393923647, 34.53210878430233], [-77.33422041023377, 34.532109951408366], [-77.33382590037863, 34.53234584530779], [-77.33374703728097, 34.53237184477974], [-77.33342775852013, 34.53258724482025], [-77.33303037076803, 34.532768519741246], [-77.33282235175935, 34.532915236908366], [-77.33263409306561, 34.532956955385046], [-77.33223921951591, 34.53312609431417], [-77.33184147806125, 34.533281119542934], [-77.33168589928816, 34.53335551178269], [-77.33144682879924, 34.53348583398497], [-77.33090655044052, 34.533969672932066], [-77.33025469787447, 34.53399530276954], [-77.3298896466629, 34.53419933783378], [-77.3297438983154, 34.5343971846234], [-77.32945713577064, 34.53453135782536], [-77.32919786013863, 34.53462812343689], [-77.32903401175052, 34.534811970677495], [-77.32877512306865, 34.53491910369296], [-77.32866122649267, 34.53499591030153], [-77.3283127901214, 34.53519080233612], [-77.3281851414803, 34.53522754232584], [-77.32786971781115, 34.53527097020121], [-77.327617072799, 34.53534884881442], [-77.32721161946492, 34.535563558212985], [-77.32707586001436, 34.53564669513189], [-77.32681824467126, 34.535778839882475], [-77.32665791917798, 34.535875449694174], [-77.32655176908968, 34.53598039796266], [-77.32639598077819, 34.53617042005818], [-77.32627575387721, 34.53629038580962], [-77.32603012597457, 34.536563414697326], [-77.32547501513032, 34.536960693860856], [-77.3249743400171, 34.53735399379347], [-77.32436231721145, 34.53773860496254], [-77.32391296060689, 34.53799615360465], [-77.32387987779845, 34.53802773892542], [-77.32356911603885, 34.53834602320149], [-77.32243818989309, 34.53860905089224], [-77.32229664855113, 34.53858272341938], [-77.32216504898598, 34.53865594776063], [-77.32205647237342, 34.53875254957312], [-77.32125601375486, 34.53920695157227], [-77.32113787315188, 34.53937416353943], [-77.32069939105259, 34.53973739218703], [-77.32035646874904, 34.539762578043245], [-77.32028083999316, 34.53975800789676], [-77.31991170414062, 34.539845695971344], [-77.31946913733654, 34.54010353909047], [-77.31925884655814, 34.5402217337452], [-77.31911597785003, 34.54029784140039], [-77.31885937221963, 34.54043595153733], [-77.31879432323015, 34.54049236162643], [-77.31841935903641, 34.5407439741301], [-77.31841452285926, 34.54080425250122], [-77.31831509670471, 34.54097005796768], [-77.31801014045699, 34.5409925971188], [-77.3175253353085, 34.54116636475703], [-77.31623988169123, 34.54136609625696], [-77.3159481746003, 34.541457557541385], [-77.31582295980151, 34.541529520824895], [-77.31550675657489, 34.54165196756398], [-77.31467133793183, 34.541962360586226], [-77.31436336006152, 34.542074878424465], [-77.31370690035902, 34.54240008802896], [-77.31365469298507, 34.542460940886514], [-77.31356902766152, 34.542465273953646], [-77.31336354330784, 34.54257591428305], [-77.31277405664147, 34.54288257463404], [-77.31245607652626, 34.54306933443936], [-77.31170314101534, 34.54349790792337], [-77.3111818405788, 34.543813023470435], [-77.31025415621517, 34.54436474894139], [-77.30995382315683, 34.544633379718185], [-77.30959016580469, 34.54471886828323], [-77.30886844075019, 34.54505332374009], [-77.30881825219008, 34.54507402300852], [-77.30879631482993, 34.54508667776726], [-77.30863385752433, 34.54518683383262]], [[-77.36921059094757, 34.517695590029625], [-77.36948822587271, 34.517676748682966], [-77.36954951813819, 34.517509679758945], [-77.36988958144337, 34.51728624970072], [-77.37007612604404, 34.51726922638548], [-77.37097613719713, 34.51702338113805], [-77.37075564067527, 34.516606470657756], [-77.3714708980477, 34.516781854672786], [-77.3720379080137, 34.51623702167059], [-77.37233215329893, 34.51584861962632], [-77.37256200519681, 34.515498640276206], [-77.37307457096506, 34.515293369527924], [-77.37372627953323, 34.51507177199097], [-77.37386507051352, 34.51504695853335], [-77.37409617423957, 34.51496171612481], [-77.3746531394923, 34.51490730646736], [-77.3752927639255, 34.51542183537563], [-77.37568946551285, 34.5156864096814], [-77.37573665748343, 34.515847500117296], [-77.37619480960134, 34.51614592825946], [-77.37650213029687, 34.515925742309626], [-77.37692988247242, 34.51567546702279], [-77.37697391477856, 34.515658601589934], [-77.376990824463, 34.51565633319764], [-77.37700772187159, 34.51565373948582], [-77.37774681865085, 34.51553797018747], [-77.37777947217305, 34.51549111242027], [-77.37823612636345, 34.51527935271821], [-77.37857451244008, 34.51504379093559], [-77.37911206172751, 34.515025719928616], [-77.37936133839943, 34.514958525086506], [-77.37945187637594, 34.51487749366269], [-77.37964002280492, 34.51479502403974], [-77.38040273204267, 34.514346750181346], [-77.38076318850774, 34.51414339276124], [-77.3809351260363, 34.51364499468348], [-77.3808213915485, 34.51364533712286], [-77.37960294408421, 34.513688280091515], [-77.37938955889167, 34.51371334481979], [-77.37914400375762, 34.513734334085925], [-77.37850089149228, 34.513979964912885], [-77.37797480559134, 34.51415883325724], [-77.37780402836017, 34.51440850544858], [-77.37761947353154, 34.51422479576429], [-77.37738258222959, 34.51414121552251], [-77.37761799032737, 34.51398522107457], [-77.37781748352704, 34.51381531271957], [-77.37821436339479, 34.51328201636446], [-77.37888738979736, 34.512944912396904], [-77.37922175217021, 34.512778794227216], [-77.37941295828168, 34.51268089684434], [-77.38011156745996, 34.51233738541914], [-77.38099960615962, 34.51193432135457], [-77.38131335870528, 34.5118097219396], [-77.38160107717746, 34.511574241834516], [-77.38122142010047, 34.51149679162549], [-77.38100939310765, 34.511502139653714], [-77.38074676647408, 34.511534054052994], [-77.37943981274917, 34.51149601104776], [-77.37888858302803, 34.51162331921452], [-77.37865098572027, 34.51167096335804], [-77.37826306224208, 34.51180606589895], [-77.37785940802694, 34.51196701906306], [-77.37772461311155, 34.51205034484156], [-77.37737924282827, 34.51218305907588], [-77.37660852357908, 34.51250066426622], [-77.37627480283136, 34.51262220517821], [-77.37556484154544, 34.512934321135376], [-77.37550824438512, 34.5129586738713], [-77.37548188699577, 34.512976367220794], [-77.375417857442, 34.51299519102529], [-77.3746898844619, 34.51329002226695], [-77.37383579843495, 34.51367324325739], [-77.37341431167155, 34.51392656487175], [-77.3731035562572, 34.51401866574459], [-77.37231198728186, 34.514381578074705], [-77.37230980714418, 34.514382509259434], [-77.37151787606093, 34.51471756356263], [-77.37120869186582, 34.514840095781274], [-77.37060705136848, 34.51511795480164], [-77.37019565500562, 34.515340545234004], [-77.36992666591968, 34.515658032591446], [-77.36939236068872, 34.51562678518155], [-77.36904589040958, 34.515774454167286], [-77.36834596249588, 34.51613596081493], [-77.36804502531075, 34.51628081985531], [-77.36755347392356, 34.5164683064993], [-77.36713987049129, 34.516596928238144], [-77.36683797287486, 34.51668684224122], [-77.36676240515347, 34.51673812686129], [-77.36662047805613, 34.51675999630677], [-77.36569844811906, 34.517125721260484], [-77.36517914665464, 34.51732614340289], [-77.36503036480818, 34.51739053385913], [-77.36467975935935, 34.51762340532447], [-77.36438655195786, 34.51766202957243], [-77.36386619368724, 34.51787976377616], [-77.3635939860427, 34.51799636256173], [-77.36323781619697, 34.51813843586333], [-77.36243552651793, 34.51851809187207], [-77.36201016715555, 34.51860674219638], [-77.36157324680443, 34.518867875706555], [-77.36142038746314, 34.5190174962825], [-77.36121412688796, 34.51909208054333], [-77.36074291094793, 34.51927876033248], [-77.36042219717132, 34.519397412579664], [-77.36028963330773, 34.51946062726148], [-77.35963176937119, 34.51963688345159], [-77.35963115307855, 34.519637261092306], [-77.35920946115891, 34.51992837307683], [-77.35889492559599, 34.520232945145814], [-77.35886533581495, 34.520257625413265], [-77.35883195946704, 34.52028571388789], [-77.35818781191801, 34.52042460175822], [-77.35804208635385, 34.5205003849902], [-77.35777891218453, 34.52055702503345], [-77.35725155223768, 34.52074369497447], [-77.35698785211463, 34.52083403660344], [-77.35646139762231, 34.52097024023493], [-77.35575349853227, 34.521124703718634], [-77.35567244016252, 34.521144406260824], [-77.35562378995941, 34.52116358964114], [-77.35553841616093, 34.52120595533326], [-77.35511366976841, 34.52141204176942], [-77.354875829013, 34.52165185121913], [-77.3547516430061, 34.521732579380355], [-77.35408386336252, 34.52195656213207], [-77.35360256276671, 34.5221667664992], [-77.35329016215108, 34.52233655474546], [-77.3530022684638, 34.52224169728017], [-77.35250659983379, 34.522275049880236], [-77.35210054761964, 34.52242914691501], [-77.35171559426972, 34.52253731930883], [-77.35107765366783, 34.522732950069134], [-77.35092502917699, 34.52278020679236], [-77.35082870845423, 34.522803564414914], [-77.35063246811592, 34.52289155939981], [-77.35024690107934, 34.52301711247263], [-77.35013305004424, 34.5230843319531], [-77.34970459079831, 34.52324988576312], [-77.34934005693049, 34.523432240642364], [-77.34899157599847, 34.52361739531345], [-77.3487335222362, 34.52377071132078], [-77.34854381950484, 34.52392073035949], [-77.34788656983324, 34.524266080420524], [-77.34783438580489, 34.524326552747056], [-77.34774928044327, 34.52433508441949], [-77.34766993725565, 34.52434658369684], [-77.34696075342536, 34.52448822623458], [-77.34660377177202, 34.52472102143055], [-77.34631143284703, 34.52498241098175], [-77.34624604311485, 34.52504365146376], [-77.34616063366656, 34.5251440207861], [-77.3459295733866, 34.52518095438401], [-77.34576645397799, 34.525216729844345], [-77.34560945099325, 34.52523052081813], [-77.34549632272169, 34.52550882043726], [-77.34546057848779, 34.525594494627], [-77.34536146564075, 34.52575800423419], [-77.3451945630018, 34.52573717719176], [-77.34501650773583, 34.52565839624662], [-77.34464652051142, 34.52566921140709], [-77.34457909149737, 34.52564368250857], [-77.344450755174, 34.52565999332459], [-77.3443826888843, 34.52565017279628], [-77.3442839432089, 34.525702978576035], [-77.34430512398599, 34.52576076178549], [-77.34437815828284, 34.52584649324885], [-77.34445459147861, 34.52581445144173], [-77.3445740898739, 34.52586043540715], [-77.34473661044598, 34.52594349295258], [-77.34488859668107, 34.52596871550421], [-77.34512699504421, 34.52613213703202], [-77.345155031384, 34.5262497871084], [-77.34507257046855, 34.52645950846099], [-77.34470192400462, 34.526592670501756], [-77.34455680596736, 34.52660946206397], [-77.34432977447103, 34.526391595532054], [-77.34422317701146, 34.52626219182982], [-77.3440944707385, 34.52608696600313], [-77.34378204009523, 34.52616523864631], [-77.34365398859265, 34.52626566870352], [-77.3435831853751, 34.52627788076232], [-77.34346184234583, 34.52637173924276], [-77.34341851749761, 34.526399424887025], [-77.34338358281585, 34.52642288803031], [-77.34336373770984, 34.52644705980261], [-77.34336172622983, 34.52649597402669], [-77.3433502331298, 34.52651020769938], [-77.34337189695347, 34.5266251239867], [-77.34336952522472, 34.526629841545045], [-77.34337385422774, 34.52663227125545], [-77.34337861245977, 34.52663815553759], [-77.34349377174327, 34.52678287181643], [-77.34363293200536, 34.52683676061901], [-77.34367789047019, 34.52688489069219], [-77.34376379365689, 34.526955657971605], [-77.3440149420151, 34.52702661381436], [-77.34407417430563, 34.52706770532883], [-77.34410293086646, 34.52722942271325], [-77.34408586012458, 34.52726122907782], [-77.3440547573681, 34.527454365053764], [-77.34374468818804, 34.52778329419336], [-77.34372981623858, 34.527792961370295], [-77.34373057465082, 34.52780198897996], [-77.34363792075771, 34.52788051309754], [-77.34374281204902, 34.527864567551795], [-77.34380098405457, 34.52803667745286], [-77.34384098662501, 34.528209540919065], [-77.34385526878407, 34.52827368583593], [-77.34383272334158, 34.52833985205082], [-77.34372936870588, 34.52844692734451], [-77.34354726739001, 34.52843179952556], [-77.34359475994012, 34.52831116930729], [-77.3435407665046, 34.528197715889306], [-77.34354266603779, 34.52819393725695], [-77.34353514374752, 34.528194978489985], [-77.34334413506211, 34.52813138975568], [-77.34326202386673, 34.52823663435024], [-77.34323486221797, 34.52829718463024], [-77.34314436167413, 34.52828359233649], [-77.34311689130004, 34.52827477667004], [-77.34307220839028, 34.52826394498178], [-77.34304685502252, 34.528256615858254], [-77.3429980260325, 34.528244049743535], [-77.34294919675256, 34.5282362072203], [-77.34292494046869, 34.52823901735812], [-77.34287979174572, 34.528248517974916], [-77.34285062176095, 34.528255494203215], [-77.34281242786037, 34.52826381899989], [-77.34278213105831, 34.52826307118586], [-77.34275202669414, 34.528275648151904], [-77.34274619449664, 34.52828024866705], [-77.34275191852146, 34.528280331765636], [-77.34279500920381, 34.52827699952947], [-77.34284923426848, 34.52829574037909], [-77.34284969133911, 34.528295781252496], [-77.34284988454839, 34.52829581154513], [-77.34284982638869, 34.528295940856616], [-77.34292016790596, 34.528302964414976], [-77.34294757583521, 34.528306396135584], [-77.3429880769544, 34.52831191391257], [-77.34301628029604, 34.52831496720698], [-77.34304544564549, 34.528317647769924], [-77.34306951610257, 34.52831062521823], [-77.34308598042827, 34.528323168273154], [-77.34314314862146, 34.52833612526495], [-77.34317473140928, 34.52835168100142], [-77.343217655664, 34.528365427715904], [-77.3432404414506, 34.528372367244216], [-77.34328871188549, 34.52838610419646], [-77.34329431848018, 34.52838822971804], [-77.3433380635831, 34.52839435024287], [-77.34337738793673, 34.52840365014382], [-77.34342256889227, 34.5284054867941], [-77.34353053741708, 34.52844281953541], [-77.3435319842123, 34.52844336433065], [-77.34370951099585, 34.52853947788764], [-77.34370291825309, 34.52855536269806], [-77.34372646611409, 34.52857266663636], [-77.34393738712735, 34.52861928376686], [-77.34395272168207, 34.52874930284365], [-77.34400431735338, 34.52880998275947], [-77.34408270887047, 34.52895834468296], [-77.34409589994685, 34.52897352108285], [-77.34410507278204, 34.528975086059695], [-77.34410917366671, 34.528997806724874], [-77.34431135094616, 34.5291873397729], [-77.34437192163239, 34.52925585145003], [-77.34441553758354, 34.52936876995098], [-77.34442846402943, 34.52941530824447], [-77.3444724672249, 34.52942111412673], [-77.34449040487357, 34.529487097971014], [-77.34462050534128, 34.52955043870842], [-77.34463137767933, 34.52963093057283], [-77.34456286845618, 34.52968888849511], [-77.34465441354396, 34.5297661270076], [-77.34481811977406, 34.52984887981205], [-77.34465828189992, 34.52998373192368], [-77.34465578330783, 34.53000643709201], [-77.34466039345403, 34.530116394940215], [-77.34465914357631, 34.530124567691345], [-77.34466202184423, 34.53017736555094], [-77.34465511196045, 34.530187955084], [-77.34467010746445, 34.530204810632895], [-77.34471543262512, 34.53020264692429], [-77.34478186981403, 34.53022132545467], [-77.3448657632844, 34.53023115135686], [-77.3450075375273, 34.530222956616626], [-77.34523306386741, 34.53027881176678], [-77.3452556167538, 34.53034706526738], [-77.34529406910231, 34.530270033405394], [-77.34549140030447, 34.530140911302745], [-77.34555416370489, 34.529987786261536], [-77.34556655251752, 34.52979994106191], [-77.34556862037257, 34.52949606610819], [-77.34555321663692, 34.529177432190224], [-77.34580324225254, 34.52865543731594], [-77.34572312649043, 34.528494551588416], [-77.3457524403724, 34.528280846423684], [-77.3460938726918, 34.52803958366513], [-77.34660440569395, 34.528049159868466], [-77.34767544525708, 34.52754006882357], [-77.34821388842118, 34.52749196941426], [-77.34831673438063, 34.527142018104186], [-77.34841980346151, 34.527095431307465], [-77.34841288363805, 34.52688335932564], [-77.34847665274074, 34.5268374345177], [-77.34882858582107, 34.52679764776461], [-77.34897243493256, 34.52673981169271], [-77.34926487282016, 34.526698422513405], [-77.34970715400375, 34.526452251510705], [-77.3498905630907, 34.526321057212414], [-77.35005966646702, 34.52627358762213], [-77.35038706730991, 34.52615191737247], [-77.35085200435891, 34.52595516054637], [-77.35104230613756, 34.525888160293796], [-77.35141711735736, 34.52571646629946], [-77.35209566744194, 34.525407369963126], [-77.3524364909387, 34.52532570618703], [-77.35312531227767, 34.52504492300909], [-77.354013107719, 34.52503787353163], [-77.35469838381563, 34.524687205638045], [-77.35480880855323, 34.52457168740997], [-77.3549686106791, 34.524225876128625], [-77.35498286317123, 34.524121698456554], [-77.35508188986364, 34.52388035956457], [-77.35530869435348, 34.52387507324293], [-77.35560919404003, 34.52390092531922], [-77.35604293344718, 34.52380204872937], [-77.35712982722252, 34.52388364861809], [-77.35717975192001, 34.52387559967715], [-77.35783076988335, 34.52332408717278], [-77.35786580895513, 34.52324836531859], [-77.35797985195074, 34.523216132488216], [-77.35836532172195, 34.523009611001285], [-77.35877358940007, 34.522833871440696], [-77.3591801210308, 34.522894561585446], [-77.35956299838634, 34.522640317691305], [-77.35958115973695, 34.52258235275129], [-77.35956505626731, 34.522550442916994], [-77.35936761622597, 34.5222508967051], [-77.35933936416346, 34.52212752833103], [-77.35945150389118, 34.52203315742817], [-77.3595788823787, 34.52194661068435], [-77.35978929217391, 34.52170081814859], [-77.36022243427792, 34.521510693010505], [-77.36031909433319, 34.52146193269759], [-77.36037568535181, 34.52142954552618], [-77.36059764333865, 34.521319762198985], [-77.36135412426938, 34.520972199170416], [-77.36196071272374, 34.520769204526985], [-77.36244882301092, 34.52051150352378], [-77.36317332232301, 34.52010632987042], [-77.36335703507521, 34.519960046396186], [-77.3635521183341, 34.51982857972806], [-77.36403937688249, 34.519298663464376], [-77.36411169600467, 34.51899184385943], [-77.36422423596622, 34.51889190064325], [-77.36436012788431, 34.5188188711021], [-77.36497435892174, 34.51876023515849], [-77.36514706662967, 34.51873117727985], [-77.36537303481823, 34.51867002671025], [-77.36627019266078, 34.51839741704925], [-77.36673024786737, 34.518147698140055], [-77.36675179087467, 34.51813506716666], [-77.36678542728302, 34.518116961162754], [-77.36711747480265, 34.51781630535827], [-77.36794770024451, 34.51768622664511], [-77.36830831705994, 34.51778745198399], [-77.36901210176806, 34.51774487186567], [-77.36909429461826, 34.517741244881535]], [[-77.41071190565191, 34.49855784598712], [-77.41090785469247, 34.498393450595266], [-77.41112997078187, 34.49821227751589], [-77.4117111241379, 34.49805302627678], [-77.4132941185322, 34.49756751176228], [-77.41389707887251, 34.49734855624665], [-77.41400306098662, 34.497318047552454], [-77.4140643792359, 34.49728028424192], [-77.41460078434764, 34.49701449245081], [-77.41567127373823, 34.496763761461416], [-77.4152171358373, 34.49612580114199], [-77.41637389181655, 34.49587443238772], [-77.41744604877499, 34.49602121673478], [-77.41767579448717, 34.495515178330535], [-77.41856897649456, 34.495378842272444], [-77.4189438856855, 34.4954232111123], [-77.41953244881792, 34.494658935299434], [-77.4200424332014, 34.49451453344089], [-77.42056340818334, 34.49431171391201], [-77.42095687449978, 34.49416315369524], [-77.42118971989413, 34.49378449246449], [-77.42124493125607, 34.49370903404889], [-77.42135674018742, 34.49367671553411], [-77.42168668584554, 34.493329638182665], [-77.42152578660793, 34.493009808476245], [-77.42141002029344, 34.49275197637102], [-77.42084767759867, 34.49253137637644], [-77.42053164307151, 34.49276803682142], [-77.41952942239672, 34.49263496425938], [-77.41888407433814, 34.4928747737256], [-77.41855863148147, 34.492997060508316], [-77.41830010844853, 34.493064438381225], [-77.41732618096714, 34.493318515994346], [-77.41699016811856, 34.49342277379569], [-77.41693453111289, 34.493450633219894], [-77.41634959506983, 34.49370548268382], [-77.4158593588897, 34.4939890111914], [-77.41578822254885, 34.494026702845794], [-77.41572880974826, 34.494064512906476], [-77.41551729696236, 34.49426278358683], [-77.41548436829922, 34.49472755763995], [-77.41598422393506, 34.49531040665332], [-77.41597713280385, 34.495428313025975], [-77.41506759502862, 34.496022019893154], [-77.41502106528769, 34.49603045994537], [-77.41367335465442, 34.49584732154725], [-77.41349895264317, 34.49597708413679], [-77.41304335149331, 34.496257156595576], [-77.41251118084094, 34.49652309311194], [-77.41235441023456, 34.49659406665789], [-77.41223267161303, 34.497051349921676], [-77.41115411152691, 34.497129313721274], [-77.4096400752408, 34.497733349651426], [-77.40960299372904, 34.49775889185863], [-77.40957070645867, 34.49775627121452], [-77.40953855071604, 34.497767921604726], [-77.40844969668473, 34.498191210084755], [-77.4079865620115, 34.49841521711671], [-77.40786533215665, 34.498479427029594], [-77.40746784538362, 34.49870690443866], [-77.40670302448126, 34.499137007618124], [-77.406572580894, 34.4992647079753], [-77.40639718112922, 34.499307304567225], [-77.40593768053377, 34.49953116923825], [-77.40547670894391, 34.499724946850215], [-77.40480625882797, 34.500266744624724], [-77.40446368311765, 34.500439815853014], [-77.4037182838297, 34.500856163417566], [-77.40321802469313, 34.50110441834221], [-77.40226251948343, 34.50135049308784], [-77.40163834586092, 34.50155873981443], [-77.40138291406977, 34.50170676803502], [-77.40006411482496, 34.501769260390624], [-77.39973631438804, 34.501899125089416], [-77.3992723614331, 34.50208111879038], [-77.39889467519895, 34.50222337013993], [-77.39862010097136, 34.50234944795599], [-77.3984729362058, 34.50273457312363], [-77.39818728271553, 34.502506929615336], [-77.39748991943978, 34.50279297227601], [-77.39689785785941, 34.50298133688763], [-77.396829380086, 34.50301121611453], [-77.39689367361737, 34.50316764067181], [-77.39704523329269, 34.50337228930123], [-77.3973025571411, 34.50343257516125], [-77.39845457376896, 34.50355284585841], [-77.3992424576507, 34.50363902230218], [-77.40002354686662, 34.50357856960099], [-77.40140195957441, 34.50382003109423], [-77.39999707350438, 34.504759281852074], [-77.39966512792516, 34.50484423274821], [-77.3996281181995, 34.50505550856282], [-77.39928393086505, 34.50553925932841], [-77.39924090069482, 34.50560109092968], [-77.39997196207523, 34.50587926234593], [-77.40010890967235, 34.505879977497294], [-77.40105382100862, 34.505828996737236], [-77.4014925386222, 34.50579737637581], [-77.4015431592815, 34.50580760275366], [-77.40159467562849, 34.505782695406545], [-77.40162533648999, 34.50574647237622], [-77.402538473926, 34.50524847877676], [-77.40313490257563, 34.504817846759835], [-77.40336665228139, 34.50465803132157], [-77.40442480723004, 34.50436283865854], [-77.40443668391282, 34.504185204894455], [-77.4047217378413, 34.504045810568634], [-77.40478022208623, 34.50427186103302], [-77.40493472388907, 34.50428919309189], [-77.40550078827056, 34.50430193913247], [-77.40587554020232, 34.50415330612903], [-77.40613287742815, 34.50401688805476], [-77.40629297009401, 34.50397063628844], [-77.40677188342175, 34.503728383344], [-77.4071664482738, 34.50352631997501], [-77.40726644089537, 34.50335357774365], [-77.40757188686513, 34.50292891932172], [-77.40732588181005, 34.5026106554289], [-77.40723783340852, 34.50240936504724], [-77.40644290248868, 34.502112646788405], [-77.40640615433361, 34.50207377944719], [-77.40633580860501, 34.50205363630819], [-77.40592702867866, 34.50193036954079], [-77.40538218684084, 34.50188391804443], [-77.40542277692514, 34.501685137110904], [-77.4061972001651, 34.501168782973394], [-77.40635713020076, 34.501099518397744], [-77.40693920596652, 34.50043621109413], [-77.40777784327429, 34.49996109932045], [-77.40788424366022, 34.499902606333116], [-77.40795424294535, 34.49986264532237], [-77.40807238448504, 34.499845073615475], [-77.40952407649189, 34.49970688393265], [-77.40952721219135, 34.49970581887075]], [[-77.32412472781866, 34.750803805063775], [-77.32384863998502, 34.7505041077649], [-77.32334161720914, 34.75061753297041], [-77.32321301818018, 34.75062981324135], [-77.32314069601676, 34.750705953289284], [-77.32309612319939, 34.75075287855676], [-77.32286160285624, 34.75098648921585], [-77.32261870358418, 34.751305639556435], [-77.32246564419607, 34.751384555768546], [-77.32222589813269, 34.75226330674019], [-77.32228506770147, 34.75232606883878], [-77.32245002225571, 34.75248514245318], [-77.32250633138273, 34.752539443545594], [-77.32256373003887, 34.752594795516416], [-77.3224961210872, 34.75268847828587], [-77.32248787863789, 34.75278565332292], [-77.32244472416993, 34.75288331494516], [-77.32241484500376, 34.75293567133213], [-77.32221905976706, 34.753066156641665], [-77.32221216964142, 34.75307526937119], [-77.32212707772808, 34.7531274596171], [-77.32188986176833, 34.75311901946938], [-77.32152266437849, 34.75310261867102], [-77.32084095789166, 34.753498591541444], [-77.32069106459996, 34.753642491631496], [-77.32056846614884, 34.754325384049665], [-77.32031704505636, 34.75454507277482], [-77.32028649727641, 34.75456085566457], [-77.32016186496905, 34.755053688230475], [-77.32004858612228, 34.755329606216286], [-77.31982770380559, 34.7554311643445], [-77.3198153140109, 34.755588511569925], [-77.31990297874802, 34.75562503635286], [-77.31982700534766, 34.75574978164203], [-77.31967304224398, 34.75585167683694], [-77.31962187489239, 34.75588720969496], [-77.31920879497397, 34.75615893488589], [-77.31920839318235, 34.75615921218913], [-77.3192079721952, 34.75615971998703], [-77.31920526423605, 34.75616125739347], [-77.31920568282516, 34.75615936107027], [-77.31920656282642, 34.75615758991433], [-77.31921311383476, 34.756142047727195], [-77.31939824085093, 34.75568900045956], [-77.31941701391595, 34.755643057955304], [-77.31946340840433, 34.75556877418405], [-77.31963994979432, 34.755264755743525], [-77.31975184756377, 34.75510984036242], [-77.31997618052915, 34.75478059203069], [-77.32012428697425, 34.75457147119985], [-77.31987215931736, 34.75419362047591], [-77.31998988454566, 34.75398187640157], [-77.32017048289185, 34.75359041909079], [-77.3201002921253, 34.75311887673422], [-77.32009816378502, 34.75311047397986], [-77.3200958998665, 34.75310774735532], [-77.32017238319509, 34.75265933857827], [-77.32021970671991, 34.75260895211429], [-77.32037339692688, 34.752153895238614], [-77.3204011797159, 34.75210862222986], [-77.32040223169926, 34.752096590978915], [-77.32039724513153, 34.752092421798906], [-77.32053638732145, 34.75190922710471], [-77.32056048365247, 34.75183123531279], [-77.32063243103316, 34.75177830477314], [-77.32076388069639, 34.75179162874325], [-77.32077817553913, 34.75179213482752], [-77.32078654689255, 34.75179320883562], [-77.32103090004645, 34.75195304702702], [-77.32160439264958, 34.75189813295555], [-77.32165395737375, 34.75187059415716], [-77.32230743350027, 34.75134827709998], [-77.32201264474962, 34.75124492020063], [-77.32208217386881, 34.75104468009249], [-77.32213791985454, 34.75088413227671], [-77.32213828956574, 34.75075424859169], [-77.32213330461282, 34.750451540026376], [-77.32225860970193, 34.750380236348875], [-77.32216968557282, 34.75009770171446], [-77.32219589613737, 34.74992177327889], [-77.32219062141775, 34.749902185235136], [-77.32215226024172, 34.749829882109125], [-77.32229486898618, 34.74966735454339], [-77.32294650701832, 34.74931127970673], [-77.32298580007732, 34.74929176233661], [-77.32300965603694, 34.749269478379674], [-77.32312211734745, 34.74920984142567], [-77.32411131197266, 34.74901242484209], [-77.32426871145263, 34.74905989938599], [-77.32433606314251, 34.74906493720827], [-77.3253550874006, 34.748837900914886], [-77.3255114429267, 34.74890640912371], [-77.32556207268907, 34.74891074389364], [-77.32673357852438, 34.74878276453457], [-77.32674600435182, 34.748780981125684], [-77.32676703335036, 34.74877271502616], [-77.32787021111363, 34.74851326787534], [-77.32803772146667, 34.748458985063564], [-77.32823816459617, 34.748430055117346], [-77.32867883264578, 34.74852590306329], [-77.32895082487586, 34.748670445821524], [-77.32918566501294, 34.74863135567476], [-77.32941431797076, 34.74891248466804], [-77.3294667764932, 34.749062056542044], [-77.32940988384752, 34.74923936100012], [-77.32912941975853, 34.74932139805071], [-77.3289913005365, 34.74929973582967], [-77.32878248277204, 34.74932175572007], [-77.32854498420849, 34.749518980393056], [-77.3280047355625, 34.74990932402621], [-77.32795991119501, 34.7502204325675], [-77.32789104173871, 34.75058332455876], [-77.3276936533363, 34.75081922763996], [-77.32764285907251, 34.750865455739756], [-77.32762922202778, 34.750868756569915], [-77.32730436094297, 34.7509806897565], [-77.32709913904107, 34.751022016088186], [-77.3268627043394, 34.751063861240134], [-77.32671454340988, 34.750948927833996], [-77.32648180320554, 34.751113334796415], [-77.32626200364857, 34.75113149828059], [-77.32605450132056, 34.75115861655085], [-77.32592206356927, 34.751255696663335], [-77.32583083784596, 34.75126587037773], [-77.32574457991144, 34.75119434791252], [-77.32569338398051, 34.751174471771165], [-77.32549854320285, 34.75101043001279], [-77.32516110516664, 34.750957358377626], [-77.32517591382026, 34.7507840145861], [-77.32496218011326, 34.75079487742297], [-77.32480120097777, 34.75090075284258], [-77.32450798459968, 34.75090332022651], [-77.3243681465633, 34.750777604736456]], [[-77.34330792409715, 34.68561465848048], [-77.34332507721949, 34.68560829108082], [-77.34383172356954, 34.685592431523666], [-77.34389120617631, 34.68566726203781], [-77.34392828660363, 34.68591228882992], [-77.34393644480909, 34.68599930765484], [-77.34401873263992, 34.686223362593545], [-77.34405687395062, 34.68647015907338], [-77.34351626459245, 34.68695821551336], [-77.34313680398168, 34.686596421971544], [-77.34312033849551, 34.68653400410071], [-77.34304993651693, 34.68650291125959], [-77.3427396732829, 34.686365882836476], [-77.34251942252062, 34.68626860883595], [-77.34239013140348, 34.68621150600371], [-77.34257819312319, 34.686066266589], [-77.34319613251044, 34.685687357576356]], [[-77.38558908733445, 34.51011992016954], [-77.38575072319776, 34.51007746638785], [-77.38584935907964, 34.51004318400911], [-77.38600117176053, 34.50996022496066], [-77.38775482216624, 34.508983521486634], [-77.38785785315908, 34.50840130719654], [-77.38698197376668, 34.50860754159332], [-77.38578490482104, 34.50856430616886], [-77.38516614464157, 34.508717467943626], [-77.38499653570544, 34.50872093980045], [-77.3842924548525, 34.509227394319964], [-77.38434283238746, 34.509310250842766], [-77.38419187457201, 34.50959804626069], [-77.383948323228, 34.51025636090768], [-77.38365824509663, 34.51061676245911], [-77.38417149230037, 34.51049958954373]], [[-77.22696853322113, 34.599469693287496], [-77.22670608393663, 34.599684604416396], [-77.22699720871863, 34.59994211537161], [-77.22734191839581, 34.59959302216082], [-77.22775775763778, 34.59953198731087], [-77.22753102299859, 34.59888808964578]], [[-77.243777310508, 34.59256152789865], [-77.24291183223578, 34.591825261916355], [-77.24112119678196, 34.59212939827272], [-77.23978209528673, 34.59293880529135], [-77.23944494774685, 34.59326772336267], [-77.23877180614734, 34.59380186431603], [-77.23976250561196, 34.59406423904016], [-77.24002067809495, 34.59420537168606], [-77.24016449867746, 34.594648548090575], [-77.24015044936655, 34.59485326108228], [-77.2403053046508, 34.59496323157014], [-77.24038475289707, 34.595151743756894], [-77.24044373347604, 34.59527880386187], [-77.24048748056669, 34.59535118165125], [-77.24067871691588, 34.59568011742447], [-77.24072737353461, 34.59584144366263], [-77.2407012578002, 34.5959171843085], [-77.24083446101064, 34.59592897642784], [-77.2414499860103, 34.596369753923256], [-77.24144532070221, 34.59637346842433], [-77.24145297053549, 34.5963727825635], [-77.24147599940133, 34.59638937255988], [-77.24176641609877, 34.59658641056112], [-77.24193218797483, 34.59640775989878], [-77.2420822741304, 34.59627131307508], [-77.24244760449918, 34.596073601175995], [-77.24254297085149, 34.59602375200221], [-77.24259976137857, 34.595989022799884], [-77.24278712852305, 34.59587125025346], [-77.24326474327697, 34.595570078496884], [-77.24342627795028, 34.59549475218726], [-77.24364487320808, 34.59537409450934], [-77.2438710482405, 34.59523302637844], [-77.24396342948694, 34.59515378800173], [-77.2440689306788, 34.59508036773938], [-77.24417137015521, 34.59498574297557], [-77.24420166686598, 34.59493688642365], [-77.24421744746616, 34.59488379602887], [-77.24428906574563, 34.594708098161604], [-77.24457409345591, 34.59454368225892], [-77.24471318567831, 34.594415546308994], [-77.24474428613416, 34.59427261950148], [-77.24478826092498, 34.594076829083434], [-77.24485337565272, 34.59399568224517], [-77.24478606869684, 34.59380456220012], [-77.24499057973986, 34.59357693385837], [-77.2449352729947, 34.59334496796766], [-77.24464765947059, 34.59297051963876], [-77.24421578771135, 34.59258054776161]], [[-77.2240737806666, 34.60961111977783], [-77.22443814834098, 34.61008438138561], [-77.22446017103695, 34.61011298496112], [-77.22462134244756, 34.61032232047512], [-77.22465774404776, 34.6103696002741], [-77.22484656640228, 34.61061484732666], [-77.22487734090538, 34.61065481837189], [-77.22491785692715, 34.61070744135389], [-77.22497253429931, 34.61063477849437], [-77.22535135386697, 34.610684141246495], [-77.22537611639834, 34.61066509499394], [-77.22539042795883, 34.61065777714213], [-77.22550246215266, 34.6106131295883], [-77.22552403386541, 34.61059659747855], [-77.2254990412577, 34.61054851010716], [-77.22554588222118, 34.61048738575078], [-77.22554666472152, 34.610434428980206], [-77.22559021694413, 34.61038816024145], [-77.22535049005839, 34.610183263949565], [-77.22580550243237, 34.610060871802446], [-77.2259265480386, 34.60999305299214], [-77.22605569977233, 34.60995472344003], [-77.22619075193917, 34.60985950204429], [-77.22626710044733, 34.6098140579791], [-77.22630061275011, 34.60978689695518], [-77.22638078703929, 34.60972507120704], [-77.22648640560193, 34.609565880919845], [-77.2264985784192, 34.609362510049195], [-77.22656554215791, 34.609336446924765], [-77.22654302179288, 34.60929702120147], [-77.22650774171522, 34.60923368425753], [-77.22612728325267, 34.60883049631764], [-77.22605458444696, 34.608745009704606], [-77.22602469321676, 34.60852232120943], [-77.22536995872721, 34.60877071738056], [-77.2247208273717, 34.60909582556035], [-77.22436266772682, 34.60937789606304]], [[-77.44247841257057, 34.48298852849352], [-77.44222939822674, 34.48311529858777], [-77.4417735951835, 34.483234388081556], [-77.44080210821554, 34.48360976895229], [-77.43998068364795, 34.48370282978398], [-77.43963824626834, 34.48380111113879], [-77.43904377307912, 34.48394331882765], [-77.43871005470258, 34.483980339420015], [-77.43807195200534, 34.48405112123522], [-77.43740321834272, 34.484125300314965], [-77.43718642482902, 34.4842287170385], [-77.4368114738947, 34.484332541105054], [-77.43637722999154, 34.48442949036451], [-77.4361624028786, 34.48451201045067], [-77.43573884923656, 34.48471329083396], [-77.43516449927183, 34.48492408851471], [-77.4350424388544, 34.48496888745974], [-77.43495204102098, 34.485010263658346], [-77.43438144933009, 34.48524169424479], [-77.43372621988863, 34.48545194962121], [-77.43349942717342, 34.485514691791096], [-77.4329110901822, 34.48571518218221], [-77.43257657457643, 34.485805378498256], [-77.4325181934277, 34.48582125011734], [-77.43248630446452, 34.485842059304986], [-77.43225730669793, 34.48599149122394], [-77.43206490777736, 34.48611703844411], [-77.43208249264146, 34.486500643706435], [-77.43136210732791, 34.48665598968598], [-77.43122248837903, 34.48674958968029], [-77.43106237427654, 34.48692923271372], [-77.43119605918278, 34.487257997505026], [-77.43126489835831, 34.48742729222692], [-77.43126225937566, 34.487607623382516], [-77.43140488375187, 34.48810996859494], [-77.43131630141488, 34.48914495102328], [-77.43250990094204, 34.48951742749569], [-77.43357836746195, 34.4898410603914], [-77.43405583023424, 34.48959629152942], [-77.43498130070502, 34.48909805454517], [-77.43531305746448, 34.48830934039061], [-77.43543475408386, 34.48813023196401], [-77.4357698076647, 34.48800456303516], [-77.43686753496297, 34.48763843928894], [-77.43722915233627, 34.487622541842605], [-77.43843935233839, 34.48791874758554], [-77.43977200919855, 34.4871855853868], [-77.44047629001467, 34.48701604916091], [-77.44074488033465, 34.48650039312643], [-77.44155272325895, 34.48592525910014], [-77.4416417714925, 34.48531773639617], [-77.44169524812021, 34.485232097724385], [-77.44173866700368, 34.485209374389434], [-77.44222192894684, 34.485014685297514], [-77.4429608745486, 34.48475456722923], [-77.4432269382963, 34.48465949065127], [-77.44438538363498, 34.48416317239035], [-77.44529439590427, 34.48343919945101], [-77.44532692877425, 34.483415383603905], [-77.4452515959774, 34.48328254715125], [-77.44471583551473, 34.48214624755453], [-77.4435130608636, 34.482551019186374]], [[-77.3952666553546, 34.50572448832981], [-77.39542938019028, 34.50566166918441], [-77.39629071923511, 34.50518945141643], [-77.39631808609084, 34.50488905581486], [-77.3959246823137, 34.50501140613505], [-77.3952688415349, 34.50562722780753], [-77.39447797456995, 34.50531745773195], [-77.3934208210633, 34.50578000616403], [-77.39303807464266, 34.506006825527976], [-77.39285740084232, 34.50654527026761], [-77.3943030266258, 34.506209138457564]], [[-77.44570822575693, 34.49289218311456], [-77.44722068206337, 34.492670127865296], [-77.44759727186491, 34.49186687845979], [-77.44782780302756, 34.491776988141645], [-77.44898583744147, 34.492020499747014], [-77.44920632328464, 34.49185276866598], [-77.44993432626829, 34.49194564720354], [-77.45034605309996, 34.49207036315725], [-77.45114620695946, 34.49220129235291], [-77.45177699289675, 34.49237895295997], [-77.45257793432427, 34.49189066066388], [-77.4517174005668, 34.491290700735924], [-77.4528957462231, 34.49154542450497], [-77.45319590224513, 34.49124656192851], [-77.45270944447898, 34.490863863786686], [-77.45169958968371, 34.491023430568816], [-77.45142552737634, 34.49109310180237], [-77.45126158111289, 34.491069220986944], [-77.45013854453674, 34.49131113203779], [-77.44899131330884, 34.49115421492721], [-77.44876811375195, 34.491223847408286], [-77.44799083948527, 34.49139521142307], [-77.44750272989072, 34.49152092963194], [-77.44734286533465, 34.49162433688437], [-77.44586472472406, 34.492011211707265], [-77.44514642442414, 34.49275362691784], [-77.44483672086758, 34.49284781605009], [-77.44506261714027, 34.492924830836685], [-77.44526722278461, 34.493195691861125]], [[-77.4359779310739, 34.68755330981627], [-77.43566248535161, 34.68805452780787], [-77.43612961417297, 34.68846657640411], [-77.43635647958567, 34.68866784756523], [-77.43646400046083, 34.68877339741299], [-77.43678225776638, 34.688868032577076], [-77.43695781587581, 34.68880432516244], [-77.43729412628635, 34.6886250393002], [-77.43711423312983, 34.68826356776049], [-77.43689871386557, 34.688145541272235], [-77.4365424629726, 34.68802488937845]], [[-77.39983894660459, 34.51181198819746], [-77.40029895684103, 34.51111194153414], [-77.40064262591513, 34.5109718798498], [-77.40096223487123, 34.5107389605878], [-77.40065374518099, 34.5104757252644], [-77.40048353059356, 34.510425310046685], [-77.39986439774378, 34.51067679985585], [-77.39953221303347, 34.51073904801489], [-77.39839618832723, 34.51110944223905], [-77.39832596479793, 34.51114564198899], [-77.39828257296044, 34.51121787305086], [-77.3973370498545, 34.51165792778662], [-77.39749435247693, 34.512218975597165], [-77.39791644338729, 34.51237033712705], [-77.39825343197774, 34.5125165582648], [-77.39871486420077, 34.51273123244369], [-77.3990309337899, 34.512844587563215], [-77.39924288257585, 34.51258482139838], [-77.39976052093253, 34.51193896903952], [-77.39980352115623, 34.51188560736951], [-77.39979660910375, 34.51186087448863]], [[-77.33320546462818, 34.56968441427774], [-77.33338999993313, 34.56947946583884], [-77.33342358571133, 34.56946567059356], [-77.33359968913595, 34.569392028902165], [-77.33375457413848, 34.56939529652066], [-77.33390306485589, 34.56930475943771], [-77.33383779686844, 34.56947308059042], [-77.33373191296232, 34.56951360361587], [-77.3335995467315, 34.56956359493884], [-77.33343730471476, 34.56952367946914], [-77.333316608977, 34.569715890615136], [-77.33320520586703, 34.569994502639396], [-77.33309165869187, 34.569748225861446]], [[-77.21922996145432, 34.61394226951861], [-77.2184163651242, 34.6140068318317], [-77.21832695779972, 34.61457418028259], [-77.21848184094263, 34.61482591300751], [-77.21855955799475, 34.614933986734925], [-77.21860372138612, 34.61520537952312], [-77.21862045789442, 34.6153082259833], [-77.21865761891016, 34.615536585210485], [-77.2186521276502, 34.61555462778023], [-77.2186620812313, 34.61556400700338], [-77.2186882465639, 34.61572479555724], [-77.21869816226774, 34.61578572748971], [-77.21871642158388, 34.61589793394005], [-77.21890649766392, 34.61591397521776], [-77.21901584822183, 34.61585532010736], [-77.21908816502773, 34.615816529448644], [-77.21924996419803, 34.61573485281844], [-77.2194611807814, 34.615651564481965], [-77.21950662804157, 34.615634447447036], [-77.21955303337025, 34.615617560718476], [-77.2196060427801, 34.61556523483379], [-77.21966445901977, 34.615508519497816], [-77.21969720822425, 34.615475244991714], [-77.21977207476881, 34.615399177143026], [-77.21986796906542, 34.61529840869137], [-77.2199851115596, 34.615180319200384], [-77.22004220936628, 34.615124669070084], [-77.22017410368397, 34.61498543452761], [-77.2201972789114, 34.61496139245822], [-77.22020873635837, 34.61494406687281], [-77.22032646177477, 34.614776087349874], [-77.22035311339803, 34.61473801686138], [-77.2204838438551, 34.614531306638504], [-77.22050537857062, 34.614514359151386], [-77.22052534205582, 34.61448672004684], [-77.2205287645517, 34.61437677750587], [-77.22018734242184, 34.61401788033796], [-77.22047417478453, 34.61377114841741], [-77.22002920270297, 34.61369801934448]], [[-77.41945886803039, 34.50219054540712], [-77.41908977594225, 34.50211949369555], [-77.41889217554466, 34.50203977658635], [-77.41877242076703, 34.50187707187855], [-77.4186565890943, 34.501816834420865], [-77.41844153279942, 34.501644906859575], [-77.41765841427564, 34.50167588980739], [-77.41767638913541, 34.50195851798574], [-77.41760205251757, 34.50214505406787], [-77.41760778783592, 34.502276920450086], [-77.4177456621165, 34.50243818911497], [-77.41809460462125, 34.502617121289504], [-77.41863011947883, 34.50246793613806], [-77.41888241253933, 34.50247961918122], [-77.41909555337183, 34.502374610982216]], [[-77.45399209381327, 34.47729964976676], [-77.4544962922767, 34.4776963839977], [-77.45519219329739, 34.47823830738004], [-77.45636254116094, 34.47810230388096], [-77.45623741485319, 34.47789077008092], [-77.45648447340513, 34.477563016690596], [-77.45672358295312, 34.47723996363027], [-77.45683465666825, 34.477143619115594], [-77.45700430034438, 34.47702057663547], [-77.45783211662003, 34.47662078920876], [-77.4567669450632, 34.47615221614223], [-77.45619966622279, 34.47614607312044], [-77.45532950262925, 34.47641220496549], [-77.4551411014644, 34.47648398772405], [-77.45463580376145, 34.47666915805303], [-77.45431878058459, 34.47704689974707], [-77.45427097395438, 34.47708592602517], [-77.4542218568421, 34.47711276592874]], [[-77.4583425484168, 34.48191614235218], [-77.45844644592874, 34.48149107279912], [-77.45872287832405, 34.48139468956828], [-77.45870337016773, 34.481100846241205], [-77.45737879791433, 34.48097230268989], [-77.45706686782148, 34.48131052941284], [-77.45563724488724, 34.48187068955437], [-77.4553154634195, 34.482345931315365], [-77.4550363035039, 34.48255835494083], [-77.45477478993739, 34.48267726902047], [-77.45482736058679, 34.483126239818176], [-77.45578294964885, 34.48316714163214], [-77.45596170705312, 34.483057688955526], [-77.45622656250688, 34.48278863910333], [-77.45725423727782, 34.48267109198498]], [[-77.4636217348052, 34.4864503065379], [-77.46375003576004, 34.48644388007274], [-77.46371954636872, 34.486308573070716], [-77.46350425538597, 34.48602070290747], [-77.46333182797004, 34.48572827382388], [-77.46231706177473, 34.48574773982865], [-77.4620993559134, 34.48580720439142], [-77.4610603321165, 34.48624205987316], [-77.460991171611, 34.486291658668165], [-77.46089445402474, 34.48632512088427], [-77.4606503969894, 34.48634662641523], [-77.45958716116692, 34.48646858934316], [-77.45875182141558, 34.48639177303488], [-77.45883231945179, 34.48680440047517], [-77.4584885015171, 34.48737517503115], [-77.45836548126644, 34.48739215529294], [-77.45835686401048, 34.48745576312289], [-77.45842172075145, 34.487511220571115], [-77.45819370243434, 34.48790273958855], [-77.45822284130602, 34.48812447226102], [-77.4582894814578, 34.48836321802567], [-77.45841294330258, 34.48860329654525], [-77.45816759088551, 34.48879718182671], [-77.45840493161556, 34.48908578925275], [-77.45997558702723, 34.489362464936626], [-77.46042261789684, 34.48952413548239], [-77.46089174157936, 34.489352148812216], [-77.46103399529515, 34.489297730751964], [-77.46105055527606, 34.48929066404238], [-77.46105963331468, 34.489281848236], [-77.46105998122258, 34.48926423511472], [-77.46126253003806, 34.48895439371665], [-77.4613106698207, 34.48882299721088], [-77.46146344063892, 34.48840600273802], [-77.46163909819249, 34.48829800025849], [-77.4615408412515, 34.48823004499481], [-77.46162548920813, 34.48778787917787], [-77.46190254233127, 34.48763586138513], [-77.46212633317214, 34.48743716338447], [-77.46247833798608, 34.487193154305245], [-77.46264798456222, 34.487096556045664], [-77.46285193450093, 34.48700855254083], [-77.46315550469257, 34.486749083937845]], [[-77.24991370598288, 34.61130871023784], [-77.24939170564092, 34.610664451356314], [-77.24849603194076, 34.60989961854532], [-77.24771901243838, 34.608980674177566], [-77.24710107097357, 34.60859869564494], [-77.24667348708115, 34.60764263242279], [-77.24668339277403, 34.60762311543763], [-77.24669274190317, 34.6076031430987], [-77.24680711104702, 34.60745040304742], [-77.24735122522907, 34.60673301934161], [-77.24797646314308, 34.606115460521764], [-77.24942843071842, 34.605603679357515], [-77.25030339071616, 34.605555562057816], [-77.25190150845822, 34.60568571200883], [-77.25269396321485, 34.60581590962569], [-77.25334503316736, 34.607204908044864], [-77.25307125390957, 34.60801695583533], [-77.25304999828552, 34.60812438082924], [-77.25300562491078, 34.60821160103913], [-77.25258889051862, 34.60903076247959], [-77.2521733020185, 34.60984766626867], [-77.25209231788637, 34.60993437162394], [-77.2518901852389, 34.61009874824532], [-77.25110060950558, 34.61079898676154]], [[-77.39592582118861, 34.51131614709882], [-77.39598306514036, 34.511212958594584], [-77.39595319518921, 34.51120179440765], [-77.39594828070008, 34.51109556201129], [-77.39593077884928, 34.51109548429866], [-77.39591745717514, 34.51110001128406], [-77.39590924179826, 34.51121180828312], [-77.39590682458739, 34.51122396369877]], [[-77.31382179867775, 34.698413332106234], [-77.3137746152816, 34.698344721064004], [-77.31370307586654, 34.69812707202597], [-77.31362905311009, 34.698133054082405], [-77.31350836423692, 34.697968901087705], [-77.31347025873636, 34.69791203337789], [-77.3134065619376, 34.6978688025962], [-77.31323186072376, 34.69776309167942], [-77.31345792921283, 34.6976921950325], [-77.31354090714488, 34.6977207635894], [-77.31361702660041, 34.69779917775776], [-77.31370827817096, 34.69786066532694], [-77.31391172832868, 34.69782780982728], [-77.31400601138404, 34.69786622140745], [-77.314032081627, 34.69787408520061], [-77.31411656290967, 34.69788559783217], [-77.31448943071791, 34.69826258206858], [-77.31483635498836, 34.698009494853764], [-77.31487496808633, 34.69801407341451], [-77.31490247983419, 34.69802162939042], [-77.3151070242531, 34.69819761812962], [-77.31515820505929, 34.69819034127321], [-77.31524332921165, 34.69821862122695], [-77.31501012045177, 34.698530807763575], [-77.31477281088561, 34.69859166231664], [-77.31455790811886, 34.698799868317955], [-77.3143139839655, 34.69886581293051], [-77.31427429793419, 34.698838714947186], [-77.3143182713932, 34.698442145885934], [-77.31383942808596, 34.69843896761304]], [[-77.44129026071369, 34.495729134495384], [-77.4414221507785, 34.495609156582326], [-77.44165735663576, 34.49538802379129], [-77.44160681989528, 34.495288872261895], [-77.44177507114436, 34.495200051347226], [-77.44216867418012, 34.49496781576252], [-77.44289574534167, 34.49437311967713], [-77.44420113504805, 34.49416650635125], [-77.44312265159152, 34.49393814327545], [-77.44270253811597, 34.49366599938135], [-77.44146039004877, 34.49343540197685], [-77.44128309433653, 34.493399369204184], [-77.4408529384529, 34.49399598358772], [-77.4408514625583, 34.49432767373112], [-77.44063205870947, 34.494660261823356], [-77.44047755842199, 34.49474006807298], [-77.44036333842776, 34.4949617185615], [-77.4400811462493, 34.49514151856732], [-77.43967678216747, 34.49528711674936], [-77.43994665795381, 34.49559696105045], [-77.44059849530636, 34.49582244335585], [-77.44092190174149, 34.495870431264684]], [[-77.35716258422232, 34.570450168323895], [-77.35694636340448, 34.570562342880976], [-77.35717565203542, 34.570596220656796], [-77.35723770107259, 34.570628584910416], [-77.3574266375033, 34.570696845751755], [-77.35763160819863, 34.57076627234133], [-77.35771091716947, 34.57079136226109], [-77.35785585383547, 34.57085597631264], [-77.35796563119013, 34.57090470520046], [-77.35802536178865, 34.571192619331356], [-77.35804461190597, 34.57123258991714], [-77.35806094950206, 34.5712510048958], [-77.35852488493458, 34.57149487139008], [-77.35881317063928, 34.571495388932604], [-77.35900508598851, 34.571757242633176], [-77.3592069419557, 34.57190580344379], [-77.35922899501307, 34.571931962511], [-77.35937959862437, 34.572148646298835], [-77.3596006517341, 34.57244320220937], [-77.35972726375206, 34.57257283013625], [-77.36031041291004, 34.57254114973071], [-77.36038859089872, 34.572522539689764], [-77.36042873801516, 34.57256506220262], [-77.36106602828178, 34.57239740894944], [-77.36117673879018, 34.57218480828631], [-77.36141113361401, 34.57187020995039], [-77.36141079754739, 34.571617847078876], [-77.36141112324519, 34.57136566828062], [-77.3614514695353, 34.571187436952975], [-77.36117740574541, 34.570845567961705], [-77.36116112669491, 34.57082224123045], [-77.3611266020627, 34.570809657231074], [-77.36096418390316, 34.57063836712318], [-77.36090057015385, 34.57062992383937], [-77.36079949812098, 34.57044930569814], [-77.36079218933057, 34.570433251218], [-77.36078961622565, 34.57042717560607], [-77.36058646749292, 34.570038315841096], [-77.36038995037651, 34.56984501880249], [-77.36001404771119, 34.56967679094197], [-77.35996610508205, 34.56967079541603], [-77.35960214650369, 34.5695536479854], [-77.35936647928239, 34.569618771652785], [-77.35899258518806, 34.56961094670386], [-77.35881413672514, 34.56966233467497], [-77.35859891798391, 34.569707244413856], [-77.35802613355959, 34.569754325368635], [-77.35791702110089, 34.569691130497], [-77.35763219218394, 34.56968772162235], [-77.35757842574162, 34.56968019889817], [-77.35730675516265, 34.56973524939579], [-77.35723818142003, 34.569749144876916], [-77.35709438857513, 34.569904207727326], [-77.35709386054262, 34.56996116404799], [-77.357122824501, 34.570112390363306]], [[-77.34188151498013, 34.653747613512124], [-77.3419138454457, 34.65383616212189], [-77.34187807092277, 34.65386983025561], [-77.34185022305743, 34.65394358246988], [-77.34178049019462, 34.65394761200685], [-77.34172931077859, 34.653926205515454], [-77.34167475363688, 34.65394659939872], [-77.34147377242844, 34.65398073801282], [-77.34141137630257, 34.653937393008924], [-77.34132178792085, 34.65395074043218], [-77.34083817699988, 34.65409085468023], [-77.34079730253117, 34.65406820817237], [-77.34069175165631, 34.65415882394345], [-77.34025388546134, 34.65428837550889], [-77.34020728775054, 34.65431873846062], [-77.34011489491688, 34.654374547457856], [-77.33960079607685, 34.654487299048135], [-77.33940943166978, 34.654622954714476], [-77.33930969567012, 34.654632018117994], [-77.33927757131657, 34.65471150732269], [-77.33924023654102, 34.654780024626895], [-77.33908209453642, 34.65509270554205], [-77.33898411155889, 34.65510482100494], [-77.3388991185143, 34.65524883213992], [-77.33871890613152, 34.65552451192452], [-77.33873432700003, 34.65569344225149], [-77.33858625160771, 34.655811889620054], [-77.33836647610399, 34.65586278196591], [-77.33815343326938, 34.65596111944781], [-77.33793757900509, 34.65577061510506], [-77.33782109700309, 34.65602093699431], [-77.3376821418174, 34.656092836558905], [-77.33763043857857, 34.65617659082216], [-77.33742781398256, 34.65624937369354], [-77.33739562461471, 34.65626040322328], [-77.33735427407092, 34.656252424693506], [-77.33712520776821, 34.65627432946276], [-77.33712501103116, 34.65603840648731], [-77.33718538038741, 34.65590598905665], [-77.33728147386849, 34.65569235164571], [-77.33742250005399, 34.6556488460901], [-77.33754038347837, 34.65543528173196], [-77.33763302801168, 34.6551781091769], [-77.33759858231363, 34.655005300890046], [-77.33771715047317, 34.654673713166005], [-77.33779730930719, 34.65466420234739], [-77.3379905823112, 34.65452951494653], [-77.33828670042772, 34.65432130406686], [-77.33839780299581, 34.65432932852944], [-77.33875448116578, 34.6542232060566], [-77.33886614100848, 34.654018132945964], [-77.33916504210929, 34.65395864221775], [-77.33917342170497, 34.653953936522036], [-77.33917948016634, 34.65395268636468], [-77.33944512705929, 34.6537127203988], [-77.33966753144237, 34.653741023996496], [-77.33965890114605, 34.653456580366836], [-77.33957616326802, 34.65314479809685], [-77.33936549648996, 34.653316488110534], [-77.33924654858053, 34.65334803977085], [-77.33890945737056, 34.65331649765177], [-77.33863596818009, 34.65287277329777], [-77.33843422276826, 34.65325698292813], [-77.33836759891348, 34.65324104953388], [-77.33823060123228, 34.65323059231709], [-77.33832693865705, 34.65315683101559], [-77.33851414211709, 34.65276968704032], [-77.33859554504293, 34.65274032052222], [-77.33860837578754, 34.65273546961568], [-77.33863154108627, 34.65271856791526], [-77.3390433477636, 34.652491094533076], [-77.33916263969257, 34.65230707528525], [-77.33931984290287, 34.652081952041186], [-77.33961199430613, 34.65177503267985], [-77.33967709159982, 34.651680609042], [-77.33973480605167, 34.65168264916856], [-77.33975621585304, 34.651755239826066], [-77.33995230672724, 34.65240018344228], [-77.33997470469006, 34.652569247091606], [-77.34030772798808, 34.652844696386595], [-77.34054952844664, 34.65283540812095], [-77.3406735134771, 34.652895336759386], [-77.34082696380703, 34.652964919141176], [-77.34090944354637, 34.653033115803346], [-77.34118104984313, 34.6532476751355], [-77.34119649343123, 34.653381511799566], [-77.34129709721874, 34.653368822760974], [-77.34159231041104, 34.65361322601527], [-77.34163344310038, 34.65366464088312], [-77.34167777541964, 34.6536698088833], [-77.34177108716145, 34.6537029045822]], [[-77.38254882619111, 34.51338846774948], [-77.38253641608722, 34.51338906451778], [-77.38219352363397, 34.513174731333685], [-77.38198834430746, 34.513131475068015], [-77.38175670972916, 34.513160667686996], [-77.38099154263624, 34.513620799289825], [-77.38102253997457, 34.513654944999566], [-77.38120267915241, 34.513925194213314], [-77.38136742384927, 34.51382273864501], [-77.38174670627384, 34.51360259884162], [-77.38191386421627, 34.51359191473626], [-77.3821395341266, 34.51358542566963], [-77.38252462351471, 34.51340679918919], [-77.38253614846316, 34.51340089247081], [-77.38253903181393, 34.51339939205186], [-77.38254448162654, 34.513396828346416]], [[-77.42900494444069, 34.49817962187577], [-77.42821178480138, 34.49828435740937], [-77.42799106409302, 34.49840659866314], [-77.42785220250934, 34.49845867807867], [-77.42741832986746, 34.49849280464614], [-77.42688050962275, 34.49850607439645], [-77.42650343260576, 34.49845087450173], [-77.4260275714669, 34.49864412307193], [-77.42569041116768, 34.498841139081854], [-77.42535480966707, 34.49917611678906], [-77.42491394606887, 34.49926279611607], [-77.42434389232868, 34.49937487588728], [-77.42405294683141, 34.49934014493151], [-77.42349825423184, 34.49955794284692], [-77.42291247778681, 34.499836108385686], [-77.4228791143616, 34.499851116978995], [-77.42285068798296, 34.49986902702789], [-77.42184642154119, 34.50045718649469], [-77.42175502559884, 34.50049297768249], [-77.42171219553722, 34.500631536702194], [-77.42127029980392, 34.501103292128825], [-77.42149185938166, 34.50131933470226], [-77.42144992286786, 34.50145024414242], [-77.42162461655741, 34.50161792696824], [-77.42132857587569, 34.50192025228651], [-77.42150551211469, 34.502220187723736], [-77.42202965324923, 34.502108360479845], [-77.42237029134202, 34.50198043708967], [-77.42313780210449, 34.50202556533639], [-77.42343994244595, 34.50202736614128], [-77.42363690707683, 34.502002017875064], [-77.42379844336011, 34.50190799267131], [-77.42431716164093, 34.50173854274991], [-77.4245139010587, 34.501606764016486], [-77.4246547767875, 34.501544440728075], [-77.42493509319031, 34.50144476983547], [-77.42523842906081, 34.50130599199676], [-77.42540828845966, 34.50108063761007], [-77.42581687111917, 34.50086840233469], [-77.42631653323163, 34.50068550046819], [-77.42672914219966, 34.50053440370455], [-77.42706457889128, 34.50050595911406], [-77.42762269223417, 34.50037460665347], [-77.42824350297705, 34.500142725269406], [-77.42830682960928, 34.50012356326697], [-77.42831728190349, 34.50011809207081], [-77.4283287876002, 34.50011268654054], [-77.42834897014139, 34.50008765889027], [-77.42920517084261, 34.49948187540548], [-77.42933403724652, 34.49942402793547], [-77.42941974618681, 34.49926759668743], [-77.4295267623917, 34.49916051905234], [-77.42967997561837, 34.49899803694201], [-77.4299809653713, 34.49884592665107], [-77.42912987687154, 34.49820611863881]], [[-77.25833217685373, 34.58196851445831], [-77.25800916789014, 34.58198318152925], [-77.2578050592959, 34.582103487775406], [-77.2578157617621, 34.58216191143691], [-77.2574719752861, 34.58254861403955], [-77.25760042016668, 34.582791092055764], [-77.25758277574135, 34.58298397764418], [-77.25756712773823, 34.58302744524593], [-77.2575466583614, 34.58307651690344], [-77.25743334590891, 34.58312131807933], [-77.25703505638614, 34.58318908956979], [-77.25625255573117, 34.58324002375698], [-77.25563739021004, 34.58371248087857], [-77.2555321264608, 34.583809947916144], [-77.25551344538462, 34.58389718090524], [-77.2552417095168, 34.58412068250689], [-77.25431982639513, 34.58465719320477], [-77.25445121664126, 34.58489146015429], [-77.25431889388933, 34.58512846530026], [-77.25418762193684, 34.585347067998654], [-77.25391570380323, 34.58556806568424], [-77.25380740956177, 34.585666176844356], [-77.25382117018229, 34.5858621835194], [-77.25393775109754, 34.58604114517823], [-77.25404167836847, 34.58614701793742], [-77.254156973422, 34.586264469912265], [-77.2541735388659, 34.586281345203574], [-77.25441457685552, 34.586206239179106], [-77.25446488207731, 34.58617225349014], [-77.2545260881761, 34.58608746478616], [-77.25461860080935, 34.58605906353044], [-77.25470985953899, 34.58600484418772], [-77.25473477173001, 34.5859860576906], [-77.25480801693013, 34.58589889500111], [-77.2548344655658, 34.585876070149084], [-77.25491564155118, 34.58581976561684], [-77.2546065857496, 34.58562245841362], [-77.25508141409435, 34.58548477816185], [-77.25539435986597, 34.58548509384309], [-77.25543366438825, 34.58545189721362], [-77.25556013108351, 34.585253287907676], [-77.25558335991306, 34.585228009593514], [-77.25569670716814, 34.585159886637726], [-77.25581675796954, 34.58482425829279], [-77.25615203731186, 34.58482069557775], [-77.25617175718922, 34.58480298381083], [-77.2562029191077, 34.5847866259153], [-77.25633978963023, 34.5846321865111], [-77.25644692264798, 34.58465441397604], [-77.25653694289936, 34.58459605754361], [-77.25661550917012, 34.584548784151266], [-77.25663744027446, 34.58453205907089], [-77.25666459805896, 34.584488269906934], [-77.25676864900205, 34.58443507945138], [-77.256817509486, 34.584399812235056], [-77.25683658611659, 34.58438397158481], [-77.25688938472335, 34.584345860585586], [-77.25697221275014, 34.584276811163036], [-77.25701968876257, 34.584250999880226], [-77.25710128188187, 34.58417465824762], [-77.25710012313691, 34.58416904331363], [-77.2571209880185, 34.584155235681685], [-77.25719610944769, 34.5840792769623], [-77.25724674406547, 34.58402833379234], [-77.25720567779737, 34.5839416801902], [-77.2575075723594, 34.58380770021738], [-77.25757428381506, 34.583758364597934], [-77.25760503854899, 34.58373744137094], [-77.25774247057262, 34.583658988300265], [-77.25777014595714, 34.583632600589894], [-77.25779445140284, 34.58362555328871], [-77.2578162704285, 34.5836141019107], [-77.25793000414251, 34.58352734643549], [-77.25798319374533, 34.58346479125862], [-77.25814525250752, 34.58338040749676], [-77.25823851653075, 34.583315955870034], [-77.25833278223908, 34.58325421760384], [-77.25839609951923, 34.58321052225342], [-77.25840915008261, 34.58318638088374], [-77.25849027971802, 34.58310009864701], [-77.25862578356478, 34.58305042725327], [-77.25880090776592, 34.582895201150954], [-77.25880563102754, 34.582889245407735], [-77.25880727389287, 34.58288321658405], [-77.25882191791787, 34.58287604072147], [-77.25904827350833, 34.58267266953526], [-77.25909243298548, 34.58247957935305], [-77.25913011910758, 34.582443439957046], [-77.2592234288364, 34.58236955559302], [-77.25887994106085, 34.58218808171271], [-77.25901610761625, 34.58207978956548], [-77.25891795633473, 34.581853092921676]], [[-77.43781870483008, 34.58329862901395], [-77.4379473192555, 34.58350093226712], [-77.43812259380967, 34.58377663139818], [-77.43819452688967, 34.583889777368924], [-77.43827453935663, 34.58401563216441], [-77.43840216001426, 34.5842163703212], [-77.43844258756083, 34.5842349435101], [-77.43879615948413, 34.58414749692974], [-77.4390789194219, 34.58406661092801], [-77.43919013868641, 34.584034795511904], [-77.43981877544488, 34.58390774531707], [-77.4399781205133, 34.58386820906311], [-77.4401169959933, 34.58403634034674], [-77.44031787625491, 34.58437314801971], [-77.44058325213584, 34.584818095921015], [-77.44062888834125, 34.584959979250826], [-77.44076159291038, 34.5856356671101], [-77.44024870834016, 34.585424863301725], [-77.43997888444287, 34.58554226850828], [-77.43977298738318, 34.585359879165935], [-77.43966861178288, 34.58528458917351], [-77.43958470776843, 34.585231036625956], [-77.4395329682472, 34.585182294501266], [-77.43947861830831, 34.58509210720854], [-77.43931076063942, 34.58500213328452], [-77.43935825415541, 34.58481448439679], [-77.43919028605399, 34.58436477886687], [-77.43898426044358, 34.58482712357241], [-77.43876597829353, 34.584689105021624], [-77.43872796746346, 34.5846618221127], [-77.43857608701407, 34.58449650088403], [-77.43851570191171, 34.58448022211917], [-77.43840219890639, 34.584305355014266], [-77.43837313807487, 34.58431986373871], [-77.43823831145566, 34.58430803977417], [-77.4382051808713, 34.58429880956042], [-77.43818692234261, 34.58412276659258], [-77.43800802688051, 34.583977747982175], [-77.4379817491111, 34.58394885042748], [-77.43761385590298, 34.58364531342886], [-77.43758109904921, 34.58358916407173], [-77.43721983025911, 34.58364959831905], [-77.43720009445056, 34.583630246192975], [-77.43717426567191, 34.58361272325083], [-77.43702275434491, 34.58350164224841], [-77.43698218835681, 34.583471901126366], [-77.43682567008426, 34.583332006855024], [-77.43666977891999, 34.58326108025416], [-77.43670268279881, 34.58296409173572], [-77.4361901090607, 34.58307028332943], [-77.43603758615743, 34.58325436415734], [-77.43560207953101, 34.58337071518938], [-77.43554551846118, 34.583848236963355], [-77.43525006600778, 34.584586763861374], [-77.43449627068281, 34.5839999449462], [-77.4344876615221, 34.583973280962645], [-77.43446172142428, 34.58386908107201], [-77.4344049263104, 34.5832248977567], [-77.43437980445117, 34.58316759961903], [-77.43406730130444, 34.58285221906155], [-77.43403337652117, 34.58282964164161], [-77.4340183887092, 34.58274259950174], [-77.43416149325179, 34.582672997288284], [-77.43446117255162, 34.58245841547545], [-77.43457327754673, 34.58241126419536], [-77.43467434535039, 34.58227582882364], [-77.43487192700111, 34.58184096104378], [-77.43487636612907, 34.581798933961316], [-77.43498073229343, 34.58138234416211], [-77.43482579270679, 34.58101122615733], [-77.43481477351597, 34.58098174812431], [-77.43479014518508, 34.580915863922975], [-77.43485459326197, 34.58092631919856], [-77.4348989485945, 34.58092177761991], [-77.43524862130462, 34.58095889925237], [-77.43567429033831, 34.58082329602531], [-77.43638195270776, 34.581179732107], [-77.43660318990959, 34.58138661132689], [-77.43682500446988, 34.58173553338459], [-77.43695851360435, 34.58194554772763], [-77.43721093968911, 34.58234262193015], [-77.4374529116942, 34.582723241314966], [-77.43751482200923, 34.582820626329934], [-77.43761357012784, 34.582975955007385]], [[-77.4383903230447, 34.740843813892354], [-77.43837684316391, 34.74071457875888], [-77.43836530977464, 34.740655373633246], [-77.43840635722651, 34.740445374627285], [-77.4384104219665, 34.740413349987605], [-77.43842963240841, 34.740313748690106], [-77.43844438392144, 34.740184448292986], [-77.43844477423117, 34.74017928108177], [-77.43844524531852, 34.74017561873616], [-77.43846593197128, 34.74008896386812], [-77.43843748053993, 34.73989721684539], [-77.4384957376815, 34.73989449310916], [-77.43851962167857, 34.73990342963488], [-77.4386087497543, 34.739817297782736], [-77.43860399253626, 34.73969747574647], [-77.4386278964718, 34.739684229481256], [-77.43862588662992, 34.73965384796533], [-77.43859833294084, 34.73963142735726], [-77.43854566435769, 34.73960220734299], [-77.43846941161966, 34.73962885720699], [-77.4383279639996, 34.73962046541572], [-77.43826464218361, 34.73967666594258], [-77.43817251361611, 34.73974039761973], [-77.43814982052905, 34.73979671221542], [-77.43813582827511, 34.73985830347143], [-77.43806316363315, 34.74004595175969], [-77.43796877883463, 34.74015530148285], [-77.43793402759351, 34.740280349605364], [-77.43784146336453, 34.74032118987286], [-77.43777303037507, 34.7404560676964], [-77.43777537881348, 34.74050443629035], [-77.43784476556911, 34.740573657898025], [-77.43792705713703, 34.7406150103175], [-77.43798083763646, 34.74065738568311], [-77.43820054818349, 34.740724112391256]], [[-77.22941912915736, 34.59683495475752], [-77.22941579738459, 34.596831481657766], [-77.22940016173958, 34.59683345784202], [-77.22893895327212, 34.59706914466365], [-77.22870216055925, 34.59746835519225], [-77.22876078511575, 34.59772571557705], [-77.22879915900357, 34.598049129831], [-77.22874842043535, 34.59818577860524], [-77.22879408170598, 34.59819970301536], [-77.22885311413401, 34.59830772448151], [-77.22830031086848, 34.59863208985038], [-77.22917490391698, 34.598972282058114], [-77.2294845756984, 34.598869579938366], [-77.23000790549082, 34.5989925307133], [-77.23041026837681, 34.598798602325495], [-77.2306427178487, 34.59858510006263], [-77.23083540398416, 34.59836079012922], [-77.23093498548383, 34.59818767963143], [-77.2309290317086, 34.59810462643412], [-77.23078854876431, 34.59788573519664], [-77.23063536293446, 34.59775348856646], [-77.23057875487117, 34.59750095159125], [-77.23048893772679, 34.59739073543547], [-77.23012977542815, 34.59708672386417], [-77.22939400891362, 34.59720950079052]], [[-77.43120090452216, 34.50085853909677], [-77.43108579703967, 34.50086965018063], [-77.43074231444277, 34.50091138959156], [-77.43057945424871, 34.50092060845379], [-77.43060765502696, 34.501151810069096], [-77.43061755157888, 34.501236196701115], [-77.43061967727304, 34.501250373962584], [-77.43065378590413, 34.50125380868481], [-77.43070841490825, 34.5012474289431], [-77.43121711132915, 34.50123054608718], [-77.43126373665322, 34.50108859706034], [-77.4312947441947, 34.50097121022051], [-77.43131197623893, 34.5009404527302]], [[-77.45084657004259, 34.47898616498673], [-77.45080494257809, 34.47896889379946], [-77.45075352958361, 34.47899185745317], [-77.45016868416003, 34.47925079567786], [-77.4497523039908, 34.479514983477344], [-77.44968996170718, 34.47958431899598], [-77.45112315116415, 34.480133318549655], [-77.4514848818456, 34.479675645719894], [-77.45169021353468, 34.479396155432745], [-77.45178773456348, 34.47923435189524]], [[-77.4375865450095, 34.49682955171765], [-77.43814714360062, 34.49670792808856], [-77.43827015377879, 34.49663782047956], [-77.43832875704184, 34.49656949253689], [-77.4386397485757, 34.4962795186274], [-77.4386730109926, 34.49624927130742], [-77.43864316139661, 34.49622499195788], [-77.43864389439429, 34.49591001959192], [-77.43784992415956, 34.495619930700855], [-77.43693867774631, 34.49582310776311], [-77.4367038922767, 34.495876593115874], [-77.43658468555941, 34.49591784444056], [-77.43623338101392, 34.495970616422724], [-77.43530343510488, 34.49615715739802], [-77.43481078821685, 34.49614471847186], [-77.43455826628549, 34.4963772765761], [-77.43413120636166, 34.496408539816926], [-77.43403788098834, 34.496453961297505], [-77.43326681738236, 34.49658252558262], [-77.43290882610307, 34.49725056038875], [-77.43259546254613, 34.49744447413155], [-77.43238745708183, 34.497617627651586], [-77.43280630234509, 34.49776026100044], [-77.43307964900359, 34.49787600558339], [-77.43342417342382, 34.49784727437343], [-77.43446010148044, 34.49799977856732], [-77.43505103535844, 34.49775347332759], [-77.43544103298522, 34.49763929534056], [-77.43566842024079, 34.497493361822016], [-77.43661184710353, 34.497157514313216], [-77.43672403430672, 34.4970746218378], [-77.43686988759859, 34.49696190832504]], [[-77.392797964614, 34.50852185255509], [-77.39206186906483, 34.50863782511237], [-77.39132322108694, 34.50873279957292], [-77.39129350286034, 34.5091966112903], [-77.39157568075683, 34.50944785153089], [-77.39143323793766, 34.50977961333878], [-77.39135532907784, 34.510167027378905], [-77.39133367562071, 34.510227830093385], [-77.39123302192067, 34.510592225482554], [-77.3911636063819, 34.510641749707254], [-77.39114416673364, 34.510687167691025], [-77.391205229695, 34.51069426182347], [-77.3912309275756, 34.510685209904814], [-77.39127782402886, 34.510697308862866], [-77.39201115430443, 34.51089037659268], [-77.39220928125081, 34.510899389475455], [-77.3926684032678, 34.51087707311659], [-77.39279689238066, 34.51085079875686], [-77.39292375142175, 34.51084100657331], [-77.39335436339996, 34.510714090192636], [-77.39358540922727, 34.510687643025676], [-77.39369799392637, 34.510632914444514], [-77.39378331054291, 34.51061250359337], [-77.3939730629366, 34.51052373973138], [-77.39397641627758, 34.51052002061047], [-77.39398170127845, 34.51051558644195], [-77.3940045289562, 34.510505102871086], [-77.39437962173692, 34.5102710352847], [-77.39458782148631, 34.51032076938337], [-77.39479947035049, 34.51015962515281], [-77.3949299177119, 34.50980401050711], [-77.39506164379368, 34.50963211338403], [-77.39497350220829, 34.50951509128521], [-77.39481187093611, 34.50892765223408], [-77.39399422215114, 34.50880684053356], [-77.39363079197497, 34.50867023731463]], [[-77.45414201993586, 34.680049145000815], [-77.45410644570612, 34.679915506998164], [-77.45409761625507, 34.679877169178894], [-77.45406483536505, 34.67983243757876], [-77.45395542761626, 34.67954843275784], [-77.4539380547859, 34.67920680678461], [-77.45391878340985, 34.679189613656305], [-77.45392127796944, 34.679162891274764], [-77.45397923673373, 34.679156486295774], [-77.45401137580947, 34.67919438309857], [-77.45418697598393, 34.67948243504658], [-77.45441524464253, 34.679538182917206], [-77.45450051083867, 34.679675032430296], [-77.45454663574897, 34.679749185633106], [-77.45456360891306, 34.67981412632391], [-77.45469167013036, 34.679918569661424], [-77.45477490434165, 34.680013173998795], [-77.4548052115297, 34.680044747580105], [-77.45488642709714, 34.68011960069752], [-77.45477392169751, 34.68021859763704], [-77.45454450581684, 34.680294700506906], [-77.45428508560921, 34.68035479290325], [-77.45417579953137, 34.68022414884541], [-77.45416684912878, 34.680177778309414]], [[-77.30151833120078, 34.55403730851118], [-77.3011380248252, 34.55425237838926], [-77.30127813807889, 34.55446622137373], [-77.301314064096, 34.554580435824406], [-77.30142513090591, 34.55468993549489], [-77.30128900558103, 34.554822846265964], [-77.30129511671426, 34.55483601674594], [-77.30130327064677, 34.5548318092859], [-77.30131237482829, 34.55483423023628], [-77.30138822234628, 34.55481763484232], [-77.30150117518946, 34.55476490679849], [-77.30150967428933, 34.5546818824628], [-77.30157475484525, 34.55466846522534], [-77.30168785645, 34.55452022184889], [-77.3021697021557, 34.55433828464776], [-77.30193360796103, 34.55411214942524]], [[-77.41114475034965, 34.671218272381466], [-77.41097411085455, 34.67120341430478], [-77.41086071996935, 34.67116215153952], [-77.41067584294008, 34.67112710020923], [-77.41022093084003, 34.67076804582452], [-77.41076508009556, 34.67081889971102], [-77.41098329280432, 34.670839292075264], [-77.41107104790558, 34.67086861613893], [-77.41112900516278, 34.67085290907022], [-77.4112036396111, 34.67083242296118], [-77.41143318914645, 34.67072431878211], [-77.4115375202088, 34.670773078251855], [-77.41196923464514, 34.67082080705194], [-77.41203078038838, 34.67083188529701], [-77.41205724389854, 34.67029249103288], [-77.41213337092867, 34.67025158406908], [-77.41223633269232, 34.67016332359076], [-77.41230583091394, 34.67015965221829], [-77.41231748198683, 34.67010401046551], [-77.41242391550082, 34.670068671868236], [-77.41246841116426, 34.67005155811201], [-77.4125192823065, 34.670034856694706], [-77.41251662810578, 34.669976348009286], [-77.41256941927755, 34.66991262437998], [-77.41266715700411, 34.66978177007155], [-77.41287074886216, 34.67001808180417], [-77.41275235326736, 34.67010116553619], [-77.41273488409828, 34.67011342447485], [-77.4126102901139, 34.67020648599957], [-77.412579042469, 34.67023254223674], [-77.41251468691601, 34.67030840778636], [-77.41244614955552, 34.670389203164405], [-77.41242038075785, 34.6704195806238], [-77.4123132563974, 34.6705458639021], [-77.41207052454388, 34.67083200522312], [-77.41205466191826, 34.67085070472358], [-77.41204746807543, 34.67085918512677], [-77.4120283342985, 34.67088174050331], [-77.41178167811239, 34.67117250575781], [-77.41166631632643, 34.67127391024918], [-77.41159328838086, 34.67127784371179], [-77.4113686641548, 34.671244979973295], [-77.41128594386556, 34.671232877546004]], [[-77.38756259292033, 34.62431409514445], [-77.38756531494562, 34.62430764277782], [-77.38772981846081, 34.624045477999104], [-77.38780230759482, 34.62402728629488], [-77.3878249838084, 34.62413426349079], [-77.38785479637765, 34.62427490834089], [-77.3877624194566, 34.624380388047115], [-77.38771299954371, 34.624454418445566], [-77.38764301458285, 34.62451771741262], [-77.38756527470635, 34.624588030407814], [-77.38737661657774, 34.62455611467491], [-77.38744669424513, 34.624461455431685], [-77.38756081132452, 34.624317282438696]], [[-77.42441762561376, 34.52754459645645], [-77.42442153706156, 34.52780469654398], [-77.42419784695196, 34.5279485305967], [-77.42417483914082, 34.5282116303782], [-77.42418640112177, 34.52843987254097], [-77.4244049301043, 34.528520264198704], [-77.42448226288525, 34.52882728301121], [-77.42447937589509, 34.52888720662214], [-77.42446790832831, 34.52895555510424], [-77.4245734691705, 34.5290165436118], [-77.42476799335925, 34.52933516930195], [-77.4250097555902, 34.52951092908516], [-77.42514814016263, 34.52964739583987], [-77.42519039091071, 34.529763791743996], [-77.42523026764769, 34.52982682505207], [-77.42520620783831, 34.52992388083009], [-77.42502180853786, 34.530033007609376], [-77.4249901774301, 34.53006717282531], [-77.42483443187417, 34.53012683453029], [-77.42454855601393, 34.53014302131446], [-77.42414566191553, 34.5301658318659], [-77.42313710447621, 34.530159764922466], [-77.42297848711029, 34.53014512151589], [-77.42291187728466, 34.53013486761327], [-77.42285857096469, 34.530100880801406], [-77.42280844178302, 34.530000049915934], [-77.42266834458081, 34.52935340291853], [-77.42251548110687, 34.52917110133023], [-77.42243152698151, 34.528823795757376], [-77.42235202502445, 34.52862710723736], [-77.42237238754848, 34.528212413121196], [-77.42230623587572, 34.528178796665856], [-77.42232061221732, 34.52777680516503], [-77.422310944918, 34.527731608690004], [-77.42227944479373, 34.52771608756099], [-77.42230375507313, 34.52752034046627], [-77.42230213492178, 34.527488039141545], [-77.42235085633345, 34.527420458165864], [-77.42241397821579, 34.52732563394833], [-77.42258812999636, 34.527201855244], [-77.42265249461656, 34.52714085789498], [-77.42284179323443, 34.527036997553026], [-77.42305043388652, 34.526894757495995], [-77.42345455099549, 34.52658692182718], [-77.42366296592589, 34.52644298016405], [-77.42374515633527, 34.526300068597074], [-77.42385419389183, 34.526046022341475], [-77.42421657441747, 34.52623191825617], [-77.42423514340013, 34.52623383892502], [-77.42419548188592, 34.52645349550996], [-77.42417032901128, 34.52648344739943], [-77.42421059502522, 34.52670910972329], [-77.4242125243686, 34.52673400422403], [-77.42414605979836, 34.526976642645735], [-77.42413943193223, 34.52727242294422], [-77.42422251055567, 34.527455277796484]], [[-77.2403183909576, 34.601933518788336], [-77.2403067731128, 34.601942942218365], [-77.23969899529864, 34.60235930266478], [-77.23957701824574, 34.60258883143521], [-77.23922867562165, 34.60308116573646], [-77.23975474114334, 34.60305831720733], [-77.24000861524317, 34.60315667037056], [-77.240216364559, 34.60315754994233], [-77.2402980290318, 34.6030483611394], [-77.24024435001613, 34.60287364061778], [-77.24017789091255, 34.60272593826534], [-77.24033335765634, 34.602409305146836], [-77.24032633754483, 34.60194058754214], [-77.24032737272962, 34.60193523302069]], [[-77.30116797488728, 34.55923614960457], [-77.30085216203992, 34.55942346446611], [-77.3013851028507, 34.55968769612532], [-77.30157799627145, 34.55943587267878], [-77.30155185510964, 34.559323069365774], [-77.30139592424379, 34.559228739896824]], [[-77.30792728053983, 34.548652834816515], [-77.30780971006398, 34.54863263550635], [-77.30788915893957, 34.54859663750701], [-77.30792842865986, 34.54860398778254], [-77.30864984737364, 34.54797337288488], [-77.30919823295503, 34.547655438721634], [-77.30923937884596, 34.54826052937229], [-77.30819996521298, 34.54857661068935]], [[-77.39995205416227, 34.58152487565597], [-77.40018094601739, 34.58170592271366], [-77.40019840622253, 34.581717157486594], [-77.4002280941863, 34.58173168789164], [-77.40043797891266, 34.581849012837566], [-77.4005749666859, 34.58197447437691], [-77.40069909737639, 34.58195454337474], [-77.4009689937767, 34.581949665424496], [-77.40113070744194, 34.58177569023309], [-77.40120616054405, 34.581759576227945], [-77.40136302209288, 34.5817499484288], [-77.40153964448646, 34.58173274579634], [-77.40170529168658, 34.581518525554685], [-77.40173660327049, 34.58149197628291], [-77.40212903904002, 34.58103279924656], [-77.40170462120338, 34.580725968690444], [-77.40167632364091, 34.58067355569665], [-77.40150914446357, 34.58054023940135], [-77.40136303461733, 34.58041568026265], [-77.40130315538443, 34.580367354755154], [-77.40120487088633, 34.58031701473497], [-77.40096901976929, 34.58011187199102], [-77.40085803091714, 34.58006208748901], [-77.40077201143686, 34.58007409637184], [-77.40059643626404, 34.580003333643916], [-77.40057500401015, 34.57999881565206], [-77.40053446557914, 34.580032863037005], [-77.40037799191909, 34.58015168037623], [-77.40030813318698, 34.58015885216853], [-77.40018098092345, 34.58022963175155], [-77.39986324202519, 34.580428409890835], [-77.39978695675288, 34.58042084083459], [-77.39973564936335, 34.58047373769072], [-77.39970564100454, 34.58053335203984], [-77.39964963000315, 34.580689399357674], [-77.39965349061919, 34.581390024847956], [-77.3997869251106, 34.58153733290659]], [[-77.35789135665274, 34.53653583742108], [-77.357596510285, 34.53702622740834], [-77.35758379379247, 34.537118105587474], [-77.35765893951447, 34.53722075113962], [-77.35777352388646, 34.537457259022204], [-77.35786208848828, 34.53751934841644], [-77.35804296583595, 34.5375931012334], [-77.35820137496609, 34.53747049327751], [-77.35829614528836, 34.537366687010994], [-77.35844152468093, 34.53733110761522], [-77.35860141961413, 34.53731341962915], [-77.35883606212309, 34.53724461294716], [-77.3590008710067, 34.53725246914343], [-77.3590459101131, 34.5372347921468], [-77.35907991292072, 34.53719264541472], [-77.35916452148415, 34.53708697691782], [-77.35919076735333, 34.53705691083106], [-77.35921929242558, 34.536966465611485], [-77.35921743746553, 34.53695694483681], [-77.35923621497051, 34.53691280884169], [-77.35926433823087, 34.536844340861606], [-77.35926404943584, 34.53682782047283], [-77.35931094451375, 34.53677640836989], [-77.35937896643452, 34.53665175002334], [-77.35944031534132, 34.53657107890481], [-77.35944775435593, 34.53656103802744], [-77.35945715813348, 34.53655518767377], [-77.35945356062595, 34.536547777708], [-77.35944214741889, 34.53649104957084], [-77.35943474214652, 34.53644133199967], [-77.35943343198672, 34.536429883501164], [-77.35938293045822, 34.53632105277912], [-77.35934407648594, 34.53626857643659], [-77.35933128058811, 34.536083666719904], [-77.35948128605823, 34.535956429649644], [-77.35948527364386, 34.53593907866325], [-77.3594963252615, 34.53591196557695], [-77.35950437457731, 34.53581391592894], [-77.3595126352271, 34.53572331450618], [-77.35960638883016, 34.535587282656294], [-77.35956455132504, 34.53556042577413], [-77.35958090202197, 34.535508164093095], [-77.35966116786645, 34.53549743443589], [-77.35972881998542, 34.5353317737027], [-77.35974872158238, 34.535289079286414], [-77.35977541695124, 34.53510607863669], [-77.35983837144425, 34.53503134444739], [-77.35996296612156, 34.53494897383149], [-77.36000617778474, 34.534884766190835], [-77.36003392313958, 34.53485931803145], [-77.36006994227861, 34.53478840867773], [-77.36008507746274, 34.53476002589068], [-77.36009021190047, 34.53475025196896], [-77.36009374216188, 34.53473565290871], [-77.36014030779474, 34.53462062527281], [-77.36015839634375, 34.5345473347639], [-77.36017616616415, 34.534493048882986], [-77.3602281639983, 34.534392529969054], [-77.36022826664922, 34.53433296569231], [-77.36027779353236, 34.534282408886966], [-77.36029658852424, 34.53423088190068], [-77.36032397563184, 34.53413117031576], [-77.3603641270382, 34.53404823959154], [-77.36028607172014, 34.533987572014055], [-77.360225555097, 34.533834907585856], [-77.36026521480846, 34.533745751441145], [-77.36023648771715, 34.53366209182558], [-77.36026265618361, 34.533356223312744], [-77.36022965803723, 34.53326122339146], [-77.36025615019145, 34.53316445076886], [-77.36023164218818, 34.53284439253129], [-77.36029222966948, 34.53276256315964], [-77.36058795189325, 34.53252104428523], [-77.36091430697424, 34.5321972908133], [-77.36093047223642, 34.53219098625348], [-77.36093418761446, 34.53218045874235], [-77.36101090601352, 34.532110399623676], [-77.36110235477526, 34.532026260226864], [-77.36122411417882, 34.53189387701222], [-77.36125045017221, 34.53184995878307], [-77.36131699003099, 34.53175347398417], [-77.36137172120873, 34.53166060435928], [-77.36135795676451, 34.5316297752728], [-77.36143959869219, 34.53154452476684], [-77.36134712248955, 34.53140026630836], [-77.36133494852692, 34.5313882644928], [-77.36133167338876, 34.53138483687015], [-77.36098318674071, 34.53119410324505], [-77.36097030374994, 34.53117561079293], [-77.36093880432831, 34.531126458348446], [-77.36065983146548, 34.53092785873593], [-77.36032721932459, 34.53079892904634], [-77.360163165635, 34.530715055152], [-77.36008614185532, 34.530833649347066], [-77.35999440303073, 34.531238725490866], [-77.35994593003775, 34.5313434907268], [-77.359827753029, 34.53155768105131], [-77.35961248361492, 34.5318811606272], [-77.35964475877992, 34.53206205482796], [-77.35947654246453, 34.53239038420809], [-77.35932982765131, 34.53290007803866], [-77.35933030150395, 34.532901095320774], [-77.35932959693639, 34.532902168250715], [-77.35932802059772, 34.53290298722039], [-77.35882447345162, 34.53346358592563], [-77.35865688035014, 34.53356828260963], [-77.35852430338142, 34.53371702591267], [-77.35800418469692, 34.53390343787361], [-77.3576566231088, 34.53407500331908], [-77.35763074006503, 34.53418608712983], [-77.35741824393408, 34.53464537601481], [-77.35754993826892, 34.5350165783528], [-77.35758413528258, 34.535111136134816], [-77.35763062657675, 34.53515166897103], [-77.35770289271555, 34.53530255094485], [-77.35778844847488, 34.53551496864231], [-77.3578543590476, 34.53556187258815], [-77.3578857498401, 34.53592407343652], [-77.35799963364516, 34.53603060075544], [-77.35793996979561, 34.53619987357609]], [[-77.34580941861961, 34.57471093740942], [-77.34581036346587, 34.57471102077834], [-77.34581308062205, 34.57471164807975], [-77.34601819290467, 34.57488160595291], [-77.3462033399174, 34.57483214998077], [-77.3464547320427, 34.57489026965814], [-77.34659728376543, 34.574921306953094], [-77.34672331579131, 34.57486949359222], [-77.34699113049182, 34.57515760685864], [-77.34707928258531, 34.57528352233253], [-77.34710914569732, 34.57537430207782], [-77.34709956253668, 34.57549275763263], [-77.34699090009319, 34.575503826560016], [-77.34683507398826, 34.57558157611457], [-77.34659674182242, 34.57573001776215], [-77.34634043619927, 34.57563318651104], [-77.34620282870942, 34.57558957508625], [-77.34617156496353, 34.57554289441395], [-77.34613488977489, 34.57551444915254], [-77.34572205714882, 34.575243029813535], [-77.34559774688972, 34.575167168042974], [-77.34541522725024, 34.57498579491529], [-77.34528512781273, 34.57492781658729], [-77.34521825945002, 34.57493558062584], [-77.34502545596533, 34.574824940733265], [-77.34502358589324, 34.57482278436586], [-77.34502134021587, 34.574815247623725], [-77.34492618074569, 34.57462694743203], [-77.34502151919665, 34.574555660502], [-77.34519136152122, 34.574588804363586], [-77.34521176184367, 34.57459312482152], [-77.34521849121806, 34.57459824143785], [-77.34523043071997, 34.574596048082896], [-77.3454154658208, 34.57463734181519], [-77.34551038155473, 34.57465290360756]], [[-77.45161151309675, 34.609811662813954], [-77.45143179727569, 34.60985059906694], [-77.45148482207296, 34.60996657594899], [-77.45166910326614, 34.60993362986566]], [[-77.342287169533, 34.551106136977644], [-77.34242060788034, 34.551126891305124], [-77.34255376115512, 34.55114580590652], [-77.34271842134935, 34.55114658305553], [-77.34281276293875, 34.55114728293187], [-77.34286017721416, 34.55115534694886], [-77.34297154729424, 34.551145582229125], [-77.34300963690714, 34.551122976993646], [-77.34316682465713, 34.55111642615146], [-77.34320692164609, 34.55108086786586], [-77.34341939644227, 34.55099095775199], [-77.34369274269766, 34.5508204417131], [-77.343645762612, 34.550561042053886], [-77.34367904724569, 34.55033277363545], [-77.34349047955821, 34.5500319790546], [-77.34346378506964, 34.54987410230627], [-77.34339563956307, 34.549784881146074], [-77.34323691103877, 34.54978154665218], [-77.34277979229819, 34.54948285851151], [-77.34257035503143, 34.54944384321027], [-77.3424603303672, 34.54940657677132], [-77.34234513895527, 34.54937287782154], [-77.34217107637643, 34.54938981425687], [-77.34206493920716, 34.54952666038217], [-77.3419453324189, 34.54960289312784], [-77.3420267793308, 34.54981637373436], [-77.34197373815019, 34.54989518698975], [-77.34180106817976, 34.550113281279025], [-77.34188775808019, 34.550245501379976], [-77.34194608289178, 34.55039879385333], [-77.34177685712035, 34.550606400937184], [-77.34174910273035, 34.550674807854655], [-77.34183866970423, 34.55084232854626], [-77.3419295770353, 34.550893966188724], [-77.34203331459483, 34.55089599003445], [-77.34211970223397, 34.55099148154968], [-77.3422149937771, 34.55103301598971]], [[-77.32114010774286, 34.69803890040675], [-77.32096783089821, 34.69805754037562], [-77.3205519400366, 34.6980027205975], [-77.32014902739067, 34.69803390607915], [-77.32006872904806, 34.697960820886784], [-77.32046671569395, 34.69725715977839], [-77.32093820868434, 34.697292148517704], [-77.32140243307299, 34.697136678883204], [-77.3216214808343, 34.6970044272669], [-77.32182295002333, 34.69700581300425], [-77.32205036169654, 34.69696729027977], [-77.32227691503404, 34.69701127479112], [-77.32231676691744, 34.697020119974596], [-77.32232981790162, 34.69703567677347], [-77.32248006458727, 34.69722711794004], [-77.32246819069245, 34.69729775384191], [-77.32253295133722, 34.697366577928605], [-77.32261382558953, 34.6975798398349], [-77.32265575652652, 34.69769040632116], [-77.32272953187372, 34.69788494573003], [-77.32293311211879, 34.69804939974809], [-77.32298524035748, 34.69808237777936], [-77.3233879936866, 34.69854402569324], [-77.32340542522633, 34.69854740941132], [-77.32342664026194, 34.69855949314464], [-77.3234598872018, 34.698634991069966], [-77.32331555191465, 34.69879319594938], [-77.32335648825867, 34.69858504606643], [-77.32275554431212, 34.698660150652366], [-77.32274576144191, 34.698652803850564], [-77.3225005292056, 34.69845515865072], [-77.32225215903301, 34.69833235834737], [-77.32205828436093, 34.69825964890953], [-77.3220271026261, 34.698031073216946], [-77.32172642204168, 34.69808145344487], [-77.32142540502701, 34.69810749228493]], [[-77.31845718981631, 34.69802872360249], [-77.31794905480018, 34.69801457828369], [-77.31755769536684, 34.69800544459881], [-77.31738547641112, 34.697925172991965], [-77.3174901059991, 34.697579361352894], [-77.31758937660784, 34.69740987585501], [-77.31765848444522, 34.69732025218704], [-77.31779521718076, 34.69718865898932], [-77.31806809676071, 34.69713488112792], [-77.31844242588095, 34.69702179497865], [-77.31870589162736, 34.69697230722019], [-77.31875963344581, 34.69699715392499], [-77.31906117817947, 34.69695278072957], [-77.31910443140029, 34.69695862313046], [-77.31924588296677, 34.697017292706555], [-77.31934522646328, 34.69700537445535], [-77.31945830436345, 34.69700120212434], [-77.31952045769364, 34.69700317522878], [-77.31962724149378, 34.697064961067], [-77.31968740207687, 34.69707182901822], [-77.31993384026453, 34.69708866236495], [-77.32000141185084, 34.69722442364621], [-77.31989642061598, 34.69802831255078], [-77.31935063527027, 34.69801622480352], [-77.31925358450898, 34.69809662370441], [-77.31883656873823, 34.698120225536506], [-77.3187450530614, 34.698039924468624]], [[-77.43130943704313, 34.58372902414532], [-77.43101665110387, 34.58407839391242], [-77.4310603987633, 34.58422811843804], [-77.43102745308849, 34.584501422320116], [-77.43116967563306, 34.58463180576551], [-77.43130975525408, 34.584632953148315], [-77.43153375660927, 34.584669592545076], [-77.43170382666393, 34.584739765093936], [-77.43180442413427, 34.58470528536757], [-77.43209789049091, 34.58482286381752], [-77.43259078839375, 34.58427542787469], [-77.43244008573667, 34.583928129554316], [-77.43243117702549, 34.58387391157691], [-77.43209743791708, 34.58357105679947], [-77.43205231685087, 34.583552703491954], [-77.43137952285468, 34.58367689003583]], [[-77.34298474462963, 34.684180400166156], [-77.34269586734412, 34.68410150947088], [-77.34257682183407, 34.684010183789724], [-77.34234109808502, 34.68398034606604], [-77.34228399214749, 34.68398799242899], [-77.34215480024767, 34.68380691285766], [-77.3420956075493, 34.6837750928088], [-77.3420594844066, 34.68373057401758], [-77.34192267332267, 34.683726371367264], [-77.34173970479873, 34.68365480118841], [-77.34152932375216, 34.68349512119853], [-77.3414362502975, 34.68349415085878], [-77.34093505290619, 34.68348892508338], [-77.34093257106097, 34.683488937194895], [-77.34092953376951, 34.68348990790801], [-77.34030797364332, 34.683578609454585], [-77.3402827780612, 34.68357640566077], [-77.34038506859187, 34.68331319657311], [-77.34046602275674, 34.6830729913276], [-77.34076823787294, 34.68302241922693], [-77.34108401288063, 34.68296755725083], [-77.34111132483733, 34.68297534342211], [-77.34094917073799, 34.68347479751559], [-77.34163557186612, 34.68312932381205], [-77.34207311215529, 34.68333074494201], [-77.34209515568921, 34.683381282898054], [-77.34216806071542, 34.683356753467564], [-77.34227516989806, 34.68340060440674], [-77.34247451536123, 34.683483522686565], [-77.34270778228934, 34.68355928678017], [-77.34274613400058, 34.683668669086195], [-77.34305174136281, 34.68368382838326], [-77.343130501256, 34.68376705511899], [-77.34325139761373, 34.683748420760026], [-77.3433769250619, 34.68388289207748], [-77.3434399039977, 34.683923127035854], [-77.34350036323258, 34.68392163784188], [-77.34356626286458, 34.68397875312432], [-77.34359282457828, 34.68400253328666], [-77.34361646099981, 34.68403711832782], [-77.34366701537135, 34.68408677089206], [-77.3436262996448, 34.68417385494166], [-77.34367931448742, 34.68432655572385], [-77.34346969153346, 34.6842943672883], [-77.34339567819734, 34.684282080106776], [-77.34322027536615, 34.6842386792638], [-77.34311578391194, 34.684215349048266], [-77.34308856044365, 34.684193490069255]], [[-77.42478933833303, 34.51925625321415], [-77.42496452180748, 34.51988472338775], [-77.42486100885361, 34.52001765467142], [-77.42476479352777, 34.52036597630032], [-77.42446438895317, 34.520873969300844], [-77.42443028175961, 34.52105930344453], [-77.42460719439133, 34.521121620204035], [-77.42454228222982, 34.52140836584573], [-77.4242069177942, 34.52158128356382], [-77.42423297954852, 34.52175458606433], [-77.42369206523759, 34.52181526096479], [-77.42342709862703, 34.52136292756338], [-77.4233524636913, 34.52121512410448], [-77.42333349405376, 34.52112100917329], [-77.42317907009793, 34.521083555900546], [-77.42259076009768, 34.52071793954438], [-77.42240336446874, 34.520667177344336], [-77.42214334986731, 34.52041054157192], [-77.4221336725549, 34.52009836467772], [-77.42219654374833, 34.51977176456776], [-77.42291465994126, 34.51950640680869], [-77.42321481676007, 34.51946873782892], [-77.42375014382156, 34.51953375872177], [-77.42455697870642, 34.51922759438146]], [[-77.41300887128043, 34.66943946296349], [-77.41307028717816, 34.66924924249924], [-77.41318536345102, 34.66909837065098], [-77.41323314209535, 34.669058234302305], [-77.41323859031158, 34.66902858695273], [-77.413265485828, 34.668994358164156], [-77.413354724976, 34.66888307619602], [-77.41354962454534, 34.668857883288425], [-77.41356409024417, 34.668851523225754], [-77.41360290231607, 34.6688535659746], [-77.41387636710878, 34.66892463299791], [-77.41395503685744, 34.66899976482995], [-77.41382623421389, 34.669206727495194], [-77.41381217191586, 34.669229323200774], [-77.4138035258511, 34.66924321596244], [-77.41377412703491, 34.6692777964017], [-77.41353495520315, 34.66955197211834], [-77.41340236640957, 34.66964501736345], [-77.41321492880301, 34.66977655345934], [-77.41293142640752, 34.66997550137082], [-77.41281916684628, 34.66962693822542], [-77.41297641748099, 34.66949594781161]], [[-77.32400598054656, 34.69887372078595], [-77.32401683960528, 34.69912895740586], [-77.32384199819188, 34.69904168514742], [-77.32377906820845, 34.69904823733176], [-77.32352372106119, 34.69910680462238], [-77.32329698669845, 34.69906462791275], [-77.32359788583483, 34.69885170588544], [-77.32371799718307, 34.698863912562956], [-77.32388482281738, 34.69889438252342]], [[-77.454270614817, 34.68211458722051], [-77.45453949383577, 34.68200236202905], [-77.45464887173134, 34.68183430707893], [-77.45505114616057, 34.681630862386676], [-77.45517654790655, 34.68154832917679], [-77.45531880912452, 34.68150945381571], [-77.45579598311163, 34.68150892052644], [-77.45597129864757, 34.681737499712284], [-77.45610582779474, 34.681911582232686], [-77.45605070724648, 34.6822291717932], [-77.45599239252812, 34.68230387078853], [-77.45580490597389, 34.682575015301005], [-77.45536959127789, 34.68264520154662], [-77.45549607119456, 34.683059114632314], [-77.45537370038451, 34.68336539623036], [-77.45524898702934, 34.683721052710325], [-77.4549573778141, 34.68417229578865], [-77.45498124460653, 34.68362747772557], [-77.45473486632474, 34.68337701816929], [-77.45463957671541, 34.68305491787491], [-77.45459940668059, 34.68293502335378], [-77.45438595833919, 34.68262986326656], [-77.45415530472695, 34.68251355664981], [-77.45414756091624, 34.6825062074648], [-77.4541332010493, 34.68249257935779], [-77.4540459611404, 34.68233765364504], [-77.45404417575769, 34.68232616706742], [-77.45404483324923, 34.68231532964994], [-77.45420243951686, 34.68223727730265], [-77.45419799971383, 34.68219185619315]], [[-77.46619765479332, 34.476370167893016], [-77.46625512217207, 34.47638510147835], [-77.46627492615687, 34.47637409007864], [-77.46623903941274, 34.476326287760536]], [[-77.40179071168157, 34.51061933427988], [-77.40194278034073, 34.5109181341615], [-77.40210563131285, 34.51106353526323], [-77.40212246129954, 34.51111516225968], [-77.40232612055235, 34.51110455634469], [-77.40251797774692, 34.511003991903166], [-77.40283489066444, 34.51085536233978], [-77.40300202225585, 34.51044868917897], [-77.40299607577667, 34.51044527814009], [-77.40223216468122, 34.510085313376976]], [[-77.40897490858553, 34.56532087635143], [-77.40935114394345, 34.56543724451923], [-77.40958243272792, 34.56552124327357], [-77.40988706825888, 34.56563143984349], [-77.41003014331199, 34.56580033726641], [-77.41025666380298, 34.566028931300934], [-77.41085756905431, 34.5661862717638], [-77.41042302909501, 34.56667237237964], [-77.41031436220379, 34.567113873812964], [-77.41051586563898, 34.5674106028052], [-77.41066102660643, 34.56774356131953], [-77.4107598223546, 34.56789870972908], [-77.41042431757009, 34.56833696930026], [-77.41038940141112, 34.56833914816698], [-77.41003034576559, 34.56820392801012], [-77.40985230018515, 34.568221638467264], [-77.40963638806745, 34.568231725044555], [-77.40939521689171, 34.56826041402943], [-77.40924243511331, 34.56832618608453], [-77.40864920886341, 34.56820346608686], [-77.40853529960438, 34.568132834061956], [-77.4084544931367, 34.56801554951341], [-77.4082013889958, 34.56799534840722], [-77.40801449921982, 34.56792013355783], [-77.40794776790999, 34.567880162155454], [-77.40795787429289, 34.56776808041001], [-77.4079424659541, 34.56745634856375], [-77.4080097323064, 34.56707674414075], [-77.40807586136414, 34.566587930359944], [-77.4081169637475, 34.56621834768005], [-77.40845435725132, 34.56593303316731]], [[-77.34257872094578, 34.52748094703885], [-77.34277031596358, 34.52748376939897], [-77.3429272147181, 34.52745293223842], [-77.34296745899167, 34.52744541857907], [-77.34299322966694, 34.52743435552121], [-77.3430271470297, 34.52741356111757], [-77.3429969971616, 34.52740012790553], [-77.34301264701142, 34.527293237836055], [-77.3429721563021, 34.5272420170404], [-77.34290734213198, 34.527226627045], [-77.3427763506977, 34.52722248170422], [-77.34267696609614, 34.52728038082849], [-77.34263885550959, 34.52734701820222], [-77.3425743248574, 34.52747224121689], [-77.34257216061738, 34.52747775309539], [-77.34257034413457, 34.52747928491147], [-77.34257033185263, 34.527481641754584], [-77.34257412198124, 34.5274810243195]], [[-77.3353540436797, 34.6245076713779], [-77.33531080348544, 34.62431660990923], [-77.3353005148697, 34.624093022751424], [-77.33539830137519, 34.624008309857224], [-77.33563942612122, 34.623956223298094], [-77.33575689026554, 34.62396925787583], [-77.33603339968732, 34.623983254091875], [-77.33629105933234, 34.624059567344545], [-77.33636950029327, 34.62406309914753], [-77.33647337499143, 34.624067775857384], [-77.33669141028828, 34.62407228147792], [-77.33683096012342, 34.62413852643505], [-77.33715977578815, 34.624259847767256], [-77.33731320203944, 34.62433165543356], [-77.33736796716511, 34.62490324031163], [-77.33724487074849, 34.62509216030648], [-77.33722015815742, 34.625111282763264], [-77.336942803151, 34.62517346844914], [-77.33692283577844, 34.62522453831084], [-77.33688580154296, 34.625177926130945], [-77.33659660367563, 34.62519385860528], [-77.33652694203701, 34.62519069390973], [-77.33631257807963, 34.625164931383125], [-77.33624933046879, 34.6250584094506], [-77.33607563459036, 34.625030905592624], [-77.33584877821406, 34.624935279339624], [-77.3355192872728, 34.62461074474666], [-77.33545954643077, 34.62455798894787]], [[-77.23857129171228, 34.603730217325875], [-77.23868745469127, 34.60369362008075], [-77.23863688338639, 34.603600670435604], [-77.2385457556734, 34.6036824496847]], [[-77.38776648659649, 34.65990959482615], [-77.38787728110032, 34.65987835300672], [-77.38799831377662, 34.65986509959213], [-77.38819507239187, 34.659814029252345], [-77.3883961893466, 34.65990580653391], [-77.38812691031083, 34.66004923402565], [-77.38792873830867, 34.66005338880288], [-77.38782782526455, 34.660049006489736], [-77.38771058970288, 34.66008676185127], [-77.38769940817745, 34.66000170987992]], [[-77.39943346877706, 34.52989884126852], [-77.39890209478459, 34.5302974145755], [-77.39863656177596, 34.53042879731933], [-77.39833982300469, 34.530520646225355], [-77.3981516264658, 34.530542838358016], [-77.39810381533385, 34.53040589348858], [-77.39804206716047, 34.530257763095705], [-77.39825216322276, 34.53006700806048], [-77.3983464536189, 34.53002725040534], [-77.39864973932275, 34.52984119675166], [-77.39890883627449, 34.52964297732946], [-77.39921755675704, 34.529457562975594], [-77.39944470779353, 34.52939747340486], [-77.39985084840792, 34.52925563730851], [-77.39990992709582, 34.529498466711026], [-77.39971680065541, 34.52970030348407]], [[-77.45109544057314, 34.74203981081843], [-77.4512851475281, 34.74246455345174], [-77.4511034741827, 34.7426446161387], [-77.45135694041056, 34.74282354315859], [-77.45143074924444, 34.74292688851862], [-77.45164662101485, 34.74305473947542], [-77.45194574962103, 34.74336323971664], [-77.45197357000936, 34.74345907105108], [-77.45198618172944, 34.74351189162487], [-77.4521629710334, 34.74382646183915], [-77.4523787463882, 34.7440831487086], [-77.45246481242297, 34.74414692748203], [-77.45295670786736, 34.74430183515425], [-77.45307015330846, 34.74444943877231], [-77.45288491520333, 34.74455007476402], [-77.45245684464614, 34.74437757380811], [-77.45229962068241, 34.74435673755484], [-77.45213139334157, 34.744286073652766], [-77.4520137457369, 34.74423665570771], [-77.45185474970077, 34.74414201002769], [-77.45174207444116, 34.74406746529009], [-77.45149205894975, 34.74389832100038], [-77.45127466668791, 34.74375074181363], [-77.45124322501388, 34.743575258823725], [-77.45107358450991, 34.743614066578154], [-77.4508893294988, 34.74346511952721], [-77.45080120956726, 34.74337754806281], [-77.45072647483909, 34.743309866476956], [-77.45070963958472, 34.74320316917556], [-77.45067699816488, 34.743107298597884], [-77.45066247372822, 34.74304959524322], [-77.45067438219573, 34.74296227453941], [-77.45084772963493, 34.74255529762579], [-77.45092294695793, 34.74211179679912], [-77.45076295284954, 34.74196669012136], [-77.4504956304256, 34.74172618694278], [-77.45024588183763, 34.74150149176389], [-77.45024222289874, 34.741493887371654], [-77.45018599655597, 34.741206183163186], [-77.45014674282022, 34.741096434969855], [-77.4500673448814, 34.74099008318436], [-77.44991299403559, 34.740747553726976], [-77.44982240835887, 34.740520192080886], [-77.44972323936052, 34.74038031423075], [-77.44968243581273, 34.740191802997494], [-77.44967457351089, 34.74017740948682], [-77.44966639676844, 34.74015948983518], [-77.44947706689807, 34.740036618844776], [-77.44926662273184, 34.739916179311734], [-77.44913018718415, 34.739796565851734], [-77.44903000471407, 34.739776758543016], [-77.4485953605096, 34.739567585977866], [-77.4485573911647, 34.73956014364619], [-77.4483363961148, 34.73961978428358], [-77.44818421973201, 34.739643740938526], [-77.44791270538718, 34.73957226133302], [-77.4477384954069, 34.73966342264277], [-77.44745004932147, 34.73969156280302], [-77.44722738363342, 34.73972485464542], [-77.44673528521938, 34.73944189413736], [-77.44669944014339, 34.739410041608444], [-77.44683335047603, 34.738932880179625], [-77.44684248504443, 34.738920330062015], [-77.44711421186189, 34.738643987208945], [-77.4472346331078, 34.73849830047945], [-77.44758585920606, 34.73848558095199], [-77.44790484929607, 34.73844002491059], [-77.44793613781255, 34.73844754095335], [-77.44822088231122, 34.738506842376765], [-77.44839834404686, 34.73862528190096], [-77.44844085492454, 34.738683341011246], [-77.4485729406607, 34.73896576973405], [-77.44861063154566, 34.73937607872969], [-77.44863727988823, 34.739494221823584], [-77.44918944043826, 34.73959170855263], [-77.44941927087693, 34.73961431045214], [-77.44954724104464, 34.73962689514661], [-77.44979767340413, 34.739705614903976], [-77.44983654274698, 34.7397255383709], [-77.44997968304689, 34.73982686568385], [-77.45006090021398, 34.739903942480346], [-77.45015126572967, 34.74007605156368], [-77.4502083898787, 34.74017784945986], [-77.45027327133032, 34.740278105952285], [-77.45037365909614, 34.7404332267863], [-77.45038542725726, 34.74055039647433], [-77.45049483964337, 34.7406204766809], [-77.45060736574209, 34.74079435211394], [-77.45066334121012, 34.74088084553459], [-77.45071713786292, 34.7409603298009], [-77.45084105016022, 34.74115546839187], [-77.4508176019331, 34.741262898589554], [-77.45086017036158, 34.741441645249935], [-77.45106906446901, 34.74196046368062]], [[-77.34151717674433, 34.68559765259005], [-77.34096941662028, 34.685431696515764], [-77.34129391771134, 34.68508386912577], [-77.3416274636815, 34.685217959802], [-77.34171284475715, 34.685252094080774], [-77.34189998686334, 34.68530400889216]], [[-77.342978382253, 34.53819261790513], [-77.34341835621115, 34.53818312004445], [-77.34350462537799, 34.53818304759713], [-77.34355931578322, 34.53814256485856], [-77.3438989493336, 34.538106817902765], [-77.34402415604798, 34.53804216257075], [-77.3442176208757, 34.53796622200839], [-77.34429667751758, 34.53788301326877], [-77.3443860305631, 34.53779980515974], [-77.3445346657578, 34.53772389242067], [-77.3445852937781, 34.53764840682402], [-77.34472179419296, 34.53745214823047], [-77.34457827383544, 34.53730549169545], [-77.3445097500576, 34.53723783822452], [-77.34431612086325, 34.53704034014012], [-77.34430334148267, 34.5370308235627], [-77.34429214443846, 34.53702432776282], [-77.34412030744282, 34.53692796801918], [-77.34392457949826, 34.53699623414571], [-77.34387218973808, 34.53705289199865], [-77.34382533224696, 34.537091490978796], [-77.34377358492881, 34.53712909036921], [-77.34372349056848, 34.53720460762438], [-77.34371079771478, 34.53722272406792], [-77.3435233874045, 34.53737023224004], [-77.34350925981033, 34.53737301391819], [-77.34332633601163, 34.5374036259842], [-77.34332335147101, 34.537406714400696], [-77.34330733230186, 34.53741083590017], [-77.34322699126037, 34.53745579777947], [-77.34321970750776, 34.53748045978928], [-77.34312652416062, 34.53755657679943], [-77.34312368892114, 34.53755966599796], [-77.34311323963105, 34.537569271345404], [-77.34306479078961, 34.53765344415809], [-77.34302563035035, 34.537675826739516], [-77.34300986004077, 34.53769845178284], [-77.3429746255599, 34.53773375088637], [-77.34292529057973, 34.53777106937102], [-77.34292460855, 34.53777192136427], [-77.34292159178068, 34.53783213270436], [-77.34292067561263, 34.53783369193683], [-77.34290356883325, 34.537848583388644], [-77.34295477660896, 34.53795119533091], [-77.34282253486836, 34.5381512378903]], [[-77.44412151634384, 34.73051387732446], [-77.44393123005663, 34.730455462085295], [-77.44377341314888, 34.73036343292428], [-77.44357179291289, 34.730197942610275], [-77.44319880051115, 34.730156803995456], [-77.44335346311632, 34.72987523337657], [-77.44352993864265, 34.72980002450187], [-77.44370975200694, 34.729721046654745], [-77.44388846201963, 34.729638017119605], [-77.44406525383582, 34.729564901871754], [-77.44425369544231, 34.72948696886269], [-77.4449000122345, 34.72944687217388], [-77.4448159221235, 34.73032966539955], [-77.4448105803304, 34.73038431883841], [-77.44480955155512, 34.73039484448074], [-77.44476633410254, 34.73050108887212], [-77.44477879172808, 34.73039029581868]], [[-77.35179612988561, 34.684193350490965], [-77.35148681076186, 34.6842449206201], [-77.3511987209284, 34.684291477431834], [-77.35116369843499, 34.68428590314851], [-77.35115732524118, 34.68427705147852], [-77.35103287538246, 34.684189494329544], [-77.35103683377497, 34.684147948306126], [-77.35117378808897, 34.684081043326344], [-77.35120830288807, 34.68417341505025], [-77.3514037657475, 34.68410113873967], [-77.35152534311283, 34.68411220247076], [-77.35175336814322, 34.68414494183224], [-77.35192026937578, 34.68409780699855], [-77.35180632180032, 34.684191890076605]], [[-77.33651529709503, 34.53912225504903], [-77.3368053204888, 34.53929210498375], [-77.33684049058985, 34.53929828350386], [-77.336870539731, 34.539315984269926], [-77.33719458212053, 34.539435041164715], [-77.33733597382688, 34.539406107605586], [-77.33751286035145, 34.53946842593794], [-77.33758544116084, 34.53950903747286], [-77.337639870505, 34.53945015954102], [-77.33780516927365, 34.53931580655306], [-77.33767888769859, 34.53919973064471], [-77.33766546037, 34.53915684496595], [-77.33768443445852, 34.53907652426503], [-77.33766905927845, 34.53900113984385], [-77.33765128475439, 34.53895888309828], [-77.33763887060621, 34.538935627827435], [-77.33760033729692, 34.53886566129968], [-77.33745345316835, 34.538834567389], [-77.33747321383068, 34.538739675645814], [-77.33747524331471, 34.538658378601596], [-77.33744087603, 34.53860275013289], [-77.3372898649279, 34.53852122720605], [-77.3372644486029, 34.53849488915435], [-77.33721747812137, 34.53844634669305], [-77.33712345782692, 34.538360219876665], [-77.33708184607792, 34.538306326539036], [-77.3370257508269, 34.53824960614314], [-77.33694333842921, 34.53825515226587], [-77.3368307903732, 34.538192489830834], [-77.3365946228973, 34.53822965096442], [-77.33643387538294, 34.53838018306813], [-77.33627371423405, 34.53857022730109], [-77.33615434497105, 34.53868452859203], [-77.33626275619946, 34.538770020694024], [-77.33630843875585, 34.538907186136676], [-77.33641953858259, 34.53899902195269], [-77.3364637759114, 34.539100609047026]], [[-77.33565853173063, 34.533799385210116], [-77.33566826141961, 34.53385809317006], [-77.33516565233705, 34.534056221146415], [-77.33496242649662, 34.5341181083745], [-77.3346091788944, 34.53425521115384], [-77.33458863040055, 34.53427208792423], [-77.33449663374655, 34.53431423788587], [-77.33450077976302, 34.53422931317972], [-77.3343710802636, 34.534044632567664], [-77.33435809895568, 34.53393638981749], [-77.33423469010042, 34.5338194291178], [-77.33449011742387, 34.53372730244777], [-77.33490437824867, 34.53347831097265], [-77.33497842531305, 34.533428111471565], [-77.33499543311835, 34.533454232173106], [-77.33501372554797, 34.53346258657105], [-77.335366892011, 34.53360402138671], [-77.33542793906499, 34.533609682143364], [-77.33546308146308, 34.53364278310704]], [[-77.43472806782846, 34.73815517585514], [-77.43459940555798, 34.738556167569676], [-77.43468517316683, 34.738751557717436], [-77.43496735629533, 34.73868473915388], [-77.43504180891524, 34.73836514675389], [-77.43503762742196, 34.738150252602026], [-77.43496259824609, 34.738057335210854], [-77.43493427042903, 34.737890883516215], [-77.43469068026786, 34.737791578667476], [-77.43462108511847, 34.7380046998609]], [[-77.36369291851439, 34.773448455900784], [-77.36365942430963, 34.77357644871562], [-77.36365418294744, 34.77358183116573], [-77.36329477442366, 34.77373308799988], [-77.36322783240331, 34.773984636061215], [-77.36320949748556, 34.774008391063354], [-77.3629817088285, 34.77389850506325], [-77.36305040980851, 34.773827411291514], [-77.36321624958343, 34.77360465249885], [-77.36348749414861, 34.773516281824506]], [[-77.35782804669851, 34.54697490304068], [-77.35750381751285, 34.54691602083665], [-77.3574370376804, 34.546905363227], [-77.35739314858229, 34.54691735651498], [-77.35732840945712, 34.546899479952664], [-77.35713914072855, 34.546868203728124], [-77.35704577572626, 34.54684688467185], [-77.35687512532942, 34.546964741151186], [-77.35676766479276, 34.54705457642902], [-77.35666934382512, 34.54723919100911], [-77.35664304992514, 34.547288562344825], [-77.35653427463963, 34.54743776165653], [-77.35647459054411, 34.54751205241478], [-77.35639935142078, 34.54766940725816], [-77.35633365924895, 34.54777716497461], [-77.35639276719441, 34.54786565473786], [-77.35647677553797, 34.54800138389413], [-77.35654279506521, 34.54804360432081], [-77.35649399108023, 34.54816328087364], [-77.35631335906089, 34.54826973347123], [-77.35626597832818, 34.54830071030798], [-77.35622677423532, 34.54832108368312], [-77.3560307807054, 34.548434643885344], [-77.35600943424052, 34.54844721331647], [-77.35582886124226, 34.54855238713869], [-77.35580127442812, 34.54857134656881], [-77.35577418812035, 34.54859217732832], [-77.35570925123407, 34.54867436738802], [-77.35564662838011, 34.54874447430997], [-77.35562766412762, 34.54876570490609], [-77.35552801751014, 34.548872438735465], [-77.3554897388105, 34.54891651055987], [-77.35547021919908, 34.54894196498778], [-77.3554262340482, 34.548989135614505], [-77.35541322503887, 34.549003468325225], [-77.35538678717941, 34.54901518132942], [-77.35532689680818, 34.549040762999326], [-77.35524915440129, 34.54904782304376], [-77.355228531708, 34.54905000281208], [-77.35521074341929, 34.54905159346953], [-77.35503290204602, 34.54902050395007], [-77.35486394003736, 34.54907265051646], [-77.35481067312222, 34.54908284283184], [-77.35463794081309, 34.54912286192133], [-77.35463779133546, 34.54912290969689], [-77.35445469397519, 34.54914095643986], [-77.35444125565873, 34.54913935825498], [-77.35441555674801, 34.549138962030185], [-77.35424526672071, 34.549125512961055], [-77.35417455481267, 34.54911156674194], [-77.3540492840896, 34.54911139450756], [-77.35397348502913, 34.54909621650335], [-77.35389459951463, 34.549082037543656], [-77.35385419603826, 34.54905830516264], [-77.35370189244783, 34.54904007757665], [-77.35364443934932, 34.54902996232134], [-77.35357516645404, 34.54897841338042], [-77.3535532480328, 34.548911884600436], [-77.35355001139756, 34.5488600470905], [-77.35346996329665, 34.548693284806276], [-77.3530149182106, 34.54870579592607], [-77.35268417722683, 34.54871779142503], [-77.35242118426326, 34.548913640560905], [-77.35231696540818, 34.54908983080026], [-77.35231031251269, 34.549108069320795], [-77.35228164686376, 34.549149539601906], [-77.35225473990697, 34.549116045122865], [-77.35199548624644, 34.54920325169728], [-77.35188813095722, 34.549188791074315], [-77.3518182621976, 34.54920494488715], [-77.35112254220086, 34.549275225051844], [-77.3511002578148, 34.549303832616125], [-77.35100507698883, 34.54933751340805], [-77.3504467409111, 34.549443128181835], [-77.35052089936914, 34.54959314777315], [-77.35040443820445, 34.54967092541482], [-77.35043486796977, 34.54972793969293], [-77.35040687474229, 34.54979013324514], [-77.35040394272973, 34.549794875711854], [-77.35041511108952, 34.54985319357067], [-77.35043256718969, 34.54993299633976], [-77.35044259400962, 34.5499716489814], [-77.35044858548217, 34.54999993413955], [-77.35046888457622, 34.55009027585054], [-77.35053153504707, 34.5501785326105], [-77.35058299111054, 34.55031867548412], [-77.35060840783993, 34.550361729763736], [-77.35067947671094, 34.55052889577883], [-77.35068572324636, 34.55054459199372], [-77.35068899304561, 34.55054824152515], [-77.35069635485667, 34.55055812556392], [-77.35076199692251, 34.55066014571438], [-77.35081647092792, 34.55068702611583], [-77.35089488802194, 34.550763431004455], [-77.35096509480974, 34.55081593485396], [-77.35100576822644, 34.55095707221372], [-77.35101198380532, 34.550991400292375], [-77.35105605609925, 34.55122675353215], [-77.35105662163453, 34.55122940685214], [-77.3510566510957, 34.551229793285124], [-77.35105688149763, 34.551230326008856], [-77.35111255798992, 34.55146656854383], [-77.35115004642083, 34.55152404203079], [-77.35118343226591, 34.55157877918057], [-77.35120183259066, 34.55160226067496], [-77.35125950579354, 34.55169024134068], [-77.3513576822163, 34.551873459284565], [-77.35139320240636, 34.55191582132953], [-77.35140246788616, 34.55193317997726], [-77.35143187345275, 34.551958054070084], [-77.35159258630713, 34.55213194725905], [-77.35167042071963, 34.55221316608579], [-77.35181669089692, 34.55229795309338], [-77.35184786528937, 34.5523202702317], [-77.35187846478169, 34.5523356245801], [-77.35202010533132, 34.55243131194722], [-77.35220486374392, 34.55249192445639], [-77.3522842588994, 34.55252204228861], [-77.35245761309577, 34.5525830088388], [-77.35252513374115, 34.552609784702184], [-77.35259434983837, 34.552628792618336], [-77.35268020890959, 34.552641179097755], [-77.35269217371533, 34.55264332140065], [-77.3527000385794, 34.55264094619799], [-77.35279090752795, 34.55261822905349], [-77.35285506928338, 34.55260207337755], [-77.35298864090136, 34.55255646287153], [-77.35314847232692, 34.55249645870269], [-77.35326023181855, 34.55245844603979], [-77.35338447175909, 34.55241702937129], [-77.35345120615054, 34.552395383812424], [-77.35369782986595, 34.55231858323307], [-77.3537800682541, 34.55228774462376], [-77.35390770210492, 34.552209902641394], [-77.3539791849332, 34.55216563562834], [-77.35398757522732, 34.5521596118135], [-77.35417850656019, 34.552034569955396], [-77.35420611831658, 34.55201757154778], [-77.35426460983346, 34.55199217792724], [-77.35446148855118, 34.551893449983936], [-77.35473336531037, 34.551679879555415], [-77.35486236114849, 34.55159174917766], [-77.35497590878543, 34.55150498380591], [-77.35504630427374, 34.55143287403926], [-77.35516301930629, 34.55137320876488], [-77.35517538836112, 34.55136689188899], [-77.35532096653586, 34.55131813927718], [-77.35537313249465, 34.55130443906812], [-77.35548237675233, 34.551259754802416], [-77.35576831282852, 34.551192920806045], [-77.35587081626772, 34.55108892463629], [-77.35592703310748, 34.55101840171629], [-77.35601955772053, 34.55091292186914], [-77.35605013079794, 34.55087826929481], [-77.35617119546069, 34.550745381418906], [-77.3561769286626, 34.550741117989624], [-77.35618622042237, 34.550736266259634], [-77.35657057032111, 34.55045069350762], [-77.35658491516547, 34.55044287898101], [-77.35659337222138, 34.55043282821786], [-77.35663758660432, 34.55038560398028], [-77.35691280962124, 34.550105671234135], [-77.35697181969152, 34.550074082291864], [-77.35718832886798, 34.54996884537678], [-77.35736906932841, 34.549871885504764], [-77.35740647721823, 34.54984912085985], [-77.35743937615543, 34.54982138305182], [-77.35760403926666, 34.54969687251837], [-77.35763966634097, 34.54967013478643], [-77.35776809502046, 34.54959206773163], [-77.35782634177444, 34.54955666156084], [-77.35785939778955, 34.54951608695029], [-77.35796929276138, 34.54937855273281], [-77.35796971593511, 34.54937804856996], [-77.35796986205992, 34.54937777085201], [-77.35797044446873, 34.549376991125236], [-77.35807293794781, 34.5492405182264], [-77.35810765595456, 34.549196791662126], [-77.35817166904211, 34.549113533551974], [-77.35817712937767, 34.54910640827966], [-77.35818124271026, 34.549102512859406], [-77.35825201016277, 34.54901865573609], [-77.35832162686454, 34.54895988824201], [-77.3584186950574, 34.54885138481545], [-77.3585133189526, 34.548724793921764], [-77.35854788418892, 34.5486824875387], [-77.35855519214618, 34.54866942637375], [-77.35857534924683, 34.54863016258173], [-77.3586693739995, 34.548476610707276], [-77.3586926049247, 34.54841682623548], [-77.35871900531734, 34.54832776136201], [-77.35873877309469, 34.54826200653105], [-77.35880313974523, 34.5481560868927], [-77.35876475225965, 34.548051764270454], [-77.35876633263747, 34.548038974930236], [-77.35876509856739, 34.54802644526185], [-77.35877728728995, 34.547914985751504], [-77.35878806990459, 34.54779274076591], [-77.35878822458541, 34.54778932735864], [-77.35882655555778, 34.54766306785723], [-77.3588638181032, 34.54757773729999], [-77.35887884457674, 34.5475331271072], [-77.35888909098621, 34.54747491321231], [-77.35891106561688, 34.54740607576291], [-77.35888464585098, 34.54735758843232], [-77.3588809621366, 34.547349204422844], [-77.35886092504109, 34.547327960037336], [-77.35882973941757, 34.54729537395734], [-77.35882148618617, 34.54728469721676], [-77.35865408850069, 34.547198253620465], [-77.35864005440442, 34.54718062255485], [-77.35860906288536, 34.547157807623464], [-77.35846623540947, 34.547070786488774], [-77.3582194452794, 34.547027457279746], [-77.35820693888185, 34.5470256378509], [-77.35817545290121, 34.54702234639675], [-77.35793902336212, 34.54698701092543]], [[-77.36451740451118, 34.54586421316374], [-77.36444678520594, 34.54582339183401], [-77.36425299861827, 34.54565747189194], [-77.36453829839304, 34.54539661760938], [-77.36462261595936, 34.54560423304196], [-77.36453977982386, 34.54585356158548], [-77.36453771356125, 34.545861287866465], [-77.36453585449412, 34.545866723800565], [-77.36452728257915, 34.54587918342963], [-77.36452016974275, 34.54586840392076]], [[-77.34534271748146, 34.5486245144373], [-77.34523134507324, 34.54842239130991], [-77.34484505592059, 34.54869611344342], [-77.34484561637905, 34.54870438048766], [-77.34502548707052, 34.54903453776105], [-77.34515282849054, 34.54914147279381], [-77.34531876661465, 34.54929535401676], [-77.34537538105938, 34.549599093223264], [-77.34537032878711, 34.54995331432097], [-77.34533423859125, 34.55009465167304], [-77.34534608287133, 34.55024008842495], [-77.34531960467088, 34.55042540974182], [-77.34486342692792, 34.5506052378277], [-77.3447878373924, 34.55062926486904], [-77.34471293106894, 34.55062693593691], [-77.3446907882774, 34.55067686280174], [-77.3446619443845, 34.55075766563075], [-77.34410943174176, 34.55125013646793], [-77.34424160350386, 34.55139111647343], [-77.34430502617718, 34.551466817810905], [-77.3443331192513, 34.55148912779725], [-77.34437511740778, 34.551500526156936], [-77.34454938911148, 34.551676482685046], [-77.34463564890169, 34.551742953683664], [-77.34476014631677, 34.55182999457875], [-77.34485813332029, 34.55187688512489], [-77.34499494383401, 34.55195383619276], [-77.34514977318622, 34.55196017688598], [-77.34533237294355, 34.55192196651646], [-77.34554297304267, 34.551935413369684], [-77.3456824180562, 34.551916439390105], [-77.34575752224697, 34.551992311054676], [-77.34593292401972, 34.55205159886485], [-77.34607548336808, 34.55210177241734], [-77.34618700513303, 34.55217533952623], [-77.34622382028704, 34.55223090092302], [-77.34632077715351, 34.552258868135624], [-77.34645414762376, 34.552297999846026], [-77.34671313467399, 34.5522706994138], [-77.34685244769305, 34.55232441678872], [-77.34699470410642, 34.55237174777295], [-77.34710293132622, 34.552393711309605], [-77.34722570502308, 34.55243833681698], [-77.34744628926839, 34.55248379310318], [-77.34747869363846, 34.55248829048584], [-77.34749323603401, 34.552494707196715], [-77.34756937332604, 34.55251383199596], [-77.34788387217124, 34.55258134502913], [-77.34797566957606, 34.552595006495885], [-77.34811172197958, 34.55263286524723], [-77.34827422697524, 34.55268023538301], [-77.34839584094077, 34.55275983001586], [-77.34846780441367, 34.55279920645295], [-77.34849599517216, 34.55280473446229], [-77.34861253900368, 34.55277308391786], [-77.34866532448831, 34.552746890448645], [-77.34875892864055, 34.55272648392146], [-77.34886291788993, 34.5526913761967], [-77.34891731598273, 34.55267301081396], [-77.34896184430022, 34.552657977560315], [-77.34903755766139, 34.552622052460734], [-77.34905389287717, 34.55261527988166], [-77.3490610835413, 34.55261097975774], [-77.34911934547839, 34.55254907805659], [-77.3491276127634, 34.55252696135485], [-77.34913058475384, 34.55250563540346], [-77.34913081353162, 34.552486222620225], [-77.34913130222878, 34.55244475306644], [-77.34912981250386, 34.552403839610704], [-77.34912836780059, 34.552364164161304], [-77.34912029518526, 34.55227501604808], [-77.34912009850588, 34.55224294374546], [-77.34912735535465, 34.55220638127615], [-77.34912419969513, 34.55218114841844], [-77.34913295355675, 34.55215698376442], [-77.34913039708708, 34.55214374047999], [-77.34910678018844, 34.55212244990493], [-77.34909826438592, 34.552107712200254], [-77.34907321351004, 34.5520838178358], [-77.34901240625271, 34.55205199241822], [-77.34896389647201, 34.55202060034149], [-77.34894454122937, 34.551941105220656], [-77.34890251499898, 34.551893777177455], [-77.34888180807482, 34.551870503187914], [-77.34879796160685, 34.55179965755287], [-77.34874998420979, 34.55176782250271], [-77.34868901525539, 34.55171751373753], [-77.34859995973912, 34.55163997176096], [-77.34853347568443, 34.55159289569527], [-77.34849616950797, 34.55156685401158], [-77.34844754263742, 34.55151393147814], [-77.34841833166497, 34.55148705412313], [-77.34835627736226, 34.55140645194297], [-77.34833271908386, 34.55137696309337], [-77.3483251077218, 34.55136520728316], [-77.34830502865606, 34.55134216107184], [-77.34822212957445, 34.551270466014216], [-77.3481815696244, 34.55123244954156], [-77.34814312737564, 34.5511785319417], [-77.34813954438317, 34.551159939286244], [-77.34812908535827, 34.55115148024247], [-77.34811331061908, 34.551142584384564], [-77.3480221803853, 34.551111684531854], [-77.34791987909716, 34.551017468445224], [-77.34786870018615, 34.55098644909579], [-77.34786270543091, 34.55095495381048], [-77.34784513749102, 34.55090932390448], [-77.34778194806073, 34.55084416387915], [-77.3477651657106, 34.55082342600681], [-77.34772907985297, 34.55077806258498], [-77.34766895931747, 34.55073801168217], [-77.34760944322385, 34.550699887266674], [-77.34758083815746, 34.550628281243505], [-77.34753737383463, 34.55057808015327], [-77.34750001825785, 34.55054132120756], [-77.34746152378833, 34.55052303908977], [-77.34744089576441, 34.55046421288742], [-77.34738414281031, 34.55038763551671], [-77.34723832623934, 34.550310334123864], [-77.34721644908711, 34.55027315431738], [-77.34715515296006, 34.550126521633246], [-77.34711489058239, 34.55010863737756], [-77.34709534019663, 34.550086087750195], [-77.34704262666241, 34.55004263370119], [-77.34696197654783, 34.549990494159346], [-77.3469532103832, 34.549989607018695], [-77.34691315834473, 34.549958997599546], [-77.34679714585718, 34.549884173236876], [-77.3467809279276, 34.54987859807578], [-77.3467685083778, 34.54986715738587], [-77.34654022976763, 34.54981935002179], [-77.34637953853203, 34.54970880361072], [-77.34611544768157, 34.549658021774405], [-77.34582219745127, 34.54953480805703], [-77.3458688969668, 34.54936185041926], [-77.34590174879985, 34.54921838525158], [-77.34574065131571, 34.54905690141962], [-77.34569336956659, 34.54901194642357], [-77.34561300076439, 34.54889767585276], [-77.34533382088566, 34.54880126632004]], [[-77.33700990722754, 34.652484437799814], [-77.33733713453523, 34.652782584640505], [-77.33740172119809, 34.65285689111725], [-77.3376719128845, 34.652855247967025], [-77.3377185713465, 34.65287885944294], [-77.33790807784197, 34.65300261390727], [-77.33801309985323, 34.65319748635555], [-77.33784550564475, 34.65312647522555], [-77.33768706940494, 34.652930673733174], [-77.33745807344886, 34.65301298340334], [-77.3373788542638, 34.65299020611069], [-77.33734228216159, 34.65297454870702], [-77.33724696246396, 34.652943573209306], [-77.33693095079394, 34.65264072845383], [-77.33669583693472, 34.652777889776715], [-77.33642715591765, 34.65271784154227], [-77.33633021838855, 34.65268181856191], [-77.33611626509368, 34.65242760376598], [-77.3364150028513, 34.652213740155176], [-77.33652239806742, 34.65213947998117], [-77.3365747491335, 34.65217525869412], [-77.33658548676945, 34.65217653293856], [-77.33661046844603, 34.65218692012311]], [[-77.26024527264393, 34.59922501882597], [-77.26025801341935, 34.59926472875547], [-77.26022263125579, 34.59926976585357], [-77.26021214355293, 34.599267597074444], [-77.26010129831559, 34.59925240119767]], [[-77.31998239718527, 34.54454902254708], [-77.31984679210709, 34.54470071126036], [-77.31981920028089, 34.54471797777526], [-77.31979672493334, 34.54476686515165], [-77.31966638283339, 34.544891987435605], [-77.31965877504416, 34.54497253390748], [-77.31972593362389, 34.54500357995833], [-77.31979183410665, 34.54497619826835], [-77.31993560361241, 34.5450230966721], [-77.31998671244558, 34.545037115974246], [-77.31999401604422, 34.54504215112688], [-77.32000085445569, 34.54504579628227], [-77.32018092937889, 34.54512635954918], [-77.32021475828209, 34.545116520902155], [-77.32032273588888, 34.54512195923061], [-77.32026139285259, 34.54518175286539], [-77.32036029793561, 34.5452477597832], [-77.32044915537145, 34.545273190710404], [-77.32057195321138, 34.54519399897742], [-77.32071811423317, 34.545218471562265], [-77.3207346700355, 34.54530758986393], [-77.3209616237743, 34.54531961785333], [-77.32112213327477, 34.54539554249406], [-77.32132547648777, 34.54545151200019], [-77.32135137277206, 34.54544192317739], [-77.32143098887454, 34.545452360789454], [-77.32168249263643, 34.545454383895944], [-77.32174275760468, 34.54549418696813], [-77.32185403719161, 34.5454604775776], [-77.32203968846181, 34.545425561501595], [-77.32213792257751, 34.54538447673886], [-77.32247911679866, 34.54533455006282], [-77.32261851736877, 34.54533589758089], [-77.3229269902142, 34.545219026125984], [-77.32319576914809, 34.54512014172143], [-77.32336506372341, 34.544929653318604], [-77.32332930557985, 34.54469159143237], [-77.32331833649586, 34.54444674158145], [-77.3231918885122, 34.544312908641416], [-77.32294980700368, 34.54424086640723], [-77.32257933892517, 34.54429354696177], [-77.32216622275536, 34.54417173256654], [-77.32165099594775, 34.54436788812543], [-77.32137590005375, 34.54439128060336], [-77.32115080888455, 34.5444086586004], [-77.32058893700165, 34.544466780288005], [-77.32046768452778, 34.54444265849517]], [[-77.24771603907227, 34.591422360752794], [-77.24725428869749, 34.591574670991214], [-77.24713066745642, 34.591632546034326], [-77.24717245645687, 34.59173635278714], [-77.2471640028547, 34.59202856321639], [-77.2474268484256, 34.5920666350923], [-77.24755228123765, 34.59193403885949], [-77.24771075302043, 34.59192215466068], [-77.24772134973509, 34.5919147521392], [-77.24779672476433, 34.59182280456448], [-77.24788583857634, 34.59175834126281], [-77.24775781825628, 34.5916819511245], [-77.24775532672824, 34.591457308184545], [-77.24812935995519, 34.591511523899165], [-77.24815875709751, 34.59147786070853], [-77.248174257542, 34.59146667208879], [-77.24819369216117, 34.5913844143746], [-77.247825064529, 34.591413699434625]], [[-77.39057633218037, 34.62727914660396], [-77.39048443462836, 34.627544797085235], [-77.39043642092018, 34.62772388388118], [-77.3904242716199, 34.62783304203773], [-77.39028682175203, 34.62778606859356], [-77.39027033699485, 34.627747825846996], [-77.39024450501016, 34.62766534428086], [-77.3901678692389, 34.62733802881215], [-77.39016511358078, 34.62708562896736], [-77.39019296228088, 34.626909843161634], [-77.39021051170526, 34.62678439607684], [-77.39023165156395, 34.626479697965074], [-77.39023818101214, 34.62638559014816], [-77.39024652883717, 34.626265269295416], [-77.39023656659953, 34.62614935430267], [-77.39022944804678, 34.62605544739919], [-77.39021078986346, 34.62593541822976], [-77.39032474628961, 34.62588958829356], [-77.39043999846774, 34.625900974237524], [-77.39052186245337, 34.62590906167177], [-77.3906850866006, 34.625989763599904], [-77.39070120939544, 34.62600656693029], [-77.390718955332, 34.62615229701802], [-77.390759487148, 34.62635993283463], [-77.39075481946654, 34.62644293509752], [-77.3906156003767, 34.62684891692782], [-77.39057901169613, 34.62712816089288]], [[-77.39178404707917, 34.52097810302554], [-77.39149773890968, 34.52109611778967], [-77.39099223450833, 34.52128314324747], [-77.39034199952033, 34.52108593397875], [-77.39100524559849, 34.520705429460314], [-77.39118825489302, 34.52058665751492], [-77.39157576336774, 34.520554131187026], [-77.39178927400323, 34.52074592223638], [-77.3919418222913, 34.52075973071699], [-77.3920295479946, 34.52084242936636], [-77.39186770647053, 34.520917116317776]], [[-77.34127461697317, 34.75898356012593], [-77.34162907995403, 34.75878943524324], [-77.34171266200138, 34.75867980420297], [-77.34186676685655, 34.758587088295336], [-77.34203370747521, 34.758509573573036], [-77.3420501629286, 34.75850397591096], [-77.34219652935182, 34.75848311487847], [-77.34231079063147, 34.75850067287775], [-77.34246496946767, 34.758590117135356], [-77.3426359567032, 34.75864483240832], [-77.3429384774061, 34.75902216287659], [-77.34357823255996, 34.758601200531714], [-77.3436914272299, 34.758492764608164], [-77.34423635439207, 34.75809001203531], [-77.34430933505273, 34.757972248701606], [-77.34427966043486, 34.75784038445398], [-77.34442305639162, 34.75766492778148], [-77.34446195459242, 34.75757169355151], [-77.34459072350805, 34.757459773050236], [-77.3445928750986, 34.75755373716431], [-77.34459154378943, 34.75758394651021], [-77.34459295353861, 34.75779741475565], [-77.34458143724935, 34.75789414109612], [-77.34452705720923, 34.75797913851929], [-77.34446032163319, 34.75805929434487], [-77.34443914544107, 34.758087240562666], [-77.34439490096477, 34.758133565475525], [-77.34374185840329, 34.758645208902365], [-77.34368139101358, 34.758692583560034], [-77.3435511577149, 34.75915873917344], [-77.34339235398426, 34.759521770201424], [-77.34325016618419, 34.75958718813338], [-77.34311548975369, 34.759705864008424], [-77.34270955043242, 34.75980979368504], [-77.3425858509423, 34.75986587102758], [-77.34218265368415, 34.75991814364608], [-77.3420799055669, 34.75991490959815], [-77.34202118331415, 34.7599058480405], [-77.34156430926927, 34.75962765200377], [-77.3413373849438, 34.75964324697824], [-77.34095427952042, 34.759665281287226], [-77.34076052850367, 34.75969259111414], [-77.34066344655875, 34.759635305209244], [-77.34060683261555, 34.75956250397992], [-77.34049554665211, 34.75950215354656], [-77.34053927639022, 34.7594197875479], [-77.34070487260371, 34.75930537342903], [-77.34074659650179, 34.759284290210374], [-77.34091118847296, 34.759182593438304], [-77.34109421886768, 34.75918385446816], [-77.34128962584052, 34.75912703404781]], [[-77.44106019187811, 34.730015173200094], [-77.44126694776674, 34.73007012062011], [-77.44164248379998, 34.7302185124739], [-77.44190199164163, 34.730486148423836], [-77.44183544528276, 34.730725719729335], [-77.44162054172568, 34.73116696341328], [-77.4411712925211, 34.731348893179266], [-77.44079045979585, 34.73130637399538], [-77.44067621096303, 34.731342343457385], [-77.440088542055, 34.73145465393226], [-77.4399637909579, 34.73145135902999], [-77.43935716937605, 34.731469443395724], [-77.4391338591011, 34.730960187407874], [-77.43894137020908, 34.73069067737427], [-77.4388936369979, 34.73061401536929], [-77.43882449224996, 34.730528891558336], [-77.43906916673207, 34.73024900352149], [-77.43916205133631, 34.73014173979551], [-77.43974661581723, 34.73012346103041], [-77.43998411128801, 34.729989250079974], [-77.4404252082124, 34.72997015278383], [-77.44043223479923, 34.72996967391792], [-77.44087905328428, 34.72995580979068]], [[-77.33359312501267, 34.577325840336414], [-77.33358440291714, 34.5773285027992], [-77.33353309271142, 34.57732648262439], [-77.33358810055823, 34.57731315105598], [-77.3335931366127, 34.57731177284028], [-77.33377579103663, 34.577291597179524]], [[-77.45029074672937, 34.69708135642372], [-77.45035145352341, 34.69681461196308], [-77.45038445188429, 34.696555094199695], [-77.45036549354661, 34.696112633959274], [-77.4503875431553, 34.69599716451173], [-77.45035721121238, 34.69591935547747], [-77.45031404567405, 34.6958021603549], [-77.45017717448347, 34.6958049544907], [-77.44971975067665, 34.69564115542318], [-77.44925334673401, 34.695790638626974], [-77.44902212956957, 34.695837537748105], [-77.44869402814003, 34.69596430915098], [-77.44855005986838, 34.69613665670952], [-77.4482563849094, 34.69679647713977], [-77.44839743855576, 34.69697868171011], [-77.44862633082998, 34.69720647868735], [-77.4489052895801, 34.6974184039901], [-77.44917828087057, 34.69751397822415], [-77.44945374045633, 34.69761313604987], [-77.4497691198319, 34.69768698089473], [-77.45005803713516, 34.69755904006853], [-77.45021193337442, 34.697356804365114]], [[-77.37892602411553, 34.730424460411925], [-77.37811354602131, 34.73051400021554], [-77.37876760522296, 34.730165297736264], [-77.37882136567781, 34.73016868929446], [-77.37899149053976, 34.73014822034237]], [[-77.39671015576972, 34.58895063857041], [-77.39663426587103, 34.588787923182295], [-77.39656971872488, 34.58869765260996], [-77.39653427302767, 34.58863321513477], [-77.39655193655466, 34.58854194658974], [-77.39663428030872, 34.588549470289614], [-77.3966879940188, 34.588553166622056], [-77.39683130870911, 34.58856498493853], [-77.39690613400968, 34.58857957156038], [-77.39699956817569, 34.588597088511925], [-77.39702833568549, 34.588607088724885], [-77.39709330073305, 34.58862256734966], [-77.39728733651916, 34.58867009150576], [-77.39736375499099, 34.5888749620509], [-77.39729382619367, 34.588948215388875], [-77.39707290556005, 34.58902813164153], [-77.39702830364223, 34.58918277154905], [-77.39689562813426, 34.58914860906301], [-77.39686649159249, 34.58900986261334]], [[-77.31019152535023, 34.54690447592888], [-77.31025507439301, 34.54676769004808], [-77.3103808503717, 34.54676133778714], [-77.31037304877087, 34.54682515397725], [-77.31057505577627, 34.54725638489431], [-77.31030833931067, 34.54757427937282], [-77.30983387545325, 34.54736280177081]], [[-77.450223251478, 34.62398353790865], [-77.44999489523477, 34.624383646047235], [-77.44992051448521, 34.624497026216304], [-77.44988159198799, 34.62458216487139], [-77.44959342000547, 34.624837672721156], [-77.44924107114086, 34.624878727974576], [-77.4490878174853, 34.62491147622195], [-77.4490152557936, 34.62487269393695], [-77.44893678891924, 34.62485156871854], [-77.4488762203068, 34.62475108761143], [-77.44848025889611, 34.62424322895567], [-77.44831266563926, 34.62390290498491], [-77.4482947205355, 34.62355761974297], [-77.44838152838172, 34.623339222076936], [-77.44851338187601, 34.62281376574919], [-77.44853334027029, 34.62277293604049], [-77.4485766978322, 34.622738704607116], [-77.44854140636457, 34.622708925381666], [-77.44867060701061, 34.62220156004386], [-77.44872739085305, 34.621957222117956], [-77.44875740328385, 34.62178475351908], [-77.4489793693273, 34.62188537113582], [-77.44915997492605, 34.62195270764252], [-77.44933434881432, 34.621971548968425], [-77.44978285359485, 34.622105567416135], [-77.4498893590304, 34.62207823349904], [-77.45020112001555, 34.62227550065202], [-77.45024571903673, 34.62245405281813], [-77.45047835020875, 34.62283399374088], [-77.45040783105449, 34.62295507185902], [-77.4503750880115, 34.62321025966956]], [[-77.4238375238954, 34.52267104792055], [-77.42361287673438, 34.522446301736466], [-77.42428788584644, 34.52232968982006], [-77.42432299906895, 34.522543876263065], [-77.42457806177438, 34.522592768919154], [-77.42457443763205, 34.52291361176198], [-77.42456140109626, 34.5229990978464], [-77.4245426988588, 34.523102595161234], [-77.42451375919327, 34.5233806624673], [-77.42419161844475, 34.523368700215855], [-77.42411804123162, 34.52318834993138], [-77.42410353447517, 34.52306529238673], [-77.42409382075567, 34.52295980593396], [-77.42392598343406, 34.522801505865445]], [[-77.45772263575891, 34.59749611405364], [-77.45828316176716, 34.59707597168746], [-77.45763178942734, 34.59696281212269], [-77.45760008096455, 34.5968338539217], [-77.4574933483371, 34.59656277501182], [-77.45739777149066, 34.59633459264956], [-77.45723942035295, 34.59608827925169], [-77.45720952605953, 34.59590521818612], [-77.45705717276343, 34.595836736357725], [-77.45705945995098, 34.59576339940251], [-77.45705069205458, 34.59571255253938], [-77.4570353689219, 34.59567795627482], [-77.45709451970473, 34.595595283168294], [-77.45713085216565, 34.59558575559893], [-77.45731466129833, 34.59552180259684], [-77.4573382873782, 34.5955257170946], [-77.45736330197917, 34.59551224538233], [-77.45776816640539, 34.595424337886], [-77.45784391421054, 34.5954526548471], [-77.45816005179883, 34.59540223850926], [-77.45833256001643, 34.595317584295394], [-77.45844575064817, 34.5952716129363], [-77.45863355479727, 34.59528030900715], [-77.45870055022084, 34.59529518623991], [-77.45879879298731, 34.59530681397864], [-77.45886367189757, 34.59533758971265], [-77.45893529921173, 34.59536846214517], [-77.45897340650406, 34.59540196957187], [-77.45901324589101, 34.595470173953586], [-77.45902407728687, 34.59557214609889], [-77.45897385702783, 34.59573994473392], [-77.45895627176044, 34.595759927481566], [-77.45891597352417, 34.59578762335638], [-77.45868770582261, 34.59597564753028], [-77.45867724967486, 34.59622500144883], [-77.45863724682263, 34.596430203367305], [-77.45848084586717, 34.59652264671101], [-77.45829634475609, 34.59706444535138], [-77.45829131647446, 34.59707364511327], [-77.45829189566881, 34.59707591328616], [-77.45833195240323, 34.59723483402564], [-77.4584535721537, 34.597751858398915], [-77.45846254519722, 34.5977633259457], [-77.4584593829536, 34.59777948928028], [-77.45837460223953, 34.59803391676286], [-77.45823641895917, 34.59805219638323], [-77.4580323671486, 34.59806033333462], [-77.45752609961325, 34.59803049416885], [-77.4575293876773, 34.598002505269946]], [[-77.30388550045892, 34.55355880883759], [-77.30375254465093, 34.553538324746256], [-77.30349431099677, 34.55349690973502], [-77.30313436004698, 34.5537102379933], [-77.30348945203974, 34.553703186516], [-77.30364721878026, 34.55378192335392], [-77.30369634231808, 34.55375940339455], [-77.30388437709135, 34.55360650851371], [-77.30388814669607, 34.553604378703945], [-77.30389483863055, 34.55360109928521], [-77.3039145484741, 34.55357985075134]], [[-77.31853593303356, 34.64306096281966], [-77.31844789457064, 34.64321620431871], [-77.31842713361837, 34.64325044529319], [-77.31840991555744, 34.64328922917733], [-77.31833592715594, 34.64345588898669], [-77.31826130678917, 34.64342927148726], [-77.31820633590272, 34.6436077539651], [-77.31808400305171, 34.64333390149879], [-77.3180863108693, 34.64300964550029], [-77.31808638211528, 34.642932175729406], [-77.31810329332933, 34.6429092715151], [-77.31832581979307, 34.64260788627027], [-77.31867711225847, 34.64283061799822], [-77.31852605619105, 34.64300912962548]], [[-77.41887764858949, 34.568654999857166], [-77.41883640489164, 34.56858017940246], [-77.41894387821073, 34.56857403691934], [-77.41902921359736, 34.568614931035775], [-77.41907140784468, 34.56863047358923], [-77.41903686007535, 34.56876721831997], [-77.41895882571714, 34.56876810053898], [-77.41889451545006, 34.56868270339831]], [[-77.33924918328418, 34.68327061496038], [-77.33910157347091, 34.68331986377135], [-77.33854087153335, 34.68348030728956], [-77.33823171792464, 34.683645045194], [-77.33814221343985, 34.68366389483208], [-77.33787736384966, 34.683703897211245], [-77.33785364979511, 34.68366598684528], [-77.33789755213476, 34.68363440335038], [-77.3381789369213, 34.68359823715269], [-77.33843304045566, 34.68334281291787], [-77.33859831186774, 34.6832825750646], [-77.33869938916013, 34.68323517951437], [-77.33917950241616, 34.683208820578194], [-77.33922276602009, 34.68319340539464], [-77.33926606899259, 34.683193292166024], [-77.33971151591808, 34.68304225182922], [-77.33986309128312, 34.68304958890981], [-77.34041219386742, 34.68307127248684], [-77.33978110458132, 34.68333183578362]], [[-77.31384836841606, 34.54729800153668], [-77.31379749151549, 34.54740568591946], [-77.3138439151912, 34.54748803384014], [-77.31385766063374, 34.547510550444656], [-77.31394596943048, 34.547447404031466], [-77.31400195400943, 34.547401450655215], [-77.31392369428745, 34.54738756213129]], [[-77.34753551997763, 34.6563325154468], [-77.34763976898265, 34.656250364300476], [-77.34770573948111, 34.65623973963922], [-77.34786985845741, 34.65624469583476], [-77.34800413283487, 34.65647001994047], [-77.3483256681576, 34.65648472765121], [-77.34832747744196, 34.65648568043072], [-77.34832851391715, 34.65648489467877], [-77.34833731559544, 34.65648526040604], [-77.34832917025217, 34.65648799613603], [-77.34832804495201, 34.65648850260315], [-77.3483251950187, 34.656491466084326], [-77.34803801208515, 34.65663850168169], [-77.34793974103951, 34.6567917262468], [-77.34786761198674, 34.65697175325523], [-77.34779945785859, 34.65704451234693], [-77.34770962720953, 34.65724414763442], [-77.34768326931348, 34.65726288145199], [-77.34762036332516, 34.657327634698014], [-77.34761369975399, 34.65732604242261], [-77.3475402922379, 34.6573480315777], [-77.34751822360484, 34.657336224760364], [-77.34747472874427, 34.65731411701252], [-77.34744811912242, 34.657287740141335], [-77.34736151785621, 34.657252240207654], [-77.34736155864715, 34.65725110749778], [-77.34734714539228, 34.65707264028928], [-77.34735226700973, 34.657042510301466], [-77.34737161625357, 34.65692868172145], [-77.34741025833041, 34.65670135416739], [-77.34744093420768, 34.65660833632934], [-77.34743814350577, 34.65652531654262], [-77.3474515464295, 34.656336092564274]], [[-77.25319625880431, 34.58649702993576], [-77.2525619583438, 34.58653027721955], [-77.25229524192949, 34.58685450716384], [-77.25225581960217, 34.58691528008683], [-77.2521818024038, 34.587210812151746], [-77.2521615897523, 34.58731532746022], [-77.25213296882829, 34.587463318228785], [-77.25186257042336, 34.58769773688512], [-77.25184527551701, 34.58776176455648], [-77.25175913142954, 34.58778810650306], [-77.25169858823595, 34.587790664012644], [-77.2511159628375, 34.587873323922274], [-77.25082276594827, 34.587855404117036], [-77.25021884092294, 34.588105023762616], [-77.25001802246746, 34.58821133876317], [-77.24975108885295, 34.58885567389188], [-77.2496483484315, 34.589002783791514], [-77.24985010892769, 34.58937663534718], [-77.24979083685497, 34.58957558465549], [-77.24991083328666, 34.58965738924004], [-77.25012586635388, 34.58962192464655], [-77.25029642757146, 34.58972842062058], [-77.25055720584419, 34.589545710188325], [-77.25071320310003, 34.589487035930674], [-77.25087166858302, 34.58935462956287], [-77.25089590101234, 34.589336710779165], [-77.25090214645647, 34.58932643894065], [-77.25093449035339, 34.58930057000319], [-77.2510773803649, 34.5891536476776], [-77.25111033408565, 34.58911792478756], [-77.25116998434582, 34.58905924127153], [-77.25128343954079, 34.58889588408962], [-77.25142650861783, 34.58880687525736], [-77.25148211669398, 34.58875867899745], [-77.25155875600205, 34.58868189226164], [-77.25158218613088, 34.588616690098014], [-77.25176205125265, 34.58849823981934], [-77.25179041803294, 34.588473252051706], [-77.25181621391908, 34.58844989104595], [-77.25195841426341, 34.588242018638326], [-77.25210846268861, 34.58815677007652], [-77.25210998107436, 34.588100184877916], [-77.25217009784359, 34.588108391942676], [-77.25224280562402, 34.58802874025831], [-77.25228468588138, 34.58792692606547], [-77.25241870939985, 34.58785690886585], [-77.25228073385334, 34.58779605434197], [-77.25236307518517, 34.58766799595246], [-77.25255596763834, 34.58776235985927], [-77.25270173967846, 34.58759353246303], [-77.25291219641427, 34.58749912103971], [-77.2529372014132, 34.58747907414883], [-77.25303757048584, 34.58738430296833], [-77.25310690981648, 34.587343660980295], [-77.2531411466518, 34.58731086152426], [-77.25313655427274, 34.58727426054374], [-77.25327475746774, 34.58717491314275], [-77.2532803151358, 34.58716924821533], [-77.25328168537763, 34.58716785152075], [-77.25328395237389, 34.58716554074955], [-77.25309364462973, 34.58691737358908], [-77.25355229703, 34.58669766131641]], [[-77.33986965833499, 34.68509375005208], [-77.34049709978999, 34.68498813222304], [-77.34052033898247, 34.68498723015496], [-77.34059606985404, 34.684995548244686], [-77.34047467902842, 34.68506531856631], [-77.33987120906563, 34.68509896490256], [-77.33986582712734, 34.685096697987994], [-77.33986217302834, 34.68509095183962]], [[-77.34788294075821, 34.73687185949861], [-77.34808174854008, 34.737059411421264], [-77.34811038495174, 34.7370886949098], [-77.34775102514757, 34.73730750209029], [-77.34764768378423, 34.737152181298306], [-77.34760394577505, 34.73708644355753], [-77.3475426632137, 34.736993942313035], [-77.3475048000158, 34.73692809635742], [-77.34744206950532, 34.736816762890705], [-77.34743645749487, 34.73680680270354], [-77.34744839092988, 34.73681190089668], [-77.34760595162493, 34.73677610438426], [-77.34765749954596, 34.736785300332684], [-77.34772072368217, 34.73679953352868], [-77.34774283605421, 34.73682031720029], [-77.34785798416438, 34.736861149477804], [-77.34787794597574, 34.73687063829847]], [[-77.34377798312724, 34.62421655087687], [-77.34376169717319, 34.62421569237075], [-77.34374955260624, 34.624215052147136], [-77.34319635881295, 34.62434067535567], [-77.34316064273173, 34.624410208186475], [-77.34306182000654, 34.62442887583626], [-77.34284798004438, 34.62444707226561], [-77.34265796168741, 34.62450516433657], [-77.34256599288004, 34.62463661456729], [-77.34248399621362, 34.62467633799122], [-77.34232957882935, 34.62473083104696], [-77.34225983626565, 34.62470586497844], [-77.34203041359882, 34.62443524514336], [-77.3421444818041, 34.62413170921138], [-77.34217465549352, 34.62405385085269], [-77.34220026392683, 34.62398992784208], [-77.3422913376004, 34.623658430310556], [-77.34232301604769, 34.623551076461354], [-77.34233781654137, 34.62350091974603], [-77.34246523300683, 34.62353155052818], [-77.34287046071665, 34.62365969149122], [-77.34303017055004, 34.623760838018676], [-77.34354468318725, 34.62399869732324], [-77.34379783083583, 34.62411944015844], [-77.34391712279228, 34.624176200833816]], [[-77.40589343529938, 34.67201362922071], [-77.40566251300599, 34.67184475851472], [-77.40555398031037, 34.67176538935621], [-77.40553032379708, 34.671748089502316], [-77.40541960721653, 34.67160358612364], [-77.4054206595368, 34.67159783979834], [-77.40546844865342, 34.671408633364415], [-77.40548342757684, 34.671348487654015], [-77.40547857604676, 34.67134466024339], [-77.40548660554732, 34.67134593924675], [-77.40548767107013, 34.67134671738812], [-77.40549058651392, 34.67134886436941], [-77.40568822934671, 34.67148621702813], [-77.4057467186753, 34.67155400135218], [-77.40583849937606, 34.67164669550057]], [[-77.34155427936733, 34.550212505113414], [-77.34156894948671, 34.55014666936426], [-77.34153963482316, 34.55007606302368], [-77.34138932883982, 34.54968286847386], [-77.3410575767963, 34.54962288871561], [-77.34088601380765, 34.5495729460697], [-77.3406526229611, 34.549644329731635], [-77.34040619827587, 34.54982427588833], [-77.34021551699561, 34.54992837218512], [-77.34013079669414, 34.55010870508612], [-77.3401092074163, 34.550125026342855], [-77.3400847996859, 34.55035877248727], [-77.34008771000977, 34.55035972019329], [-77.34028412862834, 34.55044932583824], [-77.34028661118714, 34.55045352186104], [-77.34047248025563, 34.55047779621436], [-77.34053341036444, 34.5505020912973], [-77.34061301426838, 34.55052898463282], [-77.34066631438553, 34.550584995413274], [-77.34075899756851, 34.550572780702744], [-77.34086302524764, 34.55056773009286], [-77.34113487702447, 34.55052977679893], [-77.34125623212341, 34.55054248453951], [-77.34148376006445, 34.55054566109069]], [[-77.33839452788878, 34.54913432629579], [-77.33835979784644, 34.54925029164063], [-77.33826261035111, 34.549398115494135], [-77.33853013015727, 34.54958020579224], [-77.33855835474367, 34.54958276485474], [-77.33884287746378, 34.549508645847894], [-77.33892811728401, 34.549348172716435], [-77.33894799265799, 34.54931141039115], [-77.33894763869199, 34.54928828940396], [-77.33865392553804, 34.549097021207544], [-77.33865304162667, 34.549028466636074], [-77.3385429255936, 34.549027187070415]], [[-77.39527210907929, 34.512640136811385], [-77.39536996099079, 34.51252563101729], [-77.39533890972866, 34.51239154015988], [-77.39511790498011, 34.512342400941215], [-77.39502631762107, 34.51214546569982], [-77.39457681189204, 34.51230196031428], [-77.39447942670496, 34.512559792329455], [-77.39488007789183, 34.51259634063187], [-77.39505806279338, 34.51260431339888], [-77.3951101113231, 34.51268915134271]], [[-77.2697157221555, 34.578798315668294], [-77.26974428673428, 34.57878081815967], [-77.26974941588499, 34.57880096437133], [-77.26972721800823, 34.57881456784505]], [[-77.33844770538465, 34.76229541018985], [-77.338387009729, 34.76231392795209], [-77.33834452198573, 34.762338345095216], [-77.33804399860679, 34.76246339296788], [-77.3378790543247, 34.76237337037248], [-77.33809809499365, 34.76227731716344], [-77.33837705462011, 34.76229175404349], [-77.33839319914917, 34.762292637834086]], [[-77.3992688573023, 34.59404947356384], [-77.39926267635263, 34.59418362604322], [-77.3992312781768, 34.594361894453726], [-77.39922883474928, 34.59443671288149], [-77.39901916020044, 34.59464333175544], [-77.39902170847893, 34.594668025353734], [-77.39899844626328, 34.59468493011891], [-77.39898412166696, 34.59464838674305], [-77.3989728660668, 34.59462244958607], [-77.39885459368949, 34.59439749008614], [-77.39880141445472, 34.59429625298902], [-77.39877947390387, 34.594253337582444], [-77.39872306702702, 34.59413360262561], [-77.3986069810395, 34.59385644491677], [-77.39861028442202, 34.593853172821], [-77.39899847484583, 34.593672066265505], [-77.39913806400907, 34.59362664218201], [-77.39919551770568, 34.59360794605562], [-77.39939149134767, 34.59374046799204], [-77.39939135775818, 34.5937417777051]], [[-77.21144058576836, 34.62160881416197], [-77.21131766849545, 34.62180174907913], [-77.21129910082065, 34.62181171696522], [-77.21126290121482, 34.62199109787063], [-77.21125455722529, 34.62203244550872], [-77.21124284940714, 34.622090461814366], [-77.21122281126327, 34.62218975648721], [-77.21132334082503, 34.62216208385598], [-77.2113562065029, 34.62213988335003], [-77.21141479624009, 34.62204510961348], [-77.21152789526951, 34.62201530036432], [-77.21157959808832, 34.62196452723005], [-77.21152756336653, 34.62193617963086], [-77.2116600700009, 34.62189132025162], [-77.21170625950037, 34.62184521302207], [-77.21171862152414, 34.62183343692602], [-77.21174196295377, 34.62181198699633], [-77.21181202144572, 34.62160513414955], [-77.2119537155425, 34.62154914599097], [-77.2118259519564, 34.62156400296068], [-77.21160972401933, 34.621589146418536]], [[-77.40302106344609, 34.50990372811366], [-77.40239152953066, 34.51004290232215], [-77.40301000316364, 34.51039786949806], [-77.40307280303807, 34.509944523054926]], [[-77.25895711809477, 34.58498828937684], [-77.25894939439294, 34.58502159135924], [-77.2589157080182, 34.58505666239032], [-77.25895357547805, 34.58511516626842], [-77.25926804524039, 34.58504666546602], [-77.2590523546049, 34.58491992333676]], [[-77.35006507663662, 34.6903075740904], [-77.35006610028216, 34.69025504985718], [-77.35008744047285, 34.69009527275385], [-77.35002095633077, 34.69026845941146], [-77.3500214765716, 34.69028939072959]], [[-77.43667488184619, 34.73409189406604], [-77.43695111757614, 34.73400694651088], [-77.43691889634114, 34.73377626811715], [-77.43698383108776, 34.73364287523175], [-77.43670362379179, 34.73360266242928], [-77.43645509918449, 34.73361420245468], [-77.43626244272184, 34.73362967918174], [-77.43620418534564, 34.73396815542386], [-77.43659554879677, 34.734173817646536]], [[-77.39042734923135, 34.658833930933156], [-77.39066398767169, 34.65862861765982], [-77.39075338334321, 34.658631364911386], [-77.39111034063527, 34.65858320963821], [-77.39119751775647, 34.658607658140994], [-77.3914232779049, 34.658662800742235], [-77.39154193500516, 34.658699521523346], [-77.39191647592072, 34.65881542967465], [-77.39201522908152, 34.65885392951019], [-77.3921660486625, 34.65910477109677], [-77.39214676195634, 34.65911910599137], [-77.39188275410709, 34.659315331045946], [-77.39165482161982, 34.65937664833956], [-77.39137245160826, 34.65938176437718], [-77.39133265926964, 34.65938294910235], [-77.39131550478336, 34.65938071269931], [-77.39101934116542, 34.6593587249952], [-77.3907316394048, 34.659336538964865], [-77.39043972264952, 34.65929428135564], [-77.3902657920483, 34.65930112978837], [-77.39014649047243, 34.65927387233379], [-77.38997268645159, 34.659312670421], [-77.3898081397829, 34.65940916333646], [-77.38967847907574, 34.65935929841058], [-77.38971498226945, 34.6592368739971], [-77.38975547065952, 34.65911514862448], [-77.38978037062324, 34.65880585258381], [-77.38978105667623, 34.65880490689351], [-77.39004771210932, 34.658720804499424], [-77.39012473983344, 34.65869952526613]], [[-77.45463995327307, 34.677434676755894], [-77.45481818572284, 34.677618281536475], [-77.45485672329923, 34.677814476490994], [-77.45504948419124, 34.67784871729819], [-77.45509032162269, 34.677932524121104], [-77.45509904425971, 34.67801677496493], [-77.45509653497464, 34.67802525580293], [-77.45499581119059, 34.67814409599374], [-77.45499483044354, 34.67814545183441], [-77.45498992214242, 34.678145774604225], [-77.4548164362877, 34.67813348999776], [-77.45470958666667, 34.678064601540314], [-77.45425217788664, 34.6779867942518], [-77.45422972429694, 34.67793595208743], [-77.4541107677907, 34.67737101591703], [-77.45447491760314, 34.67720856359675]], [[-77.47357343901292, 34.48585602192516], [-77.4735368948363, 34.485851716266836], [-77.47350217379613, 34.48589327319438], [-77.47357665846458, 34.485871028980974]], [[-77.35771259328878, 34.61237185960612], [-77.35780677965606, 34.6123988506629], [-77.35784644027694, 34.612463416633645], [-77.35782163563637, 34.612663116084136], [-77.35782818164009, 34.61270153676893], [-77.35777415404657, 34.6127210567408], [-77.35760951552543, 34.612740101872014], [-77.35744559448374, 34.61269767065992], [-77.35743344385563, 34.612332982293466], [-77.35760970497726, 34.61236988248373]], [[-77.22126028953356, 34.61347713952246], [-77.22119627067835, 34.61362618946134], [-77.22123443690238, 34.61381629602835], [-77.22138301006466, 34.61368750135432], [-77.22149351284696, 34.61372112016444], [-77.2215848605696, 34.61365687309976], [-77.2216193387678, 34.61356900709866], [-77.22169763574627, 34.613497245066995], [-77.22156913708312, 34.6134199501725], [-77.22179697798211, 34.61327641187777], [-77.22120692930334, 34.61320207275996]], [[-77.4436210274676, 34.73499989533052], [-77.4435115329594, 34.7350031278025], [-77.4434677754386, 34.7349899122675], [-77.44339753108164, 34.73498444063213], [-77.44316735036054, 34.73492025496774], [-77.44302593466529, 34.7349576311196], [-77.44296531471178, 34.73494158752101], [-77.44298197585525, 34.734885835812356], [-77.44309314306975, 34.734815472917184], [-77.44320323611959, 34.73479621364083], [-77.44344427188949, 34.73489327562779], [-77.4434942982148, 34.734898233466375], [-77.44382290377628, 34.73476407306702], [-77.4438539350623, 34.734763215781186], [-77.44393907362803, 34.73475846420173], [-77.44401671149635, 34.73475461388415], [-77.44404503796142, 34.73475307106964], [-77.44412473400295, 34.73475660468206], [-77.44417567971671, 34.73475917548937], [-77.44419700490133, 34.73478185283835], [-77.44421039212784, 34.734868454713634], [-77.44421310712244, 34.73492723254704], [-77.4441137267262, 34.734973328756354], [-77.44396062617626, 34.73498900216301], [-77.4439162933146, 34.7349911783], [-77.4438093990976, 34.73491716142695]], [[-77.46163955273664, 34.59571859048435], [-77.4616816456763, 34.59578440378288], [-77.46189244321509, 34.59604615883472], [-77.46193300390664, 34.59627413635812], [-77.46193299239033, 34.59649170647346], [-77.4617466515954, 34.596826298828894], [-77.46168895200293, 34.597025695250174], [-77.46154979263625, 34.59725174098285], [-77.46150873207502, 34.59731843854753], [-77.4613752232695, 34.59753530445243], [-77.46114382648436, 34.59769670401773], [-77.46109720951112, 34.59773513150482], [-77.46107671961596, 34.59774055590814], [-77.46071758306456, 34.59776082679268], [-77.46055763700139, 34.597684300312636], [-77.46037187915981, 34.59758783368781], [-77.46048821278531, 34.597430815425454], [-77.46069736400061, 34.597328314530536], [-77.46071911591886, 34.59731426415148], [-77.46073109025609, 34.59730994959588], [-77.46076404605498, 34.59724675094578], [-77.46084215261533, 34.59708438351679], [-77.46090501561086, 34.59703339775424], [-77.4612166192006, 34.596860446749446], [-77.46117877634727, 34.59661906475485], [-77.46127526298133, 34.5964660108179], [-77.46138289500193, 34.59629925134683], [-77.46154855783071, 34.596144283042364], [-77.46157020864767, 34.59580341306888], [-77.46158821607371, 34.59575171664257], [-77.46159490361892, 34.59571386795126]], [[-77.39736971491408, 34.508197423039405], [-77.39717387316858, 34.508163910241926], [-77.39684328377696, 34.5083955937025], [-77.39682951468863, 34.50843130864056], [-77.39677133022539, 34.50861511413413], [-77.39659231496357, 34.508921493436134], [-77.3966793687376, 34.5093515403268], [-77.39669238687931, 34.50939671896234], [-77.3967413756912, 34.50939737540937], [-77.39675384587213, 34.50939364398939], [-77.39676300536067, 34.50939221979963], [-77.39681332444147, 34.50937926095537], [-77.39731581497685, 34.50916446400802], [-77.39754386128575, 34.50916269103634], [-77.39774959281377, 34.50911638886302], [-77.39811091806945, 34.50905455133264], [-77.3981621032382, 34.50880383788279], [-77.39805946100299, 34.50870969440922], [-77.39794750120134, 34.50848352724471], [-77.39768870238073, 34.50827354777333], [-77.39756523419686, 34.508210618739675]], [[-77.33957430120358, 34.64882623127924], [-77.33973483502366, 34.64878159783098], [-77.33980630115877, 34.64879439093763], [-77.33991386371044, 34.64896659801576], [-77.33975636610636, 34.64888873943381]], [[-77.37736277398136, 34.59606740982567], [-77.37771736576579, 34.59560430697607], [-77.37779190924955, 34.59566133831748], [-77.37813768085131, 34.59592741214725], [-77.37813680941157, 34.59598330155647], [-77.37795467244344, 34.59615086971144], [-77.37771714945674, 34.59637076575172]], [[-77.36825558601778, 34.60441393413866], [-77.36836513280608, 34.60427433854622], [-77.36844303168895, 34.60414517845015], [-77.36851228360165, 34.60398697920076], [-77.36876357433667, 34.60397656486144], [-77.36876651714105, 34.60409859645803], [-77.3688793180884, 34.604259661730005], [-77.36886882969485, 34.604319838822654], [-77.36879926175583, 34.60435738459557], [-77.36864971692638, 34.60443534768312], [-77.36851758211589, 34.604416660327814], [-77.36838052535639, 34.60457873647101], [-77.36828760525164, 34.60462669627036], [-77.36825549564625, 34.60464583832697], [-77.36818948165266, 34.60467734136492], [-77.3680756482963, 34.604622637701986], [-77.36817055626298, 34.60451742274876]], [[-77.38835817594382, 34.59396716082524], [-77.38847746327662, 34.59374476431803], [-77.38869227008205, 34.593649999900265], [-77.38875230769504, 34.59366389072195], [-77.3890789276918, 34.59360225817531], [-77.38894384281278, 34.593973611244], [-77.38882877782873, 34.59407265346704], [-77.38875224186258, 34.594098809228484], [-77.38868870371155, 34.59415423872663], [-77.38860811820732, 34.5941772756059], [-77.38855518425905, 34.5941924786505], [-77.38851511798569, 34.59420454696411], [-77.38837824749841, 34.59424577343436], [-77.38835814630687, 34.59415715825735], [-77.38824525324802, 34.59419595347665], [-77.38831368585096, 34.59406446875304]], [[-77.36914405535337, 34.593326938261995], [-77.36917947751724, 34.592717326141155], [-77.36966322697415, 34.59269311185793], [-77.36981693646105, 34.59331251511787]], [[-77.33364701924837, 34.65672665894942], [-77.33370222200861, 34.65673543657159], [-77.3339532092041, 34.65665697118726], [-77.33426322281638, 34.65670324053684], [-77.33428219874013, 34.65670076352392], [-77.33450433724808, 34.65629583734374], [-77.33435282429734, 34.656716613274625], [-77.33431659287558, 34.65675306427569], [-77.33429671488818, 34.65677301301673], [-77.33422874289974, 34.656841300793765], [-77.33403030650571, 34.65704070594161], [-77.33386674902945, 34.657000402694436], [-77.33371065726199, 34.657043407991736], [-77.33342818277245, 34.65684345974892], [-77.33323955967677, 34.65650318585225], [-77.33317770599021, 34.65645582732418], [-77.33324342929888, 34.65641849264382], [-77.33326662371242, 34.65642699099468], [-77.3332762720548, 34.65643052611393]], [[-77.39516751029225, 34.621522353379085], [-77.39516492232882, 34.62182977038448], [-77.39545001489822, 34.62182470086086], [-77.39549373348264, 34.62189988158248], [-77.39558198997274, 34.62202930244058], [-77.39561640083035, 34.62209447780157], [-77.39544999535643, 34.6222109215785], [-77.39530755075799, 34.62219788808386], [-77.3952092538042, 34.62220018275243], [-77.3950557848953, 34.62207182245153], [-77.39496307359194, 34.62207625341468], [-77.3947705941593, 34.62200415952488], [-77.39449074638597, 34.6218039336107], [-77.39426736693127, 34.62180577873669], [-77.39401026990264, 34.621836904740135], [-77.39381892191635, 34.621775222515254], [-77.39352650847003, 34.62175897974235], [-77.39358808236804, 34.62144305492909], [-77.39360539021831, 34.6213230354571], [-77.3935788821816, 34.62058526401209], [-77.3942674119143, 34.62111595959951], [-77.3943282045125, 34.6211533335651], [-77.39451866248227, 34.62119134699978], [-77.39459745048197, 34.621249093516134], [-77.3946616177561, 34.62123553961317], [-77.39475310330457, 34.6212560726714], [-77.39491037626824, 34.62129151456279], [-77.39505581988179, 34.62144148007954]], [[-77.24578278076389, 34.59294039844711], [-77.24580288550115, 34.59300729970878], [-77.24594952348212, 34.59321797588325], [-77.2459928560296, 34.59323402478977], [-77.24602457970026, 34.59320450546028], [-77.24608274184871, 34.59319970582185], [-77.24624084918707, 34.5931605101772], [-77.24629368430668, 34.593115205619085], [-77.24632764092168, 34.59307643322137], [-77.24620560604856, 34.592973711564035], [-77.24625130151693, 34.592748827629315], [-77.24626604625576, 34.592732099690494], [-77.2461030681313, 34.59261696800801], [-77.24601868763648, 34.59282469485365]], [[-77.41781769405837, 34.7550539637331], [-77.41844848004057, 34.75496196518006], [-77.4188057709404, 34.75539930170567], [-77.41823590775297, 34.755695788036206], [-77.41819579358986, 34.7557151039556], [-77.41815020356154, 34.75572926047061], [-77.41811891821868, 34.7557952030256], [-77.4176947201617, 34.756392373782184], [-77.41761449318481, 34.75666019131375], [-77.41766544637007, 34.756876995713036], [-77.41774766842258, 34.757226840767714], [-77.41775764913314, 34.75726930780108], [-77.41776099089647, 34.757283526728294], [-77.41775441731191, 34.75735790062859], [-77.41772967347923, 34.75753907146726], [-77.41767236897176, 34.75764112660453], [-77.41756123840894, 34.75767021944104], [-77.4175057482258, 34.75761312324658], [-77.41740429261043, 34.757459518105854], [-77.41739018061446, 34.757438122455746], [-77.41731591920593, 34.75726942444521], [-77.41724435642811, 34.75708991002006], [-77.41730583762056, 34.757026921721405], [-77.4172201588069, 34.75698815365204], [-77.41707191376597, 34.756470555301526], [-77.41693453579603, 34.75628899443754], [-77.41687799742571, 34.75595533228051], [-77.4168559489323, 34.7558359882093], [-77.41692924487265, 34.75539847354879], [-77.41686501393067, 34.7552800705953], [-77.41681845367927, 34.75496071601857], [-77.41709449144483, 34.755208017150096], [-77.41770168612645, 34.75507642735667], [-77.41777495740145, 34.755073013453064], [-77.4177958441453, 34.75506166980276]], [[-77.37443405923817, 34.55912799829096], [-77.37457679607175, 34.559011894397685], [-77.37466806041243, 34.55909427723158], [-77.37460338304014, 34.55913229747708], [-77.3745767342575, 34.55919036283055], [-77.37445532543106, 34.55933721445133], [-77.37439492167292, 34.55936231131413], [-77.37435868868437, 34.55937379443913], [-77.37430968751504, 34.55928270095508]], [[-77.30927092129679, 34.55380865258502], [-77.3089879976227, 34.5536401755908], [-77.30882626425168, 34.55387248740227], [-77.30897960959675, 34.55399727059322]], [[-77.34824501945467, 34.62564572497825], [-77.34852995062231, 34.625645016100535], [-77.34857430816024, 34.6256466479655], [-77.34881403126805, 34.625667008976144], [-77.3488907813688, 34.625847776803155], [-77.34896552791236, 34.62601491670608], [-77.3489830067708, 34.626306610100194], [-77.34894563625082, 34.62637283080474], [-77.34865692719676, 34.62627675356759], [-77.34846991227151, 34.626348588910744], [-77.34821054639175, 34.62611860909607], [-77.34809745889388, 34.6259379877181], [-77.34816168386573, 34.625640878632375]], [[-77.39776527670315, 34.592331740702456], [-77.3977111393392, 34.592171303889586], [-77.39781629753918, 34.59205216379485], [-77.3978627028321, 34.592212725698744], [-77.39821037069888, 34.59209724981403], [-77.39826257653041, 34.59214879434073], [-77.39835672827611, 34.59219145980779], [-77.39838711948791, 34.59220892982607], [-77.39840740392069, 34.59221442379865], [-77.39847106041897, 34.592281108750214], [-77.39848056282247, 34.59230705687214], [-77.39852442738682, 34.592379552888445], [-77.39853331883111, 34.59251394086988], [-77.39826354395144, 34.59257216806419], [-77.39821035265976, 34.59255942440351], [-77.39808649699586, 34.592521575863714], [-77.3979752633083, 34.59249977615107], [-77.3978162838736, 34.592363863327485]], [[-77.36350396883185, 34.77096106674482], [-77.3634827515635, 34.77104547904793], [-77.36344403698143, 34.77098601613355], [-77.36323738903046, 34.77091225550727], [-77.36315930713275, 34.770867551596], [-77.36314711685435, 34.770870880838324], [-77.3630404719124, 34.7707077616484], [-77.36303077065848, 34.77068057681109], [-77.36318303703538, 34.770613622708616], [-77.36318944902887, 34.77056573596396], [-77.36336117257027, 34.77012800043979], [-77.3633694226048, 34.77011962824605], [-77.36342813272957, 34.76994191528115], [-77.36344884191014, 34.770147422073336], [-77.3635402262075, 34.77049971614302], [-77.36353761263709, 34.770737710758176]], [[-77.34477319596431, 34.688813335569584], [-77.34477349892603, 34.688809390246455], [-77.34477314053046, 34.6888087531358], [-77.34478201766699, 34.688782960926936], [-77.34477885922313, 34.68880796830061], [-77.34477964866508, 34.68881304523873]], [[-77.37850403826707, 34.527330125930334], [-77.37845124351827, 34.527452774402924], [-77.3785014054838, 34.52755898456126], [-77.37896814509308, 34.527555894979876], [-77.37880990829446, 34.527325374930925]], [[-77.45410407548151, 34.676815439082496], [-77.45419574672023, 34.67689508708605], [-77.45423681423654, 34.67701282981689], [-77.4544402880624, 34.67717651086186], [-77.45404245330855, 34.67725032715392], [-77.45411486139409, 34.67706276235128], [-77.45408461023496, 34.67692676497384]], [[-77.42518163147616, 34.62593776402734], [-77.42494522889967, 34.625950342271835], [-77.42467017101782, 34.625990178817304], [-77.42442513615309, 34.62610517039636], [-77.42420418977888, 34.626208857338185], [-77.42404711460887, 34.626282569806804], [-77.42379617564721, 34.6264402618493], [-77.42374982295732, 34.62647000444082], [-77.42368169105748, 34.62646437861633], [-77.42353036539518, 34.62655425460686], [-77.42327772259254, 34.62666632764795], [-77.42321836406383, 34.62664314373421], [-77.42325391206779, 34.62657927798518], [-77.42337719718388, 34.62635778131357], [-77.42346260802834, 34.62620432901383], [-77.42363148526668, 34.62603737587546], [-77.4237905797354, 34.62599008454589], [-77.42387043117427, 34.625949807465744], [-77.42391195572718, 34.625925518660075], [-77.42409078523258, 34.625794271252104], [-77.42433541135773, 34.62558643186024], [-77.42445218835138, 34.6254951719413], [-77.42451788043306, 34.62543344163941], [-77.42464004589317, 34.625251202021516], [-77.42474261852463, 34.625101182175314], [-77.42478243070843, 34.6249913129587], [-77.42482610127404, 34.624638047498436], [-77.4253300062108, 34.624566149918955], [-77.42533199208059, 34.624565303711584], [-77.42533450686044, 34.624565113073125], [-77.42588355601048, 34.62465952201316], [-77.426026629518, 34.6246290030885], [-77.42638713403015, 34.624578322431475], [-77.42647185551445, 34.6245420086131], [-77.42662411321228, 34.62448358616359], [-77.42674691256443, 34.62453010655528], [-77.42666485105967, 34.62463250227742], [-77.42661837774895, 34.62470481916128], [-77.42652148556651, 34.62477895510708], [-77.42645919100568, 34.62484172700016], [-77.42629742884166, 34.62490219946996], [-77.426124026298, 34.624967023226645], [-77.4259667283768, 34.624963565780675], [-77.42591239566718, 34.62507714605667], [-77.42584666280493, 34.62515584830447], [-77.42577346833266, 34.62533824478108], [-77.42552533458633, 34.625616633609766], [-77.4257116118754, 34.62592797512666], [-77.42571052793198, 34.625933101068334], [-77.42571096009559, 34.6259358286542], [-77.4257084798515, 34.62594160175971], [-77.42570261910505, 34.62593896319422], [-77.42569271019183, 34.62593817772107]], [[-77.36983589373585, 34.594393143536394], [-77.3695342949128, 34.59422320085706], [-77.36983628542643, 34.593357621258], [-77.37011170846668, 34.59414004004084]], [[-77.33459532409918, 34.65626135110305], [-77.33482702871865, 34.6562251941355], [-77.33493596345988, 34.65599670089392], [-77.33496120231828, 34.65596557136157], [-77.33496203364803, 34.656021038668975], [-77.33483815508062, 34.65622803661774], [-77.33482942562709, 34.65623712370211]], [[-77.43818144495636, 34.74120534226723], [-77.43818442253557, 34.74117724527996], [-77.43813615707938, 34.74117635169548], [-77.438114092992, 34.74120658662675], [-77.43801752346197, 34.74142758731169], [-77.43794236958045, 34.74150143140406], [-77.43792492100775, 34.74153499192021], [-77.437919019926, 34.74156937105677], [-77.43793833405746, 34.741614716221406], [-77.43795160305953, 34.741622588953796], [-77.438024256479, 34.741615223450935], [-77.43809179132394, 34.74159329321062], [-77.4381082559885, 34.741504614652], [-77.43814289034215, 34.74147138807092], [-77.43817158979213, 34.74123422367338]], [[-77.34877302635776, 34.65617892471553], [-77.34890465825039, 34.656171349378454], [-77.34902963770402, 34.65614096616784], [-77.3490950508605, 34.656115479915286], [-77.34916227207975, 34.65626475146833], [-77.34900991827655, 34.65628404643337], [-77.34892454599019, 34.656270246359], [-77.34884476593601, 34.65630201650315], [-77.34868211397803, 34.65635893371427], [-77.34872149900711, 34.65618697302761]], [[-77.39925448856674, 34.595734405046045], [-77.3991212140585, 34.595770033330446], [-77.3991289430883, 34.59561725828695], [-77.39914938676341, 34.59547369097103], [-77.39915195194206, 34.5953079227047], [-77.39915331216919, 34.595215412076385], [-77.3991954771708, 34.59518589634868], [-77.39921840148898, 34.59522674875005], [-77.39930679459368, 34.59535862743927], [-77.39931035738192, 34.595450467726266], [-77.39937439760729, 34.59546074810011], [-77.3993925149912, 34.59549183938287], [-77.39953182158082, 34.59563080356189], [-77.39939250973646, 34.59572600063083]], [[-77.22263924309988, 34.612708171420664], [-77.22271610602719, 34.612572264437226], [-77.22272433266632, 34.61256843525395], [-77.22298808363503, 34.61248548969543], [-77.22300797473308, 34.612472988500286], [-77.223107990794, 34.612427794270985], [-77.22312922653644, 34.612410764508866], [-77.22311108691802, 34.61236328867535], [-77.2231184611912, 34.61227273138125], [-77.2232376781803, 34.61218652138419], [-77.22295186595161, 34.612124508622124], [-77.22293306231042, 34.612128173741525], [-77.22256840763562, 34.61232044345765], [-77.22259467577834, 34.61246422513294], [-77.22261972412453, 34.61260133262218]], [[-77.45064553284892, 34.61235943629029], [-77.4506433735358, 34.612362016942654], [-77.45063659420819, 34.61236596327199], [-77.45042927217202, 34.61252965026019], [-77.45026643034197, 34.612471529879116], [-77.45035846175843, 34.61227104099811], [-77.45036022679062, 34.612262947408084], [-77.45036312190467, 34.61225932551801], [-77.45055794166775, 34.612039543355415], [-77.45075286595967, 34.61209062881474], [-77.45080967370161, 34.61199887900683], [-77.45085298971865, 34.612119619554214], [-77.45084563922396, 34.61213022839879], [-77.45070193095489, 34.61229540263294]], [[-77.33286666788055, 34.57069001846919], [-77.33281058225722, 34.570757724150916], [-77.33266895217298, 34.570930146693684], [-77.33254371615524, 34.57096343927731], [-77.3325266858509, 34.57079717689389], [-77.33263647965433, 34.57066273189082], [-77.33267466360965, 34.570510560672844], [-77.33281097892805, 34.57028485359304], [-77.33310235932206, 34.570281790844035], [-77.33289450899765, 34.570625642887315]], [[-77.4418103236418, 34.685871979307294], [-77.44181076714077, 34.68587134406388], [-77.4418116029565, 34.685869570881756], [-77.44186385735556, 34.68577119714985], [-77.44196355104793, 34.68580800942432], [-77.44197279008365, 34.685866142225386], [-77.44199258707414, 34.68593519258893], [-77.4419851113883, 34.6860222127586], [-77.44198093096423, 34.68607087608201], [-77.44197501160394, 34.68613978183585], [-77.44180128999162, 34.68609895480968], [-77.44184753330842, 34.68602423854533]], [[-77.38951765936774, 34.51100692368138], [-77.38899005082374, 34.511074390987744], [-77.38904487175516, 34.511365075004946], [-77.38912067508782, 34.51146881996962], [-77.38925102034068, 34.5114742599802], [-77.38941515810782, 34.51142632904711], [-77.38949711371002, 34.51132105160367]], [[-77.37312990798135, 34.67875401147487], [-77.3731387369825, 34.67857629319997], [-77.37319804996602, 34.67851907271847], [-77.37343294849923, 34.67853584155246]], [[-77.3645687110804, 34.68264016987596], [-77.36509759196946, 34.682571446673954], [-77.36492410523172, 34.68236656787727], [-77.36474032733396, 34.682254775240494]], [[-77.34247549941892, 34.53838737445904], [-77.34248250423481, 34.5384085070798], [-77.3424722436413, 34.538510252286784], [-77.34247240364417, 34.53860705892828], [-77.34246386023193, 34.538663955997926], [-77.34266670718203, 34.538727095301724], [-77.34265428819111, 34.53876122124123], [-77.34265611596676, 34.53894488344833], [-77.34268795233798, 34.538968857914064], [-77.34268125059553, 34.53898216482686], [-77.34269929349156, 34.539057899564696], [-77.34273974467906, 34.53898559233262], [-77.34274791558403, 34.53896023139653], [-77.34276005001279, 34.53874708047258], [-77.34280485561408, 34.53870722061309], [-77.34278840214793, 34.53865975007833], [-77.34277349762424, 34.538466913103576], [-77.34271596044312, 34.53833613748833], [-77.34268138976677, 34.53825802956226], [-77.34266338809981, 34.53823793491567], [-77.34252403960727, 34.538147259553014], [-77.34249799404958, 34.53826172890901], [-77.34248224908256, 34.538363455054885]], [[-77.34387577790767, 34.53911086887255], [-77.34375850727137, 34.539233104180006], [-77.34359617229083, 34.53949665220713], [-77.34354790591065, 34.53957959732319], [-77.34353227216175, 34.53961976944352], [-77.34346971127037, 34.539695620966974], [-77.34327702044608, 34.53999231077268], [-77.34325856843556, 34.5401108617872], [-77.3433327464919, 34.54017865143156], [-77.3434296940537, 34.54033106183379], [-77.34342966485312, 34.54034666826777], [-77.3434543384695, 34.54036161691913], [-77.34373126736364, 34.540359820252455], [-77.34395346498957, 34.54032157913459], [-77.3442421618619, 34.54024574298228], [-77.34428455291297, 34.54020807273391], [-77.34424507496755, 34.540119486925406], [-77.34420767984376, 34.53999936245517], [-77.34417565048673, 34.53997892151543], [-77.3441940280489, 34.5399418876841], [-77.34425194116963, 34.53982190124172], [-77.34427195212358, 34.539731424409865], [-77.34428152955766, 34.53971886888762], [-77.34425734536131, 34.539587680462844], [-77.34424556485357, 34.539488004833146], [-77.34421848639485, 34.53948311976904], [-77.3441893546628, 34.539442825501695], [-77.34406532405873, 34.53926033637535], [-77.34416446121264, 34.539182314657616], [-77.34413599127772, 34.53908821732359], [-77.34393330114503, 34.53906979400088]], [[-77.34536254481792, 34.53074981980146], [-77.34539540920386, 34.53083936095164], [-77.34541986276916, 34.530876338178814], [-77.34555662291761, 34.53091784033238], [-77.3456329914488, 34.530715061527815], [-77.34563682077174, 34.53071035253163], [-77.34563332170929, 34.5307067849978], [-77.34550828086671, 34.53056808293544], [-77.34533232215564, 34.53056025684887], [-77.3453989941993, 34.53065078135075]], [[-77.36996326071909, 34.51664288586982], [-77.37021401011462, 34.516342901426356], [-77.37041157454783, 34.516303422514504], [-77.3706652651392, 34.516562492482365]], [[-77.44191542061779, 34.68448887683093], [-77.4419093149902, 34.68453707494098], [-77.44191167408167, 34.68464907549685], [-77.44189911250125, 34.6847188896136], [-77.44192207165129, 34.68493175836875], [-77.4417486043576, 34.68478172487628], [-77.4417409631831, 34.68463575252859], [-77.44175954940113, 34.684595889595045], [-77.44173808226395, 34.68456291356268], [-77.44175590465682, 34.684473255696076], [-77.44181654120337, 34.684476056259655], [-77.44183242787173, 34.68441140930912]], [[-77.33289298339426, 34.53444010284885], [-77.33327044809778, 34.53427655591536], [-77.33312966408164, 34.53455534672714], [-77.33289133786728, 34.5345633502086]], [[-77.30309535341502, 34.55376474430086], [-77.30293027272522, 34.553984332990865], [-77.30286114912185, 34.554097933866736], [-77.30288281732867, 34.554118458016106], [-77.3028921997558, 34.55411305932957], [-77.30309057080015, 34.5539677398803], [-77.30312425884208, 34.55395649440241]], [[-77.42420845375501, 34.52521844998983], [-77.42424689009451, 34.52512573904825], [-77.42426781051257, 34.525090828083286], [-77.42430760770287, 34.52501836622684], [-77.42445451975081, 34.52498076520615], [-77.42444231758923, 34.525083831409134], [-77.42435348305705, 34.525110329000924], [-77.42441096109013, 34.52513453582369], [-77.42434921565979, 34.52523336772507], [-77.42433943296935, 34.525282102029635], [-77.4241622274546, 34.52532306139269], [-77.42419067805474, 34.52525628726964]], [[-77.35204277726488, 34.72974913745426], [-77.35201953067435, 34.72974808038026], [-77.35188514051261, 34.72977641084417], [-77.35185479449603, 34.72975152158966], [-77.35190261633785, 34.72971624369682], [-77.35203137072179, 34.72970836506522], [-77.35205375200873, 34.72971135250637], [-77.3520662708303, 34.729712125031305], [-77.35211839652936, 34.72971534159574], [-77.35210526318222, 34.729773836878294]], [[-77.43831072069784, 34.743766150226996], [-77.43833037164055, 34.74379478896085], [-77.43835054627834, 34.743811376038], [-77.43838323730589, 34.74382289055364], [-77.43838130832042, 34.74379081131326], [-77.43837462487018, 34.74377632705114], [-77.43837048866126, 34.743742464427605], [-77.43831673466713, 34.74371427625203]], [[-77.42434598320713, 34.74332581835275], [-77.42443868701008, 34.74313618323045], [-77.42443872531871, 34.74333975456623], [-77.42466865660741, 34.743449262448344], [-77.42467281275353, 34.743472994645664], [-77.42468885615811, 34.7436818159491], [-77.4246691353639, 34.74375124292153], [-77.4246322426454, 34.74379350759841], [-77.42455369973388, 34.743846259827315], [-77.42455084912363, 34.7438474955249], [-77.42442455733939, 34.74379204093333], [-77.42441486130369, 34.74377209488994], [-77.42436264601176, 34.74364412456158], [-77.42436241667662, 34.74359476758784], [-77.42435256814817, 34.74343358883166], [-77.42434985075958, 34.743376819445274], [-77.42434610616657, 34.74335880973688]], [[-77.39624413685415, 34.62284692284469], [-77.39623840584267, 34.622838786389096], [-77.39620420944034, 34.622683403566185], [-77.39616336658368, 34.6226524575607], [-77.39623841573135, 34.622595384707125], [-77.39626108907268, 34.62261394512875], [-77.39629666216116, 34.62263323495087], [-77.39637074931565, 34.622692310161526], [-77.3964355199962, 34.622742026153404], [-77.39649204062711, 34.62275647185723], [-77.39657732679142, 34.62295777829413], [-77.39657472004484, 34.62301770708153], [-77.39643550523334, 34.62312971726541], [-77.3963781116849, 34.62304606046959], [-77.39631989727835, 34.62296668486266], [-77.3962476926376, 34.622862585459], [-77.39624138545415, 34.62285349222563]], [[-77.39639008333418, 34.530669914301576], [-77.39641601501022, 34.530578472650014], [-77.39655970337282, 34.53054143067152], [-77.39657651957266, 34.53065651676729]], [[-77.42093211074533, 34.56855229525652], [-77.42092952383211, 34.56841071602828], [-77.4209438797767, 34.568338302203685], [-77.42106118768464, 34.56818230453403], [-77.4211337448236, 34.568176775482975], [-77.42135658136289, 34.5681726028248], [-77.42137121041347, 34.56839833852219], [-77.42139234616593, 34.56848579651976], [-77.4212582584398, 34.56860057803215], [-77.42118089195463, 34.56864525086163], [-77.42113209484734, 34.56865938536259], [-77.42106128847807, 34.56864572182975], [-77.42100208603532, 34.56860598012398]], [[-77.43532521954614, 34.62073418938475], [-77.43523440697231, 34.62068958643762], [-77.43517424318003, 34.62065153060841], [-77.43512569573632, 34.62059390950725], [-77.43511155915158, 34.62055398023156], [-77.43519117903386, 34.620462082381174], [-77.43523278442304, 34.620396409918044], [-77.43528329725092, 34.62043582630676], [-77.43537186457694, 34.620521586212874], [-77.43543971246598, 34.6205758647366], [-77.43570033580355, 34.620760047677564]], [[-77.44233223925755, 34.617687942797644], [-77.44236523759582, 34.61764132780563], [-77.44249861307954, 34.61764050958743], [-77.44239570610274, 34.61775263520866]], [[-77.33953639056946, 34.76201329447914], [-77.33952326271525, 34.76203050389738], [-77.33950624081034, 34.76203647343159], [-77.33947186661248, 34.76198497292511]], [[-77.44178491366445, 34.68508142030737], [-77.44192210968663, 34.684933489400294], [-77.4419077445031, 34.685161694514896], [-77.4419077694375, 34.68520674534497], [-77.44191690092049, 34.6852971404653], [-77.44181279032881, 34.685311514876304], [-77.4418000843841, 34.685206641102354], [-77.44179533475058, 34.685167436215615]], [[-77.44195319253299, 34.685730288639974], [-77.4418600886771, 34.685701908815346], [-77.441850094443, 34.68563217133105], [-77.44184138808794, 34.685547556619014], [-77.44192688987935, 34.68560011044107]], [[-77.45594949530143, 34.598114461593774], [-77.45593595105568, 34.59812249433942], [-77.45551099378801, 34.59845063985906], [-77.45522541693421, 34.59831757894763], [-77.45507633417859, 34.59825940385463], [-77.45510475524864, 34.59812857303373], [-77.45511899798694, 34.59797889544528], [-77.45511902473964, 34.5979787195485], [-77.4551190195926, 34.597978668389224], [-77.45511913648541, 34.597978452558465], [-77.45519185859256, 34.59784935839063], [-77.45524405416278, 34.59782567607563], [-77.45533825570996, 34.5978197881992], [-77.45544616367035, 34.59780709597476], [-77.45553764982745, 34.59785924303821], [-77.45569674757002, 34.59795783556601], [-77.45594358826449, 34.59811080107492], [-77.45594486504461, 34.59811159228759]], [[-77.44510145844848, 34.74641785525574], [-77.44529206073824, 34.74641480316636], [-77.44542261646237, 34.74653003147259], [-77.44525459809259, 34.74654429273699]], [[-77.39640777966564, 34.531622324760846], [-77.39637266112733, 34.53155064364008], [-77.39653458698571, 34.53152627186178], [-77.39647527040276, 34.53160053609599]], [[-77.39584548292368, 34.62227372810659], [-77.39584421042949, 34.62227653938589], [-77.39584100704556, 34.62227437356127], [-77.39583348539364, 34.622263906785534], [-77.39584421061772, 34.622272413058774]], [[-77.44158711434368, 34.73820247714625], [-77.44158313069438, 34.73817980188759], [-77.44150176534006, 34.73800754150345], [-77.44146362755613, 34.738013089742125], [-77.44145176702227, 34.73802840313387], [-77.44156687298167, 34.73819540556882], [-77.44157492422258, 34.73820816518561]], [[-77.35665986106633, 34.57037730505588], [-77.35658519047264, 34.57033556727916], [-77.35644992481173, 34.5702914950249], [-77.35630017065876, 34.570443080704266], [-77.35636334094798, 34.57055311819574], [-77.35640547289977, 34.570640199379625], [-77.35642286144216, 34.570666635169005], [-77.35644969210912, 34.570710462918846], [-77.35646344500144, 34.570646636772224], [-77.3566157750455, 34.57060992843668], [-77.3567373148972, 34.57047768347901]], [[-77.43588998938057, 34.62100138709353], [-77.43590498270635, 34.620931470005736], [-77.43594940157783, 34.62098445279665], [-77.43595880447945, 34.621128140194855]], [[-77.38325066018231, 34.588638146805415], [-77.38327544066544, 34.58867683835212], [-77.38330590244153, 34.58873632531489], [-77.38332361829319, 34.58874572619914], [-77.38330729909636, 34.58881274430274], [-77.38326745339799, 34.58881431813106], [-77.38323619147744, 34.58877694731934], [-77.38321936726147, 34.58874879879045], [-77.38323096479355, 34.58864664809582], [-77.38323063546761, 34.58864103324096], [-77.3832362305726, 34.58860026732008]], [[-77.33289805540696, 34.577529678521124], [-77.33280490933348, 34.577541368533176], [-77.33278974083714, 34.57753946245819], [-77.33280491690488, 34.57753228943988], [-77.33289690042416, 34.57751702022025], [-77.33291198484505, 34.57751268327031], [-77.33290910122176, 34.57752842266379]], [[-77.4356738446599, 34.621801480175996], [-77.43568034163475, 34.621837065597], [-77.43572668829333, 34.621878729086916], [-77.43571116726869, 34.62193524789988], [-77.43569727276376, 34.62197942396772], [-77.43569236066342, 34.6219961313471], [-77.4356831119109, 34.62204198294542], [-77.43563655883358, 34.62202643336931], [-77.43562937689195, 34.62199877601119], [-77.43561025941855, 34.62196739719959], [-77.43556711532504, 34.62192421146146], [-77.43558496803253, 34.621860942254116], [-77.43559997711871, 34.62182253435242], [-77.43561372913007, 34.62178845150967]], [[-77.33323196099425, 34.53127063680331], [-77.33326147576244, 34.53129512280124], [-77.3333600278605, 34.53125222171173], [-77.3332644341844, 34.53116765034442]], [[-77.34097756518841, 34.62605677900585], [-77.34095900544413, 34.6261967659968], [-77.34086694357751, 34.62607196514435], [-77.34092309807389, 34.626018034581875]], [[-77.34394521178878, 34.62911126053126], [-77.34394830650466, 34.62904621938367], [-77.34400477220248, 34.62901715531514], [-77.34407828809331, 34.62897705959161], [-77.34410626528738, 34.62900322001892], [-77.34409113168121, 34.62904097416409], [-77.34406986817585, 34.62915972338728], [-77.34400420585942, 34.62922823258338], [-77.34397482001992, 34.62925860315997], [-77.34386595441946, 34.629247214744545]], [[-77.37763070467909, 34.63147971869402], [-77.37755572769737, 34.63144188834991], [-77.37751057150038, 34.63142719801641], [-77.37748914499497, 34.631393968915255], [-77.37751059343867, 34.63134259408964], [-77.37754461530005, 34.631316467412276], [-77.37765039711536, 34.631326339972], [-77.37770770877393, 34.63140910148405], [-77.3779046084075, 34.631440264594644], [-77.37770767765869, 34.631530231078486]], [[-77.34259140480201, 34.539161779508035], [-77.34259180254934, 34.539170512730635], [-77.34262765590009, 34.5391794258356], [-77.34266593425423, 34.53911442484095]], [[-77.32144388736062, 34.643404921366006], [-77.32143997927852, 34.64339476525423], [-77.32146406115645, 34.643365001674205], [-77.32150690982634, 34.64345727555698]], [[-77.37516782989664, 34.5585737055552], [-77.37518739349971, 34.55859487472681], [-77.37522555251519, 34.5586516164269], [-77.37516777742606, 34.55872823750218], [-77.3751101501437, 34.55860600641737]], [[-77.3636279181856, 34.59008837935663], [-77.36362884056203, 34.59008281926818], [-77.3636404342671, 34.5900731005914], [-77.36365125021479, 34.59010374616476]], [[-77.34269071411465, 34.52721714744677], [-77.34267834136257, 34.52721732745187], [-77.3426757300136, 34.52721930331669], [-77.34267693257584, 34.527278320967746]], [[-77.223880386818, 34.6560450579475], [-77.22417715527936, 34.65595184222736], [-77.22407752290479, 34.655804604188845], [-77.2241082201734, 34.65559550840469], [-77.22151371502652, 34.655602339395216]], [[-77.26233582493151, 34.589964877605695], [-77.26244955655633, 34.58986920862816], [-77.26353327082424, 34.58915290876084], [-77.26405757156995, 34.58886705468162], [-77.26413155878475, 34.58825728754259], [-77.26520638184485, 34.587752540221395], [-77.26568092319278, 34.587681758674734], [-77.26601366200153, 34.58746261930223], [-77.26610524201547, 34.58740187229444], [-77.26607699741353, 34.58715096657317], [-77.26594654168295, 34.58698600584479], [-77.26575377955677, 34.58667040735707], [-77.26546778629088, 34.58664430961589], [-77.26544487757533, 34.58647522139273], [-77.26520146374196, 34.586009219353386], [-77.2649683329763, 34.585495074823925], [-77.26519698616735, 34.58462253682194], [-77.26536881800381, 34.58458389637043], [-77.26648429840827, 34.58445289682192], [-77.26704642353873, 34.58411490070844], [-77.26751928066267, 34.58405885956295], [-77.26776959291564, 34.58382999147917], [-77.26980236575213, 34.58346030478877], [-77.27117849030714, 34.582611705681316], [-77.2716654164382, 34.582488246045784], [-77.27198545518986, 34.582276038759424], [-77.27398029109293, 34.58191795076491], [-77.27430733215499, 34.58151582869546], [-77.27523317891708, 34.58078151559563], [-77.27540355410557, 34.58065929484138], [-77.27545940516899, 34.58060453022107], [-77.27564063448023, 34.58045533166554], [-77.27627524904636, 34.580015657515304], [-77.27701544560226, 34.580113733114885], [-77.27742920669328, 34.580252037811334], [-77.27829573916537, 34.580886471671406], [-77.27849126592474, 34.58103049346195], [-77.27864397957617, 34.581183531566126], [-77.27870554239568, 34.5813899852091], [-77.27837469052852, 34.58180905091483], [-77.27836197989306, 34.581834331824915], [-77.27821727611217, 34.582027422425945], [-77.27770299087632, 34.5825993723438], [-77.27763542204399, 34.58271992501917], [-77.27750342553723, 34.58287037871483], [-77.27689195416689, 34.58450681102865], [-77.27680559999428, 34.584540062614664], [-77.2768029344189, 34.58460258269043], [-77.2743379916975, 34.58623151170285], [-77.27452525172782, 34.58765971220467], [-77.27417102797631, 34.58810373830046], [-77.27334734051074, 34.5888366543935], [-77.27234610241004, 34.58984566087422], [-77.27168646408549, 34.59039300492569], [-77.27050251857985, 34.590615023906544], [-77.26750081437885, 34.59192884002857], [-77.26636216166816, 34.592133819218326], [-77.26497298506632, 34.59230996416775], [-77.2639462961723, 34.59235800404123], [-77.26295867230081, 34.59219566985861], [-77.26198391702991, 34.5922808857142], [-77.26130749633666, 34.59274854481214], [-77.26110579320348, 34.59281448680461], [-77.26087367179228, 34.59350869747327], [-77.26086625210732, 34.59365651226619], [-77.26074253478141, 34.59380594311488], [-77.26042343796578, 34.59387393491048], [-77.26025016900725, 34.59374218269798], [-77.25970667747956, 34.59356529011592], [-77.25911344292005, 34.593433030710294], [-77.25954969297823, 34.59274516880417], [-77.26065867922995, 34.592697506561414], [-77.26044568367533, 34.59219931777781], [-77.26119399710643, 34.59157843090166], [-77.2615657064579, 34.590883502889696], [-77.26230633936947, 34.59003286649277], [-77.26230041954885, 34.58999861984519]], [[-77.37658136423951, 34.533702059581366], [-77.3767690548647, 34.533699009283666], [-77.37697545889557, 34.53363329849493], [-77.37710148859401, 34.53360143483722], [-77.37737117391057, 34.533493057739506], [-77.37776045092521, 34.5334311877975], [-77.37776512754348, 34.53343043505594], [-77.37776870324062, 34.53342930613094], [-77.37778345662015, 34.53342496491989], [-77.37816117910192, 34.533275239521714], [-77.37835615522162, 34.53334239989436], [-77.37815544389628, 34.53352822802102], [-77.37811944745845, 34.53359991791382], [-77.378106704376, 34.533623192918164], [-77.37806744802577, 34.53368156841247], [-77.37786046340348, 34.53397062399928], [-77.37763971796582, 34.53418017513656], [-77.37735172978876, 34.534350414909355], [-77.37707085363368, 34.534436155494944], [-77.37695636914593, 34.534474856670855], [-77.37680424584983, 34.534450217291734], [-77.3765636997856, 34.53448062351371], [-77.37621140886833, 34.53460405465758], [-77.3762640835854, 34.534378483245725], [-77.37598322616883, 34.5340508396891], [-77.37600444221596, 34.533926252641095]], [[-77.36078989468457, 34.570865119079045], [-77.36104873344465, 34.570959464089775], [-77.36117725719077, 34.57114362955356], [-77.36123711728108, 34.571218299427656], [-77.36117708788434, 34.571483481654994], [-77.36114498534373, 34.57162159932359], [-77.361118389092, 34.57165994774482], [-77.36100635370568, 34.57185985605041], [-77.36083756008559, 34.57218399543053], [-77.36071430219098, 34.57221642113683], [-77.36038892084343, 34.57187178785402], [-77.36028029907834, 34.57189764494666], [-77.36018329720567, 34.57179457567432], [-77.359974089035, 34.57142285186928], [-77.35975485486985, 34.571172611269866], [-77.3596351083666, 34.571024390776735], [-77.35960920781264, 34.57101969229293], [-77.35960139061629, 34.571013343353705], [-77.35947094834577, 34.57090740114745], [-77.35940049899173, 34.57085018381881], [-77.35935575704183, 34.57079979481258], [-77.35923009765183, 34.570658144701625], [-77.35924098108393, 34.57062062004468], [-77.35934142829859, 34.57036161806157], [-77.3594759729175, 34.5703337235354], [-77.35960176412166, 34.57029166471972], [-77.35972623398598, 34.570296296682535], [-77.35985039162799, 34.57030091696578], [-77.35999565854084, 34.57045767796414], [-77.36003773906207, 34.57049650390037], [-77.3600639259503, 34.57053810144644], [-77.36008636888484, 34.570632716101514], [-77.36013334186018, 34.57095266107508], [-77.36014881093067, 34.57111583353578], [-77.36006237098282, 34.57131506986055], [-77.36020441097513, 34.571167771586175], [-77.3603893412781, 34.57104337479013], [-77.36045445488564, 34.57097655954208], [-77.3607775432923, 34.570866239314945], [-77.36078341492394, 34.57086315327532]], [[-77.2475956502579, 34.60256098859385], [-77.2501174832414, 34.60276094148185], [-77.25075054557172, 34.60299162477794], [-77.25106062437246, 34.60306130282209], [-77.25288616608184, 34.603398052344886], [-77.25084441717922, 34.60340744318369], [-77.25055213080668, 34.6033836382019], [-77.24916409736825, 34.603771218481214], [-77.24706577161015, 34.603607783128716], [-77.24664335264809, 34.60324520518695], [-77.24636777042952, 34.602884778103736], [-77.24639707801052, 34.60208141141902]], [[-77.33175515770152, 34.684285058874764], [-77.33172267915054, 34.68428572908741], [-77.33166327802272, 34.684313230879354], [-77.33108550357561, 34.684418572294], [-77.3307577077569, 34.68422166880106], [-77.3305690963114, 34.68413582717057], [-77.33031794781584, 34.68416586695166], [-77.3301946293394, 34.68417779548997], [-77.32994179982802, 34.684234668750925], [-77.32950867917836, 34.684566820234515], [-77.32979463818482, 34.6847410595909], [-77.32995070884559, 34.68484250265982], [-77.3303198540322, 34.68492729872292], [-77.33034119312644, 34.684920074285664], [-77.33035411261172, 34.684938266328004], [-77.3306784261862, 34.68507089776379], [-77.33087934548804, 34.68512800619648], [-77.33142593083329, 34.68528407103368], [-77.33144616380687, 34.685287847535946], [-77.33199691240078, 34.685401897985216], [-77.3322870514419, 34.685409831002865], [-77.33315293129552, 34.685524774971974], [-77.3331582603828, 34.68552512890458], [-77.3331637434918, 34.68552360982308], [-77.33435948994983, 34.68531804704666], [-77.33439357308215, 34.684577428291306], [-77.33410110354556, 34.68442441170588], [-77.33407834693581, 34.684418606215345], [-77.33372228852653, 34.68430563377717], [-77.33353156783603, 34.68424036557431], [-77.3331939771675, 34.68428435358151], [-77.33291777143046, 34.68429277568075], [-77.3326975859368, 34.684305741486725], [-77.3323158780397, 34.684304212519784]], [[-77.4240212483204, 34.50100052549957], [-77.42332809296403, 34.50120842586293], [-77.42327394324957, 34.50123140096052], [-77.42322670840333, 34.501246341003245], [-77.42305225231705, 34.501287484106484], [-77.42304077586577, 34.501193749190506], [-77.42311293992474, 34.50115313042189], [-77.42319418146414, 34.50112720066949], [-77.42353485049092, 34.500764069504264], [-77.42373457602032, 34.50064026878922], [-77.42380346203758, 34.500597569227054], [-77.42393849430643, 34.50056406205214], [-77.42416868885711, 34.50047803561283], [-77.42434259756857, 34.50040105181861], [-77.42466859731778, 34.50044365078864], [-77.42461445812593, 34.500598586421354], [-77.42455031336414, 34.500663556290135], [-77.42453670093019, 34.50076350108185], [-77.42445906791747, 34.50082764161131], [-77.42435090949566, 34.50086370227781], [-77.4242330779256, 34.50091687932166]], [[-77.34619518139075, 34.629954127502685], [-77.34598665846724, 34.63011847599902], [-77.34580365420643, 34.63011132152254], [-77.3456292702927, 34.63032369425201], [-77.34538706263938, 34.63038957919923], [-77.34535326615917, 34.63073099379054], [-77.34520881041352, 34.63089036925089], [-77.34513133886539, 34.63103154814246], [-77.3450296364513, 34.63086552384189], [-77.34497204741547, 34.630783339239585], [-77.34463908437772, 34.63049074390019], [-77.34456898155422, 34.630416683886], [-77.34445192638893, 34.6302872798548], [-77.34440411873881, 34.63013904268553], [-77.34445208992673, 34.63001073451551], [-77.3445796797661, 34.62987926986786], [-77.34475764771892, 34.62980190484014], [-77.3448658236245, 34.6297103444079], [-77.34534440303617, 34.62968252833657], [-77.34546469726484, 34.62950480147876], [-77.345861982743, 34.62921714985112], [-77.34603034001117, 34.62913392314248], [-77.34619649704777, 34.6291436788765], [-77.34635178550883, 34.628905880291306], [-77.34607179841576, 34.628801622574635], [-77.3459678491549, 34.62882298160164], [-77.34583340919467, 34.628804671163], [-77.34552898736511, 34.62872839639034], [-77.34520948154164, 34.628234847929306], [-77.34520262815941, 34.62822650633807], [-77.34520226815066, 34.62821973044901], [-77.34520173803126, 34.62821488368102], [-77.34519758014163, 34.628175625050595], [-77.3451428793903, 34.62749270454769], [-77.34522248272455, 34.62737295512251], [-77.34517655086455, 34.626856920125604], [-77.34542050424098, 34.626501762883166], [-77.34503538423174, 34.62626129820843], [-77.34481739906727, 34.62628375162812], [-77.34445670957132, 34.62618478072841], [-77.34396155418676, 34.62609154856425], [-77.3437247120527, 34.62589061584433], [-77.34353210428768, 34.62579385365533], [-77.3433004032256, 34.625105794043975], [-77.34329997627506, 34.62510539239118], [-77.34330013726967, 34.625104913783126], [-77.34330017892067, 34.62510485981982], [-77.34330021417455, 34.62510485316035], [-77.34330224317735, 34.6251009030543], [-77.34353125816904, 34.62466177257929], [-77.34353414093327, 34.62465609149392], [-77.3438048821751, 34.62467956184962], [-77.34385025709676, 34.62465643964315], [-77.34388289202856, 34.624648129504614], [-77.3441124746723, 34.62464448676856], [-77.34418380466511, 34.62472351002485], [-77.34431037234229, 34.62471368090381], [-77.34449464097143, 34.624677551433805], [-77.34466627961834, 34.62469589297632], [-77.34497902129816, 34.62467080990119], [-77.34513045175119, 34.624655999405206], [-77.34525482076248, 34.6245947262899], [-77.34529952061615, 34.624589976120795], [-77.34543437536242, 34.62457564524603], [-77.34557559577931, 34.62456063771272], [-77.34560583614645, 34.62455742404636], [-77.34576892100202, 34.62464767446138], [-77.34585397872816, 34.624640083466545], [-77.34615458953739, 34.624712958510415], [-77.34602557035898, 34.624980793274794], [-77.34599095654349, 34.62557942987044], [-77.34623705554446, 34.62617785550171], [-77.34671649289014, 34.62617741268012], [-77.34683996507897, 34.62630683884566], [-77.34708219840466, 34.62680052274689], [-77.34742574007372, 34.62707039451686], [-77.34749495971919, 34.627131295140984], [-77.3475798570541, 34.62728799405061], [-77.34759434696949, 34.62711277367517], [-77.34804440108998, 34.62719136316158], [-77.34820069433565, 34.62719183772715], [-77.34843502489481, 34.62723048480856], [-77.34858624639291, 34.62726647548973], [-77.34862232319928, 34.62740535662673], [-77.34860198207946, 34.62759584756323], [-77.34860575387884, 34.62772348455292], [-77.34856416413275, 34.62775804763576], [-77.34841534960873, 34.627879311605255], [-77.34835052723486, 34.627937287597355], [-77.34818334127313, 34.628064470920485], [-77.34787968909725, 34.62804638928587], [-77.34782651536428, 34.62828135676973], [-77.34778729523076, 34.628320078645096], [-77.34755897822015, 34.62841415723768], [-77.34741835613153, 34.628759411289536], [-77.34733104449779, 34.628868548979334], [-77.34733442272106, 34.629192938940655], [-77.34732521762521, 34.62920617680506], [-77.34706965783818, 34.62929170917984], [-77.34705165322109, 34.6294376592977], [-77.3469895649723, 34.62966229829179], [-77.34688548907747, 34.62978696615458], [-77.34685053021227, 34.629892391708275], [-77.34682764724886, 34.62991572726188], [-77.34672873459739, 34.629974215792004], [-77.34660599044915, 34.630040173481646], [-77.34651967761059, 34.62997604209048], [-77.34639466003024, 34.629995909273966]], [[-77.38453897265502, 34.6582165564868], [-77.38452829402247, 34.65824185516861], [-77.38388709190495, 34.658159744965076], [-77.38363894419031, 34.65807934451582], [-77.38350193671499, 34.65803406898779], [-77.38314074146858, 34.65763415264839], [-77.38312495477703, 34.65761171877721], [-77.38309931228362, 34.65757607207435], [-77.38277783510739, 34.657170623770824], [-77.38271937517061, 34.6568234903704], [-77.38259712596287, 34.65644080026934], [-77.3825906956916, 34.656419179225466], [-77.38258500923831, 34.6564035252704], [-77.38242316826938, 34.65602021259002], [-77.38233288271184, 34.65575396153858], [-77.3822704878395, 34.655469240982356], [-77.3822680763682, 34.655197518326105], [-77.38230202658512, 34.6550610897085], [-77.38235563944204, 34.654881742896094], [-77.38244501452601, 34.65438247617361], [-77.38244533064747, 34.65432909432297], [-77.38244563210631, 34.6542987610734], [-77.38245225166277, 34.65421755208533], [-77.38264788222921, 34.653980403371456], [-77.38309079736506, 34.6542335786945], [-77.38309693278606, 34.654238801009775], [-77.38309720948155, 34.65423911433221], [-77.38309792148344, 34.654239297825576], [-77.38367484919301, 34.65424351279613], [-77.38375034553297, 34.654303372930606], [-77.38415076858357, 34.65444951970407], [-77.38448919300735, 34.654791871366136], [-77.38484833756499, 34.6548424588538], [-77.38497595614126, 34.655112576627545], [-77.38507109339663, 34.655655840830796], [-77.38533014842382, 34.65578695358924], [-77.38585783667247, 34.65566328342259], [-77.38603297483897, 34.65564375924957], [-77.38649419662943, 34.655207562577516], [-77.38780434531738, 34.655961942754644], [-77.38795556787935, 34.65546049972626], [-77.38811345852417, 34.65591010268715], [-77.38819863995606, 34.65606786139019], [-77.38800952487055, 34.656153287581446], [-77.38797689582607, 34.65620907462545], [-77.38794057750238, 34.65742273270385], [-77.38730686571392, 34.657388589752166], [-77.38692267806445, 34.65733336792894], [-77.38643897336449, 34.657155664924], [-77.38634565474041, 34.65699508217105], [-77.38609531410577, 34.65703566990123], [-77.38595021755225, 34.657222930168984], [-77.38571826419934, 34.657350928493294], [-77.38567759053876, 34.65751081332197], [-77.38530020574885, 34.65762794173144], [-77.38460653267146, 34.65814341464145]], [[-77.35600383401497, 34.550762522645286], [-77.3559145975874, 34.550861852825484], [-77.3557721469879, 34.551025710521735], [-77.35575792781395, 34.5510339979909], [-77.35573679321259, 34.55104578845292], [-77.35537567695518, 34.551193496123226], [-77.35518466188886, 34.55124366190955], [-77.35517455166482, 34.55124689943047], [-77.3549795445672, 34.55134648960455], [-77.35484872350352, 34.55141845181281], [-77.35471546841897, 34.551520276273976], [-77.35441472183489, 34.55172574732211], [-77.35430077917502, 34.551815253989645], [-77.35418217470253, 34.551874730076094], [-77.35388738188291, 34.55204647698667], [-77.3538301642324, 34.55208302012827], [-77.35378412286823, 34.55211110006971], [-77.35365558653166, 34.552159299967045], [-77.35338773057971, 34.55227508354517], [-77.35329213973321, 34.55231798584965], [-77.35300524983543, 34.55241827037305], [-77.35299496877363, 34.552421767262054], [-77.35299170576967, 34.552422992264205], [-77.35298512225397, 34.55242524032773], [-77.35279383953525, 34.552490557419326], [-77.35271440787612, 34.55250939114748], [-77.35263475549841, 34.55249487287685], [-77.35259767357631, 34.55248407823942], [-77.35259156524383, 34.552481655930286], [-77.35258381023363, 34.55247892858806], [-77.35220843344764, 34.55233653280851], [-77.35216444370967, 34.5523221013769], [-77.35213072004547, 34.55229931885703], [-77.35197730090404, 34.55222233552264], [-77.35182099933945, 34.55211044228715], [-77.35181261192348, 34.5521055804355], [-77.35180814874714, 34.55210092319027], [-77.35179426298534, 34.552085898633536], [-77.35159914612773, 34.55188618166358], [-77.35156044723067, 34.551813648797825], [-77.35152304723661, 34.551705545294055], [-77.35151848679534, 34.5516529688334], [-77.35144236021748, 34.55150174708713], [-77.35140701745695, 34.551447012533345], [-77.35139340857414, 34.55142614876472], [-77.3513848722879, 34.551389928201644], [-77.35130043967106, 34.55119470735302], [-77.35128964338661, 34.551053095910035], [-77.35126862100506, 34.55095446527068], [-77.3512179769932, 34.55081195351684], [-77.35119525993625, 34.550720201999766], [-77.35115513041649, 34.5506721483101], [-77.35107233674069, 34.55051848876751], [-77.35105940584685, 34.55050321483671], [-77.35105383442134, 34.55049573458691], [-77.3509311994713, 34.55035885765096], [-77.3508972118393, 34.55027345396067], [-77.35085413999364, 34.550138142258696], [-77.35108168271475, 34.550111907843714], [-77.3512184241088, 34.55006702732695], [-77.3512793110197, 34.55005452455207], [-77.35143355328847, 34.549978759435234], [-77.35147783809822, 34.549958020890905], [-77.35149001979161, 34.54995080823516], [-77.35150723863121, 34.54994083735679], [-77.35170633589999, 34.54980768931443], [-77.35175391171877, 34.54978292432969], [-77.35186824714013, 34.54964985051515], [-77.35187061821485, 34.54964371645426], [-77.35187349484723, 34.549640650082765], [-77.3518777712569, 34.54963965418494], [-77.35188118341024, 34.54964006229245], [-77.35227367198549, 34.549496684098045], [-77.35246231447431, 34.54943041413896], [-77.35247156701288, 34.54942758442803], [-77.35248689959842, 34.5494231078066], [-77.35266914428595, 34.54937230419745], [-77.35300411376821, 34.54927311467004], [-77.35310446138445, 34.549246125907885], [-77.3534584411262, 34.54919514877485], [-77.35370142311395, 34.549228210445875], [-77.35385027969679, 34.54922892209669], [-77.35397824928879, 34.549260108548026], [-77.35416621742388, 34.549313295701594], [-77.35421054026808, 34.54932570507157], [-77.35424047756705, 34.54933419712048], [-77.35438065859174, 34.54937035758006], [-77.35446504091338, 34.549374495635256], [-77.35463274101492, 34.549349486127035], [-77.35473294983261, 34.549293400028034], [-77.35497567880395, 34.54922946740608], [-77.35502842715934, 34.54921557394172], [-77.35507037547013, 34.54920920859683], [-77.35522519747525, 34.54919536416341], [-77.35539283407331, 34.54915517477683], [-77.35542261497882, 34.549146931008025], [-77.35546038090351, 34.54912699826592], [-77.35565422869098, 34.54899654696441], [-77.35577539166792, 34.548865689222296], [-77.35580577104855, 34.54883245344443], [-77.35581233648438, 34.54882510339905], [-77.35582287832456, 34.54881330170175], [-77.35597373073901, 34.548655258798384], [-77.3561819534845, 34.54853347429682], [-77.35620545560556, 34.54851963555144], [-77.35622244797149, 34.54850979004016], [-77.3564512796591, 34.548390872001924], [-77.35662031667732, 34.548280358047826], [-77.35666556369794, 34.548246762522716], [-77.35670577853172, 34.548213237786875], [-77.35679480522481, 34.548061273889225], [-77.35682577137666, 34.547951139262025], [-77.3569127239762, 34.54776366504923], [-77.35686528912271, 34.54770062672734], [-77.35691662106466, 34.54762379987219], [-77.35694471355714, 34.54744436874387], [-77.35703654164988, 34.54724982528873], [-77.35705860883935, 34.54719614149705], [-77.35714168130937, 34.547171187442245], [-77.35743276961985, 34.54709164363555], [-77.35755674147148, 34.54711142870468], [-77.35773796899016, 34.54713916104163], [-77.35782413917127, 34.54714548297103], [-77.35800227565682, 34.54715855179397], [-77.35802778126006, 34.54716121807661], [-77.35821575550546, 34.547188564541734], [-77.35829274182201, 34.547202081112275], [-77.35835673190775, 34.547241068637845], [-77.35847908111087, 34.547302442342584], [-77.3585442170838, 34.547336485484045], [-77.3586035718809, 34.54739761180149], [-77.35864337969734, 34.54741948325211], [-77.35865809763756, 34.54744250007868], [-77.35864149608429, 34.5474695670166], [-77.35862115201799, 34.54767768160586], [-77.35861418004555, 34.547693647297066], [-77.35861127057011, 34.54770323090254], [-77.35860079197246, 34.547934466568485], [-77.3586002620003, 34.54794047498495], [-77.35859966291706, 34.54794595328865], [-77.35861102724803, 34.54806133676615], [-77.35859647383086, 34.54817911151504], [-77.35859882655062, 34.548185505314756], [-77.35859488160116, 34.54819199699354], [-77.35858459903953, 34.54822620054059], [-77.35852923421088, 34.548408426616405], [-77.35850364332586, 34.5484440338076], [-77.35849536180527, 34.548497006136664], [-77.3584364938078, 34.54861167445371], [-77.35838364093684, 34.54870613587988], [-77.35837712180282, 34.54871411502337], [-77.35830352208647, 34.54879534812295], [-77.35817578616765, 34.54893376437474], [-77.35814903355742, 34.5489685530888], [-77.35813716079375, 34.548986448020834], [-77.35809604131418, 34.549040570016075], [-77.35803395961369, 34.549123718653235], [-77.35801313556466, 34.54915080328598], [-77.35792499098989, 34.549261819435145], [-77.3578730302668, 34.54933100657337], [-77.3578209553842, 34.54939921008786], [-77.35777118173617, 34.54945731729437], [-77.35772155132254, 34.54950567627832], [-77.35765632563528, 34.54954532457597], [-77.35757167981956, 34.54959677766122], [-77.35748816400024, 34.54964049371749], [-77.35737236459822, 34.54972805992382], [-77.357258382856, 34.549777065744266], [-77.35700395825806, 34.549884070918594], [-77.35697586107038, 34.54989772789796], [-77.35674234625921, 34.55002273174651], [-77.35657651351099, 34.55019140229278], [-77.35637532943953, 34.55034090395252], [-77.35631786021497, 34.550472492017775], [-77.35617500796326, 34.55057908209473], [-77.35607106435519, 34.550689609024175]], [[-77.40136300368388, 34.58404208505791], [-77.40171953446382, 34.58402350811521], [-77.40175704003948, 34.58402607859092], [-77.40178624660268, 34.58402282349579], [-77.40206512999825, 34.583921441549236], [-77.40215107597412, 34.58388986390622], [-77.40238785447525, 34.58379803135091], [-77.40254511040106, 34.58373107462246], [-77.40285594319057, 34.58356499808071], [-77.40293914280794, 34.58353260457943], [-77.40299568550417, 34.583516108196775], [-77.40323442607274, 34.583527132601446], [-77.40333317740593, 34.583590739865215], [-77.40343954279844, 34.583701093265034], [-77.40372722062449, 34.58403624752507], [-77.40378253715953, 34.58413117431076], [-77.40380707096463, 34.58418723553443], [-77.40384208230161, 34.58430593987053], [-77.40394538854284, 34.58459184922985], [-77.40398844764229, 34.58472875488753], [-77.40407035368082, 34.5849983901222], [-77.40407913682944, 34.58504253451093], [-77.40410345068854, 34.585398965502904], [-77.40410369497032, 34.585418154485936], [-77.40410229954773, 34.58543882146057], [-77.40408622985146, 34.58584525072802], [-77.404014291724, 34.58616489609787], [-77.40399409214376, 34.58628312499244], [-77.40391032062064, 34.58652256395551], [-77.40384786251283, 34.58672880511709], [-77.4038185415301, 34.58683136532098], [-77.40372728928234, 34.58712334674138], [-77.40371534758467, 34.587159638044284], [-77.40371042688699, 34.587173215871616], [-77.40358774919396, 34.5874651381712], [-77.40348113664692, 34.58763088216199], [-77.4033332551342, 34.587987895537964], [-77.40330177226704, 34.58804742044427], [-77.4032993162934, 34.58808169744435], [-77.40330238754328, 34.588114515021125], [-77.40330814418122, 34.58850499926505], [-77.4033302807068, 34.58892315595568], [-77.40333035349325, 34.58892636999884], [-77.40332846793122, 34.58893181995551], [-77.40325705478007, 34.58936152356672], [-77.40314404507197, 34.58959851171926], [-77.40293923294361, 34.59010795931687], [-77.40289347699263, 34.59021384207548], [-77.40282120147151, 34.59027357222535], [-77.40286355538895, 34.59034900032963], [-77.40292604873542, 34.59110759339512], [-77.40293214018565, 34.59111437398705], [-77.40293925049035, 34.59117325495871], [-77.40302301843406, 34.5918525112897], [-77.40302318059011, 34.59194272767668], [-77.40304514702922, 34.592053634461536], [-77.40307561928054, 34.592212831702895], [-77.40310036974165, 34.59235616431963], [-77.4031274455712, 34.59257409800137], [-77.40325119231863, 34.59275897473256], [-77.40293928956662, 34.59338105952065], [-77.40285889032776, 34.593578112856605], [-77.4028099001382, 34.593671806753], [-77.40250369651099, 34.59409583222442], [-77.40247135144187, 34.594145235196265], [-77.40231233618465, 34.5943418510261], [-77.40216984038072, 34.59459317089025], [-77.4021569650216, 34.59461517560437], [-77.40215499377065, 34.594619611308374], [-77.402151140693, 34.59462811473511], [-77.40195343422994, 34.59506911886312], [-77.40188559743754, 34.59521739031891], [-77.40175705868836, 34.59541391478846], [-77.40171392839451, 34.59548178565123], [-77.40167755899982, 34.5955335004111], [-77.4015478512476, 34.59575139841704], [-77.40139516960086, 34.595998820915966], [-77.40138207097442, 34.59602128997565], [-77.40136296936407, 34.5960445981441], [-77.40118477984626, 34.596261779813474], [-77.4009886252417, 34.59648205398177], [-77.40096887476354, 34.59650784618669], [-77.40079420186706, 34.59674649958217], [-77.40070560664475, 34.59680651545523], [-77.40057477640333, 34.59689710038461], [-77.40053067685214, 34.59692519196442], [-77.40042803424302, 34.59698751072449], [-77.40025731809406, 34.597094709373636], [-77.40018067604848, 34.59714723907919], [-77.39982386246828, 34.59749925189616], [-77.39980929472266, 34.59752583424085], [-77.39978657050221, 34.59756729968766], [-77.39950181355341, 34.597970287798276], [-77.39947342435012, 34.59806160797946], [-77.39915431626065, 34.598444993573864], [-77.39906772681539, 34.59853223170851], [-77.39899834395409, 34.598555610408376], [-77.39887853968202, 34.59861384257006], [-77.39860423163448, 34.59878425957257], [-77.39846176331879, 34.59881599532951], [-77.39821012044423, 34.59891711094148], [-77.39792880164637, 34.598924851546016], [-77.3978160117697, 34.59894882956236], [-77.39773042637829, 34.59898277617184], [-77.39742189407613, 34.59918124926496], [-77.3971430262861, 34.59928386259042], [-77.39702777887439, 34.59931324843721], [-77.39670236604313, 34.59957382294444], [-77.39663365259838, 34.599631245259914], [-77.39661969981218, 34.599644738086575], [-77.3965911566523, 34.599663885675085], [-77.39623952630357, 34.599897262462335], [-77.3960606523188, 34.599972283350546], [-77.39584539755135, 34.60016250260007], [-77.39546906995501, 34.60023113856622], [-77.39544064890153, 34.600242952573424], [-77.39541744059028, 34.60025775091428], [-77.39515742958034, 34.60040327832227], [-77.39505714791704, 34.60047248315847], [-77.39490658170705, 34.6005938106528], [-77.39466301343421, 34.60072540082346], [-77.39462007966338, 34.60075107470038], [-77.39449386623009, 34.60081552689062], [-77.39432654707085, 34.60090177827004], [-77.39426888023304, 34.600932058841906], [-77.39418536983581, 34.600949980423934], [-77.39396784757642, 34.600991672844415], [-77.3938747543309, 34.601029054524616], [-77.39363529302764, 34.60110596363504], [-77.39348062392781, 34.601165286281514], [-77.39327391277935, 34.60121414328107], [-77.39308649644734, 34.601256005432404], [-77.39291216062311, 34.60128040172941], [-77.39269236097246, 34.601418817929215], [-77.39237409638449, 34.60146407325419], [-77.39199579247497, 34.60117578037575], [-77.39194617772249, 34.60113766068013], [-77.39190415709065, 34.6010782626191], [-77.39156944076127, 34.60081269105112], [-77.39152870774444, 34.600798486703965], [-77.3914640428756, 34.60077830327364], [-77.39111596645802, 34.60067860404964], [-77.39094939864523, 34.60065696949215], [-77.39036335670232, 34.60060039792853], [-77.39032774109016, 34.60060857186799], [-77.39030236685473, 34.600598161793684], [-77.39007017636214, 34.600604304075844], [-77.38958471530403, 34.60062559643288], [-77.38953950343048, 34.60063569982966], [-77.3887980462403, 34.600737313103025], [-77.38875125232465, 34.6007490378506], [-77.38871554421698, 34.600761150780826], [-77.38863935843142, 34.60081059970133], [-77.38813673382882, 34.60107025568327], [-77.38796295704373, 34.60113045098191], [-77.38776783819715, 34.60114643628668], [-77.38756882928065, 34.60117972853776], [-77.38737495275168, 34.60120860493317], [-77.3871747013772, 34.60122657468358], [-77.38701738736654, 34.601213902771995], [-77.38678058058494, 34.601228448983576], [-77.38641849348599, 34.60116526543904], [-77.38638647131968, 34.60116365225588], [-77.38637013447668, 34.60115534093148], [-77.38634892921726, 34.601140797314464], [-77.3859924031045, 34.600873067817545], [-77.38594268626575, 34.60082835797344], [-77.3858913503474, 34.60078219185874], [-77.38579537599917, 34.6006948469393], [-77.38574298451826, 34.60064774392649], [-77.3856897867719, 34.60059896404117], [-77.38559834563667, 34.60053892188628], [-77.38544011703405, 34.60059311240601], [-77.38536882519959, 34.60061027469093], [-77.38520419091105, 34.600735738303825], [-77.3851392893263, 34.600820701059796], [-77.38504160662444, 34.60090467973038], [-77.38481001204879, 34.601047334572506], [-77.38448873577042, 34.60106284512091], [-77.38441588804136, 34.60106709549967], [-77.38437176522591, 34.60104876614578], [-77.38420750502759, 34.60102490689003], [-77.38406141805791, 34.60100326395772], [-77.38402178363317, 34.60098899569043], [-77.38377560397855, 34.60092780305354], [-77.3836276892387, 34.600865950928394], [-77.3833231568666, 34.60082430288337], [-77.38323357053434, 34.60086246695262], [-77.3831716306871, 34.60081637911177], [-77.38311391859772, 34.60075796207977], [-77.38296786954767, 34.60064072435696], [-77.38283953600288, 34.60047144189201], [-77.38278957537965, 34.60043397234133], [-77.3827722190433, 34.60038264502468], [-77.38275587970278, 34.60029483923758], [-77.38272675568601, 34.60008621642535], [-77.38262261038676, 34.59997964244461], [-77.38252599571143, 34.59990689889832], [-77.38244555708852, 34.59984757996085], [-77.38232267299236, 34.599890502056084], [-77.382051418046, 34.59995373202854], [-77.38194855678313, 34.60007678782895], [-77.38183438532897, 34.60028408723275], [-77.38170537366588, 34.60053639898496], [-77.38167787520945, 34.6005626759435], [-77.38165715679366, 34.60058247391072], [-77.38140685027584, 34.600734379814945], [-77.38126300295554, 34.600732018113554], [-77.38115989404598, 34.6007260845493], [-77.38086888883647, 34.60071053787304], [-77.38082833647287, 34.6007064762757], [-77.38048552946091, 34.60072378570483], [-77.38047476633426, 34.60072368604508], [-77.38046761703211, 34.60072247429017], [-77.38043968769259, 34.600718797136665], [-77.38015079407295, 34.60068487229081], [-77.38008065934913, 34.60067414965943], [-77.37984185763503, 34.60063763976909], [-77.37968656829992, 34.6005637050297], [-77.37958763455246, 34.60052360264883], [-77.37941420155863, 34.6004420067823], [-77.37934834881776, 34.60039132647553], [-77.37929249813138, 34.60037671506075], [-77.37915686943853, 34.60033296861479], [-77.37889840256085, 34.600292100522026], [-77.37875837489523, 34.60026279683602], [-77.37854975448879, 34.600142004679796], [-77.3785043345105, 34.60010811979967], [-77.37828875725148, 34.59998731420398], [-77.37792661290598, 34.59980722836342], [-77.3777162538887, 34.59956010699405], [-77.37743012487576, 34.59933793882198], [-77.37735754916899, 34.59904009614655], [-77.37746050495048, 34.5987495081775], [-77.3776219255339, 34.598254891341895], [-77.37766265249977, 34.598147012526894], [-77.37762292211612, 34.59805173739216], [-77.37752413752628, 34.59774240810114], [-77.37755503244436, 34.597563672818346], [-77.37771684025684, 34.59746894886821], [-77.3778382028934, 34.59740331557893], [-77.3781109992411, 34.5972717750516], [-77.37816713450627, 34.59722519858289], [-77.37835000634331, 34.59703169388276], [-77.37850520807436, 34.59688457227251], [-77.37876203130767, 34.59656693276432], [-77.37929357812192, 34.596249125517964], [-77.3793453750099, 34.59620629395532], [-77.37978779472873, 34.595825716654474], [-77.3799147490194, 34.59569968180741], [-77.380012807318, 34.59561107693161], [-77.38008201167906, 34.595316700569], [-77.38010055791204, 34.59526830887138], [-77.38010163426605, 34.59524818689229], [-77.38009375908746, 34.59523668798092], [-77.38008203511205, 34.59522456092128], [-77.37991281461865, 34.59503319074846], [-77.37969206212837, 34.594882645795195], [-77.3796898549268, 34.59488099858191], [-77.37968292726708, 34.5948784634122], [-77.37929393381492, 34.59490001316931], [-77.37901794680727, 34.594852563665114], [-77.37893511944756, 34.5945671594206], [-77.37891911247257, 34.594165451733005], [-77.37891043460725, 34.594134963877686], [-77.37890005158205, 34.59411991759703], [-77.37869475333656, 34.59375267075289], [-77.37862395285602, 34.59363590101434], [-77.37850618299944, 34.59331872114747], [-77.37835580589984, 34.593114454049754], [-77.37799755177787, 34.59300400907054], [-77.37832175697625, 34.592758435243034], [-77.3785064067552, 34.592504974695714], [-77.37871044181227, 34.592271906994625], [-77.37915162561384, 34.591988582795274], [-77.37923351962142, 34.59191083960029], [-77.3792947415703, 34.59185383768143], [-77.379428974971, 34.59180401138043], [-77.37968885444485, 34.59171900534732], [-77.37979193341042, 34.59158276169649], [-77.3797542891109, 34.591477171567306], [-77.3797635241045, 34.59139548497108], [-77.37983943245445, 34.59104033799485], [-77.37986092379975, 34.5907977999931], [-77.37999121582783, 34.59059390066182], [-77.38004028445246, 34.590540555714], [-77.38008325533406, 34.59046012492292], [-77.3801741189613, 34.59024081167145], [-77.38018549112783, 34.59014133917178], [-77.38017610979298, 34.59004276714545], [-77.38012109152228, 34.589938338440035], [-77.3800833976276, 34.58990857965808], [-77.3799855159593, 34.58985106730139], [-77.37986414308813, 34.58976308648459], [-77.37980728065483, 34.58964427600925], [-77.37957072187407, 34.58938080825946], [-77.37970851302448, 34.58895678653296], [-77.37971660557758, 34.58893522181552], [-77.37970956278177, 34.58891471905247], [-77.37958637295411, 34.58852942603867], [-77.37949103761558, 34.58833268936196], [-77.37954140420135, 34.58795141141363], [-77.37967695333063, 34.58766724535266], [-77.37983134092622, 34.58737271745808], [-77.37989117222024, 34.58721181008704], [-77.37990747838224, 34.586975254792975], [-77.37988054912567, 34.58678877716093], [-77.37986880698917, 34.58655832681343], [-77.38006152624529, 34.5859382438025], [-77.38007071033606, 34.58591224465299], [-77.38004539324109, 34.58587381705621], [-77.38008446168864, 34.58581098639625], [-77.3802167260616, 34.585748709572385], [-77.38087264195923, 34.58548330406521], [-77.38095985374098, 34.585690075635554], [-77.38107758877172, 34.58576712892969], [-77.38126659217005, 34.58587569187154], [-77.38131591620669, 34.58610413867804], [-77.38135884697931, 34.586250653653806], [-77.38144507274197, 34.586563292163746], [-77.38126635971955, 34.58681840728201], [-77.38119394564491, 34.58694606433688], [-77.38112296082194, 34.58703428214889], [-77.38096945810415, 34.58737614552536], [-77.38091761091054, 34.587488442688006], [-77.38100958543936, 34.587623311159], [-77.38102013845217, 34.587685947952515], [-77.38105746551217, 34.587693120327664], [-77.38107608136103, 34.58768538790732], [-77.38126616619695, 34.58760521531502], [-77.38143542483448, 34.58765599948069], [-77.38166022009389, 34.587618718322254], [-77.38179173092699, 34.58764532206898], [-77.38198594833688, 34.58775902812541], [-77.38203363617825, 34.58777435411073], [-77.38205423672478, 34.587790198773924], [-77.38219740841951, 34.587882828402435], [-77.38226037112291, 34.58792191312306], [-77.38226932981848, 34.587930465401065], [-77.38244822746002, 34.58808048419324], [-77.38246564282376, 34.58809568455049], [-77.38248568154133, 34.588111563564226], [-77.38264521722738, 34.588254598405435], [-77.38269853863454, 34.58823572052907], [-77.38272363382673, 34.58837406414841], [-77.38275844533489, 34.588496812670265], [-77.38278082363027, 34.58855969067732], [-77.38284213639106, 34.58874473033289], [-77.38287854828108, 34.588864806533785], [-77.38289418536331, 34.58890181227429], [-77.38303909081088, 34.58908790667551], [-77.38304120622367, 34.58909062338698], [-77.38304342494465, 34.589092583387185], [-77.38323608815227, 34.58924441062832], [-77.3832687234431, 34.58923723135736], [-77.38357591138485, 34.5891696545296], [-77.3836301826317, 34.58910584754949], [-77.38382953903043, 34.588766986427984], [-77.38386600195854, 34.58859111841934], [-77.38387092104102, 34.58833645568179], [-77.3838954301019, 34.58819392597601], [-77.38389156433479, 34.588052108801804], [-77.38388137419437, 34.58791038325282], [-77.38381466245076, 34.58772156061099], [-77.38379102594767, 34.58767180255605], [-77.38378947856077, 34.587499064486636], [-77.3838275685369, 34.5874551973781], [-77.38391442831863, 34.58736233350912], [-77.38402461896968, 34.58734970285904], [-77.38409640006275, 34.587377476171646], [-77.38422163063183, 34.587425929775364], [-77.38424025390111, 34.58743408463979], [-77.38435254981388, 34.58748910960258], [-77.3844186317132, 34.58755482985816], [-77.38466178270905, 34.58763531328144], [-77.38481265758124, 34.58770460200262], [-77.38486555037082, 34.58771152076515], [-77.38507766870215, 34.5877379312139], [-77.38535328601728, 34.58796478729177], [-77.3856007291208, 34.58792307305865], [-77.38573186342768, 34.58778487923234], [-77.38599481643232, 34.58776656600364], [-77.38617666785049, 34.58777542792552], [-77.38619974498485, 34.58777993688195], [-77.38638886380969, 34.5878187682206], [-77.38672512210316, 34.587924990312466], [-77.38676885080147, 34.587933823095796], [-77.38678289984325, 34.58793650733603], [-77.38680479993714, 34.58793709860268], [-77.38717694751848, 34.58799365144099], [-77.38734365557143, 34.58801543177888], [-77.38739196578615, 34.58802174347607], [-77.38757099471756, 34.58805628711613], [-77.38768090377357, 34.58809332993969], [-77.3878909714224, 34.588181467393575], [-77.38793967343814, 34.58820176377198], [-77.38796502717108, 34.588211399870985], [-77.38804087798323, 34.588241581746466], [-77.3883590606247, 34.588369176451266], [-77.38846309725513, 34.5884114444318], [-77.3886544446353, 34.58849595296771], [-77.38871896477362, 34.58852342354426], [-77.38875309375084, 34.58853817513705], [-77.38897358953233, 34.58863692004065], [-77.389147127561, 34.58871297202323], [-77.3892280065927, 34.58875067178211], [-77.38938136828283, 34.58881570456471], [-77.38948630465012, 34.58885968287645], [-77.38954116361904, 34.58888318160197], [-77.3897232098785, 34.58896256432863], [-77.3897381821166, 34.588969093101035], [-77.38974267294736, 34.58897105136055], [-77.38993520082403, 34.58905640647909], [-77.39002828171158, 34.58904670413593], [-77.39008735461417, 34.58913847157134], [-77.39011026487071, 34.58932382409512], [-77.39013891296582, 34.58955560568418], [-77.39016092587956, 34.58973370017769], [-77.39018099156972, 34.58981446901383], [-77.39003005713953, 34.58999587155249], [-77.38996496479868, 34.5900374739209], [-77.38993505945062, 34.590064126034555], [-77.38984464128437, 34.590120015947164], [-77.38954095173466, 34.5903447905751], [-77.38943650869265, 34.590393508273706], [-77.38914685952186, 34.59050336804517], [-77.3891039621877, 34.590507761522154], [-77.38894982178063, 34.59052354831368], [-77.3887791762101, 34.59057236916239], [-77.38875277872997, 34.59057754379131], [-77.38872733406541, 34.59058087036808], [-77.38870264120537, 34.59061184418197], [-77.38870589349486, 34.590661874787365], [-77.38875272462658, 34.590929815558724], [-77.38875949999851, 34.591020899267654], [-77.38876966665337, 34.5910267481538], [-77.38894973941888, 34.591068227820195], [-77.38905983981078, 34.59107857006357], [-77.38914677475515, 34.59107286691398], [-77.38924295888069, 34.59106213032871], [-77.38934381336284, 34.59105505277724], [-77.3894278775745, 34.59105355524411], [-77.38954085029033, 34.59104831635229], [-77.38967660727326, 34.59104223750599], [-77.38978682039944, 34.591039647571336], [-77.38993492362366, 34.59103736034337], [-77.39007432674339, 34.59111299160404], [-77.39021380111467, 34.591243082363505], [-77.39027139318588, 34.591296799771584], [-77.39029868869294, 34.591622843516355], [-77.39028233929466, 34.591657768223854], [-77.3901318450373, 34.591875267870016], [-77.39012429218153, 34.59188470688583], [-77.38993478521577, 34.59203406844995], [-77.38987762522918, 34.59207911945952], [-77.38978200391217, 34.59215448356356], [-77.3896798254405, 34.5923191411401], [-77.38954065332936, 34.59242141322626], [-77.38932762278952, 34.59244950955689], [-77.38896224404358, 34.59249867303113], [-77.38875248022495, 34.59252825091819], [-77.38858458097171, 34.5925708248264], [-77.38841486427305, 34.592776177158285], [-77.38838596095265, 34.592810083979], [-77.38835835341254, 34.5928326180258], [-77.38799992345675, 34.59326057109048], [-77.38798911619634, 34.593288973664606], [-77.38796419520357, 34.593313807053676], [-77.38787316342308, 34.593376909466734], [-77.3877490950793, 34.593489593871915], [-77.38766697952171, 34.59362872476228], [-77.38761964898896, 34.59373996506432], [-77.3876046478134, 34.59377941771268], [-77.38757001360955, 34.59390935961585], [-77.38752100703677, 34.594178754043824], [-77.38750323280965, 34.5945340493949], [-77.38752443801117, 34.594651794677745], [-77.3875698787092, 34.59472583088616], [-77.387668973444, 34.59489976692417], [-77.38783497826934, 34.59498262262484], [-77.38788717057088, 34.595057776952935], [-77.3879638946114, 34.59518622061909], [-77.38803772696971, 34.59503290681147], [-77.38808969289256, 34.594945898835284], [-77.38848174721431, 34.59459803935142], [-77.38875217856226, 34.59451793960082], [-77.38910409977713, 34.59442051645421], [-77.38920854273582, 34.59442709154323], [-77.3895403816406, 34.59433155221127], [-77.38989331788116, 34.59430561365358], [-77.38993447151431, 34.59431253142245], [-77.38997920133362, 34.594297079458926], [-77.39032856483547, 34.59426592305328], [-77.39038717204048, 34.594253203514754], [-77.39052561116964, 34.59424359886937], [-77.3906118555905, 34.594157666130386], [-77.39066656633457, 34.59408932892829], [-77.39072269457034, 34.59392988473411], [-77.39080175348002, 34.593705713728724], [-77.39093812739522, 34.59349351722405], [-77.39110903106074, 34.59323683439202], [-77.39111316314907, 34.59323224953609], [-77.39111686779111, 34.59321534813433], [-77.3912058647912, 34.59289414050239], [-77.39119567659263, 34.592799770262644], [-77.39118758457488, 34.59272481429635], [-77.39111695305601, 34.592526234657], [-77.39108454365868, 34.592426157248546], [-77.39106795522474, 34.592393619036635], [-77.39110909933689, 34.59197165213625], [-77.39110715566484, 34.591963396864635], [-77.39111128440395, 34.591956617982], [-77.39111702461359, 34.591949868745246], [-77.39112454825099, 34.591952782498495], [-77.3915111151807, 34.59182621124444], [-77.39189506027948, 34.59183886150674], [-77.39190518892057, 34.59183794568112], [-77.39191253292367, 34.59183934159237], [-77.39193551783364, 34.591843939334645], [-77.39229925532605, 34.59191669886583], [-77.39255300207353, 34.59175488842727], [-77.39262654640895, 34.59167230153233], [-77.39269336415073, 34.59160013033646], [-77.39293124921889, 34.591444059878405], [-77.39308746675204, 34.5913149580172], [-77.3931363895531, 34.591298888670664], [-77.39332695923254, 34.59121869664398], [-77.39343928217748, 34.59115695300436], [-77.39348155438717, 34.5911568172595], [-77.39369434048879, 34.5911657103543], [-77.3938471282152, 34.59117437540566], [-77.39387562462515, 34.59117106039574], [-77.39390563596078, 34.59116756905252], [-77.3942696953527, 34.59118043784524], [-77.39436635246341, 34.59117292240445], [-77.39451828589284, 34.591203609515205], [-77.39466376141065, 34.59124662232803], [-77.39492004838276, 34.591413493158285], [-77.3949296801469, 34.59155014953782], [-77.39491728192124, 34.591687071781855], [-77.39468516060705, 34.59187194413653], [-77.39467106317903, 34.59188190053611], [-77.39466370883183, 34.591886788496545], [-77.39463721386282, 34.591907403119265], [-77.39426960484352, 34.59222392455177], [-77.39420156990627, 34.59229297206692], [-77.39407255437806, 34.592361564328485], [-77.39402511559993, 34.59239171540214], [-77.39392236679514, 34.59245702035017], [-77.39387550372142, 34.59249424828554], [-77.39368323509703, 34.5926481547455], [-77.39367728789443, 34.592652915341596], [-77.39366534464432, 34.592670007532504], [-77.39352454751857, 34.59288848171884], [-77.39348137664695, 34.59300992617811], [-77.39339271631778, 34.5932365686577], [-77.39336149417515, 34.59333656818074], [-77.39336729549673, 34.59345859217662], [-77.39341697869253, 34.594108439799285], [-77.39341224230304, 34.5941783903828], [-77.393432787874, 34.5942276499386], [-77.39348125853145, 34.594256021952276], [-77.39362628424061, 34.59430376899255], [-77.39387532836722, 34.59443860505005], [-77.3942047778214, 34.59413375150105], [-77.3942694458947, 34.594078761930696], [-77.39428373650856, 34.594068093251366], [-77.39429553737571, 34.594050996066564], [-77.39447539151595, 34.593803202087216], [-77.39463992117373, 34.593576753959965], [-77.39465236188389, 34.59356288154631], [-77.39466357286761, 34.59355972743799], [-77.39467577326278, 34.593558438642646], [-77.39505766114888, 34.593485965450014], [-77.39508910894753, 34.59347808487399], [-77.395379110221, 34.593391875673206], [-77.3954517519447, 34.59336621156306], [-77.39559679128783, 34.59328248176384], [-77.39584584648233, 34.59317239427483], [-77.39600183980157, 34.593123798818354], [-77.39621639094639, 34.59292479140976], [-77.39623994412574, 34.59289809867696], [-77.39630914222514, 34.592911412155715], [-77.39656957321503, 34.59294327905222], [-77.39663402118566, 34.59293609197956], [-77.39673898826678, 34.592962497139574], [-77.39720433134804, 34.59301697911217], [-77.39742216988586, 34.59314381459303], [-77.39770705817627, 34.5932519642099], [-77.39777604393149, 34.593548950158045], [-77.3978162311447, 34.59358231537874], [-77.39800142609701, 34.59374147849124], [-77.39809668425885, 34.593927266993845], [-77.39821029131178, 34.59416314973015], [-77.39827178596269, 34.59426032299589], [-77.39829490617424, 34.59432324394871], [-77.3983309555726, 34.59444805345056], [-77.39832041399545, 34.595050032945], [-77.39834578741132, 34.59516504950642], [-77.39834854196567, 34.595313642474075], [-77.39821024553822, 34.59539345476851], [-77.3980062242874, 34.59543383508745], [-77.3978161483885, 34.59554751602584], [-77.39770438724486, 34.595561746247924], [-77.39761910069153, 34.59559165347784], [-77.39755711598039, 34.59570339584943], [-77.39754059372706, 34.59583349805101], [-77.39742202987757, 34.5961348124947], [-77.39741904056568, 34.59614466648847], [-77.39741289898447, 34.596148772431846], [-77.39696973765274, 34.59657459684369], [-77.39686912877686, 34.596651784213066], [-77.39697424387869, 34.596694434495596], [-77.39707219907376, 34.596670206812675], [-77.39742200853348, 34.59660362988359], [-77.39774294439962, 34.59652573431037], [-77.39780774335497, 34.59650737416765], [-77.39781610918567, 34.59650213529687], [-77.39782801688682, 34.5965006335567], [-77.39821020682149, 34.59645580416853], [-77.39821151492797, 34.596456729983544], [-77.39822544193044, 34.59645613015618], [-77.39856942092068, 34.59644408644737], [-77.39864368908844, 34.59643822474716], [-77.39899840046984, 34.59636643409912], [-77.39921685059062, 34.5963131048681], [-77.39937908138465, 34.59627524621855], [-77.39939249763701, 34.59627194358171], [-77.39940822443114, 34.59626855244941], [-77.39978659434396, 34.596148834659644], [-77.39987249053408, 34.596125975395275], [-77.40006099079594, 34.59606236226307], [-77.40018069112851, 34.59592271786784], [-77.40027079220403, 34.59573647511581], [-77.40018069650313, 34.595506421544954], [-77.40012420831508, 34.59539390912005], [-77.4000676372615, 34.595341211846275], [-77.39978661416481, 34.59503080416901], [-77.39975270747645, 34.59499860490864], [-77.3997309529414, 34.59496521351162], [-77.39973561113428, 34.594909590402445], [-77.39965310377391, 34.59455187133884], [-77.39961497288837, 34.594317732690634], [-77.39962003939713, 34.59413206792757], [-77.39966122180624, 34.59399101136671], [-77.39975543717864, 34.59368795962655], [-77.39976714030833, 34.593665263110225], [-77.39978664032989, 34.593627445334874], [-77.39993575040408, 34.593398013600336], [-77.39998368604023, 34.59334872891648], [-77.40011073739576, 34.593212123541804], [-77.39998369151147, 34.593028796357004], [-77.39998087621329, 34.59302160621229], [-77.39997635839335, 34.593019224754556], [-77.3997866537969, 34.592933401649105], [-77.39969779856212, 34.59294285866649], [-77.3994539885305, 34.59294847005263], [-77.39939257411422, 34.592970380230696], [-77.39930770194755, 34.59299484785428], [-77.39899849282449, 34.5930478798454], [-77.3989059331719, 34.59306109466961], [-77.39888002997526, 34.5929651102996], [-77.39885105343197, 34.59270357647454], [-77.39891282289429, 34.59253580587527], [-77.39890482300378, 34.592436021968936], [-77.39885129915231, 34.59227871780662], [-77.39873823561919, 34.59213642025906], [-77.39868011870949, 34.592063276511], [-77.39860444978846, 34.59198069088339], [-77.39849408025049, 34.591865986856995], [-77.39838776330454, 34.59176240920208], [-77.39835075892452, 34.59161651356068], [-77.39824870177165, 34.59135789820177], [-77.39826292998217, 34.591299251902484], [-77.39831192784754, 34.591033576417836], [-77.39835489005355, 34.59091800558862], [-77.39837222409604, 34.59087754823007], [-77.39835138279201, 34.590766640749436], [-77.39826213802789, 34.59077481823404], [-77.39821042150083, 34.59081558169741], [-77.39814190115013, 34.59087491109439], [-77.39804679823294, 34.59096245291821], [-77.39781633606543, 34.591181610353374], [-77.39768073627953, 34.591293745005025], [-77.3974222618125, 34.59124982098726], [-77.39729921404782, 34.59120287543016], [-77.39722523004588, 34.591174648706414], [-77.39704706833008, 34.59110667538194], [-77.39703457362283, 34.5911016092622], [-77.39702819932717, 34.59108660465328], [-77.39685239707933, 34.59089960574161], [-77.39679470534396, 34.590718507745706], [-77.39680826039368, 34.59047955209368], [-77.39681124057506, 34.590291550096296], [-77.39700432230144, 34.58986492157874], [-77.39701369949158, 34.589837771687606], [-77.39701942276213, 34.58982741601924], [-77.39702826864469, 34.58981601173114], [-77.39738964644674, 34.58935896492838], [-77.39739765593, 34.5893311951415], [-77.39742235807954, 34.58932225933867], [-77.39756797449265, 34.589176354897184], [-77.39781643877302, 34.58891874706418], [-77.39784545286953, 34.58889989522945], [-77.39790316533706, 34.588860309501484], [-77.39821051452117, 34.58854345250547], [-77.39837636816695, 34.58854616490218], [-77.39833690887451, 34.5883731606006], [-77.39830637239265, 34.58827429660127], [-77.39821960238547, 34.58796551149584], [-77.39821053952475, 34.58794750228022], [-77.39809193824443, 34.5876871549742], [-77.39801352645054, 34.58761891075], [-77.39799704870309, 34.587590801528805], [-77.39796597895815, 34.58757752864443], [-77.39786613585045, 34.58753845612062], [-77.39781650417439, 34.58751903321468], [-77.39775171545742, 34.58753863438881], [-77.39761947421593, 34.58758300158136], [-77.3975392280264, 34.58763909482491], [-77.39747124553796, 34.58770148642739], [-77.39742243718294, 34.587777697755016], [-77.39720844205745, 34.58791737444151], [-77.39702836587792, 34.5880689014106], [-77.39696560334116, 34.58807879749564], [-77.39663430920673, 34.58807451286072], [-77.39636822225826, 34.58809471518902], [-77.39624025092962, 34.58810253556883], [-77.39611355983195, 34.588132832877996], [-77.3960432188141, 34.588158239450394], [-77.39587323422793, 34.58830400007237], [-77.39586284026045, 34.58832345111627], [-77.39590249820999, 34.58866364438969], [-77.3959452433817, 34.58871818451995], [-77.39599694751561, 34.58887320988363], [-77.39595241003099, 34.589141722649906], [-77.39584611602156, 34.589219911635794], [-77.39567251306256, 34.589419640795434], [-77.39563541648765, 34.58941444623126], [-77.39545204305739, 34.589367491447064], [-77.39534810668516, 34.589340877259005], [-77.39525501553172, 34.58931704002248], [-77.39516698173733, 34.58925501822507], [-77.39512771286324, 34.589185566317], [-77.39505800960168, 34.588996811133626], [-77.39501526832274, 34.58889838923365], [-77.394997911617, 34.588854833923975], [-77.39494320076619, 34.58873900507377], [-77.39489284954855, 34.58862339716738], [-77.39476294083235, 34.58857077378299], [-77.39466398770791, 34.58853068990169], [-77.3946307455655, 34.58851904010967], [-77.39455271540086, 34.588494477953404], [-77.39426994162875, 34.5883859748073], [-77.39406237006932, 34.58836427855898], [-77.39386852352645, 34.58816859178248], [-77.39427001511373, 34.58756484296159], [-77.39436224900007, 34.58734759290483], [-77.39442648399516, 34.587238971914736], [-77.39444884817335, 34.587043112317026], [-77.39448455857753, 34.58680602404197], [-77.39449163620307, 34.58661912663069], [-77.39450131657418, 34.58637903564601], [-77.39466419463395, 34.58610174798873], [-77.39473909773601, 34.58600086225091], [-77.3949012529067, 34.585896776185464], [-77.39505826765998, 34.58578735556898], [-77.3952933189647, 34.5856688999011], [-77.39574308451128, 34.58546207160101], [-77.39584638582662, 34.585420215530064], [-77.39592328296986, 34.585407630150854], [-77.39656777581477, 34.58523180376175], [-77.39662632007744, 34.585214559017246], [-77.39663448707547, 34.585207655071606], [-77.39666650453717, 34.58518306461357], [-77.39708986507588, 34.58479797503411], [-77.39722265818475, 34.58471275582066], [-77.39742260813964, 34.58454849995012], [-77.39758210463815, 34.58440817362469], [-77.39806464010216, 34.58416670972214], [-77.39816642202398, 34.58410430847084], [-77.3982107079857, 34.58408345933503], [-77.39826805135118, 34.58407557571474], [-77.39885992882337, 34.5839023458677], [-77.39899879095707, 34.58384117466493], [-77.39961386416968, 34.583756776572734], [-77.39978686708206, 34.583673481312324], [-77.39998929269127, 34.58367089963795], [-77.40049997852704, 34.58381532787061], [-77.40055933421381, 34.583823572359606], [-77.40057493429966, 34.58382377298604], [-77.40060565218228, 34.583833178464005], [-77.40114210094114, 34.58396069411344]], [[-77.30666360813595, 34.56351925151653], [-77.30602778342146, 34.56344881308511], [-77.30602504493788, 34.56344709962275], [-77.30602778981441, 34.56344332408182], [-77.30659732753954, 34.563129247404206], [-77.30714246510803, 34.56293523243585], [-77.3075041888134, 34.56323479991064], [-77.30695914307577, 34.56346762872277]], [[-77.40372695533198, 34.565620212845076], [-77.40435618333618, 34.568145112122465], [-77.40530282337053, 34.568264793153446], [-77.40544587205616, 34.568511771337604], [-77.40578923093895, 34.5686163639904], [-77.40609076734295, 34.56884237888452], [-77.406254158743, 34.56872534006327], [-77.40659537746683, 34.56880531828288], [-77.40687870755164, 34.569113801080746], [-77.4071833123119, 34.56926426417422], [-77.40687873186667, 34.56961791825668], [-77.40651232538752, 34.56981540138678], [-77.40576917525652, 34.57031756733856], [-77.40559176252053, 34.57065448727243], [-77.40530288977182, 34.57053189264207], [-77.40510138707229, 34.57063112375118], [-77.40438163749133, 34.57051785867584], [-77.40372700004025, 34.57036309444695], [-77.40355692473645, 34.570636900034614], [-77.40293301953223, 34.57156959470722], [-77.40215110496305, 34.5716379630655], [-77.40074051903419, 34.57274167740302], [-77.40169643146908, 34.57309368881488], [-77.40197282906017, 34.57341298633483], [-77.40206803688284, 34.57348875072777], [-77.40215109242553, 34.57367091950337], [-77.40235038755603, 34.57399287804384], [-77.40232853797687, 34.57421080080087], [-77.40224617828841, 34.574325158122605], [-77.4021510880249, 34.57454023737837], [-77.40211106384237, 34.57466676285083], [-77.40202793382906, 34.57481147240711], [-77.40196841717717, 34.574915076809035], [-77.4018545784142, 34.575023300619726], [-77.40175709125168, 34.575122010469265], [-77.40174542415012, 34.5751315341182], [-77.401717101957, 34.57514819402806], [-77.40146668850146, 34.57529596639719], [-77.40136309383068, 34.5753570349097], [-77.4011025005192, 34.57551770473036], [-77.40096909412401, 34.575592599421825], [-77.40091350962011, 34.57562883967772], [-77.40077781102141, 34.57570831973693], [-77.40057509188743, 34.57584022996641], [-77.40032416666162, 34.57592796114771], [-77.4001810902524, 34.57597873766192], [-77.39999328539037, 34.57604372738952], [-77.39996461953963, 34.57605893369734], [-77.39978708628851, 34.576146754917104], [-77.39962338414247, 34.5761230743002], [-77.39954989433835, 34.57614110935946], [-77.39942412878932, 34.57593710115852], [-77.39941201947197, 34.5759054058993], [-77.39943078864957, 34.57586208095], [-77.3995910792538, 34.57545499363098], [-77.39963210770767, 34.57528203648586], [-77.39951961755315, 34.57490442908524], [-77.39948956590554, 34.574620494032544], [-77.39939315234255, 34.57438737556136], [-77.39929263881596, 34.57433265357628], [-77.39922770444178, 34.574055400742495], [-77.39910950428467, 34.57382618763482], [-77.39909659396567, 34.573083839103326], [-77.39972129981484, 34.57288875820546], [-77.39978719565536, 34.5728396799767], [-77.40035593638251, 34.572560918519784], [-77.40031447650276, 34.57138583140032], [-77.40010773475989, 34.571134694433], [-77.39911884696447, 34.57114856632005], [-77.3989993074082, 34.57104861403982], [-77.39825253795514, 34.57059760715301], [-77.39821138169185, 34.57058230189372], [-77.39819783310146, 34.57057574851012], [-77.39815970789434, 34.57056664841153], [-77.39789162927346, 34.570525347339796], [-77.39781740973189, 34.570556681758234], [-77.39748038495178, 34.570603291815296], [-77.39742343227212, 34.57061933419115], [-77.39679350683299, 34.57059347655573], [-77.39663551072064, 34.57026549418883], [-77.39635340182842, 34.57028214305909], [-77.39624155478161, 34.57005697913963], [-77.39619809873386, 34.57004736331637], [-77.39621986414534, 34.56999739095913], [-77.39624156353094, 34.56994597391617], [-77.39637899340805, 34.56969794336932], [-77.39627014698212, 34.569534794878365], [-77.39624159847487, 34.56950386306532], [-77.3960204992192, 34.56917700959026], [-77.39594182519684, 34.569086884516445], [-77.39584768117389, 34.568892078714086], [-77.39579846391923, 34.56878447148587], [-77.39579849224226, 34.568412949122894], [-77.3957779599789, 34.568362857420084], [-77.39579628678096, 34.568304772150555], [-77.39584773198807, 34.5682912227333], [-77.39602141986563, 34.5681405621483], [-77.3962417228434, 34.56794457999438], [-77.3962957320889, 34.56792178616674], [-77.3966357056643, 34.567661459464084], [-77.39691926501415, 34.56765463765924], [-77.39712337735722, 34.56731959386742], [-77.39742370012756, 34.56654246397407], [-77.39760553602068, 34.566596848411486], [-77.39884702670108, 34.56638608307261], [-77.3989995278042, 34.56633269320083], [-77.4004809810773, 34.56608763614261], [-77.40057534362768, 34.56622024614313], [-77.40084543796873, 34.56622441747186]], [[-77.44706477139263, 34.734078028622775], [-77.4469858862792, 34.73437985916696], [-77.44728493990883, 34.73443758289085], [-77.44746168573616, 34.73418129744766]], [[-77.37224995676794, 34.701389547077106], [-77.37237800227858, 34.70158841457737], [-77.37243693455295, 34.701814979884205], [-77.37247646727712, 34.702062273867966], [-77.37248417877309, 34.70251860852573], [-77.37247677091716, 34.702549626303785], [-77.37247571868289, 34.702573655799256], [-77.37248620658178, 34.702638623718514], [-77.37254323792789, 34.702570935206325], [-77.37257801763528, 34.70253570907962], [-77.37341648522712, 34.70206839097677], [-77.37349446588925, 34.7019223380426], [-77.37365154818823, 34.70166848261688], [-77.37366003306678, 34.70165588106767], [-77.37366269214384, 34.701648413331974], [-77.37377574981778, 34.70139627589844], [-77.3735869260796, 34.700943168642155], [-77.37358407445689, 34.700935230896675], [-77.37358289100844, 34.70093279854699], [-77.37358073781806, 34.70092923412319], [-77.37325560245793, 34.70049299001906], [-77.37321945657027, 34.700424045566045], [-77.37316904726883, 34.700284885655265], [-77.37302920473203, 34.70003671727121], [-77.372989831228, 34.69981228461266], [-77.37272179212546, 34.699763150987714], [-77.37218888910952, 34.69970447367938], [-77.37214056437197, 34.69970323159534], [-77.37204618393984, 34.69975019981274], [-77.3712554652365, 34.70015367380114], [-77.37109501379717, 34.70030258342749], [-77.37088916946487, 34.70046725006085], [-77.37077000655407, 34.70059095134783], [-77.37072078413036, 34.700637119169095], [-77.37067968678772, 34.70080213873817], [-77.37070288026297, 34.70084387399655], [-77.37085721283884, 34.70103172271743], [-77.37088397009688, 34.70103914247258], [-77.37115665775987, 34.701031261822216], [-77.3713604647491, 34.70106659802548], [-77.37173833749327, 34.70108965686094], [-77.37211712227966, 34.70127264535189]], [[-77.37968754264165, 34.72939330406898], [-77.37967196021584, 34.72939905531226], [-77.37963853657897, 34.729399490681786], [-77.37936518421465, 34.729399314280386], [-77.37921448170498, 34.729399216686154], [-77.3790404834538, 34.7294133968405], [-77.37875850003185, 34.72935272379201], [-77.37852419935331, 34.729009459123134], [-77.37852835303175, 34.72900232852018], [-77.37881858595172, 34.72875154754942], [-77.37923596919242, 34.728707506204096], [-77.37924573008159, 34.72870590732645], [-77.37924796823265, 34.72870542927419], [-77.37925020507957, 34.72870438132534], [-77.37962647094747, 34.72857607216757], [-77.37992719086287, 34.72838214383239], [-77.37995682543257, 34.72836795205702], [-77.3799927833553, 34.72834109743951], [-77.38031002354069, 34.72819720105432], [-77.38049733975802, 34.728022511213936], [-77.38076373295314, 34.72789388189907], [-77.3810539295213, 34.72791706909801], [-77.38142326618707, 34.72783073310383], [-77.38145966103241, 34.72783226426037], [-77.38197686936257, 34.72801176624255], [-77.38201039787013, 34.72801718082247], [-77.38204514862625, 34.72804151488004], [-77.38235636458265, 34.728299929636165], [-77.38250383781497, 34.72852664170301], [-77.38259514782217, 34.728646724691664], [-77.38272383388838, 34.72880176428965], [-77.38266823092789, 34.729060773407845], [-77.38262331459765, 34.72932576687117], [-77.38260026822064, 34.72953717542073], [-77.38256633402655, 34.72964260989329], [-77.38233662312938, 34.72964702974467], [-77.38218362260612, 34.72963058675134], [-77.3821205986622, 34.72966199312142], [-77.38197960541794, 34.72965966399156], [-77.38154319727249, 34.72962782247207], [-77.38136584181595, 34.729605233504486], [-77.38122643102446, 34.729614558344544], [-77.38118157590725, 34.729622968761696], [-77.38092470070725, 34.729549460266576], [-77.38089969381213, 34.729536118769516], [-77.38078000005288, 34.729519409027716], [-77.3806619198988, 34.72952142274718], [-77.38053538527804, 34.729504962732385], [-77.38028942102153, 34.729528951980484], [-77.38015137543275, 34.729434777076726]], [[-77.37456555697064, 34.59261970651067], [-77.3745451528344, 34.59263032688402], [-77.3738459646989, 34.59267913453708], [-77.37377740746888, 34.5925744675984], [-77.3734463619225, 34.59231821504936], [-77.37319222978707, 34.591998083859], [-77.37336442647957, 34.591527977576405], [-77.37347570899207, 34.59110812881533], [-77.37328701983857, 34.59081514336881], [-77.37312570303007, 34.59030942973643], [-77.3731828670764, 34.59009350448349], [-77.37304544144271, 34.58989643225283], [-77.37333197754786, 34.58979882414802], [-77.3734504802967, 34.58976675330187], [-77.3737783290947, 34.589806266073424], [-77.37412148062965, 34.58979627827246], [-77.3743284084523, 34.58987971393468], [-77.37456647973471, 34.58976700380683], [-77.3745907037307, 34.58967381833837], [-77.37457522162293, 34.58966666557786], [-77.3745665146791, 34.58965929985902], [-77.37421096697815, 34.589687014717875], [-77.3741251735705, 34.58931632472891], [-77.37411701117978, 34.58895291644866], [-77.37412700335283, 34.588842251078155], [-77.37417279972547, 34.58858768593166], [-77.37449672135837, 34.58848928029847], [-77.3745669174947, 34.58841987937964], [-77.37458290562472, 34.58841848461064], [-77.37533985271416, 34.58830860619586], [-77.37535506883896, 34.58833509563655], [-77.37550482745574, 34.58911755633844], [-77.37559128643223, 34.58935994512674], [-77.37535466366582, 34.58961909575189], [-77.37521655665658, 34.58985949954344], [-77.37481209023808, 34.59006648350765], [-77.37513372716947, 34.590257956655584], [-77.37503471528731, 34.590883531438095], [-77.37535417068398, 34.5911862111915], [-77.37554773976174, 34.59145010809867], [-77.37592254445352, 34.59160474033642], [-77.37614211981779, 34.59184748411531], [-77.37638260165498, 34.59212840120796], [-77.37671171591921, 34.59234015915689], [-77.37692998715309, 34.59282950794451], [-77.37699057790174, 34.593083745524936], [-77.3771913615385, 34.593120173119566], [-77.37705858326632, 34.59327798720891], [-77.3769297714233, 34.59356452219396], [-77.37678899447229, 34.59332988476394], [-77.37614154850394, 34.593730407291076], [-77.37560392953174, 34.59334888996477], [-77.37549008713668, 34.59321817799615], [-77.3753536265017, 34.59292259140929], [-77.37463407511663, 34.592639494675616], [-77.37459531139514, 34.59261302558915]], [[-77.37389966636695, 34.67624429932239], [-77.37416069169979, 34.67623167530946], [-77.37446345927877, 34.6762044175571], [-77.37448188940084, 34.67621145763392], [-77.37473852448471, 34.67630273241975], [-77.37480915841043, 34.67633247707103], [-77.37478564533653, 34.67640026351147], [-77.37475562833596, 34.676454066245185], [-77.37480434201315, 34.676885088352975], [-77.37452485853963, 34.677339941404234], [-77.37456794552998, 34.67740499006878], [-77.37448295927497, 34.6774886497338], [-77.37435233876522, 34.67747279012608], [-77.37386882713064, 34.677501119555764], [-77.37380114364689, 34.677502966286], [-77.37379335768453, 34.677498230598445], [-77.37318422566257, 34.67758374741971], [-77.3731509115451, 34.67758433829971], [-77.37251713205958, 34.67777171095493], [-77.37192143098741, 34.67777092202327], [-77.37191907124877, 34.677770354544144], [-77.3719163795773, 34.677771485577374], [-77.37191771959544, 34.677769376404115], [-77.37191100646326, 34.677761682631726], [-77.37162050492525, 34.67732284244634], [-77.37155381674194, 34.67726214190337], [-77.37155486301333, 34.67696276748143], [-77.37156766820235, 34.676355318128095], [-77.37164566012979, 34.67625021770252], [-77.3717869838286, 34.67616250387033], [-77.37185942646265, 34.676238301420085], [-77.37250058167518, 34.67622705688247], [-77.37287012712724, 34.67624855838448], [-77.3729411337784, 34.67630985191687], [-77.37306812403203, 34.67623469977438]], [[-77.39502887108574, 34.720246973495136], [-77.39528001462881, 34.71978966845028], [-77.39524391550071, 34.71976306734282], [-77.39526256964638, 34.719723743285726], [-77.39530712379916, 34.71975140547686], [-77.39530546673129, 34.719779058754504], [-77.39532741334108, 34.71979228355825], [-77.39586405697321, 34.72004186076294], [-77.39592208882608, 34.72005405190102], [-77.39626351295252, 34.72027232793057], [-77.39636445071726, 34.720527382799034], [-77.39641490481756, 34.72065553805427], [-77.39644078774694, 34.72074099324855], [-77.39638275299968, 34.720807449175254], [-77.39629995863163, 34.72097129298034], [-77.39622003647098, 34.721025597640704], [-77.39610357383988, 34.721099188286374], [-77.39591791819623, 34.72111719594295], [-77.39587161546197, 34.72112168706797], [-77.39565415676344, 34.72111251312383], [-77.3955520634529, 34.721118180585194], [-77.39504107891199, 34.72085817128929], [-77.39498268201544, 34.72087064488334], [-77.39475742799252, 34.72090013891818], [-77.39484549510408, 34.72074196088], [-77.39486344284262, 34.7205676462482]], [[-77.31992647338043, 34.747725155160325], [-77.31987121315217, 34.74770246595114], [-77.31952057030391, 34.74724895750942], [-77.31942204998104, 34.74718726822107], [-77.31892370682526, 34.746938093266216], [-77.31890911470477, 34.746930752496745], [-77.31890114608176, 34.746918685419075], [-77.31882109195047, 34.746952146265066], [-77.31882670570103, 34.747174558988156], [-77.31878193847629, 34.747816672765055], [-77.31916579205134, 34.747879662254746], [-77.31969799150394, 34.74829790059438], [-77.32007230119872, 34.7479862814273], [-77.31999892665976, 34.747765559764446]], [[-77.29265393788482, 34.56358301971447], [-77.2925979049066, 34.56358013744671], [-77.29250411581226, 34.56355861446409], [-77.29250075991996, 34.563461816977224], [-77.2923643252876, 34.56333385833964], [-77.292664826307, 34.56312323056301], [-77.29302464226711, 34.563220095417954], [-77.29306860414951, 34.563224454967845], [-77.29306998698357, 34.56324218604982], [-77.29279998096219, 34.563516184712824]], [[-77.26579943258503, 34.58414642321108], [-77.26515829743097, 34.58451462735649], [-77.26511444144806, 34.584092556615374], [-77.26492349107455, 34.58390883216816], [-77.26499129971685, 34.58378239901205], [-77.26550495617215, 34.58365193068525], [-77.26554500136254, 34.58361759010556], [-77.2656287694617, 34.58358453556609], [-77.26624476032568, 34.58371010330989], [-77.26573631682261, 34.58378772652147]], [[-77.23690032010039, 34.59231865175822], [-77.2363491389113, 34.59240268068173], [-77.23586306734046, 34.59242492572792], [-77.23552009440748, 34.59166001409958], [-77.23575309333677, 34.59129793704624], [-77.23579509651988, 34.591210351738404], [-77.23592425115679, 34.591092189158054], [-77.23623518088064, 34.59077370530721], [-77.23641998784285, 34.59057643658203], [-77.23688405945441, 34.59040828030504], [-77.2374694279859, 34.59051390452992], [-77.23766778337315, 34.59052564555493], [-77.23825100714167, 34.59089068977158], [-77.23830804473648, 34.59092639008225], [-77.23831645162493, 34.590931651930575], [-77.23832578444724, 34.59093857679395], [-77.23817797776111, 34.591718232152914], [-77.23808662070422, 34.59186242394681], [-77.23796357083107, 34.59194978751325], [-77.23775320773265, 34.59202234222456]], [[-77.3999466980003, 34.73203203946409], [-77.39943991545763, 34.732037330985946], [-77.39916125939845, 34.732085656530614], [-77.39877610669633, 34.732181701729694], [-77.39875554975774, 34.732186201618894], [-77.39869826075739, 34.73220074934549], [-77.39836739832234, 34.732284165259244], [-77.39830735898884, 34.73229729896859], [-77.39806760696581, 34.73234739878579], [-77.39795324578054, 34.73235525997431], [-77.397635005718, 34.73234167020488], [-77.39748609684715, 34.732339698319585], [-77.39742901477776, 34.732338338283874], [-77.39733017406347, 34.732324676581285], [-77.39733452102844, 34.73223655514026], [-77.39738071431792, 34.732167382534094], [-77.39747236462934, 34.73172563397493], [-77.39762095638544, 34.73167619445441], [-77.3979419411367, 34.73158849165008], [-77.39804069737698, 34.73158219270677], [-77.3982946485738, 34.73156414711773], [-77.39837910127737, 34.73155502306467], [-77.398534908937, 34.73153818960202], [-77.39880774982736, 34.73150763561334], [-77.39895660857691, 34.73149256381775], [-77.39923759163594, 34.73146220066705], [-77.39941096985248, 34.73145734079338], [-77.39960642654842, 34.731462863853054], [-77.39977004459885, 34.73158453999131], [-77.3999588029612, 34.73167530655098], [-77.39998787875511, 34.73194071068967]], [[-77.42214773124027, 34.7442951743331], [-77.42189078089869, 34.74473692582092], [-77.42191215486548, 34.74521759187092], [-77.42194137853686, 34.7452739722089], [-77.42196651766551, 34.74532247158898], [-77.42230106408415, 34.7459678943148], [-77.4223204216452, 34.74600523984794], [-77.42232187621225, 34.746008046127585], [-77.4223244286396, 34.74600833388731], [-77.42232567664637, 34.74600810736504], [-77.42232672603082, 34.746007443319314], [-77.42312992141453, 34.74582630133426], [-77.42328301446112, 34.74578260095713], [-77.42349321714423, 34.745671965422375], [-77.42355350119797, 34.745494433038054], [-77.42338805174313, 34.74526024163742], [-77.42322764554349, 34.745103815200856], [-77.42288626072218, 34.7448799386456], [-77.42269923264101, 34.74471410715512], [-77.42220108437249, 34.74427292512715], [-77.422173582888, 34.7442638021752]], [[-77.33024314025323, 34.65669386922664], [-77.33029655057516, 34.65667017964153], [-77.33039171306616, 34.65662697821256], [-77.3304168477668, 34.65661566196251], [-77.33035453086474, 34.656473427073465], [-77.3302886585635, 34.65649598084282], [-77.3302619805331, 34.656611962391565], [-77.33024559696766, 34.65662260789231]], [[-77.43251028042005, 34.50364148301845], [-77.43248983847427, 34.503702680690246], [-77.4324249116526, 34.50389705783462], [-77.43229734502704, 34.50403063061903], [-77.43211176721286, 34.50419348973865], [-77.4319114991998, 34.50424166192618], [-77.4309928338061, 34.5041866475391], [-77.43083326902163, 34.50371760673978], [-77.43075968999355, 34.503614425189056], [-77.43079388938821, 34.50350774372543], [-77.43082338566884, 34.503415733919965], [-77.430866227655, 34.5032820917752], [-77.43090578094271, 34.503158710933874], [-77.43137552252234, 34.5029703039377], [-77.43146837466304, 34.502838016202354], [-77.43172760746776, 34.50278699830368], [-77.43206654545281, 34.50284324360831], [-77.43228183362032, 34.50301653418745], [-77.4326102744052, 34.50334212229388], [-77.43260209877268, 34.5033890422727], [-77.43257854222337, 34.50343712239807]], [[-77.36925513899304, 34.7220272376317], [-77.36972524252239, 34.72203824142757], [-77.36982538762625, 34.722125534379586], [-77.37005693471166, 34.722064610840185], [-77.37006233213391, 34.72188978522663], [-77.37006507632489, 34.72177670506392], [-77.37007087485235, 34.72140121942168], [-77.37006584735761, 34.7212969404882], [-77.37005146686842, 34.720998659417084], [-77.36986899988975, 34.72094156736769], [-77.36961175913758, 34.72079839290659], [-77.36910548018125, 34.721046482584796], [-77.36897806894221, 34.7211089172741], [-77.36890556224853, 34.72116857099077], [-77.3681689696099, 34.72166255292155], [-77.36816561378689, 34.721665487225955], [-77.36816185259053, 34.72166797762887], [-77.36791229575414, 34.72194151447513], [-77.3680593037537, 34.72202131897873], [-77.36818631409764, 34.72203980894437], [-77.36858906481481, 34.72204060062661], [-77.36866849863114, 34.72198542199099], [-77.36868550706649, 34.72204989642754], [-77.36899659843183, 34.72203622663669]], [[-77.37411717390184, 34.60120516788565], [-77.3739314486778, 34.60140098446238], [-77.37377446177965, 34.601534604459935], [-77.37369355291086, 34.601603617302246], [-77.37338575014888, 34.60173508751478], [-77.37338159446843, 34.60173711249031], [-77.37338026993321, 34.601738364945135], [-77.37337530102887, 34.60174194394156], [-77.37298607152296, 34.60195592143437], [-77.37279664017811, 34.60204047482211], [-77.3724503487135, 34.602022326794476], [-77.37219783913815, 34.601894825220455], [-77.3719170600778, 34.601824559767515], [-77.37157229344626, 34.60174694583777], [-77.3714096398916, 34.60174224526986], [-77.37130997466622, 34.60171688263797], [-77.37122541149463, 34.60162169144571], [-77.37072361924483, 34.60095466164566], [-77.37065103384563, 34.60085529865709], [-77.3706604283254, 34.600812253870515], [-77.37074330830089, 34.59999289186592], [-77.37062211123819, 34.59975468833481], [-77.37042328934942, 34.59940418038343], [-77.37030907297792, 34.5992063143284], [-77.36983434499899, 34.598506954480115], [-77.36979503783073, 34.59847358627604], [-77.3697007197503, 34.59844481261741], [-77.36957411399554, 34.59818257696175], [-77.36969283481862, 34.597596829993805], [-77.37062311315, 34.59701489335194], [-77.37129613877057, 34.59639247553971], [-77.37217279614057, 34.59554141034581], [-77.37220005209716, 34.59550799367348], [-77.37221228028746, 34.59553572309529], [-77.3722163597458, 34.595552720394316], [-77.372680271425, 34.59664878635928], [-77.37266336791791, 34.59716898460641], [-77.37268715881959, 34.59769112044585], [-77.37272596107243, 34.59800908768872], [-77.37281430652166, 34.59818276430709], [-77.37298730325885, 34.59829045439588], [-77.3731833586084, 34.59858101308409], [-77.37333469894091, 34.59877052149726], [-77.37353194699237, 34.599004248516806], [-77.37377519213021, 34.599296851046354], [-77.37389004348917, 34.59941587903923], [-77.37397297529515, 34.59952769886064], [-77.37416917046473, 34.59971734035588], [-77.37427654337358, 34.599792835590804], [-77.37456314898313, 34.60015013004938], [-77.37465567540434, 34.60027847390441], [-77.3746407284616, 34.60036427189314], [-77.37456301208182, 34.60058201447228], [-77.37454339691078, 34.600698118451426], [-77.37451908033248, 34.60072271188272], [-77.37430856988144, 34.600903612893866], [-77.37416872008622, 34.60111762898855]], [[-77.40931868155464, 34.57057229376362], [-77.4093608139452, 34.570648195977114], [-77.40984795643226, 34.570774655243994], [-77.41003060815412, 34.57124603260457], [-77.41008104574516, 34.571339013948105], [-77.41005807531145, 34.5713966783754], [-77.41005467144582, 34.57142308574309], [-77.41003104709607, 34.57182516072385], [-77.41003094133181, 34.57182548041019], [-77.41003065886062, 34.57182550840766], [-77.41002996568857, 34.571825316868406], [-77.4099896295767, 34.57145074219097], [-77.40963667404426, 34.571731610046854], [-77.4095061796794, 34.57176031211986], [-77.40940636703452, 34.57173897458157], [-77.40924269268834, 34.57167171241028], [-77.40914417748125, 34.571634797638396], [-77.40896900292354, 34.57155392537837], [-77.4089439343908, 34.57123561530509], [-77.40898629219872, 34.57112685049216], [-77.40917804313978, 34.57074417955241], [-77.40917843517768, 34.570674528986316], [-77.40913867648256, 34.57056826390558]], [[-77.2685611362051, 34.582546247624286], [-77.26854439680805, 34.582476906866724], [-77.26815584141532, 34.58233064755701], [-77.2680478072685, 34.58213509671767], [-77.26790089227993, 34.58205872721338], [-77.26784923572733, 34.58195091855653], [-77.26800740311279, 34.58186412884079], [-77.26823978374486, 34.58175553470201], [-77.26847225917528, 34.581620316615144], [-77.26911840165752, 34.58160264710854], [-77.26915555997215, 34.58161150907118], [-77.26961514528135, 34.58208974570992], [-77.26917909060424, 34.58231475939667], [-77.2688381176601, 34.58260285733435]], [[-77.37332963563216, 34.53582024938896], [-77.37330254026091, 34.53578467011979], [-77.37327918336172, 34.535715601427874], [-77.37340317298107, 34.53537011841069], [-77.37398918021493, 34.53532091110907], [-77.37372056392277, 34.53572442137659], [-77.3735316208571, 34.53583840290682], [-77.37339191641004, 34.53586543859785]], [[-77.33636612852126, 34.55867881636446], [-77.33637718064902, 34.55867428639767], [-77.3367060307598, 34.558673325373064], [-77.33675994338377, 34.558821904072246], [-77.33688742338269, 34.558876121136116], [-77.33684012397202, 34.55902035575409], [-77.33681148702509, 34.55908024468913], [-77.33675960568277, 34.55924435776793], [-77.33650709554999, 34.55964553914746], [-77.336365248416, 34.55977343572297], [-77.33624180210785, 34.55966405868222], [-77.3359717970731, 34.55917588266491], [-77.33596373873804, 34.55915506881131], [-77.33595412210671, 34.55914774888209], [-77.33594527476666, 34.55912038934143], [-77.33597183664186, 34.55912695632569], [-77.33615418066057, 34.55892264837079]], [[-77.28869252125915, 34.56977475051196], [-77.2889614625604, 34.569257107395515], [-77.28852637997062, 34.56894436362816], [-77.2882702015284, 34.56935174495317]], [[-77.33387008297403, 34.69128626027729], [-77.33381668074118, 34.69149941256191], [-77.33390999748272, 34.69127383683211], [-77.33391449819246, 34.69116278164656], [-77.33387218053505, 34.69127902331218]], [[-77.2564698144656, 34.60462277431263], [-77.25668274722818, 34.60459894536202], [-77.25700880190917, 34.60466518188894], [-77.25660912114391, 34.60474443136337]], [[-77.36378841303899, 34.58034466640677], [-77.36353698526456, 34.58007759877896], [-77.36342920551668, 34.57993452394527], [-77.36291194612198, 34.579892799145], [-77.36297495453306, 34.579640414506684], [-77.36347316834856, 34.57889352661493], [-77.36353757230127, 34.578812717562265], [-77.36374649159524, 34.578698470198255], [-77.36432584234612, 34.578303215412475], [-77.36451395381795, 34.578166529267705], [-77.36471989482881, 34.578223293511535], [-77.36480260318277, 34.578257759258385], [-77.36511379914911, 34.57847389040734], [-77.36529411567344, 34.57850636397494], [-77.36550780747521, 34.578493813549684], [-77.36577688658208, 34.57863115051754], [-77.365804127187, 34.57873238440897], [-77.36590168710049, 34.57880911137772], [-77.36607777281824, 34.57877753789996], [-77.36633969270068, 34.57892720583671], [-77.36640835301168, 34.57896476913952], [-77.36657786192127, 34.579060773448845], [-77.36668956068841, 34.57919227430616], [-77.36676948958662, 34.57925116621967], [-77.3669512887706, 34.5793111349324], [-77.36704006315257, 34.57967623645488], [-77.36668921965318, 34.5799924867807], [-77.36660106870355, 34.58011576036697], [-77.36598277515749, 34.58029972621795], [-77.36590102741488, 34.58032313845236], [-77.36522953031331, 34.58053388213169], [-77.36511282400767, 34.580664551106075], [-77.36444373782635, 34.5812419913375], [-77.3643244709966, 34.58132102150089]], [[-77.36646148000294, 34.545094522977465], [-77.36676289170313, 34.54545998549111], [-77.3667046709738, 34.54554914216883], [-77.36609793966397, 34.54586705741552], [-77.36594900962602, 34.546057484710076], [-77.36538722341677, 34.546177711237256], [-77.36530549975774, 34.54618478627516], [-77.36522101296227, 34.5460076901298], [-77.36525002767348, 34.545798770663076], [-77.36526444714976, 34.545756607944874], [-77.36527205553125, 34.54572815827324], [-77.36532165350228, 34.54547685245069], [-77.36543360489715, 34.54531003051568], [-77.36562003653276, 34.5452157345711], [-77.36594076739836, 34.54506003924633], [-77.36611768460736, 34.54500138587506], [-77.36624004842828, 34.5450494295536]], [[-77.43259322086212, 34.73047228567627], [-77.43271131595635, 34.7305150122251], [-77.4328727616586, 34.73061404692878], [-77.43300039649984, 34.73072979833066], [-77.43306627907762, 34.73081331876338], [-77.43289525882493, 34.73111984014011], [-77.43281886141511, 34.73122540349371], [-77.43267371081066, 34.73130178847049], [-77.43256981809255, 34.7313359142873], [-77.43239512057308, 34.731356837788844], [-77.43233529241915, 34.73136344415138], [-77.43219363284663, 34.731286420591545], [-77.43208015049665, 34.731224717654335], [-77.4320689889403, 34.73117594114211], [-77.4320584824178, 34.73095966189316], [-77.43214097361849, 34.73075295111713], [-77.43216225493086, 34.730716404151856], [-77.43217504729313, 34.73069095477761], [-77.43223815875362, 34.73059145716336], [-77.4322935699897, 34.73051071040062], [-77.43235900835258, 34.730505642346074], [-77.43250209650164, 34.73047751166386]], [[-77.2820375638839, 34.56292443605592], [-77.28219312352203, 34.56292117255017], [-77.28237501543964, 34.562762453428874], [-77.28289080381151, 34.56246261614587], [-77.28291111839245, 34.562804551933105], [-77.28251023603377, 34.5628819774221], [-77.2821908850074, 34.56301520025327], [-77.2818870733083, 34.56321633037431], [-77.2816987319602, 34.56329779902297], [-77.28136825257741, 34.56346014720371], [-77.2812599570932, 34.56347855228246], [-77.2810735438605, 34.56350830785911], [-77.28103198275453, 34.56339527309958], [-77.28118792540963, 34.56327341861768], [-77.28132715769799, 34.5631723575741], [-77.28137587778363, 34.56313998450665], [-77.28142655514645, 34.563119326420654], [-77.28169322670476, 34.56301062096395], [-77.28177108062336, 34.562978884760675], [-77.28178511489287, 34.5630048075716]], [[-77.22477600862938, 34.65779928749761], [-77.22475270754853, 34.65774328590481], [-77.22475678142757, 34.657645891223936], [-77.22455533035202, 34.65772771784001], [-77.22462797171542, 34.65777020572562], [-77.2246575149873, 34.65784175958089]], [[-77.35739970996767, 34.73825065428778], [-77.35729475879765, 34.73847252782527], [-77.35731611126236, 34.738262131315985], [-77.35736337404828, 34.738236257590835]], [[-77.41826875158588, 34.5638786618115], [-77.41821320573804, 34.56375367290977], [-77.41838592442204, 34.56373541712691], [-77.418457285659, 34.56381483887773], [-77.41862105716014, 34.56387263356282], [-77.41865250361874, 34.564163599081716], [-77.41839229996262, 34.56415229085581], [-77.41830271374678, 34.5639753296754]], [[-77.38758579172062, 34.53661382979611], [-77.38777404417074, 34.536636054042084], [-77.38815130469848, 34.5366684405377], [-77.38813499659162, 34.53698107337283], [-77.38779776944712, 34.537122296929795], [-77.38749214756176, 34.5372555139078], [-77.38713210353227, 34.537218314416975], [-77.38710465945996, 34.53697818723399], [-77.38710562466004, 34.53697714328757], [-77.38741173256378, 34.5366883158251], [-77.38745217945448, 34.53664902092445], [-77.38750685633067, 34.53660342495896]], [[-77.39372215565812, 34.53675724768642], [-77.3937321479137, 34.53678779008526], [-77.3937800326366, 34.53693884359992], [-77.39379843681279, 34.536979032770816], [-77.39391241088512, 34.536974628916894], [-77.39411708746148, 34.536979139523794], [-77.39422499914588, 34.53696255066606], [-77.39426911010473, 34.53686399860756], [-77.39431655143508, 34.536671477169655], [-77.39418228356658, 34.536507039930804], [-77.39408736561558, 34.5365187514762], [-77.39378763551167, 34.53660065560573], [-77.39370694895065, 34.53671065910888]], [[-77.33694930405841, 34.533075984037964], [-77.33700506418887, 34.533176206188585], [-77.33702370742469, 34.53322203797338], [-77.336944144536, 34.53329872882752], [-77.3367696077726, 34.53334672702768], [-77.33655042363088, 34.53334954291518], [-77.33645639070353, 34.53331427075653], [-77.33623690933153, 34.533286680861146], [-77.3361746793564, 34.533286070386694], [-77.33615978758594, 34.533267207469095], [-77.33604629200832, 34.53324296033779], [-77.33595740853444, 34.53320911700727], [-77.33595342829915, 34.5331977457263], [-77.33601459043297, 34.53307383637368], [-77.3360398775558, 34.53299142976077], [-77.33609231976178, 34.532817840855316], [-77.33617149973904, 34.53276178088103], [-77.33629055343036, 34.53278933181248], [-77.33634726294748, 34.532914172044755], [-77.33656094680319, 34.532895333185], [-77.33680293375387, 34.53296045941282], [-77.3368597321357, 34.53300912005983]], [[-77.29375939495363, 34.55603447497759], [-77.29361505016291, 34.55616012656106], [-77.29344358970242, 34.556079769753325], [-77.29362212393337, 34.5558613128535]], [[-77.45412853037159, 34.60307617675221], [-77.45411353202046, 34.603065910233255], [-77.45409984603236, 34.60304174318576], [-77.4540420937318, 34.60290165692097], [-77.4540851644686, 34.60284218463981], [-77.45422290736077, 34.602775107984215], [-77.45443214316671, 34.602704880267744], [-77.45459745417196, 34.60279329230052], [-77.45502401014187, 34.60280619231714], [-77.45465630176156, 34.60300820054312], [-77.45447778063803, 34.603106273855225], [-77.45442783106765, 34.60313371444248], [-77.45432544013167, 34.60312067771543], [-77.45415226917812, 34.60308725282222]], [[-77.43472651222203, 34.74395900182084], [-77.43478404490264, 34.74392583743544], [-77.43480673628514, 34.743925536372906], [-77.43510937297202, 34.74393231037622], [-77.43524260866533, 34.74409179723928], [-77.43526562451952, 34.7441805086866], [-77.4353057976993, 34.744393394316276], [-77.43529942446467, 34.74461280849795], [-77.4353338097734, 34.744823795062814], [-77.43533618557686, 34.74496305083646], [-77.43510530628251, 34.74505411205749], [-77.43488676318114, 34.744806025950695], [-77.43491494823036, 34.74477319311782], [-77.43486359732465, 34.74478146570312], [-77.43482142991931, 34.74473461484098], [-77.43457893210883, 34.744466962888616], [-77.43452844009425, 34.74425605617786], [-77.43448013569326, 34.744104910051796]], [[-77.34252439451706, 34.62605541792904], [-77.34227068242784, 34.62635291930269], [-77.3420005919885, 34.62656029989744], [-77.34197603571504, 34.626579082025955], [-77.34196517126122, 34.62655419280027], [-77.34197977067817, 34.626540857267926], [-77.34182785108428, 34.626151047130506], [-77.34188641625072, 34.62603343161079], [-77.34209259819431, 34.62597896657311], [-77.34219160069449, 34.625959316647055]], [[-77.33914718046555, 34.63323746339422], [-77.33917532376164, 34.63325098297273], [-77.33918638807454, 34.63325102908185], [-77.33931459111284, 34.63324800627551], [-77.3394943073213, 34.63324541521889], [-77.33965199686739, 34.63320169411381], [-77.33977914569724, 34.63316029705896], [-77.33977312784651, 34.63303993967576], [-77.3401778000098, 34.63286527586267], [-77.34028833684009, 34.63241781461709], [-77.34063572427995, 34.632222667724236], [-77.34027709057943, 34.632239490460584], [-77.34025233086741, 34.63223860356434], [-77.3402296899315, 34.632246471513234], [-77.33974159747012, 34.632151710434584], [-77.33957518745852, 34.63205470019101], [-77.3393905427983, 34.63213017424603], [-77.33926109003829, 34.63208456828932], [-77.33919394133466, 34.63208801348317], [-77.33892598273258, 34.632009851971425], [-77.33881807147753, 34.632262885350485], [-77.33867542993485, 34.63235603128908], [-77.33844085391692, 34.63252393818108], [-77.33842720837002, 34.6325651781081], [-77.33869126206245, 34.63308330809865]], [[-77.24167400357724, 34.59555310847129], [-77.24155784832507, 34.5954355528719], [-77.24145975454775, 34.59506014486816], [-77.2426964969822, 34.59505394482973], [-77.24153785340012, 34.5948692993976], [-77.24197629005876, 34.59420487875296], [-77.24300609656112, 34.594319748023246], [-77.24310588711236, 34.594614859849585], [-77.24302391769838, 34.594935125430666], [-77.24300372305106, 34.59505540965767], [-77.24299289137257, 34.59507730510138], [-77.24297052043856, 34.595089328395936], [-77.24291852148178, 34.595143332568135], [-77.24253931091259, 34.595512908090384], [-77.24205616406053, 34.595590702277136], [-77.24181433412856, 34.59565895345269]], [[-77.36740093557734, 34.72106720454778], [-77.36718706867542, 34.721066374099394], [-77.36713932234095, 34.72106495054849], [-77.36712927323791, 34.721074314666545], [-77.36702378748099, 34.72129212972056], [-77.36699412205492, 34.721336578046056], [-77.36704790799698, 34.72137991469963], [-77.36725827153478, 34.72149985349371], [-77.36730814449604, 34.721514808124546], [-77.36748534127693, 34.72139649934425], [-77.36765218217076, 34.72136096383182], [-77.36810597137621, 34.721612652340255], [-77.36770894460531, 34.72122442108171], [-77.36769262158415, 34.72122162844176], [-77.3676228976154, 34.72118471529295], [-77.3674316975508, 34.721089106200424]], [[-77.43208483818583, 34.67869709155635], [-77.43212914327816, 34.67864420300893], [-77.43218782825332, 34.67850571640496], [-77.43206309149372, 34.678409954520205], [-77.43196843907793, 34.67836319679241], [-77.4318426256887, 34.67833284735517], [-77.43168655128271, 34.678294498173045], [-77.43161463960938, 34.67847874417612], [-77.43159468970856, 34.67852566394799], [-77.43159937298502, 34.6785315156566], [-77.43160535275275, 34.67853565586599], [-77.4317327520121, 34.67862417967979], [-77.43180555672153, 34.67866528172236], [-77.43187084618393, 34.67870054572803], [-77.43196650747068, 34.67875221374678]], [[-77.33872813438151, 34.56070179602618], [-77.33850742305589, 34.560665429314696], [-77.3383342298235, 34.56065833141664], [-77.33820040460098, 34.560667138781525], [-77.33807035401179, 34.56054162542402], [-77.33814187483254, 34.56032376014453], [-77.33833472170255, 34.56002751128319], [-77.33872798945235, 34.56002323839239], [-77.33872866054828, 34.560022797326184], [-77.33872892739329, 34.56002266811882], [-77.33912247696524, 34.56017698259106], [-77.33919419725147, 34.56030261804278], [-77.33923636940608, 34.560373950601054], [-77.33927871852934, 34.560536539121074], [-77.33926011240774, 34.56058280767974], [-77.33912205042772, 34.56073076032272], [-77.33903942474757, 34.560737776161645], [-77.33882256348552, 34.56075618990044]], [[-77.34854832518982, 34.55216175073391], [-77.34858852322006, 34.55231943623237], [-77.34843774698979, 34.55243963981982], [-77.34828033887905, 34.552414723524], [-77.34823180903408, 34.552401219320565], [-77.34812776866184, 34.552385735831805], [-77.34798434167006, 34.55234709009406], [-77.34788919335925, 34.55235023059335], [-77.34773561211706, 34.55231975318495], [-77.3477097881256, 34.55231345305225], [-77.34769404969083, 34.552299357585206], [-77.34755863947811, 34.55222280721797], [-77.34754630412485, 34.552195784328745], [-77.34750125584097, 34.55214645559896], [-77.34739864317892, 34.552066144391446], [-77.34728808096696, 34.55188016908187], [-77.34726531523202, 34.551775371907866], [-77.34731705776326, 34.55164516039429], [-77.34730689840586, 34.551392551889485], [-77.3475200175607, 34.55133175100184], [-77.347606669654, 34.55142604949583], [-77.34791118371767, 34.55139513036777], [-77.34794550107377, 34.55141105391766], [-77.34795467373831, 34.551431361123086], [-77.34811454723518, 34.5515245131217], [-77.34813106149176, 34.55152839058958], [-77.34819847401843, 34.55157804472012], [-77.34827015243073, 34.551630786553766], [-77.34828158929318, 34.55163948862438], [-77.34829787648275, 34.55165286183745], [-77.348430478576, 34.55176819821467], [-77.34849033678299, 34.55182026225668], [-77.34850446555981, 34.55184189071319], [-77.34851875613305, 34.55185809809744], [-77.34852156537156, 34.551940640339026], [-77.3485363574102, 34.55195971188141], [-77.34855577939886, 34.5520003074153], [-77.34859973840652, 34.55207300183318]], [[-77.44330678374602, 34.74975402183433], [-77.44321353942237, 34.74995103545585], [-77.44351025304725, 34.75056196661741], [-77.44383493107297, 34.75123046014349], [-77.44339493893698, 34.750755433752225], [-77.44338620545972, 34.75061372063062], [-77.44300258806214, 34.75043637020566], [-77.44287986416172, 34.750319285246775], [-77.44284358506044, 34.750359299657134], [-77.44243788201697, 34.7501165361591], [-77.44259287961954, 34.7499499200006], [-77.44292634238172, 34.749850720929224], [-77.44297367698601, 34.749824140790146], [-77.44303824077049, 34.74977193040998]], [[-77.38127190343768, 34.58361118268499], [-77.38127721535062, 34.58362638115437], [-77.3812596849179, 34.583626104840526], [-77.38126135399507, 34.58361157322848]], [[-77.37550586703067, 34.53350846323387], [-77.3753630586576, 34.53331508492432], [-77.3753515697104, 34.533246879545366], [-77.37569886326753, 34.532990985685935], [-77.37576214077332, 34.532949914194816], [-77.37581323865747, 34.53295554066208], [-77.37582935520753, 34.53296203157084], [-77.375847149396, 34.532969610632115], [-77.37603532302732, 34.53304749465804], [-77.3761011123411, 34.533114808115975], [-77.37612670040139, 34.533174142128374], [-77.37608811970698, 34.533248931179074], [-77.37602030700084, 34.533434307553904], [-77.37579364871787, 34.53381860860763]], [[-77.43381428136682, 34.67902240748661], [-77.43373537469022, 34.67890003085033], [-77.43365971874718, 34.67878409582992], [-77.43345862774555, 34.67874922134524], [-77.43332312402966, 34.678726730093175], [-77.43330421845819, 34.678729252031424], [-77.4331685546291, 34.67879657818219], [-77.43315102437397, 34.678819267792356], [-77.43309480697258, 34.678899417920526], [-77.43302817829132, 34.678992330400256], [-77.43297531069075, 34.6790697853555], [-77.43316779959414, 34.67922059578241], [-77.43329372940926, 34.67931925873051], [-77.43345175924168, 34.67931729528705], [-77.43369024809783, 34.67932693230535], [-77.43376263696489, 34.67918752649088]], [[-77.2894107275259, 34.56030080085806], [-77.28941875978231, 34.56032659686572], [-77.28948877265071, 34.56033439417925], [-77.28946664867867, 34.56036599975838], [-77.28945500069904, 34.56037161486769], [-77.28935905029856, 34.56036468338707], [-77.28935159462723, 34.560365972271626], [-77.28930951607083, 34.560353668829116]], [[-77.38850187787332, 34.5631931864086], [-77.3883983790998, 34.56302102719949], [-77.38832548898287, 34.563028490862195], [-77.38831182142219, 34.56312677742908]], [[-77.42810011077741, 34.736009703470245], [-77.42795064426572, 34.735989504519], [-77.42786307174693, 34.73592251187132], [-77.42783206672524, 34.73589831689321], [-77.427821689528, 34.735881240097164], [-77.42775811705062, 34.7358132334544], [-77.42768969532503, 34.73573451021156], [-77.42768838830688, 34.735699307969085], [-77.42774855273554, 34.73570995990258], [-77.42787278370733, 34.73570475074533], [-77.42793571483523, 34.73572948458853], [-77.42803831945429, 34.73581228549058], [-77.42805739533392, 34.73585066403007], [-77.42807929319035, 34.735906790738724], [-77.42810696570118, 34.73600323924408], [-77.42810788945572, 34.73600645885227], [-77.42810850120416, 34.73600829077442], [-77.42811022749605, 34.736014607699495], [-77.42810459190788, 34.73601143886342]], [[-77.42955254342954, 34.709959828491705], [-77.42955173699629, 34.70995739411334], [-77.42932488999894, 34.709608431138086], [-77.42932426329867, 34.709598333946246], [-77.4293268345493, 34.709585182288116], [-77.42933348772335, 34.70946179332247], [-77.42940137491816, 34.709383286656724], [-77.42942948113318, 34.70937902800235], [-77.42952110324188, 34.709387621800275], [-77.4296746989426, 34.70940588648319], [-77.42971641348477, 34.70940213091022], [-77.42993841896462, 34.709533522165586], [-77.430026789759, 34.709761948389136], [-77.42995746356287, 34.70986801989634], [-77.42957096230059, 34.70996411555488], [-77.42955921998143, 34.70996498180822], [-77.4295540294196, 34.709963221147426]], [[-77.40039672843588, 34.580433631298064], [-77.40050506452721, 34.58034264261859], [-77.40057499845845, 34.58028390656445], [-77.40066155124144, 34.58030215218486], [-77.4008218213315, 34.58037229025696], [-77.40093956512165, 34.58038703398802], [-77.40096901544655, 34.58040527771775], [-77.40118258887753, 34.58051466720475], [-77.40136303222067, 34.58066029392218], [-77.40139122020216, 34.58068432427186], [-77.40142347294677, 34.580710044080355], [-77.40154040113713, 34.580926619501724], [-77.40176078140264, 34.58108594221059], [-77.40155700792374, 34.58132437129733], [-77.40136302444745, 34.58148885100066], [-77.40100758910951, 34.58157762516337], [-77.40096899849596, 34.58160200885632], [-77.40094805822436, 34.58160523434712], [-77.40059270332087, 34.581659970283255], [-77.40057497246724, 34.58165788094241], [-77.40034074875604, 34.581543243056736], [-77.4001809521851, 34.581440421917236], [-77.40004569025942, 34.581333433515894], [-77.400032500671, 34.58107073328202], [-77.40003219273561, 34.58075049450164], [-77.40018097029659, 34.580672194520304]], [[-77.41331504029267, 34.76161162066622], [-77.41335940397562, 34.76160249014403], [-77.41334220059377, 34.76151788657811], [-77.41329022869829, 34.7615783118124]], [[-77.44287717687266, 34.73592324508785], [-77.44276640869238, 34.73581936570132], [-77.44268160643277, 34.735729592343006], [-77.44263999572337, 34.73563497672889], [-77.44256761974796, 34.73547040512956], [-77.44270828975195, 34.735398920976564], [-77.44284383461991, 34.735407819015876], [-77.44320915282344, 34.73550946174569], [-77.4433049656603, 34.735552677192715], [-77.44351059650072, 34.73574919027159], [-77.44361327300527, 34.73578724715837], [-77.4435817072539, 34.73586532829089], [-77.44349556852052, 34.73607410354649], [-77.44329024046252, 34.73613689734768], [-77.44315501323571, 34.73607099308029], [-77.44306272752198, 34.73601697597905]], [[-77.35687264116856, 34.737863758738094], [-77.356845453196, 34.737839361280855], [-77.35679491448212, 34.73775806798582], [-77.35688504019991, 34.7378210644361], [-77.35690264559472, 34.73783150974064]], [[-77.37132338635783, 34.678792401434414], [-77.37134998043545, 34.67882221630394], [-77.37130358451303, 34.678860668236794], [-77.37110874636896, 34.67896505967005], [-77.37098259299823, 34.678935681666296], [-77.37076438266696, 34.678902719541206], [-77.37106803864094, 34.6786411113031], [-77.37117972664831, 34.67873296331603]], [[-77.38451563835716, 34.6268789859912], [-77.38472004027068, 34.62675773943208], [-77.38468912690455, 34.62655454007448], [-77.38451179748779, 34.62656345146746], [-77.3844110671553, 34.62656934085661], [-77.38423283214952, 34.62670745747287], [-77.38427543201811, 34.626767571902334], [-77.38430391236209, 34.62690949690645], [-77.38441100255122, 34.626928764100306]], [[-77.4223199652504, 34.56402197914493], [-77.42229646034315, 34.56416784513537], [-77.42224216223885, 34.564278946873], [-77.42212440809996, 34.56443179120346], [-77.42193946623263, 34.5644871769984], [-77.42196725121957, 34.56428515339864], [-77.4220944316134, 34.5641384892102], [-77.42219934176495, 34.56407722718467], [-77.42224211388974, 34.564067417163486]], [[-77.33646330242969, 34.62612377932058], [-77.33637500353358, 34.626189303606566], [-77.33615996041814, 34.626207085704415], [-77.33591276443914, 34.626118974683216], [-77.33611321174607, 34.625974322166826], [-77.33623591898098, 34.62584789054686], [-77.3362569670739, 34.625849026230156], [-77.33631822746221, 34.62585233155255], [-77.33641432647612, 34.62587993095707], [-77.33652497076906, 34.625892372157026], [-77.33655120852737, 34.62603135428941], [-77.33648920197928, 34.626084430706825]], [[-77.36984108269591, 34.5808355629271], [-77.36954104819067, 34.580636368609944], [-77.36956915173036, 34.58033911043032], [-77.36984119959101, 34.58053392326084], [-77.3698882589139, 34.58053565041281], [-77.37023526544267, 34.5804297866805], [-77.37042976926023, 34.58050835653812], [-77.37038714280627, 34.58077526640951], [-77.37062919003151, 34.58069628007148], [-77.37093574198532, 34.58076580645815], [-77.37104175985594, 34.58082472790882], [-77.37106676949193, 34.58084115715415], [-77.37126570172897, 34.5809756733062], [-77.37132103774772, 34.58112559943913], [-77.37121476685294, 34.58124439704122], [-77.37102292605667, 34.5814748430784], [-77.37081645896372, 34.58150387944819], [-77.37062890372981, 34.58145383789838], [-77.37052669199664, 34.58145364365605], [-77.37026381055067, 34.58141254132966], [-77.37023489457998, 34.581398670842965], [-77.37019912129577, 34.58139069731085], [-77.37008180538405, 34.5811480903807]], [[-77.39532882721805, 34.61823324817843], [-77.39547113143999, 34.61850657168253], [-77.39572790132051, 34.61859499891258], [-77.39584438359928, 34.61859204779725], [-77.39601705730487, 34.618613821373756], [-77.39604148280719, 34.618618619817994], [-77.39605610783067, 34.61861874550403], [-77.39615670721804, 34.61861998937948], [-77.39623858308171, 34.61862346301087], [-77.3963243179902, 34.61871575839146], [-77.3963999649013, 34.618797193320724], [-77.39663276761456, 34.61904780788039], [-77.39688042926772, 34.61872790113448], [-77.39663279283168, 34.61839720750444], [-77.39660325240119, 34.61837512131142], [-77.39659650521216, 34.61834427710891], [-77.39652163481097, 34.61823534530336], [-77.39645222582254, 34.61813500397406], [-77.39627250239778, 34.61800293611125], [-77.39623861134835, 34.617978236631345], [-77.39623353947516, 34.617977514416296], [-77.39622462386936, 34.61797333749018], [-77.39584442084721, 34.61782582660263], [-77.39555197064195, 34.61796074815662], [-77.39506413873512, 34.617724853411026]], [[-77.42805754034198, 34.569748248910514], [-77.42808184662091, 34.56964197791167], [-77.42794776483242, 34.5694403909586], [-77.42780067171961, 34.56921286432512], [-77.42772302382356, 34.569230731254486], [-77.42751254703168, 34.5692996775679], [-77.4273858129881, 34.56934060003665], [-77.42736484404406, 34.569356458963526], [-77.42716545725443, 34.56955948317865], [-77.42693078032778, 34.56980835350301], [-77.42675665221608, 34.57002701844263], [-77.42657716043975, 34.570201039943655], [-77.42621110191976, 34.57030691443997], [-77.42616559941989, 34.570324535963174], [-77.42617177042908, 34.5703550021948], [-77.42618324028433, 34.57036500242014], [-77.42632510650371, 34.570592246612335], [-77.42650121464011, 34.57071961743459], [-77.42653847612826, 34.57075609324056], [-77.42657733935542, 34.57082836805646], [-77.42693881193165, 34.57111607036396], [-77.42697139912889, 34.57114124663248], [-77.42707739843281, 34.57117515424316], [-77.42736531028068, 34.57094026102633], [-77.42768079805178, 34.57088914685603], [-77.42761045375806, 34.5705592920232], [-77.42794780043454, 34.57028932670181]], [[-77.3808794204916, 34.55953253412848], [-77.38090686228156, 34.55949831115778], [-77.38092556481324, 34.55946604878735], [-77.38090753469217, 34.55943837441995], [-77.38087947483115, 34.559331648416915], [-77.38081791227482, 34.5594152411958], [-77.38075519657643, 34.55949060886162], [-77.38062802686748, 34.55977981509741]], [[-77.39151416409157, 34.568066161906486], [-77.391600709079, 34.56811631248936], [-77.39158250315506, 34.56819260538597], [-77.39164016876364, 34.56832290595085], [-77.39151411229926, 34.568444835803646], [-77.3914199894521, 34.56846551756704], [-77.39141366162886, 34.56846382842761], [-77.39140924411814, 34.56845548586773], [-77.39139838808126, 34.56835778002227], [-77.39145528964923, 34.56820071601509], [-77.39148412625295, 34.5681331283383]], [[-77.37179158784727, 34.68978045940596], [-77.37163536076753, 34.689815661204], [-77.37156219682672, 34.68975940544602], [-77.37149767911843, 34.68972453213573], [-77.37145174809099, 34.68969769142293], [-77.37131145725488, 34.689670773503124], [-77.37106232989211, 34.68958442106919], [-77.37130900239909, 34.68935280399625], [-77.37142172862357, 34.68929132094259], [-77.37158225249671, 34.689247819782814], [-77.37186890074022, 34.68922985038148], [-77.37188590136974, 34.68922850839217], [-77.37188712599449, 34.68922849907339], [-77.37197829667312, 34.68933666049941], [-77.37197564133332, 34.68935654759748], [-77.37198428413214, 34.68945768584213], [-77.37185503563619, 34.689646533155646]], [[-77.38201154961398, 34.58270785897407], [-77.38196852492602, 34.58266676330848], [-77.38176494468767, 34.58258458469927], [-77.38174551321517, 34.582364870974935], [-77.38179955642767, 34.58226655374118], [-77.38185854436236, 34.582231336269714], [-77.38188232130507, 34.58225462407858], [-77.38198577356465, 34.582314885055816], [-77.38205551944544, 34.582401104221574], [-77.38208318568897, 34.5824379537536], [-77.3820722095809, 34.58263377472041], [-77.38207657777325, 34.582651188604466], [-77.3820774038994, 34.58267472028679]], [[-77.38568480893001, 34.51588184073918], [-77.38563454667364, 34.51589864732258], [-77.38561917673385, 34.5159009688765], [-77.38559689122398, 34.51590832265494], [-77.38522455682815, 34.515997053663725], [-77.38516217189638, 34.51595723221134], [-77.3852265463367, 34.51590899523889], [-77.38560254824596, 34.51588308143737], [-77.38561963664141, 34.515880608508034], [-77.3856382456474, 34.515876999212885]], [[-77.37648172129028, 34.595287645742566], [-77.3765899664887, 34.59527060828272], [-77.37660543035012, 34.59532740540575], [-77.37659543531768, 34.59539380122341], [-77.3766320434925, 34.5955358519046], [-77.37653506059121, 34.595664120093474], [-77.37638441685803, 34.595571529421875], [-77.37641755118582, 34.59548112673937], [-77.3764682585014, 34.59534716890041]], [[-77.33339885568837, 34.56226407083394], [-77.3333222738809, 34.56207336486912], [-77.33321200341267, 34.56187499358447], [-77.33303460388198, 34.562114718341896], [-77.33306079347346, 34.56227354520554], [-77.33304085839143, 34.562326089116105], [-77.33321160886396, 34.562344782140876], [-77.33340359731321, 34.56227394418348]], [[-77.42694334117567, 34.49964740939447], [-77.42707828236763, 34.49951581358133], [-77.42729194811744, 34.49946539925517], [-77.42721316994471, 34.49958138354769]], [[-77.3349260765333, 34.69795006935501], [-77.33433990130735, 34.69801920438216], [-77.33431552745192, 34.69802323963893], [-77.33425860037497, 34.697996594344126], [-77.33380524801248, 34.69803635596982], [-77.33403531488395, 34.697798598654636], [-77.33421208064007, 34.697723398548476], [-77.33443251408711, 34.697620654594004], [-77.33454040250373, 34.697608080853094], [-77.33481804233553, 34.697651388158796]], [[-77.39676677984701, 34.61916886353332], [-77.396887292494, 34.61930191208749], [-77.39692661357022, 34.619358098278305], [-77.39702695802116, 34.61941763705243], [-77.3971043371619, 34.61946141111996], [-77.39715796716033, 34.61946583508007], [-77.39722405929568, 34.619449927701794], [-77.39733320664016, 34.619417012654594], [-77.39731047114725, 34.619209676458155], [-77.39722620310278, 34.61910260485128], [-77.39722407023143, 34.61910007511948], [-77.39713661164095, 34.618997439729625], [-77.39702697654641, 34.618868778743604]], [[-77.34162214239261, 34.68420591908971], [-77.34174857241962, 34.68435003286036], [-77.34154729175955, 34.68446361663617], [-77.34132931937857, 34.684407561486715], [-77.34129947729053, 34.68438770578174], [-77.34126821293975, 34.68439407619674], [-77.34121917561598, 34.68437923611215], [-77.34110088780811, 34.68434343884729], [-77.34099531145449, 34.68430326937996], [-77.3409101470543, 34.684293132070096], [-77.34087851015674, 34.68407714136043], [-77.34108087669358, 34.684008689925086], [-77.34115012392087, 34.683998824933326], [-77.34126251386675, 34.6840219937128], [-77.34136986114382, 34.684044122862005], [-77.34155076699444, 34.68413348685619], [-77.3415873146529, 34.6841662198654]], [[-77.4457596976653, 34.605537548267144], [-77.44588013916578, 34.605514363553894], [-77.44597391718389, 34.60538740157466], [-77.44595207611181, 34.60530233222191], [-77.4459462012146, 34.60521067870559], [-77.4457770872294, 34.60513788481277], [-77.44567519853585, 34.60518371359305], [-77.44546838924656, 34.60528620674854], [-77.44548684883395, 34.60541400275284], [-77.44550291368365, 34.60552171586769], [-77.44563491022393, 34.60557871497022]], [[-77.44945624385079, 34.611779437674016], [-77.44931682435316, 34.61170306865308], [-77.44930269339778, 34.611583221429605], [-77.44944547973384, 34.61154576385259], [-77.44961134850283, 34.61146250172131], [-77.44986186130141, 34.61146917490551], [-77.44988283665931, 34.61146818792288], [-77.44988539547852, 34.61147740947289], [-77.44978628855485, 34.61168531450302], [-77.44969556005454, 34.61177006785524]], [[-77.44640669092338, 34.607848764914685], [-77.44635542623917, 34.6080092375172], [-77.4465487907162, 34.607957048751736], [-77.44675471135858, 34.607978204722045], [-77.44688895644856, 34.60795128070378], [-77.4468494415461, 34.607862381415075], [-77.44688384141676, 34.607712697479144], [-77.4467110383889, 34.60758954263265], [-77.4466875772912, 34.60760313062285], [-77.44648769811036, 34.60773387514841], [-77.44643834709271, 34.60779359152899]], [[-77.39408667766122, 34.53425630291694], [-77.39423037330104, 34.53436750694023], [-77.39440761835746, 34.53420998996935], [-77.39423667452478, 34.5340871655666]], [[-77.37672821326902, 34.67666428297903], [-77.3765042348471, 34.67665133003439], [-77.37676210110521, 34.67654742440114], [-77.37677492782602, 34.67661410376907]], [[-77.3850368193637, 34.589684028436956], [-77.38514844107591, 34.58963827744739], [-77.38518263125363, 34.58960780668573], [-77.38520634026882, 34.58959789566172], [-77.38525287883343, 34.58951708028725], [-77.38520637272934, 34.58943315322869], [-77.38519539141474, 34.58943105776408], [-77.3850103868452, 34.589447026604056], [-77.38500933702841, 34.58944900629663], [-77.38487978639789, 34.5895374470207], [-77.38496513094299, 34.58971227383108]], [[-77.41621023478294, 34.718873496494915], [-77.41623754501849, 34.718855446322415], [-77.416244063654, 34.7188593874671], [-77.41624663045336, 34.71886279449654], [-77.41631528738756, 34.718941271895424], [-77.41631617641819, 34.718983983404925], [-77.41625214745694, 34.71900449753541], [-77.41619441779011, 34.71902087814436], [-77.41612877373079, 34.71896135348488]], [[-77.26290736514676, 34.586201110709105], [-77.26278547503175, 34.58617927661648], [-77.26281047370462, 34.58611494313837], [-77.26290999121008, 34.5861326417731]], [[-77.43045437036102, 34.74561432835749], [-77.43032222709819, 34.745610693765414], [-77.43027609422357, 34.74559217929429], [-77.43028592439461, 34.74555139277879], [-77.43030801211306, 34.74544232081935], [-77.43035224207861, 34.745413337036624], [-77.43042696610804, 34.74540789619249], [-77.43052325899947, 34.74537636775763], [-77.43073662512629, 34.74559209283908]], [[-77.38249949583322, 34.65369987236502], [-77.38250047711273, 34.65368299810413], [-77.38250147790957, 34.65366732204957], [-77.38251231482201, 34.65367446572893], [-77.38257158875052, 34.653749323036365]], [[-77.27444066109894, 34.567667195227486], [-77.27435351050424, 34.56779234407275], [-77.27410916379284, 34.567791412164], [-77.27420022843545, 34.567656024713806]], [[-77.37198114368404, 34.58198311629292], [-77.37196755341013, 34.58181624321976], [-77.37199992634956, 34.58175954103337], [-77.3720155491677, 34.58175763773126], [-77.3722049232009, 34.58173456648341], [-77.37223906511056, 34.58173368109111], [-77.37238118206278, 34.581735572310365], [-77.37240194059916, 34.58172951281304], [-77.37247861432166, 34.58180531160558], [-77.37246639549909, 34.58184371931206], [-77.37245008879104, 34.581915560927605], [-77.37240182766541, 34.58204667691224], [-77.37231600326086, 34.58205468657745], [-77.37220479333962, 34.5820969149805], [-77.37207932327377, 34.58210415999117]], [[-77.3950454717321, 34.535374966456715], [-77.39506294811017, 34.535538389585014], [-77.39528741712151, 34.5354926064571], [-77.39524797279351, 34.53539824838415]], [[-77.43482998178536, 34.73052389537746], [-77.43483890782639, 34.73053374101759], [-77.43499123779252, 34.73067981637172], [-77.43497619811286, 34.73078075654656], [-77.43492761062605, 34.73084426097692], [-77.43470083375723, 34.73094350007762], [-77.43453832257204, 34.73070821842114], [-77.43456106182254, 34.73063609133605], [-77.43462090296984, 34.73057418683993], [-77.43481006673359, 34.730523662064115], [-77.43481698766463, 34.730520660319044]], [[-77.43160830314162, 34.58420516283526], [-77.43170360355644, 34.58411472447857], [-77.43187442102659, 34.5841666931665], [-77.43170365666559, 34.58426359010783]], [[-77.35071542084333, 34.52336113781077], [-77.35075815052053, 34.52336311117651], [-77.35071386784779, 34.52342865119938], [-77.35069124804028, 34.52337274177302]], [[-77.3497906893352, 34.626112580520115], [-77.34986573478265, 34.625921016458626], [-77.35003599295499, 34.62607888663946], [-77.34993089190641, 34.62624516230316], [-77.34991527222647, 34.62627734644882], [-77.34980058099012, 34.626296681265416], [-77.34977362795756, 34.626145101333826]], [[-77.36307964532914, 34.54297580285191], [-77.36308521983645, 34.54292571101858], [-77.36316698447158, 34.5429096980624], [-77.363177561056, 34.54297063775]], [[-77.4331217138971, 34.754811136050094], [-77.43317725389983, 34.75476048716531], [-77.433246097264, 34.75480028117093], [-77.43332061485673, 34.75481256748312], [-77.43327273478393, 34.75486389724736], [-77.4332490449988, 34.75487773569719], [-77.43322168239706, 34.75488461959074], [-77.43318168802072, 34.75487051188121]], [[-77.35855852615359, 34.53505281270255], [-77.35854283232926, 34.53500301369269], [-77.35861580636424, 34.535009458926034], [-77.3586250614685, 34.53504302899987]]]]}, "type": "Feature", "id": "demo10", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19835926696558, 34.65140069128217], [-77.1991502846017, 34.65156006769236], [-77.19954319081246, 34.65171732302783], [-77.20138770684795, 34.6521271665776], [-77.20519020379145, 34.65296259091954], [-77.20864696715039, 34.6541926197802], [-77.21106465001917, 34.65469155315262], [-77.21517957925552, 34.65584079681624], [-77.21707663048826, 34.65614938474752], [-77.21781827441427, 34.65664231774214], [-77.2187917158065, 34.65727298084161], [-77.219545053076, 34.65793891101572], [-77.2205237132689, 34.658569833686336], [-77.22090120560313, 34.659324878215656], [-77.22155513270386, 34.66063285186786], [-77.22176165396189, 34.66104591183017], [-77.22188256927717, 34.66128773890881], [-77.22234502409917, 34.662212646103], [-77.22299971111103, 34.663521951967994], [-77.22323146410943, 34.66398548696296], [-77.22451961043821, 34.66526658647842], [-77.22458855830297, 34.66586688194054], [-77.22526364030007, 34.66663629794627], [-77.22712317066133, 34.66646076199313], [-77.2288315938136, 34.66560652585078], [-77.22662415672106, 34.665105860860905], [-77.2290231210635, 34.661850816447206], [-77.22862562167545, 34.66141865685824], [-77.22832904797235, 34.660587803698654], [-77.22786635183745, 34.65987422811021], [-77.22740816127614, 34.658934937414216], [-77.227417099409, 34.65889610656121], [-77.22737752505562, 34.6587974060125], [-77.22699607910522, 34.657920193736224], [-77.22687186350257, 34.65680255536443], [-77.22680720294329, 34.65622070849828], [-77.22666364803021, 34.65600856115247], [-77.22672542687584, 34.65558775185051], [-77.22665013249781, 34.65412204659442], [-77.2266078552488, 34.653356311840305], [-77.22642921505705, 34.65221923072948], [-77.22642748248693, 34.65101895713522], [-77.22638901373901, 34.650499249028684], [-77.22639368252598, 34.65033101014953], [-77.22642609538698, 34.650061853777885], [-77.22658394075023, 34.64895690606212], [-77.22636222745322, 34.64844309689374], [-77.22640032793258, 34.64755609030814], [-77.22472756280746, 34.64642869819477], [-77.2270927245515, 34.64539486975282], [-77.22799952221163, 34.644019175425825], [-77.22831991856282, 34.64294122557009], [-77.22889830942867, 34.6417408010922], [-77.22909616330708, 34.64067014516799], [-77.22869886086131, 34.63987565060896], [-77.22847712240166, 34.63943219868956], [-77.22834729505074, 34.639172543857974], [-77.22785813377729, 34.63819420287664], [-77.22702269920332, 34.63652334632514], [-77.22600949003397, 34.63594659389334], [-77.22638441844526, 34.635246844321614], [-77.22567883571978, 34.63361782791816], [-77.22597515750252, 34.63302058322514], [-77.22839998826554, 34.63163498789801], [-77.23005293457732, 34.63054205498193], [-77.23226338615528, 34.62895461642316], [-77.23326571518001, 34.62824784600524], [-77.23924305468358, 34.6257209307533], [-77.24024724080738, 34.62553615640829], [-77.24145178520342, 34.62512218827993], [-77.24387625615586, 34.62338496767126], [-77.24632025813395, 34.621734862207035], [-77.24709622970569, 34.621108684958244], [-77.2492799529403, 34.61819715368432], [-77.24943161846028, 34.617926703085494], [-77.25016334901929, 34.61747935834052], [-77.25233257802435, 34.615247683679186], [-77.25306187612577, 34.61472409174872], [-77.25417942444855, 34.613650617466796], [-77.25534430021129, 34.61266726141223], [-77.25753421862146, 34.61130522966503], [-77.25687909303979, 34.609700752609676], [-77.25704168465596, 34.60938116086189], [-77.25720381361062, 34.60906246433592], [-77.25915862446449, 34.608847313300025], [-77.26107545820082, 34.60924875659545], [-77.2629894478854, 34.610352295541176], [-77.26520984525317, 34.61190880201306], [-77.26576570579786, 34.61225209574837], [-77.26615423965347, 34.61254351000113], [-77.26656986052907, 34.61271908870578], [-77.26690024376109, 34.61244714966378], [-77.26801223051979, 34.61178781959953], [-77.26866650673335, 34.611427906102556], [-77.26883642698861, 34.611251866516575], [-77.27000484397135, 34.61000838151014], [-77.27092988920577, 34.608919403701904], [-77.27181202028278, 34.60789268277601], [-77.27269739199772, 34.607184345787296], [-77.2729554309658, 34.606247824358135], [-77.27382780373291, 34.602899282620896], [-77.27406814086807, 34.60083276789571], [-77.27430833924507, 34.60021395801607], [-77.27500898989335, 34.59866184603944], [-77.27605759116014, 34.5975513016033], [-77.27630040358625, 34.59737657785782], [-77.27665495929655, 34.597103269211644], [-77.27798642781481, 34.5961046418113], [-77.27946875299864, 34.595391666491224], [-77.28088597572533, 34.59471000819444], [-77.28528003414519, 34.59307085167018], [-77.28565318397756, 34.59295260693954], [-77.28595016565343, 34.592869433812865], [-77.2870892711119, 34.592299883969694], [-77.28987791882483, 34.59120127206523], [-77.2902444409458, 34.59031690634274], [-77.29148156668509, 34.587359666249284], [-77.29256279569606, 34.58479902157457], [-77.29190029964106, 34.582409984853804], [-77.29356660581806, 34.5813432159073], [-77.29514274941802, 34.580101190971824], [-77.29848618472394, 34.58035147490134], [-77.30204255539367, 34.5782553033215], [-77.30304745931518, 34.577571287363426], [-77.30353035416343, 34.5772634760065], [-77.30630504658771, 34.57614262694393], [-77.30815377604577, 34.57478592900129], [-77.3091666933677, 34.57480278221977], [-77.31114312507921, 34.573320449616304], [-77.31265044647397, 34.57218995978875], [-77.31547580185058, 34.57007099387626], [-77.31642407087553, 34.568918039191274], [-77.31712009720309, 34.567797605945486], [-77.31788205873124, 34.56688123480322], [-77.31863303484167, 34.564787193556846], [-77.31879587720987, 34.564335669798226], [-77.31926116436193, 34.56409385327153], [-77.31901709271436, 34.5637161975015], [-77.32003237396613, 34.56058681478452], [-77.32088159533845, 34.5598926379095], [-77.32084197558194, 34.55949127716597], [-77.32103633541685, 34.55897427224937], [-77.32103643833715, 34.558973720208016], [-77.32103689165875, 34.558972792560766], [-77.32129377639347, 34.55844712708343], [-77.32143021300135, 34.55817233660434], [-77.32184635996921, 34.55739553172863], [-77.32184611816034, 34.557388528655295], [-77.32181813367056, 34.55736750495622], [-77.32185884993176, 34.55734402963608], [-77.32244924387868, 34.55668108084374], [-77.3226589864421, 34.55670883119578], [-77.32343525809782, 34.55618096483667], [-77.32344435668202, 34.55617188703556], [-77.32345686033338, 34.55617014932958], [-77.32501013926047, 34.55594053215519], [-77.32503282524615, 34.555940610656144], [-77.32504609423871, 34.55594122934426], [-77.32517043506752, 34.55593164373496], [-77.32639761486843, 34.555884441772065], [-77.32660511894053, 34.55586834438645], [-77.32674077008605, 34.55578941853754], [-77.3272844536579, 34.55562785468286], [-77.32739682689564, 34.55559314023981], [-77.32742838533639, 34.55558757449948], [-77.32743392875479, 34.55560637349581], [-77.32757049229366, 34.55596273455027], [-77.32762896487091, 34.55606797207546], [-77.32797119279934, 34.556388434761125], [-77.32805297350893, 34.556496663884715], [-77.32811617724519, 34.55651532715956], [-77.32816017203174, 34.55653714229507], [-77.32839670772161, 34.556595587203034], [-77.3286260609727, 34.55661236417038], [-77.3289447194163, 34.556569940188474], [-77.32905256781572, 34.55653113668819], [-77.3289940919025, 34.556606220615656], [-77.3290828732249, 34.55674953479863], [-77.3290565819044, 34.556842053585655], [-77.32906268051833, 34.556919794858246], [-77.32911744969451, 34.557322934455996], [-77.32891956269808, 34.557651987504556], [-77.328777518372, 34.557774636066725], [-77.32868840579023, 34.55787422688479], [-77.32838970102205, 34.55808267390648], [-77.32839699760059, 34.55816092268448], [-77.32844506350818, 34.55819713541828], [-77.32867052331027, 34.55836642591706], [-77.32887138233585, 34.55881399220457], [-77.32888171240408, 34.55882570326521], [-77.32888505333986, 34.558829668080364], [-77.32889195762831, 34.55883935208211], [-77.3291497578218, 34.55911212451913], [-77.32936425609682, 34.5592459793397], [-77.32946832147795, 34.55944690292414], [-77.32965715948015, 34.56004115133089], [-77.32892953013977, 34.56010435517042], [-77.32888019108981, 34.56009650898348], [-77.32885643354707, 34.56014248125486], [-77.32814277832938, 34.56021610519133], [-77.32809220311538, 34.56022163394808], [-77.32802171562979, 34.5602120298226], [-77.32769822984253, 34.5602602586842], [-77.32750827859164, 34.56014207234086], [-77.32748789474206, 34.56013792495555], [-77.32730443058739, 34.56010757739888], [-77.32718961578453, 34.5601067787824], [-77.3269495130955, 34.560059552763434], [-77.32691026925772, 34.560351402240634], [-77.32670954310153, 34.56047656930236], [-77.32691016482629, 34.56046533860369], [-77.32726834764127, 34.56043483117898], [-77.3273041357135, 34.56043095532506], [-77.32734734039937, 34.560431476514495], [-77.32769804471096, 34.56046435605282], [-77.32796916760486, 34.56042794422606], [-77.32809200120965, 34.56044540460625], [-77.32838268192356, 34.56054948498312], [-77.32866292917235, 34.56042966588521], [-77.3288799338607, 34.56038458605686], [-77.32935350471496, 34.56094567480338], [-77.32953937530601, 34.56105673100903], [-77.3293782154975, 34.56179119841807], [-77.32918168792953, 34.562146323388525], [-77.32904933211324, 34.562502951948446], [-77.3289990428177, 34.56269476821321], [-77.32926316279374, 34.5630723755635], [-77.32926901069963, 34.5630831655147], [-77.32928095673151, 34.56308900955871], [-77.32966525622098, 34.56327991051852], [-77.32997916724929, 34.56340297847039], [-77.32988562413249, 34.563654254193715], [-77.32966469097121, 34.56392133369988], [-77.3295315099104, 34.564173111260594], [-77.329597911894, 34.564306849047426], [-77.32960633661183, 34.56436809760695], [-77.32966417262259, 34.564509777541915], [-77.32978955362827, 34.56499281035488], [-77.33015876140936, 34.56507531782991], [-77.33038093055323, 34.5651194954612], [-77.33045154553085, 34.565133379281555], [-77.33068528781786, 34.56525163699173], [-77.33084534885256, 34.565315315119065], [-77.33089836366827, 34.56533640621362], [-77.33091824516073, 34.56539069806301], [-77.3309617610708, 34.56551007189859], [-77.33105964103952, 34.5657949131088], [-77.33107553108516, 34.56596851100427], [-77.33123839299404, 34.566381190005146], [-77.33129103234954, 34.566553847628896], [-77.33132160289132, 34.566606337987], [-77.33148251215478, 34.5671684943447], [-77.33169425845102, 34.567401851765666], [-77.33202501972491, 34.56791723920236], [-77.3321994200468, 34.56799032191399], [-77.33241715165397, 34.568147023096756], [-77.33254379896204, 34.56841841398372], [-77.33245159667904, 34.56860236779647], [-77.33233001994833, 34.56867926779465], [-77.33202425964078, 34.568811743284876], [-77.33193251263825, 34.56896704029633], [-77.33164048080603, 34.56909648407914], [-77.33163003854595, 34.569096360940385], [-77.3316028220222, 34.56911314915984], [-77.33131748014938, 34.56924203206762], [-77.33123590449122, 34.56927646040014], [-77.33109582017993, 34.56933691283301], [-77.33070016552827, 34.569514891760754], [-77.33044762716217, 34.56964118959156], [-77.33036189830952, 34.56971603981444], [-77.33044742576857, 34.569873321234425], [-77.33051746402477, 34.57004259166349], [-77.3305467530783, 34.57011401031257], [-77.33060932393349, 34.57027985014867], [-77.3307223174301, 34.570640928334264], [-77.33082611757732, 34.5709229351081], [-77.33077525150722, 34.571424626800514], [-77.33078377401525, 34.57177809698438], [-77.33087822057269, 34.572147283922995], [-77.33088415584382, 34.57218820867176], [-77.33095253896828, 34.572300379417676], [-77.3311114325057, 34.572580081894024], [-77.33115747267816, 34.57265485482125], [-77.33123295909675, 34.57271206806426], [-77.33155385938804, 34.57301951272377], [-77.331626639082, 34.57308386330875], [-77.33182668551188, 34.573117403441074], [-77.33202062513836, 34.57309823745867], [-77.33228031245791, 34.572981445668965], [-77.33280897717833, 34.572673295406425], [-77.33298947453085, 34.572504487019856], [-77.33324015062658, 34.57227411681808], [-77.33359750265173, 34.572028995442146], [-77.33406216992776, 34.57180737206923], [-77.3343859760511, 34.571433392935624], [-77.33447863808412, 34.571346779619084], [-77.33459348468841, 34.571230499169516], [-77.33486425251388, 34.5708573502269], [-77.33517457593436, 34.57066775751182], [-77.33532506935563, 34.570438212289794], [-77.33570906484228, 34.57022104343313], [-77.3358870813223, 34.570113652883734], [-77.33596302739802, 34.57006932356545], [-77.3360215453179, 34.57011302523397], [-77.33614194212194, 34.57015881034077], [-77.33656411351834, 34.57029929243429], [-77.33675080541516, 34.570306952615624], [-77.33700251413096, 34.57045962588687], [-77.3370058930775, 34.5706085524012], [-77.33720921758302, 34.570854447853485], [-77.33738648503422, 34.57099248173018], [-77.33753823407616, 34.57099677233332], [-77.3376780347996, 34.57121158425372], [-77.33769085175446, 34.571469431868344], [-77.33793178957954, 34.57155245481944], [-77.33796320254321, 34.571595124459634], [-77.33805351663874, 34.57171343971773], [-77.33809024337212, 34.571830426839895], [-77.33812855214622, 34.57185252382749], [-77.3381954440562, 34.571986274086335], [-77.33812834889551, 34.5721151235794], [-77.33807280015863, 34.57215635756526], [-77.33793123420827, 34.57226777499302], [-77.33765333188201, 34.572488761085616], [-77.33757442792898, 34.572540405131335], [-77.33753701384725, 34.57255871030724], [-77.33750549408373, 34.5725439926474], [-77.33714298076242, 34.572607652348175], [-77.33704607543581, 34.57257606970802], [-77.33683792694876, 34.5725102416625], [-77.33674911083763, 34.57244943029858], [-77.33654232649232, 34.57242565673804], [-77.33625790654236, 34.572369658108556], [-77.33596138368863, 34.57212251372612], [-77.33560294231017, 34.57232052086249], [-77.33517312017884, 34.57246564653063], [-77.33496213215068, 34.572648479517675], [-77.33469483985877, 34.57291408928496], [-77.33454092504476, 34.57310464967426], [-77.33440631042647, 34.57338010633223], [-77.33438436335153, 34.57340350944189], [-77.33409745048431, 34.573540011862534], [-77.33385956984326, 34.57359945669484], [-77.33359618671109, 34.573618833051206], [-77.33335204930484, 34.57369319607216], [-77.33320205210856, 34.57378009592891], [-77.3330614575867, 34.57399795967649], [-77.33301626441514, 34.574229210333385], [-77.33312638704521, 34.5744940550114], [-77.33332617332584, 34.57480898806075], [-77.33343157270558, 34.57497000456711], [-77.33359068161016, 34.57561589406796], [-77.33359108797666, 34.57561998881937], [-77.33359092286199, 34.575623898606615], [-77.33358100358514, 34.57645668412378], [-77.33348183137619, 34.576484771777146], [-77.33287128243661, 34.57664323691018], [-77.33280564623718, 34.57665805129182], [-77.33272958632257, 34.576674832395824], [-77.3321359093303, 34.57680581492743], [-77.33201742387061, 34.57688613252227], [-77.33167120728193, 34.5771178372978], [-77.33160067712724, 34.57715544320042], [-77.3312290033769, 34.5773410829256], [-77.33100433073233, 34.577447955340254], [-77.33083475734138, 34.577606400410595], [-77.33075002197317, 34.57772648023277], [-77.33063122916607, 34.577949115088614], [-77.33044013347701, 34.57830725149084], [-77.33032864900807, 34.57851618684022], [-77.33022586128881, 34.57888121239509], [-77.33060754496007, 34.57877684167244], [-77.33122786251577, 34.57867930611455], [-77.33137221575923, 34.57864163469148], [-77.33162197433906, 34.57857645565171], [-77.33189093272335, 34.57854636560795], [-77.33201603338114, 34.57853505997069], [-77.33211955331713, 34.578490225555214], [-77.33262043862567, 34.57850463047137], [-77.33280405151577, 34.578570513783205], [-77.33330221904463, 34.57852111721952], [-77.33359217638574, 34.578476822921004], [-77.33389851918979, 34.57845308115134], [-77.3343802751614, 34.57841280825155], [-77.33491248892904, 34.578253066237465], [-77.3351684846916, 34.57820897819099], [-77.33545966005107, 34.57821235687165], [-77.33595662930936, 34.57808171690411], [-77.33658512588732, 34.577908881515924], [-77.33674474272163, 34.5779907108068], [-77.33701564454998, 34.57796680393696], [-77.33753306056057, 34.577633978044894], [-77.33831046415618, 34.57750034916767], [-77.33833451751096, 34.57749967162721], [-77.33910916386162, 34.57759524641721], [-77.33955682705852, 34.57767624839132], [-77.33989722744525, 34.57755821928432], [-77.34026070843422, 34.57760003580174], [-77.34068525183346, 34.577573253644644], [-77.3409177385642, 34.57771236013317], [-77.34124303867986, 34.57791619087298], [-77.34184494707462, 34.57827771566399], [-77.34226050887702, 34.57870238228989], [-77.34259181520656, 34.57906315430518], [-77.34328902632929, 34.579320134342495], [-77.3438359962285, 34.57956282208721], [-77.34491778681011, 34.579618430431005], [-77.34641443608245, 34.57995085042744], [-77.34698784143355, 34.58011264617508], [-77.34777674485838, 34.57952322127725], [-77.3493753209489, 34.57931832227051], [-77.35014047944736, 34.57945173351758], [-77.35055674503589, 34.57952430776856], [-77.35195541212798, 34.57977162269295], [-77.35329240064824, 34.57991914399364], [-77.35455165687978, 34.58143668372271], [-77.35519965028193, 34.581360644838526], [-77.3564437932799, 34.58140615049137], [-77.35737948663972, 34.581379288014375], [-77.35801997950742, 34.58130047542625], [-77.35854227260765, 34.58108449806953], [-77.35880817497218, 34.58104652131719], [-77.35909244153598, 34.580985527997925], [-77.3595962965218, 34.58092784976208], [-77.36016293758554, 34.58089909420142], [-77.36038439457596, 34.580851002590066], [-77.36054311976501, 34.58091189692745], [-77.36079071270356, 34.581047307010365], [-77.36103949357661, 34.58115458974341], [-77.36117205939412, 34.58165252760439], [-77.36125055139658, 34.581745592602715], [-77.36125049043136, 34.58183022331006], [-77.3612433157367, 34.58190816681448], [-77.36134536728306, 34.58247850472728], [-77.36145297913973, 34.58265017923043], [-77.36148188312914, 34.58316051059737], [-77.3615704800622, 34.5834823709414], [-77.36165863344107, 34.58399516378055], [-77.36169692950489, 34.58431327458955], [-77.36178455195692, 34.584488356606656], [-77.36248149525069, 34.58504942869449], [-77.36260483011617, 34.585184338721575], [-77.36274646321243, 34.585322621939035], [-77.3634062839335, 34.58590331162121], [-77.36353423976104, 34.586025708761966], [-77.36377900532227, 34.585975414246334], [-77.36398400323918, 34.58604673320768], [-77.36417553485856, 34.58607918886296], [-77.36432226978445, 34.58619493203071], [-77.36452453901009, 34.58623554624276], [-77.36448733873183, 34.58645884845046], [-77.36441177746981, 34.58656634336888], [-77.36432191245734, 34.586989759187304], [-77.36423649234678, 34.58725217389634], [-77.36424818561333, 34.587342394300606], [-77.36392760569292, 34.587538574413905], [-77.36370352065235, 34.58760397692191], [-77.3635334363305, 34.58777664717325], [-77.36309698677822, 34.58835725213019], [-77.36304275422631, 34.58868597224715], [-77.36303066715683, 34.588791355575225], [-77.36295151008895, 34.589004538360555], [-77.36290773044446, 34.589233609285095], [-77.36281344625418, 34.58932136485584], [-77.36274457831247, 34.58934986884672], [-77.36262965358539, 34.589397434993586], [-77.36205935660139, 34.589466685026544], [-77.3619563795974, 34.58947691237821], [-77.36186301361244, 34.58948459760705], [-77.36122506883254, 34.58953710773656], [-77.36116819754027, 34.589564055960956], [-77.36064171180053, 34.58984186814805], [-77.35969508893659, 34.59043357064962], [-77.35959143950494, 34.590508593949565], [-77.35946307493954, 34.59057859276217], [-77.3595912948802, 34.59079602409774], [-77.36003871533686, 34.59171143001822], [-77.36031828215049, 34.592153702057985], [-77.36116660556556, 34.59285249359482], [-77.36229199515375, 34.592355640521696], [-77.36240134936122, 34.59355205370531], [-77.36274250702981, 34.59380436752269], [-77.36358228315078, 34.59417537166139], [-77.36547590481332, 34.59480761691674], [-77.36549565163381, 34.59523457017793], [-77.36456024358984, 34.59689918216078], [-77.3643173033992, 34.59733148720484], [-77.3636817772459, 34.59846237253832], [-77.36330781490595, 34.59912781998574], [-77.36320759094161, 34.601422294241345], [-77.3633817765169, 34.60190199898436], [-77.36355813483878, 34.60269183912438], [-77.36356629925035, 34.60272454696147], [-77.36356853482036, 34.60276934792381], [-77.3635266302231, 34.602803081963664], [-77.36339528280575, 34.602890607989764], [-77.36273813859515, 34.60329906994867], [-77.36256547681221, 34.603717727886675], [-77.36247128463182, 34.60514296170782], [-77.36253874067094, 34.60541979279344], [-77.36259390980314, 34.60556609301673], [-77.36273688078396, 34.60605893637054], [-77.36296841288294, 34.60680639993905], [-77.36303714924301, 34.607046264922964], [-77.3633636116925, 34.607675127272536], [-77.36344107672947, 34.6078372284058], [-77.36344162629445, 34.607926247605405], [-77.3634560951898, 34.608684175516885], [-77.36342515125861, 34.60879505807043], [-77.36324760917111, 34.609265861290595], [-77.36312950666559, 34.609449452579035], [-77.36308532970756, 34.60953911600495], [-77.3628930540892, 34.60961433299124], [-77.36276901041396, 34.6096685586603], [-77.36273523878198, 34.60967896545938], [-77.3626880585248, 34.60969465080693], [-77.36234098992693, 34.60986202251278], [-77.36216265281512, 34.60995198111407], [-77.36214385768812, 34.609969066876054], [-77.36198403753757, 34.61016973185338], [-77.36197470667756, 34.610201275872754], [-77.36195908056187, 34.610584317215704], [-77.3619684780521, 34.61059652510587], [-77.36209087989062, 34.61073450022219], [-77.36232041529038, 34.610992026747056], [-77.36234046816487, 34.61100510036022], [-77.36248183297721, 34.61109949434257], [-77.36273452771721, 34.611253233255454], [-77.36277129406467, 34.61129045772127], [-77.36276469659879, 34.61133102581622], [-77.36275971794133, 34.61135892555215], [-77.36275544392629, 34.61175691179916], [-77.36273428226166, 34.611797511716816], [-77.36259859472214, 34.612058024722344], [-77.36251701615669, 34.612215784984535], [-77.36233976463073, 34.61254965864547], [-77.3622989374719, 34.612627793735555], [-77.36226154675393, 34.61267711051691], [-77.3622102244294, 34.612823884601006], [-77.3620854388417, 34.613127012308865], [-77.36204945739813, 34.61324440964772], [-77.36194858269397, 34.61357126424244], [-77.3619491448305, 34.613575524140316], [-77.36194511149363, 34.61358214348538], [-77.36192757863411, 34.613593165565035], [-77.36168381662445, 34.61375258433425], [-77.36155086082218, 34.613726297924536], [-77.36143698614283, 34.61376752487234], [-77.36115660970981, 34.61386833432407], [-77.36102587562071, 34.613987875662374], [-77.36087834086825, 34.61402492838214], [-77.36076233502854, 34.61405720771266], [-77.36064507646603, 34.61405713460931], [-77.360509160802, 34.614051115338086], [-77.36036825620464, 34.61383213819144], [-77.36033641083546, 34.613803296612595], [-77.36024588001898, 34.613523735309734], [-77.36018001273334, 34.61340125195855], [-77.36001180648225, 34.61304113919212], [-77.35998600713523, 34.61299220119016], [-77.35990514109018, 34.61294155427869], [-77.3595804122295, 34.61275174935401], [-77.35953329978952, 34.61269599077362], [-77.35948447725704, 34.61265224521297], [-77.35910352230624, 34.612371800806514], [-77.35879245669088, 34.61193735905685], [-77.35877735112105, 34.61192118195353], [-77.35876803740342, 34.61190624403127], [-77.35868561186177, 34.61180295406651], [-77.3584030026847, 34.61110967053646], [-77.3587930701886, 34.61070654032826], [-77.3591201878801, 34.61050958339045], [-77.3591873361823, 34.61051374974613], [-77.3595536780168, 34.61009497222911], [-77.35918766694839, 34.60984483974987], [-77.3590533755416, 34.60988704110663], [-77.3587934555969, 34.60993433574718], [-77.35848141182497, 34.60991317245087], [-77.35800476762526, 34.610629701684665], [-77.35734676558494, 34.610552903528486], [-77.35721649238504, 34.6105016381524], [-77.3571729363033, 34.61048449764998], [-77.35642835318778, 34.610120436228236], [-77.3559030215871, 34.61033689012389], [-77.35381185773568, 34.61065061692851], [-77.35355335908586, 34.613203974866295], [-77.35352237046438, 34.61351011139085], [-77.35371112470885, 34.61395499653409], [-77.354366705276, 34.61560593221296], [-77.35484854575046, 34.61587360798573], [-77.35506007480677, 34.616457128698265], [-77.3560526066305, 34.61654248608068], [-77.35599509111219, 34.61701347929016], [-77.35594706641447, 34.61740677308525], [-77.35581596867213, 34.617619448307344], [-77.35487247412618, 34.61841047705944], [-77.35485725873829, 34.618423537428036], [-77.35484715211837, 34.61844620115547], [-77.35428462887575, 34.619588096473784], [-77.35405795791385, 34.61986092889961], [-77.35371362000177, 34.62027538763718], [-77.35348423500193, 34.62054002062786], [-77.35326919937103, 34.62044867931536], [-77.35321067379955, 34.62041078856298], [-77.35301883413005, 34.620375332741474], [-77.35169270587178, 34.619792553145345], [-77.35036987883261, 34.62075635024962], [-77.3502826908411, 34.620949312318245], [-77.35016572915299, 34.62104412235806], [-77.34998237024996, 34.62105618040488], [-77.34900823209328, 34.62109371975529], [-77.34889632913024, 34.62109803189635], [-77.34853959295576, 34.621009399771076], [-77.34780005669383, 34.620785634029446], [-77.34753734113532, 34.620706138863675], [-77.3458577285791, 34.620039725364684], [-77.34478457295813, 34.61974897806094], [-77.34226399697941, 34.618799282551294], [-77.34201190590129, 34.61869245096342], [-77.34115157265366, 34.62042943922552], [-77.34110324616115, 34.62054194384804], [-77.34086948568196, 34.62073363361566], [-77.33993072755591, 34.62107805176597], [-77.33930273665548, 34.62137188236214], [-77.3387573166807, 34.62160983799499], [-77.33812766530323, 34.62157091011897], [-77.33749197408375, 34.62168392457571], [-77.33611950840161, 34.62095534746932], [-77.3359220766721, 34.62088371186521], [-77.33461618036355, 34.62011355845563], [-77.33404141240902, 34.62047826586288], [-77.33320103944648, 34.62101151067274], [-77.332379049835, 34.62172359333814], [-77.33031561306407, 34.62351104038217], [-77.3303277510851, 34.62366641385739], [-77.33033461976818, 34.6268843475352], [-77.33094605759538, 34.62958258270008], [-77.33101713913811, 34.63016667330207], [-77.33110448151146, 34.6308842088241], [-77.33120368790512, 34.63182905338148], [-77.33123411050003, 34.63252094545485], [-77.3312503830355, 34.632891083996306], [-77.33098509403551, 34.63354701394999], [-77.33098305694497, 34.63362114304514], [-77.33108828360422, 34.63437684281832], [-77.33109861130534, 34.634396388374434], [-77.33131622526298, 34.6350564493319], [-77.33143499495668, 34.635173263195455], [-77.33151539321585, 34.635236122439025], [-77.33158739730331, 34.63531557254116], [-77.33163054450056, 34.63535743218269], [-77.33159966719165, 34.63537667301637], [-77.33155957964134, 34.635494203486886], [-77.33153052253806, 34.635493138543126], [-77.33145167167777, 34.63543671981547], [-77.33141841868675, 34.63542808445725], [-77.33125825873023, 34.63527059781304], [-77.33121986355462, 34.63524719783254], [-77.33093675129086, 34.63526362351161], [-77.33086005754367, 34.63525213710544], [-77.33071698286271, 34.63509479928642], [-77.33058050141909, 34.63508363012638], [-77.33056990681249, 34.63509897309786], [-77.3305770707154, 34.63507996209006], [-77.33057262283634, 34.6350443944167], [-77.33060436521603, 34.63493581085537], [-77.3305960315707, 34.63486636479514], [-77.33075184930206, 34.63473987929589], [-77.33104537587188, 34.63438272914923], [-77.33079193127342, 34.63379860115947], [-77.33016130962747, 34.63418837140781], [-77.32971343961356, 34.63395384463631], [-77.32950721019517, 34.634046024378705], [-77.32941736977244, 34.63407353386985], [-77.32936323688973, 34.634110377108954], [-77.32917706188044, 34.63412562695138], [-77.32910915514015, 34.634132737885736], [-77.32902630617465, 34.634129379083944], [-77.32889119730248, 34.634117572162296], [-77.32878374345647, 34.63410629021695], [-77.3286671495929, 34.6341276223214], [-77.3284697033693, 34.63413647910994], [-77.32806174759429, 34.634611577840765], [-77.32793122107748, 34.63464314097591], [-77.3278627059225, 34.634711018188455], [-77.32760342419198, 34.63485486900415], [-77.32758753796031, 34.63512137997125], [-77.32739918451172, 34.63518193820506], [-77.32721408674925, 34.63514160598274], [-77.32679743412554, 34.63505081692888], [-77.32672696083793, 34.635022473729464], [-77.32670158890755, 34.635008239361035], [-77.32599963002285, 34.63458847222792], [-77.32571785614397, 34.63537725185889], [-77.32564122110058, 34.63596796325142], [-77.32563722520472, 34.635972358593094], [-77.3256250190235, 34.63599128473193], [-77.32538390115276, 34.63630504363264], [-77.32531015391415, 34.636331211012696], [-77.32525983317947, 34.63644225553923], [-77.32512130558135, 34.63659155161895], [-77.32501631213381, 34.636724143856846], [-77.32501589800323, 34.63686378406116], [-77.32487392805346, 34.63690395451697], [-77.324864444929, 34.63690663777406], [-77.3247181251895, 34.636638464754405], [-77.32447972921292, 34.63658478943936], [-77.32427958233703, 34.63670342809368], [-77.32413562361593, 34.63664361902038], [-77.32380436491206, 34.63640969560858], [-77.32370244659009, 34.636353248532124], [-77.32349401764449, 34.63626240961767], [-77.32324943896907, 34.636102127976656], [-77.32309959949512, 34.636088101778064], [-77.32278484731606, 34.63597472025774], [-77.32273814117093, 34.6359663687491], [-77.32269270845886, 34.635888659893986], [-77.32283235411046, 34.63577991918569], [-77.3229932828961, 34.635558402501296], [-77.32302966968845, 34.63553599942485], [-77.32325437749151, 34.63545129180419], [-77.3230545229574, 34.635340238828974], [-77.3228128210395, 34.63533345483732], [-77.32227935332341, 34.63519108829723], [-77.32202117749644, 34.63509001097346], [-77.32116024418221, 34.63512466185983], [-77.32097819574592, 34.6350877140641], [-77.3207219297914, 34.635365987515115], [-77.32042221279957, 34.635507403768074], [-77.32037757857435, 34.63572841467809], [-77.32017961603515, 34.63587286262727], [-77.31990911983958, 34.63595825114769], [-77.31987465991743, 34.635969129153615], [-77.31983013811652, 34.635983183272145], [-77.3195736236836, 34.636064156877595], [-77.31948400964615, 34.63609434576147], [-77.31942372120801, 34.63611474020546], [-77.31937479786104, 34.63612656624908], [-77.31927218017374, 34.6361571579493], [-77.31913857129283, 34.636204139125105], [-77.3186347628405, 34.63610272472814], [-77.31862300127725, 34.636112468931586], [-77.31860817170585, 34.63610617073613], [-77.31859183419874, 34.63609052691367], [-77.31818839747592, 34.635789300370746], [-77.31813454157604, 34.63573122553517], [-77.31815258757388, 34.635652319862245], [-77.31814112539371, 34.63530833657853], [-77.31815856161603, 34.63499046969655], [-77.31819756903563, 34.6344566272834], [-77.31818073278743, 34.63434375313428], [-77.31799092045367, 34.63388506636265], [-77.31784070316988, 34.633661573148125], [-77.31764511393345, 34.63342185509111], [-77.31740581644351, 34.63323681924197], [-77.3172606330218, 34.63303517832773], [-77.31707617886917, 34.632922397630544], [-77.31659080720135, 34.63236542569581], [-77.3164563658593, 34.63233170218208], [-77.31624031459134, 34.63219299676233], [-77.31586323157971, 34.631929780029964], [-77.31563451105792, 34.63166304658852], [-77.31514472837297, 34.6315393209132], [-77.31512450954745, 34.63152476583322], [-77.31507850544051, 34.631508264863236], [-77.31466521983283, 34.63128614215158], [-77.31442821955963, 34.63115876327708], [-77.31411554477543, 34.63079627139711], [-77.3140914703074, 34.63052358515919], [-77.31402291811442, 34.63026225199442], [-77.31393503018339, 34.62997704212259], [-77.31364268330296, 34.629436831251276], [-77.31354723322528, 34.62918622030003], [-77.31346531732203, 34.6290707972369], [-77.31326002194588, 34.628411847940534], [-77.31327422533506, 34.628379666902276], [-77.31322085736726, 34.62770778392521], [-77.31341901311906, 34.627515855267006], [-77.31301400107716, 34.627299536769726], [-77.3119971665513, 34.627386322402], [-77.31149397603892, 34.627429265470184], [-77.31045530379863, 34.62730877359982], [-77.30936310984706, 34.62800869812481], [-77.30929117179633, 34.62804103105213], [-77.3082503023241, 34.629082008789965], [-77.30784599378175, 34.62936068921581], [-77.30728859426274, 34.63004375222668], [-77.30574258785828, 34.632735446162954], [-77.3055480987507, 34.63555572996119], [-77.30607305225735, 34.63696194669251], [-77.30621826974648, 34.638520078868964], [-77.30536440546022, 34.64023191666046], [-77.30510557510095, 34.64047031645375], [-77.30543757526708, 34.6405968403872], [-77.3066203695536, 34.642612248854874], [-77.30819820189875, 34.64303992228581], [-77.30850563772506, 34.64312549388208], [-77.30876341318421, 34.642962153502474], [-77.30938259789006, 34.64326030249809], [-77.3108225262134, 34.643478069997144], [-77.3111932570844, 34.64375650410806], [-77.31191997459328, 34.643846721279786], [-77.31386247759994, 34.64429563455851], [-77.3150778442299, 34.64423874835983], [-77.31584250690118, 34.64575103352513], [-77.31623801539503, 34.64653322180887], [-77.31692368133298, 34.64678795403458], [-77.31714850570505, 34.64606074394813], [-77.31814766192878, 34.64650591883793], [-77.31866374183826, 34.645364366299425], [-77.31883482850625, 34.644966071833586], [-77.31892618226996, 34.644484422166784], [-77.31895770370582, 34.64441342016576], [-77.31899254227166, 34.64433494538174], [-77.31925130060979, 34.64402021886398], [-77.31932513457332, 34.64358576276901], [-77.31938057282184, 34.643473545124], [-77.3194412434298, 34.643380382976915], [-77.319652318888, 34.643059941329625], [-77.3197994913969, 34.64292913425065], [-77.31996269073201, 34.64278834202712], [-77.32017451579804, 34.642880258355305], [-77.32014728911975, 34.64262908739946], [-77.32023729366054, 34.64256148930673], [-77.32031185922315, 34.64248908102941], [-77.3203760043879, 34.642455087319114], [-77.32040415338808, 34.64242732989856], [-77.32050600189622, 34.64239181424661], [-77.32051510515089, 34.642530957609964], [-77.32050480883784, 34.64258007617656], [-77.32046863362842, 34.642752650129594], [-77.32045660682249, 34.64281002430675], [-77.32041373390156, 34.64301454849853], [-77.32039810838279, 34.64308909088612], [-77.32032578960859, 34.643448591237046], [-77.32087863408626, 34.64416188375271], [-77.32090084290766, 34.644192579461716], [-77.32091587951601, 34.64421167164175], [-77.32100048621727, 34.6443190967823], [-77.32134216550196, 34.64499720506351], [-77.32141412212644, 34.64547211430479], [-77.32186591480004, 34.64589062563968], [-77.32293753739927, 34.64704812498245], [-77.32370066324447, 34.646840825793205], [-77.32346713621874, 34.64600014661262], [-77.32295185275674, 34.6449210406762], [-77.32278714845006, 34.644799100110205], [-77.32289793688116, 34.644756405558475], [-77.32264204733127, 34.64397501822508], [-77.3224756978975, 34.64337148148112], [-77.32241420610282, 34.64316227994505], [-77.32239859768663, 34.642955278825], [-77.32253020437045, 34.6428204964084], [-77.32270686352923, 34.64257579220345], [-77.32292110259161, 34.64249008651706], [-77.32309195970231, 34.64242937739478], [-77.32325978503806, 34.64242479996726], [-77.32370992889645, 34.64231831658904], [-77.32418945334013, 34.64227542545272], [-77.32434051858236, 34.64227012894683], [-77.32465680566834, 34.64239475175397], [-77.32503158116629, 34.64252316841109], [-77.32517542868675, 34.64261956693968], [-77.32562507544127, 34.642631651406624], [-77.32569792712712, 34.64265307419438], [-77.32573981305572, 34.642650343342325], [-77.32625681784403, 34.64255426213985], [-77.32631358521317, 34.64253050188441], [-77.32640221853046, 34.64248712592021], [-77.32678028977129, 34.64237576007982], [-77.32691120938647, 34.6423181157025], [-77.32710974810472, 34.64223459358085], [-77.32747083928984, 34.64235328578579], [-77.32756412167561, 34.64238110230835], [-77.32762841919842, 34.6423558291185], [-77.32817653777045, 34.642242400988586], [-77.3283337644244, 34.642107603122604], [-77.32848719430268, 34.642329490894454], [-77.32851479521595, 34.642897092843654], [-77.32849998282896, 34.643314344232145], [-77.32833017273889, 34.644038990087545], [-77.3280969026238, 34.64503444892844], [-77.32804215361969, 34.64555619147984], [-77.32792148218255, 34.6457830055949], [-77.32780349669297, 34.64660040144133], [-77.3288915557133, 34.64634935465594], [-77.32958237283808, 34.64605470664071], [-77.33005087973672, 34.64674375633557], [-77.33166556662039, 34.64627029586772], [-77.33213258021138, 34.6460000368444], [-77.33277409980842, 34.6459452332141], [-77.33384105971315, 34.64563235223761], [-77.33410827577576, 34.64493433896369], [-77.33430738284859, 34.64473316768738], [-77.33440204214975, 34.64454781104941], [-77.33462416694323, 34.64401957017024], [-77.33480266959276, 34.643861026894214], [-77.33488109163025, 34.643745166747735], [-77.33527379875176, 34.643293072072794], [-77.3354345041128, 34.64331273558665], [-77.33547182789498, 34.643151238073834], [-77.33562339051697, 34.64303847740962], [-77.33593467874906, 34.64291611355442], [-77.33599475227304, 34.64291436406887], [-77.336319287434, 34.64294298747282], [-77.33659910839101, 34.64296547429834], [-77.33666020222995, 34.64303966335899], [-77.33677410802918, 34.64303259308222], [-77.33733441470885, 34.64320856350436], [-77.33747061920792, 34.643015629467314], [-77.33776670249215, 34.642950068918125], [-77.3379192156379, 34.64293243613906], [-77.33804969392783, 34.642889016633006], [-77.33825388645948, 34.64267750289064], [-77.33846782497972, 34.64247619675366], [-77.33871559576501, 34.64221956298313], [-77.33886289683932, 34.642593921864716], [-77.3390615270321, 34.64268276364625], [-77.3391482107086, 34.64267581990593], [-77.33936425943992, 34.64294710882829], [-77.33944267813177, 34.643076243888494], [-77.33953420422706, 34.6432741183127], [-77.33954926360639, 34.64334371393092], [-77.33962781128815, 34.64346940786676], [-77.33972333304979, 34.643668691443125], [-77.33980744102566, 34.64386284439391], [-77.33992656402805, 34.644135922792486], [-77.33998237389153, 34.64430393786201], [-77.34015144913488, 34.64448209076239], [-77.34032990335135, 34.64476400246699], [-77.3405310551499, 34.644777980094275], [-77.34083401127633, 34.64485536593322], [-77.34085560479896, 34.64487132553625], [-77.3408698778642, 34.64487091140315], [-77.34088965201943, 34.644873190164816], [-77.3409783033453, 34.644915433871404], [-77.34102253190345, 34.64499724352155], [-77.34103331685694, 34.645039008230526], [-77.34104505850281, 34.64507030113932], [-77.34107491036147, 34.64524429766622], [-77.3411233414811, 34.645489377651586], [-77.34115610102079, 34.64565515056665], [-77.34114943666171, 34.64578296140593], [-77.34114002435032, 34.646079354687956], [-77.34112626445665, 34.646146697831036], [-77.341059190435, 34.64636595497993], [-77.34103856775275, 34.646515277506], [-77.34099970505827, 34.64688228441304], [-77.3409937612155, 34.64694342471033], [-77.34099202319534, 34.64697049525525], [-77.34098220799399, 34.6470229485129], [-77.34090858207057, 34.64737711305006], [-77.34088036187373, 34.64753349861421], [-77.34087269664865, 34.647593037100854], [-77.34080314652206, 34.64772503028586], [-77.34075523648843, 34.64775031109669], [-77.3406207128777, 34.64783862110487], [-77.34054377531548, 34.64788652568067], [-77.34047272413301, 34.647925585637616], [-77.34022933325257, 34.64805596021391], [-77.3400901073743, 34.64813025292297], [-77.33993422706591, 34.648180630980235], [-77.33978599733612, 34.648179976149905], [-77.33976557000904, 34.6481774482559], [-77.33960610647038, 34.64814101820237], [-77.33926386284963, 34.6480261585051], [-77.33926281628482, 34.64802591450871], [-77.33926226085356, 34.64802575281137], [-77.33926108220804, 34.64802522529624], [-77.33891103706156, 34.647868558669025], [-77.3387751077145, 34.64784207470897], [-77.33832870949597, 34.64782037996998], [-77.33827357995997, 34.64788279132824], [-77.33819062445606, 34.647851076539624], [-77.337650414261, 34.647854394624034], [-77.33765200646593, 34.64797607480139], [-77.33758685486174, 34.64789825414457], [-77.33741710431212, 34.64797021129486], [-77.33736703633579, 34.64815120567749], [-77.33732844178022, 34.64822107141838], [-77.33734490916001, 34.64837720333358], [-77.33744491018741, 34.64832980641001], [-77.33771967359266, 34.648312843005755], [-77.33787503652701, 34.648475815860806], [-77.33797513952695, 34.64862369688271], [-77.33805122518108, 34.64870105954367], [-77.33813874815806, 34.64880510852629], [-77.33823239673634, 34.64891643997461], [-77.33828769504356, 34.64900280060897], [-77.33832500419217, 34.64915144883556], [-77.33836816459342, 34.64941375344826], [-77.33829027786838, 34.64955920983685], [-77.3381121116899, 34.6496199630378], [-77.33799857584607, 34.64970085776214], [-77.33784454432089, 34.649684225318126], [-77.33766789534909, 34.64964852844857], [-77.33733596279252, 34.6495553992041], [-77.33733060194616, 34.64955355928562], [-77.33732605986249, 34.64954067887503], [-77.33732206404133, 34.649557306411644], [-77.33705357954354, 34.6499662797909], [-77.33706046417763, 34.650015198513785], [-77.33705972384722, 34.65008976867672], [-77.33704754694013, 34.65043896582404], [-77.3369727235779, 34.65055806727982], [-77.33691016026802, 34.65065765226768], [-77.33683487548343, 34.65076301244871], [-77.33671653527853, 34.65076910879291], [-77.33661303768613, 34.650772351981985], [-77.33649158221634, 34.65077615776141], [-77.33642189043277, 34.65077834151559], [-77.33642273411061, 34.65071188212129], [-77.33640326499858, 34.65052737198445], [-77.33640343958407, 34.65052592242582], [-77.33642137846982, 34.65037697759601], [-77.33642910444428, 34.65031282904176], [-77.3364485198564, 34.6501516235367], [-77.33643492197393, 34.65010103337003], [-77.33640843202545, 34.65003125150884], [-77.33644655114884, 34.64967744250684], [-77.33597499944017, 34.649190263250695], [-77.33563460753145, 34.64946672820797], [-77.3353992748182, 34.649511805684014], [-77.33518191412587, 34.64955343882408], [-77.33416607259038, 34.64974801233782], [-77.33306623632869, 34.64995866194417], [-77.3328285570224, 34.64946493301943], [-77.33058246554721, 34.65028303657908], [-77.3304018311207, 34.65013496665655], [-77.33004429058862, 34.65009504481543], [-77.32995187209175, 34.650568422223586], [-77.33039702943744, 34.65065004642973], [-77.32993132940372, 34.65265889467425], [-77.32983737249356, 34.65370095940783], [-77.32924295884654, 34.65404158626679], [-77.32889127111768, 34.654357137721384], [-77.32867887141293, 34.65430946061076], [-77.32856890946302, 34.65426797403819], [-77.32830296331733, 34.654170500209446], [-77.3259352898937, 34.6534023498987], [-77.32452978337275, 34.653078767865594], [-77.32313465061875, 34.65221060767264], [-77.32097471503782, 34.652303806855706], [-77.32060604467794, 34.65237387177437], [-77.32026935286521, 34.65527195445711], [-77.32167996598066, 34.658301537785434], [-77.32174196569746, 34.65844599644013], [-77.32174027846881, 34.65859817498134], [-77.3219996047138, 34.65931552640856], [-77.32259260822197, 34.66150243483918], [-77.32341903505491, 34.66159199119212], [-77.32477973151568, 34.66176587884505], [-77.3250826190897, 34.6619121795784], [-77.32628965451568, 34.66336928114818], [-77.32750952107912, 34.66374447702441], [-77.3280447465179, 34.6639059546549], [-77.32830953401958, 34.663963719608866], [-77.32912891593531, 34.664185011879916], [-77.32939616949358, 34.66425718918526], [-77.33044100683753, 34.66433734165467], [-77.33072318691532, 34.6644868501155], [-77.33119573298002, 34.66451644762567], [-77.33204210178911, 34.66467616323294], [-77.33244711396206, 34.66372991995463], [-77.33277702534909, 34.66332337908235], [-77.3327823884629, 34.66199970258482], [-77.33278240365, 34.66199596042175], [-77.33278254262456, 34.66199393224245], [-77.33278262048118, 34.66198673176731], [-77.3327942313949, 34.661337543135616], [-77.33279311486623, 34.661150505558396], [-77.33290636273925, 34.6610088627491], [-77.33303785225424, 34.66092016178603], [-77.33304757607911, 34.66091484115525], [-77.33305847817697, 34.660916924786825], [-77.33321481034436, 34.66095033149416], [-77.33331591334836, 34.660943828564726], [-77.33365909664302, 34.66103171504069], [-77.3337197383006, 34.66129257340149], [-77.33379148503992, 34.661601195297386], [-77.3338492364486, 34.6618496185125], [-77.33390251447665, 34.66207879906696], [-77.33415848845084, 34.66245963161971], [-77.33474572192483, 34.66249195411852], [-77.33549890952297, 34.662756054810885], [-77.33576087283382, 34.66158736625644], [-77.33549218702969, 34.66122857747875], [-77.33507601293563, 34.6606515087999], [-77.33482035597248, 34.66026227060435], [-77.33477232789143, 34.66003501161807], [-77.33453527812269, 34.65967851264138], [-77.33446364227048, 34.6595594979993], [-77.33429022746019, 34.65925716234766], [-77.33432005961375, 34.659091816753424], [-77.33443255988524, 34.65904276612792], [-77.33453475093336, 34.65895859085546], [-77.33471527925764, 34.658856225414496], [-77.33495187095346, 34.65868069174002], [-77.33509183330378, 34.658303203012125], [-77.33522105839172, 34.65818625341541], [-77.33533624931528, 34.658093221770116], [-77.33549748975256, 34.65796844273205], [-77.33560955426105, 34.657960085191576], [-77.33580047460052, 34.65788278404314], [-77.33604741088529, 34.657833640807155], [-77.3368866707498, 34.65781772373411], [-77.33707335352065, 34.6578434345709], [-77.33722366717083, 34.65780150125997], [-77.33806825230539, 34.657894819920436], [-77.33830898452408, 34.657949354083875], [-77.33840886112887, 34.658115708663324], [-77.3385005387146, 34.65798970094122], [-77.33902883770998, 34.658014108299476], [-77.33926054876721, 34.65773120923369], [-77.3394902312038, 34.65757902428133], [-77.33957230686737, 34.65753184958312], [-77.33964585426702, 34.65759925914456], [-77.33979125630698, 34.65752638978325], [-77.33984809862996, 34.65731091690916], [-77.33989786913241, 34.657292282612985], [-77.33990993637792, 34.657076505425735], [-77.33968572815111, 34.656828869061464], [-77.33960659444305, 34.65652886731629], [-77.33964900411326, 34.65639273179294], [-77.33970977779751, 34.65632461361842], [-77.33997956552321, 34.656371909859146], [-77.34019358042286, 34.65591518051529], [-77.3404012745497, 34.655760446879135], [-77.34048213223424, 34.655686221169546], [-77.34074575684596, 34.6554219437172], [-77.34102501045459, 34.655201130514385], [-77.34113324000796, 34.65510921654408], [-77.34123873168558, 34.65492774662398], [-77.34128534748133, 34.65490336308578], [-77.34157178582205, 34.6548513373333], [-77.34159444823108, 34.654848207940375], [-77.34161687567624, 34.65484559506875], [-77.34191495373295, 34.65483493355673], [-77.34217124285014, 34.65489628936016], [-77.34224615348012, 34.65490458023457], [-77.34260424070649, 34.65514782685405], [-77.34296995616648, 34.65531960726633], [-77.34310124219269, 34.65535152419986], [-77.3431638018936, 34.65550751266237], [-77.34375709510938, 34.65604965346107], [-77.34392463711652, 34.656017823766824], [-77.34440593339428, 34.656091695283294], [-77.34533137030326, 34.656897957229056], [-77.34551647545585, 34.65745927087182], [-77.34597654169073, 34.65753324510631], [-77.34629009252828, 34.65725366446758], [-77.34659988144935, 34.657448416878495], [-77.34664969921334, 34.657512219842914], [-77.34681826215703, 34.65753782629291], [-77.34709938303723, 34.65777019346188], [-77.34730549172107, 34.65777272996201], [-77.34739558607299, 34.65775789292254], [-77.34762867744256, 34.65784855967101], [-77.347633425723, 34.657861146890454], [-77.34765921914236, 34.657864288249186], [-77.34802690521887, 34.658175599463306], [-77.34805679293497, 34.65817123196593], [-77.34827866234265, 34.658181315392085], [-77.3484342264162, 34.65857226669907], [-77.34875283761842, 34.65860089327587], [-77.34903360897985, 34.65847978510283], [-77.34936961100118, 34.65848337575171], [-77.34957126812162, 34.658617650387846], [-77.35016587438177, 34.65925831668277], [-77.35029918928024, 34.65947311140373], [-77.35046932610126, 34.65956851222475], [-77.35054968285746, 34.65989463449576], [-77.35079335423791, 34.66079144661576], [-77.35076809967016, 34.66121549047051], [-77.3507512431791, 34.66141705321144], [-77.35077160014225, 34.66226994182596], [-77.35064329117176, 34.662920635295436], [-77.35095323340343, 34.66317296381893], [-77.35147856330255, 34.66280593306709], [-77.35200458893688, 34.66258663531562], [-77.35210649763637, 34.66253850203602], [-77.35240752027092, 34.66218900630821], [-77.35263524162208, 34.661983239359245], [-77.3528960690705, 34.66208422084166], [-77.35286708764372, 34.66177124019594], [-77.35308462334966, 34.66159302767598], [-77.35316483418089, 34.661432228717885], [-77.35334694136557, 34.66147728951951], [-77.35351191513712, 34.66168267843612], [-77.35362585782696, 34.662073468348666], [-77.35409437550402, 34.662446684447524], [-77.35362198158842, 34.662761589865774], [-77.3538801409681, 34.663866932581676], [-77.35394907260105, 34.66415465525833], [-77.35420511066496, 34.664572674719956], [-77.35422103928181, 34.66458807259381], [-77.35474261248692, 34.664782466259645], [-77.35488577459728, 34.66486472049754], [-77.35548033728607, 34.664919102622235], [-77.3557062275388, 34.66502148773912], [-77.35587643248088, 34.66499941586504], [-77.3560496411846, 34.66497658411906], [-77.35694793964318, 34.66485393220701], [-77.35710748833942, 34.66488131523204], [-77.35761621360723, 34.66512785057161], [-77.35743738693914, 34.665625045186815], [-77.35745343926452, 34.665647376871455], [-77.35746357895343, 34.66571624410201], [-77.3575196792797, 34.66599058728818], [-77.35749232926082, 34.66610488384123], [-77.3574740665558, 34.66623965180161], [-77.35735249911882, 34.66661147896404], [-77.35714796039241, 34.66706517967836], [-77.35714111344763, 34.667127903379686], [-77.35711459128247, 34.66719740511794], [-77.3567906966338, 34.66766342377012], [-77.3566962911418, 34.66810300464055], [-77.35670541129558, 34.668162526400025], [-77.35671572574772, 34.66818635351795], [-77.35666110176325, 34.66848136342164], [-77.35662555209186, 34.66866088209597], [-77.35651867717473, 34.669126461285906], [-77.35652437362833, 34.66922707450072], [-77.35601680805678, 34.66971926895998], [-77.3555806440601, 34.67014222062983], [-77.35507613994021, 34.67049597599273], [-77.3539380830681, 34.67167772888726], [-77.35358718561912, 34.67172879292647], [-77.35302423730336, 34.67207980029412], [-77.35361811768716, 34.672780006355744], [-77.35509125967883, 34.67416731434237], [-77.35553101344497, 34.67443688621167], [-77.35621920981359, 34.67406251959252], [-77.3564196340487, 34.673563019062534], [-77.35765292421195, 34.67278069815058], [-77.35786302716002, 34.672389983238546], [-77.35821333654906, 34.67176391369243], [-77.35847727731519, 34.671330829459336], [-77.35866248267148, 34.6711228328585], [-77.35885642551929, 34.671226912187045], [-77.3588864375676, 34.671245730486326], [-77.35892423336304, 34.67126942913505], [-77.35936440325966, 34.67153860836619], [-77.35945915802287, 34.67159324238345], [-77.35965821969512, 34.67165597981607], [-77.35988516445461, 34.67180626373106], [-77.36005795067884, 34.671920682856836], [-77.360463706872, 34.67187480946451], [-77.36058795283434, 34.67190686602634], [-77.36074389304903, 34.671940390972836], [-77.36083321645097, 34.671981935763434], [-77.36094591279502, 34.67202549904988], [-77.36101339320393, 34.672042798469185], [-77.3611771010709, 34.67207582222712], [-77.36134510015903, 34.67211239069563], [-77.36157698629577, 34.67216286504276], [-77.36171456660358, 34.67222216357217], [-77.36185010161194, 34.672252818039915], [-77.36195720590709, 34.67231488942359], [-77.36204210929569, 34.67236421357063], [-77.3621028681257, 34.6724129002193], [-77.36223709423753, 34.67252012596606], [-77.36226069641438, 34.672590148080246], [-77.3624484892107, 34.672734773257865], [-77.36249076305334, 34.67280724517992], [-77.36258743804925, 34.672805319670715], [-77.36277325575034, 34.67293384247587], [-77.36279561312068, 34.67296676684026], [-77.36283230123051, 34.6729926489277], [-77.36301680781608, 34.673144070542996], [-77.36301444896974, 34.67319251120706], [-77.36306799595837, 34.67321157967322], [-77.3631957517168, 34.67344715210991], [-77.36358225441504, 34.673501705168796], [-77.36360885116333, 34.67352333308772], [-77.36363944593253, 34.67354590107279], [-77.3638254829744, 34.67369468082675], [-77.36385839829524, 34.67372543369266], [-77.36405498809296, 34.673934958326235], [-77.36407453143309, 34.673953260801504], [-77.36409289606065, 34.673970978759705], [-77.36428192175512, 34.674187819698055], [-77.36428260546047, 34.67418860400326], [-77.36428984080801, 34.67419713981242], [-77.3644639458814, 34.67440737894624], [-77.36448154684734, 34.67442835752996], [-77.36449974233979, 34.674464660834374], [-77.36461785783902, 34.67462992302943], [-77.36457552507918, 34.674750235183936], [-77.36458548805643, 34.67487806622194], [-77.36470001493063, 34.67519894319268], [-77.36449551186767, 34.67537782013563], [-77.3645617937731, 34.675549273715276], [-77.36475816485208, 34.67563659830165], [-77.3647884741663, 34.67582495201119], [-77.36496206563235, 34.67602957008942], [-77.36501079954567, 34.676112632721846], [-77.36509036123338, 34.67627085595342], [-77.36507619886729, 34.67633593277779], [-77.3650254706401, 34.67676382774312], [-77.3649799206568, 34.67677342358717], [-77.36502249016343, 34.67677151968999], [-77.36502641007394, 34.676774709238494], [-77.36504014817022, 34.67677683846442], [-77.36554481794673, 34.67705062242861], [-77.36564099453477, 34.67708379865289], [-77.36575136205181, 34.6771547972939], [-77.36594776844257, 34.67724184725988], [-77.36603206932858, 34.67743393544819], [-77.36610456613944, 34.67751536460454], [-77.36615447901215, 34.677586787464826], [-77.36619165444486, 34.677797563542754], [-77.36615650456908, 34.67786961662037], [-77.36620881797768, 34.67785610667073], [-77.36636184778934, 34.67804567945559], [-77.36607650027979, 34.678312171345524], [-77.36605214476445, 34.67831208212503], [-77.36580686388503, 34.67821015451972], [-77.36574363199617, 34.678187491986364], [-77.36555915798391, 34.67815599308986], [-77.3655640957516, 34.6779314787943], [-77.36527148338746, 34.677992710821925], [-77.36503640440846, 34.677943514254935], [-77.36499070055298, 34.67774672268245], [-77.36504606540981, 34.677541839011795], [-77.36477934710896, 34.677626231247814], [-77.36470882254102, 34.677407248156555], [-77.364559016146, 34.677354292988255], [-77.3645356453146, 34.67732186689952], [-77.36450407715446, 34.67717064679645], [-77.36439084703127, 34.67690258248211], [-77.36437065039586, 34.676857150165944], [-77.36436779690108, 34.67681902584075], [-77.36432618220928, 34.67661956587237], [-77.36430812945937, 34.67653303941451], [-77.3642475246243, 34.676386679937465], [-77.3642449892058, 34.6763845348976], [-77.36424256497916, 34.676382337928345], [-77.36411803120396, 34.67628516297944], [-77.36401703388536, 34.67612833746408], [-77.36389984771918, 34.67605890985833], [-77.36353846597252, 34.67608385269636], [-77.36340994396892, 34.67615808663025], [-77.36310314102907, 34.676336148145786], [-77.36276529235253, 34.67653815875841], [-77.36268785350916, 34.676584155426], [-77.36266257159556, 34.676583795307664], [-77.36263498299115, 34.67660826082723], [-77.36232494963556, 34.67680358345963], [-77.36218455657702, 34.676788136622655], [-77.3620908902062, 34.676683020123185], [-77.36208038019416, 34.67667122537622], [-77.36206700805198, 34.67666128744895], [-77.36186368061601, 34.67651379183425], [-77.36157998893815, 34.67627723405946], [-77.36156672401468, 34.67627822033914], [-77.36147416400085, 34.67628036765761], [-77.36098759455764, 34.67625632036106], [-77.3607263041944, 34.67613677457636], [-77.36035333127114, 34.67594696951502], [-77.3605491771625, 34.67548469593066], [-77.36058946926025, 34.67542714087731], [-77.36059770790168, 34.67539148327899], [-77.36054914445687, 34.67509050136878], [-77.36042876404517, 34.67496183159633], [-77.36035693855325, 34.674844251267984], [-77.36023937388768, 34.674710114109786], [-77.359847867763, 34.67472671360315], [-77.35962218770636, 34.67477466308217], [-77.35891882658392, 34.67516926849778], [-77.35892045470136, 34.67518096460918], [-77.3587520909344, 34.676079719940745], [-77.35928465273378, 34.675937747390996], [-77.35934999433829, 34.6760848105509], [-77.35922099564704, 34.67615709511627], [-77.35864041522449, 34.67620916015665], [-77.35860679103892, 34.6762113237957], [-77.35858199534464, 34.6762106630622], [-77.35848830399742, 34.67620318371694], [-77.35803857363848, 34.67610709305728], [-77.3577732288352, 34.67630141094473], [-77.35756103961619, 34.67652869590246], [-77.35758143811042, 34.67698089380635], [-77.35778039125155, 34.67699667221439], [-77.35792778464713, 34.67710848986398], [-77.3580836226033, 34.67723354675763], [-77.35820839916224, 34.67728668516732], [-77.35828268963667, 34.677328053488836], [-77.35844501223957, 34.67749875300007], [-77.35851195538486, 34.67756915041737], [-77.35858844362676, 34.677651588028226], [-77.35864560067466, 34.67773855306202], [-77.35872209588752, 34.677876149041566], [-77.3587990777815, 34.67801462011921], [-77.35887805455522, 34.678099190813526], [-77.3589665203397, 34.67827993723172], [-77.35901755813461, 34.67832372081813], [-77.35908761840975, 34.67838382334382], [-77.35914127073836, 34.67849397462484], [-77.35916254499975, 34.678523252325206], [-77.35919857046275, 34.67854254830601], [-77.35915252351096, 34.67857786498447], [-77.35910800677902, 34.67860859087784], [-77.35876601943347, 34.67887345057431], [-77.35842452073544, 34.67913626562702], [-77.35829568046726, 34.67934539256185], [-77.35813621646614, 34.67959158148815], [-77.35807416187879, 34.67967177864092], [-77.35803404745661, 34.6797861713164], [-77.3578931080115, 34.68001429656825], [-77.35748695965282, 34.680239822629716], [-77.35744828784972, 34.680258189260805], [-77.35742869608774, 34.6802704574735], [-77.3573427908513, 34.68031827811447], [-77.35716799036257, 34.68028363364751], [-77.35629153842078, 34.68033906611408], [-77.35622358110378, 34.68029841947521], [-77.35577876373794, 34.679987056503826], [-77.35576258953907, 34.6799578101985], [-77.35557629427181, 34.679875062408925], [-77.35519666567235, 34.67971246501436], [-77.3551383927614, 34.6796498702501], [-77.35505927916755, 34.679598485013315], [-77.35470007086218, 34.67936141159939], [-77.35462165655436, 34.6792592152342], [-77.35426576345554, 34.678795794969616], [-77.35424064231114, 34.6787640938783], [-77.35418552905628, 34.67874371103256], [-77.35368433106109, 34.67840390355266], [-77.35328513559445, 34.678050481810956], [-77.35301790606891, 34.67792928719766], [-77.35282203113178, 34.67749084478061], [-77.35238328742815, 34.67703384002234], [-77.35168762915907, 34.67678722190487], [-77.34837848247928, 34.677322789990335], [-77.34775327033631, 34.678652110894504], [-77.34743745484776, 34.67904160577294], [-77.34677525242446, 34.6798582594367], [-77.3459771162083, 34.6802999435381], [-77.34590267028018, 34.68085565743428], [-77.34586436044228, 34.68126905721462], [-77.3462455581481, 34.681682359728725], [-77.3465602712647, 34.68231018582262], [-77.34722285803304, 34.68243914777653], [-77.34779861808808, 34.682544933600454], [-77.34815345168498, 34.682660796710714], [-77.34827369314428, 34.68294272637466], [-77.34853464216798, 34.68394414690135], [-77.34896200306235, 34.6843347534377], [-77.34897026984885, 34.68439725648483], [-77.34894062278518, 34.684768509247576], [-77.34887352982602, 34.685260069418895], [-77.34895312806219, 34.68531073417545], [-77.34933261132399, 34.68547988607439], [-77.34939337046524, 34.685648368742434], [-77.34963780080214, 34.68570412281732], [-77.34981607761625, 34.68587623360513], [-77.34993688320272, 34.686018452171695], [-77.34988548024809, 34.686157501882235], [-77.34982587833001, 34.68626576021124], [-77.34978400797684, 34.68665881395705], [-77.3497686944149, 34.686853354641045], [-77.34976530445358, 34.68690507270702], [-77.3497690668392, 34.686935972267804], [-77.34970869383177, 34.68711930534508], [-77.34964898490693, 34.6871647320725], [-77.34948623196135, 34.68724121945906], [-77.3494145209162, 34.687259180109386], [-77.34921273560184, 34.687364114400836], [-77.34907900634201, 34.68738396349542], [-77.3489819201408, 34.687432395188345], [-77.34891160271769, 34.68744513560248], [-77.34890020787874, 34.68740753666485], [-77.34888582696257, 34.68734719887809], [-77.34896801055788, 34.68725821562612], [-77.34898441759168, 34.687145639993574], [-77.34885473035493, 34.68712565719675], [-77.34884727583761, 34.68703109914195], [-77.34883913204905, 34.68698664923233], [-77.34887448966933, 34.686836056429954], [-77.34889029175208, 34.686781503574814], [-77.34883136298876, 34.686660611071616], [-77.34883968916918, 34.68646865652015], [-77.34874300609383, 34.68647974758635], [-77.34871164047742, 34.68631864706698], [-77.34867909122421, 34.686206454479965], [-77.34868222929725, 34.6861956535267], [-77.34866310540177, 34.68619228112456], [-77.34854511400005, 34.68613059185491], [-77.34849873660048, 34.68610418290126], [-77.34852640632266, 34.68592139075303], [-77.34837154047865, 34.68587795279113], [-77.34867338871057, 34.685414095237256], [-77.34809792323202, 34.68560932884823], [-77.3478242623131, 34.68576768977826], [-77.34773259750399, 34.685743926800946], [-77.34748711209278, 34.685651542572884], [-77.3473285549045, 34.68566068579386], [-77.34713665081634, 34.68556008296186], [-77.34694201495859, 34.68546745862262], [-77.3466779149943, 34.685623049394906], [-77.34640887988121, 34.68578936273503], [-77.34622771616243, 34.68586602569276], [-77.34617288492376, 34.685899273356], [-77.34599286918495, 34.68590021686508], [-77.34593536695547, 34.6858421640753], [-77.34577337808307, 34.68574720181297], [-77.34577597700472, 34.68567295254189], [-77.34571482188574, 34.68557105159103], [-77.34565052968182, 34.685375318034076], [-77.34553180585173, 34.68501168076564], [-77.34563296572055, 34.684791713946616], [-77.34555717899659, 34.684658815269486], [-77.34539082989326, 34.684625628736114], [-77.34527547438823, 34.68435340127502], [-77.34514552173059, 34.68418726601582], [-77.34505086375147, 34.68394690389705], [-77.34504130495375, 34.68389816186355], [-77.34505146145463, 34.68386548148334], [-77.3450222097711, 34.68383390331262], [-77.3449886633462, 34.683519638848615], [-77.34451126827142, 34.68353225837639], [-77.34448582930199, 34.683512423999666], [-77.34445480876377, 34.68349127654281], [-77.34452876939135, 34.683085213399025], [-77.3440287570502, 34.683132731565635], [-77.34396238886735, 34.68307147812596], [-77.34396974543944, 34.682727073348765], [-77.34359412541886, 34.68256835823313], [-77.34341766070467, 34.682363594413005], [-77.34316176506938, 34.68220659641149], [-77.34311037410887, 34.68217313447272], [-77.34276910061936, 34.68207435663727], [-77.34254353014381, 34.682064013871496], [-77.34207161765065, 34.681943400251335], [-77.34196009268321, 34.681908586412554], [-77.34191931180831, 34.681889718324236], [-77.3416247466936, 34.68177248192572], [-77.34146403634732, 34.681659195167015], [-77.34133548299457, 34.68160091604465], [-77.34110677961684, 34.681513835589584], [-77.34113267558743, 34.68111074623328], [-77.34113529070524, 34.68102254793404], [-77.34113698638366, 34.68096535250328], [-77.34114980253091, 34.68053317843727], [-77.34127125108239, 34.680073720845165], [-77.3398089175093, 34.67993679359342], [-77.33934901727402, 34.68078026637834], [-77.3392983778585, 34.68087259662106], [-77.33890931659548, 34.68169246659688], [-77.33879917921472, 34.68183045424627], [-77.3376970784982, 34.6822640997874], [-77.33731889757276, 34.68232667173955], [-77.33705727353399, 34.68240612057355], [-77.33687570366341, 34.68244245829943], [-77.33642217278629, 34.6825319358693], [-77.3361561108263, 34.682680419090225], [-77.33594372815864, 34.682892689929204], [-77.33563868660018, 34.68316848119862], [-77.33558970352308, 34.68321710612077], [-77.3355565286706, 34.68325003813989], [-77.33543301057738, 34.68338356905474], [-77.33528255461317, 34.68358309662636], [-77.33511537546113, 34.68362795588599], [-77.33491430172404, 34.68360156313184], [-77.33463898143245, 34.68360035384735], [-77.33384848518222, 34.68358802587668], [-77.33373263155198, 34.68354837858818], [-77.33367167027923, 34.683556321831745], [-77.33276109261034, 34.68363344707014], [-77.33253002376586, 34.68364640731141], [-77.3325064764764, 34.68364827959183], [-77.33247839003775, 34.683649681096654], [-77.3313700303719, 34.68343943734129], [-77.33087040197422, 34.68334673438853], [-77.33079982863413, 34.68334183151438], [-77.33069426211046, 34.68334409031258], [-77.33018860256877, 34.683385392854674], [-77.32932858151865, 34.68340962362339], [-77.32894855324845, 34.68353305372041], [-77.32870587511812, 34.68343546960443], [-77.32828108340894, 34.68327302647849], [-77.32806345162012, 34.683141460397565], [-77.32792072038433, 34.682950493971326], [-77.32675446648746, 34.683360216971785], [-77.32660987875192, 34.68334170306626], [-77.326459884826, 34.683418834434214], [-77.3263386185579, 34.68353933140227], [-77.3264400624745, 34.683602074892065], [-77.32653357731802, 34.683604226322224], [-77.32714039557641, 34.68463975452027], [-77.32805548576779, 34.68525343188713], [-77.3281932115251, 34.68540629183744], [-77.32840763709021, 34.685394278498194], [-77.32874143055349, 34.68544259580017], [-77.32953122104047, 34.68564747529739], [-77.32984350489781, 34.68571320411053], [-77.33058936222206, 34.68588074917167], [-77.3306357479515, 34.68589196800989], [-77.3306558259277, 34.68589717327849], [-77.3307014973099, 34.68590422811825], [-77.33142863753011, 34.68607022896332], [-77.331779412521, 34.686150381158036], [-77.332690694614, 34.686391642010854], [-77.33289508517763, 34.68643083964629], [-77.33300075556204, 34.686437255303055], [-77.3332796470225, 34.686486563227916], [-77.33342043928289, 34.6865085045858], [-77.33343884138169, 34.686619530670164], [-77.33348588000052, 34.686852285666276], [-77.33345341245902, 34.68706808961781], [-77.333221128978, 34.687469331530465], [-77.3328608344791, 34.68781936657122], [-77.33276634688053, 34.688194095942016], [-77.3327379717404, 34.68851033710384], [-77.33276069523701, 34.68895332347592], [-77.33276535852063, 34.688983109508925], [-77.33276210923624, 34.689008636644836], [-77.3327573497807, 34.6894824219335], [-77.33268249361232, 34.689835103979405], [-77.33295621145663, 34.690429889118136], [-77.33292170040689, 34.69122759025484], [-77.33285204579634, 34.69141892334002], [-77.3328005998622, 34.69159642112232], [-77.33279898707973, 34.691913571821395], [-77.33272504914856, 34.692167127175786], [-77.33270227630567, 34.69241420483542], [-77.33217951584112, 34.693013272063226], [-77.33180051048342, 34.69326316547051], [-77.33183032776937, 34.69350851763336], [-77.33189540191658, 34.693593600344066], [-77.33193859705625, 34.69384229665826], [-77.33197108125009, 34.69397658823918], [-77.33183710480493, 34.69442669325794], [-77.33180427264226, 34.694486832855276], [-77.33179102105356, 34.69453158595445], [-77.33171092453192, 34.694625723369384], [-77.33137988601196, 34.695032395764485], [-77.33119311852471, 34.69527819174394], [-77.33085785412449, 34.69550116760496], [-77.33037251206575, 34.695657891416246], [-77.33023181067992, 34.695702527547354], [-77.33019897309055, 34.69570839713424], [-77.33011126671879, 34.69575426054127], [-77.32925727304895, 34.69611513112058], [-77.32897455312289, 34.696628618912094], [-77.3288458503333, 34.69684193970208], [-77.32879738915457, 34.69698415828583], [-77.32860891859829, 34.69705962612979], [-77.32824592261797, 34.69718906602954], [-77.32792953506157, 34.69733731601869], [-77.3277939607455, 34.697371149403324], [-77.327273224365, 34.69753561062206], [-77.3272596973472, 34.69753577919573], [-77.32720295875038, 34.69755452912521], [-77.32694822069159, 34.69762390977813], [-77.32690636435345, 34.697595186033276], [-77.32682373467131, 34.69749473707192], [-77.32670704703729, 34.6974238183203], [-77.3264773857612, 34.69716662036571], [-77.32639201033726, 34.69703858287707], [-77.32621767689257, 34.69704780626498], [-77.32600174076663, 34.69694465184673], [-77.32586738033152, 34.696939414363186], [-77.32565335852769, 34.69692963057707], [-77.32551298579759, 34.69692646719554], [-77.32512985665183, 34.696923763890155], [-77.32505293987083, 34.69693563872293], [-77.32462463502857, 34.696933204037805], [-77.324476200239, 34.69693568265688], [-77.32445718966525, 34.696925584651154], [-77.3243888358136, 34.69690500700417], [-77.32387576058834, 34.69686626414296], [-77.32373340795195, 34.696718776208904], [-77.32358180335085, 34.6965887617587], [-77.3232295814437, 34.69631808079824], [-77.32289695403975, 34.696114563669774], [-77.32257394783669, 34.69603414091377], [-77.32191712419618, 34.695989679002196], [-77.32173728903881, 34.69598497427888], [-77.32161569263836, 34.695982942319134], [-77.32127626618977, 34.69592998606546], [-77.32115950481455, 34.69591313473467], [-77.32085262046076, 34.69598803828288], [-77.3205579791666, 34.69606111715314], [-77.32051558989575, 34.69606873541143], [-77.32048076280596, 34.69606761083445], [-77.31988776406335, 34.696168990864095], [-77.31965537561913, 34.69615208894943], [-77.31936656777877, 34.696136320021296], [-77.31930525381738, 34.696113393772485], [-77.31918364421139, 34.69611906847251], [-77.31872757712259, 34.696041173321845], [-77.31850790724744, 34.69600850251542], [-77.31815099383316, 34.695965193457276], [-77.31806488225256, 34.69595512552924], [-77.31777409601818, 34.69592248048657], [-77.3176181335355, 34.695904609811286], [-77.31757142126713, 34.69589949341234], [-77.31748589929622, 34.695890125864636], [-77.31698332341126, 34.695863108829286], [-77.31663622623799, 34.69587156044267], [-77.31599432899056, 34.69584404632991], [-77.31578273014655, 34.69587422780463], [-77.31518982946152, 34.696276503410985], [-77.31513475545611, 34.69635859376036], [-77.31500318218652, 34.69649612611707], [-77.31483829920286, 34.69646600807904], [-77.31434284949063, 34.69670808278815], [-77.31385117936317, 34.69649700911127], [-77.3137962377727, 34.696479189672154], [-77.31378558472512, 34.69646884925605], [-77.31330014465732, 34.69617628414866], [-77.31321834857904, 34.696135437747614], [-77.31301335356174, 34.696087257299986], [-77.3127515864646, 34.69600393409761], [-77.3124432310376, 34.69594334243309], [-77.31218673993317, 34.69588758639323], [-77.31164561358608, 34.69581747447492], [-77.3116103458994, 34.6958109448195], [-77.31159501671505, 34.69580745345657], [-77.31107674164484, 34.69558719460811], [-77.3109389524544, 34.69552381027799], [-77.31070658100107, 34.69542845624759], [-77.31003779592987, 34.69504255882713], [-77.3094873697896, 34.69506375228734], [-77.30937033879866, 34.69507602155156], [-77.30883368741394, 34.69506571672905], [-77.30847087672595, 34.6950572368944], [-77.30774396846591, 34.694859416040124], [-77.3077171123737, 34.6948487101018], [-77.30770195209766, 34.69484008744324], [-77.30765834178406, 34.69483425876013], [-77.30762796768101, 34.69487529864828], [-77.30676867220149, 34.69532208562968], [-77.30617295806107, 34.695979903444176], [-77.30611430432444, 34.6960186899422], [-77.30608137455641, 34.69606175765646], [-77.30601755842342, 34.69615542044699], [-77.30517209778425, 34.6981356581091], [-77.3055049440679, 34.698275873690264], [-77.30570522196724, 34.698210133917414], [-77.30675265180037, 34.69810306339673], [-77.30771196037355, 34.69800499057856], [-77.30797171617783, 34.69802867344956], [-77.30826057729874, 34.6979229184801], [-77.30893702928384, 34.69785117368634], [-77.30921592082414, 34.697867844134535], [-77.30950129869292, 34.69774651136144], [-77.30959828324004, 34.69773679971056], [-77.30969920195375, 34.69792208570686], [-77.30970210610367, 34.69800280180133], [-77.30972480933463, 34.69803356353191], [-77.30948341191142, 34.69852010471388], [-77.30982143480855, 34.69930766919481], [-77.30980367021185, 34.69945096826272], [-77.30984495421241, 34.699517375839044], [-77.30992457827779, 34.69954798723028], [-77.3102390604197, 34.70079055437425], [-77.31116391597429, 34.70121413292065], [-77.3113243786977, 34.70153228500398], [-77.31162469088255, 34.701936376318564], [-77.31328242001935, 34.70237791054976], [-77.31383740781452, 34.70256281588305], [-77.31406407936274, 34.70257823290147], [-77.31622973610757, 34.70243813081896], [-77.31630245363901, 34.702321696672584], [-77.31680153235229, 34.7014167062186], [-77.31675405057713, 34.701297962027766], [-77.31705489496957, 34.70061596270681], [-77.31723874472874, 34.70038208797272], [-77.3172091158362, 34.70015988614556], [-77.31722306890121, 34.70012661643266], [-77.31725746444445, 34.70006722045959], [-77.31729000852529, 34.70009768141979], [-77.31755719563935, 34.70006592288975], [-77.31787344516486, 34.70006498690095], [-77.31813393338525, 34.70014147039184], [-77.31922848001547, 34.699989868770416], [-77.31938873930375, 34.69994409710512], [-77.31968941924208, 34.69982885179847], [-77.32026425042456, 34.69963156558062], [-77.32069202147656, 34.69957997140103], [-77.32094183779718, 34.69965387650124], [-77.32129151874886, 34.69982681462068], [-77.32144805065064, 34.70005275044288], [-77.32172917245252, 34.70013109949638], [-77.32261748026846, 34.700729767205026], [-77.32360588740484, 34.70145912398451], [-77.32363694122112, 34.70152211878936], [-77.3245506734674, 34.70215626345474], [-77.32568034849372, 34.70301512976692], [-77.32573806173237, 34.703059006418435], [-77.32591066345984, 34.70309271109041], [-77.32786574919373, 34.703735659475946], [-77.32894679356085, 34.70374400814895], [-77.33024011538072, 34.70380612658309], [-77.33196377939413, 34.703622574017196], [-77.33276090839558, 34.70337277985455], [-77.33389282490884, 34.70309267402645], [-77.33534126600784, 34.70273425060213], [-77.33626383741901, 34.702328168879795], [-77.33734412194525, 34.70152504194768], [-77.33790062707153, 34.70122591709336], [-77.33829218236214, 34.70082021092792], [-77.33927967508255, 34.70028479676051], [-77.33958722714253, 34.700167839157224], [-77.33958392882496, 34.69975568476434], [-77.339621632905, 34.699474000036126], [-77.3395928872147, 34.699267079448255], [-77.33979833433328, 34.699078293553875], [-77.34006894204941, 34.69871439748099], [-77.340117099683, 34.69866010834702], [-77.34039650279955, 34.69833193188937], [-77.34054790837341, 34.69820753150012], [-77.34057942349574, 34.698174936725025], [-77.34073065799228, 34.698136240272305], [-77.34085295407296, 34.69809827809593], [-77.34087955911657, 34.69809626614531], [-77.34095273005562, 34.6981057730477], [-77.34129757404956, 34.69818462537707], [-77.34143369576444, 34.69824950676893], [-77.34185816578486, 34.69835115754829], [-77.34228978797513, 34.69820956173368], [-77.34267916818402, 34.698083689649394], [-77.34282167751635, 34.69792871696183], [-77.3428909266548, 34.69783984433167], [-77.34326773538103, 34.69745714052327], [-77.3434831639702, 34.69723850969019], [-77.34381778491657, 34.69703392948154], [-77.34425284001813, 34.69678792688029], [-77.34435718908159, 34.696736739674535], [-77.34450637228582, 34.69664341663952], [-77.34483560246953, 34.696250798256116], [-77.34500694558797, 34.69608734542441], [-77.34501746173231, 34.69604546829204], [-77.34509088533892, 34.695588446033334], [-77.34516295855455, 34.69521057868077], [-77.34516427631928, 34.69509099689115], [-77.34523908184549, 34.69496530647886], [-77.3456696286271, 34.69453426365369], [-77.34593226015961, 34.69430322237429], [-77.34617077226446, 34.69430663802949], [-77.34622190865625, 34.69439576071304], [-77.34631776140353, 34.6944453134095], [-77.34654430679672, 34.69454185859625], [-77.34668193354302, 34.69460777293378], [-77.34672720407517, 34.69463280865571], [-77.34683276035662, 34.69471407570419], [-77.34704902635947, 34.69483232814581], [-77.34716698822034, 34.69499880931033], [-77.34726533618374, 34.695169569813785], [-77.34758232833921, 34.6952465094061], [-77.34792467837322, 34.695450572939336], [-77.34822877468429, 34.695465238727216], [-77.34869443640011, 34.69547539138322], [-77.34882436926283, 34.69547566324005], [-77.34889929332924, 34.6954889749207], [-77.34893486846521, 34.69554824060991], [-77.34912960989345, 34.695705929324724], [-77.34920119697841, 34.695924636177], [-77.34921889397143, 34.695996634279894], [-77.34921098931099, 34.69603749125726], [-77.34924784822492, 34.69607878397298], [-77.34988867004803, 34.69687945495787], [-77.34985687178715, 34.69711721952317], [-77.35084469351693, 34.697381547098864], [-77.35156810230836, 34.69580039218446], [-77.35168411414404, 34.6956582118553], [-77.35147006405064, 34.69538279636655], [-77.35101146633598, 34.69465198220749], [-77.35085801796738, 34.69465675114173], [-77.35051286397318, 34.69424729996037], [-77.3503876557137, 34.69421508248883], [-77.35016520396238, 34.69391720590569], [-77.35014571382504, 34.69374146121491], [-77.35018869708001, 34.6936086067826], [-77.35039080634485, 34.693398853665876], [-77.35052557435456, 34.69326896385975], [-77.35093767892225, 34.692836393981594], [-77.35118220616607, 34.69257450255102], [-77.35156216337944, 34.692231689856946], [-77.35193588857629, 34.6919660857906], [-77.35213886402872, 34.69169671732223], [-77.35236159553945, 34.69153996471871], [-77.35265793326843, 34.69132962726574], [-77.35302768257715, 34.691087298072816], [-77.35310768599807, 34.69103191448771], [-77.35352090582556, 34.690818103239415], [-77.35393226081672, 34.69047570528589], [-77.3540442074566, 34.69000547451946], [-77.35408661951116, 34.689967127124966], [-77.35467991182809, 34.689739981433306], [-77.35520610134162, 34.68975894552965], [-77.3552699647218, 34.68976932045676], [-77.35529732623993, 34.6897768193366], [-77.35532523213092, 34.689797038924844], [-77.35561936153854, 34.68992316927917], [-77.35558378670407, 34.69009374741326], [-77.3554461148043, 34.6901934870875], [-77.35540257575244, 34.690252238073015], [-77.35531950866951, 34.69028520955445], [-77.35521475913194, 34.690404873153234], [-77.35498801858898, 34.69074053256917], [-77.3549207432061, 34.690782494789836], [-77.35489972768252, 34.690871234275846], [-77.35527000542217, 34.69126677600816], [-77.35525994190155, 34.6913824060689], [-77.35538891997905, 34.69142146072773], [-77.3561608739651, 34.692265837448886], [-77.3568363697884, 34.69300120295373], [-77.35722334265753, 34.69335026937539], [-77.35858959428242, 34.69355023527181], [-77.36096032254589, 34.69438430407966], [-77.36131386293839, 34.6946071895337], [-77.36162336695836, 34.69468946916763], [-77.36245961706247, 34.69491176253035], [-77.36384625520668, 34.69528036417892], [-77.36437576600217, 34.69540422256219], [-77.3654488057245, 34.695717208283874], [-77.36606942453028, 34.69587034900319], [-77.3669024733679, 34.69661322053886], [-77.36724053491358, 34.696595995722234], [-77.36822542531891, 34.69669188310052], [-77.36856831624979, 34.69690788152988], [-77.36874536135716, 34.6969629887176], [-77.36902571349054, 34.69717524058047], [-77.36910740211604, 34.697281400589596], [-77.36922505875133, 34.6973727855359], [-77.36955345981825, 34.697726528909314], [-77.37000636983194, 34.69801524586325], [-77.37018378121549, 34.69819474196545], [-77.37062657090641, 34.69847747401572], [-77.37068354830568, 34.69853540901421], [-77.37081757306399, 34.69872469769259], [-77.37081323738647, 34.698879133207114], [-77.37080573821348, 34.699128066255874], [-77.37067171369327, 34.69963643272546], [-77.37059151086844, 34.699884393816426], [-77.37038430683977, 34.7002410013663], [-77.37025589069538, 34.70041791608743], [-77.3702125124674, 34.70050582711856], [-77.37015413919872, 34.700812440173266], [-77.37013325004747, 34.70092216450116], [-77.37006619050231, 34.70127439756314], [-77.37003796640045, 34.70142265273525], [-77.37005761906141, 34.70164486284435], [-77.37005152432351, 34.70190818127556], [-77.37001732625865, 34.702100523316496], [-77.37015455819318, 34.7024218806111], [-77.37066774535813, 34.70218546548581], [-77.37127997027163, 34.7019170850927], [-77.37153081395235, 34.70180495115187], [-77.37173519031876, 34.7018549928053], [-77.37181576462912, 34.70189889674087], [-77.37182062996528, 34.701930694588704], [-77.37173218201275, 34.7021645788584], [-77.37171565838618, 34.702370219741425], [-77.37164552402456, 34.702663882588254], [-77.37162917164184, 34.70303731606806], [-77.37157958003061, 34.703263497378934], [-77.37168007110782, 34.70363392096035], [-77.37164739390303, 34.70399981602117], [-77.37270862087377, 34.70399370459501], [-77.37314523733255, 34.70343252684533], [-77.37332610231044, 34.703264546892214], [-77.37343101363766, 34.702905849694844], [-77.37367536848883, 34.702666542579294], [-77.3738467785976, 34.70244962629904], [-77.37401132557555, 34.70233868109315], [-77.37410522348372, 34.70210776824602], [-77.37429588006904, 34.701812168010434], [-77.37428299584775, 34.70157664273177], [-77.3742889369744, 34.7015651466465], [-77.37430091665763, 34.70154196568558], [-77.37446651212932, 34.70130131572841], [-77.3744521847723, 34.701249257810474], [-77.37442992925243, 34.70109723127795], [-77.37443099804833, 34.701068432314464], [-77.37442024431493, 34.70104337242807], [-77.37444722112231, 34.70103762214467], [-77.37445324156512, 34.70105130822206], [-77.37460433041406, 34.70101192248755], [-77.37462346730698, 34.701036040654124], [-77.37466437978206, 34.70108590001641], [-77.3746922405973, 34.70112482997852], [-77.37469475435329, 34.701148089158906], [-77.37471227328776, 34.701155712714595], [-77.3747432251943, 34.70122233730274], [-77.3747788378044, 34.701258378337805], [-77.37493991207957, 34.70140278034799], [-77.37497145473347, 34.70144090804924], [-77.37517522988794, 34.70162338008702], [-77.37522661407812, 34.70168421375068], [-77.37539937125423, 34.70190002490123], [-77.37540484044136, 34.70191569985767], [-77.37521386779382, 34.70217336150145], [-77.37552786179319, 34.70247139366391], [-77.37554680614234, 34.702575073056906], [-77.37556582252336, 34.70261237008027], [-77.37575094322337, 34.702860431150974], [-77.37557756129343, 34.70309815073347], [-77.37571790178478, 34.70323190732448], [-77.37590198057347, 34.70324535891659], [-77.37597509737465, 34.70342818382685], [-77.37615134625399, 34.70341755571041], [-77.37621031256545, 34.70349855438063], [-77.37629446307747, 34.7035765980981], [-77.37638064411615, 34.70365893774278], [-77.37642663780379, 34.70371251036866], [-77.37636511079837, 34.70391648864401], [-77.37639711773141, 34.70396026697223], [-77.37659629163447, 34.70413279301873], [-77.37675899881182, 34.70415421040003], [-77.37682051539997, 34.704206266641215], [-77.3768816294367, 34.70430740486845], [-77.37694415149754, 34.704295980373736], [-77.37700374358997, 34.704364258258565], [-77.3770319078576, 34.704388852610684], [-77.37705085097132, 34.70444408418827], [-77.37706466074545, 34.70447773172482], [-77.37703044812385, 34.70451442336524], [-77.37692012936755, 34.70453433668183], [-77.37682155729337, 34.70455079225618], [-77.37672856354226, 34.70452326888149], [-77.37661191247821, 34.704515047267584], [-77.37619859363267, 34.704533214610535], [-77.37612760082972, 34.70453128187431], [-77.37596664502982, 34.704617523795875], [-77.37555778058919, 34.70443193139593], [-77.37494468836093, 34.70513473922032], [-77.37451252698159, 34.70559189075283], [-77.37397117910015, 34.70624335826865], [-77.3739122041689, 34.706336265791556], [-77.37373791284796, 34.70712177843636], [-77.37382250402317, 34.70723858462155], [-77.37384860033748, 34.70755613755622], [-77.37388146231655, 34.70820526566881], [-77.37408414707285, 34.70951168515371], [-77.37468647819514, 34.70954576478705], [-77.37558561819691, 34.70909495779988], [-77.37569752147046, 34.70893040763107], [-77.37685115536051, 34.70822823970063], [-77.37715849640925, 34.708068852578165], [-77.37736716946105, 34.70791415671013], [-77.37768365906209, 34.707486471196546], [-77.37770118759593, 34.70745973126429], [-77.3777260343303, 34.707422195631956], [-77.37801214125281, 34.70702158304098], [-77.37809814043304, 34.70686746407851], [-77.37819405199706, 34.70676907795249], [-77.37840758991686, 34.70673850605498], [-77.37856453164004, 34.70674151719815], [-77.37866891908602, 34.70669234171627], [-77.37902541092856, 34.706632372165814], [-77.37929142499529, 34.70644557513528], [-77.379351447375, 34.70641732487809], [-77.37938120257184, 34.70638253257871], [-77.37965871322243, 34.70628435076017], [-77.37971397083442, 34.70626198727492], [-77.37981432041316, 34.70625457776387], [-77.37998768105211, 34.70625524531715], [-77.38015020296669, 34.70637217512579], [-77.38022004572927, 34.70642945716123], [-77.38023986592319, 34.7064908814327], [-77.38043973735924, 34.70675314042586], [-77.38043702267642, 34.706785316549926], [-77.38042144402651, 34.70696997049974], [-77.38039826094972, 34.70724775657844], [-77.38040074494548, 34.70738583391009], [-77.38041020415264, 34.70786118319944], [-77.3801755577227, 34.70823313707867], [-77.38059044797845, 34.7085975959812], [-77.38120204922227, 34.70869704799361], [-77.38180021465249, 34.70884713088201], [-77.38227370360092, 34.709143876541695], [-77.382441840209, 34.70922861698321], [-77.38287552325005, 34.70956032221309], [-77.38318519800441, 34.70965657603729], [-77.38347964856551, 34.70968772601491], [-77.38370419302375, 34.709797056328334], [-77.38404624494436, 34.709944544297386], [-77.38442138470144, 34.71003394576456], [-77.38450866787234, 34.710414332529005], [-77.38450303064836, 34.711104085427614], [-77.38447375038515, 34.71152047101515], [-77.38439794761796, 34.71182889149658], [-77.3845554844383, 34.71266743573443], [-77.38446245986222, 34.71403171537003], [-77.38385751923317, 34.7146598274333], [-77.38425614004106, 34.715458339289526], [-77.38438580306114, 34.717081485683096], [-77.38439321508767, 34.7171864007998], [-77.38415165943637, 34.718117891612884], [-77.38405289978373, 34.71822081543506], [-77.38381068826156, 34.71855772597527], [-77.38356372534378, 34.718549457791084], [-77.38314827056395, 34.71859780761234], [-77.38283080691195, 34.718556857613706], [-77.38263004546994, 34.71870365519452], [-77.38255264555808, 34.718846021223165], [-77.38237842385077, 34.71960437119178], [-77.38239151299048, 34.719738530619196], [-77.38225655843098, 34.71986198907153], [-77.38213114869819, 34.719948354937685], [-77.38182667616223, 34.72004112706591], [-77.38175419734375, 34.7200582556897], [-77.38174171661919, 34.72005976519912], [-77.38118108715932, 34.720310148359836], [-77.38102402403163, 34.72037823878356], [-77.38102207715372, 34.72037948370959], [-77.38101989495482, 34.720379391969516], [-77.37974955548368, 34.72105050011695], [-77.37961406622918, 34.72107009381031], [-77.379530966478, 34.721091652838595], [-77.37931837023383, 34.72108632768618], [-77.37845696325988, 34.720674071611846], [-77.37835115960723, 34.72073822236598], [-77.37798567510728, 34.72099224043481], [-77.37780976071889, 34.721112323330935], [-77.37755003230615, 34.72128961786094], [-77.37748234696792, 34.72132521419693], [-77.37739594020472, 34.721344991578434], [-77.37728520653903, 34.721376956460226], [-77.37720826035243, 34.721362646419735], [-77.37704952202776, 34.72136563214414], [-77.37689176527351, 34.7213485432614], [-77.37636306189526, 34.72142513721765], [-77.37616857913129, 34.72142144306934], [-77.37615210769665, 34.72146875860069], [-77.37598922962438, 34.7215808929929], [-77.375577402195, 34.72182676641522], [-77.37551252581179, 34.721845230915065], [-77.3754594065213, 34.72186558750119], [-77.37512794269331, 34.721964586270346], [-77.37499622955355, 34.72199461527792], [-77.37477071725694, 34.72202933213933], [-77.3746767598963, 34.72197496456289], [-77.37417530718083, 34.72187157660138], [-77.37413616254841, 34.72188140815649], [-77.37414052487989, 34.72199145364419], [-77.37411739836656, 34.72236075994797], [-77.37415438884457, 34.722446994084166], [-77.37450945942248, 34.722929772606534], [-77.37460557140636, 34.723049925804524], [-77.37467521088803, 34.72318853248218], [-77.37449986830579, 34.7231828142237], [-77.37436514756003, 34.72359636667579], [-77.37433437748801, 34.72362841595968], [-77.37432114352374, 34.7236390207453], [-77.37429909513325, 34.72365479306794], [-77.37401032961833, 34.7238790957022], [-77.3737614101629, 34.72398703224821], [-77.3736550438068, 34.72404640434513], [-77.37351873998237, 34.72413438406473], [-77.37330700713758, 34.72422557617836], [-77.37318653820213, 34.724344981665865], [-77.37312599765806, 34.7243830056253], [-77.37297204390866, 34.724426141799434], [-77.37275693302638, 34.72455001851519], [-77.37261702553131, 34.72459389267512], [-77.37247837811867, 34.72465626609927], [-77.37244089811291, 34.72468003001609], [-77.37239807214547, 34.72468186254081], [-77.37219839351641, 34.72465755199047], [-77.37209956547713, 34.72460571416395], [-77.37205214253211, 34.72458434799269], [-77.37198224623111, 34.72455030646252], [-77.37189589706378, 34.724507462560695], [-77.37183908207847, 34.72447162379627], [-77.3717518539755, 34.72442118568467], [-77.37159211214525, 34.724290967089985], [-77.3713916219604, 34.72414407939063], [-77.3712433993061, 34.724023963932666], [-77.37113370579979, 34.72393582652538], [-77.37110783535827, 34.72389636586415], [-77.37103815519446, 34.72378765605869], [-77.3709871928759, 34.72371226366956], [-77.37114781205949, 34.723308998720135], [-77.37110391690433, 34.72320883073655], [-77.37110292321931, 34.72299114863115], [-77.37122759572006, 34.72245906704953], [-77.37123083308292, 34.72221660411351], [-77.37121912373769, 34.721817832773276], [-77.37176672851149, 34.7216257739385], [-77.37227439985867, 34.721476346683914], [-77.37288465106354, 34.72101453121055], [-77.37305529972792, 34.72089182975363], [-77.37298589610675, 34.72031727611601], [-77.37289653371207, 34.720038109957294], [-77.37254660898844, 34.71986683908221], [-77.37229295956368, 34.719812266609665], [-77.37217518439776, 34.719758441607475], [-77.37190510030257, 34.71968697616114], [-77.37181549109562, 34.71964101319248], [-77.37160566051683, 34.71960774244407], [-77.371151205843, 34.719620118779936], [-77.37091291857932, 34.71954714179964], [-77.37018659472912, 34.7194357479941], [-77.37006677046742, 34.71940984076329], [-77.36992557039937, 34.71939571492319], [-77.36934936439081, 34.719550794334836], [-77.36872533306432, 34.71972640278363], [-77.36860846026627, 34.719743658720176], [-77.3676042782752, 34.71989192225277], [-77.36748280087893, 34.71988148865317], [-77.36724525814901, 34.720004256531055], [-77.366652757381, 34.720325283673134], [-77.36641004160191, 34.72064701137776], [-77.36617234498082, 34.72096208760884], [-77.36607561330469, 34.721090308711524], [-77.36582986513112, 34.72145051078667], [-77.36493494931631, 34.722106854023295], [-77.36548575591148, 34.72263604113158], [-77.36596836624952, 34.722563888688114], [-77.36621178899573, 34.72248726334369], [-77.36674202823596, 34.72243379468288], [-77.36688933888149, 34.72264365738668], [-77.3672687713943, 34.72276101426582], [-77.36762055755345, 34.72286944744413], [-77.36781572859606, 34.72286056806878], [-77.36807963422147, 34.722865610817706], [-77.36865613394048, 34.72286101102276], [-77.36899695347964, 34.722916873745945], [-77.36906646890847, 34.72300140942897], [-77.36923227713176, 34.7232061394611], [-77.36935372980096, 34.72335610067087], [-77.36942749763142, 34.72343919405615], [-77.36942651514474, 34.72345091580468], [-77.36943558763741, 34.72346870425528], [-77.36951775069222, 34.72377496004668], [-77.36951872237601, 34.723914050587354], [-77.36954006856082, 34.724152044790245], [-77.36953818825641, 34.72415762990712], [-77.36953328335916, 34.72416370299561], [-77.36941066251333, 34.72436373446148], [-77.36920075431365, 34.72441317159792], [-77.36916335948874, 34.724406721764325], [-77.36910158813899, 34.72440902308557], [-77.36859912516557, 34.7244819067447], [-77.36854676419675, 34.724468060274475], [-77.36842859373219, 34.724451015635175], [-77.36798138757666, 34.724352918700724], [-77.3678518243178, 34.724268485477545], [-77.36738424516655, 34.724347225824786], [-77.36689764128243, 34.724371144224946], [-77.36677686587709, 34.72437679894666], [-77.36662173531562, 34.7244265853035], [-77.36617608000022, 34.724383651405994], [-77.36574336315884, 34.72462493516394], [-77.3654261469785, 34.7249043269289], [-77.3653807565838, 34.724941877455194], [-77.3648947088482, 34.724967064482506], [-77.36481234460476, 34.72495599948677], [-77.36461484147486, 34.72490154017613], [-77.36450528725426, 34.724872480536625], [-77.36444487923384, 34.72485481454326], [-77.36429281267559, 34.724682912559764], [-77.36428518804327, 34.724647604058646], [-77.36428185235287, 34.72463351387494], [-77.3642725115744, 34.72459827559459], [-77.36421281264184, 34.72415560816776], [-77.36411829699132, 34.72398754455622], [-77.36400468418351, 34.72372283641251], [-77.36401543156092, 34.72369533222489], [-77.36399477794367, 34.723646803106675], [-77.36396492063179, 34.7233170868567], [-77.36382455706834, 34.72323416097577], [-77.36414328373644, 34.72239135393286], [-77.36312729957842, 34.72250962777293], [-77.36195881684856, 34.72254852403528], [-77.3619193376215, 34.72254538776493], [-77.36181488604325, 34.72260608987176], [-77.36067263380045, 34.72271456145623], [-77.35995441424497, 34.72332546813496], [-77.35955964305694, 34.723819908465615], [-77.35979945426598, 34.724156861400196], [-77.36024670456987, 34.72418163313394], [-77.36033598385386, 34.7245324918538], [-77.36034990057033, 34.724686159719674], [-77.36047686696267, 34.72481832026885], [-77.36052891899335, 34.724905268916515], [-77.36053533051259, 34.72497045070844], [-77.36050033857336, 34.72508554083015], [-77.36031443972648, 34.72517841636656], [-77.36024951801515, 34.72520318887907], [-77.36018678986929, 34.72519594612294], [-77.36001226771806, 34.7251757953763], [-77.35997140423072, 34.72512984981165], [-77.35970672318295, 34.725018177926515], [-77.35970633881374, 34.72501695765568], [-77.35963314680194, 34.724784588200855], [-77.35954972864943, 34.72451975137941], [-77.35926277139295, 34.72456979582793], [-77.3589681926057, 34.72446025408888], [-77.35867793419226, 34.72474735697488], [-77.35865060494622, 34.72491950880982], [-77.35816227187756, 34.725173543061466], [-77.35779952290909, 34.72524552014257], [-77.35752253441905, 34.7253144664746], [-77.35721804716972, 34.72535455978227], [-77.35720358518297, 34.72535573885006], [-77.3568560608013, 34.72563306212419], [-77.35682527619875, 34.72565752204923], [-77.35682484254613, 34.72565839269984], [-77.35682225693937, 34.72566386492835], [-77.35662379145383, 34.72611848396841], [-77.35637042088828, 34.72618876822591], [-77.35635761119005, 34.72620175911135], [-77.35616189861057, 34.726167123569056], [-77.35610284405102, 34.72607913336289], [-77.35606422397952, 34.72600570206052], [-77.35608931895027, 34.725828750169455], [-77.35608934726555, 34.725758560637644], [-77.35614051271689, 34.7253951503623], [-77.35612935603791, 34.72526568351161], [-77.35615294284713, 34.725063077875774], [-77.35615818659439, 34.72501803354829], [-77.35616078217424, 34.724985344300926], [-77.35617695329711, 34.7247717645662], [-77.35627148608941, 34.72450595822069], [-77.35618082035477, 34.72428384831462], [-77.35611033968148, 34.72384151558737], [-77.35564044977757, 34.723547219159805], [-77.35544798260453, 34.72356268917528], [-77.35471633524556, 34.72351013721696], [-77.35459541458083, 34.72343020201725], [-77.35424292724241, 34.723370699621526], [-77.35318282166624, 34.723762004274626], [-77.35250486386934, 34.72478847350681], [-77.3527449825915, 34.724853799400634], [-77.35286441159772, 34.72485837344005], [-77.35312151972933, 34.724930029176946], [-77.35354549285529, 34.72502635829203], [-77.35385391379653, 34.7255750835081], [-77.353854397636, 34.725577120083386], [-77.35385495158339, 34.725577919222445], [-77.35385828079347, 34.725582852934714], [-77.35387154849424, 34.72595812994436], [-77.35377581036364, 34.7260761657287], [-77.35367733160206, 34.72618310673617], [-77.35342455382316, 34.72647503622409], [-77.35339818529576, 34.72661538456532], [-77.35337914180612, 34.726731148142946], [-77.35331808534892, 34.72711376225336], [-77.35325007151388, 34.72759693141087], [-77.35324541286457, 34.7276111203097], [-77.35323980509548, 34.72762674716306], [-77.35306145598732, 34.728123753228886], [-77.35303778632486, 34.72817636120389], [-77.35282416979011, 34.72849606110084], [-77.35259350013791, 34.72867536697434], [-77.35230040561986, 34.728862139148234], [-77.3518885504921, 34.728772124996546], [-77.35178137843397, 34.72874868612036], [-77.3517376168944, 34.72873797120005], [-77.35162889595993, 34.72871349297841], [-77.35099303295722, 34.72856673355088], [-77.35061499099768, 34.72847947859218], [-77.34939475433652, 34.72911437650945], [-77.3502346569766, 34.72978884688178], [-77.35029726512586, 34.72989033692711], [-77.350375542525, 34.729954539599], [-77.35079328326009, 34.730297170715055], [-77.35088459020474, 34.730372059368975], [-77.35119017877899, 34.73062269947629], [-77.35130829864625, 34.73068939246522], [-77.35155703082323, 34.730767151939496], [-77.35170558555356, 34.7309100395445], [-77.35190598203987, 34.73087377716263], [-77.35204266263108, 34.730912883315625], [-77.35211061796802, 34.73093486359718], [-77.3522519588455, 34.73109077563854], [-77.3522807715569, 34.731123917494635], [-77.35231609372545, 34.731150352388184], [-77.3522472046049, 34.73154393807271], [-77.3522159046131, 34.73165148490876], [-77.35217075899628, 34.731746630116355], [-77.35198143983385, 34.73202213023758], [-77.35155104429202, 34.732717498370306], [-77.35132173992862, 34.73354741053588], [-77.35136497432387, 34.73371779817749], [-77.35109230535511, 34.73400911207531], [-77.35078433572117, 34.734347786652876], [-77.35060787108446, 34.7346891042995], [-77.35056245007262, 34.73478945672083], [-77.35055519293948, 34.734803693286125], [-77.350542800405, 34.734825989190114], [-77.35030861402996, 34.735202819618195], [-77.35020563217827, 34.73533904476928], [-77.35008455147931, 34.73545976678163], [-77.34997470857097, 34.735545242078835], [-77.34966180238015, 34.735884198229584], [-77.34964898101423, 34.735894911938594], [-77.34963927662626, 34.7359041446634], [-77.34964025862587, 34.735914401604596], [-77.34941658875455, 34.7363272795051], [-77.34907916082835, 34.73634597782289], [-77.34894361782932, 34.73629477320184], [-77.3485468982366, 34.736194989313454], [-77.34838494440164, 34.73615626449769], [-77.34831714944056, 34.73614370458606], [-77.3481402228272, 34.73610984183683], [-77.34781830057474, 34.73604519325886], [-77.34752416888836, 34.735965247215255], [-77.34727526189731, 34.735852873564205], [-77.34624498380595, 34.73616073601961], [-77.34522924430652, 34.73580850079743], [-77.34560614786055, 34.73665207105534], [-77.34581637415316, 34.73675138657667], [-77.34603842063544, 34.73710796822731], [-77.3461904538338, 34.73735211189246], [-77.34625378304335, 34.73773068717652], [-77.34663388880878, 34.73806041232932], [-77.34670487975882, 34.738172113981065], [-77.34674604067698, 34.73825064572871], [-77.34706246518522, 34.738646744261985], [-77.34708654522875, 34.738666938123274], [-77.34753415239754, 34.739084710605354], [-77.34755021561607, 34.73909869304767], [-77.34756955345223, 34.73911241685834], [-77.34791309128161, 34.73960796603636], [-77.3485094502431, 34.73985080702461], [-77.34857612373781, 34.739886397344065], [-77.34867602529727, 34.73993535877212], [-77.34854065640832, 34.74001911684299], [-77.34845053662428, 34.74005358987751], [-77.34799516227238, 34.740516158300835], [-77.34794851898367, 34.74076328414363], [-77.3479472341355, 34.74076642424353], [-77.34794714669593, 34.74076983119565], [-77.34794413219521, 34.741010538991574], [-77.34793071462289, 34.741171163791314], [-77.34790602910971, 34.741371680735305], [-77.34788331168109, 34.741506262935324], [-77.3477954530923, 34.74191199208266], [-77.34777096687019, 34.742009055965596], [-77.34775186716995, 34.7420970871876], [-77.34772572876778, 34.742488498550216], [-77.34772495202022, 34.74250274842429], [-77.34772243575635, 34.742513908955], [-77.34770505491731, 34.74261947693466], [-77.34765257729441, 34.74296182178898], [-77.34764478624886, 34.7430011259479], [-77.34763737573296, 34.74304850057326], [-77.34751632333078, 34.74385498184146], [-77.34749557468189, 34.74399635487586], [-77.3474930844038, 34.744197224929025], [-77.34748186669296, 34.74448561424309], [-77.34748870297712, 34.74466459602179], [-77.34751086627844, 34.744851259820415], [-77.34750345218089, 34.74497003183296], [-77.34724767341046, 34.74522441513159], [-77.34721841259748, 34.74523044325288], [-77.34695452754758, 34.745202581892855], [-77.3467535086645, 34.74523000006241], [-77.34632335365187, 34.7453133787506], [-77.34594855361804, 34.745381976939335], [-77.34569153436699, 34.74542638702695], [-77.34540968776864, 34.745475086201864], [-77.34514351574313, 34.745293781741644], [-77.34513484226696, 34.745292270853774], [-77.34513225386112, 34.74528975616094], [-77.34468853132815, 34.74524131436942], [-77.34457979023642, 34.745129667044], [-77.3440399051793, 34.74496753585649], [-77.34427428037723, 34.74541301545456], [-77.34436792017738, 34.745487868414266], [-77.34444361054037, 34.745598296328666], [-77.34454035098871, 34.74574944344786], [-77.34460769388451, 34.745854658913714], [-77.34470942388846, 34.74601360082638], [-77.34475107775174, 34.74607867964902], [-77.34486679976916, 34.74620326506443], [-77.34494838488943, 34.74622401402274], [-77.34520815206037, 34.746259669602914], [-77.34538780532516, 34.74628027105488], [-77.34544288357817, 34.74628209160756], [-77.34555649865412, 34.746311215189486], [-77.3459879011347, 34.74646783088929], [-77.34611835563342, 34.746506821665974], [-77.34653173337499, 34.74656547814821], [-77.34655042982772, 34.74656872603928], [-77.34655734925977, 34.74656949851443], [-77.34700978110871, 34.74660965066353], [-77.34714017618445, 34.74662512206649], [-77.34741429317069, 34.746680542189004], [-77.34770695815112, 34.74673596715333], [-77.34783243985342, 34.7467653603507], [-77.34795989504354, 34.74685692431164], [-77.34812393792521, 34.74693537148277], [-77.34821935673187, 34.74703398866047], [-77.34840464444693, 34.747113680264974], [-77.34868256294305, 34.747501329905816], [-77.3488132798721, 34.74758779611698], [-77.3489914167437, 34.74769015644469], [-77.34916992303943, 34.74788555568144], [-77.34926283359272, 34.74803044523107], [-77.34938060513134, 34.74812413675858], [-77.34944884649624, 34.748482945221056], [-77.34939718039338, 34.7486092418438], [-77.34944039343877, 34.748682276550895], [-77.34912272199442, 34.74913427923123], [-77.34921773864569, 34.749247703553706], [-77.34918981324213, 34.749530008111854], [-77.34918600070985, 34.74961297697305], [-77.34916000226457, 34.74968629801412], [-77.34901598030197, 34.75001428320489], [-77.34850161967123, 34.75019262040278], [-77.34849937729085, 34.75019342571964], [-77.34849776364497, 34.75019348453614], [-77.34796254829389, 34.75021299193179], [-77.34789878297184, 34.750198868413285], [-77.34750691812782, 34.75016919225489], [-77.3473185857082, 34.750134110669364], [-77.34710758903711, 34.75008209729992], [-77.34685364791125, 34.75001354881749], [-77.3467620218243, 34.74998802101304], [-77.34672818421065, 34.74997967878713], [-77.34663273170267, 34.74996326948871], [-77.34647678857704, 34.74993889941414], [-77.34637333528384, 34.74999885393232], [-77.34628447488778, 34.75014760313779], [-77.34623106294866, 34.750361965313026], [-77.3461682889693, 34.75051435969223], [-77.34613034545227, 34.750649345923605], [-77.34605634461724, 34.75101709366502], [-77.34600080657171, 34.75117287561323], [-77.345808902449, 34.75120660071001], [-77.34531412784091, 34.7511189062737], [-77.34535923309278, 34.75103238995235], [-77.34523892829945, 34.75110663379616], [-77.34520343125442, 34.75110476843538], [-77.34464531558942, 34.75108800962543], [-77.34418957804243, 34.75114346148769], [-77.34402567899947, 34.75115893101096], [-77.34383783243908, 34.751171549838446], [-77.34364242369458, 34.75117002438914], [-77.34346585843588, 34.75102402451951], [-77.34340501380467, 34.750958406964926], [-77.3433548238194, 34.750900271666325], [-77.3430199757573, 34.75049708004007], [-77.34300421831547, 34.75047825431481], [-77.34298946990779, 34.750463005036764], [-77.34250526360074, 34.75020698058417], [-77.34239005726404, 34.75016216831075], [-77.34222124753877, 34.75008098938242], [-77.34197471532283, 34.749971378976326], [-77.34175537625767, 34.749861861429004], [-77.3415768943511, 34.7498067543832], [-77.34143798447049, 34.74975705738983], [-77.34138487367576, 34.74975258561268], [-77.34127723258113, 34.749723077844976], [-77.34103385047237, 34.74962833021361], [-77.3409770887992, 34.7492818228591], [-77.34055695708825, 34.74954141162653], [-77.34029509877426, 34.74956728458111], [-77.34013162030807, 34.74953374502033], [-77.33978483332554, 34.7494956260405], [-77.33983049143643, 34.74976528478861], [-77.33987567037735, 34.74991527646469], [-77.33979695004422, 34.75014469392], [-77.33978907136316, 34.750414525573724], [-77.33978396635925, 34.750589377664994], [-77.33973893685211, 34.75073162667044], [-77.3395284252567, 34.75093764025968], [-77.33939362700615, 34.75106401097851], [-77.33924193346502, 34.751129680222014], [-77.33914201657363, 34.75108296435685], [-77.33866028442617, 34.75106986967116], [-77.3386363561738, 34.7510599590915], [-77.33834606076509, 34.75090664329643], [-77.33814279303883, 34.750789348196164], [-77.3379140798932, 34.750671617538046], [-77.33777759251556, 34.750555411006815], [-77.33734828226373, 34.750261818217794], [-77.33724463384483, 34.75017687892812], [-77.33713511004869, 34.75013442326994], [-77.33665842918695, 34.74983928682669], [-77.33662399211019, 34.749832009813574], [-77.33637362583845, 34.74966411034817], [-77.33637216245849, 34.74966353614566], [-77.33610404318107, 34.749559982262674], [-77.33601735589218, 34.74954388020245], [-77.33578709651513, 34.749501109381654], [-77.33553570451238, 34.74945441329081], [-77.3350487943269, 34.749500257081465], [-77.33493155218721, 34.74947203286784], [-77.3346639899253, 34.74942664844902], [-77.33434669931749, 34.749423266170275], [-77.33413742465198, 34.74941265683971], [-77.33377928411446, 34.749314519660004], [-77.33299944880494, 34.74949926192117], [-77.33303060918212, 34.7489042265435], [-77.33275793573338, 34.748706733620836], [-77.33239659971103, 34.74838619715469], [-77.33209529978353, 34.74805768509104], [-77.33194747345524, 34.74794321845172], [-77.33182388324911, 34.747798758358634], [-77.3316327933289, 34.74763370771238], [-77.33144585437962, 34.74754059793237], [-77.33114547863963, 34.747213127151724], [-77.33101595850343, 34.747082838566065], [-77.33089935938524, 34.746858074469024], [-77.33085503082249, 34.746812430637576], [-77.33081796263455, 34.746770646597625], [-77.33065428026366, 34.74667088313835], [-77.33053897475344, 34.74666128285505], [-77.33036638217423, 34.746630951839265], [-77.3299786764697, 34.74655140896626], [-77.32979758395005, 34.74652702440559], [-77.32965638246722, 34.746551550011674], [-77.32880357976643, 34.74678680389049], [-77.32850730548267, 34.74684421877675], [-77.32827219104985, 34.74682741959886], [-77.32755708988078, 34.746958920532904], [-77.3272517180381, 34.747042075153274], [-77.32676571076946, 34.747197273292294], [-77.32659234089911, 34.74724958915267], [-77.32643440269719, 34.74724075523812], [-77.32599593986448, 34.7472405497419], [-77.32574201253263, 34.74719598120075], [-77.32545168852351, 34.74705220491017], [-77.32497223829252, 34.7472217046614], [-77.32477851641931, 34.7473071207656], [-77.32453032878419, 34.747468474191045], [-77.32420739764363, 34.747676455581306], [-77.32411081102941, 34.74773509039208], [-77.32404903484189, 34.7477556158846], [-77.32396929981164, 34.74777043735659], [-77.32373609253034, 34.74780176724983], [-77.32361890932467, 34.74775707483793], [-77.32352997789813, 34.74771402835912], [-77.32347094052746, 34.74768361355685], [-77.32321916628146, 34.747558835430304], [-77.32253610492175, 34.74741803903028], [-77.32236537979028, 34.74736555911762], [-77.32227714053985, 34.74738673420791], [-77.32115157884081, 34.74757169481663], [-77.32110643000088, 34.747574822097434], [-77.32093957245229, 34.7474780778203], [-77.32053874473782, 34.74725455053111], [-77.32005883866007, 34.74705750665838], [-77.31995104348495, 34.746918088380944], [-77.31979288182791, 34.74681905419406], [-77.319649584011, 34.74675570696735], [-77.3195700122261, 34.746678660097004], [-77.31936879580064, 34.74657743537146], [-77.31911307840923, 34.74619019636863], [-77.31853015086585, 34.746433847113835], [-77.31847711255837, 34.74529530607589], [-77.318320640711, 34.745071234523444], [-77.31832787897515, 34.74501297952702], [-77.31827311919143, 34.74495927731999], [-77.31796021626576, 34.74512059163909], [-77.31701420161373, 34.746552455114475], [-77.31654408537946, 34.74726394505752], [-77.31683634127087, 34.74773567051464], [-77.3173217275926, 34.748229366417036], [-77.31753069797762, 34.7487783496729], [-77.31808214225379, 34.749002790832776], [-77.31829137495947, 34.74901461995523], [-77.3183552807821, 34.74901823246253], [-77.3191244148581, 34.74912979671339], [-77.31925407371119, 34.74932966059611], [-77.31932776548325, 34.749367593080926], [-77.31937148162035, 34.74942023504785], [-77.31953966219677, 34.74959881889973], [-77.31963595129747, 34.749764723573705], [-77.31977672522139, 34.750086443214364], [-77.31983193137205, 34.75016236402018], [-77.32023941265116, 34.7505552149864], [-77.32031816476248, 34.7505768308569], [-77.3204355780046, 34.75062993425665], [-77.32028966003944, 34.75073283507095], [-77.3201622492468, 34.75082045601054], [-77.31945597953154, 34.751270839267654], [-77.31901364417041, 34.75179939817187], [-77.3189030610528, 34.75205771187352], [-77.31883209784462, 34.75250716611072], [-77.31875933232818, 34.75280895038276], [-77.31876694544057, 34.75295132790946], [-77.3187061674424, 34.753160156087155], [-77.31854281108667, 34.75332596339283], [-77.31811819968691, 34.75372795403737], [-77.31800055591731, 34.75381169917319], [-77.31791275740277, 34.753899603432515], [-77.31730341076845, 34.75447075007435], [-77.31708038278964, 34.75498830337217], [-77.31681263981548, 34.75531273556303], [-77.31629219658512, 34.755885600177635], [-77.31604881258342, 34.755912696262676], [-77.31623602630016, 34.756078638468544], [-77.3167318552276, 34.75651811722267], [-77.31694558943917, 34.75598148214934], [-77.3172148873947, 34.755669270999846], [-77.31736750074424, 34.75543635124333], [-77.3177614849424, 34.75495396065046], [-77.31781562504702, 34.75492475825798], [-77.31785693435926, 34.75488197101738], [-77.31795251300292, 34.75475950790638], [-77.31847295542352, 34.7542304123519], [-77.3188977135228, 34.75376472304819], [-77.31913433773234, 34.753539664197305], [-77.31924252813735, 34.75323014101227], [-77.31933980982274, 34.75290513640295], [-77.31939306360462, 34.75272216300256], [-77.31944026749495, 34.75253386911218], [-77.3195956704204, 34.75220705341468], [-77.31987703564053, 34.75180083652355], [-77.31994471594992, 34.75170403788065], [-77.3199852942392, 34.75166633045019], [-77.32065344201654, 34.751191264040635], [-77.32076065283995, 34.751150299831934], [-77.32123002091458, 34.751058259803244], [-77.32128899927032, 34.75106582646562], [-77.3213788338723, 34.750988105338514], [-77.32141411874842, 34.750916760673235], [-77.32152863452276, 34.75072390551026], [-77.32153015554903, 34.75055541024426], [-77.32152081655839, 34.75048129441717], [-77.32152765421975, 34.75043539921863], [-77.3215010894873, 34.750336749209005], [-77.32138182272222, 34.75015339149641], [-77.32102166100096, 34.750104709211186], [-77.32097258704188, 34.75009420537746], [-77.3209559065418, 34.75008666115801], [-77.32041862363154, 34.74993918780636], [-77.32028717831652, 34.74981246193781], [-77.32019662784019, 34.74968793477829], [-77.32005796234287, 34.749594546791315], [-77.31996474890644, 34.749440134113456], [-77.3198973079146, 34.74932393429768], [-77.31982860016392, 34.74925097643872], [-77.31967531137785, 34.74891134457896], [-77.32010598886879, 34.74872562147485], [-77.32054904571521, 34.748408861270015], [-77.32084239425441, 34.74848247142067], [-77.32155569416814, 34.74802419336205], [-77.32159707726373, 34.748017460188855], [-77.32222393386549, 34.74785182481365], [-77.32247406708272, 34.74791390191561], [-77.32268245999605, 34.74797138154841], [-77.322774991612, 34.74801678278328], [-77.32311559225701, 34.74812989497603], [-77.32331864612893, 34.74820719758495], [-77.32337375414919, 34.748228215164886], [-77.32375725376032, 34.748225487683236], [-77.32391074031754, 34.748231080806086], [-77.32404195767357, 34.74818648535458], [-77.32446246610775, 34.74804676901614], [-77.32458502901652, 34.74797236478298], [-77.3249051121677, 34.74783930558994], [-77.32526502051844, 34.747694022775185], [-77.32551139575409, 34.7476995640169], [-77.32584539295607, 34.747758186174394], [-77.32603591917187, 34.74775827546912], [-77.32688119649046, 34.74763674091875], [-77.327101737725, 34.74755779214571], [-77.32736806606918, 34.747429816826205], [-77.32755307975788, 34.74738023197655], [-77.32776812399116, 34.747326177506324], [-77.32797964491682, 34.7473334176887], [-77.32812039192063, 34.74733823515003], [-77.32836094266291, 34.74734752553855], [-77.32870309476198, 34.74728440203343], [-77.32897077887716, 34.74731035122531], [-77.32936113020934, 34.74728093020215], [-77.32958991392884, 34.74724119223857], [-77.32975562285796, 34.74726350536031], [-77.32999498767049, 34.74737080325143], [-77.3301209001184, 34.747475173508235], [-77.33028203633086, 34.74764706458302], [-77.33058129038604, 34.747951943131355], [-77.33070528328696, 34.74810993745932], [-77.33084470797138, 34.748229087227216], [-77.3311291466688, 34.74857233849008], [-77.3313152150947, 34.74865197294939], [-77.33149670909938, 34.748923977635876], [-77.33161377866243, 34.74898802415103], [-77.33160133214714, 34.74910012848177], [-77.33159102711534, 34.74925707740925], [-77.33164495348744, 34.749752319307916], [-77.33164689926802, 34.75006862099596], [-77.33193079932096, 34.75032082782443], [-77.33225496498301, 34.75043659689726], [-77.33278022534408, 34.75045607694623], [-77.33296810168365, 34.750477378731716], [-77.33327931441296, 34.75033224887768], [-77.33350855361947, 34.75024568849789], [-77.33371756414294, 34.750129591108795], [-77.333910064114, 34.75003532408655], [-77.33418214515615, 34.749989259809176], [-77.33440659311431, 34.74999399778467], [-77.3345386778611, 34.749953978076206], [-77.33478580638076, 34.749973346485135], [-77.3351830739875, 34.74988661430682], [-77.33541538853777, 34.749868268557115], [-77.33559717864067, 34.749866929772445], [-77.33571850340925, 34.74985589007252], [-77.33587893771738, 34.74986485449196], [-77.33600842101129, 34.74988890585894], [-77.33605689498388, 34.74990762763133], [-77.33611392517658, 34.74994367584043], [-77.3361993558958, 34.74999517108314], [-77.33626162619852, 34.75004820713248], [-77.3363249023995, 34.75009571881139], [-77.33649254044876, 34.75028418872503], [-77.33661678923116, 34.750362107311474], [-77.33675707531171, 34.75055173971961], [-77.336946344072, 34.75078376997985], [-77.33697398298582, 34.75080050911884], [-77.33726377601334, 34.750950463043374], [-77.33748343873128, 34.75099684738609], [-77.33790102239243, 34.75116078103581], [-77.33796083743141, 34.75120282802371], [-77.33802403318595, 34.7511978929177], [-77.33813585069116, 34.75122626899268], [-77.33856335229467, 34.751403331179816], [-77.33871981574137, 34.75140758424797], [-77.33910834896949, 34.7515892418801], [-77.33969821901458, 34.75133388282306], [-77.3398128490449, 34.751226419415545], [-77.34025173388015, 34.750838456759325], [-77.34032727997597, 34.75061457205192], [-77.3406708573105, 34.75033542770298], [-77.34128173014557, 34.7502260602937], [-77.34132500291568, 34.7502219019051], [-77.34183468419451, 34.750453182837674], [-77.34195023928785, 34.75050035915516], [-77.34211646131575, 34.75051420628825], [-77.3422468768867, 34.750564850327486], [-77.34232998606821, 34.750602528287835], [-77.34237506289188, 34.75065497111467], [-77.34249196779176, 34.75077492493429], [-77.34254177913937, 34.75083384215403], [-77.34267566041251, 34.75099341956862], [-77.34282522242796, 34.75116719163242], [-77.34294821698705, 34.75130965681507], [-77.34305825178393, 34.75142832323061], [-77.34316652149954, 34.75153596640928], [-77.34328727445444, 34.75163850986395], [-77.34352026977993, 34.75165812608654], [-77.34381062037359, 34.7518989352239], [-77.34431356073128, 34.75159301038039], [-77.34450513010697, 34.75157039593468], [-77.34474017615257, 34.7515084266784], [-77.34483268678687, 34.75147390030208], [-77.34490167221526, 34.75147573114682], [-77.34512663870383, 34.75149303876353], [-77.34550995215584, 34.75157942208295], [-77.3456310662273, 34.751611716904954], [-77.3456856331102, 34.75163079936882], [-77.34584210706032, 34.75167057238639], [-77.3463166102751, 34.75152084849619], [-77.34636068227836, 34.75146272344603], [-77.34637458255116, 34.75143414761402], [-77.34655001374759, 34.75102112820629], [-77.34664340200094, 34.75093656166126], [-77.34717598974879, 34.7506248536983], [-77.34751795783322, 34.750602050914594], [-77.34777766639769, 34.750615700735544], [-77.34795686286854, 34.75061155125379], [-77.3483941193949, 34.75055568857088], [-77.3487755794979, 34.750439589713224], [-77.3490555438762, 34.75034088830066], [-77.3494249392615, 34.750067572580534], [-77.34953492468584, 34.749835726089906], [-77.34964519826343, 34.74954997166711], [-77.34991432606643, 34.74910618116402], [-77.34990909042322, 34.749026383210996], [-77.34998273997888, 34.74895590047238], [-77.35011170236947, 34.748767426491696], [-77.35027975310672, 34.748488143290906], [-77.35031134962146, 34.74840664781689], [-77.35025834180675, 34.74826269368366], [-77.35023563270755, 34.74807068404401], [-77.35019622302488, 34.748012224611415], [-77.34997578873003, 34.74767322034676], [-77.34990053687592, 34.74756541703395], [-77.34988719102583, 34.747550272353585], [-77.34987059933128, 34.747535569075346], [-77.34939533680334, 34.74714735638053], [-77.34939098778027, 34.74714350224549], [-77.34938649095444, 34.74714015227909], [-77.349325054205, 34.74709674993108], [-77.34888473495961, 34.74680548898172], [-77.34885653262957, 34.746766151466375], [-77.34879968988349, 34.74674170359816], [-77.34836194662299, 34.74654322705318], [-77.34823751489068, 34.74645383514796], [-77.34790804532406, 34.746376659242436], [-77.34785089461684, 34.74635698146332], [-77.34781881141262, 34.74635100250849], [-77.34774329616579, 34.746333735505566], [-77.34745558644647, 34.746266807341975], [-77.34727542036322, 34.74615966299991], [-77.34689938700257, 34.74622437034893], [-77.34666388891019, 34.74620283862747], [-77.34653162447815, 34.746189005001526], [-77.34637300363158, 34.74617321361019], [-77.3462157561972, 34.7461214473533], [-77.34614181118562, 34.74609460279852], [-77.3461082164778, 34.74605377233176], [-77.34595653689095, 34.74602734133842], [-77.34579361532705, 34.745968194636816], [-77.34577607782595, 34.74586746170507], [-77.34597127383569, 34.74583157004896], [-77.3461953439485, 34.74575392521518], [-77.34633982306173, 34.74572862682197], [-77.34667766430114, 34.745682511888944], [-77.3468135256505, 34.74568785473268], [-77.34706243019542, 34.74573053416691], [-77.34711866593122, 34.74573754564077], [-77.34738830205157, 34.74577116347167], [-77.34772757601363, 34.74568152987521], [-77.34786917286853, 34.745407234476204], [-77.34791940045201, 34.74512173333567], [-77.34803241573306, 34.744897458670124], [-77.34800140672968, 34.74464757087337], [-77.34799194024272, 34.744415632915604], [-77.34795779425508, 34.744303832573635], [-77.34796193660318, 34.74397432611029], [-77.34796460889115, 34.74393200412287], [-77.347969055092, 34.743900985162455], [-77.34800322185308, 34.743654763979464], [-77.34803204847535, 34.74345835085002], [-77.3480400221049, 34.74340522854296], [-77.34811328814651, 34.74293684667565], [-77.34813098993664, 34.742847544929504], [-77.34814572706892, 34.74268870649179], [-77.34814756652857, 34.742581132402876], [-77.34814990438932, 34.74244444349828], [-77.34815358431696, 34.74222928586017], [-77.34816065007367, 34.74217688260746], [-77.34815581610079, 34.74209878359511], [-77.34816137449258, 34.74195549091553], [-77.3482010858747, 34.74175159581985], [-77.3482224027031, 34.74165197977077], [-77.34832248975677, 34.741446005325585], [-77.34826631013223, 34.74130724386255], [-77.34829457573724, 34.741077646391616], [-77.34830899985877, 34.74096047727339], [-77.34831949884763, 34.74087214852646], [-77.34832113134311, 34.74078203593719], [-77.34834108298469, 34.74071238558903], [-77.34841517431866, 34.74054621781406], [-77.3488575308485, 34.740397833685], [-77.3489347657526, 34.740368289434045], [-77.34896315198927, 34.740350725749806], [-77.34949078457672, 34.739823561281746], [-77.34922946723921, 34.739434036540175], [-77.34918964644048, 34.73941452049675], [-77.3487105072881, 34.7391587559599], [-77.34857100932558, 34.739101951542985], [-77.3484906502963, 34.738986034611855], [-77.3480777171538, 34.73869298133456], [-77.34773470900944, 34.73839440533065], [-77.34760197172639, 34.738270515482434], [-77.34746126460041, 34.73815251651866], [-77.34727373765915, 34.73791956887932], [-77.34720464235748, 34.73778774055679], [-77.34687164888118, 34.737263787555655], [-77.34686889042396, 34.737259034228565], [-77.3468683232307, 34.737258044371835], [-77.34686745757662, 34.737256508000904], [-77.34661397891752, 34.73680662893728], [-77.34715044995689, 34.736282474062925], [-77.34718909827646, 34.73626848785426], [-77.34752404530218, 34.73635952797654], [-77.34771212639265, 34.73641064884755], [-77.34792198494421, 34.7364476430253], [-77.34799704406497, 34.736460696358215], [-77.34815674376327, 34.73648757937512], [-77.34828195232363, 34.73651077591403], [-77.34845998618198, 34.73655334562759], [-77.34871759368227, 34.736624078826324], [-77.34885000229238, 34.73661701745942], [-77.34900137385233, 34.73659766550273], [-77.34928250737802, 34.736583762234964], [-77.34944981460403, 34.736613925307076], [-77.34975598156335, 34.736375509681125], [-77.34990905782665, 34.73612534248461], [-77.34991825818325, 34.73610955134777], [-77.34996256854681, 34.73606068178576], [-77.35013777172699, 34.735835737502505], [-77.35021210405827, 34.73575557643998], [-77.35033606108772, 34.735624805892876], [-77.3505209739804, 34.735390971981154], [-77.35059648932885, 34.735285406708115], [-77.35072120912228, 34.73508295310789], [-77.35078104757147, 34.73498313560263], [-77.35111598414966, 34.734726732320766], [-77.3511461603243, 34.73466836560718], [-77.3512440675421, 34.73456069692176], [-77.35171660222642, 34.73431729034284], [-77.35195441086984, 34.73417701331592], [-77.35203341417352, 34.734177956688896], [-77.35214281168372, 34.73409842567232], [-77.35214262649355, 34.73398958391267], [-77.35244901625283, 34.73356901661983], [-77.35246140227136, 34.73328064643991], [-77.35287973591839, 34.73263416967217], [-77.35297079755843, 34.732522636929474], [-77.35299948649208, 34.73248088835738], [-77.35311926604432, 34.732228450775054], [-77.35341487245631, 34.731572426665], [-77.35349613314328, 34.731475764920035], [-77.35341667478593, 34.73143271925829], [-77.3534870566285, 34.73098962860499], [-77.35348066486846, 34.73098414616252], [-77.35315898230849, 34.73084254548165], [-77.35296992365343, 34.73068072862509], [-77.35291437965495, 34.73063650875309], [-77.3527981580203, 34.73059680439163], [-77.35257219337736, 34.730505537652874], [-77.35243345962817, 34.73046588380683], [-77.35206894678811, 34.73037991354965], [-77.35187503834828, 34.730326641864934], [-77.35180736726528, 34.73030548630757], [-77.35172177587717, 34.7302571595897], [-77.3514868283481, 34.730157863292916], [-77.35135629463693, 34.73005080151803], [-77.35123881677075, 34.72995444784749], [-77.3511151691942, 34.72985303205634], [-77.35074279854382, 34.72954761579378], [-77.35044496752852, 34.729064821084144], [-77.35034438977138, 34.728984053726045], [-77.35049051226306, 34.728908025141926], [-77.35053578252486, 34.72891847386256], [-77.35064259851688, 34.7289431273709], [-77.35121876758672, 34.729181477890904], [-77.35161297564068, 34.72916709480539], [-77.35198446344634, 34.72924634234074], [-77.35212036617152, 34.72927631207205], [-77.35217707943535, 34.72928674588238], [-77.35228326352613, 34.72929329840561], [-77.35266192626139, 34.72925390656664], [-77.35278932260015, 34.729240653590416], [-77.3529175690813, 34.72911826781852], [-77.35296895883837, 34.729017713478626], [-77.35310733379384, 34.72874695597139], [-77.35321203205044, 34.72859046678122], [-77.35358447809007, 34.72814999759168], [-77.35366944567963, 34.7280402972632], [-77.35368899045761, 34.72798583171886], [-77.35399513123629, 34.72750820628669], [-77.35387380914175, 34.72713900491227], [-77.35388638055272, 34.72703575309941], [-77.35387822276739, 34.726877010874844], [-77.35411425068057, 34.72655982519325], [-77.35415709934522, 34.726511208203625], [-77.35419126403163, 34.72647544350709], [-77.35448822981527, 34.726141019977405], [-77.35455779794486, 34.7259688185045], [-77.35460253066327, 34.72578997099782], [-77.35464921858669, 34.725468885199504], [-77.35466444396029, 34.72534813259077], [-77.35455935361648, 34.725207969540065], [-77.35448105450749, 34.72509501319011], [-77.35440978708544, 34.724795034623114], [-77.35514336148424, 34.72458547078671], [-77.35537278150824, 34.72446896678636], [-77.35561299934506, 34.72484919014445], [-77.35562380023737, 34.72500426450972], [-77.35560317033985, 34.725214192939106], [-77.35556970186263, 34.72534251828857], [-77.35561831386488, 34.72568554310855], [-77.35562731386284, 34.72578998291496], [-77.3556227182639, 34.72582262384419], [-77.35562269926137, 34.725869728368956], [-77.35565173841687, 34.72616540291867], [-77.35570885388995, 34.72629818208408], [-77.35575362562051, 34.72648122657712], [-77.35597111002454, 34.72653277458938], [-77.3561279862187, 34.7265874265982], [-77.35648961987057, 34.72663783242889], [-77.35654086027729, 34.726632916501], [-77.35661958237495, 34.726603428861345], [-77.35716671754126, 34.726539839473446], [-77.3572093941747, 34.72654386621684], [-77.35772121408169, 34.7264525733715], [-77.35782293409532, 34.72634219960351], [-77.35826393458774, 34.725947373957126], [-77.35842340866489, 34.725798274746374], [-77.35860285346803, 34.725718510434746], [-77.35876520881024, 34.72574106877144], [-77.35879509187035, 34.725874439948136], [-77.35902901350306, 34.725932321038876], [-77.35913342674525, 34.7259535593691], [-77.35934888977894, 34.726080431211926], [-77.35946611260938, 34.726083868238305], [-77.3597893915466, 34.725756743162954], [-77.35980518845304, 34.72574607098887], [-77.35987509865097, 34.725726135281015], [-77.36035385468895, 34.72559396155782], [-77.36044096776227, 34.72557502713374], [-77.36080810420243, 34.72535820357098], [-77.36101026374034, 34.7250828582512], [-77.36106699111517, 34.724949368334585], [-77.36117832224265, 34.72467282317932], [-77.36114967217286, 34.72457632570655], [-77.36111522288411, 34.72435390486751], [-77.36157191843215, 34.72374210169454], [-77.36167850313868, 34.723576558447405], [-77.36259121666407, 34.72358565812987], [-77.3628046587595, 34.72362105325312], [-77.36313295263912, 34.723816546301975], [-77.36323572541382, 34.72387819519025], [-77.36332600422284, 34.72388786088767], [-77.36348456490894, 34.724080955438346], [-77.36355219811061, 34.72414004200621], [-77.36363040398219, 34.724235607594686], [-77.36366944851466, 34.72433292857063], [-77.36372818994437, 34.72456516509753], [-77.36376512186732, 34.724704491541985], [-77.36378982526705, 34.72480884038706], [-77.36384637709742, 34.72498526293642], [-77.36402663464713, 34.7251559591414], [-77.36408527477624, 34.72519567502], [-77.36413155128213, 34.72523844155443], [-77.36442518029145, 34.725328361988815], [-77.36468506867296, 34.725394461278704], [-77.36480791180026, 34.72542809707953], [-77.36524268036044, 34.72545772401536], [-77.36526555956819, 34.7254575610983], [-77.36534480485832, 34.725409203288095], [-77.36568380765533, 34.72521033846965], [-77.36600453186409, 34.724974667505265], [-77.36607938310617, 34.72492260162423], [-77.36632423092064, 34.724840341104894], [-77.36667499641366, 34.72472776924389], [-77.36726883803955, 34.724699965494224], [-77.3672820535693, 34.72469931590153], [-77.36729475241202, 34.724697177415926], [-77.36730721158808, 34.7247052967578], [-77.36770085639816, 34.72477891583079], [-77.36784324271989, 34.72482889293754], [-77.36813355719508, 34.72484018493961], [-77.36844660760816, 34.724813155299756], [-77.36877165847471, 34.724754906256905], [-77.36907477597742, 34.724711949415045], [-77.36936821570174, 34.72467855654413], [-77.3694016800964, 34.72467484501976], [-77.36973276311929, 34.72450798665019], [-77.36986140720772, 34.72444393556775], [-77.36994957655457, 34.72434223961828], [-77.37051719805152, 34.723868285623396], [-77.37066584732595, 34.7240741835075], [-77.37084369583971, 34.72421937539712], [-77.3708778573031, 34.724305284224094], [-77.37097700006535, 34.724347217829816], [-77.37143470419794, 34.724665265394144], [-77.37148076292833, 34.724674679528775], [-77.37165333319538, 34.72475492799746], [-77.37174346333086, 34.72480113159904], [-77.37175999830426, 34.724809184611686], [-77.37200808638804, 34.72492095945999], [-77.37211821000825, 34.72497872210673], [-77.37229102103018, 34.72505077493448], [-77.37242464032941, 34.72507420170854], [-77.37245484477802, 34.725077189761045], [-77.37262178384499, 34.725015768677416], [-77.37265878431747, 34.7249990301293], [-77.37281383208305, 34.72491592935833], [-77.37296304778893, 34.724825946380214], [-77.37315316283772, 34.724722506875054], [-77.37339308938166, 34.72456741623752], [-77.37350233062355, 34.724545181751644], [-77.3735378223847, 34.72446796284209], [-77.37380572441354, 34.72429296078733], [-77.37381565428606, 34.72428562572504], [-77.37392376613924, 34.72422652715571], [-77.37412486878802, 34.72411427468798], [-77.37414794311464, 34.724104269189965], [-77.37417471108981, 34.724083476792536], [-77.37446559988881, 34.72387538940446], [-77.37464019821026, 34.7237354783596], [-77.3747608357044, 34.72360982557287], [-77.37501806275051, 34.72338674315745], [-77.37506221853856, 34.723354322544964], [-77.3751064137196, 34.72333948856478], [-77.3754344739031, 34.723214785888416], [-77.37554914558763, 34.7231030825607], [-77.3755820841712, 34.722946808154816], [-77.37574085111079, 34.72257693344133], [-77.37575386751394, 34.722447744446455], [-77.37585667581996, 34.72240834583784], [-77.37595089753503, 34.72238152934844], [-77.37646845277072, 34.722138702474446], [-77.3765790221861, 34.72209302249337], [-77.3766820625246, 34.722071369946974], [-77.37692801039972, 34.721915425409875], [-77.37722315523837, 34.72184370217088], [-77.37732653970484, 34.721818888774045], [-77.3773983274629, 34.72181254775349], [-77.37766979561515, 34.721773241127295], [-77.37773346739002, 34.721762385579], [-77.37774878964078, 34.721761163721176], [-77.37807496449255, 34.72169030655063], [-77.37818313872383, 34.72172323320039], [-77.3783423930621, 34.721676306920024], [-77.37897750210671, 34.72152575032407], [-77.37940195903823, 34.72153638220454], [-77.37983102864499, 34.721425066302174], [-77.38053060139106, 34.721323898029304], [-77.38078489858744, 34.72118955526169], [-77.38117348830474, 34.72120589165077], [-77.38142287046686, 34.72120056214824], [-77.38158545058596, 34.72130119084683], [-77.38169347165075, 34.72137287870246], [-77.38175860286356, 34.72140836313302], [-77.38188277064653, 34.72141334331838], [-77.38201268519823, 34.72137759690011], [-77.3820778713962, 34.72135826203585], [-77.3821204399659, 34.72132120143357], [-77.38222083540272, 34.72121574729276], [-77.38229837023914, 34.721103888719355], [-77.38232638530285, 34.721016299255965], [-77.38240502648875, 34.72086162829114], [-77.38274284179866, 34.72055192820247], [-77.38282148977348, 34.72044821545183], [-77.38287193024264, 34.72041175617417], [-77.38318967803706, 34.72001790393543], [-77.383337182909, 34.719675865600095], [-77.38380523983136, 34.71961833635334], [-77.38421522147505, 34.719615295199915], [-77.38474930215588, 34.719715774334254], [-77.38504416200144, 34.71976788719937], [-77.3854364962423, 34.72011622633278], [-77.38555343357893, 34.72022262868161], [-77.38558571752347, 34.72025979535829], [-77.38567996721183, 34.72033033824469], [-77.38607339581338, 34.720640521239716], [-77.38642904198711, 34.72080093387723], [-77.38666035684932, 34.72082738929399], [-77.38684166943351, 34.7209179487578], [-77.38694020323567, 34.72096784281511], [-77.38701174703861, 34.72100438726472], [-77.38721026288391, 34.72114204750399], [-77.38739838910985, 34.72128955033072], [-77.38760487126315, 34.721563186784486], [-77.38769010731683, 34.721698330069266], [-77.38787894676832, 34.721981874487916], [-77.38813297224826, 34.72230717157421], [-77.38814980796423, 34.72232410126191], [-77.38821709632194, 34.7223366112909], [-77.38868443110269, 34.72243538736868], [-77.3887637292294, 34.72241803636435], [-77.38904718379283, 34.722387594146554], [-77.3894007067461, 34.722432455114806], [-77.38968917644426, 34.7225819900353], [-77.39048835094837, 34.7226795538215], [-77.39060044646246, 34.72271725444456], [-77.39074643725719, 34.72281447779497], [-77.39069402306777, 34.72264423256151], [-77.39070814053837, 34.7225879478616], [-77.39073021268524, 34.7222696901902], [-77.39049274966028, 34.721785103378956], [-77.39004927539975, 34.721300284648194], [-77.38990663347666, 34.72113678005832], [-77.38978140142953, 34.7211194984352], [-77.38962498129341, 34.72098014749031], [-77.38918614028512, 34.720544461638205], [-77.38873004860075, 34.720323029074294], [-77.38789106314422, 34.719426665709044], [-77.38854117459391, 34.71920730820792], [-77.38900907918071, 34.71936070770789], [-77.38992583316916, 34.719975415265516], [-77.39032922242423, 34.7200680327406], [-77.39124010109886, 34.720511049876094], [-77.39222814379276, 34.72074762730422], [-77.3924373630444, 34.720804296993954], [-77.39296424532287, 34.720754966530244], [-77.39313926122495, 34.72074109793189], [-77.39317957379403, 34.72071819416815], [-77.39318145750133, 34.720664427448746], [-77.3934274591163, 34.7202457766556], [-77.39350894333627, 34.71984900904557], [-77.39366952316277, 34.71956835979538], [-77.3938731635417, 34.71928342773616], [-77.39346028617886, 34.71876295047274], [-77.39352186059436, 34.71837340805162], [-77.39373740341635, 34.71811761509523], [-77.39386817819636, 34.71808030173129], [-77.39431464549881, 34.71817336814465], [-77.39446551989168, 34.7182313102262], [-77.39472106412268, 34.718237401839836], [-77.39538411320149, 34.71842585653006], [-77.39564253691697, 34.71859428716372], [-77.39573041922297, 34.71870927943469], [-77.39588696360238, 34.71886977107054], [-77.39613944221233, 34.71909181082155], [-77.39628400701865, 34.71914931282966], [-77.39649608445492, 34.719282739223175], [-77.3966938545653, 34.71939095250322], [-77.39698645004587, 34.71954981498477], [-77.39725445851785, 34.719668743645684], [-77.39754657790417, 34.71971756090727], [-77.39766688837855, 34.71949254766555], [-77.39781805430499, 34.71941323614491], [-77.39796385650055, 34.719433179220836], [-77.3983127146707, 34.719159364258395], [-77.39847001165779, 34.71898286441178], [-77.39853622307982, 34.718878572973324], [-77.3986161338094, 34.71870638092437], [-77.39869858954316, 34.71860839222337], [-77.39881391201426, 34.71831648303883], [-77.39885714327005, 34.718231562834106], [-77.39887405033105, 34.71814705586344], [-77.39889125140326, 34.71806107872228], [-77.39885637777613, 34.7179517244637], [-77.39880629320129, 34.717873335341345], [-77.39859338777921, 34.71758013938825], [-77.39856061732709, 34.71752943286374], [-77.39852838811098, 34.71748539303736], [-77.39829323815492, 34.71719555157537], [-77.39829277362328, 34.71719477235121], [-77.39817040136316, 34.7168730010194], [-77.39815559080473, 34.71680564017373], [-77.39813159411194, 34.71664245360927], [-77.39809698885497, 34.71638374847252], [-77.39808387283892, 34.716283582484806], [-77.39799654072083, 34.71600244036573], [-77.39799069623231, 34.71598173927493], [-77.397983842218, 34.715969010835494], [-77.39789467609923, 34.715797049152215], [-77.39780646245931, 34.7156273744862], [-77.39780041074577, 34.71561474652632], [-77.39779326514498, 34.71559782167904], [-77.39761431762474, 34.71524600630451], [-77.39747751709601, 34.714953131427514], [-77.39744366726624, 34.714870828410774], [-77.39739305118289, 34.71476673920069], [-77.39725545060556, 34.714502974219165], [-77.3971924203142, 34.714353016455306], [-77.39716631978024, 34.71431697231461], [-77.39708842801086, 34.714257840819464], [-77.3969788885077, 34.71417195118001], [-77.39693402865328, 34.714138587411966], [-77.3964325724225, 34.713953385961965], [-77.3963674501922, 34.713881541812626], [-77.39599730595114, 34.71331688959671], [-77.39600058344661, 34.713240840298454], [-77.39609175871412, 34.712790791616094], [-77.39606890475672, 34.71269976627817], [-77.39564981040354, 34.71249443783823], [-77.39596656584553, 34.712187832908405], [-77.39595955345094, 34.711918991981605], [-77.39596340550766, 34.71190715242509], [-77.3957535090194, 34.711576157900296], [-77.39574600817002, 34.71156169996214], [-77.39573529378872, 34.71154775305433], [-77.39552858491592, 34.71124630271306], [-77.39550035890505, 34.71121779206998], [-77.39528546191721, 34.710979240440935], [-77.39521425784363, 34.710890748400516], [-77.39510721151126, 34.710768809363415], [-77.39504635278549, 34.710698335989996], [-77.39490110973986, 34.710574980569035], [-77.39478818358148, 34.71048319317087], [-77.39424090722916, 34.71040389432885], [-77.39417981704426, 34.71037041131014], [-77.39411727775962, 34.71036695701335], [-77.3939516013903, 34.71036439992928], [-77.39364345047547, 34.710340248910214], [-77.39355017388503, 34.710331032501756], [-77.39314980347791, 34.71028111585375], [-77.39293552871894, 34.71023991220084], [-77.39265307388933, 34.710173196150365], [-77.39233963186167, 34.71008411793429], [-77.39205848222092, 34.709992669726134], [-77.39175983359235, 34.70987279468312], [-77.39147203025827, 34.709781710458834], [-77.39146640908439, 34.709779297201656], [-77.39146002883625, 34.70977791222665], [-77.39115649890803, 34.709742666842956], [-77.39097968831766, 34.709724697075735], [-77.39052671648834, 34.70972492764941], [-77.39052232862741, 34.709724910047946], [-77.39052036492754, 34.709725680067834], [-77.39047725172375, 34.709707615061646], [-77.38997344768039, 34.7095049785048], [-77.3899490715071, 34.709485034853806], [-77.38989746100044, 34.70945108554793], [-77.38936917307407, 34.709274078610974], [-77.38927929747652, 34.70928832722401], [-77.38894348965461, 34.70938727951441], [-77.38845699727455, 34.709559679013665], [-77.38818181539409, 34.70963806945993], [-77.38795186375114, 34.709740354623605], [-77.38782291367268, 34.70979935385074], [-77.38768976821663, 34.70985030680613], [-77.38759202958563, 34.7098759055008], [-77.38738920777094, 34.709838255223616], [-77.38727737511601, 34.709855630581536], [-77.38720199532915, 34.70976759029946], [-77.3867767808025, 34.70937116540156], [-77.38655597623273, 34.7091442590233], [-77.38626674285189, 34.70891929134572], [-77.3858057259131, 34.70874448437786], [-77.38565050155489, 34.70883369308294], [-77.3851190544062, 34.70911797895404], [-77.3847128299806, 34.70901988807239], [-77.38432201883836, 34.708993556370935], [-77.38350014463529, 34.70863272792834], [-77.38225874160239, 34.70738996904881], [-77.38223845050821, 34.70737340970953], [-77.3822286417944, 34.70736985213906], [-77.3822152155589, 34.70736070617269], [-77.38138325742634, 34.70683724916712], [-77.38113188758591, 34.70673071912441], [-77.38065818221627, 34.70630995826555], [-77.38062236427729, 34.70627720330379], [-77.38061398509818, 34.70626527979993], [-77.38058319797797, 34.706244175127], [-77.38008722060431, 34.705912040602335], [-77.37956186691127, 34.705886591827706], [-77.37948302290505, 34.70588405238151], [-77.379450933708, 34.70589561884166], [-77.37914188707768, 34.70598621105061], [-77.37875900125017, 34.70607104392606], [-77.37868279273542, 34.706071687138575], [-77.37851047745475, 34.70607766886428], [-77.37777568300564, 34.70608441220776], [-77.3774581459815, 34.7061356748475], [-77.37683440728304, 34.7063371262578], [-77.37681512244046, 34.70635558395854], [-77.37661647434705, 34.70685448413406], [-77.37690863670446, 34.70704658150295], [-77.37666031050603, 34.707494620740384], [-77.37575801611953, 34.707932355530644], [-77.37574543627697, 34.70791244113603], [-77.37564861491967, 34.70722801406803], [-77.37562907468603, 34.70699023441166], [-77.3753799695861, 34.70664627105592], [-77.37530805708722, 34.70654697241883], [-77.37521461235553, 34.706379290212595], [-77.37526353431048, 34.706257228039505], [-77.37542883411693, 34.706042972813435], [-77.37581092653141, 34.705525957813784], [-77.37583873773234, 34.70549060757566], [-77.37585399965442, 34.7054744786365], [-77.37619581041702, 34.70516884479661], [-77.37627215859732, 34.705170885240676], [-77.37653682001316, 34.705184293319384], [-77.37680648323857, 34.70507174785387], [-77.37720811936101, 34.70493380713012], [-77.37733454687336, 34.70480617123996], [-77.37734945877011, 34.70473580601822], [-77.37744381699457, 34.70454744880427], [-77.37742380026054, 34.704342449487214], [-77.37742099858075, 34.70430688788415], [-77.37742470125349, 34.70428359676275], [-77.37739834916621, 34.70427798009763], [-77.37720183341187, 34.70406089238678], [-77.37703265746121, 34.703872886012974], [-77.37699209520228, 34.70382808028195], [-77.37694570873649, 34.703774661015174], [-77.37678375931034, 34.70359418910334], [-77.37664969853131, 34.70343814333524], [-77.37658311204069, 34.703354379274955], [-77.37649958135364, 34.70324890574801], [-77.37639003755888, 34.70310874001625], [-77.37630439668922, 34.70299822248887], [-77.3761986710058, 34.70286178647679], [-77.37607282023225, 34.702656404992915], [-77.3759958383013, 34.70255324948294], [-77.37587725626344, 34.70232067331436], [-77.3758347424159, 34.702088001826354], [-77.37580337305216, 34.70198327705652], [-77.37571912151162, 34.70181204862392], [-77.37567561483671, 34.7016873563764], [-77.3756288328204, 34.701628915500066], [-77.3752899905525, 34.70122776066064], [-77.37527072750855, 34.701210511418985], [-77.37525605121134, 34.70119277120355], [-77.37510176532554, 34.70100908036365], [-77.37507022095105, 34.70097059841871], [-77.37492020763182, 34.70075154749544], [-77.37489495852186, 34.700711251272736], [-77.374855309441, 34.70066262463797], [-77.37469745493001, 34.70046902730691], [-77.37456969668938, 34.700312339610086], [-77.37450721598586, 34.700221211173876], [-77.3744199521812, 34.70009983918679], [-77.37441575103846, 34.700094490265776], [-77.37441283165391, 34.70009020762732], [-77.3743298420453, 34.699963491457694], [-77.37423406869635, 34.69987108552125], [-77.37419729742487, 34.69983560719521], [-77.37410026900648, 34.699745957970904], [-77.37396125815887, 34.69961751844458], [-77.37375235823436, 34.69944991236787], [-77.37363442214024, 34.6993160509236], [-77.3735675511899, 34.69923162082071], [-77.37348978854445, 34.69917925499564], [-77.37333175586403, 34.699154789336944], [-77.37292657907342, 34.69908184860748], [-77.37291493502494, 34.69909737925889], [-77.37276232081305, 34.69919889644431], [-77.37216343230253, 34.699624406971296], [-77.37161596697939, 34.69929285801696], [-77.37175631576761, 34.69874950483836], [-77.37165760322306, 34.698472286240374], [-77.37160974327473, 34.69828225950991], [-77.37141649023769, 34.69807236834832], [-77.37129572470582, 34.697962347074046], [-77.37115252447443, 34.697857711065254], [-77.37080782320739, 34.697549425060906], [-77.37047145921196, 34.69720319478953], [-77.37034117462564, 34.69712014215706], [-77.37023768591722, 34.697008667352286], [-77.36953911767114, 34.69629034710875], [-77.36945299481077, 34.69622685494407], [-77.36934436206163, 34.69615666162967], [-77.36899261648307, 34.69579275219829], [-77.36866369836714, 34.695304516474515], [-77.36864674266226, 34.69527775580544], [-77.3686470089256, 34.69527030066592], [-77.36864191087915, 34.695256469894105], [-77.36833362160662, 34.694346003183306], [-77.36859704624453, 34.69373175263752], [-77.3680238127978, 34.69341379825109], [-77.36800142356515, 34.69340177934135], [-77.36798456394513, 34.693395989477885], [-77.36718470152671, 34.693241998441366], [-77.36748602748696, 34.6925129206076], [-77.3673607471915, 34.692317989032155], [-77.36718124730601, 34.69203868864582], [-77.36593955843857, 34.69272543673878], [-77.36594261634255, 34.69289310050755], [-77.36568045322784, 34.692822988172914], [-77.36566591427713, 34.69264787681273], [-77.36620990026002, 34.69171350065132], [-77.36646075948585, 34.690799607702104], [-77.36751366470538, 34.69089301894149], [-77.3678933471547, 34.69079288774626], [-77.36862173732197, 34.69055874527608], [-77.36847503030369, 34.690914826470106], [-77.3686912960367, 34.69096016195821], [-77.36905331733922, 34.69101499634398], [-77.36955678833276, 34.69099073338535], [-77.36989358081412, 34.69094231773114], [-77.37003419026776, 34.691048372957226], [-77.37041110069539, 34.691136116906115], [-77.37043404590814, 34.69114254297311], [-77.37045631963593, 34.69112990144938], [-77.37044237162995, 34.69111384450622], [-77.37035219588904, 34.690803550726926], [-77.37022665731507, 34.69067407562767], [-77.37008167619547, 34.690293970642614], [-77.36997191607068, 34.69030780500779], [-77.36950115703135, 34.69028640069227], [-77.36903678862053, 34.69023921779692], [-77.36889759902633, 34.690249090910946], [-77.36835550731179, 34.68946907615782], [-77.36834813591727, 34.68919237454971], [-77.3680358806174, 34.68909315278838], [-77.36766668931739, 34.68858896004307], [-77.36788252686011, 34.68797383233037], [-77.36721460996584, 34.68779788898659], [-77.36713815235048, 34.687686815397385], [-77.36729179061948, 34.68753187870661], [-77.36762143151373, 34.68738634948703], [-77.36811166592591, 34.68715739894187], [-77.36844147105228, 34.687020302282036], [-77.3682427702109, 34.68690800383328], [-77.36834009837706, 34.68672168944564], [-77.36823458782202, 34.68656134452197], [-77.3681913397059, 34.68649435616436], [-77.3678160060623, 34.686448060531355], [-77.36773203982733, 34.68601448810462], [-77.36761555515932, 34.685813888884724], [-77.36769568413283, 34.68566062645317], [-77.3677313633483, 34.685544017357685], [-77.36772787933877, 34.685333168133916], [-77.36749606858632, 34.68520066908372], [-77.36765654465296, 34.68499384095483], [-77.36740125887935, 34.68509167717181], [-77.3672761559629, 34.685140568072526], [-77.36691981094096, 34.68527986556986], [-77.36673042153978, 34.68534094030617], [-77.36665575235624, 34.68531615500096], [-77.3662928827153, 34.685255192165506], [-77.36614788572854, 34.68528585466441], [-77.36597037663208, 34.68525958515903], [-77.36580656705415, 34.68523534290077], [-77.36559495594267, 34.68512873302666], [-77.36540799745254, 34.68514793988187], [-77.36515530824296, 34.68503495634942], [-77.36481959819696, 34.684812438358094], [-77.36450883652448, 34.68474647110131], [-77.36393326704518, 34.68470629525587], [-77.36389645786268, 34.68469774588639], [-77.36336168592686, 34.68457455634074], [-77.36293539116832, 34.684686012513644], [-77.3625216844703, 34.684755570147544], [-77.36194009217638, 34.68534834607072], [-77.36184426611827, 34.68543152200555], [-77.36103794606004, 34.685358196852754], [-77.36072474029086, 34.68541139063122], [-77.36026772641408, 34.685310487054245], [-77.36011597433496, 34.6852794585962], [-77.36006088195276, 34.6852475115482], [-77.35960811156279, 34.68513426252101], [-77.35932251014351, 34.68510179512748], [-77.35931377061674, 34.685103090234485], [-77.35895857289447, 34.6853100103293], [-77.35887562178898, 34.68535292165693], [-77.35817965444782, 34.68593149557567], [-77.35812453703366, 34.685963583837605], [-77.35808899181943, 34.68600576405365], [-77.35790127615749, 34.6861957666492], [-77.35750397892066, 34.686573502668686], [-77.35744880867865, 34.68664105181911], [-77.35732724701448, 34.687085162351266], [-77.35718571672824, 34.68729370139234], [-77.35666699451075, 34.68717584423393], [-77.35663485272953, 34.68717054073497], [-77.35662303071204, 34.68717015349517], [-77.35660507624445, 34.68716959666804], [-77.35633470612608, 34.687132431368006], [-77.35621870039483, 34.68714620826692], [-77.35617988526022, 34.68715028861615], [-77.35608048290993, 34.68725639510522], [-77.35609906348881, 34.68735927685443], [-77.35610264736286, 34.68738306829147], [-77.35623245144359, 34.687479216825466], [-77.35623312689223, 34.68747974393203], [-77.35623768437534, 34.68748216051346], [-77.35660445232003, 34.687234155830076], [-77.35666865311003, 34.68766300160963], [-77.35689720192116, 34.68775702937459], [-77.35703275323007, 34.68782067003713], [-77.35734261925892, 34.68805782241044], [-77.35742573630796, 34.688138640969456], [-77.35752703221006, 34.688179903609814], [-77.35777462355706, 34.68848587356131], [-77.3578667155586, 34.68858764523093], [-77.35775439821138, 34.68882665054162], [-77.35756805504573, 34.68900163126261], [-77.35757219444555, 34.68930337543002], [-77.3573025637533, 34.689810289165784], [-77.35782607581011, 34.68994096365319], [-77.35789021545938, 34.69086174333692], [-77.35686872619652, 34.69044777685279], [-77.35670404906053, 34.6902709496618], [-77.35662572599641, 34.69010582299462], [-77.35621559423959, 34.6898584794995], [-77.35623094543769, 34.68967265635291], [-77.3559533452061, 34.68947716059995], [-77.35581598226563, 34.68937763243585], [-77.35548692623037, 34.68928744914791], [-77.35545101042524, 34.6892643318132], [-77.35541657476415, 34.68926428855337], [-77.3553579540799, 34.689255305153466], [-77.35502887484725, 34.689195025511154], [-77.35485257438147, 34.68914522006858], [-77.35438297811277, 34.68902926832094], [-77.35429342237848, 34.68900945441182], [-77.35360218137811, 34.68954626374249], [-77.3535771462439, 34.68959143110116], [-77.35340924788916, 34.689993219983094], [-77.3533830005012, 34.69005758790295], [-77.35337622992677, 34.69006467311734], [-77.35306197648194, 34.690411268915376], [-77.35277246658788, 34.69063495595371], [-77.35226842039269, 34.690984325785934], [-77.35183624530737, 34.69128772280021], [-77.35142130635009, 34.69150990815719], [-77.35102954127314, 34.69184901824565], [-77.35069961997631, 34.6921466865215], [-77.35024975242737, 34.692628499730205], [-77.35003101670587, 34.6928305333967], [-77.34989253567491, 34.69297987427355], [-77.34945897962962, 34.69348155354731], [-77.34940939656386, 34.69353357878676], [-77.34940357802157, 34.69355087856953], [-77.34900239659905, 34.694076827521286], [-77.34926892583412, 34.694416171994675], [-77.34940034661889, 34.69450958295874], [-77.34949272132289, 34.69463814250469], [-77.34965165730264, 34.69468820932262], [-77.34967268086491, 34.694715889959966], [-77.3496132738411, 34.694939560373804], [-77.34963326944947, 34.69496499058542], [-77.34966253982506, 34.69505703214354], [-77.34955775527602, 34.69501157839161], [-77.34954572645489, 34.69499153921661], [-77.34949958633833, 34.69498334155028], [-77.34919902575378, 34.69486414576066], [-77.34903211017156, 34.69476029136543], [-77.34885064968171, 34.69473804040875], [-77.34849606730491, 34.69454481600869], [-77.34798676632113, 34.694848027992315], [-77.34775599495701, 34.6947920157082], [-77.34772571982273, 34.69473944932052], [-77.34731145224458, 34.69450137154141], [-77.34719566423729, 34.6944348280524], [-77.34703538813233, 34.694346820174204], [-77.34689898233256, 34.69426894361479], [-77.34680026143924, 34.69420033753071], [-77.34660623367584, 34.6941000316017], [-77.34635695368137, 34.69366557580051], [-77.34615016996474, 34.69366261451737], [-77.34573784409673, 34.6937361490079], [-77.34540807686744, 34.69383849214867], [-77.34506469290211, 34.6939927810157], [-77.34490139347781, 34.694027594608514], [-77.34475543043528, 34.69417234713111], [-77.34457431170063, 34.694375930443286], [-77.34439893722259, 34.69470864741341], [-77.34410794762145, 34.69523401034048], [-77.34410689423913, 34.69523610215141], [-77.34410670363756, 34.69523800812616], [-77.34389586874347, 34.69575243639483], [-77.34364327138704, 34.696103793320404], [-77.34310216870509, 34.6966274721331], [-77.34296356978133, 34.69677784348886], [-77.34289874747972, 34.69686401657177], [-77.34266385128089, 34.6971334410498], [-77.34233171242168, 34.69749431833471], [-77.34214582169697, 34.69753200697272], [-77.34162574181806, 34.697588414269205], [-77.34102805689997, 34.69761517697186], [-77.34101963582387, 34.69761408284419], [-77.3410139643217, 34.69761451173965], [-77.34043982519147, 34.69773198854925], [-77.34037491996187, 34.69777264884395], [-77.3400166969163, 34.69799518488214], [-77.33960749174764, 34.6982903248295], [-77.33930585020269, 34.698641641837966], [-77.33878699064681, 34.699117156872525], [-77.33854512361509, 34.69924387799262], [-77.33831230603526, 34.69944274623987], [-77.33724205688281, 34.70031349616385], [-77.33697900086298, 34.70040876194818], [-77.33585800986958, 34.70095598097916], [-77.33496539129334, 34.701176880280414], [-77.33327770555631, 34.70159451846788], [-77.33271385335973, 34.701734044553405], [-77.33069205371874, 34.70240167466678], [-77.33064369472116, 34.70241764354435], [-77.33061641686612, 34.70242784086054], [-77.32860059806862, 34.702433840023446], [-77.32824900759579, 34.702417196747064], [-77.32771332197021, 34.702407181874364], [-77.32681393522182, 34.70223155480634], [-77.32607209535196, 34.70166756896485], [-77.32546312086228, 34.70120457946612], [-77.32476044561345, 34.700658056474296], [-77.32438261423077, 34.700377941215855], [-77.32424186711788, 34.700268694012536], [-77.32408976396341, 34.70024875683224], [-77.32367836835553, 34.69991387590182], [-77.32359839568652, 34.699879587234825], [-77.32325964800935, 34.69973434593598], [-77.32305910131012, 34.69967527206281], [-77.3229555179429, 34.69959878956507], [-77.32235489002372, 34.69935534708276], [-77.32202578271779, 34.69911095836576], [-77.32181497732321, 34.69898239078067], [-77.32162168124832, 34.69880684380363], [-77.32152781973652, 34.69876451638948], [-77.32138676484232, 34.6987117101352], [-77.32125851518924, 34.69866119569878], [-77.32119774236186, 34.69866890179275], [-77.32096247753182, 34.698649817510024], [-77.32063392843853, 34.69868246525721], [-77.32004354388266, 34.69876835538648], [-77.31971698672322, 34.69881525209357], [-77.31936814547521, 34.698836742264554], [-77.31872145851753, 34.69899690384217], [-77.31844675181931, 34.69906574782888], [-77.3181914135973, 34.69907000010478], [-77.31785413092962, 34.699044845547455], [-77.31759287031313, 34.699076634722466], [-77.31724386536243, 34.69908461216782], [-77.31671022730451, 34.69947976413291], [-77.31634761741834, 34.69998859536664], [-77.31621095832915, 34.70013929287241], [-77.31581376282114, 34.70057729116436], [-77.31552491438154, 34.700877906060335], [-77.31442787491514, 34.70083983174093], [-77.31434028527212, 34.70083387434949], [-77.31422381942768, 34.700795071413694], [-77.31280044295048, 34.700397361808], [-77.31220243720307, 34.699950217389954], [-77.31136070265083, 34.69992815114202], [-77.31100610654707, 34.69994643208223], [-77.3108500475977, 34.699307681953016], [-77.31057555483176, 34.69895563656377], [-77.31054516856886, 34.69867259134077], [-77.31051365148812, 34.698379030948416], [-77.31049120334522, 34.69823239193622], [-77.3104327319893, 34.69780114974429], [-77.31039612245019, 34.697517398993064], [-77.31038432931189, 34.697422022588086], [-77.31003978316465, 34.697093842591656], [-77.30990329247953, 34.69710823404722], [-77.30944459318303, 34.6970817743304], [-77.30892132018721, 34.69723196337806], [-77.30868100903379, 34.6972599316945], [-77.30817834207987, 34.69731843347645], [-77.3076487130608, 34.697380070345986], [-77.30747318369468, 34.69740049725235], [-77.30706928392526, 34.69701474836924], [-77.30693293728693, 34.69702778520053], [-77.30700987509344, 34.6968132786134], [-77.30730883279426, 34.69619136144867], [-77.30745078559298, 34.69592728646009], [-77.30751043953714, 34.69586610484959], [-77.30779423529697, 34.695593417481575], [-77.30806280838581, 34.69565761306558], [-77.30853126722997, 34.69560874472475], [-77.30867474115209, 34.69561209808554], [-77.30877178350713, 34.69561396150055], [-77.30925971036845, 34.695626588474575], [-77.30926879384128, 34.695628042810284], [-77.30927195323173, 34.69562731052168], [-77.30970187200668, 34.69568691521107], [-77.30983589398836, 34.69573663698646], [-77.31027088954531, 34.69587498719833], [-77.31040869293649, 34.695931535059806], [-77.31090955954649, 34.69616193843508], [-77.31105410741415, 34.696223369031905], [-77.31141663200016, 34.69630593734553], [-77.31144806790347, 34.696314499576324], [-77.31146126709399, 34.69632346380653], [-77.31180297219728, 34.69643565808222], [-77.31199200228947, 34.69655709138669], [-77.31250919313368, 34.696583597567134], [-77.31257814617567, 34.69660023409203], [-77.31261148231033, 34.69660208332044], [-77.31266765436347, 34.696621964873074], [-77.31312620550875, 34.69677431212008], [-77.3132527270939, 34.69689712071799], [-77.31353902942169, 34.696989978366545], [-77.31395397482751, 34.69714601939752], [-77.31418242295803, 34.69725967531094], [-77.31426526963745, 34.697300712029474], [-77.31445651485919, 34.69735167300716], [-77.31463963038863, 34.697406907730155], [-77.31473453397857, 34.69741984065483], [-77.31490474770347, 34.69743162777643], [-77.31535106707952, 34.69735849934979], [-77.31575642899764, 34.6971736125724], [-77.31571302994674, 34.696975562302725], [-77.31568474468278, 34.69684648102794], [-77.31561678435044, 34.6967053801358], [-77.31561487589128, 34.69665697285537], [-77.31582689252917, 34.69633404674628], [-77.31608188259345, 34.69629785074957], [-77.31626993664338, 34.69625754561848], [-77.316457653055, 34.696255050904064], [-77.31665336980404, 34.696252449557726], [-77.31685762780421, 34.696295340383884], [-77.31707550163631, 34.696321899398015], [-77.3174661736738, 34.69626141916651], [-77.31765275088311, 34.69627206303798], [-77.31776320229697, 34.69626936906802], [-77.317936191138, 34.696289557492385], [-77.3180527101697, 34.69630318057557], [-77.3181149110141, 34.696310728232454], [-77.31829837752838, 34.69633801462741], [-77.31853470749745, 34.69638197131246], [-77.31862024200018, 34.69641029645792], [-77.31891370885316, 34.69648458470861], [-77.31918520807537, 34.69652623794262], [-77.31969715117415, 34.69657455776797], [-77.31976833207192, 34.696579734847504], [-77.31982814489177, 34.69656950915052], [-77.32010143717378, 34.69657833383873], [-77.32033068634424, 34.696577112868496], [-77.32036525096184, 34.69658578689554], [-77.32097313015464, 34.69647712020246], [-77.32102235187276, 34.69647301280386], [-77.32159262258483, 34.696482542420895], [-77.32197781445281, 34.6964926195448], [-77.32219001245898, 34.69648696389569], [-77.32264044314823, 34.69663123901569], [-77.32273956553223, 34.696655918712935], [-77.32276783071951, 34.69667321268716], [-77.32279776095992, 34.69669621394306], [-77.32325400643715, 34.69708748508164], [-77.3236824086496, 34.69753134168211], [-77.32369999215332, 34.69753266943136], [-77.324825003199, 34.69729185072715], [-77.32494918163182, 34.69729255661546], [-77.32505906076673, 34.69727559287445], [-77.32526964779512, 34.69721987570521], [-77.3253920415643, 34.69721654022487], [-77.32542067360109, 34.69721520686525], [-77.32545997526017, 34.69721654762002], [-77.32556850987918, 34.697221509396485], [-77.32563767026804, 34.697224670991446], [-77.32572972134182, 34.697269103921315], [-77.32588818795476, 34.697426092933256], [-77.32605060311722, 34.69762255087562], [-77.32612296607147, 34.6977025697662], [-77.32628659234838, 34.69790787382533], [-77.32652249580431, 34.69805869751032], [-77.32656471418528, 34.69808806711383], [-77.32681443901832, 34.6980951547157], [-77.32704885450545, 34.69810980134491], [-77.32710105434515, 34.69812791063555], [-77.32718206580815, 34.698105378764616], [-77.32745769582087, 34.698006977567374], [-77.32776490632457, 34.69790369051983], [-77.32823383585773, 34.69776125268006], [-77.32842168155072, 34.697703800432585], [-77.32886661171928, 34.69749987346698], [-77.32911238030542, 34.6973871818544], [-77.32920308454493, 34.69734394407704], [-77.32930486966666, 34.69716277350148], [-77.32951673802317, 34.696749962313696], [-77.3296063899071, 34.69653673155134], [-77.32964702839715, 34.69646078244745], [-77.32988927805377, 34.696319133718454], [-77.33005035950053, 34.69621973356408], [-77.3300909281642, 34.69621601683677], [-77.33067487939519, 34.696108959893486], [-77.3306813270085, 34.69610856482704], [-77.33068803168058, 34.69610711667348], [-77.3313981511105, 34.695701960708675], [-77.33154788430113, 34.695592804081386], [-77.33160046933416, 34.69548952050787], [-77.33169314173941, 34.69532568219581], [-77.33197138572322, 34.69495128862118], [-77.33210153884615, 34.69480695775006], [-77.33216134744382, 34.69468155487305], [-77.33220358771376, 34.69453890016746], [-77.33223655726613, 34.69442755580863], [-77.33251579992616, 34.693916059161246], [-77.33253214909757, 34.693912000919724], [-77.33327978030607, 34.69334707323657], [-77.3333477300811, 34.69330043523215], [-77.33367500662698, 34.69237186577565], [-77.33378282200849, 34.692266021992225], [-77.33492510773786, 34.69180505407735], [-77.33508255821752, 34.69208776593141], [-77.33532838707768, 34.69252916445629], [-77.3353637275358, 34.69259261884813], [-77.3355869044822, 34.69299333935855], [-77.33561355872764, 34.69309804746586], [-77.335743575118, 34.69310866519225], [-77.33587209985147, 34.693441596009485], [-77.3360134010228, 34.693578716117074], [-77.33620905071045, 34.693566934224776], [-77.33637196655428, 34.69361672116523], [-77.33641779946693, 34.69366174185377], [-77.33648171861142, 34.693658645507334], [-77.33659680802958, 34.693686067986185], [-77.33662832892134, 34.69369684566966], [-77.33674769636009, 34.6937733840249], [-77.33677140494481, 34.69378384307919], [-77.3368059941962, 34.69380087498962], [-77.33723544866189, 34.69415500707641], [-77.33727316321962, 34.69418610669526], [-77.33772338967557, 34.69453599329945], [-77.3378363166716, 34.69454113780462], [-77.33805431256862, 34.69460438970976], [-77.33854065110611, 34.69478755241592], [-77.33881942776478, 34.69488442324595], [-77.33925468658026, 34.695026503454066], [-77.3393671660564, 34.69505961492097], [-77.33954617044496, 34.69502455272011], [-77.3395814700667, 34.694882267720516], [-77.33957570858232, 34.69477952210842], [-77.33968971230614, 34.69451346714706], [-77.33975045407166, 34.694371709386715], [-77.33986116072768, 34.694027126174475], [-77.33987332810395, 34.69386747656694], [-77.33988018958269, 34.69375696120768], [-77.33991663959155, 34.69343795897995], [-77.33992315733171, 34.693373264926144], [-77.33995060473566, 34.693308633795404], [-77.34008193191805, 34.69294616250639], [-77.34020014587172, 34.692847887604955], [-77.34066530578416, 34.69236459477898], [-77.3407439274545, 34.692285905862065], [-77.34075564527102, 34.692266823618745], [-77.34078653580839, 34.692234369103865], [-77.34144563818232, 34.69160192539366], [-77.34202309071671, 34.691135641496246], [-77.34217385653024, 34.69097092730536], [-77.34242871725623, 34.690702515477795], [-77.34249382139635, 34.69061628938618], [-77.34307710688482, 34.69050888661337], [-77.34308343667477, 34.690509298313316], [-77.34309418431766, 34.690510273493636], [-77.34336874203463, 34.69055747251865], [-77.34350687954705, 34.69057235724407], [-77.34352365499218, 34.69057190068782], [-77.34369689046281, 34.69045814139463], [-77.34373068664702, 34.69043629937985], [-77.34373513731934, 34.69041333694081], [-77.34373991868227, 34.69039304200158], [-77.34379500456913, 34.69016143248417], [-77.34383369098818, 34.68998714282991], [-77.34384729408603, 34.68991625570684], [-77.34384734127099, 34.68991056131646], [-77.34384421208846, 34.6898986236734], [-77.34371488224053, 34.68944136019431], [-77.34364217318846, 34.68928576112362], [-77.34350879028318, 34.68898226272785], [-77.34331754876877, 34.688747224836845], [-77.34313718330282, 34.68826338269922], [-77.34293450778215, 34.68825363885624], [-77.34282150738366, 34.68810182046135], [-77.34244971350691, 34.68783835533537], [-77.34210739069827, 34.68768716909756], [-77.34157578214376, 34.68772249166304], [-77.34027853234059, 34.68747599296836], [-77.33995436989309, 34.687393468177405], [-77.33980913132083, 34.687356492306975], [-77.33950843072037, 34.6873307193668], [-77.33848333059018, 34.68694872785896], [-77.337625176322, 34.68663236882077], [-77.33721651745942, 34.686346848562806], [-77.33658691224998, 34.68608547027737], [-77.33655674687023, 34.68606620005443], [-77.33654175195153, 34.68603913730268], [-77.33609536494376, 34.68571708451586], [-77.3360399171259, 34.68567556849602], [-77.33598696045225, 34.68562786442146], [-77.33561901258352, 34.68529641206507], [-77.33547608283513, 34.68532110180688], [-77.3347728476952, 34.685307022062304], [-77.33483446177257, 34.68502647998058], [-77.33558532607026, 34.68422083379136], [-77.33586993387459, 34.68410403080184], [-77.33600612535565, 34.683963991607996], [-77.33629734146612, 34.68363579381182], [-77.33632924156278, 34.683482276635836], [-77.33639880465836, 34.68329628764947], [-77.33646258679252, 34.68312575266716], [-77.3365919005781, 34.682977855220834], [-77.33668178947549, 34.68290886949929], [-77.33690878867513, 34.68291723294003], [-77.3373174864796, 34.682834260657195], [-77.33754224752926, 34.6827970728016], [-77.33793064404504, 34.682644249729506], [-77.33884463244722, 34.682434628575905], [-77.33938424024115, 34.68231406765171], [-77.33948416367815, 34.682293533277424], [-77.33956823958692, 34.68227682379654], [-77.34021096287918, 34.681851986302014], [-77.34046356509792, 34.681794087953314], [-77.34087892322401, 34.68195223854557], [-77.34101479442892, 34.68201383518546], [-77.34132388227384, 34.682141728243984], [-77.34153198946777, 34.68223801320416], [-77.34195975289492, 34.68237154462167], [-77.34219243361996, 34.68251811084353], [-77.3424054784551, 34.68253932934029], [-77.34262059861557, 34.682582792218575], [-77.34268903444476, 34.6825934339747], [-77.34294431029583, 34.682723816089805], [-77.3429458532399, 34.68272666316846], [-77.34294910435247, 34.68272840324447], [-77.34331836703758, 34.68315986113274], [-77.3433372720622, 34.68321377985296], [-77.34340569013416, 34.683217173651684], [-77.3438013428318, 34.68358095796818], [-77.34383818984095, 34.68361663768263], [-77.34387904788161, 34.683648212268224], [-77.34408146372081, 34.683786204044864], [-77.34410516511885, 34.68380535719875], [-77.34434813141154, 34.68399329575891], [-77.34435267895876, 34.68400905310304], [-77.34436270632334, 34.684043797617456], [-77.34448962894658, 34.6844612546473], [-77.34454122671309, 34.684652291468], [-77.34463711246762, 34.68485668578806], [-77.34466761820983, 34.684924205984565], [-77.34467293656392, 34.68494510361944], [-77.3446862276635, 34.68499079545293], [-77.34476402484349, 34.68526917442904], [-77.3448812590899, 34.685711499591804], [-77.34489589694911, 34.685867633108415], [-77.3449212087638, 34.68593655261972], [-77.34499609760667, 34.685984824164755], [-77.34520793032333, 34.68600115501235], [-77.34554536231201, 34.68615456613339], [-77.34560962877302, 34.68619513342847], [-77.34584144496154, 34.686225238520656], [-77.34611147097898, 34.68626631092475], [-77.34621158683613, 34.686252748344174], [-77.34667599710028, 34.68616286537797], [-77.34674163474553, 34.68615748185435], [-77.34680701066786, 34.686142369069685], [-77.34726007009168, 34.686107565569], [-77.34734677700592, 34.686134807934266], [-77.34761987671831, 34.68622484827522], [-77.34792782144183, 34.68619511553881], [-77.34807460841795, 34.686269081947216], [-77.34819386234419, 34.686309577586925], [-77.34830543995756, 34.68637440757013], [-77.3483759790785, 34.68643133572013], [-77.34840881351161, 34.686599983154316], [-77.3484095577126, 34.68660380557894], [-77.34843681701386, 34.686778696197365], [-77.34844996695998, 34.68684194878787], [-77.34846732317266, 34.68697614978973], [-77.34848795857258, 34.68713351932919], [-77.34850965482622, 34.68732113574514], [-77.34855429890479, 34.687476646242146], [-77.3485678918463, 34.687556832120634], [-77.34868742619275, 34.68770182042937], [-77.34873932064933, 34.68772844095206], [-77.34896487045812, 34.687746027811436], [-77.3489724124074, 34.68775105613357], [-77.34897674198147, 34.687746953469876], [-77.34927994219255, 34.687706577070934], [-77.34928441008284, 34.68770726806034], [-77.3492894315083, 34.68770503338065], [-77.34931440727604, 34.68769804434681], [-77.34982910897686, 34.68754521014233], [-77.34993564242774, 34.68752588198778], [-77.35008822089026, 34.68745578844704], [-77.35011045168199, 34.687439201381785], [-77.35021077883867, 34.687331297422304], [-77.35023857269834, 34.6872699422491], [-77.35035256534846, 34.68707819489923], [-77.35035515706757, 34.687067785228706], [-77.35042129241423, 34.68688401903628], [-77.35044724462064, 34.68681665776577], [-77.35044785594366, 34.68681136780035], [-77.3504607891302, 34.686797812720705], [-77.35068144466638, 34.68653560704462], [-77.35075267749455, 34.68644916116725], [-77.35093127924544, 34.686158308420765], [-77.35101051506936, 34.686039469442996], [-77.35104974414611, 34.68599765994092], [-77.35129297652972, 34.685763162795], [-77.35105077727536, 34.685746732859656], [-77.35102158625804, 34.685183652630755], [-77.35088326023836, 34.68504575167243], [-77.35042950923375, 34.68485095108187], [-77.35037548480267, 34.68462808473498], [-77.35039269400141, 34.68448509956481], [-77.35041723292835, 34.68423689314622], [-77.35039723632144, 34.68413771669786], [-77.35046804106125, 34.68403292390355], [-77.3506768831692, 34.683190524790746], [-77.35073543640236, 34.68311651937784], [-77.35078921023755, 34.68299736840917], [-77.35087243958816, 34.6822379584083], [-77.35088901918873, 34.68213217726096], [-77.3508836510486, 34.682121405981], [-77.35081775307154, 34.68203884703011], [-77.35046804850003, 34.68166780121159], [-77.34995558421026, 34.68127441124596], [-77.34995522451837, 34.68127416874014], [-77.34995518910495, 34.68127414880451], [-77.34883479385945, 34.681010320390186], [-77.34841239405041, 34.68088479564979], [-77.34819812861049, 34.680540564183055], [-77.34858703402139, 34.680060949190505], [-77.34908751279339, 34.67944371057774], [-77.34940243380007, 34.67905531662048], [-77.34979137641069, 34.6785756272468], [-77.35134722846625, 34.678625998493175], [-77.35183567552563, 34.67892016643463], [-77.35211295436653, 34.67902831893613], [-77.3527634522531, 34.679112712815225], [-77.35296500820913, 34.67915324319796], [-77.35348845673427, 34.67932682229056], [-77.35350431375602, 34.67933085931996], [-77.3535099168162, 34.67933784653273], [-77.35384880125795, 34.67976472168651], [-77.35389049047413, 34.67982200823748], [-77.35394552850224, 34.679898964820914], [-77.35426711119769, 34.680320514810816], [-77.35457351614085, 34.68063996480816], [-77.3546868507551, 34.68078583466276], [-77.35477828220077, 34.68115378464741], [-77.35486569063286, 34.681436581026276], [-77.35493903224521, 34.68156453759768], [-77.3551796899585, 34.681832796243526], [-77.35530026749719, 34.681890485344525], [-77.35548006754297, 34.68197761907366], [-77.35550279760191, 34.68212879864396], [-77.35572558417546, 34.68201406959007], [-77.35634949475364, 34.681871280534516], [-77.35636659889309, 34.68186764615899], [-77.35637717569483, 34.68186159133337], [-77.35639444964175, 34.681852036994385], [-77.35684631791517, 34.681639253929156], [-77.3570490352665, 34.68157850294106], [-77.35737731393806, 34.68147334819327], [-77.35737849725865, 34.68147280130288], [-77.35737900706657, 34.68147267100619], [-77.35738126220468, 34.68147129473527], [-77.35761205544215, 34.681360734986605], [-77.35761752828844, 34.68128942798307], [-77.3576061304635, 34.68119822595665], [-77.35758338161179, 34.68101619483066], [-77.35766109024439, 34.68086168469158], [-77.35774666417038, 34.680691536280904], [-77.35785826955949, 34.68062164983313], [-77.35793597515774, 34.68058474464789], [-77.35857656416658, 34.680090153322666], [-77.35861941796685, 34.680019951265855], [-77.3587577732909, 34.67981535788612], [-77.35911803058336, 34.67918551606227], [-77.35938271357762, 34.67900463877969], [-77.35952384953976, 34.67890705272065], [-77.35963730774083, 34.67884697441398], [-77.35983498704931, 34.67869881393805], [-77.35991651560646, 34.67861693001379], [-77.35994568854588, 34.67851170663418], [-77.35995062631828, 34.67843923385098], [-77.35999544068825, 34.67827629709259], [-77.35983292469221, 34.678172925417], [-77.35971710707044, 34.67809634494915], [-77.35960253569041, 34.677999666124734], [-77.3594347038038, 34.67791952593778], [-77.35932340894622, 34.6778663819501], [-77.3591864126893, 34.677716447248315], [-77.35910075260904, 34.67760250287219], [-77.35908975579501, 34.67758272243024], [-77.35900045820138, 34.677465381600726], [-77.35890442922438, 34.67724789253009], [-77.35885069360266, 34.67718645730409], [-77.35880378083698, 34.67713462016384], [-77.35878398722025, 34.676974679335814], [-77.3589880195515, 34.67695986660464], [-77.35948634849572, 34.67695912210577], [-77.35960166792964, 34.67690756970065], [-77.35968411457426, 34.676939090644], [-77.35979692733417, 34.67699818619691], [-77.36005214397237, 34.67704998997212], [-77.36014528723034, 34.67709657910639], [-77.36077823424074, 34.67686337076759], [-77.36080831589169, 34.67685463415282], [-77.36081437307635, 34.67685324158908], [-77.36081996743566, 34.676853111804405], [-77.36089175489201, 34.67684777423049], [-77.36139244988246, 34.676806609634625], [-77.36142653882253, 34.67680603672505], [-77.36163708209068, 34.67701250234871], [-77.36182537569813, 34.67711804730963], [-77.36191831738054, 34.67717369799304], [-77.36193005022027, 34.67718118380253], [-77.36195626542455, 34.677188906074676], [-77.36218997744484, 34.677268722829936], [-77.36241887533987, 34.67719908204644], [-77.36251498390098, 34.677179905953814], [-77.36258773041574, 34.67715565628402], [-77.36275349439347, 34.67707936563151], [-77.36303657577241, 34.676915342855864], [-77.36322033587939, 34.6768115451809], [-77.36347956489661, 34.676669838946154], [-77.36357658294651, 34.676615048416906], [-77.36371859771789, 34.676562634533774], [-77.36375083520204, 34.67656786548817], [-77.36376686533757, 34.67660542219403], [-77.36373047791751, 34.676701425028305], [-77.36372711926138, 34.67688928787664], [-77.36374605091791, 34.67694297999979], [-77.36374699472414, 34.67696505339355], [-77.36376896281138, 34.67698330243492], [-77.36395871570714, 34.67740114632967], [-77.36407524343363, 34.677500802465865], [-77.36418214224554, 34.67762188014501], [-77.3642728377969, 34.67774290984072], [-77.3643265753157, 34.677837986628916], [-77.36440007103946, 34.6780391867615], [-77.36457308600507, 34.67829150211726], [-77.36457766917214, 34.67829669167873], [-77.36458305268465, 34.67830276493794], [-77.3647988101511, 34.67852067235668], [-77.3650211829856, 34.678717314781736], [-77.36503370206599, 34.67873406682813], [-77.3650507995887, 34.67875331613815], [-77.36514670317035, 34.67884418634089], [-77.36521856111685, 34.67884955350711], [-77.36532666179323, 34.678833879689925], [-77.36539830190054, 34.67884760007533], [-77.36562143760943, 34.67884925556813], [-77.36577506694806, 34.6789517670158], [-77.36612090167688, 34.67901120928989], [-77.36617128027356, 34.67901687320831], [-77.36619793342055, 34.67902044003989], [-77.36642863507035, 34.67901128300241], [-77.36647237059451, 34.67901048540861], [-77.3665056948768, 34.6790006924105], [-77.36673029224814, 34.6789131896489], [-77.36682573093725, 34.67882393102789], [-77.36713950703839, 34.678637735974434], [-77.36756251954398, 34.67834715903068], [-77.36795999262164, 34.67845227497513], [-77.36814667835387, 34.6783964809626], [-77.36832437682496, 34.67841163506873], [-77.36883231222937, 34.67809599927306], [-77.36923315842829, 34.678260498205915], [-77.36920864965887, 34.67862918319367], [-77.3692504687155, 34.67864142165137], [-77.36926998697543, 34.678650272390854], [-77.36981455868752, 34.67860134501543], [-77.36987303534073, 34.678634474887126], [-77.37007330045876, 34.678796375733285], [-77.37022782527957, 34.678822432009206], [-77.37051882360983, 34.67847133281609], [-77.37056302686936, 34.67844300652163], [-77.37053558285263, 34.678413557101294], [-77.37029619136419, 34.67823050063498], [-77.37006791562831, 34.677962659512986], [-77.36991126339049, 34.677738379083934], [-77.36991273056822, 34.67755761274691], [-77.36974104859627, 34.67708093069536], [-77.36941292966917, 34.676651531064614], [-77.36933545369699, 34.6766047325573], [-77.3692668360594, 34.676598109664624], [-77.36916499133093, 34.676604078571806], [-77.36841640601995, 34.67652387191241], [-77.36811221594243, 34.676452347852326], [-77.36801481934883, 34.676438831990886], [-77.36767418932145, 34.676558985431086], [-77.36744957502725, 34.676673602065904], [-77.36707096885823, 34.6767713024159], [-77.36681042178779, 34.67681388109011], [-77.3664462128903, 34.67657191089942], [-77.36634539524724, 34.67654146497365], [-77.36629102455467, 34.67654137451596], [-77.36613253127844, 34.67646879265094], [-77.36575173565438, 34.67633743676397], [-77.36565468175567, 34.67628478490653], [-77.36567019774168, 34.67619117018558], [-77.36555641767458, 34.675966204014415], [-77.36554899380192, 34.67595152536786], [-77.3654212981278, 34.67573798561244], [-77.36543191055631, 34.67566782703993], [-77.36535937279744, 34.67562710010564], [-77.36519360639315, 34.675281885996704], [-77.36511099181688, 34.675126437739166], [-77.36506134631338, 34.6748810601587], [-77.36504696640989, 34.67481464809689], [-77.36503560350378, 34.67479024565935], [-77.36500943950156, 34.67477054441199], [-77.36487999135421, 34.67451582003741], [-77.36476396017494, 34.674366149636676], [-77.36468305719961, 34.67427320996765], [-77.36458938844792, 34.67415568466065], [-77.3645823737888, 34.67414740920586], [-77.36448278682532, 34.6740331690955], [-77.36439266361037, 34.67392978419563], [-77.36426499947271, 34.67380661546556], [-77.36412914135869, 34.67367938338779], [-77.36404067450252, 34.67358509576027], [-77.363952656638, 34.67350286045109], [-77.36392501142863, 34.67347703155543], [-77.36389543661458, 34.673453582596025], [-77.36379534330665, 34.67337974957368], [-77.36365156332377, 34.673262830701496], [-77.36346868440236, 34.67323701819201], [-77.3633904335233, 34.673092729194934], [-77.3632797660855, 34.67298824061968], [-77.36316332204302, 34.67288304292562], [-77.36303857376986, 34.67277970897031], [-77.36288463463815, 34.67267484291477], [-77.36276308359191, 34.67259758398072], [-77.3626656785889, 34.67253567203947], [-77.36250145345957, 34.67240478830522], [-77.36242047265247, 34.67234953020343], [-77.36231546515842, 34.67226566284563], [-77.36224371316564, 34.672208998144065], [-77.36217498265044, 34.672164369738184], [-77.36195355082523, 34.672038170190554], [-77.36173428689132, 34.67193158478591], [-77.36165412287505, 34.6718970332694], [-77.36163128151561, 34.67189206142106], [-77.36157557987568, 34.67187993680962], [-77.36123209462409, 34.67180517053518], [-77.36110104395107, 34.67174073810808], [-77.36091896084399, 34.67165202801785], [-77.36056850420499, 34.67153091746095], [-77.36056582179485, 34.67152968522062], [-77.36056406311117, 34.671528972520534], [-77.36055871055699, 34.67152757289989], [-77.36018383778386, 34.67142954855913], [-77.3600158674347, 34.67135585884101], [-77.35983964185715, 34.67130031856462], [-77.35962023318405, 34.67117381118044], [-77.35954716647122, 34.67113127235946], [-77.35949222762504, 34.67109813244226], [-77.35926401975544, 34.67095504197213], [-77.35898592570487, 34.67078067009929], [-77.35897538729724, 34.67077501466831], [-77.35867955797738, 34.67061657163917], [-77.35849179622899, 34.670421273691964], [-77.35840099736528, 34.670366535902346], [-77.35830806415998, 34.67011414647831], [-77.35835376036954, 34.66988563812215], [-77.35850244399447, 34.669704460934064], [-77.35855344465487, 34.6695310258893], [-77.35853500662175, 34.66937335257775], [-77.35853261675405, 34.66924957311143], [-77.35854221365088, 34.66914546053234], [-77.35849338961832, 34.669135376342275], [-77.35829030623198, 34.669053509553194], [-77.35803241338688, 34.669143728724116], [-77.35791290650712, 34.669181747690914], [-77.35762294019753, 34.669291088636726], [-77.35732791243169, 34.6692918849977], [-77.35727594793664, 34.66861697728445], [-77.35726338444634, 34.66857326597044], [-77.35726620859653, 34.66855097412883], [-77.35735371315803, 34.66815678925195], [-77.357372234567, 34.66807092714605], [-77.35738180327172, 34.66805999830296], [-77.35774915083006, 34.66776006104521], [-77.3577697369297, 34.66775425886129], [-77.35812019478404, 34.667480790959075], [-77.35812754742076, 34.66745733178267], [-77.35810261736641, 34.66711862906973], [-77.35802081583722, 34.66700705619196], [-77.35806791886836, 34.66676621597611], [-77.35806033247803, 34.66651424082086], [-77.35806880775326, 34.66635623743278], [-77.35813578405444, 34.66601648874706], [-77.3581444633111, 34.66555759965999], [-77.35814311669758, 34.66552809485586], [-77.35814136148208, 34.66551196000937], [-77.35814568529273, 34.66542777701005], [-77.35813619654066, 34.66504165853168], [-77.35817309506116, 34.664944743276266], [-77.35814942462497, 34.66471733183531], [-77.35814445915105, 34.66455313645222], [-77.35811959759513, 34.66434608609163], [-77.35812804625843, 34.66426655365632], [-77.35814944945739, 34.66406506435982], [-77.35813086740407, 34.66394319932217], [-77.35807787369438, 34.66359943561998], [-77.35807713702745, 34.663590357682345], [-77.3580701398164, 34.663588573212266], [-77.35759086620686, 34.663410009751765], [-77.35739915457208, 34.66337893872817], [-77.35710346034097, 34.66334159787482], [-77.35703635035142, 34.66335955893909], [-77.35699508006925, 34.6632404740065], [-77.35695271280296, 34.662898071250055], [-77.35711982741766, 34.662689759308954], [-77.35723033006485, 34.66253993678292], [-77.35730282413905, 34.66242797071061], [-77.35732807057735, 34.662216952276275], [-77.35733785212403, 34.66200115361097], [-77.35728428688532, 34.66171996808376], [-77.35703235253845, 34.661556026757445], [-77.35687464786585, 34.661382630276194], [-77.35671264260915, 34.66124303193154], [-77.35645760632605, 34.661059955435775], [-77.35625753465226, 34.660888138594174], [-77.35604717753723, 34.660724189953655], [-77.35579687464624, 34.66052482109821], [-77.35564275603248, 34.66037653211652], [-77.35551212718012, 34.66036636618108], [-77.35532216672648, 34.660345273647366], [-77.35442397308412, 34.660493027644954], [-77.35421597642916, 34.6602903209662], [-77.3535839444854, 34.66005754639253], [-77.3535265742064, 34.660046854927955], [-77.35348880580045, 34.66004788914414], [-77.35292851499462, 34.66025745207707], [-77.3527498392203, 34.660362710205156], [-77.3526400505485, 34.66041527973881], [-77.3525889232065, 34.66046332026748], [-77.35249097996696, 34.66055688677834], [-77.35236824803857, 34.6606559439006], [-77.35221163637381, 34.6605952507245], [-77.35226979498047, 34.660166495191405], [-77.35226983730496, 34.6601655593067], [-77.35226984876472, 34.66016525385717], [-77.35226970070958, 34.66016500280679], [-77.35226902654344, 34.660162674937226], [-77.35203617061241, 34.659353341318734], [-77.351722743946, 34.658951168511756], [-77.35132005549264, 34.65862864447622], [-77.35085938183921, 34.65836388681818], [-77.35054594096488, 34.65786998447423], [-77.35013301767563, 34.65750535601694], [-77.34976659037733, 34.65727296863808], [-77.34967894947127, 34.65725606257946], [-77.34924669467372, 34.65734430235689], [-77.34914273964301, 34.65735525286716], [-77.34904476256335, 34.65736341042904], [-77.34853666766128, 34.65752595031316], [-77.34832407304626, 34.65764202665206], [-77.34821067765593, 34.6577117717996], [-77.34794164659009, 34.657751615728294], [-77.34789662728996, 34.657752265624495], [-77.34773112421875, 34.65766770980051], [-77.34759008449383, 34.65759565185121], [-77.34751128697458, 34.65752881336991], [-77.34741076217554, 34.65745647907521], [-77.34740469257221, 34.6574527839799], [-77.34740077725642, 34.657450400378856], [-77.34729379643821, 34.65738527168597], [-77.34720697360393, 34.657282782609784], [-77.34686863672798, 34.657126437098015], [-77.34684626570541, 34.65712303870892], [-77.34679594814784, 34.65705859564528], [-77.34660786891992, 34.656722712351865], [-77.3466052888128, 34.656451853571255], [-77.34655006860584, 34.656161915909735], [-77.3465247642335, 34.65589012290133], [-77.34659418233768, 34.65582759993765], [-77.3466660186109, 34.65575746766095], [-77.34675971465047, 34.65569039063439], [-77.34689003157175, 34.65570653053701], [-77.34697045089732, 34.655728860385864], [-77.34727655153635, 34.65578690547387], [-77.34750301257482, 34.65582272048011], [-77.34755286374012, 34.65581816849036], [-77.34761395563235, 34.655820482935674], [-77.34787882208596, 34.65584684092217], [-77.3480695789512, 34.65584925066309], [-77.34821488709163, 34.655925770763155], [-77.34834000087614, 34.65583092199108], [-77.34851120242918, 34.65580702832504], [-77.3487063600367, 34.65573675136498], [-77.34881382480634, 34.655719652034755], [-77.34890008127715, 34.65568646373431], [-77.3490863448772, 34.65553840924745], [-77.34887252350171, 34.655407740046876], [-77.34871951957201, 34.65525068280241], [-77.3485203206794, 34.654956772067436], [-77.34835705405091, 34.654794547944384], [-77.34829416717733, 34.654727713042604], [-77.34813571244543, 34.65456997441796], [-77.34790342687828, 34.654376844439106], [-77.34769726973109, 34.65428977558193], [-77.34738716976578, 34.654083717385674], [-77.34726052593189, 34.65400621657928], [-77.34717040886014, 34.65391608666911], [-77.3466964910566, 34.65333454713103], [-77.34653591398279, 34.653144343615736], [-77.34633840718412, 34.652962963004526], [-77.34633788165999, 34.6529623003576], [-77.3463371414189, 34.65296188494186], [-77.34611427894444, 34.65283088549221], [-77.34571114390413, 34.652625829613086], [-77.34565107917783, 34.65259972790877], [-77.34562285245339, 34.652588952845534], [-77.34555108105458, 34.65256069620049], [-77.3451640029483, 34.652415845943246], [-77.34490986340957, 34.652227667644034], [-77.3447636197103, 34.652060323596075], [-77.34457503486756, 34.651937802341365], [-77.34454287627838, 34.651923255243034], [-77.34452705054115, 34.65191609634113], [-77.3444805557582, 34.65189506403966], [-77.34430683297757, 34.651816479140784], [-77.34417621039844, 34.65176355759817], [-77.34384280392729, 34.651633375632166], [-77.34382876029238, 34.6516278769336], [-77.34382282068978, 34.651626540296796], [-77.34348166945975, 34.65149397466508], [-77.34334417469861, 34.65142597864672], [-77.34313895663801, 34.651290942994635], [-77.34312644336939, 34.65128295195184], [-77.34311730070516, 34.65127411355089], [-77.34292515839618, 34.65110736440251], [-77.34271049143696, 34.65084309327822], [-77.34254061989432, 34.6507204958064], [-77.34233807037292, 34.650583143772984], [-77.34232299283978, 34.65057726745749], [-77.34203529144013, 34.65059844192568], [-77.34202193932093, 34.650599205584705], [-77.34202110944875, 34.65059911221883], [-77.34202047836072, 34.650599532148085], [-77.34201623341521, 34.65060105784635], [-77.34150532236008, 34.65078587562701], [-77.34143556218199, 34.65087173448005], [-77.34084574579862, 34.65076171357123], [-77.3407887155166, 34.650744377107806], [-77.34061312620685, 34.64995300602332], [-77.34061256725276, 34.64994972365101], [-77.3406112684676, 34.64994754474268], [-77.34060908838335, 34.64994559562617], [-77.34043908400082, 34.64971435951453], [-77.34034115889546, 34.64969911811342], [-77.34030386494771, 34.64998205266664], [-77.34047682018691, 34.649968354688994], [-77.34060499144663, 34.64995997138533], [-77.34071599295727, 34.65071627807074], [-77.34074319389705, 34.650775788910835], [-77.34075605307014, 34.65080903897329], [-77.34074824021008, 34.651413624609354], [-77.340686678119, 34.65162753909408], [-77.34058598368938, 34.651929402870536], [-77.34063126523135, 34.65220420609059], [-77.34076862713947, 34.65233248216436], [-77.34081495941064, 34.6524146177351], [-77.34086009274296, 34.65244773235021], [-77.34103153396894, 34.65255993743675], [-77.34115404456132, 34.65265708172788], [-77.34145131996571, 34.652877036002025], [-77.34184705746071, 34.65315626338976], [-77.34187733233432, 34.65318181297744], [-77.34190145148702, 34.65318967941999], [-77.34194219279102, 34.653195389565184], [-77.34237416454357, 34.653346389340804], [-77.34257491734144, 34.653354373148694], [-77.34284747938793, 34.65344094299327], [-77.34289678056979, 34.65345992240943], [-77.34291641546822, 34.65346042053487], [-77.34294910040646, 34.653468050988764], [-77.34316478293971, 34.65350343535738], [-77.34327705860903, 34.65366170257924], [-77.34336234303532, 34.65368640875385], [-77.34345074424381, 34.65378013269364], [-77.34333916454571, 34.65397065794703], [-77.34320939876707, 34.65398920423212], [-77.34303558150836, 34.6540532441247], [-77.34292390019826, 34.65411175316877], [-77.34273801045423, 34.654165738770565], [-77.34247998535358, 34.65428506991282], [-77.34242717501873, 34.654315323715224], [-77.34213898683328, 34.654371433203096], [-77.34213184294524, 34.65437326610061], [-77.34184807982825, 34.65438788600305], [-77.34182237503344, 34.654389210325625], [-77.341796104804, 34.654393491254986], [-77.34150975632099, 34.65442685180157], [-77.34122882840474, 34.654465644404354], [-77.34117064480537, 34.65447689375355], [-77.34090281466533, 34.654593169453044], [-77.3406580015038, 34.6546656023759], [-77.34032111983893, 34.65488511362557], [-77.33996000165932, 34.65510324356798], [-77.33982751379203, 34.655224864735075], [-77.33975925075394, 34.65527572119529], [-77.33943480580837, 34.65572082235203], [-77.33925739317094, 34.65596495597122], [-77.33923460620002, 34.656005906535235], [-77.33916889538537, 34.65605580287057], [-77.33871774698017, 34.65646619676803], [-77.33844369494068, 34.65660212178982], [-77.33812358219286, 34.656696184112356], [-77.33790662844477, 34.656768043305235], [-77.33772029770458, 34.65681848032341], [-77.33751995300314, 34.656879089327575], [-77.33736197544823, 34.6569268807129], [-77.33704954487958, 34.656998113302095], [-77.33689932917761, 34.65697743370005], [-77.33649937459113, 34.65693906204406], [-77.33617654825814, 34.65656738928717], [-77.33590740453283, 34.65690357289128], [-77.33561537049658, 34.65696157463293], [-77.33509118264362, 34.657459304595385], [-77.33508102587824, 34.65746669347657], [-77.3350771119106, 34.65746985451425], [-77.33506619782798, 34.65747973183436], [-77.33453054159381, 34.65793679252557], [-77.33434731653874, 34.6581163267352], [-77.33399784358032, 34.65844625488445], [-77.3339933519446, 34.658450452468045], [-77.33399073879102, 34.658450740469554], [-77.33398379218693, 34.658455213595545], [-77.33352320763976, 34.65868157533199], [-77.33347018047044, 34.65903391073297], [-77.33323163896978, 34.658814734532456], [-77.33301470543412, 34.65887416306932], [-77.33308225883661, 34.65911037441119], [-77.33318477173906, 34.65920708045411], [-77.33337146601534, 34.659383199195986], [-77.33347919457786, 34.65947273475908], [-77.33360584662844, 34.65970915100639], [-77.33379754128107, 34.65999063707712], [-77.33387330187887, 34.660158344052526], [-77.3339207497344, 34.66038727903048], [-77.33373560914224, 34.66035499631876], [-77.3336310201253, 34.660320202957045], [-77.33341409752774, 34.660348494878804], [-77.33318813768035, 34.66037066665829], [-77.33309973920187, 34.66037759544424], [-77.33301056360463, 34.66040019986173], [-77.33279821623836, 34.66047058268158], [-77.33263743937597, 34.66052387190341], [-77.33251637829918, 34.660661552172655], [-77.33213404055485, 34.661240908962434], [-77.33213246023763, 34.66138706265275], [-77.33210429681465, 34.66179807655174], [-77.3320845086245, 34.6620096048214], [-77.33203497628766, 34.662098481821666], [-77.33197359543686, 34.662573368387726], [-77.33167941373591, 34.66287092443238], [-77.3313253022077, 34.66258742163312], [-77.33091623548323, 34.66225991409569], [-77.33090763746159, 34.662253105607995], [-77.33048898644373, 34.661946659778344], [-77.33015392021981, 34.66165312830054], [-77.33003961752681, 34.66152817106908], [-77.32976221231422, 34.66108914800108], [-77.32956035014058, 34.66074991747864], [-77.32925334353769, 34.66035796061098], [-77.32903492874244, 34.660232669835196], [-77.3285731454464, 34.66015984643738], [-77.32831129491223, 34.66048899490073], [-77.32805135672356, 34.6607504236667], [-77.32797053202816, 34.66083819126837], [-77.32786043661876, 34.660983037220774], [-77.3277905271689, 34.66133747257979], [-77.32762731839466, 34.66182770656653], [-77.32711714893831, 34.66204347907439], [-77.32698054276192, 34.66200224760261], [-77.32685382360056, 34.66179763167289], [-77.32659772913551, 34.661156184084604], [-77.32679461474284, 34.66087029973813], [-77.32690933647362, 34.66051476806851], [-77.32709219051644, 34.66024440352487], [-77.32719285171395, 34.66011212449109], [-77.32719687048473, 34.65968451926312], [-77.32724529333372, 34.65949374103586], [-77.3272645757277, 34.659376784981234], [-77.32718742305745, 34.65929733300184], [-77.32710505449253, 34.65922735252238], [-77.32681597682772, 34.65888456743209], [-77.3266413676036, 34.658929880908346], [-77.32641663050615, 34.65898820285821], [-77.32614837721205, 34.659057816890936], [-77.32608206324078, 34.65907502588364], [-77.32582073890443, 34.65920980795504], [-77.32562513702615, 34.65931575860958], [-77.32536096957224, 34.65946811735738], [-77.32523716175382, 34.65949275063219], [-77.32471988683275, 34.65958887496461], [-77.32456764797666, 34.65934774554278], [-77.32437235443672, 34.65948076712463], [-77.32364077242846, 34.65942861883825], [-77.32359785619448, 34.658757606091605], [-77.32374588034304, 34.65817128115354], [-77.32324389558772, 34.65709234150483], [-77.32406534701344, 34.65684621398514], [-77.3244700138487, 34.65690248346504], [-77.32487359166572, 34.65698932177066], [-77.32536714864617, 34.65695103296926], [-77.32593878536107, 34.65717705313761], [-77.3260476563522, 34.657150874955896], [-77.32615118862222, 34.65713750345649], [-77.32664623234663, 34.656942703255964], [-77.32710536921564, 34.657164150725684], [-77.32733271000957, 34.657172250627916], [-77.3276461822625, 34.65719865882253], [-77.32796696701317, 34.657141752677205], [-77.32877220585786, 34.65748207580462], [-77.3291851846454, 34.65763967497105], [-77.32943219480515, 34.658060134289656], [-77.32993396109126, 34.658453575254214], [-77.33029137589133, 34.658333651703785], [-77.33073557448026, 34.6581726406751], [-77.33121710730686, 34.65820998634193], [-77.33158147259815, 34.658203447829784], [-77.33159152253606, 34.65793938421334], [-77.3318814497804, 34.657816193081544], [-77.33193656780007, 34.65777546971628], [-77.33206442209983, 34.657681005436785], [-77.33230252856075, 34.65754199670205], [-77.33233092271621, 34.6571535769096], [-77.33234856331863, 34.656991557991994], [-77.33233590749352, 34.65690585250794], [-77.33223099021686, 34.65620344520574], [-77.33222343640493, 34.65616473667899], [-77.33222195644933, 34.65613216182611], [-77.33223527007394, 34.65607463374555], [-77.33232451517571, 34.65556060299208], [-77.33240660512304, 34.65529562528247], [-77.33237615327363, 34.65494150583275], [-77.33242770414202, 34.6548707386411], [-77.33258337632745, 34.65461977688564], [-77.33269688998011, 34.654573643115015], [-77.33275292479433, 34.65459650308361], [-77.33289211130928, 34.65475590300373], [-77.33293279080794, 34.65480145255284], [-77.33293585113623, 34.65480841946669], [-77.33294668988748, 34.654834473528666], [-77.33309739316155, 34.65520086543725], [-77.3331984737022, 34.6554365683819], [-77.33343854061087, 34.65568896202346], [-77.33355380666757, 34.65588123391077], [-77.33409453523653, 34.65587846820492], [-77.3341166275001, 34.65587667255568], [-77.33415725565565, 34.655834829970125], [-77.33447994268326, 34.65557097912765], [-77.33460242565579, 34.6551073096703], [-77.33462302034165, 34.655037261895785], [-77.33463513590937, 34.654989907883916], [-77.33467829183452, 34.654803565703446], [-77.33475153128555, 34.65448994662948], [-77.33486224026636, 34.65443947857845], [-77.3350958843954, 34.65437611767272], [-77.3352686129592, 34.65448100328683], [-77.33532712935336, 34.65466730076201], [-77.33537367639317, 34.65488858259066], [-77.33548207284849, 34.65517194986355], [-77.33571869854092, 34.65568523382214], [-77.33577755885949, 34.65607174601465], [-77.33613262587933, 34.656348802872124], [-77.33625486158866, 34.655893377712076], [-77.33663448943487, 34.655659467095994], [-77.33666312678848, 34.65560723032787], [-77.33668786725458, 34.655552258668244], [-77.33682459776361, 34.65509069252382], [-77.33697000587632, 34.65466955616872], [-77.33691088174639, 34.65384810305694], [-77.33691052270441, 34.65383636407575], [-77.3369125952211, 34.65383344397178], [-77.336909125823, 34.65383195863834], [-77.33690753370735, 34.6538314412576], [-77.336902561681, 34.653828932091564], [-77.33619799890971, 34.65348717619855], [-77.3360003839033, 34.65333469276587], [-77.33560127636127, 34.65328138698992], [-77.33551244471491, 34.65326223661156], [-77.3354646476648, 34.65324711689946], [-77.33526428027209, 34.653215615306436], [-77.33517990281157, 34.65320070064685], [-77.33515055929635, 34.653194251027166], [-77.33494051706751, 34.65313656903088], [-77.33484136971198, 34.65310934085649], [-77.33461990939098, 34.65303248711539], [-77.33444037416194, 34.65297854205101], [-77.33414889009866, 34.652849886267155], [-77.33396592991232, 34.65276965151478], [-77.33358538044047, 34.652601962244475], [-77.33332562667673, 34.65193939080167], [-77.33328185644766, 34.65182774314635], [-77.33297559018513, 34.65184162885589], [-77.33328898509463, 34.65175699376907], [-77.33332066735092, 34.65175092580818], [-77.33390560327426, 34.651638895811324], [-77.3344458688006, 34.65153541832833], [-77.33452221985465, 34.65152079476037], [-77.33460488289803, 34.65150496176025], [-77.33513883402492, 34.65140269071561], [-77.33530230939581, 34.65100041941982], [-77.33566717175849, 34.650845221583296], [-77.33576976902599, 34.650769557883606], [-77.33616055275441, 34.65072164301921], [-77.33613654634429, 34.650985963568964], [-77.3363863835473, 34.65123777752408], [-77.33648127197735, 34.651234804252546], [-77.33696657077107, 34.651219596686516], [-77.33702252103785, 34.651216853416344], [-77.33710613240466, 34.651145931961814], [-77.3374746359984, 34.65102663849736], [-77.33759074388988, 34.650857940681654], [-77.3378274141391, 34.6506887113436], [-77.33785624092877, 34.65058585935324], [-77.33798992668409, 34.65054448336558], [-77.33816327744164, 34.650520504784346], [-77.33873411022736, 34.65021937834402], [-77.33874326089112, 34.65022016451461], [-77.33874614078515, 34.65021186795731], [-77.33874864931632, 34.65020553044558], [-77.3387491151651, 34.65018967459223], [-77.33891117795568, 34.64969867917891], [-77.33876916626528, 34.64935872282674], [-77.33870955852959, 34.64911990894039], [-77.33866732553378, 34.6489507029222], [-77.338596195478, 34.648770291175296], [-77.33849056010791, 34.64863874459471], [-77.3384269429549, 34.64856169565463], [-77.33866365686572, 34.64823074444748], [-77.33874814899796, 34.64821196137751], [-77.33886961829552, 34.64822901323671], [-77.33899426423963, 34.64828273465433], [-77.3391069697395, 34.64833317718065], [-77.33933808136013, 34.64840045847558], [-77.33943580663825, 34.64842324217135], [-77.33961175736354, 34.64848194973281], [-77.33967129220085, 34.6484653971766], [-77.3397493239233, 34.6484793655848], [-77.34000152282117, 34.64851550268254], [-77.34011367809369, 34.64848588299094], [-77.34020454043126, 34.64845651769765], [-77.3403034091865, 34.648424564833206], [-77.34038954482735, 34.648409791980555], [-77.3406296871454, 34.64825938597143], [-77.34082699112194, 34.64815091930612], [-77.34088187007644, 34.64811674935116], [-77.34106020700477, 34.64777829884382], [-77.34108736975982, 34.647726748997854], [-77.34110784115386, 34.647648082566015], [-77.34122176849883, 34.64733412623152], [-77.34124552805353, 34.64720715318223], [-77.34126484924097, 34.646906215895434], [-77.34126943151307, 34.64685908115612], [-77.34129534320091, 34.64658641592509], [-77.34130421098729, 34.6464788157957], [-77.3413583312141, 34.646172271409284], [-77.34138416345239, 34.64604584426093], [-77.34138551283196, 34.64600335235596], [-77.34140545353583, 34.64562092426847], [-77.34134094778206, 34.64529450616426], [-77.34133354553116, 34.64520879742929], [-77.34131795410227, 34.64510407571307], [-77.34122373844616, 34.64480187236378], [-77.34116918264243, 34.64476719560673], [-77.34105730309747, 34.644696082480635], [-77.34098566753576, 34.644650549352214], [-77.34097104547011, 34.64464277201839], [-77.34080677884958, 34.644556921526316], [-77.34050166845599, 34.64447898501082], [-77.34047717601086, 34.64447243114503], [-77.34046511224633, 34.64444983198575], [-77.34024418573034, 34.64409232862305], [-77.34017570487067, 34.643921180677665], [-77.339924344732, 34.6433519196599], [-77.33990541103796, 34.643308213548465], [-77.33989939320972, 34.643295658772324], [-77.33988816449875, 34.64327095434995], [-77.33962240547979, 34.64272041961554], [-77.33945825152321, 34.64251221187264], [-77.33926776913397, 34.6422744483171], [-77.33900962399, 34.64198609111364], [-77.33889756768451, 34.64185929910526], [-77.3384889184507, 34.641801255408694], [-77.33836856684624, 34.64175854118703], [-77.33832190432462, 34.64174993722224], [-77.33828365896315, 34.641772923291505], [-77.33822095103119, 34.64183803130151], [-77.33778617484853, 34.642270261379764], [-77.33760939625172, 34.6424779276264], [-77.33740395438696, 34.642520167625676], [-77.33715953129617, 34.64233810064664], [-77.33694651533011, 34.642277728006334], [-77.3364842210564, 34.64216369821185], [-77.3359083149304, 34.64222421124169], [-77.33585516465035, 34.64221952348481], [-77.3358155277213, 34.64222067780754], [-77.33528503968833, 34.64230954296957], [-77.33523379585569, 34.64231361995927], [-77.33517417451705, 34.642342317485785], [-77.3347825289348, 34.64250763281183], [-77.33466777389987, 34.642683246857345], [-77.33417504595738, 34.6432372039963], [-77.33415936710752, 34.64326036781477], [-77.3341458395798, 34.643272382754404], [-77.33409917511656, 34.643322356616096], [-77.33388424218806, 34.643563824854404], [-77.3337887184207, 34.64358158461543], [-77.33358460363871, 34.64366588870747], [-77.33320420565732, 34.643703109812634], [-77.33299604491232, 34.64392338606963], [-77.33166225674059, 34.643597941690324], [-77.33165032126969, 34.64359896131177], [-77.33163538178526, 34.643607606735685], [-77.33159861277642, 34.643590669749805], [-77.33071157074019, 34.643140406305804], [-77.33069620446699, 34.64269586001751], [-77.33045638628867, 34.642059387517364], [-77.33049921259308, 34.64184458172076], [-77.33058351032311, 34.64147509206198], [-77.33062366309731, 34.641293466105125], [-77.33065982629371, 34.641187496652], [-77.33058721772275, 34.641090852331075], [-77.33046416911463, 34.640880823625345], [-77.33006148696941, 34.64076849227685], [-77.3297690506639, 34.64060762194433], [-77.3296929873664, 34.64056516340023], [-77.32945369781304, 34.64063139801763], [-77.32933566417279, 34.64075802905551], [-77.32917529761795, 34.640839197086166], [-77.32895553668357, 34.640876976111485], [-77.32884101250791, 34.64096344043678], [-77.32859258113866, 34.64112575125342], [-77.32842365956688, 34.64124103754662], [-77.32830442740519, 34.64128499604441], [-77.32814674068715, 34.641329980173495], [-77.32800153073066, 34.64137081844326], [-77.32788104491347, 34.64140165822412], [-77.32739563227786, 34.64154195019089], [-77.32712899881278, 34.641671786965475], [-77.3268702245275, 34.641792390667405], [-77.32681068420607, 34.641817438345825], [-77.3267205453033, 34.64185712682884], [-77.32640705992051, 34.64202720907322], [-77.32623211125481, 34.642124697659334], [-77.32619140355294, 34.64215949212723], [-77.32595707586657, 34.64225449517134], [-77.32594240387905, 34.6422606362023], [-77.32593614142242, 34.64226180002975], [-77.32587450333233, 34.64226581867064], [-77.32563868106902, 34.64227663157908], [-77.3256189111082, 34.6422594984211], [-77.32542951185134, 34.642116730776564], [-77.32516152228283, 34.64194160077114], [-77.32487186931624, 34.64172761100658], [-77.32455508494053, 34.64155184943407], [-77.32447632082004, 34.64155882058767], [-77.32420860963619, 34.64161303358237], [-77.32393177068901, 34.641717625290056], [-77.32359603543328, 34.641750942936596], [-77.32329189210446, 34.64178740270094], [-77.32327420946503, 34.64179132220781], [-77.32297603961568, 34.6418518870427], [-77.32267313169132, 34.6418768968355], [-77.3223713285928, 34.64202898560584], [-77.32221426535148, 34.64211572849737], [-77.32208170559926, 34.6421809748555], [-77.32199455632549, 34.642244226215766], [-77.3219405618825, 34.642383242015484], [-77.32189824528845, 34.64248797272487], [-77.32194339948003, 34.64308684301993], [-77.32194708657957, 34.643200983985366], [-77.32195384614471, 34.64322539650823], [-77.32195938455807, 34.643245559418034], [-77.32200860082295, 34.64341167763021], [-77.32217290512574, 34.643970658104095], [-77.32219114598561, 34.64403683824626], [-77.32221920526612, 34.64412252039457], [-77.32206640252566, 34.64418140600602], [-77.32153961757764, 34.644265052691566], [-77.32144088884277, 34.64413969680295], [-77.32121249915338, 34.64384970740067], [-77.32114092759569, 34.64375883219174], [-77.32112820757551, 34.643742681356514], [-77.32110787936998, 34.64370903774052], [-77.32087601554736, 34.64337316196286], [-77.32096002549052, 34.64297238390098], [-77.3209645620854, 34.64295074153913], [-77.32097685621443, 34.64293735031855], [-77.3212233747731, 34.642689470643006], [-77.32131587623316, 34.64261145733671], [-77.32156512992297, 34.6424347131518], [-77.32128481922337, 34.64228518682944], [-77.32114180080694, 34.64228304087587], [-77.32083569551635, 34.642026320837445], [-77.32066558268598, 34.64200409548714], [-77.3204350796006, 34.6419518963988], [-77.32024615540162, 34.64204530791241], [-77.32008212278275, 34.64212655442426], [-77.31986518524184, 34.64230249801185], [-77.31933542788049, 34.64269982528314], [-77.31930706589182, 34.64271179873742], [-77.31929606274905, 34.64272719752072], [-77.31928293118489, 34.64274757507347], [-77.31902757271912, 34.643143842468284], [-77.31898465042157, 34.643210448787165], [-77.31882985800846, 34.6435243043326], [-77.3187971417929, 34.64359603697506], [-77.31876778590068, 34.643662161545144], [-77.31860911458224, 34.64401957254931], [-77.31858769117515, 34.644067829138706], [-77.31838863987974, 34.644516191664664], [-77.31829708352771, 34.644463821235426], [-77.3181805753163, 34.64498484845778], [-77.31797712788881, 34.64545847966128], [-77.3179496541788, 34.64551925064427], [-77.3178518096883, 34.64547565594983], [-77.31731964643737, 34.64439323105421], [-77.31715971581824, 34.643882571278255], [-77.31722498470617, 34.643462457293765], [-77.31722458442998, 34.643029710599265], [-77.31732816928503, 34.642422203020544], [-77.31734163212116, 34.642236549638554], [-77.31739563755781, 34.6421622947915], [-77.31780215152656, 34.641593581193504], [-77.317914340271, 34.6414366278241], [-77.31796007246908, 34.6412409584711], [-77.31823460588748, 34.64055805488843], [-77.3182806132136, 34.640443894681766], [-77.31834277224, 34.64034452956811], [-77.31848392905769, 34.63979455833093], [-77.31856022376576, 34.63947075025714], [-77.3185363793896, 34.639347946688744], [-77.31835323659642, 34.63890564793416], [-77.3180088215673, 34.63885516973349], [-77.3178804918781, 34.63879332517438], [-77.31783394239002, 34.63878566956608], [-77.31730435126752, 34.63886456464846], [-77.31726902533892, 34.63893668130337], [-77.31669119616947, 34.63895925311371], [-77.31663849144157, 34.6389850154006], [-77.31659314093685, 34.63894581670716], [-77.31638604858657, 34.638924786072955], [-77.3159540375433, 34.63876460111511], [-77.31545898255034, 34.639051844434306], [-77.31538846135102, 34.63907723673642], [-77.31537589849752, 34.63907408594705], [-77.31536747145933, 34.63907600137343], [-77.31475987944903, 34.639194773351484], [-77.31426314802978, 34.639360946630354], [-77.31417030045019, 34.63944726059523], [-77.3132091803765, 34.63971129867889], [-77.31317110677996, 34.64084937538632], [-77.31225364603203, 34.64064691300994], [-77.31047242421837, 34.640162799978675], [-77.31025454615586, 34.640012444750504], [-77.30993975378095, 34.63980812051248], [-77.30940761034277, 34.63709874116901], [-77.30935298682218, 34.63651265015798], [-77.30912145934744, 34.63589244702641], [-77.30898656837121, 34.63318700292351], [-77.30905253028672, 34.63308280143605], [-77.30941473778846, 34.630826481090466], [-77.30997222576542, 34.629676098278566], [-77.31048850753277, 34.629159766456986], [-77.31077478002757, 34.62890190646665], [-77.31135044087499, 34.62866591895802], [-77.31136540238562, 34.62865495256833], [-77.31137706282615, 34.6286550055047], [-77.31201994995635, 34.62872674302742], [-77.31245031533928, 34.62878439227465], [-77.3126886413435, 34.62886906215744], [-77.31295382470981, 34.62926754274217], [-77.31322659464867, 34.62954314192813], [-77.31349561629555, 34.62996689928683], [-77.3135401668685, 34.630031157008766], [-77.3135490264864, 34.63005253636475], [-77.3136369208075, 34.630432649957974], [-77.31363731179178, 34.63043982785157], [-77.31365265123532, 34.630781079277455], [-77.31361992996497, 34.63086419373596], [-77.31366147599493, 34.63097741346111], [-77.31381229942201, 34.63127965678387], [-77.31404262318685, 34.63165023368495], [-77.31441457930009, 34.631782072712454], [-77.31456415953994, 34.63183645930829], [-77.31489230226317, 34.631955769673596], [-77.3149043450384, 34.63196039988271], [-77.31494978659089, 34.631992917968645], [-77.3152839816925, 34.63223349754253], [-77.3153391696807, 34.632247438768545], [-77.31539216765536, 34.632309244906715], [-77.31603661376029, 34.63279404389748], [-77.31617188755462, 34.632894607511595], [-77.31638079021931, 34.632914097348376], [-77.3165264638136, 34.63299774658374], [-77.31666672970718, 34.63306290198788], [-77.31673968573378, 34.63310750955373], [-77.31708025708197, 34.633315744606755], [-77.31710973586684, 34.633333768803354], [-77.31713065906538, 34.63336282840834], [-77.3173557769677, 34.633728044432345], [-77.31739371853166, 34.63391930947597], [-77.31755929867563, 34.6341221330227], [-77.31757864593794, 34.63444875255575], [-77.31758735279904, 34.63454027327925], [-77.31759178179458, 34.63467487133502], [-77.3175464033477, 34.63538985783345], [-77.31752904412521, 34.63573728503575], [-77.31756438128143, 34.63587657654403], [-77.31777511373507, 34.63620247975772], [-77.31788698617535, 34.63638571686314], [-77.31806061231887, 34.63650031421594], [-77.31829589833926, 34.63672408655544], [-77.31843332690302, 34.63676249398084], [-77.31854171221725, 34.63681143591714], [-77.31869026418347, 34.636821992555454], [-77.31876375798778, 34.636813939359634], [-77.31885479898082, 34.63676566670453], [-77.31914205986484, 34.636576587783836], [-77.31933866221577, 34.6364884642172], [-77.31936654723702, 34.63645256886973], [-77.31959593240988, 34.63637486767878], [-77.3196286958362, 34.636363728509494], [-77.31963341929197, 34.63636213728716], [-77.31963962547992, 34.636360178187196], [-77.31993445659259, 34.63626710936879], [-77.3201626561933, 34.636195073320735], [-77.32032959739331, 34.63614237438337], [-77.32057766948938, 34.6362820535884], [-77.32098239124448, 34.63629334750781], [-77.32117760862953, 34.636081365328835], [-77.32148836211772, 34.63614443456821], [-77.32184006872878, 34.636192220510154], [-77.32221033011146, 34.636438423206485], [-77.32242685653975, 34.63658240007584], [-77.32256176283173, 34.636598185970385], [-77.32277604738144, 34.63663389270714], [-77.32296484234706, 34.63666535206216], [-77.32320449358033, 34.636610704599285], [-77.32350100196422, 34.63675191749056], [-77.32355979667089, 34.63678604445951], [-77.32381226909231, 34.636934343059224], [-77.32392185693764, 34.63699503787211], [-77.32394853616461, 34.63701387781722], [-77.3240031613409, 34.63703657238651], [-77.3244150823713, 34.63723821498981], [-77.32462004480288, 34.637283806674674], [-77.3246711140885, 34.63730534399246], [-77.3249098107832, 34.637292049183344], [-77.32494199363487, 34.63729295555825], [-77.32497098618236, 34.63728570795399], [-77.32517877220768, 34.63720956361519], [-77.3252348065007, 34.63715696196306], [-77.3253930302622, 34.637075986675725], [-77.32567092470309, 34.63680786909263], [-77.32573057892267, 34.63672387479228], [-77.32577443742635, 34.63665587054788], [-77.32598757455156, 34.63642142737956], [-77.32631546050376, 34.636161743770145], [-77.32664084405563, 34.63623929229175], [-77.32665732222527, 34.63624358342637], [-77.32694615026098, 34.63611428588162], [-77.32723640261102, 34.63624518132464], [-77.32728868201885, 34.63622597625825], [-77.32732900428849, 34.636214636437366], [-77.3275283623547, 34.63613113688541], [-77.32757599323328, 34.636111630897666], [-77.32758351940527, 34.63610010072132], [-77.32772716620953, 34.63591913896272], [-77.3278530188835, 34.635848025390146], [-77.32807093946808, 34.63563472727561], [-77.32810301431365, 34.63560280418845], [-77.32811931905682, 34.63558002347014], [-77.3283524148602, 34.6351741285299], [-77.32835108179964, 34.63516713231207], [-77.32833273665527, 34.634754836095574], [-77.32854436963804, 34.63450837172938], [-77.32869722601508, 34.63450151509479], [-77.32912175833577, 34.634552196409146], [-77.32919479885216, 34.63455928875955], [-77.32925022820324, 34.63455469861816], [-77.32979718322092, 34.634515648280995], [-77.32982385007395, 34.634503728819354], [-77.32989432450445, 34.634540632698034], [-77.32990899338623, 34.63462006895098], [-77.3301357523618, 34.635097490431406], [-77.33019713670964, 34.63534307761592], [-77.33032974362187, 34.63542899092066], [-77.33047647634129, 34.63548370875242], [-77.33050306994286, 34.635495089713544], [-77.33051338458652, 34.63549781456484], [-77.33067141094538, 34.63553635928409], [-77.33099134919593, 34.635630874543], [-77.33101109193261, 34.63563383140846], [-77.33102494979423, 34.63563302739953], [-77.33104970273662, 34.63564811310652], [-77.33134730851839, 34.63571404618287], [-77.33145270603703, 34.63572805971525], [-77.33151185197703, 34.635736400800944], [-77.33155166208307, 34.63573825742199], [-77.33167450830382, 34.63574935677257], [-77.33181296228447, 34.635730828013365], [-77.33198353509444, 34.635694172139644], [-77.3321745392712, 34.63565312505506], [-77.33229397681968, 34.63564603461334], [-77.33243342681115, 34.63564293274194], [-77.33260517532958, 34.63560166663213], [-77.33270891172074, 34.63556653625404], [-77.33275334538723, 34.635542491046394], [-77.3328601275285, 34.635443846003554], [-77.33288835218328, 34.63541777218454], [-77.33289822735554, 34.63540967066523], [-77.33293737751703, 34.635290922532754], [-77.3328076683824, 34.63501602086918], [-77.33280001192435, 34.63498890349306], [-77.33279421732006, 34.634986784474386], [-77.332554499683, 34.63490097070778], [-77.33245751157075, 34.63486638499672], [-77.33219023556065, 34.634748508480826], [-77.33210629960531, 34.63471149035759], [-77.332076903497, 34.63469852579274], [-77.33192147284949, 34.63449751888552], [-77.33175719764901, 34.63428507421492], [-77.33172560856373, 34.634246064599694], [-77.3316706462388, 34.63359595352521], [-77.33177893357015, 34.63343810616048], [-77.33189853447101, 34.63314145127717], [-77.33208257892798, 34.632999366607294], [-77.33223112249584, 34.63278473218668], [-77.33242431917454, 34.632505574725634], [-77.33244146375247, 34.632313847312815], [-77.33306409726049, 34.63157380804238], [-77.33306151673932, 34.631558276964334], [-77.33310297865862, 34.63151940447911], [-77.33415004194106, 34.630543014031744], [-77.3350382792446, 34.6313029174718], [-77.33492322962078, 34.63250749314782], [-77.33487514596646, 34.633013281644025], [-77.33483904323086, 34.63321824091595], [-77.33477880680337, 34.63367369209637], [-77.33475229757072, 34.63387412848748], [-77.33479704376924, 34.63390526146205], [-77.3347334501802, 34.63445423563862], [-77.33463494153008, 34.63455115784063], [-77.33444920836993, 34.634759706099395], [-77.33441105414605, 34.63482047607688], [-77.33458505344417, 34.63547288097654], [-77.334827923041, 34.63551196841322], [-77.33484821510366, 34.63552587621784], [-77.33493805182798, 34.6355366170925], [-77.33512311645516, 34.63555562986121], [-77.33515765758345, 34.63555988860956], [-77.33521624529456, 34.63557237264581], [-77.33567941579403, 34.63560227417793], [-77.3358909720674, 34.6360233489462], [-77.33609233084206, 34.63593278382753], [-77.33603108919844, 34.63623061687918], [-77.33605361894348, 34.63635430066272], [-77.3360551659541, 34.63664930787282], [-77.33626716304167, 34.6367346445659], [-77.33671577699353, 34.63698064785105], [-77.33672107581398, 34.636984002505535], [-77.33672477988519, 34.63698702755072], [-77.33675862546609, 34.63701261002124], [-77.33710296201303, 34.63727607526283], [-77.33714064257863, 34.63730136101817], [-77.33721924942031, 34.63733354974913], [-77.33745054847557, 34.63741281157991], [-77.33766899036502, 34.63740335880807], [-77.33789373184914, 34.63740522509191], [-77.33807638518154, 34.637341139517275], [-77.33829266196852, 34.63731662928075], [-77.33847774789376, 34.63758282788628], [-77.33866265511895, 34.63773214730466], [-77.33882557480398, 34.63788344279863], [-77.33885843880529, 34.637918551296615], [-77.33898941829402, 34.63793459871982], [-77.33912543417162, 34.63796396579523], [-77.3391584213312, 34.637946785386504], [-77.33916866082045, 34.63792837257138], [-77.33920403010232, 34.63790514316207], [-77.33927354582167, 34.63785948751023], [-77.33929758372956, 34.63784277431767], [-77.33937735226047, 34.63778959535684], [-77.33943617301927, 34.63773591192377], [-77.33956573007416, 34.63763185145437], [-77.33992156392208, 34.6373846612376], [-77.33995762493576, 34.63733050141176], [-77.33999442238107, 34.637327852028356], [-77.34004250596801, 34.637296323358036], [-77.34028048900424, 34.637158380378004], [-77.34039774702856, 34.63707418120518], [-77.34055951566296, 34.63695387783718], [-77.34066906288736, 34.636860061255874], [-77.34078325702033, 34.636766872655556], [-77.34083282007572, 34.63672090295563], [-77.34100634676875, 34.636536042048334], [-77.34109751167561, 34.6364450719534], [-77.3411223543448, 34.63641623067943], [-77.34116115616872, 34.63637051537391], [-77.34141416048172, 34.6360214356223], [-77.34150048848377, 34.63590193719445], [-77.34159047790513, 34.63571220087915], [-77.34165483332383, 34.63557890065386], [-77.34172757358735, 34.63544876624016], [-77.34184711172611, 34.63509118277094], [-77.34187008045566, 34.63500720584165], [-77.34186821597675, 34.634829495566436], [-77.34179572940624, 34.634709586040984], [-77.34171745924057, 34.63460615952034], [-77.34167784118083, 34.63455390103], [-77.34150492430322, 34.63440071556796], [-77.34122661887241, 34.63390136776762], [-77.34119708956098, 34.63386213396079], [-77.34117058896445, 34.63383723576416], [-77.34095877963313, 34.63359449864303], [-77.34058392713926, 34.633073772491784], [-77.34089004037705, 34.63222622120543], [-77.34089396868065, 34.632199480450325], [-77.34089737303889, 34.63218675117015], [-77.34089310452765, 34.6321678310269], [-77.34087611042892, 34.632156890572105], [-77.34067753284657, 34.631794931634815], [-77.3405455245348, 34.631707971133025], [-77.34032977318947, 34.63142067110144], [-77.34020800245975, 34.63122820264974], [-77.34002098607684, 34.63108711296434], [-77.33999005438496, 34.63108571541153], [-77.33980121568888, 34.63117912044204], [-77.33972696407754, 34.63121688711288], [-77.33960786235879, 34.63126843971905], [-77.33943349173887, 34.63134940151423], [-77.33930304520449, 34.631381206419206], [-77.3389553609596, 34.63141234808079], [-77.33878631120965, 34.63131459925508], [-77.3382514571312, 34.6308619482722], [-77.33825111468144, 34.630510666922035], [-77.33823943944736, 34.63001960538719], [-77.33777819101387, 34.62948298334014], [-77.33761772879268, 34.62946871293543], [-77.33724201891201, 34.62931250737612], [-77.33663924324317, 34.62911006353505], [-77.33638728907525, 34.62893255674606], [-77.33573784119997, 34.628598807456704], [-77.33497824565879, 34.62800983444405], [-77.33540691102918, 34.629254004522195], [-77.33530059776177, 34.629578943402336], [-77.33529843634443, 34.62964345504224], [-77.33528111150133, 34.62979970909899], [-77.33510480700843, 34.629605810827414], [-77.33489056409054, 34.627980405152904], [-77.3348607980015, 34.62790014977457], [-77.3340342655694, 34.62637675893333], [-77.33354644401854, 34.626049859190054], [-77.33320179682568, 34.62368148985375], [-77.33367628806468, 34.62304992903185], [-77.3338886518973, 34.62286596226011], [-77.33456200000788, 34.62228264265831], [-77.33499640317753, 34.62200700089287], [-77.33545252143298, 34.62227599700483], [-77.33637819034172, 34.62251271444661], [-77.33656415271423, 34.62265361353973], [-77.33731073441407, 34.623188543311], [-77.33757686732297, 34.62335860906284], [-77.33775902866105, 34.623448881634964], [-77.33785612405856, 34.623496997939164], [-77.33820767017957, 34.62370853504841], [-77.33822122967528, 34.62372124452043], [-77.33855782860056, 34.624067956298695], [-77.33857814688548, 34.6241229687352], [-77.33869332708946, 34.62480640930417], [-77.33865368542034, 34.6248987914643], [-77.33853927786127, 34.62532982278267], [-77.33854284059217, 34.62534091133409], [-77.3389191026278, 34.625706352768816], [-77.33894317579933, 34.62572195062893], [-77.3389626701885, 34.62572521111779], [-77.33927125212172, 34.62576179242627], [-77.33951347288289, 34.62571502182764], [-77.33958194631637, 34.62571510328904], [-77.33966841112199, 34.625716994918704], [-77.34017116782641, 34.62556073869793], [-77.34018839732884, 34.62554737462041], [-77.34019396068965, 34.62554050791841], [-77.34020530687398, 34.62552979664372], [-77.3405556823208, 34.62521103322736], [-77.34070538334342, 34.6249343229057], [-77.34093989260201, 34.62458495878971], [-77.34097467499394, 34.62426778380411], [-77.34117511881783, 34.62408611218086], [-77.3413284015825, 34.62368762730522], [-77.34139234958843, 34.62332331222718], [-77.3415704267619, 34.62286746762946], [-77.34173522457375, 34.62230899690857], [-77.34220694386569, 34.62187901802294], [-77.34234919808873, 34.62154784857879], [-77.34251734947036, 34.62120835574045], [-77.34363668005864, 34.6216827075699], [-77.34478293450738, 34.622168461073485], [-77.34531612855935, 34.622394404395365], [-77.34664517813874, 34.62295758544291], [-77.34669219603879, 34.62297993731902], [-77.34671978448637, 34.62300849073866], [-77.3467913241836, 34.62302694773789], [-77.3476340816758, 34.62341092755253], [-77.3480251377999, 34.6236120669969], [-77.3478254137305, 34.62399250012204], [-77.3477718903213, 34.624490850342156], [-77.34788768282993, 34.62471784546315], [-77.34804400099017, 34.62489558181052], [-77.34808150192558, 34.62489881376309], [-77.34839583747782, 34.62497775798375], [-77.34859783507, 34.624946918339994], [-77.34886145682889, 34.62495984717914], [-77.34899334054643, 34.6247655933611], [-77.34925256503554, 34.62479840678398], [-77.34964370596796, 34.624816435735326], [-77.34997036918627, 34.624660820679395], [-77.35022828015205, 34.62453997065755], [-77.35065923156799, 34.6243088161495], [-77.3508061813717, 34.624230326286195], [-77.35086655714704, 34.624163186199155], [-77.35090547040501, 34.62406044323339], [-77.35129706026471, 34.62348780336599], [-77.35140825829728, 34.62333458928871], [-77.35174355803355, 34.622524541711456], [-77.35185714168082, 34.62241934138938], [-77.35187439721904, 34.62223814598432], [-77.35201764003281, 34.621866323296985], [-77.35222982423085, 34.62106805886655], [-77.35261378135395, 34.621139021849636], [-77.35279535633057, 34.6212565775147], [-77.35307401611166, 34.621426103792174], [-77.35326860630227, 34.62151179184281], [-77.35357147853715, 34.621667767370596], [-77.35387833229267, 34.62175756726326], [-77.35405690182138, 34.62178618700418], [-77.3545951548406, 34.62157720548204], [-77.35484561458448, 34.62129526431116], [-77.35542137046124, 34.62064938682107], [-77.35563458286884, 34.620303590999825], [-77.35573217978815, 34.62008997668276], [-77.35580432641657, 34.619974611783306], [-77.35604963004997, 34.61953676632477], [-77.35642354264235, 34.61929324363981], [-77.35656811136536, 34.61917124690304], [-77.3571051591506, 34.618938348815696], [-77.357182573194, 34.61889533553271], [-77.35721217531108, 34.618884851449295], [-77.35728283882102, 34.61883670734395], [-77.35769122730018, 34.61852064346763], [-77.35777554583541, 34.618417337341626], [-77.35800096266914, 34.61815326393327], [-77.35809265418933, 34.61804584784076], [-77.35839524886568, 34.617992685395144], [-77.3586087161911, 34.61806750770951], [-77.35878940211596, 34.61809819732099], [-77.35893320655343, 34.61809588123969], [-77.35902860403432, 34.6180700758373], [-77.35918364211396, 34.61802813715564], [-77.35935221100978, 34.61797818275013], [-77.35937531457438, 34.617968978777256], [-77.35935135541285, 34.617766029654774], [-77.3593057095431, 34.61764133698719], [-77.35924470085757, 34.61756910182139], [-77.35918388573968, 34.617530060194724], [-77.35909417899259, 34.61747512843201], [-77.35889760902063, 34.617406773312496], [-77.3587897670296, 34.617359340294136], [-77.35854193962464, 34.617300340920096], [-77.35814088651303, 34.617091112745], [-77.35806569330805, 34.61703282573051], [-77.3580015558585, 34.61697508558639], [-77.35775674905828, 34.61672183675091], [-77.35768564016908, 34.616647934978786], [-77.35740097453771, 34.61634847816842], [-77.35731898457993, 34.61624669923444], [-77.35721359582718, 34.61611587223891], [-77.35688765685481, 34.61592438061024], [-77.35668264654875, 34.61587987064861], [-77.35642534810532, 34.615837229476654], [-77.355814812195, 34.6157276002195], [-77.3558039565115, 34.61554946565514], [-77.35593750132283, 34.61486084527047], [-77.35571226420807, 34.613964109364446], [-77.3554047404503, 34.61323928989667], [-77.35550659633739, 34.61223305580888], [-77.35642756428952, 34.6116169306671], [-77.35649962907891, 34.61146109052498], [-77.35721594356603, 34.61156215485093], [-77.3575715102014, 34.61161231962347], [-77.35763252680931, 34.611620928063985], [-77.35800419762833, 34.61175150413092], [-77.3581936415302, 34.611988902072824], [-77.3584218800457, 34.61235496526424], [-77.35879205154656, 34.61275139536832], [-77.35879224131084, 34.612751660397706], [-77.35879247371082, 34.612751831481646], [-77.35919326291994, 34.61311094330499], [-77.35925542865515, 34.6131845177822], [-77.35948769081409, 34.61350088739373], [-77.35952700407645, 34.613552331883064], [-77.35957999636454, 34.61360457092033], [-77.3598261741115, 34.61403591132591], [-77.36008161951129, 34.61426451753519], [-77.36028349432397, 34.614326501469364], [-77.36036802181276, 34.61432298729616], [-77.36046695286412, 34.61431560973719], [-77.36076220896851, 34.61432389738107], [-77.36103319160786, 34.61426029531061], [-77.36115643035166, 34.61425150592299], [-77.36127827108245, 34.61422350721251], [-77.36155066692751, 34.614144678429], [-77.36188995010943, 34.61406342964382], [-77.36194488451211, 34.614076937627736], [-77.36200646951819, 34.61405380380448], [-77.36222270027335, 34.6139563631515], [-77.36231507005988, 34.613917140328496], [-77.36230310827237, 34.613559222150904], [-77.36229805954434, 34.61352096264456], [-77.36230871287883, 34.61348644367022], [-77.36233938421391, 34.61338637172311], [-77.36239868031032, 34.61314567294504], [-77.36241658592192, 34.61307934855004], [-77.36246107207909, 34.61294209832828], [-77.3625024823117, 34.61281781835835], [-77.36260997491661, 34.61262695857141], [-77.36273401320953, 34.61239471241913], [-77.36281069290526, 34.612256034808986], [-77.36285695713858, 34.61216685380632], [-77.36304740025055, 34.61180218832814], [-77.36309659485634, 34.61170780553836], [-77.36309696038066, 34.611673768771155], [-77.3631684944979, 34.611272901066556], [-77.36322241046685, 34.610941369508225], [-77.36329596716222, 34.61065012681107], [-77.3630879848609, 34.61043538152114], [-77.36331304464602, 34.610176468132124], [-77.36352342179558, 34.61001163226954], [-77.36374374160681, 34.60972904710578], [-77.36397585949155, 34.609458462760955], [-77.36415031800304, 34.609259112990664], [-77.3643120979381, 34.60921984883364], [-77.36460607559138, 34.60894318399107], [-77.36466604619544, 34.60889108332356], [-77.36470642888926, 34.608827616987725], [-77.36492601831277, 34.608472569112905], [-77.36500505160782, 34.608358070678], [-77.36510084139377, 34.60823476601616], [-77.365392263903, 34.607980890182276], [-77.3654457971809, 34.607920043875154], [-77.36549516671737, 34.607836294984914], [-77.36571565893777, 34.60750977532891], [-77.36573070290773, 34.60733653113733], [-77.36588961792226, 34.60712630685023], [-77.36609641793092, 34.60703040026444], [-77.36611365466564, 34.606844554846376], [-77.36633374087154, 34.606942487430565], [-77.36667809679358, 34.60669866619581], [-77.36678040607208, 34.60661753043435], [-77.36707231077203, 34.60654027362169], [-77.36737476757904, 34.60642178559462], [-77.36745045847464, 34.60639358804008], [-77.36746652537705, 34.60637646069187], [-77.36750667313973, 34.60635955476246], [-77.3679970540279, 34.60605439123783], [-77.36825501309994, 34.605885884057074], [-77.36831889236547, 34.60586128288819], [-77.36858994661756, 34.60575841777086], [-77.36864921818409, 34.60573237764997], [-77.36874270585551, 34.60569956666738], [-77.3690434185619, 34.60558728269919], [-77.36923199035319, 34.605508329830506], [-77.36924052260463, 34.60550304465886], [-77.36930604020961, 34.6054363085511], [-77.36943766995313, 34.605302230807546], [-77.36946934227561, 34.605271059573056], [-77.36965877490042, 34.60505729020346], [-77.36983193849163, 34.60496361563307], [-77.37008283390813, 34.60475815317212], [-77.37017082750921, 34.60468585502885], [-77.37022622831583, 34.604558064008515], [-77.37037259419176, 34.604291865620965], [-77.3702601483469, 34.603919787679864], [-77.37028318850432, 34.60388018325462], [-77.37024923540736, 34.60386056512196], [-77.37012421329491, 34.603792886438285], [-77.3698324312109, 34.60363515296874], [-77.3697797946279, 34.60358484002666], [-77.36945462306707, 34.60359251841731], [-77.36943823438213, 34.60379891700728], [-77.36942008642451, 34.603985006224256], [-77.36942041083783, 34.604004432886335], [-77.3694135034109, 34.60403197283156], [-77.36943812555077, 34.60408844044164], [-77.3695083364837, 34.60441632860477], [-77.36947797405807, 34.60446377681145], [-77.36943797631616, 34.604485719064655], [-77.36919505959213, 34.60462439194041], [-77.3690437523083, 34.60470843797668], [-77.36872108969592, 34.6048771886278], [-77.36864953221989, 34.604915335116715], [-77.36861556491735, 34.60493286700628], [-77.3685346593492, 34.60498109864745], [-77.3682552786727, 34.60520309801255], [-77.36810861648041, 34.60530906932931], [-77.36786107457031, 34.6053583003968], [-77.36762826556796, 34.60536238525252], [-77.36746692803055, 34.60536521605361], [-77.3671819850839, 34.60529346971361], [-77.36707281033965, 34.6053002297036], [-77.36699138486851, 34.60529103020402], [-77.36672323887137, 34.60524192673512], [-77.36667869578505, 34.60522886981384], [-77.36660632928961, 34.605258759641465], [-77.36636381217627, 34.6053791194616], [-77.36593284061243, 34.60578028378278], [-77.36589008447456, 34.606006487036026], [-77.36549936434388, 34.60627105813245], [-77.36510165122455, 34.6063318573304], [-77.36490322456288, 34.60614233817569], [-77.36431332381966, 34.606399506128255], [-77.36405693067327, 34.60662339738666], [-77.36385207164183, 34.60657659467084], [-77.36378338918243, 34.60636801210744], [-77.36395954816282, 34.60606437261362], [-77.36409949539173, 34.605425897634994], [-77.36419369191974, 34.60518155537282], [-77.36413587715398, 34.60499808078206], [-77.36379428821883, 34.60438994418956], [-77.36400121128734, 34.604022839255435], [-77.36404492449579, 34.6039293080438], [-77.36431454318343, 34.60360667706393], [-77.3643855600146, 34.60353217645685], [-77.36451130306374, 34.603437610784766], [-77.36488156355199, 34.60314576307145], [-77.36510310265369, 34.60293594303475], [-77.36511230654786, 34.60292652980836], [-77.36510311811509, 34.602899878228015], [-77.3650003897403, 34.602628870039844], [-77.36497210199599, 34.602522159529805], [-77.36493110982939, 34.60234251584875], [-77.3646715460573, 34.60171631984749], [-77.3645379094804, 34.60149594250769], [-77.36431598629409, 34.60031794924082], [-77.36425345320231, 34.60014573394302], [-77.36425911692987, 34.60001607156967], [-77.3643161637727, 34.59991455954056], [-77.36488533408101, 34.59890174877305], [-77.3652599239616, 34.59823516267271], [-77.36551153848643, 34.59778742190179], [-77.365893824258, 34.597107122560416], [-77.36726245186526, 34.596472717543506], [-77.36747052832058, 34.59640271604722], [-77.36805053735327, 34.59676008824951], [-77.3676869665741, 34.59618746661645], [-77.36761935387723, 34.59603703444742], [-77.36780965940812, 34.59483623072197], [-77.36767382631183, 34.59449113169654], [-77.36767884051784, 34.59426692479796], [-77.36747190027745, 34.59302408590284], [-77.36743976606657, 34.59286129990001], [-77.36739944061515, 34.59283241671433], [-77.3672857984192, 34.59264812304212], [-77.36694935643783, 34.59204811641925], [-77.36711420529387, 34.59163841080194], [-77.36711531554779, 34.59159966174844], [-77.36712149298077, 34.59155236970776], [-77.3670784245919, 34.59154547625087], [-77.36703566754812, 34.59156507598518], [-77.36668425549473, 34.5917622177527], [-77.36645866634828, 34.59187579019851], [-77.36589606882436, 34.591826139548786], [-77.3652109521046, 34.59218725319367], [-77.36510772115865, 34.592254827771846], [-77.3650719635336, 34.59227993793231], [-77.36494378437564, 34.59233690435133], [-77.36431940550911, 34.592593505974435], [-77.36408987480313, 34.59245985046269], [-77.36387686044245, 34.59211840036509], [-77.3638852936048, 34.591640194991385], [-77.36353193520627, 34.59106075952256], [-77.36347279535104, 34.59091426039015], [-77.36334300192829, 34.59086916130735], [-77.36293012005608, 34.59072801963288], [-77.36274401917672, 34.59054939633186], [-77.36238357570043, 34.590619001995115], [-77.3622954004056, 34.59065413754677], [-77.36195579660023, 34.59070289735321], [-77.36177443337493, 34.59067042755728], [-77.36160948416351, 34.590642747233424], [-77.36163372823057, 34.59034352032839], [-77.36189081727673, 34.59022911898456], [-77.36194635872593, 34.59021070333162], [-77.36195603089352, 34.59020990718705], [-77.36196478677275, 34.59020903758071], [-77.3623501734848, 34.590062578720435], [-77.36259080413086, 34.58996298476343], [-77.3627443220168, 34.5898994453103], [-77.36300050703835, 34.589793412004624], [-77.36313846887933, 34.58973631069956], [-77.3632211416977, 34.589702092764014], [-77.36335260746367, 34.589594114269325], [-77.36353267961921, 34.58942998619388], [-77.36368270129057, 34.58928358923021], [-77.36379540021312, 34.58910580727921], [-77.36371867619437, 34.588916719691696], [-77.36363264311832, 34.58870468615316], [-77.36362559824147, 34.58860599846647], [-77.36367737014288, 34.58842908406532], [-77.36375807700223, 34.588262071333446], [-77.3639273620048, 34.58807593244822], [-77.36408688956502, 34.58796198991615], [-77.3641947474349, 34.587911203262124], [-77.36432151479569, 34.58787524871421], [-77.36466069555938, 34.587766733651], [-77.36476911827307, 34.5877495673646], [-77.36510980291982, 34.58750043120034], [-77.3653870657512, 34.58747711653269], [-77.3656858109644, 34.58736397945141], [-77.3658980273337, 34.58725652536389], [-77.3659692371247, 34.58717125827006], [-77.36606702731186, 34.58708049485358], [-77.36636741672378, 34.586693585443136], [-77.36668653199905, 34.586335867382736], [-77.36693582691123, 34.586106270716286], [-77.36722490826135, 34.58579533548862], [-77.36742640000682, 34.58523897114608], [-77.36740791007948, 34.58518917200622], [-77.36721823750989, 34.584644378317165], [-77.36675782904835, 34.58443367494912], [-77.36612798126212, 34.584278001293924], [-77.36589927749701, 34.58435784328918], [-77.365412666796, 34.58410297381409], [-77.36511129210001, 34.58412150379228], [-77.36486351640852, 34.58443965099768], [-77.36459431429479, 34.58474522287929], [-77.36445869347193, 34.58491111306109], [-77.36432284740013, 34.58491240564025], [-77.36424375681412, 34.58488092788332], [-77.36417793975961, 34.584805176331855], [-77.36387343210482, 34.584484330378935], [-77.3637305478969, 34.58423110209705], [-77.36364361643129, 34.58403300080287], [-77.36384283370252, 34.583672992678544], [-77.36390278810367, 34.58354242999839], [-77.36397540423047, 34.58351114775044], [-77.36432355741209, 34.58333934101642], [-77.36454876024231, 34.583296182111354], [-77.36459834118779, 34.58304642068234], [-77.36488488142109, 34.58276056577742], [-77.36485169535638, 34.58244133228729], [-77.36472268728774, 34.582179404925085], [-77.36471812018445, 34.58217204725433], [-77.36450080619693, 34.5820210179097], [-77.36432440471901, 34.58146719726059], [-77.36425571380336, 34.581471543770334], [-77.3635361769841, 34.5818231336498], [-77.36298598506403, 34.58158035792041], [-77.3629011695045, 34.58142785332895], [-77.36274832136397, 34.581375751150226], [-77.36249688814846, 34.58080166839977], [-77.3626804987777, 34.57999990094476], [-77.36260835556102, 34.57993651048003], [-77.36196109098222, 34.579649557245475], [-77.36154409974179, 34.57968990613404], [-77.36152061371553, 34.579244009780474], [-77.36151397503087, 34.57887802419988], [-77.36142029859825, 34.57867524305148], [-77.36126651650264, 34.57843148489316], [-77.3611967563898, 34.578416632768345], [-77.36117365762121, 34.57840440425325], [-77.36114235904549, 34.57841564135461], [-77.36092770921334, 34.57848026212126], [-77.36038549735392, 34.578652864012525], [-77.35991524415249, 34.578968602094264], [-77.35959692649385, 34.5796948016191], [-77.35924364112157, 34.580040444845515], [-77.35880862874362, 34.580173879368395], [-77.35830912323266, 34.58024448860736], [-77.35802054916712, 34.580223954174535], [-77.35753086772107, 34.58013978748539], [-77.35704775816598, 34.58008701338062], [-77.35659424033022, 34.57926489663221], [-77.35649230409817, 34.57911873117698], [-77.35646854312648, 34.57909684811091], [-77.35644512239081, 34.57898321928182], [-77.35629892295457, 34.578455301961746], [-77.35628919219131, 34.57829886203626], [-77.35605164975908, 34.577993747976365], [-77.3559893066553, 34.5779846520683], [-77.35565779350226, 34.57770711038327], [-77.35540803657389, 34.57757657979755], [-77.35507155119123, 34.577407761053436], [-77.35486991973528, 34.57743102376975], [-77.35414486572805, 34.57697684238322], [-77.35405122057762, 34.57695609091081], [-77.35403009984121, 34.576925786848555], [-77.35344539356825, 34.576847024730654], [-77.35329421780034, 34.576826660330454], [-77.35264878048457, 34.57697083386006], [-77.35250622306737, 34.576778480527395], [-77.3521830921744, 34.57634247792557], [-77.35250677564136, 34.57585535744697], [-77.35260346161422, 34.57553686459779], [-77.35290096146765, 34.575554769318174], [-77.35310371501825, 34.57556697120498], [-77.35329487765392, 34.57570673209604], [-77.35353840861859, 34.5755606627568], [-77.35368898014116, 34.57554234029336], [-77.35396837523564, 34.575360078161914], [-77.35408311876806, 34.57531300245896], [-77.35414429599473, 34.57527704920186], [-77.35422357066902, 34.5751997426809], [-77.35426354042946, 34.57499977448133], [-77.3540832591416, 34.57507120097249], [-77.35385195988093, 34.57465361597215], [-77.35336466004517, 34.57454870660547], [-77.35329557058336, 34.574532142724955], [-77.3532560829792, 34.574532423979974], [-77.35301961880707, 34.57452390329027], [-77.3525818292981, 34.57450690081907], [-77.35250762652323, 34.57443578356888], [-77.35195118762678, 34.57442813791664], [-77.3517198270172, 34.574105013894204], [-77.35113941467371, 34.574169085501026], [-77.3509317818047, 34.574180222348794], [-77.35073276602608, 34.5742182933691], [-77.35014360728914, 34.57445880657614], [-77.34967656275278, 34.574501712426326], [-77.34935559779842, 34.57446987172056], [-77.34916949398512, 34.57442935772197], [-77.34880272228864, 34.57428156601229], [-77.34856773125249, 34.57425922109102], [-77.34846766167325, 34.57422191684263], [-77.34841010420621, 34.57433805175397], [-77.34836591084434, 34.57456166481241], [-77.34829137751018, 34.574906901170124], [-77.34836788495105, 34.57519321984728], [-77.34841095123771, 34.57535519278632], [-77.34842605877664, 34.57588242289877], [-77.34834580113863, 34.576045491348054], [-77.34820218560118, 34.57652294624192], [-77.34777815658205, 34.57665840826873], [-77.34727220036551, 34.57704903213275], [-77.34719957872815, 34.57728560263419], [-77.3470223227174, 34.57793407117948], [-77.34698925329347, 34.577982332560836], [-77.34662499843523, 34.57799122524438], [-77.34622696569727, 34.57802070871601], [-77.34620119364229, 34.57801607835397], [-77.34616643068334, 34.57801973462585], [-77.34541319677675, 34.57795677478531], [-77.34495699905867, 34.5778736599749], [-77.34462540879123, 34.57759622540411], [-77.3441612587726, 34.5774965109048], [-77.34396666559243, 34.577385348127194], [-77.34421334511674, 34.57619488457652], [-77.34462655922022, 34.57593557051649], [-77.34476614709897, 34.57586168002839], [-77.34502073856635, 34.57568836910718], [-77.34503481223118, 34.57568784995338], [-77.34502749566973, 34.575673738310094], [-77.34502075104653, 34.57567024807471], [-77.3446854723868, 34.57565965971823], [-77.34462676579862, 34.57563763295608], [-77.34404563061128, 34.575592079472855], [-77.34383898974349, 34.575296834547785], [-77.34353130793154, 34.57503984500883], [-77.34324777329046, 34.574868901918975], [-77.34314211462487, 34.574671275953264], [-77.34305145451036, 34.574626884329696], [-77.34279106968037, 34.574577824693165], [-77.3424388640885, 34.57453681558507], [-77.34226335253332, 34.57475873389029], [-77.34211976008582, 34.574548650104845], [-77.3416383855917, 34.57463857539579], [-77.3414752928197, 34.57482895395389], [-77.34116071453795, 34.57504197686325], [-77.34068691414377, 34.575327310095005], [-77.3405570789591, 34.575327677075066], [-77.34033105901904, 34.57550007539058], [-77.34006287338264, 34.57571563316297], [-77.33979624010428, 34.575687302998105], [-77.33911049131783, 34.57584584631951], [-77.33900144146178, 34.575808793437275], [-77.33845504804925, 34.57591273042469], [-77.33832235026611, 34.57600353726187], [-77.3379681588952, 34.576221282120045], [-77.33753396040925, 34.57647679390218], [-77.33723437513174, 34.57647160756592], [-77.33709458068368, 34.5768145086869], [-77.33674550798618, 34.577017958149035], [-77.33645770212267, 34.57721600369711], [-77.33635127386611, 34.57729361123679], [-77.33631632023747, 34.577313291769734], [-77.33595717536033, 34.57739573977076], [-77.3355887502474, 34.57748318089325], [-77.33553347682235, 34.57749536975257], [-77.33516899325349, 34.5775775046869], [-77.33485863838831, 34.577650691188424], [-77.3343807791976, 34.57779411887522], [-77.33386256252825, 34.57783743974558], [-77.33359266156876, 34.577888036242406], [-77.33336745603482, 34.57795678134507], [-77.33303963629645, 34.57799317416312], [-77.33280451088392, 34.57801927622918], [-77.33251668605874, 34.578011526802605], [-77.33233200933894, 34.57800822373433], [-77.33201677870848, 34.5776509157458], [-77.3318210410203, 34.57778333276629], [-77.331895255163, 34.57756188932888], [-77.33197386139202, 34.57750421684485], [-77.33201692672748, 34.577475395453234], [-77.33214408051279, 34.57738920187102], [-77.33241117336485, 34.5772038360162], [-77.33250114550958, 34.57714715881512], [-77.33273181957742, 34.57709626517332], [-77.33280529411996, 34.577080054449304], [-77.33286894788924, 34.5770659760271], [-77.3331578031295, 34.57700068007161], [-77.33319938516156, 34.57699060244055], [-77.33323399216025, 34.57698221517225], [-77.33359348963428, 34.57688383159338], [-77.33399107212108, 34.576839915387005], [-77.33420191978155, 34.57638126539343], [-77.33418833633525, 34.57574329247417], [-77.33419172430412, 34.57553365136587], [-77.33407215684662, 34.57521603514247], [-77.3340487429523, 34.57512966483956], [-77.33402961629368, 34.575088627486835], [-77.33387724540633, 34.574729776363384], [-77.33398406950812, 34.574295873705736], [-77.3339715742855, 34.57429167806623], [-77.33398629645104, 34.57428596081673], [-77.33399355456116, 34.57428430037375], [-77.33438372533729, 34.57418391623948], [-77.33465696305456, 34.57406292339094], [-77.33509463451064, 34.573789113762224], [-77.3351720770666, 34.57375553921998], [-77.33521481616815, 34.57373445485493], [-77.3352527750231, 34.57368296447656], [-77.33559502019116, 34.57323996097868], [-77.3359606883566, 34.5729921436123], [-77.33609369060082, 34.572856188712095], [-77.33651214192169, 34.572907782735214], [-77.33674868448671, 34.572989161242894], [-77.33705770683991, 34.57309041455715], [-77.33736411396617, 34.57319365688675], [-77.33753648131434, 34.573241059955095], [-77.33763282429365, 34.57323698450317], [-77.33773345020502, 34.57327963514035], [-77.3378327718764, 34.573206734372164], [-77.33793055000012, 34.57314964777739], [-77.33810746019397, 34.57303854048374], [-77.33832470256777, 34.572948214500435], [-77.33864022517139, 34.57277140542445], [-77.33868582557189, 34.57272924587896], [-77.33866119815474, 34.57234384705602], [-77.33870369661025, 34.57193020105264], [-77.33870795221377, 34.57191258283727], [-77.33861129148573, 34.57180980451517], [-77.33835283959388, 34.57153910106948], [-77.33833991629363, 34.57152574819981], [-77.3383258155138, 34.5715055672962], [-77.33806912267231, 34.57115535300742], [-77.33802811573356, 34.57105786623212], [-77.3378497620201, 34.5707623509112], [-77.33773786027373, 34.57056369625418], [-77.33753866717777, 34.570442958169295], [-77.33732295092409, 34.570221646394124], [-77.33702907581441, 34.570031265132364], [-77.3368691327336, 34.56992707970885], [-77.33675121988516, 34.56978359146188], [-77.33641866947204, 34.56962842119663], [-77.33605582078926, 34.569421541961276], [-77.33596358704105, 34.56937109584519], [-77.33591503880939, 34.5693946438592], [-77.33534875730086, 34.56961052966565], [-77.33517534948913, 34.569713508221504], [-77.33482055796884, 34.56988185806538], [-77.3347812137887, 34.569902298629096], [-77.33476012595419, 34.569910207107974], [-77.33438708744241, 34.57007757484876], [-77.33412673559428, 34.5701680517824], [-77.33399298045693, 34.57022718292169], [-77.33375876892123, 34.57050141082415], [-77.33371613219302, 34.570634122992104], [-77.33359843100381, 34.57090871206521], [-77.33346004119655, 34.57124460987829], [-77.33320436339682, 34.57143018222426], [-77.33280980250561, 34.57168794928394], [-77.33222752351344, 34.571792337629326], [-77.33202166825811, 34.57186648946306], [-77.33183230161161, 34.57183147688622], [-77.33171123321141, 34.57164479847681], [-77.33169412095569, 34.57129379049527], [-77.3316710575373, 34.571179919087925], [-77.33165759907038, 34.57080342961273], [-77.33164067338265, 34.57036869151386], [-77.33148113143113, 34.569979716262], [-77.33179903329568, 34.56969213512444], [-77.3320235967679, 34.569592463685794], [-77.33245356828118, 34.56937681775036], [-77.33281188888903, 34.56920064328808], [-77.33297223052257, 34.56908899183344], [-77.33320604014092, 34.56899505762743], [-77.33359054252507, 34.56883778659772], [-77.33360015256783, 34.56883386290547], [-77.33360592586799, 34.56883144229079], [-77.33361528749127, 34.56882387756996], [-77.33363879125896, 34.5687789118498], [-77.33391626928903, 34.56835607163516], [-77.3336389793556, 34.568012496263606], [-77.33361358134675, 34.56797504358158], [-77.33360855072974, 34.56796749258242], [-77.33360087374157, 34.5679657853454], [-77.33353022260987, 34.5679108442818], [-77.33320715755701, 34.56765769733092], [-77.33318074163645, 34.567641204053466], [-77.33309089255606, 34.56750021116671], [-77.33293351640296, 34.56722372199853], [-77.33298048018519, 34.567037256609325], [-77.33281396563886, 34.56672983815216], [-77.33260418550945, 34.566421982501716], [-77.33260908567121, 34.56579382745631], [-77.33248216844683, 34.565590443248965], [-77.3324967617708, 34.56524517471616], [-77.33281504785572, 34.56544418723348], [-77.33284397373558, 34.56550720797611], [-77.33287039575363, 34.56553463810596], [-77.33360237917046, 34.56615573897442], [-77.33366540340879, 34.566201478650946], [-77.33378176425829, 34.56625270814048], [-77.33389115136546, 34.56635016631522], [-77.33399618600818, 34.56634694986041], [-77.33410033638184, 34.566419182030884], [-77.33412899913296, 34.566484089203264], [-77.33432880574783, 34.56659860801285], [-77.33438991509547, 34.566634849734186], [-77.33451231564095, 34.566704187422474], [-77.33459619613701, 34.56676230693141], [-77.33478367185634, 34.566892205167065], [-77.33486549549912, 34.56694599395402], [-77.33504613027007, 34.56706159190078], [-77.3351774342764, 34.56714555586733], [-77.33540774038428, 34.56729257930176], [-77.33548696296779, 34.56737198519794], [-77.33568884610162, 34.56737892381038], [-77.33596514144077, 34.5674340126924], [-77.33616295397056, 34.56739541483887], [-77.33635916052697, 34.567373377210764], [-77.33654225155368, 34.567326727917845], [-77.33675326976308, 34.56719835225222], [-77.3368520809004, 34.56719139671677], [-77.33687933986809, 34.567081004547624], [-77.33684337053482, 34.56675835115894], [-77.33683443183627, 34.56666291988907], [-77.33675413730145, 34.56610606659451], [-77.3367204296167, 34.565866757115124], [-77.33670230298743, 34.56583283459012], [-77.3364675702361, 34.56555730311017], [-77.33637816495263, 34.56545489718143], [-77.33637027160562, 34.565445718430155], [-77.33636072199016, 34.56541933402155], [-77.33619261778807, 34.565057033101894], [-77.33617803409751, 34.564831964333344], [-77.33611004914806, 34.564373327238684], [-77.33610624971152, 34.56422036839147], [-77.33608443445695, 34.56409784127288], [-77.33596820758791, 34.56362242173379], [-77.33593656342309, 34.56342995155216], [-77.33592513399638, 34.56339732660421], [-77.33580921591646, 34.56324232400299], [-77.33541859507619, 34.56262107125986], [-77.33529976997838, 34.56251038646771], [-77.33518122730271, 34.56248782286957], [-77.33486969121384, 34.56236414854431], [-77.33476091555559, 34.5623196453446], [-77.33439369286084, 34.562050873331685], [-77.33427705833749, 34.562061788609554], [-77.33380493096779, 34.56200397935952], [-77.33360596142975, 34.56185939631267], [-77.33324737427205, 34.561621703641336], [-77.33310908083709, 34.56156827852202], [-77.33281804950278, 34.56188553743366], [-77.33257136045879, 34.561915488074256], [-77.33203021558163, 34.56181941424427], [-77.33185472478469, 34.56162454179145], [-77.33124286473674, 34.56119533738152], [-77.33100195152969, 34.5609685780163], [-77.33109728838325, 34.56069504067386], [-77.33109795503077, 34.56053816685097], [-77.33103867328224, 34.5592271998537], [-77.33095598307817, 34.55901719712455], [-77.3307765699503, 34.55874776843722], [-77.33068809206762, 34.558566073916595], [-77.33105348973352, 34.55815506906054], [-77.33113007759246, 34.5580129132683], [-77.3312058269367, 34.557963076101736], [-77.33121458752355, 34.55755059437338], [-77.33118205516699, 34.55751581154881], [-77.33078564806121, 34.55739234561545], [-77.33050190328382, 34.55714829127307], [-77.33047836529435, 34.55712732941155], [-77.3302687486081, 34.55681798006633], [-77.33025214331096, 34.55667021511549], [-77.32990906771367, 34.5563381668103], [-77.32986786931548, 34.556235818715066], [-77.32979748365277, 34.55620910687375], [-77.32973891082712, 34.556187769447384], [-77.32951174971458, 34.555942560465546], [-77.32927510897804, 34.55583138653433], [-77.32923308063106, 34.55567067090599], [-77.32896662561427, 34.555627711371926], [-77.32877717883783, 34.5555328174081], [-77.32873712236224, 34.555419080098154], [-77.32860007494939, 34.55518411973605], [-77.32836407509328, 34.55498306663313], [-77.32819901008075, 34.55486732099294], [-77.32783938319305, 34.55479413286854], [-77.3277129739851, 34.55458701336814], [-77.32742292475362, 34.55447153526991], [-77.32718586947311, 34.55466276582733], [-77.32705543416614, 34.554948935819006], [-77.32680182209756, 34.555207585358254], [-77.3266185569796, 34.555291050524175], [-77.32630677031527, 34.555278727027826], [-77.32605134176094, 34.55518105531308], [-77.32583499435023, 34.555216468391855], [-77.32553743113016, 34.55520356556177], [-77.32505052469948, 34.555180862766264], [-77.32361494305304, 34.555175895182636], [-77.32350417466557, 34.55517675195453], [-77.32348021265497, 34.55516856039765], [-77.32327948864908, 34.555097915836484], [-77.3219210611943, 34.55467791463771], [-77.32168975259054, 34.55461832623623], [-77.32165596820774, 34.554478096045145], [-77.32099628653863, 34.55417749110417], [-77.32093613919946, 34.55409188498175], [-77.32051406139658, 34.55375140467965], [-77.32042023042938, 34.553676375519224], [-77.32040948631118, 34.55365600105997], [-77.32037492600955, 34.553630622525134], [-77.32017354690817, 34.553585597272914], [-77.31959464052929, 34.55341653488157], [-77.31942657512758, 34.55343402488243], [-77.31881701964572, 34.55308859480383], [-77.31870523163447, 34.55301426880466], [-77.3186617799244, 34.55294972783249], [-77.31833874909074, 34.552692147881075], [-77.31815539325008, 34.55253284253485], [-77.31824367821055, 34.55239808082356], [-77.31803400931781, 34.552060652848766], [-77.3182592496498, 34.551659703753366], [-77.31886567456847, 34.55100685516457], [-77.31887798508546, 34.55096727820457], [-77.31889987662836, 34.55095703447573], [-77.31888110871205, 34.55095092209498], [-77.31900385275507, 34.55003484343977], [-77.31897214264444, 34.5499674070182], [-77.3189739447337, 34.54991554278934], [-77.31889393646777, 34.54979765966229], [-77.31863055631356, 34.55001647361615], [-77.31855030717568, 34.55023587442469], [-77.31881027589158, 34.550934305912186], [-77.31808408729347, 34.5508496391015], [-77.31779762342067, 34.55111536358068], [-77.31786569438744, 34.551468053943296], [-77.31727947731373, 34.55167677952441], [-77.31667929273692, 34.55188403963268], [-77.31648955945825, 34.55187538355787], [-77.31627085028742, 34.55195941564523], [-77.31569824396178, 34.55213351458603], [-77.31524464898645, 34.55217912710846], [-77.31538058449375, 34.552441755681755], [-77.31497216161178, 34.552941330205286], [-77.31494744370994, 34.55302814085298], [-77.31514812393942, 34.55345438135621], [-77.3149251583763, 34.55394201066542], [-77.31504515998351, 34.554448409578896], [-77.31506481155401, 34.554801580482724], [-77.31563828189194, 34.55469493527866], [-77.31601674367353, 34.55504701771768], [-77.316359427973, 34.55523890361059], [-77.31683611537913, 34.55539267737349], [-77.31719062954343, 34.55547517733104], [-77.31749648091085, 34.55556521906913], [-77.31718119974344, 34.55609693664621], [-77.31717952499693, 34.55610036533632], [-77.31717752648684, 34.55610161861833], [-77.31717587024235, 34.55610617157316], [-77.3171688503455, 34.556106273689835], [-77.31638173107015, 34.55648339951667], [-77.31616734773317, 34.55660344592887], [-77.31585374928616, 34.55710056744845], [-77.31595756079962, 34.55725510485186], [-77.31591125665052, 34.55747248133754], [-77.31573286755923, 34.559122272885396], [-77.31572095864227, 34.55924756789465], [-77.31550270998582, 34.560486352189415], [-77.31537889744826, 34.56118822820419], [-77.31536000858303, 34.56125788726172], [-77.31322874019341, 34.56399218093951], [-77.31252068973927, 34.565061817680025], [-77.31238061778937, 34.565137272154296], [-77.31232907986053, 34.56530177819004], [-77.3119510127552, 34.56813576577997], [-77.31128469796595, 34.56863548488572], [-77.30993314465988, 34.56964913018453], [-77.30917182993952, 34.570220119622185], [-77.30813654975202, 34.570202894323714], [-77.30601997079539, 34.57017074401669], [-77.30423494255416, 34.56964733346348], [-77.30326296707027, 34.569362327465385], [-77.3028693266871, 34.569107820141156], [-77.30193885681061, 34.56897403455139], [-77.30225310251855, 34.56993171305055], [-77.30165651424777, 34.57132119323055], [-77.30039419918184, 34.574330686044284], [-77.29891429041842, 34.57527069702414], [-77.29807969481871, 34.57391606861903], [-77.29751360674639, 34.5734550706643], [-77.29703247443808, 34.57309076826612], [-77.29591842214779, 34.572024410842914], [-77.2954333112862, 34.57149341569726], [-77.29504777197351, 34.57095553701478], [-77.29517660944985, 34.57021095814585], [-77.295197096972, 34.56946990636648], [-77.29537407702915, 34.569220453891504], [-77.29525370754625, 34.56895336813874], [-77.29498982041076, 34.568945944288274], [-77.29402165997126, 34.56837040999347], [-77.29347982649334, 34.56812532446191], [-77.29333280359332, 34.56796668645957], [-77.29284939782107, 34.567880798753876], [-77.29213290928621, 34.56778759249534], [-77.29096375972846, 34.56806756119519], [-77.29090150990979, 34.56802709603323], [-77.29082497031594, 34.56805077774489], [-77.28988711175268, 34.56790453358771], [-77.28956170675863, 34.56772483703398], [-77.28936483433131, 34.56751398755141], [-77.28910764620568, 34.56715350632099], [-77.28877932584413, 34.56688624330748], [-77.28873550009453, 34.56662362848177], [-77.2887876653387, 34.566515665789666], [-77.28857815192202, 34.566533793202865], [-77.28820729440434, 34.56658217836487], [-77.28793733779763, 34.56672912754321], [-77.28785583533373, 34.56723241947432], [-77.28815226510147, 34.56752050339012], [-77.28786110004559, 34.567975465577945], [-77.28769684079074, 34.56842740932776], [-77.28787640926122, 34.56869451212379], [-77.28771462287776, 34.56915936320043], [-77.2874386731021, 34.56934979710576], [-77.28699856853851, 34.56965899601668], [-77.28691201988474, 34.56975991259514], [-77.28685927190614, 34.56977564937363], [-77.28673310175955, 34.56985796791319], [-77.2864607359611, 34.57021569411173], [-77.28648192792257, 34.57068111688368], [-77.28648068367185, 34.57068748071057], [-77.28713233062228, 34.57106166043941], [-77.28766173133381, 34.571017132983684], [-77.28776125277254, 34.57096398066653], [-77.28790588559065, 34.57108951136695], [-77.28770570995516, 34.57123694780516], [-77.28720047891825, 34.5713370438796], [-77.2868997530354, 34.57152178846704], [-77.28555728257089, 34.57118371555242], [-77.28520439310671, 34.57116585286624], [-77.28353941877258, 34.571500559125596], [-77.28307983571207, 34.57160932280116], [-77.28292423008973, 34.571823382412134], [-77.28280953085786, 34.57206343411374], [-77.28230271740074, 34.572717236804166], [-77.28192682025856, 34.573212531258164], [-77.2814996291005, 34.57359683241061], [-77.28110744994751, 34.57417109154985], [-77.28116862844962, 34.574513494948036], [-77.28144109283366, 34.57478094406689], [-77.28125222650135, 34.575241152992575], [-77.28111873974184, 34.57545223164233], [-77.28125228587214, 34.5755865828519], [-77.28075501497665, 34.5763663250035], [-77.28076763129691, 34.576503090628336], [-77.28093649997265, 34.57664930956264], [-77.28103669414688, 34.57713714321013], [-77.2812795221568, 34.577350163864516], [-77.28138536853662, 34.577428559671084], [-77.28169499435367, 34.57762533143998], [-77.28198707578495, 34.57790551113256], [-77.28237636512259, 34.57810487296216], [-77.2828115043553, 34.57841308948953], [-77.28323043489533, 34.57878043823306], [-77.28384350090279, 34.57924104213064], [-77.28425077356732, 34.5795482845711], [-77.28501252737036, 34.57984139522097], [-77.28568390304078, 34.58031614220101], [-77.2870182825101, 34.58045994301181], [-77.28890842146133, 34.58495313405212], [-77.2890158607232, 34.585284638086435], [-77.28771490081643, 34.588254813064644], [-77.28743905728305, 34.5889203842586], [-77.2873633570309, 34.588950207028184], [-77.28503997861522, 34.58988809864595], [-77.28328934265039, 34.590380791787084], [-77.28173145929743, 34.590916984331024], [-77.28017377586458, 34.5911499031533], [-77.27912496612915, 34.59182751205005], [-77.27588498392583, 34.59330730326859], [-77.27504575406783, 34.59337964260534], [-77.2744532884824, 34.5937818510597], [-77.27521490503841, 34.59401595513215], [-77.27332804121832, 34.59710976452784], [-77.27315755356784, 34.59745072275143], [-77.27298811861709, 34.597789560382374], [-77.27178150808477, 34.60099217751849], [-77.27174401544372, 34.60111032195367], [-77.27168366075955, 34.60121761545184], [-77.27145023087554, 34.60207525881468], [-77.2705865325633, 34.60520994805869], [-77.2702430482679, 34.605484750864534], [-77.26937360900521, 34.60618032839395], [-77.26868697780166, 34.60652609827644], [-77.26864129509319, 34.606766190204425], [-77.26749078533612, 34.60769262278476], [-77.26672059834686, 34.608256902220276], [-77.26660902823532, 34.608311506607215], [-77.26648598916881, 34.60823846279], [-77.26604900544899, 34.607736972439795], [-77.26532538634103, 34.60751545237979], [-77.26435017605685, 34.60690343456918], [-77.26332031559683, 34.60610426515395], [-77.2629176534528, 34.60560813534343], [-77.26201857019561, 34.6048372010177], [-77.26186828634856, 34.60434920536878], [-77.26128669456376, 34.60480569653964], [-77.25991303023704, 34.60488056848067], [-77.25856468376325, 34.60501440973235], [-77.25747651346548, 34.60564465047513], [-77.2569086752643, 34.60675041238126], [-77.2569646746592, 34.607489716642675], [-77.25560351971376, 34.60763952852649], [-77.25480695682575, 34.60920533042575], [-77.25400812081513, 34.6107755306786], [-77.25411455361245, 34.61103619670362], [-77.25375877580609, 34.61125747465853], [-77.25298006675376, 34.611914839405785], [-77.25018069581319, 34.61333424170995], [-77.2467925840569, 34.61423052692949], [-77.24596706997812, 34.614845908017834], [-77.2458893361991, 34.6160448004684], [-77.24549166573536, 34.616902303318284], [-77.24495645571989, 34.617856692089184], [-77.24434937586092, 34.61866610418277], [-77.24175570897118, 34.62075908703993], [-77.24124550484878, 34.621164879320396], [-77.2409843895848, 34.621314600436115], [-77.23769614955725, 34.62326745366923], [-77.23463576329372, 34.624585040189565], [-77.23255924512041, 34.62559425588084], [-77.2304914332546, 34.6273787070522], [-77.2296499703405, 34.62796272236608], [-77.2265986517688, 34.629848420606805], [-77.22437671966043, 34.631317568588955], [-77.22359492994609, 34.63176429839439], [-77.2215353577668, 34.63468085907367], [-77.22161759013477, 34.63487071331967], [-77.21979626934083, 34.63826994476541], [-77.22026105267044, 34.638534514928935], [-77.22024530107669, 34.639305108275934], [-77.21914308835272, 34.63875399820001], [-77.21839369405147, 34.638794355131886], [-77.21433774093087, 34.63931068466408], [-77.21434778807885, 34.64030694300144], [-77.21438169615041, 34.64148975374804], [-77.21439071135173, 34.6417602912183], [-77.2143949851133, 34.64184227156524], [-77.21456883723823, 34.64214651954458], [-77.21504747122309, 34.64298415783976], [-77.21552328959608, 34.643816825209676], [-77.21608179973467, 34.64479421259827], [-77.21707321521683, 34.64516562818895], [-77.21822744583906, 34.64591574713975], [-77.21911343206625, 34.64734171125109], [-77.21943876792588, 34.64789683907007], [-77.22014407024739, 34.648425829187055], [-77.22075799968462, 34.64888627187387], [-77.22197104209911, 34.64921219205378], [-77.22218001886871, 34.64999860578518], [-77.22276903743207, 34.65157792809977], [-77.22285048285298, 34.651822275469364], [-77.22278798213121, 34.65193201515613], [-77.22300204450099, 34.652276950166296], [-77.22116703849757, 34.653689515223746], [-77.22064335481151, 34.655439522972664], [-77.21824460449486, 34.65384519564731], [-77.21363020580472, 34.653094584529725], [-77.21240464412014, 34.652788300925884], [-77.21202955285223, 34.652788307035216], [-77.21174739417134, 34.65278830433852], [-77.20774491978939, 34.65159111202921], [-77.20612335101106, 34.651122226886166], [-77.20413293251328, 34.650458755606365], [-77.20355047897954, 34.65021994739885], [-77.20230841254785, 34.649652837064764], [-77.20048712386405, 34.64892389118626], [-77.19526628858908, 34.647871982927434], [-77.19449881438611, 34.64772490810792], [-77.19436568185941, 34.647682587953895], [-77.19415315749714, 34.64765832343758], [-77.19430807349613, 34.64779617887987]], [[-77.32430491264118, 34.763229650904606], [-77.32600725062969, 34.761563463685924], [-77.32703198764644, 34.76053880562962], [-77.32641862318438, 34.759287494225404], [-77.3245667414354, 34.75786189110317], [-77.32459276913553, 34.757537967882385], [-77.32412362503423, 34.75779698848338], [-77.32398635977572, 34.757839891453486], [-77.32293809020476, 34.757753385466685], [-77.3224063313957, 34.75771653159911], [-77.32230535715962, 34.75771963326028], [-77.322193114282, 34.75769966807573], [-77.32176533838056, 34.75766583444637], [-77.3214197956158, 34.75761204128087], [-77.32118217112367, 34.757350765026736], [-77.3209287936713, 34.757201208638236], [-77.32074918451394, 34.757040007398466], [-77.32050550041848, 34.756738340196975], [-77.32028921203687, 34.75649833467083], [-77.32060934531309, 34.7561239312081], [-77.32061683959144, 34.75596610307965], [-77.3206333251637, 34.75585191249618], [-77.32073381992718, 34.75546271876878], [-77.32077285324306, 34.75535058314756], [-77.32088061049735, 34.75508741983542], [-77.32103328805036, 34.754934340509244], [-77.32143540500434, 34.75468122082408], [-77.32172826490627, 34.75456176321141], [-77.32186668095812, 34.75450989514959], [-77.32210882176608, 34.754425720002104], [-77.32250431659739, 34.75424549399607], [-77.32267610252839, 34.754124900469805], [-77.32277606003757, 34.75381094960461], [-77.32280769490312, 34.753716574480826], [-77.32306540975897, 34.753194450683566], [-77.32306572628089, 34.753193865514305], [-77.32306592878867, 34.75319349112496], [-77.32306679030998, 34.753191994276854], [-77.323404464591, 34.75266009958893], [-77.32358756708533, 34.75237890950605], [-77.32397870207707, 34.75209407077895], [-77.32437579204473, 34.75180060475661], [-77.3246941334321, 34.751716441395416], [-77.32489069318154, 34.751791470634956], [-77.32527455344038, 34.75178054221448], [-77.32541467725854, 34.75178281545553], [-77.32575526239651, 34.75174630062437], [-77.32588770559357, 34.75173210082414], [-77.32601145970554, 34.75171819795767], [-77.32672936884047, 34.751717227735], [-77.32674005337142, 34.75261905521689], [-77.32675526605843, 34.75268841398677], [-77.32673374942422, 34.75273944624154], [-77.32658385024622, 34.75368662653738], [-77.32746645106218, 34.75454302648112], [-77.32787635578325, 34.75501408461661], [-77.32851722256703, 34.75537119159231], [-77.32948064117578, 34.755857015066894], [-77.33032659255097, 34.75628358769147], [-77.33155717850462, 34.75690409069661], [-77.33155399589646, 34.756967730710365], [-77.33159994026124, 34.756925652168555], [-77.33285477578858, 34.757493214222436], [-77.33362712826874, 34.75807934456536], [-77.33534180449496, 34.75768760587847], [-77.33612809842872, 34.757719561183976], [-77.33701087540362, 34.75745131480354], [-77.33778737428224, 34.75730095295921], [-77.33873187087299, 34.757006013244784], [-77.33881272286429, 34.756932695639726], [-77.33910947005157, 34.75684357165309], [-77.33940224306505, 34.7567607532831], [-77.33946708603551, 34.756745413243394], [-77.33992111020696, 34.75663800363432], [-77.34003735063688, 34.75663679204816], [-77.34011671735003, 34.75664010968139], [-77.34018862257908, 34.75663161889293], [-77.34023604411311, 34.75668910078124], [-77.34024577570808, 34.756737964373784], [-77.34029546298203, 34.75677930021163], [-77.34034686201255, 34.756857325270616], [-77.34050347605336, 34.75709416516932], [-77.34051964010108, 34.75711864792974], [-77.34053155986129, 34.75713595340473], [-77.34075809468507, 34.757379510502936], [-77.34092055286496, 34.75756998759331], [-77.34093654164583, 34.75758644089912], [-77.3409582115935, 34.75759073903733], [-77.34100633668562, 34.75759943176352], [-77.34135127410903, 34.75766173677498], [-77.34152740548664, 34.75769355052645], [-77.3416631414724, 34.75771184489891], [-77.34149064517891, 34.757820019942734], [-77.34135835249442, 34.75791128376844], [-77.34126013559134, 34.75801079622563], [-77.34074623075784, 34.75832001092414], [-77.34051663119433, 34.75844224141228], [-77.34017400773261, 34.758566873286476], [-77.34006480901039, 34.75860326462511], [-77.33980349215881, 34.758697907443945], [-77.33950230621215, 34.75882029028908], [-77.33936083093147, 34.75896409028013], [-77.33898673800962, 34.75908551039046], [-77.33870051398586, 34.7591747032516], [-77.33843937213604, 34.759155275032555], [-77.33809333792206, 34.75920250307683], [-77.3371611944593, 34.75906017479658], [-77.33703418059295, 34.75901000804594], [-77.33684682406775, 34.759021043324125], [-77.33574909027905, 34.75902316521379], [-77.33399017774974, 34.76046958821815], [-77.33443019082115, 34.761986831308775], [-77.33438826967628, 34.76262061911358], [-77.33466255155267, 34.76276012851537], [-77.33484864163835, 34.76384330867594], [-77.33491705897023, 34.764241512678325], [-77.33506502391302, 34.76510271572678], [-77.33508791583297, 34.76523596460917], [-77.3356800473464, 34.766086417126985], [-77.33588459859429, 34.76620014142467], [-77.33603894078476, 34.76626869260691], [-77.33688428249503, 34.76700828066629], [-77.33700603527197, 34.76706389247493], [-77.33771085575287, 34.767757526829485], [-77.3378646007872, 34.767831313556655], [-77.33795259204047, 34.76792978414953], [-77.33837954111658, 34.768640602616166], [-77.33863725139346, 34.76881398972533], [-77.33866065478657, 34.76908943852262], [-77.33869425404662, 34.76916433065449], [-77.33874672042052, 34.76932003015335], [-77.33888791350998, 34.76940961898107], [-77.33886243429282, 34.76954914893721], [-77.3388170850358, 34.769703221520544], [-77.33861612910964, 34.76976920728995], [-77.3383811122953, 34.76995536612402], [-77.33807174693281, 34.77014491745967], [-77.33796253580249, 34.770222921026985], [-77.33787260016506, 34.77026572226192], [-77.33767584089318, 34.77034134974394], [-77.33739269926858, 34.77035648791232], [-77.33741726570346, 34.77054011447158], [-77.33749237102137, 34.77071171297319], [-77.33763371161058, 34.77108735184916], [-77.33765399219689, 34.77114645616078], [-77.33766397923543, 34.77117556130206], [-77.33767164907995, 34.771241923738856], [-77.33771897279206, 34.77165539484359], [-77.33771871372733, 34.77188501594422], [-77.33778443119334, 34.77261849924324], [-77.3377842529939, 34.77262119142194], [-77.33778379508516, 34.77262330319909], [-77.33778632858628, 34.77262325381076], [-77.3378272435463, 34.77265642176249], [-77.33803294857829, 34.77282594118934], [-77.33803648749043, 34.77283030080971], [-77.33828513278515, 34.772968522660626], [-77.33832871420847, 34.77299274946328], [-77.33838813559422, 34.77302578138318], [-77.33880095635455, 34.7732552656727], [-77.33905516061792, 34.773222657529416], [-77.33936056331866, 34.77337984310567], [-77.33984153080586, 34.77379807337016], [-77.34082339866285, 34.77344005804511], [-77.3410682090128, 34.77370076055537], [-77.34177295312438, 34.77359802895705], [-77.34326796777346, 34.772844094421636], [-77.34381667333146, 34.77249084678273], [-77.3453465402037, 34.77165673507075], [-77.34598251949497, 34.77052229498054], [-77.3470155730763, 34.76867960404103], [-77.34716649151568, 34.76841041347323], [-77.34519245644003, 34.76775756342429], [-77.34438039154804, 34.767552170161544], [-77.34366240718583, 34.76761194458035], [-77.3428163595536, 34.76768709795677], [-77.34244378615031, 34.767809151433134], [-77.34192771971716, 34.76786109394499], [-77.34155715318636, 34.767896634659294], [-77.34142252362216, 34.76785530922709], [-77.34145868017207, 34.767731066205855], [-77.34142179688715, 34.76746169852423], [-77.34144593013536, 34.76724543883799], [-77.34113524517132, 34.76689365819839], [-77.34109909758955, 34.76680562192159], [-77.34079717755729, 34.766388818066844], [-77.34078422158056, 34.76637518487192], [-77.34076200123503, 34.76636446859695], [-77.34068373224163, 34.766250119112016], [-77.34039202674931, 34.76588836406928], [-77.34015245296413, 34.7654732955396], [-77.34004764180865, 34.7653647900141], [-77.33993346076201, 34.76523795418463], [-77.33979959755564, 34.76503430197307], [-77.33972314835886, 34.76482592654486], [-77.33945110771157, 34.76459470704373], [-77.33942165500872, 34.76426938407855], [-77.33920215062236, 34.764141467862046], [-77.33942351610816, 34.7638571261016], [-77.33958978081006, 34.76360094700069], [-77.34003975625185, 34.763126376783354], [-77.34070215516726, 34.76259364690583], [-77.34078384592945, 34.76250889019367], [-77.34084442147845, 34.762454172004595], [-77.34117016268476, 34.76213681175627], [-77.34147203205218, 34.76184188704632], [-77.34182235896672, 34.76134532282982], [-77.34207968947146, 34.76110355343575], [-77.34235748467218, 34.76102105576944], [-77.34265857251616, 34.76099247115397], [-77.34299768359237, 34.760879655456414], [-77.34350894354456, 34.76109302634153], [-77.34353275109446, 34.76109995694799], [-77.34353824049658, 34.761104479919624], [-77.3435439997774, 34.761109225221254], [-77.34401610056244, 34.761498207966845], [-77.34405620570162, 34.761494584878456], [-77.34451327629245, 34.761848900076345], [-77.34470716847449, 34.76192445078309], [-77.34524941071882, 34.76215386913867], [-77.34655166138194, 34.762646214635865], [-77.34654376016027, 34.76273539208306], [-77.34654074855962, 34.76311837138846], [-77.34764134815265, 34.763476785963675], [-77.35097006761598, 34.7643694235892], [-77.35255950062863, 34.762726711219116], [-77.35370993834114, 34.76318733332923], [-77.35488170797346, 34.76223041939866], [-77.35524219901431, 34.76203737712222], [-77.35569577963331, 34.76167493385296], [-77.356027287322, 34.761346084988745], [-77.35604686646549, 34.76132967498727], [-77.35640668904249, 34.76102809221037], [-77.35672266036447, 34.76076326011343], [-77.35677693357187, 34.760717771010746], [-77.35683873808742, 34.76066596902777], [-77.35696651922868, 34.76056656376555], [-77.3570529084028, 34.76056706362731], [-77.35715267589956, 34.7606163894163], [-77.35721581232147, 34.76069557148003], [-77.35725896358386, 34.76080281289914], [-77.3573784963303, 34.76087016781594], [-77.3575968622548, 34.76113065185487], [-77.35760982865949, 34.76132141490078], [-77.35782370068117, 34.76139989612035], [-77.35804873099934, 34.76177231260448], [-77.35813999724687, 34.76203086617033], [-77.35830072720087, 34.76236695861422], [-77.35835320902216, 34.76248898498465], [-77.35843129723845, 34.76266076707056], [-77.35853477580719, 34.76291265218833], [-77.35855029697343, 34.76294931608253], [-77.35855466484979, 34.76296011458924], [-77.35856085025745, 34.762987054265274], [-77.35869105887723, 34.76341737812148], [-77.35868144658161, 34.763651062559354], [-77.35870429539679, 34.76390294583439], [-77.35872628866719, 34.76401080448711], [-77.35875796811455, 34.76437095934741], [-77.3587593449821, 34.7643796099482], [-77.35876049791375, 34.76438261598872], [-77.35876318591447, 34.764391297880366], [-77.35881930662225, 34.76461823565475], [-77.35873136821756, 34.7647953534521], [-77.35869694777347, 34.764878723794745], [-77.35856316228396, 34.765041625561985], [-77.35816035809208, 34.765133868651716], [-77.3579213686417, 34.76518859704632], [-77.35759635500223, 34.765274010034446], [-77.35663305934196, 34.765498761712976], [-77.35588498542282, 34.76567175824538], [-77.35495394200885, 34.767306068666606], [-77.35495786468644, 34.76734144600634], [-77.3561526459046, 34.76796111933452], [-77.35718586416876, 34.76772057679007], [-77.35820380232724, 34.767960664843464], [-77.35830942416639, 34.76797768937166], [-77.35854717083963, 34.76802915628947], [-77.359399746999, 34.76834922967997], [-77.35960393407215, 34.76856830330849], [-77.36036075016915, 34.76906664308311], [-77.36042693284055, 34.76911821359065], [-77.36045534979837, 34.769132575526584], [-77.36049082564168, 34.769146658230454], [-77.36092935062999, 34.76935532078194], [-77.36100367461471, 34.76945360779666], [-77.36114974854222, 34.76970982497175], [-77.3613288613857, 34.76996470552014], [-77.36145544445955, 34.77010709133309], [-77.36168937620306, 34.77037769382889], [-77.36193540565348, 34.77066353408986], [-77.36201263946516, 34.7707632424305], [-77.36216413530916, 34.771072567180425], [-77.3623661802833, 34.771389351009084], [-77.36241009377393, 34.7714615662493], [-77.36246564112713, 34.77162815286485], [-77.36232284011622, 34.771899009452184], [-77.36222685050086, 34.77195666226753], [-77.3622135182599, 34.77196454496396], [-77.36219632093511, 34.77197418720839], [-77.3615261308443, 34.77233777311454], [-77.36143065375364, 34.77240138254707], [-77.36111290556701, 34.77268526631736], [-77.36092943702184, 34.77285935638281], [-77.36053432954536, 34.77327836517649], [-77.36037220643297, 34.7734455018631], [-77.36030351995285, 34.77352045823305], [-77.36018142050482, 34.773682906345456], [-77.35993088441774, 34.77422125093021], [-77.35962909882733, 34.774402884501555], [-77.35932337602463, 34.774725171596934], [-77.35926551698732, 34.775394102080156], [-77.35940571553667, 34.77579078065576], [-77.35940017688128, 34.776000463796116], [-77.35929023106155, 34.77616861277892], [-77.35918417418735, 34.77648410036417], [-77.35910468461398, 34.77661394194808], [-77.35891790006545, 34.77688631794381], [-77.35888245847556, 34.77693774028494], [-77.35886849719932, 34.77697643945301], [-77.3587441487182, 34.77723234707456], [-77.35863636123759, 34.77741084539742], [-77.35844835965675, 34.77778688640913], [-77.35813212040247, 34.77810586265372], [-77.35794632537556, 34.778287817071345], [-77.3578777052694, 34.77835114490419], [-77.35770995110559, 34.77858362303434], [-77.3573833598661, 34.77904023284599], [-77.35734138001872, 34.779194570494354], [-77.35724937085092, 34.77936575257527], [-77.3570834852033, 34.77966354926617], [-77.35699445970056, 34.7799018109847], [-77.35688492310703, 34.78015329282716], [-77.35677083602894, 34.78045739984801], [-77.35671084064447, 34.780651606494615], [-77.35665191156899, 34.78083921935499], [-77.35651138317633, 34.7811410374753], [-77.35643992253583, 34.78148760457062], [-77.3567141577106, 34.782011153041466], [-77.35686953507292, 34.782201296370694], [-77.356913320813, 34.78240018115143], [-77.35678474359851, 34.78255420852527], [-77.35649259935197, 34.78277372258121], [-77.35624853673644, 34.78317487558723], [-77.35617772156697, 34.78326122019345], [-77.35602771679804, 34.78344412056106], [-77.35599953688003, 34.78347848037349], [-77.35599202575824, 34.78350417538551], [-77.35573638586126, 34.78366600402455], [-77.35574906880515, 34.78385564550743], [-77.35546485882446, 34.7841302151596], [-77.35555886747662, 34.784531717398764], [-77.35588092507156, 34.784878944464495], [-77.35598561850085, 34.78524660662238], [-77.35598515141866, 34.78543078155364], [-77.35621689570308, 34.78604284473729], [-77.35621024926078, 34.786068796642944], [-77.3561999791831, 34.78609090810465], [-77.35597353139181, 34.78654519193627], [-77.3556701710778, 34.786722079569884], [-77.35532412611859, 34.78679521606766], [-77.35526471005876, 34.78680777354745], [-77.35519364750814, 34.78683150423272], [-77.35486738730803, 34.78690677729748], [-77.3546276638397, 34.78698362618075], [-77.35436448854574, 34.78710056710207], [-77.35418739421971, 34.78729231952651], [-77.35415516939929, 34.78734704838824], [-77.35404244946393, 34.78754710582204], [-77.35383736652673, 34.78792553061887], [-77.35379854948549, 34.7880209916556], [-77.35375387060677, 34.78808101112038], [-77.35363347651948, 34.788196565889805], [-77.35318748370192, 34.788541774500565], [-77.3530318890642, 34.78867410283081], [-77.3534000000134, 34.78899999999183], [-77.35371296871344, 34.78886977002776], [-77.35375532514956, 34.78883228776919], [-77.35378775822895, 34.78876981321008], [-77.3539588799523, 34.78863634642555], [-77.35393784098316, 34.788553078470834], [-77.35400627694372, 34.78849386014521], [-77.35416014813109, 34.78842716204303], [-77.35421270382885, 34.788215583602174], [-77.35424202515279, 34.7881761947406], [-77.35437903082368, 34.78783926273957], [-77.35456711568338, 34.787913408095804], [-77.35457535086455, 34.78773360476383], [-77.35450884066749, 34.787646115165415], [-77.35466786485648, 34.787486360758194], [-77.35463088112968, 34.78737221123506], [-77.35466972884169, 34.78733236248419], [-77.35480506834102, 34.78729972659979], [-77.35484900101625, 34.7873261208088], [-77.35490365342032, 34.78728925785043], [-77.35510446918374, 34.78729455628899], [-77.35518289469346, 34.78728126239153], [-77.35588150000925, 34.78707222554308], [-77.35588393289186, 34.78707171135408], [-77.3564818367287, 34.786723077106465], [-77.35652883793827, 34.786628786544185], [-77.356708025522, 34.78624299594724], [-77.35682398958544, 34.785790199053366], [-77.3567952450386, 34.7857142814147], [-77.3567956174993, 34.78556741662875], [-77.35692221217623, 34.78519947790892], [-77.35708685026303, 34.784788318548536], [-77.35708259043243, 34.78469636649347], [-77.35697845095311, 34.784368752913096], [-77.35691702495885, 34.78407918935119], [-77.35692523402089, 34.783963090237364], [-77.35698870895152, 34.783545039452015], [-77.35733834961783, 34.783459708905454], [-77.35752035928662, 34.78317186020867], [-77.35775819747099, 34.782834857308536], [-77.35781962141036, 34.78274919783579], [-77.35784236317993, 34.78272531352884], [-77.35784225386618, 34.78268895982642], [-77.35781776522873, 34.78262982388011], [-77.35767560201428, 34.78186582676098], [-77.3574555169932, 34.78166803836263], [-77.35723540412162, 34.78139442790564], [-77.35707997850997, 34.78122122757019], [-77.35716978891622, 34.78093745265451], [-77.35729879614323, 34.780857376858116], [-77.35739596009694, 34.78055854415052], [-77.35741140880718, 34.780337551961836], [-77.35738436945347, 34.780202056176975], [-77.35748031379066, 34.779947672200805], [-77.35752232329438, 34.77981713336041], [-77.35760494058013, 34.77966401164418], [-77.35768087007958, 34.77952687294632], [-77.35783101277133, 34.77936593091824], [-77.35816518673393, 34.778984592252755], [-77.35821920375994, 34.77890973403809], [-77.35827065268232, 34.778862253074585], [-77.35850749503483, 34.77863245008518], [-77.35861845171675, 34.77852304444204], [-77.35879006140358, 34.77834580483829], [-77.35881759089011, 34.77831312108626], [-77.35886859465901, 34.77824558126874], [-77.35898803382368, 34.778093154332865], [-77.359200196317, 34.77766131534739], [-77.35922323294201, 34.77761623474716], [-77.3592129575407, 34.77753986934527], [-77.35917089427146, 34.77722726379718], [-77.3592333220104, 34.77706053349443], [-77.35928314783678, 34.77695741751244], [-77.3592998536227, 34.77693317901282], [-77.35936882553379, 34.776828339939875], [-77.35947022640173, 34.77665642638407], [-77.35950663579845, 34.776596953757156], [-77.35952276627819, 34.776548970388475], [-77.35963348358283, 34.77637964151175], [-77.35983606096893, 34.77615301180809], [-77.35981129460782, 34.77606821473587], [-77.35980059686699, 34.77580434946859], [-77.35980534905579, 34.77562444048324], [-77.35978864843418, 34.77557718764917], [-77.35979554067303, 34.775497503836945], [-77.35993130199913, 34.77535438685951], [-77.36035122626521, 34.7749088061088], [-77.36047484374478, 34.774698876904026], [-77.36055185895762, 34.77442121177724], [-77.36073641193444, 34.774041234567306], [-77.36082864840049, 34.77370424062044], [-77.36112244441254, 34.7732912020172], [-77.36116552049053, 34.773245520129244], [-77.36119306029345, 34.77321938809616], [-77.36146733036796, 34.7729903894429], [-77.361667903761, 34.772879500259045], [-77.36180250103328, 34.772789827898364], [-77.36198877368071, 34.77268877282424], [-77.36248588768257, 34.772410049547574], [-77.36275805479153, 34.772249130561185], [-77.36281878934047, 34.772205784450236], [-77.36285664790516, 34.772177068896724], [-77.36302903479162, 34.77180089678027], [-77.36308991667323, 34.77157968823315], [-77.36298058344633, 34.7714829320331], [-77.36268622526863, 34.7709989785581], [-77.36260932627154, 34.770887242384845], [-77.36253795873836, 34.770797899097175], [-77.36209007188546, 34.770231115918136], [-77.362095856578, 34.77020848445428], [-77.36207364556776, 34.77018756571686], [-77.36201449733699, 34.77014143017923], [-77.36179811730557, 34.76988617530199], [-77.36162025323591, 34.76953965320812], [-77.36160628664378, 34.76951977851576], [-77.36159403223138, 34.76949828398225], [-77.36115069414899, 34.76894742517798], [-77.36100714838219, 34.76887668410589], [-77.3605778988076, 34.76871065290849], [-77.36010704659176, 34.7684186150116], [-77.36004793123091, 34.768383482338194], [-77.36003595636896, 34.76836766773102], [-77.35997918197498, 34.76830969474518], [-77.35954617414654, 34.767845117851635], [-77.35923670973591, 34.767728938995276], [-77.35893225629108, 34.76740045690819], [-77.35859399823596, 34.76699800841563], [-77.35755448537404, 34.76698507579236], [-77.35884540425728, 34.766132493982326], [-77.35901117831929, 34.76588727288689], [-77.35900826626919, 34.765810758942784], [-77.35899667737195, 34.76577399883819], [-77.35928468118868, 34.764853085015986], [-77.35928677727952, 34.7647977581714], [-77.35929101720839, 34.764759173034875], [-77.35927648167551, 34.764648389960364], [-77.35928144386654, 34.764372306142754], [-77.35926326795125, 34.764313600307545], [-77.35916803392332, 34.76406529647544], [-77.35913283061721, 34.76384412070237], [-77.35908789826951, 34.76373269930602], [-77.35906720376592, 34.76338413204597], [-77.3590661208813, 34.76336589359769], [-77.35906299839088, 34.763357620896265], [-77.35905707088307, 34.76334120519093], [-77.35890915588905, 34.76290005524034], [-77.35890179593201, 34.762693140842515], [-77.3587317912066, 34.762437017892445], [-77.35872733515919, 34.762433089920094], [-77.35872399703632, 34.76242537133276], [-77.35859991248502, 34.76213686024354], [-77.35852401393207, 34.761978153484066], [-77.35836538953842, 34.761528777030875], [-77.35831013706051, 34.76143733631421], [-77.35810535375101, 34.76106085412584], [-77.35805263387498, 34.76098086241764], [-77.35797967252742, 34.7608629260605], [-77.35777936333693, 34.76061821703739], [-77.35769881781684, 34.76046452817801], [-77.35756853352513, 34.760215926595585], [-77.35754733173675, 34.76018681209178], [-77.35748568655947, 34.760171144201486], [-77.35717694589124, 34.760077446362374], [-77.35703897870732, 34.7599766126989], [-77.35675305558242, 34.76005841756576], [-77.35636156900354, 34.76032543802566], [-77.35634476793761, 34.76033504579376], [-77.35633290456822, 34.7603449890788], [-77.35597452395261, 34.76064536542805], [-77.35554103082399, 34.761008691746675], [-77.3544566388407, 34.761561642715755], [-77.35425093441846, 34.761671797048166], [-77.35411891097785, 34.76177961266822], [-77.35379968053297, 34.761651796447026], [-77.35374709205429, 34.76034987274085], [-77.35277863390863, 34.75814467479442], [-77.352744402904, 34.75796732594102], [-77.35272975048022, 34.757899569106286], [-77.35269197008348, 34.75773815561058], [-77.35220302874879, 34.756022317471036], [-77.35285483259517, 34.75532945846824], [-77.35293758188959, 34.75494675986599], [-77.3531399145246, 34.75450950992889], [-77.35323107713437, 34.75438624005331], [-77.35338347226204, 34.75391080721714], [-77.35339450842292, 34.75389276226941], [-77.35338953535984, 34.75352911954968], [-77.35338060870302, 34.753423818079675], [-77.3533365711459, 34.7532032108586], [-77.35333180096178, 34.753179314897466], [-77.35312237720068, 34.75297187489735], [-77.35312373472696, 34.75294512739041], [-77.35309841243595, 34.75291991960526], [-77.3529791904632, 34.7528866612726], [-77.35256935957214, 34.7526790630622], [-77.3524732206596, 34.752657010839926], [-77.35226867365503, 34.75260164739445], [-77.35201842014034, 34.752513551028485], [-77.35162755797039, 34.75251897549147], [-77.35118423489757, 34.75257322998395], [-77.35076356115842, 34.75270909106131], [-77.35016105937859, 34.7529434113212], [-77.34959758001425, 34.75345554255359], [-77.3494662277581, 34.753604448434984], [-77.3493966947007, 34.75397048489177], [-77.34905685965836, 34.75445970277231], [-77.34903218351745, 34.75449649707688], [-77.34901006040343, 34.75451091063364], [-77.34831282775572, 34.75495868737077], [-77.34818196511729, 34.755019901518345], [-77.34765584978832, 34.75515804850684], [-77.34719230386345, 34.755419788583296], [-77.3469225915444, 34.755619901108645], [-77.34680273799142, 34.7557129798711], [-77.34670605931473, 34.75580174667302], [-77.34648119265893, 34.75606642596722], [-77.3461373894587, 34.75636713132095], [-77.34609658771969, 34.75640086908321], [-77.34567631860942, 34.75663001093979], [-77.34535273502847, 34.75689909771779], [-77.34528164059293, 34.75697188921916], [-77.34513657402687, 34.75742846382862], [-77.345137731324, 34.757479005229285], [-77.34513633646739, 34.75751065655971], [-77.34500221392393, 34.757947734331744], [-77.34498646050541, 34.75798713064251], [-77.34493869907067, 34.75805680187287], [-77.34474198838123, 34.75835551016484], [-77.34457019426364, 34.75853160106199], [-77.3441450740082, 34.758993163014274], [-77.34407907653781, 34.759044870349115], [-77.34406703038316, 34.759087988220394], [-77.34404513643175, 34.75913803857917], [-77.34407918940988, 34.759219853980476], [-77.3440896105972, 34.75949801929382], [-77.3440935582795, 34.75957172617609], [-77.34410054554905, 34.759702185780824], [-77.34410988657768, 34.759876605697464], [-77.34411947059536, 34.7600555489448], [-77.3441200249019, 34.76006589897908], [-77.34412758160528, 34.760083994177904], [-77.34419151438905, 34.76020802000407], [-77.34433501830539, 34.76040091415565], [-77.34437805791764, 34.76045876695761], [-77.34465632077934, 34.76083279557402], [-77.34421333696609, 34.76081958354633], [-77.34405171171932, 34.760709687580466], [-77.34392916628084, 34.76076667655923], [-77.3437235135598, 34.76059722976313], [-77.34370507139938, 34.76058203441433], [-77.34368549751254, 34.76057441809678], [-77.3436340939538, 34.76056558730188], [-77.34329705338256, 34.76050157153036], [-77.3431155944885, 34.76047398079147], [-77.34274681491023, 34.760417906603024], [-77.34252672392728, 34.76043880155525], [-77.34224423462788, 34.760522693241995], [-77.34186695655706, 34.76064753221468], [-77.34155641992635, 34.76064001227962], [-77.34114899451089, 34.76105644720907], [-77.34079764380843, 34.7612444732511], [-77.34067322165399, 34.76150289800253], [-77.34057923505674, 34.761802794928386], [-77.34033292136691, 34.762109433757956], [-77.33961278978441, 34.762623045670395], [-77.3395383301632, 34.76268218000524], [-77.33946760970824, 34.76271856763745], [-77.33891699238922, 34.76308071681157], [-77.33873439380007, 34.76317983840358], [-77.33869377611767, 34.76321067007058], [-77.33867940901705, 34.76323839008892], [-77.33865418173463, 34.76328275917002], [-77.33837422759194, 34.76376760165202], [-77.33821268709863, 34.76406115232047], [-77.33803907637855, 34.76454394009132], [-77.33807853873736, 34.76478288606588], [-77.3382413874466, 34.76487564059671], [-77.33855378104894, 34.76493657378468], [-77.33882210696206, 34.764938982533046], [-77.33905500265655, 34.765136388900586], [-77.33922193220573, 34.76521124645097], [-77.33930832985465, 34.76532737484835], [-77.33947240846204, 34.765566535086634], [-77.33943386354753, 34.76583664189393], [-77.33954001020464, 34.76651363219219], [-77.33953598458874, 34.76653256612649], [-77.3395373307935, 34.7665454246979], [-77.33955202485447, 34.76655003514599], [-77.33959705462632, 34.76656416360882], [-77.34017551469076, 34.76684313933868], [-77.34025044202127, 34.76692198317453], [-77.34040403831844, 34.767061623461316], [-77.34050294303532, 34.76736661276606], [-77.34050493355959, 34.767374464376246], [-77.34050410520032, 34.76737886077297], [-77.34050210122498, 34.76740386550334], [-77.34047390000941, 34.76786609327876], [-77.34041106311292, 34.76823871626451], [-77.34043603750095, 34.76835865853264], [-77.34072353574365, 34.76870318239733], [-77.34077839761945, 34.7687446574547], [-77.34119628380236, 34.76913802675093], [-77.34160537827664, 34.76917307416438], [-77.34096952858343, 34.769918046557905], [-77.34078848674102, 34.77017281118444], [-77.34078921126644, 34.77025973200365], [-77.3407340130363, 34.77035544247573], [-77.3404033360722, 34.77110829293583], [-77.3401277301199, 34.771325171764744], [-77.33983116422554, 34.77183781823934], [-77.33981293246808, 34.771861977553016], [-77.33937678072597, 34.772402873434345], [-77.33921149167334, 34.772605891225794], [-77.33898375768085, 34.772626523736314], [-77.33866415762247, 34.7727594095072], [-77.33864565334491, 34.77274912311271], [-77.33864229068004, 34.772747253815844], [-77.33850931284248, 34.77265684689908], [-77.33848129227941, 34.77259743238211], [-77.33851682642597, 34.77252076692026], [-77.3385389645444, 34.77243697418589], [-77.33845458299318, 34.77238571306193], [-77.33842424363665, 34.772130999763725], [-77.33839241242532, 34.77188037232252], [-77.33848081168759, 34.77155095806577], [-77.3383218554129, 34.77142138891424], [-77.33827230455233, 34.77113565001524], [-77.33833638284602, 34.771083384847685], [-77.33842523223436, 34.77063278020824], [-77.33852777949777, 34.770569773154506], [-77.33869103467214, 34.770349281408244], [-77.33906579848144, 34.77000864216543], [-77.33913589631979, 34.76998562488057], [-77.33928126817166, 34.769491728878094], [-77.33936294450385, 34.76904445080908], [-77.33929646895403, 34.76900227121939], [-77.33902004334465, 34.76860634514747], [-77.33900803009331, 34.76855444229782], [-77.33900830905762, 34.76852874914357], [-77.33898714648889, 34.76849305762419], [-77.33889177162922, 34.767595633153256], [-77.33855264567543, 34.76730239490959], [-77.33826061787522, 34.76687031489924], [-77.33811945988906, 34.7667267668401], [-77.33791701179712, 34.76635257270072], [-77.33787948805868, 34.766272292674294], [-77.33787104789295, 34.76624973510493], [-77.33760381837129, 34.765822710319064], [-77.33754540189827, 34.76571175865232], [-77.33745338946761, 34.76552523844639], [-77.33722368631986, 34.76517075992521], [-77.33701613245981, 34.76492852837431], [-77.33679562397157, 34.76471152308032], [-77.33659420502778, 34.76435894862571], [-77.33647753864078, 34.76416774066436], [-77.33645401737549, 34.76403083941603], [-77.33640314794283, 34.76373476806798], [-77.33629038838583, 34.76307852665151], [-77.33625578378204, 34.76276160831729], [-77.33615890814221, 34.76212180131199], [-77.33603023009277, 34.76135840631394], [-77.3359296926152, 34.76076190501498], [-77.33677509807396, 34.76078578501795], [-77.33713816461822, 34.761012821126954], [-77.33754262993251, 34.761096798845585], [-77.33780250114657, 34.7611444108079], [-77.33810759933381, 34.761214229890605], [-77.33821390208406, 34.76125629321771], [-77.33862519742651, 34.76123491229677], [-77.33874604438918, 34.76107891757809], [-77.33892457011501, 34.760861793839005], [-77.33900017787971, 34.760757544461725], [-77.33908781765142, 34.76058443488948], [-77.3394122248562, 34.760017146496395], [-77.33943810627616, 34.75972275414075], [-77.33986931848776, 34.759275773255204], [-77.33993465276886, 34.75920331275938], [-77.34001739676606, 34.759155951993755], [-77.3405800842425, 34.758891592469936], [-77.3408499311315, 34.75873751210352], [-77.34122343046457, 34.75850320448366], [-77.34130682110214, 34.75845243949116], [-77.34170419115371, 34.75821765947112], [-77.34201413789252, 34.758080068393376], [-77.34219858623797, 34.75801732429767], [-77.34260784878552, 34.75787810316054], [-77.34267487648546, 34.75786792697712], [-77.34276452473893, 34.75788036736758], [-77.34296508667708, 34.75790002177479], [-77.34328516686655, 34.75773309063136], [-77.34329830230755, 34.75771491947215], [-77.34323124679823, 34.7573987828364], [-77.34292850937295, 34.75729462803356], [-77.34285113691972, 34.757261489335434], [-77.34237226761061, 34.7572708946642], [-77.34225004785097, 34.75726842467505], [-77.34211813805109, 34.75730774388767], [-77.3416507705496, 34.757269124405894], [-77.34141073204576, 34.75722185420189], [-77.34109137581413, 34.757132610997175], [-77.34103080962, 34.75706749373948], [-77.340876865155, 34.75684399242417], [-77.34072989330608, 34.75662138255389], [-77.34066601514962, 34.756534986060586], [-77.34051648721726, 34.75633274520513], [-77.34027513405837, 34.75619636620861], [-77.34024490551198, 34.756147389683726], [-77.34018476623442, 34.75612965032233], [-77.33977918490982, 34.75611129692283], [-77.33927517228105, 34.75606573542729], [-77.3389821277107, 34.75614512359065], [-77.33852045685161, 34.75629073712974], [-77.33815898801289, 34.75635350940637], [-77.33771566528428, 34.756380128064876], [-77.33679386807384, 34.75642072352188], [-77.33647778691994, 34.756516770006854], [-77.33486209950134, 34.756451107812545], [-77.33428028494139, 34.75639736191291], [-77.3341163523612, 34.75639679004588], [-77.33382284730922, 34.75634177438108], [-77.33272911735017, 34.75601326542287], [-77.33194487462876, 34.7556235065627], [-77.33148616952637, 34.75539221195571], [-77.33081897055692, 34.75505577557904], [-77.33025914785104, 34.75475894096179], [-77.32989584098273, 34.75442927348535], [-77.32914214247482, 34.75404109047879], [-77.32888987580492, 34.75376843434972], [-77.32858986015268, 34.753411772989296], [-77.32840823559027, 34.753028755519665], [-77.32837618948204, 34.75246631632968], [-77.32830764607333, 34.752317842607496], [-77.32850811227686, 34.75163225347312], [-77.3287538480408, 34.751439832054174], [-77.32885061913406, 34.751297372086306], [-77.32904554565486, 34.75115617673844], [-77.32886240667852, 34.75110314935083], [-77.32868397685881, 34.7511496936251], [-77.32840864698662, 34.751303303510014], [-77.32822984565001, 34.75138565243388], [-77.32755964956309, 34.7513163533112], [-77.32718582881961, 34.751388255492635], [-77.32685313296737, 34.75144242048296], [-77.32636937731431, 34.75144307425749], [-77.3259583375613, 34.75148925155785], [-77.3257703722546, 34.75150940412034], [-77.32564897387466, 34.75152306119345], [-77.32548269527678, 34.75150473753551], [-77.3253553734286, 34.75150267198195], [-77.32526298931593, 34.75150530213812], [-77.32480625489379, 34.75133096107153], [-77.32428510556372, 34.75146874296557], [-77.32416532010727, 34.75147492200169], [-77.32402781234343, 34.751492198741104], [-77.32343712407393, 34.7519188594065], [-77.32322344251644, 34.752056191897836], [-77.32321342062806, 34.7521989046736], [-77.3231727307759, 34.752323756280035], [-77.32304679573417, 34.75253808294913], [-77.32293751528023, 34.75272406287531], [-77.32280126795804, 34.75295892689495], [-77.32278482723544, 34.75298866044358], [-77.32275950839423, 34.75303546886296], [-77.32264247199518, 34.75325184169355], [-77.32239465035842, 34.753710001461975], [-77.3223612199971, 34.753777730530764], [-77.32234362198083, 34.75383023004147], [-77.32226816711149, 34.754034158389686], [-77.32221038027208, 34.75407660528864], [-77.32198941292387, 34.75415475640606], [-77.32162771468465, 34.754299463237366], [-77.32153486972194, 34.754339314777276], [-77.32149416037595, 34.75435427892949], [-77.32140154747108, 34.75439653947335], [-77.32082618992612, 34.754716019547196], [-77.32059584360158, 34.75483503083555], [-77.32055413346843, 34.75499996489145], [-77.32047938302614, 34.755182037644346], [-77.32034079510316, 34.75551654566332], [-77.32028184975614, 34.75572794756361], [-77.32025963375293, 34.75581398523315], [-77.32008125633023, 34.75603945305244], [-77.3197418297294, 34.75638398383622], [-77.31958450643887, 34.7564925631486], [-77.31948884986502, 34.75660794483254], [-77.3195068586516, 34.756717651343294], [-77.31963172069419, 34.7567624425847], [-77.31988887806551, 34.75704052462016], [-77.31998170222107, 34.75714090173733], [-77.32008615916598, 34.75725969942587], [-77.3202685129793, 34.757475896422335], [-77.32038671773165, 34.75761781860841], [-77.32052448989803, 34.75781233933204], [-77.32062360906046, 34.75791462820871], [-77.32061136720785, 34.7580411219228], [-77.32043330975576, 34.75812574355927], [-77.32014242879605, 34.75826398387393], [-77.31955916987496, 34.75854776329446], [-77.31921311475652, 34.75871729989524], [-77.31957004380969, 34.75903363814322], [-77.32004635150685, 34.75945577261571], [-77.32099898151336, 34.76030003530617], [-77.32290429997806, 34.76198853566663]], [[-77.35832517148077, 34.78695044068937], [-77.35809777962615, 34.786199494908935], [-77.35887472442256, 34.78672173144588], [-77.35923988579776, 34.786569759951504], [-77.36069980171754, 34.785962158134595], [-77.3621596954263, 34.785354539597385], [-77.36312708552114, 34.78495187889233], [-77.36228552069983, 34.784921364872645], [-77.36185437012384, 34.78485520609404], [-77.36050354206384, 34.78477502334855], [-77.3599511595247, 34.78473778353402], [-77.3597731212825, 34.78473426628885], [-77.35947372733379, 34.7846874428849], [-77.35918001123646, 34.78456704697264], [-77.35917354858003, 34.784309624605996], [-77.35917714885368, 34.783918379506176], [-77.35922586295142, 34.783768700515445], [-77.35923193082283, 34.783561477950315], [-77.35922706956825, 34.78320989188872], [-77.35927272484655, 34.78298610468031], [-77.35951678490103, 34.78252973507537], [-77.35973203129188, 34.78226813904092], [-77.35991124367067, 34.78204995307037], [-77.36006355220843, 34.781926375784536], [-77.36013395078024, 34.78184955795731], [-77.36011481644121, 34.78174312465524], [-77.36021981097963, 34.78132037375305], [-77.36003395774098, 34.7808842791695], [-77.36006092280905, 34.78070554422729], [-77.36015592706443, 34.78057984366572], [-77.36031483592853, 34.78023517147724], [-77.3603612524145, 34.78016686211484], [-77.3604934177358, 34.78004585570484], [-77.36064314915602, 34.77987912008992], [-77.36073157762814, 34.779821780122916], [-77.36104145202806, 34.77957243594882], [-77.3611188747483, 34.77939808505487], [-77.36105830824253, 34.77906054177297], [-77.36101180707175, 34.77880139042322], [-77.36101191488409, 34.778692227581224], [-77.36097314357814, 34.77850824693055], [-77.36112061703344, 34.77841365804868], [-77.3612389098626, 34.77832163732106], [-77.36141431403593, 34.77814522706936], [-77.36157893990608, 34.77756370443937], [-77.36170232489647, 34.777365355723134], [-77.36177970711321, 34.77724527751143], [-77.36202063318105, 34.77699710038865], [-77.36206375349092, 34.77696107348748], [-77.3621007213646, 34.77694554808771], [-77.36242152141185, 34.77679744551416], [-77.36280963155212, 34.776634400329534], [-77.3630526117042, 34.77633208287972], [-77.36321727234186, 34.77598922835955], [-77.36338278181934, 34.775716524193854], [-77.36349199038547, 34.77555317660813], [-77.3639179138782, 34.77488291680148], [-77.363998100686, 34.77481340685768], [-77.36397498220153, 34.77478129961261], [-77.36446424282616, 34.774148314212155], [-77.36516612552484, 34.77410369915359], [-77.36529036042845, 34.77400196393772], [-77.3655443929848, 34.773676850127885], [-77.36555283738609, 34.77367181342644], [-77.36555749642025, 34.77367625126765], [-77.36555835600649, 34.7736817361692], [-77.36562024077026, 34.77409639045996], [-77.36569974445473, 34.774290426158515], [-77.36588350939735, 34.77487931042303], [-77.36629577797429, 34.775532208884464], [-77.36690016038807, 34.7751372850409], [-77.36708020112847, 34.77504039696114], [-77.3673807766704, 34.77487864307349], [-77.36763355770933, 34.77483927636378], [-77.36778714923102, 34.774815356480254], [-77.36841641522271, 34.77471735415122], [-77.36847509259051, 34.77471811815311], [-77.36909623059371, 34.77472620284624], [-77.36959266986963, 34.77453415337159], [-77.36930665751147, 34.77400148795016], [-77.36893871586047, 34.77360736638438], [-77.36827318406615, 34.773141521451], [-77.36811919704145, 34.7730560309541], [-77.3677386600654, 34.77277282008783], [-77.36773721122084, 34.77276651863692], [-77.36774637546414, 34.77274624930228], [-77.36805380676999, 34.772531763352426], [-77.3683962754521, 34.77271760335178], [-77.36900640806235, 34.77265140755706], [-77.36904031355833, 34.772647729009115], [-77.36905872503101, 34.7726457314208], [-77.36912089341492, 34.7726389861221], [-77.36971827599919, 34.77258383207079], [-77.37000772650481, 34.77244255630248], [-77.36980714847957, 34.772277741215035], [-77.36965036097521, 34.77214803350476], [-77.36927368387816, 34.771905394347485], [-77.36915433548641, 34.77173252749408], [-77.36880598126079, 34.771515817246396], [-77.36875230978258, 34.77149142149681], [-77.36869449302324, 34.77147771477303], [-77.36826222942682, 34.77137523662473], [-77.36812379781868, 34.771446442322976], [-77.36797695676489, 34.771330189145026], [-77.36760224587043, 34.77103310306744], [-77.36712033533237, 34.77100510331207], [-77.36697900781331, 34.770969971402614], [-77.36667603243775, 34.77102715768684], [-77.3665984416371, 34.77101158307009], [-77.3663398614646, 34.770961620634594], [-77.36620560046359, 34.77083254042142], [-77.36617393842714, 34.77074205225424], [-77.36615673750305, 34.7705358334897], [-77.36612063488954, 34.770317981770646], [-77.36614764730834, 34.76997343565608], [-77.36582072512701, 34.76955031949101], [-77.36581736743011, 34.76929864178632], [-77.36566438264165, 34.76886906490385], [-77.36561904712028, 34.76874176270768], [-77.36552655024556, 34.768637653540026], [-77.36519192268685, 34.768286760963875], [-77.36496455857457, 34.768121722701984], [-77.36467104780284, 34.76787119810807], [-77.36443095271676, 34.76769501928787], [-77.36432201611444, 34.767496710014825], [-77.3637596447513, 34.76700578778133], [-77.3636686258559, 34.76690469594256], [-77.36364199764367, 34.766887299738016], [-77.3636276365766, 34.76685465858856], [-77.36361461758099, 34.766768562250334], [-77.36350819741267, 34.76625363363937], [-77.36363728313847, 34.76599674965503], [-77.36369878650626, 34.765761112623984], [-77.36385117032982, 34.76565796604192], [-77.36406181214964, 34.76555076563526], [-77.36424701309684, 34.76539376091948], [-77.3644696091203, 34.76520397605271], [-77.36447867734509, 34.765195228369414], [-77.36442820156599, 34.765104319858025], [-77.36431223855084, 34.76485736721918], [-77.3643380323545, 34.764812497699495], [-77.3642761148597, 34.7648128013434], [-77.36422713780317, 34.764775429401375], [-77.36379255041169, 34.764268846733515], [-77.36372154447139, 34.764176645860275], [-77.36365231018898, 34.764067177754896], [-77.36349410677052, 34.76382507866768], [-77.36335393559473, 34.7635701290355], [-77.36329268500813, 34.763462680216534], [-77.36323577259682, 34.76336216704271], [-77.36314385251936, 34.76300338989057], [-77.36304679044682, 34.762736797913576], [-77.36303400699124, 34.76267786520286], [-77.36319211559282, 34.7623335622813], [-77.36331220243204, 34.762270468101846], [-77.36352822106927, 34.76213460176257], [-77.36388298535988, 34.76174831085287], [-77.36417608072944, 34.76169685413164], [-77.36449463410243, 34.76156587183415], [-77.36452373387384, 34.761165122789855], [-77.36409359669017, 34.76102303887579], [-77.36402876046715, 34.76084359488635], [-77.36405631179143, 34.760752165285595], [-77.36416430431876, 34.76077954325142], [-77.36463570057644, 34.76095118885611], [-77.36495037286184, 34.76098749089862], [-77.36533723301913, 34.76115859226353], [-77.36557905636651, 34.76099683267133], [-77.36568926755123, 34.7608655445358], [-77.36628402300364, 34.76065252172513], [-77.36685731594554, 34.76034203956848], [-77.36697118713445, 34.76027909659938], [-77.36708429761961, 34.76023534829405], [-77.36734087927815, 34.76013509608741], [-77.36759397519704, 34.7600142517415], [-77.36769753695273, 34.75996977486453], [-77.3681896220069, 34.759638752193226], [-77.36754071031345, 34.759276651923564], [-77.36720817013754, 34.75913363713127], [-77.36640609001205, 34.758879552208505], [-77.36605342621293, 34.758777839172126], [-77.36603354410838, 34.7587605236985], [-77.36602741691256, 34.75875401085064], [-77.36597074773526, 34.75872718648112], [-77.36500119230281, 34.75828878192055], [-77.36489646509257, 34.75825812444845], [-77.36480602474909, 34.75823477639287], [-77.36429511598057, 34.75811992864981], [-77.3641997961767, 34.7581073427439], [-77.36377466280618, 34.758045101716476], [-77.36366768758457, 34.75807154528148], [-77.36297942029123, 34.758239409768386], [-77.36297841125555, 34.75824004440305], [-77.36297725144831, 34.75824013628239], [-77.36297561416188, 34.75823963241687], [-77.36241336754358, 34.757972924681724], [-77.36214958384872, 34.75782976575833], [-77.36143929182761, 34.75767884974053], [-77.36135780599683, 34.757650305571346], [-77.36131387799031, 34.75763340993035], [-77.36114663131775, 34.75756734910894], [-77.36075516490575, 34.757494539170075], [-77.36068580337069, 34.75737871498758], [-77.36031215042058, 34.75695729383843], [-77.36029545558178, 34.75689048902084], [-77.36028371783976, 34.756862732036424], [-77.35984441702027, 34.75650517995527], [-77.35980889432884, 34.756476267477844], [-77.35977132815465, 34.75644569137873], [-77.35955986632746, 34.75627357813863], [-77.3593643732243, 34.75609546739774], [-77.35933119050159, 34.75605523490289], [-77.35930559224053, 34.75602224438377], [-77.35926849356304, 34.755904109981785], [-77.3592323803288, 34.75578860263842], [-77.3592514332468, 34.755722351958134], [-77.35929865109387, 34.75553581191426], [-77.35938990407594, 34.755221617059476], [-77.35943576648127, 34.755029602929895], [-77.3593627963416, 34.75471124345353], [-77.35931966354806, 34.75455815700731], [-77.35930645550161, 34.754497346363664], [-77.35923529162795, 34.75447736278902], [-77.3590502591883, 34.754300175164246], [-77.35888237130656, 34.75413080461567], [-77.35882752640387, 34.75407726509268], [-77.35877241128622, 34.7540086036697], [-77.35847280322288, 34.753699645130084], [-77.35849277420499, 34.75354628950113], [-77.35845240123567, 34.75321505985251], [-77.35859575696658, 34.752755537748186], [-77.35914950636082, 34.75271020296135], [-77.35943817885061, 34.75281911484261], [-77.3596923012317, 34.7529037729946], [-77.35979855777352, 34.752936148800245], [-77.36005441876866, 34.75299512707505], [-77.36019090128232, 34.75302859451699], [-77.36025119787429, 34.753041904905174], [-77.36039652833452, 34.753073985804065], [-77.36062233077891, 34.75291715461737], [-77.36126179382887, 34.7525639148249], [-77.36170970634544, 34.752144896951215], [-77.3622196992469, 34.751723055032386], [-77.3619705255563, 34.75124672493216], [-77.36172887990257, 34.751057097914966], [-77.36143411112573, 34.750856150145154], [-77.36092668314322, 34.750715895990986], [-77.36033501310517, 34.75055235130684], [-77.35981009365197, 34.750435598204874], [-77.3595958809199, 34.75033244152221], [-77.3592588963649, 34.75027101809272], [-77.35914756943961, 34.75019531618645], [-77.35891370370008, 34.750068716886204], [-77.35879826217071, 34.749794609440556], [-77.35876027706384, 34.74976110137539], [-77.35887700069281, 34.74952349096661], [-77.35902318000704, 34.749304914537014], [-77.35921021704853, 34.749211944055006], [-77.35904343338456, 34.74918047630836], [-77.35936704315007, 34.74870302860472], [-77.35913472546079, 34.748636063821145], [-77.3588881019699, 34.74854708044441], [-77.35884684473638, 34.74854324155806], [-77.35884313130208, 34.74853126406614], [-77.35858931935567, 34.74845158352821], [-77.35846040140183, 34.74844626942193], [-77.3582952028967, 34.74836279376625], [-77.35812496595932, 34.74831006149846], [-77.35803909520668, 34.74828369679703], [-77.3572211894511, 34.74821678905855], [-77.35696627921084, 34.74785279894602], [-77.35686939061068, 34.74769895220002], [-77.35681588851695, 34.74759110142503], [-77.3565318855292, 34.74728612864824], [-77.356473860802, 34.74721475071351], [-77.35642288733841, 34.747157664992095], [-77.35608132289964, 34.74677514484509], [-77.35606047061509, 34.74674428931331], [-77.35604589219778, 34.746722030677084], [-77.35603444722123, 34.746657702970715], [-77.35594163599899, 34.74604726217296], [-77.35592882397647, 34.74576333294732], [-77.35591153446606, 34.745676201872215], [-77.3559560315794, 34.74531180575834], [-77.35598714684085, 34.74526794378257], [-77.35607430538997, 34.745156784565964], [-77.35640557019204, 34.74472312238051], [-77.35695172197678, 34.74377830458646], [-77.35701086935485, 34.74369330469415], [-77.35701742785443, 34.743664362832384], [-77.3570288649491, 34.74363409933286], [-77.35741614950122, 34.74277587469487], [-77.35745253993497, 34.74262986171127], [-77.35751960910918, 34.742468165810855], [-77.3577042360418, 34.7421079232178], [-77.357794834607, 34.74183489338583], [-77.35808712768505, 34.741567971063844], [-77.35797028767666, 34.741333042094055], [-77.35796982789886, 34.7407134871918], [-77.3586975542478, 34.74050939409316], [-77.35902386559039, 34.74037074674485], [-77.35931987177878, 34.74029484962271], [-77.36043076335747, 34.74004794998224], [-77.36151769198631, 34.74002693613566], [-77.36278107384486, 34.737632058019955], [-77.36336020206325, 34.73694480904786], [-77.36334925983893, 34.73654385064552], [-77.36318375638227, 34.735019487139915], [-77.36288852348622, 34.734395506097705], [-77.36272908727003, 34.73410716023558], [-77.36263058435796, 34.73380549159295], [-77.362623312788, 34.73363430061626], [-77.36280075934405, 34.73350530760244], [-77.36349185473851, 34.73314283260406], [-77.36363450671307, 34.73313906251756], [-77.36371171860345, 34.73303589145566], [-77.36382214522598, 34.73298226173038], [-77.3644608655762, 34.7324231463145], [-77.36447615735027, 34.73240504459499], [-77.36452616097397, 34.73234701939601], [-77.36476354116542, 34.732121876454016], [-77.36481073584604, 34.73209489395667], [-77.3648809704362, 34.73207401720659], [-77.3651326940705, 34.73210404763932], [-77.365326901814, 34.731913945276844], [-77.36570894456611, 34.73183118204851], [-77.36581849172177, 34.73180453535884], [-77.36594630312425, 34.731824439984415], [-77.36619849738592, 34.731848740427694], [-77.36636507980455, 34.731984579323765], [-77.36657556662996, 34.73211666275664], [-77.36659468976808, 34.732332383183675], [-77.36726078371842, 34.73250992092737], [-77.36729454349674, 34.732582372735266], [-77.36734709082614, 34.73272766099338], [-77.36776940833865, 34.73280110899872], [-77.36756568599327, 34.73246803423286], [-77.36756912350258, 34.732371090636974], [-77.36773616601624, 34.731957222935335], [-77.36807238684065, 34.73179318538192], [-77.36824721152095, 34.73168972646625], [-77.36828553625317, 34.73166290971233], [-77.3685713421545, 34.731599897358485], [-77.36857249808874, 34.73160061765968], [-77.36879576032408, 34.73181164902697], [-77.36878798034168, 34.731827451507336], [-77.36877840113029, 34.73192282603659], [-77.36872405258525, 34.73227090072323], [-77.36874343962711, 34.73230622819178], [-77.36857743650322, 34.732615214406515], [-77.36796955632022, 34.73297838558782], [-77.36792044668046, 34.73339407669009], [-77.36804375660249, 34.73358288611345], [-77.36897956963448, 34.73422334821356], [-77.36919155716777, 34.734625887502304], [-77.3701306314878, 34.73562455968249], [-77.37229098694414, 34.73603914647013], [-77.37376707123558, 34.73653757109024], [-77.37578098724467, 34.73684106443151], [-77.37849481190109, 34.73792513693898], [-77.38106248076166, 34.738410480427326], [-77.38348673889504, 34.7384022903868], [-77.38481629080503, 34.73736248070137], [-77.38492665914747, 34.73660112167115], [-77.38623744135126, 34.73489881380215], [-77.38665729469099, 34.73353331936298], [-77.3861692516586, 34.73251297540429], [-77.38625724258486, 34.73227499659501], [-77.38632656841469, 34.7320507745559], [-77.38654223401959, 34.73146495402101], [-77.38661083412897, 34.73128038715599], [-77.38693115408951, 34.73094863310943], [-77.38739484004837, 34.73080421840389], [-77.3876375671472, 34.73072385850452], [-77.38796741664322, 34.73063675141994], [-77.38820796297642, 34.73063725865278], [-77.3883043678405, 34.73063566236144], [-77.38848032280013, 34.73065731284662], [-77.38870734846058, 34.73070559515721], [-77.38889549787451, 34.73080840297354], [-77.38928916500416, 34.73090874363052], [-77.38949387099838, 34.73095617085619], [-77.38975873095093, 34.73092830393524], [-77.38991078108894, 34.730953795635784], [-77.3900976728055, 34.73108522112511], [-77.39035422921793, 34.73115381645008], [-77.39068250076535, 34.731279709422154], [-77.39090826185317, 34.73131150980053], [-77.39115676519756, 34.73132714611613], [-77.39128342420135, 34.731418694007324], [-77.39151830336166, 34.73187920256661], [-77.39143106516066, 34.73210544858669], [-77.39149271370077, 34.73290835724753], [-77.39151642236395, 34.7329624964478], [-77.39242882724865, 34.73304982758604], [-77.39271040741913, 34.733131754374746], [-77.39293126524304, 34.73326546913501], [-77.39325674978596, 34.73360573397556], [-77.3936757699467, 34.73422547319987], [-77.39379019989966, 34.73469274889333], [-77.3937279623704, 34.734888890548895], [-77.39373634976697, 34.735187984740506], [-77.39334917548007, 34.73587467087448], [-77.39345230240967, 34.73661882047983], [-77.39405003070658, 34.737358001653824], [-77.39533935556474, 34.737809139625625], [-77.39636574780911, 34.7382180522009], [-77.39763368081336, 34.73844667601803], [-77.39876845299278, 34.738778088508695], [-77.3995599464695, 34.73872355709456], [-77.3999813880047, 34.73819464334843], [-77.4001221277455, 34.73740948374233], [-77.4003444833096, 34.73701323702334], [-77.40077983525495, 34.736237390241214], [-77.40078168186027, 34.73623154507842], [-77.40079956835937, 34.73619551813373], [-77.401218980066, 34.735450022112445], [-77.4013992689382, 34.73533578484341], [-77.40147344173161, 34.735117817633345], [-77.40173725151223, 34.73517273300865], [-77.4019978707887, 34.73522698306598], [-77.40227691141905, 34.73552319105101], [-77.40243832928475, 34.73555134307203], [-77.4032704480174, 34.73581104806531], [-77.40348788868691, 34.735769864480815], [-77.40435134570862, 34.7352500248155], [-77.40437106761128, 34.73474564982431], [-77.4044002356013, 34.73470800263264], [-77.4044066443302, 34.734675754652386], [-77.40457818177383, 34.734211115179185], [-77.40457896021984, 34.734209275808325], [-77.40458189676772, 34.73420749912175], [-77.40499933866947, 34.73414833110535], [-77.40514757252603, 34.73385113121482], [-77.40536118218685, 34.733731057107406], [-77.40557568502408, 34.73359419437257], [-77.40563300319329, 34.73346178351238], [-77.40566863755402, 34.73331203321195], [-77.40563975824034, 34.73295077384149], [-77.40568716612665, 34.732921606370105], [-77.4056364732115, 34.73278106002438], [-77.40566675053992, 34.73242014203399], [-77.40566258687592, 34.73235388998375], [-77.40597156121179, 34.73140038620145], [-77.40591522536546, 34.73132400832159], [-77.40558972663777, 34.73062446916571], [-77.40620633263427, 34.73081446898617], [-77.40723659264462, 34.73032416781116], [-77.40753001239743, 34.729652289991606], [-77.40771991320746, 34.72961801530174], [-77.40803388794069, 34.72893289255957], [-77.40813269396803, 34.72879655215784], [-77.40816570666311, 34.72875638491869], [-77.40817871240279, 34.728694799622524], [-77.40836802615826, 34.72854758568266], [-77.40840419932235, 34.72849227418328], [-77.40847024530139, 34.728533314502464], [-77.40852832207054, 34.72854903108839], [-77.40872512290913, 34.72876010396298], [-77.40922862483522, 34.7290918883492], [-77.40926110574013, 34.72912317023325], [-77.40928800968379, 34.72912496860713], [-77.40949257937076, 34.7292204242108], [-77.4096993544517, 34.729846146204224], [-77.41033574617848, 34.729840107388114], [-77.4104804359814, 34.72964201609634], [-77.41064007867611, 34.729621717100805], [-77.41141299388653, 34.729670245011874], [-77.41172314241535, 34.72947749397132], [-77.41218467765171, 34.729435497125124], [-77.41238170509729, 34.729112547614356], [-77.41266883099718, 34.72873076726871], [-77.41269381142902, 34.72866258698676], [-77.41329024791642, 34.72849443078802], [-77.41340280684564, 34.72843440127381], [-77.41362708693762, 34.72842983819726], [-77.4139509416004, 34.728426994009766], [-77.41444783445924, 34.728646467774624], [-77.41453067807784, 34.72863904723283], [-77.41460777800327, 34.72869212391237], [-77.4148602241514, 34.728861033066394], [-77.41480968779234, 34.72923792394603], [-77.41486846157711, 34.72942301120671], [-77.41483107796671, 34.72949171937938], [-77.41499494932732, 34.729540734598366], [-77.4155346000662, 34.72960021917694], [-77.41598568225177, 34.72966401092029], [-77.41676090960078, 34.72979363308755], [-77.417899899048, 34.72999738743725], [-77.41806082253395, 34.730063641350334], [-77.4191082701772, 34.730543927612985], [-77.41968810333651, 34.731037082923756], [-77.42027973949983, 34.73187404879333], [-77.42069265778302, 34.7324035970361], [-77.41981030478055, 34.733946263575504], [-77.41906987136363, 34.73470460166205], [-77.41886500673195, 34.73495127923393], [-77.41834140896502, 34.735669078253686], [-77.4172182126067, 34.73706990192625], [-77.41699879519808, 34.73730380318542], [-77.4166384233334, 34.737665234286034], [-77.4152446189561, 34.73905913276704], [-77.41616186549835, 34.74071682869545], [-77.416512006065, 34.741288843011574], [-77.41813861411562, 34.742158371428296], [-77.41835158314326, 34.74201248381985], [-77.41883682469785, 34.74210488767689], [-77.41899133588896, 34.74260529298001], [-77.41929768599478, 34.74317398380748], [-77.41959436918249, 34.743574460832356], [-77.4199875238402, 34.74407167442809], [-77.42013169239914, 34.74472260907517], [-77.42003200746707, 34.74517744370583], [-77.4200238922594, 34.745202546523096], [-77.42002351444155, 34.745238320389674], [-77.41993425969301, 34.745404284123616], [-77.41877369362649, 34.74618793013428], [-77.41886435787548, 34.74744979574771], [-77.41926795093639, 34.74770476982579], [-77.41990352217009, 34.74803398661969], [-77.42070933102937, 34.74767843093609], [-77.4215768260408, 34.74777623825004], [-77.4218049799432, 34.7478019602373], [-77.42268449813773, 34.74764232131867], [-77.42401690460812, 34.74877117006099], [-77.4240768001158, 34.748814934243235], [-77.42537452160869, 34.74799762445764], [-77.42580123799159, 34.74728903338544], [-77.42586353709319, 34.74810209382426], [-77.42570378863466, 34.74830582597504], [-77.42569610891026, 34.74852298416607], [-77.4253914879533, 34.749314814880194], [-77.42595091454514, 34.74985117943852], [-77.42616541542941, 34.75046073855473], [-77.42620596624637, 34.750637577577095], [-77.42706423707057, 34.75075793644112], [-77.42735832284917, 34.7507705293019], [-77.42752649037209, 34.75076521635822], [-77.42784389088565, 34.750847263581356], [-77.42794838023215, 34.75094752135344], [-77.42828208730481, 34.75144304466583], [-77.42826549966728, 34.751564202534084], [-77.42834046965062, 34.75180825274515], [-77.428781554851, 34.752241751558145], [-77.42947894073899, 34.752979347441425], [-77.42998653195592, 34.753524762810876], [-77.43034716347344, 34.753737484090784], [-77.43087167741652, 34.75398589429885], [-77.4309368758814, 34.75402119377623], [-77.43091970679798, 34.75406434093367], [-77.43096257462429, 34.75461583213276], [-77.43070899697585, 34.75470285028935], [-77.43034808241595, 34.75462623734146], [-77.43007618177575, 34.75467344358383], [-77.42975899256604, 34.754754360764345], [-77.42964990879665, 34.7549814492491], [-77.4294973590915, 34.75522199717271], [-77.42944852202803, 34.755534698713824], [-77.42977673595108, 34.755707691966066], [-77.43008045468707, 34.75598477850693], [-77.43023497277966, 34.75609949127724], [-77.43028710192132, 34.756160056739176], [-77.4303164866264, 34.75628869117817], [-77.43027253695669, 34.75633141466772], [-77.43019078973927, 34.75649270793501], [-77.43012731229075, 34.75650897260059], [-77.43011086768126, 34.75655445469923], [-77.43011956617758, 34.75659401148633], [-77.42995473161672, 34.75677942823164], [-77.42988190154168, 34.756855923017675], [-77.42976593225946, 34.75699298939189], [-77.42976322251215, 34.75718901113529], [-77.43002021901593, 34.75708183367435], [-77.43038493069716, 34.75692973239609], [-77.43045678879604, 34.75689976399717], [-77.43057068444485, 34.75671510613103], [-77.43064345047037, 34.756604194021634], [-77.43084523131117, 34.75644746423427], [-77.43100368642006, 34.75630733956975], [-77.43117099055634, 34.756155512105316], [-77.43122732956465, 34.75610595180026], [-77.43124460294395, 34.75609050380327], [-77.43128198872219, 34.75604649693446], [-77.43140690610544, 34.755889167987824], [-77.43150753022421, 34.75577217202564], [-77.43160582038234, 34.755679140399515], [-77.43172843115264, 34.755612059806325], [-77.43187675847476, 34.75562745726674], [-77.43204637291015, 34.7556214722915], [-77.4321246740389, 34.75565848565372], [-77.43217903246514, 34.755599881779794], [-77.43225546549257, 34.755498224485805], [-77.43227211348893, 34.755352879136936], [-77.43228642645218, 34.75524390755918], [-77.43234556726962, 34.75509901945403], [-77.43238612423401, 34.75496387760748], [-77.43253019411661, 34.754695843167454], [-77.43251869019241, 34.75460045907447], [-77.43275493164278, 34.75428158187169], [-77.43282692839998, 34.75418833338786], [-77.43282581892377, 34.75414871733013], [-77.43284740745857, 34.754117144083324], [-77.43303051188205, 34.753773096808786], [-77.43302375903592, 34.75365882846893], [-77.43305885333584, 34.7535825570046], [-77.43313856128432, 34.753419415709274], [-77.43320695255686, 34.753313533486924], [-77.43321383152856, 34.753294719153196], [-77.43326076640523, 34.7531825894126], [-77.43325291518306, 34.753115191791224], [-77.43322937558717, 34.75306503779929], [-77.43315878138738, 34.75288652836004], [-77.4330936420489, 34.75284467944726], [-77.43292763174566, 34.752744497350804], [-77.43278639037405, 34.75245781113349], [-77.43333577621765, 34.75227510513777], [-77.43358846021319, 34.75246886822213], [-77.43360536535687, 34.752468777565156], [-77.43361658635901, 34.75246833940016], [-77.43383124335057, 34.75246382510568], [-77.43392735675, 34.75244688159791], [-77.43393920224912, 34.75244129109454], [-77.43400145044512, 34.75236795010764], [-77.43403936137466, 34.75233652316802], [-77.43407999804401, 34.752263845945784], [-77.43416227613443, 34.752099945309226], [-77.43421517983501, 34.75198426182932], [-77.43421745298977, 34.75197301136078], [-77.43418129937609, 34.75182707132018], [-77.43421789227392, 34.75175993132098], [-77.43423208567992, 34.751565294369136], [-77.43435946231752, 34.75147768195347], [-77.43435914552057, 34.7514567111143], [-77.43432198497901, 34.75131718233901], [-77.43459954551311, 34.75123244003717], [-77.43464487734438, 34.75117566093844], [-77.43467215464966, 34.75116000061363], [-77.43496962340956, 34.751061668628516], [-77.43502774245643, 34.75105325181936], [-77.43527867806844, 34.75110171586124], [-77.43528533499106, 34.75110009979466], [-77.43529592647002, 34.751098404735465], [-77.43540249543338, 34.75091759490647], [-77.43564217455548, 34.750953673216024], [-77.4356551193595, 34.75095632794086], [-77.43572023883185, 34.750967123639086], [-77.43582038255722, 34.7508918809967], [-77.435831822808, 34.750871068846045], [-77.43600952679363, 34.75079230350136], [-77.43601135127851, 34.75079042384256], [-77.43601288105049, 34.75078984207536], [-77.43601478339362, 34.75078720957339], [-77.43601402532204, 34.75077676132186], [-77.43599882714159, 34.750645173313266], [-77.43593874393436, 34.75059572741008], [-77.4358995118136, 34.75047071774227], [-77.43597210435792, 34.750352481333394], [-77.43613979241324, 34.7503422405109], [-77.43617724755674, 34.75031367182812], [-77.4362739127566, 34.75032199939058], [-77.43632066187105, 34.750174048062554], [-77.43647811874669, 34.75028114217568], [-77.4365292808107, 34.75034939279617], [-77.4366063912668, 34.75039187153037], [-77.43662642850072, 34.75042046923699], [-77.43673010938198, 34.7504688992571], [-77.43674270484411, 34.75047481943474], [-77.43674767080964, 34.75048149476022], [-77.43680208147651, 34.750492980200306], [-77.4368160198196, 34.750498471725294], [-77.43685777449991, 34.750491033056356], [-77.43685789036208, 34.7504906642672], [-77.43687794381124, 34.75046313957823], [-77.43691954378127, 34.75041774926334], [-77.43692380391768, 34.750411391096655], [-77.43692540317356, 34.75040984026413], [-77.43693133969686, 34.7504048785491], [-77.43691722274264, 34.75026722399191], [-77.43707845629075, 34.75012030763158], [-77.43713502633457, 34.75006379685519], [-77.43716327163128, 34.75005480022578], [-77.43719308073237, 34.75002657285896], [-77.43733169136402, 34.749852984958494], [-77.43737867464482, 34.74965891104329], [-77.43753752225868, 34.74964537522103], [-77.43764943765441, 34.749557642286845], [-77.43770398244794, 34.749442514400215], [-77.43779492552781, 34.74945578205544], [-77.43781693859206, 34.74936584357367], [-77.43792305914674, 34.749221029267794], [-77.43794330629565, 34.749089925723325], [-77.4378208802394, 34.748965263877615], [-77.437788762411, 34.74893119261382], [-77.43779870142357, 34.7488980698887], [-77.43761676676344, 34.74856264992277], [-77.4376155491647, 34.74855704550256], [-77.43761347906307, 34.748553846860574], [-77.43739014778154, 34.74823780452563], [-77.43737349873015, 34.74821161468662], [-77.43733984575732, 34.74817873600994], [-77.43713957724508, 34.74799572264065], [-77.43699318160719, 34.74792386288112], [-77.43688723249518, 34.747759775703415], [-77.43674497920384, 34.74769139703081], [-77.43662859700333, 34.7476295483399], [-77.43661061535852, 34.74760769762022], [-77.43656623161203, 34.74758437082526], [-77.43649231667081, 34.747603125469574], [-77.43610982483918, 34.747586642561814], [-77.43597946003875, 34.74757277099371], [-77.4355515557244, 34.747833487764346], [-77.4354063957065, 34.747933164140136], [-77.43519227188769, 34.748228703684504], [-77.43518514465177, 34.74826451124514], [-77.4351137803857, 34.748348105770745], [-77.43477910054327, 34.748404037187925], [-77.43444405640815, 34.74844639735511], [-77.43411560938986, 34.748231413098466], [-77.43385208156266, 34.74827608464796], [-77.43377718142327, 34.74826304872562], [-77.4335544502384, 34.74819660829188], [-77.43338900723035, 34.74819600939756], [-77.43328829038106, 34.74821226098065], [-77.43320285369902, 34.748303561342624], [-77.43311976262903, 34.74838145867522], [-77.43311510046497, 34.74860671270167], [-77.43312601588498, 34.74864419187551], [-77.43313795170384, 34.74866733568544], [-77.43313067270428, 34.748702552873375], [-77.43307510322975, 34.749204420438964], [-77.43290068289863, 34.74934742795776], [-77.43271797125497, 34.74952395145209], [-77.43234096969375, 34.749418034741204], [-77.4322677038652, 34.749318738417436], [-77.4321481821724, 34.74905205234518], [-77.43175357503286, 34.74887949464953], [-77.43148087867885, 34.74899883409573], [-77.4310716312658, 34.74901995073421], [-77.43101601081754, 34.749044016267284], [-77.43069860485113, 34.74921659652166], [-77.4302685372142, 34.74957885823452], [-77.43004177797692, 34.749639271503646], [-77.42960506593886, 34.749655471951044], [-77.42959486709564, 34.74965705405349], [-77.42957933537188, 34.74966011853271], [-77.42919122166026, 34.749745504908134], [-77.42893442437912, 34.7497568396631], [-77.42877449822366, 34.749812596311656], [-77.42851593958152, 34.74984759222234], [-77.42837110524191, 34.749901460848285], [-77.42825861018972, 34.74987606338898], [-77.42815683668174, 34.749823978317885], [-77.42798487708527, 34.74971403035546], [-77.4279189043262, 34.74963896695607], [-77.42781462216732, 34.74952031548255], [-77.42797240228214, 34.74925017584016], [-77.42813609237913, 34.749191766099415], [-77.42815999329756, 34.749182704895006], [-77.4281906083438, 34.74917485406934], [-77.4283547819488, 34.749126990856645], [-77.42848439843266, 34.74909622999166], [-77.42876216476834, 34.749044649458845], [-77.42913478707995, 34.74896972485338], [-77.42916398772105, 34.748963943937746], [-77.42916976352285, 34.74896266100229], [-77.42917625400698, 34.74896021762379], [-77.42951796343603, 34.74884881434576], [-77.42955954020964, 34.74885156038759], [-77.42963783952244, 34.748759915060575], [-77.42981396784423, 34.748623999477516], [-77.42969551797648, 34.74832588832555], [-77.42968310491119, 34.74829464755871], [-77.4296809322359, 34.74828591320084], [-77.42961165540528, 34.74799425288006], [-77.42958763700497, 34.74788807666552], [-77.42953814699464, 34.7476715921478], [-77.42949485633075, 34.7474803854655], [-77.4293659603192, 34.747349345193456], [-77.42932225619745, 34.74730979073769], [-77.42912328259273, 34.74718897347906], [-77.42905307720955, 34.747132052718634], [-77.42893899707494, 34.747090106166524], [-77.4285423712043, 34.74698487063225], [-77.42847085632806, 34.74692808678717], [-77.42807552945773, 34.746339354346624], [-77.4280869860096, 34.746282027682035], [-77.42818314729661, 34.74581790448852], [-77.42816649140421, 34.745764446424985], [-77.42804525138362, 34.74576971570167], [-77.42785502669828, 34.74606717339851], [-77.42745965597899, 34.74599091198378], [-77.42738913673993, 34.74605391255929], [-77.42713564941064, 34.74601090423687], [-77.42688118192767, 34.74597192918221], [-77.42677713183284, 34.745935554891936], [-77.42669793388916, 34.745672564812914], [-77.42666620819264, 34.74528778837082], [-77.42672229938832, 34.74506565807089], [-77.42656314999948, 34.74465768558366], [-77.42655453331592, 34.74424286327948], [-77.42655702207213, 34.7441315068717], [-77.42657355590902, 34.74397369751507], [-77.42666214566381, 34.74375160012696], [-77.42652823344741, 34.743670920491525], [-77.42651602369887, 34.74358935205537], [-77.42629871932624, 34.74352469409694], [-77.42625744059423, 34.74349881164345], [-77.42621793950434, 34.74349048204246], [-77.42602914641559, 34.74345820802786], [-77.42593813790901, 34.74349424211108], [-77.42582738798987, 34.74350251195786], [-77.42558814016981, 34.74359567980106], [-77.42542904499254, 34.74359957244705], [-77.42541051093468, 34.74373081738951], [-77.42533644325091, 34.743858117936554], [-77.42525787037721, 34.7439570035658], [-77.42522926394999, 34.7440210382607], [-77.42510194178185, 34.74418204010398], [-77.42500558246495, 34.7444034570426], [-77.42471984332505, 34.74437976588114], [-77.42457475525372, 34.744447454442195], [-77.42420623531423, 34.74432946763673], [-77.42411847248943, 34.74424201022154], [-77.42377712723258, 34.74371901648627], [-77.42374635614222, 34.74362850195696], [-77.42370293908245, 34.7434625072341], [-77.42345696544189, 34.74304804607637], [-77.42341738071416, 34.742872945195735], [-77.42350568290232, 34.7425060031635], [-77.42349645963775, 34.742393591085346], [-77.4234130851641, 34.74224902268425], [-77.4233130651161, 34.74202369834103], [-77.42288761499297, 34.741849217491065], [-77.4224415868936, 34.74157500379241], [-77.42236357393459, 34.741526923701294], [-77.42234648123663, 34.7415035163965], [-77.42225143006254, 34.741399371745175], [-77.42210197884398, 34.741240666230624], [-77.42202231206164, 34.7412228679821], [-77.42181203543923, 34.74113473306995], [-77.42148112766307, 34.74123928737385], [-77.42135809363481, 34.74143552982071], [-77.42102105712905, 34.74165176842709], [-77.42045439304914, 34.7414547511559], [-77.42043635712302, 34.741437876337876], [-77.42043264810907, 34.74143187216983], [-77.41994508934859, 34.74093867085053], [-77.41973550557523, 34.7408374017208], [-77.41904190418538, 34.74064257297806], [-77.41875574310737, 34.740617080692346], [-77.41823439557771, 34.74057063296538], [-77.41787127133031, 34.739977407312224], [-77.4183265828727, 34.73947365551949], [-77.41858082620465, 34.73910729057897], [-77.41891636595675, 34.73850078753002], [-77.41913815454242, 34.73818395300419], [-77.41969011594533, 34.73739088859126], [-77.4201989186553, 34.73654965315852], [-77.42040266189548, 34.73638967293546], [-77.42082337999497, 34.73607422339], [-77.42086848714082, 34.73599343582867], [-77.42085419161482, 34.735907192361076], [-77.42074991126955, 34.735392903847696], [-77.42068728563032, 34.735084059908644], [-77.42091717832882, 34.73473163300996], [-77.42163475413284, 34.734584067855785], [-77.421803539539, 34.73452130760903], [-77.42199514823989, 34.734538612104615], [-77.42257231894355, 34.73444462356215], [-77.42273722574193, 34.73441038180317], [-77.4231509526837, 34.734296712004905], [-77.42336742682755, 34.73424807242846], [-77.42366935665746, 34.734177144133554], [-77.42383637463539, 34.73414393756147], [-77.42412452356645, 34.73398941362854], [-77.42423942350412, 34.733817342266256], [-77.42425266931237, 34.73381340918284], [-77.42442463306112, 34.73373191498282], [-77.42458105394826, 34.73365722433191], [-77.42462213267405, 34.73364461279628], [-77.42488445440958, 34.73373538826117], [-77.42520426826638, 34.73359553217591], [-77.42540549457917, 34.73311621984246], [-77.42541484757355, 34.73311007121085], [-77.42541658248813, 34.73310914053098], [-77.4254186327542, 34.73310814782619], [-77.42558301283805, 34.73300715268706], [-77.42574549771166, 34.73297440302891], [-77.42576248622532, 34.73302778441213], [-77.42588315843861, 34.73327376512373], [-77.42584463088252, 34.73337943339317], [-77.4258261973003, 34.7337784410123], [-77.42576314746286, 34.733790883050766], [-77.42582731670288, 34.733833035006064], [-77.42584857384033, 34.73383773871327], [-77.42586727185025, 34.7338455550841], [-77.42640577855748, 34.73412778404936], [-77.42654589940068, 34.73420653615719], [-77.42687958473374, 34.734286887076294], [-77.42695663986666, 34.73443975074631], [-77.42715884133953, 34.73461678769211], [-77.42731979903385, 34.73472316734315], [-77.42749454806118, 34.73479647191406], [-77.42755845284059, 34.73473918008704], [-77.42759289735638, 34.73470996090962], [-77.42758027935005, 34.734664190731785], [-77.42754892698368, 34.73460863719524], [-77.4273337822625, 34.73454381720405], [-77.42730725758591, 34.73433059339821], [-77.42709205666743, 34.73419826201497], [-77.42716612537265, 34.733722202451034], [-77.42716500577096, 34.73372002783989], [-77.42699653401365, 34.733345341974335], [-77.42691796954745, 34.733076401629866], [-77.4270230022967, 34.73288791948122], [-77.42703374792845, 34.732837338173546], [-77.42694343179157, 34.732612535036544], [-77.42697947316557, 34.732538835682035], [-77.42689912268197, 34.732493210361454], [-77.42688591084055, 34.7324693615227], [-77.42690374039216, 34.73223283275664], [-77.42689242296666, 34.73215526675955], [-77.42689319442766, 34.73208938063247], [-77.42687392115802, 34.732057340763575], [-77.42685690614685, 34.73201587697784], [-77.42682473472374, 34.73192568552342], [-77.42680102179462, 34.731864557877266], [-77.42676369344855, 34.73178417932604], [-77.42671717566989, 34.731676341154], [-77.42652581905921, 34.73149850142866], [-77.42627669890562, 34.73152311580152], [-77.42604570775302, 34.73151004266033], [-77.42588304990936, 34.731504061450806], [-77.42578192327949, 34.731462510860425], [-77.42565176850053, 34.73151568320799], [-77.42539938223162, 34.731585297685], [-77.42520265929261, 34.73163955810149], [-77.42502061705534, 34.73171425524998], [-77.4249303781665, 34.73182258823247], [-77.42479847318103, 34.731928318503165], [-77.4247214477905, 34.731973277611], [-77.42459740876514, 34.73198573151255], [-77.42445506592614, 34.73200714954167], [-77.42424400198246, 34.73194098749], [-77.42403908971038, 34.731900635074815], [-77.42388683582945, 34.73175524447997], [-77.42369834192064, 34.731797227158275], [-77.42327271218241, 34.73180220080879], [-77.42324122845179, 34.731798156986684], [-77.42309066733179, 34.73229621083421], [-77.42308991532026, 34.732297374235884], [-77.42308974544174, 34.73229852039217], [-77.42308337098416, 34.73231576019521], [-77.42307834565389, 34.73230134994413], [-77.42307691987486, 34.73227756189289], [-77.42316437772901, 34.73176433004915], [-77.42293991533793, 34.731466339084186], [-77.42290559858067, 34.73124969649599], [-77.42292954521756, 34.73112316407192], [-77.42309669542811, 34.73081406727281], [-77.42316949880168, 34.730647971273854], [-77.42340760420691, 34.73037852223563], [-77.42351903792837, 34.73021108926287], [-77.42359046851419, 34.73012515688109], [-77.42368054453898, 34.729818305467326], [-77.4233240812508, 34.72968984214366], [-77.42320386492726, 34.72968527717616], [-77.42301826432072, 34.729648165206015], [-77.42225123102334, 34.72943243518054], [-77.42201446730148, 34.729364419605076], [-77.42159729001408, 34.728980190263684], [-77.42115991684918, 34.72863776852384], [-77.42103464678172, 34.72831983343595], [-77.42097521427692, 34.72820363093484], [-77.4206263341603, 34.72796757530717], [-77.4205334952301, 34.727836388383636], [-77.42021465739957, 34.72760000805115], [-77.42000778837833, 34.72743775814416], [-77.41987660144298, 34.72738753294048], [-77.41898473668087, 34.7270858029641], [-77.41879871994988, 34.727184941643955], [-77.41862935561785, 34.72701498391072], [-77.41826403076873, 34.72681736340616], [-77.41792843433436, 34.726855328897514], [-77.41761531291685, 34.72684353030725], [-77.41738735582916, 34.72664023823546], [-77.41705396213146, 34.726568030394866], [-77.4167238758863, 34.726158121505094], [-77.4166590237874, 34.72605126419769], [-77.41667935504015, 34.72564774880853], [-77.41666471981455, 34.72557834480441], [-77.41674210430213, 34.72512389422218], [-77.41672193262748, 34.725039257181365], [-77.41632459357756, 34.72440529581118], [-77.41619604556757, 34.72402373749166], [-77.41607903987358, 34.723696268034615], [-77.41635312718557, 34.72353248492654], [-77.41637654645334, 34.723490909418146], [-77.41617516719326, 34.723170787738574], [-77.41613038692272, 34.72311586108952], [-77.41584699516615, 34.72281903997688], [-77.41552595031814, 34.72238466826162], [-77.41530816896359, 34.72215104039207], [-77.41523518535479, 34.72177956725075], [-77.41512603023928, 34.721334286084414], [-77.41487811565364, 34.721039927098666], [-77.41482000238409, 34.72056920125712], [-77.41442688867508, 34.72014331799551], [-77.41398120927293, 34.72002630524599], [-77.41382815640983, 34.71999705865702], [-77.41377138091227, 34.72006023364031], [-77.41374131084214, 34.72008327416753], [-77.41344853881566, 34.72020100036179], [-77.4134214318585, 34.72023621042378], [-77.41340310980944, 34.72026739609221], [-77.4132820786703, 34.72048177261524], [-77.41317635422035, 34.7205836294931], [-77.41317502699859, 34.72058569116242], [-77.41309955645465, 34.72069749176025], [-77.41306989378282, 34.720783624367414], [-77.41303804506347, 34.72086599334594], [-77.41311184028415, 34.72098133905004], [-77.41315037166643, 34.721230416837344], [-77.41319564295556, 34.72124662343236], [-77.41321365261783, 34.72139266746689], [-77.41327385897799, 34.721597102632174], [-77.4130209960181, 34.72182578649911], [-77.41283997988653, 34.722004469549844], [-77.41252510845631, 34.72241895720655], [-77.41252862038537, 34.722454684626975], [-77.41246222580705, 34.7224994740268], [-77.41196708975485, 34.723095205152816], [-77.41187016082793, 34.72334261538512], [-77.41140493455084, 34.72367238470639], [-77.41109681833797, 34.72363126517384], [-77.41085586387945, 34.723618379679195], [-77.41078540344483, 34.72359077445943], [-77.41047777395458, 34.7236528656787], [-77.41017450215864, 34.72384551452225], [-77.41015422395576, 34.72386071812714], [-77.4101482882092, 34.72386232407255], [-77.41014042053706, 34.72387490844684], [-77.41000743254116, 34.72408893473169], [-77.40994044066211, 34.72427064038641], [-77.4099073397979, 34.724333483620086], [-77.40984947494593, 34.72442739215863], [-77.4097973441736, 34.72485412485452], [-77.40968761595495, 34.72535354418462], [-77.40968195264567, 34.72537287928926], [-77.40966980076179, 34.72539500584604], [-77.40943452961523, 34.72584545789549], [-77.40923361687737, 34.72610757657047], [-77.40913268146738, 34.72629900276203], [-77.40909966441659, 34.72652542625374], [-77.40909532592121, 34.72684505044779], [-77.40913484874508, 34.72695710172506], [-77.40919230578115, 34.72714758319429], [-77.40924859476027, 34.72735601958452], [-77.40931766523416, 34.727481921195064], [-77.40933265870544, 34.72754414120749], [-77.40935002584895, 34.72770971859603], [-77.40935602305429, 34.727757572156044], [-77.40936071045272, 34.72781158323907], [-77.40927740893898, 34.72779035106255], [-77.40900832381246, 34.727782619780726], [-77.40889914484384, 34.727805149129296], [-77.40870102678076, 34.7278253762501], [-77.40845450481052, 34.72782638339378], [-77.40834832032542, 34.72784764537607], [-77.40783523440652, 34.728081692186606], [-77.40773460150272, 34.72814574986128], [-77.40759160679922, 34.72824644635062], [-77.40741419981833, 34.72837009243344], [-77.40695990039913, 34.72831028515545], [-77.40693488451633, 34.72830012300749], [-77.4069108035864, 34.72829527037231], [-77.40636422927025, 34.72805675933498], [-77.4062646216823, 34.72809149333011], [-77.40594667725671, 34.72821537016122], [-77.40564430841053, 34.72832853277314], [-77.40557440169142, 34.7283549084953], [-77.40549963451676, 34.72838305384338], [-77.4052021688623, 34.7284945177512], [-77.40489839125107, 34.72868999734566], [-77.40485452850167, 34.728716542276274], [-77.40457733772519, 34.72896933234579], [-77.40443270114653, 34.72912812449776], [-77.40430402781028, 34.72927068005515], [-77.40418194203521, 34.729468462188336], [-77.40419142980936, 34.729602859988894], [-77.4041886288079, 34.7298302009534], [-77.40402870556551, 34.73010506908625], [-77.40411742419941, 34.73038803010106], [-77.40414166002509, 34.73070370097918], [-77.40424770767177, 34.73093541245942], [-77.40441936133335, 34.731154825910565], [-77.40466522421282, 34.731707289742616], [-77.40479932227123, 34.731889094509285], [-77.4047519171818, 34.73203538799336], [-77.40476677293827, 34.73227177217898], [-77.40479852567678, 34.73261081193266], [-77.40481796748838, 34.732773997044475], [-77.40476468164931, 34.73301653485183], [-77.40467994855875, 34.73312846233396], [-77.40444948669456, 34.733249424876036], [-77.40417231933158, 34.73340817937456], [-77.4040676186863, 34.73347342502835], [-77.40381557464141, 34.73370945557632], [-77.40368278827623, 34.733897954618214], [-77.40355084817973, 34.734194907346975], [-77.4035107067685, 34.734396893961595], [-77.40345863772403, 34.73462231099], [-77.40344402004123, 34.73465313327668], [-77.40313546835613, 34.73477333079916], [-77.40309665474352, 34.73477872345441], [-77.40260205778623, 34.73459042680492], [-77.40255356938327, 34.73456862334773], [-77.40249638692828, 34.73454557032959], [-77.40199235622495, 34.7342925497304], [-77.40152048366141, 34.73414862370587], [-77.40140313454161, 34.73411312231209], [-77.40131634883704, 34.73411275194923], [-77.40121542143685, 34.7341532189844], [-77.40096371317128, 34.734284444783135], [-77.40064898163607, 34.73450273435103], [-77.40064299286956, 34.734508319288004], [-77.4006392505751, 34.734510820829115], [-77.40060313174588, 34.73453101835667], [-77.40004225531963, 34.73486113724142], [-77.39997028756642, 34.73490495650543], [-77.39986499667057, 34.734995235817635], [-77.39927463479609, 34.735151770670214], [-77.39927198195366, 34.73525974395962], [-77.39926865069746, 34.73570881216459], [-77.3987333402257, 34.73620304859429], [-77.39834790692377, 34.73674194300905], [-77.39770431440985, 34.736631954267736], [-77.39687672467156, 34.736455489598306], [-77.39635473973759, 34.736476170421724], [-77.39502532786707, 34.73596324382146], [-77.39475963930185, 34.73524980964252], [-77.39470016210892, 34.73520613387389], [-77.3947216404186, 34.735041587922424], [-77.39480421122305, 34.73427013411773], [-77.39481849855422, 34.73415210471204], [-77.39489276168416, 34.73408562629162], [-77.39509234910818, 34.7337629266937], [-77.39513040550426, 34.73370207332911], [-77.39541181889547, 34.733437739320365], [-77.39553322545156, 34.733283846081015], [-77.39581098223498, 34.73295788633804], [-77.39579171835757, 34.73281512932546], [-77.39546551737601, 34.73247574326344], [-77.39527395756357, 34.7322890794503], [-77.39505386400688, 34.73199785302313], [-77.39499192848514, 34.73189751652868], [-77.39472132936041, 34.73162677702447], [-77.39443738860717, 34.73159853205544], [-77.39427629598262, 34.73158088644418], [-77.39387723817056, 34.73153226932783], [-77.39382168899799, 34.73151050976746], [-77.39324279074171, 34.73135038097244], [-77.39324330936539, 34.73129376804877], [-77.39319381142437, 34.73078795231562], [-77.39299111305402, 34.730562647659525], [-77.39283024486227, 34.730506856438595], [-77.39262272312044, 34.730373451906566], [-77.39252281024449, 34.73031151373741], [-77.3922814966979, 34.73018918075558], [-77.39228118108497, 34.73018903320775], [-77.39228090187419, 34.7301889726391], [-77.39201735101284, 34.73013180109159], [-77.39197678323953, 34.73013313139187], [-77.3916626867032, 34.730223677501165], [-77.39162721742106, 34.73023300934844], [-77.39162161971728, 34.730232994410564], [-77.39157417392542, 34.73026056654464], [-77.39116513761864, 34.730637319988034], [-77.39096170876863, 34.73065052697281], [-77.39086763400095, 34.730641236073325], [-77.39075959271959, 34.73060005212879], [-77.38994785123818, 34.73048919777118], [-77.38964418378174, 34.730437809576124], [-77.3892506203589, 34.73033630067212], [-77.38904487084537, 34.730293295521406], [-77.3888977985444, 34.73026865737715], [-77.38843938317257, 34.730170078178865], [-77.388373661267, 34.73015983548273], [-77.38809619196869, 34.730122645644286], [-77.38787486987952, 34.73009246345026], [-77.38781870846874, 34.73009923264429], [-77.38769441394699, 34.73009221781391], [-77.38764937032019, 34.72996629258856], [-77.38734294035288, 34.729528714928975], [-77.38724813822108, 34.72938558920236], [-77.38727449344597, 34.72927594416515], [-77.38714767446965, 34.729096507274136], [-77.38703952087657, 34.72910038466095], [-77.38693568875077, 34.729157384777885], [-77.38690313496639, 34.729251533265284], [-77.38673356468664, 34.72941892139484], [-77.38663590485717, 34.72956289721543], [-77.38659549093794, 34.729597507289014], [-77.38645890301561, 34.729714479358016], [-77.38631925708589, 34.730060012284774], [-77.38631775712078, 34.73066589354473], [-77.38594829596906, 34.731048542917954], [-77.38585964228253, 34.73128706342674], [-77.38579085953029, 34.73155262349357], [-77.38569346837261, 34.73181863779692], [-77.38562118649745, 34.73205242063774], [-77.38532006543058, 34.73286682771341], [-77.38543413323221, 34.733105307487854], [-77.38533600305864, 34.733424457518666], [-77.38468562056872, 34.734269106787835], [-77.38217074471937, 34.73423515822847], [-77.38201838068193, 34.7342425402775], [-77.37949945422616, 34.734462400855236], [-77.37866938058349, 34.73449603538523], [-77.37625597672144, 34.73436665525895], [-77.37447493582651, 34.73409825575783], [-77.37409932605343, 34.73397142481765], [-77.37434866291113, 34.73369907292044], [-77.37321651983227, 34.732554081154724], [-77.373021484779, 34.73211609150638], [-77.37281937551913, 34.7318269745727], [-77.37263761991356, 34.731590393349016], [-77.3722451103604, 34.731173649659766], [-77.37203065327874, 34.73112119531696], [-77.37144278638127, 34.73128824381797], [-77.37123577273027, 34.731317969296725], [-77.37081378692028, 34.731343244032445], [-77.37088487931211, 34.73174025982078], [-77.37076677386068, 34.732047965843066], [-77.37051535939348, 34.73227427808457], [-77.3702608627905, 34.73200018908746], [-77.36999904043576, 34.73184375713742], [-77.36978635546862, 34.73145345078446], [-77.36947773939883, 34.73123055583629], [-77.36913879198553, 34.731163241135334], [-77.36900529374773, 34.73114109219332], [-77.36883063666919, 34.731188516566974], [-77.3683831319469, 34.7312214384895], [-77.36776801792307, 34.731465456641274], [-77.36772360451445, 34.73148425472871], [-77.36770525264477, 34.73149373643262], [-77.36766432059424, 34.731509332184444], [-77.3676017049645, 34.731488304704634], [-77.36672125921186, 34.73144649228855], [-77.36652090180152, 34.73144777031567], [-77.36630263141883, 34.731501910984605], [-77.3659146874157, 34.7314731474205], [-77.36556472647814, 34.73154790322678], [-77.36528329272716, 34.731585261935884], [-77.36494001265089, 34.731571242661545], [-77.3646604897086, 34.73166777060359], [-77.36441534364397, 34.73164380079612], [-77.36429806952515, 34.73164077537147], [-77.36403321497332, 34.731765674727534], [-77.36385111930227, 34.73188303191565], [-77.36367096986132, 34.732028248240155], [-77.36313529532232, 34.732525291788114], [-77.36251668876564, 34.7328638115294], [-77.36228149739836, 34.73304533676245], [-77.36206951697827, 34.73322296770493], [-77.36157608217249, 34.73369682822919], [-77.3614861423121, 34.733790470759054], [-77.36141450915005, 34.73395264471518], [-77.36130170644097, 34.73430318438512], [-77.36149880645803, 34.7349047442558], [-77.36159703007482, 34.735237403139124], [-77.36149748219765, 34.735465735270054], [-77.36154222951214, 34.73622008642666], [-77.3615687214508, 34.73719083652975], [-77.36109826790073, 34.737749121739185], [-77.3601500238495, 34.73807930402408], [-77.35955343069443, 34.73828703984155], [-77.35881701507593, 34.73854345145126], [-77.35843317684517, 34.738677099355854], [-77.35727431016247, 34.738820957658895], [-77.3572769878904, 34.73972964972876], [-77.35739419837232, 34.74019931419656], [-77.35696471386828, 34.740747293023], [-77.35722279831575, 34.74111960711615], [-77.35722755901566, 34.74133239704392], [-77.35731305019078, 34.74167424233175], [-77.3572992498292, 34.74184923611408], [-77.35725229661298, 34.74199252281893], [-77.35711841435324, 34.74218834657455], [-77.35699853067737, 34.74240594778664], [-77.35662966473545, 34.74274282406135], [-77.35648903081662, 34.74323106148679], [-77.35648330089629, 34.74325030166777], [-77.35647202160808, 34.74327399706116], [-77.35618678295458, 34.74377838767558], [-77.35577734655782, 34.74459676944761], [-77.3556438687287, 34.744827680032486], [-77.35554928027223, 34.744951506761126], [-77.35538543168626, 34.74568665456035], [-77.35537228714936, 34.74583972525609], [-77.35538255350758, 34.74608026698397], [-77.35530820962558, 34.74633590372005], [-77.35531952343258, 34.746525776726166], [-77.35545356429803, 34.74678139117334], [-77.35546853222165, 34.74680128130983], [-77.35547048467214, 34.746803875823545], [-77.35547292048494, 34.74680760134989], [-77.35561708584717, 34.747024582145016], [-77.35563153754748, 34.74707421280451], [-77.35574175364259, 34.747251161309244], [-77.35581496571503, 34.747327340150434], [-77.35589016402844, 34.747433289705185], [-77.35601214119512, 34.747569893225254], [-77.35610833657672, 34.747688226012], [-77.35618311858475, 34.747832599441146], [-77.35629031295534, 34.748117855577135], [-77.35629983180574, 34.748137043898986], [-77.35634563707217, 34.74820977682297], [-77.35649917032782, 34.74860934422677], [-77.35661041362376, 34.7486865876851], [-77.35669141011525, 34.74879917636974], [-77.35703963136098, 34.74914488309979], [-77.35727780240458, 34.74947722854314], [-77.35733795873541, 34.7497038576756], [-77.35721231654682, 34.75025384338023], [-77.3570921746622, 34.75047747846574], [-77.35693044258862, 34.750805744502145], [-77.35699739292674, 34.75097787402204], [-77.35675036302396, 34.75112110764097], [-77.35658118081464, 34.751468599511114], [-77.35708871496455, 34.75142078679296], [-77.35714875535132, 34.75134920566042], [-77.35747766369549, 34.75091194672035], [-77.35766704728161, 34.750656599578946], [-77.3581215651646, 34.75067801646531], [-77.35848010643744, 34.75077433410224], [-77.35850271274467, 34.75077907149344], [-77.35851085466459, 34.75078421718066], [-77.35874784164803, 34.750984746481336], [-77.35906987963364, 34.751180751028485], [-77.35868679314129, 34.75155977007197], [-77.35844801976783, 34.75175350831183], [-77.35816575062083, 34.751972457189154], [-77.35788304905176, 34.75212431684898], [-77.35749020634974, 34.752372376380954], [-77.35759730380528, 34.75265814966364], [-77.3575061658634, 34.75285757111645], [-77.35770681362573, 34.7532446367989], [-77.3577421575332, 34.75331256054737], [-77.35775055712783, 34.753328720844735], [-77.35776384873824, 34.75335622087198], [-77.35785610498932, 34.75403598344353], [-77.35804077456167, 34.754246335741925], [-77.35832706984112, 34.75446219104327], [-77.35862560291307, 34.75451407904747], [-77.35868904047375, 34.754578008385025], [-77.3587486993558, 34.75463654029544], [-77.3588008885519, 34.75468909358667], [-77.35884519886302, 34.754789241812496], [-77.35887241388717, 34.75483119293309], [-77.35887871107188, 34.754920720336756], [-77.35883479243573, 34.75511210608309], [-77.35875363584543, 34.755448144844785], [-77.3587166960312, 34.75561570314282], [-77.35872164619741, 34.7557356074586], [-77.35873558403433, 34.75610049536024], [-77.35875617081003, 34.75612702723778], [-77.358936196729, 34.75635904098693], [-77.35908533681291, 34.7565398663433], [-77.3591330672566, 34.75660184867952], [-77.35919789275705, 34.75666867847168], [-77.35937320885554, 34.75681137286411], [-77.3595586161493, 34.75696227877752], [-77.35960356333501, 34.75702842750505], [-77.3596493475246, 34.75717683693988], [-77.35971654959312, 34.75733575394151], [-77.35979406303369, 34.757645925924464], [-77.35984785154517, 34.75789734193958], [-77.35986600361248, 34.758009263099595], [-77.35993280517808, 34.75826345627259], [-77.35994978966953, 34.75833905174651], [-77.35996177366687, 34.75836908786148], [-77.36010563429718, 34.75856002892175], [-77.36012964751066, 34.758594947539635], [-77.36015111375595, 34.7586003037013], [-77.36043661189805, 34.75859139944811], [-77.36072657169231, 34.75847172063603], [-77.36109282385952, 34.75839457512869], [-77.36135316022174, 34.758442349454526], [-77.36168112847363, 34.75843157304077], [-77.36192468692603, 34.75858697805744], [-77.36206983017041, 34.758679588280344], [-77.36217923819936, 34.758779152268666], [-77.36257923801642, 34.759084593793624], [-77.36272047342774, 34.759124370898974], [-77.36335840502473, 34.758931289309295], [-77.36339898342324, 34.7589280747091], [-77.36342342787229, 34.7589127003323], [-77.36371321962949, 34.75869336164139], [-77.36394986065744, 34.75857908471525], [-77.3640812253252, 34.75854661224098], [-77.3641675470525, 34.75855925004683], [-77.36431539240128, 34.75857432362696], [-77.36447591688537, 34.75860185223752], [-77.36463322208328, 34.758700853181836], [-77.36474867121161, 34.758767109204804], [-77.3650535499952, 34.75896538704512], [-77.36515738787593, 34.759116264343334], [-77.36527122233082, 34.75917669670435], [-77.36556727934482, 34.75948007554604], [-77.3657639247372, 34.759689098002745], [-77.36581608419714, 34.75973452406671], [-77.36589465673543, 34.759818992231914], [-77.36578926797638, 34.75984320874781], [-77.36567839937996, 34.75998364526243], [-77.3655486596505, 34.76019836524417], [-77.36541618783998, 34.760210750615286], [-77.36512151398392, 34.7602483822752], [-77.36475765959659, 34.76017521170047], [-77.3643690520525, 34.760074446091856], [-77.36402106657685, 34.759945738394784], [-77.36376899904334, 34.75993174101973], [-77.36348917559809, 34.76009551114556], [-77.36335421166453, 34.76035239038891], [-77.36330408436179, 34.76078040336506], [-77.36341198496754, 34.76116116549647], [-77.36342183632956, 34.76119039157618], [-77.36328841248682, 34.76167943880506], [-77.36326533776315, 34.761704564095936], [-77.36325169102926, 34.76171314729877], [-77.36294577805073, 34.76193058750393], [-77.36278941967993, 34.76208749012284], [-77.36269576587976, 34.76227038321278], [-77.3625125875299, 34.76289494382894], [-77.36253065538509, 34.76311537304282], [-77.36252128087926, 34.76333757884144], [-77.3626942405896, 34.763632707924714], [-77.36273049308177, 34.76369673355573], [-77.36276454004232, 34.763756460423735], [-77.36294137668494, 34.76405519304075], [-77.36312554505668, 34.764356583495946], [-77.3631596842406, 34.76441056183807], [-77.36320546598338, 34.764470009211706], [-77.36333075027302, 34.76478559892085], [-77.36332834240349, 34.764802739065395], [-77.36306198492571, 34.764979016328326], [-77.36291259737834, 34.76508984812662], [-77.3627042635912, 34.76527942865684], [-77.36263752161223, 34.765389680970145], [-77.36264900720352, 34.76551567315187], [-77.36267761790286, 34.765898961137715], [-77.36270286793658, 34.766385758586466], [-77.36271295125958, 34.76653453259908], [-77.36287883643527, 34.76706255725311], [-77.3629144345878, 34.76719019140867], [-77.36293959728438, 34.76720592538441], [-77.36298576884587, 34.76723747317607], [-77.363478499933, 34.76755937427503], [-77.3636674369796, 34.76776922074009], [-77.3639863021894, 34.76801993326964], [-77.36429751364484, 34.76820754077258], [-77.36448668649419, 34.7683206707031], [-77.36453468869222, 34.76834075517835], [-77.36459768328734, 34.768376564106354], [-77.36490759109472, 34.76859169889404], [-77.3650595968011, 34.76874243800374], [-77.36521021743415, 34.76891196793421], [-77.36528108744, 34.76911097099213], [-77.36530130139431, 34.76932030783492], [-77.36529969186553, 34.76952479425572], [-77.36528778426835, 34.769672532681724], [-77.36527297038043, 34.769778361849305], [-77.36532268758783, 34.7700457315323], [-77.36541984063685, 34.77060973655526], [-77.36551201881724, 34.77086943742453], [-77.36563908892346, 34.77116548096], [-77.36577308066833, 34.771355197833245], [-77.36615504532139, 34.771598064765186], [-77.36665903875159, 34.771748081944175], [-77.3667478729678, 34.77176594586021], [-77.3668572050316, 34.771796378107446], [-77.36702270475625, 34.77234285328349], [-77.36712092315318, 34.772550870553076], [-77.36706213297145, 34.77260358802568], [-77.36713070212518, 34.77265701975155], [-77.36723625861268, 34.77342362231238], [-77.36745338072913, 34.77375526897401], [-77.36757093424383, 34.77382675822591], [-77.36787787834824, 34.77404903022409], [-77.36771676926773, 34.774226661528274], [-77.36730079045904, 34.77429144449777], [-77.36729876774884, 34.7742917595086], [-77.36729753871646, 34.774291950911255], [-77.36729250340993, 34.774292735072635], [-77.3669615461838, 34.77434427598705], [-77.36682848665478, 34.774271356500705], [-77.36666412184697, 34.77426378340435], [-77.36655597603482, 34.774030824754625], [-77.36648181194782, 34.77373771243141], [-77.3664491860591, 34.77365102761287], [-77.36634650864531, 34.773398314472864], [-77.36630413712908, 34.77329402849794], [-77.36611192217447, 34.77299917762325], [-77.36580274823142, 34.77281123674567], [-77.36548705495744, 34.77282618945957], [-77.36529969683741, 34.77303200639484], [-77.36505583400339, 34.773173925019066], [-77.36487715805256, 34.773326162244764], [-77.36473888296177, 34.77339497580303], [-77.36425950856719, 34.77370672185261], [-77.36420373895585, 34.7737222486755], [-77.36419302782323, 34.77376317957749], [-77.36413597929621, 34.77382176374693], [-77.36366155026168, 34.7743329781092], [-77.36344852602782, 34.77462108868332], [-77.36330723857438, 34.774776415731], [-77.36311343379086, 34.77493402444071], [-77.36302483945761, 34.775032043921314], [-77.36287836886153, 34.77523779240723], [-77.36271462647386, 34.775482708393724], [-77.3626242952449, 34.77563154399397], [-77.36241716916172, 34.77593783893978], [-77.36229451729848, 34.77605414930349], [-77.3620954980321, 34.77626421123108], [-77.3619916941702, 34.77634816918881], [-77.36173189947414, 34.776607529825924], [-77.36155122173588, 34.776753251562305], [-77.36150683595663, 34.77679897320249], [-77.36137888315557, 34.77699752455166], [-77.36123296805653, 34.77720110466668], [-77.36120158379363, 34.77727452499376], [-77.36104024340911, 34.77753340321335], [-77.36092591752845, 34.777652878524705], [-77.3605852076314, 34.77797733496026], [-77.3605129862576, 34.7780675998913], [-77.36047304169722, 34.778103287515954], [-77.3603883778487, 34.778198571950064], [-77.36011193294965, 34.778486477784384], [-77.36016639741644, 34.77896274639817], [-77.36018705221208, 34.779035559550486], [-77.36019864221386, 34.77907605176025], [-77.36036491854146, 34.77940777754503], [-77.36036105712772, 34.77941773743352], [-77.36034709565425, 34.77968723224244], [-77.36025217977851, 34.77977187530062], [-77.36016474853734, 34.779845464988384], [-77.36011214150699, 34.77988462461818], [-77.3600776968188, 34.77997357529876], [-77.35997964637123, 34.78011787238238], [-77.35993400370397, 34.780216871000846], [-77.35971972773791, 34.780500380504314], [-77.35963408967388, 34.78055617461919], [-77.35965488499505, 34.78059580550793], [-77.35963436816702, 34.780794219439315], [-77.35959309855457, 34.78106777045629], [-77.35960977249938, 34.78110689496696], [-77.35959612057049, 34.78116186320955], [-77.3594163894457, 34.78154457462979], [-77.35939722788862, 34.781585376471256], [-77.35939197272498, 34.78158990704796], [-77.35914716179235, 34.781925192518585], [-77.35911237996582, 34.78205129458334], [-77.35907377789961, 34.78217640998684], [-77.35873978498032, 34.782756544251775], [-77.35862962282278, 34.78300081778744], [-77.3585500870848, 34.7831951087667], [-77.35852746824017, 34.78324468553952], [-77.35851119601779, 34.783303047888616], [-77.35851567259618, 34.783520173608935], [-77.35843755759933, 34.783759887475426], [-77.35829209676635, 34.78400116664762], [-77.35806227596106, 34.784382373254296], [-77.35804976566475, 34.784623295333716], [-77.35798774601064, 34.78501312691909], [-77.35783968404048, 34.78536750179792], [-77.35805458607413, 34.78612885065818], [-77.35805990199476, 34.78615684475258], [-77.35806311958191, 34.78616700664512], [-77.35757712064229, 34.78684561441242], [-77.3575233477921, 34.787087550305], [-77.35713968372286, 34.787172358634706], [-77.35690669383357, 34.78724679567465], [-77.35671934402134, 34.787365429884666], [-77.35653201158411, 34.78769667961385], [-77.35704997027294, 34.787481131323624], [-77.3577799476672, 34.787177345046885]], [[-77.41482409729377, 34.76341786321861], [-77.41524226253635, 34.762857315477994], [-77.41570634206138, 34.76270230780954], [-77.41598423352367, 34.76257351654298], [-77.41641406429746, 34.761984494256815], [-77.41655710795727, 34.761881474107625], [-77.41655112932457, 34.76180519236581], [-77.41709212582364, 34.76139159634044], [-77.41728364979856, 34.76119689687342], [-77.41751987502465, 34.761099782629756], [-77.41778744849888, 34.76103161386858], [-77.41788547950746, 34.760668473836226], [-77.41813184958264, 34.76048305776802], [-77.41831421445858, 34.7603962746625], [-77.41848767904096, 34.7603198505967], [-77.4188808372644, 34.760111647656124], [-77.4190813933629, 34.76015369493335], [-77.41963302867183, 34.759729149094746], [-77.41975940954846, 34.759765460361734], [-77.41988416230059, 34.75968972819936], [-77.42062002022425, 34.75967552074117], [-77.4208949872583, 34.7598010059848], [-77.42126691024532, 34.75983912795982], [-77.42186076882994, 34.76020654947769], [-77.42202609417195, 34.76032462491256], [-77.42207020495833, 34.76039694636676], [-77.42272569371842, 34.76012364051326], [-77.42345517124825, 34.759819478579516], [-77.42348156511366, 34.75980847307832], [-77.42346027084254, 34.75980187081979], [-77.4234388766156, 34.75979286148067], [-77.422569220544, 34.75929613189549], [-77.42235956165284, 34.759173310902256], [-77.42191778468543, 34.758803899391005], [-77.42179616479494, 34.75872571256572], [-77.4217880622203, 34.75867784794145], [-77.42177103315105, 34.758564172050114], [-77.42168956033223, 34.75832378839577], [-77.42166123796704, 34.75826273818191], [-77.42161370211838, 34.75813223116458], [-77.42147798433916, 34.75808545383843], [-77.42138867570532, 34.75809659072895], [-77.42126796566866, 34.75805319956032], [-77.42096384798353, 34.75799346508605], [-77.42077058943624, 34.75801619748764], [-77.42034136562457, 34.757724473625274], [-77.42021628300088, 34.757715617017524], [-77.42013366800998, 34.75763339527162], [-77.41955843125632, 34.75733958489485], [-77.41920889802795, 34.75712622636822], [-77.41913486775134, 34.75702059893521], [-77.41901433125034, 34.75705238499253], [-77.41888849751977, 34.75710545326601], [-77.41890041048472, 34.757254843707315], [-77.41850462304987, 34.75753037232286], [-77.4185304102935, 34.757757682229936], [-77.41854124763582, 34.75810225236067], [-77.41856148641648, 34.758288883048806], [-77.41840516992781, 34.75904897112234], [-77.418310438553, 34.759139747990616], [-77.41789893798027, 34.75945784074208], [-77.41779041129973, 34.75954054436331], [-77.41775642578229, 34.75956496140637], [-77.41747252800995, 34.759769173324216], [-77.41724433784645, 34.759885320247406], [-77.41713039271013, 34.759958182619314], [-77.41695794279894, 34.760107207162385], [-77.41677946859932, 34.75992454780616], [-77.41682913119551, 34.759740207382976], [-77.41684928976392, 34.7594989357668], [-77.41685182456195, 34.759468596971665], [-77.41686368780177, 34.759443074608896], [-77.41698974528141, 34.75923725767177], [-77.41717990874486, 34.75886487808981], [-77.4172436668064, 34.75876691944173], [-77.41727361496929, 34.75869624005939], [-77.41727357921576, 34.75837946280069], [-77.41704890414577, 34.75813976589913], [-77.41697047273315, 34.75805946563919], [-77.4169267513862, 34.75800095012631], [-77.41650474550295, 34.75739049354939], [-77.41649171286605, 34.757366336175444], [-77.41647908986894, 34.75733228592388], [-77.41617175941394, 34.75660700085691], [-77.41613658549524, 34.75630067172959], [-77.41604392530863, 34.756111255738986], [-77.41608458816295, 34.75600563116887], [-77.41603434463278, 34.755771566738076], [-77.41581530058772, 34.755472258140145], [-77.41576298562643, 34.755376421208325], [-77.41553701649983, 34.75508618211505], [-77.41524791582572, 34.754714848021585], [-77.41526745203973, 34.75430584194508], [-77.41573787692512, 34.753195165984984], [-77.41641318650483, 34.75313205592025], [-77.41671692193545, 34.75329887204376], [-77.41701294116878, 34.7535781260563], [-77.41708756507656, 34.75368060265783], [-77.41740906925979, 34.75412210657805], [-77.41753842996192, 34.754251764087506], [-77.4177970212514, 34.75431563160467], [-77.41799009440872, 34.754330347392674], [-77.41821836254599, 34.75425606647708], [-77.41849377525762, 34.75417209673783], [-77.41868305144462, 34.754152185818725], [-77.41904759773303, 34.75411496735936], [-77.41959688161123, 34.75428625087643], [-77.41988023761114, 34.754447380556016], [-77.4203237102172, 34.75470394580863], [-77.42042597152792, 34.754777477695356], [-77.42049809513809, 34.754803228165756], [-77.42091265088798, 34.75491818005847], [-77.42102545404448, 34.75492201816907], [-77.42124914777514, 34.754936441505905], [-77.4214153073572, 34.754991446914815], [-77.42152318184893, 34.754951312476564], [-77.42165954417007, 34.75494707595111], [-77.42172618799776, 34.754960718981955], [-77.42179910948063, 34.75504774202002], [-77.42186342391886, 34.75512668253024], [-77.42191811586223, 34.75536886696304], [-77.42206815859969, 34.755750627824675], [-77.422122586351, 34.75591136692705], [-77.42229456374837, 34.75605949400255], [-77.42252281284676, 34.756190859680146], [-77.42257313517318, 34.75622149716451], [-77.42295796413816, 34.75645578856254], [-77.42309892345091, 34.75662052489315], [-77.42323770830035, 34.75678551886686], [-77.42344587585679, 34.75702089470059], [-77.42349757214798, 34.75712353827689], [-77.42357084353088, 34.75720556684762], [-77.42371459684634, 34.75725176929977], [-77.42418553245113, 34.75729766207768], [-77.42420416926635, 34.75730362605949], [-77.42423699841684, 34.757297346720236], [-77.4246337632665, 34.75725750377704], [-77.42484914205022, 34.75722083264765], [-77.42503039462474, 34.7571575401587], [-77.42518139125416, 34.757068285216356], [-77.42539845487205, 34.75701090533322], [-77.42554560484152, 34.75703054862428], [-77.42582476051793, 34.75704588758905], [-77.42587413918532, 34.75704007131719], [-77.42589376968849, 34.75703767860966], [-77.42619417392268, 34.75700563835399], [-77.42631959459452, 34.75701985698626], [-77.42669617840275, 34.75712888477408], [-77.42678587874148, 34.7571770934501], [-77.42691766133339, 34.75724891657355], [-77.42713355678991, 34.75739287708609], [-77.4273186859886, 34.757551950820634], [-77.42745399074946, 34.75786236995175], [-77.42761088020023, 34.75808659609868], [-77.42781528084907, 34.75800135813492], [-77.42780347088289, 34.757984479350554], [-77.42774819983106, 34.75785767529885], [-77.42774754823733, 34.75713683243059], [-77.42710697411715, 34.75662300447833], [-77.42715204313694, 34.75649239959785], [-77.42702001691629, 34.75636852808069], [-77.42688083619814, 34.75644094456351], [-77.42683902976074, 34.75652938125984], [-77.42653228440314, 34.75661944025209], [-77.42631441018334, 34.7565904310388], [-77.42604043035752, 34.75650957129808], [-77.42598823774681, 34.756478608457826], [-77.42576408883501, 34.75627608495397], [-77.42554210848374, 34.75627099086717], [-77.42480294460594, 34.756038151213204], [-77.42457039826898, 34.75596872522278], [-77.42401251828129, 34.75601606149701], [-77.42387042505347, 34.75601058337643], [-77.42375171332735, 34.756009634771054], [-77.42341087226433, 34.756007752335975], [-77.4233019023711, 34.75591967651986], [-77.42318266013996, 34.75581077795686], [-77.4229321749896, 34.75557379161428], [-77.42285492603517, 34.755248540991786], [-77.42282371497836, 34.75512627268249], [-77.42276226415476, 34.75475188974068], [-77.42248291697582, 34.75444810563508], [-77.42245517878943, 34.75441435917192], [-77.42201723388585, 34.75416980132004], [-77.4217505703504, 34.75404334589806], [-77.4217366628428, 34.75418730972814], [-77.42117044851955, 34.75442141773813], [-77.42108883678489, 34.75445810006283], [-77.42099310133483, 34.754486523453764], [-77.42083206369313, 34.754482571272916], [-77.42061513759305, 34.75443213379059], [-77.42053435410465, 34.75440329146251], [-77.42032574933712, 34.75425329238632], [-77.42015446351527, 34.7540537669575], [-77.42006062041555, 34.75382462791481], [-77.41965738265685, 34.75361534018509], [-77.41925440472917, 34.75353630960991], [-77.41892520161916, 34.753316225214306], [-77.41841671999796, 34.75308423893294], [-77.41835991351014, 34.753053681945495], [-77.41833171628357, 34.753028286087805], [-77.41782781474353, 34.75267656953542], [-77.41736426390167, 34.75210006071218], [-77.41716332613365, 34.75172997063601], [-77.41654404243036, 34.751520436018296], [-77.41560432449577, 34.75149651377578], [-77.41467429292813, 34.7514572780229], [-77.41310647086215, 34.75172989496498], [-77.41269902911515, 34.7535911653154], [-77.41258866712485, 34.753785299845894], [-77.41255309089507, 34.75397540499916], [-77.41240655980653, 34.755498507064345], [-77.41241675985786, 34.75596159070565], [-77.4124889046298, 34.75686268354682], [-77.41253934852628, 34.75722857113041], [-77.4132614731316, 34.75849324311872], [-77.41323431072774, 34.758724287396106], [-77.41286288250875, 34.759472110811075], [-77.41243368270871, 34.75976460395755], [-77.41213176382209, 34.76033474763748], [-77.4120256900423, 34.76059406202447], [-77.41179494363757, 34.76110970689791], [-77.41166299318964, 34.76128908798151], [-77.41166106390695, 34.761494381024576], [-77.41154661416572, 34.7623665979752], [-77.41209633309586, 34.76360382549778], [-77.4130201410286, 34.76371492026305], [-77.41334577365491, 34.76371916687287], [-77.41444245210666, 34.763576952701705], [-77.41470107423694, 34.76346914671277]], [[-77.44255203049039, 34.75185457169889], [-77.44244038409806, 34.75183810594373], [-77.44238472748644, 34.751852802725416], [-77.44233079110401, 34.75187877302346], [-77.44171600415517, 34.75212526172713], [-77.44165299742085, 34.75215315808816], [-77.44158622751374, 34.75217772278763], [-77.44098862023847, 34.752422776065636], [-77.44090527201513, 34.75242739840967], [-77.4408459018136, 34.752478150463816], [-77.44026089534248, 34.75272144578221], [-77.44016613850113, 34.75271567340146], [-77.43991957790897, 34.75271360515135], [-77.43955252412515, 34.752953217436435], [-77.43946197746965, 34.75306106258109], [-77.43895188782844, 34.752812713185754], [-77.43847855596026, 34.75266109348911], [-77.43835495256413, 34.75265942441554], [-77.43830423176225, 34.752665747367665], [-77.43817923207817, 34.75266470086692], [-77.43808243153606, 34.752677366988515], [-77.43801527281333, 34.75272517739738], [-77.43791948303188, 34.75278509362584], [-77.43762840905485, 34.75301572840238], [-77.43764525543773, 34.75303719862381], [-77.43763049949264, 34.75306083045941], [-77.43760313678041, 34.75304127278184], [-77.43734801573125, 34.75334718421327], [-77.43721184086007, 34.7534448250327], [-77.43699287071007, 34.75351488019582], [-77.43677354116352, 34.75381872649529], [-77.43675320539822, 34.753843641835665], [-77.43679197503259, 34.75393447780088], [-77.43671868007527, 34.75388136233269], [-77.43657277349331, 34.75406012743505], [-77.43648235327564, 34.7541633898114], [-77.4364793662555, 34.754167255572895], [-77.43647770727505, 34.75416893424149], [-77.43646995068747, 34.754186782290304], [-77.43642522004741, 34.75428809886075], [-77.43643542036627, 34.75430608108219], [-77.43655809501588, 34.75435499757169], [-77.43658481676601, 34.754343851344146], [-77.43676716027944, 34.75426779146383], [-77.43694950344562, 34.75419173132327], [-77.43731418873617, 34.7540396102613], [-77.43767887263772, 34.753887488158284], [-77.43804355515023, 34.75373536501423], [-77.43877291600819, 34.75343111560307], [-77.43950227131, 34.75312686202799], [-77.44023162105562, 34.75282260428913], [-77.44096096524503, 34.752518342386644], [-77.44169030387819, 34.75221407632067], [-77.44241963695508, 34.751909806091376]], [[-77.45580921066707, 34.74632266170935], [-77.45563318963744, 34.74613308001237], [-77.45542930380637, 34.74624061189766], [-77.45525746796756, 34.74633123934404], [-77.45490371037296, 34.74643828701224], [-77.45462981681567, 34.74643026438189], [-77.45453439897918, 34.74640826571022], [-77.4542992728293, 34.746311093399086], [-77.45410194443471, 34.746142308360746], [-77.453942287578, 34.74587198111509], [-77.4539121435421, 34.745775082980906], [-77.45403690266173, 34.745462310787026], [-77.45421952336089, 34.74540980402743], [-77.45459078775795, 34.74530305850135], [-77.45484820842344, 34.74529196834856], [-77.45523224907055, 34.745302196679106], [-77.45531840056316, 34.74531216055626], [-77.45565981178935, 34.74549213308026], [-77.45580855023374, 34.7455266638675], [-77.45595052602224, 34.74559670286188], [-77.45614821437353, 34.745734734083754], [-77.45633449733336, 34.74592527268683], [-77.45646195047158, 34.74605023354384], [-77.45685907862845, 34.7458844851992], [-77.45668172641388, 34.74571060101687], [-77.456537333332, 34.74557232913025], [-77.45645403901975, 34.74551187158369], [-77.45614113519962, 34.745291246222315], [-77.45591894753957, 34.74514489283506], [-77.45555678038761, 34.744953914610186], [-77.4553591069004, 34.74486351295173], [-77.45522686866681, 34.74477994494187], [-77.45493847990898, 34.74454289047118], [-77.4548366671975, 34.74445281027724], [-77.45456439183451, 34.74416355464354], [-77.45435643260286, 34.74389617872534], [-77.4542389326688, 34.7437396150127], [-77.45407682182702, 34.7434741675009], [-77.45399329267269, 34.74293466073904], [-77.45381045707003, 34.74269246107792], [-77.4533712361708, 34.742318615069976], [-77.45304005497067, 34.742121116660236], [-77.45298352861222, 34.74199196850898], [-77.45279203022768, 34.74177819425287], [-77.45272000830673, 34.7415321931852], [-77.45279301925463, 34.74133134607885], [-77.45293513994719, 34.74104833196342], [-77.45310631527197, 34.74095327998849], [-77.45320661063903, 34.74071229836174], [-77.4532447202954, 34.74059745676588], [-77.45329184794078, 34.74050875869335], [-77.45348756546613, 34.74024906562774], [-77.45354289041137, 34.74017119807372], [-77.45356509979403, 34.74015035296672], [-77.45358903074826, 34.74010625570172], [-77.45404308514782, 34.73919929967525], [-77.45425994388603, 34.738352205174394], [-77.45502461477929, 34.737721326123875], [-77.4548152326424, 34.73723299763423], [-77.45585172364467, 34.73650784222403], [-77.45712137923003, 34.73704470254328], [-77.45910563895666, 34.73649533728585], [-77.45842094470225, 34.73318733781528], [-77.45745143095097, 34.73144583201337], [-77.45743329038554, 34.73135861577187], [-77.4574081529335, 34.73112470500704], [-77.45406799576911, 34.726079810078645], [-77.45383250383077, 34.725753383635855], [-77.45382627620276, 34.72572127888213], [-77.45382047340102, 34.72570572681128], [-77.4538290977354, 34.72568971550631], [-77.45452180094992, 34.72147874579491], [-77.4557575165573, 34.717772058644364], [-77.45582386939073, 34.71746165149529], [-77.45572972068949, 34.71683456824291], [-77.45562204019559, 34.71515518123172], [-77.45628196290733, 34.71398159156437], [-77.4561971659554, 34.71312011440062], [-77.45784401373402, 34.711877461339455], [-77.45808750709766, 34.71322774801282], [-77.4587745907696, 34.71402047876948], [-77.46060115431139, 34.715749775658665], [-77.46183258296807, 34.71581863830246], [-77.46247326265998, 34.71588877116356], [-77.46664553379631, 34.71690812030814], [-77.46731700077217, 34.71700405425317], [-77.46966496231134, 34.71567464027087], [-77.47163296651212, 34.717393820383606], [-77.47282054471711, 34.71779031679297], [-77.4740322972966, 34.71796340306703], [-77.47480297641783, 34.71808484755347], [-77.47525339382598, 34.71817402850846], [-77.47591008442343, 34.71828580991252], [-77.47646776238037, 34.71840794135224], [-77.47752400901095, 34.718332188336674], [-77.47788342137603, 34.71713606709653], [-77.47863154783548, 34.716483092859995], [-77.47884290295681, 34.71527476802668], [-77.47735574530664, 34.7153334648265], [-77.47652440129856, 34.71491776184203], [-77.47509871271232, 34.71427151276511], [-77.47323141374598, 34.71459771041406], [-77.47274178514849, 34.71472013202435], [-77.47237916851928, 34.71481079182904], [-77.46994614798314, 34.71541905341736], [-77.47158710272, 34.714023536748556], [-77.46955984902581, 34.71200861639129], [-77.47102764954386, 34.70935655125972], [-77.47151545235356, 34.70762010547607], [-77.47159793783933, 34.70687519348986], [-77.47151514246232, 34.70505518059943], [-77.47190760118373, 34.70388450465571], [-77.47065756211236, 34.703021405402026], [-77.46887860456037, 34.70157801930223], [-77.46852443595058, 34.70153189590649], [-77.46832247341126, 34.70152689550964], [-77.46673345253336, 34.70114927939005], [-77.46611267994822, 34.70100696678057], [-77.46607424492976, 34.70096349980512], [-77.46600181532, 34.70089372047064], [-77.46483536366853, 34.69969510159417], [-77.4641995666781, 34.69875632903951], [-77.46339820212292, 34.697748313608955], [-77.46285006005675, 34.69695263263605], [-77.46232331056484, 34.696378455778984], [-77.46076989918805, 34.69517058136972], [-77.46024904779556, 34.69468618009318], [-77.4600289373301, 34.69455926264056], [-77.45802357797828, 34.693517296464776], [-77.45624098636665, 34.69375175983528], [-77.45530570426446, 34.694920848986506], [-77.45515095424729, 34.69496086556371], [-77.45502494916177, 34.69502362203368], [-77.4544091842838, 34.69524399460457], [-77.45429470059034, 34.69533297710419], [-77.45391608051898, 34.69532622569147], [-77.45368789925521, 34.69521524702509], [-77.45348789334543, 34.69523384252267], [-77.45316095332139, 34.6952893699658], [-77.45303331307888, 34.69526282783702], [-77.45301477812058, 34.69525614196604], [-77.45274247729436, 34.69516049743829], [-77.45271383325903, 34.69513311899083], [-77.45265905437728, 34.69495824449727], [-77.4525666514897, 34.694660314712074], [-77.45241710217542, 34.6944704160862], [-77.45239495444231, 34.69417565821405], [-77.45245669748505, 34.69392524721334], [-77.45177722576301, 34.692957578956744], [-77.45169262924878, 34.69268319725928], [-77.45161138214011, 34.69251181345305], [-77.4509010579928, 34.69155501207604], [-77.45068745165585, 34.69131719972229], [-77.44995444118855, 34.69095581903649], [-77.44978166968488, 34.69099385461373], [-77.44958969398158, 34.69110738351205], [-77.44942717949917, 34.69111175894512], [-77.44937303393496, 34.691127143308236], [-77.44919698733125, 34.69104668193112], [-77.44915872312087, 34.69093207554346], [-77.44913344046849, 34.69080724827663], [-77.44923727128842, 34.690660383443905], [-77.44930701746338, 34.69064549946114], [-77.44941244107582, 34.69062525675001], [-77.44971500096905, 34.690564584490005], [-77.44992222882829, 34.69050765553986], [-77.45061143630245, 34.6905342312774], [-77.4511800217216, 34.6905900152857], [-77.45311877000074, 34.690301958188606], [-77.45379835102062, 34.690399275457025], [-77.45417824155477, 34.690381848030455], [-77.45432418703562, 34.69010584947946], [-77.45691436961263, 34.68887234987093], [-77.45695134926962, 34.68870147179672], [-77.45759155758752, 34.68677571086538], [-77.45807994979718, 34.684797154828395], [-77.45811807689066, 34.684642675684806], [-77.45880747292756, 34.68272868794926], [-77.45870331907004, 34.68252878734816], [-77.45822524845799, 34.68128547716735], [-77.45822299541302, 34.68128365375579], [-77.45734304819442, 34.68053297111929], [-77.45687901561408, 34.680220053422424], [-77.45686163130395, 34.680206754824724], [-77.45685244938048, 34.68019973076496], [-77.4564359717427, 34.67981240191694], [-77.45619812336881, 34.679647711440595], [-77.45597256322445, 34.67946418479041], [-77.45584789327978, 34.67937827782436], [-77.45574286336655, 34.6792876274676], [-77.45567797864933, 34.67924207827414], [-77.45571631235364, 34.6791709271041], [-77.45574233101588, 34.679039101968584], [-77.45577106698315, 34.678795923322745], [-77.45584717318752, 34.67859730053607], [-77.45595270800538, 34.67824060229273], [-77.45601324956665, 34.67803598258358], [-77.4561518185684, 34.67756763045067], [-77.45619937322097, 34.677431758798534], [-77.4561596566622, 34.67684842656962], [-77.45614496762323, 34.676510059060064], [-77.45573833327032, 34.676086111568814], [-77.45529893320855, 34.67571495341733], [-77.45508156470845, 34.675534796882744], [-77.45445159907955, 34.675012673794654], [-77.45441852847944, 34.67498526465888], [-77.45438368442375, 34.67495638504875], [-77.45433421243848, 34.67500929807812], [-77.45291122917345, 34.67571297709341], [-77.45293491028207, 34.67614667445172], [-77.45294570902772, 34.676344404200705], [-77.45295476662972, 34.67651027823445], [-77.45296706399569, 34.67673547304841], [-77.4529746224633, 34.6768738811333], [-77.45296922451406, 34.67697199706656], [-77.45291301766736, 34.67726896679598], [-77.45283839043626, 34.67754563701065], [-77.45278667191862, 34.67766597639354], [-77.45261702673758, 34.678087631495316], [-77.45244097599344, 34.67850303070284], [-77.45237745816887, 34.67862326620685], [-77.4522889587843, 34.6788313117692], [-77.45202853980388, 34.67912067572204], [-77.45216347143698, 34.67954624456337], [-77.45250930065012, 34.67996060650848], [-77.45264021756122, 34.68011274292459], [-77.45290004897507, 34.68047512991864], [-77.45294301625073, 34.68057551660172], [-77.45296580722385, 34.68068703576986], [-77.45328477979041, 34.68130401106668], [-77.45329465351865, 34.6813609841982], [-77.45329532653284, 34.68146438236088], [-77.45342882545276, 34.68196688586881], [-77.45342052591883, 34.68214018405334], [-77.45346625144319, 34.6824911732386], [-77.4534756783418, 34.68254226755056], [-77.45349088874154, 34.68259548958276], [-77.45362891690382, 34.68294602025685], [-77.45392796717331, 34.68324560553529], [-77.45394033316954, 34.683257341345644], [-77.45394413494954, 34.683265004167474], [-77.45393293314756, 34.68328294454622], [-77.45372316507914, 34.68365845653535], [-77.45367095952146, 34.68372853062539], [-77.4534578664304, 34.68381816606986], [-77.45337559304168, 34.68383803024186], [-77.45312849589197, 34.68384929513977], [-77.45292822651322, 34.68385454312386], [-77.45259779292986, 34.68382305908408], [-77.45250491884505, 34.68378989358554], [-77.45199788625918, 34.68362715031961], [-77.45193606839372, 34.6835411594797], [-77.4518448789721, 34.68357936403102], [-77.45171547400932, 34.68360405610963], [-77.45127969482314, 34.683595220711545], [-77.45099185551899, 34.68368053041672], [-77.45060880562771, 34.683699489195035], [-77.45053477613725, 34.68368116469932], [-77.45009991812069, 34.68352686474202], [-77.45003024140944, 34.683484369477], [-77.4498108184747, 34.683245685168416], [-77.44953512078428, 34.68298060692776], [-77.44938075296518, 34.682934321460465], [-77.44860054504176, 34.68276303109032], [-77.44833153075702, 34.682711129560815], [-77.44781963611226, 34.6828012787267], [-77.44772111427412, 34.682821016927555], [-77.44764652731196, 34.682864210347844], [-77.44706396410903, 34.68309613626332], [-77.44700996191423, 34.68315400521308], [-77.44690919245525, 34.683198283096765], [-77.44648512177164, 34.68345280754179], [-77.44633912616825, 34.683552886943446], [-77.44613729083996, 34.68365188631763], [-77.44578998612064, 34.68376882371794], [-77.44563452590414, 34.68389659697463], [-77.44558495888839, 34.683976661972665], [-77.44538064808735, 34.684052682228135], [-77.44526922432956, 34.684047205596414], [-77.44517632674828, 34.68411332150644], [-77.44489824159935, 34.68418852956909], [-77.4446624693426, 34.684492708587165], [-77.44463639963551, 34.68450822684454], [-77.44460245327402, 34.684527983617855], [-77.4443010200178, 34.68470774191347], [-77.44421565895843, 34.68475765604158], [-77.44413317989442, 34.68480725475358], [-77.44407260187933, 34.68484552218104], [-77.4439682138384, 34.684911464684355], [-77.44382455823558, 34.68500221202126], [-77.44363828015352, 34.68511988400152], [-77.44350291858913, 34.68520539132383], [-77.44341720158025, 34.68530297648974], [-77.44333340363252, 34.685369257496774], [-77.44331138907886, 34.68541794777607], [-77.44322966513496, 34.6855026226136], [-77.44313725158986, 34.685636584376404], [-77.4431435466577, 34.685806613652744], [-77.44297748395391, 34.6857156375837], [-77.4429156880123, 34.68563370705359], [-77.44283928949267, 34.68553241565353], [-77.4427876535952, 34.68546395549247], [-77.4427543492715, 34.68537931929418], [-77.44271696437698, 34.68527026251768], [-77.44271834070436, 34.68511167753328], [-77.44273047417042, 34.68493534015605], [-77.44275376408925, 34.68480848833805], [-77.44280835722977, 34.68451114347281], [-77.44292371911037, 34.68444386754568], [-77.44286472135245, 34.68388969304413], [-77.44286504464168, 34.68386920794914], [-77.44286076855809, 34.683862826927744], [-77.4428266905946, 34.68379345253222], [-77.44251286016072, 34.683123424988594], [-77.44206618398363, 34.68246695458398], [-77.44206034215125, 34.68241953312015], [-77.44202396473158, 34.682365464355705], [-77.44195700787706, 34.682372020114315], [-77.44194269579104, 34.682423779712], [-77.44171029659168, 34.68256567595036], [-77.44133311595112, 34.682769687325965], [-77.44130317099201, 34.682798692223955], [-77.44129124178076, 34.683187036496946], [-77.4412825846145, 34.68331105683541], [-77.44126916542531, 34.68364265987698], [-77.44121271595338, 34.6838456656665], [-77.44115525826483, 34.684052292211135], [-77.44114259505754, 34.68410066832632], [-77.4411387242512, 34.68414352498536], [-77.44110902669236, 34.684368450112714], [-77.44108557245013, 34.68461212200341], [-77.44108197704337, 34.684680197708616], [-77.44106267570531, 34.684911282271614], [-77.44105525744504, 34.68507118478875], [-77.4410700614245, 34.68519338315422], [-77.4410642319167, 34.685290641816046], [-77.44104470188502, 34.68536695401677], [-77.44098439211157, 34.685442949707536], [-77.4408606968707, 34.685598816003214], [-77.44078639225818, 34.68569244625313], [-77.44064894957981, 34.685687214658046], [-77.44050299738247, 34.685409140919], [-77.44050327418535, 34.685274737673815], [-77.44050780337544, 34.685237108342264], [-77.4405287601212, 34.68500412897478], [-77.44047441263322, 34.68486726687205], [-77.44042828846035, 34.6846894809774], [-77.44022751220425, 34.68414604368783], [-77.44019932249111, 34.684089298728935], [-77.44015966985347, 34.68403652276996], [-77.43997240982195, 34.6837376237102], [-77.43993527303489, 34.68355362240011], [-77.43991243253396, 34.68339103778115], [-77.43994347110986, 34.68330329981731], [-77.43994529694086, 34.68290624921563], [-77.43994607806503, 34.682855807286494], [-77.43993310172515, 34.682839224087786], [-77.43991984676583, 34.68242035310077], [-77.43989131837526, 34.682265573279274], [-77.43990925658699, 34.682015698831464], [-77.43990359729519, 34.68198073301039], [-77.43990019538965, 34.681954395590395], [-77.43980815631542, 34.681677454549444], [-77.43982856460771, 34.68156565332058], [-77.43969493045384, 34.68155636054732], [-77.43963823535911, 34.68157269787781], [-77.43955036802674, 34.681587317156236], [-77.43902090420002, 34.681671403822534], [-77.43870551659612, 34.68154350687622], [-77.43846524785955, 34.68137716308441], [-77.43840209804945, 34.68126836070656], [-77.43833448043624, 34.68116216462553], [-77.43800897002093, 34.68073932784183], [-77.43786927053321, 34.680597996614864], [-77.43757112167346, 34.68043690304271], [-77.43745898527683, 34.68042550637896], [-77.43712645325476, 34.68045774761204], [-77.43680632508305, 34.68046668512912], [-77.43665849998118, 34.680440529722155], [-77.43651510594813, 34.680365882329376], [-77.43643277458601, 34.680304876327014], [-77.4362509391382, 34.6801715522233], [-77.43604482810224, 34.6800204277866], [-77.43590824682106, 34.67996181954084], [-77.43569639360416, 34.67987352463281], [-77.43548802587875, 34.679806466935915], [-77.43540283095518, 34.67978083251482], [-77.43532083343962, 34.679749299646154], [-77.43511355623855, 34.679673316780566], [-77.43460490592275, 34.67932667461098], [-77.43457286402588, 34.67932741702286], [-77.43449731439246, 34.67932724067786], [-77.43452582786097, 34.67927125039965], [-77.43428943453625, 34.6788109288872], [-77.4341705804015, 34.67858795670856], [-77.43417667828737, 34.678568299998624], [-77.43415522329491, 34.67855613823086], [-77.4341362173438, 34.67856044230261], [-77.434076746284, 34.6785551404768], [-77.43362682078646, 34.67847543864035], [-77.4335420628149, 34.67846079177461], [-77.43341512702833, 34.67843980419166], [-77.43310179564469, 34.67836488010197], [-77.43286981474164, 34.678569702923625], [-77.43273386202665, 34.67827779073804], [-77.43233974636593, 34.678187123589254], [-77.43210746522757, 34.678092872618336], [-77.4320515759578, 34.67807581573703], [-77.43200384370915, 34.67806543308501], [-77.43175088030311, 34.67800780441663], [-77.4311795734553, 34.678100943658535], [-77.43116964243939, 34.67819719561293], [-77.43119712738073, 34.67847285792517], [-77.43147111172861, 34.67876197443052], [-77.43150625081478, 34.67879021483155], [-77.43152146745642, 34.67880080675828], [-77.43154837944395, 34.67881642134966], [-77.43179466244442, 34.67896388805066], [-77.43195374852212, 34.67904981271907], [-77.43204588276421, 34.67920293159831], [-77.43235221225618, 34.67932987700547], [-77.43224852757845, 34.67959293321015], [-77.43209839691927, 34.67971566501804], [-77.43186822332731, 34.67981704175992], [-77.43176282657687, 34.67991485793884], [-77.431686264843, 34.67995535031679], [-77.431403323198, 34.68007492245114], [-77.43113822109021, 34.680282992181375], [-77.43110315965286, 34.68031047735687], [-77.43109554755812, 34.68031956061748], [-77.43107231995324, 34.68035331543929], [-77.4308487404403, 34.68066388012916], [-77.43075926887147, 34.68074926761675], [-77.43064091828518, 34.680936948448256], [-77.43051604683208, 34.68122326719762], [-77.43039780711426, 34.681422310442095], [-77.43026620218339, 34.68169495117438], [-77.43016636467826, 34.68179176145743], [-77.43005585705832, 34.6819009172942], [-77.4299736418096, 34.68193603749377], [-77.42981975103149, 34.681972914272706], [-77.42963877334654, 34.68203457587745], [-77.42927579083283, 34.682133301704695], [-77.42905112140896, 34.6822119432635], [-77.428857789739, 34.68232049265245], [-77.42872418322327, 34.682425269370285], [-77.42850167127561, 34.68259413885221], [-77.4283930486031, 34.68263173635516], [-77.42826544338834, 34.68267238486427], [-77.4280145662205, 34.68276079092769], [-77.42779833357818, 34.682810324509305], [-77.42764939149164, 34.68263190503805], [-77.427448771039, 34.682386740667084], [-77.42737815452034, 34.6822987263537], [-77.42733919390987, 34.68218258173089], [-77.4272110182287, 34.68219484497975], [-77.42713323762705, 34.68227637574822], [-77.42681682320489, 34.682298205475945], [-77.4266167219833, 34.68246488407335], [-77.42647155454092, 34.68248156373784], [-77.42643314011028, 34.68259057340688], [-77.42646791216565, 34.682678610390155], [-77.42648859386581, 34.68290766207009], [-77.42651057720495, 34.68310718213272], [-77.42653512345537, 34.68318532117179], [-77.42647669181471, 34.68323786691458], [-77.42642459067446, 34.68342619779063], [-77.42628719206358, 34.683646785888264], [-77.42627988871655, 34.68365512286437], [-77.42627768786548, 34.68366038608024], [-77.42626156209289, 34.68369221573128], [-77.42606769927488, 34.68406494688573], [-77.42604477394048, 34.684131962171456], [-77.42603112227718, 34.684200028230734], [-77.42599430991454, 34.68431890482033], [-77.42593839192257, 34.68437429091825], [-77.42588205279796, 34.684509311679506], [-77.42573258568747, 34.68458184324152], [-77.42554462704803, 34.68470551044325], [-77.42548637716246, 34.68487373871175], [-77.4255015003776, 34.68506009308774], [-77.4257492045265, 34.68546271777462], [-77.42588307106372, 34.68560094285485], [-77.42600749941077, 34.68567734233501], [-77.42618692430042, 34.68575569606768], [-77.42629316908366, 34.68579737407428], [-77.42644409013471, 34.68581319442845], [-77.42666500401212, 34.686026126862004], [-77.426647020979, 34.686174884238994], [-77.42653807472158, 34.6863298298657], [-77.42631014758584, 34.68646108728809], [-77.4262326122277, 34.68657829847384], [-77.42598203687231, 34.68687251068762], [-77.42594276666149, 34.68689166780389], [-77.42596804575388, 34.68692085731758], [-77.42602286791607, 34.68698327114003], [-77.42621596357826, 34.68724752846935], [-77.42620039635668, 34.68727352926851], [-77.42597931169459, 34.68746352622744], [-77.42601105722694, 34.687711865654045], [-77.4260164630857, 34.68777715967377], [-77.42591111966442, 34.68799875228405], [-77.4258715592366, 34.68806081779741], [-77.42580762450068, 34.688127162398786], [-77.42569222802813, 34.688201731389825], [-77.42557750201497, 34.68827036748511], [-77.42542723674796, 34.68825314187447], [-77.42505835749934, 34.68825956609551], [-77.42489823166719, 34.68840318523128], [-77.42467671438303, 34.68852186717996], [-77.4246283688974, 34.68866824970124], [-77.4246229966075, 34.68880503061099], [-77.4244961395242, 34.688974550000125], [-77.424450521257, 34.68916512473544], [-77.42431134654407, 34.689381452759996], [-77.4242997050129, 34.689401303963834], [-77.42401362510758, 34.68957139302169], [-77.42397651037318, 34.6896208049791], [-77.42389693009211, 34.689648659584854], [-77.42353208732226, 34.689642093877026], [-77.42324462262995, 34.68968826211315], [-77.42267174635089, 34.689619248526505], [-77.42259821041107, 34.689611043950805], [-77.42248672508651, 34.68959640254775], [-77.42193594483297, 34.68978148482636], [-77.42184234498997, 34.68987105319589], [-77.4217911062214, 34.68991217043256], [-77.4217807497381, 34.689991028104366], [-77.42185518120947, 34.690060506437746], [-77.42208152895978, 34.69075826304999], [-77.42225655699622, 34.69088785821461], [-77.42252727541069, 34.69099096871218], [-77.42256620065581, 34.69100239967999], [-77.4228425821733, 34.69107729584728], [-77.42284187027009, 34.69111833647434], [-77.42283710815762, 34.691123583345565], [-77.42281476418172, 34.691173404320644], [-77.42276169059433, 34.69123006279486], [-77.42276846773979, 34.69125277920095], [-77.42271416728931, 34.691296545398615], [-77.42264732427385, 34.691329831562264], [-77.42260040576936, 34.69136046408781], [-77.4225116860676, 34.69133945626062], [-77.4224214901144, 34.69142507151662], [-77.42233220556217, 34.69141997434879], [-77.42209355002602, 34.6914510148618], [-77.42189171423993, 34.691447703544085], [-77.42145425007405, 34.691445618527304], [-77.42141207504962, 34.69145685271471], [-77.420991971175, 34.69147248638119], [-77.42040102775357, 34.6916622866757], [-77.42041388702702, 34.692023216953864], [-77.42039330065288, 34.69221867495739], [-77.42049407128931, 34.69231335821759], [-77.4205368107089, 34.692401063549084], [-77.42056063658339, 34.69273195101155], [-77.42059429476853, 34.69284807057144], [-77.42062374201862, 34.692928804637575], [-77.42059216495367, 34.69306270342006], [-77.42058305552531, 34.69312368407209], [-77.42046948186345, 34.69318712551906], [-77.42044835188851, 34.693201547891256], [-77.42042635193437, 34.693208643830964], [-77.4202892590668, 34.69325622592325], [-77.42025292137083, 34.693255993592366], [-77.42020258457131, 34.69327014535619], [-77.41994389021261, 34.69334234168254], [-77.41981933812679, 34.69329502974582], [-77.4197588335742, 34.69339447121462], [-77.41966711204235, 34.69342012019895], [-77.41958689021553, 34.69347409980383], [-77.41958510172108, 34.6934748100405], [-77.41957290934486, 34.6934788304298], [-77.41948832052758, 34.693501773389656], [-77.41941756269856, 34.69350009061884], [-77.41932148097334, 34.6934721397869], [-77.41927970222713, 34.69342285238557], [-77.41910771588657, 34.693338144041086], [-77.41901217151793, 34.69324008664782], [-77.41869403591602, 34.69306437340606], [-77.4184628877926, 34.69292369258096], [-77.41824555117533, 34.692965672729024], [-77.41799834287238, 34.6929082614116], [-77.41784905635065, 34.69283026436176], [-77.41774069912348, 34.692888163145675], [-77.4172742337648, 34.69276400098397], [-77.41722961454947, 34.69275621574887], [-77.41719435037915, 34.69274279371841], [-77.41713871840098, 34.69275748669059], [-77.41675804114742, 34.69277736045994], [-77.41656219003453, 34.69284789339653], [-77.41622580466355, 34.69265505883247], [-77.416111535653, 34.693249068040316], [-77.4163547452053, 34.69356438051726], [-77.41636135757973, 34.69359120436216], [-77.41636091767433, 34.69360359421552], [-77.41632821614094, 34.69365600740679], [-77.41609999812744, 34.69394542925576], [-77.41597622883468, 34.694028121173794], [-77.41582479376532, 34.694243452147276], [-77.41582115163781, 34.694253422434535], [-77.41578013422546, 34.69428003679615], [-77.41553866190816, 34.694434150866144], [-77.41549285109583, 34.6944486952887], [-77.41544751037617, 34.69448426047635], [-77.41534282238632, 34.694462471450876], [-77.41523138349055, 34.69432665559951], [-77.41500492684918, 34.69415707621294], [-77.41492687058954, 34.69406893984956], [-77.41458251142146, 34.69388693894186], [-77.41436813056566, 34.69378521483468], [-77.41407761759324, 34.69363050264796], [-77.41388722811068, 34.69385641667218], [-77.41406582045877, 34.6941024831693], [-77.41412828749603, 34.69449985799729], [-77.41414974462435, 34.69453941128998], [-77.41424795159219, 34.694657131497145], [-77.41440237907122, 34.69485479223136], [-77.41444155692498, 34.69497373378175], [-77.41452662961179, 34.69519831849019], [-77.4145085037335, 34.69525687526716], [-77.41439400707658, 34.69564404832187], [-77.41433248478673, 34.69568950507063], [-77.41429480498041, 34.69579237500609], [-77.41430561387449, 34.69595965764215], [-77.41417549700266, 34.69603479723342], [-77.41411447685559, 34.69617234415476], [-77.413828149187, 34.69621486222044], [-77.41374679256897, 34.69660282206593], [-77.41385809783333, 34.69686725400289], [-77.41387641370022, 34.696927721358826], [-77.41401053130454, 34.69723350267001], [-77.41401678903465, 34.697247409965954], [-77.41402365749303, 34.69725878472598], [-77.41409802167148, 34.6974042542503], [-77.41419788052623, 34.697599285416885], [-77.41419030762245, 34.69762138097375], [-77.41422931131426, 34.69788983286138], [-77.41436353659141, 34.698227792553276], [-77.41441082495446, 34.69842210083018], [-77.41446082790614, 34.69852992697773], [-77.4147351890171, 34.699157717507525], [-77.41474312994946, 34.699176191290505], [-77.4147553566759, 34.69919206180286], [-77.41499197316699, 34.69951874282288], [-77.4151983409433, 34.699771681961856], [-77.4152636748298, 34.699851759298305], [-77.41566681548328, 34.70006999713243], [-77.41571923784772, 34.70018624582936], [-77.41580790718369, 34.70020023032588], [-77.41612518886852, 34.7003850928585], [-77.41622531697506, 34.700544908436], [-77.41623439899011, 34.700562714656336], [-77.41624652446447, 34.70057875798756], [-77.41625201523911, 34.70069402206397], [-77.41624691939472, 34.70073105001861], [-77.41620615158782, 34.70071818917208], [-77.41611974590835, 34.70071011973448], [-77.41603502510698, 34.700757895590186], [-77.41587326482266, 34.70076106490597], [-77.41566597392837, 34.700716200031515], [-77.41560473197578, 34.70088693185782], [-77.41551093724608, 34.70090561150166], [-77.41535804027795, 34.70096074329259], [-77.41526631972528, 34.700966546160046], [-77.41519170429507, 34.70090132884543], [-77.41498419346551, 34.70086105431473], [-77.41490774026477, 34.70077524810698], [-77.41476772438286, 34.7007435537759], [-77.41405167666716, 34.700357330179], [-77.4137783487862, 34.70024862443163], [-77.41355850782924, 34.70026241270282], [-77.41339582459008, 34.700184552517285], [-77.41318418055397, 34.70008709994168], [-77.41296138453671, 34.69996226074803], [-77.41294002315655, 34.69992832642393], [-77.41271993354128, 34.699598240283805], [-77.41269328832277, 34.69956895990554], [-77.41260413483168, 34.699449875891915], [-77.41245875368855, 34.6992722190966], [-77.41246358804482, 34.69923435600644], [-77.4124650997426, 34.6992225165131], [-77.4126580533038, 34.69901748345964], [-77.41234334255176, 34.698564143825465], [-77.41223462334256, 34.69843716169677], [-77.412098407337, 34.698303331042716], [-77.4120585838513, 34.698248656713545], [-77.41194720357066, 34.69811070108826], [-77.41187294438595, 34.69797528451565], [-77.4118338657696, 34.69789048471864], [-77.4118061372078, 34.697723193519586], [-77.41176880454621, 34.69758816706555], [-77.41167900235891, 34.69732987541447], [-77.41161106847068, 34.697077800436254], [-77.41160288823085, 34.69697100944006], [-77.41157374884362, 34.69692743049569], [-77.41154727263724, 34.69688670866544], [-77.41143648402232, 34.69663323580998], [-77.41142753456215, 34.69654207129131], [-77.41132824595121, 34.69631581104383], [-77.41121979464133, 34.69618237622312], [-77.4111690507082, 34.695979617746765], [-77.41112253898818, 34.69577659618661], [-77.41109907514506, 34.69567651951797], [-77.41102696818427, 34.69537445255124], [-77.41102692671583, 34.69537172061483], [-77.41102648716587, 34.69537031448128], [-77.41102575926608, 34.69536787091487], [-77.41096915313395, 34.69507195026614], [-77.41102393564088, 34.69492503149689], [-77.4110424355329, 34.694651624487534], [-77.41109093255577, 34.694555442913774], [-77.41106687484798, 34.694460773493816], [-77.4111029158267, 34.69437647484135], [-77.41120565620297, 34.69431602428389], [-77.41127905449395, 34.69429047722534], [-77.4115322680298, 34.69415073862435], [-77.41162617438314, 34.69411004877752], [-77.41174750498666, 34.693982187282494], [-77.41209767913722, 34.693789444219675], [-77.41212218064626, 34.69342500241116], [-77.412377350534, 34.69332817851039], [-77.41233824248908, 34.69303774186912], [-77.41206740893973, 34.692877505423795], [-77.41207312087444, 34.69270198763912], [-77.41207154085838, 34.69266207596129], [-77.41214115883082, 34.69222725636694], [-77.4118572941064, 34.69202800436342], [-77.41173905397417, 34.691798268604096], [-77.41161589339053, 34.691848885064374], [-77.41144395685387, 34.69171075007889], [-77.41135916688518, 34.691660764365864], [-77.41130437934886, 34.69163946606687], [-77.41120771749274, 34.691521174517845], [-77.41123166771743, 34.69149077596395], [-77.4113274340031, 34.69137711440149], [-77.41145872431568, 34.69132944033015], [-77.41157067590028, 34.6912731676376], [-77.41172227863795, 34.69127475851218], [-77.41190818521032, 34.69121422152284], [-77.41229904476833, 34.6910643373962], [-77.41238228211238, 34.69085795158177], [-77.41250266702787, 34.69029105359911], [-77.41241325096189, 34.68998607076358], [-77.41261051148857, 34.68973500250465], [-77.41278254353952, 34.68928159919487], [-77.41278739982818, 34.688998756721915], [-77.41260756219376, 34.688799040034894], [-77.41212279486899, 34.688664124982566], [-77.41202067272825, 34.68861266366383], [-77.41190170321575, 34.68857574135804], [-77.41183624518642, 34.688665961067294], [-77.41155036553359, 34.688749234354], [-77.41140116582898, 34.68879328706291], [-77.41132038747034, 34.68881787669455], [-77.41124113955951, 34.6887372944977], [-77.41109195635353, 34.68864780061357], [-77.41106203600744, 34.68860350485819], [-77.41103249138382, 34.68838473107737], [-77.41107155229605, 34.688209965369715], [-77.4109457758334, 34.68789846932984], [-77.4109316024823, 34.68782199968936], [-77.41092220065272, 34.687787024182406], [-77.41090781882608, 34.687698304158154], [-77.41090494770742, 34.68760994574185], [-77.4108831629288, 34.6875614351075], [-77.41087287480302, 34.68749020673322], [-77.4109198118045, 34.68738057193761], [-77.41092873100551, 34.68735844184419], [-77.41108139447616, 34.68728361094277], [-77.41109857424073, 34.68726217155854], [-77.41113712607537, 34.68723769333579], [-77.41125432574242, 34.68724102593869], [-77.41174810704501, 34.68734083791136], [-77.41210449211809, 34.68741117945203], [-77.41246817152674, 34.687067268094694], [-77.41289319582683, 34.68679932794077], [-77.41303710244408, 34.68594407429375], [-77.41395726000518, 34.68635096942454], [-77.41518988759451, 34.686472585034466], [-77.41653666765296, 34.686295477864306], [-77.4174790155991, 34.686167340565056], [-77.41809470521665, 34.68523875478709], [-77.41883219270633, 34.68440435483318], [-77.41836995886413, 34.68337961827547], [-77.41756428232375, 34.68274584520047], [-77.4170610888217, 34.682140311388245], [-77.4155989997396, 34.68115716442888], [-77.4154834948841, 34.68107949573605], [-77.41542258101947, 34.68103853447684], [-77.41522572928947, 34.68090616079152], [-77.41441142467457, 34.680355817583894], [-77.41448002791716, 34.67964638008564], [-77.41433927429526, 34.6794777711936], [-77.41372141832939, 34.67831258873364], [-77.41354095420893, 34.678252777397994], [-77.41338781841452, 34.67802661673837], [-77.4127700892895, 34.677172052853244], [-77.41237566273173, 34.67695356184534], [-77.41168455840524, 34.67649509673639], [-77.41156695772787, 34.676398273158], [-77.41114745043893, 34.676137099440524], [-77.41114298563355, 34.676122823616055], [-77.41115313487023, 34.676117467587076], [-77.41165873100387, 34.676208320217654], [-77.41178782753775, 34.676138435555664], [-77.41255118051367, 34.676171935020015], [-77.41266163662164, 34.675536041650666], [-77.4132723490676, 34.67479404302885], [-77.41337063937334, 34.67466593268969], [-77.41255553334885, 34.673486918283615], [-77.41245938669928, 34.67334784354834], [-77.4123508338985, 34.67319081965425], [-77.41254517347215, 34.67316962950204], [-77.41264422264416, 34.67318059220557], [-77.41295726999427, 34.67314010636984], [-77.41432100335754, 34.67308212622757], [-77.41547655363642, 34.672088919849465], [-77.41550668213657, 34.6720587603093], [-77.4155177469709, 34.67204738234331], [-77.41555042140314, 34.67199487886392], [-77.41644055540628, 34.67056456557542], [-77.41699813152216, 34.6696685534178], [-77.41668494151126, 34.66807559388085], [-77.41669083689571, 34.66801137042775], [-77.41467476623015, 34.66767605747914], [-77.41422724399999, 34.667712589876544], [-77.41332763816713, 34.667941521205975], [-77.41301180287425, 34.66794801795147], [-77.41277758814088, 34.66829379830621], [-77.41276550479914, 34.668303902810266], [-77.4124348123523, 34.668500334784135], [-77.41237943008475, 34.66872789927446], [-77.41224751609184, 34.66894205694424], [-77.41224159347126, 34.668959217616916], [-77.41222135250419, 34.66898368218547], [-77.41206660527885, 34.669177532839456], [-77.41199224618347, 34.669272576859456], [-77.41184141378946, 34.669314352911435], [-77.41160115262316, 34.669380897800394], [-77.41124725272749, 34.66944988856583], [-77.4111960224645, 34.66946625467556], [-77.41114983588464, 34.66949003456092], [-77.41104865667829, 34.66947298368807], [-77.41054109801642, 34.669379593777435], [-77.41013203786105, 34.669221867233574], [-77.40996874962164, 34.66914347702113], [-77.40986322136362, 34.669074898037884], [-77.40985349719662, 34.66896207628797], [-77.40972815798587, 34.66868490785779], [-77.40973050697878, 34.66856494144673], [-77.40973954735244, 34.66836306944805], [-77.40977108872268, 34.66822065269339], [-77.40980420920359, 34.667826578358195], [-77.40979603944908, 34.667527160787756], [-77.40978788150016, 34.667320961171335], [-77.40967457427047, 34.66697708726933], [-77.40955757242367, 34.666622003244335], [-77.40953069524056, 34.66653558349887], [-77.40948297569982, 34.66639561191972], [-77.4089700948929, 34.66587679929812], [-77.40748881034652, 34.664779608403705], [-77.40744560195687, 34.66468877133772], [-77.40729276772265, 34.66471098340706], [-77.40591733208775, 34.66531865482541], [-77.40448617644785, 34.665950911430755], [-77.40446283895696, 34.665956870845896], [-77.40289401406511, 34.66635747906986], [-77.40164381180023, 34.667206541295094], [-77.40163062825451, 34.66728322244073], [-77.40154368490332, 34.667261769200216], [-77.4013885296643, 34.6672544261402], [-77.40144460381474, 34.66713679892287], [-77.40055838720349, 34.66581540724071], [-77.3997231414817, 34.664699129283164], [-77.39887825115682, 34.66577221173893], [-77.39875560746538, 34.66619534898792], [-77.39850110728871, 34.66665167375953], [-77.39849749647499, 34.6666641324504], [-77.39849080580942, 34.66667787811461], [-77.39828395497389, 34.667044631599936], [-77.39820131704217, 34.66711958543539], [-77.39798974653038, 34.667311483366014], [-77.39761986587152, 34.66753621430119], [-77.39758135309184, 34.667057224526246], [-77.39747532308289, 34.66686539146795], [-77.39739662938001, 34.66668795726946], [-77.3972618792965, 34.66656026205316], [-77.39706299999108, 34.66638079921044], [-77.39684811537232, 34.66577686826673], [-77.39623716498413, 34.665939890469716], [-77.39590209219737, 34.666314530712995], [-77.39560441177797, 34.666401034387405], [-77.39554713966098, 34.666749404648655], [-77.39545119416901, 34.66689865224179], [-77.39541913825278, 34.666984165346825], [-77.39532724172795, 34.667069975245184], [-77.39530957329971, 34.66708559106231], [-77.395172666844, 34.6671368525903], [-77.39513414053499, 34.66712812344476], [-77.39489235454919, 34.66706300825613], [-77.39487596833662, 34.66705517543016], [-77.39476805793625, 34.667035765152896], [-77.39459767309101, 34.66699847969738], [-77.39457357930918, 34.66699313963688], [-77.39454270327717, 34.666985684920405], [-77.39427275775346, 34.666925694648285], [-77.39406032078443, 34.66686738250845], [-77.39397713222797, 34.666840317034115], [-77.39388936071731, 34.666811867244526], [-77.39368422010926, 34.66674557634441], [-77.39349037683715, 34.66668293553738], [-77.39339143023464, 34.66665041475226], [-77.39328937427929, 34.66661579397805], [-77.39309896102108, 34.66655414844937], [-77.39290751506067, 34.66647733804082], [-77.3928115797144, 34.666440323994195], [-77.39272605364486, 34.6664044268354], [-77.39228885262929, 34.666213133785725], [-77.39224032165879, 34.666200586850344], [-77.39215686510177, 34.66619550536181], [-77.39192831424695, 34.66617175410231], [-77.39176722998721, 34.666107759834006], [-77.39163276390227, 34.66608612751933], [-77.39148137841767, 34.66603091367439], [-77.39055726413324, 34.66562409343549], [-77.39049145013996, 34.66560253903823], [-77.39036576837066, 34.665603566727484], [-77.38936550573573, 34.66517019802228], [-77.3893169604194, 34.665233462455134], [-77.38910911357549, 34.665565634254165], [-77.38869767878128, 34.66563534553475], [-77.3886136935125, 34.66559552993959], [-77.38851739892355, 34.665679309269315], [-77.38795323762938, 34.665809855785774], [-77.38793516303569, 34.665818106856484], [-77.38744324165604, 34.66600349027354], [-77.38730023960291, 34.665998432743606], [-77.38716261660007, 34.666029257820355], [-77.38697746612416, 34.66607986218655], [-77.38682059059634, 34.666089747398416], [-77.38667863133364, 34.66607869375262], [-77.38659958262659, 34.66606867273032], [-77.38614819588958, 34.6660640336689], [-77.38612615764755, 34.66603905665446], [-77.38609006320524, 34.66604495367235], [-77.38606736039928, 34.66606028414837], [-77.38560354975407, 34.666047325250695], [-77.38548649371474, 34.66606296715928], [-77.38534601328891, 34.6660590708278], [-77.38508148317888, 34.66605517447877], [-77.38489703311618, 34.666032300348974], [-77.38460303676118, 34.66603868527531], [-77.38459360723225, 34.66603668463865], [-77.38458910378115, 34.66603487668257], [-77.38441395614623, 34.665977918799996], [-77.38432828719753, 34.66593016929575], [-77.38426546237424, 34.66589515240733], [-77.38417992914778, 34.66584747822518], [-77.38411892355536, 34.6658108805686], [-77.38407302939439, 34.665778661085724], [-77.38398139277803, 34.66571966945215], [-77.38382299013642, 34.665609151843725], [-77.38371042186228, 34.665534096959426], [-77.38355651667216, 34.66544585563969], [-77.38331913961196, 34.665283155724985], [-77.38313123752863, 34.66519163905257], [-77.38290858969523, 34.665047603794605], [-77.38284404723814, 34.66485796386485], [-77.38267538100088, 34.66475418714154], [-77.38257979690565, 34.6647374944544], [-77.38250592813112, 34.66468756625275], [-77.38244587779103, 34.66468344884689], [-77.38238746635594, 34.66463190297581], [-77.38249510622754, 34.66451362780522], [-77.38251320579472, 34.66450560117409], [-77.38268764039593, 34.66436546904359], [-77.38270442577249, 34.66435603998829], [-77.38307740358887, 34.66405294749919], [-77.38308312716303, 34.6640487875982], [-77.3834934462783, 34.66377919302405], [-77.38368989412257, 34.66318411845265], [-77.38380968638178, 34.66297401343057], [-77.38388056200543, 34.66284615636006], [-77.3840484770416, 34.662767046402905], [-77.38417444594505, 34.66281086135503], [-77.38434429085969, 34.66290045081678], [-77.38509219162282, 34.66329470215782], [-77.38538469761147, 34.66345577905019], [-77.3861022555736, 34.663633342075485], [-77.38615631839926, 34.663649981875054], [-77.38617968149347, 34.66367136220636], [-77.38624713582517, 34.66366742246856], [-77.38678996274786, 34.66363012719333], [-77.38709360867009, 34.6637165552335], [-77.3873093665357, 34.66390244946747], [-77.38765370802616, 34.664073699044394], [-77.38815591877555, 34.664325511517276], [-77.38827123598375, 34.664386602948014], [-77.38835596421748, 34.6644202482604], [-77.38884270708758, 34.664718389386046], [-77.38884995508603, 34.6647294045328], [-77.38885975363388, 34.66474647929888], [-77.38905079083156, 34.664875926634814], [-77.38936224454531, 34.66507720144312], [-77.38948432464042, 34.66507855818895], [-77.39027482599454, 34.665161762827196], [-77.39030707754945, 34.66473543664771], [-77.39038541013196, 34.66438266776437], [-77.38985496493869, 34.66337694653742], [-77.38978757598294, 34.663218435181264], [-77.38978761244655, 34.663126114998136], [-77.38948840861117, 34.662711636299555], [-77.38946784782758, 34.66267611837077], [-77.38946040578956, 34.66267381152129], [-77.38936942474696, 34.66260619503666], [-77.38897253342853, 34.662292694953734], [-77.38895202046089, 34.662284877643415], [-77.38887330041959, 34.66227715700629], [-77.38850995311363, 34.662231128517455], [-77.38839295963166, 34.662228020399496], [-77.38814976978637, 34.662163372498284], [-77.38810392050537, 34.66214961795323], [-77.38784081658699, 34.662068694130745], [-77.38772705855065, 34.66204563339513], [-77.38755139015433, 34.66203511447152], [-77.3874188589941, 34.66198993717189], [-77.38736255279761, 34.66193212999576], [-77.38738774323352, 34.66180706987114], [-77.38763689076417, 34.661720785714714], [-77.38764159440417, 34.66172386308117], [-77.3876483871008, 34.66171904006118], [-77.38795482873866, 34.66167528763347], [-77.38826420206932, 34.66162675156317], [-77.38827286102423, 34.66162515453237], [-77.38858219398548, 34.66157503767753], [-77.3892014365486, 34.661257182206], [-77.38925835092928, 34.66123171476553], [-77.38928438890318, 34.661216557996475], [-77.38963186109969, 34.66092469489315], [-77.38973144110929, 34.660895769532864], [-77.3900017345648, 34.660805768558546], [-77.3902357479328, 34.66082183374382], [-77.39033609265186, 34.66082424957927], [-77.39058082632147, 34.66087206709854], [-77.3909206568596, 34.660909109497965], [-77.39118616034867, 34.66099407045119], [-77.39136892434442, 34.66096507191992], [-77.39180451197332, 34.66096544701017], [-77.39183489214922, 34.660966303171776], [-77.39229224411072, 34.660979617626424], [-77.39309527017484, 34.660858317415034], [-77.39313021443364, 34.66085444926479], [-77.39315163967595, 34.66084419366999], [-77.39399923071886, 34.660780090808096], [-77.39489675261181, 34.66037085663217], [-77.39556488686566, 34.65994755394186], [-77.39721602276299, 34.65890141734117], [-77.39748872994616, 34.65880035981377], [-77.3974550517583, 34.65860963548182], [-77.39629016252044, 34.6575709306065], [-77.39491056200141, 34.65541930898788], [-77.39464498694691, 34.654730319373826], [-77.39426562325677, 34.65470289247444], [-77.39273388083059, 34.653765152589756], [-77.39268020831582, 34.653732294155766], [-77.39111072208195, 34.653705326555176], [-77.39042145071892, 34.65309308685373], [-77.38948141206706, 34.65248645740899], [-77.38869949532713, 34.651798692681055], [-77.38795606190055, 34.65127798889757], [-77.38703974664102, 34.65042841162523], [-77.38559790111839, 34.64964955145288], [-77.38557467022734, 34.64882057042375], [-77.38480165705576, 34.6483940746638], [-77.38446831869007, 34.64847292009577], [-77.3844625704645, 34.6481148800664], [-77.38430769865508, 34.646970992260094], [-77.3832243757275, 34.647855403298344], [-77.38259268408456, 34.64736622375035], [-77.3824357726835, 34.64742415273907], [-77.38223895668904, 34.647374198386714], [-77.38164713592053, 34.647204276171095], [-77.38136800919014, 34.647162977594846], [-77.3802044403734, 34.647175038299174], [-77.38006978643241, 34.647167354602914], [-77.37998846219843, 34.64714873425909], [-77.37972245984625, 34.64709948888418], [-77.37939469670016, 34.64702443963045], [-77.3792811544741, 34.64696064629338], [-77.37893239205695, 34.64673970947902], [-77.37849256566611, 34.64658680566012], [-77.37795002043767, 34.64650565642126], [-77.37775655398602, 34.6464768511801], [-77.3777039148502, 34.646492629450144], [-77.37763534059448, 34.64647714415558], [-77.37721799091292, 34.64635499082152], [-77.37701817181696, 34.64631571595129], [-77.37668718320191, 34.646259588365346], [-77.37668640924585, 34.646259388293046], [-77.37635456062947, 34.64620013798661], [-77.37609617922642, 34.64628001127927], [-77.37595099983525, 34.64623977230039], [-77.37569256606596, 34.64609257645034], [-77.37560758315264, 34.64609922023763], [-77.37538586139928, 34.64615941629991], [-77.3751242907304, 34.64613549894413], [-77.37505915148807, 34.64612691972782], [-77.37501836542934, 34.646117833530475], [-77.37488857591323, 34.646084336867354], [-77.37476461869228, 34.64604616313446], [-77.37471006054201, 34.645983284257284], [-77.37455948082766, 34.6458781654967], [-77.37430604330714, 34.645566885302784], [-77.37404653360895, 34.64574563478868], [-77.37395245000714, 34.64570922968915], [-77.37364729041013, 34.64547537574223], [-77.37360471739376, 34.64547214920086], [-77.37332920897549, 34.64548571004454], [-77.37327236295667, 34.64546259875585], [-77.3731116247614, 34.64530027769986], [-77.3730420823088, 34.645283262671654], [-77.37310644170114, 34.645253433530804], [-77.37315286630795, 34.64521855304762], [-77.3732989423179, 34.645335400321265], [-77.37346087064736, 34.64525060722776], [-77.3736046083498, 34.645263412510566], [-77.37391464343067, 34.64453023704469], [-77.37393987802017, 34.64436352381947], [-77.3740154502587, 34.64412381220882], [-77.3743524553538, 34.64399037966293], [-77.3745780627993, 34.643737952853854], [-77.37463623704437, 34.64367923139066], [-77.37532989075937, 34.643496021662145], [-77.37533872005828, 34.64349509581584], [-77.37535584217922, 34.64348277839457], [-77.3758079078268, 34.643073598292524], [-77.37612761465762, 34.64256443590531], [-77.37614485056213, 34.642538581184986], [-77.37620868259907, 34.64251083779166], [-77.37615084615305, 34.64249417426866], [-77.37612763370632, 34.6424933259964], [-77.3760429035716, 34.6424434695035], [-77.3756565654253, 34.64224849893193], [-77.37556547487517, 34.64217890866083], [-77.37533909733585, 34.64213409589601], [-77.37509597028448, 34.64208375112089], [-77.37494480506867, 34.64204849448575], [-77.37472777880993, 34.641874984027055], [-77.37464295149093, 34.64178772517294], [-77.37455060059727, 34.64166008218046], [-77.37405227867417, 34.64112313826042], [-77.37394272314566, 34.640944525900046], [-77.373762211674, 34.64085302629605], [-77.37370618550537, 34.64080875478252], [-77.37343520466517, 34.64078743692614], [-77.3733808152391, 34.64078138710263], [-77.373350381277, 34.64078076387758], [-77.3729735858476, 34.64086743454992], [-77.37261556916467, 34.64094456208828], [-77.37256629902282, 34.64092650360638], [-77.37252147378427, 34.640856767703085], [-77.37237254588779, 34.64051589157733], [-77.37229405085246, 34.6404098941282], [-77.37218516654451, 34.640227623101495], [-77.37215269056598, 34.64015798052168], [-77.3721374001438, 34.64012519095333], [-77.37209490066918, 34.6400340531142], [-77.37209149412094, 34.64002566116753], [-77.37210054173858, 34.64000941056051], [-77.37213417278352, 34.63991337642668], [-77.37218527690919, 34.63987952481717], [-77.37233778494945, 34.63983597374437], [-77.37244236145098, 34.63980449702065], [-77.37257960880012, 34.63979769440611], [-77.37295784294135, 34.63959986768134], [-77.3729739783075, 34.639590848385176], [-77.37298219438475, 34.63958783640288], [-77.37298983983219, 34.6395778900514], [-77.37336839340816, 34.63922719672594], [-77.37343106151596, 34.639157251055224], [-77.37356558980345, 34.63907807396077], [-77.37356956492184, 34.63907413175774], [-77.37358273125733, 34.63906795693942], [-77.37372102960974, 34.63900310572164], [-77.37376276919714, 34.63898352207747], [-77.3741006355565, 34.63893259555904], [-77.37422493533624, 34.638902431444365], [-77.37455132329573, 34.63915414243704], [-77.37489772991245, 34.63882691918822], [-77.37494572032702, 34.6388216072955], [-77.37498999961613, 34.638817626773076], [-77.37507706646574, 34.6389942425575], [-77.374964935669, 34.639293471988914], [-77.37498127692153, 34.639677132095215], [-77.37498569722898, 34.63971504266166], [-77.37533971149716, 34.63992866055506], [-77.37544805539764, 34.63995635192731], [-77.3759569264583, 34.639815150688804], [-77.37612839722942, 34.63965459961964], [-77.37622880777747, 34.63953601555618], [-77.37633036895416, 34.639314199003834], [-77.37648461839755, 34.63907461195996], [-77.37670653540997, 34.63881579057538], [-77.37691729684171, 34.63854040307672], [-77.377254756002, 34.638600316233216], [-77.3776708849101, 34.63890375619273], [-77.37770579507253, 34.63893660786036], [-77.37806671533093, 34.639307144726345], [-77.37849429233168, 34.63936821890246], [-77.37907784229603, 34.63977090973837], [-77.37928280023239, 34.63978675129208], [-77.37965703701332, 34.639912930114704], [-77.3796770757024, 34.639914224878304], [-77.37972948956768, 34.639937358092055], [-77.38007133809292, 34.6401060642942], [-77.38014036918061, 34.640171947199065], [-77.38022672330078, 34.64023385153594], [-77.38020759094078, 34.64038338152793], [-77.3802909500064, 34.64064916240015], [-77.38032534817454, 34.64079510542972], [-77.3806214941485, 34.641026108296515], [-77.38069397540974, 34.64119412445324], [-77.38140079965609, 34.64149650152909], [-77.38164827748254, 34.641504376863054], [-77.38291582409754, 34.641544700488346], [-77.38317526708704, 34.641561424147255], [-77.38322551463713, 34.641564080049775], [-77.38329825592784, 34.64156792398741], [-77.38480272220174, 34.64181616644322], [-77.3872799124004, 34.641884836764504], [-77.38952547266729, 34.64060200828869], [-77.39111173676949, 34.6416773536629], [-77.39391587814606, 34.64128036349124], [-77.39729771706523, 34.6377734502682], [-77.39735250177142, 34.637692052624224], [-77.39742076192456, 34.63745897360649], [-77.39774886446962, 34.637355076346374], [-77.40171118703468, 34.6349637804576], [-77.40094387462061, 34.63345377371959], [-77.39900958913134, 34.630733391868176], [-77.40087879794947, 34.627394508767004], [-77.40086616053833, 34.62706905292792], [-77.40070316182434, 34.6269544131967], [-77.40077640388574, 34.62368541073532], [-77.4006604590808, 34.623609925330406], [-77.40057484058956, 34.62360851864892], [-77.39986300601446, 34.62288550403633], [-77.3997863912277, 34.622890554762186], [-77.39967657211542, 34.62287663525911], [-77.39925562575672, 34.62277811140529], [-77.39899795145064, 34.62271499405704], [-77.39870582729218, 34.62260039504604], [-77.39845258531926, 34.622322305431986], [-77.39833342157067, 34.622206050525456], [-77.39820952239324, 34.62209065010849], [-77.39794193463294, 34.621835008753465], [-77.39755696495686, 34.62174866321537], [-77.39742109793707, 34.62173005952215], [-77.39733700888856, 34.62172462021502], [-77.39702688276918, 34.621719249646205], [-77.39691729873388, 34.62169458665438], [-77.39671134529308, 34.621639555081664], [-77.39663267746026, 34.62144135272291], [-77.3965793449498, 34.62131875357157], [-77.39652832610363, 34.621013943835294], [-77.39650113434772, 34.62090546083103], [-77.39632113819098, 34.62059585174377], [-77.39628437527874, 34.620512149426354], [-77.39625895907935, 34.62049378295408], [-77.39623850339328, 34.62048102321605], [-77.39616738996084, 34.62045242816926], [-77.3958443013748, 34.62031614069411], [-77.39569411267559, 34.62033445544553], [-77.39545008773808, 34.6204031964873], [-77.39526131256848, 34.62045637316375], [-77.39505587591145, 34.62044273951249], [-77.39491254986075, 34.620439771691466], [-77.39485877106011, 34.62044137445647], [-77.39472978965094, 34.620385127830126], [-77.39466167125887, 34.62035754411625], [-77.39461839337244, 34.620327824782635], [-77.39459164709636, 34.62025625749176], [-77.39453410714265, 34.62012769357408], [-77.39455288975236, 34.62002988137898], [-77.39455214255304, 34.61991280747492], [-77.39455804320798, 34.61980030941007], [-77.39498644831627, 34.6195004417379], [-77.39505593217903, 34.61945221880289], [-77.39507881329267, 34.6194369321348], [-77.39516750700236, 34.61939949908671], [-77.39570920566453, 34.61917582031958], [-77.3958443557664, 34.61917041580177], [-77.39594471657631, 34.61917932529454], [-77.39613993270338, 34.619259265616506], [-77.39621478872718, 34.61927406729477], [-77.39623855403576, 34.619293896222], [-77.39641176273655, 34.61945807535163], [-77.39661523193489, 34.61961529145722], [-77.39663274547375, 34.619625199106395], [-77.39686337863628, 34.61975567091968], [-77.39702694366123, 34.61984820069113], [-77.397122713462, 34.61986352678426], [-77.39733694524247, 34.61984508580545], [-77.39742115104656, 34.61981986165085], [-77.39759001205405, 34.61971741249994], [-77.39796504423674, 34.61958182761009], [-77.3979162667056, 34.61931898082858], [-77.39781537226727, 34.61920108985251], [-77.39770093336897, 34.61903413636512], [-77.39758532034965, 34.61887402232336], [-77.39742118399921, 34.618680136775986], [-77.39740863650388, 34.618665235993255], [-77.39739838074144, 34.61865320046888], [-77.39726652415231, 34.61841422920539], [-77.39715155329336, 34.61826422652044], [-77.39698321322132, 34.617911104269844], [-77.39694385469012, 34.617869610089336], [-77.39663282254119, 34.617641052596106], [-77.39655554964207, 34.61758426956214], [-77.39642644899567, 34.61751965864185], [-77.39622048546698, 34.61714435054708], [-77.39584445706305, 34.61708999501677], [-77.39562262096442, 34.61702537517628], [-77.39509549223905, 34.6169049079028], [-77.39505608086645, 34.61689317952495], [-77.39503553338635, 34.616893236148144], [-77.394740430534, 34.61691366054583], [-77.3943043020941, 34.6169371205014], [-77.39426769301654, 34.61691766548995], [-77.39421209684023, 34.61692996871913], [-77.39387349761668, 34.616945906398314], [-77.39379706090934, 34.616967371005785], [-77.39363576988018, 34.61690443416951], [-77.39347931955457, 34.616747493840855], [-77.39334297059678, 34.616690603906015], [-77.39325902267824, 34.61651543161687], [-77.39295143030967, 34.61632249069501], [-77.39281906906014, 34.61620361711139], [-77.39269100234286, 34.61597134101808], [-77.39248916815964, 34.61617177374087], [-77.39229679182056, 34.616201200008035], [-77.39218226991294, 34.616132179433315], [-77.39190262820499, 34.615927742210076], [-77.39173539052132, 34.616317741548], [-77.39136192735684, 34.6162848659453], [-77.39111424851644, 34.615940752266994], [-77.39097726351523, 34.615905539571614], [-77.39072006206798, 34.6159147707412], [-77.3903844245688, 34.61590652800902], [-77.39032586706388, 34.615963951662515], [-77.39020907881337, 34.616167549948266], [-77.39013073574262, 34.61630460732041], [-77.39005622292675, 34.61644955587334], [-77.39002113794665, 34.61653269195043], [-77.38993158301211, 34.616744898092115], [-77.38986181233, 34.61655566118184], [-77.38978885762175, 34.616507649037224], [-77.38976356304313, 34.616388811261196], [-77.38975710534255, 34.616358472132575], [-77.38975932047747, 34.6163314597364], [-77.38976917518218, 34.616181735296905], [-77.38980636958553, 34.616139085868795], [-77.38993167365943, 34.615995404307036], [-77.39002301081221, 34.61599394533202], [-77.39017753453673, 34.61587329208745], [-77.39025879813904, 34.615789316694546], [-77.39022987803278, 34.6156534617185], [-77.39032591332857, 34.61556724343904], [-77.39044252260774, 34.615536113168424], [-77.39061757994276, 34.615495713341744], [-77.39072009722855, 34.61560063047822], [-77.39090376953385, 34.61554184211151], [-77.39111428490122, 34.61560114811093], [-77.39127813328878, 34.615538145333936], [-77.3917629136699, 34.615494190983995], [-77.39190266725365, 34.61552788132098], [-77.39198578105325, 34.615523066665496], [-77.39261351046214, 34.615438560729594], [-77.39269105008651, 34.61542998158936], [-77.39277279573838, 34.6154110639322], [-77.39311632954116, 34.61544957365683], [-77.39335034951395, 34.61555484079213], [-77.39347941575303, 34.61552228620652], [-77.39357907192957, 34.615490183354666], [-77.39380379692004, 34.615350443288456], [-77.39398087258321, 34.61501583718921], [-77.39393610202555, 34.61490679507641], [-77.39391717712174, 34.61486264308764], [-77.39375233538686, 34.614508723486736], [-77.39378826750715, 34.614170994613474], [-77.39367430696922, 34.61409540535328], [-77.39382361810415, 34.6140199153599], [-77.39387371791078, 34.613979633864666], [-77.3940214818275, 34.61388619322933], [-77.39410564462916, 34.6138584339829], [-77.39426790017916, 34.61393927854249], [-77.39437419738502, 34.61399447912851], [-77.39455035927892, 34.614089398229936], [-77.3946620685736, 34.61410274088822], [-77.39480006835163, 34.61408170282728], [-77.39505624965437, 34.6140825742202], [-77.39528256657343, 34.614044290083164], [-77.39561070859465, 34.61398879127251], [-77.39584461699323, 34.61392726171381], [-77.39610857118888, 34.61388462609209], [-77.39623879906162, 34.613856505910164], [-77.39634897920286, 34.61382836120107], [-77.39652834285842, 34.61379652369023], [-77.3966329809237, 34.61377387422516], [-77.3967347648515, 34.61376367888458], [-77.39691788574677, 34.61374533613087], [-77.39702715789437, 34.61379904816631], [-77.3973869160603, 34.61398456021091], [-77.39739288428916, 34.614014336932016], [-77.39742132649889, 34.61408449065722], [-77.39762898538633, 34.614575103575305], [-77.3979604838631, 34.61475097673823], [-77.39801463923266, 34.61495322645305], [-77.39805562691541, 34.615161826662685], [-77.39820965795971, 34.61526505745873], [-77.39847778178456, 34.61523671512159], [-77.39841024083739, 34.61553525085594], [-77.39860383531774, 34.61568297958655], [-77.39872304390018, 34.61578630544778], [-77.39897416554291, 34.615878483138886], [-77.39899801929629, 34.615887898129955], [-77.39901541318791, 34.61589126818599], [-77.39919511243866, 34.61594696723778], [-77.39938416528072, 34.615819343045665], [-77.39938844292463, 34.61581467144541], [-77.3993922074913, 34.61579144397825], [-77.39949737488847, 34.615378439545985], [-77.39939221184422, 34.615246294477686], [-77.39928032054577, 34.61510569440942], [-77.3991355732664, 34.61500605486966], [-77.39899803578027, 34.61460942920057], [-77.39898971205663, 34.61461148703757], [-77.39898574276917, 34.6146030941552], [-77.39899516036951, 34.614598638483805], [-77.39899803595111, 34.614596607738584], [-77.39919850727463, 34.61414783063984], [-77.3992480910056, 34.613985432402764], [-77.39932547544353, 34.613704942142434], [-77.39933937909333, 34.613335288908814], [-77.39934642680113, 34.613277347288104], [-77.39935248014007, 34.61323365891314], [-77.3993922322554, 34.61297545064312], [-77.39941357024381, 34.61286607114163], [-77.3997147485489, 34.61287682747678], [-77.39978640622633, 34.61289993616975], [-77.39989608847651, 34.612891625352596], [-77.4004960508423, 34.61277170630372], [-77.40057475189242, 34.612769400739445], [-77.40065214557076, 34.61274778040786], [-77.40077183799522, 34.612755851388044], [-77.40081068982363, 34.612811984656005], [-77.4008609730341, 34.61294258694996], [-77.4008321654038, 34.613063021507635], [-77.40088305374114, 34.61314817667764], [-77.40097364826202, 34.613467184436786], [-77.40136311206882, 34.61386481124582], [-77.40158588002615, 34.61398806496987], [-77.40175729459332, 34.614132443255244], [-77.40179285733903, 34.6141598455479], [-77.40180546397721, 34.61419633133803], [-77.4019058487758, 34.614446420481926], [-77.40215148626808, 34.61466728874633], [-77.40225862596708, 34.61486470698339], [-77.40240568366495, 34.614958886084885], [-77.4027148416366, 34.61515665512415], [-77.40293986916208, 34.61527855368308], [-77.4029685015513, 34.615302261116], [-77.4030170885037, 34.615636666572286], [-77.40302608770936, 34.615718527802656], [-77.40301970109952, 34.61580541570059], [-77.40293990727359, 34.616370697837574], [-77.40289223920406, 34.61653564026473], [-77.40287686813579, 34.61658920665333], [-77.40293991743816, 34.61665892555158], [-77.40332451572912, 34.61695954136539], [-77.40333411990996, 34.61696081780804], [-77.40334108460617, 34.61695430828995], [-77.40372829515402, 34.61659511010746], [-77.40378410019707, 34.616518422920194], [-77.40389341926512, 34.61644253966647], [-77.40412247157943, 34.61632413338612], [-77.40440647301048, 34.61624983608113], [-77.40451665352148, 34.616202289550586], [-77.40506608942638, 34.61627333645283], [-77.40525186406272, 34.61630380090859], [-77.40530503807977, 34.61634289838604], [-77.40540651010039, 34.61633351074129], [-77.40581518584696, 34.616464931050004], [-77.40609344717807, 34.61678558389991], [-77.40618790696797, 34.616858878031], [-77.40626837459004, 34.61694900193192], [-77.40688188796176, 34.617510156415406], [-77.4070302381003, 34.61752843014828], [-77.40767027101856, 34.61746697386524], [-77.40803189738872, 34.61754366231547], [-77.40836951719221, 34.617590962305826], [-77.40845868507262, 34.6177371400221], [-77.4089180291232, 34.61826493135554], [-77.40896938905817, 34.61855670081856], [-77.40893153638567, 34.619112138273486], [-77.40888672557662, 34.61957942198238], [-77.40845888864887, 34.61970892203898], [-77.40788355278603, 34.61988306369092], [-77.40751647963177, 34.61999961219203], [-77.40736443113894, 34.62051715905462], [-77.4077826832204, 34.620976246348555], [-77.40810575862696, 34.62131012823747], [-77.40845909469581, 34.62167526691708], [-77.40893547021952, 34.62199516168965], [-77.40937365894156, 34.621731646432465], [-77.4094633695803, 34.62158285201976], [-77.41003582768798, 34.620721609272984], [-77.41006476648268, 34.62067807143121], [-77.41009888162581, 34.62064197340871], [-77.41082418449076, 34.620274212213445], [-77.41103641405209, 34.620278073062224], [-77.41121838935001, 34.620267015227356], [-77.411462750928, 34.620283724544464], [-77.41161259781583, 34.620285777487055], [-77.41171932906644, 34.620293126558614], [-77.41219120416676, 34.62033996779921], [-77.4123455079863, 34.62037748694684], [-77.412401026422, 34.620398562545134], [-77.41260198818414, 34.62049710050276], [-77.41284034283561, 34.620622295782596], [-77.41318951161767, 34.62085020680662], [-77.41331053365617, 34.620897211101635], [-77.41345831652372, 34.621006215674804], [-77.41325476110399, 34.621814653146345], [-77.41326741935613, 34.62188293430819], [-77.41397819629645, 34.62241410506441], [-77.41421224087053, 34.622343613266615], [-77.41476663603106, 34.62246252025177], [-77.41550254237585, 34.62235287447306], [-77.41555504888349, 34.62236960078242], [-77.41556823363908, 34.622385741411065], [-77.41561269901425, 34.62239351871969], [-77.416343574713, 34.622848223339844], [-77.41667584083407, 34.62259793713845], [-77.4167841923975, 34.62259893008493], [-77.41713200616584, 34.62283664786183], [-77.41743823059447, 34.622459840042914], [-77.4179203012582, 34.6222066511944], [-77.4180117034508, 34.62214559508978], [-77.41811008518478, 34.62203293094157], [-77.41855085176744, 34.62179934505506], [-77.41870862697658, 34.621762913546355], [-77.41889005073162, 34.62172489251466], [-77.41910281586762, 34.62166659945319], [-77.41930053808696, 34.621649404131375], [-77.41949701746434, 34.62162756572014], [-77.41967772599472, 34.62161192194027], [-77.420134911303, 34.62157842272121], [-77.4202854227466, 34.62156374892533], [-77.42042414864433, 34.621549346298494], [-77.42048252479961, 34.621551689829154], [-77.42066508524718, 34.621663969568594], [-77.42066659937862, 34.62167781954203], [-77.4206797264893, 34.62193488324674], [-77.42068741192037, 34.62207709048142], [-77.42068785054597, 34.62209397278421], [-77.42057216161125, 34.62252655723405], [-77.42064737079951, 34.62297540866781], [-77.42120530152867, 34.62315514042563], [-77.42128444863373, 34.62322331220258], [-77.42131879662608, 34.623122806815864], [-77.42197365301847, 34.62276903158177], [-77.42215272552312, 34.622553186762204], [-77.42237416431017, 34.62228977908285], [-77.42253650116763, 34.62203743002771], [-77.42253711820322, 34.622036257989805], [-77.42269360307026, 34.62178214309219], [-77.4227897801694, 34.621728776103495], [-77.42296425494567, 34.6216756266142], [-77.42322438270693, 34.62165475953373], [-77.42346426476638, 34.62158144527692], [-77.42379171487183, 34.62154712479864], [-77.42397714898435, 34.62153433620662], [-77.42406612946762, 34.62154027141477], [-77.42418366957071, 34.62156813002388], [-77.42438068600823, 34.621612932587716], [-77.42444337237805, 34.62177526884802], [-77.42441587322591, 34.62187120063594], [-77.42442786159319, 34.622012305278076], [-77.42436700234182, 34.622254355615546], [-77.42438543690682, 34.622374455722344], [-77.42449808748006, 34.62284053211611], [-77.42458566683834, 34.62293051441378], [-77.42481604550858, 34.6231446757856], [-77.42482419937669, 34.6232317828684], [-77.42450013519226, 34.62344637021192], [-77.4243125167697, 34.62358786701655], [-77.42411841501445, 34.62380210349806], [-77.42392739245818, 34.62407251037369], [-77.42375316721625, 34.62455997369327], [-77.42366837801524, 34.624601303978814], [-77.42299852036916, 34.62467278201237], [-77.42273690767098, 34.62468909313213], [-77.42223613846937, 34.62469025649948], [-77.42214970513737, 34.62468909826849], [-77.42172157148964, 34.62482159429411], [-77.42129848754684, 34.625010557887975], [-77.42104826202487, 34.62541523721477], [-77.4207944599033, 34.62607305200334], [-77.42051810570766, 34.62678928486311], [-77.42035880205076, 34.62708855806151], [-77.42032816184981, 34.6271487582103], [-77.4202804830379, 34.627242431340775], [-77.41936136672287, 34.6288495905571], [-77.42021549485574, 34.62958722873575], [-77.41969171256727, 34.630232379290874], [-77.42018320555152, 34.63085433830345], [-77.42119564507968, 34.630588457322574], [-77.42185762258741, 34.63016211696255], [-77.42337978194846, 34.62918174555829], [-77.42468580471564, 34.62867429228849], [-77.42476265975137, 34.628250445689076], [-77.42508939607788, 34.62851632789637], [-77.42513718974278, 34.628681076305185], [-77.42521882478803, 34.62886087968594], [-77.42556358352306, 34.629765055919506], [-77.42644698503132, 34.62929079090734], [-77.42652148813984, 34.629025132923815], [-77.42691596752631, 34.62843340426939], [-77.427119533524, 34.6282872863964], [-77.42762660000965, 34.62815841198933], [-77.42795648050223, 34.62839276086922], [-77.42809033748122, 34.628505854141004], [-77.42808806413292, 34.628578770952565], [-77.42810663754281, 34.62863280310163], [-77.42807101492006, 34.62881138652481], [-77.42802298437479, 34.629222980232626], [-77.4279496564777, 34.62935667691676], [-77.42778986542206, 34.62976083965589], [-77.42749068025046, 34.630534038116714], [-77.42688781908146, 34.63113615448935], [-77.4277935523462, 34.631641018520526], [-77.42844291855359, 34.63173138849042], [-77.4294771714938, 34.63187531320425], [-77.42998016828358, 34.631945308744825], [-77.43081712118986, 34.632486794348566], [-77.4336194449179, 34.631801127988574], [-77.43349616648291, 34.63073006076616], [-77.4337086968441, 34.6305934861834], [-77.43350115029337, 34.62999016135251], [-77.43349850627146, 34.62990048626558], [-77.43348295257093, 34.62937309106523], [-77.43435372581675, 34.62974718835268], [-77.43434104603115, 34.63000891496788], [-77.43490225854896, 34.62977230335033], [-77.43549563963019, 34.6290419557585], [-77.43554404161739, 34.628669466155436], [-77.4355205381033, 34.62856749248088], [-77.43555409408835, 34.62792811577124], [-77.4350931659578, 34.627571397110295], [-77.43435887939856, 34.62826875401734], [-77.43458452296264, 34.62842223269641], [-77.43433221236921, 34.628633548387846], [-77.43432369664832, 34.62895039335516], [-77.43353347546544, 34.629167476990396], [-77.43369832978439, 34.62873153550436], [-77.43360974980547, 34.628482249848446], [-77.43357787139047, 34.628199066117155], [-77.43355253746013, 34.62806107070392], [-77.43380764683494, 34.62791826752551], [-77.43421530793574, 34.628206383354346], [-77.43465994919069, 34.627444465865096], [-77.43427684009161, 34.62707567464541], [-77.4339630998727, 34.62690458438664], [-77.43394924945696, 34.6268310591204], [-77.43396056331817, 34.6263455460447], [-77.43417154061811, 34.62610669620658], [-77.43426187489764, 34.625831558264295], [-77.43419133865096, 34.62562104217344], [-77.43384224473547, 34.62546206325773], [-77.43364478440331, 34.62537482391649], [-77.43340814280171, 34.6252568837872], [-77.4332045036694, 34.62499873227972], [-77.43312291803682, 34.624928587998674], [-77.43279067692075, 34.624590312187266], [-77.43230367780842, 34.624423584520564], [-77.43221383391014, 34.624381117902225], [-77.43207388111524, 34.62422389814546], [-77.43175599681757, 34.62433506947138], [-77.43157221282095, 34.62431206896802], [-77.43152308373216, 34.624311122170596], [-77.43132332101666, 34.624333731698876], [-77.43131519851032, 34.62433356815038], [-77.43131147029129, 34.62433434206428], [-77.4311510051743, 34.6243087558392], [-77.43112572830768, 34.62426932936589], [-77.43109015999246, 34.62421555842539], [-77.43109484374985, 34.62414885666016], [-77.4310898735229, 34.6241019170808], [-77.43114987729803, 34.62401392133414], [-77.43119296530239, 34.62388683987317], [-77.43123340871567, 34.62384243204676], [-77.43137391858254, 34.62358736472623], [-77.43138173587778, 34.623584624547604], [-77.43137702214833, 34.62357549047442], [-77.43145186799207, 34.6231893826433], [-77.43133147379531, 34.62271702571283], [-77.43133807059036, 34.622483336859226], [-77.43094231126828, 34.62227848756012], [-77.43091719693733, 34.62223404142735], [-77.43085574465084, 34.622161614255475], [-77.43066217663674, 34.62193747957824], [-77.43056637128205, 34.6218237921757], [-77.43048367235826, 34.62172165109646], [-77.43047800948563, 34.621620726177426], [-77.43062412972579, 34.621461089785235], [-77.43099371252538, 34.62110452209815], [-77.43108091065828, 34.62100152714552], [-77.43118082541982, 34.620960012071585], [-77.43134740176707, 34.620869315279194], [-77.43163356719478, 34.62069309808071], [-77.43214054261912, 34.62077768669239], [-77.43215293240628, 34.620799004705184], [-77.43219443860484, 34.62082138096646], [-77.43270360653426, 34.621040153362365], [-77.43293025380002, 34.621029394555364], [-77.4332836470189, 34.620959022255974], [-77.4335390470816, 34.62093327851498], [-77.4337750714559, 34.621050318419584], [-77.43406406220332, 34.62120578372581], [-77.43442343251697, 34.62128146972656], [-77.43461447645305, 34.621447252906485], [-77.43483897840825, 34.62148557235561], [-77.43488799155818, 34.62157005521197], [-77.43483720171363, 34.62169683526954], [-77.43470371110928, 34.6218933678368], [-77.43465319448794, 34.622121089759844], [-77.43457365181224, 34.62222403421063], [-77.43452799520279, 34.62231269076029], [-77.43451866210795, 34.62247851726514], [-77.43450975859139, 34.62305637105941], [-77.43466142805757, 34.6232182040727], [-77.43476337718107, 34.62352931568013], [-77.4347671021826, 34.623721508529144], [-77.43478503039913, 34.62398131102656], [-77.43476313766782, 34.62446112196117], [-77.43492847777135, 34.62472017248868], [-77.43520123235783, 34.62492143346882], [-77.4352725510456, 34.62505441804616], [-77.43529176593952, 34.62519035885706], [-77.43546580998115, 34.62509047285233], [-77.43560809439214, 34.62506382339249], [-77.43652631068804, 34.62512297205518], [-77.4368335767058, 34.625134401235606], [-77.43706563768494, 34.62517238269582], [-77.43719167858661, 34.62524591279028], [-77.43721133520059, 34.62558691331212], [-77.43721174131362, 34.62560943894797], [-77.43772275584902, 34.625652145716735], [-77.43802980436095, 34.625500794232266], [-77.43830732251985, 34.62538900250492], [-77.4386288319504, 34.62520551672365], [-77.43864510801366, 34.62519749377254], [-77.43864884781071, 34.62519355370412], [-77.4389701417105, 34.625001521647974], [-77.43905358230879, 34.62471519593137], [-77.43885594917816, 34.6244910633247], [-77.43879296097154, 34.62442024010073], [-77.43865614340119, 34.62427221337036], [-77.43852588523941, 34.62412712302463], [-77.43847069142767, 34.6240477188519], [-77.43830260960732, 34.62392857854727], [-77.43802669662861, 34.623676168012175], [-77.43788483132712, 34.62357135938838], [-77.43757668071486, 34.62331198009714], [-77.43748720251203, 34.62324371020657], [-77.43720994908082, 34.62302523821263], [-77.43715140903187, 34.62291755125499], [-77.43693301330869, 34.62276667090073], [-77.4369086402439, 34.62274187794561], [-77.43671135505721, 34.622541193312124], [-77.43665013426204, 34.62244631671344], [-77.43661651865082, 34.622319566883334], [-77.43660038305504, 34.622275875780836], [-77.43663505344139, 34.622177353755085], [-77.43666811875926, 34.62207194681818], [-77.43671193561465, 34.62195887995259], [-77.43688995096315, 34.621795826540165], [-77.43711737090769, 34.62157464810498], [-77.43724550736574, 34.62130082843099], [-77.43717059634075, 34.62106570158359], [-77.43698446474633, 34.62103351875304], [-77.43687586993806, 34.62090499820148], [-77.43677890509598, 34.620630245338816], [-77.43675935124327, 34.620568966642736], [-77.4367020272191, 34.62049118938144], [-77.43669750758903, 34.6202173507335], [-77.43674261578022, 34.62014981071458], [-77.43702191178483, 34.620124881834364], [-77.43721100579681, 34.620102113271216], [-77.43726135594024, 34.62012411591673], [-77.43756637570004, 34.620338929301795], [-77.43763893506576, 34.62049327490206], [-77.43805557638117, 34.62056872706205], [-77.4384811965093, 34.620739016838115], [-77.43866747013885, 34.620559607178436], [-77.43928759289292, 34.62030658059268], [-77.43942026165645, 34.620328029682966], [-77.43971126132593, 34.62030546261899], [-77.44015516001363, 34.62016036956603], [-77.44015480221924, 34.62046068012192], [-77.44026882097444, 34.62067630923907], [-77.44039140729133, 34.62078583510659], [-77.44058395648953, 34.621324968994074], [-77.44076603875455, 34.6219134236248], [-77.44079061425636, 34.62200455293633], [-77.4408187077723, 34.62209202295721], [-77.44095342846116, 34.62208750524814], [-77.44132979540124, 34.62238155814251], [-77.4418900124841, 34.62230673490596], [-77.44204845847314, 34.62224623844707], [-77.44224121990428, 34.621960264715476], [-77.44227564398456, 34.62182225729988], [-77.44233997337119, 34.6215628606092], [-77.4423508877878, 34.621229167393466], [-77.44265048743004, 34.62073583677907], [-77.44266369724564, 34.62071921094862], [-77.44267572726764, 34.620696264994955], [-77.44294715167007, 34.620198981025965], [-77.4431802989974, 34.619846287189674], [-77.44327203392581, 34.61969324841719], [-77.44343494586184, 34.61962837257758], [-77.44358235042398, 34.61962808451714], [-77.44365915077266, 34.619709766006565], [-77.44370354741699, 34.61984424366986], [-77.4436653246167, 34.61998379554229], [-77.44361591741115, 34.62009134328939], [-77.44358719136218, 34.62018450794909], [-77.44333245215998, 34.62033380533105], [-77.44348273246743, 34.62049856574158], [-77.44353453866297, 34.620600810827675], [-77.44370310963504, 34.620607938198305], [-77.44393089828064, 34.62074004358189], [-77.4440920952705, 34.62083352895007], [-77.44430333312111, 34.62098323531873], [-77.44432375814094, 34.620997288821464], [-77.44432622932894, 34.621004462595415], [-77.44435002182408, 34.62105039261709], [-77.44446780451472, 34.62128854318785], [-77.44452889334373, 34.62137186532955], [-77.44455035895004, 34.621671186353446], [-77.44517482610692, 34.62221728535907], [-77.44518726126161, 34.6222281055523], [-77.44518925503043, 34.622235217322114], [-77.44521727132863, 34.62229760141608], [-77.44567289474602, 34.622828150492246], [-77.44581226874064, 34.62305972571346], [-77.44585553041115, 34.623249354289925], [-77.44586322533465, 34.6235123917593], [-77.44588374851662, 34.623704142009544], [-77.44561713646371, 34.62375806532437], [-77.44535809421396, 34.62385743172526], [-77.44471080937863, 34.624288689596376], [-77.44448347347037, 34.624453027806254], [-77.44429415139209, 34.6246982471434], [-77.4443027803573, 34.62562862223324], [-77.44448027283923, 34.62612218630057], [-77.44550395985678, 34.627185485943215], [-77.44650049255685, 34.627946842820535], [-77.44790686495868, 34.62809926551699], [-77.44994614811614, 34.628045667266804], [-77.45116629657261, 34.62716988436246], [-77.45268157676409, 34.62608227588599], [-77.45337929328633, 34.62522160126477], [-77.45463585628558, 34.623226361884626], [-77.45393445463057, 34.62251611910582], [-77.45309435930614, 34.62218894770895], [-77.45294210575196, 34.62190060255024], [-77.45245842455549, 34.62185944040303], [-77.45230197170514, 34.62167640345441], [-77.4520822799372, 34.62153692506906], [-77.45223284190759, 34.62103576839975], [-77.45226096054931, 34.62098004350259], [-77.45229793285495, 34.620939033560596], [-77.45223250436256, 34.620939393426276], [-77.45221025410129, 34.62095329274515], [-77.4522010058082, 34.62095906986967], [-77.45137314939109, 34.621075671586716], [-77.45112709874758, 34.62083799844829], [-77.45095913081616, 34.62066747414879], [-77.45093080276366, 34.62059038602506], [-77.45094895886074, 34.620521058140405], [-77.45097342142424, 34.62027683481235], [-77.45097731532323, 34.62022128223573], [-77.45098043972898, 34.620206972282915], [-77.45109302982203, 34.61995206749494], [-77.45135884775013, 34.61976430489077], [-77.45138715036424, 34.61974526802459], [-77.45147421634628, 34.61969690022928], [-77.45172137377709, 34.61955249737779], [-77.4518105917886, 34.619493950614974], [-77.45198511297326, 34.619413080639895], [-77.45246186802056, 34.61919216028061], [-77.45274373347755, 34.619061547338006], [-77.45326782023994, 34.61885471907853], [-77.4534212203274, 34.6176957054742], [-77.45348022479872, 34.61764776410266], [-77.45340763490297, 34.61764610062174], [-77.45339541575511, 34.61766058457377], [-77.45240121602691, 34.61781086606833], [-77.45219075022459, 34.61785853354451], [-77.45172490236246, 34.617902453854], [-77.45135435366439, 34.61782795350304], [-77.45092603687651, 34.61763767144002], [-77.45064673707435, 34.61739191823983], [-77.45024425511265, 34.61717754182956], [-77.45014706100781, 34.617121299786106], [-77.4501303331336, 34.61710892484989], [-77.45010392148973, 34.617101622727134], [-77.4500650693026, 34.6171148507331], [-77.44960962265233, 34.61721653585762], [-77.44935135962356, 34.617348208713196], [-77.44920397514807, 34.6174329757652], [-77.44915169648367, 34.617464288238544], [-77.44909984772418, 34.61745445423676], [-77.44909822488334, 34.61742039367256], [-77.44908453167432, 34.61739118529031], [-77.44876022346486, 34.61695532902986], [-77.44863458100039, 34.61681409282276], [-77.44838888680422, 34.61659855683673], [-77.44833879944603, 34.61655621688507], [-77.4478104947111, 34.61640632504617], [-77.44771553202625, 34.616403877114465], [-77.44755169349446, 34.61638437179219], [-77.44722685216252, 34.61612180216153], [-77.4472313461534, 34.6160815008728], [-77.4471113147937, 34.615771435579404], [-77.4474542961739, 34.61558198007714], [-77.4475691925334, 34.61552499357636], [-77.44784445217385, 34.61533192833248], [-77.4481330627566, 34.615480079150224], [-77.4485968108221, 34.61543775034638], [-77.44867784684031, 34.61539069268864], [-77.44906905890103, 34.61524234049593], [-77.44909397875982, 34.61520606193042], [-77.44903684011318, 34.6151246705088], [-77.44891179821256, 34.614941319907174], [-77.44883587176383, 34.614910408621085], [-77.44884198799319, 34.61482872340256], [-77.44868956043565, 34.61458287499844], [-77.44879886383589, 34.614255519300514], [-77.44881081320848, 34.61419841514923], [-77.44889645117314, 34.61415461968801], [-77.44925033877212, 34.61398426565359], [-77.44957908078982, 34.61395995201087], [-77.44972313498765, 34.61394934344479], [-77.44976563755517, 34.613946116982696], [-77.44983624687941, 34.613937805088135], [-77.45027617716694, 34.613890586157126], [-77.45055922484485, 34.61384143787313], [-77.45200036258547, 34.61345618827203], [-77.45209088803955, 34.612874351919565], [-77.45209206151846, 34.61286888060428], [-77.4520945058461, 34.612851099592035], [-77.45217418109495, 34.61278118898983], [-77.4525855952234, 34.61242216120551], [-77.45302209491757, 34.612398689815414], [-77.45331696224076, 34.61229823482934], [-77.4540312244327, 34.6122440620368], [-77.45414823757481, 34.61219616973577], [-77.45416677487133, 34.61228228126262], [-77.45449795348058, 34.61268294910563], [-77.45456949359736, 34.61290593922202], [-77.45500430922644, 34.61389261163706], [-77.45785486865915, 34.61302679250872], [-77.45768734283291, 34.612016599998014], [-77.45716846186757, 34.611547927108546], [-77.45715246855252, 34.61126575079201], [-77.45741546015537, 34.61061709278843], [-77.45709684337592, 34.61028411722213], [-77.45705554437006, 34.60955537935822], [-77.45703810934447, 34.609247674166554], [-77.4570150000647, 34.60901672975534], [-77.45681644523377, 34.60801888629164], [-77.45679005398888, 34.607841373241676], [-77.45668041722269, 34.60766091984483], [-77.45629097712163, 34.60683261373702], [-77.45602807864222, 34.60658167410268], [-77.45624673923317, 34.60627043425603], [-77.45647316239042, 34.60580351908276], [-77.45655614187963, 34.60569250976747], [-77.45688357322118, 34.6052544765698], [-77.45725781045296, 34.60475381057002], [-77.45761757549947, 34.604272516619865], [-77.45793045054846, 34.60344660429411], [-77.45801801797617, 34.60317386013967], [-77.45818486957894, 34.60268752050902], [-77.45848122713558, 34.60145065931409], [-77.45856726921103, 34.600888518001675], [-77.45848206340689, 34.600495124886244], [-77.45830686206399, 34.60002334180649], [-77.45816589453794, 34.5999673647798], [-77.45804405835091, 34.59972905297437], [-77.45803723520936, 34.59966749675374], [-77.45811002358369, 34.599489789488025], [-77.45824295391041, 34.599303042146545], [-77.45834588584484, 34.59920517208329], [-77.45871633107355, 34.59916798718602], [-77.45882799093768, 34.59915756731333], [-77.45885974355652, 34.59916208310385], [-77.45892253105232, 34.5991546875594], [-77.45959474826813, 34.59913421023536], [-77.45990525360735, 34.59914087726996], [-77.4605510527435, 34.5991050713749], [-77.4609426797262, 34.59909015312566], [-77.46113750886624, 34.59907616995844], [-77.46170584938871, 34.59905355936667], [-77.46305645734373, 34.599130799681134], [-77.46407531690258, 34.598377448345445], [-77.46445315096007, 34.59799271235658], [-77.46447112699552, 34.59678741263652], [-77.4644735020006, 34.59676111721596], [-77.46447350589285, 34.596628004983515], [-77.46447353679041, 34.59552240641543], [-77.46447354225516, 34.59499543413146], [-77.46436662793752, 34.59386304473082], [-77.46366742826052, 34.59368518927283], [-77.46337377571847, 34.593898941254075], [-77.46269003038678, 34.59395484974779], [-77.46221249245893, 34.594112024453864], [-77.46220267964664, 34.59411525417144], [-77.46173952274498, 34.59432270633505], [-77.46147097706229, 34.59447196135513], [-77.46128199430855, 34.59457136550569], [-77.4608810587809, 34.59481740262101], [-77.46083167801132, 34.59484636641638], [-77.46080893847946, 34.59485970391517], [-77.46079512138326, 34.59488218761536], [-77.46072719930136, 34.595005603750295], [-77.46055403617257, 34.59532024615058], [-77.46052701978287, 34.59538043920767], [-77.46047510439774, 34.595463667012844], [-77.46016400173042, 34.59569450050759], [-77.4600223261121, 34.59572970200573], [-77.45975781103286, 34.59527686619708], [-77.45970839259206, 34.59519226307918], [-77.45950337352278, 34.59502228709974], [-77.45940363697773, 34.594909949014536], [-77.45933874974745, 34.59487497844182], [-77.45886965253402, 34.594693037483324], [-77.45878101881132, 34.59464270844971], [-77.45865081705655, 34.59456030944313], [-77.4582581615739, 34.59436778379743], [-77.45774276671997, 34.594276019641576], [-77.45786606698084, 34.5939329207481], [-77.45788959673017, 34.59383825788493], [-77.45767529154978, 34.593556739758945], [-77.45767840316228, 34.59345466970941], [-77.45773179866934, 34.593182703611646], [-77.45771960733482, 34.59317483037325], [-77.45721764213741, 34.593165554444184], [-77.45691047614498, 34.59327285061423], [-77.45630000715208, 34.59328203682169], [-77.45665447442136, 34.59358597102489], [-77.45685397924542, 34.59375703213677], [-77.4568742331332, 34.593774398423065], [-77.45688214767475, 34.59378302869741], [-77.45706956906983, 34.593992697288925], [-77.45725204890556, 34.594234554916284], [-77.45733708314876, 34.59439176381096], [-77.45705335508052, 34.59478441174534], [-77.456662655658, 34.59497792032136], [-77.45645288468353, 34.595193682752466], [-77.4562646173433, 34.595436265569234], [-77.45612112014287, 34.595696977662655], [-77.45607953418349, 34.59611803220325], [-77.45607277066291, 34.596229526880535], [-77.45606861764374, 34.596297990740574], [-77.45601245664236, 34.59644264475008], [-77.45580179401402, 34.596457723149236], [-77.45503461692786, 34.59671084964658], [-77.4548086190027, 34.59675799790901], [-77.45453589294016, 34.596809151719754], [-77.45437229798895, 34.596943190837244], [-77.45418734635531, 34.59745595541936], [-77.45417650836946, 34.59749406885388], [-77.45417150372386, 34.597510440926946], [-77.45411560278892, 34.597605562345116], [-77.45388137723128, 34.598010184980325], [-77.4537456131209, 34.59805805436215], [-77.45332957906005, 34.59816277200273], [-77.45323269357465, 34.5981475084974], [-77.45295992219494, 34.598104535542966], [-77.45279341084334, 34.598124341372696], [-77.45253409728916, 34.598158122530506], [-77.45228257984414, 34.59817845413612], [-77.45213435195868, 34.598199780351585], [-77.45136877791937, 34.59830992467754], [-77.45130373273237, 34.59830119155613], [-77.45123771770673, 34.59832386039622], [-77.45024859529693, 34.59842902840322], [-77.44934442074668, 34.598887328724516], [-77.4493681855247, 34.598908407244366], [-77.45013672257251, 34.599399861436936], [-77.45030765919525, 34.5995192787923], [-77.45054870148127, 34.59952527879845], [-77.45075688799689, 34.599592232861205], [-77.45091029337372, 34.59969669126441], [-77.45098555732554, 34.59971163905338], [-77.45092156634506, 34.59976171964124], [-77.45084374834295, 34.599778067890874], [-77.4506064467089, 34.59973621095888], [-77.45036307605523, 34.5998759768759], [-77.45015407052915, 34.60000388579185], [-77.44975762182784, 34.600246505125455], [-77.44971022997791, 34.60026691370642], [-77.44970145416346, 34.60027069286096], [-77.44968455035529, 34.60028125120749], [-77.44923695102825, 34.60049408636114], [-77.44900339782745, 34.60063895565202], [-77.4488177459779, 34.60088296234116], [-77.44839815268259, 34.60104654846195], [-77.44834674766194, 34.6010826483298], [-77.44800364911913, 34.601485265299075], [-77.44809455892829, 34.60155970748024], [-77.44839223356243, 34.601861514178594], [-77.44877275394742, 34.60179704797059], [-77.4490383883952, 34.60168896880529], [-77.44918196426015, 34.60163055127096], [-77.44934796680874, 34.60160717987317], [-77.44952477473467, 34.601545486843094], [-77.44978045169303, 34.60153239493782], [-77.44978307297302, 34.60153229572792], [-77.44978442466955, 34.601533861442825], [-77.44988974186671, 34.60168585250328], [-77.44985135400569, 34.60177834236373], [-77.4497780069419, 34.60183913569724], [-77.44977258377102, 34.60200229632329], [-77.44973887319614, 34.602098139779514], [-77.4497276377303, 34.6021312097936], [-77.44970355667414, 34.60219854941981], [-77.44930927615425, 34.602589922330864], [-77.44933136635598, 34.60261193824038], [-77.44929089125796, 34.60261133821894], [-77.44924286515794, 34.602650041078185], [-77.4491309545293, 34.6026407801624], [-77.44827569900251, 34.6027433937514], [-77.44803284015143, 34.60277692033906], [-77.4480251265085, 34.602956161623226], [-77.44783337859201, 34.603326522093056], [-77.44817434945658, 34.60365211554254], [-77.44830183307668, 34.6038007134871], [-77.44867587780425, 34.60420522725746], [-77.44869593313017, 34.604233159275125], [-77.44870779881924, 34.60423849156726], [-77.44875316126416, 34.604267806940456], [-77.44910664194481, 34.604493998695844], [-77.44918030979352, 34.60455521861059], [-77.44931335449235, 34.604613589373415], [-77.44982266471804, 34.604659044509724], [-77.44980488486203, 34.60470584810054], [-77.44985891667261, 34.60468619568368], [-77.45003756081597, 34.60496701240365], [-77.45005688860553, 34.60503372809198], [-77.45011196917113, 34.60513041968441], [-77.45000988638752, 34.60523763105914], [-77.44983874040952, 34.60526709190182], [-77.44961939778962, 34.605389833063], [-77.44951353713873, 34.605344798332986], [-77.44933469910616, 34.60528077975687], [-77.44895237882923, 34.60521523576567], [-77.44853752588102, 34.60534118781052], [-77.4484489096317, 34.605400144132126], [-77.44797689205652, 34.60549244956977], [-77.44767794141917, 34.605749753405206], [-77.44763130680779, 34.60602251884778], [-77.44760602290603, 34.60605800331337], [-77.44731183230913, 34.606241041196384], [-77.44725345517178, 34.60669042609019], [-77.44682512771055, 34.60652063731347], [-77.44658479819279, 34.606606023521856], [-77.44621718724702, 34.60674567051106], [-77.44587551916344, 34.60697721749081], [-77.44566612953874, 34.607023398563165], [-77.44567003123034, 34.606951072528624], [-77.44556806622953, 34.6068696212012], [-77.44562601052955, 34.60659437132273], [-77.44532941822013, 34.60652078040872], [-77.44509664825283, 34.60649304418283], [-77.44496209680399, 34.60641444036906], [-77.44476164241743, 34.606300675546485], [-77.44471968742592, 34.60626300995405], [-77.4447097637242, 34.60611714210383], [-77.44482387492491, 34.60598976515951], [-77.44481258276564, 34.605455237413736], [-77.44504436931544, 34.605955002101695], [-77.44515960272034, 34.60598886746702], [-77.44550245945544, 34.606055082676484], [-77.44571208846413, 34.606052907372025], [-77.44600319203501, 34.60596390660086], [-77.44626412051335, 34.60587439035087], [-77.44646183927951, 34.60561751352567], [-77.44662333161455, 34.60538068972018], [-77.44654358355248, 34.60503625571779], [-77.44645632219283, 34.60488057973531], [-77.44615528236623, 34.60459906856584], [-77.4461541178299, 34.604598147727735], [-77.44562339172842, 34.60457638158918], [-77.4453186153035, 34.604705401403976], [-77.44514215719242, 34.60473876344689], [-77.44494233466413, 34.60479239446306], [-77.44485468409847, 34.60481548818816], [-77.44486114290576, 34.60476397913746], [-77.44488418311411, 34.60459039622854], [-77.44489901019222, 34.604304148429854], [-77.44490947235978, 34.60416147855826], [-77.44493571954682, 34.60383719447922], [-77.44490265886908, 34.60353967909418], [-77.44489251687126, 34.603397800743544], [-77.44475223063898, 34.603151014347254], [-77.44504136049713, 34.60244994459271], [-77.44506339174637, 34.602357103874155], [-77.44507990289102, 34.60231906974367], [-77.44517378226998, 34.60213961299631], [-77.4453069522051, 34.60188506933066], [-77.4453344342095, 34.60183255126686], [-77.44537617639419, 34.60175266538725], [-77.44553372189127, 34.601451147609325], [-77.44522378630515, 34.601195894170836], [-77.44520802557578, 34.60118345506151], [-77.44520053331753, 34.60117691201396], [-77.44517434094423, 34.60115710564111], [-77.4448648017929, 34.60090340013419], [-77.4447361743297, 34.60084610523127], [-77.44456046100167, 34.60069289603807], [-77.44451793048798, 34.600655812593146], [-77.44449818216857, 34.60063869774306], [-77.444296901022, 34.600468925494226], [-77.44408675418008, 34.6003867717196], [-77.44393598289794, 34.600331808390294], [-77.44371394577249, 34.60049308302861], [-77.44356089025433, 34.600592394002376], [-77.44352767336635, 34.60076057157556], [-77.44349492438562, 34.60092479015996], [-77.44361518838156, 34.60108034399869], [-77.44369967906937, 34.60119914090541], [-77.44373570424395, 34.60122538043088], [-77.44386896218883, 34.60131964044281], [-77.44418242114651, 34.60152317565591], [-77.44428733162817, 34.601615573729916], [-77.44439892003426, 34.6017156051484], [-77.44444898302527, 34.601760482907196], [-77.4444779020603, 34.6018424790274], [-77.44453070555386, 34.60201161300344], [-77.44456897643168, 34.60209551680397], [-77.44483273585676, 34.60227637640922], [-77.44481156596011, 34.602395590117474], [-77.44410859960945, 34.60288317275421], [-77.44361427900762, 34.60273700841056], [-77.44326724780382, 34.60264212297895], [-77.44316775841142, 34.60249508515425], [-77.44302920904256, 34.602264560321586], [-77.4429775403817, 34.60218007571142], [-77.44295598570847, 34.602108422646246], [-77.44281352710622, 34.60199257485245], [-77.44248721506743, 34.60207485602362], [-77.44232613280661, 34.60213240641576], [-77.44209985235312, 34.60243034456258], [-77.44211770842386, 34.60256494578546], [-77.44228023679305, 34.602934611448106], [-77.44232735037743, 34.60310397362568], [-77.44214099799683, 34.603376719950965], [-77.44123079485814, 34.60349335867938], [-77.44132946649742, 34.60412700429598], [-77.44133120914108, 34.60414793149945], [-77.44163924999387, 34.60463252652016], [-77.44166055089465, 34.604771098976954], [-77.44212271181038, 34.604955705643505], [-77.44213022184655, 34.60500643028107], [-77.44214805480657, 34.60505325935563], [-77.44214565783801, 34.60518665373246], [-77.44211957773047, 34.605219257022355], [-77.4419177095432, 34.60528234901015], [-77.44182975843567, 34.605313863655184], [-77.44161769081182, 34.60530620180068], [-77.44145819738024, 34.605431228596096], [-77.44130193529722, 34.60550203745522], [-77.44116020081475, 34.60555537916848], [-77.44110418639028, 34.60548360691963], [-77.44105301550486, 34.605349234801956], [-77.44104020846396, 34.605317224332765], [-77.44102470170398, 34.605279500260835], [-77.44137931021893, 34.60485128910698], [-77.44129423216724, 34.60475441384806], [-77.44127990644976, 34.60415760783151], [-77.44128128579993, 34.6041407420855], [-77.44126817572953, 34.60412586879117], [-77.44104951603532, 34.60352503781654], [-77.44065649370654, 34.60371475245893], [-77.44051466034757, 34.6038621226178], [-77.44034493732981, 34.60403847007989], [-77.4402369979112, 34.6041027490051], [-77.44020359491168, 34.60407876975988], [-77.44013358784977, 34.60403845116688], [-77.44002813643334, 34.6039441726288], [-77.43996363245503, 34.603938361812176], [-77.43991660667922, 34.603892422831755], [-77.43984576674195, 34.603811545917345], [-77.43981514202713, 34.60366278608601], [-77.43979876313644, 34.603611537658836], [-77.43991409578614, 34.60342281704578], [-77.43990439813962, 34.603096555692034], [-77.43990247934823, 34.60305688233434], [-77.43981804081145, 34.602998855634134], [-77.43971901605255, 34.60286608408403], [-77.43973310088737, 34.60273592842428], [-77.43958028476044, 34.60257857989606], [-77.43937910347694, 34.60246761275954], [-77.4393025467745, 34.60246101992594], [-77.43923709748348, 34.60236969312041], [-77.43912847413401, 34.602216724430484], [-77.43911102559886, 34.60217479977679], [-77.43909230410917, 34.60212538643995], [-77.43905277028621, 34.602006786295824], [-77.43902429012807, 34.6018869886939], [-77.43900932938118, 34.60183454887485], [-77.43893842342219, 34.60153485982075], [-77.43892760760146, 34.60148860312267], [-77.43891929265244, 34.60144539113948], [-77.43885404983511, 34.60114032982035], [-77.4388046535495, 34.600789264174175], [-77.43880415572673, 34.60078565400352], [-77.43880463522856, 34.60078517309189], [-77.43880442537856, 34.600784472147375], [-77.43880361207394, 34.600781592481496], [-77.43875076418803, 34.600368512084025], [-77.43873458362226, 34.600020253668085], [-77.4387309798992, 34.59994677874129], [-77.43873087476584, 34.599868875354396], [-77.43910727818432, 34.59946777151336], [-77.43914252962172, 34.59940389375371], [-77.43919705397838, 34.59932831656313], [-77.43958897221191, 34.59897569829903], [-77.43959162794762, 34.59897382420278], [-77.43959202748198, 34.59897308038113], [-77.43998491953099, 34.59860744989104], [-77.44004559127933, 34.59854829272341], [-77.44034562690838, 34.598475414273075], [-77.44037896925681, 34.59850588682946], [-77.4406053868023, 34.59858263622134], [-77.44079685013119, 34.59874015005381], [-77.44089406940786, 34.598820130564675], [-77.440989778683, 34.598685138140425], [-77.44124865042164, 34.59854419945622], [-77.44128027458792, 34.598310577855095], [-77.44128139549112, 34.59823273743434], [-77.44125329645917, 34.59821198781209], [-77.44105264598439, 34.59803580150784], [-77.44098461030359, 34.59792250410267], [-77.44077264632533, 34.59762332066058], [-77.44070994181513, 34.597605179372394], [-77.44071713752218, 34.5975365906286], [-77.44070466269976, 34.597465229845916], [-77.44063119765791, 34.597124423863356], [-77.44076992203787, 34.59668222000101], [-77.44076902818452, 34.59667989593623], [-77.44076638490077, 34.59667401808668], [-77.44053670795049, 34.59611773657801], [-77.44012381695589, 34.596074935860116], [-77.43998373009948, 34.59605426945809], [-77.43987022843685, 34.59608298946011], [-77.43958968148985, 34.59613473134962], [-77.43942324072901, 34.59620468682371], [-77.43928373190664, 34.596140457355695], [-77.43919558726735, 34.59611688400224], [-77.4391059750128, 34.59618691886406], [-77.43909543083616, 34.59618067165174], [-77.43909485633274, 34.59617655235171], [-77.43917937369666, 34.596060591647856], [-77.43918524384766, 34.59604863209357], [-77.43919554944037, 34.59603383280999], [-77.43951729707203, 34.595587130386356], [-77.43954331065612, 34.595533705270945], [-77.43965584067837, 34.595142500235085], [-77.43955610000283, 34.594767834446216], [-77.43956141436273, 34.59470181503899], [-77.43958894140572, 34.5945245803397], [-77.43971391791433, 34.59428491264896], [-77.43989419501267, 34.59416331860543], [-77.43998281041443, 34.59407293068986], [-77.44008916667718, 34.594116074107575], [-77.44060866786927, 34.593980698726234], [-77.44077093858783, 34.59402192869], [-77.44128857117289, 34.59376584593315], [-77.44155886294175, 34.59355074981324], [-77.44178214170981, 34.59337727166711], [-77.44222072203203, 34.59307317486188], [-77.44229958926493, 34.59301095997239], [-77.44234671900166, 34.59295907815015], [-77.44267740929644, 34.59265064651507], [-77.44313455312961, 34.59234587697465], [-77.44331294295978, 34.59225825773791], [-77.44346670554263, 34.59204375869651], [-77.44357819350697, 34.59154918681505], [-77.44374732004783, 34.591153975555926], [-77.44332247512392, 34.59101222726757], [-77.44313383355811, 34.59090510797542], [-77.44309268067363, 34.59086839433853], [-77.44300330012757, 34.590837000772375], [-77.44282463491867, 34.59077133407034], [-77.44259409572784, 34.590739311699146], [-77.44234566229221, 34.59080307962368], [-77.4418686491668, 34.59091167836256], [-77.44155761150209, 34.590948812442626], [-77.44122380934728, 34.59102949580548], [-77.44116359621943, 34.5910454825902], [-77.4411235037688, 34.5910656808333], [-77.44076958093838, 34.591144002492015], [-77.44045243312755, 34.591288745956874], [-77.44037559285431, 34.59130327920206], [-77.44030397463797, 34.591304583013], [-77.43998153905831, 34.591323417639906], [-77.43983798815756, 34.59129480671274], [-77.4396830290562, 34.59121420566112], [-77.43939176373233, 34.59093474321806], [-77.4393132423691, 34.59081673691337], [-77.43919287466552, 34.59013215645158], [-77.43918088874813, 34.59012896335146], [-77.43918897941906, 34.59011488022093], [-77.43919097849785, 34.590112557549084], [-77.43919286366074, 34.59010776558245], [-77.43937759963146, 34.589663008088934], [-77.4394576630512, 34.58951244546319], [-77.43995688222894, 34.58918014210155], [-77.43998054510347, 34.58916522232629], [-77.43999464414476, 34.58916436893357], [-77.44032207000322, 34.58910182250992], [-77.44000219128837, 34.5891247409479], [-77.43998050998398, 34.58908879164062], [-77.43984144283067, 34.5884716840747], [-77.43929575390446, 34.58851270007493], [-77.43919217995321, 34.58858973821126], [-77.4390892824181, 34.588541769497866], [-77.43858072384347, 34.588694750811754], [-77.43840413762717, 34.58872314485504], [-77.43814760125319, 34.58884357439322], [-77.43801015695824, 34.58888515688659], [-77.43788731026306, 34.58889695743807], [-77.43773462194825, 34.589051410836916], [-77.43761620340379, 34.58911373201209], [-77.4375684074286, 34.589126952359784], [-77.43741921064156, 34.58919268130693], [-77.43726574133402, 34.589166157227105], [-77.43722216804068, 34.58915572959283], [-77.43720388413522, 34.589147853481926], [-77.43718913085095, 34.58913028956075], [-77.4371520345976, 34.589060128481556], [-77.43708600052688, 34.58893290533487], [-77.437098828387, 34.588851512955365], [-77.43708201083196, 34.588721185403585], [-77.43713662736567, 34.58838050902702], [-77.43682772088323, 34.58822191983721], [-77.4367373168013, 34.58801915990942], [-77.43656827346317, 34.58794628307514], [-77.43618710239555, 34.587842317004814], [-77.43603945800052, 34.587822706456265], [-77.43583261922286, 34.58762806028939], [-77.43574372953447, 34.58753484581182], [-77.43564525159164, 34.58743184288228], [-77.43556262720057, 34.587331490895615], [-77.43548736272986, 34.587253387506884], [-77.43540401825864, 34.58710063480365], [-77.43525103573252, 34.587008145749536], [-77.43513678188214, 34.58687948388429], [-77.4350077969884, 34.58673551960315], [-77.43485681067274, 34.58655100213887], [-77.43483371900417, 34.586523579640215], [-77.43481599218086, 34.58650127235471], [-77.434856731871, 34.58635211842498], [-77.43492789162005, 34.58613727020951], [-77.43520774688923, 34.58606627680062], [-77.43525065539296, 34.58605980577753], [-77.43530801878771, 34.58606734854018], [-77.43553037799487, 34.58609658669481], [-77.43564472317041, 34.586130174214716], [-77.43582010952433, 34.586167121348836], [-77.43589962350198, 34.58619463745804], [-77.43603880885746, 34.586242803091125], [-77.43609493299786, 34.5862558833078], [-77.43632776896565, 34.58628268675748], [-77.43643287441847, 34.58630454208959], [-77.43679489669896, 34.58624961702044], [-77.43682690030205, 34.58627051052527], [-77.43688086228626, 34.586260860955434], [-77.43692232399522, 34.58619671538115], [-77.43761465391272, 34.58551002714863], [-77.43772707703528, 34.58535237199851], [-77.43827276767095, 34.58529217893381], [-77.43840261970756, 34.585267058441204], [-77.43871135417285, 34.58542142372666], [-77.43881469537045, 34.58547912972232], [-77.43883911616027, 34.585494936898115], [-77.43918154773905, 34.58585987305275], [-77.43919010145378, 34.585868772499076], [-77.43919023405941, 34.58586953447585], [-77.439190959703, 34.58587110228297], [-77.43943358984062, 34.58642156729961], [-77.43974111881553, 34.58663827237493], [-77.43997949648812, 34.58687992682407], [-77.44030372052868, 34.587056817793766], [-77.4407676683369, 34.58706724377811], [-77.44100605195477, 34.587047640318275], [-77.4413538449617, 34.587036665694896], [-77.44155573365411, 34.58702447718057], [-77.44186646530625, 34.58684514911032], [-77.44260655439416, 34.5865072073106], [-77.44313146797555, 34.58614552962308], [-77.4436926473805, 34.58582239503889], [-77.44466800264344, 34.58341922247739], [-77.44465312023843, 34.58338019316244], [-77.44457629546343, 34.583251391138774], [-77.44350070559146, 34.58144811547918], [-77.44278803306226, 34.58025321630107], [-77.44155154485355, 34.578179985729406], [-77.4410139527973, 34.57769214337689], [-77.43972894427117, 34.57729893461035], [-77.43839898774317, 34.57691196899935], [-77.43791887882884, 34.57704326663131], [-77.4372156678627, 34.577662415145355], [-77.43558697262112, 34.5782637090173], [-77.43524759780641, 34.57837336109057], [-77.43480866504463, 34.57848353775979], [-77.43445968472321, 34.57861486252868], [-77.43424244026201, 34.57870739060188], [-77.43406574561362, 34.57878604599455], [-77.43392557675915, 34.57898735277178], [-77.43385807412534, 34.57919774291055], [-77.43378286020628, 34.579737812131725], [-77.43376377122783, 34.57985993072297], [-77.43371897700224, 34.57991685088909], [-77.4336721967778, 34.57999707832554], [-77.43337711781531, 34.5804468537214], [-77.43290033815575, 34.58083394678652], [-77.4328944759001, 34.58084555829211], [-77.43288448786622, 34.58084772685696], [-77.43287044205634, 34.58085340692447], [-77.43232455111249, 34.58116285893132], [-77.43209659924563, 34.58124227630733], [-77.43161299897572, 34.58134806788995], [-77.43130862707633, 34.58142015933705], [-77.4310813031492, 34.581341845661385], [-77.43052053635401, 34.58126075046418], [-77.43047277751083, 34.581236335807915], [-77.43038148256133, 34.5811980770038], [-77.42994361991, 34.581033788018516], [-77.4297324040543, 34.58096733139395], [-77.42963909409175, 34.58098135338259], [-77.4294478828044, 34.581026407105654], [-77.42933843017373, 34.58109753090386], [-77.42899587181137, 34.58134299396111], [-77.42894450265078, 34.581375987408926], [-77.42892731698969, 34.58138974553511], [-77.42889908017717, 34.58141235066918], [-77.42874754552535, 34.581539092268414], [-77.42867558514826, 34.58152219163719], [-77.42867846318673, 34.581444238040596], [-77.42862366409145, 34.58137329974161], [-77.42855042450824, 34.58118744023183], [-77.42850616562401, 34.581092212225435], [-77.42850535866387, 34.581044668681024], [-77.4284622833028, 34.58095599296085], [-77.42832706539839, 34.58064584912124], [-77.42829462152648, 34.58050136753552], [-77.42815615539402, 34.580380552740536], [-77.42806284860238, 34.58025944838873], [-77.42795134140614, 34.580071580475874], [-77.42794331983359, 34.58006442982857], [-77.42789639898734, 34.580003717748866], [-77.42786807950155, 34.579969157239866], [-77.42788478904244, 34.579940578527896], [-77.42791125965093, 34.57985676911912], [-77.42795897291978, 34.57981215309398], [-77.42804072267293, 34.57971388979076], [-77.42815590492859, 34.57957543992943], [-77.42832481537631, 34.57937240726355], [-77.4283986617114, 34.57919886869577], [-77.42836896377514, 34.57894143716455], [-77.4283274255639, 34.57876233483906], [-77.42830899071367, 34.57869078097246], [-77.42826994071183, 34.5785311607093], [-77.42824836327645, 34.57843426219665], [-77.4282556386695, 34.578216568944356], [-77.42842239279756, 34.57808453651312], [-77.42854941592161, 34.577990986791974], [-77.42879296481155, 34.577868881972734], [-77.42894333662755, 34.57773475626491], [-77.42906455720505, 34.5776977722514], [-77.4291159670097, 34.57755969689569], [-77.42894315638912, 34.57716919570017], [-77.42894025894624, 34.57716362569819], [-77.42893992651788, 34.577160553273444], [-77.42893761669163, 34.57715492220482], [-77.42875578466112, 34.57653969554095], [-77.42832746025962, 34.57658577524849], [-77.42815497925683, 34.57658636465449], [-77.42802244142734, 34.5765868171442], [-77.4274384402141, 34.57660539145317], [-77.42736699186388, 34.5766016870186], [-77.4273149500911, 34.57660232754503], [-77.4267374733781, 34.576800422567295], [-77.42657907176743, 34.57685132382745], [-77.42636623073034, 34.57691274496049], [-77.42618511219263, 34.57698435320449], [-77.4260611576006, 34.57701844903866], [-77.4259191165532, 34.5770346400562], [-77.42579113054235, 34.5770434142545], [-77.42558760415854, 34.577015205394986], [-77.42539711034294, 34.57696501865348], [-77.42507962984303, 34.57686929617607], [-77.42503547804955, 34.57684076130635], [-77.42500307270177, 34.57681981785421], [-77.42470818813187, 34.57649838598664], [-77.42466191213344, 34.57644802704924], [-77.42460892729923, 34.57626447559211], [-77.42455493029952, 34.57609594592885], [-77.42460885141166, 34.5759788892295], [-77.42471766930504, 34.57576517047006], [-77.42492861457896, 34.57561735758082], [-77.42487812287206, 34.57533428664061], [-77.4248471514127, 34.57520454259598], [-77.42460862724047, 34.5751338992281], [-77.424456501717, 34.575097066262806], [-77.42439189593354, 34.57507929168084], [-77.42421460602878, 34.575013133786356], [-77.42398660136057, 34.57490431205974], [-77.42391928028123, 34.57480765755879], [-77.42385919488311, 34.57453984072105], [-77.42385741258963, 34.574498393699], [-77.42383774545013, 34.57409536033214], [-77.42383047026769, 34.574066821116986], [-77.42382037240708, 34.574055376001546], [-77.42365533877839, 34.573856218592695], [-77.42355426151077, 34.573830893613504], [-77.42342632555291, 34.57380724874202], [-77.42323012125269, 34.57395134824512], [-77.42322914953627, 34.573952061908955], [-77.42303239606476, 34.574028566494455], [-77.42292043399068, 34.5740885263902], [-77.4226384482775, 34.57418275942763], [-77.42258543805822, 34.57420047409617], [-77.42244147112504, 34.57424858406425], [-77.4222811364598, 34.574301575495454], [-77.42224990266322, 34.574311918260456], [-77.42224449349045, 34.57431373024534], [-77.42223521752382, 34.574318207908846], [-77.4220846829901, 34.574370017415355], [-77.4220780116481, 34.574510386524125], [-77.42208401308226, 34.57454235082954], [-77.42209945411635, 34.57459603723841], [-77.42214095794502, 34.57474641574376], [-77.42224467861395, 34.57509704990259], [-77.42226303605959, 34.57513358892258], [-77.42226953537012, 34.57515242364779], [-77.42227818149972, 34.57518725589535], [-77.42233706487929, 34.57535495928326], [-77.42230476366355, 34.575424293815644], [-77.42224475704847, 34.57542838758421], [-77.42206267640933, 34.575394605446334], [-77.42209914298883, 34.575333940738666], [-77.42204387628026, 34.57539314411513], [-77.42185075713142, 34.575392702902704], [-77.42155785032298, 34.575364193531684], [-77.42145675529277, 34.5753475055983], [-77.4214002404885, 34.575338925781566], [-77.42129532336527, 34.57529318325116], [-77.42113572744547, 34.575237586011355], [-77.42106272863259, 34.57518915100354], [-77.42090032860168, 34.57510065596601], [-77.42067442355868, 34.57495830517116], [-77.42066868648989, 34.57495314043573], [-77.42046317701829, 34.57478566887373], [-77.42027464233078, 34.57469722106964], [-77.4201350139225, 34.574611651047206], [-77.42008875224974, 34.574394006227536], [-77.42001096492774, 34.57420498742965], [-77.419956282204, 34.57386999053184], [-77.41994761728425, 34.57378955511778], [-77.41993581320293, 34.57373160065684], [-77.4198982696699, 34.57339137599912], [-77.41991100443092, 34.57337025994414], [-77.4200864566823, 34.57314246322379], [-77.42027424927079, 34.57284303257583], [-77.42047246744175, 34.57265363205628], [-77.42089587700002, 34.5725579833866], [-77.42106213730847, 34.57251978152809], [-77.42123381079331, 34.57256955963393], [-77.42128698566391, 34.572564595392095], [-77.42145612189726, 34.572548805200036], [-77.4216528331418, 34.57248172257753], [-77.42165306177723, 34.57248165300465], [-77.42165309567758, 34.57248163700361], [-77.42165316120486, 34.5724816045503], [-77.42185006164084, 34.57238184025193], [-77.42194675735549, 34.57233118107115], [-77.4222439935999, 34.572188756928], [-77.42225936992973, 34.57218179067014], [-77.42255236069029, 34.57204723066578], [-77.4226379251646, 34.57200174927857], [-77.42297751539536, 34.571711969124486], [-77.42305328070198, 34.571665616282296], [-77.42304809387709, 34.571625685535054], [-77.42297504194836, 34.57159262266314], [-77.42263778116805, 34.57139880183733], [-77.42252067351455, 34.57142107442865], [-77.4223820223218, 34.57146383293981], [-77.42224384139212, 34.57153883599497], [-77.422085696551, 34.57161184744711], [-77.42184991761557, 34.571754710135764], [-77.42165048434777, 34.57184518326211], [-77.4215046862164, 34.57191873982547], [-77.42145598318625, 34.57193245034707], [-77.42139278749724, 34.571950527369964], [-77.42111860121813, 34.571983011571135], [-77.42106203284074, 34.572045716395735], [-77.42089753700068, 34.57220124545906], [-77.4204705929233, 34.57222850520472], [-77.42036166984633, 34.57170128255489], [-77.4203203826067, 34.57161277551371], [-77.42030549115344, 34.571580970627245], [-77.42027396021612, 34.571472188193496], [-77.42019656577135, 34.57120607926364], [-77.42015687857538, 34.571085721241445], [-77.42011071071786, 34.5709697196036], [-77.42000808891636, 34.570808724848845], [-77.41987982774066, 34.570697126647595], [-77.4196591692993, 34.57067234969491], [-77.41948584911604, 34.5706528880216], [-77.41920410977147, 34.57062125139688], [-77.41909187073134, 34.57060816798124], [-77.41902335655712, 34.57060024330997], [-77.41889488162559, 34.57058561555375], [-77.41872966166821, 34.57060306551667], [-77.41869790055199, 34.57060465295195], [-77.41833872899197, 34.570662801937054], [-77.41825659490908, 34.570688207785274], [-77.41790997695034, 34.570690698121744], [-77.4179057721867, 34.570692388677074], [-77.41790177612015, 34.57068843411954], [-77.41765419471331, 34.57057525039825], [-77.41751597769468, 34.570525670586754], [-77.41728162250737, 34.57035343536073], [-77.4171935949262, 34.57028895746631], [-77.4171412990955, 34.56994912227884], [-77.41715586381524, 34.569910417865984], [-77.41726631431351, 34.569662160672905], [-77.41745117365771, 34.56947977595628], [-77.4175157820757, 34.56941519194417], [-77.41776831402458, 34.569281563397894], [-77.41790967568527, 34.56902427531366], [-77.41807537002387, 34.56921106787119], [-77.41816632237432, 34.56937646557781], [-77.41839459837722, 34.569670171021606], [-77.41869777763725, 34.56995936931363], [-77.41888534501153, 34.56991960714306], [-77.4190917494503, 34.569987100563566], [-77.41926411048536, 34.56982824598201], [-77.4194856792567, 34.56980320219982], [-77.41969367156358, 34.56978081771625], [-77.41987962189043, 34.569691252821535], [-77.42001207931675, 34.56967714884995], [-77.42027355657027, 34.56954619011961], [-77.42047557255981, 34.56967432418888], [-77.42066755002205, 34.56968343729582], [-77.42094903915984, 34.569702382984396], [-77.42106151531439, 34.569685860182034], [-77.42119977186547, 34.56963836355706], [-77.42165297426612, 34.56951019614857], [-77.42184938387295, 34.56941916099906], [-77.42215136252824, 34.56932440553872], [-77.42224331534146, 34.56928252749321], [-77.42229556782377, 34.569260777389346], [-77.42263722286884, 34.56905011551901], [-77.42294806903087, 34.56902060244712], [-77.42327080279075, 34.56880522383014], [-77.42342506141698, 34.56870860304033], [-77.4235004491145, 34.5686870161363], [-77.42359869966303, 34.568591564180046], [-77.42390388125624, 34.56821446684856], [-77.42421288451463, 34.568332496820204], [-77.42440780002354, 34.56826454974936], [-77.42479156575166, 34.56819371519326], [-77.42500074115426, 34.568111046393646], [-77.42520503003954, 34.56813925829043], [-77.42564663619055, 34.56814253076852], [-77.42578867114185, 34.5681735910422], [-77.42587214564162, 34.56817304270079], [-77.42618262670076, 34.56816985174384], [-77.42651887073677, 34.56810735493936], [-77.42657655446988, 34.568068412748524], [-77.42672047876212, 34.56798525498533], [-77.42693864233985, 34.568108863159736], [-77.42714442891202, 34.568316343179056], [-77.42736457074662, 34.568424988549445], [-77.42747118640521, 34.568456478354136], [-77.42736459247638, 34.5684991382224], [-77.42723385782124, 34.56877438478987], [-77.42699251721369, 34.568950253876515], [-77.4269707691095, 34.56896539435596], [-77.42669682670223, 34.56912229160918], [-77.4265768883601, 34.56924481351777], [-77.42630364337364, 34.56960439986382], [-77.42601467850469, 34.56969763460718], [-77.42578907798233, 34.56965533272981], [-77.42557290050087, 34.56977159229401], [-77.4253951528857, 34.569798189663835], [-77.42521777623264, 34.56982251578663], [-77.4251781184311, 34.56982775025302], [-77.42500120234033, 34.56985044744603], [-77.42476910417359, 34.56987062860614], [-77.42460729569257, 34.57007299636984], [-77.42456505465925, 34.57015026230943], [-77.42460733968615, 34.57024135749441], [-77.42469497222832, 34.57046169291981], [-77.42492121562327, 34.570523378355425], [-77.42500138525953, 34.570538057541114], [-77.42525001561216, 34.57063252050568], [-77.42539538183061, 34.570643684283866], [-77.4257854747448, 34.57081883334599], [-77.4257893969735, 34.570813351023844], [-77.42579088195228, 34.57082068235424], [-77.42579245439084, 34.57082205331661], [-77.42618345213828, 34.571119946928455], [-77.42621534173625, 34.57115116411397], [-77.42628946167837, 34.57128900663412], [-77.42627571960612, 34.57160138397403], [-77.42617590079287, 34.57203198467064], [-77.42618061107926, 34.572043060051975], [-77.42630161629678, 34.57214926319762], [-77.42657777353764, 34.57234672771216], [-77.42659042470898, 34.57239145647769], [-77.42659804971555, 34.57240397484098], [-77.42687199700661, 34.57268136077617], [-77.42696908543111, 34.57277794365284], [-77.4273006643005, 34.57315160098913], [-77.42736598453257, 34.57322000607279], [-77.4277351412995, 34.57354024774746], [-77.42776006812701, 34.573563259769735], [-77.42793687413953, 34.573718331928404], [-77.42798749550988, 34.57372196044364], [-77.42815409491669, 34.57371053949863], [-77.4282217323881, 34.57365535461848], [-77.42825100097826, 34.57354331911107], [-77.42829312540606, 34.573432740623915], [-77.42832446439533, 34.57318739979804], [-77.4283819286741, 34.57299531512894], [-77.42894164816269, 34.57240641580938], [-77.42911664750937, 34.572228591528464], [-77.4297294737782, 34.57201713830256], [-77.42977332325032, 34.57199227491469], [-77.4300006317892, 34.5719121494531], [-77.43041988692381, 34.5717465236492], [-77.43051731309053, 34.57169143248352], [-77.43069567389915, 34.571619422454205], [-77.4316067020426, 34.57115585453218], [-77.43209294646309, 34.570965886137415], [-77.43220149480699, 34.57086181639124], [-77.43249675869438, 34.570702101472065], [-77.43278309155949, 34.57055546871654], [-77.43288071538937, 34.570500151165604], [-77.4331039741373, 34.57037364190019], [-77.43366856904207, 34.570287058446056], [-77.43415387129082, 34.570136400741625], [-77.43524375299295, 34.56854529947644], [-77.43640802626729, 34.56758896710363], [-77.435242830882, 34.56615993393698], [-77.4347042903303, 34.565018573628286], [-77.43406140777633, 34.564531570267505], [-77.43209001806588, 34.56256003568997], [-77.43156049998774, 34.562067004433985], [-77.43112800197085, 34.56155898622705], [-77.42893796339621, 34.56053589794606], [-77.4274295868903, 34.56032269009746], [-77.42724620297514, 34.56029676664613], [-77.42701132682443, 34.56045576106361], [-77.4259820205974, 34.560815093780825], [-77.42578694937217, 34.56183422612742], [-77.42536773550606, 34.56193980532686], [-77.4249990982926, 34.56184451650047], [-77.42485071056664, 34.56177714863975], [-77.42489012401893, 34.56161153429178], [-77.42483909061104, 34.561446557912696], [-77.4251376409429, 34.5607265830215], [-77.42465786641812, 34.56031411176379], [-77.42421086850992, 34.56033976930909], [-77.42378891288658, 34.5604666663682], [-77.42263523877776, 34.5605600764936], [-77.42221945741665, 34.560700135713475], [-77.42184746111575, 34.56085524943351], [-77.4213138506785, 34.561005189375564], [-77.42105966220832, 34.56107661469282], [-77.42086261182946, 34.56113198314184], [-77.42027184037039, 34.561207559137074], [-77.42002578007481, 34.56088126891806], [-77.41948389637564, 34.56071891610381], [-77.41887401275908, 34.560590700009776], [-77.41844029685804, 34.56056957058413], [-77.41816295780008, 34.56145999751287], [-77.4180478891194, 34.56175106428422], [-77.41801594459422, 34.56187158670464], [-77.4179084246008, 34.56197885084632], [-77.4177507321399, 34.56196395503184], [-77.41714502074998, 34.56190786901121], [-77.41712055446672, 34.561905967704625], [-77.41710494657414, 34.56190411051363], [-77.4164124241511, 34.562073232874695], [-77.41633273071524, 34.562123138186394], [-77.41588643010822, 34.56254440613897], [-77.41542734695335, 34.562852008077115], [-77.41475712922353, 34.56298539097381], [-77.41423325317973, 34.56286671833449], [-77.41353881899511, 34.56278766475495], [-77.41318136759608, 34.5627869807926], [-77.41289091196604, 34.562809034808296], [-77.41182858751542, 34.562889692714336], [-77.41160564874016, 34.56295266202408], [-77.41144691545624, 34.56287559335959], [-77.41002989632958, 34.56278602326378], [-77.40902798855973, 34.56243531745419], [-77.40716980925569, 34.56193790049073], [-77.40687838250288, 34.56194822562099], [-77.40576102747139, 34.56182718607275], [-77.4040755812112, 34.5616947228743], [-77.40372693097106, 34.56166731797203], [-77.40309733567842, 34.56153311551092], [-77.40057545808283, 34.56251929936339], [-77.39883521043316, 34.561305871944924], [-77.3974240365562, 34.561676606116734], [-77.39677182162069, 34.56242169936273], [-77.39669020205059, 34.56313636495669], [-77.39626321783783, 34.56364533300453], [-77.3960224911329, 34.56408185320994], [-77.3958480771619, 34.564289384350936], [-77.39553078209646, 34.564660014038424], [-77.39518554406054, 34.565051750497275], [-77.39515077165092, 34.56515448199417], [-77.395132472287, 34.5654839795466], [-77.39514350986265, 34.565572318562445], [-77.39506004175712, 34.56580951001015], [-77.39502510597578, 34.56588639810194], [-77.3948910290616, 34.565943384386884], [-77.39435555120617, 34.56611056633787], [-77.39427209927175, 34.56618255609327], [-77.3941368303955, 34.56619796994961], [-77.39387813546357, 34.566276306085456], [-77.39357544416322, 34.56623152622909], [-77.39348419218278, 34.56618265881656], [-77.39345824692809, 34.56617804539349], [-77.39332210481594, 34.56616972236131], [-77.39289894256517, 34.566012379641045], [-77.39282482557749, 34.56581688655983], [-77.39293227801474, 34.56563107676905], [-77.39290574597135, 34.565380642752224], [-77.39305166298622, 34.56497675244716], [-77.39307267127803, 34.564912895380544], [-77.39322478938246, 34.56448547672768], [-77.39324663601815, 34.56422605593909], [-77.39341824209336, 34.56360842776057], [-77.39342577960551, 34.5635440572504], [-77.39348451841926, 34.563362678225666], [-77.39369060767898, 34.56294205381325], [-77.39365705540285, 34.56272483352496], [-77.3935856225449, 34.56262626479608], [-77.39348462576423, 34.56244503672043], [-77.39344618168661, 34.56237212691571], [-77.39342277945373, 34.562334060011985], [-77.39329715001026, 34.56212970750153], [-77.3931444371235, 34.56194964235526], [-77.39301296559725, 34.561627912025344], [-77.39269690734304, 34.561239368901674], [-77.39222534723389, 34.56089223006362], [-77.39119925118386, 34.560531959047005], [-77.39117963197135, 34.560471915428316], [-77.39112129750082, 34.56047202753858], [-77.39106003147113, 34.56048601035187], [-77.39093645729393, 34.56056986496123], [-77.38998496713545, 34.56118078452508], [-77.38954543915366, 34.56137454507089], [-77.3887721030149, 34.561715454780476], [-77.38874922341705, 34.56172554079617], [-77.38871909695033, 34.561738821146236], [-77.38796959521679, 34.56200735718286], [-77.38772846137743, 34.56214154651312], [-77.38748262313322, 34.56224148628642], [-77.38718167463182, 34.56226869645807], [-77.38700222165227, 34.56217984602183], [-77.38660181948552, 34.56226835376155], [-77.38639379776296, 34.56228863463386], [-77.3861912973943, 34.562321598199276], [-77.38585118968875, 34.562416768067145], [-77.38560587048539, 34.56254326298791], [-77.38515455726832, 34.562739208796316], [-77.38481791050174, 34.562922875867386], [-77.38458938772428, 34.562937192088114], [-77.38402999177819, 34.56309115378797], [-77.38386311446496, 34.56310834929799], [-77.38343195950894, 34.56314573583351], [-77.38324209618958, 34.56314831387617], [-77.38292456700304, 34.563081280712424], [-77.38282783580242, 34.563034820684095], [-77.38279586303328, 34.563017501798306], [-77.38258366136563, 34.56290864798005], [-77.38245430700965, 34.56277290196959], [-77.38238886241015, 34.562722159259074], [-77.38226335928567, 34.56266970700079], [-77.38229686932556, 34.562495123152004], [-77.38245443093886, 34.56227611029452], [-77.38248105396066, 34.562242440946164], [-77.38251594651628, 34.56220872658794], [-77.38269156077938, 34.56201433895975], [-77.38273524202253, 34.56175254449787], [-77.38296770642971, 34.561422856280586], [-77.38324257798644, 34.561143530801054], [-77.38338652732898, 34.56096461107174], [-77.3836583377277, 34.560770323795325], [-77.3839013507041, 34.56059601848476], [-77.38403058845364, 34.56050924742866], [-77.38429561404976, 34.5603928293756], [-77.38448311488213, 34.560289938912874], [-77.38481855589689, 34.560014478602454], [-77.38507870953843, 34.55999677539579], [-77.38539359392706, 34.55990037915696], [-77.3856064589418, 34.55977636263337], [-77.38634562397532, 34.55958621455896], [-77.38639433292839, 34.55965741344859], [-77.3865590266081, 34.55968043440311], [-77.38652531983465, 34.55936667146638], [-77.38639439935082, 34.55933267220704], [-77.38625962217239, 34.55940085549531], [-77.38560655597385, 34.55932273130247], [-77.38521033410632, 34.55927533019502], [-77.38481881043998, 34.558875772807234], [-77.38422498526616, 34.55919954698078], [-77.38403089766214, 34.55917948735067], [-77.38388178037785, 34.559200554477], [-77.38327886180029, 34.55912677369593], [-77.38324307632956, 34.55908202079519], [-77.3829082471449, 34.55869205347045], [-77.38250819966485, 34.55838875189845], [-77.38208328930298, 34.5580020491503], [-77.38166775144728, 34.557692662392206], [-77.38121979845167, 34.55735914206015], [-77.38088604139958, 34.556924356065444], [-77.38050277971934, 34.556537298548434], [-77.38003830769208, 34.55534829966001], [-77.37895747438944, 34.55258132039276], [-77.37880043467158, 34.552130236142084], [-77.378733467725, 34.5520078887077], [-77.3785333905315, 34.551495646547096], [-77.37805802882158, 34.55027861792506], [-77.37817006625791, 34.55001498384662], [-77.37857138091123, 34.549818913836326], [-77.37972598479529, 34.548784930730456], [-77.38117989175043, 34.54786992396759], [-77.38147305258472, 34.54764786304068], [-77.38176397208454, 34.54753272866513], [-77.382223660503, 34.54743415408613], [-77.38334823678612, 34.5469189873834], [-77.38372569505165, 34.54675663511355], [-77.38433314489927, 34.54643593432193], [-77.38479074575682, 34.54628122113688], [-77.38493364995583, 34.54625329593278], [-77.38509478626162, 34.546225995922576], [-77.38572401134019, 34.546023899181264], [-77.38648578033644, 34.54611213771414], [-77.38650714504456, 34.5461146096993], [-77.38654631422038, 34.5460926474662], [-77.38729613003083, 34.54594595173151], [-77.38754172858852, 34.54563228624213], [-77.38752016064576, 34.54548664481924], [-77.3877047664223, 34.54523434258721], [-77.38771529075416, 34.54522003025057], [-77.38772763021753, 34.54521188832461], [-77.388102391528, 34.54501083753232], [-77.38823480487792, 34.54497599066444], [-77.388765499467, 34.5448173534075], [-77.38889272838793, 34.54478155535179], [-77.38950552847245, 34.54460056680099], [-77.38968419542115, 34.54450189354469], [-77.39014332990094, 34.54433461071467], [-77.39077273384191, 34.544223425674424], [-77.3912627422755, 34.54413673220643], [-77.39209446511023, 34.5438228124858], [-77.39344958782083, 34.54353837526373], [-77.39345151573642, 34.54279509364582], [-77.39186748664083, 34.54241119185403], [-77.39147720547092, 34.54235870780089], [-77.39130186489788, 34.54239858312338], [-77.3912021624862, 34.54244566444426], [-77.39051485915499, 34.54248126630355], [-77.39027908331461, 34.54249347820439], [-77.3900248732548, 34.54249278173561], [-77.38973005261434, 34.54246623761108], [-77.38932678443005, 34.54228805969552], [-77.38915431985858, 34.54218626996389], [-77.38895514722256, 34.54201186670571], [-77.38875616742476, 34.54188070554329], [-77.38858064951967, 34.54165493580194], [-77.38860424153569, 34.54141295469646], [-77.38848953369786, 34.54124105955209], [-77.3884577325083, 34.541111205624766], [-77.38841828053673, 34.54095011391945], [-77.38840073571481, 34.54082542718794], [-77.38837073521907, 34.54057225359673], [-77.38841546309666, 34.5404608544752], [-77.38845587789609, 34.54011700664503], [-77.3884739406449, 34.53996275366433], [-77.38856199259703, 34.539737556618164], [-77.38862090788453, 34.53945188814666], [-77.38871150712029, 34.53924801528727], [-77.38894857201768, 34.53891495680637], [-77.38897631352746, 34.53888013656707], [-77.38902710797232, 34.538818854454576], [-77.38925552647069, 34.5385192628784], [-77.38952835463046, 34.53834165327436], [-77.38982796289362, 34.53811999459126], [-77.3901186250959, 34.53794566985681], [-77.39051355424836, 34.53770985888316], [-77.39062385195034, 34.5376410583417], [-77.39106010628626, 34.53741019027272], [-77.39119190360644, 34.537122325400404], [-77.39143144267979, 34.53664184768812], [-77.39146548537545, 34.53661402940874], [-77.39152739250723, 34.536584255292645], [-77.39199481341524, 34.53637477949443], [-77.39222396866398, 34.536311331263164], [-77.39239392452447, 34.53635264717994], [-77.39283500401227, 34.53639558837308], [-77.392961013954, 34.53640604163124], [-77.39300546612857, 34.53647087996758], [-77.39312696978557, 34.53684312902642], [-77.39315893299545, 34.536940827999196], [-77.39323635307173, 34.537163295654686], [-77.39333782205374, 34.53730237298524], [-77.39376409202298, 34.537647910971415], [-77.39385351272296, 34.537661665931736], [-77.39415790587307, 34.53759162839085], [-77.39423507053698, 34.53761412971064], [-77.39444947493512, 34.53756832654325], [-77.3945513301837, 34.537552652362734], [-77.39468165050091, 34.53751734433798], [-77.39480210382206, 34.53749146613969], [-77.39494848469404, 34.5373476250519], [-77.3949911424676, 34.53733506519237], [-77.39509223575486, 34.53720636705743], [-77.39520529716725, 34.53703289602004], [-77.39535202737815, 34.53685811306457], [-77.39552526844207, 34.536601508720516], [-77.39560301166192, 34.53648583173144], [-77.39598328631126, 34.53604856610609], [-77.39606295828982, 34.53592978490983], [-77.39609779467017, 34.53588662653822], [-77.39616115556956, 34.53578748402638], [-77.39623948930353, 34.53565947337981], [-77.39618176853676, 34.53543083049474], [-77.39618293399383, 34.53542280027731], [-77.39617053272713, 34.53536985308904], [-77.39610053326342, 34.53499394674535], [-77.39608476710175, 34.534947297074424], [-77.39600310572484, 34.53484733569014], [-77.3961747443888, 34.53445482940218], [-77.3961378141593, 34.53444997133042], [-77.39617605458253, 34.534434801425384], [-77.396191587077, 34.53443215954926], [-77.39677182030766, 34.534227848183875], [-77.39698443968305, 34.53408522816076], [-77.39715417881445, 34.5338136144442], [-77.3971176442133, 34.53340274717388], [-77.3977316873036, 34.532792594646935], [-77.39764013549792, 34.53276413346848], [-77.39778164045404, 34.53273234931658], [-77.39779994114708, 34.532728448715865], [-77.39780735633036, 34.53273527728138], [-77.39784491452625, 34.53273457680281], [-77.3988043373565, 34.53294590112107], [-77.39935881313376, 34.53322924970812], [-77.39987504611737, 34.53275693272051], [-77.40016017869667, 34.53250123081082], [-77.40031087248997, 34.532378624028034], [-77.40085339060433, 34.53223936624102], [-77.40095727891728, 34.531963026158216], [-77.40173996604895, 34.53167717807784], [-77.40254378122289, 34.53122920105592], [-77.40291403028206, 34.53102345977554], [-77.4037112687233, 34.53064914427593], [-77.40413589530036, 34.53024310065784], [-77.40442050672279, 34.529826593208625], [-77.40507151196566, 34.52932403865773], [-77.40514614150734, 34.52923213804838], [-77.4057362549378, 34.52888620585962], [-77.40601528879989, 34.528789663113415], [-77.40653473612673, 34.52854193510682], [-77.40665853458617, 34.52810918594734], [-77.40666330048151, 34.527958022436884], [-77.40654094978116, 34.52800470629302], [-77.40612617131225, 34.527621586243896], [-77.40610091086518, 34.52741822132974], [-77.40578122822048, 34.52687324670312], [-77.40558183701546, 34.52684560591299], [-77.40522284713182, 34.526772680193], [-77.40489857717411, 34.526397381949806], [-77.40422907627257, 34.52607591163418], [-77.40309610463058, 34.525831237885036], [-77.40231105310767, 34.52523441880376], [-77.40265529292179, 34.524176462037715], [-77.40429369921773, 34.52318596152907], [-77.40440721389544, 34.52304186029663], [-77.40488096616028, 34.52290464319276], [-77.40444094189452, 34.5228805924468], [-77.40478888507702, 34.5222342268449], [-77.4053452479936, 34.52219542407532], [-77.405876250621, 34.52262025246772], [-77.40701602394752, 34.52232384856425], [-77.40745789497562, 34.52209415253208], [-77.40895544835783, 34.52128038136765], [-77.40904607987476, 34.521273862806886], [-77.40915041809747, 34.52124399226856], [-77.41061408414359, 34.52135762199137], [-77.41142294068956, 34.52049362259483], [-77.41164643794399, 34.519968741037246], [-77.41222494351719, 34.51951693672809], [-77.41325702069034, 34.51939892470768], [-77.41381117915763, 34.51877979445168], [-77.4145057355017, 34.51911762306092], [-77.41534261641667, 34.51943469323258], [-77.41577358296729, 34.52008871576282], [-77.4158436078803, 34.52034167206423], [-77.41616894094324, 34.520755068642764], [-77.41612790941518, 34.5207944986957], [-77.41561647080864, 34.521353859173466], [-77.41543508395277, 34.52145085596019], [-77.41531490190235, 34.521753004673414], [-77.4151831438992, 34.52190615743172], [-77.41522216523028, 34.52195556344504], [-77.41505676101252, 34.52226009377114], [-77.41477183919702, 34.522455270033326], [-77.41450794373324, 34.522743173106896], [-77.4140013318351, 34.522740194130385], [-77.41370711290352, 34.52345709346119], [-77.41359956433362, 34.52353804073158], [-77.41213225459107, 34.523679379032465], [-77.41068176775538, 34.52402553736854], [-77.41056603247016, 34.52404970856433], [-77.41055390321188, 34.524057950576676], [-77.40975609919983, 34.525138606769055], [-77.40976952398947, 34.52560447608819], [-77.41052181527888, 34.52549777060882], [-77.41184210626031, 34.52483727387261], [-77.41196902711042, 34.52473173234982], [-77.41211941646253, 34.524255921871934], [-77.41328100111946, 34.52390957233289], [-77.41370223249336, 34.52367645039416], [-77.41380559627449, 34.5236381926509], [-77.41526322573783, 34.52407761109559], [-77.41577098171773, 34.52395457326368], [-77.41683609259684, 34.52394479743252], [-77.41740432413158, 34.523401184070835], [-77.41842718722499, 34.52299032390691], [-77.41871198407974, 34.52286525232235], [-77.41957720088152, 34.52247107838403], [-77.42001357321996, 34.52224652000515], [-77.42053310910704, 34.52194258105115], [-77.42080815448043, 34.52181148282118], [-77.42093116907212, 34.521975804569294], [-77.42157927364902, 34.52243505204481], [-77.42158839423827, 34.52244369724809], [-77.42159268395575, 34.522448886541476], [-77.42161038831996, 34.52246616830825], [-77.42206523131816, 34.52304831061033], [-77.42225169919324, 34.52333299442557], [-77.42268760966182, 34.52354261828684], [-77.42287453896793, 34.523732647589455], [-77.42295980541405, 34.52381932867604], [-77.42310547252562, 34.52418587946415], [-77.42310717788337, 34.52418870471644], [-77.42310731379541, 34.524190543764], [-77.42310652077136, 34.52436096796172], [-77.42310560235343, 34.52467861917388], [-77.42309921551399, 34.52469098782128], [-77.42284204281678, 34.52505094223862], [-77.42261821988964, 34.52523875800518], [-77.42240081285543, 34.52569204606964], [-77.42234897701024, 34.52576736625238], [-77.42233623110995, 34.52579821396126], [-77.42204305438781, 34.526301271234644], [-77.42177800836237, 34.52652001544244], [-77.42166162541851, 34.52684609328617], [-77.42147465223123, 34.527157400067104], [-77.42137524107399, 34.52731737076863], [-77.42131178990986, 34.52738634515415], [-77.42126971618141, 34.52751532094758], [-77.42115997647389, 34.527897973567974], [-77.42123558874331, 34.528024195817196], [-77.42120994201859, 34.52823013423094], [-77.42117940758365, 34.52838485097951], [-77.42112159907488, 34.52859359481467], [-77.4211076596868, 34.52867697536036], [-77.4207713683824, 34.52885902171023], [-77.42065110149852, 34.52889748983882], [-77.42048868047655, 34.52887270936361], [-77.42017843235686, 34.52882537484386], [-77.41986874671731, 34.52877812522219], [-77.4193764316945, 34.52895016146344], [-77.4187261273976, 34.52900921702833], [-77.41887832567039, 34.529327642741876], [-77.41904337068019, 34.52967293659473], [-77.4193444579076, 34.53030283321764], [-77.41948125010508, 34.53058902124512], [-77.41955623831905, 34.53074590669087], [-77.4193977895427, 34.53158045389319], [-77.41979904875164, 34.531921608050865], [-77.42025664958395, 34.53214713479552], [-77.42094465852713, 34.53233625352441], [-77.4229083454824, 34.53331403021808], [-77.4244627471375, 34.53282362837378], [-77.42540349913207, 34.53365047912173], [-77.42536889527751, 34.53521653563747], [-77.4253769117062, 34.53599502389177], [-77.42787800802748, 34.53721021365484], [-77.42530700774677, 34.53915873278374], [-77.42527638385633, 34.53954510897459], [-77.42491406100928, 34.54021002797934], [-77.42489779856588, 34.540946052566376], [-77.4246087572291, 34.54160037298779], [-77.42547852161509, 34.54171438048709], [-77.42586078562654, 34.541809955141765], [-77.42838309098961, 34.54144529134487], [-77.42901075307803, 34.54137960776549], [-77.43034036321686, 34.54160409651256], [-77.43215203058674, 34.541342124383156], [-77.43314408594902, 34.541701333408554], [-77.43451227715013, 34.541644676375526], [-77.4350445925556, 34.54026082719875], [-77.43488295186756, 34.54011476780186], [-77.43488896615345, 34.539841638632645], [-77.43484868196275, 34.536544767123615], [-77.43430525396964, 34.53628075965633], [-77.43486381827397, 34.53585739483114], [-77.43300566148393, 34.53407727341755], [-77.43336035091092, 34.53249990027308], [-77.43236412640383, 34.53171040405111], [-77.4305739522323, 34.532056044617136], [-77.43151973321262, 34.530807340137535], [-77.43063209502517, 34.52982940817293], [-77.43003056749966, 34.5290639254745], [-77.42972005458418, 34.528838926519725], [-77.42928936723668, 34.528748888034556], [-77.4278940238689, 34.52829087314201], [-77.42772852707009, 34.528334412528736], [-77.42761611896876, 34.528363983825216], [-77.42642256389755, 34.52844011348223], [-77.42615725460323, 34.52839267369743], [-77.42598690183176, 34.52828729247027], [-77.42595446164114, 34.52818426167836], [-77.4257554241366, 34.52797970913484], [-77.42581500029696, 34.52771473515397], [-77.4258058810797, 34.52748433985262], [-77.42577592294421, 34.527230697848864], [-77.425777567349, 34.526996869226195], [-77.42573806135123, 34.52674648204555], [-77.42575261686406, 34.526465387400634], [-77.42581478216292, 34.526002605674776], [-77.42584856433035, 34.52575112922433], [-77.42588332542269, 34.525535835835], [-77.42596310390815, 34.524924126420004], [-77.42598556091089, 34.524751946500515], [-77.42599900581315, 34.52459898232987], [-77.42603750703866, 34.524254747517716], [-77.42607362703426, 34.52387429550451], [-77.42608284836005, 34.523758502798245], [-77.42609086480203, 34.523650553401666], [-77.42618166197614, 34.522826349119896], [-77.426188548194, 34.52276384336966], [-77.42619419731585, 34.522707700924094], [-77.42626375457587, 34.52179806541749], [-77.42626280220827, 34.521773730143536], [-77.42626223838269, 34.52174769839113], [-77.42630695976803, 34.521618106383876], [-77.4265552454376, 34.520897023457586], [-77.42689888791105, 34.52070237672889], [-77.42738221840534, 34.52030584160954], [-77.42768335403427, 34.519609565217856], [-77.42792913539233, 34.51924871402397], [-77.42905902893604, 34.51913459703367], [-77.42951527234021, 34.51850878054128], [-77.4304957098096, 34.517846651809755], [-77.43116907946659, 34.517146664062935], [-77.43279319323139, 34.51499097257141], [-77.435923520275, 34.51263858061311], [-77.43598976337337, 34.51257221166351], [-77.44138705966824, 34.51226448857979], [-77.44220818489077, 34.51236684218639], [-77.44366617660181, 34.512330057607514], [-77.44765635908905, 34.51190590731264], [-77.45189474620123, 34.51157491060497], [-77.45295528371511, 34.51146765985247], [-77.45468963994516, 34.5113819888386], [-77.45825801019201, 34.511157066237274], [-77.46059671330548, 34.51104924992261], [-77.46091351055748, 34.51101690754675], [-77.46108637790094, 34.51117201113335], [-77.46106091790053, 34.511236138599365], [-77.46106212512444, 34.51127528867242], [-77.461072022462, 34.51159640842967], [-77.46054418200632, 34.51256092984163], [-77.46032198671722, 34.51329192017503], [-77.46115959606244, 34.51426541693896], [-77.46372075344654, 34.515424168563555], [-77.46423811793923, 34.51578880430792], [-77.4652379581799, 34.51697698864197], [-77.46943399977414, 34.51571388752299], [-77.47008106833272, 34.5156548271861], [-77.47024637181987, 34.51558945665409], [-77.4730235522099, 34.51319374586744], [-77.47359315076885, 34.512608110664196], [-77.47432828632878, 34.51081737936528], [-77.47500352723442, 34.510592036761714], [-77.47542222742065, 34.50994486218623], [-77.4762278997491, 34.50930304671311], [-77.47596391804547, 34.50900740553462], [-77.47649731186424, 34.50889981778697], [-77.47789837820272, 34.50803661800305], [-77.47853182985276, 34.50787826196182], [-77.47888720254505, 34.50778942261112], [-77.48140810100158, 34.50689874346678], [-77.48066503009824, 34.504072725696645], [-77.48127222667209, 34.50280336281812], [-77.48118014374333, 34.50203652703822], [-77.48097087869925, 34.50078087766715], [-77.48088506660233, 34.50008177650545], [-77.48121202426981, 34.499676201687116], [-77.48184029599537, 34.49889680190411], [-77.48143261554532, 34.49740751094908], [-77.48066623206402, 34.49460753051757], [-77.47863789741095, 34.49605048359508], [-77.47928835211442, 34.49729894616171], [-77.47888111725311, 34.49854449046081], [-77.47892002596419, 34.49863132957554], [-77.47880352022989, 34.49878179397378], [-77.47787823274638, 34.49992956734126], [-77.47794399348379, 34.50046531241176], [-77.47800261911435, 34.50128688284465], [-77.47808291989247, 34.50229040554529], [-77.47812539161242, 34.50264409579956], [-77.47771413384915, 34.50350384264381], [-77.47553664978896, 34.504048190341145], [-77.47371862485868, 34.505122918813896], [-77.4731878855635, 34.505283640386345], [-77.47288031005621, 34.50552654688221], [-77.47194634383874, 34.50705671151082], [-77.47177264803565, 34.507726329433424], [-77.47131009722455, 34.50896191169823], [-77.47127568068785, 34.50905218155322], [-77.47125682110041, 34.509097860761436], [-77.47072926677856, 34.510375474456524], [-77.47044101305065, 34.51107763743266], [-77.46932554970181, 34.51222450586261], [-77.46870498750046, 34.51261069913831], [-77.46781417257625, 34.51292975260205], [-77.46692120955191, 34.51328288234234], [-77.46597077314465, 34.513659025112496], [-77.46437017433547, 34.513805214926236], [-77.46311056998519, 34.51324617015939], [-77.46310236504077, 34.512690761658774], [-77.46250007725033, 34.51199928040558], [-77.46249927457114, 34.51197323742779], [-77.46247876431022, 34.51130809303049], [-77.46265612317869, 34.51086136975384], [-77.46269525175514, 34.51064357286116], [-77.4627943784038, 34.51027967617464], [-77.46285744172341, 34.509976291475354], [-77.46292882990963, 34.50980577364397], [-77.4631032538825, 34.50917410493023], [-77.46327287593556, 34.50878482596282], [-77.46346077050765, 34.50865588038769], [-77.4633408124181, 34.5084283367049], [-77.46354727266939, 34.50773005412989], [-77.4636043354771, 34.507312144916796], [-77.46366922634182, 34.50669089788374], [-77.46364726990025, 34.50659059025393], [-77.46369731020148, 34.50642204126482], [-77.46391849855294, 34.50597706276294], [-77.46409579472481, 34.505620388356824], [-77.46453247208397, 34.50467400001323], [-77.46455096369424, 34.50465813232587], [-77.46455482287448, 34.50465529825093], [-77.46455908883559, 34.50464880906051], [-77.46538596198067, 34.50387092440455], [-77.46589654568123, 34.503375369352355], [-77.46518346614099, 34.50276798248096], [-77.46520747523303, 34.50266490696766], [-77.46521586774972, 34.502600297431854], [-77.46521950374212, 34.502327762279165], [-77.46522897035553, 34.5021741889618], [-77.46527337760728, 34.502034217900984], [-77.46529947341124, 34.50199406380795], [-77.46527504102357, 34.501937200769454], [-77.46533192839522, 34.50146864282104], [-77.46543373298428, 34.501325362849634], [-77.46535274068361, 34.50111366584612], [-77.4654195199457, 34.50064913027132], [-77.46508344487599, 34.50015993372394], [-77.46509014893007, 34.499956907494095], [-77.46499530542864, 34.499734576084464], [-77.46452976276414, 34.49925296172418], [-77.46435501450084, 34.498618113373375], [-77.46436836635215, 34.498496319595446], [-77.46335320151857, 34.4978422203549], [-77.46342087021794, 34.49742556941991], [-77.4632425159736, 34.49716109278437], [-77.4624260837529, 34.496850432958865], [-77.46180615287713, 34.49708817786244], [-77.46177370510358, 34.497364309176994], [-77.46086008595265, 34.49771565305422], [-77.46006847925433, 34.49807832152892], [-77.45957412020341, 34.49786971173102], [-77.45879637130788, 34.49761084632432], [-77.45897920781908, 34.497194923359], [-77.45863310904228, 34.49679556984417], [-77.45830307118977, 34.49654710899246], [-77.45806124137104, 34.49674899494649], [-77.4570777372539, 34.49699090796387], [-77.45669892751248, 34.49727527683351], [-77.45651892423905, 34.4974951465569], [-77.45643656130358, 34.4979431944729], [-77.45642232009487, 34.49832899241862], [-77.45652739379142, 34.49884661820797], [-77.4562940070519, 34.499049891222796], [-77.45542466492952, 34.49879058191125], [-77.455305343777, 34.49853419190529], [-77.45483417622592, 34.49863615956419], [-77.45473369424847, 34.498696752963994], [-77.45348870320197, 34.498640668774584], [-77.45343610327068, 34.498689508174934], [-77.45326978195666, 34.499173666214666], [-77.45248814537632, 34.499906867564675], [-77.45243958749947, 34.4999584559185], [-77.45238844636793, 34.49998728602445], [-77.4519372200788, 34.50029373309506], [-77.45067564903812, 34.50125123037516], [-77.45058697793318, 34.50143464216527], [-77.45056380032155, 34.50259659121647], [-77.45056149958349, 34.502711990818085], [-77.45019322352628, 34.50361961346343], [-77.44852381690197, 34.50364248721281], [-77.44837558282137, 34.503160810597855], [-77.44822206018753, 34.50266194080571], [-77.4500553258584, 34.50257072723355], [-77.44844078474941, 34.50212013755195], [-77.44777814381457, 34.502383320844395], [-77.44769748406357, 34.502407072870554], [-77.44720678398646, 34.50242581936327], [-77.446674077338, 34.50250391042464], [-77.44648050824449, 34.50256302142962], [-77.44624851860414, 34.50289122113076], [-77.44553548004185, 34.50363763176919], [-77.44605649016083, 34.503718330564524], [-77.44557926306537, 34.50375421325753], [-77.44545254943255, 34.50372947202205], [-77.44518801346823, 34.504349659147366], [-77.44493985262926, 34.50463170904722], [-77.44493032539401, 34.504736540233694], [-77.44525087488898, 34.50502838449117], [-77.44519505182731, 34.50538111853489], [-77.44604650473477, 34.50590263675083], [-77.4478429577446, 34.50556381949519], [-77.44741069661337, 34.506489321981874], [-77.44936159288861, 34.50790205773591], [-77.44938509562202, 34.507979555196414], [-77.44911106047475, 34.508032912303094], [-77.44653548472263, 34.507691605171416], [-77.44626284993589, 34.50883898598559], [-77.44194518603612, 34.508644040442476], [-77.44134293467145, 34.508404346664776], [-77.43870013481714, 34.507540776423454], [-77.43838843465157, 34.507449724144095], [-77.4382800616534, 34.5074267223011], [-77.43808798390378, 34.50736572984451], [-77.43691709402717, 34.50699392421357], [-77.4364038878636, 34.50684081007269], [-77.43620322058933, 34.506845781432794], [-77.43616755525997, 34.50690420274619], [-77.4356361970565, 34.50723515561517], [-77.43563308512337, 34.50723859004864], [-77.43563052496798, 34.50724049103197], [-77.43557145744309, 34.50727547732752], [-77.43473237147286, 34.50798911470815], [-77.43455823598163, 34.508821339021395], [-77.43342549028299, 34.50934005772365], [-77.43284084282081, 34.510064889038006], [-77.43225907823026, 34.510759275147464], [-77.43190064250473, 34.511164574589756], [-77.43123832064346, 34.51155664945698], [-77.43010238144883, 34.51169723457653], [-77.42966453102623, 34.51174352902807], [-77.42887756328332, 34.51208809540948], [-77.42808777764418, 34.51206423120083], [-77.4275400284397, 34.51243802848023], [-77.42768857570397, 34.512753154591245], [-77.4278322229337, 34.51288058073053], [-77.42779592690039, 34.51371701024558], [-77.42783404196939, 34.513845271941385], [-77.42800197707751, 34.51464866743997], [-77.42800737674582, 34.5146658128265], [-77.42801098033686, 34.514677207456856], [-77.42802866092914, 34.514741412288785], [-77.42840576537247, 34.51558757827492], [-77.42851180660236, 34.516229678534046], [-77.42838648819357, 34.51682165227532], [-77.42797398863203, 34.5172173824162], [-77.42775693389528, 34.517508761888294], [-77.42768613588879, 34.51765040441881], [-77.4274490999186, 34.51800135472463], [-77.42727185644685, 34.518266085099704], [-77.4270092788418, 34.51872765782824], [-77.42634979902601, 34.51967959072477], [-77.42628842983177, 34.519774288626536], [-77.42625597926649, 34.51981596162624], [-77.42623645588085, 34.519886640776676], [-77.42560893903854, 34.520888891132635], [-77.42541691366331, 34.52133688846054], [-77.425402751968, 34.5214083929896], [-77.42540569767081, 34.52148241335782], [-77.42541466333077, 34.521896356697], [-77.42543191797947, 34.52233725431312], [-77.42543371916014, 34.52238329213039], [-77.42543319578895, 34.52242762195865], [-77.42538771425383, 34.52287962931175], [-77.4253428307977, 34.523287033514166], [-77.4253351543704, 34.523376918745925], [-77.42532904817494, 34.52347261460907], [-77.4252994062216, 34.52387177311148], [-77.42526971749254, 34.52424457615065], [-77.4252619995347, 34.52436687137425], [-77.4252538734217, 34.524495646534085], [-77.42523385388196, 34.52472368501928], [-77.42522130393907, 34.52486244298571], [-77.425200907794, 34.52501881792456], [-77.42517816856015, 34.525193160881635], [-77.42515363830658, 34.52536191371961], [-77.42511820680053, 34.52556452566232], [-77.42506990132684, 34.525863706397125], [-77.42503586431914, 34.52611707989346], [-77.42499114002914, 34.526364782504785], [-77.42501021106162, 34.52661243084644], [-77.42499772726623, 34.52685351668559], [-77.42503841494347, 34.52711139329571], [-77.4250907430976, 34.52732975827317], [-77.42509443330152, 34.52751464609548], [-77.42510640780759, 34.52781717972863], [-77.4250414799616, 34.52810595614042], [-77.42504289471205, 34.52831605143416], [-77.42503666209018, 34.52852448503522], [-77.42503384723085, 34.52856220390114], [-77.4250762587134, 34.528619393899305], [-77.42517838287353, 34.52878615171485], [-77.4253589718364, 34.528993804933705], [-77.42556857336132, 34.529087386514064], [-77.42613109280559, 34.529576609861465], [-77.42618047852679, 34.52958966276854], [-77.42621203935393, 34.52961608678303], [-77.42621710871678, 34.529670302119506], [-77.42612681590134, 34.52977015979536], [-77.42603865219485, 34.530080119383], [-77.42600676111644, 34.530135453880725], [-77.42581509435453, 34.53046802052509], [-77.42546443019107, 34.53070354697758], [-77.4252891312218, 34.53120550946525], [-77.4235171115874, 34.53160824050404], [-77.42294646029217, 34.53159203980294], [-77.42164058114568, 34.53125630575584], [-77.42147841615606, 34.53122123893827], [-77.4213851466957, 34.531197615364384], [-77.42096278653818, 34.53086458691544], [-77.4210395021567, 34.5305878483838], [-77.42108169992468, 34.530357713428565], [-77.42135505294536, 34.5293826869104], [-77.42133464115538, 34.52934178432592], [-77.42139555100863, 34.52931343302962], [-77.4214275876401, 34.52928184318607], [-77.4216591332017, 34.52880519654904], [-77.42171439737984, 34.528475289758106], [-77.42171887772446, 34.52830687508492], [-77.42172338317505, 34.528137517312906], [-77.42176344049771, 34.52781074797212], [-77.42179559968933, 34.52759977521184], [-77.42180968122551, 34.527528502981895], [-77.42190238989156, 34.5273009776202], [-77.42225346436858, 34.52676975045969], [-77.42225951874474, 34.52675967003919], [-77.42226123596103, 34.52675485879997], [-77.42297386381695, 34.52616672239788], [-77.4230004907284, 34.526121033704115], [-77.42307135705217, 34.525949522576866], [-77.42320147884558, 34.52564413247576], [-77.42326987489722, 34.52551638481819], [-77.42339513164407, 34.52531973561994], [-77.42353633276765, 34.5251060386167], [-77.42360354310291, 34.52478046823223], [-77.42370054682588, 34.52459261243043], [-77.42370088617638, 34.52447524201129], [-77.42399105114943, 34.52406092607261], [-77.42364946767995, 34.523779622633676], [-77.4235894668151, 34.5236292964109], [-77.42334241877823, 34.52330794608322], [-77.42327877416439, 34.523184524577175], [-77.42323847719328, 34.5231250955985], [-77.42313614424455, 34.52302271754205], [-77.4227130597312, 34.522557299321846], [-77.42247180599115, 34.52232180423027], [-77.42219346516649, 34.52198509389751], [-77.42169842915209, 34.521515860293434], [-77.42164712326259, 34.52146164552962], [-77.42163715335069, 34.5214407210804], [-77.42160189553917, 34.52141398354005], [-77.4210614339452, 34.52091105847636], [-77.42047815424485, 34.520922765860796], [-77.42003938336649, 34.521082535084545], [-77.4191179349053, 34.5214180491491], [-77.4184706759601, 34.52103072528133], [-77.41804208160065, 34.52172493243327], [-77.41729957253672, 34.52209000461944], [-77.41703450961688, 34.52222830847104], [-77.41687281545141, 34.52229144833155], [-77.41648863259091, 34.52245953688674], [-77.41645823416209, 34.52246777944], [-77.41608570393863, 34.522389108177364], [-77.41602989538777, 34.522273485006046], [-77.41604320860804, 34.52224302569515], [-77.41609093664005, 34.52215362149499], [-77.4161454880045, 34.52204445885436], [-77.41622433532451, 34.522000546508394], [-77.41633853730507, 34.52189001348603], [-77.41680411385218, 34.52167192287214], [-77.41688747124877, 34.5216316181641], [-77.4173848021853, 34.52140545006898], [-77.41837472608412, 34.52095525909888], [-77.41847349085303, 34.52090388743492], [-77.41949863513406, 34.520446669099705], [-77.42006068397933, 34.52012193019938], [-77.4205193086033, 34.51966592371796], [-77.4208708320567, 34.51912741693916], [-77.42087123109995, 34.51912319360605], [-77.42084472299948, 34.51863951526004], [-77.4208284942564, 34.518189572954235], [-77.42081119587438, 34.51810532597314], [-77.42061780727032, 34.517692944806804], [-77.4206271635343, 34.51737615955168], [-77.420527694156, 34.51697442007048], [-77.42043446026713, 34.51674007705833], [-77.42043923024211, 34.516552592653085], [-77.4201453074161, 34.516305704999226], [-77.4198378975156, 34.51604237207283], [-77.41974591607061, 34.515860232927324], [-77.41937538898756, 34.5156311296485], [-77.4192162566216, 34.515547544905615], [-77.41891316046762, 34.51549091356296], [-77.41859482434815, 34.51543679906875], [-77.41805582024412, 34.51546108950972], [-77.41709198440215, 34.51530435173528], [-77.41702682426245, 34.51535789258392], [-77.41690724444715, 34.51536563664112], [-77.4165905958721, 34.515336898174816], [-77.41545545042422, 34.5154307984788], [-77.41530854205789, 34.515430510029674], [-77.41390984648453, 34.51570539938137], [-77.41387932563532, 34.51571702835944], [-77.41386772160594, 34.51572321272672], [-77.41385936342516, 34.515731574223594], [-77.41385723426542, 34.51574527237365], [-77.41351169972702, 34.51654328287556], [-77.41306921198395, 34.516825101448134], [-77.41267498937974, 34.517129667831725], [-77.41227292117705, 34.51736243206041], [-77.41177120362295, 34.517326151515036], [-77.4114887564977, 34.517329530058106], [-77.41131855074504, 34.517463385993004], [-77.41069402695055, 34.517770665094595], [-77.4102820929335, 34.51795265702417], [-77.40972831699025, 34.51828711764658], [-77.40910422173744, 34.518667284244216], [-77.40838925870776, 34.51901875392286], [-77.40822306662075, 34.51904895636079], [-77.40752730677839, 34.518984928197305], [-77.40681466879963, 34.51915024813194], [-77.40595307687326, 34.519181791897864], [-77.40503813083768, 34.51937580118723], [-77.4043713957048, 34.519711457013486], [-77.40401777281029, 34.519872885802044], [-77.40401876608581, 34.52009109702612], [-77.40322347994497, 34.52047988641131], [-77.40277462436046, 34.52091440512835], [-77.40252044644161, 34.5211312618844], [-77.4012976474642, 34.52146335332058], [-77.40122108822436, 34.52149267915883], [-77.40119183773734, 34.52149093690393], [-77.40115752892581, 34.521504793179844], [-77.399770221372, 34.52178041449257], [-77.39961334095342, 34.521875075963344], [-77.39928980479476, 34.52175322528494], [-77.39936715506134, 34.52158441631781], [-77.39931556324058, 34.520968603571006], [-77.39939701512135, 34.52075840429724], [-77.39934549679084, 34.52058064658154], [-77.39945235836977, 34.52026074220496], [-77.39916303506638, 34.5201183252239], [-77.3982118676584, 34.51995014684202], [-77.39818865481546, 34.51989068691327], [-77.39808736108698, 34.519917870448054], [-77.39801656643012, 34.519934406207625], [-77.39783227599762, 34.52000494146373], [-77.3965019003428, 34.52061264376364], [-77.3961447902239, 34.52101065925052], [-77.39559250451953, 34.52130757374172], [-77.3949075849726, 34.52170016703666], [-77.39433444371852, 34.52211678825008], [-77.39387314993446, 34.52219409506709], [-77.39332829735868, 34.522117707584215], [-77.39283698375206, 34.522381802699115], [-77.39251207921083, 34.5227314705819], [-77.39212610869731, 34.52302935679489], [-77.39172786445417, 34.523473770522344], [-77.39016234759085, 34.52404985718058], [-77.39015708860329, 34.52405830529938], [-77.3901448196335, 34.52405575190291], [-77.39013525846678, 34.52405967473466], [-77.3885593080662, 34.52474608735502], [-77.38798986667257, 34.52471888199838], [-77.387774563098, 34.52473568401938], [-77.38720061935689, 34.52460697334664], [-77.38699267330041, 34.52459875752513], [-77.38687255702102, 34.524599385632634], [-77.38588391139022, 34.524959855308005], [-77.38540657584298, 34.525313286110006], [-77.38498472134971, 34.525515810309145], [-77.38464258488604, 34.525825451755836], [-77.38420402196554, 34.52612940446221], [-77.3838101507254, 34.52648342484708], [-77.38351221130398, 34.5267862339115], [-77.38323476119507, 34.52700782341721], [-77.38313257409693, 34.52743183997491], [-77.38308792983118, 34.52751866406782], [-77.38309528619493, 34.52757677321329], [-77.38301665936004, 34.528018605211116], [-77.38298915280919, 34.528075297113844], [-77.38286075034279, 34.52845603030988], [-77.38284591084039, 34.528532892192395], [-77.38258047332405, 34.52879029784522], [-77.38254312689357, 34.528798205255185], [-77.38218619682672, 34.5288683649443], [-77.38155269381642, 34.528813115793845], [-77.38130518599675, 34.528815693501855], [-77.38061167635028, 34.52906607408948], [-77.3799492582464, 34.529026511850745], [-77.37940535559633, 34.529288656066925], [-77.37903287701272, 34.52945219979861], [-77.37898000438004, 34.529548387816725], [-77.37893859041654, 34.52958597843431], [-77.37886901633493, 34.5296947873078], [-77.37860797100238, 34.53036077674675], [-77.37865310639194, 34.53060645730263], [-77.37863066867754, 34.5308409324352], [-77.37885525455935, 34.531556633043614], [-77.37886491851228, 34.531629229787924], [-77.3788386442177, 34.53204868821464], [-77.37896919753712, 34.53226230663263], [-77.37918257073537, 34.53235437300438], [-77.38007491452709, 34.532067697094746], [-77.38054335443502, 34.5320835427065], [-77.38085320096624, 34.53205502128977], [-77.38132936925908, 34.53204101718582], [-77.38181484193095, 34.532109214359586], [-77.38199846917404, 34.53215347056618], [-77.38211147658863, 34.532171159777775], [-77.38260181980314, 34.53230343676579], [-77.3828917619519, 34.53238196117528], [-77.3829812580445, 34.532374949484264], [-77.38367613406643, 34.532412124555144], [-77.38429843566907, 34.53234319274497], [-77.38524833907307, 34.53231923845154], [-77.386339996793, 34.532435919877955], [-77.38640698834587, 34.532677844084425], [-77.38681252758333, 34.53258136052992], [-77.38725179328529, 34.532578343385126], [-77.38770490585347, 34.532660647609696], [-77.38773235332502, 34.53272474631148], [-77.38805940747066, 34.532875045362616], [-77.3880683542795, 34.53292111049781], [-77.38816079903654, 34.53302041668613], [-77.38817137698169, 34.53303168409846], [-77.38827981445084, 34.533078295946126], [-77.38837052139385, 34.53311858286693], [-77.3883767666279, 34.53311757241116], [-77.38863951469176, 34.53300489857246], [-77.38876870286263, 34.53286784140243], [-77.38880301988614, 34.53283608860158], [-77.38891384250952, 34.53271082188598], [-77.38893251033407, 34.532551616599946], [-77.3889786489152, 34.532424849728294], [-77.38917226398362, 34.53237830289635], [-77.3899115008494, 34.53195523690077], [-77.38996743616819, 34.53192903122667], [-77.3901134223616, 34.53198340660706], [-77.3904657874507, 34.53201831725519], [-77.39075377827831, 34.53187147156876], [-77.39081101724508, 34.53179093951836], [-77.39106054519638, 34.53156785775451], [-77.39113913705486, 34.5314889244116], [-77.3915030438205, 34.531201425894075], [-77.39155463959803, 34.53116884413754], [-77.3919359495427, 34.530883127212526], [-77.39197509589188, 34.530875177911064], [-77.39234591266046, 34.530891738865336], [-77.39252709460911, 34.53093997685658], [-77.39273570669681, 34.53101280050305], [-77.3927619005495, 34.53101978592057], [-77.3929840980163, 34.531076726168365], [-77.39312720009684, 34.53105835312175], [-77.39324174676659, 34.531021476770725], [-77.39390234588225, 34.530864112558795], [-77.39391668624755, 34.53086041346114], [-77.39392784522596, 34.530858473163704], [-77.39405909087267, 34.53083260002989], [-77.39470524926271, 34.530703367638374], [-77.3953332141493, 34.53054858794796], [-77.39549625567109, 34.530437400589506], [-77.39594025431128, 34.53007145043404], [-77.39610299374732, 34.529929639803754], [-77.39629696053977, 34.529739272427854], [-77.3970776416104, 34.52941030983357], [-77.39711174329251, 34.52939890243653], [-77.3978793683979, 34.529188165257224], [-77.39828785864927, 34.52900551879601], [-77.39916973269894, 34.528805768475536], [-77.39945969141247, 34.52872906402859], [-77.39963564883803, 34.528667614586], [-77.3999438778103, 34.5285142202973], [-77.40025316180423, 34.528351528735776], [-77.4008209595847, 34.528250702184984], [-77.40104282745288, 34.528143527948345], [-77.40133223017916, 34.52813340646752], [-77.4018269993207, 34.52818071351402], [-77.40195601346761, 34.52822373337884], [-77.40182173949083, 34.52841564513084], [-77.4015721593832, 34.52861593917388], [-77.40171103289714, 34.528748776329884], [-77.40157603394, 34.52891456364311], [-77.40128946908177, 34.52929931142775], [-77.4011512246527, 34.52940450294488], [-77.40100908439535, 34.52965004404577], [-77.40087782032316, 34.529848413628336], [-77.40082182639863, 34.530237572853494], [-77.40062625283846, 34.53037440245828], [-77.39993893919063, 34.53080153935083], [-77.39981619880122, 34.530981014781645], [-77.39993821422932, 34.53112114300829], [-77.39998667342508, 34.53132136299118], [-77.40003887704894, 34.53143854310734], [-77.40006490857164, 34.53150809114437], [-77.39999642883407, 34.531822720345545], [-77.3998163135279, 34.531960343950274], [-77.39977932359893, 34.5319806076974], [-77.39942661983316, 34.53204229540317], [-77.39938521685397, 34.532051361207905], [-77.39931109444936, 34.532033272859294], [-77.39908605914424, 34.53187671362376], [-77.39901825367487, 34.53183070799026], [-77.39901580470509, 34.53181988435938], [-77.39877068902203, 34.531621606576394], [-77.39861201950029, 34.53152317058044], [-77.39829518477468, 34.53139992121562], [-77.39782871346647, 34.53144597786065], [-77.39751012675535, 34.53160709009964], [-77.39703436229048, 34.53186093882334], [-77.39702711736005, 34.531868861912606], [-77.39701296987609, 34.53187531188216], [-77.39653445021743, 34.532125935534225], [-77.39623984479303, 34.53228294277086], [-77.3956759534437, 34.532418106241416], [-77.39545071842777, 34.532464577319004], [-77.39530415249762, 34.53252097265272], [-77.39465583686811, 34.53290214121267], [-77.39433418875785, 34.53304259102311], [-77.39348997080099, 34.533363068261814], [-77.39332725452786, 34.533546231450174], [-77.39307900476219, 34.5339120397587], [-77.39328987345655, 34.53422538668892], [-77.39343405626622, 34.53435047536503], [-77.39317586782575, 34.534465889140705], [-77.39329504682243, 34.53461536868327], [-77.39333874015014, 34.534671271509986], [-77.39333786793125, 34.5348540241192], [-77.39335564331309, 34.53504993980113], [-77.39330094132805, 34.53518279558636], [-77.393428367528, 34.53533063350763], [-77.39349271350275, 34.53552044456099], [-77.39352770691218, 34.53563023873957], [-77.39317960783288, 34.535757587570515], [-77.39301943222179, 34.53584990825333], [-77.39295145061902, 34.535846671653175], [-77.39248887900965, 34.535797839195], [-77.39223642713038, 34.535757625215695], [-77.3916483680141, 34.535709678158966], [-77.39145146124604, 34.53575250960558], [-77.39104339421405, 34.53592681860827], [-77.3906653035575, 34.53580030400699], [-77.39020564731048, 34.53600141021428], [-77.39039859435057, 34.53641515566914], [-77.39041683681901, 34.536744478288945], [-77.39051733565032, 34.536808113330345], [-77.39041804215924, 34.53709797944647], [-77.39020191448344, 34.53726515109631], [-77.3898421769726, 34.537489043480534], [-77.38956390493996, 34.537675926838695], [-77.38925215523102, 34.53789183119825], [-77.38904455353833, 34.5380447795373], [-77.38879308426526, 34.53829438940102], [-77.38865033432512, 34.53846831270567], [-77.38864223547743, 34.53847801455076], [-77.38842220271594, 34.538610686140856], [-77.38823951558294, 34.538928888396356], [-77.3882074392593, 34.53900290051509], [-77.38819598369842, 34.53902351772124], [-77.38818654261595, 34.53905612858257], [-77.38795775624183, 34.539547545772855], [-77.38798596535814, 34.5396908964246], [-77.38795373907305, 34.539872831108596], [-77.38787454461945, 34.54004921364867], [-77.38793044915406, 34.54021581045604], [-77.38789613051085, 34.54053576524295], [-77.38796380956883, 34.54067342307692], [-77.38798933811675, 34.54088344153392], [-77.38800635104545, 34.541009532439745], [-77.38801632028621, 34.54111653302231], [-77.38810321082543, 34.541435463487595], [-77.38807638115358, 34.54148909621923], [-77.38802296558924, 34.541893091919256], [-77.38796319450546, 34.54199508678012], [-77.38802490460691, 34.54207578147438], [-77.38816738498838, 34.542128105268894], [-77.38871987329034, 34.54251526166603], [-77.3889428354475, 34.542558167873], [-77.38942018930645, 34.54276425188638], [-77.38950564841872, 34.54288597829297], [-77.3897211449752, 34.54286165576118], [-77.39008316357388, 34.54289485807941], [-77.3901291059567, 34.54289673189127], [-77.39050594331758, 34.542877213832384], [-77.39081357104048, 34.5428612789175], [-77.39109048239429, 34.54338464139059], [-77.39067290985886, 34.54356287092418], [-77.39048917785492, 34.5436217621353], [-77.38995863029044, 34.54382759063708], [-77.38969709333847, 34.543929336116456], [-77.38946428710636, 34.54408387043598], [-77.38911511237866, 34.544277257212116], [-77.38898658417892, 34.544348240100035], [-77.38890193020954, 34.54437324237994], [-77.38876674869346, 34.54441127803574], [-77.38811333377892, 34.544525498213076], [-77.38765288656978, 34.54448817093892], [-77.3874337058933, 34.54445495874593], [-77.38733050779535, 34.54442176977753], [-77.38712576767361, 34.54443672384023], [-77.38720910511596, 34.54462503175689], [-77.38710085819247, 34.54505745634162], [-77.38694839896465, 34.545343780758245], [-77.38651910687975, 34.545584485665586], [-77.38601850781077, 34.5455265642811], [-77.38573597391768, 34.54549396262374], [-77.38521836474126, 34.54549584314833], [-77.38494972768603, 34.545541356133825], [-77.38464488382462, 34.54560092630117], [-77.38416285967975, 34.54561621230361], [-77.38368906463567, 34.54574549902222], [-77.38337263124127, 34.54583966826322], [-77.38317075491041, 34.54575136850258], [-77.3829945199484, 34.54564964049563], [-77.38279027791481, 34.54555659333268], [-77.38260074086244, 34.54525190396859], [-77.38258140815498, 34.545231885676884], [-77.3825639888416, 34.545222058625725], [-77.38251874223235, 34.54517638036655], [-77.38213749469875, 34.544793892518626], [-77.38207934299999, 34.544646317934486], [-77.38227746454501, 34.54428404869158], [-77.38236058112372, 34.544106132989114], [-77.3824718372887, 34.54376636027882], [-77.38256690121901, 34.54331145813603], [-77.38260426287225, 34.5432313064972], [-77.38264772524788, 34.54317400645924], [-77.38286369556964, 34.54286080626997], [-77.38298452842346, 34.54271310842471], [-77.38314765624563, 34.54250223420203], [-77.38329748071583, 34.542178318734884], [-77.38335512871167, 34.5421064671772], [-77.38346208123582, 34.541882081584234], [-77.3835368773111, 34.54169819017271], [-77.38357829775403, 34.54164816174539], [-77.38366193387476, 34.54151661114544], [-77.38395865957978, 34.54110364816354], [-77.38392651306728, 34.54089434942293], [-77.38391236277398, 34.54084413016544], [-77.38371552499852, 34.54064904737596], [-77.3836441633457, 34.54056435458196], [-77.38349513405069, 34.540419738638306], [-77.38311471218259, 34.5402460247104], [-77.38290501244997, 34.54015832862001], [-77.38271755064909, 34.54008602139655], [-77.38231111217266, 34.53987224103473], [-77.38219909651963, 34.53972713976044], [-77.3820676982029, 34.53949368925926], [-77.38202268099492, 34.53942417005522], [-77.38194922795158, 34.53934319188511], [-77.38170180925442, 34.53913798081129], [-77.38136281367203, 34.53915086980855], [-77.38116682121537, 34.539223292634176], [-77.38076548904954, 34.53935702838217], [-77.38037554704428, 34.53949513615892], [-77.37980116332614, 34.53961139785221], [-77.3788026882088, 34.539610473917826], [-77.3785187706092, 34.53961668272365], [-77.37835949128119, 34.53946266244031], [-77.378022831184, 34.53937811119897], [-77.37770881412128, 34.53926425914663], [-77.37755795903176, 34.5392869952355], [-77.37723434282277, 34.53952652427118], [-77.3771316955646, 34.53957634554132], [-77.37691346308648, 34.539671117268966], [-77.37684711146196, 34.5399166662565], [-77.37669249845393, 34.54019262772566], [-77.3767526326846, 34.54038533910505], [-77.37681804465785, 34.5406641888366], [-77.37709324466188, 34.54069597607258], [-77.37719920698963, 34.54107585822745], [-77.37721217190442, 34.54109703465061], [-77.3775219237354, 34.541337081228825], [-77.37780938812755, 34.541500602276166], [-77.37747365122749, 34.54172940191994], [-77.37742275872804, 34.54189499164473], [-77.37755649922889, 34.54202671611261], [-77.37717391370529, 34.54219119119535], [-77.37704481233843, 34.54218113288293], [-77.37647025813462, 34.54223473626297], [-77.37638760134685, 34.54224244763621], [-77.37620899911954, 34.54233108567557], [-77.37592072357977, 34.54246413480066], [-77.37579690646288, 34.54264306967173], [-77.37573067522982, 34.54277955797742], [-77.37569734614992, 34.542852172949466], [-77.3755855568703, 34.5429867978738], [-77.37524771326514, 34.543626851453155], [-77.37507537758154, 34.54385332311619], [-77.37494284793593, 34.54397525754752], [-77.37483764758557, 34.544132416013895], [-77.37480987275292, 34.54415892461099], [-77.37477016217443, 34.544318486842556], [-77.37475458414384, 34.54438037777247], [-77.374747119988, 34.54439029209687], [-77.37474945483254, 34.5444016911529], [-77.37462117844925, 34.5448121806484], [-77.37459018724712, 34.544902567112814], [-77.3744528594755, 34.54510904314392], [-77.37439912878983, 34.545200868843686], [-77.37429550184618, 34.54522816700339], [-77.37396320936209, 34.545277420855186], [-77.37357484451502, 34.545296633915775], [-77.37357016591501, 34.54529737729737], [-77.37355257315072, 34.54530776048551], [-77.37317335357578, 34.54548317501519], [-77.37303126983832, 34.545528932527816], [-77.37302802511115, 34.54561735824109], [-77.37286568786143, 34.54582773447452], [-77.37255549893706, 34.546175108927784], [-77.3724964718584, 34.546262197052855], [-77.37235827915418, 34.5467980611053], [-77.37162080551974, 34.54630979761896], [-77.37127936569348, 34.54606293671298], [-77.37127812372994, 34.54566957603811], [-77.37130162296742, 34.54537648257561], [-77.37138803703822, 34.54522634037514], [-77.3714103664056, 34.54499816028546], [-77.37121161376177, 34.54489979747445], [-77.3708347267808, 34.54473942527759], [-77.37020135242331, 34.54494774289687], [-77.36994352329539, 34.54502038516101], [-77.3692531518204, 34.545232192599], [-77.36864643365304, 34.54538283094529], [-77.36767606057198, 34.54552733346988], [-77.3669473150254, 34.54554970251991], [-77.3668850074423, 34.545784674811145], [-77.36672711283015, 34.54603556160894], [-77.36618149040468, 34.54617058093811], [-77.36608931605754, 34.54624514133542], [-77.3657807549764, 34.54647235036213], [-77.36579056947369, 34.54666012510838], [-77.36568569725523, 34.546728284579274], [-77.36542961545183, 34.54679824706523], [-77.36529028708028, 34.54685148172728], [-77.36506907113963, 34.54690129454826], [-77.36489552736649, 34.54694612272402], [-77.36469921374311, 34.54693963946537], [-77.36450349739441, 34.54692113839287], [-77.36444269151635, 34.546892601015884], [-77.36438710117142, 34.5468622833393], [-77.36425186903212, 34.54672201109609], [-77.36417110524818, 34.546648568995955], [-77.36415478396555, 34.546627729428536], [-77.36403147307526, 34.54642385485895], [-77.36395890205935, 34.546293207717255], [-77.36387073859632, 34.546202181087395], [-77.36384682313505, 34.54613664807721], [-77.36373695275111, 34.54610421146744], [-77.36367739677078, 34.5462300284637], [-77.36361133641253, 34.546410393921605], [-77.36358988835795, 34.546487457441174], [-77.36352509651849, 34.546621535579874], [-77.36349057681187, 34.546746586344696], [-77.36342367169132, 34.54681581995331], [-77.36332602679528, 34.54690666572246], [-77.36315575368107, 34.54703963495568], [-77.36309444526123, 34.54715237626377], [-77.36292253803961, 34.547383254828304], [-77.36279373499576, 34.54750280649481], [-77.36255791502558, 34.54761538649006], [-77.36224428506783, 34.54773222387429], [-77.36212248430687, 34.548032896864676], [-77.36208395301125, 34.54815095017596], [-77.3620837920213, 34.54817331849943], [-77.36208535423314, 34.54819395187383], [-77.36211259450013, 34.54846560941944], [-77.36213147326589, 34.54864181724013], [-77.36216093942406, 34.54865185746231], [-77.36213409951671, 34.548672075691755], [-77.36217122346332, 34.549094502813084], [-77.36218387355237, 34.54913820412633], [-77.36224372988579, 34.549222139331825], [-77.36237784237454, 34.54942090125374], [-77.3626665670786, 34.54955833764465], [-77.36270231297276, 34.54965810900349], [-77.36286437076146, 34.54992932555937], [-77.36293376942982, 34.550009505596655], [-77.36285766835661, 34.5502227031867], [-77.36277005724345, 34.55047164753427], [-77.36274786159638, 34.55052592952489], [-77.3627385484708, 34.550596228677264], [-77.3625608392463, 34.55104251320154], [-77.36245331838785, 34.55131101229111], [-77.36242276049268, 34.55155204806407], [-77.36232402194892, 34.551744840148395], [-77.36229395879755, 34.551898235356944], [-77.3622576668751, 34.55206547359647], [-77.36225087362705, 34.55217222708309], [-77.36224744895269, 34.55218935759691], [-77.36225794074544, 34.552209420678125], [-77.36229911395287, 34.552304329490795], [-77.36233763522296, 34.552347952154385], [-77.36278143114966, 34.55247969422086], [-77.36279604110194, 34.552483807862195], [-77.36280595897452, 34.552486146169485], [-77.3628391314535, 34.552492154888654], [-77.36358738053809, 34.55265394788067], [-77.3638184310771, 34.552675614303105], [-77.36434734826527, 34.55272912050016], [-77.36437086687941, 34.55273141372458], [-77.3643812197273, 34.55273246929801], [-77.36443172517829, 34.55273166560346], [-77.36476338674618, 34.552736130647716], [-77.3650960656611, 34.55267424119611], [-77.36515751549078, 34.552670332696124], [-77.3652455222668, 34.55266931490295], [-77.36594976064387, 34.55236380336069], [-77.36654052932332, 34.55230582106387], [-77.36689006991875, 34.5522820393453], [-77.36698037458167, 34.55236455782426], [-77.36751418945465, 34.5526302506007], [-77.36762239932888, 34.552693352132145], [-77.36763977937817, 34.55275922096775], [-77.36770469797736, 34.5528720986251], [-77.36797349063158, 34.55320079997533], [-77.36811670973663, 34.55328481440131], [-77.3682831319489, 34.55334624255826], [-77.36852756428969, 34.55345664780812], [-77.36867147532111, 34.553534434574715], [-77.36873148660908, 34.55358125577789], [-77.36890608748757, 34.55372635880431], [-77.3690639630162, 34.553935994028066], [-77.36979446119932, 34.5542772320351], [-77.36982587197392, 34.55430045400836], [-77.3698516093641, 34.554316311978866], [-77.3702415552379, 34.55464150003082], [-77.37025129655785, 34.55464234943188], [-77.37063930004989, 34.55460268887768], [-77.37097402668024, 34.554595624967945], [-77.37142715249706, 34.55448448968272], [-77.37174230822185, 34.55433620751663], [-77.371821124711, 34.55430260999435], [-77.37196843907938, 34.55422981074235], [-77.37221509001526, 34.55413455123136], [-77.37248462429787, 34.553889622333216], [-77.37274019682576, 34.55356942516181], [-77.37339662846068, 34.55290907999417], [-77.37350851422126, 34.55271476573185], [-77.3738060123188, 34.552198078122004], [-77.37527643157671, 34.55263817817227], [-77.37532458511669, 34.552676730207445], [-77.37536676914722, 34.552742924635105], [-77.3760972410511, 34.55421812644663], [-77.3763780340337, 34.554785180274024], [-77.37682338270812, 34.555684521010996], [-77.37688217487113, 34.55580324756933], [-77.37672998375545, 34.556052919067135], [-77.3762905434927, 34.5568856850086], [-77.37615319716541, 34.55685545841781], [-77.3760773503672, 34.55685011844358], [-77.37581445085527, 34.55680625818535], [-77.3757593036316, 34.55679705781838], [-77.37546595114512, 34.55674811613928], [-77.37536541310745, 34.55673134265866], [-77.37528209102629, 34.55679319792441], [-77.37525876989666, 34.556886341389855], [-77.37523909811273, 34.55702521145788], [-77.3751831996691, 34.55732179400344], [-77.3753651370278, 34.55754742156654], [-77.37543549542822, 34.55763413255141], [-77.37545980116589, 34.55770649335301], [-77.37557465333448, 34.55791589003729], [-77.37568463225956, 34.55809865332623], [-77.37571139163661, 34.558145951043045], [-77.37575881885174, 34.55825165763824], [-77.3758687527318, 34.55849668019695], [-77.37575864798697, 34.55876541170795], [-77.37571568936383, 34.55889704852878], [-77.37566277379439, 34.55895092727121], [-77.37536457560975, 34.559211412295426], [-77.37524465213966, 34.55930653005548], [-77.37503952629325, 34.5594653071797], [-77.37497054698223, 34.559517030432154], [-77.37472685430649, 34.55967233987148], [-77.37457650279649, 34.55985945765737], [-77.37421212135017, 34.560041015008004], [-77.37418248884262, 34.56010607057726], [-77.3739284537616, 34.56032368524614], [-77.37378843502051, 34.56045852560385], [-77.37373646802523, 34.56044619293742], [-77.37374206478889, 34.56050139902349], [-77.37378839371459, 34.56057499444262], [-77.37393799491582, 34.56116083087471], [-77.37393953970984, 34.56132206499737], [-77.37418198064657, 34.561558874729215], [-77.37422876582346, 34.561654490325566], [-77.37429021626053, 34.561696093603175], [-77.37445663318516, 34.56180057881697], [-77.37457581713156, 34.56184635011027], [-77.37474082428967, 34.5618778745618], [-77.37481713410241, 34.56188025239604], [-77.3749697412494, 34.561883655614665], [-77.37528067459478, 34.56188847009261], [-77.37536367671999, 34.56188787709803], [-77.3754284200767, 34.56188685679146], [-77.37575761342273, 34.56188824799766], [-77.37588784879588, 34.561890423904515], [-77.37611130248703, 34.56190159257733], [-77.37615154768238, 34.561895929432644], [-77.37619652026174, 34.561894407847824], [-77.37648946744085, 34.5618641033012], [-77.37654549628445, 34.56185887808821], [-77.37685023693301, 34.56184785949586], [-77.37693943406038, 34.561854741996115], [-77.37707472106611, 34.56186518040364], [-77.37733339691276, 34.56176966969471], [-77.37749326913314, 34.5616590486357], [-77.37762112697921, 34.56152607657112], [-77.3777274548905, 34.561371866681064], [-77.37801189960247, 34.56104162456262], [-77.37830028495388, 34.560693605257256], [-77.37836773486153, 34.56052454567076], [-77.37851562356853, 34.56036172499841], [-77.37880742094782, 34.5600857823711], [-77.37908305229712, 34.55996934451007], [-77.37930357905104, 34.56002412672382], [-77.37997324532434, 34.56032516946401], [-77.38009137318382, 34.5602398835021], [-77.38038608206075, 34.56007536765185], [-77.38018052498083, 34.56042257954847], [-77.38064506048549, 34.56060788654246], [-77.38087909765582, 34.56072810386148], [-77.38107012523952, 34.56093752345466], [-77.38123543643214, 34.56111963580845], [-77.38145070081336, 34.56132150979854], [-77.38156549635187, 34.56181213667023], [-77.38157626049701, 34.56191963218939], [-77.38154377728563, 34.56205670077666], [-77.38142841115732, 34.5623655113625], [-77.38141586053578, 34.56252176854858], [-77.3814424542205, 34.562604919355806], [-77.38158605109054, 34.56276735075523], [-77.38162941488645, 34.56280098136117], [-77.38166641413088, 34.56282467738998], [-77.38183154734168, 34.56290995324886], [-77.38206030018513, 34.56303723952146], [-77.38211292773074, 34.56305923446085], [-77.38217461752613, 34.56310706587019], [-77.38245418275466, 34.56327169777373], [-77.38257870826382, 34.5633391502694], [-77.38279364832009, 34.563442386050994], [-77.38296655024669, 34.563714274547436], [-77.38324194157795, 34.563794477377925], [-77.3837774053815, 34.56387765842831], [-77.384029815057, 34.56385987066762], [-77.38430761930162, 34.56377385862247], [-77.38466782405173, 34.5640213027514], [-77.38476233493355, 34.56406729907427], [-77.38481763318696, 34.56418101614575], [-77.38502592082763, 34.563969669578654], [-77.385254613691, 34.563558363386235], [-77.38525878944236, 34.5635115258861], [-77.38560571893606, 34.56325980262673], [-77.38569563357001, 34.56312084201324], [-77.3859888408157, 34.56299340905126], [-77.38599971292514, 34.563004677488934], [-77.38605346907292, 34.56297236983142], [-77.38634625316084, 34.562879037769875], [-77.38639367989525, 34.56287131751597], [-77.3864399195607, 34.56286680942547], [-77.38678763884167, 34.562771827492746], [-77.38686327800015, 34.56277407269586], [-77.38698461345177, 34.56274504857748], [-77.38715261946078, 34.562782660912944], [-77.38718157489711, 34.562785882056055], [-77.38720323620855, 34.562783223904596], [-77.3872374032144, 34.5628016417524], [-77.3874765786753, 34.56287375949265], [-77.38757546084031, 34.56306714698738], [-77.3876584657744, 34.56307602733924], [-77.38768341912086, 34.563278283276006], [-77.38732878888395, 34.563637598558735], [-77.38725741133024, 34.56372981934124], [-77.387260348047, 34.564411371287235], [-77.38726797158617, 34.56449550480207], [-77.38726064561087, 34.56458214951255], [-77.38718120838098, 34.56469538069916], [-77.3869433942839, 34.564798586983436], [-77.38673007038643, 34.564936056119606], [-77.38639324728767, 34.56502123071755], [-77.38590472862639, 34.56521852571691], [-77.3856053056999, 34.5652233894501], [-77.38529837345659, 34.56529788163233], [-77.38533391178049, 34.56562352751326], [-77.3853939167124, 34.56584254912248], [-77.385233935171, 34.5664870765044], [-77.38515502701327, 34.566862692696176], [-77.38495856153887, 34.567375915115505], [-77.38490140276885, 34.56747521050013], [-77.38497859049275, 34.56804778896215], [-77.38501693902818, 34.568216631435774], [-77.38521066417391, 34.568461729953135], [-77.38527712954303, 34.568532038360246], [-77.38560459897411, 34.568612130425755], [-77.38597068769899, 34.56853373986925], [-77.38599858105175, 34.568535341355926], [-77.38602172134887, 34.56852125567801], [-77.38639260727065, 34.56823219750433], [-77.38653895807097, 34.56815487363354], [-77.38691744380256, 34.56794259368105], [-77.38718062508407, 34.567762881973216], [-77.38737299508264, 34.567669606216185], [-77.38765322916737, 34.567496621945565], [-77.38796859996494, 34.56748206686457], [-77.38829131162579, 34.56739670626438], [-77.38836257961559, 34.56737427412714], [-77.38840722680075, 34.56735130093916], [-77.38845424422176, 34.56729640883308], [-77.38862960983866, 34.56713428237564], [-77.38875660903486, 34.566968506929086], [-77.38881806317923, 34.56688558565032], [-77.38894562931512, 34.56680097420369], [-77.38890786493369, 34.5666434709962], [-77.38893119059341, 34.566141915094434], [-77.38888055794382, 34.565961221713806], [-77.38894315603193, 34.565751373110004], [-77.3890352209167, 34.565389752641764], [-77.38945164101216, 34.565029721127445], [-77.38948487351759, 34.564960289098906], [-77.38954488786764, 34.56473248003829], [-77.38969858682032, 34.56431053839447], [-77.38992665353825, 34.564112072555105], [-77.39033298836713, 34.56339687942136], [-77.39062030116789, 34.56370232469182], [-77.3907769291071, 34.56361878755061], [-77.3908412666158, 34.56355558487675], [-77.39082034533027, 34.56345791326833], [-77.39048847641031, 34.563181900481226], [-77.39045903944032, 34.56305035071318], [-77.39049854979856, 34.56233130836222], [-77.39087028328365, 34.56200739585341], [-77.39112110261914, 34.561802260535245], [-77.39149069531582, 34.561789862147194], [-77.39190896508462, 34.561831577033836], [-77.39228644560802, 34.56207341311887], [-77.3925238708429, 34.56222552112303], [-77.39269676749228, 34.56233628712215], [-77.39276271748997, 34.56242927997772], [-77.39294306280868, 34.56256235547631], [-77.3929945575981, 34.562608120846534], [-77.392963519651, 34.562687856364654], [-77.39295281220421, 34.56282642826705], [-77.39291371148627, 34.563065981056276], [-77.39291742952972, 34.563256103297704], [-77.39288700330745, 34.563479879661756], [-77.39286256439755, 34.56368858845923], [-77.39282309697923, 34.56383063581775], [-77.39276233272119, 34.56455218910221], [-77.39274337324548, 34.56460546108846], [-77.39269646363834, 34.564748048117124], [-77.39253837219972, 34.565263326609355], [-77.39242046018182, 34.56545064563389], [-77.39228487499973, 34.56587591929713], [-77.3922523217257, 34.56595339794349], [-77.3920873004989, 34.56634784446115], [-77.39207031795691, 34.56652486835615], [-77.39204599708901, 34.566778372620554], [-77.39203292870548, 34.56691459278788], [-77.39199092478006, 34.56712179006398], [-77.39198014331409, 34.56721244205272], [-77.39201262835081, 34.567320270998245], [-77.39190821757066, 34.567381757996046], [-77.39175805531414, 34.567669046672066], [-77.39190815422393, 34.56785985997502], [-77.39204231494541, 34.56762804434936], [-77.39214754123667, 34.567446224004314], [-77.39227860859683, 34.56719481549498], [-77.39228942779438, 34.567167829314556], [-77.39228639687602, 34.56715122827991], [-77.39230220615435, 34.56715473966291], [-77.39246910439309, 34.56689717223908], [-77.39261469565983, 34.56669633942912], [-77.39265748985314, 34.56664841882916], [-77.39269623037124, 34.56662208435845], [-77.3929696530336, 34.566515222128714], [-77.39317215143366, 34.56652760184485], [-77.39344638863064, 34.56657636498957], [-77.39347481500349, 34.56658232089039], [-77.3934841452558, 34.566592473238344], [-77.39366068692124, 34.566779737212606], [-77.39382637724368, 34.5669461195977], [-77.3938780564678, 34.56699698437416], [-77.39403598799647, 34.56717022804565], [-77.39413071623991, 34.5671745293691], [-77.39427200627392, 34.567068988126955], [-77.39439476762377, 34.56699641488014], [-77.39460398413252, 34.56683393908726], [-77.3948754067829, 34.566595878810574], [-77.39505997201579, 34.56653774901133], [-77.39527075664981, 34.56651058063062], [-77.3956703857615, 34.56648879302676], [-77.39584792198448, 34.56607217782462], [-77.39600806138219, 34.56578222485281], [-77.3958960819205, 34.565746508194096], [-77.39590095889659, 34.565005593163825], [-77.3960043756984, 34.56493361181652], [-77.39663597290463, 34.56419360299282], [-77.39718330802438, 34.56476350863427], [-77.39715944747523, 34.565051853553626], [-77.39742372887261, 34.56611739887372], [-77.39758404923556, 34.566231183601126], [-77.39899954111186, 34.566058632173345], [-77.40047510123463, 34.565878738439864], [-77.40057535399993, 34.56586651590063], [-77.4007026642962, 34.56581673101221], [-77.40372695412195, 34.565470502580425], [-77.4056044436744, 34.56387328015005], [-77.4068784729004, 34.56401129171987], [-77.40776426428755, 34.56397990849455], [-77.40845421622018, 34.56372155384525], [-77.40947204450765, 34.564086663462604], [-77.4100300178756, 34.5642819753542], [-77.41028322862132, 34.56429798086205], [-77.41071646547347, 34.564508327329904], [-77.41127918455832, 34.56477911733782], [-77.41160583820063, 34.56483059410112], [-77.41205608624949, 34.564800139195725], [-77.41239371983161, 34.56478207124032], [-77.41282759422171, 34.564584968790946], [-77.41318158931772, 34.56464032231573], [-77.4137263150015, 34.564660739973846], [-77.41396946343073, 34.564559563371695], [-77.41409578963207, 34.56473332281038], [-77.41458456307532, 34.565461661504], [-77.41468159459123, 34.5656340041291], [-77.41466650629683, 34.56573426412673], [-77.41475750852801, 34.56571670734221], [-77.41499878159422, 34.56584820524726], [-77.41518297716172, 34.565952231341065], [-77.41554539291597, 34.565650384693285], [-77.41562544584134, 34.565583961996005], [-77.41584136833598, 34.56546648380241], [-77.41593929833512, 34.5653823889937], [-77.41601100684659, 34.56536469144033], [-77.41617442529292, 34.5652472270093], [-77.41633319074418, 34.565048203486626], [-77.41644013796669, 34.56495540834178], [-77.41633315269006, 34.56480772563986], [-77.41619980662873, 34.56470924207531], [-77.41588389561088, 34.56461117469929], [-77.41633301108504, 34.563910416661216], [-77.41637504525646, 34.563736395338], [-77.41650457930406, 34.56367234982228], [-77.41676145783073, 34.563247967898], [-77.41712078202467, 34.56327656551534], [-77.41756092573132, 34.563144992500405], [-77.41790863774905, 34.56319364736172], [-77.41820817584559, 34.56310338280646], [-77.41839047385477, 34.56307008750441], [-77.41848482694911, 34.562765171854494], [-77.41863313374283, 34.562515680924776], [-77.41864173970752, 34.562455555753424], [-77.41869632551506, 34.56221255879838], [-77.41878947043114, 34.561744411892676], [-77.4190175479676, 34.56161097257352], [-77.41927208315434, 34.561345767341365], [-77.41948402589793, 34.561390324155155], [-77.41958472530578, 34.56142049452619], [-77.41965852904796, 34.56151836256762], [-77.4200546810431, 34.5616952902713], [-77.42027196410741, 34.56181716095931], [-77.42069753948209, 34.5617586954816], [-77.42105988367373, 34.56211954359451], [-77.4210970686667, 34.56211959918312], [-77.42117460072332, 34.56214847504975], [-77.42145383583929, 34.562226199553976], [-77.4217111558622, 34.56207094332487], [-77.4218009703105, 34.562007580533034], [-77.42184771210452, 34.56198720756323], [-77.42192298526162, 34.56195919439981], [-77.4226354695183, 34.561559902233654], [-77.42301906081069, 34.561446242968415], [-77.42380053898995, 34.561362372162996], [-77.42387655008818, 34.56175802015346], [-77.42393268288224, 34.56205020481359], [-77.42399085514073, 34.562352996738], [-77.42403019839229, 34.5625849891819], [-77.42342375253381, 34.56334564715298], [-77.42330583511153, 34.56341173576816], [-77.42302986506651, 34.563543296094686], [-77.42298865804031, 34.56358468176307], [-77.42287342707529, 34.563857229937554], [-77.42291192830663, 34.564147622888086], [-77.4230300060904, 34.56413648673902], [-77.42323546718137, 34.564195032069435], [-77.42342396252263, 34.56421206140903], [-77.42358306544978, 34.564176464649506], [-77.42408372812353, 34.564137543340095], [-77.42421181229325, 34.56410541112609], [-77.42441557602984, 34.56400799852524], [-77.42473438220473, 34.56389567913961], [-77.42499962181964, 34.56385348892751], [-77.42543333654109, 34.5640805497754], [-77.42570802791495, 34.56412657747991], [-77.42578756948016, 34.56413057078939], [-77.42590124474614, 34.564135440484286], [-77.42642244869836, 34.56410248007283], [-77.4265754566944, 34.56417426344834], [-77.42666976726949, 34.56422479710504], [-77.4268905701575, 34.564209547265854], [-77.42696930975936, 34.563877879443424], [-77.42697467387687, 34.5638577701564], [-77.42696929730923, 34.563834183708806], [-77.42686391869702, 34.563562685137455], [-77.42682841028679, 34.56330263502753], [-77.42677268820603, 34.56303778820628], [-77.42689070515058, 34.56268049330986], [-77.4268737057111, 34.562174009503266], [-77.4268849678292, 34.56165756433097], [-77.42736259033178, 34.561607615061405], [-77.42888126687075, 34.56182227497263], [-77.42893835925314, 34.561830344936574], [-77.42901226700869, 34.561864871341484], [-77.42934173552476, 34.56225186965878], [-77.43027553362754, 34.563380603454505], [-77.43039338706673, 34.56349421741285], [-77.43051463617758, 34.56358543758831], [-77.43187082321239, 34.564848322788166], [-77.4319961982232, 34.564932199256546], [-77.43209086948569, 34.56502132788833], [-77.43322270336151, 34.565872416324424], [-77.43370643461462, 34.566238857666654], [-77.43377790643147, 34.566390332044385], [-77.43397467042207, 34.5679408587996], [-77.43366790686082, 34.56849420510255], [-77.43339562164616, 34.56942912634147], [-77.4333016169764, 34.56973654716772], [-77.43288052612431, 34.569975157725494], [-77.43260956346897, 34.57012869596], [-77.432432892287, 34.570228804963214], [-77.43229561177637, 34.57030659273217], [-77.43209275302212, 34.57041553296989], [-77.43182912002652, 34.570514464498515], [-77.43152223312555, 34.57060875502791], [-77.43130489824142, 34.57064167468531], [-77.43107030046151, 34.57065549315189], [-77.43051703309146, 34.570850489091995], [-77.43041306516002, 34.5708912837011], [-77.43010877879058, 34.57104733547081], [-77.4298358161442, 34.57120168651305], [-77.42972922340455, 34.571243795736606], [-77.42956663266422, 34.571300953140366], [-77.42894136833328, 34.5715168908511], [-77.42866297609649, 34.57155637415071], [-77.42840826916392, 34.57129315089171], [-77.42857893519263, 34.57080966377966], [-77.42865311872163, 34.570408579711426], [-77.42885428006697, 34.57028606049834], [-77.42894096471474, 34.57023068815279], [-77.42923306264812, 34.569900158329744], [-77.4292498943409, 34.56980622374892], [-77.42918748795312, 34.56948215627632], [-77.42911129685737, 34.5693092845739], [-77.42902735523188, 34.56908071509475], [-77.42894053108685, 34.56884429640739], [-77.42889409916191, 34.568725390093086], [-77.42887928666497, 34.56867752949927], [-77.42887241201086, 34.56860518792958], [-77.42879459950511, 34.56799758634027], [-77.42851994300358, 34.56788029418115], [-77.42832435934416, 34.5677230965609], [-77.42815227313179, 34.56772175974744], [-77.42743660236073, 34.56726570918623], [-77.42736421943574, 34.56722438743795], [-77.42735102313407, 34.567214300142716], [-77.42726919064314, 34.5672119088554], [-77.42731795097195, 34.56715501610732], [-77.4270903830576, 34.56681316545132], [-77.42705311483701, 34.56672910782459], [-77.42697008898881, 34.566602677349465], [-77.42686624584435, 34.566420973754724], [-77.42686978569847, 34.566312447056845], [-77.42692135868828, 34.56604076617106], [-77.42665241718338, 34.566027291885405], [-77.42657597854395, 34.566030452465185], [-77.4265526095941, 34.566041717923774], [-77.42626412799981, 34.56617185285378], [-77.42618210455922, 34.56629165710601], [-77.42598011508211, 34.56654905128672], [-77.4261822598413, 34.56685121530447], [-77.42622286430947, 34.56689480496748], [-77.42623799597007, 34.56693636724025], [-77.42628463206213, 34.567039903449995], [-77.42642972570363, 34.567333243880974], [-77.42637029221946, 34.567544280739256], [-77.42635627646058, 34.567556154076435], [-77.42618248064251, 34.56764543522336], [-77.4260549551096, 34.567674548101884], [-77.42592936629651, 34.56767836841659], [-77.425788516659, 34.56760930763173], [-77.42566701543228, 34.56757441788261], [-77.42519742103761, 34.567511347831754], [-77.42508500249885, 34.56743658922011], [-77.42500056814292, 34.56745629279157], [-77.42496030179318, 34.5675022068216], [-77.42487874136634, 34.56755740465042], [-77.42460667801429, 34.56770047530366], [-77.42432558619745, 34.56775896826245], [-77.42421274828104, 34.5677983032848], [-77.42412257460239, 34.56776385964564], [-77.42397358945954, 34.567688214888406], [-77.42387842145011, 34.56763765969926], [-77.42381873870457, 34.5675809993316], [-77.4236649552015, 34.56747394143201], [-77.42349032625373, 34.56733346530518], [-77.42342471389294, 34.56729325060976], [-77.42305074810218, 34.567396987930266], [-77.42303297809651, 34.56740191729302], [-77.42303078742388, 34.567403649854384], [-77.42300909866182, 34.56742638749675], [-77.4226369210895, 34.56777368900263], [-77.42258116735307, 34.56782932746264], [-77.42253341704344, 34.567896330226596], [-77.42184922366839, 34.568714842898714], [-77.42181540310322, 34.56881277999024], [-77.42176082068688, 34.56885714049587], [-77.42145533803605, 34.5690491433129], [-77.42122980610173, 34.56911537352697], [-77.42106140344961, 34.56917322653683], [-77.42086144293737, 34.5692026008343], [-77.42066742910279, 34.56911710749662], [-77.42051819574708, 34.569036684903274], [-77.42036629865648, 34.568958547472775], [-77.42027338145924, 34.568706661043144], [-77.42000511827182, 34.56882167217741], [-77.41963213228583, 34.56900669364869], [-77.41948554701555, 34.56914021546082], [-77.4194607874555, 34.56916276837251], [-77.41909160429131, 34.569241901494216], [-77.41909067915104, 34.56924193063772], [-77.41874681703996, 34.56923960641191], [-77.41869763245883, 34.56919555572396], [-77.41850581929549, 34.56890283687174], [-77.41843247950271, 34.568774524966734], [-77.41830355032158, 34.5685503589398], [-77.4182887025176, 34.56852561580824], [-77.4182590690041, 34.56851389972408], [-77.41805022375249, 34.56839247333634], [-77.41790954912675, 34.56832056267403], [-77.41776018161178, 34.568424970834315], [-77.41770128988563, 34.568594477415274], [-77.41751568523523, 34.568863458856555], [-77.41745332635189, 34.568987652111744], [-77.41737604041442, 34.56906604583237], [-77.41712180187025, 34.569321407063995], [-77.41699951595781, 34.56941321249623], [-77.41685682321874, 34.56956563153908], [-77.41669546761516, 34.56997851907332], [-77.41643854035067, 34.57036260030286], [-77.41635970177856, 34.570486606629906], [-77.41643474512455, 34.57058425458579], [-77.41686691157992, 34.571262507135195], [-77.417031430257, 34.5713365083798], [-77.41712215411054, 34.571372715918876], [-77.41747922862129, 34.57163845712526], [-77.41757523091391, 34.571648415391614], [-77.41791010312446, 34.571384948189696], [-77.4180064707349, 34.57120178466805], [-77.41854393275753, 34.571020251013884], [-77.41867753450747, 34.57097892510311], [-77.41869797137556, 34.57097561642484], [-77.418717065304, 34.57097466210146], [-77.41881003564012, 34.57098180882778], [-77.41909194865556, 34.571006451947525], [-77.4193552784811, 34.57104383886817], [-77.4194859355145, 34.57108396587391], [-77.4196812678992, 34.57107001354782], [-77.419682918658, 34.57107092412404], [-77.41969320690502, 34.57107759606991], [-77.41979027028233, 34.57114910303075], [-77.41979941844366, 34.571176694071404], [-77.41981113958502, 34.57126176401843], [-77.4198279539406, 34.571315375848], [-77.41988000663731, 34.57156834758379], [-77.41990159805485, 34.57167327987383], [-77.41995926620788, 34.57200421184557], [-77.41998498750183, 34.572198813541604], [-77.4198827793961, 34.572525168230946], [-77.41988020457842, 34.572529198242876], [-77.41969912156532, 34.57278107983463], [-77.4194863524223, 34.57315434260877], [-77.41938284721374, 34.57333497819315], [-77.41932368142615, 34.57345510990775], [-77.41936863526531, 34.57357556740969], [-77.41948648428405, 34.573805949859505], [-77.41959952437978, 34.57414268252571], [-77.41961893956335, 34.574261623679725], [-77.4197142066912, 34.574493117418314], [-77.41979726325074, 34.57466044629829], [-77.41983570569774, 34.57470333243789], [-77.41988065845386, 34.57471985625031], [-77.42007789042918, 34.57483242634244], [-77.42027469676273, 34.574953037345495], [-77.42031196012934, 34.57497051881265], [-77.42035381328924, 34.575004625338295], [-77.42053907254359, 34.57511757742686], [-77.42066873657656, 34.57518314410486], [-77.42077702739535, 34.57525138199776], [-77.42094628278942, 34.575343612660326], [-77.42102018245049, 34.575378831124475], [-77.42106277536027, 34.57539912955824], [-77.42122126273739, 34.57547465943705], [-77.42127134316306, 34.575496493865245], [-77.42145679558386, 34.57552464839582], [-77.42178853729877, 34.57557940958067], [-77.42185080187869, 34.57558546995195], [-77.42189330473477, 34.57558556705671], [-77.42200463321598, 34.57561528472397], [-77.42224482952713, 34.57573419201401], [-77.422397824869, 34.5757233509951], [-77.422441823709, 34.57572449528014], [-77.42250919286732, 34.575682062979496], [-77.42263879506822, 34.575620574046475], [-77.42272171717849, 34.57560103906369], [-77.42273822184023, 34.57550928832978], [-77.42275902273326, 34.57537665483563], [-77.42275121305804, 34.57508282497525], [-77.4226385961033, 34.57479641546455], [-77.42260900308278, 34.57471065615097], [-77.4225940756244, 34.57468094424494], [-77.42259087193004, 34.57463001976946], [-77.4226385559993, 34.574630075130074], [-77.42270365129869, 34.57459495088204], [-77.42303249903699, 34.574448135987176], [-77.423182541823, 34.5743330536738], [-77.42322945772041, 34.57430813077567], [-77.42331087533296, 34.57424054218395], [-77.423364738605, 34.574211478861045], [-77.42342642120519, 34.57418994796795], [-77.42346325250121, 34.57423691090774], [-77.423465557403, 34.57430057840607], [-77.42346707528588, 34.57434250514078], [-77.42347291921266, 34.57450392918504], [-77.4234747209046, 34.57455369359154], [-77.42349477342674, 34.574624339354465], [-77.42357071042528, 34.574964409536044], [-77.42367686914106, 34.57510400473265], [-77.42382063538057, 34.57508612746212], [-77.42416161362556, 34.57524643553841], [-77.42421467332844, 34.575271759793935], [-77.42422983211586, 34.57527741648071], [-77.42426875777647, 34.575288125852346], [-77.42451341723174, 34.575355437589224], [-77.42452993500427, 34.57559003741251], [-77.42444138573708, 34.57568776682634], [-77.42436939158111, 34.575956217131605], [-77.42428720546057, 34.57613463400061], [-77.42432280489355, 34.57624574314528], [-77.42440306769728, 34.57676446314302], [-77.42455547294337, 34.576945041168486], [-77.42478046851062, 34.577152510528734], [-77.42500316781904, 34.577170670563554], [-77.42533466792196, 34.577189670332096], [-77.42539717750945, 34.57720851738752], [-77.42542375157872, 34.5772155184859], [-77.4255248947016, 34.577229536973775], [-77.42572986223963, 34.577266008071305], [-77.4257911922917, 34.57726347703481], [-77.4258603562499, 34.577255593224805], [-77.42610897176529, 34.57722725397653], [-77.4261851829861, 34.57723246610216], [-77.42626583001432, 34.577209373738114], [-77.42652964846343, 34.57713768064238], [-77.42657915181499, 34.57712741888797], [-77.42662019161787, 34.57711547495405], [-77.42688044598754, 34.577033631740996], [-77.42696005354638, 34.5770080504035], [-77.42699207184867, 34.576997066988646], [-77.42736710886079, 34.576992451059866], [-77.42767749399331, 34.57700854382353], [-77.4277611127269, 34.57701209063293], [-77.42787339197646, 34.577011117561604], [-77.42802506363361, 34.577008341329105], [-77.42815511080282, 34.577012449673916], [-77.42837141902132, 34.57700962131079], [-77.42846168522166, 34.57722967900523], [-77.42848587863666, 34.57729441655241], [-77.4285125244073, 34.57760729422037], [-77.42845406245867, 34.577655369925225], [-77.42815536508706, 34.57783485847334], [-77.42801251918776, 34.57798979159239], [-77.42785947037919, 34.57816589902433], [-77.42795682958773, 34.5783659506417], [-77.4279477723529, 34.57857772521383], [-77.42799961405159, 34.578738374461416], [-77.42802795533616, 34.5788530858404], [-77.42804842547602, 34.57898776633613], [-77.42779896961363, 34.57940840228011], [-77.42777985587402, 34.57945117232804], [-77.42777076856282, 34.5794620855274], [-77.42776186275526, 34.57947058925043], [-77.42748799517543, 34.579917943412994], [-77.42756820569453, 34.5801152486945], [-77.42756951157092, 34.580118456422085], [-77.42760616829278, 34.58015744953089], [-77.42774240040538, 34.58030576324199], [-77.42775033832865, 34.58031731410583], [-77.42776212396426, 34.58032334533201], [-77.42804795363057, 34.58068619005231], [-77.42809640051094, 34.58074370129213], [-77.42815630729515, 34.58086807001567], [-77.42825936348545, 34.58108022335961], [-77.42826457992277, 34.58138755938161], [-77.42831531665604, 34.581496725214485], [-77.42828475770604, 34.58163929867732], [-77.42829681784954, 34.581772880619], [-77.42845731446984, 34.58190079082981], [-77.42850622310051, 34.5819416097891], [-77.42855067013602, 34.581962287364156], [-77.42870933619045, 34.582035315081164], [-77.42874770977792, 34.58205313607465], [-77.428759490382, 34.58205671716334], [-77.42894474628626, 34.58213290183641], [-77.42910926959385, 34.58205383376918], [-77.42913797799207, 34.58222699924319], [-77.42925538122823, 34.58229994443573], [-77.4293388403758, 34.582353658463255], [-77.429372084698, 34.58236963864611], [-77.42951448918295, 34.582384872939485], [-77.4295307914863, 34.58238798164462], [-77.42954095216149, 34.58238653224774], [-77.42973282112004, 34.582226589937854], [-77.42978382205474, 34.58218861862936], [-77.42985303784404, 34.5821236426455], [-77.42984237085994, 34.582007057019894], [-77.42979506941924, 34.58170743220459], [-77.42985814972431, 34.58140906863299], [-77.43021066145336, 34.58155679506545], [-77.43052069119321, 34.58171528444724], [-77.43074886682182, 34.58174828202798], [-77.43125160760736, 34.58192147751744], [-77.43130881621705, 34.58196044490051], [-77.4313406642067, 34.581942929224674], [-77.43161192385972, 34.58186939008945], [-77.43205853606683, 34.58176360857557], [-77.43209678359779, 34.58175524160995], [-77.432147197181, 34.581737677750745], [-77.4324907546999, 34.58162236415506], [-77.43281863602802, 34.5816236713725], [-77.43288476413487, 34.58159692943913], [-77.4329727634445, 34.581577823355715], [-77.43314546922416, 34.58164768973856], [-77.43349587822553, 34.58178775747797], [-77.43367290042644, 34.581858870564005], [-77.43375723362352, 34.5818929725149], [-77.4339746595039, 34.581852983190174], [-77.43406690352965, 34.58181562302651], [-77.4341500442558, 34.58171474668097], [-77.43413794010945, 34.58158084621688], [-77.43412921303957, 34.581505462444035], [-77.4340667145994, 34.58132250018057], [-77.43401342483426, 34.58115496717701], [-77.43399628686564, 34.58110008917768], [-77.43396290083604, 34.58099318179305], [-77.43386941858964, 34.58069383997258], [-77.43406632915642, 34.58031507455122], [-77.43408489356227, 34.58025812294014], [-77.43409691337757, 34.58023635638761], [-77.43446013397009, 34.57977854170241], [-77.43450162651949, 34.579797953419664], [-77.43518809364292, 34.57965399170199], [-77.43524541721479, 34.57964281266618], [-77.43524809929977, 34.57964213943507], [-77.43659749482453, 34.57920614946015], [-77.4371695332497, 34.578994960042515], [-77.43840026291245, 34.57985797568203], [-77.43907420699487, 34.580064200556016], [-77.43976444235966, 34.58069056033985], [-77.44080891995117, 34.58134135504264], [-77.44155349598046, 34.582314046510064], [-77.44207609396832, 34.58319026971443], [-77.44238506735451, 34.58370828555559], [-77.44266216306119, 34.58417286367413], [-77.44296840659828, 34.58514711538838], [-77.44300057087534, 34.58531763994821], [-77.44198965257226, 34.58593199765863], [-77.44155542378076, 34.58637466325405], [-77.44155498988489, 34.586375462509835], [-77.44155403158352, 34.58637606907079], [-77.44116146541, 34.58654667263391], [-77.44082391895886, 34.58648166951601], [-77.4407808643162, 34.586473378254546], [-77.44076738885381, 34.586469396616074], [-77.44073108154694, 34.58645598074524], [-77.44022104381558, 34.58630830270197], [-77.43997917508298, 34.58617777773169], [-77.43975953940102, 34.5860230080323], [-77.43966150636976, 34.585800596444386], [-77.43942220232034, 34.58558589146363], [-77.43929993589818, 34.58542829343985], [-77.4392455298128, 34.58537712111354], [-77.43919072272345, 34.58534164537547], [-77.43901837001064, 34.58523008429782], [-77.43875427278448, 34.58508261171437], [-77.43854986118717, 34.58495336343449], [-77.43840243606743, 34.584847546589444], [-77.43812903166274, 34.58487840668458], [-77.43789471430748, 34.58490485442648], [-77.43761422832077, 34.58451632327237], [-77.43754175919369, 34.58448684459378], [-77.43752093039386, 34.58441178052091], [-77.43748333102069, 34.58427627748372], [-77.43729007438974, 34.58394501137182], [-77.4372199600702, 34.58395674032889], [-77.43706075078268, 34.583800626218164], [-77.43702286916343, 34.58377492630289], [-77.43694903307235, 34.58372483391244], [-77.43685238921228, 34.58365926791176], [-77.43683773726295, 34.58364852577447], [-77.43682579781871, 34.583637854433526], [-77.43677293283648, 34.58361380218201], [-77.43668542118345, 34.583683411684234], [-77.43651297339278, 34.583795779514915], [-77.43643191733263, 34.58399376019012], [-77.43637879862962, 34.58409505829364], [-77.43630815134554, 34.58429605769001], [-77.436294376197, 34.58458914239509], [-77.43631636394552, 34.58488564348251], [-77.43635468389088, 34.58508872655969], [-77.43643243818406, 34.58525248287077], [-77.43650702409782, 34.58540758087575], [-77.4364325764538, 34.58558615380389], [-77.43638595055106, 34.58579934419063], [-77.43634957367365, 34.58585494089386], [-77.43623569303739, 34.585913622821344], [-77.43604781845845, 34.58589857305056], [-77.43604023954293, 34.58589797487993], [-77.43603866753706, 34.58589827135438], [-77.43603650568745, 34.585897879492286], [-77.43589481597928, 34.585863390320554], [-77.43584163128467, 34.5858563972176], [-77.4357379732781, 34.585842767432176], [-77.43564457906177, 34.585774645034526], [-77.43548689853894, 34.58580975355168], [-77.4352505427899, 34.58577867499628], [-77.43505260928187, 34.58583118010394], [-77.43471363049106, 34.58593745885769], [-77.43462483404352, 34.58635419588019], [-77.43457515083088, 34.5865360933463], [-77.43469752777199, 34.586690091460696], [-77.43485694086665, 34.58687940239599], [-77.43487353142746, 34.58689967740036], [-77.43488770444515, 34.58691549637143], [-77.43505880405988, 34.587108172552604], [-77.43522161244746, 34.587291811276884], [-77.4352349581417, 34.587307335069724], [-77.43525116285781, 34.587324788800636], [-77.43539921795532, 34.58747842845642], [-77.4354214030478, 34.58750415743963], [-77.43555483987517, 34.5876682238906], [-77.43559204578398, 34.58772030090495], [-77.43564539923338, 34.587794979068335], [-77.43590706490944, 34.588041889079804], [-77.4359729149853, 34.588104193618264], [-77.43603959229708, 34.588149004503805], [-77.4363763784969, 34.58833683780534], [-77.43645113314413, 34.58836906552929], [-77.4364797375791, 34.58843322007904], [-77.43667024273105, 34.58878072566651], [-77.43672198018965, 34.58888748247969], [-77.43682810046269, 34.58912248275873], [-77.43684474083594, 34.589162175425834], [-77.43685353882523, 34.58917881528477], [-77.43701821460206, 34.58937486331811], [-77.43722229908131, 34.58946277626403], [-77.43728204766886, 34.58947707484859], [-77.43754032196136, 34.58950410083046], [-77.43759792428267, 34.58951565398059], [-77.43761637629225, 34.58951442035597], [-77.43763982997285, 34.58951498281464], [-77.43770967396321, 34.589479612171544], [-77.43801035498385, 34.589339284326506], [-77.43824448960687, 34.589230012773754], [-77.4384043246722, 34.58914761386394], [-77.4385574466686, 34.58909743824025], [-77.43864653033458, 34.58908312773134], [-77.43879834698407, 34.58907827292619], [-77.43909343056242, 34.589279508884694], [-77.43897667858006, 34.58948834854026], [-77.43896544148092, 34.5895103152235], [-77.43893884321757, 34.58957531273095], [-77.43887005289915, 34.58973640674269], [-77.43884791662288, 34.58979267577817], [-77.43848269444018, 34.59021701687522], [-77.43845130979393, 34.5902716469637], [-77.43840483097365, 34.59029506724673], [-77.4382897144511, 34.590368995171275], [-77.43817771000647, 34.59044092454763], [-77.43801090061487, 34.59058871860478], [-77.43795616308248, 34.59065873855499], [-77.43792522653752, 34.59072222403044], [-77.43795578427509, 34.5907772809437], [-77.43800951096874, 34.59092233326757], [-77.43801104741088, 34.590924440548775], [-77.43809920016089, 34.59102672605616], [-77.43819104134926, 34.59110838001637], [-77.43829231948489, 34.591215401068034], [-77.43840533199625, 34.5914282147172], [-77.438662667681, 34.591612182902885], [-77.43911975219919, 34.59174369735203], [-77.43919360260635, 34.591743991980515], [-77.43922496484485, 34.59177427682783], [-77.43995162639919, 34.591670564596406], [-77.43998170202582, 34.59167655892705], [-77.44000065771259, 34.59167545165691], [-77.44016222713546, 34.59167251028261], [-77.44037576332326, 34.59166894481725], [-77.44040046045288, 34.59166466935533], [-77.4407603750966, 34.59159615263909], [-77.44076979333178, 34.591595230778324], [-77.44078514636615, 34.59159896226935], [-77.4415065546379, 34.591533399695585], [-77.44155790800549, 34.59156632559374], [-77.4416783324691, 34.591582985911444], [-77.44219844785874, 34.59153701975314], [-77.44234617590273, 34.59185184462037], [-77.44244898653, 34.59208031150055], [-77.4424277272085, 34.592194041986325], [-77.44234638082483, 34.5922699129705], [-77.44196044459673, 34.592694763100546], [-77.44192106497104, 34.592725827954354], [-77.44155860801642, 34.593021684143665], [-77.441460162147, 34.59307707684137], [-77.44134243177774, 34.59320020415037], [-77.44098606051791, 34.59348380167004], [-77.44077073461152, 34.59359032752124], [-77.44056244486185, 34.593537404979784], [-77.44005829102409, 34.59338592116545], [-77.44001308830886, 34.59335947922039], [-77.43998247010252, 34.59333814572586], [-77.43990665953402, 34.59332617320583], [-77.43958838174966, 34.593304159805356], [-77.43944945088317, 34.593473968759625], [-77.43934122367716, 34.59364774428475], [-77.43919462309287, 34.593996304276594], [-77.43909051682309, 34.594262764570665], [-77.43909157894143, 34.59437490977498], [-77.43906352776348, 34.59452046882191], [-77.43902259257929, 34.59504820849307], [-77.43893163873861, 34.595247226472054], [-77.438767001762, 34.59565868050154], [-77.43876545372339, 34.595734504810046], [-77.4386791713863, 34.596132923218406], [-77.43880161547679, 34.59637033312638], [-77.43884942122858, 34.59648144628719], [-77.43891119509735, 34.59652396598434], [-77.43919588814671, 34.59677704741973], [-77.43930081377442, 34.59677917218435], [-77.43958998093683, 34.59678502777319], [-77.43981149700699, 34.596818369723074], [-77.43992080494692, 34.5968707674377], [-77.43998413920107, 34.596933635944566], [-77.44011858582235, 34.59719855563827], [-77.44024333082105, 34.59732605404709], [-77.44027191221488, 34.59748615175994], [-77.4402936569423, 34.5975978329071], [-77.44018159642398, 34.59781427939651], [-77.44017364009233, 34.59781891204012], [-77.43998459117097, 34.59790366082318], [-77.4396974862865, 34.598108640881584], [-77.43962620480028, 34.598157294031374], [-77.43943482855491, 34.598314541977544], [-77.43919667619315, 34.598502787301335], [-77.43914127267641, 34.59855395112262], [-77.43909104838909, 34.59862092974246], [-77.43877829091231, 34.599064308206685], [-77.43877446700658, 34.59909130237359], [-77.43870570986601, 34.599205951258604], [-77.43851386923296, 34.59955357821379], [-77.43845732129391, 34.59961383695333], [-77.43845782391412, 34.59998627638144], [-77.43847505254315, 34.60033754428909], [-77.43847832166455, 34.600407906417004], [-77.43848911263646, 34.6004922530071], [-77.43851926937387, 34.60082657947725], [-77.43856178484756, 34.60108111045764], [-77.43858106830946, 34.6012181604589], [-77.43860622790652, 34.601335801299406], [-77.43865081576888, 34.601567520093404], [-77.43870881423943, 34.60181556578592], [-77.43873201263987, 34.601913615467225], [-77.43875915944079, 34.60200876936146], [-77.43881155563147, 34.602147064520075], [-77.43885023500312, 34.60224915451667], [-77.43893511822492, 34.60245310858207], [-77.43901843802061, 34.60257044357547], [-77.43911583285666, 34.602689284659746], [-77.43918911932496, 34.6027787081308], [-77.43924437640212, 34.60287527169845], [-77.4392725549034, 34.602954792365196], [-77.43938246263819, 34.6032051477148], [-77.43939653854596, 34.603260325773036], [-77.43942561671754, 34.60348092311379], [-77.43944148728559, 34.603557565293976], [-77.43947692273375, 34.6036191611486], [-77.43956332657729, 34.60389207376683], [-77.43970363869406, 34.6040746585557], [-77.4397769153157, 34.604166630002446], [-77.43981616247169, 34.604189233295116], [-77.43994617278821, 34.60428256471159], [-77.44017087227807, 34.604457346617394], [-77.44021785262021, 34.60454179220407], [-77.44038457353744, 34.60476566401196], [-77.44039287875813, 34.60478493056895], [-77.44047731950756, 34.60508790759086], [-77.44048282626798, 34.60510689783992], [-77.44049217308996, 34.60512065438396], [-77.44056986794376, 34.605319136102636], [-77.44061850612027, 34.60543746063158], [-77.44062296239338, 34.605448598832375], [-77.44076715845776, 34.60569870724149], [-77.44080983632341, 34.60575215633421], [-77.4408856855044, 34.60585026850842], [-77.44097463529923, 34.60607441679344], [-77.44100576272507, 34.60632124091617], [-77.44114026628988, 34.60639644016783], [-77.44105025338193, 34.60652729485692], [-77.44111056189004, 34.60665024039254], [-77.44140737461312, 34.606689530392224], [-77.44144358223987, 34.60670023160584], [-77.44148250068723, 34.606733065303175], [-77.44157260558293, 34.606710120123296], [-77.44187047083099, 34.60622984923647], [-77.44187972485679, 34.606198188942244], [-77.44187527531085, 34.60618687120203], [-77.44234376923642, 34.60574118164255], [-77.44240712972109, 34.60566597318936], [-77.44267470646514, 34.605326850645866], [-77.44272502165508, 34.60525519783741], [-77.44273791207992, 34.60520240518167], [-77.44274706305083, 34.605106636125605], [-77.44279829133518, 34.60481593850064], [-77.44276940031654, 34.604651309197905], [-77.44278342817083, 34.60445092659146], [-77.44276887948183, 34.60434141682457], [-77.44288309980276, 34.604167539208376], [-77.44307863266442, 34.60414011986822], [-77.4433689592298, 34.604022057991756], [-77.44365529031222, 34.60399622305287], [-77.44388280688518, 34.6039788443039], [-77.44403962789227, 34.60398345386831], [-77.44404419138628, 34.60409142251881], [-77.44416286121678, 34.60428992112929], [-77.4441486196164, 34.60451460791272], [-77.4441348962681, 34.60480405959319], [-77.4440911600781, 34.60511391480302], [-77.44407679654803, 34.60518987928256], [-77.4440229226474, 34.60537529208178], [-77.44397542670482, 34.605588035882604], [-77.44396765408366, 34.605690106622035], [-77.44386100958393, 34.60581985693146], [-77.44360316848233, 34.606181960193155], [-77.44347825648508, 34.60634208898124], [-77.4433795210729, 34.60649645806176], [-77.44358124646362, 34.60671837474679], [-77.44362016376714, 34.6067819850618], [-77.44366292034407, 34.60678489997298], [-77.44413769488705, 34.60683074051514], [-77.44432431674083, 34.60683535974322], [-77.44466922401486, 34.60685205901205], [-77.44468875045779, 34.60686163864463], [-77.44471206993849, 34.60687975876065], [-77.44486864693559, 34.60699496673729], [-77.44489830849854, 34.607047871345415], [-77.44498587578786, 34.60714616446128], [-77.44497963768475, 34.60728310553057], [-77.44484053024227, 34.60747790444628], [-77.44477860294961, 34.60752245759504], [-77.44459109641133, 34.60762798868709], [-77.44443887926053, 34.60771327265374], [-77.44438889329282, 34.607748481388946], [-77.44418897768726, 34.607935522734174], [-77.44424084730016, 34.60809711296379], [-77.44434781759819, 34.60830081903777], [-77.44439623959275, 34.608422055066114], [-77.44447982551166, 34.608473800267504], [-77.44462296084286, 34.60872665907831], [-77.44467712067977, 34.6088014768728], [-77.44480976085993, 34.608984709318], [-77.44510327029762, 34.60887490584425], [-77.44520162534742, 34.60879708422231], [-77.44539508449913, 34.60872623429657], [-77.44543973220954, 34.608706680181854], [-77.4454860480266, 34.6086991546833], [-77.44567914684899, 34.60862105448626], [-77.44585023437563, 34.60862690673461], [-77.44614047309574, 34.608663188370855], [-77.44621937313119, 34.60867409503132], [-77.44633929177655, 34.6086880415789], [-77.44653388470824, 34.6087053560071], [-77.44659604916629, 34.608717902309074], [-77.44675836859861, 34.60872263484838], [-77.4469031757409, 34.60871099821237], [-77.44721247031998, 34.60868389872239], [-77.44726392232812, 34.60864901218602], [-77.44735500892062, 34.6086157173564], [-77.44774255974153, 34.60847707150079], [-77.44785050649249, 34.60846704632229], [-77.44805687239688, 34.608359977786094], [-77.44818903789108, 34.608187667430705], [-77.44828050567315, 34.60805291301942], [-77.44834546820819, 34.60784156168724], [-77.44854423432119, 34.607608445962654], [-77.44854724283955, 34.60760246734106], [-77.44854996804298, 34.607585792831756], [-77.44855156055672, 34.60742172845446], [-77.44847445050925, 34.60730994798195], [-77.44844620504914, 34.60728151931319], [-77.44843934499451, 34.607269102602984], [-77.44842888146087, 34.60725134722553], [-77.44820720444591, 34.60696604930052], [-77.448085025856, 34.60680880503692], [-77.4480458580664, 34.6066428068262], [-77.44802528758818, 34.606490710865444], [-77.44802693979479, 34.606463574397175], [-77.44810507827872, 34.606327122115424], [-77.44814611458351, 34.606244959624824], [-77.4481729444787, 34.60620860827768], [-77.44830194024762, 34.60620052010088], [-77.44860826764862, 34.60616902508985], [-77.44868780166867, 34.606169024907224], [-77.44883105464474, 34.60615327409168], [-77.44920657235718, 34.60614373644151], [-77.44951627169723, 34.60597310608012], [-77.4496616357436, 34.605885750048195], [-77.44975632298966, 34.60585765173824], [-77.45013999251572, 34.60571285134235], [-77.45048419955252, 34.605703901096405], [-77.45089574622085, 34.605636961305024], [-77.45098961723811, 34.60508587612065], [-77.45099303435923, 34.60506375929379], [-77.45099431026735, 34.60505205413785], [-77.45098727009298, 34.60496736827182], [-77.45092830215026, 34.60440955941354], [-77.45090539344989, 34.60435023810436], [-77.45087864915058, 34.60430720375458], [-77.45074685043534, 34.60408923865128], [-77.45072050764196, 34.60404340079991], [-77.45070480112282, 34.604038191709236], [-77.45044184722042, 34.603926970166526], [-77.44991908482393, 34.603893028619055], [-77.44981794256395, 34.603775529940116], [-77.44962091684602, 34.60381685493349], [-77.44933196334392, 34.60369122268642], [-77.449519021909, 34.60344465753779], [-77.44972758784075, 34.60336999409242], [-77.45001533440255, 34.60333739698438], [-77.45019156918681, 34.60331865677854], [-77.45050383181456, 34.603201594017186], [-77.4506979364011, 34.60309015339213], [-77.45072520566883, 34.60305014201198], [-77.45077785285817, 34.60290958033846], [-77.45076099730107, 34.60280252125407], [-77.45071402315196, 34.60267978712082], [-77.45054573508732, 34.602606526035395], [-77.45043729447674, 34.602561000552754], [-77.45031334522476, 34.60250581166748], [-77.45014267854958, 34.60246408675334], [-77.45009125362141, 34.60236689359815], [-77.45012571915748, 34.602270515088016], [-77.45019394881375, 34.60206969068724], [-77.45021937192807, 34.60199358827831], [-77.45023795040012, 34.601955795516204], [-77.45034314385879, 34.60172720084637], [-77.45045635919843, 34.60152424207909], [-77.45033240428234, 34.601317728727196], [-77.45023686594615, 34.60121758869524], [-77.44991242532427, 34.601041344824885], [-77.44982434047418, 34.60102465774077], [-77.44957658439816, 34.60103665444068], [-77.44943506135768, 34.60104350724211], [-77.44942420913027, 34.6007862215956], [-77.44953809903984, 34.60067837375462], [-77.44977290851222, 34.60053170859175], [-77.44989745663251, 34.600478074071994], [-77.4500080206366, 34.60043046161573], [-77.45011225180858, 34.60040760171096], [-77.45025203642341, 34.60036173944171], [-77.45043417297553, 34.600278924658774], [-77.45077840943495, 34.60036434889008], [-77.45122007288505, 34.600232231435584], [-77.451277569929, 34.60019599899363], [-77.45129158345748, 34.60017823914403], [-77.45131553683349, 34.60011548989574], [-77.45151469336622, 34.5997453412835], [-77.4515412247001, 34.59966886515019], [-77.45157529639629, 34.59943501474636], [-77.45158688272878, 34.599355491062894], [-77.45153925203456, 34.59930335713872], [-77.45134493588273, 34.59916517040932], [-77.4511638735225, 34.599106888296056], [-77.45080313074948, 34.59891337751873], [-77.45070623752765, 34.598757267297756], [-77.45093914708258, 34.59874704434117], [-77.45133565925678, 34.598559693739276], [-77.45174382619206, 34.59850097069989], [-77.45190729769652, 34.598477451800676], [-77.4522477160871, 34.598428474269056], [-77.45233099119206, 34.598416493123565], [-77.45234714455188, 34.598414282674256], [-77.45238391930306, 34.598415267269175], [-77.45271736820922, 34.59840116772388], [-77.452876046044, 34.598426166465714], [-77.45331041876823, 34.5984945980923], [-77.4533647553193, 34.59852383184472], [-77.45343837100943, 34.59856012347218], [-77.45408424396484, 34.5982738562944], [-77.45435852145297, 34.59817714816019], [-77.45437636844932, 34.59814631762758], [-77.4546850568251, 34.597672020467044], [-77.45504659573916, 34.597381359500815], [-77.45518870507229, 34.59727360947732], [-77.45528087594778, 34.59726112018873], [-77.45596878863384, 34.59716790609011], [-77.45624834875267, 34.5973041277454], [-77.45667794213598, 34.597130580638016], [-77.45659889506607, 34.59681795831187], [-77.45649846930071, 34.59652007611929], [-77.45652296888865, 34.59645697247912], [-77.45652642355353, 34.59640002121455], [-77.4565479975326, 34.59609394946643], [-77.45655075446, 34.595998911509625], [-77.45655975945625, 34.59585046289548], [-77.45657037055201, 34.59571830184075], [-77.45677397453053, 34.59538445999503], [-77.45683461004751, 34.5953272529984], [-77.45707778872523, 34.59520427222988], [-77.45722815476641, 34.595123522204084], [-77.45759265714642, 34.5949731167846], [-77.45767959605774, 34.59485258993689], [-77.45785308830352, 34.5948632433902], [-77.4579843481279, 34.59494562629917], [-77.45852611680904, 34.594954491272496], [-77.45876565518326, 34.594979665249454], [-77.45893355961663, 34.595044071272206], [-77.45913677781135, 34.59512202298786], [-77.4592993648068, 34.595260595293944], [-77.4593409001401, 34.59529711696869], [-77.45935196108809, 34.595316053131526], [-77.45941116486993, 34.59541740832792], [-77.45950774084078, 34.5955827439418], [-77.45955211889574, 34.59565871682195], [-77.45954717128046, 34.59591403937165], [-77.45953616737594, 34.595979938809755], [-77.45949372647296, 34.596257660550236], [-77.45952099966905, 34.59648099671543], [-77.4598580732773, 34.59662662744497], [-77.45992773570477, 34.59689796839042], [-77.46028517262555, 34.596689454738204], [-77.46041397261014, 34.59657963004615], [-77.46055742441243, 34.59642708619781], [-77.46064878256956, 34.596352097151026], [-77.4606945154783, 34.59626480900094], [-77.46079081672158, 34.59609210457478], [-77.46090565536039, 34.59570180382958], [-77.46094790171554, 34.5955771326187], [-77.46097321607286, 34.595536550074755], [-77.46100270655033, 34.59547084470053], [-77.46108830756577, 34.5952671319441], [-77.46114612508711, 34.59515130280401], [-77.46122625159468, 34.595005709312716], [-77.46131490596437, 34.59491850855427], [-77.46136646918184, 34.59487980616662], [-77.4615127993946, 34.59479627836423], [-77.46174224277232, 34.594678479282194], [-77.46183278678575, 34.594663233456956], [-77.46200235155828, 34.59465787073885], [-77.46273724749938, 34.59437584836309], [-77.46283160288056, 34.59447173894114], [-77.46314559635728, 34.594790842318695], [-77.46317766313297, 34.595069059042615], [-77.4632032813046, 34.595672109264235], [-77.4632032586553, 34.596316740918766], [-77.46320325374452, 34.596410664886825], [-77.46317963925841, 34.59657823485173], [-77.46312608017163, 34.59717122672437], [-77.46312077994978, 34.597526608529165], [-77.46272690660959, 34.59792767679187], [-77.46201526848071, 34.59837858979386], [-77.46169747903639, 34.598391232579495], [-77.46135180497318, 34.598416042103516], [-77.46090912377669, 34.59844103018904], [-77.4607670882758, 34.59844904718827], [-77.46049084567565, 34.59846463830524], [-77.46013244132253, 34.598476543300514], [-77.4597564445023, 34.59850196599867], [-77.45972936183921, 34.59849864592168], [-77.45941171066214, 34.598443614264504], [-77.45898310970216, 34.59855650688202], [-77.45870141415311, 34.598583947552385], [-77.45853375513448, 34.5986029831634], [-77.457898667969, 34.59879646242716], [-77.45774494841838, 34.598930278095764], [-77.45733437497856, 34.599218403247605], [-77.45708227483097, 34.5996341749739], [-77.45705974951895, 34.59974169752003], [-77.45694630291143, 34.599852952562955], [-77.45623287801519, 34.60007176530458], [-77.45597013102964, 34.60012738804595], [-77.45519763272884, 34.60091034803572], [-77.45516763276177, 34.60093781155427], [-77.45524315363909, 34.60131189254598], [-77.45530073875052, 34.601603770100304], [-77.4553050013649, 34.601618246457996], [-77.45530871364019, 34.60163287638992], [-77.45543268938458, 34.60200405697368], [-77.45552485113015, 34.60228296875272], [-77.45557910301217, 34.60227858174639], [-77.45556984468453, 34.60231731191852], [-77.4555706093064, 34.60250771777331], [-77.45528307990966, 34.60283636103735], [-77.45552432002879, 34.6030327364286], [-77.45522358251188, 34.60343492706059], [-77.45565439782283, 34.60373415754643], [-77.45572676636243, 34.60386488314473], [-77.45576265423074, 34.604441803869236], [-77.45549810426724, 34.604769746859176], [-77.45550074102214, 34.60488578160934], [-77.45540094801913, 34.605045446475835], [-77.4553965972329, 34.605100121341394], [-77.45538928352444, 34.605192031543844], [-77.45546901766832, 34.605264094620566], [-77.45548092423901, 34.605383119646845], [-77.45535889445405, 34.60557393212248], [-77.45534595067951, 34.605645588290066], [-77.45530242468583, 34.605680879746195], [-77.45518691755468, 34.60589963849219], [-77.45477577479878, 34.606200369037936], [-77.45456871154062, 34.60652781175235], [-77.45428613587092, 34.60682324683962], [-77.45408285585748, 34.60713654384665], [-77.45440932607076, 34.60730483834596], [-77.45471200154853, 34.60759163338305], [-77.45482405463451, 34.607663650409876], [-77.45485002111192, 34.60768033913891], [-77.45490965019292, 34.60777281576136], [-77.45529110655005, 34.608055362624974], [-77.45537215886912, 34.60824583244461], [-77.45529820909945, 34.608416111090975], [-77.4552776393027, 34.60898625866247], [-77.45528169257616, 34.60901016570272], [-77.4552763463673, 34.60902784596403], [-77.45536831991124, 34.609332580873215], [-77.45538566215788, 34.6093497727125], [-77.45554234594763, 34.609576982687514], [-77.45562962905487, 34.6096494458287], [-77.45557912821612, 34.60975315786003], [-77.45565778884357, 34.61001067793471], [-77.45573330353349, 34.610257896677865], [-77.45582964687677, 34.6103309199962], [-77.45599664894348, 34.61085029214213], [-77.45612557997792, 34.61098503358381], [-77.45605525393279, 34.61115848989017], [-77.45622392913143, 34.61169551094175], [-77.45638408227491, 34.612205391276945], [-77.45653803034443, 34.61234444298898], [-77.4565770593997, 34.61257979093629], [-77.45591295497995, 34.61278150373106], [-77.4558116545202, 34.61255163533956], [-77.45572506566424, 34.612281738393065], [-77.45563715470169, 34.61186288290057], [-77.45519085800485, 34.611835655009486], [-77.45504277794062, 34.611663157624186], [-77.45486777964354, 34.611459302618], [-77.4548078901164, 34.611389537413785], [-77.4547739744186, 34.611370565965125], [-77.4546881239761, 34.61129958864445], [-77.45445363781604, 34.61109267271854], [-77.4543532375331, 34.61103108002331], [-77.45368693860078, 34.6109493165689], [-77.45367799572514, 34.6109542131303], [-77.45343410860131, 34.61148024659126], [-77.45282764451935, 34.61168860924511], [-77.45255520652098, 34.61179213855659], [-77.45233883809561, 34.611823458569575], [-77.45217618713536, 34.61186434879998], [-77.45185153786962, 34.611963810576], [-77.4516485705723, 34.61209432208211], [-77.45149935709256, 34.612304536095806], [-77.45140775387729, 34.61262945929376], [-77.45137674151495, 34.61284186020144], [-77.45132278904937, 34.61309341218622], [-77.45130423965736, 34.613212635124114], [-77.4510089389691, 34.61329157585903], [-77.45015286103889, 34.61344022488363], [-77.45013825128801, 34.61344179298849], [-77.45007972004815, 34.613447922217624], [-77.44972722630389, 34.61348716291532], [-77.44963126700908, 34.613455370967515], [-77.44938727993394, 34.613445625434146], [-77.44907119080742, 34.61332996651328], [-77.44880358475932, 34.61357648463599], [-77.4483058579674, 34.61385347352206], [-77.44818723316956, 34.61394183046912], [-77.44815223912343, 34.61396798093307], [-77.44809359821265, 34.614014309589066], [-77.44758868306246, 34.61439019366925], [-77.44733054695985, 34.61465334336665], [-77.44702074127217, 34.61481087174869], [-77.44655353445928, 34.61508152822288], [-77.44641923616055, 34.61516538249906], [-77.44634389912707, 34.615193443580566], [-77.44622884369393, 34.6152845583126], [-77.44621183912561, 34.615499270003035], [-77.44610468270528, 34.61568921626139], [-77.44611804941596, 34.615733824174114], [-77.44626418708731, 34.6158924289975], [-77.44635215855965, 34.61598790475739], [-77.44646227461917, 34.616107414285615], [-77.44662946496261, 34.616278087497754], [-77.44678088669208, 34.61648634311361], [-77.44684062316384, 34.61655918317895], [-77.44685464433664, 34.616583133748684], [-77.44695219715496, 34.616645105137366], [-77.44711893433305, 34.616877027498916], [-77.44727094872744, 34.616947410421126], [-77.44743193723951, 34.616943962632035], [-77.4478144697455, 34.61694681085528], [-77.44795950230207, 34.616950549479505], [-77.44800556862653, 34.61696361952342], [-77.44803196493157, 34.61698593290388], [-77.44816469977381, 34.61706935280668], [-77.44823802060102, 34.617111803376716], [-77.44824698734934, 34.617125635185516], [-77.44833623742372, 34.61726842418717], [-77.4483888227522, 34.61740939943753], [-77.44847049917493, 34.61759939508593], [-77.44857543712101, 34.61783246393434], [-77.44861167273449, 34.617928395179774], [-77.44864004389788, 34.618016604966925], [-77.44876988849265, 34.61799004138696], [-77.44901351716662, 34.61801717673829], [-77.44909260955035, 34.61801341073618], [-77.44929536160316, 34.61798895906196], [-77.44944597066666, 34.61794563684858], [-77.44996244914854, 34.61791246106898], [-77.45018644109868, 34.61795468984731], [-77.45037547374011, 34.61809329717923], [-77.45084254836902, 34.61839999854467], [-77.45128254972683, 34.618443297282134], [-77.45151860801533, 34.618427753711785], [-77.45197228631059, 34.61840149577989], [-77.4520676124023, 34.61839782304269], [-77.45223196520249, 34.61849234223929], [-77.4523202700162, 34.61871710000762], [-77.45214576778987, 34.61879796231683], [-77.45179701433919, 34.618959568612915], [-77.45167919821874, 34.619014162482095], [-77.4514294844403, 34.6191780299917], [-77.45123000757539, 34.619293832594], [-77.45106227423854, 34.61932191496816], [-77.45074730216963, 34.61945112526057], [-77.4503773130656, 34.62000970517185], [-77.45029188611736, 34.620291182966966], [-77.45022185165557, 34.62065449584915], [-77.45018277765877, 34.62080369738373], [-77.45021175152846, 34.62088254294687], [-77.45020115225289, 34.62116771643517], [-77.45041020730069, 34.62133858427613], [-77.45052327681111, 34.62144511633282], [-77.45081348717727, 34.621712448971195], [-77.45114109321811, 34.62200745452947], [-77.45122462654065, 34.62217163625767], [-77.4515439130895, 34.62235998540052], [-77.45178844720475, 34.622561368630855], [-77.45202639513252, 34.62302017038422], [-77.4525197712913, 34.62354813275809], [-77.45249378876912, 34.62383726343974], [-77.45129973421234, 34.62530821475544], [-77.45106774846357, 34.6255177505098], [-77.45059800780174, 34.62585490874706], [-77.4495518203138, 34.62660581758541], [-77.44862047031499, 34.626418786730326], [-77.44804674338785, 34.626056677114974], [-77.4472484084758, 34.62587501612302], [-77.44661944469021, 34.6255123047506], [-77.44644426512414, 34.6251390609055], [-77.44643368859278, 34.624826760112384], [-77.44671128390374, 34.62461307813759], [-77.44688122895147, 34.624534082936734], [-77.44726843700893, 34.624188600344965], [-77.44721676769203, 34.62386497803181], [-77.4472216993258, 34.62355284727719], [-77.44724123638144, 34.623384035174816], [-77.44726870379057, 34.62311165935654], [-77.44729444096423, 34.622958893840796], [-77.4473925510823, 34.62256092402782], [-77.44748436882497, 34.6223116560959], [-77.44752845358803, 34.621801960636304], [-77.4476413215717, 34.62152839165084], [-77.44775099828445, 34.62126042134922], [-77.44774136959343, 34.62113060937415], [-77.4476762224208, 34.621023602558644], [-77.44749791265708, 34.62086217262954], [-77.44746378159378, 34.62084050491828], [-77.4474439263963, 34.62082829578296], [-77.44715938380378, 34.62074111073285], [-77.44704829526981, 34.62058971940709], [-77.44679572351683, 34.6203811941333], [-77.4467350003084, 34.620345595982585], [-77.44666793332051, 34.62032891833061], [-77.44658725346, 34.620233847644194], [-77.44628538491712, 34.619980929162416], [-77.44574202172157, 34.61985441294276], [-77.44572417857401, 34.61975268369761], [-77.44559357136808, 34.61983117070589], [-77.44552990814935, 34.619863890051334], [-77.44513536592245, 34.62002738272359], [-77.44478027322434, 34.620221001285756], [-77.44467944524736, 34.6203331566588], [-77.44453439561025, 34.620292846516605], [-77.44454170959396, 34.62019664415251], [-77.44455601198803, 34.620142531098686], [-77.4443299322441, 34.61988777207171], [-77.44426281124908, 34.61971055049194], [-77.44421651730886, 34.61955085594183], [-77.44408579844378, 34.619358585323184], [-77.44400268199132, 34.61911425602529], [-77.44377327927573, 34.61893872445543], [-77.44377150419675, 34.61893719093054], [-77.44340792258754, 34.6189270301128], [-77.44322696514804, 34.61886862819296], [-77.44282141164445, 34.618729721175015], [-77.44263837276752, 34.618639131714374], [-77.44250993589749, 34.61880715249724], [-77.44229610253764, 34.619309475898945], [-77.44228888166442, 34.619349216929805], [-77.44140793923123, 34.619543280211374], [-77.44129468489608, 34.61949259659101], [-77.44115441197229, 34.61931610341731], [-77.4410779016244, 34.61903245782667], [-77.44103501065301, 34.618980893917914], [-77.44106825541435, 34.61892207097202], [-77.44111203406321, 34.6188253150805], [-77.44133999501875, 34.618397743286806], [-77.44152080271526, 34.618103902764304], [-77.44161795220245, 34.61787559222677], [-77.44164285871237, 34.617699857449495], [-77.44177013580776, 34.61738800427936], [-77.44180540795574, 34.617321771448545], [-77.44187383058282, 34.61726475916062], [-77.4421950247893, 34.61683869664853], [-77.44218852358162, 34.61676058165616], [-77.44224506577648, 34.61642042151884], [-77.44208232568057, 34.616179837942305], [-77.44205146499829, 34.61610636789389], [-77.44202240882433, 34.616049385767525], [-77.44182790903764, 34.61609080440022], [-77.44142646392798, 34.61613244040879], [-77.44121941692842, 34.6161167271817], [-77.44089708013355, 34.61611916590959], [-77.44084012219247, 34.61612325720292], [-77.44046201435573, 34.61623221953982], [-77.44040898801241, 34.61625675269412], [-77.44032162293982, 34.61629994677492], [-77.4396997248866, 34.61658486750777], [-77.43947434057317, 34.616683703356344], [-77.4391667601502, 34.616797383016895], [-77.43886192689823, 34.61691108749249], [-77.43852896750273, 34.61707149552416], [-77.43847273352145, 34.6171266044383], [-77.43824979467038, 34.61731628345716], [-77.43812257336194, 34.61750762898439], [-77.4380333367341, 34.617621105416276], [-77.43792609093487, 34.617822424094214], [-77.43774700647081, 34.61805641858712], [-77.43772730356933, 34.61807758777463], [-77.43775983159536, 34.618103280941995], [-77.43794932671717, 34.618285479028415], [-77.43806730948899, 34.618349911028595], [-77.43851566898647, 34.61850744822737], [-77.43869625329398, 34.618711393368834], [-77.43884449808161, 34.61886685689566], [-77.43882379856085, 34.61904503505966], [-77.43887218092559, 34.61939239129636], [-77.43842671962524, 34.61972444033], [-77.43831223077916, 34.61981585642675], [-77.43824254841688, 34.61986706223628], [-77.43815571301015, 34.61986163337221], [-77.43810189371584, 34.619817034411696], [-77.43772542911131, 34.619610491995545], [-77.43765896730535, 34.61957404675462], [-77.43764866901236, 34.619567174052406], [-77.43754352671996, 34.61954683034963], [-77.43707210368376, 34.619432595602696], [-77.43699644400671, 34.61945016513866], [-77.43624836618073, 34.61971297924649], [-77.43610763041605, 34.61975073096128], [-77.43574785384003, 34.62011879280253], [-77.4357811222738, 34.620168885000744], [-77.43604965856292, 34.62040201141457], [-77.43614849260243, 34.62048656338986], [-77.43631361792544, 34.620696017388475], [-77.4363339677776, 34.62071696549032], [-77.43642621877333, 34.62101409671561], [-77.4364245294867, 34.62103364721791], [-77.43641626332291, 34.621073476114184], [-77.4363403987253, 34.62160349619219], [-77.43626093731237, 34.62181876326836], [-77.43619659441038, 34.621997035359236], [-77.43614269053619, 34.622153738339996], [-77.43612814353858, 34.62222585682016], [-77.43609763932284, 34.6223770879346], [-77.43609256507796, 34.62244591346341], [-77.43610383003352, 34.622602030040674], [-77.43623366947085, 34.622805014065875], [-77.43630359609745, 34.62291433449983], [-77.43624904891531, 34.62310622276364], [-77.43650435764458, 34.62322635536837], [-77.43652430286062, 34.62322690569414], [-77.43653500366449, 34.62323356292801], [-77.4367519239703, 34.623405804192295], [-77.43719315997582, 34.6237171915105], [-77.43722516320449, 34.62374160926644], [-77.43724094417912, 34.62375489256965], [-77.43729770131581, 34.62379682415774], [-77.43759502497367, 34.6240232113457], [-77.43768876227524, 34.6240891986637], [-77.43787018961464, 34.624269744594685], [-77.43790588106107, 34.62430385073377], [-77.43809615783793, 34.62450548338083], [-77.43818047046527, 34.624594826866286], [-77.43829647775244, 34.624717756378324], [-77.43835907689682, 34.62478768524067], [-77.43844972924384, 34.62488732274691], [-77.43833557360375, 34.62500952379024], [-77.4382694787393, 34.62506604530696], [-77.43815054547134, 34.6251246709071], [-77.43809916411811, 34.62510631536782], [-77.43794136025677, 34.625151785422425], [-77.43795762081305, 34.62502759328578], [-77.43781968824851, 34.62490864259688], [-77.43779671858545, 34.62488883398571], [-77.43779161748216, 34.62487769671531], [-77.43766762790754, 34.62474100672747], [-77.43742643394417, 34.62456950408097], [-77.4373424275836, 34.624512490611835], [-77.43720397586871, 34.624503918171406], [-77.43670243851085, 34.62438047979491], [-77.436252498974, 34.62412251250505], [-77.43618544571896, 34.624098145564176], [-77.43613583490668, 34.624069880831954], [-77.43607192177825, 34.62398727766144], [-77.43584637032578, 34.62378314182745], [-77.43579061785329, 34.6236665073517], [-77.43578261049002, 34.6234320711892], [-77.4355618826873, 34.62318934049574], [-77.43550030428536, 34.62314329260625], [-77.43548138978896, 34.62313025630723], [-77.4354446225804, 34.62309178880043], [-77.43523964107705, 34.622848344184284], [-77.43517145276174, 34.622594874564804], [-77.4351442384716, 34.62242373405088], [-77.43507657051074, 34.62215633802758], [-77.435140475353, 34.621980396464245], [-77.43519764799036, 34.62182298838915], [-77.43522948102044, 34.62174351308354], [-77.43533773310818, 34.62147747600599], [-77.43539774421122, 34.6213263118153], [-77.43524872170623, 34.621221424778966], [-77.4350548489567, 34.621054802751225], [-77.43496957385861, 34.621013262263915], [-77.43485502747853, 34.620937303024355], [-77.43464958739546, 34.62080106898227], [-77.43459717381619, 34.62055423427856], [-77.434278575062, 34.6202624343813], [-77.43429180396537, 34.62016456073639], [-77.43410933872258, 34.62013364667909], [-77.43380339545728, 34.620096117261745], [-77.43356283311248, 34.62005786512151], [-77.43348621135127, 34.62008370121376], [-77.43310129401, 34.62029259786961], [-77.43287854702625, 34.62039185065572], [-77.43263435057972, 34.62050758968796], [-77.43245438351482, 34.62043059541365], [-77.43208359478285, 34.62041627199269], [-77.43175155306602, 34.62037540271897], [-77.43134292612476, 34.620473791078446], [-77.43108605940446, 34.62061364879526], [-77.43057703463936, 34.62082515108416], [-77.43021075191761, 34.621257789608734], [-77.43016182077196, 34.62129926420626], [-77.43010839911824, 34.62135681992977], [-77.42992507037499, 34.621526118701865], [-77.42985897701703, 34.62161251740762], [-77.42991701034148, 34.62170323347482], [-77.42990752024784, 34.62178330205798], [-77.42996422971561, 34.62184955282902], [-77.43005776322653, 34.62210972248354], [-77.43025640755496, 34.62220258268077], [-77.43041685593587, 34.62237662791623], [-77.43045734162357, 34.62241408855751], [-77.43060080901584, 34.62268344124996], [-77.43060494718446, 34.622690764781346], [-77.43060681479588, 34.62269173147719], [-77.43060646524492, 34.622704114181346], [-77.43058625238028, 34.62330618703365], [-77.43062037059138, 34.62342634241237], [-77.43068624675409, 34.62350552824669], [-77.43067587118065, 34.6237797639326], [-77.43068816022665, 34.62396130871028], [-77.43071628402421, 34.6241374847627], [-77.43074601663925, 34.62429128568117], [-77.43075629736069, 34.62433404176015], [-77.43081611532341, 34.62447827299403], [-77.43109299402911, 34.62472245903305], [-77.43112079033426, 34.62476068627546], [-77.43113601095715, 34.62478414060853], [-77.43117961130031, 34.62479884877308], [-77.43157541930792, 34.62489131371415], [-77.43174091008534, 34.62492859420709], [-77.4317638372301, 34.62493103946536], [-77.4323277613635, 34.625151712337704], [-77.43233052109969, 34.625152657153336], [-77.43233186896153, 34.625154029497224], [-77.43233588277184, 34.62515748042147], [-77.43269859236457, 34.62541875726421], [-77.43271011602194, 34.625602909828956], [-77.43278689847773, 34.62576283009442], [-77.43278988598374, 34.626419570666116], [-77.43282562040879, 34.626490274818316], [-77.43281846544414, 34.6265652718721], [-77.43279114563238, 34.62684509767591], [-77.43279076680021, 34.62779446539975], [-77.43281706277963, 34.6279696724492], [-77.43288864109857, 34.6281271817609], [-77.43294959574138, 34.62846949732965], [-77.43303781597797, 34.62864524230353], [-77.43305442179755, 34.628838741988986], [-77.4330332986565, 34.62911823478927], [-77.43301269162924, 34.629390882601825], [-77.43300172013284, 34.62953604876351], [-77.4329845447016, 34.62972061540287], [-77.43297829981535, 34.62984591548607], [-77.43298687400834, 34.630136719244454], [-77.43306671574939, 34.63036881418773], [-77.4319777183901, 34.63106861707304], [-77.4318440960532, 34.63107034639591], [-77.43098889261132, 34.63044865974342], [-77.43054115274276, 34.63015209224891], [-77.43043547393306, 34.6301253036282], [-77.42984578458768, 34.63001723534405], [-77.42927634960299, 34.62937310602925], [-77.42892177053976, 34.629318100823845], [-77.42901913175844, 34.62905194239974], [-77.42903773035816, 34.628958703852156], [-77.42883406077014, 34.628366205995924], [-77.42885112211198, 34.627818969725666], [-77.42886098438834, 34.62765792975635], [-77.428882750805, 34.62761386114079], [-77.42919652733097, 34.62715592223386], [-77.42919625658462, 34.627155292612066], [-77.4291959896969, 34.627154829471074], [-77.42893530272998, 34.62686041468301], [-77.4288514678141, 34.62666171961799], [-77.42881286845119, 34.626526067484654], [-77.42870712792293, 34.6263651636467], [-77.42861010331, 34.62621460983185], [-77.42861672949914, 34.62603446472295], [-77.42833889831972, 34.62561681398593], [-77.42846424779444, 34.625517700285], [-77.4282112471389, 34.62548020128376], [-77.4279019046894, 34.625079769924916], [-77.42782089148477, 34.624962553808174], [-77.42749680659688, 34.624790660138004], [-77.42737697664695, 34.624807122077144], [-77.42699710101992, 34.624886020064466], [-77.42682091307793, 34.62508544884116], [-77.42665170070197, 34.625295701977834], [-77.42662509136036, 34.62532663207966], [-77.42660106656253, 34.62536034770973], [-77.42639032018856, 34.62555418007342], [-77.42636598775132, 34.62574634332942], [-77.42628457305037, 34.626125449479694], [-77.42628275009498, 34.62613598842461], [-77.42628202240194, 34.62613950047263], [-77.42620967237758, 34.62623346188256], [-77.42610065173808, 34.626381975804335], [-77.4260829092933, 34.62638835150798], [-77.4258532664357, 34.62647087289166], [-77.4255543983071, 34.62650048741973], [-77.42535406199343, 34.626568102482544], [-77.42516547605541, 34.626595277877655], [-77.42451574665515, 34.626756359290646], [-77.42437760190076, 34.62684281017703], [-77.42391541483168, 34.6271656683728], [-77.42298083374081, 34.62781849986236], [-77.42293668417338, 34.6280619796011], [-77.42225067061248, 34.62832852918458], [-77.4217895562897, 34.62815787683641], [-77.42178579609174, 34.62765907386127], [-77.42155125073691, 34.62748731370889], [-77.42178137626559, 34.627073883397244], [-77.42201388690306, 34.62661705953359], [-77.42206642086605, 34.626518367466915], [-77.42215112288449, 34.62639212491526], [-77.42250558926706, 34.62573852197163], [-77.42264917977327, 34.62548343796723], [-77.4229156766092, 34.62534269003997], [-77.4231959460781, 34.625345582601796], [-77.42371231865516, 34.625236158161556], [-77.4239267455483, 34.625194563419875], [-77.42421751992848, 34.624793550023085], [-77.4242724672928, 34.624536253227014], [-77.42428208777005, 34.62449393288854], [-77.42429422517218, 34.62446067859518], [-77.42438936771961, 34.62423424141526], [-77.4244960995184, 34.62406372679578], [-77.42462255926905, 34.62389393712367], [-77.42491921946475, 34.62394317184717], [-77.42505907862285, 34.62398314596041], [-77.42519177019122, 34.6240526913177], [-77.42529424120458, 34.624152826848686], [-77.42550371572389, 34.62414586665825], [-77.42566192914053, 34.62416057608948], [-77.42575127102835, 34.62417593841711], [-77.42590107236684, 34.62414398438284], [-77.42623852833901, 34.62403508782121], [-77.42638856241572, 34.62389374701643], [-77.42649284522027, 34.623731680194325], [-77.42658527684618, 34.62348935387145], [-77.4265843074505, 34.62346873946895], [-77.42658042673601, 34.623452607757756], [-77.42660260063934, 34.62344393648019], [-77.42664686650843, 34.623266297459736], [-77.42652810942249, 34.623171629682204], [-77.42645974086298, 34.62318571891234], [-77.4261295015454, 34.62329475337368], [-77.42604593542802, 34.6233310440735], [-77.42596329872484, 34.62327645397826], [-77.42575178581083, 34.623136727436076], [-77.42559349638273, 34.62301259000333], [-77.42552257937578, 34.62295977269432], [-77.42537754266336, 34.62280969487921], [-77.42531957899165, 34.62275079665481], [-77.42529537928168, 34.62272830046157], [-77.42524328527507, 34.62267477713711], [-77.42510883621132, 34.622412220258305], [-77.42493864232009, 34.62230222153829], [-77.42493179985787, 34.62225599726478], [-77.42508884401288, 34.62211868906435], [-77.42518108803573, 34.6220914923858], [-77.425581530236, 34.6222775356895], [-77.42555094804779, 34.622468083463346], [-77.42576436782873, 34.6223017192501], [-77.4259188478366, 34.622291811409795], [-77.42602578337706, 34.62229633691661], [-77.42611790879167, 34.622232326476805], [-77.42624591263133, 34.62214002507096], [-77.42628092518127, 34.62207825337061], [-77.42627724177748, 34.62203763147901], [-77.42628031335565, 34.62189381141598], [-77.42615268455499, 34.621799212216494], [-77.4261091740435, 34.6217859718426], [-77.42604630683911, 34.62177587255047], [-77.42596202120173, 34.62168745963502], [-77.42560452345172, 34.621488569738126], [-77.42514231222037, 34.62129498735401], [-77.42504898320466, 34.62125335292885], [-77.4249405142362, 34.62121197794857], [-77.4244450421946, 34.62107727867166], [-77.42415755928178, 34.62105573572042], [-77.42384045968683, 34.62103458442935], [-77.42372545071927, 34.62104251610246], [-77.42325547485495, 34.62109412849058], [-77.4228122820732, 34.62111997081256], [-77.42270194973702, 34.62116558994714], [-77.42246628687452, 34.62131897621399], [-77.4220303164656, 34.62154991645299], [-77.42193746306098, 34.621766106577084], [-77.42191249124748, 34.62181840262389], [-77.42180670968669, 34.621876120366316], [-77.42161826053953, 34.62202512539314], [-77.42170997845923, 34.62227290662785], [-77.42158989185131, 34.62241768082357], [-77.4214157991658, 34.622356716849296], [-77.421367959693, 34.62209499782606], [-77.42136081214147, 34.621872485141765], [-77.42129584513609, 34.621572874110534], [-77.4212193461778, 34.62142716923029], [-77.42107377812842, 34.621311145951374], [-77.42080845213692, 34.62107980253099], [-77.42053983756415, 34.6211070294016], [-77.42028531601265, 34.62113196840156], [-77.42005203672359, 34.621154595628994], [-77.41972155638047, 34.62119301274228], [-77.41949691876394, 34.62121245942482], [-77.41929071303585, 34.6212353789065], [-77.41891208009224, 34.62128720238525], [-77.4187085280731, 34.621329860844], [-77.41847381026287, 34.62138405899079], [-77.41831433908948, 34.62142141902545], [-77.41813351526342, 34.62141021146924], [-77.41792014492749, 34.62149323790722], [-77.41768346897499, 34.62150027894875], [-77.41736141393636, 34.62153924493106], [-77.41713176082511, 34.621668205793355], [-77.4167704344834, 34.621837163702736], [-77.41670975468273, 34.621840517798894], [-77.41657621673815, 34.6218298245966], [-77.41637801355476, 34.62182112790344], [-77.41634336518405, 34.62180383153495], [-77.41611077640665, 34.62172293331427], [-77.41592165659159, 34.621499748491715], [-77.41575745992978, 34.62130523030825], [-77.41555478948158, 34.621008603798714], [-77.41544141856865, 34.62084199267126], [-77.4154376037379, 34.62072047196708], [-77.41545032147206, 34.620606200296905], [-77.4153845252303, 34.62006216286268], [-77.41529674400377, 34.61989164566567], [-77.41516036419206, 34.619836910910095], [-77.41505911377726, 34.619816904349754], [-77.41496325557951, 34.61979796330084], [-77.41490362558692, 34.61980033675697], [-77.41476615460647, 34.6198004894047], [-77.41462321773756, 34.61983492556257], [-77.41437197091679, 34.619910506507736], [-77.41406125170185, 34.62007001404665], [-77.41401876408895, 34.62012026495896], [-77.41397782004681, 34.620219326852165], [-77.41390408007605, 34.620172116997985], [-77.41358362724067, 34.62029347100486], [-77.41333736282192, 34.62017451589999], [-77.41324249892585, 34.62013101476261], [-77.41318939151674, 34.620105932777946], [-77.41307027079694, 34.620084776343866], [-77.41268614115694, 34.619961366942285], [-77.41240095308606, 34.61991464941441], [-77.41205709272094, 34.61988051570809], [-77.41161253590079, 34.61984990536797], [-77.41138942126004, 34.6198468486375], [-77.41098623133429, 34.619839334941474], [-77.4108241264069, 34.619836385952624], [-77.41061661392706, 34.619941604119134], [-77.4100357343379, 34.61996474308813], [-77.40984353274408, 34.62003669025634], [-77.40964153202435, 34.61998476649407], [-77.40953936507445, 34.61998360935972], [-77.40956820935767, 34.61986940765408], [-77.40958888654, 34.61949848486652], [-77.40959879476921, 34.61939445934668], [-77.40961525375583, 34.61901346027702], [-77.40965344679621, 34.61859637926658], [-77.40965255054418, 34.6185834993865], [-77.40965072811615, 34.61857367840509], [-77.40959129973314, 34.61816776051086], [-77.40951430981207, 34.61789105684056], [-77.40945077513106, 34.61755831015506], [-77.40938082588967, 34.61734898157584], [-77.40936707450294, 34.617221652420895], [-77.4092868871278, 34.61693796130859], [-77.40928345414596, 34.61689917083206], [-77.4092469749833, 34.61685362691827], [-77.40898414847571, 34.616840162061614], [-77.40856256359197, 34.61672991859777], [-77.40845857798048, 34.61668898845072], [-77.40770195368593, 34.61677631752053], [-77.40767020641414, 34.61676958502181], [-77.40764987588427, 34.61677153716952], [-77.40756801264962, 34.616761453276794], [-77.40703772181546, 34.61667005788404], [-77.40688181725204, 34.61665970878781], [-77.4067025715666, 34.61646176850402], [-77.4066696222687, 34.616270464778516], [-77.40640273936975, 34.61608045869151], [-77.40626337794077, 34.61591746867562], [-77.4060933777982, 34.6158359609849], [-77.4058397525917, 34.615888516343546], [-77.40565126338309, 34.61581594402121], [-77.40530499087663, 34.61559757307259], [-77.40466273419118, 34.615639760323724], [-77.40451662220451, 34.615620866756814], [-77.40436799278594, 34.61568500526122], [-77.40384880234366, 34.61572966497607], [-77.40372825867487, 34.615777330168385], [-77.40361263569203, 34.61575843678748], [-77.40363217014904, 34.615631082455735], [-77.40361722338834, 34.615513655397706], [-77.40347881430027, 34.61507270133295], [-77.40319114916855, 34.614845562204394], [-77.40307717625835, 34.614714090707714], [-77.40293984970364, 34.61471006761989], [-77.40262395906572, 34.61450282024561], [-77.40260273932908, 34.614444401549726], [-77.40248324587344, 34.61409854615483], [-77.40239513087293, 34.61384880362908], [-77.4023126287642, 34.61369858741803], [-77.40215146080216, 34.61361538200036], [-77.40195910573631, 34.613532202970504], [-77.40175728134874, 34.61344149060394], [-77.40165252243571, 34.613369246949], [-77.40150203749096, 34.61324130702795], [-77.40136309988938, 34.61300601774464], [-77.40121694349787, 34.61274036253843], [-77.401161619336, 34.61259091922359], [-77.40096892143377, 34.61244813416643], [-77.40082520095959, 34.612369683460216], [-77.40064819628248, 34.61231952458898], [-77.40057475003279, 34.61231283165411], [-77.40034106457883, 34.61228471996183], [-77.40021043866713, 34.61227140170984], [-77.4001805797785, 34.61226161754666], [-77.40010461912158, 34.6122370090164], [-77.39978640988241, 34.61222912664171], [-77.39959735939267, 34.61217106222837], [-77.39922042487581, 34.61202180281672], [-77.39906561212084, 34.61197138628627], [-77.39899807381683, 34.61195571407609], [-77.39889833426108, 34.61196083042045], [-77.39873866052346, 34.612091295983156], [-77.39879526259892, 34.612301579565795], [-77.39871157309736, 34.61263576294919], [-77.39867070061568, 34.61295024516178], [-77.39861552028954, 34.61337023655194], [-77.39861375156786, 34.613383032622956], [-77.39861251648826, 34.613392516644836], [-77.39860387666172, 34.61340308183165], [-77.39859067266758, 34.61340058376514], [-77.39820970319721, 34.61330528436133], [-77.39807214669948, 34.61318474690308], [-77.39742134952722, 34.61338587811062], [-77.39725720180095, 34.61333093169251], [-77.39702717342064, 34.61338787141334], [-77.39683740695233, 34.61343484518774], [-77.39663299454006, 34.61345361105408], [-77.39643139538938, 34.61349037104937], [-77.39605875053249, 34.61355759679716], [-77.39584463435725, 34.61359218225329], [-77.39560009708546, 34.61365650773501], [-77.39545045211868, 34.613679089699545], [-77.39532889070506, 34.61372587115087], [-77.39517419475314, 34.61375209447127], [-77.39505626853196, 34.61377381823554], [-77.39491289262989, 34.613762363319594], [-77.39481927788876, 34.613760988516574], [-77.39466209550469, 34.613694295425724], [-77.39441777746808, 34.61356362393602], [-77.39433115393865, 34.61350801719107], [-77.39426793092068, 34.61350505519508], [-77.3941200209738, 34.61344724295124], [-77.39407084798506, 34.6134280231687], [-77.39404913395772, 34.61342788745528], [-77.39387376006735, 34.61342165722499], [-77.39362175024493, 34.61352527544295], [-77.3934795733004, 34.613545150232106], [-77.39335949804774, 34.61358690012778], [-77.39314080037525, 34.613747765844714], [-77.39310315759008, 34.61377234590645], [-77.39308537476481, 34.613791896909255], [-77.39297999676708, 34.61398323793176], [-77.39297349272084, 34.61407597884974], [-77.3929594581032, 34.61419848432162], [-77.39297371405637, 34.61431664925729], [-77.39308530666504, 34.61459636781369], [-77.39308759734497, 34.614602109659266], [-77.39308896745064, 34.61460437989171], [-77.39308530523843, 34.614613279820425], [-77.39297203279534, 34.61492383464529], [-77.39269108920574, 34.614988713904594], [-77.39261945393017, 34.61501949548469], [-77.3923743879457, 34.61504852349587], [-77.39229689883528, 34.61505143524807], [-77.39217379159521, 34.615028309450004], [-77.39190271473137, 34.615044012518766], [-77.39171904683712, 34.61499973577763], [-77.39150854356858, 34.61491001030794], [-77.39125268214856, 34.615018144296656], [-77.39111434185818, 34.61507133873204], [-77.39099308727057, 34.615037179114175], [-77.39048068130244, 34.61514709427939], [-77.39032595862551, 34.615179952845786], [-77.39002529368307, 34.61536991764501], [-77.389887837338, 34.61544320140832], [-77.3898338286343, 34.61549827484406], [-77.38953750460064, 34.615830805705464], [-77.38947251369719, 34.61590494191221], [-77.3894660244993, 34.61597586704361], [-77.38946479204907, 34.61605433004865], [-77.38944530492661, 34.61640342199199], [-77.38953172446756, 34.61680943872789], [-77.38953206996892, 34.61681548194294], [-77.38953196967437, 34.616821323658165], [-77.38953736445046, 34.616946111060834], [-77.38954888092168, 34.617225185009104], [-77.38954996042702, 34.617237470859315], [-77.38958487678067, 34.617283655755635], [-77.38971189666576, 34.617450646615204], [-77.38978135632784, 34.61746697293383], [-77.38993149365471, 34.61748707965482], [-77.39006992008927, 34.61743799440462], [-77.390168098017, 34.61740318104209], [-77.39032572354583, 34.61720056819142], [-77.3903987427089, 34.617115106231076], [-77.39051751017325, 34.61687993944514], [-77.39069348297514, 34.616648045022664], [-77.39071998366224, 34.61661756476121], [-77.39078520383723, 34.61663482139708], [-77.39101321188909, 34.61671068193818], [-77.39111416754545, 34.61669890100412], [-77.39119772505356, 34.61666533878379], [-77.39170635350646, 34.6167133298631], [-77.39190255004681, 34.61673051816517], [-77.39221795538697, 34.61676796344565], [-77.39229673884496, 34.61677409353628], [-77.39234967247714, 34.61677681418961], [-77.39248430913743, 34.61681441445192], [-77.3926909236077, 34.61686775109613], [-77.3928841071704, 34.616973257497555], [-77.39308509997979, 34.617072833918726], [-77.39320322636053, 34.6171353240521], [-77.39337151983334, 34.61722712291311], [-77.39347927608117, 34.61730629778726], [-77.39385539448499, 34.61748531058914], [-77.39387345768364, 34.61749288133225], [-77.39390577511585, 34.61749339782443], [-77.39426765458651, 34.617481191433654], [-77.39453799862618, 34.61750081657653], [-77.39466184528344, 34.617562882867986], [-77.39482974650883, 34.61750618706065], [-77.39488248439422, 34.617504681175504], [-77.39504765284049, 34.617709473670075], [-77.39505298210776, 34.617717730957644], [-77.39505232680881, 34.617721816329045], [-77.39485734573114, 34.618381131230976], [-77.39474756485325, 34.61861091473039], [-77.39450420367297, 34.61890088339837], [-77.39426754791853, 34.61906149916129], [-77.39402811104472, 34.61930593639542], [-77.39384234542521, 34.61959058736836], [-77.39403295471567, 34.61981571051099], [-77.39402569704279, 34.619988719761714], [-77.39407074070809, 34.620194910755544], [-77.394070311189, 34.620406856591295], [-77.39426744850003, 34.620558803407974], [-77.39463169485902, 34.620782734137926], [-77.39466164491644, 34.620788711858644], [-77.39471507674193, 34.6207960006646], [-77.39505585250097, 34.6208584985231], [-77.39525552470295, 34.62087003962601], [-77.39582734365982, 34.621002630163474], [-77.39583687589189, 34.62100921785032], [-77.39584426817981, 34.62102434027223], [-77.39604567936104, 34.62160333621482], [-77.39613528317268, 34.62180736417585], [-77.39637392193578, 34.62205160485504], [-77.39656627384294, 34.62216978186083], [-77.39660156694993, 34.622198168227634], [-77.39663264957217, 34.622204786903716], [-77.39691420376964, 34.622240941483454], [-77.39721589662688, 34.622279681198144], [-77.39742108280169, 34.62229295368303], [-77.39755223236105, 34.622310911434454], [-77.39774553734779, 34.62242428136055], [-77.39781529659372, 34.62248699669929], [-77.39794821466663, 34.62267646554886], [-77.39820950839963, 34.62290966064803], [-77.39833749534876, 34.6230502054435], [-77.39859441610244, 34.62315099431502], [-77.39873586980151, 34.62341284499448], [-77.39883243659051, 34.62378756182396], [-77.398795028031, 34.62397120550045], [-77.39876234748938, 34.62422964509243], [-77.39877020863513, 34.62542782384567], [-77.39856064626785, 34.62570329917718], [-77.39742098063459, 34.62634799716238], [-77.39712212795436, 34.62591076368551], [-77.39704113580032, 34.625513345833895], [-77.39695040603506, 34.62508638582895], [-77.39678369416926, 34.624947654320295], [-77.3966325643652, 34.6246155593972], [-77.39649057835659, 34.62430355569019], [-77.3963804454018, 34.624047891373245], [-77.39631725991859, 34.62390397883738], [-77.39628569935056, 34.62385755195055], [-77.39623836819933, 34.62377605795193], [-77.39609345124754, 34.623511682703594], [-77.39599262858087, 34.62336632486254], [-77.39584417072521, 34.62315228776871], [-77.39582476848705, 34.62312585770018], [-77.39563951573842, 34.6229484208392], [-77.39526414517005, 34.622782130683404], [-77.39515260960158, 34.622693898279], [-77.39505575036821, 34.62269902773516], [-77.3949463814998, 34.622710164368954], [-77.394389263291, 34.622776939196555], [-77.39426730426285, 34.6227760682972], [-77.39402607260477, 34.62270084891267], [-77.39377032951849, 34.622683634005384], [-77.39347887936064, 34.62254237383883], [-77.39327345928658, 34.622441276827445], [-77.39319383880975, 34.62223151592427], [-77.39294132110291, 34.621997775638505], [-77.39269051386769, 34.62164816967322], [-77.39255808633885, 34.62161666840905], [-77.39249145870713, 34.62148364848514], [-77.39246439905072, 34.621243986807514], [-77.39238300954624, 34.62098138973916], [-77.39228876408188, 34.62066373368059], [-77.39221788422314, 34.62033396263631], [-77.39220838935923, 34.62025075327559], [-77.3920717535101, 34.62002845899332], [-77.39197595565119, 34.61985969594761], [-77.39190225885973, 34.61976646854391], [-77.39166049796903, 34.6193164676864], [-77.39151392517189, 34.619077172026245], [-77.39150812106391, 34.61907006666709], [-77.39133775892788, 34.61886150952926], [-77.3912784753428, 34.61886376000458], [-77.39111393619709, 34.618887220758495], [-77.39093969170044, 34.61892305458869], [-77.39089643786095, 34.618931949833765], [-77.39071970699939, 34.61912382520068], [-77.3906719116164, 34.619198566602286], [-77.39068665548164, 34.619585466682935], [-77.39069047167104, 34.61965188411692], [-77.39087289724044, 34.620018727552875], [-77.39091239089686, 34.62022994930733], [-77.39096405509295, 34.62069350275145], [-77.39094086430347, 34.62085806630498], [-77.39111366543507, 34.6214914397523], [-77.39128874100348, 34.6214684969553], [-77.39150787615816, 34.62153985755413], [-77.39162727322653, 34.62160824419383], [-77.39176210836979, 34.621739545182606], [-77.39156530284431, 34.622103654987626], [-77.39150781826785, 34.62213021824684], [-77.39138731433505, 34.62219718266668], [-77.39131069881975, 34.6222318444203], [-77.39114630359423, 34.62210215506267], [-77.39115764151501, 34.62205309634901], [-77.39111361534222, 34.62197810798345], [-77.3910623133412, 34.62174497239829], [-77.39104349950034, 34.621692407221026], [-77.39032524336717, 34.621409884079064], [-77.39000233831767, 34.621494748195104], [-77.38993101861469, 34.62148947315777], [-77.38963922429976, 34.6217845045211], [-77.38953675637293, 34.62187048254746], [-77.3895152168599, 34.62188953175067], [-77.38950824603116, 34.62191373196043], [-77.38951416214553, 34.62193720399469], [-77.38953673714407, 34.6220287658877], [-77.38965262099948, 34.622617173439124], [-77.38967916089432, 34.62273822954429], [-77.38986658014949, 34.623066579464236], [-77.38990334493435, 34.62313048020409], [-77.38990564569728, 34.62315726479785], [-77.39011195107358, 34.623524975742384], [-77.39002481808403, 34.62386078885328], [-77.39032498214058, 34.623747578092306], [-77.3905238401428, 34.623890166648664], [-77.39045896661672, 34.62417973915973], [-77.3905364292747, 34.62431291984121], [-77.39099199106569, 34.62496572496672], [-77.39105165510381, 34.625087781064266], [-77.39110167400632, 34.62509308971232], [-77.39111329820129, 34.62510069686526], [-77.39121678310737, 34.62517543057397], [-77.39200185933008, 34.625692073350166], [-77.39208990940041, 34.625787235540834], [-77.39210145034872, 34.62600070910234], [-77.39212838350359, 34.62663082509235], [-77.39174484258051, 34.627366487631136], [-77.39171541075922, 34.62753950309659], [-77.39169279790204, 34.627767540806495], [-77.391802204555, 34.62837612614608], [-77.39176016266889, 34.62907921255075], [-77.39111278055898, 34.6303646829678], [-77.39060210773818, 34.629099197800734], [-77.39048249282204, 34.6285663767176], [-77.3898302682887, 34.62834347921192], [-77.38961427437093, 34.62784239808837], [-77.38959518959284, 34.62778146036308], [-77.38958662109243, 34.627051617567545], [-77.38959543574069, 34.62699597798502], [-77.38960620741396, 34.62691897973255], [-77.38967900788079, 34.62628856150391], [-77.38967927514045, 34.62613475674987], [-77.38965924607018, 34.626005194661396], [-77.38955369909901, 34.625322417117886], [-77.38956672553329, 34.62530184521087], [-77.38956085723746, 34.625276293903525], [-77.38953635240739, 34.62522307137379], [-77.38938246938685, 34.62490383791879], [-77.38953643829396, 34.62450459151167], [-77.38956813808738, 34.62448664261086], [-77.38963387206329, 34.62444302983657], [-77.38958902558902, 34.624392874699105], [-77.38953644577101, 34.6244421760033], [-77.38919443180404, 34.624025629306274], [-77.38914226784522, 34.624025740300205], [-77.3890668905343, 34.624019013757945], [-77.38894515497363, 34.62401699941283], [-77.38878566626009, 34.62410019827379], [-77.38874802953117, 34.624105474461906], [-77.38870988369605, 34.62415165453488], [-77.38854473696503, 34.6243811280535], [-77.3882765488398, 34.62463868360848], [-77.3880657630539, 34.62478352947705], [-77.38795946561868, 34.62487647646154], [-77.38765346929424, 34.625153060768085], [-77.38761903061776, 34.62521601325189], [-77.38746070226986, 34.625605411403846], [-77.38740723357955, 34.62586768213908], [-77.38717082416419, 34.626076023081964], [-77.38681308486969, 34.6261626381767], [-77.38638233079197, 34.62618643158109], [-77.38600828116107, 34.626217559772186], [-77.3861056908369, 34.62580070545744], [-77.3861820604333, 34.62557391778862], [-77.38638249208759, 34.625157144864275], [-77.3864447635708, 34.62496973626876], [-77.38650575301729, 34.62489391495896], [-77.38680452947155, 34.62445611472507], [-77.38683170800385, 34.62442236976139], [-77.3869386879731, 34.624232676573634], [-77.38710115720598, 34.62395896731311], [-77.38703910994454, 34.623825700760094], [-77.38690052177105, 34.62343027905466], [-77.38673510991745, 34.62316259246697], [-77.38657789046579, 34.62297518552538], [-77.38659945787818, 34.62256623654594], [-77.38695638151128, 34.62228156738935], [-77.38710481668811, 34.62218846276829], [-77.38717140785104, 34.62214505761476], [-77.38751362732614, 34.62177668215351], [-77.38753933393134, 34.621744596657344], [-77.38756569336509, 34.62169003834728], [-77.3877450755734, 34.6213187542789], [-77.38772224199208, 34.62106598238769], [-77.38775137641468, 34.62069345421449], [-77.38762223916662, 34.62048732556654], [-77.38740252417456, 34.62027038562643], [-77.38717168243976, 34.62032165814911], [-77.38700628369608, 34.62039798586209], [-77.38641372776503, 34.62066151562535], [-77.38639278509356, 34.62067485302265], [-77.38638320350378, 34.62067761623813], [-77.38637038930202, 34.62068156224383], [-77.38610324872336, 34.62082934686205], [-77.38598894974568, 34.62092661905775], [-77.38585696361964, 34.621024195753435], [-77.3855946679725, 34.62132697658261], [-77.38539567425877, 34.62144308233956], [-77.38520041013865, 34.62156761849742], [-77.3851306073014, 34.62169557641134], [-77.38497742351893, 34.62190212852528], [-77.38480609784689, 34.622100688328196], [-77.3847758308622, 34.62213868155843], [-77.38472513897216, 34.62217857647568], [-77.38452627528956, 34.62233048298895], [-77.38441182653246, 34.62238272897421], [-77.38420736495578, 34.6224733745011], [-77.38401757454484, 34.62254728185926], [-77.38389090913297, 34.62258695572231], [-77.38362332597995, 34.62268558125208], [-77.38348204959203, 34.62278228133739], [-77.38334567118238, 34.62292752410452], [-77.38322901034346, 34.623158264817555], [-77.38290496910157, 34.623365633038986], [-77.38278332219147, 34.623362911195635], [-77.3824405255941, 34.62332637477236], [-77.38210526320614, 34.62346876941442], [-77.38204626724217, 34.62347986671955], [-77.38197475925035, 34.623501046064824], [-77.38165203083511, 34.623524587979816], [-77.38160998620299, 34.62352188049438], [-77.38156475893958, 34.623483116446884], [-77.38141745225803, 34.623332451848405], [-77.38113444011333, 34.62312055451942], [-77.3808636940529, 34.62300248544432], [-77.38073176122408, 34.62303649523799], [-77.38018932414458, 34.6231338335673], [-77.38007520925986, 34.6231526390266], [-77.3799812779958, 34.62318554778359], [-77.37993204779711, 34.62329379237541], [-77.37962835138167, 34.62370556924087], [-77.37953873389698, 34.62392801504471], [-77.37948361341059, 34.62420752394161], [-77.37950019744935, 34.62439950962766], [-77.37949294289147, 34.6244285626447], [-77.37947658070357, 34.624428338335605], [-77.37928646474592, 34.62435693313059], [-77.37920108132278, 34.624340183819804], [-77.37852809229148, 34.62437759063284], [-77.37849799701644, 34.624375543330764], [-77.37846617813298, 34.62438836199375], [-77.37788588454, 34.62462768208294], [-77.37770943403058, 34.624755723216495], [-77.37736961638166, 34.624995294746604], [-77.37731512575195, 34.625035709824566], [-77.37710902825978, 34.62519606551037], [-77.37692080776606, 34.625341852952495], [-77.37686865323793, 34.62537719123632], [-77.3767907789179, 34.6254445645518], [-77.37652648404969, 34.62565826807101], [-77.37638041454143, 34.625770963702465], [-77.3761321645661, 34.625948754888576], [-77.37610497801009, 34.6259679082809], [-77.37587975196946, 34.62615314555304], [-77.37555524520104, 34.62647164863834], [-77.37543743208427, 34.6265897730369], [-77.37534347269657, 34.62668441120935], [-77.37499795935796, 34.62702906028686], [-77.37494911625764, 34.62707016257238], [-77.37479461710682, 34.627172107002835], [-77.37455479057613, 34.62734053195194], [-77.37444751091897, 34.62736479113624], [-77.37388745546376, 34.62756096998163], [-77.37382501779446, 34.62763329388147], [-77.37394689816267, 34.627976969089005], [-77.37402379504412, 34.62811290485932], [-77.37401201178604, 34.62839215092493], [-77.37410832227238, 34.62874706191389], [-77.37412458850936, 34.62880049826457], [-77.37412555849703, 34.62883754650969], [-77.37416008075854, 34.62887510827433], [-77.37434681029822, 34.62919305419236], [-77.37444420472272, 34.62929748712959], [-77.37455418275289, 34.62938720000109], [-77.37473205203352, 34.62956213193289], [-77.3748414758638, 34.62966147024783], [-77.37494832692256, 34.62977147138611], [-77.3750312818645, 34.629854239786816], [-77.375104435869, 34.62993306063156], [-77.37520784499316, 34.630063172025615], [-77.37534243976974, 34.63027817552255], [-77.37557053896131, 34.63046936249024], [-77.37569308253384, 34.630697400858026], [-77.37570866083355, 34.631089770161246], [-77.3757170814986, 34.63111850548279], [-77.37572139932668, 34.631134100738045], [-77.37573644845988, 34.63117276020218], [-77.37582777534595, 34.631428701204825], [-77.37586850803766, 34.63152125634176], [-77.37595250438827, 34.631700902162976], [-77.37606426742617, 34.63191762212781], [-77.37613046496033, 34.63207178317214], [-77.37620438518017, 34.63224235165052], [-77.37627404214057, 34.63231196903574], [-77.37652464027433, 34.63241640686791], [-77.37671152767923, 34.63247225654246], [-77.37674146836613, 34.63247814906363], [-77.37691889644216, 34.632468866352895], [-77.37712178230939, 34.6324083213733], [-77.37731323143602, 34.63222085566642], [-77.37739445103763, 34.63223805564775], [-77.37736370928684, 34.632155019091826], [-77.3773132667857, 34.632085487932315], [-77.37718235107648, 34.631897607859344], [-77.37709891830178, 34.631768597863555], [-77.37703300074622, 34.631655453466266], [-77.37691917872385, 34.63140767598373], [-77.37690807052293, 34.63138349471036], [-77.3769029136948, 34.63137226879622], [-77.37690483873472, 34.63135653489713], [-77.37691919781147, 34.631336048307226], [-77.37728093551428, 34.63085809606121], [-77.37731358702358, 34.63086136189316], [-77.37733468391076, 34.63086279721158], [-77.37740734363146, 34.63087504983722], [-77.37764407597723, 34.63090961145666], [-77.37770783608954, 34.630913922000914], [-77.37798079568219, 34.63092306970229], [-77.37810209883435, 34.63091397914371], [-77.37824003850089, 34.63090364137605], [-77.37849636883635, 34.63088443088012], [-77.37882173033611, 34.63074554304605], [-77.37889066507748, 34.63074547629057], [-77.3790365714205, 34.630797494861376], [-77.37928492177059, 34.630766774049484], [-77.37948258029465, 34.63078781797962], [-77.37956181022946, 34.630989259225245], [-77.37969392498562, 34.631378761606896], [-77.37969966797274, 34.631393962580695], [-77.37969386813147, 34.631410773089605], [-77.37956302681671, 34.63183820898487], [-77.37939494787308, 34.63198121384147], [-77.3792846056613, 34.63209503926447], [-77.37916940718489, 34.63231947534763], [-77.37920045118453, 34.632649086924715], [-77.37921545038219, 34.63273740495239], [-77.37923507534357, 34.632787736265875], [-77.3792844263538, 34.63285100422981], [-77.3796013143534, 34.63318962477375], [-77.37967861172639, 34.63322257930679], [-77.37993431023914, 34.633333779495], [-77.3800728521786, 34.633367269197294], [-77.38013302913008, 34.6333895399133], [-77.38030806643745, 34.6334291288432], [-77.38071375621429, 34.63352963085712], [-77.38086133753646, 34.63365426753026], [-77.38113675709648, 34.63360630866417], [-77.38158201865268, 34.633318750938734], [-77.38164996672674, 34.633274243204745], [-77.38169448949915, 34.63327733251641], [-77.38293633739747, 34.63336349893266], [-77.38309057040627, 34.634579789431164], [-77.38243822304017, 34.634737054958784], [-77.38165671219507, 34.634925453189084], [-77.38164962335036, 34.63492804803839], [-77.38164488320628, 34.634929686390734], [-77.38094245178232, 34.6349483420678], [-77.38086106101765, 34.63492864874527], [-77.38074686715042, 34.63494120423576], [-77.38062862746257, 34.63508119992632], [-77.38080272251838, 34.635118893340874], [-77.38086101076495, 34.63516084192109], [-77.3811251988385, 34.63557421435462], [-77.38125518681018, 34.63566315011583], [-77.38134246488946, 34.63573349003115], [-77.3814934705635, 34.63580573126127], [-77.38158977438889, 34.63585609481278], [-77.38164942559175, 34.63588497688288], [-77.38173766317948, 34.6358655592155], [-77.38204372860382, 34.63579820579947], [-77.38239627361996, 34.63572062274215], [-77.3824380307436, 34.63571143346802], [-77.3824797057554, 34.63570851479111], [-77.38322676013203, 34.63485809117854], [-77.38341826911535, 34.63488550097285], [-77.38480399044471, 34.63421821486292], [-77.38735888696412, 34.635164445283465], [-77.3879580541566, 34.63535802504502], [-77.38876919772918, 34.63473301593245], [-77.38845246823004, 34.63618455636994], [-77.38686237510397, 34.639277733815334], [-77.38538793179566, 34.64012004381242], [-77.38480300399611, 34.64010382899777], [-77.38442107155657, 34.64004080874375], [-77.38251330557615, 34.639904430196495], [-77.38183727655448, 34.63979869849577], [-77.38164861052697, 34.63986283403371], [-77.38144124896698, 34.63983560644215], [-77.38086001047162, 34.639820720695354], [-77.38053907536333, 34.63968532470004], [-77.38046573767078, 34.639675343593346], [-77.38017404901753, 34.63939231440951], [-77.38011862093701, 34.63934956854208], [-77.38007150872818, 34.639339235051345], [-77.37995839984961, 34.63930158067826], [-77.37958930850424, 34.63914667541146], [-77.37928299027102, 34.638968581282505], [-77.37897318517781, 34.638716173169556], [-77.37873274435667, 34.63849428078501], [-77.37849455405677, 34.63828663107737], [-77.37831665762464, 34.63815320308193], [-77.37800313798553, 34.63800677644025], [-77.37779521103694, 34.63794071636697], [-77.37770605652901, 34.63789872310444], [-77.37735855544132, 34.63772539680948], [-77.3773118113118, 34.63770145301428], [-77.37730063157792, 34.637695440636406], [-77.37693816910986, 34.63775786080036], [-77.37691749706545, 34.637774714557864], [-77.3766786582141, 34.63794041944787], [-77.37620107764431, 34.63818849535291], [-77.37612878290369, 34.638228733697424], [-77.37608907690766, 34.63823970765688], [-77.37534728050252, 34.638381606234205], [-77.37534014385008, 34.638383454426005], [-77.37533348666942, 34.638384108700016], [-77.374969871895, 34.63841776057808], [-77.37494583467344, 34.63842028588361], [-77.37458687739567, 34.63846073000402], [-77.374551529312, 34.6384425224386], [-77.3745053667209, 34.63846083517146], [-77.37417846895187, 34.63855760961101], [-77.37379775586814, 34.63864999813446], [-77.3737628673478, 34.638655256873086], [-77.37371256293596, 34.63867885901587], [-77.37348695975372, 34.63878470896742], [-77.37336851091098, 34.638840159444264], [-77.37318383326055, 34.63892657565009], [-77.3729741183485, 34.63913651217615], [-77.37261789466648, 34.639247926679424], [-77.37257977470851, 34.63926712377212], [-77.37251804933848, 34.63928771935743], [-77.37218540886595, 34.63946376415264], [-77.37203597105173, 34.63955436366156], [-77.37179102239082, 34.63971846363921], [-77.37173995445026, 34.639757858377735], [-77.37169065590125, 34.64008157370525], [-77.37172188226914, 34.640185018653064], [-77.37172969672305, 34.64024973942743], [-77.37179082020411, 34.64034673048347], [-77.37186360221803, 34.6405107494773], [-77.371898500876, 34.64058414691837], [-77.37201102343118, 34.640755266653514], [-77.37218492663847, 34.640985335952045], [-77.37233137746202, 34.64121317367922], [-77.37264040804834, 34.64132643950393], [-77.3727444958537, 34.64155788535084], [-77.37297331036767, 34.641765625549624], [-77.37334339978932, 34.641675887273514], [-77.37339706673374, 34.64167371637328], [-77.3737619428389, 34.64175762265508], [-77.37397304096847, 34.64198366733544], [-77.37406251270377, 34.64229457710016], [-77.37376168301964, 34.64263360449522], [-77.37357904321465, 34.64269289173752], [-77.3736051772438, 34.642884746833275], [-77.37321869204698, 34.643346863166855], [-77.3730787084683, 34.6435600699988], [-77.37298719787572, 34.64381376536029], [-77.37283160724566, 34.644604488021194], [-77.37282652924128, 34.64465878381885], [-77.37283186812098, 34.64467915372519], [-77.37261463891676, 34.645128091433776], [-77.37261290944782, 34.645131279070206], [-77.37261303122557, 34.645139308256816], [-77.37263055277359, 34.64555086529147], [-77.37271297134373, 34.64560533253143], [-77.37289480863933, 34.64572991977217], [-77.3729286704838, 34.64575457323705], [-77.37308629285484, 34.64586933186198], [-77.3731467433901, 34.645901888112604], [-77.37333087599885, 34.646014797762646], [-77.37372526810388, 34.64616426883774], [-77.3737869533089, 34.646168943861554], [-77.37382009964053, 34.64619434499772], [-77.37392645422302, 34.646216665989904], [-77.3743504662692, 34.646292362359205], [-77.37445194060619, 34.646291384357454], [-77.37462785822385, 34.646339344134674], [-77.37479302639431, 34.646395265443175], [-77.374868533885, 34.64641475275659], [-77.37512879415158, 34.64647273276778], [-77.37540101237809, 34.64650858548832], [-77.37545677664893, 34.646511543019706], [-77.37554396655061, 34.646527021014016], [-77.37577640167801, 34.646508849719545], [-77.37593509584265, 34.64659923698792], [-77.37641603871917, 34.64667360652029], [-77.3764479329121, 34.646663747087], [-77.37647952423394, 34.64666938759718], [-77.37658088015954, 34.64669558871405], [-77.37698743589742, 34.64681190502648], [-77.37712751600293, 34.64685860286107], [-77.3774941408433, 34.646956813473096], [-77.3778126914423, 34.64708120524705], [-77.37828979936432, 34.64730453357092], [-77.37842905041217, 34.64740221552485], [-77.37853731807961, 34.64749963696519], [-77.37883060253523, 34.6475921456088], [-77.3792809691773, 34.64777858377821], [-77.37944714631945, 34.647809348377095], [-77.3799268227196, 34.64791917713365], [-77.38002352644085, 34.64795486882678], [-77.38006960517116, 34.648002984777996], [-77.38057596123915, 34.648129607117916], [-77.38085827214354, 34.648097255667196], [-77.38119157457923, 34.648095837383366], [-77.38128740737191, 34.64811029084714], [-77.38164692100256, 34.64829056615559], [-77.3818252078012, 34.648302889740194], [-77.3819213083735, 34.64848099770205], [-77.38187033723487, 34.648728967947974], [-77.38193555367292, 34.64932807237364], [-77.38208316883166, 34.6496859654795], [-77.3824352847341, 34.65002438057484], [-77.38247638990617, 34.650055027245735], [-77.38257683734967, 34.65008481700873], [-77.38299926065599, 34.65026585962935], [-77.38322387302712, 34.650682175983135], [-77.38349019463787, 34.65080236215957], [-77.38341458616947, 34.651018640446566], [-77.38350533120975, 34.651346167231665], [-77.38391468437563, 34.65159033506628], [-77.38399722684737, 34.6515948121975], [-77.38401243112278, 34.6515956417336], [-77.38474552329633, 34.651530530453634], [-77.38480114463673, 34.651630712626734], [-77.38534866823085, 34.652232861074545], [-77.38547182181208, 34.65234208487284], [-77.38558970337262, 34.65271938196093], [-77.38587053808654, 34.653006798580826], [-77.3859839577929, 34.65341503142896], [-77.38637829255306, 34.65374162732434], [-77.38699153593072, 34.653883316588484], [-77.38765725049424, 34.6541262830215], [-77.38795569986706, 34.65432905913756], [-77.38805635081319, 34.65439010008564], [-77.3888564386633, 34.65500328819191], [-77.3895330659227, 34.65556072940929], [-77.38984138678758, 34.65583112728251], [-77.39008592252404, 34.65689883653857], [-77.39111046366807, 34.65698354971744], [-77.39138126894963, 34.65730746907114], [-77.39222025285814, 34.6576900408509], [-77.39289779003786, 34.6578868635959], [-77.3937452869273, 34.658295081629035], [-77.39444908613501, 34.65862414835415], [-77.39465611136906, 34.65904749625484], [-77.39364200415876, 34.65980126457561], [-77.39350967055617, 34.659885105764225], [-77.39346493337104, 34.65990550413583], [-77.39342268500059, 34.65990869935772], [-77.39274935152463, 34.660231003077364], [-77.39247321881551, 34.66026156955218], [-77.39202721274883, 34.66030256253113], [-77.39186751818275, 34.6602843573411], [-77.39152103232189, 34.660306991217645], [-77.39095735024526, 34.66029132416871], [-77.39075589156897, 34.66026791210069], [-77.39055790266707, 34.660259036939095], [-77.38973757828543, 34.66038035852327], [-77.38950650052702, 34.66045008886182], [-77.38901899310412, 34.66065601596012], [-77.38883144813333, 34.660714933728975], [-77.38869014890507, 34.660728169860256], [-77.38820357564067, 34.66081695623071], [-77.38757056393379, 34.66098326013367], [-77.38755696610001, 34.66098362760567], [-77.38754418463063, 34.660988656415206], [-77.38710502355113, 34.66134190295912], [-77.3867916114377, 34.6615888607095], [-77.38678673495735, 34.66159345746477], [-77.38677617435526, 34.66161326848967], [-77.38654380505864, 34.662016206646456], [-77.38647635151274, 34.66211965096079], [-77.386494883765, 34.6622062457275], [-77.3866012173938, 34.6622169362189], [-77.38683118991295, 34.66227089674723], [-77.38689017332949, 34.66229603767002], [-77.3871466923217, 34.66239927208793], [-77.38722842899895, 34.66242976556451], [-77.38738941595531, 34.66248139257866], [-77.38758500052002, 34.66254938344342], [-77.38768968307652, 34.66259018525878], [-77.3879167844811, 34.66265251214443], [-77.38794861461956, 34.66266357591119], [-77.38795902315783, 34.66269308080469], [-77.38804922223625, 34.66271229915141], [-77.3882270213702, 34.662800607935374], [-77.38827630579348, 34.66280544161104], [-77.38835590328551, 34.66283577551042], [-77.38830573029945, 34.66293961629829], [-77.38816424622411, 34.66301721801249], [-77.38801190078581, 34.66300913412591], [-77.38784929234819, 34.66307171052666], [-77.38770847685282, 34.66304836317957], [-77.38756845623801, 34.66300847757421], [-77.38709216494416, 34.66314021843206], [-77.38693523234778, 34.6631288949261], [-77.38683847457807, 34.66312448213269], [-77.38663576006257, 34.66312996268414], [-77.38634208899703, 34.663113527866585], [-77.38634133477103, 34.66311361574074], [-77.38633990209696, 34.6631132351724], [-77.38609847756152, 34.66290592656378], [-77.38608726447788, 34.66288769430392], [-77.38594046829289, 34.66268080172903], [-77.38594423800185, 34.66263043851442], [-77.38589726059647, 34.66258140930307], [-77.38558476391107, 34.662513051669826], [-77.38530834477633, 34.662548948232086], [-77.38477054009658, 34.66235167521617], [-77.38476713025133, 34.662351916020306], [-77.38476076825815, 34.662350138488705], [-77.38422393547917, 34.66216171891966], [-77.38406142186959, 34.66210932818218], [-77.38395015605491, 34.66207415131432], [-77.3837642450523, 34.66210500448004], [-77.38355739897194, 34.66239704583961], [-77.38349002416452, 34.66250003086448], [-77.38345908232569, 34.66257332098995], [-77.38318967393543, 34.663059324015734], [-77.38301898818028, 34.66335869172605], [-77.3828933372277, 34.66358749960955], [-77.38250127304053, 34.66397633392711], [-77.3823883138915, 34.66407587541099], [-77.38232403569715, 34.66415322925672], [-77.38205866739627, 34.66442178767157], [-77.38204296987631, 34.66445273183417], [-77.38192877386936, 34.664695010801225], [-77.38198220479904, 34.66489382984729], [-77.38203825181317, 34.66492364916958], [-77.38220818354202, 34.6649873876743], [-77.38230253119038, 34.66504138464359], [-77.38240345881867, 34.665117102860755], [-77.38258287528353, 34.665219736933054], [-77.3827182486179, 34.665291929479466], [-77.3828719511016, 34.665391362636086], [-77.38310998356056, 34.66550729503121], [-77.38322754755218, 34.665599125406494], [-77.38348495122877, 34.66570777453771], [-77.38349535894312, 34.66570732204234], [-77.3835500033664, 34.66574350948051], [-77.38374613697745, 34.665874281543935], [-77.38376425931716, 34.665886925510115], [-77.38378697324623, 34.66590154774119], [-77.38400257463489, 34.66602171930234], [-77.3840597679228, 34.6660535974781], [-77.38413763510346, 34.66609699857712], [-77.38426013737683, 34.66616527815815], [-77.3843696113542, 34.66620922759558], [-77.38465423407983, 34.66626961519963], [-77.38474859778, 34.666311597208676], [-77.38481120871134, 34.666328391634586], [-77.38491955793762, 34.66631919206138], [-77.38541128817099, 34.66632242975242], [-77.38563535702633, 34.666315489174565], [-77.38576888748948, 34.66631426873483], [-77.38601210938782, 34.66631390498751], [-77.38627769053727, 34.66631663485658], [-77.3863094872487, 34.666320105298475], [-77.38636980999351, 34.66632831294497], [-77.38659790207643, 34.6663572282294], [-77.38672410881199, 34.66636705530604], [-77.38714572294278, 34.6663778731465], [-77.38719335969098, 34.6663672033719], [-77.38723392391607, 34.66636863800013], [-77.38776482753035, 34.666328953568005], [-77.38780043291045, 34.66632654454359], [-77.38780351276594, 34.666326470086354], [-77.38780791032832, 34.66632664854445], [-77.38839919225123, 34.66633567150751], [-77.38887415009705, 34.666288029852055], [-77.3890083177011, 34.66629847369106], [-77.38913921468102, 34.666296730822054], [-77.38935109759663, 34.66625714126887], [-77.38968537467309, 34.66617312155996], [-77.38993059355064, 34.666095217806436], [-77.390258911594, 34.66609443395897], [-77.39035051972212, 34.66608886425596], [-77.39039248124428, 34.66610282236152], [-77.39090366009992, 34.66627185070826], [-77.39093289050061, 34.66629024225385], [-77.39096740247885, 34.66629544798427], [-77.39147324766753, 34.6664806107807], [-77.39151172100627, 34.66650384399199], [-77.3915436584222, 34.666490251356244], [-77.39159977672043, 34.66648546889461], [-77.39199995643278, 34.66648869660528], [-77.39215411744814, 34.666498083134734], [-77.39236855926002, 34.666553523764264], [-77.39245531688042, 34.666564219659136], [-77.3925191051116, 34.66659001562782], [-77.3927411950789, 34.666683231636306], [-77.3929419566128, 34.66676069001913], [-77.39312003642178, 34.66682519087862], [-77.39332103194612, 34.66689337524513], [-77.39352958351363, 34.66696191989995], [-77.39361342231852, 34.66698991877813], [-77.39369392563849, 34.66701609654609], [-77.39390625933694, 34.66708492125924], [-77.39413013235922, 34.667157758555575], [-77.39426401719973, 34.66720077960118], [-77.39449711202388, 34.66725705807069], [-77.39479615476058, 34.66732333684403], [-77.39479814657429, 34.667323772714255], [-77.39480058402283, 34.667324440302494], [-77.39509221893812, 34.667414516510675], [-77.39533500267376, 34.66745687144105], [-77.3954133899122, 34.667411731570084], [-77.39554626766586, 34.667308260992804], [-77.39564804680839, 34.6672208366368], [-77.39585563473067, 34.6669910478504], [-77.39592409901948, 34.666924261005285], [-77.39605302053151, 34.666926540286624], [-77.39655911692498, 34.666774421165954], [-77.39695894418064, 34.667243744753655], [-77.3969995599328, 34.6672998947373], [-77.39702937006646, 34.66736283738794], [-77.39712425296656, 34.66786078258826], [-77.39715317308787, 34.66812845662898], [-77.39715564705537, 34.6681513535832], [-77.39716091336197, 34.66820009469337], [-77.39718254375063, 34.66844034902949], [-77.39713116375447, 34.66858395380082], [-77.39728400646715, 34.66869553888809], [-77.39731377644169, 34.668730945029274], [-77.39754011720174, 34.66882068963191], [-77.39756749885147, 34.66882282229055], [-77.39762134945134, 34.6688258147938], [-77.39788078431822, 34.66884726625251], [-77.39813013219185, 34.669037924409395], [-77.3985297256127, 34.66881893074248], [-77.39857551484258, 34.66932046402574], [-77.39874288734484, 34.6695458117639], [-77.39915113130752, 34.669973009013404], [-77.3994407219246, 34.670097817175275], [-77.39962765233264, 34.6704147244281], [-77.39974442716485, 34.670618181049896], [-77.39983351332354, 34.670953762818726], [-77.39985358232711, 34.67101897351773], [-77.39988466636171, 34.671063853525325], [-77.40002031898746, 34.671395747331715], [-77.40016052825726, 34.671719578465456], [-77.40021580930973, 34.67184596715708], [-77.4003525756248, 34.67214980560635], [-77.40042403375489, 34.67237097495773], [-77.40059100331064, 34.67276271670832], [-77.40064747010659, 34.67291944900836], [-77.40068496441577, 34.673021468054195], [-77.40073736141211, 34.673304472104874], [-77.40074200378146, 34.67332100960017], [-77.40074301389781, 34.673325921118206], [-77.40079081707799, 34.67361767045344], [-77.40083402300664, 34.67373428467108], [-77.40089723707162, 34.67391755623841], [-77.40096659773681, 34.674125311108455], [-77.4010697565166, 34.67427446388541], [-77.40111425288052, 34.674510047716524], [-77.40111926874107, 34.67467768604], [-77.40110849810429, 34.674847171051915], [-77.40091683569136, 34.67509474202837], [-77.40081631309778, 34.675304033082114], [-77.40071221192017, 34.67550821919034], [-77.40069845215054, 34.67557613247946], [-77.40066782057303, 34.67581119759889], [-77.40066861528135, 34.67581278552652], [-77.4008089572811, 34.67597636525525], [-77.40091229599206, 34.67607759424784], [-77.40113422773445, 34.67628701902688], [-77.40116385315508, 34.67631521869359], [-77.401258988351, 34.67640288703167], [-77.40141957639668, 34.67653846488386], [-77.40149807390814, 34.6766609770957], [-77.4014586254456, 34.6770443626838], [-77.40143604618297, 34.67719840770892], [-77.4014095963202, 34.67739760225013], [-77.40112703785586, 34.677649384083566], [-77.40108303764855, 34.67809367341897], [-77.40110607028356, 34.67820118783002], [-77.4010440092285, 34.67829600404745], [-77.40072209245318, 34.678946205206465], [-77.40064248472684, 34.67913561665092], [-77.40063328964845, 34.679153982906755], [-77.40061583353518, 34.67918119182816], [-77.40064110184551, 34.67922578120794], [-77.40064515232612, 34.67961528826937], [-77.40068706353642, 34.67973195088122], [-77.40086096044926, 34.67997160248132], [-77.40104060169854, 34.68005877200093], [-77.40127999122795, 34.68017869048131], [-77.40132033436498, 34.680199179166564], [-77.40135021923203, 34.68021386497788], [-77.40159589027246, 34.68035400591641], [-77.40181111461439, 34.6804679554323], [-77.40213116868266, 34.68071832803075], [-77.40237022772203, 34.680880254507244], [-77.40257475193569, 34.68104210199483], [-77.40264784967647, 34.681146864418736], [-77.40283570729459, 34.68122746458836], [-77.40319234044428, 34.681479411075834], [-77.40341568923357, 34.68158400426457], [-77.40375630858486, 34.68174472813209], [-77.4039114050823, 34.6818235693068], [-77.40415720804053, 34.68189298225705], [-77.40434969404804, 34.68190849410814], [-77.40466867169363, 34.6819540353783], [-77.40495971471978, 34.6820148318614], [-77.4051323617814, 34.68199184471138], [-77.40532659875419, 34.68191499653281], [-77.40551056746173, 34.681862348571244], [-77.40566953125955, 34.681776616976], [-77.40586821125274, 34.681699213498966], [-77.40604148434763, 34.68160606417061], [-77.40646378640072, 34.68124684008224], [-77.40651172785871, 34.68125553923468], [-77.40655224239391, 34.68122568994147], [-77.40711723125682, 34.68120322046513], [-77.40738858129791, 34.6811935849132], [-77.40774586152514, 34.68124527808269], [-77.40818710058748, 34.68137904518119], [-77.40830809166255, 34.681516614824915], [-77.40854890702516, 34.68159534465802], [-77.40890401387806, 34.681489605774516], [-77.40869240716964, 34.68116825266075], [-77.40868023250655, 34.681131730467285], [-77.40847806039599, 34.680929707311954], [-77.40841590759224, 34.68083725632603], [-77.40836832692207, 34.68074301337086], [-77.40833657290837, 34.68049982263868], [-77.40831462281585, 34.68043316777665], [-77.40819533823039, 34.680123348554886], [-77.40811137385856, 34.67998316967303], [-77.40793494946709, 34.679842816381], [-77.40784909142637, 34.67978249007798], [-77.40778393006751, 34.67976187133662], [-77.40756545083187, 34.6796555622634], [-77.40722416054862, 34.679428219126], [-77.40701438121923, 34.679345737730166], [-77.40687211448241, 34.679249562311675], [-77.40658308923258, 34.67899996684779], [-77.40679506004606, 34.678726233877846], [-77.40674225592264, 34.678411058487434], [-77.40698493264861, 34.67802235107061], [-77.40683457211273, 34.67775401243995], [-77.40668383753722, 34.677542753350835], [-77.4062967794137, 34.67739839455329], [-77.40616313070932, 34.67731363278446], [-77.406025094089, 34.67723022075002], [-77.40584908127308, 34.6770656754679], [-77.40580112845672, 34.67701830709399], [-77.40581316278386, 34.676855731636664], [-77.40578311771696, 34.67657948493682], [-77.40581859040086, 34.67649587141716], [-77.40582273884473, 34.676387297300025], [-77.40595042800247, 34.67606335537677], [-77.40590047940236, 34.67596540100944], [-77.40587279157705, 34.675720964487255], [-77.40582018029201, 34.675378162401856], [-77.4060265487795, 34.67513892915328], [-77.4056892343379, 34.67507116324445], [-77.40514052372183, 34.67461586957626], [-77.40479499054433, 34.67390105567727], [-77.40477810304367, 34.67387439117521], [-77.40519339451663, 34.6731129419898], [-77.40535410770555, 34.672978494173975], [-77.40547660356401, 34.67282808419398], [-77.40553965343086, 34.67266403482906], [-77.40538431499706, 34.67242993356378], [-77.40526147542182, 34.67233374726635], [-77.40521358523388, 34.67228864605559], [-77.40496248024988, 34.6720121433333], [-77.40475350502395, 34.67166484397901], [-77.40474874525994, 34.671654973607595], [-77.40473953404295, 34.67164510111429], [-77.40445119515583, 34.671332767194826], [-77.40426857508302, 34.67112686318671], [-77.40396660506323, 34.671105668751395], [-77.40363673913603, 34.671096120228], [-77.40349552181058, 34.67108311450239], [-77.40317127103215, 34.671096127613914], [-77.40305804942788, 34.67111555354717], [-77.40299385367268, 34.67110352411941], [-77.40293594823541, 34.67107219873799], [-77.40285535031839, 34.67098553563757], [-77.4025910941422, 34.670769724730064], [-77.4024823428581, 34.67065735603357], [-77.40224749450572, 34.67046672668561], [-77.40194473577539, 34.67030130017368], [-77.40180041535552, 34.67020689527354], [-77.40168038224137, 34.6701079145339], [-77.40158650017861, 34.66998220297869], [-77.40171813173123, 34.669794892512186], [-77.40176247599491, 34.66974385269973], [-77.40182115259111, 34.66975191829136], [-77.40208410628148, 34.66982013312672], [-77.40230648438353, 34.66988575835841], [-77.40245986663912, 34.669931809412574], [-77.40267423382036, 34.669994850283544], [-77.4028646667621, 34.67005085194823], [-77.40318532681894, 34.67007551170988], [-77.40329043975649, 34.67007953451242], [-77.40333426811961, 34.67007099528943], [-77.40340049830716, 34.670058091233884], [-77.40395071679004, 34.670012053133156], [-77.40420891429308, 34.670005644150486], [-77.40440460332388, 34.670013207973156], [-77.40458904873928, 34.67002033709952], [-77.40473675461902, 34.6701210752942], [-77.40491771059776, 34.67024548786562], [-77.4051247059103, 34.670383143620825], [-77.40550007061584, 34.67062178750144], [-77.40566624282043, 34.67072566151546], [-77.40577584369183, 34.67078016384743], [-77.40592323798595, 34.670941173789345], [-77.40611173587139, 34.67108637216058], [-77.40618371710357, 34.67115128088265], [-77.4063892875246, 34.67132847467826], [-77.40645787762897, 34.671388304292776], [-77.40648739918062, 34.67141821418059], [-77.40668591488182, 34.67162966758539], [-77.40683961825854, 34.67167538480686], [-77.40706055845418, 34.671678547037224], [-77.40731138756975, 34.67147856844909], [-77.40735806088547, 34.67144340039185], [-77.40736599857301, 34.671430075009894], [-77.40740510814742, 34.67135874684192], [-77.40758350970385, 34.671037743766654], [-77.4076138014454, 34.670973785120594], [-77.40766503465132, 34.67088469068258], [-77.40780546706984, 34.67065269105953], [-77.40789528682308, 34.67051318152095], [-77.40804420765463, 34.670295098490826], [-77.40820938086222, 34.67006399224351], [-77.40848862053463, 34.66964840843629], [-77.40850890921378, 34.66960970547032], [-77.40852141636636, 34.669579480310524], [-77.40864333532235, 34.66909763034145], [-77.40867361329258, 34.6686785457879], [-77.40868244594395, 34.66855219317947], [-77.40836173496851, 34.66805519237403], [-77.4078789392694, 34.66811741579857], [-77.40793002164448, 34.66733344648194], [-77.40729118426043, 34.6675666421439], [-77.40740361561711, 34.668104568081404], [-77.40714869985253, 34.66808171937791], [-77.40707455818607, 34.66807507374463], [-77.40652040485979, 34.667801915960894], [-77.40651343741827, 34.66780023206827], [-77.40648190269833, 34.667781932494826], [-77.40652414034776, 34.6677632725314], [-77.40722273197423, 34.667454641229035], [-77.40789414446924, 34.6671580112644], [-77.40799353766982, 34.66711409901478], [-77.40866297339338, 34.6668183362865], [-77.40872645916858, 34.66687113580158], [-77.40915992330632, 34.667511321066016], [-77.40918067695718, 34.667574305916354], [-77.40918204205958, 34.667608810127106], [-77.40918830881242, 34.66767785530446], [-77.40922686488796, 34.66790406155905], [-77.40922408347593, 34.668002537076475], [-77.40921023845726, 34.66817780423681], [-77.40906251922624, 34.66851628649077], [-77.40908123062965, 34.6686917746522], [-77.40912215258527, 34.66906597294465], [-77.40891082554045, 34.669191255857044], [-77.40918959415605, 34.66935595161067], [-77.40924617256736, 34.66942619521164], [-77.40940223032393, 34.66952420098796], [-77.40978625097009, 34.66977376206244], [-77.41003804661034, 34.66989464225446], [-77.41068639048072, 34.670128798355464], [-77.410951934275, 34.67017354819722], [-77.4114664377961, 34.669908647986176], [-77.41169003097149, 34.66983721851793], [-77.41183624172854, 34.66976549609228], [-77.41201084673742, 34.669717135575716], [-77.41222733674707, 34.669657174332286], [-77.41247424005061, 34.66934158842581], [-77.4124840377926, 34.669328995175455], [-77.41248857576466, 34.6693252150264], [-77.41249362751104, 34.66931642261591], [-77.4127395498194, 34.668998871899205], [-77.41282785886943, 34.66888484059297], [-77.412998131808, 34.66867377448026], [-77.4130037132699, 34.66866682850243], [-77.41302098321815, 34.66865003042292], [-77.41320601724914, 34.668458072469605], [-77.41326781464917, 34.66836683855535], [-77.41372205782008, 34.668357494753884], [-77.41403577061611, 34.668374006108465], [-77.41422566372833, 34.66843757712297], [-77.41465679826598, 34.66840668720966], [-77.41509931197311, 34.66837056367094], [-77.41562181611869, 34.66845746658], [-77.41556053544018, 34.669125049298486], [-77.41523250283771, 34.66972637882027], [-77.41466174097397, 34.67064350373376], [-77.41466062126676, 34.67064530295473], [-77.4146592600339, 34.67064670271011], [-77.41409260369845, 34.67121231503991], [-77.41379007278786, 34.67145803750098], [-77.41349293751765, 34.67172756191005], [-77.41291349850755, 34.67226950161348], [-77.41290778911416, 34.67227023999878], [-77.4119291745059, 34.67216192751524], [-77.41164883112177, 34.67219249524197], [-77.41132053517504, 34.67203762076788], [-77.41106381457465, 34.67200006147968], [-77.41090616120239, 34.67198463974968], [-77.41044452062187, 34.67192601458837], [-77.4103977859598, 34.67194818642079], [-77.41015805932126, 34.6722570833675], [-77.41008768740535, 34.67239877711545], [-77.40995421489359, 34.672607678631934], [-77.40970370190188, 34.67301009231077], [-77.40946695097657, 34.673299770298115], [-77.40935881114551, 34.6737487715026], [-77.40979660234899, 34.67416364087062], [-77.41029465139408, 34.673976856256076], [-77.41104781202415, 34.67393679128104], [-77.41112830505786, 34.67399026788086], [-77.41153874336351, 34.67458396967045], [-77.41154380381155, 34.67462254651625], [-77.41122386924482, 34.67503289171382], [-77.41100284218038, 34.67513538555917], [-77.41076418321286, 34.67524781337472], [-77.4106482889112, 34.67530352728327], [-77.41054932470699, 34.675355944368775], [-77.4103028101481, 34.675486512834986], [-77.40977434182034, 34.67564384203014], [-77.40948157623393, 34.6763756070186], [-77.40945978821766, 34.67665200099727], [-77.40982646890204, 34.67712440854831], [-77.40986267642224, 34.67735212246296], [-77.41005255503302, 34.67770541913424], [-77.41014056540305, 34.67788605828096], [-77.41028757405877, 34.67805994100439], [-77.41052519228387, 34.67828609106354], [-77.41095646454568, 34.67843835927545], [-77.41109267933324, 34.67853921810448], [-77.41135465966227, 34.67870345498489], [-77.4118781926077, 34.67894650680678], [-77.41189601989589, 34.67918193022918], [-77.412049248193, 34.679661650738694], [-77.41206977374019, 34.679759274950825], [-77.41209396669512, 34.67981031418951], [-77.41227685186, 34.67998212234188], [-77.41255626018295, 34.68000265910561], [-77.41258864647666, 34.680011829011264], [-77.41262651046542, 34.67999666664809], [-77.41274180512612, 34.679925248165596], [-77.41291490100883, 34.67981802519292], [-77.41294091804089, 34.67980190910779], [-77.4132032904957, 34.67963938288521], [-77.41336655535596, 34.67953824818786], [-77.41359173607148, 34.67977530752667], [-77.41375615296378, 34.67994839798161], [-77.41362751675152, 34.68034693720995], [-77.41356166672779, 34.68081724605918], [-77.4135692564486, 34.68088566354282], [-77.41356013465958, 34.68092288320845], [-77.41344817570538, 34.68137971648798], [-77.41344305398718, 34.68140061470073], [-77.41343828553245, 34.681420071206276], [-77.41331729590671, 34.68191374692704], [-77.41331646348195, 34.6819154304586], [-77.41331499583276, 34.681917859581276], [-77.41313154433053, 34.68240983669853], [-77.41315054513804, 34.68249747702551], [-77.4133569672332, 34.68279304988645], [-77.41352739194532, 34.683409142836275], [-77.41363462294693, 34.68356991398835], [-77.41361961102993, 34.68369883429219], [-77.41356511238955, 34.683815273007305], [-77.41340402432826, 34.68383522108951], [-77.41292622383898, 34.68426651946547], [-77.41201889440421, 34.68425696030452], [-77.4120067111708, 34.684258782845845], [-77.4120002784299, 34.684256910458764], [-77.41199616530066, 34.68425346609316], [-77.41143560489722, 34.684072781550014], [-77.41141482133827, 34.68406570007323], [-77.41137458475933, 34.684066428893765], [-77.41099157979542, 34.68409463710806], [-77.41091449224693, 34.684258367295975], [-77.41087504707639, 34.684415825073415], [-77.41086707380171, 34.68463912226394], [-77.41086608757851, 34.68472490644385], [-77.41085418076119, 34.68496764014027], [-77.41084393566663, 34.68518049347974], [-77.41084094012464, 34.685242565848355], [-77.41085123997087, 34.68536135946051], [-77.41086217465953, 34.685529554385226], [-77.41086614022777, 34.685617576300444], [-77.41090564734321, 34.685824046696446], [-77.41104381443206, 34.68615222898299], [-77.41099482318687, 34.686344343703695], [-77.41100113759983, 34.68645395324807], [-77.41097084586951, 34.68668581270042], [-77.41080409060568, 34.686780511260785], [-77.41064120779295, 34.68705044717704], [-77.41060177943871, 34.68711578967757], [-77.41058142815262, 34.687164456807324], [-77.41050246146187, 34.68755467136458], [-77.41051716147024, 34.68764529813592], [-77.4106138260359, 34.687938257384715], [-77.41061776680488, 34.68795291733906], [-77.41062285042898, 34.68798034507339], [-77.41066556391362, 34.68825634188082], [-77.4106961452594, 34.688366567397885], [-77.41072250994087, 34.68866944505002], [-77.41073763066126, 34.68879560786951], [-77.41078033514326, 34.688855617235546], [-77.41090164802084, 34.6891735337645], [-77.41111190116791, 34.68953074737992], [-77.41111224476394, 34.68953203096856], [-77.41111270944953, 34.689535031004624], [-77.41126464700515, 34.689914802736354], [-77.41135334712965, 34.69017434169544], [-77.41139775611197, 34.690305624335146], [-77.41146750478325, 34.69049384157786], [-77.41131767589235, 34.69061303158486], [-77.41129636444276, 34.69071351875582], [-77.41127986252624, 34.69080115047121], [-77.41098544344058, 34.691163846130046], [-77.41085546441109, 34.69135333141568], [-77.41083242761603, 34.69143414149217], [-77.41091866157629, 34.69169959532746], [-77.41093577205567, 34.691837378718134], [-77.4110644203495, 34.69191480960124], [-77.41128017810854, 34.69204795029695], [-77.41133597713362, 34.69208361915996], [-77.4113650188215, 34.69210467079525], [-77.41158553313416, 34.69232840298619], [-77.41170226384669, 34.69241033929721], [-77.41168368547017, 34.692526376031125], [-77.41169136794456, 34.69272043763087], [-77.41169280671446, 34.69280912408129], [-77.41168147023956, 34.69286536185665], [-77.41165025071255, 34.69307379101724], [-77.41160263627248, 34.693323438168605], [-77.41160018827328, 34.69333583257474], [-77.41159825226504, 34.6933464236126], [-77.41155880554318, 34.6936009100657], [-77.41141773734955, 34.69376916448065], [-77.41135603751762, 34.69380952453487], [-77.41112799158786, 34.69390833737538], [-77.41106375367633, 34.69393836544949], [-77.41100653676692, 34.69396680072964], [-77.41071240245307, 34.69411187316276], [-77.4106749736869, 34.69417789871533], [-77.41062586917933, 34.69439272956331], [-77.41063922567291, 34.69463915635172], [-77.41062962757239, 34.6947246279734], [-77.41060493407255, 34.694944520320234], [-77.41064709133332, 34.695082221616985], [-77.41072002713923, 34.69531702958615], [-77.41076097653941, 34.695481064356116], [-77.41078107556038, 34.69556526219548], [-77.41084008447903, 34.69581694372816], [-77.41085246190703, 34.695869795510866], [-77.41085639076395, 34.69588761209048], [-77.41092075467029, 34.69617324556459], [-77.41094759863547, 34.69629591440186], [-77.41102431429285, 34.69647938567101], [-77.41111589128712, 34.69667206376448], [-77.4111819827876, 34.69682375285649], [-77.41125156265278, 34.69706181983582], [-77.41135482923579, 34.69744333766603], [-77.41137225008215, 34.69749105723665], [-77.4114903992612, 34.69785489357633], [-77.41159543628058, 34.69808662626955], [-77.41166197052156, 34.69822967678894], [-77.4117526089853, 34.6983908016802], [-77.41189127556544, 34.69858037865968], [-77.41208634381567, 34.69881747862736], [-77.41214881038806, 34.69891930570637], [-77.41209239549536, 34.69936114078736], [-77.41209005877147, 34.69937788911878], [-77.41208698221713, 34.6993914449832], [-77.41208966842783, 34.69944008884121], [-77.4120891294277, 34.699836898753325], [-77.41246882197821, 34.70006950282901], [-77.41252160850733, 34.70010285531258], [-77.41253613813588, 34.700111609600334], [-77.41256730302933, 34.700137741787394], [-77.41290628130074, 34.70038875199864], [-77.4130319010619, 34.700612939039644], [-77.4131672380407, 34.70072625321517], [-77.41348700415926, 34.70089356997585], [-77.41358419443503, 34.70091907880914], [-77.41405546149211, 34.701075024471606], [-77.41425463122627, 34.70116537957322], [-77.41479063803476, 34.701179644790145], [-77.41506108036819, 34.701223231784425], [-77.41509564260149, 34.70123306912636], [-77.41519058741657, 34.70122131504133], [-77.41542733373319, 34.701194332409536], [-77.4154904627233, 34.701177268786], [-77.41557475054707, 34.70115599468665], [-77.41589088235783, 34.701083948416], [-77.41606184926248, 34.701046828324515], [-77.41611428905807, 34.70103544265747], [-77.41625485290247, 34.70100054027504], [-77.4162914792635, 34.70099091875321], [-77.41646733982012, 34.70092293078222], [-77.41648610147888, 34.70091567746752], [-77.41660630016104, 34.70075763892346], [-77.41666941356789, 34.70060442510591], [-77.41665713840041, 34.70041640524569], [-77.4167077354671, 34.70017546078256], [-77.41670877095464, 34.70014164808479], [-77.41670499285247, 34.700102161518174], [-77.4166893590778, 34.69992656648974], [-77.41659927058862, 34.69983706576255], [-77.41654286513143, 34.69976449850457], [-77.41649650883454, 34.69971540553721], [-77.41642576679938, 34.69971441578477], [-77.41622748822181, 34.69970701846866], [-77.41595764233567, 34.69969702010327], [-77.4158619017794, 34.69969354976586], [-77.41573327309445, 34.699655866772744], [-77.41557110907706, 34.69959106554784], [-77.41544135384255, 34.6994320291823], [-77.41538086795538, 34.69935651638236], [-77.41533549643715, 34.69929801877109], [-77.41511856413766, 34.69901958033846], [-77.41510245729371, 34.69899609039677], [-77.41497238363279, 34.698708877250375], [-77.41494846772933, 34.69864418026459], [-77.41491104760958, 34.69855040147308], [-77.41478011255214, 34.69826805368457], [-77.41473075635203, 34.698065248648035], [-77.41465494847345, 34.69787391146683], [-77.41453668030914, 34.697629857161004], [-77.41449011769811, 34.697496316026985], [-77.41444383167008, 34.697405772345604], [-77.41428152386473, 34.69713697660862], [-77.4142454584061, 34.69705682406162], [-77.41419562260133, 34.69694963340983], [-77.41415005136473, 34.69675168690075], [-77.41414837858099, 34.69674616443158], [-77.41414696968822, 34.696742817274156], [-77.41414799949352, 34.69673790651076], [-77.41415431322989, 34.69673696895604], [-77.41447460612169, 34.696523920085454], [-77.41454367937499, 34.69649899785833], [-77.41487780875725, 34.69643937989599], [-77.41487816697502, 34.6964357749004], [-77.41478517542546, 34.69603416812925], [-77.4148031567402, 34.695854160319264], [-77.4148329244949, 34.69561372740853], [-77.41484450694007, 34.695589074172204], [-77.41489667556152, 34.69554129992415], [-77.41506539327563, 34.695386794302244], [-77.41505238808409, 34.69522454207961], [-77.4152228868697, 34.69526002850348], [-77.41574064545146, 34.69485389950384], [-77.41600575163426, 34.694769731244236], [-77.41611475457641, 34.69471760702638], [-77.41626091206844, 34.694686810682406], [-77.41645595666816, 34.69452750269805], [-77.41683432577076, 34.693840245937416], [-77.41687071009439, 34.693781930063025], [-77.41687313598926, 34.693713605188094], [-77.4168981951756, 34.69351199536379], [-77.41689524982044, 34.69336847037552], [-77.41686123226312, 34.69321951508666], [-77.4169980654823, 34.693169856906756], [-77.41711207932065, 34.69316218021167], [-77.41721774508119, 34.69315506547451], [-77.417352020698, 34.69317790811669], [-77.4174230149342, 34.69319501460603], [-77.41747707763102, 34.693205114168], [-77.41772277971293, 34.69326643293108], [-77.41801131576852, 34.69334920950095], [-77.41832110556413, 34.69341343117977], [-77.4185532234796, 34.69346876762151], [-77.41890471352508, 34.69361127206456], [-77.4191478887703, 34.6936931249002], [-77.41919587867066, 34.69371240213717], [-77.4192468813431, 34.693726445745895], [-77.41942350382118, 34.69376978916452], [-77.4195003598808, 34.693767535359875], [-77.4196203910056, 34.69371772321912], [-77.41973118225233, 34.693664344820995], [-77.41979980078575, 34.69363708063928], [-77.41986421648639, 34.69361756502883], [-77.41998962507586, 34.69357346652575], [-77.42021770949287, 34.693503388725034], [-77.42037120418814, 34.693449396115724], [-77.4205315005129, 34.693385195643444], [-77.42055554257152, 34.6933768134594], [-77.4205783922132, 34.69336437227325], [-77.42073004367269, 34.69328814562313], [-77.4209151125768, 34.69303041824442], [-77.42093063154272, 34.69296571594753], [-77.42092214797546, 34.69285427299764], [-77.42096504835928, 34.692563216227], [-77.42095887273405, 34.69241650531217], [-77.42123513742618, 34.69220257618438], [-77.42139294878625, 34.692128120274674], [-77.42175993976286, 34.692137616367894], [-77.42185673793759, 34.692138479439045], [-77.42189358259826, 34.69214185350896], [-77.42213359027912, 34.691988767878634], [-77.4221840974171, 34.69192576767512], [-77.42236097127751, 34.69178875701795], [-77.42252252195281, 34.69173114975335], [-77.4226817338618, 34.69163300818163], [-77.42269333116681, 34.69162546569978], [-77.42285145587606, 34.691521016248345], [-77.4229645951004, 34.69144080392821], [-77.42300995271302, 34.691406189273046], [-77.42308661335451, 34.69134124427838], [-77.42316155773923, 34.69128009407974], [-77.42334160295485, 34.69112522241513], [-77.42338581744286, 34.691029051261175], [-77.42344337980421, 34.69099293607163], [-77.42351304230603, 34.690975015854974], [-77.42368784487317, 34.690855149574816], [-77.42378050811364, 34.69079620699268], [-77.42392058142727, 34.69067403918156], [-77.42393577957691, 34.690662327879785], [-77.42407365935188, 34.69052757676715], [-77.42434898921243, 34.690258492242506], [-77.42434771235952, 34.69024732622958], [-77.42435754610405, 34.69024380228148], [-77.42436962447874, 34.69022964807228], [-77.4245965396828, 34.689886628904624], [-77.42466174730694, 34.689798083607066], [-77.42474710339793, 34.68964599000869], [-77.42492630269842, 34.68933153562944], [-77.42504890268648, 34.68913039705608], [-77.4252195880929, 34.688875036990645], [-77.42543703560455, 34.68875573387581], [-77.42563966574443, 34.68860046073231], [-77.4257705084134, 34.68850864873245], [-77.42596800630808, 34.68838938270335], [-77.42625124258971, 34.688156645513104], [-77.42627463096767, 34.688142802144974], [-77.42628565614461, 34.68812974878275], [-77.42630118519601, 34.68810471893548], [-77.4264813379541, 34.687732861724335], [-77.42653755588152, 34.68765877613303], [-77.42671185249179, 34.68736184772822], [-77.4268061329276, 34.6871936371076], [-77.4269818639651, 34.686927902171234], [-77.42707083029546, 34.686727141826715], [-77.42714863121002, 34.68658018257725], [-77.42740926828199, 34.686286438380705], [-77.4274200934441, 34.68627612788263], [-77.42744450261773, 34.68624761237629], [-77.42756936116331, 34.686062894734526], [-77.42760044983794, 34.686000179509776], [-77.42762916943994, 34.68594404468539], [-77.42764579776104, 34.685897262102884], [-77.4276776986962, 34.68582124967746], [-77.4276564454077, 34.68575362047095], [-77.42759829239779, 34.68571614811282], [-77.42752650021347, 34.68570221491176], [-77.42745517664808, 34.685657101994394], [-77.42739207014748, 34.68564076393572], [-77.427306140134, 34.68561851694167], [-77.42703891605767, 34.685564957198], [-77.42700360334803, 34.68555677328695], [-77.42697528345553, 34.68554887367903], [-77.42682121070159, 34.68552168728188], [-77.42669711679804, 34.685508679436936], [-77.42647930833242, 34.68548584762971], [-77.42638614592734, 34.68547608184607], [-77.42623492685436, 34.685460229971405], [-77.4262272653549, 34.685457303420776], [-77.42609613157299, 34.685371067218774], [-77.42596743983468, 34.6852230669103], [-77.42592243911832, 34.68513813746026], [-77.42593249943404, 34.68496574965255], [-77.42594800780793, 34.684936731625996], [-77.42608907686336, 34.684847807133565], [-77.42609719576153, 34.68470937493095], [-77.42609461172196, 34.68461990898735], [-77.42615527066876, 34.68445014956369], [-77.42620454382613, 34.6842886957154], [-77.42625483976667, 34.68420543784375], [-77.42636163135354, 34.684062097059005], [-77.42643491104073, 34.68391745488087], [-77.42651082949916, 34.683735900008855], [-77.42659816905666, 34.683636199446596], [-77.42667120148575, 34.68355590173975], [-77.4267135757209, 34.683527277223526], [-77.42693991494048, 34.68337438097689], [-77.42697792358575, 34.68334020099365], [-77.42695810136141, 34.68327710013154], [-77.42688646467036, 34.68302867371237], [-77.42685904010794, 34.682961755086474], [-77.42683216835906, 34.682827556016896], [-77.42681698622808, 34.68272483436782], [-77.42687548688527, 34.6826778563914], [-77.42699577537778, 34.68259080452618], [-77.42713939032632, 34.68262156356204], [-77.42719593419628, 34.68267766793406], [-77.42728396046034, 34.68278441712552], [-77.42740628849901, 34.68293095527259], [-77.42755391149664, 34.68311813322057], [-77.42766451183692, 34.68327280070252], [-77.42787288633303, 34.683277021578476], [-77.42809622851085, 34.68317227184088], [-77.42824656695618, 34.683140113499974], [-77.4283607585613, 34.6830811371791], [-77.42839608960718, 34.68301064549069], [-77.42842608670541, 34.68300810751553], [-77.42851081370702, 34.68294195777432], [-77.42855861950801, 34.6829024444543], [-77.42866702565286, 34.682812842246676], [-77.42878288472048, 34.68272954021126], [-77.42886910881876, 34.682662221122264], [-77.42917311469702, 34.68244234693652], [-77.42918331527073, 34.68243434745664], [-77.42918616964413, 34.68243274481964], [-77.42918948669212, 34.682431583745654], [-77.42921651858687, 34.682424231473654], [-77.42988361877028, 34.682247181709954], [-77.42998115314887, 34.682236799249424], [-77.43007550379485, 34.6821873218814], [-77.43033908685145, 34.68207415243019], [-77.43058313830697, 34.68185383705999], [-77.43061954723669, 34.68181853210333], [-77.43062863601564, 34.68179970323927], [-77.43067780835143, 34.68171692715155], [-77.43085246119617, 34.681417802412994], [-77.43089790694418, 34.68135682084773], [-77.43098201611295, 34.681240964196846], [-77.43107881412632, 34.68104003719305], [-77.43111138208754, 34.68087241731138], [-77.4311392575163, 34.68072894615317], [-77.43124868280273, 34.68056992712971], [-77.43137292324367, 34.68042167512543], [-77.43138075834175, 34.680411946119335], [-77.43138386607019, 34.68040865269342], [-77.43153516308487, 34.680290471694136], [-77.4316598371837, 34.680225639320895], [-77.43176256517306, 34.68018226371896], [-77.43190544279366, 34.68014802415163], [-77.43216444882742, 34.680122589642856], [-77.43230849003534, 34.68005914870582], [-77.43247934467044, 34.67991947504845], [-77.43269871933596, 34.68007801960893], [-77.43278489540768, 34.68009020732014], [-77.43304557742985, 34.68017708223425], [-77.43331539294383, 34.68026700009718], [-77.43335472634169, 34.68027400028995], [-77.43338168803032, 34.68026876467197], [-77.4335723903298, 34.68025594855216], [-77.43367806033834, 34.68020567745053], [-77.43375036463262, 34.68017301020527], [-77.43381772710205, 34.68014172788662], [-77.43406211567213, 34.67998554400035], [-77.43408439641449, 34.67997130480334], [-77.43410042196355, 34.67996106311583], [-77.43421157068778, 34.679892912862016], [-77.43430045785009, 34.67975149057789], [-77.43445009405708, 34.679751839852884], [-77.43485917808125, 34.67974236136151], [-77.43505498574723, 34.67987580312307], [-77.43519711641838, 34.679927904828546], [-77.43534538676742, 34.67997942725156], [-77.4354926801967, 34.6800302312751], [-77.43563757808923, 34.68007686286806], [-77.43577371734348, 34.68013360216666], [-77.43591346340162, 34.680230674713584], [-77.43613482621065, 34.68039298171302], [-77.43616073619661, 34.6804184388776], [-77.43617280510799, 34.680441684866224], [-77.43639195752577, 34.68076831289988], [-77.43640528207571, 34.68077434296809], [-77.43669664911029, 34.680845874531244], [-77.43689982123058, 34.68083501958638], [-77.43733583754845, 34.680812962674224], [-77.43734361742565, 34.68081274547127], [-77.4373470815994, 34.68081240959614], [-77.43735398062324, 34.68081311075881], [-77.43766619352394, 34.68081678005102], [-77.43783492687466, 34.680987484017294], [-77.43788478211206, 34.681037921541126], [-77.4379117582206, 34.68107544187233], [-77.43809029135673, 34.68135630175188], [-77.4380998136713, 34.681394554181296], [-77.43827450238574, 34.681700237674576], [-77.43830950103259, 34.68191566986304], [-77.43839630596489, 34.68216358149121], [-77.43872236346822, 34.682415883936315], [-77.4387910197201, 34.68246626292992], [-77.43912927491436, 34.68275039568345], [-77.43930546388859, 34.682903029575414], [-77.43943406101943, 34.68306956061266], [-77.43943611529684, 34.68322449434093], [-77.43953576694726, 34.68347350459777], [-77.43965581666183, 34.68386035453321], [-77.43966060790221, 34.6838677920501], [-77.43966490023786, 34.68387578740638], [-77.4397113852927, 34.683935374605014], [-77.43991592561542, 34.68420760899656], [-77.44007997575108, 34.68453783648624], [-77.4400987354454, 34.68457425796087], [-77.44009994120607, 34.68457719285837], [-77.44010065356157, 34.68458469069401], [-77.44016074777565, 34.68487545955593], [-77.44014206312269, 34.685006013141134], [-77.44012561172092, 34.68514269436633], [-77.44012516543498, 34.685359391096625], [-77.44010003889488, 34.68569279292277], [-77.44009739008195, 34.685917473023224], [-77.44009907404649, 34.68597197582002], [-77.44008242736297, 34.68603723265067], [-77.44001373891224, 34.686221659551705], [-77.44017630461512, 34.68653875719659], [-77.44041113807131, 34.6865744910127], [-77.4404838074738, 34.686583336177044], [-77.44075906117102, 34.686482244050275], [-77.44079612024406, 34.68645602902148], [-77.44087105722897, 34.68635216621274], [-77.44110799983918, 34.68604520276702], [-77.4411924386422, 34.685906729163506], [-77.44129549988638, 34.685776863203245], [-77.44143536515736, 34.68560061952243], [-77.44144302488644, 34.685355707378946], [-77.44145037881658, 34.68532635091104], [-77.44144372824361, 34.68527145468739], [-77.44141501771168, 34.68503446942315], [-77.4414019314707, 34.68492645525941], [-77.44142161402507, 34.684487636218726], [-77.44142150547432, 34.68447770159], [-77.44142240279248, 34.68447150129772], [-77.44143606433069, 34.684398441722216], [-77.44146893084866, 34.68421476445575], [-77.44153471069511, 34.683978206448195], [-77.44153976973897, 34.68396001336077], [-77.44167514597986, 34.683473168050604], [-77.4416761379586, 34.68344865515651], [-77.44167866689325, 34.68341242628857], [-77.44177154511706, 34.68323835045854], [-77.44178060015982, 34.683429141757586], [-77.44181270352139, 34.683496401969755], [-77.44221468279326, 34.68392175711391], [-77.4423293442619, 34.684092861646164], [-77.4423270966627, 34.68423527988363], [-77.44236878654264, 34.684522804862056], [-77.44236630550161, 34.68453631798004], [-77.44231949462531, 34.68479165616236], [-77.44232149292661, 34.684988959046045], [-77.44232377792349, 34.685214471868946], [-77.44232385416034, 34.68535221451143], [-77.44233181869959, 34.68543105772737], [-77.44238392978771, 34.685552328457], [-77.44250720809887, 34.68580424422753], [-77.44268248276225, 34.68603662749003], [-77.4427173058682, 34.68616294070857], [-77.4427910403873, 34.686360381326466], [-77.44287856279176, 34.68654202811479], [-77.44318984197241, 34.68662992236041], [-77.44334489326322, 34.68666100521332], [-77.44350930209626, 34.68660519968245], [-77.44353884333566, 34.68645265502185], [-77.44357878505615, 34.686349975122155], [-77.44356076347843, 34.68625721286797], [-77.44365868059637, 34.68581887607855], [-77.44365782426944, 34.68577027804194], [-77.44382629808257, 34.68542716617389], [-77.44388668526537, 34.68533955583912], [-77.44408331591406, 34.68521534403406], [-77.44413440376867, 34.68518307173906], [-77.44417285591717, 34.68516008530554], [-77.44445822224812, 34.68498969274388], [-77.44446805881017, 34.684983772241715], [-77.44446942758248, 34.684982971864166], [-77.44447119890596, 34.68498191554379], [-77.44480674769522, 34.68478662623816], [-77.44506443830679, 34.684633233289745], [-77.44512362561593, 34.68455687342526], [-77.44524430337958, 34.68452423615266], [-77.4454934753408, 34.684413694661444], [-77.44581744130464, 34.68433744688425], [-77.44588822277197, 34.68431120577911], [-77.44596013126004, 34.68426462274023], [-77.44644963671502, 34.6839994261043], [-77.44657479873268, 34.68393803466443], [-77.44672510654124, 34.6838349992634], [-77.44690578864828, 34.683731354825575], [-77.44707027837029, 34.683657365291836], [-77.44726548695701, 34.68357159105841], [-77.44752125910581, 34.68329750468691], [-77.44756067347542, 34.683269773365446], [-77.44761188537639, 34.68322651493073], [-77.44787574366431, 34.683073714205264], [-77.44807197870973, 34.68303439980741], [-77.44824785307506, 34.68300057508155], [-77.44829688941759, 34.68301437347104], [-77.44853944841475, 34.683052901416104], [-77.44880984807082, 34.683105070228414], [-77.44891602146888, 34.683128380015596], [-77.44944642757373, 34.68328741636501], [-77.44958129112017, 34.68341708517568], [-77.44982254198536, 34.68364269046255], [-77.44995455550136, 34.68374618794665], [-77.45011790046158, 34.683747492852376], [-77.45040050811627, 34.68384777006906], [-77.45055055206544, 34.68390100958833], [-77.45067729087256, 34.68391404497464], [-77.45095176365312, 34.68389612487789], [-77.45111873527766, 34.68388786073767], [-77.45120225943789, 34.68386310587834], [-77.45142217225876, 34.6838675645982], [-77.45182598269352, 34.6839220085085], [-77.4520839082009, 34.68396994432301], [-77.4521754612986, 34.68399942488555], [-77.45242381542855, 34.68407048240311], [-77.4530375904443, 34.684085828455785], [-77.45305881766778, 34.6840903643417], [-77.45307646579424, 34.6840967631478], [-77.45308735731165, 34.68408355973654], [-77.45351395692805, 34.684064111369274], [-77.45373392762154, 34.683971476118515], [-77.45390402440628, 34.683953971506305], [-77.45398913126539, 34.68383973399959], [-77.45415273520466, 34.68362012899641], [-77.45429738296582, 34.68338846665994], [-77.45404781923631, 34.68288544902268], [-77.45396413299724, 34.68280602753384], [-77.453830971515, 34.68266644816918], [-77.45381085618665, 34.682646822922656], [-77.45380206611698, 34.68262728801835], [-77.45375099861434, 34.68244860426213], [-77.45374194743756, 34.682194164179975], [-77.45374790794094, 34.682078411694825], [-77.45375606473868, 34.68200005611877], [-77.45380324621023, 34.68154683488516], [-77.4538117482561, 34.68154172056589], [-77.45380388022225, 34.681512574318354], [-77.45373513972784, 34.68111592969399], [-77.45363418175191, 34.68092065090296], [-77.45352948627507, 34.680408362444524], [-77.45345717264331, 34.68023941234186], [-77.45342429582756, 34.68006908107684], [-77.45333281046786, 34.67994635063732], [-77.45320216867775, 34.679763127696205], [-77.452982035182, 34.67946051001784], [-77.45297605496519, 34.67945187474591], [-77.45279237317848, 34.679141402137205], [-77.45285866946172, 34.6789901824325], [-77.45296909394474, 34.67883006901534], [-77.45320450137166, 34.6783323303753], [-77.45321930527321, 34.67829815640778], [-77.4532225873184, 34.67828025704177], [-77.45323272711074, 34.678239746411606], [-77.45339180364053, 34.677739079868076], [-77.453421921587, 34.677484914439304], [-77.45348502746432, 34.677152294501894], [-77.45349320492417, 34.677095334430476], [-77.45349308891085, 34.67700715881084], [-77.45350879779593, 34.67672162594374], [-77.45349875476033, 34.676537721295816], [-77.45347561570424, 34.676114061014204], [-77.45346908168354, 34.67599442024171], [-77.4534642698127, 34.675906295327245], [-77.45376894180065, 34.67575563207651], [-77.45395018598158, 34.6758572883095], [-77.45434358460446, 34.675967901796014], [-77.45475427374942, 34.67630828282043], [-77.454789496891, 34.67633747600675], [-77.45480640703092, 34.67635175988339], [-77.45484056064032, 34.67638736763989], [-77.45537399605757, 34.67692850040835], [-77.45559861328941, 34.67717770016397], [-77.45560455248254, 34.677273771172835], [-77.45568903675029, 34.67757723077036], [-77.4556575077826, 34.67768379511418], [-77.45559641171826, 34.67789029081152], [-77.45556971887036, 34.677980507399894], [-77.45550160609804, 34.67821071589806], [-77.45545039986702, 34.67838378385131], [-77.45543033302394, 34.678451607985764], [-77.45537874898474, 34.67858623256335], [-77.4551591463279, 34.678629185918126], [-77.4548918376918, 34.67872941248115], [-77.45466335512391, 34.678802898686634], [-77.45481728642835, 34.67904691807955], [-77.45494425544399, 34.67926658581536], [-77.45510190568434, 34.67949567841042], [-77.45514543144694, 34.67956041754613], [-77.45515780820197, 34.67957498049352], [-77.45518857630965, 34.67960584079035], [-77.45543701476784, 34.679864660310145], [-77.45555547709773, 34.679973842268375], [-77.45582983763491, 34.680231616648406], [-77.4559977543607, 34.68034788519843], [-77.45607632953518, 34.68042096098702], [-77.45635196169158, 34.680631816234104], [-77.45641841839003, 34.68069271731122], [-77.45643901802043, 34.68072317167195], [-77.45668852011589, 34.68098499138425], [-77.45682238195093, 34.68116920858073], [-77.45716217915538, 34.68158850598977], [-77.45750252366803, 34.682167105280534], [-77.45755151543389, 34.682289767232035], [-77.45731887174254, 34.682652281080976], [-77.45703503124713, 34.68308997461337], [-77.45696245281587, 34.68320189153487], [-77.4569005995977, 34.6833653976357], [-77.45668861508729, 34.68422417643217], [-77.45646176336732, 34.68514313173756], [-77.45642001203379, 34.6852483056671], [-77.456324650898, 34.68539169125961], [-77.45588934406994, 34.68618083836922], [-77.45566591600146, 34.686832656723034], [-77.45463262117656, 34.68797764390741], [-77.45447766982144, 34.688049022755365], [-77.45302379784036, 34.68849566638996], [-77.45170630737483, 34.68876943667019], [-77.45139571502214, 34.688825589562114], [-77.45113287369071, 34.68899051885359], [-77.44975458075756, 34.689134162709635], [-77.44901819369518, 34.689369428924714], [-77.44898916481941, 34.689378575640184], [-77.44896620784172, 34.68938148618792], [-77.44855813634626, 34.68976764123198], [-77.44853704260363, 34.69013491563097], [-77.44850099694685, 34.69030668532286], [-77.44854342622799, 34.69042671873108], [-77.44855083920326, 34.69081819611598], [-77.4485517114326, 34.690869682391174], [-77.44855394413204, 34.6908842091085], [-77.44871438955388, 34.69124818143588], [-77.44897616236632, 34.691563532958], [-77.44900106949682, 34.69157490781604], [-77.44954596366455, 34.69178347600289], [-77.44955296250077, 34.69178494785621], [-77.44956458444459, 34.691786045543054], [-77.45013662351438, 34.69198263797556], [-77.450152395512, 34.69200190510928], [-77.45031965194491, 34.69236362591123], [-77.45050869518091, 34.69291223689552], [-77.45061368641952, 34.693133706907055], [-77.45066463443712, 34.69329895252836], [-77.45096463853099, 34.69388002563811], [-77.45096601025254, 34.693963290929126], [-77.45129500083017, 34.69462568507697], [-77.45130070036289, 34.694632562392265], [-77.45130675005613, 34.69464138268562], [-77.45186147741418, 34.69529127156863], [-77.45199166185029, 34.695439748867784], [-77.45225478340849, 34.69573915004157], [-77.45254748362919, 34.69589769249292], [-77.45304549118745, 34.696006057230925], [-77.45341992724936, 34.69614227800861], [-77.45396214394435, 34.696199859272156], [-77.45404259177545, 34.69620515246908], [-77.45408269879164, 34.696205567653585], [-77.4541649105747, 34.69619920642009], [-77.4545028196402, 34.6961444302691], [-77.45472674131247, 34.696055312769246], [-77.45487127393997, 34.6959988877639], [-77.45507068905412, 34.69595672234781], [-77.45559937412675, 34.695693412269904], [-77.45670122738294, 34.69540848567216], [-77.45701502814488, 34.695016239241305], [-77.45761311358311, 34.69493757336698], [-77.45828594084142, 34.69528716818881], [-77.45981978874065, 34.696171597139845], [-77.46038216468214, 34.69669461700289], [-77.46121695520739, 34.69763468964595], [-77.46176937078297, 34.698295477141464], [-77.46303131026181, 34.6998560458271], [-77.46342208508402, 34.70028535705933], [-77.46370379277684, 34.70047215198735], [-77.46450401124412, 34.701269414373414], [-77.4647573697432, 34.701513502219655], [-77.46566858639164, 34.70254401640338], [-77.46624785776676, 34.70267681482741], [-77.46803434556081, 34.7032283158694], [-77.46877454569542, 34.704098046766404], [-77.46883500921035, 34.705167937372856], [-77.46842804275846, 34.70767724137888], [-77.46824974799446, 34.70838643885318], [-77.46785738089655, 34.7091479647845], [-77.4668568831198, 34.711089854793244], [-77.46487325376245, 34.71167886652646], [-77.46283140495666, 34.71236253830444], [-77.46222273697961, 34.711501066331884], [-77.46251089617817, 34.710853765981255], [-77.46167753221377, 34.70994293677609], [-77.4619720181744, 34.70909163821478], [-77.46207793320059, 34.708466633321024], [-77.46222966798899, 34.7080177249829], [-77.462265541584, 34.70791159045711], [-77.46241590421297, 34.707466738942834], [-77.46249214316597, 34.70695169513046], [-77.46249204075087, 34.706924101682155], [-77.46248306277761, 34.70691447379155], [-77.46227540462641, 34.706597741915004], [-77.46226064620868, 34.70657523155331], [-77.46226005989215, 34.70657452567517], [-77.4620129610525, 34.70632343345654], [-77.46188172097689, 34.70628606837835], [-77.46145233575645, 34.7060121904381], [-77.46105622130244, 34.705737893745024], [-77.46098555474413, 34.70544316185751], [-77.46095331731456, 34.70533441741646], [-77.46093021151785, 34.70527081859406], [-77.46077327430737, 34.70506887898687], [-77.4605516559507, 34.70505569958138], [-77.46045875840915, 34.705048355787106], [-77.46040771838298, 34.70504223097039], [-77.45977207852629, 34.70520677308964], [-77.45958973002276, 34.70520101890362], [-77.45858735585149, 34.70487091109233], [-77.45845274835699, 34.70483880747398], [-77.45801086810755, 34.704648068009426], [-77.45762976039613, 34.70449003421302], [-77.4574848356599, 34.70425066754663], [-77.45695386455085, 34.703885452492685], [-77.45694773862495, 34.70388193788963], [-77.45672673125813, 34.70351445537429], [-77.45695324947552, 34.70387250053124], [-77.4571999400037, 34.703408633586434], [-77.45724854127329, 34.70330989351777], [-77.45732118001924, 34.70317149739374], [-77.45728528904348, 34.70293195520257], [-77.45728066687144, 34.702877847657675], [-77.45726787814762, 34.70285537820332], [-77.45725124339332, 34.70284152607262], [-77.45722237215634, 34.70282918792212], [-77.4569680620073, 34.702712615442536], [-77.45681795177617, 34.702716182027615], [-77.45674543386505, 34.70279758044087], [-77.45651818815999, 34.70316040564253], [-77.45651411950037, 34.7031671774366], [-77.45651323530551, 34.703168710023185], [-77.45650934304932, 34.703172113283166], [-77.45562812533825, 34.70397744615937], [-77.45544478495586, 34.70441024742494], [-77.45479742539497, 34.70467901310705], [-77.45318700610287, 34.70536050091128], [-77.45278277587921, 34.70604164955449], [-77.44987823363905, 34.705940701831615], [-77.4493450292593, 34.70580350991387], [-77.44883079180835, 34.70556585060387], [-77.44617628200469, 34.70514666349652], [-77.44409824228751, 34.706216269560564], [-77.4427907017367, 34.70765918774486], [-77.44131992266776, 34.706958139287195], [-77.44108793374782, 34.70603870288532], [-77.44064268650693, 34.70414945187943], [-77.44302801272633, 34.70404635450906], [-77.44061352375462, 34.70266543936801], [-77.44016571504558, 34.70208521687494], [-77.4391777978179, 34.69969346691424], [-77.4397565124373, 34.69843057866042], [-77.43925363476755, 34.696375764216484], [-77.43919031446933, 34.69611701832469], [-77.43916574576284, 34.69598790728009], [-77.43885756742617, 34.69525082093472], [-77.43857971774389, 34.69458627578856], [-77.43880863421498, 34.69362690125447], [-77.43879261239329, 34.693538442680264], [-77.4385528559002, 34.6928118780668], [-77.4387905302003, 34.692502487846376], [-77.43882114720643, 34.692200484409504], [-77.4389549998387, 34.692000947876565], [-77.43878548058669, 34.691821970305966], [-77.43870659628459, 34.69162026611268], [-77.43840138586566, 34.691248352909085], [-77.43831023880767, 34.69112754304365], [-77.43821996978957, 34.69108714093672], [-77.43811662041895, 34.691049010865065], [-77.43762117802063, 34.69094180998262], [-77.43757520540053, 34.690959498849], [-77.437171039504, 34.69099896678585], [-77.436934366734, 34.69110077057522], [-77.4367428133036, 34.69122751198742], [-77.43661669066073, 34.69158837527262], [-77.43652928242997, 34.6917119003278], [-77.43630390876324, 34.691965005822716], [-77.43609406259736, 34.69222964244258], [-77.43560319837925, 34.69250620166229], [-77.43537955314602, 34.6925572918535], [-77.43522474003058, 34.69258014526561], [-77.43487830114074, 34.692811796749154], [-77.43470330277695, 34.69294748171744], [-77.43439889411204, 34.69320322333266], [-77.43407199960902, 34.69341114658873], [-77.43390634246818, 34.69359005663236], [-77.43358556286687, 34.69399237959506], [-77.43355942260001, 34.694027809607476], [-77.43354967496744, 34.69405295159972], [-77.4334797122068, 34.69418164950017], [-77.43330587596617, 34.69449821097162], [-77.43315015060372, 34.694895487349356], [-77.43311217513747, 34.69498953824908], [-77.43307975896944, 34.6950962638895], [-77.43303803816346, 34.695522672209805], [-77.43306004153372, 34.69563218464147], [-77.43307193573803, 34.695992312552946], [-77.4330952646323, 34.69610173722901], [-77.43307643882342, 34.6962705821106], [-77.43313218643097, 34.69667370246109], [-77.43310079606456, 34.69687305132913], [-77.43309028328004, 34.69693857937706], [-77.43306924282093, 34.697006610344516], [-77.43299680054339, 34.69718542108285], [-77.43295470068603, 34.697567180669644], [-77.43288202884773, 34.69770434774853], [-77.43284292894035, 34.69787345213949], [-77.43288176325001, 34.69826331110458], [-77.43263506922288, 34.69854033289522], [-77.43208140851043, 34.6990145152857], [-77.43203111427125, 34.699048776935015], [-77.43197911166023, 34.699065818839955], [-77.43139558301463, 34.69916977065858], [-77.43119633496006, 34.69917994338314], [-77.43073825605387, 34.69922652417931], [-77.43033327982235, 34.69926489175956], [-77.43010191166391, 34.69921076434699], [-77.42985722330329, 34.69911944126703], [-77.42950599752879, 34.69905528630421], [-77.42927923019704, 34.69903764113076], [-77.42919449859319, 34.699024344833845], [-77.42896723804628, 34.69904444429193], [-77.4288665649839, 34.69905019360705], [-77.42880542128076, 34.69907422717771], [-77.42869202206838, 34.69915928899556], [-77.42855781765655, 34.69926717926023], [-77.4286327017918, 34.69947651793444], [-77.4286678606007, 34.69958519210738], [-77.42867872899033, 34.69961121921336], [-77.42868683288671, 34.69967126408017], [-77.42872765061085, 34.700037187934925], [-77.42874177034265, 34.700170102924055], [-77.42879733252249, 34.70039677491265], [-77.42882435551158, 34.70044321799991], [-77.42906842907271, 34.700562680273904], [-77.42906963841092, 34.70056316883959], [-77.42910399502577, 34.700576294671265], [-77.42935037076845, 34.70067010334617], [-77.42936942460135, 34.70068075571831], [-77.42963508529014, 34.70082396681813], [-77.42980461706615, 34.70092693536127], [-77.43011833870497, 34.70121050182578], [-77.43013433185011, 34.701235734290925], [-77.430141742131, 34.70128793512636], [-77.43019140370095, 34.70127647530272], [-77.43033898483444, 34.70137352695953], [-77.43029557899516, 34.701446750658434], [-77.4301703938842, 34.701508234270946], [-77.43006422473688, 34.70155580958659], [-77.42993785897289, 34.701609882179], [-77.42982683184368, 34.701667637901494], [-77.42930420999312, 34.701967331181805], [-77.42925893636661, 34.70199583904156], [-77.42923657866882, 34.70205674007181], [-77.42907668912233, 34.702523474653184], [-77.42906809197228, 34.702573430218386], [-77.42902510340923, 34.702931781807585], [-77.4290080643241, 34.70304486235318], [-77.42901263667113, 34.703060143391966], [-77.42921175776254, 34.70341440467614], [-77.42939201270731, 34.703751857106205], [-77.42939734370037, 34.70377519470051], [-77.4294186334712, 34.70378669740544], [-77.42946321973906, 34.703825418999536], [-77.42990338816895, 34.704326410690236], [-77.43000720650403, 34.70441348438132], [-77.43044178291176, 34.70467700872053], [-77.4304427581631, 34.70467741579108], [-77.4304463993158, 34.70467957616766], [-77.43089234982637, 34.704936904282974], [-77.43098883416584, 34.70500525889741], [-77.43115133277593, 34.705088886440706], [-77.43135654469097, 34.7051895906866], [-77.4315343914154, 34.70533490704061], [-77.43177425668271, 34.70546167234095], [-77.43181696943398, 34.70571781797349], [-77.43163682066766, 34.70588235151675], [-77.43149781438733, 34.70616529499654], [-77.431426306799, 34.706286102045325], [-77.43138470345859, 34.70651700721232], [-77.43144719457642, 34.7067066552265], [-77.43149105818283, 34.70713972988141], [-77.43152022736896, 34.70729124620017], [-77.43151071484556, 34.707357203356], [-77.43146923804544, 34.70777503084176], [-77.43147522616044, 34.70783457093837], [-77.43144084409668, 34.7082791371066], [-77.43146911549738, 34.70859947146633], [-77.43142319649338, 34.70893449430713], [-77.4315004517951, 34.709882148581286], [-77.43158770116901, 34.710003414883445], [-77.43247780463722, 34.71093481481144], [-77.4328080427627, 34.71127976156538], [-77.43353688488902, 34.71170513646329], [-77.43448926798919, 34.71203943923665], [-77.43468566128203, 34.71216551857716], [-77.43494195459442, 34.7121748901076], [-77.43690561511033, 34.7129969109091], [-77.43707144500284, 34.71278141319134], [-77.43816114503454, 34.71205755484464], [-77.43902272642131, 34.711590960847495], [-77.43988365760688, 34.710112590927544], [-77.44032892257111, 34.70981137977596], [-77.44040736779574, 34.709746299895855], [-77.44059172645868, 34.709475588647365], [-77.44121358718344, 34.70955752685238], [-77.44309185386108, 34.70969587425665], [-77.44552948392989, 34.71213360144753], [-77.44706926910003, 34.71367342515609], [-77.447241663565, 34.71418410256743], [-77.4475298632106, 34.714563946982736], [-77.44905806857994, 34.7169973009978], [-77.44892413798733, 34.717678925465165], [-77.4474504938199, 34.719008305621855], [-77.44562057526687, 34.72200342687489], [-77.44515035684985, 34.72267677240054], [-77.44495572218898, 34.72315777063624], [-77.44428050128147, 34.72613406088669], [-77.44580734193683, 34.72690222973207], [-77.4474928328437, 34.7273017004826], [-77.44820770293447, 34.72746919672627], [-77.44840051625721, 34.72798595511202], [-77.4484626166922, 34.72830609612994], [-77.44818792038949, 34.728436933362794], [-77.4475871947906, 34.72961461215305], [-77.44735754909507, 34.73015609316411], [-77.44736244512877, 34.73020490461044], [-77.4469428010607, 34.73112922441872], [-77.44695652441456, 34.73126715568485], [-77.44668132504748, 34.731956723794084], [-77.446611559639, 34.73213153100403], [-77.44641351769599, 34.73238661069299], [-77.44619008482023, 34.73264955206806], [-77.44586330895521, 34.732616223380006], [-77.44546018574948, 34.73253516012263], [-77.44510627394942, 34.73237461028065], [-77.44471185066413, 34.732203901433216], [-77.4443326992851, 34.732000113797056], [-77.44379294392974, 34.731694530165036], [-77.44378187086944, 34.73168796513751], [-77.44376386587629, 34.73167729019085], [-77.44374470696572, 34.73168898832603], [-77.44375446792483, 34.7317105860974], [-77.44360082385941, 34.73219773741804], [-77.44321923705564, 34.7322829450314], [-77.4429438934024, 34.73236839705834], [-77.44284355729448, 34.73241695211633], [-77.4426356262355, 34.73241954277784], [-77.44243908698286, 34.73250393362386], [-77.44228218393751, 34.73243950976275], [-77.4420553304731, 34.73241961458002], [-77.44166855657602, 34.73234442270555], [-77.44136537441072, 34.732245432137375], [-77.44089565211505, 34.73237063820477], [-77.44107354066155, 34.73282928742511], [-77.44146155545525, 34.73305989640055], [-77.44196772376543, 34.733348995856396], [-77.44170601113498, 34.73377182269316], [-77.44169965600216, 34.73390726447627], [-77.44162450287098, 34.734022857704716], [-77.44175995753835, 34.73424455152626], [-77.44189014005829, 34.734274193727934], [-77.44226227948114, 34.73445798942056], [-77.44233684090344, 34.7344666904936], [-77.44255253895278, 34.73434709234697], [-77.44264113212353, 34.7343291510325], [-77.44270499935473, 34.734302221975064], [-77.44288689548975, 34.73430468837585], [-77.44302883241126, 34.73429096060701], [-77.44307113949031, 34.73428386185528], [-77.4431541091257, 34.73427775155524], [-77.4434766787405, 34.73419860977944], [-77.44369588056406, 34.734201436481285], [-77.44395729386935, 34.734235973650705], [-77.44407929028253, 34.73425353684899], [-77.44431999174024, 34.73426032650231], [-77.44444259026977, 34.73428098016629], [-77.44479030733025, 34.7344032514482], [-77.44483780926043, 34.73468665486574], [-77.44492668462851, 34.73479275960029], [-77.44503852446388, 34.734936081777036], [-77.44500569159065, 34.73520062168491], [-77.444883861823, 34.7354410676722], [-77.44464017594653, 34.73580515378934], [-77.44472174227428, 34.73594344817285], [-77.44465097786886, 34.73611646592113], [-77.44468265677358, 34.736233845415946], [-77.44472204253267, 34.73623252508285], [-77.44506181856686, 34.73612864914887], [-77.44521171878247, 34.73611461685101], [-77.44541379928327, 34.735867117669386], [-77.44574027182439, 34.73599972616148], [-77.44596216136617, 34.736146332753634], [-77.44615275457306, 34.73644334939997], [-77.44673800227362, 34.736983549524204], [-77.44713647848154, 34.73744197414571], [-77.44734162249482, 34.737520282923526], [-77.44778662582945, 34.73779150244956], [-77.44806133786722, 34.73794886776261], [-77.44836110487478, 34.73802206039255], [-77.44867580813741, 34.73820392729592], [-77.44892047538889, 34.73830486123164], [-77.44925123093564, 34.738345154010155], [-77.44974021107714, 34.738814475968574], [-77.44991512819594, 34.73896094812976], [-77.45000201743085, 34.73899910785515], [-77.45019477288172, 34.73918924039715], [-77.4505003886631, 34.73949284868203], [-77.45060154425165, 34.73956734397939], [-77.45058924050997, 34.73967002221953], [-77.45090335818686, 34.74031646673812], [-77.45091012426582, 34.74033142471996], [-77.45091960268721, 34.74034440561735], [-77.45135894281405, 34.74095818941952], [-77.45146221603014, 34.74099388006807], [-77.4514568179647, 34.741091029609485], [-77.45178444298216, 34.74170395715014], [-77.45182526230774, 34.74173523273382], [-77.45184846590833, 34.74178680897649], [-77.45225568364768, 34.742291593407614], [-77.45236109739913, 34.74240447490395], [-77.45255098352197, 34.74259115110453], [-77.45267569911289, 34.74271961365574], [-77.45266115320634, 34.743106671434326], [-77.4526749288619, 34.74316636983555], [-77.45266344532949, 34.74318942057648], [-77.45265961638279, 34.743213737942426], [-77.45271138472688, 34.743597589976574], [-77.4530193595719, 34.7438010726343], [-77.45308691374905, 34.74385161502054], [-77.45314664678457, 34.743862373359434], [-77.45361808635018, 34.74403113206963], [-77.45368096839984, 34.744014649874906], [-77.45380104641175, 34.74414568866667], [-77.45392499568696, 34.74443040672894], [-77.45412490957584, 34.744817773752956], [-77.45378630820622, 34.74505319706522], [-77.45336333720141, 34.74511295849668], [-77.45304313366167, 34.74533476286116], [-77.45231329986841, 34.74530311357263], [-77.45200997422847, 34.745358218510674], [-77.45135382963059, 34.74496803774482], [-77.45097061787177, 34.744770489868586], [-77.45090634053635, 34.744740023075515], [-77.45050688591375, 34.74407114990791], [-77.45046817952826, 34.74403799367213], [-77.4502589515296, 34.74377893708754], [-77.44999423567732, 34.7434597012099], [-77.44984355987951, 34.74345510323133], [-77.44893739822774, 34.74311611193569], [-77.4487622075871, 34.743285500294064], [-77.44812379053474, 34.74328264522302], [-77.44812122135957, 34.74328098126622], [-77.44812147774843, 34.743278868805], [-77.44803762919726, 34.7426918320423], [-77.44841164773082, 34.742280708011094], [-77.44844296682405, 34.74230878733754], [-77.44842991189313, 34.74225931465598], [-77.4487553788159, 34.74182451551334], [-77.44893225541959, 34.74161270808689], [-77.44900413557096, 34.74135239625961], [-77.44897914090576, 34.74113726517717], [-77.44914127654289, 34.74084129288423], [-77.44914452306055, 34.7406218226856], [-77.4491565206673, 34.740567116055814], [-77.44898268743785, 34.740306514870106], [-77.44892502040886, 34.74026699712073], [-77.44874243625772, 34.740181500864104], [-77.44869960072145, 34.740176848922175], [-77.44852511259091, 34.74020038867222], [-77.44835043342673, 34.74027563703443], [-77.44813438693222, 34.74030988364129], [-77.44780160465612, 34.74037336539834], [-77.44734284796019, 34.74051240485467], [-77.44696916322535, 34.7406175187377], [-77.44693232265575, 34.740628739068065], [-77.44659589857, 34.74078774131338], [-77.445689575497, 34.74072428643988], [-77.44566548381442, 34.74069113075432], [-77.44557345184775, 34.740613195962325], [-77.44516275857224, 34.740212488382284], [-77.44491728968276, 34.74028922754386], [-77.44477092127558, 34.740214778364894], [-77.44456528862133, 34.74006135983667], [-77.44416388974771, 34.73966168457151], [-77.44412748072045, 34.7395904302245], [-77.44406312610279, 34.73958080296786], [-77.44361871734273, 34.738912219606895], [-77.44361778310147, 34.73891027668747], [-77.44361661398368, 34.738907908819755], [-77.4436088319374, 34.73889998190967], [-77.44306495944626, 34.738598455786224], [-77.44296160606044, 34.738682662095954], [-77.44259599891264, 34.73874106375652], [-77.4423348753009, 34.73899916503491], [-77.44233239072253, 34.739021867282055], [-77.4422979770284, 34.73903325656466], [-77.44203908708498, 34.739326740323875], [-77.44193883730873, 34.73944340030506], [-77.44183874413957, 34.7396525864206], [-77.44182844654291, 34.73996385776525], [-77.44165205019306, 34.74017689582509], [-77.44164994253278, 34.740186424480235], [-77.44158067793595, 34.740436322374364], [-77.44128749805627, 34.74077541112986], [-77.44121516096524, 34.74097158431603], [-77.44110136828395, 34.74095285592552], [-77.44088085949345, 34.74117323340059], [-77.44082583535348, 34.741290664166], [-77.44066701608416, 34.741571613309176], [-77.44064694760607, 34.741787194179494], [-77.44065858663674, 34.74193063155381], [-77.4406363664481, 34.74206301065604], [-77.4405760433581, 34.742170668701874], [-77.44053060726297, 34.742305575888565], [-77.44050116144395, 34.74244272237622], [-77.44045481447054, 34.742558610623696], [-77.44043665868423, 34.74269065961105], [-77.44040848884363, 34.74282193936928], [-77.44039840700106, 34.74293200295977], [-77.44037951364572, 34.74309133004163], [-77.4403601273275, 34.743313302731295], [-77.44035456704594, 34.74336212786291], [-77.44035318954941, 34.74339727810268], [-77.44036740431517, 34.74348939639701], [-77.44047393195169, 34.74379331287714], [-77.4405948026579, 34.74400507854816], [-77.44076518738697, 34.74433070877217], [-77.44102841988148, 34.744454794638386], [-77.44097424373332, 34.744696657173314], [-77.44111287850806, 34.74529026175232], [-77.44111184037871, 34.745303748613814], [-77.44110998113416, 34.7453135897116], [-77.44111751370943, 34.74532914406468], [-77.44127612800278, 34.74569068306731], [-77.44131788586083, 34.745744708421256], [-77.44136412086928, 34.74570055923941], [-77.4415658581479, 34.7455698041478], [-77.44126519674055, 34.745357320541416], [-77.44168882880903, 34.74548321549534], [-77.44171595947871, 34.74547703070424], [-77.44207743626063, 34.745370222861894], [-77.44285474805595, 34.74547846618589], [-77.44299602504198, 34.74548535144142], [-77.44307603824177, 34.74550577085722], [-77.44359701106502, 34.74562446279323], [-77.44366938892836, 34.74563812974161], [-77.44407864078019, 34.74564783726205], [-77.44423934230275, 34.74562067246213], [-77.4444038881181, 34.745724944028325], [-77.44485651532797, 34.74570383689768], [-77.4450200894929, 34.745690031889666], [-77.44527193913484, 34.745638883237575], [-77.44543138679886, 34.74561408871497], [-77.4455368718603, 34.74556860426656], [-77.4458479683138, 34.745546771623445], [-77.4461767399059, 34.7453959073379], [-77.44624182211652, 34.74534834704911], [-77.44671064704985, 34.745460335318626], [-77.44684774877948, 34.745470374069725], [-77.44727838125476, 34.7457806833763], [-77.44765714248484, 34.746153181602715], [-77.44776664744066, 34.746727146384416], [-77.44786696717547, 34.748222274774314], [-77.44713068609423, 34.74892552760406], [-77.44678343922278, 34.7483034416673], [-77.44608027178467, 34.7481232868798], [-77.4455042426305, 34.74797569854726], [-77.44482984459972, 34.748012424449776], [-77.44462925524785, 34.747416585382936], [-77.44436717493295, 34.74739519082117], [-77.44424829215252, 34.74742000835272], [-77.44418358852042, 34.747494786313936], [-77.44413506117468, 34.747622780104514], [-77.44460529918321, 34.74820109864512], [-77.44468209035303, 34.748523116292816], [-77.44517209412106, 34.748975767967664], [-77.44563789099197, 34.749679775496816], [-77.44558957901982, 34.750587261831896], [-77.44679551873291, 34.75008409729423], [-77.44971266212202, 34.7488668748487], [-77.45262971660524, 34.74764958581654], [-77.45408821050653, 34.74704091633349], [-77.45481744912198, 34.74673657535074], [-77.45554668218058, 34.74643223020739]], [[-77.52010028734605, 34.719465124951896], [-77.51984787061338, 34.71911171960701], [-77.5191178758376, 34.718089641152474], [-77.51826814866496, 34.71689987891108], [-77.51815187911566, 34.71670729289191], [-77.51804635470461, 34.716468514343205], [-77.51747479085645, 34.715204149573154], [-77.5169016885227, 34.71418802765875], [-77.51668672948601, 34.71374740806569], [-77.51494144222183, 34.71126902087712], [-77.51460738550014, 34.7106142104129], [-77.51281704008038, 34.708220498189135], [-77.51251481318918, 34.707920405323726], [-77.51076274264092, 34.70616838305584], [-77.51016396700832, 34.705757352533006], [-77.50726861337304, 34.70533586995103], [-77.50669567572001, 34.706157219024746], [-77.5062208192924, 34.70661327922176], [-77.50540733740027, 34.70696193874768], [-77.50477091325439, 34.707234710638154], [-77.50414528828739, 34.70750283431332], [-77.50373859277235, 34.708443541588146], [-77.50492777652447, 34.708624517340645], [-77.50607394882383, 34.70936036889256], [-77.50705120165566, 34.71014983007525], [-77.50765233013664, 34.71037977942709], [-77.50908894167357, 34.71129180681865], [-77.50925072838106, 34.71141148317492], [-77.50941424203945, 34.711576468107225], [-77.51068178516013, 34.712685639766455], [-77.51303939085051, 34.714748540889865], [-77.51378432551284, 34.71346868568526], [-77.51415222243709, 34.71480712093832], [-77.51366234900351, 34.715293608259245], [-77.5148259357621, 34.71631167868054], [-77.51536127880924, 34.71689013535818], [-77.5154343671174, 34.71695041280403], [-77.51550940802542, 34.7170554686832], [-77.51592560289593, 34.71763814210689], [-77.51702847231978, 34.71870288387345], [-77.51730039410148, 34.71905588166918], [-77.5189455908693, 34.71994793867728], [-77.51969742712268, 34.71963358238522]], [[-77.47890443026951, 34.488170308265424], [-77.47811234330129, 34.488667756410315], [-77.4772352789623, 34.48908895226339], [-77.47625583692566, 34.49014207769562], [-77.4760939119677, 34.49080230184988], [-77.47770385457736, 34.49084525887068], [-77.47955178388486, 34.49053573881685], [-77.47918282934974, 34.48918761152276]], [[-77.22151371502652, 34.655602339395216], [-77.2241082201734, 34.65559550840469], [-77.22407752290479, 34.655804604188845], [-77.22417715527936, 34.65595184222736], [-77.223880386818, 34.6560450579475]], [[-77.26230041954885, 34.58999861984519], [-77.26230633936949, 34.59003286649277], [-77.2615657064579, 34.59088350288969], [-77.26119399710643, 34.59157843090166], [-77.26044568367533, 34.59219931777781], [-77.26065867922996, 34.592697506561414], [-77.25954969297821, 34.59274516880417], [-77.25911344292005, 34.593433030710294], [-77.25970667747956, 34.59356529011592], [-77.26025016900725, 34.59374218269798], [-77.26042343796578, 34.59387393491048], [-77.26074253478141, 34.59380594311488], [-77.26086625210732, 34.59365651226619], [-77.26087367179228, 34.593508697473276], [-77.26110579320348, 34.59281448680461], [-77.26130749633667, 34.59274854481214], [-77.26198391702991, 34.5922808857142], [-77.26295867230081, 34.59219566985862], [-77.2639462961723, 34.59235800404123], [-77.26497298506632, 34.59230996416775], [-77.26636216166817, 34.592133819218326], [-77.26750081437885, 34.59192884002857], [-77.27050251857985, 34.590615023906544], [-77.27168646408549, 34.590393004925694], [-77.27234610241004, 34.58984566087422], [-77.27334734051074, 34.5888366543935], [-77.27417102797631, 34.58810373830046], [-77.27452525172784, 34.58765971220467], [-77.2743379916975, 34.58623151170285], [-77.2768029344189, 34.58460258269043], [-77.27680559999428, 34.584540062614664], [-77.27689195416689, 34.58450681102865], [-77.27750342553723, 34.58287037871483], [-77.27763542204399, 34.58271992501917], [-77.27770299087632, 34.5825993723438], [-77.27821727611217, 34.582027422425945], [-77.27836197989308, 34.581834331824915], [-77.27837469052852, 34.58180905091483], [-77.27870554239568, 34.5813899852091], [-77.27864397957617, 34.581183531566126], [-77.27849126592474, 34.58103049346195], [-77.27829573916537, 34.580886471671406], [-77.27742920669327, 34.580252037811334], [-77.27701544560225, 34.580113733114885], [-77.27627524904636, 34.580015657515304], [-77.27564063448023, 34.58045533166554], [-77.27545940516899, 34.58060453022107], [-77.27540355410557, 34.58065929484138], [-77.27523317891708, 34.58078151559563], [-77.27430733215499, 34.58151582869546], [-77.27398029109294, 34.58191795076492], [-77.27198545518986, 34.582276038759424], [-77.2716654164382, 34.582488246045784], [-77.27117849030712, 34.582611705681316], [-77.26980236575213, 34.58346030478877], [-77.26776959291564, 34.58382999147917], [-77.26751928066267, 34.58405885956295], [-77.26704642353873, 34.58411490070844], [-77.26648429840827, 34.58445289682192], [-77.26536881800381, 34.58458389637043], [-77.26519698616735, 34.58462253682194], [-77.2649683329763, 34.585495074823925], [-77.26520146374196, 34.586009219353386], [-77.26544487757532, 34.58647522139273], [-77.26546778629088, 34.58664430961589], [-77.26575377955677, 34.58667040735706], [-77.26594654168295, 34.58698600584479], [-77.26607699741353, 34.58715096657317], [-77.26610524201547, 34.58740187229444], [-77.26601366200153, 34.58746261930223], [-77.26568092319278, 34.587681758674734], [-77.26520638184485, 34.587752540221395], [-77.26413155878475, 34.58825728754259], [-77.26405757156995, 34.58886705468162], [-77.26353327082425, 34.58915290876084], [-77.26244955655633, 34.58986920862815], [-77.26233582493151, 34.589964877605695]], [[-77.37600444221596, 34.533926252641095], [-77.37598322616883, 34.534050839689094], [-77.3762640835854, 34.534378483245725], [-77.37621140886833, 34.53460405465758], [-77.37656369978559, 34.53448062351371], [-77.37680424584983, 34.534450217291734], [-77.37695636914593, 34.53447485667086], [-77.37707085363367, 34.534436155494944], [-77.37735172978876, 34.534350414909355], [-77.37763971796582, 34.53418017513657], [-77.37786046340348, 34.533970623999274], [-77.37806744802577, 34.53368156841247], [-77.378106704376, 34.533623192918164], [-77.37811944745843, 34.53359991791381], [-77.37815544389628, 34.53352822802102], [-77.37835615522162, 34.53334239989436], [-77.37816117910192, 34.53327523952171], [-77.37778345662015, 34.53342496491989], [-77.37776870324062, 34.53342930613094], [-77.37776512754348, 34.53343043505594], [-77.37776045092522, 34.5334311877975], [-77.37737117391057, 34.533493057739506], [-77.37710148859401, 34.53360143483722], [-77.37697545889557, 34.53363329849493], [-77.3767690548647, 34.533699009283666], [-77.37658136423951, 34.533702059581366]], [[-77.36078341492394, 34.57086315327532], [-77.3607775432923, 34.570866239314945], [-77.36045445488563, 34.57097655954208], [-77.3603893412781, 34.57104337479013], [-77.36020441097514, 34.571167771586175], [-77.36006237098283, 34.57131506986056], [-77.36014881093067, 34.57111583353578], [-77.36013334186018, 34.570952661075076], [-77.36008636888484, 34.570632716101514], [-77.3600639259503, 34.57053810144644], [-77.36003773906207, 34.57049650390037], [-77.35999565854084, 34.57045767796414], [-77.35985039162799, 34.57030091696578], [-77.35972623398598, 34.57029629668253], [-77.35960176412166, 34.57029166471972], [-77.3594759729175, 34.5703337235354], [-77.35934142829858, 34.57036161806156], [-77.35924098108393, 34.57062062004468], [-77.35923009765185, 34.57065814470163], [-77.35935575704183, 34.57079979481258], [-77.35940049899173, 34.57085018381882], [-77.35947094834577, 34.57090740114745], [-77.35960139061629, 34.571013343353705], [-77.35960920781264, 34.571019692292936], [-77.3596351083666, 34.571024390776735], [-77.35975485486985, 34.571172611269866], [-77.359974089035, 34.57142285186928], [-77.36018329720567, 34.57179457567432], [-77.36028029907834, 34.57189764494666], [-77.36038892084343, 34.57187178785402], [-77.36071430219097, 34.57221642113683], [-77.36083756008559, 34.57218399543053], [-77.36100635370568, 34.57185985605041], [-77.361118389092, 34.57165994774482], [-77.36114498534373, 34.57162159932359], [-77.36117708788434, 34.571483481654994], [-77.36123711728108, 34.571218299427656], [-77.36117725719077, 34.57114362955356], [-77.36104873344466, 34.570959464089775], [-77.36078989468457, 34.570865119079045]], [[-77.24639707801052, 34.60208141141902], [-77.24636777042952, 34.602884778103736], [-77.24664335264809, 34.60324520518695], [-77.24706577161015, 34.603607783128716], [-77.24916409736825, 34.603771218481214], [-77.25055213080668, 34.6033836382019], [-77.25084441717922, 34.60340744318369], [-77.25288616608184, 34.603398052344886], [-77.25106062437247, 34.6030613028221], [-77.25075054557172, 34.60299162477794], [-77.2501174832414, 34.60276094148185], [-77.2475956502579, 34.60256098859385]], [[-77.3323158780397, 34.684304212519784], [-77.3326975859368, 34.684305741486725], [-77.33291777143046, 34.68429277568075], [-77.3331939771675, 34.6842843535815], [-77.33353156783605, 34.68424036557431], [-77.33372228852653, 34.684305633777164], [-77.33407834693581, 34.684418606215345], [-77.33410110354555, 34.68442441170588], [-77.33439357308215, 34.684577428291306], [-77.33435948994983, 34.68531804704666], [-77.3331637434918, 34.68552360982308], [-77.3331582603828, 34.68552512890458], [-77.3331529312955, 34.685524774971974], [-77.3322870514419, 34.685409831002865], [-77.33199691240078, 34.68540189798522], [-77.33144616380687, 34.685287847535946], [-77.33142593083329, 34.68528407103368], [-77.33087934548803, 34.68512800619647], [-77.3306784261862, 34.68507089776379], [-77.3303541126117, 34.684938266328004], [-77.33034119312644, 34.684920074285664], [-77.3303198540322, 34.68492729872292], [-77.3299507088456, 34.68484250265982], [-77.32979463818482, 34.6847410595909], [-77.32950867917836, 34.684566820234515], [-77.32994179982802, 34.684234668750925], [-77.3301946293394, 34.68417779548997], [-77.33031794781584, 34.68416586695166], [-77.3305690963114, 34.68413582717057], [-77.3307577077569, 34.68422166880106], [-77.33108550357561, 34.684418572294], [-77.33166327802272, 34.684313230879354], [-77.33172267915054, 34.68428572908741], [-77.33175515770152, 34.684285058874764]], [[-77.4242330779256, 34.50091687932166], [-77.42435090949566, 34.50086370227781], [-77.42445906791747, 34.50082764161131], [-77.42453670093018, 34.50076350108185], [-77.42455031336412, 34.50066355629013], [-77.42461445812593, 34.500598586421354], [-77.42466859731778, 34.50044365078864], [-77.42434259756857, 34.500401051818606], [-77.42416868885711, 34.50047803561283], [-77.42393849430643, 34.50056406205214], [-77.42380346203758, 34.500597569227054], [-77.42373457602031, 34.50064026878922], [-77.42353485049092, 34.500764069504264], [-77.42319418146414, 34.50112720066948], [-77.42311293992472, 34.50115313042188], [-77.42304077586577, 34.501193749190506], [-77.42305225231706, 34.501287484106484], [-77.42322670840333, 34.501246341003245], [-77.42327394324957, 34.50123140096052], [-77.42332809296403, 34.50120842586293], [-77.4240212483204, 34.50100052549957]], [[-77.34639466003024, 34.629995909273966], [-77.34651967761059, 34.62997604209048], [-77.34660599044915, 34.630040173481646], [-77.34672873459738, 34.629974215792], [-77.34682764724886, 34.629915727261874], [-77.34685053021228, 34.629892391708275], [-77.34688548907747, 34.62978696615458], [-77.3469895649723, 34.62966229829179], [-77.34705165322109, 34.6294376592977], [-77.34706965783818, 34.62929170917984], [-77.34732521762521, 34.62920617680506], [-77.34733442272106, 34.629192938940655], [-77.34733104449779, 34.628868548979334], [-77.34741835613153, 34.628759411289536], [-77.34755897822015, 34.62841415723768], [-77.34778729523076, 34.6283200786451], [-77.34782651536428, 34.62828135676973], [-77.34787968909725, 34.62804638928587], [-77.34818334127313, 34.628064470920485], [-77.34835052723486, 34.627937287597355], [-77.34841534960873, 34.627879311605255], [-77.34856416413275, 34.62775804763576], [-77.34860575387886, 34.62772348455292], [-77.34860198207946, 34.62759584756323], [-77.3486223231993, 34.62740535662673], [-77.34858624639291, 34.62726647548973], [-77.34843502489481, 34.62723048480856], [-77.34820069433565, 34.62719183772715], [-77.34804440108998, 34.62719136316158], [-77.34759434696949, 34.62711277367517], [-77.3475798570541, 34.62728799405061], [-77.34749495971919, 34.627131295140984], [-77.34742574007372, 34.62707039451686], [-77.34708219840468, 34.62680052274689], [-77.34683996507897, 34.62630683884566], [-77.34671649289014, 34.62617741268012], [-77.34623705554446, 34.6261778555017], [-77.34599095654349, 34.62557942987044], [-77.34602557035898, 34.624980793274794], [-77.3461545895374, 34.624712958510415], [-77.34585397872816, 34.624640083466545], [-77.34576892100202, 34.62464767446138], [-77.34560583614645, 34.62455742404636], [-77.34557559577931, 34.624560637712726], [-77.34543437536242, 34.62457564524603], [-77.34529952061615, 34.624589976120795], [-77.34525482076248, 34.6245947262899], [-77.3451304517512, 34.624655999405206], [-77.34497902129816, 34.62467080990118], [-77.34466627961834, 34.62469589297632], [-77.34449464097142, 34.624677551433805], [-77.34431037234229, 34.62471368090381], [-77.34418380466511, 34.62472351002485], [-77.3441124746723, 34.62464448676856], [-77.34388289202856, 34.62464812950462], [-77.34385025709676, 34.62465643964315], [-77.3438048821751, 34.62467956184962], [-77.34353414093327, 34.62465609149392], [-77.34353125816904, 34.62466177257929], [-77.34330224317735, 34.6251009030543], [-77.34330021417455, 34.62510485316035], [-77.34330017892067, 34.62510485981982], [-77.34330013726967, 34.625104913783126], [-77.34329997627508, 34.62510539239118], [-77.3433004032256, 34.625105794043975], [-77.34353210428766, 34.625793853655324], [-77.3437247120527, 34.62589061584433], [-77.34396155418676, 34.62609154856425], [-77.34445670957132, 34.62618478072841], [-77.34481739906727, 34.62628375162812], [-77.34503538423174, 34.62626129820843], [-77.34542050424098, 34.626501762883166], [-77.34517655086455, 34.626856920125604], [-77.34522248272455, 34.62737295512251], [-77.3451428793903, 34.627492704547684], [-77.34519758014163, 34.628175625050595], [-77.34520173803126, 34.62821488368102], [-77.34520226815064, 34.62821973044901], [-77.34520262815941, 34.62822650633807], [-77.34520948154164, 34.628234847929306], [-77.34552898736511, 34.62872839639034], [-77.34583340919467, 34.62880467116301], [-77.3459678491549, 34.62882298160164], [-77.34607179841576, 34.628801622574635], [-77.34635178550883, 34.628905880291306], [-77.34619649704777, 34.6291436788765], [-77.34603034001117, 34.629133923142476], [-77.345861982743, 34.629217149851115], [-77.34546469726484, 34.62950480147876], [-77.34534440303617, 34.62968252833657], [-77.3448658236245, 34.6297103444079], [-77.34475764771892, 34.62980190484014], [-77.3445796797661, 34.62987926986786], [-77.34445208992673, 34.63001073451551], [-77.34440411873881, 34.63013904268553], [-77.34445192638893, 34.6302872798548], [-77.34456898155422, 34.630416683886], [-77.34463908437772, 34.63049074390019], [-77.34497204741547, 34.630783339239585], [-77.3450296364513, 34.63086552384189], [-77.34513133886539, 34.63103154814247], [-77.34520881041352, 34.63089036925089], [-77.34535326615915, 34.630730993790536], [-77.34538706263938, 34.63038957919923], [-77.34562927029269, 34.630323694252006], [-77.34580365420643, 34.63011132152254], [-77.34598665846724, 34.63011847599902], [-77.34619518139075, 34.629954127502685]], [[-77.38460653267146, 34.65814341464145], [-77.38530020574885, 34.65762794173145], [-77.38567759053876, 34.65751081332197], [-77.38571826419934, 34.657350928493294], [-77.38595021755226, 34.657222930168984], [-77.38609531410577, 34.65703566990123], [-77.38634565474041, 34.65699508217105], [-77.38643897336449, 34.657155664924], [-77.38692267806444, 34.65733336792894], [-77.38730686571392, 34.657388589752166], [-77.38794057750238, 34.65742273270385], [-77.38797689582607, 34.65620907462545], [-77.38800952487057, 34.656153287581446], [-77.38819863995606, 34.65606786139019], [-77.38811345852417, 34.65591010268715], [-77.38795556787935, 34.65546049972626], [-77.38780434531738, 34.655961942754644], [-77.38649419662941, 34.65520756257751], [-77.38603297483897, 34.65564375924957], [-77.38585783667247, 34.65566328342259], [-77.38533014842382, 34.655786953589235], [-77.38507109339663, 34.655655840830796], [-77.38497595614126, 34.655112576627545], [-77.38484833756499, 34.6548424588538], [-77.38448919300735, 34.654791871366136], [-77.38415076858357, 34.65444951970407], [-77.38375034553297, 34.654303372930606], [-77.38367484919301, 34.65424351279613], [-77.38309792148344, 34.654239297825576], [-77.38309720948155, 34.65423911433221], [-77.38309693278606, 34.654238801009775], [-77.38309079736504, 34.6542335786945], [-77.38264788222921, 34.653980403371456], [-77.38245225166277, 34.65421755208533], [-77.38244563210631, 34.6542987610734], [-77.38244533064747, 34.65432909432297], [-77.38244501452601, 34.65438247617361], [-77.38235563944204, 34.654881742896094], [-77.38230202658512, 34.6550610897085], [-77.3822680763682, 34.655197518326105], [-77.3822704878395, 34.655469240982356], [-77.38233288271184, 34.65575396153858], [-77.38242316826938, 34.65602021259002], [-77.38258500923831, 34.656403525270406], [-77.3825906956916, 34.656419179225466], [-77.38259712596287, 34.65644080026934], [-77.38271937517061, 34.6568234903704], [-77.38277783510739, 34.657170623770824], [-77.38309931228362, 34.65757607207435], [-77.38312495477703, 34.65761171877721], [-77.38314074146858, 34.65763415264839], [-77.38350193671499, 34.65803406898779], [-77.3836389441903, 34.65807934451582], [-77.38388709190495, 34.65815974496507], [-77.38452829402247, 34.65824185516861], [-77.38453897265502, 34.6582165564868]], [[-77.35607106435519, 34.550689609024175], [-77.35617500796326, 34.55057908209473], [-77.35631786021497, 34.55047249201778], [-77.35637532943954, 34.55034090395252], [-77.35657651351099, 34.550191402292775], [-77.35674234625921, 34.55002273174651], [-77.35697586107038, 34.54989772789796], [-77.35700395825806, 34.549884070918594], [-77.357258382856, 34.549777065744266], [-77.35737236459822, 34.54972805992382], [-77.35748816400024, 34.54964049371749], [-77.35757167981956, 34.54959677766123], [-77.35765632563528, 34.54954532457597], [-77.35772155132254, 34.54950567627832], [-77.35777118173617, 34.54945731729437], [-77.3578209553842, 34.54939921008786], [-77.3578730302668, 34.54933100657337], [-77.35792499098989, 34.549261819435145], [-77.35801313556466, 34.54915080328598], [-77.35803395961369, 34.549123718653235], [-77.35809604131418, 34.549040570016075], [-77.35813716079375, 34.548986448020834], [-77.35814903355742, 34.5489685530888], [-77.35817578616765, 34.54893376437474], [-77.35830352208647, 34.54879534812295], [-77.35837712180282, 34.54871411502337], [-77.35838364093684, 34.54870613587988], [-77.3584364938078, 34.54861167445371], [-77.35849536180527, 34.548497006136664], [-77.35850364332586, 34.5484440338076], [-77.35852923421088, 34.548408426616405], [-77.35858459903953, 34.5482262005406], [-77.35859488160116, 34.54819199699354], [-77.35859882655062, 34.548185505314756], [-77.35859647383086, 34.54817911151504], [-77.35861102724803, 34.548061336766146], [-77.35859966291706, 34.54794595328865], [-77.3586002620003, 34.54794047498495], [-77.35860079197245, 34.54793446656848], [-77.35861127057011, 34.54770323090254], [-77.35861418004555, 34.547693647297066], [-77.35862115201799, 34.54767768160586], [-77.35864149608427, 34.54746956701659], [-77.35865809763756, 34.54744250007868], [-77.35864337969734, 34.54741948325211], [-77.35860357188089, 34.547397611801486], [-77.3585442170838, 34.547336485484045], [-77.35847908111089, 34.547302442342584], [-77.35835673190773, 34.547241068637845], [-77.35829274182201, 34.547202081112275], [-77.35821575550546, 34.547188564541734], [-77.35802778126006, 34.54716121807662], [-77.35800227565682, 34.54715855179398], [-77.35782413917127, 34.54714548297103], [-77.35773796899016, 34.54713916104163], [-77.35755674147148, 34.54711142870469], [-77.35743276961983, 34.54709164363555], [-77.35714168130937, 34.547171187442245], [-77.35705860883935, 34.547196141497054], [-77.35703654164988, 34.54724982528873], [-77.35694471355714, 34.54744436874387], [-77.35691662106466, 34.547623799872184], [-77.35686528912271, 34.54770062672734], [-77.3569127239762, 34.54776366504923], [-77.35682577137666, 34.547951139262025], [-77.35679480522481, 34.548061273889225], [-77.35670577853172, 34.548213237786875], [-77.35666556369794, 34.548246762522716], [-77.35662031667732, 34.548280358047826], [-77.3564512796591, 34.548390872001924], [-77.35622244797149, 34.54850979004016], [-77.35620545560558, 34.54851963555144], [-77.3561819534845, 34.54853347429682], [-77.35597373073901, 34.548655258798384], [-77.35582287832456, 34.54881330170175], [-77.35581233648438, 34.54882510339905], [-77.35580577104854, 34.54883245344443], [-77.35577539166792, 34.548865689222296], [-77.35565422869098, 34.54899654696441], [-77.35546038090351, 34.54912699826592], [-77.35542261497882, 34.549146931008025], [-77.35539283407331, 34.54915517477683], [-77.35522519747525, 34.54919536416341], [-77.35507037547013, 34.54920920859683], [-77.35502842715934, 34.54921557394172], [-77.35497567880394, 34.54922946740608], [-77.35473294983262, 34.549293400028034], [-77.35463274101492, 34.54934948612703], [-77.35446504091338, 34.549374495635256], [-77.35438065859174, 34.54937035758006], [-77.35424047756703, 34.54933419712048], [-77.35421054026808, 34.54932570507157], [-77.35416621742387, 34.549313295701594], [-77.3539782492888, 34.549260108548026], [-77.35385027969679, 34.54922892209669], [-77.35370142311395, 34.549228210445875], [-77.3534584411262, 34.54919514877485], [-77.35310446138445, 34.549246125907885], [-77.35300411376821, 34.54927311467004], [-77.35266914428595, 34.54937230419745], [-77.35248689959842, 34.5494231078066], [-77.35247156701287, 34.54942758442803], [-77.35246231447431, 34.54943041413896], [-77.35227367198549, 34.549496684098045], [-77.35188118341026, 34.549640062292454], [-77.3518777712569, 34.54963965418494], [-77.35187349484723, 34.549640650082765], [-77.35187061821485, 34.54964371645426], [-77.35186824714013, 34.54964985051515], [-77.35175391171877, 34.54978292432969], [-77.3517063359, 34.549807689314434], [-77.35150723863121, 34.54994083735679], [-77.3514900197916, 34.54995080823516], [-77.3514778380982, 34.549958020890905], [-77.35143355328847, 34.54997875943523], [-77.35127931101971, 34.55005452455207], [-77.3512184241088, 34.550067027326946], [-77.35108168271475, 34.550111907843714], [-77.35085413999364, 34.550138142258696], [-77.3508972118393, 34.55027345396067], [-77.3509311994713, 34.55035885765096], [-77.35105383442134, 34.55049573458691], [-77.35105940584685, 34.55050321483671], [-77.35107233674069, 34.55051848876751], [-77.35115513041649, 34.5506721483101], [-77.35119525993625, 34.55072020199976], [-77.35121797699321, 34.55081195351684], [-77.35126862100506, 34.55095446527068], [-77.35128964338661, 34.551053095910035], [-77.35130043967106, 34.55119470735302], [-77.3513848722879, 34.551389928201644], [-77.35139340857413, 34.55142614876471], [-77.35140701745695, 34.551447012533345], [-77.35144236021749, 34.55150174708714], [-77.35151848679534, 34.5516529688334], [-77.35152304723661, 34.551705545294055], [-77.35156044723067, 34.55181364879783], [-77.35159914612773, 34.55188618166358], [-77.35179426298534, 34.552085898633536], [-77.35180814874712, 34.552100923190274], [-77.35181261192348, 34.5521055804355], [-77.35182099933945, 34.55211044228715], [-77.35197730090404, 34.55222233552265], [-77.35213072004547, 34.55229931885703], [-77.35216444370968, 34.55232210137691], [-77.35220843344764, 34.55233653280851], [-77.35258381023363, 34.55247892858806], [-77.35259156524383, 34.552481655930286], [-77.3525976735763, 34.55248407823942], [-77.35263475549841, 34.55249487287685], [-77.35271440787612, 34.55250939114748], [-77.35279383953525, 34.552490557419326], [-77.35298512225397, 34.55242524032773], [-77.35299170576965, 34.552422992264205], [-77.35299496877363, 34.55242176726206], [-77.35300524983543, 34.55241827037305], [-77.35329213973321, 34.55231798584965], [-77.35338773057971, 34.55227508354517], [-77.35365558653164, 34.552159299967045], [-77.35378412286823, 34.55211110006971], [-77.3538301642324, 34.55208302012827], [-77.35388738188291, 34.55204647698667], [-77.35418217470253, 34.551874730076094], [-77.35430077917502, 34.551815253989645], [-77.35441472183487, 34.55172574732211], [-77.35471546841899, 34.551520276273976], [-77.35484872350352, 34.55141845181281], [-77.3549795445672, 34.55134648960455], [-77.35517455166482, 34.55124689943047], [-77.35518466188886, 34.55124366190955], [-77.35537567695518, 34.551193496123226], [-77.35573679321259, 34.551045788452925], [-77.35575792781395, 34.5510339979909], [-77.3557721469879, 34.551025710521735], [-77.3559145975874, 34.550861852825484], [-77.35600383401497, 34.550762522645286]], [[-77.40114210094114, 34.58396069411344], [-77.40060565218228, 34.583833178464005], [-77.40057493429964, 34.58382377298604], [-77.40055933421381, 34.5838235723596], [-77.40049997852704, 34.58381532787061], [-77.39998929269126, 34.58367089963795], [-77.39978686708206, 34.583673481312324], [-77.39961386416968, 34.583756776572734], [-77.39899879095708, 34.58384117466493], [-77.39885992882337, 34.5839023458677], [-77.39826805135118, 34.58407557571474], [-77.3982107079857, 34.58408345933503], [-77.39816642202398, 34.58410430847084], [-77.39806464010216, 34.58416670972213], [-77.39758210463815, 34.58440817362469], [-77.39742260813965, 34.584548499950124], [-77.39722265818475, 34.58471275582066], [-77.39708986507588, 34.58479797503411], [-77.39666650453717, 34.58518306461357], [-77.39663448707547, 34.585207655071606], [-77.39662632007744, 34.585214559017246], [-77.39656777581477, 34.58523180376175], [-77.39592328296986, 34.585407630150854], [-77.39584638582662, 34.585420215530064], [-77.39574308451128, 34.585462071601015], [-77.3952933189647, 34.5856688999011], [-77.39505826765998, 34.58578735556898], [-77.3949012529067, 34.585896776185464], [-77.39473909773601, 34.58600086225092], [-77.39466419463395, 34.58610174798873], [-77.39450131657418, 34.58637903564601], [-77.39449163620307, 34.58661912663069], [-77.39448455857752, 34.58680602404196], [-77.39444884817335, 34.587043112317026], [-77.39442648399516, 34.587238971914736], [-77.39436224900007, 34.58734759290483], [-77.39427001511373, 34.5875648429616], [-77.39386852352645, 34.58816859178248], [-77.39406237006932, 34.58836427855898], [-77.39426994162875, 34.5883859748073], [-77.39455271540086, 34.588494477953404], [-77.3946307455655, 34.58851904010967], [-77.39466398770791, 34.58853068990169], [-77.39476294083235, 34.58857077378299], [-77.39489284954855, 34.58862339716738], [-77.39494320076619, 34.58873900507377], [-77.394997911617, 34.588854833923975], [-77.39501526832274, 34.58889838923365], [-77.39505800960168, 34.58899681113363], [-77.39512771286324, 34.589185566317], [-77.39516698173733, 34.589255018225074], [-77.39525501553172, 34.58931704002248], [-77.39534810668516, 34.589340877259005], [-77.39545204305739, 34.589367491447064], [-77.39563541648765, 34.58941444623126], [-77.39567251306256, 34.58941964079543], [-77.39584611602157, 34.5892199116358], [-77.39595241003099, 34.589141722649906], [-77.39599694751561, 34.58887320988363], [-77.3959452433817, 34.58871818451995], [-77.39590249820999, 34.58866364438969], [-77.39586284026045, 34.58832345111627], [-77.39587323422793, 34.58830400007237], [-77.3960432188141, 34.588158239450394], [-77.39611355983195, 34.588132832877996], [-77.39624025092962, 34.58810253556883], [-77.39636822225825, 34.588094715189015], [-77.39663430920675, 34.58807451286072], [-77.39696560334116, 34.58807879749564], [-77.39702836587793, 34.58806890141061], [-77.39720844205745, 34.5879173744415], [-77.39742243718294, 34.587777697755016], [-77.39747124553796, 34.58770148642739], [-77.3975392280264, 34.58763909482491], [-77.39761947421593, 34.58758300158135], [-77.39775171545743, 34.58753863438881], [-77.39781650417439, 34.58751903321468], [-77.39786613585045, 34.58753845612062], [-77.39796597895815, 34.58757752864443], [-77.39799704870309, 34.587590801528805], [-77.39801352645054, 34.58761891075], [-77.39809193824443, 34.5876871549742], [-77.39821053952475, 34.58794750228022], [-77.39821960238547, 34.58796551149584], [-77.39830637239265, 34.58827429660127], [-77.39833690887451, 34.5883731606006], [-77.39837636816695, 34.58854616490218], [-77.39821051452118, 34.58854345250547], [-77.39790316533706, 34.588860309501484], [-77.39784545286953, 34.58889989522945], [-77.39781643877302, 34.58891874706417], [-77.39756797449265, 34.589176354897184], [-77.39742235807952, 34.58932225933867], [-77.39739765593, 34.5893311951415], [-77.39738964644674, 34.58935896492838], [-77.39702826864469, 34.58981601173114], [-77.39701942276213, 34.58982741601924], [-77.39701369949158, 34.589837771687606], [-77.39700432230144, 34.58986492157874], [-77.39681124057506, 34.590291550096296], [-77.39680826039367, 34.59047955209368], [-77.39679470534396, 34.590718507745706], [-77.39685239707933, 34.59089960574161], [-77.39702819932717, 34.59108660465328], [-77.39703457362283, 34.5911016092622], [-77.39704706833008, 34.59110667538194], [-77.39722523004588, 34.591174648706414], [-77.39729921404782, 34.59120287543016], [-77.3974222618125, 34.59124982098726], [-77.39768073627954, 34.59129374500503], [-77.39781633606543, 34.591181610353374], [-77.39804679823294, 34.59096245291821], [-77.39814190115013, 34.59087491109439], [-77.39821042150083, 34.59081558169741], [-77.39826213802789, 34.59077481823404], [-77.39835138279201, 34.590766640749436], [-77.39837222409602, 34.59087754823007], [-77.39835489005355, 34.59091800558862], [-77.39831192784754, 34.59103357641784], [-77.39826292998217, 34.591299251902484], [-77.39824870177165, 34.59135789820177], [-77.39835075892454, 34.59161651356068], [-77.39838776330454, 34.59176240920208], [-77.39849408025049, 34.591865986856995], [-77.39860444978846, 34.59198069088339], [-77.39868011870949, 34.592063276511], [-77.39873823561919, 34.59213642025906], [-77.39885129915231, 34.59227871780662], [-77.39890482300378, 34.592436021968936], [-77.39891282289429, 34.59253580587527], [-77.39885105343197, 34.59270357647454], [-77.39888002997526, 34.5929651102996], [-77.3989059331719, 34.59306109466961], [-77.39899849282449, 34.5930478798454], [-77.39930770194755, 34.59299484785428], [-77.39939257411422, 34.592970380230696], [-77.3994539885305, 34.59294847005263], [-77.39969779856213, 34.59294285866649], [-77.39978665379691, 34.592933401649105], [-77.39997635839335, 34.59301922475455], [-77.39998087621329, 34.59302160621229], [-77.39998369151147, 34.593028796357004], [-77.40011073739576, 34.593212123541804], [-77.39998368604023, 34.59334872891648], [-77.39993575040407, 34.593398013600336], [-77.3997866403299, 34.593627445334874], [-77.39976714030833, 34.59366526311023], [-77.39975543717864, 34.59368795962655], [-77.39966122180624, 34.59399101136671], [-77.39962003939713, 34.59413206792756], [-77.39961497288837, 34.594317732690634], [-77.39965310377391, 34.59455187133884], [-77.39973561113428, 34.59490959040245], [-77.3997309529414, 34.59496521351162], [-77.39975270747645, 34.59499860490864], [-77.39978661416481, 34.595030804169006], [-77.4000676372615, 34.595341211846275], [-77.40012420831508, 34.595393909120055], [-77.40018069650313, 34.595506421544954], [-77.40027079220403, 34.59573647511581], [-77.40018069112851, 34.59592271786784], [-77.40006099079594, 34.59606236226307], [-77.39987249053408, 34.59612597539527], [-77.39978659434396, 34.596148834659644], [-77.39940822443114, 34.596268552449416], [-77.39939249763701, 34.59627194358171], [-77.39937908138467, 34.59627524621855], [-77.39921685059062, 34.5963131048681], [-77.39899840046984, 34.59636643409912], [-77.39864368908844, 34.59643822474716], [-77.39856942092067, 34.59644408644737], [-77.39822544193044, 34.59645613015618], [-77.39821151492797, 34.596456729983544], [-77.39821020682149, 34.59645580416853], [-77.3978280168868, 34.596500633556694], [-77.39781610918567, 34.59650213529687], [-77.39780774335497, 34.59650737416766], [-77.39774294439962, 34.59652573431037], [-77.39742200853348, 34.59660362988359], [-77.39707219907376, 34.596670206812675], [-77.39697424387867, 34.596694434495596], [-77.39686912877686, 34.596651784213066], [-77.39696973765274, 34.59657459684369], [-77.39741289898448, 34.596148772431846], [-77.39741904056568, 34.59614466648847], [-77.39742202987757, 34.5961348124947], [-77.39754059372706, 34.59583349805101], [-77.39755711598039, 34.59570339584943], [-77.39761910069151, 34.59559165347783], [-77.39770438724486, 34.595561746247924], [-77.3978161483885, 34.59554751602584], [-77.3980062242874, 34.59543383508745], [-77.39821024553822, 34.59539345476851], [-77.39834854196567, 34.595313642474075], [-77.39834578741132, 34.59516504950642], [-77.39832041399545, 34.595050032945], [-77.3983309555726, 34.59444805345056], [-77.39829490617424, 34.59432324394871], [-77.39827178596269, 34.5942603229959], [-77.39821029131178, 34.59416314973015], [-77.39809668425885, 34.593927266993845], [-77.39800142609701, 34.59374147849124], [-77.3978162311447, 34.59358231537874], [-77.39777604393149, 34.593548950158045], [-77.39770705817627, 34.5932519642099], [-77.39742216988586, 34.593143814593034], [-77.39720433134804, 34.59301697911217], [-77.39673898826678, 34.592962497139574], [-77.39663402118566, 34.59293609197956], [-77.39656957321503, 34.59294327905222], [-77.39630914222514, 34.592911412155715], [-77.39623994412574, 34.59289809867696], [-77.39621639094639, 34.59292479140976], [-77.39600183980157, 34.593123798818354], [-77.39584584648233, 34.59317239427483], [-77.39559679128783, 34.59328248176384], [-77.3954517519447, 34.59336621156306], [-77.395379110221, 34.593391875673206], [-77.39508910894753, 34.59347808487399], [-77.39505766114888, 34.593485965450014], [-77.39467577326278, 34.593558438642646], [-77.39466357286761, 34.59355972743799], [-77.39465236188389, 34.59356288154631], [-77.39463992117372, 34.593576753959965], [-77.39447539151595, 34.593803202087216], [-77.39429553737571, 34.594050996066564], [-77.39428373650856, 34.594068093251366], [-77.3942694458947, 34.594078761930696], [-77.3942047778214, 34.594133751501055], [-77.39387532836722, 34.59443860505005], [-77.39362628424061, 34.59430376899256], [-77.39348125853145, 34.594256021952276], [-77.393432787874, 34.5942276499386], [-77.39341224230304, 34.5941783903828], [-77.39341697869253, 34.594108439799285], [-77.39336729549673, 34.59345859217662], [-77.39336149417515, 34.59333656818074], [-77.39339271631778, 34.593236568657694], [-77.39348137664693, 34.593009926178105], [-77.39352454751857, 34.59288848171884], [-77.39366534464432, 34.592670007532504], [-77.39367728789443, 34.592652915341596], [-77.39368323509703, 34.5926481547455], [-77.39387550372142, 34.59249424828554], [-77.39392236679512, 34.59245702035017], [-77.39402511559993, 34.592391715402144], [-77.39407255437806, 34.59236156432848], [-77.39420156990627, 34.59229297206692], [-77.39426960484352, 34.59222392455177], [-77.39463721386282, 34.591907403119265], [-77.39466370883183, 34.591886788496545], [-77.39467106317903, 34.59188190053611], [-77.39468516060705, 34.59187194413653], [-77.39491728192124, 34.591687071781855], [-77.3949296801469, 34.59155014953782], [-77.39492004838277, 34.59141349315829], [-77.39466376141065, 34.59124662232803], [-77.39451828589284, 34.591203609515205], [-77.39436635246341, 34.59117292240445], [-77.3942696953527, 34.59118043784524], [-77.39390563596078, 34.59116756905252], [-77.39387562462515, 34.59117106039574], [-77.3938471282152, 34.59117437540566], [-77.39369434048879, 34.591165710354296], [-77.39348155438717, 34.5911568172595], [-77.39343928217748, 34.59115695300436], [-77.39332695923254, 34.591218696643985], [-77.3931363895531, 34.591298888670664], [-77.39308746675204, 34.5913149580172], [-77.39293124921889, 34.591444059878405], [-77.39269336415073, 34.59160013033646], [-77.39262654640895, 34.591672301532334], [-77.39255300207353, 34.59175488842727], [-77.39229925532605, 34.59191669886584], [-77.39193551783366, 34.591843939334645], [-77.39191253292367, 34.59183934159237], [-77.39190518892057, 34.59183794568112], [-77.39189506027948, 34.59183886150674], [-77.3915111151807, 34.59182621124443], [-77.39112454825099, 34.591952782498495], [-77.39111702461359, 34.59194986874524], [-77.39111128440395, 34.59195661798201], [-77.39110715566484, 34.591963396864635], [-77.3911090993369, 34.59197165213625], [-77.39106795522474, 34.592393619036635], [-77.39108454365868, 34.592426157248546], [-77.39111695305601, 34.592526234657], [-77.39118758457488, 34.59272481429635], [-77.39119567659263, 34.592799770262644], [-77.3912058647912, 34.59289414050239], [-77.39111686779111, 34.59321534813433], [-77.39111316314906, 34.59323224953609], [-77.39110903106074, 34.59323683439202], [-77.39093812739522, 34.59349351722405], [-77.39080175348002, 34.593705713728724], [-77.39072269457034, 34.59392988473411], [-77.39066656633457, 34.59408932892829], [-77.39061185559049, 34.594157666130386], [-77.39052561116964, 34.59424359886937], [-77.39038717204048, 34.594253203514754], [-77.39032856483547, 34.59426592305328], [-77.38997920133362, 34.594297079458926], [-77.38993447151431, 34.59431253142245], [-77.38989331788116, 34.59430561365358], [-77.38954038164061, 34.59433155221127], [-77.38920854273582, 34.59442709154323], [-77.38910409977713, 34.59442051645421], [-77.38875217856226, 34.59451793960082], [-77.38848174721431, 34.59459803935142], [-77.38808969289256, 34.594945898835284], [-77.38803772696971, 34.59503290681147], [-77.3879638946114, 34.59518622061909], [-77.38788717057088, 34.595057776952935], [-77.38783497826932, 34.59498262262484], [-77.387668973444, 34.59489976692417], [-77.38756987870919, 34.59472583088616], [-77.38752443801117, 34.594651794677745], [-77.38750323280965, 34.5945340493949], [-77.38752100703677, 34.594178754043824], [-77.38757001360955, 34.59390935961585], [-77.3876046478134, 34.59377941771268], [-77.38761964898896, 34.59373996506432], [-77.38766697952171, 34.59362872476228], [-77.3877490950793, 34.593489593871915], [-77.38787316342308, 34.59337690946674], [-77.38796419520357, 34.593313807053676], [-77.38798911619635, 34.593288973664606], [-77.38799992345673, 34.593260571090475], [-77.38835835341254, 34.5928326180258], [-77.38838596095265, 34.592810083978996], [-77.38841486427305, 34.592776177158285], [-77.38858458097171, 34.5925708248264], [-77.38875248022495, 34.59252825091819], [-77.38896224404358, 34.59249867303113], [-77.38932762278952, 34.59244950955689], [-77.38954065332936, 34.59242141322626], [-77.3896798254405, 34.5923191411401], [-77.38978200391217, 34.59215448356356], [-77.38987762522916, 34.59207911945951], [-77.38993478521577, 34.59203406844995], [-77.39012429218153, 34.59188470688583], [-77.3901318450373, 34.591875267870016], [-77.39028233929466, 34.591657768223854], [-77.39029868869294, 34.591622843516355], [-77.39027139318587, 34.59129679977158], [-77.39021380111467, 34.591243082363505], [-77.3900743267434, 34.59111299160404], [-77.38993492362366, 34.591037360343364], [-77.38978682039945, 34.591039647571336], [-77.38967660727327, 34.59104223750599], [-77.38954085029033, 34.59104831635229], [-77.3894278775745, 34.59105355524411], [-77.38934381336284, 34.59105505277724], [-77.38924295888069, 34.59106213032871], [-77.38914677475515, 34.59107286691398], [-77.38905983981078, 34.59107857006357], [-77.38894973941888, 34.591068227820195], [-77.38876966665337, 34.5910267481538], [-77.38875949999851, 34.591020899267654], [-77.38875272462658, 34.590929815558724], [-77.38870589349486, 34.590661874787365], [-77.38870264120537, 34.59061184418197], [-77.3887273340654, 34.59058087036807], [-77.38875277872997, 34.59057754379131], [-77.38877917621011, 34.59057236916239], [-77.38894982178061, 34.59052354831368], [-77.3891039621877, 34.590507761522154], [-77.38914685952184, 34.59050336804517], [-77.38943650869265, 34.590393508273706], [-77.38954095173466, 34.5903447905751], [-77.38984464128438, 34.590120015947164], [-77.38993505945062, 34.590064126034555], [-77.38996496479868, 34.5900374739209], [-77.39003005713954, 34.58999587155249], [-77.39018099156972, 34.58981446901383], [-77.39016092587956, 34.58973370017769], [-77.39013891296582, 34.58955560568418], [-77.39011026487071, 34.58932382409512], [-77.39008735461417, 34.58913847157134], [-77.39002828171158, 34.589046704135924], [-77.38993520082403, 34.58905640647909], [-77.38974267294736, 34.58897105136055], [-77.38973818211662, 34.588969093101035], [-77.3897232098785, 34.58896256432863], [-77.38954116361904, 34.58888318160197], [-77.38948630465012, 34.58885968287645], [-77.38938136828283, 34.58881570456471], [-77.3892280065927, 34.58875067178211], [-77.38914712756102, 34.58871297202323], [-77.38897358953233, 34.58863692004064], [-77.38875309375084, 34.58853817513706], [-77.38871896477362, 34.58852342354426], [-77.3886544446353, 34.58849595296771], [-77.38846309725513, 34.5884114444318], [-77.3883590606247, 34.588369176451266], [-77.38804087798322, 34.588241581746466], [-77.38796502717108, 34.588211399870985], [-77.38793967343814, 34.58820176377198], [-77.3878909714224, 34.58818146739358], [-77.38768090377356, 34.58809332993969], [-77.38757099471756, 34.58805628711613], [-77.38739196578615, 34.58802174347607], [-77.38734365557144, 34.58801543177888], [-77.38717694751848, 34.58799365144099], [-77.38680479993714, 34.58793709860268], [-77.38678289984324, 34.58793650733603], [-77.38676885080149, 34.5879338230958], [-77.38672512210317, 34.58792499031246], [-77.38638886380969, 34.5878187682206], [-77.38619974498486, 34.58777993688195], [-77.38617666785048, 34.587775427925514], [-77.3859948164323, 34.58776656600364], [-77.38573186342768, 34.58778487923234], [-77.38560072912078, 34.58792307305865], [-77.38535328601728, 34.58796478729177], [-77.38507766870215, 34.5877379312139], [-77.38486555037082, 34.58771152076515], [-77.38481265758124, 34.58770460200262], [-77.38466178270905, 34.58763531328144], [-77.3844186317132, 34.58755482985816], [-77.38435254981388, 34.58748910960258], [-77.38424025390111, 34.587434084639796], [-77.38422163063183, 34.58742592977537], [-77.38409640006275, 34.587377476171646], [-77.38402461896968, 34.58734970285904], [-77.38391442831863, 34.58736233350912], [-77.3838275685369, 34.5874551973781], [-77.38378947856077, 34.587499064486636], [-77.38379102594769, 34.58767180255606], [-77.38381466245076, 34.58772156061099], [-77.38388137419437, 34.58791038325282], [-77.38389156433479, 34.588052108801804], [-77.3838954301019, 34.58819392597601], [-77.38387092104102, 34.58833645568179], [-77.38386600195854, 34.58859111841934], [-77.38382953903043, 34.588766986427984], [-77.3836301826317, 34.58910584754949], [-77.38357591138485, 34.5891696545296], [-77.3832687234431, 34.58923723135736], [-77.38323608815227, 34.589244410628325], [-77.38304342494466, 34.589092583387185], [-77.38304120622367, 34.58909062338698], [-77.38303909081088, 34.58908790667551], [-77.38289418536331, 34.58890181227429], [-77.38287854828108, 34.588864806533785], [-77.38284213639106, 34.58874473033289], [-77.38278082363026, 34.58855969067732], [-77.38275844533489, 34.588496812670265], [-77.38272363382673, 34.58837406414841], [-77.38269853863456, 34.58823572052908], [-77.38264521722736, 34.588254598405435], [-77.38248568154133, 34.58811156356423], [-77.38246564282376, 34.58809568455049], [-77.38244822746002, 34.58808048419324], [-77.38226932981848, 34.587930465401065], [-77.38226037112291, 34.58792191312307], [-77.3821974084195, 34.587882828402435], [-77.38205423672478, 34.587790198773924], [-77.38203363617825, 34.58777435411073], [-77.38198594833688, 34.58775902812541], [-77.38179173092699, 34.58764532206898], [-77.38166022009389, 34.587618718322254], [-77.38143542483448, 34.58765599948069], [-77.38126616619695, 34.58760521531502], [-77.38107608136104, 34.58768538790732], [-77.38105746551217, 34.587693120327664], [-77.38102013845217, 34.587685947952515], [-77.38100958543936, 34.587623311159], [-77.38091761091054, 34.587488442688006], [-77.38096945810415, 34.587376145525354], [-77.38112296082195, 34.58703428214889], [-77.38119394564491, 34.586946064336885], [-77.38126635971955, 34.58681840728201], [-77.38144507274197, 34.586563292163746], [-77.38135884697931, 34.5862506536538], [-77.38131591620669, 34.58610413867804], [-77.38126659217005, 34.58587569187154], [-77.38107758877172, 34.58576712892969], [-77.38095985374098, 34.585690075635554], [-77.38087264195923, 34.58548330406521], [-77.3802167260616, 34.585748709572385], [-77.38008446168863, 34.58581098639625], [-77.38004539324109, 34.58587381705621], [-77.38007071033604, 34.58591224465299], [-77.38006152624529, 34.5859382438025], [-77.37986880698917, 34.58655832681343], [-77.37988054912566, 34.586788777160926], [-77.37990747838224, 34.586975254792975], [-77.37989117222024, 34.58721181008704], [-77.37983134092622, 34.58737271745808], [-77.37967695333063, 34.58766724535266], [-77.37954140420135, 34.587951411413634], [-77.37949103761558, 34.58833268936196], [-77.3795863729541, 34.58852942603867], [-77.37970956278177, 34.58891471905247], [-77.37971660557758, 34.58893522181551], [-77.37970851302448, 34.58895678653296], [-77.37957072187407, 34.58938080825946], [-77.37980728065483, 34.58964427600926], [-77.37986414308813, 34.58976308648459], [-77.3799855159593, 34.58985106730139], [-77.38008339762759, 34.58990857965808], [-77.38012109152228, 34.589938338440035], [-77.38017610979298, 34.59004276714545], [-77.38018549112783, 34.59014133917178], [-77.38017411896129, 34.59024081167145], [-77.38008325533406, 34.59046012492292], [-77.38004028445245, 34.59054055571399], [-77.37999121582783, 34.59059390066182], [-77.37986092379975, 34.5907977999931], [-77.37983943245445, 34.59104033799485], [-77.37976352410452, 34.59139548497109], [-77.3797542891109, 34.591477171567306], [-77.37979193341043, 34.59158276169649], [-77.37968885444485, 34.59171900534732], [-77.379428974971, 34.59180401138043], [-77.3792947415703, 34.59185383768143], [-77.37923351962142, 34.59191083960029], [-77.37915162561384, 34.591988582795274], [-77.37871044181227, 34.592271906994625], [-77.3785064067552, 34.592504974695714], [-77.37832175697625, 34.592758435243034], [-77.37799755177787, 34.59300400907054], [-77.37835580589984, 34.593114454049754], [-77.37850618299944, 34.59331872114747], [-77.37862395285602, 34.59363590101434], [-77.37869475333656, 34.59375267075289], [-77.37890005158205, 34.59411991759703], [-77.37891043460726, 34.59413496387769], [-77.37891911247257, 34.594165451733005], [-77.37893511944756, 34.594567159420606], [-77.37901794680727, 34.594852563665114], [-77.37929393381492, 34.59490001316931], [-77.37968292726708, 34.5948784634122], [-77.3796898549268, 34.59488099858191], [-77.37969206212838, 34.594882645795195], [-77.37991281461865, 34.59503319074846], [-77.38008203511205, 34.59522456092128], [-77.38009375908746, 34.59523668798093], [-77.38010163426605, 34.59524818689229], [-77.38010055791204, 34.59526830887138], [-77.38008201167906, 34.595316700569], [-77.380012807318, 34.59561107693161], [-77.3799147490194, 34.59569968180741], [-77.37978779472873, 34.595825716654474], [-77.3793453750099, 34.59620629395532], [-77.37929357812192, 34.596249125517964], [-77.37876203130767, 34.59656693276432], [-77.37850520807436, 34.596884572272515], [-77.37835000634331, 34.59703169388276], [-77.37816713450627, 34.5972251985829], [-77.3781109992411, 34.597271775051595], [-77.3778382028934, 34.59740331557893], [-77.37771684025682, 34.59746894886821], [-77.37755503244438, 34.597563672818346], [-77.37752413752628, 34.59774240810114], [-77.37762292211612, 34.59805173739216], [-77.37766265249977, 34.598147012526894], [-77.3776219255339, 34.598254891341895], [-77.37746050495048, 34.5987495081775], [-77.37735754916899, 34.59904009614655], [-77.37743012487576, 34.59933793882198], [-77.3777162538887, 34.59956010699405], [-77.37792661290598, 34.59980722836342], [-77.37828875725148, 34.59998731420398], [-77.37850433451051, 34.60010811979967], [-77.37854975448879, 34.600142004679796], [-77.37875837489523, 34.60026279683602], [-77.37889840256085, 34.600292100522026], [-77.37915686943853, 34.60033296861479], [-77.37929249813138, 34.60037671506075], [-77.37934834881776, 34.60039132647553], [-77.37941420155863, 34.6004420067823], [-77.37958763455246, 34.60052360264883], [-77.37968656829992, 34.6005637050297], [-77.37984185763501, 34.60063763976909], [-77.38008065934913, 34.60067414965943], [-77.38015079407295, 34.60068487229081], [-77.38043968769259, 34.600718797136665], [-77.38046761703211, 34.60072247429017], [-77.38047476633426, 34.60072368604508], [-77.38048552946091, 34.60072378570483], [-77.38082833647287, 34.6007064762757], [-77.38086888883647, 34.60071053787304], [-77.38115989404598, 34.6007260845493], [-77.38126300295554, 34.600732018113554], [-77.38140685027584, 34.600734379814945], [-77.38165715679365, 34.60058247391071], [-77.38167787520945, 34.6005626759435], [-77.38170537366588, 34.60053639898496], [-77.38183438532897, 34.60028408723275], [-77.38194855678314, 34.60007678782895], [-77.382051418046, 34.59995373202854], [-77.38232267299236, 34.59989050205608], [-77.38244555708852, 34.59984757996085], [-77.38252599571143, 34.59990689889832], [-77.38262261038676, 34.59997964244461], [-77.38272675568601, 34.60008621642535], [-77.38275587970278, 34.60029483923758], [-77.38277221904332, 34.60038264502468], [-77.38278957537963, 34.60043397234133], [-77.38283953600288, 34.60047144189201], [-77.38296786954767, 34.60064072435696], [-77.3831139185977, 34.60075796207976], [-77.3831716306871, 34.60081637911177], [-77.38323357053434, 34.60086246695262], [-77.3833231568666, 34.60082430288337], [-77.3836276892387, 34.600865950928394], [-77.38377560397855, 34.60092780305354], [-77.38402178363317, 34.60098899569043], [-77.38406141805791, 34.60100326395772], [-77.38420750502759, 34.60102490689003], [-77.38437176522591, 34.60104876614578], [-77.38441588804136, 34.60106709549967], [-77.38448873577042, 34.60106284512091], [-77.38481001204879, 34.601047334572506], [-77.38504160662444, 34.60090467973038], [-77.3851392893263, 34.600820701059796], [-77.38520419091107, 34.60073573830383], [-77.38536882519959, 34.600610274690936], [-77.38544011703404, 34.60059311240601], [-77.38559834563667, 34.60053892188628], [-77.38568978677189, 34.60059896404117], [-77.38574298451826, 34.60064774392649], [-77.38579537599915, 34.6006948469393], [-77.3858913503474, 34.60078219185874], [-77.38594268626575, 34.60082835797344], [-77.3859924031045, 34.600873067817545], [-77.38634892921726, 34.601140797314464], [-77.38637013447668, 34.60115534093148], [-77.38638647131968, 34.60116365225587], [-77.38641849348598, 34.60116526543904], [-77.38678058058493, 34.601228448983576], [-77.38701738736654, 34.601213902771995], [-77.3871747013772, 34.60122657468358], [-77.38737495275168, 34.60120860493317], [-77.38756882928065, 34.60117972853776], [-77.38776783819715, 34.60114643628668], [-77.38796295704373, 34.60113045098191], [-77.38813673382882, 34.60107025568327], [-77.38863935843142, 34.60081059970133], [-77.38871554421696, 34.600761150780826], [-77.38875125232465, 34.6007490378506], [-77.3887980462403, 34.600737313103025], [-77.38953950343048, 34.60063569982966], [-77.38958471530401, 34.60062559643288], [-77.39007017636214, 34.600604304075844], [-77.39030236685473, 34.60059816179368], [-77.39032774109016, 34.60060857186798], [-77.39036335670232, 34.600600397928524], [-77.39094939864523, 34.60065696949215], [-77.39111596645802, 34.600678604049634], [-77.3914640428756, 34.600778303273636], [-77.39152870774444, 34.600798486703965], [-77.39156944076127, 34.60081269105112], [-77.39190415709065, 34.6010782626191], [-77.39194617772249, 34.60113766068013], [-77.39199579247497, 34.60117578037575], [-77.39237409638447, 34.60146407325419], [-77.39269236097246, 34.601418817929215], [-77.39291216062311, 34.60128040172941], [-77.39308649644734, 34.601256005432404], [-77.39327391277935, 34.60121414328107], [-77.39348062392783, 34.601165286281514], [-77.39363529302764, 34.60110596363505], [-77.3938747543309, 34.601029054524616], [-77.39396784757642, 34.60099167284443], [-77.39418536983581, 34.600949980423934], [-77.39426888023304, 34.600932058841906], [-77.39432654707085, 34.60090177827004], [-77.39449386623009, 34.60081552689062], [-77.39462007966338, 34.60075107470038], [-77.39466301343421, 34.60072540082346], [-77.39490658170705, 34.6005938106528], [-77.39505714791704, 34.60047248315847], [-77.39515742958034, 34.600403278322275], [-77.39541744059028, 34.60025775091428], [-77.39544064890153, 34.600242952573424], [-77.39546906995501, 34.60023113856623], [-77.39584539755137, 34.60016250260007], [-77.3960606523188, 34.599972283350546], [-77.39623952630357, 34.599897262462335], [-77.3965911566523, 34.599663885675085], [-77.39661969981218, 34.599644738086575], [-77.39663365259838, 34.599631245259914], [-77.39670236604313, 34.59957382294444], [-77.39702777887439, 34.59931324843721], [-77.39714302628612, 34.599283862590426], [-77.39742189407613, 34.59918124926496], [-77.39773042637827, 34.59898277617184], [-77.39781601176969, 34.59894882956236], [-77.39792880164637, 34.598924851546016], [-77.39821012044423, 34.59891711094148], [-77.39846176331879, 34.59881599532951], [-77.39860423163447, 34.59878425957257], [-77.39887853968202, 34.59861384257006], [-77.3989983439541, 34.598555610408376], [-77.39906772681539, 34.59853223170851], [-77.39915431626065, 34.598444993573864], [-77.39947342435012, 34.59806160797946], [-77.3995018135534, 34.597970287798276], [-77.39978657050221, 34.59756729968766], [-77.39980929472266, 34.59752583424085], [-77.3998238624683, 34.59749925189617], [-77.40018067604848, 34.5971472390792], [-77.40025731809406, 34.597094709373636], [-77.40042803424302, 34.59698751072449], [-77.40053067685214, 34.59692519196442], [-77.40057477640333, 34.59689710038461], [-77.40070560664475, 34.59680651545523], [-77.40079420186706, 34.59674649958217], [-77.40096887476354, 34.59650784618669], [-77.4009886252417, 34.59648205398177], [-77.40118477984626, 34.596261779813474], [-77.40136296936407, 34.5960445981441], [-77.40138207097444, 34.59602128997565], [-77.40139516960086, 34.595998820915966], [-77.4015478512476, 34.59575139841704], [-77.40167755899981, 34.5955335004111], [-77.40171392839451, 34.59548178565123], [-77.40175705868836, 34.59541391478846], [-77.40188559743754, 34.59521739031891], [-77.40195343422994, 34.59506911886312], [-77.402151140693, 34.59462811473511], [-77.40215499377065, 34.594619611308374], [-77.4021569650216, 34.59461517560437], [-77.40216984038072, 34.59459317089025], [-77.40231233618465, 34.5943418510261], [-77.40247135144187, 34.594145235196265], [-77.40250369651099, 34.59409583222442], [-77.4028099001382, 34.593671806753], [-77.40285889032776, 34.593578112856605], [-77.40293928956662, 34.59338105952065], [-77.40325119231863, 34.59275897473256], [-77.4031274455712, 34.59257409800137], [-77.40310036974165, 34.59235616431963], [-77.40307561928054, 34.592212831702895], [-77.40304514702922, 34.592053634461536], [-77.4030231805901, 34.591942727676674], [-77.40302301843406, 34.5918525112897], [-77.40293925049035, 34.591173254958704], [-77.40293214018564, 34.59111437398705], [-77.40292604873542, 34.59110759339512], [-77.40286355538895, 34.59034900032964], [-77.40282120147151, 34.59027357222535], [-77.40289347699263, 34.59021384207548], [-77.40293923294361, 34.59010795931687], [-77.40314404507197, 34.58959851171926], [-77.40325705478007, 34.58936152356672], [-77.40332846793122, 34.58893181995551], [-77.40333035349325, 34.58892636999884], [-77.4033302807068, 34.58892315595568], [-77.40330814418122, 34.58850499926505], [-77.40330238754329, 34.588114515021125], [-77.4032993162934, 34.58808169744435], [-77.40330177226704, 34.58804742044427], [-77.4033332551342, 34.587987895537964], [-77.40348113664692, 34.58763088216199], [-77.40358774919397, 34.587465138171204], [-77.40371042688699, 34.587173215871616], [-77.40371534758467, 34.587159638044284], [-77.40372728928234, 34.587123346741386], [-77.4038185415301, 34.58683136532098], [-77.40384786251283, 34.58672880511709], [-77.40391032062064, 34.58652256395551], [-77.40399409214376, 34.58628312499244], [-77.404014291724, 34.58616489609787], [-77.40408622985147, 34.58584525072802], [-77.40410229954773, 34.58543882146056], [-77.40410369497033, 34.585418154485936], [-77.40410345068855, 34.585398965502904], [-77.40407913682944, 34.58504253451093], [-77.40407035368082, 34.5849983901222], [-77.40398844764229, 34.58472875488753], [-77.40394538854284, 34.58459184922985], [-77.40384208230161, 34.58430593987053], [-77.40380707096463, 34.58418723553443], [-77.40378253715954, 34.58413117431077], [-77.40372722062449, 34.58403624752507], [-77.40343954279845, 34.583701093265034], [-77.40333317740593, 34.583590739865215], [-77.40323442607273, 34.583527132601446], [-77.40299568550417, 34.583516108196775], [-77.40293914280794, 34.583532604579425], [-77.40285594319057, 34.58356499808071], [-77.40254511040106, 34.58373107462246], [-77.40238785447525, 34.58379803135091], [-77.40215107597412, 34.58388986390622], [-77.40206512999825, 34.583921441549236], [-77.40178624660268, 34.58402282349579], [-77.4017570400395, 34.58402607859092], [-77.40171953446382, 34.58402350811521], [-77.40136300368388, 34.58404208505791]], [[-77.30695914307577, 34.56346762872277], [-77.3075041888134, 34.56323479991064], [-77.30714246510803, 34.56293523243585], [-77.30659732753954, 34.563129247404206], [-77.30602778981441, 34.56344332408182], [-77.30602504493788, 34.56344709962275], [-77.30602778342146, 34.56344881308511], [-77.30666360813595, 34.56351925151653]], [[-77.40084543796873, 34.56622441747186], [-77.40057534362768, 34.56622024614313], [-77.4004809810773, 34.56608763614261], [-77.3989995278042, 34.56633269320082], [-77.39884702670108, 34.56638608307261], [-77.39760553602068, 34.566596848411486], [-77.39742370012756, 34.56654246397407], [-77.39712337735723, 34.56731959386742], [-77.39691926501415, 34.56765463765924], [-77.3966357056643, 34.567661459464084], [-77.3962957320889, 34.56792178616674], [-77.3962417228434, 34.56794457999438], [-77.39602141986563, 34.5681405621483], [-77.39584773198807, 34.5682912227333], [-77.39579628678096, 34.568304772150555], [-77.3957779599789, 34.568362857420084], [-77.39579849224226, 34.5684129491229], [-77.39579846391923, 34.56878447148587], [-77.39584768117389, 34.568892078714086], [-77.39594182519684, 34.569086884516445], [-77.39602049921922, 34.56917700959026], [-77.39624159847487, 34.569503863065314], [-77.39627014698212, 34.569534794878365], [-77.39637899340805, 34.56969794336931], [-77.39624156353094, 34.56994597391617], [-77.39621986414534, 34.56999739095914], [-77.39619809873386, 34.57004736331637], [-77.39624155478161, 34.57005697913963], [-77.39635340182843, 34.570282143059096], [-77.39663551072064, 34.57026549418883], [-77.39679350683299, 34.57059347655573], [-77.39742343227212, 34.57061933419115], [-77.39748038495178, 34.570603291815296], [-77.39781740973189, 34.570556681758234], [-77.39789162927346, 34.570525347339796], [-77.39815970789434, 34.57056664841153], [-77.39819783310148, 34.57057574851012], [-77.39821138169185, 34.57058230189372], [-77.39825253795514, 34.57059760715301], [-77.39899930740819, 34.57104861403982], [-77.39911884696447, 34.571148566320055], [-77.40010773475989, 34.571134694433], [-77.40031447650276, 34.57138583140032], [-77.40035593638251, 34.57256091851978], [-77.39978719565536, 34.5728396799767], [-77.39972129981484, 34.57288875820546], [-77.39909659396567, 34.573083839103326], [-77.39910950428467, 34.573826187634815], [-77.39922770444178, 34.574055400742495], [-77.39929263881596, 34.57433265357627], [-77.39939315234255, 34.57438737556136], [-77.39948956590555, 34.574620494032544], [-77.39951961755317, 34.57490442908524], [-77.39963210770767, 34.57528203648586], [-77.3995910792538, 34.575454993630984], [-77.39943078864957, 34.57586208095], [-77.39941201947197, 34.5759054058993], [-77.39942412878932, 34.57593710115852], [-77.39954989433835, 34.57614110935946], [-77.39962338414247, 34.5761230743002], [-77.39978708628851, 34.576146754917104], [-77.39996461953965, 34.57605893369734], [-77.39999328539037, 34.57604372738952], [-77.4001810902524, 34.57597873766192], [-77.40032416666162, 34.57592796114771], [-77.40057509188743, 34.57584022996641], [-77.40077781102141, 34.57570831973693], [-77.40091350962011, 34.57562883967771], [-77.40096909412401, 34.575592599421825], [-77.40110250051922, 34.57551770473036], [-77.40136309383068, 34.5753570349097], [-77.40146668850144, 34.57529596639719], [-77.401717101957, 34.57514819402806], [-77.40174542415012, 34.5751315341182], [-77.40175709125168, 34.575122010469265], [-77.4018545784142, 34.575023300619726], [-77.40196841717717, 34.574915076809035], [-77.40202793382906, 34.57481147240711], [-77.40211106384237, 34.57466676285083], [-77.4021510880249, 34.57454023737837], [-77.40224617828841, 34.574325158122605], [-77.40232853797687, 34.57421080080087], [-77.40235038755603, 34.57399287804384], [-77.40215109242553, 34.57367091950337], [-77.40206803688284, 34.57348875072777], [-77.40197282906017, 34.57341298633483], [-77.40169643146908, 34.57309368881488], [-77.40074051903419, 34.57274167740302], [-77.40215110496305, 34.571637963065506], [-77.40293301953223, 34.57156959470723], [-77.40355692473645, 34.570636900034614], [-77.40372700004025, 34.57036309444695], [-77.40438163749133, 34.570517858675835], [-77.40510138707229, 34.57063112375118], [-77.40530288977182, 34.57053189264207], [-77.40559176252053, 34.570654487272435], [-77.40576917525652, 34.57031756733856], [-77.40651232538752, 34.56981540138678], [-77.40687873186668, 34.56961791825668], [-77.4071833123119, 34.56926426417422], [-77.40687870755164, 34.569113801080746], [-77.40659537746683, 34.56880531828288], [-77.406254158743, 34.56872534006327], [-77.40609076734295, 34.56884237888452], [-77.40578923093895, 34.5686163639904], [-77.40544587205616, 34.568511771337604], [-77.40530282337053, 34.568264793153446], [-77.40435618333618, 34.568145112122465], [-77.40372695533198, 34.565620212845076]], [[-77.44746168573616, 34.73418129744766], [-77.44728493990883, 34.73443758289085], [-77.4469858862792, 34.73437985916696], [-77.44706477139263, 34.734078028622775]], [[-77.37211712227966, 34.70127264535189], [-77.37173833749327, 34.70108965686094], [-77.3713604647491, 34.70106659802548], [-77.37115665775987, 34.701031261822216], [-77.37088397009688, 34.70103914247258], [-77.37085721283884, 34.70103172271743], [-77.37070288026297, 34.70084387399655], [-77.37067968678772, 34.700802138738176], [-77.37072078413036, 34.70063711916909], [-77.37077000655407, 34.70059095134783], [-77.37088916946487, 34.70046725006085], [-77.37109501379717, 34.70030258342749], [-77.3712554652365, 34.70015367380114], [-77.37204618393983, 34.69975019981274], [-77.37214056437197, 34.69970323159534], [-77.37218888910952, 34.69970447367938], [-77.37272179212547, 34.699763150987714], [-77.372989831228, 34.69981228461267], [-77.37302920473203, 34.70003671727121], [-77.37316904726882, 34.70028488565526], [-77.37321945657027, 34.70042404556604], [-77.37325560245793, 34.70049299001905], [-77.37358073781806, 34.70092923412319], [-77.37358289100844, 34.70093279854699], [-77.37358407445689, 34.700935230896675], [-77.3735869260796, 34.700943168642155], [-77.37377574981778, 34.70139627589844], [-77.37366269214384, 34.701648413331974], [-77.37366003306678, 34.70165588106767], [-77.37365154818823, 34.70166848261688], [-77.37349446588925, 34.7019223380426], [-77.37341648522714, 34.70206839097678], [-77.37257801763526, 34.70253570907961], [-77.37254323792789, 34.702570935206325], [-77.37248620658178, 34.702638623718514], [-77.37247571868289, 34.702573655799256], [-77.37247677091716, 34.702549626303785], [-77.37248417877309, 34.70251860852573], [-77.37247646727712, 34.702062273867966], [-77.37243693455295, 34.701814979884205], [-77.37237800227858, 34.70158841457738], [-77.37224995676794, 34.701389547077106]], [[-77.38015137543275, 34.729434777076726], [-77.38028942102153, 34.729528951980484], [-77.38053538527804, 34.729504962732385], [-77.3806619198988, 34.729521422747176], [-77.38078000005288, 34.729519409027716], [-77.38089969381213, 34.72953611876952], [-77.38092470070725, 34.729549460266576], [-77.38118157590725, 34.729622968761696], [-77.38122643102446, 34.729614558344544], [-77.38136584181595, 34.729605233504486], [-77.38154319727249, 34.72962782247207], [-77.38197960541794, 34.72965966399156], [-77.3821205986622, 34.72966199312142], [-77.38218362260614, 34.72963058675134], [-77.38233662312936, 34.729647029744655], [-77.38256633402655, 34.72964260989329], [-77.38260026822066, 34.72953717542073], [-77.38262331459765, 34.72932576687117], [-77.38266823092789, 34.72906077340785], [-77.38272383388838, 34.72880176428965], [-77.38259514782217, 34.728646724691664], [-77.38250383781497, 34.72852664170302], [-77.38235636458265, 34.728299929636165], [-77.38204514862625, 34.72804151488004], [-77.38201039787013, 34.72801718082247], [-77.38197686936257, 34.72801176624255], [-77.3814596610324, 34.72783226426037], [-77.38142326618707, 34.72783073310383], [-77.3810539295213, 34.72791706909801], [-77.38076373295313, 34.72789388189907], [-77.38049733975802, 34.728022511213936], [-77.38031002354069, 34.72819720105432], [-77.3799927833553, 34.72834109743951], [-77.37995682543257, 34.72836795205702], [-77.37992719086287, 34.72838214383239], [-77.37962647094747, 34.72857607216757], [-77.37925020507957, 34.72870438132534], [-77.37924796823265, 34.72870542927419], [-77.37924573008159, 34.72870590732645], [-77.37923596919242, 34.728707506204096], [-77.37881858595172, 34.72875154754942], [-77.37852835303175, 34.72900232852018], [-77.37852419935331, 34.729009459123134], [-77.37875850003184, 34.72935272379201], [-77.3790404834538, 34.7294133968405], [-77.37921448170496, 34.72939921668615], [-77.37936518421465, 34.729399314280386], [-77.37963853657897, 34.729399490681786], [-77.37967196021584, 34.729399055312264], [-77.37968754264165, 34.72939330406898]], [[-77.37459531139514, 34.59261302558915], [-77.37463407511663, 34.592639494675616], [-77.3753536265017, 34.59292259140929], [-77.37549008713668, 34.59321817799615], [-77.37560392953174, 34.59334888996477], [-77.37614154850394, 34.593730407291076], [-77.37678899447229, 34.59332988476394], [-77.3769297714233, 34.59356452219396], [-77.3770585832663, 34.59327798720891], [-77.3771913615385, 34.593120173119566], [-77.37699057790172, 34.593083745524936], [-77.37692998715308, 34.59282950794451], [-77.37671171591921, 34.5923401591569], [-77.37638260165498, 34.59212840120796], [-77.37614211981779, 34.59184748411531], [-77.37592254445352, 34.59160474033642], [-77.37554773976174, 34.59145010809867], [-77.37535417068398, 34.59118621119149], [-77.37503471528731, 34.590883531438095], [-77.37513372716947, 34.59025795665558], [-77.37481209023808, 34.590066483507655], [-77.37521655665658, 34.58985949954344], [-77.37535466366582, 34.58961909575189], [-77.37559128643223, 34.589359945126745], [-77.37550482745574, 34.58911755633844], [-77.37535506883896, 34.58833509563655], [-77.37533985271416, 34.58830860619586], [-77.37458290562472, 34.58841848461064], [-77.3745669174947, 34.58841987937964], [-77.37449672135837, 34.58848928029847], [-77.37417279972547, 34.58858768593166], [-77.37412700335283, 34.588842251078155], [-77.37411701117978, 34.58895291644867], [-77.3741251735705, 34.58931632472892], [-77.37421096697815, 34.589687014717875], [-77.3745665146791, 34.58965929985902], [-77.37457522162293, 34.58966666557786], [-77.3745907037307, 34.58967381833837], [-77.37456647973471, 34.58976700380683], [-77.3743284084523, 34.58987971393468], [-77.37412148062965, 34.58979627827246], [-77.3737783290947, 34.589806266073424], [-77.3734504802967, 34.58976675330187], [-77.37333197754786, 34.58979882414802], [-77.37304544144273, 34.58989643225283], [-77.3731828670764, 34.59009350448349], [-77.37312570303006, 34.59030942973643], [-77.37328701983857, 34.59081514336881], [-77.37347570899207, 34.59110812881533], [-77.37336442647957, 34.591527977576405], [-77.37319222978707, 34.59199808385901], [-77.3734463619225, 34.59231821504936], [-77.37377740746888, 34.5925744675984], [-77.37384596469892, 34.59267913453708], [-77.37454515283439, 34.59263032688402], [-77.37456555697064, 34.59261970651067]], [[-77.37306812403203, 34.67623469977438], [-77.3729411337784, 34.67630985191687], [-77.37287012712724, 34.67624855838448], [-77.37250058167518, 34.67622705688247], [-77.37185942646265, 34.676238301420085], [-77.3717869838286, 34.67616250387033], [-77.37164566012979, 34.67625021770252], [-77.37156766820235, 34.676355318128095], [-77.37155486301333, 34.67696276748143], [-77.37155381674194, 34.67726214190337], [-77.37162050492525, 34.67732284244634], [-77.37191100646326, 34.677761682631726], [-77.37191771959544, 34.677769376404115], [-77.3719163795773, 34.677771485577374], [-77.37191907124877, 34.677770354544144], [-77.37192143098741, 34.67777092202327], [-77.37251713205958, 34.67777171095493], [-77.3731509115451, 34.67758433829971], [-77.37318422566257, 34.67758374741971], [-77.37379335768453, 34.677498230598445], [-77.37380114364689, 34.677502966286], [-77.37386882713064, 34.677501119555764], [-77.37435233876522, 34.67747279012608], [-77.37448295927497, 34.6774886497338], [-77.37456794552999, 34.67740499006879], [-77.37452485853963, 34.677339941404234], [-77.37480434201315, 34.676885088352975], [-77.37475562833596, 34.676454066245185], [-77.37478564533653, 34.67640026351147], [-77.37480915841043, 34.67633247707103], [-77.37473852448471, 34.67630273241975], [-77.37448188940084, 34.67621145763392], [-77.37446345927877, 34.67620441755711], [-77.37416069169979, 34.67623167530946], [-77.37389966636695, 34.67624429932239]], [[-77.39486344284262, 34.7205676462482], [-77.39484549510408, 34.72074196088], [-77.39475742799252, 34.72090013891818], [-77.39498268201544, 34.72087064488334], [-77.39504107891199, 34.72085817128929], [-77.3955520634529, 34.721118180585194], [-77.39565415676344, 34.72111251312383], [-77.39587161546197, 34.72112168706797], [-77.39591791819623, 34.72111719594295], [-77.39610357383988, 34.721099188286374], [-77.39622003647098, 34.721025597640704], [-77.39629995863163, 34.72097129298034], [-77.39638275299968, 34.720807449175254], [-77.39644078774694, 34.72074099324855], [-77.39641490481756, 34.72065553805427], [-77.39636445071727, 34.720527382799034], [-77.39626351295252, 34.72027232793058], [-77.39592208882608, 34.72005405190102], [-77.39586405697321, 34.72004186076294], [-77.39532741334108, 34.71979228355825], [-77.3953054667313, 34.71977905875451], [-77.39530712379916, 34.71975140547686], [-77.39526256964638, 34.719723743285726], [-77.39524391550071, 34.71976306734282], [-77.39528001462881, 34.71978966845028], [-77.39502887108574, 34.720246973495136]], [[-77.31999892665976, 34.747765559764446], [-77.32007230119872, 34.7479862814273], [-77.31969799150394, 34.74829790059438], [-77.31916579205132, 34.747879662254746], [-77.31878193847629, 34.747816672765055], [-77.31882670570103, 34.74717455898816], [-77.31882109195047, 34.746952146265066], [-77.31890114608176, 34.746918685419075], [-77.31890911470477, 34.746930752496745], [-77.31892370682526, 34.74693809326621], [-77.31942204998104, 34.747187268221076], [-77.31952057030391, 34.74724895750942], [-77.31987121315215, 34.74770246595114], [-77.31992647338043, 34.747725155160325]], [[-77.29279998096219, 34.563516184712824], [-77.29306998698357, 34.56324218604982], [-77.29306860414951, 34.56322445496784], [-77.29302464226711, 34.563220095417954], [-77.292664826307, 34.56312323056301], [-77.29236432528761, 34.56333385833964], [-77.29250075991996, 34.563461816977224], [-77.29250411581226, 34.56355861446409], [-77.2925979049066, 34.56358013744671], [-77.29265393788482, 34.56358301971447]], [[-77.26573631682261, 34.58378772652147], [-77.26624476032566, 34.58371010330989], [-77.26562876946171, 34.5835845355661], [-77.26554500136254, 34.58361759010557], [-77.26550495617215, 34.58365193068525], [-77.26499129971685, 34.58378239901205], [-77.26492349107455, 34.58390883216816], [-77.26511444144805, 34.584092556615374], [-77.26515829743097, 34.58451462735649], [-77.26579943258503, 34.58414642321108]], [[-77.23775320773265, 34.59202234222456], [-77.23796357083107, 34.591949787513244], [-77.23808662070422, 34.59186242394681], [-77.23817797776111, 34.591718232152914], [-77.23832578444723, 34.59093857679395], [-77.23831645162493, 34.590931651930575], [-77.23830804473648, 34.59092639008225], [-77.23825100714167, 34.590890689771584], [-77.23766778337315, 34.59052564555493], [-77.2374694279859, 34.59051390452992], [-77.23688405945441, 34.59040828030504], [-77.23641998784285, 34.59057643658203], [-77.23623518088064, 34.59077370530721], [-77.23592425115679, 34.591092189158054], [-77.23579509651988, 34.591210351738404], [-77.23575309333677, 34.59129793704624], [-77.23552009440748, 34.59166001409958], [-77.23586306734046, 34.59242492572792], [-77.23634913891131, 34.59240268068173], [-77.23690032010039, 34.59231865175822]], [[-77.39998787875511, 34.73194071068967], [-77.3999588029612, 34.73167530655098], [-77.39977004459885, 34.73158453999131], [-77.39960642654842, 34.731462863853054], [-77.39941096985248, 34.73145734079338], [-77.39923759163594, 34.73146220066705], [-77.39895660857691, 34.73149256381775], [-77.39880774982736, 34.73150763561334], [-77.398534908937, 34.73153818960202], [-77.39837910127736, 34.73155502306467], [-77.3982946485738, 34.73156414711773], [-77.39804069737697, 34.73158219270677], [-77.3979419411367, 34.73158849165008], [-77.39762095638542, 34.73167619445441], [-77.39747236462934, 34.73172563397494], [-77.39738071431792, 34.732167382534094], [-77.39733452102844, 34.73223655514026], [-77.39733017406347, 34.732324676581285], [-77.39742901477776, 34.732338338283874], [-77.39748609684715, 34.732339698319585], [-77.397635005718, 34.73234167020488], [-77.39795324578053, 34.73235525997431], [-77.39806760696581, 34.73234739878579], [-77.39830735898884, 34.73229729896859], [-77.39836739832234, 34.732284165259244], [-77.3986982607574, 34.73220074934549], [-77.39875554975774, 34.732186201618894], [-77.39877610669632, 34.732181701729694], [-77.39916125939845, 34.73208565653062], [-77.39943991545765, 34.73203733098595], [-77.3999466980003, 34.73203203946409]], [[-77.422173582888, 34.7442638021752], [-77.42220108437249, 34.74427292512715], [-77.42269923264101, 34.74471410715512], [-77.42288626072217, 34.744879938645596], [-77.42322764554349, 34.745103815200856], [-77.42338805174312, 34.74526024163742], [-77.42355350119797, 34.745494433038054], [-77.42349321714423, 34.745671965422375], [-77.42328301446112, 34.74578260095713], [-77.42312992141453, 34.745826301334255], [-77.42232672603082, 34.746007443319314], [-77.42232567664637, 34.74600810736504], [-77.4223244286396, 34.74600833388731], [-77.42232187621225, 34.74600804612758], [-77.4223204216452, 34.74600523984794], [-77.42230106408415, 34.7459678943148], [-77.42196651766551, 34.74532247158898], [-77.42194137853686, 34.7452739722089], [-77.42191215486548, 34.74521759187092], [-77.42189078089869, 34.74473692582092], [-77.42214773124027, 34.7442951743331]], [[-77.33024559696766, 34.65662260789231], [-77.3302619805331, 34.65661196239157], [-77.33028865856349, 34.65649598084282], [-77.33035453086474, 34.656473427073465], [-77.3304168477668, 34.65661566196251], [-77.33039171306616, 34.656626978212564], [-77.33029655057516, 34.65667017964153], [-77.33024314025323, 34.65669386922664]], [[-77.43257854222337, 34.50343712239807], [-77.43260209877268, 34.5033890422727], [-77.4326102744052, 34.50334212229388], [-77.43228183362032, 34.50301653418745], [-77.43206654545281, 34.50284324360831], [-77.43172760746776, 34.50278699830368], [-77.43146837466304, 34.502838016202354], [-77.43137552252234, 34.5029703039377], [-77.43090578094271, 34.503158710933874], [-77.430866227655, 34.5032820917752], [-77.43082338566884, 34.50341573391997], [-77.43079388938823, 34.50350774372543], [-77.43075968999355, 34.503614425189056], [-77.43083326902163, 34.50371760673978], [-77.43099283380612, 34.5041866475391], [-77.4319114991998, 34.50424166192618], [-77.43211176721286, 34.50419348973865], [-77.43229734502704, 34.50403063061903], [-77.43242491165262, 34.50389705783462], [-77.43248983847427, 34.50370268069024], [-77.43251028042005, 34.50364148301845]], [[-77.36899659843183, 34.72203622663669], [-77.36868550706649, 34.72204989642754], [-77.36866849863114, 34.72198542199099], [-77.36858906481481, 34.72204060062661], [-77.36818631409764, 34.72203980894437], [-77.3680593037537, 34.72202131897873], [-77.36791229575414, 34.72194151447513], [-77.36816185259053, 34.72166797762886], [-77.36816561378689, 34.72166548722595], [-77.36816896960991, 34.72166255292155], [-77.36890556224853, 34.72116857099077], [-77.36897806894221, 34.7211089172741], [-77.36910548018125, 34.721046482584796], [-77.36961175913758, 34.72079839290658], [-77.36986899988975, 34.72094156736769], [-77.37005146686842, 34.720998659417084], [-77.37006584735761, 34.7212969404882], [-77.37007087485236, 34.72140121942168], [-77.37006507632489, 34.72177670506392], [-77.37006233213393, 34.72188978522663], [-77.37005693471167, 34.72206461084019], [-77.36982538762625, 34.722125534379586], [-77.36972524252239, 34.72203824142757], [-77.36925513899304, 34.7220272376317]], [[-77.37416872008622, 34.60111762898855], [-77.37430856988144, 34.600903612893866], [-77.37451908033248, 34.60072271188272], [-77.37454339691078, 34.600698118451426], [-77.37456301208182, 34.60058201447228], [-77.3746407284616, 34.60036427189314], [-77.37465567540434, 34.60027847390441], [-77.37456314898313, 34.60015013004938], [-77.37427654337358, 34.59979283559081], [-77.37416917046474, 34.59971734035588], [-77.37397297529515, 34.59952769886064], [-77.37389004348917, 34.59941587903923], [-77.37377519213021, 34.599296851046354], [-77.37353194699237, 34.599004248516806], [-77.37333469894091, 34.59877052149725], [-77.3731833586084, 34.5985810130841], [-77.37298730325885, 34.59829045439589], [-77.37281430652165, 34.59818276430709], [-77.37272596107242, 34.59800908768872], [-77.37268715881957, 34.59769112044585], [-77.3726633679179, 34.597168984606405], [-77.372680271425, 34.59664878635928], [-77.3722163597458, 34.595552720394316], [-77.37221228028747, 34.595535723095296], [-77.37220005209716, 34.59550799367348], [-77.37217279614059, 34.59554141034581], [-77.37129613877057, 34.59639247553971], [-77.37062311315002, 34.59701489335195], [-77.36969283481862, 34.597596829993805], [-77.36957411399554, 34.59818257696175], [-77.3697007197503, 34.5984448126174], [-77.36979503783073, 34.59847358627604], [-77.36983434499899, 34.598506954480115], [-77.37030907297792, 34.5992063143284], [-77.37042328934942, 34.59940418038343], [-77.37062211123819, 34.59975468833481], [-77.37074330830089, 34.59999289186592], [-77.37066042832538, 34.600812253870515], [-77.37065103384563, 34.60085529865709], [-77.37072361924484, 34.60095466164566], [-77.37122541149463, 34.60162169144571], [-77.37130997466622, 34.601716882637966], [-77.3714096398916, 34.60174224526986], [-77.37157229344626, 34.60174694583777], [-77.37191706007779, 34.60182455976751], [-77.37219783913815, 34.601894825220455], [-77.3724503487135, 34.602022326794476], [-77.37279664017811, 34.60204047482211], [-77.37298607152296, 34.60195592143437], [-77.37337530102887, 34.601741943941555], [-77.37338026993321, 34.601738364945135], [-77.37338159446843, 34.601737112490305], [-77.37338575014888, 34.60173508751478], [-77.37369355291086, 34.60160361730224], [-77.37377446177965, 34.601534604459935], [-77.37393144867781, 34.60140098446238], [-77.37411717390184, 34.60120516788565]], [[-77.40913867648256, 34.57056826390558], [-77.40917843517768, 34.570674528986316], [-77.40917804313976, 34.570744179552406], [-77.40898629219872, 34.57112685049216], [-77.4089439343908, 34.57123561530509], [-77.40896900292354, 34.57155392537837], [-77.40914417748125, 34.571634797638396], [-77.40924269268834, 34.57167171241028], [-77.40940636703452, 34.57173897458157], [-77.4095061796794, 34.57176031211986], [-77.40963667404426, 34.571731610046854], [-77.4099896295767, 34.57145074219096], [-77.41002996568857, 34.571825316868406], [-77.41003065886062, 34.57182550840766], [-77.41003094133181, 34.57182548041019], [-77.41003104709607, 34.57182516072385], [-77.41005467144583, 34.57142308574309], [-77.41005807531145, 34.57139667837539], [-77.41008104574516, 34.571339013948105], [-77.41003060815412, 34.57124603260457], [-77.40984795643226, 34.570774655243994], [-77.40936081394518, 34.570648195977114], [-77.40931868155464, 34.57057229376362]], [[-77.2688381176601, 34.58260285733435], [-77.26917909060424, 34.58231475939667], [-77.26961514528135, 34.58208974570992], [-77.26915555997215, 34.58161150907117], [-77.26911840165752, 34.58160264710854], [-77.26847225917528, 34.581620316615144], [-77.26823978374486, 34.58175553470201], [-77.26800740311279, 34.58186412884079], [-77.26784923572733, 34.58195091855653], [-77.26790089227993, 34.582058727213386], [-77.2680478072685, 34.58213509671767], [-77.26815584141532, 34.58233064755701], [-77.26854439680805, 34.582476906866724], [-77.2685611362051, 34.582546247624286]], [[-77.37339191641004, 34.53586543859785], [-77.3735316208571, 34.53583840290682], [-77.37372056392277, 34.53572442137659], [-77.37398918021492, 34.53532091110907], [-77.37340317298107, 34.53537011841069], [-77.37327918336172, 34.535715601427874], [-77.37330254026091, 34.53578467011979], [-77.37332963563216, 34.53582024938896]], [[-77.33615418066057, 34.55892264837079], [-77.33597183664186, 34.55912695632569], [-77.33594527476664, 34.55912038934143], [-77.33595412210671, 34.55914774888209], [-77.33596373873804, 34.55915506881131], [-77.3359717970731, 34.55917588266491], [-77.33624180210785, 34.55966405868222], [-77.33636524841602, 34.55977343572297], [-77.33650709554999, 34.55964553914745], [-77.33675960568277, 34.55924435776793], [-77.33681148702509, 34.55908024468913], [-77.33684012397202, 34.55902035575409], [-77.33688742338269, 34.558876121136116], [-77.33675994338378, 34.558821904072246], [-77.3367060307598, 34.558673325373064], [-77.33637718064901, 34.55867428639767], [-77.33636612852126, 34.55867881636446]], [[-77.2882702015284, 34.56935174495317], [-77.28852637997063, 34.56894436362816], [-77.2889614625604, 34.569257107395515], [-77.28869252125915, 34.56977475051196]], [[-77.33387218053505, 34.69127902331218], [-77.33391449819246, 34.69116278164656], [-77.3339099974827, 34.69127383683211], [-77.33381668074117, 34.69149941256191], [-77.33387008297403, 34.69128626027729]], [[-77.25660912114391, 34.60474443136337], [-77.25700880190917, 34.60466518188894], [-77.25668274722818, 34.60459894536202], [-77.2564698144656, 34.60462277431263]], [[-77.3643244709966, 34.58132102150089], [-77.36444373782635, 34.5812419913375], [-77.36511282400767, 34.580664551106075], [-77.36522953031331, 34.58053388213169], [-77.36590102741488, 34.58032313845236], [-77.36598277515749, 34.58029972621795], [-77.36660106870355, 34.58011576036697], [-77.36668921965318, 34.579992486780704], [-77.36704006315257, 34.57967623645488], [-77.3669512887706, 34.5793111349324], [-77.36676948958662, 34.57925116621967], [-77.36668956068843, 34.57919227430616], [-77.36657786192126, 34.579060773448845], [-77.36640835301168, 34.57896476913952], [-77.36633969270068, 34.57892720583671], [-77.36607777281824, 34.57877753789996], [-77.36590168710049, 34.57880911137772], [-77.365804127187, 34.57873238440897], [-77.36577688658208, 34.57863115051754], [-77.36550780747521, 34.578493813549684], [-77.36529411567344, 34.57850636397494], [-77.36511379914911, 34.57847389040734], [-77.36480260318277, 34.578257759258385], [-77.36471989482881, 34.578223293511535], [-77.36451395381796, 34.578166529267705], [-77.36432584234612, 34.578303215412475], [-77.36374649159524, 34.57869847019825], [-77.36353757230127, 34.57881271756227], [-77.36347316834856, 34.57889352661493], [-77.36297495453306, 34.579640414506684], [-77.36291194612198, 34.579892799145], [-77.36342920551668, 34.579934523945276], [-77.36353698526456, 34.58007759877896], [-77.36378841303899, 34.58034466640677]], [[-77.36624004842828, 34.5450494295536], [-77.36611768460737, 34.545001385875054], [-77.36594076739837, 34.54506003924633], [-77.36562003653275, 34.5452157345711], [-77.36543360489716, 34.54531003051568], [-77.36532165350228, 34.54547685245069], [-77.36527205553124, 34.54572815827324], [-77.36526444714976, 34.545756607944874], [-77.36525002767348, 34.545798770663076], [-77.36522101296227, 34.5460076901298], [-77.36530549975774, 34.54618478627516], [-77.36538722341677, 34.546177711237256], [-77.36594900962602, 34.546057484710076], [-77.36609793966397, 34.54586705741552], [-77.3667046709738, 34.54554914216883], [-77.36676289170313, 34.54545998549111], [-77.36646148000294, 34.545094522977465]], [[-77.43250209650164, 34.73047751166386], [-77.43235900835258, 34.730505642346074], [-77.4322935699897, 34.73051071040062], [-77.43223815875362, 34.73059145716336], [-77.43217504729311, 34.73069095477761], [-77.43216225493086, 34.730716404151856], [-77.43214097361849, 34.73075295111713], [-77.4320584824178, 34.73095966189316], [-77.4320689889403, 34.73117594114211], [-77.43208015049666, 34.73122471765434], [-77.43219363284663, 34.731286420591545], [-77.43233529241915, 34.73136344415138], [-77.43239512057308, 34.731356837788844], [-77.43256981809255, 34.7313359142873], [-77.43267371081066, 34.73130178847048], [-77.43281886141511, 34.73122540349371], [-77.43289525882491, 34.73111984014011], [-77.43306627907764, 34.73081331876338], [-77.43300039649982, 34.73072979833066], [-77.4328727616586, 34.73061404692878], [-77.43271131595634, 34.7305150122251], [-77.43259322086212, 34.73047228567627]], [[-77.28178511489287, 34.5630048075716], [-77.28177108062336, 34.56297888476067], [-77.28169322670476, 34.56301062096395], [-77.28142655514645, 34.563119326420654], [-77.28137587778363, 34.56313998450665], [-77.281327157698, 34.56317235757411], [-77.28118792540963, 34.56327341861768], [-77.28103198275451, 34.56339527309958], [-77.2810735438605, 34.56350830785911], [-77.2812599570932, 34.56347855228246], [-77.28136825257741, 34.56346014720371], [-77.2816987319602, 34.56329779902297], [-77.2818870733083, 34.56321633037431], [-77.2821908850074, 34.56301520025327], [-77.28251023603377, 34.5628819774221], [-77.28291111839243, 34.5628045519331], [-77.28289080381151, 34.56246261614587], [-77.28237501543965, 34.562762453428874], [-77.28219312352203, 34.56292117255017], [-77.2820375638839, 34.56292443605592]], [[-77.2246575149873, 34.65784175958089], [-77.22462797171542, 34.65777020572562], [-77.22455533035202, 34.65772771784001], [-77.22475678142757, 34.657645891223936], [-77.22475270754853, 34.65774328590481], [-77.22477600862938, 34.65779928749761]], [[-77.35736337404828, 34.738236257590835], [-77.35731611126236, 34.738262131315985], [-77.35729475879765, 34.73847252782527], [-77.35739970996767, 34.73825065428778]], [[-77.41830271374678, 34.5639753296754], [-77.4183922999626, 34.56415229085581], [-77.41865250361874, 34.56416359908172], [-77.41862105716014, 34.56387263356282], [-77.418457285659, 34.56381483887773], [-77.41838592442205, 34.56373541712691], [-77.41821320573804, 34.56375367290977], [-77.41826875158588, 34.5638786618115]], [[-77.38750685633067, 34.53660342495896], [-77.38745217945448, 34.53664902092445], [-77.38741173256378, 34.5366883158251], [-77.38710562466004, 34.53697714328757], [-77.38710465945996, 34.53697818723399], [-77.38713210353228, 34.537218314416975], [-77.38749214756177, 34.5372555139078], [-77.38779776944712, 34.53712229692979], [-77.3881349965916, 34.53698107337283], [-77.38815130469848, 34.5366684405377], [-77.38777404417074, 34.536636054042084], [-77.38758579172062, 34.53661382979611]], [[-77.39370694895065, 34.53671065910888], [-77.39378763551169, 34.53660065560574], [-77.39408736561558, 34.53651875147621], [-77.39418228356658, 34.5365070399308], [-77.39431655143508, 34.536671477169655], [-77.39426911010474, 34.53686399860756], [-77.39422499914588, 34.53696255066606], [-77.39411708746148, 34.536979139523794], [-77.39391241088512, 34.536974628916894], [-77.39379843681279, 34.536979032770816], [-77.39378003263658, 34.53693884359991], [-77.3937321479137, 34.53678779008526], [-77.39372215565812, 34.53675724768642]], [[-77.3368597321357, 34.53300912005983], [-77.33680293375387, 34.53296045941282], [-77.33656094680319, 34.532895333185], [-77.33634726294748, 34.532914172044755], [-77.33629055343036, 34.53278933181248], [-77.33617149973904, 34.53276178088103], [-77.33609231976178, 34.532817840855316], [-77.3360398775558, 34.53299142976077], [-77.33601459043298, 34.53307383637368], [-77.33595342829915, 34.5331977457263], [-77.33595740853445, 34.53320911700727], [-77.33604629200832, 34.53324296033779], [-77.33615978758594, 34.533267207469095], [-77.3361746793564, 34.533286070386694], [-77.33623690933153, 34.53328668086115], [-77.33645639070355, 34.53331427075653], [-77.33655042363088, 34.53334954291518], [-77.3367696077726, 34.53334672702768], [-77.336944144536, 34.53329872882752], [-77.33702370742469, 34.53322203797339], [-77.33700506418887, 34.533176206188585], [-77.33694930405841, 34.533075984037964]], [[-77.29362212393337, 34.5558613128535], [-77.29344358970242, 34.556079769753325], [-77.29361505016291, 34.55616012656106], [-77.29375939495363, 34.55603447497759]], [[-77.45415226917812, 34.60308725282222], [-77.45432544013165, 34.603120677715424], [-77.45442783106765, 34.60313371444248], [-77.45447778063803, 34.603106273855225], [-77.45465630176156, 34.603008200543115], [-77.45502401014187, 34.60280619231714], [-77.45459745417196, 34.60279329230052], [-77.45443214316671, 34.602704880267744], [-77.45422290736077, 34.602775107984215], [-77.4540851644686, 34.60284218463981], [-77.4540420937318, 34.60290165692097], [-77.45409984603236, 34.60304174318576], [-77.45411353202046, 34.603065910233255], [-77.45412853037159, 34.60307617675221]], [[-77.43448013569326, 34.744104910051796], [-77.43452844009424, 34.74425605617786], [-77.43457893210883, 34.744466962888616], [-77.43482142991931, 34.74473461484098], [-77.43486359732465, 34.74478146570312], [-77.43491494823037, 34.74477319311782], [-77.43488676318114, 34.74480602595069], [-77.43510530628251, 34.74505411205749], [-77.43533618557687, 34.74496305083646], [-77.4353338097734, 34.744823795062814], [-77.43529942446467, 34.744612808497955], [-77.4353057976993, 34.744393394316276], [-77.43526562451952, 34.7441805086866], [-77.43524260866533, 34.74409179723928], [-77.43510937297202, 34.74393231037622], [-77.43480673628514, 34.743925536372906], [-77.43478404490263, 34.74392583743544], [-77.43472651222203, 34.74395900182084]], [[-77.34219160069449, 34.625959316647055], [-77.34209259819431, 34.62597896657311], [-77.34188641625072, 34.62603343161079], [-77.34182785108428, 34.626151047130506], [-77.34197977067817, 34.626540857267926], [-77.34196517126122, 34.62655419280027], [-77.34197603571502, 34.62657908202596], [-77.3420005919885, 34.62656029989744], [-77.34227068242784, 34.62635291930269], [-77.34252439451706, 34.62605541792904]], [[-77.33869126206245, 34.63308330809865], [-77.33842720837002, 34.6325651781081], [-77.33844085391692, 34.63252393818108], [-77.33867542993485, 34.63235603128908], [-77.33881807147753, 34.632262885350485], [-77.33892598273258, 34.632009851971425], [-77.33919394133466, 34.63208801348317], [-77.33926109003829, 34.63208456828932], [-77.3393905427983, 34.63213017424603], [-77.33957518745851, 34.632054700191006], [-77.33974159747011, 34.632151710434584], [-77.3402296899315, 34.632246471513234], [-77.34025233086741, 34.63223860356434], [-77.34027709057943, 34.632239490460584], [-77.34063572427995, 34.63222266772423], [-77.34028833684009, 34.63241781461709], [-77.34017780000978, 34.63286527586267], [-77.33977312784651, 34.63303993967576], [-77.33977914569724, 34.633160297058964], [-77.33965199686739, 34.63320169411381], [-77.33949430732129, 34.63324541521889], [-77.33931459111284, 34.6332480062755], [-77.33918638807454, 34.63325102908185], [-77.33917532376164, 34.63325098297273], [-77.33914718046555, 34.63323746339422]], [[-77.24181433412856, 34.59565895345269], [-77.24205616406053, 34.595590702277136], [-77.24253931091259, 34.595512908090384], [-77.24291852148178, 34.595143332568135], [-77.24297052043855, 34.595089328395936], [-77.24299289137257, 34.59507730510138], [-77.24300372305106, 34.59505540965767], [-77.24302391769838, 34.594935125430666], [-77.24310588711235, 34.594614859849585], [-77.24300609656112, 34.594319748023246], [-77.24197629005876, 34.59420487875296], [-77.24153785340012, 34.5948692993976], [-77.2426964969822, 34.59505394482973], [-77.24145975454775, 34.59506014486816], [-77.24155784832507, 34.5954355528719], [-77.24167400357724, 34.59555310847129]], [[-77.3674316975508, 34.721089106200424], [-77.3676228976154, 34.72118471529295], [-77.36769262158415, 34.72122162844176], [-77.36770894460531, 34.72122442108171], [-77.36810597137621, 34.721612652340255], [-77.36765218217076, 34.72136096383182], [-77.36748534127693, 34.72139649934425], [-77.36730814449604, 34.72151480812455], [-77.36725827153478, 34.72149985349371], [-77.36704790799698, 34.72137991469963], [-77.36699412205492, 34.721336578046056], [-77.36702378748099, 34.72129212972056], [-77.36712927323791, 34.721074314666545], [-77.36713932234093, 34.72106495054849], [-77.3671870686754, 34.72106637409939], [-77.36740093557734, 34.72106720454778]], [[-77.43196650747068, 34.67875221374678], [-77.43187084618393, 34.67870054572803], [-77.43180555672153, 34.67866528172236], [-77.4317327520121, 34.67862417967979], [-77.43160535275275, 34.67853565586599], [-77.43159937298502, 34.6785315156566], [-77.43159468970856, 34.67852566394799], [-77.43161463960938, 34.67847874417611], [-77.43168655128272, 34.678294498173045], [-77.4318426256887, 34.67833284735517], [-77.43196843907793, 34.67836319679241], [-77.43206309149372, 34.6784099545202], [-77.43218782825332, 34.67850571640496], [-77.43212914327816, 34.67864420300893], [-77.43208483818583, 34.67869709155635]], [[-77.33882256348552, 34.56075618990044], [-77.33903942474757, 34.560737776161645], [-77.33912205042772, 34.56073076032272], [-77.33926011240774, 34.56058280767974], [-77.33927871852936, 34.560536539121074], [-77.33923636940608, 34.560373950601054], [-77.33919419725147, 34.56030261804278], [-77.33912247696524, 34.56017698259106], [-77.33872892739329, 34.56002266811882], [-77.3387286605483, 34.560022797326184], [-77.33872798945235, 34.56002323839239], [-77.33833472170255, 34.56002751128319], [-77.33814187483254, 34.56032376014453], [-77.33807035401179, 34.56054162542402], [-77.33820040460098, 34.560667138781525], [-77.3383342298235, 34.56065833141663], [-77.33850742305589, 34.560665429314696], [-77.33872813438151, 34.56070179602618]], [[-77.34859973840652, 34.55207300183318], [-77.34855577939886, 34.5520003074153], [-77.34853635741021, 34.55195971188141], [-77.34852156537157, 34.551940640339026], [-77.34851875613306, 34.55185809809745], [-77.34850446555981, 34.55184189071319], [-77.34849033678299, 34.55182026225668], [-77.348430478576, 34.551768198214674], [-77.34829787648275, 34.55165286183745], [-77.34828158929318, 34.55163948862438], [-77.34827015243073, 34.551630786553766], [-77.34819847401843, 34.55157804472012], [-77.34813106149176, 34.55152839058958], [-77.3481145472352, 34.5515245131217], [-77.34795467373831, 34.55143136112309], [-77.34794550107375, 34.551411053917654], [-77.34791118371767, 34.55139513036777], [-77.347606669654, 34.55142604949583], [-77.3475200175607, 34.55133175100184], [-77.34730689840586, 34.55139255188949], [-77.34731705776326, 34.55164516039429], [-77.34726531523202, 34.551775371907866], [-77.34728808096696, 34.55188016908187], [-77.34739864317892, 34.552066144391446], [-77.34750125584097, 34.55214645559896], [-77.34754630412485, 34.552195784328745], [-77.34755863947811, 34.55222280721797], [-77.34769404969083, 34.552299357585206], [-77.3477097881256, 34.55231345305225], [-77.34773561211706, 34.55231975318495], [-77.34788919335924, 34.55235023059335], [-77.34798434167006, 34.55234709009406], [-77.34812776866184, 34.55238573583181], [-77.34823180903408, 34.552401219320565], [-77.34828033887905, 34.552414723523995], [-77.34843774698979, 34.55243963981982], [-77.34858852322006, 34.55231943623237], [-77.34854832518982, 34.55216175073391]], [[-77.44303824077049, 34.74977193040998], [-77.44297367698601, 34.749824140790146], [-77.44292634238172, 34.749850720929224], [-77.44259287961954, 34.7499499200006], [-77.44243788201697, 34.7501165361591], [-77.44284358506044, 34.750359299657134], [-77.44287986416172, 34.750319285246775], [-77.44300258806214, 34.75043637020566], [-77.44338620545972, 34.75061372063062], [-77.44339493893698, 34.750755433752225], [-77.44383493107297, 34.75123046014349], [-77.44351025304726, 34.75056196661741], [-77.44321353942237, 34.74995103545585], [-77.44330678374602, 34.74975402183433]], [[-77.38126135399507, 34.58361157322848], [-77.3812596849179, 34.583626104840526], [-77.38127721535062, 34.58362638115437], [-77.38127190343768, 34.58361118268499]], [[-77.37579364871787, 34.53381860860763], [-77.37602030700084, 34.533434307553904], [-77.37608811970698, 34.533248931179074], [-77.3761267004014, 34.533174142128374], [-77.3761011123411, 34.53311480811597], [-77.37603532302734, 34.53304749465804], [-77.375847149396, 34.532969610632115], [-77.37582935520753, 34.53296203157084], [-77.37581323865747, 34.53295554066208], [-77.37576214077332, 34.532949914194816], [-77.37569886326753, 34.532990985685935], [-77.37535156971039, 34.533246879545366], [-77.3753630586576, 34.53331508492432], [-77.37550586703067, 34.53350846323387]], [[-77.43376263696489, 34.67918752649088], [-77.43369024809783, 34.67932693230535], [-77.43345175924168, 34.67931729528705], [-77.43329372940926, 34.67931925873051], [-77.43316779959414, 34.67922059578242], [-77.43297531069076, 34.67906978535551], [-77.43302817829132, 34.678992330400256], [-77.43309480697256, 34.678899417920526], [-77.43315102437397, 34.678819267792356], [-77.4331685546291, 34.67879657818219], [-77.43330421845819, 34.678729252031424], [-77.43332312402967, 34.678726730093175], [-77.43345862774558, 34.67874922134524], [-77.4336597187472, 34.67878409582992], [-77.43373537469022, 34.67890003085033], [-77.43381428136682, 34.67902240748661]], [[-77.28930951607083, 34.560353668829116], [-77.28935159462725, 34.56036597227163], [-77.28935905029856, 34.56036468338707], [-77.28945500069904, 34.56037161486769], [-77.28946664867867, 34.56036599975838], [-77.28948877265071, 34.56033439417925], [-77.28941875978231, 34.56032659686572], [-77.2894107275259, 34.56030080085806]], [[-77.38831182142219, 34.56312677742908], [-77.38832548898287, 34.563028490862195], [-77.38839837909981, 34.56302102719949], [-77.38850187787332, 34.5631931864086]], [[-77.42810459190788, 34.73601143886342], [-77.42811022749605, 34.736014607699495], [-77.42810850120416, 34.736008290774414], [-77.42810788945572, 34.73600645885227], [-77.42810696570119, 34.73600323924408], [-77.42807929319035, 34.73590679073873], [-77.42805739533392, 34.73585066403007], [-77.42803831945429, 34.73581228549058], [-77.42793571483523, 34.73572948458853], [-77.42787278370733, 34.73570475074533], [-77.42774855273554, 34.73570995990258], [-77.42768838830688, 34.735699307969085], [-77.42768969532503, 34.73573451021156], [-77.42775811705062, 34.7358132334544], [-77.42782168952799, 34.735881240097164], [-77.42783206672524, 34.73589831689321], [-77.42786307174693, 34.73592251187132], [-77.42795064426572, 34.735989504519], [-77.42810011077741, 34.736009703470245]], [[-77.4295540294196, 34.709963221147426], [-77.42955921998143, 34.70996498180822], [-77.42957096230059, 34.70996411555488], [-77.42995746356287, 34.70986801989634], [-77.43002678975898, 34.70976194838913], [-77.42993841896462, 34.709533522165586], [-77.42971641348477, 34.70940213091022], [-77.42967469894262, 34.70940588648319], [-77.42952110324188, 34.709387621800275], [-77.42942948113318, 34.70937902800235], [-77.42940137491816, 34.709383286656724], [-77.42933348772335, 34.70946179332247], [-77.4293268345493, 34.70958518228812], [-77.42932426329867, 34.709598333946246], [-77.42932488999894, 34.70960843113809], [-77.42955173699629, 34.70995739411334], [-77.42955254342954, 34.709959828491705]], [[-77.40018097029659, 34.580672194520304], [-77.40003219273561, 34.58075049450164], [-77.400032500671, 34.58107073328202], [-77.40004569025942, 34.581333433515894], [-77.4001809521851, 34.581440421917236], [-77.40034074875605, 34.581543243056736], [-77.40057497246724, 34.58165788094241], [-77.40059270332087, 34.581659970283255], [-77.40094805822436, 34.58160523434712], [-77.40096899849596, 34.58160200885632], [-77.40100758910951, 34.58157762516337], [-77.40136302444745, 34.58148885100066], [-77.40155700792374, 34.58132437129733], [-77.40176078140264, 34.58108594221059], [-77.40154040113713, 34.580926619501724], [-77.40142347294677, 34.580710044080355], [-77.40139122020216, 34.58068432427186], [-77.40136303222067, 34.58066029392218], [-77.40118258887753, 34.58051466720475], [-77.40096901544653, 34.58040527771775], [-77.40093956512165, 34.58038703398802], [-77.40082182133149, 34.58037229025696], [-77.40066155124144, 34.58030215218486], [-77.40057499845845, 34.58028390656445], [-77.4005050645272, 34.58034264261859], [-77.40039672843588, 34.580433631298064]], [[-77.41329022869829, 34.7615783118124], [-77.41334220059379, 34.76151788657812], [-77.41335940397562, 34.76160249014403], [-77.41331504029267, 34.76161162066622]], [[-77.44306272752198, 34.73601697597905], [-77.4431550132357, 34.73607099308029], [-77.44329024046252, 34.73613689734768], [-77.44349556852052, 34.73607410354649], [-77.4435817072539, 34.73586532829089], [-77.44361327300525, 34.73578724715837], [-77.44351059650072, 34.7357491902716], [-77.4433049656603, 34.735552677192715], [-77.44320915282344, 34.73550946174569], [-77.44284383461991, 34.73540781901588], [-77.44270828975193, 34.735398920976564], [-77.44256761974795, 34.73547040512956], [-77.44263999572337, 34.73563497672888], [-77.44268160643279, 34.735729592343006], [-77.44276640869236, 34.73581936570131], [-77.44287717687266, 34.73592324508785]], [[-77.35690264559472, 34.73783150974064], [-77.35688504019991, 34.7378210644361], [-77.35679491448212, 34.73775806798582], [-77.356845453196, 34.737839361280855], [-77.35687264116856, 34.737863758738094]], [[-77.37117972664831, 34.67873296331603], [-77.37106803864094, 34.6786411113031], [-77.37076438266696, 34.678902719541206], [-77.37098259299823, 34.678935681666296], [-77.37110874636898, 34.67896505967005], [-77.37130358451303, 34.678860668236794], [-77.37134998043545, 34.67882221630394], [-77.37132338635783, 34.678792401434414]], [[-77.38441100255122, 34.626928764100306], [-77.38430391236209, 34.62690949690645], [-77.38427543201811, 34.626767571902334], [-77.38423283214952, 34.62670745747287], [-77.3844110671553, 34.62656934085661], [-77.38451179748779, 34.62656345146746], [-77.38468912690455, 34.62655454007448], [-77.38472004027068, 34.62675773943208], [-77.38451563835716, 34.6268789859912]], [[-77.42224211388974, 34.564067417163486], [-77.42219934176495, 34.56407722718467], [-77.4220944316134, 34.5641384892102], [-77.42196725121957, 34.564285153398636], [-77.42193946623263, 34.56448717699839], [-77.42212440809996, 34.56443179120346], [-77.42224216223885, 34.564278946873], [-77.42229646034315, 34.56416784513537], [-77.4223199652504, 34.56402197914493]], [[-77.33648920197928, 34.626084430706825], [-77.33655120852738, 34.62603135428941], [-77.33652497076906, 34.625892372157026], [-77.33641432647612, 34.62587993095707], [-77.33631822746221, 34.62585233155255], [-77.3362569670739, 34.625849026230156], [-77.33623591898098, 34.62584789054686], [-77.33611321174607, 34.625974322166826], [-77.33591276443914, 34.626118974683216], [-77.33615996041814, 34.62620708570441], [-77.33637500353358, 34.626189303606566], [-77.33646330242969, 34.62612377932058]], [[-77.37008180538405, 34.5811480903807], [-77.37019912129577, 34.58139069731085], [-77.37023489457998, 34.58139867084297], [-77.37026381055067, 34.581412541329655], [-77.37052669199664, 34.58145364365605], [-77.37062890372982, 34.58145383789838], [-77.37081645896372, 34.58150387944819], [-77.37102292605667, 34.5814748430784], [-77.37121476685294, 34.581244397041225], [-77.37132103774772, 34.58112559943913], [-77.37126570172897, 34.5809756733062], [-77.37106676949193, 34.58084115715415], [-77.37104175985594, 34.58082472790882], [-77.37093574198532, 34.58076580645815], [-77.37062919003151, 34.58069628007148], [-77.37038714280627, 34.58077526640951], [-77.37042976926021, 34.58050835653812], [-77.37023526544267, 34.5804297866805], [-77.3698882589139, 34.58053565041281], [-77.36984119959101, 34.58053392326084], [-77.36956915173036, 34.580339110430316], [-77.36954104819067, 34.580636368609944], [-77.36984108269591, 34.5808355629271]], [[-77.39506413873512, 34.617724853411026], [-77.39555197064195, 34.61796074815662], [-77.39584442084721, 34.61782582660263], [-77.39622462386936, 34.617973337490184], [-77.39623353947515, 34.617977514416296], [-77.39623861134835, 34.617978236631345], [-77.39627250239778, 34.61800293611125], [-77.39645222582254, 34.61813500397406], [-77.39652163481097, 34.61823534530336], [-77.39659650521216, 34.61834427710891], [-77.39660325240119, 34.61837512131142], [-77.39663279283168, 34.61839720750444], [-77.39688042926772, 34.618727901134484], [-77.39663276761456, 34.61904780788039], [-77.3963999649013, 34.618797193320724], [-77.39632431799019, 34.61871575839145], [-77.39623858308171, 34.61862346301087], [-77.39615670721804, 34.61861998937948], [-77.39605610783067, 34.61861874550404], [-77.39604148280719, 34.618618619817994], [-77.39601705730487, 34.618613821373756], [-77.39584438359928, 34.61859204779725], [-77.39572790132051, 34.61859499891258], [-77.39547113143999, 34.61850657168254], [-77.39532882721805, 34.61823324817843]], [[-77.42794780043454, 34.57028932670181], [-77.42761045375805, 34.57055929202319], [-77.4276807980518, 34.57088914685603], [-77.42736531028068, 34.57094026102633], [-77.4270773984328, 34.57117515424315], [-77.42697139912889, 34.57114124663248], [-77.42693881193165, 34.57111607036396], [-77.42657733935542, 34.57082836805645], [-77.42653847612826, 34.57075609324056], [-77.42650121464011, 34.57071961743459], [-77.4263251065037, 34.570592246612335], [-77.42618324028433, 34.57036500242014], [-77.42617177042908, 34.570355002194795], [-77.42616559941989, 34.570324535963174], [-77.42621110191976, 34.57030691443997], [-77.42657716043975, 34.570201039943655], [-77.42675665221608, 34.57002701844263], [-77.42693078032778, 34.56980835350301], [-77.42716545725443, 34.56955948317865], [-77.42736484404406, 34.569356458963526], [-77.4273858129881, 34.56934060003665], [-77.42751254703168, 34.5692996775679], [-77.42772302382356, 34.569230731254486], [-77.42780067171961, 34.56921286432512], [-77.42794776483242, 34.56944039095859], [-77.42808184662091, 34.56964197791167], [-77.42805754034198, 34.569748248910514]], [[-77.38062802686748, 34.55977981509741], [-77.38075519657643, 34.55949060886162], [-77.38081791227484, 34.5594152411958], [-77.38087947483115, 34.55933164841691], [-77.38090753469217, 34.55943837441995], [-77.38092556481324, 34.55946604878735], [-77.38090686228156, 34.55949831115778], [-77.3808794204916, 34.55953253412848]], [[-77.39148412625295, 34.5681331283383], [-77.39145528964922, 34.56820071601509], [-77.39139838808126, 34.56835778002227], [-77.39140924411814, 34.56845548586773], [-77.39141366162885, 34.5684638284276], [-77.39141998945212, 34.56846551756704], [-77.39151411229926, 34.568444835803646], [-77.39164016876364, 34.56832290595085], [-77.39158250315506, 34.568192605385974], [-77.391600709079, 34.56811631248936], [-77.39151416409157, 34.568066161906486]], [[-77.37185503563619, 34.689646533155646], [-77.37198428413214, 34.68945768584213], [-77.37197564133332, 34.68935654759748], [-77.37197829667312, 34.68933666049941], [-77.37188712599449, 34.68922849907339], [-77.37188590136974, 34.68922850839217], [-77.37186890074022, 34.68922985038148], [-77.37158225249671, 34.689247819782814], [-77.37142172862357, 34.68929132094259], [-77.37130900239909, 34.68935280399625], [-77.37106232989211, 34.6895844210692], [-77.37131145725488, 34.689670773503124], [-77.37145174809099, 34.68969769142293], [-77.37149767911843, 34.68972453213572], [-77.37156219682672, 34.68975940544602], [-77.37163536076753, 34.689815661204], [-77.37179158784727, 34.68978045940596]], [[-77.3820774038994, 34.58267472028679], [-77.38207657777325, 34.582651188604466], [-77.3820722095809, 34.58263377472041], [-77.38208318568897, 34.5824379537536], [-77.38205551944544, 34.582401104221574], [-77.38198577356465, 34.582314885055816], [-77.38188232130507, 34.58225462407858], [-77.38185854436236, 34.582231336269714], [-77.38179955642767, 34.58226655374118], [-77.38174551321517, 34.582364870974935], [-77.38176494468767, 34.58258458469927], [-77.38196852492604, 34.58266676330848], [-77.38201154961398, 34.58270785897407]], [[-77.3856382456474, 34.515876999212885], [-77.38561963664141, 34.515880608508034], [-77.38560254824596, 34.51588308143737], [-77.38522654633671, 34.515908995238895], [-77.38516217189638, 34.51595723221134], [-77.38522455682815, 34.515997053663725], [-77.38559689122398, 34.51590832265494], [-77.38561917673385, 34.5159009688765], [-77.38563454667364, 34.51589864732258], [-77.38568480893001, 34.51588184073918]], [[-77.3764682585014, 34.59534716890041], [-77.37641755118584, 34.59548112673937], [-77.37638441685804, 34.595571529421875], [-77.37653506059121, 34.595664120093474], [-77.3766320434925, 34.5955358519046], [-77.37659543531768, 34.59539380122341], [-77.37660543035012, 34.59532740540575], [-77.3765899664887, 34.59527060828272], [-77.37648172129028, 34.595287645742566]], [[-77.33340359731321, 34.56227394418348], [-77.33321160886396, 34.562344782140876], [-77.33304085839141, 34.562326089116105], [-77.33306079347346, 34.562273545205535], [-77.33303460388197, 34.562114718341896], [-77.33321200341267, 34.56187499358447], [-77.3333222738809, 34.56207336486912], [-77.33339885568837, 34.56226407083394]], [[-77.42721316994471, 34.49958138354769], [-77.42729194811744, 34.49946539925517], [-77.42707828236763, 34.49951581358133], [-77.42694334117567, 34.49964740939447]], [[-77.33481804233553, 34.697651388158796], [-77.33454040250373, 34.697608080853094], [-77.33443251408711, 34.697620654594004], [-77.33421208064007, 34.697723398548476], [-77.33403531488395, 34.697798598654636], [-77.33380524801248, 34.69803635596982], [-77.33425860037497, 34.697996594344126], [-77.33431552745192, 34.69802323963893], [-77.33433990130736, 34.69801920438216], [-77.3349260765333, 34.69795006935501]], [[-77.39702697654641, 34.618868778743604], [-77.39713661164095, 34.618997439729625], [-77.39722407023143, 34.61910007511948], [-77.39722620310276, 34.61910260485128], [-77.39731047114725, 34.619209676458155], [-77.39733320664016, 34.619417012654594], [-77.39722405929568, 34.619449927701794], [-77.39715796716033, 34.61946583508007], [-77.39710433716192, 34.61946141111996], [-77.39702695802116, 34.61941763705243], [-77.39692661357022, 34.61935809827831], [-77.396887292494, 34.61930191208749], [-77.39676677984701, 34.61916886353332]], [[-77.3415873146529, 34.6841662198654], [-77.34155076699444, 34.68413348685619], [-77.34136986114382, 34.684044122862005], [-77.34126251386675, 34.6840219937128], [-77.34115012392087, 34.683998824933326], [-77.34108087669358, 34.684008689925086], [-77.34087851015674, 34.68407714136043], [-77.3409101470543, 34.684293132070096], [-77.3409953114545, 34.68430326937997], [-77.34110088780811, 34.68434343884729], [-77.34121917561598, 34.68437923611215], [-77.34126821293975, 34.684394076196746], [-77.34129947729053, 34.68438770578174], [-77.34132931937857, 34.684407561486715], [-77.34154729175955, 34.68446361663617], [-77.3417485724196, 34.68435003286036], [-77.34162214239261, 34.68420591908971]], [[-77.44563491022393, 34.60557871497022], [-77.44550291368365, 34.605521715867695], [-77.44548684883395, 34.60541400275284], [-77.44546838924656, 34.60528620674854], [-77.44567519853585, 34.60518371359305], [-77.4457770872294, 34.60513788481277], [-77.4459462012146, 34.60521067870559], [-77.44595207611182, 34.60530233222192], [-77.44597391718389, 34.60538740157466], [-77.44588013916578, 34.605514363553894], [-77.4457596976653, 34.605537548267144]], [[-77.44969556005454, 34.61177006785524], [-77.44978628855485, 34.61168531450302], [-77.44988539547852, 34.61147740947289], [-77.44988283665931, 34.61146818792288], [-77.44986186130141, 34.61146917490551], [-77.44961134850283, 34.61146250172131], [-77.44944547973384, 34.61154576385259], [-77.44930269339778, 34.611583221429605], [-77.44931682435316, 34.61170306865307], [-77.44945624385079, 34.611779437674016]], [[-77.44643834709271, 34.60779359152899], [-77.44648769811036, 34.60773387514841], [-77.44668757729119, 34.60760313062284], [-77.4467110383889, 34.60758954263265], [-77.44688384141676, 34.607712697479144], [-77.4468494415461, 34.607862381415075], [-77.44688895644856, 34.60795128070378], [-77.44675471135858, 34.607978204722045], [-77.4465487907162, 34.607957048751736], [-77.44635542623917, 34.6080092375172], [-77.44640669092338, 34.607848764914685]], [[-77.39423667452478, 34.5340871655666], [-77.39440761835746, 34.53420998996935], [-77.39423037330104, 34.53436750694023], [-77.39408667766122, 34.53425630291694]], [[-77.37677492782602, 34.67661410376907], [-77.37676210110521, 34.67654742440114], [-77.3765042348471, 34.67665133003439], [-77.37672821326902, 34.67666428297903]], [[-77.38496513094299, 34.58971227383108], [-77.38487978639789, 34.5895374470207], [-77.38500933702841, 34.58944900629663], [-77.3850103868452, 34.589447026604056], [-77.38519539141474, 34.58943105776409], [-77.38520637272934, 34.58943315322869], [-77.38525287883343, 34.58951708028725], [-77.38520634026882, 34.58959789566172], [-77.38518263125363, 34.58960780668573], [-77.38514844107591, 34.58963827744739], [-77.3850368193637, 34.589684028436956]], [[-77.41612877373079, 34.71896135348488], [-77.41619441779011, 34.71902087814436], [-77.41625214745694, 34.71900449753541], [-77.41631617641819, 34.718983983404925], [-77.41631528738756, 34.71894127189543], [-77.41624663045336, 34.71886279449653], [-77.416244063654, 34.718859387467106], [-77.41623754501849, 34.718855446322415], [-77.41621023478294, 34.718873496494915]], [[-77.26290999121008, 34.5861326417731], [-77.26281047370462, 34.58611494313837], [-77.26278547503175, 34.586179276616484], [-77.26290736514676, 34.586201110709105]], [[-77.43073662512629, 34.74559209283908], [-77.43052325899947, 34.74537636775763], [-77.43042696610803, 34.74540789619249], [-77.43035224207861, 34.745413337036624], [-77.43030801211306, 34.74544232081935], [-77.43028592439461, 34.74555139277879], [-77.43027609422357, 34.74559217929429], [-77.43032222709819, 34.745610693765414], [-77.43045437036102, 34.74561432835749]], [[-77.38257158875052, 34.653749323036365], [-77.38251231482201, 34.65367446572893], [-77.38250147790957, 34.653667322049564], [-77.38250047711273, 34.65368299810413], [-77.38249949583322, 34.65369987236502]], [[-77.27420022843545, 34.567656024713806], [-77.27410916379284, 34.567791412164], [-77.27435351050424, 34.56779234407275], [-77.27444066109894, 34.567667195227486]], [[-77.37207932327377, 34.58210415999117], [-77.37220479333962, 34.5820969149805], [-77.37231600326086, 34.58205468657745], [-77.37240182766541, 34.58204667691224], [-77.37245008879104, 34.581915560927605], [-77.37246639549909, 34.58184371931206], [-77.37247861432166, 34.58180531160558], [-77.37240194059916, 34.58172951281304], [-77.37238118206278, 34.581735572310365], [-77.37223906511056, 34.58173368109111], [-77.3722049232009, 34.58173456648341], [-77.3720155491677, 34.581757637731265], [-77.37199992634956, 34.58175954103337], [-77.37196755341013, 34.58181624321976], [-77.37198114368404, 34.58198311629292]], [[-77.39524797279351, 34.53539824838415], [-77.39528741712151, 34.5354926064571], [-77.39506294811017, 34.535538389585014], [-77.3950454717321, 34.535374966456715]], [[-77.43481698766463, 34.730520660319044], [-77.43481006673359, 34.73052366206411], [-77.43462090296983, 34.73057418683993], [-77.43456106182254, 34.73063609133605], [-77.43453832257204, 34.73070821842114], [-77.43470083375723, 34.730943500077615], [-77.43492761062605, 34.73084426097692], [-77.43497619811288, 34.73078075654656], [-77.43499123779252, 34.73067981637172], [-77.43483890782638, 34.73053374101759], [-77.43482998178536, 34.73052389537746]], [[-77.43170365666559, 34.58426359010783], [-77.4318744210266, 34.5841666931665], [-77.43170360355644, 34.58411472447857], [-77.43160830314162, 34.58420516283526]], [[-77.35069124804028, 34.52337274177302], [-77.35071386784779, 34.52342865119938], [-77.35075815052052, 34.5233631111765], [-77.35071542084333, 34.52336113781077]], [[-77.34977362795756, 34.626145101333826], [-77.34980058099012, 34.626296681265416], [-77.34991527222647, 34.626277346448816], [-77.34993089190641, 34.62624516230316], [-77.35003599295499, 34.62607888663946], [-77.34986573478265, 34.62592101645862], [-77.3497906893352, 34.626112580520115]], [[-77.363177561056, 34.54297063775], [-77.36316698447158, 34.5429096980624], [-77.36308521983644, 34.54292571101858], [-77.36307964532914, 34.54297580285191]], [[-77.43318168802072, 34.75487051188121], [-77.43322168239706, 34.75488461959074], [-77.43324904499879, 34.75487773569719], [-77.43327273478393, 34.75486389724736], [-77.43332061485673, 34.75481256748312], [-77.433246097264, 34.75480028117093], [-77.43317725389983, 34.75476048716531], [-77.4331217138971, 34.754811136050094]], [[-77.3586250614685, 34.53504302899987], [-77.35861580636426, 34.53500945892604], [-77.35854283232925, 34.53500301369269], [-77.35855852615359, 34.53505281270255]], [[-77.35875653122957, 34.68869117571832], [-77.35857321055089, 34.68869989098343], [-77.35847291415857, 34.68812105000731], [-77.35831053676867, 34.6879248775982], [-77.35809412015945, 34.687624183761315], [-77.3579799113873, 34.68748290499755], [-77.35791320160982, 34.68736922642947], [-77.35795283819782, 34.68708785011815], [-77.35796983897865, 34.68699690261995], [-77.35811368340795, 34.68682069992748], [-77.35821362538941, 34.68668078991284], [-77.35842607629506, 34.686580244712026], [-77.35861370648551, 34.68649820258656], [-77.35872052058812, 34.68649189150558], [-77.35931393982527, 34.6861478235803], [-77.35975874659925, 34.68634286910116], [-77.36044243458555, 34.686384113243555], [-77.36140634056162, 34.68631976363133], [-77.36165509294642, 34.686330403783664], [-77.36183548631104, 34.686321168348904], [-77.36226527313995, 34.68629027214513], [-77.36282091413017, 34.68633049413132], [-77.36283934929675, 34.686336865720406], [-77.36284540089629, 34.686353693840935], [-77.36328956316049, 34.68677874778676], [-77.36334192095184, 34.6880353965776], [-77.36319295463895, 34.6882289309178], [-77.36259863081621, 34.68992937991317], [-77.36082692567632, 34.68918399415629], [-77.36031341240063, 34.68906968230726], [-77.35907680736986, 34.6887943950382]], [[-77.43564095362264, 34.70370036941556], [-77.43630231946872, 34.70446482054162], [-77.43644182255413, 34.70609579081234], [-77.43646315353598, 34.706223982983325], [-77.43615713500046, 34.708096599098546], [-77.43600665819949, 34.70830058670871], [-77.43589954757056, 34.708362048207434], [-77.43576992951151, 34.70841811638896], [-77.43519375432041, 34.708704168154], [-77.43486935553454, 34.708634016076324], [-77.43442407550884, 34.7086390318249], [-77.43428696390072, 34.70843065691907], [-77.43394055850793, 34.70815173689292], [-77.43392680654698, 34.708142398406906], [-77.43391704951736, 34.7081386287875], [-77.43338118869345, 34.70781287218161], [-77.43298455905818, 34.7076349657241], [-77.43285962726014, 34.707200448459155], [-77.43272845745122, 34.70684905365154], [-77.4326106144973, 34.706045703465264], [-77.43259944075876, 34.70601010937581], [-77.43261427103282, 34.70599656458397], [-77.43261144633702, 34.705979625064224], [-77.43275654509748, 34.70505176610609], [-77.43197813487261, 34.70465605077185], [-77.43185913428357, 34.70453347380858], [-77.43177687698622, 34.70449692754767], [-77.43170599029155, 34.704499798184244], [-77.4315872073011, 34.704519374583356], [-77.4306709282738, 34.70430370964698], [-77.43056849046843, 34.704242931027075], [-77.4304922222405, 34.7042110966188], [-77.43027435734206, 34.704151914947566], [-77.43010642019075, 34.70400164553425], [-77.4300552628304, 34.703947045522], [-77.43002650762269, 34.70390096449921], [-77.42986145725045, 34.70363646508139], [-77.42987367606268, 34.703576432074065], [-77.42969778792968, 34.70329970712852], [-77.42966123806951, 34.7032186926729], [-77.42959227510042, 34.70318667702737], [-77.42950949077087, 34.7029543376964], [-77.42962385125742, 34.70278790821224], [-77.42965704000137, 34.702726396555725], [-77.42967480235474, 34.702675579006375], [-77.42975372005318, 34.702628794050334], [-77.43029890029267, 34.70220000328582], [-77.4305488766841, 34.702095841671934], [-77.43084461979174, 34.702023505600145], [-77.43104514074695, 34.70192407543648], [-77.43134376516397, 34.701177424944454], [-77.43119516080739, 34.70102794976604], [-77.43094851235026, 34.700714793443176], [-77.43061847663301, 34.70058731463796], [-77.43035602378944, 34.700547439773985], [-77.430220980206, 34.7005769905035], [-77.42995612931246, 34.700417325263885], [-77.42982397067284, 34.700171246447916], [-77.42956135221814, 34.70013567810853], [-77.42936078585242, 34.69982748818005], [-77.4296936210293, 34.699714997440864], [-77.42991945634783, 34.6998412784529], [-77.43017681443112, 34.69987884740641], [-77.43053121093794, 34.699942035002785], [-77.43084917432245, 34.70010813747771], [-77.43100450445019, 34.6998431671195], [-77.4312057057765, 34.69982597050745], [-77.43146123749281, 34.699789237054944], [-77.431579915202, 34.69980690797337], [-77.4318557641067, 34.69979434683448], [-77.43211681018234, 34.69967302186979], [-77.43240722201013, 34.69966351417713], [-77.4325719464745, 34.69953418637359], [-77.43297733176196, 34.6994148363958], [-77.43313016087956, 34.69934953861025], [-77.4333076936573, 34.6992063835976], [-77.43364650600112, 34.69932365823428], [-77.43392796017332, 34.69974720231084], [-77.43397657293075, 34.700078693724535], [-77.43416078863628, 34.70094670253674], [-77.43395553094011, 34.701873051952646], [-77.43488306259681, 34.70262215160015]], [[-77.39614236456399, 34.58773511227264], [-77.39595898754365, 34.5878670580142], [-77.39586843595156, 34.587904069314504], [-77.39584620692243, 34.58792313057111], [-77.39573689530128, 34.58801686401692], [-77.39545212731996, 34.58823882729378], [-77.39538571276427, 34.588302771964564], [-77.39534503772936, 34.58838019146438], [-77.39535483958213, 34.58848357863432], [-77.39545209878057, 34.588619740067436], [-77.39549942115522, 34.58873149821315], [-77.39552090802198, 34.58877939446619], [-77.39556093636828, 34.588868621648984], [-77.3955853696855, 34.58891370947423], [-77.39561934448648, 34.58897748117208], [-77.3956031032753, 34.58902938061105], [-77.39556739544228, 34.589109237544854], [-77.39552850670822, 34.589120506019995], [-77.39545205868765, 34.589157007743836], [-77.39536000001944, 34.589127987906075], [-77.39535073387111, 34.58912539965127], [-77.39534491951969, 34.58911391394517], [-77.39530387734708, 34.589022986098314], [-77.39529296584949, 34.58898369889006], [-77.3952550514928, 34.58884888992413], [-77.39524661023911, 34.58881896079098], [-77.39520429919224, 34.588667475116836], [-77.39511322097039, 34.58847307149679], [-77.39512148941972, 34.588412437193625], [-77.39509127764234, 34.58838100358527], [-77.39505805822637, 34.58838479714731], [-77.3949933336306, 34.588361184255035], [-77.39482119463052, 34.58828639451876], [-77.3946640150503, 34.58820692312544], [-77.39438072296346, 34.58809471474516], [-77.3943770050267, 34.58797993543168], [-77.39456509374546, 34.58753690644907], [-77.39466408610224, 34.587369510969516], [-77.39472672876838, 34.587263148802414], [-77.3947705275011, 34.5871893467319], [-77.3948024790659, 34.58690923568092], [-77.39481056796038, 34.5867589997925], [-77.39481966032366, 34.58659013560133], [-77.3948231331754, 34.58650390277903], [-77.39484468668425, 34.58632950713354], [-77.39486120112244, 34.5863076295641], [-77.39497872822975, 34.58622450989576], [-77.3950582358403, 34.58617815993928], [-77.3952255222499, 34.58609433470639], [-77.3954522952799, 34.586025050880444], [-77.3956206301857, 34.58597437768452], [-77.39584635422055, 34.58585783814476], [-77.39615801900113, 34.58580425353284], [-77.39630012678444, 34.58575933302939], [-77.3966344573038, 34.58568183050048], [-77.39689298549042, 34.58546343104809], [-77.39730521899698, 34.58512541758431], [-77.39737383928451, 34.585063000435696], [-77.39742258207166, 34.585031720032525], [-77.39756550208226, 34.58493387852285], [-77.39789576409926, 34.58470090209751], [-77.39821068901944, 34.58450763730757], [-77.39861276121633, 34.584520856293956], [-77.3989987711302, 34.58439988194649], [-77.39944240367683, 34.58433906152882], [-77.39978684840378, 34.58438860352983], [-77.40009670685481, 34.58438879449524], [-77.40031148583904, 34.58440782069807], [-77.40057492427377, 34.58442803835915], [-77.40070678184273, 34.584492558521454], [-77.40100310509868, 34.58459187692726], [-77.40136299902527, 34.584706092785865], [-77.40187942927318, 34.58446542142478], [-77.40210347771777, 34.584381801763186], [-77.40215107705424, 34.58436371531415], [-77.40222763172807, 34.58433268556817], [-77.4025451137893, 34.58422198421469], [-77.40284779635984, 34.58422724171931], [-77.40293915030834, 34.58418190898787], [-77.40302336607078, 34.584209596479226], [-77.40333318784482, 34.58423160016667], [-77.40335133311476, 34.58425300802704], [-77.40357674633351, 34.58438262047086], [-77.40363018380467, 34.58453277174837], [-77.4035917360937, 34.584642889011754], [-77.40372723762533, 34.5848312429286], [-77.40377646626783, 34.584987764541076], [-77.40379190139735, 34.58503857709222], [-77.40380892317549, 34.58512412909911], [-77.40384224340147, 34.585243599764496], [-77.40383920619621, 34.58533569293533], [-77.40384073907754, 34.58545610483759], [-77.40381849254935, 34.58578558813123], [-77.40381458345418, 34.58588445563084], [-77.40379708387094, 34.58596221218287], [-77.40373588880617, 34.58632038917371], [-77.40372727130506, 34.586345020044135], [-77.40358862924734, 34.58661682725683], [-77.4035657625676, 34.58676951738451], [-77.40349710118375, 34.58695598633984], [-77.40348243444416, 34.58699383114284], [-77.40344127690256, 34.58709565061867], [-77.40339676161221, 34.587218482981996], [-77.40337610178496, 34.58726764484783], [-77.40333324268875, 34.58733427525712], [-77.40320543971076, 34.5875329626497], [-77.4030592914088, 34.587691760284635], [-77.40301234137334, 34.587777345201914], [-77.40297890761423, 34.58808515515891], [-77.4029758102847, 34.58812838329539], [-77.40300815530534, 34.58847400323449], [-77.40300924815546, 34.58854813343907], [-77.40301345059177, 34.588627517028826], [-77.40302122878896, 34.588970980127584], [-77.4029392187278, 34.58920801888588], [-77.4028620751553, 34.589335403429885], [-77.402829399088, 34.589423238435174], [-77.40274233104813, 34.58964794268948], [-77.40261149014039, 34.58995071852414], [-77.40224995927295, 34.590249495932625], [-77.40215110373194, 34.59018449722461], [-77.40203447288357, 34.590261438495304], [-77.40208608347805, 34.59037965256435], [-77.40215110576173, 34.59048056692705], [-77.40239717583894, 34.59091879320149], [-77.40241875985834, 34.591180796892466], [-77.4026589410959, 34.59144815046172], [-77.40269230016558, 34.591724399444274], [-77.4027443971619, 34.591982957532764], [-77.40277776153992, 34.592152148484615], [-77.4028236896159, 34.592396090777704], [-77.40286585447795, 34.59273547587201], [-77.40285171574352, 34.59281662198133], [-77.40279866293156, 34.59297577849652], [-77.40263727446114, 34.59337133120242], [-77.40245325403522, 34.59372327086366], [-77.402312824055, 34.59391773586432], [-77.40215113616692, 34.59416469351197], [-77.40214115493674, 34.59418212817394], [-77.40213389296734, 34.594193929717676], [-77.4019777410771, 34.59445422286412], [-77.40189206782671, 34.594653398711785], [-77.40175705611658, 34.59495570843862], [-77.40171295817254, 34.59505630790679], [-77.40168461521625, 34.59510790752452], [-77.4015600132433, 34.59530133025491], [-77.40154436848368, 34.59532357612867], [-77.40137605717926, 34.59556290307404], [-77.40136502049891, 34.59557859646897], [-77.40136417454102, 34.595580017606366], [-77.40136296873574, 34.595581971628754], [-77.40119359349113, 34.595845429191975], [-77.40102355448109, 34.596052439765664], [-77.40099617965713, 34.5960858048594], [-77.40096887594906, 34.5961164658862], [-77.40078870186491, 34.59631679115433], [-77.40059241031894, 34.59653922063179], [-77.40058418006186, 34.59655053623722], [-77.40057477892664, 34.59655782478855], [-77.40052419494384, 34.5966035583437], [-77.40047625419808, 34.59664877388977], [-77.40046447232596, 34.59665113001398], [-77.40037772973582, 34.59669125214293], [-77.40026080303703, 34.59667338193803], [-77.40018068160889, 34.59668500973474], [-77.39997027936705, 34.59662898000228], [-77.40018068367922, 34.596516185792346], [-77.40032136147094, 34.59642677067611], [-77.40037773268678, 34.596394302994966], [-77.40039556687327, 34.59637454729408], [-77.40040548588024, 34.59635390292606], [-77.40044026476181, 34.59628151775799], [-77.40050700563151, 34.596126968565486], [-77.40057478364155, 34.59595423988354], [-77.40065250903177, 34.59576513661868], [-77.4006670223701, 34.595679306950785], [-77.40067286262021, 34.595572801691155], [-77.40057479055744, 34.595126991070146], [-77.40052810876725, 34.5949004960663], [-77.40048896029376, 34.59485584943997], [-77.40039298747493, 34.59467382423638], [-77.4002734333415, 34.59436247646955], [-77.40018071245028, 34.59432433206655], [-77.40004927575822, 34.594211746315736], [-77.39998367335525, 34.59410730548476], [-77.3999774020678, 34.59408050904769], [-77.39998367477278, 34.59402134772445], [-77.39999959687499, 34.59388217136911], [-77.40001166902412, 34.59386327807812], [-77.40018072136061, 34.59369384752692], [-77.40023255680725, 34.593674967251275], [-77.40027273362843, 34.59361332459591], [-77.40042144415365, 34.59333252362501], [-77.40054071705406, 34.59315008515463], [-77.40043154063216, 34.59301148059639], [-77.40024041593135, 34.59276883927163], [-77.4002146056713, 34.59273607188204], [-77.40018073577214, 34.592716158370145], [-77.40008337390908, 34.59268660025028], [-77.39978666099802, 34.59257015465133], [-77.39965187631353, 34.59257439420116], [-77.39939258596878, 34.592486977210356], [-77.39937169680398, 34.59246960286466], [-77.39923133153789, 34.59223902037139], [-77.39911987688035, 34.59208136025882], [-77.39899852429265, 34.59197837842627], [-77.3988770145451, 34.59182274420933], [-77.39880149482877, 34.59173812416034], [-77.3987731064328, 34.591706816222086], [-77.39870629988039, 34.59160673507383], [-77.39866247261229, 34.591360694679096], [-77.39873443451202, 34.59128782198024], [-77.39899855327644, 34.59101746049256], [-77.3991357581724, 34.59095317149459], [-77.39925913515734, 34.59078754763578], [-77.39899856438024, 34.59065590122442], [-77.39869028137335, 34.59053746659124], [-77.39860450167114, 34.59050115992934], [-77.39858598794909, 34.590480039682305], [-77.39833925127925, 34.59049568850605], [-77.39821043410285, 34.59050222809612], [-77.39816071282334, 34.59052144594337], [-77.39788452986812, 34.59063473596353], [-77.39781635769398, 34.59069820200059], [-77.3976476656953, 34.59083829034081], [-77.39751839228633, 34.59093512773871], [-77.39742227358596, 34.59101090350698], [-77.39738197488468, 34.591014944521405], [-77.39730372504326, 34.59098509030442], [-77.3972252417011, 34.59094941894556], [-77.39717562548424, 34.59092930149181], [-77.39710036680191, 34.590752148256875], [-77.39709033017292, 34.59067586204197], [-77.39708465026325, 34.590615888091776], [-77.39708925514404, 34.59031718174816], [-77.39709203431559, 34.59025104365412], [-77.39716159376465, 34.59009734585633], [-77.39720526633714, 34.590000847577635], [-77.39735969068182, 34.58978785901945], [-77.39742233854183, 34.5897091741148], [-77.39759591352592, 34.589516210999605], [-77.39778866477054, 34.589301401055806], [-77.39781642246177, 34.589272621874045], [-77.39806899960917, 34.589108510521044], [-77.3982104950581, 34.58901145696238], [-77.39850200374445, 34.58888441256783], [-77.39866616636756, 34.58881660487336], [-77.39873230982725, 34.588603056687454], [-77.39879995663276, 34.58830635517131], [-77.39872388905312, 34.58802129187917], [-77.39880727086629, 34.58788072646804], [-77.39899866051246, 34.587638514140224], [-77.39911620036577, 34.58770950913565], [-77.39928402281214, 34.58769483371742], [-77.39939271417629, 34.587644540368075], [-77.39970084914113, 34.58732722739657], [-77.39946074769671, 34.587010579879674], [-77.39943695398632, 34.58694072922636], [-77.39960580174638, 34.58672135916907], [-77.39959576660776, 34.58669906276532], [-77.39958305959796, 34.586700136076374], [-77.39939273461606, 34.58692678805321], [-77.39938236155491, 34.58693742971436], [-77.3989986740487, 34.58723063748463], [-77.39886893725676, 34.587307472947316], [-77.39860461570342, 34.587397392385036], [-77.39845284212711, 34.58724624959544], [-77.39821056565265, 34.58733183279824], [-77.39807572049692, 34.58728241469266], [-77.39783928973155, 34.58719576685164], [-77.39781651989507, 34.587186856082816], [-77.39780309668919, 34.587190917138635], [-77.39750789820569, 34.587311095803514], [-77.3974224583967, 34.58736910860535], [-77.3972414707107, 34.587487051565], [-77.3970283895732, 34.58764903484547], [-77.39697832859923, 34.587666074821534], [-77.39668160411016, 34.58771188322443], [-77.39663433120317, 34.58771462812854], [-77.39656537144496, 34.587705283301105], [-77.39624027610157, 34.58772024232564]], [[-77.37545197556122, 34.54887251226139], [-77.37502043967527, 34.549024758927644], [-77.37362656618525, 34.54895868560962], [-77.37312788420437, 34.5485261318657], [-77.37360881768659, 34.547981939411834], [-77.3738273397539, 34.54790290967205], [-77.37341615782017, 34.54734228796933], [-77.3732092729764, 34.54706020713739], [-77.37318846494377, 34.54703183628165], [-77.3731399252585, 34.54695423139517], [-77.3728950448347, 34.546771137649266], [-77.37296724239685, 34.546491180190955], [-77.37315680296805, 34.54621150389487], [-77.3732222946703, 34.54611854261001], [-77.37329473369958, 34.54606857872405], [-77.37358437184827, 34.54579796161748], [-77.37395437669258, 34.54566627284923], [-77.37472786645665, 34.54538367513914], [-77.37475413445726, 34.54537353937696], [-77.37475834017671, 34.54536798931251], [-77.37475904837322, 34.54536006960543], [-77.37498394051009, 34.544988623739236], [-77.37523737918686, 34.54480928863815], [-77.37521629805431, 34.54460495007228], [-77.37555433477164, 34.544362447889455], [-77.37570535420186, 34.54425218092139], [-77.3759828299608, 34.5439844020414], [-77.37624952150756, 34.54368408596062], [-77.37654896216767, 34.54326638636764], [-77.37668201789634, 34.54313208876094], [-77.37715886842847, 34.542854632438235], [-77.37778646388573, 34.54297288408756], [-77.37788707796048, 34.542991953036136], [-77.37794055283656, 34.54300775054013], [-77.3782316833611, 34.54309144863832], [-77.37833067122246, 34.543116288090175], [-77.37850442215874, 34.54286938566737], [-77.37853988516798, 34.54274466679611], [-77.37873532173657, 34.542583519394945], [-77.37887360143495, 34.54241029441511], [-77.37898973055626, 34.542309762390275], [-77.379031244879, 34.54212569399094], [-77.37904420912999, 34.54199659391535], [-77.37899892874749, 34.54181877655819], [-77.37893781274, 34.541713595964794], [-77.37876287498425, 34.54136751922101], [-77.37876164883643, 34.541364137314], [-77.37876062963258, 34.541363471755574], [-77.37876001963478, 34.541361696650796], [-77.3786478505737, 34.541134900463874], [-77.3787734697441, 34.540872350984934], [-77.37877329513259, 34.5408719861864], [-77.3787741278848, 34.54087090132374], [-77.37927148862691, 34.54061710185648], [-77.3799614135911, 34.540455750425295], [-77.38035659612115, 34.54033217282763], [-77.38091270702706, 34.540563538015654], [-77.38100075031156, 34.540634497969094], [-77.38131892381956, 34.54061953575422], [-77.3819198131377, 34.540643486444864], [-77.38221096053667, 34.54068385624791], [-77.38270346431015, 34.54070897488728], [-77.38284570062785, 34.540774478871185], [-77.38295114884934, 34.54108910133982], [-77.38337510988197, 34.54118779974638], [-77.38336213898448, 34.541260759026464], [-77.38312622382276, 34.54149848303267], [-77.38307570233351, 34.541608157484866], [-77.38299157413587, 34.54173276861947], [-77.38289381647331, 34.54188212394126], [-77.38266873017876, 34.54224506841908], [-77.38265406892795, 34.54226219613729], [-77.38263485954698, 34.54229429729618], [-77.3822088469299, 34.542824957615984], [-77.38209023939021, 34.54298132772753], [-77.3818555383003, 34.5434848299915], [-77.38165983667125, 34.543765350764886], [-77.38158498883678, 34.543894232699145], [-77.38102171983753, 34.54444836113093], [-77.38100647124485, 34.544467306995045], [-77.38096343367238, 34.54452551975733], [-77.3807480032357, 34.544811917473574], [-77.38064512704437, 34.5449282730271], [-77.38056199805493, 34.54502105062219], [-77.38064201139534, 34.545065921169645], [-77.38072451434599, 34.54518925764774], [-77.38080344260928, 34.54523107050359], [-77.38102816710446, 34.54535011997645], [-77.381134615738, 34.5453616061404], [-77.38125722759155, 34.545410474604836], [-77.381466594382, 34.545658049309424], [-77.38114739113485, 34.54591596973856], [-77.3802185219266, 34.546430893361254], [-77.37963534904567, 34.546754169052264], [-77.37862346760261, 34.54752006811983], [-77.37783296522122, 34.54786432586696], [-77.37611562618537, 34.54859996055596], [-77.37587144460198, 34.54889708673056]], [[-77.36080774503839, 34.571067842355184], [-77.36093634000787, 34.571096686902095], [-77.3609802512476, 34.571172110949895], [-77.36103126551737, 34.57124793762808], [-77.36098012308932, 34.571428136582064], [-77.36097004047438, 34.57145818089512], [-77.36095703548271, 34.57147090201705], [-77.3608719015688, 34.5715996847134], [-77.36079812731234, 34.571706057832884], [-77.36078297741373, 34.57173309027914], [-77.36076190152421, 34.571711273414095], [-77.36071478552853, 34.57164452617347], [-77.36061969091972, 34.571519471144875], [-77.36060542176867, 34.571500706363494], [-77.36058611449984, 34.57147531600258], [-77.36047420013668, 34.57132814100167], [-77.36058624818529, 34.571210728233496], [-77.36063032188548, 34.57114084225016], [-77.36075467770887, 34.57107548273832], [-77.36078331566173, 34.57106043106912]], [[-77.34547622205632, 34.6550447946584], [-77.34558261412104, 34.655031805759194], [-77.34601813176802, 34.65455503821432], [-77.34610550396216, 34.65441258753574], [-77.34641293791574, 34.654536116047424], [-77.34666047209221, 34.65460549206852], [-77.34666678504296, 34.654607657917076], [-77.34666913889943, 34.654607921098766], [-77.34668030049993, 34.65461547789798], [-77.34688311127995, 34.6547534893516], [-77.34702860642619, 34.65480327699924], [-77.34733205660395, 34.65493528493722], [-77.34709277045997, 34.65512239238241], [-77.34683900470723, 34.655097200384766], [-77.34676251914442, 34.65507235172], [-77.34671977607863, 34.655076884601655], [-77.3464587912126, 34.65515422494578], [-77.34620045066326, 34.65516840627754], [-77.34614953663777, 34.65520861229785], [-77.3455168281031, 34.65519754501231], [-77.34552597785152, 34.65529227525129], [-77.34543644883978, 34.65519553673237]], [[-77.3758964359561, 34.62837387116239], [-77.37558251838155, 34.628423925020954], [-77.3753428351088, 34.62889885600422], [-77.37528375747142, 34.6289945239924], [-77.37514670517369, 34.62907785240111], [-77.37515247612876, 34.62928189400134], [-77.37514902391824, 34.6292934922638], [-77.37514559440424, 34.629292148118914], [-77.37514490390224, 34.62929113600271], [-77.37494850968365, 34.62914439667091], [-77.3749148765947, 34.62911124130693], [-77.37474248888445, 34.62893343266516], [-77.37464082966622, 34.628819276095804], [-77.37456689364076, 34.62873679830796], [-77.37456381206968, 34.62872708329554], [-77.37455439758718, 34.62866263935719], [-77.37451309961585, 34.62836455359909], [-77.37450146031296, 34.62832166194046], [-77.37450377985799, 34.62826669209937], [-77.37455453321495, 34.62820594145399], [-77.3748356014948, 34.627726942836965], [-77.37494894986524, 34.62763813686852], [-77.37505937407389, 34.6275110638853], [-77.37521499867294, 34.62736977530139], [-77.37529286251446, 34.627304251576966], [-77.37534330836905, 34.62725393190678], [-77.37573085650413, 34.62686358403269], [-77.37579812628972, 34.626796136509185], [-77.37613197373251, 34.62663165457172], [-77.37622353231146, 34.626473944960246], [-77.37625139783634, 34.62637137915081], [-77.37640972575214, 34.62622300329181], [-77.37647673924634, 34.62612664097149], [-77.37652636525037, 34.626090088058234], [-77.37664043630161, 34.626013603050296], [-77.3768040750031, 34.62586721052524], [-77.37692069114757, 34.62577285735546], [-77.37716989752471, 34.625658295190064], [-77.37731500278025, 34.625497942185724], [-77.37737256978085, 34.62542273371106], [-77.37745727962374, 34.62534855783723], [-77.3776193625726, 34.625228342764494], [-77.37770932699327, 34.62516491782472], [-77.37800689189768, 34.62494899015303], [-77.37810363143863, 34.6248963805146], [-77.37813276734298, 34.624858057564246], [-77.37825553126507, 34.624809005942], [-77.37849791227548, 34.62471135950855], [-77.37879368587424, 34.62473148020531], [-77.37887480297063, 34.62473846392358], [-77.37889213642451, 34.624748025817354], [-77.37892230183702, 34.624745436963345], [-77.37928635825472, 34.624795419214195], [-77.37951888506375, 34.62480115002363], [-77.37986322025279, 34.62477406995554], [-77.38005279968972, 34.62414940388445], [-77.38005909248585, 34.62412461490526], [-77.38006112871172, 34.624109398769036], [-77.38007499637, 34.6240619869014], [-77.38014078079702, 34.623759052807586], [-77.38024929378798, 34.6236726488469], [-77.38037823886438, 34.62355595712562], [-77.38056506758944, 34.62352406940045], [-77.38072782278655, 34.62360370404817], [-77.38081986327848, 34.62363749268929], [-77.38086354137573, 34.62368150996946], [-77.38101630085852, 34.62382215502023], [-77.3811682160304, 34.62396481549425], [-77.38125768704016, 34.62405578085561], [-77.38146565442767, 34.624122537490656], [-77.38165190947524, 34.62408921953703], [-77.38177081194453, 34.62400602276692], [-77.38204617323413, 34.62392680247033], [-77.3821202334892, 34.62390739775985], [-77.38237555928492, 34.62386069982249], [-77.38244041566696, 34.623860546266165], [-77.38256747842624, 34.623900047148936], [-77.38301412149309, 34.62393009981254], [-77.38322881685853, 34.624144551923834], [-77.38352130562342, 34.62394070659728], [-77.3835535552002, 34.62362110673874], [-77.38362318989115, 34.6233948519181], [-77.38367999350507, 34.62323946489556], [-77.38369028768881, 34.62317683838847], [-77.3838203775119, 34.62300083129115], [-77.38383925580474, 34.62296341251698], [-77.38388946565274, 34.62293585335971], [-77.38401751195079, 34.622881261597115], [-77.38414359101922, 34.62282272048753], [-77.38434130830265, 34.622734333045294], [-77.38441175784732, 34.62275855844654], [-77.38458420007677, 34.622623452955], [-77.38475614433494, 34.62254496020937], [-77.38480602546686, 34.6225068573807], [-77.3850809195016, 34.62225586198231], [-77.38520030293364, 34.622184500966924], [-77.38529242254086, 34.622196033968294], [-77.3855945346771, 34.622114673143095], [-77.38563106985083, 34.62208735808261], [-77.38598035427748, 34.62200674104539], [-77.38598877155638, 34.622009058369116], [-77.38599643323207, 34.622003608546386], [-77.38600879278923, 34.62199357670669], [-77.38618591022731, 34.621828876571904], [-77.38625623722103, 34.621821369895834], [-77.3863830287411, 34.621769658116555], [-77.38653811575398, 34.62191728652643], [-77.38638299216353, 34.621998834834216], [-77.38628972054873, 34.6220535296637], [-77.38618587096887, 34.6220713798494], [-77.38614247957062, 34.622139872358396], [-77.38611283193303, 34.62219086503082], [-77.38611349293411, 34.622268684725555], [-77.38608224272679, 34.62240755669836], [-77.38598863805052, 34.622823521225115], [-77.3859774243327, 34.62283515497287], [-77.38597913849641, 34.62285720747428], [-77.3858866408578, 34.623284879223306], [-77.3862925899813, 34.62397848352846], [-77.38631855062135, 34.62407176328429], [-77.3863109456798, 34.62415008202431], [-77.38614377465524, 34.62452151894166], [-77.38606980954924, 34.624619911455184], [-77.38587097304973, 34.62498540118712], [-77.3857673508692, 34.62518700275728], [-77.38567600028321, 34.62543806692073], [-77.38559394207658, 34.62565049313561], [-77.38546573268614, 34.62575488152614], [-77.38488503918023, 34.62589088455044], [-77.38480542691096, 34.62589160913575], [-77.38471678409601, 34.62590540872449], [-77.3843761692308, 34.62604995352055], [-77.38404847124288, 34.62613116902439], [-77.38401690304232, 34.62615349404367], [-77.3838838967362, 34.62626410730518], [-77.38355072904406, 34.626516072876775], [-77.38327448474188, 34.627008056567654], [-77.38324481299088, 34.62706211340063], [-77.38322824088455, 34.62710161611265], [-77.38294114192723, 34.62764593343985], [-77.38274962954645, 34.62798259403917], [-77.38278680016697, 34.628351243128094], [-77.38261558218082, 34.62842647353602], [-77.38279237876307, 34.62844553087912], [-77.38285823151327, 34.62841788866304], [-77.38322801332203, 34.62827928070747], [-77.38342753822556, 34.628099742454154], [-77.38399506667929, 34.627826315994234], [-77.38401659674022, 34.62781533153055], [-77.38402820657723, 34.6278108587958], [-77.38409081338513, 34.62778933512833], [-77.38468444854094, 34.62757382422173], [-77.38480514304625, 34.627513376762074], [-77.38504990426676, 34.62738755993314], [-77.3860576754862, 34.62715642546828], [-77.38638218352693, 34.62712942009929], [-77.38666499440029, 34.6271137985792], [-77.38717067841688, 34.627069310505235], [-77.38737605818835, 34.627094697063384], [-77.38791136756218, 34.627187268050875], [-77.38795915082986, 34.62716334985236], [-77.38804995591217, 34.627120963900374], [-77.38852386187884, 34.626909416616044], [-77.38852531830551, 34.62672566254706], [-77.38853010483447, 34.62653475680712], [-77.38853851579533, 34.626299192572176], [-77.38848226332803, 34.626021354423145], [-77.3885502902716, 34.625872928403545], [-77.38874781657543, 34.62575676545741], [-77.38883752917621, 34.62583152491808], [-77.3889971496553, 34.62596453984487], [-77.38910651993659, 34.62617910849755], [-77.38912846442761, 34.626214155600465], [-77.3891276239982, 34.62622975257382], [-77.38907792632159, 34.62657705747058], [-77.38897149217945, 34.626661349877736], [-77.3889728991423, 34.62684316764888], [-77.38887139780189, 34.62710034519027], [-77.38882148124108, 34.627877052901695], [-77.38882299114925, 34.62795645769076], [-77.38891136248685, 34.62812016653091], [-77.38858492446731, 34.62883990505444], [-77.38905147012738, 34.62994935856579], [-77.38795848295317, 34.63211064976696], [-77.38790657280842, 34.632278341203865], [-77.38561522085217, 34.63179130004342], [-77.38480436841718, 34.63199614767285], [-77.38399861879209, 34.632029727417645], [-77.38322730544303, 34.631976219424395], [-77.38271120372976, 34.63194041083896], [-77.38219391874033, 34.63204464974237], [-77.381650201116, 34.63215090656246], [-77.38151195776047, 34.632257717857364], [-77.38089647930637, 34.63245767159254], [-77.38086163265898, 34.632299830437184], [-77.38076670564817, 34.631767149423936], [-77.38070879120014, 34.631673146372975], [-77.38073125987799, 34.63152933635276], [-77.38066177253965, 34.63104630899629], [-77.3805992207429, 34.63083980567115], [-77.38040671069253, 34.63037719708897], [-77.38028372320335, 34.630036132765824], [-77.38018483906359, 34.629930628555485], [-77.38007366671785, 34.62980071442682], [-77.37982975463443, 34.62951514060887], [-77.37928628607501, 34.62933180183999], [-77.3792852645004, 34.629332204907236], [-77.37892068045488, 34.62984001730148], [-77.37869573085476, 34.630264898982084], [-77.37855259115707, 34.630345918491166], [-77.37849649341997, 34.630382060512076], [-77.37830355823253, 34.630538232869306], [-77.37829561101786, 34.63053881666231], [-77.37820951974894, 34.63054721958006], [-77.37810683338127, 34.63055701009552], [-77.37810219045252, 34.63055132079432], [-77.3779756518326, 34.63050490309494], [-77.37781456392399, 34.630506648339015], [-77.37770794786744, 34.63047970885048], [-77.3776557587856, 34.630470908193445], [-77.37739075101217, 34.63045287849377], [-77.37755787996585, 34.630267143672235], [-77.37770802749841, 34.630170860607265], [-77.37804657867133, 34.62987377715831], [-77.37830857519695, 34.629471545585005], [-77.37842090264257, 34.62937369343517], [-77.37849677013133, 34.62926901392663], [-77.37887018664516, 34.62894355590856], [-77.3790106821769, 34.62852127967603], [-77.3787705851621, 34.62826127034133], [-77.37849707880818, 34.628031493140526], [-77.37831764033497, 34.62796524478347], [-77.37784549378527, 34.62798743299562], [-77.37770856460752, 34.62809344406715], [-77.37720949083217, 34.62878074165457], [-77.3771410075926, 34.629028802976705], [-77.37691978079762, 34.6291546012669], [-77.3766144996396, 34.62919517779649], [-77.37648522803181, 34.62888506392497], [-77.37613143590669, 34.62856224234598]], [[-77.45438890777898, 34.503281653031316], [-77.45582454421576, 34.50225835183089], [-77.45652270616682, 34.50194201368994], [-77.45835913638378, 34.50167711639599], [-77.45837382159043, 34.5016531445336], [-77.45838556932553, 34.50164308711972], [-77.45900166862415, 34.50077003475783], [-77.46071728252417, 34.5004507745286], [-77.4607604335427, 34.500436290342414], [-77.4609093646692, 34.50042022075378], [-77.46200486945138, 34.50023444853534], [-77.4627305869281, 34.50020518470088], [-77.46333265134434, 34.5001650946847], [-77.46392588321926, 34.500191731825566], [-77.46405809963626, 34.500224299270776], [-77.46409941428931, 34.500276015600626], [-77.46440597680919, 34.50059770456658], [-77.46442069547741, 34.500817760209166], [-77.46439270333732, 34.50101247859691], [-77.46446257437727, 34.501276087177985], [-77.4645040999379, 34.50155710595838], [-77.46450243181775, 34.5019536214306], [-77.46449738329379, 34.502251348374145], [-77.46448706377384, 34.502348938658216], [-77.46445100655612, 34.50262652405753], [-77.46431199068184, 34.503223345152406], [-77.46440141993979, 34.50329951920332], [-77.46433738623965, 34.50336166811952], [-77.46423368581408, 34.503459224764505], [-77.4637154027239, 34.50424761396383], [-77.46324654053592, 34.50459193335149], [-77.46278813171973, 34.50498529486386], [-77.46233507767246, 34.50522119333928], [-77.4622403855056, 34.505313287792035], [-77.46206876832409, 34.50539219156244], [-77.46188966997883, 34.50553634305445], [-77.46194283264799, 34.505762792717], [-77.46197046120186, 34.5058781998935], [-77.46199954531028, 34.50599742442578], [-77.46225243700464, 34.50710120170808], [-77.46228664680446, 34.50724527415109], [-77.46228377461537, 34.50741476162521], [-77.4621279847645, 34.50822879905499], [-77.46200451551626, 34.50858198010593], [-77.46177442421485, 34.50924016034571], [-77.4617697858873, 34.509242881239665], [-77.46047715250886, 34.50942157932146], [-77.4587851063763, 34.50924260033155], [-77.45764907974358, 34.5089305481716], [-77.45510468852014, 34.50823158102486], [-77.4548913694912, 34.508145098057696], [-77.45399838269498, 34.506824297257154], [-77.45392745939749, 34.50551708706319], [-77.45393678535413, 34.505438242914316], [-77.45409184272623, 34.50412697035499]], [[-77.33923065757585, 34.636607568461805], [-77.33921243174198, 34.63662230850857], [-77.33888624993102, 34.63633015324761], [-77.33881683414899, 34.63627883840836], [-77.33853504081006, 34.636437339250556], [-77.33811693290652, 34.63627908732746], [-77.3378620913241, 34.63627446232029], [-77.33772704518525, 34.63658230988847], [-77.3376018796324, 34.636572641374904], [-77.3375092864808, 34.63657151949978], [-77.33724062547503, 34.636367850504534], [-77.33704862255372, 34.6366161136296], [-77.33696269894841, 34.636577857743035], [-77.33693446520769, 34.63656153932086], [-77.33679818495646, 34.636555671344176], [-77.33678810850978, 34.63654872637584], [-77.33668641016483, 34.63647863293055], [-77.3366427921469, 34.63640398757941], [-77.33665233633572, 34.63635636107851], [-77.33669741446171, 34.636288170846946], [-77.33683665086072, 34.636181189119334], [-77.33690127586189, 34.63627209422748], [-77.33695151961152, 34.636104305430244], [-77.33710993506807, 34.63600608413759], [-77.33714636009009, 34.63589860479092], [-77.33769149082168, 34.63588183502875], [-77.3375824762035, 34.634882585181934], [-77.33756595872192, 34.634430064880966], [-77.33859930129202, 34.63441343026836], [-77.3387434866695, 34.63428816367036], [-77.33889912803971, 34.634340376181356], [-77.3394032628584, 34.63438554065473], [-77.3396351508388, 34.634658623615294], [-77.33988580834222, 34.63485758785762], [-77.340197298038, 34.635151133199365], [-77.34048772054541, 34.63526671329213], [-77.34064863903774, 34.6355968728528], [-77.34075119377542, 34.63589313783442], [-77.34079424194596, 34.635998883937525], [-77.34082597952465, 34.63613951069174], [-77.34084470336445, 34.636202955938906], [-77.34074739173697, 34.63629574366172], [-77.3407246481029, 34.63637852478637], [-77.34067974155617, 34.63643659832174], [-77.34062568799132, 34.636486623752845], [-77.3405170635366, 34.63651833200097], [-77.34047682819138, 34.6365423536368], [-77.34038187079388, 34.636624394722574], [-77.33992650844348, 34.636634190254966], [-77.33998894517786, 34.63695341584936], [-77.33992730940552, 34.63699383076158], [-77.33962068954605, 34.63701590711931], [-77.33955270494543, 34.63711801279386], [-77.33946136397965, 34.637025830120265], [-77.33931527101574, 34.63673073638942], [-77.3392807039575, 34.636628629895554]], [[-77.39034890998362, 34.710317089667555], [-77.39014238456157, 34.71032716954827], [-77.39023617880075, 34.71018240549737], [-77.39036475379517, 34.7102155489965], [-77.39037687540876, 34.71022062811393], [-77.39073274454701, 34.7100810821904], [-77.39048063763136, 34.71026796491529], [-77.39041264536579, 34.71029389534152]], [[-77.40617751067595, 34.6697199248456], [-77.4059857896733, 34.669622262014414], [-77.40511352340498, 34.66927113108018], [-77.40522282763146, 34.66845945491425], [-77.40585247608678, 34.66820547329392], [-77.406317873777, 34.668475543211265], [-77.40676280213088, 34.66858307358306], [-77.40690976487699, 34.6686441453061], [-77.40699971517222, 34.668586163081144], [-77.40710275134722, 34.668558385505726], [-77.4074272882986, 34.66853753890077], [-77.40758427096421, 34.66852745475158], [-77.4076472961921, 34.66852340610112], [-77.40777759043625, 34.668515036018405], [-77.4078673042244, 34.6685092728474], [-77.4080354114005, 34.66849847331525], [-77.40809565434527, 34.66888288546413], [-77.4081071829851, 34.668909966235105], [-77.40810439551578, 34.66891603185694], [-77.40792687947453, 34.669354943053314], [-77.40786416953668, 34.66938403363995], [-77.40766371751909, 34.669672572880486], [-77.4075433758014, 34.66983087666526], [-77.40757068692773, 34.67003137541183], [-77.4074939481437, 34.670143010640814], [-77.40715241348431, 34.67025315981906], [-77.4071237167874, 34.67028546752277], [-77.40704448167537, 34.670391486107285], [-77.4069529314143, 34.67028910028992], [-77.40667480669813, 34.6700859820546]], [[-77.39382148529947, 34.623470242727066], [-77.394267268089, 34.623341799843345], [-77.39457265033165, 34.623210725858975], [-77.39474644901199, 34.623189865493174], [-77.39505572575774, 34.62314924366993], [-77.39519594924626, 34.623216535941424], [-77.39534121230075, 34.62331268653023], [-77.39544993200451, 34.62347860975569], [-77.39553412363674, 34.623592341297716], [-77.39562028683065, 34.62382100054435], [-77.3958441178502, 34.62433826635793], [-77.39586160088798, 34.62437542929367], [-77.39586923811734, 34.624393158474085], [-77.39589063361356, 34.62444017348775], [-77.3962318624643, 34.62519000760351], [-77.39615139483357, 34.625719764637346], [-77.39621692314276, 34.62604130343541], [-77.39697422866712, 34.62714927184045], [-77.39584399162263, 34.627271769729774], [-77.395313335677, 34.626743108670425], [-77.39516050663612, 34.62619364246911], [-77.39505557106831, 34.626044091145786], [-77.39479693394605, 34.62567548631874], [-77.39447395009047, 34.62544349904344], [-77.39426713858093, 34.62539411470317], [-77.39415777351309, 34.62537130656357], [-77.3937089008825, 34.625305871636144], [-77.39347868040394, 34.62527203802268], [-77.3928894084334, 34.62482282812757], [-77.3927896456348, 34.624730175935866], [-77.39269029490266, 34.624285296135845], [-77.3924054770239, 34.62404346143751], [-77.39248820457239, 34.62340011781476], [-77.39190188568304, 34.62376340171032], [-77.39167272431327, 34.62354678839442], [-77.39150768357433, 34.62351395529583], [-77.39129218536574, 34.62335482977351], [-77.39150772131958, 34.6231247714077], [-77.39161964554224, 34.62300357819343], [-77.39182988517017, 34.62293036586062], [-77.39190196175753, 34.62293798599932], [-77.39216317048565, 34.62280468879789], [-77.39227282743863, 34.6227637077844], [-77.39233393968554, 34.62273942419007], [-77.3926903987586, 34.62302670752727], [-77.39272321477202, 34.6231131616266], [-77.39277876808065, 34.623140502058156], [-77.39347881374023, 34.62343456911019]], [[-77.39859128417643, 34.527730125584], [-77.39823979689295, 34.527988908452414], [-77.3980596270882, 34.52829654201564], [-77.39789797540769, 34.528358815425335], [-77.3971743052312, 34.528464064035624], [-77.39696560695172, 34.52854378066109], [-77.39632301630257, 34.52857888736096], [-77.39609156220052, 34.52893082697582], [-77.39595624990257, 34.529089800132425], [-77.39547831978942, 34.52962588911668], [-77.39547858757675, 34.529648409287184], [-77.39544681418933, 34.52969424768134], [-77.39520755587996, 34.5299908566496], [-77.39482756534179, 34.53016330660336], [-77.39471639819132, 34.53020726359466], [-77.39466611727242, 34.53022420556444], [-77.39433869727806, 34.53030258116161], [-77.39392703977933, 34.53039989490889], [-77.39385600377345, 34.530416316778364], [-77.393657484858, 34.5304008845541], [-77.39321602227257, 34.53041816654588], [-77.39314210363362, 34.53039572971159], [-77.39246892687031, 34.53008272365639], [-77.39244064094994, 34.53003967646001], [-77.392367586732, 34.529928496856854], [-77.39209583197673, 34.52996759680323], [-77.39157643423769, 34.530200646071094], [-77.39154355675016, 34.5302162453748], [-77.39107665295202, 34.53046525362815], [-77.3907836988665, 34.53054283826259], [-77.39005705177989, 34.53092038408856], [-77.39000736664653, 34.53093854007218], [-77.38998961939163, 34.53094438716224], [-77.38994981888088, 34.53096045443982], [-77.38973834523082, 34.53096636299179], [-77.38866230493227, 34.53096981915099], [-77.38841743020247, 34.5310381725674], [-77.3882232747406, 34.53106419459075], [-77.38722677734197, 34.531091266585555], [-77.38684671157219, 34.53106656274073], [-77.38639124940448, 34.53095953543941], [-77.38685642593056, 34.530636093104405], [-77.38710884587633, 34.53052220462491], [-77.38759812993878, 34.530295779761644], [-77.3881292202776, 34.53002514917392], [-77.38845218106319, 34.52949699141788], [-77.38902796234314, 34.52972713059793], [-77.38932320819578, 34.5296125257646], [-77.39002656840222, 34.52930435407657], [-77.39139235456823, 34.52890211199506], [-77.39160526132054, 34.528920053333955], [-77.3917783520384, 34.52881992609584], [-77.39191862188952, 34.52869312304547], [-77.3927504775908, 34.52829939436705], [-77.39300584674075, 34.52768000041655], [-77.39257956016547, 34.52761841634982], [-77.39254420407026, 34.52720580673443], [-77.39253938468333, 34.5270675391199], [-77.39297026424613, 34.52658270197285], [-77.39305247618663, 34.52645970724196], [-77.3932060335723, 34.52559679572164], [-77.39320149512525, 34.52556999832365], [-77.39321151634115, 34.52554377616037], [-77.39325222662517, 34.52549968255245], [-77.39469481574521, 34.52437515431294], [-77.39476940689211, 34.52431485008875], [-77.39485136150677, 34.52420183896797], [-77.39496239813879, 34.52426636673847], [-77.39494808682213, 34.52433860233356], [-77.39498849231101, 34.52442139101787], [-77.39549469452717, 34.525239051825416], [-77.39616159938974, 34.52528956611359], [-77.39639112092603, 34.52554592104302], [-77.39650338184184, 34.52558314123594], [-77.39690976221836, 34.52568862989239], [-77.39760924886085, 34.52591319218623], [-77.3977119874761, 34.526046737986675], [-77.39793831624554, 34.52656077271355], [-77.39892441945005, 34.52705992713127]], [[-77.36362456870421, 34.55102545653891], [-77.36368941668904, 34.551369626080294], [-77.36366893327082, 34.55140565443048], [-77.36367382025975, 34.55161669763473], [-77.36363482290797, 34.55184901790881], [-77.3636384840906, 34.55186661200581], [-77.36365346109228, 34.55189485090307], [-77.36360268719986, 34.5519836579105], [-77.36355795407663, 34.55190719278626], [-77.36356064530158, 34.551877822545116], [-77.36310435117872, 34.55176770664318], [-77.36313890802884, 34.551644536987816], [-77.36315986913817, 34.55144589275319], [-77.36322497920054, 34.5513305993459], [-77.36352619540766, 34.551336216796344]], [[-77.35582897865572, 34.55078769481123], [-77.35580866231233, 34.550810309186375], [-77.35577623076647, 34.5508476144586], [-77.35559361492216, 34.55095404983817], [-77.35537841518926, 34.55107410435144], [-77.35535649980143, 34.55108705365746], [-77.35530363839136, 34.55110814351536], [-77.35505380172867, 34.55118814682885], [-77.35498233968487, 34.55122464251269], [-77.35464711734434, 34.55140904202149], [-77.35458471869646, 34.55144247276918], [-77.35457024685667, 34.55144961644362], [-77.35455295426996, 34.55146102740143], [-77.35418586712163, 34.55171383246295], [-77.35414419982675, 34.55173906736524], [-77.35405322037083, 34.55177778369605], [-77.35378844727747, 34.55192270177942], [-77.35362479272777, 34.55198309153729], [-77.35341492680881, 34.55211448163541], [-77.35339118207168, 34.55212474555005], [-77.35313307353213, 34.5522405877207], [-77.3529947842805, 34.552288927769624], [-77.35282998515564, 34.552341489428485], [-77.35279699764435, 34.55235304051057], [-77.35276357039719, 34.55235151007304], [-77.35260162810067, 34.55231189988372], [-77.35244439381938, 34.55225417270502], [-77.35230606702441, 34.55221494448513], [-77.35221208578672, 34.55217754412876], [-77.35219296362293, 34.55216794965348], [-77.35210804734186, 34.55212340861246], [-77.352032040431, 34.552068699647975], [-77.3519548026416, 34.55199799458386], [-77.3518262862468, 34.55188034738707], [-77.35180328308243, 34.55185680189568], [-77.3517925499221, 34.551836684865584], [-77.35174268612998, 34.55174311242061], [-77.35174769172102, 34.55167197414609], [-77.35174323749476, 34.551620622217946], [-77.3517056916966, 34.551546039315056], [-77.35172267005893, 34.55137876078358], [-77.35162701324705, 34.551280557093], [-77.35161205259217, 34.55125209414918], [-77.35161070071067, 34.551150054190096], [-77.35158727485772, 34.550991656384205], [-77.35152484229302, 34.55087513708025], [-77.35147809845111, 34.55067949576247], [-77.3514726251034, 34.550673283950815], [-77.35146172433765, 34.55065916652988], [-77.35134965355142, 34.550524965701804], [-77.35131374817492, 34.55045832771676], [-77.35124950681218, 34.55035937824719], [-77.35122659151186, 34.550319383047054], [-77.35138063075271, 34.55020388048179], [-77.3514463743068, 34.55017795081165], [-77.35147307097311, 34.55016544878216], [-77.35167969761845, 34.55004310726427], [-77.35187104694151, 34.54993230300161], [-77.35190892817288, 34.54990627256756], [-77.35196050838817, 34.54987560035528], [-77.35213260395349, 34.54976673460948], [-77.35226917885433, 34.549692269347446], [-77.35257629371256, 34.54959683122773], [-77.35266459819289, 34.54957023520686], [-77.3527199741801, 34.54955579198834], [-77.35302342200558, 34.54947779086849], [-77.35338223171591, 34.549381288028755], [-77.35345440624488, 34.54937089407076], [-77.35350394894027, 34.549377635164255], [-77.35371232238086, 34.549378631352155], [-77.35384681417088, 34.549379899174944], [-77.3540600291571, 34.54943959443353], [-77.35423690733299, 34.54948976790187], [-77.35429343345861, 34.54950434912415], [-77.35437295441574, 34.54952835889296], [-77.35443177091078, 34.54955269252506], [-77.35450718219795, 34.54958397651533], [-77.3546008209651, 34.54960167282312], [-77.35462697902149, 34.54960061305302], [-77.35476229551355, 34.54955605495408], [-77.35483050508938, 34.549462494379384], [-77.35494675217484, 34.54939743177798], [-77.35502472649813, 34.54937689401007], [-77.35511866502375, 34.54936263953586], [-77.35522188012158, 34.549339989787875], [-77.35529230970643, 34.549317196420176], [-77.3554195175258, 34.54928198352671], [-77.35580796944484, 34.549076959765614], [-77.3558128049777, 34.54907370565803], [-77.35581701129671, 34.54906916277355], [-77.35597624865244, 34.54890485820941], [-77.35609940947892, 34.54879018048966], [-77.35614749212726, 34.54873980594727], [-77.35621812171456, 34.548698496391665], [-77.35638814954469, 34.548608528587145], [-77.35653170507729, 34.54853474224156], [-77.3566154568649, 34.548492380587014], [-77.3566372484263, 34.54848135837548], [-77.35665825662929, 34.54846490262592], [-77.3568150558173, 34.54834865134813], [-77.35684681333244, 34.54833495223494], [-77.35701503425473, 34.54818833217443], [-77.3570322970804, 34.54817682917553], [-77.35703421295742, 34.54816595295084], [-77.35705557232912, 34.548138313712315], [-77.35713087513771, 34.547976421120175], [-77.35738139410813, 34.54789175010034], [-77.35741451480388, 34.54788838167565], [-77.35747848677518, 34.547897183266954], [-77.35773686513184, 34.54781996446732], [-77.35752857284956, 34.547780372467194], [-77.35761062186596, 34.54759331782657], [-77.35749652262054, 34.54756325190927], [-77.35742276173443, 34.54752844088118], [-77.35734605031612, 34.54743574735189], [-77.35734411372849, 34.5473868655871], [-77.3573500761896, 34.54733795979471], [-77.35734929980666, 34.547324913128975], [-77.3574285015642, 34.54727792404018], [-77.3574990427181, 34.54728625554209], [-77.35753691396336, 34.54729131088646], [-77.3576240858127, 34.54730924866007], [-77.35780510289227, 34.547310986818424], [-77.35782032234928, 34.547312103403435], [-77.35782768446431, 34.54731264351838], [-77.35784884284433, 34.54731419577966], [-77.3580151492501, 34.547376500557064], [-77.35810565287508, 34.54733303625485], [-77.35811792316359, 34.547334377996876], [-77.35814643786702, 34.54735288042596], [-77.35814892523497, 34.54739340126298], [-77.35821017815334, 34.54743208973367], [-77.35822979663047, 34.54749109243128], [-77.35823724308538, 34.54750309677504], [-77.35825274532618, 34.54752879013494], [-77.35824811911732, 34.54771860297151], [-77.35829196579706, 34.54774004119281], [-77.35834667289444, 34.547822861314565], [-77.35838386033986, 34.54785725571263], [-77.35829920045737, 34.54798382300753], [-77.35844540013817, 34.548052061396376], [-77.35844882383999, 34.54808469158473], [-77.35844715421251, 34.54812012078092], [-77.35844670334347, 34.548146202830395], [-77.35843559650328, 34.54818016887231], [-77.35842766400323, 34.54821015007593], [-77.35838586653944, 34.54833224903677], [-77.3583803715492, 34.548335998191746], [-77.35838028478875, 34.54834271494329], [-77.3582848232857, 34.54847554020461], [-77.3582757662326, 34.54853347318823], [-77.35827456579142, 34.54859942896428], [-77.35825692719956, 34.54864849242769], [-77.358256090109, 34.54866329505093], [-77.35822167378049, 34.54870412131018], [-77.35819911348156, 34.54873270451177], [-77.35819166555127, 34.548740924903], [-77.35817991091992, 34.54875366236973], [-77.3580512468192, 34.54892097533737], [-77.3579941459065, 34.549007039288426], [-77.35797729409367, 34.54902921986425], [-77.35791861526772, 34.549104814838415], [-77.35788678114343, 34.54914490921733], [-77.35777933327992, 34.54928023738651], [-77.35777704403195, 34.549283120643885], [-77.3577763926621, 34.54928398796081], [-77.35777511381147, 34.549285662897056], [-77.35770634239077, 34.549374090798096], [-77.35767392665126, 34.549418099561784], [-77.35767261311196, 34.5494197727468], [-77.35767090779915, 34.549420813456436], [-77.35761676102567, 34.549454690876644], [-77.35757434423896, 34.5494804744812], [-77.35738096273138, 34.549581699338596], [-77.35737566919627, 34.54958382727445], [-77.35737329970694, 34.54958460670263], [-77.35736672853149, 34.54958701917419], [-77.35707876734637, 34.54968967366588], [-77.35697984463052, 34.549723896836205], [-77.35680467870644, 34.54980468741204], [-77.35664704845018, 34.549895697615035], [-77.35658247447417, 34.54993133573361], [-77.35657115832927, 34.54993943967246], [-77.35655653798865, 34.54994848503265], [-77.35618310130936, 34.550226055183145], [-77.35616314620465, 34.55023766493347], [-77.35615876114223, 34.55025057354027], [-77.35616220336419, 34.5502625869701], [-77.35609891622687, 34.55045478689007], [-77.35609210302046, 34.55050499263898], [-77.35597760539177, 34.55062674194596], [-77.35596638266624, 34.550638675431756], [-77.35595840460793, 34.55064665139584], [-77.35592531782495, 34.550683211661806]], [[-77.33925963399217, 34.689248070434914], [-77.3395334532187, 34.68929392917483], [-77.34030080719964, 34.68942243892577], [-77.34097184908467, 34.68976380485731], [-77.3410732413337, 34.69029121641703], [-77.34120372427115, 34.690373708801204], [-77.34130925302782, 34.69043490893329], [-77.34157933400344, 34.6904437728071], [-77.34181753635562, 34.69018909314991], [-77.34205210044854, 34.68993830222831], [-77.34223208391538, 34.68974586660951], [-77.34274898982103, 34.689578874610994], [-77.34258631310867, 34.68983991646882], [-77.34240393964907, 34.68989824933007], [-77.34203807142177, 34.69015883299501], [-77.34197501054247, 34.690203700082876], [-77.34160545914112, 34.690466937871825], [-77.34138785261068, 34.690735426936506], [-77.34113824029647, 34.69102363012914], [-77.3409264561298, 34.69114157128207], [-77.34094270109155, 34.69128388093995], [-77.34071264491668, 34.691539863189504], [-77.34035708623507, 34.691913423687396], [-77.34007172492458, 34.69237812920284], [-77.33977558347652, 34.692674523946145], [-77.33966324722496, 34.6929215464614], [-77.3396135587451, 34.693173798436064], [-77.33952219185502, 34.69342827341676], [-77.33947889781076, 34.693671555074054], [-77.33947730947281, 34.69368677046918], [-77.33944422627066, 34.69392634524545], [-77.33934577696422, 34.69416812394675], [-77.33933574383298, 34.69419960874827], [-77.33928799344824, 34.694212580595135], [-77.33903372934071, 34.694146780865715], [-77.33846459787179, 34.69406553182446], [-77.33845727417979, 34.69406340684193], [-77.33786848524073, 34.69403658395771], [-77.33766901022165, 34.693881564997525], [-77.33746202929363, 34.693710887456604], [-77.33741292861473, 34.693684437542906], [-77.3373881898253, 34.69362929282486], [-77.33719823148057, 34.6935809925643], [-77.33709874840378, 34.69353200662832], [-77.33707285466603, 34.69352058359266], [-77.33685913445805, 34.69338983666994], [-77.33681016809918, 34.693359880570256], [-77.33668909662894, 34.693329535200846], [-77.33701004832484, 34.69287041637323], [-77.33705549414798, 34.692816041543665], [-77.33708403082137, 34.6927879891753], [-77.33708154952684, 34.69275695451381], [-77.33668299262247, 34.691868246178245], [-77.3380960496217, 34.690399841886375], [-77.33634739036674, 34.69103048383447], [-77.33607042456373, 34.690381737809744], [-77.33591759189957, 34.690023736648115], [-77.33724805927365, 34.68789915098873], [-77.33723255679902, 34.68789387299889], [-77.33723130293687, 34.68786489361298], [-77.33726106508817, 34.687885687722435], [-77.33726410283305, 34.68788680758874], [-77.3372694738397, 34.6878888090312]], [[-77.39692866675068, 34.71811596396403], [-77.39676436703816, 34.71738561848825], [-77.39605274593893, 34.71717909546044], [-77.39562144658052, 34.716969435566014], [-77.39534559945386, 34.71686619075621], [-77.39488736247998, 34.7167760528339], [-77.39437160590364, 34.716769826558405], [-77.39406909721774, 34.71672391578183], [-77.39365845930797, 34.71659215833851], [-77.39351250468893, 34.71636145122558], [-77.39374352491431, 34.71596700372238], [-77.39350361258924, 34.71579918276605], [-77.39339514776395, 34.71521959625459], [-77.39378987201235, 34.714321588277954], [-77.39426824605842, 34.71448856452342], [-77.39507175313179, 34.71452068282377], [-77.39551847239005, 34.714598787171624], [-77.39568298487933, 34.71442466705069], [-77.39616087352903, 34.714594253833795], [-77.39634699237988, 34.71488170041977], [-77.3966953636843, 34.714962024559405], [-77.39683690218311, 34.71512378373092], [-77.39695596308289, 34.71532978316364], [-77.39695820872433, 34.71551953192102], [-77.39711144246661, 34.71573835259842], [-77.397222111659, 34.71585583478635], [-77.39748899717098, 34.71607543877276], [-77.3975785919306, 34.71615354283279], [-77.39761963187762, 34.7161969038051], [-77.39773004715992, 34.7163135632874], [-77.39765400712224, 34.7164127477629], [-77.39767725632416, 34.71655873195631], [-77.39762311414943, 34.716681510577395], [-77.3978048099051, 34.716951877916124], [-77.3979677988826, 34.717207594931324], [-77.39800733054061, 34.71731377117949], [-77.39808286730171, 34.71740151714612], [-77.39825247143747, 34.71765789672696], [-77.398446569701, 34.717767693954926], [-77.39848671971323, 34.71782238958865], [-77.39859639999156, 34.717960838830294], [-77.39863107350114, 34.71801268133218], [-77.39864776416265, 34.71805100636568], [-77.3986343151782, 34.718129134712505], [-77.3986224441891, 34.71814944756106], [-77.39860853916237, 34.718178939882335], [-77.39852601562288, 34.71832616457025], [-77.39843478079337, 34.7183633593349], [-77.39838299280773, 34.71849612961105], [-77.39829933883033, 34.718595542280184], [-77.3982707908684, 34.71865705757463], [-77.39820552246564, 34.71884228947893], [-77.39810389940628, 34.71895000164757], [-77.39794768810883, 34.71887694454182], [-77.39761025496448, 34.718913588860524], [-77.39750362011992, 34.71889900316246], [-77.3974728918825, 34.71891512520328], [-77.39741072288692, 34.718901452515155], [-77.39720780508554, 34.71877277761286], [-77.39699866815232, 34.71833933209057], [-77.3969906471346, 34.71818393059529]], [[-77.38935385727873, 34.547506684098494], [-77.3890396300306, 34.54710191670266], [-77.38884605624312, 34.5468525623579], [-77.38880354884354, 34.54679780604496], [-77.3887845052354, 34.54677327459315], [-77.38873454885484, 34.54670892215224], [-77.38856746831647, 34.546493694390726], [-77.38841934436417, 34.54633627964647], [-77.38808217349516, 34.54590760571288], [-77.38772177687963, 34.546168318052324], [-77.38728594599003, 34.54639747778562], [-77.38695128770564, 34.54633848873169], [-77.38727021539485, 34.54650202437749], [-77.38727574468956, 34.546506061390964], [-77.38728335213611, 34.54651248063933], [-77.38751252050785, 34.54680964532927], [-77.3876146047591, 34.54694201756358], [-77.38766509428173, 34.54699363748661], [-77.38776857931565, 34.54709862917222], [-77.38784922472618, 34.5471530100382], [-77.38805102761383, 34.547289089882966], [-77.3881154839217, 34.54731882407291], [-77.38825272337769, 34.54733964351216], [-77.3886080664889, 34.54742870776259]], [[-77.39131342422604, 34.71503272705462], [-77.39061230529961, 34.715111004772645], [-77.39046869892275, 34.715296265442184], [-77.39009449393006, 34.715617132150626], [-77.38997855856334, 34.71557114903275], [-77.38949601382829, 34.71505964875334], [-77.38954689837736, 34.71486502452031], [-77.38965021955607, 34.714450653066514], [-77.38992400509608, 34.71399393172868], [-77.389928995117, 34.713993228105224], [-77.39063894709682, 34.71373920413503], [-77.39090150183843, 34.71377024288402], [-77.39162380245793, 34.71377198570265], [-77.39221900137858, 34.71392462585863], [-77.39213724490341, 34.714611858583076], [-77.39167442512218, 34.71459017320992]], [[-77.42550586922624, 34.731759300161784], [-77.42552655480026, 34.731751448969696], [-77.42584195715155, 34.73164599723926], [-77.42588881840499, 34.73163717871591], [-77.42606749073835, 34.73166099771539], [-77.42637161647245, 34.73167820997057], [-77.42647680075304, 34.73166781721404], [-77.42655759593214, 34.73174290525208], [-77.42660300977954, 34.7318481842751], [-77.42666850246943, 34.732112983424216], [-77.42667681898163, 34.73213955623368], [-77.42667896523623, 34.732154265973], [-77.42667721062149, 34.732177542882575], [-77.42667985545296, 34.73243410897835], [-77.42655282934473, 34.73263765568742], [-77.42655357085106, 34.73266950074637], [-77.42653058370817, 34.73268581099465], [-77.4264998215578, 34.73269562681966], [-77.42636522668926, 34.73271590750347], [-77.42615592862359, 34.732776136025755], [-77.42612938210726, 34.732778116522596], [-77.42608935642497, 34.73278677313459], [-77.42570378094328, 34.732830553604124], [-77.42552607225998, 34.73286941534232], [-77.42550172144877, 34.73287432337299], [-77.4254830008301, 34.73288582532288], [-77.42532633696607, 34.732961679364344], [-77.42519376957642, 34.73303279399041], [-77.42470653651033, 34.733353099606965], [-77.42465838170678, 34.7333659836687], [-77.42458679208224, 34.73337969500183], [-77.42426737774166, 34.73347495574137], [-77.42400595472435, 34.73355826481459], [-77.42388051876222, 34.73359070153592], [-77.42372799876327, 34.733638570795975], [-77.42330067454458, 34.733779639869425], [-77.42305559218737, 34.73340352323172], [-77.42305662299137, 34.73320315799835], [-77.4231096482991, 34.73307894628679], [-77.42312663992716, 34.73286928574528], [-77.42313852569734, 34.73272262391967], [-77.42321790413018, 34.732507943920254], [-77.42324127186463, 34.7323502837723], [-77.42334471521544, 34.73219025142552], [-77.4233898351622, 34.73204099534217], [-77.42362893736492, 34.732071706021955], [-77.42378177666833, 34.732118088852616], [-77.42392045169825, 34.7321601727067], [-77.42433736320226, 34.73222260315852], [-77.4243937657114, 34.73221886805066], [-77.42441297529085, 34.732217100046334], [-77.42443455523603, 34.73220833994161], [-77.42482006117466, 34.73213441571615], [-77.42509447730859, 34.73190681090841], [-77.42511781209905, 34.73188810658346], [-77.42512311482818, 34.73188174058683], [-77.42513381221914, 34.73187735114065], [-77.42522619978035, 34.73185186866476]], [[-77.43461170988036, 34.699129586978245], [-77.43452281205559, 34.69895793783826], [-77.43459322894348, 34.69886169255786], [-77.43403211982184, 34.69826993847957], [-77.43389439897453, 34.69805831069323], [-77.43370606424719, 34.69782950414328], [-77.43347527365927, 34.697609549925645], [-77.43345420522608, 34.697592452866836], [-77.43342579985618, 34.697335417890535], [-77.43338952059389, 34.69719894603889], [-77.43339835324122, 34.69717064301128], [-77.43347968312807, 34.69707473035007], [-77.43349162625184, 34.69694920358735], [-77.4336636100464, 34.69685951111592], [-77.43352754042836, 34.6966949512054], [-77.43355712150131, 34.69630847248565], [-77.43356258416014, 34.696265134292226], [-77.43354762817673, 34.69624017511653], [-77.43354203458847, 34.69618133391703], [-77.43350418622863, 34.69596518837048], [-77.43352912811234, 34.69580150337061], [-77.43354462583176, 34.69569980034718], [-77.43356285096297, 34.69557005392923], [-77.43369801122225, 34.69519437660003], [-77.43369649775035, 34.695040719580234], [-77.43375119754941, 34.69481603581596], [-77.43384220684948, 34.69468574008141], [-77.43388671935409, 34.69460385843701], [-77.43404432183235, 34.694197355601176], [-77.4341622851442, 34.69403747040852], [-77.4343234781654, 34.693822195148826], [-77.43447854123052, 34.69379012620683], [-77.43485733510578, 34.69346158100834], [-77.4349568204785, 34.69339830272609], [-77.43497154726043, 34.6933859303746], [-77.43499744043866, 34.693365854100804], [-77.43517766005621, 34.69332788402708], [-77.43589553041357, 34.69340064480923], [-77.43625977339877, 34.69329481538728], [-77.43630008206969, 34.69329346967943], [-77.43638782624615, 34.69326917376006], [-77.43633626314147, 34.693321558632114], [-77.4365935794317, 34.69362969145628], [-77.43657420705553, 34.693963796524876], [-77.43644447028181, 34.694297847610656], [-77.43629035048168, 34.694982647935845], [-77.43604073417184, 34.69564603207598], [-77.4361578809673, 34.69682041318907], [-77.4361162192743, 34.69715795906889], [-77.43605209208698, 34.697426882780604], [-77.43593331460063, 34.698212109023146], [-77.43557894122765, 34.69851715674165], [-77.43543169800718, 34.6986245577044], [-77.43478540612827, 34.698928881518924]], [[-77.31482557223723, 34.639886327172846], [-77.31489402581883, 34.63986342715955], [-77.31497775688084, 34.63984705942645], [-77.31550685158805, 34.639726798673564], [-77.3159257073257, 34.63983184854979], [-77.31609389410504, 34.63993361936181], [-77.31619785759285, 34.639979835217616], [-77.31686148969482, 34.64054756390601], [-77.31691283467381, 34.64060820945816], [-77.31705327696915, 34.64129977657312], [-77.31703844192964, 34.64136728163538], [-77.31680262342596, 34.641733082499], [-77.31656175573353, 34.64179347754121], [-77.31632188775083, 34.64177743700449], [-77.31623982544265, 34.64178449054006], [-77.31613752291122, 34.64177927065688], [-77.31593142710337, 34.641842942171905], [-77.31543424991483, 34.64178979658399], [-77.31511672630404, 34.641866961237696], [-77.3146250723841, 34.64171409452025], [-77.31393052036945, 34.641918959220874], [-77.31398027844283, 34.64043161603707], [-77.31434753753032, 34.640330722935026]], [[-77.43266080806563, 34.701442114479036], [-77.43244791941903, 34.70146595964169], [-77.43258833363699, 34.701692588970594], [-77.43318667400271, 34.70172424612562]], [[-77.39988232320438, 34.66857336326168], [-77.40012018533756, 34.668909711013555], [-77.39994079458575, 34.66900773879049], [-77.3997970643374, 34.66935573631354], [-77.39965821741478, 34.66934700756134], [-77.39961659703009, 34.66929255437627], [-77.39933962745172, 34.66900174171383], [-77.39932070898828, 34.66874130863795], [-77.39962754993064, 34.66873723864101], [-77.3997390565537, 34.66867760202211]], [[-77.33360298342375, 34.56287979977695], [-77.33360511005186, 34.562879064314366], [-77.33360804916377, 34.5628781960808], [-77.33365005397036, 34.562875324066475], [-77.33435012426294, 34.56282094901674], [-77.33439305636223, 34.562821963382554], [-77.33445207503136, 34.56282362865274], [-77.33492875440501, 34.56296315498739], [-77.33518048212551, 34.5634014484132], [-77.3352499905261, 34.56349439321442], [-77.33528908504404, 34.56360598731675], [-77.33549319638303, 34.56397101517294], [-77.33561968455285, 34.56429032317785], [-77.33566883579957, 34.56460501622375], [-77.33568703100383, 34.56482776466766], [-77.33561559149292, 34.565139993149906], [-77.33562540332726, 34.56550636082925], [-77.33587668982184, 34.56585485233231], [-77.3359377192392, 34.56594276280605], [-77.3359487586915, 34.56596010619446], [-77.33596630341307, 34.56598804885468], [-77.33614494558033, 34.56633751020185], [-77.3362276448429, 34.56646812175623], [-77.33625208447796, 34.56663062249958], [-77.3362691647677, 34.56674419194921], [-77.33628025136487, 34.56682809986451], [-77.33623939488294, 34.567043669774684], [-77.33607649188357, 34.56707675184576], [-77.3359653980809, 34.56711448220754], [-77.33579353168771, 34.56705185784295], [-77.33575710143616, 34.567042334871864], [-77.33557158268019, 34.56692411790365], [-77.33546976988276, 34.5668591209799], [-77.33534785339984, 34.56669339960147], [-77.33517781831225, 34.56667313488897], [-77.33493443811169, 34.566511542238345], [-77.33484898354745, 34.5664538334177], [-77.33478406585948, 34.56641043173637], [-77.33441831283665, 34.56616120062618], [-77.33440237455409, 34.56615049486884], [-77.33439032023816, 34.56614239792426], [-77.33428621401366, 34.566067938595396], [-77.33399658689503, 34.565862574212645], [-77.33395730483608, 34.56584527973743], [-77.33360285179484, 34.565588036367544], [-77.33344292678339, 34.56545233716833], [-77.33314359826545, 34.56514158800093], [-77.33311312975856, 34.565075206340595], [-77.33301667570038, 34.564881299352436], [-77.33292081290821, 34.564678312195426], [-77.33289749722161, 34.56459358605689], [-77.3328159118468, 34.564418848111266], [-77.33246475918386, 34.56427333428621], [-77.33236047452262, 34.56426792838887], [-77.33202818198923, 34.56420244901189], [-77.3318216400078, 34.564209801387705], [-77.33146818801936, 34.564038037257646], [-77.33176600071839, 34.563712244128844], [-77.33202861769472, 34.56369148937375], [-77.33249332088897, 34.56354224894163], [-77.33281675666122, 34.5634170538678], [-77.33306633742131, 34.56322802254899], [-77.33359771350918, 34.56288284844395]], [[-77.37196714230478, 34.733900761138216], [-77.37178978029287, 34.7331484009423], [-77.37186193807466, 34.732828594791066], [-77.37176973527839, 34.73226421269448], [-77.37178665713712, 34.73221932906267], [-77.37185458004424, 34.73170760241556], [-77.37197309273711, 34.73167057182787], [-77.37206324516185, 34.7317806495586], [-77.37184083968286, 34.73223459390892], [-77.37233630928958, 34.73262868450213], [-77.37244601317411, 34.73287504619456], [-77.37268495070724, 34.733116695428706]], [[-77.3674847438822, 34.550866370684105], [-77.36748067452861, 34.55082353033788], [-77.36600027130213, 34.550149183976686], [-77.36575481427792, 34.550244538597745], [-77.36442457796026, 34.55037841012688], [-77.36384358978586, 34.55072546647936], [-77.364275091419, 34.55030597160395], [-77.3643405123683, 34.55024218877653], [-77.3640531385039, 34.54984828858564], [-77.3641819037376, 34.54950386644484], [-77.36420525743648, 34.54933672749286], [-77.36412978216055, 34.54914622962105], [-77.3644676759024, 34.54849038178925], [-77.36468142438945, 34.54828884180169], [-77.36561504711611, 34.547881891048775], [-77.36567330071242, 34.547656320068626], [-77.36606384569727, 34.54736184218778], [-77.36619519178859, 34.54717067967145], [-77.3662901129131, 34.547077817783695], [-77.36646549534451, 34.54696507467287], [-77.36670884738865, 34.54692383997257], [-77.36685960915517, 34.54689867124283], [-77.36715716172912, 34.546952914257716], [-77.36737951041688, 34.54708369242196], [-77.36763815616249, 34.54719054845812], [-77.36825497393177, 34.54738663035217], [-77.36859858818883, 34.547724559518926], [-77.36894555956327, 34.54782950405699], [-77.36918891991633, 34.54805297146491], [-77.36975646237613, 34.547909623251535], [-77.36997736095147, 34.547910947657854], [-77.37029513988502, 34.54777356255751], [-77.37076194849554, 34.54793815926204], [-77.37096961816978, 34.54822862550999], [-77.37121175738729, 34.5483273600576], [-77.37172819297622, 34.548868689374665], [-77.37198933698399, 34.54919462384651], [-77.37212536540405, 34.54928501110361], [-77.37229601031203, 34.54953719004292], [-77.3730973041489, 34.55048053855643], [-77.37344728891773, 34.55094314671928], [-77.37270591267202, 34.551331022839506], [-77.372701706768, 34.55202990752917], [-77.37268782200451, 34.55231561641836], [-77.37273986407168, 34.55251406645392], [-77.37266732538842, 34.5527372723523], [-77.37249346022338, 34.55303922749939], [-77.37233897474913, 34.55319463398952], [-77.37221538713135, 34.55334947224996], [-77.3719653820725, 34.55369511729637], [-77.37182132941086, 34.55376809042641], [-77.37167446116761, 34.55384809380193], [-77.37154145819035, 34.553902565067716], [-77.37142736833069, 34.55392744011637], [-77.37127403970995, 34.553898780768506], [-77.37084865637253, 34.553899995167626], [-77.37063961323418, 34.553813778210674], [-77.37036972124821, 34.55363620619634], [-77.36973455174807, 34.55343674311939], [-77.36936115969145, 34.55330851637348], [-77.36907018402962, 34.553267477780935], [-77.368939497398, 34.55314486657434], [-77.36870641231434, 34.5530952148233], [-77.36868237500114, 34.55305584436754], [-77.36862795468139, 34.55289786875343], [-77.36858283819734, 34.552802525919844], [-77.36851541567046, 34.55263307682384], [-77.36842163794799, 34.55222740869637], [-77.36839450687941, 34.55216084244779], [-77.368382036798, 34.55211840597705], [-77.36831677301984, 34.551869421281964], [-77.36825639254042, 34.551730708216766], [-77.36819159264357, 34.551700421589416], [-77.36801063777601, 34.55143391894858], [-77.36755419792603, 34.55087464088516]], [[-77.32035316084102, 34.55562897984439], [-77.32039185408033, 34.55563894777572], [-77.3205215663488, 34.55574248938198], [-77.32032232854532, 34.555882897212356], [-77.32024466147831, 34.55571101797236], [-77.32026612906388, 34.55565700853577], [-77.320166184769, 34.555569448702606], [-77.32033045880081, 34.55553474957662]], [[-77.41391207577007, 34.72630410549909], [-77.41353806684577, 34.726162307184886], [-77.41391161900475, 34.72627389879732], [-77.41394463587578, 34.726235280299015], [-77.41448188301874, 34.725709964971294], [-77.41477667927934, 34.725943548633495], [-77.41530655092087, 34.72596033791659], [-77.41538508136361, 34.726249081405726], [-77.41554746741224, 34.726514824303116], [-77.4155770163901, 34.7267520020458], [-77.41560324924205, 34.726884464156086], [-77.41556529252958, 34.726953749130075], [-77.41538488606352, 34.72718598312444], [-77.4150495852171, 34.727249959213424], [-77.41491896033111, 34.727298518748526], [-77.41442284972854, 34.72710955109572], [-77.41425605408335, 34.727053372245415], [-77.41392464635074, 34.72630429262843]], [[-77.39198198191548, 34.600328632673005], [-77.39193212613118, 34.6003057820986], [-77.39190424149712, 34.600301040470086], [-77.39184061795625, 34.600280475232104], [-77.39136256462405, 34.60015236540685], [-77.39111604244128, 34.60003676778325], [-77.3907885223228, 34.60000441890392], [-77.3903278112264, 34.60006010024588], [-77.3900443510569, 34.60006425367427], [-77.38983282347527, 34.600105296938544], [-77.3895395672565, 34.60017083025328], [-77.38922679989194, 34.6002136935718], [-77.38875131337187, 34.60033283212527], [-77.38838847295493, 34.60045591511507], [-77.38827065373975, 34.6005323865062], [-77.38796301613232, 34.600750997641434], [-77.387873234951, 34.60082434708723], [-77.38765427773006, 34.60086062362323], [-77.38756888180768, 34.60085222784578], [-77.38727787350226, 34.6008957978665], [-77.38717475809548, 34.60088315220215], [-77.38709066061051, 34.600943287245954], [-77.38678062594997, 34.60096127180461], [-77.38664803972694, 34.60095484855876], [-77.3865467317964, 34.600939683795445], [-77.38638652683812, 34.600845725814864], [-77.38623942550255, 34.60073201596122], [-77.38612888862473, 34.600600972063404], [-77.38599246902858, 34.600505925785946], [-77.385916056753, 34.60043639315209], [-77.3858080265605, 34.60036963649206], [-77.38570188969068, 34.60027344435856], [-77.38559841118985, 34.600183898762964], [-77.38546348227804, 34.60027396609315], [-77.38520426637334, 34.60033671356577], [-77.38505759409927, 34.60047780925356], [-77.38493868371009, 34.60063347501141], [-77.38481007076683, 34.60074404468023], [-77.38471297658418, 34.600847475744786], [-77.38452570277191, 34.60086078855451], [-77.3844159295657, 34.6008576381059], [-77.38423609219207, 34.60082704987597], [-77.38420900913952, 34.600823037494344], [-77.38402183102278, 34.60075565396549], [-77.38393438215986, 34.60073391688684], [-77.38376683848699, 34.60066385671412], [-77.38367468399991, 34.60062656749406], [-77.38362774165034, 34.60061378174599], [-77.38351702760967, 34.600580587852896], [-77.38338260186971, 34.60055876216593], [-77.38329578252485, 34.60051946796878], [-77.38325568820504, 34.60050150302246], [-77.38323365864338, 34.60044805963999], [-77.38319215204996, 34.60036685331161], [-77.38316295718622, 34.60032632931486], [-77.38315391399297, 34.59998907834635], [-77.38313956861852, 34.599905135241094], [-77.3828397305513, 34.59957843977226], [-77.38281205020203, 34.59955759856195], [-77.38244568195404, 34.599287422688676], [-77.38229498461573, 34.59934005965073], [-77.38188893949948, 34.59948566779861], [-77.38165734802286, 34.59975827152516], [-77.38149045025989, 34.59996306729952], [-77.38149588201311, 34.60014202558092], [-77.38149309434925, 34.60031922990933], [-77.38147625856756, 34.60037449283356], [-77.38142854436978, 34.60039804921245], [-77.38126305697894, 34.60050340873294], [-77.38116098659489, 34.60050489730825], [-77.38099940701954, 34.600497592079776], [-77.3808689479678, 34.600465325117725], [-77.38067395518192, 34.600470527994844], [-77.38047481541456, 34.600524080762504], [-77.38028118241543, 34.600525665337074], [-77.38027775573926, 34.60052585047534], [-77.38027301674666, 34.60052542818622], [-77.38008070398455, 34.600496026218885], [-77.37997151043514, 34.60047933184745], [-77.37978184473765, 34.60038903019276], [-77.37972362097783, 34.600357561905916], [-77.37968663272429, 34.60031144202712], [-77.37951926528469, 34.60018263595056], [-77.37929256408015, 34.60012332736286], [-77.379103218941, 34.60006225491039], [-77.37902584516637, 34.599936217038795], [-77.37868153120303, 34.59969845391686], [-77.37858516641349, 34.59962540278204], [-77.37850450804207, 34.59946572459241], [-77.37806783177929, 34.59893775597887], [-77.37818657330327, 34.598414328156935], [-77.37831539648687, 34.59805296008006], [-77.37836267518759, 34.59789289521181], [-77.37850496454388, 34.59778051145327], [-77.37913669007366, 34.597085491144924], [-77.37921448058931, 34.59698927967367], [-77.37929339597495, 34.59694209684662], [-77.37959982717095, 34.59668870465499], [-77.38008175616159, 34.59632292562941], [-77.38021839833061, 34.596227665953165], [-77.38041279994954, 34.596052471555446], [-77.38065818010693, 34.595788823554294], [-77.38077439019507, 34.59557579883291], [-77.38067973468132, 34.59537005195551], [-77.38069079511561, 34.5951632818567], [-77.38044626923367, 34.59480623834256], [-77.38041887788059, 34.59477790524214], [-77.3800822246371, 34.594480386170154], [-77.3800423200827, 34.594450605785404], [-77.37995801888968, 34.59441975585342], [-77.37984229980738, 34.594177868919786], [-77.38008231810366, 34.594114136095094], [-77.38033443010899, 34.59378790338067], [-77.38048767332636, 34.593494299222435], [-77.38062270134488, 34.593207639811176], [-77.38046556571543, 34.59264835776927], [-77.38047537527673, 34.59222400306041], [-77.3804756672459, 34.5922223389041], [-77.38047564488069, 34.59222100967992], [-77.38040429104439, 34.59180806093106], [-77.38034789039456, 34.59153078349082], [-77.38034289145678, 34.591392346340136], [-77.38035388919798, 34.59125799117416], [-77.38041752054701, 34.590957027433255], [-77.38047724060405, 34.590798538950224], [-77.38058639187982, 34.59062567595757], [-77.38057071451783, 34.59040978420001], [-77.38060815422028, 34.59008042602447], [-77.38048127681795, 34.589678190667414], [-77.38048061552384, 34.589674243078235], [-77.38048165667, 34.5896696431765], [-77.3804077748081, 34.589260176346954], [-77.38056465253216, 34.588906664468574], [-77.3807107600498, 34.58854096806734], [-77.38047782746878, 34.58848504033931], [-77.3804445310229, 34.58840575207314], [-77.38037550083668, 34.588305403882515], [-77.38047786751144, 34.588327732229175], [-77.38072673955679, 34.588208619689276], [-77.3808719410142, 34.58827657473143], [-77.38098063158469, 34.58821140072457], [-77.38126604845209, 34.588084821128284], [-77.38135508933846, 34.58794585160417], [-77.38157712652333, 34.5879074036401], [-77.38166015929684, 34.58787109343612], [-77.38174631260412, 34.58788639428594], [-77.3819011467531, 34.587936155101815], [-77.38205417451032, 34.58805385456523], [-77.38211833931118, 34.588095368089796], [-77.38218841394213, 34.58815441049337], [-77.38223671353154, 34.58837526194217], [-77.38236522755022, 34.58855349018609], [-77.38244806731427, 34.58877409106698], [-77.38249569202154, 34.58890790584727], [-77.38251192950293, 34.58895690996854], [-77.38266526010493, 34.58916891042036], [-77.38244794528578, 34.589303544774026], [-77.38226461969919, 34.58941712081579], [-77.38218968305237, 34.589574303410735], [-77.38221176225979, 34.58963702186256], [-77.38223854254362, 34.58964640361512], [-77.38229769161984, 34.58967512874425], [-77.38244788846795, 34.58955039342845], [-77.38258379871755, 34.58964922676], [-77.38257215189496, 34.58979735924808], [-77.38300238249687, 34.589986961911364], [-77.38323581911513, 34.59046501290631], [-77.38326801886184, 34.59051148562131], [-77.38328520393588, 34.59054371116032], [-77.38337716545534, 34.59068279004813], [-77.38323578485034, 34.590620788447296], [-77.38319594073167, 34.59059950988355], [-77.38258973030256, 34.59079708106282], [-77.38244756026002, 34.5909799169963], [-77.38238147540979, 34.59109853711118], [-77.38244752137962, 34.59114966828938], [-77.38266001548165, 34.59125399299276], [-77.38282811293706, 34.59145872547532], [-77.38302831346085, 34.59165314799955], [-77.38323552000847, 34.591827846219104], [-77.38341556826896, 34.59202915564687], [-77.38373008310595, 34.59217784628021], [-77.38393349530227, 34.59224558587214], [-77.38402357949026, 34.59227598497355], [-77.38429741477137, 34.59239111361603], [-77.38441762706442, 34.5924281445856], [-77.38445517097763, 34.592457439162835], [-77.38451578014049, 34.592489157214516], [-77.38481165575824, 34.59268189363466], [-77.3850026834787, 34.592637739573405], [-77.3850122154166, 34.59263365997993], [-77.38520578489856, 34.59243198165106], [-77.38522736478498, 34.59240982531514], [-77.38523231475395, 34.59235730032294], [-77.38520581894332, 34.59225744101204], [-77.38515645708479, 34.59202546569525], [-77.38509490258903, 34.591981109473494], [-77.38493329141632, 34.59187353327796], [-77.38481183391727, 34.591790263969614], [-77.38442845709287, 34.59165261318472], [-77.38442309595528, 34.59164766603854], [-77.384232032283, 34.5912563613357], [-77.38419917982034, 34.59107218060142], [-77.38430914702063, 34.590703424047895], [-77.3846091320452, 34.590352870482974], [-77.38473565956437, 34.59025222924882], [-77.38481214848997, 34.590222833021926], [-77.38493436476924, 34.59017432238649], [-77.38520624806401, 34.590066463708766], [-77.38535435165824, 34.5899804240361], [-77.38560036002761, 34.58983750637354], [-77.38568978790872, 34.589772519782684], [-77.38578566053647, 34.58953371153575], [-77.38578379525485, 34.589334400760194], [-77.38575850768821, 34.589167795224604], [-77.38560770530054, 34.58893522009862], [-77.3857241261603, 34.5886269655411], [-77.38591815320879, 34.58846589782331], [-77.38599469865585, 34.58839094217846], [-77.38612888595, 34.588290961508484], [-77.38620563038184, 34.58822711480236], [-77.38622717489301, 34.588209063597084], [-77.38633169790458, 34.58813246502683], [-77.38638880364452, 34.58814575158472], [-77.38656641775732, 34.58813923507135], [-77.38659580709832, 34.588145171440175], [-77.38678285606343, 34.58818090941906], [-77.3870744339492, 34.58818878154422], [-77.38717691076249, 34.5882043542765], [-77.38723611952376, 34.58821208987656], [-77.38737393641837, 34.58822621007607], [-77.38745145191835, 34.5882448379478], [-77.38753946345062, 34.58826608247867], [-77.3875709568716, 34.5882792961299], [-77.38767051718423, 34.588320528794604], [-77.38779869891196, 34.58837394803834], [-77.38796498997478, 34.58843714966426], [-77.38825684477455, 34.58855328191093], [-77.38832519650646, 34.58857987604321], [-77.388359024801, 34.58859303778979], [-77.38846688275268, 34.58863921324593], [-77.38858350936651, 34.58868886906513], [-77.3887530590139, 34.58876215363329], [-77.38883940030881, 34.588800819964156], [-77.38899913045078, 34.58887082072461], [-77.38909630643232, 34.58891153202302], [-77.38914709451555, 34.58893280924944], [-77.38930909302205, 34.58900067691219], [-77.38935508809072, 34.58901995321764], [-77.38937574191453, 34.589028800240214], [-77.38948401022165, 34.58907473630734], [-77.38954113214041, 34.58909964479112], [-77.38961206686714, 34.58913057644169], [-77.38974215410911, 34.58918824915881], [-77.38978846059263, 34.589339628562655], [-77.38980361601554, 34.58946224591477], [-77.38975218714103, 34.58961137109307], [-77.389665208376, 34.589757696123584], [-77.38954102092674, 34.58986635841729], [-77.38943010291366, 34.5899628945148], [-77.38919063835992, 34.590069814205435], [-77.38914692267099, 34.59008014969998], [-77.38910761850893, 34.59008653725952], [-77.38875284931862, 34.590118900345935], [-77.38842002405532, 34.590162035447406], [-77.3883061234174, 34.59018772604272], [-77.387964644009, 34.59054725778674], [-77.38785003811034, 34.59061131087117], [-77.38778125065767, 34.590744693000374], [-77.38772200240999, 34.590916448985524], [-77.38773078345663, 34.59100384716092], [-77.38779848851732, 34.59116677528281], [-77.3879645243008, 34.59128174458023], [-77.38812955807404, 34.591296848915256], [-77.38816155753092, 34.59130280340963], [-77.38817694380836, 34.59130791568624], [-77.388358590661, 34.59132517733312], [-77.38863530127594, 34.591344247938316], [-77.3887526569395, 34.59137128102801], [-77.388809468315, 34.591384367474404], [-77.38912880935534, 34.59138022570559], [-77.38914672926597, 34.591379050114675], [-77.38916285472277, 34.59137725010515], [-77.38953596143764, 34.59133560168764], [-77.38954080898743, 34.59133537689187], [-77.38954484406158, 34.59133519621169], [-77.38960374129128, 34.59133105089433], [-77.38973784746322, 34.59132204688459], [-77.38974819431992, 34.59132136905175], [-77.38990512061598, 34.5913196604844], [-77.38993488315126, 34.59132819295452], [-77.39009032028319, 34.591473172630714], [-77.39007184122381, 34.591540533530605], [-77.39004763513937, 34.59160084554753], [-77.38996141051365, 34.591704045429864], [-77.38994829100507, 34.5917204412479], [-77.3899348272087, 34.59173105285616], [-77.38988134399384, 34.591773205994535], [-77.3897377689296, 34.59187834122326], [-77.38966971607778, 34.591885072884], [-77.38954072033053, 34.59195325987706], [-77.3893077891349, 34.59197190957799], [-77.38898871015121, 34.592014444804], [-77.3887525541616, 34.5920434223101], [-77.3885433145563, 34.59210766985933], [-77.3883584587652, 34.5921619732399], [-77.38814638513361, 34.59239031883115], [-77.388068576054, 34.592513854321936], [-77.38796429209178, 34.59271367453239], [-77.38792480387878, 34.59280430662027], [-77.38787909306394, 34.59285342441009], [-77.38770998584243, 34.593028448331374], [-77.38757013879966, 34.5931542370167], [-77.38736809237146, 34.593351665278554], [-77.38727731602722, 34.59347390336359], [-77.38717593889331, 34.59384458255276], [-77.3870412359178, 34.5941028475827], [-77.38699851981767, 34.59425408082413], [-77.38700990541497, 34.594431204630176], [-77.38717578000654, 34.594779434764824], [-77.3872197973391, 34.59502384806439], [-77.38724656207549, 34.595067455660406], [-77.38729930173156, 34.595193001118936], [-77.38747004735968, 34.59556720428253], [-77.38756973075542, 34.59562468911483], [-77.38768845310716, 34.59572496233731], [-77.38793516519362, 34.59578646584994], [-77.38796379763211, 34.595793579346356], [-77.38798602382141, 34.59578603745263], [-77.38832369469749, 34.595724443586086], [-77.38835791247554, 34.595662500072265], [-77.3884725350333, 34.5954387180927], [-77.38875210825152, 34.59498457838139], [-77.38883009112924, 34.59492315235884], [-77.3893597316299, 34.59495730740207], [-77.38954029185396, 34.594966696741906], [-77.38986849913778, 34.59504302481075], [-77.3899343710206, 34.59504825135302], [-77.38999463711201, 34.595030879254594], [-77.39032848146871, 34.59489816606214], [-77.39051206537837, 34.594794392099665], [-77.39072259781656, 34.59468928860263], [-77.39085891777478, 34.59454660884903], [-77.39098259433274, 34.59438426990292], [-77.3911167640762, 34.594057953716], [-77.39125075270749, 34.59378528377055], [-77.39128441014054, 34.59363611312014], [-77.39148734170894, 34.59320771484606], [-77.39150138477099, 34.59318025470141], [-77.39150365458545, 34.59317206249576], [-77.39145935685751, 34.59276174587549], [-77.39145267595143, 34.59269986096784], [-77.39142417258503, 34.59243584129344], [-77.3913965707824, 34.592346230654236], [-77.39138354851545, 34.59227320352044], [-77.39138258486732, 34.59220982137212], [-77.39146840416907, 34.59216955857162], [-77.39151107712337, 34.59214426925912], [-77.39154223910359, 34.59214651283101], [-77.39165631706163, 34.592152293568624], [-77.39170811274059, 34.592167285438805], [-77.39181205962734, 34.59218602074692], [-77.39190514662764, 34.592206179405096], [-77.39210384961768, 34.59224423334226], [-77.39222446357813, 34.59230737133523], [-77.3922992109612, 34.59231972430993], [-77.39251315461156, 34.59241571400572], [-77.39269327443593, 34.59245118748636], [-77.39306624244036, 34.59208265589573], [-77.39308739358228, 34.5920398448372], [-77.39319719762068, 34.5919682585561], [-77.39348149964356, 34.59172486225275], [-77.39355000953921, 34.591684905166005], [-77.39379865384531, 34.59165811540637], [-77.39387558069566, 34.5916502982659], [-77.39417934531002, 34.59161762959321], [-77.39418764447537, 34.59194370275345], [-77.39400916622324, 34.59211341320714], [-77.39389774781426, 34.59219780018491], [-77.39387552952894, 34.59221060349032], [-77.39375860988521, 34.592304195325724], [-77.39356667379198, 34.5924578353936], [-77.3935136953919, 34.59250024335943], [-77.3934814208684, 34.59254643198578], [-77.3931985055155, 34.592815711188294], [-77.392952965981, 34.592826172708214], [-77.39304178055696, 34.59295810776364], [-77.39303372193746, 34.59301698824231], [-77.39291378171305, 34.59340113757437], [-77.39292560723825, 34.59364987362803], [-77.39287396809033, 34.59406116694595], [-77.39285977883765, 34.59425806662067], [-77.39283928791745, 34.59441855090749], [-77.39283079242816, 34.59453842751942], [-77.39298122956862, 34.59466512151652], [-77.39304383650315, 34.594702732298835], [-77.39325649683416, 34.594807902300985], [-77.39348119422101, 34.59493942759211], [-77.39353159239266, 34.59495602026072], [-77.39411825527199, 34.594762884010265], [-77.39426939881928, 34.59463436125855], [-77.39461447678875, 34.594376742779815], [-77.39489943440663, 34.59396389404742], [-77.39497318856115, 34.5938622792866], [-77.3950576338649, 34.59384570890269], [-77.39516433157718, 34.593810736658426], [-77.39545172448004, 34.59375192591699], [-77.39562690194096, 34.59362311447463], [-77.39568434376616, 34.59360007538205], [-77.39584582000506, 34.59356962655877], [-77.39599323675141, 34.59354037250701], [-77.3961159607458, 34.593497385796276], [-77.39623990697004, 34.593497394313694], [-77.39636969494353, 34.59346707680983], [-77.39663399233575, 34.59343970197764], [-77.39678853948315, 34.59343333538717], [-77.39685217829, 34.59344715569083], [-77.39702806953679, 34.59352602962415], [-77.39718254376263, 34.5936345669326], [-77.3972916385544, 34.59375942744759], [-77.3974221373422, 34.59382609811123], [-77.3976251306427, 34.59399529343272], [-77.3977216776718, 34.594083211187964], [-77.39781620147045, 34.594279472849514], [-77.39786701254306, 34.59438497264004], [-77.39781827260609, 34.594814321063815], [-77.39781821698901, 34.59481878064936], [-77.39781617869268, 34.59481988908086], [-77.39781231793316, 34.59482159503261], [-77.39742208096368, 34.59502796380656], [-77.39724022656836, 34.59512861970231], [-77.39703696444565, 34.595353856436475], [-77.39698720746861, 34.595741707336146], [-77.39663385538924, 34.59587599590806], [-77.39640649777485, 34.59604901305422], [-77.39614287512596, 34.5963319706448], [-77.39595863584657, 34.59648029089567], [-77.39584562085464, 34.59661623884047], [-77.39571197904274, 34.59681869565536], [-77.39564918508043, 34.59704072881924], [-77.39554186152768, 34.59726780411613], [-77.39563559358999, 34.59748049060112], [-77.39584556726604, 34.597454032604475], [-77.39598636582485, 34.59747657545223], [-77.39610039233742, 34.59746177078282], [-77.39623966873145, 34.597443687638645], [-77.39642210315516, 34.597368874134474], [-77.39663377629532, 34.59731836679691], [-77.39676484498585, 34.597232596994026], [-77.39734549138342, 34.59709005090051], [-77.3974219877685, 34.59706316298498], [-77.39749891478593, 34.59706838483206], [-77.39810313154915, 34.59701368049161], [-77.3982101853266, 34.59705749295227], [-77.39839241472679, 34.597052935553634], [-77.39878313214007, 34.59703214448044], [-77.39899838296091, 34.597030623629294], [-77.3992764592117, 34.59702865799929], [-77.39958925208771, 34.59689654066406], [-77.3996623938917, 34.59709797346103], [-77.39944510432059, 34.5971860177815], [-77.39918954764318, 34.59759076391856], [-77.39910410745946, 34.59771700839066], [-77.39899836197203, 34.597844177483324], [-77.39869800894898, 34.59818725734204], [-77.39860424604052, 34.598300352966206], [-77.39838200951564, 34.598371250322515], [-77.39821013499196, 34.59849245552405], [-77.39815077943524, 34.598525822505785], [-77.3978567284159, 34.598588334846646], [-77.397816025498, 34.5985971716975], [-77.3976533083304, 34.59866152804192], [-77.39746583447798, 34.59873588771417], [-77.3974219122356, 34.598764142076014], [-77.39734079995586, 34.59879398848014], [-77.39688585210081, 34.59904389349859], [-77.39670424624728, 34.599223001137226], [-77.39663367102509, 34.59928197929919], [-77.39643589861436, 34.59947323205812], [-77.39623954303943, 34.5996049531348], [-77.39616494320514, 34.599644999780836], [-77.39584645680698, 34.59977130071005], [-77.39584563226722, 34.599771646527266], [-77.39584542164499, 34.599771832652785], [-77.39584505341638, 34.59977189981163], [-77.39521604112993, 34.60003336639256], [-77.39505717192044, 34.600134666340224], [-77.39481491190372, 34.600344653061], [-77.39472082046119, 34.60042047272173], [-77.394663034122, 34.60045169236354], [-77.39452648294062, 34.60053334832244], [-77.39446596711132, 34.60057145520427], [-77.39443970316691, 34.600582760581375], [-77.39426890167128, 34.60066474618725], [-77.39410599210309, 34.600695971132474], [-77.39387477882633, 34.60074028769307], [-77.39359459046581, 34.6008224798056], [-77.39348065539853, 34.60081354203149], [-77.39337300865111, 34.60086121547376], [-77.3931810841596, 34.600902992732294], [-77.3930865337052, 34.60086028646723], [-77.39284077466215, 34.60089410348567], [-77.39269242076098, 34.60081385414152], [-77.39239871326137, 34.6005849645113]], [[-77.35018146212926, 34.758067532463066], [-77.35024028684602, 34.75824115892468], [-77.35028721199518, 34.758472216637024], [-77.35054395559736, 34.75965946961998], [-77.35084245548066, 34.76120598023574], [-77.34714391655056, 34.762273921859645], [-77.34671197553511, 34.76252919905802], [-77.3461843624473, 34.76143499355247], [-77.34587324862713, 34.76078975389706], [-77.34543943086894, 34.76043104063061], [-77.34497275442632, 34.76026794420203], [-77.34484666503171, 34.76009846042141], [-77.34475036745974, 34.75996901956289], [-77.34466012161671, 34.759847714446735], [-77.34456564527687, 34.75960738408225], [-77.34454505039535, 34.75954201395629], [-77.344543337809, 34.75951003818435], [-77.3445403065677, 34.75945344210362], [-77.3445303806009, 34.75926812701587], [-77.34472559119689, 34.759009019010655], [-77.34473080432761, 34.75899694960567], [-77.34474908101701, 34.7589762175686], [-77.34503018566087, 34.75861080332468], [-77.34514318550902, 34.758453010915304], [-77.3452686324758, 34.75819729011906], [-77.34543739869608, 34.75792527903057], [-77.3454929731531, 34.75774417332099], [-77.34584189328628, 34.75727729194935], [-77.34609956566304, 34.75700493660845], [-77.34638479729593, 34.75682057022469], [-77.346862099077, 34.75640384236922], [-77.34692093166345, 34.756259649115805], [-77.34709076866245, 34.75600781627138], [-77.34710968240717, 34.75598487877881], [-77.34745282222191, 34.75569930616823], [-77.34748276772694, 34.7556770881596], [-77.34750939642147, 34.75566205233214], [-77.34755650079056, 34.755649683700454], [-77.34816463813988, 34.755468679413326], [-77.34861050912572, 34.75539950828383], [-77.3488210647745, 34.75527121262246], [-77.3493743720034, 34.75479960650672], [-77.34962583290702, 34.75456318802812], [-77.34972391736682, 34.75447097089821], [-77.34978107791306, 34.75440512624872], [-77.34996674054909, 34.75404780222296], [-77.35012524294743, 34.753870524730516], [-77.35055674039673, 34.753420953924824], [-77.35062546295455, 34.7533547808849], [-77.35068822697988, 34.75330589752115], [-77.35126973549797, 34.75302869028502], [-77.35150971402737, 34.753003806502605], [-77.35157903370536, 34.75299501212256], [-77.3516833143858, 34.75301530572508], [-77.35186615186379, 34.75303767731381], [-77.35194906745735, 34.75306011955369], [-77.35214755745193, 34.75310564893784], [-77.3524089199386, 34.75323132832354], [-77.35265825158427, 34.75324062730014], [-77.3527122626269, 34.75326158063955], [-77.35272800838985, 34.75326968585895], [-77.35286766242105, 34.753339169754994], [-77.35294375204202, 34.75345230346703], [-77.3529542848407, 34.753469653740694], [-77.35295674671873, 34.75348198657892], [-77.35295885777704, 34.753506889243944], [-77.35290736231251, 34.753732454485146], [-77.35283324714518, 34.753832687537006], [-77.35269659849628, 34.75391283204474], [-77.35249129494645, 34.7540332415178], [-77.35210591707096, 34.75427430624618], [-77.35183131618462, 34.754422890973586], [-77.35131602895049, 34.75493121552564], [-77.35115573333694, 34.75510098302717], [-77.35001382909462, 34.75533678697287], [-77.34999923075094, 34.75533980153378], [-77.34998201535744, 34.755337848570555], [-77.3499469708631, 34.75535712464557], [-77.34995992228167, 34.75537824145456], [-77.34979745456434, 34.75635239192692], [-77.34989270384742, 34.75700671121892]], [[-77.29161093806087, 34.64188685022381], [-77.29201037593296, 34.641682655052165], [-77.29227255365919, 34.64151078821777], [-77.29221458422494, 34.64127889396432], [-77.29201009230147, 34.641265509493664], [-77.29147777367913, 34.641222159636584], [-77.2911937122984, 34.641530925598396]], [[-77.36370759614495, 34.547389706495736], [-77.363734763754, 34.54742839933805], [-77.36376401840235, 34.547441678340306], [-77.36420872798833, 34.54755245573686], [-77.36448908644388, 34.547552441031776], [-77.36464182505208, 34.547560070160245], [-77.36473324656993, 34.54763824886702], [-77.36486900562248, 34.54777217254957], [-77.36447345895387, 34.54823704028895], [-77.36433928672251, 34.548254705304444], [-77.3636887710106, 34.5482140459318], [-77.36330731763768, 34.548234682427434], [-77.36329566498821, 34.548235911629185], [-77.36328402541103, 34.54823805832857], [-77.36290045865704, 34.548349697660754], [-77.36267287256078, 34.548437461008184], [-77.36248574403257, 34.548373699319654], [-77.36248266099112, 34.548344923285256], [-77.36246234015563, 34.548118801341104], [-77.3625148193947, 34.548044754175294], [-77.3628063698987, 34.54800568038675], [-77.36290876181403, 34.547986256954005], [-77.36315275711718, 34.54786888530189], [-77.36330446066152, 34.54785083402389], [-77.36336666860029, 34.54778153848392], [-77.3634471451068, 34.547732142284346], [-77.3636013931672, 34.547529340034885], [-77.36367875526155, 34.54745395883952], [-77.36368460605358, 34.547439488623354]], [[-77.38840543702489, 34.565651035397714], [-77.3883813970996, 34.56603320928541], [-77.38836279482908, 34.56614879828906], [-77.38800958112506, 34.566086830024126], [-77.38798658749363, 34.56607103475848], [-77.38817733408672, 34.565438059688546], [-77.38813198135033, 34.56522004176361], [-77.3883630316603, 34.56480722187433], [-77.38837928955155, 34.5647773238356], [-77.3887300927326, 34.56473820551166], [-77.38864459407361, 34.56502503452864], [-77.38850605896553, 34.565166094049616], [-77.38846686616391, 34.5654842809632]], [[-77.39565766795864, 34.52325209950463], [-77.39566936573269, 34.52324792514513], [-77.395661276469, 34.52325633143917], [-77.39565747768492, 34.52326056932489], [-77.39565111241059, 34.523257798400415]], [[-77.40393827773562, 34.67669186993453], [-77.40452905582852, 34.67651542092402], [-77.40464310421223, 34.67660870329131], [-77.40520893490978, 34.676729525241775], [-77.4052381084683, 34.6768068350423], [-77.40524696447117, 34.676854928963735], [-77.40544515194271, 34.67716680208568], [-77.40565597773993, 34.6773984549813], [-77.40575559263706, 34.6774836374743], [-77.40611537551553, 34.677718010583966], [-77.40593126814798, 34.67785669023648], [-77.40584000199873, 34.67791198066533], [-77.40555330071507, 34.67801435777581], [-77.40546849959802, 34.67804576525383], [-77.40546503613919, 34.67804674884404], [-77.40545398666691, 34.67804565497859], [-77.40483326067078, 34.678026596762116], [-77.40438010843819, 34.67766978567454], [-77.40434276281144, 34.67762665209808], [-77.40433397445764, 34.67753804626887], [-77.40410464012032, 34.67731751826735], [-77.4037659213989, 34.6772869271698], [-77.40339887031993, 34.67765930101759], [-77.40337223814198, 34.67787614620458], [-77.40327474198328, 34.678072150912925], [-77.40352341743085, 34.67812415625105], [-77.40376199527606, 34.678761569085054], [-77.40394517354301, 34.678880376959924], [-77.40403591539598, 34.67909364298241], [-77.4043305461153, 34.6793298447009], [-77.40440764135354, 34.67938491943497], [-77.40443480011932, 34.67940230122615], [-77.40448116047153, 34.67943001759034], [-77.4050154326388, 34.679610040358995], [-77.40505418577064, 34.679619268954184], [-77.40553290688528, 34.67980820446537], [-77.40557088815548, 34.67990471329748], [-77.40570762564514, 34.68037095622897], [-77.40572116146588, 34.68062234665294], [-77.40567068307136, 34.68091715824155], [-77.40566525123509, 34.68109200456159], [-77.40558899655757, 34.681242434951905], [-77.40545932424924, 34.68139613690003], [-77.40545666737738, 34.681400060807256], [-77.40545420439295, 34.68140052535362], [-77.40526343329373, 34.68145804850579], [-77.40510880270472, 34.6815001043867], [-77.40482508400393, 34.681489147568854], [-77.40448217630859, 34.68145111019635], [-77.40433899734398, 34.68144215016417], [-77.40399813265628, 34.68134106240049], [-77.40388770076214, 34.68129111883601], [-77.40376470903479, 34.68125084787013], [-77.40331793367369, 34.68104583138472], [-77.40311126641593, 34.68093003915286], [-77.40300587585024, 34.680862279463724], [-77.40277524384038, 34.6807070763311], [-77.40235852205844, 34.68044674932575], [-77.40223422714678, 34.68036255825251], [-77.40217496227572, 34.680316196399204], [-77.40182143023912, 34.68012902052468], [-77.40174582084232, 34.680048862357836], [-77.40171937579034, 34.67992772794782], [-77.40160360702713, 34.67995989061561], [-77.40142703281575, 34.679830854919395], [-77.40131053649635, 34.67985452464767], [-77.40123733052012, 34.679814623450355], [-77.40123487888573, 34.67973073654173], [-77.40131346812588, 34.679671645744236], [-77.40138366183557, 34.67960002657709], [-77.40160014037887, 34.679492419587994], [-77.40169797958563, 34.679366016591764], [-77.4020677431248, 34.67872512397529], [-77.40213661608773, 34.67858714024164], [-77.40217469529135, 34.67857525015061], [-77.4022708945831, 34.67849086960331], [-77.40242291120121, 34.67755901958475], [-77.40242324047196, 34.677543967792516], [-77.40243033215599, 34.67753171018336], [-77.40242744063303, 34.67748337520795], [-77.40214440945648, 34.676758315554125], [-77.40182567067345, 34.676581820126856], [-77.40153736187946, 34.67613185238414], [-77.401527068445, 34.67612316206271], [-77.40148989165107, 34.67609896955582], [-77.40131174185916, 34.67580468918312], [-77.40114349663591, 34.675839769041666], [-77.40114131415702, 34.675837737502896], [-77.40114035963673, 34.67583682816845], [-77.40114062799421, 34.67583507521038], [-77.40127459794118, 34.6757440330397], [-77.40130443295618, 34.67572895607696], [-77.40145704016078, 34.675706044955945], [-77.4015969894019, 34.67592600740573], [-77.40195776771989, 34.67594351101577], [-77.40240000662217, 34.676024998291616], [-77.4028226274931, 34.67611906719955], [-77.40356869281281, 34.67644063755304]], [[-77.38864623962125, 34.710950809611894], [-77.38847998273975, 34.71162277145673], [-77.38847708768446, 34.71180339268723], [-77.38839419225557, 34.711948473213226], [-77.38819142893412, 34.71264760728715], [-77.38737422060089, 34.71237360659011], [-77.38732374103567, 34.71190669333422], [-77.38726677617156, 34.71137976791931], [-77.38735294018733, 34.71127585017379], [-77.38751306761998, 34.711253734426144], [-77.38801509306091, 34.71086221893506], [-77.38832929729317, 34.71064963032895]], [[-77.4114200520323, 34.727098946382434], [-77.4110998539004, 34.727202537595794], [-77.41089907492713, 34.72691675451463], [-77.41120476941481, 34.72684037480822]], [[-77.38323523249646, 34.65492510500713], [-77.38335245505036, 34.65488249476836], [-77.3835431806562, 34.654864295277704], [-77.38371181540657, 34.65499885835617], [-77.3836262801423, 34.65527665848528], [-77.38351844792749, 34.65529934087371], [-77.38337277232995, 34.65560762547136], [-77.38331584236074, 34.65577728897359], [-77.38332852687333, 34.655895636429506], [-77.38336470688438, 34.65600748835516], [-77.38346671887783, 34.65629863853281], [-77.38348770367035, 34.656338354528906], [-77.3835581837335, 34.65652768312301], [-77.38361472689762, 34.65666124187338], [-77.38363660388123, 34.65669727940471], [-77.38360615823375, 34.65676574019033], [-77.3835564638372, 34.656776716202685], [-77.38332755032894, 34.656972178298915], [-77.38314128537561, 34.65676543645191], [-77.38303293850008, 34.65666503251143], [-77.38296628376656, 34.656451639150376], [-77.38293673915551, 34.656371564480786], [-77.38291732478008, 34.656319536047874], [-77.38282709125255, 34.6560777179018], [-77.3827945705738, 34.65598819333911], [-77.38278695534814, 34.655970157037316], [-77.38277742078695, 34.6559420397281], [-77.38264059131701, 34.65556827897727], [-77.38263164831298, 34.655472626631074], [-77.3826502753719, 34.65535593784815], [-77.38266901287942, 34.655293255953694], [-77.38272195238537, 34.65522339318578], [-77.38287135398764, 34.655114508889284], [-77.38294126460544, 34.655055295127525], [-77.38313919137897, 34.65494562472831]], [[-77.39261622899934, 34.71063486713026], [-77.39275563986355, 34.71086047695357], [-77.3929767296234, 34.71074638123235], [-77.39330795267735, 34.7107928214747], [-77.39340353700274, 34.710836901644576], [-77.39346954823773, 34.710804154451225], [-77.39361970607162, 34.71080740629174], [-77.39373014406804, 34.71081594043241], [-77.39396446222035, 34.710865351688696], [-77.39403422389144, 34.710872693600194], [-77.39421498110354, 34.71086101678264], [-77.39448654129751, 34.710970980971084], [-77.3945954321446, 34.71086928955306], [-77.3946736314228, 34.71087839793849], [-77.39468992749781, 34.71088617748817], [-77.39471838309024, 34.71091231626711], [-77.39473317053988, 34.71109130757105], [-77.39505403328378, 34.711309352261424], [-77.39509459513496, 34.711386950565476], [-77.39514135717877, 34.71147640916897], [-77.39519037344432, 34.71157018000078], [-77.39520056225531, 34.71164020540323], [-77.39508682761858, 34.71166453741627], [-77.39491965665997, 34.711679437121646], [-77.39484940304996, 34.711796895869206], [-77.3943579224862, 34.71196757304038], [-77.39421100982794, 34.712017003311956], [-77.39381952449469, 34.71199564611609], [-77.39370174308057, 34.71201969838117], [-77.39314883533342, 34.711776288857436], [-77.39305454706044, 34.71179108219376], [-77.39247689174064, 34.71182205930504], [-77.39226671596883, 34.71183009101223], [-77.3916172158846, 34.71149762261395], [-77.39144073284385, 34.71097353959318], [-77.39137506276688, 34.71070594715564], [-77.39130628610087, 34.71055693251064], [-77.39123959062964, 34.710316111050616], [-77.39119175307131, 34.710237266537305], [-77.39125465505126, 34.71017451480154], [-77.39132577370631, 34.710264420246276], [-77.39134297942597, 34.710273013270985], [-77.39155737827764, 34.710571173334635], [-77.39184501294153, 34.71039186225647], [-77.39198892663137, 34.71045005522075], [-77.39220641889537, 34.710543654375186], [-77.3924238269242, 34.710590318246744]], [[-77.4309690356714, 34.67628076778966], [-77.43092945113247, 34.676308800695956], [-77.43092093995956, 34.67635620951029], [-77.43094103905794, 34.6763775418098], [-77.43107926814879, 34.67655375604279], [-77.43140815291959, 34.67697767874557], [-77.43145320429738, 34.67702680825286], [-77.43185831704548, 34.677079675309884], [-77.432017162045, 34.67708734256606], [-77.43213515221774, 34.67703750108069], [-77.43225004991123, 34.67697232657762], [-77.43236677084855, 34.67683897827282], [-77.43231516179699, 34.67666700975205], [-77.43230195612715, 34.67653677849624], [-77.4322793569216, 34.67627242188549], [-77.43227732314828, 34.67624863189213], [-77.43227332343012, 34.67620184561925], [-77.43187002928443, 34.67596004201467], [-77.43156775311962, 34.67585677069586]], [[-77.39899935092649, 34.57008954930736], [-77.39862039448043, 34.57005942117718], [-77.3985824985821, 34.57005640824437], [-77.3982114160082, 34.56995883797485], [-77.3980329564416, 34.56992811389246], [-77.39747608654301, 34.569872833491466], [-77.3974234794568, 34.56988765180475], [-77.39737286976363, 34.56988557434143], [-77.39734830390233, 34.569834578344036], [-77.39696766015054, 34.56953160635837], [-77.39663558703565, 34.569237950097474], [-77.39658057566987, 34.56915549427743], [-77.39653228352682, 34.569103170577], [-77.39637077838307, 34.568987300967144], [-77.39624164950592, 34.568861450497366], [-77.39618212955216, 34.568793267378396], [-77.39615314861089, 34.56873329909427], [-77.39610737141211, 34.56859517036219], [-77.39609032983631, 34.56853007628246], [-77.39624169069106, 34.56834550580648], [-77.39627243261356, 34.568324645278814], [-77.3964089333052, 34.568271822323844], [-77.39658920411081, 34.56819574161519], [-77.39663566791391, 34.56816016305988], [-77.39670156998172, 34.56815857760326], [-77.39740069655865, 34.56810404780948], [-77.39742359755579, 34.56808179737515], [-77.3974582370155, 34.56808309298561], [-77.39750468517163, 34.56811372212494], [-77.39796804321786, 34.56830924502051], [-77.39821150188024, 34.56842111422705], [-77.39858559050575, 34.56840374437343], [-77.3989994204315, 34.568591089301975], [-77.39986563280885, 34.56947133358469], [-77.39987821898399, 34.57022067286773], [-77.3998490112471, 34.570389407170204], [-77.39973886730006, 34.57039095224377], [-77.39968565229891, 34.57034645684096]], [[-77.38608271380973, 34.53013451955053], [-77.38651739411696, 34.53045167550434], [-77.38606722022004, 34.53082079485244], [-77.38573530623711, 34.53084749345115], [-77.38528189561512, 34.53083348568911], [-77.3848362420844, 34.530970204392446], [-77.38431275164338, 34.53076965717194], [-77.38529630609294, 34.53019545171085], [-77.38587981041937, 34.53017989808091]], [[-77.43981722087668, 34.6196592052686], [-77.44007032787762, 34.61925590445931], [-77.44006840392947, 34.61919159517415], [-77.43985346242519, 34.6185792323765], [-77.43957537275057, 34.61839962857559], [-77.43947544862641, 34.61824850850569], [-77.43930094162496, 34.61799824623559], [-77.43897486014944, 34.61794617039506], [-77.43876449446716, 34.617932072226125], [-77.43858779834034, 34.6178322948897], [-77.43856038204663, 34.6177346981068], [-77.43849711753953, 34.61767352204206], [-77.43859159015204, 34.61750043450727], [-77.43861722346095, 34.61745466119441], [-77.43862250102738, 34.61744672354039], [-77.43862993095941, 34.61744040206609], [-77.43864945019881, 34.617429710806505], [-77.43885933632724, 34.617318098544686], [-77.43900286806435, 34.617270128292716], [-77.43910018383748, 34.61723760403467], [-77.43945554121737, 34.61711883741562], [-77.43958076659314, 34.61707255495696], [-77.43975043412581, 34.61699815211005], [-77.44005721312584, 34.61689240008578], [-77.44055889826565, 34.616885549823174], [-77.44057540092425, 34.616864755107024], [-77.44060805038976, 34.61686406093014], [-77.44061765543108, 34.61688438650526], [-77.44062602955755, 34.616909043120984], [-77.4408822848329, 34.61744308273494], [-77.4408854780595, 34.61754653014386], [-77.44085177871096, 34.617607469344975], [-77.44085018784503, 34.61786868777685], [-77.44084683375925, 34.61791545060623], [-77.44084983913666, 34.61792593875383], [-77.44083315951582, 34.61796025518388], [-77.44072635741233, 34.61818300102595], [-77.44066455458076, 34.61834800819922], [-77.44053588525227, 34.61864124962922], [-77.4402765589458, 34.618645015488], [-77.44032438161193, 34.61903928600395], [-77.44022723624326, 34.61921117404087], [-77.4402694835677, 34.619261964151505], [-77.44026407132215, 34.61956906010907]], [[-77.40335162294292, 34.66892270028387], [-77.40363124437089, 34.66890284688408], [-77.4039859946364, 34.66914477173039], [-77.40365072805898, 34.669092292650575], [-77.40357795300055, 34.66908684685567], [-77.40342457918346, 34.669083045796135]], [[-77.35630571164596, 34.6617209367967], [-77.35627787901137, 34.66157060919051], [-77.35641700873687, 34.661680742922954], [-77.35644239189821, 34.66170216128466], [-77.35652035696226, 34.6620842526403], [-77.35679889743753, 34.66198723704168], [-77.35686979982172, 34.66206545235114], [-77.35702150085407, 34.662240385352085], [-77.35702187513388, 34.66226480991975], [-77.3569861253197, 34.66231044161383], [-77.35685359849867, 34.66225909479221], [-77.35657937132967, 34.66218548155835], [-77.35651440219942, 34.66216478902042], [-77.35638190724202, 34.66213247411508], [-77.35635253414938, 34.66197382601991]], [[-77.42818610606085, 34.748472614692716], [-77.4280745155946, 34.74829699682702], [-77.42799790827519, 34.74810471929386], [-77.42772625119882, 34.747894470499915], [-77.42754186743254, 34.74740214710169], [-77.42767611517766, 34.74727054276852], [-77.42775222624843, 34.747314414856284], [-77.4283173126337, 34.74745841214996], [-77.42844022326263, 34.74747385959586], [-77.42884519890039, 34.74768468480082], [-77.42889257889765, 34.747686411908816], [-77.42905156803869, 34.74764789385347], [-77.4290634436031, 34.74764998913371], [-77.42906723235468, 34.74765873813608], [-77.42908759877723, 34.7477067506334], [-77.42902464676378, 34.74778913189171], [-77.42896911530238, 34.747887104681936], [-77.42881996851767, 34.74820825200054], [-77.42877640226725, 34.748261440921254], [-77.42872509563033, 34.748264889411836], [-77.42840126826995, 34.748455120382985]], [[-77.41033616854219, 34.72790998512599], [-77.41022812877735, 34.72784028120883], [-77.4102196613253, 34.72779736923749], [-77.41004464615659, 34.7274704404562], [-77.40983087103629, 34.7271565303168], [-77.40981267341196, 34.72712081871158], [-77.40980615820598, 34.72709364910724], [-77.40961913422024, 34.72675517179076], [-77.40962092794447, 34.72674074967938], [-77.40963818252156, 34.726715091346186], [-77.40974942101221, 34.72657675055068], [-77.40992038522097, 34.72657448714853], [-77.40996897257497, 34.72656161147263], [-77.41001733759197, 34.72651289106088], [-77.41014491370971, 34.72665301002141], [-77.41038685496687, 34.72688140104526], [-77.41052672526973, 34.7269677202534], [-77.41078984116945, 34.72743766135173], [-77.41063669586624, 34.727653163601424], [-77.41063389870017, 34.72766268042324], [-77.41060109150628, 34.727684766445755], [-77.41036420854773, 34.72784791970014]], [[-77.34214340976055, 34.651506885520234], [-77.3421928633303, 34.651453631129506], [-77.34225942324967, 34.6514898142724], [-77.34252251057367, 34.65150076187216], [-77.34267314704053, 34.65160629706923], [-77.34283487863684, 34.65146192573212], [-77.34312946891916, 34.6516347388751], [-77.34320031961359, 34.65168712408473], [-77.34320929019545, 34.651693026822386], [-77.343556164005, 34.651864568179505], [-77.3436785703651, 34.65191213323284], [-77.34389572461427, 34.65196100120971], [-77.34402819938985, 34.65201287089035], [-77.34417735332103, 34.65207283197584], [-77.34426211983472, 34.65219091698795], [-77.34456502439288, 34.65236117533856], [-77.34449351874218, 34.65259509192214], [-77.34450853635491, 34.65279092851851], [-77.34461942179122, 34.653025501732664], [-77.34433007643315, 34.652918684731304], [-77.34386749832832, 34.653413342969586], [-77.34362441537556, 34.65316755845494], [-77.34350725611957, 34.65321405946542], [-77.34338752605323, 34.65321006613592], [-77.34318491397606, 34.65320330863548], [-77.34303467592184, 34.65318692070091], [-77.3428518393514, 34.65313916440101], [-77.34262510013541, 34.65304946968746], [-77.34254483712465, 34.65300850138679], [-77.3424795866282, 34.65288010536405], [-77.34225318632033, 34.652818455021226], [-77.34210083676086, 34.65273933584947], [-77.34206230767211, 34.652704721317726], [-77.34198990869405, 34.65257269675617], [-77.34186583728771, 34.65230969072788], [-77.3418699326557, 34.652048301501594], [-77.34178694903085, 34.65171600606807]], [[-77.33236197446452, 34.653517645143005], [-77.33244648718447, 34.653481126448135], [-77.33290642321832, 34.65304022759433], [-77.33328353443237, 34.65311943109863], [-77.33358980042502, 34.65325438855615], [-77.3336971284297, 34.653301682628054], [-77.33392026597748, 34.65340000705158], [-77.3339343164771, 34.65340619833691], [-77.3339417449149, 34.65341251197501], [-77.33415791093357, 34.65353761911362], [-77.33423839710163, 34.65401089461738], [-77.33415116475521, 34.654212317232854], [-77.334124126862, 34.65432031799876], [-77.33404485462054, 34.654497499711155], [-77.33397077119594, 34.65505597110848], [-77.33396538881755, 34.65508179070247], [-77.3339637115606, 34.65508904097471], [-77.33396107356268, 34.65510242285608], [-77.33393405841599, 34.65512863436617], [-77.33394098972992, 34.65508513793672], [-77.33392752169323, 34.65505525469875], [-77.33363247917865, 34.65457758176039], [-77.33352854349775, 34.65429773259531], [-77.33332386524292, 34.654040460096084], [-77.33308803233213, 34.653944250039594], [-77.33284299159949, 34.65384428347385], [-77.33246544842348, 34.65369025909675], [-77.33239050769544, 34.65365968594346], [-77.33235333922799, 34.65366548376633], [-77.33229781635163, 34.653622577522036]], [[-77.44217255935375, 34.74389899844201], [-77.44223438076864, 34.74395164364229], [-77.44270844418116, 34.74418442192342], [-77.44272536852141, 34.74419320338395], [-77.44249626451358, 34.74455898783357], [-77.4421033791097, 34.74445271458038], [-77.44208570817347, 34.74419916445777], [-77.4420917914109, 34.74401113586875], [-77.44204663264895, 34.74395323350907], [-77.44203055602294, 34.743798455733604]], [[-77.42701851030773, 34.625774080010785], [-77.42702454558132, 34.625558698840294], [-77.42707578088286, 34.62548439723959], [-77.42713226672902, 34.62538010101369], [-77.42714544469612, 34.625353917858014], [-77.42723386180876, 34.62531444024079], [-77.4273321016093, 34.62526439178791], [-77.42738516712424, 34.6252541516975], [-77.42740933455065, 34.62529142705887], [-77.42746832257465, 34.62543225011251], [-77.4274879985478, 34.62558553696114], [-77.42750415347176, 34.625634348244134], [-77.42751639019352, 34.625787787516686], [-77.4275419287132, 34.62595730082847], [-77.4276288787955, 34.62632746893826], [-77.42774079732874, 34.62646231270614], [-77.42803613818299, 34.626743911758105], [-77.42803891464695, 34.62674660241733], [-77.4280402631713, 34.62675119696263], [-77.42786618149381, 34.627165054765044], [-77.42779406328158, 34.62728447606901], [-77.42770997460354, 34.62749176012125], [-77.4273050996863, 34.627637171560124], [-77.42723613459029, 34.627344577308286], [-77.4267938985522, 34.62734773330757], [-77.42660429372016, 34.627294151611935], [-77.42614447539654, 34.62722718445683], [-77.42562517686048, 34.62714472953076], [-77.42551067284613, 34.62714060236246], [-77.42540259587268, 34.62712853238901], [-77.42547397359324, 34.62709179997169], [-77.42549643696695, 34.62708856298031], [-77.42551495825369, 34.627082311902086], [-77.42622383824461, 34.62673482915629], [-77.42643092147924, 34.626660414272195], [-77.4266939894643, 34.62639135189304], [-77.42674117661842, 34.626296461374075], [-77.42702617183573, 34.62592746836778]], [[-77.35770524508477, 34.66412608840495], [-77.35720224774668, 34.664554792372], [-77.35699310662795, 34.66422391769052], [-77.35727388365153, 34.66381457794409], [-77.35716583291523, 34.66371280369735], [-77.35742652764766, 34.66364303234323], [-77.35745296829644, 34.663646371320745], [-77.35747011093727, 34.66364914965706], [-77.35751296704957, 34.6636651166028], [-77.35786381921442, 34.663754592993776], [-77.35788809865784, 34.664053788279155]], [[-77.38721996802472, 34.56624278810058], [-77.3879435340534, 34.56612363233131], [-77.38766512346457, 34.56665842303722], [-77.38750333986863, 34.56666140502196]], [[-77.38784627923374, 34.52869060499545], [-77.38811527927113, 34.528752183892095], [-77.38804475457665, 34.52899076555765], [-77.38724128010318, 34.529148805640396], [-77.38755331191626, 34.5287517529925]], [[-77.33086354202955, 34.56368232669692], [-77.33090310403803, 34.56375550344779], [-77.33081966766477, 34.56373586322179], [-77.33079653270008, 34.563655883185824]], [[-77.35765181923595, 34.665067594505615], [-77.35741701210945, 34.66465307105854], [-77.3578563646763, 34.664362748242205], [-77.35783484589857, 34.66456531765925], [-77.35783843143709, 34.66459517850336], [-77.3578400726613, 34.6646494495444]], [[-77.40127594534277, 34.58082517126483], [-77.40136302800276, 34.581102908084674], [-77.40137618107089, 34.581127270313], [-77.40139252376527, 34.58113908517461], [-77.40137741257696, 34.58115676631175], [-77.40136302738391, 34.58116896359955], [-77.40133666943807, 34.581175546807025], [-77.40096900118749, 34.581407860027966], [-77.40077452791594, 34.58143781531033], [-77.40077198864792, 34.581438206441874], [-77.40076781675154, 34.58143702449246], [-77.40057497698488, 34.581414300938945], [-77.40048309128957, 34.58136932862688], [-77.40035740325686, 34.58128845463399], [-77.40029997856237, 34.58116849234161], [-77.40029263777635, 34.58099356006955], [-77.40030978550647, 34.58087075138676], [-77.4005749929565, 34.58056899746661], [-77.40068194808026, 34.58050772202367], [-77.40082602307965, 34.58052576291602], [-77.40096901241907, 34.580614341187136], [-77.40106202237062, 34.580661979654344], [-77.40116737075094, 34.58074700101641]], [[-77.43488857332571, 34.67754707934919], [-77.43483438110064, 34.6776241575422], [-77.43483226156967, 34.67770124937983], [-77.43481754269872, 34.6778543834848], [-77.43495380368262, 34.67801046060505], [-77.4351692888328, 34.67800600481368], [-77.43527609909232, 34.67800379611265], [-77.43553289287671, 34.677946272728065], [-77.43536880057387, 34.67768330518015], [-77.43535875927041, 34.6776284532342], [-77.43533035722868, 34.67759591591518], [-77.43513203288802, 34.67739428732715], [-77.43498527493381, 34.67747523384644]], [[-77.40136311060061, 34.57415774916851], [-77.4014184447653, 34.57428251265656], [-77.40144772057303, 34.574337919614955], [-77.4015117634876, 34.574488874544016], [-77.40152269465148, 34.57457969662284], [-77.4015601001418, 34.5746028083805], [-77.40160939963296, 34.57473916204356], [-77.40159497161082, 34.574778824716205], [-77.40160817746829, 34.57484548223174], [-77.40156009670352, 34.574898332512056], [-77.40151093702708, 34.574912683976166], [-77.40143952850411, 34.574975964534566], [-77.40136309844625, 34.57501840435058], [-77.40117987667556, 34.575028280163345], [-77.40109298308221, 34.57510476744588], [-77.40096910504889, 34.57499636555896], [-77.40089051681231, 34.57492759533393], [-77.4008074378057, 34.574854894908576], [-77.4005751233305, 34.57448077437741], [-77.40057278738749, 34.57446669996074], [-77.40057223105607, 34.57446426262834], [-77.40055781647649, 34.57444769153874], [-77.4005751238917, 34.57445701642736], [-77.40090378723485, 34.57392143056385], [-77.40100571288858, 34.57393770385442], [-77.40110949265735, 34.573962155513236]], [[-77.37173487356277, 34.599350404278844], [-77.3719049642885, 34.59897646168737], [-77.37180440266461, 34.59856689933332], [-77.37180459008381, 34.59856605034757], [-77.37180487817037, 34.598565692039955], [-77.3718060962936, 34.59856483169862], [-77.37180557491554, 34.59856621870637], [-77.37219892988429, 34.59873628372047], [-77.37226112388771, 34.59885811771571], [-77.37235275098615, 34.59891196422655], [-77.37270281989589, 34.59916768177281], [-77.37298700790022, 34.59916669325456], [-77.37304659404673, 34.59923658208275], [-77.37316820677395, 34.59944832503656], [-77.37330974518082, 34.59962323573992], [-77.3735500091475, 34.59983101536213], [-77.3737130380699, 34.59998970304139], [-77.37377494375585, 34.600056535229584], [-77.37393624206341, 34.600208300230214], [-77.37397194505513, 34.60023372983132], [-77.37410251661764, 34.60035815882518], [-77.37413563018201, 34.600389286629934], [-77.37416221445295, 34.60055463644075], [-77.374160183853, 34.600562131929266], [-77.37405687673603, 34.60066865647876], [-77.3739826576815, 34.600799984679696], [-77.37377457793966, 34.60117793029636], [-77.37374639810257, 34.6012282393485], [-77.37373247077811, 34.60126058400405], [-77.37357744505468, 34.601395724926576], [-77.37350930137217, 34.6014316173617], [-77.37343404589117, 34.601458021829565], [-77.37338035737442, 34.60147359262168], [-77.37319072717152, 34.601542868600276], [-77.37317258778342, 34.60154200236944], [-77.37298621583759, 34.60152496999935], [-77.37280047158238, 34.601594893691015], [-77.37231023371439, 34.6014654443279], [-77.37222852303832, 34.601444327287844], [-77.37219799810629, 34.60143306304518], [-77.37204664770678, 34.601340336934776], [-77.37175420011191, 34.601174579144015], [-77.3714099854918, 34.60076627026454], [-77.37139658141474, 34.600747921269146], [-77.37141001382656, 34.600686374987106], [-77.37153963922484, 34.600017580446405], [-77.37158848893954, 34.59987116303459], [-77.3717495592526, 34.59948264994257]], [[-77.37967873564646, 34.63268869069838], [-77.37966339027761, 34.63267287641156], [-77.37965710488868, 34.63265047963111], [-77.37967875754654, 34.63259444218998], [-77.3797626220099, 34.63256827968528], [-77.3800199667962, 34.63256436270819], [-77.38007302955872, 34.6325870561318], [-77.38008928963632, 34.63259401009059], [-77.38031335295577, 34.63257924149681], [-77.38009513869878, 34.63263449799087], [-77.38007302062226, 34.632626312375145], [-77.38006451063556, 34.632624255258555]], [[-77.3943674311039, 34.52761444500708], [-77.39439516015187, 34.52760928557951], [-77.39444722946556, 34.52755399974127], [-77.39468005966887, 34.52731530225626], [-77.39452070104048, 34.527173701461905], [-77.39447217346552, 34.527052206523784], [-77.39431555484326, 34.52707394133725], [-77.39399897952653, 34.5272001082618], [-77.39355950767276, 34.5274770098203], [-77.39399160128121, 34.52752827912583]], [[-77.3829259166112, 34.530871611415535], [-77.38320658716339, 34.530929189380814], [-77.38317184155346, 34.53109068400971], [-77.38321630197319, 34.53117262014037], [-77.3829160471127, 34.53130804759033], [-77.38272919154593, 34.53124286738167], [-77.38278637758782, 34.53107397098806], [-77.38276936444332, 34.5309922426323]], [[-77.44078461894918, 34.59666425064369], [-77.44077672961076, 34.59667878216091], [-77.44116630821375, 34.596725452683565], [-77.44129302510414, 34.596740632711644], [-77.44140597958705, 34.59675416404305], [-77.44156041957035, 34.59677266488417], [-77.44172242459497, 34.59679207173161], [-77.44184330824282, 34.5968292866008], [-77.44195454779667, 34.5968536444247], [-77.44200258902163, 34.59687433861343], [-77.44214403311524, 34.596879008330255], [-77.44251656940173, 34.59706587893326], [-77.4426855874685, 34.59672457841683], [-77.44274609593012, 34.59659066780943], [-77.44284439765038, 34.59634306096602], [-77.4428591799048, 34.596305826408106], [-77.44281628433858, 34.59624032653553], [-77.44268503404942, 34.596039912524866], [-77.44234823443155, 34.596038576766354], [-77.44233971418716, 34.59603731626532], [-77.44226968864518, 34.59603826500213], [-77.4419937503692, 34.596035505704805], [-77.44191095177126, 34.596043604943326], [-77.44156010601401, 34.59612487851567], [-77.44122936208699, 34.59612047783483], [-77.4411660196078, 34.5961234110216], [-77.44107267491421, 34.59611082159101]], [[-77.32611283866612, 34.56013777887711], [-77.32580359690058, 34.56026310812517], [-77.32582713416024, 34.560496876119984], [-77.32606896373403, 34.56051120189758], [-77.32612257426044, 34.560153548021084], [-77.32616725993918, 34.560178139522904], [-77.32612382603209, 34.560134869682784], [-77.32612125801177, 34.56013513219771]], [[-77.43133267238767, 34.50380640875102], [-77.43121223172031, 34.503637512053785], [-77.43122132451596, 34.50360914802107], [-77.43125235611267, 34.50351234638], [-77.43126252123811, 34.5034806367565], [-77.4312679583805, 34.503471470845874], [-77.43131198015695, 34.50335614095037], [-77.43164141205955, 34.503321636940555], [-77.43185511812209, 34.50325384901062], [-77.43197038982728, 34.50333841805775], [-77.43197695731766, 34.503382274029065], [-77.43206396027654, 34.50351207499513], [-77.43201730877102, 34.50365173608371], [-77.43200849244327, 34.50367812979091], [-77.43200373963741, 34.50369235868445], [-77.43198130572534, 34.50371584884174], [-77.43180311708682, 34.50389191818266], [-77.43149261294232, 34.5039256987839]], [[-77.37563182188153, 34.5616384184172], [-77.37536375887093, 34.561642642888486], [-77.37502009736347, 34.56164509811976], [-77.37496982254457, 34.561644319666726], [-77.3749327210952, 34.561643492285135], [-77.37477285547236, 34.56164186065772], [-77.37473631722096, 34.56163180920958], [-77.37462312096903, 34.56159723236518], [-77.37457592101649, 34.56154473820577], [-77.3744438938364, 34.56146166789171], [-77.37444549810154, 34.5613897761846], [-77.37444641428738, 34.561249023977425], [-77.37444503856543, 34.56110800118525], [-77.37457616424646, 34.560839549637414], [-77.37468564158542, 34.560483284889365], [-77.3748017394062, 34.56034869721323], [-77.37497033506133, 34.560138380794825], [-77.37515070369349, 34.56006821541442], [-77.37536431969247, 34.559971998017545], [-77.37560060688192, 34.5596389904727], [-77.37592052327132, 34.5593383427144], [-77.37606126889958, 34.55921981706857], [-77.37615248593644, 34.55902216474222], [-77.37635212992592, 34.5586420541663], [-77.37646261248621, 34.55841109257121], [-77.3765466876526, 34.55815983099913], [-77.37670002622653, 34.558117564858705], [-77.3769406074062, 34.55815756925598], [-77.37757935231254, 34.5582501383966], [-77.37766472668336, 34.55830645807126], [-77.37772837184124, 34.55839473378076], [-77.37781256324408, 34.558307236405504], [-77.37823968266736, 34.55845298201356], [-77.37831120480479, 34.55877294693148], [-77.37812811328831, 34.55902016854071], [-77.37795116501468, 34.559654257628736], [-77.37780984680927, 34.5599151684481], [-77.37776643171354, 34.55996296706113], [-77.37772785825715, 34.56005964936675], [-77.37752568389693, 34.56058753008115], [-77.37745251906138, 34.56081579633196], [-77.37733363897519, 34.560992981168226], [-77.37717320783977, 34.56110774834074], [-77.37712254984075, 34.56128791655101], [-77.37704922895992, 34.561416666098125], [-77.37700223397465, 34.56151753847732], [-77.37693953013388, 34.56155081585031], [-77.37675228947704, 34.56156404889708], [-77.37673468899288, 34.561564578963335], [-77.37654560956143, 34.561505875913745], [-77.37642667120717, 34.561516389652006], [-77.37615164778549, 34.56158847534016], [-77.37592600977112, 34.56164176247905], [-77.37575769576821, 34.56163895037368]], [[-77.38047925946066, 34.72887453908541], [-77.38066647650696, 34.72878032826108], [-77.38093972649187, 34.72873653323881], [-77.38117123709287, 34.72869957220582], [-77.38162615418743, 34.728976777965556], [-77.38169212664755, 34.729022991765085], [-77.38140898488402, 34.7292464390416], [-77.38133179731602, 34.72925132529464], [-77.38122467637803, 34.729319205309515], [-77.38099426358431, 34.72931376732909], [-77.38099311201063, 34.7293136268823], [-77.38099261988883, 34.729313862178145], [-77.38099107793872, 34.729313692141055], [-77.38083782581822, 34.72929632004931], [-77.38074461123746, 34.72928242249369], [-77.3806788662769, 34.72929167606512], [-77.38044751403413, 34.72917067818177], [-77.38039177598903, 34.72917611439357], [-77.38017450847728, 34.72902789417741]], [[-77.3474299659354, 34.65498157284575], [-77.34773370922181, 34.655125171174454], [-77.34784770325832, 34.655140237896944], [-77.3478946238154, 34.65512924720014], [-77.34797548750903, 34.65515712706449], [-77.34806664487023, 34.65518855598372], [-77.34809911645598, 34.655216601254956], [-77.34813351416051, 34.655247242278634], [-77.34820127312202, 34.65530141242416], [-77.34826544798555, 34.655427750851615], [-77.34818806885983, 34.65545075177309], [-77.34812198943072, 34.65546378955156], [-77.34810192974427, 34.65546257925306], [-77.34798173433511, 34.65544901902238], [-77.34795358234207, 34.65542245632264], [-77.34790465773406, 34.655424613210215], [-77.34778481951955, 34.65537935280902], [-77.34773122193563, 34.65537087037951]], [[-77.44394200182201, 34.73346341129448], [-77.4439100768981, 34.73346102670836], [-77.44387446258779, 34.73344617674139], [-77.4438402237101, 34.73339941638226], [-77.44388318549046, 34.73336735005553], [-77.44394433847171, 34.733342593720266], [-77.44405298664688, 34.73337167967577], [-77.44399388404273, 34.7334530996748]], [[-77.4007488282007, 34.670645547214114], [-77.40078080676035, 34.67038235653226], [-77.40093885401005, 34.67056628225651], [-77.40098656004436, 34.67071904802214]], [[-77.39076116099392, 34.622961724921836], [-77.3908643565039, 34.623148191407935], [-77.39068474529185, 34.62305502852317], [-77.39061715770492, 34.623027576944956], [-77.39059080171707, 34.62289298734436], [-77.39071929314795, 34.62295212880511]], [[-77.46172558118695, 34.70722559957337], [-77.46173493762413, 34.7072097881193], [-77.46177769587977, 34.707137530386596], [-77.46175418214868, 34.70723222954734], [-77.46175300855391, 34.707235180507794], [-77.46175210771244, 34.70723782874964], [-77.46170540646905, 34.70738767180601], [-77.46171098278468, 34.70725026912947]], [[-77.44029049288861, 34.60257700411922], [-77.44024740291111, 34.6026772128727], [-77.44073532399885, 34.60270050562922], [-77.44048971023591, 34.60238097542061], [-77.44031592001457, 34.60255370152678]], [[-77.37805830867038, 34.62743289644808], [-77.37813265529243, 34.62740602548264], [-77.37824436164914, 34.62735798653404], [-77.37844727326642, 34.62727491716926], [-77.37838623780314, 34.627032620608745], [-77.37820899621272, 34.627052581096734], [-77.37810301139746, 34.62731866702151], [-77.37807995056102, 34.62735684671899]], [[-77.42451706193788, 34.68377325941435], [-77.42424086959304, 34.68405438353968], [-77.42472689066409, 34.684116355637286], [-77.42473007962253, 34.6838502300545]], [[-77.43256102096485, 34.730855768115084], [-77.43259597633323, 34.73089792566884], [-77.4325654755832, 34.73095493930403], [-77.43254088411419, 34.730988492907755], [-77.43242659648143, 34.731047985248956], [-77.43238725198101, 34.73103764739416], [-77.43233372121946, 34.73100733454833], [-77.4323287446469, 34.73094206054038], [-77.43232168273107, 34.73091188500305], [-77.4323287654757, 34.73089780384379], [-77.43237225803753, 34.73082620975413], [-77.4324499600372, 34.730816953842634], [-77.43247417075686, 34.730805769612246], [-77.43249678688646, 34.730805473256574], [-77.4325195902759, 34.73081819459611]], [[-77.33144885917163, 34.65694158540054], [-77.33149692874377, 34.65678989550124], [-77.33168415250067, 34.656711739508324], [-77.33172076148877, 34.656998865943656], [-77.33173589079566, 34.65707559771822], [-77.33165551703684, 34.65717337227231], [-77.33154598796656, 34.65716935361625], [-77.3314983749565, 34.65718807684163], [-77.33135395157335, 34.65712798617281]], [[-77.40125246348309, 34.673797272029844], [-77.4012474467521, 34.673777522683636], [-77.40127161253191, 34.67373116563439], [-77.40138115752936, 34.673824330114506]], [[-77.39490674075489, 34.73298599307717], [-77.39474284033415, 34.732956762375785], [-77.3947814286797, 34.73278107865329], [-77.3948927588847, 34.73289427817883]], [[-77.43818719354381, 34.67756366926927], [-77.43815874762552, 34.677606676865786], [-77.4381856152101, 34.6776362020272], [-77.43823276636635, 34.677632560459884], [-77.43822848542797, 34.67758589253771], [-77.43823965073558, 34.67754176932036], [-77.43820562514698, 34.6775485224217]], [[-77.3868092496589, 34.621488061327156], [-77.38682530012682, 34.62145132794089], [-77.38697441573865, 34.62137409506131], [-77.38715982226364, 34.621390512220685], [-77.38717152141781, 34.62138881434389], [-77.38717567544035, 34.621396351742725], [-77.3871761507627, 34.621400758323894], [-77.38717465886407, 34.62140435487783], [-77.38717151747048, 34.62141504548309], [-77.38712787603248, 34.62157302402738], [-77.3870515610811, 34.6216309993886], [-77.38700073942351, 34.6216667228979], [-77.38690483136068, 34.621727031295144]], [[-77.42922274142398, 34.69949968590538], [-77.42934598059277, 34.69952067260378], [-77.42936667436777, 34.699536737358166], [-77.42945181757354, 34.699579786774606], [-77.42933301212771, 34.69965306095099]], [[-77.42524718030447, 34.57541020844774], [-77.42532081135164, 34.57534838613829], [-77.42525764008451, 34.57529502769743], [-77.42511534218698, 34.57528722045749], [-77.4250817615778, 34.57551004448659]], [[-77.3802809230663, 34.58799341417739], [-77.38028875244811, 34.58800363908176], [-77.38028091049173, 34.58804231085119], [-77.38026958083482, 34.588006402074164]], [[-77.37622476124768, 34.631156394685796], [-77.37621899247577, 34.6311412697338], [-77.37628046443419, 34.6310884081124], [-77.37623909814124, 34.63116003009539]], [[-77.39030714804059, 34.62285998440238], [-77.39032508772702, 34.62279814674264], [-77.39041678966532, 34.6228441783242], [-77.39032507780848, 34.62288706332807]], [[-77.41466178146155, 34.620195607697255], [-77.41476621460421, 34.620134072411524], [-77.41483586258146, 34.62009545304056], [-77.41486475616784, 34.62008134119766], [-77.41490516677078, 34.62009784601369], [-77.41496331525268, 34.6201253794354], [-77.41498102041452, 34.62013045024944], [-77.41499675935799, 34.620183256338045], [-77.41497852585066, 34.6203621696064], [-77.41496336707137, 34.620409334500344], [-77.41480852584243, 34.620386712760435], [-77.4147727249484, 34.620384918036194], [-77.41476625882059, 34.620379577967]], [[-77.38574394778234, 34.56789952300881], [-77.3856047303527, 34.567978877370834], [-77.38557661428926, 34.567923650752185], [-77.38560475225104, 34.56787350670065]], [[-77.45605819284728, 34.60140425774103], [-77.45605856903191, 34.60140327727398], [-77.456069287354, 34.60125329375676], [-77.45624108949646, 34.60111688078349], [-77.45644309563787, 34.60107439284592], [-77.45652759873002, 34.60105661923807], [-77.4565101752064, 34.60109786298363], [-77.45650817378007, 34.60113240112996], [-77.4564687332089, 34.60128626784348], [-77.4563876681248, 34.601364690643884], [-77.45638414923833, 34.6014027138235], [-77.45633396911316, 34.60145605468489], [-77.45626903808963, 34.60147802941752], [-77.45610635033374, 34.60157180677243]], [[-77.38698661024165, 34.59659973745775], [-77.3870179297155, 34.59675609607525], [-77.38712620465226, 34.59673002314992], [-77.38713582741602, 34.59661211306308]]]]}, "type": "Feature", "id": "demo11", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.20203171647525, 34.65466781624104], [-77.20409560766348, 34.655121261691065], [-77.20515414884336, 34.655497925079985], [-77.2101347417707, 34.65652576212924], [-77.21045273066655, 34.656614572094774], [-77.21443563656702, 34.657906685222244], [-77.21573736478598, 34.65879138570572], [-77.21589380281844, 34.65892969576174], [-77.21642471404421, 34.66010201089861], [-77.21677302804268, 34.66088451051831], [-77.21723226889378, 34.66273889109321], [-77.21895886229015, 34.66482792581185], [-77.21926760984368, 34.665145694244124], [-77.22064420122221, 34.66734130719468], [-77.22321513801822, 34.66893454762147], [-77.22390809884605, 34.669310684866076], [-77.22835530691684, 34.67033647034867], [-77.22957530367506, 34.67145057560633], [-77.23371658400892, 34.6723216748089], [-77.23683658270456, 34.670444925066406], [-77.23723088447242, 34.670194510997995], [-77.2372308880662, 34.67000009709456], [-77.23718991507133, 34.66974760353058], [-77.23694492769744, 34.66712486018237], [-77.23683113153773, 34.66623683034738], [-77.23321904070211, 34.66426035578315], [-77.23052172400651, 34.663648582047614], [-77.2316916726957, 34.66206113246462], [-77.23046733229603, 34.66073003495915], [-77.23022831371637, 34.660060422852446], [-77.22933830898091, 34.658596188900766], [-77.22913860635327, 34.658287925161076], [-77.22904908837786, 34.658082060432704], [-77.22899626410819, 34.657606770456965], [-77.22892556111576, 34.65542862495063], [-77.22886742220429, 34.65429687367853], [-77.2287708401003, 34.6525475575477], [-77.22874798484004, 34.652402079173164], [-77.22874758642173, 34.652126066700504], [-77.22897503509691, 34.65053452914984], [-77.22912625875071, 34.64947569891706], [-77.22924133456614, 34.6486701381551], [-77.22941426468779, 34.64745923264564], [-77.230043586526, 34.646847955877575], [-77.23110803590814, 34.645795584512726], [-77.23290903187963, 34.643303012431026], [-77.23387449771786, 34.64182202327741], [-77.23372783661014, 34.640775834534125], [-77.23311405145537, 34.63954837662839], [-77.2328877772646, 34.63925207645882], [-77.23267953731681, 34.638679324457264], [-77.23171558348596, 34.636751529004485], [-77.23115124159793, 34.63562278254417], [-77.23047767934156, 34.63427557108058], [-77.23105139076571, 34.633136308655786], [-77.23209202815019, 34.63192613108996], [-77.23403539700038, 34.630530498325385], [-77.23686969799586, 34.62853195288804], [-77.23807817337031, 34.62802107093906], [-77.24219075005334, 34.62726434004532], [-77.24584526932418, 34.62600838426026], [-77.24719167654787, 34.62557424250927], [-77.24997403610135, 34.62366744608849], [-77.25093305813927, 34.62209798895861], [-77.25168982786661, 34.620460841245446], [-77.25309799232497, 34.61849763141419], [-77.25398517092688, 34.61671708517373], [-77.25399873000556, 34.61668318946636], [-77.25406343511352, 34.61663328270703], [-77.25560242755304, 34.61552587984106], [-77.25609473188322, 34.614962731574394], [-77.25692988203792, 34.61407702361939], [-77.25941395734566, 34.61253203466211], [-77.26160200286218, 34.613811109551236], [-77.26202962117111, 34.61402880907225], [-77.26411578017874, 34.61559349814398], [-77.26432962120904, 34.61572918394797], [-77.26450754540994, 34.61579788579719], [-77.2646389091382, 34.615865423518805], [-77.26540463377083, 34.61639100469779], [-77.26629135746651, 34.61685687855149], [-77.26740730897397, 34.61690729864359], [-77.26928185680717, 34.6155309772736], [-77.26965917462155, 34.615366071750046], [-77.27010286642412, 34.61487774822363], [-77.27269591669345, 34.612525331342184], [-77.27392443521666, 34.611092471622534], [-77.27594566197284, 34.60732744326129], [-77.27629688966209, 34.60520865880018], [-77.27656515680786, 34.60386701234898], [-77.27674685299414, 34.60295844776735], [-77.27723312933196, 34.602039563313355], [-77.2777097618019, 34.60118797254289], [-77.27873178956966, 34.600194917539255], [-77.28070333288942, 34.59864580720088], [-77.28158825929181, 34.59822017373277], [-77.2829292772148, 34.59771992133109], [-77.28638792901944, 34.59662393436952], [-77.28914059328478, 34.59585301915072], [-77.29115138955221, 34.59484762611161], [-77.2928623225207, 34.59399214417397], [-77.2933745607627, 34.59316796536332], [-77.29406978249322, 34.59134429747327], [-77.29433331693428, 34.59002654289663], [-77.29498194389187, 34.58841299892151], [-77.29817347077679, 34.58591176390061], [-77.29931533746496, 34.58449227059324], [-77.29956102204639, 34.584233139348314], [-77.30039137437812, 34.58372686762867], [-77.3038137872866, 34.58139730656876], [-77.30627412367416, 34.57982901590526], [-77.30916238075831, 34.57866229190482], [-77.31518489624592, 34.574867986052155], [-77.31536791789571, 34.574730719962766], [-77.31547100901332, 34.574653403471586], [-77.31855190913726, 34.57090748523697], [-77.31862697133995, 34.57078665333151], [-77.32016194010271, 34.56736072543893], [-77.32063335028307, 34.56605361538617], [-77.321784073908, 34.56545556751627], [-77.32285047773311, 34.564726649754675], [-77.32483882814391, 34.56339914388302], [-77.32493778467196, 34.5633206418291], [-77.32496318530691, 34.56330207370142], [-77.32500743481435, 34.56326836196555], [-77.32581344041381, 34.56239711575442], [-77.32582788626915, 34.5623014031697], [-77.32651502735605, 34.56176638306448], [-77.32679646971108, 34.56161629843805], [-77.32701740348344, 34.56158926186204], [-77.32730311772528, 34.561547972497905], [-77.32773682618787, 34.56155968719787], [-77.32809085038255, 34.561721447286885], [-77.32823988234156, 34.5617941201803], [-77.32848464854442, 34.56188541069578], [-77.32850837428141, 34.56191621066099], [-77.32848450985723, 34.56204010771008], [-77.3284415271723, 34.562304289518856], [-77.32839958706953, 34.56235638179871], [-77.32808991734368, 34.56275685352677], [-77.32805523180303, 34.56279306282994], [-77.32802860678797, 34.562834232465796], [-77.32801076730826, 34.56292193007129], [-77.32792467178668, 34.56369824202923], [-77.32801809850234, 34.56376123532078], [-77.32808897002165, 34.56380902009273], [-77.3285183150325, 34.56399914356216], [-77.32873282222067, 34.56443117458064], [-77.32884254092276, 34.565228840756575], [-77.32885056442663, 34.565263330355954], [-77.32885144720912, 34.56528919018778], [-77.32887552143124, 34.565335524968845], [-77.32912234964495, 34.56580691029996], [-77.32954877259607, 34.566012061673334], [-77.32960888763326, 34.566061524954776], [-77.32966276808834, 34.56610566005186], [-77.33032671420804, 34.56688220684326], [-77.33044973677423, 34.567212294994555], [-77.33056513902187, 34.56756413957227], [-77.33069482840332, 34.56812960970444], [-77.33079135793608, 34.56838070215772], [-77.33085895601793, 34.56877763633692], [-77.33085044551648, 34.56880549276534], [-77.33082759849829, 34.568815897468006], [-77.33044819580854, 34.56898601161593], [-77.33023822478226, 34.56908310963791], [-77.32966102350186, 34.56939100003446], [-77.32965988185333, 34.569391248832616], [-77.32965908118291, 34.56939164674383], [-77.32965710082358, 34.56939279374233], [-77.32941111739032, 34.56958480771137], [-77.32943382534259, 34.56966820763017], [-77.3295342146493, 34.56983499150825], [-77.32965931852402, 34.570033537630145], [-77.32973219577188, 34.57015243501284], [-77.32977621922073, 34.57022474947196], [-77.32992439263194, 34.57048951436209], [-77.329998038231, 34.57061740861551], [-77.32999101892271, 34.570684918398314], [-77.32999422057739, 34.57104249436953], [-77.32995835423522, 34.57137113129402], [-77.32979621115626, 34.571920026543374], [-77.3296573688582, 34.57225896193374], [-77.32942852748175, 34.5725756596214], [-77.32926303633994, 34.57264276497834], [-77.32910705190983, 34.57286813983371], [-77.3290036885609, 34.57302844667418], [-77.32898613484593, 34.57318336722746], [-77.32917439288676, 34.573282999786656], [-77.32922813272371, 34.57331225126356], [-77.32932483539966, 34.57332861897394], [-77.32965654331838, 34.57320241819198], [-77.33003227231669, 34.573139967662044], [-77.33044460886916, 34.5731245704786], [-77.33058526456401, 34.57335300659149], [-77.33075359234971, 34.57348058687266], [-77.3310497820863, 34.57363454187652], [-77.33123206224828, 34.57376008254064], [-77.3314933476079, 34.57394164166758], [-77.33184468613567, 34.57417284861132], [-77.33201962251157, 34.574283327850786], [-77.33238933664123, 34.57454504037547], [-77.33241340686351, 34.57454426887895], [-77.33252549810476, 34.574620381243626], [-77.33280724280363, 34.57474647371777], [-77.33284502920577, 34.57483734993009], [-77.33286874697414, 34.57487473742785], [-77.33298078052422, 34.57504588882243], [-77.3331311165738, 34.575261564836474], [-77.33314369756773, 34.5753212523107], [-77.33317189891112, 34.57564942672489], [-77.33316751000135, 34.5756808730593], [-77.33315016935822, 34.57605403813171], [-77.33280607335118, 34.57614642610632], [-77.3324473795633, 34.57624706450142], [-77.33236983917709, 34.576265448088016], [-77.33201791196547, 34.57630786227827], [-77.3316568278629, 34.57635806554416], [-77.33122963457735, 34.576601281574284], [-77.33067163162907, 34.576888669710854], [-77.33049553864718, 34.57697243375881], [-77.33044121526216, 34.57705251385623], [-77.3300035712738, 34.57783375215637], [-77.32986877231674, 34.57808638167019], [-77.32965160789625, 34.578857588227436], [-77.3293100130335, 34.57963156657289], [-77.32965065689152, 34.57995005063309], [-77.3311054412649, 34.57950469271661], [-77.33122713401517, 34.579534663875194], [-77.3314240085796, 34.579539892229164], [-77.33201528939318, 34.57941825004448], [-77.3325695542606, 34.579415025076884], [-77.3328033031547, 34.579469120508], [-77.33298686944237, 34.57930077875743], [-77.33359158031611, 34.57920054811701], [-77.3336881082467, 34.579106277923394], [-77.33424025434289, 34.57907327785901], [-77.33437969731783, 34.57912233004411], [-77.33456395203531, 34.57907494538142], [-77.33516787702084, 34.57896395535185], [-77.33528618632471, 34.578900061688515], [-77.3357746758719, 34.578897768915105], [-77.33595591034319, 34.57898556421546], [-77.33651438733108, 34.57919799240565], [-77.33674374499364, 34.57926015024081], [-77.33683931609106, 34.57929545177045], [-77.33699160533217, 34.579376560499874], [-77.33753147945691, 34.57967029399769], [-77.33792772144328, 34.57966413570021], [-77.33872932511164, 34.5799758087866], [-77.33894144414634, 34.580123950929355], [-77.3394443250751, 34.580236271042516], [-77.3406836293608, 34.579769531426194], [-77.34133412439886, 34.58059790594326], [-77.34278786641174, 34.581090378439406], [-77.34350777125866, 34.58133914683459], [-77.34383467981102, 34.58144498132786], [-77.34453611162122, 34.5815947872729], [-77.34698647991203, 34.58217255669122], [-77.34856272602073, 34.58195793921488], [-77.35013857911903, 34.58249959903703], [-77.35254102991733, 34.58227567005416], [-77.35329097202978, 34.58235841753792], [-77.35354534960656, 34.582664969984734], [-77.35625554388753, 34.58234694182521], [-77.35644327434476, 34.582353808236086], [-77.3565844624096, 34.58234975491979], [-77.35801951797585, 34.58217317146508], [-77.35817076861805, 34.582110626671955], [-77.35880766047265, 34.58203716054952], [-77.35902711865893, 34.58191390478351], [-77.35935728212914, 34.581845742941276], [-77.35959579826104, 34.58190483787346], [-77.35988430094301, 34.581716154686504], [-77.36036165803783, 34.581958181634704], [-77.36010609502311, 34.582545137317], [-77.3602853223899, 34.58292390318464], [-77.36031013359514, 34.58366380984778], [-77.36042465466399, 34.584451117438746], [-77.36042957695797, 34.58449572453774], [-77.36042944515007, 34.58454627099308], [-77.36058158837398, 34.58510819807757], [-77.36076514846573, 34.585296523230355], [-77.360925608254, 34.58553690091388], [-77.36117002893684, 34.58580132752605], [-77.3616677299409, 34.58632830084532], [-77.36195775785038, 34.58658734381873], [-77.36217005636558, 34.586792484921695], [-77.36254384717834, 34.58695614176284], [-77.36274564372667, 34.587070331047315], [-77.36280259196603, 34.58712597364886], [-77.36282695631611, 34.58745921887646], [-77.362856811661, 34.58754272185868], [-77.36274535027572, 34.587697457960175], [-77.36265861256929, 34.58766472278735], [-77.36235125890295, 34.58776112075337], [-77.36207525075, 34.58778244167135], [-77.36195717588193, 34.58780590461118], [-77.36177315344256, 34.58789694803589], [-77.36145730132542, 34.58805488733763], [-77.36116877625379, 34.588372768018736], [-77.36107050163174, 34.58854320597419], [-77.36091138375852, 34.588671900292155], [-77.36038028489395, 34.589103009908314], [-77.36004033493273, 34.58928024015532], [-77.35959189513376, 34.589604828848216], [-77.35849224802463, 34.59020448025279], [-77.35801515708066, 34.59047297056068], [-77.3577947500014, 34.59058132437188], [-77.35756177051844, 34.591340197585744], [-77.35825929822069, 34.59245005680321], [-77.35958940875922, 34.594554315145004], [-77.3601512451265, 34.59496868007238], [-77.36089923133869, 34.59546649560461], [-77.36095825007516, 34.59693385209893], [-77.36209467995647, 34.59869084495411], [-77.36152324277612, 34.600083396218736], [-77.36144335865207, 34.60078504315065], [-77.36185034045022, 34.602122446713025], [-77.36140705627903, 34.603619905016785], [-77.3612910562019, 34.60390117370442], [-77.3612823523165, 34.60403287329812], [-77.36165142829995, 34.60554751463369], [-77.36195327824528, 34.606347975192875], [-77.36195741842661, 34.6063622470461], [-77.36198074456017, 34.607198327140324], [-77.36224472840739, 34.60768963848828], [-77.36242989619632, 34.6079827851455], [-77.36255584809649, 34.60815862106357], [-77.36255798918378, 34.60862202240864], [-77.3625113165805, 34.60882017329509], [-77.3624297268909, 34.60916123760836], [-77.36240580753375, 34.60925991492563], [-77.36236898341481, 34.609295088119794], [-77.3623412428881, 34.60930852765538], [-77.36227722623796, 34.60934735591934], [-77.36194702129181, 34.60943431174158], [-77.36182567393713, 34.60963737036185], [-77.36171466341611, 34.60978395031796], [-77.36146473023535, 34.61014991689103], [-77.36137621910878, 34.61044696233257], [-77.3613484779381, 34.61068576344536], [-77.36136340941106, 34.61090485591072], [-77.36140037902635, 34.611266157034066], [-77.3616901817787, 34.611485688164045], [-77.3618352719079, 34.61158409896303], [-77.36194580610503, 34.61207054740002], [-77.36215580311656, 34.612041610179574], [-77.36200231083367, 34.612289869997596], [-77.36199394158929, 34.61234305448712], [-77.36194564670237, 34.612417069676326], [-77.36159445692306, 34.612773126931415], [-77.36156730788296, 34.612794283168576], [-77.36152444540403, 34.61281211114449], [-77.36115703117763, 34.61296888221671], [-77.36085504305584, 34.61278034750925], [-77.3607629607261, 34.61273519826214], [-77.36038761285697, 34.61252226932877], [-77.36037650288942, 34.612515664113744], [-77.36036889000066, 34.612506696511396], [-77.36033457633417, 34.61249293737475], [-77.359907027295, 34.61223991956358], [-77.3597777257985, 34.612185490304476], [-77.35958078811274, 34.611981794151546], [-77.35947396150723, 34.61191974546304], [-77.35945192983691, 34.61180782469337], [-77.35941841811794, 34.61163758283614], [-77.35950033220874, 34.61103890711698], [-77.35952673369452, 34.61094795461372], [-77.35955924070215, 34.61091950892669], [-77.35958131965226, 34.610894483307355], [-77.35984020408905, 34.610624143934444], [-77.35997569034232, 34.61048349401007], [-77.35998819011827, 34.610470447078654], [-77.36002095757358, 34.61040355966299], [-77.36022308449242, 34.60999863136192], [-77.35958210457227, 34.60929197379722], [-77.35955447055719, 34.609275526314384], [-77.35938124056108, 34.60927068354681], [-77.35879383332187, 34.60917832531356], [-77.35830613142033, 34.609101640918276], [-77.35800563023643, 34.608934819225965], [-77.35711395142428, 34.60885920951605], [-77.35642923460482, 34.608453214118576], [-77.35441790410398, 34.6087546537011], [-77.3532761719194, 34.60806125995098], [-77.352128589804, 34.609078775397876], [-77.35198897124211, 34.61033430339626], [-77.3518290328027, 34.61191355671498], [-77.35163998025223, 34.61378089132788], [-77.35148838735546, 34.61527802807508], [-77.35146548142953, 34.61550419362433], [-77.35145099348905, 34.61576910853694], [-77.35169478255654, 34.61620532202209], [-77.35236136862888, 34.61707351735101], [-77.35169393078868, 34.61767470741508], [-77.35096130334387, 34.61818439226495], [-77.35011661345598, 34.618505650773365], [-77.34928487461204, 34.61841181789885], [-77.34853993939761, 34.618238283173895], [-77.34716197180629, 34.617821319180855], [-77.34703339683371, 34.61776442987935], [-77.34696343931607, 34.61771227722667], [-77.34669160951438, 34.617596116223396], [-77.34410362726584, 34.616359821845165], [-77.34305001992863, 34.61641522122669], [-77.34197510140555, 34.615860481315025], [-77.34137675473657, 34.61553064033227], [-77.34107863168967, 34.61572709471085], [-77.33973642835207, 34.61643875196943], [-77.33902048826606, 34.61654634437637], [-77.33806286143613, 34.61710716061557], [-77.3366378248688, 34.617430792915876], [-77.33614129416648, 34.61841924011192], [-77.33417151436184, 34.617899046865176], [-77.3322979671166, 34.6193386229363], [-77.331915011393, 34.61941237722796], [-77.33153462550207, 34.61945499517195], [-77.33102194867692, 34.6200381755567], [-77.32812672276319, 34.62161046699587], [-77.32772725757437, 34.62406036008521], [-77.32407405189358, 34.62774307782328], [-77.32492442677686, 34.62929713841628], [-77.3234868843035, 34.628448583268806], [-77.32284716687465, 34.62886483867736], [-77.31920450834502, 34.62929325094356], [-77.3187562307362, 34.630395248781184], [-77.31778324688052, 34.63063527386901], [-77.31813030450984, 34.63193392956746], [-77.31873745489807, 34.63240779952978], [-77.31931058872303, 34.633158107738474], [-77.31943196322123, 34.633443438009536], [-77.31946580454863, 34.63354189834212], [-77.31937769137905, 34.63349252623601], [-77.31918932924418, 34.633808640420995], [-77.31888788914279, 34.63424202407614], [-77.31862788257143, 34.63355366684693], [-77.31829739941112, 34.633278603094766], [-77.31804320084467, 34.63322284798485], [-77.31803508310253, 34.633212942337565], [-77.31801215829373, 34.633185135940124], [-77.31788025241377, 34.63295656435544], [-77.3177222844324, 34.632833833883666], [-77.31762000524719, 34.63270897319394], [-77.31752759636386, 34.632506915539885], [-77.31738122210686, 34.63226202189345], [-77.3177030192154, 34.63199250257191], [-77.31704378269538, 34.63143231942526], [-77.316986696654, 34.63128230092053], [-77.31651497153122, 34.630785336510705], [-77.31697258428446, 34.63040468229546], [-77.31618486045832, 34.630341910694774], [-77.31614248674619, 34.63043735742441], [-77.31514020345014, 34.63034629603296], [-77.31491257779354, 34.63038201955799], [-77.31476871945011, 34.63048884513249], [-77.31460638670026, 34.630451270820316], [-77.31453912194786, 34.63038824879722], [-77.31449218893337, 34.63023049700965], [-77.31459226698448, 34.62988696737623], [-77.31441247908151, 34.629491437533915], [-77.31414918332031, 34.62910372419625], [-77.31406078486702, 34.62903994342804], [-77.31399245818145, 34.628986300502106], [-77.31382011427175, 34.62872683889509], [-77.31390384121562, 34.628544489169784], [-77.31401096574388, 34.6284459801078], [-77.31410563847845, 34.6282657232974], [-77.31440638289203, 34.627858444178955], [-77.31480050019626, 34.627848701265734], [-77.31510353132317, 34.62728498568355], [-77.31524949306944, 34.62567896962853], [-77.31541838263185, 34.62575614860955], [-77.31541600748164, 34.62555421667753], [-77.31536025806042, 34.62532119906748], [-77.31513185723324, 34.62548844858514], [-77.3126474083235, 34.62547163442682], [-77.31065225588027, 34.62545809279456], [-77.31011737883229, 34.625623549483656], [-77.30992246235365, 34.62596089377423], [-77.3092610656752, 34.62639767995822], [-77.30809387730862, 34.62692227877977], [-77.30786347260913, 34.627152707444715], [-77.30649356392644, 34.62809695347238], [-77.30460494085553, 34.63041135905976], [-77.30413359912092, 34.631231994527575], [-77.30398681183385, 34.63336055490123], [-77.29993938805053, 34.63747246744491], [-77.29973518002012, 34.63770055609329], [-77.29957697218266, 34.63765502941717], [-77.29431294668747, 34.63620026900248], [-77.2918198041534, 34.63517862495332], [-77.29153415568801, 34.63511204306059], [-77.29128427349828, 34.635246085924926], [-77.28926934869898, 34.6365893620539], [-77.28794873304857, 34.6374697378523], [-77.28710273384158, 34.638557575533795], [-77.28632544396045, 34.63966518194043], [-77.28635346746952, 34.64132007237883], [-77.28674654552304, 34.64298333680633], [-77.2874650504568, 34.64378844659495], [-77.29039246605585, 34.64586027733081], [-77.29088779850788, 34.64619570907511], [-77.2912168589723, 34.64631129187835], [-77.29145317257723, 34.64608609458194], [-77.29288366923578, 34.64551938534391], [-77.29348216798947, 34.645311650762316], [-77.29356847781793, 34.645265974585136], [-77.2953536352603, 34.64438997535797], [-77.29593458116204, 34.644293160073275], [-77.2965893945444, 34.64409728278252], [-77.30039713668461, 34.64376192019141], [-77.30091320205757, 34.64357754855805], [-77.30143709487304, 34.64368679262679], [-77.30245385237589, 34.644209276499026], [-77.3054331384837, 34.64496047860503], [-77.30635094069868, 34.64515175682862], [-77.30803687264182, 34.64555918986087], [-77.30904727272721, 34.64582605217663], [-77.3095937747521, 34.645908702387246], [-77.31198531125818, 34.647704844529315], [-77.31324664217021, 34.64786143041875], [-77.31401327372093, 34.64937757782228], [-77.31512247579502, 34.650575460513565], [-77.31597379475252, 34.65164581252418], [-77.316374239411, 34.6524299200691], [-77.3178017347013, 34.65467991441314], [-77.31838436574068, 34.65553032081188], [-77.31853484963762, 34.65575920377682], [-77.31893027119943, 34.65678598578589], [-77.31975935968123, 34.658717752782046], [-77.31973626105207, 34.6608011192994], [-77.3197362992786, 34.66182576914317], [-77.31954056064102, 34.66212362697769], [-77.32009214345268, 34.66257383725024], [-77.32061232583189, 34.66264374441823], [-77.3228905099585, 34.663752627698734], [-77.32372187385364, 34.66385887028893], [-77.32544334737938, 34.664690376302566], [-77.32559911866926, 34.66473558577433], [-77.32566305978175, 34.664802444839275], [-77.32735828267346, 34.665845915938476], [-77.32849229304631, 34.66613398524972], [-77.32955632470615, 34.66608795626333], [-77.3303196224049, 34.66636784552975], [-77.33119417721306, 34.666831213972735], [-77.33149163869719, 34.66684984521307], [-77.33248852441244, 34.66710017506164], [-77.33288816292233, 34.668691068968855], [-77.33301849777357, 34.66908209594567], [-77.33404912325607, 34.67078508491513], [-77.33436122227342, 34.671201863634955], [-77.33455638917764, 34.672472793590984], [-77.33555853161343, 34.6744770144458], [-77.33636912692467, 34.675962970108536], [-77.33737289467113, 34.677776315917185], [-77.33755983483279, 34.67810148319974], [-77.33759476673444, 34.67817299369472], [-77.3376564402809, 34.67828325266418], [-77.33753916714691, 34.680053815483355], [-77.33774228803219, 34.68065747071714], [-77.33775463491577, 34.68099900773785], [-77.3378620127858, 34.68112049142817], [-77.33766945157066, 34.681498069562274], [-77.33758422053312, 34.681728381767385], [-77.33755452720602, 34.68176771794896], [-77.3375073099093, 34.6817875602192], [-77.33719036264347, 34.68194799871279], [-77.33708291598714, 34.68198784342338], [-77.33660550792808, 34.68208729866639], [-77.33655949408823, 34.68205925919135], [-77.33648841350939, 34.68209897942374], [-77.33600218327189, 34.682214160156676], [-77.33590853079112, 34.68223967744497], [-77.33550233051558, 34.682501218633064], [-77.33519022970692, 34.68265185262832], [-77.33497541666792, 34.682553239330886], [-77.33471404397787, 34.68239085064351], [-77.33468729320875, 34.682380789924146], [-77.33467214887997, 34.68237487794974], [-77.33411260895333, 34.68242881551431], [-77.33407625144773, 34.682365737582835], [-77.33366623985273, 34.6821495675056], [-77.33291966869191, 34.682226262784084], [-77.33251144860048, 34.68208420051933], [-77.33192582613962, 34.68179851043139], [-77.3319074019254, 34.681590136272845], [-77.33164540942175, 34.681836965617684], [-77.33094565208313, 34.68229020670388], [-77.33082562373812, 34.682436756500984], [-77.33052972509189, 34.682559718439016], [-77.33044186623309, 34.68251387209155], [-77.32988467702968, 34.6826260023153], [-77.32975454337068, 34.6826287238972], [-77.32931571271335, 34.68264379904907], [-77.32921452682824, 34.682617846398784], [-77.32917721427162, 34.68228464383033], [-77.32909815785531, 34.682186258355806], [-77.32923366367228, 34.68145298734339], [-77.3287920335633, 34.68125348767222], [-77.32735448833256, 34.68077972008825], [-77.32510011942497, 34.681480020432005], [-77.32434324976163, 34.681541215265234], [-77.32202179513935, 34.683847935582435], [-77.32169129361147, 34.68417634044451], [-77.32390974661749, 34.68554846297466], [-77.32561692239614, 34.68558773876575], [-77.32555921060907, 34.68695647818781], [-77.32553846884981, 34.68744843000663], [-77.32553424898485, 34.687548544295886], [-77.32552787415423, 34.68769981842059], [-77.32548348096003, 34.69064351087824], [-77.3254380892862, 34.691460661204076], [-77.32540614533595, 34.69227942146412], [-77.32539030630485, 34.692685516377665], [-77.32554442761192, 34.693395560399246], [-77.32595503130361, 34.69343364538126], [-77.3260276611768, 34.693582553722045], [-77.32649942355027, 34.69423939012593], [-77.32666639821727, 34.69446290256573], [-77.32663514739522, 34.694708154627335], [-77.32686112314695, 34.694834241179755], [-77.32718213144355, 34.69463317334639], [-77.32729679464302, 34.694376435318], [-77.32739428245884, 34.69411672123299], [-77.3285305802689, 34.69320980755011], [-77.32874223899799, 34.69310461419059], [-77.3298238355944, 34.69287957458762], [-77.3300213156761, 34.69296213191045], [-77.33059600378076, 34.69301667605968], [-77.33053534542073, 34.69319871345533], [-77.33090118647091, 34.693292204573424], [-77.3310802025847, 34.69343244884289], [-77.33112574392473, 34.693605130957124], [-77.3312651989491, 34.69368426333011], [-77.33135265424232, 34.69379860861425], [-77.33145497954114, 34.69393239621147], [-77.33147448222557, 34.69404468305145], [-77.3314483646335, 34.6942277098598], [-77.33144719952375, 34.69429210981002], [-77.3313895469106, 34.69437685291837], [-77.33129330962495, 34.69455689623527], [-77.33105363932123, 34.69482749739454], [-77.33082044474344, 34.69494769537323], [-77.33052283334632, 34.69504355795285], [-77.33037870531173, 34.695089982515306], [-77.32994945484211, 34.695228525699655], [-77.32976463929981, 34.69528822132247], [-77.32960382212072, 34.69535635764853], [-77.32905944079818, 34.69550960014974], [-77.32874092358108, 34.695657205084814], [-77.32835833071238, 34.69593403576016], [-77.3281147999443, 34.6963788017618], [-77.3280578532106, 34.696462598743395], [-77.32801033273918, 34.69658205396533], [-77.32785245762655, 34.696784583947135], [-77.32768513486414, 34.696832186101304], [-77.32747851654199, 34.69682935236039], [-77.32696310020667, 34.696612672280786], [-77.32696028207582, 34.69660149788913], [-77.3269445183426, 34.69660687529078], [-77.32693256861789, 34.69660720815539], [-77.32635272213354, 34.696583236752275], [-77.32609692819099, 34.69647733394748], [-77.32576291572079, 34.69655275120089], [-77.3255157841488, 34.69662758347206], [-77.32539178538687, 34.696625584542936], [-77.32514264780235, 34.69662705038775], [-77.32507793003707, 34.69662739150689], [-77.32489361722503, 34.69661463889918], [-77.32467495990363, 34.69652030893319], [-77.32458837776576, 34.69647431837367], [-77.32453471106228, 34.69645816223247], [-77.32427056449089, 34.69630564277343], [-77.32406097208828, 34.69622918226361], [-77.32384597089703, 34.6960651915691], [-77.3237259018799, 34.69593635751358], [-77.32324372814364, 34.69566036292618], [-77.32312724835622, 34.69560859844691], [-77.3230499062415, 34.69558846604083], [-77.32289966437716, 34.69558419611613], [-77.32218908953104, 34.69554195042406], [-77.3218705057761, 34.69552678077007], [-77.32145129943625, 34.69541863553714], [-77.32135854846922, 34.69539253158619], [-77.32132143168636, 34.69535620606863], [-77.32116161908824, 34.69531955541987], [-77.32074576073049, 34.695277109302125], [-77.32037970940377, 34.69535715740254], [-77.31977476243793, 34.69536639463344], [-77.3194897121403, 34.69547902296075], [-77.3192571673401, 34.69543229170858], [-77.31864817855626, 34.69564409351754], [-77.318265022713, 34.69557305686878], [-77.31804355112885, 34.69557745362566], [-77.31796003035626, 34.69559250424114], [-77.31785842466236, 34.695582059185085], [-77.31766973967008, 34.69556139250093], [-77.31721553156135, 34.69551164135416], [-77.31716336463222, 34.69546618684221], [-77.31710635882423, 34.695440020528636], [-77.3169276518762, 34.69539492318509], [-77.31600068339824, 34.69512477564588], [-77.31544833451146, 34.695359699724406], [-77.31532323154264, 34.69539565041057], [-77.31472598788734, 34.69585267840649], [-77.31467360764545, 34.69594951023429], [-77.31462277123217, 34.69611049749605], [-77.3144844038545, 34.69622137312345], [-77.31429865510086, 34.69615489314745], [-77.3143171139458, 34.696078656035624], [-77.31398271037692, 34.695954488245924], [-77.31396545099373, 34.69594722898357], [-77.31391724472583, 34.69559801581492], [-77.31346692273561, 34.69560286953724], [-77.31331175519776, 34.695559026703926], [-77.31313603075822, 34.69541061653761], [-77.31260177252668, 34.695388620800216], [-77.31234792192348, 34.69533343875255], [-77.31223114883294, 34.69531830885649], [-77.31175843824391, 34.695301811354724], [-77.31172988614611, 34.69528831803756], [-77.3115840859291, 34.69502774964403], [-77.3112814322162, 34.69488349195129], [-77.31053323035793, 34.694477477679676], [-77.31036116683893, 34.69439187974211], [-77.31025229953455, 34.69430515138843], [-77.30980513611101, 34.69418462468292], [-77.30907625873807, 34.694231861802834], [-77.30859401395004, 34.69417447250195], [-77.30820452777401, 34.69404168307594], [-77.30797259751927, 34.69390976889492], [-77.3077642542493, 34.69388192303005], [-77.307366218829, 34.69354234056224], [-77.30695763072166, 34.693282811847205], [-77.30541568144467, 34.69420346171764], [-77.30498892859022, 34.69502017387123], [-77.30491232199516, 34.69542903318041], [-77.30423531137538, 34.69631447215217], [-77.30326746415614, 34.69773497927338], [-77.30280822454276, 34.698194177722065], [-77.3025132558623, 34.69849959948204], [-77.30295643566744, 34.69880384383987], [-77.30354957501768, 34.69885195830292], [-77.30514212328842, 34.699522838803226], [-77.30618147086494, 34.69918168047362], [-77.30742712355452, 34.69977636871882], [-77.3074588506988, 34.699791515675734], [-77.3081151943587, 34.7008472804056], [-77.30940261431947, 34.70134222770469], [-77.30942198677214, 34.7014187712345], [-77.30947895891168, 34.70144486414807], [-77.31002638351144, 34.702530251914084], [-77.31105090979463, 34.703908824591046], [-77.31200351391671, 34.70416254959312], [-77.3155736557636, 34.704509072786266], [-77.31563933662308, 34.704519531397644], [-77.31569317356097, 34.70451630546526], [-77.31575448769162, 34.704484303618635], [-77.31900578757563, 34.70234636145496], [-77.32033547464975, 34.70190726826165], [-77.32107063583317, 34.70162377025328], [-77.32127833220585, 34.70168165553327], [-77.32133236752027, 34.7017180721867], [-77.32139249182563, 34.7017624385901], [-77.3219235660375, 34.70283975920104], [-77.32288541459442, 34.70350729734886], [-77.32376476163967, 34.70457650788913], [-77.32528688985364, 34.70436849442074], [-77.32729941375696, 34.705011039150776], [-77.32786056742168, 34.70509151784837], [-77.32983888202763, 34.705186536585146], [-77.33138462763853, 34.705021930507115], [-77.33337263710082, 34.70487179064575], [-77.3348245066199, 34.704512518843075], [-77.33743267028619, 34.703364501918934], [-77.33758605885895, 34.703250466689454], [-77.33778673833984, 34.70325046572369], [-77.33897777783167, 34.703250455149494], [-77.33998084074899, 34.70325044734914], [-77.34018764612271, 34.70308449234792], [-77.34011152850759, 34.702800620655154], [-77.33991942449452, 34.7016098105552], [-77.34025453793491, 34.70112581336804], [-77.34036105812243, 34.70085392036917], [-77.34045651897841, 34.70040830987831], [-77.34043971267819, 34.70012565914133], [-77.34039762918675, 34.70005946266468], [-77.34041427492697, 34.6996978675822], [-77.34041643988697, 34.699650837030205], [-77.3404168736196, 34.699641416836386], [-77.34041752454299, 34.69962727772916], [-77.34043301742304, 34.69939551410513], [-77.34055176890617, 34.69922459178745], [-77.34062822052675, 34.69917572953516], [-77.34102816500729, 34.699180210060135], [-77.34115077787015, 34.699223396085934], [-77.34147485567405, 34.69928800660797], [-77.34182033602727, 34.699359063525364], [-77.34225664374955, 34.69953822030409], [-77.34341775519863, 34.69891836983886], [-77.3436045111521, 34.69901994257451], [-77.34450906849369, 34.69965538677156], [-77.34497203750385, 34.699835124530445], [-77.34483673105355, 34.699403281542814], [-77.34467576174175, 34.69945394264792], [-77.34389519385695, 34.69867679715066], [-77.34403953037604, 34.698439980881794], [-77.34406044807756, 34.698166743410226], [-77.34434908706504, 34.698006209412064], [-77.34494950947872, 34.697739831641854], [-77.34520158230868, 34.69764361568744], [-77.34539177873988, 34.69765396063361], [-77.34654809214885, 34.697129801766295], [-77.3473895240923, 34.696871770669524], [-77.34783496636464, 34.696821278999565], [-77.34806715326616, 34.69691766030982], [-77.34812886498703, 34.69712101466364], [-77.34837116138658, 34.69774199434168], [-77.34830661967531, 34.69807137516638], [-77.34745780823262, 34.698963223170054], [-77.34685337053646, 34.70022033746573], [-77.35023845079081, 34.70091341407341], [-77.35146967912502, 34.70048864883152], [-77.3522913877707, 34.69947387580212], [-77.35480946968498, 34.69834288409773], [-77.35640538491187, 34.696167922244], [-77.3584258102852, 34.696830038097666], [-77.35863725177296, 34.69672804139093], [-77.35880025157739, 34.69677418693541], [-77.3608594081985, 34.69732160035193], [-77.36162152312986, 34.697524186982456], [-77.36344518385684, 34.697942034828515], [-77.36474978058192, 34.698270228752506], [-77.36533220632862, 34.69841082943673], [-77.3663724787466, 34.698379420178085], [-77.36664845173225, 34.69838573685382], [-77.36686176500389, 34.69844740121955], [-77.36762760829629, 34.69875217648814], [-77.36798974755652, 34.69893024832626], [-77.36819924924939, 34.69923838341177], [-77.36909665297529, 34.69965518933638], [-77.3697314406477, 34.69975379099773], [-77.36978959668994, 34.69991028910151], [-77.3697610543314, 34.69999853280582], [-77.36971991021576, 34.70006934369867], [-77.36964024457228, 34.70081376818327], [-77.36960580740302, 34.700994654320766], [-77.3695651021822, 34.701208460580844], [-77.36946434210438, 34.70173768301366], [-77.36945850937352, 34.701989681633606], [-77.36934706927005, 34.70261646028384], [-77.36949362051028, 34.70295964068306], [-77.3697942574631, 34.70366365623674], [-77.37012775409117, 34.70359254805493], [-77.37008814256838, 34.70385271888049], [-77.3700873752686, 34.704223787602444], [-77.37017809380784, 34.70481513881034], [-77.37056518799983, 34.70513311329034], [-77.37219475637305, 34.705155507580926], [-77.3724377348966, 34.70645414230361], [-77.37205888199762, 34.70823833114198], [-77.37201180956566, 34.70845047500018], [-77.37201240213084, 34.708462180037984], [-77.37201594237685, 34.708484998953715], [-77.37082265009933, 34.71251990107143], [-77.37086893479858, 34.712518481508724], [-77.37086185367482, 34.712567571502575], [-77.37385563849568, 34.71600711927575], [-77.37368416423308, 34.71662564223599], [-77.37331253192193, 34.7180313543601], [-77.37225555963732, 34.71890719412957], [-77.37142940860312, 34.7186613864978], [-77.37112481232916, 34.71859552966829], [-77.37001514954216, 34.71848451754688], [-77.36916996741076, 34.7181942686584], [-77.36718464744807, 34.718873444200355], [-77.3666319407815, 34.71903052870038], [-77.36649743461929, 34.719150502019964], [-77.3653067838973, 34.72010621700636], [-77.36512735860009, 34.72025023791514], [-77.36470235755625, 34.720384171944254], [-77.36377981912982, 34.72026175117675], [-77.36199109912451, 34.720024360964906], [-77.36146707587153, 34.719978076066944], [-77.36018125966736, 34.720709255165936], [-77.35869637581638, 34.72127169236099], [-77.3567785674567, 34.720511587184674], [-77.35655384058104, 34.720401710248886], [-77.35650165321927, 34.72038673954385], [-77.35419469580589, 34.720277678296206], [-77.34986920683238, 34.72320067894698], [-77.35004342674642, 34.724755537557456], [-77.34799671883565, 34.725123635541195], [-77.34640050449136, 34.72757571130669], [-77.34662676772592, 34.72798347096168], [-77.3469806683185, 34.72862120182655], [-77.34784246154011, 34.73020182046101], [-77.34889112764463, 34.73029074353806], [-77.34934609301507, 34.73062199336924], [-77.34992466437676, 34.73085602330948], [-77.34999656773878, 34.73091002625138], [-77.35007681737629, 34.730970296766216], [-77.3502015401539, 34.73154073763205], [-77.35053959170502, 34.731881548640544], [-77.35027727974295, 34.73262199076846], [-77.35039664620956, 34.73287592788177], [-77.35034307425667, 34.733008644733346], [-77.35047849813466, 34.733072764945966], [-77.3506664928754, 34.7338136560891], [-77.35044661954744, 34.73404856421409], [-77.35035828514819, 34.73434333454172], [-77.35028535675207, 34.73454394804113], [-77.35026672143105, 34.734599590649566], [-77.35023145103465, 34.73467128232434], [-77.35013452684551, 34.73486142180809], [-77.35006482718362, 34.734986821254964], [-77.34986295645896, 34.735191751891165], [-77.34972500596515, 34.73532400177817], [-77.34958892199069, 34.7354236740712], [-77.34934611513957, 34.735626566802345], [-77.3490581465113, 34.73590053926738], [-77.34885877652819, 34.73572710844444], [-77.34856048181697, 34.735552034222366], [-77.34797736080844, 34.735690358362774], [-77.34792447394585, 34.73567973759819], [-77.34790297386034, 34.7356738937981], [-77.34739401806186, 34.73544411631754], [-77.34703865214195, 34.735550304953], [-77.34649300122825, 34.73536108569854], [-77.34564050588929, 34.735048932487956], [-77.34518082714025, 34.734816165353415], [-77.34417889727334, 34.73487777089874], [-77.34215944115343, 34.73595554393464], [-77.34286282376546, 34.73718519345413], [-77.34463426532169, 34.73669722505898], [-77.34486780527645, 34.737219924719845], [-77.34538230021144, 34.73746298343555], [-77.34554973529814, 34.737669076171215], [-77.34563912237364, 34.73820342260852], [-77.34583728486614, 34.73837531991727], [-77.34608657731948, 34.73864764963562], [-77.3464174168628, 34.73878311021593], [-77.34642222479714, 34.73878891529524], [-77.34654798772856, 34.73908114388907], [-77.34663319728102, 34.739093494551646], [-77.34677019049116, 34.73922208959179], [-77.34678359070794, 34.739294124213075], [-77.34684404629849, 34.739398503426], [-77.34692034023968, 34.739583132282334], [-77.3472410343404, 34.74009358534088], [-77.34725517323763, 34.74011398052973], [-77.34728516433994, 34.74012619308859], [-77.3472763723752, 34.74017552826829], [-77.34738174616494, 34.74060032067392], [-77.34752236289316, 34.740696854781376], [-77.34757546864759, 34.74100399065683], [-77.34757585521692, 34.74104989961955], [-77.34757571510951, 34.74106108719222], [-77.34757431971691, 34.74107779175343], [-77.34756167979363, 34.74130670224642], [-77.34752154825256, 34.7414858517985], [-77.34750944422714, 34.7415575582577], [-77.34749108724702, 34.74164233041253], [-77.34738522258162, 34.742061980101106], [-77.34736250404147, 34.74216669068953], [-77.34728609438423, 34.7423192697978], [-77.34730115546984, 34.74243147877835], [-77.34729542075529, 34.74244813329101], [-77.34723258976841, 34.74257029977933], [-77.34721309210809, 34.74267259813175], [-77.34705216794829, 34.743029396934226], [-77.34701528559714, 34.74308749143076], [-77.34685853432435, 34.743471505131104], [-77.34679510146347, 34.74357883869847], [-77.3467914694246, 34.74362407484059], [-77.34679577757981, 34.743687492341294], [-77.34678273265153, 34.74409415264728], [-77.3467481691517, 34.74444574026862], [-77.34679486075183, 34.74457986694422], [-77.34672684541286, 34.74479493809874], [-77.34648310715016, 34.74476358035392], [-77.34628202445968, 34.74480422822242], [-77.34581851894407, 34.7449893773367], [-77.34554973634701, 34.74497320620006], [-77.34552625328756, 34.744964516110876], [-77.3453362877037, 34.74477996044685], [-77.34531779084381, 34.74475740071286], [-77.34529503621316, 34.74472956259841], [-77.34491085504864, 34.74435094220068], [-77.34494519196039, 34.74425558416149], [-77.34487313132583, 34.74412019151129], [-77.34448475717888, 34.74382131343306], [-77.34335758919232, 34.7435892426043], [-77.34371043588139, 34.74284009030234], [-77.34394909745475, 34.74233385565749], [-77.34441834623355, 34.741494232437724], [-77.34442053930326, 34.74071730337265], [-77.34366695332074, 34.74002615945754], [-77.3435207874869, 34.73983256399781], [-77.34314847300489, 34.73971891535672], [-77.34149658440451, 34.73925045587108], [-77.3395411895883, 34.739739598560575], [-77.33898220441714, 34.73965845423883], [-77.33814060124003, 34.74040570701348], [-77.33819287878356, 34.740776409937446], [-77.33834724127836, 34.741843071365174], [-77.33839759503866, 34.74219562005735], [-77.33843725481942, 34.74231453323401], [-77.33952822669019, 34.74290282177094], [-77.34031951596668, 34.743300556591876], [-77.34075793431478, 34.74353388020096], [-77.34142203972854, 34.74385471044765], [-77.34201715486316, 34.74414221670765], [-77.34241496862612, 34.74433439795746], [-77.34260121544482, 34.74526976437371], [-77.34332996355803, 34.74530811775199], [-77.34344499741232, 34.74552676390407], [-77.34387272374464, 34.745868676017], [-77.34392710406797, 34.745948013801254], [-77.3442184593753, 34.74637308668187], [-77.34422620927951, 34.74638519507885], [-77.34423362076086, 34.74639334727211], [-77.34471153020317, 34.74673758645234], [-77.34478253672864, 34.746745729012545], [-77.34513325116772, 34.74675732150281], [-77.34529476069865, 34.746791832299046], [-77.3453510778967, 34.74676751488102], [-77.34569348832466, 34.7468335540434], [-77.3458751115921, 34.746855987358245], [-77.34601895059913, 34.74687951246432], [-77.34612520165857, 34.746895738457916], [-77.34616040654339, 34.746904860645536], [-77.34622939595384, 34.746907370632236], [-77.34645195378181, 34.7469322166589], [-77.34657602104281, 34.746943227305415], [-77.34698078267812, 34.74699125235793], [-77.34702721432419, 34.74701389051459], [-77.34705373501232, 34.74699939630245], [-77.34744488930531, 34.74706340552641], [-77.34759639763608, 34.74711648036745], [-77.34765165233921, 34.74714290379329], [-77.34773829638138, 34.74723194899376], [-77.34785505605134, 34.747358686792765], [-77.3477118156857, 34.7476464994862], [-77.34778493854424, 34.74785568435317], [-77.34779009682163, 34.74829002819657], [-77.34779408650296, 34.74837160542313], [-77.34780885029734, 34.748446827472804], [-77.34784741468778, 34.748821871766395], [-77.34796607195042, 34.74902771659265], [-77.34820541899835, 34.749143537960556], [-77.34829527649457, 34.74924780589832], [-77.34848447327116, 34.74941742647314], [-77.3486732482178, 34.74959501168555], [-77.34870919910998, 34.74963879378844], [-77.34870941222677, 34.74967836620748], [-77.34871920041938, 34.74975137761252], [-77.34866933100153, 34.74980571022797], [-77.34860463418276, 34.74983116277929], [-77.34850798442406, 34.74982784689057], [-77.34848733998264, 34.7498094119453], [-77.34843284832141, 34.74981684274543], [-77.34831723441661, 34.74978950086858], [-77.34813086707521, 34.749757741500055], [-77.34814714776223, 34.749676841392926], [-77.34806961917836, 34.749610914807036], [-77.3479704405269, 34.74972634378227], [-77.34746708365202, 34.749623050263], [-77.34726659684341, 34.74956563129758], [-77.34690191205864, 34.749506595323574], [-77.3468401669359, 34.74949937880572], [-77.34655605071275, 34.74948641041471], [-77.34640967247816, 34.749436249153185], [-77.34623417626166, 34.749464756285086], [-77.3459992847204, 34.7497518373624], [-77.34564002184598, 34.750099447774204], [-77.34561670058159, 34.75019430414745], [-77.345520187088, 34.75060326335473], [-77.34535570973327, 34.75070476746523], [-77.34493960783107, 34.75068290141506], [-77.34480290951507, 34.750671832465905], [-77.34476785722245, 34.75066633281814], [-77.34468135223842, 34.750642248606354], [-77.34416785278727, 34.75066971113737], [-77.3439910425634, 34.750507777206984], [-77.3437776485531, 34.750354902408766], [-77.34372683666255, 34.75012601525536], [-77.34360020500185, 34.7500199690174], [-77.34329166778701, 34.75004937177292], [-77.34316527751531, 34.749997115569165], [-77.34308994015932, 34.74996184919331], [-77.34297671846065, 34.749711056966476], [-77.3426248951667, 34.74979535242545], [-77.34218340281289, 34.74959880422962], [-77.3421270937792, 34.74957603473168], [-77.34210235294569, 34.74953221297482], [-77.34190853761613, 34.749462267467514], [-77.3415697068979, 34.749303845781206], [-77.34149411724033, 34.74927441904541], [-77.3414597543997, 34.74906464762154], [-77.34180264213423, 34.74867627111021], [-77.34145488133844, 34.74778368696827], [-77.34159831324692, 34.74772954361765], [-77.34146797277174, 34.74771786087006], [-77.34144325810969, 34.74767790143552], [-77.34138447012403, 34.747721300826505], [-77.33906065206017, 34.74763169837807], [-77.33840700351817, 34.74763645907498], [-77.33792561642097, 34.74823316944297], [-77.33781403082507, 34.7483877356276], [-77.33802790592304, 34.748706518374895], [-77.33802414824972, 34.74878922839927], [-77.33813107301191, 34.74876893169865], [-77.3385363820047, 34.7491241728774], [-77.33857798892672, 34.749151697831735], [-77.3386057000709, 34.74919687160185], [-77.33904644741914, 34.749541607809924], [-77.33894141623891, 34.74966057387092], [-77.33907745687327, 34.74963470082865], [-77.33918284931801, 34.750010278023865], [-77.33925868525728, 34.75020494459121], [-77.3392578175732, 34.75030534572103], [-77.33926885354404, 34.75048585927747], [-77.33926570423313, 34.750593705983285], [-77.33925694499952, 34.75062374089593], [-77.33906771654631, 34.750757125955694], [-77.33905684888342, 34.75076561955417], [-77.33904237483682, 34.75076542048048], [-77.33903071518598, 34.75076219949721], [-77.33884008470329, 34.75072387887954], [-77.33877312392391, 34.750681680485755], [-77.33869757345845, 34.75063637428924], [-77.33859597833818, 34.75057812165546], [-77.33844428044041, 34.750436969700736], [-77.33828760318036, 34.750291183428494], [-77.33820866398453, 34.750223973915915], [-77.33811107289222, 34.750157234207606], [-77.33770403046002, 34.749823665249956], [-77.337273914566, 34.74965693569874], [-77.33706435452238, 34.749527186822945], [-77.33673296272418, 34.74945715932091], [-77.3366848014069, 34.749424861602186], [-77.33659636847892, 34.749390162199795], [-77.33638053015153, 34.74926465369768], [-77.33620692796768, 34.74920607371794], [-77.33580039173907, 34.74915689356088], [-77.33563132820596, 34.7491254899919], [-77.33552297213258, 34.74913569198252], [-77.33529602638498, 34.74908105833904], [-77.3350801651722, 34.74896085135904], [-77.33485000372147, 34.748864807474334], [-77.33433423371781, 34.74872553246609], [-77.33407150465075, 34.7486750581693], [-77.33397383126581, 34.74864537239702], [-77.33303569011379, 34.74792879042175], [-77.33302358584926, 34.74790416669819], [-77.33299957327611, 34.7478756488108], [-77.33250761426666, 34.747512581739834], [-77.33250615398747, 34.74751244197499], [-77.33249775291254, 34.74750704188668], [-77.33200483932475, 34.747176401254], [-77.33195309831234, 34.747150630304176], [-77.33191382923853, 34.747107819009706], [-77.33151080516124, 34.746702403770385], [-77.33149786620717, 34.74667746179508], [-77.33131597650235, 34.746459756144745], [-77.33113240911891, 34.74624018098551], [-77.33112616407723, 34.74620985600578], [-77.33109283581832, 34.7461926769718], [-77.33097997165099, 34.746161983229776], [-77.33054314351031, 34.74602305345091], [-77.33038086102624, 34.74599458406336], [-77.33000811878858, 34.745802990587606], [-77.3295806940155, 34.745821489371], [-77.32917376017832, 34.74583805494287], [-77.32875399173528, 34.74599590877533], [-77.32830245449642, 34.74634267669603], [-77.32772371123079, 34.74646082516105], [-77.32744968520308, 34.74636134111063], [-77.32719305989104, 34.7466362889118], [-77.32673066417621, 34.746773965185], [-77.32664848786959, 34.74679206853003], [-77.32626816402258, 34.746791522478645], [-77.32614210914707, 34.7467379619134], [-77.3257382578474, 34.74649199127646], [-77.32574273836403, 34.74640720270962], [-77.32553423118021, 34.74603257753171], [-77.32560357874905, 34.74572595191988], [-77.3253924564519, 34.74519622013206], [-77.32453715205867, 34.74555918907998], [-77.32406306526664, 34.74623413207526], [-77.32396987617221, 34.74633328164359], [-77.32383627810874, 34.74642756675582], [-77.32320940441699, 34.746936137275576], [-77.32254931078721, 34.74673322833214], [-77.32210310930292, 34.746840304907195], [-77.32168244897649, 34.746859617320624], [-77.32130896157184, 34.74687858557675], [-77.32110767810507, 34.74681724932312], [-77.32087655239931, 34.74678374919162], [-77.32074973499003, 34.74674173728508], [-77.32066470635105, 34.746699646243954], [-77.32053465984364, 34.74646950413299], [-77.32022079254804, 34.74650078847924], [-77.32005796000178, 34.74644181985893], [-77.31994638636712, 34.746414469240335], [-77.31985162653514, 34.7463236459438], [-77.31981199276396, 34.74623678632448], [-77.31972254741851, 34.74615432674542], [-77.31951983572742, 34.745881724786976], [-77.3195517098209, 34.745648666303154], [-77.3193307531914, 34.74544195735986], [-77.31900629895001, 34.74497733086776], [-77.31907303415457, 34.74444023260559], [-77.31856816098517, 34.74394511006095], [-77.31582906116981, 34.74535722859809], [-77.3157028106446, 34.74538993999184], [-77.31563373437946, 34.745507350143725], [-77.31426706499634, 34.747575714200664], [-77.31516295382369, 34.74902175371267], [-77.31549288798848, 34.749357336191885], [-77.31651047928383, 34.74956244593382], [-77.3169499412191, 34.749507204278025], [-77.31742018080695, 34.74946632013529], [-77.31814798587261, 34.74950746712145], [-77.31859980045095, 34.7495330075714], [-77.31873735281235, 34.74954078331708], [-77.31897368527359, 34.7496397347248], [-77.31900415596262, 34.74965327190907], [-77.3191517762377, 34.74983103303707], [-77.31917598022555, 34.7498783419194], [-77.31920632786995, 34.74998791705879], [-77.31932223568168, 34.750295050567075], [-77.31896145023873, 34.750829621052084], [-77.31895958374922, 34.750830851106166], [-77.31895546600343, 34.750832642322656], [-77.31895556795286, 34.750835922314415], [-77.3179899535811, 34.751939584988506], [-77.31799357502302, 34.75236344241214], [-77.31797492244115, 34.752512004955285], [-77.31771393541365, 34.75295210517385], [-77.3174300482336, 34.75330601869562], [-77.31685671930532, 34.753945498527834], [-77.3167312585821, 34.75396361171524], [-77.31551983805184, 34.754422116465065], [-77.31459071766257, 34.7546202444029], [-77.31528349369911, 34.75523433408888], [-77.31604881258342, 34.755912696262676], [-77.31629219658512, 34.755885600177635], [-77.31681263981548, 34.75531273556303], [-77.31708038278964, 34.75498830337217], [-77.31730341076845, 34.75447075007435], [-77.31791275740277, 34.753899603432515], [-77.31800055591731, 34.75381169917319], [-77.31811819968692, 34.75372795403737], [-77.31854281108666, 34.75332596339283], [-77.3187061674424, 34.75316015608715], [-77.31876694544057, 34.75295132790946], [-77.31875933232817, 34.75280895038276], [-77.31883209784462, 34.75250716611072], [-77.3189030610528, 34.75205771187352], [-77.31901364417041, 34.75179939817187], [-77.31945597953154, 34.751270839267654], [-77.3201622492468, 34.75082045601054], [-77.32028966003944, 34.75073283507095], [-77.3204355780046, 34.75062993425665], [-77.32031816476248, 34.7505768308569], [-77.32023941265116, 34.750555214986406], [-77.31983193137205, 34.75016236402018], [-77.31977672522139, 34.750086443214364], [-77.31963595129747, 34.749764723573705], [-77.31953966219677, 34.74959881889973], [-77.31937148162035, 34.74942023504785], [-77.31932776548325, 34.749367593080926], [-77.31925407371119, 34.74932966059611], [-77.3191244148581, 34.74912979671339], [-77.3183552807821, 34.74901823246253], [-77.31829137495947, 34.74901461995523], [-77.31808214225379, 34.749002790832776], [-77.31753069797762, 34.7487783496729], [-77.3173217275926, 34.748229366417036], [-77.31683634127089, 34.74773567051464], [-77.31654408537946, 34.74726394505752], [-77.31701420161373, 34.746552455114475], [-77.31796021626576, 34.745120591639086], [-77.31827311919143, 34.74495927731999], [-77.31832787897515, 34.74501297952702], [-77.318320640711, 34.745071234523444], [-77.31847711255837, 34.74529530607589], [-77.31853015086585, 34.74643384711384], [-77.31911307840923, 34.74619019636862], [-77.31936879580064, 34.74657743537146], [-77.3195700122261, 34.746678660097004], [-77.319649584011, 34.74675570696735], [-77.31979288182791, 34.74681905419406], [-77.31995104348495, 34.746918088380944], [-77.32005883866007, 34.74705750665838], [-77.32053874473782, 34.74725455053111], [-77.32093957245229, 34.7474780778203], [-77.32110643000088, 34.747574822097434], [-77.32115157884083, 34.74757169481663], [-77.32227714053985, 34.74738673420791], [-77.32236537979028, 34.74736555911761], [-77.32253610492175, 34.74741803903028], [-77.32321916628148, 34.74755883543031], [-77.32347094052746, 34.74768361355685], [-77.32352997789813, 34.74771402835912], [-77.32361890932467, 34.747757074837935], [-77.32373609253034, 34.747801767249825], [-77.32396929981164, 34.74777043735659], [-77.32404903484189, 34.7477556158846], [-77.32411081102941, 34.74773509039207], [-77.32420739764362, 34.7476764555813], [-77.32453032878419, 34.747468474191045], [-77.32477851641931, 34.7473071207656], [-77.32497223829252, 34.7472217046614], [-77.32545168852351, 34.747052204910176], [-77.32574201253263, 34.74719598120075], [-77.32599593986448, 34.7472405497419], [-77.32643440269719, 34.74724075523812], [-77.32659234089911, 34.74724958915267], [-77.32676571076946, 34.747197273292294], [-77.3272517180381, 34.747042075153274], [-77.32755708988078, 34.746958920532904], [-77.32827219104985, 34.74682741959886], [-77.32850730548267, 34.74684421877675], [-77.32880357976643, 34.74678680389049], [-77.3296563824672, 34.746551550011674], [-77.32979758395005, 34.746527024405594], [-77.3299786764697, 34.74655140896626], [-77.33036638217423, 34.746630951839265], [-77.33053897475344, 34.74666128285505], [-77.33065428026366, 34.74667088313836], [-77.33081796263455, 34.74677064659763], [-77.33085503082249, 34.746812430637576], [-77.33089935938524, 34.746858074469024], [-77.33101595850343, 34.747082838566065], [-77.33114547863963, 34.747213127151724], [-77.33144585437962, 34.747540597932364], [-77.3316327933289, 34.74763370771239], [-77.33182388324911, 34.747798758358634], [-77.33194747345524, 34.74794321845172], [-77.33209529978353, 34.74805768509104], [-77.33239659971102, 34.74838619715469], [-77.33275793573338, 34.748706733620836], [-77.33303060918212, 34.7489042265435], [-77.33299944880494, 34.74949926192117], [-77.33377928411446, 34.749314519660004], [-77.33413742465198, 34.749412656839716], [-77.33434669931749, 34.749423266170275], [-77.3346639899253, 34.74942664844902], [-77.33493155218721, 34.74947203286784], [-77.3350487943269, 34.74950025708146], [-77.33553570451238, 34.74945441329081], [-77.33578709651513, 34.749501109381654], [-77.33601735589218, 34.749543880202445], [-77.33610404318107, 34.74955998226268], [-77.33637216245847, 34.74966353614566], [-77.33637362583845, 34.74966411034817], [-77.33662399211019, 34.74983200981357], [-77.33665842918695, 34.749839286826685], [-77.33713511004869, 34.75013442326994], [-77.33724463384483, 34.75017687892812], [-77.33734828226373, 34.750261818217794], [-77.33777759251556, 34.750555411006815], [-77.33791407989318, 34.750671617538046], [-77.33814279303883, 34.750789348196164], [-77.33834606076509, 34.75090664329643], [-77.3386363561738, 34.7510599590915], [-77.33866028442617, 34.75106986967116], [-77.33914201657363, 34.75108296435685], [-77.33924193346502, 34.751129680222014], [-77.33939362700616, 34.75106401097852], [-77.33952842525669, 34.75093764025968], [-77.33973893685211, 34.75073162667044], [-77.33978396635925, 34.750589377664994], [-77.33978907136317, 34.75041452557373], [-77.33979695004422, 34.75014469392], [-77.33987567037735, 34.74991527646469], [-77.33983049143643, 34.74976528478861], [-77.33978483332552, 34.7494956260405], [-77.34013162030807, 34.74953374502033], [-77.34029509877426, 34.74956728458111], [-77.34055695708825, 34.74954141162653], [-77.3409770887992, 34.7492818228591], [-77.34103385047237, 34.74962833021361], [-77.34127723258113, 34.749723077844976], [-77.34138487367576, 34.74975258561268], [-77.34143798447049, 34.74975705738983], [-77.3415768943511, 34.7498067543832], [-77.34175537625767, 34.749861861429004], [-77.34197471532283, 34.749971378976326], [-77.34222124753877, 34.75008098938242], [-77.34239005726403, 34.750162168310744], [-77.34250526360074, 34.75020698058417], [-77.34298946990779, 34.750463005036764], [-77.34300421831546, 34.75047825431481], [-77.3430199757573, 34.75049708004008], [-77.3433548238194, 34.750900271666325], [-77.34340501380467, 34.750958406964926], [-77.34346585843588, 34.75102402451951], [-77.34364242369458, 34.75117002438914], [-77.34383783243908, 34.751171549838446], [-77.34402567899949, 34.75115893101096], [-77.34418957804243, 34.75114346148769], [-77.34464531558942, 34.75108800962543], [-77.3452034312544, 34.75110476843538], [-77.34523892829945, 34.75110663379616], [-77.34535923309278, 34.75103238995235], [-77.34531412784091, 34.7511189062737], [-77.345808902449, 34.75120660071001], [-77.34600080657171, 34.75117287561323], [-77.34605634461724, 34.75101709366502], [-77.34613034545227, 34.750649345923605], [-77.3461682889693, 34.75051435969223], [-77.34623106294865, 34.75036196531302], [-77.34628447488778, 34.75014760313779], [-77.34637333528384, 34.74999885393232], [-77.34647678857704, 34.74993889941414], [-77.34663273170268, 34.74996326948872], [-77.34672818421065, 34.74997967878713], [-77.3467620218243, 34.74998802101304], [-77.34685364791125, 34.75001354881749], [-77.34710758903711, 34.75008209729992], [-77.3473185857082, 34.750134110669364], [-77.34750691812782, 34.750169192254894], [-77.34789878297184, 34.750198868413285], [-77.34796254829388, 34.75021299193179], [-77.34849776364499, 34.75019348453614], [-77.34849937729085, 34.750193425719644], [-77.34850161967123, 34.75019262040277], [-77.34901598030197, 34.75001428320489], [-77.34916000226457, 34.74968629801412], [-77.34918600070985, 34.74961297697305], [-77.34918981324213, 34.749530008111854], [-77.34921773864569, 34.749247703553706], [-77.34912272199442, 34.74913427923123], [-77.34944039343877, 34.748682276550895], [-77.34939718039338, 34.7486092418438], [-77.34944884649624, 34.748482945221056], [-77.34938060513133, 34.74812413675857], [-77.34926283359272, 34.74803044523107], [-77.34916992303943, 34.74788555568145], [-77.3489914167437, 34.74769015644469], [-77.3488132798721, 34.74758779611698], [-77.34868256294305, 34.74750132990581], [-77.34840464444693, 34.74711368026497], [-77.34821935673187, 34.74703398866046], [-77.34812393792521, 34.74693537148278], [-77.34795989504354, 34.74685692431164], [-77.34783243985342, 34.7467653603507], [-77.34770695815112, 34.74673596715332], [-77.34741429317069, 34.746680542189004], [-77.34714017618445, 34.74662512206649], [-77.34700978110871, 34.74660965066354], [-77.34655734925977, 34.74656949851443], [-77.34655042982772, 34.74656872603928], [-77.34653173337499, 34.74656547814822], [-77.34611835563342, 34.746506821665974], [-77.34598790113469, 34.74646783088929], [-77.34555649865412, 34.746311215189486], [-77.34544288357819, 34.74628209160756], [-77.34538780532516, 34.74628027105488], [-77.34520815206037, 34.746259669602914], [-77.34494838488943, 34.74622401402274], [-77.34486679976916, 34.74620326506443], [-77.34475107775174, 34.74607867964902], [-77.34470942388846, 34.74601360082639], [-77.34460769388453, 34.745854658913714], [-77.34454035098871, 34.74574944344786], [-77.34444361054038, 34.74559829632867], [-77.34436792017738, 34.745487868414266], [-77.34427428037723, 34.74541301545456], [-77.3440399051793, 34.74496753585649], [-77.34457979023642, 34.745129667044], [-77.34468853132815, 34.74524131436942], [-77.34513225386111, 34.74528975616094], [-77.34513484226696, 34.745292270853774], [-77.34514351574313, 34.74529378174164], [-77.34540968776864, 34.74547508620187], [-77.345691534367, 34.74542638702696], [-77.34594855361804, 34.74538197693933], [-77.34632335365187, 34.7453133787506], [-77.3467535086645, 34.74523000006241], [-77.34695452754758, 34.74520258189285], [-77.34721841259748, 34.745230443252886], [-77.34724767341048, 34.745224415131595], [-77.3475034521809, 34.74497003183297], [-77.34751086627844, 34.744851259820415], [-77.34748870297712, 34.74466459602179], [-77.34748186669296, 34.744485614243075], [-77.3474930844038, 34.744197224929025], [-77.34749557468189, 34.74399635487586], [-77.34751632333078, 34.743854981841466], [-77.34763737573296, 34.74304850057326], [-77.34764478624886, 34.7430011259479], [-77.3476525772944, 34.74296182178898], [-77.34770505491731, 34.74261947693466], [-77.34772243575635, 34.742513908955], [-77.34772495202022, 34.74250274842429], [-77.34772572876778, 34.742488498550216], [-77.34775186716993, 34.7420970871876], [-77.34777096687019, 34.742009055965596], [-77.34779545309232, 34.74191199208266], [-77.34788331168109, 34.741506262935324], [-77.34790602910971, 34.741371680735305], [-77.3479307146229, 34.74117116379132], [-77.34794413219521, 34.741010538991574], [-77.34794714669593, 34.74076983119565], [-77.3479472341355, 34.74076642424353], [-77.34794851898369, 34.74076328414363], [-77.34799516227238, 34.74051615830083], [-77.34845053662428, 34.74005358987751], [-77.34854065640832, 34.74001911684298], [-77.34867602529727, 34.73993535877212], [-77.34857612373781, 34.739886397344065], [-77.3485094502431, 34.73985080702461], [-77.34791309128161, 34.73960796603636], [-77.34756955345223, 34.73911241685834], [-77.34755021561607, 34.73909869304767], [-77.34753415239754, 34.739084710605354], [-77.34708654522875, 34.738666938123274], [-77.34706246518522, 34.738646744261985], [-77.34674604067698, 34.73825064572872], [-77.34670487975883, 34.738172113981065], [-77.34663388880878, 34.73806041232932], [-77.34625378304334, 34.73773068717652], [-77.3461904538338, 34.73735211189246], [-77.34603842063544, 34.73710796822731], [-77.34581637415316, 34.73675138657667], [-77.34560614786055, 34.73665207105534], [-77.34522924430652, 34.73580850079744], [-77.34624498380595, 34.73616073601961], [-77.34727526189731, 34.735852873564205], [-77.34752416888836, 34.73596524721526], [-77.34781830057474, 34.73604519325886], [-77.3481402228272, 34.73610984183683], [-77.34831714944056, 34.73614370458606], [-77.34838494440164, 34.73615626449769], [-77.3485468982366, 34.736194989313454], [-77.34894361782932, 34.73629477320184], [-77.34907916082835, 34.73634597782289], [-77.34941658875454, 34.73632727950509], [-77.34964025862587, 34.735914401604596], [-77.34963927662626, 34.7359041446634], [-77.34964898101423, 34.735894911938594], [-77.34966180238015, 34.73588419822959], [-77.34997470857098, 34.73554524207884], [-77.35008455147931, 34.73545976678163], [-77.35020563217827, 34.73533904476928], [-77.35030861402996, 34.735202819618195], [-77.350542800405, 34.734825989190114], [-77.35055519293948, 34.734803693286125], [-77.35056245007262, 34.734789456720826], [-77.35060787108446, 34.7346891042995], [-77.35078433572117, 34.734347786652876], [-77.35109230535511, 34.73400911207531], [-77.35136497432387, 34.73371779817749], [-77.35132173992862, 34.73354741053588], [-77.35155104429202, 34.732717498370306], [-77.35198143983385, 34.73202213023758], [-77.35217075899628, 34.73174663011636], [-77.3522159046131, 34.73165148490876], [-77.3522472046049, 34.73154393807271], [-77.35231609372545, 34.731150352388184], [-77.3522807715569, 34.731123917494635], [-77.3522519588455, 34.73109077563854], [-77.35211061796802, 34.73093486359718], [-77.35204266263108, 34.730912883315625], [-77.35190598203987, 34.73087377716263], [-77.35170558555356, 34.7309100395445], [-77.35155703082323, 34.730767151939496], [-77.35130829864625, 34.73068939246522], [-77.35119017877899, 34.73062269947629], [-77.35088459020474, 34.730372059368975], [-77.35079328326009, 34.730297170715055], [-77.350375542525, 34.729954539599], [-77.35029726512585, 34.72989033692711], [-77.3502346569766, 34.72978884688178], [-77.34939475433653, 34.72911437650945], [-77.35061499099768, 34.72847947859218], [-77.35099303295722, 34.72856673355088], [-77.35162889595993, 34.72871349297841], [-77.3517376168944, 34.72873797120005], [-77.35178137843396, 34.72874868612036], [-77.3518885504921, 34.728772124996546], [-77.35230040561986, 34.728862139148234], [-77.35259350013791, 34.72867536697434], [-77.3528241697901, 34.72849606110084], [-77.35303778632486, 34.72817636120389], [-77.35306145598732, 34.728123753228886], [-77.35323980509548, 34.72762674716306], [-77.35324541286458, 34.7276111203097], [-77.35325007151388, 34.72759693141087], [-77.35331808534892, 34.72711376225336], [-77.35337914180612, 34.726731148142946], [-77.35339818529576, 34.72661538456532], [-77.35342455382316, 34.72647503622409], [-77.35367733160206, 34.72618310673617], [-77.35377581036364, 34.7260761657287], [-77.35387154849424, 34.72595812994436], [-77.35385828079347, 34.725582852934714], [-77.35385495158339, 34.725577919222445], [-77.353854397636, 34.725577120083386], [-77.35385391379653, 34.7255750835081], [-77.35354549285529, 34.725026358292034], [-77.35312151972934, 34.724930029176946], [-77.35286441159774, 34.72485837344006], [-77.3527449825915, 34.724853799400634], [-77.35250486386934, 34.72478847350681], [-77.35318282166624, 34.723762004274626], [-77.35424292724241, 34.723370699621526], [-77.35459541458083, 34.72343020201725], [-77.35471633524557, 34.72351013721696], [-77.35544798260453, 34.72356268917528], [-77.35564044977757, 34.723547219159805], [-77.35611033968148, 34.72384151558737], [-77.35618082035477, 34.72428384831462], [-77.35627148608941, 34.72450595822069], [-77.35617695329711, 34.7247717645662], [-77.35616078217424, 34.724985344300926], [-77.35615818659439, 34.72501803354829], [-77.35615294284713, 34.725063077875774], [-77.35612935603791, 34.72526568351161], [-77.35614051271688, 34.7253951503623], [-77.35608934726555, 34.725758560637644], [-77.35608931895027, 34.725828750169455], [-77.35606422397953, 34.72600570206052], [-77.35610284405102, 34.72607913336289], [-77.35616189861057, 34.726167123569056], [-77.35635761119005, 34.72620175911135], [-77.35637042088828, 34.72618876822592], [-77.35662379145383, 34.72611848396841], [-77.35682225693937, 34.72566386492835], [-77.35682484254613, 34.72565839269984], [-77.35682527619875, 34.72565752204923], [-77.3568560608013, 34.72563306212419], [-77.35720358518297, 34.72535573885006], [-77.35721804716972, 34.72535455978227], [-77.35752253441905, 34.72531446647459], [-77.35779952290909, 34.72524552014257], [-77.35816227187756, 34.72517354306147], [-77.35865060494622, 34.72491950880982], [-77.35867793419226, 34.72474735697488], [-77.3589681926057, 34.72446025408889], [-77.35926277139295, 34.72456979582793], [-77.35954972864941, 34.724519751379404], [-77.35963314680194, 34.724784588200855], [-77.35970633881374, 34.72501695765568], [-77.35970672318295, 34.725018177926515], [-77.35997140423072, 34.72512984981165], [-77.36001226771806, 34.7251757953763], [-77.36018678986929, 34.72519594612294], [-77.36024951801515, 34.725203188879064], [-77.36031443972647, 34.72517841636656], [-77.36050033857336, 34.72508554083015], [-77.36053533051258, 34.72497045070844], [-77.36052891899335, 34.724905268916515], [-77.36047686696267, 34.72481832026886], [-77.36034990057033, 34.724686159719674], [-77.36033598385387, 34.7245324918538], [-77.36024670456987, 34.72418163313394], [-77.35979945426598, 34.724156861400196], [-77.35955964305694, 34.723819908465615], [-77.35995441424497, 34.72332546813496], [-77.36067263380045, 34.72271456145623], [-77.36181488604325, 34.72260608987176], [-77.3619193376215, 34.72254538776493], [-77.36195881684856, 34.72254852403528], [-77.36312729957842, 34.72250962777293], [-77.36414328373644, 34.72239135393286], [-77.36382455706836, 34.72323416097577], [-77.36396492063179, 34.7233170868567], [-77.36399477794367, 34.723646803106675], [-77.36401543156092, 34.72369533222489], [-77.36400468418351, 34.72372283641251], [-77.36411829699132, 34.72398754455622], [-77.36421281264184, 34.72415560816776], [-77.36427251157438, 34.72459827559459], [-77.36428185235287, 34.72463351387495], [-77.36428518804327, 34.724647604058646], [-77.36429281267559, 34.724682912559764], [-77.36444487923386, 34.72485481454326], [-77.36450528725426, 34.72487248053662], [-77.36461484147486, 34.72490154017613], [-77.36481234460476, 34.72495599948677], [-77.3648947088482, 34.724967064482506], [-77.3653807565838, 34.724941877455194], [-77.3654261469785, 34.7249043269289], [-77.36574336315886, 34.724624935163945], [-77.36617608000022, 34.724383651405994], [-77.36662173531562, 34.7244265853035], [-77.36677686587709, 34.72437679894666], [-77.36689764128242, 34.72437114422494], [-77.36738424516655, 34.724347225824786], [-77.3678518243178, 34.724268485477545], [-77.36798138757666, 34.724352918700724], [-77.36842859373219, 34.724451015635175], [-77.36854676419675, 34.724468060274475], [-77.36859912516557, 34.7244819067447], [-77.36910158813899, 34.72440902308557], [-77.36916335948874, 34.72440672176433], [-77.36920075431365, 34.72441317159791], [-77.36941066251333, 34.72436373446148], [-77.36953328335916, 34.72416370299561], [-77.36953818825641, 34.72415762990712], [-77.36954006856082, 34.724152044790245], [-77.36951872237601, 34.723914050587354], [-77.36951775069222, 34.72377496004668], [-77.36943558763741, 34.72346870425529], [-77.36942651514474, 34.72345091580468], [-77.3694274976314, 34.72343919405615], [-77.36935372980096, 34.72335610067087], [-77.36923227713176, 34.723206139461105], [-77.36906646890847, 34.72300140942897], [-77.36899695347964, 34.722916873745945], [-77.36865613394048, 34.72286101102276], [-77.36807963422149, 34.722865610817706], [-77.36781572859606, 34.72286056806878], [-77.36762055755345, 34.72286944744414], [-77.3672687713943, 34.72276101426583], [-77.36688933888149, 34.72264365738668], [-77.36674202823596, 34.72243379468288], [-77.36621178899573, 34.72248726334369], [-77.36596836624952, 34.722563888688114], [-77.36548575591148, 34.72263604113158], [-77.36493494931631, 34.722106854023295], [-77.3658298651311, 34.72145051078667], [-77.36607561330469, 34.721090308711524], [-77.36617234498082, 34.72096208760884], [-77.36641004160191, 34.72064701137776], [-77.36665275738099, 34.720325283673134], [-77.36724525814901, 34.720004256531055], [-77.36748280087893, 34.71988148865317], [-77.3676042782752, 34.71989192225277], [-77.36860846026629, 34.71974365872018], [-77.36872533306432, 34.71972640278363], [-77.36934936439081, 34.719550794334836], [-77.36992557039937, 34.71939571492319], [-77.37006677046742, 34.71940984076329], [-77.37018659472912, 34.7194357479941], [-77.37091291857931, 34.71954714179964], [-77.371151205843, 34.71962011877993], [-77.37160566051683, 34.71960774244407], [-77.3718154910956, 34.71964101319248], [-77.37190510030257, 34.719686976161135], [-77.37217518439776, 34.719758441607475], [-77.37229295956368, 34.719812266609665], [-77.37254660898844, 34.71986683908221], [-77.37289653371208, 34.7200381099573], [-77.37298589610675, 34.72031727611602], [-77.37305529972792, 34.72089182975363], [-77.37288465106354, 34.72101453121055], [-77.37227439985867, 34.721476346683914], [-77.37176672851149, 34.72162577393849], [-77.37121912373769, 34.721817832773276], [-77.37123083308292, 34.72221660411351], [-77.37122759572006, 34.72245906704953], [-77.37110292321931, 34.72299114863115], [-77.37110391690433, 34.723208830736546], [-77.37114781205949, 34.723308998720135], [-77.3709871928759, 34.72371226366956], [-77.37103815519446, 34.72378765605869], [-77.37110783535827, 34.72389636586415], [-77.37113370579979, 34.72393582652538], [-77.3712433993061, 34.724023963932666], [-77.3713916219604, 34.72414407939063], [-77.37159211214525, 34.724290967089985], [-77.37175185397548, 34.72442118568467], [-77.37183908207848, 34.724471623796276], [-77.37189589706378, 34.724507462560695], [-77.37198224623111, 34.72455030646252], [-77.37205214253211, 34.72458434799269], [-77.37209956547713, 34.72460571416395], [-77.37219839351641, 34.72465755199047], [-77.37239807214547, 34.72468186254082], [-77.3724408981129, 34.72468003001609], [-77.37247837811867, 34.72465626609927], [-77.37261702553131, 34.72459389267512], [-77.37275693302638, 34.72455001851519], [-77.37297204390866, 34.724426141799434], [-77.37312599765806, 34.7243830056253], [-77.37318653820212, 34.724344981665865], [-77.37330700713758, 34.72422557617837], [-77.37351873998239, 34.72413438406473], [-77.37365504380679, 34.72404640434513], [-77.3737614101629, 34.72398703224821], [-77.37401032961833, 34.7238790957022], [-77.37429909513325, 34.72365479306794], [-77.37432114352374, 34.7236390207453], [-77.374334377488, 34.72362841595968], [-77.37436514756003, 34.72359636667579], [-77.37449986830579, 34.7231828142237], [-77.37467521088803, 34.72318853248218], [-77.37460557140636, 34.723049925804524], [-77.37450945942248, 34.72292977260653], [-77.37415438884457, 34.722446994084166], [-77.37411739836656, 34.72236075994797], [-77.37414052487989, 34.72199145364419], [-77.3741361625484, 34.72188140815649], [-77.37417530718083, 34.72187157660137], [-77.3746767598963, 34.72197496456289], [-77.37477071725694, 34.72202933213933], [-77.37499622955355, 34.721994615277914], [-77.37512794269331, 34.721964586270346], [-77.3754594065213, 34.72186558750119], [-77.37551252581179, 34.72184523091507], [-77.375577402195, 34.72182676641522], [-77.37598922962438, 34.7215808929929], [-77.37615210769667, 34.72146875860069], [-77.37616857913129, 34.721421443069346], [-77.37636306189525, 34.72142513721765], [-77.37689176527351, 34.7213485432614], [-77.37704952202776, 34.72136563214414], [-77.37720826035243, 34.721362646419735], [-77.37728520653903, 34.721376956460226], [-77.37739594020472, 34.721344991578434], [-77.37748234696792, 34.72132521419693], [-77.37755003230615, 34.72128961786094], [-77.37780976071889, 34.721112323330935], [-77.37798567510728, 34.72099224043481], [-77.37835115960723, 34.72073822236598], [-77.37845696325988, 34.720674071611846], [-77.37931837023383, 34.72108632768618], [-77.37953096647799, 34.721091652838595], [-77.37961406622918, 34.721070093810305], [-77.37974955548368, 34.72105050011695], [-77.38101989495482, 34.720379391969516], [-77.38102207715372, 34.72037948370959], [-77.38102402403163, 34.72037823878356], [-77.38118108715932, 34.72031014835983], [-77.38174171661919, 34.720059765199125], [-77.38175419734375, 34.7200582556897], [-77.38182667616223, 34.72004112706591], [-77.38213114869819, 34.719948354937685], [-77.38225655843098, 34.71986198907153], [-77.38239151299048, 34.719738530619196], [-77.38237842385075, 34.71960437119178], [-77.38255264555806, 34.718846021223165], [-77.38263004546994, 34.71870365519452], [-77.38283080691195, 34.718556857613706], [-77.38314827056395, 34.71859780761234], [-77.38356372534378, 34.718549457791084], [-77.38381068826156, 34.71855772597527], [-77.38405289978373, 34.71822081543506], [-77.38415165943637, 34.718117891612884], [-77.38439321508768, 34.7171864007998], [-77.38438580306114, 34.717081485683096], [-77.38425614004106, 34.715458339289526], [-77.38385751923317, 34.7146598274333], [-77.38446245986222, 34.71403171537003], [-77.3845554844383, 34.71266743573443], [-77.38439794761796, 34.71182889149658], [-77.38447375038515, 34.71152047101515], [-77.38450303064836, 34.711104085427614], [-77.38450866787232, 34.710414332529], [-77.38442138470144, 34.71003394576456], [-77.38404624494436, 34.709944544297386], [-77.38370419302375, 34.709797056328334], [-77.38347964856551, 34.70968772601491], [-77.38318519800441, 34.70965657603729], [-77.38287552325005, 34.70956032221309], [-77.382441840209, 34.70922861698321], [-77.3822737036009, 34.70914387654169], [-77.38180021465249, 34.70884713088201], [-77.38120204922227, 34.70869704799361], [-77.38059044797845, 34.7085975959812], [-77.3801755577227, 34.70823313707867], [-77.38041020415264, 34.70786118319944], [-77.38040074494549, 34.70738583391009], [-77.38039826094972, 34.70724775657844], [-77.38042144402651, 34.70696997049974], [-77.38043702267642, 34.706785316549926], [-77.38043973735924, 34.70675314042586], [-77.38023986592319, 34.7064908814327], [-77.38022004572926, 34.70642945716123], [-77.38015020296669, 34.70637217512579], [-77.37998768105211, 34.706255245317145], [-77.37981432041316, 34.70625457776387], [-77.37971397083442, 34.70626198727492], [-77.37965871322243, 34.70628435076017], [-77.37938120257184, 34.70638253257871], [-77.379351447375, 34.70641732487809], [-77.37929142499529, 34.70644557513528], [-77.37902541092856, 34.706632372165814], [-77.37866891908602, 34.70669234171627], [-77.37856453164004, 34.70674151719815], [-77.37840758991686, 34.70673850605498], [-77.37819405199706, 34.70676907795249], [-77.37809814043304, 34.70686746407851], [-77.37801214125281, 34.70702158304098], [-77.3777260343303, 34.707422195631956], [-77.37770118759593, 34.70745973126429], [-77.37768365906209, 34.707486471196546], [-77.37736716946104, 34.70791415671013], [-77.37715849640925, 34.708068852578165], [-77.37685115536051, 34.70822823970063], [-77.37569752147046, 34.70893040763107], [-77.37558561819691, 34.70909495779988], [-77.37468647819514, 34.70954576478705], [-77.37408414707285, 34.70951168515371], [-77.37388146231655, 34.70820526566881], [-77.37384860033748, 34.70755613755622], [-77.37382250402317, 34.70723858462155], [-77.37373791284796, 34.70712177843636], [-77.3739122041689, 34.70633626579156], [-77.37397117910015, 34.70624335826865], [-77.37451252698159, 34.70559189075283], [-77.37494468836093, 34.70513473922032], [-77.37555778058919, 34.70443193139593], [-77.37596664502982, 34.704617523795875], [-77.37612760082972, 34.70453128187431], [-77.37619859363267, 34.704533214610535], [-77.37661191247821, 34.704515047267584], [-77.37672856354226, 34.704523268881495], [-77.37682155729337, 34.70455079225618], [-77.37692012936755, 34.70453433668184], [-77.37703044812385, 34.70451442336524], [-77.37706466074545, 34.70447773172482], [-77.37705085097132, 34.70444408418827], [-77.3770319078576, 34.704388852610684], [-77.37700374358997, 34.704364258258565], [-77.37694415149754, 34.704295980373736], [-77.3768816294367, 34.70430740486845], [-77.37682051539997, 34.704206266641215], [-77.37675899881182, 34.70415421040002], [-77.37659629163447, 34.70413279301873], [-77.3763971177314, 34.70396026697223], [-77.37636511079837, 34.70391648864401], [-77.37642663780379, 34.70371251036866], [-77.37638064411615, 34.70365893774278], [-77.37629446307747, 34.7035765980981], [-77.37621031256545, 34.70349855438062], [-77.37615134625399, 34.70341755571041], [-77.37597509737463, 34.70342818382685], [-77.37590198057349, 34.70324535891659], [-77.37571790178478, 34.70323190732448], [-77.37557756129343, 34.70309815073347], [-77.37575094322337, 34.702860431150974], [-77.37556582252337, 34.70261237008027], [-77.37554680614235, 34.702575073056906], [-77.37552786179319, 34.70247139366391], [-77.37521386779382, 34.70217336150145], [-77.37540484044136, 34.70191569985767], [-77.37539937125423, 34.70190002490123], [-77.37522661407812, 34.70168421375068], [-77.37517522988794, 34.70162338008702], [-77.37497145473345, 34.70144090804924], [-77.37493991207957, 34.70140278034799], [-77.3747788378044, 34.7012583783378], [-77.37474322519428, 34.70122233730274], [-77.37471227328777, 34.701155712714595], [-77.3746947543533, 34.701148089158906], [-77.37469224059728, 34.70112482997852], [-77.37466437978206, 34.70108590001641], [-77.37462346730698, 34.701036040654124], [-77.37460433041406, 34.70101192248755], [-77.37445324156512, 34.70105130822206], [-77.37444722112231, 34.70103762214467], [-77.37442024431493, 34.70104337242807], [-77.37443099804831, 34.701068432314464], [-77.37442992925241, 34.70109723127795], [-77.3744521847723, 34.701249257810474], [-77.37446651212932, 34.70130131572841], [-77.37430091665765, 34.70154196568558], [-77.3742889369744, 34.7015651466465], [-77.37428299584776, 34.70157664273177], [-77.37429588006904, 34.701812168010434], [-77.37410522348372, 34.70210776824602], [-77.37401132557555, 34.70233868109315], [-77.3738467785976, 34.70244962629904], [-77.37367536848885, 34.7026665425793], [-77.37343101363766, 34.702905849694844], [-77.37332610231044, 34.703264546892214], [-77.37314523733255, 34.70343252684533], [-77.37270862087377, 34.70399370459501], [-77.37164739390303, 34.70399981602117], [-77.37168007110782, 34.70363392096035], [-77.37157958003061, 34.703263497378934], [-77.37162917164184, 34.70303731606806], [-77.37164552402456, 34.702663882588254], [-77.37171565838617, 34.70237021974142], [-77.37173218201275, 34.7021645788584], [-77.37182062996528, 34.701930694588704], [-77.37181576462912, 34.70189889674087], [-77.37173519031876, 34.7018549928053], [-77.37153081395235, 34.70180495115187], [-77.37127997027162, 34.7019170850927], [-77.37066774535813, 34.70218546548581], [-77.37015455819318, 34.7024218806111], [-77.37001732625865, 34.702100523316496], [-77.37005152432351, 34.70190818127556], [-77.37005761906141, 34.70164486284435], [-77.37003796640045, 34.70142265273525], [-77.3700661905023, 34.70127439756314], [-77.37013325004747, 34.70092216450116], [-77.37015413919872, 34.700812440173266], [-77.37021251246739, 34.70050582711856], [-77.37025589069538, 34.70041791608743], [-77.37038430683977, 34.7002410013663], [-77.37059151086842, 34.69988439381642], [-77.37067171369327, 34.69963643272546], [-77.37080573821349, 34.69912806625588], [-77.37081323738647, 34.69887913320712], [-77.37081757306399, 34.69872469769259], [-77.37068354830568, 34.69853540901421], [-77.37062657090641, 34.69847747401572], [-77.37018378121549, 34.69819474196545], [-77.37000636983194, 34.69801524586325], [-77.36955345981825, 34.697726528909314], [-77.36922505875133, 34.6973727855359], [-77.36910740211604, 34.69728140058959], [-77.36902571349054, 34.69717524058047], [-77.36874536135716, 34.696962988717594], [-77.36856831624979, 34.69690788152988], [-77.3682254253189, 34.69669188310051], [-77.36724053491358, 34.696595995722234], [-77.3669024733679, 34.69661322053886], [-77.36606942453028, 34.69587034900319], [-77.3654488057245, 34.695717208283874], [-77.36437576600217, 34.69540422256219], [-77.36384625520668, 34.69528036417892], [-77.36245961706247, 34.69491176253035], [-77.36162336695836, 34.69468946916763], [-77.36131386293839, 34.6946071895337], [-77.36096032254589, 34.69438430407966], [-77.35858959428242, 34.69355023527181], [-77.35722334265752, 34.69335026937539], [-77.3568363697884, 34.693001202953724], [-77.3561608739651, 34.692265837448886], [-77.35538891997905, 34.691421460727724], [-77.35525994190155, 34.6913824060689], [-77.35527000542217, 34.69126677600816], [-77.35489972768252, 34.69087123427585], [-77.3549207432061, 34.690782494789836], [-77.35498801858898, 34.69074053256917], [-77.35521475913194, 34.690404873153234], [-77.35531950866951, 34.69028520955445], [-77.35540257575244, 34.690252238073015], [-77.3554461148043, 34.6901934870875], [-77.35558378670407, 34.690093747413265], [-77.35561936153854, 34.68992316927917], [-77.35532523213092, 34.689797038924844], [-77.35529732623993, 34.6897768193366], [-77.35526996472181, 34.68976932045676], [-77.35520610134162, 34.68975894552965], [-77.35467991182809, 34.689739981433306], [-77.35408661951116, 34.68996712712497], [-77.3540442074566, 34.69000547451946], [-77.35393226081672, 34.69047570528589], [-77.35352090582556, 34.69081810323941], [-77.35310768599807, 34.69103191448771], [-77.35302768257714, 34.691087298072816], [-77.35265793326843, 34.69132962726574], [-77.35236159553945, 34.69153996471871], [-77.35213886402872, 34.69169671732223], [-77.35193588857629, 34.6919660857906], [-77.35156216337944, 34.692231689856946], [-77.35118220616609, 34.69257450255102], [-77.35093767892225, 34.692836393981594], [-77.35052557435456, 34.69326896385975], [-77.35039080634485, 34.693398853665876], [-77.35018869708001, 34.69360860678259], [-77.35014571382504, 34.69374146121491], [-77.35016520396236, 34.693917205905684], [-77.3503876557137, 34.69421508248883], [-77.35051286397318, 34.69424729996037], [-77.35085801796738, 34.69465675114173], [-77.35101146633596, 34.69465198220749], [-77.35147006405066, 34.69538279636656], [-77.35168411414404, 34.6956582118553], [-77.35156810230836, 34.69580039218446], [-77.35084469351693, 34.697381547098864], [-77.34985687178717, 34.69711721952317], [-77.34988867004803, 34.69687945495787], [-77.34924784822492, 34.69607878397298], [-77.34921098931099, 34.69603749125726], [-77.34921889397143, 34.695996634279894], [-77.34920119697841, 34.695924636177], [-77.34912960989345, 34.695705929324724], [-77.3489348684652, 34.69554824060991], [-77.34889929332924, 34.6954889749207], [-77.34882436926283, 34.695475663240046], [-77.34869443640011, 34.69547539138322], [-77.34822877468429, 34.69546523872721], [-77.34792467837322, 34.69545057293933], [-77.34758232833921, 34.6952465094061], [-77.34726533618374, 34.695169569813785], [-77.34716698822035, 34.694998809310334], [-77.34704902635947, 34.69483232814581], [-77.34683276035662, 34.69471407570419], [-77.34672720407517, 34.69463280865571], [-77.34668193354302, 34.69460777293378], [-77.34654430679672, 34.69454185859625], [-77.34631776140353, 34.6944453134095], [-77.34622190865625, 34.694395760713036], [-77.34617077226446, 34.69430663802949], [-77.34593226015961, 34.69430322237429], [-77.3456696286271, 34.69453426365369], [-77.34523908184549, 34.69496530647886], [-77.34516427631928, 34.69509099689115], [-77.34516295855455, 34.69521057868077], [-77.34509088533892, 34.695588446033334], [-77.3450174617323, 34.69604546829204], [-77.34500694558798, 34.69608734542441], [-77.34483560246953, 34.696250798256116], [-77.34450637228582, 34.69664341663952], [-77.34435718908159, 34.696736739674535], [-77.34425284001813, 34.69678792688029], [-77.34381778491657, 34.69703392948154], [-77.3434831639702, 34.69723850969019], [-77.34326773538103, 34.69745714052327], [-77.3428909266548, 34.69783984433167], [-77.34282167751635, 34.69792871696183], [-77.34267916818402, 34.698083689649394], [-77.34228978797513, 34.69820956173368], [-77.34185816578486, 34.69835115754829], [-77.34143369576444, 34.69824950676893], [-77.34129757404956, 34.69818462537707], [-77.34095273005562, 34.6981057730477], [-77.34087955911656, 34.69809626614531], [-77.34085295407296, 34.69809827809593], [-77.34073065799228, 34.6981362402723], [-77.34057942349574, 34.698174936725025], [-77.34054790837341, 34.69820753150012], [-77.34039650279955, 34.69833193188937], [-77.340117099683, 34.69866010834701], [-77.34006894204941, 34.69871439748099], [-77.33979833433328, 34.69907829355388], [-77.3395928872147, 34.699267079448255], [-77.339621632905, 34.699474000036126], [-77.33958392882496, 34.69975568476434], [-77.33958722714253, 34.700167839157224], [-77.33927967508257, 34.70028479676051], [-77.33829218236214, 34.70082021092792], [-77.33790062707153, 34.70122591709337], [-77.33734412194525, 34.70152504194768], [-77.33626383741901, 34.702328168879795], [-77.33534126600784, 34.70273425060213], [-77.33389282490884, 34.70309267402645], [-77.33276090839557, 34.70337277985455], [-77.33196377939413, 34.703622574017196], [-77.33024011538072, 34.70380612658309], [-77.32894679356086, 34.70374400814895], [-77.32786574919373, 34.703735659475946], [-77.32591066345984, 34.70309271109041], [-77.32573806173237, 34.70305900641844], [-77.32568034849372, 34.70301512976692], [-77.3245506734674, 34.70215626345474], [-77.32363694122112, 34.70152211878936], [-77.32360588740484, 34.70145912398451], [-77.32261748026846, 34.700729767205026], [-77.32172917245252, 34.70013109949638], [-77.32144805065064, 34.70005275044288], [-77.32129151874886, 34.69982681462068], [-77.32094183779718, 34.69965387650124], [-77.32069202147656, 34.69957997140103], [-77.32026425042457, 34.699631565580624], [-77.31968941924208, 34.69982885179847], [-77.31938873930375, 34.69994409710512], [-77.31922848001547, 34.699989868770416], [-77.31813393338527, 34.70014147039184], [-77.31787344516486, 34.70006498690095], [-77.31755719563935, 34.70006592288975], [-77.31729000852529, 34.7000976814198], [-77.31725746444445, 34.70006722045959], [-77.31722306890121, 34.70012661643267], [-77.3172091158362, 34.70015988614556], [-77.31723874472874, 34.70038208797272], [-77.31705489496957, 34.70061596270681], [-77.31675405057713, 34.701297962027766], [-77.31680153235229, 34.70141670621861], [-77.31630245363901, 34.702321696672584], [-77.31622973610757, 34.70243813081896], [-77.31406407936274, 34.70257823290147], [-77.31383740781452, 34.70256281588305], [-77.31328242001936, 34.702377910549764], [-77.31162469088255, 34.70193637631857], [-77.31132437869769, 34.70153228500398], [-77.31116391597429, 34.70121413292065], [-77.31023906041972, 34.70079055437425], [-77.30992457827779, 34.69954798723028], [-77.30984495421241, 34.699517375839044], [-77.30980367021185, 34.69945096826272], [-77.30982143480855, 34.69930766919481], [-77.30948341191142, 34.69852010471388], [-77.30972480933463, 34.69803356353191], [-77.30970210610367, 34.69800280180132], [-77.30969920195375, 34.69792208570686], [-77.30959828324004, 34.69773679971056], [-77.30950129869292, 34.69774651136144], [-77.30921592082413, 34.697867844134535], [-77.30893702928384, 34.69785117368634], [-77.30826057729874, 34.6979229184801], [-77.30797171617783, 34.69802867344956], [-77.30771196037357, 34.69800499057857], [-77.30675265180038, 34.69810306339673], [-77.30570522196724, 34.698210133917414], [-77.3055049440679, 34.698275873690264], [-77.30517209778425, 34.6981356581091], [-77.30601755842342, 34.69615542044699], [-77.30608137455641, 34.69606175765646], [-77.30611430432444, 34.6960186899422], [-77.30617295806107, 34.695979903444176], [-77.3067686722015, 34.695322085629684], [-77.30762796768101, 34.69487529864828], [-77.30765834178406, 34.69483425876013], [-77.30770195209766, 34.69484008744324], [-77.3077171123737, 34.6948487101018], [-77.30774396846591, 34.69485941604012], [-77.30847087672595, 34.6950572368944], [-77.30883368741394, 34.69506571672905], [-77.30937033879866, 34.69507602155156], [-77.30948736978958, 34.69506375228734], [-77.31003779592987, 34.69504255882713], [-77.31070658100109, 34.69542845624759], [-77.3109389524544, 34.69552381027799], [-77.31107674164484, 34.69558719460811], [-77.31159501671505, 34.69580745345657], [-77.3116103458994, 34.6958109448195], [-77.31164561358608, 34.69581747447492], [-77.31218673993317, 34.69588758639323], [-77.3124432310376, 34.69594334243309], [-77.3127515864646, 34.69600393409761], [-77.31301335356174, 34.69608725729998], [-77.31321834857904, 34.69613543774761], [-77.31330014465732, 34.69617628414867], [-77.31378558472512, 34.69646884925605], [-77.31379623777269, 34.69647918967215], [-77.31385117936317, 34.69649700911127], [-77.31434284949063, 34.69670808278815], [-77.31483829920285, 34.69646600807904], [-77.31500318218652, 34.69649612611707], [-77.31513475545611, 34.69635859376036], [-77.31518982946152, 34.69627650341099], [-77.31578273014655, 34.69587422780463], [-77.31599432899056, 34.69584404632991], [-77.31663622623799, 34.69587156044267], [-77.31698332341126, 34.695863108829286], [-77.31748589929622, 34.695890125864636], [-77.31757142126713, 34.69589949341234], [-77.3176181335355, 34.69590460981129], [-77.31777409601818, 34.69592248048657], [-77.31806488225256, 34.69595512552924], [-77.31815099383316, 34.69596519345727], [-77.31850790724744, 34.69600850251542], [-77.31872757712259, 34.69604117332184], [-77.31918364421139, 34.69611906847251], [-77.31930525381738, 34.69611339377249], [-77.31936656777877, 34.69613632002129], [-77.31965537561913, 34.69615208894943], [-77.31988776406337, 34.696168990864095], [-77.32048076280596, 34.69606761083444], [-77.32051558989575, 34.69606873541143], [-77.3205579791666, 34.69606111715314], [-77.32085262046076, 34.69598803828288], [-77.32115950481455, 34.69591313473467], [-77.32127626618977, 34.69592998606546], [-77.32161569263836, 34.695982942319134], [-77.32173728903881, 34.69598497427888], [-77.32191712419618, 34.695989679002196], [-77.32257394783669, 34.69603414091377], [-77.32289695403975, 34.696114563669774], [-77.3232295814437, 34.69631808079824], [-77.32358180335085, 34.6965887617587], [-77.32373340795195, 34.696718776208904], [-77.32387576058834, 34.696866264142955], [-77.3243888358136, 34.69690500700417], [-77.32445718966525, 34.696925584651154], [-77.324476200239, 34.69693568265688], [-77.32462463502857, 34.696933204037805], [-77.32505293987082, 34.69693563872292], [-77.32512985665183, 34.696923763890155], [-77.32551298579759, 34.69692646719554], [-77.32565335852769, 34.69692963057707], [-77.32586738033152, 34.696939414363186], [-77.32600174076664, 34.69694465184673], [-77.32621767689257, 34.697047806264976], [-77.32639201033726, 34.69703858287707], [-77.3264773857612, 34.69716662036571], [-77.32670704703729, 34.697423818320296], [-77.32682373467131, 34.69749473707192], [-77.32690636435343, 34.697595186033276], [-77.32694822069159, 34.69762390977813], [-77.32720295875038, 34.69755452912521], [-77.3272596973472, 34.697535779195725], [-77.327273224365, 34.69753561062206], [-77.3277939607455, 34.697371149403324], [-77.32792953506157, 34.69733731601869], [-77.32824592261797, 34.69718906602954], [-77.3286089185983, 34.69705962612979], [-77.32879738915459, 34.69698415828583], [-77.3288458503333, 34.69684193970208], [-77.32897455312289, 34.696628618912094], [-77.32925727304895, 34.69611513112057], [-77.33011126671879, 34.69575426054127], [-77.33019897309055, 34.69570839713424], [-77.33023181067992, 34.695702527547354], [-77.33037251206575, 34.695657891416246], [-77.33085785412449, 34.69550116760496], [-77.33119311852471, 34.69527819174394], [-77.33137988601196, 34.695032395764485], [-77.33171092453192, 34.694625723369384], [-77.33179102105356, 34.69453158595445], [-77.33180427264226, 34.694486832855276], [-77.33183710480493, 34.69442669325794], [-77.3319710812501, 34.69397658823918], [-77.33193859705625, 34.69384229665826], [-77.33189540191658, 34.693593600344066], [-77.33183032776937, 34.69350851763336], [-77.33180051048342, 34.693263165470505], [-77.33217951584112, 34.693013272063226], [-77.33270227630567, 34.69241420483542], [-77.33272504914856, 34.692167127175786], [-77.33279898707973, 34.691913571821395], [-77.3328005998622, 34.69159642112232], [-77.33285204579634, 34.69141892334002], [-77.33292170040689, 34.69122759025484], [-77.33295621145663, 34.690429889118136], [-77.33268249361234, 34.689835103979405], [-77.3327573497807, 34.6894824219335], [-77.33276210923624, 34.689008636644836], [-77.33276535852063, 34.688983109508925], [-77.33276069523701, 34.68895332347592], [-77.3327379717404, 34.68851033710384], [-77.33276634688053, 34.688194095942016], [-77.3328608344791, 34.68781936657122], [-77.333221128978, 34.687469331530465], [-77.33345341245902, 34.68706808961781], [-77.33348588000052, 34.686852285666276], [-77.33343884138169, 34.68661953067016], [-77.33342043928289, 34.6865085045858], [-77.3332796470225, 34.68648656322791], [-77.33300075556204, 34.686437255303055], [-77.33289508517763, 34.68643083964629], [-77.332690694614, 34.68639164201086], [-77.331779412521, 34.686150381158036], [-77.33142863753012, 34.68607022896332], [-77.3307014973099, 34.68590422811825], [-77.3306558259277, 34.68589717327849], [-77.3306357479515, 34.68589196800989], [-77.33058936222206, 34.68588074917167], [-77.32984350489781, 34.68571320411053], [-77.32953122104047, 34.68564747529739], [-77.32874143055349, 34.68544259580017], [-77.32840763709021, 34.685394278498194], [-77.32819321152512, 34.68540629183744], [-77.32805548576779, 34.68525343188714], [-77.32714039557642, 34.68463975452027], [-77.32653357731802, 34.683604226322224], [-77.3264400624745, 34.683602074892065], [-77.32633861855788, 34.68353933140227], [-77.326459884826, 34.683418834434214], [-77.32660987875192, 34.68334170306627], [-77.32675446648746, 34.683360216971785], [-77.32792072038434, 34.682950493971326], [-77.32806345162012, 34.683141460397565], [-77.32828108340894, 34.68327302647849], [-77.32870587511812, 34.68343546960443], [-77.32894855324845, 34.68353305372041], [-77.32932858151867, 34.6834096236234], [-77.33018860256877, 34.683385392854674], [-77.33069426211046, 34.68334409031258], [-77.33079982863413, 34.68334183151438], [-77.33087040197422, 34.68334673438853], [-77.3313700303719, 34.6834394373413], [-77.33247839003776, 34.683649681096654], [-77.3325064764764, 34.68364827959183], [-77.33253002376586, 34.68364640731141], [-77.33276109261035, 34.68363344707014], [-77.33367167027924, 34.683556321831745], [-77.33373263155198, 34.68354837858818], [-77.33384848518222, 34.68358802587668], [-77.33463898143245, 34.68360035384735], [-77.33491430172404, 34.68360156313184], [-77.33511537546113, 34.68362795588599], [-77.33528255461316, 34.68358309662636], [-77.33543301057738, 34.68338356905474], [-77.3355565286706, 34.68325003813989], [-77.33558970352308, 34.68321710612077], [-77.33563868660018, 34.68316848119862], [-77.33594372815864, 34.682892689929204], [-77.3361561108263, 34.68268041909022], [-77.33642217278629, 34.6825319358693], [-77.33687570366341, 34.68244245829943], [-77.33705727353399, 34.68240612057356], [-77.33731889757276, 34.68232667173955], [-77.3376970784982, 34.6822640997874], [-77.33879917921472, 34.681830454246274], [-77.33890931659548, 34.68169246659688], [-77.3392983778585, 34.68087259662106], [-77.339349017274, 34.68078026637834], [-77.3398089175093, 34.67993679359342], [-77.34127125108239, 34.680073720845165], [-77.34114980253091, 34.68053317843727], [-77.34113698638366, 34.68096535250328], [-77.34113529070524, 34.68102254793404], [-77.34113267558745, 34.68111074623328], [-77.34110677961685, 34.681513835589584], [-77.34133548299457, 34.68160091604465], [-77.34146403634732, 34.681659195167015], [-77.3416247466936, 34.68177248192572], [-77.34191931180831, 34.68188971832423], [-77.34196009268321, 34.681908586412554], [-77.34207161765065, 34.681943400251335], [-77.34254353014381, 34.682064013871496], [-77.34276910061936, 34.68207435663727], [-77.34311037410887, 34.68217313447272], [-77.34316176506938, 34.68220659641149], [-77.34341766070467, 34.682363594413], [-77.34359412541886, 34.68256835823313], [-77.34396974543944, 34.682727073348765], [-77.34396238886737, 34.68307147812597], [-77.3440287570502, 34.683132731565635], [-77.34452876939135, 34.683085213399025], [-77.34445480876377, 34.68349127654281], [-77.34448582930199, 34.683512423999666], [-77.3445112682714, 34.68353225837639], [-77.34498866334619, 34.683519638848615], [-77.3450222097711, 34.68383390331262], [-77.34505146145463, 34.68386548148334], [-77.34504130495375, 34.68389816186356], [-77.34505086375147, 34.68394690389705], [-77.34514552173059, 34.68418726601582], [-77.34527547438823, 34.68435340127502], [-77.34539082989326, 34.684625628736114], [-77.34555717899659, 34.684658815269486], [-77.34563296572055, 34.68479171394661], [-77.34553180585173, 34.68501168076564], [-77.34565052968183, 34.685375318034076], [-77.34571482188574, 34.68557105159103], [-77.34577597700473, 34.68567295254189], [-77.34577337808307, 34.68574720181297], [-77.34593536695547, 34.6858421640753], [-77.34599286918495, 34.68590021686508], [-77.34617288492377, 34.685899273356], [-77.34622771616242, 34.68586602569276], [-77.34640887988121, 34.68578936273503], [-77.3466779149943, 34.685623049394906], [-77.34694201495859, 34.685467458622625], [-77.34713665081634, 34.68556008296186], [-77.3473285549045, 34.68566068579386], [-77.34748711209278, 34.685651542572884], [-77.34773259750399, 34.685743926800946], [-77.34782426231311, 34.68576768977826], [-77.34809792323202, 34.68560932884823], [-77.34867338871055, 34.685414095237256], [-77.34837154047865, 34.685877952791124], [-77.34852640632266, 34.68592139075303], [-77.34849873660048, 34.68610418290126], [-77.34854511400005, 34.68613059185491], [-77.34866310540177, 34.68619228112456], [-77.34868222929725, 34.6861956535267], [-77.34867909122421, 34.68620645447996], [-77.3487116404774, 34.68631864706698], [-77.34874300609383, 34.68647974758635], [-77.3488396891692, 34.68646865652015], [-77.34883136298876, 34.686660611071616], [-77.34889029175208, 34.686781503574814], [-77.34887448966933, 34.686836056429954], [-77.34883913204905, 34.68698664923233], [-77.34884727583763, 34.68703109914195], [-77.34885473035493, 34.68712565719676], [-77.34898441759168, 34.68714563999358], [-77.34896801055788, 34.68725821562612], [-77.34888582696257, 34.68734719887809], [-77.34890020787874, 34.68740753666485], [-77.34891160271769, 34.68744513560248], [-77.3489819201408, 34.687432395188345], [-77.34907900634201, 34.68738396349542], [-77.34921273560184, 34.687364114400836], [-77.3494145209162, 34.687259180109386], [-77.34948623196135, 34.68724121945906], [-77.34964898490693, 34.68716473207251], [-77.34970869383177, 34.68711930534508], [-77.3497690668392, 34.686935972267804], [-77.34976530445358, 34.68690507270702], [-77.3497686944149, 34.686853354641045], [-77.34978400797684, 34.68665881395705], [-77.34982587833001, 34.68626576021124], [-77.34988548024809, 34.686157501882235], [-77.34993688320272, 34.686018452171695], [-77.34981607761625, 34.68587623360513], [-77.34963780080213, 34.68570412281732], [-77.34939337046524, 34.68564836874243], [-77.34933261132399, 34.68547988607438], [-77.34895312806219, 34.68531073417545], [-77.34887352982602, 34.685260069418895], [-77.34894062278518, 34.684768509247576], [-77.34897026984886, 34.68439725648483], [-77.34896200306235, 34.6843347534377], [-77.34853464216799, 34.683944146901354], [-77.34827369314428, 34.68294272637466], [-77.34815345168498, 34.682660796710714], [-77.34779861808808, 34.68254493360045], [-77.34722285803302, 34.68243914777653], [-77.34656027126468, 34.682310185822615], [-77.3462455581481, 34.681682359728725], [-77.34586436044228, 34.68126905721462], [-77.34590267028018, 34.68085565743428], [-77.3459771162083, 34.6802999435381], [-77.34677525242446, 34.6798582594367], [-77.34743745484776, 34.67904160577294], [-77.34775327033631, 34.678652110894504], [-77.34837848247928, 34.67732278999034], [-77.35168762915907, 34.676787221904874], [-77.35238328742817, 34.67703384002235], [-77.35282203113178, 34.67749084478061], [-77.35301790606891, 34.67792928719766], [-77.35328513559445, 34.678050481810956], [-77.35368433106109, 34.67840390355266], [-77.35418552905628, 34.67874371103256], [-77.35424064231114, 34.6787640938783], [-77.35426576345554, 34.678795794969616], [-77.35462165655436, 34.6792592152342], [-77.35470007086218, 34.67936141159939], [-77.35505927916755, 34.679598485013315], [-77.3551383927614, 34.6796498702501], [-77.35519666567235, 34.67971246501436], [-77.35557629427181, 34.679875062408925], [-77.35576258953907, 34.6799578101985], [-77.35577876373794, 34.679987056503826], [-77.35622358110378, 34.68029841947521], [-77.35629153842078, 34.68033906611408], [-77.35716799036256, 34.680283633647505], [-77.3573427908513, 34.68031827811447], [-77.35742869608774, 34.6802704574735], [-77.35744828784972, 34.680258189260805], [-77.35748695965282, 34.68023982262971], [-77.3578931080115, 34.68001429656825], [-77.35803404745661, 34.6797861713164], [-77.35807416187879, 34.67967177864092], [-77.35813621646614, 34.67959158148815], [-77.35829568046728, 34.67934539256185], [-77.35842452073544, 34.67913626562702], [-77.35876601943347, 34.67887345057431], [-77.35910800677902, 34.67860859087784], [-77.35915252351096, 34.67857786498447], [-77.35919857046275, 34.67854254830601], [-77.35916254499975, 34.678523252325206], [-77.35914127073836, 34.67849397462484], [-77.35908761840975, 34.67838382334383], [-77.35901755813461, 34.67832372081813], [-77.3589665203397, 34.67827993723172], [-77.35887805455522, 34.678099190813526], [-77.3587990777815, 34.67801462011921], [-77.35872209588752, 34.677876149041566], [-77.35864560067466, 34.67773855306202], [-77.35858844362676, 34.677651588028226], [-77.35851195538486, 34.67756915041737], [-77.35844501223959, 34.67749875300007], [-77.35828268963667, 34.677328053488836], [-77.35820839916224, 34.67728668516732], [-77.3580836226033, 34.67723354675762], [-77.35792778464713, 34.67710848986398], [-77.35778039125155, 34.676996672214386], [-77.35758143811042, 34.67698089380635], [-77.35756103961619, 34.67652869590246], [-77.3577732288352, 34.67630141094473], [-77.35803857363848, 34.67610709305728], [-77.35848830399743, 34.67620318371694], [-77.35858199534464, 34.6762106630622], [-77.35860679103892, 34.676211323795705], [-77.35864041522447, 34.67620916015665], [-77.35922099564704, 34.67615709511627], [-77.35934999433829, 34.6760848105509], [-77.35928465273378, 34.67593774739099], [-77.3587520909344, 34.676079719940745], [-77.35892045470136, 34.67518096460918], [-77.35891882658392, 34.67516926849778], [-77.35962218770636, 34.67477466308217], [-77.359847867763, 34.67472671360315], [-77.36023937388768, 34.674710114109786], [-77.36035693855325, 34.674844251267984], [-77.36042876404518, 34.674961831596335], [-77.36054914445685, 34.67509050136878], [-77.36059770790168, 34.67539148327899], [-77.36058946926025, 34.67542714087731], [-77.3605491771625, 34.67548469593066], [-77.36035333127114, 34.675946969515024], [-77.36072630419442, 34.67613677457636], [-77.36098759455766, 34.67625632036107], [-77.36147416400087, 34.67628036765761], [-77.36156672401468, 34.67627822033914], [-77.36157998893815, 34.67627723405946], [-77.36186368061601, 34.67651379183426], [-77.36206700805198, 34.67666128744895], [-77.36208038019416, 34.67667122537622], [-77.3620908902062, 34.676683020123185], [-77.36218455657702, 34.67678813662266], [-77.36232494963556, 34.67680358345963], [-77.36263498299114, 34.67660826082722], [-77.36266257159556, 34.676583795307664], [-77.36268785350916, 34.676584155426], [-77.36276529235253, 34.676538158758405], [-77.36310314102907, 34.676336148145786], [-77.36340994396892, 34.67615808663025], [-77.36353846597252, 34.67608385269636], [-77.36389984771918, 34.67605890985833], [-77.36401703388536, 34.67612833746408], [-77.36411803120396, 34.67628516297944], [-77.36424256497916, 34.676382337928345], [-77.3642449892058, 34.6763845348976], [-77.3642475246243, 34.676386679937465], [-77.36430812945936, 34.67653303941451], [-77.36432618220928, 34.67661956587237], [-77.36436779690106, 34.67681902584075], [-77.36437065039586, 34.676857150165944], [-77.36439084703126, 34.67690258248211], [-77.36450407715446, 34.67717064679645], [-77.3645356453146, 34.67732186689952], [-77.364559016146, 34.677354292988255], [-77.36470882254102, 34.67740724815656], [-77.36477934710896, 34.67762623124781], [-77.36504606540981, 34.677541839011795], [-77.36499070055298, 34.67774672268245], [-77.36503640440846, 34.677943514254935], [-77.36527148338746, 34.677992710821925], [-77.36556409575158, 34.67793147879429], [-77.36555915798391, 34.67815599308986], [-77.36574363199617, 34.678187491986364], [-77.36580686388503, 34.67821015451972], [-77.36605214476445, 34.678312082125025], [-77.36607650027979, 34.67831217134552], [-77.36636184778934, 34.67804567945559], [-77.36620881797766, 34.67785610667073], [-77.36615650456908, 34.67786961662037], [-77.36619165444486, 34.677797563542754], [-77.36615447901215, 34.677586787464826], [-77.36610456613944, 34.67751536460454], [-77.36603206932858, 34.67743393544819], [-77.36594776844257, 34.67724184725988], [-77.36575136205181, 34.6771547972939], [-77.36564099453477, 34.67708379865289], [-77.36554481794673, 34.67705062242861], [-77.36504014817022, 34.67677683846442], [-77.36502641007394, 34.676774709238494], [-77.36502249016343, 34.67677151968999], [-77.3649799206568, 34.67677342358717], [-77.3650254706401, 34.67676382774312], [-77.36507619886729, 34.67633593277779], [-77.36509036123338, 34.67627085595342], [-77.36501079954567, 34.676112632721846], [-77.36496206563237, 34.67602957008942], [-77.3647884741663, 34.67582495201119], [-77.36475816485208, 34.67563659830165], [-77.3645617937731, 34.675549273715276], [-77.36449551186767, 34.67537782013563], [-77.36470001493062, 34.67519894319268], [-77.36458548805643, 34.67487806622195], [-77.36457552507918, 34.674750235183936], [-77.36461785783902, 34.67462992302942], [-77.3644997423398, 34.674464660834374], [-77.36448154684734, 34.67442835752996], [-77.3644639458814, 34.674407378946235], [-77.36428984080801, 34.67419713981242], [-77.36428260546047, 34.67418860400326], [-77.36428192175512, 34.674187819698055], [-77.36409289606065, 34.67397097875971], [-77.36407453143309, 34.673953260801504], [-77.36405498809296, 34.673934958326235], [-77.36385839829524, 34.67372543369267], [-77.3638254829744, 34.67369468082675], [-77.36363944593255, 34.67354590107279], [-77.36360885116332, 34.67352333308772], [-77.36358225441504, 34.673501705168796], [-77.3631957517168, 34.67344715210991], [-77.36306799595837, 34.67321157967322], [-77.36301444896974, 34.67319251120706], [-77.3630168078161, 34.673144070543], [-77.36283230123053, 34.6729926489277], [-77.36279561312068, 34.67296676684026], [-77.36277325575034, 34.67293384247587], [-77.36258743804923, 34.67280531967071], [-77.36249076305333, 34.67280724517992], [-77.3624484892107, 34.67273477325787], [-77.36226069641438, 34.672590148080246], [-77.36223709423751, 34.67252012596606], [-77.3621028681257, 34.6724129002193], [-77.36204210929569, 34.67236421357063], [-77.36195720590709, 34.67231488942359], [-77.36185010161194, 34.672252818039915], [-77.36171456660358, 34.67222216357217], [-77.36157698629577, 34.672162865042765], [-77.36134510015901, 34.67211239069563], [-77.3611771010709, 34.67207582222712], [-77.36101339320393, 34.672042798469185], [-77.36094591279502, 34.67202549904987], [-77.36083321645097, 34.671981935763434], [-77.36074389304903, 34.671940390972836], [-77.36058795283435, 34.67190686602635], [-77.360463706872, 34.671874809464505], [-77.36005795067884, 34.671920682856836], [-77.35988516445461, 34.67180626373106], [-77.35965821969512, 34.67165597981608], [-77.35945915802289, 34.67159324238346], [-77.35936440325966, 34.67153860836619], [-77.35892423336304, 34.67126942913505], [-77.3588864375676, 34.67124573048633], [-77.35885642551929, 34.67122691218705], [-77.35866248267148, 34.6711228328585], [-77.35847727731519, 34.671330829459336], [-77.35821333654906, 34.67176391369243], [-77.35786302716002, 34.67238998323855], [-77.35765292421195, 34.67278069815058], [-77.3564196340487, 34.673563019062534], [-77.35621920981359, 34.67406251959252], [-77.35553101344497, 34.67443688621167], [-77.35509125967883, 34.67416731434237], [-77.35361811768716, 34.672780006355744], [-77.35302423730336, 34.67207980029412], [-77.35358718561913, 34.67172879292647], [-77.35393808306809, 34.67167772888726], [-77.35507613994021, 34.67049597599273], [-77.3555806440601, 34.67014222062983], [-77.35601680805678, 34.66971926895998], [-77.35652437362833, 34.66922707450072], [-77.35651867717473, 34.669126461285906], [-77.35662555209186, 34.66866088209597], [-77.35666110176325, 34.66848136342164], [-77.35671572574772, 34.66818635351795], [-77.35670541129558, 34.668162526400025], [-77.3566962911418, 34.66810300464055], [-77.3567906966338, 34.66766342377012], [-77.35711459128247, 34.66719740511794], [-77.35714111344763, 34.667127903379686], [-77.35714796039241, 34.66706517967836], [-77.35735249911882, 34.66661147896404], [-77.3574740665558, 34.666239651801604], [-77.35749232926082, 34.66610488384123], [-77.3575196792797, 34.66599058728818], [-77.35746357895343, 34.66571624410201], [-77.35745343926452, 34.665647376871455], [-77.35743738693914, 34.665625045186815], [-77.35761621360723, 34.66512785057161], [-77.35710748833942, 34.66488131523204], [-77.35694793964318, 34.66485393220701], [-77.3560496411846, 34.66497658411906], [-77.35587643248088, 34.66499941586504], [-77.3557062275388, 34.66502148773912], [-77.35548033728605, 34.664919102622235], [-77.35488577459728, 34.66486472049754], [-77.35474261248692, 34.664782466259645], [-77.3542210392818, 34.66458807259381], [-77.35420511066496, 34.664572674719956], [-77.35394907260105, 34.66415465525833], [-77.3538801409681, 34.663866932581676], [-77.35362198158842, 34.662761589865774], [-77.35409437550402, 34.662446684447524], [-77.35362585782696, 34.662073468348666], [-77.35351191513712, 34.66168267843612], [-77.35334694136557, 34.66147728951951], [-77.35316483418089, 34.661432228717885], [-77.35308462334966, 34.66159302767598], [-77.35286708764372, 34.66177124019594], [-77.3528960690705, 34.66208422084166], [-77.35263524162208, 34.66198323935924], [-77.35240752027092, 34.66218900630821], [-77.35210649763637, 34.66253850203602], [-77.35200458893688, 34.66258663531562], [-77.35147856330254, 34.66280593306709], [-77.35095323340343, 34.66317296381893], [-77.35064329117176, 34.66292063529543], [-77.35077160014225, 34.66226994182596], [-77.3507512431791, 34.66141705321144], [-77.35076809967016, 34.66121549047051], [-77.35079335423791, 34.66079144661576], [-77.35054968285746, 34.65989463449576], [-77.35046932610126, 34.65956851222475], [-77.35029918928024, 34.65947311140373], [-77.35016587438177, 34.65925831668277], [-77.34957126812162, 34.658617650387846], [-77.34936961100117, 34.65848337575171], [-77.34903360897985, 34.65847978510283], [-77.34875283761842, 34.65860089327587], [-77.34843422641622, 34.658572266699075], [-77.34827866234264, 34.658181315392085], [-77.34805679293497, 34.65817123196592], [-77.34802690521887, 34.65817559946331], [-77.34765921914236, 34.657864288249186], [-77.34763342572302, 34.65786114689046], [-77.34762867744256, 34.65784855967102], [-77.34739558607298, 34.65775789292253], [-77.34730549172107, 34.65777272996201], [-77.34709938303723, 34.65777019346188], [-77.34681826215703, 34.65753782629291], [-77.34664969921334, 34.65751221984291], [-77.34659988144935, 34.657448416878495], [-77.34629009252829, 34.65725366446758], [-77.34597654169073, 34.65753324510631], [-77.34551647545585, 34.65745927087181], [-77.34533137030326, 34.65689795722906], [-77.34440593339428, 34.656091695283294], [-77.34392463711652, 34.656017823766824], [-77.34375709510938, 34.65604965346107], [-77.3431638018936, 34.65550751266237], [-77.34310124219269, 34.65535152419986], [-77.34296995616648, 34.65531960726633], [-77.34260424070649, 34.65514782685405], [-77.34224615348012, 34.65490458023457], [-77.34217124285014, 34.65489628936016], [-77.34191495373295, 34.65483493355673], [-77.34161687567624, 34.65484559506875], [-77.34159444823108, 34.65484820794038], [-77.34157178582207, 34.6548513373333], [-77.34128534748133, 34.65490336308578], [-77.34123873168558, 34.65492774662399], [-77.34113324000796, 34.65510921654408], [-77.34102501045459, 34.65520113051438], [-77.34074575684596, 34.6554219437172], [-77.34048213223424, 34.655686221169546], [-77.3404012745497, 34.655760446879135], [-77.34019358042286, 34.65591518051529], [-77.33997956552321, 34.656371909859146], [-77.33970977779751, 34.65632461361842], [-77.33964900411326, 34.65639273179294], [-77.33960659444305, 34.65652886731629], [-77.33968572815111, 34.656828869061464], [-77.33990993637792, 34.657076505425735], [-77.33989786913241, 34.657292282612985], [-77.33984809862996, 34.65731091690917], [-77.33979125630698, 34.65752638978325], [-77.33964585426702, 34.65759925914456], [-77.33957230686737, 34.65753184958313], [-77.3394902312038, 34.657579024281326], [-77.33926054876721, 34.65773120923369], [-77.33902883770998, 34.65801410829947], [-77.33850053871461, 34.65798970094122], [-77.33840886112887, 34.658115708663324], [-77.33830898452408, 34.657949354083875], [-77.33806825230539, 34.657894819920436], [-77.33722366717083, 34.65780150125997], [-77.33707335352065, 34.65784343457089], [-77.33688667074982, 34.65781772373411], [-77.33604741088529, 34.657833640807155], [-77.33580047460052, 34.65788278404314], [-77.33560955426105, 34.657960085191576], [-77.33549748975256, 34.65796844273205], [-77.33533624931528, 34.65809322177011], [-77.33522105839172, 34.65818625341541], [-77.33509183330378, 34.658303203012125], [-77.33495187095346, 34.65868069174002], [-77.33471527925762, 34.658856225414496], [-77.33453475093336, 34.65895859085547], [-77.33443255988524, 34.65904276612792], [-77.33432005961376, 34.65909181675343], [-77.33429022746019, 34.65925716234765], [-77.33446364227048, 34.6595594979993], [-77.33453527812269, 34.65967851264138], [-77.33477232789143, 34.66003501161807], [-77.33482035597248, 34.66026227060435], [-77.33507601293562, 34.6606515087999], [-77.33549218702969, 34.66122857747875], [-77.33576087283382, 34.66158736625644], [-77.33549890952297, 34.662756054810885], [-77.33474572192483, 34.66249195411852], [-77.33415848845084, 34.66245963161971], [-77.33390251447665, 34.66207879906696], [-77.3338492364486, 34.6618496185125], [-77.33379148503992, 34.661601195297386], [-77.3337197383006, 34.66129257340149], [-77.33365909664302, 34.66103171504069], [-77.33331591334834, 34.660943828564726], [-77.33321481034436, 34.66095033149416], [-77.33305847817697, 34.660916924786825], [-77.3330475760791, 34.66091484115525], [-77.33303785225424, 34.66092016178603], [-77.33290636273925, 34.6610088627491], [-77.33279311486623, 34.66115050555839], [-77.3327942313949, 34.661337543135616], [-77.33278262048118, 34.66198673176731], [-77.33278254262456, 34.66199393224245], [-77.33278240365, 34.66199596042175], [-77.3327823884629, 34.66199970258482], [-77.33277702534909, 34.66332337908235], [-77.33244711396206, 34.66372991995463], [-77.33204210178911, 34.66467616323294], [-77.33119573298002, 34.66451644762567], [-77.33072318691532, 34.6644868501155], [-77.33044100683755, 34.66433734165467], [-77.32939616949358, 34.66425718918526], [-77.32912891593531, 34.664185011879916], [-77.32830953401958, 34.663963719608866], [-77.3280447465179, 34.6639059546549], [-77.32750952107912, 34.66374447702441], [-77.32628965451568, 34.66336928114818], [-77.32508261908968, 34.6619121795784], [-77.32477973151568, 34.66176587884505], [-77.3234190350549, 34.66159199119212], [-77.32259260822197, 34.66150243483918], [-77.3219996047138, 34.65931552640856], [-77.3217402784688, 34.65859817498134], [-77.32174196569746, 34.65844599644013], [-77.32167996598066, 34.658301537785434], [-77.32026935286521, 34.655271954457106], [-77.32060604467794, 34.65237387177437], [-77.32097471503782, 34.652303806855706], [-77.32313465061874, 34.65221060767264], [-77.32452978337275, 34.653078767865594], [-77.3259352898937, 34.6534023498987], [-77.32830296331733, 34.654170500209446], [-77.32856890946302, 34.65426797403819], [-77.32867887141295, 34.65430946061076], [-77.32889127111768, 34.654357137721384], [-77.32924295884654, 34.65404158626679], [-77.32983737249357, 34.653700959407836], [-77.32993132940373, 34.65265889467425], [-77.33039702943744, 34.65065004642973], [-77.32995187209175, 34.650568422223586], [-77.3300442905886, 34.65009504481543], [-77.3304018311207, 34.65013496665655], [-77.33058246554721, 34.65028303657908], [-77.3328285570224, 34.64946493301943], [-77.3330662363287, 34.64995866194417], [-77.33416607259038, 34.64974801233782], [-77.33518191412587, 34.64955343882408], [-77.3353992748182, 34.64951180568402], [-77.33563460753145, 34.64946672820797], [-77.33597499944017, 34.649190263250695], [-77.33644655114884, 34.64967744250684], [-77.33640843202545, 34.65003125150884], [-77.33643492197393, 34.65010103337003], [-77.33644851985642, 34.6501516235367], [-77.33642910444428, 34.65031282904176], [-77.33642137846982, 34.65037697759601], [-77.33640343958407, 34.65052592242583], [-77.33640326499858, 34.65052737198445], [-77.33642273411061, 34.65071188212129], [-77.33642189043277, 34.65077834151559], [-77.33649158221634, 34.65077615776141], [-77.33661303768613, 34.650772351981985], [-77.33671653527851, 34.65076910879291], [-77.33683487548343, 34.65076301244871], [-77.33691016026802, 34.65065765226768], [-77.3369727235779, 34.65055806727982], [-77.33704754694013, 34.65043896582404], [-77.3370597238472, 34.65008976867672], [-77.33706046417763, 34.650015198513785], [-77.33705357954354, 34.6499662797909], [-77.33732206404133, 34.64955730641164], [-77.33732605986249, 34.64954067887503], [-77.33733060194616, 34.64955355928562], [-77.33733596279251, 34.6495553992041], [-77.33766789534909, 34.64964852844857], [-77.3378445443209, 34.64968422531813], [-77.33799857584607, 34.64970085776214], [-77.3381121116899, 34.6496199630378], [-77.33829027786838, 34.64955920983685], [-77.33836816459342, 34.64941375344826], [-77.33832500419217, 34.64915144883556], [-77.33828769504356, 34.64900280060897], [-77.33823239673634, 34.64891643997461], [-77.33813874815806, 34.64880510852629], [-77.33805122518108, 34.64870105954367], [-77.33797513952695, 34.6486236968827], [-77.33787503652701, 34.648475815860806], [-77.33771967359266, 34.648312843005755], [-77.33744491018741, 34.64832980641001], [-77.33734490916001, 34.64837720333358], [-77.33732844178022, 34.64822107141838], [-77.33736703633579, 34.64815120567749], [-77.33741710431212, 34.64797021129487], [-77.33758685486173, 34.64789825414457], [-77.33765200646593, 34.64797607480139], [-77.33765041426102, 34.647854394624034], [-77.33819062445605, 34.647851076539624], [-77.33827357995997, 34.647882791328236], [-77.33832870949597, 34.64782037996998], [-77.3387751077145, 34.64784207470897], [-77.33891103706156, 34.647868558669025], [-77.33926108220804, 34.64802522529624], [-77.33926226085356, 34.64802575281137], [-77.33926281628482, 34.648025914508715], [-77.33926386284965, 34.6480261585051], [-77.33960610647038, 34.64814101820237], [-77.33976557000904, 34.6481774482559], [-77.33978599733612, 34.648179976149905], [-77.33993422706591, 34.648180630980235], [-77.3400901073743, 34.64813025292297], [-77.34022933325257, 34.64805596021391], [-77.34047272413301, 34.64792558563762], [-77.34054377531548, 34.64788652568067], [-77.3406207128777, 34.64783862110487], [-77.34075523648843, 34.64775031109669], [-77.34080314652206, 34.64772503028586], [-77.34087269664863, 34.647593037100854], [-77.34088036187373, 34.64753349861421], [-77.34090858207057, 34.647377113050055], [-77.34098220799399, 34.6470229485129], [-77.34099202319534, 34.64697049525525], [-77.3409937612155, 34.64694342471033], [-77.34099970505827, 34.64688228441304], [-77.34103856775275, 34.646515277506], [-77.341059190435, 34.64636595497993], [-77.34112626445665, 34.646146697831036], [-77.34114002435032, 34.646079354687956], [-77.34114943666171, 34.645782961405935], [-77.34115610102079, 34.645655150566654], [-77.3411233414811, 34.645489377651586], [-77.34107491036147, 34.64524429766622], [-77.34104505850281, 34.64507030113932], [-77.34103331685692, 34.645039008230526], [-77.34102253190345, 34.64499724352155], [-77.3409783033453, 34.644915433871404], [-77.34088965201943, 34.644873190164816], [-77.34086987786418, 34.64487091140315], [-77.34085560479896, 34.64487132553625], [-77.34083401127633, 34.64485536593321], [-77.3405310551499, 34.644777980094275], [-77.34032990335136, 34.64476400246699], [-77.34015144913486, 34.64448209076239], [-77.33998237389153, 34.64430393786201], [-77.33992656402805, 34.644135922792486], [-77.33980744102566, 34.64386284439391], [-77.33972333304979, 34.64366869144313], [-77.33962781128815, 34.64346940786676], [-77.33954926360639, 34.64334371393092], [-77.33953420422708, 34.6432741183127], [-77.33944267813177, 34.6430762438885], [-77.33936425943992, 34.64294710882829], [-77.3391482107086, 34.64267581990593], [-77.3390615270321, 34.64268276364625], [-77.33886289683933, 34.642593921864716], [-77.33871559576501, 34.64221956298313], [-77.33846782497972, 34.64247619675366], [-77.33825388645948, 34.64267750289064], [-77.33804969392783, 34.642889016633006], [-77.3379192156379, 34.64293243613906], [-77.33776670249213, 34.642950068918125], [-77.33747061920792, 34.643015629467314], [-77.33733441470885, 34.64320856350436], [-77.33677410802918, 34.64303259308222], [-77.33666020222995, 34.64303966335899], [-77.33659910839101, 34.64296547429834], [-77.33631928743401, 34.64294298747283], [-77.33599475227304, 34.64291436406887], [-77.33593467874906, 34.64291611355442], [-77.33562339051697, 34.64303847740962], [-77.33547182789498, 34.643151238073834], [-77.33543450411281, 34.64331273558665], [-77.33527379875176, 34.643293072072794], [-77.33488109163025, 34.643745166747735], [-77.33480266959276, 34.643861026894214], [-77.33462416694323, 34.64401957017023], [-77.33440204214975, 34.644547811049414], [-77.33430738284859, 34.64473316768738], [-77.33410827577575, 34.64493433896368], [-77.33384105971314, 34.64563235223761], [-77.33277409980842, 34.6459452332141], [-77.33213258021138, 34.6460000368444], [-77.33166556662039, 34.646270295867716], [-77.33005087973672, 34.64674375633557], [-77.32958237283808, 34.64605470664071], [-77.3288915557133, 34.64634935465594], [-77.32780349669297, 34.64660040144133], [-77.32792148218255, 34.64578300559491], [-77.32804215361969, 34.64555619147984], [-77.3280969026238, 34.64503444892844], [-77.32833017273887, 34.644038990087545], [-77.32849998282894, 34.643314344232145], [-77.32851479521597, 34.642897092843654], [-77.32848719430268, 34.642329490894454], [-77.3283337644244, 34.642107603122604], [-77.32817653777045, 34.642242400988586], [-77.32762841919842, 34.6423558291185], [-77.32756412167561, 34.64238110230835], [-77.32747083928983, 34.64235328578578], [-77.32710974810472, 34.64223459358085], [-77.32691120938647, 34.6423181157025], [-77.32678028977128, 34.642375760079815], [-77.32640221853046, 34.64248712592021], [-77.32631358521317, 34.64253050188441], [-77.32625681784404, 34.64255426213985], [-77.32573981305572, 34.642650343342325], [-77.32569792712712, 34.64265307419438], [-77.32562507544127, 34.642631651406624], [-77.32517542868675, 34.642619566939686], [-77.32503158116629, 34.64252316841109], [-77.32465680566834, 34.64239475175397], [-77.32434051858236, 34.64227012894683], [-77.32418945334013, 34.64227542545273], [-77.32370992889645, 34.64231831658904], [-77.32325978503806, 34.64242479996725], [-77.3230919597023, 34.64242937739478], [-77.32292110259161, 34.64249008651706], [-77.32270686352923, 34.64257579220345], [-77.32253020437045, 34.6428204964084], [-77.32239859768663, 34.642955278825], [-77.32241420610282, 34.64316227994506], [-77.3224756978975, 34.64337148148112], [-77.32264204733127, 34.64397501822508], [-77.32289793688116, 34.644756405558475], [-77.32278714845005, 34.644799100110205], [-77.32295185275674, 34.64492104067621], [-77.32346713621872, 34.64600014661262], [-77.32370066324447, 34.646840825793205], [-77.32293753739927, 34.64704812498245], [-77.32186591480004, 34.64589062563968], [-77.32141412212644, 34.645472114304795], [-77.32134216550197, 34.64499720506351], [-77.32100048621729, 34.6443190967823], [-77.32091587951601, 34.64421167164175], [-77.32090084290766, 34.644192579461716], [-77.32087863408626, 34.64416188375271], [-77.3203257896086, 34.643448591237046], [-77.32039810838279, 34.64308909088612], [-77.32041373390156, 34.64301454849853], [-77.32045660682249, 34.64281002430675], [-77.32046863362842, 34.642752650129594], [-77.32050480883784, 34.64258007617656], [-77.32051510515089, 34.642530957609964], [-77.32050600189622, 34.64239181424661], [-77.32040415338807, 34.64242732989856], [-77.3203760043879, 34.642455087319114], [-77.32031185922315, 34.64248908102941], [-77.32023729366054, 34.64256148930673], [-77.32014728911975, 34.64262908739946], [-77.32017451579804, 34.64288025835531], [-77.31996269073201, 34.64278834202712], [-77.3197994913969, 34.64292913425065], [-77.319652318888, 34.643059941329625], [-77.3194412434298, 34.643380382976915], [-77.31938057282184, 34.643473545124], [-77.31932513457332, 34.64358576276901], [-77.31925130060979, 34.64402021886398], [-77.31899254227164, 34.64433494538174], [-77.31895770370582, 34.64441342016576], [-77.31892618226998, 34.644484422166784], [-77.31883482850625, 34.644966071833586], [-77.31866374183826, 34.645364366299425], [-77.31814766192878, 34.64650591883793], [-77.31714850570505, 34.64606074394813], [-77.31692368133298, 34.64678795403458], [-77.31623801539503, 34.64653322180888], [-77.31584250690118, 34.64575103352513], [-77.3150778442299, 34.64423874835983], [-77.31386247759994, 34.64429563455851], [-77.31191997459328, 34.643846721279786], [-77.3111932570844, 34.64375650410806], [-77.3108225262134, 34.643478069997144], [-77.30938259789006, 34.64326030249809], [-77.3087634131842, 34.64296215350247], [-77.30850563772506, 34.64312549388208], [-77.30819820189875, 34.64303992228581], [-77.3066203695536, 34.642612248854874], [-77.30543757526708, 34.6405968403872], [-77.30510557510094, 34.64047031645375], [-77.30536440546022, 34.64023191666046], [-77.30621826974648, 34.638520078868964], [-77.30607305225735, 34.63696194669251], [-77.3055480987507, 34.63555572996119], [-77.30574258785828, 34.632735446162954], [-77.30728859426274, 34.63004375222668], [-77.30784599378177, 34.62936068921581], [-77.3082503023241, 34.629082008789965], [-77.30929117179635, 34.628041031052135], [-77.30936310984706, 34.62800869812481], [-77.31045530379863, 34.62730877359982], [-77.31149397603892, 34.62742926547018], [-77.3119971665513, 34.627386322402], [-77.31301400107716, 34.627299536769726], [-77.31341901311906, 34.627515855267006], [-77.31322085736726, 34.62770778392521], [-77.31327422533506, 34.628379666902276], [-77.31326002194588, 34.628411847940534], [-77.31346531732204, 34.6290707972369], [-77.31354723322528, 34.62918622030003], [-77.31364268330296, 34.62943683125127], [-77.31393503018339, 34.62997704212259], [-77.31402291811442, 34.63026225199442], [-77.3140914703074, 34.63052358515918], [-77.31411554477543, 34.63079627139711], [-77.31442821955963, 34.63115876327708], [-77.31466521983282, 34.63128614215158], [-77.31507850544051, 34.63150826486323], [-77.31512450954745, 34.63152476583322], [-77.31514472837297, 34.63153932091319], [-77.31563451105792, 34.63166304658852], [-77.31586323157971, 34.631929780029964], [-77.31624031459134, 34.63219299676233], [-77.3164563658593, 34.63233170218208], [-77.31659080720135, 34.63236542569581], [-77.31707617886917, 34.632922397630544], [-77.3172606330218, 34.63303517832773], [-77.31740581644351, 34.63323681924197], [-77.31764511393345, 34.63342185509111], [-77.31784070316988, 34.633661573148125], [-77.31799092045367, 34.63388506636265], [-77.31818073278743, 34.63434375313428], [-77.31819756903563, 34.6344566272834], [-77.31815856161603, 34.63499046969655], [-77.31814112539371, 34.63530833657853], [-77.31815258757388, 34.635652319862245], [-77.31813454157604, 34.63573122553517], [-77.31818839747592, 34.635789300370746], [-77.31859183419876, 34.63609052691367], [-77.31860817170585, 34.63610617073613], [-77.31862300127726, 34.636112468931586], [-77.3186347628405, 34.63610272472814], [-77.31913857129283, 34.636204139125105], [-77.31927218017375, 34.636157157949306], [-77.31937479786104, 34.63612656624908], [-77.31942372120801, 34.63611474020546], [-77.31948400964615, 34.63609434576147], [-77.3195736236836, 34.636064156877595], [-77.31983013811652, 34.635983183272145], [-77.31987465991743, 34.635969129153615], [-77.31990911983958, 34.63595825114769], [-77.32017961603515, 34.63587286262727], [-77.32037757857435, 34.63572841467809], [-77.32042221279957, 34.635507403768074], [-77.3207219297914, 34.635365987515115], [-77.32097819574591, 34.63508771406409], [-77.32116024418221, 34.63512466185983], [-77.32202117749644, 34.63509001097346], [-77.32227935332341, 34.63519108829723], [-77.3228128210395, 34.63533345483732], [-77.32305452295739, 34.635340238828974], [-77.32325437749151, 34.63545129180419], [-77.32302966968845, 34.63553599942486], [-77.3229932828961, 34.635558402501296], [-77.32283235411045, 34.63577991918568], [-77.32269270845886, 34.63588865989398], [-77.32273814117093, 34.63596636874911], [-77.32278484731607, 34.63597472025774], [-77.32309959949512, 34.636088101778064], [-77.32324943896907, 34.636102127976656], [-77.32349401764449, 34.63626240961767], [-77.32370244659009, 34.636353248532124], [-77.32380436491206, 34.63640969560858], [-77.32413562361593, 34.63664361902038], [-77.32427958233703, 34.63670342809368], [-77.32447972921292, 34.63658478943936], [-77.3247181251895, 34.636638464754405], [-77.324864444929, 34.63690663777406], [-77.32487392805346, 34.63690395451697], [-77.32501589800323, 34.63686378406116], [-77.32501631213381, 34.636724143856846], [-77.32512130558135, 34.63659155161895], [-77.32525983317947, 34.63644225553923], [-77.32531015391415, 34.636331211012696], [-77.32538390115275, 34.63630504363264], [-77.32562501902352, 34.63599128473193], [-77.32563722520472, 34.635972358593094], [-77.32564122110057, 34.63596796325142], [-77.32571785614397, 34.63537725185889], [-77.32599963002286, 34.63458847222792], [-77.32670158890755, 34.635008239361035], [-77.32672696083793, 34.635022473729464], [-77.32679743412554, 34.63505081692888], [-77.32721408674925, 34.63514160598274], [-77.32739918451172, 34.63518193820506], [-77.32758753796031, 34.63512137997125], [-77.32760342419198, 34.63485486900415], [-77.3278627059225, 34.634711018188455], [-77.32793122107748, 34.63464314097591], [-77.32806174759429, 34.634611577840765], [-77.3284697033693, 34.63413647910994], [-77.32866714959292, 34.6341276223214], [-77.32878374345647, 34.63410629021695], [-77.32889119730248, 34.634117572162296], [-77.32902630617465, 34.634129379083944], [-77.32910915514016, 34.634132737885736], [-77.32917706188044, 34.63412562695139], [-77.32936323688973, 34.634110377108954], [-77.32941736977246, 34.63407353386985], [-77.32950721019517, 34.634046024378705], [-77.32971343961356, 34.63395384463631], [-77.33016130962748, 34.63418837140781], [-77.33079193127342, 34.63379860115947], [-77.33104537587188, 34.63438272914923], [-77.33075184930206, 34.63473987929589], [-77.33059603157072, 34.634866364795144], [-77.33060436521603, 34.63493581085537], [-77.33057262283634, 34.6350443944167], [-77.3305770707154, 34.63507996209006], [-77.33056990681247, 34.635098973097854], [-77.33058050141909, 34.63508363012638], [-77.33071698286271, 34.63509479928642], [-77.33086005754367, 34.63525213710545], [-77.33093675129086, 34.63526362351161], [-77.33121986355462, 34.63524719783254], [-77.33125825873024, 34.63527059781304], [-77.33141841868675, 34.63542808445725], [-77.33145167167777, 34.63543671981547], [-77.33153052253806, 34.635493138543126], [-77.33155957964135, 34.635494203486886], [-77.33159966719165, 34.63537667301637], [-77.33163054450056, 34.63535743218269], [-77.33158739730331, 34.63531557254116], [-77.33151539321585, 34.635236122439025], [-77.3314349949567, 34.635173263195455], [-77.33131622526298, 34.6350564493319], [-77.33109861130534, 34.63439638837443], [-77.33108828360422, 34.63437684281832], [-77.33098305694497, 34.63362114304514], [-77.33098509403551, 34.63354701394999], [-77.3312503830355, 34.632891083996306], [-77.33123411050003, 34.63252094545485], [-77.33120368790512, 34.63182905338148], [-77.33110448151146, 34.6308842088241], [-77.33101713913811, 34.63016667330207], [-77.33094605759538, 34.62958258270008], [-77.33033461976817, 34.626884347535196], [-77.3303277510851, 34.6236664138574], [-77.33031561306407, 34.62351104038217], [-77.33237904983498, 34.62172359333814], [-77.3332010394465, 34.621011510672744], [-77.33404141240904, 34.62047826586288], [-77.33461618036355, 34.62011355845563], [-77.3359220766721, 34.62088371186521], [-77.33611950840161, 34.62095534746931], [-77.33749197408376, 34.62168392457572], [-77.33812766530323, 34.621570910118976], [-77.3387573166807, 34.62160983799499], [-77.33930273665547, 34.62137188236214], [-77.3399307275559, 34.62107805176597], [-77.34086948568196, 34.62073363361566], [-77.34110324616115, 34.62054194384804], [-77.34115157265367, 34.62042943922552], [-77.34201190590129, 34.61869245096342], [-77.34226399697941, 34.618799282551294], [-77.34478457295813, 34.61974897806094], [-77.3458577285791, 34.620039725364684], [-77.34753734113531, 34.620706138863675], [-77.34780005669383, 34.620785634029446], [-77.34853959295576, 34.621009399771076], [-77.34889632913024, 34.62109803189635], [-77.34900823209328, 34.62109371975529], [-77.34998237024995, 34.62105618040487], [-77.35016572915299, 34.62104412235806], [-77.3502826908411, 34.620949312318245], [-77.35036987883261, 34.62075635024962], [-77.35169270587178, 34.619792553145345], [-77.35301883413005, 34.620375332741474], [-77.35321067379957, 34.620410788562985], [-77.35326919937103, 34.62044867931536], [-77.35348423500193, 34.62054002062786], [-77.35371362000177, 34.62027538763718], [-77.35405795791385, 34.61986092889961], [-77.35428462887575, 34.619588096473784], [-77.35484715211837, 34.61844620115548], [-77.35485725873829, 34.618423537428036], [-77.35487247412618, 34.61841047705944], [-77.35581596867213, 34.617619448307344], [-77.35594706641447, 34.61740677308525], [-77.35599509111219, 34.61701347929016], [-77.3560526066305, 34.61654248608068], [-77.35506007480677, 34.616457128698265], [-77.35484854575046, 34.61587360798573], [-77.354366705276, 34.61560593221296], [-77.35371112470885, 34.61395499653409], [-77.35352237046438, 34.61351011139086], [-77.35355335908586, 34.613203974866295], [-77.35381185773568, 34.61065061692851], [-77.3559030215871, 34.61033689012389], [-77.35642835318778, 34.610120436228236], [-77.3571729363033, 34.61048449764998], [-77.35721649238504, 34.61050163815239], [-77.35734676558494, 34.610552903528486], [-77.35800476762526, 34.610629701684665], [-77.35848141182498, 34.609913172450874], [-77.35879345559688, 34.60993433574717], [-77.3590533755416, 34.60988704110663], [-77.35918766694839, 34.60984483974987], [-77.3595536780168, 34.61009497222911], [-77.3591873361823, 34.61051374974613], [-77.3591201878801, 34.61050958339045], [-77.3587930701886, 34.61070654032826], [-77.3584030026847, 34.61110967053646], [-77.35868561186177, 34.61180295406651], [-77.35876803740342, 34.61190624403127], [-77.35877735112105, 34.61192118195353], [-77.35879245669089, 34.61193735905685], [-77.35910352230624, 34.612371800806514], [-77.35948447725704, 34.61265224521297], [-77.3595332997895, 34.61269599077362], [-77.3595804122295, 34.61275174935401], [-77.35990514109018, 34.6129415542787], [-77.35998600713523, 34.61299220119016], [-77.36001180648225, 34.61304113919212], [-77.36018001273334, 34.61340125195855], [-77.36024588001898, 34.613523735309734], [-77.36033641083546, 34.613803296612595], [-77.36036825620464, 34.61383213819144], [-77.360509160802, 34.614051115338086], [-77.36064507646603, 34.61405713460931], [-77.36076233502854, 34.61405720771266], [-77.36087834086825, 34.61402492838214], [-77.36102587562071, 34.613987875662374], [-77.36115660970981, 34.61386833432407], [-77.36143698614283, 34.61376752487234], [-77.36155086082218, 34.613726297924536], [-77.36168381662445, 34.61375258433425], [-77.36192757863411, 34.613593165565035], [-77.36194511149363, 34.61358214348538], [-77.3619491448305, 34.613575524140316], [-77.36194858269397, 34.61357126424244], [-77.36204945739811, 34.61324440964772], [-77.3620854388417, 34.613127012308865], [-77.3622102244294, 34.61282388460101], [-77.36226154675393, 34.61267711051691], [-77.3622989374719, 34.612627793735555], [-77.36233976463073, 34.61254965864547], [-77.36251701615669, 34.612215784984535], [-77.36259859472214, 34.612058024722344], [-77.36273428226166, 34.611797511716816], [-77.36275544392629, 34.61175691179916], [-77.36275971794134, 34.61135892555216], [-77.36276469659879, 34.61133102581622], [-77.36277129406467, 34.61129045772127], [-77.36273452771721, 34.611253233255454], [-77.36248183297721, 34.61109949434257], [-77.36234046816487, 34.61100510036022], [-77.36232041529038, 34.610992026747056], [-77.36209087989062, 34.61073450022219], [-77.3619684780521, 34.61059652510587], [-77.36195908056187, 34.610584317215704], [-77.36197470667756, 34.610201275872754], [-77.36198403753757, 34.61016973185338], [-77.36214385768811, 34.609969066876054], [-77.36216265281512, 34.60995198111407], [-77.36234098992693, 34.60986202251278], [-77.3626880585248, 34.60969465080693], [-77.36273523878198, 34.60967896545938], [-77.36276901041396, 34.6096685586603], [-77.3628930540892, 34.60961433299124], [-77.36308532970756, 34.60953911600495], [-77.36312950666559, 34.609449452579035], [-77.36324760917111, 34.609265861290595], [-77.36342515125861, 34.60879505807043], [-77.3634560951898, 34.608684175516885], [-77.36344162629445, 34.607926247605405], [-77.36344107672947, 34.6078372284058], [-77.36336361169252, 34.60767512727254], [-77.36303714924301, 34.607046264922964], [-77.36296841288292, 34.60680639993905], [-77.36273688078397, 34.60605893637054], [-77.36259390980314, 34.60556609301673], [-77.36253874067096, 34.60541979279344], [-77.36247128463182, 34.60514296170782], [-77.36256547681221, 34.603717727886675], [-77.36273813859515, 34.60329906994867], [-77.36339528280575, 34.602890607989764], [-77.3635266302231, 34.60280308196367], [-77.36356853482036, 34.60276934792381], [-77.36356629925035, 34.602724546961475], [-77.36355813483878, 34.60269183912438], [-77.3633817765169, 34.60190199898435], [-77.36320759094161, 34.601422294241345], [-77.36330781490595, 34.599127819985746], [-77.3636817772459, 34.59846237253832], [-77.3643173033992, 34.59733148720484], [-77.36456024358984, 34.59689918216078], [-77.36549565163381, 34.59523457017792], [-77.36547590481332, 34.59480761691674], [-77.36358228315076, 34.594175371661386], [-77.36274250702981, 34.59380436752269], [-77.36240134936122, 34.5935520537053], [-77.36229199515375, 34.592355640521696], [-77.36116660556556, 34.59285249359482], [-77.3603182821505, 34.592153702057985], [-77.36003871533686, 34.59171143001822], [-77.3595912948802, 34.59079602409774], [-77.35946307493954, 34.59057859276217], [-77.35959143950494, 34.590508593949565], [-77.35969508893659, 34.59043357064962], [-77.36064171180053, 34.58984186814805], [-77.36116819754025, 34.589564055960956], [-77.36122506883254, 34.589537107736554], [-77.36186301361244, 34.58948459760705], [-77.3619563795974, 34.58947691237821], [-77.36205935660138, 34.589466685026544], [-77.36262965358539, 34.589397434993586], [-77.36274457831246, 34.58934986884672], [-77.3628134462542, 34.58932136485585], [-77.36290773044446, 34.589233609285095], [-77.36295151008895, 34.58900453836055], [-77.36303066715683, 34.58879135557522], [-77.36304275422631, 34.58868597224715], [-77.36309698677823, 34.58835725213019], [-77.3635334363305, 34.58777664717324], [-77.36370352065235, 34.58760397692191], [-77.36392760569292, 34.587538574413905], [-77.36424818561335, 34.587342394300606], [-77.36423649234678, 34.58725217389634], [-77.36432191245734, 34.586989759187304], [-77.36441177746983, 34.58656634336888], [-77.36448733873183, 34.58645884845046], [-77.36452453901009, 34.58623554624276], [-77.36432226978445, 34.58619493203071], [-77.36417553485856, 34.58607918886296], [-77.3639840032392, 34.58604673320768], [-77.36377900532226, 34.58597541424633], [-77.36353423976104, 34.586025708761966], [-77.36340628393349, 34.5859033116212], [-77.36274646321243, 34.585322621939035], [-77.36260483011615, 34.585184338721575], [-77.36248149525068, 34.58504942869448], [-77.36178455195692, 34.584488356606656], [-77.36169692950489, 34.58431327458955], [-77.36165863344108, 34.58399516378055], [-77.3615704800622, 34.58348237094138], [-77.36148188312914, 34.583160510597374], [-77.36145297913973, 34.58265017923043], [-77.36134536728306, 34.58247850472728], [-77.3612433157367, 34.58190816681447], [-77.36125049043136, 34.58183022331006], [-77.36125055139657, 34.581745592602715], [-77.36117205939412, 34.58165252760439], [-77.36103949357661, 34.58115458974341], [-77.36079071270356, 34.581047307010365], [-77.36054311976501, 34.58091189692745], [-77.36038439457596, 34.580851002590066], [-77.36016293758554, 34.58089909420142], [-77.3595962965218, 34.58092784976208], [-77.35909244153598, 34.580985527997925], [-77.35880817497218, 34.58104652131719], [-77.35854227260765, 34.58108449806953], [-77.35801997950742, 34.58130047542624], [-77.35737948663972, 34.581379288014375], [-77.3564437932799, 34.58140615049137], [-77.35519965028192, 34.58136064483852], [-77.35455165687978, 34.58143668372271], [-77.35329240064824, 34.57991914399364], [-77.35195541212798, 34.57977162269295], [-77.3505567450359, 34.57952430776856], [-77.35014047944736, 34.57945173351758], [-77.3493753209489, 34.57931832227051], [-77.34777674485838, 34.57952322127725], [-77.34698784143355, 34.58011264617508], [-77.34641443608244, 34.57995085042744], [-77.34491778681011, 34.579618430431005], [-77.34383599622852, 34.57956282208722], [-77.34328902632929, 34.579320134342495], [-77.34259181520656, 34.579063154305175], [-77.34226050887702, 34.57870238228989], [-77.34184494707462, 34.57827771566399], [-77.34124303867986, 34.577916190872976], [-77.3409177385642, 34.57771236013316], [-77.34068525183346, 34.577573253644644], [-77.34026070843422, 34.57760003580174], [-77.33989722744525, 34.57755821928432], [-77.33955682705852, 34.57767624839132], [-77.33910916386161, 34.577595246417204], [-77.33833451751096, 34.57749967162721], [-77.33831046415618, 34.57750034916767], [-77.33753306056057, 34.577633978044894], [-77.33701564454998, 34.57796680393696], [-77.33674474272163, 34.5779907108068], [-77.33658512588731, 34.577908881515924], [-77.33595662930936, 34.57808171690411], [-77.33545966005107, 34.57821235687165], [-77.3351684846916, 34.57820897819099], [-77.33491248892904, 34.578253066237465], [-77.3343802751614, 34.57841280825155], [-77.33389851918977, 34.57845308115134], [-77.33359217638574, 34.578476822921004], [-77.33330221904464, 34.57852111721953], [-77.33280405151578, 34.578570513783205], [-77.33262043862567, 34.57850463047137], [-77.33211955331713, 34.57849022555521], [-77.33201603338115, 34.57853505997069], [-77.33189093272335, 34.57854636560795], [-77.33162197433906, 34.57857645565171], [-77.33137221575923, 34.57864163469148], [-77.33122786251579, 34.57867930611455], [-77.33060754496009, 34.57877684167244], [-77.33022586128881, 34.57888121239509], [-77.33032864900807, 34.57851618684022], [-77.33044013347701, 34.57830725149084], [-77.33063122916606, 34.577949115088614], [-77.33075002197317, 34.57772648023277], [-77.33083475734139, 34.577606400410595], [-77.33100433073233, 34.577447955340254], [-77.3312290033769, 34.57734108292559], [-77.33160067712724, 34.57715544320042], [-77.33167120728194, 34.5771178372978], [-77.33201742387061, 34.57688613252227], [-77.3321359093303, 34.57680581492743], [-77.33272958632257, 34.576674832395824], [-77.33280564623716, 34.57665805129182], [-77.33287128243661, 34.57664323691018], [-77.33348183137619, 34.57648477177715], [-77.33358100358514, 34.57645668412378], [-77.33359092286199, 34.575623898606615], [-77.33359108797666, 34.57561998881937], [-77.33359068161016, 34.57561589406796], [-77.33343157270558, 34.57497000456711], [-77.33332617332584, 34.57480898806075], [-77.33312638704521, 34.5744940550114], [-77.33301626441514, 34.574229210333385], [-77.3330614575867, 34.57399795967649], [-77.33320205210856, 34.57378009592891], [-77.33335204930484, 34.57369319607216], [-77.33359618671109, 34.57361883305121], [-77.33385956984326, 34.57359945669484], [-77.33409745048431, 34.573540011862534], [-77.33438436335153, 34.57340350944189], [-77.33440631042647, 34.57338010633223], [-77.33454092504476, 34.57310464967426], [-77.33469483985877, 34.57291408928496], [-77.33496213215068, 34.57264847951767], [-77.33517312017884, 34.57246564653063], [-77.33560294231017, 34.57232052086249], [-77.33596138368863, 34.57212251372613], [-77.33625790654237, 34.57236965810856], [-77.33654232649232, 34.57242565673804], [-77.33674911083763, 34.572449430298576], [-77.33683792694876, 34.5725102416625], [-77.33704607543581, 34.57257606970802], [-77.33714298076242, 34.572607652348175], [-77.33750549408373, 34.5725439926474], [-77.33753701384725, 34.57255871030724], [-77.33757442792898, 34.572540405131335], [-77.33765333188201, 34.572488761085616], [-77.33793123420827, 34.57226777499302], [-77.33807280015863, 34.57215635756526], [-77.33812834889551, 34.5721151235794], [-77.3381954440562, 34.571986274086335], [-77.33812855214622, 34.57185252382749], [-77.33809024337212, 34.571830426839895], [-77.33805351663875, 34.57171343971773], [-77.33796320254321, 34.571595124459634], [-77.33793178957954, 34.57155245481944], [-77.33769085175445, 34.571469431868344], [-77.3376780347996, 34.57121158425372], [-77.33753823407613, 34.57099677233332], [-77.33738648503422, 34.57099248173018], [-77.33720921758302, 34.570854447853485], [-77.3370058930775, 34.5706085524012], [-77.33700251413096, 34.57045962588686], [-77.33675080541516, 34.570306952615624], [-77.33656411351835, 34.5702992924343], [-77.33614194212194, 34.57015881034077], [-77.3360215453179, 34.57011302523397], [-77.33596302739801, 34.57006932356545], [-77.3358870813223, 34.570113652883734], [-77.33570906484228, 34.57022104343313], [-77.33532506935562, 34.57043821228979], [-77.33517457593436, 34.57066775751182], [-77.33486425251388, 34.5708573502269], [-77.33459348468841, 34.571230499169516], [-77.33447863808414, 34.571346779619084], [-77.33438597605111, 34.571433392935624], [-77.33406216992776, 34.57180737206923], [-77.33359750265174, 34.572028995442146], [-77.33324015062658, 34.57227411681808], [-77.33298947453085, 34.572504487019856], [-77.33280897717833, 34.572673295406425], [-77.33228031245791, 34.572981445668965], [-77.33202062513836, 34.57309823745867], [-77.33182668551188, 34.573117403441074], [-77.331626639082, 34.57308386330875], [-77.33155385938805, 34.57301951272377], [-77.33123295909675, 34.57271206806426], [-77.33115747267816, 34.57265485482125], [-77.33111143250571, 34.57258008189403], [-77.33095253896826, 34.57230037941767], [-77.33088415584382, 34.57218820867176], [-77.33087822057269, 34.572147283922995], [-77.33078377401525, 34.571778096984374], [-77.33077525150722, 34.571424626800514], [-77.33082611757732, 34.5709229351081], [-77.3307223174301, 34.57064092833427], [-77.33060932393349, 34.57027985014867], [-77.3305467530783, 34.57011401031257], [-77.33051746402477, 34.57004259166349], [-77.33044742576857, 34.569873321234425], [-77.33036189830952, 34.56971603981444], [-77.33044762716217, 34.56964118959156], [-77.33070016552827, 34.569514891760754], [-77.33109582017993, 34.56933691283301], [-77.33123590449122, 34.56927646040015], [-77.33131748014938, 34.56924203206762], [-77.3316028220222, 34.56911314915984], [-77.33163003854595, 34.569096360940385], [-77.33164048080603, 34.56909648407914], [-77.33193251263825, 34.56896704029633], [-77.33202425964078, 34.568811743284876], [-77.33233001994833, 34.56867926779465], [-77.33245159667904, 34.56860236779647], [-77.33254379896204, 34.56841841398372], [-77.33241715165397, 34.568147023096756], [-77.3321994200468, 34.56799032191399], [-77.33202501972491, 34.56791723920236], [-77.33169425845102, 34.567401851765666], [-77.33148251215478, 34.5671684943447], [-77.33132160289132, 34.566606337987], [-77.33129103234954, 34.566553847628896], [-77.33123839299404, 34.566381190005146], [-77.33107553108516, 34.56596851100427], [-77.33105964103952, 34.56579491310881], [-77.3309617610708, 34.56551007189859], [-77.33091824516073, 34.56539069806301], [-77.33089836366827, 34.56533640621362], [-77.33084534885256, 34.565315315119065], [-77.33068528781786, 34.56525163699173], [-77.33045154553083, 34.565133379281555], [-77.33038093055323, 34.5651194954612], [-77.33015876140936, 34.56507531782991], [-77.32978955362827, 34.56499281035488], [-77.32966417262257, 34.564509777541915], [-77.32960633661183, 34.56436809760695], [-77.329597911894, 34.564306849047426], [-77.3295315099104, 34.564173111260594], [-77.32966469097123, 34.56392133369989], [-77.32988562413249, 34.563654254193715], [-77.32997916724929, 34.56340297847039], [-77.32966525622098, 34.56327991051852], [-77.3292809567315, 34.56308900955871], [-77.32926901069963, 34.5630831655147], [-77.32926316279374, 34.5630723755635], [-77.32899904281771, 34.56269476821322], [-77.32904933211324, 34.56250295194845], [-77.32918168792953, 34.562146323388525], [-77.3293782154975, 34.56179119841807], [-77.32953937530601, 34.56105673100903], [-77.32935350471496, 34.56094567480338], [-77.3288799338607, 34.56038458605686], [-77.32866292917234, 34.56042966588521], [-77.32838268192356, 34.56054948498312], [-77.32809200120965, 34.56044540460625], [-77.32796916760488, 34.56042794422606], [-77.32769804471096, 34.56046435605282], [-77.32734734039937, 34.560431476514495], [-77.3273041357135, 34.56043095532506], [-77.32726834764127, 34.56043483117898], [-77.32691016482629, 34.56046533860369], [-77.32670954310153, 34.56047656930236], [-77.32691026925772, 34.56035140224063], [-77.3269495130955, 34.560059552763434], [-77.32718961578453, 34.5601067787824], [-77.32730443058739, 34.56010757739888], [-77.32748789474206, 34.56013792495555], [-77.32750827859164, 34.56014207234087], [-77.32769822984253, 34.5602602586842], [-77.32802171562979, 34.5602120298226], [-77.32809220311538, 34.56022163394809], [-77.32814277832938, 34.56021610519133], [-77.32885643354707, 34.56014248125486], [-77.32888019108981, 34.56009650898348], [-77.32892953013977, 34.56010435517042], [-77.32965715948015, 34.56004115133089], [-77.32946832147793, 34.55944690292414], [-77.32936425609682, 34.55924597933971], [-77.3291497578218, 34.55911212451913], [-77.32889195762831, 34.55883935208211], [-77.32888505333986, 34.558829668080364], [-77.32888171240408, 34.55882570326521], [-77.32887138233583, 34.55881399220456], [-77.32867052331027, 34.55836642591706], [-77.32844506350818, 34.55819713541828], [-77.32839699760059, 34.558160922684486], [-77.32838970102205, 34.55808267390648], [-77.32868840579023, 34.55787422688479], [-77.328777518372, 34.557774636066725], [-77.32891956269808, 34.557651987504556], [-77.32911744969451, 34.557322934455996], [-77.32906268051833, 34.556919794858246], [-77.3290565819044, 34.55684205358565], [-77.3290828732249, 34.55674953479863], [-77.32899409190249, 34.556606220615656], [-77.32905256781572, 34.55653113668819], [-77.3289447194163, 34.55656994018847], [-77.3286260609727, 34.55661236417038], [-77.32839670772161, 34.556595587203034], [-77.32816017203174, 34.55653714229507], [-77.32811617724519, 34.55651532715956], [-77.32805297350892, 34.55649666388471], [-77.32797119279934, 34.556388434761125], [-77.32762896487091, 34.55606797207546], [-77.32757049229366, 34.55596273455028], [-77.32743392875479, 34.55560637349581], [-77.32742838533639, 34.55558757449947], [-77.32739682689564, 34.55559314023981], [-77.3272844536579, 34.55562785468286], [-77.32674077008605, 34.55578941853754], [-77.32660511894053, 34.55586834438645], [-77.32639761486843, 34.555884441772065], [-77.32517043506752, 34.55593164373496], [-77.3250460942387, 34.55594122934426], [-77.32503282524615, 34.555940610656144], [-77.32501013926047, 34.55594053215519], [-77.32345686033338, 34.55617014932958], [-77.32344435668202, 34.55617188703556], [-77.32343525809783, 34.55618096483667], [-77.3226589864421, 34.55670883119578], [-77.32244924387868, 34.55668108084374], [-77.32185884993176, 34.55734402963607], [-77.32181813367058, 34.55736750495622], [-77.32184611816032, 34.5573885286553], [-77.32184635996921, 34.55739553172863], [-77.32143021300135, 34.55817233660434], [-77.32129377639347, 34.55844712708343], [-77.32103689165875, 34.558972792560766], [-77.32103643833715, 34.55897372020801], [-77.32103633541686, 34.55897427224937], [-77.32084197558194, 34.55949127716597], [-77.32088159533845, 34.5598926379095], [-77.32003237396613, 34.56058681478452], [-77.31901709271436, 34.5637161975015], [-77.31926116436193, 34.56409385327153], [-77.31879587720988, 34.56433566979823], [-77.31863303484167, 34.564787193556846], [-77.31788205873124, 34.56688123480321], [-77.31712009720307, 34.567797605945486], [-77.31642407087553, 34.568918039191274], [-77.31547580185058, 34.57007099387626], [-77.31265044647397, 34.57218995978875], [-77.31114312507921, 34.5733204496163], [-77.3091666933677, 34.57480278221977], [-77.30815377604577, 34.57478592900128], [-77.30630504658771, 34.57614262694393], [-77.30353035416343, 34.5772634760065], [-77.3030474593152, 34.577571287363426], [-77.30204255539367, 34.5782553033215], [-77.29848618472394, 34.580351474901335], [-77.29514274941802, 34.580101190971824], [-77.29356660581806, 34.5813432159073], [-77.29190029964104, 34.582409984853804], [-77.29256279569606, 34.584799021574575], [-77.29148156668509, 34.587359666249284], [-77.2902444409458, 34.590316906342736], [-77.28987791882481, 34.59120127206523], [-77.2870892711119, 34.592299883969694], [-77.28595016565343, 34.592869433812865], [-77.28565318397756, 34.59295260693954], [-77.28528003414519, 34.59307085167017], [-77.28088597572531, 34.59471000819443], [-77.27946875299864, 34.595391666491224], [-77.27798642781481, 34.59610464181131], [-77.27665495929655, 34.597103269211644], [-77.27630040358625, 34.59737657785782], [-77.27605759116014, 34.5975513016033], [-77.27500898989334, 34.59866184603944], [-77.27430833924507, 34.60021395801607], [-77.27406814086807, 34.60083276789571], [-77.27382780373291, 34.602899282620896], [-77.2729554309658, 34.606247824358135], [-77.27269739199772, 34.607184345787296], [-77.27181202028278, 34.60789268277601], [-77.27092988920577, 34.60891940370191], [-77.27000484397135, 34.61000838151014], [-77.26883642698861, 34.61125186651658], [-77.26866650673334, 34.611427906102556], [-77.26801223051977, 34.61178781959953], [-77.26690024376109, 34.61244714966378], [-77.26656986052907, 34.61271908870578], [-77.26615423965347, 34.61254351000113], [-77.26576570579786, 34.61225209574837], [-77.26520984525317, 34.611908802013055], [-77.26298944788539, 34.61035229554117], [-77.26107545820084, 34.60924875659545], [-77.2591586244645, 34.60884731330003], [-77.25720381361062, 34.60906246433592], [-77.25704168465596, 34.60938116086189], [-77.25687909303977, 34.609700752609676], [-77.25753421862146, 34.61130522966502], [-77.25534430021129, 34.61266726141223], [-77.25417942444855, 34.613650617466796], [-77.25306187612577, 34.61472409174872], [-77.25233257802435, 34.615247683679186], [-77.25016334901929, 34.61747935834052], [-77.24943161846028, 34.617926703085494], [-77.2492799529403, 34.61819715368433], [-77.24709622970569, 34.621108684958244], [-77.24632025813395, 34.621734862207035], [-77.24387625615586, 34.62338496767126], [-77.24145178520342, 34.62512218827994], [-77.24024724080738, 34.62553615640828], [-77.23924305468358, 34.6257209307533], [-77.23326571518001, 34.62824784600524], [-77.23226338615528, 34.62895461642316], [-77.23005293457732, 34.63054205498193], [-77.22839998826552, 34.63163498789801], [-77.22597515750252, 34.63302058322515], [-77.22567883571979, 34.63361782791816], [-77.22638441844526, 34.63524684432161], [-77.22600949003399, 34.63594659389334], [-77.22702269920332, 34.636523346325134], [-77.22785813377729, 34.63819420287664], [-77.22834729505074, 34.639172543857974], [-77.22847712240166, 34.63943219868956], [-77.22869886086131, 34.63987565060896], [-77.22909616330708, 34.64067014516799], [-77.22889830942867, 34.6417408010922], [-77.22831991856282, 34.64294122557009], [-77.22799952221163, 34.644019175425825], [-77.2270927245515, 34.64539486975282], [-77.22472756280746, 34.64642869819477], [-77.22640032793258, 34.64755609030814], [-77.22636222745322, 34.648443096893736], [-77.2265839407502, 34.64895690606211], [-77.22642609538698, 34.65006185377789], [-77.22639368252598, 34.65033101014952], [-77.22638901373901, 34.650499249028684], [-77.22642748248693, 34.65101895713522], [-77.22642921505705, 34.65221923072948], [-77.2266078552488, 34.65335631184031], [-77.22665013249781, 34.654122046594416], [-77.22672542687584, 34.65558775185051], [-77.22666364803021, 34.65600856115247], [-77.22680720294329, 34.65622070849829], [-77.22687186350258, 34.656802555364436], [-77.22699607910522, 34.657920193736224], [-77.22737752505562, 34.6587974060125], [-77.22741709940898, 34.6588961065612], [-77.22740816127614, 34.658934937414216], [-77.22786635183745, 34.65987422811021], [-77.22832904797235, 34.66058780369865], [-77.22862562167545, 34.66141865685824], [-77.22902312106352, 34.661850816447206], [-77.22662415672106, 34.665105860860905], [-77.2288315938136, 34.66560652585078], [-77.22712317066133, 34.66646076199313], [-77.22526364030007, 34.66663629794627], [-77.22458855830297, 34.66586688194054], [-77.2245196104382, 34.66526658647841], [-77.22323146410943, 34.66398548696296], [-77.22299971111103, 34.663521951967994], [-77.22234502409917, 34.662212646103], [-77.22188256927718, 34.66128773890881], [-77.22176165396189, 34.66104591183017], [-77.22155513270386, 34.66063285186786], [-77.22090120560313, 34.659324878215656], [-77.2205237132689, 34.658569833686336], [-77.219545053076, 34.65793891101572], [-77.2187917158065, 34.65727298084161], [-77.21781827441427, 34.65664231774214], [-77.21707663048826, 34.65614938474752], [-77.21517957925553, 34.65584079681625], [-77.21106465001917, 34.65469155315262], [-77.20864696715039, 34.6541926197802], [-77.20519020379145, 34.65296259091954], [-77.20138770684795, 34.6521271665776], [-77.19954319081246, 34.65171732302783], [-77.1991502846017, 34.65156006769235], [-77.19835926696558, 34.65140069128217], [-77.1989600387444, 34.65193522248736]], [[-77.23280407263046, 34.68202913774992], [-77.23228906837524, 34.680800424463136], [-77.23248446054203, 34.6790330548086], [-77.23123473109601, 34.68063449304128], [-77.23153680700483, 34.680902984516564]], [[-77.3300290939397, 34.76830163721684], [-77.33080252210647, 34.766754883867016], [-77.3312388250761, 34.766292395277375], [-77.3323036043069, 34.765209713532734], [-77.33284617517862, 34.765382577293785], [-77.33367365669689, 34.76616099148987], [-77.33369825504478, 34.76630417311784], [-77.33373249899832, 34.766353356206146], [-77.33486568288826, 34.76698337212324], [-77.33572071596961, 34.76736313561113], [-77.33604900593217, 34.76765035595453], [-77.33661309651147, 34.76790801001501], [-77.33672783883583, 34.76802070943899], [-77.3369071545929, 34.768011346695985], [-77.33735241312306, 34.76822503925413], [-77.33774048375618, 34.76865932725326], [-77.33777871091993, 34.76872297084787], [-77.33829968687314, 34.76907348273108], [-77.33830518305876, 34.769138170689246], [-77.33838827267932, 34.76932337592327], [-77.33840948513654, 34.76936755855186], [-77.33841368150341, 34.76938001192686], [-77.33840776735462, 34.76945544524012], [-77.33842079442255, 34.76960969457064], [-77.33834566313578, 34.76966905379468], [-77.33818480435879, 34.76978147435989], [-77.33797623849351, 34.76990926482664], [-77.33768798552629, 34.76993785888769], [-77.3376676799877, 34.76994012631293], [-77.33764183291045, 34.76993883699779], [-77.33736771298604, 34.76994143556945], [-77.33712117936615, 34.769979404447874], [-77.33682668322277, 34.76985509454891], [-77.33679578245162, 34.76984774189027], [-77.3364271103691, 34.77012667794986], [-77.33645871580752, 34.770167480076736], [-77.33660178091262, 34.770346421054775], [-77.33659380967158, 34.770384784623936], [-77.33663771683688, 34.770391368444294], [-77.33681488587109, 34.77080458137367], [-77.33692040375571, 34.77092204399537], [-77.33701906606437, 34.77114053900238], [-77.33706664486513, 34.77125744348303], [-77.33709218242447, 34.771366965881796], [-77.33712167595496, 34.77149358614226], [-77.3371139373462, 34.771561586235244], [-77.33710564308242, 34.771739469602586], [-77.33710929957041, 34.77202046900933], [-77.33674482117438, 34.772633619799784], [-77.33679836446152, 34.772756333699725], [-77.33678275022692, 34.77300789418837], [-77.33659838092626, 34.77353448676039], [-77.33675963424045, 34.773736385031995], [-77.33727504088375, 34.77438170201086], [-77.33735528880284, 34.774529301880094], [-77.33800966050835, 34.77537133614773], [-77.3381496541475, 34.7754953369365], [-77.34005567432644, 34.7771835368103], [-77.34196177250737, 34.77887170326892], [-77.34419187645452, 34.780846650737715], [-77.34661814921319, 34.77934444785901], [-77.34757222082175, 34.77810231197007], [-77.34908658961021, 34.77496894267614], [-77.349007150387, 34.77400645765628], [-77.34962049624599, 34.772983815759474], [-77.35165708586572, 34.76974386943916], [-77.3526785481643, 34.76793801624066], [-77.35449436610207, 34.76873597186025], [-77.3548829457497, 34.76893750871055], [-77.35697375239383, 34.76845075003856], [-77.35742738498637, 34.76855774255593], [-77.35810901457187, 34.76866761019494], [-77.3586486464733, 34.768784428614914], [-77.35906476079433, 34.768875472305545], [-77.35923600725235, 34.768912939479755], [-77.35954255424386, 34.7690930869356], [-77.35987151316118, 34.76934941654528], [-77.36032569442709, 34.769578959844175], [-77.36035968948738, 34.76959245472753], [-77.3603953010256, 34.7696379671611], [-77.36050140868181, 34.769979710615836], [-77.36112120290414, 34.77045125560615], [-77.36120313437975, 34.770580104740915], [-77.36129768848073, 34.770650239991426], [-77.36143371829729, 34.770689018766326], [-77.36158920059663, 34.77086564765524], [-77.36164082738085, 34.77102779356994], [-77.3615627120552, 34.77116500476053], [-77.36106961229085, 34.77143548737952], [-77.36097389948048, 34.77143447716311], [-77.3609488444553, 34.77150939108705], [-77.3609729365834, 34.771568431627344], [-77.36063985581072, 34.7723856824227], [-77.36064298094577, 34.77252080317057], [-77.36051875765565, 34.77264998936215], [-77.36013054447778, 34.77305020783374], [-77.3598793895339, 34.77332428888805], [-77.359799174112, 34.773343946391634], [-77.35947210532754, 34.773470808252874], [-77.35912558755474, 34.77371053638414], [-77.35878597265241, 34.77384611298051], [-77.35851089197408, 34.774011525745415], [-77.35870729236703, 34.77429649619982], [-77.3587647183693, 34.77495281812611], [-77.35874238554045, 34.77521101651115], [-77.35879388450002, 34.77535672796124], [-77.35895752649228, 34.775845545776704], [-77.35900870762404, 34.77595602716187], [-77.35890068018651, 34.77628025014259], [-77.35885824331154, 34.77637003219978], [-77.35876705159164, 34.776502857135284], [-77.35866779848142, 34.776648154451955], [-77.35845274761994, 34.77678735020287], [-77.35812036637282, 34.77717089572939], [-77.35808321415092, 34.777189613187375], [-77.35804926374632, 34.77720537291442], [-77.35736030602408, 34.77750481930029], [-77.3573349588331, 34.77751461270159], [-77.35724814078668, 34.777581289122786], [-77.35685450942965, 34.77790569690305], [-77.35691982566911, 34.778282013952094], [-77.35698692600928, 34.77851128021968], [-77.35701135801177, 34.77857232505008], [-77.35689803447514, 34.77899522968602], [-77.35689534049254, 34.779038464619376], [-77.35687454964948, 34.77907550689669], [-77.3566935334238, 34.77940957991515], [-77.3566334695387, 34.77950605145912], [-77.35657900939164, 34.77964474930593], [-77.35642727048733, 34.77999312219212], [-77.35631599044314, 34.780289746869364], [-77.35607085251527, 34.780748717808656], [-77.35597550857302, 34.780953491583446], [-77.35593278908246, 34.78116067094339], [-77.35574399943032, 34.78143170784807], [-77.35581333905941, 34.78174837021279], [-77.35598465528548, 34.78207517160993], [-77.3561786524231, 34.78248882206742], [-77.35600430413776, 34.78277538926089], [-77.35576601644702, 34.78306593233201], [-77.35574200098151, 34.783095214353565], [-77.35573338860908, 34.783105715316644], [-77.35543315050745, 34.78333890196832], [-77.3551909524511, 34.783475114611385], [-77.35497192297944, 34.783590458869845], [-77.35461850887904, 34.78369665855746], [-77.35431330719202, 34.78379479699882], [-77.3537862685816, 34.78397247439706], [-77.35365688772575, 34.78399156126562], [-77.35347886096577, 34.78396408003788], [-77.35345013954013, 34.78423089644652], [-77.35360136319395, 34.78418264026676], [-77.35377852542389, 34.784229395141054], [-77.35416719736457, 34.784297624460066], [-77.35426913215393, 34.78438966493543], [-77.3543622014941, 34.78448155335903], [-77.35463913207194, 34.78473576426116], [-77.35477102851578, 34.78485957436774], [-77.35492068709507, 34.78505825132834], [-77.35532342503586, 34.785522177711705], [-77.3555204634026, 34.78582739772275], [-77.35555490198635, 34.785872091078915], [-77.35549074615312, 34.786221788016334], [-77.35547255735517, 34.78635259922067], [-77.3554652260549, 34.78636730676608], [-77.35545640926374, 34.786372447785695], [-77.35544635189632, 34.78637457340727], [-77.35539230249607, 34.786385996652996], [-77.35510450308621, 34.786446822619645], [-77.35505403660672, 34.78646318844091], [-77.35474861877444, 34.786567370615344], [-77.35465287281457, 34.786555906038245], [-77.35402565391793, 34.78684698193568], [-77.35393856550343, 34.786923945435326], [-77.35390163242137, 34.786981652728855], [-77.35384155734359, 34.78708367961255], [-77.35358943647316, 34.78751186666669], [-77.35345051105173, 34.78776828512056], [-77.35323482926239, 34.788047898237345], [-77.3530319003476, 34.788204482354566], [-77.35264313547326, 34.78832992649228], [-77.35292335111282, 34.78857801166512], [-77.3530318890642, 34.78867410283081], [-77.35318748370192, 34.78854177450056], [-77.35363347651948, 34.788196565889805], [-77.35375387060677, 34.78808101112038], [-77.35379854948549, 34.7880209916556], [-77.35383736652673, 34.78792553061887], [-77.35404244946392, 34.78754710582204], [-77.35415516939929, 34.78734704838824], [-77.35418739421971, 34.78729231952651], [-77.35436448854574, 34.78710056710207], [-77.3546276638397, 34.78698362618075], [-77.35486738730803, 34.78690677729748], [-77.35519364750814, 34.78683150423272], [-77.35526471005876, 34.78680777354745], [-77.35532412611859, 34.78679521606766], [-77.3556701710778, 34.786722079569884], [-77.35597353139181, 34.78654519193628], [-77.3561999791831, 34.78609090810465], [-77.35621024926078, 34.786068796642944], [-77.35621689570308, 34.78604284473729], [-77.35598515141866, 34.78543078155364], [-77.35598561850084, 34.78524660662238], [-77.35588092507157, 34.784878944464495], [-77.35555886747662, 34.784531717398764], [-77.35546485882446, 34.7841302151596], [-77.35574906880515, 34.78385564550743], [-77.35573638586126, 34.78366600402455], [-77.35599202575824, 34.78350417538551], [-77.35599953688003, 34.78347848037349], [-77.35602771679804, 34.78344412056106], [-77.35617772156697, 34.78326122019345], [-77.35624853673644, 34.783174875587235], [-77.35649259935195, 34.78277372258121], [-77.35678474359851, 34.78255420852527], [-77.356913320813, 34.78240018115143], [-77.35686953507292, 34.782201296370694], [-77.3567141577106, 34.782011153041466], [-77.35643992253581, 34.781487604570614], [-77.35651138317633, 34.7811410374753], [-77.35665191156899, 34.78083921935499], [-77.35671084064447, 34.780651606494615], [-77.35677083602894, 34.78045739984801], [-77.35688492310703, 34.78015329282716], [-77.35699445970054, 34.7799018109847], [-77.3570834852033, 34.779663549266175], [-77.35724937085092, 34.77936575257527], [-77.35734138001872, 34.779194570494354], [-77.3573833598661, 34.77904023284599], [-77.35770995110559, 34.77858362303434], [-77.3578777052694, 34.77835114490419], [-77.35794632537556, 34.778287817071345], [-77.35813212040247, 34.77810586265372], [-77.35844835965675, 34.77778688640914], [-77.35863636123759, 34.77741084539741], [-77.3587441487182, 34.77723234707456], [-77.35886849719932, 34.776976439453], [-77.35888245847556, 34.77693774028495], [-77.35891790006545, 34.77688631794382], [-77.35910468461398, 34.77661394194808], [-77.35918417418736, 34.77648410036417], [-77.35929023106155, 34.77616861277892], [-77.35940017688128, 34.77600046379612], [-77.35940571553667, 34.77579078065577], [-77.35926551698732, 34.775394102080156], [-77.35932337602465, 34.774725171596934], [-77.35962909882733, 34.774402884501555], [-77.35993088441774, 34.77422125093021], [-77.36018142050482, 34.773682906345456], [-77.36030351995285, 34.77352045823305], [-77.36037220643297, 34.7734455018631], [-77.36053432954536, 34.77327836517649], [-77.36092943702184, 34.77285935638281], [-77.36111290556701, 34.77268526631736], [-77.36143065375364, 34.77240138254707], [-77.3615261308443, 34.77233777311454], [-77.36219632093511, 34.77197418720839], [-77.3622135182599, 34.77196454496396], [-77.36222685050086, 34.77195666226753], [-77.36232284011622, 34.771899009452184], [-77.36246564112713, 34.77162815286485], [-77.36241009377393, 34.7714615662493], [-77.3623661802833, 34.771389351009084], [-77.36216413530916, 34.771072567180425], [-77.36201263946516, 34.7707632424305], [-77.36193540565348, 34.77066353408986], [-77.36168937620306, 34.77037769382889], [-77.36145544445955, 34.77010709133309], [-77.3613288613857, 34.76996470552014], [-77.36114974854222, 34.76970982497175], [-77.36100367461471, 34.76945360779666], [-77.36092935062999, 34.76935532078194], [-77.36049082564168, 34.769146658230454], [-77.36045534979837, 34.769132575526584], [-77.36042693284055, 34.76911821359066], [-77.36036075016915, 34.76906664308311], [-77.35960393407217, 34.76856830330849], [-77.359399746999, 34.76834922967997], [-77.35854717083963, 34.76802915628947], [-77.3583094241664, 34.76797768937166], [-77.35820380232722, 34.767960664843464], [-77.35718586416876, 34.76772057679007], [-77.3561526459046, 34.76796111933452], [-77.35495786468644, 34.76734144600634], [-77.35495394200885, 34.767306068666606], [-77.35588498542282, 34.76567175824539], [-77.35663305934196, 34.765498761712976], [-77.35759635500223, 34.765274010034446], [-77.3579213686417, 34.765188597046325], [-77.35816035809208, 34.765133868651716], [-77.35856316228396, 34.765041625561985], [-77.35869694777348, 34.764878723794745], [-77.35873136821755, 34.7647953534521], [-77.35881930662225, 34.76461823565475], [-77.35876318591447, 34.76439129788036], [-77.35876049791375, 34.764382615988715], [-77.3587593449821, 34.7643796099482], [-77.35875796811455, 34.76437095934741], [-77.35872628866719, 34.7640108044871], [-77.35870429539679, 34.76390294583439], [-77.35868144658161, 34.763651062559354], [-77.35869105887723, 34.76341737812148], [-77.35856085025745, 34.762987054265274], [-77.35855466484979, 34.76296011458924], [-77.35855029697343, 34.76294931608253], [-77.35853477580719, 34.76291265218833], [-77.35843129723845, 34.76266076707056], [-77.35835320902216, 34.76248898498466], [-77.35830072720087, 34.76236695861422], [-77.35813999724687, 34.76203086617033], [-77.35804873099934, 34.76177231260448], [-77.35782370068117, 34.761399896120345], [-77.35760982865949, 34.761321414900785], [-77.3575968622548, 34.76113065185487], [-77.3573784963303, 34.76087016781594], [-77.35725896358386, 34.76080281289914], [-77.35721581232147, 34.76069557148002], [-77.35715267589956, 34.7606163894163], [-77.3570529084028, 34.76056706362732], [-77.35696651922868, 34.76056656376555], [-77.35683873808742, 34.76066596902778], [-77.35677693357187, 34.760717771010746], [-77.35672266036448, 34.760763260113436], [-77.35640668904249, 34.76102809221037], [-77.35604686646549, 34.76132967498727], [-77.35602728732201, 34.761346084988745], [-77.35569577963331, 34.76167493385296], [-77.3552421990143, 34.76203737712222], [-77.35488170797346, 34.76223041939866], [-77.35370993834114, 34.76318733332923], [-77.35255950062862, 34.762726711219116], [-77.35097006761598, 34.764369423589194], [-77.34764134815264, 34.76347678596367], [-77.34654074855962, 34.76311837138846], [-77.34654376016027, 34.76273539208306], [-77.34655166138194, 34.762646214635865], [-77.34524941071882, 34.76215386913867], [-77.34470716847449, 34.76192445078309], [-77.34451327629245, 34.761848900076345], [-77.34405620570162, 34.761494584878456], [-77.34401610056246, 34.76149820796685], [-77.3435439997774, 34.761109225221254], [-77.34353824049657, 34.76110447991962], [-77.34353275109446, 34.76109995694799], [-77.34350894354458, 34.76109302634153], [-77.34299768359237, 34.760879655456414], [-77.34265857251616, 34.76099247115397], [-77.34235748467219, 34.76102105576945], [-77.34207968947146, 34.76110355343575], [-77.34182235896672, 34.76134532282982], [-77.34147203205218, 34.76184188704632], [-77.34117016268476, 34.76213681175627], [-77.34084442147844, 34.762454172004595], [-77.34078384592945, 34.76250889019367], [-77.34070215516726, 34.76259364690582], [-77.34003975625185, 34.763126376783354], [-77.33958978081006, 34.76360094700069], [-77.33942351610816, 34.7638571261016], [-77.33920215062236, 34.764141467862046], [-77.33942165500872, 34.76426938407855], [-77.33945110771157, 34.76459470704373], [-77.33972314835886, 34.76482592654486], [-77.33979959755564, 34.76503430197307], [-77.33993346076201, 34.76523795418463], [-77.34004764180865, 34.7653647900141], [-77.34015245296415, 34.7654732955396], [-77.34039202674931, 34.76588836406928], [-77.34068373224163, 34.766250119112016], [-77.34076200123503, 34.76636446859695], [-77.34078422158056, 34.76637518487192], [-77.34079717755729, 34.766388818066844], [-77.34109909758955, 34.766805621921584], [-77.34113524517132, 34.76689365819839], [-77.34144593013536, 34.76724543883799], [-77.34142179688715, 34.76746169852423], [-77.34145868017207, 34.767731066205855], [-77.34142252362216, 34.76785530922709], [-77.34155715318636, 34.767896634659294], [-77.34192771971716, 34.76786109394499], [-77.34244378615031, 34.767809151433134], [-77.34281635955361, 34.767687097956774], [-77.34366240718583, 34.76761194458035], [-77.34438039154804, 34.767552170161544], [-77.34519245644003, 34.76775756342429], [-77.34716649151568, 34.76841041347323], [-77.3470155730763, 34.76867960404103], [-77.34598251949497, 34.77052229498054], [-77.3453465402037, 34.77165673507075], [-77.34381667333146, 34.77249084678273], [-77.34326796777346, 34.772844094421636], [-77.34177295312438, 34.77359802895705], [-77.3410682090128, 34.77370076055537], [-77.34082339866285, 34.77344005804511], [-77.33984153080584, 34.77379807337016], [-77.33936056331866, 34.77337984310567], [-77.33905516061792, 34.773222657529416], [-77.33880095635455, 34.7732552656727], [-77.33838813559422, 34.77302578138318], [-77.33832871420847, 34.77299274946328], [-77.33828513278515, 34.772968522660626], [-77.33803648749043, 34.77283030080971], [-77.33803294857829, 34.77282594118934], [-77.3378272435463, 34.77265642176249], [-77.33778632858629, 34.77262325381076], [-77.33778379508514, 34.77262330319908], [-77.33778425299388, 34.77262119142194], [-77.33778443119334, 34.77261849924324], [-77.33771871372733, 34.77188501594422], [-77.33771897279206, 34.77165539484359], [-77.33767164907995, 34.771241923738856], [-77.33766397923543, 34.77117556130206], [-77.3376539921969, 34.77114645616078], [-77.3376337116106, 34.77108735184916], [-77.33749237102137, 34.77071171297319], [-77.33741726570346, 34.770540114471586], [-77.33739269926858, 34.77035648791232], [-77.33767584089318, 34.77034134974394], [-77.33787260016506, 34.77026572226192], [-77.33796253580249, 34.770222921026985], [-77.33807174693281, 34.77014491745967], [-77.3383811122953, 34.76995536612402], [-77.33861612910965, 34.76976920728995], [-77.3388170850358, 34.769703221520544], [-77.33886243429282, 34.76954914893721], [-77.33888791350998, 34.76940961898107], [-77.33874672042052, 34.76932003015335], [-77.3386942540466, 34.76916433065449], [-77.33866065478657, 34.76908943852262], [-77.33863725139346, 34.76881398972533], [-77.33837954111658, 34.768640602616166], [-77.33795259204045, 34.76792978414953], [-77.33786460078719, 34.767831313556655], [-77.33771085575287, 34.767757526829485], [-77.33700603527197, 34.76706389247493], [-77.33688428249503, 34.76700828066629], [-77.33603894078476, 34.76626869260691], [-77.33588459859429, 34.76620014142467], [-77.3356800473464, 34.766086417126985], [-77.33508791583297, 34.76523596460917], [-77.33506502391302, 34.76510271572678], [-77.33491705897023, 34.764241512678325], [-77.33484864163835, 34.76384330867594], [-77.33466255155267, 34.76276012851537], [-77.33438826967628, 34.76262061911358], [-77.33443019082115, 34.761986831308775], [-77.33399017774974, 34.76046958821814], [-77.33574909027905, 34.75902316521379], [-77.33684682406775, 34.759021043324125], [-77.33703418059295, 34.75901000804594], [-77.33716119445928, 34.75906017479658], [-77.33809333792206, 34.75920250307683], [-77.33843937213604, 34.759155275032555], [-77.33870051398586, 34.7591747032516], [-77.33898673800962, 34.75908551039046], [-77.33936083093148, 34.75896409028013], [-77.33950230621215, 34.75882029028908], [-77.33980349215881, 34.758697907443945], [-77.3400648090104, 34.75860326462511], [-77.34017400773263, 34.758566873286476], [-77.34051663119435, 34.75844224141228], [-77.34074623075786, 34.75832001092414], [-77.34126013559134, 34.75801079622563], [-77.34135835249442, 34.75791128376844], [-77.34149064517891, 34.757820019942734], [-77.34166314147241, 34.75771184489891], [-77.34152740548663, 34.75769355052645], [-77.34135127410903, 34.757661736774985], [-77.34100633668562, 34.75759943176352], [-77.3409582115935, 34.75759073903733], [-77.34093654164582, 34.75758644089911], [-77.34092055286496, 34.75756998759331], [-77.34075809468507, 34.757379510502936], [-77.34053155986129, 34.75713595340473], [-77.34051964010106, 34.75711864792973], [-77.34050347605336, 34.75709416516932], [-77.34034686201255, 34.75685732527062], [-77.34029546298203, 34.75677930021163], [-77.34024577570808, 34.756737964373784], [-77.34023604411311, 34.75668910078124], [-77.34018862257909, 34.75663161889294], [-77.34011671735003, 34.75664010968139], [-77.34003735063688, 34.75663679204817], [-77.33992111020697, 34.75663800363432], [-77.33946708603551, 34.7567454132434], [-77.33940224306505, 34.7567607532831], [-77.33910947005157, 34.7568435716531], [-77.33881272286429, 34.756932695639726], [-77.33873187087299, 34.757006013244784], [-77.33778737428224, 34.75730095295921], [-77.33701087540362, 34.75745131480354], [-77.33612809842872, 34.757719561183976], [-77.33534180449496, 34.75768760587847], [-77.33362712826876, 34.75807934456536], [-77.33285477578858, 34.757493214222436], [-77.33159994026124, 34.756925652168555], [-77.33155399589646, 34.756967730710365], [-77.33155717850461, 34.75690409069661], [-77.33032659255097, 34.75628358769147], [-77.32948064117578, 34.75585701506689], [-77.32851722256703, 34.75537119159231], [-77.32787635578325, 34.75501408461661], [-77.32746645106216, 34.754543026481116], [-77.32658385024622, 34.75368662653738], [-77.32673374942422, 34.75273944624154], [-77.32675526605843, 34.75268841398677], [-77.32674005337142, 34.7526190552169], [-77.32672936884047, 34.751717227735], [-77.32601145970554, 34.75171819795767], [-77.32588770559357, 34.75173210082414], [-77.32575526239653, 34.75174630062437], [-77.32541467725854, 34.75178281545553], [-77.32527455344038, 34.75178054221448], [-77.32489069318154, 34.751791470634956], [-77.3246941334321, 34.751716441395416], [-77.32437579204473, 34.75180060475661], [-77.32397870207706, 34.75209407077895], [-77.32358756708534, 34.75237890950605], [-77.323404464591, 34.75266009958893], [-77.32306679030998, 34.753191994276854], [-77.32306592878867, 34.75319349112496], [-77.32306572628089, 34.753193865514305], [-77.32306540975897, 34.753194450683566], [-77.32280769490312, 34.753716574480826], [-77.32277606003757, 34.75381094960461], [-77.32267610252839, 34.754124900469805], [-77.32250431659739, 34.75424549399607], [-77.32210882176608, 34.75442572000211], [-77.32186668095814, 34.75450989514959], [-77.32172826490627, 34.75456176321141], [-77.32143540500434, 34.75468122082408], [-77.32103328805036, 34.754934340509244], [-77.32088061049735, 34.75508741983542], [-77.32077285324306, 34.75535058314756], [-77.32073381992718, 34.75546271876878], [-77.3206333251637, 34.755851912496176], [-77.32061683959144, 34.75596610307965], [-77.32060934531309, 34.7561239312081], [-77.32028921203687, 34.75649833467083], [-77.32050550041848, 34.756738340196975], [-77.32074918451394, 34.757040007398466], [-77.3209287936713, 34.757201208638236], [-77.32118217112367, 34.757350765026736], [-77.32141979561578, 34.75761204128087], [-77.32176533838056, 34.75766583444637], [-77.32219311428202, 34.75769966807573], [-77.32230535715962, 34.75771963326028], [-77.3224063313957, 34.757716531599115], [-77.32293809020476, 34.75775338546669], [-77.32398635977572, 34.757839891453486], [-77.32412362503423, 34.75779698848338], [-77.32459276913553, 34.757537967882385], [-77.3245667414354, 34.757861891103175], [-77.32641862318438, 34.759287494225404], [-77.32703198764645, 34.76053880562962], [-77.32600725062969, 34.76156346368593], [-77.32430491264118, 34.763229650904606], [-77.32671517073796, 34.765365436286366], [-77.32862072304664, 34.76705383653454]], [[-77.35193115976388, 34.78769958085425], [-77.35177243684541, 34.787273759041035], [-77.3516855814026, 34.78716431650797], [-77.35158374754388, 34.787001268629744], [-77.35067581386294, 34.78644943264289], [-77.35068505990876, 34.78635665886083], [-77.35017618507152, 34.78614575390189], [-77.35054017977754, 34.786468038671515], [-77.35149343367858, 34.78731203414063]], [[-77.36771722939639, 34.783041163945086], [-77.36800645057693, 34.78068962700168], [-77.36879211462333, 34.77902360516294], [-77.3689634250661, 34.77878764086259], [-77.36902418075799, 34.77861076394013], [-77.36964927623954, 34.776790779520525], [-77.36968281628809, 34.776693126799344], [-77.36981826388335, 34.776658885284775], [-77.37095203937227, 34.77577397341051], [-77.37113467914958, 34.77447815206664], [-77.37160253491888, 34.77300054472667], [-77.37114226925215, 34.772098720689215], [-77.37060863812998, 34.77221781959275], [-77.36997557804148, 34.77169763372629], [-77.36972869431233, 34.77149339089877], [-77.36906451869298, 34.77099411725121], [-77.36901524596837, 34.77089790244864], [-77.36893283460827, 34.770869680771895], [-77.36878141647577, 34.77072695556671], [-77.36828090871852, 34.77031110999027], [-77.36793284673992, 34.769894536082724], [-77.36764640014391, 34.76968275411154], [-77.3670935075948, 34.769463799820414], [-77.36677736321778, 34.769454967963625], [-77.36656887834297, 34.76923884133549], [-77.36625295895749, 34.7690515160635], [-77.3661983493496, 34.76887274871709], [-77.3660278750089, 34.768571556128194], [-77.36583072120459, 34.76829624677268], [-77.36564245739542, 34.768118998137595], [-77.36599330046036, 34.76773636746382], [-77.36601789630305, 34.76770455457273], [-77.36604418884541, 34.76770036863927], [-77.36668289918468, 34.767570884715845], [-77.36685235211374, 34.767571941997765], [-77.36712954881136, 34.76752097177243], [-77.36725785483277, 34.767486459745754], [-77.3673499454905, 34.76748305873825], [-77.36755316499007, 34.76738960598266], [-77.36742389635023, 34.767228373601355], [-77.36730480792951, 34.76714739173941], [-77.36692913955282, 34.76689162605132], [-77.36688822576728, 34.76686376283713], [-77.366460131032, 34.766606545365], [-77.3663333783776, 34.76656520706514], [-77.36621765038399, 34.76653381529423], [-77.36572060885754, 34.76646613302343], [-77.36571854391427, 34.76646618709994], [-77.36571419434664, 34.7664664511997], [-77.36529685408252, 34.76652518163005], [-77.36505137207403, 34.766561513073206], [-77.36485729162305, 34.76655494466484], [-77.36453544388183, 34.766515340423], [-77.36450040450633, 34.76632127412532], [-77.36467041700803, 34.7662492737855], [-77.36475169484719, 34.766129608262986], [-77.36495371198495, 34.765963907735866], [-77.36497945233515, 34.76565009708226], [-77.36526889503116, 34.765317463939205], [-77.36535228570551, 34.7652213591243], [-77.36537610108948, 34.76515731794535], [-77.36547665723455, 34.76509695564189], [-77.36582065611638, 34.764826055936076], [-77.36601406072059, 34.76470334706973], [-77.36613609891694, 34.76451014869652], [-77.36614568362401, 34.76438058782843], [-77.36608785845283, 34.76408397212751], [-77.36589450638455, 34.76365795658172], [-77.365699552095, 34.76335312322017], [-77.36548353565254, 34.76303041641248], [-77.36539821876792, 34.762586062142375], [-77.36568898155707, 34.761983881200166], [-77.3660464157235, 34.76176132505027], [-77.36660205880514, 34.76119231200269], [-77.36660679832318, 34.76118666609218], [-77.36660988857642, 34.76118555926008], [-77.3666128673139, 34.76118394604496], [-77.36729414286349, 34.76080736697984], [-77.36737250046052, 34.760777060222026], [-77.36797424333032, 34.76054680526297], [-77.36803448879337, 34.76052093152193], [-77.36810142852995, 34.760475901561705], [-77.36883992892734, 34.760340966504955], [-77.36960723174997, 34.75970834980516], [-77.37071785529929, 34.759270108352105], [-77.37009850488214, 34.75801609366199], [-77.36760523542965, 34.75809702922423], [-77.36752240240895, 34.75805133627922], [-77.36744223416406, 34.758054728057104], [-77.3674017085988, 34.7581095756595], [-77.36627458111653, 34.757930368980986], [-77.36587172082727, 34.75792631786063], [-77.3656597644566, 34.75783856525858], [-77.3655074389405, 34.75788469124481], [-77.3651220700157, 34.75779219415274], [-77.3650548669938, 34.75771260035968], [-77.36464059115991, 34.75770240460417], [-77.3644506123964, 34.757653359735926], [-77.36443182200875, 34.75764913582405], [-77.36440300570618, 34.75764533095604], [-77.36389520795314, 34.757288019367614], [-77.36329404105888, 34.75725883104807], [-77.36326051086353, 34.75726468987337], [-77.363216191053, 34.75724695930445], [-77.362722215727, 34.756909382398746], [-77.36240441004352, 34.756845279983224], [-77.36212966540714, 34.75688704993807], [-77.3616330387282, 34.75667747602154], [-77.36166341170515, 34.75662676941891], [-77.36159661772204, 34.75665981942422], [-77.36152259124216, 34.75662393147876], [-77.36107151167083, 34.75640524904031], [-77.36100681525396, 34.75634333626463], [-77.36057626210699, 34.75604788085761], [-77.36047138007359, 34.755966709522234], [-77.36028888662926, 34.75588725070857], [-77.36011634487602, 34.755568869143566], [-77.36005858088956, 34.755495757926], [-77.36008635334912, 34.755427671178346], [-77.36010382743846, 34.75536750664069], [-77.36011191957374, 34.75493677535709], [-77.36012376548233, 34.75474697870561], [-77.36018204211781, 34.75461233318107], [-77.36005321284387, 34.754457449586525], [-77.35986761956204, 34.75436268790304], [-77.35981235095487, 34.7541082278975], [-77.35956098480928, 34.75403764160312], [-77.35946696231579, 34.75397966214892], [-77.35937792845857, 34.75398623746461], [-77.3592278559473, 34.75383968313456], [-77.35918730009367, 34.75380054118941], [-77.35915202619395, 34.75373279179501], [-77.35906480712617, 34.753618374564056], [-77.35918789362984, 34.753405856888385], [-77.3591909514015, 34.753282669728314], [-77.35930200287545, 34.75331808757398], [-77.35935021721139, 34.75333549951294], [-77.35947639249109, 34.753381066056654], [-77.35954729393873, 34.75340307302682], [-77.35966881969387, 34.75343017005446], [-77.35982868347894, 34.75346546012976], [-77.35996287084734, 34.75349508177631], [-77.36004037690944, 34.75353860625669], [-77.36008836819045, 34.75360258432415], [-77.36026879584465, 34.75375714031136], [-77.36060715229776, 34.75387885642206], [-77.36062889959184, 34.753874387419906], [-77.36063042196498, 34.75389081697011], [-77.36071923620433, 34.75419913319601], [-77.36098223558857, 34.754649962091975], [-77.36101197864465, 34.75476242792672], [-77.36103136415372, 34.75481054032729], [-77.36158447537133, 34.75511053985278], [-77.36173475401594, 34.75520135034172], [-77.36187887428622, 34.75527832776368], [-77.36198005936065, 34.75533943517964], [-77.36217976509774, 34.75544112035157], [-77.36246424080042, 34.75558857220366], [-77.36259992487557, 34.75590641215694], [-77.36294976418955, 34.756125785674456], [-77.36347992136147, 34.756065360278235], [-77.36370364492514, 34.75569677879136], [-77.36381887356646, 34.75512231631483], [-77.36471853877802, 34.75493356809914], [-77.3644525676343, 34.75316393005532], [-77.36477456399089, 34.752716277919454], [-77.36445087015788, 34.75227031197691], [-77.36456192938975, 34.75057366263263], [-77.36457858137264, 34.75044192630178], [-77.36457671452368, 34.75042460833328], [-77.36376179728688, 34.74949325488292], [-77.36240636655383, 34.74974578926691], [-77.36163870838038, 34.74954951717031], [-77.36150978597225, 34.74889620811774], [-77.36101892880505, 34.74844933778352], [-77.36035603143907, 34.74855568103092], [-77.3600891373297, 34.748376105212756], [-77.35950307458288, 34.74819696638366], [-77.35958327070715, 34.74797676881133], [-77.35931238563258, 34.748024312336064], [-77.35906068851159, 34.74806174303756], [-77.35873177746814, 34.74796105836338], [-77.35862263782872, 34.747927251477634], [-77.35818191469298, 34.747791937257965], [-77.35781278373, 34.74776174096974], [-77.35761632857223, 34.74748121973642], [-77.35742557871107, 34.74727113863166], [-77.35722105254325, 34.746975593476485], [-77.35704395373865, 34.746776242390574], [-77.35689377025508, 34.74660564247419], [-77.3568373724965, 34.74654092544702], [-77.35678390778193, 34.7464184076353], [-77.35669430595975, 34.74625675208182], [-77.35657774904746, 34.74586251073012], [-77.35659080334669, 34.74567246360566], [-77.35663862710052, 34.74551114539046], [-77.35660685226875, 34.74542656884945], [-77.356712102067, 34.74534330303289], [-77.3569023453009, 34.74514231311022], [-77.35705926520639, 34.74501259785835], [-77.35737539437721, 34.744589988648315], [-77.35762241517648, 34.744234998418335], [-77.35777530383008, 34.74356031936638], [-77.35790733314208, 34.74321095887455], [-77.3581187035112, 34.742795760886075], [-77.35817539525407, 34.74253062379492], [-77.35810130831968, 34.742414921108185], [-77.3581944302817, 34.742188853056895], [-77.3585500270588, 34.74199180542221], [-77.35871795302168, 34.74182129953249], [-77.35918012177598, 34.74178555555146], [-77.35946007317597, 34.741763903127804], [-77.35993326265198, 34.741761232470715], [-77.36052503557742, 34.74170044072558], [-77.36161863848744, 34.74168025954586], [-77.36229866497787, 34.741865643514245], [-77.3635426638963, 34.741820505768615], [-77.36734182450493, 34.740297027928996], [-77.36746429470342, 34.74018856222371], [-77.36758430311698, 34.74016307495936], [-77.36778112930601, 34.74017324927599], [-77.37265709372602, 34.74036234631845], [-77.37494014195532, 34.740761598367556], [-77.37509608256195, 34.74079764406035], [-77.37524732375874, 34.74087561906292], [-77.37726775190097, 34.74215416567235], [-77.37957486581078, 34.74240112854336], [-77.38450790146366, 34.74620129279445], [-77.38541529438169, 34.747108673343135], [-77.38597391645936, 34.747515237249154], [-77.38790094117158, 34.749594236303274], [-77.38805590421663, 34.749578936190915], [-77.38795827545776, 34.749645155800145], [-77.39012102375239, 34.75090716803852], [-77.39241319573811, 34.75120349186791], [-77.39255762840635, 34.7512209879612], [-77.39271440511533, 34.75081098458155], [-77.39265650773939, 34.751232505920626], [-77.39514818965438, 34.75126509096553], [-77.39615774126604, 34.75112002725767], [-77.39775572380498, 34.75112001513014], [-77.39862103866527, 34.751138086737406], [-77.399840237236, 34.75115369788632], [-77.40039579167204, 34.75086257536901], [-77.4029075234432, 34.7504005488807], [-77.40125576781807, 34.7478959707569], [-77.39927738647954, 34.74913108881621], [-77.39871192084163, 34.74930927888698], [-77.3980488110065, 34.75010910548359], [-77.39757247865738, 34.749183944767765], [-77.39577533617279, 34.749102192802354], [-77.39499450994052, 34.749218361300834], [-77.39319314942911, 34.749160075836706], [-77.390959147333, 34.74836926757124], [-77.3908625978342, 34.74835017675012], [-77.39071525328796, 34.74820872382311], [-77.38679816646928, 34.746532534483954], [-77.3863185072159, 34.74632727044599], [-77.38458109373019, 34.741753561695184], [-77.3853106403396, 34.74001147275593], [-77.38749798164076, 34.73830080719018], [-77.38765505144045, 34.7372172853421], [-77.38944325513, 34.735553260292065], [-77.39015157187755, 34.73531276364784], [-77.39183426464265, 34.73615341391941], [-77.39198358768654, 34.73723090827123], [-77.39353176637707, 34.739145464680774], [-77.3948501661069, 34.739606776022434], [-77.39689487508885, 34.740352480387614], [-77.39820143672932, 34.740734064334895], [-77.40068503789894, 34.740562952016305], [-77.40089113658587, 34.74030429590516], [-77.40171847136946, 34.740314717701835], [-77.40324633103498, 34.74102844817601], [-77.40500830215899, 34.74164458968219], [-77.40578706940246, 34.74022505751899], [-77.40753279429083, 34.73978599795054], [-77.40896938758439, 34.73898227683108], [-77.41048232889193, 34.74186686286509], [-77.41027490824371, 34.74388926630268], [-77.41212761072929, 34.74578817839537], [-77.41289501960355, 34.74718321054502], [-77.41330675832228, 34.749222646567965], [-77.41161849255339, 34.74754536126317], [-77.40960368383188, 34.74915558554882], [-77.40932417203288, 34.75040764761227], [-77.40917079800269, 34.751491151011685], [-77.40970534096351, 34.75414781422994], [-77.40972796626613, 34.75482968862073], [-77.40970999477956, 34.7550153780436], [-77.40976313606824, 34.75540086335978], [-77.41010923371543, 34.75824154650098], [-77.40988440164841, 34.759549169576026], [-77.40974793779823, 34.761360659683326], [-77.4095830319943, 34.76203167749381], [-77.41005383640575, 34.76408118891606], [-77.4099379832733, 34.76545448855], [-77.41178286413357, 34.764685569364914], [-77.41324198029534, 34.76407736637727], [-77.41444245210666, 34.763576952701705], [-77.41334577365491, 34.76371916687287], [-77.4130201410286, 34.76371492026305], [-77.41209633309586, 34.76360382549778], [-77.41154661416572, 34.7623665979752], [-77.41166106390695, 34.761494381024576], [-77.41166299318964, 34.76128908798151], [-77.41179494363757, 34.76110970689791], [-77.4120256900423, 34.76059406202447], [-77.41213176382209, 34.76033474763748], [-77.41243368270871, 34.75976460395755], [-77.41286288250875, 34.759472110811075], [-77.41323431072774, 34.758724287396106], [-77.4132614731316, 34.75849324311872], [-77.41253934852628, 34.75722857113041], [-77.4124889046298, 34.75686268354682], [-77.41241675985788, 34.75596159070566], [-77.41240655980653, 34.755498507064345], [-77.41255309089507, 34.75397540499916], [-77.41258866712485, 34.753785299845894], [-77.41269902911515, 34.7535911653154], [-77.41310647086215, 34.75172989496498], [-77.41467429292813, 34.7514572780229], [-77.41560432449577, 34.75149651377578], [-77.41654404243036, 34.751520436018296], [-77.41716332613363, 34.751729970636006], [-77.41736426390167, 34.75210006071218], [-77.41782781474353, 34.75267656953542], [-77.41833171628357, 34.753028286087805], [-77.41835991351014, 34.7530536819455], [-77.41841671999796, 34.75308423893294], [-77.41892520161915, 34.753316225214306], [-77.41925440472917, 34.75353630960991], [-77.41965738265685, 34.753615340185085], [-77.42006062041555, 34.75382462791481], [-77.42015446351527, 34.7540537669575], [-77.42032574933712, 34.75425329238632], [-77.42053435410465, 34.75440329146251], [-77.42061513759305, 34.75443213379059], [-77.42083206369313, 34.75448257127292], [-77.42099310133483, 34.754486523453764], [-77.42108883678489, 34.754458100062834], [-77.42117044851955, 34.75442141773812], [-77.4217366628428, 34.754187309728145], [-77.4217505703504, 34.75404334589806], [-77.42201723388585, 34.75416980132004], [-77.42245517878943, 34.75441435917192], [-77.42248291697582, 34.75444810563508], [-77.42276226415476, 34.75475188974068], [-77.42282371497836, 34.75512627268249], [-77.42285492603517, 34.755248540991786], [-77.4229321749896, 34.75557379161428], [-77.42318266013996, 34.75581077795686], [-77.4233019023711, 34.75591967651986], [-77.42341087226433, 34.756007752335975], [-77.42375171332733, 34.75600963477105], [-77.42387042505347, 34.75601058337642], [-77.42401251828129, 34.756016061497014], [-77.42457039826898, 34.75596872522278], [-77.42480294460594, 34.756038151213204], [-77.42554210848374, 34.75627099086717], [-77.42576408883501, 34.75627608495397], [-77.42598823774681, 34.756478608457826], [-77.42604043035752, 34.75650957129808], [-77.42631441018334, 34.75659043103881], [-77.42653228440314, 34.75661944025208], [-77.42683902976076, 34.75652938125984], [-77.42688083619814, 34.75644094456351], [-77.42702001691629, 34.75636852808069], [-77.42715204313694, 34.75649239959785], [-77.42710697411717, 34.75662300447832], [-77.42774754823733, 34.75713683243059], [-77.42774819983106, 34.75785767529885], [-77.4278034708829, 34.757984479350554], [-77.42781528084907, 34.75800135813492], [-77.42783191976086, 34.757994419473185], [-77.42929079148664, 34.75738603310657], [-77.42976322251215, 34.75718901113529], [-77.42976593225946, 34.75699298939189], [-77.42988190154168, 34.756855923017675], [-77.42995473161672, 34.75677942823164], [-77.43011956617758, 34.75659401148633], [-77.43011086768126, 34.75655445469922], [-77.43012731229075, 34.75650897260059], [-77.43019078973927, 34.75649270793501], [-77.43027253695669, 34.75633141466772], [-77.4303164866264, 34.75628869117817], [-77.43028710192131, 34.756160056739176], [-77.43023497277966, 34.75609949127725], [-77.43008045468707, 34.75598477850693], [-77.42977673595108, 34.755707691966066], [-77.42944852202804, 34.755534698713824], [-77.4294973590915, 34.75522199717271], [-77.42964990879665, 34.7549814492491], [-77.42975899256604, 34.754754360764345], [-77.43007618177573, 34.754673443583826], [-77.43034808241595, 34.75462623734146], [-77.43070899697585, 34.75470285028935], [-77.43096257462429, 34.75461583213276], [-77.43091970679798, 34.75406434093367], [-77.4309368758814, 34.75402119377623], [-77.43087167741652, 34.75398589429885], [-77.43034716347346, 34.753737484090784], [-77.42998653195592, 34.753524762810876], [-77.42947894073899, 34.752979347441425], [-77.428781554851, 34.752241751558145], [-77.42834046965062, 34.75180825274515], [-77.42826549966728, 34.751564202534084], [-77.42828208730481, 34.75144304466583], [-77.42794838023215, 34.750947521353446], [-77.42784389088565, 34.750847263581356], [-77.42752649037207, 34.75076521635822], [-77.42735832284917, 34.7507705293019], [-77.42706423707057, 34.75075793644112], [-77.42620596624637, 34.7506375775771], [-77.42616541542941, 34.75046073855473], [-77.42595091454513, 34.749851179438515], [-77.4253914879533, 34.749314814880194], [-77.42569610891026, 34.74852298416607], [-77.42570378863466, 34.74830582597504], [-77.42586353709319, 34.74810209382426], [-77.42580123799158, 34.74728903338544], [-77.42537452160869, 34.747997624457646], [-77.4240768001158, 34.748814934243235], [-77.42401690460812, 34.74877117006099], [-77.42268449813773, 34.74764232131867], [-77.4218049799432, 34.7478019602373], [-77.4215768260408, 34.74777623825004], [-77.42070933102937, 34.74767843093609], [-77.41990352217009, 34.74803398661969], [-77.41926795093639, 34.74770476982579], [-77.41886435787548, 34.747449795747706], [-77.41877369362648, 34.746187930134276], [-77.41993425969301, 34.745404284123616], [-77.42002351444155, 34.745238320389674], [-77.42002389225938, 34.745202546523096], [-77.42003200746707, 34.74517744370583], [-77.42013169239914, 34.74472260907517], [-77.4199875238402, 34.74407167442809], [-77.41959436918249, 34.743574460832356], [-77.41929768599478, 34.74317398380748], [-77.41899133588896, 34.742605292980016], [-77.41883682469785, 34.74210488767688], [-77.41835158314325, 34.74201248381985], [-77.41813861411562, 34.7421583714283], [-77.416512006065, 34.741288843011574], [-77.41616186549835, 34.74071682869545], [-77.41524461895611, 34.73905913276704], [-77.4166384233334, 34.737665234286034], [-77.41699879519808, 34.73730380318541], [-77.4172182126067, 34.73706990192625], [-77.41834140896502, 34.73566907825368], [-77.41886500673195, 34.734951279233925], [-77.41906987136365, 34.73470460166205], [-77.41981030478055, 34.733946263575504], [-77.42069265778302, 34.7324035970361], [-77.42027973949983, 34.73187404879333], [-77.41968810333651, 34.731037082923756], [-77.41910827017722, 34.730543927612985], [-77.41806082253395, 34.730063641350334], [-77.41789989904798, 34.72999738743725], [-77.41676090960078, 34.72979363308755], [-77.41598568225176, 34.72966401092028], [-77.4155346000662, 34.72960021917694], [-77.41499494932732, 34.729540734598366], [-77.41483107796671, 34.72949171937938], [-77.41486846157711, 34.72942301120671], [-77.41480968779234, 34.72923792394603], [-77.4148602241514, 34.728861033066394], [-77.41460777800327, 34.72869212391237], [-77.41453067807784, 34.72863904723283], [-77.41444783445922, 34.728646467774624], [-77.4139509416004, 34.72842699400976], [-77.41362708693762, 34.72842983819726], [-77.41340280684564, 34.72843440127381], [-77.41329024791642, 34.72849443078802], [-77.41269381142902, 34.72866258698676], [-77.41266883099716, 34.72873076726871], [-77.41238170509729, 34.729112547614356], [-77.41218467765171, 34.72943549712513], [-77.41172314241534, 34.72947749397132], [-77.41141299388653, 34.729670245011874], [-77.41064007867611, 34.729621717100805], [-77.41048043598138, 34.729642016096335], [-77.41033574617848, 34.729840107388114], [-77.4096993544517, 34.729846146204224], [-77.40949257937076, 34.7292204242108], [-77.40928800968379, 34.72912496860713], [-77.40926110574013, 34.72912317023325], [-77.40922862483522, 34.7290918883492], [-77.40872512290915, 34.72876010396299], [-77.40852832207054, 34.72854903108839], [-77.40847024530139, 34.72853331450246], [-77.40840419932236, 34.72849227418328], [-77.40836802615826, 34.72854758568267], [-77.40817871240279, 34.728694799622524], [-77.40816570666311, 34.72875638491869], [-77.40813269396803, 34.72879655215784], [-77.40803388794069, 34.72893289255957], [-77.40771991320747, 34.72961801530174], [-77.40753001239743, 34.729652289991606], [-77.40723659264462, 34.73032416781116], [-77.40620633263428, 34.73081446898617], [-77.40558972663777, 34.73062446916571], [-77.40591522536546, 34.73132400832159], [-77.40597156121179, 34.73140038620145], [-77.40566258687592, 34.73235388998374], [-77.40566675053992, 34.73242014203399], [-77.40563647321152, 34.73278106002439], [-77.40568716612665, 34.732921606370105], [-77.40563975824034, 34.73295077384149], [-77.40566863755402, 34.73331203321196], [-77.40563300319329, 34.73346178351238], [-77.40557568502408, 34.73359419437257], [-77.40536118218685, 34.733731057107406], [-77.40514757252603, 34.73385113121482], [-77.40499933866947, 34.73414833110535], [-77.40458189676772, 34.734207499121744], [-77.40457896021982, 34.734209275808325], [-77.40457818177381, 34.734211115179185], [-77.4044066443302, 34.734675754652386], [-77.4044002356013, 34.73470800263264], [-77.40437106761128, 34.73474564982431], [-77.40435134570862, 34.7352500248155], [-77.40348788868691, 34.735769864480815], [-77.4032704480174, 34.73581104806531], [-77.40243832928476, 34.73555134307204], [-77.40227691141905, 34.73552319105101], [-77.4019978707887, 34.73522698306598], [-77.40173725151223, 34.73517273300866], [-77.40147344173161, 34.735117817633345], [-77.4013992689382, 34.73533578484341], [-77.401218980066, 34.735450022112445], [-77.40079956835937, 34.73619551813373], [-77.40078168186025, 34.73623154507842], [-77.40077983525495, 34.736237390241214], [-77.4003444833096, 34.73701323702335], [-77.4001221277455, 34.73740948374233], [-77.3999813880047, 34.73819464334842], [-77.39955994646948, 34.73872355709456], [-77.39876845299278, 34.738778088508695], [-77.39763368081336, 34.73844667601802], [-77.39636574780911, 34.73821805220091], [-77.39533935556474, 34.737809139625625], [-77.39405003070658, 34.73735800165382], [-77.39345230240968, 34.73661882047983], [-77.39334917548007, 34.73587467087447], [-77.39373634976697, 34.735187984740506], [-77.3937279623704, 34.734888890548895], [-77.39379019989966, 34.73469274889333], [-77.3936757699467, 34.73422547319987], [-77.39325674978596, 34.73360573397556], [-77.39293126524304, 34.73326546913501], [-77.39271040741913, 34.733131754374746], [-77.39242882724864, 34.733049827586036], [-77.39151642236395, 34.7329624964478], [-77.39149271370077, 34.732908357247524], [-77.39143106516067, 34.73210544858669], [-77.39151830336166, 34.73187920256661], [-77.39128342420135, 34.731418694007324], [-77.39115676519755, 34.73132714611613], [-77.39090826185316, 34.73131150980053], [-77.39068250076535, 34.731279709422154], [-77.39035422921793, 34.73115381645008], [-77.3900976728055, 34.73108522112512], [-77.38991078108894, 34.730953795635784], [-77.38975873095093, 34.73092830393524], [-77.38949387099838, 34.73095617085619], [-77.38928916500414, 34.730908743630515], [-77.38889549787451, 34.73080840297354], [-77.38870734846058, 34.73070559515721], [-77.38848032280013, 34.73065731284662], [-77.3883043678405, 34.73063566236144], [-77.38820796297642, 34.73063725865278], [-77.38796741664322, 34.73063675141994], [-77.3876375671472, 34.73072385850452], [-77.38739484004837, 34.73080421840389], [-77.38693115408952, 34.730948633109435], [-77.38661083412897, 34.73128038715599], [-77.38654223401959, 34.73146495402101], [-77.38632656841469, 34.7320507745559], [-77.38625724258486, 34.73227499659501], [-77.3861692516586, 34.73251297540429], [-77.38665729469099, 34.73353331936298], [-77.38623744135126, 34.73489881380215], [-77.38492665914747, 34.73660112167115], [-77.38481629080503, 34.73736248070138], [-77.38348673889506, 34.7384022903868], [-77.38106248076166, 34.73841048042732], [-77.37849481190109, 34.73792513693898], [-77.37578098724467, 34.736841064431516], [-77.37376707123559, 34.73653757109024], [-77.37229098694414, 34.73603914647013], [-77.3701306314878, 34.73562455968249], [-77.36919155716775, 34.7346258875023], [-77.36897956963448, 34.73422334821356], [-77.36804375660249, 34.73358288611345], [-77.36792044668046, 34.73339407669009], [-77.36796955632022, 34.73297838558782], [-77.3685774365032, 34.732615214406515], [-77.36874343962711, 34.73230622819178], [-77.36872405258525, 34.73227090072323], [-77.36877840113029, 34.73192282603659], [-77.36878798034166, 34.731827451507336], [-77.36879576032408, 34.73181164902697], [-77.36857249808874, 34.73160061765968], [-77.3685713421545, 34.73159989735848], [-77.36828553625317, 34.73166290971233], [-77.36824721152095, 34.73168972646625], [-77.36807238684065, 34.73179318538192], [-77.36773616601624, 34.731957222935335], [-77.36756912350258, 34.732371090636974], [-77.36756568599327, 34.73246803423286], [-77.36776940833865, 34.732801108998714], [-77.36734709082614, 34.732727660993376], [-77.36729454349674, 34.732582372735266], [-77.36726078371842, 34.73250992092737], [-77.36659468976808, 34.732332383183675], [-77.36657556662996, 34.73211666275664], [-77.36636507980455, 34.731984579323765], [-77.36619849738592, 34.731848740427694], [-77.36594630312425, 34.731824439984415], [-77.36581849172177, 34.73180453535885], [-77.36570894456611, 34.73183118204851], [-77.365326901814, 34.731913945276844], [-77.3651326940705, 34.73210404763932], [-77.36488097043619, 34.73207401720659], [-77.36481073584604, 34.73209489395667], [-77.36476354116542, 34.732121876454016], [-77.36452616097397, 34.732347019396], [-77.36447615735028, 34.732405044595], [-77.3644608655762, 34.7324231463145], [-77.36382214522598, 34.73298226173038], [-77.36371171860345, 34.73303589145566], [-77.36363450671307, 34.73313906251756], [-77.36349185473851, 34.73314283260406], [-77.36280075934405, 34.73350530760244], [-77.36262331278802, 34.73363430061626], [-77.36263058435796, 34.73380549159295], [-77.36272908727003, 34.73410716023558], [-77.36288852348622, 34.734395506097705], [-77.36318375638227, 34.735019487139915], [-77.36334925983893, 34.73654385064552], [-77.36336020206325, 34.73694480904786], [-77.36278107384486, 34.737632058019955], [-77.36151769198631, 34.74002693613566], [-77.36043076335747, 34.74004794998224], [-77.35931987177878, 34.74029484962271], [-77.35902386559039, 34.74037074674486], [-77.35869755424781, 34.740509394093166], [-77.35796982789886, 34.7407134871918], [-77.35797028767666, 34.741333042094055], [-77.35808712768505, 34.741567971063844], [-77.357794834607, 34.74183489338583], [-77.3577042360418, 34.7421079232178], [-77.35751960910918, 34.742468165810855], [-77.35745253993495, 34.742629861711265], [-77.35741614950122, 34.74277587469487], [-77.3570288649491, 34.74363409933286], [-77.35701742785443, 34.743664362832384], [-77.35701086935484, 34.74369330469415], [-77.35695172197678, 34.74377830458647], [-77.35640557019204, 34.74472312238051], [-77.35607430538997, 34.745156784565964], [-77.35598714684086, 34.74526794378257], [-77.3559560315794, 34.74531180575834], [-77.35591153446606, 34.745676201872215], [-77.35592882397647, 34.74576333294732], [-77.35594163599902, 34.746047262172965], [-77.35603444722123, 34.746657702970715], [-77.35604589219778, 34.746722030677084], [-77.35606047061509, 34.74674428931331], [-77.35608132289966, 34.74677514484509], [-77.35642288733841, 34.747157664992095], [-77.356473860802, 34.74721475071351], [-77.3565318855292, 34.74728612864824], [-77.35681588851695, 34.74759110142503], [-77.35686939061068, 34.74769895220002], [-77.35696627921082, 34.74785279894602], [-77.3572211894511, 34.74821678905855], [-77.35803909520668, 34.74828369679703], [-77.35812496595932, 34.748310061498465], [-77.3582952028967, 34.74836279376625], [-77.35846040140183, 34.74844626942194], [-77.35858931935567, 34.74845158352821], [-77.35884313130208, 34.748531264066145], [-77.35884684473636, 34.74854324155806], [-77.3588881019699, 34.74854708044441], [-77.35913472546079, 34.748636063821145], [-77.35936704315007, 34.74870302860472], [-77.35904343338454, 34.74918047630836], [-77.35921021704853, 34.749211944055006], [-77.35902318000704, 34.749304914537014], [-77.35887700069281, 34.74952349096661], [-77.35876027706384, 34.74976110137539], [-77.35879826217071, 34.749794609440556], [-77.35891370370008, 34.75006871688621], [-77.35914756943961, 34.75019531618645], [-77.3592588963649, 34.75027101809272], [-77.3595958809199, 34.75033244152221], [-77.35981009365197, 34.750435598204874], [-77.36033501310517, 34.75055235130684], [-77.36092668314322, 34.750715895990986], [-77.36143411112573, 34.750856150145154], [-77.36172887990257, 34.751057097914966], [-77.3619705255563, 34.75124672493216], [-77.3622196992469, 34.75172305503238], [-77.36170970634544, 34.752144896951215], [-77.36126179382887, 34.7525639148249], [-77.36062233077891, 34.75291715461737], [-77.36039652833452, 34.753073985804065], [-77.36025119787429, 34.753041904905174], [-77.36019090128232, 34.75302859451699], [-77.36005441876866, 34.75299512707505], [-77.35979855777352, 34.752936148800245], [-77.35969230123169, 34.7529037729946], [-77.35943817885061, 34.75281911484261], [-77.35914950636082, 34.75271020296135], [-77.35859575696658, 34.752755537748186], [-77.35845240123567, 34.75321505985251], [-77.35849277420499, 34.75354628950113], [-77.35847280322288, 34.753699645130084], [-77.35877241128624, 34.7540086036697], [-77.35882752640387, 34.754077265092675], [-77.35888237130656, 34.75413080461566], [-77.3590502591883, 34.754300175164246], [-77.35923529162795, 34.75447736278902], [-77.35930645550161, 34.754497346363664], [-77.35931966354806, 34.75455815700732], [-77.3593627963416, 34.75471124345353], [-77.35943576648127, 34.755029602929895], [-77.35938990407593, 34.755221617059476], [-77.35929865109387, 34.75553581191426], [-77.35925143324678, 34.75572235195813], [-77.3592323803288, 34.75578860263842], [-77.35926849356304, 34.755904109981785], [-77.35930559224052, 34.75602224438377], [-77.35933119050159, 34.75605523490289], [-77.35936437322431, 34.75609546739775], [-77.35955986632746, 34.75627357813863], [-77.35977132815465, 34.75644569137873], [-77.35980889432885, 34.756476267477844], [-77.35984441702027, 34.75650517995526], [-77.36028371783976, 34.756862732036424], [-77.36029545558178, 34.75689048902084], [-77.36031215042058, 34.75695729383843], [-77.36068580337069, 34.75737871498759], [-77.36075516490575, 34.75749453917008], [-77.36114663131775, 34.75756734910894], [-77.36131387799031, 34.75763340993035], [-77.36135780599685, 34.757650305571346], [-77.3614392918276, 34.75767884974053], [-77.36214958384872, 34.75782976575833], [-77.36241336754357, 34.757972924681724], [-77.36297561416188, 34.75823963241687], [-77.36297725144831, 34.75824013628239], [-77.36297841125555, 34.758240044403045], [-77.36297942029123, 34.758239409768386], [-77.36366768758458, 34.75807154528148], [-77.36377466280618, 34.758045101716476], [-77.3641997961767, 34.7581073427439], [-77.36429511598057, 34.75811992864981], [-77.36480602474909, 34.75823477639287], [-77.36489646509257, 34.75825812444845], [-77.36500119230283, 34.758288781920555], [-77.36597074773526, 34.75872718648112], [-77.36602741691256, 34.75875401085064], [-77.36603354410838, 34.7587605236985], [-77.36605342621293, 34.758777839172126], [-77.36640609001205, 34.758879552208505], [-77.36720817013754, 34.75913363713127], [-77.36754071031345, 34.759276651923564], [-77.3681896220069, 34.759638752193226], [-77.36769753695273, 34.75996977486453], [-77.36759397519705, 34.7600142517415], [-77.36734087927815, 34.76013509608741], [-77.36708429761961, 34.76023534829405], [-77.36697118713444, 34.76027909659938], [-77.36685731594554, 34.76034203956848], [-77.36628402300364, 34.76065252172513], [-77.36568926755123, 34.7608655445358], [-77.36557905636651, 34.76099683267133], [-77.36533723301913, 34.76115859226353], [-77.36495037286184, 34.76098749089862], [-77.36463570057644, 34.76095118885611], [-77.36416430431876, 34.760779543251424], [-77.36405631179143, 34.760752165285595], [-77.36402876046714, 34.76084359488635], [-77.36409359669017, 34.76102303887579], [-77.36452373387385, 34.761165122789855], [-77.36449463410241, 34.76156587183415], [-77.36417608072944, 34.761696854131635], [-77.36388298535988, 34.76174831085288], [-77.36352822106929, 34.76213460176257], [-77.36331220243206, 34.762270468101846], [-77.36319211559282, 34.7623335622813], [-77.36303400699126, 34.76267786520286], [-77.36304679044682, 34.76273679791358], [-77.36314385251936, 34.76300338989057], [-77.36323577259682, 34.76336216704271], [-77.36329268500812, 34.763462680216534], [-77.36335393559473, 34.76357012903551], [-77.36349410677052, 34.76382507866768], [-77.36365231018898, 34.764067177754896], [-77.36372154447139, 34.764176645860275], [-77.36379255041169, 34.764268846733515], [-77.36422713780318, 34.76477542940138], [-77.3642761148597, 34.7648128013434], [-77.3643380323545, 34.764812497699495], [-77.36431223855082, 34.76485736721918], [-77.36442820156599, 34.765104319858025], [-77.36447867734509, 34.765195228369414], [-77.36446960912032, 34.76520397605271], [-77.36424701309684, 34.76539376091948], [-77.36406181214964, 34.765550765635254], [-77.36385117032982, 34.76565796604193], [-77.36369878650626, 34.765761112623984], [-77.36363728313847, 34.76599674965504], [-77.36350819741267, 34.76625363363937], [-77.36361461758099, 34.766768562250334], [-77.3636276365766, 34.76685465858856], [-77.36364199764367, 34.766887299738016], [-77.3636686258559, 34.76690469594256], [-77.3637596447513, 34.76700578778133], [-77.36432201611444, 34.767496710014825], [-77.36443095271676, 34.76769501928787], [-77.36467104780284, 34.76787119810807], [-77.36496455857457, 34.768121722701984], [-77.36519192268685, 34.768286760963875], [-77.36552655024556, 34.76863765354002], [-77.36561904712028, 34.76874176270768], [-77.36566438264165, 34.76886906490385], [-77.3658173674301, 34.76929864178632], [-77.36582072512701, 34.76955031949101], [-77.36614764730834, 34.76997343565608], [-77.36612063488954, 34.770317981770646], [-77.36615673750305, 34.77053583348971], [-77.36617393842714, 34.77074205225425], [-77.36620560046359, 34.77083254042142], [-77.3663398614646, 34.770961620634594], [-77.3665984416371, 34.77101158307009], [-77.36667603243775, 34.77102715768684], [-77.36697900781331, 34.770969971402614], [-77.36712033533236, 34.77100510331207], [-77.36760224587043, 34.77103310306744], [-77.36797695676489, 34.771330189145026], [-77.36812379781868, 34.771446442322976], [-77.36826222942682, 34.77137523662473], [-77.36869449302324, 34.77147771477303], [-77.36875230978258, 34.77149142149681], [-77.36880598126079, 34.771515817246396], [-77.36915433548641, 34.77173252749407], [-77.36927368387816, 34.771905394347485], [-77.36965036097521, 34.77214803350476], [-77.36980714847957, 34.772277741215035], [-77.37000772650481, 34.77244255630248], [-77.36971827599919, 34.77258383207079], [-77.36912089341492, 34.7726389861221], [-77.36905872503101, 34.7726457314208], [-77.36904031355833, 34.772647729009115], [-77.36900640806235, 34.77265140755706], [-77.3683962754521, 34.77271760335178], [-77.36805380676999, 34.77253176335243], [-77.36774637546414, 34.77274624930229], [-77.36773721122084, 34.77276651863692], [-77.3677386600654, 34.77277282008782], [-77.36811919704145, 34.7730560309541], [-77.36827318406615, 34.773141521451], [-77.36893871586048, 34.77360736638438], [-77.36930665751147, 34.77400148795016], [-77.36959266986963, 34.77453415337159], [-77.36909623059371, 34.77472620284623], [-77.36847509259051, 34.77471811815311], [-77.36841641522271, 34.77471735415122], [-77.36778714923103, 34.774815356480254], [-77.36763355770933, 34.77483927636378], [-77.3673807766704, 34.77487864307349], [-77.36708020112847, 34.77504039696114], [-77.36690016038807, 34.7751372850409], [-77.36629577797429, 34.77553220888446], [-77.36588350939735, 34.77487931042303], [-77.36569974445473, 34.774290426158515], [-77.36562024077026, 34.77409639045996], [-77.36555835600649, 34.7736817361692], [-77.36555749642025, 34.77367625126765], [-77.36555283738609, 34.77367181342644], [-77.3655443929848, 34.773676850127885], [-77.36529036042845, 34.77400196393773], [-77.36516612552484, 34.7741036991536], [-77.36446424282616, 34.774148314212155], [-77.36397498220153, 34.77478129961261], [-77.363998100686, 34.77481340685768], [-77.3639179138782, 34.77488291680149], [-77.36349199038547, 34.77555317660813], [-77.36338278181935, 34.775716524193854], [-77.36321727234186, 34.77598922835955], [-77.3630526117042, 34.77633208287972], [-77.36280963155212, 34.776634400329534], [-77.36242152141185, 34.77679744551417], [-77.3621007213646, 34.77694554808771], [-77.36206375349092, 34.77696107348748], [-77.36202063318105, 34.77699710038865], [-77.36177970711321, 34.77724527751143], [-77.36170232489647, 34.777365355723134], [-77.36157893990608, 34.77756370443937], [-77.36141431403593, 34.77814522706936], [-77.3612389098626, 34.77832163732106], [-77.36112061703344, 34.77841365804868], [-77.36097314357814, 34.77850824693055], [-77.36101191488409, 34.778692227581224], [-77.36101180707175, 34.77880139042322], [-77.36105830824252, 34.77906054177297], [-77.3611188747483, 34.779398085054865], [-77.36104145202806, 34.77957243594882], [-77.36073157762814, 34.779821780122916], [-77.36064314915602, 34.77987912008992], [-77.36049341773578, 34.780045855704834], [-77.3603612524145, 34.78016686211484], [-77.36031483592853, 34.78023517147724], [-77.36015592706443, 34.78057984366572], [-77.36006092280905, 34.78070554422729], [-77.36003395774097, 34.78088427916949], [-77.36021981097963, 34.78132037375305], [-77.36011481644123, 34.78174312465524], [-77.36013395078024, 34.78184955795731], [-77.36006355220843, 34.781926375784536], [-77.35991124367067, 34.78204995307037], [-77.35973203129188, 34.78226813904092], [-77.35951678490103, 34.78252973507537], [-77.35927272484655, 34.78298610468031], [-77.35922706956825, 34.78320989188872], [-77.35923193082284, 34.783561477950315], [-77.35922586295142, 34.783768700515445], [-77.35917714885369, 34.783918379506176], [-77.35917354858003, 34.784309624605996], [-77.35918001123648, 34.78456704697265], [-77.35947372733379, 34.7846874428849], [-77.3597731212825, 34.78473426628885], [-77.3599511595247, 34.78473778353402], [-77.36050354206384, 34.78477502334856], [-77.36185437012382, 34.78485520609404], [-77.36228552069983, 34.784921364872645], [-77.36312708552114, 34.78495187889233], [-77.36507941620965, 34.78413925236685]], [[-77.42207020495833, 34.76039694636676], [-77.42202609417195, 34.76032462491256], [-77.42186076882996, 34.76020654947769], [-77.42126691024532, 34.75983912795982], [-77.4208949872583, 34.759801005984805], [-77.42062002022425, 34.75967552074117], [-77.41988416230059, 34.75968972819936], [-77.41975940954846, 34.759765460361734], [-77.41963302867183, 34.759729149094746], [-77.4190813933629, 34.76015369493335], [-77.4188808372644, 34.760111647656124], [-77.41848767904096, 34.760319850596694], [-77.41831421445858, 34.7603962746625], [-77.41813184958264, 34.76048305776802], [-77.41788547950748, 34.76066847383623], [-77.4177874484989, 34.76103161386858], [-77.41751987502467, 34.761099782629756], [-77.41728364979856, 34.76119689687342], [-77.41709212582364, 34.76139159634044], [-77.41655112932457, 34.76180519236581], [-77.41655710795727, 34.761881474107625], [-77.41641406429746, 34.761984494256815], [-77.41598423352367, 34.76257351654297], [-77.41570634206138, 34.76270230780954], [-77.41524226253634, 34.762857315477994], [-77.41482409729377, 34.76341786321861], [-77.41543061287508, 34.763165030627086], [-77.41616014595809, 34.76286091037264], [-77.41761919545853, 34.76225265735805], [-77.4183487118759, 34.761948524598225], [-77.41907822273801, 34.761644387670245], [-77.42053722779629, 34.76103610131041], [-77.42199621063314, 34.76042779827977]], [[-77.46839465212695, 34.74106905951217], [-77.46567318853303, 34.73904782164934], [-77.46538020674454, 34.73903237555048], [-77.46516930264475, 34.73861258680779], [-77.46275654991736, 34.73627955792292], [-77.4614574496156, 34.73485904636604], [-77.46006548288625, 34.73235870211408], [-77.45966378914787, 34.73042743827372], [-77.4593644571647, 34.72764207351032], [-77.45944103406718, 34.724092702046335], [-77.45919713184442, 34.72347913902539], [-77.45926004888535, 34.72313377724699], [-77.45941162588626, 34.72284709126525], [-77.46005125953901, 34.719550962871594], [-77.46020667083485, 34.7189925687969], [-77.4605037283494, 34.718651484559906], [-77.46100570999369, 34.71867955584359], [-77.46441076869401, 34.719052295157624], [-77.46591942388787, 34.719420882512345], [-77.46815227614044, 34.719739894962615], [-77.4708440666532, 34.720124459691654], [-77.47253909298244, 34.720366594890265], [-77.47330641729664, 34.72047619909775], [-77.47440916466664, 34.72069861276892], [-77.47573796895809, 34.72093452069745], [-77.47671677980297, 34.72120865206854], [-77.48014204655678, 34.72187591008059], [-77.48055420946463, 34.72201359389828], [-77.48091707250212, 34.72208734685235], [-77.48159567247443, 34.72198923264971], [-77.48618560263387, 34.72026955377959], [-77.4871079298756, 34.720238191453824], [-77.48769056450801, 34.719645214586194], [-77.48833070434344, 34.71845491933948], [-77.49058136796161, 34.71395524020342], [-77.49331394509105, 34.713337917865395], [-77.49416741683903, 34.71296320710554], [-77.49684826704504, 34.71223112843899], [-77.49876043306716, 34.712231107150856], [-77.501819905026, 34.71116242709587], [-77.5034781745181, 34.71109943015865], [-77.50418293883, 34.711206684610666], [-77.5047710423454, 34.711584251652496], [-77.50833285785453, 34.713045074431776], [-77.50871846815363, 34.71325701137488], [-77.50891135420837, 34.71342579754229], [-77.50931167972968, 34.71377608171875], [-77.51167404632201, 34.7158432069248], [-77.51277150523785, 34.716981096813484], [-77.5129244481885, 34.71710667068655], [-77.5130880378102, 34.71732866129891], [-77.51391075738962, 34.71848052660187], [-77.51527396143919, 34.72032633368782], [-77.5156632697304, 34.721320276684885], [-77.51678241802259, 34.72085240024337], [-77.5189455908693, 34.71994793867728], [-77.51730039410148, 34.71905588166918], [-77.51702847231978, 34.71870288387345], [-77.51592560289593, 34.71763814210689], [-77.51550940802542, 34.7170554686832], [-77.5154343671174, 34.71695041280403], [-77.51536127880924, 34.71689013535818], [-77.5148259357621, 34.71631167868054], [-77.51366234900351, 34.715293608259245], [-77.51415222243709, 34.71480712093832], [-77.51378432551284, 34.71346868568526], [-77.51303939085051, 34.71474854088986], [-77.51068178516013, 34.71268563976646], [-77.50941424203945, 34.71157646810722], [-77.50925072838108, 34.71141148317492], [-77.50908894167355, 34.71129180681865], [-77.50765233013664, 34.71037977942709], [-77.50705120165566, 34.71014983007525], [-77.50607394882383, 34.70936036889256], [-77.50492777652447, 34.708624517340645], [-77.50373859277235, 34.70844354158815], [-77.5041452882874, 34.70750283431332], [-77.50477091325439, 34.707234710638154], [-77.50540733740027, 34.70696193874768], [-77.5062208192924, 34.70661327922176], [-77.50669567572001, 34.706157219024746], [-77.50726861337304, 34.70533586995103], [-77.51016396700834, 34.70575735253301], [-77.51076274264092, 34.70616838305584], [-77.5125148131892, 34.70792040532373], [-77.51281704008038, 34.70822049818913], [-77.51460738550014, 34.71061421041289], [-77.51494144222183, 34.71126902087712], [-77.51668672948601, 34.71374740806569], [-77.5169016885227, 34.71418802765875], [-77.51747479085647, 34.715204149573154], [-77.51804635470461, 34.71646851434321], [-77.51815187911568, 34.71670729289191], [-77.51826814866496, 34.71689987891108], [-77.5191178758376, 34.718089641152474], [-77.51984787061339, 34.71911171960701], [-77.52010028734605, 34.719465124951896], [-77.52211507590297, 34.71862263396047], [-77.52175238999824, 34.71811484219923], [-77.52065785647677, 34.71630195848938], [-77.52034812970058, 34.71578893468197], [-77.52013965778896, 34.715317208566645], [-77.51908659271085, 34.71286020248846], [-77.51903947622883, 34.712763623877684], [-77.51897846028945, 34.71267697847232], [-77.51840921049875, 34.711561147849835], [-77.51614709108209, 34.706828069758636], [-77.51582757346402, 34.70638207085827], [-77.5142799759112, 34.70482681853558], [-77.51189530400879, 34.70224067085137], [-77.51131591856853, 34.70170331330872], [-77.51008751240865, 34.70063431634408], [-77.50986551404111, 34.70048864082279], [-77.50979754817385, 34.70045237529919], [-77.50887296976934, 34.699872218951754], [-77.50797215526644, 34.69989628285119], [-77.50766702857766, 34.70001256735976], [-77.50719244451987, 34.70077259085805], [-77.50665790782553, 34.70167316665665], [-77.50580637087432, 34.70295041912604], [-77.50540890950572, 34.70347280821423], [-77.50391117793446, 34.70479911929058], [-77.50365518575559, 34.705096381672796], [-77.50350075788575, 34.70516256957951], [-77.500779984371, 34.70632860967153], [-77.5006864638492, 34.706544927363616], [-77.50042036854767, 34.70647779847534], [-77.49984525681985, 34.70649872980725], [-77.49709723455643, 34.70666294261119], [-77.49516179021404, 34.70693481082753], [-77.49353878545145, 34.70683111635973], [-77.49267688273778, 34.70666290728248], [-77.49153563252202, 34.70639955436018], [-77.49025252656105, 34.70618115429024], [-77.48535057010152, 34.70541211189803], [-77.48534806575334, 34.70541094246235], [-77.4853449970079, 34.70540964062011], [-77.48529571750902, 34.705395440310376], [-77.4809558222307, 34.704221396988515], [-77.48042174595446, 34.7047164432889], [-77.47871877014941, 34.70461101730427], [-77.4774866228233, 34.70453473242417], [-77.4774105015742, 34.705157580490535], [-77.47748665626354, 34.70600344525822], [-77.47748669802564, 34.707140467607715], [-77.47748668273474, 34.708697606443806], [-77.4772995188231, 34.71020615276259], [-77.47642362846372, 34.709684284744725], [-77.47522908187734, 34.709640695467264], [-77.47515180317474, 34.709649749091184], [-77.47485702981426, 34.70920738906919], [-77.47419816566165, 34.708513584771524], [-77.47424142721566, 34.70824305258165], [-77.47427645672494, 34.70646680815869], [-77.474255779109, 34.70601227157815], [-77.4754676396275, 34.70239737941557], [-77.47419731744239, 34.70152027552736], [-77.47239125938319, 34.70011073244993], [-77.47156947535755, 34.69986445692836], [-77.47094170825892, 34.69982604819106], [-77.46935923305945, 34.69983058862157], [-77.46902836671815, 34.69978749988142], [-77.46889753374411, 34.699784260583705], [-77.46702343718937, 34.699405544496194], [-77.46660361687704, 34.6993077188029], [-77.46642257645748, 34.699032174330284], [-77.46621552625494, 34.698732496857154], [-77.46478935542044, 34.696715054193525], [-77.46448314561074, 34.69627056117914], [-77.46286434977387, 34.694506012527285], [-77.46191811227494, 34.69377025374689], [-77.45910018867272, 34.69244314301986], [-77.45843404237345, 34.692097019562574], [-77.45688472289999, 34.69230080076707], [-77.45746501118613, 34.691203413405795], [-77.45814349251911, 34.690880306275794], [-77.4587803187745, 34.68793761688903], [-77.45900265835706, 34.68726881445456], [-77.45917227333548, 34.686581676672944], [-77.45982700602679, 34.68392890311369], [-77.46009699779334, 34.68317931811139], [-77.45934774412852, 34.681741289203416], [-77.45907890539705, 34.68104212484693], [-77.45789378790609, 34.68008299755138], [-77.45778631214706, 34.679991310022366], [-77.45772608444652, 34.67995069581952], [-77.4575653196875, 34.679817157545216], [-77.45710864837937, 34.678990405059565], [-77.4569460268579, 34.67869598714275], [-77.45682029883349, 34.67831805341009], [-77.45656517147034, 34.67782554360883], [-77.45675880939957, 34.67727228743016], [-77.45674385266051, 34.67705261210572], [-77.45669131626326, 34.67584241653432], [-77.4566702595097, 34.67582046325424], [-77.45660503741365, 34.675765370606975], [-77.455808363826, 34.67509242940443], [-77.45535647396298, 34.67471790004688], [-77.45404685565234, 34.673632456189054], [-77.45403954310044, 34.673616236149016], [-77.45401310839843, 34.67360448537429], [-77.45398252664089, 34.67363248808811], [-77.45222141355295, 34.67547184407987], [-77.4521709326312, 34.67562590088659], [-77.45217814886001, 34.67587058057319], [-77.45205576516517, 34.6763972504823], [-77.45220273447687, 34.67670406755156], [-77.45218361329452, 34.67677833776064], [-77.45208931166458, 34.67712621342573], [-77.45200672146139, 34.677254924611695], [-77.45200172225906, 34.67778340811141], [-77.45199036995498, 34.67786858444462], [-77.4519751786725, 34.67789726641579], [-77.45187647069625, 34.67806805936978], [-77.45165915358805, 34.6783721819978], [-77.4514699079019, 34.678564821935545], [-77.45121905976427, 34.67876718645031], [-77.45115805823382, 34.678816397081114], [-77.4510578528222, 34.678897231948284], [-77.45008671292172, 34.6796806529816], [-77.44961258859914, 34.67993153291734], [-77.44901051221112, 34.68036243317266], [-77.44888740787229, 34.68037944707801], [-77.44895397660919, 34.680433995006005], [-77.44898755244913, 34.680441856667784], [-77.44909533645186, 34.680452133040916], [-77.44988137461635, 34.680370781555844], [-77.45021619306374, 34.680624558800375], [-77.45079205799475, 34.68055928048242], [-77.45090236595183, 34.68054416104237], [-77.45126034132778, 34.68036372424983], [-77.45143190967836, 34.68015087643237], [-77.45144528771294, 34.67959253200232], [-77.45163524688375, 34.680191655442556], [-77.45164742565385, 34.68020624767097], [-77.45167199390778, 34.68023479803983], [-77.45241036044982, 34.68077632245157], [-77.45264745536416, 34.68107999176067], [-77.45285774406494, 34.68148234850652], [-77.4530858237161, 34.68178011737068], [-77.45310541086593, 34.681853845394144], [-77.45310329170542, 34.681898094465694], [-77.45310046648142, 34.682131620365794], [-77.45311134601505, 34.682269302754044], [-77.45314006548388, 34.682424963864065], [-77.45329058055816, 34.682951624455775], [-77.45329038757168, 34.68303651044857], [-77.45331407974376, 34.68307750114154], [-77.45334117890403, 34.6831134597058], [-77.45349006467342, 34.68338580340122], [-77.45347127437788, 34.68345828637432], [-77.45341673019068, 34.68353149963711], [-77.45329647675905, 34.68359764430392], [-77.4532372299226, 34.68361194892134], [-77.4531965621052, 34.68361380292416], [-77.45309233843692, 34.68361653406636], [-77.45287974823613, 34.68360149160792], [-77.45273974726624, 34.68354656960311], [-77.45259064092761, 34.683493323468134], [-77.45243668469878, 34.683443907828604], [-77.45209968106728, 34.68297512384338], [-77.45160255671625, 34.68318339814144], [-77.45138683792351, 34.68322455997384], [-77.45125353240417, 34.68336059890575], [-77.45112262866546, 34.68339683702423], [-77.45086497576033, 34.68347320009578], [-77.45067144990355, 34.68348277851859], [-77.45037890587622, 34.68341036519063], [-77.45037232373092, 34.6834092750556], [-77.45036481007384, 34.6834034249217], [-77.45010027867241, 34.68324208935048], [-77.44982582990886, 34.68294354893835], [-77.44971276385706, 34.682795682286795], [-77.44966725527752, 34.68252352075142], [-77.44924574607384, 34.68232227508719], [-77.44861443718894, 34.68236146677698], [-77.44841857827929, 34.68241002676251], [-77.44839440366664, 34.68242615833574], [-77.44835654185468, 34.682429945511], [-77.44774818369193, 34.682512584690826], [-77.44756648588267, 34.68256831939861], [-77.44734637111029, 34.68263583744246], [-77.4470359745246, 34.682759763962146], [-77.44677715227154, 34.68277353568348], [-77.44647362146843, 34.68288976394172], [-77.44633119614808, 34.68298122279164], [-77.44602854111288, 34.68304530707377], [-77.44567367778357, 34.6830392086948], [-77.44555007833203, 34.6830109718434], [-77.44537558040415, 34.68296215244889], [-77.44516702818488, 34.68299201738354], [-77.4451104916112, 34.683040168911106], [-77.44501773615278, 34.68309173388066], [-77.44455178083138, 34.683335955388316], [-77.44445158433753, 34.68345854960132], [-77.44421849117386, 34.68363985508152], [-77.44408035809289, 34.68336180234836], [-77.4436560868018, 34.683022814393034], [-77.44323020748855, 34.68282392810719], [-77.44319061341422, 34.68276268332698], [-77.4429779230115, 34.682226687061245], [-77.44299491428553, 34.68202934319432], [-77.44272672221541, 34.681579826613074], [-77.44321261132173, 34.68143359287387], [-77.44358356419562, 34.68140373202236], [-77.44363417040132, 34.68137495209279], [-77.44373373771968, 34.681372870667374], [-77.4436732491851, 34.68109356612207], [-77.44359923770486, 34.6808842053745], [-77.44281865503658, 34.68078969263844], [-77.44241401644642, 34.68101660084911], [-77.44200270751305, 34.68132668916583], [-77.4415313765293, 34.68167633534336], [-77.44139252946039, 34.68180552704942], [-77.44106775885344, 34.682117870765545], [-77.44095682747746, 34.68223259580542], [-77.44062211987321, 34.68301997862857], [-77.44063446370933, 34.6830844506325], [-77.44087598076933, 34.683360402338195], [-77.44086837826788, 34.68358339640243], [-77.44087297106684, 34.68372688026147], [-77.44086318432164, 34.683812151291626], [-77.44083819135159, 34.68390789928685], [-77.44081146750686, 34.68398489563634], [-77.44079512735723, 34.684211354779706], [-77.44046730087148, 34.68397742428822], [-77.44037206337747, 34.68383126417618], [-77.44036106337711, 34.68379857331628], [-77.44035132344621, 34.68371793029071], [-77.44032978701196, 34.68358842764814], [-77.4403221835612, 34.683534304310406], [-77.4404836887725, 34.683077771174425], [-77.44048390013532, 34.68303180759499], [-77.44049048197431, 34.682965727720116], [-77.44061555365381, 34.682129907648], [-77.4405925384564, 34.68195171337586], [-77.4404277197495, 34.68136775746409], [-77.44041460768972, 34.681320989325556], [-77.44039422011548, 34.68131300104502], [-77.43983220667221, 34.681081687007214], [-77.43971163992926, 34.68108466520853], [-77.43934973069118, 34.681101112853526], [-77.43917521255943, 34.681137852707145], [-77.43893767509013, 34.68117527918787], [-77.43877363335017, 34.68111325590194], [-77.43858501429577, 34.68096305677196], [-77.43827211213572, 34.680581310536496], [-77.4381706753857, 34.680472170082545], [-77.43811170199285, 34.68038412563737], [-77.43790997161543, 34.68024307668066], [-77.43757789171865, 34.68001438801912], [-77.43692105866607, 34.680101040014385], [-77.43691166315004, 34.68010249087851], [-77.43690941801093, 34.68010296047366], [-77.43685405239331, 34.680085439857834], [-77.4363515571118, 34.67993876148905], [-77.43632409603576, 34.67991862667269], [-77.43631125191624, 34.67990920912588], [-77.43614019869844, 34.679835808664706], [-77.43578971254286, 34.67968052914076], [-77.43575520905193, 34.67967018639172], [-77.43572415860453, 34.67966087862733], [-77.43546039775346, 34.67958181307962], [-77.43544331215679, 34.679575640900964], [-77.43519778286205, 34.67948123199209], [-77.4351732134962, 34.67946707310064], [-77.43509705083059, 34.67938346078918], [-77.43486704155313, 34.679172902601834], [-77.43472638128377, 34.678796693471334], [-77.43471697186499, 34.67877904125743], [-77.4347204587253, 34.67876780126322], [-77.43473512884383, 34.67876645211912], [-77.43506149219556, 34.67857755113996], [-77.43542398568094, 34.67860010452781], [-77.43552928520205, 34.67859453348599], [-77.43579368415445, 34.67859652705938], [-77.43598367991639, 34.67858960922252], [-77.43607019856753, 34.67858117792226], [-77.4362524817642, 34.678477445787294], [-77.43626790052761, 34.67830648711167], [-77.43629261755939, 34.678211955561885], [-77.43623388376122, 34.67801526079481], [-77.43609943443957, 34.67776564952072], [-77.43595695151005, 34.677535518134825], [-77.43579108724836, 34.677330933005024], [-77.43555015088208, 34.677102159977466], [-77.43528458336797, 34.676866882957675], [-77.43494026091707, 34.67688379881912], [-77.43476580469986, 34.67711895196055], [-77.43466257164052, 34.67717759734137], [-77.43451457843355, 34.67731381688233], [-77.43435136499201, 34.677416599483884], [-77.4342939226155, 34.677512978541536], [-77.4341324761342, 34.677693965735074], [-77.4341253491545, 34.67801308076176], [-77.4338408259691, 34.67807751364375], [-77.43365765769435, 34.67806118425113], [-77.43338263967001, 34.67800697369962], [-77.43305019393398, 34.677946156373366], [-77.4328264342477, 34.677914686818355], [-77.43262726398011, 34.677875898126025], [-77.43243850252419, 34.677845745294384], [-77.4323212589217, 34.677836571217554], [-77.43224303300556, 34.677813089949275], [-77.43213756861434, 34.67777856127052], [-77.43201661457984, 34.67771240120684], [-77.43196445645043, 34.67770617870632], [-77.43198867893732, 34.677666727346505], [-77.43205953660117, 34.67766649055686], [-77.43216933752602, 34.67766874379633], [-77.43223422436989, 34.67769427367074], [-77.43224581661892, 34.67763526837087], [-77.43235035707599, 34.677545096096935], [-77.43247400984474, 34.6774355470643], [-77.43252117082952, 34.677415599414616], [-77.43258355363415, 34.67734432975393], [-77.43286824327285, 34.67701436688616], [-77.43277456717574, 34.67668402208583], [-77.43271944849886, 34.67649824924281], [-77.43271107820144, 34.676400337976254], [-77.43269419554105, 34.67620285487305], [-77.43266180997168, 34.67582404481466], [-77.43264575284535, 34.67563623267636], [-77.43259812037738, 34.67507906235184], [-77.4318591746638, 34.67442518897735], [-77.43167014977456, 34.674257926355295], [-77.43144573913744, 34.67416160180349], [-77.43079228117482, 34.67462436772254], [-77.4302763964375, 34.67498970853965], [-77.4301691523457, 34.67506565646422], [-77.42985779584794, 34.67679997000074], [-77.43025071410202, 34.677216996163935], [-77.43045028947137, 34.67744543318738], [-77.4305785699201, 34.67763044164346], [-77.43062098199766, 34.67782057139921], [-77.43060401060654, 34.67789963556929], [-77.43060416178224, 34.67827397707964], [-77.43068747603255, 34.678487894572775], [-77.43090522576964, 34.678716098199885], [-77.43108476589845, 34.67880626043154], [-77.43121570286279, 34.67891149118128], [-77.43144356133104, 34.67907009780801], [-77.43163669297313, 34.67918215462542], [-77.43171315444741, 34.679245632879336], [-77.43183586871908, 34.679448610219694], [-77.43171081700036, 34.6795976024337], [-77.43162021116169, 34.679681691524614], [-77.43133504294099, 34.67983251281336], [-77.43127148406032, 34.67985937301988], [-77.43119869273718, 34.67991650448177], [-77.43082247703646, 34.68021230901168], [-77.43068734816659, 34.6804000107157], [-77.43043882235709, 34.68063719214386], [-77.43027364291528, 34.68089913436111], [-77.43013671455022, 34.68099543632941], [-77.4299590796754, 34.68102846805671], [-77.42996487821159, 34.681219118032374], [-77.42988469297495, 34.68133123959461], [-77.42979259330662, 34.681454446153005], [-77.42967765226328, 34.68148910610954], [-77.42953346938253, 34.68150485236626], [-77.42945554715227, 34.68151202807013], [-77.42920003235007, 34.681707547478155], [-77.42915872027524, 34.681866675802155], [-77.42901957447017, 34.68191151354683], [-77.42890233708837, 34.68196868258375], [-77.42877842705704, 34.68201320011805], [-77.42864470197475, 34.68209981616043], [-77.4284681047033, 34.68200658015563], [-77.42815706512249, 34.68207540639961], [-77.4280654160346, 34.68209605233693], [-77.42801553323275, 34.682305439777515], [-77.42793774273488, 34.68232853425276], [-77.42787621104401, 34.68225670955053], [-77.42794434233002, 34.6820624262659], [-77.42795182453625, 34.68200362024579], [-77.42756920576916, 34.68138768139959], [-77.42722803481321, 34.6814686201582], [-77.42695846612901, 34.681283880330675], [-77.42673510573107, 34.68141668840858], [-77.42657470536366, 34.68152193646271], [-77.42644218882822, 34.68179659045505], [-77.42620051121418, 34.68195012727468], [-77.42615007926862, 34.6819559218793], [-77.4259998765173, 34.68238215628995], [-77.42545475958414, 34.682208680777435], [-77.42540837010422, 34.68221186740668], [-77.42539217484844, 34.68221248450664], [-77.42528756844207, 34.68218986806284], [-77.42443468141485, 34.68214268821578], [-77.42414402624331, 34.68215233365046], [-77.42348157323266, 34.682080049255134], [-77.4229774267278, 34.68175506050081], [-77.4227642510277, 34.681545982220904], [-77.42082406642032, 34.680339228234644], [-77.41923556776656, 34.67944753716152], [-77.41767816095091, 34.67857325639975], [-77.41644843499661, 34.67774634681576], [-77.41605403435071, 34.677204212649826], [-77.4155152741612, 34.67653461611111], [-77.41496577115694, 34.67587287957613], [-77.41512158324387, 34.67439167899351], [-77.41516150119423, 34.6741743989387], [-77.41528324749278, 34.67395499262619], [-77.41693034685545, 34.67255693377463], [-77.41729771339223, 34.67196663025018], [-77.41883783963432, 34.66949168235001], [-77.41927686345015, 34.66921957404868], [-77.41929935596728, 34.66891308420908], [-77.41930418552107, 34.668742255397746], [-77.41921005139064, 34.668602655381406], [-77.41894101251505, 34.66848586471676], [-77.41751615274195, 34.66701517158492], [-77.41533242379238, 34.66691930944786], [-77.41497352870778, 34.666464100320695], [-77.41438150555913, 34.665713167123016], [-77.4139241304546, 34.66553106130763], [-77.412458043902, 34.66626076368415], [-77.41213917312572, 34.66640734297787], [-77.41209171701965, 34.66644276852992], [-77.4119710776895, 34.666653506477495], [-77.41165924896349, 34.666540138003626], [-77.41076721926049, 34.666385739280756], [-77.41024266707, 34.666410210574185], [-77.41015222305758, 34.66629699385694], [-77.41014651476632, 34.666278639661265], [-77.41012666790598, 34.66622042459169], [-77.41066641279434, 34.66589186897163], [-77.41069526343252, 34.66528571421449], [-77.41026883902899, 34.66489726422155], [-77.40911528918598, 34.662870924751836], [-77.4090888383064, 34.662789285344935], [-77.40893534513746, 34.66267747840994], [-77.40629379097388, 34.66243960946706], [-77.40462316091995, 34.66229692723656], [-77.4030887298728, 34.661543430658455], [-77.40221145108171, 34.66011311636133], [-77.40101428261976, 34.659180169844596], [-77.40097388820703, 34.65754256216181], [-77.40092733729104, 34.65625122477697], [-77.40020298868144, 34.655255013695296], [-77.39878173991997, 34.651818671088165], [-77.39875746553724, 34.65096154457092], [-77.40015002146056, 34.64800978444758], [-77.4003903993836, 34.647318079488024], [-77.40084036352023, 34.64716693437122], [-77.40433853009974, 34.64586580068806], [-77.40809692592093, 34.64561665718239], [-77.40879196065232, 34.64541152771485], [-77.41210288551201, 34.64348812472033], [-77.41357567919658, 34.64213033696533], [-77.41374422846252, 34.64078759372536], [-77.4155935448146, 34.637880851647665], [-77.41841411325159, 34.63579908290283], [-77.42050138452551, 34.63464312479836], [-77.422182826922, 34.63419747090531], [-77.42371532541256, 34.63385124120902], [-77.42513317204087, 34.634589911133915], [-77.4266065498835, 34.63499030713274], [-77.42850514573578, 34.63531169406991], [-77.42964144668257, 34.63625932874636], [-77.43174232057, 34.638384527507974], [-77.43282310700796, 34.63734872546483], [-77.43501576277956, 34.63497362513889], [-77.43508808531256, 34.634792821988114], [-77.43512670398172, 34.63469628502628], [-77.43575373353873, 34.633767588964815], [-77.4375184584903, 34.63106067895349], [-77.43775434308377, 34.630770352549284], [-77.43689999777061, 34.62871000968077], [-77.43695761810494, 34.62826657798094], [-77.4368942532189, 34.62799165950512], [-77.43698945195888, 34.62681514790331], [-77.43702387742827, 34.62679815838765], [-77.43715549167007, 34.626733204462894], [-77.43775826916199, 34.626435724022116], [-77.43794267277896, 34.62645561322071], [-77.43876077413155, 34.626167109748735], [-77.43884240072136, 34.6259006741739], [-77.43943990771022, 34.62560577867036], [-77.4399613006842, 34.62534835901268], [-77.44070358693942, 34.625016414889004], [-77.44140758641362, 34.62502923575788], [-77.44133175187369, 34.62554277424652], [-77.44200294437331, 34.62613004190773], [-77.44223074000524, 34.626763486983315], [-77.44312763136259, 34.62769508447688], [-77.44415771369094, 34.62916815404141], [-77.44484372144183, 34.62997197371867], [-77.44622851359779, 34.62983156862441], [-77.44839168365465, 34.629536735173694], [-77.45034049014451, 34.62948551491159], [-77.45248415262822, 34.62794686365492], [-77.45451493057541, 34.626723553396964], [-77.45514882359002, 34.62603417571315], [-77.45641789235874, 34.62313737245699], [-77.45673973127916, 34.62262633903611], [-77.45661962368702, 34.62250471749533], [-77.45678903954264, 34.62231290622541], [-77.45825264794405, 34.619240664735756], [-77.45898956533742, 34.618378681035246], [-77.45970191007143, 34.617591289372875], [-77.46041794905591, 34.61714594583946], [-77.4608757673237, 34.61656095122546], [-77.46029416482754, 34.61570417042649], [-77.45987393135954, 34.61525342045907], [-77.45974847164015, 34.61438277469848], [-77.45970835449091, 34.61367514493614], [-77.45966604060753, 34.61292920482563], [-77.45960880407307, 34.611919709431675], [-77.45958363104234, 34.61147565294325], [-77.4595650335395, 34.61114753498691], [-77.45950120599187, 34.610022078916955], [-77.45939770663102, 34.608611523409984], [-77.45939147050541, 34.608527588457406], [-77.45922620408037, 34.607146388322], [-77.45927752277574, 34.60609198689249], [-77.46019969985913, 34.60405451543804], [-77.46025078146212, 34.603954984602325], [-77.46031229529919, 34.60388240157761], [-77.46065974567989, 34.60331849323028], [-77.46152039903033, 34.60192166403298], [-77.46167944244522, 34.60178003918341], [-77.46330437365448, 34.6000745302441], [-77.46330794167318, 34.60006953972936], [-77.46331368649568, 34.6000698682717], [-77.46331881725257, 34.60006607455694], [-77.46591911442664, 34.598505523643965], [-77.46574375067077, 34.59709975567869], [-77.46574376329787, 34.596424237153215], [-77.46574377608253, 34.595966767203855], [-77.46574380073234, 34.593589756142016], [-77.46577034820653, 34.593462457434235], [-77.46566880062707, 34.593315959008116], [-77.46552658240375, 34.59341336456066], [-77.46344816804442, 34.59288467819263], [-77.46285669792752, 34.59331521391506], [-77.46250642503335, 34.593284485809065], [-77.46239621592238, 34.59355693545557], [-77.46217836877081, 34.59374894806644], [-77.46211500294841, 34.59377448627945], [-77.46176539065885, 34.593955598787055], [-77.46165279200096, 34.59400603274393], [-77.46145407517344, 34.59411647758066], [-77.46101573561165, 34.59431268576597], [-77.46074215719389, 34.59451949379323], [-77.46073688790423, 34.59452480995335], [-77.46072401577095, 34.59453320743157], [-77.4604070772561, 34.59471910250998], [-77.46031308135207, 34.59487205619095], [-77.46019219945369, 34.594953607943054], [-77.46000787999553, 34.59497098814528], [-77.45991934877586, 34.59485814305337], [-77.45986698676391, 34.59477774423341], [-77.45981815819869, 34.594745814666915], [-77.45974159609368, 34.59470462176527], [-77.45955863784297, 34.594606017544045], [-77.45939588365266, 34.594542892774726], [-77.4590316931215, 34.59433609386198], [-77.45868458746581, 34.594116425845556], [-77.45856769625243, 34.59404065748133], [-77.45854251101632, 34.594019982348755], [-77.4584762878148, 34.59392297182174], [-77.4583474464167, 34.59373423164569], [-77.45827735064252, 34.5934298598819], [-77.4582474312615, 34.593393501052695], [-77.45825650914358, 34.593347263329335], [-77.4581779236428, 34.59283339147555], [-77.45817199320442, 34.59269831197732], [-77.45824297355801, 34.59265624005759], [-77.4581777990528, 34.59263717549482], [-77.45812677963347, 34.59264661893994], [-77.45754458946125, 34.592497240694186], [-77.45703718486301, 34.59250650533711], [-77.4565255892884, 34.59274158781096], [-77.45606123040938, 34.59278142657723], [-77.45540934588973, 34.59346468374207], [-77.4556557836063, 34.59367598992111], [-77.45602693109083, 34.594027019034485], [-77.4561937625013, 34.5941494689649], [-77.45637427265528, 34.594297189467916], [-77.45641938129823, 34.594330730442735], [-77.45650528545082, 34.59459263558406], [-77.45647955407378, 34.59463641761286], [-77.45613395417531, 34.59496670158589], [-77.45600085409372, 34.59503551026535], [-77.4560156248694, 34.59513803759068], [-77.45574962205207, 34.59548274364817], [-77.45570212180351, 34.59555036372084], [-77.4556374231606, 34.59561519777578], [-77.4553693562697, 34.59601365276033], [-77.45522653135393, 34.59600333100302], [-77.45484071729925, 34.59600267951013], [-77.45467381871254, 34.596008452969286], [-77.45441049564936, 34.59596521374422], [-77.45372616538685, 34.59577153560093], [-77.4535338602089, 34.5962152904976], [-77.45357714130031, 34.59666494092196], [-77.45360304397312, 34.59693407764263], [-77.45363610770502, 34.59727758117606], [-77.45362902472417, 34.59730248956132], [-77.45362409825943, 34.597318605875515], [-77.45354659921895, 34.59758334189681], [-77.45350756143837, 34.59769983915032], [-77.4534780949354, 34.597745275017964], [-77.45330741205268, 34.59780933887238], [-77.4532337695056, 34.59781283328649], [-77.45320247521495, 34.597807903120696], [-77.45307598967374, 34.59782294804747], [-77.45280811875676, 34.597832991862106], [-77.45270356729523, 34.59779618493384], [-77.45247353059554, 34.597784984919954], [-77.45214817966968, 34.59768753966767], [-77.45183942069824, 34.59764608495432], [-77.45055817414918, 34.59808605105065], [-77.45016611606304, 34.59812773645495], [-77.44979729967073, 34.59831467897733], [-77.44832711736998, 34.5985440644737], [-77.4485659836439, 34.599820389885984], [-77.448619794448, 34.59983251472372], [-77.44865052335868, 34.59989605879297], [-77.44877671628349, 34.600157015632746], [-77.44883079799237, 34.6002688509172], [-77.44885517777931, 34.600319266089635], [-77.44868697945888, 34.60040526624413], [-77.44850848637195, 34.60046575606514], [-77.44836907091567, 34.60051834260839], [-77.44817928255051, 34.60047087586956], [-77.44800260880123, 34.60050928811789], [-77.44764553853942, 34.60044132931132], [-77.44738963070955, 34.60069359744706], [-77.4469778932069, 34.600847970563436], [-77.44668057162157, 34.600756781565266], [-77.44642848602295, 34.600605453104315], [-77.4461443931717, 34.600538489151354], [-77.44545729630336, 34.60012850147564], [-77.44536991250784, 34.60007122220802], [-77.44535763332007, 34.60002435275483], [-77.44440552398738, 34.59964918644117], [-77.44528860713808, 34.59951216625275], [-77.44525798210235, 34.59931426608351], [-77.44522824533277, 34.59929162251361], [-77.44427343023462, 34.599583347554585], [-77.4442547951204, 34.59957604879871], [-77.4435671499009, 34.599057939525096], [-77.4434074564539, 34.59881363359081], [-77.44303607168567, 34.59847087894045], [-77.44322630032926, 34.597997597663074], [-77.4430751676295, 34.59772123346731], [-77.44310720292525, 34.59735223410881], [-77.44311381180351, 34.59733880377741], [-77.4433217196775, 34.59691242488823], [-77.44337176787663, 34.59680967486525], [-77.44344632415604, 34.59662187631451], [-77.44373601665066, 34.596317752649405], [-77.44419225197947, 34.59592567028232], [-77.44417208019196, 34.59585096832919], [-77.44381087245286, 34.59557757294232], [-77.44348805280671, 34.59538798904071], [-77.44330224723302, 34.59528522832583], [-77.44313593481388, 34.59510379430845], [-77.44255495097089, 34.59494651995249], [-77.44234770711427, 34.59496857874524], [-77.44203479761553, 34.595135677516154], [-77.44182252620537, 34.594829150828964], [-77.44189946063833, 34.59445151762704], [-77.44192068800243, 34.59435519035679], [-77.44195331349768, 34.59432538811219], [-77.44223361054267, 34.59392050300828], [-77.44229183752975, 34.593852476361874], [-77.44234715913134, 34.59385498563139], [-77.44239989339108, 34.59383962551472], [-77.44287450300871, 34.593546965013175], [-77.44313512716559, 34.59349307170808], [-77.44349992017159, 34.5933442095723], [-77.44422290125625, 34.59310661898782], [-77.4447108666463, 34.59243115472802], [-77.44519487750242, 34.5917937682282], [-77.44471041359691, 34.59155769681843], [-77.44423743281155, 34.59074306140343], [-77.44392185373866, 34.5907064797745], [-77.44365909972831, 34.59060060103185], [-77.4431422063088, 34.59039231204552], [-77.44314046139786, 34.59038514348461], [-77.44313357335896, 34.5903833322143], [-77.44312465349557, 34.59038523884453], [-77.44256830073468, 34.590235132018506], [-77.44234535087747, 34.59016646160905], [-77.44205880270457, 34.590240224546534], [-77.441826446068, 34.59029261799514], [-77.44155732240858, 34.59034633297627], [-77.4413895806668, 34.59040198550662], [-77.44130989346968, 34.59039071099301], [-77.44116327160444, 34.59036217830027], [-77.44094608472282, 34.59051945612216], [-77.44093550385581, 34.590041633955025], [-77.44138939900233, 34.589977392760524], [-77.44155710288797, 34.58988839188255], [-77.44167743681204, 34.58988464790145], [-77.44168227921907, 34.58975428579117], [-77.44181664960459, 34.589165694673135], [-77.44177838604713, 34.58889119331254], [-77.4416877776605, 34.588762913779924], [-77.44155637267137, 34.58836260337267], [-77.44113384869097, 34.588135224811055], [-77.44155617547334, 34.58795001271052], [-77.44215132060631, 34.58778024024602], [-77.44298110310788, 34.5871814179358], [-77.44313194072186, 34.58709976745417], [-77.44324250391008, 34.586981030337725], [-77.44428901095878, 34.58637843762487], [-77.44470721079271, 34.585348037314006], [-77.44692114772633, 34.58305204910124], [-77.44556486308343, 34.58077822557444], [-77.44509146233825, 34.57950266566362], [-77.44404217464046, 34.57667498028544], [-77.44306954966967, 34.57517821295778], [-77.44154927019838, 34.57331829484268], [-77.4384865780989, 34.5739861124502], [-77.43839773259558, 34.573997873505235], [-77.43831412793216, 34.57401670246284], [-77.43632822634098, 34.57322721959232], [-77.43524563495036, 34.57337967335086], [-77.43501058291378, 34.57313939008734], [-77.4344575949435, 34.57316760399017], [-77.43431899327098, 34.57313553717771], [-77.433921717501, 34.57304362212809], [-77.43382092720017, 34.57289503902612], [-77.43366943210428, 34.57261426175129], [-77.43348798749776, 34.572910671225685], [-77.43318929136402, 34.57314952200594], [-77.43292669706497, 34.57323597719715], [-77.43288181153311, 34.57352937605413], [-77.432782197936, 34.57395004605546], [-77.4327791303342, 34.574058007547805], [-77.43280383282678, 34.57413871104369], [-77.43288215621446, 34.57447803492231], [-77.43296752850614, 34.57478806902942], [-77.43299802245872, 34.57487554298204], [-77.43288252200338, 34.5754828079843], [-77.43282834231908, 34.57569078863902], [-77.43256580258705, 34.57612878319493], [-77.43223886334022, 34.576683664452005], [-77.43241575659448, 34.57700366317542], [-77.43262761793272, 34.57747664359416], [-77.43275929370398, 34.577591231381845], [-77.43317618108509, 34.57824651545172], [-77.43337524088619, 34.57853715147654], [-77.43315948884921, 34.57909811362343], [-77.43333073953701, 34.579441090333425], [-77.43332192964587, 34.579546540345184], [-77.43327805707592, 34.579651459096084], [-77.4332058403416, 34.57986268928827], [-77.43309720047009, 34.57995630256461], [-77.4329815224017, 34.58007789744198], [-77.43288423354556, 34.580156876258314], [-77.43251683435815, 34.580436230316316], [-77.4324809890226, 34.58045991357234], [-77.43246700224724, 34.58047200339474], [-77.43209640218899, 34.580693621194044], [-77.43188149915562, 34.58074963673404], [-77.43149312307006, 34.58083835036699], [-77.43130842576079, 34.58084460806339], [-77.43114505456666, 34.58091162556563], [-77.43077521630362, 34.58086657431933], [-77.43052039320403, 34.580840059593704], [-77.4303459979632, 34.58077861649936], [-77.43023955182554, 34.58067198570873], [-77.43012632642576, 34.58068735892545], [-77.42996420917366, 34.58065911636925], [-77.4297322781654, 34.58058652145984], [-77.42958542322101, 34.580622229143586], [-77.42933829789051, 34.5806916936991], [-77.42913907959655, 34.58073837808255], [-77.42894433375776, 34.58085044890867], [-77.42883966734709, 34.58088354937752], [-77.428702008362, 34.58085278558195], [-77.42863097162872, 34.58068889117338], [-77.42859730974538, 34.580606789350654], [-77.42860063232551, 34.58055198843351], [-77.42855017662558, 34.58040406025252], [-77.42851227538168, 34.58023527547144], [-77.42847217468973, 34.580200286721556], [-77.42844264144367, 34.58008878240904], [-77.42847999718418, 34.57985000408203], [-77.42850059673933, 34.57977158962472], [-77.42854995814385, 34.57971243062741], [-77.4287384357304, 34.579515795557555], [-77.42880066950711, 34.57903322586874], [-77.42877079661169, 34.57888335683492], [-77.42867810111863, 34.57875834129873], [-77.42861484328166, 34.578551625143646], [-77.42865735653231, 34.578475164344056], [-77.4286293965707, 34.57839315276428], [-77.42860298564239, 34.57837687582216], [-77.42863884048822, 34.57836178666466], [-77.4286654072868, 34.57834912671544], [-77.42874653743587, 34.57837065106326], [-77.42889371321922, 34.57838730120524], [-77.42894354815908, 34.5783976418285], [-77.4290659671273, 34.57841610302026], [-77.4292521578677, 34.57848124239964], [-77.42944389972796, 34.57847604968117], [-77.42973160108312, 34.57853267802769], [-77.42984938562991, 34.57860054814507], [-77.43012565279047, 34.57867352305026], [-77.4301345683657, 34.57867662246286], [-77.43019389288659, 34.57867765343898], [-77.43047076256039, 34.57869032786155], [-77.43051966574433, 34.57869595611386], [-77.43055488763554, 34.57866343796564], [-77.43060477388056, 34.57861825864958], [-77.43094875209123, 34.57818193806988], [-77.43100034728467, 34.57804283802031], [-77.43080603914395, 34.57773998329084], [-77.43060865232398, 34.577672248789966], [-77.4305193178424, 34.57766699872362], [-77.43034875876299, 34.57762230155352], [-77.43012527955865, 34.577553780224676], [-77.4300408877189, 34.57751693107456], [-77.42988443474565, 34.577448616317305], [-77.4297929728323, 34.57739529783174], [-77.42973117083105, 34.57722275708786], [-77.42967978456312, 34.577108944512936], [-77.4296651468943, 34.57705572467171], [-77.42973105552755, 34.576870935828744], [-77.42997393785741, 34.576423809152175], [-77.43040089539579, 34.57610018935075], [-77.42994241731631, 34.57593835750553], [-77.42973074905916, 34.57593463399611], [-77.42949791863, 34.5759797886935], [-77.42894277356939, 34.575965186632025], [-77.4284947572583, 34.576009361697274], [-77.42815481057572, 34.576039191075395], [-77.42783521959413, 34.57612661122086], [-77.42770213189814, 34.576128967268055], [-77.42736683866822, 34.57608907310267], [-77.42707187916716, 34.576263456325634], [-77.42677823023604, 34.57640905481565], [-77.42657896831565, 34.5764942790825], [-77.42648250871676, 34.57656258458936], [-77.4262950821338, 34.57669364286456], [-77.42618504168937, 34.576737149195246], [-77.42615589932768, 34.57674516530111], [-77.42598806096271, 34.576800072532315], [-77.42584487601215, 34.576816693582614], [-77.42579106797724, 34.576820382441774], [-77.42575145673835, 34.57681489230408], [-77.4256468299937, 34.57678732775888], [-77.42549374211062, 34.57670523970957], [-77.42539702150003, 34.57664273011334], [-77.42526647763492, 34.57655836089771], [-77.42508861671536, 34.57644341006663], [-77.42504045701244, 34.576409963086455], [-77.42500295577608, 34.57638804771611], [-77.42488571651246, 34.57626043786322], [-77.42484843904539, 34.57621999666518], [-77.42482290145507, 34.57607557110895], [-77.42482695924654, 34.576056635291934], [-77.42490493434326, 34.575939864703145], [-77.4250028160312, 34.575871277394086], [-77.42518022596816, 34.57577221178452], [-77.42524042318871, 34.575740788342586], [-77.42539676140761, 34.575697620530306], [-77.42551907352137, 34.575663847682684], [-77.42579070213434, 34.57551343483338], [-77.4258170017314, 34.575488971782356], [-77.42580140188585, 34.57507830014411], [-77.42580467203209, 34.575066165866275], [-77.42579863455538, 34.57505835293972], [-77.42579057484491, 34.575057637026575], [-77.4257724857414, 34.57505132529597], [-77.42539653403608, 34.574869423367765], [-77.4252709921303, 34.57485399141058], [-77.42500254858521, 34.574880317438144], [-77.42470992391368, 34.574909013914066], [-77.42460855971551, 34.57487899302237], [-77.42456446917316, 34.57486831772358], [-77.42441444655275, 34.574842485768926], [-77.4244123617472, 34.57484191838826], [-77.42441155570333, 34.57484195025732], [-77.42440927335934, 34.574840774071], [-77.42428740298521, 34.57478232913666], [-77.42424967615791, 34.57469188675068], [-77.42424801148677, 34.57465424340562], [-77.42423877070385, 34.574469479062316], [-77.42424536907583, 34.57444233173264], [-77.42423671238488, 34.574419592938796], [-77.42421443991333, 34.574374034505034], [-77.42406350245972, 34.57378193437469], [-77.42393634676971, 34.57363781359455], [-77.42382019713462, 34.57336658249336], [-77.4237618819908, 34.573301264926876], [-77.42342614379687, 34.57307877819895], [-77.42322122489276, 34.57352019488617], [-77.42303231881947, 34.57371350788692], [-77.42295755033908, 34.57377925134395], [-77.42272335944818, 34.57390466936179], [-77.42263838821313, 34.57393306476339], [-77.42251711972371, 34.5739735896117], [-77.4223876205801, 34.574015922916715], [-77.42224443421287, 34.57406242137788], [-77.42204822859594, 34.57412376814123], [-77.42204745599034, 34.57412400970789], [-77.4220449757895, 34.57412607881082], [-77.42185049567153, 34.57426423012755], [-77.42176236717594, 34.5743765317756], [-77.42177271034049, 34.57445891221614], [-77.42182174649501, 34.57476143216805], [-77.42182584667623, 34.57479194564666], [-77.42183155974327, 34.57481166315838], [-77.42183419142016, 34.575197522350656], [-77.42154192447292, 34.57516572618016], [-77.4214567150251, 34.575170362796044], [-77.42128234865753, 34.57510716671164], [-77.42125127219964, 34.575096340837874], [-77.42106268015051, 34.574971209249945], [-77.421023629808, 34.57494992993425], [-77.42096930919455, 34.5749157005855], [-77.4206686194837, 34.57464500785672], [-77.42061439390723, 34.5746008189348], [-77.42051917671287, 34.57455614942669], [-77.42046273170722, 34.574342497126324], [-77.42044108793398, 34.574142846046904], [-77.42044567539473, 34.57395769676213], [-77.42040870562721, 34.57372293979609], [-77.42048981336646, 34.57351878990366], [-77.42096089250091, 34.57321857530156], [-77.42101938876506, 34.573163901290826], [-77.4210622772401, 34.57315365653902], [-77.4211058584643, 34.57315066300659], [-77.42165503120748, 34.572907971318095], [-77.42185015950527, 34.57280726955625], [-77.42217145347635, 34.57261907986642], [-77.42222517484406, 34.5725909350775], [-77.4222440858302, 34.57258187366238], [-77.42227880969578, 34.57256614198882], [-77.4226380206388, 34.572400897179435], [-77.42286630174522, 34.57234012354734], [-77.42332512177413, 34.57213640919343], [-77.42342591607053, 34.57216416801574], [-77.4235859052234, 34.57216252708037], [-77.42382657075063, 34.57195532907417], [-77.42357883961152, 34.57182623117053], [-77.42342574525006, 34.57147617169769], [-77.42339075183031, 34.57120677501999], [-77.42332771247189, 34.57117824377831], [-77.42289018810312, 34.57096933426942], [-77.42263768129541, 34.57097994572446], [-77.42240347536156, 34.57105936929732], [-77.42224374129087, 34.57111072344104], [-77.42198991931619, 34.57122053909255], [-77.42184979790348, 34.5712324242585], [-77.42176411591387, 34.571311819525725], [-77.42146203597228, 34.57144118429602], [-77.42145587325255, 34.57144309270196], [-77.42144921381629, 34.571442502237566], [-77.42107814676574, 34.57148579417328], [-77.42106190838236, 34.571479976965435], [-77.42102321951154, 34.571469536325765], [-77.42066791683008, 34.57139470955039], [-77.420591451187, 34.57123139566464], [-77.42056853589904, 34.57115233741247], [-77.42048749689002, 34.57096970410011], [-77.42041001365601, 34.570750655595745], [-77.42048119740866, 34.57051681198194], [-77.42027376928814, 34.57056291088909], [-77.42005058234874, 34.5703780006606], [-77.42000009915382, 34.570255578469805], [-77.42001345828473, 34.57010292648939], [-77.42013587599588, 34.57008959587149], [-77.42027366629496, 34.5700712700471], [-77.42044578306228, 34.570081808544984], [-77.42048807207549, 34.570083726496186], [-77.42066764890407, 34.57014575405622], [-77.4207746955999, 34.57015801683569], [-77.42106166102172, 34.57035201404106], [-77.42145133963902, 34.57017103613358], [-77.42146131190812, 34.57016800496533], [-77.42184958334843, 34.570294025364646], [-77.42212451421278, 34.56995014413313], [-77.42224345469847, 34.56988180463631], [-77.42237626219487, 34.56976054434672], [-77.42254859353855, 34.56968816336875], [-77.42263736463848, 34.569648346821616], [-77.42269961791382, 34.569637754058434], [-77.42296773831785, 34.56960043620477], [-77.42303133252145, 34.569663548956385], [-77.42323464425994, 34.56969882668446], [-77.42342537824099, 34.56999360871121], [-77.42383059815404, 34.569819634001234], [-77.42359366344924, 34.570290638949515], [-77.42389379394658, 34.5705917806022], [-77.42421357387335, 34.5710232070114], [-77.42422240179125, 34.57103944508452], [-77.42425547277136, 34.57104417534746], [-77.4250017094581, 34.57175341943171], [-77.42508926470208, 34.57167847371946], [-77.42501971832519, 34.57178290534723], [-77.42504850902311, 34.57182915865361], [-77.42529515060627, 34.572276184341824], [-77.4255910572789, 34.572335306528004], [-77.42578983390429, 34.57239328188704], [-77.42582552019255, 34.5724771917004], [-77.42586311960898, 34.57251019173446], [-77.42641225816485, 34.573101394403054], [-77.4265544337366, 34.5732594550917], [-77.42655213581463, 34.57328770723321], [-77.42657804692887, 34.57329971694455], [-77.4272032427111, 34.574014858640254], [-77.42726804378961, 34.574111325603], [-77.42736626276101, 34.57415682575922], [-77.42771904614052, 34.57440937948775], [-77.42779804137521, 34.57439413067706], [-77.42815429168597, 34.57435195909073], [-77.42847141298782, 34.5741733736874], [-77.42854820662305, 34.5741262221971], [-77.42875803705763, 34.57398854113057], [-77.42894211823015, 34.57389658638155], [-77.42904679993462, 34.573861214411906], [-77.42912005803538, 34.573737799614364], [-77.42956157413408, 34.5730060872465], [-77.42967335265814, 34.57280864038066], [-77.4297045165852, 34.57277697338859], [-77.42972971739805, 34.57276827795004], [-77.42977886676181, 34.5727404094345], [-77.43012361896731, 34.57253756707141], [-77.43028998514916, 34.57247422683409], [-77.43051755139777, 34.57240585694256], [-77.43109567605553, 34.5723769043686], [-77.43192748081862, 34.57181223407579], [-77.4320932336442, 34.57178178000009], [-77.43223980137414, 34.571746406548925], [-77.43248793602419, 34.57155255977911], [-77.43277883449224, 34.57140035157334], [-77.43288104413823, 34.57141070856293], [-77.43344896385555, 34.571176578964014], [-77.43366888584545, 34.57114285282628], [-77.4348423303679, 34.57077856756181], [-77.43524439220522, 34.57019160376859], [-77.43764228356845, 34.56822197929324], [-77.43839521590735, 34.56810583430661], [-77.4391347915928, 34.56799172946848], [-77.43870360505, 34.566924030658605], [-77.43659378800824, 34.56416533470113], [-77.43592874371828, 34.56352111325062], [-77.43524169381124, 34.56320448789519], [-77.43328451734828, 34.56124717273582], [-77.43270490779071, 34.56066750965421], [-77.43208923250472, 34.56027973634542], [-77.43057396251734, 34.56000590165724], [-77.4289375675393, 34.55924145095555], [-77.4283784366089, 34.559162418232425], [-77.42627067487948, 34.558864461573854], [-77.42600197893826, 34.55867060920935], [-77.42578608851655, 34.55862337506069], [-77.42557169889749, 34.558734378913734], [-77.42453480009517, 34.55876578191135], [-77.4242104265504, 34.558562138008256], [-77.42276546991899, 34.55923036466471], [-77.42263492384696, 34.55919118242778], [-77.42258839165302, 34.55934646558304], [-77.42232291069695, 34.55943502329564], [-77.42120140449697, 34.55975016688169], [-77.42105938994514, 34.55979007205289], [-77.4208761944831, 34.55984154746065], [-77.41980290758944, 34.560143125242504], [-77.41948376685333, 34.560047508052456], [-77.41934259183077, 34.56001782876697], [-77.41855500861348, 34.559979459915404], [-77.41790806158963, 34.55989460867303], [-77.4177836569469, 34.559956801101805], [-77.4175106166535, 34.56013034669313], [-77.416902133665, 34.56083218878834], [-77.41633255587354, 34.56099939733001], [-77.41547282655712, 34.56135140799238], [-77.41380848059913, 34.561341220724714], [-77.41318118757745, 34.56126565825346], [-77.41273373572677, 34.56130262331482], [-77.41012081387525, 34.5612958257747], [-77.41002977478354, 34.56129007117336], [-77.40997938669713, 34.56127243342748], [-77.40984760095007, 34.56123715563379], [-77.40774744569215, 34.5606036400474], [-77.40687831676408, 34.56039387375459], [-77.4057731664783, 34.560127130780096], [-77.40543017595091, 34.560039156268274], [-77.4050403481983, 34.559950249099955], [-77.40372692386038, 34.55984701020471], [-77.40058623061397, 34.55917755036569], [-77.40058083986129, 34.559172648692375], [-77.4005755704007, 34.55916942505692], [-77.40055950762886, 34.559164093948155], [-77.40054598532818, 34.55918335856299], [-77.39742415527157, 34.56000350489612], [-77.39596594993787, 34.561669365161265], [-77.39584821762222, 34.56270023600757], [-77.3955355930906, 34.562966046721826], [-77.39506028838915, 34.56326593523636], [-77.39469622052337, 34.56296732268831], [-77.39427243567783, 34.56301968881331], [-77.3942144705745, 34.56264441780588], [-77.3940743670798, 34.56245109188028], [-77.39404743716577, 34.562061980373564], [-77.39407374625631, 34.56181557654271], [-77.39348476095255, 34.56129746351572], [-77.39341770575851, 34.56113336950757], [-77.39292867052079, 34.560532178820985], [-77.393096591314, 34.56025825935014], [-77.39269707116935, 34.559960082344126], [-77.3923836237215, 34.55900079210679], [-77.39112151438782, 34.559003217695015], [-77.38979597860794, 34.55930574618317], [-77.38954575436571, 34.559475542628974], [-77.3889797995996, 34.55976372701904], [-77.3886910601516, 34.558274027306425], [-77.38916284587296, 34.557429122165885], [-77.38797069031222, 34.55612103526943], [-77.38719566230725, 34.555151849114715], [-77.38659661166245, 34.55440268525768], [-77.38482032087553, 34.552199760794025], [-77.38439368344822, 34.551783780241266], [-77.38424120854377, 34.551345808058514], [-77.38396879864302, 34.55084811995768], [-77.38314893286886, 34.54954466220669], [-77.38293723242805, 34.54882530596959], [-77.38317695934523, 34.54847644728058], [-77.38331440455487, 34.54841589021473], [-77.38380121812621, 34.54817115238715], [-77.38490215999698, 34.5476477189502], [-77.38518547471469, 34.54746647786076], [-77.38592338128404, 34.547185931343535], [-77.386048023407, 34.54689258429593], [-77.38648734515196, 34.54699210697749], [-77.3865619299736, 34.54704656237293], [-77.38660978204888, 34.54708694048851], [-77.38694584204458, 34.54723873670284], [-77.38717155620448, 34.547438894972714], [-77.38718327551405, 34.54749389266546], [-77.38719562003575, 34.54753247687349], [-77.38748416788093, 34.547940157847066], [-77.38802359133982, 34.54850604687738], [-77.3882160413725, 34.548691308148285], [-77.38851254453654, 34.54877115840888], [-77.38865374819596, 34.54915286005146], [-77.38903552058524, 34.550002305833104], [-77.38931117288455, 34.55061462220437], [-77.38896659098535, 34.552988017032426], [-77.3901464144592, 34.55389070054814], [-77.39112216884202, 34.55463724858825], [-77.39268482090284, 34.55523662835657], [-77.39427322607997, 34.55584666787599], [-77.39700610309916, 34.55584667046462], [-77.39735421385063, 34.54953045375396], [-77.39736852056416, 34.549452145873204], [-77.39735773822834, 34.5494113265242], [-77.39742893885906, 34.549266394602995], [-77.39865789532855, 34.54607037863585], [-77.39899033738125, 34.545300684353414], [-77.40089449663982, 34.54318476625565], [-77.40089400498462, 34.542953195987735], [-77.40111927592545, 34.54107603646634], [-77.40111725916054, 34.539320184188924], [-77.40128325980513, 34.538794911419096], [-77.40126055533219, 34.537138255585795], [-77.40123680759616, 34.53540542867834], [-77.40401781337391, 34.53552411609499], [-77.40470966424809, 34.53468158913438], [-77.40559197917614, 34.533549822438026], [-77.40564831669775, 34.53258734425957], [-77.40579717970633, 34.53166320747919], [-77.40580153406722, 34.5315858768694], [-77.40584958797007, 34.53147220612493], [-77.40618208148308, 34.53085713026149], [-77.40647867244141, 34.53079338784628], [-77.40720025834662, 34.530404532741976], [-77.40725036611653, 34.53038326924667], [-77.40727334192547, 34.53036139848603], [-77.40774051901035, 34.529836830398956], [-77.40784522663054, 34.52967926269265], [-77.40870699891886, 34.52920756601403], [-77.4087363744646, 34.529119289745864], [-77.40887234172554, 34.529063133223396], [-77.40902197187307, 34.52906865914281], [-77.4101588899273, 34.52881761915775], [-77.41045017160351, 34.52871256156532], [-77.41078076713714, 34.528418349930675], [-77.41091061250316, 34.52818986861378], [-77.41119812620529, 34.52786838241418], [-77.41125503406221, 34.52782112084878], [-77.41185388527138, 34.527655231034416], [-77.41204563110668, 34.52756957457129], [-77.41332542343297, 34.52737737075528], [-77.41362296357785, 34.52723935968726], [-77.41408404345583, 34.5267529745082], [-77.41437419858157, 34.526430177261695], [-77.41442672710225, 34.52639513996477], [-77.41492557600512, 34.526350510620226], [-77.41517217868753, 34.52634029887391], [-77.41521198244058, 34.526382791534225], [-77.41556890018467, 34.526481573769956], [-77.41676981223058, 34.526928946595305], [-77.41694224406723, 34.52693088046015], [-77.418345999712, 34.52664871874401], [-77.41900376591134, 34.52674055526825], [-77.41893951984422, 34.527126704578734], [-77.41833816069607, 34.527001959319776], [-77.41691591863939, 34.52713629322915], [-77.41675851132872, 34.527437758505414], [-77.41623144642014, 34.528789863859906], [-77.41560369569874, 34.52919061202407], [-77.4167064091747, 34.52978363049658], [-77.41712391073102, 34.53065714908345], [-77.41724575967653, 34.53091207377954], [-77.41746804454424, 34.531377123668136], [-77.41780180867265, 34.532075424250095], [-77.41827335380447, 34.532722309957705], [-77.41823206870586, 34.5336813469242], [-77.41977839675579, 34.53446351458288], [-77.41913353202187, 34.5368621660981], [-77.41914427806054, 34.53847262886677], [-77.41886654696461, 34.54000164561834], [-77.41881551272454, 34.54096724936334], [-77.41886331029845, 34.54243070245792], [-77.42092924373233, 34.54322964540707], [-77.42208608593273, 34.54392373855716], [-77.42266582302247, 34.54427157449622], [-77.42392275517982, 34.54482542667243], [-77.42682708009761, 34.54519716271597], [-77.42829600900532, 34.54567204276475], [-77.42893349579661, 34.54567205272487], [-77.42976845544506, 34.54567204355267], [-77.4336935469507, 34.54586623221272], [-77.43523524496375, 34.546100763413776], [-77.43996039487043, 34.5449966807096], [-77.44153662510779, 34.54560775124497], [-77.4435400617648, 34.54493994940801], [-77.44386451940179, 34.54273288387662], [-77.44418198515912, 34.54106366120531], [-77.44434405271186, 34.54070472734461], [-77.44427741808342, 34.54042975208705], [-77.44398628082246, 34.5387976718971], [-77.44324688296402, 34.5359574056883], [-77.44324878719827, 34.534986818526114], [-77.44300301169653, 34.53422780177208], [-77.4417781147443, 34.53199508094334], [-77.44126351770342, 34.53135654231898], [-77.43913661903318, 34.529429513025775], [-77.43578854860797, 34.52823111955177], [-77.43558396731609, 34.52808240481928], [-77.43348630336317, 34.525983968148616], [-77.42999908219717, 34.525549679110085], [-77.4293633851451, 34.525393602384014], [-77.4281096768133, 34.526617698157814], [-77.42776419592958, 34.526718888138404], [-77.42698923270575, 34.52706630739684], [-77.42695751432026, 34.52706858067601], [-77.42695420463272, 34.5270603380268], [-77.42648097052276, 34.52694675165185], [-77.42648164231997, 34.52681965228832], [-77.42680608134748, 34.52659206561782], [-77.42694284211116, 34.52611363552027], [-77.42695707166908, 34.526057617403126], [-77.42740095982103, 34.52576639008068], [-77.42778858527957, 34.52561425181292], [-77.42836796949467, 34.52538684280039], [-77.42908486796527, 34.52510545926582], [-77.42935269709, 34.523320877736374], [-77.42933954091379, 34.5232875868879], [-77.42929796092469, 34.52322290956978], [-77.4294107428955, 34.523246896246405], [-77.42960814924628, 34.52324874007605], [-77.43027760465876, 34.52455192004604], [-77.43327224310322, 34.523167959696124], [-77.43575084133323, 34.52049222021367], [-77.43587750530494, 34.5203831428752], [-77.43602934708787, 34.520191538832464], [-77.43846306150911, 34.51774597975534], [-77.43896317284052, 34.51718100616815], [-77.43974224909118, 34.51638151181582], [-77.44167615594634, 34.51591001067004], [-77.44213167068463, 34.515858638641596], [-77.4426444601605, 34.51580557593437], [-77.44687956573301, 34.51582895385879], [-77.44840042976796, 34.516324178075976], [-77.45018739883443, 34.515498074402046], [-77.45372664140828, 34.514916738966306], [-77.45389208409259, 34.51489361626814], [-77.45398996911547, 34.51487903190939], [-77.45646192137369, 34.514439814491325], [-77.45854162061956, 34.51480339203119], [-77.45927023825917, 34.51485796275605], [-77.45950439256113, 34.51513010448481], [-77.45970379791234, 34.5152203220076], [-77.46037677093517, 34.51569462981685], [-77.46160053039925, 34.516667622292154], [-77.46176369518807, 34.51708149970853], [-77.46200304324022, 34.5180390510872], [-77.46195039258097, 34.52011563002339], [-77.46238970224262, 34.5214242495392], [-77.46099834256371, 34.52458147739372], [-77.46176242179065, 34.52773238232436], [-77.46300606519645, 34.52966621347114], [-77.4630000486637, 34.53212678827651], [-77.46477357212606, 34.53317944515308], [-77.46536247321907, 34.533743356370614], [-77.46685447982986, 34.53403243507948], [-77.46761192577269, 34.53341738022873], [-77.46817286102308, 34.532174630885095], [-77.46872261333876, 34.531297526015834], [-77.47326620889936, 34.527923351717966], [-77.47471425592181, 34.52740768599018], [-77.47635005491998, 34.52687222726418], [-77.47779356942658, 34.52652653135136], [-77.47843053998895, 34.52580258736996], [-77.4795492483645, 34.52500283302042], [-77.4815272571804, 34.524432105373634], [-77.4788828917056, 34.51992765753232], [-77.4810867721252, 34.51900583965803], [-77.48460598430349, 34.517954080689194], [-77.48670313911046, 34.516656691433724], [-77.48593365953197, 34.51384709796], [-77.48443309342818, 34.508367267020574], [-77.48293274545952, 34.50288740467971], [-77.48218265325066, 34.50014746173739], [-77.48184029599537, 34.49889680190411], [-77.48121202426981, 34.499676201687116], [-77.48088506660231, 34.50008177650545], [-77.48097087869925, 34.50078087766715], [-77.48118014374333, 34.50203652703822], [-77.48127222667208, 34.50280336281811], [-77.48066503009824, 34.504072725696645], [-77.48140810100158, 34.50689874346678], [-77.47888720254505, 34.50778942261112], [-77.47853182985276, 34.50787826196182], [-77.47789837820272, 34.508036618003054], [-77.47649731186425, 34.508899817786975], [-77.47596391804547, 34.50900740553462], [-77.4762278997491, 34.50930304671311], [-77.47542222742065, 34.50994486218623], [-77.4750035272344, 34.510592036761714], [-77.47432828632878, 34.51081737936528], [-77.47359315076885, 34.512608110664196], [-77.4730235522099, 34.51319374586744], [-77.47024637181987, 34.51558945665409], [-77.47008106833272, 34.5156548271861], [-77.46943399977414, 34.51571388752299], [-77.4652379581799, 34.51697698864197], [-77.46423811793923, 34.51578880430792], [-77.46372075344654, 34.515424168563555], [-77.46115959606244, 34.51426541693896], [-77.46032198671722, 34.51329192017503], [-77.46054418200632, 34.51256092984163], [-77.461072022462, 34.51159640842967], [-77.46106212512443, 34.51127528867242], [-77.46106091790053, 34.511236138599365], [-77.46108637790095, 34.51117201113335], [-77.46091351055748, 34.511016907546754], [-77.46059671330548, 34.51104924992261], [-77.45825801019203, 34.511157066237274], [-77.45468963994516, 34.51138198883861], [-77.45295528371511, 34.51146765985247], [-77.45189474620123, 34.51157491060497], [-77.44765635908905, 34.51190590731264], [-77.44366617660181, 34.512330057607514], [-77.44220818489077, 34.51236684218639], [-77.44138705966824, 34.51226448857979], [-77.43598976337337, 34.51257221166351], [-77.435923520275, 34.51263858061311], [-77.43279319323138, 34.51499097257141], [-77.43116907946659, 34.51714666406293], [-77.4304957098096, 34.517846651809755], [-77.4295152723402, 34.51850878054128], [-77.42905902893605, 34.51913459703367], [-77.42792913539233, 34.51924871402397], [-77.42768335403426, 34.519609565217856], [-77.42738221840534, 34.52030584160954], [-77.42689888791105, 34.52070237672889], [-77.4265552454376, 34.520897023457586], [-77.42630695976803, 34.521618106383876], [-77.42626223838269, 34.52174769839113], [-77.42626280220827, 34.521773730143536], [-77.42626375457586, 34.52179806541749], [-77.42619419731585, 34.522707700924094], [-77.426188548194, 34.52276384336965], [-77.42618166197614, 34.522826349119896], [-77.42609086480203, 34.523650553401666], [-77.42608284836005, 34.523758502798245], [-77.42607362703424, 34.523874295504505], [-77.42603750703864, 34.524254747517716], [-77.42599900581315, 34.52459898232987], [-77.42598556091089, 34.52475194650052], [-77.42596310390815, 34.524924126420004], [-77.42588332542269, 34.525535835835], [-77.42584856433035, 34.52575112922433], [-77.42581478216292, 34.526002605674776], [-77.42575261686406, 34.526465387400634], [-77.42573806135123, 34.52674648204555], [-77.425777567349, 34.526996869226195], [-77.42577592294421, 34.527230697848864], [-77.4258058810797, 34.52748433985262], [-77.42581500029696, 34.52771473515397], [-77.4257554241366, 34.52797970913484], [-77.42595446164114, 34.52818426167836], [-77.42598690183176, 34.52828729247027], [-77.42615725460323, 34.52839267369743], [-77.42642256389755, 34.52844011348223], [-77.42761611896874, 34.528363983825216], [-77.4277285270701, 34.528334412528736], [-77.4278940238689, 34.52829087314201], [-77.42928936723668, 34.528748888034556], [-77.42972005458417, 34.528838926519725], [-77.43003056749966, 34.5290639254745], [-77.43063209502517, 34.52982940817293], [-77.43151973321264, 34.53080734013754], [-77.4305739522323, 34.532056044617136], [-77.43236412640383, 34.53171040405111], [-77.43336035091092, 34.53249990027308], [-77.43300566148393, 34.53407727341755], [-77.43486381827397, 34.53585739483114], [-77.43430525396965, 34.53628075965633], [-77.43484868196276, 34.536544767123615], [-77.43488896615345, 34.539841638632645], [-77.43488295186756, 34.54011476780186], [-77.4350445925556, 34.54026082719875], [-77.43451227715013, 34.541644676375526], [-77.43314408594902, 34.541701333408554], [-77.43215203058675, 34.54134212438316], [-77.43034036321686, 34.54160409651256], [-77.42901075307803, 34.54137960776549], [-77.42838309098961, 34.54144529134487], [-77.42586078562654, 34.541809955141765], [-77.4254785216151, 34.54171438048709], [-77.4246087572291, 34.54160037298779], [-77.42489779856588, 34.540946052566376], [-77.42491406100928, 34.54021002797934], [-77.42527638385633, 34.53954510897459], [-77.42530700774677, 34.53915873278374], [-77.42787800802748, 34.53721021365484], [-77.42537691170618, 34.53599502389177], [-77.42536889527751, 34.53521653563747], [-77.42540349913207, 34.53365047912173], [-77.42446274713751, 34.53282362837378], [-77.4229083454824, 34.53331403021808], [-77.42094465852713, 34.53233625352441], [-77.42025664958395, 34.532147134795515], [-77.41979904875163, 34.53192160805086], [-77.4193977895427, 34.53158045389319], [-77.41955623831903, 34.53074590669087], [-77.41948125010508, 34.53058902124512], [-77.4193444579076, 34.53030283321764], [-77.41904337068019, 34.52967293659473], [-77.41887832567039, 34.529327642741876], [-77.4187261273976, 34.52900921702833], [-77.41937643169449, 34.52895016146344], [-77.41986874671731, 34.52877812522219], [-77.42017843235685, 34.52882537484386], [-77.42048868047655, 34.52887270936361], [-77.42065110149852, 34.52889748983881], [-77.4207713683824, 34.52885902171023], [-77.4211076596868, 34.52867697536037], [-77.42112159907488, 34.52859359481467], [-77.42117940758365, 34.52838485097951], [-77.42120994201858, 34.52823013423094], [-77.42123558874331, 34.528024195817196], [-77.4211599764739, 34.527897973567974], [-77.42126971618141, 34.527515320947586], [-77.42131178990986, 34.52738634515415], [-77.42137524107399, 34.52731737076863], [-77.42147465223123, 34.527157400067104], [-77.4216616254185, 34.52684609328616], [-77.42177800836235, 34.52652001544244], [-77.42204305438781, 34.526301271234644], [-77.42233623110995, 34.52579821396126], [-77.42234897701024, 34.52576736625238], [-77.42240081285543, 34.52569204606964], [-77.42261821988964, 34.52523875800518], [-77.42284204281678, 34.52505094223862], [-77.42309921551399, 34.52469098782128], [-77.42310560235343, 34.52467861917388], [-77.42310652077137, 34.52436096796173], [-77.42310731379541, 34.524190543764], [-77.42310717788337, 34.52418870471644], [-77.42310547252562, 34.52418587946415], [-77.42295980541405, 34.52381932867604], [-77.42287453896792, 34.523732647589455], [-77.4226876096618, 34.52354261828684], [-77.42225169919324, 34.52333299442557], [-77.42206523131816, 34.52304831061033], [-77.42161038831996, 34.52246616830825], [-77.42159268395577, 34.52244888654148], [-77.42158839423827, 34.52244369724809], [-77.42157927364902, 34.52243505204481], [-77.42093116907212, 34.521975804569294], [-77.42080815448043, 34.52181148282118], [-77.42053310910703, 34.52194258105114], [-77.42001357321996, 34.52224652000515], [-77.4195772008815, 34.52247107838402], [-77.41871198407974, 34.52286525232235], [-77.41842718722499, 34.52299032390691], [-77.4174043241316, 34.523401184070835], [-77.41683609259684, 34.52394479743253], [-77.41577098171773, 34.52395457326369], [-77.41526322573782, 34.52407761109559], [-77.41380559627449, 34.5236381926509], [-77.41370223249336, 34.52367645039416], [-77.41328100111946, 34.52390957233289], [-77.41211941646253, 34.52425592187194], [-77.41196902711042, 34.52473173234982], [-77.41184210626031, 34.52483727387261], [-77.41052181527888, 34.52549777060882], [-77.40976952398947, 34.52560447608819], [-77.40975609919983, 34.525138606769055], [-77.41055390321186, 34.524057950576676], [-77.41056603247016, 34.52404970856432], [-77.41068176775538, 34.52402553736854], [-77.41213225459107, 34.523679379032465], [-77.41359956433362, 34.52353804073158], [-77.41370711290352, 34.52345709346119], [-77.4140013318351, 34.522740194130385], [-77.41450794373324, 34.52274317310689], [-77.41477183919702, 34.52245527003333], [-77.41505676101252, 34.52226009377114], [-77.41522216523028, 34.52195556344504], [-77.4151831438992, 34.52190615743172], [-77.41531490190235, 34.521753004673414], [-77.41543508395277, 34.52145085596019], [-77.41561647080864, 34.521353859173466], [-77.41612790941518, 34.5207944986957], [-77.41616894094324, 34.520755068642764], [-77.4158436078803, 34.52034167206423], [-77.41577358296729, 34.52008871576282], [-77.41534261641667, 34.51943469323258], [-77.4145057355017, 34.51911762306092], [-77.41381117915763, 34.51877979445168], [-77.41325702069034, 34.51939892470768], [-77.4122249435172, 34.519516936728095], [-77.41164643794399, 34.519968741037246], [-77.41142294068956, 34.52049362259483], [-77.41061408414359, 34.52135762199136], [-77.40915041809745, 34.52124399226856], [-77.40904607987476, 34.521273862806886], [-77.40895544835783, 34.52128038136765], [-77.40745789497562, 34.52209415253208], [-77.40701602394752, 34.52232384856425], [-77.405876250621, 34.52262025246772], [-77.40534524799358, 34.52219542407532], [-77.40478888507702, 34.5222342268449], [-77.40444094189453, 34.5228805924468], [-77.40488096616028, 34.52290464319276], [-77.40440721389544, 34.52304186029663], [-77.40429369921773, 34.52318596152907], [-77.40265529292179, 34.524176462037715], [-77.40231105310767, 34.52523441880376], [-77.40309610463058, 34.52583123788503], [-77.40422907627257, 34.52607591163418], [-77.40489857717411, 34.526397381949806], [-77.40522284713182, 34.526772680193], [-77.40558183701546, 34.52684560591299], [-77.40578122822048, 34.52687324670312], [-77.40610091086518, 34.52741822132974], [-77.40612617131225, 34.527621586243896], [-77.40654094978116, 34.52800470629302], [-77.40666330048151, 34.52795802243689], [-77.40665853458619, 34.52810918594734], [-77.40653473612673, 34.52854193510682], [-77.40601528879989, 34.528789663113415], [-77.4057362549378, 34.52888620585962], [-77.40514614150733, 34.52923213804838], [-77.40507151196566, 34.52932403865773], [-77.40442050672279, 34.529826593208625], [-77.40413589530036, 34.53024310065784], [-77.4037112687233, 34.53064914427593], [-77.40291403028206, 34.53102345977554], [-77.40254378122289, 34.53122920105592], [-77.40173996604895, 34.53167717807785], [-77.40095727891728, 34.531963026158216], [-77.40085339060433, 34.53223936624102], [-77.40031087248997, 34.532378624028034], [-77.40016017869668, 34.53250123081082], [-77.39987504611737, 34.53275693272051], [-77.39935881313376, 34.53322924970812], [-77.3988043373565, 34.53294590112107], [-77.39784491452623, 34.53273457680281], [-77.39780735633036, 34.532735277281375], [-77.39779994114708, 34.532728448715865], [-77.39778164045404, 34.53273234931658], [-77.39764013549792, 34.53276413346848], [-77.3977316873036, 34.532792594646935], [-77.3971176442133, 34.53340274717388], [-77.39715417881445, 34.5338136144442], [-77.39698443968305, 34.53408522816076], [-77.39677182030766, 34.534227848183875], [-77.396191587077, 34.53443215954926], [-77.39617605458253, 34.534434801425384], [-77.3961378141593, 34.53444997133042], [-77.3961747443888, 34.53445482940218], [-77.39600310572484, 34.53484733569014], [-77.39608476710175, 34.534947297074424], [-77.39610053326342, 34.53499394674535], [-77.39617053272713, 34.53536985308904], [-77.39618293399383, 34.53542280027732], [-77.39618176853676, 34.53543083049474], [-77.39623948930353, 34.53565947337981], [-77.39616115556956, 34.53578748402638], [-77.39609779467017, 34.535886626538215], [-77.3960629582898, 34.53592978490983], [-77.39598328631126, 34.53604856610609], [-77.39560301166192, 34.53648583173144], [-77.39552526844207, 34.536601508720516], [-77.39535202737815, 34.53685811306457], [-77.39520529716725, 34.53703289602004], [-77.39509223575486, 34.53720636705743], [-77.3949911424676, 34.53733506519237], [-77.39494848469404, 34.5373476250519], [-77.39480210382206, 34.53749146613969], [-77.39468165050091, 34.53751734433798], [-77.3945513301837, 34.537552652362734], [-77.39444947493512, 34.53756832654325], [-77.39423507053698, 34.53761412971064], [-77.39415790587307, 34.53759162839085], [-77.39385351272296, 34.537661665931736], [-77.39376409202298, 34.537647910971415], [-77.39333782205374, 34.53730237298524], [-77.39323635307173, 34.537163295654686], [-77.39315893299545, 34.536940827999196], [-77.39312696978558, 34.53684312902642], [-77.39300546612859, 34.53647087996758], [-77.392961013954, 34.53640604163124], [-77.39283500401227, 34.53639558837308], [-77.39239392452447, 34.53635264717994], [-77.39222396866398, 34.536311331263164], [-77.39199481341524, 34.53637477949443], [-77.39152739250723, 34.536584255292645], [-77.39146548537545, 34.53661402940874], [-77.39143144267979, 34.53664184768812], [-77.39119190360644, 34.537122325400404], [-77.39106010628626, 34.53741019027272], [-77.39062385195034, 34.5376410583417], [-77.39051355424836, 34.53770985888316], [-77.39011862509591, 34.53794566985681], [-77.38982796289362, 34.53811999459126], [-77.38952835463046, 34.53834165327436], [-77.38925552647069, 34.5385192628784], [-77.38902710797232, 34.538818854454576], [-77.38897631352745, 34.53888013656707], [-77.3889485720177, 34.53891495680637], [-77.38871150712029, 34.53924801528727], [-77.38862090788453, 34.53945188814666], [-77.38856199259703, 34.539737556618164], [-77.3884739406449, 34.53996275366433], [-77.38845587789609, 34.54011700664503], [-77.38841546309666, 34.5404608544752], [-77.38837073521907, 34.54057225359673], [-77.3884007357148, 34.54082542718793], [-77.38841828053673, 34.54095011391945], [-77.3884577325083, 34.54111120562476], [-77.38848953369786, 34.54124105955209], [-77.38860424153569, 34.541412954696455], [-77.38858064951967, 34.54165493580194], [-77.38875616742476, 34.54188070554329], [-77.38895514722257, 34.54201186670571], [-77.38915431985858, 34.54218626996389], [-77.38932678443005, 34.54228805969552], [-77.38973005261434, 34.54246623761108], [-77.3900248732548, 34.54249278173562], [-77.39027908331461, 34.54249347820439], [-77.39051485915499, 34.54248126630355], [-77.3912021624862, 34.54244566444426], [-77.39130186489788, 34.54239858312338], [-77.39147720547092, 34.542358707800894], [-77.39186748664083, 34.54241119185403], [-77.39345151573643, 34.54279509364582], [-77.39344958782083, 34.54353837526373], [-77.39209446511023, 34.5438228124858], [-77.3912627422755, 34.54413673220643], [-77.39077273384191, 34.54422342567443], [-77.39014332990094, 34.54433461071467], [-77.38968419542115, 34.54450189354469], [-77.38950552847245, 34.54460056680098], [-77.38889272838793, 34.54478155535179], [-77.388765499467, 34.5448173534075], [-77.38823480487792, 34.54497599066444], [-77.38810239152801, 34.54501083753232], [-77.38772763021753, 34.54521188832461], [-77.38771529075416, 34.54522003025057], [-77.38770476642229, 34.5452343425872], [-77.38752016064576, 34.54548664481924], [-77.38754172858852, 34.54563228624213], [-77.38729613003083, 34.54594595173151], [-77.38654631422038, 34.546092647466196], [-77.38650714504456, 34.5461146096993], [-77.38648578033644, 34.54611213771414], [-77.38572401134019, 34.546023899181264], [-77.38509478626162, 34.54622599592258], [-77.38493364995583, 34.54625329593278], [-77.38479074575682, 34.54628122113688], [-77.38433314489927, 34.54643593432193], [-77.38372569505165, 34.54675663511355], [-77.38334823678612, 34.54691898738341], [-77.382223660503, 34.54743415408613], [-77.38176397208454, 34.547532728665125], [-77.38147305258471, 34.54764786304068], [-77.38117989175043, 34.54786992396759], [-77.37972598479529, 34.548784930730456], [-77.37857138091124, 34.549818913836326], [-77.37817006625791, 34.550014983846616], [-77.37805802882158, 34.55027861792506], [-77.3785333905315, 34.551495646547096], [-77.37873346772501, 34.5520078887077], [-77.37880043467158, 34.552130236142084], [-77.37895747438945, 34.55258132039276], [-77.38003830769208, 34.55534829966001], [-77.38050277971934, 34.556537298548434], [-77.38088604139958, 34.556924356065444], [-77.38121979845167, 34.55735914206015], [-77.38166775144728, 34.557692662392206], [-77.38208328930298, 34.5580020491503], [-77.38250819966485, 34.55838875189845], [-77.3829082471449, 34.55869205347045], [-77.38324307632956, 34.55908202079519], [-77.38327886180028, 34.55912677369593], [-77.38388178037785, 34.559200554477], [-77.38403089766214, 34.55917948735067], [-77.38422498526616, 34.55919954698078], [-77.38481881043998, 34.558875772807234], [-77.38521033410632, 34.559275330195014], [-77.38560655597385, 34.559322731302466], [-77.38625962217239, 34.55940085549531], [-77.38639439935082, 34.55933267220704], [-77.38652531983465, 34.55936667146638], [-77.3865590266081, 34.55968043440311], [-77.38639433292839, 34.55965741344859], [-77.38634562397532, 34.55958621455896], [-77.3856064589418, 34.55977636263337], [-77.38539359392706, 34.55990037915696], [-77.38507870953843, 34.55999677539579], [-77.38481855589689, 34.560014478602454], [-77.38448311488213, 34.560289938912874], [-77.38429561404976, 34.5603928293756], [-77.38403058845364, 34.56050924742866], [-77.3839013507041, 34.56059601848476], [-77.3836583377277, 34.560770323795325], [-77.38338652732898, 34.56096461107174], [-77.38324257798644, 34.561143530801054], [-77.38296770642971, 34.561422856280586], [-77.38273524202253, 34.56175254449787], [-77.38269156077938, 34.56201433895975], [-77.38251594651626, 34.56220872658794], [-77.38248105396066, 34.562242440946164], [-77.38245443093886, 34.56227611029452], [-77.38229686932556, 34.562495123152004], [-77.38226335928567, 34.56266970700079], [-77.38238886241014, 34.562722159259074], [-77.38245430700965, 34.56277290196959], [-77.38258366136563, 34.56290864798005], [-77.3827958630333, 34.563017501798306], [-77.38282783580242, 34.563034820684095], [-77.38292456700304, 34.563081280712424], [-77.38324209618958, 34.56314831387617], [-77.38343195950895, 34.563145735833515], [-77.38386311446496, 34.56310834929799], [-77.38402999177819, 34.563091153787965], [-77.38458938772428, 34.562937192088114], [-77.38481791050174, 34.56292287586739], [-77.38515455726832, 34.562739208796316], [-77.38560587048539, 34.5625432629879], [-77.38585118968874, 34.562416768067145], [-77.3861912973943, 34.562321598199276], [-77.38639379776296, 34.56228863463386], [-77.38660181948552, 34.56226835376155], [-77.38700222165227, 34.56217984602183], [-77.38718167463182, 34.56226869645807], [-77.38748262313321, 34.56224148628642], [-77.38772846137743, 34.56214154651312], [-77.38796959521679, 34.56200735718286], [-77.38871909695033, 34.561738821146236], [-77.38874922341705, 34.56172554079617], [-77.38877210301492, 34.561715454780476], [-77.38954543915366, 34.56137454507089], [-77.38998496713545, 34.56118078452508], [-77.39093645729393, 34.56056986496123], [-77.39106003147113, 34.56048601035187], [-77.39112129750082, 34.56047202753858], [-77.39117963197135, 34.560471915428316], [-77.39119925118386, 34.560531959047005], [-77.39222534723388, 34.560892230063615], [-77.39269690734304, 34.561239368901674], [-77.39301296559725, 34.561627912025344], [-77.39314443712351, 34.56194964235526], [-77.39329715001026, 34.56212970750153], [-77.39342277945373, 34.562334060011985], [-77.39344618168661, 34.56237212691571], [-77.39348462576423, 34.56244503672043], [-77.3935856225449, 34.56262626479609], [-77.39365705540285, 34.56272483352496], [-77.39369060767898, 34.56294205381325], [-77.39348451841926, 34.563362678225666], [-77.39342577960551, 34.5635440572504], [-77.39341824209336, 34.56360842776057], [-77.39324663601815, 34.56422605593909], [-77.39322478938246, 34.56448547672768], [-77.39307267127803, 34.564912895380544], [-77.39305166298622, 34.56497675244716], [-77.39290574597135, 34.565380642752224], [-77.39293227801474, 34.56563107676905], [-77.39282482557749, 34.56581688655983], [-77.39289894256517, 34.56601237964104], [-77.39332210481594, 34.56616972236131], [-77.39345824692809, 34.56617804539349], [-77.39348419218278, 34.56618265881656], [-77.39357544416323, 34.56623152622909], [-77.39387813546357, 34.566276306085456], [-77.3941368303955, 34.56619796994961], [-77.39427209927175, 34.56618255609327], [-77.39435555120619, 34.56611056633787], [-77.3948910290616, 34.565943384386884], [-77.39502510597578, 34.56588639810194], [-77.39506004175712, 34.56580951001015], [-77.39514350986265, 34.56557231856245], [-77.395132472287, 34.56548397954659], [-77.39515077165092, 34.56515448199417], [-77.39518554406054, 34.565051750497275], [-77.39553078209646, 34.564660014038424], [-77.3958480771619, 34.564289384350936], [-77.3960224911329, 34.56408185320995], [-77.39626321783783, 34.56364533300453], [-77.39669020205059, 34.56313636495669], [-77.39677182162069, 34.56242169936273], [-77.3974240365562, 34.56167660611674], [-77.39883521043316, 34.561305871944924], [-77.40057545808284, 34.56251929936339], [-77.40309733567841, 34.56153311551091], [-77.40372693097106, 34.56166731797203], [-77.4040755812112, 34.56169472287429], [-77.40576102747139, 34.56182718607275], [-77.40687838250288, 34.56194822562099], [-77.40716980925569, 34.56193790049073], [-77.40902798855973, 34.56243531745419], [-77.41002989632958, 34.56278602326378], [-77.41144691545624, 34.562875593359585], [-77.41160564874016, 34.56295266202408], [-77.41182858751542, 34.562889692714336], [-77.41289091196604, 34.562809034808296], [-77.41318136759608, 34.5627869807926], [-77.41353881899512, 34.56278766475495], [-77.41423325317973, 34.56286671833449], [-77.41475712922355, 34.56298539097381], [-77.41542734695336, 34.562852008077115], [-77.41588643010822, 34.56254440613897], [-77.41633273071523, 34.562123138186394], [-77.4164124241511, 34.562073232874695], [-77.41710494657414, 34.56190411051363], [-77.41712055446672, 34.561905967704625], [-77.41714502074998, 34.5619078690112], [-77.4177507321399, 34.56196395503184], [-77.4179084246008, 34.56197885084632], [-77.41801594459422, 34.56187158670464], [-77.4180478891194, 34.56175106428422], [-77.41816295780008, 34.56145999751287], [-77.41844029685804, 34.56056957058413], [-77.41887401275908, 34.560590700009776], [-77.41948389637562, 34.56071891610381], [-77.42002578007481, 34.56088126891806], [-77.42027184037038, 34.561207559137074], [-77.42086261182946, 34.56113198314184], [-77.42105966220832, 34.56107661469282], [-77.4213138506785, 34.561005189375564], [-77.42184746111575, 34.56085524943351], [-77.42221945741665, 34.560700135713475], [-77.42263523877776, 34.5605600764936], [-77.4237889128866, 34.5604666663682], [-77.42421086850992, 34.56033976930909], [-77.42465786641812, 34.56031411176379], [-77.4251376409429, 34.5607265830215], [-77.42483909061104, 34.561446557912696], [-77.42489012401893, 34.56161153429178], [-77.42485071056664, 34.56177714863975], [-77.4249990982926, 34.56184451650047], [-77.42536773550606, 34.56193980532686], [-77.42578694937217, 34.56183422612742], [-77.4259820205974, 34.560815093780825], [-77.42701132682443, 34.56045576106361], [-77.42724620297514, 34.56029676664614], [-77.4274295868903, 34.56032269009746], [-77.42893796339621, 34.56053589794606], [-77.43112800197085, 34.56155898622705], [-77.43156049998775, 34.562067004433985], [-77.43209001806588, 34.56256003568997], [-77.43406140777633, 34.564531570267505], [-77.4347042903303, 34.56501857362829], [-77.435242830882, 34.56615993393698], [-77.43640802626729, 34.56758896710363], [-77.43524375299295, 34.56854529947644], [-77.43415387129082, 34.570136400741625], [-77.43366856904207, 34.570287058446056], [-77.43310397413731, 34.57037364190019], [-77.43288071538939, 34.570500151165604], [-77.43278309155949, 34.570555468716535], [-77.43249675869438, 34.570702101472065], [-77.432201494807, 34.57086181639124], [-77.43209294646309, 34.570965886137415], [-77.43160670204261, 34.571155854532186], [-77.43069567389915, 34.571619422454205], [-77.43051731309053, 34.57169143248352], [-77.4304198869238, 34.5717465236492], [-77.4300006317892, 34.5719121494531], [-77.42977332325032, 34.57199227491469], [-77.4297294737782, 34.57201713830256], [-77.42911664750936, 34.572228591528464], [-77.42894164816269, 34.57240641580938], [-77.4283819286741, 34.57299531512895], [-77.42832446439533, 34.57318739979804], [-77.42829312540606, 34.573432740623915], [-77.42825100097826, 34.57354331911107], [-77.4282217323881, 34.57365535461848], [-77.42815409491669, 34.57371053949863], [-77.42798749550988, 34.57372196044364], [-77.42793687413953, 34.573718331928404], [-77.42776006812701, 34.57356325976974], [-77.4277351412995, 34.57354024774746], [-77.42736598453257, 34.57322000607279], [-77.4273006643005, 34.57315160098913], [-77.42696908543111, 34.57277794365284], [-77.42687199700661, 34.57268136077617], [-77.42659804971555, 34.572403974840974], [-77.42659042470898, 34.57239145647769], [-77.42657777353764, 34.57234672771216], [-77.42630161629678, 34.57214926319762], [-77.42618061107925, 34.572043060051975], [-77.42617590079287, 34.57203198467064], [-77.42627571960612, 34.57160138397403], [-77.42628946167837, 34.57128900663412], [-77.42621534173625, 34.57115116411397], [-77.42618345213828, 34.571119946928455], [-77.42579245439083, 34.57082205331661], [-77.42579088195228, 34.57082068235424], [-77.4257893969735, 34.570813351023844], [-77.4257854747448, 34.57081883334599], [-77.42539538183061, 34.570643684283866], [-77.42525001561216, 34.57063252050568], [-77.42500138525953, 34.570538057541114], [-77.42492121562329, 34.570523378355425], [-77.42469497222832, 34.57046169291981], [-77.42460733968615, 34.57024135749441], [-77.42456505465925, 34.57015026230943], [-77.42460729569257, 34.57007299636984], [-77.42476910417359, 34.56987062860614], [-77.42500120234033, 34.56985044744603], [-77.4251781184311, 34.56982775025302], [-77.42521777623263, 34.56982251578663], [-77.4253951528857, 34.569798189663835], [-77.42557290050087, 34.56977159229401], [-77.42578907798233, 34.5696553327298], [-77.42601467850469, 34.56969763460718], [-77.42630364337364, 34.56960439986382], [-77.4265768883601, 34.56924481351777], [-77.42669682670223, 34.56912229160918], [-77.42697076910949, 34.568965394355956], [-77.42699251721369, 34.568950253876515], [-77.42723385782124, 34.56877438478987], [-77.42736459247638, 34.5684991382224], [-77.42747118640521, 34.568456478354136], [-77.42736457074662, 34.568424988549445], [-77.42714442891202, 34.56831634317906], [-77.42693864233985, 34.56810886315973], [-77.42672047876212, 34.56798525498533], [-77.42657655446988, 34.56806841274852], [-77.42651887073677, 34.56810735493936], [-77.42618262670078, 34.56816985174384], [-77.42587214564162, 34.56817304270079], [-77.42578867114185, 34.5681735910422], [-77.42564663619055, 34.56814253076852], [-77.42520503003954, 34.56813925829043], [-77.42500074115428, 34.568111046393646], [-77.42479156575166, 34.56819371519326], [-77.42440780002356, 34.56826454974936], [-77.42421288451463, 34.568332496820204], [-77.42390388125624, 34.56821446684856], [-77.42359869966302, 34.568591564180046], [-77.4235004491145, 34.5686870161363], [-77.42342506141698, 34.56870860304033], [-77.42327080279074, 34.56880522383014], [-77.42294806903087, 34.56902060244712], [-77.42263722286884, 34.56905011551901], [-77.42229556782378, 34.569260777389346], [-77.42224331534146, 34.56928252749321], [-77.42215136252824, 34.56932440553872], [-77.42184938387297, 34.56941916099907], [-77.42165297426612, 34.56951019614857], [-77.42119977186547, 34.56963836355706], [-77.42106151531439, 34.569685860182034], [-77.42094903915984, 34.569702382984396], [-77.42066755002205, 34.56968343729582], [-77.42047557255981, 34.56967432418888], [-77.42027355657027, 34.56954619011961], [-77.42001207931675, 34.56967714884995], [-77.41987962189043, 34.569691252821535], [-77.41969367156358, 34.56978081771625], [-77.4194856792567, 34.56980320219982], [-77.41926411048536, 34.56982824598201], [-77.4190917494503, 34.569987100563566], [-77.41888534501153, 34.56991960714306], [-77.41869777763725, 34.56995936931363], [-77.41839459837722, 34.569670171021606], [-77.41816632237432, 34.56937646557781], [-77.41807537002387, 34.56921106787119], [-77.41790967568527, 34.56902427531365], [-77.41776831402458, 34.569281563397894], [-77.41751578207571, 34.56941519194417], [-77.41745117365771, 34.56947977595628], [-77.41726631431351, 34.56966216067291], [-77.41715586381524, 34.569910417865984], [-77.4171412990955, 34.56994912227884], [-77.4171935949262, 34.57028895746631], [-77.41728162250737, 34.57035343536073], [-77.41751597769466, 34.57052567058675], [-77.41765419471331, 34.57057525039825], [-77.41790177612015, 34.57068843411954], [-77.41790577218671, 34.570692388677074], [-77.41790997695034, 34.570690698121744], [-77.41825659490908, 34.57068820778528], [-77.41833872899198, 34.570662801937054], [-77.41869790055199, 34.57060465295195], [-77.41872966166821, 34.57060306551667], [-77.41889488162559, 34.57058561555376], [-77.41902335655712, 34.57060024330997], [-77.41909187073132, 34.57060816798124], [-77.41920410977147, 34.57062125139688], [-77.41948584911604, 34.5706528880216], [-77.4196591692993, 34.5706723496949], [-77.41987982774064, 34.570697126647595], [-77.42000808891635, 34.570808724848845], [-77.42011071071786, 34.57096971960361], [-77.42015687857538, 34.571085721241445], [-77.42019656577136, 34.571206079263646], [-77.42027396021612, 34.571472188193496], [-77.42030549115344, 34.571580970627245], [-77.4203203826067, 34.571612775513714], [-77.42036166984634, 34.57170128255489], [-77.4204705929233, 34.57222850520472], [-77.42089753700068, 34.57220124545906], [-77.42106203284075, 34.57204571639574], [-77.42111860121811, 34.571983011571135], [-77.42139278749724, 34.571950527369964], [-77.42145598318625, 34.57193245034707], [-77.4215046862164, 34.57191873982547], [-77.42165048434777, 34.57184518326211], [-77.42184991761557, 34.571754710135764], [-77.422085696551, 34.57161184744711], [-77.42224384139212, 34.57153883599497], [-77.4223820223218, 34.57146383293981], [-77.42252067351455, 34.57142107442865], [-77.42263778116805, 34.57139880183733], [-77.42297504194838, 34.57159262266314], [-77.42304809387707, 34.57162568553505], [-77.42305328070198, 34.571665616282296], [-77.42297751539536, 34.571711969124486], [-77.4226379251646, 34.57200174927857], [-77.42255236069029, 34.57204723066578], [-77.42225936992973, 34.57218179067014], [-77.4222439935999, 34.572188756928], [-77.42194675735549, 34.57233118107115], [-77.42185006164084, 34.572381840251936], [-77.42165316120486, 34.5724816045503], [-77.42165309567758, 34.57248163700361], [-77.42165306177723, 34.57248165300465], [-77.4216528331418, 34.57248172257753], [-77.42145612189725, 34.572548805200036], [-77.42128698566391, 34.57256459539209], [-77.42123381079331, 34.57256955963393], [-77.42106213730847, 34.57251978152809], [-77.42089587700004, 34.5725579833866], [-77.42047246744175, 34.57265363205628], [-77.42027424927079, 34.57284303257583], [-77.4200864566823, 34.57314246322379], [-77.41991100443092, 34.57337025994414], [-77.4198982696699, 34.57339137599912], [-77.41993581320293, 34.57373160065684], [-77.41994761728424, 34.57378955511778], [-77.419956282204, 34.57386999053184], [-77.42001096492774, 34.57420498742965], [-77.42008875224974, 34.574394006227536], [-77.4201350139225, 34.574611651047206], [-77.42027464233078, 34.57469722106964], [-77.42046317701829, 34.57478566887373], [-77.4206686864899, 34.57495314043573], [-77.42067442355868, 34.57495830517116], [-77.42090032860166, 34.575100655966004], [-77.42106272863259, 34.57518915100354], [-77.42113572744546, 34.575237586011355], [-77.42129532336526, 34.57529318325116], [-77.4214002404885, 34.575338925781566], [-77.42145675529277, 34.5753475055983], [-77.42155785032298, 34.575364193531684], [-77.42185075713142, 34.575392702902704], [-77.42204387628026, 34.57539314411513], [-77.42209914298883, 34.575333940738666], [-77.42206267640933, 34.575394605446334], [-77.42224475704847, 34.57542838758421], [-77.42230476366353, 34.575424293815644], [-77.42233706487929, 34.57535495928326], [-77.42227818149972, 34.57518725589535], [-77.42226953537012, 34.57515242364779], [-77.42226303605959, 34.57513358892258], [-77.42224467861395, 34.57509704990258], [-77.42214095794502, 34.57474641574376], [-77.42209945411635, 34.57459603723841], [-77.42208401308226, 34.57454235082954], [-77.4220780116481, 34.574510386524125], [-77.42208468299012, 34.574370017415355], [-77.42223521752382, 34.574318207908846], [-77.42224449349045, 34.57431373024535], [-77.42224990266322, 34.574311918260456], [-77.4222811364598, 34.57430157549546], [-77.42244147112504, 34.57424858406425], [-77.4225854380582, 34.57420047409617], [-77.4226384482775, 34.57418275942763], [-77.42292043399068, 34.5740885263902], [-77.42303239606476, 34.574028566494455], [-77.42322914953627, 34.573952061908955], [-77.42323012125269, 34.57395134824512], [-77.42342632555291, 34.57380724874202], [-77.42355426151077, 34.573830893613504], [-77.42365533877839, 34.573856218592695], [-77.42382037240708, 34.574055376001546], [-77.42383047026769, 34.574066821116986], [-77.42383774545013, 34.57409536033214], [-77.42385741258963, 34.574498393699], [-77.42385919488311, 34.574539840721044], [-77.42391928028123, 34.57480765755879], [-77.42398660136057, 34.57490431205974], [-77.42421460602878, 34.575013133786356], [-77.42439189593354, 34.57507929168084], [-77.424456501717, 34.575097066262806], [-77.42460862724047, 34.5751338992281], [-77.4248471514127, 34.57520454259598], [-77.42487812287206, 34.57533428664061], [-77.42492861457896, 34.57561735758082], [-77.42471766930504, 34.57576517047006], [-77.42460885141166, 34.5759788892295], [-77.42455493029952, 34.57609594592885], [-77.42460892729923, 34.57626447559211], [-77.42466191213343, 34.57644802704923], [-77.42470818813187, 34.57649838598664], [-77.42500307270177, 34.57681981785421], [-77.42503547804955, 34.57684076130635], [-77.42507962984303, 34.57686929617607], [-77.42539711034294, 34.57696501865348], [-77.42558760415854, 34.577015205394986], [-77.42579113054234, 34.5770434142545], [-77.4259191165532, 34.5770346400562], [-77.4260611576006, 34.57701844903866], [-77.42618511219263, 34.57698435320449], [-77.42636623073034, 34.57691274496048], [-77.42657907176743, 34.57685132382745], [-77.4267374733781, 34.576800422567295], [-77.4273149500911, 34.576602327545025], [-77.42736699186386, 34.5766016870186], [-77.42743844021412, 34.57660539145317], [-77.42802244142734, 34.5765868171442], [-77.42815497925683, 34.57658636465449], [-77.42832746025962, 34.57658577524849], [-77.42875578466112, 34.57653969554095], [-77.42893761669163, 34.57715492220483], [-77.42893992651788, 34.577160553273444], [-77.42894025894624, 34.57716362569819], [-77.42894315638912, 34.57716919570017], [-77.4291159670097, 34.57755969689569], [-77.42906455720505, 34.5776977722514], [-77.42894333662755, 34.57773475626491], [-77.42879296481155, 34.577868881972734], [-77.42854941592161, 34.577990986791974], [-77.42842239279756, 34.57808453651312], [-77.4282556386695, 34.578216568944356], [-77.42824836327645, 34.57843426219665], [-77.42826994071183, 34.5785311607093], [-77.42830899071367, 34.57869078097246], [-77.4283274255639, 34.57876233483906], [-77.42836896377514, 34.57894143716455], [-77.4283986617114, 34.57919886869577], [-77.42832481537631, 34.57937240726355], [-77.42815590492859, 34.57957543992943], [-77.42804072267292, 34.57971388979076], [-77.42795897291978, 34.57981215309398], [-77.42791125965093, 34.57985676911912], [-77.42788478904244, 34.579940578527896], [-77.42786807950155, 34.579969157239866], [-77.42789639898734, 34.580003717748866], [-77.42794331983359, 34.58006442982857], [-77.42795134140614, 34.58007158047588], [-77.42806284860238, 34.58025944838873], [-77.428156155394, 34.580380552740536], [-77.42829462152648, 34.58050136753552], [-77.42832706539839, 34.58064584912124], [-77.4284622833028, 34.58095599296085], [-77.42850535866387, 34.581044668681024], [-77.42850616562401, 34.58109221222544], [-77.42855042450826, 34.58118744023183], [-77.42862366409145, 34.58137329974161], [-77.42867846318673, 34.581444238040596], [-77.42867558514826, 34.58152219163719], [-77.42874754552535, 34.581539092268414], [-77.42889908017717, 34.58141235066918], [-77.42892731698969, 34.58138974553511], [-77.42894450265078, 34.58137598740892], [-77.42899587181135, 34.5813429939611], [-77.42933843017371, 34.58109753090386], [-77.4294478828044, 34.581026407105654], [-77.42963909409175, 34.58098135338259], [-77.4297324040543, 34.58096733139395], [-77.42994361991, 34.581033788018516], [-77.43038148256134, 34.5811980770038], [-77.43047277751083, 34.581236335807915], [-77.43052053635401, 34.58126075046418], [-77.4310813031492, 34.581341845661385], [-77.43130862707633, 34.58142015933705], [-77.43161299897572, 34.58134806788995], [-77.43209659924563, 34.58124227630733], [-77.43232455111249, 34.58116285893132], [-77.43287044205634, 34.58085340692447], [-77.43288448786622, 34.58084772685696], [-77.4328944759001, 34.58084555829211], [-77.43290033815573, 34.58083394678652], [-77.43337711781531, 34.5804468537214], [-77.4336721967778, 34.57999707832555], [-77.43371897700224, 34.57991685088909], [-77.43376377122782, 34.57985993072297], [-77.43378286020628, 34.579737812131725], [-77.43385807412534, 34.57919774291056], [-77.43392557675915, 34.57898735277178], [-77.43406574561362, 34.57878604599455], [-77.434242440262, 34.57870739060188], [-77.43445968472321, 34.57861486252868], [-77.43480866504463, 34.57848353775979], [-77.43524759780641, 34.57837336109057], [-77.43558697262112, 34.5782637090173], [-77.4372156678627, 34.577662415145355], [-77.43791887882884, 34.57704326663131], [-77.43839898774317, 34.57691196899935], [-77.43972894427117, 34.57729893461034], [-77.4410139527973, 34.57769214337689], [-77.44155154485355, 34.578179985729406], [-77.44278803306226, 34.58025321630107], [-77.44350070559146, 34.58144811547918], [-77.44457629546343, 34.583251391138774], [-77.44465312023843, 34.58338019316244], [-77.44466800264344, 34.58341922247739], [-77.44369264738052, 34.58582239503889], [-77.44313146797555, 34.58614552962308], [-77.44260655439417, 34.5865072073106], [-77.44186646530625, 34.58684514911032], [-77.44155573365411, 34.58702447718057], [-77.4413538449617, 34.587036665694896], [-77.44100605195477, 34.587047640318275], [-77.44076766833692, 34.587067243778115], [-77.44030372052868, 34.587056817793766], [-77.4399794964881, 34.58687992682407], [-77.43974111881553, 34.58663827237493], [-77.43943358984062, 34.58642156729961], [-77.439190959703, 34.58587110228297], [-77.43919023405941, 34.58586953447585], [-77.43919010145378, 34.585868772499076], [-77.43918154773905, 34.58585987305275], [-77.43883911616027, 34.585494936898115], [-77.43881469537045, 34.58547912972232], [-77.43871135417285, 34.58542142372666], [-77.43840261970756, 34.585267058441204], [-77.43827276767095, 34.58529217893381], [-77.43772707703528, 34.58535237199851], [-77.43761465391272, 34.58551002714863], [-77.43692232399522, 34.58619671538115], [-77.43688086228626, 34.586260860955434], [-77.43682690030205, 34.58627051052527], [-77.43679489669896, 34.58624961702044], [-77.43643287441847, 34.58630454208959], [-77.43632776896565, 34.586282686757485], [-77.43609493299786, 34.5862558833078], [-77.43603880885746, 34.586242803091125], [-77.43589962350198, 34.58619463745804], [-77.43582010952431, 34.586167121348836], [-77.43564472317041, 34.58613017421471], [-77.43553037799488, 34.58609658669481], [-77.43530801878771, 34.58606734854018], [-77.43525065539296, 34.58605980577753], [-77.43520774688922, 34.58606627680062], [-77.43492789162005, 34.58613727020951], [-77.434856731871, 34.58635211842498], [-77.43481599218086, 34.58650127235471], [-77.43483371900417, 34.586523579640215], [-77.43485681067274, 34.58655100213887], [-77.43500779698842, 34.58673551960315], [-77.43513678188214, 34.58687948388429], [-77.43525103573252, 34.587008145749536], [-77.43540401825864, 34.58710063480365], [-77.43548736272986, 34.587253387506884], [-77.43556262720057, 34.587331490895615], [-77.43564525159164, 34.58743184288229], [-77.43574372953447, 34.58753484581182], [-77.43583261922288, 34.58762806028939], [-77.43603945800052, 34.587822706456265], [-77.43618710239555, 34.58784231700481], [-77.43656827346317, 34.58794628307514], [-77.4367373168013, 34.58801915990942], [-77.43682772088323, 34.58822191983721], [-77.43713662736567, 34.58838050902702], [-77.43708201083196, 34.588721185403585], [-77.437098828387, 34.588851512955365], [-77.43708600052688, 34.58893290533487], [-77.4371520345976, 34.589060128481556], [-77.43718913085095, 34.58913028956075], [-77.43720388413522, 34.589147853481926], [-77.43722216804068, 34.58915572959283], [-77.43726574133402, 34.589166157227105], [-77.43741921064156, 34.58919268130693], [-77.4375684074286, 34.589126952359784], [-77.43761620340379, 34.58911373201209], [-77.43773462194825, 34.589051410836916], [-77.43788731026306, 34.58889695743807], [-77.43801015695824, 34.58888515688659], [-77.43814760125319, 34.58884357439322], [-77.43840413762717, 34.58872314485504], [-77.43858072384347, 34.588694750811754], [-77.43908928241811, 34.588541769497866], [-77.43919217995321, 34.58858973821126], [-77.43929575390446, 34.58851270007493], [-77.43984144283067, 34.58847168407469], [-77.43998050998397, 34.58908879164062], [-77.44000219128837, 34.5891247409479], [-77.44032207000322, 34.589101822509924], [-77.43999464414476, 34.58916436893357], [-77.43998054510347, 34.58916522232629], [-77.43995688222894, 34.58918014210155], [-77.4394576630512, 34.58951244546319], [-77.43937759963146, 34.589663008088934], [-77.43919286366074, 34.59010776558246], [-77.43919097849785, 34.590112557549084], [-77.43918897941906, 34.59011488022092], [-77.43918088874811, 34.59012896335146], [-77.43919287466552, 34.59013215645158], [-77.4393132423691, 34.59081673691337], [-77.43939176373233, 34.59093474321806], [-77.43968302905621, 34.59121420566112], [-77.43983798815756, 34.59129480671274], [-77.43998153905831, 34.591323417639906], [-77.44030397463797, 34.591304583013], [-77.44037559285431, 34.59130327920206], [-77.44045243312755, 34.591288745956874], [-77.44076958093838, 34.591144002492015], [-77.4411235037688, 34.5910656808333], [-77.44116359621941, 34.5910454825902], [-77.44122380934728, 34.59102949580547], [-77.44155761150209, 34.590948812442626], [-77.4418686491668, 34.59091167836256], [-77.44234566229221, 34.59080307962368], [-77.44259409572784, 34.590739311699146], [-77.44282463491867, 34.59077133407034], [-77.44300330012757, 34.590837000772375], [-77.44309268067363, 34.59086839433853], [-77.44313383355811, 34.59090510797543], [-77.44332247512392, 34.59101222726757], [-77.44374732004782, 34.59115397555592], [-77.44357819350698, 34.59154918681505], [-77.44346670554263, 34.59204375869651], [-77.44331294295978, 34.59225825773791], [-77.44313455312961, 34.59234587697465], [-77.44267740929644, 34.59265064651507], [-77.44234671900166, 34.59295907815015], [-77.44229958926492, 34.59301095997238], [-77.44222072203203, 34.59307317486188], [-77.44178214170981, 34.59337727166711], [-77.44155886294175, 34.59355074981324], [-77.44128857117289, 34.59376584593315], [-77.44077093858785, 34.59402192869], [-77.44060866786927, 34.593980698726234], [-77.44008916667718, 34.594116074107575], [-77.43998281041443, 34.59407293068986], [-77.43989419501266, 34.594163318605425], [-77.43971391791432, 34.59428491264895], [-77.43958894140572, 34.59452458033971], [-77.43956141436273, 34.59470181503899], [-77.43955610000283, 34.594767834446216], [-77.43965584067837, 34.595142500235085], [-77.43954331065612, 34.595533705270945], [-77.43951729707203, 34.595587130386356], [-77.43919554944037, 34.59603383280999], [-77.43918524384766, 34.59604863209357], [-77.43917937369666, 34.596060591647856], [-77.43909485633274, 34.59617655235171], [-77.43909543083616, 34.59618067165174], [-77.4391059750128, 34.59618691886406], [-77.43919558726735, 34.59611688400224], [-77.43928373190664, 34.596140457355695], [-77.43942324072901, 34.59620468682371], [-77.43958968148985, 34.59613473134962], [-77.43987022843685, 34.59608298946011], [-77.43998373009948, 34.59605426945809], [-77.44012381695588, 34.59607493586011], [-77.44053670795049, 34.59611773657801], [-77.44076638490077, 34.59667401808668], [-77.44076902818452, 34.59667989593623], [-77.44076992203787, 34.596682220001014], [-77.44063119765791, 34.597124423863356], [-77.44070466269976, 34.597465229845916], [-77.44071713752218, 34.5975365906286], [-77.44070994181513, 34.597605179372394], [-77.44077264632531, 34.59762332066058], [-77.44098461030359, 34.59792250410267], [-77.44105264598439, 34.59803580150784], [-77.44125329645917, 34.59821198781209], [-77.4412813954911, 34.59823273743434], [-77.44128027458794, 34.598310577855095], [-77.44124865042164, 34.59854419945622], [-77.440989778683, 34.598685138140425], [-77.44089406940786, 34.598820130564675], [-77.44079685013118, 34.59874015005381], [-77.4406053868023, 34.598582636221344], [-77.44037896925681, 34.59850588682946], [-77.44034562690838, 34.598475414273075], [-77.44004559127931, 34.59854829272341], [-77.43998491953099, 34.59860744989104], [-77.43959202748198, 34.598973080381136], [-77.43959162794762, 34.59897382420278], [-77.43958897221191, 34.59897569829902], [-77.43919705397838, 34.59932831656313], [-77.43914252962172, 34.59940389375371], [-77.43910727818431, 34.59946777151336], [-77.43873087476582, 34.599868875354396], [-77.4387309798992, 34.59994677874129], [-77.43873458362226, 34.600020253668085], [-77.43875076418803, 34.60036851208403], [-77.43880361207394, 34.600781592481496], [-77.43880442537856, 34.600784472147375], [-77.43880463522856, 34.60078517309189], [-77.43880415572673, 34.60078565400352], [-77.4388046535495, 34.600789264174175], [-77.43885404983513, 34.60114032982036], [-77.43891929265244, 34.60144539113948], [-77.43892760760146, 34.60148860312266], [-77.43893842342219, 34.60153485982075], [-77.43900932938118, 34.60183454887485], [-77.43902429012807, 34.6018869886939], [-77.43905277028621, 34.602006786295824], [-77.43909230410917, 34.602125386439944], [-77.43911102559886, 34.60217479977679], [-77.43912847413401, 34.602216724430484], [-77.43923709748348, 34.60236969312041], [-77.4393025467745, 34.60246101992594], [-77.43937910347694, 34.60246761275954], [-77.43958028476044, 34.60257857989606], [-77.43973310088737, 34.60273592842427], [-77.43971901605255, 34.60286608408402], [-77.43981804081146, 34.60299885563414], [-77.43990247934823, 34.60305688233434], [-77.43990439813962, 34.603096555692034], [-77.43991409578614, 34.60342281704578], [-77.43979876313644, 34.603611537658836], [-77.43981514202713, 34.60366278608601], [-77.43984576674197, 34.603811545917345], [-77.43991660667922, 34.603892422831755], [-77.43996363245503, 34.603938361812176], [-77.44002813643334, 34.6039441726288], [-77.44013358784977, 34.60403845116688], [-77.44020359491168, 34.60407876975988], [-77.4402369979112, 34.604102749005094], [-77.44034493732981, 34.60403847007989], [-77.44051466034757, 34.6038621226178], [-77.44065649370654, 34.60371475245892], [-77.44104951603532, 34.60352503781654], [-77.44126817572953, 34.60412586879117], [-77.44128128579993, 34.6041407420855], [-77.44127990644976, 34.60415760783151], [-77.44129423216724, 34.60475441384806], [-77.44137931021892, 34.60485128910698], [-77.44102470170398, 34.605279500260835], [-77.44104020846396, 34.605317224332765], [-77.44105301550486, 34.605349234801956], [-77.44110418639028, 34.60548360691963], [-77.44116020081475, 34.60555537916848], [-77.44130193529722, 34.60550203745521], [-77.44145819738024, 34.605431228596096], [-77.44161769081181, 34.60530620180068], [-77.44182975843567, 34.605313863655184], [-77.4419177095432, 34.60528234901015], [-77.44211957773048, 34.605219257022355], [-77.44214565783801, 34.60518665373246], [-77.44214805480657, 34.60505325935563], [-77.44213022184655, 34.60500643028107], [-77.44212271181038, 34.6049557056435], [-77.44166055089467, 34.604771098976954], [-77.44163924999387, 34.60463252652016], [-77.44133120914108, 34.60414793149945], [-77.44132946649742, 34.60412700429598], [-77.44123079485814, 34.60349335867938], [-77.44214099799683, 34.60337671995097], [-77.44232735037741, 34.60310397362567], [-77.44228023679305, 34.602934611448106], [-77.44211770842388, 34.60256494578546], [-77.44209985235312, 34.60243034456258], [-77.44232613280661, 34.60213240641576], [-77.44248721506743, 34.60207485602362], [-77.44281352710622, 34.60199257485246], [-77.44295598570847, 34.602108422646246], [-77.4429775403817, 34.60218007571142], [-77.44302920904256, 34.602264560321586], [-77.44316775841142, 34.60249508515425], [-77.44326724780382, 34.60264212297895], [-77.44361427900762, 34.60273700841056], [-77.44410859960945, 34.60288317275421], [-77.44481156596011, 34.602395590117474], [-77.44483273585676, 34.60227637640922], [-77.44456897643168, 34.60209551680397], [-77.44453070555386, 34.60201161300344], [-77.4444779020603, 34.6018424790274], [-77.44444898302527, 34.601760482907196], [-77.44439892003426, 34.6017156051484], [-77.44428733162817, 34.601615573729916], [-77.44418242114651, 34.60152317565591], [-77.44386896218883, 34.60131964044281], [-77.44373570424393, 34.60122538043088], [-77.44369967906935, 34.60119914090541], [-77.44361518838156, 34.60108034399868], [-77.44349492438562, 34.60092479015996], [-77.44352767336636, 34.60076057157557], [-77.44356089025433, 34.60059239400238], [-77.44371394577249, 34.60049308302861], [-77.44393598289794, 34.600331808390294], [-77.44408675418008, 34.6003867717196], [-77.444296901022, 34.600468925494226], [-77.44449818216857, 34.60063869774306], [-77.44451793048798, 34.600655812593146], [-77.44456046100167, 34.60069289603807], [-77.44473617432969, 34.60084610523127], [-77.4448648017929, 34.600903400134186], [-77.44517434094425, 34.60115710564111], [-77.44520053331753, 34.60117691201396], [-77.44520802557578, 34.60118345506151], [-77.44522378630515, 34.60119589417084], [-77.44553372189127, 34.601451147609325], [-77.44537617639419, 34.60175266538725], [-77.4453344342095, 34.60183255126686], [-77.4453069522051, 34.60188506933066], [-77.44517378226998, 34.60213961299631], [-77.44507990289102, 34.60231906974367], [-77.44506339174637, 34.602357103874155], [-77.44504136049713, 34.60244994459272], [-77.44475223063898, 34.603151014347254], [-77.44489251687126, 34.603397800743544], [-77.4449026588691, 34.60353967909418], [-77.44493571954682, 34.60383719447922], [-77.44490947235978, 34.60416147855826], [-77.44489901019222, 34.604304148429854], [-77.44488418311413, 34.60459039622854], [-77.44486114290576, 34.60476397913746], [-77.44485468409847, 34.60481548818816], [-77.44494233466413, 34.60479239446306], [-77.44514215719242, 34.60473876344689], [-77.4453186153035, 34.60470540140397], [-77.44562339172842, 34.60457638158918], [-77.4461541178299, 34.604598147727735], [-77.44615528236623, 34.60459906856584], [-77.44645632219283, 34.60488057973531], [-77.44654358355248, 34.60503625571779], [-77.44662333161455, 34.60538068972018], [-77.44646183927951, 34.605617513525665], [-77.44626412051336, 34.60587439035087], [-77.446003192035, 34.60596390660086], [-77.44571208846412, 34.606052907372025], [-77.44550245945544, 34.60605508267648], [-77.44515960272034, 34.60598886746702], [-77.44504436931544, 34.605955002101695], [-77.44481258276564, 34.605455237413736], [-77.44482387492492, 34.60598976515951], [-77.4447097637242, 34.60611714210383], [-77.44471968742592, 34.60626300995405], [-77.44476164241743, 34.606300675546485], [-77.44496209680399, 34.60641444036906], [-77.44509664825283, 34.60649304418283], [-77.44532941822013, 34.60652078040872], [-77.44562601052955, 34.60659437132273], [-77.44556806622953, 34.6068696212012], [-77.44567003123034, 34.606951072528624], [-77.44566612953875, 34.60702339856317], [-77.44587551916342, 34.60697721749081], [-77.44621718724703, 34.60674567051107], [-77.44658479819279, 34.606606023521856], [-77.44682512771055, 34.60652063731347], [-77.44725345517178, 34.60669042609019], [-77.44731183230913, 34.606241041196384], [-77.44760602290603, 34.60605800331337], [-77.44763130680779, 34.60602251884778], [-77.44767794141917, 34.605749753405206], [-77.44797689205652, 34.60549244956977], [-77.4484489096317, 34.60540014413212], [-77.44853752588102, 34.60534118781052], [-77.44895237882923, 34.60521523576567], [-77.44933469910616, 34.60528077975687], [-77.44951353713873, 34.605344798332986], [-77.44961939778962, 34.605389833063], [-77.44983874040952, 34.60526709190182], [-77.45000988638752, 34.60523763105914], [-77.45011196917113, 34.60513041968441], [-77.45005688860553, 34.60503372809198], [-77.45003756081597, 34.604967012403655], [-77.44985891667261, 34.60468619568368], [-77.44980488486203, 34.60470584810054], [-77.44982266471804, 34.604659044509724], [-77.44931335449235, 34.604613589373415], [-77.44918030979352, 34.60455521861059], [-77.44910664194481, 34.604493998695844], [-77.44875316126416, 34.604267806940456], [-77.44870779881924, 34.60423849156726], [-77.44869593313017, 34.604233159275125], [-77.44867587780425, 34.60420522725746], [-77.44830183307668, 34.6038007134871], [-77.44817434945658, 34.60365211554254], [-77.44783337859201, 34.603326522093056], [-77.44802512650848, 34.602956161623226], [-77.44803284015143, 34.60277692033906], [-77.44827569900252, 34.6027433937514], [-77.4491309545293, 34.6026407801624], [-77.44924286515794, 34.602650041078185], [-77.44929089125795, 34.60261133821894], [-77.44933136635598, 34.60261193824038], [-77.44930927615425, 34.602589922330864], [-77.44970355667414, 34.60219854941981], [-77.4497276377303, 34.6021312097936], [-77.44973887319614, 34.602098139779514], [-77.44977258377102, 34.60200229632329], [-77.4497780069419, 34.60183913569724], [-77.44985135400567, 34.60177834236372], [-77.44988974186671, 34.60168585250328], [-77.44978442466955, 34.601533861442825], [-77.44978307297302, 34.60153229572792], [-77.44978045169303, 34.60153239493782], [-77.44952477473467, 34.601545486843094], [-77.44934796680874, 34.60160717987317], [-77.44918196426015, 34.60163055127096], [-77.4490383883952, 34.60168896880529], [-77.44877275394742, 34.60179704797059], [-77.44839223356243, 34.601861514178594], [-77.44809455892828, 34.60155970748024], [-77.44800364911912, 34.601485265299075], [-77.44834674766194, 34.6010826483298], [-77.44839815268259, 34.60104654846195], [-77.4488177459779, 34.60088296234116], [-77.44900339782745, 34.600638955652016], [-77.44923695102825, 34.60049408636114], [-77.44968455035529, 34.60028125120749], [-77.44970145416346, 34.60027069286096], [-77.44971022997791, 34.60026691370643], [-77.44975762182784, 34.600246505125455], [-77.45015407052915, 34.60000388579185], [-77.45036307605523, 34.59987597687591], [-77.45060644670892, 34.59973621095888], [-77.45084374834295, 34.599778067890874], [-77.45092156634506, 34.59976171964124], [-77.45098555732554, 34.59971163905338], [-77.45091029337372, 34.59969669126441], [-77.4507568879969, 34.59959223286121], [-77.45054870148127, 34.59952527879845], [-77.45030765919525, 34.5995192787923], [-77.45013672257251, 34.599399861436936], [-77.4493681855247, 34.598908407244366], [-77.44934442074668, 34.598887328724516], [-77.45024859529693, 34.598429028403224], [-77.45123771770673, 34.59832386039622], [-77.45130373273237, 34.59830119155613], [-77.45136877791937, 34.59830992467754], [-77.45213435195868, 34.598199780351585], [-77.45228257984414, 34.59817845413612], [-77.45253409728916, 34.59815812253051], [-77.45279341084334, 34.598124341372696], [-77.45295992219495, 34.598104535542966], [-77.45323269357465, 34.59814750849739], [-77.45332957906005, 34.59816277200273], [-77.4537456131209, 34.598058054362156], [-77.45388137723127, 34.59801018498032], [-77.45411560278892, 34.597605562345116], [-77.45417150372387, 34.59751044092695], [-77.45417650836946, 34.597494068853884], [-77.45418734635531, 34.59745595541936], [-77.45437229798894, 34.59694319083724], [-77.45453589294016, 34.596809151719754], [-77.4548086190027, 34.59675799790901], [-77.45503461692786, 34.59671084964657], [-77.45580179401402, 34.59645772314924], [-77.45601245664236, 34.59644264475008], [-77.45606861764374, 34.596297990740574], [-77.45607277066291, 34.596229526880535], [-77.45607953418349, 34.59611803220325], [-77.45612112014287, 34.595696977662655], [-77.4562646173433, 34.595436265569234], [-77.45645288468353, 34.595193682752466], [-77.456662655658, 34.59497792032136], [-77.45705335508052, 34.59478441174534], [-77.45733708314874, 34.59439176381096], [-77.45725204890556, 34.59423455491629], [-77.45706956906983, 34.593992697288925], [-77.45688214767475, 34.59378302869741], [-77.4568742331332, 34.593774398423065], [-77.45685397924542, 34.59375703213677], [-77.45665447442136, 34.59358597102489], [-77.45630000715208, 34.59328203682169], [-77.45691047614498, 34.59327285061423], [-77.45721764213741, 34.593165554444184], [-77.45771960733482, 34.59317483037325], [-77.45773179866934, 34.593182703611646], [-77.45767840316228, 34.59345466970941], [-77.45767529154978, 34.593556739758945], [-77.45788959673017, 34.59383825788493], [-77.45786606698084, 34.5939329207481], [-77.45774276671997, 34.594276019641576], [-77.4582581615739, 34.59436778379743], [-77.45865081705655, 34.59456030944313], [-77.45878101881132, 34.59464270844971], [-77.45886965253402, 34.594693037483324], [-77.45933874974745, 34.59487497844182], [-77.45940363697773, 34.594909949014536], [-77.45950337352278, 34.59502228709974], [-77.45970839259206, 34.595192263079184], [-77.45975781103286, 34.59527686619708], [-77.4600223261121, 34.59572970200573], [-77.46016400173042, 34.59569450050759], [-77.46047510439774, 34.595463667012844], [-77.46052701978287, 34.59538043920767], [-77.46055403617257, 34.59532024615058], [-77.46072719930136, 34.595005603750295], [-77.46079512138326, 34.59488218761536], [-77.46080893847946, 34.59485970391517], [-77.46083167801132, 34.594846366416384], [-77.4608810587809, 34.59481740262101], [-77.46128199430854, 34.594571365505686], [-77.46147097706229, 34.59447196135513], [-77.46173952274498, 34.59432270633505], [-77.46220267964664, 34.59411525417144], [-77.46221249245893, 34.594112024453864], [-77.46269003038677, 34.59395484974779], [-77.46337377571847, 34.593898941254075], [-77.46366742826052, 34.59368518927283], [-77.46436662793752, 34.59386304473082], [-77.46447354225515, 34.59499543413146], [-77.46447353679041, 34.59552240641543], [-77.46447350589284, 34.59662800498351], [-77.46447350200062, 34.59676111721596], [-77.46447112699552, 34.59678741263652], [-77.46445315096007, 34.59799271235658], [-77.46407531690258, 34.598377448345445], [-77.46305645734374, 34.599130799681134], [-77.4617058493887, 34.599053559366666], [-77.46113750886623, 34.59907616995844], [-77.4609426797262, 34.59909015312566], [-77.4605510527435, 34.5991050713749], [-77.45990525360735, 34.59914087726996], [-77.45959474826813, 34.59913421023536], [-77.45892253105232, 34.5991546875594], [-77.45885974355652, 34.59916208310385], [-77.45882799093768, 34.59915756731333], [-77.45871633107355, 34.59916798718602], [-77.45834588584484, 34.59920517208329], [-77.45824295391041, 34.599303042146545], [-77.45811002358369, 34.599489789488025], [-77.45803723520936, 34.59966749675374], [-77.45804405835091, 34.59972905297437], [-77.45816589453794, 34.5999673647798], [-77.45830686206399, 34.60002334180649], [-77.45848206340688, 34.600495124886244], [-77.45856726921103, 34.600888518001675], [-77.45848122713558, 34.6014506593141], [-77.45818486957896, 34.60268752050902], [-77.45801801797617, 34.60317386013967], [-77.45793045054846, 34.60344660429412], [-77.45761757549948, 34.604272516619865], [-77.45725781045296, 34.60475381057002], [-77.45688357322118, 34.6052544765698], [-77.45655614187963, 34.60569250976747], [-77.45647316239041, 34.60580351908276], [-77.45624673923317, 34.60627043425603], [-77.45602807864222, 34.60658167410268], [-77.45629097712163, 34.60683261373702], [-77.45668041722269, 34.60766091984483], [-77.45679005398888, 34.607841373241676], [-77.45681644523376, 34.60801888629164], [-77.45701500006471, 34.60901672975534], [-77.45703810934447, 34.609247674166554], [-77.45705554437006, 34.60955537935822], [-77.45709684337592, 34.61028411722213], [-77.45741546015537, 34.61061709278843], [-77.45715246855252, 34.61126575079201], [-77.45716846186755, 34.611547927108546], [-77.45768734283291, 34.612016599998014], [-77.45785486865915, 34.61302679250872], [-77.45500430922645, 34.61389261163706], [-77.45456949359736, 34.612905939222024], [-77.45449795348058, 34.61268294910563], [-77.45416677487134, 34.612282281262615], [-77.45414823757483, 34.61219616973577], [-77.4540312244327, 34.6122440620368], [-77.45331696224076, 34.61229823482934], [-77.45302209491757, 34.612398689815414], [-77.4525855952234, 34.61242216120551], [-77.45217418109493, 34.61278118898983], [-77.4520945058461, 34.612851099592035], [-77.45209206151847, 34.61286888060428], [-77.45209088803955, 34.61287435191956], [-77.45200036258547, 34.61345618827203], [-77.45055922484485, 34.61384143787313], [-77.45027617716696, 34.613890586157126], [-77.44983624687941, 34.613937805088135], [-77.44976563755517, 34.613946116982696], [-77.44972313498765, 34.61394934344479], [-77.44957908078982, 34.61395995201087], [-77.44925033877212, 34.61398426565359], [-77.44889645117314, 34.61415461968801], [-77.44881081320848, 34.61419841514923], [-77.44879886383589, 34.61425551930051], [-77.44868956043564, 34.61458287499844], [-77.44884198799319, 34.61482872340256], [-77.44883587176383, 34.614910408621085], [-77.44891179821256, 34.614941319907174], [-77.44903684011318, 34.6151246705088], [-77.44909397875982, 34.61520606193043], [-77.44906905890103, 34.61524234049593], [-77.44867784684031, 34.61539069268864], [-77.4485968108221, 34.61543775034638], [-77.4481330627566, 34.615480079150224], [-77.44784445217385, 34.61533192833248], [-77.4475691925334, 34.61552499357636], [-77.4474542961739, 34.61558198007714], [-77.4471113147937, 34.615771435579404], [-77.4472313461534, 34.6160815008728], [-77.44722685216252, 34.61612180216153], [-77.44755169349446, 34.61638437179219], [-77.44771553202625, 34.616403877114465], [-77.44781049471109, 34.616406325046164], [-77.44833879944603, 34.61655621688507], [-77.44838888680422, 34.61659855683673], [-77.44863458100039, 34.61681409282276], [-77.44876022346486, 34.61695532902986], [-77.4490845316743, 34.61739118529031], [-77.44909822488334, 34.61742039367256], [-77.44909984772418, 34.61745445423676], [-77.44915169648365, 34.617464288238544], [-77.44920397514807, 34.6174329757652], [-77.44935135962356, 34.617348208713196], [-77.44960962265233, 34.61721653585762], [-77.4500650693026, 34.6171148507331], [-77.45010392148973, 34.617101622727134], [-77.45013033313361, 34.61710892484989], [-77.45014706100781, 34.617121299786106], [-77.45024425511265, 34.61717754182956], [-77.45064673707435, 34.61739191823983], [-77.45092603687652, 34.61763767144002], [-77.45135435366439, 34.61782795350304], [-77.45172490236246, 34.617902453854], [-77.45219075022462, 34.61785853354452], [-77.45240121602691, 34.61781086606833], [-77.45339541575511, 34.61766058457377], [-77.45340763490297, 34.61764610062174], [-77.45348022479872, 34.61764776410266], [-77.4534212203274, 34.6176957054742], [-77.45326782023994, 34.61885471907852], [-77.45274373347755, 34.619061547338006], [-77.45246186802055, 34.61919216028061], [-77.45198511297326, 34.6194130806399], [-77.4518105917886, 34.619493950614974], [-77.45172137377709, 34.61955249737779], [-77.45147421634628, 34.61969690022928], [-77.45138715036424, 34.61974526802459], [-77.45135884775013, 34.619764304890765], [-77.45109302982203, 34.61995206749494], [-77.45098043972898, 34.620206972282915], [-77.45097731532323, 34.62022128223573], [-77.45097342142424, 34.62027683481235], [-77.45094895886074, 34.620521058140405], [-77.45093080276366, 34.62059038602506], [-77.45095913081616, 34.62066747414879], [-77.45112709874758, 34.62083799844829], [-77.45137314939109, 34.621075671586716], [-77.4522010058082, 34.62095906986967], [-77.45221025410129, 34.62095329274514], [-77.45223250436256, 34.62093939342628], [-77.45229793285493, 34.620939033560596], [-77.45226096054931, 34.6209800435026], [-77.45223284190759, 34.62103576839975], [-77.4520822799372, 34.62153692506906], [-77.45230197170515, 34.62167640345441], [-77.45245842455549, 34.62185944040303], [-77.45294210575196, 34.62190060255024], [-77.45309435930614, 34.62218894770895], [-77.45393445463057, 34.62251611910582], [-77.45463585628558, 34.62322636188462], [-77.45337929328633, 34.62522160126477], [-77.45268157676409, 34.626082275886], [-77.45116629657261, 34.62716988436246], [-77.44994614811614, 34.628045667266804], [-77.44790686495868, 34.62809926551699], [-77.44650049255686, 34.627946842820535], [-77.44550395985678, 34.627185485943215], [-77.44448027283923, 34.62612218630057], [-77.44430278035732, 34.62562862223324], [-77.44429415139209, 34.6246982471434], [-77.44448347347037, 34.624453027806254], [-77.44471080937865, 34.624288689596376], [-77.44535809421396, 34.62385743172527], [-77.44561713646371, 34.62375806532437], [-77.44588374851662, 34.623704142009544], [-77.44586322533466, 34.623512391759306], [-77.44585553041115, 34.623249354289925], [-77.44581226874064, 34.62305972571345], [-77.44567289474602, 34.622828150492246], [-77.44521727132863, 34.62229760141608], [-77.44518925503043, 34.622235217322114], [-77.44518726126161, 34.6222281055523], [-77.44517482610692, 34.62221728535907], [-77.44455035895004, 34.621671186353446], [-77.44452889334373, 34.62137186532955], [-77.4444678045147, 34.62128854318786], [-77.44435002182408, 34.62105039261709], [-77.44432622932894, 34.621004462595415], [-77.44432375814094, 34.620997288821464], [-77.44430333312111, 34.62098323531873], [-77.4440920952705, 34.62083352895007], [-77.44393089828064, 34.62074004358189], [-77.44370310963504, 34.620607938198305], [-77.44353453866297, 34.620600810827675], [-77.44348273246743, 34.62049856574158], [-77.44333245215998, 34.62033380533105], [-77.44358719136218, 34.62018450794909], [-77.44361591741114, 34.62009134328938], [-77.4436653246167, 34.61998379554229], [-77.44370354741699, 34.61984424366986], [-77.44365915077266, 34.619709766006565], [-77.44358235042398, 34.61962808451713], [-77.44343494586184, 34.61962837257758], [-77.44327203392581, 34.61969324841719], [-77.4431802989974, 34.619846287189674], [-77.44294715167007, 34.620198981025965], [-77.44267572726764, 34.620696264994955], [-77.44266369724564, 34.62071921094862], [-77.44265048743004, 34.62073583677907], [-77.4423508877878, 34.621229167393466], [-77.44233997337119, 34.6215628606092], [-77.44227564398456, 34.62182225729988], [-77.44224121990428, 34.621960264715476], [-77.44204845847312, 34.62224623844707], [-77.4418900124841, 34.62230673490596], [-77.44132979540124, 34.62238155814251], [-77.44095342846116, 34.62208750524814], [-77.44081870777228, 34.622092022957204], [-77.44079061425636, 34.62200455293633], [-77.44076603875455, 34.6219134236248], [-77.44058395648952, 34.621324968994074], [-77.44039140729133, 34.62078583510659], [-77.44026882097444, 34.62067630923907], [-77.44015480221924, 34.62046068012192], [-77.44015516001363, 34.62016036956602], [-77.43971126132593, 34.62030546261899], [-77.43942026165644, 34.62032802968296], [-77.43928759289292, 34.62030658059268], [-77.43866747013885, 34.620559607178436], [-77.4384811965093, 34.620739016838115], [-77.43805557638119, 34.62056872706205], [-77.43763893506576, 34.62049327490206], [-77.43756637570003, 34.620338929301795], [-77.43726135594024, 34.62012411591673], [-77.43721100579683, 34.620102113271216], [-77.43702191178483, 34.620124881834364], [-77.43674261578023, 34.62014981071458], [-77.43669750758903, 34.6202173507335], [-77.4367020272191, 34.62049118938144], [-77.43675935124327, 34.620568966642736], [-77.43677890509599, 34.62063024533882], [-77.43687586993806, 34.62090499820148], [-77.43698446474633, 34.62103351875304], [-77.43717059634075, 34.62106570158359], [-77.43724550736574, 34.62130082843099], [-77.43711737090769, 34.62157464810498], [-77.43688995096315, 34.621795826540165], [-77.43671193561465, 34.62195887995259], [-77.43666811875926, 34.62207194681818], [-77.43663505344139, 34.622177353755085], [-77.43660038305504, 34.622275875780836], [-77.43661651865082, 34.622319566883334], [-77.43665013426202, 34.62244631671344], [-77.43671135505721, 34.622541193312124], [-77.4369086402439, 34.62274187794561], [-77.4369330133087, 34.62276667090073], [-77.43715140903187, 34.62291755125499], [-77.43720994908082, 34.62302523821263], [-77.43748720251203, 34.62324371020657], [-77.43757668071486, 34.62331198009714], [-77.43788483132712, 34.62357135938838], [-77.43802669662861, 34.623676168012175], [-77.43830260960732, 34.623928578547265], [-77.43847069142768, 34.6240477188519], [-77.4385258852394, 34.62412712302463], [-77.43865614340119, 34.62427221337036], [-77.43879296097154, 34.62442024010073], [-77.43885594917816, 34.6244910633247], [-77.43905358230879, 34.62471519593137], [-77.4389701417105, 34.625001521647974], [-77.43864884781071, 34.62519355370412], [-77.43864510801367, 34.62519749377254], [-77.4386288319504, 34.62520551672365], [-77.43830732251985, 34.62538900250492], [-77.43802980436095, 34.62550079423227], [-77.43772275584902, 34.62565214571673], [-77.43721174131363, 34.62560943894797], [-77.4372113352006, 34.62558691331213], [-77.43719167858661, 34.62524591279028], [-77.43706563768492, 34.625172382695816], [-77.4368335767058, 34.625134401235606], [-77.43652631068804, 34.62512297205518], [-77.43560809439214, 34.62506382339249], [-77.43546580998115, 34.62509047285233], [-77.43529176593952, 34.62519035885707], [-77.4352725510456, 34.62505441804616], [-77.43520123235783, 34.62492143346882], [-77.43492847777135, 34.62472017248868], [-77.43476313766783, 34.62446112196117], [-77.43478503039913, 34.62398131102656], [-77.4347671021826, 34.623721508529144], [-77.43476337718108, 34.62352931568013], [-77.43466142805758, 34.6232182040727], [-77.43450975859139, 34.62305637105941], [-77.43451866210795, 34.62247851726514], [-77.43452799520279, 34.62231269076028], [-77.43457365181223, 34.622224034210625], [-77.43465319448794, 34.622121089759844], [-77.43470371110928, 34.6218933678368], [-77.43483720171363, 34.62169683526954], [-77.43488799155818, 34.62157005521197], [-77.43483897840825, 34.62148557235561], [-77.43461447645305, 34.621447252906485], [-77.43442343251697, 34.62128146972656], [-77.43406406220332, 34.62120578372581], [-77.4337750714559, 34.62105031841959], [-77.4335390470816, 34.62093327851498], [-77.43328364701888, 34.62095902225597], [-77.43293025380002, 34.621029394555364], [-77.43270360653426, 34.621040153362365], [-77.43219443860484, 34.62082138096646], [-77.4321529324063, 34.62079900470519], [-77.43214054261914, 34.62077768669239], [-77.43163356719478, 34.62069309808071], [-77.43134740176708, 34.6208693152792], [-77.43118082541983, 34.620960012071585], [-77.43108091065828, 34.62100152714552], [-77.43099371252538, 34.62110452209815], [-77.4306241297258, 34.621461089785235], [-77.43047800948563, 34.621620726177426], [-77.43048367235826, 34.62172165109646], [-77.43056637128205, 34.6218237921757], [-77.43066217663674, 34.62193747957825], [-77.43085574465084, 34.622161614255475], [-77.43091719693733, 34.62223404142735], [-77.43094231126828, 34.62227848756012], [-77.43133807059036, 34.622483336859226], [-77.43133147379531, 34.62271702571283], [-77.43145186799207, 34.6231893826433], [-77.43137702214831, 34.62357549047442], [-77.43138173587778, 34.623584624547604], [-77.43137391858254, 34.62358736472623], [-77.43123340871567, 34.62384243204676], [-77.43119296530239, 34.62388683987317], [-77.43114987729801, 34.62401392133414], [-77.4310898735229, 34.6241019170808], [-77.43109484374986, 34.62414885666016], [-77.43109015999246, 34.624215558425384], [-77.43112572830768, 34.62426932936589], [-77.4311510051743, 34.6243087558392], [-77.43131147029129, 34.62433434206428], [-77.4313151985103, 34.62433356815038], [-77.43132332101666, 34.624333731698876], [-77.43152308373216, 34.624311122170596], [-77.43157221282095, 34.624312068968024], [-77.43175599681757, 34.62433506947138], [-77.43207388111524, 34.62422389814546], [-77.43221383391014, 34.624381117902225], [-77.43230367780842, 34.624423584520564], [-77.43279067692075, 34.624590312187266], [-77.43312291803682, 34.624928587998674], [-77.43320450366942, 34.62499873227972], [-77.43340814280171, 34.6252568837872], [-77.43364478440331, 34.62537482391649], [-77.43384224473547, 34.62546206325773], [-77.43419133865096, 34.625621042173435], [-77.43426187489764, 34.625831558264295], [-77.43417154061811, 34.62610669620658], [-77.43396056331817, 34.6263455460447], [-77.43394924945696, 34.6268310591204], [-77.43396309987271, 34.62690458438664], [-77.43427684009161, 34.62707567464541], [-77.43465994919069, 34.6274444658651], [-77.43421530793574, 34.62820638335435], [-77.43380764683494, 34.62791826752551], [-77.43355253746013, 34.62806107070392], [-77.43357787139047, 34.628199066117155], [-77.43360974980547, 34.628482249848446], [-77.43369832978439, 34.62873153550436], [-77.43353347546544, 34.6291674769904], [-77.43432369664832, 34.62895039335516], [-77.43433221236921, 34.628633548387846], [-77.43458452296264, 34.62842223269641], [-77.43435887939856, 34.62826875401734], [-77.4350931659578, 34.627571397110295], [-77.43555409408835, 34.62792811577124], [-77.4355205381033, 34.62856749248088], [-77.43554404161739, 34.628669466155436], [-77.43549563963019, 34.6290419557585], [-77.43490225854896, 34.62977230335033], [-77.43434104603115, 34.63000891496788], [-77.43435372581675, 34.62974718835268], [-77.43348295257093, 34.62937309106523], [-77.43349850627146, 34.62990048626558], [-77.43350115029337, 34.62999016135251], [-77.4337086968441, 34.63059348618339], [-77.43349616648291, 34.63073006076616], [-77.4336194449179, 34.631801127988574], [-77.43081712118986, 34.632486794348566], [-77.42998016828358, 34.63194530874483], [-77.4294771714938, 34.63187531320425], [-77.42844291855357, 34.63173138849042], [-77.4277935523462, 34.631641018520526], [-77.42688781908146, 34.63113615448935], [-77.42749068025046, 34.630534038116714], [-77.42778986542206, 34.62976083965589], [-77.42794965647771, 34.629356676916764], [-77.42802298437479, 34.629222980232626], [-77.42807101492006, 34.62881138652481], [-77.4281066375428, 34.62863280310163], [-77.42808806413291, 34.62857877095256], [-77.42809033748122, 34.628505854141004], [-77.42795648050225, 34.628392760869225], [-77.42762660000963, 34.62815841198933], [-77.42711953352399, 34.6282872863964], [-77.42691596752631, 34.62843340426939], [-77.42652148813984, 34.629025132923815], [-77.42644698503132, 34.62929079090734], [-77.42556358352306, 34.629765055919506], [-77.42521882478803, 34.62886087968594], [-77.42513718974277, 34.628681076305185], [-77.42508939607788, 34.62851632789637], [-77.42476265975135, 34.628250445689076], [-77.42468580471564, 34.62867429228849], [-77.42337978194844, 34.62918174555829], [-77.42185762258741, 34.63016211696255], [-77.42119564507968, 34.630588457322574], [-77.42018320555152, 34.63085433830345], [-77.41969171256726, 34.630232379290874], [-77.42021549485574, 34.62958722873575], [-77.41936136672287, 34.6288495905571], [-77.42028048303789, 34.627242431340775], [-77.42032816184982, 34.62714875821031], [-77.42035880205076, 34.627088558061516], [-77.42051810570767, 34.626789284863115], [-77.4207944599033, 34.62607305200334], [-77.42104826202487, 34.62541523721477], [-77.42129848754684, 34.625010557887975], [-77.42172157148964, 34.62482159429411], [-77.42214970513737, 34.62468909826849], [-77.42223613846937, 34.62469025649947], [-77.42273690767098, 34.62468909313213], [-77.42299852036916, 34.62467278201237], [-77.42366837801524, 34.624601303978814], [-77.42375316721625, 34.62455997369327], [-77.42392739245818, 34.62407251037369], [-77.42411841501445, 34.62380210349806], [-77.4243125167697, 34.62358786701655], [-77.42450013519226, 34.62344637021192], [-77.42482419937667, 34.6232317828684], [-77.42481604550858, 34.6231446757856], [-77.42458566683834, 34.62293051441378], [-77.42449808748006, 34.62284053211611], [-77.42438543690682, 34.622374455722344], [-77.42436700234184, 34.622254355615546], [-77.42442786159319, 34.622012305278076], [-77.42441587322591, 34.62187120063594], [-77.42444337237805, 34.62177526884802], [-77.42438068600823, 34.621612932587716], [-77.42418366957071, 34.62156813002388], [-77.42406612946763, 34.62154027141477], [-77.42397714898435, 34.62153433620662], [-77.42379171487183, 34.62154712479864], [-77.42346426476638, 34.62158144527692], [-77.4232243827069, 34.62165475953373], [-77.42296425494565, 34.6216756266142], [-77.4227897801694, 34.621728776103495], [-77.42269360307026, 34.62178214309219], [-77.42253711820322, 34.622036257989805], [-77.42253650116763, 34.62203743002771], [-77.42237416431016, 34.62228977908285], [-77.42215272552312, 34.622553186762204], [-77.42197365301847, 34.62276903158177], [-77.42131879662608, 34.623122806815864], [-77.42128444863373, 34.62322331220258], [-77.42120530152867, 34.62315514042563], [-77.42064737079951, 34.62297540866781], [-77.42057216161125, 34.62252655723405], [-77.42068785054597, 34.62209397278421], [-77.42068741192035, 34.62207709048142], [-77.4206797264893, 34.62193488324674], [-77.42066659937862, 34.62167781954202], [-77.42066508524718, 34.62166396956859], [-77.42048252479961, 34.621551689829154], [-77.42042414864433, 34.621549346298494], [-77.4202854227466, 34.62156374892533], [-77.420134911303, 34.62157842272121], [-77.41967772599472, 34.62161192194027], [-77.41949701746434, 34.62162756572014], [-77.41930053808696, 34.621649404131375], [-77.4191028158676, 34.621666599453185], [-77.41889005073162, 34.62172489251466], [-77.4187086269766, 34.621762913546355], [-77.41855085176744, 34.62179934505506], [-77.41811008518478, 34.62203293094157], [-77.4180117034508, 34.62214559508978], [-77.4179203012582, 34.6222066511944], [-77.41743823059447, 34.622459840042914], [-77.41713200616584, 34.622836647861824], [-77.4167841923975, 34.62259893008493], [-77.41667584083407, 34.62259793713845], [-77.416343574713, 34.622848223339844], [-77.41561269901423, 34.62239351871968], [-77.41556823363908, 34.622385741411065], [-77.41555504888349, 34.62236960078242], [-77.41550254237585, 34.62235287447306], [-77.41476663603106, 34.62246252025177], [-77.41421224087053, 34.622343613266615], [-77.41397819629645, 34.62241410506441], [-77.41326741935613, 34.62188293430819], [-77.41325476110399, 34.621814653146345], [-77.41345831652372, 34.621006215674804], [-77.41331053365617, 34.62089721110163], [-77.41318951161767, 34.62085020680662], [-77.41284034283561, 34.620622295782596], [-77.41260198818414, 34.62049710050276], [-77.412401026422, 34.620398562545134], [-77.4123455079863, 34.62037748694684], [-77.41219120416676, 34.62033996779921], [-77.41171932906643, 34.620293126558614], [-77.41161259781583, 34.620285777487055], [-77.41146275092798, 34.620283724544464], [-77.41121838935001, 34.620267015227356], [-77.41103641405209, 34.620278073062224], [-77.41082418449076, 34.620274212213445], [-77.41009888162581, 34.62064197340871], [-77.41006476648266, 34.62067807143121], [-77.41003582768798, 34.620721609272984], [-77.4094633695803, 34.62158285201976], [-77.40937365894156, 34.621731646432465], [-77.40893547021952, 34.62199516168965], [-77.40845909469581, 34.62167526691708], [-77.40810575862696, 34.62131012823747], [-77.4077826832204, 34.620976246348555], [-77.40736443113894, 34.62051715905462], [-77.40751647963175, 34.619999612192025], [-77.40788355278605, 34.61988306369092], [-77.40845888864888, 34.61970892203898], [-77.40888672557662, 34.61957942198238], [-77.40893153638567, 34.619112138273486], [-77.40896938905817, 34.61855670081856], [-77.4089180291232, 34.61826493135554], [-77.40845868507262, 34.61773714002209], [-77.40836951719221, 34.617590962305826], [-77.40803189738872, 34.61754366231547], [-77.40767027101857, 34.61746697386525], [-77.40703023810029, 34.61752843014828], [-77.40688188796176, 34.617510156415406], [-77.40626837459006, 34.61694900193192], [-77.40618790696797, 34.616858878031], [-77.40609344717807, 34.61678558389991], [-77.40581518584696, 34.616464931050004], [-77.40540651010039, 34.61633351074129], [-77.40530503807977, 34.61634289838604], [-77.40525186406272, 34.61630380090859], [-77.40506608942638, 34.61627333645283], [-77.40451665352148, 34.616202289550586], [-77.40440647301048, 34.61624983608113], [-77.40412247157943, 34.616324133386115], [-77.40389341926512, 34.61644253966647], [-77.40378410019707, 34.616518422920194], [-77.40372829515402, 34.61659511010746], [-77.40334108460617, 34.61695430828995], [-77.40333411990996, 34.61696081780804], [-77.40332451572912, 34.61695954136539], [-77.40293991743818, 34.61665892555158], [-77.40287686813579, 34.61658920665333], [-77.40289223920408, 34.61653564026473], [-77.40293990727359, 34.616370697837574], [-77.40301970109952, 34.61580541570059], [-77.40302608770936, 34.615718527802656], [-77.4030170885037, 34.615636666572286], [-77.40296850155129, 34.61530226111601], [-77.40293986916208, 34.61527855368308], [-77.4027148416366, 34.61515665512416], [-77.40240568366495, 34.61495888608489], [-77.40225862596708, 34.61486470698339], [-77.4021514862681, 34.61466728874633], [-77.40190584877578, 34.614446420481926], [-77.40180546397721, 34.61419633133803], [-77.40179285733903, 34.6141598455479], [-77.40175729459332, 34.614132443255244], [-77.40158588002615, 34.61398806496987], [-77.40136311206882, 34.61386481124582], [-77.40097364826202, 34.613467184436786], [-77.40088305374115, 34.61314817667764], [-77.4008321654038, 34.613063021507635], [-77.4008609730341, 34.61294258694996], [-77.40081068982363, 34.612811984656005], [-77.40077183799522, 34.612755851388044], [-77.40065214557076, 34.61274778040786], [-77.40057475189242, 34.612769400739445], [-77.4004960508423, 34.61277170630372], [-77.39989608847651, 34.61289162535259], [-77.39978640622634, 34.612899936169754], [-77.39971474854889, 34.61287682747678], [-77.39941357024381, 34.61286607114163], [-77.3993922322554, 34.61297545064312], [-77.39935248014007, 34.61323365891314], [-77.39934642680113, 34.613277347288104], [-77.39933937909333, 34.613335288908814], [-77.39932547544353, 34.613704942142434], [-77.39924809100559, 34.61398543240276], [-77.39919850727463, 34.61414783063984], [-77.39899803595111, 34.614596607738584], [-77.39899516036951, 34.614598638483805], [-77.39898574276917, 34.6146030941552], [-77.39898971205663, 34.61461148703757], [-77.39899803578027, 34.61460942920057], [-77.3991355732664, 34.61500605486966], [-77.39928032054577, 34.61510569440942], [-77.39939221184422, 34.615246294477686], [-77.39949737488847, 34.615378439545985], [-77.3993922074913, 34.61579144397825], [-77.39938844292463, 34.61581467144542], [-77.39938416528072, 34.615819343045665], [-77.39919511243866, 34.61594696723778], [-77.39901541318791, 34.61589126818599], [-77.39899801929629, 34.615887898129955], [-77.39897416554292, 34.615878483138886], [-77.39872304390018, 34.61578630544778], [-77.39860383531774, 34.61568297958655], [-77.39841024083739, 34.61553525085594], [-77.39847778178456, 34.61523671512158], [-77.39820965795971, 34.61526505745873], [-77.39805562691541, 34.615161826662685], [-77.39801463923266, 34.61495322645305], [-77.3979604838631, 34.61475097673823], [-77.39762898538633, 34.614575103575305], [-77.39742132649889, 34.61408449065722], [-77.39739288428916, 34.614014336932016], [-77.3973869160603, 34.61398456021091], [-77.39702715789437, 34.61379904816631], [-77.39691788574677, 34.61374533613087], [-77.3967347648515, 34.61376367888458], [-77.3966329809237, 34.61377387422516], [-77.39652834285842, 34.613796523690226], [-77.39634897920286, 34.61382836120107], [-77.39623879906162, 34.613856505910164], [-77.39610857118888, 34.61388462609209], [-77.39584461699323, 34.61392726171381], [-77.39561070859465, 34.61398879127251], [-77.39528256657343, 34.61404429008317], [-77.39505624965437, 34.6140825742202], [-77.39480006835163, 34.61408170282728], [-77.3946620685736, 34.61410274088822], [-77.39455035927892, 34.614089398229936], [-77.39437419738502, 34.61399447912851], [-77.39426790017916, 34.61393927854249], [-77.39410564462916, 34.6138584339829], [-77.3940214818275, 34.61388619322933], [-77.39387371791078, 34.613979633864666], [-77.39382361810415, 34.6140199153599], [-77.39367430696922, 34.61409540535329], [-77.39378826750715, 34.614170994613474], [-77.39375233538688, 34.61450872348674], [-77.39391717712174, 34.61486264308764], [-77.39393610202555, 34.61490679507641], [-77.39398087258321, 34.61501583718921], [-77.39380379692004, 34.615350443288456], [-77.39357907192957, 34.61549018335466], [-77.39347941575303, 34.61552228620652], [-77.39335034951395, 34.61555484079213], [-77.39311632954116, 34.61544957365683], [-77.39277279573838, 34.6154110639322], [-77.39269105008651, 34.61542998158936], [-77.39261351046214, 34.615438560729594], [-77.39198578105325, 34.615523066665496], [-77.39190266725365, 34.615527881320986], [-77.3917629136699, 34.615494190983995], [-77.39127813328878, 34.615538145333936], [-77.39111428490122, 34.61560114811093], [-77.39090376953385, 34.61554184211151], [-77.39072009722855, 34.61560063047822], [-77.39061757994276, 34.615495713341744], [-77.39044252260774, 34.615536113168424], [-77.39032591332857, 34.61556724343904], [-77.39022987803278, 34.6156534617185], [-77.39025879813904, 34.615789316694546], [-77.39017753453673, 34.61587329208745], [-77.39002301081221, 34.61599394533202], [-77.38993167365943, 34.615995404307036], [-77.38980636958553, 34.616139085868795], [-77.38976917518218, 34.616181735296905], [-77.38975932047747, 34.6163314597364], [-77.38975710534255, 34.616358472132575], [-77.38976356304313, 34.616388811261196], [-77.38978885762177, 34.616507649037224], [-77.38986181233, 34.61655566118184], [-77.38993158301211, 34.616744898092115], [-77.39002113794665, 34.61653269195043], [-77.39005622292675, 34.616449555873345], [-77.39013073574262, 34.6163046073204], [-77.39020907881336, 34.616167549948266], [-77.3903258670639, 34.615963951662515], [-77.3903844245688, 34.61590652800902], [-77.39072006206798, 34.6159147707412], [-77.39097726351523, 34.615905539571614], [-77.39111424851644, 34.615940752266994], [-77.39136192735684, 34.6162848659453], [-77.39173539052132, 34.616317741548], [-77.391902628205, 34.615927742210076], [-77.39218226991295, 34.616132179433315], [-77.39229679182054, 34.616201200008035], [-77.39248916815964, 34.61617177374087], [-77.39269100234287, 34.61597134101808], [-77.39281906906014, 34.61620361711139], [-77.39295143030967, 34.61632249069501], [-77.39325902267824, 34.61651543161687], [-77.39334297059678, 34.616690603906015], [-77.39347931955457, 34.616747493840855], [-77.39363576988018, 34.61690443416951], [-77.39379706090934, 34.616967371005785], [-77.39387349761668, 34.616945906398314], [-77.39421209684025, 34.61692996871913], [-77.39426769301654, 34.61691766548995], [-77.39430430209408, 34.6169371205014], [-77.394740430534, 34.61691366054583], [-77.39503553338635, 34.616893236148144], [-77.39505608086645, 34.61689317952495], [-77.39509549223905, 34.6169049079028], [-77.3956226209644, 34.61702537517628], [-77.39584445706305, 34.61708999501677], [-77.39622048546698, 34.61714435054708], [-77.39642644899567, 34.61751965864185], [-77.39655554964207, 34.61758426956213], [-77.39663282254119, 34.617641052596106], [-77.39694385469014, 34.617869610089336], [-77.39698321322132, 34.617911104269844], [-77.39715155329336, 34.61826422652044], [-77.39726652415231, 34.618414229205385], [-77.39739838074144, 34.61865320046888], [-77.39740863650388, 34.618665235993255], [-77.39742118399921, 34.618680136775986], [-77.39758532034966, 34.61887402232336], [-77.39770093336895, 34.61903413636512], [-77.39781537226727, 34.61920108985251], [-77.3979162667056, 34.619318980828574], [-77.39796504423674, 34.61958182761009], [-77.39759001205407, 34.61971741249994], [-77.39742115104657, 34.61981986165085], [-77.39733694524247, 34.61984508580545], [-77.397122713462, 34.61986352678426], [-77.39702694366123, 34.61984820069113], [-77.39686337863628, 34.61975567091968], [-77.39663274547375, 34.61962519910639], [-77.3966152319349, 34.61961529145722], [-77.39641176273655, 34.61945807535163], [-77.39623855403576, 34.619293896222], [-77.39621478872718, 34.61927406729477], [-77.39613993270338, 34.61925926561651], [-77.39594471657631, 34.61917932529454], [-77.3958443557664, 34.61917041580177], [-77.39570920566453, 34.61917582031958], [-77.39516750700236, 34.61939949908671], [-77.39507881329267, 34.619436932134796], [-77.39505593217903, 34.61945221880289], [-77.39498644831627, 34.61950044173789], [-77.39455804320798, 34.61980030941007], [-77.39455214255302, 34.61991280747492], [-77.39455288975236, 34.62002988137898], [-77.39453410714265, 34.62012769357408], [-77.39459164709636, 34.62025625749176], [-77.39461839337244, 34.620327824782635], [-77.39466167125887, 34.620357544116246], [-77.39472978965094, 34.620385127830126], [-77.39485877106011, 34.62044137445647], [-77.39491254986075, 34.620439771691466], [-77.39505587591145, 34.62044273951249], [-77.3952613125685, 34.62045637316375], [-77.39545008773807, 34.6204031964873], [-77.39569411267559, 34.62033445544553], [-77.3958443013748, 34.62031614069411], [-77.39616738996084, 34.62045242816926], [-77.39623850339328, 34.62048102321605], [-77.39625895907935, 34.62049378295408], [-77.39628437527874, 34.620512149426354], [-77.39632113819098, 34.62059585174377], [-77.39650113434772, 34.620905460831025], [-77.39652832610363, 34.621013943835294], [-77.3965793449498, 34.62131875357157], [-77.39663267746025, 34.621441352722904], [-77.39671134529308, 34.621639555081664], [-77.39691729873388, 34.62169458665438], [-77.39702688276917, 34.621719249646205], [-77.39733700888856, 34.62172462021501], [-77.39742109793706, 34.62173005952216], [-77.39755696495685, 34.62174866321537], [-77.39794193463294, 34.62183500875346], [-77.39820952239324, 34.62209065010849], [-77.39833342157067, 34.622206050525456], [-77.39845258531926, 34.622322305431986], [-77.39870582729218, 34.62260039504604], [-77.39899795145064, 34.62271499405704], [-77.39925562575672, 34.62277811140529], [-77.39967657211542, 34.62287663525911], [-77.3997863912277, 34.622890554762186], [-77.39986300601446, 34.62288550403633], [-77.40057484058956, 34.62360851864892], [-77.4006604590808, 34.623609925330406], [-77.40077640388574, 34.62368541073532], [-77.40070316182434, 34.6269544131967], [-77.40086616053833, 34.62706905292792], [-77.40087879794947, 34.627394508767004], [-77.39900958913134, 34.630733391868176], [-77.40094387462061, 34.63345377371959], [-77.40171118703468, 34.6349637804576], [-77.39774886446962, 34.637355076346374], [-77.39742076192456, 34.63745897360649], [-77.39735250177142, 34.637692052624224], [-77.39729771706523, 34.6377734502682], [-77.39391587814607, 34.64128036349124], [-77.39111173676949, 34.64167735366291], [-77.38952547266729, 34.64060200828868], [-77.3872799124004, 34.641884836764504], [-77.38480272220175, 34.64181616644322], [-77.38329825592784, 34.64156792398741], [-77.38322551463713, 34.641564080049775], [-77.38317526708704, 34.641561424147255], [-77.38291582409754, 34.641544700488346], [-77.38164827748254, 34.641504376863054], [-77.38140079965609, 34.64149650152909], [-77.38069397540974, 34.64119412445324], [-77.3806214941485, 34.641026108296515], [-77.38032534817454, 34.64079510542972], [-77.3802909500064, 34.64064916240015], [-77.38020759094078, 34.64038338152793], [-77.38022672330078, 34.64023385153594], [-77.38014036918061, 34.640171947199065], [-77.38007133809292, 34.6401060642942], [-77.37972948956768, 34.63993735809205], [-77.3796770757024, 34.639914224878304], [-77.37965703701332, 34.63991293011471], [-77.37928280023239, 34.63978675129208], [-77.37907784229603, 34.63977090973837], [-77.37849429233168, 34.63936821890246], [-77.37806671533093, 34.639307144726345], [-77.37770579507253, 34.63893660786036], [-77.3776708849101, 34.63890375619273], [-77.377254756002, 34.638600316233216], [-77.37691729684173, 34.63854040307672], [-77.37670653540997, 34.63881579057538], [-77.37648461839755, 34.63907461195996], [-77.37633036895416, 34.639314199003834], [-77.37622880777747, 34.63953601555618], [-77.37612839722942, 34.63965459961964], [-77.37595692645831, 34.639815150688804], [-77.37544805539764, 34.63995635192731], [-77.37533971149718, 34.63992866055506], [-77.37498569722898, 34.63971504266166], [-77.37498127692153, 34.639677132095215], [-77.374964935669, 34.639293471988914], [-77.37507706646574, 34.6389942425575], [-77.37498999961613, 34.638817626773076], [-77.37494572032702, 34.6388216072955], [-77.37489772991245, 34.63882691918822], [-77.37455132329573, 34.63915414243704], [-77.37422493533624, 34.638902431444365], [-77.3741006355565, 34.63893259555904], [-77.37376276919714, 34.63898352207747], [-77.37372102960974, 34.63900310572164], [-77.37358273125733, 34.63906795693942], [-77.37356956492184, 34.63907413175774], [-77.37356558980345, 34.63907807396077], [-77.37343106151596, 34.639157251055224], [-77.37336839340816, 34.63922719672594], [-77.37298983983219, 34.6395778900514], [-77.37298219438475, 34.63958783640288], [-77.3729739783075, 34.639590848385176], [-77.37295784294135, 34.63959986768134], [-77.37257960880012, 34.63979769440611], [-77.37244236145098, 34.63980449702065], [-77.37233778494945, 34.63983597374437], [-77.37218527690919, 34.63987952481717], [-77.37213417278352, 34.63991337642668], [-77.37210054173858, 34.64000941056051], [-77.37209149412094, 34.64002566116753], [-77.37209490066918, 34.6400340531142], [-77.3721374001438, 34.64012519095333], [-77.37215269056598, 34.64015798052168], [-77.37218516654451, 34.640227623101495], [-77.37229405085246, 34.6404098941282], [-77.37237254588779, 34.64051589157732], [-77.37252147378427, 34.640856767703085], [-77.37256629902282, 34.64092650360638], [-77.37261556916467, 34.64094456208828], [-77.3729735858476, 34.64086743454992], [-77.373350381277, 34.640780763877586], [-77.3733808152391, 34.640781387102635], [-77.37343520466517, 34.64078743692614], [-77.37370618550537, 34.64080875478252], [-77.373762211674, 34.64085302629605], [-77.37394272314565, 34.64094452590004], [-77.37405227867417, 34.64112313826042], [-77.37455060059727, 34.64166008218046], [-77.37464295149093, 34.64178772517294], [-77.37472777880994, 34.641874984027055], [-77.37494480506867, 34.64204849448575], [-77.37509597028448, 34.64208375112089], [-77.37533909733584, 34.64213409589601], [-77.37556547487517, 34.64217890866084], [-77.3756565654253, 34.64224849893193], [-77.3760429035716, 34.642443469503505], [-77.37612763370632, 34.6424933259964], [-77.37615084615305, 34.64249417426866], [-77.37620868259907, 34.64251083779166], [-77.37614485056213, 34.642538581184986], [-77.37612761465762, 34.64256443590531], [-77.3758079078268, 34.643073598292524], [-77.37535584217922, 34.64348277839457], [-77.37533872005828, 34.64349509581584], [-77.37532989075937, 34.643496021662145], [-77.37463623704437, 34.64367923139066], [-77.3745780627993, 34.643737952853854], [-77.3743524553538, 34.64399037966293], [-77.3740154502587, 34.64412381220881], [-77.37393987802017, 34.64436352381947], [-77.37391464343067, 34.64453023704469], [-77.3736046083498, 34.645263412510566], [-77.37346087064736, 34.64525060722776], [-77.3732989423179, 34.645335400321265], [-77.37315286630795, 34.64521855304762], [-77.37310644170114, 34.645253433530804], [-77.3730420823088, 34.645283262671654], [-77.37311162476139, 34.64530027769986], [-77.37327236295667, 34.64546259875585], [-77.3733292089755, 34.64548571004454], [-77.37360471739376, 34.64547214920086], [-77.37364729041013, 34.64547537574223], [-77.37395245000714, 34.64570922968915], [-77.37404653360895, 34.64574563478868], [-77.37430604330714, 34.645566885302784], [-77.37455948082767, 34.6458781654967], [-77.374710060542, 34.645983284257284], [-77.37476461869228, 34.64604616313446], [-77.37488857591323, 34.646084336867354], [-77.37501836542934, 34.646117833530475], [-77.37505915148807, 34.64612691972782], [-77.3751242907304, 34.64613549894413], [-77.37538586139928, 34.64615941629991], [-77.37560758315264, 34.64609922023763], [-77.37569256606596, 34.64609257645034], [-77.37595099983525, 34.64623977230039], [-77.37609617922642, 34.64628001127927], [-77.37635456062947, 34.64620013798661], [-77.37668640924583, 34.646259388293046], [-77.37668718320191, 34.646259588365346], [-77.37701817181696, 34.64631571595129], [-77.37721799091291, 34.64635499082152], [-77.37763534059448, 34.64647714415558], [-77.3777039148502, 34.646492629450144], [-77.37775655398602, 34.6464768511801], [-77.37795002043767, 34.64650565642126], [-77.37849256566612, 34.64658680566012], [-77.37893239205695, 34.64673970947902], [-77.3792811544741, 34.64696064629338], [-77.37939469670016, 34.64702443963045], [-77.37972245984625, 34.64709948888419], [-77.37998846219844, 34.64714873425909], [-77.38006978643241, 34.647167354602914], [-77.38020444037342, 34.647175038299174], [-77.38136800919014, 34.647162977594846], [-77.38164713592052, 34.64720427617109], [-77.38223895668904, 34.647374198386714], [-77.38243577268348, 34.64742415273907], [-77.38259268408456, 34.64736622375035], [-77.3832243757275, 34.647855403298344], [-77.38430769865508, 34.64697099226009], [-77.38446257046449, 34.6481148800664], [-77.38446831869007, 34.64847292009577], [-77.38480165705576, 34.6483940746638], [-77.38557467022734, 34.64882057042375], [-77.38559790111839, 34.64964955145288], [-77.38703974664102, 34.65042841162523], [-77.38795606190055, 34.65127798889757], [-77.38869949532713, 34.65179869268106], [-77.38948141206706, 34.65248645740898], [-77.39042145071892, 34.65309308685374], [-77.39111072208195, 34.653705326555176], [-77.39268020831581, 34.65373229415576], [-77.39273388083058, 34.653765152589756], [-77.39426562325677, 34.65470289247444], [-77.39464498694691, 34.654730319373826], [-77.39491056200141, 34.65541930898788], [-77.39629016252044, 34.65757093060649], [-77.3974550517583, 34.65860963548182], [-77.39748872994616, 34.65880035981377], [-77.39721602276299, 34.65890141734117], [-77.39556488686566, 34.65994755394186], [-77.39489675261181, 34.66037085663217], [-77.39399923071886, 34.660780090808096], [-77.39315163967595, 34.66084419366999], [-77.39313021443364, 34.66085444926479], [-77.39309527017484, 34.660858317415034], [-77.39229224411072, 34.660979617626424], [-77.39183489214922, 34.660966303171776], [-77.3918045119733, 34.66096544701017], [-77.39136892434442, 34.660965071919925], [-77.39118616034867, 34.66099407045119], [-77.3909206568596, 34.66090910949797], [-77.39058082632147, 34.66087206709854], [-77.39033609265186, 34.66082424957927], [-77.3902357479328, 34.66082183374382], [-77.3900017345648, 34.66080576855855], [-77.38973144110929, 34.660895769532864], [-77.38963186109969, 34.66092469489315], [-77.38928438890318, 34.66121655799648], [-77.38925835092928, 34.66123171476553], [-77.3892014365486, 34.661257182206], [-77.38858219398551, 34.66157503767753], [-77.38827286102423, 34.66162515453237], [-77.38826420206932, 34.66162675156317], [-77.38795482873866, 34.66167528763347], [-77.3876483871008, 34.66171904006118], [-77.38764159440417, 34.66172386308117], [-77.38763689076417, 34.661720785714714], [-77.38738774323352, 34.66180706987114], [-77.38736255279761, 34.66193212999576], [-77.3874188589941, 34.66198993717189], [-77.38755139015433, 34.66203511447152], [-77.38772705855065, 34.66204563339513], [-77.38784081658699, 34.662068694130745], [-77.38810392050537, 34.66214961795323], [-77.38814976978637, 34.662163372498284], [-77.38839295963166, 34.662228020399496], [-77.38850995311363, 34.66223112851746], [-77.38887330041959, 34.66227715700629], [-77.38895202046089, 34.66228487764341], [-77.38897253342853, 34.662292694953734], [-77.38936942474696, 34.66260619503666], [-77.38946040578956, 34.66267381152129], [-77.38946784782758, 34.66267611837077], [-77.38948840861116, 34.662711636299555], [-77.38978761244655, 34.66312611499813], [-77.38978757598294, 34.66321843518127], [-77.38985496493869, 34.66337694653742], [-77.39038541013196, 34.66438266776437], [-77.39030707754945, 34.66473543664771], [-77.39027482599454, 34.665161762827196], [-77.38948432464042, 34.66507855818896], [-77.38936224454531, 34.66507720144312], [-77.38905079083156, 34.664875926634814], [-77.38885975363388, 34.66474647929888], [-77.38884995508603, 34.66472940453281], [-77.38884270708756, 34.664718389386046], [-77.3883559642175, 34.6644202482604], [-77.38827123598374, 34.664386602948014], [-77.38815591877555, 34.664325511517276], [-77.38765370802616, 34.664073699044394], [-77.3873093665357, 34.66390244946747], [-77.38709360867009, 34.663716555233506], [-77.38678996274786, 34.66363012719333], [-77.38624713582517, 34.66366742246856], [-77.38617968149347, 34.66367136220636], [-77.38615631839926, 34.663649981875054], [-77.3861022555736, 34.663633342075485], [-77.38538469761147, 34.66345577905019], [-77.38509219162282, 34.66329470215782], [-77.38434429085969, 34.66290045081678], [-77.38417444594506, 34.66281086135503], [-77.3840484770416, 34.662767046402905], [-77.38388056200543, 34.66284615636006], [-77.38380968638178, 34.66297401343057], [-77.38368989412255, 34.66318411845265], [-77.3834934462783, 34.66377919302405], [-77.38308312716303, 34.6640487875982], [-77.38307740358887, 34.66405294749919], [-77.38270442577249, 34.66435603998829], [-77.38268764039591, 34.66436546904359], [-77.38251320579472, 34.66450560117409], [-77.38249510622754, 34.66451362780522], [-77.38238746635594, 34.66463190297581], [-77.38244587779101, 34.66468344884689], [-77.38250592813111, 34.66468756625275], [-77.38257979690565, 34.6647374944544], [-77.38267538100088, 34.66475418714154], [-77.38284404723815, 34.664857963864854], [-77.38290858969522, 34.665047603794605], [-77.38313123752863, 34.66519163905257], [-77.38331913961196, 34.665283155724985], [-77.38355651667214, 34.66544585563969], [-77.38371042186228, 34.665534096959426], [-77.38382299013642, 34.665609151843725], [-77.38398139277803, 34.66571966945215], [-77.38407302939437, 34.665778661085724], [-77.38411892355536, 34.6658108805686], [-77.38417992914778, 34.66584747822518], [-77.38426546237424, 34.66589515240733], [-77.38432828719753, 34.66593016929575], [-77.38441395614623, 34.665977918799996], [-77.38458910378114, 34.666034876682566], [-77.38459360723225, 34.66603668463865], [-77.38460303676118, 34.66603868527531], [-77.38489703311618, 34.666032300348974], [-77.38508148317888, 34.66605517447878], [-77.38534601328892, 34.6660590708278], [-77.38548649371474, 34.66606296715928], [-77.38560354975407, 34.666047325250695], [-77.38606736039928, 34.66606028414837], [-77.38609006320524, 34.66604495367235], [-77.38612615764755, 34.66603905665446], [-77.38614819588958, 34.6660640336689], [-77.38659958262659, 34.66606867273032], [-77.38667863133364, 34.66607869375262], [-77.38682059059634, 34.666089747398416], [-77.38697746612416, 34.66607986218655], [-77.38716261660007, 34.666029257820355], [-77.38730023960291, 34.665998432743606], [-77.38744324165604, 34.66600349027354], [-77.38793516303569, 34.665818106856484], [-77.38795323762938, 34.665809855785774], [-77.38851739892355, 34.665679309269315], [-77.3886136935125, 34.665595529939594], [-77.38869767878128, 34.66563534553475], [-77.38910911357547, 34.665565634254165], [-77.38931696041938, 34.665233462455134], [-77.38936550573573, 34.66517019802228], [-77.39036576837066, 34.665603566727484], [-77.39049145013996, 34.66560253903823], [-77.39055726413324, 34.66562409343549], [-77.39148137841767, 34.66603091367439], [-77.39163276390228, 34.66608612751933], [-77.39176722998721, 34.666107759834006], [-77.39192831424695, 34.66617175410231], [-77.39215686510177, 34.66619550536181], [-77.39224032165879, 34.666200586850344], [-77.39228885262929, 34.666213133785725], [-77.39272605364486, 34.6664044268354], [-77.3928115797144, 34.666440323994195], [-77.39290751506067, 34.66647733804083], [-77.39309896102108, 34.66655414844937], [-77.39328937427929, 34.66661579397805], [-77.39339143023464, 34.66665041475226], [-77.39349037683715, 34.66668293553738], [-77.39368422010926, 34.66674557634441], [-77.39388936071731, 34.66681186724452], [-77.39397713222797, 34.666840317034115], [-77.39406032078443, 34.66686738250845], [-77.39427275775344, 34.666925694648285], [-77.39454270327717, 34.666985684920405], [-77.39457357930918, 34.66699313963689], [-77.39459767309101, 34.66699847969738], [-77.39476805793626, 34.6670357651529], [-77.39487596833663, 34.66705517543016], [-77.39489235454919, 34.66706300825613], [-77.39513414053499, 34.66712812344476], [-77.395172666844, 34.6671368525903], [-77.39530957329971, 34.66708559106232], [-77.39532724172795, 34.667069975245184], [-77.39541913825278, 34.666984165346825], [-77.39545119416901, 34.66689865224179], [-77.39554713966098, 34.666749404648655], [-77.39560441177798, 34.66640103438741], [-77.39590209219736, 34.666314530712995], [-77.39623716498413, 34.665939890469716], [-77.39684811537232, 34.66577686826673], [-77.39706299999108, 34.66638079921044], [-77.3972618792965, 34.66656026205316], [-77.39739662938001, 34.66668795726946], [-77.39747532308289, 34.66686539146795], [-77.39758135309184, 34.667057224526246], [-77.39761986587152, 34.66753621430118], [-77.39798974653038, 34.66731148336601], [-77.39820131704217, 34.66711958543539], [-77.39828395497389, 34.667044631599936], [-77.39849080580942, 34.66667787811461], [-77.39849749647497, 34.66666413245039], [-77.39850110728871, 34.66665167375953], [-77.39875560746538, 34.66619534898792], [-77.39887825115682, 34.66577221173893], [-77.3997231414817, 34.664699129283164], [-77.40055838720349, 34.66581540724071], [-77.40144460381474, 34.66713679892287], [-77.4013885296643, 34.6672544261402], [-77.40154368490332, 34.667261769200216], [-77.40163062825451, 34.66728322244073], [-77.40164381180023, 34.667206541295094], [-77.40289401406511, 34.66635747906985], [-77.40446283895696, 34.665956870845896], [-77.40448617644785, 34.665950911430755], [-77.40591733208775, 34.66531865482542], [-77.40729276772265, 34.66471098340706], [-77.40744560195687, 34.66468877133772], [-77.40748881034652, 34.664779608403705], [-77.4089700948929, 34.66587679929812], [-77.40948297569982, 34.66639561191972], [-77.40953069524056, 34.66653558349887], [-77.40955757242367, 34.666622003244335], [-77.40967457427047, 34.66697708726933], [-77.40978788150016, 34.667320961171335], [-77.40979603944908, 34.667527160787756], [-77.40980420920357, 34.667826578358195], [-77.40977108872268, 34.66822065269339], [-77.40973954735244, 34.66836306944805], [-77.40973050697878, 34.66856494144673], [-77.40972815798585, 34.66868490785779], [-77.40985349719661, 34.66896207628797], [-77.40986322136362, 34.669074898037884], [-77.40996874962164, 34.66914347702112], [-77.41013203786105, 34.669221867233574], [-77.41054109801642, 34.669379593777435], [-77.41104865667829, 34.66947298368807], [-77.41114983588464, 34.66949003456092], [-77.4111960224645, 34.66946625467556], [-77.41124725272749, 34.66944988856583], [-77.41160115262315, 34.669380897800394], [-77.41184141378946, 34.669314352911435], [-77.41199224618349, 34.669272576859456], [-77.41206660527885, 34.669177532839456], [-77.41222135250419, 34.66898368218547], [-77.41224159347126, 34.668959217616916], [-77.41224751609184, 34.66894205694423], [-77.41237943008475, 34.66872789927446], [-77.4124348123523, 34.668500334784135], [-77.41276550479914, 34.668303902810266], [-77.41277758814088, 34.66829379830621], [-77.41301180287425, 34.66794801795147], [-77.41332763816713, 34.667941521205975], [-77.41422724399999, 34.667712589876544], [-77.41467476623015, 34.66767605747914], [-77.41669083689571, 34.66801137042775], [-77.41668494151126, 34.66807559388085], [-77.41699813152216, 34.6696685534178], [-77.41644055540628, 34.67056456557542], [-77.41555042140314, 34.67199487886392], [-77.4155177469709, 34.67204738234331], [-77.41550668213657, 34.67205876030929], [-77.41547655363644, 34.672088919849465], [-77.41432100335754, 34.67308212622757], [-77.41295726999428, 34.67314010636984], [-77.41264422264415, 34.67318059220556], [-77.41254517347215, 34.67316962950204], [-77.4123508338985, 34.67319081965425], [-77.41245938669928, 34.67334784354834], [-77.41255553334885, 34.673486918283615], [-77.41337063937334, 34.67466593268969], [-77.4132723490676, 34.674794043028854], [-77.41266163662164, 34.675536041650666], [-77.41255118051366, 34.67617193502001], [-77.41178782753775, 34.676138435555664], [-77.41165873100387, 34.676208320217654], [-77.41115313487023, 34.676117467587076], [-77.41114298563355, 34.676122823616055], [-77.41114745043893, 34.676137099440524], [-77.41156695772787, 34.676398273158], [-77.41168455840524, 34.67649509673639], [-77.41237566273173, 34.67695356184534], [-77.4127700892895, 34.677172052853244], [-77.41338781841452, 34.67802661673837], [-77.41354095420893, 34.67825277739799], [-77.41372141832939, 34.67831258873364], [-77.41433927429526, 34.6794777711936], [-77.41448002791716, 34.67964638008565], [-77.41441142467455, 34.680355817583894], [-77.41522572928947, 34.68090616079152], [-77.41542258101947, 34.68103853447684], [-77.4154834948841, 34.68107949573605], [-77.4155989997396, 34.68115716442888], [-77.4170610888217, 34.682140311388245], [-77.41756428232375, 34.68274584520047], [-77.41836995886413, 34.68337961827547], [-77.41883219270633, 34.68440435483318], [-77.41809470521665, 34.68523875478709], [-77.4174790155991, 34.686167340565056], [-77.41653666765298, 34.686295477864306], [-77.41518988759451, 34.68647258503446], [-77.41395726000518, 34.68635096942454], [-77.41303710244408, 34.68594407429375], [-77.41289319582683, 34.68679932794077], [-77.41246817152674, 34.687067268094694], [-77.41210449211809, 34.68741117945202], [-77.41174810704501, 34.68734083791136], [-77.41125432574242, 34.68724102593869], [-77.41113712607537, 34.68723769333578], [-77.41109857424073, 34.68726217155854], [-77.41108139447616, 34.68728361094277], [-77.41092873100551, 34.68735844184419], [-77.4109198118045, 34.68738057193761], [-77.41087287480302, 34.68749020673322], [-77.41088316292883, 34.6875614351075], [-77.41090494770742, 34.68760994574185], [-77.41090781882608, 34.68769830415816], [-77.41092220065272, 34.687787024182406], [-77.4109316024823, 34.68782199968936], [-77.4109457758334, 34.68789846932984], [-77.41107155229605, 34.688209965369715], [-77.41103249138382, 34.68838473107737], [-77.41106203600744, 34.68860350485819], [-77.41109195635353, 34.68864780061357], [-77.41124113955951, 34.6887372944977], [-77.41132038747034, 34.68881787669456], [-77.41140116582898, 34.68879328706291], [-77.41155036553359, 34.688749234354], [-77.41183624518642, 34.688665961067294], [-77.41190170321575, 34.688575741358044], [-77.41202067272825, 34.68861266366384], [-77.41212279486899, 34.688664124982566], [-77.41260756219376, 34.688799040034894], [-77.41278739982818, 34.688998756721915], [-77.41278254353952, 34.68928159919487], [-77.41261051148857, 34.68973500250465], [-77.41241325096189, 34.68998607076359], [-77.41250266702787, 34.69029105359911], [-77.41238228211238, 34.69085795158177], [-77.41229904476833, 34.6910643373962], [-77.41190818521032, 34.69121422152284], [-77.41172227863795, 34.69127475851218], [-77.41157067590028, 34.6912731676376], [-77.41145872431568, 34.69132944033015], [-77.4113274340031, 34.69137711440149], [-77.41123166771743, 34.69149077596395], [-77.41120771749274, 34.691521174517845], [-77.41130437934886, 34.69163946606687], [-77.41135916688518, 34.691660764365864], [-77.41144395685387, 34.69171075007889], [-77.41161589339053, 34.691848885064374], [-77.41173905397417, 34.691798268604096], [-77.41185729410638, 34.69202800436342], [-77.41214115883082, 34.69222725636694], [-77.41207154085838, 34.69266207596129], [-77.41207312087444, 34.69270198763912], [-77.41206740893973, 34.692877505423795], [-77.41233824248908, 34.69303774186912], [-77.412377350534, 34.69332817851039], [-77.41212218064626, 34.69342500241116], [-77.41209767913722, 34.693789444219675], [-77.41174750498666, 34.693982187282494], [-77.41162617438314, 34.69411004877752], [-77.4115322680298, 34.69415073862435], [-77.41127905449395, 34.69429047722534], [-77.41120565620295, 34.69431602428389], [-77.4111029158267, 34.69437647484135], [-77.41106687484798, 34.694460773493816], [-77.41109093255577, 34.69455544291378], [-77.4110424355329, 34.694651624487534], [-77.41102393564088, 34.69492503149689], [-77.41096915313395, 34.69507195026614], [-77.41102575926608, 34.69536787091487], [-77.41102648716587, 34.69537031448128], [-77.41102692671583, 34.69537172061483], [-77.41102696818427, 34.69537445255124], [-77.41109907514505, 34.69567651951797], [-77.41112253898817, 34.69577659618661], [-77.4111690507082, 34.695979617746765], [-77.41121979464134, 34.69618237622312], [-77.41132824595121, 34.69631581104383], [-77.41142753456215, 34.69654207129132], [-77.41143648402232, 34.69663323580998], [-77.41154727263724, 34.69688670866544], [-77.41157374884362, 34.69692743049569], [-77.41160288823086, 34.69697100944006], [-77.41161106847068, 34.697077800436254], [-77.41167900235891, 34.69732987541447], [-77.41176880454621, 34.69758816706555], [-77.4118061372078, 34.697723193519586], [-77.41183386576958, 34.69789048471864], [-77.41187294438595, 34.69797528451564], [-77.41194720357066, 34.69811070108826], [-77.4120585838513, 34.698248656713545], [-77.41209840733701, 34.698303331042716], [-77.41223462334254, 34.69843716169677], [-77.41234334255176, 34.698564143825465], [-77.4126580533038, 34.69901748345964], [-77.4124650997426, 34.69922251651311], [-77.41246358804482, 34.69923435600644], [-77.41245875368857, 34.699272219096606], [-77.41260413483168, 34.699449875891915], [-77.41269328832277, 34.69956895990554], [-77.4127199335413, 34.699598240283805], [-77.41294002315655, 34.69992832642393], [-77.41296138453671, 34.69996226074803], [-77.41318418055396, 34.70008709994168], [-77.41339582459008, 34.700184552517285], [-77.41355850782924, 34.70026241270282], [-77.4137783487862, 34.70024862443163], [-77.41405167666716, 34.700357330179], [-77.41476772438287, 34.7007435537759], [-77.41490774026475, 34.70077524810698], [-77.41498419346551, 34.70086105431473], [-77.41519170429507, 34.70090132884543], [-77.41526631972528, 34.700966546160046], [-77.41535804027797, 34.70096074329259], [-77.41551093724608, 34.70090561150166], [-77.41560473197578, 34.70088693185782], [-77.41566597392837, 34.700716200031515], [-77.41587326482266, 34.70076106490597], [-77.41603502510698, 34.700757895590186], [-77.41611974590835, 34.70071011973448], [-77.41620615158782, 34.70071818917208], [-77.41624691939474, 34.70073105001862], [-77.41625201523911, 34.70069402206397], [-77.41624652446447, 34.70057875798755], [-77.41623439899011, 34.700562714656336], [-77.41622531697506, 34.700544908436], [-77.41612518886852, 34.7003850928585], [-77.41580790718369, 34.70020023032588], [-77.41571923784772, 34.70018624582936], [-77.41566681548328, 34.70006999713243], [-77.41526367482982, 34.69985175929831], [-77.41519834094332, 34.69977168196186], [-77.41499197316699, 34.69951874282288], [-77.4147553566759, 34.69919206180286], [-77.41474312994946, 34.699176191290505], [-77.4147351890171, 34.699157717507525], [-77.41446082790614, 34.69852992697773], [-77.41441082495446, 34.69842210083018], [-77.41436353659142, 34.698227792553276], [-77.41422931131426, 34.69788983286138], [-77.41419030762245, 34.69762138097375], [-77.41419788052625, 34.697599285416885], [-77.41409802167148, 34.6974042542503], [-77.41402365749303, 34.69725878472598], [-77.41401678903465, 34.69724740996596], [-77.41401053130454, 34.69723350267001], [-77.41387641370022, 34.696927721358826], [-77.41385809783333, 34.69686725400289], [-77.41374679256896, 34.69660282206593], [-77.413828149187, 34.69621486222044], [-77.41411447685559, 34.69617234415475], [-77.41417549700265, 34.69603479723342], [-77.41430561387449, 34.69595965764215], [-77.41429480498041, 34.69579237500609], [-77.41433248478674, 34.69568950507063], [-77.41439400707658, 34.69564404832187], [-77.4145085037335, 34.69525687526716], [-77.41452662961179, 34.69519831849019], [-77.41444155692498, 34.69497373378175], [-77.41440237907122, 34.69485479223136], [-77.41424795159219, 34.69465713149715], [-77.41414974462435, 34.69453941128999], [-77.41412828749603, 34.694499857997286], [-77.41406582045877, 34.6941024831693], [-77.41388722811068, 34.69385641667218], [-77.41407761759324, 34.69363050264796], [-77.41436813056566, 34.69378521483468], [-77.41458251142146, 34.69388693894186], [-77.41492687058953, 34.69406893984956], [-77.41500492684919, 34.69415707621294], [-77.41523138349055, 34.69432665559951], [-77.41534282238632, 34.694462471450876], [-77.41544751037617, 34.69448426047635], [-77.41549285109583, 34.6944486952887], [-77.41553866190816, 34.69443415086614], [-77.41578013422546, 34.69428003679615], [-77.41582115163781, 34.694253422434535], [-77.41582479376532, 34.69424345214728], [-77.41597622883468, 34.694028121173794], [-77.41609999812744, 34.69394542925576], [-77.41632821614094, 34.69365600740679], [-77.41636091767433, 34.69360359421552], [-77.41636135757973, 34.69359120436216], [-77.4163547452053, 34.69356438051725], [-77.41611153565302, 34.69324906804032], [-77.41622580466355, 34.69265505883247], [-77.41656219003451, 34.69284789339653], [-77.41675804114742, 34.69277736045994], [-77.41713871840099, 34.69275748669059], [-77.41719435037915, 34.69274279371841], [-77.41722961454948, 34.69275621574887], [-77.4172742337648, 34.69276400098397], [-77.41774069912348, 34.692888163145675], [-77.41784905635065, 34.69283026436176], [-77.41799834287238, 34.6929082614116], [-77.41824555117533, 34.692965672729024], [-77.4184628877926, 34.69292369258096], [-77.41869403591602, 34.69306437340606], [-77.41901217151793, 34.69324008664782], [-77.41910771588657, 34.69333814404109], [-77.41927970222713, 34.69342285238557], [-77.41932148097334, 34.6934721397869], [-77.41941756269856, 34.69350009061884], [-77.41948832052758, 34.693501773389656], [-77.41957290934485, 34.6934788304298], [-77.41958510172108, 34.6934748100405], [-77.41958689021553, 34.69347409980383], [-77.41966711204236, 34.69342012019895], [-77.41975883357419, 34.69339447121462], [-77.41981933812679, 34.69329502974582], [-77.41994389021261, 34.69334234168253], [-77.42020258457131, 34.69327014535619], [-77.42025292137083, 34.69325599359237], [-77.4202892590668, 34.69325622592325], [-77.42042635193437, 34.693208643830964], [-77.42044835188851, 34.693201547891256], [-77.42046948186345, 34.69318712551906], [-77.42058305552533, 34.69312368407209], [-77.42059216495367, 34.69306270342006], [-77.42062374201862, 34.692928804637575], [-77.42059429476853, 34.69284807057144], [-77.42056063658339, 34.69273195101155], [-77.4205368107089, 34.692401063549084], [-77.42049407128931, 34.69231335821759], [-77.42039330065288, 34.69221867495739], [-77.42041388702702, 34.69202321695386], [-77.42040102775357, 34.69166228667571], [-77.420991971175, 34.69147248638119], [-77.42141207504962, 34.69145685271471], [-77.42145425007406, 34.69144561852731], [-77.42189171423993, 34.691447703544085], [-77.42209355002602, 34.6914510148618], [-77.42233220556217, 34.69141997434879], [-77.4224214901144, 34.69142507151662], [-77.4225116860676, 34.69133945626063], [-77.42260040576936, 34.69136046408781], [-77.42264732427385, 34.691329831562264], [-77.42271416728931, 34.691296545398615], [-77.42276846773979, 34.69125277920095], [-77.42276169059433, 34.69123006279486], [-77.42281476418174, 34.691173404320644], [-77.42283710815762, 34.691123583345565], [-77.42284187027009, 34.69111833647433], [-77.4228425821733, 34.69107729584728], [-77.42256620065581, 34.69100239967999], [-77.42252727541069, 34.69099096871218], [-77.42225655699622, 34.69088785821461], [-77.42208152895978, 34.69075826304999], [-77.42185518120947, 34.690060506437746], [-77.4217807497381, 34.689991028104366], [-77.4217911062214, 34.68991217043256], [-77.42184234498997, 34.68987105319589], [-77.42193594483297, 34.689781484826355], [-77.42248672508651, 34.68959640254775], [-77.42259821041108, 34.689611043950805], [-77.42267174635089, 34.689619248526505], [-77.42324462262995, 34.68968826211315], [-77.42353208732226, 34.689642093877026], [-77.42389693009211, 34.689648659584854], [-77.42397651037318, 34.6896208049791], [-77.42401362510758, 34.68957139302169], [-77.4242997050129, 34.689401303963834], [-77.42431134654407, 34.689381452759996], [-77.424450521257, 34.68916512473544], [-77.4244961395242, 34.688974550000125], [-77.4246229966075, 34.68880503061099], [-77.4246283688974, 34.68866824970124], [-77.42467671438303, 34.68852186717996], [-77.42489823166719, 34.68840318523128], [-77.42505835749934, 34.68825956609551], [-77.42542723674796, 34.68825314187447], [-77.42557750201497, 34.68827036748511], [-77.42569222802811, 34.688201731389825], [-77.42580762450068, 34.68812716239878], [-77.4258715592366, 34.68806081779741], [-77.42591111966442, 34.68799875228405], [-77.4260164630857, 34.68777715967377], [-77.42601105722694, 34.68771186565405], [-77.4259793116946, 34.68746352622744], [-77.42620039635668, 34.68727352926851], [-77.42621596357826, 34.68724752846935], [-77.42602286791607, 34.68698327114003], [-77.42596804575388, 34.68692085731758], [-77.42594276666149, 34.68689166780389], [-77.42598203687231, 34.68687251068762], [-77.4262326122277, 34.68657829847384], [-77.42631014758584, 34.68646108728809], [-77.42653807472158, 34.6863298298657], [-77.426647020979, 34.686174884238994], [-77.42666500401214, 34.68602612686201], [-77.42644409013471, 34.68581319442845], [-77.42629316908366, 34.68579737407428], [-77.42618692430042, 34.68575569606768], [-77.42600749941077, 34.68567734233501], [-77.42588307106372, 34.685600942854855], [-77.4257492045265, 34.68546271777462], [-77.4255015003776, 34.68506009308774], [-77.42548637716246, 34.68487373871175], [-77.42554462704803, 34.68470551044325], [-77.42573258568747, 34.68458184324152], [-77.42588205279796, 34.684509311679506], [-77.42593839192257, 34.68437429091825], [-77.42599430991454, 34.68431890482033], [-77.42603112227718, 34.684200028230734], [-77.42604477394048, 34.684131962171456], [-77.42606769927488, 34.68406494688573], [-77.42626156209289, 34.68369221573128], [-77.42627768786548, 34.68366038608024], [-77.42627988871655, 34.68365512286438], [-77.42628719206357, 34.683646785888264], [-77.42642459067446, 34.68342619779063], [-77.4264766918147, 34.683237866914574], [-77.42653512345537, 34.68318532117179], [-77.42651057720495, 34.68310718213272], [-77.42648859386581, 34.68290766207009], [-77.42646791216566, 34.682678610390155], [-77.42643314011028, 34.68259057340688], [-77.42647155454092, 34.68248156373783], [-77.4266167219833, 34.68246488407335], [-77.42681682320489, 34.682298205475945], [-77.42713323762705, 34.68227637574823], [-77.4272110182287, 34.68219484497975], [-77.42733919390987, 34.68218258173089], [-77.42737815452034, 34.6822987263537], [-77.427448771039, 34.682386740667084], [-77.42764939149164, 34.68263190503805], [-77.4277983335782, 34.682810324509305], [-77.4280145662205, 34.68276079092769], [-77.42826544338834, 34.68267238486427], [-77.4283930486031, 34.68263173635516], [-77.4285016712756, 34.68259413885221], [-77.42872418322327, 34.682425269370285], [-77.428857789739, 34.68232049265246], [-77.42905112140896, 34.6822119432635], [-77.42927579083283, 34.682133301704695], [-77.42963877334654, 34.68203457587745], [-77.42981975103149, 34.681972914272706], [-77.4299736418096, 34.68193603749377], [-77.43005585705832, 34.6819009172942], [-77.43016636467826, 34.68179176145743], [-77.43026620218339, 34.68169495117437], [-77.43039780711426, 34.681422310442095], [-77.43051604683208, 34.68122326719762], [-77.43064091828518, 34.680936948448256], [-77.43075926887147, 34.68074926761675], [-77.4308487404403, 34.68066388012916], [-77.43107231995324, 34.68035331543929], [-77.43109554755812, 34.68031956061748], [-77.43110315965286, 34.68031047735687], [-77.43113822109021, 34.680282992181375], [-77.431403323198, 34.68007492245114], [-77.431686264843, 34.67995535031679], [-77.43176282657687, 34.67991485793884], [-77.4318682233273, 34.67981704175992], [-77.43209839691927, 34.67971566501804], [-77.43224852757845, 34.679592933210145], [-77.43235221225618, 34.67932987700547], [-77.43204588276421, 34.67920293159831], [-77.43195374852212, 34.67904981271907], [-77.43179466244442, 34.67896388805066], [-77.43154837944397, 34.678816421349666], [-77.43152146745642, 34.67880080675828], [-77.43150625081478, 34.67879021483155], [-77.43147111172861, 34.67876197443052], [-77.43119712738073, 34.67847285792517], [-77.43116964243939, 34.67819719561293], [-77.4311795734553, 34.678100943658535], [-77.43175088030311, 34.67800780441663], [-77.43200384370915, 34.67806543308501], [-77.4320515759578, 34.67807581573703], [-77.43210746522757, 34.67809287261834], [-77.43233974636593, 34.678187123589254], [-77.43273386202665, 34.67827779073804], [-77.43286981474164, 34.678569702923625], [-77.43310179564467, 34.67836488010196], [-77.43341512702831, 34.678439804191655], [-77.4335420628149, 34.67846079177461], [-77.43362682078646, 34.67847543864035], [-77.434076746284, 34.6785551404768], [-77.4341362173438, 34.678560442302604], [-77.43415522329491, 34.67855613823086], [-77.43417667828737, 34.678568299998624], [-77.4341705804015, 34.67858795670856], [-77.43428943453625, 34.6788109288872], [-77.43452582786097, 34.67927125039965], [-77.43449731439246, 34.67932724067786], [-77.43457286402588, 34.67932741702286], [-77.43460490592275, 34.67932667461098], [-77.43511355623855, 34.679673316780566], [-77.43532083343962, 34.679749299646154], [-77.43540283095518, 34.67978083251482], [-77.43548802587875, 34.679806466935915], [-77.43569639360416, 34.67987352463281], [-77.43590824682107, 34.67996181954084], [-77.43604482810224, 34.6800204277866], [-77.4362509391382, 34.6801715522233], [-77.43643277458601, 34.680304876327014], [-77.43651510594813, 34.680365882329376], [-77.43665849998118, 34.680440529722155], [-77.43680632508305, 34.68046668512911], [-77.43712645325475, 34.68045774761204], [-77.43745898527683, 34.68042550637896], [-77.43757112167346, 34.68043690304271], [-77.43786927053323, 34.680597996614864], [-77.43800897002093, 34.68073932784183], [-77.43833448043624, 34.68116216462553], [-77.43840209804945, 34.68126836070656], [-77.43846524785955, 34.68137716308441], [-77.43870551659612, 34.68154350687621], [-77.43902090420002, 34.681671403822534], [-77.43955036802674, 34.68158731715624], [-77.43963823535911, 34.68157269787781], [-77.43969493045384, 34.68155636054732], [-77.43982856460771, 34.68156565332058], [-77.43980815631541, 34.681677454549444], [-77.43990019538965, 34.681954395590395], [-77.43990359729519, 34.68198073301039], [-77.43990925658697, 34.682015698831464], [-77.43989131837526, 34.68226557327928], [-77.43991984676583, 34.68242035310077], [-77.43993310172515, 34.682839224087786], [-77.43994607806503, 34.682855807286494], [-77.43994529694086, 34.68290624921563], [-77.43994347110986, 34.68330329981731], [-77.43991243253396, 34.68339103778115], [-77.4399352730349, 34.68355362240011], [-77.43997240982193, 34.6837376237102], [-77.44015966985347, 34.68403652276996], [-77.44019932249111, 34.684089298728935], [-77.44022751220425, 34.68414604368783], [-77.44042828846035, 34.6846894809774], [-77.44047441263322, 34.68486726687205], [-77.4405287601212, 34.68500412897478], [-77.44050780337544, 34.685237108342264], [-77.44050327418535, 34.685274737673815], [-77.44050299738245, 34.685409140919], [-77.44064894957981, 34.685687214658046], [-77.44078639225818, 34.68569244625313], [-77.4408606968707, 34.685598816003214], [-77.44098439211159, 34.685442949707536], [-77.44104470188502, 34.68536695401677], [-77.4410642319167, 34.685290641816046], [-77.4410700614245, 34.68519338315422], [-77.44105525744504, 34.68507118478875], [-77.44106267570531, 34.68491128227162], [-77.44108197704338, 34.684680197708616], [-77.44108557245013, 34.68461212200341], [-77.44110902669236, 34.684368450112714], [-77.4411387242512, 34.68414352498536], [-77.44114259505754, 34.68410066832632], [-77.44115525826483, 34.68405229221114], [-77.44121271595338, 34.6838456656665], [-77.44126916542533, 34.68364265987698], [-77.4412825846145, 34.68331105683541], [-77.44129124178076, 34.683187036496946], [-77.441303170992, 34.682798692223955], [-77.44133311595112, 34.682769687325965], [-77.44171029659168, 34.68256567595036], [-77.44194269579104, 34.68242377971201], [-77.44195700787705, 34.682372020114315], [-77.44202396473158, 34.682365464355705], [-77.44206034215125, 34.68241953312015], [-77.44206618398363, 34.68246695458398], [-77.44251286016072, 34.683123424988594], [-77.4428266905946, 34.68379345253222], [-77.44286076855808, 34.68386282692774], [-77.44286504464168, 34.68386920794914], [-77.44286472135245, 34.68388969304414], [-77.44292371911037, 34.68444386754568], [-77.44280835722978, 34.68451114347282], [-77.44275376408925, 34.68480848833805], [-77.44273047417039, 34.684935340156045], [-77.44271834070436, 34.68511167753328], [-77.44271696437698, 34.68527026251768], [-77.4427543492715, 34.68537931929418], [-77.4427876535952, 34.68546395549247], [-77.44283928949267, 34.68553241565353], [-77.4429156880123, 34.68563370705359], [-77.44297748395391, 34.6857156375837], [-77.4431435466577, 34.685806613652744], [-77.44313725158986, 34.685636584376404], [-77.44322966513496, 34.6855026226136], [-77.44331138907886, 34.68541794777607], [-77.44333340363252, 34.685369257496774], [-77.44341720158025, 34.68530297648974], [-77.44350291858913, 34.68520539132383], [-77.44363828015352, 34.68511988400152], [-77.44382455823559, 34.68500221202126], [-77.4439682138384, 34.684911464684355], [-77.44407260187933, 34.68484552218104], [-77.44413317989442, 34.684807254753586], [-77.44421565895843, 34.68475765604158], [-77.4443010200178, 34.68470774191347], [-77.44460245327402, 34.684527983617855], [-77.44463639963551, 34.68450822684455], [-77.4446624693426, 34.684492708587165], [-77.44489824159936, 34.6841885295691], [-77.44517632674828, 34.68411332150644], [-77.44526922432956, 34.684047205596414], [-77.44538064808735, 34.684052682228135], [-77.44558495888839, 34.683976661972665], [-77.44563452590414, 34.68389659697463], [-77.44578998612064, 34.68376882371794], [-77.44613729083996, 34.68365188631763], [-77.44633912616827, 34.68355288694345], [-77.44648512177164, 34.68345280754179], [-77.44690919245525, 34.683198283096765], [-77.44700996191423, 34.68315400521308], [-77.44706396410903, 34.68309613626332], [-77.44764652731196, 34.68286421034784], [-77.44772111427412, 34.682821016927555], [-77.44781963611226, 34.6828012787267], [-77.448331530757, 34.682711129560815], [-77.44860054504174, 34.68276303109032], [-77.44938075296518, 34.682934321460465], [-77.44953512078428, 34.68298060692776], [-77.4498108184747, 34.683245685168416], [-77.45003024140945, 34.683484369477], [-77.45009991812069, 34.68352686474202], [-77.45053477613725, 34.68368116469932], [-77.45060880562771, 34.68369948919503], [-77.45099185551899, 34.68368053041672], [-77.45127969482314, 34.683595220711545], [-77.45171547400932, 34.68360405610963], [-77.4518448789721, 34.68357936403102], [-77.45193606839372, 34.683541159479695], [-77.45199788625918, 34.68362715031961], [-77.45250491884505, 34.68378989358554], [-77.45259779292988, 34.68382305908408], [-77.45292822651322, 34.68385454312385], [-77.45312849589197, 34.68384929513977], [-77.45337559304168, 34.68383803024185], [-77.4534578664304, 34.68381816606987], [-77.45367095952146, 34.68372853062539], [-77.45372316507914, 34.68365845653535], [-77.45393293314756, 34.68328294454622], [-77.45394413494954, 34.683265004167474], [-77.45394033316954, 34.68325734134565], [-77.45392796717331, 34.68324560553529], [-77.45362891690382, 34.68294602025684], [-77.45349088874154, 34.68259548958276], [-77.4534756783418, 34.68254226755056], [-77.45346625144319, 34.6824911732386], [-77.45342052591883, 34.68214018405334], [-77.45342882545276, 34.68196688586881], [-77.45329532653284, 34.68146438236088], [-77.45329465351865, 34.6813609841982], [-77.45328477979041, 34.68130401106668], [-77.45296580722385, 34.68068703576986], [-77.45294301625073, 34.68057551660172], [-77.45290004897507, 34.68047512991864], [-77.45264021756122, 34.68011274292459], [-77.45250930065012, 34.67996060650848], [-77.45216347143698, 34.67954624456337], [-77.45202853980388, 34.67912067572204], [-77.4522889587843, 34.6788313117692], [-77.45237745816887, 34.67862326620685], [-77.45244097599344, 34.67850303070284], [-77.45261702673758, 34.678087631495316], [-77.45278667191862, 34.67766597639354], [-77.45283839043626, 34.67754563701065], [-77.45291301766736, 34.67726896679598], [-77.45296922451405, 34.67697199706655], [-77.4529746224633, 34.6768738811333], [-77.45296706399569, 34.67673547304841], [-77.45295476662972, 34.67651027823445], [-77.45294570902772, 34.676344404200705], [-77.45293491028207, 34.67614667445172], [-77.45291122917345, 34.67571297709341], [-77.4543342124385, 34.67500929807812], [-77.45438368442375, 34.67495638504875], [-77.45441852847945, 34.67498526465888], [-77.45445159907955, 34.675012673794654], [-77.45508156470845, 34.675534796882744], [-77.45529893320855, 34.675714953417334], [-77.45573833327032, 34.676086111568814], [-77.45614496762323, 34.676510059060064], [-77.4561596566622, 34.67684842656962], [-77.45619937322097, 34.677431758798534], [-77.4561518185684, 34.67756763045067], [-77.45601324956665, 34.67803598258358], [-77.45595270800538, 34.67824060229273], [-77.45584717318752, 34.67859730053607], [-77.45577106698315, 34.678795923322745], [-77.45574233101587, 34.679039101968584], [-77.45571631235364, 34.6791709271041], [-77.45567797864933, 34.67924207827414], [-77.45574286336657, 34.6792876274676], [-77.45584789327977, 34.679378277824355], [-77.45597256322445, 34.67946418479041], [-77.45619812336881, 34.67964771144059], [-77.4564359717427, 34.67981240191694], [-77.45685244938048, 34.680199730764954], [-77.45686163130394, 34.680206754824724], [-77.45687901561408, 34.680220053422424], [-77.45734304819442, 34.68053297111929], [-77.45822299541302, 34.68128365375579], [-77.45822524845799, 34.68128547716735], [-77.45870331907004, 34.682528787348154], [-77.45880747292755, 34.68272868794926], [-77.45811807689066, 34.684642675684806], [-77.45807994979718, 34.684797154828395], [-77.45759155758752, 34.68677571086538], [-77.45695134926962, 34.68870147179672], [-77.45691436961263, 34.68887234987093], [-77.45432418703562, 34.69010584947946], [-77.45417824155477, 34.69038184803045], [-77.45379835102062, 34.690399275457025], [-77.45311877000074, 34.69030195818861], [-77.4511800217216, 34.6905900152857], [-77.45061143630245, 34.6905342312774], [-77.44992222882829, 34.690507655539854], [-77.44971500096905, 34.690564584490005], [-77.44941244107582, 34.69062525675001], [-77.44930701746338, 34.69064549946114], [-77.44923727128842, 34.690660383443905], [-77.44913344046849, 34.69080724827663], [-77.44915872312087, 34.69093207554346], [-77.44919698733125, 34.69104668193112], [-77.44937303393496, 34.69112714330823], [-77.44942717949917, 34.69111175894512], [-77.44958969398158, 34.69110738351205], [-77.44978166968488, 34.69099385461373], [-77.44995444118855, 34.69095581903649], [-77.45068745165585, 34.69131719972229], [-77.4509010579928, 34.69155501207604], [-77.45161138214011, 34.69251181345305], [-77.45169262924878, 34.69268319725928], [-77.45177722576301, 34.692957578956744], [-77.45245669748505, 34.69392524721334], [-77.4523949544423, 34.69417565821405], [-77.4524171021754, 34.6944704160862], [-77.45256665148972, 34.69466031471208], [-77.45265905437728, 34.69495824449727], [-77.45271383325903, 34.69513311899083], [-77.45274247729438, 34.69516049743829], [-77.45301477812058, 34.69525614196604], [-77.45303331307888, 34.69526282783702], [-77.45316095332139, 34.6952893699658], [-77.45348789334541, 34.69523384252266], [-77.4536878992552, 34.69521524702509], [-77.45391608051898, 34.69532622569146], [-77.45429470059034, 34.69533297710419], [-77.45440918428379, 34.69524399460456], [-77.45502494916177, 34.69502362203368], [-77.45515095424727, 34.69496086556371], [-77.45530570426446, 34.694920848986506], [-77.45624098636665, 34.69375175983528], [-77.45802357797828, 34.693517296464776], [-77.4600289373301, 34.69455926264056], [-77.46024904779556, 34.69468618009318], [-77.46076989918805, 34.69517058136972], [-77.46232331056484, 34.696378455778984], [-77.46285006005675, 34.69695263263605], [-77.46339820212292, 34.697748313608955], [-77.4641995666781, 34.69875632903951], [-77.46483536366853, 34.69969510159417], [-77.46600181532, 34.70089372047064], [-77.46607424492976, 34.70096349980512], [-77.46611267994822, 34.701006966780575], [-77.46673345253336, 34.70114927939005], [-77.46832247341126, 34.70152689550964], [-77.46852443595058, 34.70153189590649], [-77.46887860456037, 34.70157801930224], [-77.47065756211236, 34.703021405402026], [-77.47190760118373, 34.70388450465571], [-77.47151514246232, 34.70505518059942], [-77.47159793783933, 34.70687519348985], [-77.47151545235356, 34.70762010547607], [-77.47102764954387, 34.70935655125972], [-77.46955984902581, 34.71200861639129], [-77.47158710272, 34.714023536748556], [-77.46994614798314, 34.71541905341736], [-77.47237916851927, 34.71481079182904], [-77.47274178514849, 34.71472013202435], [-77.47323141374599, 34.71459771041407], [-77.47509871271232, 34.71427151276511], [-77.47652440129856, 34.714917761842024], [-77.47735574530664, 34.7153334648265], [-77.47884290295681, 34.71527476802668], [-77.47863154783548, 34.716483092859995], [-77.47788342137605, 34.71713606709653], [-77.47752400901095, 34.718332188336674], [-77.47646776238037, 34.71840794135224], [-77.47591008442343, 34.71828580991252], [-77.47525339382598, 34.71817402850846], [-77.47480297641783, 34.71808484755347], [-77.4740322972966, 34.71796340306704], [-77.47282054471711, 34.71779031679297], [-77.47163296651212, 34.717393820383606], [-77.46966496231134, 34.71567464027087], [-77.46731700077217, 34.71700405425316], [-77.4666455337963, 34.71690812030814], [-77.46247326265998, 34.71588877116356], [-77.46183258296807, 34.71581863830246], [-77.46060115431138, 34.715749775658665], [-77.4587745907696, 34.71402047876948], [-77.45808750709766, 34.71322774801282], [-77.45784401373402, 34.711877461339455], [-77.4561971659554, 34.71312011440062], [-77.45628196290733, 34.71398159156437], [-77.45562204019558, 34.71515518123172], [-77.45572972068949, 34.71683456824291], [-77.45582386939073, 34.71746165149529], [-77.4557575165573, 34.717772058644364], [-77.45452180094992, 34.72147874579491], [-77.4538290977354, 34.72568971550631], [-77.45382047340104, 34.72570572681128], [-77.45382627620276, 34.72572127888213], [-77.45383250383077, 34.725753383635855], [-77.45406799576911, 34.726079810078645], [-77.45740815293351, 34.73112470500704], [-77.45743329038554, 34.73135861577187], [-77.45745143095098, 34.73144583201337], [-77.45842094470225, 34.73318733781528], [-77.45910563895666, 34.73649533728586], [-77.45712137923003, 34.73704470254328], [-77.45585172364468, 34.73650784222403], [-77.4548152326424, 34.73723299763423], [-77.45502461477929, 34.737721326123875], [-77.45425994388603, 34.738352205174394], [-77.45404308514783, 34.739199299675256], [-77.45358903074828, 34.74010625570172], [-77.45356509979403, 34.74015035296672], [-77.45354289041137, 34.74017119807372], [-77.45348756546613, 34.74024906562774], [-77.45329184794078, 34.74050875869335], [-77.4532447202954, 34.74059745676589], [-77.45320661063903, 34.74071229836174], [-77.45310631527198, 34.74095327998849], [-77.45293513994719, 34.74104833196342], [-77.45279301925463, 34.74133134607885], [-77.45272000830673, 34.7415321931852], [-77.45279203022768, 34.74177819425287], [-77.45298352861221, 34.74199196850898], [-77.45304005497067, 34.742121116660236], [-77.45337123617081, 34.742318615069976], [-77.45381045707003, 34.74269246107792], [-77.45399329267269, 34.74293466073904], [-77.45407682182702, 34.74347416750089], [-77.4542389326688, 34.7437396150127], [-77.45435643260286, 34.74389617872534], [-77.45456439183452, 34.74416355464354], [-77.4548366671975, 34.74445281027724], [-77.45493847990898, 34.74454289047118], [-77.45522686866681, 34.74477994494187], [-77.45535910690039, 34.74486351295173], [-77.45555678038761, 34.744953914610186], [-77.45591894753956, 34.74514489283506], [-77.45614113519962, 34.745291246222315], [-77.45645403901975, 34.74551187158369], [-77.456537333332, 34.74557232913025], [-77.45668172641388, 34.74571060101687], [-77.45685907862845, 34.7458844851992], [-77.45700513162717, 34.74582352743947], [-77.45736974051574, 34.74567134914734], [-77.45773434801508, 34.745519169815196], [-77.45846355884603, 34.74521480803091], [-77.45919276411999, 34.74491044208678], [-77.45992196383695, 34.744606071982936], [-77.46138034659963, 34.74399731929676], [-77.46429704543934, 34.74277976401462], [-77.4672136553632, 34.741562142194134]], [[-77.35907680736986, 34.6887943950382], [-77.36031341240061, 34.68906968230726], [-77.36082692567632, 34.68918399415629], [-77.36259863081621, 34.68992937991317], [-77.36319295463895, 34.6882289309178], [-77.36334192095184, 34.6880353965776], [-77.36328956316049, 34.68677874778676], [-77.36284540089629, 34.686353693840935], [-77.36283934929675, 34.686336865720406], [-77.36282091413017, 34.68633049413132], [-77.36226527313995, 34.68629027214513], [-77.36183548631104, 34.686321168348904], [-77.36165509294642, 34.686330403783664], [-77.36140634056162, 34.686319763631325], [-77.36044243458555, 34.68638411324355], [-77.35975874659924, 34.68634286910116], [-77.35931393982527, 34.6861478235803], [-77.35872052058812, 34.68649189150558], [-77.35861370648551, 34.68649820258656], [-77.35842607629506, 34.686580244712026], [-77.35821362538941, 34.68668078991285], [-77.35811368340796, 34.68682069992748], [-77.35796983897865, 34.68699690261995], [-77.35795283819782, 34.68708785011815], [-77.35791320160982, 34.68736922642947], [-77.3579799113873, 34.68748290499755], [-77.35809412015945, 34.687624183761315], [-77.35831053676866, 34.68792487759819], [-77.35847291415857, 34.68812105000731], [-77.35857321055089, 34.68869989098343], [-77.35875653122957, 34.68869117571832]], [[-77.43488306259681, 34.70262215160015], [-77.43395553094011, 34.701873051952646], [-77.43416078863628, 34.70094670253675], [-77.43397657293075, 34.700078693724535], [-77.43392796017332, 34.69974720231084], [-77.43364650600114, 34.69932365823428], [-77.4333076936573, 34.6992063835976], [-77.43313016087956, 34.69934953861025], [-77.43297733176196, 34.6994148363958], [-77.4325719464745, 34.6995341863736], [-77.43240722201011, 34.69966351417713], [-77.43211681018234, 34.699673021869785], [-77.4318557641067, 34.69979434683448], [-77.431579915202, 34.69980690797337], [-77.43146123749281, 34.699789237054944], [-77.4312057057765, 34.69982597050745], [-77.43100450445019, 34.6998431671195], [-77.43084917432245, 34.70010813747771], [-77.43053121093794, 34.699942035002785], [-77.43017681443112, 34.69987884740641], [-77.42991945634783, 34.6998412784529], [-77.4296936210293, 34.699714997440864], [-77.42936078585242, 34.69982748818005], [-77.42956135221816, 34.70013567810853], [-77.42982397067284, 34.700171246447916], [-77.42995612931246, 34.70041732526389], [-77.430220980206, 34.70057699050349], [-77.43035602378944, 34.700547439773985], [-77.43061847663301, 34.70058731463796], [-77.43094851235026, 34.700714793443176], [-77.43119516080739, 34.70102794976604], [-77.43134376516397, 34.701177424944454], [-77.43104514074695, 34.70192407543648], [-77.43084461979174, 34.702023505600145], [-77.4305488766841, 34.702095841671934], [-77.43029890029267, 34.70220000328582], [-77.42975372005318, 34.702628794050334], [-77.42967480235474, 34.702675579006375], [-77.42965704000137, 34.702726396555725], [-77.42962385125742, 34.70278790821224], [-77.42950949077087, 34.702954337696404], [-77.42959227510042, 34.70318667702737], [-77.4296612380695, 34.7032186926729], [-77.42969778792968, 34.70329970712852], [-77.4298736760627, 34.70357643207407], [-77.42986145725045, 34.70363646508139], [-77.43002650762269, 34.70390096449921], [-77.4300552628304, 34.703947045522], [-77.43010642019074, 34.70400164553425], [-77.43027435734206, 34.704151914947566], [-77.4304922222405, 34.70421109661879], [-77.43056849046843, 34.704242931027075], [-77.4306709282738, 34.70430370964698], [-77.43158720730112, 34.704519374583356], [-77.43170599029155, 34.704499798184244], [-77.43177687698622, 34.70449692754767], [-77.43185913428357, 34.70453347380858], [-77.43197813487261, 34.70465605077185], [-77.43275654509748, 34.70505176610609], [-77.43261144633702, 34.705979625064224], [-77.43261427103282, 34.70599656458397], [-77.43259944075876, 34.70601010937581], [-77.4326106144973, 34.706045703465264], [-77.43272845745122, 34.70684905365154], [-77.43285962726014, 34.707200448459155], [-77.43298455905818, 34.7076349657241], [-77.43338118869345, 34.70781287218161], [-77.43391704951736, 34.7081386287875], [-77.43392680654698, 34.708142398406906], [-77.43394055850793, 34.70815173689292], [-77.43428696390072, 34.70843065691907], [-77.43442407550884, 34.7086390318249], [-77.43486935553456, 34.70863401607633], [-77.43519375432042, 34.708704168154], [-77.43576992951151, 34.70841811638896], [-77.43589954757056, 34.708362048207434], [-77.43600665819949, 34.70830058670871], [-77.43615713500046, 34.708096599098546], [-77.43646315353598, 34.706223982983325], [-77.43644182255413, 34.70609579081234], [-77.43630231946872, 34.70446482054162], [-77.43564095362264, 34.70370036941556]], [[-77.39624027610157, 34.58772024232564], [-77.39656537144496, 34.587705283301105], [-77.39663433120317, 34.58771462812854], [-77.39668160411016, 34.58771188322443], [-77.39697832859923, 34.587666074821534], [-77.3970283895732, 34.58764903484547], [-77.3972414707107, 34.587487051565006], [-77.3974224583967, 34.58736910860535], [-77.39750789820569, 34.587311095803514], [-77.39780309668919, 34.587190917138635], [-77.39781651989509, 34.587186856082816], [-77.39783928973155, 34.58719576685164], [-77.39807572049692, 34.58728241469266], [-77.39821056565265, 34.58733183279824], [-77.39845284212711, 34.58724624959544], [-77.39860461570342, 34.587397392385036], [-77.39886893725676, 34.587307472947316], [-77.3989986740487, 34.58723063748463], [-77.39938236155491, 34.586937429714354], [-77.39939273461607, 34.58692678805321], [-77.39958305959796, 34.586700136076374], [-77.39959576660776, 34.58669906276532], [-77.39960580174638, 34.58672135916906], [-77.39943695398632, 34.58694072922636], [-77.3994607476967, 34.587010579879674], [-77.39970084914113, 34.58732722739657], [-77.39939271417629, 34.587644540368075], [-77.39928402281214, 34.58769483371742], [-77.39911620036575, 34.58770950913564], [-77.39899866051246, 34.587638514140224], [-77.39880727086629, 34.58788072646804], [-77.39872388905312, 34.58802129187917], [-77.39879995663276, 34.588306355171305], [-77.39873230982725, 34.588603056687454], [-77.39866616636756, 34.58881660487336], [-77.39850200374445, 34.58888441256783], [-77.3982104950581, 34.58901145696238], [-77.39806899960917, 34.58910851052104], [-77.39781642246177, 34.589272621874045], [-77.39778866477054, 34.589301401055806], [-77.39759591352592, 34.589516210999605], [-77.39742233854183, 34.5897091741148], [-77.39735969068182, 34.58978785901946], [-77.39720526633714, 34.590000847577635], [-77.39716159376465, 34.59009734585633], [-77.39709203431559, 34.59025104365412], [-77.39708925514404, 34.59031718174816], [-77.39708465026325, 34.590615888091776], [-77.3970903301729, 34.59067586204197], [-77.39710036680191, 34.590752148256875], [-77.39717562548424, 34.59092930149181], [-77.3972252417011, 34.59094941894556], [-77.39730372504326, 34.590985090304414], [-77.39738197488467, 34.591014944521405], [-77.39742227358596, 34.59101090350698], [-77.39751839228633, 34.59093512773871], [-77.3976476656953, 34.59083829034081], [-77.39781635769398, 34.59069820200059], [-77.39788452986812, 34.59063473596353], [-77.39816071282334, 34.59052144594337], [-77.39821043410285, 34.59050222809611], [-77.39833925127925, 34.59049568850605], [-77.39858598794909, 34.5904800396823], [-77.39860450167114, 34.59050115992934], [-77.39869028137335, 34.59053746659125], [-77.39899856438024, 34.59065590122442], [-77.39925913515734, 34.59078754763578], [-77.3991357581724, 34.59095317149459], [-77.39899855327644, 34.59101746049256], [-77.39873443451202, 34.59128782198024], [-77.39866247261227, 34.591360694679096], [-77.39870629988039, 34.591606735073825], [-77.3987731064328, 34.591706816222086], [-77.39880149482877, 34.59173812416034], [-77.3988770145451, 34.59182274420933], [-77.39899852429265, 34.59197837842627], [-77.39911987688035, 34.59208136025882], [-77.39923133153789, 34.59223902037139], [-77.39937169680398, 34.59246960286466], [-77.39939258596878, 34.592486977210356], [-77.39965187631353, 34.59257439420115], [-77.39978666099802, 34.59257015465133], [-77.40008337390908, 34.59268660025028], [-77.40018073577214, 34.592716158370145], [-77.4002146056713, 34.59273607188204], [-77.40024041593136, 34.59276883927163], [-77.40043154063216, 34.59301148059639], [-77.40054071705406, 34.593150085154626], [-77.40042144415365, 34.59333252362501], [-77.40027273362843, 34.59361332459591], [-77.40023255680725, 34.593674967251275], [-77.40018072136061, 34.59369384752692], [-77.40001166902412, 34.59386327807812], [-77.39999959687499, 34.59388217136911], [-77.39998367477277, 34.59402134772445], [-77.3999774020678, 34.59408050904769], [-77.39998367335525, 34.59410730548476], [-77.40004927575822, 34.594211746315736], [-77.40018071245026, 34.59432433206655], [-77.40027343334151, 34.59436247646955], [-77.40039298747493, 34.594673824236374], [-77.40048896029376, 34.59485584943997], [-77.40052810876725, 34.5949004960663], [-77.40057479055744, 34.595126991070146], [-77.40067286262021, 34.595572801691155], [-77.4006670223701, 34.595679306950785], [-77.40065250903177, 34.595765136618674], [-77.40057478364155, 34.59595423988354], [-77.40050700563151, 34.596126968565486], [-77.40044026476181, 34.59628151775799], [-77.40040548588023, 34.59635390292606], [-77.40039556687327, 34.59637454729408], [-77.40037773268678, 34.596394302994966], [-77.40032136147094, 34.59642677067611], [-77.40018068367922, 34.596516185792346], [-77.39997027936707, 34.59662898000228], [-77.40018068160889, 34.59668500973474], [-77.40026080303703, 34.59667338193803], [-77.40037772973582, 34.59669125214293], [-77.40046447232596, 34.59665113001398], [-77.40047625419808, 34.596648773889775], [-77.40052419494384, 34.5966035583437], [-77.40057477892664, 34.59655782478854], [-77.40058418006187, 34.59655053623722], [-77.40059241031894, 34.59653922063179], [-77.40078870186491, 34.59631679115434], [-77.40096887594905, 34.59611646588619], [-77.40099617965713, 34.5960858048594], [-77.40102355448109, 34.596052439765664], [-77.40119359349113, 34.595845429191975], [-77.40136296873574, 34.595581971628754], [-77.40136417454102, 34.595580017606366], [-77.40136502049891, 34.595578596468975], [-77.40137605717926, 34.59556290307404], [-77.40154436848368, 34.59532357612867], [-77.4015600132433, 34.59530133025491], [-77.40168461521625, 34.59510790752452], [-77.40171295817254, 34.59505630790679], [-77.4017570561166, 34.59495570843862], [-77.40189206782671, 34.594653398711785], [-77.4019777410771, 34.594454222864115], [-77.40213389296734, 34.594193929717676], [-77.40214115493674, 34.59418212817394], [-77.40215113616692, 34.59416469351197], [-77.40231282405499, 34.59391773586432], [-77.40245325403521, 34.59372327086366], [-77.40263727446114, 34.59337133120242], [-77.40279866293156, 34.59297577849652], [-77.40285171574352, 34.59281662198133], [-77.40286585447795, 34.59273547587201], [-77.40282368961591, 34.592396090777704], [-77.40277776153992, 34.59215214848461], [-77.4027443971619, 34.591982957532764], [-77.40269230016558, 34.591724399444274], [-77.4026589410959, 34.59144815046172], [-77.40241875985834, 34.591180796892466], [-77.40239717583894, 34.59091879320149], [-77.40215110576172, 34.59048056692705], [-77.40208608347805, 34.59037965256435], [-77.40203447288357, 34.590261438495304], [-77.40215110373194, 34.59018449722461], [-77.40224995927295, 34.590249495932625], [-77.40261149014039, 34.58995071852414], [-77.40274233104813, 34.58964794268948], [-77.402829399088, 34.589423238435174], [-77.4028620751553, 34.589335403429885], [-77.4029392187278, 34.589208018885884], [-77.40302122878896, 34.588970980127584], [-77.40301345059177, 34.588627517028826], [-77.40300924815546, 34.58854813343907], [-77.40300815530534, 34.58847400323449], [-77.40297581028472, 34.58812838329539], [-77.40297890761423, 34.58808515515891], [-77.40301234137334, 34.587777345201914], [-77.4030592914088, 34.587691760284635], [-77.40320543971075, 34.587532962649696], [-77.40333324268875, 34.58733427525712], [-77.40337610178496, 34.587267644847834], [-77.40339676161221, 34.587218482981996], [-77.40344127690256, 34.58709565061867], [-77.40348243444416, 34.58699383114285], [-77.40349710118375, 34.58695598633984], [-77.4035657625676, 34.58676951738451], [-77.40358862924734, 34.58661682725683], [-77.40372727130506, 34.586345020044135], [-77.40373588880617, 34.58632038917371], [-77.40379708387096, 34.58596221218288], [-77.40381458345416, 34.58588445563084], [-77.40381849254935, 34.58578558813122], [-77.40384073907754, 34.58545610483759], [-77.40383920619622, 34.58533569293533], [-77.40384224340147, 34.585243599764496], [-77.40380892317549, 34.58512412909911], [-77.40379190139735, 34.58503857709222], [-77.40377646626783, 34.584987764541076], [-77.40372723762533, 34.5848312429286], [-77.4035917360937, 34.584642889011754], [-77.40363018380467, 34.58453277174837], [-77.40357674633351, 34.58438262047086], [-77.40335133311476, 34.58425300802704], [-77.40333318784481, 34.58423160016667], [-77.4030233660708, 34.584209596479226], [-77.40293915030834, 34.58418190898787], [-77.40284779635984, 34.58422724171931], [-77.40254511378932, 34.58422198421469], [-77.40222763172807, 34.58433268556818], [-77.40215107705424, 34.58436371531415], [-77.40210347771779, 34.584381801763186], [-77.40187942927318, 34.584465421424774], [-77.40136299902527, 34.584706092785865], [-77.40100310509868, 34.58459187692726], [-77.40070678184273, 34.58449255852145], [-77.40057492427377, 34.58442803835915], [-77.40031148583904, 34.58440782069807], [-77.40009670685481, 34.58438879449524], [-77.39978684840378, 34.58438860352983], [-77.39944240367684, 34.58433906152883], [-77.39899877113021, 34.58439988194649], [-77.39861276121633, 34.58452085629395], [-77.39821068901944, 34.584507637307574], [-77.39789576409926, 34.58470090209751], [-77.39756550208226, 34.58493387852285], [-77.39742258207166, 34.585031720032525], [-77.39737383928451, 34.585063000435696], [-77.39730521899699, 34.585125417584315], [-77.39689298549041, 34.58546343104809], [-77.3966344573038, 34.58568183050048], [-77.39630012678444, 34.58575933302939], [-77.39615801900113, 34.58580425353285], [-77.39584635422055, 34.58585783814476], [-77.3956206301857, 34.58597437768452], [-77.39545229527988, 34.586025050880444], [-77.3952255222499, 34.58609433470639], [-77.3950582358403, 34.58617815993928], [-77.39497872822975, 34.58622450989576], [-77.39486120112244, 34.5863076295641], [-77.39484468668425, 34.58632950713354], [-77.3948231331754, 34.58650390277903], [-77.39481966032366, 34.58659013560133], [-77.39481056796038, 34.5867589997925], [-77.3948024790659, 34.58690923568092], [-77.3947705275011, 34.5871893467319], [-77.39472672876836, 34.587263148802414], [-77.39466408610224, 34.587369510969516], [-77.39456509374546, 34.58753690644907], [-77.3943770050267, 34.58797993543168], [-77.39438072296346, 34.58809471474516], [-77.3946640150503, 34.58820692312544], [-77.39482119463054, 34.58828639451876], [-77.3949933336306, 34.588361184255035], [-77.39505805822637, 34.58838479714731], [-77.39509127764234, 34.58838100358527], [-77.39512148941972, 34.588412437193625], [-77.39511322097039, 34.58847307149679], [-77.39520429919224, 34.588667475116836], [-77.39524661023911, 34.58881896079098], [-77.3952550514928, 34.58884888992413], [-77.39529296584948, 34.588983698890054], [-77.39530387734708, 34.589022986098314], [-77.39534491951969, 34.58911391394517], [-77.39535073387111, 34.58912539965127], [-77.39536000001944, 34.58912798790608], [-77.39545205868765, 34.589157007743836], [-77.3955285067082, 34.58912050601999], [-77.39556739544228, 34.58910923754485], [-77.3956031032753, 34.58902938061106], [-77.39561934448648, 34.58897748117208], [-77.3955853696855, 34.58891370947423], [-77.39556093636828, 34.588868621648984], [-77.39552090802198, 34.58877939446619], [-77.39549942115522, 34.58873149821315], [-77.39545209878057, 34.588619740067436], [-77.39535483958213, 34.58848357863431], [-77.39534503772936, 34.58838019146439], [-77.39538571276425, 34.58830277196456], [-77.39545212731996, 34.58823882729378], [-77.39573689530128, 34.58801686401692], [-77.39584620692243, 34.58792313057111], [-77.39586843595156, 34.587904069314504], [-77.39595898754366, 34.5878670580142], [-77.39614236456399, 34.58773511227264]], [[-77.37587144460198, 34.54889708673056], [-77.37611562618537, 34.54859996055596], [-77.37783296522122, 34.54786432586696], [-77.37862346760261, 34.54752006811983], [-77.37963534904567, 34.546754169052264], [-77.3802185219266, 34.546430893361254], [-77.38114739113485, 34.54591596973856], [-77.381466594382, 34.545658049309424], [-77.38125722759155, 34.545410474604836], [-77.381134615738, 34.54536160614041], [-77.38102816710446, 34.54535011997644], [-77.38080344260928, 34.54523107050359], [-77.38072451434597, 34.54518925764774], [-77.38064201139534, 34.545065921169645], [-77.38056199805493, 34.54502105062219], [-77.38064512704437, 34.5449282730271], [-77.38074800323571, 34.544811917473574], [-77.38096343367238, 34.54452551975733], [-77.38100647124485, 34.544467306995045], [-77.38102171983753, 34.54444836113094], [-77.38158498883678, 34.543894232699145], [-77.38165983667125, 34.543765350764886], [-77.3818555383003, 34.5434848299915], [-77.38209023939021, 34.54298132772753], [-77.3822088469299, 34.54282495761599], [-77.38263485954698, 34.54229429729618], [-77.38265406892795, 34.54226219613729], [-77.38266873017876, 34.54224506841908], [-77.38289381647331, 34.541882123941264], [-77.38299157413586, 34.54173276861947], [-77.38307570233353, 34.54160815748487], [-77.38312622382276, 34.54149848303267], [-77.3833621389845, 34.54126075902647], [-77.38337510988197, 34.541187799746375], [-77.38295114884934, 34.54108910133982], [-77.38284570062785, 34.540774478871185], [-77.38270346431015, 34.54070897488728], [-77.38221096053665, 34.54068385624791], [-77.3819198131377, 34.540643486444864], [-77.38131892381956, 34.54061953575422], [-77.38100075031156, 34.540634497969094], [-77.38091270702706, 34.540563538015654], [-77.38035659612115, 34.54033217282763], [-77.3799614135911, 34.540455750425295], [-77.37927148862691, 34.54061710185649], [-77.3787741278848, 34.54087090132374], [-77.37877329513259, 34.5408719861864], [-77.3787734697441, 34.540872350984934], [-77.3786478505737, 34.541134900463874], [-77.37876001963478, 34.541361696650796], [-77.37876062963258, 34.541363471755574], [-77.37876164883644, 34.541364137314], [-77.37876287498425, 34.54136751922101], [-77.37893781274, 34.541713595964794], [-77.37899892874749, 34.54181877655819], [-77.37904420912999, 34.54199659391535], [-77.379031244879, 34.54212569399094], [-77.37898973055626, 34.542309762390275], [-77.37887360143495, 34.542410294415106], [-77.37873532173657, 34.542583519394945], [-77.37853988516798, 34.54274466679611], [-77.37850442215874, 34.54286938566737], [-77.37833067122246, 34.543116288090175], [-77.3782316833611, 34.54309144863832], [-77.37794055283656, 34.54300775054013], [-77.37788707796048, 34.542991953036136], [-77.37778646388574, 34.54297288408756], [-77.37715886842847, 34.54285463243824], [-77.37668201789634, 34.54313208876094], [-77.37654896216767, 34.543266386367634], [-77.37624952150756, 34.54368408596062], [-77.3759828299608, 34.5439844020414], [-77.37570535420186, 34.54425218092139], [-77.37555433477164, 34.544362447889455], [-77.37521629805431, 34.54460495007228], [-77.37523737918686, 34.54480928863815], [-77.3749839405101, 34.544988623739236], [-77.3747590483732, 34.54536006960542], [-77.37475834017671, 34.54536798931251], [-77.37475413445726, 34.54537353937696], [-77.37472786645665, 34.54538367513914], [-77.37395437669258, 34.54566627284923], [-77.37358437184827, 34.54579796161748], [-77.37329473369957, 34.54606857872405], [-77.3732222946703, 34.54611854261001], [-77.37315680296805, 34.54621150389487], [-77.37296724239685, 34.546491180190955], [-77.3728950448347, 34.546771137649266], [-77.3731399252585, 34.54695423139516], [-77.37318846494377, 34.54703183628165], [-77.3732092729764, 34.5470602071374], [-77.37341615782017, 34.54734228796933], [-77.3738273397539, 34.54790290967205], [-77.3736088176866, 34.54798193941184], [-77.37312788420437, 34.5485261318657], [-77.37362656618527, 34.54895868560962], [-77.37502043967527, 34.549024758927644], [-77.37545197556122, 34.54887251226139]], [[-77.36078331566173, 34.57106043106912], [-77.36075467770887, 34.57107548273832], [-77.36063032188548, 34.57114084225016], [-77.36058624818531, 34.571210728233496], [-77.36047420013668, 34.57132814100167], [-77.36058611449984, 34.57147531600258], [-77.36060542176867, 34.571500706363494], [-77.36061969091972, 34.571519471144875], [-77.36071478552853, 34.57164452617347], [-77.36076190152421, 34.571711273414095], [-77.36078297741375, 34.57173309027914], [-77.36079812731234, 34.571706057832884], [-77.3608719015688, 34.5715996847134], [-77.36095703548273, 34.571470902017055], [-77.36097004047438, 34.57145818089512], [-77.36098012308932, 34.57142813658206], [-77.36103126551737, 34.57124793762808], [-77.3609802512476, 34.571172110949895], [-77.36093634000787, 34.571096686902095], [-77.36080774503839, 34.571067842355184]], [[-77.34543644883978, 34.65519553673237], [-77.34552597785152, 34.65529227525129], [-77.3455168281031, 34.65519754501231], [-77.34614953663777, 34.65520861229785], [-77.34620045066326, 34.65516840627754], [-77.3464587912126, 34.65515422494578], [-77.34671977607863, 34.655076884601655], [-77.3467625191444, 34.65507235172], [-77.34683900470723, 34.655097200384766], [-77.34709277045997, 34.65512239238241], [-77.34733205660395, 34.65493528493722], [-77.34702860642619, 34.65480327699924], [-77.34688311127995, 34.6547534893516], [-77.34668030049993, 34.65461547789798], [-77.34666913889943, 34.654607921098766], [-77.34666678504296, 34.65460765791707], [-77.34666047209221, 34.65460549206852], [-77.34641293791574, 34.654536116047424], [-77.34610550396216, 34.65441258753574], [-77.34601813176802, 34.65455503821432], [-77.34558261412103, 34.655031805759194], [-77.34547622205632, 34.6550447946584]], [[-77.37613143590669, 34.62856224234598], [-77.37648522803181, 34.62888506392497], [-77.3766144996396, 34.62919517779649], [-77.37691978079764, 34.6291546012669], [-77.3771410075926, 34.629028802976705], [-77.37720949083217, 34.62878074165457], [-77.37770856460752, 34.62809344406715], [-77.37784549378526, 34.62798743299561], [-77.37831764033497, 34.62796524478347], [-77.37849707880818, 34.628031493140526], [-77.3787705851621, 34.62826127034133], [-77.3790106821769, 34.62852127967603], [-77.37887018664516, 34.62894355590856], [-77.37849677013133, 34.629269013926624], [-77.37842090264259, 34.62937369343517], [-77.37830857519695, 34.62947154558501], [-77.37804657867133, 34.62987377715831], [-77.37770802749841, 34.630170860607265], [-77.37755787996585, 34.630267143672235], [-77.37739075101217, 34.63045287849377], [-77.3776557587856, 34.630470908193445], [-77.37770794786744, 34.63047970885049], [-77.377814563924, 34.630506648339015], [-77.3779756518326, 34.63050490309494], [-77.37810219045252, 34.63055132079432], [-77.37810683338127, 34.630557010095515], [-77.37820951974894, 34.63054721958006], [-77.37829561101786, 34.63053881666231], [-77.37830355823253, 34.630538232869306], [-77.37849649341997, 34.630382060512076], [-77.37855259115707, 34.630345918491166], [-77.37869573085474, 34.63026489898208], [-77.37892068045488, 34.62984001730148], [-77.37928526450038, 34.629332204907236], [-77.37928628607501, 34.62933180183999], [-77.37982975463443, 34.629515140608866], [-77.38007366671785, 34.62980071442682], [-77.38018483906359, 34.629930628555485], [-77.38028372320335, 34.630036132765824], [-77.38040671069253, 34.63037719708897], [-77.38059922074288, 34.63083980567115], [-77.38066177253964, 34.63104630899629], [-77.38073125987799, 34.63152933635276], [-77.38070879120014, 34.631673146372975], [-77.38076670564817, 34.631767149423936], [-77.38086163265898, 34.632299830437184], [-77.38089647930637, 34.63245767159254], [-77.38151195776047, 34.632257717857364], [-77.381650201116, 34.63215090656246], [-77.38219391874033, 34.63204464974237], [-77.38271120372976, 34.63194041083896], [-77.38322730544303, 34.631976219424395], [-77.38399861879208, 34.632029727417645], [-77.38480436841718, 34.63199614767285], [-77.38561522085217, 34.63179130004342], [-77.38790657280842, 34.632278341203865], [-77.38795848295317, 34.63211064976696], [-77.38905147012738, 34.62994935856579], [-77.38858492446731, 34.628839905054434], [-77.38891136248685, 34.62812016653091], [-77.38882299114924, 34.62795645769076], [-77.38882148124108, 34.627877052901695], [-77.38887139780189, 34.62710034519027], [-77.3889728991423, 34.62684316764888], [-77.38897149217945, 34.626661349877736], [-77.38907792632159, 34.62657705747057], [-77.3891276239982, 34.62622975257382], [-77.38912846442761, 34.626214155600465], [-77.38910651993659, 34.62617910849755], [-77.3889971496553, 34.62596453984487], [-77.38883752917621, 34.62583152491808], [-77.38874781657543, 34.62575676545741], [-77.3885502902716, 34.625872928403545], [-77.38848226332803, 34.626021354423145], [-77.38853851579533, 34.626299192572176], [-77.38853010483447, 34.62653475680712], [-77.38852531830551, 34.62672566254706], [-77.38852386187884, 34.626909416616044], [-77.38804995591217, 34.627120963900374], [-77.38795915082987, 34.62716334985236], [-77.38791136756218, 34.627187268050875], [-77.38737605818835, 34.627094697063384], [-77.38717067841688, 34.627069310505235], [-77.38666499440029, 34.6271137985792], [-77.38638218352693, 34.62712942009929], [-77.3860576754862, 34.62715642546828], [-77.38504990426676, 34.62738755993313], [-77.38480514304625, 34.627513376762074], [-77.38468444854094, 34.62757382422173], [-77.38409081338513, 34.62778933512833], [-77.38402820657723, 34.6278108587958], [-77.38401659674022, 34.62781533153055], [-77.38399506667929, 34.627826315994234], [-77.38342753822556, 34.628099742454154], [-77.38322801332203, 34.628279280707474], [-77.38285823151327, 34.62841788866304], [-77.38279237876307, 34.62844553087912], [-77.38261558218082, 34.62842647353602], [-77.38278680016698, 34.628351243128094], [-77.38274962954644, 34.62798259403916], [-77.38294114192725, 34.62764593343985], [-77.38322824088455, 34.62710161611265], [-77.38324481299088, 34.62706211340064], [-77.38327448474186, 34.627008056567654], [-77.38355072904406, 34.626516072876775], [-77.3838838967362, 34.62626410730518], [-77.38401690304232, 34.62615349404367], [-77.38404847124288, 34.6261311690244], [-77.38437616923079, 34.62604995352054], [-77.38471678409601, 34.625905408724485], [-77.38480542691096, 34.62589160913575], [-77.38488503918023, 34.62589088455043], [-77.38546573268614, 34.62575488152614], [-77.38559394207658, 34.62565049313561], [-77.38567600028323, 34.62543806692073], [-77.38576735086919, 34.62518700275728], [-77.38587097304973, 34.62498540118712], [-77.38606980954924, 34.624619911455184], [-77.38614377465524, 34.62452151894166], [-77.3863109456798, 34.62415008202431], [-77.38631855062135, 34.62407176328429], [-77.3862925899813, 34.62397848352846], [-77.3858866408578, 34.623284879223306], [-77.38597913849641, 34.62285720747428], [-77.3859774243327, 34.62283515497287], [-77.38598863805052, 34.622823521225115], [-77.38608224272679, 34.62240755669836], [-77.38611349293411, 34.622268684725555], [-77.38611283193303, 34.62219086503082], [-77.38614247957062, 34.622139872358396], [-77.38618587096887, 34.6220713798494], [-77.38628972054875, 34.62205352966371], [-77.38638299216353, 34.62199883483421], [-77.38653811575398, 34.62191728652643], [-77.3863830287411, 34.621769658116555], [-77.38625623722103, 34.621821369895834], [-77.38618591022731, 34.621828876571904], [-77.38600879278923, 34.62199357670669], [-77.38599643323207, 34.622003608546386], [-77.38598877155637, 34.622009058369116], [-77.38598035427749, 34.622006741045396], [-77.38563106985083, 34.62208735808261], [-77.3855945346771, 34.622114673143095], [-77.38529242254086, 34.622196033968294], [-77.38520030293364, 34.622184500966924], [-77.3850809195016, 34.62225586198231], [-77.38480602546686, 34.6225068573807], [-77.38475614433494, 34.62254496020937], [-77.38458420007677, 34.622623452955], [-77.38441175784732, 34.62275855844654], [-77.38434130830265, 34.622734333045294], [-77.38414359101922, 34.62282272048753], [-77.38401751195079, 34.62288126159711], [-77.38388946565274, 34.62293585335971], [-77.38383925580474, 34.62296341251698], [-77.3838203775119, 34.62300083129115], [-77.38369028768881, 34.62317683838847], [-77.38367999350507, 34.62323946489556], [-77.38362318989115, 34.6233948519181], [-77.38355355520021, 34.62362110673874], [-77.38352130562342, 34.62394070659728], [-77.38322881685853, 34.624144551923834], [-77.38301412149309, 34.62393009981254], [-77.38256747842624, 34.62390004714893], [-77.38244041566696, 34.62386054626617], [-77.38237555928492, 34.62386069982249], [-77.3821202334892, 34.62390739775985], [-77.38204617323413, 34.623926802470336], [-77.38177081194453, 34.62400602276692], [-77.38165190947524, 34.62408921953703], [-77.38146565442766, 34.62412253749065], [-77.38125768704016, 34.62405578085561], [-77.3811682160304, 34.62396481549424], [-77.38101630085852, 34.62382215502023], [-77.38086354137573, 34.62368150996946], [-77.38081986327848, 34.62363749268929], [-77.38072782278654, 34.623603704048165], [-77.38056506758944, 34.62352406940046], [-77.38037823886437, 34.62355595712562], [-77.38024929378798, 34.6236726488469], [-77.38014078079702, 34.623759052807586], [-77.38007499637, 34.6240619869014], [-77.38006112871172, 34.62410939876903], [-77.38005909248587, 34.62412461490526], [-77.38005279968972, 34.62414940388445], [-77.37986322025279, 34.624774069955535], [-77.37951888506375, 34.62480115002362], [-77.37928635825472, 34.624795419214195], [-77.37892230183702, 34.624745436963345], [-77.37889213642451, 34.624748025817354], [-77.37887480297063, 34.62473846392358], [-77.37879368587424, 34.62473148020531], [-77.37849791227548, 34.62471135950855], [-77.37825553126507, 34.624809005942], [-77.37813276734298, 34.624858057564246], [-77.37810363143865, 34.624896380514606], [-77.37800689189768, 34.62494899015303], [-77.37770932699327, 34.62516491782472], [-77.3776193625726, 34.625228342764494], [-77.37745727962373, 34.62534855783723], [-77.37737256978085, 34.62542273371106], [-77.37731500278025, 34.625497942185724], [-77.37716989752471, 34.625658295190064], [-77.37692069114757, 34.62577285735546], [-77.3768040750031, 34.62586721052524], [-77.37664043630161, 34.626013603050296], [-77.37652636525037, 34.626090088058234], [-77.37647673924634, 34.62612664097149], [-77.37640972575214, 34.62622300329181], [-77.37625139783634, 34.62637137915082], [-77.37622353231146, 34.62647394496024], [-77.37613197373251, 34.62663165457172], [-77.37579812628972, 34.626796136509185], [-77.37573085650413, 34.62686358403269], [-77.37534330836905, 34.62725393190677], [-77.37529286251447, 34.627304251576966], [-77.37521499867293, 34.62736977530139], [-77.37505937407389, 34.6275110638853], [-77.37494894986524, 34.62763813686852], [-77.3748356014948, 34.627726942836965], [-77.37455453321495, 34.62820594145399], [-77.37450377985799, 34.62826669209937], [-77.37450146031296, 34.62832166194046], [-77.37451309961585, 34.62836455359909], [-77.37455439758718, 34.62866263935719], [-77.37456381206968, 34.62872708329554], [-77.37456689364078, 34.62873679830797], [-77.37464082966622, 34.628819276095804], [-77.37474248888445, 34.62893343266516], [-77.3749148765947, 34.62911124130693], [-77.37494850968366, 34.62914439667091], [-77.37514490390224, 34.62929113600271], [-77.37514559440424, 34.629292148118914], [-77.37514902391824, 34.6292934922638], [-77.37515247612876, 34.62928189400134], [-77.37514670517369, 34.62907785240111], [-77.37528375747142, 34.6289945239924], [-77.3753428351088, 34.62889885600422], [-77.37558251838155, 34.628423925020954], [-77.3758964359561, 34.62837387116239]], [[-77.45409184272623, 34.50412697035499], [-77.45393678535413, 34.505438242914316], [-77.45392745939749, 34.50551708706319], [-77.45399838269496, 34.506824297257154], [-77.4548913694912, 34.508145098057696], [-77.45510468852014, 34.50823158102486], [-77.45764907974358, 34.5089305481716], [-77.4587851063763, 34.50924260033155], [-77.46047715250886, 34.50942157932146], [-77.46176978588728, 34.509242881239665], [-77.46177442421484, 34.50924016034571], [-77.46200451551626, 34.50858198010593], [-77.4621279847645, 34.50822879905499], [-77.46228377461537, 34.50741476162521], [-77.46228664680446, 34.507245274151096], [-77.46225243700464, 34.50710120170808], [-77.46199954531028, 34.50599742442578], [-77.46197046120186, 34.5058781998935], [-77.46194283264799, 34.50576279271701], [-77.46188966997885, 34.50553634305446], [-77.46206876832409, 34.50539219156244], [-77.4622403855056, 34.505313287792035], [-77.46233507767246, 34.50522119333928], [-77.46278813171973, 34.50498529486386], [-77.46324654053592, 34.50459193335149], [-77.46371540272392, 34.50424761396383], [-77.46423368581408, 34.50345922476451], [-77.46433738623965, 34.50336166811952], [-77.46440141993979, 34.50329951920332], [-77.46431199068184, 34.503223345152406], [-77.4644510065561, 34.50262652405753], [-77.46448706377383, 34.502348938658216], [-77.4644973832938, 34.502251348374145], [-77.46450243181775, 34.501953621430594], [-77.4645040999379, 34.50155710595839], [-77.46446257437728, 34.501276087177985], [-77.46439270333732, 34.50101247859691], [-77.46442069547741, 34.500817760209166], [-77.46440597680919, 34.50059770456658], [-77.46409941428931, 34.500276015600626], [-77.46405809963626, 34.500224299270776], [-77.46392588321926, 34.500191731825566], [-77.46333265134434, 34.5001650946847], [-77.46273058692812, 34.50020518470088], [-77.46200486945138, 34.50023444853534], [-77.4609093646692, 34.50042022075378], [-77.4607604335427, 34.500436290342414], [-77.46071728252417, 34.5004507745286], [-77.45900166862414, 34.50077003475783], [-77.45838556932553, 34.50164308711972], [-77.45837382159041, 34.5016531445336], [-77.45835913638378, 34.501677116395996], [-77.45652270616682, 34.50194201368994], [-77.45582454421576, 34.50225835183089], [-77.45438890777898, 34.503281653031316]], [[-77.3392807039575, 34.636628629895554], [-77.33931527101572, 34.63673073638941], [-77.33946136397965, 34.637025830120265], [-77.33955270494543, 34.63711801279386], [-77.33962068954605, 34.63701590711931], [-77.33992730940554, 34.63699383076158], [-77.33998894517786, 34.63695341584936], [-77.33992650844348, 34.636634190254966], [-77.34038187079388, 34.636624394722574], [-77.34047682819138, 34.63654235363679], [-77.3405170635366, 34.636518332000975], [-77.34062568799132, 34.636486623752845], [-77.34067974155619, 34.63643659832174], [-77.3407246481029, 34.636378524786366], [-77.34074739173697, 34.63629574366172], [-77.34084470336447, 34.636202955938906], [-77.34082597952465, 34.63613951069175], [-77.34079424194596, 34.635998883937525], [-77.34075119377542, 34.63589313783442], [-77.34064863903774, 34.6355968728528], [-77.34048772054541, 34.63526671329213], [-77.34019729803802, 34.63515113319937], [-77.3398858083422, 34.63485758785761], [-77.3396351508388, 34.634658623615294], [-77.3394032628584, 34.63438554065473], [-77.3388991280397, 34.634340376181356], [-77.3387434866695, 34.63428816367036], [-77.33859930129202, 34.63441343026836], [-77.33756595872192, 34.634430064880966], [-77.3375824762035, 34.634882585181934], [-77.33769149082168, 34.63588183502875], [-77.33714636009009, 34.63589860479092], [-77.33710993506807, 34.63600608413759], [-77.33695151961152, 34.63610430543025], [-77.33690127586189, 34.63627209422748], [-77.33683665086072, 34.636181189119334], [-77.33669741446171, 34.636288170846946], [-77.33665233633572, 34.636356361078505], [-77.3366427921469, 34.63640398757941], [-77.33668641016483, 34.63647863293055], [-77.33678810850978, 34.63654872637584], [-77.33679818495646, 34.636555671344176], [-77.33693446520769, 34.63656153932086], [-77.33696269894841, 34.636577857743035], [-77.33704862255371, 34.6366161136296], [-77.33724062547503, 34.63636785050454], [-77.3375092864808, 34.63657151949978], [-77.3376018796324, 34.636572641374904], [-77.33772704518526, 34.63658230988847], [-77.3378620913241, 34.63627446232029], [-77.33811693290652, 34.63627908732746], [-77.33853504081006, 34.636437339250556], [-77.33881683414899, 34.63627883840835], [-77.33888624993104, 34.63633015324761], [-77.33921243174197, 34.636622308508564], [-77.33923065757585, 34.636607568461805]], [[-77.39041264536579, 34.71029389534152], [-77.39048063763136, 34.71026796491529], [-77.390732744547, 34.7100810821904], [-77.39037687540876, 34.71022062811393], [-77.39036475379517, 34.7102155489965], [-77.39023617880075, 34.71018240549737], [-77.39014238456156, 34.71032716954827], [-77.39034890998362, 34.710317089667555]], [[-77.40667480669813, 34.6700859820546], [-77.4069529314143, 34.67028910028992], [-77.40704448167537, 34.67039148610729], [-77.4071237167874, 34.67028546752277], [-77.40715241348433, 34.67025315981906], [-77.4074939481437, 34.67014301064082], [-77.40757068692774, 34.67003137541183], [-77.4075433758014, 34.669830876665266], [-77.40766371751909, 34.669672572880486], [-77.40786416953668, 34.66938403363995], [-77.40792687947453, 34.669354943053314], [-77.40810439551579, 34.668916031856945], [-77.4081071829851, 34.668909966235105], [-77.40809565434527, 34.66888288546413], [-77.4080354114005, 34.66849847331525], [-77.4078673042244, 34.6685092728474], [-77.40777759043625, 34.668515036018405], [-77.4076472961921, 34.66852340610112], [-77.4075842709642, 34.66852745475158], [-77.4074272882986, 34.66853753890077], [-77.40710275134722, 34.66855838550572], [-77.40699971517222, 34.668586163081144], [-77.40690976487699, 34.6686441453061], [-77.40676280213088, 34.66858307358306], [-77.406317873777, 34.668475543211265], [-77.40585247608678, 34.66820547329393], [-77.40522282763146, 34.66845945491425], [-77.40511352340498, 34.66927113108018], [-77.40598578967331, 34.669622262014414], [-77.40617751067595, 34.6697199248456]], [[-77.39347881374023, 34.62343456911019], [-77.39277876808065, 34.623140502058156], [-77.39272321477202, 34.6231131616266], [-77.3926903987586, 34.62302670752727], [-77.39233393968553, 34.62273942419007], [-77.39227282743862, 34.6227637077844], [-77.39216317048565, 34.62280468879789], [-77.39190196175753, 34.62293798599932], [-77.39182988517017, 34.62293036586061], [-77.39161964554224, 34.62300357819343], [-77.39150772131958, 34.6231247714077], [-77.39129218536576, 34.62335482977352], [-77.39150768357433, 34.62351395529583], [-77.39167272431328, 34.62354678839443], [-77.39190188568304, 34.62376340171032], [-77.39248820457239, 34.62340011781476], [-77.3924054770239, 34.62404346143751], [-77.39269029490265, 34.62428529613584], [-77.3927896456348, 34.624730175935866], [-77.3928894084334, 34.62482282812757], [-77.39347868040394, 34.62527203802268], [-77.3937089008825, 34.625305871636144], [-77.39415777351309, 34.62537130656357], [-77.39426713858093, 34.62539411470317], [-77.39447395009047, 34.62544349904344], [-77.39479693394605, 34.62567548631874], [-77.39505557106831, 34.626044091145786], [-77.39516050663612, 34.62619364246911], [-77.395313335677, 34.626743108670425], [-77.39584399162263, 34.627271769729774], [-77.39697422866712, 34.62714927184045], [-77.39621692314276, 34.62604130343541], [-77.39615139483357, 34.625719764637346], [-77.3962318624643, 34.62519000760351], [-77.39589063361356, 34.62444017348775], [-77.39586923811734, 34.624393158474085], [-77.39586160088798, 34.62437542929367], [-77.3958441178502, 34.62433826635793], [-77.39562028683065, 34.62382100054435], [-77.39553412363672, 34.623592341297716], [-77.39544993200451, 34.62347860975569], [-77.39534121230075, 34.623312686530234], [-77.39519594924626, 34.623216535941424], [-77.39505572575774, 34.62314924366993], [-77.39474644901199, 34.623189865493174], [-77.39457265033165, 34.623210725858975], [-77.39426726808901, 34.623341799843345], [-77.39382148529947, 34.623470242727066]], [[-77.39892441945005, 34.52705992713127], [-77.39793831624553, 34.52656077271355], [-77.3977119874761, 34.526046737986675], [-77.39760924886085, 34.52591319218623], [-77.39690976221837, 34.52568862989239], [-77.39650338184185, 34.52558314123595], [-77.39639112092603, 34.52554592104302], [-77.39616159938974, 34.525289566113585], [-77.39549469452717, 34.52523905182542], [-77.39498849231101, 34.52442139101787], [-77.39494808682213, 34.52433860233356], [-77.3949623981388, 34.52426636673847], [-77.39485136150677, 34.52420183896797], [-77.39476940689211, 34.52431485008875], [-77.3946948157452, 34.52437515431294], [-77.39325222662517, 34.52549968255245], [-77.39321151634115, 34.525543776160376], [-77.39320149512525, 34.525569998323654], [-77.3932060335723, 34.52559679572165], [-77.39305247618663, 34.52645970724196], [-77.39297026424613, 34.52658270197285], [-77.39253938468333, 34.5270675391199], [-77.39254420407026, 34.52720580673443], [-77.39257956016549, 34.527618416349824], [-77.39300584674075, 34.52768000041655], [-77.3927504775908, 34.52829939436705], [-77.39191862188952, 34.52869312304547], [-77.3917783520384, 34.52881992609584], [-77.39160526132054, 34.528920053333955], [-77.39139235456823, 34.52890211199506], [-77.39002656840222, 34.52930435407658], [-77.38932320819578, 34.5296125257646], [-77.38902796234314, 34.52972713059793], [-77.38845218106319, 34.52949699141788], [-77.38812922027759, 34.53002514917392], [-77.38759812993878, 34.530295779761644], [-77.38710884587633, 34.53052220462491], [-77.38685642593056, 34.530636093104405], [-77.38639124940448, 34.53095953543941], [-77.38684671157219, 34.53106656274073], [-77.38722677734197, 34.531091266585555], [-77.3882232747406, 34.53106419459075], [-77.38841743020245, 34.5310381725674], [-77.38866230493227, 34.53096981915099], [-77.38973834523081, 34.5309663629918], [-77.38994981888088, 34.53096045443982], [-77.38998961939163, 34.53094438716224], [-77.39000736664653, 34.53093854007218], [-77.3900570517799, 34.53092038408857], [-77.3907836988665, 34.53054283826259], [-77.39107665295202, 34.53046525362815], [-77.39154355675016, 34.5302162453748], [-77.3915764342377, 34.530200646071094], [-77.39209583197673, 34.52996759680323], [-77.392367586732, 34.529928496856854], [-77.39244064094994, 34.53003967646001], [-77.39246892687031, 34.53008272365639], [-77.39314210363362, 34.53039572971159], [-77.39321602227257, 34.53041816654588], [-77.39365748485798, 34.5304008845541], [-77.39385600377345, 34.530416316778364], [-77.39392703977933, 34.53039989490889], [-77.39433869727804, 34.53030258116161], [-77.39466611727242, 34.53022420556444], [-77.39471639819132, 34.53020726359466], [-77.39482756534179, 34.53016330660337], [-77.39520755587995, 34.52999085664959], [-77.39544681418933, 34.52969424768134], [-77.39547858757675, 34.529648409287184], [-77.39547831978942, 34.52962588911668], [-77.39595624990257, 34.529089800132425], [-77.39609156220052, 34.52893082697582], [-77.39632301630259, 34.52857888736096], [-77.39696560695172, 34.52854378066109], [-77.3971743052312, 34.528464064035624], [-77.39789797540769, 34.528358815425335], [-77.3980596270882, 34.52829654201564], [-77.39823979689295, 34.527988908452414], [-77.39859128417643, 34.527730125584]], [[-77.36352619540766, 34.551336216796344], [-77.36322497920054, 34.5513305993459], [-77.36315986913816, 34.55144589275319], [-77.36313890802884, 34.551644536987816], [-77.36310435117872, 34.55176770664318], [-77.36356064530158, 34.551877822545116], [-77.36355795407663, 34.55190719278626], [-77.36360268719986, 34.5519836579105], [-77.36365346109228, 34.55189485090307], [-77.3636384840906, 34.55186661200581], [-77.36363482290797, 34.55184901790881], [-77.36367382025975, 34.55161669763472], [-77.36366893327082, 34.551405654430475], [-77.36368941668904, 34.5513696260803], [-77.36362456870421, 34.55102545653891]], [[-77.35592531782495, 34.550683211661806], [-77.35595840460793, 34.55064665139584], [-77.35596638266624, 34.550638675431756], [-77.35597760539177, 34.55062674194596], [-77.35609210302046, 34.55050499263898], [-77.35609891622687, 34.55045478689007], [-77.35616220336419, 34.5502625869701], [-77.35615876114223, 34.55025057354027], [-77.35616314620465, 34.55023766493347], [-77.35618310130936, 34.550226055183145], [-77.35655653798865, 34.549948485032644], [-77.35657115832927, 34.549939439672464], [-77.35658247447417, 34.54993133573361], [-77.35664704845018, 34.549895697615035], [-77.35680467870644, 34.54980468741205], [-77.35697984463052, 34.549723896836205], [-77.35707876734637, 34.54968967366588], [-77.35736672853149, 34.54958701917419], [-77.35737329970694, 34.54958460670263], [-77.35737566919627, 34.54958382727445], [-77.35738096273138, 34.549581699338596], [-77.35757434423897, 34.5494804744812], [-77.35761676102567, 34.54945469087665], [-77.35767090779915, 34.549420813456436], [-77.35767261311196, 34.5494197727468], [-77.35767392665127, 34.549418099561784], [-77.35770634239077, 34.549374090798096], [-77.35777511381147, 34.54928566289706], [-77.35777639266212, 34.54928398796081], [-77.35777704403195, 34.54928312064389], [-77.35777933327992, 34.54928023738651], [-77.35788678114343, 34.54914490921733], [-77.35791861526772, 34.549104814838415], [-77.35797729409367, 34.54902921986425], [-77.3579941459065, 34.549007039288426], [-77.3580512468192, 34.54892097533737], [-77.35817991091992, 34.54875366236973], [-77.35819166555129, 34.548740924903], [-77.35819911348156, 34.54873270451177], [-77.35822167378049, 34.54870412131018], [-77.358256090109, 34.54866329505093], [-77.35825692719956, 34.54864849242769], [-77.35827456579142, 34.54859942896428], [-77.3582757662326, 34.54853347318823], [-77.35828482328571, 34.54847554020462], [-77.35838028478874, 34.54834271494329], [-77.3583803715492, 34.54833599819175], [-77.35838586653945, 34.54833224903677], [-77.35842766400323, 34.54821015007593], [-77.35843559650328, 34.54818016887231], [-77.35844670334347, 34.548146202830395], [-77.35844715421251, 34.54812012078092], [-77.35844882383999, 34.54808469158473], [-77.35844540013817, 34.548052061396376], [-77.35829920045737, 34.54798382300752], [-77.35838386033986, 34.54785725571263], [-77.35834667289444, 34.547822861314565], [-77.35829196579706, 34.54774004119281], [-77.35824811911732, 34.54771860297151], [-77.35825274532618, 34.54752879013494], [-77.35823724308538, 34.54750309677504], [-77.35822979663047, 34.54749109243128], [-77.35821017815334, 34.54743208973367], [-77.35814892523497, 34.54739340126297], [-77.35814643786702, 34.54735288042596], [-77.35811792316359, 34.547334377996876], [-77.35810565287508, 34.54733303625485], [-77.3580151492501, 34.547376500557064], [-77.35784884284433, 34.54731419577966], [-77.35782768446431, 34.54731264351838], [-77.35782032234928, 34.547312103403435], [-77.35780510289227, 34.547310986818424], [-77.3576240858127, 34.54730924866007], [-77.35753691396336, 34.54729131088646], [-77.3574990427181, 34.54728625554209], [-77.3574285015642, 34.54727792404018], [-77.35734929980666, 34.547324913128975], [-77.35735007618962, 34.54733795979471], [-77.35734411372849, 34.5473868655871], [-77.35734605031612, 34.54743574735189], [-77.35742276173443, 34.54752844088118], [-77.35749652262054, 34.54756325190927], [-77.35761062186596, 34.54759331782657], [-77.35752857284956, 34.5477803724672], [-77.35773686513184, 34.54781996446732], [-77.3574784867752, 34.547897183266954], [-77.35741451480388, 34.54788838167565], [-77.35738139410813, 34.54789175010034], [-77.35713087513771, 34.547976421120175], [-77.35705557232912, 34.548138313712315], [-77.35703421295743, 34.54816595295084], [-77.3570322970804, 34.54817682917553], [-77.35701503425472, 34.54818833217443], [-77.35684681333244, 34.54833495223494], [-77.3568150558173, 34.54834865134813], [-77.35665825662929, 34.54846490262592], [-77.35663724842631, 34.54848135837548], [-77.3566154568649, 34.548492380587014], [-77.35653170507729, 34.54853474224156], [-77.35638814954469, 34.548608528587145], [-77.35621812171456, 34.548698496391665], [-77.35614749212726, 34.54873980594727], [-77.35609940947892, 34.54879018048966], [-77.35597624865244, 34.54890485820941], [-77.35581701129671, 34.54906916277355], [-77.3558128049777, 34.54907370565803], [-77.35580796944485, 34.549076959765614], [-77.3554195175258, 34.54928198352671], [-77.35529230970643, 34.549317196420176], [-77.35522188012158, 34.549339989787875], [-77.35511866502375, 34.54936263953586], [-77.35502472649813, 34.54937689401007], [-77.35494675217484, 34.54939743177798], [-77.35483050508938, 34.549462494379384], [-77.35476229551355, 34.54955605495408], [-77.35462697902149, 34.54960061305302], [-77.3546008209651, 34.54960167282312], [-77.35450718219795, 34.54958397651533], [-77.35443177091078, 34.54955269252506], [-77.35437295441574, 34.54952835889296], [-77.35429343345861, 34.54950434912415], [-77.35423690733299, 34.54948976790187], [-77.3540600291571, 34.54943959443353], [-77.35384681417088, 34.549379899174944], [-77.35371232238086, 34.549378631352155], [-77.35350394894027, 34.549377635164255], [-77.35345440624488, 34.54937089407076], [-77.35338223171591, 34.549381288028755], [-77.35302342200558, 34.54947779086849], [-77.3527199741801, 34.54955579198834], [-77.35266459819289, 34.54957023520686], [-77.35257629371256, 34.54959683122773], [-77.35226917885433, 34.549692269347446], [-77.35213260395349, 34.54976673460948], [-77.35196050838817, 34.549875600355286], [-77.35190892817288, 34.54990627256757], [-77.35187104694151, 34.54993230300161], [-77.35167969761845, 34.55004310726427], [-77.35147307097311, 34.55016544878216], [-77.3514463743068, 34.55017795081165], [-77.35138063075273, 34.55020388048179], [-77.35122659151185, 34.550319383047054], [-77.35124950681218, 34.55035937824719], [-77.35131374817493, 34.55045832771677], [-77.35134965355142, 34.550524965701804], [-77.35146172433765, 34.55065916652988], [-77.3514726251034, 34.550673283950815], [-77.3514780984511, 34.550679495762466], [-77.35152484229302, 34.55087513708025], [-77.35158727485772, 34.550991656384205], [-77.35161070071067, 34.551150054190096], [-77.35161205259219, 34.55125209414918], [-77.35162701324707, 34.551280557093], [-77.35172267005895, 34.55137876078358], [-77.3517056916966, 34.551546039315056], [-77.35174323749477, 34.551620622217946], [-77.35174769172102, 34.55167197414609], [-77.35174268612998, 34.55174311242061], [-77.3517925499221, 34.55183668486558], [-77.35180328308243, 34.55185680189568], [-77.3518262862468, 34.55188034738707], [-77.3519548026416, 34.55199799458386], [-77.352032040431, 34.552068699647975], [-77.35210804734186, 34.55212340861246], [-77.35219296362293, 34.55216794965348], [-77.35221208578672, 34.55217754412875], [-77.35230606702441, 34.55221494448513], [-77.35244439381938, 34.55225417270502], [-77.35260162810067, 34.55231189988372], [-77.35276357039719, 34.55235151007304], [-77.35279699764435, 34.55235304051057], [-77.35282998515564, 34.552341489428485], [-77.3529947842805, 34.552288927769624], [-77.35313307353215, 34.5522405877207], [-77.35339118207166, 34.55212474555005], [-77.35341492680882, 34.55211448163541], [-77.35362479272777, 34.55198309153729], [-77.35378844727747, 34.55192270177942], [-77.35405322037084, 34.55177778369605], [-77.35414419982675, 34.55173906736524], [-77.35418586712163, 34.55171383246295], [-77.35455295426996, 34.55146102740142], [-77.35457024685667, 34.55144961644362], [-77.35458471869647, 34.55144247276918], [-77.35464711734434, 34.55140904202149], [-77.35498233968488, 34.55122464251269], [-77.35505380172867, 34.55118814682885], [-77.35530363839136, 34.55110814351536], [-77.35535649980143, 34.55108705365746], [-77.35537841518926, 34.55107410435144], [-77.35559361492216, 34.550954049838175], [-77.35577623076645, 34.5508476144586], [-77.35580866231233, 34.550810309186375], [-77.35582897865572, 34.55078769481123]], [[-77.3372694738397, 34.6878888090312], [-77.33726410283303, 34.68788680758874], [-77.33726106508817, 34.687885687722435], [-77.33723130293687, 34.68786489361298], [-77.33723255679901, 34.68789387299889], [-77.33724805927365, 34.68789915098872], [-77.33591759189956, 34.690023736648115], [-77.33607042456373, 34.690381737809744], [-77.33634739036674, 34.691030483834474], [-77.3380960496217, 34.690399841886375], [-77.33668299262246, 34.691868246178245], [-77.33708154952684, 34.69275695451382], [-77.33708403082137, 34.6927879891753], [-77.33705549414798, 34.692816041543665], [-77.33701004832484, 34.69287041637323], [-77.33668909662896, 34.693329535200846], [-77.33681016809918, 34.693359880570256], [-77.33685913445805, 34.69338983666994], [-77.33707285466605, 34.69352058359266], [-77.33709874840378, 34.69353200662832], [-77.33719823148057, 34.6935809925643], [-77.3373881898253, 34.69362929282486], [-77.33741292861473, 34.693684437542906], [-77.33746202929363, 34.693710887456604], [-77.33766901022165, 34.693881564997525], [-77.33786848524073, 34.69403658395771], [-77.33845727417979, 34.69406340684193], [-77.33846459787179, 34.69406553182446], [-77.33903372934071, 34.694146780865715], [-77.33928799344824, 34.694212580595135], [-77.33933574383298, 34.69419960874827], [-77.33934577696422, 34.69416812394675], [-77.33944422627066, 34.69392634524545], [-77.33947730947281, 34.69368677046918], [-77.33947889781076, 34.69367155507405], [-77.33952219185502, 34.69342827341676], [-77.3396135587451, 34.693173798436064], [-77.33966324722496, 34.6929215464614], [-77.33977558347652, 34.69267452394614], [-77.34007172492457, 34.69237812920284], [-77.34035708623507, 34.691913423687396], [-77.34071264491666, 34.691539863189504], [-77.34094270109155, 34.69128388093995], [-77.3409264561298, 34.69114157128207], [-77.34113824029647, 34.69102363012914], [-77.34138785261068, 34.690735426936506], [-77.34160545914112, 34.690466937871825], [-77.34197501054247, 34.690203700082876], [-77.34203807142177, 34.69015883299501], [-77.34240393964909, 34.68989824933007], [-77.34258631310867, 34.68983991646882], [-77.34274898982103, 34.689578874610994], [-77.34223208391538, 34.68974586660952], [-77.34205210044854, 34.68993830222831], [-77.34181753635562, 34.69018909314991], [-77.34157933400344, 34.6904437728071], [-77.34130925302782, 34.69043490893329], [-77.34120372427115, 34.690373708801204], [-77.3410732413337, 34.69029121641703], [-77.34097184908467, 34.68976380485731], [-77.34030080719964, 34.68942243892577], [-77.3395334532187, 34.68929392917483], [-77.33925963399217, 34.689248070434914]], [[-77.3969906471346, 34.71818393059529], [-77.3969986681523, 34.718339332090565], [-77.39720780508554, 34.71877277761286], [-77.39741072288692, 34.718901452515155], [-77.3974728918825, 34.71891512520329], [-77.39750362011993, 34.71889900316246], [-77.39761025496448, 34.71891358886053], [-77.39794768810883, 34.71887694454182], [-77.39810389940627, 34.71895000164756], [-77.39820552246563, 34.71884228947893], [-77.3982707908684, 34.71865705757463], [-77.39829933883033, 34.718595542280184], [-77.39838299280773, 34.71849612961105], [-77.39843478079337, 34.7183633593349], [-77.39852601562288, 34.71832616457025], [-77.39860853916237, 34.718178939882335], [-77.3986224441891, 34.71814944756106], [-77.39863431517819, 34.718129134712505], [-77.39864776416265, 34.71805100636568], [-77.39863107350114, 34.71801268133218], [-77.39859639999156, 34.717960838830294], [-77.39848671971323, 34.71782238958865], [-77.39844656970101, 34.717767693954926], [-77.39825247143747, 34.71765789672696], [-77.39808286730172, 34.71740151714612], [-77.39800733054061, 34.71731377117949], [-77.3979677988826, 34.717207594931324], [-77.3978048099051, 34.716951877916124], [-77.39762311414943, 34.716681510577395], [-77.39767725632416, 34.71655873195631], [-77.39765400712226, 34.7164127477629], [-77.39773004715992, 34.7163135632874], [-77.39761963187762, 34.7161969038051], [-77.3975785919306, 34.71615354283279], [-77.39748899717098, 34.71607543877276], [-77.397222111659, 34.71585583478635], [-77.39711144246661, 34.71573835259842], [-77.39695820872433, 34.71551953192102], [-77.39695596308289, 34.71532978316364], [-77.39683690218311, 34.71512378373092], [-77.3966953636843, 34.714962024559405], [-77.39634699237988, 34.71488170041977], [-77.39616087352903, 34.714594253833795], [-77.39568298487933, 34.7144246670507], [-77.39551847239005, 34.714598787171624], [-77.39507175313179, 34.71452068282377], [-77.39426824605842, 34.71448856452342], [-77.39378987201235, 34.714321588277954], [-77.39339514776395, 34.7152195962546], [-77.39350361258924, 34.71579918276605], [-77.39374352491431, 34.71596700372238], [-77.39351250468893, 34.71636145122558], [-77.39365845930796, 34.71659215833851], [-77.39406909721774, 34.71672391578183], [-77.39437160590366, 34.716769826558405], [-77.39488736247998, 34.7167760528339], [-77.39534559945386, 34.71686619075621], [-77.39562144658052, 34.716969435566014], [-77.39605274593893, 34.71717909546044], [-77.39676436703816, 34.71738561848825], [-77.39692866675068, 34.71811596396403]], [[-77.3886080664889, 34.54742870776259], [-77.38825272337769, 34.54733964351216], [-77.3881154839217, 34.54731882407291], [-77.38805102761384, 34.547289089882966], [-77.38784922472618, 34.547153010038194], [-77.38776857931563, 34.54709862917222], [-77.38766509428173, 34.54699363748661], [-77.3876146047591, 34.54694201756358], [-77.38751252050785, 34.54680964532927], [-77.38728335213611, 34.54651248063933], [-77.38727574468956, 34.54650606139096], [-77.38727021539485, 34.54650202437749], [-77.38695128770564, 34.54633848873169], [-77.38728594599002, 34.54639747778562], [-77.38772177687963, 34.546168318052324], [-77.38808217349516, 34.54590760571288], [-77.38841934436417, 34.54633627964647], [-77.38856746831647, 34.546493694390726], [-77.38873454885484, 34.54670892215224], [-77.3887845052354, 34.54677327459314], [-77.38880354884354, 34.54679780604496], [-77.38884605624312, 34.54685256235789], [-77.3890396300306, 34.54710191670266], [-77.38935385727873, 34.547506684098494]], [[-77.39167442512218, 34.71459017320992], [-77.39213724490341, 34.714611858583076], [-77.39221900137858, 34.71392462585863], [-77.39162380245793, 34.71377198570265], [-77.39090150183843, 34.71377024288402], [-77.39063894709682, 34.71373920413503], [-77.389928995117, 34.71399322810523], [-77.38992400509608, 34.71399393172868], [-77.38965021955607, 34.714450653066514], [-77.38954689837736, 34.71486502452031], [-77.38949601382829, 34.71505964875334], [-77.38997855856333, 34.71557114903275], [-77.39009449393006, 34.715617132150626], [-77.39046869892275, 34.715296265442184], [-77.39061230529961, 34.715111004772645], [-77.39131342422604, 34.71503272705462]], [[-77.42522619978035, 34.73185186866476], [-77.42513381221916, 34.73187735114065], [-77.42512311482818, 34.73188174058683], [-77.42511781209905, 34.73188810658346], [-77.42509447730859, 34.73190681090841], [-77.42482006117466, 34.73213441571615], [-77.42443455523603, 34.7322083399416], [-77.42441297529085, 34.732217100046334], [-77.4243937657114, 34.73221886805065], [-77.42433736320226, 34.73222260315852], [-77.42392045169825, 34.7321601727067], [-77.42378177666833, 34.732118088852616], [-77.42362893736492, 34.732071706021955], [-77.42338983516218, 34.73204099534217], [-77.42334471521544, 34.73219025142552], [-77.42324127186463, 34.7323502837723], [-77.42321790413018, 34.73250794392026], [-77.42313852569734, 34.73272262391967], [-77.42312663992716, 34.73286928574528], [-77.42310964829912, 34.733078946286795], [-77.42305662299137, 34.73320315799835], [-77.42305559218735, 34.73340352323172], [-77.42330067454458, 34.733779639869425], [-77.42372799876327, 34.733638570795975], [-77.42388051876222, 34.73359070153592], [-77.42400595472435, 34.73355826481459], [-77.42426737774166, 34.73347495574137], [-77.42458679208222, 34.73337969500183], [-77.42465838170678, 34.7333659836687], [-77.42470653651033, 34.733353099606965], [-77.42519376957642, 34.73303279399041], [-77.42532633696607, 34.73296167936434], [-77.4254830008301, 34.73288582532288], [-77.42550172144877, 34.73287432337299], [-77.42552607225998, 34.73286941534232], [-77.42570378094328, 34.73283055360412], [-77.42608935642497, 34.732786773134585], [-77.42612938210726, 34.7327781165226], [-77.42615592862359, 34.732776136025755], [-77.42636522668926, 34.73271590750347], [-77.4264998215578, 34.73269562681966], [-77.42653058370817, 34.73268581099465], [-77.42655357085106, 34.73266950074637], [-77.42655282934474, 34.73263765568743], [-77.42667985545296, 34.73243410897835], [-77.42667721062149, 34.732177542882575], [-77.42667896523623, 34.732154265973], [-77.42667681898163, 34.73213955623368], [-77.42666850246943, 34.732112983424216], [-77.42660300977954, 34.73184818427511], [-77.42655759593214, 34.73174290525208], [-77.42647680075304, 34.73166781721404], [-77.42637161647245, 34.73167820997057], [-77.42606749073835, 34.73166099771539], [-77.42588881840499, 34.73163717871591], [-77.42584195715155, 34.73164599723926], [-77.42552655480026, 34.731751448969696], [-77.42550586922624, 34.731759300161784]], [[-77.43478540612827, 34.698928881518924], [-77.43543169800718, 34.6986245577044], [-77.43557894122765, 34.69851715674165], [-77.43593331460063, 34.698212109023146], [-77.43605209208698, 34.697426882780604], [-77.4361162192743, 34.69715795906889], [-77.4361578809673, 34.69682041318907], [-77.43604073417183, 34.69564603207598], [-77.43629035048167, 34.694982647935845], [-77.43644447028181, 34.694297847610656], [-77.43657420705554, 34.693963796524876], [-77.4365935794317, 34.69362969145628], [-77.43633626314147, 34.693321558632114], [-77.43638782624615, 34.69326917376005], [-77.43630008206969, 34.69329346967943], [-77.43625977339877, 34.69329481538728], [-77.43589553041357, 34.69340064480923], [-77.43517766005621, 34.69332788402708], [-77.43499744043866, 34.69336585410081], [-77.43497154726043, 34.6933859303746], [-77.4349568204785, 34.69339830272609], [-77.43485733510578, 34.69346158100834], [-77.43447854123053, 34.69379012620683], [-77.4343234781654, 34.693822195148826], [-77.4341622851442, 34.69403747040852], [-77.43404432183233, 34.694197355601176], [-77.43388671935409, 34.69460385843701], [-77.43384220684949, 34.69468574008141], [-77.43375119754941, 34.69481603581596], [-77.43369649775035, 34.695040719580234], [-77.43369801122225, 34.69519437660003], [-77.43356285096296, 34.69557005392923], [-77.43354462583176, 34.69569980034717], [-77.43352912811234, 34.69580150337061], [-77.43350418622862, 34.69596518837048], [-77.43354203458847, 34.69618133391704], [-77.43354762817673, 34.69624017511653], [-77.43356258416014, 34.696265134292226], [-77.43355712150131, 34.69630847248565], [-77.43352754042836, 34.6966949512054], [-77.4336636100464, 34.69685951111592], [-77.43349162625184, 34.69694920358735], [-77.43347968312807, 34.69707473035007], [-77.43339835324122, 34.69717064301128], [-77.43338952059389, 34.69719894603889], [-77.43342579985618, 34.697335417890535], [-77.43345420522608, 34.697592452866836], [-77.43347527365927, 34.697609549925645], [-77.4337060642472, 34.69782950414328], [-77.43389439897453, 34.69805831069323], [-77.43403211982184, 34.69826993847957], [-77.43459322894348, 34.69886169255786], [-77.43452281205559, 34.69895793783826], [-77.43461170988036, 34.699129586978245]], [[-77.31434753753032, 34.640330722935026], [-77.31398027844283, 34.64043161603707], [-77.31393052036947, 34.641918959220874], [-77.31462507238412, 34.64171409452025], [-77.31511672630404, 34.641866961237696], [-77.31543424991484, 34.64178979658399], [-77.31593142710337, 34.641842942171905], [-77.31613752291122, 34.64177927065688], [-77.31623982544264, 34.641784490540054], [-77.31632188775085, 34.64177743700449], [-77.31656175573355, 34.64179347754121], [-77.31680262342596, 34.641733082499], [-77.31703844192964, 34.64136728163538], [-77.31705327696915, 34.64129977657312], [-77.31691283467381, 34.64060820945816], [-77.31686148969482, 34.64054756390601], [-77.31619785759285, 34.639979835217616], [-77.31609389410505, 34.63993361936181], [-77.3159257073257, 34.63983184854979], [-77.31550685158805, 34.639726798673564], [-77.31497775688084, 34.63984705942645], [-77.31489402581883, 34.63986342715955], [-77.31482557223723, 34.639886327172846]], [[-77.43318667400271, 34.70172424612562], [-77.43258833363699, 34.7016925889706], [-77.43244791941903, 34.70146595964169], [-77.43266080806563, 34.701442114479036]], [[-77.3997390565537, 34.66867760202211], [-77.39962754993064, 34.66873723864101], [-77.39932070898828, 34.66874130863795], [-77.39933962745174, 34.669001741713835], [-77.39961659703009, 34.66929255437627], [-77.39965821741478, 34.66934700756134], [-77.3997970643374, 34.66935573631355], [-77.39994079458575, 34.66900773879049], [-77.40012018533756, 34.668909711013555], [-77.39988232320438, 34.66857336326168]], [[-77.33359771350918, 34.56288284844395], [-77.33306633742131, 34.56322802254899], [-77.3328167566612, 34.5634170538678], [-77.33249332088897, 34.56354224894162], [-77.3320286176947, 34.563691489373745], [-77.33176600071839, 34.56371224412884], [-77.33146818801934, 34.564038037257646], [-77.33182164000779, 34.564209801387705], [-77.33202818198923, 34.56420244901189], [-77.33236047452263, 34.56426792838887], [-77.33246475918386, 34.56427333428621], [-77.3328159118468, 34.564418848111266], [-77.33289749722161, 34.56459358605689], [-77.33292081290823, 34.564678312195426], [-77.33301667570036, 34.564881299352436], [-77.33311312975857, 34.565075206340595], [-77.33314359826545, 34.565141588000934], [-77.33344292678339, 34.56545233716834], [-77.33360285179484, 34.565588036367544], [-77.33395730483608, 34.56584527973743], [-77.33399658689503, 34.565862574212645], [-77.33428621401366, 34.566067938595396], [-77.33439032023816, 34.56614239792426], [-77.33440237455409, 34.56615049486885], [-77.33441831283665, 34.56616120062619], [-77.33478406585948, 34.56641043173637], [-77.33484898354745, 34.5664538334177], [-77.33493443811169, 34.56651154223835], [-77.33517781831225, 34.56667313488897], [-77.33534785339984, 34.56669339960147], [-77.33546976988275, 34.5668591209799], [-77.33557158268019, 34.56692411790365], [-77.33575710143616, 34.567042334871864], [-77.33579353168773, 34.56705185784295], [-77.3359653980809, 34.56711448220755], [-77.33607649188357, 34.567076751845754], [-77.33623939488294, 34.56704366977468], [-77.33628025136487, 34.566828099864516], [-77.33626916476771, 34.56674419194921], [-77.33625208447796, 34.56663062249958], [-77.3362276448429, 34.56646812175623], [-77.33614494558033, 34.56633751020185], [-77.33596630341307, 34.56598804885468], [-77.33594875869149, 34.56596010619445], [-77.3359377192392, 34.56594276280605], [-77.33587668982183, 34.56585485233231], [-77.33562540332726, 34.56550636082925], [-77.33561559149294, 34.56513999314991], [-77.33568703100383, 34.56482776466766], [-77.33566883579957, 34.56460501622375], [-77.33561968455285, 34.56429032317785], [-77.33549319638303, 34.56397101517294], [-77.33528908504404, 34.56360598731675], [-77.3352499905261, 34.56349439321442], [-77.33518048212551, 34.5634014484132], [-77.334928754405, 34.56296315498739], [-77.33445207503136, 34.56282362865274], [-77.33439305636223, 34.562821963382554], [-77.33435012426294, 34.56282094901674], [-77.33365005397036, 34.562875324066475], [-77.33360804916377, 34.5628781960808], [-77.33360511005186, 34.562879064314366], [-77.33360298342375, 34.56287979977695]], [[-77.37268495070724, 34.733116695428706], [-77.37244601317411, 34.73287504619456], [-77.37233630928958, 34.73262868450213], [-77.37184083968285, 34.73223459390892], [-77.37206324516185, 34.7317806495586], [-77.37197309273711, 34.73167057182788], [-77.37185458004424, 34.73170760241556], [-77.37178665713712, 34.73221932906267], [-77.37176973527839, 34.732264212694474], [-77.37186193807466, 34.732828594791066], [-77.37178978029286, 34.7331484009423], [-77.37196714230478, 34.733900761138216]], [[-77.36755419792603, 34.55087464088516], [-77.36801063777601, 34.55143391894858], [-77.36819159264357, 34.551700421589416], [-77.36825639254042, 34.551730708216766], [-77.36831677301984, 34.551869421281964], [-77.368382036798, 34.55211840597705], [-77.3683945068794, 34.55216084244779], [-77.36842163794799, 34.55222740869637], [-77.36851541567046, 34.55263307682383], [-77.36858283819734, 34.552802525919844], [-77.36862795468139, 34.55289786875343], [-77.36868237500114, 34.55305584436754], [-77.36870641231432, 34.553095214823294], [-77.368939497398, 34.55314486657434], [-77.36907018402962, 34.553267477780935], [-77.36936115969145, 34.55330851637348], [-77.36973455174805, 34.55343674311939], [-77.37036972124821, 34.55363620619634], [-77.37063961323418, 34.553813778210674], [-77.37084865637253, 34.553899995167626], [-77.37127403970995, 34.553898780768506], [-77.37142736833069, 34.55392744011637], [-77.37154145819035, 34.553902565067716], [-77.37167446116761, 34.55384809380193], [-77.37182132941086, 34.55376809042641], [-77.3719653820725, 34.55369511729637], [-77.37221538713135, 34.55334947224997], [-77.37233897474914, 34.55319463398952], [-77.37249346022337, 34.55303922749939], [-77.37266732538842, 34.552737272352296], [-77.37273986407166, 34.55251406645392], [-77.3726878220045, 34.55231561641836], [-77.372701706768, 34.55202990752917], [-77.37270591267202, 34.551331022839506], [-77.37344728891773, 34.55094314671928], [-77.3730973041489, 34.55048053855643], [-77.37229601031203, 34.54953719004292], [-77.37212536540405, 34.54928501110361], [-77.37198933698399, 34.54919462384651], [-77.37172819297622, 34.548868689374665], [-77.37121175738729, 34.5483273600576], [-77.37096961816978, 34.54822862550999], [-77.37076194849554, 34.54793815926204], [-77.37029513988502, 34.54777356255751], [-77.36997736095148, 34.547910947657854], [-77.36975646237613, 34.547909623251535], [-77.36918891991633, 34.548052971464905], [-77.36894555956327, 34.54782950405699], [-77.36859858818882, 34.54772455951892], [-77.36825497393177, 34.54738663035217], [-77.36763815616249, 34.54719054845812], [-77.36737951041688, 34.54708369242195], [-77.36715716172914, 34.54695291425772], [-77.36685960915517, 34.54689867124283], [-77.36670884738865, 34.54692383997257], [-77.36646549534451, 34.54696507467287], [-77.3662901129131, 34.547077817783695], [-77.36619519178859, 34.54717067967145], [-77.36606384569727, 34.54736184218778], [-77.36567330071242, 34.547656320068626], [-77.36561504711611, 34.547881891048775], [-77.36468142438943, 34.54828884180169], [-77.3644676759024, 34.54849038178925], [-77.36412978216055, 34.54914622962105], [-77.36420525743648, 34.54933672749285], [-77.36418190373762, 34.54950386644484], [-77.3640531385039, 34.54984828858564], [-77.3643405123683, 34.55024218877653], [-77.364275091419, 34.55030597160395], [-77.36384358978584, 34.55072546647936], [-77.36442457796025, 34.55037841012688], [-77.36575481427792, 34.550244538597745], [-77.36600027130213, 34.550149183976686], [-77.36748067452861, 34.55082353033788], [-77.3674847438822, 34.550866370684105]], [[-77.32033045880081, 34.55553474957662], [-77.320166184769, 34.555569448702606], [-77.32026612906388, 34.55565700853577], [-77.32024466147831, 34.55571101797235], [-77.32032232854532, 34.555882897212356], [-77.32052156634879, 34.55574248938197], [-77.32039185408033, 34.55563894777572], [-77.32035316084102, 34.55562897984439]], [[-77.41392464635074, 34.72630429262843], [-77.41425605408335, 34.727053372245415], [-77.41442284972855, 34.72710955109572], [-77.41491896033111, 34.727298518748526], [-77.4150495852171, 34.727249959213424], [-77.41538488606352, 34.72718598312444], [-77.41556529252958, 34.726953749130075], [-77.41560324924205, 34.726884464156086], [-77.4155770163901, 34.7267520020458], [-77.41554746741222, 34.72651482430311], [-77.41538508136361, 34.726249081405726], [-77.41530655092086, 34.72596033791659], [-77.41477667927936, 34.725943548633495], [-77.41448188301874, 34.725709964971294], [-77.41394463587578, 34.726235280299015], [-77.41391161900475, 34.72627389879732], [-77.41353806684577, 34.72616230718489], [-77.41391207577007, 34.72630410549909]], [[-77.39239871326137, 34.6005849645113], [-77.39269242076098, 34.60081385414152], [-77.39284077466215, 34.60089410348567], [-77.3930865337052, 34.60086028646723], [-77.3931810841596, 34.600902992732294], [-77.39337300865111, 34.60086121547376], [-77.39348065539853, 34.60081354203149], [-77.39359459046581, 34.6008224798056], [-77.39387477882633, 34.60074028769307], [-77.39410599210309, 34.600695971132474], [-77.39426890167128, 34.60066474618725], [-77.39443970316691, 34.600582760581375], [-77.39446596711132, 34.60057145520427], [-77.39452648294062, 34.60053334832244], [-77.394663034122, 34.60045169236354], [-77.3947208204612, 34.60042047272173], [-77.39481491190372, 34.600344653061], [-77.39505717192044, 34.600134666340224], [-77.39521604112993, 34.60003336639256], [-77.39584505341638, 34.59977189981163], [-77.39584542164499, 34.599771832652785], [-77.39584563226722, 34.599771646527266], [-77.39584645680698, 34.59977130071005], [-77.39616494320514, 34.599644999780836], [-77.39623954303943, 34.5996049531348], [-77.39643589861436, 34.59947323205812], [-77.39663367102509, 34.59928197929919], [-77.39670424624728, 34.599223001137226], [-77.39688585210081, 34.59904389349859], [-77.39734079995586, 34.59879398848014], [-77.39742191223559, 34.598764142076014], [-77.39746583447798, 34.59873588771418], [-77.3976533083304, 34.59866152804192], [-77.397816025498, 34.5985971716975], [-77.3978567284159, 34.598588334846646], [-77.39815077943524, 34.598525822505785], [-77.39821013499196, 34.59849245552405], [-77.39838200951564, 34.598371250322515], [-77.39860424604052, 34.598300352966206], [-77.39869800894898, 34.59818725734204], [-77.39899836197203, 34.597844177483324], [-77.39910410745946, 34.59771700839066], [-77.39918954764318, 34.59759076391856], [-77.39944510432059, 34.5971860177815], [-77.3996623938917, 34.59709797346103], [-77.39958925208771, 34.59689654066406], [-77.3992764592117, 34.59702865799929], [-77.39899838296091, 34.597030623629294], [-77.39878313214007, 34.59703214448044], [-77.39839241472679, 34.597052935553634], [-77.3982101853266, 34.59705749295227], [-77.39810313154915, 34.59701368049161], [-77.39749891478593, 34.59706838483207], [-77.3974219877685, 34.59706316298498], [-77.39734549138342, 34.597090050900505], [-77.39676484498585, 34.597232596994026], [-77.39663377629532, 34.59731836679691], [-77.39642210315516, 34.597368874134474], [-77.39623966873145, 34.597443687638645], [-77.39610039233742, 34.59746177078282], [-77.39598636582485, 34.59747657545223], [-77.39584556726604, 34.597454032604475], [-77.39563559358999, 34.59748049060113], [-77.39554186152768, 34.59726780411613], [-77.39564918508043, 34.59704072881924], [-77.39571197904276, 34.59681869565536], [-77.39584562085464, 34.59661623884047], [-77.39595863584657, 34.59648029089567], [-77.39614287512596, 34.5963319706448], [-77.39640649777485, 34.59604901305423], [-77.39663385538924, 34.59587599590806], [-77.39698720746861, 34.595741707336146], [-77.39703696444565, 34.595353856436475], [-77.39724022656836, 34.59512861970231], [-77.39742208096368, 34.59502796380656], [-77.39781231793316, 34.59482159503261], [-77.39781617869268, 34.59481988908086], [-77.39781821698901, 34.59481878064936], [-77.3978182726061, 34.59481432106382], [-77.39786701254306, 34.59438497264005], [-77.39781620147045, 34.59427947284951], [-77.3977216776718, 34.594083211187964], [-77.39762513064271, 34.59399529343273], [-77.3974221373422, 34.593826098111236], [-77.3972916385544, 34.593759427447594], [-77.39718254376263, 34.59363456693259], [-77.39702806953679, 34.59352602962415], [-77.39685217829, 34.59344715569084], [-77.39678853948315, 34.59343333538717], [-77.39663399233575, 34.59343970197764], [-77.39636969494353, 34.59346707680983], [-77.39623990697004, 34.593497394313694], [-77.39611596074579, 34.593497385796276], [-77.39599323675141, 34.59354037250701], [-77.39584582000506, 34.59356962655877], [-77.39568434376615, 34.59360007538205], [-77.39562690194096, 34.59362311447463], [-77.39545172448004, 34.59375192591699], [-77.39516433157718, 34.593810736658426], [-77.3950576338649, 34.59384570890269], [-77.39497318856115, 34.5938622792866], [-77.39489943440663, 34.59396389404741], [-77.39461447678875, 34.59437674277981], [-77.39426939881928, 34.59463436125855], [-77.39411825527198, 34.59476288401026], [-77.39353159239266, 34.59495602026072], [-77.393481194221, 34.59493942759211], [-77.39325649683416, 34.594807902300985], [-77.39304383650315, 34.594702732298835], [-77.39298122956862, 34.59466512151652], [-77.39283079242816, 34.59453842751942], [-77.39283928791745, 34.59441855090749], [-77.39285977883765, 34.594258066620675], [-77.39287396809033, 34.59406116694595], [-77.39292560723825, 34.59364987362803], [-77.39291378171306, 34.59340113757437], [-77.39303372193746, 34.59301698824231], [-77.39304178055696, 34.59295810776364], [-77.39295296598098, 34.592826172708214], [-77.3931985055155, 34.592815711188294], [-77.3934814208684, 34.59254643198578], [-77.3935136953919, 34.59250024335943], [-77.39356667379198, 34.59245783539361], [-77.39375860988521, 34.592304195325724], [-77.39387552952894, 34.59221060349033], [-77.39389774781428, 34.59219780018491], [-77.39400916622324, 34.59211341320713], [-77.39418764447537, 34.59194370275345], [-77.39417934531002, 34.59161762959321], [-77.39387558069566, 34.591650298265904], [-77.39379865384531, 34.59165811540637], [-77.39355000953921, 34.591684905166005], [-77.39348149964357, 34.59172486225275], [-77.39319719762068, 34.5919682585561], [-77.39308739358228, 34.5920398448372], [-77.39306624244036, 34.59208265589573], [-77.39269327443594, 34.59245118748636], [-77.39251315461156, 34.59241571400572], [-77.3922992109612, 34.59231972430993], [-77.39222446357813, 34.59230737133523], [-77.39210384961768, 34.59224423334226], [-77.39190514662762, 34.592206179405096], [-77.39181205962734, 34.59218602074692], [-77.39170811274059, 34.592167285438805], [-77.39165631706163, 34.592152293568624], [-77.39154223910359, 34.59214651283101], [-77.39151107712337, 34.59214426925912], [-77.39146840416907, 34.59216955857162], [-77.39138258486732, 34.59220982137212], [-77.39138354851545, 34.59227320352044], [-77.3913965707824, 34.592346230654236], [-77.39142417258503, 34.59243584129344], [-77.39145267595143, 34.59269986096784], [-77.39145935685751, 34.59276174587549], [-77.39150365458545, 34.59317206249576], [-77.39150138477099, 34.59318025470141], [-77.39148734170894, 34.59320771484606], [-77.39128441014054, 34.59363611312014], [-77.39125075270749, 34.59378528377055], [-77.3911167640762, 34.594057953716], [-77.39098259433274, 34.594384269902925], [-77.39085891777476, 34.59454660884903], [-77.39072259781656, 34.59468928860262], [-77.39051206537839, 34.59479439209967], [-77.39032848146871, 34.59489816606213], [-77.38999463711201, 34.595030879254594], [-77.3899343710206, 34.59504825135303], [-77.38986849913778, 34.59504302481075], [-77.38954029185398, 34.594966696741906], [-77.3893597316299, 34.59495730740207], [-77.38883009112924, 34.59492315235884], [-77.38875210825152, 34.594984578381386], [-77.3884725350333, 34.5954387180927], [-77.38835791247556, 34.595662500072265], [-77.38832369469749, 34.595724443586086], [-77.38798602382141, 34.59578603745263], [-77.38796379763211, 34.595793579346356], [-77.38793516519362, 34.59578646584994], [-77.38768845310717, 34.595724962337314], [-77.38756973075542, 34.59562468911483], [-77.38747004735968, 34.59556720428253], [-77.38729930173156, 34.595193001118936], [-77.38724656207549, 34.5950674556604], [-77.3872197973391, 34.5950238480644], [-77.38717578000654, 34.594779434764824], [-77.38700990541498, 34.59443120463018], [-77.38699851981767, 34.59425408082413], [-77.3870412359178, 34.5941028475827], [-77.3871759388933, 34.59384458255276], [-77.38727731602722, 34.59347390336359], [-77.38736809237147, 34.59335166527856], [-77.38757013879966, 34.5931542370167], [-77.38770998584243, 34.593028448331374], [-77.38787909306396, 34.59285342441009], [-77.38792480387876, 34.59280430662027], [-77.38796429209178, 34.59271367453239], [-77.388068576054, 34.592513854321936], [-77.38814638513361, 34.59239031883115], [-77.3883584587652, 34.5921619732399], [-77.3885433145563, 34.59210766985933], [-77.38875255416158, 34.5920434223101], [-77.38898871015121, 34.592014444804], [-77.3893077891349, 34.59197190957799], [-77.38954072033053, 34.59195325987706], [-77.38966971607778, 34.591885072884], [-77.3897377689296, 34.59187834122326], [-77.38988134399384, 34.591773205994535], [-77.3899348272087, 34.59173105285616], [-77.38994829100507, 34.5917204412479], [-77.38996141051365, 34.591704045429864], [-77.39004763513937, 34.59160084554753], [-77.3900718412238, 34.5915405335306], [-77.39009032028319, 34.591473172630714], [-77.38993488315126, 34.59132819295452], [-77.38990512061598, 34.5913196604844], [-77.38974819431992, 34.59132136905175], [-77.38973784746322, 34.59132204688459], [-77.38960374129128, 34.591331050894325], [-77.38954484406158, 34.59133519621169], [-77.38954080898743, 34.59133537689187], [-77.38953596143764, 34.59133560168764], [-77.38916285472277, 34.59137725010515], [-77.38914672926597, 34.591379050114675], [-77.38912880935533, 34.59138022570559], [-77.388809468315, 34.591384367474404], [-77.3887526569395, 34.59137128102801], [-77.38863530127594, 34.591344247938316], [-77.388358590661, 34.59132517733312], [-77.38817694380836, 34.59130791568624], [-77.38816155753094, 34.59130280340964], [-77.38812955807404, 34.591296848915256], [-77.3879645243008, 34.59128174458023], [-77.38779848851732, 34.59116677528281], [-77.38773078345663, 34.59100384716092], [-77.38772200240999, 34.590916448985524], [-77.38778125065767, 34.590744693000374], [-77.38785003811034, 34.59061131087117], [-77.387964644009, 34.59054725778674], [-77.3883061234174, 34.59018772604272], [-77.38842002405532, 34.590162035447406], [-77.38875284931862, 34.590118900345935], [-77.38910761850894, 34.59008653725952], [-77.38914692267099, 34.59008014969998], [-77.38919063835992, 34.590069814205435], [-77.38943010291366, 34.5899628945148], [-77.38954102092674, 34.58986635841729], [-77.389665208376, 34.589757696123584], [-77.38975218714103, 34.58961137109307], [-77.38980361601554, 34.58946224591477], [-77.38978846059263, 34.589339628562655], [-77.38974215410911, 34.589188249158816], [-77.38961206686714, 34.58913057644169], [-77.38954113214041, 34.58909964479112], [-77.38948401022165, 34.58907473630734], [-77.38937574191453, 34.589028800240214], [-77.38935508809072, 34.58901995321764], [-77.38930909302205, 34.58900067691219], [-77.38914709451555, 34.58893280924944], [-77.38909630643232, 34.588911532023026], [-77.38899913045078, 34.588870820724615], [-77.38883940030881, 34.588800819964156], [-77.38875305901388, 34.58876215363328], [-77.38858350936651, 34.58868886906513], [-77.38846688275268, 34.58863921324593], [-77.388359024801, 34.58859303778979], [-77.38832519650646, 34.58857987604321], [-77.38825684477455, 34.58855328191093], [-77.38796498997478, 34.58843714966426], [-77.38779869891196, 34.58837394803834], [-77.38767051718425, 34.58832052879461], [-77.3875709568716, 34.5882792961299], [-77.38753946345062, 34.58826608247867], [-77.38745145191837, 34.5882448379478], [-77.38737393641837, 34.58822621007607], [-77.38723611952376, 34.58821208987656], [-77.38717691076249, 34.5882043542765], [-77.3870744339492, 34.58818878154422], [-77.38678285606343, 34.58818090941906], [-77.3865958070983, 34.588145171440175], [-77.38656641775732, 34.58813923507135], [-77.38638880364452, 34.58814575158472], [-77.38633169790458, 34.58813246502683], [-77.38622717489301, 34.588209063597084], [-77.38620563038182, 34.58822711480235], [-77.38612888595, 34.588290961508484], [-77.38599469865585, 34.58839094217846], [-77.38591815320879, 34.58846589782331], [-77.3857241261603, 34.5886269655411], [-77.38560770530054, 34.58893522009863], [-77.38575850768821, 34.589167795224604], [-77.38578379525485, 34.589334400760194], [-77.38578566053648, 34.58953371153575], [-77.38568978790872, 34.589772519782684], [-77.38560036002761, 34.58983750637354], [-77.38535435165824, 34.5899804240361], [-77.38520624806402, 34.590066463708766], [-77.38493436476924, 34.590174322386495], [-77.38481214848997, 34.590222833021926], [-77.38473565956437, 34.59025222924882], [-77.3846091320452, 34.590352870482974], [-77.38430914702063, 34.59070342404789], [-77.38419917982034, 34.59107218060142], [-77.38423203228301, 34.5912563613357], [-77.3844230959553, 34.59164766603854], [-77.38442845709288, 34.59165261318472], [-77.38481183391727, 34.591790263969614], [-77.38493329141632, 34.59187353327796], [-77.38509490258903, 34.591981109473494], [-77.38515645708479, 34.59202546569525], [-77.38520581894332, 34.59225744101204], [-77.38523231475395, 34.59235730032294], [-77.38522736478498, 34.59240982531514], [-77.38520578489856, 34.59243198165105], [-77.3850122154166, 34.59263365997993], [-77.3850026834787, 34.592637739573405], [-77.38481165575824, 34.59268189363466], [-77.38451578014049, 34.59248915721451], [-77.38445517097763, 34.592457439162835], [-77.38441762706442, 34.5924281445856], [-77.38429741477137, 34.59239111361603], [-77.38402357949026, 34.59227598497355], [-77.38393349530227, 34.59224558587214], [-77.38373008310595, 34.59217784628021], [-77.38341556826897, 34.59202915564688], [-77.38323552000847, 34.591827846219104], [-77.38302831346085, 34.59165314799955], [-77.38282811293709, 34.59145872547532], [-77.38266001548165, 34.59125399299276], [-77.38244752137962, 34.59114966828938], [-77.38238147540977, 34.59109853711117], [-77.38244756026002, 34.5909799169963], [-77.38258973030256, 34.59079708106282], [-77.38319594073167, 34.59059950988355], [-77.38323578485034, 34.590620788447296], [-77.38337716545536, 34.59068279004813], [-77.38328520393588, 34.59054371116032], [-77.38326801886184, 34.590511485621306], [-77.38323581911514, 34.590465012906314], [-77.38300238249687, 34.589986961911364], [-77.38257215189498, 34.58979735924808], [-77.38258379871755, 34.589649226759995], [-77.38244788846795, 34.58955039342845], [-77.38229769161984, 34.58967512874425], [-77.38223854254362, 34.58964640361512], [-77.38221176225979, 34.58963702186256], [-77.38218968305237, 34.589574303410735], [-77.38226461969919, 34.58941712081579], [-77.38244794528578, 34.589303544774026], [-77.38266526010494, 34.58916891042037], [-77.38251192950294, 34.58895690996854], [-77.38249569202154, 34.58890790584727], [-77.38244806731429, 34.58877409106698], [-77.38236522755022, 34.58855349018609], [-77.38223671353154, 34.58837526194217], [-77.38218841394213, 34.58815441049337], [-77.38211833931118, 34.588095368089796], [-77.38205417451032, 34.58805385456523], [-77.3819011467531, 34.587936155101815], [-77.38174631260412, 34.58788639428594], [-77.38166015929684, 34.58787109343612], [-77.38157712652333, 34.5879074036401], [-77.38135508933846, 34.58794585160417], [-77.38126604845209, 34.58808482112828], [-77.38098063158469, 34.58821140072457], [-77.3808719410142, 34.58827657473143], [-77.38072673955678, 34.588208619689276], [-77.38047786751144, 34.588327732229175], [-77.38037550083668, 34.588305403882515], [-77.38044453102292, 34.58840575207314], [-77.38047782746877, 34.58848504033931], [-77.3807107600498, 34.58854096806734], [-77.38056465253216, 34.588906664468574], [-77.3804077748081, 34.589260176346954], [-77.38048165667, 34.58966964317649], [-77.38048061552384, 34.589674243078235], [-77.38048127681795, 34.58967819066742], [-77.38060815422028, 34.59008042602447], [-77.38057071451783, 34.59040978420002], [-77.38058639187982, 34.59062567595757], [-77.38047724060405, 34.590798538950224], [-77.38041752054701, 34.590957027433255], [-77.38035388919798, 34.59125799117415], [-77.38034289145676, 34.591392346340136], [-77.38034789039456, 34.59153078349082], [-77.38040429104439, 34.59180806093106], [-77.38047564488069, 34.59222100967992], [-77.3804756672459, 34.5922223389041], [-77.38047537527673, 34.59222400306041], [-77.38046556571541, 34.592648357769264], [-77.38062270134486, 34.593207639811176], [-77.38048767332636, 34.59349429922243], [-77.380334430109, 34.59378790338067], [-77.38008231810366, 34.594114136095094], [-77.3798422998074, 34.59417786891979], [-77.37995801888968, 34.59441975585342], [-77.3800423200827, 34.5944506057854], [-77.38008222463712, 34.594480386170154], [-77.38041887788059, 34.59477790524214], [-77.38044626923367, 34.59480623834256], [-77.38069079511561, 34.5951632818567], [-77.38067973468131, 34.59537005195551], [-77.38077439019507, 34.59557579883291], [-77.38065818010693, 34.595788823554294], [-77.38041279994954, 34.596052471555446], [-77.38021839833061, 34.59622766595316], [-77.38008175616159, 34.59632292562941], [-77.37959982717096, 34.596688704654994], [-77.37929339597495, 34.59694209684662], [-77.37921448058931, 34.59698927967367], [-77.37913669007366, 34.597085491144924], [-77.37850496454388, 34.59778051145327], [-77.37836267518757, 34.5978928952118], [-77.37831539648687, 34.59805296008006], [-77.37818657330325, 34.59841432815693], [-77.37806783177928, 34.59893775597887], [-77.37850450804206, 34.599465724592406], [-77.37858516641349, 34.59962540278204], [-77.37868153120303, 34.599698453916865], [-77.37902584516637, 34.599936217038795], [-77.379103218941, 34.600062254910384], [-77.37929256408015, 34.60012332736286], [-77.37951926528469, 34.60018263595056], [-77.37968663272429, 34.60031144202712], [-77.37972362097783, 34.600357561905916], [-77.37978184473765, 34.60038903019276], [-77.37997151043515, 34.60047933184745], [-77.38008070398455, 34.600496026218885], [-77.38027301674666, 34.60052542818622], [-77.38027775573926, 34.60052585047534], [-77.38028118241543, 34.600525665337074], [-77.38047481541457, 34.60052408076251], [-77.38067395518192, 34.600470527994844], [-77.38086894796781, 34.60046532511773], [-77.38099940701954, 34.600497592079776], [-77.38116098659489, 34.60050489730825], [-77.38126305697894, 34.60050340873294], [-77.38142854436978, 34.600398049212444], [-77.38147625856756, 34.60037449283356], [-77.38149309434925, 34.60031922990933], [-77.38149588201311, 34.60014202558092], [-77.38149045025989, 34.59996306729952], [-77.38165734802286, 34.59975827152516], [-77.38188893949948, 34.599485667798604], [-77.38229498461573, 34.59934005965073], [-77.38244568195404, 34.599287422688676], [-77.38281205020203, 34.59955759856196], [-77.3828397305513, 34.59957843977226], [-77.38313956861852, 34.5999051352411], [-77.38315391399297, 34.599989078346354], [-77.38316295718622, 34.60032632931487], [-77.38319215204996, 34.60036685331161], [-77.38323365864338, 34.60044805963999], [-77.38325568820504, 34.60050150302246], [-77.38329578252485, 34.60051946796878], [-77.38338260186971, 34.60055876216593], [-77.38351702760967, 34.600580587852896], [-77.38362774165034, 34.600613781746], [-77.38367468399991, 34.600626567494054], [-77.38376683848699, 34.60066385671412], [-77.38393438215985, 34.60073391688684], [-77.38402183102278, 34.60075565396549], [-77.38420900913954, 34.600823037494344], [-77.38423609219207, 34.60082704987597], [-77.3844159295657, 34.6008576381059], [-77.38452570277191, 34.60086078855451], [-77.38471297658418, 34.600847475744786], [-77.38481007076683, 34.60074404468023], [-77.3849386837101, 34.60063347501142], [-77.38505759409927, 34.60047780925356], [-77.38520426637334, 34.60033671356577], [-77.38546348227804, 34.60027396609315], [-77.38559841118985, 34.600183898762964], [-77.3857018896907, 34.60027344435856], [-77.3858080265605, 34.60036963649206], [-77.38591605675299, 34.60043639315208], [-77.38599246902858, 34.600505925785946], [-77.38612888862473, 34.600600972063404], [-77.38623942550255, 34.60073201596123], [-77.38638652683812, 34.600845725814864], [-77.3865467317964, 34.600939683795445], [-77.38664803972694, 34.60095484855875], [-77.38678062594997, 34.60096127180461], [-77.38709066061053, 34.60094328724596], [-77.38717475809548, 34.60088315220215], [-77.38727787350224, 34.60089579786649], [-77.3875688818077, 34.60085222784578], [-77.38765427773006, 34.60086062362323], [-77.387873234951, 34.60082434708723], [-77.38796301613232, 34.600750997641434], [-77.38827065373975, 34.6005323865062], [-77.38838847295493, 34.60045591511507], [-77.38875131337187, 34.60033283212527], [-77.38922679989193, 34.6002136935718], [-77.3895395672565, 34.60017083025328], [-77.38983282347527, 34.600105296938544], [-77.3900443510569, 34.60006425367427], [-77.3903278112264, 34.60006010024588], [-77.3907885223228, 34.60000441890392], [-77.39111604244128, 34.60003676778325], [-77.39136256462403, 34.60015236540684], [-77.39184061795625, 34.600280475232104], [-77.39190424149712, 34.600301040470086], [-77.39193212613118, 34.6003057820986], [-77.39198198191548, 34.600328632673005]], [[-77.34989270384742, 34.75700671121892], [-77.34979745456434, 34.756352391926924], [-77.34995992228168, 34.75537824145456], [-77.34994697086309, 34.75535712464557], [-77.34998201535744, 34.75533784857056], [-77.34999923075094, 34.75533980153378], [-77.3500138290946, 34.75533678697287], [-77.35115573333694, 34.75510098302717], [-77.35131602895049, 34.75493121552564], [-77.35183131618462, 34.754422890973586], [-77.35210591707096, 34.75427430624618], [-77.35249129494645, 34.7540332415178], [-77.3526965984963, 34.75391283204474], [-77.35283324714518, 34.753832687537006], [-77.35290736231252, 34.753732454485146], [-77.35295885777704, 34.753506889243944], [-77.35295674671873, 34.753481986578926], [-77.3529542848407, 34.753469653740694], [-77.35294375204202, 34.75345230346703], [-77.35286766242105, 34.753339169754994], [-77.35272800838985, 34.75326968585895], [-77.3527122626269, 34.75326158063955], [-77.35265825158427, 34.75324062730014], [-77.3524089199386, 34.75323132832354], [-77.35214755745193, 34.75310564893784], [-77.35194906745735, 34.75306011955369], [-77.35186615186377, 34.753037677313806], [-77.3516833143858, 34.75301530572508], [-77.35157903370536, 34.75299501212256], [-77.35150971402737, 34.753003806502605], [-77.35126973549797, 34.75302869028502], [-77.35068822697988, 34.75330589752115], [-77.35062546295457, 34.7533547808849], [-77.35055674039673, 34.753420953924824], [-77.35012524294743, 34.753870524730516], [-77.34996674054909, 34.75404780222297], [-77.34978107791306, 34.75440512624872], [-77.34972391736682, 34.75447097089821], [-77.34962583290702, 34.75456318802812], [-77.3493743720034, 34.75479960650672], [-77.34882106477448, 34.75527121262245], [-77.34861050912572, 34.75539950828383], [-77.34816463813988, 34.755468679413326], [-77.34755650079056, 34.755649683700454], [-77.34750939642147, 34.75566205233214], [-77.34748276772694, 34.7556770881596], [-77.34745282222191, 34.75569930616823], [-77.34710968240717, 34.75598487877881], [-77.34709076866245, 34.75600781627138], [-77.34692093166346, 34.75625964911581], [-77.34686209907699, 34.75640384236922], [-77.34638479729593, 34.75682057022469], [-77.34609956566304, 34.75700493660845], [-77.34584189328628, 34.75727729194935], [-77.3454929731531, 34.75774417332099], [-77.34543739869608, 34.75792527903057], [-77.3452686324758, 34.75819729011906], [-77.34514318550902, 34.758453010915304], [-77.34503018566087, 34.75861080332467], [-77.34474908101703, 34.7589762175686], [-77.34473080432761, 34.75899694960567], [-77.34472559119689, 34.759009019010655], [-77.34453038060092, 34.75926812701587], [-77.3445403065677, 34.75945344210362], [-77.344543337809, 34.75951003818435], [-77.34454505039535, 34.75954201395629], [-77.34456564527687, 34.75960738408225], [-77.34466012161671, 34.759847714446735], [-77.34475036745974, 34.75996901956289], [-77.34484666503171, 34.76009846042141], [-77.34497275442632, 34.76026794420203], [-77.34543943086894, 34.76043104063061], [-77.34587324862713, 34.76078975389706], [-77.3461843624473, 34.76143499355247], [-77.34671197553511, 34.762529199058015], [-77.34714391655056, 34.76227392185965], [-77.35084245548066, 34.76120598023573], [-77.35054395559736, 34.75965946961998], [-77.35028721199518, 34.75847221663702], [-77.35024028684602, 34.75824115892469], [-77.35018146212926, 34.758067532463066]], [[-77.2911937122984, 34.641530925598396], [-77.29147777367913, 34.641222159636584], [-77.29201009230147, 34.64126550949367], [-77.29221458422492, 34.64127889396432], [-77.29227255365919, 34.64151078821777], [-77.29201037593296, 34.641682655052165], [-77.29161093806087, 34.64188685022381]], [[-77.36368460605358, 34.547439488623354], [-77.36367875526155, 34.54745395883952], [-77.3636013931672, 34.547529340034885], [-77.3634471451068, 34.547732142284346], [-77.36336666860029, 34.54778153848392], [-77.36330446066152, 34.54785083402389], [-77.36315275711718, 34.54786888530189], [-77.36290876181403, 34.547986256954005], [-77.36280636989872, 34.54800568038675], [-77.3625148193947, 34.548044754175294], [-77.36246234015562, 34.548118801341104], [-77.36248266099112, 34.548344923285256], [-77.36248574403255, 34.54837369931965], [-77.36267287256078, 34.548437461008184], [-77.36290045865704, 34.548349697660754], [-77.36328402541103, 34.54823805832858], [-77.36329566498821, 34.548235911629185], [-77.36330731763768, 34.548234682427434], [-77.3636887710106, 34.5482140459318], [-77.36433928672251, 34.548254705304444], [-77.36447345895387, 34.54823704028895], [-77.36486900562248, 34.54777217254957], [-77.36473324656993, 34.54763824886702], [-77.36464182505208, 34.547560070160245], [-77.36448908644388, 34.547552441031776], [-77.36420872798833, 34.547552455736856], [-77.36376401840235, 34.54744167834031], [-77.363734763754, 34.54742839933805], [-77.36370759614495, 34.547389706495736]], [[-77.38846686616391, 34.5654842809632], [-77.38850605896553, 34.565166094049616], [-77.38864459407364, 34.56502503452864], [-77.3887300927326, 34.56473820551166], [-77.38837928955155, 34.5647773238356], [-77.3883630316603, 34.56480722187433], [-77.38813198135033, 34.56522004176361], [-77.38817733408672, 34.565438059688546], [-77.38798658749363, 34.56607103475848], [-77.38800958112508, 34.566086830024126], [-77.38836279482908, 34.56614879828906], [-77.3883813970996, 34.5660332092854], [-77.38840543702489, 34.565651035397714]], [[-77.39565111241059, 34.523257798400415], [-77.39565747768492, 34.52326056932489], [-77.395661276469, 34.52325633143917], [-77.39566936573269, 34.52324792514513], [-77.39565766795864, 34.52325209950463]], [[-77.40356869281281, 34.67644063755304], [-77.4028226274931, 34.67611906719955], [-77.40240000662217, 34.676024998291616], [-77.40195776771989, 34.67594351101577], [-77.4015969894019, 34.67592600740573], [-77.40145704016078, 34.675706044955945], [-77.4013044329562, 34.67572895607696], [-77.40127459794118, 34.6757440330397], [-77.40114062799421, 34.67583507521038], [-77.40114035963673, 34.67583682816846], [-77.40114131415702, 34.675837737502896], [-77.40114349663591, 34.675839769041666], [-77.40131174185916, 34.67580468918312], [-77.40148989165105, 34.67609896955582], [-77.40152706844502, 34.676123162062716], [-77.40153736187946, 34.67613185238414], [-77.40182567067345, 34.67658182012685], [-77.40214440945648, 34.676758315554125], [-77.40242744063303, 34.67748337520795], [-77.40243033215599, 34.67753171018336], [-77.40242324047196, 34.67754396779251], [-77.40242291120121, 34.67755901958475], [-77.4022708945831, 34.67849086960331], [-77.40217469529135, 34.67857525015061], [-77.40213661608773, 34.678587140241646], [-77.4020677431248, 34.67872512397529], [-77.40169797958563, 34.679366016591764], [-77.40160014037887, 34.679492419587994], [-77.40138366183557, 34.67960002657709], [-77.40131346812586, 34.67967164574423], [-77.40123487888573, 34.67973073654173], [-77.40123733052012, 34.679814623450355], [-77.40131053649635, 34.67985452464768], [-77.40142703281575, 34.679830854919395], [-77.40160360702713, 34.67995989061561], [-77.40171937579035, 34.67992772794782], [-77.40174582084232, 34.68004886235783], [-77.40182143023912, 34.68012902052468], [-77.40217496227572, 34.680316196399204], [-77.40223422714678, 34.68036255825251], [-77.40235852205844, 34.68044674932575], [-77.40277524384038, 34.6807070763311], [-77.40300587585024, 34.680862279463724], [-77.40311126641593, 34.68093003915286], [-77.40331793367369, 34.68104583138472], [-77.40376470903479, 34.68125084787013], [-77.40388770076214, 34.68129111883601], [-77.40399813265628, 34.6813410624005], [-77.40433899734398, 34.68144215016417], [-77.4044821763086, 34.68145111019635], [-77.40482508400393, 34.681489147568854], [-77.40510880270472, 34.6815001043867], [-77.40526343329373, 34.68145804850579], [-77.40545420439297, 34.68140052535362], [-77.4054566673774, 34.681400060807256], [-77.40545932424922, 34.68139613690003], [-77.40558899655757, 34.681242434951905], [-77.40566525123509, 34.68109200456159], [-77.40567068307136, 34.680917158241556], [-77.40572116146589, 34.680622346652946], [-77.40570762564512, 34.68037095622897], [-77.40557088815548, 34.67990471329748], [-77.40553290688528, 34.67980820446537], [-77.40505418577064, 34.679619268954184], [-77.4050154326388, 34.679610040358995], [-77.40448116047153, 34.67943001759034], [-77.40443480011932, 34.67940230122615], [-77.40440764135354, 34.67938491943497], [-77.4043305461153, 34.6793298447009], [-77.404035915396, 34.67909364298241], [-77.40394517354301, 34.678880376959924], [-77.40376199527606, 34.678761569085054], [-77.40352341743085, 34.67812415625105], [-77.40327474198328, 34.678072150912925], [-77.40337223814198, 34.67787614620458], [-77.40339887031993, 34.67765930101759], [-77.4037659213989, 34.6772869271698], [-77.40410464012032, 34.67731751826735], [-77.40433397445764, 34.67753804626887], [-77.40434276281144, 34.67762665209808], [-77.40438010843819, 34.67766978567454], [-77.40483326067077, 34.67802659676211], [-77.40545398666691, 34.67804565497859], [-77.40546503613919, 34.67804674884404], [-77.40546849959802, 34.67804576525383], [-77.40555330071507, 34.67801435777581], [-77.40584000199873, 34.67791198066533], [-77.40593126814798, 34.67785669023648], [-77.40611537551553, 34.677718010583966], [-77.40575559263706, 34.6774836374743], [-77.40565597773993, 34.6773984549813], [-77.40544515194271, 34.67716680208568], [-77.40524696447117, 34.676854928963735], [-77.4052381084683, 34.6768068350423], [-77.40520893490978, 34.676729525241775], [-77.40464310421223, 34.6766087032913], [-77.40452905582852, 34.67651542092402], [-77.40393827773562, 34.67669186993453]], [[-77.38832929729317, 34.71064963032895], [-77.38801509306091, 34.71086221893507], [-77.38751306761998, 34.711253734426144], [-77.38735294018733, 34.71127585017379], [-77.38726677617156, 34.71137976791932], [-77.38732374103567, 34.71190669333422], [-77.38737422060089, 34.71237360659011], [-77.38819142893414, 34.71264760728716], [-77.38839419225557, 34.711948473213226], [-77.38847708768446, 34.71180339268723], [-77.38847998273977, 34.71162277145673], [-77.38864623962125, 34.710950809611894]], [[-77.41120476941481, 34.72684037480822], [-77.41089907492716, 34.72691675451463], [-77.4110998539004, 34.727202537595794], [-77.4114200520323, 34.727098946382434]], [[-77.38313919137897, 34.65494562472831], [-77.38294126460544, 34.655055295127525], [-77.38287135398764, 34.655114508889284], [-77.38272195238537, 34.65522339318578], [-77.38266901287942, 34.655293255953694], [-77.3826502753719, 34.65535593784815], [-77.38263164831297, 34.655472626631074], [-77.38264059131701, 34.65556827897727], [-77.38277742078695, 34.6559420397281], [-77.38278695534814, 34.655970157037316], [-77.3827945705738, 34.65598819333911], [-77.38282709125255, 34.6560777179018], [-77.38291732478008, 34.656319536047874], [-77.38293673915551, 34.656371564480786], [-77.38296628376656, 34.656451639150376], [-77.38303293850008, 34.65666503251143], [-77.38314128537561, 34.65676543645191], [-77.38332755032894, 34.656972178298915], [-77.3835564638372, 34.656776716202685], [-77.38360615823375, 34.65676574019032], [-77.38363660388123, 34.65669727940471], [-77.38361472689762, 34.65666124187338], [-77.3835581837335, 34.65652768312301], [-77.38348770367035, 34.656338354528906], [-77.38346671887784, 34.65629863853281], [-77.38336470688438, 34.65600748835516], [-77.38332852687333, 34.655895636429506], [-77.38331584236074, 34.65577728897359], [-77.38337277232996, 34.65560762547136], [-77.38351844792749, 34.65529934087371], [-77.3836262801423, 34.655276658485285], [-77.38371181540657, 34.65499885835618], [-77.3835431806562, 34.654864295277704], [-77.38335245505036, 34.65488249476836], [-77.38323523249646, 34.65492510500713]], [[-77.3924238269242, 34.710590318246744], [-77.39220641889537, 34.710543654375186], [-77.39198892663137, 34.71045005522075], [-77.39184501294153, 34.71039186225647], [-77.39155737827764, 34.710571173334635], [-77.39134297942597, 34.710273013270985], [-77.39132577370631, 34.710264420246276], [-77.39125465505126, 34.71017451480154], [-77.39119175307131, 34.710237266537305], [-77.39123959062964, 34.71031611105061], [-77.39130628610087, 34.71055693251064], [-77.39137506276688, 34.71070594715563], [-77.39144073284385, 34.71097353959318], [-77.3916172158846, 34.71149762261395], [-77.39226671596883, 34.71183009101223], [-77.39247689174064, 34.71182205930504], [-77.39305454706044, 34.711791082193756], [-77.39314883533342, 34.711776288857436], [-77.39370174308057, 34.71201969838117], [-77.39381952449469, 34.71199564611609], [-77.39421100982794, 34.712017003311956], [-77.3943579224862, 34.71196757304038], [-77.39484940304996, 34.7117968958692], [-77.39491965665997, 34.711679437121646], [-77.39508682761858, 34.71166453741627], [-77.39520056225531, 34.71164020540323], [-77.39519037344432, 34.711570180000784], [-77.39514135717877, 34.71147640916897], [-77.39509459513496, 34.711386950565476], [-77.39505403328378, 34.711309352261424], [-77.39473317053988, 34.71109130757105], [-77.39471838309024, 34.71091231626711], [-77.39468992749781, 34.71088617748817], [-77.3946736314228, 34.71087839793849], [-77.39459543214458, 34.71086928955306], [-77.39448654129751, 34.710970980971084], [-77.39421498110354, 34.71086101678264], [-77.39403422389144, 34.710872693600194], [-77.39396446222035, 34.710865351688696], [-77.39373014406804, 34.71081594043241], [-77.3936197060716, 34.71080740629174], [-77.39346954823773, 34.71080415445123], [-77.39340353700274, 34.71083690164458], [-77.39330795267735, 34.7107928214747], [-77.3929767296234, 34.71074638123235], [-77.39275563986355, 34.71086047695357], [-77.39261622899934, 34.71063486713026]], [[-77.43156775311962, 34.67585677069586], [-77.43187002928443, 34.67596004201467], [-77.43227332343012, 34.67620184561925], [-77.43227732314828, 34.67624863189213], [-77.4322793569216, 34.67627242188549], [-77.43230195612716, 34.67653677849624], [-77.43231516179699, 34.67666700975205], [-77.43236677084855, 34.67683897827282], [-77.43225004991123, 34.67697232657762], [-77.43213515221774, 34.67703750108069], [-77.432017162045, 34.67708734256606], [-77.43185831704548, 34.677079675309884], [-77.43145320429738, 34.67702680825286], [-77.43140815291959, 34.67697767874557], [-77.4310792681488, 34.67655375604279], [-77.43094103905794, 34.67637754180979], [-77.43092093995958, 34.67635620951029], [-77.43092945113247, 34.676308800695956], [-77.4309690356714, 34.67628076778966]], [[-77.39968565229891, 34.57034645684096], [-77.39973886730006, 34.57039095224377], [-77.3998490112471, 34.570389407170204], [-77.399878218984, 34.57022067286773], [-77.39986563280885, 34.56947133358469], [-77.3989994204315, 34.568591089301975], [-77.39858559050575, 34.56840374437343], [-77.39821150188024, 34.56842111422705], [-77.39796804321786, 34.56830924502051], [-77.39750468517163, 34.568113722124934], [-77.3974582370155, 34.56808309298561], [-77.39742359755579, 34.56808179737515], [-77.39740069655865, 34.56810404780948], [-77.39670156998172, 34.56815857760327], [-77.39663566791391, 34.56816016305988], [-77.3965892041108, 34.56819574161519], [-77.3964089333052, 34.568271822323844], [-77.39627243261356, 34.568324645278814], [-77.39624169069106, 34.56834550580648], [-77.39609032983631, 34.56853007628246], [-77.39610737141211, 34.56859517036219], [-77.39615314861089, 34.56873329909427], [-77.39618212955216, 34.568793267378396], [-77.39624164950592, 34.568861450497366], [-77.39637077838307, 34.568987300967144], [-77.39653228352682, 34.569103170577], [-77.39658057566987, 34.56915549427743], [-77.39663558703565, 34.569237950097474], [-77.39696766015054, 34.56953160635837], [-77.39734830390233, 34.569834578344036], [-77.39737286976363, 34.56988557434143], [-77.3974234794568, 34.56988765180475], [-77.39747608654301, 34.569872833491466], [-77.3980329564416, 34.56992811389246], [-77.3982114160082, 34.56995883797485], [-77.3985824985821, 34.57005640824437], [-77.39862039448043, 34.57005942117718], [-77.39899935092649, 34.57008954930736]], [[-77.38587981041937, 34.53017989808091], [-77.38529630609295, 34.53019545171085], [-77.38431275164339, 34.530769657171945], [-77.3848362420844, 34.530970204392446], [-77.38528189561512, 34.53083348568911], [-77.38573530623711, 34.53084749345115], [-77.38606722022004, 34.53082079485244], [-77.38651739411696, 34.530451675504345], [-77.38608271380973, 34.53013451955053]], [[-77.44026407132215, 34.61956906010907], [-77.4402694835677, 34.619261964151505], [-77.44022723624326, 34.61921117404087], [-77.44032438161193, 34.61903928600395], [-77.4402765589458, 34.618645015488], [-77.44053588525227, 34.61864124962923], [-77.44066455458076, 34.61834800819922], [-77.44072635741233, 34.61818300102595], [-77.44083315951582, 34.61796025518388], [-77.44084983913666, 34.61792593875383], [-77.44084683375925, 34.61791545060623], [-77.44085018784503, 34.61786868777685], [-77.44085177871096, 34.617607469344975], [-77.4408854780595, 34.61754653014386], [-77.4408822848329, 34.61744308273494], [-77.44062602955755, 34.616909043120984], [-77.44061765543108, 34.61688438650526], [-77.44060805038976, 34.61686406093014], [-77.44057540092425, 34.616864755107024], [-77.44055889826565, 34.616885549823174], [-77.44005721312583, 34.61689240008578], [-77.43975043412581, 34.61699815211005], [-77.43958076659314, 34.61707255495697], [-77.43945554121737, 34.61711883741562], [-77.43910018383748, 34.61723760403467], [-77.43900286806435, 34.617270128292716], [-77.43885933632723, 34.617318098544686], [-77.43864945019881, 34.617429710806505], [-77.43862993095941, 34.61744040206609], [-77.43862250102738, 34.6174467235404], [-77.43861722346095, 34.61745466119441], [-77.43859159015204, 34.61750043450727], [-77.43849711753953, 34.61767352204206], [-77.43856038204662, 34.6177346981068], [-77.43858779834034, 34.6178322948897], [-77.43876449446716, 34.617932072226125], [-77.43897486014944, 34.61794617039506], [-77.43930094162498, 34.61799824623559], [-77.43947544862641, 34.61824850850569], [-77.43957537275057, 34.61839962857559], [-77.43985346242519, 34.6185792323765], [-77.44006840392947, 34.61919159517415], [-77.44007032787762, 34.61925590445931], [-77.43981722087668, 34.6196592052686]], [[-77.40342457918346, 34.669083045796135], [-77.40357795300055, 34.66908684685567], [-77.40365072805898, 34.669092292650575], [-77.4039859946364, 34.66914477173039], [-77.40363124437089, 34.66890284688408], [-77.40335162294292, 34.66892270028387]], [[-77.35635253414938, 34.66197382601991], [-77.35638190724202, 34.66213247411508], [-77.35651440219942, 34.66216478902042], [-77.35657937132967, 34.66218548155835], [-77.35685359849867, 34.66225909479222], [-77.35698612531971, 34.66231044161383], [-77.35702187513388, 34.66226480991975], [-77.35702150085407, 34.66224038535209], [-77.35686979982171, 34.66206545235114], [-77.35679889743753, 34.66198723704168], [-77.35652035696226, 34.6620842526403], [-77.35644239189821, 34.66170216128466], [-77.35641700873687, 34.66168074292295], [-77.35627787901137, 34.66157060919051], [-77.35630571164596, 34.6617209367967]], [[-77.42840126826995, 34.748455120382985], [-77.42872509563033, 34.748264889411836], [-77.42877640226725, 34.748261440921254], [-77.42881996851767, 34.74820825200054], [-77.42896911530238, 34.747887104681936], [-77.42902464676378, 34.74778913189171], [-77.42908759877723, 34.7477067506334], [-77.42906723235468, 34.74765873813608], [-77.4290634436031, 34.74764998913371], [-77.42905156803869, 34.74764789385347], [-77.42889257889766, 34.74768641190882], [-77.42884519890039, 34.74768468480082], [-77.42844022326263, 34.74747385959586], [-77.4283173126337, 34.74745841214996], [-77.42775222624843, 34.747314414856284], [-77.42767611517766, 34.74727054276852], [-77.42754186743252, 34.74740214710169], [-77.42772625119882, 34.747894470499915], [-77.42799790827519, 34.74810471929386], [-77.4280745155946, 34.74829699682702], [-77.42818610606085, 34.748472614692716]], [[-77.41036420854773, 34.72784791970014], [-77.41060109150627, 34.727684766445755], [-77.41063389870017, 34.72766268042324], [-77.41063669586624, 34.727653163601424], [-77.41078984116945, 34.727437661351736], [-77.41052672526973, 34.7269677202534], [-77.41038685496687, 34.72688140104526], [-77.41014491370971, 34.72665301002141], [-77.41001733759197, 34.72651289106088], [-77.40996897257497, 34.72656161147263], [-77.40992038522097, 34.72657448714854], [-77.40974942101221, 34.72657675055068], [-77.40963818252156, 34.726715091346186], [-77.40962092794447, 34.72674074967938], [-77.40961913422024, 34.726755171790764], [-77.40980615820598, 34.72709364910724], [-77.40981267341195, 34.72712081871158], [-77.40983087103629, 34.7271565303168], [-77.41004464615659, 34.7274704404562], [-77.4102196613253, 34.727797369237486], [-77.41022812877735, 34.72784028120883], [-77.41033616854219, 34.72790998512599]], [[-77.34178694903085, 34.65171600606807], [-77.3418699326557, 34.652048301501594], [-77.34186583728771, 34.65230969072788], [-77.34198990869406, 34.652572696756174], [-77.34206230767211, 34.65270472131772], [-77.34210083676088, 34.65273933584947], [-77.34225318632033, 34.65281845502123], [-77.3424795866282, 34.65288010536405], [-77.34254483712465, 34.65300850138679], [-77.34262510013541, 34.65304946968746], [-77.3428518393514, 34.65313916440101], [-77.34303467592184, 34.65318692070091], [-77.34318491397606, 34.65320330863548], [-77.34338752605323, 34.65321006613592], [-77.34350725611957, 34.65321405946542], [-77.34362441537556, 34.65316755845494], [-77.34386749832832, 34.653413342969586], [-77.34433007643315, 34.652918684731304], [-77.34461942179122, 34.653025501732664], [-77.3445085363549, 34.65279092851851], [-77.34449351874218, 34.65259509192214], [-77.34456502439288, 34.65236117533856], [-77.34426211983472, 34.65219091698795], [-77.34417735332103, 34.65207283197584], [-77.34402819938985, 34.65201287089035], [-77.34389572461427, 34.65196100120971], [-77.3436785703651, 34.65191213323284], [-77.343556164005, 34.651864568179505], [-77.34320929019546, 34.651693026822386], [-77.34320031961359, 34.65168712408473], [-77.34312946891916, 34.6516347388751], [-77.34283487863684, 34.65146192573212], [-77.34267314704053, 34.65160629706923], [-77.34252251057367, 34.65150076187216], [-77.34225942324967, 34.6514898142724], [-77.3421928633303, 34.651453631129506], [-77.34214340976055, 34.651506885520234]], [[-77.33229781635163, 34.653622577522036], [-77.33235333922799, 34.65366548376633], [-77.33239050769544, 34.65365968594346], [-77.33246544842348, 34.65369025909675], [-77.33284299159949, 34.65384428347385], [-77.33308803233213, 34.653944250039594], [-77.33332386524292, 34.654040460096084], [-77.33352854349775, 34.65429773259531], [-77.33363247917865, 34.65457758176039], [-77.33392752169321, 34.65505525469875], [-77.33394098972992, 34.65508513793672], [-77.33393405841599, 34.65512863436617], [-77.33396107356268, 34.65510242285608], [-77.3339637115606, 34.65508904097471], [-77.33396538881756, 34.65508179070247], [-77.33397077119595, 34.65505597110849], [-77.33404485462053, 34.654497499711155], [-77.334124126862, 34.65432031799876], [-77.33415116475521, 34.65421231723286], [-77.33423839710163, 34.65401089461738], [-77.33415791093357, 34.65353761911362], [-77.3339417449149, 34.65341251197501], [-77.33393431647711, 34.65340619833691], [-77.33392026597748, 34.65340000705158], [-77.3336971284297, 34.653301682628054], [-77.33358980042502, 34.65325438855615], [-77.33328353443237, 34.65311943109864], [-77.33290642321832, 34.65304022759433], [-77.33244648718447, 34.653481126448135], [-77.33236197446452, 34.653517645143005]], [[-77.44203055602294, 34.743798455733604], [-77.44204663264895, 34.74395323350907], [-77.44209179141089, 34.744011135868746], [-77.44208570817347, 34.74419916445777], [-77.4421033791097, 34.744452714580376], [-77.44249626451358, 34.74455898783357], [-77.44272536852141, 34.74419320338395], [-77.44270844418116, 34.74418442192342], [-77.44223438076864, 34.74395164364229], [-77.44217255935375, 34.74389899844201]], [[-77.42702617183573, 34.62592746836778], [-77.42674117661842, 34.626296461374075], [-77.4266939894643, 34.62639135189304], [-77.42643092147924, 34.626660414272195], [-77.42622383824461, 34.62673482915629], [-77.42551495825369, 34.627082311902086], [-77.42549643696695, 34.627088562980305], [-77.42547397359324, 34.62709179997169], [-77.42540259587268, 34.62712853238901], [-77.42551067284613, 34.62714060236246], [-77.42562517686048, 34.62714472953076], [-77.42614447539654, 34.62722718445683], [-77.42660429372016, 34.627294151611935], [-77.4267938985522, 34.62734773330757], [-77.42723613459029, 34.627344577308286], [-77.4273050996863, 34.627637171560124], [-77.42770997460354, 34.62749176012125], [-77.42779406328158, 34.62728447606901], [-77.42786618149381, 34.627165054765044], [-77.4280402631713, 34.62675119696263], [-77.42803891464695, 34.62674660241733], [-77.42803613818299, 34.62674391175811], [-77.42774079732874, 34.62646231270614], [-77.4276288787955, 34.62632746893826], [-77.4275419287132, 34.625957300828475], [-77.42751639019352, 34.625787787516686], [-77.42750415347176, 34.625634348244134], [-77.4274879985478, 34.62558553696114], [-77.42746832257465, 34.62543225011251], [-77.42740933455066, 34.625291427058876], [-77.42738516712424, 34.6252541516975], [-77.42733210160928, 34.62526439178791], [-77.42723386180876, 34.62531444024079], [-77.42714544469612, 34.625353917858014], [-77.42713226672902, 34.62538010101369], [-77.42707578088286, 34.62548439723959], [-77.42702454558132, 34.625558698840294], [-77.42701851030773, 34.625774080010785]], [[-77.35788809865784, 34.664053788279155], [-77.35786381921442, 34.663754592993776], [-77.35751296704957, 34.6636651166028], [-77.35747011093727, 34.66364914965706], [-77.35745296829644, 34.663646371320745], [-77.35742652764766, 34.66364303234323], [-77.35716583291523, 34.66371280369735], [-77.35727388365153, 34.66381457794409], [-77.35699310662795, 34.66422391769052], [-77.35720224774668, 34.664554792372], [-77.35770524508477, 34.66412608840495]], [[-77.38750333986863, 34.56666140502196], [-77.38766512346457, 34.56665842303722], [-77.3879435340534, 34.56612363233131], [-77.38721996802472, 34.56624278810058]], [[-77.38755331191626, 34.5287517529925], [-77.38724128010318, 34.529148805640396], [-77.38804475457665, 34.52899076555765], [-77.38811527927113, 34.528752183892095], [-77.38784627923374, 34.52869060499545]], [[-77.33079653270008, 34.563655883185824], [-77.33081966766477, 34.56373586322179], [-77.33090310403803, 34.563755503447794], [-77.33086354202955, 34.56368232669692]], [[-77.3578400726613, 34.6646494495444], [-77.35783843143709, 34.664595178503355], [-77.35783484589857, 34.66456531765926], [-77.3578563646763, 34.66436274824221], [-77.35741701210944, 34.66465307105854], [-77.35765181923595, 34.665067594505615]], [[-77.40116737075094, 34.58074700101641], [-77.40106202237062, 34.580661979654344], [-77.40096901241907, 34.580614341187136], [-77.40082602307965, 34.58052576291601], [-77.40068194808028, 34.58050772202367], [-77.4005749929565, 34.58056899746661], [-77.40030978550647, 34.58087075138676], [-77.40029263777635, 34.58099356006956], [-77.40029997856237, 34.58116849234161], [-77.40035740325686, 34.58128845463399], [-77.40048309128956, 34.58136932862688], [-77.40057497698488, 34.581414300938945], [-77.40076781675154, 34.58143702449246], [-77.40077198864792, 34.58143820644187], [-77.40077452791594, 34.58143781531033], [-77.40096900118749, 34.581407860027966], [-77.40133666943807, 34.581175546807025], [-77.40136302738391, 34.58116896359955], [-77.40137741257698, 34.58115676631175], [-77.40139252376527, 34.58113908517461], [-77.40137618107089, 34.581127270313], [-77.40136302800276, 34.581102908084674], [-77.40127594534277, 34.58082517126483]], [[-77.43498527493381, 34.67747523384644], [-77.43513203288802, 34.67739428732715], [-77.43533035722868, 34.67759591591518], [-77.43535875927041, 34.6776284532342], [-77.43536880057387, 34.67768330518015], [-77.43553289287671, 34.677946272728065], [-77.43527609909232, 34.67800379611265], [-77.4351692888328, 34.67800600481368], [-77.43495380368262, 34.67801046060505], [-77.43481754269872, 34.6778543834848], [-77.43483226156967, 34.67770124937983], [-77.43483438110064, 34.6776241575422], [-77.43488857332571, 34.67754707934919]], [[-77.40110949265735, 34.573962155513236], [-77.40100571288856, 34.57393770385442], [-77.40090378723485, 34.57392143056385], [-77.4005751238917, 34.57445701642736], [-77.40055781647649, 34.57444769153874], [-77.40057223105607, 34.57446426262834], [-77.40057278738749, 34.57446669996074], [-77.4005751233305, 34.57448077437741], [-77.40080743780571, 34.574854894908576], [-77.40089051681232, 34.57492759533393], [-77.40096910504889, 34.57499636555896], [-77.40109298308221, 34.57510476744588], [-77.40117987667556, 34.575028280163345], [-77.40136309844625, 34.57501840435058], [-77.40143952850411, 34.574975964534566], [-77.40151093702708, 34.574912683976166], [-77.4015600967035, 34.574898332512056], [-77.4016081774683, 34.57484548223174], [-77.40159497161082, 34.574778824716205], [-77.40160939963296, 34.57473916204356], [-77.4015601001418, 34.5746028083805], [-77.40152269465148, 34.57457969662284], [-77.4015117634876, 34.574488874544016], [-77.40144772057303, 34.574337919614955], [-77.4014184447653, 34.57428251265656], [-77.40136311060061, 34.57415774916851]], [[-77.3717495592526, 34.59948264994257], [-77.37158848893952, 34.59987116303459], [-77.37153963922484, 34.600017580446405], [-77.37141001382656, 34.600686374987106], [-77.37139658141474, 34.600747921269146], [-77.3714099854918, 34.60076627026454], [-77.37175420011192, 34.601174579144015], [-77.37204664770678, 34.60134033693478], [-77.3721979981063, 34.60143306304518], [-77.37222852303832, 34.601444327287844], [-77.37231023371439, 34.6014654443279], [-77.37280047158238, 34.601594893691015], [-77.37298621583759, 34.60152496999935], [-77.37317258778342, 34.60154200236944], [-77.3731907271715, 34.601542868600276], [-77.37338035737442, 34.60147359262168], [-77.37343404589117, 34.601458021829565], [-77.37350930137217, 34.6014316173617], [-77.37357744505468, 34.601395724926576], [-77.3737324707781, 34.60126058400405], [-77.37374639810257, 34.6012282393485], [-77.37377457793966, 34.60117793029636], [-77.3739826576815, 34.600799984679696], [-77.37405687673603, 34.60066865647876], [-77.374160183853, 34.600562131929266], [-77.37416221445295, 34.60055463644074], [-77.37413563018201, 34.600389286629934], [-77.37410251661764, 34.60035815882517], [-77.37397194505515, 34.600233729831324], [-77.3739362420634, 34.600208300230214], [-77.37377494375585, 34.60005653522958], [-77.37371303806988, 34.59998970304139], [-77.3735500091475, 34.59983101536213], [-77.37330974518082, 34.59962323573993], [-77.37316820677395, 34.59944832503656], [-77.37304659404673, 34.599236582082746], [-77.37298700790022, 34.59916669325456], [-77.37270281989589, 34.59916768177281], [-77.37235275098614, 34.59891196422655], [-77.37226112388771, 34.59885811771571], [-77.37219892988429, 34.59873628372047], [-77.37180557491554, 34.59856621870637], [-77.3718060962936, 34.59856483169862], [-77.37180487817037, 34.59856569203996], [-77.37180459008383, 34.59856605034757], [-77.37180440266461, 34.59856689933332], [-77.3719049642885, 34.59897646168737], [-77.37173487356277, 34.599350404278844]], [[-77.38006451063556, 34.632624255258555], [-77.38007302062226, 34.632626312375145], [-77.38009513869878, 34.63263449799087], [-77.38031335295577, 34.63257924149681], [-77.38008928963632, 34.63259401009059], [-77.38007302955872, 34.6325870561318], [-77.3800199667962, 34.63256436270819], [-77.3797626220099, 34.63256827968528], [-77.37967875754654, 34.63259444218998], [-77.37965710488868, 34.63265047963111], [-77.37966339027761, 34.63267287641156], [-77.37967873564646, 34.63268869069838]], [[-77.39399160128121, 34.52752827912583], [-77.39355950767276, 34.5274770098203], [-77.39399897952653, 34.5272001082618], [-77.39431555484325, 34.52707394133725], [-77.39447217346552, 34.527052206523784], [-77.39452070104048, 34.527173701461905], [-77.39468005966889, 34.52731530225627], [-77.39444722946557, 34.52755399974127], [-77.39439516015187, 34.52760928557951], [-77.3943674311039, 34.52761444500708]], [[-77.38276936444332, 34.5309922426323], [-77.38278637758782, 34.53107397098806], [-77.38272919154593, 34.531242867381664], [-77.3829160471127, 34.53130804759033], [-77.38321630197319, 34.53117262014037], [-77.38317184155346, 34.53109068400971], [-77.38320658716337, 34.530929189380814], [-77.3829259166112, 34.530871611415535]], [[-77.44107267491421, 34.59611082159101], [-77.4411660196078, 34.59612341102161], [-77.44122936208697, 34.59612047783483], [-77.44156010601401, 34.59612487851567], [-77.44191095177126, 34.596043604943326], [-77.4419937503692, 34.596035505704805], [-77.44226968864518, 34.59603826500213], [-77.44233971418716, 34.59603731626532], [-77.44234823443155, 34.596038576766354], [-77.44268503404942, 34.596039912524866], [-77.44281628433858, 34.59624032653553], [-77.4428591799048, 34.596305826408106], [-77.44284439765038, 34.59634306096602], [-77.44274609593012, 34.59659066780943], [-77.4426855874685, 34.59672457841683], [-77.44251656940173, 34.59706587893326], [-77.44214403311524, 34.596879008330255], [-77.44200258902163, 34.59687433861343], [-77.44195454779667, 34.5968536444247], [-77.44184330824282, 34.5968292866008], [-77.44172242459497, 34.59679207173161], [-77.44156041957035, 34.59677266488416], [-77.44140597958705, 34.59675416404305], [-77.44129302510413, 34.59674063271164], [-77.44116630821375, 34.596725452683565], [-77.44077672961076, 34.59667878216091], [-77.44078461894918, 34.59666425064369]], [[-77.32612125801177, 34.56013513219771], [-77.32612382603209, 34.560134869682784], [-77.32616725993918, 34.56017813952291], [-77.32612257426044, 34.56015354802108], [-77.32606896373403, 34.56051120189758], [-77.32582713416024, 34.560496876119984], [-77.32580359690058, 34.56026310812517], [-77.32611283866612, 34.56013777887711]], [[-77.43149261294232, 34.5039256987839], [-77.43180311708683, 34.50389191818266], [-77.43198130572534, 34.503715848841736], [-77.43200373963741, 34.50369235868445], [-77.43200849244327, 34.50367812979091], [-77.43201730877102, 34.50365173608371], [-77.43206396027654, 34.503512074995136], [-77.43197695731766, 34.503382274029065], [-77.4319703898273, 34.50333841805775], [-77.43185511812209, 34.50325384901062], [-77.43164141205955, 34.503321636940555], [-77.43131198015695, 34.503356140950366], [-77.4312679583805, 34.503471470845874], [-77.43126252123811, 34.5034806367565], [-77.43125235611267, 34.50351234638], [-77.43122132451596, 34.50360914802108], [-77.43121223172031, 34.503637512053785], [-77.43133267238767, 34.50380640875102]], [[-77.37575769576821, 34.56163895037368], [-77.37592600977112, 34.561641762479056], [-77.37615164778549, 34.56158847534016], [-77.37642667120717, 34.561516389652006], [-77.37654560956145, 34.561505875913745], [-77.37673468899288, 34.561564578963335], [-77.37675228947704, 34.56156404889709], [-77.37693953013388, 34.56155081585031], [-77.37700223397465, 34.56151753847732], [-77.37704922895992, 34.561416666098125], [-77.37712254984075, 34.56128791655101], [-77.37717320783977, 34.56110774834074], [-77.37733363897519, 34.560992981168226], [-77.37745251906138, 34.56081579633196], [-77.37752568389695, 34.56058753008115], [-77.37772785825715, 34.56005964936675], [-77.37776643171354, 34.55996296706113], [-77.37780984680927, 34.5599151684481], [-77.37795116501468, 34.559654257628736], [-77.37812811328831, 34.55902016854071], [-77.37831120480479, 34.55877294693147], [-77.37823968266736, 34.55845298201356], [-77.37781256324408, 34.558307236405504], [-77.37772837184124, 34.55839473378076], [-77.37766472668336, 34.55830645807126], [-77.37757935231254, 34.558250138396595], [-77.3769406074062, 34.55815756925598], [-77.37670002622654, 34.558117564858705], [-77.3765466876526, 34.55815983099913], [-77.37646261248622, 34.55841109257122], [-77.37635212992593, 34.5586420541663], [-77.37615248593644, 34.559022164742224], [-77.37606126889958, 34.55921981706857], [-77.37592052327132, 34.5593383427144], [-77.37560060688192, 34.559638990472706], [-77.37536431969247, 34.559971998017545], [-77.37515070369349, 34.56006821541442], [-77.37497033506133, 34.560138380794825], [-77.3748017394062, 34.56034869721323], [-77.3746856415854, 34.560483284889365], [-77.37457616424646, 34.560839549637414], [-77.37444503856543, 34.56110800118525], [-77.37444641428738, 34.561249023977425], [-77.37444549810154, 34.5613897761846], [-77.3744438938364, 34.56146166789171], [-77.37457592101649, 34.56154473820577], [-77.37462312096903, 34.56159723236518], [-77.37473631722096, 34.56163180920958], [-77.37477285547237, 34.56164186065772], [-77.3749327210952, 34.561643492285135], [-77.37496982254456, 34.56164431966672], [-77.37502009736346, 34.56164509811976], [-77.37536375887093, 34.561642642888486], [-77.37563182188153, 34.5616384184172]], [[-77.38017450847728, 34.72902789417741], [-77.38039177598903, 34.72917611439357], [-77.38044751403413, 34.729170678181774], [-77.3806788662769, 34.72929167606512], [-77.38074461123745, 34.72928242249369], [-77.38083782581822, 34.72929632004931], [-77.38099107793872, 34.729313692141055], [-77.38099261988883, 34.729313862178145], [-77.38099311201063, 34.72931362688231], [-77.38099426358431, 34.72931376732909], [-77.38122467637803, 34.72931920530951], [-77.38133179731602, 34.72925132529464], [-77.38140898488402, 34.7292464390416], [-77.38169212664755, 34.729022991765085], [-77.38162615418743, 34.728976777965556], [-77.38117123709287, 34.72869957220582], [-77.38093972649187, 34.72873653323881], [-77.38066647650696, 34.72878032826108], [-77.38047925946066, 34.72887453908541]], [[-77.34773122193563, 34.65537087037951], [-77.34778481951955, 34.65537935280902], [-77.34790465773406, 34.655424613210215], [-77.34795358234207, 34.65542245632264], [-77.34798173433511, 34.655449019022385], [-77.34810192974427, 34.65546257925306], [-77.34812198943072, 34.65546378955156], [-77.34818806885983, 34.65545075177309], [-77.34826544798555, 34.65542775085161], [-77.34820127312202, 34.65530141242416], [-77.34813351416051, 34.655247242278634], [-77.34809911645598, 34.65521660125496], [-77.34806664487023, 34.65518855598372], [-77.34797548750905, 34.6551571270645], [-77.3478946238154, 34.65512924720014], [-77.34784770325832, 34.65514023789694], [-77.34773370922181, 34.655125171174454], [-77.3474299659354, 34.65498157284575]], [[-77.44399388404273, 34.7334530996748], [-77.44405298664688, 34.73337167967577], [-77.4439443384717, 34.73334259372026], [-77.44388318549046, 34.73336735005553], [-77.4438402237101, 34.73339941638226], [-77.44387446258779, 34.73344617674139], [-77.44391007689812, 34.73346102670836], [-77.44394200182201, 34.73346341129448]], [[-77.40098656004436, 34.67071904802214], [-77.40093885401005, 34.67056628225651], [-77.40078080676035, 34.67038235653226], [-77.4007488282007, 34.670645547214114]], [[-77.39071929314795, 34.62295212880511], [-77.39059080171707, 34.62289298734436], [-77.39061715770492, 34.62302757694495], [-77.39068474529185, 34.62305502852317], [-77.3908643565039, 34.623148191407935], [-77.39076116099392, 34.622961724921836]], [[-77.46171098278468, 34.70725026912947], [-77.46170540646905, 34.70738767180601], [-77.46175210771246, 34.70723782874964], [-77.46175300855391, 34.707235180507794], [-77.46175418214868, 34.70723222954734], [-77.46177769587977, 34.707137530386596], [-77.46173493762413, 34.7072097881193], [-77.46172558118695, 34.70722559957337]], [[-77.44031592001457, 34.60255370152678], [-77.44048971023591, 34.60238097542061], [-77.44073532399885, 34.60270050562922], [-77.4402474029111, 34.60267721287269], [-77.44029049288861, 34.60257700411922]], [[-77.37807995056102, 34.62735684671899], [-77.37810301139746, 34.62731866702151], [-77.37820899621272, 34.627052581096734], [-77.37838623780314, 34.627032620608745], [-77.37844727326642, 34.62727491716926], [-77.37824436164914, 34.62735798653404], [-77.37813265529245, 34.62740602548264], [-77.37805830867038, 34.62743289644808]], [[-77.42473007962253, 34.6838502300545], [-77.42472689066409, 34.684116355637286], [-77.42424086959304, 34.68405438353968], [-77.42451706193788, 34.68377325941435]], [[-77.4325195902759, 34.73081819459611], [-77.43249678688646, 34.730805473256574], [-77.43247417075686, 34.730805769612246], [-77.4324499600372, 34.730816953842634], [-77.43237225803755, 34.73082620975413], [-77.4323287654757, 34.73089780384379], [-77.43232168273107, 34.73091188500305], [-77.4323287446469, 34.73094206054038], [-77.43233372121946, 34.73100733454833], [-77.43238725198101, 34.73103764739416], [-77.43242659648143, 34.731047985248956], [-77.43254088411419, 34.730988492907755], [-77.4325654755832, 34.73095493930403], [-77.43259597633323, 34.73089792566884], [-77.43256102096485, 34.730855768115084]], [[-77.33135395157335, 34.65712798617281], [-77.3314983749565, 34.65718807684163], [-77.33154598796656, 34.657169353616254], [-77.33165551703684, 34.65717337227231], [-77.33173589079566, 34.65707559771822], [-77.33172076148877, 34.656998865943656], [-77.33168415250067, 34.656711739508324], [-77.33149692874377, 34.65678989550124], [-77.33144885917163, 34.65694158540054]], [[-77.40138115752936, 34.673824330114506], [-77.40127161253191, 34.67373116563439], [-77.4012474467521, 34.673777522683636], [-77.40125246348309, 34.673797272029844]], [[-77.3948927588847, 34.73289427817883], [-77.3947814286797, 34.73278107865329], [-77.39474284033415, 34.732956762375785], [-77.39490674075489, 34.73298599307717]], [[-77.43820562514698, 34.6775485224217], [-77.43823965073558, 34.67754176932036], [-77.43822848542797, 34.67758589253771], [-77.43823276636635, 34.677632560459884], [-77.4381856152101, 34.6776362020272], [-77.43815874762552, 34.67760667686579], [-77.43818719354381, 34.67756366926927]], [[-77.38690483136068, 34.621727031295144], [-77.38700073942351, 34.6216667228979], [-77.3870515610811, 34.6216309993886], [-77.38712787603247, 34.62157302402738], [-77.38717151747048, 34.62141504548309], [-77.38717465886405, 34.62140435487783], [-77.3871761507627, 34.621400758323894], [-77.38717567544036, 34.621396351742725], [-77.38717152141781, 34.621388814343895], [-77.38715982226364, 34.621390512220685], [-77.38697441573865, 34.62137409506131], [-77.38682530012682, 34.62145132794089], [-77.3868092496589, 34.621488061327156]], [[-77.42933301212771, 34.69965306095099], [-77.42945181757354, 34.699579786774606], [-77.42936667436777, 34.699536737358166], [-77.42934598059277, 34.69952067260378], [-77.42922274142398, 34.69949968590538]], [[-77.4250817615778, 34.57551004448659], [-77.42511534218697, 34.57528722045749], [-77.42525764008451, 34.57529502769743], [-77.42532081135164, 34.57534838613829], [-77.42524718030447, 34.57541020844774]], [[-77.38026958083482, 34.588006402074164], [-77.38028091049172, 34.588042310851186], [-77.38028875244811, 34.588003639081755], [-77.3802809230663, 34.58799341417739]], [[-77.37623909814124, 34.63116003009539], [-77.37628046443419, 34.6310884081124], [-77.37621899247577, 34.6311412697338], [-77.37622476124768, 34.631156394685796]], [[-77.39032507780848, 34.62288706332807], [-77.39041678966532, 34.6228441783242], [-77.39032508772702, 34.62279814674264], [-77.39030714804059, 34.62285998440238]], [[-77.41476625882059, 34.620379577967], [-77.4147727249484, 34.620384918036194], [-77.41480852584243, 34.620386712760435], [-77.41496336707137, 34.620409334500344], [-77.41497852585066, 34.6203621696064], [-77.41499675935799, 34.62018325633805], [-77.41498102041453, 34.62013045024944], [-77.41496331525269, 34.62012537943541], [-77.41490516677078, 34.620097846013685], [-77.41486475616784, 34.62008134119766], [-77.41483586258146, 34.62009545304057], [-77.41476621460421, 34.62013407241153], [-77.41466178146155, 34.620195607697255]], [[-77.38560475225104, 34.56787350670065], [-77.38557661428926, 34.567923650752185], [-77.3856047303527, 34.56797887737084], [-77.38574394778234, 34.56789952300881]], [[-77.45610635033374, 34.60157180677243], [-77.45626903808963, 34.60147802941752], [-77.45633396911317, 34.601456054684895], [-77.45638414923833, 34.6014027138235], [-77.4563876681248, 34.601364690643884], [-77.4564687332089, 34.60128626784348], [-77.45650817378007, 34.60113240112996], [-77.4565101752064, 34.60109786298363], [-77.45652759873002, 34.60105661923807], [-77.45644309563787, 34.60107439284592], [-77.45624108949647, 34.60111688078349], [-77.45606928735401, 34.60125329375676], [-77.45605856903191, 34.60140327727398], [-77.45605819284728, 34.60140425774103]], [[-77.38713582741602, 34.59661211306308], [-77.38712620465226, 34.59673002314992], [-77.3870179297155, 34.59675609607525], [-77.38698661024165, 34.59659973745775]], [[-77.40328251947602, 34.623323878606904], [-77.40172497861484, 34.62230984781337], [-77.40057482532735, 34.62229095120233], [-77.40045199833537, 34.62216619509587], [-77.39978638994293, 34.6222100744259], [-77.39972693021569, 34.62220253794305], [-77.39939271442216, 34.62218670725515], [-77.39939217269588, 34.622186506280244], [-77.39939203511642, 34.62218665706459], [-77.39909086057786, 34.6221301868764], [-77.39899795667978, 34.62203078112253], [-77.39881130035326, 34.62184599497378], [-77.39883838191835, 34.621589382857486], [-77.39867820362367, 34.6214406187232], [-77.39848243435111, 34.62117494226124], [-77.39820953793325, 34.621210631391534], [-77.39791501679105, 34.621126121207716], [-77.39820954428598, 34.620860842267035], [-77.39839287155726, 34.620830073871105], [-77.39895521579324, 34.620597564590824], [-77.39899796874813, 34.62060771386075], [-77.39903470447094, 34.62057961827421], [-77.39907103217968, 34.620534813434794], [-77.39907167905305, 34.620455333133634], [-77.39952127727582, 34.619620723764164], [-77.39899798334085, 34.61908351946706], [-77.39887028552478, 34.61900301257284], [-77.39852064856203, 34.61891590720573], [-77.39849834068498, 34.61860812362744], [-77.39820958410613, 34.618769576317], [-77.39808786303813, 34.61868485812945], [-77.39801248474683, 34.61871083737975], [-77.39793596108422, 34.618575666285096], [-77.39798454731269, 34.61838647018793], [-77.3978655428409, 34.61821526048915], [-77.39805788143133, 34.61829691068495], [-77.39820959262863, 34.618342519238105], [-77.39852470831914, 34.618405573314284], [-77.39863916744504, 34.618436137329], [-77.39899798833127, 34.61859831451736], [-77.39968445177253, 34.61789889398009], [-77.39899800398425, 34.6171680890051], [-77.39895388280704, 34.61720264806366], [-77.39884406578376, 34.61717096735541], [-77.39820962173185, 34.616933575677194], [-77.39799943043577, 34.616670044357406], [-77.39769440050344, 34.616487644363716], [-77.39758560784065, 34.61632631501768], [-77.39767509283097, 34.61591467460024], [-77.39782831596136, 34.616029902900664], [-77.39786491980114, 34.61603847820149], [-77.39820963425548, 34.616344478920446], [-77.39822929783767, 34.61638931460692], [-77.39830288821604, 34.6163998803318], [-77.39899800440317, 34.61713164151493], [-77.3990075986397, 34.61713704591783], [-77.39910591961251, 34.617133197413736], [-77.39978639042315, 34.617457244668174], [-77.39997002132102, 34.61700855419468], [-77.40036423461179, 34.616724919875146], [-77.40050404679555, 34.61608237271246], [-77.40050663587981, 34.616008613488454], [-77.40057476811985, 34.61580180222876], [-77.40118937417601, 34.61598350839507], [-77.40130713941669, 34.61602684188563], [-77.40088948714369, 34.616875916779726], [-77.40164764275386, 34.61730929090269], [-77.40215155629689, 34.61740977005183], [-77.40225723138282, 34.617527752150686], [-77.40248847762146, 34.61798066798508], [-77.40293996794219, 34.618062001075], [-77.40310163591111, 34.618080952169066], [-77.40351107368032, 34.61796197761626], [-77.40372834747612, 34.61774929737667], [-77.40434815031708, 34.61722607992645], [-77.40441899997654, 34.61711062360108], [-77.40451669642698, 34.616992101251896], [-77.40461124620896, 34.61708628630595], [-77.40476206336405, 34.617166357079284], [-77.40530511060383, 34.61747470156294], [-77.40548680330707, 34.61771525366124], [-77.40567473775505, 34.61788381541702], [-77.40631495317936, 34.61840213802648], [-77.40688196814635, 34.61846762818067], [-77.40724689284448, 34.618506103788974], [-77.40700930327493, 34.61925246746768], [-77.40697372827358, 34.619394677980814], [-77.40689474890037, 34.61941975452879], [-77.40688205224471, 34.61946297175634], [-77.40547576983171, 34.62130913724121], [-77.40688233620267, 34.622762760396334], [-77.40690084109171, 34.62278188425158], [-77.40691776260395, 34.622799370999125], [-77.40729618550215, 34.62319043380581], [-77.40816614303839, 34.62431753087719], [-77.40829127821407, 34.624480529908745], [-77.40845938406537, 34.62439701251067], [-77.40863625513421, 34.62444017169508], [-77.4095648963481, 34.62462338117827], [-77.41003641127905, 34.62537600005906], [-77.41030922654353, 34.62541274017411], [-77.41048554936741, 34.625681106425446], [-77.41003656939657, 34.62661113477412], [-77.40884826709187, 34.62719722469544], [-77.40845971946983, 34.62748673648665], [-77.40784542713216, 34.627098905817654], [-77.40688266922398, 34.62651616757688], [-77.4067053245133, 34.626417613549485], [-77.40669795038912, 34.62622770287642], [-77.40670779229748, 34.626037991431], [-77.40620983806195, 34.62459982731855], [-77.40679244803644, 34.62291427580354], [-77.4043784266068, 34.623865576340656], [-77.40372865531776, 34.62413939735655], [-77.40327145228879, 34.62381783879289]], [[-77.34427818403218, 34.76560418072703], [-77.34340400178235, 34.76566540853717], [-77.3425023320639, 34.76584264828143], [-77.34211018068044, 34.76599414931502], [-77.34188274508472, 34.76603557913755], [-77.3415079898027, 34.766004657122565], [-77.34143262576097, 34.76587670180963], [-77.34105537585944, 34.76550060886851], [-77.3409945395696, 34.765425163478525], [-77.34095852809095, 34.76536277254754], [-77.3405714761898, 34.764962077891184], [-77.34054454513144, 34.764932162040644], [-77.3403748354876, 34.7647190880882], [-77.34036324018435, 34.76468958052145], [-77.34043409904132, 34.764459931256724], [-77.34055224981715, 34.76418852821094], [-77.34077058113314, 34.763773777566826], [-77.34103445159718, 34.763402863056996], [-77.34136081820606, 34.763019998434814], [-77.34150241031693, 34.76285132222394], [-77.34194603579928, 34.76243658430891], [-77.34203460000997, 34.76234023350485], [-77.34212265053705, 34.762278895546714], [-77.34215552611832, 34.7621675760919], [-77.34242997452884, 34.761749376244055], [-77.34254935401992, 34.761519602417565], [-77.34256061013366, 34.76148777430792], [-77.34287366712977, 34.76130633292999], [-77.34309926809283, 34.76141390431941], [-77.34309153013507, 34.76144793673075], [-77.343333963585, 34.761625405969234], [-77.34336782885691, 34.76166738074016], [-77.3433922963053, 34.76200503796294], [-77.3434999001926, 34.76209002410825], [-77.3442199367488, 34.762858181957434], [-77.34429311260264, 34.76288914207578], [-77.34442285942956, 34.76293819581621], [-77.34428709917833, 34.764470459200595]], [[-77.45859901910215, 34.507774016625], [-77.45838653106888, 34.5075996747082], [-77.45799444528333, 34.50702735054888], [-77.45774052681645, 34.50665670511647], [-77.45747083016704, 34.50596682322434], [-77.45734434925447, 34.50564329372564], [-77.45730275964104, 34.50531960647232], [-77.45741953062387, 34.504753827301684], [-77.45776975387955, 34.50431386658988], [-77.45892842378045, 34.5037588567561], [-77.4592249178352, 34.503254623062794], [-77.45930000433877, 34.50304056004909], [-77.45985954379294, 34.50241802867643], [-77.45987994375955, 34.50238472814451], [-77.46061404555988, 34.501756252479446], [-77.46072073984219, 34.501605059813954], [-77.4610178448611, 34.501549771257224], [-77.46222124028776, 34.50114583633229], [-77.46225319236794, 34.50114238871999], [-77.46230581597489, 34.50113989167593], [-77.46353170184855, 34.50118831284195], [-77.46361214579059, 34.50118694403132], [-77.4636536232797, 34.501218572571446], [-77.46365804692948, 34.50123526206173], [-77.46369645268048, 34.50149516794002], [-77.46372675367994, 34.501877065418306], [-77.46376295862692, 34.50191609873468], [-77.46376537798537, 34.50194310428002], [-77.46373297323578, 34.502474102206875], [-77.46370907625504, 34.50258887635329], [-77.46364517204466, 34.502788838114945], [-77.46359502645669, 34.503001120338034], [-77.46334485761834, 34.50324590379556], [-77.46296575805113, 34.5037476036366], [-77.46288028019444, 34.50384201479427], [-77.46281559011034, 34.50389455615192], [-77.4622448308696, 34.50430342998391], [-77.46194211737762, 34.50452573437712], [-77.4619059017425, 34.504556811085294], [-77.46184845827429, 34.50458672104119], [-77.46067279769638, 34.50512477457673], [-77.46065146681805, 34.50513453688401], [-77.46065027390458, 34.505135006358955], [-77.46064813677485, 34.50513556056347], [-77.46064834928545, 34.50513754803892], [-77.46056759167911, 34.505806984417646], [-77.46068879569582, 34.50634176737766], [-77.46071112138873, 34.50667057541348], [-77.46081425533265, 34.507170534970506], [-77.4610243583197, 34.507289839096515], [-77.4610305762169, 34.507695819650124], [-77.46100601331727, 34.50785578456196], [-77.46090911218558, 34.50813296363645], [-77.46087985801779, 34.50821664468136], [-77.46070597111157, 34.50823909355479], [-77.46011949292989, 34.50811392684543], [-77.45886911151847, 34.50783406850342]], [[-77.39724334858491, 34.53967679105695], [-77.39608588579881, 34.53886829976523], [-77.39608535336585, 34.53886457425479], [-77.39604956099913, 34.538842925958214], [-77.39537875373388, 34.538438069846606], [-77.39531737018919, 34.538401022181674], [-77.39477587427457, 34.53807420315296], [-77.39466909392159, 34.53800975593498], [-77.3948634047745, 34.537769585937504], [-77.39493947745477, 34.537748535681374], [-77.39505688057852, 34.53771604835617], [-77.39533005234647, 34.53783642089857], [-77.39569777789501, 34.537678637382925], [-77.39568626066529, 34.53745315765363], [-77.39593993016814, 34.53704721831657], [-77.39604151779119, 34.53691221949295], [-77.39607186471913, 34.5368672696793], [-77.39613915928301, 34.536767139628786], [-77.39630626004573, 34.536484609222285], [-77.39640479115604, 34.536370122221825], [-77.39660845275546, 34.536134911993955], [-77.39688677263678, 34.535810891692364], [-77.39690739112201, 34.53578363477283], [-77.39694767550836, 34.5357232727842], [-77.3971775924121, 34.53541838493073], [-77.39745184837814, 34.53523966479483], [-77.3977500621229, 34.53495174342069], [-77.39800311265216, 34.53482651097814], [-77.39853826444076, 34.53481206887689], [-77.39885345205606, 34.534743323063196], [-77.39893221505632, 34.53474889504507], [-77.39900655075121, 34.53472440611749], [-77.39932387955997, 34.53478767727374], [-77.40007595547648, 34.53484106744561], [-77.40008067633315, 34.53437054527505], [-77.40010585771297, 34.53435899212094], [-77.40011887506999, 34.53434459842571], [-77.4002578400776, 34.534344970783124], [-77.40022946319773, 34.53476390179791], [-77.4003607894012, 34.53497954529335], [-77.40067148720141, 34.53526460342267], [-77.40064518883746, 34.535414836216056], [-77.40056894818743, 34.53706718969465], [-77.40056369226288, 34.53723885373937], [-77.40048230480885, 34.53901150833219], [-77.39952836178092, 34.53934698463221], [-77.39762372641046, 34.54058318603258]], [[-77.33746402547669, 34.65978746222743], [-77.33741753431705, 34.659713866866404], [-77.3373159242048, 34.65968603172825], [-77.33726943014287, 34.65950955765569], [-77.33742153688374, 34.659576043294905], [-77.33745521823018, 34.65963927854273], [-77.33746919466662, 34.65966500179942], [-77.33750439264625, 34.65972888561089]], [[-77.39619221162849, 34.61463157933643], [-77.3961893467786, 34.61452862155859], [-77.39623877014913, 34.61447411394031], [-77.39638528559038, 34.61439578583159], [-77.39663296028607, 34.614263377721656], [-77.39669854018469, 34.614437771424555], [-77.39669324738017, 34.614509178777745], [-77.39674931745401, 34.61480031153327], [-77.39677515125983, 34.614921937725235], [-77.39722916577767, 34.61549867483005], [-77.39667389225835, 34.6157856830988], [-77.39597345512176, 34.61602558538916], [-77.39584451257657, 34.615974987590114], [-77.39577849164465, 34.615985928382635], [-77.39562457332185, 34.61593701660737], [-77.39576177484058, 34.6158281067971], [-77.39584452548094, 34.615719056183295], [-77.39628603911777, 34.614992478685345]], [[-77.38638753006842, 34.595169734488465], [-77.38638881506972, 34.595189725035816], [-77.38638943384811, 34.59519102407312], [-77.38641189155425, 34.59521404012181], [-77.3869080076264, 34.59596539791528], [-77.38645439900706, 34.596103010382514], [-77.38638731423514, 34.596380164806334], [-77.38612292629362, 34.59664293115329], [-77.38593112697168, 34.596955357475494], [-77.38617323257608, 34.59715093920811], [-77.38638717965017, 34.597137703388704], [-77.38669861995645, 34.59735829465365], [-77.3869123141995, 34.59737968573428], [-77.38717533346843, 34.59742667250807], [-77.38751343220916, 34.59715181776934], [-77.38754989316496, 34.59712545479225], [-77.38756948960099, 34.59709732599923], [-77.38781436423858, 34.59668386475915], [-77.38779781220072, 34.59650755508218], [-77.38789368752691, 34.59632330088496], [-77.38783582558106, 34.596256203219866], [-77.38795074165044, 34.59622564409278], [-77.38796372853584, 34.596227399383245], [-77.38805822231829, 34.596224139382755], [-77.38826035641274, 34.59629998886101], [-77.38842795291465, 34.5962463859558], [-77.38875194090573, 34.59609926301209], [-77.38894806417801, 34.595882528299654], [-77.38895246800774, 34.59567064021829], [-77.38914612685656, 34.59547853742856], [-77.38942540390713, 34.59547875513375], [-77.38954021882569, 34.59548472564189], [-77.38960979319933, 34.595500905897], [-77.39031586363593, 34.59546054011968], [-77.39032840811703, 34.5954555533104], [-77.39035384577008, 34.595441174239504], [-77.39096075853118, 34.595213143174384], [-77.39111663961512, 34.59507398458442], [-77.39159405523561, 34.59495492145336], [-77.39166736967049, 34.59443002654019], [-77.39171187547021, 34.594215634280985], [-77.39176406572209, 34.59371875132149], [-77.39181561956617, 34.59355950883377], [-77.39181602346879, 34.593463587522194], [-77.39181820237906, 34.593346851604586], [-77.39187808646258, 34.593154967542446], [-77.39189438847575, 34.593123579946635], [-77.39190504676733, 34.59307887444518], [-77.39221083774935, 34.59298281154313], [-77.39229913540674, 34.59300853844576], [-77.39233943215183, 34.59301598350216], [-77.39241210591896, 34.59304891826569], [-77.39237502887175, 34.593136045378], [-77.39229911485867, 34.59319648324592], [-77.39215240288671, 34.59335289720679], [-77.39209292335988, 34.59351951855593], [-77.39209844340446, 34.593727159151754], [-77.39215107562086, 34.59409508668286], [-77.39210599081916, 34.594366773364925], [-77.39210647138714, 34.59458389244108], [-77.39214620817906, 34.594950070751494], [-77.39233739250267, 34.5951825421252], [-77.39269296865547, 34.59539031269255], [-77.39303717162773, 34.59555992008021], [-77.39348113675356, 34.59555361462674], [-77.39383232847887, 34.59543774521392], [-77.3939352421229, 34.595441316742615], [-77.39426933355716, 34.59540826520151], [-77.39491370699557, 34.59496594485322], [-77.39505754827591, 34.59498249868868], [-77.39514240044124, 34.594869398712845], [-77.39532793148194, 34.59475123168991], [-77.39570269065793, 34.59454304491754], [-77.39584575754638, 34.5945146220572], [-77.396095757572, 34.59437115004012], [-77.39649125225148, 34.594583431096254], [-77.3961366817915, 34.59494803456847], [-77.39616205580205, 34.595055488760934], [-77.39584569705482, 34.595438316311245], [-77.39581153671307, 34.595493821978], [-77.39577199797458, 34.59553632355147], [-77.39545156717797, 34.59599058635033], [-77.39543754544674, 34.595994030434625], [-77.39532519613036, 34.596161471492536], [-77.39507838932347, 34.59648551077064], [-77.39506962585618, 34.596499907881494], [-77.39505743349676, 34.59652580959894], [-77.39502245149338, 34.59653126502383], [-77.39426920070366, 34.59699972245893], [-77.39382411094294, 34.59703605183889], [-77.3934809851485, 34.59718703200218], [-77.39286260890584, 34.59747123320518], [-77.39269275778639, 34.597452825830835], [-77.39252549034701, 34.59752264378491], [-77.39240735630203, 34.59771987112387], [-77.39255070470695, 34.597852189457164], [-77.39269271383468, 34.59788652891062], [-77.39289917245802, 34.59827562607849], [-77.39344300478163, 34.59837886002387], [-77.39348087451192, 34.59839168628207], [-77.39349863643594, 34.59839250035238], [-77.3935101630664, 34.59840997306821], [-77.39398096331506, 34.59865244473833], [-77.39423804578274, 34.598729567883105], [-77.39426905719041, 34.59874331718604], [-77.39453804497576, 34.59882108423172], [-77.39479583816032, 34.59879205229973], [-77.39505727860762, 34.598647683198266], [-77.39537491900194, 34.59848320860623], [-77.39563404248938, 34.59833146814935], [-77.39584551122523, 34.59833943267272], [-77.39609059967205, 34.598301831378336], [-77.39660018968974, 34.59800043768392], [-77.39663373883383, 34.59801083217742], [-77.39668554087287, 34.598007789496755], [-77.39672984031206, 34.59794559269791], [-77.39736168957654, 34.597789524198504], [-77.39742195806718, 34.59772640904401], [-77.39748158028654, 34.597772920560224], [-77.39781605873374, 34.59775557404274], [-77.39792887380747, 34.59777263109362], [-77.39813648691754, 34.59782204879838], [-77.3980765816156, 34.59803199999493], [-77.3980130950952, 34.59814693037799], [-77.39800219170014, 34.598174882229365], [-77.39796845014457, 34.59819149487718], [-77.3978450997506, 34.59824059570726], [-77.39781603926744, 34.598246904914774], [-77.39777557593123, 34.59826290858815], [-77.39742193085652, 34.598340201541866], [-77.39705374282926, 34.598351364098406], [-77.39674557035354, 34.598792467994635], [-77.39666426493312, 34.598837129448384], [-77.39663369301661, 34.59886728081008], [-77.39646546776521, 34.599076226608155], [-77.39626851216774, 34.59928585239773], [-77.39625209741651, 34.59930172602968], [-77.39623955997556, 34.59931013651266], [-77.39621019138444, 34.599325902145175], [-77.39604249883455, 34.59941586726326], [-77.39592852258146, 34.599424392697244], [-77.39584544221181, 34.59944082399601], [-77.39551261629654, 34.59946090285451], [-77.39529924077802, 34.599589490834944], [-77.39505721290416, 34.59956117374332], [-77.39489871814263, 34.59973726382512], [-77.39480757223848, 34.599921140523335], [-77.39466306641698, 34.60002580256289], [-77.3945211347927, 34.60023414033332], [-77.39446598992043, 34.60027927472644], [-77.39440865743873, 34.60034148745485], [-77.39429946997431, 34.60038608607834], [-77.3942689246702, 34.60037836203439], [-77.39421385988369, 34.60037201871102], [-77.39389711370377, 34.60045298594908], [-77.39387480451992, 34.60043802042427], [-77.39375004584032, 34.600363823576046], [-77.39348071011857, 34.600204296847615], [-77.39342953949102, 34.600175009571686], [-77.39333042136224, 34.600134176032775], [-77.39269251066023, 34.59990937746672], [-77.39230710459036, 34.59984780589746], [-77.39228177982125, 34.59984292166901], [-77.39190430599831, 34.599709948887195], [-77.39178356089661, 34.59963819071003], [-77.39154583340601, 34.599542386400884], [-77.39126278018394, 34.599425202303394], [-77.39111613143497, 34.59928769250215], [-77.3908272502126, 34.599334801449295], [-77.39032789760067, 34.599386478539635], [-77.38979707302931, 34.59951723341861], [-77.38953965503073, 34.599532869468256], [-77.38939667421279, 34.5996982701061], [-77.388801316313, 34.59988431762603], [-77.38875137709486, 34.59989852987734], [-77.3887112801118, 34.59990790086125], [-77.38856746306493, 34.59997182927735], [-77.38804205413939, 34.60013261979604], [-77.3879631009489, 34.60020749287523], [-77.38771927823538, 34.600356748747394], [-77.38749060796283, 34.60046725836218], [-77.3871748333029, 34.60042853301081], [-77.38681488715856, 34.600685917368594], [-77.38678067241332, 34.600687902105044], [-77.38675396886228, 34.60068660843011], [-77.38659988546694, 34.60068005392351], [-77.38658361565712, 34.600674916712904], [-77.38651543492985, 34.600553415384326], [-77.3863865971413, 34.60044366442853], [-77.38632119611279, 34.600366130071976], [-77.38623739250039, 34.60030774240906], [-77.38599254236352, 34.60009812702555], [-77.38590811361126, 34.60002160901796], [-77.38559849069267, 34.599753675404386], [-77.38523196721644, 34.59999833602244], [-77.38518759437366, 34.600016478949044], [-77.3851046996487, 34.600046453265676], [-77.38481017914509, 34.60018508522438], [-77.38471482539805, 34.600424546273125], [-77.38467145195231, 34.60053346879682], [-77.3846130405146, 34.60059577897608], [-77.384525362773, 34.60067237392232], [-77.38450642872702, 34.60067208714538], [-77.38441596996937, 34.60065401350128], [-77.38435659944142, 34.600642810834934], [-77.38422972938898, 34.600597137997354], [-77.38413634603913, 34.60048729465345], [-77.38402191553566, 34.60033995188388], [-77.3838551215531, 34.60040623226094], [-77.38379460130687, 34.60023528983005], [-77.3837721749733, 34.60008304830202], [-77.38375018981445, 34.59981712570897], [-77.38369363161281, 34.599471436888834], [-77.38366926619197, 34.599359772486494], [-77.38323583961441, 34.599042129800395], [-77.38323551658817, 34.599040498307474], [-77.38323395898651, 34.59904020300426], [-77.3832309517592, 34.599039594514444], [-77.38244584872423, 34.598540957611746], [-77.38214030238817, 34.598680016833285], [-77.38165766287537, 34.598406226737666], [-77.38124955403367, 34.59888887188221], [-77.38086921914494, 34.599342869647046], [-77.38084181361148, 34.59938715680607], [-77.38083587746031, 34.59942390875], [-77.38075223891981, 34.599824629059455], [-77.38077503531699, 34.6001446562305], [-77.38075262284221, 34.600249137481974], [-77.38047486465528, 34.60032383235508], [-77.3804462882797, 34.60032406620674], [-77.38027780358561, 34.6003331691866], [-77.38021088026281, 34.60032720568471], [-77.38010602039682, 34.600315092998706], [-77.38008075609862, 34.600288110778195], [-77.37998338453374, 34.600255085639915], [-77.3798614993941, 34.600189210187196], [-77.37970871688766, 34.59999870887929], [-77.37970212089448, 34.599975955233326], [-77.37969972102083, 34.59996229767631], [-77.37949864150218, 34.59958071270981], [-77.37929276773593, 34.59934212077018], [-77.37897608221161, 34.599148094052154], [-77.37890779930709, 34.59881672469339], [-77.37898639381523, 34.59847510591959], [-77.37922973554154, 34.59792120965635], [-77.37929315720939, 34.597852295370856], [-77.37975047014531, 34.597489597841474], [-77.38008153792153, 34.597184486969454], [-77.38081836726708, 34.596898574093245], [-77.38093738121064, 34.59689879189665], [-77.38165825037271, 34.595895698911875], [-77.38166690262901, 34.595881053800944], [-77.38166814270944, 34.59587155766819], [-77.38167265235239, 34.595855402299605], [-77.38175871180354, 34.59500937572384], [-77.38196268324855, 34.59445845774298], [-77.38211835794165, 34.59410841086583], [-77.38192795520624, 34.59384580947461], [-77.38193677656352, 34.59328545412767], [-77.38165902640813, 34.59261011041959], [-77.38162110756514, 34.5925226956636], [-77.38160258798116, 34.59248449085231], [-77.38121256396765, 34.59217268587218], [-77.3811868529006, 34.59211984374359], [-77.38103032491054, 34.59197077665843], [-77.38101272173418, 34.59187301081076], [-77.38115740435526, 34.5916995237665], [-77.3812651932644, 34.59158854263038], [-77.38152442190218, 34.5916466278985], [-77.38153155043153, 34.591783149688744], [-77.38165916144703, 34.592041815919], [-77.38184292797854, 34.59225181473041], [-77.38223048308237, 34.592160413972096], [-77.38244728514994, 34.59218314174511], [-77.3824825879498, 34.59231959034526], [-77.38268556071411, 34.59232840269248], [-77.38284132307245, 34.592364984426986], [-77.38295952237911, 34.59258608371681], [-77.38323531867559, 34.59274848846582], [-77.3835778508683, 34.59267990726995], [-77.38362941257238, 34.592688233488865], [-77.38368969162919, 34.592673172948516], [-77.38387090578328, 34.59274649155247], [-77.38402345185196, 34.59288662296824], [-77.38407441892755, 34.59292242602344], [-77.3841467828039, 34.59296691278233], [-77.38481148862726, 34.59352109531682], [-77.38511124364564, 34.593354112622364], [-77.38525657748416, 34.59328640242422], [-77.38559979808443, 34.592779235547766], [-77.38561090096727, 34.59276781708354], [-77.38562257304862, 34.59275417498452], [-77.38561956971287, 34.59273331609988], [-77.38578758677295, 34.59208342814058], [-77.38575301431652, 34.59188623758813], [-77.38569577792681, 34.59179128534997], [-77.38560001233338, 34.59165385965286], [-77.38546847354493, 34.59150269041209], [-77.38546642059633, 34.59122243702239], [-77.38541221407824, 34.591086233984406], [-77.38521401224584, 34.59069873932707], [-77.38560017371246, 34.59080929655888], [-77.38573920133838, 34.59088929263226], [-77.385991856182, 34.59100267193607], [-77.38623812080435, 34.59112892463275], [-77.38638825502844, 34.59114774883231], [-77.38691638961616, 34.591149512964805], [-77.38717638403268, 34.59124486332968], [-77.3872802891084, 34.59155405190042], [-77.38751918811089, 34.59163161166922], [-77.38757037465234, 34.59173827514552], [-77.3877486897289, 34.59183096153398], [-77.38764459339498, 34.59203809869301], [-77.38762033144913, 34.59209548282182], [-77.38757027840877, 34.592315043444216], [-77.38749790593765, 34.592483814897015], [-77.38747475851656, 34.592590012470154], [-77.38743690112116, 34.5927048939846], [-77.38739543052151, 34.59273485733075], [-77.38724125052184, 34.592945385087965], [-77.38717608167649, 34.59300725805614], [-77.38697120544515, 34.59318819294478], [-77.38662827900308, 34.593458323152724], [-77.38653739144247, 34.593632581208105], [-77.38638771055349, 34.594162515494084], [-77.38631968413358, 34.59427868030088], [-77.386269043826, 34.594359245829516]], [[-77.47593149554271, 34.57283641500396], [-77.4753036158695, 34.572059909954696], [-77.4753672547823, 34.57069070800556], [-77.47407513200804, 34.57163012750071], [-77.47368232775125, 34.57275283812426], [-77.47349536937016, 34.57353199148718], [-77.47358495796306, 34.57393599438083], [-77.47304586211656, 34.57419962816053], [-77.47148997070974, 34.57558166254157], [-77.47157583075513, 34.575710454391704], [-77.47231722303032, 34.576822596579746], [-77.4737297512698, 34.57894133865888], [-77.47377306293939, 34.57936122281737], [-77.47368960002582, 34.580061039654176], [-77.47467034390897, 34.580129169051155], [-77.47474415078183, 34.579296202079625], [-77.47486124937531, 34.57905054352429], [-77.47635463004458, 34.57738224032217], [-77.47625983270285, 34.57691564011432], [-77.4763729296328, 34.5756646517618], [-77.47630043950701, 34.575036601404925], [-77.4762957396929, 34.57494812535172], [-77.47628601025377, 34.574880918595895], [-77.47621399259914, 34.57423289207313], [-77.47612400707396, 34.57342317841635]], [[-77.33872879127743, 34.69158761609733], [-77.33932032763524, 34.69182280665546], [-77.33964015141358, 34.691949964128014], [-77.33965808235993, 34.69195709325177], [-77.33942198418671, 34.69236098617604], [-77.33940430982452, 34.692469694914124], [-77.33935623777583, 34.692583477536175], [-77.33923211327946, 34.69283099053291], [-77.33899467839447, 34.693013266192544], [-77.33897577625311, 34.69324205985599], [-77.33861851016512, 34.69351547509714], [-77.33858935628344, 34.69353778648339], [-77.33816239032302, 34.693501984740294], [-77.33801234267005, 34.69354143481004], [-77.33776194960987, 34.69342605950572], [-77.33779021359186, 34.693394175128695], [-77.33795010755287, 34.6931565612738], [-77.33819076356085, 34.692927308856284], [-77.33849724354707, 34.692817737971446], [-77.3385739167392, 34.69258361272472], [-77.33868921858887, 34.692308368793206], [-77.33851851129373, 34.69179917680615], [-77.33850738189669, 34.69165997645497], [-77.33848964350717, 34.6916204231203], [-77.33860538407525, 34.69150014917028], [-77.33866549222302, 34.691538329640295]], [[-77.32968522643225, 34.688928942977896], [-77.3297572660097, 34.688897351633386], [-77.32965026467994, 34.68795899606188], [-77.32984562908806, 34.68769885359085], [-77.32986201351451, 34.68744259342737], [-77.33005441656847, 34.687127415648234], [-77.33004983901338, 34.68692946849325], [-77.33022022499613, 34.68675422970965], [-77.33039369130213, 34.68679920130966], [-77.33046645393041, 34.68681044092313], [-77.3306624981012, 34.68684546181167], [-77.33087816448005, 34.68688783254049], [-77.33094663770315, 34.686956269892825], [-77.33119553164644, 34.687037800277004], [-77.33140250224392, 34.68744741854557], [-77.33151708436534, 34.68757867109268], [-77.3315331821865, 34.68770081016049], [-77.33167805584914, 34.688047207540315], [-77.33164809671392, 34.6882661268971], [-77.33132374104028, 34.688704272006866], [-77.33117300413565, 34.68941984919746], [-77.33150953954515, 34.68965353589284], [-77.33156881709544, 34.69050400926915], [-77.3298590197187, 34.69043065335374], [-77.32975733951211, 34.68898886825342]], [[-77.45350998103484, 34.741612337658765], [-77.45347147420463, 34.74151513532076], [-77.45347922700442, 34.741491392343434], [-77.45355339709752, 34.74126424912007], [-77.45376373694525, 34.74092621301613], [-77.45381883876377, 34.74079795858644], [-77.45387680472467, 34.74071637391297], [-77.45423180000877, 34.740383185242685], [-77.45461431293273, 34.739678333542905], [-77.45473343468562, 34.7394403924685], [-77.45479032785316, 34.73921815614196], [-77.45515502501485, 34.73891726879144], [-77.4558344954052, 34.73916904302419], [-77.45571963316048, 34.739784790714765], [-77.45575773911446, 34.74079758362413], [-77.45578208561322, 34.7409245782364], [-77.45577686852964, 34.7409788690503], [-77.45574483734387, 34.74131222509549], [-77.45568749050271, 34.74190905469735], [-77.45567815146495, 34.74200625506622], [-77.45566517781776, 34.74214127516636], [-77.45565216751595, 34.74227667438267], [-77.45546932669683, 34.74226500619425], [-77.45532252305962, 34.742329271035544], [-77.45529388075317, 34.742317393897885], [-77.4552688380215, 34.742307009355784], [-77.45516642606951, 34.74220381980423], [-77.45502590043412, 34.74218518392471], [-77.45489170476165, 34.74204518645735], [-77.4546966237845, 34.74205484255329], [-77.45440080451297, 34.74211917581296], [-77.45428769970073, 34.74213464729119], [-77.45422204962264, 34.74214362729931], [-77.45373108457618, 34.74197332340454], [-77.45359237599268, 34.74189060516858], [-77.45356460465128, 34.74182715481557]], [[-77.32105076311392, 34.7559066741269], [-77.32111175363691, 34.75548421118179], [-77.32113136215969, 34.7554082717616], [-77.32115759524918, 34.75533290886408], [-77.32121191771273, 34.75515355718836], [-77.3213289705254, 34.75504708341762], [-77.32146563565237, 34.754967458909], [-77.32158914590755, 34.754920252932095], [-77.32167353946257, 34.75489232063993], [-77.32188333771234, 34.75481791437102], [-77.32197954647691, 34.75478446964062], [-77.32200726273284, 34.75477483466852], [-77.32207472946857, 34.754744090245694], [-77.3226351214102, 34.75467593603923], [-77.32305263335525, 34.75445860744405], [-77.32311383973511, 34.7541620036437], [-77.32318373926552, 34.753891704501854], [-77.32325918883296, 34.753654729119035], [-77.32333717066487, 34.753433885794465], [-77.32334830042336, 34.7533988405082], [-77.3233726443293, 34.753352407377484], [-77.32349222503078, 34.753135442629485], [-77.3237963748755, 34.752743327130275], [-77.32389926628244, 34.75265516116296], [-77.32411083279793, 34.75256333669781], [-77.32453385040432, 34.75226749964299], [-77.3247236103264, 34.75231400861219], [-77.324832965753, 34.75246440987583], [-77.3249074292678, 34.75256682377298], [-77.32515522634627, 34.752907625817144], [-77.32513959775694, 34.753176585381446], [-77.32497181425879, 34.75360571140867], [-77.32457782962769, 34.75396145711882], [-77.32465433156034, 34.75433779295797], [-77.32506635959359, 34.75455597224011], [-77.32621545471797, 34.755686565037706], [-77.32445473824382, 34.75665867965675], [-77.3231587261701, 34.757063754967575], [-77.32313611613269, 34.75707265315091], [-77.32311944087515, 34.75707161241838], [-77.3222679012427, 34.756960219018524], [-77.32199026365346, 34.75689266648276], [-77.32159064710666, 34.75669253728208], [-77.32123216341962, 34.75636919173887], [-77.32114580993125, 34.756246228303056], [-77.32104527489997, 34.756022254906426]], [[-77.41990072633058, 34.52563155403907], [-77.41908713093112, 34.525305393825036], [-77.41864101081214, 34.52483423700977], [-77.4191850689999, 34.52426670871065], [-77.41997895576515, 34.523807715152024], [-77.42008728800361, 34.523712109597554], [-77.42118742970911, 34.52371361189609], [-77.4215477000096, 34.52386018646292], [-77.42199029190508, 34.52407113282593], [-77.42232514192233, 34.5241993686183], [-77.42237880202968, 34.524259687619896], [-77.42241230803381, 34.524289152847594], [-77.42254825205876, 34.52437276474785], [-77.42255123045868, 34.52441306582222], [-77.42245220391672, 34.524528228862536], [-77.42231386807963, 34.52470845575593], [-77.42222424179997, 34.52475069608328], [-77.42214568962439, 34.52481737908403], [-77.42162071244157, 34.52531726418444], [-77.42152614340507, 34.52539661957626], [-77.42152307217168, 34.52540302301875], [-77.42151302559262, 34.5254252993532], [-77.42087889586178, 34.52608304977914], [-77.42079980257982, 34.526480976678094], [-77.4208670007605, 34.52657381928327], [-77.42071111695265, 34.526972654318875], [-77.42070782945308, 34.526983955702924], [-77.42093413743726, 34.52704513637819], [-77.42090353697711, 34.52708812599378], [-77.42077867488615, 34.527162957589034], [-77.42069275672725, 34.527018020883226], [-77.42066678998702, 34.52700624853078], [-77.42005490934412, 34.52717224310378], [-77.41990437780994, 34.52717114416639], [-77.41943633550284, 34.527167725013456], [-77.41990860305219, 34.52698058513892], [-77.42066583276666, 34.52697260205409], [-77.42041691642952, 34.52653631715481], [-77.42029475087367, 34.52632219299683], [-77.4199371014384, 34.525695312059405]], [[-77.32485737181351, 34.648033920538104], [-77.32463303322442, 34.64792191659708], [-77.32480755246308, 34.647874509348455], [-77.3239961095974, 34.64495337796656], [-77.32385267859583, 34.64465300495506], [-77.32325120739495, 34.64413213604554], [-77.32316929945473, 34.643902728068184], [-77.32297063659541, 34.6435397053623], [-77.32295242843631, 34.64347252296861], [-77.32290445447977, 34.643095064280885], [-77.32290521327732, 34.64309387787086], [-77.32317595223799, 34.64301389250155], [-77.32320707203418, 34.643002834983925], [-77.32366900098971, 34.642990235895084], [-77.32382407250556, 34.64299849555864], [-77.32385236385437, 34.64302786024013], [-77.32386642683662, 34.64299136141597], [-77.32441442224844, 34.64297789800221], [-77.32448044952719, 34.642967172907646], [-77.32455305142823, 34.64296523110886], [-77.32494772800305, 34.643070186268076], [-77.32518535621651, 34.64328913651369], [-77.32556324481581, 34.6432412732981], [-77.32581990205806, 34.64326061641705], [-77.3260202922414, 34.643000738226526], [-77.32615604043058, 34.64297432927535], [-77.3263927744973, 34.642924922168746], [-77.32668078319497, 34.642950192121404], [-77.32676134129206, 34.64292412842364], [-77.32684659569006, 34.64310503821865], [-77.32681796699812, 34.64340240413224], [-77.3266178695851, 34.64404603440816], [-77.32657447102221, 34.644185627588946], [-77.32653078357008, 34.64428576862977], [-77.32636753930765, 34.6448512223348], [-77.32626234513629, 34.645228867038185], [-77.32601953326606, 34.646043837316846], [-77.32601258296174, 34.646330345664566], [-77.32488580919633, 34.64788725777737]], [[-77.3832277451154, 34.629673481490606], [-77.38308963008652, 34.62978056948132], [-77.38311911529388, 34.62962761181953], [-77.38320576360562, 34.62959143866108], [-77.38322776373835, 34.629576296217365], [-77.38388079024332, 34.6286687291928], [-77.38396275425336, 34.62859909068025], [-77.38401645938325, 34.62856413356982], [-77.38419678657384, 34.62839278879822], [-77.38423969366596, 34.62837664858473], [-77.38441073898761, 34.62840052534206], [-77.38469522031946, 34.628433165038274], [-77.38480498019918, 34.628448503885], [-77.38511430450792, 34.62849097420076], [-77.38480486543347, 34.62910997318494], [-77.38466873602711, 34.62925774674934], [-77.38407729741073, 34.62942385775935], [-77.38401630957907, 34.6293833676225], [-77.38368036529263, 34.62954673921657], [-77.38329793119057, 34.629677428307524]], [[-77.46242729191702, 34.58985160484234], [-77.46063405927087, 34.59028619033328], [-77.46040901247682, 34.59056113021381], [-77.45966471369096, 34.591362489664924], [-77.45952233796919, 34.591552669987934], [-77.45928499427089, 34.591849001604785], [-77.45907912246514, 34.592285495247225], [-77.45901826758688, 34.592375049881895], [-77.45895667854924, 34.592452604709926], [-77.45907455819433, 34.59245473637424], [-77.45912572061546, 34.592455661488486], [-77.4592510038326, 34.59245648434732], [-77.45965301280404, 34.5924617825997], [-77.45982410222805, 34.59245236062209], [-77.46018090799802, 34.592470102343896], [-77.46077045853372, 34.5922092304303], [-77.4608371095374, 34.59265459059327], [-77.4613596202423, 34.592935572458245], [-77.46199338185728, 34.592542271937326], [-77.46230144082543, 34.592536050645876], [-77.46251097173328, 34.59235835077385], [-77.46266655225708, 34.591718795314854], [-77.46257086573783, 34.591421318503855], [-77.46265021227013, 34.59116833399217], [-77.4628252351545, 34.59061026915538], [-77.46300029304025, 34.590052083772946], [-77.46329060676638, 34.58912634393033]], [[-77.32877826578843, 34.75697892954206], [-77.32910626880522, 34.75714433175024], [-77.32916701557558, 34.757174963427225], [-77.3292553825013, 34.75721952101607], [-77.32924665757754, 34.75739398618392], [-77.32897942545955, 34.75758047224856], [-77.32888638890526, 34.75739067041198], [-77.32875340746138, 34.757288299533435]], [[-77.39319361959248, 34.65079709036931], [-77.3926883732515, 34.65079708103691], [-77.39230246482151, 34.650797070095216], [-77.3918996647731, 34.650797058459624], [-77.39129526210732, 34.65052677415174], [-77.39116988394795, 34.65048143038364], [-77.39111098991506, 34.650384816143955], [-77.39071302532466, 34.65018221542687], [-77.39026742690073, 34.649884891114304], [-77.39017570457412, 34.649681117112586], [-77.39101058455992, 34.64886953282048], [-77.39107292487296, 34.64881942540933], [-77.39111112200284, 34.648788722689524], [-77.39118184267575, 34.64876870777125], [-77.39268852976382, 34.64834221176677], [-77.3942036548888, 34.64834224230235], [-77.39426589887633, 34.6483422435928], [-77.39432916661244, 34.64832304407384], [-77.39441958259127, 34.648543596896666], [-77.394265892056, 34.64849251897099]], [[-77.39424493697771, 34.529638821474855], [-77.39426062616948, 34.52982417830354], [-77.39401421572325, 34.529907205392604], [-77.39393770487357, 34.52992552004546], [-77.39383429536207, 34.52994986287167], [-77.39354304410212, 34.53002104737077], [-77.39334082310529, 34.5299569112647], [-77.39325726539946, 34.52990403356617], [-77.39318461629139, 34.52975210589645], [-77.39320928249455, 34.529731058460754], [-77.39335569475436, 34.52958698048943], [-77.39390947267603, 34.5294100234508], [-77.39394834319957, 34.5294523376515]], [[-77.3478753612086, 34.76051512140311], [-77.34717740684778, 34.76092761252445], [-77.34708729149432, 34.76074072421901], [-77.34703415382104, 34.76063051846224], [-77.34614075705196, 34.75989179058116], [-77.34590757276914, 34.75981029616607], [-77.3456108494009, 34.759510878895114], [-77.3452626327478, 34.75941138190687], [-77.34524821727216, 34.75939552944829], [-77.34523160898254, 34.75937726540964], [-77.34514274246669, 34.75927953945583], [-77.34519756586974, 34.75917661796563], [-77.34518881425086, 34.75904702438007], [-77.34527515782406, 34.75892228678089], [-77.34531838408375, 34.75886609599447], [-77.34542236102678, 34.758720903123596], [-77.34561230787986, 34.75848817080188], [-77.34566551180717, 34.75838136767711], [-77.34573771237382, 34.7582307882989], [-77.3458297293724, 34.75804248019793], [-77.34608115589704, 34.75783697741683], [-77.34636162026838, 34.75755031320905], [-77.34668184593531, 34.7575207304177], [-77.34701824780058, 34.75735223616814], [-77.34740439436766, 34.75734339253897], [-77.34744892969321, 34.75764935217332], [-77.34751780983206, 34.75804456137937], [-77.3477301572196, 34.75844931873659], [-77.34779721883068, 34.75857633154421], [-77.34773814910838, 34.75866350715611], [-77.34780494735978, 34.758768112009555]], [[-77.45309261957902, 34.6162301576621], [-77.45312021460838, 34.61632553348975], [-77.45304550646355, 34.61632382146671], [-77.45225449574562, 34.617261445056236], [-77.45225090132651, 34.617261988382346], [-77.45224823268279, 34.61726259279176], [-77.45176536518724, 34.617408898853775], [-77.45174471395546, 34.61740420024273], [-77.4514642116362, 34.61730680804924], [-77.45144082196597, 34.617286476451085], [-77.45149874604135, 34.61710508671566], [-77.45134735402715, 34.61694407946313], [-77.45150297878496, 34.61673461899994], [-77.45136958742626, 34.616508118505706], [-77.451211945598, 34.616079098578034], [-77.45096623222548, 34.615571951642266], [-77.45218376567738, 34.61551263226787], [-77.45300515886889, 34.61617649132841]], [[-77.38392651530253, 34.64404033938134], [-77.38357457267955, 34.645222838608206], [-77.38322479760188, 34.645507157825406], [-77.38265274924387, 34.64606157439468], [-77.38243600757355, 34.6461816933576], [-77.38225716494865, 34.646077805009796], [-77.38164735330108, 34.6461096545344], [-77.38120762975177, 34.64603642800796], [-77.3809997171121, 34.64591457753804], [-77.38085871758904, 34.64595383879729], [-77.38069147402044, 34.645930711076076], [-77.38007005841283, 34.64591790461679], [-77.37980496174106, 34.64595307060212], [-77.37960693706776, 34.64591650358574], [-77.37928147611925, 34.6455457587956], [-77.37912747134396, 34.64548694230545], [-77.37927936290893, 34.64461844330177], [-77.37849291119903, 34.6451296383502], [-77.37817377007235, 34.64528073674588], [-77.3777041980178, 34.64534431828545], [-77.37734853932479, 34.64536024290111], [-77.37730985552719, 34.64538894092833], [-77.37721663924876, 34.64543794643926], [-77.37691550217079, 34.64547442150581], [-77.3767886340138, 34.64568726519414], [-77.3765479977522, 34.645570913395154], [-77.37642738454481, 34.64568373938236], [-77.37639698860681, 34.64568387765487], [-77.37622175466545, 34.64554072793178], [-77.37611730128039, 34.64549331322165], [-77.37616061207213, 34.645237136571126], [-77.37621950967099, 34.64515632623948], [-77.37635775960975, 34.64503673128429], [-77.37691582834472, 34.64420412383445], [-77.37694904680804, 34.644138201457004], [-77.3776873793319, 34.64401457886308], [-77.3777045295187, 34.644004327945304], [-77.3777173203885, 34.64400557607583], [-77.37837426559557, 34.6440252095598], [-77.37849313984498, 34.64416881071259], [-77.37927665122206, 34.64461090633803], [-77.37928691066321, 34.644609231867854], [-77.38007048670406, 34.64396095616916], [-77.3802810865246, 34.64384924395293], [-77.38161504208763, 34.64346571621205], [-77.38164788287352, 34.64346117915563], [-77.3817005248597, 34.64347472512625], [-77.3827743155255, 34.64374871572552], [-77.3832250954893, 34.64386207238445]], [[-77.32953627506103, 34.69225538547453], [-77.3298297528639, 34.69151537309954], [-77.33127157405796, 34.69092050528486], [-77.33151329294594, 34.69118594570925], [-77.33141825735689, 34.6916155382877], [-77.33150113291074, 34.691720825089604], [-77.33135342933095, 34.69173604717309], [-77.33044785761038, 34.6920635586108], [-77.32996478765178, 34.69239458671514]], [[-77.38100596494405, 34.624991015774874], [-77.38098644723651, 34.624840131710215], [-77.38125754171224, 34.624718391893495], [-77.38157625443426, 34.62467381039994], [-77.3816517869006, 34.62466029888847], [-77.3818129062703, 34.62454756270024], [-77.38204604401858, 34.62454224189984], [-77.38218521251488, 34.62439268691], [-77.38224319812883, 34.62435787959106], [-77.38229308346516, 34.62438585319261], [-77.38244026785922, 34.62458070880027], [-77.38246049509891, 34.62460595346003], [-77.3824793929868, 34.62462501955874], [-77.38250441850688, 34.624690523951166], [-77.38249518650188, 34.62541254504639], [-77.38257707667474, 34.625460072242106], [-77.38249912376983, 34.625534898199284], [-77.38244006279636, 34.62558297520728], [-77.38223904335396, 34.625725229070255], [-77.38165154742944, 34.62577946758593], [-77.38132060753682, 34.626133924091306], [-77.38086294179575, 34.626363107832844], [-77.3807688553705, 34.6264684371679], [-77.38034621355537, 34.62633797752675], [-77.38007453570992, 34.626038793655425], [-77.3797878703333, 34.62586194061602], [-77.37985629946098, 34.62561695321733], [-77.3800746213142, 34.625670517122806], [-77.38068205047932, 34.62553810917186], [-77.380863208155, 34.6251691133501]], [[-77.37355969927467, 34.54653100142193], [-77.3735686281499, 34.54651876364613], [-77.37372729830915, 34.54636417314451], [-77.37394184733742, 34.546217870527016], [-77.37451111808655, 34.546248719952715], [-77.37466957186373, 34.545870437506686], [-77.37528640654591, 34.545632425876576], [-77.37553289377585, 34.54530714977808], [-77.37557383307816, 34.54527553656148], [-77.37562449398294, 34.545243151157266], [-77.37601250209599, 34.54499220666262], [-77.3769016296853, 34.54456940753755], [-77.37701599041739, 34.54448690460523], [-77.3771247986037, 34.54435699881067], [-77.37740579689867, 34.54432198810293], [-77.37857506327636, 34.54425181130125], [-77.37869860643501, 34.54420388368501], [-77.37896520900111, 34.54344820309986], [-77.3789367875357, 34.54329671439129], [-77.37898965158789, 34.543122860360896], [-77.37906032805307, 34.54299778807194], [-77.37929378059525, 34.542755588645065], [-77.37937482255818, 34.542654066204975], [-77.37952175682194, 34.54252686642177], [-77.38003580089989, 34.5421589510648], [-77.37999677414896, 34.54196320199976], [-77.38032451055099, 34.54174936255271], [-77.38086090913225, 34.54155032820207], [-77.38105189781541, 34.54148301189734], [-77.38116089808345, 34.54147893292222], [-77.38190469866159, 34.54131163340733], [-77.38202970568709, 34.54138180358215], [-77.3819033123998, 34.54188250092393], [-77.38190421855866, 34.541889559573825], [-77.3818994037697, 34.54189518435644], [-77.38189118733261, 34.541908914999425], [-77.38147781627733, 34.54268349114126], [-77.38130445860062, 34.54295535922321], [-77.38107542115596, 34.54326203211296], [-77.38096080251347, 34.54342539371581], [-77.38090566216108, 34.54350251944596], [-77.38077928558451, 34.5436992515332], [-77.38058207446963, 34.544038833167356], [-77.38044894314106, 34.54416980407898], [-77.38026452437322, 34.544398938202065], [-77.38015824888456, 34.54452510390433], [-77.37999859994066, 34.544612616243384], [-77.37973642818234, 34.54481663185749], [-77.37961694818381, 34.54515729880379], [-77.37945631775538, 34.54541611479215], [-77.3791401155732, 34.5455199748381], [-77.37866346029313, 34.54575501540075], [-77.37807175503535, 34.54599374067828], [-77.3770794731387, 34.54635572801379], [-77.37693923819069, 34.54643630742485], [-77.37568878942191, 34.54670285628279], [-77.37553170451025, 34.54674510828771], [-77.3754999759818, 34.546757538986384], [-77.37546679363892, 34.546755574291474], [-77.37537863778005, 34.54674755927062], [-77.37471637641275, 34.54668734728092], [-77.37460505153504, 34.546791098320945], [-77.37450745639545, 34.54687311819575], [-77.37424051218719, 34.54711048401124], [-77.37392130058156, 34.5471224349373], [-77.37384464752141, 34.54701792312495], [-77.37381195828797, 34.546973352406305], [-77.37373065485698, 34.54686249868198], [-77.37368606937045, 34.546746666800495], [-77.37361695331406, 34.54670747194373]], [[-77.35553017677456, 34.76336383856087], [-77.35585042899402, 34.76308831347255], [-77.35626795580359, 34.76263090007933], [-77.35665512337289, 34.76223467947673], [-77.3572270716567, 34.76175460940274], [-77.35767312352996, 34.76191828997551], [-77.35773207246028, 34.76201584817809], [-77.35775598056168, 34.76208357885658], [-77.35787162998544, 34.762325406198045], [-77.35777295843967, 34.76277285123428], [-77.35804308149807, 34.76270709944474], [-77.35812429141458, 34.76289687758983], [-77.35817904756692, 34.76300027615498], [-77.35820174183074, 34.76303442572482], [-77.35822892565506, 34.763098534605994], [-77.3582635094886, 34.76318403468169], [-77.3582999940251, 34.76334293796624], [-77.35830311947149, 34.76347062975542], [-77.35822194801196, 34.76361022407731], [-77.35829869010897, 34.76388960645161], [-77.35829631884627, 34.763947254198946], [-77.35829736653972, 34.76395880387687], [-77.35830234370027, 34.76398321269929], [-77.35825930483666, 34.7640251986272], [-77.35816852130493, 34.764045538090166], [-77.35761850679876, 34.764168766420035], [-77.35718115073443, 34.76426675174607], [-77.35697987627748, 34.76430486006512], [-77.3567218534424, 34.76436964880901], [-77.35569609789786, 34.76459945002891], [-77.35458233927412, 34.764518179148425], [-77.3544211499444, 34.76456206987111], [-77.3544951643866, 34.76444097827633]], [[-77.38359717825672, 34.56209498780954], [-77.38361276519858, 34.562025226536676], [-77.38363638094057, 34.56168893579277], [-77.38364823848724, 34.56162091260773], [-77.38368439969574, 34.56156397780845], [-77.38382634655888, 34.56137532478946], [-77.38385630262935, 34.561353975338115], [-77.38403040040352, 34.56132070277173], [-77.38418688956463, 34.5611186820545], [-77.38434247279089, 34.56100794622753], [-77.38462272083362, 34.56084214023754], [-77.38481839415384, 34.56074061229228], [-77.384893618646, 34.56067327205299], [-77.3852005648989, 34.560560669256304], [-77.38521236088165, 34.560569925835395], [-77.38525767355264, 34.560539718858195], [-77.38554662497606, 34.560433716366234], [-77.3856063260391, 34.56039893414379], [-77.38570014950524, 34.56037479832755], [-77.38608329531905, 34.560934850531176], [-77.38577534388298, 34.56131420601507], [-77.38560611562355, 34.561387312674206], [-77.38515884502516, 34.56177027160784], [-77.3850423166279, 34.5622690386045], [-77.38481802795854, 34.56239140556912], [-77.38405602290942, 34.56243914274698], [-77.38403014033652, 34.562446266368354], [-77.3840021790093, 34.56244914758254], [-77.383791592785, 34.562449375676714], [-77.3836362495195, 34.56224652435854]], [[-77.42557373800302, 34.73187019846898], [-77.42571398907313, 34.73181696629416], [-77.42580086829906, 34.731787919063926], [-77.42596246060727, 34.731757510027904], [-77.42638692437086, 34.73181409574531], [-77.4264206203283, 34.73186187131847], [-77.42649437304877, 34.7320897439985], [-77.42647574429806, 34.732223428055114], [-77.42647718585548, 34.7323632686306], [-77.42640448322985, 34.732479767359806], [-77.42630062717072, 34.73258108764151], [-77.42620437955875, 34.732608784273225], [-77.4260335499566, 34.73262152897706], [-77.42577598051491, 34.73267723517837], [-77.42562073795449, 34.73269486231628], [-77.42553271627534, 34.732714111096854], [-77.42529146242705, 34.732787408487184], [-77.425236091444, 34.7328142181977], [-77.42497269157931, 34.73295551676998], [-77.42478614312327, 34.73307815318853], [-77.42452499389594, 34.733148024987784], [-77.42413675484681, 34.73322238317824], [-77.42411650387334, 34.73322842274023], [-77.4240999295687, 34.733233704562664], [-77.42397805209194, 34.733265221088566], [-77.42375394914454, 34.73332139956493], [-77.42372187302907, 34.73333146691554], [-77.42368354567645, 34.73334349618816], [-77.42340131315524, 34.73343207647193], [-77.42333499245711, 34.73322165530589], [-77.42326484493775, 34.73311631309737], [-77.42328634695713, 34.73299373612868], [-77.42329768880498, 34.7329290787692], [-77.42330708586887, 34.732875507953366], [-77.42333732953992, 34.732703096048816], [-77.42334389058357, 34.732665692725845], [-77.4233549720615, 34.73263234817522], [-77.42338968095575, 34.73241469326388], [-77.42342962208448, 34.73241612498131], [-77.42358049178966, 34.7323525453734], [-77.4237031159085, 34.73238975866614], [-77.42383826585531, 34.73243077275961], [-77.42400564604624, 34.732452116754125], [-77.42409343015422, 34.732442831124246], [-77.42433352328746, 34.73242693158779], [-77.42453030397468, 34.73240882035813], [-77.42475136641141, 34.732319082868926], [-77.42491398988277, 34.73228789835798], [-77.42504685274568, 34.732177699930745], [-77.42521749308328, 34.73203595684157], [-77.42531324443772, 34.731956419898346]], [[-77.32464572447147, 34.55913967649093], [-77.3249581065207, 34.55914794844749], [-77.32554760094267, 34.55918324925817], [-77.32566492888084, 34.55879834839268], [-77.32553872624891, 34.55846441482475], [-77.32565048024233, 34.55831079976987], [-77.32562363970288, 34.55822658611736], [-77.3256674242296, 34.557818735570834], [-77.32568003827872, 34.55739231811974], [-77.32567539671496, 34.55725810179476], [-77.32578880017601, 34.5572001608098], [-77.32589407069287, 34.55723046815206], [-77.32657783669941, 34.55704038695633], [-77.32693487664451, 34.55714697591845], [-77.32712539218949, 34.55726458229683], [-77.32735653736536, 34.557324675013845], [-77.32757608202495, 34.55740639064538], [-77.3275952153158, 34.557541707374675], [-77.32775439333068, 34.557754174852406], [-77.32766239372185, 34.55802168131152], [-77.32767619534509, 34.5582321606954], [-77.32768851544373, 34.55828662270143], [-77.32785135603277, 34.558484153567264], [-77.32796631778051, 34.55855917295132], [-77.32810976730978, 34.558704292760574], [-77.32829166170906, 34.5589105040157], [-77.32846040454453, 34.55911075753667], [-77.32847581103204, 34.55912885354315], [-77.32848069769815, 34.55913545128783], [-77.32849202546016, 34.55915183804675], [-77.32863004799275, 34.55935150125857], [-77.32848670700758, 34.55959160964255], [-77.32837568058441, 34.55969304205381], [-77.32809265235754, 34.559723981996456], [-77.3278752022166, 34.55969435378058], [-77.32769877986958, 34.55965408943675], [-77.32734621525796, 34.559536004452305], [-77.32732504362521, 34.55952673766524], [-77.32730569121394, 34.55950993104816], [-77.32689485628381, 34.55936941588222], [-77.32652724267334, 34.55921392411189], [-77.3258338569671, 34.559322609296714], [-77.325739149926, 34.5593322927803], [-77.3250504511726, 34.55986589926308], [-77.32499424655092, 34.559931391902566], [-77.32494049824665, 34.560431133355], [-77.32487685347552, 34.560671569403425], [-77.32428012955927, 34.56068797508175], [-77.32415246632266, 34.56059142647813], [-77.3236436646707, 34.56006802790707], [-77.32362822824692, 34.559909056894654], [-77.32337255415578, 34.55978612154209], [-77.32266117911273, 34.559675050321246], [-77.32256114087558, 34.55924430223312], [-77.32267637272618, 34.558779068951644], [-77.32270755563817, 34.55873364421212], [-77.3234087238805, 34.55823475755652], [-77.32354215706799, 34.55852630599704], [-77.32357970229808, 34.55860834030414], [-77.32363669425906, 34.558937432096606], [-77.3240487701703, 34.55903057156541], [-77.32417407269253, 34.55909204989108]], [[-77.4171867108557, 34.732751031362355], [-77.41744740492662, 34.7331201808359], [-77.41696541825696, 34.73395798992459], [-77.4168491373686, 34.734067252828545], [-77.41602501585672, 34.73485923620449], [-77.41570908058151, 34.73519602652188], [-77.41498607733686, 34.735921154879726], [-77.41256748813413, 34.736045730963106], [-77.41187281911071, 34.73608149786493], [-77.41231709145711, 34.735636468737084], [-77.4125794912703, 34.73537482560096], [-77.41385407263147, 34.73410018920091], [-77.41458754834598, 34.73336303199697], [-77.41467999538371, 34.733270784717355], [-77.41516234566106, 34.73292443770449], [-77.41562341192997, 34.73248245310192], [-77.41587648791835, 34.732477598156315], [-77.41598021955191, 34.732489046898735], [-77.4161417333516, 34.73251603128045]], [[-77.37991069567715, 34.64215010162133], [-77.37928226462421, 34.642103734409964], [-77.37921712976251, 34.642077531585564], [-77.37869608816672, 34.64193464122684], [-77.37849377357202, 34.64152012039875], [-77.37821848562233, 34.64192507476866], [-77.37802368390379, 34.641906358477804], [-77.37770505431915, 34.64189390043748], [-77.37765792433515, 34.6418775523308], [-77.37768524912107, 34.64147049359913], [-77.37696813245437, 34.64160793443342], [-77.37691650528144, 34.641582173482625], [-77.37690334264714, 34.641575845355604], [-77.37686922242828, 34.64156658534627], [-77.37644185756221, 34.6412901539212], [-77.37643621481388, 34.64111168059799], [-77.37666856005069, 34.64101348848648], [-77.37691653927263, 34.641451105627674], [-77.37766633939135, 34.641409963719795], [-77.37772680626405, 34.64141977644281], [-77.37849385183202, 34.641194445773294], [-77.37893668229404, 34.64126880328314], [-77.37920782299713, 34.6413100972116], [-77.37928232944975, 34.64182258074932], [-77.37951637154825, 34.6414372023863], [-77.38007097145581, 34.64176001978291], [-77.38012592976416, 34.641887416624414], [-77.38022946162513, 34.641931707212265], [-77.3815142547657, 34.64330096347732], [-77.3800707177461, 34.642910673017894]], [[-77.4832949610473, 34.6882758228051], [-77.48301241512235, 34.68898835391048], [-77.48236021416625, 34.69020129881663], [-77.48227481053665, 34.69067594785247], [-77.48201838355126, 34.690837031354675], [-77.48202798962421, 34.69103059692078], [-77.48212346740455, 34.692472762273255], [-77.48294263007344, 34.69339546989642], [-77.48343579570606, 34.69427691158373], [-77.48429592273808, 34.69386800185117], [-77.48501382319415, 34.69305090950235], [-77.4850533625934, 34.69301463693417], [-77.48506015684029, 34.69299268602681], [-77.48521001612772, 34.69195148826104], [-77.48511962888662, 34.691341590328506], [-77.48485449744466, 34.69081134952628], [-77.48447323085055, 34.69004881327645], [-77.48396943779997, 34.68904120016097], [-77.48382684535042, 34.68875602233106]], [[-77.39991293799287, 34.58814577396278], [-77.40037230966709, 34.58786124012434], [-77.40057487908464, 34.58737935989321], [-77.40065518423353, 34.587189527970274], [-77.40057488488517, 34.586976882008685], [-77.40043133309467, 34.58652735808511], [-77.40036032964791, 34.5863829240067], [-77.39982655543176, 34.58565361170725], [-77.39989399005624, 34.58560106371363], [-77.4005749084255, 34.58541688659999], [-77.40134798949994, 34.58537509246733], [-77.40136299461051, 34.58537985448597], [-77.40137522150016, 34.585374156403454], [-77.40143556165432, 34.585378623487756], [-77.4021510800738, 34.58541539220323], [-77.40277257871841, 34.585365174982286], [-77.40293916633058, 34.58548534811907], [-77.40319641025185, 34.58569649543489], [-77.4033332166099, 34.58590835023574], [-77.40334398126733, 34.585952372532994], [-77.40345991555185, 34.58607215344338], [-77.40349831001502, 34.586176796749434], [-77.40335432291018, 34.586375455902484], [-77.40334646705121, 34.5863908572833], [-77.40333322687664, 34.58647926731787], [-77.4030509465044, 34.58684381320614], [-77.40300638143745, 34.58692264613758], [-77.40293918567886, 34.58694795283499], [-77.40273919245013, 34.587104290187455], [-77.40249979171821, 34.58729906601255], [-77.40242597588687, 34.587486972985886], [-77.4022888265703, 34.587802944816865], [-77.40232506028191, 34.58798515976359], [-77.40238832414695, 34.588382132753445], [-77.40254515000348, 34.58842521191613], [-77.40261305321187, 34.58860530786949], [-77.40269653831258, 34.58875636894474], [-77.40254515555948, 34.58896301668649], [-77.40250360556061, 34.58900090910207], [-77.40215109644423, 34.5890158692632], [-77.40178798601266, 34.589115596914866], [-77.40173941993308, 34.589136970068296], [-77.40151534247097, 34.589188284919906], [-77.40137265235343, 34.589219300396785], [-77.4013629759505, 34.58922782524655], [-77.40115478545019, 34.58944057574644], [-77.40108681029963, 34.58967469470972], [-77.40112173839083, 34.58992956710859], [-77.4011447479441, 34.59009090930991], [-77.40122688171348, 34.59035700538481], [-77.40113766187035, 34.59051650601606], [-77.40111668067638, 34.590784888234126], [-77.40115212292466, 34.59136356668223], [-77.4017688858543, 34.5916863852017], [-77.40215111603833, 34.5918627886597], [-77.40223215809152, 34.59196956032877], [-77.40228751346362, 34.59204888681245], [-77.40242566439215, 34.59215773134721], [-77.40254519642745, 34.59242675207921], [-77.4025467102975, 34.5924344289229], [-77.4025470092397, 34.59243601672387], [-77.40254728368743, 34.59243822575445], [-77.40254519673465, 34.59245020335391], [-77.40248050841834, 34.59280048851242], [-77.4024449400798, 34.592875320577456], [-77.40245222537692, 34.59297444292514], [-77.40240137182984, 34.59315121780367], [-77.40233687725775, 34.59331548918916], [-77.40215113151888, 34.59367057430544], [-77.40204126754598, 34.59366435474755], [-77.40206385524564, 34.59377946074878], [-77.40201439132035, 34.593933921170645], [-77.40196590738972, 34.59401861022468], [-77.40183114510069, 34.59423761459677], [-77.40180044322652, 34.59428879225087], [-77.40175705314809, 34.59438966686007], [-77.40165293259486, 34.59457572723642], [-77.40162717047356, 34.594691621495755], [-77.4015600118052, 34.5948477255752], [-77.40153605821826, 34.59489124873923], [-77.40152980160187, 34.5949179583279], [-77.40147644788662, 34.59501568564248], [-77.40146495223614, 34.595037188866186], [-77.4013847939342, 34.595151168734624], [-77.40137480925597, 34.59516536632517], [-77.40136296832642, 34.595182203301825], [-77.40118804839587, 34.5953680075841], [-77.40129417857614, 34.59516424338423], [-77.40125666582526, 34.59505513017484], [-77.40120609536628, 34.59496466547436], [-77.40120682978917, 34.594920489334285], [-77.40119879859454, 34.59475343088827], [-77.4011872160337, 34.594565752804364], [-77.40120836908548, 34.594327475413436], [-77.40123135062876, 34.59404138487326], [-77.40120772002662, 34.59390299421799], [-77.40125198641505, 34.59377703844346], [-77.40122993510425, 34.5931939666394], [-77.40123111977907, 34.59305046873298], [-77.4009083290787, 34.59273771766982], [-77.40078378621993, 34.592690439418554], [-77.40057481622658, 34.59244451489046], [-77.4005253694466, 34.59235642552559], [-77.40041026526889, 34.59231975868988], [-77.40018074584628, 34.59205940084339], [-77.40014078088267, 34.59197712590961], [-77.39978668053156, 34.59160665141418], [-77.39976152288104, 34.591591317381386], [-77.39972884559835, 34.59156892695027], [-77.39976099213774, 34.59153661055917], [-77.39978668274406, 34.59149977751573], [-77.40004679830761, 34.59095414277031], [-77.400237998677, 34.59064631686463], [-77.40016737859077, 34.59024636331468], [-77.39921801597876, 34.59018075690413], [-77.3989985825213, 34.590069894022555], [-77.39894010871679, 34.590047429847], [-77.39831604081013, 34.59018823227969], [-77.39821044659728, 34.59019359292246], [-77.39808604361681, 34.59024167610733], [-77.39781637467198, 34.59032145414325], [-77.39763232548722, 34.5903993806601], [-77.39755744546896, 34.59046286950691], [-77.39742229706883, 34.5905374318515], [-77.39737609543707, 34.590422351486446], [-77.3973704662218, 34.59026673489611], [-77.39737282771895, 34.590210536522385], [-77.39738979334358, 34.59017304946381], [-77.39742231806545, 34.59011681405268], [-77.39746992405168, 34.59003553006445], [-77.39752391670396, 34.58997645386802], [-77.39757464056092, 34.589920954323915], [-77.39774740133092, 34.589731926743355], [-77.39778375805875, 34.5896915090098], [-77.39781640494115, 34.58965512597639], [-77.39800234581875, 34.589470902323946], [-77.39803932834194, 34.589449638486585], [-77.3982104715895, 34.58958075814386], [-77.39847864333106, 34.589490789543916], [-77.39871914286442, 34.58916716088764], [-77.39894281585029, 34.58907477232075], [-77.39899861971534, 34.58889460614551], [-77.39941950329647, 34.58867043426899], [-77.39978675360815, 34.588261576552476]], [[-77.36522846300926, 34.78050711662775], [-77.36433429007414, 34.78292070497419], [-77.36285705712211, 34.78295373750666], [-77.3622692993944, 34.781738882609595], [-77.36193202641417, 34.781720207229064], [-77.36175407456633, 34.781696062459446], [-77.36087903398666, 34.781425044987046], [-77.36074963571372, 34.78137273460639], [-77.36052564202156, 34.780868169920645], [-77.36047297277388, 34.78070155415344], [-77.36056377241722, 34.78049809619812], [-77.36065002653216, 34.7803524694572], [-77.36081295296677, 34.780156844441066], [-77.360835991638, 34.780137933148126], [-77.36098123592748, 34.7800437518314], [-77.36111606040217, 34.779956327150806], [-77.36117480659811, 34.779909056315546], [-77.36148548507596, 34.77975921102136], [-77.36164468741923, 34.77958208776432], [-77.36192638343027, 34.779204095955436], [-77.36190194939516, 34.77911288828589], [-77.36195418199512, 34.77902820993178], [-77.36246593932594, 34.77875102277724], [-77.36255258051591, 34.77850934900748], [-77.36284826415942, 34.777927855056795], [-77.36286360669342, 34.77777173507106], [-77.3629784164019, 34.77770827071382], [-77.36311416700414, 34.7776502942689], [-77.36362989310396, 34.77727624082886], [-77.36370026804015, 34.77694606639428], [-77.3639777311948, 34.77656518447148], [-77.36404164488417, 34.776452151646815], [-77.36444996821028, 34.77608996718422], [-77.36497553885994, 34.77565968875476], [-77.36511448137345, 34.77632249560962], [-77.36484875554318, 34.77709511124538], [-77.36516970208612, 34.77746024681077], [-77.36563342855044, 34.77855350690954], [-77.36559063984389, 34.778985442516884], [-77.36424466977142, 34.77937343876368]], [[-77.44482570294745, 34.681079475039695], [-77.44440027569647, 34.681046870769265], [-77.44476464925611, 34.68129043941805], [-77.44490096102325, 34.681279539709585], [-77.44494591313898, 34.68127594508159], [-77.44505717885988, 34.68127653127997], [-77.44511937616986, 34.6811423273798]], [[-77.43804739594802, 34.67728333667732], [-77.43794186618001, 34.67730428111976], [-77.43772673838984, 34.67753269967655], [-77.437714770388, 34.67759118316121], [-77.43788839914477, 34.6778330917454], [-77.4379391541953, 34.6778904209049], [-77.43811810226312, 34.67796624561366], [-77.43816638927412, 34.677979607278246], [-77.43839340862422, 34.67804242600772], [-77.43851282338818, 34.67788946589355], [-77.43852295786502, 34.67787379826593], [-77.43862460650023, 34.6776726395285], [-77.43865964764603, 34.67758962755944], [-77.43848229445422, 34.677300532737064], [-77.43838726625367, 34.67721588210111], [-77.43834974965007, 34.67722332814353], [-77.43829346099078, 34.67723449983754], [-77.43814580793233, 34.677263804821536]], [[-77.42844666760843, 34.68056966961225], [-77.4289162538551, 34.680495700562], [-77.42894326614872, 34.680114106964545], [-77.42879612295944, 34.67992139750824], [-77.42870789525274, 34.67966683145987], [-77.42842423707337, 34.67918385001067], [-77.42777620783711, 34.6786316432507], [-77.42748014658677, 34.67948099497139], [-77.42744459101957, 34.6795851909548], [-77.42743867582121, 34.679595192440466], [-77.42744261501595, 34.679610704443604], [-77.42746039276027, 34.67961102823228]], [[-77.45630044142948, 34.74334152906218], [-77.45640708105725, 34.74335246086564], [-77.45643110210676, 34.74337374351018], [-77.45643932433761, 34.74338102333093], [-77.456537318557, 34.743424245070244], [-77.45699925848393, 34.7436263354455], [-77.45746244234608, 34.74384687935526], [-77.45753523144751, 34.743990239520656], [-77.4578326527797, 34.744585248208104], [-77.45791311147644, 34.74490092419904], [-77.45792898495847, 34.74502815184127], [-77.45779482268557, 34.745310021233294], [-77.45771683283914, 34.74549057776025], [-77.45770553482402, 34.745509109052605], [-77.45738754777025, 34.74560976491366], [-77.45732551393426, 34.745599152464294], [-77.45708173124603, 34.745558620826756], [-77.45692645071452, 34.745409922996885], [-77.45682623857877, 34.745333443699025], [-77.45661191605586, 34.74518162418209], [-77.45656035623801, 34.74514420049728], [-77.4565354796188, 34.74512666024128], [-77.45645112532218, 34.74507109668282], [-77.45612244531648, 34.74485260557959], [-77.45602202040325, 34.74478844862983], [-77.45586134529381, 34.74470372144895], [-77.45566172011739, 34.744598455032275], [-77.45548081601757, 34.74444262991888], [-77.4550242755557, 34.74401386363058], [-77.45499455791035, 34.743984022710485], [-77.45497724097169, 34.743966700511706], [-77.45487440530964, 34.7438399149143], [-77.4547204113407, 34.743652001035464], [-77.45459615500795, 34.74338565146087], [-77.45455533917665, 34.74329111965372], [-77.45463408715811, 34.743241590354195], [-77.45487164071679, 34.74308798966541], [-77.45517243007754, 34.74301690640088], [-77.45525744333301, 34.742997733399015], [-77.45527931436446, 34.74300613622802], [-77.45579405702995, 34.743203899423776], [-77.45583594309828, 34.74321454113579]], [[-77.38547377795352, 34.66553424712252], [-77.38498680836516, 34.665722577632124], [-77.38497293185951, 34.66572844032774], [-77.38468595189093, 34.665728382694404], [-77.38464160559434, 34.665753838196885], [-77.38453208768902, 34.66574313875857], [-77.38448342684731, 34.66572725510918], [-77.38441366897787, 34.665693465413135], [-77.38440002831302, 34.665682669730465], [-77.38437098546018, 34.66561671811116], [-77.38431999829255, 34.66558450402429], [-77.38432410840244, 34.66545567681446], [-77.38413355494285, 34.66536645739894], [-77.38417849566586, 34.66517354083638], [-77.38351769830675, 34.665076815218626], [-77.38340194974664, 34.6649974803375], [-77.38339052395565, 34.664991915469066], [-77.38337698537448, 34.664983157094895], [-77.38336185383453, 34.664938697303626], [-77.38343412643155, 34.66488647681339], [-77.3841412529841, 34.66435331952873], [-77.3843107029661, 34.66428310098127], [-77.38482265811326, 34.664224608425364], [-77.38525411940236, 34.66406347859652], [-77.38551522113274, 34.66414384214408], [-77.38593215243718, 34.664525389611335], [-77.38605279369916, 34.664518343437614], [-77.38615025104012, 34.66460154187774], [-77.3862729750106, 34.66496641053925], [-77.38630550976288, 34.665067579292426], [-77.38565321460793, 34.665487765575534]], [[-77.40440115751997, 34.67991369450264], [-77.40466730408114, 34.680169273315755], [-77.40481117540295, 34.68031524857878], [-77.4048694498866, 34.68030812001359], [-77.40483487285822, 34.68034506356324], [-77.40477173719434, 34.68045140951782], [-77.40470595825434, 34.6805460281239], [-77.40468789753398, 34.68057318914096], [-77.40465967856547, 34.680618787395375], [-77.40441692761596, 34.680821406839655], [-77.40433835583994, 34.68084145454344], [-77.40423721145375, 34.6807950068625], [-77.4040579701551, 34.680703285339376], [-77.40389249277636, 34.68071166057808], [-77.40359091713762, 34.68061825390154], [-77.40345556686674, 34.680570682181894], [-77.40335280177446, 34.680576950434485], [-77.40326812752805, 34.680529727526206], [-77.40318501492925, 34.68039857051206], [-77.4031428981775, 34.680358796528296], [-77.40296491988701, 34.68005227224778], [-77.40290977491459, 34.6800097041229], [-77.40288735253701, 34.67994297982776], [-77.40271668335417, 34.67964391457808], [-77.40272522071547, 34.67955017467921], [-77.40283328664798, 34.67936491662409], [-77.40284450148188, 34.6793618727771], [-77.40308562500563, 34.67939157142949], [-77.40315333250308, 34.67940182004544], [-77.40357663743357, 34.67944665379892], [-77.40375491109485, 34.67953724152499], [-77.40386900410769, 34.679609596916464], [-77.4040314751216, 34.679688589939005], [-77.40427108084153, 34.679834558700044], [-77.40430357447289, 34.679855354840754]], [[-77.47446311038499, 34.56813870476462], [-77.47488216026463, 34.56819645499207], [-77.47550092601597, 34.56781553898538], [-77.47553767191381, 34.56718712321536], [-77.4760363237211, 34.56689792316637], [-77.47563578891021, 34.56670341456108], [-77.47567182060742, 34.56626344269832], [-77.47501626089988, 34.56604629867472], [-77.47482124016184, 34.5665063260157], [-77.47460510603646, 34.56686084915198], [-77.4745807441412, 34.567080084878995], [-77.47496596572749, 34.56720356759508], [-77.47448486850219, 34.567942906334565], [-77.47447261588792, 34.56805316982146]], [[-77.39310792185611, 34.541385728701485], [-77.3928141389675, 34.541346221500206], [-77.39131789295448, 34.541686492387086], [-77.39071136762252, 34.541972904854845], [-77.39052512332027, 34.54202544185822], [-77.39046709573925, 34.542088254441246], [-77.39013074589928, 34.5421056755524], [-77.39000555795755, 34.54211215931333], [-77.38989650346954, 34.54210711142841], [-77.38973920256612, 34.542060064063264], [-77.3896330945037, 34.54199904082927], [-77.3895559066498, 34.541882157390816], [-77.38945077441747, 34.54178050775883], [-77.38925871363159, 34.54150068715262], [-77.38923143536812, 34.541322482131946], [-77.38920943712284, 34.541178770623276], [-77.38897792989509, 34.5410009546189], [-77.38893548432867, 34.54090335214832], [-77.38892605350885, 34.54087686857998], [-77.38887008504487, 34.5408150692204], [-77.3888831154647, 34.54070157098127], [-77.38893340487542, 34.54063097524369], [-77.3889658781359, 34.540397457034985], [-77.38897269682116, 34.54038047443738], [-77.3889740483512, 34.540368975662666], [-77.3889964923652, 34.54017730737917], [-77.38907760498626, 34.53987567515718], [-77.38936434650941, 34.53956546949982], [-77.38947231145052, 34.539329070290734], [-77.38981088253615, 34.53887818158188], [-77.38987628743534, 34.5388211177809], [-77.39000857898279, 34.53876204232267], [-77.39036293831091, 34.53856111309829], [-77.39060468072867, 34.538492410145395], [-77.39078001340087, 34.53865075086511], [-77.39100733441389, 34.53885144678063], [-77.39114687761791, 34.539087490252655], [-77.39114891957095, 34.53922710862128], [-77.39108348542368, 34.53940812155541], [-77.39101552931398, 34.539596106977385], [-77.39089009112828, 34.53990601091361], [-77.39111385735595, 34.54041616918347], [-77.39090522952492, 34.54059135385768], [-77.39090356033307, 34.54086158340945], [-77.39133513110251, 34.540920644702204], [-77.39247109202691, 34.541076091937704], [-77.39306373801156, 34.54115718951185]], [[-77.41161295984602, 34.62281260347015], [-77.4105469631739, 34.62282582720144], [-77.41003611288627, 34.623010815268245], [-77.40882772836027, 34.62382527542819], [-77.40976034903937, 34.622389146386354], [-77.40995388874956, 34.62227275665759], [-77.4100360034008, 34.62213656097913], [-77.41066088605567, 34.62141001536175], [-77.41072764695332, 34.62129625856189], [-77.41076839216854, 34.62096991975066], [-77.41082426892903, 34.6209093819589], [-77.41099713788591, 34.62069854179667], [-77.41104191782674, 34.62069599180609], [-77.41121846750637, 34.62083457090777], [-77.41126666733658, 34.62084608782227], [-77.41161271394816, 34.62110035758787], [-77.41175715610291, 34.62109620958345], [-77.41200691515189, 34.62104333727481], [-77.41236617677458, 34.62116387090544], [-77.41238625924142, 34.621177004353186], [-77.41240114451264, 34.621175139578234], [-77.41255837259627, 34.62130544675305], [-77.41260109445605, 34.621339213711224], [-77.41260215796083, 34.62134627811347], [-77.41245098828745, 34.62157620833551], [-77.41240121252658, 34.6216209725793], [-77.4121653998083, 34.62178800651155], [-77.4118886027117, 34.622081966126935], [-77.41176861779589, 34.62226701662373]], [[-77.33366323812521, 34.5637859644701], [-77.33373605835668, 34.563712039951184], [-77.33399850343741, 34.56354956160901], [-77.33431093405682, 34.56354153768868], [-77.33439246118968, 34.563543463947546], [-77.33445184765068, 34.563545139595334], [-77.3344734786923, 34.56360602893365], [-77.33475472138872, 34.563956348725895], [-77.33477979349964, 34.563986532570354], [-77.33478095015013, 34.563991857938454], [-77.3347860465104, 34.56399146961359], [-77.33484776829656, 34.56404331936353], [-77.33517974116003, 34.56431057753814], [-77.33519401932304, 34.5643361122647], [-77.33519979446707, 34.56435069109622], [-77.3352037565836, 34.56437605872373], [-77.33527613372785, 34.56476425648565], [-77.3351791674489, 34.56501499162054], [-77.33510678198914, 34.56513524540468], [-77.33502320490305, 34.56522515959818], [-77.33486909593964, 34.56558095645239], [-77.33487027548163, 34.56576401631564], [-77.3347846173356, 34.56573641822936], [-77.33475166733116, 34.565724255335326], [-77.33458758093875, 34.56580333200938], [-77.33447598156724, 34.56572837010397], [-77.3344274290622, 34.56569575709507], [-77.33439070970869, 34.565669190302], [-77.33423175477228, 34.5655512098304], [-77.33422047728905, 34.56552413494639], [-77.33399724414707, 34.56537292381708], [-77.33399699245774, 34.56537273217235], [-77.33399694393228, 34.56537269557944], [-77.33378280565633, 34.56520989649644], [-77.33360328785035, 34.565064451148885], [-77.33355163731468, 34.56501217053266], [-77.33347641858866, 34.56488610594999], [-77.3334363406399, 34.56481647494642], [-77.33343708197414, 34.56478345832745], [-77.33341135821381, 34.564607796275126], [-77.33331319098284, 34.56430861166152], [-77.33360426573273, 34.56389121731182]], [[-77.35034978403924, 34.72526918001366], [-77.35051404886867, 34.725172577353234], [-77.35185602740113, 34.72553767152967], [-77.35265819952835, 34.725568394107434], [-77.35279233137716, 34.72560577649752], [-77.35294043587896, 34.72570345302472], [-77.3530696367894, 34.72578664557478], [-77.35298824467202, 34.72608843869493], [-77.35287902382638, 34.726199265029145], [-77.35286461526043, 34.72633857053748], [-77.35283485638779, 34.726692709974124], [-77.35287171159867, 34.726727313868395], [-77.35282126745652, 34.727068791884726], [-77.35280402891215, 34.7271735833702], [-77.35280227660041, 34.72718456434141], [-77.3528003246129, 34.72719843122834], [-77.3526555466319, 34.727639383099806], [-77.35263732358771, 34.72769225456757], [-77.35263111242593, 34.72769544060616], [-77.3523983644818, 34.72811877563368], [-77.35211117352992, 34.728254187467726], [-77.3518977854323, 34.728313488418515], [-77.35186335739085, 34.72830505878545], [-77.35181684129203, 34.72829458581277], [-77.35173360857793, 34.72799703683172], [-77.35093105014468, 34.7280951502583], [-77.3507394697323, 34.72805093204244], [-77.35042800867384, 34.72821298747285], [-77.34954777378397, 34.72803024304338], [-77.34825478653595, 34.727321285609015]], [[-77.42574101415853, 34.68318709683007], [-77.42582955304292, 34.682945019774195], [-77.42582701075563, 34.68293763800098], [-77.42572849411786, 34.68276240583293], [-77.4258651941486, 34.68284757163003], [-77.4258405950964, 34.682940411599866], [-77.42614732163499, 34.682979809964785], [-77.42615350692219, 34.68305184043695], [-77.42615623630009, 34.683087850883055], [-77.42612950389797, 34.683183213950905], [-77.42616974971193, 34.6832494214389], [-77.42615978470668, 34.68328062960186], [-77.42609038393522, 34.68330929987778], [-77.42607693590392, 34.683332142053146], [-77.42599215221102, 34.68354672673698], [-77.42598686924892, 34.68355263124512], [-77.4259589456919, 34.683630770990575], [-77.42589650498586, 34.68352102356797], [-77.4258240579529, 34.68339368900912], [-77.42575568057211, 34.68322600933906]], [[-77.43788718315348, 34.586350465037654], [-77.4380089418975, 34.58609093062331], [-77.43803623350885, 34.58603563878167], [-77.43815581986527, 34.58585996945652], [-77.43820100412427, 34.58579431197739], [-77.43821136137724, 34.585792057181905], [-77.43840280346944, 34.58568657026868], [-77.43856991494016, 34.585713925631644], [-77.43861101915404, 34.58572817475238], [-77.43876142997209, 34.58589251134631], [-77.4387907986025, 34.585926518878075], [-77.43879090998036, 34.585933010610624], [-77.4387969587852, 34.58595396786571], [-77.43885384607039, 34.58628085284153], [-77.43895337073394, 34.58649588330474], [-77.4389610029219, 34.58675109280241], [-77.43901557111198, 34.586932701002766], [-77.43919163372647, 34.58737425825758], [-77.43933765412837, 34.58754581156331], [-77.43967603700747, 34.5878243256072], [-77.43963573667214, 34.58798093996239], [-77.43954233382212, 34.58798781038398], [-77.43919191530145, 34.58800123363116], [-77.43883686618292, 34.5880848101214], [-77.43874139735455, 34.58811753780386], [-77.43840382637048, 34.588016007599464], [-77.43804113875042, 34.588124158441275], [-77.43790465400528, 34.588064339411744], [-77.43761569260339, 34.587928215695854], [-77.4375817661933, 34.58783624668638], [-77.43753311264692, 34.58780676847715], [-77.43713463485719, 34.587533369467565], [-77.43682725514664, 34.587115242023756], [-77.43647158534912, 34.58757681311167], [-77.43641653636868, 34.58756179826228], [-77.43635104831488, 34.587553099952686], [-77.43613343718741, 34.58748314970493], [-77.4360393273685, 34.587505163299845], [-77.4359391491136, 34.58740036086729], [-77.43595007377976, 34.587282558938426], [-77.43587766597585, 34.587196954183824], [-77.43564508146096, 34.587013097480714], [-77.43557726868538, 34.58688881107477], [-77.43547980557292, 34.586829887540745], [-77.43535920626357, 34.5867306475426], [-77.43525090865695, 34.58669150268849], [-77.43521857078144, 34.58665536233829], [-77.43514206217517, 34.58657136171228], [-77.43506772336508, 34.58647987583953], [-77.43505780042574, 34.58646631105093], [-77.43507455960491, 34.58644150563853], [-77.43514215399475, 34.58633708104796], [-77.4351624542555, 34.58633404170863], [-77.43525076807029, 34.58634093654395], [-77.43532278147674, 34.58635040564833], [-77.43544780628807, 34.58638539528461], [-77.43550302411921, 34.586401937915824], [-77.43558324331528, 34.586456728359536], [-77.43564488374099, 34.58652604409261], [-77.43577842184504, 34.58664286999142], [-77.43603909618112, 34.58694256311165], [-77.43633194490513, 34.58681565887599], [-77.43643310828762, 34.586867698655965], [-77.43669814263386, 34.586939275250565], [-77.43682721659445, 34.58702354099436], [-77.43755850820112, 34.58689277023916], [-77.43761520961226, 34.58680504726124]], [[-77.4432604491998, 34.62276441634801], [-77.44373099028397, 34.62263035436913], [-77.44376327351033, 34.6226340917129], [-77.44410703532864, 34.62264384391842], [-77.44426935946595, 34.6228295840621], [-77.44429192793444, 34.62285262411869], [-77.44427474546802, 34.6228959804987], [-77.44418566237992, 34.62311000469715], [-77.44405450744003, 34.62316519855523], [-77.4438957110503, 34.62323202460943], [-77.44376848131978, 34.6232737401832], [-77.44349248163147, 34.623395066201915], [-77.44337032234064, 34.62323351943063], [-77.44327463662572, 34.62314265081546], [-77.44322691328026, 34.622805409782174], [-77.44319576892522, 34.622795884341954], [-77.44322851208992, 34.62277509608019], [-77.44323959781451, 34.622756015507775]], [[-77.35458770718337, 34.55131222282388], [-77.354438870231, 34.55138569259324], [-77.3542610230506, 34.55150304962643], [-77.35418957516417, 34.551552254256464], [-77.35399831770432, 34.55166808522955], [-77.3539696759591, 34.55168027373158], [-77.35379287798338, 34.551729672776034], [-77.35367952328126, 34.5517613449603], [-77.35341261641763, 34.55186999215105], [-77.35340109263277, 34.55187424451421], [-77.35339687247985, 34.55187688661212], [-77.35320442200634, 34.55202692659048], [-77.35315713703591, 34.55205371981764], [-77.35299801243352, 34.552148346621955], [-77.3529741929475, 34.55216327982849], [-77.35281811783237, 34.552189554485295], [-77.3528008848893, 34.5521837742441], [-77.35270242602633, 34.55215640898662], [-77.35260665188869, 34.5520931664787], [-77.35248697805514, 34.552078060506965], [-77.35241059947089, 34.55208178449239], [-77.3523469347501, 34.552063340304606], [-77.3523128817852, 34.55206266307522], [-77.352259814485, 34.55203591719663], [-77.35225723647379, 34.55201052705421], [-77.35221708465298, 34.55195994058248], [-77.35218955001584, 34.55192361927945], [-77.35220981361037, 34.55180504460549], [-77.35219892600416, 34.551799858989405], [-77.35220299632576, 34.551788025820514], [-77.3522223248085, 34.55173183395003], [-77.35232898495298, 34.55153631811893], [-77.3524013593194, 34.55138778854507], [-77.35233087741678, 34.55123071382613], [-77.35218282822424, 34.55106771020709], [-77.3520980244499, 34.55092417085129], [-77.35184994138808, 34.55085084138479], [-77.35176542374575, 34.55069310420221], [-77.35175272859139, 34.55063997000043], [-77.35165829699314, 34.55053279769311], [-77.35165416253622, 34.550527443218925], [-77.3515698843483, 34.550421464190634], [-77.35154092046703, 34.55038024646184], [-77.35153079195142, 34.5503432197611], [-77.35161960762464, 34.550291897098894], [-77.35165156789229, 34.55027779999377], [-77.35183155512665, 34.55016034007124], [-77.35186633976724, 34.550137164157285], [-77.35186928490015, 34.55013536222137], [-77.35187220964661, 34.5501331306217], [-77.35206579805295, 34.550000104601864], [-77.35208070569243, 34.54998986065171], [-77.35226485803042, 34.54988035432174], [-77.35232473939874, 34.54986022864516], [-77.35257968050675, 34.54978648304148], [-77.35266018832843, 34.54976223526041], [-77.35297531903313, 34.54968004256542], [-77.35317065099788, 34.54962983257637], [-77.35344986868371, 34.54956853460324], [-77.35369511643857, 34.54953353536045], [-77.35384325555849, 34.54953493183344], [-77.3539095180461, 34.549553483795485], [-77.35400676832379, 34.549581069921956], [-77.35423266974988, 34.54967441823088], [-77.35433286725382, 34.549715878481635], [-77.35448156821732, 34.549757546386644], [-77.35462227810933, 34.54980549487843], [-77.35491034914646, 34.5497616413396], [-77.3550139548897, 34.549846453567], [-77.35521148073332, 34.54977461720361], [-77.35531557861094, 34.54963748880847], [-77.35519080328538, 34.54954942264927], [-77.35519373708307, 34.54953261733471], [-77.3551973871721, 34.54951938474943], [-77.35521806536536, 34.5495063006838], [-77.35529358123658, 34.549457038588386], [-77.35531288007068, 34.549451392998414], [-77.35532579503527, 34.549447274158574], [-77.35541485309034, 34.54948535842422], [-77.35558100155757, 34.54945766588078], [-77.35575568006887, 34.54932931008622], [-77.35581149078651, 34.549309912644425], [-77.3561575781896, 34.54927145219776], [-77.35617646981534, 34.549286302206184], [-77.35652143775982, 34.54946389205446], [-77.35655836281346, 34.54948006151566], [-77.35659245345076, 34.549495971596876], [-77.35667110365358, 34.54949132285395], [-77.35683089501269, 34.54951520334362], [-77.35688200769292, 34.549534393363274], [-77.35682869277235, 34.54956799895847], [-77.35678736928102, 34.549556680780626], [-77.35662632013499, 34.5496936157352], [-77.35659640047514, 34.5497033484328], [-77.3565875886954, 34.549708211618714], [-77.35638868373567, 34.54985065532619], [-77.35638273280742, 34.54985433706596], [-77.35619163828333, 34.549853678511695], [-77.35600804250346, 34.55002744823812], [-77.35586598738453, 34.55009307907997], [-77.35588723031694, 34.550229289025054], [-77.35586566659599, 34.55029276761846], [-77.35588182443314, 34.55034915882284], [-77.35589304333911, 34.550411237941674], [-77.35591139829594, 34.55045237284916], [-77.35590597037607, 34.550485094331215], [-77.35590670839245, 34.550531682166806], [-77.35588096188394, 34.55056082245315], [-77.3558617011474, 34.5505877417086], [-77.35584534970582, 34.55060172102393], [-77.3557803334357, 34.55066869472752], [-77.35577593959255, 34.55067020061893], [-77.35577135395044, 34.55067357905508], [-77.35565628647714, 34.5507361691938], [-77.35549508440133, 34.55083576124654], [-77.35542930203036, 34.55087410168545], [-77.35538240215507, 34.55090026594516], [-77.35519734241024, 34.55100961355451], [-77.35515005093521, 34.5510284812027], [-77.35498521310369, 34.55109938212301], [-77.35491320240644, 34.55111973603023], [-77.35484553625099, 34.551174088123844]], [[-77.33968769467069, 34.64775757020637], [-77.33963257776108, 34.64770312273184], [-77.33971281036094, 34.64770784841748], [-77.33970370615772, 34.64775348036006], [-77.33973308016127, 34.64779694822929], [-77.33968933119759, 34.647758569638235]], [[-77.34268879750954, 34.65272349407499], [-77.34252864203397, 34.65240834971279], [-77.34267171635298, 34.65224306657077], [-77.3426826727603, 34.6522185162916], [-77.34297032536684, 34.65216613095185], [-77.34297621312396, 34.65216505870956], [-77.34298358804607, 34.65216579214463], [-77.34324876527634, 34.65218897127427], [-77.34330606714028, 34.65221319984701], [-77.34349494577248, 34.65227567874531], [-77.34362275038997, 34.65276240972743], [-77.34344579726212, 34.65290832195587], [-77.34343889149909, 34.652924401647425], [-77.34317177604821, 34.65291549259883], [-77.34312675694754, 34.65291399103013], [-77.34305377149627, 34.652898529464615], [-77.34290680485444, 34.65286598221639], [-77.34277737358143, 34.65276870557542]], [[-77.38668081459116, 34.58889031583408], [-77.38666584098121, 34.58878267116907], [-77.38674090651463, 34.58872675692042], [-77.38678276526392, 34.588688392226736], [-77.38695990124097, 34.588506522619845], [-77.38699140451766, 34.58851097637036], [-77.38717686846968, 34.58844701029168], [-77.38722210000005, 34.588441456983446], [-77.38727538729222, 34.58842490647704], [-77.38733123363615, 34.5884284832971], [-77.38737390087017, 34.58843301229671], [-77.38739802250556, 34.58843883486126], [-77.38744412510708, 34.58845817806625], [-77.38752557036975, 34.588495296109826], [-77.38757091204513, 34.58854380609811], [-77.38762827762133, 34.58858209699672], [-77.387774945958, 34.58862276384838], [-77.38796491859873, 34.58887085283483], [-77.38808701844991, 34.588709292074896], [-77.3881872951689, 34.58874830750662], [-77.3882384643162, 34.58876821614696], [-77.3883162169484, 34.58880309098791], [-77.38835898930962, 34.588815109414654], [-77.38843089972809, 34.58884661163939], [-77.38844148969791, 34.58886233140618], [-77.3884875464656, 34.588870820860265], [-77.38855600679385, 34.58889943438308], [-77.38861675721628, 34.588925955263825], [-77.38864735132063, 34.589035389003016], [-77.38875299846592, 34.58915304446004], [-77.38890221741264, 34.58904554737041], [-77.38896503714206, 34.58907186532172], [-77.38899372600343, 34.589083884271055], [-77.38914705779717, 34.589177430572526], [-77.38921297073705, 34.58919353703569], [-77.38924557178088, 34.58918939269097], [-77.38931494240694, 34.58921845469674], [-77.38934408146496, 34.58923066216918], [-77.38935319227073, 34.589234519312335], [-77.38937022528441, 34.58924187996222], [-77.38941743205604, 34.589262181333005], [-77.38944258566453, 34.589310035748056], [-77.38945527655304, 34.58932208292893], [-77.38946730331259, 34.5893606629623], [-77.38939747753136, 34.58945023455725], [-77.38936642722746, 34.58947882676928], [-77.38930185223238, 34.58950947684755], [-77.3891470033828, 34.58954046611342], [-77.38900287002139, 34.58956413165504], [-77.38889506066133, 34.589581832958324], [-77.38875293844256, 34.58954124678809], [-77.38851881222025, 34.58953696349295], [-77.38812209416236, 34.58967692967373], [-77.38796482180753, 34.58946023276065], [-77.38795579333217, 34.58944582446198], [-77.38778585198423, 34.589238621258104], [-77.38760121380304, 34.589072380385424], [-77.3875708247743, 34.58905960352205], [-77.38753736877919, 34.58904553707273], [-77.3873195044105, 34.5889592230512], [-77.38717678582964, 34.58892201883421], [-77.38690339309778, 34.58887842462748]], [[-77.41880080499102, 34.623206941349224], [-77.41870896732758, 34.62324860314787], [-77.41869697752092, 34.62323484409623], [-77.41865959228628, 34.623227332624225], [-77.4185118234414, 34.623096137514366], [-77.4184380684218, 34.62317986391279], [-77.41840719939374, 34.62316418579475], [-77.41837364410898, 34.623119794603355], [-77.41842516309984, 34.62304889240184], [-77.41848361019836, 34.62301008731134], [-77.41869372766735, 34.62281412643515], [-77.41870887202845, 34.62283336783803]], [[-77.43942623256079, 34.60210037112182], [-77.43941796901034, 34.602087285401474], [-77.43941511541384, 34.6020835273883], [-77.43937068516314, 34.6019206108455], [-77.43937100419839, 34.60191605273723], [-77.43937030282171, 34.60191298311431], [-77.43938668673066, 34.60190104808319], [-77.43939120446828, 34.60192029962814], [-77.43943583422744, 34.60208219170083]], [[-77.39550410744938, 34.586603085924835], [-77.39584631081993, 34.58646195085658], [-77.39606126135038, 34.58638561123715], [-77.39650987329394, 34.58622349908681], [-77.39663442274232, 34.58623365368363], [-77.39672974603963, 34.586160285296216], [-77.39679812184553, 34.58604771868497], [-77.39702849110851, 34.58587504757559], [-77.3971568753378, 34.58570971146919], [-77.39734691304409, 34.58554397548407], [-77.3974225579802, 34.58548114914352], [-77.39769068644655, 34.58535870207132], [-77.39805720033303, 34.58501692930119], [-77.39815811353053, 34.58494574219879], [-77.39821067090013, 34.58491348851435], [-77.39866958807804, 34.58492857640149], [-77.39889996791784, 34.585001773490845], [-77.3989987447083, 34.58515364620724], [-77.39912218298954, 34.584996273072605], [-77.39955199957416, 34.58505428770526], [-77.39977175307138, 34.58560246963001], [-77.39975563598202, 34.585621026656796], [-77.3992187497789, 34.585935569083276], [-77.39899871201055, 34.58610369745587], [-77.39875177123409, 34.5863489516002], [-77.39839393876014, 34.58666663954129], [-77.39827326607569, 34.586751580022096], [-77.39821058874738, 34.586792577066326], [-77.39816777439215, 34.58674540204091], [-77.397562236071, 34.58693720958246], [-77.39742247746497, 34.58700383885823], [-77.3972882695361, 34.587106129317846], [-77.39705588697908, 34.58725464759212], [-77.3970284109883, 34.587271388400964], [-77.39701805477621, 34.58727855056836], [-77.39696486413213, 34.587297381769], [-77.39683138000822, 34.58735093373776], [-77.39665181856643, 34.587361359992975], [-77.3966343528251, 34.587362374142266], [-77.39657246964248, 34.58735398827089], [-77.3963810624816, 34.58722994391677], [-77.39624030888567, 34.58722484098485], [-77.39602192090106, 34.58719810312602], [-77.39584625861934, 34.58719343444587], [-77.39551989115517, 34.5875058259345], [-77.39548182766467, 34.58754326052349], [-77.39545217673142, 34.58758260916594], [-77.395317872922, 34.58781485258454], [-77.39512421487089, 34.58798747249671], [-77.3950851651539, 34.58802228009305], [-77.39505808691386, 34.58802537235041], [-77.39504021068699, 34.588018850727295], [-77.3950044578191, 34.58800474680055], [-77.3949070757899, 34.5879692178237], [-77.3948610650223, 34.58794818065977], [-77.39478063574427, 34.587911406552415], [-77.39477859211274, 34.58773616191723], [-77.39483161798829, 34.58760510634929], [-77.39486109738425, 34.58755594658274], [-77.39493349892888, 34.58745612472015], [-77.39505814981996, 34.587241410990494], [-77.39511118120822, 34.58719734428221], [-77.39511269211238, 34.58713999161976], [-77.39514877873745, 34.5870371556055], [-77.39516654617321, 34.58682440757324], [-77.39536526220613, 34.58667898749438], [-77.3954149160657, 34.58663160051568], [-77.39545224965863, 34.58662162557384]], [[-77.36368195363569, 34.67429645082139], [-77.36283649245397, 34.674512202994585], [-77.36277071737378, 34.67423611939174], [-77.36275376953348, 34.67415499309134], [-77.36281641462391, 34.67407863015329], [-77.36301553427555, 34.673705667350006], [-77.3632511562548, 34.67379872590368], [-77.36351234596951, 34.673742644366236], [-77.3635810108659, 34.673797625811545], [-77.36349810442044, 34.67400282824517], [-77.36353076569755, 34.674048224922196]], [[-77.3160494783499, 34.641168951846694], [-77.31590429963025, 34.64089397773088], [-77.31615047390065, 34.64096912804273], [-77.3162562554794, 34.64105250101028], [-77.31627948933384, 34.641244438511265], [-77.3161178983224, 34.641176812453764]], [[-77.40114313920354, 34.61490408037115], [-77.40074516712005, 34.61501489936376], [-77.40065295270922, 34.614446818249505], [-77.40102164606257, 34.61467721577181]], [[-77.42487348556187, 34.56896931998154], [-77.425000950466, 34.568901576020814], [-77.42512688548129, 34.56893102199395], [-77.42524735963583, 34.56893692595367], [-77.42527098499234, 34.56906545960474], [-77.42510315980681, 34.569113226766696], [-77.42500102274695, 34.56917414888109], [-77.42489716961386, 34.569141174036126], [-77.42473107555656, 34.56914343112967], [-77.42475603720885, 34.56900950377943]], [[-77.34051065978392, 34.64585386672031], [-77.34074308415532, 34.64583306900918], [-77.34081815140355, 34.645807308179485], [-77.3409260882822, 34.64587990447385], [-77.34092607645549, 34.64590806338038], [-77.34083738714799, 34.64612089379933], [-77.34082834594729, 34.64615044842927], [-77.34081959665629, 34.6462137993658], [-77.34073369084257, 34.64639570514978], [-77.34077224948389, 34.646551831354344], [-77.34075203354561, 34.646674150102236], [-77.34072825723558, 34.64672425581285], [-77.34068035323303, 34.64677544300191], [-77.340634394873, 34.646885326885965], [-77.34053313143329, 34.646875717961215], [-77.340428131063, 34.64686575444219], [-77.34028198585683, 34.64672482834902], [-77.34006340819758, 34.64664912098646], [-77.34009230384692, 34.646382502821226], [-77.34010250078734, 34.64614007012892], [-77.34025198976359, 34.64606636247033], [-77.3404367445332, 34.645901798795535]], [[-77.39756416746232, 34.56895428586737], [-77.39772699443132, 34.56902833019427], [-77.39779204776218, 34.569318566155246], [-77.39751639858711, 34.569285655952456], [-77.39742352927786, 34.569121445944546], [-77.39738098516237, 34.56902657269652], [-77.39733632839163, 34.56898716015625], [-77.39731826928377, 34.568876310670646], [-77.39742354428506, 34.56889206255463], [-77.39747154717455, 34.56891591573832]], [[-77.39702801857659, 34.594506350678074], [-77.39702335187725, 34.59450667598095], [-77.39702801864186, 34.59450508798075], [-77.39703000016989, 34.594503582216205], [-77.39703074393735, 34.59450560966046]], [[-77.44061959522966, 34.59059584346464], [-77.44040607597557, 34.590788054286335], [-77.44037535698114, 34.590797004530074], [-77.44036724694939, 34.590802411065155], [-77.44036224972564, 34.59079439262949], [-77.44021801217968, 34.59056007539955], [-77.43998116191607, 34.590505403067084], [-77.43993443353699, 34.590431669202744], [-77.43985653081724, 34.59030874403214], [-77.43980387630931, 34.59021683633937], [-77.4397839896473, 34.59019427899986], [-77.43971260740697, 34.590039154823764], [-77.43978049875885, 34.58982061605987], [-77.43978269155731, 34.58981551016242], [-77.43978644120715, 34.5898133501039], [-77.43998079900103, 34.58971723760845], [-77.44014687230995, 34.58973069333628], [-77.44020368758976, 34.58972797702671], [-77.44037489596938, 34.589806226594774], [-77.44062477060731, 34.58990723498648], [-77.44062913405271, 34.59005738371505]], [[-77.44597891639908, 34.60203426453889], [-77.44602495425958, 34.60201317079528], [-77.44610918603725, 34.60202554475764], [-77.44635873114885, 34.60206220403373], [-77.44634760903394, 34.6021871448993], [-77.44610881896887, 34.602394903154355], [-77.44608578264648, 34.602424692919264], [-77.44599469552789, 34.602683044611105], [-77.44576227414717, 34.602791503090195], [-77.44577859738675, 34.602607414770645], [-77.44577115876145, 34.602491195918155], [-77.44580682161887, 34.60236577221494], [-77.44582073149805, 34.602312454709214], [-77.44585462435361, 34.60228276695449], [-77.44590737696413, 34.60215693507458], [-77.44596114634068, 34.602067762665925], [-77.44596852559465, 34.602054473663074]], [[-77.43300500196995, 34.62378365994175], [-77.43287800385917, 34.62379860997203], [-77.43272872383193, 34.623751883477254], [-77.4327216873862, 34.62374389879049], [-77.43286277291234, 34.62352576876922], [-77.43287492133037, 34.62348780858432], [-77.43290505777709, 34.62341841727148], [-77.4329801204091, 34.62349232512187], [-77.43301262354952, 34.62353600472665]], [[-77.44211383946612, 34.600949358429034], [-77.4416701714975, 34.60093774524547], [-77.44152830481961, 34.60050036728358], [-77.44152229134495, 34.60037953776005], [-77.44163384713757, 34.60006791405681], [-77.44167612087071, 34.59993268257801], [-77.44191060987123, 34.59972953267658], [-77.44215091838376, 34.59957133284414], [-77.44289368780059, 34.59944181202245], [-77.44292763432468, 34.599978804861706], [-77.4428175862076, 34.60033222570182], [-77.44282751385421, 34.60037660571152], [-77.44277877460695, 34.60049657195419], [-77.44266695772095, 34.600791638062674], [-77.44265939374719, 34.60089627705447], [-77.44253667260497, 34.60098093915279]], [[-77.36976339083216, 34.551072868421855], [-77.36990371224057, 34.5511466772392], [-77.37016126881943, 34.55141664916763], [-77.37016884187584, 34.55173158273684], [-77.37006812215974, 34.55203485012759], [-77.36991041668594, 34.55243210003046], [-77.36987397639614, 34.55245313282657], [-77.36984098861782, 34.552442102908515], [-77.36941608815164, 34.552301343394134], [-77.36913712943476, 34.552078721979115], [-77.36910965328988, 34.55205781425062], [-77.3691024521744, 34.552055932606926], [-77.36909805122184, 34.552043619876464], [-77.36903266632534, 34.551824078835416], [-77.36898626873591, 34.551661072124745], [-77.36896738718573, 34.5515886564656], [-77.36894307073565, 34.551487623580016], [-77.36912920227361, 34.55067555674002]], [[-77.42271509332978, 34.623648090933116], [-77.42304414006455, 34.62336971557603], [-77.4226183642305, 34.6233092370061], [-77.42271317192595, 34.623027943827815], [-77.42273667678141, 34.622765897395716], [-77.42313166271431, 34.6226820687287], [-77.42327186562629, 34.62280031034324], [-77.4235550262774, 34.62307880096238], [-77.42384260977882, 34.623142224918105], [-77.42349293213715, 34.62330093800296], [-77.42342550206858, 34.62336202276165], [-77.42313152860663, 34.62379388473169], [-77.4230374490489, 34.623865573367794], [-77.42286644801956, 34.62401081773511], [-77.42277688986721, 34.624029559896755], [-77.42251849607594, 34.62389054556304], [-77.42251596209256, 34.62388942475156], [-77.42251686146994, 34.62388456909428]], [[-77.38916813635772, 34.54592645171425], [-77.38926361439842, 34.545744551437174], [-77.38931814637017, 34.54592525361988], [-77.38935085820339, 34.54601529499837], [-77.38922435096357, 34.54599627967376]], [[-77.44582160608986, 34.60324187933174], [-77.44581238202477, 34.60334633614677], [-77.4457619766138, 34.60324901570828], [-77.44576100193976, 34.603220669327435], [-77.44575867602694, 34.60315012595339], [-77.44582028542044, 34.60317772130439]], [[-77.35783938428386, 34.67824186896639], [-77.35771274046995, 34.678062450794954], [-77.35773381306487, 34.6779583554269], [-77.35777546207336, 34.67776326339482], [-77.35786785200398, 34.6777263541693], [-77.35791011970227, 34.677744766545395], [-77.35804527758171, 34.67780646765489], [-77.35814422477678, 34.677805142729], [-77.35816643321088, 34.677831404977795], [-77.35815432402774, 34.677919630459286], [-77.35816694351354, 34.677953181451876], [-77.35807202900111, 34.67818008635139], [-77.35807427201497, 34.67820960438758], [-77.3580816481658, 34.678266729466955], [-77.35795240405565, 34.67846606311461], [-77.35780907238376, 34.67838250571755]], [[-77.44206141563451, 34.59771665730438], [-77.44169583236284, 34.597908306883646], [-77.44153259109567, 34.59779186100588], [-77.44134754617839, 34.597675241328], [-77.44116668499774, 34.59751060398018], [-77.4411406174282, 34.597475346978726], [-77.44112190222965, 34.59742984627975], [-77.44105369063465, 34.597275620787926], [-77.44116646890768, 34.597060446371856], [-77.44117411458114, 34.59705414792661], [-77.44132005407255, 34.59707163066327], [-77.4413635218587, 34.59707683782952], [-77.44147827703355, 34.59709058467091], [-77.44156058771377, 34.597119740141636], [-77.44171968815562, 34.59717930139381], [-77.44173792616226, 34.59719793677838], [-77.44195683782456, 34.597301637419605], [-77.44210612327477, 34.59748680237409], [-77.44216828884667, 34.59758598604132], [-77.44228174007844, 34.597666972127406]], [[-77.35995054319947, 34.78301910034919], [-77.35996409316454, 34.782908576291995], [-77.3599927368236, 34.782873855674694], [-77.3602076492275, 34.782910857791826], [-77.36030699105578, 34.78289651673326], [-77.36052832891738, 34.783106020947024], [-77.36024565713008, 34.783107651700746], [-77.36005017567365, 34.78310877870999]], [[-77.39396506081522, 34.624144007541815], [-77.39426721910517, 34.62411177066971], [-77.39447345785888, 34.62416985896753], [-77.3942672020481, 34.624381872281084], [-77.39419239577138, 34.624554404669645], [-77.39397674428186, 34.62455428137042], [-77.39387296121527, 34.624561358590526], [-77.39371508696979, 34.624491494325625], [-77.39373197727664, 34.624428617973805], [-77.39370902070971, 34.624280083829674], [-77.39381397496551, 34.62420139805775]], [[-77.37533940776653, 34.64101782512955], [-77.37525905909241, 34.6410358622818], [-77.37524714374982, 34.640951071436206], [-77.3752723285973, 34.640875176571775], [-77.37533944451366, 34.64088583892478], [-77.37536635735364, 34.64090492022133], [-77.37544891537996, 34.6409220139462], [-77.3754409666987, 34.641032512215496]], [[-77.40096900387901, 34.58121371119962], [-77.40095635149677, 34.58121566008277], [-77.40077199180911, 34.581244057592215], [-77.40073591362852, 34.58123383620121], [-77.40062543346632, 34.58119541410743], [-77.40057498258359, 34.5811142169176], [-77.40053404426124, 34.58105067861206], [-77.40057498667926, 34.58089732511154], [-77.4005871724108, 34.58084385456667], [-77.40060604817825, 34.58082800124991], [-77.40077200062092, 34.58071154240382], [-77.40089793014816, 34.58078588235937], [-77.40094306114644, 34.58080733044214], [-77.40096900936946, 34.58082573301421], [-77.4011560413837, 34.58096092345891], [-77.40109472867974, 34.58104658737553], [-77.40099671422729, 34.581196202262554]], [[-77.33921400384641, 34.63537179533321], [-77.33899142122075, 34.63552226167607], [-77.33875712965008, 34.635434502571194], [-77.33894513072858, 34.6352918534301]], [[-77.4177128470786, 34.56988048586289], [-77.41769381983752, 34.56986930769212], [-77.41769135422602, 34.56984650720009], [-77.41771284043661, 34.569843257911714], [-77.41772783471059, 34.56986439397685]], [[-77.36147711215841, 34.67279920098707], [-77.36150956976257, 34.672620089573414], [-77.36151862280701, 34.67257013122253], [-77.361605382522, 34.672455519653255], [-77.36165135173383, 34.672467944429336], [-77.36169030777566, 34.67247340905649], [-77.36177434672057, 34.67251389018815], [-77.3618271390617, 34.67252971867029], [-77.36188323038732, 34.67256874834942], [-77.36189796654696, 34.67260345575268], [-77.36189638697141, 34.67267351707126], [-77.36194728890374, 34.67275863650719], [-77.36179923539898, 34.672823983701136], [-77.36166481678259, 34.67289135749843], [-77.36158662110795, 34.67285319702594]], [[-77.3972240293062, 34.62042397004099], [-77.39720440654999, 34.62037946440864], [-77.39721311675231, 34.62036645325695], [-77.39722403101368, 34.620367831830826], [-77.39727820954995, 34.620368820352326]], [[-77.38185710344645, 34.58822793049944], [-77.38182133459793, 34.58824585214198], [-77.38175857157951, 34.58829838463106], [-77.38166187554374, 34.58823224480671], [-77.381660072652, 34.58823115323003], [-77.38165967522528, 34.58823104742236], [-77.3816598413571, 34.58823059525987], [-77.38165994135014, 34.58823043919686], [-77.38166007284694, 34.58823034253318], [-77.38166486025197, 34.58822471533229], [-77.38175861415078, 34.58812051051303], [-77.38179707625268, 34.5881461204131], [-77.38185711055993, 34.588198055009954], [-77.38186176056708, 34.58820149237156]], [[-77.44387978387911, 34.60210742261041], [-77.44389112376854, 34.602088570356635], [-77.44390303523434, 34.60210079229298], [-77.44389822001256, 34.60211449859019]]]]}, "type": "Feature", "id": "demo12", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.20552945414678, 34.657779248117535], [-77.20639641817989, 34.65797242556882], [-77.209229211185, 34.65831177098198], [-77.2095027096556, 34.658424996049014], [-77.20945450711379, 34.65976831281712], [-77.20975523560644, 34.66033038088443], [-77.21163943593564, 34.66321343727479], [-77.21291872188065, 34.66435116612528], [-77.21757254571986, 34.66848941800602], [-77.21917078926155, 34.66991039080176], [-77.22264751818585, 34.671797549765614], [-77.22376029265216, 34.67205422043961], [-77.22459225164008, 34.67281396826381], [-77.2266467006502, 34.67391418790389], [-77.22722861663091, 34.676080653111825], [-77.22812411197542, 34.676300799059376], [-77.22740119510517, 34.677227164937], [-77.23123473109601, 34.68063449304128], [-77.23248446054203, 34.6790330548086], [-77.23228906837524, 34.680800424463136], [-77.23280407263046, 34.68202913774992], [-77.23914392414142, 34.68766303496428], [-77.24294794854808, 34.69104286148149], [-77.24307414487699, 34.69115497173724], [-77.24312035180773, 34.69101934594042], [-77.24305151378192, 34.69096332512738], [-77.24303206655924, 34.69075451044116], [-77.24219032380906, 34.687247596276436], [-77.24126695694125, 34.686032644264856], [-77.24162108559554, 34.67963896327428], [-77.24164918678746, 34.67952429774041], [-77.2417476837022, 34.67907956351722], [-77.2427386279852, 34.67262452492794], [-77.24291872569944, 34.67016929686169], [-77.24302271976545, 34.66921021040876], [-77.24313652445308, 34.66770099594534], [-77.24303908809844, 34.66736637375238], [-77.24183899356417, 34.665996090042704], [-77.24133531374602, 34.66583354538095], [-77.23953691257631, 34.66511530484794], [-77.2344881035174, 34.66228151303588], [-77.23436662688437, 34.662210984586544], [-77.23428229581123, 34.66216201937328], [-77.23237937912087, 34.660015091609395], [-77.23209768906807, 34.65981186862403], [-77.23111436303478, 34.658244852296406], [-77.23124987109463, 34.65749846270372], [-77.2311080027893, 34.65510372749842], [-77.23109225070797, 34.65461845348167], [-77.23108471191077, 34.65447170076265], [-77.23106917075603, 34.654190215978716], [-77.231446841725, 34.651546871086374], [-77.23156236608234, 34.650738506946254], [-77.23173589211197, 34.649523521051336], [-77.23222541073498, 34.64890538444932], [-77.2334497173594, 34.64785886838446], [-77.23415667806448, 34.647172178953525], [-77.23609958852754, 34.64525131416647], [-77.23751418058032, 34.64414239976441], [-77.2379407704778, 34.643699543956146], [-77.23797099572433, 34.643228793417556], [-77.23784556105134, 34.64180454522388], [-77.23804895398243, 34.64026059412352], [-77.2378806505347, 34.63992401804985], [-77.23637216962575, 34.637948701520926], [-77.23565562078772, 34.63597787514712], [-77.2353280939345, 34.63540031122531], [-77.23563167534331, 34.632851417398506], [-77.23550504830479, 34.632395119937264], [-77.23566603061126, 34.632207910464786], [-77.2358074078455, 34.63210638022761], [-77.2361210756817, 34.63188520420436], [-77.2391499515306, 34.629819499532026], [-77.24370896770763, 34.6290707790709], [-77.24413425929929, 34.628992523682356], [-77.24437638308618, 34.62890931252699], [-77.24759851946135, 34.627870352022896], [-77.25241309714103, 34.62636345256875], [-77.2529966873747, 34.626354824685706], [-77.25313753366073, 34.626042225760045], [-77.25317889813965, 34.625782016181745], [-77.25495632277367, 34.622838742688465], [-77.25535992285592, 34.62244634323704], [-77.2553618074109, 34.62202573298677], [-77.25670916955478, 34.619138923132674], [-77.25696642357575, 34.61880201886045], [-77.25693978933495, 34.61849581352514], [-77.25746470649683, 34.61718158826584], [-77.25765153347972, 34.616970559632044], [-77.25769219656272, 34.61674452296152], [-77.25805128094864, 34.61638856808382], [-77.25881490859351, 34.616324222275225], [-77.25915411478334, 34.616378133469304], [-77.26006749896987, 34.61686654207628], [-77.26048507029681, 34.61708091973195], [-77.26057197665729, 34.617136063309275], [-77.26329776946827, 34.61818857334332], [-77.26482656109667, 34.61897456735223], [-77.26530121053143, 34.619177976008636], [-77.26709747204268, 34.619848146154915], [-77.26805789931784, 34.620160672317894], [-77.27004110250509, 34.62072734811906], [-77.27067595778936, 34.620449886681925], [-77.27238284641149, 34.61857129918876], [-77.27496699334814, 34.61630419778146], [-77.27589652218388, 34.61551849382907], [-77.27666225779032, 34.613980904424], [-77.27884689900588, 34.610105795828204], [-77.27938272980896, 34.608094635494936], [-77.27963710051935, 34.606822584861604], [-77.28037111939204, 34.604930028471834], [-77.28086440434316, 34.60413836570835], [-77.28246187978064, 34.602586198095764], [-77.28431342545471, 34.602022057849254], [-77.28566778078877, 34.601476590453444], [-77.2873222786954, 34.601292225993], [-77.29118785263859, 34.5997318874872], [-77.29208412719406, 34.59950668633343], [-77.2927542071247, 34.59923218422233], [-77.29371543480266, 34.59814439876], [-77.29605299492734, 34.59697561553314], [-77.29646538019011, 34.59582145523613], [-77.29741923999978, 34.59291213801832], [-77.29830931661687, 34.590763698969276], [-77.300120424564, 34.58851224909641], [-77.3020081259416, 34.586521231161235], [-77.30453193428254, 34.58498244727397], [-77.30543985727323, 34.58438950623875], [-77.3087175673015, 34.58258599234145], [-77.30901789318489, 34.58239455580402], [-77.30915827774746, 34.58233784684991], [-77.30947636968128, 34.58213744253569], [-77.31546623651116, 34.579235756296825], [-77.31835051747858, 34.577519092711164], [-77.31909923623115, 34.574305843683206], [-77.32044114546042, 34.57267367457371], [-77.32146761088015, 34.570569448484406], [-77.32177986936216, 34.56977666060772], [-77.32239766709282, 34.56770311948482], [-77.32300015890678, 34.56695301872888], [-77.32420626231439, 34.56599416045262], [-77.32493584635652, 34.56538854347174], [-77.3251539053271, 34.565180227358105], [-77.32558289919366, 34.564883816047065], [-77.32618220949482, 34.564441703397655], [-77.3265126099212, 34.56439575061614], [-77.32680315198385, 34.56439538352073], [-77.32730065562195, 34.56425334866344], [-77.3275039562433, 34.564388560531555], [-77.32769445104122, 34.56443233221957], [-77.32786445358803, 34.564555969443894], [-77.32796252823427, 34.564677288817514], [-77.32808421947396, 34.56536985514653], [-77.32808009707821, 34.56537405384259], [-77.32808747106868, 34.56547554031003], [-77.32811191273046, 34.56619152331925], [-77.32812498191169, 34.56621667709774], [-77.32818720568706, 34.5663160216712], [-77.32869497854463, 34.56717662278566], [-77.32936169988054, 34.56773709555466], [-77.32910197414026, 34.56837656476462], [-77.32913576970611, 34.568618640267644], [-77.3289309564713, 34.568711040518146], [-77.32887244826429, 34.56879496643535], [-77.32858574202791, 34.569546757894344], [-77.32866926549707, 34.56975277945624], [-77.32887122765204, 34.57017156961699], [-77.32892587836784, 34.57028795274458], [-77.32895951234413, 34.570342119204724], [-77.32903296155276, 34.570506158313236], [-77.32904669265127, 34.57098881446127], [-77.32900386097839, 34.571184820166245], [-77.3288700129444, 34.57154297949886], [-77.3287068478165, 34.571901102709276], [-77.32810092349416, 34.5729909680861], [-77.32808570899655, 34.57301490802097], [-77.32808372595936, 34.57301844229575], [-77.32808068303143, 34.57304904445245], [-77.32785020516208, 34.57389782133256], [-77.32807977391911, 34.57406673321981], [-77.32841035602425, 34.574309967262415], [-77.32908488957699, 34.57456947089841], [-77.32910391540132, 34.57516033016033], [-77.32888688088683, 34.57629607297143], [-77.32876201929406, 34.57705196779753], [-77.32860655944492, 34.57916017474238], [-77.32833678945991, 34.57977141381366], [-77.32964974461267, 34.58099895770763], [-77.32995797139768, 34.58090459922998], [-77.33080928326812, 34.581114264990795], [-77.33122566734366, 34.58125841278708], [-77.33217880607302, 34.58158836932294], [-77.33369596097342, 34.5816631001866], [-77.33437814706207, 34.581028649593065], [-77.33546660636239, 34.580970346697924], [-77.33699914916087, 34.581350577032154], [-77.33752994847679, 34.581645566936054], [-77.33763454627756, 34.58171861715692], [-77.33794167793133, 34.58178721602423], [-77.34068110916792, 34.583191617417405], [-77.34195308661941, 34.58323631069129], [-77.34266166928555, 34.58324243004999], [-77.34383316019328, 34.58362169252479], [-77.34583294232226, 34.58404878928222], [-77.34653576734567, 34.58443167009532], [-77.34698495779328, 34.58447976538052], [-77.34773690677338, 34.58458512542727], [-77.35013687187784, 34.585246176262814], [-77.35154630478564, 34.58510480504984], [-77.35328938749915, 34.58507668510682], [-77.35595542615796, 34.58546502353006], [-77.35644159159492, 34.58543628420431], [-77.35706763702873, 34.58515439773405], [-77.35801810019083, 34.584861763985714], [-77.35867369142318, 34.58460557322688], [-77.35887557114336, 34.584644797628], [-77.35894804052387, 34.58470899037628], [-77.35938367359296, 34.5848732020492], [-77.35959401578923, 34.58541081631492], [-77.35960453189695, 34.585452244609236], [-77.35960821121245, 34.585463067871565], [-77.35962518678765, 34.58549425336111], [-77.35995048250315, 34.58626290386897], [-77.36006072137194, 34.5865926689631], [-77.36038139494886, 34.586864539761585], [-77.36053002465167, 34.58702858472068], [-77.36079678247872, 34.587391477895544], [-77.36080074090029, 34.587414167790776], [-77.36079132841435, 34.58743292814629], [-77.36070879482844, 34.58785195672873], [-77.36058320814284, 34.58808811774493], [-77.36040434565828, 34.588320336874844], [-77.36038066275705, 34.5883401279826], [-77.36009489625096, 34.58848163474633], [-77.35977320276612, 34.588640930121386], [-77.35959237316762, 34.58865698607277], [-77.35943150789274, 34.588711644260385], [-77.3592185488329, 34.58891557784541], [-77.35801561744854, 34.58959254608773], [-77.35717731097472, 34.59000466398202], [-77.3564378062534, 34.5924134182526], [-77.35623399949384, 34.59252203750212], [-77.35620030459363, 34.59274639163175], [-77.35620945767101, 34.59299072740634], [-77.35643742409965, 34.593121545145095], [-77.35816811476104, 34.59585959647214], [-77.35871389722566, 34.59672302507168], [-77.35958792703289, 34.59751980606295], [-77.36049435550878, 34.59892120212096], [-77.36020429767362, 34.599628052180876], [-77.36002386656887, 34.600687140644176], [-77.36008369696515, 34.60184037640942], [-77.36024006619118, 34.60235422926701], [-77.36007646222009, 34.60290689985844], [-77.359782302231, 34.60560284967002], [-77.3599377038775, 34.605794175533816], [-77.3600714290037, 34.606300408188645], [-77.35958338796371, 34.606680165624546], [-77.35868167223904, 34.606946051460184], [-77.35749740529727, 34.60729525006921], [-77.35643018215026, 34.606662451701396], [-77.35609077262804, 34.6067133192563], [-77.35327790740484, 34.60500501743908], [-77.35045062981136, 34.607511852100764], [-77.35012143518877, 34.610472153796856], [-77.34951564087541, 34.61069007458025], [-77.34742786648425, 34.611486260176655], [-77.34696742766761, 34.611462216553456], [-77.34681822588406, 34.6112388625904], [-77.34650294530523, 34.61112334873869], [-77.34285270997958, 34.6092888038723], [-77.3406620393611, 34.609441658490105], [-77.33796042193511, 34.609441694626], [-77.33717524910651, 34.6096809994365], [-77.33501203705495, 34.60933411862029], [-77.33229101420737, 34.610169454223545], [-77.33001704126976, 34.60995746935497], [-77.32850541004625, 34.60848270778244], [-77.32587631958998, 34.60724036160473], [-77.32473614731714, 34.606763645801784], [-77.32394190054858, 34.60702279411064], [-77.32376240318733, 34.607530329928956], [-77.32058918522685, 34.61400716961104], [-77.32021390064055, 34.61421812012531], [-77.31795821334907, 34.61365415738399], [-77.3165317040544, 34.6138235448011], [-77.31550764435819, 34.61420047313151], [-77.31493786553986, 34.61462778234241], [-77.3131855240359, 34.615387610567915], [-77.31188687063266, 34.615910280094155], [-77.31126185761946, 34.61653253429923], [-77.31100888952744, 34.61730049791781], [-77.30923241235256, 34.619089284271794], [-77.30877564315004, 34.619549221959204], [-77.30674603535134, 34.621578818849116], [-77.30601517693545, 34.622309648184434], [-77.3063890081477, 34.62341530147438], [-77.3049022443241, 34.626609960356326], [-77.30283761338283, 34.627627515622265], [-77.30192511610858, 34.629168227129675], [-77.2995050785618, 34.631109770140796], [-77.29861381779031, 34.6321052572641], [-77.29655703230709, 34.63151338641836], [-77.29407700667825, 34.630715086481366], [-77.29326681929875, 34.630978648059646], [-77.29234543720979, 34.63089678757376], [-77.29064338613325, 34.630665010063154], [-77.28914462795188, 34.6312941283759], [-77.28824709756435, 34.63148536751706], [-77.28747183772578, 34.63168265146505], [-77.28544458767288, 34.63303414394049], [-77.28413636747725, 34.633906266864464], [-77.28372617306636, 34.63448356852955], [-77.28189519880866, 34.63715291681426], [-77.28174498021777, 34.637378236131], [-77.28031405766953, 34.640487408364244], [-77.28039162347528, 34.64108914163105], [-77.28193645640454, 34.645544020961516], [-77.28358874972875, 34.646791021766816], [-77.28477306449163, 34.649109891189994], [-77.28665809759114, 34.65228749911037], [-77.28361124318094, 34.65140632580479], [-77.28193852796952, 34.651135028440564], [-77.28027388461742, 34.651662472949056], [-77.27723879249399, 34.65324628183508], [-77.27643915941351, 34.65342029122737], [-77.27584117931836, 34.654601857414946], [-77.27666237265481, 34.65596722718218], [-77.27766786669466, 34.65538944777196], [-77.27975071949174, 34.65903604852715], [-77.28113353038731, 34.65990540293164], [-77.28145659747818, 34.660251066916906], [-77.28220011544141, 34.66048393581742], [-77.28344702256788, 34.66090375283798], [-77.28391778590814, 34.661017582586716], [-77.28455151617146, 34.66100172170564], [-77.28643699454294, 34.66080643028397], [-77.28837272001117, 34.660341681124116], [-77.28888757653475, 34.66025274406039], [-77.28936735136519, 34.66016032147252], [-77.29133211586776, 34.65966909569557], [-77.2929301262451, 34.6590161733182], [-77.29346370892011, 34.658646654508324], [-77.29355486696834, 34.65797891488138], [-77.29417080132974, 34.65547060577413], [-77.29417078605695, 34.65396639369813], [-77.29366251599845, 34.65216436161954], [-77.29484245089094, 34.6492531465336], [-77.29523909275463, 34.64857281267918], [-77.29660839191547, 34.64765527938003], [-77.29812599365279, 34.64698043864117], [-77.29985675016873, 34.646812071187256], [-77.30158575987029, 34.64693242474319], [-77.30412699376402, 34.64735600625182], [-77.30420610535923, 34.647387352503586], [-77.30427808676025, 34.64738787284488], [-77.30694721752486, 34.648125073450274], [-77.30806868113496, 34.64825894078911], [-77.30836705904339, 34.648335195353525], [-77.30972070360124, 34.649183481962666], [-77.3105875630983, 34.649846938478454], [-77.31140145265778, 34.65151149584046], [-77.31303662324477, 34.65294495148268], [-77.31449779801665, 34.654565660778616], [-77.31609708502536, 34.655432167540866], [-77.3163548873645, 34.65580845500924], [-77.31667849854477, 34.656300661072116], [-77.31738452899049, 34.65735529198368], [-77.31751914039178, 34.65776859864893], [-77.31786055827004, 34.658977990511744], [-77.31786059916766, 34.66007423769187], [-77.3162142810506, 34.66257945973356], [-77.32085353259095, 34.6663660873373], [-77.322352750613, 34.66656756683818], [-77.32348243756618, 34.66670038401041], [-77.32440270578284, 34.666182753718], [-77.32480820123321, 34.666300440585246], [-77.32627115725842, 34.66783015860421], [-77.32633544699577, 34.667869731266435], [-77.32652526970928, 34.66791795137064], [-77.32663681821242, 34.66825265735447], [-77.32759463234649, 34.6701024884856], [-77.32835264470566, 34.67156632257415], [-77.32874481343313, 34.672370400508335], [-77.32929130688731, 34.67411499778686], [-77.32976061988688, 34.67474172091088], [-77.32984040500304, 34.67526128284467], [-77.32956967366646, 34.67596215801732], [-77.32819160470945, 34.67789924793569], [-77.32607304809798, 34.67796796720577], [-77.32565393524456, 34.67790119866552], [-77.32300712702741, 34.67926225714183], [-77.32185349836236, 34.67933242674765], [-77.31955250116968, 34.68057050395852], [-77.31817208867177, 34.68117438636845], [-77.3175232632604, 34.68165412072956], [-77.31519858185824, 34.683116533247066], [-77.3149992336383, 34.68346757981205], [-77.31466073845638, 34.68513963980703], [-77.31391364814365, 34.686931336113076], [-77.31400333075266, 34.68912858844916], [-77.31201691565371, 34.691038400516845], [-77.31106076938794, 34.691481072404386], [-77.3116792019346, 34.69180217728409], [-77.31158842755792, 34.693212494398686], [-77.3106050176799, 34.69309256959149], [-77.3105822565206, 34.69264567742932], [-77.30977260808098, 34.6918380280696], [-77.30967603189535, 34.691766313472606], [-77.3095486483119, 34.69168815353046], [-77.30917448686246, 34.6905757631483], [-77.30579047893636, 34.69062253849492], [-77.30527039375778, 34.69085115572896], [-77.3022814152821, 34.69261767801978], [-77.30113857588417, 34.694788902187426], [-77.30124709503558, 34.6966707436459], [-77.30123695240849, 34.696724876792416], [-77.30119715945993, 34.69676466617406], [-77.29906597625613, 34.69897137409945], [-77.3022680021644, 34.701169575156655], [-77.30346896501094, 34.70126699523589], [-77.30519294086348, 34.70203163048191], [-77.30663818655324, 34.702612159278715], [-77.30867757925301, 34.70356727675824], [-77.30948822269829, 34.70534244231095], [-77.31045867835047, 34.705944628792366], [-77.31321494701858, 34.706383519864815], [-77.31750836283953, 34.70612625654957], [-77.32042922821329, 34.70460176154768], [-77.32170877909428, 34.70615758560617], [-77.32489327350225, 34.70572239379985], [-77.32593993287612, 34.70605656397478], [-77.32925939362438, 34.7065326294352], [-77.329368648686, 34.70657250305433], [-77.329423835273, 34.706614460572766], [-77.32952940942114, 34.7065713524298], [-77.3338460441611, 34.706281724780226], [-77.33430956277321, 34.706284507943195], [-77.33493813486109, 34.70625983716647], [-77.33872649459343, 34.70568071067851], [-77.33923203071208, 34.70582772152187], [-77.33995860892136, 34.705603939406785], [-77.34428471654986, 34.70455801516392], [-77.34438724880314, 34.704569297248966], [-77.34712350454454, 34.70552722425256], [-77.34818716446614, 34.70797648444905], [-77.35306130104729, 34.7072656227355], [-77.3534759084633, 34.70737297728482], [-77.35359578298602, 34.707092936959796], [-77.35722497091558, 34.70558967802859], [-77.35713066932848, 34.70413419008601], [-77.35718387724313, 34.70270118757785], [-77.35721793813313, 34.70249019651107], [-77.35722501301336, 34.70159291540255], [-77.35722502005318, 34.700907892370594], [-77.35722502825195, 34.700745995251914], [-77.35728584275066, 34.70053778411292], [-77.35767810383322, 34.70003217333928], [-77.35782821667645, 34.699742028552045], [-77.35884376907708, 34.6996621070939], [-77.35897573718626, 34.69968644717554], [-77.35927297095989, 34.69974604165775], [-77.36008630789993, 34.699985115650094], [-77.3610219085655, 34.700224503316605], [-77.36146919947717, 34.70079524332681], [-77.36354847868144, 34.70098228698631], [-77.36450507030075, 34.701261007822836], [-77.36484146388568, 34.70135357421902], [-77.3654801024561, 34.701561588318114], [-77.36670572120553, 34.70192914046871], [-77.36777477686182, 34.70224972204005], [-77.3682179526567, 34.703134947076165], [-77.36855921989329, 34.70379373815973], [-77.36854953221479, 34.7048073721609], [-77.36858432466732, 34.70503416768704], [-77.37020711696894, 34.70636719346971], [-77.3706134055274, 34.70637277687707], [-77.37067398561456, 34.70669655612936], [-77.37056684263305, 34.70720114065858], [-77.37014332446385, 34.7087190571074], [-77.3696993341292, 34.71023041830037], [-77.3693946386299, 34.71126770627556], [-77.36834664534419, 34.712865070455365], [-77.36850202429699, 34.71430599554068], [-77.36938129849372, 34.71636101036463], [-77.3693614532815, 34.71662478113817], [-77.36695810879547, 34.71756324167756], [-77.36509027633352, 34.71766470647501], [-77.36445924973646, 34.717921060049974], [-77.3639009349671, 34.71784696332086], [-77.36215031505247, 34.7176154439978], [-77.36087883044728, 34.717018673214106], [-77.36020662773757, 34.71606978118666], [-77.35850858951657, 34.716938741498396], [-77.35687320027972, 34.716947135504746], [-77.35551207621437, 34.715741003238485], [-77.35194729649552, 34.71623037885072], [-77.35093966429918, 34.719154633435735], [-77.34668391981083, 34.72177834722502], [-77.34565901895755, 34.72557434725209], [-77.34415572479254, 34.72788368070947], [-77.34493371039608, 34.72928572528768], [-77.3461505654747, 34.73147850500608], [-77.34616005415802, 34.73149590824074], [-77.34621337243586, 34.73150042943705], [-77.34832727278493, 34.73223171910422], [-77.34861996663483, 34.73275728279975], [-77.34938146501011, 34.73272597112498], [-77.34950920061216, 34.73299771251913], [-77.34912730357375, 34.73394380781403], [-77.34926005330166, 34.734006661875696], [-77.34933802694397, 34.73434285624657], [-77.34891703762948, 34.73432468764844], [-77.34849880925697, 34.734427228985986], [-77.34812439575771, 34.73454407598475], [-77.347662015084, 34.734521657824565], [-77.34661770175158, 34.734485611827004], [-77.34645187616995, 34.73442489244786], [-77.34544295238004, 34.73391400457227], [-77.34324387121588, 34.73404921922034], [-77.34192502918503, 34.734753078227435], [-77.3403015272614, 34.735118975264356], [-77.33870396638028, 34.7344799760329], [-77.33840620744792, 34.73430592687689], [-77.337361602832, 34.73394303590454], [-77.33587182980952, 34.733874656450055], [-77.33476545843516, 34.733952424591955], [-77.33507449892326, 34.733028153655], [-77.3338631008714, 34.73254357106386], [-77.33237436971203, 34.73263795917977], [-77.3315060499595, 34.732410761148884], [-77.3277878990138, 34.73301143803684], [-77.32244383000878, 34.73093446968894], [-77.32232917330396, 34.73101521584717], [-77.31714497635312, 34.73645237941026], [-77.31557999645236, 34.73774484521111], [-77.31468190361026, 34.73972117354894], [-77.31473524957558, 34.73989273200691], [-77.31473019099812, 34.74066565595279], [-77.31525932954133, 34.7426424905032], [-77.31712758130712, 34.74328514790679], [-77.31418780032598, 34.74404684242696], [-77.31331436885688, 34.74553142937229], [-77.31158072442453, 34.74794348120808], [-77.31202661717083, 34.74995661047684], [-77.31235817315775, 34.7511772213517], [-77.31410181059064, 34.75106008296444], [-77.31537880739874, 34.750210773299486], [-77.31560703957821, 34.7502567766838], [-77.3167745487313, 34.75011001735471], [-77.31770578179433, 34.75002905295603], [-77.31687857135049, 34.750263216422724], [-77.31671295289068, 34.75032171471392], [-77.31570247441307, 34.75049768588225], [-77.3147324760632, 34.75141088963693], [-77.31443887830437, 34.7519316124271], [-77.31381099090528, 34.75205946327932], [-77.31211591595341, 34.75242646583507], [-77.31337848693181, 34.75354570032298], [-77.31459071766257, 34.7546202444029], [-77.31551983805184, 34.754422116465065], [-77.31673125858208, 34.75396361171524], [-77.31685671930532, 34.753945498527834], [-77.31743004823359, 34.75330601869561], [-77.31771393541365, 34.75295210517385], [-77.31797492244115, 34.752512004955285], [-77.31799357502302, 34.75236344241214], [-77.31798995358112, 34.751939584988506], [-77.31895556795286, 34.75083592231441], [-77.31895546600343, 34.750832642322656], [-77.31895958374922, 34.75083085110616], [-77.31896145023873, 34.750829621052084], [-77.31932223568168, 34.750295050567075], [-77.31920632786995, 34.74998791705879], [-77.31917598022555, 34.7498783419194], [-77.3191517762377, 34.74983103303707], [-77.31900415596262, 34.74965327190907], [-77.31897368527359, 34.7496397347248], [-77.31873735281235, 34.74954078331708], [-77.31859980045095, 34.7495330075714], [-77.31814798587261, 34.74950746712145], [-77.31742018080695, 34.74946632013529], [-77.3169499412191, 34.74950720427803], [-77.31651047928383, 34.749562445933826], [-77.31549288798848, 34.749357336191885], [-77.31516295382367, 34.74902175371267], [-77.31426706499634, 34.747575714200664], [-77.31563373437946, 34.745507350143725], [-77.3157028106446, 34.74538993999184], [-77.31582906116981, 34.74535722859809], [-77.31856816098517, 34.74394511006095], [-77.31907303415457, 34.744440232605584], [-77.31900629895001, 34.74497733086776], [-77.3193307531914, 34.74544195735986], [-77.31955170982091, 34.745648666303154], [-77.31951983572742, 34.745881724786976], [-77.3197225474185, 34.74615432674542], [-77.31981199276396, 34.74623678632448], [-77.31985162653514, 34.7463236459438], [-77.31994638636712, 34.74641446924034], [-77.32005796000178, 34.74644181985893], [-77.32022079254804, 34.74650078847924], [-77.32053465984364, 34.74646950413299], [-77.32066470635105, 34.746699646243954], [-77.32074973499003, 34.74674173728508], [-77.32087655239931, 34.74678374919162], [-77.32110767810507, 34.74681724932312], [-77.32130896157182, 34.74687858557675], [-77.32168244897649, 34.746859617320624], [-77.32210310930292, 34.746840304907195], [-77.32254931078721, 34.74673322833214], [-77.32320940441699, 34.746936137275576], [-77.32383627810874, 34.74642756675582], [-77.32396987617221, 34.74633328164359], [-77.32406306526664, 34.74623413207526], [-77.32453715205867, 34.745559189079984], [-77.3253924564519, 34.74519622013206], [-77.32560357874905, 34.74572595191988], [-77.32553423118021, 34.74603257753171], [-77.32574273836403, 34.74640720270962], [-77.3257382578474, 34.74649199127646], [-77.32614210914706, 34.7467379619134], [-77.32626816402257, 34.746791522478645], [-77.32664848786959, 34.74679206853003], [-77.32673066417621, 34.746773965185], [-77.32719305989104, 34.7466362889118], [-77.32744968520308, 34.74636134111063], [-77.32772371123079, 34.74646082516105], [-77.32830245449642, 34.74634267669603], [-77.32875399173528, 34.74599590877533], [-77.32917376017832, 34.74583805494287], [-77.3295806940155, 34.745821489371], [-77.33000811878858, 34.745802990587606], [-77.33038086102624, 34.74599458406336], [-77.33054314351031, 34.74602305345091], [-77.33097997165099, 34.746161983229776], [-77.33109283581832, 34.746192676971795], [-77.33112616407723, 34.74620985600578], [-77.33113240911891, 34.74624018098551], [-77.33131597650235, 34.74645975614474], [-77.33149786620719, 34.74667746179508], [-77.33151080516124, 34.746702403770385], [-77.33191382923853, 34.747107819009706], [-77.33195309831235, 34.747150630304176], [-77.33200483932475, 34.747176401254], [-77.33249775291254, 34.74750704188668], [-77.33250615398747, 34.74751244197499], [-77.33250761426666, 34.74751258173984], [-77.33299957327611, 34.7478756488108], [-77.33302358584925, 34.74790416669819], [-77.33303569011379, 34.74792879042175], [-77.3339738312658, 34.74864537239702], [-77.33407150465074, 34.7486750581693], [-77.33433423371781, 34.74872553246609], [-77.33485000372147, 34.748864807474334], [-77.3350801651722, 34.74896085135904], [-77.33529602638498, 34.749081058339044], [-77.33552297213258, 34.74913569198252], [-77.33563132820596, 34.7491254899919], [-77.33580039173907, 34.74915689356088], [-77.33620692796768, 34.74920607371794], [-77.33638053015153, 34.74926465369768], [-77.33659636847892, 34.749390162199795], [-77.3366848014069, 34.749424861602186], [-77.33673296272418, 34.74945715932091], [-77.33706435452237, 34.749527186822945], [-77.337273914566, 34.74965693569874], [-77.33770403046002, 34.749823665249956], [-77.33811107289222, 34.750157234207606], [-77.33820866398453, 34.75022397391591], [-77.33828760318036, 34.750291183428494], [-77.33844428044041, 34.750436969700736], [-77.33859597833819, 34.75057812165546], [-77.33869757345845, 34.75063637428924], [-77.33877312392391, 34.750681680485755], [-77.33884008470329, 34.75072387887954], [-77.33903071518598, 34.75076219949721], [-77.33904237483684, 34.75076542048048], [-77.33905684888342, 34.75076561955417], [-77.33906771654631, 34.750757125955694], [-77.33925694499952, 34.75062374089593], [-77.33926570423313, 34.750593705983285], [-77.33926885354404, 34.75048585927747], [-77.3392578175732, 34.75030534572103], [-77.33925868525728, 34.75020494459121], [-77.33918284931801, 34.750010278023865], [-77.33907745687327, 34.74963470082865], [-77.33894141623891, 34.74966057387092], [-77.33904644741914, 34.749541607809924], [-77.3386057000709, 34.74919687160185], [-77.33857798892672, 34.74915169783173], [-77.33853638200469, 34.7491241728774], [-77.33813107301191, 34.74876893169865], [-77.33802414824972, 34.74878922839927], [-77.33802790592304, 34.748706518374895], [-77.33781403082507, 34.7483877356276], [-77.33792561642097, 34.74823316944297], [-77.33840700351817, 34.74763645907498], [-77.33906065206017, 34.74763169837807], [-77.34138447012403, 34.747721300826505], [-77.34144325810969, 34.74767790143552], [-77.34146797277174, 34.74771786087007], [-77.34159831324692, 34.74772954361765], [-77.34145488133844, 34.74778368696827], [-77.34180264213423, 34.74867627111021], [-77.3414597543997, 34.74906464762154], [-77.34149411724033, 34.74927441904541], [-77.3415697068979, 34.749303845781206], [-77.34190853761613, 34.749462267467514], [-77.34210235294569, 34.74953221297481], [-77.34212709377918, 34.74957603473168], [-77.34218340281289, 34.74959880422962], [-77.3426248951667, 34.74979535242545], [-77.34297671846065, 34.749711056966476], [-77.34308994015932, 34.74996184919331], [-77.34316527751531, 34.749997115569165], [-77.34329166778701, 34.75004937177292], [-77.34360020500185, 34.75001996901741], [-77.34372683666257, 34.75012601525536], [-77.3437776485531, 34.750354902408766], [-77.3439910425634, 34.750507777206984], [-77.34416785278727, 34.75066971113737], [-77.34468135223842, 34.750642248606354], [-77.34476785722245, 34.75066633281814], [-77.34480290951507, 34.750671832465905], [-77.34493960783107, 34.75068290141506], [-77.34535570973327, 34.75070476746523], [-77.345520187088, 34.75060326335473], [-77.34561670058159, 34.75019430414745], [-77.34564002184598, 34.750099447774204], [-77.3459992847204, 34.7497518373624], [-77.34623417626167, 34.749464756285086], [-77.34640967247816, 34.749436249153185], [-77.34655605071276, 34.74948641041472], [-77.3468401669359, 34.74949937880572], [-77.34690191205864, 34.74950659532358], [-77.34726659684341, 34.74956563129758], [-77.34746708365202, 34.749623050263], [-77.3479704405269, 34.74972634378227], [-77.34806961917836, 34.74961091480703], [-77.34814714776223, 34.74967684139292], [-77.3481308670752, 34.749757741500055], [-77.34831723441661, 34.74978950086858], [-77.34843284832141, 34.74981684274543], [-77.34848733998264, 34.7498094119453], [-77.34850798442406, 34.74982784689057], [-77.34860463418276, 34.74983116277929], [-77.34866933100153, 34.74980571022797], [-77.34871920041938, 34.74975137761251], [-77.34870941222677, 34.74967836620748], [-77.34870919910998, 34.74963879378844], [-77.3486732482178, 34.74959501168555], [-77.34848447327117, 34.749417426473144], [-77.34829527649458, 34.74924780589832], [-77.34820541899836, 34.749143537960556], [-77.34796607195042, 34.74902771659265], [-77.34784741468778, 34.748821871766395], [-77.34780885029733, 34.748446827472804], [-77.34779408650296, 34.74837160542313], [-77.34779009682163, 34.74829002819657], [-77.34778493854424, 34.74785568435317], [-77.3477118156857, 34.74764649948621], [-77.34785505605134, 34.747358686792765], [-77.34773829638138, 34.74723194899376], [-77.34765165233921, 34.74714290379329], [-77.34759639763608, 34.74711648036745], [-77.34744488930531, 34.74706340552641], [-77.34705373501232, 34.74699939630244], [-77.34702721432419, 34.74701389051459], [-77.34698078267812, 34.74699125235793], [-77.34657602104281, 34.74694322730541], [-77.34645195378181, 34.74693221665889], [-77.34622939595384, 34.74690737063224], [-77.34616040654339, 34.746904860645536], [-77.34612520165857, 34.746895738457916], [-77.34601895059913, 34.74687951246432], [-77.3458751115921, 34.746855987358245], [-77.34569348832466, 34.7468335540434], [-77.3453510778967, 34.74676751488102], [-77.34529476069865, 34.746791832299046], [-77.34513325116772, 34.74675732150281], [-77.34478253672864, 34.746745729012545], [-77.34471153020316, 34.74673758645234], [-77.34423362076086, 34.74639334727212], [-77.34422620927951, 34.74638519507885], [-77.3442184593753, 34.74637308668187], [-77.34392710406797, 34.745948013801254], [-77.34387272374464, 34.745868676017], [-77.34344499741233, 34.74552676390407], [-77.34332996355803, 34.74530811775198], [-77.34260121544482, 34.74526976437371], [-77.34241496862612, 34.74433439795745], [-77.34201715486316, 34.74414221670765], [-77.34142203972853, 34.74385471044765], [-77.34075793431478, 34.74353388020096], [-77.34031951596668, 34.743300556591876], [-77.33952822669019, 34.74290282177094], [-77.33843725481942, 34.74231453323401], [-77.33839759503866, 34.74219562005735], [-77.33834724127836, 34.741843071365174], [-77.33819287878356, 34.740776409937446], [-77.33814060124003, 34.74040570701348], [-77.33898220441714, 34.73965845423883], [-77.33954118958832, 34.73973959856058], [-77.34149658440451, 34.73925045587108], [-77.34314847300489, 34.73971891535672], [-77.3435207874869, 34.73983256399781], [-77.34366695332074, 34.740026159457535], [-77.34442053930326, 34.74071730337265], [-77.34441834623355, 34.74149423243772], [-77.34394909745475, 34.74233385565749], [-77.34371043588139, 34.74284009030234], [-77.34335758919232, 34.7435892426043], [-77.34448475717888, 34.74382131343306], [-77.34487313132583, 34.74412019151129], [-77.34494519196038, 34.744255584161486], [-77.34491085504864, 34.74435094220068], [-77.34529503621316, 34.74472956259841], [-77.34531779084381, 34.74475740071286], [-77.34533628770372, 34.74477996044685], [-77.34552625328756, 34.744964516110876], [-77.34554973634701, 34.74497320620006], [-77.34581851894407, 34.7449893773367], [-77.34628202445968, 34.74480422822242], [-77.34648310715016, 34.74476358035392], [-77.34672684541286, 34.74479493809874], [-77.34679486075183, 34.74457986694422], [-77.3467481691517, 34.74444574026862], [-77.34678273265153, 34.74409415264728], [-77.34679577757981, 34.743687492341294], [-77.34679146942462, 34.7436240748406], [-77.34679510146347, 34.74357883869847], [-77.34685853432435, 34.743471505131104], [-77.34701528559714, 34.74308749143076], [-77.34705216794828, 34.743029396934226], [-77.34721309210809, 34.74267259813175], [-77.34723258976842, 34.74257029977933], [-77.34729542075529, 34.74244813329101], [-77.34730115546984, 34.74243147877835], [-77.34728609438424, 34.742319269797804], [-77.34736250404146, 34.74216669068953], [-77.34738522258162, 34.742061980101106], [-77.34749108724702, 34.74164233041253], [-77.34750944422714, 34.7415575582577], [-77.34752154825256, 34.7414858517985], [-77.34756167979361, 34.74130670224642], [-77.34757431971691, 34.74107779175343], [-77.34757571510951, 34.74106108719222], [-77.34757585521692, 34.74104989961955], [-77.34757546864759, 34.74100399065683], [-77.34752236289316, 34.740696854781376], [-77.34738174616494, 34.74060032067392], [-77.3472763723752, 34.74017552826829], [-77.34728516433994, 34.740126193088585], [-77.34725517323764, 34.74011398052973], [-77.34724103434039, 34.74009358534088], [-77.34692034023968, 34.739583132282334], [-77.34684404629849, 34.739398503426], [-77.34678359070794, 34.739294124213075], [-77.34677019049116, 34.73922208959179], [-77.34663319728102, 34.739093494551646], [-77.34654798772856, 34.73908114388907], [-77.34642222479715, 34.73878891529524], [-77.34641741686282, 34.738783110215934], [-77.34608657731948, 34.73864764963562], [-77.34583728486614, 34.73837531991726], [-77.34563912237364, 34.73820342260852], [-77.34554973529814, 34.737669076171215], [-77.34538230021144, 34.73746298343555], [-77.34486780527645, 34.737219924719845], [-77.34463426532169, 34.73669722505898], [-77.34286282376546, 34.73718519345413], [-77.34215944115341, 34.73595554393464], [-77.34417889727334, 34.73487777089874], [-77.34518082714025, 34.734816165353415], [-77.34564050588929, 34.735048932487956], [-77.34649300122825, 34.73536108569854], [-77.34703865214195, 34.73555030495301], [-77.34739401806186, 34.73544411631753], [-77.34790297386034, 34.7356738937981], [-77.34792447394585, 34.73567973759819], [-77.34797736080844, 34.735690358362774], [-77.34856048181697, 34.735552034222366], [-77.3488587765282, 34.73572710844445], [-77.3490581465113, 34.73590053926738], [-77.34934611513955, 34.73562656680234], [-77.34958892199069, 34.7354236740712], [-77.34972500596515, 34.73532400177817], [-77.34986295645896, 34.735191751891165], [-77.35006482718362, 34.734986821254964], [-77.35013452684551, 34.73486142180809], [-77.35023145103465, 34.73467128232434], [-77.35026672143105, 34.734599590649566], [-77.35028535675207, 34.73454394804112], [-77.35035828514818, 34.73434333454172], [-77.35044661954744, 34.73404856421409], [-77.35066649287539, 34.73381365608909], [-77.35047849813466, 34.733072764945966], [-77.35034307425667, 34.733008644733346], [-77.35039664620956, 34.732875927881764], [-77.35027727974295, 34.732621990768465], [-77.35053959170502, 34.731881548640544], [-77.3502015401539, 34.73154073763205], [-77.35007681737629, 34.730970296766216], [-77.34999656773878, 34.73091002625138], [-77.34992466437676, 34.73085602330948], [-77.34934609301507, 34.73062199336924], [-77.34889112764463, 34.73029074353806], [-77.34784246154011, 34.73020182046101], [-77.3469806683185, 34.728621201826556], [-77.34662676772592, 34.72798347096168], [-77.34640050449136, 34.72757571130669], [-77.34799671883565, 34.725123635541195], [-77.35004342674642, 34.724755537557456], [-77.34986920683238, 34.72320067894698], [-77.35419469580589, 34.720277678296206], [-77.35650165321927, 34.72038673954385], [-77.35655384058104, 34.720401710248886], [-77.35677856745671, 34.720511587184674], [-77.35869637581638, 34.72127169236099], [-77.36018125966734, 34.720709255165936], [-77.36146707587153, 34.719978076066944], [-77.36199109912451, 34.72002436096491], [-77.36377981912982, 34.72026175117675], [-77.36470235755624, 34.720384171944254], [-77.36512735860009, 34.72025023791514], [-77.3653067838973, 34.72010621700636], [-77.36649743461929, 34.719150502019964], [-77.36663194078149, 34.71903052870037], [-77.36718464744807, 34.718873444200355], [-77.36916996741074, 34.718194268658394], [-77.37001514954216, 34.71848451754688], [-77.37112481232916, 34.71859552966829], [-77.37142940860312, 34.7186613864978], [-77.37225555963732, 34.71890719412957], [-77.37331253192193, 34.7180313543601], [-77.37368416423308, 34.71662564223599], [-77.3738556384957, 34.71600711927575], [-77.37086185367482, 34.712567571502575], [-77.37086893479858, 34.712518481508724], [-77.37082265009933, 34.71251990107143], [-77.37201594237685, 34.708484998953715], [-77.37201240213084, 34.708462180037984], [-77.37201180956566, 34.70845047500018], [-77.37205888199762, 34.70823833114198], [-77.3724377348966, 34.70645414230361], [-77.37219475637305, 34.705155507580926], [-77.37056518799983, 34.70513311329034], [-77.37017809380785, 34.704815138810346], [-77.37008737526861, 34.70422378760245], [-77.37008814256838, 34.70385271888049], [-77.37012775409117, 34.70359254805493], [-77.3697942574631, 34.70366365623674], [-77.36949362051028, 34.70295964068306], [-77.36934706927005, 34.70261646028385], [-77.36945850937352, 34.701989681633606], [-77.36946434210438, 34.70173768301366], [-77.36956510218221, 34.70120846058085], [-77.36960580740302, 34.700994654320766], [-77.36964024457228, 34.70081376818327], [-77.36971991021576, 34.70006934369867], [-77.3697610543314, 34.69999853280582], [-77.36978959668994, 34.69991028910151], [-77.36973144064771, 34.69975379099773], [-77.36909665297529, 34.69965518933638], [-77.36819924924939, 34.69923838341177], [-77.36798974755654, 34.69893024832626], [-77.36762760829626, 34.69875217648814], [-77.36686176500389, 34.69844740121955], [-77.36664845173225, 34.698385736853815], [-77.3663724787466, 34.698379420178085], [-77.36533220632862, 34.69841082943673], [-77.36474978058192, 34.698270228752506], [-77.36344518385684, 34.697942034828515], [-77.36162152312986, 34.69752418698246], [-77.3608594081985, 34.69732160035193], [-77.35880025157739, 34.69677418693541], [-77.35863725177295, 34.69672804139093], [-77.3584258102852, 34.696830038097666], [-77.35640538491185, 34.696167922244], [-77.354809469685, 34.69834288409773], [-77.3522913877707, 34.69947387580212], [-77.35146967912502, 34.70048864883152], [-77.35023845079081, 34.70091341407341], [-77.34685337053646, 34.70022033746572], [-77.34745780823262, 34.698963223170054], [-77.3483066196753, 34.69807137516637], [-77.34837116138658, 34.69774199434168], [-77.34812886498703, 34.69712101466364], [-77.34806715326616, 34.69691766030982], [-77.34783496636464, 34.696821278999565], [-77.3473895240923, 34.696871770669524], [-77.34654809214884, 34.697129801766295], [-77.34539177873988, 34.69765396063361], [-77.34520158230868, 34.69764361568744], [-77.34494950947872, 34.697739831641854], [-77.34434908706504, 34.698006209412064], [-77.34406044807757, 34.69816674341023], [-77.34403953037605, 34.6984399808818], [-77.34389519385695, 34.69867679715066], [-77.34467576174174, 34.699453942647914], [-77.34483673105355, 34.699403281542814], [-77.34497203750385, 34.699835124530445], [-77.34450906849369, 34.69965538677156], [-77.3436045111521, 34.69901994257451], [-77.34341775519863, 34.69891836983886], [-77.34225664374955, 34.69953822030409], [-77.34182033602727, 34.699359063525364], [-77.34147485567405, 34.69928800660797], [-77.34115077787015, 34.699223396085934], [-77.34102816500729, 34.699180210060135], [-77.34062822052675, 34.69917572953516], [-77.34055176890617, 34.69922459178745], [-77.34043301742304, 34.69939551410513], [-77.34041752454299, 34.69962727772916], [-77.3404168736196, 34.699641416836386], [-77.34041643988697, 34.699650837030205], [-77.34041427492699, 34.6996978675822], [-77.34039762918677, 34.70005946266469], [-77.34043971267819, 34.70012565914133], [-77.34045651897841, 34.70040830987831], [-77.34036105812241, 34.70085392036917], [-77.34025453793491, 34.70112581336804], [-77.33991942449452, 34.7016098105552], [-77.34011152850759, 34.70280062065515], [-77.34018764612271, 34.70308449234792], [-77.33998084074899, 34.70325044734914], [-77.33897777783167, 34.703250455149494], [-77.33778673833984, 34.70325046572369], [-77.33758605885895, 34.703250466689454], [-77.33743267028618, 34.70336450191893], [-77.3348245066199, 34.70451251884308], [-77.33337263710082, 34.70487179064575], [-77.33138462763853, 34.705021930507115], [-77.32983888202764, 34.70518653658515], [-77.3278605674217, 34.70509151784837], [-77.32729941375696, 34.705011039150776], [-77.32528688985364, 34.70436849442074], [-77.32376476163967, 34.70457650788913], [-77.32288541459442, 34.70350729734886], [-77.3219235660375, 34.70283975920104], [-77.32139249182563, 34.7017624385901], [-77.32133236752027, 34.7017180721867], [-77.32127833220584, 34.70168165553327], [-77.32107063583317, 34.70162377025328], [-77.32033547464975, 34.70190726826165], [-77.31900578757563, 34.70234636145496], [-77.31575448769162, 34.704484303618635], [-77.31569317356097, 34.70451630546526], [-77.31563933662308, 34.704519531397644], [-77.3155736557636, 34.704509072786266], [-77.31200351391672, 34.70416254959312], [-77.31105090979463, 34.703908824591046], [-77.31002638351144, 34.702530251914084], [-77.30947895891168, 34.70144486414807], [-77.30942198677214, 34.7014187712345], [-77.30940261431947, 34.70134222770469], [-77.3081151943587, 34.7008472804056], [-77.3074588506988, 34.699791515675734], [-77.30742712355452, 34.69977636871882], [-77.30618147086494, 34.69918168047362], [-77.30514212328842, 34.699522838803226], [-77.30354957501768, 34.69885195830292], [-77.30295643566745, 34.69880384383987], [-77.3025132558623, 34.69849959948204], [-77.30280822454276, 34.698194177722065], [-77.30326746415614, 34.69773497927338], [-77.30423531137538, 34.69631447215217], [-77.30491232199516, 34.69542903318042], [-77.30498892859022, 34.69502017387123], [-77.30541568144466, 34.694203461717635], [-77.30695763072166, 34.6932828118472], [-77.307366218829, 34.693542340562246], [-77.3077642542493, 34.69388192303005], [-77.30797259751927, 34.69390976889492], [-77.30820452777401, 34.69404168307594], [-77.30859401395004, 34.69417447250195], [-77.30907625873807, 34.694231861802834], [-77.30980513611101, 34.69418462468292], [-77.31025229953455, 34.69430515138843], [-77.31036116683892, 34.69439187974211], [-77.31053323035795, 34.69447747767968], [-77.3112814322162, 34.69488349195129], [-77.3115840859291, 34.69502774964403], [-77.31172988614611, 34.69528831803756], [-77.31175843824391, 34.695301811354724], [-77.31223114883294, 34.69531830885649], [-77.31234792192348, 34.69533343875255], [-77.31260177252668, 34.69538862080021], [-77.31313603075822, 34.69541061653761], [-77.31331175519776, 34.695559026703926], [-77.31346692273561, 34.69560286953725], [-77.31391724472583, 34.69559801581492], [-77.31396545099373, 34.69594722898357], [-77.31398271037692, 34.695954488245924], [-77.3143171139458, 34.696078656035624], [-77.31429865510086, 34.69615489314745], [-77.3144844038545, 34.69622137312345], [-77.31462277123217, 34.69611049749605], [-77.31467360764545, 34.69594951023429], [-77.31472598788734, 34.69585267840649], [-77.31532323154264, 34.69539565041057], [-77.31544833451146, 34.695359699724406], [-77.31600068339824, 34.69512477564588], [-77.3169276518762, 34.69539492318509], [-77.31710635882423, 34.69544002052863], [-77.31716336463222, 34.69546618684221], [-77.31721553156135, 34.69551164135416], [-77.31766973967008, 34.69556139250093], [-77.31785842466236, 34.695582059185085], [-77.31796003035626, 34.69559250424114], [-77.31804355112885, 34.69557745362567], [-77.318265022713, 34.69557305686878], [-77.31864817855626, 34.69564409351754], [-77.3192571673401, 34.695432291708585], [-77.3194897121403, 34.69547902296075], [-77.31977476243793, 34.69536639463344], [-77.32037970940377, 34.69535715740254], [-77.32074576073049, 34.695277109302125], [-77.32116161908824, 34.69531955541987], [-77.32132143168636, 34.69535620606863], [-77.32135854846923, 34.69539253158619], [-77.32145129943625, 34.695418635537145], [-77.3218705057761, 34.69552678077007], [-77.32218908953104, 34.69554195042405], [-77.32289966437718, 34.69558419611613], [-77.3230499062415, 34.69558846604083], [-77.32312724835622, 34.69560859844691], [-77.32324372814364, 34.69566036292618], [-77.3237259018799, 34.69593635751358], [-77.32384597089703, 34.6960651915691], [-77.32406097208828, 34.69622918226361], [-77.32427056449089, 34.69630564277343], [-77.32453471106228, 34.69645816223247], [-77.32458837776576, 34.696474318373674], [-77.32467495990363, 34.69652030893319], [-77.32489361722503, 34.69661463889918], [-77.32507793003708, 34.69662739150689], [-77.32514264780235, 34.69662705038775], [-77.32539178538687, 34.696625584542936], [-77.3255157841488, 34.69662758347206], [-77.32576291572079, 34.69655275120089], [-77.32609692819099, 34.69647733394748], [-77.32635272213354, 34.696583236752275], [-77.32693256861789, 34.6966072081554], [-77.3269445183426, 34.69660687529078], [-77.32696028207582, 34.69660149788913], [-77.32696310020667, 34.696612672280786], [-77.32747851654199, 34.69682935236039], [-77.32768513486414, 34.696832186101304], [-77.32785245762655, 34.696784583947135], [-77.32801033273918, 34.69658205396533], [-77.3280578532106, 34.696462598743395], [-77.3281147999443, 34.6963788017618], [-77.32835833071238, 34.69593403576017], [-77.32874092358108, 34.695657205084814], [-77.32905944079818, 34.69550960014974], [-77.32960382212072, 34.69535635764853], [-77.32976463929981, 34.69528822132247], [-77.32994945484211, 34.695228525699655], [-77.33037870531173, 34.6950899825153], [-77.33052283334632, 34.69504355795285], [-77.33082044474344, 34.69494769537323], [-77.33105363932123, 34.69482749739454], [-77.33129330962495, 34.69455689623527], [-77.3313895469106, 34.69437685291836], [-77.33144719952375, 34.69429210981002], [-77.3314483646335, 34.6942277098598], [-77.33147448222557, 34.69404468305145], [-77.33145497954115, 34.69393239621148], [-77.33135265424232, 34.69379860861425], [-77.3312651989491, 34.69368426333011], [-77.33112574392473, 34.693605130957124], [-77.3310802025847, 34.69343244884289], [-77.33090118647091, 34.693292204573424], [-77.33053534542074, 34.69319871345533], [-77.33059600378076, 34.69301667605968], [-77.33002131567609, 34.69296213191045], [-77.3298238355944, 34.69287957458762], [-77.32874223899799, 34.69310461419059], [-77.3285305802689, 34.69320980755012], [-77.32739428245883, 34.69411672123299], [-77.32729679464302, 34.694376435318], [-77.32718213144355, 34.69463317334639], [-77.32686112314695, 34.694834241179755], [-77.32663514739522, 34.694708154627335], [-77.32666639821727, 34.69446290256573], [-77.32649942355027, 34.69423939012592], [-77.3260276611768, 34.693582553722045], [-77.32595503130361, 34.69343364538126], [-77.32554442761192, 34.693395560399246], [-77.32539030630485, 34.692685516377665], [-77.32540614533596, 34.69227942146412], [-77.3254380892862, 34.691460661204076], [-77.32548348096002, 34.69064351087823], [-77.32552787415423, 34.68769981842059], [-77.32553424898485, 34.687548544295886], [-77.32553846884981, 34.68744843000663], [-77.32555921060907, 34.68695647818781], [-77.32561692239614, 34.68558773876575], [-77.3239097466175, 34.68554846297466], [-77.32169129361147, 34.684176340444516], [-77.32202179513934, 34.683847935582435], [-77.32434324976163, 34.68154121526524], [-77.32510011942497, 34.681480020432005], [-77.32735448833256, 34.68077972008825], [-77.3287920335633, 34.68125348767222], [-77.32923366367228, 34.68145298734339], [-77.32909815785531, 34.682186258355806], [-77.32917721427162, 34.68228464383033], [-77.32921452682822, 34.68261784639878], [-77.32931571271335, 34.68264379904907], [-77.32975454337068, 34.6826287238972], [-77.32988467702968, 34.6826260023153], [-77.3304418662331, 34.68251387209155], [-77.33052972509188, 34.682559718439016], [-77.33082562373812, 34.682436756500984], [-77.33094565208313, 34.68229020670388], [-77.33164540942177, 34.681836965617684], [-77.3319074019254, 34.681590136272845], [-77.33192582613962, 34.68179851043139], [-77.33251144860048, 34.68208420051933], [-77.33291966869191, 34.682226262784084], [-77.33366623985273, 34.6821495675056], [-77.33407625144773, 34.682365737582835], [-77.33411260895333, 34.68242881551431], [-77.33467214887997, 34.68237487794974], [-77.33468729320875, 34.682380789924146], [-77.33471404397787, 34.682390850643515], [-77.33497541666792, 34.682553239330886], [-77.33519022970692, 34.68265185262832], [-77.33550233051558, 34.682501218633064], [-77.33590853079112, 34.68223967744497], [-77.33600218327189, 34.682214160156676], [-77.33648841350939, 34.68209897942375], [-77.33655949408823, 34.68205925919135], [-77.33660550792808, 34.68208729866639], [-77.33708291598714, 34.68198784342338], [-77.33719036264347, 34.6819479987128], [-77.3375073099093, 34.6817875602192], [-77.33755452720602, 34.68176771794896], [-77.33758422053313, 34.681728381767385], [-77.33766945157066, 34.681498069562274], [-77.33786201278579, 34.68112049142817], [-77.33775463491578, 34.68099900773785], [-77.33774228803219, 34.68065747071714], [-77.33753916714691, 34.680053815483355], [-77.3376564402809, 34.67828325266418], [-77.33759476673444, 34.67817299369472], [-77.33755983483279, 34.67810148319974], [-77.33737289467113, 34.677776315917185], [-77.33636912692467, 34.675962970108536], [-77.33555853161343, 34.67447701444579], [-77.33455638917764, 34.672472793590984], [-77.3343612222734, 34.67120186363495], [-77.33404912325607, 34.67078508491513], [-77.33301849777357, 34.66908209594567], [-77.33288816292233, 34.668691068968855], [-77.33248852441244, 34.66710017506164], [-77.33149163869719, 34.66684984521307], [-77.33119417721306, 34.666831213972735], [-77.3303196224049, 34.66636784552975], [-77.32955632470615, 34.66608795626333], [-77.32849229304631, 34.66613398524972], [-77.32735828267346, 34.665845915938476], [-77.32566305978173, 34.664802444839275], [-77.32559911866927, 34.66473558577433], [-77.32544334737939, 34.66469037630257], [-77.32372187385364, 34.66385887028893], [-77.3228905099585, 34.663752627698734], [-77.32061232583187, 34.66264374441823], [-77.32009214345268, 34.66257383725024], [-77.31954056064102, 34.66212362697769], [-77.3197362992786, 34.66182576914317], [-77.31973626105207, 34.6608011192994], [-77.31975935968123, 34.658717752782046], [-77.31893027119943, 34.65678598578589], [-77.31853484963762, 34.655759203776825], [-77.31838436574068, 34.65553032081188], [-77.3178017347013, 34.65467991441314], [-77.316374239411, 34.6524299200691], [-77.31597379475252, 34.65164581252418], [-77.31512247579502, 34.650575460513565], [-77.31401327372093, 34.64937757782228], [-77.31324664217021, 34.64786143041875], [-77.31198531125818, 34.647704844529315], [-77.3095937747521, 34.645908702387246], [-77.3090472727272, 34.64582605217663], [-77.30803687264182, 34.64555918986087], [-77.30635094069868, 34.64515175682862], [-77.30543313848372, 34.64496047860503], [-77.30245385237589, 34.644209276499026], [-77.30143709487304, 34.64368679262679], [-77.30091320205757, 34.64357754855805], [-77.30039713668461, 34.64376192019141], [-77.2965893945444, 34.64409728278252], [-77.29593458116206, 34.644293160073275], [-77.2953536352603, 34.64438997535797], [-77.29356847781793, 34.645265974585136], [-77.29348216798947, 34.645311650762316], [-77.29288366923576, 34.6455193853439], [-77.29145317257723, 34.64608609458194], [-77.29121685897229, 34.64631129187835], [-77.29088779850788, 34.64619570907511], [-77.29039246605585, 34.64586027733081], [-77.2874650504568, 34.643788446594954], [-77.28674654552304, 34.64298333680634], [-77.28635346746952, 34.64132007237883], [-77.28632544396045, 34.63966518194043], [-77.28710273384158, 34.638557575533795], [-77.28794873304857, 34.6374697378523], [-77.28926934869898, 34.6365893620539], [-77.29128427349826, 34.635246085924926], [-77.29153415568801, 34.63511204306059], [-77.29181980415339, 34.63517862495332], [-77.29431294668746, 34.63620026900248], [-77.29957697218266, 34.63765502941717], [-77.29973518002012, 34.63770055609329], [-77.29993938805053, 34.63747246744491], [-77.30398681183385, 34.63336055490123], [-77.3041335991209, 34.631231994527575], [-77.30460494085553, 34.630411359059764], [-77.30649356392644, 34.62809695347238], [-77.30786347260913, 34.62715270744471], [-77.30809387730862, 34.62692227877977], [-77.3092610656752, 34.62639767995822], [-77.30992246235365, 34.62596089377423], [-77.31011737883229, 34.625623549483656], [-77.31065225588027, 34.62545809279456], [-77.3126474083235, 34.62547163442682], [-77.31513185723324, 34.62548844858514], [-77.31536025806041, 34.62532119906748], [-77.31541600748164, 34.62555421667752], [-77.31541838263186, 34.62575614860955], [-77.31524949306944, 34.62567896962853], [-77.31510353132317, 34.62728498568355], [-77.31480050019627, 34.627848701265734], [-77.31440638289205, 34.627858444178955], [-77.31410563847845, 34.6282657232974], [-77.31401096574388, 34.6284459801078], [-77.31390384121562, 34.62854448916978], [-77.31382011427173, 34.62872683889509], [-77.31399245818145, 34.628986300502106], [-77.31406078486702, 34.62903994342804], [-77.31414918332031, 34.62910372419625], [-77.31441247908151, 34.629491437533915], [-77.31459226698449, 34.62988696737623], [-77.31449218893337, 34.63023049700965], [-77.31453912194786, 34.63038824879722], [-77.31460638670026, 34.630451270820316], [-77.31476871945011, 34.63048884513249], [-77.31491257779354, 34.63038201955799], [-77.31514020345014, 34.63034629603297], [-77.31614248674619, 34.63043735742441], [-77.31618486045832, 34.630341910694774], [-77.31697258428446, 34.63040468229546], [-77.31651497153122, 34.630785336510705], [-77.316986696654, 34.63128230092053], [-77.31704378269538, 34.63143231942525], [-77.3177030192154, 34.63199250257191], [-77.31738122210686, 34.63226202189345], [-77.31752759636386, 34.632506915539885], [-77.31762000524719, 34.63270897319394], [-77.3177222844324, 34.632833833883666], [-77.31788025241377, 34.63295656435544], [-77.31801215829373, 34.633185135940124], [-77.31803508310252, 34.633212942337565], [-77.31804320084467, 34.63322284798485], [-77.31829739941112, 34.633278603094766], [-77.31862788257143, 34.63355366684693], [-77.31888788914279, 34.63424202407614], [-77.31918932924418, 34.633808640420995], [-77.31937769137905, 34.633492526236004], [-77.31946580454861, 34.633541898342116], [-77.31943196322125, 34.63344343800954], [-77.31931058872303, 34.633158107738474], [-77.31873745489807, 34.63240779952978], [-77.31813030450984, 34.63193392956746], [-77.31778324688052, 34.63063527386901], [-77.3187562307362, 34.630395248781184], [-77.31920450834502, 34.62929325094356], [-77.32284716687465, 34.62886483867736], [-77.3234868843035, 34.628448583268806], [-77.32492442677686, 34.62929713841628], [-77.32407405189358, 34.62774307782328], [-77.32772725757438, 34.62406036008521], [-77.32812672276319, 34.62161046699587], [-77.33102194867692, 34.6200381755567], [-77.33153462550207, 34.61945499517195], [-77.331915011393, 34.61941237722796], [-77.3322979671166, 34.6193386229363], [-77.33417151436186, 34.617899046865176], [-77.33614129416648, 34.61841924011192], [-77.3366378248688, 34.617430792915876], [-77.33806286143613, 34.61710716061557], [-77.33902048826606, 34.61654634437637], [-77.33973642835207, 34.61643875196943], [-77.34107863168967, 34.61572709471084], [-77.34137675473656, 34.61553064033227], [-77.34197510140555, 34.615860481315025], [-77.34305001992861, 34.61641522122669], [-77.34410362726584, 34.616359821845165], [-77.34669160951438, 34.617596116223396], [-77.34696343931606, 34.61771227722667], [-77.34703339683371, 34.61776442987936], [-77.34716197180629, 34.617821319180855], [-77.34853993939761, 34.618238283173895], [-77.34928487461204, 34.61841181789885], [-77.35011661345598, 34.618505650773365], [-77.35096130334387, 34.61818439226495], [-77.35169393078868, 34.61767470741508], [-77.35236136862888, 34.61707351735101], [-77.35169478255654, 34.61620532202209], [-77.35145099348905, 34.61576910853694], [-77.35146548142954, 34.61550419362433], [-77.35148838735547, 34.61527802807508], [-77.35163998025223, 34.61378089132788], [-77.35182903280271, 34.61191355671498], [-77.35198897124211, 34.61033430339626], [-77.352128589804, 34.609078775397876], [-77.3532761719194, 34.60806125995098], [-77.35441790410398, 34.6087546537011], [-77.35642923460482, 34.608453214118576], [-77.35711395142428, 34.60885920951605], [-77.35800563023643, 34.608934819225965], [-77.35830613142032, 34.60910164091827], [-77.35879383332187, 34.60917832531356], [-77.35938124056108, 34.60927068354681], [-77.35955447055719, 34.609275526314384], [-77.35958210457227, 34.60929197379722], [-77.36022308449242, 34.60999863136192], [-77.36002095757358, 34.61040355966299], [-77.35998819011827, 34.610470447078654], [-77.35997569034232, 34.61048349401007], [-77.35984020408905, 34.610624143934444], [-77.35958131965226, 34.610894483307355], [-77.35955924070215, 34.61091950892669], [-77.35952673369452, 34.610947954613714], [-77.35950033220873, 34.61103890711697], [-77.35941841811794, 34.61163758283614], [-77.35945192983691, 34.61180782469337], [-77.35947396150723, 34.61191974546304], [-77.35958078811274, 34.611981794151546], [-77.3597777257985, 34.612185490304476], [-77.359907027295, 34.61223991956358], [-77.36033457633417, 34.61249293737475], [-77.36036889000064, 34.61250669651139], [-77.36037650288942, 34.612515664113744], [-77.36038761285697, 34.612522269328764], [-77.3607629607261, 34.61273519826214], [-77.36085504305584, 34.61278034750925], [-77.36115703117763, 34.61296888221671], [-77.36152444540403, 34.612812111144486], [-77.36156730788296, 34.612794283168576], [-77.36159445692306, 34.612773126931415], [-77.36194564670237, 34.612417069676326], [-77.36199394158929, 34.61234305448712], [-77.36200231083366, 34.612289869997596], [-77.36215580311656, 34.612041610179574], [-77.36194580610503, 34.61207054740002], [-77.3618352719079, 34.611584098963036], [-77.3616901817787, 34.61148568816405], [-77.36140037902635, 34.611266157034066], [-77.36136340941106, 34.61090485591072], [-77.3613484779381, 34.61068576344536], [-77.36137621910876, 34.61044696233256], [-77.36146473023534, 34.61014991689103], [-77.36171466341611, 34.60978395031796], [-77.36182567393715, 34.60963737036185], [-77.36194702129181, 34.60943431174158], [-77.36227722623796, 34.60934735591934], [-77.3623412428881, 34.60930852765538], [-77.36236898341481, 34.60929508811979], [-77.36240580753375, 34.60925991492563], [-77.3624297268909, 34.60916123760837], [-77.3625113165805, 34.60882017329509], [-77.36255798918378, 34.60862202240864], [-77.36255584809649, 34.60815862106357], [-77.36242989619632, 34.6079827851455], [-77.36224472840738, 34.60768963848828], [-77.36198074456017, 34.607198327140324], [-77.36195741842661, 34.6063622470461], [-77.36195327824528, 34.606347975192875], [-77.36165142829995, 34.60554751463369], [-77.36128235231648, 34.60403287329812], [-77.3612910562019, 34.60390117370442], [-77.36140705627903, 34.603619905016785], [-77.36185034045022, 34.60212244671302], [-77.36144335865207, 34.60078504315065], [-77.36152324277612, 34.600083396218736], [-77.36209467995647, 34.59869084495411], [-77.36095825007516, 34.59693385209893], [-77.36089923133869, 34.59546649560461], [-77.3601512451265, 34.59496868007238], [-77.35958940875922, 34.594554315145004], [-77.35825929822069, 34.5924500568032], [-77.35756177051844, 34.591340197585744], [-77.3577947500014, 34.59058132437188], [-77.35801515708066, 34.59047297056068], [-77.35849224802463, 34.59020448025279], [-77.35959189513375, 34.58960482884821], [-77.36004033493273, 34.58928024015532], [-77.36038028489396, 34.589103009908314], [-77.36091138375852, 34.588671900292155], [-77.36107050163174, 34.58854320597419], [-77.36116877625379, 34.58837276801874], [-77.36145730132543, 34.588054887337634], [-77.36177315344256, 34.58789694803589], [-77.36195717588193, 34.58780590461118], [-77.36207525074998, 34.58778244167135], [-77.36235125890295, 34.58776112075337], [-77.36265861256929, 34.58766472278735], [-77.3627453502757, 34.58769745796017], [-77.36285681166102, 34.58754272185868], [-77.36282695631611, 34.58745921887646], [-77.36280259196602, 34.58712597364886], [-77.36274564372667, 34.587070331047315], [-77.36254384717834, 34.58695614176284], [-77.36217005636558, 34.5867924849217], [-77.36195775785038, 34.58658734381873], [-77.3616677299409, 34.586328300845324], [-77.36117002893684, 34.58580132752605], [-77.36092560825399, 34.58553690091388], [-77.36076514846573, 34.585296523230355], [-77.36058158837396, 34.58510819807756], [-77.36042944515009, 34.58454627099308], [-77.36042957695796, 34.584495724537746], [-77.36042465466399, 34.584451117438746], [-77.36031013359514, 34.58366380984778], [-77.3602853223899, 34.58292390318464], [-77.36010609502311, 34.582545137317], [-77.36036165803783, 34.581958181634704], [-77.35988430094301, 34.581716154686504], [-77.35959579826104, 34.58190483787345], [-77.35935728212914, 34.581845742941276], [-77.35902711865893, 34.58191390478351], [-77.35880766047265, 34.58203716054952], [-77.35817076861804, 34.58211062667195], [-77.35801951797585, 34.58217317146508], [-77.3565844624096, 34.58234975491979], [-77.35644327434476, 34.582353808236086], [-77.35625554388753, 34.58234694182521], [-77.35354534960656, 34.582664969984734], [-77.35329097202978, 34.58235841753792], [-77.35254102991733, 34.58227567005416], [-77.35013857911903, 34.58249959903703], [-77.34856272602073, 34.58195793921488], [-77.34698647991203, 34.58217255669122], [-77.34453611162122, 34.5815947872729], [-77.34383467981102, 34.58144498132786], [-77.34350777125866, 34.58133914683459], [-77.34278786641174, 34.58109037843941], [-77.34133412439887, 34.58059790594326], [-77.3406836293608, 34.579769531426194], [-77.33944432507509, 34.580236271042516], [-77.33894144414634, 34.580123950929355], [-77.33872932511164, 34.5799758087866], [-77.33792772144326, 34.57966413570021], [-77.33753147945691, 34.57967029399769], [-77.33699160533219, 34.579376560499874], [-77.33683931609107, 34.57929545177045], [-77.33674374499364, 34.57926015024081], [-77.33651438733108, 34.57919799240565], [-77.33595591034317, 34.57898556421545], [-77.3357746758719, 34.578897768915105], [-77.33528618632471, 34.57890006168852], [-77.33516787702084, 34.57896395535185], [-77.33456395203531, 34.57907494538142], [-77.33437969731783, 34.57912233004411], [-77.33424025434289, 34.57907327785902], [-77.3336881082467, 34.579106277923394], [-77.33359158031612, 34.579200548117015], [-77.33298686944237, 34.57930077875743], [-77.3328033031547, 34.579469120508], [-77.33256955426062, 34.579415025076884], [-77.33201528939318, 34.57941825004448], [-77.3314240085796, 34.579539892229164], [-77.33122713401517, 34.579534663875194], [-77.3311054412649, 34.57950469271661], [-77.32965065689152, 34.57995005063309], [-77.32931001303352, 34.5796315665729], [-77.32965160789625, 34.578857588227436], [-77.32986877231676, 34.57808638167019], [-77.3300035712738, 34.57783375215637], [-77.33044121526216, 34.57705251385623], [-77.33049553864718, 34.57697243375881], [-77.33067163162907, 34.57688866971085], [-77.33122963457735, 34.576601281574284], [-77.3316568278629, 34.57635806554416], [-77.33201791196547, 34.57630786227827], [-77.33236983917709, 34.576265448088016], [-77.33244737956332, 34.57624706450142], [-77.33280607335118, 34.57614642610632], [-77.33315016935822, 34.57605403813171], [-77.33316751000135, 34.5756808730593], [-77.33317189891113, 34.57564942672489], [-77.33314369756773, 34.5753212523107], [-77.3331311165738, 34.575261564836474], [-77.33298078052422, 34.57504588882243], [-77.33286874697414, 34.57487473742785], [-77.33284502920577, 34.57483734993009], [-77.33280724280363, 34.57474647371777], [-77.33252549810476, 34.574620381243626], [-77.33241340686351, 34.57454426887895], [-77.33238933664123, 34.57454504037547], [-77.33201962251155, 34.574283327850786], [-77.33184468613567, 34.57417284861132], [-77.3314933476079, 34.57394164166758], [-77.33123206224826, 34.57376008254064], [-77.3310497820863, 34.57363454187652], [-77.33075359234971, 34.57348058687266], [-77.33058526456401, 34.57335300659149], [-77.33044460886916, 34.5731245704786], [-77.33003227231669, 34.573139967662044], [-77.32965654331838, 34.57320241819198], [-77.32932483539966, 34.57332861897393], [-77.32922813272373, 34.57331225126356], [-77.32917439288677, 34.573282999786656], [-77.32898613484593, 34.57318336722746], [-77.3290036885609, 34.57302844667418], [-77.32910705190983, 34.572868139833716], [-77.32926303633994, 34.57264276497834], [-77.32942852748175, 34.57257565962139], [-77.3296573688582, 34.57225896193374], [-77.32979621115626, 34.57192002654338], [-77.32995835423522, 34.57137113129402], [-77.32999422057739, 34.57104249436953], [-77.32999101892271, 34.570684918398314], [-77.329998038231, 34.57061740861551], [-77.32992439263194, 34.570489514362094], [-77.32977621922073, 34.57022474947196], [-77.32973219577188, 34.57015243501284], [-77.32965931852402, 34.57003353763014], [-77.3295342146493, 34.56983499150825], [-77.32943382534259, 34.56966820763017], [-77.32941111739032, 34.56958480771137], [-77.32965710082358, 34.56939279374233], [-77.32965908118291, 34.56939164674383], [-77.32965988185333, 34.56939124883262], [-77.32966102350186, 34.56939100003446], [-77.33023822478226, 34.56908310963791], [-77.33044819580854, 34.56898601161593], [-77.33082759849829, 34.568815897468006], [-77.33085044551648, 34.56880549276534], [-77.33085895601793, 34.56877763633692], [-77.33079135793608, 34.56838070215772], [-77.33069482840332, 34.56812960970444], [-77.33056513902187, 34.56756413957227], [-77.33044973677423, 34.567212294994555], [-77.33032671420804, 34.56688220684326], [-77.32966276808833, 34.56610566005186], [-77.32960888763324, 34.566061524954776], [-77.32954877259607, 34.566012061673334], [-77.32912234964495, 34.56580691029996], [-77.32887552143123, 34.565335524968845], [-77.32885144720912, 34.56528919018778], [-77.32885056442663, 34.565263330355954], [-77.32884254092275, 34.56522884075657], [-77.32873282222067, 34.56443117458064], [-77.3285183150325, 34.56399914356215], [-77.32808897002165, 34.56380902009273], [-77.32801809850235, 34.56376123532078], [-77.32792467178668, 34.56369824202923], [-77.32801076730826, 34.56292193007129], [-77.32802860678797, 34.562834232465796], [-77.32805523180305, 34.56279306282994], [-77.32808991734368, 34.56275685352677], [-77.32839958706953, 34.56235638179871], [-77.3284415271723, 34.562304289518856], [-77.32848450985723, 34.56204010771008], [-77.32850837428141, 34.56191621066099], [-77.32848464854442, 34.56188541069578], [-77.32823988234156, 34.5617941201803], [-77.32809085038255, 34.56172144728688], [-77.32773682618787, 34.56155968719787], [-77.32730311772528, 34.561547972497905], [-77.32701740348344, 34.56158926186204], [-77.32679646971108, 34.56161629843805], [-77.32651502735605, 34.56176638306448], [-77.32582788626917, 34.5623014031697], [-77.32581344041381, 34.562397115754415], [-77.32500743481435, 34.56326836196555], [-77.32496318530691, 34.56330207370142], [-77.32493778467196, 34.5633206418291], [-77.32483882814391, 34.56339914388302], [-77.32285047773313, 34.564726649754675], [-77.321784073908, 34.56545556751627], [-77.32063335028309, 34.566053615386174], [-77.32016194010271, 34.56736072543893], [-77.31862697133995, 34.5707866533315], [-77.31855190913726, 34.57090748523697], [-77.31547100901332, 34.574653403471586], [-77.31536791789571, 34.574730719962766], [-77.31518489624592, 34.574867986052155], [-77.30916238075831, 34.57866229190482], [-77.30627412367414, 34.57982901590526], [-77.3038137872866, 34.58139730656876], [-77.30039137437812, 34.58372686762867], [-77.29956102204639, 34.58423313934832], [-77.29931533746496, 34.58449227059324], [-77.29817347077679, 34.58591176390061], [-77.29498194389187, 34.58841299892152], [-77.29433331693428, 34.59002654289663], [-77.29406978249322, 34.59134429747327], [-77.2933745607627, 34.59316796536332], [-77.2928623225207, 34.59399214417397], [-77.29115138955221, 34.59484762611161], [-77.28914059328478, 34.59585301915072], [-77.28638792901944, 34.59662393436952], [-77.2829292772148, 34.5977199213311], [-77.28158825929182, 34.59822017373277], [-77.28070333288942, 34.59864580720088], [-77.27873178956966, 34.600194917539255], [-77.2777097618019, 34.60118797254289], [-77.27723312933196, 34.602039563313355], [-77.27674685299414, 34.60295844776735], [-77.27656515680785, 34.60386701234898], [-77.27629688966209, 34.60520865880018], [-77.27594566197284, 34.60732744326128], [-77.27392443521666, 34.611092471622534], [-77.27269591669345, 34.612525331342184], [-77.27010286642414, 34.61487774822363], [-77.26965917462155, 34.615366071750046], [-77.26928185680715, 34.6155309772736], [-77.26740730897399, 34.616907298643596], [-77.26629135746651, 34.61685687855149], [-77.26540463377083, 34.61639100469779], [-77.2646389091382, 34.615865423518805], [-77.26450754540994, 34.61579788579719], [-77.26432962120904, 34.61572918394797], [-77.26411578017874, 34.61559349814398], [-77.2620296211711, 34.61402880907225], [-77.26160200286218, 34.613811109551236], [-77.25941395734566, 34.61253203466211], [-77.25692988203792, 34.61407702361939], [-77.25609473188322, 34.614962731574394], [-77.25560242755304, 34.61552587984106], [-77.25406343511352, 34.61663328270703], [-77.25399873000558, 34.61668318946636], [-77.25398517092687, 34.61671708517373], [-77.25309799232497, 34.61849763141419], [-77.25168982786661, 34.620460841245446], [-77.25093305813927, 34.62209798895861], [-77.24997403610135, 34.6236674460885], [-77.24719167654787, 34.62557424250927], [-77.24584526932418, 34.62600838426026], [-77.24219075005334, 34.62726434004532], [-77.2380781733703, 34.62802107093906], [-77.23686969799586, 34.62853195288804], [-77.23403539700038, 34.630530498325385], [-77.23209202815019, 34.63192613108996], [-77.23105139076571, 34.633136308655786], [-77.23047767934158, 34.63427557108058], [-77.23115124159793, 34.63562278254417], [-77.23171558348596, 34.636751529004485], [-77.23267953731681, 34.638679324457264], [-77.2328877772646, 34.63925207645882], [-77.23311405145537, 34.63954837662839], [-77.23372783661014, 34.640775834534125], [-77.23387449771786, 34.64182202327741], [-77.23290903187963, 34.643303012431026], [-77.23110803590814, 34.645795584512726], [-77.230043586526, 34.646847955877575], [-77.22941426468779, 34.64745923264563], [-77.22924133456614, 34.6486701381551], [-77.22912625875071, 34.64947569891705], [-77.22897503509691, 34.65053452914984], [-77.22874758642173, 34.652126066700504], [-77.22874798484004, 34.652402079173164], [-77.2287708401003, 34.6525475575477], [-77.22886742220427, 34.65429687367853], [-77.22892556111576, 34.65542862495063], [-77.22899626410819, 34.657606770456965], [-77.22904908837788, 34.658082060432704], [-77.22913860635327, 34.658287925161076], [-77.22933830898091, 34.658596188900766], [-77.23022831371637, 34.660060422852446], [-77.23046733229603, 34.66073003495915], [-77.2316916726957, 34.66206113246462], [-77.23052172400651, 34.66364858204761], [-77.23321904070211, 34.664260355783156], [-77.23683113153773, 34.66623683034738], [-77.23694492769744, 34.66712486018236], [-77.23718991507133, 34.66974760353058], [-77.2372308880662, 34.670000097094565], [-77.23723088447244, 34.670194510998], [-77.23683658270457, 34.670444925066406], [-77.23371658400892, 34.6723216748089], [-77.22957530367506, 34.67145057560633], [-77.22835530691684, 34.67033647034867], [-77.22390809884605, 34.669310684866076], [-77.2232151380182, 34.66893454762146], [-77.22064420122221, 34.66734130719468], [-77.21926760984368, 34.665145694244124], [-77.21895886229015, 34.66482792581185], [-77.21723226889377, 34.66273889109321], [-77.21677302804268, 34.66088451051831], [-77.21642471404422, 34.66010201089861], [-77.21589380281846, 34.65892969576174], [-77.21573736478597, 34.65879138570571], [-77.21443563656702, 34.657906685222244], [-77.21045273066655, 34.656614572094774], [-77.2101347417707, 34.65652576212924], [-77.20515414884336, 34.65549792507998], [-77.20409560766348, 34.655121261691065], [-77.20203171647525, 34.65466781624104], [-77.20361246849191, 34.65607406828482]], [[-77.33800966050835, 34.77537133614773], [-77.33735528880284, 34.774529301880094], [-77.33727504088375, 34.77438170201086], [-77.33675963424045, 34.773736385031995], [-77.33659838092626, 34.77353448676038], [-77.33678275022692, 34.77300789418837], [-77.33679836446152, 34.772756333699725], [-77.33674482117438, 34.772633619799784], [-77.33710929957041, 34.77202046900933], [-77.33710564308242, 34.771739469602586], [-77.3371139373462, 34.771561586235244], [-77.33712167595496, 34.77149358614226], [-77.33709218242447, 34.771366965881796], [-77.33706664486515, 34.77125744348303], [-77.33701906606437, 34.77114053900238], [-77.33692040375571, 34.77092204399537], [-77.33681488587109, 34.77080458137367], [-77.33663771683688, 34.770391368444294], [-77.33659380967158, 34.770384784623936], [-77.33660178091262, 34.770346421054775], [-77.33645871580754, 34.770167480076736], [-77.33642711036912, 34.77012667794986], [-77.33679578245162, 34.76984774189027], [-77.33682668322277, 34.76985509454891], [-77.33712117936615, 34.76997940444788], [-77.33736771298604, 34.76994143556945], [-77.33764183291044, 34.76993883699779], [-77.33766767998772, 34.76994012631294], [-77.33768798552629, 34.76993785888769], [-77.33797623849351, 34.76990926482664], [-77.33818480435879, 34.76978147435989], [-77.33834566313578, 34.76966905379468], [-77.33842079442255, 34.76960969457063], [-77.33840776735462, 34.76945544524012], [-77.33841368150341, 34.76938001192686], [-77.33840948513654, 34.76936755855186], [-77.33838827267932, 34.769323375923264], [-77.33830518305875, 34.769138170689246], [-77.33829968687314, 34.76907348273108], [-77.33777871091993, 34.76872297084787], [-77.33774048375619, 34.76865932725327], [-77.33735241312306, 34.76822503925413], [-77.3369071545929, 34.768011346695985], [-77.33672783883583, 34.76802070943899], [-77.33661309651147, 34.76790801001501], [-77.33604900593217, 34.76765035595453], [-77.33572071596961, 34.767363135611134], [-77.33486568288826, 34.76698337212325], [-77.33373249899833, 34.766353356206146], [-77.33369825504478, 34.766304173117845], [-77.33367365669689, 34.76616099148986], [-77.3328461751786, 34.765382577293785], [-77.3323036043069, 34.765209713532734], [-77.3312388250761, 34.766292395277375], [-77.33080252210647, 34.766754883867016], [-77.3300290939397, 34.76830163721684], [-77.33052635331681, 34.76874220340085], [-77.33243206155524, 34.77043053687976], [-77.33338494491466, 34.77127469109719], [-77.33433784776865, 34.77211883696569], [-77.33529077011809, 34.77296297448457], [-77.33624371196382, 34.77380710365313], [-77.33719667330668, 34.774651224470674]], [[-77.35017618507152, 34.78614575390189], [-77.35068505990876, 34.78635665886083], [-77.35067581386295, 34.7864494326429], [-77.35158374754388, 34.78700126862974], [-77.3516855814026, 34.78716431650797], [-77.35177243684541, 34.787273759041035], [-77.35193115976388, 34.78769958085425], [-77.35197006794553, 34.78773402873944], [-77.35220838690816, 34.787945025254864], [-77.35244670709024, 34.78815602124763], [-77.35264313547326, 34.78832992649228], [-77.3530319003476, 34.788204482354566], [-77.35323482926239, 34.78804789823735], [-77.35345051105173, 34.78776828512056], [-77.35358943647316, 34.78751186666669], [-77.35384155734359, 34.78708367961255], [-77.35390163242137, 34.786981652728855], [-77.35393856550343, 34.786923945435326], [-77.35402565391793, 34.78684698193568], [-77.35465287281458, 34.786555906038245], [-77.35474861877444, 34.786567370615344], [-77.35505403660672, 34.78646318844091], [-77.35510450308621, 34.78644682261965], [-77.35539230249609, 34.786385996652996], [-77.35544635189632, 34.78637457340727], [-77.35545640926375, 34.786372447785695], [-77.3554652260549, 34.78636730676608], [-77.35547255735517, 34.78635259922067], [-77.35549074615312, 34.786221788016334], [-77.35555490198635, 34.78587209107892], [-77.3555204634026, 34.78582739772274], [-77.35532342503586, 34.785522177711705], [-77.35492068709507, 34.78505825132834], [-77.35477102851578, 34.78485957436774], [-77.35463913207194, 34.78473576426116], [-77.3543622014941, 34.78448155335903], [-77.35426913215393, 34.78438966493543], [-77.35416719736457, 34.784297624460066], [-77.35377852542389, 34.784229395141054], [-77.35360136319395, 34.78418264026676], [-77.35345013954013, 34.78423089644652], [-77.35347886096577, 34.78396408003788], [-77.35365688772575, 34.78399156126562], [-77.3537862685816, 34.78397247439706], [-77.35431330719202, 34.78379479699882], [-77.35461850887904, 34.78369665855746], [-77.35497192297944, 34.783590458869845], [-77.35519095245111, 34.783475114611385], [-77.35543315050745, 34.783338901968314], [-77.35573338860908, 34.783105715316644], [-77.35574200098151, 34.783095214353565], [-77.35576601644702, 34.78306593233201], [-77.35600430413776, 34.78277538926089], [-77.3561786524231, 34.78248882206742], [-77.35598465528548, 34.78207517160993], [-77.35581333905941, 34.78174837021278], [-77.35574399943032, 34.78143170784807], [-77.35593278908246, 34.781160670943386], [-77.35597550857302, 34.780953491583446], [-77.35607085251527, 34.780748717808656], [-77.35631599044315, 34.780289746869364], [-77.35642727048732, 34.77999312219212], [-77.35657900939164, 34.77964474930593], [-77.3566334695387, 34.77950605145912], [-77.3566935334238, 34.77940957991515], [-77.35687454964948, 34.77907550689669], [-77.35689534049254, 34.77903846461938], [-77.35689803447514, 34.77899522968602], [-77.35701135801176, 34.77857232505008], [-77.35698692600928, 34.77851128021968], [-77.35691982566911, 34.778282013952094], [-77.35685450942965, 34.77790569690305], [-77.35724814078668, 34.777581289122786], [-77.3573349588331, 34.77751461270159], [-77.35736030602408, 34.77750481930029], [-77.35804926374632, 34.77720537291442], [-77.35808321415092, 34.77718961318738], [-77.35812036637282, 34.77717089572939], [-77.35845274761994, 34.77678735020287], [-77.35866779848142, 34.776648154451955], [-77.35876705159164, 34.776502857135284], [-77.35885824331153, 34.77637003219978], [-77.35890068018651, 34.77628025014259], [-77.35900870762404, 34.77595602716187], [-77.35895752649228, 34.775845545776704], [-77.35879388450002, 34.77535672796124], [-77.35874238554045, 34.77521101651115], [-77.3587647183693, 34.77495281812611], [-77.35870729236703, 34.774296496199824], [-77.35851089197408, 34.774011525745415], [-77.35878597265241, 34.77384611298051], [-77.35912558755474, 34.77371053638414], [-77.35947210532754, 34.773470808252874], [-77.359799174112, 34.773343946391634], [-77.3598793895339, 34.773324288888055], [-77.36013054447778, 34.77305020783374], [-77.36051875765565, 34.77264998936215], [-77.36064298094577, 34.77252080317057], [-77.36063985581073, 34.77238568242271], [-77.3609729365834, 34.771568431627344], [-77.3609488444553, 34.77150939108705], [-77.36097389948048, 34.77143447716311], [-77.36106961229085, 34.77143548737952], [-77.3615627120552, 34.77116500476053], [-77.36164082738085, 34.77102779356995], [-77.36158920059663, 34.77086564765524], [-77.36143371829729, 34.77068901876633], [-77.36129768848073, 34.770650239991426], [-77.36120313437975, 34.770580104740915], [-77.36112120290414, 34.77045125560615], [-77.36050140868181, 34.769979710615836], [-77.3603953010256, 34.7696379671611], [-77.36035968948738, 34.76959245472753], [-77.36032569442709, 34.769578959844175], [-77.35987151316118, 34.76934941654528], [-77.35954255424386, 34.7690930869356], [-77.35923600725235, 34.768912939479755], [-77.35906476079433, 34.768875472305545], [-77.35864864647331, 34.768784428614914], [-77.35810901457187, 34.76866761019494], [-77.35742738498635, 34.76855774255593], [-77.35697375239381, 34.768450750038554], [-77.35488294574971, 34.76893750871055], [-77.35449436610207, 34.76873597186025], [-77.3526785481643, 34.767938016240656], [-77.35165708586572, 34.76974386943916], [-77.34962049624599, 34.772983815759474], [-77.349007150387, 34.77400645765628], [-77.34908658961021, 34.77496894267614], [-77.34757222082175, 34.77810231197007], [-77.34661814921319, 34.77934444785901], [-77.34419187645452, 34.780846650737715], [-77.34577420290229, 34.782247935918555], [-77.34768053512978, 34.78393600209844], [-77.34958694538629, 34.785624034840986]], [[-77.37302898118118, 34.780829798426446], [-77.37369217831503, 34.77820516083543], [-77.37339474058413, 34.773779267061144], [-77.37341856009925, 34.77352721435996], [-77.37345771988105, 34.77296274207713], [-77.37345777161964, 34.769940669979704], [-77.37345780189888, 34.76917606213168], [-77.37229493117151, 34.768128328056605], [-77.37191502690149, 34.768365025120985], [-77.3715996241254, 34.76852591898513], [-77.37040625341841, 34.76889220160915], [-77.3700137873576, 34.769089445020526], [-77.36937320595659, 34.769352971404935], [-77.36876943948813, 34.76920998628495], [-77.36826102039166, 34.76876429987132], [-77.36790525580408, 34.76868245117586], [-77.36797381969357, 34.76837562358496], [-77.36818847428887, 34.76825982484178], [-77.36836860337533, 34.7675970035205], [-77.36841287480306, 34.76741084203815], [-77.36818594607956, 34.766813328507105], [-77.36816880984371, 34.76678765930531], [-77.36768955373893, 34.7663134414576], [-77.36747836022246, 34.7661826046045], [-77.36677819772815, 34.765720373905175], [-77.36672279943834, 34.76560465930865], [-77.36724368178136, 34.7647648427218], [-77.36728907522897, 34.76379394724797], [-77.36747534858898, 34.7637274887152], [-77.36859826796085, 34.763183667616886], [-77.36880699036996, 34.7632818745481], [-77.3692695512322, 34.763236942353466], [-77.36928073054797, 34.76275454881874], [-77.36993243308605, 34.762350500861054], [-77.36993147443886, 34.762126332312235], [-77.37132022264308, 34.76190529883698], [-77.37151349485042, 34.76198075222712], [-77.37353275855203, 34.762769033581016], [-77.37403219733335, 34.76284386906368], [-77.37432456871552, 34.76243929161748], [-77.37558730769277, 34.76097400849712], [-77.37735003612653, 34.75955280014056], [-77.37853666344925, 34.758232926412575], [-77.38319248794099, 34.7571029293741], [-77.3855978297088, 34.75780322540848], [-77.39023817018497, 34.759381048893935], [-77.39256515801414, 34.76017225545523], [-77.39450196711664, 34.76038604585279], [-77.39593088475354, 34.759143480154094], [-77.39823795956526, 34.75830542788306], [-77.40008213459572, 34.75753491910898], [-77.40202801662863, 34.758038994098804], [-77.40283693012047, 34.76014175900829], [-77.4038097411161, 34.76086711260704], [-77.4037773911122, 34.761887084119174], [-77.40600988406415, 34.766898426705374], [-77.40599298841354, 34.767098704335424], [-77.4099379832733, 34.76545448855], [-77.41005383640575, 34.76408118891606], [-77.40958303199432, 34.76203167749381], [-77.40974793779823, 34.761360659683326], [-77.40988440164841, 34.759549169576026], [-77.41010923371543, 34.75824154650098], [-77.40976313606824, 34.75540086335978], [-77.40970999477956, 34.7550153780436], [-77.40972796626613, 34.75482968862073], [-77.40970534096351, 34.75414781422994], [-77.40917079800269, 34.751491151011685], [-77.40932417203288, 34.75040764761227], [-77.40960368383186, 34.74915558554882], [-77.41161849255337, 34.74754536126317], [-77.41330675832229, 34.749222646567965], [-77.41289501960355, 34.74718321054502], [-77.41212761072929, 34.74578817839537], [-77.4102749082437, 34.74388926630267], [-77.41048232889193, 34.74186686286509], [-77.40896938758439, 34.73898227683108], [-77.40753279429083, 34.73978599795054], [-77.40578706940246, 34.74022505751899], [-77.40500830215899, 34.74164458968219], [-77.40324633103498, 34.74102844817601], [-77.40171847136946, 34.740314717701835], [-77.40089113658587, 34.74030429590516], [-77.40068503789894, 34.7405629520163], [-77.39820143672932, 34.740734064334895], [-77.39689487508886, 34.740352480387614], [-77.3948501661069, 34.73960677602243], [-77.39353176637707, 34.739145464680774], [-77.39198358768654, 34.73723090827123], [-77.39183426464265, 34.73615341391941], [-77.39015157187757, 34.73531276364784], [-77.38944325513, 34.735553260292065], [-77.38765505144045, 34.7372172853421], [-77.38749798164076, 34.73830080719018], [-77.3853106403396, 34.74001147275593], [-77.38458109373019, 34.741753561695184], [-77.38631850721589, 34.74632727044599], [-77.38679816646928, 34.746532534483954], [-77.39071525328796, 34.74820872382311], [-77.3908625978342, 34.74835017675013], [-77.39095914733299, 34.74836926757124], [-77.39319314942911, 34.749160075836706], [-77.39499450994052, 34.749218361300834], [-77.39577533617279, 34.749102192802354], [-77.39757247865738, 34.749183944767765], [-77.3980488110065, 34.75010910548359], [-77.39871192084165, 34.74930927888698], [-77.39927738647954, 34.74913108881621], [-77.40125576781807, 34.7478959707569], [-77.4029075234432, 34.750400548880705], [-77.40039579167203, 34.75086257536901], [-77.39984023723602, 34.75115369788633], [-77.39862103866527, 34.751138086737406], [-77.39775572380498, 34.75112001513014], [-77.39615774126605, 34.75112002725767], [-77.39514818965438, 34.75126509096553], [-77.39265650773939, 34.751232505920626], [-77.39271440511533, 34.75081098458155], [-77.39255762840635, 34.751220987961204], [-77.39241319573811, 34.75120349186791], [-77.39012102375239, 34.75090716803852], [-77.38795827545776, 34.749645155800145], [-77.38805590421663, 34.749578936190915], [-77.38790094117158, 34.749594236303274], [-77.38597391645936, 34.747515237249154], [-77.38541529438169, 34.747108673343135], [-77.38450790146368, 34.74620129279445], [-77.37957486581078, 34.74240112854336], [-77.37726775190097, 34.74215416567236], [-77.37524732375873, 34.74087561906292], [-77.37509608256195, 34.74079764406035], [-77.37494014195534, 34.740761598367556], [-77.37265709372602, 34.74036234631845], [-77.36778112930601, 34.74017324927599], [-77.36758430311698, 34.74016307495936], [-77.36746429470341, 34.7401885622237], [-77.36734182450493, 34.740297027928996], [-77.3635426638963, 34.74182050576861], [-77.36229866497787, 34.741865643514245], [-77.36161863848744, 34.74168025954586], [-77.36052503557742, 34.74170044072558], [-77.35993326265199, 34.741761232470715], [-77.35946007317597, 34.741763903127804], [-77.35918012177598, 34.74178555555146], [-77.35871795302168, 34.74182129953249], [-77.3585500270588, 34.74199180542221], [-77.3581944302817, 34.742188853056895], [-77.35810130831968, 34.742414921108185], [-77.35817539525405, 34.74253062379492], [-77.3581187035112, 34.742795760886075], [-77.3579073331421, 34.743210958874556], [-77.35777530383007, 34.74356031936638], [-77.35762241517648, 34.744234998418335], [-77.35737539437721, 34.744589988648315], [-77.35705926520639, 34.74501259785835], [-77.35690234530088, 34.74514231311022], [-77.356712102067, 34.74534330303289], [-77.35660685226875, 34.74542656884945], [-77.35663862710052, 34.74551114539046], [-77.35659080334669, 34.74567246360566], [-77.35657774904746, 34.74586251073012], [-77.35669430595975, 34.74625675208182], [-77.35678390778193, 34.7464184076353], [-77.3568373724965, 34.74654092544702], [-77.35689377025508, 34.74660564247419], [-77.35704395373865, 34.746776242390574], [-77.35722105254325, 34.74697559347649], [-77.35742557871109, 34.74727113863166], [-77.35761632857223, 34.74748121973642], [-77.35781278373001, 34.74776174096974], [-77.35818191469298, 34.747791937257965], [-77.35862263782872, 34.747927251477634], [-77.35873177746814, 34.74796105836338], [-77.3590606885116, 34.74806174303757], [-77.35931238563258, 34.748024312336064], [-77.35958327070715, 34.74797676881132], [-77.35950307458288, 34.74819696638366], [-77.36008913732971, 34.748376105212756], [-77.36035603143907, 34.74855568103092], [-77.36101892880505, 34.748449337783526], [-77.36150978597225, 34.74889620811774], [-77.36163870838038, 34.74954951717031], [-77.36240636655384, 34.74974578926691], [-77.36376179728688, 34.74949325488292], [-77.36457671452368, 34.75042460833328], [-77.36457858137264, 34.75044192630178], [-77.36456192938975, 34.75057366263263], [-77.3644508701579, 34.752270311976915], [-77.36477456399088, 34.752716277919454], [-77.3644525676343, 34.75316393005532], [-77.36471853877802, 34.75493356809913], [-77.36381887356647, 34.75512231631484], [-77.36370364492514, 34.75569677879136], [-77.36347992136147, 34.756065360278235], [-77.36294976418955, 34.756125785674456], [-77.36259992487557, 34.75590641215694], [-77.36246424080042, 34.75558857220366], [-77.36217976509774, 34.75544112035157], [-77.36198005936065, 34.755339435179636], [-77.36187887428623, 34.75527832776369], [-77.36173475401594, 34.75520135034172], [-77.36158447537133, 34.75511053985278], [-77.36103136415372, 34.75481054032729], [-77.36101197864465, 34.75476242792672], [-77.36098223558857, 34.754649962091975], [-77.36071923620433, 34.75419913319601], [-77.36063042196498, 34.75389081697011], [-77.36062889959184, 34.753874387419906], [-77.36060715229777, 34.75387885642206], [-77.36026879584465, 34.75375714031136], [-77.36008836819045, 34.75360258432415], [-77.36004037690944, 34.75353860625669], [-77.35996287084734, 34.75349508177631], [-77.35982868347894, 34.75346546012976], [-77.35966881969388, 34.75343017005446], [-77.35954729393873, 34.75340307302682], [-77.35947639249109, 34.753381066056654], [-77.35935021721139, 34.75333549951294], [-77.35930200287547, 34.75331808757398], [-77.3591909514015, 34.753282669728314], [-77.35918789362984, 34.753405856888385], [-77.35906480712617, 34.753618374564056], [-77.35915202619395, 34.753732791795], [-77.35918730009365, 34.75380054118941], [-77.35922785594731, 34.75383968313456], [-77.35937792845857, 34.753986237464616], [-77.35946696231579, 34.75397966214892], [-77.35956098480928, 34.75403764160312], [-77.35981235095488, 34.7541082278975], [-77.35986761956204, 34.75436268790304], [-77.36005321284387, 34.754457449586525], [-77.36018204211783, 34.75461233318107], [-77.36012376548233, 34.75474697870561], [-77.36011191957374, 34.75493677535709], [-77.36010382743846, 34.75536750664069], [-77.36008635334912, 34.755427671178346], [-77.36005858088956, 34.755495757926], [-77.36011634487602, 34.755568869143566], [-77.36028888662926, 34.75588725070857], [-77.36047138007359, 34.755966709522234], [-77.36057626210699, 34.75604788085761], [-77.36100681525396, 34.75634333626463], [-77.36107151167083, 34.75640524904031], [-77.36152259124216, 34.75662393147876], [-77.36159661772206, 34.75665981942422], [-77.36166341170515, 34.75662676941891], [-77.3616330387282, 34.75667747602154], [-77.36212966540714, 34.75688704993807], [-77.36240441004352, 34.756845279983224], [-77.362722215727, 34.756909382398746], [-77.363216191053, 34.75724695930445], [-77.36326051086353, 34.75726468987337], [-77.36329404105888, 34.75725883104806], [-77.36389520795312, 34.757288019367614], [-77.36440300570618, 34.75764533095604], [-77.36443182200874, 34.757649135824046], [-77.3644506123964, 34.757653359735926], [-77.36464059115991, 34.757702404604174], [-77.3650548669938, 34.75771260035968], [-77.3651220700157, 34.75779219415274], [-77.3655074389405, 34.75788469124481], [-77.3656597644566, 34.75783856525858], [-77.36587172082726, 34.75792631786063], [-77.36627458111653, 34.757930368980986], [-77.3674017085988, 34.7581095756595], [-77.36744223416405, 34.758054728057104], [-77.36752240240895, 34.75805133627922], [-77.36760523542965, 34.75809702922423], [-77.37009850488214, 34.75801609366199], [-77.37071785529929, 34.759270108352105], [-77.36960723174997, 34.75970834980516], [-77.36883992892736, 34.760340966504955], [-77.36810142852995, 34.760475901561705], [-77.36803448879337, 34.76052093152193], [-77.36797424333032, 34.76054680526297], [-77.36737250046052, 34.76077706022203], [-77.36729414286349, 34.76080736697984], [-77.3666128673139, 34.76118394604495], [-77.36660988857642, 34.76118555926008], [-77.36660679832318, 34.76118666609218], [-77.36660205880514, 34.76119231200269], [-77.3660464157235, 34.76176132505027], [-77.36568898155707, 34.761983881200166], [-77.36539821876792, 34.762586062142375], [-77.36548353565254, 34.76303041641248], [-77.365699552095, 34.76335312322017], [-77.36589450638455, 34.76365795658172], [-77.36608785845283, 34.76408397212751], [-77.36614568362401, 34.76438058782843], [-77.36613609891694, 34.76451014869652], [-77.36601406072059, 34.76470334706973], [-77.36582065611638, 34.764826055936076], [-77.36547665723455, 34.76509695564189], [-77.36537610108948, 34.76515731794535], [-77.36535228570551, 34.7652213591243], [-77.36526889503116, 34.765317463939205], [-77.36497945233515, 34.765650097082265], [-77.36495371198494, 34.76596390773586], [-77.36475169484719, 34.76612960826299], [-77.36467041700806, 34.766249273785505], [-77.36450040450633, 34.76632127412532], [-77.36453544388183, 34.766515340423], [-77.36485729162305, 34.76655494466484], [-77.36505137207403, 34.766561513073206], [-77.36529685408252, 34.76652518163005], [-77.36571419434664, 34.7664664511997], [-77.36571854391428, 34.76646618709994], [-77.36572060885754, 34.76646613302343], [-77.36621765038399, 34.76653381529423], [-77.3663333783776, 34.76656520706514], [-77.366460131032, 34.766606545365], [-77.36688822576728, 34.76686376283713], [-77.36692913955282, 34.76689162605132], [-77.36730480792951, 34.767147391739414], [-77.36742389635023, 34.767228373601355], [-77.36755316499007, 34.76738960598266], [-77.36734994549049, 34.76748305873824], [-77.36725785483277, 34.767486459745754], [-77.36712954881136, 34.76752097177243], [-77.36685235211374, 34.767571941997765], [-77.36668289918468, 34.767570884715845], [-77.36604418884541, 34.76770036863927], [-77.36601789630305, 34.767704554572724], [-77.36599330046036, 34.76773636746382], [-77.36564245739541, 34.768118998137595], [-77.36583072120459, 34.76829624677268], [-77.36602787500891, 34.7685715561282], [-77.3661983493496, 34.76887274871709], [-77.36625295895749, 34.7690515160635], [-77.36656887834297, 34.76923884133549], [-77.36677736321778, 34.769454967963625], [-77.3670935075948, 34.769463799820414], [-77.36764640014391, 34.76968275411154], [-77.36793284673992, 34.769894536082724], [-77.36828090871852, 34.77031110999027], [-77.36878141647577, 34.77072695556671], [-77.36893283460827, 34.7708696807719], [-77.36901524596837, 34.77089790244864], [-77.36906451869297, 34.77099411725121], [-77.36972869431233, 34.77149339089877], [-77.36997557804148, 34.77169763372629], [-77.37060863812998, 34.77221781959274], [-77.37114226925215, 34.772098720689215], [-77.37160253491888, 34.77300054472666], [-77.37113467914958, 34.77447815206665], [-77.37095203937227, 34.77577397341051], [-77.36981826388335, 34.776658885284775], [-77.36968281628809, 34.776693126799344], [-77.36964927623954, 34.77679077952053], [-77.36902418075798, 34.77861076394013], [-77.3689634250661, 34.77878764086259], [-77.36879211462333, 34.779023605162934], [-77.36800645057693, 34.78068962700168], [-77.36771722939639, 34.783041163945086], [-77.37091859123268, 34.781708477315135]], [[-77.47154034353706, 34.739755614140186], [-77.47035782088606, 34.739556656423716], [-77.46951450988566, 34.73933963040967], [-77.46730053387739, 34.73795414695256], [-77.46593941849795, 34.73709753710473], [-77.46454762385025, 34.73553181303677], [-77.46400418422078, 34.73492044332289], [-77.46268122807402, 34.73327213587556], [-77.46248015142808, 34.73282332009455], [-77.46236016886141, 34.73173612400711], [-77.4618942879102, 34.72949626077558], [-77.46178590218253, 34.7284877023732], [-77.46182266701493, 34.72678363701194], [-77.46279471101903, 34.724368220910314], [-77.46309255830504, 34.722878517969356], [-77.46335142249393, 34.72232677772744], [-77.46519329309683, 34.721933643260705], [-77.46626971343903, 34.722087392566515], [-77.46985674645596, 34.722599873351605], [-77.4701012869791, 34.722695377114704], [-77.47029371624518, 34.72267875178677], [-77.47100702531431, 34.72276419164126], [-77.47429572548569, 34.72323395854121], [-77.47503580276138, 34.72336534741328], [-77.47595789185581, 34.72362359296608], [-77.47740983390085, 34.72402313350351], [-77.47899034215946, 34.724919336840074], [-77.4796512568804, 34.725140116682724], [-77.48047692452496, 34.725307936001784], [-77.48305167515298, 34.72696878150011], [-77.4836486266496, 34.72755500027458], [-77.48375616780893, 34.72868335665512], [-77.4844286486692, 34.727817737035615], [-77.48475193949325, 34.7275621914842], [-77.48946576840703, 34.72666954115624], [-77.49104334859099, 34.7266594124847], [-77.49206846902311, 34.72653555164002], [-77.49286752220945, 34.725923004329736], [-77.49318883663746, 34.7241847768833], [-77.49328666449833, 34.723528362888416], [-77.49361800111897, 34.7217137187388], [-77.49432247762468, 34.72005941253338], [-77.49681216113824, 34.718982763573706], [-77.50018732904564, 34.71767863162961], [-77.502634313422, 34.71657491113449], [-77.50306509100247, 34.71639928359788], [-77.50329512167332, 34.71614809146488], [-77.50476664571872, 34.715158389720045], [-77.505632963863, 34.714614453304584], [-77.50585001284355, 34.71470554267443], [-77.50816503917878, 34.71517586070639], [-77.50905655989791, 34.71592250151216], [-77.5098704128599, 34.71659724162949], [-77.51017732142624, 34.717087260888064], [-77.5116999281268, 34.71907989090923], [-77.51178433930836, 34.71936952135924], [-77.51197664680274, 34.719737388412696], [-77.51302813186287, 34.72242193491638], [-77.5156632697304, 34.721320276684885], [-77.51527396143919, 34.72032633368782], [-77.51391075738962, 34.71848052660187], [-77.5130880378102, 34.717328661298914], [-77.5129244481885, 34.71710667068655], [-77.51277150523785, 34.716981096813484], [-77.51167404632201, 34.715843206924795], [-77.50931167972968, 34.71377608171875], [-77.50891135420837, 34.71342579754229], [-77.50871846815363, 34.71325701137488], [-77.50833285785453, 34.713045074431776], [-77.5047710423454, 34.71158425165249], [-77.50418293883, 34.711206684610666], [-77.5034781745181, 34.71109943015865], [-77.501819905026, 34.711162427095864], [-77.49876043306715, 34.712231107150856], [-77.49684826704504, 34.71223112843899], [-77.49416741683903, 34.71296320710554], [-77.49331394509105, 34.713337917865395], [-77.4905813679616, 34.71395524020342], [-77.48833070434344, 34.71845491933948], [-77.48769056450801, 34.719645214586194], [-77.4871079298756, 34.720238191453824], [-77.48618560263387, 34.72026955377959], [-77.48159567247441, 34.72198923264971], [-77.48091707250212, 34.72208734685235], [-77.48055420946464, 34.722013593898275], [-77.48014204655676, 34.72187591008059], [-77.47671677980297, 34.72120865206854], [-77.47573796895809, 34.72093452069745], [-77.47440916466664, 34.72069861276892], [-77.47330641729664, 34.72047619909775], [-77.47253909298244, 34.720366594890265], [-77.4708440666532, 34.720124459691654], [-77.46815227614044, 34.719739894962615], [-77.46591942388787, 34.719420882512345], [-77.46441076869402, 34.719052295157624], [-77.46100570999369, 34.71867955584359], [-77.4605037283494, 34.718651484559906], [-77.46020667083485, 34.7189925687969], [-77.46005125953901, 34.719550962871594], [-77.45941162588625, 34.72284709126525], [-77.45926004888535, 34.72313377724699], [-77.45919713184442, 34.72347913902539], [-77.4594410340672, 34.724092702046335], [-77.4593644571647, 34.72764207351032], [-77.45966378914787, 34.73042743827372], [-77.46006548288625, 34.73235870211408], [-77.4614574496156, 34.73485904636604], [-77.46275654991737, 34.73627955792292], [-77.46516930264475, 34.73861258680779], [-77.46538020674456, 34.73903237555048], [-77.46567318853303, 34.73904782164935], [-77.46839465212695, 34.74106905951217], [-77.47013017636921, 34.740344453844955]], [[-77.52419267323305, 34.717753823120376], [-77.52339695123831, 34.7156925980422], [-77.52283002725552, 34.714751064034246], [-77.52248886998241, 34.71390109682453], [-77.52265753988331, 34.71125056828241], [-77.52070430918944, 34.70724803443764], [-77.51977791144142, 34.705309713740405], [-77.51854098149815, 34.703583144176406], [-77.51741693974058, 34.70223484825681], [-77.51615531212191, 34.70060324720765], [-77.5158549576605, 34.70029661232955], [-77.51340061770591, 34.69982554478818], [-77.51139998795522, 34.698613957856104], [-77.51139724501186, 34.69861304355641], [-77.51130565188798, 34.69858251038737], [-77.50907947062102, 34.697840398626745], [-77.50903940775761, 34.697838281552684], [-77.50683068777275, 34.69731854135069], [-77.50491580472891, 34.698829822874934], [-77.50426153511552, 34.700430051994914], [-77.504181446187, 34.70080906861225], [-77.50380767825945, 34.70127010378213], [-77.50281925525226, 34.70256920209525], [-77.5022306862156, 34.70309040739498], [-77.50128004715347, 34.70349782208295], [-77.49912714703586, 34.70400072267902], [-77.49716584439763, 34.704046473687946], [-77.49599524180067, 34.704046490434486], [-77.49549377026219, 34.70404648928667], [-77.49400444496209, 34.703964041832876], [-77.49174578659111, 34.70390512207086], [-77.49094859616136, 34.70376943066975], [-77.48973658436354, 34.7035792844577], [-77.48633530912446, 34.70199101783584], [-77.48216749888662, 34.70022292351422], [-77.4817536141319, 34.70010365907672], [-77.48126621616305, 34.69997478411085], [-77.47716374725428, 34.69824511094974], [-77.47704708003026, 34.698165713309976], [-77.47307392664291, 34.697330116063355], [-77.47236302651291, 34.69711707067085], [-77.47118055788523, 34.69704472357432], [-77.46908262411733, 34.69679021418101], [-77.46741139378975, 34.69651163433258], [-77.46657915751912, 34.69539508791307], [-77.46488366562268, 34.69379544763987], [-77.46383668976588, 34.692968933111025], [-77.46344111250488, 34.69250987235529], [-77.46087296635812, 34.68792234169738], [-77.46055313795031, 34.68719718435271], [-77.461316285262, 34.684105136430134], [-77.46142982042181, 34.68364506554827], [-77.46140141448346, 34.68333419375325], [-77.46129946309091, 34.683014383509544], [-77.46050962485391, 34.6819469342925], [-77.45999216918699, 34.68095379105866], [-77.4599325623361, 34.680798772526515], [-77.45959696964684, 34.6805271740471], [-77.45869055134543, 34.67888630268364], [-77.45836240482056, 34.678292225949505], [-77.45790110696078, 34.67745707439816], [-77.45749172168254, 34.67669327956845], [-77.45758766972502, 34.675558935827404], [-77.456366053532, 34.67451067279105], [-77.45631778857549, 34.67446990392613], [-77.45629441944651, 34.67445053543488], [-77.45622669356526, 34.67439440255919], [-77.45566674677748, 34.67315237933042], [-77.45364255239332, 34.67225258283571], [-77.45130080396652, 34.67439684517693], [-77.45076050624412, 34.674961147299165], [-77.45044216105957, 34.67593266764547], [-77.45034214570062, 34.67614712852661], [-77.45005165379894, 34.67719086850313], [-77.44953002386899, 34.67785561554971], [-77.44927754839475, 34.67815902782106], [-77.44900746041915, 34.67837690535403], [-77.44807528426858, 34.67897749974355], [-77.4473169249155, 34.67917010988292], [-77.44657849967494, 34.6799096357546], [-77.44406052165559, 34.67981002838965], [-77.44404726158159, 34.67980719045069], [-77.44404524556315, 34.67980703594528], [-77.44403905953571, 34.67980774358556], [-77.4423576354674, 34.680036162085486], [-77.44208663309382, 34.6802379607826], [-77.44171679675199, 34.68077732741692], [-77.44130956665808, 34.68108434067168], [-77.4412130125543, 34.681155967139], [-77.4410477564405, 34.68130973141683], [-77.44098423783308, 34.681083173035795], [-77.44002325874722, 34.68070664121144], [-77.43994945419657, 34.68067626466294], [-77.43981225398315, 34.680679653738956], [-77.43930538811232, 34.68068774052123], [-77.43910024647049, 34.68069330506155], [-77.4389808574992, 34.68070211325963], [-77.43887745423118, 34.68070298313203], [-77.43878952394076, 34.68066022000288], [-77.43870569595148, 34.68054578279857], [-77.43855917910471, 34.68040216793534], [-77.43850888083304, 34.68033097919023], [-77.43829688126254, 34.68003092617986], [-77.43823755021629, 34.67994899378783], [-77.4379387011928, 34.67967621038443], [-77.43771397905152, 34.679543860967925], [-77.4374746136318, 34.67953140212631], [-77.43727350519626, 34.67967306886429], [-77.43702475601259, 34.67971148093934], [-77.43671018892128, 34.679777276052654], [-77.43666303730414, 34.67976235478193], [-77.43639725236991, 34.679665701073084], [-77.43612127836971, 34.67956231339814], [-77.43609780773639, 34.67955191495953], [-77.43581402408167, 34.67946684811426], [-77.43555864095342, 34.67939029379106], [-77.43551921344714, 34.67937847491284], [-77.43547886092759, 34.67936389754891], [-77.4353735502379, 34.6793282660541], [-77.43526167795201, 34.6792490599974], [-77.43525363378457, 34.679234719986894], [-77.43532788891181, 34.6790130618099], [-77.43538282163544, 34.67901189820553], [-77.43562814184322, 34.6790018842299], [-77.43578570638269, 34.6790137293935], [-77.43594243645327, 34.679022890612494], [-77.43624424802393, 34.6790443862158], [-77.43625634063741, 34.67904524747711], [-77.43626267163629, 34.67904569836851], [-77.4362671798978, 34.67904163729782], [-77.43627870548168, 34.67903000174701], [-77.43647729533691, 34.678835588985386], [-77.43655994113558, 34.67878390634778], [-77.43674298155764, 34.67847038131656], [-77.43679841094024, 34.678425993901236], [-77.43679719628986, 34.67838840816346], [-77.43688629381299, 34.67832995974395], [-77.43686086304626, 34.67806281018116], [-77.43692580936938, 34.677420666979685], [-77.4364484772972, 34.67727332560291], [-77.43628603314676, 34.67709154959756], [-77.4362188185141, 34.6768230174145], [-77.43608422800317, 34.676317436664775], [-77.43597836640679, 34.67603060520326], [-77.43583305729541, 34.675815030481616], [-77.43521382443934, 34.674896364772756], [-77.43464165596542, 34.675398363816214], [-77.43457127467632, 34.675725219431484], [-77.43450697911325, 34.67591032053848], [-77.43448283391771, 34.676135958689606], [-77.43444931181108, 34.676449209060834], [-77.43428785791275, 34.676736317525766], [-77.4341460546415, 34.6769022075016], [-77.43406713120599, 34.676951909020964], [-77.43389498465092, 34.67724074321904], [-77.43383395324767, 34.677318482249326], [-77.43381699973311, 34.67734618424387], [-77.43370671504549, 34.67742530308892], [-77.4335256687937, 34.677562265613005], [-77.43342201286504, 34.67754414770358], [-77.43342088314871, 34.67739095005224], [-77.43336934781914, 34.677189624200906], [-77.43337436263194, 34.67711764747672], [-77.43331498218288, 34.6770308039415], [-77.43317683758283, 34.67656323538341], [-77.4331257347815, 34.676328652070794], [-77.43310903195535, 34.67613328683422], [-77.4331009037769, 34.675977617854386], [-77.43306907442641, 34.67566593216954], [-77.43305203547483, 34.67546663611474], [-77.43303470866883, 34.675263959609886], [-77.43322838031261, 34.674904080367924], [-77.43292291023883, 34.67395627846766], [-77.4327529808445, 34.67380591289318], [-77.4306854522275, 34.67291846045363], [-77.43065382698853, 34.672940856818215], [-77.4294088893537, 34.673822503237815], [-77.42800710033444, 34.67578689993975], [-77.42798745452485, 34.67642534448271], [-77.4283167941087, 34.67744316925659], [-77.42923403996922, 34.67784834974538], [-77.42930174178304, 34.67792483232563], [-77.4293499759493, 34.678020082317566], [-77.42983259635801, 34.678596025394846], [-77.42996915784894, 34.678795721987434], [-77.43008407964021, 34.678937442972966], [-77.43018116485989, 34.679004060421036], [-77.43065628008331, 34.67914499420645], [-77.43076099010072, 34.67921465132767], [-77.4308589843273, 34.6791849507113], [-77.43108205910616, 34.67921225643374], [-77.43110358001009, 34.67921093969689], [-77.43129837926813, 34.67932336861995], [-77.43136437274865, 34.67934382142594], [-77.43143560325696, 34.679448385570666], [-77.43131504097238, 34.67951434063145], [-77.43128062049699, 34.67950039423839], [-77.43125333116181, 34.67952440245434], [-77.43108353679436, 34.679552087507666], [-77.43084906088865, 34.67966254130641], [-77.43061930023238, 34.68005320068809], [-77.43054179447857, 34.68011414060374], [-77.43052595589289, 34.68013614130224], [-77.43048235139884, 34.680177755395334], [-77.43028766128081, 34.68019162348887], [-77.42986749797748, 34.680088210778315], [-77.42963431162121, 34.67979674182365], [-77.42947012405354, 34.679640084226975], [-77.42940774420585, 34.67946260189367], [-77.42928739680272, 34.67911633388355], [-77.42939048662886, 34.678780556835], [-77.42915055402325, 34.6781369018094], [-77.42826603586293, 34.67793679562336], [-77.42799513755855, 34.67770115541321], [-77.42752574955854, 34.67777333125247], [-77.42684183096817, 34.67725813572085], [-77.42541303926195, 34.67776111195589], [-77.42485495388408, 34.67834229985617], [-77.4240001616661, 34.67822113031792], [-77.42322744128523, 34.67778171724281], [-77.42184185519235, 34.67682268012729], [-77.41960735682389, 34.67572150155804], [-77.4193860969164, 34.67341619639322], [-77.42116761610036, 34.6723120053643], [-77.42136403815161, 34.66963549910274], [-77.42140621354963, 34.668143689835034], [-77.42058416153674, 34.66692459455167], [-77.41849663524285, 34.666018392491516], [-77.41814314866257, 34.66557005576044], [-77.4169475463701, 34.66405363074214], [-77.41617253340507, 34.66372633505813], [-77.41291078216823, 34.66182670306392], [-77.41280774612346, 34.66179724777431], [-77.41278797064432, 34.66173621167965], [-77.41263536554862, 34.66162505163175], [-77.41011858923576, 34.659542402799424], [-77.40912859952869, 34.65897850675353], [-77.40789806075786, 34.65888458119216], [-77.40751533302362, 34.658806631894166], [-77.40715151222032, 34.65773711420701], [-77.40702079064738, 34.65747055132365], [-77.40715918213093, 34.65618255738836], [-77.40773146169431, 34.6549523825836], [-77.40870195749022, 34.65403821221629], [-77.41396122363689, 34.65028322700915], [-77.41599822736747, 34.64793434948154], [-77.41627566900297, 34.64597422928658], [-77.41832909034034, 34.64379437919394], [-77.41902910868816, 34.64223632946918], [-77.4197412319524, 34.64065110290568], [-77.42020372910784, 34.639494763645104], [-77.42126451227324, 34.63864580536702], [-77.42302473476289, 34.63727510463043], [-77.42450644368849, 34.63772230759808], [-77.42628863602897, 34.63801981281934], [-77.4277742363343, 34.63925784873136], [-77.42830578695046, 34.639593779625685], [-77.4300720794503, 34.64071006632247], [-77.43085165242229, 34.64182230507874], [-77.431626218037, 34.642467779929746], [-77.43217244718147, 34.64292294263654], [-77.43322443529149, 34.643799558966776], [-77.43387994630105, 34.64337072469524], [-77.43517568528455, 34.64225668880064], [-77.43648317751729, 34.64033441809108], [-77.43655891439992, 34.640262938959815], [-77.43663464939607, 34.64017443656126], [-77.43669684875925, 34.639928700651836], [-77.43792747623556, 34.63685201999451], [-77.43830142012098, 34.63591717673215], [-77.43900175003074, 34.63416652806331], [-77.43917088586403, 34.63374371733406], [-77.4392875709552, 34.63351041921352], [-77.43933858787877, 34.63304346755867], [-77.43996184177121, 34.631542774867725], [-77.44124112074851, 34.630718232845666], [-77.44234439131081, 34.6310098852651], [-77.44318691017295, 34.63199709457721], [-77.44537448938031, 34.63177529431393], [-77.44644952799354, 34.63166644776441], [-77.4467392041773, 34.631696518408845], [-77.4496568068904, 34.631403268796554], [-77.45076172758789, 34.6310235097703], [-77.45162098645258, 34.63066637388651], [-77.45347861774624, 34.629464535346166], [-77.45673803654348, 34.627501110218816], [-77.45787239020498, 34.626267466556925], [-77.45869972941307, 34.62502142263263], [-77.45913244582555, 34.62338358597941], [-77.4603613237002, 34.621593259985744], [-77.46153963899934, 34.619270579157366], [-77.46395001100636, 34.61774410384671], [-77.46406718207226, 34.61767714827087], [-77.46439981963061, 34.617487066178896], [-77.46435619913602, 34.617087952433174], [-77.46453054704958, 34.61536177680306], [-77.4638431005622, 34.61469170675177], [-77.46356554111844, 34.614396753914626], [-77.46274955890507, 34.61336269120867], [-77.46206518282605, 34.6125736187055], [-77.46204682615891, 34.612250013939956], [-77.46203326906317, 34.612010903975836], [-77.46194293145395, 34.610418378245186], [-77.46188988427078, 34.609483298433], [-77.46188136470984, 34.60934305592923], [-77.46198990862415, 34.609007615830855], [-77.4620274254151, 34.606347206147845], [-77.46279788852407, 34.60484598393422], [-77.46417644977416, 34.6032193556818], [-77.46541599943012, 34.60242614802909], [-77.46700061049253, 34.60136122289591], [-77.46749282711436, 34.59997414406811], [-77.46791875162478, 34.598757732982506], [-77.46824454984333, 34.59684152843744], [-77.46787455064543, 34.59581609868408], [-77.4677645414931, 34.59462759003782], [-77.46814910599261, 34.59278355156183], [-77.46729792148196, 34.59155558343298], [-77.46754975700017, 34.590000348352504], [-77.46832815381671, 34.58696120309813], [-77.46900973419085, 34.58662947528667], [-77.47184493919096, 34.58516286978619], [-77.47244765596326, 34.58523936471944], [-77.47412692796493, 34.585168717254795], [-77.47553108187662, 34.585124837735194], [-77.47646473934816, 34.584852691307795], [-77.47675847156097, 34.58441742151519], [-77.47785093460664, 34.582860243179624], [-77.47831395160759, 34.58171923421018], [-77.47863011556801, 34.58092872873397], [-77.47865359984024, 34.580663690772354], [-77.47888704187753, 34.58017395787353], [-77.47897330262542, 34.577876424683346], [-77.47847817975259, 34.575647736712355], [-77.47837327865768, 34.575093457217136], [-77.47829033034293, 34.574430531040335], [-77.47818639807932, 34.57366967965784], [-77.47811687039871, 34.57304406176097], [-77.47828451030445, 34.572164500075395], [-77.47816020496248, 34.57058189378201], [-77.47980134426732, 34.56877704255222], [-77.479801425025, 34.56867875594966], [-77.47991087848918, 34.56856790385499], [-77.48007468241764, 34.56858767090395], [-77.48342770469887, 34.56746996302024], [-77.48374023528315, 34.567201312683515], [-77.48404881827784, 34.56608676322463], [-77.48382242034586, 34.565130782941665], [-77.48377777237775, 34.56468700243915], [-77.48277593409975, 34.56228745965279], [-77.48282021893137, 34.56200617280274], [-77.48405048403579, 34.560256073875436], [-77.4840746720965, 34.56003206110216], [-77.48413079229513, 34.55867747899224], [-77.48332170209324, 34.557523874133324], [-77.48322433965576, 34.557414079937345], [-77.48301666944259, 34.55741716205], [-77.481997399513, 34.5589161651957], [-77.48170038778674, 34.559371706587136], [-77.48201532611293, 34.55954411726935], [-77.48166382523625, 34.55962367595635], [-77.48166378556392, 34.561898397537924], [-77.48050872413697, 34.56266637218636], [-77.47859641336785, 34.5637703330524], [-77.47817106208706, 34.563600189358965], [-77.47761560081207, 34.56349263832994], [-77.47585985687381, 34.562770472609074], [-77.47417873128487, 34.562988659535044], [-77.47335692928303, 34.563946744550066], [-77.47328734486162, 34.56472860411387], [-77.47259162249695, 34.5661563546822], [-77.47254356620743, 34.56682949432197], [-77.472452212678, 34.567921321841226], [-77.47238122275174, 34.568560108804164], [-77.47212716381146, 34.570845838252374], [-77.47201993800357, 34.570998991256296], [-77.47022385373728, 34.572760018091934], [-77.46863410796857, 34.573441357409], [-77.46704140142683, 34.5741239149972], [-77.46678344826613, 34.574359182077444], [-77.46608253517098, 34.57502711420451], [-77.46617202505786, 34.575622633659435], [-77.46625252655738, 34.57632530984668], [-77.46566961783991, 34.57796769629234], [-77.46558269034068, 34.57874504261945], [-77.46533513171404, 34.58095917637771], [-77.46532356066638, 34.58177318242938], [-77.46520672193328, 34.58312405628972], [-77.46522018978524, 34.58327979574408], [-77.46514758030251, 34.58337102171866], [-77.46506974658294, 34.58345319810395], [-77.46410208743066, 34.584475515246154], [-77.46343245873373, 34.585151019839046], [-77.4633859816259, 34.58523210840549], [-77.46332334294574, 34.58529824058515], [-77.46017763166226, 34.588619436831785], [-77.45977606764238, 34.588923941359745], [-77.45928145746075, 34.58940578235787], [-77.45812122638661, 34.590822404264756], [-77.45728013283104, 34.59145388624009], [-77.45701417552459, 34.59167379043149], [-77.45681019679527, 34.59167751485594], [-77.45666499851669, 34.591744234687425], [-77.45533424642854, 34.59232469999559], [-77.4549677384304, 34.59262705903332], [-77.45406370452747, 34.59384856812308], [-77.45447500045766, 34.594422802382205], [-77.45456624894541, 34.59444373196794], [-77.45454890539624, 34.594527434654566], [-77.45446839116096, 34.59464281184031], [-77.45437339717417, 34.5945470674863], [-77.45341920448482, 34.59465034264565], [-77.45180575158732, 34.59596972398767], [-77.4518390032408, 34.59605669149946], [-77.4517155720434, 34.59610734151091], [-77.45149441066506, 34.596239268162876], [-77.44966012623736, 34.59627930635248], [-77.44893720044574, 34.59570910682641], [-77.44838649211894, 34.59546797904328], [-77.44727721787791, 34.59525491961794], [-77.44641582100982, 34.59513511416986], [-77.44512128920793, 34.59492221920041], [-77.44509721277491, 34.59491894815031], [-77.44505863702469, 34.59483072096904], [-77.4449964682373, 34.59490069067047], [-77.44446924945554, 34.59477253332472], [-77.44440110651388, 34.59475835464539], [-77.4444373022667, 34.59470496669595], [-77.44477991944058, 34.59428107004128], [-77.44488246496643, 34.594186983148134], [-77.44523938272593, 34.59374688239686], [-77.44559317177789, 34.593310625890666], [-77.44643959607569, 34.59219445377621], [-77.44674324989873, 34.59179561424155], [-77.44668455559642, 34.591522343342874], [-77.44668228836044, 34.591152062550414], [-77.44538307378835, 34.59079336055318], [-77.44470984789996, 34.59046530848829], [-77.44460801009176, 34.59028990879403], [-77.44418728476771, 34.59024113871068], [-77.44392136342285, 34.58974092594413], [-77.44386308569918, 34.58950150546592], [-77.44370935282598, 34.58946108005719], [-77.44367439534632, 34.589200319344215], [-77.44405658083167, 34.58856165557834], [-77.44470855706875, 34.587965973752105], [-77.4453566320604, 34.58737384438567], [-77.44614346954414, 34.58656135179266], [-77.44785930583213, 34.585031092153955], [-77.44894288646645, 34.58392779712551], [-77.44939689845702, 34.582693808052255], [-77.44919111508595, 34.58128613417334], [-77.44785499656089, 34.57716777290027], [-77.44758823532102, 34.576448995106155], [-77.44748714461028, 34.57617656960721], [-77.44683474278943, 34.57517259195983], [-77.44560618480048, 34.57305194827767], [-77.44511354400477, 34.57267834590442], [-77.44289288820713, 34.57004770866316], [-77.44232797624747, 34.56928813248811], [-77.44154667801598, 34.56773988657446], [-77.44038614815082, 34.56486619680722], [-77.43952580104293, 34.56374124803605], [-77.43741813702964, 34.56169957594241], [-77.4356836436037, 34.56090023867177], [-77.43524060527875, 34.5603597801913], [-77.43402998533884, 34.55904700892664], [-77.43263624457273, 34.558534445127705], [-77.43208851505587, 34.558189466383375], [-77.43157797157384, 34.5580972026176], [-77.43112219718105, 34.5558070761975], [-77.42893642856579, 34.55549234644494], [-77.4287039280452, 34.55536658257474], [-77.4284850070558, 34.55514765639134], [-77.42783341957197, 34.55303328899206], [-77.42578445439344, 34.552446981728295], [-77.42500781662123, 34.55225358696313], [-77.42339747864652, 34.55166248512329], [-77.42263303131026, 34.55083070908914], [-77.4213260388555, 34.55137664966491], [-77.41948217934163, 34.55165807328644], [-77.41900753644418, 34.553120722722255], [-77.41919777328792, 34.55340015330735], [-77.41948261166361, 34.55396981762542], [-77.42177090225825, 34.55365137529886], [-77.42063860994458, 34.55628171746166], [-77.4213062897723, 34.55761696083047], [-77.42118144409906, 34.55803358485813], [-77.42105902880941, 34.5580744194935], [-77.42088453495357, 34.55813262363951], [-77.41948326011435, 34.557396841222314], [-77.41874323351826, 34.55915425491577], [-77.41790791460068, 34.55904469749403], [-77.41719055997676, 34.559403317762374], [-77.41693187778483, 34.5595677372823], [-77.41633236973738, 34.55979822577991], [-77.41576272661396, 34.5597688606156], [-77.41396274688942, 34.55980025519866], [-77.41318095502758, 34.559272340250374], [-77.41197681762728, 34.55963175894139], [-77.41132736343849, 34.559624729059536], [-77.41023040190322, 34.55948355912067], [-77.41002962814898, 34.55944368289119], [-77.40997538260525, 34.55946191681787], [-77.4087902244292, 34.55932906825456], [-77.40845394500087, 34.55930315178476], [-77.40781875980025, 34.55914717734294], [-77.40759390889548, 34.55909290947076], [-77.40687825456254, 34.55887910036269], [-77.40646584044455, 34.55877331921773], [-77.40527232783435, 34.558501117390584], [-77.40444715617961, 34.5559999372511], [-77.40464107847859, 34.55519563239475], [-77.40540761146477, 34.553273290865036], [-77.4062336213502, 34.55087452190736], [-77.40806657625318, 34.54790776615575], [-77.40812687995775, 34.54520138356389], [-77.40857064457592, 34.54391756068227], [-77.40751539228698, 34.54243024248], [-77.40800346799699, 34.541431279271215], [-77.4094121856783, 34.539878616364014], [-77.41024843412066, 34.537765417388286], [-77.41097910607321, 34.539652303850794], [-77.41168620054492, 34.54250495473171], [-77.41161994621041, 34.54347716309525], [-77.41361867638486, 34.54539638033706], [-77.41358046215456, 34.5471114047851], [-77.41517690615053, 34.548124470807444], [-77.41633061074144, 34.54806836798159], [-77.4178875180782, 34.54816749907329], [-77.42011133352896, 34.548885742242746], [-77.42263256159265, 34.54872297151901], [-77.42379497808113, 34.54903218638303], [-77.4248415123601, 34.54989667965421], [-77.42578369577912, 34.54954338387273], [-77.42652453459948, 34.54943629047739], [-77.4279715149186, 34.5494666794389], [-77.42893488895956, 34.5503656228486], [-77.42990211791741, 34.55050339879628], [-77.43405248929591, 34.54966942922942], [-77.43523663863996, 34.54984956824857], [-77.43617183102737, 34.549631050368625], [-77.43806598205737, 34.55036537195218], [-77.44060313941604, 34.551007236318306], [-77.4415391490506, 34.55124400308201], [-77.44229266969934, 34.55056653813865], [-77.44752187904328, 34.54934024611735], [-77.44784009151371, 34.549294914304156], [-77.44824705058612, 34.5493309251034], [-77.44883144844532, 34.5488076369676], [-77.44883114252964, 34.54773835339173], [-77.44957856854269, 34.543783229076915], [-77.44943043657987, 34.541927300345804], [-77.44889159803107, 34.53869878689779], [-77.44895738261638, 34.53807817248585], [-77.44889159442607, 34.5374930067977], [-77.44889166678121, 34.53472716610298], [-77.44935433635821, 34.53410310353659], [-77.4488094060517, 34.53369033707372], [-77.44830795324106, 34.532457853104276], [-77.45093172553284, 34.53208105934446], [-77.45119529358476, 34.53213351243554], [-77.4524619078381, 34.533653180577076], [-77.45293567914865, 34.53442655398028], [-77.45428640625451, 34.53438301266076], [-77.45677663867994, 34.53537907413834], [-77.45965243212463, 34.53652945398443], [-77.4601134682899, 34.53671385548216], [-77.46051266879881, 34.53687353704146], [-77.46332504075022, 34.53776371615491], [-77.46675391629977, 34.53868667327317], [-77.47201972295053, 34.53473734477655], [-77.47255319865697, 34.53430090112864], [-77.47314532189841, 34.533537384514126], [-77.47672795222994, 34.53184241900772], [-77.47949612174241, 34.53024333385159], [-77.4800857499602, 34.5300148367168], [-77.48083305793725, 34.529801019043084], [-77.48536797308327, 34.52782680127433], [-77.48945686519528, 34.526709941209816], [-77.48893544646768, 34.52480666558805], [-77.48743444385157, 34.51932689748639], [-77.48670313911046, 34.516656691433724], [-77.48460598430349, 34.51795408068919], [-77.4810867721252, 34.51900583965803], [-77.47888289170558, 34.51992765753232], [-77.4815272571804, 34.52443210537363], [-77.4795492483645, 34.52500283302042], [-77.47843053998895, 34.52580258736996], [-77.47779356942658, 34.52652653135136], [-77.47635005491998, 34.52687222726418], [-77.47471425592181, 34.52740768599018], [-77.47326620889936, 34.527923351717966], [-77.46872261333876, 34.531297526015834], [-77.46817286102308, 34.532174630885095], [-77.46761192577267, 34.53341738022873], [-77.46685447982986, 34.53403243507948], [-77.46536247321907, 34.533743356370614], [-77.46477357212606, 34.53317944515308], [-77.4630000486637, 34.53212678827651], [-77.46300606519645, 34.52966621347114], [-77.46176242179065, 34.52773238232436], [-77.46099834256371, 34.52458147739372], [-77.46238970224262, 34.5214242495392], [-77.46195039258097, 34.52011563002339], [-77.46200304324022, 34.5180390510872], [-77.46176369518807, 34.51708149970853], [-77.46160053039924, 34.51666762229215], [-77.46037677093517, 34.51569462981685], [-77.45970379791234, 34.5152203220076], [-77.45950439256113, 34.51513010448481], [-77.45927023825915, 34.51485796275605], [-77.45854162061956, 34.51480339203119], [-77.45646192137369, 34.514439814491325], [-77.45398996911547, 34.51487903190939], [-77.45389208409259, 34.51489361626814], [-77.45372664140828, 34.514916738966306], [-77.45018739883443, 34.515498074402046], [-77.44840042976796, 34.516324178075976], [-77.44687956573301, 34.51582895385879], [-77.4426444601605, 34.51580557593438], [-77.44213167068465, 34.515858638641596], [-77.44167615594634, 34.51591001067004], [-77.43974224909118, 34.51638151181582], [-77.43896317284052, 34.51718100616815], [-77.43846306150911, 34.51774597975534], [-77.43602934708787, 34.520191538832464], [-77.43587750530494, 34.52038314287519], [-77.43575084133323, 34.52049222021367], [-77.43327224310322, 34.52316795969613], [-77.43027760465876, 34.52455192004604], [-77.42960814924628, 34.52324874007605], [-77.4294107428955, 34.523246896246405], [-77.42929796092469, 34.52322290956979], [-77.42933954091379, 34.52328758688791], [-77.42935269709001, 34.523320877736374], [-77.42908486796527, 34.525105459265816], [-77.42836796949466, 34.52538684280039], [-77.42778858527957, 34.52561425181292], [-77.42740095982103, 34.52576639008068], [-77.42695707166908, 34.526057617403126], [-77.42694284211116, 34.52611363552026], [-77.42680608134748, 34.52659206561782], [-77.42648164231997, 34.52681965228832], [-77.42648097052276, 34.52694675165185], [-77.42695420463272, 34.5270603380268], [-77.42695751432026, 34.52706858067601], [-77.42698923270576, 34.52706630739684], [-77.42776419592958, 34.526718888138404], [-77.4281096768133, 34.526617698157814], [-77.42936338514511, 34.525393602384014], [-77.42999908219717, 34.525549679110085], [-77.43348630336317, 34.525983968148616], [-77.43558396731609, 34.52808240481929], [-77.43578854860797, 34.52823111955177], [-77.43913661903318, 34.529429513025775], [-77.44126351770343, 34.53135654231898], [-77.4417781147443, 34.53199508094334], [-77.44300301169653, 34.53422780177208], [-77.44324878719827, 34.53498681852611], [-77.44324688296402, 34.5359574056883], [-77.44398628082246, 34.5387976718971], [-77.44427741808343, 34.54042975208705], [-77.44434405271186, 34.54070472734461], [-77.44418198515912, 34.5410636612053], [-77.44386451940179, 34.54273288387662], [-77.4435400617648, 34.54493994940801], [-77.44153662510779, 34.54560775124497], [-77.43996039487043, 34.54499668070961], [-77.43523524496375, 34.546100763413776], [-77.4336935469507, 34.54586623221272], [-77.42976845544506, 34.54567204355267], [-77.42893349579661, 34.54567205272487], [-77.42829600900532, 34.54567204276475], [-77.42682708009761, 34.54519716271597], [-77.42392275517983, 34.54482542667243], [-77.42266582302248, 34.54427157449622], [-77.42208608593273, 34.54392373855716], [-77.42092924373233, 34.54322964540707], [-77.41886331029845, 34.54243070245792], [-77.41881551272454, 34.54096724936334], [-77.41886654696461, 34.54000164561834], [-77.41914427806054, 34.53847262886677], [-77.41913353202187, 34.5368621660981], [-77.41977839675579, 34.53446351458288], [-77.41823206870586, 34.5336813469242], [-77.41827335380447, 34.532722309957705], [-77.41780180867265, 34.53207542425009], [-77.41746804454422, 34.531377123668136], [-77.41724575967653, 34.53091207377954], [-77.41712391073104, 34.53065714908346], [-77.4167064091747, 34.52978363049658], [-77.41560369569874, 34.52919061202407], [-77.41623144642014, 34.528789863859906], [-77.41675851132872, 34.527437758505414], [-77.41691591863939, 34.52713629322915], [-77.41833816069607, 34.527001959319776], [-77.41893951984422, 34.52712670457873], [-77.41900376591134, 34.52674055526825], [-77.418345999712, 34.526648718744006], [-77.41694224406723, 34.52693088046015], [-77.41676981223058, 34.526928946595305], [-77.41556890018467, 34.526481573769956], [-77.41521198244057, 34.52638279153422], [-77.41517217868754, 34.52634029887392], [-77.41492557600512, 34.526350510620226], [-77.41442672710225, 34.52639513996477], [-77.41437419858157, 34.526430177261695], [-77.41408404345583, 34.526752974508206], [-77.41362296357785, 34.52723935968726], [-77.41332542343297, 34.52737737075528], [-77.41204563110668, 34.52756957457129], [-77.4118538852714, 34.52765523103442], [-77.41125503406221, 34.52782112084878], [-77.4111981262053, 34.52786838241418], [-77.41091061250316, 34.52818986861378], [-77.41078076713714, 34.528418349930675], [-77.41045017160351, 34.52871256156532], [-77.41015888992732, 34.52881761915775], [-77.40902197187307, 34.52906865914281], [-77.40887234172553, 34.529063133223396], [-77.4087363744646, 34.529119289745864], [-77.40870699891886, 34.52920756601403], [-77.40784522663054, 34.52967926269265], [-77.40774051901035, 34.529836830398956], [-77.40727334192547, 34.53036139848603], [-77.40725036611653, 34.53038326924667], [-77.40720025834662, 34.530404532741976], [-77.40647867244141, 34.53079338784628], [-77.40618208148308, 34.53085713026149], [-77.40584958797007, 34.53147220612493], [-77.40580153406722, 34.5315858768694], [-77.40579717970633, 34.53166320747919], [-77.40564831669776, 34.53258734425957], [-77.40559197917612, 34.533549822438026], [-77.40470966424809, 34.53468158913438], [-77.40401781337391, 34.53552411609499], [-77.40123680759616, 34.53540542867834], [-77.40126055533219, 34.537138255585795], [-77.40128325980513, 34.538794911419096], [-77.40111725916054, 34.53932018418892], [-77.40111927592545, 34.541076036466336], [-77.40089400498462, 34.542953195987735], [-77.40089449663982, 34.54318476625565], [-77.39899033738125, 34.54530068435341], [-77.39865789532855, 34.54607037863585], [-77.39742893885905, 34.549266394602995], [-77.39735773822835, 34.5494113265242], [-77.39736852056416, 34.549452145873204], [-77.39735421385063, 34.54953045375396], [-77.39700610309914, 34.55584667046462], [-77.39427322607997, 34.55584666787599], [-77.39268482090284, 34.55523662835657], [-77.39112216884202, 34.55463724858825], [-77.3901464144592, 34.55389070054814], [-77.38896659098535, 34.55298801703242], [-77.38931117288455, 34.55061462220437], [-77.38903552058524, 34.550002305833104], [-77.38865374819596, 34.54915286005146], [-77.38851254453654, 34.54877115840888], [-77.38821604137252, 34.548691308148285], [-77.38802359133982, 34.54850604687738], [-77.38748416788093, 34.547940157847066], [-77.38719562003575, 34.54753247687349], [-77.38718327551405, 34.54749389266546], [-77.38717155620449, 34.54743889497272], [-77.38694584204458, 34.54723873670284], [-77.38660978204888, 34.54708694048851], [-77.3865619299736, 34.54704656237293], [-77.38648734515195, 34.54699210697749], [-77.386048023407, 34.54689258429594], [-77.38592338128404, 34.547185931343535], [-77.3851854747147, 34.54746647786076], [-77.38490215999698, 34.5476477189502], [-77.38380121812621, 34.54817115238715], [-77.38331440455487, 34.54841589021473], [-77.38317695934523, 34.54847644728058], [-77.38293723242805, 34.548825305969594], [-77.38314893286886, 34.54954466220669], [-77.38396879864302, 34.55084811995768], [-77.38424120854378, 34.55134580805852], [-77.38439368344822, 34.551783780241266], [-77.38482032087553, 34.552199760794025], [-77.38659661166247, 34.554402685257685], [-77.38719566230725, 34.555151849114715], [-77.38797069031222, 34.55612103526943], [-77.38916284587297, 34.55742912216589], [-77.3886910601516, 34.558274027306425], [-77.3889797995996, 34.55976372701904], [-77.38954575436571, 34.559475542628974], [-77.38979597860794, 34.55930574618317], [-77.39112151438782, 34.559003217695015], [-77.3923836237215, 34.55900079210679], [-77.39269707116935, 34.55996008234412], [-77.39309659131402, 34.56025825935014], [-77.39292867052079, 34.560532178820985], [-77.39341770575851, 34.56113336950757], [-77.39348476095255, 34.56129746351572], [-77.39407374625631, 34.56181557654271], [-77.39404743716577, 34.56206198037356], [-77.3940743670798, 34.56245109188028], [-77.3942144705745, 34.56264441780588], [-77.39427243567783, 34.56301968881331], [-77.39469622052339, 34.56296732268831], [-77.39506028838915, 34.56326593523636], [-77.39553559309061, 34.562966046721826], [-77.39584821762222, 34.56270023600757], [-77.39596594993787, 34.561669365161265], [-77.39742415527157, 34.56000350489612], [-77.4005459853282, 34.55918335856299], [-77.40055950762884, 34.559164093948155], [-77.40057557040072, 34.55916942505693], [-77.40058083986129, 34.559172648692375], [-77.40058623061397, 34.55917755036569], [-77.40372692386038, 34.55984701020471], [-77.4050403481983, 34.559950249099955], [-77.40543017595091, 34.560039156268274], [-77.4057731664783, 34.560127130780096], [-77.40687831676408, 34.56039387375459], [-77.40774744569217, 34.5606036400474], [-77.40984760095009, 34.56123715563379], [-77.40997938669713, 34.56127243342748], [-77.41002977478354, 34.56129007117336], [-77.41012081387525, 34.5612958257747], [-77.41273373572676, 34.56130262331482], [-77.41318118757744, 34.56126565825346], [-77.41380848059913, 34.561341220724714], [-77.41547282655712, 34.56135140799238], [-77.41633255587354, 34.560999397330015], [-77.41690213366502, 34.56083218878834], [-77.41751061665349, 34.56013034669313], [-77.4177836569469, 34.55995680110181], [-77.41790806158963, 34.55989460867303], [-77.41855500861348, 34.559979459915404], [-77.41934259183077, 34.56001782876697], [-77.41948376685333, 34.560047508052456], [-77.41980290758943, 34.560143125242504], [-77.4208761944831, 34.55984154746065], [-77.42105938994514, 34.55979007205289], [-77.42120140449697, 34.55975016688169], [-77.42232291069693, 34.55943502329564], [-77.42258839165302, 34.55934646558304], [-77.42263492384697, 34.55919118242779], [-77.42276546991899, 34.55923036466471], [-77.42421042655039, 34.558562138008256], [-77.42453480009516, 34.55876578191134], [-77.4255716988975, 34.558734378913734], [-77.42578608851655, 34.55862337506069], [-77.42600197893825, 34.55867060920935], [-77.42627067487948, 34.55886446157385], [-77.4283784366089, 34.55916241823242], [-77.4289375675393, 34.55924145095555], [-77.43057396251734, 34.56000590165724], [-77.43208923250472, 34.56027973634542], [-77.43270490779071, 34.5606675096542], [-77.43328451734828, 34.56124717273582], [-77.43524169381125, 34.56320448789519], [-77.43592874371828, 34.563521113250616], [-77.43659378800824, 34.56416533470113], [-77.43870360505, 34.566924030658605], [-77.4391347915928, 34.56799172946848], [-77.43839521590735, 34.56810583430661], [-77.43764228356847, 34.56822197929324], [-77.43524439220522, 34.57019160376859], [-77.4348423303679, 34.5707785675618], [-77.43366888584545, 34.57114285282628], [-77.43344896385555, 34.571176578964014], [-77.43288104413823, 34.57141070856293], [-77.43277883449224, 34.57140035157334], [-77.43248793602419, 34.57155255977911], [-77.43223980137414, 34.571746406548925], [-77.4320932336442, 34.57178178000009], [-77.43192748081863, 34.57181223407579], [-77.43109567605553, 34.5723769043686], [-77.43051755139777, 34.57240585694256], [-77.43028998514916, 34.57247422683409], [-77.43012361896731, 34.57253756707141], [-77.42977886676181, 34.57274040943451], [-77.42972971739803, 34.57276827795004], [-77.4297045165852, 34.57277697338859], [-77.42967335265814, 34.57280864038066], [-77.42956157413408, 34.5730060872465], [-77.42912005803538, 34.573737799614364], [-77.42904679993462, 34.5738612144119], [-77.42894211823015, 34.57389658638155], [-77.42875803705765, 34.573988541130575], [-77.42854820662305, 34.5741262221971], [-77.42847141298782, 34.5741733736874], [-77.42815429168598, 34.57435195909073], [-77.42779804137521, 34.57439413067705], [-77.42771904614052, 34.57440937948775], [-77.42736626276101, 34.57415682575922], [-77.42726804378961, 34.574111325603], [-77.4272032427111, 34.574014858640254], [-77.42657804692887, 34.57329971694455], [-77.42655213581462, 34.573287707233206], [-77.4265544337366, 34.5732594550917], [-77.42641225816485, 34.57310139440306], [-77.42586311960898, 34.57251019173445], [-77.42582552019255, 34.5724771917004], [-77.42578983390429, 34.57239328188704], [-77.4255910572789, 34.572335306528004], [-77.42529515060627, 34.572276184341824], [-77.42504850902313, 34.57182915865361], [-77.42501971832519, 34.57178290534723], [-77.42508926470208, 34.57167847371946], [-77.4250017094581, 34.57175341943171], [-77.42425547277138, 34.57104417534747], [-77.42422240179125, 34.571039445084516], [-77.42421357387335, 34.5710232070114], [-77.42389379394658, 34.5705917806022], [-77.42359366344924, 34.570290638949515], [-77.42383059815404, 34.569819634001234], [-77.423425378241, 34.56999360871121], [-77.42323464425994, 34.56969882668446], [-77.42303133252145, 34.56966354895638], [-77.42296773831785, 34.56960043620477], [-77.42269961791382, 34.569637754058434], [-77.42263736463848, 34.56964834682162], [-77.42254859353855, 34.56968816336875], [-77.42237626219487, 34.56976054434672], [-77.42224345469847, 34.56988180463631], [-77.42212451421278, 34.569950144133124], [-77.42184958334843, 34.57029402536464], [-77.42146131190812, 34.57016800496533], [-77.42145133963902, 34.57017103613358], [-77.42106166102171, 34.57035201404106], [-77.4207746955999, 34.57015801683569], [-77.42066764890407, 34.57014575405622], [-77.42048807207549, 34.570083726496186], [-77.42044578306228, 34.570081808544984], [-77.42027366629496, 34.5700712700471], [-77.42013587599588, 34.57008959587149], [-77.42001345828473, 34.57010292648939], [-77.42000009915382, 34.570255578469805], [-77.42005058234872, 34.5703780006606], [-77.42027376928814, 34.57056291088909], [-77.42048119740868, 34.57051681198194], [-77.42041001365602, 34.570750655595745], [-77.42048749689002, 34.57096970410011], [-77.42056853589904, 34.57115233741247], [-77.420591451187, 34.57123139566464], [-77.42066791683008, 34.5713947095504], [-77.42102321951154, 34.571469536325765], [-77.42106190838236, 34.571479976965435], [-77.42107814676575, 34.57148579417328], [-77.42144921381629, 34.571442502237566], [-77.42145587325255, 34.571443092701955], [-77.42146203597228, 34.57144118429602], [-77.42176411591387, 34.571311819525725], [-77.42184979790348, 34.5712324242585], [-77.42198991931619, 34.57122053909255], [-77.42224374129086, 34.57111072344104], [-77.42240347536156, 34.57105936929732], [-77.42263768129541, 34.57097994572446], [-77.42289018810312, 34.57096933426942], [-77.42332771247189, 34.57117824377832], [-77.42339075183031, 34.57120677501999], [-77.42342574525004, 34.57147617169769], [-77.42357883961152, 34.57182623117053], [-77.42382657075063, 34.57195532907417], [-77.4235859052234, 34.57216252708037], [-77.42342591607053, 34.57216416801574], [-77.42332512177414, 34.57213640919343], [-77.42286630174522, 34.57234012354734], [-77.4226380206388, 34.572400897179435], [-77.42227880969578, 34.57256614198883], [-77.4222440858302, 34.57258187366238], [-77.42222517484404, 34.5725909350775], [-77.42217145347635, 34.57261907986642], [-77.42185015950525, 34.57280726955625], [-77.42165503120748, 34.5729079713181], [-77.4211058584643, 34.57315066300659], [-77.4210622772401, 34.57315365653902], [-77.42101938876506, 34.573163901290826], [-77.42096089250091, 34.57321857530156], [-77.42048981336646, 34.57351878990366], [-77.42040870562721, 34.573722939796085], [-77.42044567539473, 34.573957696762136], [-77.42044108793397, 34.574142846046904], [-77.42046273170722, 34.574342497126324], [-77.42051917671287, 34.574556149426684], [-77.42061439390724, 34.574600818934805], [-77.4206686194837, 34.57464500785672], [-77.42096930919455, 34.5749157005855], [-77.421023629808, 34.574949929934256], [-77.42106268015051, 34.574971209249945], [-77.42125127219964, 34.575096340837874], [-77.42128234865753, 34.57510716671164], [-77.4214567150251, 34.575170362796044], [-77.42154192447292, 34.57516572618016], [-77.42183419142015, 34.575197522350656], [-77.42183155974327, 34.57481166315838], [-77.42182584667623, 34.574791945646666], [-77.42182174649501, 34.57476143216805], [-77.42177271034049, 34.57445891221614], [-77.42176236717593, 34.5743765317756], [-77.42185049567153, 34.57426423012754], [-77.42204497578949, 34.57412607881082], [-77.42204745599034, 34.57412400970789], [-77.42204822859594, 34.57412376814123], [-77.42224443421287, 34.57406242137788], [-77.4223876205801, 34.574015922916715], [-77.4225171197237, 34.57397358961169], [-77.42263838821313, 34.57393306476339], [-77.42272335944817, 34.57390466936178], [-77.42295755033908, 34.57377925134395], [-77.42303231881947, 34.57371350788692], [-77.42322122489276, 34.57352019488617], [-77.42342614379687, 34.57307877819895], [-77.4237618819908, 34.573301264926876], [-77.42382019713463, 34.57336658249336], [-77.42393634676971, 34.57363781359455], [-77.42406350245973, 34.57378193437469], [-77.42421443991333, 34.574374034505034], [-77.42423671238488, 34.574419592938796], [-77.42424536907583, 34.57444233173264], [-77.42423877070385, 34.574469479062316], [-77.42424801148678, 34.57465424340562], [-77.42424967615791, 34.57469188675068], [-77.42428740298521, 34.57478232913666], [-77.42440927335936, 34.574840774071006], [-77.42441155570333, 34.574841950257316], [-77.4244123617472, 34.57484191838826], [-77.42441444655275, 34.574842485768926], [-77.42456446917316, 34.574868317723585], [-77.42460855971551, 34.57487899302237], [-77.42470992391368, 34.574909013914066], [-77.42500254858521, 34.574880317438144], [-77.4252709921303, 34.57485399141058], [-77.42539653403608, 34.574869423367765], [-77.42577248574139, 34.57505132529597], [-77.42579057484491, 34.575057637026575], [-77.42579863455538, 34.57505835293973], [-77.42580467203209, 34.575066165866275], [-77.42580140188585, 34.57507830014411], [-77.4258170017314, 34.575488971782356], [-77.42579070213434, 34.57551343483338], [-77.42551907352137, 34.575663847682684], [-77.42539676140761, 34.575697620530306], [-77.42524042318871, 34.575740788342586], [-77.42518022596816, 34.57577221178452], [-77.4250028160312, 34.575871277394086], [-77.42490493434326, 34.575939864703145], [-77.42482695924654, 34.576056635291934], [-77.42482290145507, 34.57607557110895], [-77.4248484390454, 34.57621999666519], [-77.42488571651246, 34.57626043786322], [-77.42500295577608, 34.57638804771611], [-77.42504045701243, 34.576409963086455], [-77.42508861671536, 34.57644341006663], [-77.42526647763492, 34.57655836089771], [-77.42539702150003, 34.57664273011334], [-77.42549374211062, 34.576705239709575], [-77.4256468299937, 34.57678732775888], [-77.42575145673835, 34.57681489230408], [-77.42579106797726, 34.57682038244178], [-77.42584487601215, 34.576816693582614], [-77.42598806096271, 34.576800072532315], [-77.42615589932768, 34.57674516530111], [-77.42618504168937, 34.576737149195246], [-77.4262950821338, 34.57669364286456], [-77.42648250871676, 34.57656258458936], [-77.42657896831565, 34.57649427908251], [-77.42677823023604, 34.57640905481565], [-77.42707187916716, 34.576263456325634], [-77.42736683866822, 34.576089073102665], [-77.42770213189814, 34.576128967268055], [-77.42783521959413, 34.57612661122086], [-77.42815481057572, 34.576039191075395], [-77.4284947572583, 34.576009361697274], [-77.42894277356939, 34.575965186632025], [-77.42949791863, 34.5759797886935], [-77.42973074905916, 34.57593463399611], [-77.42994241731631, 34.575938357505535], [-77.43040089539579, 34.57610018935075], [-77.42997393785741, 34.576423809152175], [-77.42973105552755, 34.576870935828744], [-77.4296651468943, 34.577055724671716], [-77.42967978456312, 34.577108944512936], [-77.42973117083105, 34.57722275708786], [-77.4297929728323, 34.57739529783174], [-77.42988443474565, 34.577448616317305], [-77.43004088771889, 34.57751693107456], [-77.43012527955867, 34.577553780224676], [-77.43034875876299, 34.57762230155352], [-77.4305193178424, 34.57766699872362], [-77.43060865232398, 34.577672248789966], [-77.43080603914395, 34.57773998329084], [-77.43100034728467, 34.57804283802031], [-77.43094875209121, 34.57818193806988], [-77.43060477388056, 34.57861825864958], [-77.43055488763554, 34.578663437965645], [-77.43051966574433, 34.57869595611386], [-77.43047076256039, 34.57869032786155], [-77.43019389288658, 34.57867765343898], [-77.4301345683657, 34.57867662246286], [-77.43012565279048, 34.57867352305026], [-77.4298493856299, 34.57860054814507], [-77.42973160108312, 34.57853267802769], [-77.42944389972796, 34.57847604968117], [-77.4292521578677, 34.57848124239964], [-77.4290659671273, 34.57841610302026], [-77.42894354815908, 34.5783976418285], [-77.42889371321922, 34.57838730120524], [-77.42874653743587, 34.57837065106326], [-77.4286654072868, 34.57834912671544], [-77.42863884048822, 34.57836178666466], [-77.4286029856424, 34.578376875822165], [-77.4286293965707, 34.57839315276428], [-77.42865735653231, 34.578475164344056], [-77.42861484328166, 34.578551625143646], [-77.42867810111863, 34.57875834129873], [-77.42877079661169, 34.578883356834915], [-77.42880066950711, 34.57903322586874], [-77.4287384357304, 34.579515795557555], [-77.42854995814385, 34.57971243062741], [-77.42850059673933, 34.57977158962472], [-77.4284799971842, 34.57985000408203], [-77.42844264144365, 34.58008878240904], [-77.42847217468973, 34.580200286721556], [-77.42851227538168, 34.58023527547144], [-77.42855017662556, 34.58040406025252], [-77.42860063232551, 34.58055198843351], [-77.42859730974538, 34.580606789350654], [-77.42863097162872, 34.58068889117338], [-77.42870200836198, 34.580852785581946], [-77.42883966734709, 34.58088354937752], [-77.42894433375776, 34.58085044890866], [-77.42913907959655, 34.58073837808254], [-77.42933829789051, 34.5806916936991], [-77.429585423221, 34.580622229143586], [-77.4297322781654, 34.58058652145984], [-77.42996420917366, 34.58065911636925], [-77.43012632642575, 34.580687358925445], [-77.43023955182554, 34.58067198570873], [-77.4303459979632, 34.58077861649935], [-77.43052039320403, 34.580840059593704], [-77.43077521630362, 34.58086657431933], [-77.43114505456666, 34.58091162556563], [-77.43130842576079, 34.58084460806339], [-77.43149312307006, 34.58083835036699], [-77.43188149915561, 34.58074963673404], [-77.43209640218899, 34.580693621194044], [-77.43246700224724, 34.58047200339474], [-77.4324809890226, 34.58045991357234], [-77.43251683435815, 34.580436230316316], [-77.43288423354556, 34.580156876258314], [-77.4329815224017, 34.58007789744198], [-77.43309720047009, 34.57995630256461], [-77.4332058403416, 34.57986268928827], [-77.43327805707591, 34.579651459096084], [-77.43332192964587, 34.579546540345184], [-77.43333073953701, 34.579441090333425], [-77.43315948884921, 34.57909811362343], [-77.43337524088619, 34.57853715147654], [-77.43317618108509, 34.57824651545172], [-77.43275929370398, 34.577591231381845], [-77.43262761793272, 34.57747664359416], [-77.43241575659448, 34.57700366317542], [-77.43223886334022, 34.576683664452005], [-77.43256580258705, 34.57612878319493], [-77.43282834231908, 34.57569078863902], [-77.43288252200338, 34.5754828079843], [-77.43299802245872, 34.57487554298204], [-77.43296752850614, 34.57478806902942], [-77.43288215621446, 34.57447803492231], [-77.43280383282678, 34.57413871104369], [-77.4327791303342, 34.574058007547805], [-77.432782197936, 34.573950046055465], [-77.43288181153311, 34.57352937605413], [-77.43292669706497, 34.57323597719715], [-77.43318929136402, 34.573149522005934], [-77.43348798749776, 34.572910671225685], [-77.43366943210428, 34.57261426175129], [-77.43382092720017, 34.57289503902612], [-77.433921717501, 34.57304362212809], [-77.43431899327098, 34.57313553717771], [-77.43445759494351, 34.57316760399018], [-77.43501058291378, 34.57313939008734], [-77.43524563495036, 34.57337967335086], [-77.43632822634098, 34.57322721959232], [-77.43831412793216, 34.57401670246284], [-77.43839773259558, 34.57399787350524], [-77.4384865780989, 34.5739861124502], [-77.44154927019838, 34.57331829484268], [-77.44306954966967, 34.57517821295778], [-77.44404217464046, 34.57667498028544], [-77.44509146233825, 34.57950266566362], [-77.44556486308343, 34.58077822557444], [-77.44692114772633, 34.58305204910124], [-77.44470721079273, 34.585348037314006], [-77.44428901095878, 34.58637843762487], [-77.44324250391007, 34.586981030337725], [-77.44313194072186, 34.58709976745417], [-77.44298110310788, 34.5871814179358], [-77.44215132060631, 34.58778024024602], [-77.44155617547334, 34.58795001271052], [-77.44113384869098, 34.588135224811055], [-77.44155637267137, 34.58836260337267], [-77.4416877776605, 34.588762913779924], [-77.44177838604713, 34.58889119331254], [-77.44181664960459, 34.589165694673135], [-77.44168227921907, 34.58975428579117], [-77.44167743681204, 34.58988464790145], [-77.44155710288797, 34.58988839188255], [-77.44138939900233, 34.58997739276052], [-77.44093550385581, 34.590041633955025], [-77.44094608472282, 34.59051945612216], [-77.44116327160445, 34.59036217830027], [-77.44130989346968, 34.590390710993006], [-77.4413895806668, 34.59040198550662], [-77.44155732240858, 34.59034633297627], [-77.44182644606802, 34.590292617995146], [-77.44205880270457, 34.590240224546534], [-77.44234535087747, 34.59016646160905], [-77.44256830073468, 34.590235132018506], [-77.44312465349557, 34.59038523884453], [-77.44313357335895, 34.590383332214294], [-77.44314046139786, 34.59038514348461], [-77.4431422063088, 34.59039231204552], [-77.44365909972831, 34.59060060103185], [-77.44392185373866, 34.5907064797745], [-77.44423743281153, 34.59074306140343], [-77.44471041359691, 34.59155769681843], [-77.44519487750243, 34.59179376822821], [-77.4447108666463, 34.59243115472802], [-77.44422290125625, 34.59310661898782], [-77.44349992017159, 34.5933442095723], [-77.44313512716559, 34.59349307170808], [-77.44287450300871, 34.593546965013175], [-77.44239989339108, 34.59383962551472], [-77.44234715913133, 34.59385498563138], [-77.44229183752975, 34.593852476361874], [-77.44223361054267, 34.59392050300828], [-77.44195331349769, 34.594325388112196], [-77.44192068800243, 34.59435519035679], [-77.44189946063833, 34.59445151762704], [-77.44182252620537, 34.594829150828964], [-77.44203479761553, 34.595135677516154], [-77.44234770711427, 34.59496857874524], [-77.44255495097089, 34.59494651995249], [-77.44313593481388, 34.59510379430844], [-77.44330224723302, 34.59528522832583], [-77.44348805280671, 34.59538798904071], [-77.44381087245286, 34.59557757294232], [-77.44417208019196, 34.59585096832919], [-77.44419225197947, 34.59592567028232], [-77.44373601665067, 34.596317752649405], [-77.44344632415604, 34.59662187631451], [-77.44337176787664, 34.59680967486525], [-77.4433217196775, 34.59691242488823], [-77.44311381180351, 34.59733880377741], [-77.44310720292526, 34.59735223410881], [-77.44307516762949, 34.597721233467304], [-77.44322630032926, 34.597997597663074], [-77.44303607168567, 34.59847087894045], [-77.4434074564539, 34.59881363359081], [-77.4435671499009, 34.599057939525096], [-77.4442547951204, 34.59957604879871], [-77.44427343023463, 34.599583347554585], [-77.44522824533277, 34.59929162251362], [-77.44525798210235, 34.59931426608351], [-77.44528860713808, 34.59951216625275], [-77.44440552398737, 34.59964918644117], [-77.44535763332007, 34.60002435275483], [-77.44536991250784, 34.60007122220802], [-77.44545729630336, 34.60012850147564], [-77.44614439317169, 34.600538489151354], [-77.44642848602295, 34.600605453104315], [-77.44668057162157, 34.600756781565266], [-77.4469778932069, 34.600847970563436], [-77.44738963070955, 34.60069359744706], [-77.44764553853942, 34.60044132931132], [-77.44800260880123, 34.60050928811789], [-77.44817928255051, 34.60047087586956], [-77.44836907091567, 34.60051834260839], [-77.44850848637195, 34.60046575606514], [-77.44868697945888, 34.60040526624413], [-77.44885517777931, 34.60031926608963], [-77.44883079799237, 34.6002688509172], [-77.44877671628349, 34.600157015632746], [-77.44865052335868, 34.59989605879297], [-77.44861979444799, 34.59983251472372], [-77.44856598364389, 34.599820389885984], [-77.44832711736998, 34.5985440644737], [-77.44979729967073, 34.59831467897733], [-77.45016611606304, 34.59812773645495], [-77.45055817414918, 34.59808605105065], [-77.45183942069824, 34.59764608495431], [-77.45214817966968, 34.59768753966767], [-77.45247353059554, 34.597784984919954], [-77.45270356729525, 34.59779618493384], [-77.45280811875676, 34.597832991862106], [-77.45307598967374, 34.59782294804747], [-77.45320247521494, 34.597807903120696], [-77.4532337695056, 34.59781283328649], [-77.45330741205268, 34.59780933887238], [-77.45347809493542, 34.59774527501797], [-77.45350756143837, 34.59769983915032], [-77.45354659921895, 34.5975833418968], [-77.45362409825943, 34.597318605875515], [-77.45362902472417, 34.59730248956132], [-77.45363610770502, 34.59727758117606], [-77.45360304397312, 34.59693407764263], [-77.45357714130031, 34.59666494092196], [-77.4535338602089, 34.5962152904976], [-77.45372616538685, 34.59577153560093], [-77.45441049564936, 34.595965213744215], [-77.45467381871254, 34.596008452969286], [-77.45484071729925, 34.59600267951013], [-77.45522653135393, 34.59600333100302], [-77.4553693562697, 34.59601365276033], [-77.4556374231606, 34.59561519777578], [-77.45570212180351, 34.59555036372084], [-77.45574962205205, 34.59548274364817], [-77.4560156248694, 34.59513803759068], [-77.45600085409372, 34.59503551026535], [-77.45613395417533, 34.59496670158589], [-77.45647955407378, 34.594636417612854], [-77.45650528545082, 34.59459263558406], [-77.45641938129823, 34.594330730442735], [-77.45637427265528, 34.594297189467916], [-77.4561937625013, 34.5941494689649], [-77.45602693109083, 34.594027019034485], [-77.4556557836063, 34.59367598992111], [-77.45540934588972, 34.59346468374206], [-77.45606123040938, 34.59278142657723], [-77.4565255892884, 34.59274158781096], [-77.45703718486301, 34.59250650533711], [-77.45754458946125, 34.592497240694186], [-77.45812677963347, 34.59264661893993], [-77.4581777990528, 34.59263717549482], [-77.45824297355801, 34.59265624005759], [-77.45817199320443, 34.59269831197733], [-77.4581779236428, 34.59283339147555], [-77.45825650914358, 34.593347263329335], [-77.4582474312615, 34.593393501052695], [-77.45827735064252, 34.5934298598819], [-77.4583474464167, 34.59373423164569], [-77.4584762878148, 34.59392297182174], [-77.45854251101632, 34.594019982348755], [-77.45856769625242, 34.59404065748133], [-77.45868458746581, 34.594116425845556], [-77.4590316931215, 34.59433609386198], [-77.45939588365266, 34.594542892774726], [-77.45955863784297, 34.594606017544045], [-77.45974159609368, 34.59470462176527], [-77.45981815819869, 34.594745814666915], [-77.45986698676391, 34.59477774423341], [-77.45991934877586, 34.59485814305337], [-77.46000787999553, 34.59497098814528], [-77.46019219945369, 34.59495360794306], [-77.46031308135207, 34.59487205619095], [-77.4604070772561, 34.59471910250998], [-77.46072401577095, 34.59453320743157], [-77.46073688790423, 34.59452480995335], [-77.46074215719389, 34.59451949379322], [-77.46101573561167, 34.59431268576597], [-77.46145407517344, 34.59411647758067], [-77.46165279200095, 34.59400603274392], [-77.46176539065885, 34.593955598787055], [-77.46211500294841, 34.59377448627945], [-77.46217836877081, 34.593748948066434], [-77.46239621592238, 34.59355693545557], [-77.46250642503335, 34.593284485809065], [-77.46285669792752, 34.59331521391506], [-77.46344816804442, 34.59288467819263], [-77.46552658240375, 34.59341336456066], [-77.46566880062707, 34.59331595900812], [-77.46577034820653, 34.593462457434235], [-77.46574380073234, 34.593589756142016], [-77.46574377608255, 34.595966767203855], [-77.46574376329787, 34.596424237153215], [-77.46574375067077, 34.59709975567869], [-77.46591911442664, 34.598505523643965], [-77.46331881725257, 34.60006607455694], [-77.46331368649568, 34.6000698682717], [-77.46330794167318, 34.60006953972936], [-77.46330437365448, 34.6000745302441], [-77.46167944244522, 34.60178003918341], [-77.46152039903032, 34.60192166403298], [-77.46065974567989, 34.60331849323028], [-77.46031229529919, 34.60388240157761], [-77.46025078146212, 34.60395498460232], [-77.46019969985913, 34.60405451543804], [-77.45927752277572, 34.60609198689248], [-77.45922620408037, 34.607146388322], [-77.45939147050541, 34.608527588457406], [-77.45939770663102, 34.60861152340999], [-77.45950120599187, 34.610022078916955], [-77.4595650335395, 34.61114753498691], [-77.45958363104234, 34.61147565294325], [-77.45960880407307, 34.611919709431675], [-77.45966604060753, 34.61292920482563], [-77.45970835449091, 34.61367514493614], [-77.45974847164015, 34.614382774698484], [-77.45987393135954, 34.61525342045907], [-77.46029416482754, 34.61570417042649], [-77.4608757673237, 34.616560951225466], [-77.46041794905591, 34.61714594583947], [-77.45970191007143, 34.617591289372875], [-77.45898956533742, 34.618378681035246], [-77.45825264794405, 34.619240664735756], [-77.45678903954263, 34.62231290622541], [-77.45661962368702, 34.62250471749533], [-77.45673973127914, 34.62262633903611], [-77.45641789235874, 34.62313737245699], [-77.45514882359002, 34.62603417571315], [-77.45451493057541, 34.62672355339697], [-77.45248415262822, 34.62794686365492], [-77.45034049014451, 34.62948551491159], [-77.44839168365465, 34.629536735173694], [-77.44622851359779, 34.62983156862441], [-77.44484372144181, 34.62997197371866], [-77.44415771369094, 34.62916815404141], [-77.44312763136259, 34.62769508447688], [-77.44223074000524, 34.626763486983315], [-77.44200294437331, 34.62613004190773], [-77.44133175187369, 34.62554277424652], [-77.44140758641362, 34.62502923575788], [-77.44070358693942, 34.625016414889004], [-77.4399613006842, 34.62534835901268], [-77.43943990771022, 34.62560577867036], [-77.43884240072136, 34.6259006741739], [-77.43876077413155, 34.626167109748735], [-77.43794267277897, 34.62645561322072], [-77.43775826916198, 34.626435724022116], [-77.43715549167007, 34.626733204462894], [-77.43702387742827, 34.62679815838765], [-77.43698945195888, 34.626815147903315], [-77.4368942532189, 34.62799165950512], [-77.43695761810494, 34.62826657798094], [-77.43689999777061, 34.62871000968077], [-77.43775434308377, 34.630770352549284], [-77.4375184584903, 34.63106067895349], [-77.43575373353875, 34.633767588964815], [-77.43512670398172, 34.63469628502628], [-77.43508808531256, 34.634792821988114], [-77.43501576277956, 34.63497362513888], [-77.43282310700796, 34.63734872546483], [-77.43174232057001, 34.638384527507974], [-77.42964144668257, 34.63625932874636], [-77.42850514573578, 34.63531169406991], [-77.4266065498835, 34.63499030713274], [-77.42513317204087, 34.634589911133915], [-77.42371532541256, 34.63385124120902], [-77.42218282692198, 34.63419747090531], [-77.42050138452551, 34.63464312479836], [-77.41841411325159, 34.63579908290283], [-77.4155935448146, 34.637880851647665], [-77.41374422846252, 34.64078759372536], [-77.41357567919658, 34.64213033696533], [-77.41210288551201, 34.64348812472033], [-77.40879196065234, 34.645411527714856], [-77.40809692592093, 34.64561665718239], [-77.40433853009974, 34.64586580068806], [-77.40084036352023, 34.64716693437122], [-77.40039039938361, 34.647318079488024], [-77.40015002146058, 34.64800978444758], [-77.39875746553724, 34.65096154457092], [-77.39878173991997, 34.651818671088165], [-77.40020298868144, 34.655255013695296], [-77.40092733729104, 34.65625122477697], [-77.40097388820703, 34.65754256216181], [-77.40101428261976, 34.659180169844596], [-77.40221145108171, 34.66011311636133], [-77.4030887298728, 34.661543430658455], [-77.40462316091995, 34.66229692723656], [-77.40629379097386, 34.66243960946706], [-77.40893534513745, 34.66267747840994], [-77.40908883830642, 34.662789285344935], [-77.40911528918598, 34.662870924751836], [-77.41026883902899, 34.66489726422155], [-77.41069526343252, 34.66528571421449], [-77.41066641279434, 34.66589186897163], [-77.41012666790597, 34.66622042459169], [-77.41014651476632, 34.66627863966127], [-77.4101522230576, 34.66629699385694], [-77.41024266707, 34.666410210574185], [-77.41076721926049, 34.666385739280756], [-77.4116592489635, 34.666540138003626], [-77.4119710776895, 34.666653506477495], [-77.41209171701965, 34.66644276852992], [-77.41213917312572, 34.66640734297786], [-77.412458043902, 34.66626076368415], [-77.4139241304546, 34.66553106130764], [-77.41438150555913, 34.665713167123016], [-77.41497352870778, 34.666464100320695], [-77.41533242379238, 34.66691930944786], [-77.41751615274195, 34.66701517158492], [-77.41894101251505, 34.66848586471676], [-77.41921005139064, 34.6686026553814], [-77.41930418552109, 34.668742255397746], [-77.41929935596728, 34.66891308420907], [-77.41927686345015, 34.66921957404868], [-77.41883783963432, 34.66949168235001], [-77.41729771339223, 34.67196663025018], [-77.41693034685547, 34.67255693377463], [-77.41528324749277, 34.67395499262619], [-77.41516150119423, 34.6741743989387], [-77.41512158324387, 34.67439167899351], [-77.41496577115694, 34.67587287957613], [-77.41551527416118, 34.67653461611111], [-77.41605403435071, 34.677204212649826], [-77.41644843499661, 34.67774634681576], [-77.41767816095091, 34.67857325639975], [-77.41923556776656, 34.67944753716152], [-77.42082406642032, 34.680339228234644], [-77.4227642510277, 34.681545982220904], [-77.4229774267278, 34.68175506050081], [-77.42348157323266, 34.682080049255134], [-77.42414402624331, 34.68215233365045], [-77.42443468141485, 34.68214268821578], [-77.42528756844207, 34.68218986806284], [-77.42539217484844, 34.68221248450664], [-77.42540837010422, 34.68221186740668], [-77.42545475958414, 34.682208680777435], [-77.4259998765173, 34.68238215628995], [-77.42615007926862, 34.6819559218793], [-77.42620051121418, 34.68195012727468], [-77.42644218882822, 34.68179659045505], [-77.42657470536366, 34.68152193646271], [-77.42673510573108, 34.68141668840858], [-77.42695846612901, 34.681283880330675], [-77.42722803481321, 34.6814686201582], [-77.42756920576916, 34.68138768139959], [-77.42795182453625, 34.68200362024579], [-77.42794434233002, 34.6820624262659], [-77.42787621104401, 34.68225670955053], [-77.42793774273488, 34.682328534252754], [-77.42801553323275, 34.682305439777515], [-77.4280654160346, 34.68209605233693], [-77.42815706512249, 34.682075406399605], [-77.4284681047033, 34.68200658015563], [-77.42864470197475, 34.68209981616043], [-77.42877842705704, 34.68201320011805], [-77.42890233708837, 34.68196868258375], [-77.42901957447017, 34.68191151354683], [-77.42915872027524, 34.681866675802155], [-77.42920003235007, 34.681707547478155], [-77.42945554715227, 34.681512028070124], [-77.42953346938253, 34.68150485236626], [-77.42967765226328, 34.68148910610954], [-77.42979259330662, 34.681454446153005], [-77.42988469297495, 34.68133123959461], [-77.42996487821159, 34.681219118032374], [-77.4299590796754, 34.68102846805671], [-77.43013671455022, 34.68099543632941], [-77.43027364291528, 34.68089913436111], [-77.43043882235709, 34.68063719214386], [-77.43068734816659, 34.6804000107157], [-77.43082247703646, 34.68021230901168], [-77.43119869273718, 34.67991650448177], [-77.43127148406032, 34.67985937301989], [-77.43133504294099, 34.67983251281336], [-77.43162021116169, 34.679681691524614], [-77.43171081700036, 34.6795976024337], [-77.43183586871908, 34.679448610219694], [-77.43171315444741, 34.679245632879336], [-77.43163669297313, 34.67918215462542], [-77.43144356133104, 34.67907009780801], [-77.43121570286279, 34.678911491181275], [-77.43108476589843, 34.67880626043154], [-77.43090522576964, 34.678716098199885], [-77.43068747603255, 34.678487894572775], [-77.43060416178224, 34.67827397707964], [-77.43060401060656, 34.67789963556929], [-77.43062098199766, 34.67782057139922], [-77.4305785699201, 34.67763044164346], [-77.43045028947137, 34.67744543318739], [-77.43025071410202, 34.677216996163935], [-77.42985779584794, 34.67679997000074], [-77.43016915234571, 34.67506565646423], [-77.4302763964375, 34.67498970853965], [-77.43079228117482, 34.674624367722544], [-77.43144573913744, 34.6741616018035], [-77.43167014977456, 34.674257926355295], [-77.4318591746638, 34.67442518897735], [-77.43259812037736, 34.67507906235184], [-77.43264575284535, 34.67563623267636], [-77.43266180997168, 34.67582404481466], [-77.43269419554103, 34.67620285487305], [-77.43271107820144, 34.676400337976254], [-77.43271944849886, 34.67649824924281], [-77.43277456717576, 34.67668402208583], [-77.43286824327286, 34.67701436688616], [-77.43258355363415, 34.677344329753936], [-77.43252117082952, 34.677415599414616], [-77.43247400984474, 34.6774355470643], [-77.43235035707599, 34.677545096096935], [-77.43224581661892, 34.67763526837087], [-77.43223422436989, 34.67769427367074], [-77.43216933752602, 34.67766874379633], [-77.43205953660116, 34.67766649055685], [-77.43198867893733, 34.677666727346505], [-77.43196445645043, 34.677706178706316], [-77.43201661457984, 34.67771240120684], [-77.43213756861434, 34.67777856127052], [-77.43224303300556, 34.677813089949275], [-77.4323212589217, 34.677836571217554], [-77.43243850252419, 34.677845745294384], [-77.43262726398011, 34.677875898126025], [-77.4328264342477, 34.677914686818355], [-77.43305019393398, 34.677946156373366], [-77.43338263967001, 34.67800697369962], [-77.43365765769435, 34.67806118425113], [-77.4338408259691, 34.67807751364375], [-77.4341253491545, 34.67801308076176], [-77.4341324761342, 34.677693965735074], [-77.4342939226155, 34.677512978541536], [-77.43435136499201, 34.677416599483884], [-77.43451457843355, 34.67731381688233], [-77.43466257164052, 34.67717759734137], [-77.43476580469986, 34.67711895196055], [-77.43494026091707, 34.67688379881912], [-77.43528458336797, 34.676866882957675], [-77.43555015088208, 34.677102159977466], [-77.43579108724838, 34.677330933005024], [-77.43595695151005, 34.677535518134825], [-77.43609943443957, 34.67776564952072], [-77.43623388376122, 34.67801526079481], [-77.43629261755939, 34.67821195556189], [-77.43626790052762, 34.67830648711167], [-77.4362524817642, 34.678477445787294], [-77.43607019856753, 34.67858117792226], [-77.43598367991639, 34.67858960922253], [-77.43579368415445, 34.67859652705938], [-77.43552928520205, 34.67859453348599], [-77.43542398568094, 34.67860010452781], [-77.43506149219556, 34.67857755113996], [-77.43473512884383, 34.67876645211912], [-77.43472045872531, 34.67876780126322], [-77.43471697186499, 34.67877904125743], [-77.43472638128377, 34.678796693471334], [-77.43486704155313, 34.679172902601834], [-77.43509705083059, 34.67938346078918], [-77.4351732134962, 34.67946707310064], [-77.43519778286205, 34.67948123199209], [-77.43544331215679, 34.67957564090096], [-77.43546039775347, 34.67958181307963], [-77.43572415860453, 34.679660878627324], [-77.43575520905193, 34.67967018639172], [-77.43578971254286, 34.67968052914076], [-77.43614019869844, 34.679835808664706], [-77.43631125191622, 34.67990920912588], [-77.43632409603576, 34.67991862667269], [-77.43635155711179, 34.67993876148905], [-77.43685405239331, 34.680085439857834], [-77.43690941801093, 34.68010296047366], [-77.43691166315003, 34.68010249087851], [-77.43692105866607, 34.680101040014385], [-77.43757789171863, 34.68001438801912], [-77.43790997161543, 34.68024307668066], [-77.43811170199285, 34.68038412563737], [-77.43817067538572, 34.680472170082545], [-77.43827211213573, 34.6805813105365], [-77.43858501429578, 34.68096305677196], [-77.43877363335017, 34.68111325590194], [-77.43893767509013, 34.68117527918787], [-77.43917521255943, 34.681137852707145], [-77.43934973069118, 34.681101112853526], [-77.43971163992926, 34.68108466520854], [-77.43983220667221, 34.68108168700722], [-77.4403942201155, 34.68131300104502], [-77.44041460768972, 34.68132098932555], [-77.4404277197495, 34.68136775746409], [-77.4405925384564, 34.68195171337586], [-77.4406155536538, 34.68212990764799], [-77.44049048197431, 34.682965727720116], [-77.44048390013532, 34.68303180759499], [-77.4404836887725, 34.683077771174425], [-77.4403221835612, 34.6835343043104], [-77.44032978701196, 34.68358842764814], [-77.44035132344621, 34.683717930290705], [-77.44036106337711, 34.683798573316274], [-77.44037206337747, 34.68383126417618], [-77.44046730087149, 34.68397742428822], [-77.44079512735723, 34.684211354779706], [-77.44081146750688, 34.68398489563635], [-77.44083819135159, 34.68390789928685], [-77.44086318432164, 34.683812151291626], [-77.44087297106684, 34.68372688026147], [-77.44086837826788, 34.68358339640243], [-77.44087598076933, 34.683360402338195], [-77.44063446370933, 34.6830844506325], [-77.44062211987323, 34.68301997862858], [-77.44095682747746, 34.68223259580542], [-77.44106775885344, 34.682117870765545], [-77.44139252946039, 34.68180552704941], [-77.4415313765293, 34.68167633534336], [-77.44200270751305, 34.68132668916583], [-77.44241401644642, 34.68101660084911], [-77.44281865503658, 34.68078969263844], [-77.44359923770487, 34.6808842053745], [-77.44367324918511, 34.68109356612207], [-77.44373373771968, 34.681372870667374], [-77.44363417040132, 34.681374952092796], [-77.44358356419562, 34.68140373202236], [-77.44321261132173, 34.68143359287387], [-77.44272672221541, 34.681579826613074], [-77.44299491428553, 34.68202934319432], [-77.4429779230115, 34.682226687061245], [-77.44319061341422, 34.68276268332698], [-77.44323020748855, 34.68282392810719], [-77.44365608680178, 34.68302281439303], [-77.44408035809289, 34.68336180234836], [-77.44421849117386, 34.68363985508152], [-77.44445158433753, 34.68345854960131], [-77.44455178083138, 34.68333595538832], [-77.44501773615278, 34.68309173388066], [-77.4451104916112, 34.683040168911106], [-77.44516702818488, 34.68299201738354], [-77.44537558040415, 34.68296215244889], [-77.44555007833202, 34.6830109718434], [-77.44567367778359, 34.6830392086948], [-77.44602854111287, 34.68304530707377], [-77.44633119614808, 34.68298122279164], [-77.44647362146843, 34.68288976394172], [-77.44677715227154, 34.68277353568348], [-77.4470359745246, 34.682759763962146], [-77.44734637111029, 34.68263583744246], [-77.44756648588267, 34.68256831939861], [-77.44774818369193, 34.682512584690826], [-77.44835654185466, 34.682429945511], [-77.44839440366664, 34.682426158335744], [-77.44841857827929, 34.68241002676251], [-77.44861443718894, 34.68236146677698], [-77.44924574607384, 34.68232227508719], [-77.44966725527752, 34.68252352075142], [-77.44971276385706, 34.6827956822868], [-77.44982582990886, 34.68294354893835], [-77.45010027867241, 34.68324208935048], [-77.45036481007384, 34.6834034249217], [-77.45037232373092, 34.6834092750556], [-77.45037890587622, 34.68341036519063], [-77.45067144990355, 34.68348277851859], [-77.45086497576033, 34.68347320009578], [-77.45112262866546, 34.68339683702423], [-77.45125353240417, 34.68336059890575], [-77.45138683792351, 34.68322455997384], [-77.45160255671625, 34.68318339814144], [-77.45209968106728, 34.68297512384338], [-77.45243668469878, 34.683443907828604], [-77.45259064092762, 34.683493323468134], [-77.45273974726624, 34.68354656960311], [-77.45287974823611, 34.68360149160791], [-77.45309233843692, 34.68361653406636], [-77.4531965621052, 34.68361380292416], [-77.45323722992259, 34.68361194892134], [-77.45329647675904, 34.68359764430392], [-77.45341673019068, 34.68353149963711], [-77.45347127437788, 34.68345828637432], [-77.45349006467342, 34.683385803401215], [-77.45334117890403, 34.6831134597058], [-77.45331407974376, 34.68307750114154], [-77.45329038757168, 34.68303651044857], [-77.45329058055816, 34.682951624455775], [-77.4531400654839, 34.682424963864065], [-77.45311134601505, 34.682269302754044], [-77.45310046648142, 34.682131620365794], [-77.45310329170542, 34.681898094465694], [-77.45310541086593, 34.68185384539415], [-77.4530858237161, 34.68178011737068], [-77.45285774406494, 34.68148234850652], [-77.45264745536416, 34.68107999176067], [-77.45241036044982, 34.68077632245157], [-77.45167199390778, 34.68023479803982], [-77.45164742565385, 34.68020624767097], [-77.45163524688377, 34.680191655442556], [-77.45144528771293, 34.67959253200232], [-77.45143190967836, 34.68015087643237], [-77.45126034132778, 34.68036372424983], [-77.45090236595182, 34.68054416104237], [-77.45079205799475, 34.68055928048243], [-77.45021619306374, 34.680624558800375], [-77.44988137461634, 34.680370781555844], [-77.44909533645186, 34.680452133040916], [-77.44898755244913, 34.680441856667784], [-77.44895397660919, 34.680433995006005], [-77.44888740787229, 34.68037944707801], [-77.44901051221112, 34.680362433172654], [-77.44961258859914, 34.67993153291734], [-77.45008671292172, 34.6796806529816], [-77.4510578528222, 34.678897231948284], [-77.45115805823382, 34.678816397081114], [-77.45121905976427, 34.678767186450315], [-77.4514699079019, 34.678564821935545], [-77.45165915358804, 34.6783721819978], [-77.45187647069626, 34.67806805936978], [-77.4519751786725, 34.67789726641579], [-77.45199036995498, 34.67786858444461], [-77.45200172225906, 34.67778340811141], [-77.45200672146139, 34.677254924611695], [-77.4520893116646, 34.67712621342574], [-77.45218361329452, 34.67677833776064], [-77.45220273447687, 34.67670406755156], [-77.45205576516517, 34.6763972504823], [-77.45217814886001, 34.67587058057319], [-77.4521709326312, 34.67562590088659], [-77.45222141355295, 34.67547184407987], [-77.45398252664089, 34.67363248808811], [-77.45401310839843, 34.67360448537429], [-77.45403954310044, 34.673616236149016], [-77.45404685565234, 34.673632456189054], [-77.45535647396298, 34.67471790004688], [-77.455808363826, 34.67509242940443], [-77.45660503741365, 34.675765370606975], [-77.4566702595097, 34.67582046325424], [-77.45669131626326, 34.67584241653432], [-77.45674385266051, 34.67705261210571], [-77.45675880939957, 34.67727228743016], [-77.45656517147034, 34.67782554360883], [-77.45682029883349, 34.67831805341009], [-77.4569460268579, 34.67869598714275], [-77.45710864837937, 34.678990405059565], [-77.45756531968752, 34.67981715754522], [-77.45772608444652, 34.67995069581952], [-77.45778631214708, 34.679991310022366], [-77.45789378790609, 34.68008299755138], [-77.45907890539705, 34.68104212484693], [-77.45934774412851, 34.68174128920341], [-77.46009699779333, 34.68317931811139], [-77.45982700602679, 34.68392890311369], [-77.45917227333548, 34.686581676672944], [-77.45900265835706, 34.68726881445456], [-77.4587803187745, 34.68793761688903], [-77.45814349251911, 34.690880306275794], [-77.45746501118613, 34.691203413405795], [-77.45688472289999, 34.69230080076707], [-77.45843404237345, 34.69209701956258], [-77.45910018867272, 34.69244314301986], [-77.46191811227496, 34.69377025374689], [-77.46286434977388, 34.69450601252729], [-77.46448314561074, 34.69627056117914], [-77.46478935542044, 34.696715054193525], [-77.46621552625494, 34.698732496857154], [-77.46642257645746, 34.699032174330284], [-77.46660361687704, 34.6993077188029], [-77.46702343718937, 34.699405544496194], [-77.46889753374411, 34.699784260583705], [-77.46902836671815, 34.69978749988142], [-77.46935923305945, 34.69983058862157], [-77.47094170825892, 34.69982604819106], [-77.47156947535757, 34.69986445692836], [-77.47239125938319, 34.70011073244993], [-77.47419731744239, 34.70152027552736], [-77.4754676396275, 34.70239737941557], [-77.474255779109, 34.70601227157815], [-77.47427645672494, 34.70646680815869], [-77.47424142721566, 34.70824305258165], [-77.47419816566165, 34.708513584771524], [-77.47485702981426, 34.70920738906919], [-77.47515180317474, 34.709649749091184], [-77.47522908187734, 34.709640695467264], [-77.47642362846372, 34.709684284744725], [-77.47729951882312, 34.71020615276259], [-77.47748668273474, 34.708697606443806], [-77.47748669802566, 34.707140467607715], [-77.47748665626355, 34.70600344525822], [-77.4774105015742, 34.705157580490535], [-77.4774866228233, 34.70453473242418], [-77.47871877014941, 34.70461101730427], [-77.48042174595446, 34.7047164432889], [-77.4809558222307, 34.704221396988515], [-77.48529571750902, 34.705395440310376], [-77.4853449970079, 34.70540964062011], [-77.48534806575336, 34.70541094246236], [-77.4853505701015, 34.70541211189803], [-77.49025252656104, 34.70618115429024], [-77.49153563252202, 34.70639955436018], [-77.49267688273778, 34.70666290728248], [-77.49353878545145, 34.70683111635973], [-77.49516179021404, 34.706934810827526], [-77.49709723455643, 34.70666294261119], [-77.49984525681987, 34.70649872980725], [-77.50042036854767, 34.70647779847534], [-77.50068646384919, 34.706544927363616], [-77.50077998437098, 34.70632860967153], [-77.50350075788575, 34.70516256957951], [-77.50365518575559, 34.705096381672796], [-77.50391117793446, 34.70479911929058], [-77.50540890950572, 34.70347280821423], [-77.50580637087432, 34.70295041912604], [-77.50665790782553, 34.70167316665665], [-77.50719244451986, 34.70077259085805], [-77.50766702857766, 34.70001256735976], [-77.50797215526644, 34.69989628285119], [-77.50887296976934, 34.699872218951754], [-77.50979754817385, 34.70045237529919], [-77.50986551404111, 34.70048864082279], [-77.51008751240865, 34.70063431634408], [-77.51131591856853, 34.70170331330872], [-77.51189530400879, 34.702240670851374], [-77.5142799759112, 34.70482681853558], [-77.51582757346402, 34.70638207085827], [-77.51614709108209, 34.706828069758636], [-77.51840921049875, 34.711561147849835], [-77.51897846028945, 34.71267697847232], [-77.51903947622883, 34.712763623877684], [-77.51908659271085, 34.71286020248846], [-77.52013965778895, 34.71531720856664], [-77.52034812970058, 34.71578893468197], [-77.52065785647677, 34.71630195848938], [-77.52175238999824, 34.71811484219923], [-77.52211507590297, 34.71862263396047], [-77.52261234726942, 34.71841469817233]], [[-77.40327145228879, 34.62381783879289], [-77.40372865531776, 34.62413939735656], [-77.4043784266068, 34.623865576340656], [-77.40679244803644, 34.62291427580354], [-77.40620983806195, 34.62459982731855], [-77.40670779229748, 34.626037991431], [-77.40669795038912, 34.62622770287642], [-77.40670532451331, 34.626417613549485], [-77.40688266922398, 34.62651616757689], [-77.40784542713217, 34.627098905817654], [-77.40845971946983, 34.62748673648665], [-77.40884826709187, 34.62719722469544], [-77.41003656939658, 34.62661113477412], [-77.41048554936741, 34.62568110642544], [-77.41030922654353, 34.62541274017411], [-77.41003641127907, 34.62537600005906], [-77.4095648963481, 34.62462338117827], [-77.40863625513421, 34.62444017169508], [-77.40845938406537, 34.62439701251066], [-77.40829127821407, 34.624480529908745], [-77.40816614303839, 34.62431753087719], [-77.40729618550215, 34.62319043380581], [-77.40691776260395, 34.62279937099912], [-77.40690084109171, 34.62278188425158], [-77.40688233620267, 34.62276276039633], [-77.40547576983171, 34.62130913724121], [-77.4068820522447, 34.61946297175634], [-77.40689474890038, 34.61941975452879], [-77.40697372827358, 34.619394677980814], [-77.40700930327493, 34.61925246746768], [-77.40724689284448, 34.618506103788974], [-77.40688196814635, 34.61846762818067], [-77.40631495317936, 34.618402138026475], [-77.40567473775505, 34.61788381541702], [-77.40548680330707, 34.61771525366124], [-77.40530511060383, 34.61747470156294], [-77.40476206336405, 34.617166357079284], [-77.40461124620896, 34.61708628630595], [-77.40451669642698, 34.616992101251896], [-77.40441899997654, 34.61711062360108], [-77.40434815031708, 34.61722607992645], [-77.40372834747612, 34.61774929737667], [-77.40351107368032, 34.61796197761626], [-77.40310163591111, 34.618080952169066], [-77.40293996794219, 34.618062001075], [-77.40248847762146, 34.61798066798509], [-77.40225723138282, 34.617527752150686], [-77.40215155629689, 34.61740977005183], [-77.40164764275386, 34.61730929090269], [-77.40088948714369, 34.616875916779726], [-77.4013071394167, 34.61602684188563], [-77.40118937417601, 34.61598350839507], [-77.40057476811985, 34.61580180222876], [-77.40050663587981, 34.616008613488454], [-77.40050404679555, 34.61608237271246], [-77.40036423461179, 34.616724919875146], [-77.39997002132102, 34.61700855419468], [-77.39978639042315, 34.617457244668174], [-77.39910591961251, 34.617133197413736], [-77.3990075986397, 34.61713704591783], [-77.39899800440315, 34.61713164151493], [-77.39830288821604, 34.616399880331805], [-77.39822929783767, 34.61638931460692], [-77.39820963425548, 34.616344478920446], [-77.39786491980115, 34.61603847820149], [-77.39782831596136, 34.61602990290067], [-77.39767509283097, 34.61591467460024], [-77.39758560784064, 34.61632631501768], [-77.39769440050344, 34.616487644363716], [-77.39799943043576, 34.616670044357406], [-77.39820962173185, 34.616933575677194], [-77.39884406578378, 34.61717096735541], [-77.39895388280704, 34.61720264806366], [-77.39899800398423, 34.6171680890051], [-77.39968445177253, 34.61789889398008], [-77.39899798833127, 34.61859831451736], [-77.39863916744504, 34.618436137329], [-77.39852470831914, 34.618405573314284], [-77.39820959262863, 34.618342519238105], [-77.39805788143133, 34.61829691068494], [-77.3978655428409, 34.61821526048915], [-77.39798454731269, 34.61838647018793], [-77.39793596108422, 34.618575666285096], [-77.39801248474683, 34.61871083737975], [-77.39808786303813, 34.61868485812945], [-77.3982095841061, 34.618769576317], [-77.39849834068498, 34.61860812362744], [-77.39852064856203, 34.61891590720573], [-77.39887028552478, 34.61900301257284], [-77.39899798334085, 34.61908351946706], [-77.39952127727582, 34.61962072376417], [-77.39907167905305, 34.620455333133634], [-77.39907103217969, 34.620534813434794], [-77.39903470447094, 34.62057961827421], [-77.39899796874812, 34.62060771386076], [-77.39895521579324, 34.620597564590824], [-77.39839287155726, 34.620830073871105], [-77.39820954428598, 34.620860842267035], [-77.39791501679105, 34.621126121207716], [-77.39820953793324, 34.621210631391534], [-77.39848243435112, 34.62117494226124], [-77.39867820362369, 34.6214406187232], [-77.39883838191835, 34.621589382857486], [-77.39881130035326, 34.62184599497378], [-77.39899795667978, 34.62203078112253], [-77.39909086057786, 34.62213018687639], [-77.39939203511642, 34.62218665706459], [-77.39939217269588, 34.622186506280244], [-77.39939271442216, 34.62218670725515], [-77.39972693021569, 34.62220253794305], [-77.39978638994292, 34.6222100744259], [-77.40045199833537, 34.62216619509587], [-77.40057482532737, 34.62229095120233], [-77.40172497861484, 34.62230984781336], [-77.40328251947602, 34.623323878606904]], [[-77.34428709917833, 34.764470459200595], [-77.34442285942956, 34.76293819581621], [-77.34429311260264, 34.76288914207578], [-77.3442199367488, 34.762858181957434], [-77.3434999001926, 34.76209002410825], [-77.3433922963053, 34.76200503796294], [-77.34336782885691, 34.76166738074016], [-77.343333963585, 34.76162540596924], [-77.34309153013508, 34.76144793673075], [-77.34309926809283, 34.76141390431941], [-77.34287366712974, 34.76130633292999], [-77.34256061013366, 34.76148777430792], [-77.34254935401992, 34.761519602417565], [-77.34242997452884, 34.761749376244055], [-77.34215552611832, 34.7621675760919], [-77.34212265053705, 34.762278895546714], [-77.34203460000997, 34.76234023350485], [-77.34194603579928, 34.76243658430891], [-77.34150241031693, 34.762851322223945], [-77.34136081820606, 34.763019998434814], [-77.34103445159718, 34.763402863056996], [-77.34077058113314, 34.763773777566826], [-77.34055224981715, 34.76418852821094], [-77.34043409904132, 34.764459931256724], [-77.34036324018435, 34.76468958052145], [-77.34037483548758, 34.7647190880882], [-77.34054454513144, 34.764932162040644], [-77.3405714761898, 34.764962077891184], [-77.34095852809095, 34.76536277254754], [-77.3409945395696, 34.765425163478525], [-77.34105537585944, 34.76550060886851], [-77.34143262576097, 34.76587670180963], [-77.3415079898027, 34.766004657122565], [-77.34188274508472, 34.76603557913756], [-77.34211018068044, 34.76599414931501], [-77.3425023320639, 34.76584264828143], [-77.34340400178235, 34.76566540853717], [-77.34427818403218, 34.76560418072703]], [[-77.45886911151847, 34.50783406850342], [-77.46011949292989, 34.50811392684543], [-77.46070597111157, 34.50823909355479], [-77.4608798580178, 34.50821664468137], [-77.46090911218558, 34.50813296363645], [-77.46100601331729, 34.50785578456196], [-77.4610305762169, 34.507695819650124], [-77.4610243583197, 34.507289839096515], [-77.46081425533265, 34.507170534970506], [-77.46071112138873, 34.50667057541348], [-77.46068879569582, 34.50634176737766], [-77.46056759167912, 34.505806984417646], [-77.46064834928545, 34.50513754803892], [-77.46064813677485, 34.50513556056347], [-77.46065027390456, 34.505135006358955], [-77.46065146681805, 34.50513453688401], [-77.46067279769638, 34.50512477457673], [-77.46184845827429, 34.50458672104119], [-77.4619059017425, 34.504556811085294], [-77.46194211737762, 34.50452573437712], [-77.4622448308696, 34.50430342998391], [-77.46281559011034, 34.50389455615191], [-77.46288028019444, 34.50384201479427], [-77.46296575805113, 34.5037476036366], [-77.46334485761834, 34.50324590379556], [-77.46359502645669, 34.503001120338034], [-77.46364517204466, 34.50278883811494], [-77.46370907625504, 34.50258887635329], [-77.46373297323578, 34.502474102206875], [-77.46376537798537, 34.50194310428002], [-77.46376295862692, 34.50191609873468], [-77.46372675367994, 34.5018770654183], [-77.46369645268048, 34.50149516794003], [-77.46365804692948, 34.50123526206173], [-77.4636536232797, 34.501218572571446], [-77.46361214579059, 34.50118694403132], [-77.46353170184855, 34.50118831284195], [-77.46230581597489, 34.50113989167593], [-77.46225319236794, 34.50114238872], [-77.46222124028776, 34.50114583633229], [-77.4610178448611, 34.501549771257224], [-77.4607207398422, 34.50160505981396], [-77.46061404555988, 34.501756252479446], [-77.45987994375956, 34.50238472814451], [-77.45985954379294, 34.50241802867643], [-77.45930000433877, 34.50304056004909], [-77.4592249178352, 34.503254623062794], [-77.45892842378045, 34.5037588567561], [-77.45776975387955, 34.50431386658988], [-77.45741953062387, 34.504753827301684], [-77.45730275964104, 34.50531960647231], [-77.45734434925446, 34.50564329372564], [-77.45747083016704, 34.50596682322434], [-77.45774052681645, 34.50665670511647], [-77.45799444528333, 34.50702735054888], [-77.45838653106887, 34.5075996747082], [-77.45859901910215, 34.507774016625]], [[-77.39762372641046, 34.54058318603258], [-77.39952836178092, 34.53934698463221], [-77.40048230480885, 34.53901150833219], [-77.40056369226288, 34.53723885373937], [-77.40056894818743, 34.53706718969466], [-77.40064518883746, 34.535414836216056], [-77.40067148720141, 34.53526460342267], [-77.4003607894012, 34.53497954529335], [-77.40022946319773, 34.53476390179791], [-77.4002578400776, 34.534344970783124], [-77.40011887506999, 34.53434459842571], [-77.40010585771297, 34.53435899212094], [-77.40008067633315, 34.53437054527505], [-77.40007595547648, 34.53484106744561], [-77.39932387955997, 34.53478767727374], [-77.39900655075121, 34.53472440611749], [-77.39893221505632, 34.53474889504507], [-77.39885345205606, 34.534743323063196], [-77.39853826444077, 34.534812068876896], [-77.39800311265216, 34.53482651097815], [-77.3977500621229, 34.53495174342069], [-77.39745184837814, 34.53523966479483], [-77.3971775924121, 34.53541838493073], [-77.39694767550836, 34.5357232727842], [-77.39690739112201, 34.53578363477283], [-77.39688677263678, 34.535810891692364], [-77.39660845275546, 34.536134911993955], [-77.39640479115604, 34.536370122221825], [-77.39630626004573, 34.536484609222285], [-77.39613915928301, 34.536767139628786], [-77.39607186471913, 34.5368672696793], [-77.39604151779119, 34.53691221949295], [-77.39593993016813, 34.53704721831657], [-77.39568626066529, 34.53745315765364], [-77.39569777789502, 34.537678637382925], [-77.39533005234647, 34.53783642089857], [-77.39505688057852, 34.53771604835617], [-77.39493947745478, 34.537748535681374], [-77.3948634047745, 34.537769585937504], [-77.39466909392159, 34.53800975593498], [-77.39477587427457, 34.53807420315296], [-77.39531737018919, 34.538401022181674], [-77.39537875373388, 34.538438069846606], [-77.39604956099913, 34.538842925958214], [-77.39608535336583, 34.53886457425479], [-77.39608588579881, 34.538868299765234], [-77.39724334858491, 34.53967679105695]], [[-77.33750439264625, 34.65972888561089], [-77.33746919466662, 34.65966500179942], [-77.33745521823018, 34.65963927854273], [-77.33742153688374, 34.659576043294905], [-77.33726943014287, 34.65950955765569], [-77.3373159242048, 34.65968603172825], [-77.33741753431707, 34.659713866866404], [-77.33746402547669, 34.65978746222743]], [[-77.39628603911777, 34.614992478685345], [-77.39584452548094, 34.615719056183295], [-77.39576177484057, 34.615828106797096], [-77.39562457332185, 34.61593701660737], [-77.39577849164465, 34.61598592838263], [-77.39584451257659, 34.615974987590114], [-77.39597345512178, 34.61602558538916], [-77.39667389225835, 34.61578568309879], [-77.39722916577767, 34.61549867483005], [-77.39677515125983, 34.614921937725235], [-77.39674931745401, 34.61480031153327], [-77.39669324738017, 34.614509178777745], [-77.39669854018469, 34.614437771424555], [-77.39663296028607, 34.614263377721656], [-77.39638528559038, 34.61439578583159], [-77.39623877014913, 34.61447411394031], [-77.3961893467786, 34.61452862155859], [-77.39619221162849, 34.61463157933643]], [[-77.386269043826, 34.594359245829516], [-77.38631968413358, 34.59427868030088], [-77.38638771055349, 34.594162515494084], [-77.38653739144247, 34.593632581208105], [-77.38662827900308, 34.593458323152724], [-77.38697120544515, 34.59318819294478], [-77.38717608167649, 34.59300725805614], [-77.38724125052184, 34.592945385087965], [-77.38739543052151, 34.59273485733075], [-77.38743690112116, 34.5927048939846], [-77.38747475851656, 34.592590012470154], [-77.38749790593765, 34.592483814897015], [-77.38757027840877, 34.592315043444216], [-77.38762033144913, 34.59209548282182], [-77.38764459339498, 34.59203809869301], [-77.3877486897289, 34.59183096153399], [-77.38757037465234, 34.59173827514552], [-77.38751918811089, 34.59163161166922], [-77.3872802891084, 34.59155405190041], [-77.38717638403267, 34.59124486332968], [-77.38691638961616, 34.591149512964805], [-77.38638825502844, 34.59114774883231], [-77.38623812080436, 34.59112892463275], [-77.385991856182, 34.59100267193607], [-77.38573920133838, 34.59088929263226], [-77.38560017371246, 34.59080929655888], [-77.38521401224584, 34.59069873932707], [-77.38541221407826, 34.591086233984406], [-77.38546642059632, 34.59122243702239], [-77.38546847354493, 34.59150269041209], [-77.38560001233337, 34.59165385965286], [-77.38569577792681, 34.59179128534996], [-77.38575301431652, 34.59188623758813], [-77.38578758677295, 34.59208342814058], [-77.38561956971287, 34.59273331609988], [-77.38562257304862, 34.59275417498452], [-77.38561090096727, 34.59276781708354], [-77.38559979808441, 34.59277923554776], [-77.38525657748416, 34.59328640242422], [-77.38511124364564, 34.593354112622364], [-77.38481148862725, 34.59352109531681], [-77.3841467828039, 34.59296691278233], [-77.38407441892755, 34.59292242602344], [-77.38402345185196, 34.59288662296824], [-77.38387090578328, 34.59274649155247], [-77.38368969162919, 34.592673172948516], [-77.38362941257239, 34.592688233488865], [-77.3835778508683, 34.59267990726995], [-77.38323531867559, 34.59274848846582], [-77.38295952237911, 34.59258608371681], [-77.38284132307245, 34.592364984426986], [-77.3826855607141, 34.59232840269247], [-77.3824825879498, 34.59231959034526], [-77.38244728514994, 34.59218314174511], [-77.38223048308237, 34.592160413972096], [-77.38184292797854, 34.59225181473041], [-77.38165916144703, 34.592041815919], [-77.38153155043153, 34.591783149688744], [-77.38152442190218, 34.5916466278985], [-77.3812651932644, 34.59158854263038], [-77.38115740435526, 34.5916995237665], [-77.38101272173418, 34.59187301081076], [-77.38103032491053, 34.59197077665843], [-77.3811868529006, 34.59211984374359], [-77.38121256396764, 34.59217268587218], [-77.38160258798116, 34.59248449085231], [-77.38162110756514, 34.59252269566359], [-77.38165902640813, 34.59261011041959], [-77.38193677656352, 34.59328545412767], [-77.38192795520624, 34.59384580947461], [-77.38211835794164, 34.59410841086582], [-77.38196268324855, 34.59445845774298], [-77.38175871180354, 34.59500937572384], [-77.38167265235239, 34.595855402299605], [-77.38166814270944, 34.59587155766819], [-77.38166690262901, 34.59588105380094], [-77.38165825037271, 34.595895698911875], [-77.38093738121064, 34.596898791896656], [-77.38081836726708, 34.59689857409325], [-77.38008153792151, 34.59718448696945], [-77.37975047014531, 34.597489597841474], [-77.37929315720939, 34.597852295370856], [-77.37922973554154, 34.59792120965635], [-77.37898639381523, 34.59847510591959], [-77.37890779930709, 34.59881672469339], [-77.37897608221161, 34.59914809405215], [-77.37929276773595, 34.59934212077019], [-77.37949864150218, 34.59958071270981], [-77.37969972102083, 34.59996229767631], [-77.37970212089446, 34.59997595523333], [-77.37970871688768, 34.59999870887929], [-77.3798614993941, 34.600189210187196], [-77.37998338453374, 34.600255085639915], [-77.38008075609862, 34.600288110778195], [-77.38010602039682, 34.600315092998706], [-77.3802108802628, 34.60032720568471], [-77.38027780358561, 34.6003331691866], [-77.38044628827971, 34.60032406620674], [-77.38047486465528, 34.60032383235508], [-77.38075262284221, 34.600249137481974], [-77.38077503531699, 34.6001446562305], [-77.38075223891981, 34.599824629059455], [-77.3808358774603, 34.59942390874999], [-77.38084181361148, 34.59938715680606], [-77.38086921914494, 34.599342869647046], [-77.38124955403367, 34.59888887188221], [-77.38165766287537, 34.598406226737666], [-77.38214030238815, 34.59868001683328], [-77.38244584872423, 34.598540957611746], [-77.3832309517592, 34.599039594514444], [-77.3832339589865, 34.59904020300426], [-77.38323551658817, 34.599040498307474], [-77.38323583961443, 34.599042129800395], [-77.38366926619199, 34.599359772486494], [-77.38369363161283, 34.599471436888834], [-77.38375018981446, 34.59981712570897], [-77.3837721749733, 34.60008304830202], [-77.38379460130687, 34.60023528983006], [-77.3838551215531, 34.60040623226094], [-77.38402191553564, 34.60033995188388], [-77.38413634603913, 34.60048729465345], [-77.38422972938898, 34.600597137997354], [-77.38435659944142, 34.60064281083493], [-77.38441596996937, 34.60065401350128], [-77.38450642872702, 34.60067208714538], [-77.384525362773, 34.60067237392232], [-77.3846130405146, 34.60059577897608], [-77.38467145195231, 34.60053346879682], [-77.38471482539805, 34.600424546273125], [-77.38481017914509, 34.60018508522438], [-77.3851046996487, 34.600046453265676], [-77.38518759437366, 34.600016478949044], [-77.38523196721644, 34.59999833602244], [-77.38559849069267, 34.599753675404386], [-77.38590811361126, 34.60002160901796], [-77.38599254236354, 34.60009812702555], [-77.38623739250039, 34.60030774240906], [-77.38632119611279, 34.600366130071976], [-77.3863865971413, 34.60044366442853], [-77.38651543492985, 34.600553415384326], [-77.38658361565712, 34.600674916712904], [-77.38659988546694, 34.60068005392351], [-77.38675396886228, 34.60068660843011], [-77.38678067241332, 34.600687902105044], [-77.38681488715856, 34.600685917368594], [-77.3871748333029, 34.60042853301081], [-77.38749060796283, 34.60046725836218], [-77.38771927823538, 34.600356748747394], [-77.3879631009489, 34.60020749287523], [-77.38804205413939, 34.60013261979605], [-77.38856746306492, 34.599971829277344], [-77.3887112801118, 34.59990790086125], [-77.38875137709486, 34.59989852987734], [-77.388801316313, 34.59988431762603], [-77.38939667421278, 34.599698270106096], [-77.38953965503073, 34.59953286946826], [-77.38979707302931, 34.59951723341861], [-77.39032789760067, 34.59938647853964], [-77.3908272502126, 34.599334801449295], [-77.39111613143497, 34.59928769250215], [-77.39126278018394, 34.599425202303394], [-77.39154583340601, 34.599542386400884], [-77.39178356089661, 34.59963819071004], [-77.39190430599831, 34.599709948887195], [-77.39228177982125, 34.599842921669], [-77.39230710459036, 34.59984780589746], [-77.39269251066023, 34.59990937746672], [-77.39333042136224, 34.600134176032775], [-77.39342953949104, 34.60017500957169], [-77.39348071011858, 34.600204296847615], [-77.39375004584033, 34.600363823576046], [-77.39387480451992, 34.60043802042427], [-77.39389711370379, 34.60045298594908], [-77.39421385988369, 34.60037201871102], [-77.3942689246702, 34.60037836203439], [-77.3942994699743, 34.60038608607834], [-77.39440865743873, 34.60034148745485], [-77.39446598992043, 34.60027927472644], [-77.3945211347927, 34.60023414033333], [-77.39466306641698, 34.60002580256289], [-77.39480757223848, 34.599921140523335], [-77.39489871814263, 34.59973726382512], [-77.39505721290416, 34.59956117374332], [-77.39529924077802, 34.599589490834944], [-77.39551261629654, 34.59946090285451], [-77.39584544221181, 34.59944082399601], [-77.39592852258144, 34.59942439269724], [-77.39604249883455, 34.59941586726326], [-77.39621019138444, 34.599325902145175], [-77.39623955997557, 34.59931013651266], [-77.39625209741651, 34.59930172602968], [-77.39626851216772, 34.59928585239773], [-77.39646546776521, 34.599076226608155], [-77.39663369301662, 34.59886728081008], [-77.39666426493312, 34.598837129448384], [-77.39674557035354, 34.598792467994635], [-77.39705374282926, 34.598351364098406], [-77.39742193085652, 34.598340201541866], [-77.39777557593123, 34.59826290858814], [-77.39781603926744, 34.598246904914774], [-77.39784509975061, 34.59824059570726], [-77.39796845014457, 34.59819149487718], [-77.39800219170014, 34.598174882229365], [-77.3980130950952, 34.59814693037799], [-77.3980765816156, 34.59803199999493], [-77.39813648691754, 34.59782204879838], [-77.39792887380749, 34.59777263109362], [-77.39781605873372, 34.59775557404274], [-77.39748158028654, 34.597772920560224], [-77.39742195806718, 34.59772640904401], [-77.39736168957654, 34.597789524198504], [-77.39672984031206, 34.59794559269791], [-77.39668554087285, 34.598007789496755], [-77.39663373883383, 34.59801083217742], [-77.39660018968974, 34.59800043768392], [-77.39609059967205, 34.598301831378336], [-77.39584551122523, 34.59833943267272], [-77.39563404248938, 34.59833146814935], [-77.39537491900194, 34.59848320860623], [-77.39505727860762, 34.598647683198266], [-77.39479583816032, 34.598792052299736], [-77.39453804497576, 34.59882108423172], [-77.39426905719041, 34.59874331718605], [-77.39423804578274, 34.5987295678831], [-77.39398096331506, 34.59865244473833], [-77.3935101630664, 34.59840997306821], [-77.39349863643594, 34.59839250035238], [-77.39348087451192, 34.59839168628207], [-77.39344300478162, 34.598378860023864], [-77.392899172458, 34.59827562607849], [-77.39269271383468, 34.59788652891062], [-77.39255070470695, 34.597852189457164], [-77.39240735630203, 34.59771987112387], [-77.39252549034701, 34.59752264378491], [-77.39269275778639, 34.597452825830835], [-77.39286260890584, 34.59747123320518], [-77.3934809851485, 34.59718703200218], [-77.39382411094294, 34.59703605183889], [-77.39426920070366, 34.59699972245893], [-77.39502245149338, 34.59653126502383], [-77.39505743349676, 34.59652580959894], [-77.39506962585617, 34.59649990788149], [-77.39507838932347, 34.59648551077064], [-77.39532519613036, 34.596161471492536], [-77.39543754544674, 34.595994030434625], [-77.39545156717797, 34.59599058635033], [-77.39577199797458, 34.59553632355147], [-77.39581153671305, 34.595493821978], [-77.39584569705482, 34.595438316311245], [-77.39616205580205, 34.595055488760934], [-77.3961366817915, 34.59494803456847], [-77.39649125225148, 34.594583431096254], [-77.396095757572, 34.59437115004012], [-77.39584575754638, 34.5945146220572], [-77.39570269065793, 34.59454304491754], [-77.39532793148194, 34.59475123168991], [-77.39514240044124, 34.594869398712845], [-77.39505754827591, 34.59498249868868], [-77.39491370699557, 34.59496594485322], [-77.39426933355716, 34.595408265201506], [-77.39393524212291, 34.59544131674262], [-77.39383232847888, 34.59543774521392], [-77.39348113675356, 34.59555361462674], [-77.39303717162773, 34.59555992008021], [-77.39269296865547, 34.59539031269255], [-77.39233739250267, 34.5951825421252], [-77.39214620817907, 34.594950070751494], [-77.39210647138714, 34.59458389244108], [-77.39210599081915, 34.594366773364925], [-77.39215107562086, 34.59409508668286], [-77.39209844340448, 34.593727159151754], [-77.3920929233599, 34.59351951855593], [-77.39215240288671, 34.59335289720679], [-77.39229911485867, 34.59319648324592], [-77.39237502887175, 34.593136045378], [-77.39241210591896, 34.59304891826569], [-77.39233943215183, 34.59301598350216], [-77.39229913540676, 34.59300853844576], [-77.39221083774936, 34.59298281154314], [-77.39190504676733, 34.59307887444518], [-77.39189438847575, 34.593123579946635], [-77.39187808646258, 34.59315496754244], [-77.39181820237906, 34.593346851604586], [-77.39181602346879, 34.593463587522194], [-77.39181561956617, 34.59355950883378], [-77.39176406572209, 34.5937187513215], [-77.39171187547021, 34.594215634280985], [-77.39166736967049, 34.59443002654019], [-77.39159405523561, 34.59495492145336], [-77.39111663961512, 34.59507398458442], [-77.39096075853118, 34.595213143174384], [-77.3903538457701, 34.595441174239504], [-77.39032840811703, 34.5954555533104], [-77.39031586363593, 34.59546054011968], [-77.38960979319933, 34.595500905897], [-77.38954021882569, 34.59548472564189], [-77.38942540390713, 34.59547875513375], [-77.38914612685656, 34.59547853742856], [-77.38895246800774, 34.59567064021829], [-77.38894806417801, 34.595882528299654], [-77.38875194090573, 34.59609926301209], [-77.38842795291465, 34.59624638595581], [-77.38826035641274, 34.59629998886101], [-77.3880582223183, 34.596224139382755], [-77.38796372853584, 34.596227399383245], [-77.38795074165044, 34.596225644092776], [-77.38783582558106, 34.596256203219866], [-77.38789368752691, 34.59632330088497], [-77.38779781220072, 34.59650755508218], [-77.38781436423858, 34.59668386475914], [-77.38756948960099, 34.59709732599923], [-77.38754989316496, 34.59712545479225], [-77.38751343220918, 34.59715181776933], [-77.38717533346843, 34.59742667250807], [-77.3869123141995, 34.59737968573428], [-77.38669861995645, 34.59735829465365], [-77.38638717965017, 34.597137703388704], [-77.38617323257608, 34.59715093920811], [-77.38593112697167, 34.59695535747549], [-77.38612292629362, 34.59664293115329], [-77.38638731423514, 34.596380164806334], [-77.38645439900708, 34.59610301038252], [-77.38690800762642, 34.59596539791528], [-77.38641189155425, 34.59521404012181], [-77.38638943384811, 34.59519102407312], [-77.38638881506972, 34.595189725035816], [-77.38638753006842, 34.595169734488465]], [[-77.47612400707396, 34.57342317841635], [-77.47621399259916, 34.574232892073134], [-77.47628601025377, 34.574880918595895], [-77.4762957396929, 34.57494812535172], [-77.47630043950701, 34.575036601404925], [-77.4763729296328, 34.5756646517618], [-77.47625983270285, 34.57691564011432], [-77.47635463004457, 34.57738224032217], [-77.47486124937531, 34.57905054352429], [-77.47474415078183, 34.579296202079625], [-77.47467034390897, 34.580129169051155], [-77.47368960002582, 34.580061039654176], [-77.47377306293939, 34.57936122281737], [-77.4737297512698, 34.57894133865888], [-77.47231722303032, 34.576822596579746], [-77.47157583075514, 34.575710454391704], [-77.47148997070974, 34.57558166254157], [-77.47304586211656, 34.57419962816052], [-77.47358495796306, 34.57393599438084], [-77.47349536937016, 34.57353199148718], [-77.47368232775125, 34.57275283812425], [-77.47407513200804, 34.57163012750071], [-77.4753672547823, 34.57069070800556], [-77.4753036158695, 34.572059909954696], [-77.47593149554271, 34.57283641500396]], [[-77.33866549222302, 34.691538329640295], [-77.33860538407524, 34.69150014917028], [-77.33848964350717, 34.6916204231203], [-77.33850738189669, 34.69165997645497], [-77.33851851129373, 34.69179917680615], [-77.33868921858887, 34.692308368793206], [-77.3385739167392, 34.69258361272472], [-77.33849724354707, 34.692817737971446], [-77.33819076356085, 34.692927308856284], [-77.33795010755287, 34.6931565612738], [-77.33779021359186, 34.693394175128695], [-77.33776194960987, 34.69342605950572], [-77.33801234267007, 34.69354143481004], [-77.33816239032302, 34.693501984740294], [-77.33858935628344, 34.69353778648339], [-77.33861851016512, 34.69351547509714], [-77.33897577625311, 34.69324205985599], [-77.33899467839449, 34.69301326619255], [-77.33923211327946, 34.69283099053291], [-77.33935623777583, 34.692583477536175], [-77.33940430982452, 34.692469694914124], [-77.33942198418669, 34.69236098617604], [-77.33965808235993, 34.69195709325177], [-77.33964015141358, 34.69194996412801], [-77.33932032763524, 34.69182280665546], [-77.33872879127743, 34.69158761609733]], [[-77.32975733951211, 34.68898886825342], [-77.3298590197187, 34.69043065335373], [-77.33156881709544, 34.69050400926915], [-77.33150953954515, 34.68965353589284], [-77.33117300413565, 34.68941984919746], [-77.33132374104028, 34.68870427200686], [-77.33164809671392, 34.6882661268971], [-77.33167805584912, 34.688047207540315], [-77.3315331821865, 34.68770081016049], [-77.33151708436534, 34.68757867109268], [-77.33140250224392, 34.68744741854557], [-77.33119553164644, 34.687037800277004], [-77.33094663770315, 34.686956269892825], [-77.33087816448005, 34.68688783254049], [-77.3306624981012, 34.68684546181167], [-77.33046645393041, 34.68681044092313], [-77.33039369130213, 34.68679920130966], [-77.33022022499613, 34.68675422970965], [-77.33004983901338, 34.68692946849325], [-77.33005441656847, 34.687127415648234], [-77.32986201351451, 34.68744259342736], [-77.32984562908804, 34.68769885359085], [-77.32965026467994, 34.68795899606188], [-77.3297572660097, 34.688897351633386], [-77.32968522643225, 34.688928942977896]], [[-77.45356460465128, 34.74182715481557], [-77.45359237599268, 34.74189060516858], [-77.45373108457618, 34.74197332340454], [-77.45422204962264, 34.74214362729931], [-77.45428769970073, 34.74213464729119], [-77.45440080451297, 34.74211917581296], [-77.4546966237845, 34.74205484255329], [-77.45489170476165, 34.74204518645735], [-77.45502590043412, 34.74218518392471], [-77.45516642606951, 34.742203819804224], [-77.4552688380215, 34.742307009355784], [-77.45529388075317, 34.742317393897885], [-77.4553225230596, 34.742329271035544], [-77.45546932669683, 34.74226500619425], [-77.45565216751596, 34.74227667438267], [-77.45566517781778, 34.74214127516636], [-77.45567815146495, 34.74200625506622], [-77.4556874905027, 34.74190905469735], [-77.45574483734387, 34.74131222509549], [-77.45577686852964, 34.7409788690503], [-77.45578208561322, 34.7409245782364], [-77.45575773911446, 34.74079758362413], [-77.45571963316048, 34.739784790714765], [-77.45583449540521, 34.7391690430242], [-77.45515502501485, 34.73891726879144], [-77.45479032785316, 34.73921815614196], [-77.45473343468562, 34.7394403924685], [-77.45461431293273, 34.739678333542905], [-77.45423180000877, 34.740383185242685], [-77.45387680472466, 34.74071637391296], [-77.45381883876377, 34.74079795858644], [-77.45376373694525, 34.74092621301613], [-77.45355339709752, 34.74126424912007], [-77.45347922700442, 34.741491392343434], [-77.45347147420463, 34.74151513532076], [-77.45350998103484, 34.741612337658765]], [[-77.32104527489997, 34.756022254906426], [-77.32114580993125, 34.756246228303056], [-77.32123216341962, 34.75636919173887], [-77.32159064710666, 34.75669253728208], [-77.32199026365346, 34.75689266648276], [-77.3222679012427, 34.756960219018524], [-77.32311944087515, 34.75707161241838], [-77.32313611613269, 34.75707265315091], [-77.3231587261701, 34.757063754967575], [-77.32445473824382, 34.75665867965675], [-77.32621545471797, 34.755686565037706], [-77.32506635959359, 34.75455597224011], [-77.32465433156034, 34.75433779295797], [-77.32457782962769, 34.75396145711883], [-77.32497181425879, 34.75360571140867], [-77.32513959775694, 34.753176585381446], [-77.32515522634627, 34.752907625817144], [-77.3249074292678, 34.75256682377299], [-77.32483296575299, 34.75246440987582], [-77.3247236103264, 34.75231400861219], [-77.32453385040432, 34.75226749964299], [-77.32411083279793, 34.75256333669781], [-77.32389926628244, 34.75265516116296], [-77.3237963748755, 34.752743327130275], [-77.32349222503078, 34.753135442629485], [-77.3233726443293, 34.75335240737748], [-77.32334830042336, 34.7533988405082], [-77.32333717066487, 34.753433885794465], [-77.32325918883296, 34.753654729119035], [-77.32318373926552, 34.753891704501854], [-77.32311383973513, 34.75416200364371], [-77.32305263335525, 34.75445860744405], [-77.3226351214102, 34.75467593603922], [-77.32207472946857, 34.754744090245694], [-77.32200726273284, 34.75477483466852], [-77.32197954647691, 34.75478446964062], [-77.32188333771234, 34.75481791437102], [-77.32167353946257, 34.75489232063993], [-77.32158914590755, 34.754920252932095], [-77.32146563565237, 34.75496745890901], [-77.3213289705254, 34.75504708341762], [-77.32121191771273, 34.75515355718836], [-77.32115759524918, 34.75533290886408], [-77.32113136215969, 34.7554082717616], [-77.32111175363691, 34.75548421118179], [-77.32105076311392, 34.7559066741269]], [[-77.4199371014384, 34.525695312059405], [-77.42029475087365, 34.52632219299683], [-77.42041691642952, 34.52653631715481], [-77.42066583276666, 34.52697260205409], [-77.41990860305219, 34.52698058513892], [-77.41943633550284, 34.52716772501346], [-77.41990437780994, 34.52717114416639], [-77.42005490934412, 34.52717224310378], [-77.42066678998702, 34.52700624853078], [-77.42069275672725, 34.527018020883226], [-77.42077867488615, 34.527162957589034], [-77.42090353697711, 34.52708812599378], [-77.42093413743727, 34.52704513637819], [-77.42070782945306, 34.526983955702924], [-77.42071111695265, 34.526972654318875], [-77.4208670007605, 34.526573819283264], [-77.42079980257982, 34.526480976678094], [-77.42087889586178, 34.52608304977914], [-77.42151302559262, 34.525425299353195], [-77.42152307217168, 34.52540302301875], [-77.42152614340507, 34.52539661957626], [-77.42162071244157, 34.52531726418444], [-77.42214568962439, 34.52481737908403], [-77.42222424179997, 34.52475069608328], [-77.42231386807963, 34.52470845575593], [-77.42245220391672, 34.524528228862536], [-77.42255123045868, 34.52441306582222], [-77.42254825205876, 34.52437276474785], [-77.42241230803383, 34.524289152847594], [-77.42237880202967, 34.524259687619896], [-77.42232514192233, 34.5241993686183], [-77.42199029190508, 34.52407113282593], [-77.4215477000096, 34.52386018646292], [-77.42118742970911, 34.523713611896085], [-77.4200872880036, 34.523712109597554], [-77.41997895576516, 34.523807715152024], [-77.4191850689999, 34.52426670871065], [-77.41864101081214, 34.52483423700977], [-77.4190871309311, 34.52530539382503], [-77.41990072633058, 34.52563155403907]], [[-77.32488580919633, 34.64788725777737], [-77.32601258296172, 34.646330345664566], [-77.32601953326608, 34.646043837316846], [-77.32626234513629, 34.645228867038185], [-77.32636753930765, 34.6448512223348], [-77.32653078357008, 34.64428576862977], [-77.32657447102221, 34.644185627588946], [-77.3266178695851, 34.64404603440816], [-77.32681796699812, 34.64340240413224], [-77.32684659569006, 34.64310503821865], [-77.32676134129206, 34.64292412842364], [-77.32668078319497, 34.642950192121404], [-77.3263927744973, 34.64292492216875], [-77.32615604043059, 34.642974329275354], [-77.3260202922414, 34.64300073822653], [-77.32581990205806, 34.64326061641705], [-77.32556324481581, 34.64324127329811], [-77.32518535621651, 34.64328913651369], [-77.32494772800305, 34.643070186268076], [-77.32455305142823, 34.64296523110886], [-77.32448044952719, 34.642967172907646], [-77.32441442224844, 34.64297789800221], [-77.32386642683662, 34.64299136141597], [-77.32385236385437, 34.64302786024013], [-77.32382407250556, 34.64299849555864], [-77.32366900098971, 34.642990235895084], [-77.32320707203418, 34.643002834983925], [-77.32317595223799, 34.64301389250155], [-77.32290521327732, 34.64309387787086], [-77.32290445447977, 34.643095064280885], [-77.32295242843631, 34.64347252296861], [-77.32297063659541, 34.6435397053623], [-77.32316929945473, 34.643902728068184], [-77.32325120739495, 34.64413213604554], [-77.32385267859584, 34.64465300495506], [-77.3239961095974, 34.64495337796656], [-77.32480755246308, 34.647874509348455], [-77.32463303322442, 34.64792191659708], [-77.32485737181351, 34.648033920538104]], [[-77.38329793119057, 34.629677428307524], [-77.38368036529263, 34.62954673921658], [-77.38401630957905, 34.629383367622495], [-77.38407729741073, 34.62942385775935], [-77.38466873602711, 34.62925774674933], [-77.38480486543347, 34.62910997318494], [-77.38511430450791, 34.62849097420076], [-77.38480498019918, 34.628448503885], [-77.38469522031946, 34.628433165038274], [-77.38441073898761, 34.62840052534205], [-77.38423969366598, 34.62837664858473], [-77.38419678657384, 34.628392788798216], [-77.38401645938325, 34.62856413356981], [-77.38396275425336, 34.62859909068025], [-77.38388079024334, 34.6286687291928], [-77.38322776373835, 34.629576296217365], [-77.38320576360562, 34.62959143866108], [-77.38311911529388, 34.62962761181953], [-77.38308963008652, 34.62978056948132], [-77.3832277451154, 34.629673481490606]], [[-77.46329060676638, 34.58912634393033], [-77.46300029304025, 34.590052083772946], [-77.4628252351545, 34.59061026915538], [-77.46265021227013, 34.59116833399217], [-77.46257086573782, 34.59142131850385], [-77.46266655225708, 34.59171879531485], [-77.46251097173328, 34.59235835077385], [-77.46230144082543, 34.592536050645876], [-77.46199338185728, 34.592542271937326], [-77.46135962024229, 34.592935572458245], [-77.46083710953738, 34.59265459059327], [-77.46077045853372, 34.5922092304303], [-77.46018090799802, 34.592470102343896], [-77.45982410222804, 34.59245236062208], [-77.45965301280404, 34.5924617825997], [-77.4592510038326, 34.59245648434732], [-77.45912572061546, 34.592455661488486], [-77.45907455819433, 34.59245473637424], [-77.45895667854924, 34.592452604709926], [-77.45901826758688, 34.592375049881895], [-77.45907912246514, 34.592285495247225], [-77.45928499427089, 34.591849001604785], [-77.45952233796919, 34.591552669987934], [-77.45966471369096, 34.591362489664924], [-77.46040901247682, 34.59056113021381], [-77.46063405927087, 34.59028619033328], [-77.46242729191702, 34.58985160484234]], [[-77.32875340746138, 34.757288299533435], [-77.32888638890526, 34.75739067041198], [-77.32897942545955, 34.75758047224856], [-77.32924665757756, 34.75739398618392], [-77.32925538250129, 34.75721952101607], [-77.32916701557558, 34.757174963427225], [-77.32910626880522, 34.75714433175024], [-77.32877826578843, 34.75697892954206]], [[-77.394265892056, 34.64849251897099], [-77.39441958259127, 34.648543596896666], [-77.39432916661244, 34.64832304407384], [-77.39426589887633, 34.6483422435928], [-77.3942036548888, 34.64834224230234], [-77.39268852976382, 34.64834221176677], [-77.39118184267575, 34.64876870777125], [-77.39111112200285, 34.648788722689524], [-77.39107292487297, 34.64881942540933], [-77.39101058455992, 34.64886953282048], [-77.39017570457413, 34.649681117112586], [-77.39026742690073, 34.64988489111431], [-77.39071302532466, 34.65018221542687], [-77.39111098991506, 34.65038481614395], [-77.39116988394795, 34.65048143038364], [-77.39129526210732, 34.65052677415174], [-77.39189966477312, 34.650797058459624], [-77.39230246482151, 34.650797070095216], [-77.3926883732515, 34.65079708103691], [-77.39319361959248, 34.65079709036931]], [[-77.39394834319957, 34.5294523376515], [-77.39390947267603, 34.5294100234508], [-77.39335569475436, 34.52958698048943], [-77.39320928249455, 34.529731058460754], [-77.39318461629139, 34.52975210589645], [-77.39325726539946, 34.52990403356617], [-77.39334082310529, 34.5299569112647], [-77.3935430441021, 34.53002104737077], [-77.39383429536207, 34.52994986287167], [-77.39393770487355, 34.52992552004545], [-77.39401421572325, 34.529907205392604], [-77.39426062616948, 34.52982417830354], [-77.39424493697771, 34.529638821474855]], [[-77.34780494735978, 34.758768112009555], [-77.34773814910838, 34.75866350715611], [-77.34779721883068, 34.75857633154421], [-77.34773015721962, 34.758449318736595], [-77.34751780983204, 34.75804456137937], [-77.34744892969321, 34.75764935217332], [-77.34740439436766, 34.75734339253897], [-77.34701824780058, 34.75735223616814], [-77.3466818459353, 34.757520730417696], [-77.34636162026838, 34.75755031320905], [-77.34608115589704, 34.75783697741684], [-77.3458297293724, 34.75804248019793], [-77.34573771237382, 34.7582307882989], [-77.34566551180717, 34.75838136767711], [-77.34561230787986, 34.75848817080188], [-77.34542236102678, 34.758720903123596], [-77.34531838408377, 34.75886609599448], [-77.34527515782406, 34.75892228678089], [-77.34518881425086, 34.75904702438007], [-77.34519756586974, 34.75917661796563], [-77.34514274246669, 34.75927953945583], [-77.34523160898254, 34.75937726540964], [-77.34524821727216, 34.75939552944829], [-77.3452626327478, 34.75941138190687], [-77.34561084940088, 34.759510878895114], [-77.34590757276914, 34.759810296166066], [-77.34614075705194, 34.75989179058116], [-77.34703415382106, 34.76063051846224], [-77.34708729149432, 34.76074072421901], [-77.34717740684779, 34.76092761252444], [-77.3478753612086, 34.76051512140311]], [[-77.45300515886889, 34.61617649132841], [-77.45218376567738, 34.61551263226788], [-77.45096623222548, 34.615571951642266], [-77.451211945598, 34.616079098578034], [-77.45136958742626, 34.616508118505706], [-77.45150297878496, 34.61673461899994], [-77.45134735402713, 34.61694407946313], [-77.45149874604135, 34.61710508671566], [-77.45144082196597, 34.61728647645108], [-77.4514642116362, 34.61730680804924], [-77.45174471395546, 34.61740420024273], [-77.45176536518724, 34.61740889885377], [-77.45224823268279, 34.61726259279176], [-77.45225090132651, 34.617261988382346], [-77.45225449574562, 34.617261445056236], [-77.45304550646357, 34.616323821466715], [-77.45312021460838, 34.61632553348975], [-77.45309261957902, 34.6162301576621]], [[-77.3832250954893, 34.64386207238445], [-77.3827743155255, 34.64374871572552], [-77.3817005248597, 34.64347472512625], [-77.38164788287354, 34.64346117915563], [-77.38161504208763, 34.64346571621205], [-77.3802810865246, 34.64384924395293], [-77.38007048670406, 34.64396095616916], [-77.37928691066321, 34.644609231867854], [-77.37927665122204, 34.64461090633803], [-77.37849313984498, 34.64416881071259], [-77.37837426559558, 34.6440252095598], [-77.3777173203885, 34.64400557607583], [-77.3777045295187, 34.6440043279453], [-77.3776873793319, 34.64401457886308], [-77.37694904680805, 34.644138201457004], [-77.37691582834472, 34.644204123834456], [-77.37635775960975, 34.64503673128429], [-77.37621950967099, 34.64515632623948], [-77.37616061207213, 34.645237136571126], [-77.37611730128037, 34.64549331322165], [-77.37622175466545, 34.64554072793179], [-77.37639698860681, 34.64568387765487], [-77.37642738454481, 34.64568373938236], [-77.3765479977522, 34.64557091339515], [-77.3767886340138, 34.64568726519414], [-77.37691550217079, 34.64547442150581], [-77.37721663924877, 34.64543794643926], [-77.37730985552719, 34.64538894092833], [-77.37734853932479, 34.64536024290111], [-77.37770419801781, 34.64534431828545], [-77.37817377007235, 34.64528073674588], [-77.37849291119903, 34.645129638350205], [-77.37927936290893, 34.64461844330177], [-77.37912747134398, 34.64548694230546], [-77.37928147611925, 34.64554575879559], [-77.37960693706776, 34.645916503585745], [-77.37980496174106, 34.64595307060212], [-77.38007005841283, 34.64591790461679], [-77.38069147402044, 34.64593071107608], [-77.38085871758904, 34.64595383879729], [-77.3809997171121, 34.645914577538036], [-77.38120762975177, 34.64603642800796], [-77.38164735330108, 34.6461096545344], [-77.38225716494865, 34.646077805009796], [-77.38243600757355, 34.646181693357605], [-77.38265274924387, 34.64606157439468], [-77.38322479760188, 34.645507157825406], [-77.38357457267955, 34.645222838608206], [-77.38392651530253, 34.64404033938134]], [[-77.32996478765178, 34.69239458671514], [-77.33044785761038, 34.6920635586108], [-77.33135342933095, 34.69173604717309], [-77.33150113291074, 34.691720825089604], [-77.33141825735689, 34.6916155382877], [-77.33151329294594, 34.69118594570925], [-77.33127157405796, 34.69092050528485], [-77.3298297528639, 34.69151537309954], [-77.32953627506103, 34.69225538547453]], [[-77.380863208155, 34.6251691133501], [-77.38068205047932, 34.62553810917186], [-77.3800746213142, 34.625670517122806], [-77.37985629946098, 34.62561695321733], [-77.3797878703333, 34.62586194061602], [-77.38007453570992, 34.626038793655425], [-77.38034621355536, 34.62633797752675], [-77.3807688553705, 34.6264684371679], [-77.38086294179575, 34.626363107832844], [-77.38132060753682, 34.626133924091306], [-77.38165154742944, 34.62577946758593], [-77.38223904335395, 34.62572522907025], [-77.38244006279636, 34.62558297520728], [-77.38249912376983, 34.62553489819929], [-77.38257707667474, 34.625460072242106], [-77.38249518650188, 34.62541254504639], [-77.38250441850688, 34.624690523951166], [-77.38247939298678, 34.62462501955874], [-77.38246049509891, 34.62460595346004], [-77.38244026785922, 34.62458070880027], [-77.38229308346516, 34.62438585319261], [-77.38224319812883, 34.62435787959106], [-77.38218521251488, 34.62439268691], [-77.38204604401858, 34.62454224189984], [-77.3818129062703, 34.62454756270024], [-77.3816517869006, 34.62466029888847], [-77.38157625443426, 34.62467381039994], [-77.38125754171224, 34.624718391893495], [-77.3809864472365, 34.624840131710215], [-77.38100596494405, 34.624991015774874]], [[-77.37361695331406, 34.54670747194373], [-77.37368606937045, 34.546746666800495], [-77.37373065485698, 34.54686249868198], [-77.37381195828797, 34.546973352406305], [-77.37384464752141, 34.54701792312495], [-77.37392130058156, 34.5471224349373], [-77.37424051218719, 34.54711048401124], [-77.37450745639545, 34.54687311819575], [-77.37460505153504, 34.546791098320945], [-77.37471637641275, 34.546687347280916], [-77.37537863778006, 34.54674755927062], [-77.3754667936389, 34.54675557429147], [-77.3754999759818, 34.546757538986384], [-77.37553170451025, 34.54674510828771], [-77.37568878942191, 34.54670285628279], [-77.37693923819069, 34.54643630742485], [-77.3770794731387, 34.54635572801379], [-77.37807175503534, 34.54599374067828], [-77.37866346029313, 34.54575501540076], [-77.3791401155732, 34.5455199748381], [-77.37945631775538, 34.54541611479215], [-77.37961694818381, 34.54515729880379], [-77.37973642818234, 34.544816631857486], [-77.37999859994066, 34.544612616243384], [-77.38015824888456, 34.54452510390433], [-77.38026452437322, 34.544398938202065], [-77.38044894314106, 34.54416980407898], [-77.38058207446963, 34.544038833167356], [-77.38077928558451, 34.5436992515332], [-77.38090566216108, 34.54350251944596], [-77.38096080251347, 34.54342539371581], [-77.38107542115596, 34.54326203211296], [-77.38130445860062, 34.54295535922321], [-77.38147781627733, 34.54268349114126], [-77.38189118733261, 34.541908914999425], [-77.3818994037697, 34.54189518435644], [-77.38190421855866, 34.541889559573825], [-77.3819033123998, 34.54188250092393], [-77.3820297056871, 34.54138180358215], [-77.38190469866159, 34.54131163340733], [-77.38116089808345, 34.54147893292222], [-77.38105189781541, 34.54148301189735], [-77.38086090913225, 34.54155032820207], [-77.38032451055099, 34.54174936255271], [-77.37999677414896, 34.541963201999764], [-77.38003580089989, 34.5421589510648], [-77.37952175682194, 34.54252686642177], [-77.37937482255818, 34.542654066204975], [-77.37929378059525, 34.54275558864507], [-77.37906032805307, 34.54299778807194], [-77.37898965158789, 34.54312286036089], [-77.3789367875357, 34.54329671439129], [-77.37896520900111, 34.54344820309986], [-77.378698606435, 34.54420388368501], [-77.37857506327636, 34.54425181130125], [-77.37740579689867, 34.54432198810293], [-77.3771247986037, 34.54435699881067], [-77.37701599041739, 34.54448690460523], [-77.3769016296853, 34.54456940753755], [-77.37601250209599, 34.54499220666262], [-77.37562449398294, 34.545243151157266], [-77.37557383307816, 34.54527553656148], [-77.37553289377585, 34.54530714977808], [-77.37528640654592, 34.54563242587658], [-77.37466957186373, 34.545870437506686], [-77.37451111808655, 34.546248719952715], [-77.37394184733742, 34.546217870527016], [-77.37372729830915, 34.54636417314451], [-77.3735686281499, 34.54651876364613], [-77.37355969927467, 34.54653100142193]], [[-77.3544951643866, 34.76444097827633], [-77.3544211499444, 34.76456206987111], [-77.35458233927412, 34.764518179148425], [-77.35569609789786, 34.76459945002891], [-77.35672185344238, 34.76436964880901], [-77.35697987627748, 34.76430486006512], [-77.35718115073443, 34.76426675174607], [-77.35761850679876, 34.764168766420035], [-77.35816852130493, 34.764045538090166], [-77.35825930483666, 34.76402519862721], [-77.35830234370027, 34.763983212699294], [-77.35829736653972, 34.76395880387687], [-77.35829631884627, 34.763947254198946], [-77.35829869010897, 34.76388960645161], [-77.35822194801196, 34.76361022407731], [-77.35830311947149, 34.76347062975542], [-77.35829999402512, 34.76334293796624], [-77.3582635094886, 34.76318403468169], [-77.35822892565506, 34.763098534605994], [-77.35820174183073, 34.76303442572481], [-77.35817904756692, 34.76300027615498], [-77.35812429141458, 34.76289687758983], [-77.35804308149807, 34.76270709944475], [-77.35777295843967, 34.76277285123428], [-77.35787162998544, 34.762325406198045], [-77.35775598056168, 34.76208357885658], [-77.35773207246028, 34.76201584817809], [-77.35767312352996, 34.76191828997552], [-77.3572270716567, 34.76175460940274], [-77.35665512337289, 34.76223467947673], [-77.35626795580359, 34.76263090007933], [-77.35585042899402, 34.76308831347255], [-77.35553017677456, 34.76336383856087]], [[-77.3836362495195, 34.56224652435854], [-77.383791592785, 34.562449375676714], [-77.3840021790093, 34.56244914758254], [-77.38403014033652, 34.562446266368354], [-77.38405602290942, 34.56243914274698], [-77.38481802795854, 34.56239140556912], [-77.3850423166279, 34.5622690386045], [-77.38515884502515, 34.561770271607834], [-77.38560611562355, 34.561387312674206], [-77.38577534388298, 34.56131420601507], [-77.38608329531907, 34.56093485053118], [-77.38570014950524, 34.56037479832755], [-77.3856063260391, 34.5603989341438], [-77.38554662497606, 34.560433716366234], [-77.38525767355264, 34.560539718858195], [-77.38521236088165, 34.5605699258354], [-77.3852005648989, 34.560560669256304], [-77.384893618646, 34.56067327205299], [-77.38481839415384, 34.56074061229228], [-77.38462272083362, 34.56084214023754], [-77.38434247279089, 34.56100794622753], [-77.38418688956463, 34.5611186820545], [-77.38403040040352, 34.56132070277173], [-77.38385630262935, 34.561353975338115], [-77.38382634655888, 34.56137532478946], [-77.38368439969574, 34.56156397780845], [-77.38364823848724, 34.56162091260773], [-77.38363638094057, 34.56168893579277], [-77.38361276519856, 34.56202522653667], [-77.38359717825672, 34.56209498780954]], [[-77.42531324443772, 34.731956419898346], [-77.42521749308328, 34.73203595684157], [-77.42504685274568, 34.732177699930745], [-77.42491398988278, 34.73228789835799], [-77.42475136641141, 34.732319082868926], [-77.42453030397468, 34.73240882035813], [-77.42433352328746, 34.73242693158779], [-77.42409343015422, 34.73244283112424], [-77.42400564604624, 34.732452116754125], [-77.42383826585531, 34.73243077275961], [-77.4237031159085, 34.73238975866614], [-77.42358049178966, 34.7323525453734], [-77.42342962208448, 34.73241612498131], [-77.42338968095575, 34.73241469326387], [-77.4233549720615, 34.73263234817522], [-77.42334389058355, 34.732665692725845], [-77.42333732953992, 34.732703096048816], [-77.42330708586886, 34.732875507953366], [-77.423297688805, 34.73292907876921], [-77.42328634695713, 34.73299373612868], [-77.42326484493775, 34.73311631309737], [-77.42333499245711, 34.73322165530588], [-77.42340131315524, 34.73343207647193], [-77.42368354567645, 34.73334349618816], [-77.42372187302907, 34.73333146691554], [-77.42375394914455, 34.733321399564936], [-77.42397805209194, 34.73326522108857], [-77.4240999295687, 34.73323370456267], [-77.42411650387332, 34.73322842274023], [-77.42413675484681, 34.733222383178244], [-77.42452499389594, 34.733148024987784], [-77.42478614312327, 34.73307815318853], [-77.42497269157931, 34.73295551676998], [-77.425236091444, 34.73281421819771], [-77.42529146242705, 34.73278740848718], [-77.42553271627534, 34.732714111096854], [-77.42562073795449, 34.73269486231628], [-77.42577598051493, 34.73267723517837], [-77.42603354995659, 34.73262152897706], [-77.42620437955875, 34.732608784273225], [-77.42630062717072, 34.73258108764152], [-77.42640448322985, 34.732479767359806], [-77.42647718585546, 34.7323632686306], [-77.42647574429806, 34.732223428055114], [-77.42649437304877, 34.73208974399851], [-77.4264206203283, 34.73186187131847], [-77.42638692437086, 34.73181409574531], [-77.42596246060725, 34.731757510027904], [-77.42580086829906, 34.73178791906393], [-77.42571398907313, 34.73181696629416], [-77.42557373800302, 34.73187019846898]], [[-77.32417407269253, 34.55909204989108], [-77.3240487701703, 34.55903057156541], [-77.32363669425906, 34.558937432096606], [-77.32357970229808, 34.55860834030414], [-77.32354215706799, 34.55852630599704], [-77.3234087238805, 34.55823475755652], [-77.32270755563817, 34.55873364421212], [-77.32267637272618, 34.558779068951644], [-77.32256114087558, 34.55924430223312], [-77.32266117911273, 34.559675050321246], [-77.32337255415578, 34.55978612154209], [-77.3236282282469, 34.559909056894654], [-77.3236436646707, 34.560068027907064], [-77.32415246632266, 34.56059142647813], [-77.32428012955927, 34.56068797508174], [-77.32487685347552, 34.560671569403425], [-77.32494049824663, 34.560431133354996], [-77.32499424655092, 34.559931391902566], [-77.3250504511726, 34.55986589926308], [-77.325739149926, 34.5593322927803], [-77.3258338569671, 34.559322609296714], [-77.32652724267334, 34.55921392411189], [-77.32689485628381, 34.55936941588222], [-77.32730569121394, 34.55950993104816], [-77.32732504362522, 34.55952673766524], [-77.32734621525796, 34.559536004452305], [-77.32769877986959, 34.55965408943675], [-77.3278752022166, 34.55969435378058], [-77.32809265235754, 34.559723981996456], [-77.32837568058441, 34.55969304205381], [-77.32848670700758, 34.55959160964255], [-77.32863004799275, 34.55935150125857], [-77.32849202546016, 34.55915183804675], [-77.32848069769815, 34.55913545128784], [-77.32847581103204, 34.55912885354315], [-77.32846040454453, 34.55911075753667], [-77.32829166170906, 34.5589105040157], [-77.32810976730978, 34.558704292760574], [-77.32796631778052, 34.55855917295132], [-77.32785135603277, 34.558484153567264], [-77.32768851544373, 34.55828662270143], [-77.32767619534509, 34.5582321606954], [-77.32766239372184, 34.55802168131152], [-77.32775439333068, 34.5577541748524], [-77.3275952153158, 34.557541707374675], [-77.32757608202496, 34.55740639064539], [-77.32735653736536, 34.557324675013845], [-77.32712539218949, 34.55726458229683], [-77.32693487664451, 34.55714697591845], [-77.32657783669941, 34.55704038695633], [-77.32589407069287, 34.55723046815206], [-77.32578880017601, 34.5572001608098], [-77.32567539671496, 34.55725810179476], [-77.32568003827872, 34.55739231811974], [-77.32566742422961, 34.557818735570834], [-77.32562363970288, 34.55822658611736], [-77.32565048024233, 34.55831079976987], [-77.32553872624891, 34.55846441482475], [-77.32566492888085, 34.558798348392685], [-77.32554760094267, 34.55918324925817], [-77.3249581065207, 34.55914794844749], [-77.32464572447147, 34.55913967649093]], [[-77.4161417333516, 34.73251603128045], [-77.41598021955191, 34.73248904689874], [-77.41587648791837, 34.732477598156315], [-77.41562341192997, 34.73248245310192], [-77.41516234566106, 34.73292443770449], [-77.41467999538371, 34.733270784717355], [-77.41458754834598, 34.73336303199697], [-77.41385407263147, 34.73410018920091], [-77.4125794912703, 34.73537482560096], [-77.41231709145711, 34.735636468737084], [-77.41187281911071, 34.73608149786493], [-77.41256748813413, 34.736045730963106], [-77.41498607733686, 34.735921154879726], [-77.41570908058151, 34.73519602652188], [-77.41602501585672, 34.73485923620449], [-77.41684913736859, 34.73406725282854], [-77.41696541825696, 34.73395798992459], [-77.41744740492662, 34.7331201808359], [-77.4171867108557, 34.732751031362355]], [[-77.3800707177461, 34.642910673017894], [-77.38151425476569, 34.64330096347732], [-77.38022946162513, 34.641931707212265], [-77.38012592976416, 34.641887416624414], [-77.38007097145581, 34.64176001978291], [-77.37951637154825, 34.6414372023863], [-77.37928232944975, 34.64182258074931], [-77.37920782299713, 34.641310097211594], [-77.37893668229404, 34.64126880328314], [-77.37849385183202, 34.641194445773294], [-77.37772680626405, 34.64141977644281], [-77.37766633939135, 34.641409963719795], [-77.37691653927263, 34.641451105627674], [-77.37666856005069, 34.64101348848648], [-77.37643621481388, 34.64111168059799], [-77.37644185756221, 34.6412901539212], [-77.37686922242828, 34.64156658534627], [-77.37690334264714, 34.641575845355604], [-77.37691650528144, 34.641582173482625], [-77.37696813245437, 34.641607934433424], [-77.37768524912107, 34.64147049359913], [-77.37765792433515, 34.6418775523308], [-77.37770505431915, 34.64189390043748], [-77.3780236839038, 34.641906358477804], [-77.37821848562233, 34.64192507476866], [-77.378493773572, 34.64152012039875], [-77.3786960881667, 34.64193464122684], [-77.37921712976251, 34.642077531585564], [-77.37928226462421, 34.64210373440997], [-77.37991069567715, 34.64215010162133]], [[-77.48382684535042, 34.68875602233106], [-77.48396943779997, 34.68904120016097], [-77.48447323085054, 34.69004881327645], [-77.48485449744466, 34.69081134952628], [-77.48511962888662, 34.691341590328506], [-77.48521001612771, 34.69195148826104], [-77.48506015684029, 34.69299268602681], [-77.4850533625934, 34.69301463693417], [-77.48501382319415, 34.69305090950235], [-77.48429592273808, 34.69386800185117], [-77.48343579570607, 34.69427691158373], [-77.48294263007344, 34.69339546989642], [-77.48212346740456, 34.692472762273255], [-77.48202798962421, 34.69103059692078], [-77.48201838355126, 34.690837031354675], [-77.48227481053665, 34.69067594785247], [-77.48236021416625, 34.69020129881663], [-77.48301241512235, 34.68898835391048], [-77.4832949610473, 34.6882758228051]], [[-77.39978675360815, 34.588261576552476], [-77.39941950329647, 34.58867043426899], [-77.39899861971534, 34.58889460614551], [-77.39894281585029, 34.58907477232075], [-77.39871914286442, 34.58916716088764], [-77.39847864333106, 34.589490789543916], [-77.3982104715895, 34.58958075814386], [-77.39803932834194, 34.589449638486585], [-77.39800234581875, 34.589470902323946], [-77.39781640494115, 34.58965512597639], [-77.39778375805875, 34.5896915090098], [-77.39774740133092, 34.58973192674336], [-77.39757464056092, 34.589920954323915], [-77.39752391670395, 34.58997645386801], [-77.39746992405168, 34.59003553006445], [-77.39742231806545, 34.59011681405268], [-77.39738979334358, 34.59017304946381], [-77.39737282771897, 34.590210536522385], [-77.3973704662218, 34.59026673489611], [-77.39737609543707, 34.590422351486446], [-77.39742229706883, 34.5905374318515], [-77.39755744546896, 34.59046286950691], [-77.39763232548722, 34.5903993806601], [-77.39781637467198, 34.59032145414325], [-77.39808604361681, 34.59024167610733], [-77.39821044659728, 34.59019359292246], [-77.39831604081013, 34.59018823227969], [-77.39894010871677, 34.590047429847], [-77.39899858252129, 34.590069894022555], [-77.39921801597875, 34.59018075690413], [-77.40016737859077, 34.59024636331468], [-77.400237998677, 34.59064631686463], [-77.40004679830761, 34.59095414277031], [-77.39978668274406, 34.59149977751573], [-77.39976099213774, 34.59153661055917], [-77.39972884559835, 34.59156892695027], [-77.39976152288104, 34.591591317381386], [-77.39978668053156, 34.59160665141418], [-77.40014078088267, 34.59197712590961], [-77.4001807458463, 34.59205940084339], [-77.40041026526889, 34.59231975868988], [-77.4005253694466, 34.59235642552559], [-77.40057481622658, 34.59244451489047], [-77.40078378621993, 34.59269043941856], [-77.4009083290787, 34.59273771766982], [-77.40123111977907, 34.59305046873298], [-77.40122993510425, 34.5931939666394], [-77.40125198641505, 34.59377703844346], [-77.40120772002662, 34.59390299421799], [-77.40123135062876, 34.59404138487326], [-77.40120836908548, 34.594327475413436], [-77.4011872160337, 34.594565752804364], [-77.40119879859455, 34.594753430888275], [-77.40120682978917, 34.594920489334285], [-77.40120609536628, 34.59496466547436], [-77.40125666582526, 34.59505513017484], [-77.40129417857614, 34.59516424338423], [-77.40118804839585, 34.5953680075841], [-77.40136296832641, 34.595182203301825], [-77.40137480925597, 34.59516536632517], [-77.4013847939342, 34.595151168734624], [-77.40146495223614, 34.595037188866186], [-77.40147644788662, 34.59501568564248], [-77.40152980160187, 34.5949179583279], [-77.40153605821826, 34.59489124873923], [-77.4015600118052, 34.5948477255752], [-77.40162717047356, 34.594691621495755], [-77.40165293259486, 34.59457572723642], [-77.40175705314809, 34.59438966686007], [-77.40180044322652, 34.59428879225088], [-77.40183114510069, 34.594237614596764], [-77.40196590738974, 34.59401861022468], [-77.40201439132035, 34.593933921170645], [-77.40206385524564, 34.593779460748785], [-77.40204126754598, 34.593664354747546], [-77.40215113151888, 34.59367057430544], [-77.40233687725775, 34.59331548918915], [-77.40240137182984, 34.59315121780367], [-77.40245222537692, 34.59297444292514], [-77.4024449400798, 34.592875320577456], [-77.40248050841834, 34.59280048851241], [-77.40254519673466, 34.59245020335391], [-77.40254728368743, 34.59243822575445], [-77.4025470092397, 34.59243601672387], [-77.4025467102975, 34.5924344289229], [-77.40254519642744, 34.59242675207921], [-77.40242566439217, 34.592157731347214], [-77.4022875134636, 34.59204888681244], [-77.40223215809152, 34.59196956032877], [-77.40215111603833, 34.5918627886597], [-77.4017688858543, 34.5916863852017], [-77.40115212292466, 34.59136356668223], [-77.40111668067638, 34.590784888234126], [-77.40113766187037, 34.59051650601606], [-77.40122688171348, 34.59035700538481], [-77.4011447479441, 34.59009090930991], [-77.40112173839083, 34.58992956710859], [-77.40108681029963, 34.58967469470972], [-77.40115478545019, 34.58944057574644], [-77.4013629759505, 34.58922782524655], [-77.40137265235343, 34.589219300396785], [-77.40151534247097, 34.58918828491991], [-77.40173941993308, 34.589136970068296], [-77.40178798601265, 34.589115596914866], [-77.40215109644424, 34.58901586926321], [-77.40250360556061, 34.58900090910207], [-77.40254515555948, 34.58896301668649], [-77.40269653831258, 34.58875636894474], [-77.40261305321187, 34.5886053078695], [-77.40254515000348, 34.58842521191613], [-77.40238832414695, 34.58838213275344], [-77.4023250602819, 34.58798515976359], [-77.4022888265703, 34.587802944816865], [-77.40242597588687, 34.587486972985886], [-77.40249979171821, 34.58729906601255], [-77.40273919245013, 34.587104290187455], [-77.40293918567885, 34.58694795283498], [-77.40300638143745, 34.58692264613758], [-77.4030509465044, 34.58684381320614], [-77.40333322687664, 34.58647926731787], [-77.40334646705121, 34.5863908572833], [-77.40335432291018, 34.586375455902484], [-77.40349831001502, 34.58617679674943], [-77.40345991555185, 34.58607215344338], [-77.40334398126733, 34.585952372532994], [-77.4033332166099, 34.58590835023574], [-77.40319641025185, 34.58569649543489], [-77.40293916633058, 34.58548534811907], [-77.40277257871841, 34.585365174982286], [-77.4021510800738, 34.58541539220323], [-77.40143556165432, 34.585378623487756], [-77.40137522150015, 34.58537415640345], [-77.40136299461051, 34.58537985448597], [-77.40134798949994, 34.58537509246733], [-77.4005749084255, 34.58541688659998], [-77.39989399005624, 34.58560106371364], [-77.39982655543176, 34.58565361170725], [-77.40036032964791, 34.586382924006706], [-77.40043133309467, 34.58652735808511], [-77.40057488488517, 34.586976882008685], [-77.40065518423351, 34.587189527970274], [-77.40057487908464, 34.58737935989322], [-77.40037230966709, 34.58786124012434], [-77.39991293799287, 34.58814577396278]], [[-77.36424466977142, 34.77937343876368], [-77.36559063984389, 34.778985442516884], [-77.36563342855044, 34.77855350690954], [-77.36516970208612, 34.77746024681077], [-77.36484875554318, 34.77709511124538], [-77.36511448137345, 34.77632249560962], [-77.36497553885994, 34.77565968875476], [-77.36444996821028, 34.77608996718422], [-77.36404164488417, 34.776452151646815], [-77.3639777311948, 34.77656518447148], [-77.36370026804013, 34.776946066394274], [-77.36362989310395, 34.77727624082886], [-77.36311416700413, 34.777650294268895], [-77.3629784164019, 34.77770827071382], [-77.36286360669342, 34.77777173507106], [-77.36284826415942, 34.777927855056795], [-77.36255258051591, 34.77850934900747], [-77.36246593932594, 34.77875102277724], [-77.36195418199512, 34.77902820993178], [-77.36190194939516, 34.77911288828589], [-77.36192638343027, 34.779204095955436], [-77.36164468741921, 34.77958208776432], [-77.36148548507595, 34.77975921102135], [-77.36117480659811, 34.779909056315546], [-77.36111606040217, 34.779956327150806], [-77.36098123592748, 34.7800437518314], [-77.360835991638, 34.780137933148126], [-77.36081295296678, 34.780156844441066], [-77.36065002653216, 34.7803524694572], [-77.36056377241722, 34.780498096198116], [-77.36047297277386, 34.78070155415344], [-77.36052564202154, 34.78086816992064], [-77.36074963571372, 34.781372734606386], [-77.36087903398666, 34.781425044987046], [-77.36175407456633, 34.781696062459446], [-77.36193202641417, 34.78172020722906], [-77.3622692993944, 34.781738882609595], [-77.36285705712211, 34.782953737506666], [-77.36433429007414, 34.78292070497419], [-77.36522846300926, 34.78050711662775]], [[-77.44511937616986, 34.6811423273798], [-77.44505717885988, 34.68127653127997], [-77.44494591313898, 34.68127594508159], [-77.44490096102325, 34.681279539709585], [-77.44476464925611, 34.68129043941805], [-77.44440027569647, 34.681046870769265], [-77.44482570294745, 34.681079475039695]], [[-77.43814580793233, 34.677263804821536], [-77.43829346099078, 34.677234499837546], [-77.43834974965007, 34.67722332814353], [-77.43838726625367, 34.67721588210111], [-77.43848229445422, 34.677300532737064], [-77.43865964764603, 34.67758962755944], [-77.43862460650021, 34.6776726395285], [-77.43852295786502, 34.677873798265935], [-77.43851282338817, 34.67788946589355], [-77.43839340862422, 34.67804242600772], [-77.4381663892741, 34.677979607278246], [-77.43811810226312, 34.67796624561366], [-77.4379391541953, 34.6778904209049], [-77.43788839914475, 34.6778330917454], [-77.437714770388, 34.67759118316121], [-77.43772673838984, 34.67753269967655], [-77.43794186618001, 34.67730428111976], [-77.43804739594802, 34.67728333667732]], [[-77.42746039276027, 34.67961102823228], [-77.42744261501595, 34.679610704443604], [-77.42743867582121, 34.679595192440466], [-77.42744459101957, 34.6795851909548], [-77.42748014658677, 34.67948099497139], [-77.42777620783711, 34.6786316432507], [-77.42842423707339, 34.67918385001067], [-77.42870789525274, 34.67966683145987], [-77.42879612295944, 34.67992139750824], [-77.4289432661487, 34.680114106964545], [-77.4289162538551, 34.680495700562], [-77.42844666760843, 34.68056966961225]], [[-77.45583594309828, 34.74321454113579], [-77.45579405702995, 34.743203899423776], [-77.45527931436446, 34.74300613622802], [-77.45525744333301, 34.742997733399015], [-77.45517243007755, 34.74301690640089], [-77.45487164071679, 34.74308798966541], [-77.45463408715811, 34.743241590354195], [-77.45455533917665, 34.74329111965372], [-77.45459615500795, 34.74338565146087], [-77.4547204113407, 34.743652001035464], [-77.45487440530964, 34.7438399149143], [-77.45497724097169, 34.743966700511706], [-77.45499455791034, 34.74398402271048], [-77.4550242755557, 34.74401386363058], [-77.45548081601757, 34.74444262991887], [-77.45566172011739, 34.74459845503227], [-77.45586134529381, 34.74470372144895], [-77.45602202040325, 34.74478844862983], [-77.45612244531648, 34.74485260557959], [-77.45645112532218, 34.74507109668282], [-77.4565354796188, 34.74512666024128], [-77.45656035623801, 34.74514420049728], [-77.45661191605585, 34.74518162418209], [-77.45682623857877, 34.745333443699025], [-77.45692645071452, 34.745409922996885], [-77.45708173124603, 34.745558620826756], [-77.45732551393426, 34.745599152464294], [-77.45738754777025, 34.74560976491366], [-77.45770553482402, 34.745509109052605], [-77.45771683283914, 34.74549057776025], [-77.45779482268559, 34.7453100212333], [-77.45792898495847, 34.74502815184127], [-77.45791311147646, 34.74490092419904], [-77.4578326527797, 34.744585248208104], [-77.45753523144751, 34.743990239520656], [-77.45746244234608, 34.74384687935526], [-77.45699925848393, 34.7436263354455], [-77.456537318557, 34.743424245070244], [-77.45643932433761, 34.74338102333093], [-77.45643110210676, 34.74337374351018], [-77.45640708105725, 34.74335246086564], [-77.45630044142948, 34.74334152906218]], [[-77.38565321460793, 34.665487765575534], [-77.38630550976288, 34.665067579292426], [-77.3862729750106, 34.66496641053925], [-77.38615025104012, 34.66460154187774], [-77.38605279369916, 34.664518343437614], [-77.38593215243718, 34.664525389611335], [-77.38551522113274, 34.66414384214408], [-77.38525411940235, 34.66406347859652], [-77.38482265811328, 34.664224608425364], [-77.3843107029661, 34.66428310098127], [-77.3841412529841, 34.66435331952873], [-77.38343412643154, 34.66488647681339], [-77.38336185383454, 34.664938697303626], [-77.38337698537448, 34.664983157094895], [-77.38339052395565, 34.664991915469066], [-77.38340194974664, 34.6649974803375], [-77.38351769830675, 34.665076815218626], [-77.38417849566586, 34.66517354083638], [-77.38413355494285, 34.66536645739894], [-77.38432410840244, 34.66545567681446], [-77.38431999829255, 34.66558450402429], [-77.38437098546018, 34.66561671811116], [-77.38440002831302, 34.665682669730465], [-77.38441366897787, 34.665693465413135], [-77.38448342684731, 34.66572725510918], [-77.38453208768902, 34.66574313875857], [-77.38464160559434, 34.66575383819688], [-77.38468595189093, 34.665728382694404], [-77.38497293185951, 34.66572844032774], [-77.38498680836516, 34.665722577632124], [-77.38547377795352, 34.66553424712252]], [[-77.40430357447289, 34.679855354840754], [-77.40427108084153, 34.67983455870004], [-77.4040314751216, 34.679688589939005], [-77.4038690041077, 34.679609596916464], [-77.40375491109485, 34.679537241525], [-77.40357663743357, 34.67944665379892], [-77.40315333250308, 34.67940182004544], [-77.40308562500563, 34.67939157142949], [-77.40284450148188, 34.6793618727771], [-77.40283328664798, 34.67936491662409], [-77.40272522071547, 34.67955017467921], [-77.40271668335417, 34.67964391457808], [-77.40288735253702, 34.67994297982775], [-77.40290977491459, 34.6800097041229], [-77.40296491988701, 34.68005227224778], [-77.4031428981775, 34.680358796528296], [-77.40318501492925, 34.68039857051207], [-77.40326812752804, 34.6805297275262], [-77.40335280177446, 34.68057695043449], [-77.40345556686674, 34.680570682181894], [-77.40359091713762, 34.68061825390154], [-77.40389249277636, 34.68071166057808], [-77.4040579701551, 34.680703285339376], [-77.40423721145375, 34.680795006862496], [-77.40433835583994, 34.68084145454344], [-77.40441692761596, 34.680821406839655], [-77.40465967856547, 34.680618787395375], [-77.40468789753399, 34.68057318914096], [-77.40470595825434, 34.6805460281239], [-77.40477173719434, 34.68045140951782], [-77.40483487285822, 34.68034506356324], [-77.4048694498866, 34.68030812001359], [-77.40481117540295, 34.68031524857878], [-77.40466730408114, 34.680169273315755], [-77.40440115751997, 34.67991369450264]], [[-77.47447261588792, 34.56805316982146], [-77.47448486850219, 34.56794290633457], [-77.47496596572749, 34.56720356759508], [-77.4745807441412, 34.567080084878995], [-77.47460510603645, 34.56686084915198], [-77.47482124016184, 34.5665063260157], [-77.47501626089988, 34.56604629867472], [-77.47567182060742, 34.56626344269832], [-77.47563578891021, 34.56670341456108], [-77.4760363237211, 34.56689792316637], [-77.47553767191383, 34.56718712321536], [-77.47550092601597, 34.56781553898538], [-77.47488216026463, 34.56819645499206], [-77.47446311038499, 34.56813870476462]], [[-77.39306373801156, 34.54115718951185], [-77.39247109202691, 34.5410760919377], [-77.39133513110251, 34.5409206447022], [-77.39090356033307, 34.54086158340945], [-77.39090522952492, 34.54059135385768], [-77.39111385735595, 34.54041616918347], [-77.39089009112828, 34.539906010913604], [-77.39101552931398, 34.539596106977385], [-77.39108348542368, 34.53940812155541], [-77.39114891957095, 34.53922710862128], [-77.39114687761791, 34.539087490252655], [-77.39100733441387, 34.538851446780626], [-77.39078001340087, 34.53865075086511], [-77.39060468072867, 34.538492410145395], [-77.39036293831091, 34.53856111309829], [-77.39000857898279, 34.53876204232267], [-77.38987628743536, 34.5388211177809], [-77.38981088253615, 34.53887818158188], [-77.38947231145052, 34.539329070290734], [-77.38936434650941, 34.53956546949982], [-77.38907760498626, 34.53987567515718], [-77.3889964923652, 34.54017730737917], [-77.3889740483512, 34.540368975662666], [-77.38897269682114, 34.54038047443737], [-77.3889658781359, 34.540397457034985], [-77.38893340487542, 34.54063097524369], [-77.3888831154647, 34.54070157098127], [-77.38887008504486, 34.5408150692204], [-77.38892605350885, 34.54087686857998], [-77.38893548432867, 34.54090335214832], [-77.38897792989509, 34.5410009546189], [-77.38920943712284, 34.541178770623276], [-77.38923143536812, 34.541322482131946], [-77.38925871363159, 34.54150068715262], [-77.38945077441747, 34.54178050775883], [-77.3895559066498, 34.541882157390816], [-77.3896330945037, 34.54199904082926], [-77.38973920256612, 34.542060064063264], [-77.38989650346954, 34.54210711142841], [-77.39000555795755, 34.54211215931333], [-77.39013074589928, 34.5421056755524], [-77.39046709573925, 34.542088254441246], [-77.39052512332029, 34.54202544185823], [-77.39071136762252, 34.541972904854845], [-77.39131789295448, 34.541686492387086], [-77.39281413896751, 34.5413462215002], [-77.39310792185611, 34.541385728701485]], [[-77.41176861779589, 34.62226701662373], [-77.4118886027117, 34.62208196612694], [-77.4121653998083, 34.62178800651156], [-77.41240121252658, 34.6216209725793], [-77.41245098828745, 34.62157620833551], [-77.41260215796083, 34.62134627811348], [-77.41260109445606, 34.621339213711224], [-77.41255837259627, 34.62130544675305], [-77.41240114451264, 34.621175139578234], [-77.41238625924142, 34.621177004353186], [-77.41236617677458, 34.62116387090544], [-77.41200691515189, 34.62104333727481], [-77.41175715610291, 34.62109620958345], [-77.41161271394816, 34.62110035758787], [-77.41126666733658, 34.62084608782227], [-77.41121846750637, 34.62083457090777], [-77.41104191782674, 34.62069599180609], [-77.41099713788591, 34.62069854179667], [-77.41082426892903, 34.6209093819589], [-77.41076839216854, 34.62096991975066], [-77.41072764695332, 34.62129625856189], [-77.41066088605567, 34.62141001536175], [-77.4100360034008, 34.62213656097913], [-77.40995388874956, 34.62227275665759], [-77.40976034903937, 34.622389146386354], [-77.40882772836027, 34.62382527542819], [-77.41003611288627, 34.623010815268245], [-77.4105469631739, 34.622825827201446], [-77.41161295984602, 34.62281260347015]], [[-77.33360426573273, 34.56389121731182], [-77.33331319098284, 34.56430861166152], [-77.33341135821382, 34.564607796275126], [-77.33343708197414, 34.564783458327454], [-77.3334363406399, 34.564816474946426], [-77.33347641858866, 34.56488610594999], [-77.33355163731468, 34.56501217053266], [-77.33360328785035, 34.565064451148885], [-77.33378280565633, 34.56520989649644], [-77.33399694393228, 34.56537269557944], [-77.33399699245774, 34.56537273217235], [-77.33399724414707, 34.56537292381708], [-77.33422047728905, 34.56552413494639], [-77.33423175477229, 34.56555120983041], [-77.33439070970869, 34.565669190302], [-77.3344274290622, 34.56569575709507], [-77.33447598156724, 34.56572837010397], [-77.33458758093875, 34.56580333200938], [-77.33475166733116, 34.56572425533532], [-77.3347846173356, 34.56573641822936], [-77.33487027548163, 34.56576401631564], [-77.33486909593964, 34.5655809564524], [-77.33502320490305, 34.56522515959817], [-77.33510678198915, 34.56513524540468], [-77.3351791674489, 34.56501499162054], [-77.33527613372785, 34.56476425648565], [-77.3352037565836, 34.564376058723724], [-77.33519979446706, 34.56435069109622], [-77.33519401932304, 34.5643361122647], [-77.33517974116005, 34.56431057753814], [-77.33484776829656, 34.56404331936353], [-77.3347860465104, 34.56399146961359], [-77.33478095015013, 34.563991857938454], [-77.33477979349964, 34.563986532570354], [-77.33475472138872, 34.563956348725895], [-77.33447347869229, 34.56360602893364], [-77.33445184765068, 34.563545139595334], [-77.33439246118968, 34.563543463947546], [-77.33431093405682, 34.56354153768868], [-77.33399850343741, 34.56354956160901], [-77.33373605835668, 34.563712039951184], [-77.33366323812521, 34.5637859644701]], [[-77.34825478653595, 34.727321285609015], [-77.34954777378397, 34.72803024304338], [-77.35042800867384, 34.72821298747285], [-77.35073946973229, 34.728050932042436], [-77.35093105014468, 34.7280951502583], [-77.35173360857793, 34.72799703683172], [-77.35181684129203, 34.728294585812776], [-77.35186335739085, 34.72830505878545], [-77.3518977854323, 34.728313488418515], [-77.35211117352992, 34.72825418746772], [-77.3523983644818, 34.72811877563368], [-77.35263111242594, 34.72769544060616], [-77.35263732358771, 34.72769225456757], [-77.3526555466319, 34.727639383099806], [-77.3528003246129, 34.72719843122834], [-77.35280227660041, 34.72718456434141], [-77.35280402891215, 34.7271735833702], [-77.35282126745652, 34.727068791884726], [-77.35287171159867, 34.726727313868395], [-77.35283485638779, 34.726692709974124], [-77.35286461526043, 34.72633857053748], [-77.35287902382636, 34.72619926502914], [-77.35298824467202, 34.72608843869493], [-77.3530696367894, 34.72578664557478], [-77.35294043587896, 34.72570345302472], [-77.35279233137716, 34.72560577649752], [-77.35265819952835, 34.725568394107434], [-77.35185602740113, 34.72553767152967], [-77.35051404886867, 34.725172577353234], [-77.35034978403924, 34.72526918001366]], [[-77.42575568057211, 34.68322600933906], [-77.4258240579529, 34.68339368900912], [-77.42589650498586, 34.68352102356798], [-77.42595894569192, 34.68363077099058], [-77.42598686924892, 34.68355263124512], [-77.42599215221102, 34.68354672673698], [-77.42607693590392, 34.683332142053146], [-77.42609038393522, 34.68330929987778], [-77.42615978470667, 34.68328062960186], [-77.42616974971193, 34.6832494214389], [-77.42612950389797, 34.683183213950905], [-77.42615623630009, 34.683087850883055], [-77.42615350692219, 34.68305184043695], [-77.42614732163497, 34.682979809964785], [-77.4258405950964, 34.682940411599866], [-77.4258651941486, 34.68284757163003], [-77.42572849411786, 34.68276240583293], [-77.42582701075563, 34.68293763800098], [-77.42582955304292, 34.682945019774195], [-77.42574101415853, 34.68318709683007]], [[-77.43761520961226, 34.58680504726124], [-77.43755850820112, 34.58689277023916], [-77.43682721659445, 34.58702354099436], [-77.43669814263387, 34.586939275250565], [-77.43643310828762, 34.586867698655965], [-77.43633194490513, 34.58681565887599], [-77.43603909618112, 34.586942563111656], [-77.43577842184504, 34.58664286999142], [-77.43564488374099, 34.58652604409261], [-77.43558324331528, 34.586456728359536], [-77.43550302411921, 34.586401937915824], [-77.43544780628807, 34.58638539528461], [-77.43532278147674, 34.58635040564833], [-77.43525076807029, 34.58634093654395], [-77.4351624542555, 34.58633404170863], [-77.43514215399475, 34.58633708104796], [-77.43507455960491, 34.58644150563853], [-77.43505780042574, 34.58646631105093], [-77.43506772336508, 34.58647987583953], [-77.43514206217519, 34.58657136171228], [-77.43521857078144, 34.58665536233829], [-77.43525090865695, 34.58669150268849], [-77.43535920626357, 34.5867306475426], [-77.43547980557292, 34.586829887540745], [-77.43557726868538, 34.58688881107477], [-77.43564508146096, 34.587013097480714], [-77.43587766597587, 34.587196954183824], [-77.43595007377976, 34.587282558938426], [-77.43593914911358, 34.58740036086729], [-77.4360393273685, 34.587505163299845], [-77.43613343718741, 34.58748314970493], [-77.43635104831489, 34.587553099952686], [-77.43641653636867, 34.58756179826228], [-77.43647158534912, 34.58757681311167], [-77.43682725514664, 34.587115242023756], [-77.43713463485719, 34.587533369467565], [-77.43753311264692, 34.58780676847715], [-77.4375817661933, 34.58783624668638], [-77.43761569260339, 34.587928215695854], [-77.43790465400528, 34.588064339411744], [-77.43804113875042, 34.588124158441275], [-77.43840382637048, 34.588016007599464], [-77.43874139735455, 34.58811753780386], [-77.43883686618294, 34.5880848101214], [-77.43919191530145, 34.58800123363116], [-77.43954233382212, 34.58798781038398], [-77.43963573667216, 34.58798093996239], [-77.43967603700747, 34.5878243256072], [-77.43933765412837, 34.58754581156331], [-77.43919163372647, 34.58737425825758], [-77.43901557111198, 34.586932701002766], [-77.4389610029219, 34.58675109280241], [-77.43895337073394, 34.58649588330474], [-77.43885384607039, 34.58628085284153], [-77.43879695878519, 34.58595396786571], [-77.43879090998037, 34.585933010610624], [-77.43879079860248, 34.585926518878075], [-77.43876142997209, 34.58589251134631], [-77.43861101915404, 34.58572817475238], [-77.43856991494016, 34.585713925631644], [-77.43840280346944, 34.58568657026868], [-77.43821136137723, 34.585792057181905], [-77.43820100412427, 34.58579431197739], [-77.43815581986527, 34.58585996945652], [-77.43803623350885, 34.58603563878167], [-77.4380089418975, 34.58609093062331], [-77.43788718315348, 34.586350465037654]], [[-77.44323959781451, 34.622756015507775], [-77.44322851208993, 34.62277509608019], [-77.44319576892522, 34.622795884341954], [-77.44322691328026, 34.622805409782174], [-77.44327463662572, 34.62314265081547], [-77.44337032234064, 34.62323351943063], [-77.44349248163147, 34.623395066201915], [-77.44376848131978, 34.6232737401832], [-77.4438957110503, 34.62323202460943], [-77.44405450744003, 34.62316519855523], [-77.44418566237994, 34.62311000469715], [-77.44427474546802, 34.6228959804987], [-77.44429192793444, 34.62285262411869], [-77.44426935946595, 34.6228295840621], [-77.44410703532864, 34.62264384391842], [-77.44376327351034, 34.6226340917129], [-77.44373099028397, 34.62263035436913], [-77.4432604491998, 34.62276441634801]], [[-77.35484553625099, 34.551174088123844], [-77.35491320240644, 34.55111973603023], [-77.3549852131037, 34.55109938212302], [-77.3551500509352, 34.55102848120271], [-77.35519734241024, 34.55100961355451], [-77.35538240215507, 34.55090026594515], [-77.35542930203036, 34.55087410168545], [-77.35549508440133, 34.55083576124654], [-77.35565628647714, 34.5507361691938], [-77.35577135395044, 34.55067357905508], [-77.35577593959253, 34.550670200618924], [-77.3557803334357, 34.55066869472752], [-77.35584534970582, 34.55060172102393], [-77.35586170114742, 34.550587741708604], [-77.35588096188394, 34.55056082245316], [-77.35590670839245, 34.550531682166806], [-77.35590597037606, 34.550485094331215], [-77.35591139829594, 34.55045237284916], [-77.35589304333911, 34.550411237941674], [-77.35588182443314, 34.55034915882284], [-77.35586566659599, 34.55029276761846], [-77.35588723031694, 34.550229289025054], [-77.35586598738453, 34.55009307907997], [-77.35600804250346, 34.55002744823812], [-77.35619163828333, 34.549853678511695], [-77.35638273280742, 34.54985433706596], [-77.35638868373567, 34.54985065532619], [-77.3565875886954, 34.549708211618714], [-77.35659640047514, 34.5497033484328], [-77.35662632013499, 34.54969361573521], [-77.35678736928102, 34.549556680780626], [-77.35682869277235, 34.549567998958466], [-77.35688200769292, 34.549534393363274], [-77.35683089501269, 34.54951520334362], [-77.35667110365358, 34.54949132285395], [-77.35659245345076, 34.549495971596876], [-77.35655836281346, 34.54948006151566], [-77.35652143775982, 34.54946389205446], [-77.35617646981534, 34.549286302206184], [-77.3561575781896, 34.54927145219776], [-77.35581149078651, 34.549309912644425], [-77.35575568006887, 34.54932931008622], [-77.35558100155757, 34.54945766588078], [-77.35541485309034, 34.54948535842423], [-77.35532579503527, 34.549447274158574], [-77.35531288007068, 34.549451392998414], [-77.35529358123658, 34.549457038588386], [-77.35521806536536, 34.54950630068381], [-77.3551973871721, 34.54951938474943], [-77.35519373708307, 34.54953261733472], [-77.35519080328538, 34.54954942264927], [-77.35531557861094, 34.54963748880847], [-77.35521148073332, 34.54977461720361], [-77.3550139548897, 34.549846453567], [-77.35491034914646, 34.5497616413396], [-77.35462227810933, 34.54980549487843], [-77.35448156821732, 34.54975754638665], [-77.35433286725382, 34.549715878481635], [-77.35423266974988, 34.54967441823088], [-77.35400676832379, 34.54958106992195], [-77.3539095180461, 34.549553483795485], [-77.35384325555849, 34.54953493183344], [-77.35369511643857, 34.54953353536045], [-77.35344986868371, 34.54956853460324], [-77.35317065099788, 34.54962983257637], [-77.35297531903312, 34.54968004256542], [-77.35266018832841, 34.54976223526041], [-77.35257968050675, 34.54978648304148], [-77.35232473939874, 34.54986022864516], [-77.35226485803041, 34.549880354321736], [-77.35208070569243, 34.54998986065171], [-77.35206579805295, 34.550000104601864], [-77.35187220964663, 34.5501331306217], [-77.35186928490015, 34.55013536222137], [-77.35186633976724, 34.550137164157285], [-77.35183155512665, 34.55016034007124], [-77.35165156789229, 34.55027779999377], [-77.35161960762464, 34.550291897098894], [-77.35153079195142, 34.5503432197611], [-77.35154092046702, 34.55038024646184], [-77.3515698843483, 34.550421464190634], [-77.3516541625362, 34.55052744321892], [-77.35165829699315, 34.55053279769311], [-77.35175272859138, 34.55063997000043], [-77.35176542374575, 34.55069310420221], [-77.35184994138808, 34.55085084138479], [-77.35209802444989, 34.55092417085128], [-77.35218282822424, 34.55106771020709], [-77.35233087741678, 34.55123071382613], [-77.3524013593194, 34.55138778854507], [-77.35232898495298, 34.55153631811893], [-77.3522223248085, 34.55173183395003], [-77.35220299632576, 34.551788025820514], [-77.35219892600416, 34.551799858989405], [-77.35220981361037, 34.55180504460549], [-77.35218955001584, 34.55192361927945], [-77.35221708465298, 34.55195994058248], [-77.3522572364738, 34.552010527054215], [-77.352259814485, 34.55203591719663], [-77.35231288178518, 34.55206266307522], [-77.35234693475012, 34.552063340304606], [-77.35241059947089, 34.55208178449239], [-77.35248697805514, 34.552078060506965], [-77.35260665188869, 34.552093166478706], [-77.35270242602634, 34.55215640898662], [-77.3528008848893, 34.5521837742441], [-77.35281811783237, 34.552189554485295], [-77.35297419294751, 34.55216327982849], [-77.35299801243352, 34.552148346621955], [-77.35315713703591, 34.55205371981764], [-77.35320442200634, 34.55202692659048], [-77.35339687247986, 34.55187688661212], [-77.35340109263277, 34.55187424451421], [-77.35341261641763, 34.551869992151055], [-77.35367952328126, 34.5517613449603], [-77.35379287798338, 34.551729672776034], [-77.35396967595912, 34.55168027373158], [-77.35399831770432, 34.55166808522955], [-77.35418957516418, 34.55155225425647], [-77.3542610230506, 34.55150304962643], [-77.35443887023098, 34.551385692593236], [-77.35458770718337, 34.55131222282388]], [[-77.33968933119759, 34.647758569638235], [-77.33973308016127, 34.64779694822929], [-77.33970370615772, 34.64775348036006], [-77.33971281036092, 34.64770784841748], [-77.33963257776108, 34.64770312273184], [-77.33968769467069, 34.64775757020637]], [[-77.34277737358143, 34.65276870557542], [-77.34290680485444, 34.65286598221639], [-77.34305377149627, 34.652898529464615], [-77.34312675694754, 34.65291399103013], [-77.34317177604821, 34.65291549259883], [-77.34343889149909, 34.652924401647425], [-77.34344579726212, 34.65290832195587], [-77.34362275038997, 34.65276240972743], [-77.34349494577248, 34.65227567874532], [-77.34330606714028, 34.65221319984701], [-77.34324876527634, 34.65218897127427], [-77.34298358804607, 34.65216579214463], [-77.34297621312396, 34.65216505870956], [-77.34297032536684, 34.65216613095185], [-77.34268267276032, 34.652218516291605], [-77.34267171635298, 34.65224306657077], [-77.34252864203397, 34.65240834971279], [-77.34268879750954, 34.65272349407499]], [[-77.38690339309778, 34.58887842462748], [-77.38717678582962, 34.58892201883421], [-77.3873195044105, 34.5889592230512], [-77.38753736877919, 34.58904553707273], [-77.3875708247743, 34.58905960352205], [-77.38760121380304, 34.589072380385424], [-77.38778585198423, 34.589238621258104], [-77.38795579333217, 34.58944582446198], [-77.38796482180753, 34.58946023276065], [-77.38812209416236, 34.58967692967373], [-77.38851881222025, 34.58953696349295], [-77.38875293844256, 34.58954124678809], [-77.38889506066133, 34.589581832958324], [-77.38900287002137, 34.58956413165504], [-77.3891470033828, 34.58954046611342], [-77.38930185223238, 34.58950947684755], [-77.38936642722746, 34.58947882676928], [-77.38939747753136, 34.58945023455725], [-77.38946730331259, 34.5893606629623], [-77.38945527655302, 34.58932208292893], [-77.38944258566451, 34.589310035748056], [-77.38941743205604, 34.589262181333005], [-77.38937022528441, 34.58924187996222], [-77.38935319227073, 34.589234519312335], [-77.38934408146496, 34.58923066216918], [-77.38931494240694, 34.589218454696734], [-77.38924557178088, 34.58918939269097], [-77.38921297073705, 34.58919353703569], [-77.38914705779717, 34.589177430572526], [-77.38899372600343, 34.589083884271055], [-77.38896503714206, 34.58907186532172], [-77.38890221741264, 34.58904554737041], [-77.38875299846592, 34.58915304446004], [-77.38864735132063, 34.589035389003016], [-77.38861675721628, 34.58892595526383], [-77.38855600679383, 34.58889943438308], [-77.3884875464656, 34.588870820860265], [-77.3884414896979, 34.588862331406176], [-77.38843089972809, 34.58884661163939], [-77.38835898930962, 34.588815109414654], [-77.3883162169484, 34.58880309098791], [-77.3882384643162, 34.58876821614696], [-77.3881872951689, 34.58874830750662], [-77.38808701844991, 34.588709292074896], [-77.38796491859873, 34.58887085283483], [-77.387774945958, 34.588622763848385], [-77.38762827762133, 34.58858209699672], [-77.38757091204513, 34.58854380609811], [-77.38752557036975, 34.58849529610983], [-77.3874441251071, 34.58845817806625], [-77.38739802250556, 34.58843883486126], [-77.38737390087017, 34.58843301229671], [-77.38733123363615, 34.5884284832971], [-77.38727538729222, 34.58842490647704], [-77.38722210000005, 34.588441456983446], [-77.38717686846968, 34.588447010291674], [-77.38699140451766, 34.58851097637036], [-77.38695990124097, 34.588506522619845], [-77.3867827652639, 34.588688392226736], [-77.38674090651463, 34.58872675692042], [-77.38666584098121, 34.58878267116907], [-77.38668081459116, 34.58889031583408]], [[-77.41870887202845, 34.62283336783803], [-77.41869372766735, 34.62281412643515], [-77.41848361019836, 34.623010087311336], [-77.41842516309984, 34.62304889240184], [-77.41837364410897, 34.623119794603355], [-77.41840719939374, 34.62316418579475], [-77.4184380684218, 34.62317986391279], [-77.4185118234414, 34.623096137514366], [-77.41865959228628, 34.623227332624225], [-77.41869697752092, 34.62323484409623], [-77.41870896732758, 34.62324860314787], [-77.41880080499102, 34.623206941349224]], [[-77.43943583422744, 34.60208219170083], [-77.43939120446828, 34.60192029962814], [-77.43938668673064, 34.60190104808319], [-77.43937030282171, 34.60191298311431], [-77.43937100419839, 34.60191605273723], [-77.43937068516313, 34.60192061084549], [-77.43941511541385, 34.6020835273883], [-77.43941796901034, 34.602087285401474], [-77.43942623256079, 34.60210037112182]], [[-77.39545224965863, 34.58662162557384], [-77.3954149160657, 34.58663160051569], [-77.39536526220613, 34.58667898749438], [-77.3951665461732, 34.58682440757324], [-77.39514877873745, 34.5870371556055], [-77.39511269211238, 34.58713999161976], [-77.39511118120822, 34.58719734428221], [-77.39505814981996, 34.587241410990494], [-77.39493349892888, 34.58745612472015], [-77.39486109738425, 34.58755594658273], [-77.39483161798829, 34.58760510634929], [-77.39477859211274, 34.58773616191723], [-77.39478063574427, 34.587911406552415], [-77.3948610650223, 34.58794818065977], [-77.3949070757899, 34.5879692178237], [-77.3950044578191, 34.58800474680055], [-77.39504021068697, 34.588018850727295], [-77.39505808691386, 34.58802537235041], [-77.3950851651539, 34.58802228009305], [-77.39512421487089, 34.58798747249671], [-77.395317872922, 34.58781485258454], [-77.39545217673142, 34.58758260916594], [-77.39548182766467, 34.587543260523496], [-77.39551989115517, 34.5875058259345], [-77.39584625861934, 34.58719343444587], [-77.39602192090106, 34.58719810312601], [-77.39624030888567, 34.58722484098485], [-77.3963810624816, 34.58722994391677], [-77.39657246964248, 34.58735398827089], [-77.39663435282512, 34.587362374142266], [-77.39665181856643, 34.587361359992975], [-77.39683138000822, 34.58735093373776], [-77.39696486413213, 34.58729738176899], [-77.39701805477621, 34.58727855056836], [-77.39702841098831, 34.587271388400964], [-77.39705588697908, 34.58725464759212], [-77.3972882695361, 34.587106129317846], [-77.39742247746497, 34.58700383885823], [-77.397562236071, 34.58693720958246], [-77.39816777439215, 34.58674540204091], [-77.39821058874738, 34.58679257706633], [-77.39827326607569, 34.586751580022096], [-77.39839393876014, 34.58666663954129], [-77.39875177123409, 34.5863489516002], [-77.39899871201055, 34.586103697455876], [-77.3992187497789, 34.585935569083276], [-77.39975563598202, 34.585621026656796], [-77.39977175307136, 34.58560246963001], [-77.39955199957416, 34.58505428770526], [-77.39912218298954, 34.584996273072605], [-77.3989987447083, 34.58515364620724], [-77.39889996791784, 34.585001773490845], [-77.39866958807804, 34.58492857640149], [-77.39821067090014, 34.58491348851435], [-77.39815811353053, 34.584945742198784], [-77.39805720033303, 34.58501692930119], [-77.39769068644655, 34.58535870207132], [-77.3974225579802, 34.58548114914352], [-77.39734691304409, 34.58554397548407], [-77.3971568753378, 34.58570971146919], [-77.39702849110851, 34.58587504757559], [-77.39679812184553, 34.58604771868497], [-77.39672974603963, 34.586160285296216], [-77.39663442274232, 34.58623365368363], [-77.39650987329394, 34.58622349908681], [-77.39606126135038, 34.58638561123715], [-77.39584631081993, 34.58646195085658], [-77.39550410744938, 34.586603085924835]], [[-77.36353076569755, 34.674048224922196], [-77.36349810442044, 34.67400282824517], [-77.36358101086589, 34.673797625811545], [-77.36351234596951, 34.673742644366236], [-77.3632511562548, 34.67379872590368], [-77.36301553427555, 34.673705667350006], [-77.3628164146239, 34.67407863015329], [-77.36275376953348, 34.67415499309134], [-77.36277071737378, 34.67423611939174], [-77.36283649245397, 34.674512202994585], [-77.36368195363569, 34.67429645082139]], [[-77.3161178983224, 34.641176812453764], [-77.31627948933384, 34.641244438511265], [-77.3162562554794, 34.64105250101028], [-77.31615047390065, 34.64096912804273], [-77.31590429963025, 34.64089397773088], [-77.3160494783499, 34.641168951846694]], [[-77.40102164606257, 34.61467721577181], [-77.40065295270922, 34.614446818249505], [-77.40074516712005, 34.61501489936376], [-77.40114313920354, 34.61490408037115]], [[-77.42475603720885, 34.56900950377943], [-77.42473107555656, 34.569143431129675], [-77.42489716961386, 34.569141174036126], [-77.42500102274695, 34.56917414888109], [-77.42510315980681, 34.569113226766696], [-77.42527098499234, 34.56906545960474], [-77.42524735963582, 34.56893692595367], [-77.42512688548129, 34.56893102199395], [-77.425000950466, 34.568901576020814], [-77.42487348556187, 34.56896931998154]], [[-77.3404367445332, 34.645901798795535], [-77.34025198976359, 34.64606636247033], [-77.34010250078734, 34.64614007012892], [-77.34009230384692, 34.646382502821226], [-77.34006340819758, 34.64664912098646], [-77.34028198585683, 34.64672482834902], [-77.340428131063, 34.64686575444219], [-77.34053313143329, 34.646875717961215], [-77.340634394873, 34.646885326885965], [-77.34068035323303, 34.64677544300191], [-77.34072825723558, 34.64672425581285], [-77.3407520335456, 34.646674150102236], [-77.3407722494839, 34.646551831354344], [-77.34073369084257, 34.64639570514978], [-77.34081959665627, 34.646213799365796], [-77.3408283459473, 34.64615044842927], [-77.34083738714799, 34.64612089379933], [-77.34092607645547, 34.64590806338038], [-77.3409260882822, 34.64587990447386], [-77.34081815140355, 34.645807308179485], [-77.34074308415532, 34.64583306900918], [-77.34051065978392, 34.64585386672031]], [[-77.39747154717455, 34.56891591573832], [-77.39742354428506, 34.56889206255463], [-77.39731826928377, 34.568876310670646], [-77.39733632839163, 34.56898716015625], [-77.39738098516237, 34.56902657269652], [-77.39742352927784, 34.569121445944546], [-77.39751639858711, 34.569285655952456], [-77.39779204776218, 34.569318566155246], [-77.39772699443134, 34.56902833019427], [-77.39756416746232, 34.56895428586737]], [[-77.39703074393735, 34.59450560966046], [-77.39703000016989, 34.594503582216205], [-77.39702801864186, 34.59450508798075], [-77.39702335187725, 34.59450667598096], [-77.39702801857659, 34.594506350678074]], [[-77.44062913405271, 34.59005738371505], [-77.44062477060731, 34.58990723498648], [-77.44037489596938, 34.589806226594774], [-77.44020368758976, 34.58972797702671], [-77.44014687230995, 34.58973069333628], [-77.43998079900103, 34.58971723760845], [-77.43978644120715, 34.5898133501039], [-77.43978269155731, 34.58981551016242], [-77.43978049875885, 34.58982061605987], [-77.43971260740697, 34.590039154823764], [-77.43978398964731, 34.59019427899986], [-77.4398038763093, 34.59021683633937], [-77.43985653081725, 34.59030874403214], [-77.43993443353699, 34.590431669202744], [-77.43998116191607, 34.59050540306709], [-77.44021801217968, 34.59056007539955], [-77.44036224972564, 34.59079439262949], [-77.44036724694938, 34.59080241106515], [-77.44037535698114, 34.590797004530074], [-77.44040607597557, 34.590788054286335], [-77.44061959522966, 34.59059584346464]], [[-77.44596852559465, 34.602054473663074], [-77.44596114634068, 34.602067762665925], [-77.44590737696413, 34.60215693507458], [-77.44585462435361, 34.60228276695449], [-77.44582073149805, 34.602312454709214], [-77.44580682161887, 34.60236577221494], [-77.44577115876145, 34.602491195918155], [-77.44577859738675, 34.602607414770645], [-77.44576227414717, 34.60279150309019], [-77.44599469552787, 34.602683044611105], [-77.44608578264649, 34.602424692919264], [-77.44610881896887, 34.602394903154355], [-77.44634760903394, 34.6021871448993], [-77.44635873114885, 34.60206220403373], [-77.44610918603725, 34.60202554475764], [-77.44602495425958, 34.60201317079528], [-77.44597891639908, 34.60203426453889]], [[-77.43301262354952, 34.62353600472665], [-77.4329801204091, 34.62349232512187], [-77.43290505777709, 34.62341841727147], [-77.43287492133037, 34.623487808584315], [-77.43286277291234, 34.62352576876922], [-77.4327216873862, 34.623743898790494], [-77.43272872383193, 34.623751883477254], [-77.43287800385917, 34.623798609972035], [-77.43300500196995, 34.62378365994175]], [[-77.44253667260497, 34.60098093915279], [-77.44265939374719, 34.60089627705447], [-77.44266695772095, 34.600791638062674], [-77.44277877460695, 34.60049657195419], [-77.44282751385421, 34.60037660571152], [-77.4428175862076, 34.60033222570182], [-77.44292763432468, 34.599978804861706], [-77.44289368780059, 34.59944181202245], [-77.44215091838376, 34.59957133284414], [-77.44191060987123, 34.59972953267658], [-77.44167612087072, 34.59993268257801], [-77.44163384713757, 34.60006791405681], [-77.44152229134497, 34.60037953776005], [-77.44152830481961, 34.60050036728358], [-77.4416701714975, 34.60093774524547], [-77.44211383946612, 34.600949358429034]], [[-77.36912920227361, 34.55067555674002], [-77.36894307073565, 34.551487623580016], [-77.36896738718573, 34.5515886564656], [-77.36898626873591, 34.551661072124745], [-77.36903266632534, 34.551824078835416], [-77.36909805122184, 34.55204361987646], [-77.3691024521744, 34.55205593260692], [-77.36910965328987, 34.55205781425062], [-77.36913712943476, 34.552078721979115], [-77.36941608815164, 34.552301343394134], [-77.36984098861781, 34.55244210290851], [-77.36987397639614, 34.55245313282658], [-77.36991041668593, 34.55243210003046], [-77.37006812215972, 34.55203485012759], [-77.37016884187584, 34.55173158273684], [-77.37016126881943, 34.55141664916763], [-77.36990371224057, 34.5511466772392], [-77.36976339083216, 34.551072868421855]], [[-77.42251686146994, 34.62388456909428], [-77.42251596209256, 34.62388942475156], [-77.42251849607594, 34.623890545563036], [-77.4227768898672, 34.624029559896755], [-77.42286644801956, 34.62401081773511], [-77.4230374490489, 34.623865573367794], [-77.42313152860663, 34.62379388473169], [-77.4234255020686, 34.62336202276165], [-77.42349293213715, 34.623300938002956], [-77.42384260977882, 34.623142224918105], [-77.4235550262774, 34.62307880096238], [-77.42327186562629, 34.62280031034324], [-77.42313166271431, 34.6226820687287], [-77.4227366767814, 34.622765897395716], [-77.42271317192595, 34.623027943827815], [-77.4226183642305, 34.6233092370061], [-77.42304414006455, 34.62336971557603], [-77.42271509332978, 34.623648090933116]], [[-77.38922435096357, 34.54599627967376], [-77.38935085820339, 34.54601529499837], [-77.38931814637017, 34.54592525361987], [-77.38926361439842, 34.545744551437174], [-77.38916813635772, 34.54592645171425]], [[-77.44582028542044, 34.60317772130439], [-77.44575867602694, 34.60315012595339], [-77.44576100193976, 34.603220669327435], [-77.4457619766138, 34.60324901570828], [-77.44581238202476, 34.60334633614677], [-77.44582160608986, 34.60324187933174]], [[-77.35780907238376, 34.67838250571755], [-77.35795240405565, 34.67846606311461], [-77.3580816481658, 34.678266729466955], [-77.35807427201497, 34.67820960438758], [-77.3580720290011, 34.67818008635139], [-77.35816694351354, 34.677953181451876], [-77.35815432402774, 34.677919630459286], [-77.35816643321088, 34.677831404977795], [-77.35814422477677, 34.677805142729], [-77.35804527758171, 34.67780646765489], [-77.35791011970227, 34.677744766545395], [-77.35786785200398, 34.6777263541693], [-77.35777546207336, 34.67776326339482], [-77.35773381306487, 34.677958355426895], [-77.35771274046995, 34.678062450794954], [-77.35783938428386, 34.67824186896639]], [[-77.44228174007844, 34.597666972127406], [-77.44216828884667, 34.59758598604132], [-77.44210612327475, 34.59748680237409], [-77.44195683782456, 34.597301637419605], [-77.44173792616226, 34.59719793677838], [-77.44171968815562, 34.59717930139381], [-77.44156058771377, 34.597119740141636], [-77.44147827703355, 34.59709058467091], [-77.4413635218587, 34.59707683782952], [-77.44132005407255, 34.59707163066327], [-77.44117411458114, 34.59705414792661], [-77.44116646890768, 34.597060446371856], [-77.44105369063465, 34.597275620787926], [-77.44112190222965, 34.59742984627975], [-77.4411406174282, 34.597475346978726], [-77.44116668499774, 34.59751060398018], [-77.44134754617839, 34.597675241328], [-77.44153259109567, 34.59779186100588], [-77.44169583236284, 34.597908306883646], [-77.44206141563451, 34.59771665730438]], [[-77.36005017567365, 34.78310877870999], [-77.36024565713008, 34.783107651700746], [-77.36052832891741, 34.78310602094703], [-77.36030699105578, 34.78289651673326], [-77.3602076492275, 34.782910857791826], [-77.3599927368236, 34.782873855674694], [-77.35996409316454, 34.782908576291995], [-77.35995054319947, 34.78301910034919]], [[-77.39381397496551, 34.62420139805775], [-77.39370902070971, 34.62428008382968], [-77.39373197727664, 34.624428617973805], [-77.39371508696978, 34.62449149432562], [-77.39387296121527, 34.624561358590526], [-77.39397674428184, 34.62455428137042], [-77.39419239577138, 34.624554404669645], [-77.3942672020481, 34.624381872281084], [-77.39447345785888, 34.62416985896753], [-77.39426721910517, 34.62411177066971], [-77.39396506081522, 34.624144007541815]], [[-77.3754409666987, 34.641032512215496], [-77.37544891537998, 34.6409220139462], [-77.37536635735364, 34.64090492022133], [-77.37533944451366, 34.64088583892478], [-77.3752723285973, 34.640875176571775], [-77.37524714374982, 34.640951071436206], [-77.37525905909241, 34.6410358622818], [-77.37533940776653, 34.64101782512955]], [[-77.40099671422729, 34.581196202262554], [-77.40109472867975, 34.58104658737554], [-77.4011560413837, 34.58096092345891], [-77.40096900936946, 34.58082573301421], [-77.40094306114644, 34.58080733044214], [-77.40089793014816, 34.58078588235937], [-77.40077200062092, 34.58071154240382], [-77.40060604817825, 34.58082800124991], [-77.4005871724108, 34.58084385456667], [-77.40057498667926, 34.58089732511154], [-77.40053404426124, 34.58105067861206], [-77.40057498258359, 34.5811142169176], [-77.40062543346633, 34.58119541410743], [-77.40073591362854, 34.58123383620121], [-77.40077199180911, 34.581244057592215], [-77.40095635149677, 34.58121566008277], [-77.40096900387901, 34.58121371119962]], [[-77.33894513072858, 34.6352918534301], [-77.33875712965008, 34.635434502571194], [-77.33899142122075, 34.63552226167607], [-77.33921400384641, 34.63537179533321]], [[-77.41772783471059, 34.56986439397685], [-77.41771284043661, 34.569843257911714], [-77.41769135422602, 34.56984650720009], [-77.41769381983752, 34.56986930769212], [-77.4177128470786, 34.56988048586289]], [[-77.36158662110795, 34.67285319702594], [-77.36166481678259, 34.672891357498436], [-77.36179923539898, 34.672823983701136], [-77.36194728890375, 34.6727586365072], [-77.36189638697141, 34.67267351707126], [-77.36189796654696, 34.67260345575268], [-77.36188323038732, 34.67256874834942], [-77.3618271390617, 34.67252971867029], [-77.36177434672057, 34.67251389018815], [-77.36169030777566, 34.67247340905649], [-77.36165135173383, 34.672467944429336], [-77.361605382522, 34.672455519653255], [-77.36151862280701, 34.67257013122253], [-77.36150956976259, 34.672620089573414], [-77.36147711215841, 34.67279920098707]], [[-77.39727820954995, 34.620368820352326], [-77.39722403101368, 34.620367831830826], [-77.39721311675233, 34.62036645325695], [-77.39720440654999, 34.62037946440864], [-77.3972240293062, 34.62042397004099]], [[-77.38186176056708, 34.58820149237156], [-77.38185711055993, 34.588198055009954], [-77.38179707625268, 34.58814612041311], [-77.38175861415078, 34.58812051051303], [-77.38166486025199, 34.58822471533229], [-77.38166007284694, 34.58823034253318], [-77.38165994135014, 34.58823043919686], [-77.38165984135712, 34.58823059525988], [-77.38165967522528, 34.58823104742236], [-77.381660072652, 34.58823115323003], [-77.38166187554374, 34.58823224480671], [-77.38175857157951, 34.58829838463106], [-77.38182133459793, 34.58824585214198], [-77.38185710344645, 34.58822793049944]], [[-77.44389822001256, 34.60211449859019], [-77.44390303523434, 34.60210079229299], [-77.44389112376854, 34.60208857035664], [-77.44387978387911, 34.60210742261041]], [[-77.32404330376126, 34.74219607586297], [-77.32954263223216, 34.7391638352473], [-77.33186246680339, 34.73928334545595], [-77.33190511944746, 34.739304888535884], [-77.33191419844931, 34.73932919490227], [-77.33223361405732, 34.74121554227463], [-77.33242035912443, 34.74206177024134], [-77.33324807232059, 34.742900346255425], [-77.33326544963238, 34.74302359087328], [-77.33442024872639, 34.743677244771035], [-77.33524052685647, 34.74428829595023], [-77.33578919882981, 34.74462709649956], [-77.33655475481831, 34.74518921343319], [-77.33638934092801, 34.745848606064285], [-77.33587741569173, 34.74656448906628], [-77.33603506620838, 34.747165378901705], [-77.33580825867487, 34.74754871952016], [-77.33643718231689, 34.74841402342661], [-77.33644288462894, 34.74842841643055], [-77.33644309316472, 34.74843643161597], [-77.33652066201621, 34.74851840583357], [-77.33642427544366, 34.74845842224282], [-77.33641742452937, 34.74844799172346], [-77.3364028580311, 34.74844194767518], [-77.33540419376358, 34.747846274009284], [-77.3347187468223, 34.74819843114714], [-77.3346969022523, 34.748194234469075], [-77.33415304845263, 34.748028941538394], [-77.33387187264181, 34.74781417053352], [-77.33367131602311, 34.74740617790245], [-77.33327344959693, 34.74693366253013], [-77.33326690037642, 34.7469288291878], [-77.3332390980959, 34.74692616820255], [-77.33270648616916, 34.74682342115477], [-77.332436658303, 34.74677886548236], [-77.33242042688556, 34.74677716731326], [-77.33233536685341, 34.7467247508844], [-77.3321698197652, 34.746608981140795], [-77.33214878808853, 34.74658824547632], [-77.33204060349621, 34.746463532996856], [-77.33196862847575, 34.74636925393195], [-77.33197671591785, 34.74634420901896], [-77.3318793962819, 34.74613779914992], [-77.33174689373513, 34.74600336156976], [-77.3316987616263, 34.745769639314645], [-77.33155401025607, 34.745695027294985], [-77.33143491674778, 34.74557835599766], [-77.33127505120302, 34.7455659989631], [-77.33109516997867, 34.74551423087977], [-77.33107658855221, 34.7454597117987], [-77.33074932664135, 34.74531918096261], [-77.33074803850047, 34.74531839116183], [-77.33074761374189, 34.7453181808097], [-77.33068362785579, 34.74497356411242], [-77.33035974155536, 34.744593729831074], [-77.32942213050474, 34.7447813544174], [-77.32911078930184, 34.74476892100975], [-77.3287275035296, 34.74490090894311], [-77.3278604730586, 34.74494876929529], [-77.32756763048232, 34.74500434404703], [-77.32733348762217, 34.74481131436943], [-77.32711804009064, 34.744561732681476], [-77.32581070260191, 34.74413423152508], [-77.32571998959372, 34.74407002846706], [-77.32569973141432, 34.74407560197035], [-77.32559274940496, 34.744075095276024], [-77.32380985641504, 34.74239940828048], [-77.32350303718877, 34.7426113991655], [-77.32374837528417, 34.74237832176538], [-77.32376805411101, 34.74232369701137], [-77.32385800559298, 34.742233855300825]], [[-77.48567369211877, 34.68249083703693], [-77.48563401972997, 34.682331700262516], [-77.48376802273188, 34.68233165768989], [-77.48321376395552, 34.68302219061023], [-77.48251286618151, 34.68357829649559], [-77.4822035170015, 34.6843000934587], [-77.48196548064915, 34.68485547771662], [-77.48158941119124, 34.68573293525659], [-77.48124416550735, 34.68653840220621], [-77.48001276022649, 34.689411728126885], [-77.47981948219325, 34.68989914131712], [-77.47974252323102, 34.690042267420104], [-77.47976309826727, 34.69032098740627], [-77.48001125940485, 34.69335535129132], [-77.48090519530308, 34.69491971227014], [-77.48201321439936, 34.69920449784528], [-77.48621243971496, 34.69677280332273], [-77.48710891068015, 34.69633705600579], [-77.4879892243398, 34.69359344604499], [-77.48811801256727, 34.69296681091937], [-77.48782883616494, 34.69083446490167], [-77.48779104493269, 34.69057946437134], [-77.48766754114183, 34.69033246707575], [-77.48674887182244, 34.6884952817033], [-77.48649818277772, 34.68799391604205], [-77.48551046159358, 34.687102174658385], [-77.48660075012278, 34.68501027288301], [-77.48659235531288, 34.68500289007951]], [[-77.39215828762609, 34.74458123769823], [-77.39196657086852, 34.74454332936759], [-77.39184720205989, 34.744428733559296], [-77.39156939986239, 34.744198502224855], [-77.39035194560657, 34.74326656685961], [-77.38992818605738, 34.7427264517093], [-77.38922217580631, 34.74195209511516], [-77.3897020150389, 34.74056478637221], [-77.39069065095693, 34.73941784001473], [-77.39091271345448, 34.73933147544443], [-77.39116001634547, 34.7395820450736], [-77.39252301764908, 34.74057661079841], [-77.39293675359124, 34.741197567242054], [-77.39484574652838, 34.74298863542408], [-77.3950812202994, 34.743081036566025], [-77.39501808707911, 34.74327041301739], [-77.39250803259593, 34.744526841360994]], [[-77.30623531498304, 34.66172915759438], [-77.3093089583757, 34.66352548943119], [-77.30958083462396, 34.66429109596419], [-77.31018589508554, 34.66427025239168], [-77.31091654172899, 34.66330528577258], [-77.31278050830178, 34.660669635289395], [-77.31278053037913, 34.65967408197064], [-77.31227780654196, 34.658956955373114], [-77.31132176661717, 34.65716440395401], [-77.31111488194756, 34.656667743947054], [-77.31099058402769, 34.656543444201084], [-77.3095737669091, 34.6551266121648], [-77.30812964785875, 34.65402050219184], [-77.30635703798094, 34.6546700959712], [-77.30575575109619, 34.65495523004722], [-77.30417135642057, 34.65747742072444], [-77.30440867613297, 34.65819027790771]], [[-77.44832688105349, 34.530191216498565], [-77.44832725074167, 34.530334180471414], [-77.44934479757669, 34.53097554698383], [-77.44807627103107, 34.53116980180336], [-77.44799168966169, 34.53044539080728], [-77.44796470659982, 34.53038666642688], [-77.44785684374331, 34.53025290180609], [-77.44810162654109, 34.53000850743926]], [[-77.44379236289733, 34.682589220264454], [-77.44372738522253, 34.68248871170407], [-77.44354348587876, 34.682246718717636], [-77.44357296882868, 34.68202256857432], [-77.44359143769668, 34.681882151588354], [-77.44379792167479, 34.68177037584569], [-77.44386358259598, 34.68174990472429], [-77.4441257994103, 34.68174442305534], [-77.44431524724997, 34.681740462235794], [-77.44475864528454, 34.681731190987236], [-77.44477064937703, 34.68173023112066], [-77.44520273339671, 34.68169567921383], [-77.44592333252326, 34.68169947565752], [-77.44561618166145, 34.68237138941971], [-77.4453658985885, 34.6825025146976], [-77.44524008182216, 34.682504340737545], [-77.44518443149795, 34.68251520794907], [-77.44480340047143, 34.682538279248426], [-77.44451297515286, 34.68262140013482], [-77.44440278841239, 34.6826311699381], [-77.44415654869599, 34.6826387514929], [-77.44397060499172, 34.682672459593135]], [[-77.45176720417054, 34.68195739925769], [-77.45169898447492, 34.68248027153878], [-77.45127996577861, 34.6826562633062], [-77.45129990373059, 34.682899790206044], [-77.45122949434129, 34.68305517050047], [-77.451129233852, 34.68315748681824], [-77.45074342387439, 34.68326429070191], [-77.45073809600166, 34.683265869774836], [-77.4507340941794, 34.68326606784215], [-77.45072804481097, 34.68326457044395], [-77.45042849493328, 34.68321495898764], [-77.45028690592326, 34.68310471777512], [-77.45021109179754, 34.68303401571315], [-77.45017459579805, 34.68298500326385], [-77.44996601364723, 34.682713043470336], [-77.44997570756206, 34.68268588260481], [-77.45003860610454, 34.68245891065575], [-77.45002087769711, 34.682093852054905], [-77.45009155893356, 34.68191840621205], [-77.45021134906148, 34.68169463164493], [-77.45045607244951, 34.681309931707354], [-77.45122708143734, 34.68119730218769], [-77.45129625275644, 34.681187821170724], [-77.45134141253783, 34.68116505847067], [-77.45145533858988, 34.68117514802103], [-77.45156960285522, 34.68131702867223], [-77.45177187445243, 34.681892504937686], [-77.45204794247688, 34.68166862564841], [-77.45222282560661, 34.68174749866638], [-77.45245132891085, 34.68175854118836], [-77.45266054663078, 34.68197785700255], [-77.45268501575808, 34.682000913421675], [-77.45270035541084, 34.68200535740992], [-77.45276194016643, 34.68215304870006], [-77.45273970436457, 34.682201289959366], [-77.452727263421, 34.68228067997707], [-77.45257742607066, 34.6824306594469], [-77.45249937435776, 34.682406288606174], [-77.45229580467978, 34.682296607096745]], [[-77.3573193004247, 34.769494680621186], [-77.3578121394948, 34.769689599923595], [-77.35804269004362, 34.769661469612075], [-77.35845420367323, 34.76954181534829], [-77.3588393666102, 34.7695642632271], [-77.35903441965921, 34.769606939067835], [-77.35912498994244, 34.769660164206385], [-77.35931854262633, 34.76982033159035], [-77.3594654024485, 34.769964713110156], [-77.35950707302214, 34.7701884863327], [-77.35954727590348, 34.770376880440395], [-77.35959654303562, 34.77067905853559], [-77.35951326478971, 34.771006950182446], [-77.35962144297298, 34.771238504012615], [-77.35977733740879, 34.771466822385776], [-77.35986580291512, 34.77168957060615], [-77.36004096090463, 34.77195637603016], [-77.36017165228336, 34.7723181210746], [-77.36017253192745, 34.77235615404482], [-77.36015544277072, 34.77237392593826], [-77.35982614849014, 34.77255229304636], [-77.35961440347796, 34.772580179608745], [-77.35946673552331, 34.77253611566073], [-77.35916330246536, 34.77256216495217], [-77.35890418778803, 34.772541822043365], [-77.35834059059545, 34.772664144568594], [-77.35815285224076, 34.772641754209964], [-77.35798862193838, 34.77264011504807], [-77.35612240953196, 34.77271502578578], [-77.35624938834032, 34.7711001045973], [-77.3562730867388, 34.771060012328576], [-77.35630211372262, 34.770999962913976]], [[-77.4256416067798, 34.731981096776174], [-77.42575769645899, 34.73193703503681], [-77.42582561193501, 34.73190783037702], [-77.42593992340547, 34.731895940734574], [-77.42603610280953, 34.731877841339895], [-77.42618614603442, 34.73189784376236], [-77.4262649276368, 34.732009543695916], [-77.4263178162856, 34.732066112308615], [-77.42628224800559, 34.73228003903193], [-77.42627842408666, 34.73229379414562], [-77.42626295119136, 34.73231218767136], [-77.4261565710594, 34.7324486139988], [-77.4259629569764, 34.732463058468916], [-77.42593771780592, 34.73246494143152], [-77.42585259856564, 34.732483350717594], [-77.42558027070234, 34.73254986044355], [-77.42546450364867, 34.73243957557774], [-77.4251337245903, 34.732336818726054], [-77.42531133066592, 34.7321892895183], [-77.42550920938413, 34.73202491932775]], [[-77.35219896749396, 34.55036506594292], [-77.35216366689085, 34.550336003535406], [-77.35203934037987, 34.550244483721805], [-77.35204320991735, 34.55023092991707], [-77.35205316480659, 34.55022483916564], [-77.35206076805724, 34.550219037838346], [-77.35214667881925, 34.55014615345784], [-77.35224337107451, 34.55007971021431], [-77.3522524835581, 34.55007344846994], [-77.3522605320865, 34.550068662406304], [-77.35228064020565, 34.550061904219014], [-77.35245833428075, 34.55000366251497], [-77.35261053732007, 34.549999298330725], [-77.35265488493162, 34.54999313898051], [-77.35273197347016, 34.54996176468728], [-77.35280667141998, 34.54999863329289], [-77.35292106419247, 34.55015039964836], [-77.35294295620835, 34.5502238391392], [-77.3526445006019, 34.550445261679265], [-77.35250075128131, 34.55044263489886]], [[-77.46066887934477, 34.50336195997567], [-77.46078756863459, 34.50316997790738], [-77.46080677481457, 34.503131924732415], [-77.46082542192677, 34.503118018067305], [-77.46104201581616, 34.502949170030305], [-77.46133963115345, 34.50272634099449], [-77.46153656767656, 34.502595353907395], [-77.4619611739414, 34.50250016030206], [-77.46219012732827, 34.502318768735705], [-77.46217144401886, 34.502173078554804], [-77.46248989222335, 34.50200780907908], [-77.46264789566567, 34.501947087403124], [-77.46298512548873, 34.50195933128883], [-77.46298807658174, 34.50211231299317], [-77.46305824251506, 34.50221809023151], [-77.4630042244157, 34.50234081315316], [-77.4629859951669, 34.502408311845926], [-77.46285074541406, 34.50254531508031], [-77.46280807599823, 34.502618906565694], [-77.4626923466996, 34.5027480045405], [-77.46240912020673, 34.50301915549072], [-77.46229382187539, 34.503192560740615], [-77.4621763749825, 34.50332357276125], [-77.46206610599764, 34.50344657695695], [-77.46199938729106, 34.503515371970174], [-77.46163416292259, 34.50380322416706], [-77.46148458304602, 34.50375815412702], [-77.46058425004009, 34.503605213166665]], [[-77.35190412693156, 34.78620789073807], [-77.35188321840644, 34.785970796892755], [-77.35194098875377, 34.785391135736184], [-77.35177779933566, 34.78532350131018], [-77.35228644135141, 34.784583271416274], [-77.35222280055086, 34.785174481966294], [-77.35342458513179, 34.784790986849565], [-77.35366470957464, 34.78485435807797], [-77.35396916528238, 34.78497913041509], [-77.35401066815172, 34.78501716747933], [-77.35413976939878, 34.78527755158585], [-77.35439676130652, 34.78545157505573], [-77.3544163601324, 34.785502421574996], [-77.3545020766133, 34.7855603662167], [-77.3546955580169, 34.78578345972855], [-77.3547389750086, 34.785833521160086], [-77.35478706784959, 34.78602651952601], [-77.35478969267321, 34.78613089182245], [-77.35436170055605, 34.78607964424364], [-77.35423100585714, 34.78614029623767], [-77.35364168294507, 34.78666110436123], [-77.35339175864007, 34.787051606708374], [-77.35334272782386, 34.7871348768691], [-77.35313450135209, 34.78748851139772], [-77.3530795591823, 34.787581819627], [-77.35291384851807, 34.787796894175], [-77.35285421140357, 34.787878579573416], [-77.35278054786981, 34.787899372992094], [-77.35271188862441, 34.7878759511304], [-77.35256726243702, 34.78786623663264], [-77.35254467508214, 34.78781890928396], [-77.35249844259198, 34.78772203840353], [-77.35247134520148, 34.78766526050657], [-77.35249585139955, 34.78732981960745], [-77.35244077936072, 34.78718207235291], [-77.35214586468418, 34.78681046398614], [-77.35187028444095, 34.786369227893346], [-77.35191050081322, 34.78628005929826]], [[-77.35441834041444, 34.77458443212502], [-77.35536016808449, 34.77400494953683], [-77.355351199984, 34.77488491848146], [-77.3563443288009, 34.77474218068225], [-77.35732997154896, 34.77460970376245], [-77.35759243564829, 34.774570892652704], [-77.35769486305804, 34.77471789380355], [-77.35787065938382, 34.77490591993816], [-77.35805046248015, 34.77501613196169], [-77.35808077207432, 34.77509853041615], [-77.35819160825044, 34.77540362915573], [-77.3583195096779, 34.7756222496508], [-77.35834072193967, 34.775787811372794], [-77.3584832256673, 34.77592182602546], [-77.35850172154939, 34.7759656391029], [-77.358515027446, 34.77602384488664], [-77.35843912875838, 34.77607362250488], [-77.35835879942766, 34.776142715555636], [-77.358324847954, 34.77618335309603], [-77.35794052629434, 34.77640062433569], [-77.35769754414424, 34.77652304020479], [-77.3576808511952, 34.77653145018827], [-77.3570114941007, 34.77684216475066], [-77.35696701997631, 34.776861494842166], [-77.3569219203908, 34.7768789199817], [-77.35688068818027, 34.776862615162685], [-77.35680656238686, 34.77683539630679], [-77.3561761409862, 34.77661591747042], [-77.35587335723676, 34.77636326365271], [-77.3554223022562, 34.77640711619583], [-77.35491745278622, 34.77552872592273], [-77.35437861687636, 34.775632740942505]], [[-77.32341568186683, 34.756111598734506], [-77.32337531556485, 34.756109079401696], [-77.32320763340331, 34.75609861417778], [-77.32287041556359, 34.75592654475815], [-77.32270667017391, 34.75606734808385], [-77.32245880779095, 34.75602529311976], [-77.32229787505183, 34.755835253112885], [-77.32223092491768, 34.75574503345244], [-77.32237758985727, 34.755561228847995], [-77.32265435659193, 34.75538253296011], [-77.32279279944521, 34.75537449003045], [-77.32300146715022, 34.75547603587842], [-77.32308690090139, 34.75554254671223], [-77.32345363248773, 34.7559811350808], [-77.32357736502632, 34.756047968304905]], [[-77.48603654003432, 34.68233170582542], [-77.48661452282445, 34.68500000939435], [-77.48662662537555, 34.68500289016323], [-77.48937677758339, 34.68528210770529], [-77.49081615893127, 34.68500284386732], [-77.49212970521376, 34.68445924517276], [-77.49270494386147, 34.684215796723294], [-77.49305502565088, 34.683168586415874], [-77.49229123918091, 34.68270943072799], [-77.4916879065429, 34.6824560955698], [-77.49060045185271, 34.682391818030844], [-77.49008262069701, 34.68233169069906], [-77.48879675726451, 34.68233170823625]], [[-77.32162580847582, 34.744054407951644], [-77.3222422473554, 34.7436701193432], [-77.32237716059356, 34.744515624811974], [-77.3226889119847, 34.74481362151023], [-77.32266839687469, 34.74517969942414], [-77.32262802899925, 34.74545598957866], [-77.32272386205341, 34.745574956785816], [-77.32265514067556, 34.74580640721253], [-77.32234200437182, 34.74586847983876], [-77.32222278486591, 34.7457963978061], [-77.32175915367839, 34.745650680473986], [-77.32167817118386, 34.745609338507464], [-77.3216592272154, 34.74560511064455], [-77.32161052116597, 34.7455953687798], [-77.3207131531644, 34.74480824613096], [-77.32068573798823, 34.74477700972386], [-77.3206624706297, 34.74475049884319], [-77.3204835069477, 34.74451993375727], [-77.32081204185016, 34.74446829328414]], [[-77.31266503049375, 34.69416763349158], [-77.31364835643771, 34.69307611535484], [-77.31409345018088, 34.69288066688003], [-77.31426586891527, 34.692855832299244], [-77.31442742725308, 34.6928413156279], [-77.31443833162206, 34.69296791144374], [-77.31424917542952, 34.69301882148273], [-77.3141214498137, 34.69398604014555], [-77.31401609332474, 34.694089131426416], [-77.31390970154456, 34.6940804754682], [-77.31268311510212, 34.69418367768852], [-77.3126823833938, 34.694183528950624], [-77.31268207805329, 34.69418345494298], [-77.31268135693364, 34.69418328761558]], [[-77.35386584233265, 34.78327246913417], [-77.35323148565274, 34.783174546212955], [-77.35340382388672, 34.78268965811411], [-77.3534365163666, 34.78265015319054], [-77.35346386924165, 34.782643493499386], [-77.35411213950971, 34.78242485418869], [-77.35448260103028, 34.7822999081977], [-77.35505592906958, 34.78220787208373], [-77.35534618068317, 34.78230240984877], [-77.35540900195019, 34.78243294561833], [-77.35540706159861, 34.78254735199606], [-77.35545185340654, 34.78272756353692], [-77.35540257606212, 34.782811796663054], [-77.35528905764687, 34.78295020831412], [-77.35522563442714, 34.78299946737939], [-77.35512762836208, 34.78305458617497], [-77.35481672177617, 34.78323393924083], [-77.35471112925875, 34.78326140859857], [-77.35446735987622, 34.78326462855789], [-77.3541003255097, 34.78323787707994]], [[-77.43096925434253, 34.57904992733132], [-77.4310359539422, 34.57898051871098], [-77.43130771334587, 34.57880211228086], [-77.43149358288258, 34.578690112769216], [-77.43151514863975, 34.57868766492788], [-77.43170172746879, 34.57882595927665], [-77.43173024417264, 34.578849429027954], [-77.43209585094972, 34.57915511802216], [-77.4321699048711, 34.579241180967834], [-77.43229310734043, 34.57943582834649], [-77.43238646623702, 34.57963446404931], [-77.43209609843862, 34.57984648372749], [-77.43193015501262, 34.57994616143404], [-77.43138649834923, 34.58011921047271], [-77.43130816544354, 34.58009938222123], [-77.43105714201732, 34.5799807660809], [-77.43086223303472, 34.57991069207691], [-77.43052000456008, 34.57969572767916], [-77.43032950402267, 34.57971252157958], [-77.43014692673506, 34.57953362191189], [-77.4304189971466, 34.5793855599145], [-77.43051990328611, 34.57939717317087], [-77.43079568212768, 34.57914256397934]], [[-77.42451999009425, 34.732890149787586], [-77.42433124815993, 34.73283143775875], [-77.42421469745173, 34.73283732730677], [-77.42396568718348, 34.73298198081303], [-77.423846430265, 34.73300200044778], [-77.42375802811871, 34.73301660001529], [-77.42363909326721, 34.73304842121872], [-77.42356322853104, 34.73307223198526], [-77.4234997368747, 34.73309215922761], [-77.42345903988573, 34.73303531797633], [-77.42346206041319, 34.73298653724815], [-77.42342467749148, 34.73293805626767], [-77.42343725117756, 34.732866376146], [-77.42344192516862, 34.73283973049974], [-77.42344579772005, 34.732817653678595], [-77.42346274221475, 34.73272105608652], [-77.42348682758367, 34.73271565856394], [-77.42352156603263, 34.7326302044911], [-77.42362445476324, 34.732661428446036], [-77.42377453140038, 34.73268054361995], [-77.42377923638796, 34.732680464085234], [-77.42378200604921, 34.73268183520899], [-77.42393480234992, 34.732696790533105], [-77.42410108450795, 34.732650843229436], [-77.4242134541122, 34.73263895699422], [-77.42427328086353, 34.73263499512492], [-77.42446005733473, 34.73261780465968], [-77.42458399976589, 34.732669073521805], [-77.42465629937071, 34.732614701982115], [-77.424708355288, 34.732583583318615], [-77.42495865460636, 34.732482326071775], [-77.42504963249065, 34.732702877257886], [-77.4248651574906, 34.73280525140838], [-77.42478661055625, 34.73282763414097], [-77.42467191945084, 34.73285038186596]], [[-77.33254535587386, 34.57520298843744], [-77.33260984969895, 34.5752120017038], [-77.33271439174872, 34.57532146269796], [-77.33274667646049, 34.57538150988497], [-77.33276119128969, 34.57547804447751], [-77.33273464512897, 34.57553082113169], [-77.33270205954462, 34.57563524118397], [-77.33249857475948, 34.57568422223072], [-77.3324124370383, 34.57569838478157], [-77.33232000304642, 34.57570309573559], [-77.33212269728205, 34.575718677544344], [-77.33201842535755, 34.575699835632705], [-77.33188995387991, 34.575726095158366], [-77.33136161515405, 34.575798962710564], [-77.33123031336291, 34.57580617731398], [-77.33103538761061, 34.57577726145366], [-77.33066276484482, 34.57580331503966], [-77.33047475053763, 34.575253273399866], [-77.33056526728424, 34.575205804418275], [-77.33049532168579, 34.57515931867049], [-77.33057217304955, 34.57449446217135], [-77.33083741448374, 34.57451155361363], [-77.3309187785704, 34.574642670175336], [-77.33123103770957, 34.574958329451725], [-77.33151318457442, 34.57506957047828], [-77.33189868202288, 34.57514369308052], [-77.33201890344037, 34.575133948782664], [-77.3321539748892, 34.575123000400076], [-77.33241291931303, 34.57512434337167]], [[-77.33533925677851, 34.68181772024337], [-77.33547527201938, 34.68167075055236], [-77.33550859232072, 34.68174887878737], [-77.33555778876976, 34.681787744657655], [-77.33553964215132, 34.68189591416329], [-77.33542607937511, 34.68184007131317], [-77.33540131624764, 34.68183141839691]], [[-77.36225724735849, 34.78060056210799], [-77.36268047000246, 34.781062983323444], [-77.36213175536872, 34.78103260005769], [-77.3618980724228, 34.781000893610354], [-77.36150829370781, 34.78096995941682], [-77.3612775437925, 34.78091669850986], [-77.36114960704042, 34.78086617487788], [-77.36106356480455, 34.78077679680109], [-77.36097204018485, 34.78071695691332], [-77.36097513869342, 34.78059643220774], [-77.36097061260261, 34.78049442526181], [-77.36098521766212, 34.78046976687631], [-77.36099620956854, 34.780456568945134], [-77.36102188933232, 34.78043548971141], [-77.36114320358155, 34.78032258588077], [-77.36122203221134, 34.78027302401536], [-77.36130811896128, 34.78021791412364], [-77.36169188813365, 34.78015783044065], [-77.36172071023131, 34.78014392907312], [-77.36176137389991, 34.78009868802153], [-77.36183198097415, 34.78013589673992]], [[-77.43861197828056, 34.67839972025325], [-77.43874702941469, 34.678187377987726], [-77.43886885647078, 34.67799475308425], [-77.43903808277827, 34.67760082400575], [-77.43907586470243, 34.67750809540465], [-77.43911694171524, 34.67739871166286], [-77.43876800738171, 34.67715933231281], [-77.43847826520103, 34.67690123145734], [-77.4381879617328, 34.67695884893158], [-77.43813839636766, 34.676968686243384], [-77.43789071229553, 34.677017844038346], [-77.43779882771564, 34.67703509963354], [-77.43776082884752, 34.677008331526295], [-77.43774922310529, 34.67704418321123], [-77.43752664338567, 34.677169834610275], [-77.43713686663602, 34.67738909135194], [-77.43753572431855, 34.67794480683386], [-77.43759870244858, 34.678032551177076], [-77.43796634093655, 34.67823820254143], [-77.43807305702259, 34.67830231773926], [-77.4382167029723, 34.67832575098026]], [[-77.32426145219267, 34.69551508728814], [-77.32361966719084, 34.695229873285264], [-77.3233468662034, 34.695158862293674], [-77.32326674608635, 34.69510721609707], [-77.32343524204569, 34.694782277823165], [-77.32373983346722, 34.69474335629913], [-77.32389660246986, 34.6947352966567], [-77.32413519318985, 34.69476463105517], [-77.3242461376864, 34.694748041065694], [-77.32429263707934, 34.69490427581836], [-77.32427966781951, 34.695031017537744]], [[-77.44701141365239, 34.68166119076757], [-77.44737140756763, 34.681599534192614], [-77.44742200746144, 34.681584620671124], [-77.4475115367911, 34.68157553371718], [-77.44770437436544, 34.68155596126781], [-77.4478527065651, 34.681540905687896], [-77.44803442835752, 34.681522460876025], [-77.44863036827589, 34.68146197069547], [-77.44851872419343, 34.68192762082248], [-77.44851580891546, 34.68195622946118], [-77.44822542005416, 34.68215000419704], [-77.44799704397006, 34.68217284780142], [-77.44784288127823, 34.682185027564906], [-77.44779701653258, 34.68219747673411], [-77.44773600821102, 34.682213024688345], [-77.44749326335346, 34.68228618810736], [-77.44739050856327, 34.68228073093476], [-77.44715672185455, 34.682342114185985], [-77.44666673074184, 34.68239824844413], [-77.44655127399213, 34.68240439180377], [-77.44649133391835, 34.68242734410484], [-77.44629538107446, 34.68243696302901], [-77.44629613740184, 34.68198742489761], [-77.44630422763875, 34.681712497189984]], [[-77.35322501928528, 34.55091770569497], [-77.35320534130737, 34.550785483234414], [-77.35324426932027, 34.55053959267346], [-77.35327685837485, 34.55042060044207], [-77.35317984653985, 34.550276321347056], [-77.35343825930858, 34.550074200322605], [-77.35351362375212, 34.5499419782252], [-77.35397118791954, 34.54998955460218], [-77.35422254678045, 34.55011552206906], [-77.35446416656504, 34.55009926310586], [-77.3545051193515, 34.550243800566975], [-77.35458755334186, 34.55046453331841], [-77.35459805539438, 34.55047524558501], [-77.3545977347677, 34.550480932331034], [-77.3546865169266, 34.55070733345627], [-77.35458153890127, 34.55095835887715], [-77.35457888115775, 34.550967650504546], [-77.35457512542393, 34.55098077857248], [-77.35447676602632, 34.55115575542641], [-77.35446345510447, 34.55122908814798], [-77.35439260908673, 34.5512593318774], [-77.35431418790252, 34.551325025825676], [-77.35419971403, 34.551389463657046], [-77.35419321302243, 34.551393734488414], [-77.35416806836558, 34.55140947268419], [-77.35409367770575, 34.551453835121876], [-77.35407352132765, 34.551456300552026], [-77.35399508832282, 34.551472714485286], [-77.35387920231895, 34.551507364075526], [-77.35379933353757, 34.55144842931385], [-77.3535692829598, 34.551357797612326], [-77.35351137062277, 34.5513029537787], [-77.35341356002807, 34.55115002439709], [-77.35329632822213, 34.55098293395839]], [[-77.43131476397062, 34.574260423268534], [-77.43131408870279, 34.574269814451974], [-77.43131209191209, 34.57427651091385], [-77.43130617179669, 34.57435134220291], [-77.4312591909388, 34.574328372090015], [-77.43051845112895, 34.57509326852616], [-77.43046062596504, 34.57518002660197], [-77.42990038392168, 34.575140270487026], [-77.42973050156954, 34.575177219755574], [-77.42948456513214, 34.57511845093229], [-77.4291629389331, 34.575192429602616], [-77.42915153447635, 34.5748078003364], [-77.42959452245283, 34.57451839467914], [-77.42970962349206, 34.574479502014114], [-77.42973026267084, 34.574444732069956], [-77.43001340231812, 34.5741526036914], [-77.43051798047144, 34.57368949112515], [-77.43062966797658, 34.573639958816784], [-77.4311350920159, 34.57363061322142], [-77.43130613570759, 34.5742466778727]], [[-77.4605488643562, 34.59381370050782], [-77.46016746851609, 34.594015895928976], [-77.46009507700731, 34.59407602014841], [-77.46002208829685, 34.594039132281196], [-77.4595613409117, 34.594046406621786], [-77.45937499611577, 34.59391617496516], [-77.45918029445234, 34.59386587090056], [-77.45905852445341, 34.59384604319154], [-77.45897150330245, 34.59381192652893], [-77.45890185702322, 34.59376068175162], [-77.4588327393313, 34.59366498589336], [-77.45879531206133, 34.59360644750702], [-77.45877772380956, 34.59352963705105], [-77.4588263593355, 34.5932818984911], [-77.45887876850837, 34.59325530427993], [-77.45919182527965, 34.59322576050889], [-77.45933615734329, 34.59322411800411], [-77.45965398477135, 34.593216860649434], [-77.45994428258824, 34.593219828836496], [-77.46040516956978, 34.59328900300562], [-77.46070847906451, 34.59342983251644], [-77.46081099458793, 34.59362168115614]], [[-77.34290186958548, 34.748980272284435], [-77.34287643966616, 34.74901637940697], [-77.3428648150464, 34.74903288471738], [-77.34283428295166, 34.749074882760674], [-77.34279368942795, 34.74906345817992], [-77.34282239625192, 34.749023791560155], [-77.34283771607018, 34.749008875592025], [-77.34287278247012, 34.74894241048856]], [[-77.32655819082589, 34.746174459096416], [-77.3265574644187, 34.746072966210235], [-77.32677607172164, 34.746006966977916], [-77.32673870522328, 34.7462335996093], [-77.32664894193141, 34.74636721474534], [-77.32654125027334, 34.7463953923049], [-77.32651889929966, 34.74638503293865]], [[-77.31717558963604, 34.694337819367014], [-77.31686182252707, 34.69412178924103], [-77.31680258958245, 34.69400693665872], [-77.31742370741124, 34.69368968268063]], [[-77.33709234324806, 34.768827778003285], [-77.33708109312141, 34.76881860253477], [-77.33709740705753, 34.76881036182822], [-77.33710230745018, 34.7688156944965]], [[-77.32710509027166, 34.562703640013446], [-77.32695310021653, 34.56256425120469], [-77.32710536200317, 34.56240591036544], [-77.32721413765502, 34.562526739794265]], [[-77.42657879410959, 34.575892308844274], [-77.42640617728871, 34.57606692386779], [-77.42630421169152, 34.576139128159035], [-77.42618488984404, 34.5762041115211], [-77.42606929153042, 34.57617712024987], [-77.42593176718611, 34.57616974057739], [-77.42592913438469, 34.57604637520522], [-77.4261818894404, 34.57586395491833], [-77.42618479243048, 34.57586177369841], [-77.42618523754051, 34.575860821934356], [-77.42618577634842, 34.57586026409809], [-77.42618701917212, 34.575857683563406], [-77.42634277318481, 34.57558332082135], [-77.42654489727123, 34.57538377438707], [-77.42657861043786, 34.57525659432563], [-77.42665715377862, 34.57536755031889], [-77.42676180140492, 34.57557969668872], [-77.42685360814929, 34.575763745073495], [-77.42664165715277, 34.57586213208385]], [[-77.44628241076268, 34.59828360683222], [-77.44672997648793, 34.59840818938291], [-77.44668371814917, 34.59858831153399], [-77.44652350403152, 34.598660660958345], [-77.44605552098652, 34.59847315000739], [-77.44595449963727, 34.5983771244364], [-77.44600462729161, 34.59828720307177]], [[-77.4254827740374, 34.57374565190496], [-77.4254554311823, 34.57390663081041], [-77.42539628395001, 34.573956356531184], [-77.42533339209727, 34.5739282800117], [-77.42505834680685, 34.57353619483651], [-77.42502454452287, 34.573480557604306], [-77.42539611468271, 34.57333707022926], [-77.425568444822, 34.57340195429412]], [[-77.34346193529193, 34.74815543063944], [-77.34341826761631, 34.7482466119058], [-77.34326742076578, 34.748305006364646], [-77.34336547339053, 34.748199837446826]], [[-77.33761738056968, 34.769232459481955], [-77.33782421561314, 34.76943898286165], [-77.33785650167658, 34.7694433659386], [-77.33794354573858, 34.76954433132345], [-77.33808963152491, 34.7695192547542], [-77.33809285675954, 34.769532808035585], [-77.33808319233911, 34.769541402174625], [-77.33793382548845, 34.76955915308248], [-77.3379226800508, 34.76956037090295], [-77.33780486407561, 34.769468293253276], [-77.33779090778613, 34.769464586709205], [-77.33755737112942, 34.769289130149964], [-77.33750299045721, 34.76924814041288], [-77.33758042405344, 34.76920984190834]], [[-77.42094937644985, 34.57406940969996], [-77.42095232754707, 34.5739503038227], [-77.42106243071592, 34.57384725531854], [-77.4211493571147, 34.573709642142], [-77.42145115204112, 34.573572326796274], [-77.4214550080408, 34.5735703208726], [-77.42145944068413, 34.57356780042301], [-77.42151103423367, 34.57362259089454], [-77.42182107541333, 34.573943463544346], [-77.4217248089947, 34.57409277799751], [-77.42146885381612, 34.57441894024711], [-77.42147073983489, 34.574433961864116], [-77.42151363526861, 34.57477561821611], [-77.42152121154997, 34.574835960928155], [-77.42153808116996, 34.57492126935936], [-77.42153904813169, 34.57493953025047], [-77.42145667478331, 34.574993219988556], [-77.42138587753041, 34.574961660850065], [-77.42138728119828, 34.57493007867512], [-77.42127254145431, 34.574871889536325], [-77.42125964871396, 34.57485432542887], [-77.42122360018034, 34.574705479863056], [-77.42108509150641, 34.574498652133414], [-77.4211886274932, 34.574459428021264], [-77.4210712211206, 34.574467066146596], [-77.4210625628161, 34.57444305832938], [-77.4209610466292, 34.574177060241134]], [[-77.42463138151003, 34.57398681088382], [-77.4246083226883, 34.57398274494295], [-77.42460378794006, 34.573970833381594], [-77.42459501173619, 34.57395288161985], [-77.42486951026808, 34.57364597646853]], [[-77.42215242818588, 34.573372022769654], [-77.42224425017524, 34.573281134929054], [-77.42250210826425, 34.57314254968975], [-77.42263819639751, 34.57313441316525], [-77.42273774976961, 34.573386425509845], [-77.42263827660835, 34.57346864413216], [-77.42252087437446, 34.57371576362794], [-77.42232786143016, 34.573780258949554], [-77.42224432177329, 34.57358532420829], [-77.42190514018989, 34.573872330366626]], [[-77.32226545123514, 34.69508913202187], [-77.32211004687937, 34.695084680087014], [-77.32226759814918, 34.695023570800245], [-77.32236608108688, 34.69501173773915], [-77.32234624851559, 34.69509333217857]], [[-77.45669184081052, 34.74468948973371], [-77.45660683585335, 34.744650435515645], [-77.45639535783826, 34.744606079719475], [-77.45617049069865, 34.74446100721212], [-77.45612509251556, 34.74443200435956], [-77.45609656964365, 34.74441696368191], [-77.45602693033746, 34.74436398905363], [-77.45590831324006, 34.74427231519952], [-77.45586995043858, 34.744205633203585], [-77.45578556206205, 34.74410032681165], [-77.45580242236605, 34.74386013223785], [-77.45615880755794, 34.74394454563971], [-77.45625917411427, 34.743968318315574], [-77.45635598935576, 34.74401644250801], [-77.45669332799831, 34.744167893106166], [-77.45678493445368, 34.744367542707096], [-77.45694172682816, 34.744683424119515], [-77.45697329880443, 34.74494392650316], [-77.4570043299849, 34.74498477518824], [-77.45694974610076, 34.74498573543456], [-77.45693057721937, 34.744972608351986], [-77.4569207323892, 34.74496586646562]], [[-77.3609603810815, 34.61203472794451], [-77.36093429900707, 34.612019035646014], [-77.36096040282429, 34.611988653243685], [-77.36098858471983, 34.61201122252406], [-77.3610753776919, 34.61208712212671], [-77.36107408146738, 34.612121423710015], [-77.3610482247831, 34.61212025874087]], [[-77.40087050103645, 34.581020863181706], [-77.40084878369103, 34.581028662817204], [-77.40082124791736, 34.58104216031667], [-77.4007727500785, 34.581017046452736], [-77.40077199554239, 34.581016781691176], [-77.40077175796289, 34.58101663257266], [-77.40077161508468, 34.58101639718631], [-77.40077165609867, 34.58101602549024], [-77.40077199556217, 34.58101558471786], [-77.40080911511336, 34.58094483879433], [-77.40082951864288, 34.5809460594038], [-77.40087050162298, 34.58098263802038], [-77.40089392011686, 34.58099874838161]]]]}, "type": "Feature", "id": "demo13", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.21163943593564, 34.66321343727479], [-77.20975523560644, 34.66033038088443], [-77.20945450711379, 34.65976831281712], [-77.2095027096556, 34.658424996049014], [-77.209229211185, 34.65831177098198], [-77.20639641817989, 34.65797242556882], [-77.20552945414678, 34.657779248117535], [-77.20593885758383, 34.65814341697946], [-77.20826536283766, 34.660212716191175]], [[-77.22740119510517, 34.677227164937], [-77.22812411197542, 34.676300799059376], [-77.2272286166309, 34.676080653111825], [-77.2266467006502, 34.67391418790389], [-77.22459225164008, 34.67281396826381], [-77.22376029265216, 34.67205422043961], [-77.22264751818585, 34.671797549765614], [-77.21917078926155, 34.66991039080176], [-77.22222683445429, 34.67262747175226], [-77.22455415318815, 34.67469642429957], [-77.22688158818295, 34.676765327282816]], [[-77.24740768829969, 34.69500473332242], [-77.25078814318768, 34.6938719570036], [-77.24849744835339, 34.693082305584554], [-77.24911670182682, 34.69141078282379], [-77.24889578014816, 34.69023154519471], [-77.24816573548016, 34.689576617427875], [-77.2465593721821, 34.68826934899711], [-77.24641060654771, 34.68667197698266], [-77.24585217385278, 34.68566194260592], [-77.24507722864173, 34.68374353326179], [-77.24477152763743, 34.683341296552754], [-77.24481919828482, 34.68248061807213], [-77.24567839355271, 34.67897471396713], [-77.24612249743703, 34.67696949180862], [-77.2476009244377, 34.674547151960596], [-77.24878228631555, 34.67180003572755], [-77.24924985816412, 34.670745319560694], [-77.24987655899683, 34.670118622336474], [-77.25133567569634, 34.66931791161268], [-77.25257835847411, 34.66851382698902], [-77.25420759668818, 34.666156076580556], [-77.25603524080698, 34.66920519708807], [-77.25743496284667, 34.66948509994147], [-77.25815504661625, 34.66960293513281], [-77.25952494833345, 34.66966477592995], [-77.2600107684524, 34.669555621838], [-77.26092517628275, 34.668716295681236], [-77.2628119636208, 34.667394518684986], [-77.26324180432248, 34.664140891203466], [-77.26307740002679, 34.66309727930835], [-77.26363062873385, 34.66204078083289], [-77.26408749630214, 34.662470510537325], [-77.265127643266, 34.66281723208293], [-77.26805917442411, 34.6637943538484], [-77.26923017259652, 34.664421979979004], [-77.27209799369052, 34.66538895165732], [-77.27463493618274, 34.66582853251599], [-77.2763377365251, 34.66577997788831], [-77.27951011138771, 34.664589634663855], [-77.2817123112997, 34.66433196448225], [-77.28222531375346, 34.664169547023654], [-77.28466748541591, 34.66476005984176], [-77.28615610767613, 34.66472280288559], [-77.28847189936593, 34.66466480131009], [-77.28972818460186, 34.66444778877363], [-77.2910672207795, 34.66418984029251], [-77.29323363504321, 34.663772543830326], [-77.29462165568881, 34.66330126041197], [-77.2965034999563, 34.662618305002574], [-77.29701881473484, 34.662481020410894], [-77.29738465088639, 34.66230971257427], [-77.29928414877392, 34.66100326260576], [-77.30130763918046, 34.66229602040737], [-77.30288908696174, 34.66440462517695], [-77.30402014860687, 34.666109551398925], [-77.30622501491055, 34.67006546843731], [-77.30647188875955, 34.670439197849014], [-77.30687358561829, 34.670610716088355], [-77.30819173848849, 34.672417428514336], [-77.30886076789987, 34.678020710814074], [-77.30884231221852, 34.67813884201585], [-77.30885731089136, 34.678210304114224], [-77.30887736546248, 34.6784517886194], [-77.30874625577131, 34.682050852338776], [-77.30869535079353, 34.68298262023178], [-77.30733790623182, 34.68374424549497], [-77.30563247293189, 34.685373447909406], [-77.30330333963106, 34.68669485590804], [-77.29898712897399, 34.689694295987664], [-77.29596016759577, 34.689928581878526], [-77.29357728841974, 34.69000247470301], [-77.29354298653845, 34.690005862855735], [-77.29352026272662, 34.69000246035347], [-77.29346016346067, 34.68999137734404], [-77.29121500454963, 34.68977661501168], [-77.29006103465736, 34.69045633830595], [-77.28983603123518, 34.69179146858775], [-77.29000239067007, 34.69241374598698], [-77.28973978531806, 34.69290831211621], [-77.29000234867218, 34.69394193013619], [-77.29015023706515, 34.69574468706402], [-77.29046512618086, 34.69624922524882], [-77.28867253103218, 34.70003221158417], [-77.28905985049494, 34.70132203671073], [-77.28971702622013, 34.70414908534742], [-77.28661658476636, 34.70556963721442], [-77.28608595705681, 34.70517177188386], [-77.28497793088073, 34.70479709031129], [-77.28721445346636, 34.70115276294006], [-77.28261176463205, 34.70287233036968], [-77.27955425122694, 34.70310505991704], [-77.27309948095964, 34.7064204326544], [-77.27229352088365, 34.70688095031424], [-77.27123064630447, 34.71343362609651], [-77.27151778249966, 34.71443385881423], [-77.27103610812996, 34.715986059462104], [-77.2771981530775, 34.72145533096695], [-77.28481273053896, 34.72821219643995], [-77.29242855289979, 34.734968529843314], [-77.30004562059206, 34.741724330822414], [-77.3038546215725, 34.74510203154202], [-77.30710142740406, 34.74798084651542], [-77.30669217697397, 34.74471371594805], [-77.30567542130967, 34.74370288582274], [-77.304920875596, 34.74143915176055], [-77.30479952384275, 34.741073899582766], [-77.30596569585687, 34.73717518077758], [-77.30585888914243, 34.73666190791381], [-77.30656539669505, 34.73671430719811], [-77.30646592225972, 34.736947014146935], [-77.30888574857205, 34.7380834590174], [-77.31008421608502, 34.74016373346879], [-77.31024579217515, 34.74019065922865], [-77.31017899574908, 34.740337650345296], [-77.31024553337855, 34.74055163265941], [-77.31069844348215, 34.7422159715922], [-77.3104572979336, 34.7431805532152], [-77.31019384729808, 34.74423445921767], [-77.30814472986643, 34.748110113573944], [-77.307902649574, 34.74844692440022], [-77.30796998421744, 34.748750928765936], [-77.31147355807201, 34.7518570332196], [-77.31211591595341, 34.75242646583507], [-77.31381099090528, 34.75205946327932], [-77.31443887830437, 34.75193161242709], [-77.3147324760632, 34.75141088963693], [-77.31570247441307, 34.75049768588225], [-77.31671295289067, 34.75032171471392], [-77.31687857135049, 34.750263216422724], [-77.31770578179433, 34.75002905295603], [-77.31677454873132, 34.750110017354714], [-77.31560703957821, 34.7502567766838], [-77.31537880739874, 34.750210773299486], [-77.31410181059064, 34.75106008296444], [-77.31235817315775, 34.7511772213517], [-77.31202661717083, 34.74995661047685], [-77.31158072442453, 34.74794348120808], [-77.31331436885688, 34.74553142937229], [-77.31418780032598, 34.74404684242696], [-77.31712758130712, 34.74328514790679], [-77.31525932954133, 34.7426424905032], [-77.3147301909981, 34.74066565595279], [-77.31473524957556, 34.73989273200691], [-77.31468190361026, 34.73972117354894], [-77.31557999645236, 34.73774484521111], [-77.31714497635312, 34.73645237941026], [-77.32232917330396, 34.73101521584717], [-77.32244383000878, 34.73093446968894], [-77.3277878990138, 34.73301143803684], [-77.3315060499595, 34.732410761148884], [-77.33237436971203, 34.73263795917977], [-77.3338631008714, 34.73254357106386], [-77.33507449892326, 34.733028153655], [-77.33476545843514, 34.733952424591955], [-77.33587182980952, 34.73387465645006], [-77.33736160283202, 34.73394303590454], [-77.33840620744792, 34.73430592687689], [-77.33870396638028, 34.7344799760329], [-77.3403015272614, 34.735118975264356], [-77.34192502918503, 34.734753078227435], [-77.34324387121588, 34.73404921922034], [-77.34544295238004, 34.73391400457227], [-77.34645187616995, 34.73442489244786], [-77.34661770175157, 34.734485611827004], [-77.34766201508401, 34.734521657824565], [-77.34812439575771, 34.73454407598475], [-77.34849880925697, 34.734427228985986], [-77.34891703762948, 34.73432468764844], [-77.34933802694397, 34.73434285624657], [-77.34926005330166, 34.734006661875696], [-77.34912730357375, 34.73394380781403], [-77.34950920061216, 34.73299771251913], [-77.34938146501011, 34.73272597112498], [-77.34861996663483, 34.73275728279975], [-77.34832727278493, 34.73223171910422], [-77.34621337243584, 34.73150042943705], [-77.34616005415802, 34.73149590824074], [-77.34615056547472, 34.73147850500609], [-77.34493371039608, 34.72928572528768], [-77.34415572479253, 34.72788368070946], [-77.34565901895755, 34.72557434725209], [-77.34668391981083, 34.721778347225026], [-77.35093966429918, 34.719154633435735], [-77.35194729649552, 34.71623037885072], [-77.35551207621437, 34.715741003238485], [-77.35687320027972, 34.716947135504746], [-77.35850858951657, 34.716938741498396], [-77.36020662773757, 34.71606978118666], [-77.36087883044728, 34.717018673214106], [-77.36215031505247, 34.7176154439978], [-77.36390093496712, 34.71784696332086], [-77.36445924973646, 34.71792106004998], [-77.36509027633352, 34.71766470647501], [-77.36695810879547, 34.71756324167756], [-77.3693614532815, 34.71662478113817], [-77.36938129849372, 34.71636101036463], [-77.36850202429699, 34.71430599554068], [-77.36834664534419, 34.712865070455365], [-77.3693946386299, 34.71126770627556], [-77.3696993341292, 34.71023041830037], [-77.37014332446385, 34.7087190571074], [-77.37056684263305, 34.70720114065858], [-77.37067398561456, 34.70669655612936], [-77.37061340552741, 34.70637277687707], [-77.37020711696894, 34.70636719346971], [-77.36858432466732, 34.70503416768704], [-77.36854953221479, 34.7048073721609], [-77.36855921989329, 34.70379373815973], [-77.3682179526567, 34.703134947076165], [-77.36777477686182, 34.70224972204005], [-77.36670572120553, 34.70192914046871], [-77.3654801024561, 34.701561588318114], [-77.3648414638857, 34.70135357421902], [-77.36450507030075, 34.701261007822836], [-77.36354847868142, 34.70098228698631], [-77.36146919947717, 34.70079524332681], [-77.36102190856552, 34.70022450331661], [-77.36008630789995, 34.6999851156501], [-77.35927297095989, 34.69974604165775], [-77.35897573718626, 34.69968644717554], [-77.35884376907708, 34.6996621070939], [-77.35782821667645, 34.699742028552045], [-77.35767810383321, 34.70003217333928], [-77.35728584275064, 34.70053778411292], [-77.35722502825195, 34.700745995251914], [-77.35722502005318, 34.700907892370594], [-77.35722501301338, 34.70159291540256], [-77.35721793813315, 34.70249019651107], [-77.35718387724313, 34.70270118757785], [-77.35713066932848, 34.70413419008601], [-77.35722497091558, 34.70558967802859], [-77.35359578298602, 34.707092936959796], [-77.35347590846328, 34.70737297728482], [-77.35306130104729, 34.70726562273549], [-77.34818716446614, 34.707976484449055], [-77.34712350454454, 34.70552722425256], [-77.34438724880314, 34.704569297248966], [-77.34428471654986, 34.70455801516392], [-77.33995860892136, 34.70560393940679], [-77.33923203071208, 34.70582772152187], [-77.33872649459343, 34.70568071067851], [-77.33493813486109, 34.70625983716647], [-77.33430956277321, 34.706284507943195], [-77.3338460441611, 34.70628172478023], [-77.32952940942114, 34.7065713524298], [-77.329423835273, 34.706614460572766], [-77.329368648686, 34.70657250305433], [-77.32925939362438, 34.7065326294352], [-77.32593993287612, 34.706056563974784], [-77.32489327350225, 34.70572239379985], [-77.32170877909428, 34.70615758560617], [-77.32042922821329, 34.70460176154768], [-77.31750836283953, 34.70612625654957], [-77.31321494701858, 34.706383519864815], [-77.31045867835047, 34.705944628792366], [-77.30948822269829, 34.70534244231096], [-77.30867757925301, 34.70356727675824], [-77.30663818655324, 34.70261215927872], [-77.30519294086348, 34.70203163048191], [-77.30346896501094, 34.70126699523589], [-77.3022680021644, 34.70116957515665], [-77.29906597625613, 34.69897137409945], [-77.30119715945993, 34.69676466617406], [-77.30123695240849, 34.696724876792416], [-77.30124709503558, 34.6966707436459], [-77.30113857588417, 34.694788902187426], [-77.3022814152821, 34.692617678019786], [-77.30527039375778, 34.69085115572896], [-77.30579047893636, 34.69062253849492], [-77.30917448686245, 34.6905757631483], [-77.30954864831192, 34.691688153530464], [-77.30967603189535, 34.691766313472606], [-77.30977260808098, 34.69183802806959], [-77.3105822565206, 34.69264567742932], [-77.3106050176799, 34.6930925695915], [-77.31158842755792, 34.693212494398686], [-77.3116792019346, 34.69180217728409], [-77.31106076938794, 34.691481072404386], [-77.31201691565371, 34.691038400516845], [-77.31400333075266, 34.68912858844916], [-77.31391364814365, 34.686931336113076], [-77.31466073845638, 34.68513963980703], [-77.3149992336383, 34.68346757981206], [-77.31519858185824, 34.683116533247066], [-77.3175232632604, 34.68165412072957], [-77.31817208867177, 34.68117438636845], [-77.3195525011697, 34.68057050395852], [-77.32185349836236, 34.67933242674765], [-77.3230071270274, 34.67926225714183], [-77.32565393524456, 34.67790119866552], [-77.326073048098, 34.67796796720577], [-77.32819160470945, 34.67789924793569], [-77.32956967366646, 34.67596215801732], [-77.32984040500304, 34.67526128284467], [-77.32976061988688, 34.67474172091088], [-77.32929130688731, 34.67411499778686], [-77.32874481343313, 34.672370400508335], [-77.32835264470566, 34.671566322574144], [-77.32759463234649, 34.6701024884856], [-77.32663681821242, 34.66825265735447], [-77.32652526970928, 34.66791795137064], [-77.32633544699577, 34.667869731266435], [-77.32627115725842, 34.66783015860421], [-77.32480820123321, 34.66630044058525], [-77.32440270578284, 34.666182753718], [-77.32348243756618, 34.66670038401041], [-77.322352750613, 34.66656756683818], [-77.32085353259093, 34.6663660873373], [-77.3162142810506, 34.66257945973356], [-77.31786059916766, 34.66007423769187], [-77.31786055827004, 34.658977990511744], [-77.31751914039178, 34.65776859864893], [-77.31738452899049, 34.65735529198368], [-77.31667849854477, 34.656300661072116], [-77.3163548873645, 34.65580845500924], [-77.31609708502536, 34.655432167540866], [-77.31449779801665, 34.65456566077861], [-77.31303662324477, 34.65294495148268], [-77.31140145265778, 34.65151149584046], [-77.31058756309828, 34.649846938478454], [-77.30972070360126, 34.649183481962666], [-77.30836705904339, 34.648335195353525], [-77.30806868113496, 34.648258940789106], [-77.30694721752486, 34.648125073450274], [-77.30427808676025, 34.64738787284489], [-77.30420610535923, 34.647387352503586], [-77.30412699376402, 34.64735600625182], [-77.30158575987029, 34.64693242474319], [-77.29985675016873, 34.646812071187256], [-77.29812599365279, 34.64698043864117], [-77.29660839191547, 34.64765527938004], [-77.29523909275463, 34.64857281267918], [-77.29484245089094, 34.6492531465336], [-77.29366251599845, 34.65216436161954], [-77.29417078605695, 34.65396639369812], [-77.29417080132974, 34.65547060577413], [-77.29355486696834, 34.65797891488138], [-77.29346370892013, 34.658646654508324], [-77.2929301262451, 34.6590161733182], [-77.29133211586775, 34.65966909569556], [-77.28936735136519, 34.66016032147252], [-77.28888757653475, 34.66025274406039], [-77.28837272001118, 34.66034168112412], [-77.28643699454294, 34.66080643028397], [-77.28455151617146, 34.66100172170564], [-77.28391778590814, 34.661017582586716], [-77.28344702256788, 34.66090375283798], [-77.28220011544141, 34.66048393581742], [-77.28145659747818, 34.660251066916906], [-77.28113353038731, 34.65990540293164], [-77.27975071949174, 34.65903604852715], [-77.27766786669467, 34.65538944777196], [-77.27666237265481, 34.65596722718218], [-77.27584117931836, 34.654601857414946], [-77.27643915941351, 34.65342029122737], [-77.27723879249399, 34.65324628183508], [-77.28027388461742, 34.651662472949056], [-77.28193852796952, 34.651135028440564], [-77.28361124318096, 34.65140632580479], [-77.28665809759114, 34.65228749911037], [-77.28477306449163, 34.649109891189994], [-77.28358874972875, 34.646791021766816], [-77.28193645640454, 34.645544020961516], [-77.28039162347528, 34.641089141631056], [-77.28031405766953, 34.640487408364244], [-77.28174498021777, 34.637378236131], [-77.28189519880864, 34.63715291681425], [-77.28372617306636, 34.63448356852955], [-77.28413636747725, 34.633906266864464], [-77.28544458767288, 34.63303414394049], [-77.28747183772578, 34.63168265146505], [-77.28824709756435, 34.63148536751706], [-77.28914462795188, 34.631294128375906], [-77.29064338613327, 34.630665010063154], [-77.29234543720979, 34.63089678757376], [-77.29326681929875, 34.630978648059646], [-77.29407700667826, 34.63071508648137], [-77.29655703230709, 34.63151338641836], [-77.29861381779031, 34.63210525726411], [-77.2995050785618, 34.631109770140796], [-77.30192511610858, 34.629168227129675], [-77.30283761338283, 34.627627515622265], [-77.3049022443241, 34.626609960356326], [-77.3063890081477, 34.62341530147438], [-77.30601517693545, 34.622309648184434], [-77.30674603535134, 34.621578818849116], [-77.30877564315004, 34.6195492219592], [-77.30923241235257, 34.619089284271794], [-77.31100888952744, 34.61730049791781], [-77.31126185761947, 34.61653253429923], [-77.31188687063266, 34.615910280094155], [-77.3131855240359, 34.615387610567915], [-77.31493786553986, 34.61462778234241], [-77.31550764435819, 34.61420047313151], [-77.3165317040544, 34.6138235448011], [-77.31795821334907, 34.61365415738399], [-77.32021390064055, 34.61421812012531], [-77.32058918522685, 34.61400716961104], [-77.32376240318732, 34.60753032992895], [-77.32394190054858, 34.60702279411064], [-77.32473614731714, 34.606763645801784], [-77.32587631958998, 34.60724036160473], [-77.32850541004625, 34.60848270778244], [-77.33001704126974, 34.60995746935497], [-77.33229101420737, 34.610169454223545], [-77.33501203705494, 34.60933411862029], [-77.33717524910651, 34.6096809994365], [-77.33796042193511, 34.609441694626], [-77.34066203936109, 34.609441658490105], [-77.34285270997958, 34.6092888038723], [-77.34650294530523, 34.61112334873869], [-77.34681822588406, 34.6112388625904], [-77.34696742766761, 34.611462216553456], [-77.34742786648425, 34.611486260176655], [-77.3495156408754, 34.61069007458025], [-77.35012143518878, 34.610472153796856], [-77.35045062981135, 34.607511852100764], [-77.35327790740484, 34.60500501743908], [-77.35609077262804, 34.6067133192563], [-77.35643018215026, 34.606662451701396], [-77.35749740529727, 34.60729525006921], [-77.35868167223904, 34.606946051460184], [-77.35958338796371, 34.60668016562454], [-77.3600714290037, 34.606300408188645], [-77.3599377038775, 34.605794175533816], [-77.359782302231, 34.60560284967002], [-77.36007646222008, 34.60290689985844], [-77.36024006619118, 34.60235422926701], [-77.36008369696515, 34.60184037640942], [-77.36002386656887, 34.600687140644176], [-77.36020429767362, 34.599628052180876], [-77.36049435550878, 34.59892120212096], [-77.35958792703289, 34.59751980606295], [-77.35871389722566, 34.59672302507168], [-77.35816811476104, 34.59585959647214], [-77.35643742409967, 34.593121545145095], [-77.35620945767101, 34.59299072740634], [-77.35620030459363, 34.59274639163175], [-77.35623399949384, 34.59252203750212], [-77.3564378062534, 34.5924134182526], [-77.35717731097472, 34.59000466398202], [-77.35801561744854, 34.58959254608773], [-77.35921854883289, 34.58891557784541], [-77.35943150789274, 34.588711644260385], [-77.35959237316762, 34.58865698607276], [-77.35977320276614, 34.588640930121386], [-77.36009489625096, 34.58848163474633], [-77.36038066275705, 34.588340127982605], [-77.36040434565828, 34.588320336874844], [-77.36058320814283, 34.58808811774493], [-77.36070879482844, 34.587851956728734], [-77.36079132841435, 34.58743292814629], [-77.36080074090029, 34.58741416779078], [-77.36079678247873, 34.58739147789555], [-77.36053002465167, 34.58702858472068], [-77.36038139494886, 34.586864539761585], [-77.36006072137194, 34.5865926689631], [-77.35995048250315, 34.58626290386897], [-77.35962518678765, 34.58549425336111], [-77.35960821121243, 34.585463067871565], [-77.35960453189695, 34.585452244609236], [-77.35959401578923, 34.58541081631492], [-77.35938367359296, 34.584873202049195], [-77.35894804052387, 34.58470899037628], [-77.35887557114336, 34.584644797628], [-77.35867369142318, 34.58460557322688], [-77.35801810019083, 34.584861763985714], [-77.35706763702873, 34.58515439773405], [-77.35644159159492, 34.58543628420431], [-77.35595542615798, 34.58546502353006], [-77.35328938749915, 34.58507668510681], [-77.35154630478563, 34.58510480504984], [-77.35013687187784, 34.585246176262814], [-77.34773690677338, 34.58458512542727], [-77.34698495779328, 34.58447976538052], [-77.34653576734566, 34.58443167009532], [-77.34583294232226, 34.58404878928222], [-77.34383316019328, 34.58362169252479], [-77.34266166928555, 34.58324243004999], [-77.34195308661941, 34.58323631069129], [-77.34068110916792, 34.583191617417405], [-77.33794167793134, 34.58178721602423], [-77.33763454627754, 34.581718617156916], [-77.33752994847679, 34.581645566936054], [-77.33699914916087, 34.581350577032154], [-77.33546660636239, 34.580970346697924], [-77.33437814706207, 34.581028649593065], [-77.33369596097342, 34.5816631001866], [-77.33217880607303, 34.581588369322944], [-77.33122566734366, 34.58125841278708], [-77.33080928326812, 34.581114264990795], [-77.32995797139768, 34.58090459922998], [-77.32964974461265, 34.58099895770763], [-77.32833678945991, 34.57977141381366], [-77.32860655944492, 34.57916017474238], [-77.32876201929406, 34.57705196779753], [-77.32888688088683, 34.57629607297143], [-77.32910391540132, 34.57516033016033], [-77.32908488957699, 34.57456947089841], [-77.32841035602425, 34.57430996726241], [-77.32807977391911, 34.57406673321981], [-77.32785020516208, 34.57389782133256], [-77.32808068303143, 34.57304904445245], [-77.32808372595936, 34.57301844229575], [-77.32808570899655, 34.57301490802097], [-77.32810092349416, 34.5729909680861], [-77.3287068478165, 34.571901102709276], [-77.3288700129444, 34.57154297949886], [-77.32900386097839, 34.571184820166245], [-77.32904669265127, 34.57098881446127], [-77.32903296155276, 34.570506158313236], [-77.32895951234413, 34.570342119204724], [-77.32892587836785, 34.57028795274458], [-77.32887122765206, 34.57017156961699], [-77.32866926549707, 34.56975277945624], [-77.32858574202793, 34.569546757894344], [-77.32887244826429, 34.568794966435355], [-77.3289309564713, 34.568711040518146], [-77.32913576970611, 34.568618640267644], [-77.32910197414026, 34.56837656476462], [-77.32936169988054, 34.56773709555466], [-77.32869497854463, 34.56717662278566], [-77.32818720568706, 34.5663160216712], [-77.32812498191169, 34.56621667709775], [-77.32811191273046, 34.566191523319254], [-77.32808747106867, 34.56547554031003], [-77.32808009707821, 34.565374053842596], [-77.32808421947396, 34.56536985514653], [-77.32796252823425, 34.564677288817514], [-77.32786445358803, 34.564555969443894], [-77.32769445104122, 34.56443233221957], [-77.3275039562433, 34.564388560531555], [-77.32730065562195, 34.56425334866344], [-77.32680315198385, 34.56439538352073], [-77.3265126099212, 34.56439575061614], [-77.32618220949482, 34.564441703397655], [-77.32558289919366, 34.564883816047065], [-77.3251539053271, 34.565180227358105], [-77.32493584635652, 34.56538854347174], [-77.32420626231439, 34.56599416045262], [-77.32300015890678, 34.56695301872888], [-77.32239766709282, 34.56770311948481], [-77.32177986936216, 34.56977666060772], [-77.32146761088015, 34.570569448484406], [-77.32044114546042, 34.57267367457371], [-77.31909923623115, 34.574305843683206], [-77.31835051747858, 34.577519092711164], [-77.31546623651116, 34.579235756296825], [-77.30947636968128, 34.58213744253568], [-77.30915827774744, 34.58233784684991], [-77.30901789318489, 34.58239455580402], [-77.30871756730149, 34.58258599234144], [-77.30543985727323, 34.58438950623875], [-77.30453193428254, 34.58498244727397], [-77.3020081259416, 34.586521231161235], [-77.30012042456401, 34.58851224909642], [-77.29830931661687, 34.590763698969276], [-77.29741923999978, 34.59291213801832], [-77.29646538019011, 34.59582145523613], [-77.29605299492732, 34.59697561553314], [-77.29371543480266, 34.59814439876], [-77.2927542071247, 34.59923218422233], [-77.29208412719406, 34.59950668633343], [-77.29118785263859, 34.5997318874872], [-77.2873222786954, 34.601292225993], [-77.28566778078877, 34.601476590453444], [-77.28431342545471, 34.602022057849254], [-77.28246187978064, 34.602586198095764], [-77.28086440434316, 34.60413836570835], [-77.28037111939204, 34.604930028471834], [-77.27963710051934, 34.606822584861604], [-77.27938272980896, 34.608094635494936], [-77.27884689900588, 34.610105795828204], [-77.27666225779032, 34.613980904424], [-77.27589652218387, 34.615518493829065], [-77.27496699334814, 34.61630419778146], [-77.27238284641149, 34.61857129918876], [-77.27067595778936, 34.620449886681925], [-77.27004110250509, 34.62072734811906], [-77.26805789931782, 34.620160672317894], [-77.26709747204268, 34.619848146154915], [-77.26530121053143, 34.619177976008636], [-77.26482656109667, 34.61897456735223], [-77.26329776946827, 34.61818857334332], [-77.26057197665729, 34.617136063309275], [-77.26048507029682, 34.61708091973195], [-77.26006749896987, 34.61686654207628], [-77.25915411478334, 34.61637813346931], [-77.25881490859351, 34.616324222275225], [-77.25805128094864, 34.61638856808382], [-77.25769219656272, 34.61674452296151], [-77.2576515334797, 34.616970559632044], [-77.25746470649683, 34.61718158826584], [-77.25693978933495, 34.61849581352514], [-77.25696642357575, 34.61880201886045], [-77.25670916955478, 34.619138923132674], [-77.2553618074109, 34.62202573298677], [-77.25535992285592, 34.62244634323704], [-77.25495632277367, 34.62283874268847], [-77.25317889813965, 34.625782016181745], [-77.25313753366073, 34.626042225760045], [-77.2529966873747, 34.626354824685706], [-77.25241309714103, 34.62636345256875], [-77.24759851946135, 34.627870352022896], [-77.24437638308618, 34.62890931252699], [-77.2441342592993, 34.628992523682356], [-77.24370896770765, 34.6290707790709], [-77.2391499515306, 34.629819499532026], [-77.23612107568171, 34.63188520420436], [-77.23580740784548, 34.632106380227604], [-77.23566603061126, 34.632207910464786], [-77.23550504830479, 34.632395119937264], [-77.23563167534331, 34.632851417398506], [-77.2353280939345, 34.63540031122531], [-77.23565562078772, 34.63597787514712], [-77.23637216962575, 34.637948701520926], [-77.23788065053469, 34.63992401804985], [-77.23804895398243, 34.64026059412352], [-77.23784556105134, 34.64180454522388], [-77.23797099572433, 34.643228793417556], [-77.2379407704778, 34.643699543956146], [-77.23751418058032, 34.64414239976441], [-77.23609958852754, 34.64525131416647], [-77.23415667806448, 34.64717217895352], [-77.2334497173594, 34.64785886838446], [-77.23222541073498, 34.64890538444932], [-77.23173589211197, 34.64952352105133], [-77.23156236608234, 34.650738506946254], [-77.231446841725, 34.651546871086374], [-77.23106917075602, 34.654190215978716], [-77.23108471191077, 34.65447170076265], [-77.23109225070797, 34.65461845348167], [-77.23110800278928, 34.655103727498414], [-77.23124987109463, 34.65749846270372], [-77.23111436303478, 34.658244852296406], [-77.23209768906807, 34.65981186862403], [-77.23237937912087, 34.660015091609395], [-77.23428229581121, 34.66216201937328], [-77.23436662688438, 34.662210984586544], [-77.23448810351739, 34.66228151303587], [-77.23953691257631, 34.66511530484794], [-77.24133531374602, 34.66583354538095], [-77.24183899356417, 34.665996090042704], [-77.24303908809844, 34.66736637375238], [-77.24313652445308, 34.66770099594534], [-77.24302271976545, 34.66921021040875], [-77.24291872569944, 34.67016929686169], [-77.2427386279852, 34.67262452492794], [-77.24174768370219, 34.67907956351721], [-77.24164918678744, 34.67952429774041], [-77.24162108559554, 34.67963896327428], [-77.24126695694125, 34.68603264426485], [-77.24219032380906, 34.687247596276436], [-77.24303206655924, 34.69075451044117], [-77.24305151378192, 34.69096332512738], [-77.24312035180775, 34.69101934594042], [-77.24307414487699, 34.69115497173724], [-77.24675228358566, 34.6944225554686]], [[-77.37955996598114, 34.7781103677483], [-77.37999663908735, 34.77259669137336], [-77.38040441735605, 34.77160620081947], [-77.38403355661055, 34.76910657582645], [-77.38443754747341, 34.768543546015145], [-77.38328472514786, 34.76599673926409], [-77.38505628408213, 34.7683668131491], [-77.38536351970644, 34.7685526298158], [-77.38630601906624, 34.770935972514636], [-77.38796300370645, 34.7742498329621], [-77.3879047803339, 34.77463496180107], [-77.3884339838049, 34.774414548130125], [-77.40010913494261, 34.769550592754506], [-77.40594617728954, 34.76711821452283], [-77.40599298841354, 34.767098704335424], [-77.40600988406415, 34.766898426705374], [-77.40377739111221, 34.761887084119174], [-77.4038097411161, 34.76086711260704], [-77.40283693012047, 34.76014175900829], [-77.40202801662863, 34.758038994098804], [-77.40008213459572, 34.75753491910898], [-77.39823795956528, 34.758305427883066], [-77.39593088475354, 34.759143480154094], [-77.39450196711662, 34.76038604585279], [-77.39256515801414, 34.76017225545523], [-77.39023817018497, 34.759381048893935], [-77.3855978297088, 34.75780322540848], [-77.38319248794099, 34.7571029293741], [-77.37853666344925, 34.758232926412575], [-77.37735003612653, 34.75955280014056], [-77.37558730769277, 34.76097400849712], [-77.37432456871551, 34.76243929161748], [-77.37403219733335, 34.76284386906368], [-77.37353275855203, 34.762769033581016], [-77.37151349485042, 34.76198075222711], [-77.37132022264308, 34.76190529883698], [-77.36993147443884, 34.762126332312235], [-77.36993243308605, 34.762350500861054], [-77.36928073054797, 34.76275454881874], [-77.3692695512322, 34.763236942353466], [-77.36880699036996, 34.7632818745481], [-77.36859826796085, 34.763183667616886], [-77.36747534858898, 34.7637274887152], [-77.36728907522897, 34.76379394724797], [-77.36724368178136, 34.7647648427218], [-77.36672279943834, 34.76560465930865], [-77.36677819772815, 34.765720373905175], [-77.36747836022246, 34.7661826046045], [-77.36768955373894, 34.766313441457605], [-77.36816880984371, 34.76678765930531], [-77.36818594607956, 34.766813328507105], [-77.36841287480306, 34.76741084203815], [-77.36836860337533, 34.7675970035205], [-77.36818847428887, 34.76825982484178], [-77.36797381969357, 34.76837562358496], [-77.36790525580408, 34.76868245117587], [-77.36826102039166, 34.76876429987132], [-77.36876943948813, 34.76920998628495], [-77.36937320595659, 34.769352971404935], [-77.3700137873576, 34.769089445020526], [-77.37040625341841, 34.76889220160915], [-77.3715996241254, 34.76852591898513], [-77.37191502690149, 34.768365025120985], [-77.37229493117151, 34.768128328056605], [-77.3734578018989, 34.76917606213168], [-77.37345777161964, 34.769940669979704], [-77.37345771988105, 34.77296274207713], [-77.37341856009925, 34.77352721435996], [-77.37339474058413, 34.773779267061144], [-77.37369217831503, 34.77820516083543], [-77.37302898118118, 34.780829798426446], [-77.37675741085044, 34.7792774348736]], [[-77.49577654161212, 34.7296322245749], [-77.49749753324006, 34.7275383869666], [-77.49749758281955, 34.72534093582555], [-77.49751075861748, 34.72526082327244], [-77.49856029644052, 34.723438138074016], [-77.50092551002413, 34.72249762049031], [-77.50319133880103, 34.722578783811976], [-77.50622621772754, 34.721897503624646], [-77.50954268549401, 34.72387897700779], [-77.51095213297022, 34.72328983685686], [-77.51302813186287, 34.72242193491638], [-77.51197664680274, 34.719737388412696], [-77.51178433930836, 34.71936952135924], [-77.5116999281268, 34.71907989090923], [-77.51017732142626, 34.717087260888064], [-77.5098704128599, 34.716597241629486], [-77.50905655989791, 34.71592250151215], [-77.50816503917878, 34.71517586070638], [-77.50585001284355, 34.71470554267442], [-77.505632963863, 34.714614453304584], [-77.50476664571872, 34.715158389720045], [-77.50329512167332, 34.71614809146489], [-77.50306509100247, 34.71639928359788], [-77.502634313422, 34.71657491113449], [-77.50018732904564, 34.71767863162961], [-77.49681216113824, 34.718982763573706], [-77.49432247762468, 34.72005941253338], [-77.49361800111897, 34.7217137187388], [-77.49328666449833, 34.723528362888416], [-77.49318883663746, 34.7241847768833], [-77.49286752220945, 34.72592300432974], [-77.49206846902311, 34.72653555164002], [-77.49104334859099, 34.7266594124847], [-77.48946576840703, 34.72666954115624], [-77.48475193949325, 34.7275621914842], [-77.48442864866918, 34.727817737035615], [-77.48375616780893, 34.72868335665512], [-77.4836486266496, 34.72755500027458], [-77.48305167515298, 34.726968781500105], [-77.48047692452496, 34.725307936001784], [-77.47965125688039, 34.725140116682724], [-77.47899034215946, 34.72491933684007], [-77.47740983390085, 34.72402313350351], [-77.47595789185581, 34.72362359296608], [-77.47503580276138, 34.72336534741328], [-77.47429572548569, 34.72323395854121], [-77.4710070253143, 34.72276419164126], [-77.47029371624518, 34.72267875178677], [-77.47010128697909, 34.722695377114704], [-77.46985674645596, 34.722599873351605], [-77.46626971343903, 34.722087392566515], [-77.46519329309683, 34.7219336432607], [-77.46335142249393, 34.72232677772744], [-77.46309255830504, 34.72287851796936], [-77.46279471101903, 34.72436822091031], [-77.46182266701493, 34.72678363701194], [-77.46178590218253, 34.72848770237321], [-77.46189428791021, 34.72949626077558], [-77.46236016886141, 34.7317361240071], [-77.46248015142808, 34.73282332009455], [-77.46268122807402, 34.73327213587556], [-77.46400418422078, 34.73492044332289], [-77.46454762385025, 34.73553181303677], [-77.46593941849795, 34.73709753710473], [-77.46730053387739, 34.73795414695256], [-77.46951450988566, 34.73933963040967], [-77.47035782088606, 34.739556656423716], [-77.47154034353706, 34.739755614140186], [-77.47596295161975, 34.737908877599246], [-77.4817953711751, 34.735473035354765], [-77.4847114475621, 34.73425501450716], [-77.48762743501939, 34.73303692718884], [-77.49345914313683, 34.730600553178775]], [[-77.52646761638321, 34.71680243334426], [-77.52588702838261, 34.71508595286603], [-77.52609919653186, 34.712157260296365], [-77.5307085374404, 34.70788326370066], [-77.53069958053625, 34.7078230697295], [-77.5270795159265, 34.703000404725344], [-77.52326531325177, 34.702402960842804], [-77.520291476137, 34.70033150442357], [-77.51962568179151, 34.699532879467455], [-77.51942742087245, 34.69927647835608], [-77.515424714055, 34.697946507242655], [-77.5150029538105, 34.69786555775517], [-77.51468839005587, 34.69767505707193], [-77.51078131416932, 34.696372719459546], [-77.51035405357348, 34.69623028933549], [-77.50985620631185, 34.69610008584036], [-77.50621715797705, 34.695086441909744], [-77.50415832754973, 34.69648680348875], [-77.50239600540083, 34.69650318115096], [-77.50124914325966, 34.697550302452285], [-77.50188362986329, 34.69850218800194], [-77.50160539882522, 34.699910148265545], [-77.50131855987135, 34.7005245383409], [-77.5009524090712, 34.70100477354497], [-77.49945214766421, 34.7013942318192], [-77.49931340582046, 34.70142997070364], [-77.49755169598097, 34.701430006308016], [-77.49675019434473, 34.70143001777423], [-77.49487931932, 34.701430013491986], [-77.49420415464307, 34.70137054507638], [-77.49389040512848, 34.70143000829854], [-77.49314923204896, 34.701429988357056], [-77.49163685029687, 34.701384678339664], [-77.4897173090166, 34.70059456062132], [-77.48903300310195, 34.70030129837578], [-77.48916072525002, 34.699686134671104], [-77.48977162565635, 34.69896620753166], [-77.49022434183382, 34.698434408491025], [-77.4904047893475, 34.69823640765834], [-77.49065937420634, 34.69615676541927], [-77.49076370019353, 34.69600595032308], [-77.4922933766658, 34.694424446362085], [-77.49198071665165, 34.692338474388514], [-77.49177145887779, 34.69176524663241], [-77.49244347578457, 34.69092800147838], [-77.4934941412838, 34.6898895995656], [-77.49466441498724, 34.68861815477459], [-77.49745192508169, 34.68631722873671], [-77.49864499667173, 34.68452768305736], [-77.4987915206617, 34.68430791668634], [-77.4988535455798, 34.68361070577956], [-77.49908819978405, 34.68317300702236], [-77.49886861151288, 34.682986614512984], [-77.49864634213426, 34.68285646269713], [-77.4976949729537, 34.682429758906935], [-77.49719650455646, 34.68198661272476], [-77.49435670384825, 34.680282726050216], [-77.49402497804131, 34.67993732219594], [-77.49387602180354, 34.679780240967496], [-77.49176934168194, 34.679379340423466], [-77.48907679654384, 34.67866866070279], [-77.48879954248912, 34.678668661299284], [-77.48811761777942, 34.67866865816015], [-77.48486725580202, 34.6786686407226], [-77.48237650058383, 34.679203394154094], [-77.48092243874385, 34.67963296662227], [-77.48032446902057, 34.68033682805814], [-77.48030843845109, 34.680896647491714], [-77.48008135001763, 34.682009453782406], [-77.47970584257112, 34.68402287311208], [-77.47931357126214, 34.68493811407256], [-77.47861571686694, 34.68656621457171], [-77.47824877641818, 34.6873928215849], [-77.47743113860756, 34.68923501079455], [-77.47778062014473, 34.693060846853825], [-77.47652464753442, 34.69338995172438], [-77.47335899320976, 34.693668640564496], [-77.47083169263506, 34.69366867008955], [-77.47073526661039, 34.693659006737846], [-77.46827245700331, 34.69353098877819], [-77.46671700182183, 34.69292683657264], [-77.4657552271554, 34.69216758245027], [-77.4640962463051, 34.690242363086135], [-77.4632654468471, 34.68875828945233], [-77.46226210761544, 34.6864833858001], [-77.4624086521688, 34.6858896304729], [-77.46284088308468, 34.68413813024179], [-77.46273274103626, 34.68295463430174], [-77.46234460978377, 34.68173710948583], [-77.46135107088465, 34.680394363249576], [-77.46003404832689, 34.678202503783794], [-77.45991907134041, 34.67738496071969], [-77.45899185625382, 34.6764117842583], [-77.45848930962408, 34.675474177221844], [-77.45850424141396, 34.67529764644599], [-77.45829345626628, 34.67511677271478], [-77.4574650021341, 34.67306793384875], [-77.45729395045453, 34.672688522511805], [-77.45327199638822, 34.67090068029712], [-77.45319208933665, 34.67097384856725], [-77.44909392859721, 34.67437851276088], [-77.44869996837694, 34.675138092144294], [-77.44811296125746, 34.676513127210725], [-77.44671711269139, 34.677699136805586], [-77.44589378149442, 34.67821483255564], [-77.44337333665857, 34.67870565995943], [-77.44185425165205, 34.67903863799356], [-77.44175555023067, 34.679052046407904], [-77.4416855577624, 34.67910416546768], [-77.44074656840532, 34.67976941124833], [-77.4405687045477, 34.680102817977506], [-77.44051263810607, 34.680246657534816], [-77.44007397003648, 34.68024570553522], [-77.43965159855867, 34.68009912854099], [-77.43945985848963, 34.680153617508815], [-77.43921371394224, 34.68003672675189], [-77.43889085385605, 34.6799055641306], [-77.43866403471065, 34.67960026544877], [-77.43851852125566, 34.679434151460825], [-77.43841486887705, 34.67933589030569], [-77.43819908269036, 34.679220218203824], [-77.43786456385908, 34.67902320436318], [-77.43741976023665, 34.6790000525734], [-77.43728633533019, 34.678807078315224], [-77.43727824158132, 34.67855662804374], [-77.43737762895663, 34.67849142942989], [-77.43776135038053, 34.67850465739868], [-77.43797705583836, 34.67863425358811], [-77.43820637440902, 34.6786716627691], [-77.43858139377254, 34.67876010037129], [-77.43887461730955, 34.6788290480163], [-77.43892521908879, 34.67857350623308], [-77.43909876421868, 34.67829910550195], [-77.43921475607486, 34.678115706831576], [-77.43927181084683, 34.67798289335782], [-77.43941670415606, 34.67762728008041], [-77.439574234098, 34.67720779450155], [-77.43932308420092, 34.677035498188594], [-77.43924491416129, 34.67645247583309], [-77.43861995952699, 34.676411283596906], [-77.43829520325437, 34.676386427998885], [-77.43821106336087, 34.67664663903295], [-77.43801903745694, 34.67668270141779], [-77.4378939521269, 34.676706191995024], [-77.43741347853769, 34.67636772484566], [-77.43742428747248, 34.67631976806649], [-77.4373874897358, 34.67624198217253], [-77.4371431598273, 34.67554433304475], [-77.43679986078197, 34.67503503006548], [-77.43594207538521, 34.67376248511623], [-77.43455221437577, 34.673261185938415], [-77.4339084586376, 34.672589673540145], [-77.4330867156645, 34.67072472299809], [-77.43201359202345, 34.67011795059676], [-77.43004335826271, 34.67159160235849], [-77.42902227298137, 34.67231474115009], [-77.42864863106354, 34.672579348829906], [-77.42788662470356, 34.67364718625754], [-77.42588722632046, 34.67404693938161], [-77.42490243396298, 34.67510322402795], [-77.42413137105933, 34.673833499723564], [-77.4233322205406, 34.67167284938557], [-77.4234287203359, 34.670357913996405], [-77.42345055418227, 34.669585616972974], [-77.42397020855576, 34.667413535881835], [-77.42344996619792, 34.66708095391454], [-77.42247114374396, 34.66600711808993], [-77.42195827168285, 34.66524653372195], [-77.4216607627089, 34.665117384093556], [-77.42129732576905, 34.664656427048364], [-77.42043394128169, 34.66251285992311], [-77.41920424098794, 34.66129774228639], [-77.41605971773556, 34.65786768706817], [-77.41605762313289, 34.65785150968699], [-77.41634992619286, 34.65747174429427], [-77.41897720530183, 34.6539329371806], [-77.41912209469051, 34.653767953183134], [-77.41966467029678, 34.65091673457114], [-77.41996574817502, 34.6493230834147], [-77.42058423449285, 34.64770102850275], [-77.4212289076266, 34.64608927453641], [-77.42178337828312, 34.645003482683], [-77.42191768783762, 34.64436740728907], [-77.4225475050025, 34.64279306777946], [-77.42258450504256, 34.64270056988823], [-77.42270619223626, 34.64239632491005], [-77.42325119951292, 34.641033733381555], [-77.42341688958874, 34.64061947366669], [-77.42384578081355, 34.64027622655682], [-77.42440194095, 34.64032477218641], [-77.42499629897205, 34.64053662276679], [-77.42569286400492, 34.64057581343268], [-77.42613127851254, 34.640941166944245], [-77.4265824491624, 34.64131715305258], [-77.42743116230729, 34.64202443303839], [-77.42812186430069, 34.6426000641081], [-77.4283183603628, 34.642852726579505], [-77.42885634000945, 34.643212149402366], [-77.43014083670353, 34.644282587315494], [-77.43076338432114, 34.64480135975597], [-77.43174100642928, 34.64598406698259], [-77.43392113220361, 34.64634470790683], [-77.43545634884109, 34.64483259206244], [-77.43730862924086, 34.64334961733335], [-77.43827138448367, 34.64266194354447], [-77.43966270775925, 34.641348837227234], [-77.44196866541247, 34.638654141331564], [-77.44230673470666, 34.637318504417934], [-77.44321560551072, 34.63534476000977], [-77.44324296461886, 34.63516841645551], [-77.44343317318157, 34.634986434351276], [-77.4438462939392, 34.63484834223698], [-77.44666260595652, 34.63388709025695], [-77.44735889444516, 34.633959370426126], [-77.4475842886436, 34.6339367159499], [-77.45121761476918, 34.632687949052276], [-77.4540431276669, 34.63151357414924], [-77.45724442423752, 34.62944241954997], [-77.45859164992616, 34.62889272472539], [-77.46070170275269, 34.62888732436064], [-77.46045797962296, 34.62747405737677], [-77.46155089090414, 34.62433996806106], [-77.4615394416558, 34.62422543112795], [-77.46154795355083, 34.62420900275108], [-77.46171868564748, 34.623971560610784], [-77.46407908874512, 34.62053273962748], [-77.46424023938296, 34.62021508144443], [-77.46456989052697, 34.62000631519134], [-77.46530429524393, 34.61958665108448], [-77.46780947750261, 34.61946843420412], [-77.46859925072327, 34.61936040930202], [-77.46875532452658, 34.61919856156869], [-77.46958785688759, 34.61713033844227], [-77.46868891541075, 34.61544700630139], [-77.4672964717164, 34.61370638827288], [-77.46692801483545, 34.613262056564196], [-77.4656252224134, 34.61187762404083], [-77.4652074786168, 34.61134823348105], [-77.46470491172747, 34.61046792115265], [-77.46440438115658, 34.61010029465653], [-77.46432543824614, 34.609809211978295], [-77.46425596129161, 34.608665535429175], [-77.46502088001867, 34.60630165888486], [-77.46550814431542, 34.6057940265729], [-77.46795790411463, 34.60465499158236], [-77.4686683349662, 34.60426444323185], [-77.47101194627118, 34.60276421328632], [-77.47167856433208, 34.60063883641479], [-77.47237419902335, 34.59828595038195], [-77.4718675497319, 34.59692470075132], [-77.47113205904672, 34.594886334084066], [-77.470941743439, 34.5928302165661], [-77.47073954356406, 34.59204418757818], [-77.47151877123684, 34.59003440719379], [-77.47171688269869, 34.588810950322], [-77.47187304017916, 34.58820125452726], [-77.47258275994976, 34.587855831162415], [-77.47331805006856, 34.587832853498135], [-77.47968189982826, 34.58597789166326], [-77.48024782650813, 34.58513926798548], [-77.48112542546602, 34.583170505835284], [-77.48159485540592, 34.58169238045286], [-77.48144973719536, 34.58012352004409], [-77.48083816902623, 34.57862983215597], [-77.48088697303362, 34.5773299497696], [-77.48068471667754, 34.57641953675376], [-77.48032809892851, 34.574535229386775], [-77.48023418899265, 34.57378469750506], [-77.48066506789836, 34.57152390625236], [-77.48067297169288, 34.57148243715939], [-77.48067123306461, 34.5714603016342], [-77.4806959804324, 34.57143308559163], [-77.48075546328847, 34.57141325735319], [-77.48454811149102, 34.57014904355158], [-77.48626029170102, 34.568460692579556], [-77.48652539631897, 34.56685651582791], [-77.48666527660666, 34.56612515062087], [-77.48666518364685, 34.56417880019533], [-77.48663422335724, 34.563871068993635], [-77.48651982046852, 34.563597058075494], [-77.48667903407954, 34.56258577060992], [-77.48679769455741, 34.560869997923774], [-77.48710406106497, 34.55884697211002], [-77.4864412510437, 34.557134563219456], [-77.48489099309563, 34.5555059698487], [-77.484677411546, 34.55528158959506], [-77.48263502771185, 34.55447653951428], [-77.4802543550141, 34.554478971147866], [-77.47817046415898, 34.555721606858384], [-77.47602759131254, 34.558037514521985], [-77.47542461395784, 34.559715506903316], [-77.47335576282607, 34.559984015259694], [-77.47074166053682, 34.56303162554228], [-77.47055655734991, 34.56511146890454], [-77.47055657211364, 34.56550831742943], [-77.47042067414064, 34.56787410104209], [-77.46798598628416, 34.571074819326334], [-77.46474007642794, 34.57084114283196], [-77.4637535178659, 34.57097047152484], [-77.46319535918319, 34.573518066871515], [-77.4634541622294, 34.574294069970705], [-77.46366808849135, 34.57486023837362], [-77.46369730752821, 34.575431176883185], [-77.46358087268855, 34.576362204897784], [-77.46345817860103, 34.57794714819704], [-77.46329597008963, 34.57939769252065], [-77.46320473011895, 34.580213731541036], [-77.46317384109045, 34.582386728910926], [-77.46314918630398, 34.58267178426628], [-77.46283915565279, 34.58298453539205], [-77.4618574745146, 34.58469727355355], [-77.46053443154301, 34.58609410559515], [-77.45972122161979, 34.58695268081116], [-77.45795978971759, 34.58828836818195], [-77.45631970961644, 34.589886106890674], [-77.45600912228066, 34.59008331695561], [-77.45527655886691, 34.590548445941906], [-77.45349356521768, 34.591680551168025], [-77.45287286847282, 34.592654720754844], [-77.45172938649142, 34.5935407357237], [-77.45056160299369, 34.59372259796423], [-77.44970612568797, 34.59361455687384], [-77.4491921504103, 34.59356866726067], [-77.44890508610949, 34.59352095128097], [-77.4478868066943, 34.593336310681636], [-77.4475947153856, 34.59273976602995], [-77.44798313269453, 34.59222959238154], [-77.4477650354795, 34.59121416806241], [-77.44775661084823, 34.589838272848525], [-77.44748682572651, 34.589763787490945], [-77.44763200241675, 34.589495200842194], [-77.44786164342648, 34.58926107770453], [-77.4505190064635, 34.585928231656986], [-77.45079124834662, 34.58565103667336], [-77.45101157084673, 34.58505220764818], [-77.45199634349524, 34.58231761483245], [-77.45161191562337, 34.579626825405064], [-77.45153376378886, 34.57898775853293], [-77.45153374007889, 34.57842082177394], [-77.45110944823969, 34.5756523670362], [-77.45100598625554, 34.57551282059387], [-77.44992999615378, 34.57358467080227], [-77.44906846708854, 34.572550938264875], [-77.44785169611964, 34.571090828553764], [-77.44696266559026, 34.57041661740732], [-77.44624217853274, 34.56956311274111], [-77.44427059175132, 34.566912132671355], [-77.44339301700512, 34.56517310209381], [-77.44253687454851, 34.56330567208745], [-77.44222105913639, 34.5626219193315], [-77.44154382503768, 34.56154705173011], [-77.44023817861475, 34.56024146296036], [-77.43934257574824, 34.55934588039444], [-77.43839062717312, 34.557206571366265], [-77.43833004954, 34.55712073021826], [-77.43839053986173, 34.55699702729616], [-77.44028737803686, 34.55548615234636], [-77.44154120829847, 34.55580331289933], [-77.44417317772026, 34.55343699816299], [-77.44469097332852, 34.552964282268874], [-77.44478041091473, 34.5528871847987], [-77.44784174869662, 34.552449851300054], [-77.45065788069721, 34.552300973411505], [-77.45099267704876, 34.552283336183095], [-77.4514883887178, 34.552354162307154], [-77.45414358639277, 34.55211451291874], [-77.45678967832899, 34.55159619577595], [-77.45729421784426, 34.551539257749], [-77.45782002042468, 34.55146993939946], [-77.45886956767852, 34.55133142590814], [-77.46023335466136, 34.55078135246451], [-77.4604446466511, 34.55073598886914], [-77.46099765540012, 34.55044283308285], [-77.46044402690679, 34.5498183487373], [-77.45969843547283, 34.54803666887376], [-77.45917971027393, 34.54730929479956], [-77.4572901228995, 34.545106772542375], [-77.45683314546514, 34.54474471269185], [-77.45597720459264, 34.54296219147027], [-77.45499675428735, 34.541121407848095], [-77.45731974077667, 34.539300229397355], [-77.46008520750081, 34.54038444917871], [-77.46031089643911, 34.54048853561385], [-77.46043783566078, 34.54060594879888], [-77.46120107173728, 34.541045366879175], [-77.4640604979348, 34.542697984716945], [-77.46674239611244, 34.545237169832916], [-77.46982284371572, 34.54229698734082], [-77.47303836858735, 34.538582041015225], [-77.47306488665349, 34.53853222436439], [-77.47311259680856, 34.538496670761084], [-77.47629716677608, 34.53611798992445], [-77.47940327967416, 34.53457014556835], [-77.48043750770921, 34.534156454152395], [-77.48396881458396, 34.53300457668202], [-77.4852352101315, 34.53251381361234], [-77.48731126952994, 34.531919817288625], [-77.49074372836311, 34.531407062314216], [-77.49043666746107, 34.530286402253374], [-77.48945686519528, 34.526709941209816], [-77.48536797308327, 34.52782680127433], [-77.48083305793725, 34.529801019043084], [-77.48008574996018, 34.5300148367168], [-77.47949612174241, 34.53024333385159], [-77.47672795222994, 34.53184241900772], [-77.47314532189841, 34.533537384514126], [-77.47255319865698, 34.53430090112864], [-77.47201972295053, 34.53473734477655], [-77.46675391629977, 34.538686673273176], [-77.46332504075022, 34.53776371615491], [-77.46051266879881, 34.53687353704146], [-77.4601134682899, 34.536713855482155], [-77.45965243212463, 34.53652945398443], [-77.45677663867994, 34.53537907413834], [-77.45428640625452, 34.53438301266077], [-77.45293567914865, 34.53442655398028], [-77.4524619078381, 34.533653180577076], [-77.45119529358476, 34.53213351243554], [-77.45093172553284, 34.53208105934446], [-77.44830795324106, 34.532457853104276], [-77.4488094060517, 34.53369033707372], [-77.44935433635821, 34.53410310353659], [-77.44889166678121, 34.53472716610298], [-77.44889159442607, 34.5374930067977], [-77.44895738261637, 34.53807817248584], [-77.44889159803107, 34.53869878689779], [-77.44943043657989, 34.541927300345804], [-77.44957856854269, 34.54378322907692], [-77.44883114252964, 34.54773835339173], [-77.44883144844532, 34.548807636967595], [-77.44824705058612, 34.5493309251034], [-77.4478400915137, 34.549294914304156], [-77.44752187904328, 34.54934024611735], [-77.44229266969934, 34.55056653813865], [-77.4415391490506, 34.55124400308201], [-77.44060313941604, 34.551007236318306], [-77.43806598205737, 34.55036537195218], [-77.43617183102737, 34.54963105036863], [-77.43523663863995, 34.549849568248575], [-77.43405248929591, 34.54966942922942], [-77.42990211791741, 34.55050339879628], [-77.42893488895956, 34.5503656228486], [-77.42797151491861, 34.54946667943891], [-77.42652453459948, 34.54943629047739], [-77.42578369577913, 34.54954338387273], [-77.4248415123601, 34.54989667965421], [-77.42379497808113, 34.54903218638303], [-77.42263256159265, 34.54872297151901], [-77.42011133352895, 34.548885742242746], [-77.4178875180782, 34.54816749907329], [-77.41633061074144, 34.54806836798159], [-77.41517690615053, 34.548124470807444], [-77.41358046215456, 34.5471114047851], [-77.41361867638486, 34.54539638033706], [-77.41161994621041, 34.54347716309525], [-77.41168620054492, 34.54250495473171], [-77.41097910607321, 34.53965230385079], [-77.41024843412066, 34.537765417388286], [-77.4094121856783, 34.539878616364014], [-77.40800346799699, 34.541431279271215], [-77.40751539228698, 34.54243024248], [-77.40857064457592, 34.54391756068227], [-77.40812687995775, 34.54520138356389], [-77.40806657625319, 34.54790776615575], [-77.4062336213502, 34.55087452190737], [-77.40540761146477, 34.553273290865036], [-77.40464107847859, 34.55519563239475], [-77.40444715617961, 34.55599993725111], [-77.40527232783435, 34.55850111739059], [-77.40646584044455, 34.55877331921773], [-77.40687825456254, 34.55887910036269], [-77.40759390889546, 34.55909290947076], [-77.40781875980025, 34.55914717734294], [-77.40845394500087, 34.55930315178476], [-77.4087902244292, 34.55932906825456], [-77.40997538260524, 34.559461916817874], [-77.41002962814898, 34.55944368289119], [-77.4102304019032, 34.55948355912067], [-77.41132736343849, 34.55962472905953], [-77.41197681762728, 34.55963175894139], [-77.41318095502758, 34.559272340250374], [-77.41396274688942, 34.55980025519866], [-77.41576272661396, 34.5597688606156], [-77.41633236973738, 34.55979822577991], [-77.41693187778483, 34.55956773728229], [-77.41719055997676, 34.559403317762374], [-77.41790791460068, 34.55904469749403], [-77.41874323351826, 34.55915425491577], [-77.41948326011435, 34.557396841222314], [-77.42088453495357, 34.5581326236395], [-77.42105902880941, 34.558074419493494], [-77.42118144409906, 34.55803358485813], [-77.4213062897723, 34.55761696083047], [-77.42063860994458, 34.55628171746166], [-77.42177090225825, 34.55365137529886], [-77.41948261166361, 34.55396981762542], [-77.41919777328792, 34.55340015330735], [-77.41900753644418, 34.553120722722255], [-77.41948217934161, 34.55165807328644], [-77.4213260388555, 34.55137664966491], [-77.42263303131026, 34.55083070908914], [-77.42339747864654, 34.551662485123295], [-77.42500781662122, 34.55225358696313], [-77.42578445439344, 34.552446981728295], [-77.42783341957197, 34.55303328899206], [-77.4284850070558, 34.55514765639134], [-77.4287039280452, 34.55536658257474], [-77.42893642856579, 34.555492346444936], [-77.43112219718105, 34.5558070761975], [-77.43157797157384, 34.5580972026176], [-77.43208851505587, 34.55818946638338], [-77.43263624457272, 34.5585344451277], [-77.43402998533884, 34.55904700892664], [-77.43524060527875, 34.5603597801913], [-77.4356836436037, 34.56090023867177], [-77.43741813702964, 34.56169957594241], [-77.43952580104293, 34.56374124803605], [-77.44038614815082, 34.56486619680723], [-77.44154667801598, 34.56773988657446], [-77.44232797624747, 34.56928813248812], [-77.44289288820713, 34.57004770866316], [-77.44511354400477, 34.57267834590442], [-77.4456061848005, 34.57305194827767], [-77.44683474278943, 34.57517259195983], [-77.44748714461029, 34.57617656960721], [-77.44758823532102, 34.576448995106155], [-77.44785499656089, 34.577167772900275], [-77.44919111508595, 34.58128613417334], [-77.44939689845702, 34.582693808052255], [-77.44894288646645, 34.58392779712551], [-77.44785930583213, 34.585031092153955], [-77.44614346954413, 34.58656135179265], [-77.4453566320604, 34.58737384438567], [-77.44470855706875, 34.587965973752105], [-77.44405658083167, 34.58856165557834], [-77.44367439534632, 34.589200319344215], [-77.44370935282598, 34.5894610800572], [-77.44386308569918, 34.58950150546592], [-77.44392136342285, 34.58974092594413], [-77.44418728476771, 34.59024113871068], [-77.44460801009176, 34.59028990879403], [-77.44470984789996, 34.59046530848829], [-77.44538307378835, 34.59079336055318], [-77.44668228836044, 34.591152062550414], [-77.44668455559642, 34.591522343342874], [-77.44674324989873, 34.59179561424155], [-77.44643959607569, 34.59219445377621], [-77.44559317177789, 34.593310625890666], [-77.44523938272593, 34.59374688239686], [-77.44488246496643, 34.594186983148134], [-77.44477991944058, 34.59428107004128], [-77.4444373022667, 34.59470496669595], [-77.44440110651388, 34.59475835464539], [-77.44446924945552, 34.594772533324715], [-77.4449964682373, 34.594900690670464], [-77.44505863702469, 34.59483072096904], [-77.44509721277491, 34.59491894815031], [-77.44512128920793, 34.59492221920041], [-77.44641582100982, 34.59513511416986], [-77.44727721787791, 34.59525491961794], [-77.44838649211894, 34.59546797904328], [-77.44893720044574, 34.59570910682641], [-77.44966012623736, 34.59627930635248], [-77.45149441066506, 34.59623926816287], [-77.4517155720434, 34.59610734151091], [-77.4518390032408, 34.59605669149947], [-77.45180575158732, 34.59596972398767], [-77.45341920448482, 34.59465034264565], [-77.45437339717417, 34.5945470674863], [-77.45446839116096, 34.59464281184031], [-77.45454890539622, 34.594527434654566], [-77.45456624894541, 34.59444373196794], [-77.45447500045766, 34.594422802382205], [-77.45406370452747, 34.59384856812308], [-77.4549677384304, 34.59262705903332], [-77.45533424642854, 34.59232469999559], [-77.45666499851669, 34.591744234687425], [-77.45681019679526, 34.59167751485594], [-77.45701417552459, 34.59167379043149], [-77.45728013283104, 34.59145388624009], [-77.45812122638661, 34.590822404264756], [-77.45928145746075, 34.58940578235787], [-77.45977606764238, 34.588923941359745], [-77.46017763166226, 34.588619436831785], [-77.46332334294574, 34.58529824058515], [-77.4633859816259, 34.585232108405485], [-77.46343245873373, 34.585151019839046], [-77.46410208743066, 34.584475515246154], [-77.46506974658294, 34.58345319810395], [-77.46514758030251, 34.58337102171867], [-77.46522018978524, 34.58327979574408], [-77.46520672193328, 34.58312405628972], [-77.46532356066638, 34.58177318242938], [-77.46533513171404, 34.58095917637771], [-77.46558269034068, 34.57874504261946], [-77.46566961783991, 34.57796769629234], [-77.46625252655738, 34.57632530984668], [-77.46617202505786, 34.575622633659435], [-77.46608253517098, 34.57502711420451], [-77.46678344826611, 34.574359182077444], [-77.46704140142683, 34.5741239149972], [-77.46863410796857, 34.573441357409], [-77.47022385373728, 34.572760018091934], [-77.47201993800357, 34.570998991256296], [-77.47212716381146, 34.570845838252374], [-77.47238122275174, 34.568560108804164], [-77.47245221267801, 34.567921321841226], [-77.47254356620743, 34.56682949432197], [-77.47259162249695, 34.5661563546822], [-77.47328734486162, 34.56472860411387], [-77.47335692928301, 34.563946744550066], [-77.47417873128487, 34.562988659535044], [-77.47585985687381, 34.562770472609074], [-77.47761560081207, 34.56349263832994], [-77.47817106208706, 34.563600189358965], [-77.47859641336785, 34.5637703330524], [-77.48050872413697, 34.56266637218636], [-77.48166378556391, 34.561898397537924], [-77.48166382523625, 34.55962367595636], [-77.48201532611293, 34.55954411726935], [-77.48170038778674, 34.559371706587136], [-77.481997399513, 34.5589161651957], [-77.48301666944259, 34.55741716205], [-77.48322433965576, 34.557414079937345], [-77.48332170209324, 34.557523874133324], [-77.48413079229513, 34.55867747899224], [-77.48407467209648, 34.560032061102156], [-77.48405048403579, 34.56025607387544], [-77.48282021893137, 34.56200617280275], [-77.48277593409975, 34.56228745965279], [-77.48377777237775, 34.56468700243915], [-77.48382242034586, 34.565130782941665], [-77.48404881827784, 34.56608676322463], [-77.48374023528315, 34.567201312683515], [-77.48342770469885, 34.56746996302023], [-77.48007468241764, 34.56858767090395], [-77.47991087848918, 34.56856790385499], [-77.47980142502502, 34.56867875594967], [-77.47980134426732, 34.56877704255222], [-77.47816020496248, 34.57058189378201], [-77.47828451030443, 34.572164500075395], [-77.47811687039871, 34.57304406176097], [-77.47818639807932, 34.57366967965784], [-77.47829033034293, 34.574430531040335], [-77.47837327865768, 34.575093457217136], [-77.47847817975259, 34.57564773671236], [-77.47897330262542, 34.57787642468334], [-77.47888704187753, 34.58017395787353], [-77.47865359984024, 34.580663690772354], [-77.47863011556801, 34.58092872873397], [-77.47831395160757, 34.58171923421018], [-77.47785093460664, 34.582860243179624], [-77.47675847156097, 34.58441742151519], [-77.47646473934817, 34.5848526913078], [-77.47553108187662, 34.585124837735194], [-77.47412692796492, 34.585168717254795], [-77.47244765596326, 34.58523936471944], [-77.47184493919096, 34.58516286978619], [-77.46900973419085, 34.58662947528667], [-77.46832815381671, 34.58696120309813], [-77.46754975700017, 34.590000348352504], [-77.46729792148196, 34.59155558343298], [-77.46814910599261, 34.59278355156183], [-77.46776454149308, 34.59462759003782], [-77.46787455064543, 34.59581609868408], [-77.46824454984333, 34.59684152843744], [-77.46791875162478, 34.598757732982506], [-77.46749282711436, 34.59997414406811], [-77.46700061049253, 34.60136122289591], [-77.4654159994301, 34.60242614802908], [-77.46417644977416, 34.60321935568181], [-77.46279788852408, 34.60484598393422], [-77.4620274254151, 34.606347206147845], [-77.46198990862413, 34.609007615830855], [-77.46188136470982, 34.60934305592923], [-77.46188988427078, 34.609483298433], [-77.46194293145395, 34.610418378245186], [-77.46203326906317, 34.612010903975836], [-77.46204682615891, 34.612250013939956], [-77.46206518282605, 34.6125736187055], [-77.46274955890507, 34.61336269120867], [-77.46356554111844, 34.614396753914626], [-77.4638431005622, 34.61469170675177], [-77.46453054704958, 34.61536177680306], [-77.46435619913602, 34.617087952433174], [-77.46439981963061, 34.617487066178896], [-77.46406718207227, 34.617677148270865], [-77.46395001100636, 34.61774410384671], [-77.46153963899934, 34.619270579157366], [-77.4603613237002, 34.621593259985744], [-77.45913244582555, 34.62338358597941], [-77.45869972941307, 34.62502142263263], [-77.45787239020498, 34.62626746655692], [-77.45673803654348, 34.627501110218816], [-77.45347861774624, 34.629464535346166], [-77.45162098645258, 34.630666373886505], [-77.45076172758789, 34.6310235097703], [-77.4496568068904, 34.631403268796554], [-77.4467392041773, 34.631696518408845], [-77.44644952799354, 34.63166644776441], [-77.44537448938031, 34.63177529431393], [-77.44318691017295, 34.631997094577216], [-77.44234439131081, 34.6310098852651], [-77.44124112074851, 34.630718232845666], [-77.43996184177121, 34.631542774867725], [-77.43933858787875, 34.63304346755867], [-77.4392875709552, 34.63351041921353], [-77.43917088586403, 34.63374371733406], [-77.43900175003074, 34.63416652806331], [-77.43830142012098, 34.63591717673215], [-77.43792747623556, 34.63685201999451], [-77.43669684875925, 34.639928700651836], [-77.43663464939607, 34.64017443656126], [-77.43655891439992, 34.640262938959815], [-77.43648317751729, 34.64033441809108], [-77.43517568528456, 34.64225668880064], [-77.43387994630105, 34.64337072469524], [-77.43322443529148, 34.643799558966776], [-77.43217244718147, 34.64292294263654], [-77.431626218037, 34.642467779929746], [-77.43085165242229, 34.64182230507874], [-77.4300720794503, 34.64071006632247], [-77.42830578695046, 34.639593779625685], [-77.4277742363343, 34.63925784873136], [-77.42628863602897, 34.63801981281933], [-77.42450644368849, 34.63772230759808], [-77.42302473476289, 34.63727510463043], [-77.42126451227323, 34.63864580536702], [-77.42020372910784, 34.639494763645104], [-77.4197412319524, 34.64065110290568], [-77.41902910868816, 34.64223632946918], [-77.41832909034034, 34.64379437919394], [-77.41627566900299, 34.64597422928658], [-77.41599822736747, 34.647934349481545], [-77.41396122363689, 34.65028322700914], [-77.40870195749022, 34.6540382122163], [-77.40773146169431, 34.6549523825836], [-77.40715918213093, 34.65618255738836], [-77.40702079064738, 34.65747055132365], [-77.40715151222032, 34.65773711420701], [-77.40751533302362, 34.658806631894166], [-77.40789806075784, 34.65888458119216], [-77.40912859952869, 34.65897850675353], [-77.41011858923576, 34.659542402799424], [-77.41263536554862, 34.66162505163175], [-77.41278797064432, 34.661736211679646], [-77.41280774612346, 34.66179724777431], [-77.41291078216823, 34.66182670306392], [-77.41617253340507, 34.66372633505813], [-77.4169475463701, 34.66405363074214], [-77.41814314866257, 34.66557005576044], [-77.41849663524285, 34.666018392491516], [-77.42058416153674, 34.66692459455167], [-77.42140621354962, 34.66814368983503], [-77.42136403815161, 34.66963549910274], [-77.42116761610036, 34.67231200536429], [-77.4193860969164, 34.67341619639323], [-77.41960735682389, 34.67572150155804], [-77.42184185519235, 34.67682268012729], [-77.42322744128523, 34.67778171724281], [-77.4240001616661, 34.67822113031792], [-77.42485495388408, 34.67834229985617], [-77.42541303926195, 34.67776111195589], [-77.42684183096817, 34.67725813572085], [-77.42752574955854, 34.67777333125247], [-77.42799513755855, 34.67770115541321], [-77.42826603586292, 34.67793679562336], [-77.42915055402325, 34.6781369018094], [-77.42939048662886, 34.678780556835], [-77.42928739680272, 34.67911633388355], [-77.42940774420585, 34.67946260189367], [-77.42947012405354, 34.679640084226975], [-77.42963431162121, 34.67979674182365], [-77.42986749797748, 34.680088210778315], [-77.43028766128081, 34.68019162348887], [-77.43048235139885, 34.680177755395334], [-77.43052595589289, 34.68013614130224], [-77.43054179447859, 34.68011414060374], [-77.43061930023238, 34.68005320068809], [-77.43084906088865, 34.67966254130641], [-77.43108353679436, 34.679552087507666], [-77.43125333116183, 34.67952440245435], [-77.43128062049699, 34.67950039423839], [-77.4313150409724, 34.67951434063146], [-77.43143560325696, 34.679448385570666], [-77.43136437274865, 34.67934382142593], [-77.43129837926813, 34.67932336861995], [-77.43110358001009, 34.67921093969689], [-77.43108205910616, 34.67921225643374], [-77.4308589843273, 34.6791849507113], [-77.43076099010072, 34.67921465132767], [-77.43065628008331, 34.67914499420645], [-77.43018116485989, 34.679004060421036], [-77.43008407964021, 34.678937442972966], [-77.42996915784894, 34.678795721987434], [-77.42983259635801, 34.67859602539484], [-77.4293499759493, 34.678020082317566], [-77.42930174178302, 34.67792483232563], [-77.42923403996923, 34.67784834974538], [-77.4283167941087, 34.67744316925659], [-77.42798745452485, 34.67642534448271], [-77.42800710033444, 34.67578689993975], [-77.4294088893537, 34.673822503237815], [-77.43065382698853, 34.672940856818215], [-77.4306854522275, 34.67291846045363], [-77.4327529808445, 34.67380591289318], [-77.43292291023882, 34.67395627846766], [-77.43322838031261, 34.674904080367924], [-77.43303470866883, 34.675263959609886], [-77.43305203547483, 34.67546663611474], [-77.43306907442641, 34.67566593216954], [-77.4331009037769, 34.67597761785439], [-77.43310903195535, 34.67613328683422], [-77.4331257347815, 34.676328652070794], [-77.43317683758283, 34.67656323538341], [-77.43331498218288, 34.6770308039415], [-77.43337436263194, 34.67711764747672], [-77.43336934781914, 34.677189624200906], [-77.43342088314871, 34.67739095005224], [-77.43342201286505, 34.677544147703586], [-77.43352566879369, 34.677562265613], [-77.4337067150455, 34.677425303088924], [-77.43381699973311, 34.67734618424387], [-77.43383395324767, 34.677318482249326], [-77.43389498465093, 34.67724074321904], [-77.43406713120598, 34.676951909020964], [-77.4341460546415, 34.6769022075016], [-77.43428785791275, 34.676736317525766], [-77.43444931181108, 34.676449209060834], [-77.43448283391771, 34.676135958689606], [-77.43450697911325, 34.67591032053848], [-77.4345712746763, 34.67572521943148], [-77.43464165596542, 34.675398363816214], [-77.43521382443934, 34.67489636477275], [-77.43583305729541, 34.675815030481616], [-77.4359783664068, 34.676030605203266], [-77.43608422800317, 34.676317436664775], [-77.4362188185141, 34.6768230174145], [-77.43628603314676, 34.67709154959756], [-77.4364484772972, 34.67727332560291], [-77.43692580936938, 34.677420666979685], [-77.43686086304625, 34.67806281018116], [-77.43688629381299, 34.67832995974395], [-77.43679719628986, 34.67838840816346], [-77.43679841094024, 34.678425993901236], [-77.43674298155764, 34.678470381316565], [-77.43655994113558, 34.67878390634778], [-77.43647729533691, 34.678835588985386], [-77.43627870548168, 34.67903000174701], [-77.4362671798978, 34.67904163729782], [-77.43626267163629, 34.67904569836851], [-77.43625634063741, 34.67904524747711], [-77.43624424802393, 34.6790443862158], [-77.43594243645326, 34.67902289061249], [-77.43578570638269, 34.6790137293935], [-77.43562814184322, 34.6790018842299], [-77.43538282163546, 34.67901189820554], [-77.43532788891181, 34.6790130618099], [-77.43525363378457, 34.679234719986894], [-77.43526167795203, 34.6792490599974], [-77.4353735502379, 34.6793282660541], [-77.43547886092757, 34.67936389754891], [-77.43551921344714, 34.67937847491284], [-77.43555864095342, 34.67939029379106], [-77.43581402408167, 34.67946684811426], [-77.43609780773637, 34.67955191495953], [-77.43612127836971, 34.67956231339814], [-77.43639725236991, 34.679665701073084], [-77.43666303730416, 34.67976235478193], [-77.43671018892128, 34.679777276052654], [-77.4370247560126, 34.67971148093934], [-77.43727350519626, 34.6796730688643], [-77.4374746136318, 34.67953140212631], [-77.43771397905152, 34.67954386096792], [-77.4379387011928, 34.67967621038443], [-77.43823755021629, 34.67994899378783], [-77.43829688126254, 34.68003092617986], [-77.43850888083304, 34.68033097919023], [-77.43855917910471, 34.68040216793534], [-77.43870569595148, 34.68054578279857], [-77.43878952394076, 34.680660220002885], [-77.43887745423118, 34.68070298313203], [-77.4389808574992, 34.68070211325963], [-77.43910024647047, 34.680693305061546], [-77.43930538811232, 34.68068774052123], [-77.43981225398315, 34.68067965373895], [-77.43994945419657, 34.68067626466294], [-77.44002325874722, 34.68070664121144], [-77.44098423783308, 34.681083173035795], [-77.4410477564405, 34.68130973141683], [-77.44121301255431, 34.681155967139006], [-77.44130956665808, 34.681084340671674], [-77.44171679675199, 34.68077732741692], [-77.44208663309382, 34.6802379607826], [-77.4423576354674, 34.680036162085486], [-77.44403905953573, 34.67980774358556], [-77.44404524556315, 34.67980703594528], [-77.44404726158159, 34.67980719045069], [-77.44406052165559, 34.67981002838965], [-77.44657849967494, 34.6799096357546], [-77.44731692491548, 34.67917010988291], [-77.4480752842686, 34.67897749974355], [-77.44900746041915, 34.67837690535402], [-77.44927754839475, 34.67815902782106], [-77.449530023869, 34.67785561554971], [-77.45005165379894, 34.67719086850313], [-77.45034214570062, 34.67614712852661], [-77.45044216105957, 34.67593266764547], [-77.45076050624412, 34.674961147299165], [-77.45130080396652, 34.67439684517693], [-77.45364255239332, 34.67225258283571], [-77.45566674677748, 34.67315237933042], [-77.45622669356526, 34.67439440255919], [-77.45629441944651, 34.67445053543487], [-77.45631778857549, 34.67446990392613], [-77.456366053532, 34.67451067279105], [-77.45758766972503, 34.675558935827404], [-77.45749172168256, 34.676693279568454], [-77.45790110696078, 34.67745707439816], [-77.45836240482058, 34.678292225949505], [-77.45869055134543, 34.67888630268364], [-77.45959696964684, 34.6805271740471], [-77.4599325623361, 34.680798772526515], [-77.45999216918699, 34.68095379105866], [-77.46050962485391, 34.6819469342925], [-77.46129946309091, 34.683014383509544], [-77.46140141448346, 34.68333419375325], [-77.46142982042181, 34.68364506554827], [-77.461316285262, 34.684105136430134], [-77.46055313795031, 34.68719718435271], [-77.46087296635812, 34.68792234169738], [-77.46344111250488, 34.69250987235528], [-77.46383668976588, 34.69296893311102], [-77.46488366562268, 34.69379544763987], [-77.46657915751913, 34.69539508791308], [-77.46741139378975, 34.69651163433258], [-77.46908262411733, 34.69679021418101], [-77.47118055788523, 34.69704472357432], [-77.47236302651291, 34.69711707067085], [-77.47307392664291, 34.697330116063355], [-77.47704708003026, 34.698165713309976], [-77.47716374725428, 34.69824511094974], [-77.48126621616305, 34.69997478411085], [-77.48175361413192, 34.70010365907672], [-77.48216749888662, 34.70022292351422], [-77.48633530912446, 34.70199101783584], [-77.48973658436354, 34.7035792844577], [-77.49094859616135, 34.70376943066975], [-77.4917457865911, 34.70390512207085], [-77.49400444496209, 34.703964041832876], [-77.49549377026219, 34.70404648928667], [-77.49599524180067, 34.704046490434486], [-77.49716584439763, 34.704046473687946], [-77.49912714703586, 34.70400072267902], [-77.50128004715347, 34.70349782208295], [-77.5022306862156, 34.70309040739498], [-77.50281925525226, 34.702569202095255], [-77.50380767825945, 34.70127010378213], [-77.504181446187, 34.700809068612244], [-77.5042615351155, 34.700430051994914], [-77.50491580472891, 34.698829822874934], [-77.50683068777275, 34.69731854135069], [-77.50903940775763, 34.697838281552684], [-77.50907947062102, 34.69784039862675], [-77.51130565188798, 34.69858251038737], [-77.51139724501186, 34.69861304355641], [-77.51139998795522, 34.698613957856104], [-77.51340061770591, 34.69982554478818], [-77.5158549576605, 34.70029661232955], [-77.51615531212192, 34.70060324720765], [-77.51741693974058, 34.70223484825681], [-77.51854098149815, 34.703583144176406], [-77.51977791144141, 34.705309713740405], [-77.52070430918944, 34.70724803443764], [-77.52265753988331, 34.71125056828241], [-77.5224888699824, 34.71390109682452], [-77.52283002725552, 34.71475106403425], [-77.52339695123831, 34.7156925980422], [-77.52419267323305, 34.717753823120376], [-77.52552717846086, 34.7171957476144]], [[-77.32385800559298, 34.742233855300825], [-77.32376805411101, 34.74232369701137], [-77.32374837528417, 34.74237832176538], [-77.32350303718877, 34.7426113991655], [-77.32380985641504, 34.74239940828048], [-77.32559274940495, 34.74407509527602], [-77.32569973141432, 34.74407560197035], [-77.32571998959372, 34.74407002846706], [-77.32581070260191, 34.74413423152508], [-77.32711804009064, 34.744561732681476], [-77.32733348762217, 34.74481131436943], [-77.32756763048233, 34.74500434404703], [-77.32786047305859, 34.74494876929529], [-77.3287275035296, 34.74490090894311], [-77.32911078930184, 34.744768921009744], [-77.32942213050474, 34.7447813544174], [-77.33035974155536, 34.744593729831074], [-77.33068362785579, 34.74497356411242], [-77.33074761374189, 34.7453181808097], [-77.33074803850047, 34.74531839116183], [-77.33074932664135, 34.74531918096262], [-77.33107658855221, 34.7454597117987], [-77.33109516997867, 34.74551423087977], [-77.33127505120302, 34.7455659989631], [-77.3314349167478, 34.745578355997665], [-77.33155401025607, 34.745695027294985], [-77.33169876162631, 34.74576963931465], [-77.33174689373513, 34.74600336156976], [-77.3318793962819, 34.74613779914992], [-77.33197671591785, 34.74634420901896], [-77.33196862847575, 34.74636925393195], [-77.33204060349621, 34.746463532996856], [-77.33214878808853, 34.74658824547632], [-77.33216981976518, 34.74660898114079], [-77.33233536685341, 34.7467247508844], [-77.33242042688555, 34.74677716731326], [-77.332436658303, 34.74677886548236], [-77.33270648616916, 34.74682342115477], [-77.3332390980959, 34.74692616820255], [-77.33326690037642, 34.7469288291878], [-77.33327344959693, 34.74693366253013], [-77.33367131602311, 34.74740617790245], [-77.3338718726418, 34.74781417053352], [-77.33415304845265, 34.748028941538394], [-77.3346969022523, 34.74819423446908], [-77.3347187468223, 34.74819843114714], [-77.33540419376357, 34.747846274009284], [-77.3364028580311, 34.748441947675175], [-77.33641742452936, 34.74844799172345], [-77.33642427544366, 34.74845842224282], [-77.33652066201621, 34.74851840583357], [-77.33644309316472, 34.74843643161597], [-77.33644288462894, 34.74842841643055], [-77.33643718231689, 34.74841402342661], [-77.33580825867487, 34.74754871952016], [-77.33603506620837, 34.747165378901705], [-77.33587741569173, 34.74656448906628], [-77.33638934092802, 34.745848606064285], [-77.33655475481831, 34.74518921343319], [-77.33578919882981, 34.74462709649956], [-77.33524052685648, 34.74428829595023], [-77.33442024872639, 34.743677244771035], [-77.33326544963238, 34.74302359087328], [-77.33324807232059, 34.742900346255425], [-77.33242035912443, 34.74206177024135], [-77.33223361405732, 34.74121554227463], [-77.33191419844931, 34.73932919490227], [-77.33190511944746, 34.739304888535884], [-77.33186246680339, 34.73928334545595], [-77.32954263223216, 34.7391638352473], [-77.32404330376126, 34.74219607586297]], [[-77.48659235531288, 34.68500289007951], [-77.48660075012278, 34.68501027288301], [-77.48551046159358, 34.687102174658385], [-77.48649818277772, 34.68799391604205], [-77.48674887182246, 34.6884952817033], [-77.48766754114183, 34.69033246707575], [-77.48779104493269, 34.69057946437134], [-77.48782883616494, 34.69083446490167], [-77.48811801256727, 34.69296681091937], [-77.4879892243398, 34.69359344604499], [-77.48710891068015, 34.69633705600578], [-77.48621243971496, 34.69677280332274], [-77.48201321439936, 34.69920449784528], [-77.48090519530308, 34.694919712270135], [-77.48001125940483, 34.693355351291316], [-77.47976309826727, 34.69032098740627], [-77.47974252323102, 34.690042267420104], [-77.47981948219325, 34.68989914131712], [-77.48001276022649, 34.689411728126885], [-77.48124416550735, 34.68653840220621], [-77.48158941119124, 34.68573293525659], [-77.48196548064917, 34.68485547771662], [-77.48220351700151, 34.6843000934587], [-77.48251286618151, 34.68357829649559], [-77.48321376395552, 34.68302219061023], [-77.48376802273188, 34.68233165768989], [-77.48563401972997, 34.682331700262516], [-77.48567369211877, 34.68249083703693]], [[-77.39250803259593, 34.744526841360994], [-77.39501808707911, 34.74327041301739], [-77.3950812202994, 34.743081036566025], [-77.39484574652838, 34.74298863542408], [-77.39293675359124, 34.741197567242054], [-77.39252301764908, 34.74057661079841], [-77.39116001634547, 34.7395820450736], [-77.39091271345448, 34.73933147544443], [-77.39069065095693, 34.73941784001473], [-77.3897020150389, 34.74056478637221], [-77.38922217580631, 34.74195209511515], [-77.38992818605738, 34.7427264517093], [-77.39035194560657, 34.74326656685961], [-77.39156939986239, 34.744198502224855], [-77.39184720205989, 34.744428733559296], [-77.39196657086852, 34.74454332936759], [-77.39215828762609, 34.74458123769823]], [[-77.30440867613297, 34.65819027790771], [-77.30417135642057, 34.65747742072444], [-77.30575575109619, 34.65495523004722], [-77.30635703798094, 34.6546700959712], [-77.30812964785875, 34.65402050219184], [-77.3095737669091, 34.65512661216479], [-77.31099058402769, 34.65654344420108], [-77.31111488194757, 34.656667743947054], [-77.31132176661717, 34.65716440395401], [-77.31227780654196, 34.658956955373114], [-77.31278053037913, 34.65967408197064], [-77.31278050830178, 34.660669635289395], [-77.31091654172899, 34.66330528577258], [-77.31018589508554, 34.66427025239168], [-77.30958083462396, 34.66429109596419], [-77.3093089583757, 34.66352548943119], [-77.30623531498304, 34.66172915759438]], [[-77.44810162654109, 34.53000850743926], [-77.44785684374331, 34.530252901806094], [-77.44796470659982, 34.53038666642688], [-77.4479916896617, 34.53044539080728], [-77.44807627103107, 34.53116980180336], [-77.44934479757669, 34.53097554698383], [-77.44832725074167, 34.530334180471414], [-77.44832688105349, 34.530191216498565]], [[-77.44397060499172, 34.682672459593135], [-77.44415654869599, 34.682638751492895], [-77.44440278841239, 34.6826311699381], [-77.44451297515285, 34.68262140013482], [-77.44480340047141, 34.682538279248426], [-77.44518443149795, 34.68251520794907], [-77.44524008182216, 34.682504340737545], [-77.4453658985885, 34.6825025146976], [-77.44561618166145, 34.68237138941971], [-77.44592333252326, 34.68169947565752], [-77.44520273339671, 34.68169567921383], [-77.44477064937703, 34.68173023112066], [-77.44475864528454, 34.681731190987236], [-77.44431524724997, 34.681740462235794], [-77.44412579941027, 34.68174442305534], [-77.44386358259598, 34.68174990472429], [-77.44379792167479, 34.68177037584569], [-77.44359143769668, 34.681882151588354], [-77.44357296882868, 34.68202256857432], [-77.44354348587876, 34.682246718717636], [-77.44372738522254, 34.68248871170407], [-77.44379236289733, 34.682589220264454]], [[-77.45229580467978, 34.682296607096745], [-77.45249937435776, 34.682406288606174], [-77.45257742607066, 34.6824306594469], [-77.452727263421, 34.68228067997707], [-77.45273970436457, 34.682201289959366], [-77.45276194016643, 34.68215304870006], [-77.45270035541084, 34.68200535740992], [-77.45268501575808, 34.682000913421675], [-77.45266054663078, 34.68197785700255], [-77.45245132891085, 34.68175854118836], [-77.45222282560661, 34.68174749866638], [-77.45204794247688, 34.68166862564842], [-77.45177187445243, 34.681892504937686], [-77.45156960285522, 34.68131702867223], [-77.45145533858988, 34.68117514802103], [-77.45134141253783, 34.68116505847067], [-77.45129625275644, 34.681187821170724], [-77.45122708143734, 34.68119730218769], [-77.45045607244951, 34.681309931707354], [-77.45021134906148, 34.68169463164493], [-77.45009155893356, 34.68191840621205], [-77.45002087769711, 34.682093852054905], [-77.45003860610454, 34.68245891065575], [-77.44997570756206, 34.68268588260481], [-77.44996601364723, 34.682713043470336], [-77.45017459579805, 34.68298500326385], [-77.45021109179756, 34.68303401571315], [-77.45028690592326, 34.68310471777512], [-77.45042849493326, 34.68321495898764], [-77.45072804481097, 34.68326457044395], [-77.45073409417938, 34.68326606784215], [-77.45073809600166, 34.683265869774836], [-77.45074342387439, 34.683264290701906], [-77.451129233852, 34.68315748681824], [-77.45122949434129, 34.68305517050047], [-77.45129990373059, 34.682899790206044], [-77.45127996577861, 34.68265626330619], [-77.45169898447492, 34.68248027153878], [-77.45176720417054, 34.68195739925769]], [[-77.35630211372262, 34.770999962913976], [-77.3562730867388, 34.771060012328576], [-77.35624938834032, 34.7711001045973], [-77.35612240953196, 34.77271502578578], [-77.35798862193838, 34.77264011504807], [-77.35815285224076, 34.772641754209964], [-77.35834059059545, 34.772664144568594], [-77.35890418778804, 34.77254182204337], [-77.35916330246536, 34.77256216495217], [-77.35946673552331, 34.77253611566073], [-77.35961440347796, 34.77258017960875], [-77.35982614849016, 34.77255229304636], [-77.36015544277073, 34.77237392593827], [-77.36017253192745, 34.77235615404482], [-77.36017165228334, 34.77231812107459], [-77.36004096090463, 34.77195637603016], [-77.35986580291514, 34.771689570606156], [-77.35977733740879, 34.771466822385776], [-77.35962144297298, 34.771238504012615], [-77.35951326478971, 34.771006950182446], [-77.35959654303562, 34.77067905853559], [-77.35954727590348, 34.770376880440395], [-77.35950707302216, 34.7701884863327], [-77.3594654024485, 34.769964713110156], [-77.35931854262633, 34.76982033159035], [-77.35912498994244, 34.76966016420639], [-77.35903441965921, 34.769606939067835], [-77.3588393666102, 34.76956426322711], [-77.35845420367323, 34.76954181534829], [-77.35804269004362, 34.769661469612075], [-77.3578121394948, 34.769689599923595], [-77.3573193004247, 34.769494680621186]], [[-77.42550920938413, 34.73202491932775], [-77.42531133066592, 34.7321892895183], [-77.4251337245903, 34.732336818726054], [-77.42546450364867, 34.73243957557774], [-77.42558027070234, 34.732549860443555], [-77.42585259856564, 34.732483350717594], [-77.42593771780592, 34.73246494143152], [-77.4259629569764, 34.732463058468916], [-77.42615657105941, 34.7324486139988], [-77.42626295119138, 34.73231218767136], [-77.42627842408665, 34.73229379414562], [-77.42628224800559, 34.732280039031934], [-77.4263178162856, 34.732066112308615], [-77.4262649276368, 34.732009543695916], [-77.42618614603442, 34.731897843762354], [-77.42603610280953, 34.731877841339895], [-77.42593992340545, 34.731895940734574], [-77.42582561193501, 34.73190783037702], [-77.42575769645899, 34.73193703503681], [-77.4256416067798, 34.731981096776174]], [[-77.35250075128131, 34.55044263489886], [-77.3526445006019, 34.550445261679265], [-77.35294295620835, 34.55022383913919], [-77.35292106419247, 34.55015039964836], [-77.35280667141998, 34.54999863329289], [-77.35273197347016, 34.54996176468728], [-77.35265488493164, 34.54999313898052], [-77.35261053732007, 34.549999298330725], [-77.35245833428075, 34.55000366251497], [-77.35228064020565, 34.550061904219014], [-77.3522605320865, 34.550068662406304], [-77.35225248355812, 34.55007344846994], [-77.35224337107451, 34.55007971021431], [-77.35214667881925, 34.55014615345783], [-77.35206076805724, 34.550219037838346], [-77.3520531648066, 34.55022483916564], [-77.35204320991735, 34.55023092991707], [-77.35203934037987, 34.550244483721805], [-77.35216366689085, 34.550336003535406], [-77.35219896749396, 34.55036506594292]], [[-77.46058425004009, 34.503605213166665], [-77.46148458304602, 34.50375815412702], [-77.4616341629226, 34.50380322416706], [-77.46199938729106, 34.503515371970174], [-77.46206610599764, 34.50344657695695], [-77.4621763749825, 34.50332357276125], [-77.46229382187538, 34.503192560740615], [-77.46240912020673, 34.50301915549072], [-77.4626923466996, 34.5027480045405], [-77.46280807599823, 34.502618906565694], [-77.46285074541406, 34.50254531508031], [-77.4629859951669, 34.502408311845926], [-77.4630042244157, 34.50234081315316], [-77.46305824251506, 34.50221809023151], [-77.46298807658174, 34.50211231299317], [-77.46298512548871, 34.50195933128883], [-77.46264789566567, 34.501947087403124], [-77.46248989222335, 34.50200780907908], [-77.46217144401886, 34.502173078554804], [-77.46219012732826, 34.5023187687357], [-77.4619611739414, 34.50250016030206], [-77.46153656767656, 34.502595353907395], [-77.46133963115345, 34.5027263409945], [-77.46104201581616, 34.502949170030305], [-77.46082542192677, 34.503118018067305], [-77.46080677481457, 34.503131924732415], [-77.46078756863457, 34.50316997790738], [-77.46066887934477, 34.50336195997567]], [[-77.35191050081322, 34.78628005929826], [-77.35187028444095, 34.786369227893346], [-77.35214586468419, 34.78681046398614], [-77.35244077936072, 34.78718207235291], [-77.35249585139955, 34.78732981960744], [-77.35247134520148, 34.78766526050658], [-77.352498442592, 34.78772203840353], [-77.35254467508214, 34.78781890928396], [-77.35256726243702, 34.78786623663264], [-77.35271188862441, 34.7878759511304], [-77.35278054786981, 34.787899372992094], [-77.35285421140357, 34.787878579573416], [-77.35291384851807, 34.787796894175], [-77.3530795591823, 34.787581819627], [-77.35313450135209, 34.78748851139772], [-77.35334272782387, 34.7871348768691], [-77.35339175864007, 34.787051606708374], [-77.35364168294507, 34.78666110436123], [-77.35423100585714, 34.78614029623767], [-77.35436170055605, 34.78607964424364], [-77.35478969267321, 34.78613089182245], [-77.3547870678496, 34.78602651952602], [-77.3547389750086, 34.785833521160086], [-77.3546955580169, 34.78578345972855], [-77.3545020766133, 34.7855603662167], [-77.3544163601324, 34.785502421574996], [-77.35439676130652, 34.78545157505573], [-77.3541397693988, 34.78527755158585], [-77.35401066815173, 34.78501716747933], [-77.35396916528236, 34.78497913041509], [-77.35366470957463, 34.78485435807797], [-77.35342458513179, 34.784790986849565], [-77.35222280055086, 34.785174481966294], [-77.35228644135141, 34.784583271416274], [-77.35177779933566, 34.78532350131018], [-77.35194098875377, 34.785391135736184], [-77.35188321840644, 34.785970796892755], [-77.35190412693156, 34.78620789073807]], [[-77.35437861687636, 34.775632740942505], [-77.35491745278624, 34.77552872592273], [-77.3554223022562, 34.77640711619583], [-77.35587335723676, 34.77636326365271], [-77.3561761409862, 34.77661591747042], [-77.35680656238686, 34.77683539630679], [-77.35688068818027, 34.776862615162685], [-77.3569219203908, 34.7768789199817], [-77.35696701997631, 34.776861494842166], [-77.35701149410072, 34.77684216475067], [-77.35768085119521, 34.77653145018828], [-77.35769754414424, 34.7765230402048], [-77.35794052629434, 34.77640062433569], [-77.358324847954, 34.77618335309603], [-77.35835879942766, 34.776142715555636], [-77.35843912875838, 34.77607362250488], [-77.358515027446, 34.77602384488664], [-77.35850172154939, 34.7759656391029], [-77.3584832256673, 34.77592182602546], [-77.35834072193967, 34.775787811372794], [-77.3583195096779, 34.7756222496508], [-77.35819160825044, 34.77540362915573], [-77.35808077207432, 34.77509853041615], [-77.35805046248015, 34.77501613196169], [-77.35787065938382, 34.77490591993816], [-77.35769486305804, 34.77471789380355], [-77.35759243564829, 34.774570892652704], [-77.35732997154896, 34.77460970376245], [-77.35634432880092, 34.77474218068225], [-77.355351199984, 34.77488491848146], [-77.35536016808449, 34.77400494953683], [-77.35441834041444, 34.77458443212502]], [[-77.32357736502632, 34.756047968304905], [-77.32345363248771, 34.7559811350808], [-77.32308690090139, 34.75554254671223], [-77.32300146715022, 34.75547603587842], [-77.32279279944521, 34.75537449003045], [-77.32265435659193, 34.75538253296011], [-77.32237758985727, 34.755561228847995], [-77.32223092491768, 34.75574503345244], [-77.32229787505183, 34.755835253112885], [-77.32245880779095, 34.75602529311976], [-77.32270667017391, 34.75606734808385], [-77.32287041556359, 34.75592654475815], [-77.32320763340331, 34.75609861417778], [-77.32337531556483, 34.756109079401696], [-77.32341568186683, 34.756111598734506]], [[-77.48879675726451, 34.68233170823625], [-77.49008262069701, 34.68233169069906], [-77.49060045185271, 34.682391818030844], [-77.4916879065429, 34.6824560955698], [-77.49229123918093, 34.68270943072799], [-77.49305502565088, 34.683168586415874], [-77.49270494386147, 34.684215796723294], [-77.49212970521376, 34.68445924517277], [-77.49081615893127, 34.68500284386732], [-77.48937677758339, 34.68528210770529], [-77.48662662537555, 34.68500289016323], [-77.48661452282445, 34.68500000939435], [-77.48603654003432, 34.68233170582542]], [[-77.32081204185016, 34.74446829328414], [-77.3204835069477, 34.74451993375727], [-77.3206624706297, 34.74475049884318], [-77.32068573798823, 34.74477700972386], [-77.3207131531644, 34.744808246130965], [-77.32161052116597, 34.7455953687798], [-77.3216592272154, 34.74560511064455], [-77.32167817118386, 34.745609338507464], [-77.32175915367839, 34.745650680473986], [-77.32222278486591, 34.7457963978061], [-77.32234200437182, 34.74586847983876], [-77.32265514067556, 34.74580640721253], [-77.32272386205341, 34.74557495678581], [-77.32262802899925, 34.74545598957866], [-77.32266839687469, 34.74517969942414], [-77.3226889119847, 34.74481362151023], [-77.32237716059356, 34.744515624811974], [-77.3222422473554, 34.7436701193432], [-77.32162580847582, 34.744054407951644]], [[-77.31268135693364, 34.69418328761558], [-77.31268207805329, 34.69418345494298], [-77.3126823833938, 34.694183528950624], [-77.3126831151021, 34.69418367768852], [-77.31390970154456, 34.6940804754682], [-77.31401609332474, 34.694089131426416], [-77.3141214498137, 34.69398604014555], [-77.31424917542954, 34.69301882148273], [-77.31443833162206, 34.69296791144374], [-77.31442742725308, 34.6928413156279], [-77.31426586891527, 34.692855832299244], [-77.31409345018088, 34.69288066688003], [-77.31364835643771, 34.69307611535484], [-77.31266503049375, 34.69416763349158]], [[-77.3541003255097, 34.78323787707994], [-77.35446735987622, 34.78326462855789], [-77.35471112925875, 34.78326140859857], [-77.35481672177616, 34.78323393924083], [-77.35512762836208, 34.78305458617497], [-77.35522563442714, 34.78299946737939], [-77.35528905764687, 34.78295020831412], [-77.35540257606212, 34.782811796663054], [-77.35545185340654, 34.78272756353692], [-77.35540706159861, 34.78254735199606], [-77.35540900195019, 34.78243294561833], [-77.35534618068317, 34.78230240984877], [-77.35505592906958, 34.78220787208374], [-77.35448260103028, 34.7822999081977], [-77.35411213950971, 34.78242485418868], [-77.35346386924165, 34.782643493499386], [-77.3534365163666, 34.78265015319054], [-77.35340382388672, 34.78268965811411], [-77.35323148565274, 34.783174546212955], [-77.35386584233265, 34.78327246913417]], [[-77.43079568212768, 34.57914256397934], [-77.43051990328611, 34.57939717317086], [-77.4304189971466, 34.5793855599145], [-77.43014692673506, 34.57953362191189], [-77.43032950402265, 34.57971252157958], [-77.43052000456007, 34.57969572767916], [-77.4308622330347, 34.57991069207691], [-77.43105714201732, 34.5799807660809], [-77.43130816544354, 34.58009938222123], [-77.43138649834923, 34.58011921047271], [-77.43193015501262, 34.57994616143404], [-77.43209609843862, 34.57984648372749], [-77.432386466237, 34.57963446404931], [-77.43229310734043, 34.57943582834649], [-77.4321699048711, 34.579241180967834], [-77.43209585094971, 34.57915511802215], [-77.43173024417264, 34.578849429027954], [-77.43170172746879, 34.57882595927664], [-77.43151514863975, 34.57868766492788], [-77.43149358288258, 34.578690112769216], [-77.43130771334589, 34.57880211228086], [-77.4310359539422, 34.57898051871098], [-77.43096925434253, 34.57904992733132]], [[-77.42467191945084, 34.73285038186596], [-77.42478661055625, 34.73282763414097], [-77.42486515749061, 34.73280525140838], [-77.42504963249065, 34.732702877257886], [-77.42495865460636, 34.73248232607178], [-77.424708355288, 34.732583583318615], [-77.42465629937071, 34.732614701982115], [-77.4245839997659, 34.732669073521805], [-77.42446005733473, 34.73261780465968], [-77.42427328086353, 34.73263499512492], [-77.4242134541122, 34.73263895699422], [-77.42410108450795, 34.732650843229436], [-77.42393480234992, 34.73269679053311], [-77.42378200604921, 34.732681835209], [-77.42377923638796, 34.73268046408523], [-77.42377453140038, 34.73268054361995], [-77.42362445476324, 34.732661428446036], [-77.42352156603263, 34.7326302044911], [-77.42348682758367, 34.73271565856394], [-77.42346274221475, 34.73272105608652], [-77.42344579772003, 34.73281765367859], [-77.42344192516862, 34.732839730499734], [-77.42343725117756, 34.732866376146], [-77.42342467749148, 34.73293805626767], [-77.42346206041319, 34.73298653724815], [-77.42345903988574, 34.73303531797634], [-77.4234997368747, 34.73309215922761], [-77.42356322853104, 34.73307223198527], [-77.42363909326721, 34.73304842121872], [-77.42375802811871, 34.73301660001529], [-77.423846430265, 34.73300200044778], [-77.4239656871835, 34.73298198081303], [-77.42421469745173, 34.73283732730677], [-77.42433124815992, 34.73283143775874], [-77.42451999009425, 34.732890149787586]], [[-77.33241291931303, 34.57512434337167], [-77.3321539748892, 34.575123000400076], [-77.33201890344037, 34.575133948782664], [-77.33189868202288, 34.57514369308052], [-77.33151318457442, 34.57506957047828], [-77.33123103770957, 34.574958329451725], [-77.3309187785704, 34.574642670175336], [-77.33083741448374, 34.57451155361363], [-77.33057217304955, 34.57449446217135], [-77.33049532168579, 34.57515931867049], [-77.33056526728424, 34.575205804418275], [-77.33047475053763, 34.575253273399866], [-77.3306627648448, 34.57580331503965], [-77.3310353876106, 34.57577726145366], [-77.33123031336291, 34.575806177313986], [-77.33136161515405, 34.575798962710564], [-77.33188995387991, 34.575726095158366], [-77.33201842535755, 34.575699835632705], [-77.33212269728205, 34.575718677544344], [-77.33232000304642, 34.57570309573559], [-77.3324124370383, 34.57569838478157], [-77.33249857475948, 34.57568422223072], [-77.33270205954463, 34.57563524118397], [-77.33273464512897, 34.57553082113169], [-77.33276119128969, 34.57547804447751], [-77.33274667646049, 34.57538150988497], [-77.33271439174872, 34.57532146269796], [-77.33260984969895, 34.5752120017038], [-77.33254535587386, 34.57520298843744]], [[-77.33540131624764, 34.68183141839691], [-77.33542607937511, 34.68184007131317], [-77.33553964215132, 34.68189591416329], [-77.33555778876976, 34.681787744657655], [-77.3355085923207, 34.68174887878737], [-77.33547527201938, 34.68167075055235], [-77.33533925677851, 34.68181772024337]], [[-77.36183198097415, 34.78013589673992], [-77.36176137389991, 34.780098688021525], [-77.36172071023131, 34.78014392907312], [-77.36169188813363, 34.78015783044065], [-77.36130811896129, 34.78021791412364], [-77.36122203221134, 34.78027302401536], [-77.36114320358155, 34.78032258588077], [-77.36102188933232, 34.780435489711415], [-77.36099620956854, 34.78045656894513], [-77.36098521766212, 34.78046976687631], [-77.36097061260261, 34.78049442526181], [-77.36097513869342, 34.78059643220774], [-77.36097204018485, 34.78071695691332], [-77.36106356480455, 34.78077679680109], [-77.3611496070404, 34.78086617487788], [-77.3612775437925, 34.78091669850986], [-77.36150829370783, 34.78096995941682], [-77.3618980724228, 34.781000893610354], [-77.36213175536871, 34.781032600057685], [-77.36268047000246, 34.781062983323444], [-77.36225724735849, 34.78060056210799]], [[-77.4382167029723, 34.67832575098026], [-77.43807305702259, 34.67830231773926], [-77.43796634093655, 34.67823820254143], [-77.43759870244857, 34.678032551177076], [-77.43753572431855, 34.67794480683386], [-77.43713686663602, 34.67738909135194], [-77.43752664338567, 34.677169834610275], [-77.43774922310529, 34.67704418321123], [-77.43776082884753, 34.677008331526295], [-77.43779882771564, 34.67703509963354], [-77.43789071229553, 34.677017844038346], [-77.43813839636766, 34.676968686243384], [-77.43818796173281, 34.67695884893158], [-77.43847826520101, 34.676901231457336], [-77.43876800738173, 34.67715933231281], [-77.43911694171523, 34.67739871166286], [-77.43907586470243, 34.67750809540465], [-77.43903808277827, 34.67760082400575], [-77.43886885647076, 34.67799475308424], [-77.43874702941469, 34.678187377987726], [-77.43861197828056, 34.67839972025325]], [[-77.32427966781951, 34.695031017537744], [-77.32429263707934, 34.69490427581836], [-77.3242461376864, 34.694748041065694], [-77.32413519318985, 34.69476463105517], [-77.32389660246987, 34.6947352966567], [-77.32373983346722, 34.69474335629913], [-77.32343524204569, 34.694782277823165], [-77.32326674608635, 34.69510721609707], [-77.3233468662034, 34.695158862293674], [-77.32361966719085, 34.695229873285264], [-77.32426145219267, 34.69551508728814]], [[-77.44630422763875, 34.681712497189984], [-77.44629613740184, 34.68198742489761], [-77.44629538107446, 34.68243696302901], [-77.44649133391835, 34.68242734410484], [-77.44655127399213, 34.68240439180377], [-77.44666673074184, 34.68239824844413], [-77.44715672185454, 34.682342114185985], [-77.44739050856329, 34.68228073093476], [-77.44749326335346, 34.68228618810736], [-77.44773600821102, 34.68221302468835], [-77.44779701653258, 34.68219747673411], [-77.44784288127823, 34.6821850275649], [-77.44799704397006, 34.68217284780142], [-77.44822542005417, 34.68215000419704], [-77.44851580891546, 34.68195622946118], [-77.44851872419342, 34.68192762082248], [-77.44863036827589, 34.68146197069547], [-77.44803442835752, 34.681522460876025], [-77.4478527065651, 34.681540905687896], [-77.44770437436544, 34.68155596126781], [-77.4475115367911, 34.68157553371718], [-77.44742200746144, 34.681584620671124], [-77.44737140756763, 34.681599534192614], [-77.44701141365239, 34.68166119076757]], [[-77.35329632822213, 34.55098293395839], [-77.35341356002807, 34.55115002439708], [-77.35351137062277, 34.5513029537787], [-77.3535692829598, 34.551357797612326], [-77.35379933353757, 34.55144842931385], [-77.35387920231895, 34.55150736407552], [-77.35399508832282, 34.55147271448529], [-77.35407352132765, 34.551456300552026], [-77.35409367770575, 34.551453835121876], [-77.35416806836558, 34.55140947268419], [-77.35419321302244, 34.551393734488414], [-77.35419971403, 34.551389463657046], [-77.35431418790252, 34.551325025825676], [-77.35439260908673, 34.5512593318774], [-77.35446345510447, 34.55122908814798], [-77.35447676602632, 34.55115575542641], [-77.35457512542393, 34.55098077857248], [-77.35457888115775, 34.550967650504546], [-77.35458153890127, 34.55095835887715], [-77.3546865169266, 34.550707333456266], [-77.3545977347677, 34.550480932331034], [-77.35459805539438, 34.55047524558501], [-77.35458755334186, 34.55046453331842], [-77.3545051193515, 34.550243800566975], [-77.35446416656504, 34.55009926310586], [-77.35422254678045, 34.55011552206906], [-77.35397118791956, 34.549989554602185], [-77.35351362375212, 34.5499419782252], [-77.35343825930858, 34.550074200322605], [-77.35317984653985, 34.550276321347056], [-77.35327685837485, 34.55042060044207], [-77.35324426932027, 34.55053959267345], [-77.35320534130737, 34.550785483234414], [-77.35322501928528, 34.55091770569497]], [[-77.43130613570759, 34.5742466778727], [-77.4311350920159, 34.57363061322142], [-77.43062966797658, 34.573639958816784], [-77.43051798047144, 34.57368949112515], [-77.43001340231812, 34.5741526036914], [-77.42973026267086, 34.574444732069956], [-77.42970962349206, 34.574479502014114], [-77.42959452245283, 34.57451839467914], [-77.42915153447635, 34.57480780033641], [-77.42916293893312, 34.57519242960262], [-77.42948456513214, 34.57511845093229], [-77.42973050156954, 34.575177219755574], [-77.42990038392168, 34.575140270487026], [-77.43046062596504, 34.57518002660197], [-77.43051845112895, 34.57509326852616], [-77.4312591909388, 34.574328372090015], [-77.43130617179669, 34.57435134220291], [-77.43131209191209, 34.57427651091385], [-77.43131408870278, 34.57426981445197], [-77.43131476397062, 34.574260423268534]], [[-77.46081099458793, 34.59362168115614], [-77.4607084790645, 34.593429832516435], [-77.46040516956978, 34.59328900300562], [-77.45994428258824, 34.593219828836496], [-77.45965398477136, 34.593216860649434], [-77.45933615734329, 34.59322411800411], [-77.45919182527965, 34.59322576050889], [-77.45887876850837, 34.59325530427993], [-77.45882635933552, 34.5932818984911], [-77.45877772380955, 34.59352963705105], [-77.45879531206133, 34.59360644750703], [-77.4588327393313, 34.59366498589336], [-77.45890185702322, 34.59376068175162], [-77.45897150330245, 34.59381192652893], [-77.45905852445341, 34.59384604319154], [-77.45918029445234, 34.59386587090056], [-77.45937499611576, 34.59391617496516], [-77.4595613409117, 34.594046406621786], [-77.46002208829685, 34.594039132281196], [-77.46009507700732, 34.59407602014841], [-77.46016746851609, 34.594015895928976], [-77.4605488643562, 34.59381370050782]], [[-77.34287278247012, 34.74894241048856], [-77.34283771607018, 34.749008875592025], [-77.34282239625193, 34.749023791560155], [-77.34279368942796, 34.74906345817992], [-77.34283428295167, 34.749074882760674], [-77.3428648150464, 34.74903288471738], [-77.34287643966616, 34.74901637940697], [-77.34290186958548, 34.748980272284435]], [[-77.32651889929966, 34.74638503293865], [-77.32654125027334, 34.7463953923049], [-77.32664894193141, 34.74636721474534], [-77.32673870522328, 34.74623359960929], [-77.32677607172164, 34.746006966977916], [-77.3265574644187, 34.746072966210235], [-77.32655819082589, 34.746174459096416]], [[-77.31742370741124, 34.69368968268063], [-77.31680258958245, 34.69400693665872], [-77.31686182252707, 34.69412178924103], [-77.31717558963604, 34.694337819367014]], [[-77.33710230745018, 34.7688156944965], [-77.33709740705753, 34.76881036182823], [-77.33708109312143, 34.76881860253477], [-77.33709234324806, 34.768827778003285]], [[-77.32721413765502, 34.562526739794265], [-77.32710536200318, 34.56240591036544], [-77.32695310021653, 34.56256425120469], [-77.32710509027166, 34.562703640013446]], [[-77.42664165715277, 34.57586213208385], [-77.42685360814929, 34.575763745073495], [-77.42676180140492, 34.57557969668872], [-77.4266571537786, 34.57536755031889], [-77.42657861043787, 34.57525659432563], [-77.42654489727123, 34.57538377438707], [-77.42634277318481, 34.57558332082135], [-77.42618701917212, 34.5758576835634], [-77.42618577634842, 34.57586026409809], [-77.42618523754051, 34.575860821934356], [-77.42618479243048, 34.57586177369841], [-77.4261818894404, 34.57586395491833], [-77.42592913438469, 34.57604637520522], [-77.42593176718611, 34.57616974057739], [-77.42606929153042, 34.57617712024987], [-77.42618488984404, 34.5762041115211], [-77.42630421169152, 34.576139128159035], [-77.4264061772887, 34.57606692386779], [-77.42657879410959, 34.575892308844274]], [[-77.44600462729161, 34.59828720307177], [-77.44595449963727, 34.5983771244364], [-77.44605552098652, 34.5984731500074], [-77.44652350403152, 34.598660660958345], [-77.44668371814919, 34.59858831153399], [-77.44672997648793, 34.59840818938291], [-77.44628241076268, 34.59828360683222]], [[-77.425568444822, 34.57340195429412], [-77.42539611468271, 34.57333707022925], [-77.42502454452287, 34.573480557604306], [-77.42505834680685, 34.57353619483651], [-77.42533339209729, 34.5739282800117], [-77.42539628395, 34.57395635653118], [-77.4254554311823, 34.57390663081041], [-77.4254827740374, 34.57374565190496]], [[-77.34336547339053, 34.748199837446826], [-77.34326742076578, 34.748305006364646], [-77.34341826761631, 34.748246611905806], [-77.34346193529193, 34.74815543063944]], [[-77.33758042405344, 34.76920984190834], [-77.33750299045722, 34.769248140412884], [-77.33755737112942, 34.769289130149964], [-77.33779090778613, 34.769464586709205], [-77.33780486407561, 34.769468293253276], [-77.3379226800508, 34.76956037090295], [-77.33793382548843, 34.76955915308248], [-77.33808319233911, 34.769541402174625], [-77.33809285675953, 34.769532808035585], [-77.33808963152491, 34.7695192547542], [-77.33794354573857, 34.76954433132345], [-77.33785650167657, 34.7694433659386], [-77.33782421561314, 34.76943898286165], [-77.33761738056968, 34.769232459481955]], [[-77.4209610466292, 34.574177060241134], [-77.4210625628161, 34.57444305832938], [-77.4210712211206, 34.574467066146596], [-77.4211886274932, 34.574459428021264], [-77.4210850915064, 34.57449865213341], [-77.42122360018034, 34.574705479863056], [-77.42125964871396, 34.57485432542887], [-77.42127254145433, 34.574871889536325], [-77.42138728119828, 34.57493007867512], [-77.42138587753041, 34.574961660850065], [-77.42145667478331, 34.574993219988556], [-77.42153904813169, 34.57493953025047], [-77.42153808116994, 34.57492126935935], [-77.42152121154997, 34.574835960928155], [-77.42151363526861, 34.57477561821611], [-77.42147073983489, 34.574433961864116], [-77.42146885381612, 34.57441894024711], [-77.42172480899468, 34.57409277799751], [-77.42182107541333, 34.573943463544346], [-77.42151103423367, 34.57362259089454], [-77.42145944068413, 34.573567800423], [-77.4214550080408, 34.5735703208726], [-77.42145115204112, 34.573572326796274], [-77.4211493571147, 34.573709642142], [-77.42106243071592, 34.57384725531854], [-77.42095232754707, 34.5739503038227], [-77.42094937644985, 34.57406940969996]], [[-77.42486951026808, 34.57364597646853], [-77.42459501173619, 34.57395288161986], [-77.42460378794006, 34.573970833381594], [-77.4246083226883, 34.57398274494295], [-77.42463138151003, 34.57398681088382]], [[-77.42190514018989, 34.573872330366626], [-77.42224432177329, 34.57358532420829], [-77.42232786143016, 34.57378025894956], [-77.42252087437447, 34.573715763627945], [-77.42263827660835, 34.57346864413216], [-77.42273774976961, 34.573386425509845], [-77.4226381963975, 34.57313441316525], [-77.42250210826425, 34.57314254968975], [-77.42224425017524, 34.573281134929054], [-77.42215242818588, 34.573372022769654]], [[-77.32234624851559, 34.69509333217857], [-77.32236608108688, 34.69501173773915], [-77.32226759814918, 34.695023570800245], [-77.32211004687937, 34.695084680087014], [-77.32226545123514, 34.69508913202187]], [[-77.4569207323892, 34.74496586646562], [-77.45693057721937, 34.744972608351986], [-77.45694974610076, 34.74498573543456], [-77.4570043299849, 34.74498477518824], [-77.45697329880443, 34.74494392650316], [-77.45694172682816, 34.744683424119515], [-77.45678493445368, 34.744367542707096], [-77.45669332799831, 34.74416789310615], [-77.45635598935577, 34.74401644250801], [-77.45625917411427, 34.743968318315574], [-77.45615880755794, 34.74394454563971], [-77.45580242236603, 34.74386013223784], [-77.45578556206205, 34.74410032681165], [-77.45586995043858, 34.744205633203585], [-77.45590831324006, 34.74427231519951], [-77.45602693033746, 34.74436398905363], [-77.45609656964365, 34.74441696368191], [-77.45612509251556, 34.74443200435956], [-77.45617049069865, 34.74446100721212], [-77.45639535783826, 34.744606079719475], [-77.45660683585335, 34.744650435515645], [-77.45669184081052, 34.74468948973371]], [[-77.3610482247831, 34.61212025874087], [-77.36107408146738, 34.612121423710015], [-77.36107537769189, 34.61208712212671], [-77.36098858471983, 34.61201122252406], [-77.36096040282429, 34.611988653243685], [-77.36093429900707, 34.612019035646014], [-77.3609603810815, 34.61203472794451]], [[-77.40089392011686, 34.58099874838161], [-77.40087050162296, 34.58098263802038], [-77.40082951864288, 34.5809460594038], [-77.40080911511336, 34.58094483879433], [-77.40077199556217, 34.58101558471786], [-77.40077165609867, 34.58101602549024], [-77.40077161508468, 34.58101639718631], [-77.40077175796289, 34.58101663257266], [-77.40077199554239, 34.581016781691176], [-77.40077275007849, 34.581017046452736], [-77.40082124791736, 34.58104216031667], [-77.40084878369103, 34.581028662817204], [-77.40087050103645, 34.581020863181706]], [[-77.28647298520747, 34.627403104086184], [-77.28485313614411, 34.62732331975122], [-77.28316302266435, 34.62765474757916], [-77.28242911942314, 34.62800488154739], [-77.2792030725275, 34.62713636789894], [-77.27798080458702, 34.625847433823886], [-77.27788453101044, 34.62271961434584], [-77.27931606992931, 34.62036944106166], [-77.2802447053205, 34.6195844923122], [-77.28060064151242, 34.61886977601462], [-77.28136925392826, 34.61529416790117], [-77.28291788096882, 34.61312526737585], [-77.2831463821612, 34.6116141298496], [-77.28319019451396, 34.60971227510019], [-77.28324606092798, 34.60903650510076], [-77.28364508511577, 34.608498726481514], [-77.28553150449248, 34.60850273729147], [-77.28674314659733, 34.60852275344654], [-77.28923641485483, 34.61085393940115], [-77.2906881047043, 34.60798284203742], [-77.29180120788403, 34.60769271817657], [-77.29321162611706, 34.6103421634293], [-77.29246502375612, 34.61181876538461], [-77.29376549409477, 34.61298180173679], [-77.29491161539167, 34.61823544295065], [-77.2960661685705, 34.61939000082726], [-77.29854827785289, 34.62187206685023], [-77.29926793482639, 34.62259170595362], [-77.30011331580033, 34.62427486037645], [-77.29972799267803, 34.624887623084085], [-77.29830977506576, 34.6257894906641], [-77.29740872391673, 34.62609120707164], [-77.29655415822486, 34.62581612937484], [-77.29249706650707, 34.627135939487175], [-77.29130125530997, 34.62702969725956], [-77.28817863863267, 34.62700199071026], [-77.28738321530216, 34.6271714736344]], [[-77.29987846953154, 34.651191790853346], [-77.29993206050294, 34.65125131141285], [-77.29995123021965, 34.65130359543938], [-77.29991247086825, 34.651361395696874], [-77.299879051806, 34.65131347726197], [-77.2998740445137, 34.65128397317938]], [[-77.27310855923051, 34.641472531563416], [-77.27100282833352, 34.63963872830763], [-77.26940744089524, 34.639708630486325], [-77.26693574491492, 34.63919358721559], [-77.26404705719547, 34.63851467855319], [-77.26222652849255, 34.63864128419589], [-77.2589380830924, 34.6385773244041], [-77.25674161766759, 34.640346877465845], [-77.25769713676405, 34.643578097140846], [-77.25617292847494, 34.65036499858814], [-77.2561454744669, 34.65047588304554], [-77.25611430931359, 34.65054554154065], [-77.2561143109592, 34.65071502647189], [-77.25611426787813, 34.657296808527505], [-77.25538973519149, 34.660455719291086], [-77.25351966873846, 34.662715529661234], [-77.25290778204052, 34.663478426421776], [-77.25122295996611, 34.6640400284187], [-77.24995504555369, 34.66488879635213], [-77.2491743346638, 34.66533112764556], [-77.24904255296039, 34.66594659114182], [-77.24856631502155, 34.665619786894354], [-77.24822815450341, 34.66512444212047], [-77.24453931137474, 34.6644048494764], [-77.24357374010013, 34.664216461963385], [-77.24140333022268, 34.66340812888606], [-77.240812660177, 34.66321751123708], [-77.24055127293578, 34.66311311911666], [-77.23981745764829, 34.66270124381518], [-77.2371683975209, 34.66116321877846], [-77.23532937648598, 34.66009542663711], [-77.23454152927542, 34.65920655375129], [-77.23346531584949, 34.658430128374775], [-77.23339320043695, 34.6572550722086], [-77.23350189964957, 34.65665634796211], [-77.23348293122173, 34.6563361611393], [-77.23416407274397, 34.65471434990956], [-77.23432463813364, 34.65182510322305], [-77.23553707221748, 34.65105173692285], [-77.23763824687143, 34.64951185622636], [-77.23821761036358, 34.6490146417138], [-77.23984252394891, 34.647620118670474], [-77.24068399730376, 34.646960478373245], [-77.24341019558891, 34.64413032990466], [-77.24341050652689, 34.64412548712464], [-77.2425734549836, 34.64150709634065], [-77.24202589372481, 34.640250514490404], [-77.24021860187011, 34.637119408396856], [-77.23985656198693, 34.63664532658304], [-77.23973063584964, 34.636298973983834], [-77.23892530672119, 34.63487884905306], [-77.23859235019003, 34.634323917666876], [-77.23852145630207, 34.6342057618213], [-77.23885481477724, 34.6331497821102], [-77.23903044309776, 34.632473039474014], [-77.23927530194366, 34.63231955046212], [-77.24101075379475, 34.63147412214106], [-77.24325767762602, 34.63111848342265], [-77.24616238264919, 34.63079576076116], [-77.25005841294251, 34.629889059496755], [-77.2507043126285, 34.62973874218652], [-77.25095040358156, 34.62979401817374], [-77.25234015068449, 34.62975019142394], [-77.25674292222244, 34.629685100208064], [-77.2582046928003, 34.626440798032334], [-77.25830418575786, 34.625814922372825], [-77.25969808950494, 34.623341795817055], [-77.26022551064155, 34.62282901156904], [-77.26022802807603, 34.62226715014342], [-77.2612989344303, 34.62213829494115], [-77.2631470934212, 34.62120895411238], [-77.26561178513006, 34.6219275413224], [-77.2658734155677, 34.62203966174622], [-77.2659702636142, 34.622075794942354], [-77.26622601208592, 34.6221590163279], [-77.26795069468493, 34.622746491838], [-77.26862204539641, 34.622981532232664], [-77.26994868825034, 34.623382479661515], [-77.27165607044165, 34.6253496473836], [-77.27401586037047, 34.62451392260356], [-77.27622640284464, 34.62754342333546], [-77.27669097697137, 34.628397033031476], [-77.27783241656101, 34.63335485889114], [-77.2778428495029, 34.63407386434148], [-77.27656499006768, 34.63708614389077], [-77.27636000803301, 34.63732032936752], [-77.27610086770069, 34.6387344521346], [-77.27539943054647, 34.641159383120005], [-77.2750527637603, 34.64232541245794]], [[-77.36587311046583, 34.713204957735755], [-77.36587883243742, 34.71325802111554], [-77.36580194829618, 34.71329500479101], [-77.36572822679622, 34.71328680992234], [-77.36569122589148, 34.713229944615726], [-77.36556740914884, 34.71298209570602], [-77.36442187211406, 34.711454772060925], [-77.36427135893072, 34.71125409460052], [-77.36407531508385, 34.710992702683285], [-77.36309629896454, 34.70968731327138], [-77.36288876668138, 34.7091642370278], [-77.36262536766336, 34.70773744375441], [-77.36178158727586, 34.70686242182552], [-77.36207369288347, 34.70592866750084], [-77.36208079463772, 34.704787173958174], [-77.36345765107298, 34.7048699592612], [-77.36420354218242, 34.704998463298054], [-77.36584995422722, 34.704878048792025], [-77.36618961921431, 34.705363225040216], [-77.36714424659678, 34.705889032780114], [-77.36775052017049, 34.706580639887015], [-77.36831314907323, 34.707020996928804], [-77.36833000867114, 34.70777188311461], [-77.3684137402349, 34.70798196202813], [-77.36838478804862, 34.7080881980593], [-77.36827423504383, 34.70897590909244], [-77.36797140565088, 34.71000675248547], [-77.36746666167285, 34.71103644200497], [-77.36591240489808, 34.71314506468166]], [[-77.32449965715088, 34.707076293178964], [-77.32458045199527, 34.707102088798784], [-77.32483669134243, 34.707138837750506], [-77.32741076204441, 34.70807826804559], [-77.32871096886916, 34.70906679541745], [-77.33119831652681, 34.70805115910572], [-77.33157875131039, 34.708025633565846], [-77.33254650390114, 34.70803144436415], [-77.3336846099282, 34.7084349177189], [-77.33485808027646, 34.70865635454656], [-77.33773814807682, 34.70874228766876], [-77.33833476913162, 34.70891578618094], [-77.33881055596801, 34.70876924643722], [-77.340853704265, 34.7084889863616], [-77.342074655159, 34.70867412521514], [-77.34179872775474, 34.70962381443867], [-77.34250479753462, 34.71104927475826], [-77.34250478372874, 34.712514125933716], [-77.34248190808789, 34.71540481467105], [-77.34248699601503, 34.71805864723242], [-77.34250489746768, 34.720312071437064], [-77.3425048910168, 34.72169374890045], [-77.34118472278286, 34.72711774634703], [-77.34060914764709, 34.728370174427596], [-77.33699081168058, 34.73002482828924], [-77.33617907961785, 34.72971223234428], [-77.33477245545157, 34.729170570241585], [-77.33503541201132, 34.72743851919475], [-77.33267094393986, 34.728403683185235], [-77.32983011001994, 34.72726738860818], [-77.32763736147822, 34.72682137495115], [-77.32401936738201, 34.7252031759262], [-77.32216073078447, 34.724726510234944], [-77.3185694797363, 34.723593105976036], [-77.3167253783688, 34.72259991730757], [-77.31551715944357, 34.72149085920793], [-77.31199736905337, 34.72167154853085], [-77.30862481808882, 34.722521960663], [-77.30555861338954, 34.72278488253312], [-77.30256828364968, 34.720872533038765], [-77.3043975992979, 34.71773586008807], [-77.30292250833291, 34.71538092991241], [-77.30235943291635, 34.71472870495177], [-77.3015043600148, 34.71423298056163], [-77.30021322242801, 34.71121885318284], [-77.30009650744039, 34.71052680943356], [-77.30073833055835, 34.709670351799765], [-77.3023516256711, 34.706319373843456], [-77.30481798578913, 34.70508617445364], [-77.30580319293703, 34.70548191417059], [-77.30604176975348, 34.705593647868376], [-77.30613660226538, 34.70580131427136], [-77.3098330701677, 34.708095044020624], [-77.31079055741407, 34.70824750833199], [-77.31932355211808, 34.70773620763387], [-77.3195525005363, 34.70761671197946], [-77.31965279654888, 34.7077386633232]], [[-77.30520677861017, 34.58835109834428], [-77.30671118046395, 34.58736861238267], [-77.30746571603187, 34.586851983670336], [-77.30841542813391, 34.58717151166158], [-77.31008155438161, 34.587134070920605], [-77.31141390789782, 34.58723815349979], [-77.31500201627559, 34.588476251098136], [-77.31534243587691, 34.58864012576802], [-77.31563065871934, 34.58928155081149], [-77.31739220386842, 34.590222946634015], [-77.31655664636821, 34.58825596943479], [-77.31606611282093, 34.58767071318154], [-77.31606436259429, 34.584930428615095], [-77.31599032318621, 34.58437068452377], [-77.31681448718811, 34.58288311913199], [-77.31754430206328, 34.58247545703454], [-77.31861484428481, 34.58286039048642], [-77.32078167993703, 34.580856756038386], [-77.32152396851531, 34.58048560100012], [-77.32177065762116, 34.57929247130109], [-77.32249717142639, 34.57459571382563], [-77.32261302711495, 34.57380117646057], [-77.32304297257728, 34.57237565127443], [-77.32390367581087, 34.570219491724444], [-77.32412868345966, 34.56932137263992], [-77.32434497160482, 34.56845796020403], [-77.32493365588854, 34.5677290762377], [-77.32541256120889, 34.56712187959646], [-77.32619725678367, 34.5664936840781], [-77.32637929388468, 34.56632577637443], [-77.32651093665878, 34.56621871046833], [-77.3266400961236, 34.56629079950983], [-77.32665925491875, 34.56642729998675], [-77.32737220282695, 34.56709404668694], [-77.32755317678787, 34.56742313158293], [-77.32789475335167, 34.56794790817992], [-77.32784744532486, 34.56821070208068], [-77.32777393786971, 34.56932929180601], [-77.32770695525257, 34.56967303945015], [-77.32742875322147, 34.570418033212114], [-77.3274755814252, 34.570555361283056], [-77.32744162141127, 34.570718454173196], [-77.32751378801554, 34.57139894192827], [-77.3270308398055, 34.572034272492054], [-77.32692895854653, 34.57318112130805], [-77.32677324831978, 34.57349330564466], [-77.32668937345429, 34.574713058110255], [-77.32691709468052, 34.57488096996448], [-77.32692762657099, 34.57533740619782], [-77.32688698299367, 34.576583432279186], [-77.32672706532263, 34.57854952068767], [-77.32236950304113, 34.58062868828965], [-77.32670846981023, 34.58147565560681], [-77.32807277167058, 34.581932719129554], [-77.32866275863314, 34.582484685439496], [-77.32996138487242, 34.582934254459154], [-77.3304983260777, 34.583638508571994], [-77.33416729816567, 34.5857261094843], [-77.33427282993331, 34.58582021709868], [-77.33437414500406, 34.58596425965374], [-77.33819541868208, 34.58782113429679], [-77.34067758304099, 34.58800046189531], [-77.34317373142684, 34.587119766939075], [-77.34383070187711, 34.58715250947518], [-77.3441594013314, 34.58733157639814], [-77.34698288523447, 34.58763388973604], [-77.34921747446161, 34.58794699133158], [-77.35013525011937, 34.58786255870481], [-77.35130843423487, 34.58792144685831], [-77.35328775012307, 34.58788951592952], [-77.3546626760025, 34.58808978930002], [-77.3564398222541, 34.5886900541142], [-77.35702348812708, 34.5886027359918], [-77.35693309868172, 34.58924452246636], [-77.35655987194802, 34.58942800359216], [-77.35643920885194, 34.58982103387262], [-77.35446729960836, 34.590871967132415], [-77.35414128841356, 34.593042680130495], [-77.35422984797825, 34.595406723273726], [-77.35565043510135, 34.596221922232004], [-77.35643418914502, 34.599140483907085], [-77.3564988063422, 34.59942648019588], [-77.35801064216935, 34.59916427085508], [-77.35811975728318, 34.59926298142788], [-77.35810569381994, 34.59936750995077], [-77.35816250545756, 34.60010593325907], [-77.35800990167927, 34.600599584447735], [-77.35749520104193, 34.600201967647976], [-77.35760113566542, 34.59977840190818], [-77.35674152564474, 34.59979276728039], [-77.35643386493471, 34.59974583897626], [-77.3563358682161, 34.59962533153269], [-77.3563052726557, 34.59952410279889], [-77.35328172837322, 34.59831471591366], [-77.35210612468072, 34.59799844429531], [-77.3498636586445, 34.597054464173674], [-77.3479265066033, 34.59631048247955], [-77.34697747705798, 34.59589907348959], [-77.34433592667658, 34.59500327539512], [-77.3438252669548, 34.595003272935], [-77.34339799524156, 34.59504828332588], [-77.34067228711291, 34.59525808208552], [-77.33827080509222, 34.5961351737204], [-77.33436490853578, 34.59743715488362], [-77.32866056193927, 34.599452787961305], [-77.32805891639748, 34.597640588343694], [-77.32500989656214, 34.59734227900394], [-77.32533512404319, 34.600562690243585], [-77.31917837119326, 34.60257152698329], [-77.31861494663829, 34.604164631977056], [-77.31694564099365, 34.60846508264631], [-77.31558906087308, 34.60989658311816], [-77.31470947577581, 34.610220334305126], [-77.31310707803314, 34.611422062577454], [-77.31248406345148, 34.61188930829555], [-77.31221873102191, 34.6120868177824], [-77.31013615920799, 34.612947490986016], [-77.30771444530367, 34.61321735881818], [-77.30753039134555, 34.61327927172683], [-77.3048797877525, 34.61226799224653], [-77.30293625726004, 34.61319171193763], [-77.30010938259497, 34.610772105846024], [-77.299768029625, 34.605789638657406], [-77.29892171968399, 34.604183115677856], [-77.29916180347654, 34.60230714002534], [-77.29965449859618, 34.60034288074618], [-77.3016402047374, 34.59705913178758], [-77.30167863073328, 34.59689457900791], [-77.3017563157638, 34.59667947078058], [-77.30264225819897, 34.59245486905594], [-77.30324303661507, 34.590087861239816], [-77.30445522983682, 34.58880932297416]], [[-77.25583844187516, 34.696117891427974], [-77.25441570323629, 34.69727556917576], [-77.25520247202275, 34.69829891815758], [-77.25635042018729, 34.69965427542581], [-77.25689051143668, 34.70072425915934], [-77.25702402767969, 34.700818234133536], [-77.25831549252753, 34.70129592458805], [-77.25893202933746, 34.70193749674216], [-77.26140307210724, 34.70022045699942], [-77.25973979705276, 34.69916692273594], [-77.2585773966467, 34.697943796479755], [-77.25703809009534, 34.696917668228714]], [[-77.2999241756921, 34.72568194204075], [-77.30021748659024, 34.726105547213045], [-77.29971706949758, 34.726393392154705], [-77.29952409286243, 34.72620041773364]], [[-77.47763252693946, 34.73212929058481], [-77.47841800084952, 34.73331170394259], [-77.4797688895846, 34.734765767584264], [-77.4761257003315, 34.7373455037205], [-77.47570379717209, 34.737485943529705], [-77.4752845696041, 34.73767208337503], [-77.4711055665764, 34.736968972192486], [-77.47021126922061, 34.736738824844224], [-77.46865586710624, 34.73657179263999], [-77.46748611158034, 34.736028979842054], [-77.46643875641625, 34.735369833114824], [-77.46603189348227, 34.73491212544284], [-77.46542602803822, 34.73423052667255], [-77.46489326649362, 34.733601680565926], [-77.46464182416386, 34.73271432470646], [-77.46434234106299, 34.73204585949911], [-77.46418772594188, 34.73064484800743], [-77.46455012370505, 34.72945298202801], [-77.46506183204868, 34.72817378891785], [-77.46556186851613, 34.726909923862216], [-77.46611578926839, 34.72552798102933], [-77.46624795476183, 34.72504093407525], [-77.46682597520129, 34.72515674003999], [-77.46859202415342, 34.72587857153498], [-77.46912175776363, 34.72608545566431], [-77.47030860528096, 34.7259829154968], [-77.47320522644276, 34.727431198875806], [-77.4737784636909, 34.72771780856268], [-77.47399794140748, 34.72801399396954], [-77.47423701780336, 34.72836342047264], [-77.47594745704001, 34.73077160172891]], [[-77.29507177937259, 34.706657094200345], [-77.29611893938338, 34.706916783833364], [-77.29732495335966, 34.70700721721269], [-77.29757680912113, 34.708879760074126], [-77.29519524470888, 34.70762671561098], [-77.2905524887559, 34.70850426345597], [-77.2902640906513, 34.7079730634866], [-77.29105052222755, 34.70679380196555]], [[-77.5309629480541, 34.70763189087749], [-77.53455477622141, 34.70421406409257], [-77.53478474984021, 34.703754115832425], [-77.53560914852538, 34.702105155714044], [-77.53581350929669, 34.70169649197173], [-77.53650845179713, 34.70030682207292], [-77.53485588445083, 34.69969972960668], [-77.53463934495895, 34.69947127426134], [-77.53446651363757, 34.69941283171321], [-77.5325853132947, 34.69909986181072], [-77.53124581116165, 34.69996196300681], [-77.53037044545768, 34.70027864048276], [-77.5304640364313, 34.700918575624385], [-77.5309518786786, 34.701894306448644], [-77.53264838303795, 34.703549412288965]], [[-77.43361904906098, 34.67597964418078], [-77.43360302062288, 34.67612941475793], [-77.43360056393965, 34.676152371311176], [-77.43359315914586, 34.67617700400898], [-77.43355752976808, 34.676192319695026], [-77.4335572301278, 34.676148529678436], [-77.43355662838601, 34.6761370052601], [-77.43355421011921, 34.676113324627835]], [[-77.31920710630617, 34.6734023816953], [-77.31760021778204, 34.67555879242519], [-77.31640367995956, 34.675558791099775], [-77.31609072891527, 34.67421939577889]], [[-77.42570947555659, 34.732091995083366], [-77.42571324698994, 34.732090563639034], [-77.42589073482951, 34.73201424124134], [-77.42591252602635, 34.732011974718674], [-77.42605892362192, 34.7320038868546], [-77.42614281400643, 34.732106626448505], [-77.42614377972698, 34.73213870567603], [-77.42612427270646, 34.73220887485932], [-77.42611253428599, 34.7322358089187], [-77.42606073910957, 34.73229202649539], [-77.42597362084067, 34.732298525900106], [-77.42595164775207, 34.732300737727265], [-77.42592216800331, 34.732309034413674], [-77.4258511762194, 34.73232353347213], [-77.42569467661667, 34.73236928281585], [-77.4256278249526, 34.732385609774845], [-77.42556200708884, 34.732322908738226], [-77.42569297589205, 34.73210355152774], [-77.42570517433052, 34.732093418757145]], [[-77.32280256937307, 34.67506651275676], [-77.32132877539662, 34.67492294826175], [-77.32083833179837, 34.67332376930965], [-77.3225921837134, 34.67395105230867], [-77.32455235399235, 34.673946094641764], [-77.32458769684095, 34.674032007569686], [-77.32484444394824, 34.67432412815629], [-77.32444807271783, 34.67430488014283]], [[-77.41549900617024, 34.55782468517823], [-77.41559850677582, 34.5578005856684], [-77.41633201573023, 34.55749519487303], [-77.41653121686278, 34.557724336756166], [-77.41688331186617, 34.55792848455135], [-77.41684493734415, 34.558231754129494], [-77.41658549832695, 34.55829257323784], [-77.41633208376108, 34.55794003298581], [-77.41558024504042, 34.55790050296418], [-77.41553309004787, 34.55788055906242]], [[-77.4509168589616, 34.68276590126686], [-77.45090526067207, 34.68279149651291], [-77.45081407287336, 34.68300947936466], [-77.45080775724053, 34.68301123682875], [-77.45077381381415, 34.68302224468506], [-77.4506313293749, 34.68306742354822], [-77.45061575155363, 34.683065947892274], [-77.45051536389482, 34.68301856324685], [-77.45049566737416, 34.6829825848518], [-77.45046096546633, 34.68292967269307], [-77.4504160588584, 34.682870356006845], [-77.45044576493277, 34.68278817206002], [-77.45050575538288, 34.68262220253691], [-77.45065776314462, 34.68240106659083], [-77.45066106231427, 34.682392452329395], [-77.45067180739088, 34.682395201866036], [-77.45090843111072, 34.6826629614863]]]]}, "type": "Feature", "id": "demo14", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.27103610812996, 34.715986059462104], [-77.27151778249966, 34.71443385881423], [-77.27123064630447, 34.71343362609651], [-77.27229352088365, 34.70688095031424], [-77.27309948095964, 34.7064204326544], [-77.27955425122695, 34.70310505991705], [-77.28261176463205, 34.702872330369686], [-77.28721445346636, 34.70115276294006], [-77.28497793088073, 34.70479709031129], [-77.28608595705681, 34.70517177188386], [-77.28661658476636, 34.70556963721442], [-77.28971702622013, 34.70414908534742], [-77.28905985049494, 34.70132203671073], [-77.28867253103218, 34.70003221158417], [-77.29046512618086, 34.69624922524882], [-77.29015023706515, 34.69574468706402], [-77.29000234867218, 34.69394193013619], [-77.28973978531806, 34.69290831211621], [-77.29000239067007, 34.69241374598698], [-77.28983603123518, 34.691791468587745], [-77.29006103465736, 34.69045633830595], [-77.29121500454963, 34.68977661501168], [-77.29346016346067, 34.689991377344036], [-77.2935202627266, 34.69000246035347], [-77.29354298653845, 34.690005862855735], [-77.29357728841974, 34.69000247470301], [-77.29596016759577, 34.689928581878526], [-77.29898712897399, 34.689694295987664], [-77.30330333963107, 34.68669485590804], [-77.30563247293189, 34.685373447909406], [-77.30733790623182, 34.68374424549497], [-77.30869535079351, 34.68298262023178], [-77.30874625577131, 34.68205085233877], [-77.30887736546248, 34.6784517886194], [-77.30885731089137, 34.678210304114224], [-77.3088423122185, 34.67813884201585], [-77.30886076789987, 34.678020710814074], [-77.30819173848849, 34.672417428514336], [-77.30687358561829, 34.670610716088355], [-77.30647188875955, 34.670439197849014], [-77.30622501491057, 34.67006546843731], [-77.30402014860687, 34.666109551398925], [-77.30288908696174, 34.66440462517695], [-77.30130763918048, 34.66229602040737], [-77.29928414877392, 34.66100326260576], [-77.29738465088639, 34.66230971257427], [-77.29701881473484, 34.662481020410894], [-77.2965034999563, 34.662618305002574], [-77.2946216556888, 34.66330126041197], [-77.29323363504321, 34.66377254383032], [-77.29106722077948, 34.66418984029251], [-77.28972818460186, 34.66444778877363], [-77.28847189936593, 34.66466480131008], [-77.28615610767613, 34.66472280288559], [-77.28466748541591, 34.664760059841754], [-77.28222531375346, 34.664169547023654], [-77.2817123112997, 34.66433196448225], [-77.27951011138771, 34.664589634663855], [-77.2763377365251, 34.66577997788831], [-77.27463493618274, 34.66582853251599], [-77.27209799369052, 34.66538895165732], [-77.26923017259652, 34.664421979979004], [-77.26805917442411, 34.6637943538484], [-77.265127643266, 34.66281723208293], [-77.26408749630214, 34.662470510537325], [-77.26363062873385, 34.66204078083289], [-77.26307740002677, 34.66309727930835], [-77.26324180432249, 34.664140891203466], [-77.2628119636208, 34.667394518684986], [-77.26092517628275, 34.668716295681236], [-77.2600107684524, 34.669555621838], [-77.25952494833345, 34.66966477592995], [-77.25815504661625, 34.66960293513281], [-77.25743496284669, 34.66948509994147], [-77.25603524080697, 34.66920519708807], [-77.25420759668818, 34.666156076580556], [-77.2525783584741, 34.66851382698902], [-77.25133567569634, 34.66931791161267], [-77.24987655899683, 34.670118622336474], [-77.24924985816412, 34.670745319560694], [-77.24878228631555, 34.67180003572755], [-77.2476009244377, 34.6745471519606], [-77.24612249743703, 34.67696949180862], [-77.24567839355272, 34.67897471396713], [-77.24481919828482, 34.68248061807213], [-77.24477152763741, 34.68334129655275], [-77.24507722864173, 34.68374353326179], [-77.24585217385277, 34.68566194260591], [-77.2464106065477, 34.68667197698266], [-77.2465593721821, 34.68826934899711], [-77.24816573548017, 34.689576617427875], [-77.24889578014816, 34.69023154519471], [-77.24911670182682, 34.69141078282379], [-77.24849744835339, 34.693082305584554], [-77.25078814318768, 34.69387195700361], [-77.24740768829969, 34.69500473332242], [-77.25055692930812, 34.69780211688129], [-77.25436188576947, 34.70118154567532], [-77.25626448054408, 34.70287121032649], [-77.25816715302366, 34.70456084180638], [-77.26197273112473, 34.70794000523018], [-77.26577862012665, 34.71131903590245], [-77.26958482008342, 34.714697933778865]], [[-77.30796998421744, 34.748750928765936], [-77.307902649574, 34.74844692440022], [-77.30814472986643, 34.74811011357395], [-77.3101938472981, 34.74423445921768], [-77.3104572979336, 34.7431805532152], [-77.31069844348215, 34.7422159715922], [-77.31024553337855, 34.74055163265942], [-77.31017899574907, 34.7403376503453], [-77.31024579217515, 34.74019065922865], [-77.31008421608502, 34.74016373346879], [-77.30888574857205, 34.7380834590174], [-77.3064659222597, 34.736947014146935], [-77.30656539669505, 34.73671430719811], [-77.30585888914243, 34.73666190791381], [-77.30596569585686, 34.73717518077758], [-77.30479952384275, 34.741073899582766], [-77.304920875596, 34.74143915176055], [-77.30567542130967, 34.74370288582274], [-77.30669217697395, 34.74471371594805], [-77.30710142740406, 34.74798084651542], [-77.3076639340478, 34.748479599022524]], [[-77.3879047803339, 34.77463496180107], [-77.38796300370645, 34.7742498329621], [-77.38630601906624, 34.770935972514636], [-77.38536351970644, 34.7685526298158], [-77.38505628408213, 34.7683668131491], [-77.38328472514786, 34.76599673926409], [-77.38443754747341, 34.76854354601515], [-77.38403355661055, 34.76910657582644], [-77.38040441735605, 34.77160620081947], [-77.37999663908735, 34.77259669137336], [-77.37955996598114, 34.7781103677483], [-77.38259587504663, 34.77684612511951]], [[-77.50954268549401, 34.72387897700779], [-77.50622621772754, 34.721897503624646], [-77.50319133880103, 34.722578783811976], [-77.50092551002413, 34.72249762049031], [-77.49856029644052, 34.72343813807402], [-77.49751075861747, 34.72526082327245], [-77.49749758281955, 34.72534093582555], [-77.49749753324006, 34.7275383869666], [-77.49577654161212, 34.7296322245749], [-77.49929049551162, 34.72816391340189], [-77.5022060382906, 34.72694549387504], [-77.505121492128, 34.72572700793548]], [[-77.53041425669, 34.71515174620955], [-77.5331663376498, 34.71173748022372], [-77.53480311372294, 34.711691829927105], [-77.53919987884883, 34.710786247812024], [-77.5397748212877, 34.70991896828104], [-77.53859152709562, 34.705621307277], [-77.53783737353496, 34.70288194898774], [-77.53708327522848, 34.70014258274434], [-77.53632923216598, 34.69740320854824], [-77.53629499526672, 34.69727881933787], [-77.53388701877205, 34.69672983575746], [-77.52825002118871, 34.69706265480275], [-77.52785122721832, 34.697198417978186], [-77.52734703912729, 34.697408982212636], [-77.52700319363746, 34.69711274994267], [-77.51943641687826, 34.697222714686376], [-77.51636528666971, 34.69619900186875], [-77.51480078617546, 34.69567749942866], [-77.51320239872985, 34.69514471229097], [-77.5116614484196, 34.69463106206412], [-77.51016541774028, 34.69413238795985], [-77.50825098822816, 34.69360376214331], [-77.50685191661651, 34.69319244482688], [-77.50559208958246, 34.69281222872878], [-77.50276764136717, 34.69221449035836], [-77.50228083955375, 34.69146215694951], [-77.50101318397279, 34.691471122936], [-77.50028101869827, 34.69144699422712], [-77.50083395947973, 34.69081886439146], [-77.50145972903721, 34.690193091878676], [-77.50224308748327, 34.689409686561085], [-77.50331208719165, 34.68836266910715], [-77.50294398680398, 34.68625508980703], [-77.50328041496147, 34.68587474084887], [-77.50231835081846, 34.68409555135936], [-77.50218157755084, 34.68351820224396], [-77.50203352240462, 34.68296262932516], [-77.50179721578188, 34.68107263004814], [-77.50133539153187, 34.68080522085856], [-77.501324924735, 34.67799001271296], [-77.50122906834628, 34.67788106233494], [-77.50132141995924, 34.67776023024416], [-77.50132226838211, 34.67727336030247], [-77.50123264340392, 34.67640278600255], [-77.50118650046666, 34.67523620142146], [-77.50112445821524, 34.6749564053914], [-77.50099795487455, 34.67472968628457], [-77.50043062597287, 34.67367722470365], [-77.50025482084973, 34.67338762103147], [-77.49925890380466, 34.67319665404148], [-77.49729919052959, 34.67387908633885], [-77.49632524285065, 34.67440627146881], [-77.49316079726633, 34.67491114015433], [-77.49186798352355, 34.674916283222075], [-77.48799480491142, 34.67472775018166], [-77.48598468211944, 34.67479156457871], [-77.48165664113219, 34.67584778342005], [-77.48001653588322, 34.676332318561904], [-77.47746345127123, 34.679337517204736], [-77.47739500733728, 34.68172771578122], [-77.47734926832834, 34.68195185162158], [-77.47703777268472, 34.684143248414586], [-77.47636431858129, 34.68497598734281], [-77.47545408854288, 34.68766609684915], [-77.47518785773087, 34.688265835191025], [-77.47511649943279, 34.688426609907005], [-77.47514699998864, 34.68876050487424], [-77.47474609230242, 34.688865555470954], [-77.4733315022329, 34.68900257889417], [-77.4694146766498, 34.68957671887745], [-77.46833445452305, 34.68959030858154], [-77.46684772166192, 34.689590271031385], [-77.46613372028898, 34.68843781418508], [-77.46491664549356, 34.6874026891537], [-77.46420283048383, 34.685672734642665], [-77.46443645642171, 34.68469563681216], [-77.46441985777611, 34.68395074287608], [-77.46412316915726, 34.68322187659878], [-77.46406406758906, 34.682575074850234], [-77.46338975647663, 34.68045983546211], [-77.4629946021164, 34.67992579292948], [-77.46247079051052, 34.679054037605454], [-77.4618962275558, 34.674968611704834], [-77.4614181908504, 34.674466879069], [-77.46090444941369, 34.67355187017199], [-77.45981325312526, 34.670198024945975], [-77.45878415636977, 34.66930948442273], [-77.45622092348123, 34.667272421425324], [-77.45261966602595, 34.66852059889371], [-77.45010959155275, 34.66977851823399], [-77.44936300760263, 34.671995001406984], [-77.44726405876185, 34.67373876316177], [-77.44619610219057, 34.67579784870443], [-77.44617607925166, 34.6758359778824], [-77.44609132725483, 34.67588151251867], [-77.44362981285326, 34.6774232888054], [-77.44269959995933, 34.67760443697941], [-77.44207995009225, 34.67774026202784], [-77.4411217122223, 34.67801599047398], [-77.44067590627846, 34.67816423150256], [-77.44033308207327, 34.678222280268315], [-77.44000219076204, 34.678278307440685], [-77.43991860086582, 34.67829246090162], [-77.43979880303056, 34.67831993323589], [-77.43964569858409, 34.67840323392029], [-77.43965482429627, 34.6782695880328], [-77.43964090653824, 34.678072766367706], [-77.43969898357173, 34.6779334651355], [-77.43993781033633, 34.67780949773967], [-77.4399983011888, 34.67767503716346], [-77.44042715680466, 34.677421565056235], [-77.44042695647578, 34.676880328960934], [-77.44100091488495, 34.67650410419412], [-77.44038229456905, 34.676031225356304], [-77.4401544529972, 34.67593084759149], [-77.43985953857259, 34.67571403390529], [-77.4389198983393, 34.675776421642205], [-77.43880573860405, 34.67576889710439], [-77.43875337702175, 34.67576488954996], [-77.43872690633484, 34.675708933834315], [-77.43835723633373, 34.67513117918996], [-77.43811252052728, 34.67476815725126], [-77.43707391333346, 34.67322734913013], [-77.43676063822487, 34.67276259808789], [-77.4365584448768, 34.672689670393346], [-77.43508492693866, 34.671152619139484], [-77.43469456590061, 34.67026669245274], [-77.43157067473858, 34.6685003620232], [-77.43079230961972, 34.669082546305866], [-77.42958257997948, 34.66755517130174], [-77.42838297249641, 34.66615671086739], [-77.42784969950458, 34.66536367544835], [-77.42628615566181, 34.66380010173707], [-77.42599604736426, 34.663509980010986], [-77.4247555850563, 34.6618301163763], [-77.42455758691744, 34.66133853666004], [-77.42377882313818, 34.66056900801324], [-77.42261584433308, 34.65893771603128], [-77.42298466938124, 34.656680656111355], [-77.42288454242183, 34.655907339044965], [-77.42325258679284, 34.6554291691787], [-77.4233277156012, 34.653760043695655], [-77.42344921410647, 34.65279269751983], [-77.42332772918158, 34.65260550802599], [-77.42332778542362, 34.650499767569926], [-77.42341622432443, 34.64984825378001], [-77.4239660192287, 34.64840425623113], [-77.42415569145204, 34.648311651586404], [-77.42479598462151, 34.647155812399745], [-77.42536623621773, 34.64633895320235], [-77.42540154523503, 34.64626980933895], [-77.4254382026258, 34.64609620393641], [-77.42563144410163, 34.64613523448166], [-77.42568569518966, 34.64624795042015], [-77.4270642078265, 34.64685164352842], [-77.4295581135507, 34.6480986526904], [-77.42991683035541, 34.64821275266669], [-77.43027625010009, 34.648400245726414], [-77.43181596233099, 34.649549118606565], [-77.43277040771383, 34.649826317091346], [-77.43326906857565, 34.649022816718826], [-77.43457940601309, 34.648749329692976], [-77.43761366300643, 34.6458033570597], [-77.43777546533315, 34.64564398941353], [-77.43790778287708, 34.64553805319896], [-77.43835031405719, 34.6452219634185], [-77.44379785148911, 34.642795422941084], [-77.4451504409051, 34.641257379019045], [-77.44844697491199, 34.639466444681474], [-77.4513768578127, 34.6359720726435], [-77.45179985138004, 34.635684051756044], [-77.45201471064844, 34.63559794360291], [-77.45236732788025, 34.635404943611725], [-77.45562383449379, 34.633415339747714], [-77.45754219775844, 34.63273733217767], [-77.45943361146394, 34.63196559783961], [-77.46116789935635, 34.63196115918903], [-77.46363350950894, 34.63193989388802], [-77.46504753015736, 34.630406989995926], [-77.46463006080106, 34.6292381303875], [-77.46431069015286, 34.62811818864452], [-77.46391043320747, 34.626489229594696], [-77.46361566208735, 34.62530995899158], [-77.46357853276929, 34.62493852166304], [-77.46437426213184, 34.62340272478272], [-77.46518980808055, 34.62226852108361], [-77.46867596194262, 34.62217542589699], [-77.46919356917027, 34.622146673692825], [-77.46937730402024, 34.622199172219354], [-77.47068545808385, 34.62246882800876], [-77.47332771973608, 34.621264819218254], [-77.47347383860466, 34.618489082485], [-77.4734616973895, 34.61785551577498], [-77.47344427880984, 34.61694730071366], [-77.47171549882307, 34.61538328905715], [-77.47054023753033, 34.6131825283191], [-77.47027856543555, 34.61285542628433], [-77.46976671230809, 34.61223816932296], [-77.46933099398757, 34.61017159761806], [-77.46774481869447, 34.609285071167996], [-77.4676330038636, 34.609179040340976], [-77.467278122606, 34.608890500163156], [-77.46775217217535, 34.60859522967689], [-77.46836188535416, 34.60853026369516], [-77.46980588967665, 34.608415701924834], [-77.47078130765182, 34.60763826554309], [-77.47115465295967, 34.606696881896106], [-77.47499735778084, 34.60415795987897], [-77.47613057474064, 34.600802098379305], [-77.47644871828703, 34.59971090372799], [-77.47637987209184, 34.59929695348534], [-77.47622521419238, 34.59891034891144], [-77.47442226795178, 34.594047601854975], [-77.47445176446665, 34.59393880610645], [-77.47436790916112, 34.59386549747984], [-77.47371956373173, 34.59132449879614], [-77.4771142982615, 34.590224420712524], [-77.47738607357704, 34.59012954719115], [-77.47743228110531, 34.59011581987048], [-77.4812528768132, 34.5888060437651], [-77.48356358084649, 34.587335349070784], [-77.4840898856784, 34.585278237776265], [-77.48474664046532, 34.58279462398033], [-77.4845393229873, 34.5821955950943], [-77.4843304551508, 34.58167347018978], [-77.48411663701305, 34.579361900816636], [-77.48328418049795, 34.57732871747463], [-77.48329081804158, 34.57664345652893], [-77.4828051157373, 34.57622235865999], [-77.48251403071995, 34.574582126839914], [-77.48490930580824, 34.573226863367054], [-77.4851121496007, 34.57301359023222], [-77.48531469617754, 34.57294607482761], [-77.48617297892122, 34.57209973721893], [-77.48900212287674, 34.56941963656703], [-77.48899952671583, 34.5686394084435], [-77.4893557259587, 34.566047984226365], [-77.4893734743719, 34.564595130992885], [-77.48999255251718, 34.560104911928164], [-77.49000296889088, 34.559954296240456], [-77.49001639177526, 34.55986566108964], [-77.48814964354592, 34.55504280663401], [-77.48779955565742, 34.55467502860384], [-77.48703009858602, 34.55386666770775], [-77.48585304791034, 34.550536469364665], [-77.48101050819712, 34.550705744977094], [-77.48015062824477, 34.55020042608817], [-77.47934889380977, 34.549290158802016], [-77.47853384450858, 34.55041854873415], [-77.47619998281127, 34.55154530677401], [-77.47616758433543, 34.55160644690758], [-77.47337035159285, 34.55170065890236], [-77.4730480953797, 34.55040832290724], [-77.47196586645993, 34.54885359004567], [-77.47304540395422, 34.547148734106045], [-77.4739581287572, 34.54615280152499], [-77.47500000080419, 34.54501683741201], [-77.47445253017301, 34.54357590763947], [-77.47578653134067, 34.54106986251359], [-77.47760829846939, 34.53971228181207], [-77.4793391366417, 34.538420103549484], [-77.47983762426854, 34.53805940472333], [-77.48194704844155, 34.537215645440355], [-77.48249136633963, 34.536997920947066], [-77.48277782166906, 34.53709514878005], [-77.48489075804339, 34.53759567571977], [-77.4856396533691, 34.53804503756888], [-77.48836675183895, 34.53968131620844], [-77.48855977584431, 34.539903630007046], [-77.48892862835817, 34.54011955755787], [-77.49080333129098, 34.540815287781776], [-77.4913851972225, 34.5414162315684], [-77.49172672941532, 34.54064650944537], [-77.49269886150402, 34.53854226592972], [-77.49268890858527, 34.53850594828268], [-77.49193810691251, 34.535766107470685], [-77.49074372836311, 34.531407062314216], [-77.48731126952993, 34.53191981728862], [-77.4852352101315, 34.53251381361234], [-77.48396881458396, 34.53300457668202], [-77.48043750770921, 34.534156454152395], [-77.47940327967416, 34.53457014556835], [-77.47629716677608, 34.53611798992444], [-77.47311259680856, 34.538496670761084], [-77.47306488665349, 34.53853222436439], [-77.47303836858735, 34.538582041015225], [-77.46982284371572, 34.54229698734082], [-77.46674239611244, 34.545237169832916], [-77.4640604979348, 34.542697984716945], [-77.46120107173728, 34.541045366879175], [-77.46043783566078, 34.54060594879888], [-77.46031089643911, 34.54048853561385], [-77.46008520750081, 34.54038444917871], [-77.45731974077667, 34.539300229397355], [-77.45499675428735, 34.541121407848095], [-77.45597720459264, 34.54296219147027], [-77.45683314546514, 34.54474471269185], [-77.4572901228995, 34.545106772542375], [-77.45917971027393, 34.54730929479956], [-77.45969843547283, 34.54803666887376], [-77.46044402690679, 34.5498183487373], [-77.46099765540012, 34.55044283308285], [-77.4604446466511, 34.550735988869135], [-77.46023335466136, 34.55078135246451], [-77.45886956767852, 34.55133142590814], [-77.45782002042468, 34.55146993939946], [-77.45729421784428, 34.551539257749], [-77.45678967832897, 34.55159619577594], [-77.45414358639277, 34.55211451291874], [-77.4514883887178, 34.552354162307154], [-77.45099267704876, 34.552283336183095], [-77.45065788069721, 34.552300973411505], [-77.44784174869662, 34.552449851300054], [-77.44478041091473, 34.5528871847987], [-77.44469097332852, 34.552964282268874], [-77.44417317772026, 34.55343699816299], [-77.44154120829847, 34.55580331289933], [-77.44028737803686, 34.55548615234636], [-77.43839053986173, 34.55699702729616], [-77.43833004954, 34.557120730218266], [-77.43839062717312, 34.557206571366265], [-77.43934257574824, 34.55934588039444], [-77.44023817861475, 34.56024146296036], [-77.44154382503768, 34.56154705173011], [-77.44222105913639, 34.5626219193315], [-77.44253687454852, 34.56330567208745], [-77.44339301700512, 34.56517310209381], [-77.44427059175132, 34.56691213267136], [-77.44624217853274, 34.56956311274111], [-77.44696266559026, 34.57041661740732], [-77.44785169611964, 34.571090828553764], [-77.44906846708854, 34.572550938264875], [-77.44992999615378, 34.57358467080227], [-77.45100598625554, 34.57551282059387], [-77.45110944823969, 34.5756523670362], [-77.4515337400789, 34.57842082177394], [-77.45153376378886, 34.57898775853293], [-77.45161191562337, 34.57962682540506], [-77.45199634349524, 34.58231761483245], [-77.45101157084673, 34.58505220764818], [-77.45079124834662, 34.58565103667336], [-77.4505190064635, 34.585928231656986], [-77.44786164342648, 34.58926107770453], [-77.44763200241675, 34.589495200842194], [-77.44748682572651, 34.589763787490945], [-77.44775661084823, 34.589838272848525], [-77.4477650354795, 34.59121416806241], [-77.44798313269453, 34.59222959238154], [-77.44759471538559, 34.59273976602995], [-77.4478868066943, 34.593336310681636], [-77.4489050861095, 34.59352095128097], [-77.4491921504103, 34.59356866726067], [-77.44970612568797, 34.59361455687384], [-77.45056160299369, 34.593722597964224], [-77.45172938649142, 34.5935407357237], [-77.45287286847284, 34.592654720754844], [-77.45349356521768, 34.591680551168025], [-77.45527655886691, 34.590548445941906], [-77.45600912228066, 34.59008331695561], [-77.45631970961645, 34.589886106890674], [-77.45795978971758, 34.58828836818195], [-77.45972122161979, 34.58695268081116], [-77.46053443154301, 34.58609410559515], [-77.4618574745146, 34.58469727355355], [-77.46283915565279, 34.58298453539205], [-77.46314918630398, 34.58267178426628], [-77.46317384109045, 34.582386728910926], [-77.46320473011895, 34.580213731541036], [-77.46329597008963, 34.57939769252065], [-77.46345817860103, 34.57794714819704], [-77.46358087268855, 34.576362204897784], [-77.46369730752821, 34.575431176883185], [-77.46366808849135, 34.57486023837362], [-77.4634541622294, 34.574294069970705], [-77.46319535918319, 34.573518066871515], [-77.4637535178659, 34.57097047152484], [-77.46474007642794, 34.57084114283196], [-77.46798598628416, 34.571074819326334], [-77.47042067414063, 34.56787410104209], [-77.47055657211362, 34.56550831742943], [-77.47055655734991, 34.56511146890454], [-77.47074166053682, 34.56303162554228], [-77.47335576282607, 34.559984015259694], [-77.47542461395784, 34.559715506903316], [-77.47602759131254, 34.558037514521985], [-77.47817046415898, 34.55572160685839], [-77.4802543550141, 34.554478971147866], [-77.48263502771185, 34.55447653951428], [-77.484677411546, 34.55528158959506], [-77.48489099309563, 34.5555059698487], [-77.4864412510437, 34.557134563219456], [-77.48710406106498, 34.55884697211002], [-77.48679769455741, 34.56086999792378], [-77.48667903407954, 34.56258577060992], [-77.48651982046852, 34.5635970580755], [-77.48663422335724, 34.563871068993635], [-77.48666518364685, 34.564178800195336], [-77.48666527660666, 34.56612515062087], [-77.48652539631897, 34.56685651582791], [-77.48626029170102, 34.56846069257956], [-77.48454811149102, 34.57014904355158], [-77.48075546328847, 34.57141325735319], [-77.48069598043242, 34.57143308559163], [-77.48067123306461, 34.5714603016342], [-77.48067297169287, 34.57148243715938], [-77.48066506789834, 34.57152390625236], [-77.48023418899265, 34.57378469750506], [-77.48032809892851, 34.574535229386775], [-77.48068471667754, 34.57641953675377], [-77.48088697303362, 34.5773299497696], [-77.48083816902623, 34.57862983215597], [-77.48144973719536, 34.58012352004409], [-77.48159485540592, 34.58169238045286], [-77.481125425466, 34.583170505835284], [-77.48024782650813, 34.58513926798548], [-77.47968189982826, 34.58597789166326], [-77.47331805006856, 34.587832853498135], [-77.47258275994974, 34.587855831162415], [-77.47187304017916, 34.58820125452726], [-77.47171688269869, 34.588810950322], [-77.47151877123684, 34.59003440719379], [-77.47073954356406, 34.59204418757818], [-77.470941743439, 34.5928302165661], [-77.47113205904672, 34.594886334084066], [-77.47186754973191, 34.59692470075132], [-77.47237419902336, 34.59828595038195], [-77.47167856433208, 34.60063883641479], [-77.47101194627118, 34.60276421328632], [-77.46866833496618, 34.60426444323184], [-77.46795790411464, 34.604654991582365], [-77.46550814431544, 34.60579402657291], [-77.46502088001867, 34.60630165888486], [-77.46425596129163, 34.608665535429175], [-77.46432543824614, 34.609809211978295], [-77.46440438115658, 34.61010029465653], [-77.46470491172747, 34.61046792115265], [-77.4652074786168, 34.61134823348105], [-77.4656252224134, 34.61187762404083], [-77.46692801483545, 34.613262056564196], [-77.4672964717164, 34.61370638827288], [-77.46868891541075, 34.615447006301395], [-77.46958785688759, 34.61713033844227], [-77.46875532452658, 34.619198561568695], [-77.46859925072327, 34.61936040930202], [-77.46780947750261, 34.61946843420412], [-77.46530429524393, 34.61958665108448], [-77.46456989052696, 34.62000631519134], [-77.46424023938296, 34.62021508144443], [-77.46407908874512, 34.62053273962747], [-77.46171868564748, 34.623971560610784], [-77.46154795355083, 34.62420900275108], [-77.4615394416558, 34.62422543112794], [-77.46155089090414, 34.62433996806105], [-77.46045797962296, 34.62747405737677], [-77.46070170275269, 34.62888732436064], [-77.45859164992616, 34.62889272472539], [-77.45724442423752, 34.62944241954996], [-77.45404312766689, 34.63151357414924], [-77.45121761476918, 34.632687949052276], [-77.4475842886436, 34.6339367159499], [-77.44735889444516, 34.633959370426126], [-77.44666260595652, 34.63388709025695], [-77.44384629393922, 34.63484834223698], [-77.44343317318157, 34.634986434351276], [-77.44324296461886, 34.63516841645551], [-77.44321560551072, 34.63534476000977], [-77.44230673470666, 34.637318504417934], [-77.44196866541247, 34.638654141331564], [-77.43966270775925, 34.64134883722724], [-77.43827138448367, 34.64266194354447], [-77.43730862924086, 34.64334961733334], [-77.43545634884109, 34.64483259206244], [-77.43392113220361, 34.64634470790683], [-77.43174100642928, 34.64598406698259], [-77.43076338432115, 34.64480135975597], [-77.43014083670353, 34.6442825873155], [-77.42885634000945, 34.643212149402366], [-77.4283183603628, 34.642852726579505], [-77.42812186430069, 34.6426000641081], [-77.42743116230729, 34.64202443303839], [-77.4265824491624, 34.64131715305258], [-77.42613127851254, 34.640941166944245], [-77.42569286400492, 34.64057581343268], [-77.42499629897205, 34.640536622766795], [-77.42440194095, 34.64032477218641], [-77.42384578081355, 34.64027622655682], [-77.42341688958872, 34.64061947366669], [-77.42325119951292, 34.641033733381555], [-77.42270619223626, 34.64239632491005], [-77.42258450504255, 34.64270056988822], [-77.4225475050025, 34.64279306777946], [-77.4219176878376, 34.64436740728907], [-77.42178337828312, 34.645003482683], [-77.4212289076266, 34.64608927453641], [-77.42058423449285, 34.64770102850275], [-77.41996574817502, 34.6493230834147], [-77.41966467029678, 34.65091673457114], [-77.4191220946905, 34.65376795318313], [-77.41897720530183, 34.6539329371806], [-77.41634992619286, 34.65747174429427], [-77.4160576231329, 34.65785150968699], [-77.41605971773556, 34.65786768706817], [-77.41920424098794, 34.66129774228639], [-77.42043394128169, 34.66251285992311], [-77.42129732576905, 34.664656427048364], [-77.42166076270888, 34.665117384093556], [-77.42195827168285, 34.66524653372195], [-77.42247114374396, 34.66600711808993], [-77.42344996619792, 34.66708095391454], [-77.42397020855576, 34.667413535881835], [-77.42345055418227, 34.66958561697297], [-77.4234287203359, 34.670357913996405], [-77.4233322205406, 34.67167284938557], [-77.42413137105933, 34.673833499723564], [-77.42490243396298, 34.67510322402795], [-77.42588722632046, 34.67404693938161], [-77.42788662470356, 34.67364718625755], [-77.42864863106354, 34.6725793488299], [-77.42902227298137, 34.67231474115009], [-77.43004335826271, 34.67159160235849], [-77.43201359202345, 34.67011795059676], [-77.4330867156645, 34.67072472299809], [-77.4339084586376, 34.67258967354014], [-77.43455221437577, 34.673261185938415], [-77.43594207538521, 34.67376248511623], [-77.43679986078197, 34.67503503006548], [-77.4371431598273, 34.67554433304475], [-77.4373874897358, 34.67624198217253], [-77.43742428747248, 34.6763197680665], [-77.4374134785377, 34.67636772484566], [-77.4378939521269, 34.676706191995024], [-77.43801903745694, 34.67668270141779], [-77.43821106336085, 34.67664663903295], [-77.43829520325437, 34.67638642799888], [-77.43861995952699, 34.6764112835969], [-77.43924491416129, 34.67645247583309], [-77.43932308420092, 34.677035498188594], [-77.439574234098, 34.67720779450155], [-77.43941670415606, 34.6776272800804], [-77.43927181084683, 34.67798289335782], [-77.43921475607486, 34.678115706831576], [-77.43909876421868, 34.67829910550195], [-77.43892521908879, 34.67857350623308], [-77.43887461730955, 34.6788290480163], [-77.43858139377255, 34.67876010037129], [-77.43820637440902, 34.6786716627691], [-77.43797705583836, 34.67863425358811], [-77.43776135038053, 34.67850465739869], [-77.43737762895663, 34.67849142942988], [-77.43727824158132, 34.67855662804374], [-77.43728633533019, 34.678807078315224], [-77.43741976023665, 34.6790000525734], [-77.43786456385908, 34.67902320436318], [-77.43819908269035, 34.679220218203824], [-77.43841486887703, 34.67933589030568], [-77.43851852125566, 34.679434151460825], [-77.43866403471065, 34.67960026544877], [-77.43889085385605, 34.6799055641306], [-77.43921371394224, 34.68003672675189], [-77.43945985848963, 34.680153617508815], [-77.43965159855867, 34.68009912854099], [-77.44007397003648, 34.68024570553522], [-77.44051263810607, 34.680246657534816], [-77.4405687045477, 34.680102817977506], [-77.4407465684053, 34.67976941124833], [-77.44168555776238, 34.67910416546768], [-77.44175555023067, 34.679052046407904], [-77.44185425165205, 34.67903863799356], [-77.44337333665857, 34.678705659959434], [-77.44589378149443, 34.67821483255564], [-77.44671711269137, 34.677699136805586], [-77.44811296125745, 34.676513127210725], [-77.44869996837696, 34.675138092144294], [-77.44909392859721, 34.67437851276088], [-77.45319208933665, 34.67097384856725], [-77.45327199638822, 34.67090068029712], [-77.45729395045451, 34.672688522511805], [-77.45746500213411, 34.67306793384875], [-77.45829345626626, 34.67511677271478], [-77.45850424141396, 34.67529764644599], [-77.45848930962408, 34.675474177221844], [-77.45899185625382, 34.6764117842583], [-77.45991907134041, 34.67738496071969], [-77.46003404832689, 34.67820250378379], [-77.46135107088466, 34.68039436324958], [-77.46234460978377, 34.68173710948583], [-77.46273274103626, 34.68295463430174], [-77.46284088308468, 34.684138130241784], [-77.4624086521688, 34.6858896304729], [-77.46226210761544, 34.6864833858001], [-77.4632654468471, 34.68875828945233], [-77.4640962463051, 34.690242363086135], [-77.46575522715538, 34.69216758245027], [-77.46671700182183, 34.69292683657264], [-77.46827245700331, 34.69353098877819], [-77.47073526661039, 34.693659006737846], [-77.47083169263507, 34.69366867008955], [-77.47335899320976, 34.693668640564496], [-77.4765246475344, 34.69338995172438], [-77.47778062014473, 34.693060846853825], [-77.47743113860756, 34.68923501079454], [-77.47824877641817, 34.68739282158489], [-77.47861571686694, 34.68656621457171], [-77.47931357126214, 34.68493811407255], [-77.47970584257112, 34.68402287311208], [-77.48008135001763, 34.682009453782406], [-77.4803084384511, 34.68089664749172], [-77.48032446902057, 34.68033682805814], [-77.48092243874386, 34.67963296662228], [-77.48237650058383, 34.679203394154094], [-77.48486725580202, 34.6786686407226], [-77.48811761777942, 34.67866865816015], [-77.48879954248912, 34.678668661299284], [-77.48907679654384, 34.67866866070279], [-77.49176934168194, 34.679379340423466], [-77.49387602180354, 34.679780240967496], [-77.49402497804131, 34.67993732219594], [-77.49435670384825, 34.680282726050216], [-77.49719650455646, 34.68198661272475], [-77.4976949729537, 34.682429758906935], [-77.49864634213428, 34.68285646269713], [-77.49886861151288, 34.682986614512984], [-77.49908819978405, 34.68317300702237], [-77.4988535455798, 34.68361070577955], [-77.4987915206617, 34.68430791668634], [-77.49864499667174, 34.68452768305737], [-77.49745192508169, 34.68631722873671], [-77.49466441498724, 34.688618154774595], [-77.4934941412838, 34.6898895995656], [-77.49244347578457, 34.69092800147838], [-77.49177145887779, 34.69176524663241], [-77.49198071665165, 34.69233847438851], [-77.4922933766658, 34.694424446362085], [-77.49076370019353, 34.69600595032308], [-77.49065937420634, 34.69615676541927], [-77.4904047893475, 34.69823640765834], [-77.49022434183382, 34.698434408491025], [-77.48977162565635, 34.698966207531655], [-77.48916072525002, 34.699686134671104], [-77.48903300310195, 34.700301298375784], [-77.4897173090166, 34.70059456062132], [-77.49163685029687, 34.701384678339664], [-77.49314923204896, 34.701429988357056], [-77.4938904051285, 34.70143000829854], [-77.49420415464307, 34.70137054507638], [-77.49487931932002, 34.701430013491986], [-77.49675019434473, 34.701430017774236], [-77.49755169598099, 34.701430006308016], [-77.49931340582046, 34.70142997070364], [-77.49945214766421, 34.7013942318192], [-77.5009524090712, 34.70100477354498], [-77.50131855987135, 34.7005245383409], [-77.50160539882522, 34.699910148265545], [-77.50188362986329, 34.69850218800194], [-77.50124914325966, 34.697550302452285], [-77.50239600540081, 34.69650318115096], [-77.50415832754975, 34.69648680348876], [-77.50621715797705, 34.695086441909744], [-77.50985620631185, 34.69610008584035], [-77.51035405357348, 34.69623028933549], [-77.51078131416932, 34.696372719459546], [-77.51468839005587, 34.69767505707193], [-77.51500295381048, 34.69786555775517], [-77.515424714055, 34.697946507242655], [-77.51942742087245, 34.69927647835608], [-77.51962568179151, 34.699532879467455], [-77.520291476137, 34.70033150442357], [-77.52326531325178, 34.702402960842804], [-77.52707951592652, 34.703000404725344], [-77.53069958053625, 34.7078230697295], [-77.5307085374404, 34.70788326370066], [-77.52609919653186, 34.712157260296365], [-77.52588702838261, 34.71508595286604], [-77.52646761638321, 34.71680243334426], [-77.52844192069507, 34.71597673072107]], [[-77.28738321530216, 34.6271714736344], [-77.28817863863267, 34.62700199071026], [-77.29130125530997, 34.62702969725956], [-77.29249706650707, 34.627135939487175], [-77.29655415822486, 34.62581612937484], [-77.29740872391673, 34.62609120707164], [-77.29830977506577, 34.6257894906641], [-77.29972799267803, 34.624887623084085], [-77.30011331580033, 34.62427486037645], [-77.29926793482637, 34.62259170595361], [-77.29854827785289, 34.62187206685023], [-77.2960661685705, 34.61939000082726], [-77.29491161539167, 34.61823544295065], [-77.29376549409477, 34.61298180173679], [-77.29246502375611, 34.611818765384605], [-77.29321162611704, 34.6103421634293], [-77.29180120788403, 34.60769271817657], [-77.29068810470429, 34.607982842037416], [-77.28923641485483, 34.61085393940115], [-77.28674314659733, 34.60852275344654], [-77.28553150449248, 34.60850273729147], [-77.28364508511575, 34.60849872648151], [-77.28324606092798, 34.60903650510076], [-77.28319019451395, 34.60971227510019], [-77.2831463821612, 34.6116141298496], [-77.28291788096882, 34.61312526737585], [-77.28136925392826, 34.61529416790117], [-77.28060064151242, 34.61886977601462], [-77.2802447053205, 34.6195844923122], [-77.27931606992932, 34.62036944106166], [-77.27788453101044, 34.62271961434584], [-77.27798080458702, 34.625847433823886], [-77.2792030725275, 34.62713636789894], [-77.28242911942314, 34.62800488154738], [-77.28316302266435, 34.62765474757916], [-77.28485313614411, 34.62732331975123], [-77.28647298520747, 34.627403104086184]], [[-77.2998740445137, 34.65128397317938], [-77.299879051806, 34.651313477261965], [-77.29991247086825, 34.65136139569688], [-77.29995123021965, 34.65130359543939], [-77.29993206050294, 34.65125131141285], [-77.29987846953154, 34.651191790853346]], [[-77.2750527637603, 34.64232541245794], [-77.27539943054647, 34.641159383120005], [-77.27610086770068, 34.6387344521346], [-77.27636000803301, 34.63732032936752], [-77.27656499006767, 34.63708614389077], [-77.2778428495029, 34.63407386434148], [-77.27783241656101, 34.63335485889114], [-77.27669097697137, 34.628397033031476], [-77.27622640284464, 34.62754342333546], [-77.27401586037047, 34.62451392260356], [-77.27165607044165, 34.6253496473836], [-77.26994868825034, 34.623382479661515], [-77.26862204539641, 34.622981532232664], [-77.26795069468494, 34.622746491838], [-77.26622601208592, 34.6221590163279], [-77.2659702636142, 34.622075794942354], [-77.2658734155677, 34.62203966174622], [-77.26561178513006, 34.6219275413224], [-77.26314709342121, 34.62120895411238], [-77.2612989344303, 34.62213829494115], [-77.26022802807603, 34.62226715014342], [-77.26022551064155, 34.62282901156904], [-77.25969808950494, 34.623341795817055], [-77.25830418575785, 34.625814922372825], [-77.2582046928003, 34.626440798032334], [-77.25674292222244, 34.629685100208064], [-77.25234015068447, 34.62975019142394], [-77.25095040358156, 34.62979401817374], [-77.2507043126285, 34.62973874218652], [-77.25005841294251, 34.629889059496755], [-77.24616238264919, 34.63079576076116], [-77.24325767762602, 34.63111848342265], [-77.24101075379477, 34.63147412214106], [-77.23927530194366, 34.63231955046212], [-77.23903044309776, 34.632473039474014], [-77.23885481477723, 34.633149782110195], [-77.23852145630207, 34.6342057618213], [-77.23859235019002, 34.634323917666876], [-77.23892530672119, 34.63487884905306], [-77.23973063584963, 34.636298973983834], [-77.23985656198693, 34.63664532658304], [-77.24021860187011, 34.637119408396856], [-77.24202589372481, 34.640250514490404], [-77.24257345498361, 34.64150709634066], [-77.24341050652687, 34.64412548712463], [-77.24341019558891, 34.64413032990466], [-77.24068399730376, 34.646960478373245], [-77.23984252394891, 34.647620118670474], [-77.23821761036358, 34.6490146417138], [-77.23763824687143, 34.64951185622636], [-77.2355370722175, 34.65105173692285], [-77.23432463813364, 34.65182510322305], [-77.23416407274397, 34.65471434990956], [-77.23348293122173, 34.6563361611393], [-77.23350189964958, 34.65665634796211], [-77.23339320043695, 34.6572550722086], [-77.23346531584949, 34.658430128374775], [-77.23454152927542, 34.65920655375129], [-77.23532937648596, 34.66009542663711], [-77.2371683975209, 34.66116321877846], [-77.23981745764829, 34.66270124381518], [-77.24055127293578, 34.66311311911666], [-77.240812660177, 34.66321751123708], [-77.24140333022267, 34.66340812888606], [-77.24357374010013, 34.664216461963385], [-77.24453931137474, 34.6644048494764], [-77.24822815450341, 34.66512444212047], [-77.24856631502155, 34.665619786894354], [-77.24904255296039, 34.66594659114182], [-77.2491743346638, 34.665331127645565], [-77.24995504555368, 34.66488879635213], [-77.25122295996613, 34.6640400284187], [-77.25290778204052, 34.663478426421776], [-77.25351966873846, 34.662715529661234], [-77.25538973519147, 34.660455719291086], [-77.25611426787813, 34.657296808527505], [-77.2561143109592, 34.650715026471886], [-77.25611430931359, 34.65054554154065], [-77.2561454744669, 34.65047588304554], [-77.25617292847495, 34.65036499858814], [-77.25769713676405, 34.64357809714084], [-77.25674161766759, 34.640346877465845], [-77.2589380830924, 34.6385773244041], [-77.26222652849255, 34.63864128419589], [-77.26404705719547, 34.63851467855319], [-77.26693574491492, 34.63919358721559], [-77.26940744089524, 34.639708630486325], [-77.27100282833352, 34.63963872830763], [-77.27310855923051, 34.641472531563416]], [[-77.36591240489808, 34.71314506468166], [-77.36746666167285, 34.71103644200497], [-77.36797140565088, 34.71000675248547], [-77.36827423504383, 34.708975909092445], [-77.36838478804862, 34.7080881980593], [-77.3684137402349, 34.70798196202813], [-77.36833000867114, 34.70777188311461], [-77.36831314907323, 34.707020996928804], [-77.36775052017049, 34.706580639887015], [-77.36714424659678, 34.705889032780114], [-77.36618961921431, 34.705363225040216], [-77.36584995422722, 34.704878048792025], [-77.36420354218242, 34.70499846329805], [-77.36345765107298, 34.704869959261195], [-77.36208079463772, 34.704787173958174], [-77.36207369288347, 34.70592866750084], [-77.36178158727586, 34.70686242182552], [-77.36262536766336, 34.70773744375441], [-77.36288876668138, 34.70916423702779], [-77.36309629896454, 34.70968731327138], [-77.36407531508385, 34.710992702683285], [-77.36427135893072, 34.71125409460052], [-77.36442187211405, 34.711454772060925], [-77.36556740914882, 34.71298209570602], [-77.36569122589148, 34.713229944615726], [-77.36572822679622, 34.71328680992234], [-77.36580194829618, 34.71329500479101], [-77.3658788324374, 34.71325802111554], [-77.36587311046583, 34.713204957735755]], [[-77.31965279654888, 34.7077386633232], [-77.3195525005363, 34.70761671197946], [-77.31932355211808, 34.70773620763387], [-77.31079055741407, 34.70824750833199], [-77.3098330701677, 34.708095044020624], [-77.30613660226538, 34.70580131427136], [-77.30604176975348, 34.70559364786838], [-77.30580319293703, 34.70548191417059], [-77.30481798578911, 34.70508617445364], [-77.30235162567111, 34.70631937384346], [-77.30073833055835, 34.709670351799765], [-77.30009650744039, 34.71052680943356], [-77.300213222428, 34.71121885318284], [-77.3015043600148, 34.71423298056163], [-77.30235943291633, 34.71472870495177], [-77.30292250833291, 34.71538092991241], [-77.3043975992979, 34.71773586008807], [-77.30256828364968, 34.720872533038765], [-77.30555861338954, 34.72278488253312], [-77.30862481808883, 34.72252196066301], [-77.31199736905337, 34.72167154853085], [-77.31551715944356, 34.72149085920793], [-77.3167253783688, 34.72259991730756], [-77.3185694797363, 34.723593105976036], [-77.32216073078447, 34.724726510234944], [-77.32401936738202, 34.725203175926204], [-77.32763736147822, 34.72682137495115], [-77.32983011001994, 34.72726738860818], [-77.33267094393986, 34.728403683185235], [-77.33503541201132, 34.72743851919475], [-77.33477245545157, 34.72917057024159], [-77.33617907961785, 34.72971223234429], [-77.33699081168058, 34.73002482828924], [-77.34060914764709, 34.728370174427596], [-77.34118472278286, 34.72711774634702], [-77.3425048910168, 34.72169374890045], [-77.34250489746768, 34.720312071437064], [-77.34248699601503, 34.718058647232425], [-77.34248190808789, 34.71540481467105], [-77.34250478372874, 34.712514125933716], [-77.34250479753462, 34.71104927475826], [-77.34179872775474, 34.70962381443867], [-77.342074655159, 34.70867412521514], [-77.340853704265, 34.7084889863616], [-77.33881055596801, 34.70876924643722], [-77.33833476913162, 34.70891578618094], [-77.33773814807682, 34.708742287668755], [-77.33485808027646, 34.70865635454656], [-77.3336846099282, 34.7084349177189], [-77.33254650390114, 34.70803144436415], [-77.33157875131039, 34.708025633565846], [-77.33119831652681, 34.70805115910572], [-77.32871096886915, 34.70906679541744], [-77.32741076204442, 34.70807826804559], [-77.32483669134243, 34.707138837750506], [-77.32458045199527, 34.707102088798784], [-77.32449965715088, 34.707076293178964]], [[-77.30445522983682, 34.58880932297416], [-77.30324303661507, 34.590087861239816], [-77.30264225819897, 34.59245486905594], [-77.3017563157638, 34.59667947078058], [-77.30167863073328, 34.59689457900791], [-77.3016402047374, 34.59705913178758], [-77.2996544985962, 34.60034288074619], [-77.29916180347654, 34.60230714002534], [-77.29892171968399, 34.604183115677856], [-77.299768029625, 34.605789638657406], [-77.30010938259497, 34.610772105846024], [-77.30293625726004, 34.61319171193763], [-77.3048797877525, 34.61226799224653], [-77.30753039134555, 34.61327927172683], [-77.30771444530367, 34.61321735881818], [-77.31013615920799, 34.612947490986016], [-77.31221873102191, 34.6120868177824], [-77.31248406345148, 34.611889308295545], [-77.31310707803314, 34.611422062577454], [-77.31470947577581, 34.610220334305126], [-77.3155890608731, 34.60989658311816], [-77.31694564099365, 34.60846508264632], [-77.31861494663829, 34.604164631977056], [-77.31917837119326, 34.60257152698329], [-77.32533512404319, 34.600562690243585], [-77.32500989656211, 34.59734227900394], [-77.32805891639748, 34.5976405883437], [-77.32866056193927, 34.599452787961305], [-77.33436490853578, 34.59743715488362], [-77.33827080509222, 34.5961351737204], [-77.34067228711291, 34.59525808208553], [-77.34339799524156, 34.59504828332588], [-77.3438252669548, 34.595003272935], [-77.34433592667658, 34.59500327539512], [-77.34697747705798, 34.59589907348959], [-77.3479265066033, 34.59631048247955], [-77.3498636586445, 34.597054464173674], [-77.35210612468072, 34.59799844429531], [-77.35328172837322, 34.59831471591366], [-77.35630527265572, 34.59952410279889], [-77.3563358682161, 34.59962533153269], [-77.35643386493471, 34.59974583897626], [-77.35674152564474, 34.59979276728039], [-77.35760113566542, 34.59977840190818], [-77.35749520104193, 34.600201967647976], [-77.35800990167927, 34.600599584447735], [-77.35816250545756, 34.60010593325907], [-77.35810569381994, 34.59936750995077], [-77.35811975728316, 34.59926298142788], [-77.35801064216935, 34.59916427085507], [-77.3564988063422, 34.59942648019589], [-77.35643418914502, 34.599140483907085], [-77.35565043510135, 34.596221922232004], [-77.35422984797825, 34.595406723273726], [-77.35414128841354, 34.59304268013049], [-77.35446729960836, 34.590871967132415], [-77.35643920885194, 34.58982103387262], [-77.35655987194802, 34.58942800359216], [-77.35693309868172, 34.58924452246636], [-77.35702348812708, 34.5886027359918], [-77.3564398222541, 34.5886900541142], [-77.3546626760025, 34.58808978930002], [-77.35328775012307, 34.58788951592952], [-77.35130843423487, 34.58792144685831], [-77.35013525011937, 34.587862558704806], [-77.34921747446161, 34.58794699133158], [-77.34698288523447, 34.58763388973604], [-77.3441594013314, 34.58733157639814], [-77.34383070187711, 34.58715250947518], [-77.34317373142684, 34.587119766939075], [-77.34067758304097, 34.58800046189531], [-77.33819541868208, 34.58782113429679], [-77.33437414500408, 34.58596425965374], [-77.33427282993331, 34.58582021709868], [-77.33416729816567, 34.5857261094843], [-77.3304983260777, 34.583638508571994], [-77.32996138487243, 34.582934254459154], [-77.32866275863314, 34.582484685439496], [-77.32807277167058, 34.581932719129554], [-77.32670846981023, 34.58147565560681], [-77.32236950304113, 34.58062868828965], [-77.32672706532263, 34.57854952068767], [-77.32688698299367, 34.576583432279186], [-77.32692762657099, 34.575337406197825], [-77.32691709468051, 34.57488096996448], [-77.32668937345427, 34.574713058110255], [-77.32677324831978, 34.57349330564466], [-77.32692895854653, 34.57318112130805], [-77.32703083980552, 34.57203427249206], [-77.32751378801554, 34.57139894192827], [-77.32744162141127, 34.570718454173196], [-77.3274755814252, 34.570555361283056], [-77.32742875322147, 34.570418033212114], [-77.32770695525257, 34.56967303945015], [-77.3277739378697, 34.56932929180601], [-77.32784744532486, 34.56821070208068], [-77.32789475335167, 34.56794790817992], [-77.32755317678787, 34.56742313158293], [-77.32737220282695, 34.56709404668694], [-77.32665925491877, 34.56642729998675], [-77.3266400961236, 34.56629079950983], [-77.32651093665879, 34.56621871046833], [-77.32637929388468, 34.56632577637443], [-77.32619725678367, 34.5664936840781], [-77.32541256120889, 34.56712187959646], [-77.32493365588854, 34.5677290762377], [-77.32434497160482, 34.56845796020403], [-77.32412868345966, 34.56932137263992], [-77.32390367581087, 34.570219491724444], [-77.32304297257728, 34.57237565127443], [-77.32261302711494, 34.57380117646057], [-77.32249717142639, 34.57459571382563], [-77.32177065762116, 34.57929247130109], [-77.32152396851531, 34.58048560100012], [-77.32078167993703, 34.580856756038386], [-77.31861484428481, 34.58286039048642], [-77.31754430206328, 34.58247545703454], [-77.31681448718811, 34.58288311913199], [-77.31599032318621, 34.58437068452377], [-77.31606436259428, 34.58493042861509], [-77.31606611282093, 34.58767071318154], [-77.31655664636821, 34.58825596943479], [-77.31739220386842, 34.590222946634015], [-77.31563065871934, 34.58928155081149], [-77.31534243587691, 34.58864012576802], [-77.31500201627559, 34.588476251098136], [-77.31141390789782, 34.58723815349979], [-77.31008155438161, 34.587134070920605], [-77.30841542813391, 34.58717151166157], [-77.30746571603187, 34.586851983670336], [-77.30671118046395, 34.58736861238267], [-77.30520677861017, 34.58835109834428]], [[-77.25703809009534, 34.696917668228714], [-77.2585773966467, 34.69794379647975], [-77.25973979705276, 34.69916692273594], [-77.26140307210724, 34.700220456999425], [-77.25893202933746, 34.70193749674216], [-77.25831549252753, 34.70129592458805], [-77.25702402767969, 34.700818234133536], [-77.25689051143668, 34.70072425915934], [-77.25635042018729, 34.69965427542581], [-77.25520247202275, 34.69829891815758], [-77.25441570323629, 34.69727556917576], [-77.25583844187516, 34.696117891427974]], [[-77.29952409286243, 34.72620041773364], [-77.29971706949758, 34.726393392154705], [-77.30021748659024, 34.726105547213045], [-77.2999241756921, 34.72568194204075]], [[-77.47594745704001, 34.73077160172891], [-77.47423701780336, 34.72836342047264], [-77.47399794140748, 34.72801399396954], [-77.4737784636909, 34.72771780856268], [-77.47320522644276, 34.727431198875806], [-77.47030860528096, 34.7259829154968], [-77.46912175776363, 34.72608545566431], [-77.46859202415342, 34.725878571534984], [-77.46682597520129, 34.72515674003999], [-77.46624795476183, 34.72504093407525], [-77.46611578926839, 34.72552798102933], [-77.46556186851613, 34.72690992386222], [-77.46506183204868, 34.72817378891785], [-77.46455012370505, 34.72945298202801], [-77.46418772594188, 34.73064484800743], [-77.46434234106299, 34.73204585949911], [-77.46464182416386, 34.73271432470646], [-77.46489326649362, 34.733601680565926], [-77.46542602803822, 34.73423052667255], [-77.46603189348227, 34.73491212544284], [-77.46643875641625, 34.73536983311483], [-77.46748611158033, 34.736028979842054], [-77.46865586710624, 34.73657179263999], [-77.47021126922061, 34.736738824844224], [-77.4711055665764, 34.736968972192486], [-77.4752845696041, 34.73767208337503], [-77.47570379717209, 34.737485943529705], [-77.4761257003315, 34.7373455037205], [-77.4797688895846, 34.734765767584264], [-77.47841800084952, 34.73331170394258], [-77.47763252693946, 34.73212929058481]], [[-77.29105052222755, 34.70679380196555], [-77.2902640906513, 34.7079730634866], [-77.2905524887559, 34.70850426345597], [-77.29519524470888, 34.70762671561098], [-77.29757680912113, 34.708879760074126], [-77.29732495335968, 34.7070072172127], [-77.29611893938338, 34.706916783833364], [-77.29507177937259, 34.706657094200345]], [[-77.53264838303795, 34.703549412288965], [-77.5309518786786, 34.701894306448644], [-77.5304640364313, 34.700918575624385], [-77.53037044545769, 34.70027864048276], [-77.53124581116165, 34.69996196300681], [-77.5325853132947, 34.69909986181072], [-77.53446651363757, 34.69941283171321], [-77.53463934495895, 34.69947127426135], [-77.53485588445085, 34.699699729606685], [-77.53650845179715, 34.70030682207292], [-77.53581350929667, 34.701696491971724], [-77.53560914852538, 34.702105155714044], [-77.53478474984023, 34.703754115832425], [-77.53455477622143, 34.70421406409257], [-77.5309629480541, 34.70763189087749]], [[-77.43355421011921, 34.676113324627835], [-77.43355662838601, 34.6761370052601], [-77.4335572301278, 34.676148529678436], [-77.4335575297681, 34.676192319695026], [-77.43359315914586, 34.67617700400898], [-77.43360056393965, 34.676152371311176], [-77.43360302062288, 34.67612941475793], [-77.43361904906098, 34.67597964418078]], [[-77.31609072891527, 34.67421939577889], [-77.31640367995955, 34.67555879109977], [-77.31760021778203, 34.675558792425186], [-77.31920710630617, 34.6734023816953]], [[-77.42570517433052, 34.732093418757145], [-77.42569297589205, 34.73210355152774], [-77.42556200708884, 34.732322908738226], [-77.4256278249526, 34.732385609774845], [-77.42569467661666, 34.73236928281585], [-77.4258511762194, 34.73232353347213], [-77.42592216800331, 34.732309034413674], [-77.42595164775207, 34.732300737727265], [-77.42597362084068, 34.73229852590011], [-77.42606073910959, 34.73229202649539], [-77.42611253428599, 34.7322358089187], [-77.42612427270646, 34.73220887485931], [-77.42614377972698, 34.73213870567603], [-77.42614281400643, 34.73210662644851], [-77.42605892362192, 34.7320038868546], [-77.42591252602635, 34.73201197471867], [-77.42589073482951, 34.73201424124134], [-77.42571324698993, 34.732090563639034], [-77.42570947555659, 34.732091995083366]], [[-77.32444807271783, 34.67430488014283], [-77.32484444394824, 34.67432412815629], [-77.32458769684095, 34.674032007569686], [-77.32455235399233, 34.67394609464176], [-77.3225921837134, 34.67395105230867], [-77.32083833179837, 34.67332376930965], [-77.32132877539662, 34.67492294826175], [-77.32280256937307, 34.67506651275676]], [[-77.41553309004787, 34.55788055906242], [-77.41558024504042, 34.55790050296418], [-77.41633208376108, 34.55794003298581], [-77.41658549832695, 34.55829257323784], [-77.41684493734417, 34.558231754129494], [-77.41688331186617, 34.55792848455135], [-77.41653121686278, 34.557724336756166], [-77.41633201573023, 34.55749519487303], [-77.41559850677582, 34.5578005856684], [-77.41549900617024, 34.55782468517823]], [[-77.45090843111072, 34.6826629614863], [-77.45067180739088, 34.682395201866036], [-77.45066106231427, 34.682392452329395], [-77.45065776314462, 34.68240106659083], [-77.45050575538289, 34.68262220253691], [-77.45044576493277, 34.68278817206002], [-77.4504160588584, 34.682870356006845], [-77.45046096546633, 34.68292967269307], [-77.45049566737416, 34.68298258485181], [-77.45051536389484, 34.68301856324685], [-77.45061575155363, 34.683065947892274], [-77.4506313293749, 34.68306742354822], [-77.45077381381415, 34.68302224468506], [-77.45080775724053, 34.68301123682875], [-77.45081407287336, 34.68300947936466], [-77.45090526067207, 34.68279149651291], [-77.4509168589616, 34.68276590126686]], [[-77.25517363142882, 34.68197003564303], [-77.25888767508728, 34.68475467200884], [-77.25609552656931, 34.6814518270893], [-77.25560879121493, 34.68131864122967], [-77.25550756601002, 34.68082464427458], [-77.25486091768951, 34.67874228753688], [-77.25455691107679, 34.67776320718036], [-77.25503438632356, 34.67615316067806], [-77.25479816734338, 34.67435466559916], [-77.2557097637114, 34.67366785317172], [-77.25756298782588, 34.67317374708931], [-77.25819815970125, 34.67330076140274], [-77.25859176474914, 34.67332434816717], [-77.26076539753558, 34.67332785026844], [-77.2623189652008, 34.67332785791548], [-77.26312975588417, 34.6735308510117], [-77.26356799597173, 34.673443926361145], [-77.26578825697031, 34.67282397764312], [-77.26765993206746, 34.671925839098385], [-77.26864425836767, 34.671808354146336], [-77.27100654667949, 34.67329667705876], [-77.27220731549941, 34.67394019896955], [-77.27810219391208, 34.674547042193126], [-77.27502768864136, 34.67864438360828], [-77.26970670266785, 34.683491791199856], [-77.27581487109317, 34.68470042786167], [-77.27836860777822, 34.684550674614286], [-77.27904828886791, 34.68536711350071], [-77.28022672715147, 34.68595289070031], [-77.28088061847279, 34.68711040244269], [-77.28243398344723, 34.68703652120327], [-77.28350341763377, 34.689403680267084], [-77.28479346221731, 34.690406518549715], [-77.28541848981537, 34.69298021780712], [-77.28523721600504, 34.693065397123476], [-77.28235928110655, 34.69537466819949], [-77.27789981638838, 34.695704118439096], [-77.27511067086712, 34.69573476219135], [-77.27302641632943, 34.69473433477822], [-77.27167461972255, 34.69418463080585], [-77.2709478966738, 34.69358213707526], [-77.26671100716263, 34.69170270153108], [-77.26670615500741, 34.6917010921169], [-77.26670473402402, 34.69170051965303], [-77.26668303452935, 34.69170219052666], [-77.26285580964127, 34.688477680295605], [-77.25988977449377, 34.69075622046794], [-77.2598042706831, 34.69069945703176], [-77.25922173603257, 34.69077166621021], [-77.25741947740111, 34.69069536545842], [-77.25770247984867, 34.689163016838876], [-77.25749075549119, 34.68905863913494], [-77.25906193395198, 34.68496776042893], [-77.25355492302637, 34.68752168639105], [-77.25180202099111, 34.685936401463934], [-77.25049519688898, 34.685246563002856], [-77.24944400302618, 34.68519374054152], [-77.24895325304546, 34.68437582813498], [-77.24850326012184, 34.683625837923096], [-77.24841804614314, 34.68312197099598], [-77.24871412151998, 34.682459157841016], [-77.24912421061342, 34.68119328272639], [-77.25105219428877, 34.67967896720813], [-77.2526206299395, 34.68046323418652], [-77.25314219238248, 34.68072402476935], [-77.2549189994673, 34.681612427317916], [-77.25507130478405, 34.681731533604264]], [[-77.33121669076628, 34.58954858011761], [-77.33113859328387, 34.589471390736676], [-77.33122026440049, 34.58954422069223], [-77.33122742819457, 34.589554405664664]], [[-77.29901787723496, 34.67950313814266], [-77.29891199380053, 34.68339716669508], [-77.29764883965856, 34.68412634364364], [-77.29406102118023, 34.68532224782315], [-77.29249689672389, 34.68537299433353], [-77.29095531532826, 34.685670273383664], [-77.29060511556462, 34.684533727015456], [-77.28915409995145, 34.68390309233997], [-77.28843533916327, 34.68287369279503], [-77.28701657493693, 34.68239439021305], [-77.28642284165602, 34.68120696767464], [-77.28497480340705, 34.67831093415403], [-77.28368866413925, 34.67864897930525], [-77.28359616034673, 34.67603212868823], [-77.2875116902205, 34.67571025015957], [-77.29070865001808, 34.675064376495214], [-77.29514694335067, 34.67606717247306], [-77.29520451868382, 34.6760703026877], [-77.29525619812665, 34.67606016434882], [-77.29902311670881, 34.67940379979404], [-77.2990156159111, 34.67947372316635], [-77.29901394639481, 34.679484409413234]], [[-77.25064791326767, 34.63260762924874], [-77.25243028353754, 34.63299382680094], [-77.2538724300986, 34.6336414806113], [-77.25354668236139, 34.63446201989327], [-77.25224626682324, 34.63620434538936], [-77.25112232079198, 34.63719581124029], [-77.25237024337437, 34.637841502395275], [-77.25279355503218, 34.638940676795606], [-77.25327178809393, 34.64244511554343], [-77.25327793283425, 34.644181509362205], [-77.25272468168637, 34.64592671454121], [-77.25212504849006, 34.64671613947755], [-77.25087732278543, 34.649497198785866], [-77.24721358215322, 34.64996005103942], [-77.24625183452862, 34.64600911757605], [-77.24757203075426, 34.644457900284706], [-77.24703049747704, 34.64277873191374], [-77.24655843391992, 34.64166516189369], [-77.24599905596128, 34.64056338056563], [-77.2461261992951, 34.640177923228975], [-77.24577303127438, 34.63947765968333], [-77.24459504956351, 34.636682057366784], [-77.24375513736689, 34.6351867976597], [-77.24310036745608, 34.6346790086336], [-77.24286190327554, 34.63405145490879], [-77.2419186645492, 34.63376262640401], [-77.24184348828511, 34.633637336933745], [-77.2420332266925, 34.63353641118893], [-77.24319613009722, 34.63341724412338], [-77.24508811293708, 34.63295015433386], [-77.24574099509356, 34.6328776197483], [-77.24819704794776, 34.63260469586885], [-77.24939433777858, 34.6323260560261]], [[-77.30778468360428, 34.59442121561631], [-77.30698882564111, 34.59295048461672], [-77.30675497836668, 34.59187048401829], [-77.30685589823986, 34.59105383398286], [-77.3073422158337, 34.59070829612203], [-77.30812091765974, 34.59012190196441], [-77.30925798504066, 34.59062932995673], [-77.3096286845192, 34.59077171365569], [-77.31109493390703, 34.59219068041174], [-77.31134903676252, 34.59235291496839], [-77.3118795340716, 34.59549467733176], [-77.3119214413852, 34.59565032561162], [-77.31194767945132, 34.59581365297575], [-77.31183522572114, 34.595884072776315], [-77.31170138883869, 34.59584727070573], [-77.31155257982807, 34.595700883142804]], [[-77.3092101934652, 34.60952536836829], [-77.30724606507037, 34.60925314314396], [-77.30656053771604, 34.6078809692225], [-77.30601424694672, 34.60710191408162], [-77.30554616830837, 34.60585047824627], [-77.30713060389634, 34.60489290908245], [-77.3084505562403, 34.604538755354824], [-77.30962638175515, 34.606092472097686], [-77.31050004115862, 34.60740296179246], [-77.31058926166013, 34.607894006856526], [-77.30958355505496, 34.60947420611518], [-77.30949428024554, 34.609540660946294], [-77.30945630883613, 34.6095563535502], [-77.30940920242956, 34.60956160293321]], [[-77.44784312942195, 34.55506611102007], [-77.44842281324199, 34.55503546540291], [-77.4509941558658, 34.55490000587062], [-77.45234370695454, 34.55509282657429], [-77.45376597715448, 34.55529603777468], [-77.4541455374469, 34.555350263874104], [-77.4548014258994, 34.55544395386434], [-77.45729653580712, 34.555158163371814], [-77.45956428550765, 34.554999387629636], [-77.4604479573983, 34.55561402253794], [-77.46159974490132, 34.55499451944128], [-77.46632404125016, 34.553068065743666], [-77.46666465329403, 34.55292869207432], [-77.46674810190837, 34.55284306668559], [-77.46705917711517, 34.55262601654018], [-77.4678553879893, 34.55284616547198], [-77.46707065888471, 34.55330723029152], [-77.46913353985694, 34.55605785344884], [-77.4693465435434, 34.55662585206659], [-77.4703950192141, 34.55927190283101], [-77.46852150735, 34.56144796529256], [-77.46852151211883, 34.56443508713639], [-77.46852157365922, 34.5660892909442], [-77.46845849012294, 34.56718748242613], [-77.46732831344457, 34.56867324872234], [-77.4651843465442, 34.56851890227049], [-77.46103281465584, 34.567421989774076], [-77.46045567419911, 34.566894585220965], [-77.45972131626885, 34.56682045095991], [-77.45979510559111, 34.56760123517748], [-77.46017259887002, 34.567852380480105], [-77.45979985822208, 34.57099740085333], [-77.46009274024088, 34.571349459289586], [-77.46045942572034, 34.572327248256585], [-77.46131453143789, 34.57325396232669], [-77.46112735297915, 34.574108298172874], [-77.46128726245959, 34.57458777573017], [-77.46120680415765, 34.577023273243356], [-77.46120715660665, 34.577037245983796], [-77.46120416176089, 34.57704054112475], [-77.46062445983483, 34.579310803323246], [-77.46100277919521, 34.58005215180188], [-77.4611140970623, 34.580815048988754], [-77.46111415061768, 34.58195968143155], [-77.46111418027215, 34.58297452518257], [-77.46085431174937, 34.5834132411042], [-77.4603289823827, 34.58416242258613], [-77.4596627822422, 34.584865773464806], [-77.4592648278117, 34.5852859224624], [-77.458425163615, 34.58597372072032], [-77.4567900601034, 34.5871625197843], [-77.45614351179279, 34.587652795004146], [-77.45579990478296, 34.587987531228194], [-77.45465791832683, 34.58871264522101], [-77.45182966869149, 34.58862065420219], [-77.45312711591771, 34.58968461934716], [-77.45221783332829, 34.59026194948393], [-77.45154852613169, 34.59068689614835], [-77.45122488416514, 34.590227268870194], [-77.4517228727789, 34.588644936908295], [-77.45174266606818, 34.588602531919214], [-77.45175824897728, 34.5885830328337], [-77.45458632871026, 34.587107830434675], [-77.45376477152881, 34.585071558820076], [-77.45438485152899, 34.58281858182214], [-77.45458936613669, 34.58215377899843], [-77.4545843593645, 34.58188363868011], [-77.45457373433847, 34.58150040680918], [-77.45416186387865, 34.57860736294173], [-77.45416186395737, 34.578605131655145], [-77.45416203933368, 34.57521520469797], [-77.45416177450058, 34.57521055546832], [-77.45415996850868, 34.575208356454716], [-77.45415768378801, 34.575205574381364], [-77.45179251281357, 34.57215668534242], [-77.45188549701201, 34.5711925875183], [-77.45100349074987, 34.571209825617544], [-77.44926649792959, 34.56912547784521], [-77.44863640965497, 34.56836932106008], [-77.44784962265851, 34.56724525641906], [-77.44691844304545, 34.56606848783097], [-77.44639574687051, 34.56431264359129], [-77.44572275005214, 34.56284469343518], [-77.44439285416014, 34.55996541666036], [-77.44420516943583, 34.5596675340968], [-77.44401169745854, 34.55896015281844], [-77.44469364939985, 34.55841031760787], [-77.44626588457837, 34.555972546433864], [-77.4472129714679, 34.55515613348814]], [[-77.23741632107196, 34.654573654256474], [-77.2384661025976, 34.653904037932335], [-77.24154613582763, 34.65364768891942], [-77.24549754218575, 34.65334841189941], [-77.24669184342059, 34.65418464894038], [-77.24994018858274, 34.65813957467681], [-77.24885040633414, 34.659684561198404], [-77.2479353814246, 34.660407217582055], [-77.24598946779773, 34.66235299602486], [-77.24561562381453, 34.66228006926409], [-77.24308830718442, 34.66178697786104], [-77.24151913799494, 34.66120256688275], [-77.23981528508705, 34.66017330662964], [-77.23889124493658, 34.659727257046], [-77.23729912530493, 34.65873215731815], [-77.23708739669975, 34.65825447622085], [-77.23726208207529, 34.65628069053579], [-77.2372788778593, 34.65524383182866], [-77.23739435741918, 34.65496887274761]], [[-77.32737211929123, 34.71367229553603], [-77.32795639931453, 34.71396441064618], [-77.32881140561847, 34.714391925186206], [-77.33044092361365, 34.71520668216124], [-77.33134099813444, 34.716498137511216], [-77.3318099008379, 34.717306835692696], [-77.33252773610691, 34.717781421109756], [-77.33270771551926, 34.71960383299751], [-77.32972554253605, 34.71890976207589], [-77.32557898153848, 34.719839737743136], [-77.32420299329445, 34.718922457279014], [-77.32275990108464, 34.717960372959354], [-77.32194783504275, 34.715852393275746], [-77.32145255254035, 34.71540041266064], [-77.32237109586711, 34.714396841308776], [-77.32578725711194, 34.71346813400321]], [[-77.351039413244, 34.59179078595169], [-77.35013183822882, 34.59339162448164], [-77.34970480524663, 34.59322082032364], [-77.34817766378701, 34.592610002437866], [-77.34725566430966, 34.59093309628568], [-77.34955191795645, 34.59093296684515], [-77.35013358521613, 34.59055571917313]], [[-77.3265076117673, 34.56984840218251], [-77.32650512763502, 34.569845734901264], [-77.32650546970744, 34.56984337261704], [-77.32650019977811, 34.56899737123436], [-77.32650842056344, 34.56896455186894], [-77.32666070391443, 34.56881036548023], [-77.32651362885987, 34.56899544164218], [-77.3265089846594, 34.569843705962704], [-77.32650868901347, 34.56984522318617], [-77.32650836825567, 34.569846082139435]], [[-77.45019193085474, 34.591260443606835], [-77.45033676232303, 34.591070465361845], [-77.45082203639774, 34.59108070486127], [-77.4504012156117, 34.59130593305846], [-77.45006221498659, 34.591590290212416]], [[-77.32690284184245, 34.56847976535313], [-77.32674368497491, 34.56811331286334], [-77.32690328075549, 34.56799805890835], [-77.32696221653293, 34.56808191162569]]]]}, "type": "Feature", "id": "demo15", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5397748212877, 34.70991896828104], [-77.53919987884883, 34.710786247812024], [-77.53480311372294, 34.711691829927105], [-77.5331663376498, 34.71173748022372], [-77.53041425669, 34.71515174620955], [-77.5342711382839, 34.713538497966894], [-77.54010000002032, 34.711099999987155]], [[-77.53549704160116, 34.69437967925123], [-77.53459440921435, 34.694321818571616], [-77.53014171687715, 34.69398926146026], [-77.52700058961042, 34.69410656373873], [-77.52214668247758, 34.69493396052047], [-77.5188202375056, 34.69498230232841], [-77.51767257308444, 34.694599746494404], [-77.51649065776456, 34.694205773002196], [-77.51532074043885, 34.6938157614926], [-77.514184769456, 34.69343712750825], [-77.51296883489856, 34.6930318158917], [-77.51171646302579, 34.692614360935394], [-77.50941417312781, 34.69139954740028], [-77.50851872989544, 34.69115369331781], [-77.50750040202463, 34.6908634653319], [-77.50783455847073, 34.68994092499592], [-77.5058466433411, 34.687100829832985], [-77.50546954551632, 34.68553411189585], [-77.50496307315305, 34.68452110819863], [-77.50464387093174, 34.68387372239519], [-77.50431617200759, 34.68290882911305], [-77.50425419096898, 34.68172768863151], [-77.50405521133517, 34.68002878284315], [-77.50389474210874, 34.6786584532653], [-77.50387642844586, 34.677125282621375], [-77.50380292299057, 34.67614953121929], [-77.50359522655954, 34.675212947503546], [-77.50339462846269, 34.674308297045954], [-77.50285538622819, 34.67334186788209], [-77.5025579702103, 34.67282142519749], [-77.50193516907558, 34.67177043060347], [-77.50167084959796, 34.67024626175779], [-77.50000346440913, 34.669367395145144], [-77.4996748941821, 34.669027645117666], [-77.49900617171691, 34.668841719296914], [-77.49546401939087, 34.670518217515756], [-77.49528207923964, 34.67060791546553], [-77.49510737313113, 34.67063681609187], [-77.48905788443729, 34.67103343707073], [-77.48686872506589, 34.67062587736416], [-77.48089770369334, 34.66891112521178], [-77.47941652039158, 34.66818559524347], [-77.47761130417481, 34.66756724542848], [-77.46919950965045, 34.66604161260525], [-77.46777246016882, 34.66083810465854], [-77.46766375039186, 34.66060202871482], [-77.46691497379138, 34.65812845361201], [-77.46648794964786, 34.65770161443938], [-77.4642830896914, 34.65741802835545], [-77.4623867478646, 34.65646558651296], [-77.4590589891276, 34.65648766954895], [-77.45766209038415, 34.65620827417626], [-77.45638279611263, 34.65710670000643], [-77.45649545314461, 34.65814549575997], [-77.45604346461946, 34.66017347716533], [-77.45603845041438, 34.66194126348326], [-77.45359372949876, 34.663167448908425], [-77.45148463460946, 34.66437893843515], [-77.44922821495967, 34.66451528012974], [-77.44769850285832, 34.665920629888575], [-77.44754633056252, 34.66660471319541], [-77.44671888823846, 34.66859301791638], [-77.44679677782753, 34.66977236997022], [-77.44544272247155, 34.67304838390048], [-77.44542648065172, 34.67309631734466], [-77.44542444226536, 34.67311751509488], [-77.44537663154934, 34.6732082699124], [-77.44433479972136, 34.67519220400568], [-77.44329583451689, 34.67575040799463], [-77.4421724542495, 34.67647466995445], [-77.44126378314209, 34.67578007372767], [-77.44053919359982, 34.67546084893444], [-77.43961308400525, 34.674779996394626], [-77.43961094939178, 34.674773997935766], [-77.43959722696367, 34.674756473527076], [-77.43893106181764, 34.673768255535265], [-77.4385204229444, 34.673159059186055], [-77.43858909715232, 34.67211113174609], [-77.43652360190131, 34.669983040132564], [-77.43651373984365, 34.66974844758349], [-77.43647259024412, 34.669457547153314], [-77.4346798719787, 34.6643827676188], [-77.43468103221335, 34.66436268093987], [-77.43466670711366, 34.664349936936], [-77.4346198144589, 34.66426621984872], [-77.43197198300578, 34.66032832244234], [-77.43111455101729, 34.65947080650491], [-77.43017913244756, 34.65785277169662], [-77.43247197221845, 34.65642145785155], [-77.43409662209203, 34.65426780422918], [-77.4358905889349, 34.65353850955614], [-77.43634894279222, 34.652071661190895], [-77.43664740434683, 34.65020472871695], [-77.43762802277902, 34.64875321931741], [-77.4385432004674, 34.64785878175088], [-77.44066497984004, 34.6466548103469], [-77.44424673582449, 34.645330503311115], [-77.4464326024188, 34.64593890010098], [-77.44913545492622, 34.64466238434721], [-77.4501494385741, 34.64414749635998], [-77.45177291510474, 34.64176731796842], [-77.45226653617006, 34.64080233771938], [-77.45314860895937, 34.63973703053953], [-77.45558723481174, 34.637008635439415], [-77.45645550081778, 34.63645088370783], [-77.45792918951935, 34.63592098192996], [-77.46035394247073, 34.63532422401185], [-77.46440103185505, 34.63532422933182], [-77.46478019845367, 34.63526833452293], [-77.4673175624243, 34.63437986556947], [-77.46836015368966, 34.63404260195527], [-77.46824168245291, 34.633403424676715], [-77.46788357866158, 34.63139861909402], [-77.46829266793185, 34.6311474503184], [-77.46791773774304, 34.6310238631024], [-77.4672753015846, 34.62987790490078], [-77.46682333141422, 34.628612447524375], [-77.46606916611772, 34.62596780500182], [-77.46604748837893, 34.62587958130157], [-77.46602620636877, 34.62579443982311], [-77.466033611315, 34.62534753409624], [-77.46609427669301, 34.62457954718045], [-77.46745940722161, 34.624267599572136], [-77.46788230894458, 34.62441850356626], [-77.46953738243087, 34.62488387563328], [-77.46983761749514, 34.62501744524361], [-77.47018802292746, 34.625156877099144], [-77.4721336727367, 34.62586773428302], [-77.47485757753137, 34.62684499570372], [-77.47750399921188, 34.624852621741695], [-77.47762503625665, 34.62257584039168], [-77.47776126708882, 34.6199879410416], [-77.47769723670524, 34.616646634672406], [-77.47760537453776, 34.61185688685112], [-77.47668729956527, 34.61102631270662], [-77.47727611121633, 34.609909347948026], [-77.47816720085865, 34.608231830731754], [-77.47886974130785, 34.605512012033536], [-77.47946438729774, 34.60432496369307], [-77.47988227282892, 34.601753342386935], [-77.48010499624462, 34.60098942747276], [-77.4796693758702, 34.59837018091569], [-77.47966776848386, 34.59835929661628], [-77.47966892182684, 34.598358000392004], [-77.47966339610171, 34.59834836684511], [-77.47868444154278, 34.595901234746194], [-77.47852977416817, 34.59548407959003], [-77.478703066017, 34.594844905216696], [-77.48014202843656, 34.59411756567117], [-77.4823948470405, 34.59297202063985], [-77.48407492100296, 34.592468535309465], [-77.48988981965154, 34.58963425197998], [-77.49005210315477, 34.5894842662087], [-77.48990609944015, 34.58948596336576], [-77.48944663954158, 34.58670279885137], [-77.48930354653069, 34.58656409405816], [-77.48883569783357, 34.584224486827154], [-77.4887786445668, 34.58393920073746], [-77.48867690035335, 34.583671770166866], [-77.48789080744243, 34.581416920210835], [-77.48797763624871, 34.58121359596927], [-77.48708348742545, 34.579398801821554], [-77.48678939739777, 34.578663639672136], [-77.48678353683071, 34.578600281589175], [-77.48676071992998, 34.578544553822425], [-77.48676374314769, 34.57823243639821], [-77.4887263424243, 34.575090953508266], [-77.4895811346868, 34.57457647112723], [-77.49125896100443, 34.57141303231954], [-77.49218737583747, 34.57053352769256], [-77.49217663620824, 34.56730593083624], [-77.49236155499854, 34.5656401558046], [-77.49238033191631, 34.56518386049658], [-77.49242080944695, 34.5644504608498], [-77.49365061728534, 34.55891200973107], [-77.49215281264877, 34.55565844797621], [-77.49535319193812, 34.54822663681411], [-77.49494164151278, 34.54672542351464], [-77.49419067587529, 34.54398560630612], [-77.49343976490282, 34.54124578122832], [-77.49269886150402, 34.53854226592972], [-77.49172672941532, 34.54064650944537], [-77.4913851972225, 34.5414162315684], [-77.49080333129098, 34.54081528778177], [-77.48892862835817, 34.54011955755787], [-77.48855977584431, 34.539903630007046], [-77.48836675183895, 34.53968131620844], [-77.4856396533691, 34.53804503756888], [-77.4848907580434, 34.53759567571977], [-77.48277782166907, 34.537095148780054], [-77.48249136633963, 34.53699792094707], [-77.48194704844154, 34.537215645440355], [-77.47983762426853, 34.53805940472333], [-77.4793391366417, 34.538420103549484], [-77.47760829846939, 34.53971228181207], [-77.47578653134067, 34.54106986251359], [-77.47445253017301, 34.54357590763947], [-77.47500000080419, 34.54501683741201], [-77.47395812875719, 34.54615280152499], [-77.47304540395422, 34.547148734106045], [-77.47196586645991, 34.54885359004567], [-77.4730480953797, 34.55040832290724], [-77.47337035159285, 34.55170065890236], [-77.47616758433543, 34.55160644690758], [-77.47619998281127, 34.55154530677401], [-77.47853384450858, 34.55041854873415], [-77.47934889380977, 34.549290158802016], [-77.48015062824477, 34.55020042608816], [-77.48101050819712, 34.550705744977094], [-77.48585304791035, 34.55053646936467], [-77.48703009858602, 34.553866667707744], [-77.4877995556574, 34.55467502860383], [-77.48814964354592, 34.555042806634006], [-77.49001639177527, 34.55986566108964], [-77.49000296889088, 34.559954296240456], [-77.48999255251718, 34.560104911928164], [-77.4893734743719, 34.564595130992885], [-77.4893557259587, 34.566047984226365], [-77.48899952671583, 34.5686394084435], [-77.48900212287673, 34.56941963656703], [-77.48617297892122, 34.57209973721893], [-77.48531469617754, 34.57294607482761], [-77.4851121496007, 34.57301359023222], [-77.48490930580824, 34.573226863367054], [-77.48251403071995, 34.574582126839914], [-77.48280511573729, 34.57622235865998], [-77.48329081804158, 34.57664345652893], [-77.48328418049795, 34.57732871747463], [-77.48411663701303, 34.57936190081663], [-77.4843304551508, 34.58167347018978], [-77.4845393229873, 34.5821955950943], [-77.48474664046532, 34.58279462398033], [-77.4840898856784, 34.585278237776265], [-77.48356358084649, 34.587335349070784], [-77.4812528768132, 34.5888060437651], [-77.47743228110531, 34.59011581987048], [-77.47738607357704, 34.59012954719115], [-77.47711429826148, 34.590224420712524], [-77.47371956373173, 34.59132449879614], [-77.4743679091611, 34.59386549747984], [-77.47445176446665, 34.59393880610645], [-77.47442226795178, 34.594047601854975], [-77.47622521419238, 34.59891034891144], [-77.47637987209185, 34.59929695348534], [-77.47644871828705, 34.599710903727996], [-77.47613057474064, 34.600802098379305], [-77.47499735778084, 34.60415795987897], [-77.47115465295965, 34.606696881896106], [-77.47078130765182, 34.60763826554309], [-77.46980588967665, 34.608415701924834], [-77.46836188535416, 34.60853026369516], [-77.46775217217535, 34.60859522967689], [-77.467278122606, 34.608890500163156], [-77.4676330038636, 34.609179040340976], [-77.46774481869447, 34.609285071167996], [-77.46933099398757, 34.61017159761806], [-77.46976671230809, 34.612238169322964], [-77.47027856543555, 34.61285542628433], [-77.47054023753033, 34.6131825283191], [-77.47171549882307, 34.61538328905715], [-77.47344427880984, 34.61694730071366], [-77.4734616973895, 34.61785551577498], [-77.47347383860465, 34.618489082485], [-77.47332771973608, 34.621264819218254], [-77.47068545808386, 34.62246882800876], [-77.46937730402024, 34.622199172219354], [-77.46919356917029, 34.622146673692825], [-77.46867596194262, 34.62217542589699], [-77.46518980808055, 34.62226852108361], [-77.46437426213184, 34.62340272478272], [-77.46357853276929, 34.62493852166304], [-77.46361566208735, 34.62530995899158], [-77.46391043320747, 34.626489229594696], [-77.46431069015286, 34.62811818864452], [-77.46463006080106, 34.6292381303875], [-77.46504753015736, 34.630406989995926], [-77.46363350950894, 34.63193989388802], [-77.46116789935635, 34.631961159189025], [-77.45943361146394, 34.63196559783961], [-77.45754219775844, 34.63273733217767], [-77.45562383449379, 34.633415339747714], [-77.45236732788025, 34.63540494361173], [-77.45201471064846, 34.63559794360291], [-77.45179985138003, 34.635684051756044], [-77.4513768578127, 34.6359720726435], [-77.44844697491199, 34.639466444681474], [-77.44515044090508, 34.641257379019045], [-77.44379785148912, 34.642795422941084], [-77.43835031405719, 34.64522196341851], [-77.43790778287708, 34.64553805319896], [-77.43777546533315, 34.64564398941353], [-77.43761366300643, 34.6458033570597], [-77.43457940601309, 34.648749329692976], [-77.43326906857565, 34.649022816718826], [-77.43277040771383, 34.649826317091346], [-77.431815962331, 34.649549118606565], [-77.43027625010009, 34.648400245726414], [-77.42991683035541, 34.64821275266669], [-77.4295581135507, 34.6480986526904], [-77.4270642078265, 34.64685164352842], [-77.42568569518966, 34.64624795042015], [-77.42563144410163, 34.64613523448166], [-77.4254382026258, 34.6460962039364], [-77.42540154523503, 34.64626980933895], [-77.42536623621773, 34.64633895320235], [-77.42479598462151, 34.64715581239975], [-77.42415569145204, 34.648311651586404], [-77.4239660192287, 34.64840425623113], [-77.42341622432443, 34.64984825378001], [-77.42332778542362, 34.650499767569926], [-77.42332772918158, 34.652605508026], [-77.42344921410647, 34.65279269751983], [-77.4233277156012, 34.653760043695655], [-77.42325258679284, 34.6554291691787], [-77.42288454242183, 34.655907339044965], [-77.42298466938124, 34.656680656111355], [-77.42261584433308, 34.65893771603129], [-77.42377882313818, 34.66056900801324], [-77.42455758691744, 34.66133853666004], [-77.4247555850563, 34.6618301163763], [-77.42599604736426, 34.663509980010986], [-77.42628615566181, 34.66380010173707], [-77.42784969950458, 34.66536367544835], [-77.42838297249641, 34.66615671086739], [-77.42958257997947, 34.66755517130174], [-77.43079230961972, 34.669082546305866], [-77.43157067473858, 34.668500362023195], [-77.43469456590063, 34.67026669245275], [-77.43508492693866, 34.671152619139484], [-77.4365584448768, 34.672689670393346], [-77.43676063822487, 34.67276259808789], [-77.43707391333345, 34.67322734913013], [-77.43811252052728, 34.67476815725126], [-77.43835723633373, 34.67513117918996], [-77.43872690633484, 34.675708933834315], [-77.43875337702175, 34.67576488954996], [-77.43880573860405, 34.67576889710438], [-77.43891989833931, 34.675776421642205], [-77.43985953857259, 34.67571403390529], [-77.44015445299719, 34.67593084759149], [-77.44038229456906, 34.67603122535631], [-77.44100091488495, 34.67650410419412], [-77.44042695647578, 34.676880328960934], [-77.44042715680466, 34.677421565056235], [-77.4399983011888, 34.67767503716346], [-77.43993781033633, 34.677809497739666], [-77.43969898357173, 34.6779334651355], [-77.43964090653824, 34.678072766367706], [-77.43965482429627, 34.6782695880328], [-77.43964569858409, 34.67840323392029], [-77.43979880303056, 34.67831993323589], [-77.43991860086582, 34.67829246090162], [-77.44000219076204, 34.678278307440685], [-77.44033308207325, 34.678222280268315], [-77.44067590627846, 34.67816423150256], [-77.4411217122223, 34.67801599047398], [-77.44207995009225, 34.67774026202784], [-77.44269959995933, 34.67760443697941], [-77.44362981285326, 34.6774232888054], [-77.44609132725483, 34.67588151251867], [-77.44617607925166, 34.67583597788239], [-77.44619610219057, 34.675797848704434], [-77.44726405876185, 34.67373876316177], [-77.44936300760263, 34.67199500140698], [-77.45010959155276, 34.66977851823399], [-77.45261966602595, 34.66852059889371], [-77.45622092348123, 34.66727242142532], [-77.45878415636977, 34.66930948442273], [-77.45981325312526, 34.670198024945975], [-77.46090444941369, 34.67355187017199], [-77.46141819085041, 34.674466879069], [-77.4618962275558, 34.674968611704834], [-77.46247079051052, 34.679054037605454], [-77.46299460211638, 34.67992579292948], [-77.46338975647663, 34.68045983546211], [-77.46406406758906, 34.682575074850234], [-77.46412316915725, 34.68322187659877], [-77.46441985777611, 34.68395074287608], [-77.46443645642171, 34.68469563681216], [-77.46420283048383, 34.68567273464267], [-77.46491664549356, 34.6874026891537], [-77.46613372028898, 34.68843781418508], [-77.46684772166192, 34.68959027103138], [-77.46833445452305, 34.68959030858154], [-77.4694146766498, 34.68957671887745], [-77.4733315022329, 34.68900257889417], [-77.47474609230244, 34.68886555547096], [-77.47514699998864, 34.68876050487424], [-77.47511649943279, 34.688426609907], [-77.47518785773089, 34.688265835191025], [-77.47545408854288, 34.687666096849156], [-77.47636431858129, 34.68497598734281], [-77.47703777268472, 34.684143248414586], [-77.47734926832834, 34.68195185162158], [-77.47739500733728, 34.68172771578122], [-77.47746345127123, 34.67933751720473], [-77.48001653588322, 34.67633231856191], [-77.48165664113219, 34.67584778342005], [-77.48598468211944, 34.67479156457871], [-77.48799480491142, 34.67472775018167], [-77.49186798352355, 34.674916283222075], [-77.49316079726633, 34.67491114015433], [-77.49632524285065, 34.67440627146881], [-77.49729919052959, 34.67387908633885], [-77.49925890380464, 34.673196654041476], [-77.50025482084973, 34.67338762103147], [-77.50043062597285, 34.67367722470365], [-77.50099795487455, 34.67472968628457], [-77.50112445821523, 34.67495640539139], [-77.50118650046666, 34.67523620142146], [-77.50123264340391, 34.676402786002555], [-77.50132226838211, 34.67727336030247], [-77.50132141995924, 34.67776023024416], [-77.50122906834626, 34.67788106233494], [-77.50132492473499, 34.67799001271296], [-77.50133539153187, 34.68080522085856], [-77.50179721578188, 34.68107263004814], [-77.50203352240462, 34.68296262932516], [-77.50218157755084, 34.68351820224396], [-77.50231835081846, 34.68409555135936], [-77.50328041496147, 34.68587474084887], [-77.50294398680398, 34.68625508980703], [-77.50331208719165, 34.68836266910715], [-77.50224308748327, 34.689409686561085], [-77.50145972903721, 34.690193091878676], [-77.50083395947973, 34.69081886439146], [-77.50028101869827, 34.69144699422712], [-77.50101318397279, 34.691471122936], [-77.50228083955375, 34.69146215694951], [-77.50276764136717, 34.69221449035836], [-77.50559208958245, 34.692812228728776], [-77.50685191661651, 34.69319244482688], [-77.50825098822816, 34.69360376214331], [-77.51016541774028, 34.69413238795985], [-77.51166144841959, 34.69463106206412], [-77.51320239872985, 34.695144712290976], [-77.51480078617544, 34.69567749942866], [-77.51636528666971, 34.69619900186874], [-77.51943641687826, 34.697222714686376], [-77.52700319363746, 34.697112749942676], [-77.52734703912729, 34.697408982212636], [-77.5278512272183, 34.69719841797819], [-77.52825002118871, 34.69706265480276], [-77.53388701877206, 34.696729835757466], [-77.53629499526672, 34.69727881933787], [-77.53557524433725, 34.69466382640092]], [[-77.50487503875539, 34.5829467482578], [-77.50169180019711, 34.58237689025903], [-77.49930314219858, 34.582929729424905], [-77.50006390925506, 34.58437009235065], [-77.50282759772578, 34.5858344637224], [-77.50604728353369, 34.587218862814424], [-77.50546090592917, 34.585082037341905]], [[-77.25507130478405, 34.681731533604264], [-77.2549189994673, 34.68161242731792], [-77.25314219238248, 34.68072402476935], [-77.2526206299395, 34.68046323418652], [-77.25105219428877, 34.67967896720813], [-77.24912421061342, 34.68119328272639], [-77.24871412151998, 34.682459157841016], [-77.24841804614314, 34.68312197099598], [-77.24850326012184, 34.683625837923096], [-77.24895325304546, 34.68437582813498], [-77.24944400302618, 34.68519374054152], [-77.25049519688898, 34.685246563002856], [-77.25180202099111, 34.685936401463934], [-77.25355492302637, 34.68752168639105], [-77.25906193395197, 34.68496776042893], [-77.25749075549119, 34.68905863913494], [-77.25770247984867, 34.689163016838876], [-77.25741947740111, 34.690695365458424], [-77.25922173603257, 34.69077166621021], [-77.2598042706831, 34.69069945703176], [-77.25988977449376, 34.69075622046794], [-77.26285580964125, 34.688477680295605], [-77.26668303452935, 34.69170219052666], [-77.26670473402402, 34.69170051965303], [-77.26670615500741, 34.6917010921169], [-77.26671100716263, 34.69170270153108], [-77.2709478966738, 34.69358213707527], [-77.27167461972255, 34.69418463080585], [-77.27302641632942, 34.69473433477822], [-77.27511067086712, 34.69573476219135], [-77.27789981638838, 34.695704118439096], [-77.28235928110655, 34.69537466819949], [-77.28523721600504, 34.693065397123476], [-77.28541848981538, 34.69298021780712], [-77.28479346221731, 34.690406518549715], [-77.28350341763377, 34.689403680267084], [-77.28243398344723, 34.68703652120327], [-77.28088061847279, 34.68711040244269], [-77.28022672715147, 34.68595289070031], [-77.27904828886791, 34.68536711350071], [-77.27836860777822, 34.68455067461428], [-77.27581487109317, 34.68470042786167], [-77.26970670266785, 34.683491791199856], [-77.27502768864136, 34.67864438360828], [-77.27810219391208, 34.67454704219312], [-77.27220731549941, 34.67394019896955], [-77.27100654667949, 34.67329667705876], [-77.26864425836769, 34.671808354146336], [-77.26765993206746, 34.671925839098385], [-77.26578825697031, 34.67282397764312], [-77.26356799597173, 34.673443926361145], [-77.26312975588417, 34.6735308510117], [-77.2623189652008, 34.67332785791548], [-77.26076539753558, 34.67332785026845], [-77.25859176474916, 34.67332434816717], [-77.25819815970125, 34.67330076140274], [-77.25756298782588, 34.67317374708931], [-77.25570976371141, 34.67366785317173], [-77.25479816734338, 34.67435466559916], [-77.25503438632357, 34.67615316067807], [-77.25455691107679, 34.67776320718036], [-77.25486091768951, 34.67874228753687], [-77.25550756601002, 34.68082464427458], [-77.25560879121491, 34.68131864122967], [-77.25609552656931, 34.6814518270893], [-77.25888767508728, 34.68475467200884], [-77.25517363142882, 34.68197003564303]], [[-77.33122742819457, 34.589554405664664], [-77.33122026440049, 34.589544220692225], [-77.33113859328387, 34.589471390736676], [-77.33121669076628, 34.58954858011761]], [[-77.29901394639481, 34.679484409413234], [-77.2990156159111, 34.67947372316635], [-77.29902311670881, 34.67940379979404], [-77.29525619812665, 34.67606016434882], [-77.29520451868382, 34.6760703026877], [-77.29514694335067, 34.67606717247306], [-77.29070865001808, 34.675064376495214], [-77.2875116902205, 34.67571025015957], [-77.28359616034673, 34.67603212868823], [-77.28368866413925, 34.67864897930525], [-77.28497480340705, 34.67831093415403], [-77.28642284165602, 34.68120696767464], [-77.28701657493693, 34.68239439021305], [-77.28843533916327, 34.682873692795035], [-77.28915409995145, 34.68390309233997], [-77.29060511556462, 34.684533727015456], [-77.29095531532826, 34.685670273383664], [-77.29249689672389, 34.68537299433353], [-77.29406102118023, 34.68532224782315], [-77.29764883965856, 34.68412634364364], [-77.29891199380053, 34.68339716669508], [-77.29901787723496, 34.67950313814266]], [[-77.24939433777858, 34.6323260560261], [-77.24819704794776, 34.63260469586885], [-77.24574099509354, 34.63287761974829], [-77.24508811293708, 34.63295015433386], [-77.24319613009722, 34.63341724412338], [-77.2420332266925, 34.63353641118893], [-77.24184348828511, 34.633637336933745], [-77.2419186645492, 34.63376262640401], [-77.24286190327554, 34.63405145490879], [-77.24310036745608, 34.6346790086336], [-77.24375513736689, 34.6351867976597], [-77.24459504956351, 34.636682057366784], [-77.24577303127438, 34.63947765968333], [-77.2461261992951, 34.640177923228975], [-77.24599905596126, 34.64056338056563], [-77.24655843391992, 34.64166516189369], [-77.24703049747706, 34.64277873191374], [-77.24757203075424, 34.644457900284706], [-77.24625183452864, 34.64600911757605], [-77.24721358215322, 34.64996005103942], [-77.25087732278543, 34.649497198785866], [-77.25212504849006, 34.64671613947755], [-77.25272468168637, 34.64592671454121], [-77.25327793283425, 34.644181509362205], [-77.25327178809393, 34.64244511554343], [-77.25279355503218, 34.638940676795606], [-77.25237024337437, 34.637841502395275], [-77.25112232079198, 34.63719581124029], [-77.25224626682325, 34.63620434538936], [-77.25354668236139, 34.63446201989327], [-77.2538724300986, 34.6336414806113], [-77.25243028353754, 34.63299382680094], [-77.25064791326767, 34.63260762924874]], [[-77.31155257982807, 34.595700883142804], [-77.31170138883869, 34.59584727070573], [-77.31183522572114, 34.595884072776315], [-77.31194767945132, 34.59581365297575], [-77.31192144138521, 34.59565032561162], [-77.3118795340716, 34.59549467733176], [-77.31134903676251, 34.59235291496839], [-77.31109493390703, 34.59219068041174], [-77.3096286845192, 34.59077171365569], [-77.30925798504066, 34.59062932995673], [-77.30812091765974, 34.59012190196441], [-77.3073422158337, 34.59070829612203], [-77.30685589823986, 34.59105383398286], [-77.30675497836668, 34.59187048401829], [-77.3069888256411, 34.59295048461672], [-77.30778468360428, 34.59442121561631]], [[-77.30940920242956, 34.60956160293321], [-77.30945630883613, 34.6095563535502], [-77.30949428024554, 34.609540660946294], [-77.30958355505496, 34.60947420611518], [-77.31058926166013, 34.607894006856526], [-77.31050004115862, 34.60740296179246], [-77.30962638175515, 34.606092472097686], [-77.3084505562403, 34.604538755354824], [-77.30713060389635, 34.60489290908245], [-77.30554616830835, 34.60585047824627], [-77.30601424694672, 34.60710191408162], [-77.30656053771604, 34.6078809692225], [-77.30724606507037, 34.60925314314396], [-77.3092101934652, 34.60952536836829]], [[-77.4472129714679, 34.55515613348814], [-77.44626588457838, 34.555972546433864], [-77.44469364939985, 34.55841031760787], [-77.44401169745854, 34.55896015281844], [-77.44420516943583, 34.5596675340968], [-77.44439285416016, 34.55996541666036], [-77.44572275005214, 34.56284469343518], [-77.44639574687051, 34.56431264359129], [-77.44691844304546, 34.56606848783097], [-77.44784962265851, 34.56724525641907], [-77.44863640965497, 34.56836932106008], [-77.44926649792959, 34.56912547784521], [-77.45100349074987, 34.571209825617544], [-77.45188549701201, 34.5711925875183], [-77.45179251281357, 34.57215668534242], [-77.45415768378801, 34.575205574381364], [-77.45415996850868, 34.57520835645472], [-77.45416177450058, 34.575210555468324], [-77.45416203933368, 34.57521520469796], [-77.45416186395737, 34.578605131655145], [-77.45416186387865, 34.57860736294173], [-77.45457373433845, 34.58150040680918], [-77.4545843593645, 34.58188363868011], [-77.45458936613669, 34.58215377899843], [-77.45438485152899, 34.58281858182213], [-77.4537647715288, 34.585071558820076], [-77.45458632871026, 34.587107830434675], [-77.45175824897728, 34.5885830328337], [-77.45174266606818, 34.588602531919214], [-77.4517228727789, 34.588644936908295], [-77.45122488416514, 34.590227268870194], [-77.45154852613169, 34.59068689614835], [-77.45221783332829, 34.59026194948393], [-77.45312711591771, 34.58968461934716], [-77.45182966869149, 34.58862065420219], [-77.45465791832683, 34.58871264522101], [-77.45579990478296, 34.58798753122819], [-77.45614351179279, 34.587652795004146], [-77.4567900601034, 34.5871625197843], [-77.45842516361499, 34.58597372072032], [-77.4592648278117, 34.585285922462404], [-77.4596627822422, 34.584865773464806], [-77.4603289823827, 34.58416242258613], [-77.46085431174937, 34.5834132411042], [-77.46111418027215, 34.58297452518257], [-77.46111415061766, 34.58195968143155], [-77.4611140970623, 34.58081504898876], [-77.46100277919521, 34.58005215180187], [-77.46062445983483, 34.579310803323246], [-77.46120416176089, 34.57704054112475], [-77.46120715660665, 34.577037245983796], [-77.46120680415765, 34.577023273243356], [-77.46128726245959, 34.57458777573017], [-77.46112735297913, 34.574108298172874], [-77.46131453143789, 34.57325396232669], [-77.46045942572033, 34.572327248256585], [-77.46009274024088, 34.571349459289586], [-77.45979985822208, 34.57099740085333], [-77.46017259887002, 34.567852380480105], [-77.45979510559111, 34.56760123517748], [-77.45972131626884, 34.5668204509599], [-77.46045567419911, 34.566894585220965], [-77.46103281465584, 34.56742198977407], [-77.4651843465442, 34.56851890227049], [-77.46732831344457, 34.56867324872234], [-77.46845849012294, 34.56718748242613], [-77.46852157365925, 34.5660892909442], [-77.46852151211883, 34.56443508713639], [-77.46852150735, 34.56144796529256], [-77.4703950192141, 34.55927190283101], [-77.4693465435434, 34.55662585206659], [-77.46913353985694, 34.55605785344884], [-77.46707065888471, 34.55330723029152], [-77.46785538798929, 34.55284616547198], [-77.46705917711517, 34.55262601654018], [-77.46674810190837, 34.55284306668559], [-77.46666465329403, 34.55292869207432], [-77.46632404125016, 34.553068065743666], [-77.46159974490132, 34.55499451944128], [-77.4604479573983, 34.55561402253794], [-77.45956428550765, 34.554999387629636], [-77.45729653580712, 34.555158163371814], [-77.4548014258994, 34.55544395386434], [-77.4541455374469, 34.555350263874104], [-77.45376597715448, 34.55529603777468], [-77.45234370695454, 34.55509282657429], [-77.4509941558658, 34.55490000587063], [-77.44842281324199, 34.55503546540291], [-77.44784312942195, 34.55506611102007]], [[-77.23739435741918, 34.65496887274761], [-77.2372788778593, 34.65524383182867], [-77.23726208207529, 34.65628069053579], [-77.23708739669974, 34.65825447622085], [-77.23729912530493, 34.65873215731815], [-77.23889124493658, 34.659727257046], [-77.23981528508705, 34.66017330662964], [-77.24151913799494, 34.66120256688275], [-77.24308830718441, 34.661786977861034], [-77.24561562381453, 34.66228006926409], [-77.24598946779773, 34.66235299602486], [-77.2479353814246, 34.66040721758206], [-77.24885040633414, 34.659684561198404], [-77.24994018858274, 34.65813957467681], [-77.24669184342059, 34.65418464894038], [-77.24549754218576, 34.65334841189941], [-77.24154613582763, 34.65364768891942], [-77.2384661025976, 34.653904037932335], [-77.23741632107196, 34.654573654256474]], [[-77.32578725711194, 34.71346813400321], [-77.32237109586711, 34.714396841308776], [-77.32145255254035, 34.71540041266064], [-77.32194783504275, 34.715852393275746], [-77.32275990108464, 34.717960372959354], [-77.32420299329445, 34.71892245727902], [-77.32557898153848, 34.719839737743136], [-77.32972554253605, 34.71890976207589], [-77.33270771551926, 34.71960383299751], [-77.33252773610693, 34.717781421109756], [-77.3318099008379, 34.717306835692696], [-77.33134099813444, 34.716498137511216], [-77.33044092361365, 34.71520668216124], [-77.32881140561847, 34.714391925186206], [-77.32795639931453, 34.71396441064618], [-77.32737211929123, 34.71367229553603]], [[-77.35013358521613, 34.59055571917313], [-77.34955191795645, 34.59093296684515], [-77.34725566430966, 34.59093309628568], [-77.34817766378701, 34.592610002437866], [-77.34970480524663, 34.59322082032364], [-77.35013183822882, 34.59339162448164], [-77.351039413244, 34.59179078595169]], [[-77.32650836825567, 34.569846082139435], [-77.32650868901347, 34.56984522318617], [-77.3265089846594, 34.569843705962704], [-77.32651362885987, 34.56899544164218], [-77.32666070391443, 34.56881036548023], [-77.32650842056344, 34.56896455186894], [-77.32650019977811, 34.56899737123436], [-77.32650546970744, 34.56984337261704], [-77.32650512763502, 34.569845734901264], [-77.3265076117673, 34.56984840218251]], [[-77.45006221498659, 34.591590290212416], [-77.4504012156117, 34.59130593305846], [-77.45082203639774, 34.59108070486127], [-77.45033676232303, 34.591070465361845], [-77.45019193085474, 34.591260443606835]], [[-77.32696221653293, 34.56808191162569], [-77.32690328075549, 34.56799805890835], [-77.32674368497491, 34.56811331286334], [-77.32690284184245, 34.56847976535313]], [[-77.45099879446822, 34.563048159885945], [-77.45031627508659, 34.56291551163944], [-77.45056682878662, 34.562143670948686], [-77.44901549266086, 34.56110798443758], [-77.4487299866189, 34.55996587081921], [-77.44850002789568, 34.55904601534117], [-77.44942015511512, 34.557737787741644], [-77.44966266471282, 34.557440923734156], [-77.45060729156238, 34.557461184910906], [-77.45099574888357, 34.55770884477207], [-77.45165980387954, 34.5578729353958], [-77.45381602266798, 34.5579196256378], [-77.45414712087499, 34.55796692817352], [-77.45505673511308, 34.55809686147051], [-77.4541479251281, 34.55929145448872], [-77.45274613655276, 34.560316508331496], [-77.45160972586267, 34.56199271030553]], [[-77.46833473224629, 34.671193730479764], [-77.47030092021876, 34.671933945085705], [-77.47033636140256, 34.67196913652572], [-77.47047537425246, 34.67224059739719], [-77.47295688150813, 34.67608305619199], [-77.47276218237492, 34.677140480495], [-77.4723867454797, 34.6775640792882], [-77.47285890165102, 34.68006719525004], [-77.4733790393819, 34.68038799595172], [-77.47337910498734, 34.68282455003259], [-77.47337910678432, 34.6828652737814], [-77.4733667929703, 34.68287662593348], [-77.47043604599818, 34.684314417853145], [-77.46965008518833, 34.68457639665628], [-77.46893393605177, 34.68465927012466], [-77.46766458572314, 34.68501148646758], [-77.4670531912724, 34.68467703206569], [-77.46616523172787, 34.684384622637964], [-77.46616691844221, 34.68406158736903], [-77.46606857855647, 34.68348066684666], [-77.46582023155288, 34.68297703721966], [-77.46569210536838, 34.6826570239071], [-77.46588656038551, 34.68205545358677], [-77.46575959138589, 34.681221915129406], [-77.46532409139101, 34.680051090858385], [-77.46617068317471, 34.679020211266035], [-77.46566560611365, 34.67767830707823], [-77.4656562822825, 34.67521245850472], [-77.46544030020173, 34.673320056315916], [-77.46569791178817, 34.67032202855136], [-77.46567775158569, 34.67026529301627], [-77.46594957165341, 34.67001440352588]], [[-77.48176638272085, 34.54233726304076], [-77.48249186926552, 34.54087857435177], [-77.48258707679533, 34.54062267397481], [-77.4838052915195, 34.54062512519316], [-77.48406710881386, 34.54085106100208], [-77.48465421757633, 34.54128580431851], [-77.48564438383855, 34.54292125137451], [-77.48587691232379, 34.543189064130424], [-77.48612694315668, 34.54333543305391], [-77.48624254200557, 34.543682243305874], [-77.48582901261153, 34.54414504817524], [-77.48529776592748, 34.54389824045637], [-77.48445056259501, 34.54364640478207], [-77.48304336911897, 34.54325829196167], [-77.48249391048279, 34.543064778748715]], [[-77.45588565704595, 34.573262579480094], [-77.4573075045287, 34.57207870354804], [-77.4579553900497, 34.57296291078482], [-77.45845750532641, 34.573350113299504], [-77.45888483222555, 34.57423320572771], [-77.45898924312654, 34.5745116325481], [-77.45907943155034, 34.575988544849814], [-77.45908716960126, 34.576295317684924], [-77.45743132080263, 34.57811719955633], [-77.45741347604122, 34.57818708424266], [-77.45870051649322, 34.580709147824265], [-77.45876292918646, 34.58113688210739], [-77.45907914789149, 34.58207817647293], [-77.45907915688522, 34.582486310961464], [-77.4590791585039, 34.58281671056989], [-77.4588058174131, 34.58360952181965], [-77.4587997079172, 34.58362727860435], [-77.4587836733763, 34.58363956254522], [-77.45796649524652, 34.58438308810893], [-77.45689685918397, 34.58417794499847], [-77.45692257724015, 34.58411372796138], [-77.45734358229281, 34.58311769907387], [-77.45745459752621, 34.58254173807256], [-77.45731914329154, 34.58179974884297], [-77.4573063036183, 34.58110698446526], [-77.45722721867692, 34.57825448604007], [-77.45721454021276, 34.57816543048371], [-77.45721454389667, 34.57806101157281], [-77.45721456564543, 34.576467010945656], [-77.45704460631869, 34.57507864643804], [-77.45702847943946, 34.574795533929944], [-77.4559685321335, 34.573504919868924]], [[-77.51363860286537, 34.63252296141802], [-77.51023599228938, 34.63311917433301], [-77.50862769393613, 34.63245052370796], [-77.50752818845723, 34.63286603355785], [-77.50781199309623, 34.63344889735046], [-77.50980261528852, 34.63406901185997], [-77.5107400168889, 34.634954253060485], [-77.51362766482315, 34.633651781368215], [-77.51546605919606, 34.63316104441439], [-77.5145498519584, 34.632522962172054]], [[-77.24247747575399, 34.65931079116654], [-77.24234131413075, 34.65922853890983], [-77.24209543220374, 34.659109847604995], [-77.24066604632125, 34.65838559003799], [-77.24052360138143, 34.65733579946774], [-77.24275807119328, 34.65760310389441], [-77.24289924210505, 34.65847817196838], [-77.24317475941368, 34.6590627114993], [-77.24283471589763, 34.65940272715474], [-77.2426028742687, 34.659357493758684]]]]}, "type": "Feature", "id": "demo16", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5337985596612, 34.68820790472248], [-77.5335657114758, 34.689010071587944], [-77.53246959971966, 34.689641564479935], [-77.53173822266143, 34.69084934986216], [-77.53027368546991, 34.69069937615816], [-77.5282420639731, 34.69084936202683], [-77.52673997545237, 34.69082846011471], [-77.52610622434021, 34.6908556487002], [-77.52519428120264, 34.69104372401583], [-77.52000231043752, 34.69174947901162], [-77.51806774843774, 34.692246111690544], [-77.51691094981402, 34.691870369468816], [-77.51586267504729, 34.691883016975886], [-77.51512957074331, 34.69163980825368], [-77.51454242484886, 34.69110686430069], [-77.51331069638822, 34.690258005407294], [-77.51214100002161, 34.68953853710086], [-77.51071404036165, 34.688468293344044], [-77.5077900733289, 34.685490753802576], [-77.50750081426469, 34.68507749507895], [-77.50747304958894, 34.68496214194606], [-77.50741185937798, 34.6848397543995], [-77.50682668357177, 34.683669395059006], [-77.50660600659239, 34.68251145947538], [-77.5065266410498, 34.682277771558745], [-77.50643685504544, 34.68056676627705], [-77.50654518746971, 34.679583568015914], [-77.50698311318291, 34.67919285514461], [-77.5065100557129, 34.6789682531343], [-77.5066661426413, 34.67632880254219], [-77.5063104845686, 34.67454789816781], [-77.50651931280996, 34.67341616017114], [-77.5069350486034, 34.671127207432015], [-77.50571415295241, 34.67069149669611], [-77.50597914268792, 34.66947848996086], [-77.51034522776189, 34.66695494760676], [-77.51121944437091, 34.66733433749207], [-77.51176139565652, 34.66601003966368], [-77.51201406194662, 34.661677593133305], [-77.51051603465075, 34.66045650551758], [-77.51594603456891, 34.653903140149986], [-77.51702606935758, 34.653519932197405], [-77.51876430696956, 34.652191079036534], [-77.52192122097803, 34.650274994451195], [-77.52230593798976, 34.64641968297589], [-77.52201289677018, 34.64535358976321], [-77.51900146561383, 34.63439541047068], [-77.51749608007339, 34.628916273313585], [-77.5159909144497, 34.62343710449821], [-77.51508883563247, 34.62015281963501], [-77.51062037351745, 34.619062390139106], [-77.51173622004615, 34.61699750591345], [-77.51018525076907, 34.61590172271332], [-77.50809198342415, 34.61572459999236], [-77.50598071803374, 34.61762251743791], [-77.50536022550966, 34.619724165644854], [-77.49843085084534, 34.620767750967275], [-77.49710624444191, 34.62179459045201], [-77.49197229149425, 34.6235526586107], [-77.49076434110611, 34.62348957129119], [-77.4825865602439, 34.62115970017173], [-77.48231599265954, 34.620729910905574], [-77.48287921981326, 34.616822649093464], [-77.48228395254958, 34.615337405136145], [-77.48209303861313, 34.61368442831967], [-77.4820991444181, 34.611595543779494], [-77.48206733350948, 34.60949057286257], [-77.48237712605142, 34.608246638283056], [-77.48338506797684, 34.6070906638617], [-77.4843110539385, 34.603652166737675], [-77.48472661127387, 34.60282261999269], [-77.48476002989989, 34.60261696546701], [-77.48486954468883, 34.60199820399231], [-77.48562707753219, 34.60204171559722], [-77.48774938623576, 34.60195942062438], [-77.49318112512874, 34.60163476177348], [-77.49818197277503, 34.60131357051064], [-77.50153025032975, 34.60140798373421], [-77.50472703730875, 34.60301887504523], [-77.50811458818139, 34.603794760638], [-77.51084698332753, 34.6047055621196], [-77.50997244949734, 34.60152011288805], [-77.50696453440979, 34.590561427437564], [-77.50604728353369, 34.587218862814424], [-77.50282759772578, 34.5858344637224], [-77.50006390925506, 34.58437009235065], [-77.49930314219858, 34.582929729424905], [-77.50169180019711, 34.58237689025903], [-77.50487503875539, 34.5829467482578], [-77.50395749671586, 34.57960261568153], [-77.50320587430913, 34.57686289301823], [-77.50258135155855, 34.57458628607995], [-77.50127399550087, 34.57618757950389], [-77.50062210953602, 34.576366734947406], [-77.49871930042386, 34.57583420864361], [-77.49804337301502, 34.57538360129014], [-77.49814521576656, 34.57374101313324], [-77.49817087529688, 34.57262569313083], [-77.49853465809417, 34.57228874681565], [-77.49816077437542, 34.57206081722499], [-77.49761961764456, 34.5695956839894], [-77.49702294096492, 34.56727016164034], [-77.49675743929308, 34.56688765331684], [-77.49674553604339, 34.5664742268017], [-77.49685120655434, 34.563906342179834], [-77.49714012631702, 34.558671495871764], [-77.49731950895463, 34.557863644483135], [-77.4971010356794, 34.55738907238251], [-77.49756785046168, 34.55630505108512], [-77.49535319193812, 34.54822663681411], [-77.49215281264875, 34.5556584479762], [-77.49365061728534, 34.55891200973107], [-77.49242080944695, 34.5644504608498], [-77.49238033191631, 34.56518386049658], [-77.49236155499854, 34.5656401558046], [-77.49217663620824, 34.56730593083624], [-77.49218737583747, 34.570533527692554], [-77.49125896100443, 34.57141303231955], [-77.4895811346868, 34.57457647112723], [-77.4887263424243, 34.575090953508266], [-77.48676374314768, 34.57823243639822], [-77.48676071992998, 34.578544553822425], [-77.48678353683071, 34.578600281589175], [-77.48678939739776, 34.578663639672136], [-77.48708348742545, 34.57939880182155], [-77.48797763624871, 34.58121359596927], [-77.48789080744243, 34.581416920210835], [-77.48867690035335, 34.58367177016687], [-77.4887786445668, 34.58393920073746], [-77.48883569783357, 34.58422448682715], [-77.48930354653069, 34.58656409405816], [-77.48944663954158, 34.58670279885137], [-77.48990609944015, 34.58948596336576], [-77.49005210315477, 34.5894842662087], [-77.48988981965154, 34.58963425197998], [-77.48407492100296, 34.59246853530946], [-77.4823948470405, 34.59297202063985], [-77.48014202843656, 34.59411756567116], [-77.478703066017, 34.594844905216696], [-77.47852977416817, 34.59548407959003], [-77.47868444154278, 34.5959012347462], [-77.47966339610171, 34.59834836684511], [-77.47966892182684, 34.598358000392004], [-77.47966776848386, 34.59835929661628], [-77.4796693758702, 34.59837018091569], [-77.48010499624463, 34.60098942747276], [-77.4798822728289, 34.601753342386935], [-77.47946438729772, 34.60432496369306], [-77.47886974130785, 34.605512012033536], [-77.47816720085865, 34.608231830731754], [-77.47727611121633, 34.609909347948026], [-77.47668729956527, 34.61102631270662], [-77.47760537453776, 34.61185688685112], [-77.47769723670524, 34.616646634672406], [-77.47776126708882, 34.6199879410416], [-77.47762503625665, 34.62257584039168], [-77.47750399921188, 34.624852621741695], [-77.47485757753137, 34.62684499570372], [-77.47213367273672, 34.62586773428302], [-77.47018802292746, 34.625156877099144], [-77.46983761749516, 34.62501744524361], [-77.46953738243087, 34.62488387563328], [-77.46788230894458, 34.62441850356626], [-77.46745940722161, 34.624267599572136], [-77.46609427669301, 34.624579547180446], [-77.46603361131498, 34.625347534096235], [-77.46602620636877, 34.62579443982311], [-77.46604748837893, 34.62587958130157], [-77.46606916611772, 34.62596780500182], [-77.46682333141422, 34.62861244752437], [-77.4672753015846, 34.62987790490078], [-77.46791773774304, 34.631023863102406], [-77.46829266793185, 34.6311474503184], [-77.46788357866158, 34.63139861909402], [-77.46824168245291, 34.633403424676715], [-77.46836015368966, 34.63404260195527], [-77.46731756242431, 34.63437986556948], [-77.46478019845367, 34.63526833452293], [-77.46440103185503, 34.63532422933182], [-77.46035394247073, 34.63532422401185], [-77.45792918951935, 34.63592098192996], [-77.45645550081778, 34.63645088370783], [-77.45558723481176, 34.637008635439415], [-77.45314860895937, 34.63973703053953], [-77.45226653617006, 34.64080233771938], [-77.45177291510474, 34.641767317968416], [-77.4501494385741, 34.64414749635998], [-77.44913545492622, 34.64466238434721], [-77.44643260241881, 34.64593890010098], [-77.44424673582449, 34.645330503311115], [-77.44066497984005, 34.6466548103469], [-77.4385432004674, 34.647858781750884], [-77.43762802277902, 34.64875321931741], [-77.43664740434683, 34.65020472871695], [-77.43634894279222, 34.652071661190895], [-77.4358905889349, 34.65353850955614], [-77.43409662209203, 34.65426780422918], [-77.43247197221845, 34.65642145785155], [-77.43017913244756, 34.657852771696625], [-77.43111455101729, 34.65947080650491], [-77.43197198300578, 34.66032832244234], [-77.4346198144589, 34.66426621984872], [-77.43466670711366, 34.664349936936], [-77.43468103221335, 34.66436268093986], [-77.4346798719787, 34.6643827676188], [-77.43647259024411, 34.669457547153314], [-77.43651373984365, 34.66974844758349], [-77.43652360190131, 34.66998304013256], [-77.43858909715232, 34.67211113174609], [-77.43852042294439, 34.673159059186055], [-77.43893106181764, 34.673768255535265], [-77.43959722696367, 34.674756473527076], [-77.43961094939178, 34.674773997935766], [-77.43961308400525, 34.67477999639462], [-77.44053919359982, 34.67546084893444], [-77.44126378314209, 34.67578007372767], [-77.4421724542495, 34.67647466995445], [-77.44329583451689, 34.67575040799463], [-77.44433479972136, 34.67519220400568], [-77.44537663154934, 34.6732082699124], [-77.44542444226536, 34.67311751509489], [-77.44542648065172, 34.67309631734466], [-77.44544272247155, 34.67304838390048], [-77.44679677782753, 34.66977236997022], [-77.44671888823846, 34.66859301791638], [-77.44754633056252, 34.66660471319541], [-77.44769850285832, 34.665920629888575], [-77.44922821495967, 34.66451528012974], [-77.45148463460946, 34.664378938435156], [-77.45359372949876, 34.663167448908425], [-77.45603845041437, 34.66194126348326], [-77.45604346461946, 34.66017347716533], [-77.45649545314461, 34.65814549575997], [-77.45638279611263, 34.65710670000643], [-77.45766209038415, 34.65620827417626], [-77.4590589891276, 34.65648766954895], [-77.4623867478646, 34.65646558651296], [-77.4642830896914, 34.65741802835545], [-77.46648794964786, 34.65770161443938], [-77.46691497379139, 34.65812845361201], [-77.46766375039186, 34.66060202871482], [-77.46777246016882, 34.66083810465854], [-77.46919950965045, 34.66604161260524], [-77.47761130417481, 34.667567245428486], [-77.47941652039158, 34.66818559524347], [-77.48089770369334, 34.66891112521178], [-77.4868687250659, 34.67062587736416], [-77.4890578844373, 34.67103343707073], [-77.49510737313113, 34.67063681609187], [-77.49528207923964, 34.67060791546553], [-77.49546401939087, 34.670518217515756], [-77.49900617171691, 34.668841719296914], [-77.4996748941821, 34.669027645117666], [-77.50000346440913, 34.669367395145144], [-77.50167084959797, 34.67024626175779], [-77.50193516907557, 34.67177043060347], [-77.5025579702103, 34.67282142519748], [-77.50285538622819, 34.67334186788209], [-77.50339462846269, 34.674308297045954], [-77.50359522655954, 34.675212947503546], [-77.50380292299057, 34.67614953121929], [-77.50387642844586, 34.677125282621375], [-77.50389474210874, 34.6786584532653], [-77.50405521133517, 34.68002878284315], [-77.50425419096898, 34.68172768863151], [-77.50431617200759, 34.682908829113046], [-77.50464387093174, 34.6838737223952], [-77.50496307315305, 34.68452110819863], [-77.50546954551632, 34.68553411189585], [-77.5058466433411, 34.687100829832985], [-77.50783455847073, 34.68994092499592], [-77.50750040202463, 34.6908634653319], [-77.50851872989544, 34.691153693317816], [-77.50941417312781, 34.69139954740028], [-77.5117164630258, 34.692614360935394], [-77.51296883489857, 34.6930318158917], [-77.514184769456, 34.69343712750825], [-77.51532074043885, 34.6938157614926], [-77.51649065776456, 34.694205773002196], [-77.51767257308444, 34.694599746494404], [-77.5188202375056, 34.69498230232841], [-77.52214668247758, 34.69493396052047], [-77.52700058961042, 34.69410656373873], [-77.53014171687715, 34.69398926146026], [-77.53459440921435, 34.694321818571616], [-77.53549704160116, 34.69437967925123], [-77.5348213117321, 34.691924436303836], [-77.5340674343403, 34.68918503825847]], [[-77.52744936180878, 34.66512759961611], [-77.52312641036269, 34.66555566024434], [-77.51994506761854, 34.66845209071114], [-77.51768846015445, 34.67022638875201], [-77.51570577391826, 34.672873172686906], [-77.51991240800714, 34.67550048507125], [-77.5210599347557, 34.675810194348855], [-77.52205492782971, 34.67612564343237], [-77.52548775834191, 34.67771445328202], [-77.52940140877062, 34.67869907674015], [-77.53025161717366, 34.679207518283526], [-77.53169066722481, 34.680547006007416], [-77.53105247670271, 34.67822736662353], [-77.52954532889896, 34.67274848315449], [-77.52803840166318, 34.66726956793342]], [[-77.45160972586267, 34.56199271030553], [-77.45274613655276, 34.560316508331496], [-77.4541479251281, 34.55929145448872], [-77.45505673511308, 34.55809686147052], [-77.45414712087499, 34.55796692817352], [-77.45381602266798, 34.5579196256378], [-77.45165980387954, 34.5578729353958], [-77.45099574888357, 34.55770884477207], [-77.45060729156238, 34.557461184910906], [-77.44966266471282, 34.557440923734156], [-77.44942015511512, 34.557737787741644], [-77.44850002789569, 34.55904601534117], [-77.4487299866189, 34.55996587081921], [-77.44901549266086, 34.56110798443758], [-77.45056682878662, 34.562143670948686], [-77.45031627508659, 34.56291551163944], [-77.45099879446822, 34.563048159885945]], [[-77.46594957165341, 34.67001440352588], [-77.46567775158567, 34.67026529301627], [-77.46569791178817, 34.67032202855136], [-77.46544030020173, 34.673320056315916], [-77.46565628228251, 34.67521245850472], [-77.46566560611365, 34.67767830707823], [-77.46617068317471, 34.679020211266035], [-77.46532409139101, 34.680051090858385], [-77.46575959138589, 34.681221915129406], [-77.46588656038551, 34.68205545358677], [-77.46569210536838, 34.6826570239071], [-77.46582023155288, 34.68297703721965], [-77.46606857855647, 34.68348066684666], [-77.46616691844221, 34.68406158736903], [-77.46616523172787, 34.684384622637964], [-77.4670531912724, 34.684677032065686], [-77.46766458572314, 34.68501148646758], [-77.46893393605177, 34.684659270124655], [-77.46965008518832, 34.68457639665628], [-77.47043604599818, 34.684314417853145], [-77.4733667929703, 34.68287662593348], [-77.47337910678432, 34.6828652737814], [-77.47337910498734, 34.68282455003259], [-77.4733790393819, 34.68038799595172], [-77.47285890165102, 34.68006719525004], [-77.4723867454797, 34.6775640792882], [-77.47276218237494, 34.677140480495], [-77.47295688150811, 34.67608305619199], [-77.47047537425246, 34.67224059739719], [-77.47033636140256, 34.67196913652572], [-77.47030092021876, 34.6719339450857], [-77.46833473224629, 34.671193730479764]], [[-77.48249391048279, 34.543064778748715], [-77.48304336911897, 34.54325829196167], [-77.48445056259501, 34.54364640478207], [-77.48529776592748, 34.54389824045637], [-77.48582901261153, 34.54414504817524], [-77.48624254200557, 34.543682243305874], [-77.48612694315668, 34.54333543305392], [-77.48587691232379, 34.543189064130424], [-77.48564438383855, 34.54292125137451], [-77.48465421757633, 34.54128580431851], [-77.48406710881386, 34.54085106100208], [-77.4838052915195, 34.54062512519316], [-77.48258707679533, 34.54062267397481], [-77.48249186926552, 34.54087857435177], [-77.48176638272085, 34.54233726304076]], [[-77.4559685321335, 34.573504919868924], [-77.45702847943946, 34.574795533929944], [-77.45704460631869, 34.57507864643804], [-77.45721456564543, 34.57646701094565], [-77.45721454389667, 34.57806101157281], [-77.45721454021276, 34.5781654304837], [-77.45722721867692, 34.57825448604007], [-77.4573063036183, 34.58110698446526], [-77.45731914329154, 34.58179974884297], [-77.45745459752622, 34.582541738072564], [-77.45734358229281, 34.58311769907387], [-77.45692257724015, 34.58411372796138], [-77.45689685918397, 34.58417794499847], [-77.45796649524652, 34.58438308810893], [-77.4587836733763, 34.58363956254522], [-77.4587997079172, 34.58362727860435], [-77.4588058174131, 34.58360952181965], [-77.4590791585039, 34.58281671056989], [-77.45907915688522, 34.582486310961464], [-77.45907914789149, 34.58207817647293], [-77.45876292918646, 34.58113688210739], [-77.45870051649324, 34.580709147824265], [-77.45741347604122, 34.57818708424266], [-77.45743132080263, 34.57811719955633], [-77.45908716960126, 34.576295317684924], [-77.45907943155034, 34.57598854484981], [-77.45898924312654, 34.5745116325481], [-77.45888483222555, 34.57423320572771], [-77.45845750532641, 34.573350113299504], [-77.4579553900497, 34.57296291078482], [-77.4573075045287, 34.57207870354804], [-77.45588565704595, 34.573262579480094]], [[-77.5145498519584, 34.632522962172054], [-77.51546605919606, 34.6331610444144], [-77.51362766482315, 34.633651781368215], [-77.5107400168889, 34.634954253060485], [-77.50980261528852, 34.63406901185997], [-77.50781199309623, 34.63344889735046], [-77.50752818845723, 34.63286603355786], [-77.50862769393613, 34.63245052370796], [-77.51023599228938, 34.63311917433301], [-77.51363860286537, 34.63252296141802]], [[-77.2426028742687, 34.659357493758684], [-77.24283471589763, 34.65940272715474], [-77.24317475941368, 34.65906271149931], [-77.24289924210505, 34.65847817196838], [-77.24275807119328, 34.65760310389441], [-77.24052360138143, 34.65733579946774], [-77.24066604632125, 34.65838559003799], [-77.24209543220374, 34.659109847605], [-77.24234131413075, 34.65922853890983], [-77.24247747575399, 34.65931079116654]], [[-77.47009080948087, 34.65426831445872], [-77.4687026039311, 34.65201493806064], [-77.46822908680026, 34.651845184689], [-77.46848190181065, 34.65142657424157], [-77.46777776336955, 34.64948722164287], [-77.46487946533394, 34.65016736379994], [-77.46451578965932, 34.650508539094204], [-77.46339717121553, 34.651184527268676], [-77.46099841656508, 34.65302781019446], [-77.45730266277293, 34.65247337919839], [-77.45659992693784, 34.65233282417143], [-77.45630142337879, 34.65254245796234], [-77.45175772374418, 34.655489591996606], [-77.45217329522325, 34.65642361170445], [-77.45246019985046, 34.6572373629061], [-77.4526028366081, 34.65826263212821], [-77.45180946112825, 34.659481418065226], [-77.45149589244544, 34.66035309772797], [-77.4505330081656, 34.66090619006458], [-77.44940218424051, 34.66097451886603], [-77.44644059958006, 34.66101176481504], [-77.44637780951493, 34.66101285532692], [-77.44635378126023, 34.66101254132618], [-77.4462943999255, 34.661053433534164], [-77.44393405576561, 34.662664040097084], [-77.44339065134623, 34.66483500200182], [-77.44331397510602, 34.665278364290955], [-77.44289955077072, 34.66725752174168], [-77.44040065944102, 34.668315870772695], [-77.44019500076521, 34.666311714215055], [-77.44249445745095, 34.665090380246355], [-77.44031956777957, 34.66475781939599], [-77.44043712578598, 34.66272258459495], [-77.43806340622163, 34.66061085818497], [-77.4379210021259, 34.66048561251666], [-77.43792881692904, 34.66036471223484], [-77.43774749602771, 34.65758101184929], [-77.43899831186901, 34.65598248906784], [-77.43915531195591, 34.65422593762923], [-77.43942364440842, 34.65122437375168], [-77.43943354639148, 34.65119268489944], [-77.43943555600801, 34.65118011437467], [-77.43944771704587, 34.65116211363129], [-77.44040488696183, 34.649041516510096], [-77.44173754406354, 34.64839689932469], [-77.44285976453419, 34.64825659287221], [-77.44398769212714, 34.64841774809561], [-77.444628197078, 34.64852161204576], [-77.44689072199179, 34.64883248081917], [-77.4472377302184, 34.648878281059005], [-77.4473761131465, 34.648820701945276], [-77.44846935528933, 34.64861725390252], [-77.4537413701927, 34.64835601480506], [-77.45525380432045, 34.647420608637724], [-77.45607068990358, 34.64708766996913], [-77.45721258963735, 34.64612445291027], [-77.4556516304101, 34.64602102491679], [-77.45565381129894, 34.643614856630386], [-77.45565386231455, 34.64236050434701], [-77.45567661312676, 34.64199490764579], [-77.45663115839918, 34.640382042740406], [-77.45731746065356, 34.63959673335489], [-77.46129190767371, 34.639003500695424], [-77.46135776835828, 34.638987291668855], [-77.4614051543834, 34.63898729173115], [-77.46164655082194, 34.6389517062976], [-77.46786967859225, 34.63839944895577], [-77.46951385389312, 34.638043932800755], [-77.47033574585326, 34.63721057283203], [-77.47077334996786, 34.63634818182487], [-77.47195450922601, 34.63340414161014], [-77.47216185410436, 34.63299777958605], [-77.47214214215681, 34.63288742436659], [-77.47261378861919, 34.63259784731558], [-77.4759019441552, 34.630653916245514], [-77.47992672916277, 34.63065396027399], [-77.47966337514902, 34.62790270250906], [-77.4817345187119, 34.626331358602776], [-77.48199800865703, 34.622202799753296], [-77.48885292180317, 34.62527948203759], [-77.489842381624, 34.62615871624783], [-77.49197025269177, 34.627884511980085], [-77.49346203275338, 34.62904915744731], [-77.49422269528617, 34.62965514962872], [-77.49828595009468, 34.63046604390982], [-77.49911504977462, 34.63121258281849], [-77.50037271255742, 34.63157248159256], [-77.50159861122087, 34.633271983106326], [-77.50139539640054, 34.63351585249612], [-77.50086006997802, 34.63463616935051], [-77.49982551959693, 34.63760659383816], [-77.49737216037256, 34.64057369936392], [-77.49673042627032, 34.64522787450337], [-77.49673039398645, 34.64643351845512], [-77.49677790572987, 34.646652367544135], [-77.49689487522689, 34.646808081556806], [-77.49912698518912, 34.65189033782569], [-77.5035351087139, 34.653324126511436], [-77.50527649217176, 34.65604366101016], [-77.50793477680128, 34.66025364698193], [-77.50407527964327, 34.66229575956548], [-77.50710097595126, 34.66360310198746], [-77.50876396143076, 34.665496852688435], [-77.50582615918469, 34.665162830218804], [-77.50584099041339, 34.664746181182124], [-77.5017122433336, 34.663369897350776], [-77.50130120867732, 34.66337796082531], [-77.49470631395273, 34.66554273697841], [-77.49401032773497, 34.66597664497946], [-77.49281401229658, 34.66735897261799], [-77.49191674415457, 34.66753710737706], [-77.49016306586722, 34.66729400167928], [-77.48801116555958, 34.66688141581638], [-77.48694194725354, 34.666301976174836], [-77.48558414095379, 34.665946094955565], [-77.48248816069284, 34.66442958686508], [-77.47615531991869, 34.66226036697628], [-77.47279133158528, 34.661650246150856], [-77.4722206355473, 34.6595692942238], [-77.47118809017608, 34.65732700167388], [-77.4710261063601, 34.65649125418509]], [[-77.44045747497255, 34.671358797283276], [-77.44040064454086, 34.670006950002495], [-77.4416949983379, 34.67039167209757], [-77.4415271492131, 34.67127402469772], [-77.44236336098133, 34.67202526326393], [-77.4428998480006, 34.67257693763847], [-77.44253893627388, 34.67393974206946], [-77.4423468982572, 34.67449713068943], [-77.4424133201348, 34.67471404097439], [-77.44183926035345, 34.67525849310828], [-77.44136344648606, 34.67501318045097], [-77.44125439387963, 34.674587144825146], [-77.4411634752378, 34.67433165513641], [-77.4408956914854, 34.67398967834613], [-77.44061278909038, 34.67171382309793], [-77.44062476013211, 34.67153115214343]]]]}, "type": "Feature", "id": "demo17", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.53169066722481, 34.680547006007416], [-77.53025161717366, 34.67920751828353], [-77.52940140877062, 34.678699076740145], [-77.52548775834191, 34.67771445328202], [-77.52205492782971, 34.67612564343237], [-77.5210599347557, 34.675810194348855], [-77.51991240800716, 34.675500485071254], [-77.51570577391826, 34.67287317268691], [-77.51768846015443, 34.67022638875201], [-77.51994506761854, 34.66845209071114], [-77.52312641036269, 34.66555566024434], [-77.52744936180878, 34.66512759961611], [-77.52653169491388, 34.66179062097201], [-77.5258141636274, 34.65918111230192], [-77.52548534999359, 34.65913487468377], [-77.52308367565949, 34.65868813173765], [-77.52267756751621, 34.6579690856769], [-77.52455273707321, 34.65688996630065], [-77.5254892617493, 34.65799943331637], [-77.52502520856956, 34.65631164228204], [-77.5235189425488, 34.6508326318752], [-77.52230593798976, 34.64641968297589], [-77.52192122097803, 34.650274994451195], [-77.51876430696956, 34.652191079036534], [-77.51702606935758, 34.653519932197405], [-77.51594603456891, 34.653903140149986], [-77.51051603465075, 34.66045650551758], [-77.51201406194662, 34.661677593133305], [-77.51176139565652, 34.66601003966368], [-77.51121944437091, 34.66733433749207], [-77.51034522776189, 34.66695494760676], [-77.50597914268792, 34.66947848996086], [-77.50571415295241, 34.67069149669611], [-77.5069350486034, 34.671127207432015], [-77.50651931280996, 34.67341616017114], [-77.5063104845686, 34.67454789816781], [-77.5066661426413, 34.67632880254219], [-77.50651005571291, 34.6789682531343], [-77.50698311318291, 34.67919285514461], [-77.50654518746971, 34.679583568015914], [-77.50643685504544, 34.68056676627705], [-77.5065266410498, 34.682277771558745], [-77.50660600659239, 34.68251145947538], [-77.50682668357177, 34.683669395059006], [-77.50741185937798, 34.6848397543995], [-77.50747304958894, 34.68496214194606], [-77.50750081426469, 34.68507749507895], [-77.50779007332892, 34.685490753802576], [-77.51071404036165, 34.688468293344044], [-77.51214100002161, 34.68953853710086], [-77.51331069638823, 34.6902580054073], [-77.51454242484887, 34.69110686430069], [-77.51512957074331, 34.69163980825368], [-77.51586267504729, 34.691883016975886], [-77.51691094981402, 34.691870369468816], [-77.51806774843773, 34.69224611169054], [-77.52000231043752, 34.69174947901162], [-77.52519428120264, 34.69104372401583], [-77.52610622434021, 34.6908556487002], [-77.52673997545237, 34.69082846011471], [-77.5282420639731, 34.69084936202683], [-77.53027368546992, 34.69069937615816], [-77.53173822266145, 34.69084934986216], [-77.53246959971966, 34.68964156447993], [-77.5335657114758, 34.689010071587944], [-77.5337985596612, 34.68820790472248], [-77.53255984515597, 34.68370621832876]], [[-77.51084698332753, 34.6047055621196], [-77.50811458818137, 34.603794760638], [-77.50472703730875, 34.60301887504524], [-77.50153025032975, 34.60140798373421], [-77.49818197277503, 34.60131357051064], [-77.49318112512874, 34.60163476177348], [-77.48774938623576, 34.60195942062438], [-77.48562707753219, 34.60204171559722], [-77.48486954468883, 34.60199820399231], [-77.48476002989989, 34.602616965467], [-77.48472661127387, 34.60282261999269], [-77.4843110539385, 34.603652166737675], [-77.48338506797684, 34.6070906638617], [-77.48237712605142, 34.608246638283056], [-77.48206733350948, 34.60949057286257], [-77.48209914441811, 34.6115955437795], [-77.48209303861313, 34.61368442831967], [-77.48228395254958, 34.615337405136145], [-77.48287921981326, 34.616822649093464], [-77.48231599265954, 34.620729910905574], [-77.4825865602439, 34.62115970017173], [-77.49076434110611, 34.62348957129119], [-77.49197229149425, 34.6235526586107], [-77.49710624444191, 34.62179459045201], [-77.49843085084534, 34.620767750967275], [-77.50536022550966, 34.619724165644854], [-77.50598071803374, 34.61762251743791], [-77.50809198342415, 34.61572459999236], [-77.51018525076907, 34.61590172271332], [-77.51173622004615, 34.61699750591345], [-77.51062037351747, 34.619062390139106], [-77.51508883563247, 34.62015281963501], [-77.51448596866149, 34.61795790403627], [-77.5129812426275, 34.612478671939456], [-77.51147673626652, 34.60699940821949]], [[-77.49756785046168, 34.55630505108512], [-77.4971010356794, 34.55738907238251], [-77.49731950895463, 34.557863644483135], [-77.497140126317, 34.55867149587176], [-77.49685120655434, 34.563906342179834], [-77.49674553604339, 34.5664742268017], [-77.49675743929308, 34.56688765331684], [-77.49702294096492, 34.56727016164034], [-77.49761961764456, 34.5695956839894], [-77.49816077437542, 34.57206081722499], [-77.49853465809417, 34.57228874681566], [-77.49817087529688, 34.57262569313083], [-77.49814521576656, 34.57374101313324], [-77.49804337301502, 34.57538360129014], [-77.49871930042386, 34.57583420864361], [-77.50062210953601, 34.576366734947406], [-77.50127399550087, 34.57618757950389], [-77.50258135155855, 34.57458628607995], [-77.50245430668883, 34.57412316246815], [-77.50170279384484, 34.57138342403272], [-77.50095133576704, 34.568643677713425], [-77.5001999324453, 34.56590392351171], [-77.4994485838695, 34.56316416142903], [-77.49794605091523, 34.55768461362666]], [[-77.4710261063601, 34.65649125418509], [-77.47118809017607, 34.65732700167388], [-77.4722206355473, 34.6595692942238], [-77.47279133158528, 34.66165024615086], [-77.47615531991869, 34.66226036697628], [-77.48248816069284, 34.66442958686508], [-77.48558414095379, 34.665946094955565], [-77.48694194725354, 34.666301976174836], [-77.48801116555958, 34.66688141581638], [-77.49016306586722, 34.66729400167928], [-77.49191674415457, 34.667537107377065], [-77.49281401229656, 34.66735897261799], [-77.49401032773497, 34.66597664497946], [-77.49470631395273, 34.66554273697841], [-77.50130120867732, 34.66337796082531], [-77.50171224333361, 34.66336989735078], [-77.5058409904134, 34.664746181182124], [-77.50582615918469, 34.665162830218804], [-77.50876396143077, 34.665496852688435], [-77.50710097595126, 34.66360310198746], [-77.50407527964327, 34.66229575956548], [-77.50793477680126, 34.66025364698193], [-77.50527649217176, 34.65604366101016], [-77.50353510871392, 34.653324126511436], [-77.49912698518912, 34.65189033782569], [-77.49689487522689, 34.646808081556806], [-77.49677790572987, 34.646652367544135], [-77.49673039398645, 34.64643351845512], [-77.49673042627032, 34.64522787450337], [-77.49737216037256, 34.64057369936391], [-77.49982551959694, 34.63760659383816], [-77.50086006997802, 34.63463616935051], [-77.50139539640054, 34.63351585249612], [-77.50159861122087, 34.633271983106326], [-77.50037271255741, 34.63157248159256], [-77.49911504977462, 34.63121258281849], [-77.49828595009468, 34.63046604390982], [-77.49422269528617, 34.62965514962872], [-77.49346203275337, 34.62904915744731], [-77.49197025269177, 34.627884511980085], [-77.489842381624, 34.62615871624783], [-77.48885292180316, 34.625279482037584], [-77.48199800865703, 34.622202799753296], [-77.4817345187119, 34.626331358602776], [-77.47966337514902, 34.62790270250906], [-77.47992672916276, 34.63065396027399], [-77.4759019441552, 34.630653916245514], [-77.47261378861919, 34.63259784731558], [-77.47214214215681, 34.63288742436659], [-77.47216185410436, 34.63299777958605], [-77.47195450922601, 34.633404141610136], [-77.47077334996786, 34.63634818182487], [-77.47033574585326, 34.63721057283203], [-77.46951385389312, 34.638043932800755], [-77.46786967859224, 34.63839944895577], [-77.46164655082194, 34.6389517062976], [-77.4614051543834, 34.63898729173115], [-77.46135776835828, 34.638987291668855], [-77.46129190767371, 34.639003500695424], [-77.45731746065356, 34.63959673335489], [-77.45663115839918, 34.640382042740406], [-77.45567661312676, 34.64199490764579], [-77.45565386231455, 34.64236050434701], [-77.45565381129896, 34.64361485663039], [-77.4556516304101, 34.64602102491679], [-77.45721258963734, 34.646124452910264], [-77.45607068990358, 34.64708766996913], [-77.45525380432045, 34.647420608637724], [-77.4537413701927, 34.64835601480506], [-77.44846935528935, 34.64861725390252], [-77.4473761131465, 34.648820701945276], [-77.4472377302184, 34.648878281059005], [-77.44689072199179, 34.64883248081917], [-77.444628197078, 34.64852161204576], [-77.44398769212714, 34.64841774809561], [-77.44285976453419, 34.64825659287221], [-77.44173754406354, 34.64839689932469], [-77.44040488696183, 34.649041516510096], [-77.43944771704587, 34.65116211363129], [-77.43943555600801, 34.65118011437467], [-77.43943354639148, 34.65119268489944], [-77.43942364440842, 34.65122437375168], [-77.43915531195591, 34.65422593762923], [-77.43899831186901, 34.65598248906784], [-77.43774749602771, 34.65758101184929], [-77.43792881692904, 34.66036471223484], [-77.4379210021259, 34.66048561251666], [-77.43806340622163, 34.66061085818497], [-77.44043712578598, 34.66272258459495], [-77.44031956777957, 34.66475781939599], [-77.44249445745095, 34.665090380246355], [-77.44019500076521, 34.66631171421505], [-77.44040065944102, 34.668315870772695], [-77.44289955077072, 34.66725752174168], [-77.44331397510602, 34.665278364290955], [-77.44339065134623, 34.66483500200182], [-77.44393405576561, 34.662664040097084], [-77.4462943999255, 34.661053433534164], [-77.44635378126023, 34.66101254132618], [-77.44637780951493, 34.66101285532692], [-77.44644059958006, 34.66101176481504], [-77.44940218424051, 34.66097451886603], [-77.4505330081656, 34.66090619006458], [-77.45149589244544, 34.66035309772797], [-77.45180946112825, 34.659481418065226], [-77.4526028366081, 34.65826263212821], [-77.45246019985046, 34.6572373629061], [-77.45217329522325, 34.65642361170445], [-77.45175772374418, 34.655489591996606], [-77.45630142337879, 34.65254245796234], [-77.45659992693783, 34.65233282417143], [-77.45730266277295, 34.65247337919839], [-77.46099841656508, 34.65302781019446], [-77.46339717121553, 34.651184527268676], [-77.46451578965932, 34.650508539094204], [-77.46487946533394, 34.65016736379994], [-77.46777776336955, 34.64948722164287], [-77.46848190181065, 34.65142657424157], [-77.46822908680025, 34.651845184688995], [-77.4687026039311, 34.65201493806064], [-77.47009080948087, 34.65426831445872]], [[-77.44062476013211, 34.67153115214343], [-77.44061278909038, 34.67171382309793], [-77.4408956914854, 34.67398967834613], [-77.4411634752378, 34.67433165513641], [-77.44125439387963, 34.67458714482515], [-77.44136344648606, 34.67501318045097], [-77.44183926035345, 34.67525849310828], [-77.4424133201348, 34.6747140409744], [-77.4423468982572, 34.67449713068943], [-77.44253893627388, 34.67393974206945], [-77.44289984800061, 34.67257693763847], [-77.44236336098133, 34.67202526326393], [-77.4415271492131, 34.67127402469772], [-77.4416949983379, 34.67039167209757], [-77.44040064454086, 34.670006950002495], [-77.44045747497255, 34.671358797283276]], [[-77.47387497094358, 34.638604767442295], [-77.47509219644772, 34.63887317808686], [-77.47811743628242, 34.63873252194144], [-77.47958902706723, 34.63870199327636], [-77.47981504017741, 34.640523746677076], [-77.48291938637104, 34.644699458778554], [-77.48340766533661, 34.64673355134391], [-77.48286069724662, 34.64933709935957], [-77.48407825740524, 34.65027750032348], [-77.48587300289664, 34.651664315039575], [-77.48627853744148, 34.652475509743674], [-77.48640901155832, 34.65273644919896], [-77.48531612967209, 34.655832923424214], [-77.48348105487064, 34.658283133728716], [-77.48037862981505, 34.6572418781502], [-77.48019930222885, 34.65259191102804], [-77.48014469183416, 34.651399989662], [-77.47957959802001, 34.650350296945426], [-77.47622670336573, 34.646609279659536], [-77.47358151440531, 34.6460491808994], [-77.47102903627116, 34.64357015811423], [-77.4702566129484, 34.642797703300346], [-77.46950849894323, 34.642617497611994], [-77.46994226461835, 34.642027689331], [-77.47056893218698, 34.64189218647778], [-77.47307499251767, 34.63935115862978]], [[-77.52708861369752, 34.68231464753845], [-77.52741128525733, 34.68268367915494], [-77.52844473987021, 34.68474759326109], [-77.52744853063126, 34.6851665634035], [-77.5257637329165, 34.68628908107598], [-77.52486072226256, 34.68632782117741], [-77.52434673517851, 34.68643382371098], [-77.51714220618523, 34.688234952638524], [-77.51697615803525, 34.688276463901516], [-77.51688046634852, 34.68824654518159], [-77.51682397434094, 34.68820129739584], [-77.5166012900976, 34.68804623611407], [-77.51370944070605, 34.6861360523952], [-77.51312080510898, 34.68552405386636], [-77.51177964671356, 34.684688691413214], [-77.51097739277606, 34.683961574352104], [-77.51025333012039, 34.68335451855087], [-77.50997263736926, 34.68205374560411], [-77.51025051184052, 34.681214527368155], [-77.51028635508897, 34.68088922291955], [-77.51264346174793, 34.67878623631036], [-77.51407357699112, 34.67771879812607], [-77.51819154749552, 34.67869414111107], [-77.51861069334802, 34.67880726558452], [-77.52319174620753, 34.68025962637352], [-77.5233486455424, 34.68033224376834], [-77.52352752100596, 34.680377246504456], [-77.52424386870929, 34.680805636685704]], [[-77.49158257119456, 34.617387422084285], [-77.49103309023114, 34.61738274720877], [-77.49061808260589, 34.61705036052045], [-77.49259554458425, 34.61547072361297]]]]}, "type": "Feature", "id": "demo18", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5254892617493, 34.65799943331637], [-77.52455273707321, 34.65688996630065], [-77.52267756751621, 34.6579690856769], [-77.52308367565949, 34.65868813173765], [-77.52548534999359, 34.65913487468377], [-77.5258141636274, 34.65918111230192], [-77.52577842419619, 34.65905113559237]], [[-77.47307499251767, 34.63935115862978], [-77.47056893218698, 34.641892186477776], [-77.46994226461835, 34.642027689331], [-77.46950849894323, 34.642617497611994], [-77.4702566129484, 34.642797703300346], [-77.47102903627116, 34.64357015811423], [-77.47358151440531, 34.6460491808994], [-77.47622670336573, 34.646609279659536], [-77.47957959802001, 34.650350296945426], [-77.48014469183416, 34.651399989662], [-77.48019930222885, 34.65259191102804], [-77.48037862981505, 34.6572418781502], [-77.48348105487064, 34.658283133728716], [-77.48531612967209, 34.655832923424214], [-77.48640901155832, 34.65273644919896], [-77.48627853744148, 34.652475509743674], [-77.48587300289664, 34.651664315039575], [-77.48407825740526, 34.65027750032348], [-77.48286069724662, 34.64933709935957], [-77.48340766533661, 34.64673355134391], [-77.48291938637104, 34.644699458778554], [-77.47981504017743, 34.640523746677076], [-77.47958902706723, 34.63870199327636], [-77.47811743628242, 34.63873252194144], [-77.47509219644772, 34.63887317808686], [-77.47387497094358, 34.638604767442295]], [[-77.52424386870929, 34.680805636685704], [-77.52352752100596, 34.680377246504456], [-77.52334864554241, 34.68033224376834], [-77.52319174620753, 34.68025962637352], [-77.51861069334801, 34.67880726558452], [-77.51819154749553, 34.67869414111107], [-77.51407357699112, 34.677718798126065], [-77.51264346174793, 34.67878623631036], [-77.51028635508897, 34.680889222919554], [-77.51025051184052, 34.68121452736815], [-77.50997263736926, 34.68205374560411], [-77.51025333012039, 34.68335451855087], [-77.51097739277604, 34.683961574352104], [-77.51177964671356, 34.684688691413214], [-77.51312080510898, 34.68552405386636], [-77.51370944070604, 34.68613605239519], [-77.5166012900976, 34.68804623611407], [-77.51682397434094, 34.68820129739584], [-77.51688046634852, 34.68824654518159], [-77.51697615803525, 34.688276463901516], [-77.51714220618523, 34.688234952638524], [-77.52434673517851, 34.68643382371098], [-77.52486072226256, 34.6863278211774], [-77.5257637329165, 34.68628908107598], [-77.52744853063126, 34.6851665634035], [-77.52844473987021, 34.68474759326109], [-77.52741128525733, 34.68268367915494], [-77.52708861369752, 34.68231464753845]], [[-77.49259554458425, 34.61547072361297], [-77.49061808260589, 34.61705036052045], [-77.49103309023114, 34.61738274720877], [-77.49158257119456, 34.617387422084285]], [[-77.51776780855306, 34.68349976238658]]]]}, "type": "Feature", "id": "demo19", "properties": {}}]} \ No newline at end of file diff --git a/examples/introduction.ipynb b/examples/introduction.ipynb index b53d321..2be59fe 100644 --- a/examples/introduction.ipynb +++ b/examples/introduction.ipynb @@ -20,44 +20,35 @@ "cell_type": "code", "execution_count": 2, "metadata": {}, + "outputs": [], + "source": [ + "from ipyopenlayers import GeoJSON" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, "outputs": [ { "data": { "application/vnd.jupyter.widget-view+json": { - "model_id": "a2c23fa0e6b94f6a88fa314ff02fe502", + "model_id": "3265c9dce2864936a1f98ae5c591f899", "version_major": 2, "version_minor": 0 }, "text/plain": [ - "Map(center=[0.0, 0.0])" + "Map(center=[0.0, 0.0], zoom=4.0)" ] }, - "execution_count": 2, + "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "m = Map(center=[0.0, 0.0], zoom=2)\n", - "m " - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [], - "source": [ - "layer=TileLayer()" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "m.add_layer(layer)" + "m = Map(center=[0.0, 0.0], zoom=4)\n", + "m" ] }, { @@ -66,7 +57,8 @@ "metadata": {}, "outputs": [], "source": [ - "zoom=ZoomSlider()" + "layer=TileLayer()\n", + "m.add_layer(layer)" ] }, { @@ -75,7 +67,9 @@ "metadata": {}, "outputs": [], "source": [ - "m.add_control(zoom)" + "layere=TileLayer()\n", + "layere.url='https://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png'\n", + "m.add_layer(layere)" ] }, { @@ -84,7 +78,7 @@ "metadata": {}, "outputs": [], "source": [ - "full=FullScreen()" + "m.remove_layer(layere)" ] }, { @@ -93,6 +87,8 @@ "metadata": {}, "outputs": [], "source": [ + "zoom=ZoomSlider()\n", + "full=FullScreen()\n", "scale=ScaleLine()\n", "coord=MousePosition()" ] @@ -103,7 +99,10 @@ "metadata": {}, "outputs": [], "source": [ - "m.add_control(scale)\n" + "m.add_control(zoom)\n", + "m.add_control(scale)\n", + "m.add_control(coord)\n", + "m.add_control(full)" ] }, { @@ -112,104 +111,72 @@ "metadata": {}, "outputs": [], "source": [ - "m.add_control(coord)" + "image=ImageOverlay()\n", + "image.image_url=\"https://i.imgur.com/06Q1fSz.png\"\n", + "m.add_overlay(image)" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, - "outputs": [], - "source": [ - "m.add_control(full)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, "outputs": [ { "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "3265c9dce2864936a1f98ae5c591f899", + "version_major": 2, + "version_minor": 0 + }, "text/plain": [ - "'https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png'" + "Map(center=[0.0, 0.0], controls=[ZoomSlider(), ScaleLine(), MousePosition(), FullScreen()], layers=[TileLayer(…" ] }, - "execution_count": 12, + "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "layer.url" + "m" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 12, "metadata": {}, "outputs": [], "source": [ - "layere=TileLayer()" + "image.image_url=\"https://i.imgur.com/ZF6s192.png\"" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 13, "metadata": {}, "outputs": [], "source": [ - "layere.url='https://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png'" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "'https://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png'" - ] - }, - "execution_count": 15, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "layere.url" + "image.position=[-70,70]" ] }, { "cell_type": "code", - "execution_count": 16, + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ - "m.add_layer(layere)" + "imaget=ImageOverlay()\n", + "imaget.image_url=\"https://upload.wikimedia.org/wikipedia/en/a/a9/Example.jpg\"\n", + "m.add_overlay(imaget)" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[TileLayer(),\n", - " TileLayer(url='https://{a-c}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}.png')]" - ] - }, - "execution_count": 16, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ - "m.layers" + "m.remove_overlay(imaget)" ] }, { @@ -218,99 +185,68 @@ "metadata": {}, "outputs": [], "source": [ - "m.remove_layer(layere)" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "89eb9976b4ec4065a24275a247fe2318", - "version_major": 2, - "version_minor": 0 - }, - "text/plain": [ - "ImageOverlay(position=[0, 0])" - ] - }, - "execution_count": 5, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "image=ImageOverlay()\n", - "image" + "video=VideoOverlay()\n", + "video.video_url=\"https://www.mapbox.com/bites/00188/patricia_nasa.webm\"\n", + "m.add_overlay(video)" ] }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 18, "metadata": {}, "outputs": [], "source": [ - "image.image_url=\"https://i.imgur.com/06Q1fSz.png\"" + "video.video_url=\"https://www.w3schools.com/html/mov_bbb.webm\"\n", + "video.position=[-70,80]" ] }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 19, "metadata": {}, "outputs": [], "source": [ - "m.add_overlay(image)" + "m.remove_overlay(video)" ] }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 20, "metadata": {}, "outputs": [], "source": [ - "image.image_url=\"https://i.imgur.com/ZF6s192.png\"" + "video2=VideoOverlay()\n", + "video2.video_url=\"https://www.mapbox.com/bites/00188/patricia_nasa.webm\"\n", + "m.add_overlay(video2)" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 21, "metadata": {}, "outputs": [], "source": [ - "image.position=[-70,70]" + "m.remove_overlay(video2)" ] }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 22, "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[ImageOverlay(image_url='https://i.imgur.com/06Q1fSz.png', position=[-70, 70])]" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], + "outputs": [], "source": [ - "m.overlays" + "popup=PopupOverlay()\n", + "popup.popup_content='Maap'\n", + "m.add_overlay(popup)" ] }, { "cell_type": "code", - "execution_count": 24, + "execution_count": 23, "metadata": {}, "outputs": [], "source": [ - "imaget=ImageOverlay()\n", - "imaget.image_url=\"https://upload.wikimedia.org/wikipedia/en/a/a9/Example.jpg\"\n" + "m.remove_overlay(popup)" ] }, { @@ -319,151 +255,293 @@ "metadata": {}, "outputs": [], "source": [ - "m.add_overlay(imaget)" + "widget= GeoJSON()" ] }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 26, "metadata": {}, "outputs": [], "source": [ - "m.remove_overlay(image)" + "widget = GeoJSON(\n", + " data={\n", + " 'type': 'FeatureCollection',\n", + " 'features': [\n", + " {\n", + " 'type': 'Feature',\n", + " 'geometry': {\n", + " 'type': 'Point',\n", + " 'coordinates': [0, 0],\n", + " },\n", + " 'properties': {\n", + " 'name': 'Null Island',\n", + " },\n", + " },\n", + " ],\n", + " },\n", + " style={\n", + " 'Point': {\n", + " 'radius': 10,\n", + " 'fillColor': '#ff7800',\n", + " 'color': '#000',\n", + " 'weight': 1,\n", + " 'opacity': 1,\n", + " 'fillOpacity': 0.8,\n", + " },\n", + " },\n", + " visible=True\n", + ")" ] }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 27, "metadata": {}, "outputs": [], "source": [ - "video=VideoOverlay()" + "m.add_layer(widget)" ] }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 28, "metadata": {}, "outputs": [], "source": [ - "video.video_url=\"https://www.w3schools.com/html/mov_bbb.webm\"" + "widget.visible = False" ] }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 29, "metadata": {}, "outputs": [], "source": [ - "m.add_overlay(video)" + "widget.visible=True" ] }, { "cell_type": "code", - "execution_count": 14, + "execution_count": 30, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "{'type': 'FeatureCollection',\n", + " 'features': [{'type': 'Feature',\n", + " 'geometry': {'type': 'Point', 'coordinates': [0, 0]},\n", + " 'properties': {'name': 'Null Island'}}]}" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "video.video_url=\"https://www.mapbox.com/bites/00188/patricia_nasa.webm\"" + "widget.data" ] }, { "cell_type": "code", - "execution_count": 15, + "execution_count": 31, "metadata": {}, "outputs": [], "source": [ - "video.position=[-70,80]" + "import matplotlib as mpl\n", + "import matplotlib.cm\n", + "import matplotlib.colors\n", + "import numpy as np\n", + "\n", + "\n", + "def n_colors(n, colormap=mpl.cm.Blues):\n", + " data = np.linspace(0.0, 1.0, n)\n", + " c = [mpl.colors.rgb2hex(d[0:3]) for d in colormap(data)]\n", + " return c\n", + "\n", + "\n", + "def data_to_colors(data, colormap=mpl.cm.Blues):\n", + " c = [mpl.colors.rgb2hex(d[0:3]) for d in colormap(mpl.colors.Normalize()(data))]\n", + " return c" ] }, { "cell_type": "code", - "execution_count": 16, - "metadata": {}, + "execution_count": 32, + "metadata": { + "jupyter": { + "source_hidden": true + } + }, "outputs": [], "source": [ - "video2=VideoOverlay()\n", - "video2.video_url=\"https://www.mapbox.com/bites/00188/patricia_nasa.webm\"" + "import json\n", + "\n", + "with open(\"demo.json\") as f:\n", + " data = json.load(f)" ] }, { "cell_type": "code", - "execution_count": 17, - "metadata": {}, - "outputs": [], + "execution_count": 33, + "metadata": { + "jupyter": { + "source_hidden": true + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "20\n" + ] + } + ], "source": [ - "m.add_overlay(video2)" + "n_features = len(data[\"features\"])\n", + "colors = n_colors(n_features)\n", + "print(n_features)" ] }, { "cell_type": "code", - "execution_count": 18, + "execution_count": 34, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['#f7fbff',\n", + " '#edf4fc',\n", + " '#e3eef8',\n", + " '#d8e7f5',\n", + " '#cee0f2',\n", + " '#c2d9ee',\n", + " '#b2d2e8',\n", + " '#a0cbe2',\n", + " '#8cc0dd',\n", + " '#75b4d8',\n", + " '#63a8d3',\n", + " '#519ccc',\n", + " '#4090c5',\n", + " '#3282be',\n", + " '#2474b7',\n", + " '#1966ad',\n", + " '#0e59a2',\n", + " '#084b93',\n", + " '#083d7f',\n", + " '#08306b']" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "m.remove_overlay(video)" + "colors" ] }, { "cell_type": "code", - "execution_count": 19, - "metadata": {}, + "execution_count": 35, + "metadata": { + "jupyter": { + "source_hidden": true + } + }, "outputs": [], "source": [ - "m.remove_overlay(video2)" + "for feature, color in zip(data[\"features\"], colors):\n", + " feature[\"properties\"][\"style\"] = {\n", + " \"color\": color,\n", + " \"weight\": 1,\n", + " \"fillColor\": color,\n", + " \"fillOpacity\": 0.5,\n", + " }" ] }, { "cell_type": "code", - "execution_count": 20, - "metadata": {}, + "execution_count": 36, + "metadata": { + "jupyter": { + "source_hidden": true + } + }, "outputs": [ { "data": { - "application/vnd.jupyter.widget-view+json": { - "model_id": "5692329a9806438fbb2be2bc0334475e", - "version_major": 2, - "version_minor": 0 - }, "text/plain": [ - "PopupOverlay(position=[0, 0])" + "{'geometry': {'type': 'MultiPolygon',\n", + " 'coordinates': [[[[-77.39940577291571, 34.5780540544853],\n", + " [-77.39940610066606, 34.57805427015046],\n", + " [-77.39940640189788, 34.57805446836596],\n", + " [-77.39940680648922, 34.57805473459376],\n", + " [-77.39940687019617, 34.57805477651398],\n", + " [-77.39940689381065, 34.57805472199389],\n", + " [-77.3994073308358, 34.57805432604519],\n", + " [-77.39940731720131, 34.578054179242265],\n", + " [-77.39940728534575, 34.578053836252096],\n", + " [-77.39940728147378, 34.57805380828763],\n", + " [-77.39940726378504, 34.57805363205166],\n", + " [-77.39940725501071, 34.57805361742678],\n", + " [-77.39940719593868, 34.57805349818902],\n", + " [-77.39940711258689, 34.57805350039165],\n", + " [-77.39940706262787, 34.57805349996589],\n", + " [-77.3994070238417, 34.578053501157314],\n", + " [-77.39940689549977, 34.57805350509971],\n", + " [-77.3994068702403, 34.5780535173504],\n", + " [-77.39940683257294, 34.57805352755014],\n", + " [-77.39940665584797, 34.57805351246129],\n", + " [-77.39940650171212, 34.578053517196004],\n", + " [-77.39940646539253, 34.578053518311656],\n", + " [-77.39940610067742, 34.578053945657025]]]]},\n", + " 'type': 'Feature',\n", + " 'id': 'demo0',\n", + " 'properties': {'style': {'color': '#f7fbff',\n", + " 'weight': 1,\n", + " 'fillColor': '#f7fbff',\n", + " 'fillOpacity': 0.5}}}" ] }, - "execution_count": 20, + "execution_count": 36, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "popup=PopupOverlay()\n", - "popup" + "data[\"features\"][0]\n" ] }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 38, "metadata": {}, "outputs": [], "source": [ - "popup.popup_content='Maap'" + "g = GeoJSON(data=data)\n" ] }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 39, "metadata": {}, "outputs": [], "source": [ - "m.add_overlay(popup)" + "m.add_layer(g)" ] }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 40, "metadata": {}, "outputs": [], "source": [ - "m.remove_overlay(popup)" + "m.remove_layer(g)" ] }, { diff --git a/ipyopenlayers/example.py b/ipyopenlayers/Map.py similarity index 87% rename from ipyopenlayers/example.py rename to ipyopenlayers/Map.py index ab95c13..4030ea0 100644 --- a/ipyopenlayers/example.py +++ b/ipyopenlayers/Map.py @@ -8,22 +8,39 @@ TODO: Add module docstring """ -from ipywidgets import DOMWidget, Widget, widget_serialization, HTML -from traitlets import Unicode, List, Instance, CFloat, Bool,Int, Float +from ipywidgets import DOMWidget, Widget, widget_serialization, CallbackDispatcher +from traitlets import Unicode, List, Instance, CFloat, Bool, Dict, Any from ._frontend import module_name, module_version def_loc = [0.0, 0.0] -class TileLayer(Widget): - _model_name = Unicode('TileLayerModel').tag(sync=True) +class Layer(Widget): + + _model_name = Unicode('LayerModel').tag(sync=True) _model_module = Unicode(module_name).tag(sync=True) _model_module_version = Unicode(module_version).tag(sync=True) - _view_name = Unicode('TileLayerView').tag(sync=True) + _view_name = Unicode('LayerView').tag(sync=True) _view_module = Unicode(module_name).tag(sync=True) _view_module_version = Unicode(module_version).tag(sync=True) + +class TileLayer(Layer): + + _model_name = Unicode('TileLayerModel').tag(sync=True) + _view_name = Unicode('TileLayerView').tag(sync=True) + url = Unicode('https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png').tag(sync=True) + +class GeoJSON(Layer): + + _view_name = Unicode('OpenLayersGeoJSONView').tag(sync=True) + _model_name = Unicode('OpenLayersGeoJSONModel').tag(sync=True) + data = Dict({}).tag(sync=True) + style = Dict({}).tag(sync=True) + visible = Bool(True).tag(sync=True) + + class BaseOverlay(DOMWidget): _model_module = Unicode(module_name).tag(sync=True) @@ -84,10 +101,9 @@ class Map(DOMWidget): _view_module = Unicode(module_name).tag(sync=True) _view_module_version = Unicode(module_version).tag(sync=True) - value = Unicode('Hello World').tag(sync=True) center = List(def_loc).tag(sync=True, o=True) zoom = CFloat(2).tag(sync=True, o=True) - layers = List(Instance(TileLayer)).tag(sync=True, **widget_serialization) + layers = List(Instance(Layer)).tag(sync=True, **widget_serialization) overlays=List(Instance(BaseOverlay)).tag(sync=True, **widget_serialization) controls=List(Instance(BaseControl)).tag(sync=True, **widget_serialization) diff --git a/ipyopenlayers/__init__.py b/ipyopenlayers/__init__.py index 1634998..4cf0919 100644 --- a/ipyopenlayers/__init__.py +++ b/ipyopenlayers/__init__.py @@ -4,7 +4,7 @@ # Copyright (c) QuantStack. # Distributed under the terms of the Modified BSD License. -from .example import * +from .Map import * from ._version import __version__, version_info def _jupyter_labextension_paths(): diff --git a/ipyopenlayers/nbextension/124.index.js b/ipyopenlayers/nbextension/124.index.js new file mode 100644 index 0000000..e670eaa --- /dev/null +++ b/ipyopenlayers/nbextension/124.index.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[124],{2124:(e,r,s)=>{s.r(r),s.d(r,{default:()=>l});var a=s(3075),n=s(708);class l extends n.A{decodeBlock(e){return(0,a.UD)(new Uint8Array(e)).buffer}}}}]); +//# sourceMappingURL=124.index.js.map \ No newline at end of file diff --git a/ipyopenlayers/nbextension/124.index.js.map b/ipyopenlayers/nbextension/124.index.js.map new file mode 100644 index 0000000..7ed187d --- /dev/null +++ b/ipyopenlayers/nbextension/124.index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"124.index.js","mappings":"kKAGe,MAAMA,UAAuB,IAC1C,WAAAC,CAAYC,GACV,OAAO,QAAQ,IAAIC,WAAWD,IAASA,MACzC,E","sources":["webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/deflate.js"],"sourcesContent":["import { inflate } from 'pako';\nimport BaseDecoder from './basedecoder.js';\n\nexport default class DeflateDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n return inflate(new Uint8Array(buffer)).buffer;\n }\n}\n"],"names":["DeflateDecoder","decodeBlock","buffer","Uint8Array"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/nbextension/145.index.js b/ipyopenlayers/nbextension/145.index.js new file mode 100644 index 0000000..109a0f5 --- /dev/null +++ b/ipyopenlayers/nbextension/145.index.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[145],{145:(A,e,t)=>{t.r(e),t.d(e,{create:()=>r});const i=Worker;function r(){const A='function A(A,e,t,i,r,I,g){try{var n=A[I](g),a=n.value}catch(A){return void t(A)}n.done?e(a):Promise.resolve(a).then(i,r)}function e(e){return function(){var t=this,i=arguments;return new Promise((function(r,I){var g=e.apply(t,i);function n(e){A(g,r,I,n,a,"next",e)}function a(e){A(g,r,I,n,a,"throw",e)}n(void 0)}))}}function t(A){return t="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(A){return typeof A}:function(A){return A&&"function"==typeof Symbol&&A.constructor===Symbol&&A!==Symbol.prototype?"symbol":typeof A},t(A)}var i={exports:{}};!function(A){var e=function(A){var e,i=Object.prototype,r=i.hasOwnProperty,I="function"==typeof Symbol?Symbol:{},g=I.iterator||"@@iterator",n=I.asyncIterator||"@@asyncIterator",a=I.toStringTag||"@@toStringTag";function o(A,e,t){return Object.defineProperty(A,e,{value:t,enumerable:!0,configurable:!0,writable:!0}),A[e]}try{o({},"")}catch(A){o=function(A,e,t){return A[e]=t}}function B(A,e,t,i){var r=e&&e.prototype instanceof h?e:h,I=Object.create(r.prototype),g=new S(i||[]);return I._invoke=function(A,e,t){var i=Q;return function(r,I){if(i===s)throw new Error("Generator is already running");if(i===f){if("throw"===r)throw I;return R()}for(t.method=r,t.arg=I;;){var g=t.delegate;if(g){var n=m(g,t);if(n){if(n===c)continue;return n}}if("next"===t.method)t.sent=t._sent=t.arg;else if("throw"===t.method){if(i===Q)throw i=f,t.arg;t.dispatchException(t.arg)}else"return"===t.method&&t.abrupt("return",t.arg);i=s;var a=C(A,e,t);if("normal"===a.type){if(i=t.done?f:E,a.arg===c)continue;return{value:a.arg,done:t.done}}"throw"===a.type&&(i=f,t.method="throw",t.arg=a.arg)}}}(A,t,g),I}function C(A,e,t){try{return{type:"normal",arg:A.call(e,t)}}catch(A){return{type:"throw",arg:A}}}A.wrap=B;var Q="suspendedStart",E="suspendedYield",s="executing",f="completed",c={};function h(){}function l(){}function u(){}var w={};o(w,g,(function(){return this}));var d=Object.getPrototypeOf,D=d&&d(d(v([])));D&&D!==i&&r.call(D,g)&&(w=D);var y=u.prototype=h.prototype=Object.create(w);function k(A){["next","throw","return"].forEach((function(e){o(A,e,(function(A){return this._invoke(e,A)}))}))}function p(A,e){function i(I,g,n,a){var o=C(A[I],A,g);if("throw"!==o.type){var B=o.arg,Q=B.value;return Q&&"object"===t(Q)&&r.call(Q,"__await")?e.resolve(Q.__await).then((function(A){i("next",A,n,a)}),(function(A){i("throw",A,n,a)})):e.resolve(Q).then((function(A){B.value=A,n(B)}),(function(A){return i("throw",A,n,a)}))}a(o.arg)}var I;this._invoke=function(A,t){function r(){return new e((function(e,r){i(A,t,e,r)}))}return I=I?I.then(r,r):r()}}function m(A,t){var i=A.iterator[t.method];if(i===e){if(t.delegate=null,"throw"===t.method){if(A.iterator.return&&(t.method="return",t.arg=e,m(A,t),"throw"===t.method))return c;t.method="throw",t.arg=new TypeError("The iterator does not provide a \'throw\' method")}return c}var r=C(i,A.iterator,t.arg);if("throw"===r.type)return t.method="throw",t.arg=r.arg,t.delegate=null,c;var I=r.arg;return I?I.done?(t[A.resultName]=I.value,t.next=A.nextLoc,"return"!==t.method&&(t.method="next",t.arg=e),t.delegate=null,c):I:(t.method="throw",t.arg=new TypeError("iterator result is not an object"),t.delegate=null,c)}function G(A){var e={tryLoc:A[0]};1 in A&&(e.catchLoc=A[1]),2 in A&&(e.finallyLoc=A[2],e.afterLoc=A[3]),this.tryEntries.push(e)}function F(A){var e=A.completion||{};e.type="normal",delete e.arg,A.completion=e}function S(A){this.tryEntries=[{tryLoc:"root"}],A.forEach(G,this),this.reset(!0)}function v(A){if(A){var t=A[g];if(t)return t.call(A);if("function"==typeof A.next)return A;if(!isNaN(A.length)){var i=-1,I=function t(){for(;++i=0;--I){var g=this.tryEntries[I],n=g.completion;if("root"===g.tryLoc)return i("end");if(g.tryLoc<=this.prev){var a=r.call(g,"catchLoc"),o=r.call(g,"finallyLoc");if(a&&o){if(this.prev=0;--t){var i=this.tryEntries[t];if(i.tryLoc<=this.prev&&r.call(i,"finallyLoc")&&this.prev=0;--e){var t=this.tryEntries[e];if(t.finallyLoc===A)return this.complete(t.completion,t.afterLoc),F(t),c}},catch:function(A){for(var e=this.tryEntries.length-1;e>=0;--e){var t=this.tryEntries[e];if(t.tryLoc===A){var i=t.completion;if("throw"===i.type){var r=i.arg;F(t)}return r}}throw new Error("illegal catch attempt")},delegateYield:function(A,t,i){return this.delegate={iterator:v(A),resultName:t,nextLoc:i},"next"===this.method&&(this.arg=e),c}},A}(A.exports);try{regeneratorRuntime=e}catch(A){"object"===("undefined"==typeof globalThis?"undefined":t(globalThis))?globalThis.regeneratorRuntime=e:Function("r","regeneratorRuntime = r")(e)}}(i);var r=i.exports,I=new Map;function g(A,e){Array.isArray(A)||(A=[A]),A.forEach((function(A){return I.set(A,e)}))}function n(A){return a.apply(this,arguments)}function a(){return(a=e(r.mark((function A(e){var t,i;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:if(t=I.get(e.Compression)){A.next=3;break}throw new Error("Unknown compression method identifier: ".concat(e.Compression));case 3:return A.next=5,t();case 5:return i=A.sent,A.abrupt("return",new i(e));case 7:case"end":return A.stop()}}),A)})))).apply(this,arguments)}g([void 0,1],(function(){return Promise.resolve().then((function(){return y})).then((function(A){return A.default}))})),g(5,(function(){return Promise.resolve().then((function(){return F})).then((function(A){return A.default}))})),g(6,(function(){throw new Error("old style JPEG compression is not supported.")})),g(7,(function(){return Promise.resolve().then((function(){return N})).then((function(A){return A.default}))})),g([8,32946],(function(){return Promise.resolve().then((function(){return OA})).then((function(A){return A.default}))})),g(32773,(function(){return Promise.resolve().then((function(){return _A})).then((function(A){return A.default}))})),g(34887,(function(){return Promise.resolve().then((function(){return le})).then(function(){var A=e(r.mark((function A(e){return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return A.next=2,e.zstd.init();case 2:return A.abrupt("return",e);case 3:case"end":return A.stop()}}),A)})));return function(e){return A.apply(this,arguments)}}()).then((function(A){return A.default}))})),g(50001,(function(){return Promise.resolve().then((function(){return de})).then((function(A){return A.default}))}));var o=globalThis;function B(A,e){if(!(A instanceof e))throw new TypeError("Cannot call a class as a function")}function C(A,e){for(var t=0;t0;r--)A[i+e]+=A[i],i++;t-=e}while(t>0)}function l(A,e,t){for(var i=0,r=A.length,I=r/t;r>e;){for(var g=e;g>0;--g)A[i+e]+=A[i],++i;r-=e}for(var n=A.slice(),a=0;a=A.byteLength);++o){var B=void 0;if(2===e){switch(r[0]){case 8:B=new Uint8Array(A,o*a*t*n,a*t*n);break;case 16:B=new Uint16Array(A,o*a*t*n,a*t*n/2);break;case 32:B=new Uint32Array(A,o*a*t*n,a*t*n/4);break;default:throw new Error("Predictor 2 not allowed with ".concat(r[0]," bits per sample."))}h(B,a)}else 3===e&&l(B=new Uint8Array(A,o*a*t*n,a*t*n),a,n)}return A}o.addEventListener("message",function(){var A=e(r.mark((function A(e){var t,i,I,g,a,B;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return t=e.data,i=t.id,I=t.fileDirectory,g=t.buffer,A.next=3,n(I);case 3:return a=A.sent,A.next=6,a.decode(I,g);case 6:B=A.sent,o.postMessage({decoded:B,id:i},[B]);case 8:case"end":return A.stop()}}),A)})));return function(e){return A.apply(this,arguments)}}());var w=function(){function A(){B(this,A)}var t;return Q(A,[{key:"decode",value:(t=e(r.mark((function A(e,t){var i,I,g,n,a;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return A.next=2,this.decodeBlock(t);case 2:if(i=A.sent,1===(I=e.Predictor||1)){A.next=9;break}return g=!e.StripOffsets,n=g?e.TileWidth:e.ImageWidth,a=g?e.TileLength:e.RowsPerStrip||e.ImageLength,A.abrupt("return",u(i,I,n,a,e.BitsPerSample,e.PlanarConfiguration));case 9:return A.abrupt("return",i);case 10:case"end":return A.stop()}}),A,this)}))),function(A,e){return t.apply(this,arguments)})}]),A}();function d(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var D=function(A){s(t,w);var e=d(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:"decodeBlock",value:function(A){return A}}]),t}(),y=Object.freeze({__proto__:null,default:D});function k(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}function p(A,e){for(var t=e.length-1;t>=0;t--)A.push(e[t]);return A}function m(A){for(var e=new Uint16Array(4093),t=new Uint8Array(4093),i=0;i<=257;i++)e[i]=4096,t[i]=i;var r=258,I=9,g=0;function n(){r=258,I=9}function a(A){var e=function(A,e,t){var i=e%8,r=Math.floor(e/8),I=8-i,g=e+t-8*(r+1),n=8*(r+2)-(e+t),a=8*(r+2)-e;if(n=Math.max(0,n),r>=A.length)return console.warn("ran off the end of the buffer before finding EOI_CODE (end on input code)"),257;var o=A[r]&Math.pow(2,8-i)-1,B=o<<=t-I;if(r+1>>n;B+=C<<=Math.max(0,t-a)}if(g>8&&r+2>>Q}return B}(A,g,I);return g+=I,e}function o(A,i){return t[r]=i,e[r]=A,++r-1}function B(A){for(var i=[],r=A;4096!==r;r=e[r])i.push(t[r]);return i}var C=[];n();for(var Q,E=new Uint8Array(A),s=a(E);257!==s;){if(256===s){for(n(),s=a(E);256===s;)s=a(E);if(257===s)break;if(s>256)throw new Error("corrupted code at scanline ".concat(s));p(C,B(s)),Q=s}else if(s=Math.pow(2,I)&&(12===I?Q=void 0:I++),s=a(E)}return new Uint8Array(C)}var G=function(A){s(t,w);var e=k(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:"decodeBlock",value:function(A){return m(A).buffer}}]),t}(),F=Object.freeze({__proto__:null,default:G});function S(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var v=new Int32Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]);function R(A,e){for(var t=0,i=[],r=16;r>0&&!A[r-1];)--r;i.push({children:[],index:0});for(var I,g=i[0],n=0;n0;)g=i.pop();for(g.index++,i.push(g);i.length<=n;)i.push(I={children:[],index:0}),g.children[g.index]=I.children,g=I;t++}n+10)return f--,s>>f&1;if(255===(s=A[E++])){var e=A[E++];if(e)throw new Error("unexpected marker: ".concat((s<<8|e).toString(16)))}return f=7,s>>>7}function h(A){for(var e,i=A;null!==(e=c());){if("number"==typeof(i=i[e]))return i;if("object"!==t(i))throw new Error("invalid huffman sequence")}return null}function l(A){for(var e=A,t=0;e>0;){var i=c();if(null===i)return;t=t<<1|i,--e}return t}function u(A){var e=l(A);return e>=1<0)w--;else for(var t=g,i=n;t<=i;){var r=h(A.huffmanTableAC),I=15&r,a=r>>4;if(0===I){if(a<15){w=l(a)+(1<>4,0===C)r<15?(w=l(r)+(1<>4;if(0===g){if(n<15)break;r+=16}else e[v[r+=n]]=u(g),r++}};var L,b,M=0;b=1===U?r[0].blocksPerLine*r[0].blocksPerColumn:B*i.mcusPerColumn;for(var N=I||b;M=65488&&L<=65495))break;E+=2}return E-Q}function L(A,e){var t=[],i=e.blocksPerLine,r=e.blocksPerColumn,I=i<<3,g=new Int32Array(64),n=new Uint8Array(64);function a(A,t,i){var r,I,g,n,a,o,B,C,Q,E,s=e.quantizationTable,f=i;for(E=0;E<64;E++)f[E]=A[E]*s[E];for(E=0;E<8;++E){var c=8*E;0!==f[1+c]||0!==f[2+c]||0!==f[3+c]||0!==f[4+c]||0!==f[5+c]||0!==f[6+c]||0!==f[7+c]?(r=5793*f[0+c]+128>>8,I=5793*f[4+c]+128>>8,g=f[2+c],n=f[6+c],a=2896*(f[1+c]-f[7+c])+128>>8,C=2896*(f[1+c]+f[7+c])+128>>8,o=f[3+c]<<4,Q=r-I+1>>1,r=r+I+1>>1,I=Q,Q=3784*g+1567*n+128>>8,g=1567*g-3784*n+128>>8,n=Q,Q=a-(B=f[5+c]<<4)+1>>1,a=a+B+1>>1,B=Q,Q=C+o+1>>1,o=C-o+1>>1,C=Q,Q=r-n+1>>1,r=r+n+1>>1,n=Q,Q=I-g+1>>1,I=I+g+1>>1,g=Q,Q=2276*a+3406*C+2048>>12,a=3406*a-2276*C+2048>>12,C=Q,Q=799*o+4017*B+2048>>12,o=4017*o-799*B+2048>>12,B=Q,f[0+c]=r+C,f[7+c]=r-C,f[1+c]=I+B,f[6+c]=I-B,f[2+c]=g+o,f[5+c]=g-o,f[3+c]=n+a,f[4+c]=n-a):(Q=5793*f[0+c]+512>>10,f[0+c]=Q,f[1+c]=Q,f[2+c]=Q,f[3+c]=Q,f[4+c]=Q,f[5+c]=Q,f[6+c]=Q,f[7+c]=Q)}for(E=0;E<8;++E){var h=E;0!==f[8+h]||0!==f[16+h]||0!==f[24+h]||0!==f[32+h]||0!==f[40+h]||0!==f[48+h]||0!==f[56+h]?(r=5793*f[0+h]+2048>>12,I=5793*f[32+h]+2048>>12,g=f[16+h],n=f[48+h],a=2896*(f[8+h]-f[56+h])+2048>>12,C=2896*(f[8+h]+f[56+h])+2048>>12,o=f[24+h],Q=r-I+1>>1,r=r+I+1>>1,I=Q,Q=3784*g+1567*n+2048>>12,g=1567*g-3784*n+2048>>12,n=Q,Q=a-(B=f[40+h])+1>>1,a=a+B+1>>1,B=Q,Q=C+o+1>>1,o=C-o+1>>1,C=Q,Q=r-n+1>>1,r=r+n+1>>1,n=Q,Q=I-g+1>>1,I=I+g+1>>1,g=Q,Q=2276*a+3406*C+2048>>12,a=3406*a-2276*C+2048>>12,C=Q,Q=799*o+4017*B+2048>>12,o=4017*o-799*B+2048>>12,B=Q,f[0+h]=r+C,f[56+h]=r-C,f[8+h]=I+B,f[48+h]=I-B,f[16+h]=g+o,f[40+h]=g-o,f[24+h]=n+a,f[32+h]=n-a):(Q=5793*i[E+0]+8192>>14,f[0+h]=Q,f[8+h]=Q,f[16+h]=Q,f[24+h]=Q,f[32+h]=Q,f[40+h]=Q,f[48+h]=Q,f[56+h]=Q)}for(E=0;E<64;++E){var l=128+(f[E]+8>>4);t[E]=l<0?0:l>255?255:l}}for(var o=0;o>4==0)for(var C=0;C<64;C++){B[v[C]]=A[e++]}else{if(o>>4!=1)throw new Error("DQT: invalid table spec");for(var Q=0;Q<64;Q++){B[v[Q]]=t()}}this.quantizationTables[15&o]=B}break;case 65472:case 65473:case 65474:t();for(var E={extended:65473===g,progressive:65474===g,precision:A[e++],scanLines:t(),samplesPerLine:t(),components:{},componentsOrder:[]},s=A[e++],f=void 0,c=0;c>4,l=15&A[e+1],u=A[e+2];E.componentsOrder.push(f),E.components[f]={h:h,v:l,quantizationIdx:u},e+=3}i(E),this.frames.push(E);break;case 65476:for(var w=t(),d=2;d>4==0?this.huffmanTablesDC[15&D]=R(y,m):this.huffmanTablesAC[15&D]=R(y,m)}break;case 65501:t(),this.resetInterval=t();break;case 65498:t();for(var F=A[e++],S=[],L=this.frames[0],b=0;b>4],M.huffmanTableAC=this.huffmanTablesAC[15&N],S.push(M)}var x=A[e++],J=A[e++],q=A[e++],Y=U(A,e,L,S,this.resetInterval,x,J,q>>4,15&q);e+=Y;break;case 65535:255!==A[e]&&e--;break;default:if(255===A[e-3]&&A[e-2]>=192&&A[e-2]<=254){e-=3;break}throw new Error("unknown JPEG marker ".concat(g.toString(16)))}g=t()}}},{key:"getResult",value:function(){var A=this.frames;if(0===this.frames.length)throw new Error("no frames were decoded");this.frames.length>1&&console.warn("more than one frame is not supported");for(var e=0;e=0;)A[e]=0}x(new Array(576)),x(new Array(60)),x(new Array(512)),x(new Array(256)),x(new Array(29)),x(new Array(30));var J=function(A,e,t,i){for(var r=65535&A|0,I=A>>>16&65535|0,g=0;0!==t;){t-=g=t>2e3?2e3:t;do{I=I+(r=r+e[i++]|0)|0}while(--g);r%=65521,I%=65521}return r|I<<16|0},q=new Uint32Array(function(){for(var A,e=[],t=0;t<256;t++){A=t;for(var i=0;i<8;i++)A=1&A?3988292384^A>>>1:A>>>1;e[t]=A}return e}()),Y=function(A,e,t,i){var r=q,I=i+t;A^=-1;for(var g=i;g>>8^r[255&(A^e[g])];return-1^A},K={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},H={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8},O=function(A,e){return Object.prototype.hasOwnProperty.call(A,e)},P=function(A){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var i=e.shift();if(i){if("object"!==t(i))throw new TypeError(i+"must be non-object");for(var r in i)O(i,r)&&(A[r]=i[r])}}return A},T=function(A){for(var e=0,t=0,i=A.length;t=252?6:X>=248?5:X>=240?4:X>=224?3:X>=192?2:1;_[254]=_[254]=1;var Z=function(A){if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(A);var e,t,i,r,I,g=A.length,n=0;for(r=0;r>>6,e[I++]=128|63&t):t<65536?(e[I++]=224|t>>>12,e[I++]=128|t>>>6&63,e[I++]=128|63&t):(e[I++]=240|t>>>18,e[I++]=128|t>>>12&63,e[I++]=128|t>>>6&63,e[I++]=128|63&t);return e},j=function(A,e){var t,i,r=e||A.length;if("function"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(A.subarray(0,e));var I=new Array(2*r);for(i=0,t=0;t4)I[i++]=65533,t+=n-1;else{for(g&=2===n?31:3===n?15:7;n>1&&t1?I[i++]=65533:g<65536?I[i++]=g:(g-=65536,I[i++]=55296|g>>10&1023,I[i++]=56320|1023&g)}}}return function(A,e){if(e<65534&&A.subarray&&V)return String.fromCharCode.apply(null,A.length===e?A:A.subarray(0,e));for(var t="",i=0;iA.length&&(e=A.length);for(var t=e-1;t>=0&&128==(192&A[t]);)t--;return t<0||0===t?e:t+_[A[t]]>e?t:e};var z=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0},$=function(A,e){var t,i,r,I,g,n,a,o,B,C,Q,E,s,f,c,h,l,u,w,d,D,y,k,p,m=A.state;t=A.next_in,k=A.input,i=t+(A.avail_in-5),r=A.next_out,p=A.output,I=r-(e-A.avail_out),g=r+(A.avail_out-257),n=m.dmax,a=m.wsize,o=m.whave,B=m.wnext,C=m.window,Q=m.hold,E=m.bits,s=m.lencode,f=m.distcode,c=(1<>>=u=l>>>24,E-=u,0===(u=l>>>16&255))p[r++]=65535&l;else{if(!(16&u)){if(0==(64&u)){l=s[(65535&l)+(Q&(1<>>=u,E-=u),E<15&&(Q+=k[t++]<>>=u=l>>>24,E-=u,!(16&(u=l>>>16&255))){if(0==(64&u)){l=f[(65535&l)+(Q&(1<n){A.msg="invalid distance too far back",m.mode=30;break A}if(Q>>>=u,E-=u,d>(u=r-I)){if((u=d-u)>o&&m.sane){A.msg="invalid distance too far back",m.mode=30;break A}if(D=0,y=C,0===B){if(D+=a-u,u2;)p[r++]=y[D++],p[r++]=y[D++],p[r++]=y[D++],w-=3;w&&(p[r++]=y[D++],w>1&&(p[r++]=y[D++]))}else{D=r-d;do{p[r++]=p[D++],p[r++]=p[D++],p[r++]=p[D++],w-=3}while(w>2);w&&(p[r++]=p[D++],w>1&&(p[r++]=p[D++]))}break}}break}}while(t>3,Q&=(1<<(E-=w<<3))-1,A.next_in=t,A.next_out=r,A.avail_in=t=1&&0===v[d];d--);if(D>d&&(D=d),0===d)return r[I++]=20971520,r[I++]=20971520,n.bits=1,0;for(w=1;w0&&(0===A||1!==d))return-1;for(R[1]=0,l=1;l<15;l++)R[l+1]=R[l]+v[l];for(u=0;u852||2===A&&m>592)return 1;for(;;){s=l-k,g[u]E?(f=U[L+g[u]],c=F[S+g[u]]):(f=96,c=0),a=1<>k)+(o-=a)]=s<<24|f<<16|c|0}while(0!==o);for(a=1<>=1;if(0!==a?(G&=a-1,G+=a):G=0,u++,0==--v[l]){if(l===d)break;l=e[t+g[u]]}if(l>D&&(G&C)!==B){for(0===k&&(k=D),Q+=w,p=1<<(y=l-k);y+k852||2===A&&m>592)return 1;r[B=G&C]=D<<24|y<<16|Q-I|0}}return 0!==G&&(r[Q+G]=l-k<<24|64<<16|0),n.bits=D,0},IA=H.Z_FINISH,gA=H.Z_BLOCK,nA=H.Z_TREES,aA=H.Z_OK,oA=H.Z_STREAM_END,BA=H.Z_NEED_DICT,CA=H.Z_STREAM_ERROR,QA=H.Z_DATA_ERROR,EA=H.Z_MEM_ERROR,sA=H.Z_BUF_ERROR,fA=H.Z_DEFLATED,cA=function(A){return(A>>>24&255)+(A>>>8&65280)+((65280&A)<<8)+((255&A)<<24)};function hA(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}var lA,uA,wA=function(A){if(!A||!A.state)return CA;var e=A.state;return A.total_in=A.total_out=e.total=0,A.msg="",e.wrap&&(A.adler=1&e.wrap),e.mode=1,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Int32Array(852),e.distcode=e.distdyn=new Int32Array(592),e.sane=1,e.back=-1,aA},dA=function(A){if(!A||!A.state)return CA;var e=A.state;return e.wsize=0,e.whave=0,e.wnext=0,wA(A)},DA=function(A,e){var t;if(!A||!A.state)return CA;var i=A.state;return e<0?(t=0,e=-e):(t=1+(e>>4),e<48&&(e&=15)),e&&(e<8||e>15)?CA:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=t,i.wbits=e,dA(A))},yA=function(A,e){if(!A)return CA;var t=new hA;A.state=t,t.window=null;var i=DA(A,e);return i!==aA&&(A.state=null),i},kA=!0,pA=function(A){if(kA){lA=new Int32Array(512),uA=new Int32Array(32);for(var e=0;e<144;)A.lens[e++]=8;for(;e<256;)A.lens[e++]=9;for(;e<280;)A.lens[e++]=7;for(;e<288;)A.lens[e++]=8;for(rA(1,A.lens,0,288,lA,0,A.work,{bits:9}),e=0;e<32;)A.lens[e++]=5;rA(2,A.lens,0,32,uA,0,A.work,{bits:5}),kA=!1}A.lencode=lA,A.lenbits=9,A.distcode=uA,A.distbits=5},mA=function(A,e,t,i){var r,I=A.state;return null===I.window&&(I.wsize=1<=I.wsize?(I.window.set(e.subarray(t-I.wsize,t),0),I.wnext=0,I.whave=I.wsize):((r=I.wsize-I.wnext)>i&&(r=i),I.window.set(e.subarray(t-i,t-i+r),I.wnext),(i-=r)?(I.window.set(e.subarray(t-i,t),0),I.wnext=i,I.whave=I.wsize):(I.wnext+=r,I.wnext===I.wsize&&(I.wnext=0),I.whave>>8&255,t.check=Y(t.check,G,2,0),o=0,B=0,t.mode=2;break}if(t.flags=0,t.head&&(t.head.done=!1),!(1&t.wrap)||(((255&o)<<8)+(o>>8))%31){A.msg="incorrect header check",t.mode=30;break}if((15&o)!==fA){A.msg="unknown compression method",t.mode=30;break}if(B-=4,D=8+(15&(o>>>=4)),0===t.wbits)t.wbits=D;else if(D>t.wbits){A.msg="invalid window size",t.mode=30;break}t.dmax=1<>8&1),512&t.flags&&(G[0]=255&o,G[1]=o>>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0,t.mode=3;case 3:for(;B<32;){if(0===n)break A;n--,o+=i[I++]<>>8&255,G[2]=o>>>16&255,G[3]=o>>>24&255,t.check=Y(t.check,G,4,0)),o=0,B=0,t.mode=4;case 4:for(;B<16;){if(0===n)break A;n--,o+=i[I++]<>8),512&t.flags&&(G[0]=255&o,G[1]=o>>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0,t.mode=5;case 5:if(1024&t.flags){for(;B<16;){if(0===n)break A;n--,o+=i[I++]<>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0}else t.head&&(t.head.extra=null);t.mode=6;case 6:if(1024&t.flags&&((E=t.length)>n&&(E=n),E&&(t.head&&(D=t.head.extra_len-t.length,t.head.extra||(t.head.extra=new Uint8Array(t.head.extra_len)),t.head.extra.set(i.subarray(I,I+E),D)),512&t.flags&&(t.check=Y(t.check,i,E,I)),n-=E,I+=E,t.length-=E),t.length))break A;t.length=0,t.mode=7;case 7:if(2048&t.flags){if(0===n)break A;E=0;do{D=i[I+E++],t.head&&D&&t.length<65536&&(t.head.name+=String.fromCharCode(D))}while(D&&E>9&1,t.head.done=!0),A.adler=t.check=0,t.mode=12;break;case 10:for(;B<32;){if(0===n)break A;n--,o+=i[I++]<>>=7&B,B-=7&B,t.mode=27;break}for(;B<3;){if(0===n)break A;n--,o+=i[I++]<>>=1)){case 0:t.mode=14;break;case 1:if(pA(t),t.mode=20,e===nA){o>>>=2,B-=2;break A}break;case 2:t.mode=17;break;case 3:A.msg="invalid block type",t.mode=30}o>>>=2,B-=2;break;case 14:for(o>>>=7&B,B-=7&B;B<32;){if(0===n)break A;n--,o+=i[I++]<>>16^65535)){A.msg="invalid stored block lengths",t.mode=30;break}if(t.length=65535&o,o=0,B=0,t.mode=15,e===nA)break A;case 15:t.mode=16;case 16:if(E=t.length){if(E>n&&(E=n),E>a&&(E=a),0===E)break A;r.set(i.subarray(I,I+E),g),n-=E,I+=E,a-=E,g+=E,t.length-=E;break}t.mode=12;break;case 17:for(;B<14;){if(0===n)break A;n--,o+=i[I++]<>>=5,B-=5,t.ndist=1+(31&o),o>>>=5,B-=5,t.ncode=4+(15&o),o>>>=4,B-=4,t.nlen>286||t.ndist>30){A.msg="too many length or distance symbols",t.mode=30;break}t.have=0,t.mode=18;case 18:for(;t.have>>=3,B-=3}for(;t.have<19;)t.lens[F[t.have++]]=0;if(t.lencode=t.lendyn,t.lenbits=7,k={bits:t.lenbits},y=rA(0,t.lens,0,19,t.lencode,0,t.work,k),t.lenbits=k.bits,y){A.msg="invalid code lengths set",t.mode=30;break}t.have=0,t.mode=19;case 19:for(;t.have>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=c,B-=c,t.lens[t.have++]=l;else{if(16===l){for(p=c+2;B>>=c,B-=c,0===t.have){A.msg="invalid bit length repeat",t.mode=30;break}D=t.lens[t.have-1],E=3+(3&o),o>>>=2,B-=2}else if(17===l){for(p=c+3;B>>=c)),o>>>=3,B-=3}else{for(p=c+7;B>>=c)),o>>>=7,B-=7}if(t.have+E>t.nlen+t.ndist){A.msg="invalid bit length repeat",t.mode=30;break}for(;E--;)t.lens[t.have++]=D}}if(30===t.mode)break;if(0===t.lens[256]){A.msg="invalid code -- missing end-of-block",t.mode=30;break}if(t.lenbits=9,k={bits:t.lenbits},y=rA(1,t.lens,0,t.nlen,t.lencode,0,t.work,k),t.lenbits=k.bits,y){A.msg="invalid literal/lengths set",t.mode=30;break}if(t.distbits=6,t.distcode=t.distdyn,k={bits:t.distbits},y=rA(2,t.lens,t.nlen,t.ndist,t.distcode,0,t.work,k),t.distbits=k.bits,y){A.msg="invalid distances set",t.mode=30;break}if(t.mode=20,e===nA)break A;case 20:t.mode=21;case 21:if(n>=6&&a>=258){A.next_out=g,A.avail_out=a,A.next_in=I,A.avail_in=n,t.hold=o,t.bits=B,$(A,Q),g=A.next_out,r=A.output,a=A.avail_out,I=A.next_in,i=A.input,n=A.avail_in,o=t.hold,B=t.bits,12===t.mode&&(t.back=-1);break}for(t.back=0;h=(m=t.lencode[o&(1<>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>u)])>>>16&255,l=65535&m,!(u+(c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=u,B-=u,t.back+=u}if(o>>>=c,B-=c,t.back+=c,t.length=l,0===h){t.mode=26;break}if(32&h){t.back=-1,t.mode=12;break}if(64&h){A.msg="invalid literal/length code",t.mode=30;break}t.extra=15&h,t.mode=22;case 22:if(t.extra){for(p=t.extra;B>>=t.extra,B-=t.extra,t.back+=t.extra}t.was=t.length,t.mode=23;case 23:for(;h=(m=t.distcode[o&(1<>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>u)])>>>16&255,l=65535&m,!(u+(c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=u,B-=u,t.back+=u}if(o>>>=c,B-=c,t.back+=c,64&h){A.msg="invalid distance code",t.mode=30;break}t.offset=l,t.extra=15&h,t.mode=24;case 24:if(t.extra){for(p=t.extra;B>>=t.extra,B-=t.extra,t.back+=t.extra}if(t.offset>t.dmax){A.msg="invalid distance too far back",t.mode=30;break}t.mode=25;case 25:if(0===a)break A;if(E=Q-a,t.offset>E){if((E=t.offset-E)>t.whave&&t.sane){A.msg="invalid distance too far back",t.mode=30;break}E>t.wnext?(E-=t.wnext,s=t.wsize-E):s=t.wnext-E,E>t.length&&(E=t.length),f=t.window}else f=r,s=g-t.offset,E=t.length;E>a&&(E=a),a-=E,t.length-=E;do{r[g++]=f[s++]}while(--E);0===t.length&&(t.mode=21);break;case 26:if(0===a)break A;r[g++]=t.length,a--,t.mode=21;break;case 27:if(t.wrap){for(;B<32;){if(0===n)break A;n--,o|=i[I++]<=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||A&&A.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new z,this.strm.avail_out=0;var t=GA.inflateInit2(this.strm,e.windowBits);if(t!==UA)throw new Error(K[t]);if(this.header=new FA,GA.inflateGetHeader(this.strm,this.header),e.dictionary&&("string"==typeof e.dictionary?e.dictionary=Z(e.dictionary):"[object ArrayBuffer]"===SA.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(t=GA.inflateSetDictionary(this.strm,e.dictionary))!==UA))throw new Error(K[t])}function qA(A,e){var t=new JA(e);if(t.push(A),t.err)throw t.msg||K[t.err];return t.result}JA.prototype.push=function(A,e){var t,i,r,I=this.strm,g=this.options.chunkSize,n=this.options.dictionary;if(this.ended)return!1;for(i=e===~~e?e:!0===e?RA:vA,"[object ArrayBuffer]"===SA.call(A)?I.input=new Uint8Array(A):I.input=A,I.next_in=0,I.avail_in=I.input.length;;){for(0===I.avail_out&&(I.output=new Uint8Array(g),I.next_out=0,I.avail_out=g),(t=GA.inflate(I,i))===bA&&n&&((t=GA.inflateSetDictionary(I,n))===UA?t=GA.inflate(I,i):t===NA&&(t=bA));I.avail_in>0&&t===LA&&I.state.wrap>0&&0!==A[I.next_in];)GA.inflateReset(I),t=GA.inflate(I,i);switch(t){case MA:case NA:case bA:case xA:return this.onEnd(t),this.ended=!0,!1}if(r=I.avail_out,I.next_out&&(0===I.avail_out||t===LA))if("string"===this.options.to){var a=W(I.output,I.next_out),o=I.next_out-a,B=j(I.output,a);I.next_out=o,I.avail_out=g-o,o&&I.output.set(I.output.subarray(a,a+o),0),this.onData(B)}else this.onData(I.output.length===I.next_out?I.output:I.output.subarray(0,I.next_out));if(t!==UA||0!==r){if(t===LA)return t=GA.inflateEnd(this.strm),this.onEnd(t),this.ended=!0,!0;if(0===I.avail_in)break}}return!0},JA.prototype.onData=function(A){this.chunks.push(A)},JA.prototype.onEnd=function(A){A===UA&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=T(this.chunks)),this.chunks=[],this.err=A,this.msg=this.strm.msg};var YA={Inflate:JA,inflate:qA,inflateRaw:function(A,e){return(e=e||{}).raw=!0,qA(A,e)},ungzip:qA,constants:H}.inflate;function KA(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var HA=function(A){s(t,w);var e=KA(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:"decodeBlock",value:function(A){return YA(new Uint8Array(A)).buffer}}]),t}(),OA=Object.freeze({__proto__:null,default:HA});function PA(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var TA,VA=function(A){s(t,w);var e=PA(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:"decodeBlock",value:function(A){for(var e=new DataView(A),t=[],i=0;i>3],m<<=7&G),c=0;c>3]),128&m?(a&&(a[G]=1),f=f>(g=S.encoding<2?y[k++]:p)?g:f,n[G++]=g):(a&&(a[G]=0),n[G++]=i),m<<=1;G+=F}else if(S.encoding<2)for(h=0;h(g=y[k++])?g:f,n[G++]=g;G+=F}else for(f=f>p?p:f,h=0;h0){var g=new Uint8Array(Math.ceil(i.width*i.height/8)),n=(I=new DataView(A,e,i.mask.numBytes)).getInt16(0,!0),a=2,o=0;do{if(n>0)for(;n--;)g[o++]=I.getUint8(a++);else{var B=I.getUint8(a++);for(n=-n;n--;)g[o++]=B}n=I.getInt16(a,!0),a+=2}while(a0?1:0),s=Q+(i.height%Q>0?1:0);i.pixels.blocks=new Array(E*s);for(var f=0,c=0;c3)throw"Invalid block encoding ("+w.encoding+")";if(2!==w.encoding){if(0!==d&&2!==d){if(d>>=6,w.offsetType=d,2===d)w.offset=I.getInt8(1),l++;else if(1===d)w.offset=I.getInt16(1,!0),l+=2;else{if(0!==d)throw"Invalid block offset type";w.offset=I.getFloat32(1,!0),l+=4}if(1===w.encoding)if(d=I.getUint8(l),l++,w.bitsPerPixel=63&d,d>>=6,w.numValidPixelsType=d,2===d)w.numValidPixels=I.getUint8(l),l++;else if(1===d)w.numValidPixels=I.getUint16(l,!0),l+=2;else{if(0!==d)throw"Invalid valid pixel count type";w.numValidPixels=I.getUint32(l,!0),l+=4}}var D;if(e+=l,3!==w.encoding)if(0===w.encoding){var y=(i.pixels.numBytes-1)/4;if(y!==Math.floor(y))throw"uncompressed block has invalid length";D=new ArrayBuffer(4*y),new Uint8Array(D).set(new Uint8Array(A,e,4*y));var k=new Float32Array(D);w.rawData=k,e+=4*y}else if(1===w.encoding){var p=Math.ceil(w.numValidPixels*w.bitsPerPixel/8),m=Math.ceil(p/4);D=new ArrayBuffer(4*m),new Uint8Array(D).set(new Uint8Array(A,e,p)),w.stuffedData=new Uint32Array(D),e+=p}}else e++}return i.eofOffset=e,i},I=function(A,e,t,i,r,I,g){var n,a,o,B=(1<=e)a=o>>>Q-e&B,Q-=e;else{var f=e-Q;a=(o&B)<>>(Q=32-f)}I[n]=a=t?(o=B>>>f-t&E,f-=t):(o=(B&E)<<(C=t-f)&E,o+=(B=A[s++])>>>(f=32-C)),e[a]=r[o];else for(Q=Math.ceil((n-I)/g),a=0;a=t?(o=B>>>f-t&E,f-=t):(o=(B&E)<<(C=t-f)&E,o+=(B=A[s++])>>>(f=32-C)),e[a]=o=e?(Q=g>>>C-e&n,C-=e):(Q=(g&n)<<(B=e-C)&n,Q+=(g=A[a++])>>>(C=32-B)),E[o]=Q=t?(o=B>>>f&Q,s-=t,f+=t):(o=B>>>f&Q,s=32-(C=t-s),o|=((B=A[E++])&(1<=t?(o=B>>>f&Q,s-=t,f+=t):(o=B>>>f&Q,s=32-(C=t-s),o|=((B=A[E++])&(1<=e?(Q=g>>>E&n,C-=e,E+=e):(Q=g>>>E&n,C=32-(B=e-C),Q|=((g=A[a++])&(1<=t?(I=g>>>B-t&a,B-=t):(I=(g&a)<<(n=t-B)&a,I+=(g=A[o++])>>>(B=32-n)),e[r]=I;return e},C=function(A,e,t,i){var r,I,g,n,a=(1<=t?(I=g>>>C&a,B-=t,C+=t):(I=g>>>C&a,B=32-(n=t-B),I|=((g=A[o++])&(1<=359?359:r;r-=g;do{e+=A[I++]<<8,t+=e+=A[I++]}while(--g);e=(65535&e)+(e>>>16),t=(65535&t)+(t>>>16)}return 1&i&&(t+=e+=A[I]<<8),((t=(65535&t)+(t>>>16))<<16|(e=(65535&e)+(e>>>16)))>>>0},readHeaderInfo:function(A,e){var t=e.ptr,i=new Uint8Array(A,t,6),r={};if(r.fileIdentifierString=String.fromCharCode.apply(null,i),0!==r.fileIdentifierString.lastIndexOf("Lerc2",0))throw"Unexpected file identifier string (expect Lerc2 ): "+r.fileIdentifierString;t+=6;var I,g=new DataView(A,t,8),n=g.getInt32(0,!0);if(r.fileVersion=n,t+=4,n>=3&&(r.checksum=g.getUint32(4,!0),t+=4),g=new DataView(A,t,12),r.height=g.getUint32(0,!0),r.width=g.getUint32(4,!0),t+=8,n>=4?(r.numDims=g.getUint32(8,!0),t+=4):r.numDims=1,g=new DataView(A,t,40),r.numValidPixel=g.getUint32(0,!0),r.microBlockSize=g.getInt32(4,!0),r.blobSize=g.getInt32(8,!0),r.imageType=g.getInt32(12,!0),r.maxZError=g.getFloat64(16,!0),r.zMin=g.getFloat64(24,!0),r.zMax=g.getFloat64(32,!0),t+=40,e.headerInfo=r,e.ptr=t,n>=3&&(I=n>=4?52:48,this.computeChecksumFletcher32(new Uint8Array(A,t-I,r.blobSize-14))!==r.checksum))throw"Checksum failed.";return!0},checkMinMaxRanges:function(A,e){var t=e.headerInfo,i=this.getDataTypeArray(t.imageType),r=t.numDims*this.getDataTypeSize(t.imageType),I=this.readSubArray(A,e.ptr,i,r),g=this.readSubArray(A,e.ptr+r,i,r);e.ptr+=2*r;var n,a=!0;for(n=0;n0){t=new Uint8Array(Math.ceil(g/8));var B=(a=new DataView(A,r,o.numBytes)).getInt16(0,!0),C=2,Q=0,E=0;do{if(B>0)for(;B--;)t[Q++]=a.getUint8(C++);else for(E=a.getUint8(C++),B=-B;B--;)t[Q++]=E;B=a.getInt16(C,!0),C+=2}while(C>3],s<<=7&f):s=t[f>>3],128&s&&(i[f]=1);e.pixels.resultMask=i,o.bitset=t,r+=o.numBytes}return e.ptr=r,e.mask=o,!0},readDataOneSweep:function(A,e,t,i){var r,I=e.ptr,g=e.headerInfo,n=g.numDims,a=g.width*g.height,o=g.imageType,B=g.numValidPixel*Q.getDataTypeSize(o)*n,C=e.pixels.resultMask;if(t===Uint8Array)r=new Uint8Array(A,I,B);else{var E=new ArrayBuffer(B);new Uint8Array(E).set(new Uint8Array(A,I,B)),r=new t(E)}if(r.length===a*n)e.pixels.resultPixels=i?Q.swapDimensionOrder(r,a,n,t,!0):r;else{e.pixels.resultPixels=new t(a*n);var s=0,f=0,c=0,h=0;if(n>1){if(i){for(f=0;f=g)return!1;var n=new Uint32Array(g-I);Q.decodeBits(A,e,n);var a,o,B,C,s=[];for(a=I;a0&&(s[o].second=l<>>32-C,32-w>=C?32===(w+=C)&&(w=0,l=u[++d]):(w+=C-32,l=u[++d],s[o].second|=l>>>32-w));var D=0,y=0,k=new E;for(a=0;a=t?t:D;var p,m,G,F,S,v=[];for(a=I;a0)if(p=[C,o],C<=y)for(m=s[o].second<=0;F--)m>>>F&1?(S.right||(S.right=new E),S=S.right):(S.left||(S.left=new E),S=S.left),0!==F||S.val||(S.val=p[1]);return{decodeLut:v,numBitsLUTQick:y,numBitsLUT:D,tree:k,stuffedData:u,srcPtr:d,bitPos:w}},readHuffman:function(A,e,t,i){var r,I,g,n,a,o,B,C,E,s=e.headerInfo.numDims,f=e.headerInfo.height,c=e.headerInfo.width,h=c*f,l=this.readHuffmanTree(A,e),u=l.decodeLut,w=l.tree,d=l.stuffedData,D=l.srcPtr,y=l.bitPos,k=l.numBitsLUTQick,p=l.numBitsLUT,m=0===e.headerInfo.imageType?128:0,G=e.pixels.resultMask,F=0;y>0&&(D++,y=0);var S,v=d[D],R=1===e.encodeMode,U=new t(h*s),L=U;if(s<2||R){for(S=0;S1&&(L=new t(U.buffer,h*S,h),F=0),e.headerInfo.numValidPixel===c*f)for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,R?(g+=B>0?F:o>0?L[C-c]:F,g&=255,L[C]=g,F=g):L[C]=g}else for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,R?(B>0&&G[C-1]?g+=F:o>0&&G[C-c]?g+=L[C-c]:g+=F,g&=255,L[C]=g,F=g):L[C]=g}}else for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,L[C]=g}e.ptr=e.ptr+4*(D+1)+(y>0?4:0),e.pixels.resultPixels=U,s>1&&!i&&(e.pixels.resultPixels=Q.swapDimensionOrder(U,h,s,t))},decodeBits:function(A,e,t,i,r){var I=e.headerInfo,Q=I.fileVersion,E=0,s=A.byteLength-e.ptr>=5?5:A.byteLength-e.ptr,f=new DataView(A,e.ptr,s),c=f.getUint8(0);E++;var h=c>>6,l=0===h?4:3-h,u=(32&c)>0,w=31&c,d=0;if(1===l)d=f.getUint8(E),E++;else if(2===l)d=f.getUint16(E,!0),E+=2;else{if(4!==l)throw"Invalid valid pixel count type";d=f.getUint32(E,!0),E+=4}var D,y,k,p,m,G,F,S,v,R=2*I.maxZError,U=I.numDims>1?I.maxValues[r]:I.zMax;if(u){for(e.counter.lut++,S=f.getUint8(E),E++,p=Math.ceil((S-1)*w/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),k=new Uint8Array(y),e.ptr+=E,k.set(new Uint8Array(A,e.ptr,p)),F=new Uint32Array(y),e.ptr+=p,v=0;S-1>>>v;)v++;p=Math.ceil(d*v/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),(k=new Uint8Array(y)).set(new Uint8Array(A,e.ptr,p)),D=new Uint32Array(y),e.ptr+=p,G=Q>=3?o(F,w,S-1,i,R,U):n(F,w,S-1,i,R,U),Q>=3?a(D,t,v,d,G):g(D,t,v,d,G)}else e.counter.bitstuffer++,v=w,e.ptr+=E,v>0&&(p=Math.ceil(d*v/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),(k=new Uint8Array(y)).set(new Uint8Array(A,e.ptr,p)),D=new Uint32Array(y),e.ptr+=p,Q>=3?null==i?C(D,t,v,d):a(D,t,v,d,!1,i,R,U):null==i?B(D,t,v,d):g(D,t,v,d,!1,i,R,U))},readTiles:function(A,e,t,i){var r=e.headerInfo,I=r.width,g=r.height,n=I*g,a=r.microBlockSize,o=r.imageType,B=Q.getDataTypeSize(o),C=Math.ceil(I/a),E=Math.ceil(g/a);e.pixels.numBlocksY=E,e.pixels.numBlocksX=C,e.pixels.ptr=0;var s,f,c,h,l,u,w,d,D,y,k=0,p=0,m=0,G=0,F=0,S=0,v=0,R=0,U=0,L=0,b=0,M=0,N=0,x=0,J=0,q=new t(a*a),Y=g%a||a,K=I%a||a,H=r.numDims,O=e.pixels.resultMask,P=e.pixels.resultPixels,T=r.fileVersion>=5?14:15,V=r.zMax;for(m=0;m1?(y=P,L=m*I*a+G*a,P=new t(e.pixels.resultPixels.buffer,n*d*B,n),V=r.maxValues[d]):y=null,v=A.byteLength-e.ptr,f={},J=0,R=(s=new DataView(A,e.ptr,Math.min(10,v))).getUint8(0),J++,D=r.fileVersion>=5?4&R:0,U=R>>6&255,(R>>2&T)!=(G*a>>3&T))throw"integrity issue";if(D&&0===d)throw"integrity issue";if((l=3&R)>3)throw e.ptr+=J,"Invalid block encoding ("+l+")";if(2!==l)if(0===l){if(D)throw"integrity issue";if(e.counter.uncompressed++,e.ptr+=J,M=(M=F*S*B)<(N=A.byteLength-e.ptr)?M:N,c=new ArrayBuffer(M%B==0?M:M+B-M%B),new Uint8Array(c).set(new Uint8Array(A,e.ptr,M)),h=new t(c),x=0,O)for(k=0;k1&&!i&&(e.pixels.resultPixels=Q.swapDimensionOrder(e.pixels.resultPixels,n,H,t))},formatFileInfo:function(A){return{fileIdentifierString:A.headerInfo.fileIdentifierString,fileVersion:A.headerInfo.fileVersion,imageType:A.headerInfo.imageType,height:A.headerInfo.height,width:A.headerInfo.width,numValidPixel:A.headerInfo.numValidPixel,microBlockSize:A.headerInfo.microBlockSize,blobSize:A.headerInfo.blobSize,maxZError:A.headerInfo.maxZError,pixelType:Q.getPixelType(A.headerInfo.imageType),eofOffset:A.eofOffset,mask:A.mask?{numBytes:A.mask.numBytes}:null,pixels:{numBlocksX:A.pixels.numBlocksX,numBlocksY:A.pixels.numBlocksY,maxValue:A.headerInfo.zMax,minValue:A.headerInfo.zMin,noDataValue:A.noDataValue}}},constructConstantSurface:function(A,e){var t=A.headerInfo.zMax,i=A.headerInfo.zMin,r=A.headerInfo.maxValues,I=A.headerInfo.numDims,g=A.headerInfo.height*A.headerInfo.width,n=0,a=0,o=0,B=A.pixels.resultMask,C=A.pixels.resultPixels;if(B)if(I>1){if(e)for(n=0;n1&&i!==t)if(e)for(n=0;n=-128&&e<=127;break;case 1:t=e>=0&&e<=255;break;case 2:t=e>=-32768&&e<=32767;break;case 3:t=e>=0&&e<=65536;break;case 4:t=e>=-2147483648&&e<=2147483647;break;case 5:t=e>=0&&e<=4294967296;break;case 6:t=e>=-34027999387901484e22&&e<=34027999387901484e22;break;case 7:t=e>=-17976931348623157e292&&e<=17976931348623157e292;break;default:t=!1}return t},getDataTypeSize:function(A){var e=0;switch(A){case 0:case 1:e=1;break;case 2:case 3:e=2;break;case 4:case 5:case 6:e=4;break;case 7:e=8;break;default:e=A}return e},getDataTypeUsed:function(A,e){var t=A;switch(A){case 2:case 4:t=A-e;break;case 3:case 5:t=A-2*e;break;case 6:t=0===e?A:1===e?2:1;break;case 7:t=0===e?A:A-2*e+1;break;default:t=A}return t},getOnePixel:function(A,e,t,i){var r=0;switch(t){case 0:r=i.getInt8(e);break;case 1:r=i.getUint8(e);break;case 2:r=i.getInt16(e,!0);break;case 3:r=i.getUint16(e,!0);break;case 4:r=i.getInt32(e,!0);break;case 5:r=i.getUInt32(e,!0);break;case 6:r=i.getFloat32(e,!0);break;case 7:r=i.getFloat64(e,!0);break;default:throw"the decoder does not understand this pixel type"}return r},swapDimensionOrder:function(A,e,t,i,r){var I=0,g=0,n=0,a=0,o=A;if(t>1)if(o=new i(e*t),r)for(I=0;I5)throw"unsupported lerc version 2."+g;Q.readMask(A,r),I.numValidPixel===I.width*I.height||r.pixels.resultMask||(r.pixels.resultMask=e.maskData);var a=I.width*I.height;r.pixels.resultPixels=new n(a*I.numDims),r.counter={onesweep:0,uncompressed:0,lut:0,bitstuffer:0,constant:0,constantoffset:0};var o,B=!e.returnPixelInterleavedDims;if(0!==I.numValidPixel)if(I.zMax===I.zMin)Q.constructConstantSurface(r,B);else if(g>=4&&Q.checkMinMaxRanges(A,r))Q.constructConstantSurface(r,B);else{var C=new DataView(A,r.ptr,2),E=C.getUint8(0);if(r.ptr++,E)Q.readDataOneSweep(A,r,n,B);else if(g>1&&I.imageType<=1&&Math.abs(I.maxZError-.5)<1e-5){var s=C.getUint8(1);if(r.ptr++,r.encodeMode=s,s>2||g<4&&s>1)throw"Invalid Huffman flag "+s;s?Q.readHuffman(A,r,n,B):Q.readTiles(A,r,n,B)}else Q.readTiles(A,r,n,B)}r.eofOffset=r.ptr,e.inputOffset?(o=r.headerInfo.blobSize+e.inputOffset-r.ptr,Math.abs(o)>=1&&(r.eofOffset=e.inputOffset+r.headerInfo.blobSize)):(o=r.headerInfo.blobSize-r.ptr,Math.abs(o)>=1&&(r.eofOffset=r.headerInfo.blobSize));var f={width:I.width,height:I.height,pixelData:r.pixels.resultPixels,minValue:I.zMin,maxValue:I.zMax,validPixelCount:I.numValidPixel,dimCount:I.numDims,dimStats:{minValues:I.minValues,maxValues:I.maxValues},maskData:r.pixels.resultMask};if(r.pixels.resultMask&&Q.isValidPixelValue(I.imageType,t)){var c=r.pixels.resultMask;for(i=0;i1&&(o&&f.push(o),d.fileInfo.mask&&d.fileInfo.mask.numBytes>0&&w++),E++,u.pixels.push(d.pixelData),u.statistics.push({minValue:d.minValue,maxValue:d.maxValue,noDataValue:d.noDataValue,dimStats:d.dimStats})}if(i>1&&w>1){for(Q=u.width*u.height,u.bandMasks=f,(o=new Uint8Array(Q)).set(f[0]),B=1;B1&&void 0!==arguments[1]?arguments[1]:0;if(!jA)throw new Error("ZSTDDecoder: Await .init() before decoding.");var t=A.byteLength,i=jA.exports.malloc(t);WA.set(A,i),e=e||Number(jA.exports.ZSTD_findDecompressedSize(i,t));var r=jA.exports.malloc(e),I=jA.exports.ZSTD_decompress(r,e,i,t),g=WA.slice(r,r+I);return jA.exports.free(i),jA.exports.free(r),g}}]),A}(),ee="AGFzbQEAAAABpQEVYAF/AX9gAn9/AGADf39/AX9gBX9/f39/AX9gAX8AYAJ/fwF/YAR/f39/AX9gA39/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gAn9/AX5gAn5+AX5gAABgBX9/f39/AGAGf39/f39/AGAIf39/f39/f38AYAl/f39/f39/f38AYAABf2AIf39/f39/f38Bf2ANf39/f39/f39/f39/fwF/YAF/AX4CJwEDZW52H2Vtc2NyaXB0ZW5fbm90aWZ5X21lbW9yeV9ncm93dGgABANpaAEFAAAFAgEFCwACAQABAgIFBQcAAwABDgsBAQcAEhMHAAUBDAQEAAANBwQCAgYCBAgDAwMDBgEACQkHBgICAAYGAgQUBwYGAwIGAAMCAQgBBwUGCgoEEQAEBAEIAwgDBQgDEA8IAAcABAUBcAECAgUEAQCAAgYJAX8BQaCgwAILB2AHBm1lbW9yeQIABm1hbGxvYwAoBGZyZWUAJgxaU1REX2lzRXJyb3IAaBlaU1REX2ZpbmREZWNvbXByZXNzZWRTaXplAFQPWlNURF9kZWNvbXByZXNzAEoGX3N0YXJ0ACQJBwEAQQELASQKussBaA8AIAAgACgCBCABajYCBAsZACAAKAIAIAAoAgRBH3F0QQAgAWtBH3F2CwgAIABBiH9LC34BBH9BAyEBIAAoAgQiA0EgTQRAIAAoAggiASAAKAIQTwRAIAAQDQ8LIAAoAgwiAiABRgRAQQFBAiADQSBJGw8LIAAgASABIAJrIANBA3YiBCABIARrIAJJIgEbIgJrIgQ2AgggACADIAJBA3RrNgIEIAAgBCgAADYCAAsgAQsUAQF/IAAgARACIQIgACABEAEgAgv3AQECfyACRQRAIABCADcCACAAQQA2AhAgAEIANwIIQbh/DwsgACABNgIMIAAgAUEEajYCECACQQRPBEAgACABIAJqIgFBfGoiAzYCCCAAIAMoAAA2AgAgAUF/ai0AACIBBEAgAEEIIAEQFGs2AgQgAg8LIABBADYCBEF/DwsgACABNgIIIAAgAS0AACIDNgIAIAJBfmoiBEEBTQRAIARBAWtFBEAgACABLQACQRB0IANyIgM2AgALIAAgAS0AAUEIdCADajYCAAsgASACakF/ai0AACIBRQRAIABBADYCBEFsDwsgAEEoIAEQFCACQQN0ams2AgQgAgsWACAAIAEpAAA3AAAgACABKQAINwAICy8BAX8gAUECdEGgHWooAgAgACgCAEEgIAEgACgCBGprQR9xdnEhAiAAIAEQASACCyEAIAFCz9bTvtLHq9lCfiAAfEIfiUKHla+vmLbem55/fgsdAQF/IAAoAgggACgCDEYEfyAAKAIEQSBGBUEACwuCBAEDfyACQYDAAE8EQCAAIAEgAhBnIAAPCyAAIAJqIQMCQCAAIAFzQQNxRQRAAkAgAkEBSARAIAAhAgwBCyAAQQNxRQRAIAAhAgwBCyAAIQIDQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADTw0BIAJBA3ENAAsLAkAgA0F8cSIEQcAASQ0AIAIgBEFAaiIFSw0AA0AgAiABKAIANgIAIAIgASgCBDYCBCACIAEoAgg2AgggAiABKAIMNgIMIAIgASgCEDYCECACIAEoAhQ2AhQgAiABKAIYNgIYIAIgASgCHDYCHCACIAEoAiA2AiAgAiABKAIkNgIkIAIgASgCKDYCKCACIAEoAiw2AiwgAiABKAIwNgIwIAIgASgCNDYCNCACIAEoAjg2AjggAiABKAI8NgI8IAFBQGshASACQUBrIgIgBU0NAAsLIAIgBE8NAQNAIAIgASgCADYCACABQQRqIQEgAkEEaiICIARJDQALDAELIANBBEkEQCAAIQIMAQsgA0F8aiIEIABJBEAgACECDAELIAAhAgNAIAIgAS0AADoAACACIAEtAAE6AAEgAiABLQACOgACIAIgAS0AAzoAAyABQQRqIQEgAkEEaiICIARNDQALCyACIANJBEADQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADRw0ACwsgAAsMACAAIAEpAAA3AAALQQECfyAAKAIIIgEgACgCEEkEQEEDDwsgACAAKAIEIgJBB3E2AgQgACABIAJBA3ZrIgE2AgggACABKAAANgIAQQALDAAgACABKAIANgAAC/cCAQJ/AkAgACABRg0AAkAgASACaiAASwRAIAAgAmoiBCABSw0BCyAAIAEgAhALDwsgACABc0EDcSEDAkACQCAAIAFJBEAgAwRAIAAhAwwDCyAAQQNxRQRAIAAhAwwCCyAAIQMDQCACRQ0EIAMgAS0AADoAACABQQFqIQEgAkF/aiECIANBAWoiA0EDcQ0ACwwBCwJAIAMNACAEQQNxBEADQCACRQ0FIAAgAkF/aiICaiIDIAEgAmotAAA6AAAgA0EDcQ0ACwsgAkEDTQ0AA0AgACACQXxqIgJqIAEgAmooAgA2AgAgAkEDSw0ACwsgAkUNAgNAIAAgAkF/aiICaiABIAJqLQAAOgAAIAINAAsMAgsgAkEDTQ0AIAIhBANAIAMgASgCADYCACABQQRqIQEgA0EEaiEDIARBfGoiBEEDSw0ACyACQQNxIQILIAJFDQADQCADIAEtAAA6AAAgA0EBaiEDIAFBAWohASACQX9qIgINAAsLIAAL8wICAn8BfgJAIAJFDQAgACACaiIDQX9qIAE6AAAgACABOgAAIAJBA0kNACADQX5qIAE6AAAgACABOgABIANBfWogAToAACAAIAE6AAIgAkEHSQ0AIANBfGogAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa0iBUIghiAFhCEFIAMgBGohAQNAIAEgBTcDGCABIAU3AxAgASAFNwMIIAEgBTcDACABQSBqIQEgAkFgaiICQR9LDQALCyAACy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAIajYCACADCy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAFajYCACADCx8AIAAgASACKAIEEAg2AgAgARAEGiAAIAJBCGo2AgQLCAAgAGdBH3MLugUBDX8jAEEQayIKJAACfyAEQQNNBEAgCkEANgIMIApBDGogAyAEEAsaIAAgASACIApBDGpBBBAVIgBBbCAAEAMbIAAgACAESxsMAQsgAEEAIAEoAgBBAXRBAmoQECENQVQgAygAACIGQQ9xIgBBCksNABogAiAAQQVqNgIAIAMgBGoiAkF8aiEMIAJBeWohDiACQXtqIRAgAEEGaiELQQQhBSAGQQR2IQRBICAAdCIAQQFyIQkgASgCACEPQQAhAiADIQYCQANAIAlBAkggAiAPS3JFBEAgAiEHAkAgCARAA0AgBEH//wNxQf//A0YEQCAHQRhqIQcgBiAQSQR/IAZBAmoiBigAACAFdgUgBUEQaiEFIARBEHYLIQQMAQsLA0AgBEEDcSIIQQNGBEAgBUECaiEFIARBAnYhBCAHQQNqIQcMAQsLIAcgCGoiByAPSw0EIAVBAmohBQNAIAIgB0kEQCANIAJBAXRqQQA7AQAgAkEBaiECDAELCyAGIA5LQQAgBiAFQQN1aiIHIAxLG0UEQCAHKAAAIAVBB3EiBXYhBAwCCyAEQQJ2IQQLIAYhBwsCfyALQX9qIAQgAEF/anEiBiAAQQF0QX9qIgggCWsiEUkNABogBCAIcSIEQQAgESAEIABIG2shBiALCyEIIA0gAkEBdGogBkF/aiIEOwEAIAlBASAGayAEIAZBAUgbayEJA0AgCSAASARAIABBAXUhACALQX9qIQsMAQsLAn8gByAOS0EAIAcgBSAIaiIFQQN1aiIGIAxLG0UEQCAFQQdxDAELIAUgDCIGIAdrQQN0awshBSACQQFqIQIgBEUhCCAGKAAAIAVBH3F2IQQMAQsLQWwgCUEBRyAFQSBKcg0BGiABIAJBf2o2AgAgBiAFQQdqQQN1aiADawwBC0FQCyEAIApBEGokACAACwkAQQFBBSAAGwsMACAAIAEoAAA2AAALqgMBCn8jAEHwAGsiCiQAIAJBAWohDiAAQQhqIQtBgIAEIAVBf2p0QRB1IQxBACECQQEhBkEBIAV0IglBf2oiDyEIA0AgAiAORkUEQAJAIAEgAkEBdCINai8BACIHQf//A0YEQCALIAhBA3RqIAI2AgQgCEF/aiEIQQEhBwwBCyAGQQAgDCAHQRB0QRB1ShshBgsgCiANaiAHOwEAIAJBAWohAgwBCwsgACAFNgIEIAAgBjYCACAJQQN2IAlBAXZqQQNqIQxBACEAQQAhBkEAIQIDQCAGIA5GBEADQAJAIAAgCUYNACAKIAsgAEEDdGoiASgCBCIGQQF0aiICIAIvAQAiAkEBajsBACABIAUgAhAUayIIOgADIAEgAiAIQf8BcXQgCWs7AQAgASAEIAZBAnQiAmooAgA6AAIgASACIANqKAIANgIEIABBAWohAAwBCwsFIAEgBkEBdGouAQAhDUEAIQcDQCAHIA1ORQRAIAsgAkEDdGogBjYCBANAIAIgDGogD3EiAiAISw0ACyAHQQFqIQcMAQsLIAZBAWohBgwBCwsgCkHwAGokAAsjAEIAIAEQCSAAhUKHla+vmLbem55/fkLj3MqV/M7y9YV/fAsQACAAQn43AwggACABNgIACyQBAX8gAARAIAEoAgQiAgRAIAEoAgggACACEQEADwsgABAmCwsfACAAIAEgAi8BABAINgIAIAEQBBogACACQQRqNgIEC0oBAX9BoCAoAgAiASAAaiIAQX9MBEBBiCBBMDYCAEF/DwsCQCAAPwBBEHRNDQAgABBmDQBBiCBBMDYCAEF/DwtBoCAgADYCACABC9cBAQh/Qbp/IQoCQCACKAIEIgggAigCACIJaiIOIAEgAGtLDQBBbCEKIAkgBCADKAIAIgtrSw0AIAAgCWoiBCACKAIIIgxrIQ0gACABQWBqIg8gCyAJQQAQKSADIAkgC2o2AgACQAJAIAwgBCAFa00EQCANIQUMAQsgDCAEIAZrSw0CIAcgDSAFayIAaiIBIAhqIAdNBEAgBCABIAgQDxoMAgsgBCABQQAgAGsQDyEBIAIgACAIaiIINgIEIAEgAGshBAsgBCAPIAUgCEEBECkLIA4hCgsgCgubAgEBfyMAQYABayINJAAgDSADNgJ8AkAgAkEDSwRAQX8hCQwBCwJAAkACQAJAIAJBAWsOAwADAgELIAZFBEBBuH8hCQwEC0FsIQkgBS0AACICIANLDQMgACAHIAJBAnQiAmooAgAgAiAIaigCABA7IAEgADYCAEEBIQkMAwsgASAJNgIAQQAhCQwCCyAKRQRAQWwhCQwCC0EAIQkgC0UgDEEZSHINAUEIIAR0QQhqIQBBACECA0AgAiAATw0CIAJBQGshAgwAAAsAC0FsIQkgDSANQfwAaiANQfgAaiAFIAYQFSICEAMNACANKAJ4IgMgBEsNACAAIA0gDSgCfCAHIAggAxAYIAEgADYCACACIQkLIA1BgAFqJAAgCQsLACAAIAEgAhALGgsQACAALwAAIAAtAAJBEHRyCy8AAn9BuH8gAUEISQ0AGkFyIAAoAAQiAEF3Sw0AGkG4fyAAQQhqIgAgACABSxsLCwkAIAAgATsAAAsDAAELigYBBX8gACAAKAIAIgVBfnE2AgBBACAAIAVBAXZqQYQgKAIAIgQgAEYbIQECQAJAIAAoAgQiAkUNACACKAIAIgNBAXENACACQQhqIgUgA0EBdkF4aiIDQQggA0EISxtnQR9zQQJ0QYAfaiIDKAIARgRAIAMgAigCDDYCAAsgAigCCCIDBEAgAyACKAIMNgIECyACKAIMIgMEQCADIAIoAgg2AgALIAIgAigCACAAKAIAQX5xajYCAEGEICEAAkACQCABRQ0AIAEgAjYCBCABKAIAIgNBAXENASADQQF2QXhqIgNBCCADQQhLG2dBH3NBAnRBgB9qIgMoAgAgAUEIakYEQCADIAEoAgw2AgALIAEoAggiAwRAIAMgASgCDDYCBAsgASgCDCIDBEAgAyABKAIINgIAQYQgKAIAIQQLIAIgAigCACABKAIAQX5xajYCACABIARGDQAgASABKAIAQQF2akEEaiEACyAAIAI2AgALIAIoAgBBAXZBeGoiAEEIIABBCEsbZ0Efc0ECdEGAH2oiASgCACEAIAEgBTYCACACIAA2AgwgAkEANgIIIABFDQEgACAFNgIADwsCQCABRQ0AIAEoAgAiAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAigCACABQQhqRgRAIAIgASgCDDYCAAsgASgCCCICBEAgAiABKAIMNgIECyABKAIMIgIEQCACIAEoAgg2AgBBhCAoAgAhBAsgACAAKAIAIAEoAgBBfnFqIgI2AgACQCABIARHBEAgASABKAIAQQF2aiAANgIEIAAoAgAhAgwBC0GEICAANgIACyACQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgIoAgAhASACIABBCGoiAjYCACAAIAE2AgwgAEEANgIIIAFFDQEgASACNgIADwsgBUEBdkF4aiIBQQggAUEISxtnQR9zQQJ0QYAfaiICKAIAIQEgAiAAQQhqIgI2AgAgACABNgIMIABBADYCCCABRQ0AIAEgAjYCAAsLDgAgAARAIABBeGoQJQsLgAIBA38CQCAAQQ9qQXhxQYQgKAIAKAIAQQF2ayICEB1Bf0YNAAJAQYQgKAIAIgAoAgAiAUEBcQ0AIAFBAXZBeGoiAUEIIAFBCEsbZ0Efc0ECdEGAH2oiASgCACAAQQhqRgRAIAEgACgCDDYCAAsgACgCCCIBBEAgASAAKAIMNgIECyAAKAIMIgFFDQAgASAAKAIINgIAC0EBIQEgACAAKAIAIAJBAXRqIgI2AgAgAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAygCACECIAMgAEEIaiIDNgIAIAAgAjYCDCAAQQA2AgggAkUNACACIAM2AgALIAELtwIBA38CQAJAIABBASAAGyICEDgiAA0AAkACQEGEICgCACIARQ0AIAAoAgAiA0EBcQ0AIAAgA0EBcjYCACADQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgAgAEEIakYEQCABIAAoAgw2AgALIAAoAggiAQRAIAEgACgCDDYCBAsgACgCDCIBBEAgASAAKAIINgIACyACECchAkEAIQFBhCAoAgAhACACDQEgACAAKAIAQX5xNgIAQQAPCyACQQ9qQXhxIgMQHSICQX9GDQIgAkEHakF4cSIAIAJHBEAgACACaxAdQX9GDQMLAkBBhCAoAgAiAUUEQEGAICAANgIADAELIAAgATYCBAtBhCAgADYCACAAIANBAXRBAXI2AgAMAQsgAEUNAQsgAEEIaiEBCyABC7kDAQJ/IAAgA2ohBQJAIANBB0wEQANAIAAgBU8NAiAAIAItAAA6AAAgAEEBaiEAIAJBAWohAgwAAAsACyAEQQFGBEACQCAAIAJrIgZBB00EQCAAIAItAAA6AAAgACACLQABOgABIAAgAi0AAjoAAiAAIAItAAM6AAMgAEEEaiACIAZBAnQiBkHAHmooAgBqIgIQFyACIAZB4B5qKAIAayECDAELIAAgAhAMCyACQQhqIQIgAEEIaiEACwJAAkACQAJAIAUgAU0EQCAAIANqIQEgBEEBRyAAIAJrQQ9Kcg0BA0AgACACEAwgAkEIaiECIABBCGoiACABSQ0ACwwFCyAAIAFLBEAgACEBDAQLIARBAUcgACACa0EPSnINASAAIQMgAiEEA0AgAyAEEAwgBEEIaiEEIANBCGoiAyABSQ0ACwwCCwNAIAAgAhAHIAJBEGohAiAAQRBqIgAgAUkNAAsMAwsgACEDIAIhBANAIAMgBBAHIARBEGohBCADQRBqIgMgAUkNAAsLIAIgASAAa2ohAgsDQCABIAVPDQEgASACLQAAOgAAIAFBAWohASACQQFqIQIMAAALAAsLQQECfyAAIAAoArjgASIDNgLE4AEgACgCvOABIQQgACABNgK84AEgACABIAJqNgK44AEgACABIAQgA2tqNgLA4AELpgEBAX8gACAAKALs4QEQFjYCyOABIABCADcD+OABIABCADcDuOABIABBwOABakIANwMAIABBqNAAaiIBQYyAgOAANgIAIABBADYCmOIBIABCADcDiOEBIABCAzcDgOEBIABBrNABakHgEikCADcCACAAQbTQAWpB6BIoAgA2AgAgACABNgIMIAAgAEGYIGo2AgggACAAQaAwajYCBCAAIABBEGo2AgALYQEBf0G4fyEDAkAgAUEDSQ0AIAIgABAhIgFBA3YiADYCCCACIAFBAXE2AgQgAiABQQF2QQNxIgM2AgACQCADQX9qIgFBAksNAAJAIAFBAWsOAgEAAgtBbA8LIAAhAwsgAwsMACAAIAEgAkEAEC4LiAQCA38CfiADEBYhBCAAQQBBKBAQIQAgBCACSwRAIAQPCyABRQRAQX8PCwJAAkAgA0EBRg0AIAEoAAAiBkGo6r5pRg0AQXYhAyAGQXBxQdDUtMIBRw0BQQghAyACQQhJDQEgAEEAQSgQECEAIAEoAAQhASAAQQE2AhQgACABrTcDAEEADwsgASACIAMQLyIDIAJLDQAgACADNgIYQXIhAyABIARqIgVBf2otAAAiAkEIcQ0AIAJBIHEiBkUEQEFwIQMgBS0AACIFQacBSw0BIAVBB3GtQgEgBUEDdkEKaq2GIgdCA4h+IAd8IQggBEEBaiEECyACQQZ2IQMgAkECdiEFAkAgAkEDcUF/aiICQQJLBEBBACECDAELAkACQAJAIAJBAWsOAgECAAsgASAEai0AACECIARBAWohBAwCCyABIARqLwAAIQIgBEECaiEEDAELIAEgBGooAAAhAiAEQQRqIQQLIAVBAXEhBQJ+AkACQAJAIANBf2oiA0ECTQRAIANBAWsOAgIDAQtCfyAGRQ0DGiABIARqMQAADAMLIAEgBGovAACtQoACfAwCCyABIARqKAAArQwBCyABIARqKQAACyEHIAAgBTYCICAAIAI2AhwgACAHNwMAQQAhAyAAQQA2AhQgACAHIAggBhsiBzcDCCAAIAdCgIAIIAdCgIAIVBs+AhALIAMLWwEBf0G4fyEDIAIQFiICIAFNBH8gACACakF/ai0AACIAQQNxQQJ0QaAeaigCACACaiAAQQZ2IgFBAnRBsB5qKAIAaiAAQSBxIgBFaiABRSAAQQV2cWoFQbh/CwsdACAAKAKQ4gEQWiAAQQA2AqDiASAAQgA3A5DiAQu1AwEFfyMAQZACayIKJABBuH8hBgJAIAVFDQAgBCwAACIIQf8BcSEHAkAgCEF/TARAIAdBgn9qQQF2IgggBU8NAkFsIQYgB0GBf2oiBUGAAk8NAiAEQQFqIQdBACEGA0AgBiAFTwRAIAUhBiAIIQcMAwUgACAGaiAHIAZBAXZqIgQtAABBBHY6AAAgACAGQQFyaiAELQAAQQ9xOgAAIAZBAmohBgwBCwAACwALIAcgBU8NASAAIARBAWogByAKEFMiBhADDQELIAYhBEEAIQYgAUEAQTQQECEJQQAhBQNAIAQgBkcEQCAAIAZqIggtAAAiAUELSwRAQWwhBgwDBSAJIAFBAnRqIgEgASgCAEEBajYCACAGQQFqIQZBASAILQAAdEEBdSAFaiEFDAILAAsLQWwhBiAFRQ0AIAUQFEEBaiIBQQxLDQAgAyABNgIAQQFBASABdCAFayIDEBQiAXQgA0cNACAAIARqIAFBAWoiADoAACAJIABBAnRqIgAgACgCAEEBajYCACAJKAIEIgBBAkkgAEEBcXINACACIARBAWo2AgAgB0EBaiEGCyAKQZACaiQAIAYLxhEBDH8jAEHwAGsiBSQAQWwhCwJAIANBCkkNACACLwAAIQogAi8AAiEJIAIvAAQhByAFQQhqIAQQDgJAIAMgByAJIApqakEGaiIMSQ0AIAUtAAohCCAFQdgAaiACQQZqIgIgChAGIgsQAw0BIAVBQGsgAiAKaiICIAkQBiILEAMNASAFQShqIAIgCWoiAiAHEAYiCxADDQEgBUEQaiACIAdqIAMgDGsQBiILEAMNASAAIAFqIg9BfWohECAEQQRqIQZBASELIAAgAUEDakECdiIDaiIMIANqIgIgA2oiDiEDIAIhBCAMIQcDQCALIAMgEElxBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgCS0AAyELIAcgBiAFQUBrIAgQAkECdGoiCS8BADsAACAFQUBrIAktAAIQASAJLQADIQogBCAGIAVBKGogCBACQQJ0aiIJLwEAOwAAIAVBKGogCS0AAhABIAktAAMhCSADIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgDS0AAyENIAAgC2oiCyAGIAVB2ABqIAgQAkECdGoiAC8BADsAACAFQdgAaiAALQACEAEgAC0AAyEAIAcgCmoiCiAGIAVBQGsgCBACQQJ0aiIHLwEAOwAAIAVBQGsgBy0AAhABIActAAMhByAEIAlqIgkgBiAFQShqIAgQAkECdGoiBC8BADsAACAFQShqIAQtAAIQASAELQADIQQgAyANaiIDIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgACALaiEAIAcgCmohByAEIAlqIQQgAyANLQADaiEDIAVB2ABqEA0gBUFAaxANciAFQShqEA1yIAVBEGoQDXJFIQsMAQsLIAQgDksgByACS3INAEFsIQsgACAMSw0BIAxBfWohCQNAQQAgACAJSSAFQdgAahAEGwRAIAAgBiAFQdgAaiAIEAJBAnRqIgovAQA7AAAgBUHYAGogCi0AAhABIAAgCi0AA2oiACAGIAVB2ABqIAgQAkECdGoiCi8BADsAACAFQdgAaiAKLQACEAEgACAKLQADaiEADAEFIAxBfmohCgNAIAVB2ABqEAQgACAKS3JFBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgACAJLQADaiEADAELCwNAIAAgCk0EQCAAIAYgBUHYAGogCBACQQJ0aiIJLwEAOwAAIAVB2ABqIAktAAIQASAAIAktAANqIQAMAQsLAkAgACAMTw0AIAAgBiAFQdgAaiAIEAIiAEECdGoiDC0AADoAACAMLQADQQFGBEAgBUHYAGogDC0AAhABDAELIAUoAlxBH0sNACAFQdgAaiAGIABBAnRqLQACEAEgBSgCXEEhSQ0AIAVBIDYCXAsgAkF9aiEMA0BBACAHIAxJIAVBQGsQBBsEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiIAIAYgBUFAayAIEAJBAnRqIgcvAQA7AAAgBUFAayAHLQACEAEgACAHLQADaiEHDAEFIAJBfmohDANAIAVBQGsQBCAHIAxLckUEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwNAIAcgDE0EQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwJAIAcgAk8NACAHIAYgBUFAayAIEAIiAEECdGoiAi0AADoAACACLQADQQFGBEAgBUFAayACLQACEAEMAQsgBSgCREEfSw0AIAVBQGsgBiAAQQJ0ai0AAhABIAUoAkRBIUkNACAFQSA2AkQLIA5BfWohAgNAQQAgBCACSSAFQShqEAQbBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2oiACAGIAVBKGogCBACQQJ0aiIELwEAOwAAIAVBKGogBC0AAhABIAAgBC0AA2ohBAwBBSAOQX5qIQIDQCAFQShqEAQgBCACS3JFBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsDQCAEIAJNBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsCQCAEIA5PDQAgBCAGIAVBKGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBKGogAi0AAhABDAELIAUoAixBH0sNACAFQShqIAYgAEECdGotAAIQASAFKAIsQSFJDQAgBUEgNgIsCwNAQQAgAyAQSSAFQRBqEAQbBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2oiACAGIAVBEGogCBACQQJ0aiICLwEAOwAAIAVBEGogAi0AAhABIAAgAi0AA2ohAwwBBSAPQX5qIQIDQCAFQRBqEAQgAyACS3JFBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsDQCADIAJNBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsCQCADIA9PDQAgAyAGIAVBEGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBEGogAi0AAhABDAELIAUoAhRBH0sNACAFQRBqIAYgAEECdGotAAIQASAFKAIUQSFJDQAgBUEgNgIUCyABQWwgBUHYAGoQCiAFQUBrEApxIAVBKGoQCnEgBUEQahAKcRshCwwJCwAACwALAAALAAsAAAsACwAACwALQWwhCwsgBUHwAGokACALC7UEAQ5/IwBBEGsiBiQAIAZBBGogABAOQVQhBQJAIARB3AtJDQAgBi0ABCEHIANB8ARqQQBB7AAQECEIIAdBDEsNACADQdwJaiIJIAggBkEIaiAGQQxqIAEgAhAxIhAQA0UEQCAGKAIMIgQgB0sNASADQdwFaiEPIANBpAVqIREgAEEEaiESIANBqAVqIQEgBCEFA0AgBSICQX9qIQUgCCACQQJ0aigCAEUNAAsgAkEBaiEOQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgASALaiAKNgIAIAVBAWohBSAKIAxqIQoMAQsLIAEgCjYCAEEAIQUgBigCCCELA0AgBSALRkUEQCABIAUgCWotAAAiDEECdGoiDSANKAIAIg1BAWo2AgAgDyANQQF0aiINIAw6AAEgDSAFOgAAIAVBAWohBQwBCwtBACEBIANBADYCqAUgBEF/cyAHaiEJQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgAyALaiABNgIAIAwgBSAJanQgAWohASAFQQFqIQUMAQsLIAcgBEEBaiIBIAJrIgRrQQFqIQgDQEEBIQUgBCAIT0UEQANAIAUgDk9FBEAgBUECdCIJIAMgBEE0bGpqIAMgCWooAgAgBHY2AgAgBUEBaiEFDAELCyAEQQFqIQQMAQsLIBIgByAPIAogESADIAIgARBkIAZBAToABSAGIAc6AAYgACAGKAIENgIACyAQIQULIAZBEGokACAFC8ENAQt/IwBB8ABrIgUkAEFsIQkCQCADQQpJDQAgAi8AACEKIAIvAAIhDCACLwAEIQYgBUEIaiAEEA4CQCADIAYgCiAMampBBmoiDUkNACAFLQAKIQcgBUHYAGogAkEGaiICIAoQBiIJEAMNASAFQUBrIAIgCmoiAiAMEAYiCRADDQEgBUEoaiACIAxqIgIgBhAGIgkQAw0BIAVBEGogAiAGaiADIA1rEAYiCRADDQEgACABaiIOQX1qIQ8gBEEEaiEGQQEhCSAAIAFBA2pBAnYiAmoiCiACaiIMIAJqIg0hAyAMIQQgCiECA0AgCSADIA9JcQRAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAACAGIAVBQGsgBxACQQF0aiIILQAAIQsgBUFAayAILQABEAEgAiALOgAAIAYgBUEoaiAHEAJBAXRqIggtAAAhCyAFQShqIAgtAAEQASAEIAs6AAAgBiAFQRBqIAcQAkEBdGoiCC0AACELIAVBEGogCC0AARABIAMgCzoAACAGIAVB2ABqIAcQAkEBdGoiCC0AACELIAVB2ABqIAgtAAEQASAAIAs6AAEgBiAFQUBrIAcQAkEBdGoiCC0AACELIAVBQGsgCC0AARABIAIgCzoAASAGIAVBKGogBxACQQF0aiIILQAAIQsgBUEoaiAILQABEAEgBCALOgABIAYgBUEQaiAHEAJBAXRqIggtAAAhCyAFQRBqIAgtAAEQASADIAs6AAEgA0ECaiEDIARBAmohBCACQQJqIQIgAEECaiEAIAkgBUHYAGoQDUVxIAVBQGsQDUVxIAVBKGoQDUVxIAVBEGoQDUVxIQkMAQsLIAQgDUsgAiAMS3INAEFsIQkgACAKSw0BIApBfWohCQNAIAVB2ABqEAQgACAJT3JFBEAgBiAFQdgAaiAHEAJBAXRqIggtAAAhCyAFQdgAaiAILQABEAEgACALOgAAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAASAAQQJqIQAMAQsLA0AgBUHYAGoQBCAAIApPckUEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCwNAIAAgCkkEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCyAMQX1qIQADQCAFQUBrEAQgAiAAT3JFBEAgBiAFQUBrIAcQAkEBdGoiCi0AACEJIAVBQGsgCi0AARABIAIgCToAACAGIAVBQGsgBxACQQF0aiIKLQAAIQkgBUFAayAKLQABEAEgAiAJOgABIAJBAmohAgwBCwsDQCAFQUBrEAQgAiAMT3JFBEAgBiAFQUBrIAcQAkEBdGoiAC0AACEKIAVBQGsgAC0AARABIAIgCjoAACACQQFqIQIMAQsLA0AgAiAMSQRAIAYgBUFAayAHEAJBAXRqIgAtAAAhCiAFQUBrIAAtAAEQASACIAo6AAAgAkEBaiECDAELCyANQX1qIQADQCAFQShqEAQgBCAAT3JFBEAgBiAFQShqIAcQAkEBdGoiAi0AACEKIAVBKGogAi0AARABIAQgCjoAACAGIAVBKGogBxACQQF0aiICLQAAIQogBUEoaiACLQABEAEgBCAKOgABIARBAmohBAwBCwsDQCAFQShqEAQgBCANT3JFBEAgBiAFQShqIAcQAkEBdGoiAC0AACECIAVBKGogAC0AARABIAQgAjoAACAEQQFqIQQMAQsLA0AgBCANSQRAIAYgBUEoaiAHEAJBAXRqIgAtAAAhAiAFQShqIAAtAAEQASAEIAI6AAAgBEEBaiEEDAELCwNAIAVBEGoQBCADIA9PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIAYgBUEQaiAHEAJBAXRqIgAtAAAhAiAFQRBqIAAtAAEQASADIAI6AAEgA0ECaiEDDAELCwNAIAVBEGoQBCADIA5PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIANBAWohAwwBCwsDQCADIA5JBEAgBiAFQRBqIAcQAkEBdGoiAC0AACECIAVBEGogAC0AARABIAMgAjoAACADQQFqIQMMAQsLIAFBbCAFQdgAahAKIAVBQGsQCnEgBUEoahAKcSAFQRBqEApxGyEJDAELQWwhCQsgBUHwAGokACAJC8oCAQR/IwBBIGsiBSQAIAUgBBAOIAUtAAIhByAFQQhqIAIgAxAGIgIQA0UEQCAEQQRqIQIgACABaiIDQX1qIQQDQCAFQQhqEAQgACAET3JFBEAgAiAFQQhqIAcQAkEBdGoiBi0AACEIIAVBCGogBi0AARABIAAgCDoAACACIAVBCGogBxACQQF0aiIGLQAAIQggBUEIaiAGLQABEAEgACAIOgABIABBAmohAAwBCwsDQCAFQQhqEAQgACADT3JFBEAgAiAFQQhqIAcQAkEBdGoiBC0AACEGIAVBCGogBC0AARABIAAgBjoAACAAQQFqIQAMAQsLA0AgACADT0UEQCACIAVBCGogBxACQQF0aiIELQAAIQYgBUEIaiAELQABEAEgACAGOgAAIABBAWohAAwBCwsgAUFsIAVBCGoQChshAgsgBUEgaiQAIAILtgMBCX8jAEEQayIGJAAgBkEANgIMIAZBADYCCEFUIQQCQAJAIANBQGsiDCADIAZBCGogBkEMaiABIAIQMSICEAMNACAGQQRqIAAQDiAGKAIMIgcgBi0ABEEBaksNASAAQQRqIQogBkEAOgAFIAYgBzoABiAAIAYoAgQ2AgAgB0EBaiEJQQEhBANAIAQgCUkEQCADIARBAnRqIgEoAgAhACABIAU2AgAgACAEQX9qdCAFaiEFIARBAWohBAwBCwsgB0EBaiEHQQAhBSAGKAIIIQkDQCAFIAlGDQEgAyAFIAxqLQAAIgRBAnRqIgBBASAEdEEBdSILIAAoAgAiAWoiADYCACAHIARrIQhBACEEAkAgC0EDTQRAA0AgBCALRg0CIAogASAEakEBdGoiACAIOgABIAAgBToAACAEQQFqIQQMAAALAAsDQCABIABPDQEgCiABQQF0aiIEIAg6AAEgBCAFOgAAIAQgCDoAAyAEIAU6AAIgBCAIOgAFIAQgBToABCAEIAg6AAcgBCAFOgAGIAFBBGohAQwAAAsACyAFQQFqIQUMAAALAAsgAiEECyAGQRBqJAAgBAutAQECfwJAQYQgKAIAIABHIAAoAgBBAXYiAyABa0F4aiICQXhxQQhHcgR/IAIFIAMQJ0UNASACQQhqC0EQSQ0AIAAgACgCACICQQFxIAAgAWpBD2pBeHEiASAAa0EBdHI2AgAgASAANgIEIAEgASgCAEEBcSAAIAJBAXZqIAFrIgJBAXRyNgIAQYQgIAEgAkH/////B3FqQQRqQYQgKAIAIABGGyABNgIAIAEQJQsLygIBBX8CQAJAAkAgAEEIIABBCEsbZ0EfcyAAaUEBR2oiAUEESSAAIAF2cg0AIAFBAnRB/B5qKAIAIgJFDQADQCACQXhqIgMoAgBBAXZBeGoiBSAATwRAIAIgBUEIIAVBCEsbZ0Efc0ECdEGAH2oiASgCAEYEQCABIAIoAgQ2AgALDAMLIARBHksNASAEQQFqIQQgAigCBCICDQALC0EAIQMgAUEgTw0BA0AgAUECdEGAH2ooAgAiAkUEQCABQR5LIQIgAUEBaiEBIAJFDQEMAwsLIAIgAkF4aiIDKAIAQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgBGBEAgASACKAIENgIACwsgAigCACIBBEAgASACKAIENgIECyACKAIEIgEEQCABIAIoAgA2AgALIAMgAygCAEEBcjYCACADIAAQNwsgAwvhCwINfwV+IwBB8ABrIgckACAHIAAoAvDhASIINgJcIAEgAmohDSAIIAAoAoDiAWohDwJAAkAgBUUEQCABIQQMAQsgACgCxOABIRAgACgCwOABIREgACgCvOABIQ4gAEEBNgKM4QFBACEIA0AgCEEDRwRAIAcgCEECdCICaiAAIAJqQazQAWooAgA2AkQgCEEBaiEIDAELC0FsIQwgB0EYaiADIAQQBhADDQEgB0EsaiAHQRhqIAAoAgAQEyAHQTRqIAdBGGogACgCCBATIAdBPGogB0EYaiAAKAIEEBMgDUFgaiESIAEhBEEAIQwDQCAHKAIwIAcoAixBA3RqKQIAIhRCEIinQf8BcSEIIAcoAkAgBygCPEEDdGopAgAiFUIQiKdB/wFxIQsgBygCOCAHKAI0QQN0aikCACIWQiCIpyEJIBVCIIghFyAUQiCIpyECAkAgFkIQiKdB/wFxIgNBAk8EQAJAIAZFIANBGUlyRQRAIAkgB0EYaiADQSAgBygCHGsiCiAKIANLGyIKEAUgAyAKayIDdGohCSAHQRhqEAQaIANFDQEgB0EYaiADEAUgCWohCQwBCyAHQRhqIAMQBSAJaiEJIAdBGGoQBBoLIAcpAkQhGCAHIAk2AkQgByAYNwNIDAELAkAgA0UEQCACBEAgBygCRCEJDAMLIAcoAkghCQwBCwJAAkAgB0EYakEBEAUgCSACRWpqIgNBA0YEQCAHKAJEQX9qIgMgA0VqIQkMAQsgA0ECdCAHaigCRCIJIAlFaiEJIANBAUYNAQsgByAHKAJINgJMCwsgByAHKAJENgJIIAcgCTYCRAsgF6chAyALBEAgB0EYaiALEAUgA2ohAwsgCCALakEUTwRAIAdBGGoQBBoLIAgEQCAHQRhqIAgQBSACaiECCyAHQRhqEAQaIAcgB0EYaiAUQhiIp0H/AXEQCCAUp0H//wNxajYCLCAHIAdBGGogFUIYiKdB/wFxEAggFadB//8DcWo2AjwgB0EYahAEGiAHIAdBGGogFkIYiKdB/wFxEAggFqdB//8DcWo2AjQgByACNgJgIAcoAlwhCiAHIAk2AmggByADNgJkAkACQAJAIAQgAiADaiILaiASSw0AIAIgCmoiEyAPSw0AIA0gBGsgC0Egak8NAQsgByAHKQNoNwMQIAcgBykDYDcDCCAEIA0gB0EIaiAHQdwAaiAPIA4gESAQEB4hCwwBCyACIARqIQggBCAKEAcgAkERTwRAIARBEGohAgNAIAIgCkEQaiIKEAcgAkEQaiICIAhJDQALCyAIIAlrIQIgByATNgJcIAkgCCAOa0sEQCAJIAggEWtLBEBBbCELDAILIBAgAiAOayICaiIKIANqIBBNBEAgCCAKIAMQDxoMAgsgCCAKQQAgAmsQDyEIIAcgAiADaiIDNgJkIAggAmshCCAOIQILIAlBEE8EQCADIAhqIQMDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALDAELAkAgCUEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgCUECdCIDQcAeaigCAGoiAhAXIAIgA0HgHmooAgBrIQIgBygCZCEDDAELIAggAhAMCyADQQlJDQAgAyAIaiEDIAhBCGoiCCACQQhqIgJrQQ9MBEADQCAIIAIQDCACQQhqIQIgCEEIaiIIIANJDQAMAgALAAsDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALCyAHQRhqEAQaIAsgDCALEAMiAhshDCAEIAQgC2ogAhshBCAFQX9qIgUNAAsgDBADDQFBbCEMIAdBGGoQBEECSQ0BQQAhCANAIAhBA0cEQCAAIAhBAnQiAmpBrNABaiACIAdqKAJENgIAIAhBAWohCAwBCwsgBygCXCEIC0G6fyEMIA8gCGsiACANIARrSw0AIAQEfyAEIAggABALIABqBUEACyABayEMCyAHQfAAaiQAIAwLkRcCFn8FfiMAQdABayIHJAAgByAAKALw4QEiCDYCvAEgASACaiESIAggACgCgOIBaiETAkACQCAFRQRAIAEhAwwBCyAAKALE4AEhESAAKALA4AEhFSAAKAK84AEhDyAAQQE2AozhAUEAIQgDQCAIQQNHBEAgByAIQQJ0IgJqIAAgAmpBrNABaigCADYCVCAIQQFqIQgMAQsLIAcgETYCZCAHIA82AmAgByABIA9rNgJoQWwhECAHQShqIAMgBBAGEAMNASAFQQQgBUEESBshFyAHQTxqIAdBKGogACgCABATIAdBxABqIAdBKGogACgCCBATIAdBzABqIAdBKGogACgCBBATQQAhBCAHQeAAaiEMIAdB5ABqIQoDQCAHQShqEARBAksgBCAXTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEJIAcoAkggBygCREEDdGopAgAiH0IgiKchCCAeQiCIISAgHUIgiKchAgJAIB9CEIinQf8BcSIDQQJPBEACQCAGRSADQRlJckUEQCAIIAdBKGogA0EgIAcoAixrIg0gDSADSxsiDRAFIAMgDWsiA3RqIQggB0EoahAEGiADRQ0BIAdBKGogAxAFIAhqIQgMAQsgB0EoaiADEAUgCGohCCAHQShqEAQaCyAHKQJUISEgByAINgJUIAcgITcDWAwBCwJAIANFBEAgAgRAIAcoAlQhCAwDCyAHKAJYIQgMAQsCQAJAIAdBKGpBARAFIAggAkVqaiIDQQNGBEAgBygCVEF/aiIDIANFaiEIDAELIANBAnQgB2ooAlQiCCAIRWohCCADQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAg2AlQLICCnIQMgCQRAIAdBKGogCRAFIANqIQMLIAkgC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgAmohAgsgB0EoahAEGiAHIAcoAmggAmoiCSADajYCaCAKIAwgCCAJSxsoAgAhDSAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogB0EoaiAfQhiIp0H/AXEQCCEOIAdB8ABqIARBBHRqIgsgCSANaiAIazYCDCALIAg2AgggCyADNgIEIAsgAjYCACAHIA4gH6dB//8DcWo2AkQgBEEBaiEEDAELCyAEIBdIDQEgEkFgaiEYIAdB4ABqIRogB0HkAGohGyABIQMDQCAHQShqEARBAksgBCAFTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEIIAcoAkggBygCREEDdGopAgAiH0IgiKchCSAeQiCIISAgHUIgiKchDAJAIB9CEIinQf8BcSICQQJPBEACQCAGRSACQRlJckUEQCAJIAdBKGogAkEgIAcoAixrIgogCiACSxsiChAFIAIgCmsiAnRqIQkgB0EoahAEGiACRQ0BIAdBKGogAhAFIAlqIQkMAQsgB0EoaiACEAUgCWohCSAHQShqEAQaCyAHKQJUISEgByAJNgJUIAcgITcDWAwBCwJAIAJFBEAgDARAIAcoAlQhCQwDCyAHKAJYIQkMAQsCQAJAIAdBKGpBARAFIAkgDEVqaiICQQNGBEAgBygCVEF/aiICIAJFaiEJDAELIAJBAnQgB2ooAlQiCSAJRWohCSACQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAk2AlQLICCnIRQgCARAIAdBKGogCBAFIBRqIRQLIAggC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgDGohDAsgB0EoahAEGiAHIAcoAmggDGoiGSAUajYCaCAbIBogCSAZSxsoAgAhHCAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogByAHQShqIB9CGIinQf8BcRAIIB+nQf//A3FqNgJEIAcgB0HwAGogBEEDcUEEdGoiDSkDCCIdNwPIASAHIA0pAwAiHjcDwAECQAJAAkAgBygCvAEiDiAepyICaiIWIBNLDQAgAyAHKALEASIKIAJqIgtqIBhLDQAgEiADayALQSBqTw0BCyAHIAcpA8gBNwMQIAcgBykDwAE3AwggAyASIAdBCGogB0G8AWogEyAPIBUgERAeIQsMAQsgAiADaiEIIAMgDhAHIAJBEU8EQCADQRBqIQIDQCACIA5BEGoiDhAHIAJBEGoiAiAISQ0ACwsgCCAdpyIOayECIAcgFjYCvAEgDiAIIA9rSwRAIA4gCCAVa0sEQEFsIQsMAgsgESACIA9rIgJqIhYgCmogEU0EQCAIIBYgChAPGgwCCyAIIBZBACACaxAPIQggByACIApqIgo2AsQBIAggAmshCCAPIQILIA5BEE8EQCAIIApqIQoDQCAIIAIQByACQRBqIQIgCEEQaiIIIApJDQALDAELAkAgDkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgDkECdCIKQcAeaigCAGoiAhAXIAIgCkHgHmooAgBrIQIgBygCxAEhCgwBCyAIIAIQDAsgCkEJSQ0AIAggCmohCiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAKSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAKSQ0ACwsgCxADBEAgCyEQDAQFIA0gDDYCACANIBkgHGogCWs2AgwgDSAJNgIIIA0gFDYCBCAEQQFqIQQgAyALaiEDDAILAAsLIAQgBUgNASAEIBdrIQtBACEEA0AgCyAFSARAIAcgB0HwAGogC0EDcUEEdGoiAikDCCIdNwPIASAHIAIpAwAiHjcDwAECQAJAAkAgBygCvAEiDCAepyICaiIKIBNLDQAgAyAHKALEASIJIAJqIhBqIBhLDQAgEiADayAQQSBqTw0BCyAHIAcpA8gBNwMgIAcgBykDwAE3AxggAyASIAdBGGogB0G8AWogEyAPIBUgERAeIRAMAQsgAiADaiEIIAMgDBAHIAJBEU8EQCADQRBqIQIDQCACIAxBEGoiDBAHIAJBEGoiAiAISQ0ACwsgCCAdpyIGayECIAcgCjYCvAEgBiAIIA9rSwRAIAYgCCAVa0sEQEFsIRAMAgsgESACIA9rIgJqIgwgCWogEU0EQCAIIAwgCRAPGgwCCyAIIAxBACACaxAPIQggByACIAlqIgk2AsQBIAggAmshCCAPIQILIAZBEE8EQCAIIAlqIQYDQCAIIAIQByACQRBqIQIgCEEQaiIIIAZJDQALDAELAkAgBkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgBkECdCIGQcAeaigCAGoiAhAXIAIgBkHgHmooAgBrIQIgBygCxAEhCQwBCyAIIAIQDAsgCUEJSQ0AIAggCWohBiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAGSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAGSQ0ACwsgEBADDQMgC0EBaiELIAMgEGohAwwBCwsDQCAEQQNHBEAgACAEQQJ0IgJqQazQAWogAiAHaigCVDYCACAEQQFqIQQMAQsLIAcoArwBIQgLQbp/IRAgEyAIayIAIBIgA2tLDQAgAwR/IAMgCCAAEAsgAGoFQQALIAFrIRALIAdB0AFqJAAgEAslACAAQgA3AgAgAEEAOwEIIABBADoACyAAIAE2AgwgACACOgAKC7QFAQN/IwBBMGsiBCQAIABB/wFqIgVBfWohBgJAIAMvAQIEQCAEQRhqIAEgAhAGIgIQAw0BIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahASOgAAIAMgBEEIaiAEQRhqEBI6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0FIAEgBEEQaiAEQRhqEBI6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBSABIARBCGogBEEYahASOgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEjoAACABIAJqIABrIQIMAwsgAyAEQRBqIARBGGoQEjoAAiADIARBCGogBEEYahASOgADIANBBGohAwwAAAsACyAEQRhqIAEgAhAGIgIQAw0AIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahAROgAAIAMgBEEIaiAEQRhqEBE6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0EIAEgBEEQaiAEQRhqEBE6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBCABIARBCGogBEEYahAROgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEToAACABIAJqIABrIQIMAgsgAyAEQRBqIARBGGoQEToAAiADIARBCGogBEEYahAROgADIANBBGohAwwAAAsACyAEQTBqJAAgAgtpAQF/An8CQAJAIAJBB00NACABKAAAQbfIwuF+Rw0AIAAgASgABDYCmOIBQWIgAEEQaiABIAIQPiIDEAMNAhogAEKBgICAEDcDiOEBIAAgASADaiACIANrECoMAQsgACABIAIQKgtBAAsLrQMBBn8jAEGAAWsiAyQAQWIhCAJAIAJBCUkNACAAQZjQAGogAUEIaiIEIAJBeGogAEGY0AAQMyIFEAMiBg0AIANBHzYCfCADIANB/ABqIANB+ABqIAQgBCAFaiAGGyIEIAEgAmoiAiAEaxAVIgUQAw0AIAMoAnwiBkEfSw0AIAMoAngiB0EJTw0AIABBiCBqIAMgBkGAC0GADCAHEBggA0E0NgJ8IAMgA0H8AGogA0H4AGogBCAFaiIEIAIgBGsQFSIFEAMNACADKAJ8IgZBNEsNACADKAJ4IgdBCk8NACAAQZAwaiADIAZBgA1B4A4gBxAYIANBIzYCfCADIANB/ABqIANB+ABqIAQgBWoiBCACIARrEBUiBRADDQAgAygCfCIGQSNLDQAgAygCeCIHQQpPDQAgACADIAZBwBBB0BEgBxAYIAQgBWoiBEEMaiIFIAJLDQAgAiAFayEFQQAhAgNAIAJBA0cEQCAEKAAAIgZBf2ogBU8NAiAAIAJBAnRqQZzQAWogBjYCACACQQFqIQIgBEEEaiEEDAELCyAEIAFrIQgLIANBgAFqJAAgCAtGAQN/IABBCGohAyAAKAIEIQJBACEAA0AgACACdkUEQCABIAMgAEEDdGotAAJBFktqIQEgAEEBaiEADAELCyABQQggAmt0C4YDAQV/Qbh/IQcCQCADRQ0AIAItAAAiBEUEQCABQQA2AgBBAUG4fyADQQFGGw8LAn8gAkEBaiIFIARBGHRBGHUiBkF/Sg0AGiAGQX9GBEAgA0EDSA0CIAUvAABBgP4BaiEEIAJBA2oMAQsgA0ECSA0BIAItAAEgBEEIdHJBgIB+aiEEIAJBAmoLIQUgASAENgIAIAVBAWoiASACIANqIgNLDQBBbCEHIABBEGogACAFLQAAIgVBBnZBI0EJIAEgAyABa0HAEEHQEUHwEiAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBmCBqIABBCGogBUEEdkEDcUEfQQggASABIAZqIAgbIgEgAyABa0GAC0GADEGAFyAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBoDBqIABBBGogBUECdkEDcUE0QQkgASABIAZqIAgbIgEgAyABa0GADUHgDkGQGSAAKAKM4QEgACgCnOIBIAQQHyIAEAMNACAAIAFqIAJrIQcLIAcLrQMBCn8jAEGABGsiCCQAAn9BUiACQf8BSw0AGkFUIANBDEsNABogAkEBaiELIABBBGohCUGAgAQgA0F/anRBEHUhCkEAIQJBASEEQQEgA3QiB0F/aiIMIQUDQCACIAtGRQRAAkAgASACQQF0Ig1qLwEAIgZB//8DRgRAIAkgBUECdGogAjoAAiAFQX9qIQVBASEGDAELIARBACAKIAZBEHRBEHVKGyEECyAIIA1qIAY7AQAgAkEBaiECDAELCyAAIAQ7AQIgACADOwEAIAdBA3YgB0EBdmpBA2ohBkEAIQRBACECA0AgBCALRkUEQCABIARBAXRqLgEAIQpBACEAA0AgACAKTkUEQCAJIAJBAnRqIAQ6AAIDQCACIAZqIAxxIgIgBUsNAAsgAEEBaiEADAELCyAEQQFqIQQMAQsLQX8gAg0AGkEAIQIDfyACIAdGBH9BAAUgCCAJIAJBAnRqIgAtAAJBAXRqIgEgAS8BACIBQQFqOwEAIAAgAyABEBRrIgU6AAMgACABIAVB/wFxdCAHazsBACACQQFqIQIMAQsLCyEFIAhBgARqJAAgBQvjBgEIf0FsIQcCQCACQQNJDQACQAJAAkACQCABLQAAIgNBA3EiCUEBaw4DAwEAAgsgACgCiOEBDQBBYg8LIAJBBUkNAkEDIQYgASgAACEFAn8CQAJAIANBAnZBA3EiCEF+aiIEQQFNBEAgBEEBaw0BDAILIAVBDnZB/wdxIQQgBUEEdkH/B3EhAyAIRQwCCyAFQRJ2IQRBBCEGIAVBBHZB//8AcSEDQQAMAQsgBUEEdkH//w9xIgNBgIAISw0DIAEtAARBCnQgBUEWdnIhBEEFIQZBAAshBSAEIAZqIgogAksNAgJAIANBgQZJDQAgACgCnOIBRQ0AQQAhAgNAIAJBg4ABSw0BIAJBQGshAgwAAAsACwJ/IAlBA0YEQCABIAZqIQEgAEHw4gFqIQIgACgCDCEGIAUEQCACIAMgASAEIAYQXwwCCyACIAMgASAEIAYQXQwBCyAAQbjQAWohAiABIAZqIQEgAEHw4gFqIQYgAEGo0ABqIQggBQRAIAggBiADIAEgBCACEF4MAQsgCCAGIAMgASAEIAIQXAsQAw0CIAAgAzYCgOIBIABBATYCiOEBIAAgAEHw4gFqNgLw4QEgCUECRgRAIAAgAEGo0ABqNgIMCyAAIANqIgBBiOMBakIANwAAIABBgOMBakIANwAAIABB+OIBakIANwAAIABB8OIBakIANwAAIAoPCwJ/AkACQAJAIANBAnZBA3FBf2oiBEECSw0AIARBAWsOAgACAQtBASEEIANBA3YMAgtBAiEEIAEvAABBBHYMAQtBAyEEIAEQIUEEdgsiAyAEaiIFQSBqIAJLBEAgBSACSw0CIABB8OIBaiABIARqIAMQCyEBIAAgAzYCgOIBIAAgATYC8OEBIAEgA2oiAEIANwAYIABCADcAECAAQgA3AAggAEIANwAAIAUPCyAAIAM2AoDiASAAIAEgBGo2AvDhASAFDwsCfwJAAkACQCADQQJ2QQNxQX9qIgRBAksNACAEQQFrDgIAAgELQQEhByADQQN2DAILQQIhByABLwAAQQR2DAELIAJBBEkgARAhIgJBj4CAAUtyDQFBAyEHIAJBBHYLIQIgAEHw4gFqIAEgB2otAAAgAkEgahAQIQEgACACNgKA4gEgACABNgLw4QEgB0EBaiEHCyAHC0sAIABC+erQ0OfJoeThADcDICAAQgA3AxggAELP1tO+0ser2UI3AxAgAELW64Lu6v2J9eAANwMIIABCADcDACAAQShqQQBBKBAQGgviAgICfwV+IABBKGoiASAAKAJIaiECAn4gACkDACIDQiBaBEAgACkDECIEQgeJIAApAwgiBUIBiXwgACkDGCIGQgyJfCAAKQMgIgdCEol8IAUQGSAEEBkgBhAZIAcQGQwBCyAAKQMYQsXP2bLx5brqJ3wLIAN8IQMDQCABQQhqIgAgAk0EQEIAIAEpAAAQCSADhUIbiUKHla+vmLbem55/fkLj3MqV/M7y9YV/fCEDIAAhAQwBCwsCQCABQQRqIgAgAksEQCABIQAMAQsgASgAAK1Ch5Wvr5i23puef34gA4VCF4lCz9bTvtLHq9lCfkL5893xmfaZqxZ8IQMLA0AgACACSQRAIAAxAABCxc/ZsvHluuonfiADhUILiUKHla+vmLbem55/fiEDIABBAWohAAwBCwsgA0IhiCADhULP1tO+0ser2UJ+IgNCHYggA4VC+fPd8Zn2masWfiIDQiCIIAOFC+8CAgJ/BH4gACAAKQMAIAKtfDcDAAJAAkAgACgCSCIDIAJqIgRBH00EQCABRQ0BIAAgA2pBKGogASACECAgACgCSCACaiEEDAELIAEgAmohAgJ/IAMEQCAAQShqIgQgA2ogAUEgIANrECAgACAAKQMIIAQpAAAQCTcDCCAAIAApAxAgACkAMBAJNwMQIAAgACkDGCAAKQA4EAk3AxggACAAKQMgIABBQGspAAAQCTcDICAAKAJIIQMgAEEANgJIIAEgA2tBIGohAQsgAUEgaiACTQsEQCACQWBqIQMgACkDICEFIAApAxghBiAAKQMQIQcgACkDCCEIA0AgCCABKQAAEAkhCCAHIAEpAAgQCSEHIAYgASkAEBAJIQYgBSABKQAYEAkhBSABQSBqIgEgA00NAAsgACAFNwMgIAAgBjcDGCAAIAc3AxAgACAINwMICyABIAJPDQEgAEEoaiABIAIgAWsiBBAgCyAAIAQ2AkgLCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQEBogAwVBun8LCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQCxogAwVBun8LC6gCAQZ/IwBBEGsiByQAIABB2OABaikDAEKAgIAQViEIQbh/IQUCQCAEQf//B0sNACAAIAMgBBBCIgUQAyIGDQAgACgCnOIBIQkgACAHQQxqIAMgAyAFaiAGGyIKIARBACAFIAYbayIGEEAiAxADBEAgAyEFDAELIAcoAgwhBCABRQRAQbp/IQUgBEEASg0BCyAGIANrIQUgAyAKaiEDAkAgCQRAIABBADYCnOIBDAELAkACQAJAIARBBUgNACAAQdjgAWopAwBCgICACFgNAAwBCyAAQQA2ApziAQwBCyAAKAIIED8hBiAAQQA2ApziASAGQRRPDQELIAAgASACIAMgBSAEIAgQOSEFDAELIAAgASACIAMgBSAEIAgQOiEFCyAHQRBqJAAgBQtnACAAQdDgAWogASACIAAoAuzhARAuIgEQAwRAIAEPC0G4fyECAkAgAQ0AIABB7OABaigCACIBBEBBYCECIAAoApjiASABRw0BC0EAIQIgAEHw4AFqKAIARQ0AIABBkOEBahBDCyACCycBAX8QVyIERQRAQUAPCyAEIAAgASACIAMgBBBLEE8hACAEEFYgAAs/AQF/AkACQAJAIAAoAqDiAUEBaiIBQQJLDQAgAUEBaw4CAAECCyAAEDBBAA8LIABBADYCoOIBCyAAKAKU4gELvAMCB38BfiMAQRBrIgkkAEG4fyEGAkAgBCgCACIIQQVBCSAAKALs4QEiBRtJDQAgAygCACIHQQFBBSAFGyAFEC8iBRADBEAgBSEGDAELIAggBUEDakkNACAAIAcgBRBJIgYQAw0AIAEgAmohCiAAQZDhAWohCyAIIAVrIQIgBSAHaiEHIAEhBQNAIAcgAiAJECwiBhADDQEgAkF9aiICIAZJBEBBuH8hBgwCCyAJKAIAIghBAksEQEFsIQYMAgsgB0EDaiEHAn8CQAJAAkAgCEEBaw4CAgABCyAAIAUgCiAFayAHIAYQSAwCCyAFIAogBWsgByAGEEcMAQsgBSAKIAVrIActAAAgCSgCCBBGCyIIEAMEQCAIIQYMAgsgACgC8OABBEAgCyAFIAgQRQsgAiAGayECIAYgB2ohByAFIAhqIQUgCSgCBEUNAAsgACkD0OABIgxCf1IEQEFsIQYgDCAFIAFrrFINAQsgACgC8OABBEBBaiEGIAJBBEkNASALEEQhDCAHKAAAIAynRw0BIAdBBGohByACQXxqIQILIAMgBzYCACAEIAI2AgAgBSABayEGCyAJQRBqJAAgBgsuACAAECsCf0EAQQAQAw0AGiABRSACRXJFBEBBYiAAIAEgAhA9EAMNARoLQQALCzcAIAEEQCAAIAAoAsTgASABKAIEIAEoAghqRzYCnOIBCyAAECtBABADIAFFckUEQCAAIAEQWwsL0QIBB38jAEEQayIGJAAgBiAENgIIIAYgAzYCDCAFBEAgBSgCBCEKIAUoAgghCQsgASEIAkACQANAIAAoAuzhARAWIQsCQANAIAQgC0kNASADKAAAQXBxQdDUtMIBRgRAIAMgBBAiIgcQAw0EIAQgB2shBCADIAdqIQMMAQsLIAYgAzYCDCAGIAQ2AggCQCAFBEAgACAFEE5BACEHQQAQA0UNAQwFCyAAIAogCRBNIgcQAw0ECyAAIAgQUCAMQQFHQQAgACAIIAIgBkEMaiAGQQhqEEwiByIDa0EAIAMQAxtBCkdyRQRAQbh/IQcMBAsgBxADDQMgAiAHayECIAcgCGohCEEBIQwgBigCDCEDIAYoAgghBAwBCwsgBiADNgIMIAYgBDYCCEG4fyEHIAQNASAIIAFrIQcMAQsgBiADNgIMIAYgBDYCCAsgBkEQaiQAIAcLRgECfyABIAAoArjgASICRwRAIAAgAjYCxOABIAAgATYCuOABIAAoArzgASEDIAAgATYCvOABIAAgASADIAJrajYCwOABCwutAgIEfwF+IwBBQGoiBCQAAkACQCACQQhJDQAgASgAAEFwcUHQ1LTCAUcNACABIAIQIiEBIABCADcDCCAAQQA2AgQgACABNgIADAELIARBGGogASACEC0iAxADBEAgACADEBoMAQsgAwRAIABBuH8QGgwBCyACIAQoAjAiA2shAiABIANqIQMDQAJAIAAgAyACIARBCGoQLCIFEAMEfyAFBSACIAVBA2oiBU8NAUG4fwsQGgwCCyAGQQFqIQYgAiAFayECIAMgBWohAyAEKAIMRQ0ACyAEKAI4BEAgAkEDTQRAIABBuH8QGgwCCyADQQRqIQMLIAQoAighAiAEKQMYIQcgAEEANgIEIAAgAyABazYCACAAIAIgBmytIAcgB0J/URs3AwgLIARBQGskAAslAQF/IwBBEGsiAiQAIAIgACABEFEgAigCACEAIAJBEGokACAAC30BBH8jAEGQBGsiBCQAIARB/wE2AggCQCAEQRBqIARBCGogBEEMaiABIAIQFSIGEAMEQCAGIQUMAQtBVCEFIAQoAgwiB0EGSw0AIAMgBEEQaiAEKAIIIAcQQSIFEAMNACAAIAEgBmogAiAGayADEDwhBQsgBEGQBGokACAFC4cBAgJ/An5BABAWIQMCQANAIAEgA08EQAJAIAAoAABBcHFB0NS0wgFGBEAgACABECIiAhADRQ0BQn4PCyAAIAEQVSIEQn1WDQMgBCAFfCIFIARUIQJCfiEEIAINAyAAIAEQUiICEAMNAwsgASACayEBIAAgAmohAAwBCwtCfiAFIAEbIQQLIAQLPwIBfwF+IwBBMGsiAiQAAn5CfiACQQhqIAAgARAtDQAaQgAgAigCHEEBRg0AGiACKQMICyEDIAJBMGokACADC40BAQJ/IwBBMGsiASQAAkAgAEUNACAAKAKI4gENACABIABB/OEBaigCADYCKCABIAApAvThATcDICAAEDAgACgCqOIBIQIgASABKAIoNgIYIAEgASkDIDcDECACIAFBEGoQGyAAQQA2AqjiASABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALKgECfyMAQRBrIgAkACAAQQA2AgggAEIANwMAIAAQWCEBIABBEGokACABC4cBAQN/IwBBEGsiAiQAAkAgACgCAEUgACgCBEVzDQAgAiAAKAIINgIIIAIgACkCADcDAAJ/IAIoAgAiAQRAIAIoAghBqOMJIAERBQAMAQtBqOMJECgLIgFFDQAgASAAKQIANwL04QEgAUH84QFqIAAoAgg2AgAgARBZIAEhAwsgAkEQaiQAIAMLywEBAn8jAEEgayIBJAAgAEGBgIDAADYCtOIBIABBADYCiOIBIABBADYC7OEBIABCADcDkOIBIABBADYCpOMJIABBADYC3OIBIABCADcCzOIBIABBADYCvOIBIABBADYCxOABIABCADcCnOIBIABBpOIBakIANwIAIABBrOIBakEANgIAIAFCADcCECABQgA3AhggASABKQMYNwMIIAEgASkDEDcDACABKAIIQQh2QQFxIQIgAEEANgLg4gEgACACNgKM4gEgAUEgaiQAC3YBA38jAEEwayIBJAAgAARAIAEgAEHE0AFqIgIoAgA2AiggASAAKQK80AE3AyAgACgCACEDIAEgAigCADYCGCABIAApArzQATcDECADIAFBEGoQGyABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALzAEBAX8gACABKAK00AE2ApjiASAAIAEoAgQiAjYCwOABIAAgAjYCvOABIAAgAiABKAIIaiICNgK44AEgACACNgLE4AEgASgCuNABBEAgAEKBgICAEDcDiOEBIAAgAUGk0ABqNgIMIAAgAUGUIGo2AgggACABQZwwajYCBCAAIAFBDGo2AgAgAEGs0AFqIAFBqNABaigCADYCACAAQbDQAWogAUGs0AFqKAIANgIAIABBtNABaiABQbDQAWooAgA2AgAPCyAAQgA3A4jhAQs7ACACRQRAQbp/DwsgBEUEQEFsDwsgAiAEEGAEQCAAIAEgAiADIAQgBRBhDwsgACABIAIgAyAEIAUQZQtGAQF/IwBBEGsiBSQAIAVBCGogBBAOAn8gBS0ACQRAIAAgASACIAMgBBAyDAELIAAgASACIAMgBBA0CyEAIAVBEGokACAACzQAIAAgAyAEIAUQNiIFEAMEQCAFDwsgBSAESQR/IAEgAiADIAVqIAQgBWsgABA1BUG4fwsLRgEBfyMAQRBrIgUkACAFQQhqIAQQDgJ/IAUtAAkEQCAAIAEgAiADIAQQYgwBCyAAIAEgAiADIAQQNQshACAFQRBqJAAgAAtZAQF/QQ8hAiABIABJBEAgAUEEdCAAbiECCyAAQQh2IgEgAkEYbCIAQYwIaigCAGwgAEGICGooAgBqIgJBA3YgAmogAEGACGooAgAgAEGECGooAgAgAWxqSQs3ACAAIAMgBCAFQYAQEDMiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQMgVBuH8LC78DAQN/IwBBIGsiBSQAIAVBCGogAiADEAYiAhADRQRAIAAgAWoiB0F9aiEGIAUgBBAOIARBBGohAiAFLQACIQMDQEEAIAAgBkkgBUEIahAEGwRAIAAgAiAFQQhqIAMQAkECdGoiBC8BADsAACAFQQhqIAQtAAIQASAAIAQtAANqIgQgAiAFQQhqIAMQAkECdGoiAC8BADsAACAFQQhqIAAtAAIQASAEIAAtAANqIQAMAQUgB0F+aiEEA0AgBUEIahAEIAAgBEtyRQRAIAAgAiAFQQhqIAMQAkECdGoiBi8BADsAACAFQQhqIAYtAAIQASAAIAYtAANqIQAMAQsLA0AgACAES0UEQCAAIAIgBUEIaiADEAJBAnRqIgYvAQA7AAAgBUEIaiAGLQACEAEgACAGLQADaiEADAELCwJAIAAgB08NACAAIAIgBUEIaiADEAIiA0ECdGoiAC0AADoAACAALQADQQFGBEAgBUEIaiAALQACEAEMAQsgBSgCDEEfSw0AIAVBCGogAiADQQJ0ai0AAhABIAUoAgxBIUkNACAFQSA2AgwLIAFBbCAFQQhqEAobIQILCwsgBUEgaiQAIAILkgIBBH8jAEFAaiIJJAAgCSADQTQQCyEDAkAgBEECSA0AIAMgBEECdGooAgAhCSADQTxqIAgQIyADQQE6AD8gAyACOgA+QQAhBCADKAI8IQoDQCAEIAlGDQEgACAEQQJ0aiAKNgEAIARBAWohBAwAAAsAC0EAIQkDQCAGIAlGRQRAIAMgBSAJQQF0aiIKLQABIgtBAnRqIgwoAgAhBCADQTxqIAotAABBCHQgCGpB//8DcRAjIANBAjoAPyADIAcgC2siCiACajoAPiAEQQEgASAKa3RqIQogAygCPCELA0AgACAEQQJ0aiALNgEAIARBAWoiBCAKSQ0ACyAMIAo2AgAgCUEBaiEJDAELCyADQUBrJAALowIBCX8jAEHQAGsiCSQAIAlBEGogBUE0EAsaIAcgBmshDyAHIAFrIRADQAJAIAMgCkcEQEEBIAEgByACIApBAXRqIgYtAAEiDGsiCGsiC3QhDSAGLQAAIQ4gCUEQaiAMQQJ0aiIMKAIAIQYgCyAPTwRAIAAgBkECdGogCyAIIAUgCEE0bGogCCAQaiIIQQEgCEEBShsiCCACIAQgCEECdGooAgAiCEEBdGogAyAIayAHIA4QYyAGIA1qIQgMAgsgCUEMaiAOECMgCUEBOgAPIAkgCDoADiAGIA1qIQggCSgCDCELA0AgBiAITw0CIAAgBkECdGogCzYBACAGQQFqIQYMAAALAAsgCUHQAGokAA8LIAwgCDYCACAKQQFqIQoMAAALAAs0ACAAIAMgBCAFEDYiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQNAVBuH8LCyMAIAA/AEEQdGtB//8DakEQdkAAQX9GBEBBAA8LQQAQAEEBCzsBAX8gAgRAA0AgACABIAJBgCAgAkGAIEkbIgMQCyEAIAFBgCBqIQEgAEGAIGohACACIANrIgINAAsLCwYAIAAQAwsLqBUJAEGICAsNAQAAAAEAAAACAAAAAgBBoAgLswYBAAAAAQAAAAIAAAACAAAAJgAAAIIAAAAhBQAASgAAAGcIAAAmAAAAwAEAAIAAAABJBQAASgAAAL4IAAApAAAALAIAAIAAAABJBQAASgAAAL4IAAAvAAAAygIAAIAAAACKBQAASgAAAIQJAAA1AAAAcwMAAIAAAACdBQAASgAAAKAJAAA9AAAAgQMAAIAAAADrBQAASwAAAD4KAABEAAAAngMAAIAAAABNBgAASwAAAKoKAABLAAAAswMAAIAAAADBBgAATQAAAB8NAABNAAAAUwQAAIAAAAAjCAAAUQAAAKYPAABUAAAAmQQAAIAAAABLCQAAVwAAALESAABYAAAA2gQAAIAAAABvCQAAXQAAACMUAABUAAAARQUAAIAAAABUCgAAagAAAIwUAABqAAAArwUAAIAAAAB2CQAAfAAAAE4QAAB8AAAA0gIAAIAAAABjBwAAkQAAAJAHAACSAAAAAAAAAAEAAAABAAAABQAAAA0AAAAdAAAAPQAAAH0AAAD9AAAA/QEAAP0DAAD9BwAA/Q8AAP0fAAD9PwAA/X8AAP3/AAD9/wEA/f8DAP3/BwD9/w8A/f8fAP3/PwD9/38A/f//AP3//wH9//8D/f//B/3//w/9//8f/f//P/3//38AAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACUAAAAnAAAAKQAAACsAAAAvAAAAMwAAADsAAABDAAAAUwAAAGMAAACDAAAAAwEAAAMCAAADBAAAAwgAAAMQAAADIAAAA0AAAAOAAAADAAEAQeAPC1EBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAQcQQC4sBAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABIAAAAUAAAAFgAAABgAAAAcAAAAIAAAACgAAAAwAAAAQAAAAIAAAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAQAAAAIAAAAAAAQBBkBIL5gQBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAAAEAAAAEAAAACAAAAAAAAAABAAEBBgAAAAAAAAQAAAAAEAAABAAAAAAgAAAFAQAAAAAAAAUDAAAAAAAABQQAAAAAAAAFBgAAAAAAAAUHAAAAAAAABQkAAAAAAAAFCgAAAAAAAAUMAAAAAAAABg4AAAAAAAEFEAAAAAAAAQUUAAAAAAABBRYAAAAAAAIFHAAAAAAAAwUgAAAAAAAEBTAAAAAgAAYFQAAAAAAABwWAAAAAAAAIBgABAAAAAAoGAAQAAAAADAYAEAAAIAAABAAAAAAAAAAEAQAAAAAAAAUCAAAAIAAABQQAAAAAAAAFBQAAACAAAAUHAAAAAAAABQgAAAAgAAAFCgAAAAAAAAULAAAAAAAABg0AAAAgAAEFEAAAAAAAAQUSAAAAIAABBRYAAAAAAAIFGAAAACAAAwUgAAAAAAADBSgAAAAAAAYEQAAAABAABgRAAAAAIAAHBYAAAAAAAAkGAAIAAAAACwYACAAAMAAABAAAAAAQAAAEAQAAACAAAAUCAAAAIAAABQMAAAAgAAAFBQAAACAAAAUGAAAAIAAABQgAAAAgAAAFCQAAACAAAAULAAAAIAAABQwAAAAAAAAGDwAAACAAAQUSAAAAIAABBRQAAAAgAAIFGAAAACAAAgUcAAAAIAADBSgAAAAgAAQFMAAAAAAAEAYAAAEAAAAPBgCAAAAAAA4GAEAAAAAADQYAIABBgBcLhwIBAAEBBQAAAAAAAAUAAAAAAAAGBD0AAAAAAAkF/QEAAAAADwX9fwAAAAAVBf3/HwAAAAMFBQAAAAAABwR9AAAAAAAMBf0PAAAAABIF/f8DAAAAFwX9/38AAAAFBR0AAAAAAAgE/QAAAAAADgX9PwAAAAAUBf3/DwAAAAIFAQAAABAABwR9AAAAAAALBf0HAAAAABEF/f8BAAAAFgX9/z8AAAAEBQ0AAAAQAAgE/QAAAAAADQX9HwAAAAATBf3/BwAAAAEFAQAAABAABgQ9AAAAAAAKBf0DAAAAABAF/f8AAAAAHAX9//8PAAAbBf3//wcAABoF/f//AwAAGQX9//8BAAAYBf3//wBBkBkLhgQBAAEBBgAAAAAAAAYDAAAAAAAABAQAAAAgAAAFBQAAAAAAAAUGAAAAAAAABQgAAAAAAAAFCQAAAAAAAAULAAAAAAAABg0AAAAAAAAGEAAAAAAAAAYTAAAAAAAABhYAAAAAAAAGGQAAAAAAAAYcAAAAAAAABh8AAAAAAAAGIgAAAAAAAQYlAAAAAAABBikAAAAAAAIGLwAAAAAAAwY7AAAAAAAEBlMAAAAAAAcGgwAAAAAACQYDAgAAEAAABAQAAAAAAAAEBQAAACAAAAUGAAAAAAAABQcAAAAgAAAFCQAAAAAAAAUKAAAAAAAABgwAAAAAAAAGDwAAAAAAAAYSAAAAAAAABhUAAAAAAAAGGAAAAAAAAAYbAAAAAAAABh4AAAAAAAAGIQAAAAAAAQYjAAAAAAABBicAAAAAAAIGKwAAAAAAAwYzAAAAAAAEBkMAAAAAAAUGYwAAAAAACAYDAQAAIAAABAQAAAAwAAAEBAAAABAAAAQFAAAAIAAABQcAAAAgAAAFCAAAACAAAAUKAAAAIAAABQsAAAAAAAAGDgAAAAAAAAYRAAAAAAAABhQAAAAAAAAGFwAAAAAAAAYaAAAAAAAABh0AAAAAAAAGIAAAAAAAEAYDAAEAAAAPBgOAAAAAAA4GA0AAAAAADQYDIAAAAAAMBgMQAAAAAAsGAwgAAAAACgYDBABBpB0L2QEBAAAAAwAAAAcAAAAPAAAAHwAAAD8AAAB/AAAA/wAAAP8BAAD/AwAA/wcAAP8PAAD/HwAA/z8AAP9/AAD//wAA//8BAP//AwD//wcA//8PAP//HwD//z8A//9/AP///wD///8B////A////wf///8P////H////z////9/AAAAAAEAAAACAAAABAAAAAAAAAACAAAABAAAAAgAAAAAAAAAAQAAAAIAAAABAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAACAAAAAcAAAAIAAAACQAAAAoAAAALAEGgIAsDwBBQ",te={315:"Artist",258:"BitsPerSample",265:"CellLength",264:"CellWidth",320:"ColorMap",259:"Compression",33432:"Copyright",306:"DateTime",338:"ExtraSamples",266:"FillOrder",289:"FreeByteCounts",288:"FreeOffsets",291:"GrayResponseCurve",290:"GrayResponseUnit",316:"HostComputer",270:"ImageDescription",257:"ImageLength",256:"ImageWidth",271:"Make",281:"MaxSampleValue",280:"MinSampleValue",272:"Model",254:"NewSubfileType",274:"Orientation",262:"PhotometricInterpretation",284:"PlanarConfiguration",296:"ResolutionUnit",278:"RowsPerStrip",277:"SamplesPerPixel",305:"Software",279:"StripByteCounts",273:"StripOffsets",255:"SubfileType",263:"Threshholding",282:"XResolution",283:"YResolution",326:"BadFaxLines",327:"CleanFaxData",343:"ClipPath",328:"ConsecutiveBadFaxLines",433:"Decode",434:"DefaultImageColor",269:"DocumentName",336:"DotRange",321:"HalftoneHints",346:"Indexed",347:"JPEGTables",285:"PageName",297:"PageNumber",317:"Predictor",319:"PrimaryChromaticities",532:"ReferenceBlackWhite",339:"SampleFormat",340:"SMinSampleValue",341:"SMaxSampleValue",559:"StripRowCounts",330:"SubIFDs",292:"T4Options",293:"T6Options",325:"TileByteCounts",323:"TileLength",324:"TileOffsets",322:"TileWidth",301:"TransferFunction",318:"WhitePoint",344:"XClipPathUnits",286:"XPosition",529:"YCbCrCoefficients",531:"YCbCrPositioning",530:"YCbCrSubSampling",345:"YClipPathUnits",287:"YPosition",37378:"ApertureValue",40961:"ColorSpace",36868:"DateTimeDigitized",36867:"DateTimeOriginal",34665:"Exif IFD",36864:"ExifVersion",33434:"ExposureTime",41728:"FileSource",37385:"Flash",40960:"FlashpixVersion",33437:"FNumber",42016:"ImageUniqueID",37384:"LightSource",37500:"MakerNote",37377:"ShutterSpeedValue",37510:"UserComment",33723:"IPTC",34675:"ICC Profile",700:"XMP",42112:"GDAL_METADATA",42113:"GDAL_NODATA",34377:"Photoshop",33550:"ModelPixelScale",33922:"ModelTiepoint",34264:"ModelTransformation",34735:"GeoKeyDirectory",34736:"GeoDoubleParams",34737:"GeoAsciiParams",50674:"LercParameters"},ie={};for(var re in te)te.hasOwnProperty(re)&&(ie[te[re]]=parseInt(re,10));ie.BitsPerSample,ie.ExtraSamples,ie.SampleFormat,ie.StripByteCounts,ie.StripOffsets,ie.StripRowCounts,ie.TileByteCounts,ie.TileOffsets,ie.SubIFDs;var Ie={1:"BYTE",2:"ASCII",3:"SHORT",4:"LONG",5:"RATIONAL",6:"SBYTE",7:"UNDEFINED",8:"SSHORT",9:"SLONG",10:"SRATIONAL",11:"FLOAT",12:"DOUBLE",13:"IFD",16:"LONG8",17:"SLONG8",18:"IFD8"},ge={};for(var ne in Ie)Ie.hasOwnProperty(ne)&&(ge[Ie[ne]]=parseInt(ne,10));var ae=1,oe=0,Be=1,Ce=2,Qe={1024:"GTModelTypeGeoKey",1025:"GTRasterTypeGeoKey",1026:"GTCitationGeoKey",2048:"GeographicTypeGeoKey",2049:"GeogCitationGeoKey",2050:"GeogGeodeticDatumGeoKey",2051:"GeogPrimeMeridianGeoKey",2052:"GeogLinearUnitsGeoKey",2053:"GeogLinearUnitSizeGeoKey",2054:"GeogAngularUnitsGeoKey",2055:"GeogAngularUnitSizeGeoKey",2056:"GeogEllipsoidGeoKey",2057:"GeogSemiMajorAxisGeoKey",2058:"GeogSemiMinorAxisGeoKey",2059:"GeogInvFlatteningGeoKey",2060:"GeogAzimuthUnitsGeoKey",2061:"GeogPrimeMeridianLongGeoKey",2062:"GeogTOWGS84GeoKey",3072:"ProjectedCSTypeGeoKey",3073:"PCSCitationGeoKey",3074:"ProjectionGeoKey",3075:"ProjCoordTransGeoKey",3076:"ProjLinearUnitsGeoKey",3077:"ProjLinearUnitSizeGeoKey",3078:"ProjStdParallel1GeoKey",3079:"ProjStdParallel2GeoKey",3080:"ProjNatOriginLongGeoKey",3081:"ProjNatOriginLatGeoKey",3082:"ProjFalseEastingGeoKey",3083:"ProjFalseNorthingGeoKey",3084:"ProjFalseOriginLongGeoKey",3085:"ProjFalseOriginLatGeoKey",3086:"ProjFalseOriginEastingGeoKey",3087:"ProjFalseOriginNorthingGeoKey",3088:"ProjCenterLongGeoKey",3089:"ProjCenterLatGeoKey",3090:"ProjCenterEastingGeoKey",3091:"ProjCenterNorthingGeoKey",3092:"ProjScaleAtNatOriginGeoKey",3093:"ProjScaleAtCenterGeoKey",3094:"ProjAzimuthAngleGeoKey",3095:"ProjStraightVertPoleLongGeoKey",3096:"ProjRectifiedGridAngleGeoKey",4096:"VerticalCSTypeGeoKey",4097:"VerticalCitationGeoKey",4098:"VerticalDatumGeoKey",4099:"VerticalUnitsGeoKey"},Ee={};for(var se in Qe)Qe.hasOwnProperty(se)&&(Ee[Qe[se]]=parseInt(se,10));function fe(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var ce=new Ae,he=function(A){s(t,w);var e=fe(t);function t(A){var i;return B(this,t),(i=e.call(this)).planarConfiguration=void 0!==A.PlanarConfiguration?A.PlanarConfiguration:1,i.samplesPerPixel=void 0!==A.SamplesPerPixel?A.SamplesPerPixel:1,i.addCompression=A.LercParameters[ae],i}return Q(t,[{key:"decodeBlock",value:function(A){switch(this.addCompression){case oe:break;case Be:A=YA(new Uint8Array(A)).buffer;break;case Ce:A=ce.decode(new Uint8Array(A)).buffer;break;default:throw new Error("Unsupported LERC additional compression method identifier: ".concat(this.addCompression))}return zA.decode(A,{returnPixelInterleavedDims:1===this.planarConfiguration}).pixels[0].buffer}}]),t}(),le=Object.freeze({__proto__:null,zstd:ce,default:he});function ue(A){var e=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var we=function(A){s(I,w);var t,i=ue(I);function I(){var A;if(B(this,I),A=i.call(this),"undefined"==typeof createImageBitmap)throw new Error("Cannot decode WebImage as `createImageBitmap` is not available");if("undefined"==typeof document&&"undefined"==typeof OffscreenCanvas)throw new Error("Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available");return A}return Q(I,[{key:"decode",value:(t=e(r.mark((function A(e,t){var i,I,g,n;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return i=new Blob([t]),A.next=3,createImageBitmap(i);case 3:return I=A.sent,"undefined"!=typeof document?((g=document.createElement("canvas")).width=I.width,g.height=I.height):g=new OffscreenCanvas(I.width,I.height),(n=g.getContext("2d")).drawImage(I,0,0),A.abrupt("return",n.getImageData(0,0,I.width,I.height).data.buffer);case 8:case"end":return A.stop()}}),A)}))),function(A,e){return t.apply(this,arguments)})}]),I}(),de=Object.freeze({__proto__:null,default:we});';return new i("undefined"!=typeof Buffer?"data:application/javascript;base64,"+Buffer.from(A,"binary").toString("base64"):URL.createObjectURL(new Blob([A],{type:"application/javascript"})))}}}]); +//# sourceMappingURL=145.index.js.map \ No newline at end of file diff --git a/ipyopenlayers/nbextension/145.index.js.map b/ipyopenlayers/nbextension/145.index.js.map new file mode 100644 index 0000000..193ae12 --- /dev/null +++ b/ipyopenlayers/nbextension/145.index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"145.index.js","mappings":"yIAgBA,eCde,SAASA,IACd,MAAMC,EAAS,4ohHACf,OAAO,IAAI,EAAyB,oBAAXC,OACrB,sCAAwCA,OAAOC,KAAKF,EAAQ,UAAUG,SAAS,UAC/EC,IAAIC,gBAAgB,IAAIC,KAAK,CAACN,GAAS,CAACO,KAAM,4BACpD,C","sources":["webpack://ipyopenlayers/./node_modules/web-worker/browser.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/worker/decoder.js"],"sourcesContent":["/**\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport default Worker;\n","\n import Worker from 'web-worker';\n export function create() {\n const source = \"function A(A,e,t,i,r,I,g){try{var n=A[I](g),a=n.value}catch(A){return void t(A)}n.done?e(a):Promise.resolve(a).then(i,r)}function e(e){return function(){var t=this,i=arguments;return new Promise((function(r,I){var g=e.apply(t,i);function n(e){A(g,r,I,n,a,\\\"next\\\",e)}function a(e){A(g,r,I,n,a,\\\"throw\\\",e)}n(void 0)}))}}function t(A){return t=\\\"function\\\"==typeof Symbol&&\\\"symbol\\\"==typeof Symbol.iterator?function(A){return typeof A}:function(A){return A&&\\\"function\\\"==typeof Symbol&&A.constructor===Symbol&&A!==Symbol.prototype?\\\"symbol\\\":typeof A},t(A)}var i={exports:{}};!function(A){var e=function(A){var e,i=Object.prototype,r=i.hasOwnProperty,I=\\\"function\\\"==typeof Symbol?Symbol:{},g=I.iterator||\\\"@@iterator\\\",n=I.asyncIterator||\\\"@@asyncIterator\\\",a=I.toStringTag||\\\"@@toStringTag\\\";function o(A,e,t){return Object.defineProperty(A,e,{value:t,enumerable:!0,configurable:!0,writable:!0}),A[e]}try{o({},\\\"\\\")}catch(A){o=function(A,e,t){return A[e]=t}}function B(A,e,t,i){var r=e&&e.prototype instanceof h?e:h,I=Object.create(r.prototype),g=new S(i||[]);return I._invoke=function(A,e,t){var i=Q;return function(r,I){if(i===s)throw new Error(\\\"Generator is already running\\\");if(i===f){if(\\\"throw\\\"===r)throw I;return R()}for(t.method=r,t.arg=I;;){var g=t.delegate;if(g){var n=m(g,t);if(n){if(n===c)continue;return n}}if(\\\"next\\\"===t.method)t.sent=t._sent=t.arg;else if(\\\"throw\\\"===t.method){if(i===Q)throw i=f,t.arg;t.dispatchException(t.arg)}else\\\"return\\\"===t.method&&t.abrupt(\\\"return\\\",t.arg);i=s;var a=C(A,e,t);if(\\\"normal\\\"===a.type){if(i=t.done?f:E,a.arg===c)continue;return{value:a.arg,done:t.done}}\\\"throw\\\"===a.type&&(i=f,t.method=\\\"throw\\\",t.arg=a.arg)}}}(A,t,g),I}function C(A,e,t){try{return{type:\\\"normal\\\",arg:A.call(e,t)}}catch(A){return{type:\\\"throw\\\",arg:A}}}A.wrap=B;var Q=\\\"suspendedStart\\\",E=\\\"suspendedYield\\\",s=\\\"executing\\\",f=\\\"completed\\\",c={};function h(){}function l(){}function u(){}var w={};o(w,g,(function(){return this}));var d=Object.getPrototypeOf,D=d&&d(d(v([])));D&&D!==i&&r.call(D,g)&&(w=D);var y=u.prototype=h.prototype=Object.create(w);function k(A){[\\\"next\\\",\\\"throw\\\",\\\"return\\\"].forEach((function(e){o(A,e,(function(A){return this._invoke(e,A)}))}))}function p(A,e){function i(I,g,n,a){var o=C(A[I],A,g);if(\\\"throw\\\"!==o.type){var B=o.arg,Q=B.value;return Q&&\\\"object\\\"===t(Q)&&r.call(Q,\\\"__await\\\")?e.resolve(Q.__await).then((function(A){i(\\\"next\\\",A,n,a)}),(function(A){i(\\\"throw\\\",A,n,a)})):e.resolve(Q).then((function(A){B.value=A,n(B)}),(function(A){return i(\\\"throw\\\",A,n,a)}))}a(o.arg)}var I;this._invoke=function(A,t){function r(){return new e((function(e,r){i(A,t,e,r)}))}return I=I?I.then(r,r):r()}}function m(A,t){var i=A.iterator[t.method];if(i===e){if(t.delegate=null,\\\"throw\\\"===t.method){if(A.iterator.return&&(t.method=\\\"return\\\",t.arg=e,m(A,t),\\\"throw\\\"===t.method))return c;t.method=\\\"throw\\\",t.arg=new TypeError(\\\"The iterator does not provide a 'throw' method\\\")}return c}var r=C(i,A.iterator,t.arg);if(\\\"throw\\\"===r.type)return t.method=\\\"throw\\\",t.arg=r.arg,t.delegate=null,c;var I=r.arg;return I?I.done?(t[A.resultName]=I.value,t.next=A.nextLoc,\\\"return\\\"!==t.method&&(t.method=\\\"next\\\",t.arg=e),t.delegate=null,c):I:(t.method=\\\"throw\\\",t.arg=new TypeError(\\\"iterator result is not an object\\\"),t.delegate=null,c)}function G(A){var e={tryLoc:A[0]};1 in A&&(e.catchLoc=A[1]),2 in A&&(e.finallyLoc=A[2],e.afterLoc=A[3]),this.tryEntries.push(e)}function F(A){var e=A.completion||{};e.type=\\\"normal\\\",delete e.arg,A.completion=e}function S(A){this.tryEntries=[{tryLoc:\\\"root\\\"}],A.forEach(G,this),this.reset(!0)}function v(A){if(A){var t=A[g];if(t)return t.call(A);if(\\\"function\\\"==typeof A.next)return A;if(!isNaN(A.length)){var i=-1,I=function t(){for(;++i=0;--I){var g=this.tryEntries[I],n=g.completion;if(\\\"root\\\"===g.tryLoc)return i(\\\"end\\\");if(g.tryLoc<=this.prev){var a=r.call(g,\\\"catchLoc\\\"),o=r.call(g,\\\"finallyLoc\\\");if(a&&o){if(this.prev=0;--t){var i=this.tryEntries[t];if(i.tryLoc<=this.prev&&r.call(i,\\\"finallyLoc\\\")&&this.prev=0;--e){var t=this.tryEntries[e];if(t.finallyLoc===A)return this.complete(t.completion,t.afterLoc),F(t),c}},catch:function(A){for(var e=this.tryEntries.length-1;e>=0;--e){var t=this.tryEntries[e];if(t.tryLoc===A){var i=t.completion;if(\\\"throw\\\"===i.type){var r=i.arg;F(t)}return r}}throw new Error(\\\"illegal catch attempt\\\")},delegateYield:function(A,t,i){return this.delegate={iterator:v(A),resultName:t,nextLoc:i},\\\"next\\\"===this.method&&(this.arg=e),c}},A}(A.exports);try{regeneratorRuntime=e}catch(A){\\\"object\\\"===(\\\"undefined\\\"==typeof globalThis?\\\"undefined\\\":t(globalThis))?globalThis.regeneratorRuntime=e:Function(\\\"r\\\",\\\"regeneratorRuntime = r\\\")(e)}}(i);var r=i.exports,I=new Map;function g(A,e){Array.isArray(A)||(A=[A]),A.forEach((function(A){return I.set(A,e)}))}function n(A){return a.apply(this,arguments)}function a(){return(a=e(r.mark((function A(e){var t,i;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:if(t=I.get(e.Compression)){A.next=3;break}throw new Error(\\\"Unknown compression method identifier: \\\".concat(e.Compression));case 3:return A.next=5,t();case 5:return i=A.sent,A.abrupt(\\\"return\\\",new i(e));case 7:case\\\"end\\\":return A.stop()}}),A)})))).apply(this,arguments)}g([void 0,1],(function(){return Promise.resolve().then((function(){return y})).then((function(A){return A.default}))})),g(5,(function(){return Promise.resolve().then((function(){return F})).then((function(A){return A.default}))})),g(6,(function(){throw new Error(\\\"old style JPEG compression is not supported.\\\")})),g(7,(function(){return Promise.resolve().then((function(){return N})).then((function(A){return A.default}))})),g([8,32946],(function(){return Promise.resolve().then((function(){return OA})).then((function(A){return A.default}))})),g(32773,(function(){return Promise.resolve().then((function(){return _A})).then((function(A){return A.default}))})),g(34887,(function(){return Promise.resolve().then((function(){return le})).then(function(){var A=e(r.mark((function A(e){return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return A.next=2,e.zstd.init();case 2:return A.abrupt(\\\"return\\\",e);case 3:case\\\"end\\\":return A.stop()}}),A)})));return function(e){return A.apply(this,arguments)}}()).then((function(A){return A.default}))})),g(50001,(function(){return Promise.resolve().then((function(){return de})).then((function(A){return A.default}))}));var o=globalThis;function B(A,e){if(!(A instanceof e))throw new TypeError(\\\"Cannot call a class as a function\\\")}function C(A,e){for(var t=0;t0;r--)A[i+e]+=A[i],i++;t-=e}while(t>0)}function l(A,e,t){for(var i=0,r=A.length,I=r/t;r>e;){for(var g=e;g>0;--g)A[i+e]+=A[i],++i;r-=e}for(var n=A.slice(),a=0;a=A.byteLength);++o){var B=void 0;if(2===e){switch(r[0]){case 8:B=new Uint8Array(A,o*a*t*n,a*t*n);break;case 16:B=new Uint16Array(A,o*a*t*n,a*t*n/2);break;case 32:B=new Uint32Array(A,o*a*t*n,a*t*n/4);break;default:throw new Error(\\\"Predictor 2 not allowed with \\\".concat(r[0],\\\" bits per sample.\\\"))}h(B,a)}else 3===e&&l(B=new Uint8Array(A,o*a*t*n,a*t*n),a,n)}return A}o.addEventListener(\\\"message\\\",function(){var A=e(r.mark((function A(e){var t,i,I,g,a,B;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return t=e.data,i=t.id,I=t.fileDirectory,g=t.buffer,A.next=3,n(I);case 3:return a=A.sent,A.next=6,a.decode(I,g);case 6:B=A.sent,o.postMessage({decoded:B,id:i},[B]);case 8:case\\\"end\\\":return A.stop()}}),A)})));return function(e){return A.apply(this,arguments)}}());var w=function(){function A(){B(this,A)}var t;return Q(A,[{key:\\\"decode\\\",value:(t=e(r.mark((function A(e,t){var i,I,g,n,a;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return A.next=2,this.decodeBlock(t);case 2:if(i=A.sent,1===(I=e.Predictor||1)){A.next=9;break}return g=!e.StripOffsets,n=g?e.TileWidth:e.ImageWidth,a=g?e.TileLength:e.RowsPerStrip||e.ImageLength,A.abrupt(\\\"return\\\",u(i,I,n,a,e.BitsPerSample,e.PlanarConfiguration));case 9:return A.abrupt(\\\"return\\\",i);case 10:case\\\"end\\\":return A.stop()}}),A,this)}))),function(A,e){return t.apply(this,arguments)})}]),A}();function d(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var D=function(A){s(t,w);var e=d(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){return A}}]),t}(),y=Object.freeze({__proto__:null,default:D});function k(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}function p(A,e){for(var t=e.length-1;t>=0;t--)A.push(e[t]);return A}function m(A){for(var e=new Uint16Array(4093),t=new Uint8Array(4093),i=0;i<=257;i++)e[i]=4096,t[i]=i;var r=258,I=9,g=0;function n(){r=258,I=9}function a(A){var e=function(A,e,t){var i=e%8,r=Math.floor(e/8),I=8-i,g=e+t-8*(r+1),n=8*(r+2)-(e+t),a=8*(r+2)-e;if(n=Math.max(0,n),r>=A.length)return console.warn(\\\"ran off the end of the buffer before finding EOI_CODE (end on input code)\\\"),257;var o=A[r]&Math.pow(2,8-i)-1,B=o<<=t-I;if(r+1>>n;B+=C<<=Math.max(0,t-a)}if(g>8&&r+2>>Q}return B}(A,g,I);return g+=I,e}function o(A,i){return t[r]=i,e[r]=A,++r-1}function B(A){for(var i=[],r=A;4096!==r;r=e[r])i.push(t[r]);return i}var C=[];n();for(var Q,E=new Uint8Array(A),s=a(E);257!==s;){if(256===s){for(n(),s=a(E);256===s;)s=a(E);if(257===s)break;if(s>256)throw new Error(\\\"corrupted code at scanline \\\".concat(s));p(C,B(s)),Q=s}else if(s=Math.pow(2,I)&&(12===I?Q=void 0:I++),s=a(E)}return new Uint8Array(C)}var G=function(A){s(t,w);var e=k(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){return m(A).buffer}}]),t}(),F=Object.freeze({__proto__:null,default:G});function S(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var v=new Int32Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]);function R(A,e){for(var t=0,i=[],r=16;r>0&&!A[r-1];)--r;i.push({children:[],index:0});for(var I,g=i[0],n=0;n0;)g=i.pop();for(g.index++,i.push(g);i.length<=n;)i.push(I={children:[],index:0}),g.children[g.index]=I.children,g=I;t++}n+10)return f--,s>>f&1;if(255===(s=A[E++])){var e=A[E++];if(e)throw new Error(\\\"unexpected marker: \\\".concat((s<<8|e).toString(16)))}return f=7,s>>>7}function h(A){for(var e,i=A;null!==(e=c());){if(\\\"number\\\"==typeof(i=i[e]))return i;if(\\\"object\\\"!==t(i))throw new Error(\\\"invalid huffman sequence\\\")}return null}function l(A){for(var e=A,t=0;e>0;){var i=c();if(null===i)return;t=t<<1|i,--e}return t}function u(A){var e=l(A);return e>=1<0)w--;else for(var t=g,i=n;t<=i;){var r=h(A.huffmanTableAC),I=15&r,a=r>>4;if(0===I){if(a<15){w=l(a)+(1<>4,0===C)r<15?(w=l(r)+(1<>4;if(0===g){if(n<15)break;r+=16}else e[v[r+=n]]=u(g),r++}};var L,b,M=0;b=1===U?r[0].blocksPerLine*r[0].blocksPerColumn:B*i.mcusPerColumn;for(var N=I||b;M=65488&&L<=65495))break;E+=2}return E-Q}function L(A,e){var t=[],i=e.blocksPerLine,r=e.blocksPerColumn,I=i<<3,g=new Int32Array(64),n=new Uint8Array(64);function a(A,t,i){var r,I,g,n,a,o,B,C,Q,E,s=e.quantizationTable,f=i;for(E=0;E<64;E++)f[E]=A[E]*s[E];for(E=0;E<8;++E){var c=8*E;0!==f[1+c]||0!==f[2+c]||0!==f[3+c]||0!==f[4+c]||0!==f[5+c]||0!==f[6+c]||0!==f[7+c]?(r=5793*f[0+c]+128>>8,I=5793*f[4+c]+128>>8,g=f[2+c],n=f[6+c],a=2896*(f[1+c]-f[7+c])+128>>8,C=2896*(f[1+c]+f[7+c])+128>>8,o=f[3+c]<<4,Q=r-I+1>>1,r=r+I+1>>1,I=Q,Q=3784*g+1567*n+128>>8,g=1567*g-3784*n+128>>8,n=Q,Q=a-(B=f[5+c]<<4)+1>>1,a=a+B+1>>1,B=Q,Q=C+o+1>>1,o=C-o+1>>1,C=Q,Q=r-n+1>>1,r=r+n+1>>1,n=Q,Q=I-g+1>>1,I=I+g+1>>1,g=Q,Q=2276*a+3406*C+2048>>12,a=3406*a-2276*C+2048>>12,C=Q,Q=799*o+4017*B+2048>>12,o=4017*o-799*B+2048>>12,B=Q,f[0+c]=r+C,f[7+c]=r-C,f[1+c]=I+B,f[6+c]=I-B,f[2+c]=g+o,f[5+c]=g-o,f[3+c]=n+a,f[4+c]=n-a):(Q=5793*f[0+c]+512>>10,f[0+c]=Q,f[1+c]=Q,f[2+c]=Q,f[3+c]=Q,f[4+c]=Q,f[5+c]=Q,f[6+c]=Q,f[7+c]=Q)}for(E=0;E<8;++E){var h=E;0!==f[8+h]||0!==f[16+h]||0!==f[24+h]||0!==f[32+h]||0!==f[40+h]||0!==f[48+h]||0!==f[56+h]?(r=5793*f[0+h]+2048>>12,I=5793*f[32+h]+2048>>12,g=f[16+h],n=f[48+h],a=2896*(f[8+h]-f[56+h])+2048>>12,C=2896*(f[8+h]+f[56+h])+2048>>12,o=f[24+h],Q=r-I+1>>1,r=r+I+1>>1,I=Q,Q=3784*g+1567*n+2048>>12,g=1567*g-3784*n+2048>>12,n=Q,Q=a-(B=f[40+h])+1>>1,a=a+B+1>>1,B=Q,Q=C+o+1>>1,o=C-o+1>>1,C=Q,Q=r-n+1>>1,r=r+n+1>>1,n=Q,Q=I-g+1>>1,I=I+g+1>>1,g=Q,Q=2276*a+3406*C+2048>>12,a=3406*a-2276*C+2048>>12,C=Q,Q=799*o+4017*B+2048>>12,o=4017*o-799*B+2048>>12,B=Q,f[0+h]=r+C,f[56+h]=r-C,f[8+h]=I+B,f[48+h]=I-B,f[16+h]=g+o,f[40+h]=g-o,f[24+h]=n+a,f[32+h]=n-a):(Q=5793*i[E+0]+8192>>14,f[0+h]=Q,f[8+h]=Q,f[16+h]=Q,f[24+h]=Q,f[32+h]=Q,f[40+h]=Q,f[48+h]=Q,f[56+h]=Q)}for(E=0;E<64;++E){var l=128+(f[E]+8>>4);t[E]=l<0?0:l>255?255:l}}for(var o=0;o>4==0)for(var C=0;C<64;C++){B[v[C]]=A[e++]}else{if(o>>4!=1)throw new Error(\\\"DQT: invalid table spec\\\");for(var Q=0;Q<64;Q++){B[v[Q]]=t()}}this.quantizationTables[15&o]=B}break;case 65472:case 65473:case 65474:t();for(var E={extended:65473===g,progressive:65474===g,precision:A[e++],scanLines:t(),samplesPerLine:t(),components:{},componentsOrder:[]},s=A[e++],f=void 0,c=0;c>4,l=15&A[e+1],u=A[e+2];E.componentsOrder.push(f),E.components[f]={h:h,v:l,quantizationIdx:u},e+=3}i(E),this.frames.push(E);break;case 65476:for(var w=t(),d=2;d>4==0?this.huffmanTablesDC[15&D]=R(y,m):this.huffmanTablesAC[15&D]=R(y,m)}break;case 65501:t(),this.resetInterval=t();break;case 65498:t();for(var F=A[e++],S=[],L=this.frames[0],b=0;b>4],M.huffmanTableAC=this.huffmanTablesAC[15&N],S.push(M)}var x=A[e++],J=A[e++],q=A[e++],Y=U(A,e,L,S,this.resetInterval,x,J,q>>4,15&q);e+=Y;break;case 65535:255!==A[e]&&e--;break;default:if(255===A[e-3]&&A[e-2]>=192&&A[e-2]<=254){e-=3;break}throw new Error(\\\"unknown JPEG marker \\\".concat(g.toString(16)))}g=t()}}},{key:\\\"getResult\\\",value:function(){var A=this.frames;if(0===this.frames.length)throw new Error(\\\"no frames were decoded\\\");this.frames.length>1&&console.warn(\\\"more than one frame is not supported\\\");for(var e=0;e=0;)A[e]=0}x(new Array(576)),x(new Array(60)),x(new Array(512)),x(new Array(256)),x(new Array(29)),x(new Array(30));var J=function(A,e,t,i){for(var r=65535&A|0,I=A>>>16&65535|0,g=0;0!==t;){t-=g=t>2e3?2e3:t;do{I=I+(r=r+e[i++]|0)|0}while(--g);r%=65521,I%=65521}return r|I<<16|0},q=new Uint32Array(function(){for(var A,e=[],t=0;t<256;t++){A=t;for(var i=0;i<8;i++)A=1&A?3988292384^A>>>1:A>>>1;e[t]=A}return e}()),Y=function(A,e,t,i){var r=q,I=i+t;A^=-1;for(var g=i;g>>8^r[255&(A^e[g])];return-1^A},K={2:\\\"need dictionary\\\",1:\\\"stream end\\\",0:\\\"\\\",\\\"-1\\\":\\\"file error\\\",\\\"-2\\\":\\\"stream error\\\",\\\"-3\\\":\\\"data error\\\",\\\"-4\\\":\\\"insufficient memory\\\",\\\"-5\\\":\\\"buffer error\\\",\\\"-6\\\":\\\"incompatible version\\\"},H={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8},O=function(A,e){return Object.prototype.hasOwnProperty.call(A,e)},P=function(A){for(var e=Array.prototype.slice.call(arguments,1);e.length;){var i=e.shift();if(i){if(\\\"object\\\"!==t(i))throw new TypeError(i+\\\"must be non-object\\\");for(var r in i)O(i,r)&&(A[r]=i[r])}}return A},T=function(A){for(var e=0,t=0,i=A.length;t=252?6:X>=248?5:X>=240?4:X>=224?3:X>=192?2:1;_[254]=_[254]=1;var Z=function(A){if(\\\"function\\\"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(A);var e,t,i,r,I,g=A.length,n=0;for(r=0;r>>6,e[I++]=128|63&t):t<65536?(e[I++]=224|t>>>12,e[I++]=128|t>>>6&63,e[I++]=128|63&t):(e[I++]=240|t>>>18,e[I++]=128|t>>>12&63,e[I++]=128|t>>>6&63,e[I++]=128|63&t);return e},j=function(A,e){var t,i,r=e||A.length;if(\\\"function\\\"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(A.subarray(0,e));var I=new Array(2*r);for(i=0,t=0;t4)I[i++]=65533,t+=n-1;else{for(g&=2===n?31:3===n?15:7;n>1&&t1?I[i++]=65533:g<65536?I[i++]=g:(g-=65536,I[i++]=55296|g>>10&1023,I[i++]=56320|1023&g)}}}return function(A,e){if(e<65534&&A.subarray&&V)return String.fromCharCode.apply(null,A.length===e?A:A.subarray(0,e));for(var t=\\\"\\\",i=0;iA.length&&(e=A.length);for(var t=e-1;t>=0&&128==(192&A[t]);)t--;return t<0||0===t?e:t+_[A[t]]>e?t:e};var z=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg=\\\"\\\",this.state=null,this.data_type=2,this.adler=0},$=function(A,e){var t,i,r,I,g,n,a,o,B,C,Q,E,s,f,c,h,l,u,w,d,D,y,k,p,m=A.state;t=A.next_in,k=A.input,i=t+(A.avail_in-5),r=A.next_out,p=A.output,I=r-(e-A.avail_out),g=r+(A.avail_out-257),n=m.dmax,a=m.wsize,o=m.whave,B=m.wnext,C=m.window,Q=m.hold,E=m.bits,s=m.lencode,f=m.distcode,c=(1<>>=u=l>>>24,E-=u,0===(u=l>>>16&255))p[r++]=65535&l;else{if(!(16&u)){if(0==(64&u)){l=s[(65535&l)+(Q&(1<>>=u,E-=u),E<15&&(Q+=k[t++]<>>=u=l>>>24,E-=u,!(16&(u=l>>>16&255))){if(0==(64&u)){l=f[(65535&l)+(Q&(1<n){A.msg=\\\"invalid distance too far back\\\",m.mode=30;break A}if(Q>>>=u,E-=u,d>(u=r-I)){if((u=d-u)>o&&m.sane){A.msg=\\\"invalid distance too far back\\\",m.mode=30;break A}if(D=0,y=C,0===B){if(D+=a-u,u2;)p[r++]=y[D++],p[r++]=y[D++],p[r++]=y[D++],w-=3;w&&(p[r++]=y[D++],w>1&&(p[r++]=y[D++]))}else{D=r-d;do{p[r++]=p[D++],p[r++]=p[D++],p[r++]=p[D++],w-=3}while(w>2);w&&(p[r++]=p[D++],w>1&&(p[r++]=p[D++]))}break}}break}}while(t>3,Q&=(1<<(E-=w<<3))-1,A.next_in=t,A.next_out=r,A.avail_in=t=1&&0===v[d];d--);if(D>d&&(D=d),0===d)return r[I++]=20971520,r[I++]=20971520,n.bits=1,0;for(w=1;w0&&(0===A||1!==d))return-1;for(R[1]=0,l=1;l<15;l++)R[l+1]=R[l]+v[l];for(u=0;u852||2===A&&m>592)return 1;for(;;){s=l-k,g[u]E?(f=U[L+g[u]],c=F[S+g[u]]):(f=96,c=0),a=1<>k)+(o-=a)]=s<<24|f<<16|c|0}while(0!==o);for(a=1<>=1;if(0!==a?(G&=a-1,G+=a):G=0,u++,0==--v[l]){if(l===d)break;l=e[t+g[u]]}if(l>D&&(G&C)!==B){for(0===k&&(k=D),Q+=w,p=1<<(y=l-k);y+k852||2===A&&m>592)return 1;r[B=G&C]=D<<24|y<<16|Q-I|0}}return 0!==G&&(r[Q+G]=l-k<<24|64<<16|0),n.bits=D,0},IA=H.Z_FINISH,gA=H.Z_BLOCK,nA=H.Z_TREES,aA=H.Z_OK,oA=H.Z_STREAM_END,BA=H.Z_NEED_DICT,CA=H.Z_STREAM_ERROR,QA=H.Z_DATA_ERROR,EA=H.Z_MEM_ERROR,sA=H.Z_BUF_ERROR,fA=H.Z_DEFLATED,cA=function(A){return(A>>>24&255)+(A>>>8&65280)+((65280&A)<<8)+((255&A)<<24)};function hA(){this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}var lA,uA,wA=function(A){if(!A||!A.state)return CA;var e=A.state;return A.total_in=A.total_out=e.total=0,A.msg=\\\"\\\",e.wrap&&(A.adler=1&e.wrap),e.mode=1,e.last=0,e.havedict=0,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Int32Array(852),e.distcode=e.distdyn=new Int32Array(592),e.sane=1,e.back=-1,aA},dA=function(A){if(!A||!A.state)return CA;var e=A.state;return e.wsize=0,e.whave=0,e.wnext=0,wA(A)},DA=function(A,e){var t;if(!A||!A.state)return CA;var i=A.state;return e<0?(t=0,e=-e):(t=1+(e>>4),e<48&&(e&=15)),e&&(e<8||e>15)?CA:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=t,i.wbits=e,dA(A))},yA=function(A,e){if(!A)return CA;var t=new hA;A.state=t,t.window=null;var i=DA(A,e);return i!==aA&&(A.state=null),i},kA=!0,pA=function(A){if(kA){lA=new Int32Array(512),uA=new Int32Array(32);for(var e=0;e<144;)A.lens[e++]=8;for(;e<256;)A.lens[e++]=9;for(;e<280;)A.lens[e++]=7;for(;e<288;)A.lens[e++]=8;for(rA(1,A.lens,0,288,lA,0,A.work,{bits:9}),e=0;e<32;)A.lens[e++]=5;rA(2,A.lens,0,32,uA,0,A.work,{bits:5}),kA=!1}A.lencode=lA,A.lenbits=9,A.distcode=uA,A.distbits=5},mA=function(A,e,t,i){var r,I=A.state;return null===I.window&&(I.wsize=1<=I.wsize?(I.window.set(e.subarray(t-I.wsize,t),0),I.wnext=0,I.whave=I.wsize):((r=I.wsize-I.wnext)>i&&(r=i),I.window.set(e.subarray(t-i,t-i+r),I.wnext),(i-=r)?(I.window.set(e.subarray(t-i,t),0),I.wnext=i,I.whave=I.wsize):(I.wnext+=r,I.wnext===I.wsize&&(I.wnext=0),I.whave>>8&255,t.check=Y(t.check,G,2,0),o=0,B=0,t.mode=2;break}if(t.flags=0,t.head&&(t.head.done=!1),!(1&t.wrap)||(((255&o)<<8)+(o>>8))%31){A.msg=\\\"incorrect header check\\\",t.mode=30;break}if((15&o)!==fA){A.msg=\\\"unknown compression method\\\",t.mode=30;break}if(B-=4,D=8+(15&(o>>>=4)),0===t.wbits)t.wbits=D;else if(D>t.wbits){A.msg=\\\"invalid window size\\\",t.mode=30;break}t.dmax=1<>8&1),512&t.flags&&(G[0]=255&o,G[1]=o>>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0,t.mode=3;case 3:for(;B<32;){if(0===n)break A;n--,o+=i[I++]<>>8&255,G[2]=o>>>16&255,G[3]=o>>>24&255,t.check=Y(t.check,G,4,0)),o=0,B=0,t.mode=4;case 4:for(;B<16;){if(0===n)break A;n--,o+=i[I++]<>8),512&t.flags&&(G[0]=255&o,G[1]=o>>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0,t.mode=5;case 5:if(1024&t.flags){for(;B<16;){if(0===n)break A;n--,o+=i[I++]<>>8&255,t.check=Y(t.check,G,2,0)),o=0,B=0}else t.head&&(t.head.extra=null);t.mode=6;case 6:if(1024&t.flags&&((E=t.length)>n&&(E=n),E&&(t.head&&(D=t.head.extra_len-t.length,t.head.extra||(t.head.extra=new Uint8Array(t.head.extra_len)),t.head.extra.set(i.subarray(I,I+E),D)),512&t.flags&&(t.check=Y(t.check,i,E,I)),n-=E,I+=E,t.length-=E),t.length))break A;t.length=0,t.mode=7;case 7:if(2048&t.flags){if(0===n)break A;E=0;do{D=i[I+E++],t.head&&D&&t.length<65536&&(t.head.name+=String.fromCharCode(D))}while(D&&E>9&1,t.head.done=!0),A.adler=t.check=0,t.mode=12;break;case 10:for(;B<32;){if(0===n)break A;n--,o+=i[I++]<>>=7&B,B-=7&B,t.mode=27;break}for(;B<3;){if(0===n)break A;n--,o+=i[I++]<>>=1)){case 0:t.mode=14;break;case 1:if(pA(t),t.mode=20,e===nA){o>>>=2,B-=2;break A}break;case 2:t.mode=17;break;case 3:A.msg=\\\"invalid block type\\\",t.mode=30}o>>>=2,B-=2;break;case 14:for(o>>>=7&B,B-=7&B;B<32;){if(0===n)break A;n--,o+=i[I++]<>>16^65535)){A.msg=\\\"invalid stored block lengths\\\",t.mode=30;break}if(t.length=65535&o,o=0,B=0,t.mode=15,e===nA)break A;case 15:t.mode=16;case 16:if(E=t.length){if(E>n&&(E=n),E>a&&(E=a),0===E)break A;r.set(i.subarray(I,I+E),g),n-=E,I+=E,a-=E,g+=E,t.length-=E;break}t.mode=12;break;case 17:for(;B<14;){if(0===n)break A;n--,o+=i[I++]<>>=5,B-=5,t.ndist=1+(31&o),o>>>=5,B-=5,t.ncode=4+(15&o),o>>>=4,B-=4,t.nlen>286||t.ndist>30){A.msg=\\\"too many length or distance symbols\\\",t.mode=30;break}t.have=0,t.mode=18;case 18:for(;t.have>>=3,B-=3}for(;t.have<19;)t.lens[F[t.have++]]=0;if(t.lencode=t.lendyn,t.lenbits=7,k={bits:t.lenbits},y=rA(0,t.lens,0,19,t.lencode,0,t.work,k),t.lenbits=k.bits,y){A.msg=\\\"invalid code lengths set\\\",t.mode=30;break}t.have=0,t.mode=19;case 19:for(;t.have>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=c,B-=c,t.lens[t.have++]=l;else{if(16===l){for(p=c+2;B>>=c,B-=c,0===t.have){A.msg=\\\"invalid bit length repeat\\\",t.mode=30;break}D=t.lens[t.have-1],E=3+(3&o),o>>>=2,B-=2}else if(17===l){for(p=c+3;B>>=c)),o>>>=3,B-=3}else{for(p=c+7;B>>=c)),o>>>=7,B-=7}if(t.have+E>t.nlen+t.ndist){A.msg=\\\"invalid bit length repeat\\\",t.mode=30;break}for(;E--;)t.lens[t.have++]=D}}if(30===t.mode)break;if(0===t.lens[256]){A.msg=\\\"invalid code -- missing end-of-block\\\",t.mode=30;break}if(t.lenbits=9,k={bits:t.lenbits},y=rA(1,t.lens,0,t.nlen,t.lencode,0,t.work,k),t.lenbits=k.bits,y){A.msg=\\\"invalid literal/lengths set\\\",t.mode=30;break}if(t.distbits=6,t.distcode=t.distdyn,k={bits:t.distbits},y=rA(2,t.lens,t.nlen,t.ndist,t.distcode,0,t.work,k),t.distbits=k.bits,y){A.msg=\\\"invalid distances set\\\",t.mode=30;break}if(t.mode=20,e===nA)break A;case 20:t.mode=21;case 21:if(n>=6&&a>=258){A.next_out=g,A.avail_out=a,A.next_in=I,A.avail_in=n,t.hold=o,t.bits=B,$(A,Q),g=A.next_out,r=A.output,a=A.avail_out,I=A.next_in,i=A.input,n=A.avail_in,o=t.hold,B=t.bits,12===t.mode&&(t.back=-1);break}for(t.back=0;h=(m=t.lencode[o&(1<>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>u)])>>>16&255,l=65535&m,!(u+(c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=u,B-=u,t.back+=u}if(o>>>=c,B-=c,t.back+=c,t.length=l,0===h){t.mode=26;break}if(32&h){t.back=-1,t.mode=12;break}if(64&h){A.msg=\\\"invalid literal/length code\\\",t.mode=30;break}t.extra=15&h,t.mode=22;case 22:if(t.extra){for(p=t.extra;B>>=t.extra,B-=t.extra,t.back+=t.extra}t.was=t.length,t.mode=23;case 23:for(;h=(m=t.distcode[o&(1<>>16&255,l=65535&m,!((c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>u)])>>>16&255,l=65535&m,!(u+(c=m>>>24)<=B);){if(0===n)break A;n--,o+=i[I++]<>>=u,B-=u,t.back+=u}if(o>>>=c,B-=c,t.back+=c,64&h){A.msg=\\\"invalid distance code\\\",t.mode=30;break}t.offset=l,t.extra=15&h,t.mode=24;case 24:if(t.extra){for(p=t.extra;B>>=t.extra,B-=t.extra,t.back+=t.extra}if(t.offset>t.dmax){A.msg=\\\"invalid distance too far back\\\",t.mode=30;break}t.mode=25;case 25:if(0===a)break A;if(E=Q-a,t.offset>E){if((E=t.offset-E)>t.whave&&t.sane){A.msg=\\\"invalid distance too far back\\\",t.mode=30;break}E>t.wnext?(E-=t.wnext,s=t.wsize-E):s=t.wnext-E,E>t.length&&(E=t.length),f=t.window}else f=r,s=g-t.offset,E=t.length;E>a&&(E=a),a-=E,t.length-=E;do{r[g++]=f[s++]}while(--E);0===t.length&&(t.mode=21);break;case 26:if(0===a)break A;r[g++]=t.length,a--,t.mode=21;break;case 27:if(t.wrap){for(;B<32;){if(0===n)break A;n--,o|=i[I++]<=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||A&&A.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg=\\\"\\\",this.ended=!1,this.chunks=[],this.strm=new z,this.strm.avail_out=0;var t=GA.inflateInit2(this.strm,e.windowBits);if(t!==UA)throw new Error(K[t]);if(this.header=new FA,GA.inflateGetHeader(this.strm,this.header),e.dictionary&&(\\\"string\\\"==typeof e.dictionary?e.dictionary=Z(e.dictionary):\\\"[object ArrayBuffer]\\\"===SA.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(t=GA.inflateSetDictionary(this.strm,e.dictionary))!==UA))throw new Error(K[t])}function qA(A,e){var t=new JA(e);if(t.push(A),t.err)throw t.msg||K[t.err];return t.result}JA.prototype.push=function(A,e){var t,i,r,I=this.strm,g=this.options.chunkSize,n=this.options.dictionary;if(this.ended)return!1;for(i=e===~~e?e:!0===e?RA:vA,\\\"[object ArrayBuffer]\\\"===SA.call(A)?I.input=new Uint8Array(A):I.input=A,I.next_in=0,I.avail_in=I.input.length;;){for(0===I.avail_out&&(I.output=new Uint8Array(g),I.next_out=0,I.avail_out=g),(t=GA.inflate(I,i))===bA&&n&&((t=GA.inflateSetDictionary(I,n))===UA?t=GA.inflate(I,i):t===NA&&(t=bA));I.avail_in>0&&t===LA&&I.state.wrap>0&&0!==A[I.next_in];)GA.inflateReset(I),t=GA.inflate(I,i);switch(t){case MA:case NA:case bA:case xA:return this.onEnd(t),this.ended=!0,!1}if(r=I.avail_out,I.next_out&&(0===I.avail_out||t===LA))if(\\\"string\\\"===this.options.to){var a=W(I.output,I.next_out),o=I.next_out-a,B=j(I.output,a);I.next_out=o,I.avail_out=g-o,o&&I.output.set(I.output.subarray(a,a+o),0),this.onData(B)}else this.onData(I.output.length===I.next_out?I.output:I.output.subarray(0,I.next_out));if(t!==UA||0!==r){if(t===LA)return t=GA.inflateEnd(this.strm),this.onEnd(t),this.ended=!0,!0;if(0===I.avail_in)break}}return!0},JA.prototype.onData=function(A){this.chunks.push(A)},JA.prototype.onEnd=function(A){A===UA&&(\\\"string\\\"===this.options.to?this.result=this.chunks.join(\\\"\\\"):this.result=T(this.chunks)),this.chunks=[],this.err=A,this.msg=this.strm.msg};var YA={Inflate:JA,inflate:qA,inflateRaw:function(A,e){return(e=e||{}).raw=!0,qA(A,e)},ungzip:qA,constants:H}.inflate;function KA(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var HA=function(A){s(t,w);var e=KA(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){return YA(new Uint8Array(A)).buffer}}]),t}(),OA=Object.freeze({__proto__:null,default:HA});function PA(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var TA,VA=function(A){s(t,w);var e=PA(t);function t(){return B(this,t),e.apply(this,arguments)}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){for(var e=new DataView(A),t=[],i=0;i>3],m<<=7&G),c=0;c>3]),128&m?(a&&(a[G]=1),f=f>(g=S.encoding<2?y[k++]:p)?g:f,n[G++]=g):(a&&(a[G]=0),n[G++]=i),m<<=1;G+=F}else if(S.encoding<2)for(h=0;h(g=y[k++])?g:f,n[G++]=g;G+=F}else for(f=f>p?p:f,h=0;h0){var g=new Uint8Array(Math.ceil(i.width*i.height/8)),n=(I=new DataView(A,e,i.mask.numBytes)).getInt16(0,!0),a=2,o=0;do{if(n>0)for(;n--;)g[o++]=I.getUint8(a++);else{var B=I.getUint8(a++);for(n=-n;n--;)g[o++]=B}n=I.getInt16(a,!0),a+=2}while(a0?1:0),s=Q+(i.height%Q>0?1:0);i.pixels.blocks=new Array(E*s);for(var f=0,c=0;c3)throw\\\"Invalid block encoding (\\\"+w.encoding+\\\")\\\";if(2!==w.encoding){if(0!==d&&2!==d){if(d>>=6,w.offsetType=d,2===d)w.offset=I.getInt8(1),l++;else if(1===d)w.offset=I.getInt16(1,!0),l+=2;else{if(0!==d)throw\\\"Invalid block offset type\\\";w.offset=I.getFloat32(1,!0),l+=4}if(1===w.encoding)if(d=I.getUint8(l),l++,w.bitsPerPixel=63&d,d>>=6,w.numValidPixelsType=d,2===d)w.numValidPixels=I.getUint8(l),l++;else if(1===d)w.numValidPixels=I.getUint16(l,!0),l+=2;else{if(0!==d)throw\\\"Invalid valid pixel count type\\\";w.numValidPixels=I.getUint32(l,!0),l+=4}}var D;if(e+=l,3!==w.encoding)if(0===w.encoding){var y=(i.pixels.numBytes-1)/4;if(y!==Math.floor(y))throw\\\"uncompressed block has invalid length\\\";D=new ArrayBuffer(4*y),new Uint8Array(D).set(new Uint8Array(A,e,4*y));var k=new Float32Array(D);w.rawData=k,e+=4*y}else if(1===w.encoding){var p=Math.ceil(w.numValidPixels*w.bitsPerPixel/8),m=Math.ceil(p/4);D=new ArrayBuffer(4*m),new Uint8Array(D).set(new Uint8Array(A,e,p)),w.stuffedData=new Uint32Array(D),e+=p}}else e++}return i.eofOffset=e,i},I=function(A,e,t,i,r,I,g){var n,a,o,B=(1<=e)a=o>>>Q-e&B,Q-=e;else{var f=e-Q;a=(o&B)<>>(Q=32-f)}I[n]=a=t?(o=B>>>f-t&E,f-=t):(o=(B&E)<<(C=t-f)&E,o+=(B=A[s++])>>>(f=32-C)),e[a]=r[o];else for(Q=Math.ceil((n-I)/g),a=0;a=t?(o=B>>>f-t&E,f-=t):(o=(B&E)<<(C=t-f)&E,o+=(B=A[s++])>>>(f=32-C)),e[a]=o=e?(Q=g>>>C-e&n,C-=e):(Q=(g&n)<<(B=e-C)&n,Q+=(g=A[a++])>>>(C=32-B)),E[o]=Q=t?(o=B>>>f&Q,s-=t,f+=t):(o=B>>>f&Q,s=32-(C=t-s),o|=((B=A[E++])&(1<=t?(o=B>>>f&Q,s-=t,f+=t):(o=B>>>f&Q,s=32-(C=t-s),o|=((B=A[E++])&(1<=e?(Q=g>>>E&n,C-=e,E+=e):(Q=g>>>E&n,C=32-(B=e-C),Q|=((g=A[a++])&(1<=t?(I=g>>>B-t&a,B-=t):(I=(g&a)<<(n=t-B)&a,I+=(g=A[o++])>>>(B=32-n)),e[r]=I;return e},C=function(A,e,t,i){var r,I,g,n,a=(1<=t?(I=g>>>C&a,B-=t,C+=t):(I=g>>>C&a,B=32-(n=t-B),I|=((g=A[o++])&(1<=359?359:r;r-=g;do{e+=A[I++]<<8,t+=e+=A[I++]}while(--g);e=(65535&e)+(e>>>16),t=(65535&t)+(t>>>16)}return 1&i&&(t+=e+=A[I]<<8),((t=(65535&t)+(t>>>16))<<16|(e=(65535&e)+(e>>>16)))>>>0},readHeaderInfo:function(A,e){var t=e.ptr,i=new Uint8Array(A,t,6),r={};if(r.fileIdentifierString=String.fromCharCode.apply(null,i),0!==r.fileIdentifierString.lastIndexOf(\\\"Lerc2\\\",0))throw\\\"Unexpected file identifier string (expect Lerc2 ): \\\"+r.fileIdentifierString;t+=6;var I,g=new DataView(A,t,8),n=g.getInt32(0,!0);if(r.fileVersion=n,t+=4,n>=3&&(r.checksum=g.getUint32(4,!0),t+=4),g=new DataView(A,t,12),r.height=g.getUint32(0,!0),r.width=g.getUint32(4,!0),t+=8,n>=4?(r.numDims=g.getUint32(8,!0),t+=4):r.numDims=1,g=new DataView(A,t,40),r.numValidPixel=g.getUint32(0,!0),r.microBlockSize=g.getInt32(4,!0),r.blobSize=g.getInt32(8,!0),r.imageType=g.getInt32(12,!0),r.maxZError=g.getFloat64(16,!0),r.zMin=g.getFloat64(24,!0),r.zMax=g.getFloat64(32,!0),t+=40,e.headerInfo=r,e.ptr=t,n>=3&&(I=n>=4?52:48,this.computeChecksumFletcher32(new Uint8Array(A,t-I,r.blobSize-14))!==r.checksum))throw\\\"Checksum failed.\\\";return!0},checkMinMaxRanges:function(A,e){var t=e.headerInfo,i=this.getDataTypeArray(t.imageType),r=t.numDims*this.getDataTypeSize(t.imageType),I=this.readSubArray(A,e.ptr,i,r),g=this.readSubArray(A,e.ptr+r,i,r);e.ptr+=2*r;var n,a=!0;for(n=0;n0){t=new Uint8Array(Math.ceil(g/8));var B=(a=new DataView(A,r,o.numBytes)).getInt16(0,!0),C=2,Q=0,E=0;do{if(B>0)for(;B--;)t[Q++]=a.getUint8(C++);else for(E=a.getUint8(C++),B=-B;B--;)t[Q++]=E;B=a.getInt16(C,!0),C+=2}while(C>3],s<<=7&f):s=t[f>>3],128&s&&(i[f]=1);e.pixels.resultMask=i,o.bitset=t,r+=o.numBytes}return e.ptr=r,e.mask=o,!0},readDataOneSweep:function(A,e,t,i){var r,I=e.ptr,g=e.headerInfo,n=g.numDims,a=g.width*g.height,o=g.imageType,B=g.numValidPixel*Q.getDataTypeSize(o)*n,C=e.pixels.resultMask;if(t===Uint8Array)r=new Uint8Array(A,I,B);else{var E=new ArrayBuffer(B);new Uint8Array(E).set(new Uint8Array(A,I,B)),r=new t(E)}if(r.length===a*n)e.pixels.resultPixels=i?Q.swapDimensionOrder(r,a,n,t,!0):r;else{e.pixels.resultPixels=new t(a*n);var s=0,f=0,c=0,h=0;if(n>1){if(i){for(f=0;f=g)return!1;var n=new Uint32Array(g-I);Q.decodeBits(A,e,n);var a,o,B,C,s=[];for(a=I;a0&&(s[o].second=l<>>32-C,32-w>=C?32===(w+=C)&&(w=0,l=u[++d]):(w+=C-32,l=u[++d],s[o].second|=l>>>32-w));var D=0,y=0,k=new E;for(a=0;a=t?t:D;var p,m,G,F,S,v=[];for(a=I;a0)if(p=[C,o],C<=y)for(m=s[o].second<=0;F--)m>>>F&1?(S.right||(S.right=new E),S=S.right):(S.left||(S.left=new E),S=S.left),0!==F||S.val||(S.val=p[1]);return{decodeLut:v,numBitsLUTQick:y,numBitsLUT:D,tree:k,stuffedData:u,srcPtr:d,bitPos:w}},readHuffman:function(A,e,t,i){var r,I,g,n,a,o,B,C,E,s=e.headerInfo.numDims,f=e.headerInfo.height,c=e.headerInfo.width,h=c*f,l=this.readHuffmanTree(A,e),u=l.decodeLut,w=l.tree,d=l.stuffedData,D=l.srcPtr,y=l.bitPos,k=l.numBitsLUTQick,p=l.numBitsLUT,m=0===e.headerInfo.imageType?128:0,G=e.pixels.resultMask,F=0;y>0&&(D++,y=0);var S,v=d[D],R=1===e.encodeMode,U=new t(h*s),L=U;if(s<2||R){for(S=0;S1&&(L=new t(U.buffer,h*S,h),F=0),e.headerInfo.numValidPixel===c*f)for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,R?(g+=B>0?F:o>0?L[C-c]:F,g&=255,L[C]=g,F=g):L[C]=g}else for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,R?(B>0&&G[C-1]?g+=F:o>0&&G[C-c]?g+=L[C-c]:g+=F,g&=255,L[C]=g,F=g):L[C]=g}}else for(C=0,o=0;o>>32-k,32-y>>64-y-k),u[a])I=u[a][1],y+=u[a][0];else for(a=n=v<>>32-p,32-y>>64-y-p),r=w,E=0;E>>p-E-1&1?r.right:r.left).left&&!r.right){I=r.val,y=y+E+1;break}y>=32&&(y-=32,v=d[++D]),g=I-m,L[C]=g}e.ptr=e.ptr+4*(D+1)+(y>0?4:0),e.pixels.resultPixels=U,s>1&&!i&&(e.pixels.resultPixels=Q.swapDimensionOrder(U,h,s,t))},decodeBits:function(A,e,t,i,r){var I=e.headerInfo,Q=I.fileVersion,E=0,s=A.byteLength-e.ptr>=5?5:A.byteLength-e.ptr,f=new DataView(A,e.ptr,s),c=f.getUint8(0);E++;var h=c>>6,l=0===h?4:3-h,u=(32&c)>0,w=31&c,d=0;if(1===l)d=f.getUint8(E),E++;else if(2===l)d=f.getUint16(E,!0),E+=2;else{if(4!==l)throw\\\"Invalid valid pixel count type\\\";d=f.getUint32(E,!0),E+=4}var D,y,k,p,m,G,F,S,v,R=2*I.maxZError,U=I.numDims>1?I.maxValues[r]:I.zMax;if(u){for(e.counter.lut++,S=f.getUint8(E),E++,p=Math.ceil((S-1)*w/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),k=new Uint8Array(y),e.ptr+=E,k.set(new Uint8Array(A,e.ptr,p)),F=new Uint32Array(y),e.ptr+=p,v=0;S-1>>>v;)v++;p=Math.ceil(d*v/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),(k=new Uint8Array(y)).set(new Uint8Array(A,e.ptr,p)),D=new Uint32Array(y),e.ptr+=p,G=Q>=3?o(F,w,S-1,i,R,U):n(F,w,S-1,i,R,U),Q>=3?a(D,t,v,d,G):g(D,t,v,d,G)}else e.counter.bitstuffer++,v=w,e.ptr+=E,v>0&&(p=Math.ceil(d*v/8),m=Math.ceil(p/4),y=new ArrayBuffer(4*m),(k=new Uint8Array(y)).set(new Uint8Array(A,e.ptr,p)),D=new Uint32Array(y),e.ptr+=p,Q>=3?null==i?C(D,t,v,d):a(D,t,v,d,!1,i,R,U):null==i?B(D,t,v,d):g(D,t,v,d,!1,i,R,U))},readTiles:function(A,e,t,i){var r=e.headerInfo,I=r.width,g=r.height,n=I*g,a=r.microBlockSize,o=r.imageType,B=Q.getDataTypeSize(o),C=Math.ceil(I/a),E=Math.ceil(g/a);e.pixels.numBlocksY=E,e.pixels.numBlocksX=C,e.pixels.ptr=0;var s,f,c,h,l,u,w,d,D,y,k=0,p=0,m=0,G=0,F=0,S=0,v=0,R=0,U=0,L=0,b=0,M=0,N=0,x=0,J=0,q=new t(a*a),Y=g%a||a,K=I%a||a,H=r.numDims,O=e.pixels.resultMask,P=e.pixels.resultPixels,T=r.fileVersion>=5?14:15,V=r.zMax;for(m=0;m1?(y=P,L=m*I*a+G*a,P=new t(e.pixels.resultPixels.buffer,n*d*B,n),V=r.maxValues[d]):y=null,v=A.byteLength-e.ptr,f={},J=0,R=(s=new DataView(A,e.ptr,Math.min(10,v))).getUint8(0),J++,D=r.fileVersion>=5?4&R:0,U=R>>6&255,(R>>2&T)!=(G*a>>3&T))throw\\\"integrity issue\\\";if(D&&0===d)throw\\\"integrity issue\\\";if((l=3&R)>3)throw e.ptr+=J,\\\"Invalid block encoding (\\\"+l+\\\")\\\";if(2!==l)if(0===l){if(D)throw\\\"integrity issue\\\";if(e.counter.uncompressed++,e.ptr+=J,M=(M=F*S*B)<(N=A.byteLength-e.ptr)?M:N,c=new ArrayBuffer(M%B==0?M:M+B-M%B),new Uint8Array(c).set(new Uint8Array(A,e.ptr,M)),h=new t(c),x=0,O)for(k=0;k1&&!i&&(e.pixels.resultPixels=Q.swapDimensionOrder(e.pixels.resultPixels,n,H,t))},formatFileInfo:function(A){return{fileIdentifierString:A.headerInfo.fileIdentifierString,fileVersion:A.headerInfo.fileVersion,imageType:A.headerInfo.imageType,height:A.headerInfo.height,width:A.headerInfo.width,numValidPixel:A.headerInfo.numValidPixel,microBlockSize:A.headerInfo.microBlockSize,blobSize:A.headerInfo.blobSize,maxZError:A.headerInfo.maxZError,pixelType:Q.getPixelType(A.headerInfo.imageType),eofOffset:A.eofOffset,mask:A.mask?{numBytes:A.mask.numBytes}:null,pixels:{numBlocksX:A.pixels.numBlocksX,numBlocksY:A.pixels.numBlocksY,maxValue:A.headerInfo.zMax,minValue:A.headerInfo.zMin,noDataValue:A.noDataValue}}},constructConstantSurface:function(A,e){var t=A.headerInfo.zMax,i=A.headerInfo.zMin,r=A.headerInfo.maxValues,I=A.headerInfo.numDims,g=A.headerInfo.height*A.headerInfo.width,n=0,a=0,o=0,B=A.pixels.resultMask,C=A.pixels.resultPixels;if(B)if(I>1){if(e)for(n=0;n1&&i!==t)if(e)for(n=0;n=-128&&e<=127;break;case 1:t=e>=0&&e<=255;break;case 2:t=e>=-32768&&e<=32767;break;case 3:t=e>=0&&e<=65536;break;case 4:t=e>=-2147483648&&e<=2147483647;break;case 5:t=e>=0&&e<=4294967296;break;case 6:t=e>=-34027999387901484e22&&e<=34027999387901484e22;break;case 7:t=e>=-17976931348623157e292&&e<=17976931348623157e292;break;default:t=!1}return t},getDataTypeSize:function(A){var e=0;switch(A){case 0:case 1:e=1;break;case 2:case 3:e=2;break;case 4:case 5:case 6:e=4;break;case 7:e=8;break;default:e=A}return e},getDataTypeUsed:function(A,e){var t=A;switch(A){case 2:case 4:t=A-e;break;case 3:case 5:t=A-2*e;break;case 6:t=0===e?A:1===e?2:1;break;case 7:t=0===e?A:A-2*e+1;break;default:t=A}return t},getOnePixel:function(A,e,t,i){var r=0;switch(t){case 0:r=i.getInt8(e);break;case 1:r=i.getUint8(e);break;case 2:r=i.getInt16(e,!0);break;case 3:r=i.getUint16(e,!0);break;case 4:r=i.getInt32(e,!0);break;case 5:r=i.getUInt32(e,!0);break;case 6:r=i.getFloat32(e,!0);break;case 7:r=i.getFloat64(e,!0);break;default:throw\\\"the decoder does not understand this pixel type\\\"}return r},swapDimensionOrder:function(A,e,t,i,r){var I=0,g=0,n=0,a=0,o=A;if(t>1)if(o=new i(e*t),r)for(I=0;I5)throw\\\"unsupported lerc version 2.\\\"+g;Q.readMask(A,r),I.numValidPixel===I.width*I.height||r.pixels.resultMask||(r.pixels.resultMask=e.maskData);var a=I.width*I.height;r.pixels.resultPixels=new n(a*I.numDims),r.counter={onesweep:0,uncompressed:0,lut:0,bitstuffer:0,constant:0,constantoffset:0};var o,B=!e.returnPixelInterleavedDims;if(0!==I.numValidPixel)if(I.zMax===I.zMin)Q.constructConstantSurface(r,B);else if(g>=4&&Q.checkMinMaxRanges(A,r))Q.constructConstantSurface(r,B);else{var C=new DataView(A,r.ptr,2),E=C.getUint8(0);if(r.ptr++,E)Q.readDataOneSweep(A,r,n,B);else if(g>1&&I.imageType<=1&&Math.abs(I.maxZError-.5)<1e-5){var s=C.getUint8(1);if(r.ptr++,r.encodeMode=s,s>2||g<4&&s>1)throw\\\"Invalid Huffman flag \\\"+s;s?Q.readHuffman(A,r,n,B):Q.readTiles(A,r,n,B)}else Q.readTiles(A,r,n,B)}r.eofOffset=r.ptr,e.inputOffset?(o=r.headerInfo.blobSize+e.inputOffset-r.ptr,Math.abs(o)>=1&&(r.eofOffset=e.inputOffset+r.headerInfo.blobSize)):(o=r.headerInfo.blobSize-r.ptr,Math.abs(o)>=1&&(r.eofOffset=r.headerInfo.blobSize));var f={width:I.width,height:I.height,pixelData:r.pixels.resultPixels,minValue:I.zMin,maxValue:I.zMax,validPixelCount:I.numValidPixel,dimCount:I.numDims,dimStats:{minValues:I.minValues,maxValues:I.maxValues},maskData:r.pixels.resultMask};if(r.pixels.resultMask&&Q.isValidPixelValue(I.imageType,t)){var c=r.pixels.resultMask;for(i=0;i1&&(o&&f.push(o),d.fileInfo.mask&&d.fileInfo.mask.numBytes>0&&w++),E++,u.pixels.push(d.pixelData),u.statistics.push({minValue:d.minValue,maxValue:d.maxValue,noDataValue:d.noDataValue,dimStats:d.dimStats})}if(i>1&&w>1){for(Q=u.width*u.height,u.bandMasks=f,(o=new Uint8Array(Q)).set(f[0]),B=1;B1&&void 0!==arguments[1]?arguments[1]:0;if(!jA)throw new Error(\\\"ZSTDDecoder: Await .init() before decoding.\\\");var t=A.byteLength,i=jA.exports.malloc(t);WA.set(A,i),e=e||Number(jA.exports.ZSTD_findDecompressedSize(i,t));var r=jA.exports.malloc(e),I=jA.exports.ZSTD_decompress(r,e,i,t),g=WA.slice(r,r+I);return jA.exports.free(i),jA.exports.free(r),g}}]),A}(),ee=\\\"AGFzbQEAAAABpQEVYAF/AX9gAn9/AGADf39/AX9gBX9/f39/AX9gAX8AYAJ/fwF/YAR/f39/AX9gA39/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gAn9/AX5gAn5+AX5gAABgBX9/f39/AGAGf39/f39/AGAIf39/f39/f38AYAl/f39/f39/f38AYAABf2AIf39/f39/f38Bf2ANf39/f39/f39/f39/fwF/YAF/AX4CJwEDZW52H2Vtc2NyaXB0ZW5fbm90aWZ5X21lbW9yeV9ncm93dGgABANpaAEFAAAFAgEFCwACAQABAgIFBQcAAwABDgsBAQcAEhMHAAUBDAQEAAANBwQCAgYCBAgDAwMDBgEACQkHBgICAAYGAgQUBwYGAwIGAAMCAQgBBwUGCgoEEQAEBAEIAwgDBQgDEA8IAAcABAUBcAECAgUEAQCAAgYJAX8BQaCgwAILB2AHBm1lbW9yeQIABm1hbGxvYwAoBGZyZWUAJgxaU1REX2lzRXJyb3IAaBlaU1REX2ZpbmREZWNvbXByZXNzZWRTaXplAFQPWlNURF9kZWNvbXByZXNzAEoGX3N0YXJ0ACQJBwEAQQELASQKussBaA8AIAAgACgCBCABajYCBAsZACAAKAIAIAAoAgRBH3F0QQAgAWtBH3F2CwgAIABBiH9LC34BBH9BAyEBIAAoAgQiA0EgTQRAIAAoAggiASAAKAIQTwRAIAAQDQ8LIAAoAgwiAiABRgRAQQFBAiADQSBJGw8LIAAgASABIAJrIANBA3YiBCABIARrIAJJIgEbIgJrIgQ2AgggACADIAJBA3RrNgIEIAAgBCgAADYCAAsgAQsUAQF/IAAgARACIQIgACABEAEgAgv3AQECfyACRQRAIABCADcCACAAQQA2AhAgAEIANwIIQbh/DwsgACABNgIMIAAgAUEEajYCECACQQRPBEAgACABIAJqIgFBfGoiAzYCCCAAIAMoAAA2AgAgAUF/ai0AACIBBEAgAEEIIAEQFGs2AgQgAg8LIABBADYCBEF/DwsgACABNgIIIAAgAS0AACIDNgIAIAJBfmoiBEEBTQRAIARBAWtFBEAgACABLQACQRB0IANyIgM2AgALIAAgAS0AAUEIdCADajYCAAsgASACakF/ai0AACIBRQRAIABBADYCBEFsDwsgAEEoIAEQFCACQQN0ams2AgQgAgsWACAAIAEpAAA3AAAgACABKQAINwAICy8BAX8gAUECdEGgHWooAgAgACgCAEEgIAEgACgCBGprQR9xdnEhAiAAIAEQASACCyEAIAFCz9bTvtLHq9lCfiAAfEIfiUKHla+vmLbem55/fgsdAQF/IAAoAgggACgCDEYEfyAAKAIEQSBGBUEACwuCBAEDfyACQYDAAE8EQCAAIAEgAhBnIAAPCyAAIAJqIQMCQCAAIAFzQQNxRQRAAkAgAkEBSARAIAAhAgwBCyAAQQNxRQRAIAAhAgwBCyAAIQIDQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADTw0BIAJBA3ENAAsLAkAgA0F8cSIEQcAASQ0AIAIgBEFAaiIFSw0AA0AgAiABKAIANgIAIAIgASgCBDYCBCACIAEoAgg2AgggAiABKAIMNgIMIAIgASgCEDYCECACIAEoAhQ2AhQgAiABKAIYNgIYIAIgASgCHDYCHCACIAEoAiA2AiAgAiABKAIkNgIkIAIgASgCKDYCKCACIAEoAiw2AiwgAiABKAIwNgIwIAIgASgCNDYCNCACIAEoAjg2AjggAiABKAI8NgI8IAFBQGshASACQUBrIgIgBU0NAAsLIAIgBE8NAQNAIAIgASgCADYCACABQQRqIQEgAkEEaiICIARJDQALDAELIANBBEkEQCAAIQIMAQsgA0F8aiIEIABJBEAgACECDAELIAAhAgNAIAIgAS0AADoAACACIAEtAAE6AAEgAiABLQACOgACIAIgAS0AAzoAAyABQQRqIQEgAkEEaiICIARNDQALCyACIANJBEADQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADRw0ACwsgAAsMACAAIAEpAAA3AAALQQECfyAAKAIIIgEgACgCEEkEQEEDDwsgACAAKAIEIgJBB3E2AgQgACABIAJBA3ZrIgE2AgggACABKAAANgIAQQALDAAgACABKAIANgAAC/cCAQJ/AkAgACABRg0AAkAgASACaiAASwRAIAAgAmoiBCABSw0BCyAAIAEgAhALDwsgACABc0EDcSEDAkACQCAAIAFJBEAgAwRAIAAhAwwDCyAAQQNxRQRAIAAhAwwCCyAAIQMDQCACRQ0EIAMgAS0AADoAACABQQFqIQEgAkF/aiECIANBAWoiA0EDcQ0ACwwBCwJAIAMNACAEQQNxBEADQCACRQ0FIAAgAkF/aiICaiIDIAEgAmotAAA6AAAgA0EDcQ0ACwsgAkEDTQ0AA0AgACACQXxqIgJqIAEgAmooAgA2AgAgAkEDSw0ACwsgAkUNAgNAIAAgAkF/aiICaiABIAJqLQAAOgAAIAINAAsMAgsgAkEDTQ0AIAIhBANAIAMgASgCADYCACABQQRqIQEgA0EEaiEDIARBfGoiBEEDSw0ACyACQQNxIQILIAJFDQADQCADIAEtAAA6AAAgA0EBaiEDIAFBAWohASACQX9qIgINAAsLIAAL8wICAn8BfgJAIAJFDQAgACACaiIDQX9qIAE6AAAgACABOgAAIAJBA0kNACADQX5qIAE6AAAgACABOgABIANBfWogAToAACAAIAE6AAIgAkEHSQ0AIANBfGogAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa0iBUIghiAFhCEFIAMgBGohAQNAIAEgBTcDGCABIAU3AxAgASAFNwMIIAEgBTcDACABQSBqIQEgAkFgaiICQR9LDQALCyAACy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAIajYCACADCy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAFajYCACADCx8AIAAgASACKAIEEAg2AgAgARAEGiAAIAJBCGo2AgQLCAAgAGdBH3MLugUBDX8jAEEQayIKJAACfyAEQQNNBEAgCkEANgIMIApBDGogAyAEEAsaIAAgASACIApBDGpBBBAVIgBBbCAAEAMbIAAgACAESxsMAQsgAEEAIAEoAgBBAXRBAmoQECENQVQgAygAACIGQQ9xIgBBCksNABogAiAAQQVqNgIAIAMgBGoiAkF8aiEMIAJBeWohDiACQXtqIRAgAEEGaiELQQQhBSAGQQR2IQRBICAAdCIAQQFyIQkgASgCACEPQQAhAiADIQYCQANAIAlBAkggAiAPS3JFBEAgAiEHAkAgCARAA0AgBEH//wNxQf//A0YEQCAHQRhqIQcgBiAQSQR/IAZBAmoiBigAACAFdgUgBUEQaiEFIARBEHYLIQQMAQsLA0AgBEEDcSIIQQNGBEAgBUECaiEFIARBAnYhBCAHQQNqIQcMAQsLIAcgCGoiByAPSw0EIAVBAmohBQNAIAIgB0kEQCANIAJBAXRqQQA7AQAgAkEBaiECDAELCyAGIA5LQQAgBiAFQQN1aiIHIAxLG0UEQCAHKAAAIAVBB3EiBXYhBAwCCyAEQQJ2IQQLIAYhBwsCfyALQX9qIAQgAEF/anEiBiAAQQF0QX9qIgggCWsiEUkNABogBCAIcSIEQQAgESAEIABIG2shBiALCyEIIA0gAkEBdGogBkF/aiIEOwEAIAlBASAGayAEIAZBAUgbayEJA0AgCSAASARAIABBAXUhACALQX9qIQsMAQsLAn8gByAOS0EAIAcgBSAIaiIFQQN1aiIGIAxLG0UEQCAFQQdxDAELIAUgDCIGIAdrQQN0awshBSACQQFqIQIgBEUhCCAGKAAAIAVBH3F2IQQMAQsLQWwgCUEBRyAFQSBKcg0BGiABIAJBf2o2AgAgBiAFQQdqQQN1aiADawwBC0FQCyEAIApBEGokACAACwkAQQFBBSAAGwsMACAAIAEoAAA2AAALqgMBCn8jAEHwAGsiCiQAIAJBAWohDiAAQQhqIQtBgIAEIAVBf2p0QRB1IQxBACECQQEhBkEBIAV0IglBf2oiDyEIA0AgAiAORkUEQAJAIAEgAkEBdCINai8BACIHQf//A0YEQCALIAhBA3RqIAI2AgQgCEF/aiEIQQEhBwwBCyAGQQAgDCAHQRB0QRB1ShshBgsgCiANaiAHOwEAIAJBAWohAgwBCwsgACAFNgIEIAAgBjYCACAJQQN2IAlBAXZqQQNqIQxBACEAQQAhBkEAIQIDQCAGIA5GBEADQAJAIAAgCUYNACAKIAsgAEEDdGoiASgCBCIGQQF0aiICIAIvAQAiAkEBajsBACABIAUgAhAUayIIOgADIAEgAiAIQf8BcXQgCWs7AQAgASAEIAZBAnQiAmooAgA6AAIgASACIANqKAIANgIEIABBAWohAAwBCwsFIAEgBkEBdGouAQAhDUEAIQcDQCAHIA1ORQRAIAsgAkEDdGogBjYCBANAIAIgDGogD3EiAiAISw0ACyAHQQFqIQcMAQsLIAZBAWohBgwBCwsgCkHwAGokAAsjAEIAIAEQCSAAhUKHla+vmLbem55/fkLj3MqV/M7y9YV/fAsQACAAQn43AwggACABNgIACyQBAX8gAARAIAEoAgQiAgRAIAEoAgggACACEQEADwsgABAmCwsfACAAIAEgAi8BABAINgIAIAEQBBogACACQQRqNgIEC0oBAX9BoCAoAgAiASAAaiIAQX9MBEBBiCBBMDYCAEF/DwsCQCAAPwBBEHRNDQAgABBmDQBBiCBBMDYCAEF/DwtBoCAgADYCACABC9cBAQh/Qbp/IQoCQCACKAIEIgggAigCACIJaiIOIAEgAGtLDQBBbCEKIAkgBCADKAIAIgtrSw0AIAAgCWoiBCACKAIIIgxrIQ0gACABQWBqIg8gCyAJQQAQKSADIAkgC2o2AgACQAJAIAwgBCAFa00EQCANIQUMAQsgDCAEIAZrSw0CIAcgDSAFayIAaiIBIAhqIAdNBEAgBCABIAgQDxoMAgsgBCABQQAgAGsQDyEBIAIgACAIaiIINgIEIAEgAGshBAsgBCAPIAUgCEEBECkLIA4hCgsgCgubAgEBfyMAQYABayINJAAgDSADNgJ8AkAgAkEDSwRAQX8hCQwBCwJAAkACQAJAIAJBAWsOAwADAgELIAZFBEBBuH8hCQwEC0FsIQkgBS0AACICIANLDQMgACAHIAJBAnQiAmooAgAgAiAIaigCABA7IAEgADYCAEEBIQkMAwsgASAJNgIAQQAhCQwCCyAKRQRAQWwhCQwCC0EAIQkgC0UgDEEZSHINAUEIIAR0QQhqIQBBACECA0AgAiAATw0CIAJBQGshAgwAAAsAC0FsIQkgDSANQfwAaiANQfgAaiAFIAYQFSICEAMNACANKAJ4IgMgBEsNACAAIA0gDSgCfCAHIAggAxAYIAEgADYCACACIQkLIA1BgAFqJAAgCQsLACAAIAEgAhALGgsQACAALwAAIAAtAAJBEHRyCy8AAn9BuH8gAUEISQ0AGkFyIAAoAAQiAEF3Sw0AGkG4fyAAQQhqIgAgACABSxsLCwkAIAAgATsAAAsDAAELigYBBX8gACAAKAIAIgVBfnE2AgBBACAAIAVBAXZqQYQgKAIAIgQgAEYbIQECQAJAIAAoAgQiAkUNACACKAIAIgNBAXENACACQQhqIgUgA0EBdkF4aiIDQQggA0EISxtnQR9zQQJ0QYAfaiIDKAIARgRAIAMgAigCDDYCAAsgAigCCCIDBEAgAyACKAIMNgIECyACKAIMIgMEQCADIAIoAgg2AgALIAIgAigCACAAKAIAQX5xajYCAEGEICEAAkACQCABRQ0AIAEgAjYCBCABKAIAIgNBAXENASADQQF2QXhqIgNBCCADQQhLG2dBH3NBAnRBgB9qIgMoAgAgAUEIakYEQCADIAEoAgw2AgALIAEoAggiAwRAIAMgASgCDDYCBAsgASgCDCIDBEAgAyABKAIINgIAQYQgKAIAIQQLIAIgAigCACABKAIAQX5xajYCACABIARGDQAgASABKAIAQQF2akEEaiEACyAAIAI2AgALIAIoAgBBAXZBeGoiAEEIIABBCEsbZ0Efc0ECdEGAH2oiASgCACEAIAEgBTYCACACIAA2AgwgAkEANgIIIABFDQEgACAFNgIADwsCQCABRQ0AIAEoAgAiAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAigCACABQQhqRgRAIAIgASgCDDYCAAsgASgCCCICBEAgAiABKAIMNgIECyABKAIMIgIEQCACIAEoAgg2AgBBhCAoAgAhBAsgACAAKAIAIAEoAgBBfnFqIgI2AgACQCABIARHBEAgASABKAIAQQF2aiAANgIEIAAoAgAhAgwBC0GEICAANgIACyACQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgIoAgAhASACIABBCGoiAjYCACAAIAE2AgwgAEEANgIIIAFFDQEgASACNgIADwsgBUEBdkF4aiIBQQggAUEISxtnQR9zQQJ0QYAfaiICKAIAIQEgAiAAQQhqIgI2AgAgACABNgIMIABBADYCCCABRQ0AIAEgAjYCAAsLDgAgAARAIABBeGoQJQsLgAIBA38CQCAAQQ9qQXhxQYQgKAIAKAIAQQF2ayICEB1Bf0YNAAJAQYQgKAIAIgAoAgAiAUEBcQ0AIAFBAXZBeGoiAUEIIAFBCEsbZ0Efc0ECdEGAH2oiASgCACAAQQhqRgRAIAEgACgCDDYCAAsgACgCCCIBBEAgASAAKAIMNgIECyAAKAIMIgFFDQAgASAAKAIINgIAC0EBIQEgACAAKAIAIAJBAXRqIgI2AgAgAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAygCACECIAMgAEEIaiIDNgIAIAAgAjYCDCAAQQA2AgggAkUNACACIAM2AgALIAELtwIBA38CQAJAIABBASAAGyICEDgiAA0AAkACQEGEICgCACIARQ0AIAAoAgAiA0EBcQ0AIAAgA0EBcjYCACADQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgAgAEEIakYEQCABIAAoAgw2AgALIAAoAggiAQRAIAEgACgCDDYCBAsgACgCDCIBBEAgASAAKAIINgIACyACECchAkEAIQFBhCAoAgAhACACDQEgACAAKAIAQX5xNgIAQQAPCyACQQ9qQXhxIgMQHSICQX9GDQIgAkEHakF4cSIAIAJHBEAgACACaxAdQX9GDQMLAkBBhCAoAgAiAUUEQEGAICAANgIADAELIAAgATYCBAtBhCAgADYCACAAIANBAXRBAXI2AgAMAQsgAEUNAQsgAEEIaiEBCyABC7kDAQJ/IAAgA2ohBQJAIANBB0wEQANAIAAgBU8NAiAAIAItAAA6AAAgAEEBaiEAIAJBAWohAgwAAAsACyAEQQFGBEACQCAAIAJrIgZBB00EQCAAIAItAAA6AAAgACACLQABOgABIAAgAi0AAjoAAiAAIAItAAM6AAMgAEEEaiACIAZBAnQiBkHAHmooAgBqIgIQFyACIAZB4B5qKAIAayECDAELIAAgAhAMCyACQQhqIQIgAEEIaiEACwJAAkACQAJAIAUgAU0EQCAAIANqIQEgBEEBRyAAIAJrQQ9Kcg0BA0AgACACEAwgAkEIaiECIABBCGoiACABSQ0ACwwFCyAAIAFLBEAgACEBDAQLIARBAUcgACACa0EPSnINASAAIQMgAiEEA0AgAyAEEAwgBEEIaiEEIANBCGoiAyABSQ0ACwwCCwNAIAAgAhAHIAJBEGohAiAAQRBqIgAgAUkNAAsMAwsgACEDIAIhBANAIAMgBBAHIARBEGohBCADQRBqIgMgAUkNAAsLIAIgASAAa2ohAgsDQCABIAVPDQEgASACLQAAOgAAIAFBAWohASACQQFqIQIMAAALAAsLQQECfyAAIAAoArjgASIDNgLE4AEgACgCvOABIQQgACABNgK84AEgACABIAJqNgK44AEgACABIAQgA2tqNgLA4AELpgEBAX8gACAAKALs4QEQFjYCyOABIABCADcD+OABIABCADcDuOABIABBwOABakIANwMAIABBqNAAaiIBQYyAgOAANgIAIABBADYCmOIBIABCADcDiOEBIABCAzcDgOEBIABBrNABakHgEikCADcCACAAQbTQAWpB6BIoAgA2AgAgACABNgIMIAAgAEGYIGo2AgggACAAQaAwajYCBCAAIABBEGo2AgALYQEBf0G4fyEDAkAgAUEDSQ0AIAIgABAhIgFBA3YiADYCCCACIAFBAXE2AgQgAiABQQF2QQNxIgM2AgACQCADQX9qIgFBAksNAAJAIAFBAWsOAgEAAgtBbA8LIAAhAwsgAwsMACAAIAEgAkEAEC4LiAQCA38CfiADEBYhBCAAQQBBKBAQIQAgBCACSwRAIAQPCyABRQRAQX8PCwJAAkAgA0EBRg0AIAEoAAAiBkGo6r5pRg0AQXYhAyAGQXBxQdDUtMIBRw0BQQghAyACQQhJDQEgAEEAQSgQECEAIAEoAAQhASAAQQE2AhQgACABrTcDAEEADwsgASACIAMQLyIDIAJLDQAgACADNgIYQXIhAyABIARqIgVBf2otAAAiAkEIcQ0AIAJBIHEiBkUEQEFwIQMgBS0AACIFQacBSw0BIAVBB3GtQgEgBUEDdkEKaq2GIgdCA4h+IAd8IQggBEEBaiEECyACQQZ2IQMgAkECdiEFAkAgAkEDcUF/aiICQQJLBEBBACECDAELAkACQAJAIAJBAWsOAgECAAsgASAEai0AACECIARBAWohBAwCCyABIARqLwAAIQIgBEECaiEEDAELIAEgBGooAAAhAiAEQQRqIQQLIAVBAXEhBQJ+AkACQAJAIANBf2oiA0ECTQRAIANBAWsOAgIDAQtCfyAGRQ0DGiABIARqMQAADAMLIAEgBGovAACtQoACfAwCCyABIARqKAAArQwBCyABIARqKQAACyEHIAAgBTYCICAAIAI2AhwgACAHNwMAQQAhAyAAQQA2AhQgACAHIAggBhsiBzcDCCAAIAdCgIAIIAdCgIAIVBs+AhALIAMLWwEBf0G4fyEDIAIQFiICIAFNBH8gACACakF/ai0AACIAQQNxQQJ0QaAeaigCACACaiAAQQZ2IgFBAnRBsB5qKAIAaiAAQSBxIgBFaiABRSAAQQV2cWoFQbh/CwsdACAAKAKQ4gEQWiAAQQA2AqDiASAAQgA3A5DiAQu1AwEFfyMAQZACayIKJABBuH8hBgJAIAVFDQAgBCwAACIIQf8BcSEHAkAgCEF/TARAIAdBgn9qQQF2IgggBU8NAkFsIQYgB0GBf2oiBUGAAk8NAiAEQQFqIQdBACEGA0AgBiAFTwRAIAUhBiAIIQcMAwUgACAGaiAHIAZBAXZqIgQtAABBBHY6AAAgACAGQQFyaiAELQAAQQ9xOgAAIAZBAmohBgwBCwAACwALIAcgBU8NASAAIARBAWogByAKEFMiBhADDQELIAYhBEEAIQYgAUEAQTQQECEJQQAhBQNAIAQgBkcEQCAAIAZqIggtAAAiAUELSwRAQWwhBgwDBSAJIAFBAnRqIgEgASgCAEEBajYCACAGQQFqIQZBASAILQAAdEEBdSAFaiEFDAILAAsLQWwhBiAFRQ0AIAUQFEEBaiIBQQxLDQAgAyABNgIAQQFBASABdCAFayIDEBQiAXQgA0cNACAAIARqIAFBAWoiADoAACAJIABBAnRqIgAgACgCAEEBajYCACAJKAIEIgBBAkkgAEEBcXINACACIARBAWo2AgAgB0EBaiEGCyAKQZACaiQAIAYLxhEBDH8jAEHwAGsiBSQAQWwhCwJAIANBCkkNACACLwAAIQogAi8AAiEJIAIvAAQhByAFQQhqIAQQDgJAIAMgByAJIApqakEGaiIMSQ0AIAUtAAohCCAFQdgAaiACQQZqIgIgChAGIgsQAw0BIAVBQGsgAiAKaiICIAkQBiILEAMNASAFQShqIAIgCWoiAiAHEAYiCxADDQEgBUEQaiACIAdqIAMgDGsQBiILEAMNASAAIAFqIg9BfWohECAEQQRqIQZBASELIAAgAUEDakECdiIDaiIMIANqIgIgA2oiDiEDIAIhBCAMIQcDQCALIAMgEElxBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgCS0AAyELIAcgBiAFQUBrIAgQAkECdGoiCS8BADsAACAFQUBrIAktAAIQASAJLQADIQogBCAGIAVBKGogCBACQQJ0aiIJLwEAOwAAIAVBKGogCS0AAhABIAktAAMhCSADIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgDS0AAyENIAAgC2oiCyAGIAVB2ABqIAgQAkECdGoiAC8BADsAACAFQdgAaiAALQACEAEgAC0AAyEAIAcgCmoiCiAGIAVBQGsgCBACQQJ0aiIHLwEAOwAAIAVBQGsgBy0AAhABIActAAMhByAEIAlqIgkgBiAFQShqIAgQAkECdGoiBC8BADsAACAFQShqIAQtAAIQASAELQADIQQgAyANaiIDIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgACALaiEAIAcgCmohByAEIAlqIQQgAyANLQADaiEDIAVB2ABqEA0gBUFAaxANciAFQShqEA1yIAVBEGoQDXJFIQsMAQsLIAQgDksgByACS3INAEFsIQsgACAMSw0BIAxBfWohCQNAQQAgACAJSSAFQdgAahAEGwRAIAAgBiAFQdgAaiAIEAJBAnRqIgovAQA7AAAgBUHYAGogCi0AAhABIAAgCi0AA2oiACAGIAVB2ABqIAgQAkECdGoiCi8BADsAACAFQdgAaiAKLQACEAEgACAKLQADaiEADAEFIAxBfmohCgNAIAVB2ABqEAQgACAKS3JFBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgACAJLQADaiEADAELCwNAIAAgCk0EQCAAIAYgBUHYAGogCBACQQJ0aiIJLwEAOwAAIAVB2ABqIAktAAIQASAAIAktAANqIQAMAQsLAkAgACAMTw0AIAAgBiAFQdgAaiAIEAIiAEECdGoiDC0AADoAACAMLQADQQFGBEAgBUHYAGogDC0AAhABDAELIAUoAlxBH0sNACAFQdgAaiAGIABBAnRqLQACEAEgBSgCXEEhSQ0AIAVBIDYCXAsgAkF9aiEMA0BBACAHIAxJIAVBQGsQBBsEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiIAIAYgBUFAayAIEAJBAnRqIgcvAQA7AAAgBUFAayAHLQACEAEgACAHLQADaiEHDAEFIAJBfmohDANAIAVBQGsQBCAHIAxLckUEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwNAIAcgDE0EQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwJAIAcgAk8NACAHIAYgBUFAayAIEAIiAEECdGoiAi0AADoAACACLQADQQFGBEAgBUFAayACLQACEAEMAQsgBSgCREEfSw0AIAVBQGsgBiAAQQJ0ai0AAhABIAUoAkRBIUkNACAFQSA2AkQLIA5BfWohAgNAQQAgBCACSSAFQShqEAQbBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2oiACAGIAVBKGogCBACQQJ0aiIELwEAOwAAIAVBKGogBC0AAhABIAAgBC0AA2ohBAwBBSAOQX5qIQIDQCAFQShqEAQgBCACS3JFBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsDQCAEIAJNBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsCQCAEIA5PDQAgBCAGIAVBKGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBKGogAi0AAhABDAELIAUoAixBH0sNACAFQShqIAYgAEECdGotAAIQASAFKAIsQSFJDQAgBUEgNgIsCwNAQQAgAyAQSSAFQRBqEAQbBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2oiACAGIAVBEGogCBACQQJ0aiICLwEAOwAAIAVBEGogAi0AAhABIAAgAi0AA2ohAwwBBSAPQX5qIQIDQCAFQRBqEAQgAyACS3JFBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsDQCADIAJNBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsCQCADIA9PDQAgAyAGIAVBEGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBEGogAi0AAhABDAELIAUoAhRBH0sNACAFQRBqIAYgAEECdGotAAIQASAFKAIUQSFJDQAgBUEgNgIUCyABQWwgBUHYAGoQCiAFQUBrEApxIAVBKGoQCnEgBUEQahAKcRshCwwJCwAACwALAAALAAsAAAsACwAACwALQWwhCwsgBUHwAGokACALC7UEAQ5/IwBBEGsiBiQAIAZBBGogABAOQVQhBQJAIARB3AtJDQAgBi0ABCEHIANB8ARqQQBB7AAQECEIIAdBDEsNACADQdwJaiIJIAggBkEIaiAGQQxqIAEgAhAxIhAQA0UEQCAGKAIMIgQgB0sNASADQdwFaiEPIANBpAVqIREgAEEEaiESIANBqAVqIQEgBCEFA0AgBSICQX9qIQUgCCACQQJ0aigCAEUNAAsgAkEBaiEOQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgASALaiAKNgIAIAVBAWohBSAKIAxqIQoMAQsLIAEgCjYCAEEAIQUgBigCCCELA0AgBSALRkUEQCABIAUgCWotAAAiDEECdGoiDSANKAIAIg1BAWo2AgAgDyANQQF0aiINIAw6AAEgDSAFOgAAIAVBAWohBQwBCwtBACEBIANBADYCqAUgBEF/cyAHaiEJQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgAyALaiABNgIAIAwgBSAJanQgAWohASAFQQFqIQUMAQsLIAcgBEEBaiIBIAJrIgRrQQFqIQgDQEEBIQUgBCAIT0UEQANAIAUgDk9FBEAgBUECdCIJIAMgBEE0bGpqIAMgCWooAgAgBHY2AgAgBUEBaiEFDAELCyAEQQFqIQQMAQsLIBIgByAPIAogESADIAIgARBkIAZBAToABSAGIAc6AAYgACAGKAIENgIACyAQIQULIAZBEGokACAFC8ENAQt/IwBB8ABrIgUkAEFsIQkCQCADQQpJDQAgAi8AACEKIAIvAAIhDCACLwAEIQYgBUEIaiAEEA4CQCADIAYgCiAMampBBmoiDUkNACAFLQAKIQcgBUHYAGogAkEGaiICIAoQBiIJEAMNASAFQUBrIAIgCmoiAiAMEAYiCRADDQEgBUEoaiACIAxqIgIgBhAGIgkQAw0BIAVBEGogAiAGaiADIA1rEAYiCRADDQEgACABaiIOQX1qIQ8gBEEEaiEGQQEhCSAAIAFBA2pBAnYiAmoiCiACaiIMIAJqIg0hAyAMIQQgCiECA0AgCSADIA9JcQRAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAACAGIAVBQGsgBxACQQF0aiIILQAAIQsgBUFAayAILQABEAEgAiALOgAAIAYgBUEoaiAHEAJBAXRqIggtAAAhCyAFQShqIAgtAAEQASAEIAs6AAAgBiAFQRBqIAcQAkEBdGoiCC0AACELIAVBEGogCC0AARABIAMgCzoAACAGIAVB2ABqIAcQAkEBdGoiCC0AACELIAVB2ABqIAgtAAEQASAAIAs6AAEgBiAFQUBrIAcQAkEBdGoiCC0AACELIAVBQGsgCC0AARABIAIgCzoAASAGIAVBKGogBxACQQF0aiIILQAAIQsgBUEoaiAILQABEAEgBCALOgABIAYgBUEQaiAHEAJBAXRqIggtAAAhCyAFQRBqIAgtAAEQASADIAs6AAEgA0ECaiEDIARBAmohBCACQQJqIQIgAEECaiEAIAkgBUHYAGoQDUVxIAVBQGsQDUVxIAVBKGoQDUVxIAVBEGoQDUVxIQkMAQsLIAQgDUsgAiAMS3INAEFsIQkgACAKSw0BIApBfWohCQNAIAVB2ABqEAQgACAJT3JFBEAgBiAFQdgAaiAHEAJBAXRqIggtAAAhCyAFQdgAaiAILQABEAEgACALOgAAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAASAAQQJqIQAMAQsLA0AgBUHYAGoQBCAAIApPckUEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCwNAIAAgCkkEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCyAMQX1qIQADQCAFQUBrEAQgAiAAT3JFBEAgBiAFQUBrIAcQAkEBdGoiCi0AACEJIAVBQGsgCi0AARABIAIgCToAACAGIAVBQGsgBxACQQF0aiIKLQAAIQkgBUFAayAKLQABEAEgAiAJOgABIAJBAmohAgwBCwsDQCAFQUBrEAQgAiAMT3JFBEAgBiAFQUBrIAcQAkEBdGoiAC0AACEKIAVBQGsgAC0AARABIAIgCjoAACACQQFqIQIMAQsLA0AgAiAMSQRAIAYgBUFAayAHEAJBAXRqIgAtAAAhCiAFQUBrIAAtAAEQASACIAo6AAAgAkEBaiECDAELCyANQX1qIQADQCAFQShqEAQgBCAAT3JFBEAgBiAFQShqIAcQAkEBdGoiAi0AACEKIAVBKGogAi0AARABIAQgCjoAACAGIAVBKGogBxACQQF0aiICLQAAIQogBUEoaiACLQABEAEgBCAKOgABIARBAmohBAwBCwsDQCAFQShqEAQgBCANT3JFBEAgBiAFQShqIAcQAkEBdGoiAC0AACECIAVBKGogAC0AARABIAQgAjoAACAEQQFqIQQMAQsLA0AgBCANSQRAIAYgBUEoaiAHEAJBAXRqIgAtAAAhAiAFQShqIAAtAAEQASAEIAI6AAAgBEEBaiEEDAELCwNAIAVBEGoQBCADIA9PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIAYgBUEQaiAHEAJBAXRqIgAtAAAhAiAFQRBqIAAtAAEQASADIAI6AAEgA0ECaiEDDAELCwNAIAVBEGoQBCADIA5PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIANBAWohAwwBCwsDQCADIA5JBEAgBiAFQRBqIAcQAkEBdGoiAC0AACECIAVBEGogAC0AARABIAMgAjoAACADQQFqIQMMAQsLIAFBbCAFQdgAahAKIAVBQGsQCnEgBUEoahAKcSAFQRBqEApxGyEJDAELQWwhCQsgBUHwAGokACAJC8oCAQR/IwBBIGsiBSQAIAUgBBAOIAUtAAIhByAFQQhqIAIgAxAGIgIQA0UEQCAEQQRqIQIgACABaiIDQX1qIQQDQCAFQQhqEAQgACAET3JFBEAgAiAFQQhqIAcQAkEBdGoiBi0AACEIIAVBCGogBi0AARABIAAgCDoAACACIAVBCGogBxACQQF0aiIGLQAAIQggBUEIaiAGLQABEAEgACAIOgABIABBAmohAAwBCwsDQCAFQQhqEAQgACADT3JFBEAgAiAFQQhqIAcQAkEBdGoiBC0AACEGIAVBCGogBC0AARABIAAgBjoAACAAQQFqIQAMAQsLA0AgACADT0UEQCACIAVBCGogBxACQQF0aiIELQAAIQYgBUEIaiAELQABEAEgACAGOgAAIABBAWohAAwBCwsgAUFsIAVBCGoQChshAgsgBUEgaiQAIAILtgMBCX8jAEEQayIGJAAgBkEANgIMIAZBADYCCEFUIQQCQAJAIANBQGsiDCADIAZBCGogBkEMaiABIAIQMSICEAMNACAGQQRqIAAQDiAGKAIMIgcgBi0ABEEBaksNASAAQQRqIQogBkEAOgAFIAYgBzoABiAAIAYoAgQ2AgAgB0EBaiEJQQEhBANAIAQgCUkEQCADIARBAnRqIgEoAgAhACABIAU2AgAgACAEQX9qdCAFaiEFIARBAWohBAwBCwsgB0EBaiEHQQAhBSAGKAIIIQkDQCAFIAlGDQEgAyAFIAxqLQAAIgRBAnRqIgBBASAEdEEBdSILIAAoAgAiAWoiADYCACAHIARrIQhBACEEAkAgC0EDTQRAA0AgBCALRg0CIAogASAEakEBdGoiACAIOgABIAAgBToAACAEQQFqIQQMAAALAAsDQCABIABPDQEgCiABQQF0aiIEIAg6AAEgBCAFOgAAIAQgCDoAAyAEIAU6AAIgBCAIOgAFIAQgBToABCAEIAg6AAcgBCAFOgAGIAFBBGohAQwAAAsACyAFQQFqIQUMAAALAAsgAiEECyAGQRBqJAAgBAutAQECfwJAQYQgKAIAIABHIAAoAgBBAXYiAyABa0F4aiICQXhxQQhHcgR/IAIFIAMQJ0UNASACQQhqC0EQSQ0AIAAgACgCACICQQFxIAAgAWpBD2pBeHEiASAAa0EBdHI2AgAgASAANgIEIAEgASgCAEEBcSAAIAJBAXZqIAFrIgJBAXRyNgIAQYQgIAEgAkH/////B3FqQQRqQYQgKAIAIABGGyABNgIAIAEQJQsLygIBBX8CQAJAAkAgAEEIIABBCEsbZ0EfcyAAaUEBR2oiAUEESSAAIAF2cg0AIAFBAnRB/B5qKAIAIgJFDQADQCACQXhqIgMoAgBBAXZBeGoiBSAATwRAIAIgBUEIIAVBCEsbZ0Efc0ECdEGAH2oiASgCAEYEQCABIAIoAgQ2AgALDAMLIARBHksNASAEQQFqIQQgAigCBCICDQALC0EAIQMgAUEgTw0BA0AgAUECdEGAH2ooAgAiAkUEQCABQR5LIQIgAUEBaiEBIAJFDQEMAwsLIAIgAkF4aiIDKAIAQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgBGBEAgASACKAIENgIACwsgAigCACIBBEAgASACKAIENgIECyACKAIEIgEEQCABIAIoAgA2AgALIAMgAygCAEEBcjYCACADIAAQNwsgAwvhCwINfwV+IwBB8ABrIgckACAHIAAoAvDhASIINgJcIAEgAmohDSAIIAAoAoDiAWohDwJAAkAgBUUEQCABIQQMAQsgACgCxOABIRAgACgCwOABIREgACgCvOABIQ4gAEEBNgKM4QFBACEIA0AgCEEDRwRAIAcgCEECdCICaiAAIAJqQazQAWooAgA2AkQgCEEBaiEIDAELC0FsIQwgB0EYaiADIAQQBhADDQEgB0EsaiAHQRhqIAAoAgAQEyAHQTRqIAdBGGogACgCCBATIAdBPGogB0EYaiAAKAIEEBMgDUFgaiESIAEhBEEAIQwDQCAHKAIwIAcoAixBA3RqKQIAIhRCEIinQf8BcSEIIAcoAkAgBygCPEEDdGopAgAiFUIQiKdB/wFxIQsgBygCOCAHKAI0QQN0aikCACIWQiCIpyEJIBVCIIghFyAUQiCIpyECAkAgFkIQiKdB/wFxIgNBAk8EQAJAIAZFIANBGUlyRQRAIAkgB0EYaiADQSAgBygCHGsiCiAKIANLGyIKEAUgAyAKayIDdGohCSAHQRhqEAQaIANFDQEgB0EYaiADEAUgCWohCQwBCyAHQRhqIAMQBSAJaiEJIAdBGGoQBBoLIAcpAkQhGCAHIAk2AkQgByAYNwNIDAELAkAgA0UEQCACBEAgBygCRCEJDAMLIAcoAkghCQwBCwJAAkAgB0EYakEBEAUgCSACRWpqIgNBA0YEQCAHKAJEQX9qIgMgA0VqIQkMAQsgA0ECdCAHaigCRCIJIAlFaiEJIANBAUYNAQsgByAHKAJINgJMCwsgByAHKAJENgJIIAcgCTYCRAsgF6chAyALBEAgB0EYaiALEAUgA2ohAwsgCCALakEUTwRAIAdBGGoQBBoLIAgEQCAHQRhqIAgQBSACaiECCyAHQRhqEAQaIAcgB0EYaiAUQhiIp0H/AXEQCCAUp0H//wNxajYCLCAHIAdBGGogFUIYiKdB/wFxEAggFadB//8DcWo2AjwgB0EYahAEGiAHIAdBGGogFkIYiKdB/wFxEAggFqdB//8DcWo2AjQgByACNgJgIAcoAlwhCiAHIAk2AmggByADNgJkAkACQAJAIAQgAiADaiILaiASSw0AIAIgCmoiEyAPSw0AIA0gBGsgC0Egak8NAQsgByAHKQNoNwMQIAcgBykDYDcDCCAEIA0gB0EIaiAHQdwAaiAPIA4gESAQEB4hCwwBCyACIARqIQggBCAKEAcgAkERTwRAIARBEGohAgNAIAIgCkEQaiIKEAcgAkEQaiICIAhJDQALCyAIIAlrIQIgByATNgJcIAkgCCAOa0sEQCAJIAggEWtLBEBBbCELDAILIBAgAiAOayICaiIKIANqIBBNBEAgCCAKIAMQDxoMAgsgCCAKQQAgAmsQDyEIIAcgAiADaiIDNgJkIAggAmshCCAOIQILIAlBEE8EQCADIAhqIQMDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALDAELAkAgCUEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgCUECdCIDQcAeaigCAGoiAhAXIAIgA0HgHmooAgBrIQIgBygCZCEDDAELIAggAhAMCyADQQlJDQAgAyAIaiEDIAhBCGoiCCACQQhqIgJrQQ9MBEADQCAIIAIQDCACQQhqIQIgCEEIaiIIIANJDQAMAgALAAsDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALCyAHQRhqEAQaIAsgDCALEAMiAhshDCAEIAQgC2ogAhshBCAFQX9qIgUNAAsgDBADDQFBbCEMIAdBGGoQBEECSQ0BQQAhCANAIAhBA0cEQCAAIAhBAnQiAmpBrNABaiACIAdqKAJENgIAIAhBAWohCAwBCwsgBygCXCEIC0G6fyEMIA8gCGsiACANIARrSw0AIAQEfyAEIAggABALIABqBUEACyABayEMCyAHQfAAaiQAIAwLkRcCFn8FfiMAQdABayIHJAAgByAAKALw4QEiCDYCvAEgASACaiESIAggACgCgOIBaiETAkACQCAFRQRAIAEhAwwBCyAAKALE4AEhESAAKALA4AEhFSAAKAK84AEhDyAAQQE2AozhAUEAIQgDQCAIQQNHBEAgByAIQQJ0IgJqIAAgAmpBrNABaigCADYCVCAIQQFqIQgMAQsLIAcgETYCZCAHIA82AmAgByABIA9rNgJoQWwhECAHQShqIAMgBBAGEAMNASAFQQQgBUEESBshFyAHQTxqIAdBKGogACgCABATIAdBxABqIAdBKGogACgCCBATIAdBzABqIAdBKGogACgCBBATQQAhBCAHQeAAaiEMIAdB5ABqIQoDQCAHQShqEARBAksgBCAXTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEJIAcoAkggBygCREEDdGopAgAiH0IgiKchCCAeQiCIISAgHUIgiKchAgJAIB9CEIinQf8BcSIDQQJPBEACQCAGRSADQRlJckUEQCAIIAdBKGogA0EgIAcoAixrIg0gDSADSxsiDRAFIAMgDWsiA3RqIQggB0EoahAEGiADRQ0BIAdBKGogAxAFIAhqIQgMAQsgB0EoaiADEAUgCGohCCAHQShqEAQaCyAHKQJUISEgByAINgJUIAcgITcDWAwBCwJAIANFBEAgAgRAIAcoAlQhCAwDCyAHKAJYIQgMAQsCQAJAIAdBKGpBARAFIAggAkVqaiIDQQNGBEAgBygCVEF/aiIDIANFaiEIDAELIANBAnQgB2ooAlQiCCAIRWohCCADQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAg2AlQLICCnIQMgCQRAIAdBKGogCRAFIANqIQMLIAkgC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgAmohAgsgB0EoahAEGiAHIAcoAmggAmoiCSADajYCaCAKIAwgCCAJSxsoAgAhDSAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogB0EoaiAfQhiIp0H/AXEQCCEOIAdB8ABqIARBBHRqIgsgCSANaiAIazYCDCALIAg2AgggCyADNgIEIAsgAjYCACAHIA4gH6dB//8DcWo2AkQgBEEBaiEEDAELCyAEIBdIDQEgEkFgaiEYIAdB4ABqIRogB0HkAGohGyABIQMDQCAHQShqEARBAksgBCAFTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEIIAcoAkggBygCREEDdGopAgAiH0IgiKchCSAeQiCIISAgHUIgiKchDAJAIB9CEIinQf8BcSICQQJPBEACQCAGRSACQRlJckUEQCAJIAdBKGogAkEgIAcoAixrIgogCiACSxsiChAFIAIgCmsiAnRqIQkgB0EoahAEGiACRQ0BIAdBKGogAhAFIAlqIQkMAQsgB0EoaiACEAUgCWohCSAHQShqEAQaCyAHKQJUISEgByAJNgJUIAcgITcDWAwBCwJAIAJFBEAgDARAIAcoAlQhCQwDCyAHKAJYIQkMAQsCQAJAIAdBKGpBARAFIAkgDEVqaiICQQNGBEAgBygCVEF/aiICIAJFaiEJDAELIAJBAnQgB2ooAlQiCSAJRWohCSACQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAk2AlQLICCnIRQgCARAIAdBKGogCBAFIBRqIRQLIAggC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgDGohDAsgB0EoahAEGiAHIAcoAmggDGoiGSAUajYCaCAbIBogCSAZSxsoAgAhHCAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogByAHQShqIB9CGIinQf8BcRAIIB+nQf//A3FqNgJEIAcgB0HwAGogBEEDcUEEdGoiDSkDCCIdNwPIASAHIA0pAwAiHjcDwAECQAJAAkAgBygCvAEiDiAepyICaiIWIBNLDQAgAyAHKALEASIKIAJqIgtqIBhLDQAgEiADayALQSBqTw0BCyAHIAcpA8gBNwMQIAcgBykDwAE3AwggAyASIAdBCGogB0G8AWogEyAPIBUgERAeIQsMAQsgAiADaiEIIAMgDhAHIAJBEU8EQCADQRBqIQIDQCACIA5BEGoiDhAHIAJBEGoiAiAISQ0ACwsgCCAdpyIOayECIAcgFjYCvAEgDiAIIA9rSwRAIA4gCCAVa0sEQEFsIQsMAgsgESACIA9rIgJqIhYgCmogEU0EQCAIIBYgChAPGgwCCyAIIBZBACACaxAPIQggByACIApqIgo2AsQBIAggAmshCCAPIQILIA5BEE8EQCAIIApqIQoDQCAIIAIQByACQRBqIQIgCEEQaiIIIApJDQALDAELAkAgDkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgDkECdCIKQcAeaigCAGoiAhAXIAIgCkHgHmooAgBrIQIgBygCxAEhCgwBCyAIIAIQDAsgCkEJSQ0AIAggCmohCiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAKSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAKSQ0ACwsgCxADBEAgCyEQDAQFIA0gDDYCACANIBkgHGogCWs2AgwgDSAJNgIIIA0gFDYCBCAEQQFqIQQgAyALaiEDDAILAAsLIAQgBUgNASAEIBdrIQtBACEEA0AgCyAFSARAIAcgB0HwAGogC0EDcUEEdGoiAikDCCIdNwPIASAHIAIpAwAiHjcDwAECQAJAAkAgBygCvAEiDCAepyICaiIKIBNLDQAgAyAHKALEASIJIAJqIhBqIBhLDQAgEiADayAQQSBqTw0BCyAHIAcpA8gBNwMgIAcgBykDwAE3AxggAyASIAdBGGogB0G8AWogEyAPIBUgERAeIRAMAQsgAiADaiEIIAMgDBAHIAJBEU8EQCADQRBqIQIDQCACIAxBEGoiDBAHIAJBEGoiAiAISQ0ACwsgCCAdpyIGayECIAcgCjYCvAEgBiAIIA9rSwRAIAYgCCAVa0sEQEFsIRAMAgsgESACIA9rIgJqIgwgCWogEU0EQCAIIAwgCRAPGgwCCyAIIAxBACACaxAPIQggByACIAlqIgk2AsQBIAggAmshCCAPIQILIAZBEE8EQCAIIAlqIQYDQCAIIAIQByACQRBqIQIgCEEQaiIIIAZJDQALDAELAkAgBkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgBkECdCIGQcAeaigCAGoiAhAXIAIgBkHgHmooAgBrIQIgBygCxAEhCQwBCyAIIAIQDAsgCUEJSQ0AIAggCWohBiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAGSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAGSQ0ACwsgEBADDQMgC0EBaiELIAMgEGohAwwBCwsDQCAEQQNHBEAgACAEQQJ0IgJqQazQAWogAiAHaigCVDYCACAEQQFqIQQMAQsLIAcoArwBIQgLQbp/IRAgEyAIayIAIBIgA2tLDQAgAwR/IAMgCCAAEAsgAGoFQQALIAFrIRALIAdB0AFqJAAgEAslACAAQgA3AgAgAEEAOwEIIABBADoACyAAIAE2AgwgACACOgAKC7QFAQN/IwBBMGsiBCQAIABB/wFqIgVBfWohBgJAIAMvAQIEQCAEQRhqIAEgAhAGIgIQAw0BIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahASOgAAIAMgBEEIaiAEQRhqEBI6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0FIAEgBEEQaiAEQRhqEBI6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBSABIARBCGogBEEYahASOgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEjoAACABIAJqIABrIQIMAwsgAyAEQRBqIARBGGoQEjoAAiADIARBCGogBEEYahASOgADIANBBGohAwwAAAsACyAEQRhqIAEgAhAGIgIQAw0AIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahAROgAAIAMgBEEIaiAEQRhqEBE6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0EIAEgBEEQaiAEQRhqEBE6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBCABIARBCGogBEEYahAROgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEToAACABIAJqIABrIQIMAgsgAyAEQRBqIARBGGoQEToAAiADIARBCGogBEEYahAROgADIANBBGohAwwAAAsACyAEQTBqJAAgAgtpAQF/An8CQAJAIAJBB00NACABKAAAQbfIwuF+Rw0AIAAgASgABDYCmOIBQWIgAEEQaiABIAIQPiIDEAMNAhogAEKBgICAEDcDiOEBIAAgASADaiACIANrECoMAQsgACABIAIQKgtBAAsLrQMBBn8jAEGAAWsiAyQAQWIhCAJAIAJBCUkNACAAQZjQAGogAUEIaiIEIAJBeGogAEGY0AAQMyIFEAMiBg0AIANBHzYCfCADIANB/ABqIANB+ABqIAQgBCAFaiAGGyIEIAEgAmoiAiAEaxAVIgUQAw0AIAMoAnwiBkEfSw0AIAMoAngiB0EJTw0AIABBiCBqIAMgBkGAC0GADCAHEBggA0E0NgJ8IAMgA0H8AGogA0H4AGogBCAFaiIEIAIgBGsQFSIFEAMNACADKAJ8IgZBNEsNACADKAJ4IgdBCk8NACAAQZAwaiADIAZBgA1B4A4gBxAYIANBIzYCfCADIANB/ABqIANB+ABqIAQgBWoiBCACIARrEBUiBRADDQAgAygCfCIGQSNLDQAgAygCeCIHQQpPDQAgACADIAZBwBBB0BEgBxAYIAQgBWoiBEEMaiIFIAJLDQAgAiAFayEFQQAhAgNAIAJBA0cEQCAEKAAAIgZBf2ogBU8NAiAAIAJBAnRqQZzQAWogBjYCACACQQFqIQIgBEEEaiEEDAELCyAEIAFrIQgLIANBgAFqJAAgCAtGAQN/IABBCGohAyAAKAIEIQJBACEAA0AgACACdkUEQCABIAMgAEEDdGotAAJBFktqIQEgAEEBaiEADAELCyABQQggAmt0C4YDAQV/Qbh/IQcCQCADRQ0AIAItAAAiBEUEQCABQQA2AgBBAUG4fyADQQFGGw8LAn8gAkEBaiIFIARBGHRBGHUiBkF/Sg0AGiAGQX9GBEAgA0EDSA0CIAUvAABBgP4BaiEEIAJBA2oMAQsgA0ECSA0BIAItAAEgBEEIdHJBgIB+aiEEIAJBAmoLIQUgASAENgIAIAVBAWoiASACIANqIgNLDQBBbCEHIABBEGogACAFLQAAIgVBBnZBI0EJIAEgAyABa0HAEEHQEUHwEiAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBmCBqIABBCGogBUEEdkEDcUEfQQggASABIAZqIAgbIgEgAyABa0GAC0GADEGAFyAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBoDBqIABBBGogBUECdkEDcUE0QQkgASABIAZqIAgbIgEgAyABa0GADUHgDkGQGSAAKAKM4QEgACgCnOIBIAQQHyIAEAMNACAAIAFqIAJrIQcLIAcLrQMBCn8jAEGABGsiCCQAAn9BUiACQf8BSw0AGkFUIANBDEsNABogAkEBaiELIABBBGohCUGAgAQgA0F/anRBEHUhCkEAIQJBASEEQQEgA3QiB0F/aiIMIQUDQCACIAtGRQRAAkAgASACQQF0Ig1qLwEAIgZB//8DRgRAIAkgBUECdGogAjoAAiAFQX9qIQVBASEGDAELIARBACAKIAZBEHRBEHVKGyEECyAIIA1qIAY7AQAgAkEBaiECDAELCyAAIAQ7AQIgACADOwEAIAdBA3YgB0EBdmpBA2ohBkEAIQRBACECA0AgBCALRkUEQCABIARBAXRqLgEAIQpBACEAA0AgACAKTkUEQCAJIAJBAnRqIAQ6AAIDQCACIAZqIAxxIgIgBUsNAAsgAEEBaiEADAELCyAEQQFqIQQMAQsLQX8gAg0AGkEAIQIDfyACIAdGBH9BAAUgCCAJIAJBAnRqIgAtAAJBAXRqIgEgAS8BACIBQQFqOwEAIAAgAyABEBRrIgU6AAMgACABIAVB/wFxdCAHazsBACACQQFqIQIMAQsLCyEFIAhBgARqJAAgBQvjBgEIf0FsIQcCQCACQQNJDQACQAJAAkACQCABLQAAIgNBA3EiCUEBaw4DAwEAAgsgACgCiOEBDQBBYg8LIAJBBUkNAkEDIQYgASgAACEFAn8CQAJAIANBAnZBA3EiCEF+aiIEQQFNBEAgBEEBaw0BDAILIAVBDnZB/wdxIQQgBUEEdkH/B3EhAyAIRQwCCyAFQRJ2IQRBBCEGIAVBBHZB//8AcSEDQQAMAQsgBUEEdkH//w9xIgNBgIAISw0DIAEtAARBCnQgBUEWdnIhBEEFIQZBAAshBSAEIAZqIgogAksNAgJAIANBgQZJDQAgACgCnOIBRQ0AQQAhAgNAIAJBg4ABSw0BIAJBQGshAgwAAAsACwJ/IAlBA0YEQCABIAZqIQEgAEHw4gFqIQIgACgCDCEGIAUEQCACIAMgASAEIAYQXwwCCyACIAMgASAEIAYQXQwBCyAAQbjQAWohAiABIAZqIQEgAEHw4gFqIQYgAEGo0ABqIQggBQRAIAggBiADIAEgBCACEF4MAQsgCCAGIAMgASAEIAIQXAsQAw0CIAAgAzYCgOIBIABBATYCiOEBIAAgAEHw4gFqNgLw4QEgCUECRgRAIAAgAEGo0ABqNgIMCyAAIANqIgBBiOMBakIANwAAIABBgOMBakIANwAAIABB+OIBakIANwAAIABB8OIBakIANwAAIAoPCwJ/AkACQAJAIANBAnZBA3FBf2oiBEECSw0AIARBAWsOAgACAQtBASEEIANBA3YMAgtBAiEEIAEvAABBBHYMAQtBAyEEIAEQIUEEdgsiAyAEaiIFQSBqIAJLBEAgBSACSw0CIABB8OIBaiABIARqIAMQCyEBIAAgAzYCgOIBIAAgATYC8OEBIAEgA2oiAEIANwAYIABCADcAECAAQgA3AAggAEIANwAAIAUPCyAAIAM2AoDiASAAIAEgBGo2AvDhASAFDwsCfwJAAkACQCADQQJ2QQNxQX9qIgRBAksNACAEQQFrDgIAAgELQQEhByADQQN2DAILQQIhByABLwAAQQR2DAELIAJBBEkgARAhIgJBj4CAAUtyDQFBAyEHIAJBBHYLIQIgAEHw4gFqIAEgB2otAAAgAkEgahAQIQEgACACNgKA4gEgACABNgLw4QEgB0EBaiEHCyAHC0sAIABC+erQ0OfJoeThADcDICAAQgA3AxggAELP1tO+0ser2UI3AxAgAELW64Lu6v2J9eAANwMIIABCADcDACAAQShqQQBBKBAQGgviAgICfwV+IABBKGoiASAAKAJIaiECAn4gACkDACIDQiBaBEAgACkDECIEQgeJIAApAwgiBUIBiXwgACkDGCIGQgyJfCAAKQMgIgdCEol8IAUQGSAEEBkgBhAZIAcQGQwBCyAAKQMYQsXP2bLx5brqJ3wLIAN8IQMDQCABQQhqIgAgAk0EQEIAIAEpAAAQCSADhUIbiUKHla+vmLbem55/fkLj3MqV/M7y9YV/fCEDIAAhAQwBCwsCQCABQQRqIgAgAksEQCABIQAMAQsgASgAAK1Ch5Wvr5i23puef34gA4VCF4lCz9bTvtLHq9lCfkL5893xmfaZqxZ8IQMLA0AgACACSQRAIAAxAABCxc/ZsvHluuonfiADhUILiUKHla+vmLbem55/fiEDIABBAWohAAwBCwsgA0IhiCADhULP1tO+0ser2UJ+IgNCHYggA4VC+fPd8Zn2masWfiIDQiCIIAOFC+8CAgJ/BH4gACAAKQMAIAKtfDcDAAJAAkAgACgCSCIDIAJqIgRBH00EQCABRQ0BIAAgA2pBKGogASACECAgACgCSCACaiEEDAELIAEgAmohAgJ/IAMEQCAAQShqIgQgA2ogAUEgIANrECAgACAAKQMIIAQpAAAQCTcDCCAAIAApAxAgACkAMBAJNwMQIAAgACkDGCAAKQA4EAk3AxggACAAKQMgIABBQGspAAAQCTcDICAAKAJIIQMgAEEANgJIIAEgA2tBIGohAQsgAUEgaiACTQsEQCACQWBqIQMgACkDICEFIAApAxghBiAAKQMQIQcgACkDCCEIA0AgCCABKQAAEAkhCCAHIAEpAAgQCSEHIAYgASkAEBAJIQYgBSABKQAYEAkhBSABQSBqIgEgA00NAAsgACAFNwMgIAAgBjcDGCAAIAc3AxAgACAINwMICyABIAJPDQEgAEEoaiABIAIgAWsiBBAgCyAAIAQ2AkgLCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQEBogAwVBun8LCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQCxogAwVBun8LC6gCAQZ/IwBBEGsiByQAIABB2OABaikDAEKAgIAQViEIQbh/IQUCQCAEQf//B0sNACAAIAMgBBBCIgUQAyIGDQAgACgCnOIBIQkgACAHQQxqIAMgAyAFaiAGGyIKIARBACAFIAYbayIGEEAiAxADBEAgAyEFDAELIAcoAgwhBCABRQRAQbp/IQUgBEEASg0BCyAGIANrIQUgAyAKaiEDAkAgCQRAIABBADYCnOIBDAELAkACQAJAIARBBUgNACAAQdjgAWopAwBCgICACFgNAAwBCyAAQQA2ApziAQwBCyAAKAIIED8hBiAAQQA2ApziASAGQRRPDQELIAAgASACIAMgBSAEIAgQOSEFDAELIAAgASACIAMgBSAEIAgQOiEFCyAHQRBqJAAgBQtnACAAQdDgAWogASACIAAoAuzhARAuIgEQAwRAIAEPC0G4fyECAkAgAQ0AIABB7OABaigCACIBBEBBYCECIAAoApjiASABRw0BC0EAIQIgAEHw4AFqKAIARQ0AIABBkOEBahBDCyACCycBAX8QVyIERQRAQUAPCyAEIAAgASACIAMgBBBLEE8hACAEEFYgAAs/AQF/AkACQAJAIAAoAqDiAUEBaiIBQQJLDQAgAUEBaw4CAAECCyAAEDBBAA8LIABBADYCoOIBCyAAKAKU4gELvAMCB38BfiMAQRBrIgkkAEG4fyEGAkAgBCgCACIIQQVBCSAAKALs4QEiBRtJDQAgAygCACIHQQFBBSAFGyAFEC8iBRADBEAgBSEGDAELIAggBUEDakkNACAAIAcgBRBJIgYQAw0AIAEgAmohCiAAQZDhAWohCyAIIAVrIQIgBSAHaiEHIAEhBQNAIAcgAiAJECwiBhADDQEgAkF9aiICIAZJBEBBuH8hBgwCCyAJKAIAIghBAksEQEFsIQYMAgsgB0EDaiEHAn8CQAJAAkAgCEEBaw4CAgABCyAAIAUgCiAFayAHIAYQSAwCCyAFIAogBWsgByAGEEcMAQsgBSAKIAVrIActAAAgCSgCCBBGCyIIEAMEQCAIIQYMAgsgACgC8OABBEAgCyAFIAgQRQsgAiAGayECIAYgB2ohByAFIAhqIQUgCSgCBEUNAAsgACkD0OABIgxCf1IEQEFsIQYgDCAFIAFrrFINAQsgACgC8OABBEBBaiEGIAJBBEkNASALEEQhDCAHKAAAIAynRw0BIAdBBGohByACQXxqIQILIAMgBzYCACAEIAI2AgAgBSABayEGCyAJQRBqJAAgBgsuACAAECsCf0EAQQAQAw0AGiABRSACRXJFBEBBYiAAIAEgAhA9EAMNARoLQQALCzcAIAEEQCAAIAAoAsTgASABKAIEIAEoAghqRzYCnOIBCyAAECtBABADIAFFckUEQCAAIAEQWwsL0QIBB38jAEEQayIGJAAgBiAENgIIIAYgAzYCDCAFBEAgBSgCBCEKIAUoAgghCQsgASEIAkACQANAIAAoAuzhARAWIQsCQANAIAQgC0kNASADKAAAQXBxQdDUtMIBRgRAIAMgBBAiIgcQAw0EIAQgB2shBCADIAdqIQMMAQsLIAYgAzYCDCAGIAQ2AggCQCAFBEAgACAFEE5BACEHQQAQA0UNAQwFCyAAIAogCRBNIgcQAw0ECyAAIAgQUCAMQQFHQQAgACAIIAIgBkEMaiAGQQhqEEwiByIDa0EAIAMQAxtBCkdyRQRAQbh/IQcMBAsgBxADDQMgAiAHayECIAcgCGohCEEBIQwgBigCDCEDIAYoAgghBAwBCwsgBiADNgIMIAYgBDYCCEG4fyEHIAQNASAIIAFrIQcMAQsgBiADNgIMIAYgBDYCCAsgBkEQaiQAIAcLRgECfyABIAAoArjgASICRwRAIAAgAjYCxOABIAAgATYCuOABIAAoArzgASEDIAAgATYCvOABIAAgASADIAJrajYCwOABCwutAgIEfwF+IwBBQGoiBCQAAkACQCACQQhJDQAgASgAAEFwcUHQ1LTCAUcNACABIAIQIiEBIABCADcDCCAAQQA2AgQgACABNgIADAELIARBGGogASACEC0iAxADBEAgACADEBoMAQsgAwRAIABBuH8QGgwBCyACIAQoAjAiA2shAiABIANqIQMDQAJAIAAgAyACIARBCGoQLCIFEAMEfyAFBSACIAVBA2oiBU8NAUG4fwsQGgwCCyAGQQFqIQYgAiAFayECIAMgBWohAyAEKAIMRQ0ACyAEKAI4BEAgAkEDTQRAIABBuH8QGgwCCyADQQRqIQMLIAQoAighAiAEKQMYIQcgAEEANgIEIAAgAyABazYCACAAIAIgBmytIAcgB0J/URs3AwgLIARBQGskAAslAQF/IwBBEGsiAiQAIAIgACABEFEgAigCACEAIAJBEGokACAAC30BBH8jAEGQBGsiBCQAIARB/wE2AggCQCAEQRBqIARBCGogBEEMaiABIAIQFSIGEAMEQCAGIQUMAQtBVCEFIAQoAgwiB0EGSw0AIAMgBEEQaiAEKAIIIAcQQSIFEAMNACAAIAEgBmogAiAGayADEDwhBQsgBEGQBGokACAFC4cBAgJ/An5BABAWIQMCQANAIAEgA08EQAJAIAAoAABBcHFB0NS0wgFGBEAgACABECIiAhADRQ0BQn4PCyAAIAEQVSIEQn1WDQMgBCAFfCIFIARUIQJCfiEEIAINAyAAIAEQUiICEAMNAwsgASACayEBIAAgAmohAAwBCwtCfiAFIAEbIQQLIAQLPwIBfwF+IwBBMGsiAiQAAn5CfiACQQhqIAAgARAtDQAaQgAgAigCHEEBRg0AGiACKQMICyEDIAJBMGokACADC40BAQJ/IwBBMGsiASQAAkAgAEUNACAAKAKI4gENACABIABB/OEBaigCADYCKCABIAApAvThATcDICAAEDAgACgCqOIBIQIgASABKAIoNgIYIAEgASkDIDcDECACIAFBEGoQGyAAQQA2AqjiASABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALKgECfyMAQRBrIgAkACAAQQA2AgggAEIANwMAIAAQWCEBIABBEGokACABC4cBAQN/IwBBEGsiAiQAAkAgACgCAEUgACgCBEVzDQAgAiAAKAIINgIIIAIgACkCADcDAAJ/IAIoAgAiAQRAIAIoAghBqOMJIAERBQAMAQtBqOMJECgLIgFFDQAgASAAKQIANwL04QEgAUH84QFqIAAoAgg2AgAgARBZIAEhAwsgAkEQaiQAIAMLywEBAn8jAEEgayIBJAAgAEGBgIDAADYCtOIBIABBADYCiOIBIABBADYC7OEBIABCADcDkOIBIABBADYCpOMJIABBADYC3OIBIABCADcCzOIBIABBADYCvOIBIABBADYCxOABIABCADcCnOIBIABBpOIBakIANwIAIABBrOIBakEANgIAIAFCADcCECABQgA3AhggASABKQMYNwMIIAEgASkDEDcDACABKAIIQQh2QQFxIQIgAEEANgLg4gEgACACNgKM4gEgAUEgaiQAC3YBA38jAEEwayIBJAAgAARAIAEgAEHE0AFqIgIoAgA2AiggASAAKQK80AE3AyAgACgCACEDIAEgAigCADYCGCABIAApArzQATcDECADIAFBEGoQGyABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALzAEBAX8gACABKAK00AE2ApjiASAAIAEoAgQiAjYCwOABIAAgAjYCvOABIAAgAiABKAIIaiICNgK44AEgACACNgLE4AEgASgCuNABBEAgAEKBgICAEDcDiOEBIAAgAUGk0ABqNgIMIAAgAUGUIGo2AgggACABQZwwajYCBCAAIAFBDGo2AgAgAEGs0AFqIAFBqNABaigCADYCACAAQbDQAWogAUGs0AFqKAIANgIAIABBtNABaiABQbDQAWooAgA2AgAPCyAAQgA3A4jhAQs7ACACRQRAQbp/DwsgBEUEQEFsDwsgAiAEEGAEQCAAIAEgAiADIAQgBRBhDwsgACABIAIgAyAEIAUQZQtGAQF/IwBBEGsiBSQAIAVBCGogBBAOAn8gBS0ACQRAIAAgASACIAMgBBAyDAELIAAgASACIAMgBBA0CyEAIAVBEGokACAACzQAIAAgAyAEIAUQNiIFEAMEQCAFDwsgBSAESQR/IAEgAiADIAVqIAQgBWsgABA1BUG4fwsLRgEBfyMAQRBrIgUkACAFQQhqIAQQDgJ/IAUtAAkEQCAAIAEgAiADIAQQYgwBCyAAIAEgAiADIAQQNQshACAFQRBqJAAgAAtZAQF/QQ8hAiABIABJBEAgAUEEdCAAbiECCyAAQQh2IgEgAkEYbCIAQYwIaigCAGwgAEGICGooAgBqIgJBA3YgAmogAEGACGooAgAgAEGECGooAgAgAWxqSQs3ACAAIAMgBCAFQYAQEDMiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQMgVBuH8LC78DAQN/IwBBIGsiBSQAIAVBCGogAiADEAYiAhADRQRAIAAgAWoiB0F9aiEGIAUgBBAOIARBBGohAiAFLQACIQMDQEEAIAAgBkkgBUEIahAEGwRAIAAgAiAFQQhqIAMQAkECdGoiBC8BADsAACAFQQhqIAQtAAIQASAAIAQtAANqIgQgAiAFQQhqIAMQAkECdGoiAC8BADsAACAFQQhqIAAtAAIQASAEIAAtAANqIQAMAQUgB0F+aiEEA0AgBUEIahAEIAAgBEtyRQRAIAAgAiAFQQhqIAMQAkECdGoiBi8BADsAACAFQQhqIAYtAAIQASAAIAYtAANqIQAMAQsLA0AgACAES0UEQCAAIAIgBUEIaiADEAJBAnRqIgYvAQA7AAAgBUEIaiAGLQACEAEgACAGLQADaiEADAELCwJAIAAgB08NACAAIAIgBUEIaiADEAIiA0ECdGoiAC0AADoAACAALQADQQFGBEAgBUEIaiAALQACEAEMAQsgBSgCDEEfSw0AIAVBCGogAiADQQJ0ai0AAhABIAUoAgxBIUkNACAFQSA2AgwLIAFBbCAFQQhqEAobIQILCwsgBUEgaiQAIAILkgIBBH8jAEFAaiIJJAAgCSADQTQQCyEDAkAgBEECSA0AIAMgBEECdGooAgAhCSADQTxqIAgQIyADQQE6AD8gAyACOgA+QQAhBCADKAI8IQoDQCAEIAlGDQEgACAEQQJ0aiAKNgEAIARBAWohBAwAAAsAC0EAIQkDQCAGIAlGRQRAIAMgBSAJQQF0aiIKLQABIgtBAnRqIgwoAgAhBCADQTxqIAotAABBCHQgCGpB//8DcRAjIANBAjoAPyADIAcgC2siCiACajoAPiAEQQEgASAKa3RqIQogAygCPCELA0AgACAEQQJ0aiALNgEAIARBAWoiBCAKSQ0ACyAMIAo2AgAgCUEBaiEJDAELCyADQUBrJAALowIBCX8jAEHQAGsiCSQAIAlBEGogBUE0EAsaIAcgBmshDyAHIAFrIRADQAJAIAMgCkcEQEEBIAEgByACIApBAXRqIgYtAAEiDGsiCGsiC3QhDSAGLQAAIQ4gCUEQaiAMQQJ0aiIMKAIAIQYgCyAPTwRAIAAgBkECdGogCyAIIAUgCEE0bGogCCAQaiIIQQEgCEEBShsiCCACIAQgCEECdGooAgAiCEEBdGogAyAIayAHIA4QYyAGIA1qIQgMAgsgCUEMaiAOECMgCUEBOgAPIAkgCDoADiAGIA1qIQggCSgCDCELA0AgBiAITw0CIAAgBkECdGogCzYBACAGQQFqIQYMAAALAAsgCUHQAGokAA8LIAwgCDYCACAKQQFqIQoMAAALAAs0ACAAIAMgBCAFEDYiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQNAVBuH8LCyMAIAA/AEEQdGtB//8DakEQdkAAQX9GBEBBAA8LQQAQAEEBCzsBAX8gAgRAA0AgACABIAJBgCAgAkGAIEkbIgMQCyEAIAFBgCBqIQEgAEGAIGohACACIANrIgINAAsLCwYAIAAQAwsLqBUJAEGICAsNAQAAAAEAAAACAAAAAgBBoAgLswYBAAAAAQAAAAIAAAACAAAAJgAAAIIAAAAhBQAASgAAAGcIAAAmAAAAwAEAAIAAAABJBQAASgAAAL4IAAApAAAALAIAAIAAAABJBQAASgAAAL4IAAAvAAAAygIAAIAAAACKBQAASgAAAIQJAAA1AAAAcwMAAIAAAACdBQAASgAAAKAJAAA9AAAAgQMAAIAAAADrBQAASwAAAD4KAABEAAAAngMAAIAAAABNBgAASwAAAKoKAABLAAAAswMAAIAAAADBBgAATQAAAB8NAABNAAAAUwQAAIAAAAAjCAAAUQAAAKYPAABUAAAAmQQAAIAAAABLCQAAVwAAALESAABYAAAA2gQAAIAAAABvCQAAXQAAACMUAABUAAAARQUAAIAAAABUCgAAagAAAIwUAABqAAAArwUAAIAAAAB2CQAAfAAAAE4QAAB8AAAA0gIAAIAAAABjBwAAkQAAAJAHAACSAAAAAAAAAAEAAAABAAAABQAAAA0AAAAdAAAAPQAAAH0AAAD9AAAA/QEAAP0DAAD9BwAA/Q8AAP0fAAD9PwAA/X8AAP3/AAD9/wEA/f8DAP3/BwD9/w8A/f8fAP3/PwD9/38A/f//AP3//wH9//8D/f//B/3//w/9//8f/f//P/3//38AAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACUAAAAnAAAAKQAAACsAAAAvAAAAMwAAADsAAABDAAAAUwAAAGMAAACDAAAAAwEAAAMCAAADBAAAAwgAAAMQAAADIAAAA0AAAAOAAAADAAEAQeAPC1EBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAQcQQC4sBAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABIAAAAUAAAAFgAAABgAAAAcAAAAIAAAACgAAAAwAAAAQAAAAIAAAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAQAAAAIAAAAAAAQBBkBIL5gQBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAAAEAAAAEAAAACAAAAAAAAAABAAEBBgAAAAAAAAQAAAAAEAAABAAAAAAgAAAFAQAAAAAAAAUDAAAAAAAABQQAAAAAAAAFBgAAAAAAAAUHAAAAAAAABQkAAAAAAAAFCgAAAAAAAAUMAAAAAAAABg4AAAAAAAEFEAAAAAAAAQUUAAAAAAABBRYAAAAAAAIFHAAAAAAAAwUgAAAAAAAEBTAAAAAgAAYFQAAAAAAABwWAAAAAAAAIBgABAAAAAAoGAAQAAAAADAYAEAAAIAAABAAAAAAAAAAEAQAAAAAAAAUCAAAAIAAABQQAAAAAAAAFBQAAACAAAAUHAAAAAAAABQgAAAAgAAAFCgAAAAAAAAULAAAAAAAABg0AAAAgAAEFEAAAAAAAAQUSAAAAIAABBRYAAAAAAAIFGAAAACAAAwUgAAAAAAADBSgAAAAAAAYEQAAAABAABgRAAAAAIAAHBYAAAAAAAAkGAAIAAAAACwYACAAAMAAABAAAAAAQAAAEAQAAACAAAAUCAAAAIAAABQMAAAAgAAAFBQAAACAAAAUGAAAAIAAABQgAAAAgAAAFCQAAACAAAAULAAAAIAAABQwAAAAAAAAGDwAAACAAAQUSAAAAIAABBRQAAAAgAAIFGAAAACAAAgUcAAAAIAADBSgAAAAgAAQFMAAAAAAAEAYAAAEAAAAPBgCAAAAAAA4GAEAAAAAADQYAIABBgBcLhwIBAAEBBQAAAAAAAAUAAAAAAAAGBD0AAAAAAAkF/QEAAAAADwX9fwAAAAAVBf3/HwAAAAMFBQAAAAAABwR9AAAAAAAMBf0PAAAAABIF/f8DAAAAFwX9/38AAAAFBR0AAAAAAAgE/QAAAAAADgX9PwAAAAAUBf3/DwAAAAIFAQAAABAABwR9AAAAAAALBf0HAAAAABEF/f8BAAAAFgX9/z8AAAAEBQ0AAAAQAAgE/QAAAAAADQX9HwAAAAATBf3/BwAAAAEFAQAAABAABgQ9AAAAAAAKBf0DAAAAABAF/f8AAAAAHAX9//8PAAAbBf3//wcAABoF/f//AwAAGQX9//8BAAAYBf3//wBBkBkLhgQBAAEBBgAAAAAAAAYDAAAAAAAABAQAAAAgAAAFBQAAAAAAAAUGAAAAAAAABQgAAAAAAAAFCQAAAAAAAAULAAAAAAAABg0AAAAAAAAGEAAAAAAAAAYTAAAAAAAABhYAAAAAAAAGGQAAAAAAAAYcAAAAAAAABh8AAAAAAAAGIgAAAAAAAQYlAAAAAAABBikAAAAAAAIGLwAAAAAAAwY7AAAAAAAEBlMAAAAAAAcGgwAAAAAACQYDAgAAEAAABAQAAAAAAAAEBQAAACAAAAUGAAAAAAAABQcAAAAgAAAFCQAAAAAAAAUKAAAAAAAABgwAAAAAAAAGDwAAAAAAAAYSAAAAAAAABhUAAAAAAAAGGAAAAAAAAAYbAAAAAAAABh4AAAAAAAAGIQAAAAAAAQYjAAAAAAABBicAAAAAAAIGKwAAAAAAAwYzAAAAAAAEBkMAAAAAAAUGYwAAAAAACAYDAQAAIAAABAQAAAAwAAAEBAAAABAAAAQFAAAAIAAABQcAAAAgAAAFCAAAACAAAAUKAAAAIAAABQsAAAAAAAAGDgAAAAAAAAYRAAAAAAAABhQAAAAAAAAGFwAAAAAAAAYaAAAAAAAABh0AAAAAAAAGIAAAAAAAEAYDAAEAAAAPBgOAAAAAAA4GA0AAAAAADQYDIAAAAAAMBgMQAAAAAAsGAwgAAAAACgYDBABBpB0L2QEBAAAAAwAAAAcAAAAPAAAAHwAAAD8AAAB/AAAA/wAAAP8BAAD/AwAA/wcAAP8PAAD/HwAA/z8AAP9/AAD//wAA//8BAP//AwD//wcA//8PAP//HwD//z8A//9/AP///wD///8B////A////wf///8P////H////z////9/AAAAAAEAAAACAAAABAAAAAAAAAACAAAABAAAAAgAAAAAAAAAAQAAAAIAAAABAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAACAAAAAcAAAAIAAAACQAAAAoAAAALAEGgIAsDwBBQ\\\",te={315:\\\"Artist\\\",258:\\\"BitsPerSample\\\",265:\\\"CellLength\\\",264:\\\"CellWidth\\\",320:\\\"ColorMap\\\",259:\\\"Compression\\\",33432:\\\"Copyright\\\",306:\\\"DateTime\\\",338:\\\"ExtraSamples\\\",266:\\\"FillOrder\\\",289:\\\"FreeByteCounts\\\",288:\\\"FreeOffsets\\\",291:\\\"GrayResponseCurve\\\",290:\\\"GrayResponseUnit\\\",316:\\\"HostComputer\\\",270:\\\"ImageDescription\\\",257:\\\"ImageLength\\\",256:\\\"ImageWidth\\\",271:\\\"Make\\\",281:\\\"MaxSampleValue\\\",280:\\\"MinSampleValue\\\",272:\\\"Model\\\",254:\\\"NewSubfileType\\\",274:\\\"Orientation\\\",262:\\\"PhotometricInterpretation\\\",284:\\\"PlanarConfiguration\\\",296:\\\"ResolutionUnit\\\",278:\\\"RowsPerStrip\\\",277:\\\"SamplesPerPixel\\\",305:\\\"Software\\\",279:\\\"StripByteCounts\\\",273:\\\"StripOffsets\\\",255:\\\"SubfileType\\\",263:\\\"Threshholding\\\",282:\\\"XResolution\\\",283:\\\"YResolution\\\",326:\\\"BadFaxLines\\\",327:\\\"CleanFaxData\\\",343:\\\"ClipPath\\\",328:\\\"ConsecutiveBadFaxLines\\\",433:\\\"Decode\\\",434:\\\"DefaultImageColor\\\",269:\\\"DocumentName\\\",336:\\\"DotRange\\\",321:\\\"HalftoneHints\\\",346:\\\"Indexed\\\",347:\\\"JPEGTables\\\",285:\\\"PageName\\\",297:\\\"PageNumber\\\",317:\\\"Predictor\\\",319:\\\"PrimaryChromaticities\\\",532:\\\"ReferenceBlackWhite\\\",339:\\\"SampleFormat\\\",340:\\\"SMinSampleValue\\\",341:\\\"SMaxSampleValue\\\",559:\\\"StripRowCounts\\\",330:\\\"SubIFDs\\\",292:\\\"T4Options\\\",293:\\\"T6Options\\\",325:\\\"TileByteCounts\\\",323:\\\"TileLength\\\",324:\\\"TileOffsets\\\",322:\\\"TileWidth\\\",301:\\\"TransferFunction\\\",318:\\\"WhitePoint\\\",344:\\\"XClipPathUnits\\\",286:\\\"XPosition\\\",529:\\\"YCbCrCoefficients\\\",531:\\\"YCbCrPositioning\\\",530:\\\"YCbCrSubSampling\\\",345:\\\"YClipPathUnits\\\",287:\\\"YPosition\\\",37378:\\\"ApertureValue\\\",40961:\\\"ColorSpace\\\",36868:\\\"DateTimeDigitized\\\",36867:\\\"DateTimeOriginal\\\",34665:\\\"Exif IFD\\\",36864:\\\"ExifVersion\\\",33434:\\\"ExposureTime\\\",41728:\\\"FileSource\\\",37385:\\\"Flash\\\",40960:\\\"FlashpixVersion\\\",33437:\\\"FNumber\\\",42016:\\\"ImageUniqueID\\\",37384:\\\"LightSource\\\",37500:\\\"MakerNote\\\",37377:\\\"ShutterSpeedValue\\\",37510:\\\"UserComment\\\",33723:\\\"IPTC\\\",34675:\\\"ICC Profile\\\",700:\\\"XMP\\\",42112:\\\"GDAL_METADATA\\\",42113:\\\"GDAL_NODATA\\\",34377:\\\"Photoshop\\\",33550:\\\"ModelPixelScale\\\",33922:\\\"ModelTiepoint\\\",34264:\\\"ModelTransformation\\\",34735:\\\"GeoKeyDirectory\\\",34736:\\\"GeoDoubleParams\\\",34737:\\\"GeoAsciiParams\\\",50674:\\\"LercParameters\\\"},ie={};for(var re in te)te.hasOwnProperty(re)&&(ie[te[re]]=parseInt(re,10));ie.BitsPerSample,ie.ExtraSamples,ie.SampleFormat,ie.StripByteCounts,ie.StripOffsets,ie.StripRowCounts,ie.TileByteCounts,ie.TileOffsets,ie.SubIFDs;var Ie={1:\\\"BYTE\\\",2:\\\"ASCII\\\",3:\\\"SHORT\\\",4:\\\"LONG\\\",5:\\\"RATIONAL\\\",6:\\\"SBYTE\\\",7:\\\"UNDEFINED\\\",8:\\\"SSHORT\\\",9:\\\"SLONG\\\",10:\\\"SRATIONAL\\\",11:\\\"FLOAT\\\",12:\\\"DOUBLE\\\",13:\\\"IFD\\\",16:\\\"LONG8\\\",17:\\\"SLONG8\\\",18:\\\"IFD8\\\"},ge={};for(var ne in Ie)Ie.hasOwnProperty(ne)&&(ge[Ie[ne]]=parseInt(ne,10));var ae=1,oe=0,Be=1,Ce=2,Qe={1024:\\\"GTModelTypeGeoKey\\\",1025:\\\"GTRasterTypeGeoKey\\\",1026:\\\"GTCitationGeoKey\\\",2048:\\\"GeographicTypeGeoKey\\\",2049:\\\"GeogCitationGeoKey\\\",2050:\\\"GeogGeodeticDatumGeoKey\\\",2051:\\\"GeogPrimeMeridianGeoKey\\\",2052:\\\"GeogLinearUnitsGeoKey\\\",2053:\\\"GeogLinearUnitSizeGeoKey\\\",2054:\\\"GeogAngularUnitsGeoKey\\\",2055:\\\"GeogAngularUnitSizeGeoKey\\\",2056:\\\"GeogEllipsoidGeoKey\\\",2057:\\\"GeogSemiMajorAxisGeoKey\\\",2058:\\\"GeogSemiMinorAxisGeoKey\\\",2059:\\\"GeogInvFlatteningGeoKey\\\",2060:\\\"GeogAzimuthUnitsGeoKey\\\",2061:\\\"GeogPrimeMeridianLongGeoKey\\\",2062:\\\"GeogTOWGS84GeoKey\\\",3072:\\\"ProjectedCSTypeGeoKey\\\",3073:\\\"PCSCitationGeoKey\\\",3074:\\\"ProjectionGeoKey\\\",3075:\\\"ProjCoordTransGeoKey\\\",3076:\\\"ProjLinearUnitsGeoKey\\\",3077:\\\"ProjLinearUnitSizeGeoKey\\\",3078:\\\"ProjStdParallel1GeoKey\\\",3079:\\\"ProjStdParallel2GeoKey\\\",3080:\\\"ProjNatOriginLongGeoKey\\\",3081:\\\"ProjNatOriginLatGeoKey\\\",3082:\\\"ProjFalseEastingGeoKey\\\",3083:\\\"ProjFalseNorthingGeoKey\\\",3084:\\\"ProjFalseOriginLongGeoKey\\\",3085:\\\"ProjFalseOriginLatGeoKey\\\",3086:\\\"ProjFalseOriginEastingGeoKey\\\",3087:\\\"ProjFalseOriginNorthingGeoKey\\\",3088:\\\"ProjCenterLongGeoKey\\\",3089:\\\"ProjCenterLatGeoKey\\\",3090:\\\"ProjCenterEastingGeoKey\\\",3091:\\\"ProjCenterNorthingGeoKey\\\",3092:\\\"ProjScaleAtNatOriginGeoKey\\\",3093:\\\"ProjScaleAtCenterGeoKey\\\",3094:\\\"ProjAzimuthAngleGeoKey\\\",3095:\\\"ProjStraightVertPoleLongGeoKey\\\",3096:\\\"ProjRectifiedGridAngleGeoKey\\\",4096:\\\"VerticalCSTypeGeoKey\\\",4097:\\\"VerticalCitationGeoKey\\\",4098:\\\"VerticalDatumGeoKey\\\",4099:\\\"VerticalUnitsGeoKey\\\"},Ee={};for(var se in Qe)Qe.hasOwnProperty(se)&&(Ee[Qe[se]]=parseInt(se,10));function fe(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var ce=new Ae,he=function(A){s(t,w);var e=fe(t);function t(A){var i;return B(this,t),(i=e.call(this)).planarConfiguration=void 0!==A.PlanarConfiguration?A.PlanarConfiguration:1,i.samplesPerPixel=void 0!==A.SamplesPerPixel?A.SamplesPerPixel:1,i.addCompression=A.LercParameters[ae],i}return Q(t,[{key:\\\"decodeBlock\\\",value:function(A){switch(this.addCompression){case oe:break;case Be:A=YA(new Uint8Array(A)).buffer;break;case Ce:A=ce.decode(new Uint8Array(A)).buffer;break;default:throw new Error(\\\"Unsupported LERC additional compression method identifier: \\\".concat(this.addCompression))}return zA.decode(A,{returnPixelInterleavedDims:1===this.planarConfiguration}).pixels[0].buffer}}]),t}(),le=Object.freeze({__proto__:null,zstd:ce,default:he});function ue(A){var e=function(){if(\\\"undefined\\\"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if(\\\"function\\\"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(A){return!1}}();return function(){var t,i=c(A);if(e){var r=c(this).constructor;t=Reflect.construct(i,arguments,r)}else t=i.apply(this,arguments);return f(this,t)}}var we=function(A){s(I,w);var t,i=ue(I);function I(){var A;if(B(this,I),A=i.call(this),\\\"undefined\\\"==typeof createImageBitmap)throw new Error(\\\"Cannot decode WebImage as `createImageBitmap` is not available\\\");if(\\\"undefined\\\"==typeof document&&\\\"undefined\\\"==typeof OffscreenCanvas)throw new Error(\\\"Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available\\\");return A}return Q(I,[{key:\\\"decode\\\",value:(t=e(r.mark((function A(e,t){var i,I,g,n;return r.wrap((function(A){for(;;)switch(A.prev=A.next){case 0:return i=new Blob([t]),A.next=3,createImageBitmap(i);case 3:return I=A.sent,\\\"undefined\\\"!=typeof document?((g=document.createElement(\\\"canvas\\\")).width=I.width,g.height=I.height):g=new OffscreenCanvas(I.width,I.height),(n=g.getContext(\\\"2d\\\")).drawImage(I,0,0),A.abrupt(\\\"return\\\",n.getImageData(0,0,I.width,I.height).data.buffer);case 8:case\\\"end\\\":return A.stop()}}),A)}))),function(A,e){return t.apply(this,arguments)})}]),I}(),de=Object.freeze({__proto__:null,default:we});\";\n return new Worker(typeof Buffer !== 'undefined' \n ? 'data:application/javascript;base64,' + Buffer.from(source, 'binary').toString('base64')\n : URL.createObjectURL(new Blob([source], {type: 'application/javascript'})));\n }\n \n"],"names":["create","source","Buffer","from","toString","URL","createObjectURL","Blob","type"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/nbextension/242.index.js b/ipyopenlayers/nbextension/242.index.js new file mode 100644 index 0000000..941ec90 --- /dev/null +++ b/ipyopenlayers/nbextension/242.index.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[242],{708:(e,t,r)=>{function n(e,t){let r=e.length-t,n=0;do{for(let r=t;r>0;r--)e[n+t]+=e[n],n++;r-=t}while(r>0)}function o(e,t,r){let n=0,o=e.length;const i=o/r;for(;o>t;){for(let r=t;r>0;--r)e[n+t]+=e[n],++n;o-=t}const l=e.slice();for(let t=0;ti});class i{async decode(e,t){const r=await this.decodeBlock(t),i=e.Predictor||1;if(1!==i){const t=!e.StripOffsets;return function(e,t,r,i,l,s){if(!t||1===t)return e;for(let e=0;e=e.byteLength);++s){let i;if(2===t){switch(l[0]){case 8:i=new Uint8Array(e,s*c*r*a,c*r*a);break;case 16:i=new Uint16Array(e,s*c*r*a,c*r*a/2);break;case 32:i=new Uint32Array(e,s*c*r*a,c*r*a/4);break;default:throw new Error(`Predictor 2 not allowed with ${l[0]} bits per sample.`)}n(i,c)}else 3===t&&(i=new Uint8Array(e,s*c*r*a,c*r*a),o(i,c,a))}return e}(r,i,t?e.TileWidth:e.ImageWidth,t?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return r}}},5242:(e,t,r)=>{r.r(t),r.d(t,{default:()=>o});var n=r(708);class o extends n.A{decodeBlock(e){const t=new DataView(e),r=[];for(let n=0;n 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\nexport default class PackbitsDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n const dataView = new DataView(buffer);\n const out = [];\n\n for (let i = 0; i < buffer.byteLength; ++i) {\n let header = dataView.getInt8(i);\n if (header < 0) {\n const next = dataView.getUint8(i + 1);\n header = -header;\n for (let j = 0; j <= header; ++j) {\n out.push(next);\n }\n i += 1;\n } else {\n for (let j = 0; j <= header; ++j) {\n out.push(dataView.getUint8(i + j + 1));\n }\n i += header + 1;\n }\n }\n return new Uint8Array(out).buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","PackbitsDecoder","dataView","DataView","out","header","getInt8","next","getUint8","j","push"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/nbextension/342.index.js b/ipyopenlayers/nbextension/342.index.js new file mode 100644 index 0000000..04b3497 --- /dev/null +++ b/ipyopenlayers/nbextension/342.index.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[342],{3075:(t,e,a)=>{function i(t){let e=t.length;for(;--e>=0;)t[e]=0}a.d(e,{UD:()=>da});const n=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),s=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),r=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),o=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),l=new Array(576);i(l);const h=new Array(60);i(h);const d=new Array(512);i(d);const _=new Array(256);i(_);const f=new Array(29);i(f);const c=new Array(30);function u(t,e,a,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=a,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}let w,m,b;function g(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}i(c);const p=t=>t<256?d[t]:d[256+(t>>>7)],k=(t,e)=>{t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255},y=(t,e,a)=>{t.bi_valid>16-a?(t.bi_buf|=e<>16-t.bi_valid,t.bi_valid+=a-16):(t.bi_buf|=e<{y(t,a[2*e],a[2*e+1])},x=(t,e)=>{let a=0;do{a|=1&t,t>>>=1,a<<=1}while(--e>0);return a>>>1},z=(t,e,a)=>{const i=new Array(16);let n,s,r=0;for(n=1;n<=15;n++)r=r+a[n-1]<<1,i[n]=r;for(s=0;s<=e;s++){let e=t[2*s+1];0!==e&&(t[2*s]=x(i[e]++,e))}},A=t=>{let e;for(e=0;e<286;e++)t.dyn_ltree[2*e]=0;for(e=0;e<30;e++)t.dyn_dtree[2*e]=0;for(e=0;e<19;e++)t.bl_tree[2*e]=0;t.dyn_ltree[512]=1,t.opt_len=t.static_len=0,t.sym_next=t.matches=0},E=t=>{t.bi_valid>8?k(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0},R=(t,e,a,i)=>{const n=2*e,s=2*a;return t[n]{const i=t.heap[a];let n=a<<1;for(;n<=t.heap_len&&(n{let i,r,o,l,h=0;if(0!==t.sym_next)do{i=255&t.pending_buf[t.sym_buf+h++],i+=(255&t.pending_buf[t.sym_buf+h++])<<8,r=t.pending_buf[t.sym_buf+h++],0===i?v(t,r,e):(o=_[r],v(t,o+256+1,e),l=n[o],0!==l&&(r-=f[o],y(t,r,l)),i--,o=p(i),v(t,o,a),l=s[o],0!==l&&(i-=c[o],y(t,i,l)))}while(h{const a=e.dyn_tree,i=e.stat_desc.static_tree,n=e.stat_desc.has_stree,s=e.stat_desc.elems;let r,o,l,h=-1;for(t.heap_len=0,t.heap_max=573,r=0;r>1;r>=1;r--)Z(t,a,r);l=s;do{r=t.heap[1],t.heap[1]=t.heap[t.heap_len--],Z(t,a,1),o=t.heap[1],t.heap[--t.heap_max]=r,t.heap[--t.heap_max]=o,a[2*l]=a[2*r]+a[2*o],t.depth[l]=(t.depth[r]>=t.depth[o]?t.depth[r]:t.depth[o])+1,a[2*r+1]=a[2*o+1]=l,t.heap[1]=l++,Z(t,a,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],((t,e)=>{const a=e.dyn_tree,i=e.max_code,n=e.stat_desc.static_tree,s=e.stat_desc.has_stree,r=e.stat_desc.extra_bits,o=e.stat_desc.extra_base,l=e.stat_desc.max_length;let h,d,_,f,c,u,w=0;for(f=0;f<=15;f++)t.bl_count[f]=0;for(a[2*t.heap[t.heap_max]+1]=0,h=t.heap_max+1;h<573;h++)d=t.heap[h],f=a[2*a[2*d+1]+1]+1,f>l&&(f=l,w++),a[2*d+1]=f,d>i||(t.bl_count[f]++,c=0,d>=o&&(c=r[d-o]),u=a[2*d],t.opt_len+=u*(f+c),s&&(t.static_len+=u*(n[2*d+1]+c)));if(0!==w){do{for(f=l-1;0===t.bl_count[f];)f--;t.bl_count[f]--,t.bl_count[f+1]+=2,t.bl_count[l]--,w-=2}while(w>0);for(f=l;0!==f;f--)for(d=t.bl_count[f];0!==d;)_=t.heap[--h],_>i||(a[2*_+1]!==f&&(t.opt_len+=(f-a[2*_+1])*a[2*_],a[2*_+1]=f),d--)}})(t,e),z(a,h,t.bl_count)},D=(t,e,a)=>{let i,n,s=-1,r=e[1],o=0,l=7,h=4;for(0===r&&(l=138,h=3),e[2*(a+1)+1]=65535,i=0;i<=a;i++)n=r,r=e[2*(i+1)+1],++o{let i,n,s=-1,r=e[1],o=0,l=7,h=4;for(0===r&&(l=138,h=3),i=0;i<=a;i++)if(n=r,r=e[2*(i+1)+1],!(++o{y(t,0+(i?1:0),3),E(t),k(t,a),k(t,~a),a&&t.pending_buf.set(t.window.subarray(e,e+a),t.pending),t.pending+=a};var I={_tr_init:t=>{O||((()=>{let t,e,a,i,o;const g=new Array(16);for(a=0,i=0;i<28;i++)for(f[i]=a,t=0;t<1<>=7;i<30;i++)for(c[i]=o<<7,t=0;t<1<{let n,s,r=0;t.level>0?(2===t.strm.data_type&&(t.strm.data_type=(t=>{let e,a=4093624447;for(e=0;e<=31;e++,a>>>=1)if(1&a&&0!==t.dyn_ltree[2*e])return 0;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return 1;for(e=32;e<256;e++)if(0!==t.dyn_ltree[2*e])return 1;return 0})(t)),S(t,t.l_desc),S(t,t.d_desc),r=(t=>{let e;for(D(t,t.dyn_ltree,t.l_desc.max_code),D(t,t.dyn_dtree,t.d_desc.max_code),S(t,t.bl_desc),e=18;e>=3&&0===t.bl_tree[2*o[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e})(t),n=t.opt_len+3+7>>>3,s=t.static_len+3+7>>>3,s<=n&&(n=s)):n=s=a+5,a+4<=n&&-1!==e?L(t,e,a,i):4===t.strategy||s===n?(y(t,2+(i?1:0),3),U(t,l,h)):(y(t,4+(i?1:0),3),((t,e,a,i)=>{let n;for(y(t,e-257,5),y(t,a-1,5),y(t,i-4,4),n=0;n(t.pending_buf[t.sym_buf+t.sym_next++]=e,t.pending_buf[t.sym_buf+t.sym_next++]=e>>8,t.pending_buf[t.sym_buf+t.sym_next++]=a,0===e?t.dyn_ltree[2*a]++:(t.matches++,e--,t.dyn_ltree[2*(_[a]+256+1)]++,t.dyn_dtree[2*p(e)]++),t.sym_next===t.sym_end),_tr_align:t=>{y(t,2,3),v(t,256,l),(t=>{16===t.bi_valid?(k(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)})(t)}},F=(t,e,a,i)=>{let n=65535&t,s=t>>>16&65535,r=0;for(;0!==a;){r=a>2e3?2e3:a,a-=r;do{n=n+e[i++]|0,s=s+n|0}while(--r);n%=65521,s%=65521}return n|s<<16};const B=new Uint32Array((()=>{let t,e=[];for(var a=0;a<256;a++){t=a;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[a]=t}return e})());var N=(t,e,a,i)=>{const n=B,s=i+a;t^=-1;for(let a=i;a>>8^n[255&(t^e[a])];return~t},C={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},H={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:M,_tr_stored_block:P,_tr_flush_block:j,_tr_tally:K,_tr_align:Y}=I,{Z_NO_FLUSH:W,Z_PARTIAL_FLUSH:G,Z_FULL_FLUSH:X,Z_FINISH:$,Z_BLOCK:q,Z_OK:J,Z_STREAM_END:Q,Z_STREAM_ERROR:V,Z_DATA_ERROR:tt,Z_BUF_ERROR:et,Z_DEFAULT_COMPRESSION:at,Z_FILTERED:it,Z_HUFFMAN_ONLY:nt,Z_RLE:st,Z_FIXED:rt,Z_DEFAULT_STRATEGY:ot,Z_UNKNOWN:lt,Z_DEFLATED:ht}=H,dt=258,_t=262,ft=42,ct=113,ut=666,wt=(t,e)=>(t.msg=C[e],e),mt=t=>2*t-(t>4?9:0),bt=t=>{let e=t.length;for(;--e>=0;)t[e]=0},gt=t=>{let e,a,i,n=t.w_size;e=t.hash_size,i=e;do{a=t.head[--i],t.head[i]=a>=n?a-n:0}while(--e);e=n,i=e;do{a=t.prev[--i],t.prev[i]=a>=n?a-n:0}while(--e)};let pt=(t,e,a)=>(e<{const e=t.state;let a=e.pending;a>t.avail_out&&(a=t.avail_out),0!==a&&(t.output.set(e.pending_buf.subarray(e.pending_out,e.pending_out+a),t.next_out),t.next_out+=a,e.pending_out+=a,t.total_out+=a,t.avail_out-=a,e.pending-=a,0===e.pending&&(e.pending_out=0))},yt=(t,e)=>{j(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,kt(t.strm)},vt=(t,e)=>{t.pending_buf[t.pending++]=e},xt=(t,e)=>{t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e},zt=(t,e,a,i)=>{let n=t.avail_in;return n>i&&(n=i),0===n?0:(t.avail_in-=n,e.set(t.input.subarray(t.next_in,t.next_in+n),a),1===t.state.wrap?t.adler=F(t.adler,e,n,a):2===t.state.wrap&&(t.adler=N(t.adler,e,n,a)),t.next_in+=n,t.total_in+=n,n)},At=(t,e)=>{let a,i,n=t.max_chain_length,s=t.strstart,r=t.prev_length,o=t.nice_match;const l=t.strstart>t.w_size-_t?t.strstart-(t.w_size-_t):0,h=t.window,d=t.w_mask,_=t.prev,f=t.strstart+dt;let c=h[s+r-1],u=h[s+r];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do{if(a=e,h[a+r]===u&&h[a+r-1]===c&&h[a]===h[s]&&h[++a]===h[s+1]){s+=2,a++;do{}while(h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&sr){if(t.match_start=e,r=i,i>=o)break;c=h[s+r-1],u=h[s+r]}}}while((e=_[e&d])>l&&0!=--n);return r<=t.lookahead?r:t.lookahead},Et=t=>{const e=t.w_size;let a,i,n;do{if(i=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-_t)&&(t.window.set(t.window.subarray(e,e+e-i),0),t.match_start-=e,t.strstart-=e,t.block_start-=e,t.insert>t.strstart&&(t.insert=t.strstart),gt(t),i+=e),0===t.strm.avail_in)break;if(a=zt(t.strm,t.window,t.strstart+t.lookahead,i),t.lookahead+=a,t.lookahead+t.insert>=3)for(n=t.strstart-t.insert,t.ins_h=t.window[n],t.ins_h=pt(t,t.ins_h,t.window[n+1]);t.insert&&(t.ins_h=pt(t,t.ins_h,t.window[n+3-1]),t.prev[n&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=n,n++,t.insert--,!(t.lookahead+t.insert<3)););}while(t.lookahead<_t&&0!==t.strm.avail_in)},Rt=(t,e)=>{let a,i,n,s=t.pending_buf_size-5>t.w_size?t.w_size:t.pending_buf_size-5,r=0,o=t.strm.avail_in;do{if(a=65535,n=t.bi_valid+42>>3,t.strm.avail_outi+t.strm.avail_in&&(a=i+t.strm.avail_in),a>n&&(a=n),a>8,t.pending_buf[t.pending-2]=~a,t.pending_buf[t.pending-1]=~a>>8,kt(t.strm),i&&(i>a&&(i=a),t.strm.output.set(t.window.subarray(t.block_start,t.block_start+i),t.strm.next_out),t.strm.next_out+=i,t.strm.avail_out-=i,t.strm.total_out+=i,t.block_start+=i,a-=i),a&&(zt(t.strm,t.strm.output,t.strm.next_out,a),t.strm.next_out+=a,t.strm.avail_out-=a,t.strm.total_out+=a)}while(0===r);return o-=t.strm.avail_in,o&&(o>=t.w_size?(t.matches=2,t.window.set(t.strm.input.subarray(t.strm.next_in-t.w_size,t.strm.next_in),0),t.strstart=t.w_size,t.insert=t.strstart):(t.window_size-t.strstart<=o&&(t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,t.insert>t.strstart&&(t.insert=t.strstart)),t.window.set(t.strm.input.subarray(t.strm.next_in-o,t.strm.next_in),t.strstart),t.strstart+=o,t.insert+=o>t.w_size-t.insert?t.w_size-t.insert:o),t.block_start=t.strstart),t.high_watern&&t.block_start>=t.w_size&&(t.block_start-=t.w_size,t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,n+=t.w_size,t.insert>t.strstart&&(t.insert=t.strstart)),n>t.strm.avail_in&&(n=t.strm.avail_in),n&&(zt(t.strm,t.window,t.strstart,n),t.strstart+=n,t.insert+=n>t.w_size-t.insert?t.w_size-t.insert:n),t.high_water>3,n=t.pending_buf_size-n>65535?65535:t.pending_buf_size-n,s=n>t.w_size?t.w_size:n,i=t.strstart-t.block_start,(i>=s||(i||e===$)&&e!==W&&0===t.strm.avail_in&&i<=n)&&(a=i>n?n:i,r=e===$&&0===t.strm.avail_in&&a===i?1:0,P(t,t.block_start,a,r),t.block_start+=a,kt(t.strm)),r?3:1)},Zt=(t,e)=>{let a,i;for(;;){if(t.lookahead<_t){if(Et(t),t.lookahead<_t&&e===W)return 1;if(0===t.lookahead)break}if(a=0,t.lookahead>=3&&(t.ins_h=pt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==a&&t.strstart-a<=t.w_size-_t&&(t.match_length=At(t,a)),t.match_length>=3)if(i=K(t,t.strstart-t.match_start,t.match_length-3),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=3){t.match_length--;do{t.strstart++,t.ins_h=pt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart}while(0!=--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=pt(t,t.ins_h,t.window[t.strstart+1]);else i=K(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(yt(t,!1),0===t.strm.avail_out))return 1}return t.insert=t.strstart<2?t.strstart:2,e===$?(yt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(yt(t,!1),0===t.strm.avail_out)?1:2},Ut=(t,e)=>{let a,i,n;for(;;){if(t.lookahead<_t){if(Et(t),t.lookahead<_t&&e===W)return 1;if(0===t.lookahead)break}if(a=0,t.lookahead>=3&&(t.ins_h=pt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=2,0!==a&&t.prev_length4096)&&(t.match_length=2)),t.prev_length>=3&&t.match_length<=t.prev_length){n=t.strstart+t.lookahead-3,i=K(t,t.strstart-1-t.prev_match,t.prev_length-3),t.lookahead-=t.prev_length-1,t.prev_length-=2;do{++t.strstart<=n&&(t.ins_h=pt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart)}while(0!=--t.prev_length);if(t.match_available=0,t.match_length=2,t.strstart++,i&&(yt(t,!1),0===t.strm.avail_out))return 1}else if(t.match_available){if(i=K(t,0,t.window[t.strstart-1]),i&&yt(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return 1}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=K(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<2?t.strstart:2,e===$?(yt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(yt(t,!1),0===t.strm.avail_out)?1:2};function St(t,e,a,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=a,this.max_chain=i,this.func=n}const Dt=[new St(0,0,0,0,Rt),new St(4,4,8,4,Zt),new St(4,5,16,8,Zt),new St(4,6,32,32,Zt),new St(4,4,16,16,Ut),new St(8,16,32,32,Ut),new St(8,16,128,128,Ut),new St(8,32,128,256,Ut),new St(32,128,258,1024,Ut),new St(32,258,258,4096,Ut)];function Tt(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=ht,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),bt(this.dyn_ltree),bt(this.dyn_dtree),bt(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),bt(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),bt(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const Ot=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.status!==ft&&57!==e.status&&69!==e.status&&73!==e.status&&91!==e.status&&103!==e.status&&e.status!==ct&&e.status!==ut?1:0},Lt=t=>{if(Ot(t))return wt(t,V);t.total_in=t.total_out=0,t.data_type=lt;const e=t.state;return e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=2===e.wrap?57:e.wrap?ft:ct,t.adler=2===e.wrap?0:1,e.last_flush=-2,M(e),J},It=t=>{const e=Lt(t);var a;return e===J&&((a=t.state).window_size=2*a.w_size,bt(a.head),a.max_lazy_match=Dt[a.level].max_lazy,a.good_match=Dt[a.level].good_length,a.nice_match=Dt[a.level].nice_length,a.max_chain_length=Dt[a.level].max_chain,a.strstart=0,a.block_start=0,a.lookahead=0,a.insert=0,a.match_length=a.prev_length=2,a.match_available=0,a.ins_h=0),e},Ft=(t,e,a,i,n,s)=>{if(!t)return V;let r=1;if(e===at&&(e=6),i<0?(r=0,i=-i):i>15&&(r=2,i-=16),n<1||n>9||a!==ht||i<8||i>15||e<0||e>9||s<0||s>rt||8===i&&1!==r)return wt(t,V);8===i&&(i=9);const o=new Tt;return t.state=o,o.strm=t,o.status=ft,o.wrap=r,o.gzhead=null,o.w_bits=i,o.w_size=1<Ft(t,e,ht,15,8,ot),deflateInit2:Ft,deflateReset:It,deflateResetKeep:Lt,deflateSetHeader:(t,e)=>Ot(t)||2!==t.state.wrap?V:(t.state.gzhead=e,J),deflate:(t,e)=>{if(Ot(t)||e>q||e<0)return t?wt(t,V):V;const a=t.state;if(!t.output||0!==t.avail_in&&!t.input||a.status===ut&&e!==$)return wt(t,0===t.avail_out?et:V);const i=a.last_flush;if(a.last_flush=e,0!==a.pending){if(kt(t),0===t.avail_out)return a.last_flush=-1,J}else if(0===t.avail_in&&mt(e)<=mt(i)&&e!==$)return wt(t,et);if(a.status===ut&&0!==t.avail_in)return wt(t,et);if(a.status===ft&&0===a.wrap&&(a.status=ct),a.status===ft){let e=ht+(a.w_bits-8<<4)<<8,i=-1;if(i=a.strategy>=nt||a.level<2?0:a.level<6?1:6===a.level?2:3,e|=i<<6,0!==a.strstart&&(e|=32),e+=31-e%31,xt(a,e),0!==a.strstart&&(xt(a,t.adler>>>16),xt(a,65535&t.adler)),t.adler=1,a.status=ct,kt(t),0!==a.pending)return a.last_flush=-1,J}if(57===a.status)if(t.adler=0,vt(a,31),vt(a,139),vt(a,8),a.gzhead)vt(a,(a.gzhead.text?1:0)+(a.gzhead.hcrc?2:0)+(a.gzhead.extra?4:0)+(a.gzhead.name?8:0)+(a.gzhead.comment?16:0)),vt(a,255&a.gzhead.time),vt(a,a.gzhead.time>>8&255),vt(a,a.gzhead.time>>16&255),vt(a,a.gzhead.time>>24&255),vt(a,9===a.level?2:a.strategy>=nt||a.level<2?4:0),vt(a,255&a.gzhead.os),a.gzhead.extra&&a.gzhead.extra.length&&(vt(a,255&a.gzhead.extra.length),vt(a,a.gzhead.extra.length>>8&255)),a.gzhead.hcrc&&(t.adler=N(t.adler,a.pending_buf,a.pending,0)),a.gzindex=0,a.status=69;else if(vt(a,0),vt(a,0),vt(a,0),vt(a,0),vt(a,0),vt(a,9===a.level?2:a.strategy>=nt||a.level<2?4:0),vt(a,3),a.status=ct,kt(t),0!==a.pending)return a.last_flush=-1,J;if(69===a.status){if(a.gzhead.extra){let e=a.pending,i=(65535&a.gzhead.extra.length)-a.gzindex;for(;a.pending+i>a.pending_buf_size;){let n=a.pending_buf_size-a.pending;if(a.pending_buf.set(a.gzhead.extra.subarray(a.gzindex,a.gzindex+n),a.pending),a.pending=a.pending_buf_size,a.gzhead.hcrc&&a.pending>e&&(t.adler=N(t.adler,a.pending_buf,a.pending-e,e)),a.gzindex+=n,kt(t),0!==a.pending)return a.last_flush=-1,J;e=0,i-=n}let n=new Uint8Array(a.gzhead.extra);a.pending_buf.set(n.subarray(a.gzindex,a.gzindex+i),a.pending),a.pending+=i,a.gzhead.hcrc&&a.pending>e&&(t.adler=N(t.adler,a.pending_buf,a.pending-e,e)),a.gzindex=0}a.status=73}if(73===a.status){if(a.gzhead.name){let e,i=a.pending;do{if(a.pending===a.pending_buf_size){if(a.gzhead.hcrc&&a.pending>i&&(t.adler=N(t.adler,a.pending_buf,a.pending-i,i)),kt(t),0!==a.pending)return a.last_flush=-1,J;i=0}e=a.gzindexi&&(t.adler=N(t.adler,a.pending_buf,a.pending-i,i)),a.gzindex=0}a.status=91}if(91===a.status){if(a.gzhead.comment){let e,i=a.pending;do{if(a.pending===a.pending_buf_size){if(a.gzhead.hcrc&&a.pending>i&&(t.adler=N(t.adler,a.pending_buf,a.pending-i,i)),kt(t),0!==a.pending)return a.last_flush=-1,J;i=0}e=a.gzindexi&&(t.adler=N(t.adler,a.pending_buf,a.pending-i,i))}a.status=103}if(103===a.status){if(a.gzhead.hcrc){if(a.pending+2>a.pending_buf_size&&(kt(t),0!==a.pending))return a.last_flush=-1,J;vt(a,255&t.adler),vt(a,t.adler>>8&255),t.adler=0}if(a.status=ct,kt(t),0!==a.pending)return a.last_flush=-1,J}if(0!==t.avail_in||0!==a.lookahead||e!==W&&a.status!==ut){let i=0===a.level?Rt(a,e):a.strategy===nt?((t,e)=>{let a;for(;;){if(0===t.lookahead&&(Et(t),0===t.lookahead)){if(e===W)return 1;break}if(t.match_length=0,a=K(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,a&&(yt(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===$?(yt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(yt(t,!1),0===t.strm.avail_out)?1:2})(a,e):a.strategy===st?((t,e)=>{let a,i,n,s;const r=t.window;for(;;){if(t.lookahead<=dt){if(Et(t),t.lookahead<=dt&&e===W)return 1;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=3&&t.strstart>0&&(n=t.strstart-1,i=r[n],i===r[++n]&&i===r[++n]&&i===r[++n])){s=t.strstart+dt;do{}while(i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&nt.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=3?(a=K(t,1,t.match_length-3),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(a=K(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),a&&(yt(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===$?(yt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(yt(t,!1),0===t.strm.avail_out)?1:2})(a,e):Dt[a.level].func(a,e);if(3!==i&&4!==i||(a.status=ut),1===i||3===i)return 0===t.avail_out&&(a.last_flush=-1),J;if(2===i&&(e===G?Y(a):e!==q&&(P(a,0,0,!1),e===X&&(bt(a.head),0===a.lookahead&&(a.strstart=0,a.block_start=0,a.insert=0))),kt(t),0===t.avail_out))return a.last_flush=-1,J}return e!==$?J:a.wrap<=0?Q:(2===a.wrap?(vt(a,255&t.adler),vt(a,t.adler>>8&255),vt(a,t.adler>>16&255),vt(a,t.adler>>24&255),vt(a,255&t.total_in),vt(a,t.total_in>>8&255),vt(a,t.total_in>>16&255),vt(a,t.total_in>>24&255)):(xt(a,t.adler>>>16),xt(a,65535&t.adler)),kt(t),a.wrap>0&&(a.wrap=-a.wrap),0!==a.pending?J:Q)},deflateEnd:t=>{if(Ot(t))return V;const e=t.state.status;return t.state=null,e===ct?wt(t,tt):J},deflateSetDictionary:(t,e)=>{let a=e.length;if(Ot(t))return V;const i=t.state,n=i.wrap;if(2===n||1===n&&i.status!==ft||i.lookahead)return V;if(1===n&&(t.adler=F(t.adler,e,a,0)),i.wrap=0,a>=i.w_size){0===n&&(bt(i.head),i.strstart=0,i.block_start=0,i.insert=0);let t=new Uint8Array(i.w_size);t.set(e.subarray(a-i.w_size,a),0),e=t,a=i.w_size}const s=t.avail_in,r=t.next_in,o=t.input;for(t.avail_in=a,t.next_in=0,t.input=e,Et(i);i.lookahead>=3;){let t=i.strstart,e=i.lookahead-2;do{i.ins_h=pt(i,i.ins_h,i.window[t+3-1]),i.prev[t&i.w_mask]=i.head[i.ins_h],i.head[i.ins_h]=t,t++}while(--e);i.strstart=t,i.lookahead=2,Et(i)}return i.strstart+=i.lookahead,i.block_start=i.strstart,i.insert=i.lookahead,i.lookahead=0,i.match_length=i.prev_length=2,i.match_available=0,t.next_in=r,t.input=o,t.avail_in=s,i.wrap=n,J},deflateInfo:"pako deflate (from Nodeca project)"};const Nt=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var Ct={assign:function(t){const e=Array.prototype.slice.call(arguments,1);for(;e.length;){const a=e.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(const e in a)Nt(a,e)&&(t[e]=a[e])}}return t},flattenChunks:t=>{let e=0;for(let a=0,i=t.length;a=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;Mt[254]=Mt[254]=1;var Pt={string2buf:t=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(t);let e,a,i,n,s,r=t.length,o=0;for(n=0;n>>6,e[s++]=128|63&a):a<65536?(e[s++]=224|a>>>12,e[s++]=128|a>>>6&63,e[s++]=128|63&a):(e[s++]=240|a>>>18,e[s++]=128|a>>>12&63,e[s++]=128|a>>>6&63,e[s++]=128|63&a);return e},buf2string:(t,e)=>{const a=e||t.length;if("function"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(t.subarray(0,e));let i,n;const s=new Array(2*a);for(n=0,i=0;i4)s[n++]=65533,i+=r-1;else{for(e&=2===r?31:3===r?15:7;r>1&&i1?s[n++]=65533:e<65536?s[n++]=e:(e-=65536,s[n++]=55296|e>>10&1023,s[n++]=56320|1023&e)}}return((t,e)=>{if(e<65534&&t.subarray&&Ht)return String.fromCharCode.apply(null,t.length===e?t:t.subarray(0,e));let a="";for(let i=0;i{(e=e||t.length)>t.length&&(e=t.length);let a=e-1;for(;a>=0&&128==(192&t[a]);)a--;return a<0||0===a?e:a+Mt[t[a]]>e?a:e}},jt=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};const Kt=Object.prototype.toString,{Z_NO_FLUSH:Yt,Z_SYNC_FLUSH:Wt,Z_FULL_FLUSH:Gt,Z_FINISH:Xt,Z_OK:$t,Z_STREAM_END:qt,Z_DEFAULT_COMPRESSION:Jt,Z_DEFAULT_STRATEGY:Qt,Z_DEFLATED:Vt}=H;function te(t){this.options=Ct.assign({level:Jt,method:Vt,chunkSize:16384,windowBits:15,memLevel:8,strategy:Qt},t||{});let e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new jt,this.strm.avail_out=0;let a=Bt.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(a!==$t)throw new Error(C[a]);if(e.header&&Bt.deflateSetHeader(this.strm,e.header),e.dictionary){let t;if(t="string"==typeof e.dictionary?Pt.string2buf(e.dictionary):"[object ArrayBuffer]"===Kt.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,a=Bt.deflateSetDictionary(this.strm,t),a!==$t)throw new Error(C[a]);this._dict_set=!0}}function ee(t,e){const a=new te(e);if(a.push(t,!0),a.err)throw a.msg||C[a.err];return a.result}te.prototype.push=function(t,e){const a=this.strm,i=this.options.chunkSize;let n,s;if(this.ended)return!1;for(s=e===~~e?e:!0===e?Xt:Yt,"string"==typeof t?a.input=Pt.string2buf(t):"[object ArrayBuffer]"===Kt.call(t)?a.input=new Uint8Array(t):a.input=t,a.next_in=0,a.avail_in=a.input.length;;)if(0===a.avail_out&&(a.output=new Uint8Array(i),a.next_out=0,a.avail_out=i),(s===Wt||s===Gt)&&a.avail_out<=6)this.onData(a.output.subarray(0,a.next_out)),a.avail_out=0;else{if(n=Bt.deflate(a,s),n===qt)return a.next_out>0&&this.onData(a.output.subarray(0,a.next_out)),n=Bt.deflateEnd(this.strm),this.onEnd(n),this.ended=!0,n===$t;if(0!==a.avail_out){if(s>0&&a.next_out>0)this.onData(a.output.subarray(0,a.next_out)),a.avail_out=0;else if(0===a.avail_in)break}else this.onData(a.output)}return!0},te.prototype.onData=function(t){this.chunks.push(t)},te.prototype.onEnd=function(t){t===$t&&(this.result=Ct.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var ae={Deflate:te,deflate:ee,deflateRaw:function(t,e){return(e=e||{}).raw=!0,ee(t,e)},gzip:function(t,e){return(e=e||{}).gzip=!0,ee(t,e)},constants:H};const ie=16209;var ne=function(t,e){let a,i,n,s,r,o,l,h,d,_,f,c,u,w,m,b,g,p,k,y,v,x,z,A;const E=t.state;a=t.next_in,z=t.input,i=a+(t.avail_in-5),n=t.next_out,A=t.output,s=n-(e-t.avail_out),r=n+(t.avail_out-257),o=E.dmax,l=E.wsize,h=E.whave,d=E.wnext,_=E.window,f=E.hold,c=E.bits,u=E.lencode,w=E.distcode,m=(1<>>24,f>>>=p,c-=p,p=g>>>16&255,0===p)A[n++]=65535&g;else{if(!(16&p)){if(64&p){if(32&p){E.mode=16191;break t}t.msg="invalid literal/length code",E.mode=ie;break t}g=u[(65535&g)+(f&(1<>>=p,c-=p),c<15&&(f+=z[a++]<>>24,f>>>=p,c-=p,p=g>>>16&255,16&p){if(y=65535&g,p&=15,co){t.msg="invalid distance too far back",E.mode=ie;break t}if(f>>>=p,c-=p,p=n-s,y>p){if(p=y-p,p>h&&E.sane){t.msg="invalid distance too far back",E.mode=ie;break t}if(v=0,x=_,0===d){if(v+=l-p,p2;)A[n++]=x[v++],A[n++]=x[v++],A[n++]=x[v++],k-=3;k&&(A[n++]=x[v++],k>1&&(A[n++]=x[v++]))}else{v=n-y;do{A[n++]=A[v++],A[n++]=A[v++],A[n++]=A[v++],k-=3}while(k>2);k&&(A[n++]=A[v++],k>1&&(A[n++]=A[v++]))}break}if(64&p){t.msg="invalid distance code",E.mode=ie;break t}g=w[(65535&g)+(f&(1<>3,a-=k,c-=k<<3,f&=(1<{const l=o.bits;let h,d,_,f,c,u,w=0,m=0,b=0,g=0,p=0,k=0,y=0,v=0,x=0,z=0,A=null;const E=new Uint16Array(16),R=new Uint16Array(16);let Z,U,S,D=null;for(w=0;w<=15;w++)E[w]=0;for(m=0;m=1&&0===E[g];g--);if(p>g&&(p=g),0===g)return n[s++]=20971520,n[s++]=20971520,o.bits=1,0;for(b=1;b0&&(0===t||1!==g))return-1;for(R[1]=0,w=1;w<15;w++)R[w+1]=R[w]+E[w];for(m=0;m852||2===t&&x>592)return 1;for(;;){Z=w-y,r[m]+1=u?(U=D[r[m]-u],S=A[r[m]-u]):(U=96,S=0),h=1<>y)+d]=Z<<24|U<<16|S}while(0!==d);for(h=1<>=1;if(0!==h?(z&=h-1,z+=h):z=0,m++,0==--E[w]){if(w===g)break;w=e[a+r[m]]}if(w>p&&(z&f)!==_){for(0===y&&(y=p),c+=b,k=w-y,v=1<852||2===t&&x>592)return 1;_=z&f,n[_]=p<<24|k<<16|c-s}}return 0!==z&&(n[c+z]=w-y<<24|64<<16),o.bits=p,0};const{Z_FINISH:de,Z_BLOCK:_e,Z_TREES:fe,Z_OK:ce,Z_STREAM_END:ue,Z_NEED_DICT:we,Z_STREAM_ERROR:me,Z_DATA_ERROR:be,Z_MEM_ERROR:ge,Z_BUF_ERROR:pe,Z_DEFLATED:ke}=H,ye=16180,ve=16190,xe=16191,ze=16192,Ae=16194,Ee=16199,Re=16200,Ze=16206,Ue=16209,Se=t=>(t>>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24);function De(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const Te=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.mode16211?1:0},Oe=t=>{if(Te(t))return me;const e=t.state;return t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=ye,e.last=0,e.havedict=0,e.flags=-1,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Int32Array(852),e.distcode=e.distdyn=new Int32Array(592),e.sane=1,e.back=-1,ce},Le=t=>{if(Te(t))return me;const e=t.state;return e.wsize=0,e.whave=0,e.wnext=0,Oe(t)},Ie=(t,e)=>{let a;if(Te(t))return me;const i=t.state;return e<0?(a=0,e=-e):(a=5+(e>>4),e<48&&(e&=15)),e&&(e<8||e>15)?me:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=a,i.wbits=e,Le(t))},Fe=(t,e)=>{if(!t)return me;const a=new De;t.state=a,a.strm=t,a.window=null,a.mode=ye;const i=Ie(t,e);return i!==ce&&(t.state=null),i};let Be,Ne,Ce=!0;const He=t=>{if(Ce){Be=new Int32Array(512),Ne=new Int32Array(32);let e=0;for(;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(he(1,t.lens,0,288,Be,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;he(2,t.lens,0,32,Ne,0,t.work,{bits:5}),Ce=!1}t.lencode=Be,t.lenbits=9,t.distcode=Ne,t.distbits=5},Me=(t,e,a,i)=>{let n;const s=t.state;return null===s.window&&(s.wsize=1<=s.wsize?(s.window.set(e.subarray(a-s.wsize,a),0),s.wnext=0,s.whave=s.wsize):(n=s.wsize-s.wnext,n>i&&(n=i),s.window.set(e.subarray(a-i,a-i+n),s.wnext),(i-=n)?(s.window.set(e.subarray(a-i,a),0),s.wnext=i,s.whave=s.wsize):(s.wnext+=n,s.wnext===s.wsize&&(s.wnext=0),s.whaveFe(t,15),inflateInit2:Fe,inflate:(t,e)=>{let a,i,n,s,r,o,l,h,d,_,f,c,u,w,m,b,g,p,k,y,v,x,z=0;const A=new Uint8Array(4);let E,R;const Z=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(Te(t)||!t.output||!t.input&&0!==t.avail_in)return me;a=t.state,a.mode===xe&&(a.mode=ze),r=t.next_out,n=t.output,l=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,h=a.hold,d=a.bits,_=o,f=l,x=ce;t:for(;;)switch(a.mode){case ye:if(0===a.wrap){a.mode=ze;break}for(;d<16;){if(0===o)break t;o--,h+=i[s++]<>>8&255,a.check=N(a.check,A,2,0),h=0,d=0,a.mode=16181;break}if(a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&h)<<8)+(h>>8))%31){t.msg="incorrect header check",a.mode=Ue;break}if((15&h)!==ke){t.msg="unknown compression method",a.mode=Ue;break}if(h>>>=4,d-=4,v=8+(15&h),0===a.wbits&&(a.wbits=v),v>15||v>a.wbits){t.msg="invalid window size",a.mode=Ue;break}a.dmax=1<>8&1),512&a.flags&&4&a.wrap&&(A[0]=255&h,A[1]=h>>>8&255,a.check=N(a.check,A,2,0)),h=0,d=0,a.mode=16182;case 16182:for(;d<32;){if(0===o)break t;o--,h+=i[s++]<>>8&255,A[2]=h>>>16&255,A[3]=h>>>24&255,a.check=N(a.check,A,4,0)),h=0,d=0,a.mode=16183;case 16183:for(;d<16;){if(0===o)break t;o--,h+=i[s++]<>8),512&a.flags&&4&a.wrap&&(A[0]=255&h,A[1]=h>>>8&255,a.check=N(a.check,A,2,0)),h=0,d=0,a.mode=16184;case 16184:if(1024&a.flags){for(;d<16;){if(0===o)break t;o--,h+=i[s++]<>>8&255,a.check=N(a.check,A,2,0)),h=0,d=0}else a.head&&(a.head.extra=null);a.mode=16185;case 16185:if(1024&a.flags&&(c=a.length,c>o&&(c=o),c&&(a.head&&(v=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Uint8Array(a.head.extra_len)),a.head.extra.set(i.subarray(s,s+c),v)),512&a.flags&&4&a.wrap&&(a.check=N(a.check,i,c,s)),o-=c,s+=c,a.length-=c),a.length))break t;a.length=0,a.mode=16186;case 16186:if(2048&a.flags){if(0===o)break t;c=0;do{v=i[s+c++],a.head&&v&&a.length<65536&&(a.head.name+=String.fromCharCode(v))}while(v&&c>9&1,a.head.done=!0),t.adler=a.check=0,a.mode=xe;break;case 16189:for(;d<32;){if(0===o)break t;o--,h+=i[s++]<>>=7&d,d-=7&d,a.mode=Ze;break}for(;d<3;){if(0===o)break t;o--,h+=i[s++]<>>=1,d-=1,3&h){case 0:a.mode=16193;break;case 1:if(He(a),a.mode=Ee,e===fe){h>>>=2,d-=2;break t}break;case 2:a.mode=16196;break;case 3:t.msg="invalid block type",a.mode=Ue}h>>>=2,d-=2;break;case 16193:for(h>>>=7&d,d-=7&d;d<32;){if(0===o)break t;o--,h+=i[s++]<>>16^65535)){t.msg="invalid stored block lengths",a.mode=Ue;break}if(a.length=65535&h,h=0,d=0,a.mode=Ae,e===fe)break t;case Ae:a.mode=16195;case 16195:if(c=a.length,c){if(c>o&&(c=o),c>l&&(c=l),0===c)break t;n.set(i.subarray(s,s+c),r),o-=c,s+=c,l-=c,r+=c,a.length-=c;break}a.mode=xe;break;case 16196:for(;d<14;){if(0===o)break t;o--,h+=i[s++]<>>=5,d-=5,a.ndist=1+(31&h),h>>>=5,d-=5,a.ncode=4+(15&h),h>>>=4,d-=4,a.nlen>286||a.ndist>30){t.msg="too many length or distance symbols",a.mode=Ue;break}a.have=0,a.mode=16197;case 16197:for(;a.have>>=3,d-=3}for(;a.have<19;)a.lens[Z[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,E={bits:a.lenbits},x=he(0,a.lens,0,19,a.lencode,0,a.work,E),a.lenbits=E.bits,x){t.msg="invalid code lengths set",a.mode=Ue;break}a.have=0,a.mode=16198;case 16198:for(;a.have>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<>>=m,d-=m,a.lens[a.have++]=g;else{if(16===g){for(R=m+2;d>>=m,d-=m,0===a.have){t.msg="invalid bit length repeat",a.mode=Ue;break}v=a.lens[a.have-1],c=3+(3&h),h>>>=2,d-=2}else if(17===g){for(R=m+3;d>>=m,d-=m,v=0,c=3+(7&h),h>>>=3,d-=3}else{for(R=m+7;d>>=m,d-=m,v=0,c=11+(127&h),h>>>=7,d-=7}if(a.have+c>a.nlen+a.ndist){t.msg="invalid bit length repeat",a.mode=Ue;break}for(;c--;)a.lens[a.have++]=v}}if(a.mode===Ue)break;if(0===a.lens[256]){t.msg="invalid code -- missing end-of-block",a.mode=Ue;break}if(a.lenbits=9,E={bits:a.lenbits},x=he(1,a.lens,0,a.nlen,a.lencode,0,a.work,E),a.lenbits=E.bits,x){t.msg="invalid literal/lengths set",a.mode=Ue;break}if(a.distbits=6,a.distcode=a.distdyn,E={bits:a.distbits},x=he(2,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,E),a.distbits=E.bits,x){t.msg="invalid distances set",a.mode=Ue;break}if(a.mode=Ee,e===fe)break t;case Ee:a.mode=Re;case Re:if(o>=6&&l>=258){t.next_out=r,t.avail_out=l,t.next_in=s,t.avail_in=o,a.hold=h,a.bits=d,ne(t,f),r=t.next_out,n=t.output,l=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,h=a.hold,d=a.bits,a.mode===xe&&(a.back=-1);break}for(a.back=0;z=a.lencode[h&(1<>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<>p)],m=z>>>24,b=z>>>16&255,g=65535&z,!(p+m<=d);){if(0===o)break t;o--,h+=i[s++]<>>=p,d-=p,a.back+=p}if(h>>>=m,d-=m,a.back+=m,a.length=g,0===b){a.mode=16205;break}if(32&b){a.back=-1,a.mode=xe;break}if(64&b){t.msg="invalid literal/length code",a.mode=Ue;break}a.extra=15&b,a.mode=16201;case 16201:if(a.extra){for(R=a.extra;d>>=a.extra,d-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=16202;case 16202:for(;z=a.distcode[h&(1<>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<>p)],m=z>>>24,b=z>>>16&255,g=65535&z,!(p+m<=d);){if(0===o)break t;o--,h+=i[s++]<>>=p,d-=p,a.back+=p}if(h>>>=m,d-=m,a.back+=m,64&b){t.msg="invalid distance code",a.mode=Ue;break}a.offset=g,a.extra=15&b,a.mode=16203;case 16203:if(a.extra){for(R=a.extra;d>>=a.extra,d-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){t.msg="invalid distance too far back",a.mode=Ue;break}a.mode=16204;case 16204:if(0===l)break t;if(c=f-l,a.offset>c){if(c=a.offset-c,c>a.whave&&a.sane){t.msg="invalid distance too far back",a.mode=Ue;break}c>a.wnext?(c-=a.wnext,u=a.wsize-c):u=a.wnext-c,c>a.length&&(c=a.length),w=a.window}else w=n,u=r-a.offset,c=a.length;c>l&&(c=l),l-=c,a.length-=c;do{n[r++]=w[u++]}while(--c);0===a.length&&(a.mode=Re);break;case 16205:if(0===l)break t;n[r++]=a.length,l--,a.mode=Re;break;case Ze:if(a.wrap){for(;d<32;){if(0===o)break t;o--,h|=i[s++]<{if(Te(t))return me;let e=t.state;return e.window&&(e.window=null),t.state=null,ce},inflateGetHeader:(t,e)=>{if(Te(t))return me;const a=t.state;return 2&a.wrap?(a.head=e,e.done=!1,ce):me},inflateSetDictionary:(t,e)=>{const a=e.length;let i,n,s;return Te(t)?me:(i=t.state,0!==i.wrap&&i.mode!==ve?me:i.mode===ve&&(n=1,n=F(n,e,a,0),n!==i.check)?be:(s=Me(t,e,a,a),s?(i.mode=16210,ge):(i.havedict=1,ce)))},inflateInfo:"pako inflate (from Nodeca project)"},je=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1};const Ke=Object.prototype.toString,{Z_NO_FLUSH:Ye,Z_FINISH:We,Z_OK:Ge,Z_STREAM_END:Xe,Z_NEED_DICT:$e,Z_STREAM_ERROR:qe,Z_DATA_ERROR:Je,Z_MEM_ERROR:Qe}=H;function Ve(t){this.options=Ct.assign({chunkSize:65536,windowBits:15,to:""},t||{});const e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&(15&e.windowBits||(e.windowBits|=15)),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new jt,this.strm.avail_out=0;let a=Pe.inflateInit2(this.strm,e.windowBits);if(a!==Ge)throw new Error(C[a]);if(this.header=new je,Pe.inflateGetHeader(this.strm,this.header),e.dictionary&&("string"==typeof e.dictionary?e.dictionary=Pt.string2buf(e.dictionary):"[object ArrayBuffer]"===Ke.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(a=Pe.inflateSetDictionary(this.strm,e.dictionary),a!==Ge)))throw new Error(C[a])}function ta(t,e){const a=new Ve(e);if(a.push(t),a.err)throw a.msg||C[a.err];return a.result}Ve.prototype.push=function(t,e){const a=this.strm,i=this.options.chunkSize,n=this.options.dictionary;let s,r,o;if(this.ended)return!1;for(r=e===~~e?e:!0===e?We:Ye,"[object ArrayBuffer]"===Ke.call(t)?a.input=new Uint8Array(t):a.input=t,a.next_in=0,a.avail_in=a.input.length;;){for(0===a.avail_out&&(a.output=new Uint8Array(i),a.next_out=0,a.avail_out=i),s=Pe.inflate(a,r),s===$e&&n&&(s=Pe.inflateSetDictionary(a,n),s===Ge?s=Pe.inflate(a,r):s===Je&&(s=$e));a.avail_in>0&&s===Xe&&a.state.wrap>0&&0!==t[a.next_in];)Pe.inflateReset(a),s=Pe.inflate(a,r);switch(s){case qe:case Je:case $e:case Qe:return this.onEnd(s),this.ended=!0,!1}if(o=a.avail_out,a.next_out&&(0===a.avail_out||s===Xe))if("string"===this.options.to){let t=Pt.utf8border(a.output,a.next_out),e=a.next_out-t,n=Pt.buf2string(a.output,t);a.next_out=e,a.avail_out=i-e,e&&a.output.set(a.output.subarray(t,t+e),0),this.onData(n)}else this.onData(a.output.length===a.next_out?a.output:a.output.subarray(0,a.next_out));if(s!==Ge||0!==o){if(s===Xe)return s=Pe.inflateEnd(this.strm),this.onEnd(s),this.ended=!0,!0;if(0===a.avail_in)break}}return!0},Ve.prototype.onData=function(t){this.chunks.push(t)},Ve.prototype.onEnd=function(t){t===Ge&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=Ct.flattenChunks(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var ea={Inflate:Ve,inflate:ta,inflateRaw:function(t,e){return(e=e||{}).raw=!0,ta(t,e)},ungzip:ta,constants:H};const{Deflate:aa,deflate:ia,deflateRaw:na,gzip:sa}=ae,{Inflate:ra,inflate:oa,inflateRaw:la,ungzip:ha}=ea;var da=oa},708:(t,e,a)=>{function i(t,e){let a=t.length-e,i=0;do{for(let a=e;a>0;a--)t[i+e]+=t[i],i++;a-=e}while(a>0)}function n(t,e,a){let i=0,n=t.length;const s=n/a;for(;n>e;){for(let a=e;a>0;--a)t[i+e]+=t[i],++i;n-=e}const r=t.slice();for(let e=0;es});class s{async decode(t,e){const a=await this.decodeBlock(e),s=t.Predictor||1;if(1!==s){const e=!t.StripOffsets;return function(t,e,a,s,r,o){if(!e||1===e)return t;for(let t=0;t=t.byteLength);++o){let s;if(2===e){switch(r[0]){case 8:s=new Uint8Array(t,o*h*a*l,h*a*l);break;case 16:s=new Uint16Array(t,o*h*a*l,h*a*l/2);break;case 32:s=new Uint32Array(t,o*h*a*l,h*a*l/4);break;default:throw new Error(`Predictor 2 not allowed with ${r[0]} bits per sample.`)}i(s,h)}else 3===e&&(s=new Uint8Array(t,o*h*a*l,h*a*l),n(s,h,l))}return t}(a,s,e?t.TileWidth:t.ImageWidth,e?t.TileLength:t.RowsPerStrip||t.ImageLength,t.BitsPerSample,t.PlanarConfiguration)}return a}}}}]); +//# sourceMappingURL=342.index.js.map \ No newline at end of file diff --git a/ipyopenlayers/nbextension/342.index.js.map b/ipyopenlayers/nbextension/342.index.js.map new file mode 100644 index 0000000..6238a36 --- /dev/null +++ b/ipyopenlayers/nbextension/342.index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"342.index.js","mappings":"6GA0CA,SAASA,EAAOC,GAAO,IAAIC,EAAMD,EAAIE,OAAQ,OAASD,GAAO,GAAKD,EAAIC,GAAO,CAAK,C,mBAIlF,MA2DME,EACJ,IAAIC,WAAW,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,IAEpEC,EACJ,IAAID,WAAW,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,GAAG,KAE7EE,EACJ,IAAIF,WAAW,CAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,IAEhDG,EACJ,IAAIH,WAAW,CAAC,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,KAgBxDI,EAAgB,IAAIC,MAAM,KAChCV,EAAOS,GAOP,MAAME,EAAgB,IAAID,MAAME,IAChCZ,EAAOW,GAKP,MAAME,EAAgB,IAAIH,MAjBJ,KAkBtBV,EAAOa,GAMP,MAAMC,EAAgB,IAAIJ,MAAMK,KAChCf,EAAOc,GAGP,MAAME,EAAgB,IAAIN,MAhGF,IAiGxBV,EAAOgB,GAGP,MAAMC,EAAgB,IAAIP,MA3FF,IAgGxB,SAASQ,EAAeC,EAAaC,EAAYC,EAAYC,EAAOC,GAElEC,KAAKL,YAAeA,EACpBK,KAAKJ,WAAeA,EACpBI,KAAKH,WAAeA,EACpBG,KAAKF,MAAeA,EACpBE,KAAKD,WAAeA,EAGpBC,KAAKC,UAAeN,GAAeA,EAAYhB,MACjD,CAGA,IAAIuB,EACAC,EACAC,EAGJ,SAASC,EAASC,EAAUC,GAC1BP,KAAKM,SAAWA,EAChBN,KAAKQ,SAAW,EAChBR,KAAKO,UAAYA,CACnB,CA1BA/B,EAAOiB,GA8BP,MAAMgB,EAAUC,GAEPA,EAAO,IAAMrB,EAAWqB,GAAQrB,EAAW,KAAOqB,IAAS,IAQ9DC,EAAY,CAACC,EAAGC,KAGpBD,EAAEE,YAAYF,EAAEG,WAAmB,IAAN,EAC7BH,EAAEE,YAAYF,EAAEG,WAAcF,IAAM,EAAK,GAAI,EAQzCG,EAAY,CAACJ,EAAGK,EAAOtC,KAEvBiC,EAAEM,SAtIc,GAsISvC,GAC3BiC,EAAEO,QAAWF,GAASL,EAAEM,SAAY,MACpCP,EAAUC,EAAGA,EAAEO,QACfP,EAAEO,OAASF,GAzIO,GAyIcL,EAAEM,SAClCN,EAAEM,UAAYvC,EA1II,KA4IlBiC,EAAEO,QAAWF,GAASL,EAAEM,SAAY,MACpCN,EAAEM,UAAYvC,EAChB,EAIIyC,EAAY,CAACR,EAAGS,EAAGC,KAEvBN,EAAUJ,EAAGU,EAAS,EAAJD,GAAiBC,EAAS,EAAJD,EAAQ,GAAW,EASvDE,EAAa,CAACC,EAAM9C,KAExB,IAAI+C,EAAM,EACV,GACEA,GAAc,EAAPD,EACPA,KAAU,EACVC,IAAQ,UACC/C,EAAM,GACjB,OAAO+C,IAAQ,CAAC,EAiIZC,EAAY,CAACJ,EAAMd,EAAUmB,KAKjC,MAAMC,EAAY,IAAI1C,MAAM2C,IAC5B,IACIC,EACAC,EAFAP,EAAO,EAOX,IAAKM,EAAO,EAAGA,GAtTO,GAsTaA,IACjCN,EAAQA,EAAOG,EAASG,EAAO,IAAO,EACtCF,EAAUE,GAAQN,EASpB,IAAKO,EAAI,EAAIA,GAAKvB,EAAUuB,IAAK,CAC/B,IAAIrD,EAAM4C,EAAS,EAAJS,EAAQ,GACX,IAARrD,IAEJ4C,EAAS,EAAJS,GAAkBR,EAAWK,EAAUlD,KAAQA,GAItD,GAgHIsD,EAAcpB,IAElB,IAAImB,EAGJ,IAAKA,EAAI,EAAGA,EA1cUE,IA0cMF,IAAOnB,EAAEsB,UAAc,EAAJH,GAAkB,EACjE,IAAKA,EAAI,EAAGA,EAxcU,GAwcMA,IAAOnB,EAAEuB,UAAc,EAAJJ,GAAkB,EACjE,IAAKA,EAAI,EAAGA,EAtcU,GAscMA,IAAOnB,EAAEwB,QAAY,EAAJL,GAAkB,EAE/DnB,EAAEsB,UAAUG,KAA0B,EACtCzB,EAAE0B,QAAU1B,EAAE2B,WAAa,EAC3B3B,EAAE4B,SAAW5B,EAAE6B,QAAU,CAAC,EAOtBC,EAAa9B,IAEbA,EAAEM,SAAW,EACfP,EAAUC,EAAGA,EAAEO,QACNP,EAAEM,SAAW,IAEtBN,EAAEE,YAAYF,EAAEG,WAAaH,EAAEO,QAEjCP,EAAEO,OAAS,EACXP,EAAEM,SAAW,CAAC,EAOVyB,EAAU,CAACrB,EAAMS,EAAGa,EAAGC,KAE3B,MAAMC,EAAU,EAAJf,EACNgB,EAAU,EAAJH,EACZ,OAAQtB,EAAKwB,GAAgBxB,EAAKyB,IAC1BzB,EAAKwB,KAAkBxB,EAAKyB,IAAiBF,EAAMd,IAAMc,EAAMD,EAAI,EASvEI,EAAa,CAACpC,EAAGU,EAAM2B,KAK3B,MAAMC,EAAItC,EAAEuC,KAAKF,GACjB,IAAIG,EAAIH,GAAK,EACb,KAAOG,GAAKxC,EAAEyC,WAERD,EAAIxC,EAAEyC,UACRV,EAAQrB,EAAMV,EAAEuC,KAAKC,EAAI,GAAIxC,EAAEuC,KAAKC,GAAIxC,EAAEiC,QAC1CO,KAGET,EAAQrB,EAAM4B,EAAGtC,EAAEuC,KAAKC,GAAIxC,EAAEiC,SAGlCjC,EAAEuC,KAAKF,GAAKrC,EAAEuC,KAAKC,GACnBH,EAAIG,EAGJA,IAAM,EAERxC,EAAEuC,KAAKF,GAAKC,CAAC,EAUTI,EAAiB,CAAC1C,EAAG2C,EAAOC,KAKhC,IAAI9C,EACA+C,EAEAjC,EACAkC,EAFAC,EAAK,EAIT,GAAmB,IAAf/C,EAAE4B,SACJ,GACE9B,EAAyC,IAAlCE,EAAEE,YAAYF,EAAEgD,QAAUD,KACjCjD,IAA2C,IAAlCE,EAAEE,YAAYF,EAAEgD,QAAUD,OAAiB,EACpDF,EAAK7C,EAAEE,YAAYF,EAAEgD,QAAUD,KAClB,IAATjD,EACFU,EAAUR,EAAG6C,EAAIF,IAIjB/B,EAAOlC,EAAamE,GACpBrC,EAAUR,EAAGY,EA/iBG,IA+iBiB,EAAG+B,GACpCG,EAAQ9E,EAAY4C,GACN,IAAVkC,IACFD,GAAMjE,EAAYgC,GAClBR,EAAUJ,EAAG6C,EAAIC,IAEnBhD,IACAc,EAAOf,EAAOC,GAGdU,EAAUR,EAAGY,EAAMgC,GACnBE,EAAQ5E,EAAY0C,GACN,IAAVkC,IACFhD,GAAQjB,EAAU+B,GAClBR,EAAUJ,EAAGF,EAAMgD,WAOhBC,EAAK/C,EAAE4B,UAGlBpB,EAAUR,EA1iBQ,IA0iBM2C,EAAM,EAY1BM,EAAa,CAACjD,EAAGkD,KAIrB,MAAMxC,EAAWwC,EAAKxD,SAChByD,EAAWD,EAAKvD,UAAUZ,YAC1BM,EAAY6D,EAAKvD,UAAUN,UAC3BH,EAAWgE,EAAKvD,UAAUT,MAChC,IAAIiC,EAAGa,EAEHoB,EADAxD,GAAY,EAUhB,IAHAI,EAAEyC,SAAW,EACbzC,EAAEqD,SAxlBoB,IA0lBjBlC,EAAI,EAAGA,EAAIjC,EAAOiC,IACQ,IAAzBT,EAAS,EAAJS,IACPnB,EAAEuC,OAAOvC,EAAEyC,UAAY7C,EAAWuB,EAClCnB,EAAEiC,MAAMd,GAAK,GAGbT,EAAS,EAAJS,EAAQ,GAAa,EAS9B,KAAOnB,EAAEyC,SAAW,GAClBW,EAAOpD,EAAEuC,OAAOvC,EAAEyC,UAAa7C,EAAW,IAAMA,EAAW,EAC3Dc,EAAY,EAAP0C,GAAqB,EAC1BpD,EAAEiC,MAAMmB,GAAQ,EAChBpD,EAAE0B,UAEErC,IACFW,EAAE2B,YAAcwB,EAAa,EAAPC,EAAW,IASrC,IALAF,EAAKtD,SAAWA,EAKXuB,EAAKnB,EAAEyC,UAAY,EAActB,GAAK,EAAGA,IAAOiB,EAAWpC,EAAGU,EAAMS,GAKzEiC,EAAOlE,EACP,GAGEiC,EAAInB,EAAEuC,KAAK,GACXvC,EAAEuC,KAAK,GAAiBvC,EAAEuC,KAAKvC,EAAEyC,YACjCL,EAAWpC,EAAGU,EAAM,GAGpBsB,EAAIhC,EAAEuC,KAAK,GAEXvC,EAAEuC,OAAOvC,EAAEqD,UAAYlC,EACvBnB,EAAEuC,OAAOvC,EAAEqD,UAAYrB,EAGvBtB,EAAY,EAAP0C,GAAqB1C,EAAS,EAAJS,GAAkBT,EAAS,EAAJsB,GACtDhC,EAAEiC,MAAMmB,IAASpD,EAAEiC,MAAMd,IAAMnB,EAAEiC,MAAMD,GAAKhC,EAAEiC,MAAMd,GAAKnB,EAAEiC,MAAMD,IAAM,EACvEtB,EAAS,EAAJS,EAAQ,GAAaT,EAAS,EAAJsB,EAAQ,GAAaoB,EAGpDpD,EAAEuC,KAAK,GAAiBa,IACxBhB,EAAWpC,EAAGU,EAAM,SAEbV,EAAEyC,UAAY,GAEvBzC,EAAEuC,OAAOvC,EAAEqD,UAAYrD,EAAEuC,KAAK,GA5cb,EAACvC,EAAGkD,KAIrB,MAAMxC,EAAkBwC,EAAKxD,SACvBE,EAAkBsD,EAAKtD,SACvBuD,EAAkBD,EAAKvD,UAAUZ,YACjCM,EAAkB6D,EAAKvD,UAAUN,UACjCyD,EAAkBI,EAAKvD,UAAUX,WACjCsE,EAAkBJ,EAAKvD,UAAUV,WACjCE,EAAkB+D,EAAKvD,UAAUR,WACvC,IAAIoE,EACApC,EAAGa,EACHd,EACAsC,EACAC,EACAC,EAAW,EAEf,IAAKxC,EAAO,EAAGA,GA1NO,GA0NaA,IACjClB,EAAEe,SAASG,GAAQ,EAQrB,IAFAR,EAA0B,EAArBV,EAAEuC,KAAKvC,EAAEqD,UAAgB,GAAa,EAEtCE,EAAIvD,EAAEqD,SAAW,EAAGE,EAtOH,IAsOoBA,IACxCpC,EAAInB,EAAEuC,KAAKgB,GACXrC,EAAOR,EAA+B,EAA1BA,EAAS,EAAJS,EAAQ,GAAiB,GAAa,EACnDD,EAAO/B,IACT+B,EAAO/B,EACPuE,KAEFhD,EAAS,EAAJS,EAAQ,GAAaD,EAGtBC,EAAIvB,IAERI,EAAEe,SAASG,KACXsC,EAAQ,EACJrC,GAAKmC,IACPE,EAAQV,EAAM3B,EAAImC,IAEpBG,EAAI/C,EAAS,EAAJS,GACTnB,EAAE0B,SAAW+B,GAAKvC,EAAOsC,GACrBnE,IACFW,EAAE2B,YAAc8B,GAAKN,EAAU,EAAJhC,EAAQ,GAAaqC,KAGpD,GAAiB,IAAbE,EAAJ,CAMA,EAAG,CAED,IADAxC,EAAO/B,EAAa,EACQ,IAArBa,EAAEe,SAASG,IAAeA,IACjClB,EAAEe,SAASG,KACXlB,EAAEe,SAASG,EAAO,IAAM,EACxBlB,EAAEe,SAAS5B,KAIXuE,GAAY,CACd,OAASA,EAAW,GAOpB,IAAKxC,EAAO/B,EAAqB,IAAT+B,EAAYA,IAElC,IADAC,EAAInB,EAAEe,SAASG,GACF,IAANC,GACLa,EAAIhC,EAAEuC,OAAOgB,GACTvB,EAAIpC,IACJc,EAAS,EAAJsB,EAAQ,KAAed,IAE9BlB,EAAE0B,UAAYR,EAAOR,EAAS,EAAJsB,EAAQ,IAActB,EAAS,EAAJsB,GACrDtB,EAAS,EAAJsB,EAAQ,GAAad,GAE5BC,IAjC0B,CAmC9B,EA4XAwC,CAAW3D,EAAGkD,GAGdpC,EAAUJ,EAAMd,EAAUI,EAAEe,SAAS,EAQjC6C,EAAY,CAAC5D,EAAGU,EAAMd,KAK1B,IAAIuB,EAEA0C,EADAC,GAAW,EAGXC,EAAUrD,EAAK,GAEfsD,EAAQ,EACRC,EAAY,EACZC,EAAY,EAQhB,IANgB,IAAZH,IACFE,EAAY,IACZC,EAAY,GAEdxD,EAAsB,GAAhBd,EAAW,GAAS,GAAa,MAElCuB,EAAI,EAAGA,GAAKvB,EAAUuB,IACzB0C,EAASE,EACTA,EAAUrD,EAAe,GAATS,EAAI,GAAS,KAEvB6C,EAAQC,GAAaJ,IAAWE,IAG3BC,EAAQE,EACjBlE,EAAEwB,QAAiB,EAATqC,IAAwBG,EAEd,IAAXH,GAELA,IAAWC,GAAW9D,EAAEwB,QAAiB,EAATqC,KACpC7D,EAAEwB,QAAQ2C,OAEDH,GAAS,GAClBhE,EAAEwB,QAAQ4C,MAGVpE,EAAEwB,QAAQ6C,MAGZL,EAAQ,EACRF,EAAUD,EAEM,IAAZE,GACFE,EAAY,IACZC,EAAY,GAEHL,IAAWE,GACpBE,EAAY,EACZC,EAAY,IAGZD,EAAY,EACZC,EAAY,GAEhB,EAQII,EAAY,CAACtE,EAAGU,EAAMd,KAK1B,IAAIuB,EAEA0C,EADAC,GAAW,EAGXC,EAAUrD,EAAK,GAEfsD,EAAQ,EACRC,EAAY,EACZC,EAAY,EAQhB,IALgB,IAAZH,IACFE,EAAY,IACZC,EAAY,GAGT/C,EAAI,EAAGA,GAAKvB,EAAUuB,IAIzB,GAHA0C,EAASE,EACTA,EAAUrD,EAAe,GAATS,EAAI,GAAS,OAEvB6C,EAAQC,GAAaJ,IAAWE,GAAtC,CAGO,GAAIC,EAAQE,EACjB,GAAK1D,EAAUR,EAAG6D,EAAQ7D,EAAEwB,eAA+B,KAAVwC,QAE7B,IAAXH,GACLA,IAAWC,IACbtD,EAAUR,EAAG6D,EAAQ7D,EAAEwB,SACvBwC,KAGFxD,EAAUR,EA1vBI,GA0vBQA,EAAEwB,SACxBpB,EAAUJ,EAAGgE,EAAQ,EAAG,IAEfA,GAAS,IAClBxD,EAAUR,EA3vBI,GA2vBUA,EAAEwB,SAC1BpB,EAAUJ,EAAGgE,EAAQ,EAAG,KAGxBxD,EAAUR,EA5vBI,GA4vBYA,EAAEwB,SAC5BpB,EAAUJ,EAAGgE,EAAQ,GAAI,IAG3BA,EAAQ,EACRF,EAAUD,EACM,IAAZE,GACFE,EAAY,IACZC,EAAY,GAEHL,IAAWE,GACpBE,EAAY,EACZC,EAAY,IAGZD,EAAY,EACZC,EAAY,EAdd,CAgBF,EAsHF,IAAIK,GAAmB,EAKvB,MAuBMC,EAAqB,CAACxE,EAAGnC,EAAK4G,EAAYC,KAM9CtE,EAAUJ,EAAG,GAAuB0E,EAAO,EAAI,GAAI,GACnD5C,EAAU9B,GACVD,EAAUC,EAAGyE,GACb1E,EAAUC,GAAIyE,GACVA,GACFzE,EAAEE,YAAYyE,IAAI3E,EAAE4E,OAAOC,SAAShH,EAAKA,EAAM4G,GAAazE,EAAEG,SAEhEH,EAAEG,SAAWsE,CAAU,EAoIzB,IAMIK,EAAQ,CACXC,SA/KmB/E,IAGbuE,IAnlBgB,MAErB,IAAIpD,EACAD,EACAnD,EACA6C,EACAd,EACJ,MAAMiB,EAAW,IAAIzC,MAAM2C,IAiB3B,IADAlD,EAAS,EACJ6C,EAAO,EAAGA,EAAOoE,GAAoBpE,IAExC,IADAhC,EAAYgC,GAAQ7C,EACfoD,EAAI,EAAGA,EAAK,GAAKnD,EAAY4C,GAAQO,IACxCzC,EAAaX,KAAY6C,EAY7B,IAJAlC,EAAaX,EAAS,GAAK6C,EAG3Bd,EAAO,EACFc,EAAO,EAAGA,EAAO,GAAIA,IAExB,IADA/B,EAAU+B,GAAQd,EACbqB,EAAI,EAAGA,EAAK,GAAKjD,EAAY0C,GAAQO,IACxC1C,EAAWqB,KAAUc,EAKzB,IADAd,IAAS,EACFc,EAxYe,GAwYGA,IAEvB,IADA/B,EAAU+B,GAAQd,GAAQ,EACrBqB,EAAI,EAAGA,EAAK,GAAMjD,EAAY0C,GAAQ,EAAKO,IAC9C1C,EAAW,IAAMqB,KAAUc,EAM/B,IAAKM,EAAO,EAAGA,GAxYO,GAwYaA,IACjCH,EAASG,GAAQ,EAInB,IADAC,EAAI,EACGA,GAAK,KACV9C,EAAiB,EAAJ8C,EAAQ,GAAa,EAClCA,IACAJ,EAAS,KAEX,KAAOI,GAAK,KACV9C,EAAiB,EAAJ8C,EAAQ,GAAa,EAClCA,IACAJ,EAAS,KAEX,KAAOI,GAAK,KACV9C,EAAiB,EAAJ8C,EAAQ,GAAa,EAClCA,IACAJ,EAAS,KAEX,KAAOI,GAAK,KACV9C,EAAiB,EAAJ8C,EAAQ,GAAa,EAClCA,IACAJ,EAAS,KASX,IAHAD,EAAUzC,EAAc4G,IAAelE,GAGlCI,EAAI,EAAGA,EAjbU,GAibKA,IACzB5C,EAAiB,EAAJ4C,EAAQ,GAAa,EAClC5C,EAAiB,EAAJ4C,GAAkBR,EAAWQ,EAAG,GAI/C7B,EAAgB,IAAIR,EAAeT,EAAcL,EAAaqD,IA1bxCA,IAYA,IA+atB9B,EAAgB,IAAIT,EAAeP,EAAcL,EAAa,EAxbxC,GASA,IAgbtBsB,EAAiB,IAAIV,EAAe,IAAIR,MAAM,GAAIH,EAAc,EAtb1C,GAiBJ,EAqaiF,EAofjG+G,GACAX,GAAmB,GAGrBvE,EAAEmF,OAAU,IAAI1F,EAASO,EAAEsB,UAAWhC,GACtCU,EAAEoF,OAAU,IAAI3F,EAASO,EAAEuB,UAAWhC,GACtCS,EAAEqF,QAAU,IAAI5F,EAASO,EAAEwB,QAAShC,GAEpCQ,EAAEO,OAAS,EACXP,EAAEM,SAAW,EAGbc,EAAWpB,EAAE,EAgKdsF,iBAPwBd,EAQxBe,gBA1HyB,CAACvF,EAAGnC,EAAK4G,EAAYC,KAM7C,IAAIc,EAAUC,EACVC,EAAc,EAGd1F,EAAE2F,MAAQ,GA1gCgB,IA6gCxB3F,EAAE4F,KAAKC,YACT7F,EAAE4F,KAAKC,UA3GY,CAAC7F,IAKxB,IACImB,EADA2E,EAAa,WAIjB,IAAK3E,EAAI,EAAGA,GAAK,GAAIA,IAAK2E,KAAgB,EACxC,GAAkB,EAAbA,GAAoD,IAAhC9F,EAAEsB,UAAc,EAAJH,GACnC,OAj7BwB,EAs7B5B,GAAoC,IAAhCnB,EAAEsB,UAAU,KAA0D,IAAjCtB,EAAEsB,UAAU,KAChB,IAAjCtB,EAAEsB,UAAU,IACd,OAv7B0B,EAy7B5B,IAAKH,EAAI,GAAIA,EA75BS,IA65BOA,IAC3B,GAAoC,IAAhCnB,EAAEsB,UAAc,EAAJH,GACd,OA37BwB,EAk8B5B,OAn8B4B,CAm8Bb,EA8EQ4E,CAAiB/F,IAItCiD,EAAWjD,EAAGA,EAAEmF,QAIhBlC,EAAWjD,EAAGA,EAAEoF,QAUhBM,EA1MkB,CAAC1F,IAErB,IAAI0F,EAgBJ,IAbA9B,EAAU5D,EAAGA,EAAEsB,UAAWtB,EAAEmF,OAAOvF,UACnCgE,EAAU5D,EAAGA,EAAEuB,UAAWvB,EAAEoF,OAAOxF,UAGnCqD,EAAWjD,EAAGA,EAAEqF,SASXK,EAAcM,GAAgBN,GAAe,GACS,IAArD1F,EAAEwB,QAAgC,EAAxBpD,EAASsH,GAAmB,GADSA,KAUrD,OAJA1F,EAAE0B,SAAW,GAAKgE,EAAc,GAAK,EAAI,EAAI,EAItCA,CAAW,EA8KFO,CAAcjG,GAG5BwF,EAAYxF,EAAE0B,QAAU,EAAI,IAAO,EACnC+D,EAAezF,EAAE2B,WAAa,EAAI,IAAO,EAMrC8D,GAAeD,IAAYA,EAAWC,IAI1CD,EAAWC,EAAchB,EAAa,EAGnCA,EAAa,GAAKe,IAAuB,IAAT3H,EASnC2G,EAAmBxE,EAAGnC,EAAK4G,EAAYC,GAjkCX,IAmkCnB1E,EAAEkG,UAA0BT,IAAgBD,GAErDpF,EAAUJ,EAAG,GAAuB0E,EAAO,EAAI,GAAI,GACnDhC,EAAe1C,EAAG3B,EAAcE,KAGhC6B,EAAUJ,EAAG,GAAoB0E,EAAO,EAAI,GAAI,GAvM7B,EAAC1E,EAAGmG,EAAQC,EAAQC,KAIzC,IAAIC,EASJ,IAHAlG,EAAUJ,EAAGmG,EAAS,IAAK,GAC3B/F,EAAUJ,EAAGoG,EAAS,EAAK,GAC3BhG,EAAUJ,EAAGqG,EAAU,EAAI,GACtBC,EAAO,EAAGA,EAAOD,EAASC,IAE7BlG,EAAUJ,EAAGA,EAAEwB,QAAyB,EAAjBpD,EAASkI,GAAY,GAAY,GAI1DhC,EAAUtE,EAAGA,EAAEsB,UAAW6E,EAAS,GAGnC7B,EAAUtE,EAAGA,EAAEuB,UAAW6E,EAAS,EAAE,EAkLnCG,CAAevG,EAAGA,EAAEmF,OAAOvF,SAAW,EAAGI,EAAEoF,OAAOxF,SAAW,EAAG8F,EAAc,GAC9EhD,EAAe1C,EAAGA,EAAEsB,UAAWtB,EAAEuB,YAMnCH,EAAWpB,GAEP0E,GACF5C,EAAU9B,EACZ,EA6CDwG,UApCmB,CAACxG,EAAGF,EAAM+C,KAK5B7C,EAAEE,YAAYF,EAAEgD,QAAUhD,EAAE4B,YAAc9B,EAC1CE,EAAEE,YAAYF,EAAEgD,QAAUhD,EAAE4B,YAAc9B,GAAQ,EAClDE,EAAEE,YAAYF,EAAEgD,QAAUhD,EAAE4B,YAAciB,EAC7B,IAAT/C,EAEFE,EAAEsB,UAAe,EAALuB,MAEZ7C,EAAE6B,UAEF/B,IAKAE,EAAEsB,UAAgD,GAArC5C,EAAamE,GAhlCN,IAglCyB,MAC7C7C,EAAEuB,UAAyB,EAAf1B,EAAOC,OAGbE,EAAE4B,WAAa5B,EAAEyG,SAc1BC,UAvIoB1G,IACnBI,EAAUJ,EAAG2G,EAAmB,GAChCnG,EAAUR,EAh8BQ,IAg8BM3B,GA/xBT,CAAC2B,IAEG,KAAfA,EAAEM,UACJP,EAAUC,EAAGA,EAAEO,QACfP,EAAEO,OAAS,EACXP,EAAEM,SAAW,GAEJN,EAAEM,UAAY,IACvBN,EAAEE,YAAYF,EAAEG,WAAwB,IAAXH,EAAEO,OAC/BP,EAAEO,SAAW,EACbP,EAAEM,UAAY,EAChB,EAqxBAsG,CAAS5G,EAAE,GAuLT6G,EAzBY,CAACC,EAAOjJ,EAAKC,EAAKiJ,KAChC,IAAIC,EAAc,MAARF,EACNG,EAAOH,IAAU,GAAM,MACvB3F,EAAI,EAER,KAAe,IAARrD,GAAW,CAIhBqD,EAAIrD,EAAM,IAAO,IAAOA,EACxBA,GAAOqD,EAEP,GACE6F,EAAMA,EAAKnJ,EAAIkJ,KAAS,EACxBE,EAAMA,EAAKD,EAAK,UACP7F,GAEX6F,GAAM,MACNC,GAAM,KACR,CAEA,OAAQD,EAAMC,GAAM,EAAO,EA8B7B,MAeMC,EAAW,IAAIC,YAfH,MAChB,IAAI1G,EAAG2G,EAAQ,GAEf,IAAK,IAAIjG,EAAI,EAAGA,EAAI,IAAKA,IAAK,CAC5BV,EAAIU,EACJ,IAAK,IAAIkB,EAAI,EAAGA,EAAI,EAAGA,IACrB5B,EAAU,EAAJA,EAAU,WAAcA,IAAM,EAAOA,IAAM,EAEnD2G,EAAMjG,GAAKV,CACb,CAEA,OAAO2G,CAAK,EAImBC,IAiBjC,IAAIC,EAdU,CAACC,EAAK1J,EAAKC,EAAKiJ,KAC5B,MAAMS,EAAIN,EACJO,EAAMV,EAAMjJ,EAElByJ,IAAQ,EAER,IAAK,IAAIG,EAAIX,EAAKW,EAAID,EAAKC,IACzBH,EAAOA,IAAQ,EAAKC,EAAmB,KAAhBD,EAAM1J,EAAI6J,KAGnC,OAAQH,CAAW,EAyBjBI,EAAW,CACb,EAAQ,kBACR,EAAQ,aACR,EAAQ,GACR,KAAQ,aACR,KAAQ,eACR,KAAQ,aACR,KAAQ,sBACR,KAAQ,eACR,KAAQ,wBAsBNC,EAAc,CAGhBC,WAAoB,EACpBC,gBAAoB,EACpBC,aAAoB,EACpBC,aAAoB,EACpBC,SAAoB,EACpBC,QAAoB,EACpBC,QAAoB,EAKpBC,KAAoB,EACpBC,aAAoB,EACpBC,YAAoB,EACpBC,SAAoB,EACpBC,gBAAoB,EACpBC,cAAoB,EACpBC,aAAoB,EACpBC,aAAoB,EAIpBC,iBAA0B,EAC1BC,aAA0B,EAC1BC,mBAA0B,EAC1BC,uBAA0B,EAG1BC,WAA0B,EAC1BC,eAA0B,EAC1BC,MAA0B,EAC1BC,QAA0B,EAC1BC,mBAA0B,EAG1BC,SAA0B,EAC1BC,OAA0B,EAE1BC,UAA0B,EAG1BC,WAA0B,GAuB5B,MAAM,SAAEzE,EAAQ,iBAAEO,EAAgB,gBAAEC,EAAe,UAAEiB,EAAS,UAAEE,GAAc5B,GAS5E+C,WAAY4B,EAAY,gBAAE3B,EAAiBE,aAAc0B,EAAgBzB,SAAU0B,EAAYzB,QAAS0B,EACxGxB,KAAMyB,EAAQxB,aAAcyB,EAAgBtB,eAAgBuB,EAAkBtB,aAAcuB,GAAgBrB,YAAasB,GACzHlB,sBAAuBmB,GAAuB,WAC9ClB,GAAU,eAAEC,GAAc,MAAEC,GAAK,QAAEC,GAASC,mBAAoBe,GAAoB,UACpFZ,GACAC,WAAYY,IACVxC,EA4BEyC,GAAY,IACZC,GAAgB,IAIhBC,GAAiB,GAQjBC,GAAgB,IAChBC,GAAgB,IAShBC,GAAM,CAAC9E,EAAM+E,KACjB/E,EAAKgF,IAAMjD,EAASgD,GACbA,GAGHrE,GAAQ7C,GACE,EAAN,GAAY,EAAM,EAAI,EAAI,GAG9BoH,GAAQhN,IACZ,IAAIC,EAAMD,EAAIE,OAAQ,OAASD,GAAO,GAAKD,EAAIC,GAAO,CAAG,EAQrDgN,GAAc9K,IAClB,IAAImB,EAAGa,EACH+I,EACAC,EAAQhL,EAAEiL,OAEd9J,EAAInB,EAAEkL,UACNH,EAAI5J,EACJ,GACEa,EAAIhC,EAAEmL,OAAOJ,GACb/K,EAAEmL,KAAKJ,GAAM/I,GAAKgJ,EAAQhJ,EAAIgJ,EAAQ,UAC7B7J,GACXA,EAAI6J,EAEJD,EAAI5J,EACJ,GACEa,EAAIhC,EAAEoL,OAAOL,GACb/K,EAAEoL,KAAKL,GAAM/I,GAAKgJ,EAAQhJ,EAAIgJ,EAAQ,UAI7B7J,EAAE,EAKf,IAIIkK,GAJY,CAACrL,EAAGoL,EAAME,KAAWF,GAAQpL,EAAEuL,WAAcD,GAAQtL,EAAEwL,UAavE,MAAMC,GAAiB7F,IACrB,MAAM5F,EAAI4F,EAAK8F,MAGf,IAAI5N,EAAMkC,EAAEG,QACRrC,EAAM8H,EAAK+F,YACb7N,EAAM8H,EAAK+F,WAED,IAAR7N,IAEJ8H,EAAKgG,OAAOjH,IAAI3E,EAAEE,YAAY2E,SAAS7E,EAAE6L,YAAa7L,EAAE6L,YAAc/N,GAAM8H,EAAKkG,UACjFlG,EAAKkG,UAAahO,EAClBkC,EAAE6L,aAAgB/N,EAClB8H,EAAKmG,WAAajO,EAClB8H,EAAK+F,WAAa7N,EAClBkC,EAAEG,SAAgBrC,EACA,IAAdkC,EAAEG,UACJH,EAAE6L,YAAc,GAClB,EAIIG,GAAmB,CAAChM,EAAG0E,KAC3Ba,EAAgBvF,EAAIA,EAAEiM,aAAe,EAAIjM,EAAEiM,aAAe,EAAIjM,EAAEkM,SAAWlM,EAAEiM,YAAavH,GAC1F1E,EAAEiM,YAAcjM,EAAEkM,SAClBT,GAAczL,EAAE4F,KAAK,EAIjBuG,GAAW,CAACnM,EAAGoM,KACnBpM,EAAEE,YAAYF,EAAEG,WAAaiM,CAAC,EAS1BC,GAAc,CAACrM,EAAGoM,KAItBpM,EAAEE,YAAYF,EAAEG,WAAciM,IAAM,EAAK,IACzCpM,EAAEE,YAAYF,EAAEG,WAAiB,IAAJiM,CAAQ,EAWjCE,GAAW,CAAC1G,EAAM/H,EAAK0O,EAAOC,KAElC,IAAI1O,EAAM8H,EAAK6G,SAGf,OADI3O,EAAM0O,IAAQ1O,EAAM0O,GACZ,IAAR1O,EAAoB,GAExB8H,EAAK6G,UAAY3O,EAGjBD,EAAI8G,IAAIiB,EAAK8G,MAAM7H,SAASe,EAAK+G,QAAS/G,EAAK+G,QAAU7O,GAAMyO,GACvC,IAApB3G,EAAK8F,MAAMkB,KACbhH,EAAKkB,MAAQD,EAAUjB,EAAKkB,MAAOjJ,EAAKC,EAAKyO,GAGlB,IAApB3G,EAAK8F,MAAMkB,OAClBhH,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAOjJ,EAAKC,EAAKyO,IAG7C3G,EAAK+G,SAAW7O,EAChB8H,EAAKiH,UAAY/O,EAEVA,EAAG,EAaNgP,GAAgB,CAAC9M,EAAG+M,KAExB,IAEIC,EACAlP,EAHAmP,EAAejN,EAAEkN,iBACjBC,EAAOnN,EAAEkM,SAGTkB,EAAWpN,EAAEqN,YACbC,EAAatN,EAAEsN,WACnB,MAAMC,EAASvN,EAAEkM,SAAYlM,EAAEiL,OAASX,GACpCtK,EAAEkM,UAAYlM,EAAEiL,OAASX,IAAiB,EAExCkD,EAAOxN,EAAE4E,OAET6I,EAAQzN,EAAE0N,OACVtC,EAAQpL,EAAEoL,KAMVuC,EAAS3N,EAAEkM,SAAW7B,GAC5B,IAAIuD,EAAaJ,EAAKL,EAAOC,EAAW,GACpCS,EAAaL,EAAKL,EAAOC,GAQzBpN,EAAEqN,aAAerN,EAAE8N,aACrBb,IAAiB,GAKfK,EAAatN,EAAE+N,YAAaT,EAAatN,EAAE+N,WAI/C,GAaE,GAXAf,EAAQD,EAWJS,EAAKR,EAAQI,KAAkBS,GAC/BL,EAAKR,EAAQI,EAAW,KAAOQ,GAC/BJ,EAAKR,KAA0BQ,EAAKL,IACpCK,IAAOR,KAAwBQ,EAAKL,EAAO,GAH/C,CAaAA,GAAQ,EACRH,IAMA,UAESQ,IAAOL,KAAUK,IAAOR,IAAUQ,IAAOL,KAAUK,IAAOR,IAC1DQ,IAAOL,KAAUK,IAAOR,IAAUQ,IAAOL,KAAUK,IAAOR,IAC1DQ,IAAOL,KAAUK,IAAOR,IAAUQ,IAAOL,KAAUK,IAAOR,IAC1DQ,IAAOL,KAAUK,IAAOR,IAAUQ,IAAOL,KAAUK,IAAOR,IAC1DG,EAAOQ,GAOhB,GAHA7P,EAAMuM,IAAasD,EAASR,GAC5BA,EAAOQ,EAAStD,GAEZvM,EAAMsP,EAAU,CAGlB,GAFApN,EAAEgO,YAAcjB,EAChBK,EAAWtP,EACPA,GAAOwP,EACT,MAEFM,EAAaJ,EAAKL,EAAOC,EAAW,GACpCS,EAAaL,EAAKL,EAAOC,EAC3B,CApCA,SAqCQL,EAAY3B,EAAK2B,EAAYU,IAAUF,GAA4B,KAAjBN,GAE5D,OAAIG,GAAYpN,EAAE+N,UACTX,EAEFpN,EAAE+N,SAAS,EAcdE,GAAejO,IAEnB,MAAMkO,EAAUlO,EAAEiL,OAClB,IAAI9J,EAAGgN,EAAMC,EAIb,EAAG,CAkCD,GAjCAD,EAAOnO,EAAEqO,YAAcrO,EAAE+N,UAAY/N,EAAEkM,SAoBnClM,EAAEkM,UAAYgC,GAAWA,EAAU5D,MAErCtK,EAAE4E,OAAOD,IAAI3E,EAAE4E,OAAOC,SAASqJ,EAASA,EAAUA,EAAUC,GAAO,GACnEnO,EAAEgO,aAAeE,EACjBlO,EAAEkM,UAAYgC,EAEdlO,EAAEiM,aAAeiC,EACblO,EAAEsO,OAAStO,EAAEkM,WACflM,EAAEsO,OAAStO,EAAEkM,UAEfpB,GAAW9K,GACXmO,GAAQD,GAEc,IAApBlO,EAAE4F,KAAK6G,SACT,MAmBF,GAJAtL,EAAImL,GAAStM,EAAE4F,KAAM5F,EAAE4E,OAAQ5E,EAAEkM,SAAWlM,EAAE+N,UAAWI,GACzDnO,EAAE+N,WAAa5M,EAGXnB,EAAE+N,UAAY/N,EAAEsO,QAzVN,EAkWZ,IARAF,EAAMpO,EAAEkM,SAAWlM,EAAEsO,OACrBtO,EAAEuO,MAAQvO,EAAE4E,OAAOwJ,GAGnBpO,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAOwJ,EAAM,IAInCpO,EAAEsO,SAEPtO,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAOwJ,EApW1B,EAoW4C,IAEtDpO,EAAEoL,KAAKgD,EAAMpO,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OAClCvO,EAAEmL,KAAKnL,EAAEuO,OAASH,EAClBA,IACApO,EAAEsO,WACEtO,EAAE+N,UAAY/N,EAAEsO,OA1WV,MAmXhB,OAAStO,EAAE+N,UAAYzD,IAAqC,IAApBtK,EAAE4F,KAAK6G,SAAe,EAuD1D+B,GAAiB,CAACxO,EAAGyO,KAMzB,IAMI3Q,EAAK4Q,EAAMC,EANXC,EAAY5O,EAAE6O,iBAAmB,EAAI7O,EAAEiL,OAASjL,EAAEiL,OAASjL,EAAE6O,iBAAmB,EAM/DnK,EAAO,EACxBoK,EAAO9O,EAAE4F,KAAK6G,SAClB,EAAG,CAOD,GAFA3O,EAAM,MACN6Q,EAAQ3O,EAAEM,SAAW,IAAO,EACxBN,EAAE4F,KAAK+F,UAAYgD,EACrB,MAiBF,GAdAA,EAAO3O,EAAE4F,KAAK+F,UAAYgD,EAC1BD,EAAO1O,EAAEkM,SAAWlM,EAAEiM,YAClBnO,EAAM4Q,EAAO1O,EAAE4F,KAAK6G,WACtB3O,EAAM4Q,EAAO1O,EAAE4F,KAAK6G,UAElB3O,EAAM6Q,IACR7Q,EAAM6Q,GAQJ7Q,EAAM8Q,IAAuB,IAAR9Q,GAAa2Q,IAAU9E,GAC5B8E,IAAUhF,GACV3L,IAAQ4Q,EAAO1O,EAAE4F,KAAK6G,UACxC,MAMF/H,EAAO+J,IAAU9E,GAAc7L,IAAQ4Q,EAAO1O,EAAE4F,KAAK6G,SAAW,EAAI,EACpEnH,EAAiBtF,EAAG,EAAG,EAAG0E,GAG1B1E,EAAEE,YAAYF,EAAEG,QAAU,GAAKrC,EAC/BkC,EAAEE,YAAYF,EAAEG,QAAU,GAAKrC,GAAO,EACtCkC,EAAEE,YAAYF,EAAEG,QAAU,IAAMrC,EAChCkC,EAAEE,YAAYF,EAAEG,QAAU,IAAMrC,GAAO,EAGvC2N,GAAczL,EAAE4F,MASZ8I,IACEA,EAAO5Q,IACT4Q,EAAO5Q,GAGTkC,EAAE4F,KAAKgG,OAAOjH,IAAI3E,EAAE4E,OAAOC,SAAS7E,EAAEiM,YAAajM,EAAEiM,YAAcyC,GAAO1O,EAAE4F,KAAKkG,UACjF9L,EAAE4F,KAAKkG,UAAY4C,EACnB1O,EAAE4F,KAAK+F,WAAa+C,EACpB1O,EAAE4F,KAAKmG,WAAa2C,EACpB1O,EAAEiM,aAAeyC,EACjB5Q,GAAO4Q,GAML5Q,IACFwO,GAAStM,EAAE4F,KAAM5F,EAAE4F,KAAKgG,OAAQ5L,EAAE4F,KAAKkG,SAAUhO,GACjDkC,EAAE4F,KAAKkG,UAAYhO,EACnBkC,EAAE4F,KAAK+F,WAAa7N,EACpBkC,EAAE4F,KAAKmG,WAAajO,EAExB,OAAkB,IAAT4G,GA6CT,OArCAoK,GAAQ9O,EAAE4F,KAAK6G,SACXqC,IAIEA,GAAQ9O,EAAEiL,QACZjL,EAAE6B,QAAU,EAEZ7B,EAAE4E,OAAOD,IAAI3E,EAAE4F,KAAK8G,MAAM7H,SAAS7E,EAAE4F,KAAK+G,QAAU3M,EAAEiL,OAAQjL,EAAE4F,KAAK+G,SAAU,GAC/E3M,EAAEkM,SAAWlM,EAAEiL,OACfjL,EAAEsO,OAAStO,EAAEkM,WAGTlM,EAAEqO,YAAcrO,EAAEkM,UAAY4C,IAEhC9O,EAAEkM,UAAYlM,EAAEiL,OAEhBjL,EAAE4E,OAAOD,IAAI3E,EAAE4E,OAAOC,SAAS7E,EAAEiL,OAAQjL,EAAEiL,OAASjL,EAAEkM,UAAW,GAC7DlM,EAAE6B,QAAU,GACd7B,EAAE6B,UAEA7B,EAAEsO,OAAStO,EAAEkM,WACflM,EAAEsO,OAAStO,EAAEkM,WAIjBlM,EAAE4E,OAAOD,IAAI3E,EAAE4F,KAAK8G,MAAM7H,SAAS7E,EAAE4F,KAAK+G,QAAUmC,EAAM9O,EAAE4F,KAAK+G,SAAU3M,EAAEkM,UAC7ElM,EAAEkM,UAAY4C,EACd9O,EAAEsO,QAAUQ,EAAO9O,EAAEiL,OAASjL,EAAEsO,OAAStO,EAAEiL,OAASjL,EAAEsO,OAASQ,GAEjE9O,EAAEiM,YAAcjM,EAAEkM,UAEhBlM,EAAE+O,WAAa/O,EAAEkM,WACnBlM,EAAE+O,WAAa/O,EAAEkM,UAIfxH,EA5hBoB,EAiiBpB+J,IAAUhF,GAAgBgF,IAAU9E,GAClB,IAApB3J,EAAE4F,KAAK6G,UAAkBzM,EAAEkM,WAAalM,EAAEiM,YApiBpB,GAyiBxB0C,EAAO3O,EAAEqO,YAAcrO,EAAEkM,SACrBlM,EAAE4F,KAAK6G,SAAWkC,GAAQ3O,EAAEiM,aAAejM,EAAEiL,SAE/CjL,EAAEiM,aAAejM,EAAEiL,OACnBjL,EAAEkM,UAAYlM,EAAEiL,OAEhBjL,EAAE4E,OAAOD,IAAI3E,EAAE4E,OAAOC,SAAS7E,EAAEiL,OAAQjL,EAAEiL,OAASjL,EAAEkM,UAAW,GAC7DlM,EAAE6B,QAAU,GACd7B,EAAE6B,UAEJ8M,GAAQ3O,EAAEiL,OACNjL,EAAEsO,OAAStO,EAAEkM,WACflM,EAAEsO,OAAStO,EAAEkM,WAGbyC,EAAO3O,EAAE4F,KAAK6G,WAChBkC,EAAO3O,EAAE4F,KAAK6G,UAEZkC,IACFrC,GAAStM,EAAE4F,KAAM5F,EAAE4E,OAAQ5E,EAAEkM,SAAUyC,GACvC3O,EAAEkM,UAAYyC,EACd3O,EAAEsO,QAAUK,EAAO3O,EAAEiL,OAASjL,EAAEsO,OAAStO,EAAEiL,OAASjL,EAAEsO,OAASK,GAE7D3O,EAAE+O,WAAa/O,EAAEkM,WACnBlM,EAAE+O,WAAa/O,EAAEkM,UAQnByC,EAAQ3O,EAAEM,SAAW,IAAO,EAE5BqO,EAAO3O,EAAE6O,iBAAmBF,EAAO,MAAwB,MAAwB3O,EAAE6O,iBAAmBF,EACxGC,EAAYD,EAAO3O,EAAEiL,OAASjL,EAAEiL,OAAS0D,EACzCD,EAAO1O,EAAEkM,SAAWlM,EAAEiM,aAClByC,GAAQE,IACPF,GAAQD,IAAU9E,IAAe8E,IAAUhF,GACzB,IAApBzJ,EAAE4F,KAAK6G,UAAkBiC,GAAQC,KAClC7Q,EAAM4Q,EAAOC,EAAOA,EAAOD,EAC3BhK,EAAO+J,IAAU9E,GAAkC,IAApB3J,EAAE4F,KAAK6G,UACjC3O,IAAQ4Q,EAAO,EAAI,EACxBpJ,EAAiBtF,EAAGA,EAAEiM,YAAanO,EAAK4G,GACxC1E,EAAEiM,aAAenO,EACjB2N,GAAczL,EAAE4F,OAIXlB,EAzlBiB,EAFA,EA2lBsB,EAW1CsK,GAAe,CAAChP,EAAGyO,KAEvB,IAAIQ,EACAC,EAEJ,OAAS,CAMP,GAAIlP,EAAE+N,UAAYzD,GAAe,CAE/B,GADA2D,GAAYjO,GACRA,EAAE+N,UAAYzD,IAAiBmE,IAAUhF,EAC3C,OApnBkB,EAsnBpB,GAAoB,IAAhBzJ,EAAE+N,UACJ,KAEJ,CAyBA,GApBAkB,EAAY,EACRjP,EAAE+N,WAhpBQ,IAkpBZ/N,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SAlpB1B,EAkpBiD,IAC7D+C,EAAYjP,EAAEoL,KAAKpL,EAAEkM,SAAWlM,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OACrDvO,EAAEmL,KAAKnL,EAAEuO,OAASvO,EAAEkM,UAOJ,IAAd+C,GAA4BjP,EAAEkM,SAAW+C,GAAejP,EAAEiL,OAASX,KAKrEtK,EAAEmP,aAAerC,GAAc9M,EAAGiP,IAGhCjP,EAAEmP,cAnqBQ,EA+qBZ,GAPAD,EAAS1I,EAAUxG,EAAGA,EAAEkM,SAAWlM,EAAEgO,YAAahO,EAAEmP,aAxqBxC,GA0qBZnP,EAAE+N,WAAa/N,EAAEmP,aAKbnP,EAAEmP,cAAgBnP,EAAEoP,gBAAuCpP,EAAE+N,WA/qBrD,EA+qB6E,CACvF/N,EAAEmP,eACF,GACEnP,EAAEkM,WAEFlM,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SAprB9B,EAorBqD,IAC7D+C,EAAYjP,EAAEoL,KAAKpL,EAAEkM,SAAWlM,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OACrDvO,EAAEmL,KAAKnL,EAAEuO,OAASvO,EAAEkM,eAKQ,KAAnBlM,EAAEmP,cACbnP,EAAEkM,UACJ,MAEElM,EAAEkM,UAAYlM,EAAEmP,aAChBnP,EAAEmP,aAAe,EACjBnP,EAAEuO,MAAQvO,EAAE4E,OAAO5E,EAAEkM,UAErBlM,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SAAW,SAanDgD,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,WAEpClM,EAAE+N,YACF/N,EAAEkM,WAEJ,GAAIgD,IAEFlD,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WACT,OAxsBkB,CA4sBxB,CAEA,OADA3L,EAAEsO,OAAWtO,EAAEkM,SAAW,EAAmBlM,EAAEkM,SAAWmD,EACtDZ,IAAU9E,GAEZqC,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,UA/sBW,EACA,GAotBpB3L,EAAE4B,WAEJoK,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WA1tBW,EACA,CA8tBJ,EAQhB2D,GAAe,CAACtP,EAAGyO,KAEvB,IAAIQ,EACAC,EAEAK,EAGJ,OAAS,CAMP,GAAIvP,EAAE+N,UAAYzD,GAAe,CAE/B,GADA2D,GAAYjO,GACRA,EAAE+N,UAAYzD,IAAiBmE,IAAUhF,EAC3C,OAxvBkB,EA0vBpB,GAAoB,IAAhBzJ,EAAE+N,UAAmB,KAC3B,CAyCA,GApCAkB,EAAY,EACRjP,EAAE+N,WAlxBQ,IAoxBZ/N,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SApxB1B,EAoxBiD,IAC7D+C,EAAYjP,EAAEoL,KAAKpL,EAAEkM,SAAWlM,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OACrDvO,EAAEmL,KAAKnL,EAAEuO,OAASvO,EAAEkM,UAMtBlM,EAAEqN,YAAcrN,EAAEmP,aAClBnP,EAAEwP,WAAaxP,EAAEgO,YACjBhO,EAAEmP,aAAeE,EAEC,IAAdJ,GAA0BjP,EAAEqN,YAAcrN,EAAEoP,gBAC5CpP,EAAEkM,SAAW+C,GAAcjP,EAAEiL,OAASX,KAKxCtK,EAAEmP,aAAerC,GAAc9M,EAAGiP,GAG9BjP,EAAEmP,cAAgB,IAClBnP,EAAEkG,WAAa8C,IA1yBP,IA0yBsBhJ,EAAEmP,cAA8BnP,EAAEkM,SAAWlM,EAAEgO,YAAc,QAK7FhO,EAAEmP,aAAeE,IAMjBrP,EAAEqN,aArzBQ,GAqzBoBrN,EAAEmP,cAAgBnP,EAAEqN,YAAa,CACjEkC,EAAavP,EAAEkM,SAAWlM,EAAE+N,UAtzBhB,EA6zBZmB,EAAS1I,EAAUxG,EAAGA,EAAEkM,SAAW,EAAIlM,EAAEwP,WAAYxP,EAAEqN,YA7zB3C,GAm0BZrN,EAAE+N,WAAa/N,EAAEqN,YAAc,EAC/BrN,EAAEqN,aAAe,EACjB,KACQrN,EAAEkM,UAAYqD,IAElBvP,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAO5E,EAAEkM,SAx0B9B,EAw0BqD,IAC7D+C,EAAYjP,EAAEoL,KAAKpL,EAAEkM,SAAWlM,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OACrDvO,EAAEmL,KAAKnL,EAAEuO,OAASvO,EAAEkM,gBAGK,KAAlBlM,EAAEqN,aAKb,GAJArN,EAAEyP,gBAAkB,EACpBzP,EAAEmP,aAAeE,EACjBrP,EAAEkM,WAEEgD,IAEFlD,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WACT,OAr0BgB,CA00BtB,MAAO,GAAI3L,EAAEyP,iBAgBX,GATAP,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,SAAW,IAE3CgD,GAEFlD,GAAiBhM,GAAG,GAGtBA,EAAEkM,WACFlM,EAAE+N,YACuB,IAArB/N,EAAE4F,KAAK+F,UACT,OA31BkB,OAi2BpB3L,EAAEyP,gBAAkB,EACpBzP,EAAEkM,WACFlM,EAAE+N,WAEN,CAUA,OARI/N,EAAEyP,kBAGJP,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,SAAW,IAE/ClM,EAAEyP,gBAAkB,GAEtBzP,EAAEsO,OAAStO,EAAEkM,SAAWmD,EAAgBrP,EAAEkM,SAAWmD,EACjDZ,IAAU9E,GAEZqC,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,UAh3BW,EACA,GAq3BpB3L,EAAE4B,WAEJoK,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WA33BW,EACA,CAg4BJ,EAmKtB,SAAS+D,GAAOC,EAAaC,EAAUC,EAAaC,EAAWC,GAE7D3Q,KAAKuQ,YAAcA,EACnBvQ,KAAKwQ,SAAWA,EAChBxQ,KAAKyQ,YAAcA,EACnBzQ,KAAK0Q,UAAYA,EACjB1Q,KAAK2Q,KAAOA,CACd,CAEA,MAAMC,GAAsB,CAE1B,IAAIN,GAAO,EAAG,EAAG,EAAG,EAAGlB,IACvB,IAAIkB,GAAO,EAAG,EAAG,EAAG,EAAGV,IACvB,IAAIU,GAAO,EAAG,EAAG,GAAI,EAAGV,IACxB,IAAIU,GAAO,EAAG,EAAG,GAAI,GAAIV,IAEzB,IAAIU,GAAO,EAAG,EAAG,GAAI,GAAIJ,IACzB,IAAII,GAAO,EAAG,GAAI,GAAI,GAAIJ,IAC1B,IAAII,GAAO,EAAG,GAAI,IAAK,IAAKJ,IAC5B,IAAII,GAAO,EAAG,GAAI,IAAK,IAAKJ,IAC5B,IAAII,GAAO,GAAI,IAAK,IAAK,KAAMJ,IAC/B,IAAII,GAAO,GAAI,IAAK,IAAK,KAAMJ,KA+BjC,SAASW,KACP7Q,KAAKwG,KAAO,KACZxG,KAAK8Q,OAAS,EACd9Q,KAAKc,YAAc,KACnBd,KAAKyP,iBAAmB,EACxBzP,KAAKyM,YAAc,EACnBzM,KAAKe,QAAU,EACff,KAAKwN,KAAO,EACZxN,KAAK+Q,OAAS,KACd/Q,KAAKgR,QAAU,EACfhR,KAAKiR,OAASjG,GACdhL,KAAKkR,YAAc,EAEnBlR,KAAK6L,OAAS,EACd7L,KAAKmR,OAAS,EACdnR,KAAKsO,OAAS,EAEdtO,KAAKwF,OAAS,KAQdxF,KAAKiP,YAAc,EAKnBjP,KAAKgM,KAAO,KAMZhM,KAAK+L,KAAO,KAEZ/L,KAAKmP,MAAQ,EACbnP,KAAK8L,UAAY,EACjB9L,KAAKoR,UAAY,EACjBpR,KAAKoM,UAAY,EAEjBpM,KAAKmM,WAAa,EAOlBnM,KAAK6M,YAAc,EAKnB7M,KAAK+P,aAAe,EACpB/P,KAAKoQ,WAAa,EAClBpQ,KAAKqQ,gBAAkB,EACvBrQ,KAAK8M,SAAW,EAChB9M,KAAK4O,YAAc,EACnB5O,KAAK2O,UAAY,EAEjB3O,KAAKiO,YAAc,EAKnBjO,KAAK8N,iBAAmB,EAMxB9N,KAAKgQ,eAAiB,EAYtBhQ,KAAKuG,MAAQ,EACbvG,KAAK8G,SAAW,EAEhB9G,KAAK0O,WAAa,EAGlB1O,KAAKkO,WAAa,EAYlBlO,KAAKkC,UAAa,IAAImP,YAAYC,MAClCtR,KAAKmC,UAAa,IAAIkP,YAAY,KAClCrR,KAAKoC,QAAa,IAAIiP,YAAY,IAClC5F,GAAKzL,KAAKkC,WACVuJ,GAAKzL,KAAKmC,WACVsJ,GAAKzL,KAAKoC,SAEVpC,KAAK+F,OAAW,KAChB/F,KAAKgG,OAAW,KAChBhG,KAAKiG,QAAW,KAGhBjG,KAAK2B,SAAW,IAAI0P,YAAYE,IAIhCvR,KAAKmD,KAAO,IAAIkO,YAAY,KAC5B5F,GAAKzL,KAAKmD,MAEVnD,KAAKqD,SAAW,EAChBrD,KAAKiE,SAAW,EAKhBjE,KAAK6C,MAAQ,IAAIwO,YAAY,KAC7B5F,GAAKzL,KAAK6C,OAIV7C,KAAK4D,QAAU,EAEf5D,KAAKwR,YAAc,EAoBnBxR,KAAKwC,SAAW,EAChBxC,KAAKqH,QAAU,EAEfrH,KAAKsC,QAAU,EACftC,KAAKuC,WAAa,EAClBvC,KAAKyC,QAAU,EACfzC,KAAKkP,OAAS,EAGdlP,KAAKmB,OAAS,EAIdnB,KAAKkB,SAAW,CAalB,CAMA,MAAMuQ,GAAqBjL,IAEzB,IAAKA,EACH,OAAO,EAET,MAAM5F,EAAI4F,EAAK8F,MACf,OAAK1L,GAAKA,EAAE4F,OAASA,GAAS5F,EAAEkQ,SAAW3F,IAlyCtB,KAoyCSvK,EAAEkQ,QAlyCX,KAoyCSlQ,EAAEkQ,QAnyCX,KAoyCSlQ,EAAEkQ,QAnyCX,KAoyCSlQ,EAAEkQ,QAnyCZ,MAoyCUlQ,EAAEkQ,QACFlQ,EAAEkQ,SAAW1F,IACbxK,EAAEkQ,SAAWzF,GAClC,EAEF,CAAC,EAIJqG,GAAoBlL,IAExB,GAAIiL,GAAkBjL,GACpB,OAAO8E,GAAI9E,EAAMmE,GAGnBnE,EAAKiH,SAAWjH,EAAKmG,UAAY,EACjCnG,EAAKC,UAAY0D,GAEjB,MAAMvJ,EAAI4F,EAAK8F,MAmBf,OAlBA1L,EAAEG,QAAU,EACZH,EAAE6L,YAAc,EAEZ7L,EAAE4M,KAAO,IACX5M,EAAE4M,MAAQ5M,EAAE4M,MAGd5M,EAAEkQ,OAEW,IAAXlQ,EAAE4M,KAr0CiB,GAu0CnB5M,EAAE4M,KAAOrC,GAAaC,GACxB5E,EAAKkB,MAAoB,IAAX9G,EAAE4M,KACd,EAEA,EACF5M,EAAEsQ,YAAc,EAChBvL,EAAS/E,GACF6J,CAAM,EAITkH,GAAgBnL,IAEpB,MAAMoL,EAAMF,GAAiBlL,GA3Qf,IAAC5F,EA+Qf,OAHIgR,IAAQnH,KA5QG7J,EA6QL4F,EAAK8F,OA3Qb2C,YAAc,EAAIrO,EAAEiL,OAGtBJ,GAAK7K,EAAEmL,MAIPnL,EAAEoP,eAAiBY,GAAoBhQ,EAAE2F,OAAOiK,SAChD5P,EAAE8N,WAAakC,GAAoBhQ,EAAE2F,OAAOgK,YAC5C3P,EAAEsN,WAAa0C,GAAoBhQ,EAAE2F,OAAOkK,YAC5C7P,EAAEkN,iBAAmB8C,GAAoBhQ,EAAE2F,OAAOmK,UAElD9P,EAAEkM,SAAW,EACblM,EAAEiM,YAAc,EAChBjM,EAAE+N,UAAY,EACd/N,EAAEsO,OAAS,EACXtO,EAAEmP,aAAenP,EAAEqN,YAAcgC,EACjCrP,EAAEyP,gBAAkB,EACpBzP,EAAEuO,MAAQ,GA2PHyC,CAAG,EAcNC,GAAe,CAACrL,EAAMD,EAAO0K,EAAQa,EAAYC,EAAUjL,KAE/D,IAAKN,EACH,OAAOmE,EAET,IAAI6C,EAAO,EAiBX,GAfIjH,IAAUuE,KACZvE,EAAQ,GAGNuL,EAAa,GACftE,EAAO,EACPsE,GAAcA,GAGPA,EAAa,KACpBtE,EAAO,EACPsE,GAAc,IAIZC,EAAW,GAAKA,EA15CA,GA05C4Bd,IAAWjG,IACzD8G,EAAa,GAAKA,EAAa,IAAMvL,EAAQ,GAAKA,EAAQ,GAC1DO,EAAW,GAAKA,EAAWiD,IAA2B,IAAf+H,GAA6B,IAATtE,EAC3D,OAAOlC,GAAI9E,EAAMmE,GAIA,IAAfmH,IACFA,EAAa,GAIf,MAAMlR,EAAI,IAAIiQ,GAmFd,OAjFArK,EAAK8F,MAAQ1L,EACbA,EAAE4F,KAAOA,EACT5F,EAAEkQ,OAAS3F,GAEXvK,EAAE4M,KAAOA,EACT5M,EAAEmQ,OAAS,KACXnQ,EAAEuQ,OAASW,EACXlR,EAAEiL,OAAS,GAAKjL,EAAEuQ,OAClBvQ,EAAE0N,OAAS1N,EAAEiL,OAAS,EAEtBjL,EAAEwQ,UAAYW,EAAW,EACzBnR,EAAEkL,UAAY,GAAKlL,EAAEwQ,UACrBxQ,EAAEwL,UAAYxL,EAAEkL,UAAY,EAC5BlL,EAAEuL,eAAiBvL,EAAEwQ,UA/5CL,EA+5C6B,GA/5C7B,GAi6ChBxQ,EAAE4E,OAAS,IAAI3G,WAAsB,EAAX+B,EAAEiL,QAC5BjL,EAAEmL,KAAO,IAAIsF,YAAYzQ,EAAEkL,WAC3BlL,EAAEoL,KAAO,IAAIqF,YAAYzQ,EAAEiL,QAK3BjL,EAAE4Q,YAAc,GAAMO,EAAW,EAyCjCnR,EAAE6O,iBAAmC,EAAhB7O,EAAE4Q,YACvB5Q,EAAEE,YAAc,IAAIjC,WAAW+B,EAAE6O,kBAIjC7O,EAAEgD,QAAUhD,EAAE4Q,YAGd5Q,EAAEyG,QAAgC,GAArBzG,EAAE4Q,YAAc,GAM7B5Q,EAAE2F,MAAQA,EACV3F,EAAEkG,SAAWA,EACblG,EAAEqQ,OAASA,EAEJU,GAAanL,EAAK,EA2c3B,IAoBIwL,GAAc,CACjBC,YA7dmB,CAACzL,EAAMD,IAElBsL,GAAarL,EAAMD,EAAOyE,GA5/Cf,GAEE,EA0/CuDD,IA4d5E8G,aArBoBA,GAsBpBF,aArBoBA,GAsBpBD,iBArBwBA,GAsBxBQ,iBAnmBwB,CAAC1L,EAAMuF,IAE1B0F,GAAkBjL,IAA6B,IAApBA,EAAK8F,MAAMkB,KACjC7C,GAETnE,EAAK8F,MAAMyE,OAAShF,EACbtB,GA8lBR0H,QA3diB,CAAC3L,EAAM6I,KAEvB,GAAIoC,GAAkBjL,IAAS6I,EAAQ7E,GAAa6E,EAAQ,EAC1D,OAAO7I,EAAO8E,GAAI9E,EAAMmE,GAAoBA,EAG9C,MAAM/J,EAAI4F,EAAK8F,MAEf,IAAK9F,EAAKgG,QACa,IAAlBhG,EAAK6G,WAAmB7G,EAAK8G,OAC7B1M,EAAEkQ,SAAWzF,IAAgBgE,IAAU9E,EAC1C,OAAOe,GAAI9E,EAA0B,IAAnBA,EAAK+F,UAAmB1B,GAAgBF,GAG5D,MAAMyH,EAAYxR,EAAEsQ,WAIpB,GAHAtQ,EAAEsQ,WAAa7B,EAGG,IAAdzO,EAAEG,SAEJ,GADAsL,GAAc7F,GACS,IAAnBA,EAAK+F,UAQP,OADA3L,EAAEsQ,YAAc,EACTzG,OAOJ,GAAsB,IAAlBjE,EAAK6G,UAAkBnG,GAAKmI,IAAUnI,GAAKkL,IACpD/C,IAAU9E,EACV,OAAOe,GAAI9E,EAAMqE,IAInB,GAAIjK,EAAEkQ,SAAWzF,IAAkC,IAAlB7E,EAAK6G,SACpC,OAAO/B,GAAI9E,EAAMqE,IAOnB,GAHIjK,EAAEkQ,SAAW3F,IAAyB,IAAXvK,EAAE4M,OAC/B5M,EAAEkQ,OAAS1F,IAETxK,EAAEkQ,SAAW3F,GAAY,CAE3B,IAAIkH,EAAUrH,IAAiBpK,EAAEuQ,OAAS,GAAM,IAAO,EACnDmB,GAAe,EA2BnB,GAxBEA,EADE1R,EAAEkG,UAAY+C,IAAkBjJ,EAAE2F,MAAQ,EAC9B,EACL3F,EAAE2F,MAAQ,EACL,EACO,IAAZ3F,EAAE2F,MACG,EAEA,EAEhB8L,GAAWC,GAAe,EACP,IAAf1R,EAAEkM,WAAkBuF,GAziDR,IA0iDhBA,GAAU,GAAMA,EAAS,GAEzBpF,GAAYrM,EAAGyR,GAGI,IAAfzR,EAAEkM,WACJG,GAAYrM,EAAG4F,EAAKkB,QAAU,IAC9BuF,GAAYrM,EAAgB,MAAb4F,EAAKkB,QAEtBlB,EAAKkB,MAAQ,EACb9G,EAAEkQ,OAAS1F,GAGXiB,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,CAEX,CAEA,GA1jDqB,KA0jDjB7J,EAAEkQ,OAMJ,GAJAtK,EAAKkB,MAAQ,EACbqF,GAASnM,EAAG,IACZmM,GAASnM,EAAG,KACZmM,GAASnM,EAAG,GACPA,EAAEmQ,OAoBLhE,GAASnM,GAAIA,EAAEmQ,OAAOwB,KAAO,EAAI,IACpB3R,EAAEmQ,OAAOyB,KAAO,EAAI,IACnB5R,EAAEmQ,OAAOrN,MAAY,EAAJ,IACjB9C,EAAEmQ,OAAO0B,KAAW,EAAJ,IAChB7R,EAAEmQ,OAAO2B,QAAc,GAAJ,IAEjC3F,GAASnM,EAAmB,IAAhBA,EAAEmQ,OAAO4B,MACrB5F,GAASnM,EAAIA,EAAEmQ,OAAO4B,MAAQ,EAAK,KACnC5F,GAASnM,EAAIA,EAAEmQ,OAAO4B,MAAQ,GAAM,KACpC5F,GAASnM,EAAIA,EAAEmQ,OAAO4B,MAAQ,GAAM,KACpC5F,GAASnM,EAAe,IAAZA,EAAE2F,MAAc,EACf3F,EAAEkG,UAAY+C,IAAkBjJ,EAAE2F,MAAQ,EAC1C,EAAI,GACjBwG,GAASnM,EAAiB,IAAdA,EAAEmQ,OAAO6B,IACjBhS,EAAEmQ,OAAOrN,OAAS9C,EAAEmQ,OAAOrN,MAAM/E,SACnCoO,GAASnM,EAA2B,IAAxBA,EAAEmQ,OAAOrN,MAAM/E,QAC3BoO,GAASnM,EAAIA,EAAEmQ,OAAOrN,MAAM/E,QAAU,EAAK,MAEzCiC,EAAEmQ,OAAOyB,OACXhM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAS,IAE7DH,EAAEoQ,QAAU,EACZpQ,EAAEkQ,OAxmDe,QA4kDjB,GAbA/D,GAASnM,EAAG,GACZmM,GAASnM,EAAG,GACZmM,GAASnM,EAAG,GACZmM,GAASnM,EAAG,GACZmM,GAASnM,EAAG,GACZmM,GAASnM,EAAe,IAAZA,EAAE2F,MAAc,EACf3F,EAAEkG,UAAY+C,IAAkBjJ,EAAE2F,MAAQ,EAC1C,EAAI,GACjBwG,GAASnM,EA3jDC,GA4jDVA,EAAEkQ,OAAS1F,GAGXiB,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EA6Bb,GA3mDqB,KA2mDjB7J,EAAEkQ,OAAwB,CAC5B,GAAIlQ,EAAEmQ,OAAOrN,MAAqB,CAChC,IAAImP,EAAMjS,EAAEG,QACRuO,GAAgC,MAAxB1O,EAAEmQ,OAAOrN,MAAM/E,QAAmBiC,EAAEoQ,QAChD,KAAOpQ,EAAEG,QAAUuO,EAAO1O,EAAE6O,kBAAkB,CAC5C,IAAIqD,EAAOlS,EAAE6O,iBAAmB7O,EAAEG,QAYlC,GATAH,EAAEE,YAAYyE,IAAI3E,EAAEmQ,OAAOrN,MAAM+B,SAAS7E,EAAEoQ,QAASpQ,EAAEoQ,QAAU8B,GAAOlS,EAAEG,SAC1EH,EAAEG,QAAUH,EAAE6O,iBAEV7O,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnEjS,EAAEoQ,SAAW8B,EACbzG,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EAEToI,EAAM,EACNvD,GAAQwD,CACV,CAGA,IAAIC,EAAe,IAAIlU,WAAW+B,EAAEmQ,OAAOrN,OAG3C9C,EAAEE,YAAYyE,IAAIwN,EAAatN,SAAS7E,EAAEoQ,QAASpQ,EAAEoQ,QAAU1B,GAAO1O,EAAEG,SACxEH,EAAEG,SAAWuO,EAET1O,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnEjS,EAAEoQ,QAAU,CACd,CACApQ,EAAEkQ,OAhpDiB,EAipDrB,CACA,GAlpDqB,KAkpDjBlQ,EAAEkQ,OAAuB,CAC3B,GAAIlQ,EAAEmQ,OAAO0B,KAAoB,CAC/B,IACIO,EADAH,EAAMjS,EAAEG,QAEZ,EAAG,CACD,GAAIH,EAAEG,UAAYH,EAAE6O,iBAAkB,CAOpC,GALI7O,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnExG,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EAEToI,EAAM,CACR,CAGEG,EADEpS,EAAEoQ,QAAUpQ,EAAEmQ,OAAO0B,KAAK9T,OACkB,IAAxCiC,EAAEmQ,OAAO0B,KAAKQ,WAAWrS,EAAEoQ,WAE3B,EAERjE,GAASnM,EAAGoS,EACd,OAAiB,IAARA,GAELpS,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnEjS,EAAEoQ,QAAU,CACd,CACApQ,EAAEkQ,OAlrDiB,EAmrDrB,CACA,GAprDqB,KAorDjBlQ,EAAEkQ,OAA0B,CAC9B,GAAIlQ,EAAEmQ,OAAO2B,QAAuB,CAClC,IACIM,EADAH,EAAMjS,EAAEG,QAEZ,EAAG,CACD,GAAIH,EAAEG,UAAYH,EAAE6O,iBAAkB,CAOpC,GALI7O,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,IAGnExG,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EAEToI,EAAM,CACR,CAGEG,EADEpS,EAAEoQ,QAAUpQ,EAAEmQ,OAAO2B,QAAQ/T,OACkB,IAA3CiC,EAAEmQ,OAAO2B,QAAQO,WAAWrS,EAAEoQ,WAE9B,EAERjE,GAASnM,EAAGoS,EACd,OAAiB,IAARA,GAELpS,EAAEmQ,OAAOyB,MAAQ5R,EAAEG,QAAU8R,IAC/BrM,EAAKkB,MAAQQ,EAAQ1B,EAAKkB,MAAO9G,EAAEE,YAAaF,EAAEG,QAAU8R,EAAKA,GAGrE,CACAjS,EAAEkQ,OAntDgB,GAotDpB,CACA,GArtDoB,MAqtDhBlQ,EAAEkQ,OAAuB,CAC3B,GAAIlQ,EAAEmQ,OAAOyB,KAAM,CACjB,GAAI5R,EAAEG,QAAU,EAAIH,EAAE6O,mBACpBpD,GAAc7F,GACI,IAAd5F,EAAEG,SAEJ,OADAH,EAAEsQ,YAAc,EACTzG,EAGXsC,GAASnM,EAAgB,IAAb4F,EAAKkB,OACjBqF,GAASnM,EAAI4F,EAAKkB,OAAS,EAAK,KAChClB,EAAKkB,MAAQ,CACf,CAKA,GAJA9G,EAAEkQ,OAAS1F,GAGXiB,GAAc7F,GACI,IAAd5F,EAAEG,QAEJ,OADAH,EAAEsQ,YAAc,EACTzG,CAEX,CAKA,GAAsB,IAAlBjE,EAAK6G,UAAkC,IAAhBzM,EAAE+N,WAC1BU,IAAUhF,GAAgBzJ,EAAEkQ,SAAWzF,GAAe,CACvD,IAAI6H,EAAqB,IAAZtS,EAAE2F,MAAc6I,GAAexO,EAAGyO,GAClCzO,EAAEkG,WAAa+C,GApwBX,EAACjJ,EAAGyO,KAEvB,IAAIS,EAEJ,OAAS,CAEP,GAAoB,IAAhBlP,EAAE+N,YACJE,GAAYjO,GACQ,IAAhBA,EAAE+N,WAAiB,CACrB,GAAIU,IAAUhF,EACZ,OAp/BgB,EAs/BlB,KACF,CAUF,GANAzJ,EAAEmP,aAAe,EAGjBD,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,WACpClM,EAAE+N,YACF/N,EAAEkM,WACEgD,IAEFlD,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WACT,OArgCkB,CAygCxB,CAEA,OADA3L,EAAEsO,OAAS,EACPG,IAAU9E,GAEZqC,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,UA5gCW,EACA,GAihCpB3L,EAAE4B,WAEJoK,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WAvhCW,EACA,CA2hCJ,EAktB2B4G,CAAavS,EAAGyO,GAChDzO,EAAEkG,WAAagD,GAr2BZ,EAAClJ,EAAGyO,KAEtB,IAAIS,EACA9D,EACA+B,EAAMQ,EAEV,MAAMH,EAAOxN,EAAE4E,OAEf,OAAS,CAKP,GAAI5E,EAAE+N,WAAa1D,GAAW,CAE5B,GADA4D,GAAYjO,GACRA,EAAE+N,WAAa1D,IAAaoE,IAAUhF,EACxC,OA15BkB,EA45BpB,GAAoB,IAAhBzJ,EAAE+N,UAAmB,KAC3B,CAIA,GADA/N,EAAEmP,aAAe,EACbnP,EAAE+N,WAl7BQ,GAk7BkB/N,EAAEkM,SAAW,IAC3CiB,EAAOnN,EAAEkM,SAAW,EACpBd,EAAOoC,EAAKL,GACR/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IAAO,CAC3EQ,EAAS3N,EAAEkM,SAAW7B,GACtB,UAESe,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IACzC/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IACzC/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IACzC/B,IAASoC,IAAOL,IAAS/B,IAASoC,IAAOL,IACzCA,EAAOQ,GAChB3N,EAAEmP,aAAe9E,IAAasD,EAASR,GACnCnN,EAAEmP,aAAenP,EAAE+N,YACrB/N,EAAEmP,aAAenP,EAAE+N,UAEvB,CAuBF,GAlBI/N,EAAEmP,cAv8BQ,GA28BZD,EAAS1I,EAAUxG,EAAG,EAAGA,EAAEmP,aA38Bf,GA68BZnP,EAAE+N,WAAa/N,EAAEmP,aACjBnP,EAAEkM,UAAYlM,EAAEmP,aAChBnP,EAAEmP,aAAe,IAKjBD,EAAS1I,EAAUxG,EAAG,EAAGA,EAAE4E,OAAO5E,EAAEkM,WAEpClM,EAAE+N,YACF/N,EAAEkM,YAEAgD,IAEFlD,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WACT,OA58BkB,CAg9BxB,CAEA,OADA3L,EAAEsO,OAAS,EACPG,IAAU9E,GAEZqC,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,UAn9BW,EACA,GAw9BpB3L,EAAE4B,WAEJoK,GAAiBhM,GAAG,GACK,IAArBA,EAAE4F,KAAK+F,WA99BW,EACA,CAk+BJ,EA4wBkB6G,CAAYxS,EAAGyO,GACtCuB,GAAoBhQ,EAAE2F,OAAOoK,KAAK/P,EAAGyO,GAKlD,GAnvDsB,IAgvDlB6D,GA/uDkB,IA+uDcA,IAClCtS,EAAEkQ,OAASzF,IAnvDS,IAqvDlB6H,GAnvDkB,IAmvDSA,EAK7B,OAJuB,IAAnB1M,EAAK+F,YACP3L,EAAEsQ,YAAc,GAGXzG,EAST,GAlwDsB,IAkwDlByI,IACE7D,IAAU3G,EACZpB,EAAU1G,GAEHyO,IAAU7E,IAEjBtE,EAAiBtF,EAAG,EAAG,GAAG,GAItByO,IAAU/E,IAEZmB,GAAK7K,EAAEmL,MAEa,IAAhBnL,EAAE+N,YACJ/N,EAAEkM,SAAW,EACblM,EAAEiM,YAAc,EAChBjM,EAAEsO,OAAS,KAIjB7C,GAAc7F,GACS,IAAnBA,EAAK+F,WAEP,OADA3L,EAAEsQ,YAAc,EACTzG,CAGb,CAEA,OAAI4E,IAAU9E,EAAqBE,EAC/B7J,EAAE4M,MAAQ,EAAY9C,GAGX,IAAX9J,EAAE4M,MACJT,GAASnM,EAAgB,IAAb4F,EAAKkB,OACjBqF,GAASnM,EAAI4F,EAAKkB,OAAS,EAAK,KAChCqF,GAASnM,EAAI4F,EAAKkB,OAAS,GAAM,KACjCqF,GAASnM,EAAI4F,EAAKkB,OAAS,GAAM,KACjCqF,GAASnM,EAAmB,IAAhB4F,EAAKiH,UACjBV,GAASnM,EAAI4F,EAAKiH,UAAY,EAAK,KACnCV,GAASnM,EAAI4F,EAAKiH,UAAY,GAAM,KACpCV,GAASnM,EAAI4F,EAAKiH,UAAY,GAAM,OAIpCR,GAAYrM,EAAG4F,EAAKkB,QAAU,IAC9BuF,GAAYrM,EAAgB,MAAb4F,EAAKkB,QAGtB2E,GAAc7F,GAIV5F,EAAE4M,KAAO,IAAK5M,EAAE4M,MAAQ5M,EAAE4M,MAET,IAAd5M,EAAEG,QAAgB0J,EAASC,EAAc,EA8HjD2I,WA1HmB7M,IAElB,GAAIiL,GAAkBjL,GACpB,OAAOmE,EAGT,MAAMmG,EAAStK,EAAK8F,MAAMwE,OAI1B,OAFAtK,EAAK8F,MAAQ,KAENwE,IAAW1F,GAAaE,GAAI9E,EAAMoE,IAAkBH,CAAM,EAiHlE6I,qBAzG4B,CAAC9M,EAAM+M,KAElC,IAAIC,EAAaD,EAAW5U,OAE5B,GAAI8S,GAAkBjL,GACpB,OAAOmE,EAGT,MAAM/J,EAAI4F,EAAK8F,MACTkB,EAAO5M,EAAE4M,KAEf,GAAa,IAATA,GAAwB,IAATA,GAAc5M,EAAEkQ,SAAW3F,IAAevK,EAAE+N,UAC7D,OAAOhE,EAYT,GARa,IAAT6C,IAEFhH,EAAKkB,MAAQD,EAAUjB,EAAKkB,MAAO6L,EAAYC,EAAY,IAG7D5S,EAAE4M,KAAO,EAGLgG,GAAc5S,EAAEiL,OAAQ,CACb,IAAT2B,IAEF/B,GAAK7K,EAAEmL,MACPnL,EAAEkM,SAAW,EACblM,EAAEiM,YAAc,EAChBjM,EAAEsO,OAAS,GAIb,IAAIuE,EAAU,IAAI5U,WAAW+B,EAAEiL,QAC/B4H,EAAQlO,IAAIgO,EAAW9N,SAAS+N,EAAa5S,EAAEiL,OAAQ2H,GAAa,GACpED,EAAaE,EACbD,EAAa5S,EAAEiL,MACjB,CAEA,MAAM6H,EAAQlN,EAAK6G,SACbsG,EAAOnN,EAAK+G,QACZD,EAAQ9G,EAAK8G,MAKnB,IAJA9G,EAAK6G,SAAWmG,EAChBhN,EAAK+G,QAAU,EACf/G,EAAK8G,MAAQiG,EACb1E,GAAYjO,GACLA,EAAE+N,WAh5DO,GAg5DiB,CAC/B,IAAIK,EAAMpO,EAAEkM,SACR/K,EAAInB,EAAE+N,UAAY,EACtB,GAEE/N,EAAEuO,MAAQlD,GAAKrL,EAAGA,EAAEuO,MAAOvO,EAAE4E,OAAOwJ,EAr5DxB,EAq5D0C,IAEtDpO,EAAEoL,KAAKgD,EAAMpO,EAAE0N,QAAU1N,EAAEmL,KAAKnL,EAAEuO,OAElCvO,EAAEmL,KAAKnL,EAAEuO,OAASH,EAClBA,YACSjN,GACXnB,EAAEkM,SAAWkC,EACbpO,EAAE+N,UAAYsB,EACdpB,GAAYjO,EACd,CAWA,OAVAA,EAAEkM,UAAYlM,EAAE+N,UAChB/N,EAAEiM,YAAcjM,EAAEkM,SAClBlM,EAAEsO,OAAStO,EAAE+N,UACb/N,EAAE+N,UAAY,EACd/N,EAAEmP,aAAenP,EAAEqN,YAAcgC,EACjCrP,EAAEyP,gBAAkB,EACpB7J,EAAK+G,QAAUoG,EACfnN,EAAK8G,MAAQA,EACb9G,EAAK6G,SAAWqG,EAChB9S,EAAE4M,KAAOA,EACF/C,CAAM,EAiCdmJ,YArBiB,sCAwBlB,MAAMC,GAAO,CAACC,EAAKC,IACVC,OAAOC,UAAUC,eAAeC,KAAKL,EAAKC,GAGnD,IA0CIK,GAAS,CACZC,OA3CY,SAAUP,GACrB,MAAMQ,EAAUpV,MAAM+U,UAAUM,MAAMJ,KAAKK,UAAW,GACtD,KAAOF,EAAQ3V,QAAQ,CACrB,MAAM8V,EAASH,EAAQI,QACvB,GAAKD,EAAL,CAEA,GAAsB,iBAAXA,EACT,MAAM,IAAIE,UAAUF,EAAS,sBAG/B,IAAK,MAAM9I,KAAK8I,EACVZ,GAAKY,EAAQ9I,KACfmI,EAAInI,GAAK8I,EAAO9I,GARK,CAW3B,CAEA,OAAOmI,CACT,EA0BCc,cAtBoBC,IAEnB,IAAInW,EAAM,EAEV,IAAK,IAAI4J,EAAI,EAAGwM,EAAID,EAAOlW,OAAQ2J,EAAIwM,EAAGxM,IACxC5J,GAAOmW,EAAOvM,GAAG3J,OAInB,MAAMoW,EAAS,IAAIlW,WAAWH,GAE9B,IAAK,IAAI4J,EAAI,EAAGX,EAAM,EAAGmN,EAAID,EAAOlW,OAAQ2J,EAAIwM,EAAGxM,IAAK,CACtD,IAAI0M,EAAQH,EAAOvM,GACnByM,EAAOxP,IAAIyP,EAAOrN,GAClBA,GAAOqN,EAAMrW,MACf,CAEA,OAAOoW,CAAM,GAgBf,IAAIE,IAAmB,EAEvB,IAAMC,OAAOC,aAAaC,MAAM,KAAM,IAAIvW,WAAW,GAAK,CAAE,MAAOwW,GAAMJ,IAAmB,CAAO,CAMnG,MAAMK,GAAW,IAAIzW,WAAW,KAChC,IAAK,IAAI0W,EAAI,EAAGA,EAAI,IAAKA,IACvBD,GAASC,GAAMA,GAAK,IAAM,EAAIA,GAAK,IAAM,EAAIA,GAAK,IAAM,EAAIA,GAAK,IAAM,EAAIA,GAAK,IAAM,EAAI,EAE5FD,GAAS,KAAOA,GAAS,KAAO,EAiFhC,IAyEIE,GAAU,CACbC,WAvJiBzG,IAChB,GAA2B,mBAAhB0G,aAA8BA,YAAYzB,UAAU0B,OAC7D,OAAO,IAAID,aAAcC,OAAO3G,GAGlC,IAAIvQ,EAAK4C,EAAGuU,EAAIC,EAAOvN,EAAGwN,EAAU9G,EAAIrQ,OAAQoX,EAAU,EAG1D,IAAKF,EAAQ,EAAGA,EAAQC,EAASD,IAC/BxU,EAAI2N,EAAIiE,WAAW4C,GACE,QAAZ,MAAJxU,IAA2BwU,EAAQ,EAAIC,IAC1CF,EAAK5G,EAAIiE,WAAW4C,EAAQ,GACN,QAAZ,MAALD,KACHvU,EAAI,OAAYA,EAAI,OAAW,KAAOuU,EAAK,OAC3CC,MAGJE,GAAW1U,EAAI,IAAO,EAAIA,EAAI,KAAQ,EAAIA,EAAI,MAAU,EAAI,EAO9D,IAHA5C,EAAM,IAAII,WAAWkX,GAGhBzN,EAAI,EAAGuN,EAAQ,EAAGvN,EAAIyN,EAASF,IAClCxU,EAAI2N,EAAIiE,WAAW4C,GACE,QAAZ,MAAJxU,IAA2BwU,EAAQ,EAAIC,IAC1CF,EAAK5G,EAAIiE,WAAW4C,EAAQ,GACN,QAAZ,MAALD,KACHvU,EAAI,OAAYA,EAAI,OAAW,KAAOuU,EAAK,OAC3CC,MAGAxU,EAAI,IAEN5C,EAAI6J,KAAOjH,EACFA,EAAI,MAEb5C,EAAI6J,KAAO,IAAQjH,IAAM,EACzB5C,EAAI6J,KAAO,IAAY,GAAJjH,GACVA,EAAI,OAEb5C,EAAI6J,KAAO,IAAQjH,IAAM,GACzB5C,EAAI6J,KAAO,IAAQjH,IAAM,EAAI,GAC7B5C,EAAI6J,KAAO,IAAY,GAAJjH,IAGnB5C,EAAI6J,KAAO,IAAQjH,IAAM,GACzB5C,EAAI6J,KAAO,IAAQjH,IAAM,GAAK,GAC9B5C,EAAI6J,KAAO,IAAQjH,IAAM,EAAI,GAC7B5C,EAAI6J,KAAO,IAAY,GAAJjH,GAIvB,OAAO5C,CAAG,EAkGXuX,WA3EgB,CAACvX,EAAKwX,KACrB,MAAMvX,EAAMuX,GAAOxX,EAAIE,OAEvB,GAA2B,mBAAhBuX,aAA8BA,YAAYjC,UAAUkC,OAC7D,OAAO,IAAID,aAAcC,OAAO1X,EAAIgH,SAAS,EAAGwQ,IAGlD,IAAI3N,EAAG8N,EAKP,MAAMC,EAAW,IAAInX,MAAY,EAANR,GAE3B,IAAK0X,EAAM,EAAG9N,EAAI,EAAGA,EAAI5J,GAAM,CAC7B,IAAI2C,EAAI5C,EAAI6J,KAEZ,GAAIjH,EAAI,IAAM,CAAEgV,EAASD,KAAS/U,EAAG,QAAU,CAE/C,IAAIiV,EAAQhB,GAASjU,GAErB,GAAIiV,EAAQ,EAAKD,EAASD,KAAS,MAAQ9N,GAAKgO,EAAQ,MAAxD,CAKA,IAFAjV,GAAe,IAAViV,EAAc,GAAiB,IAAVA,EAAc,GAAO,EAExCA,EAAQ,GAAKhO,EAAI5J,GACtB2C,EAAKA,GAAK,EAAiB,GAAX5C,EAAI6J,KACpBgO,IAIEA,EAAQ,EAAKD,EAASD,KAAS,MAE/B/U,EAAI,MACNgV,EAASD,KAAS/U,GAElBA,GAAK,MACLgV,EAASD,KAAS,MAAW/U,GAAK,GAAM,KACxCgV,EAASD,KAAS,MAAc,KAAJ/U,EAlBuC,CAoBvE,CAEA,MA9DoB,EAAC5C,EAAKC,KAI1B,GAAIA,EAAM,OACJD,EAAIgH,UAAYwP,GAClB,OAAOC,OAAOC,aAAaC,MAAM,KAAM3W,EAAIE,SAAWD,EAAMD,EAAMA,EAAIgH,SAAS,EAAG/G,IAItF,IAAIqW,EAAS,GACb,IAAK,IAAIzM,EAAI,EAAGA,EAAI5J,EAAK4J,IACvByM,GAAUG,OAAOC,aAAa1W,EAAI6J,IAEpC,OAAOyM,CAAM,EAgDNwB,CAAcF,EAAUD,EAAI,EAiCpCI,WAvBgB,CAAC/X,EAAKwX,MAErBA,EAAMA,GAAOxX,EAAIE,QACPF,EAAIE,SAAUsX,EAAMxX,EAAIE,QAGlC,IAAIgJ,EAAMsO,EAAM,EAChB,KAAOtO,GAAO,GAA2B,MAAV,IAAXlJ,EAAIkJ,KAAyBA,IAIjD,OAAIA,EAAM,GAIE,IAARA,EAJkBsO,EAMdtO,EAAM2N,GAAS7W,EAAIkJ,IAAQsO,EAAOtO,EAAMsO,CAAG,GAqDjDQ,GAzBJ,WAEEzW,KAAKsN,MAAQ,KACbtN,KAAKuN,QAAU,EAEfvN,KAAKqN,SAAW,EAEhBrN,KAAKyN,SAAW,EAEhBzN,KAAKwM,OAAS,KACdxM,KAAK0M,SAAW,EAEhB1M,KAAKuM,UAAY,EAEjBvM,KAAK2M,UAAY,EAEjB3M,KAAKwL,IAAM,GAEXxL,KAAKsM,MAAQ,KAEbtM,KAAKyG,UAAY,EAEjBzG,KAAK0H,MAAQ,CACf,EAIA,MAAMgP,GAAa1C,OAAOC,UAAU0C,UAMlClO,WAAYmO,GAAY,aAAEjO,GAAY,aAAEC,GAAcC,SAAUgO,GAChE7N,KAAM8N,GAAQ7N,aAAc8N,GAAc,sBAC1CpN,GAAqB,mBACrBK,GACAI,WAAY4M,IACVxO,EA0FJ,SAASyO,GAAUC,GACjBlX,KAAKkX,QAAU9C,GAAOC,OAAO,CAC3B9N,MAAOoD,GACPsH,OAAQ+F,GACRG,UAAW,MACXrF,WAAY,GACZC,SAAU,EACVjL,SAAUkD,IACTkN,GAAW,CAAC,GAEf,IAAIE,EAAMpX,KAAKkX,QAEXE,EAAIC,KAAQD,EAAItF,WAAa,EAC/BsF,EAAItF,YAAcsF,EAAItF,WAGfsF,EAAIE,MAASF,EAAItF,WAAa,GAAOsF,EAAItF,WAAa,KAC7DsF,EAAItF,YAAc,IAGpB9R,KAAKsL,IAAS,EACdtL,KAAKwL,IAAS,GACdxL,KAAKuX,OAAS,EACdvX,KAAK6U,OAAS,GAEd7U,KAAKwG,KAAO,IAAIiQ,GAChBzW,KAAKwG,KAAK+F,UAAY,EAEtB,IAAIuE,EAASkB,GAAYH,aACvB7R,KAAKwG,KACL4Q,EAAI7Q,MACJ6Q,EAAInG,OACJmG,EAAItF,WACJsF,EAAIrF,SACJqF,EAAItQ,UAGN,GAAIgK,IAAWgG,GACb,MAAM,IAAIU,MAAMjP,EAASuI,IAO3B,GAJIsG,EAAI/E,QACNL,GAAYE,iBAAiBlS,KAAKwG,KAAM4Q,EAAI/E,QAG1C+E,EAAI7D,WAAY,CAClB,IAAIkE,EAaJ,GATEA,EAF4B,iBAAnBL,EAAI7D,WAENiC,GAAQC,WAAW2B,EAAI7D,YACe,yBAApCmD,GAAWvC,KAAKiD,EAAI7D,YACtB,IAAI1U,WAAWuY,EAAI7D,YAEnB6D,EAAI7D,WAGbzC,EAASkB,GAAYsB,qBAAqBtT,KAAKwG,KAAMiR,GAEjD3G,IAAWgG,GACb,MAAM,IAAIU,MAAMjP,EAASuI,IAG3B9Q,KAAK0X,WAAY,CACnB,CACF,CA8JA,SAASC,GAAUrK,EAAO4J,GACxB,MAAMU,EAAW,IAAIX,GAAUC,GAK/B,GAHAU,EAASC,KAAKvK,GAAO,GAGjBsK,EAAStM,IAAO,MAAMsM,EAASpM,KAAOjD,EAASqP,EAAStM,KAE5D,OAAOsM,EAAS7C,MAClB,CA/IAkC,GAAUhD,UAAU4D,KAAO,SAAU3L,EAAM4L,GACzC,MAAMtR,EAAOxG,KAAKwG,KACZ2Q,EAAYnX,KAAKkX,QAAQC,UAC/B,IAAIrG,EAAQiH,EAEZ,GAAI/X,KAAKuX,MAAS,OAAO,EAkBzB,IAhBiCQ,EAA7BD,MAAiBA,EAA0BA,GACb,IAAfA,EAAsBjB,GAAaD,GAGlC,iBAAT1K,EAET1F,EAAK8G,MAAQkI,GAAQC,WAAWvJ,GACG,yBAA1BwK,GAAWvC,KAAKjI,GACzB1F,EAAK8G,MAAQ,IAAIzO,WAAWqN,GAE5B1F,EAAK8G,MAAQpB,EAGf1F,EAAK+G,QAAU,EACf/G,EAAK6G,SAAW7G,EAAK8G,MAAM3O,SAUzB,GAPuB,IAAnB6H,EAAK+F,YACP/F,EAAKgG,OAAS,IAAI3N,WAAWsY,GAC7B3Q,EAAKkG,SAAW,EAChBlG,EAAK+F,UAAY4K,IAIdY,IAAgBpP,IAAgBoP,IAAgBnP,KAAiBpC,EAAK+F,WAAa,EACtFvM,KAAKgY,OAAOxR,EAAKgG,OAAO/G,SAAS,EAAGe,EAAKkG,WACzClG,EAAK+F,UAAY,MAFnB,CASA,GAHAuE,EAASkB,GAAYG,QAAQ3L,EAAMuR,GAG/BjH,IAAWiG,GAOb,OANIvQ,EAAKkG,SAAW,GAClB1M,KAAKgY,OAAOxR,EAAKgG,OAAO/G,SAAS,EAAGe,EAAKkG,WAE3CoE,EAASkB,GAAYqB,WAAWrT,KAAKwG,MACrCxG,KAAKiY,MAAMnH,GACX9Q,KAAKuX,OAAQ,EACNzG,IAAWgG,GAIpB,GAAuB,IAAnBtQ,EAAK+F,WAMT,GAAIwL,EAAc,GAAKvR,EAAKkG,SAAW,EACrC1M,KAAKgY,OAAOxR,EAAKgG,OAAO/G,SAAS,EAAGe,EAAKkG,WACzClG,EAAK+F,UAAY,OAInB,GAAsB,IAAlB/F,EAAK6G,SAAgB,WAXvBrN,KAAKgY,OAAOxR,EAAKgG,OAjBnB,CA+BF,OAAO,CACT,EAUAyK,GAAUhD,UAAU+D,OAAS,SAAUhD,GACrChV,KAAK6U,OAAOgD,KAAK7C,EACnB,EAYAiC,GAAUhD,UAAUgE,MAAQ,SAAUnH,GAEhCA,IAAWgG,KACb9W,KAAK+U,OAASX,GAAOQ,cAAc5U,KAAK6U,SAE1C7U,KAAK6U,OAAS,GACd7U,KAAKsL,IAAMwF,EACX9Q,KAAKwL,IAAMxL,KAAKwG,KAAKgF,GACvB,EA6EA,IAMI0M,GAAc,CACjBC,QAPiBlB,GAQjB9E,QAPewF,GAQfS,WA/BD,SAAsB9K,EAAO4J,GAG3B,OAFAA,EAAUA,GAAW,CAAC,GACdG,KAAM,EACPM,GAAUrK,EAAO4J,EAC1B,EA4BCI,KAjBD,SAAgBhK,EAAO4J,GAGrB,OAFAA,EAAUA,GAAW,CAAC,GACdI,MAAO,EACRK,GAAUrK,EAAO4J,EAC1B,EAcCmB,UAPiB7P,GA8BlB,MAAM8P,GAAQ,MAsCd,IAAIC,GAAU,SAAsB/R,EAAM2G,GACxC,IAAIqL,EACAlT,EACAmT,EACA5F,EACAxK,EAEAqQ,EAEA9M,EACA+M,EACAC,EAEAC,EACAC,EACAhX,EACAiX,EACAC,EACAC,EACAC,EACAC,EACAC,EAEA1a,EACAgC,EACA2Y,EACAC,EAGAhM,EAAOd,EAGX,MAAMF,EAAQ9F,EAAK8F,MAEnBkM,EAAMhS,EAAK+G,QACXD,EAAQ9G,EAAK8G,MACbhI,EAAOkT,GAAOhS,EAAK6G,SAAW,GAC9BoL,EAAOjS,EAAKkG,SACZF,EAAShG,EAAKgG,OACdqG,EAAM4F,GAAQtL,EAAQ3G,EAAK+F,WAC3BlE,EAAMoQ,GAAQjS,EAAK+F,UAAY,KAE/BmM,EAAOpM,EAAMoM,KAEb9M,EAAQU,EAAMV,MACd+M,EAAQrM,EAAMqM,MACdC,EAAQtM,EAAMsM,MACdC,EAAWvM,EAAM9G,OACjBsT,EAAOxM,EAAMwM,KACbhX,EAAOwK,EAAMxK,KACbiX,EAAQzM,EAAMiN,QACdP,EAAQ1M,EAAMkN,SACdP,GAAS,GAAK3M,EAAMmN,SAAW,EAC/BP,GAAS,GAAK5M,EAAMoN,UAAY,EAMhCC,EACA,EAAG,CACG7X,EAAO,KACTgX,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,EACRgX,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,GAGVqX,EAAOJ,EAAMD,EAAOG,GAEpBW,EACA,OAAS,CAKP,GAJAR,EAAKD,IAAS,GACdL,KAAUM,EACVtX,GAAQsX,EACRA,EAAMD,IAAS,GAAM,IACV,IAAPC,EAIF5M,EAAOiM,KAAiB,MAAPU,MAEd,MAAS,GAALC,GAwKJ,IAAU,GAALA,EAIL,IAAS,GAALA,EAAS,CAEhB9M,EAAMuN,KArSC,MAsSP,MAAMF,CACR,CAEEnT,EAAKgF,IAAM,8BACXc,EAAMuN,KAAOvB,GACb,MAAMqB,CACR,CAZER,EAAOJ,GAAc,MAAPI,IAA8BL,GAAS,GAAKM,GAAM,IAChE,SAASQ,CAWX,CA/JE,IArBAlb,EAAa,MAAPya,EACNC,GAAM,GACFA,IACEtX,EAAOsX,IACTN,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,GAEVpD,GAAOoa,GAAS,GAAKM,GAAM,EAC3BN,KAAUM,EACVtX,GAAQsX,GAGNtX,EAAO,KACTgX,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,EACRgX,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,GAEVqX,EAAOH,EAAMF,EAAOI,KAGX,CAMP,GALAE,EAAKD,IAAS,GACdL,KAAUM,EACVtX,GAAQsX,EACRA,EAAMD,IAAS,GAAM,IAEZ,GAALC,EAAJ,CAaE,GAZA1Y,EAAc,MAAPyY,EACPC,GAAM,GACFtX,EAAOsX,IACTN,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,EACJA,EAAOsX,IACTN,GAAQxL,EAAMkL,MAAU1W,EACxBA,GAAQ,IAGZpB,GAAQoY,GAAS,GAAKM,GAAM,EAExB1Y,EAAOgY,EAAM,CACflS,EAAKgF,IAAM,gCACXc,EAAMuN,KAAOvB,GACb,MAAMqB,CACR,CAMA,GAJAb,KAAUM,EACVtX,GAAQsX,EAERA,EAAKX,EAAO5F,EACRnS,EAAO0Y,EAAI,CAEb,GADAA,EAAK1Y,EAAO0Y,EACRA,EAAKT,GACHrM,EAAMwN,KAAM,CACdtT,EAAKgF,IAAM,gCACXc,EAAMuN,KAAOvB,GACb,MAAMqB,CACR,CA0BF,GAFAN,EAAO,EACPC,EAAcT,EACA,IAAVD,GAEF,GADAS,GAAQzN,EAAQwN,EACZA,EAAK1a,EAAK,CACZA,GAAO0a,EACP,GACE5M,EAAOiM,KAAUI,EAASQ,aACjBD,GACXC,EAAOZ,EAAO/X,EACd4Y,EAAc9M,CAChB,OAEG,GAAIoM,EAAQQ,GAGf,GAFAC,GAAQzN,EAAQgN,EAAQQ,EACxBA,GAAMR,EACFQ,EAAK1a,EAAK,CACZA,GAAO0a,EACP,GACE5M,EAAOiM,KAAUI,EAASQ,aACjBD,GAEX,GADAC,EAAO,EACHT,EAAQla,EAAK,CACf0a,EAAKR,EACLla,GAAO0a,EACP,GACE5M,EAAOiM,KAAUI,EAASQ,aACjBD,GACXC,EAAOZ,EAAO/X,EACd4Y,EAAc9M,CAChB,CACF,OAIA,GADA6M,GAAQT,EAAQQ,EACZA,EAAK1a,EAAK,CACZA,GAAO0a,EACP,GACE5M,EAAOiM,KAAUI,EAASQ,aACjBD,GACXC,EAAOZ,EAAO/X,EACd4Y,EAAc9M,CAChB,CAEF,KAAO9N,EAAM,GACX8N,EAAOiM,KAAUa,EAAYD,KAC7B7M,EAAOiM,KAAUa,EAAYD,KAC7B7M,EAAOiM,KAAUa,EAAYD,KAC7B3a,GAAO,EAELA,IACF8N,EAAOiM,KAAUa,EAAYD,KACzB3a,EAAM,IACR8N,EAAOiM,KAAUa,EAAYD,MAGnC,KACK,CACHA,EAAOZ,EAAO/X,EACd,GACE8L,EAAOiM,KAAUjM,EAAO6M,KACxB7M,EAAOiM,KAAUjM,EAAO6M,KACxB7M,EAAOiM,KAAUjM,EAAO6M,KACxB3a,GAAO,QACAA,EAAM,GACXA,IACF8N,EAAOiM,KAAUjM,EAAO6M,KACpB3a,EAAM,IACR8N,EAAOiM,KAAUjM,EAAO6M,MAG9B,CAYF,KAFA,CARK,GAAU,GAALD,EAIL,CACH5S,EAAKgF,IAAM,wBACXc,EAAMuN,KAAOvB,GACb,MAAMqB,CACR,CAPER,EAAOH,GAAc,MAAPG,IAA8BL,GAAS,GAAKM,GAAM,GAUpE,CAeF,CAEA,KACF,CACF,OAASZ,EAAMlT,GAAQmT,EAAOpQ,GAG9B3J,EAAMoD,GAAQ,EACd0W,GAAO9Z,EACPoD,GAAQpD,GAAO,EACfoa,IAAS,GAAKhX,GAAQ,EAGtB0E,EAAK+G,QAAUiL,EACfhS,EAAKkG,SAAW+L,EAChBjS,EAAK6G,SAAYmL,EAAMlT,EAAYA,EAAOkT,EAAZ,EAAmB,GAAKA,EAAMlT,GAC5DkB,EAAK+F,UAAakM,EAAOpQ,EAAaA,EAAMoQ,EAAb,IAAqB,KAAOA,EAAOpQ,GAClEiE,EAAMwM,KAAOA,EACbxM,EAAMxK,KAAOA,CAEf,EAqBA,MASMiY,GAAQ,IAAI1I,YAAY,CAC5B,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GACrD,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,IAAK,IAAK,IAAK,IAAK,IAAK,IAAK,EAAG,IAGzD2I,GAAO,IAAInb,WAAW,CAC1B,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAC5D,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,KAGpDob,GAAQ,IAAI5I,YAAY,CAC5B,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,IAAK,IACtD,IAAK,IAAK,IAAK,IAAK,KAAM,KAAM,KAAM,KAAM,KAAM,KAClD,KAAM,MAAO,MAAO,MAAO,EAAG,IAG1B6I,GAAO,IAAIrb,WAAW,CAC1B,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAC5D,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GAAI,GACpC,GAAI,GAAI,GAAI,GAAI,GAAI,KAkStB,IAAIsb,GA/RkB,CAACC,EAAMC,EAAMC,EAAYC,EAAOvS,EAAOwS,EAAaC,EAAMC,KAE9E,MAAM5Y,EAAO4Y,EAAK5Y,KAGlB,IASI6Y,EACAC,EACAC,EACAC,EACAnH,EAGA/F,EAhBAlP,EAAM,EACNqc,EAAM,EACNC,EAAM,EAAG/E,EAAM,EACfgF,EAAO,EACPC,EAAO,EACPC,EAAO,EACP7L,EAAO,EACPI,EAAO,EACP0L,EAAO,EAMPlX,EAAO,KAGX,MAAMU,EAAQ,IAAIyM,YAAYgK,IACxBC,EAAO,IAAIjK,YAAYgK,IAC7B,IAEIE,EAAWC,EAASC,EAFpB/X,EAAQ,KAoCZ,IAAKhF,EAAM,EAAGA,GA3FA,GA2FgBA,IAC5BkG,EAAMlG,GAAO,EAEf,IAAKqc,EAAM,EAAGA,EAAMR,EAAOQ,IACzBnW,EAAMyV,EAAKC,EAAaS,MAK1B,IADAE,EAAOnZ,EACFmU,EApGS,GAoGMA,GAAO,GACN,IAAfrR,EAAMqR,GADkBA,KAM9B,GAHIgF,EAAOhF,IACTgF,EAAOhF,GAEG,IAARA,EAaF,OATAjO,EAAMwS,KAAiB,SAMvBxS,EAAMwS,KAAiB,SAEvBE,EAAK5Y,KAAO,EACL,EAET,IAAKkZ,EAAM,EAAGA,EAAM/E,GACC,IAAfrR,EAAMoW,GADaA,KASzB,IANIC,EAAOD,IACTC,EAAOD,GAIT1L,EAAO,EACF5Q,EAAM,EAAGA,GAlIA,GAkIgBA,IAG5B,GAFA4Q,IAAS,EACTA,GAAQ1K,EAAMlG,GACV4Q,EAAO,EACT,OAAQ,EAGZ,GAAIA,EAAO,IApIG,IAoIG8K,GAA4B,IAARnE,GACnC,OAAQ,EAKV,IADAqF,EAAK,GAAK,EACL5c,EAAM,EAAGA,EA/IA,GA+IeA,IAC3B4c,EAAK5c,EAAM,GAAK4c,EAAK5c,GAAOkG,EAAMlG,GAIpC,IAAKqc,EAAM,EAAGA,EAAMR,EAAOQ,IACM,IAA3BV,EAAKC,EAAaS,KACpBN,EAAKa,EAAKjB,EAAKC,EAAaS,OAAWA,GAiE3C,GAlNc,IAuLVX,GACFlW,EAAOR,EAAQ+W,EACf7M,EAAQ,IAxLG,IA0LFwM,GACTlW,EAAO6V,GACPrW,EAAQsW,GACRpM,EAAQ,MAGR1J,EAAO+V,GACPvW,EAAQwW,GACRtM,EAAQ,GAIVwN,EAAO,EACPL,EAAM,EACNrc,EAAMsc,EACNrH,EAAO6G,EACPU,EAAOD,EACPE,EAAO,EACPN,GAAO,EACPnL,EAAO,GAAKuL,EACZH,EAAOpL,EAAO,EA9MD,IAiNR0K,GAAmB1K,EAtNJ,KAMN,IAiNX0K,GAAoB1K,EAtNF,IAuNnB,OAAO,EAIT,OAAS,CAEP6L,EAAY7c,EAAMyc,EACdV,EAAKM,GAAO,EAAInN,GAClB4N,EAAU,EACVC,EAAWhB,EAAKM,IAETN,EAAKM,IAAQnN,GACpB4N,EAAU9X,EAAM+W,EAAKM,GAAOnN,GAC5B6N,EAAWvX,EAAKuW,EAAKM,GAAOnN,KAG5B4N,EAAU,GACVC,EAAW,GAIbd,EAAO,GAAMjc,EAAMyc,EACnBP,EAAO,GAAKM,EACZF,EAAMJ,EACN,GACEA,GAAQD,EACR3S,EAAM2L,GAAQyH,GAAQD,GAAQP,GAASW,GAAa,GAAOC,GAAW,GAAMC,QAC5D,IAATb,GAIT,IADAD,EAAO,GAAMjc,EAAM,EACZ0c,EAAOT,GACZA,IAAS,EAWX,GATa,IAATA,GACFS,GAAQT,EAAO,EACfS,GAAQT,GAERS,EAAO,EAITL,IACqB,KAAfnW,EAAMlG,GAAY,CACtB,GAAIA,IAAQuX,EAAO,MACnBvX,EAAM2b,EAAKC,EAAaG,EAAKM,GAC/B,CAGA,GAAIrc,EAAMuc,IAASG,EAAON,KAAUD,EAAK,CAYvC,IAVa,IAATM,IACFA,EAAOF,GAITtH,GAAQqH,EAGRE,EAAOxc,EAAMyc,EACb7L,EAAO,GAAK4L,EACLA,EAAOC,EAAOlF,IACnB3G,GAAQ1K,EAAMsW,EAAOC,KACjB7L,GAAQ,KACZ4L,IACA5L,IAAS,EAKX,GADAI,GAAQ,GAAKwL,EAxRJ,IAyRJd,GAAmB1K,EA9RR,KAMN,IAyRP0K,GAAoB1K,EA9RN,IA+Rf,OAAO,EAITmL,EAAMO,EAAON,EAIb9S,EAAM6S,GAAQI,GAAQ,GAAOC,GAAQ,GAAOvH,EAAO6G,CACrD,CACF,CAeA,OAVa,IAATY,IAIFpT,EAAM2L,EAAOyH,GAAU1c,EAAMyc,GAAS,GAAO,IAAM,IAKrDT,EAAK5Y,KAAOmZ,EACL,CAAC,EA8BV,MAQEpS,SAAU6S,GAAU,QAAE5S,GAAO,QAAEC,GAC/BC,KAAM2S,GAAQ1S,aAAc2S,GAAgB1S,YAAa2S,GAAezS,eAAgB0S,GAAkBzS,aAAc0S,GAAgBzS,YAAa0S,GAAa,YAAEzS,GAAW,WAC/Ka,IACE5B,EAOKyT,GAAO,MAUPC,GAAO,MACHC,GAAO,MACPC,GAAS,MAETC,GAAQ,MAKJC,GAAO,MACPC,GAAM,MAMdC,GAAQ,MAGRC,GAAM,MAiBTC,GAAWnH,IAEJA,IAAM,GAAM,MACbA,IAAM,EAAK,SACP,MAAJA,IAAe,KACX,IAAJA,IAAa,IAIzB,SAASoH,KACP3c,KAAKwG,KAAO,KACZxG,KAAK6Z,KAAO,EACZ7Z,KAAKsF,MAAO,EACZtF,KAAKwN,KAAO,EAEZxN,KAAK4c,UAAW,EAChB5c,KAAK6c,MAAQ,EAEb7c,KAAK0Y,KAAO,EACZ1Y,KAAK8c,MAAQ,EACb9c,KAAK+c,MAAQ,EAEb/c,KAAK+L,KAAO,KAGZ/L,KAAKgd,MAAQ,EACbhd,KAAK4L,MAAQ,EACb5L,KAAK2Y,MAAQ,EACb3Y,KAAK4Y,MAAQ,EACb5Y,KAAKwF,OAAS,KAGdxF,KAAK8Y,KAAO,EACZ9Y,KAAK8B,KAAO,EAGZ9B,KAAKrB,OAAS,EACdqB,KAAKid,OAAS,EAGdjd,KAAK0D,MAAQ,EAGb1D,KAAKuZ,QAAU,KACfvZ,KAAKwZ,SAAW,KAChBxZ,KAAKyZ,QAAU,EACfzZ,KAAK0Z,SAAW,EAGhB1Z,KAAKkd,MAAQ,EACbld,KAAKmd,KAAO,EACZnd,KAAKod,MAAQ,EACbpd,KAAKuP,KAAO,EACZvP,KAAK2T,KAAO,KAEZ3T,KAAKqa,KAAO,IAAIhJ,YAAY,KAC5BrR,KAAKya,KAAO,IAAIpJ,YAAY,KAO5BrR,KAAKqd,OAAS,KACdrd,KAAKsd,QAAU,KACftd,KAAK8Z,KAAO,EACZ9Z,KAAKud,KAAO,EACZvd,KAAKwd,IAAM,CACb,CAGA,MAAMC,GAAqBjX,IAEzB,IAAKA,EACH,OAAO,EAET,MAAM8F,EAAQ9F,EAAK8F,MACnB,OAAKA,GAASA,EAAM9F,OAASA,GAC3B8F,EAAMuN,KAAOoC,IAAQ3P,EAAMuN,KA7Ff,MA8FL,EAEF,CAAC,EAIJ6D,GAAoBlX,IAExB,GAAIiX,GAAkBjX,GAAS,OAAOsV,GACtC,MAAMxP,EAAQ9F,EAAK8F,MAqBnB,OApBA9F,EAAKiH,SAAWjH,EAAKmG,UAAYL,EAAMyQ,MAAQ,EAC/CvW,EAAKgF,IAAM,GACPc,EAAMkB,OACRhH,EAAKkB,MAAqB,EAAb4E,EAAMkB,MAErBlB,EAAMuN,KAAOoC,GACb3P,EAAMhH,KAAO,EACbgH,EAAMsQ,SAAW,EACjBtQ,EAAMuQ,OAAS,EACfvQ,EAAMoM,KAAO,MACbpM,EAAMP,KAAO,KACbO,EAAMwM,KAAO,EACbxM,EAAMxK,KAAO,EAEbwK,EAAMiN,QAAUjN,EAAM+Q,OAAS,IAAIM,WAhHjB,KAiHlBrR,EAAMkN,SAAWlN,EAAMgR,QAAU,IAAIK,WAhHlB,KAkHnBrR,EAAMwN,KAAO,EACbxN,EAAMiR,MAAQ,EAEP5B,EAAM,EAITiC,GAAgBpX,IAEpB,GAAIiX,GAAkBjX,GAAS,OAAOsV,GACtC,MAAMxP,EAAQ9F,EAAK8F,MAInB,OAHAA,EAAMV,MAAQ,EACdU,EAAMqM,MAAQ,EACdrM,EAAMsM,MAAQ,EACP8E,GAAiBlX,EAAK,EAKzBqX,GAAgB,CAACrX,EAAMsL,KAC3B,IAAItE,EAGJ,GAAIiQ,GAAkBjX,GAAS,OAAOsV,GACtC,MAAMxP,EAAQ9F,EAAK8F,MAenB,OAZIwF,EAAa,GACftE,EAAO,EACPsE,GAAcA,IAGdtE,EAA2B,GAAnBsE,GAAc,GAClBA,EAAa,KACfA,GAAc,KAKdA,IAAeA,EAAa,GAAKA,EAAa,IACzCgK,IAEY,OAAjBxP,EAAM9G,QAAmB8G,EAAM0Q,QAAUlL,IAC3CxF,EAAM9G,OAAS,MAIjB8G,EAAMkB,KAAOA,EACblB,EAAM0Q,MAAQlL,EACP8L,GAAapX,GAAK,EAIrBsX,GAAe,CAACtX,EAAMsL,KAE1B,IAAKtL,EAAQ,OAAOsV,GAGpB,MAAMxP,EAAQ,IAAIqQ,GAIlBnW,EAAK8F,MAAQA,EACbA,EAAM9F,KAAOA,EACb8F,EAAM9G,OAAS,KACf8G,EAAMuN,KAAOoC,GACb,MAAMrK,EAAMiM,GAAcrX,EAAMsL,GAIhC,OAHIF,IAAQ+J,KACVnV,EAAK8F,MAAQ,MAERsF,CAAG,EAoBZ,IAEImM,GAAQC,GAFRC,IAAS,EAKb,MAAMC,GAAe5R,IAGnB,GAAI2R,GAAQ,CACVF,GAAS,IAAIJ,WAAW,KACxBK,GAAU,IAAIL,WAAW,IAGzB,IAAI5C,EAAM,EACV,KAAOA,EAAM,KAAOzO,EAAM+N,KAAKU,KAAS,EACxC,KAAOA,EAAM,KAAOzO,EAAM+N,KAAKU,KAAS,EACxC,KAAOA,EAAM,KAAOzO,EAAM+N,KAAKU,KAAS,EACxC,KAAOA,EAAM,KAAOzO,EAAM+N,KAAKU,KAAS,EAMxC,IAJAZ,GAtRS,EAsRO7N,EAAM+N,KAAM,EAAG,IAAK0D,GAAU,EAAGzR,EAAMmO,KAAM,CAAE3Y,KAAM,IAGrEiZ,EAAM,EACCA,EAAM,IAAMzO,EAAM+N,KAAKU,KAAS,EAEvCZ,GA3RU,EA2RM7N,EAAM+N,KAAM,EAAG,GAAM2D,GAAS,EAAG1R,EAAMmO,KAAM,CAAE3Y,KAAM,IAGrEmc,IAAS,CACX,CAEA3R,EAAMiN,QAAUwE,GAChBzR,EAAMmN,QAAU,EAChBnN,EAAMkN,SAAWwE,GACjB1R,EAAMoN,SAAW,CAAC,EAkBdyE,GAAe,CAAC3X,EAAM4X,EAAK/V,EAAKyK,KAEpC,IAAIpS,EACJ,MAAM4L,EAAQ9F,EAAK8F,MAqCnB,OAlCqB,OAAjBA,EAAM9G,SACR8G,EAAMV,MAAQ,GAAKU,EAAM0Q,MACzB1Q,EAAMsM,MAAQ,EACdtM,EAAMqM,MAAQ,EAEdrM,EAAM9G,OAAS,IAAI3G,WAAWyN,EAAMV,QAIlCkH,GAAQxG,EAAMV,OAChBU,EAAM9G,OAAOD,IAAI6Y,EAAI3Y,SAAS4C,EAAMiE,EAAMV,MAAOvD,GAAM,GACvDiE,EAAMsM,MAAQ,EACdtM,EAAMqM,MAAQrM,EAAMV,QAGpBlL,EAAO4L,EAAMV,MAAQU,EAAMsM,MACvBlY,EAAOoS,IACTpS,EAAOoS,GAGTxG,EAAM9G,OAAOD,IAAI6Y,EAAI3Y,SAAS4C,EAAMyK,EAAMzK,EAAMyK,EAAOpS,GAAO4L,EAAMsM,QACpE9F,GAAQpS,IAGN4L,EAAM9G,OAAOD,IAAI6Y,EAAI3Y,SAAS4C,EAAMyK,EAAMzK,GAAM,GAChDiE,EAAMsM,MAAQ9F,EACdxG,EAAMqM,MAAQrM,EAAMV,QAGpBU,EAAMsM,OAASlY,EACX4L,EAAMsM,QAAUtM,EAAMV,QAASU,EAAMsM,MAAQ,GAC7CtM,EAAMqM,MAAQrM,EAAMV,QAASU,EAAMqM,OAASjY,KAG7C,CAAC,EAipCV,IAuBI2d,GAAc,CACjBT,aAxBoBA,GAyBpBC,cAxBqBA,GAyBrBH,iBAxBwBA,GAyBxBY,YAxxCoB9X,GAEZsX,GAAatX,EA3LJ,IAk9CjBsX,aAxBoBA,GAyBpBS,QA1qCiB,CAAC/X,EAAM6I,KAEvB,IAAI/C,EACAgB,EAAOd,EACPmH,EACA6K,EACAjP,EAAMD,EACNwJ,EACAhX,EACA0W,EAAKC,EACL3F,EACAuG,EACAC,EAEAiC,EAAWC,EAASC,EAEpBgD,EAAWC,EAASC,EACpBjgB,EACAkT,EALAuH,EAAO,EAMX,MAAMyF,EAAO,IAAI/f,WAAW,GAC5B,IAAI6b,EAEA3Y,EAEJ,MAAM8c,EACJ,IAAIhgB,WAAW,CAAE,GAAI,GAAI,GAAI,EAAG,EAAG,EAAG,EAAG,EAAG,GAAI,EAAG,GAAI,EAAG,GAAI,EAAG,GAAI,EAAG,GAAI,EAAG,KAGjF,GAAI4e,GAAkBjX,KAAUA,EAAKgG,SAC/BhG,EAAK8G,OAA2B,IAAlB9G,EAAK6G,SACvB,OAAOyO,GAGTxP,EAAQ9F,EAAK8F,MACTA,EAAMuN,OAASsC,KAAQ7P,EAAMuN,KAAOuC,IAIxCoC,EAAMhY,EAAKkG,SACXF,EAAShG,EAAKgG,OACd8C,EAAO9I,EAAK+F,UACZoH,EAAOnN,EAAK+G,QACZD,EAAQ9G,EAAK8G,MACbiC,EAAO/I,EAAK6G,SACZyL,EAAOxM,EAAMwM,KACbhX,EAAOwK,EAAMxK,KAGb0W,EAAMjJ,EACNkJ,EAAOnJ,EACPsC,EAAM+J,GAENmD,EACA,OACE,OAAQxS,EAAMuN,MACZ,KAAKoC,GACH,GAAmB,IAAf3P,EAAMkB,KAAY,CACpBlB,EAAMuN,KAAOuC,GACb,KACF,CAEA,KAAOta,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA,GAAkB,EAAbwK,EAAMkB,MAAsB,QAATsL,EAAiB,CACnB,IAAhBxM,EAAM0Q,QACR1Q,EAAM0Q,MAAQ,IAEhB1Q,EAAMwQ,MAAQ,EAEd8B,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzBxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,GAI5C9F,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KApaC,MAqaP,KACF,CAIA,GAHIvN,EAAMP,OACRO,EAAMP,KAAKgT,MAAO,KAED,EAAbzS,EAAMkB,UACA,IAAPsL,IAA2B,IAAMA,GAAQ,IAAM,GAAI,CACtDtS,EAAKgF,IAAM,yBACXc,EAAMuN,KAAO4C,GACb,KACF,CACA,IAAY,GAAP3D,KAA4B1O,GAAY,CAC3C5D,EAAKgF,IAAM,6BACXc,EAAMuN,KAAO4C,GACb,KACF,CASA,GAPA3D,KAAU,EACVhX,GAAQ,EAERpD,EAAiC,GAAnB,GAAPoa,GACa,IAAhBxM,EAAM0Q,QACR1Q,EAAM0Q,MAAQte,GAEZA,EAAM,IAAMA,EAAM4N,EAAM0Q,MAAO,CACjCxW,EAAKgF,IAAM,sBACXc,EAAMuN,KAAO4C,GACb,KACF,CAIAnQ,EAAMoM,KAAO,GAAKpM,EAAM0Q,MAGxB1Q,EAAMuQ,MAAQ,EAEdrW,EAAKkB,MAAQ4E,EAAMwQ,MAAQ,EAC3BxQ,EAAMuN,KAAc,IAAPf,EAncH,MAmc2BqD,GAErCrD,EAAO,EACPhX,EAAO,EAEP,MACF,KAjdW,MAmdT,KAAOA,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAGA,GADAwK,EAAMuQ,MAAQ/D,GACK,IAAdxM,EAAMuQ,SAAkBzS,GAAY,CACvC5D,EAAKgF,IAAM,6BACXc,EAAMuN,KAAO4C,GACb,KACF,CACA,GAAkB,MAAdnQ,EAAMuQ,MAAgB,CACxBrW,EAAKgF,IAAM,2BACXc,EAAMuN,KAAO4C,GACb,KACF,CACInQ,EAAMP,OACRO,EAAMP,KAAKwG,KAASuG,GAAQ,EAAK,GAEhB,IAAdxM,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OAEnCoR,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzBxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,IAI9C9F,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KAlfE,MAofV,KApfU,MAsfR,KAAO/X,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEIwK,EAAMP,OACRO,EAAMP,KAAK4G,KAAOmG,GAED,IAAdxM,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OAEnCoR,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzB8F,EAAK,GAAM9F,IAAS,GAAM,IAC1B8F,EAAK,GAAM9F,IAAS,GAAM,IAC1BxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,IAI9C9F,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KA5gBA,MA8gBR,KA9gBQ,MAghBN,KAAO/X,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEIwK,EAAMP,OACRO,EAAMP,KAAKiT,OAAiB,IAAPlG,EACrBxM,EAAMP,KAAK6G,GAAMkG,GAAQ,GAER,IAAdxM,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OAEnCoR,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzBxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,IAI9C9F,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KAriBG,MAuiBX,KAviBW,MAwiBT,GAAkB,KAAdvN,EAAMuQ,MAAgB,CAExB,KAAO/a,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEAwK,EAAM3N,OAASma,EACXxM,EAAMP,OACRO,EAAMP,KAAKkT,UAAYnG,GAEN,IAAdxM,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OAEnCoR,EAAK,GAAY,IAAP9F,EACV8F,EAAK,GAAM9F,IAAS,EAAK,IACzBxM,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAO8B,EAAM,EAAG,IAI9C9F,EAAO,EACPhX,EAAO,CAET,MACSwK,EAAMP,OACbO,EAAMP,KAAKrI,MAAQ,MAErB4I,EAAMuN,KAnkBG,MAqkBX,KArkBW,MAskBT,GAAkB,KAAdvN,EAAMuQ,QACR/J,EAAOxG,EAAM3N,OACTmU,EAAOvD,IAAQuD,EAAOvD,GACtBuD,IACExG,EAAMP,OACRrN,EAAM4N,EAAMP,KAAKkT,UAAY3S,EAAM3N,OAC9B2N,EAAMP,KAAKrI,QAEd4I,EAAMP,KAAKrI,MAAQ,IAAI7E,WAAWyN,EAAMP,KAAKkT,YAE/C3S,EAAMP,KAAKrI,MAAM6B,IACf+H,EAAM7H,SACJkO,EAGAA,EAAOb,GAGTpU,IAMe,IAAd4N,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OACnClB,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAOxP,EAAOwF,EAAMa,IAElDpE,GAAQuD,EACRa,GAAQb,EACRxG,EAAM3N,QAAUmU,GAEdxG,EAAM3N,QAAU,MAAMmgB,EAE5BxS,EAAM3N,OAAS,EACf2N,EAAMuN,KAvmBE,MAymBV,KAzmBU,MA0mBR,GAAkB,KAAdvN,EAAMuQ,MAAgB,CACxB,GAAa,IAATtN,EAAc,MAAMuP,EACxBhM,EAAO,EACP,GAEEpU,EAAM4O,EAAMqG,EAAOb,KAEfxG,EAAMP,MAAQrN,GACb4N,EAAM3N,OAAS,QAClB2N,EAAMP,KAAK0G,MAAQyC,OAAOC,aAAazW,UAElCA,GAAOoU,EAAOvD,GAOvB,GALmB,IAAdjD,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OACnClB,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAOxP,EAAOwF,EAAMa,IAElDpE,GAAQuD,EACRa,GAAQb,EACJpU,EAAO,MAAMogB,CACnB,MACSxS,EAAMP,OACbO,EAAMP,KAAK0G,KAAO,MAEpBnG,EAAM3N,OAAS,EACf2N,EAAMuN,KAjoBK,MAmoBb,KAnoBa,MAooBX,GAAkB,KAAdvN,EAAMuQ,MAAgB,CACxB,GAAa,IAATtN,EAAc,MAAMuP,EACxBhM,EAAO,EACP,GACEpU,EAAM4O,EAAMqG,EAAOb,KAEfxG,EAAMP,MAAQrN,GACb4N,EAAM3N,OAAS,QAClB2N,EAAMP,KAAK2G,SAAWwC,OAAOC,aAAazW,UAErCA,GAAOoU,EAAOvD,GAMvB,GALmB,IAAdjD,EAAMuQ,OAAiC,EAAbvQ,EAAMkB,OACnClB,EAAMwQ,MAAQ5U,EAAQoE,EAAMwQ,MAAOxP,EAAOwF,EAAMa,IAElDpE,GAAQuD,EACRa,GAAQb,EACJpU,EAAO,MAAMogB,CACnB,MACSxS,EAAMP,OACbO,EAAMP,KAAK2G,QAAU,MAEvBpG,EAAMuN,KAxpBE,MA0pBV,KA1pBU,MA2pBR,GAAkB,IAAdvN,EAAMuQ,MAAgB,CAExB,KAAO/a,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA,GAAkB,EAAbwK,EAAMkB,MAAasL,KAAwB,MAAdxM,EAAMwQ,OAAiB,CACvDtW,EAAKgF,IAAM,sBACXc,EAAMuN,KAAO4C,GACb,KACF,CAEA3D,EAAO,EACPhX,EAAO,CAET,CACIwK,EAAMP,OACRO,EAAMP,KAAKyG,KAASlG,EAAMuQ,OAAS,EAAK,EACxCvQ,EAAMP,KAAKgT,MAAO,GAEpBvY,EAAKkB,MAAQ4E,EAAMwQ,MAAQ,EAC3BxQ,EAAMuN,KAAOsC,GACb,MACF,KAprBY,MAsrBV,KAAOra,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA0E,EAAKkB,MAAQ4E,EAAMwQ,MAAQJ,GAAQ5D,GAEnCA,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KAAOqC,GAEf,KAAKA,GACH,GAAuB,IAAnB5P,EAAMsQ,SASR,OAPApW,EAAKkG,SAAW8R,EAChBhY,EAAK+F,UAAY+C,EACjB9I,EAAK+G,QAAUoG,EACfnN,EAAK6G,SAAWkC,EAChBjD,EAAMwM,KAAOA,EACbxM,EAAMxK,KAAOA,EAEN+Z,GAETrV,EAAKkB,MAAQ4E,EAAMwQ,MAAQ,EAC3BxQ,EAAMuN,KAAOsC,GAEf,KAAKA,GACH,GAAI9M,IAAUvG,IAAWuG,IAAUtG,GAAW,MAAM+V,EAEtD,KAAK1C,GACH,GAAI9P,EAAMhH,KAAM,CAEdwT,KAAiB,EAAPhX,EACVA,GAAe,EAAPA,EAERwK,EAAMuN,KAAO2C,GACb,KACF,CAEA,KAAO1a,EAAO,GAAG,CACf,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAQA,OANAwK,EAAMhH,KAAe,EAAPwT,EAEdA,KAAU,EACVhX,GAAQ,EAGQ,EAAPgX,GACP,KAAK,EAGHxM,EAAMuN,KA7uBI,MA8uBV,MACF,KAAK,EAKH,GAJAqE,GAAY5R,GAGZA,EAAMuN,KAAOyC,GACTjN,IAAUtG,GAAS,CAErB+P,KAAU,EACVhX,GAAQ,EAER,MAAMgd,CACR,CACA,MACF,KAAK,EAGHxS,EAAMuN,KA5vBG,MA6vBT,MACF,KAAK,EACHrT,EAAKgF,IAAM,qBACXc,EAAMuN,KAAO4C,GAGjB3D,KAAU,EACVhX,GAAQ,EAER,MACF,KA1wBgB,MAgxBd,IAJAgX,KAAiB,EAAPhX,EACVA,GAAe,EAAPA,EAGDA,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA,IAAY,MAAPgX,KAAqBA,IAAS,GAAM,OAAS,CAChDtS,EAAKgF,IAAM,+BACXc,EAAMuN,KAAO4C,GACb,KACF,CASA,GARAnQ,EAAM3N,OAAgB,MAAPma,EAIfA,EAAO,EACPhX,EAAO,EAEPwK,EAAMuN,KAAOwC,GACThN,IAAUtG,GAAW,MAAM+V,EAEjC,KAAKzC,GACH/P,EAAMuN,KAryBM,MAuyBd,KAvyBc,MAyyBZ,GADA/G,EAAOxG,EAAM3N,OACTmU,EAAM,CAGR,GAFIA,EAAOvD,IAAQuD,EAAOvD,GACtBuD,EAAOxD,IAAQwD,EAAOxD,GACb,IAATwD,EAAc,MAAMgM,EAExBtS,EAAOjH,IAAI+H,EAAM7H,SAASkO,EAAMA,EAAOb,GAAO0L,GAE9CjP,GAAQuD,EACRa,GAAQb,EACRxD,GAAQwD,EACR0L,GAAO1L,EACPxG,EAAM3N,QAAUmU,EAChB,KACF,CAEAxG,EAAMuN,KAAOsC,GACb,MACF,KAzzBe,MA2zBb,KAAOra,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAkBA,GAhBAwK,EAAM6Q,KAAkC,KAAnB,GAAPrE,GAEdA,KAAU,EACVhX,GAAQ,EAERwK,EAAM8Q,MAAmC,GAAnB,GAAPtE,GAEfA,KAAU,EACVhX,GAAQ,EAERwK,EAAM4Q,MAAmC,GAAnB,GAAPpE,GAEfA,KAAU,EACVhX,GAAQ,EAGJwK,EAAM6Q,KAAO,KAAO7Q,EAAM8Q,MAAQ,GAAI,CACxC5W,EAAKgF,IAAM,sCACXc,EAAMuN,KAAO4C,GACb,KACF,CAGAnQ,EAAMiD,KAAO,EACbjD,EAAMuN,KAz1BS,MA21BjB,KA31BiB,MA41Bf,KAAOvN,EAAMiD,KAAOjD,EAAM4Q,OAAO,CAE/B,KAAOpb,EAAO,GAAG,CACf,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEAwK,EAAM+N,KAAKwE,EAAMvS,EAAMiD,SAAmB,EAAPuJ,EAEnCA,KAAU,EACVhX,GAAQ,CAEV,CACA,KAAOwK,EAAMiD,KAAO,IAClBjD,EAAM+N,KAAKwE,EAAMvS,EAAMiD,SAAW,EAapC,GAPAjD,EAAMiN,QAAUjN,EAAM+Q,OACtB/Q,EAAMmN,QAAU,EAEhBiB,EAAO,CAAE5Y,KAAMwK,EAAMmN,SACrB7H,EAAMuI,GAz5BA,EAy5BgB7N,EAAM+N,KAAM,EAAG,GAAI/N,EAAMiN,QAAS,EAAGjN,EAAMmO,KAAMC,GACvEpO,EAAMmN,QAAUiB,EAAK5Y,KAEjB8P,EAAK,CACPpL,EAAKgF,IAAM,2BACXc,EAAMuN,KAAO4C,GACb,KACF,CAEAnQ,EAAMiD,KAAO,EACbjD,EAAMuN,KA/3BU,MAi4BlB,KAj4BkB,MAk4BhB,KAAOvN,EAAMiD,KAAOjD,EAAM6Q,KAAO7Q,EAAM8Q,OAAO,CAC5C,KACEjE,EAAO7M,EAAMiN,QAAQT,GAAS,GAAKxM,EAAMmN,SAAW,GACpD8B,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAEP,GAAerX,IANZ,CAQP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CACA,GAAI2Z,EAAW,GAEb3C,KAAUyC,EACVzZ,GAAQyZ,EAERjP,EAAM+N,KAAK/N,EAAMiD,QAAUkM,MAExB,CACH,GAAiB,KAAbA,EAAiB,CAGnB,IADA1Z,EAAIwZ,EAAY,EACTzZ,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAMA,GAHAgX,KAAUyC,EACVzZ,GAAQyZ,EAEW,IAAfjP,EAAMiD,KAAY,CACpB/I,EAAKgF,IAAM,4BACXc,EAAMuN,KAAO4C,GACb,KACF,CACA/d,EAAM4N,EAAM+N,KAAK/N,EAAMiD,KAAO,GAC9BuD,EAAO,GAAY,EAAPgG,GAEZA,KAAU,EACVhX,GAAQ,CAEV,MACK,GAAiB,KAAb2Z,EAAiB,CAGxB,IADA1Z,EAAIwZ,EAAY,EACTzZ,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAGAgX,KAAUyC,EACVzZ,GAAQyZ,EAER7c,EAAM,EACNoU,EAAO,GAAY,EAAPgG,GAEZA,KAAU,EACVhX,GAAQ,CAEV,KACK,CAGH,IADAC,EAAIwZ,EAAY,EACTzZ,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAGAgX,KAAUyC,EACVzZ,GAAQyZ,EAER7c,EAAM,EACNoU,EAAO,IAAa,IAAPgG,GAEbA,KAAU,EACVhX,GAAQ,CAEV,CACA,GAAIwK,EAAMiD,KAAOuD,EAAOxG,EAAM6Q,KAAO7Q,EAAM8Q,MAAO,CAChD5W,EAAKgF,IAAM,4BACXc,EAAMuN,KAAO4C,GACb,KACF,CACA,KAAO3J,KACLxG,EAAM+N,KAAK/N,EAAMiD,QAAU7Q,CAE/B,CACF,CAGA,GAAI4N,EAAMuN,OAAS4C,GAAO,MAG1B,GAAwB,IAApBnQ,EAAM+N,KAAK,KAAY,CACzB7T,EAAKgF,IAAM,uCACXc,EAAMuN,KAAO4C,GACb,KACF,CAcA,GATAnQ,EAAMmN,QAAU,EAEhBiB,EAAO,CAAE5Y,KAAMwK,EAAMmN,SACrB7H,EAAMuI,GA3hCD,EA2hCgB7N,EAAM+N,KAAM,EAAG/N,EAAM6Q,KAAM7Q,EAAMiN,QAAS,EAAGjN,EAAMmO,KAAMC,GAG9EpO,EAAMmN,QAAUiB,EAAK5Y,KAGjB8P,EAAK,CACPpL,EAAKgF,IAAM,8BACXc,EAAMuN,KAAO4C,GACb,KACF,CAaA,GAXAnQ,EAAMoN,SAAW,EAGjBpN,EAAMkN,SAAWlN,EAAMgR,QACvB5C,EAAO,CAAE5Y,KAAMwK,EAAMoN,UACrB9H,EAAMuI,GA3iCA,EA2iCgB7N,EAAM+N,KAAM/N,EAAM6Q,KAAM7Q,EAAM8Q,MAAO9Q,EAAMkN,SAAU,EAAGlN,EAAMmO,KAAMC,GAG1FpO,EAAMoN,SAAWgB,EAAK5Y,KAGlB8P,EAAK,CACPpL,EAAKgF,IAAM,wBACXc,EAAMuN,KAAO4C,GACb,KACF,CAGA,GADAnQ,EAAMuN,KAAOyC,GACTjN,IAAUtG,GAAW,MAAM+V,EAEjC,KAAKxC,GACHhQ,EAAMuN,KAAO0C,GAEf,KAAKA,GACH,GAAIhN,GAAQ,GAAKD,GAAQ,IAAK,CAE5B9I,EAAKkG,SAAW8R,EAChBhY,EAAK+F,UAAY+C,EACjB9I,EAAK+G,QAAUoG,EACfnN,EAAK6G,SAAWkC,EAChBjD,EAAMwM,KAAOA,EACbxM,EAAMxK,KAAOA,EAEbyW,GAAQ/R,EAAMiS,GAEd+F,EAAMhY,EAAKkG,SACXF,EAAShG,EAAKgG,OACd8C,EAAO9I,EAAK+F,UACZoH,EAAOnN,EAAK+G,QACZD,EAAQ9G,EAAK8G,MACbiC,EAAO/I,EAAK6G,SACZyL,EAAOxM,EAAMwM,KACbhX,EAAOwK,EAAMxK,KAGTwK,EAAMuN,OAASsC,KACjB7P,EAAMiR,MAAQ,GAEhB,KACF,CAEA,IADAjR,EAAMiR,KAAO,EAEXpE,EAAO7M,EAAMiN,QAAQT,GAAS,GAAKxM,EAAMmN,SAAW,GACpD8B,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAEPoC,GAAazZ,IANV,CAQP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CACA,GAAI0Z,KAAsB,IAAVA,GAAuB,CAIrC,IAHAiD,EAAYlD,EACZmD,EAAUlD,EACVmD,EAAWlD,EAETtC,EAAO7M,EAAMiN,QAAQoF,IACX7F,GAAS,GAAM2F,EAAYC,GAAY,IAAoCD,IACrFlD,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAENsF,EAAYlD,GAAczZ,IAPxB,CASP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CAEAgX,KAAU2F,EACV3c,GAAQ2c,EAERnS,EAAMiR,MAAQkB,CAChB,CAOA,GALA3F,KAAUyC,EACVzZ,GAAQyZ,EAERjP,EAAMiR,MAAQhC,EACdjP,EAAM3N,OAAS8c,EACC,IAAZD,EAAe,CAIjBlP,EAAMuN,KAjmCO,MAkmCb,KACF,CACA,GAAc,GAAV2B,EAAc,CAEhBlP,EAAMiR,MAAQ,EACdjR,EAAMuN,KAAOsC,GACb,KACF,CACA,GAAc,GAAVX,EAAc,CAChBhV,EAAKgF,IAAM,8BACXc,EAAMuN,KAAO4C,GACb,KACF,CACAnQ,EAAM5I,MAAkB,GAAV8X,EACdlP,EAAMuN,KApnCY,MAsnCpB,KAtnCoB,MAunClB,GAAIvN,EAAM5I,MAAO,CAGf,IADA3B,EAAIuK,EAAM5I,MACH5B,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEAwK,EAAM3N,QAAUma,GAAS,GAAKxM,EAAM5I,OAAS,EAE7CoV,KAAUxM,EAAM5I,MAChB5B,GAAQwK,EAAM5I,MAEd4I,EAAMiR,MAAQjR,EAAM5I,KACtB,CAEA4I,EAAMkR,IAAMlR,EAAM3N,OAClB2N,EAAMuN,KAzoCU,MA2oClB,KA3oCkB,MA4oChB,KACEV,EAAO7M,EAAMkN,SAASV,GAAS,GAAKxM,EAAMoN,UAAY,GACtD6B,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAEP,GAAerX,IANZ,CAQP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CACA,KAAe,IAAV0Z,GAAuB,CAI1B,IAHAiD,EAAYlD,EACZmD,EAAUlD,EACVmD,EAAWlD,EAETtC,EAAO7M,EAAMkN,SAASmF,IACZ7F,GAAS,GAAM2F,EAAYC,GAAY,IAAoCD,IACrFlD,EAAYpC,IAAS,GACrBqC,EAAWrC,IAAS,GAAM,IAC1BsC,EAAkB,MAAPtC,IAENsF,EAAYlD,GAAczZ,IAPxB,CASP,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CAEV,CAEAgX,KAAU2F,EACV3c,GAAQ2c,EAERnS,EAAMiR,MAAQkB,CAChB,CAMA,GAJA3F,KAAUyC,EACVzZ,GAAQyZ,EAERjP,EAAMiR,MAAQhC,EACA,GAAVC,EAAc,CAChBhV,EAAKgF,IAAM,wBACXc,EAAMuN,KAAO4C,GACb,KACF,CACAnQ,EAAM2Q,OAASxB,EACfnP,EAAM5I,MAAoB,GAAZ,EACd4I,EAAMuN,KA9rCa,MAgsCrB,KAhsCqB,MAisCnB,GAAIvN,EAAM5I,MAAO,CAGf,IADA3B,EAAIuK,EAAM5I,MACH5B,EAAOC,GAAG,CACf,GAAa,IAATwN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEAwK,EAAM2Q,QAAUnE,GAAS,GAAKxM,EAAM5I,OAAS,EAE7CoV,KAAUxM,EAAM5I,MAChB5B,GAAQwK,EAAM5I,MAEd4I,EAAMiR,MAAQjR,EAAM5I,KACtB,CAEA,GAAI4I,EAAM2Q,OAAS3Q,EAAMoM,KAAM,CAC7BlS,EAAKgF,IAAM,gCACXc,EAAMuN,KAAO4C,GACb,KACF,CAGAnQ,EAAMuN,KAztCW,MA2tCnB,KA3tCmB,MA4tCjB,GAAa,IAATvK,EAAc,MAAMwP,EAExB,GADAhM,EAAO2F,EAAOnJ,EACVhD,EAAM2Q,OAASnK,EAAM,CAEvB,GADAA,EAAOxG,EAAM2Q,OAASnK,EAClBA,EAAOxG,EAAMqM,OACXrM,EAAMwN,KAAM,CACdtT,EAAKgF,IAAM,gCACXc,EAAMuN,KAAO4C,GACb,KACF,CAiBE3J,EAAOxG,EAAMsM,OACf9F,GAAQxG,EAAMsM,MACdS,EAAO/M,EAAMV,MAAQkH,GAGrBuG,EAAO/M,EAAMsM,MAAQ9F,EAEnBA,EAAOxG,EAAM3N,SAAUmU,EAAOxG,EAAM3N,QACxC2a,EAAchN,EAAM9G,MACtB,MAEE8T,EAAc9M,EACd6M,EAAOmF,EAAMlS,EAAM2Q,OACnBnK,EAAOxG,EAAM3N,OAEXmU,EAAOxD,IAAQwD,EAAOxD,GAC1BA,GAAQwD,EACRxG,EAAM3N,QAAUmU,EAChB,GACEtG,EAAOgS,KAASlF,EAAYD,aACnBvG,GACU,IAAjBxG,EAAM3N,SAAgB2N,EAAMuN,KAAO0C,IACvC,MACF,KA5wCiB,MA6wCf,GAAa,IAATjN,EAAc,MAAMwP,EACxBtS,EAAOgS,KAASlS,EAAM3N,OACtB2Q,IACAhD,EAAMuN,KAAO0C,GACb,MACF,KAAKC,GACH,GAAIlQ,EAAMkB,KAAM,CAEd,KAAO1L,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IAEAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAaA,GAXA2W,GAAQnJ,EACR9I,EAAKmG,WAAa8L,EAClBnM,EAAMyQ,OAAStE,EACG,EAAbnM,EAAMkB,MAAaiL,IACtBjS,EAAKkB,MAAQ4E,EAAMwQ,MAEdxQ,EAAMuQ,MAAQ3U,EAAQoE,EAAMwQ,MAAOtQ,EAAQiM,EAAM+F,EAAM/F,GAAQhR,EAAU6E,EAAMwQ,MAAOtQ,EAAQiM,EAAM+F,EAAM/F,IAGjHA,EAAOnJ,EAEW,EAAbhD,EAAMkB,OAAclB,EAAMuQ,MAAQ/D,EAAO4D,GAAQ5D,MAAWxM,EAAMwQ,MAAO,CAC5EtW,EAAKgF,IAAM,uBACXc,EAAMuN,KAAO4C,GACb,KACF,CAEA3D,EAAO,EACPhX,EAAO,CAGT,CACAwK,EAAMuN,KAjzCI,MAmzCZ,KAnzCY,MAozCV,GAAIvN,EAAMkB,MAAQlB,EAAMuQ,MAAO,CAE7B,KAAO/a,EAAO,IAAI,CAChB,GAAa,IAATyN,EAAc,MAAMuP,EACxBvP,IACAuJ,GAAQxL,EAAMqG,MAAW7R,EACzBA,GAAQ,CACV,CAEA,GAAkB,EAAbwK,EAAMkB,MAAasL,KAAwB,WAAdxM,EAAMyQ,OAAqB,CAC3DvW,EAAKgF,IAAM,yBACXc,EAAMuN,KAAO4C,GACb,KACF,CAEA3D,EAAO,EACPhX,EAAO,CAGT,CACAwK,EAAMuN,KAv0CE,MAy0CV,KAz0CU,MA00CRjI,EAAMgK,GACN,MAAMkD,EACR,KAAKrC,GACH7K,EAAMmK,GACN,MAAM+C,EACR,KA70CS,MA80CP,OAAO9C,GAGT,QACE,OAAOF,GAyCb,OA3BAtV,EAAKkG,SAAW8R,EAChBhY,EAAK+F,UAAY+C,EACjB9I,EAAK+G,QAAUoG,EACfnN,EAAK6G,SAAWkC,EAChBjD,EAAMwM,KAAOA,EACbxM,EAAMxK,KAAOA,GAGTwK,EAAMV,OAAU6M,IAASjS,EAAK+F,WAAaD,EAAMuN,KAAO4C,KACvCnQ,EAAMuN,KAAO2C,IAASnN,IAAUqM,MAC/CyC,GAAa3X,EAAMA,EAAKgG,OAAQhG,EAAKkG,SAAU+L,EAAOjS,EAAK+F,WAEjEiM,GAAOhS,EAAK6G,SACZoL,GAAQjS,EAAK+F,UACb/F,EAAKiH,UAAY+K,EACjBhS,EAAKmG,WAAa8L,EAClBnM,EAAMyQ,OAAStE,EACG,EAAbnM,EAAMkB,MAAaiL,IACtBjS,EAAKkB,MAAQ4E,EAAMwQ,MAChBxQ,EAAMuQ,MAAQ3U,EAAQoE,EAAMwQ,MAAOtQ,EAAQiM,EAAMjS,EAAKkG,SAAW+L,GAAQhR,EAAU6E,EAAMwQ,MAAOtQ,EAAQiM,EAAMjS,EAAKkG,SAAW+L,IAEnIjS,EAAKC,UAAY6F,EAAMxK,MAAQwK,EAAMhH,KAAO,GAAK,IAC9BgH,EAAMuN,OAASsC,GAAO,IAAM,IAC5B7P,EAAMuN,OAASyC,IAAQhQ,EAAMuN,OAASwC,GAAQ,IAAM,IACzD,IAAR7D,GAAsB,IAATC,GAAepJ,IAAUqM,KAAe9J,IAAQ+J,KACjE/J,EAAMrI,IAEDqI,CAAG,EAoGXsN,WAhGmB1Y,IAElB,GAAIiX,GAAkBjX,GACpB,OAAOsV,GAGT,IAAIxP,EAAQ9F,EAAK8F,MAKjB,OAJIA,EAAM9G,SACR8G,EAAM9G,OAAS,MAEjBgB,EAAK8F,MAAQ,KACNqP,EAAM,EAsFdwD,iBAlFwB,CAAC3Y,EAAMuF,KAG9B,GAAI0R,GAAkBjX,GAAS,OAAOsV,GACtC,MAAMxP,EAAQ9F,EAAK8F,MACnB,OAAkB,EAAbA,EAAMkB,MAGXlB,EAAMP,KAAOA,EACbA,EAAKgT,MAAO,EACLpD,IAL8BG,EAKxB,EAyEdsD,qBArE4B,CAAC5Y,EAAM+M,KAClC,MAAMC,EAAaD,EAAW5U,OAE9B,IAAI2N,EACA+S,EACAzN,EAGJ,OAAI6L,GAAkBjX,GAAgBsV,IACtCxP,EAAQ9F,EAAK8F,MAEM,IAAfA,EAAMkB,MAAclB,EAAMuN,OAASqC,GAC9BJ,GAILxP,EAAMuN,OAASqC,KACjBmD,EAAS,EAETA,EAAS5X,EAAU4X,EAAQ9L,EAAYC,EAAY,GAC/C6L,IAAW/S,EAAMwQ,OACZf,IAKXnK,EAAMuM,GAAa3X,EAAM+M,EAAYC,EAAYA,GAC7C5B,GACFtF,EAAMuN,KAx7CK,MAy7CJmC,KAET1P,EAAMsQ,SAAW,EAEVjB,KAAM,EAqCd2D,YAxBiB,sCAkFdC,GApCJ,WAEEvf,KAAKuS,KAAa,EAElBvS,KAAK2S,KAAa,EAElB3S,KAAKgf,OAAa,EAElBhf,KAAK4S,GAAa,EAElB5S,KAAK0D,MAAa,KAElB1D,KAAKif,UAAa,EAWlBjf,KAAKyS,KAAa,GAIlBzS,KAAK0S,QAAa,GAIlB1S,KAAKwS,KAAa,EAElBxS,KAAK+e,MAAa,CACpB,EAIA,MAAMpI,GAAW3C,OAAOC,UAAU0C,UAK5B,WACJlO,GAAU,SAAEI,GAAQ,KACpBG,GAAI,aAAEC,GAAY,YAAEC,GAAW,eAAEE,GAAc,aAAEC,GAAY,YAAEC,IAC7Dd,EAkFJ,SAASgX,GAAUtI,GACjBlX,KAAKkX,QAAU9C,GAAOC,OAAO,CAC3B8C,UAAW,MACXrF,WAAY,GACZ2N,GAAI,IACHvI,GAAW,CAAC,GAEf,MAAME,EAAMpX,KAAKkX,QAIbE,EAAIC,KAAQD,EAAItF,YAAc,GAAOsF,EAAItF,WAAa,KACxDsF,EAAItF,YAAcsF,EAAItF,WACC,IAAnBsF,EAAItF,aAAoBsF,EAAItF,YAAc,OAI3CsF,EAAItF,YAAc,GAAOsF,EAAItF,WAAa,KACzCoF,GAAWA,EAAQpF,aACvBsF,EAAItF,YAAc,IAKfsF,EAAItF,WAAa,IAAQsF,EAAItF,WAAa,KAGvB,GAAjBsF,EAAItF,aACPsF,EAAItF,YAAc,KAItB9R,KAAKsL,IAAS,EACdtL,KAAKwL,IAAS,GACdxL,KAAKuX,OAAS,EACdvX,KAAK6U,OAAS,GAEd7U,KAAKwG,KAAS,IAAIiQ,GAClBzW,KAAKwG,KAAK+F,UAAY,EAEtB,IAAIuE,EAAUuN,GAAYP,aACxB9d,KAAKwG,KACL4Q,EAAItF,YAGN,GAAIhB,IAAW9H,GACb,MAAM,IAAIwO,MAAMjP,EAASuI,IAQ3B,GALA9Q,KAAKqS,OAAS,IAAIkN,GAElBlB,GAAYc,iBAAiBnf,KAAKwG,KAAMxG,KAAKqS,QAGzC+E,EAAI7D,aAEwB,iBAAnB6D,EAAI7D,WACb6D,EAAI7D,WAAaiC,GAAQC,WAAW2B,EAAI7D,YACG,yBAAlCoD,GAASxC,KAAKiD,EAAI7D,cAC3B6D,EAAI7D,WAAa,IAAI1U,WAAWuY,EAAI7D,aAElC6D,EAAIC,MACNvG,EAASuN,GAAYe,qBAAqBpf,KAAKwG,KAAM4Q,EAAI7D,YACrDzC,IAAW9H,KACb,MAAM,IAAIwO,MAAMjP,EAASuI,GAIjC,CAiNA,SAAS4O,GAAUpS,EAAO4J,GACxB,MAAMyI,EAAW,IAAIH,GAAUtI,GAK/B,GAHAyI,EAAS9H,KAAKvK,GAGVqS,EAASrU,IAAK,MAAMqU,EAASnU,KAAOjD,EAASoX,EAASrU,KAE1D,OAAOqU,EAAS5K,MAClB,CA/LAyK,GAAUvL,UAAU4D,KAAO,SAAU3L,EAAM4L,GACzC,MAAMtR,EAAOxG,KAAKwG,KACZ2Q,EAAYnX,KAAKkX,QAAQC,UACzB5D,EAAavT,KAAKkX,QAAQ3D,WAChC,IAAIzC,EAAQiH,EAAa6H,EAEzB,GAAI5f,KAAKuX,MAAO,OAAO,EAevB,IAbiCQ,EAA7BD,MAAiBA,EAA0BA,GACb,IAAfA,EAAsBjP,GAAWJ,GAGxB,yBAAxBkO,GAASxC,KAAKjI,GAChB1F,EAAK8G,MAAQ,IAAIzO,WAAWqN,GAE5B1F,EAAK8G,MAAQpB,EAGf1F,EAAK+G,QAAU,EACf/G,EAAK6G,SAAW7G,EAAK8G,MAAM3O,SAElB,CAqBP,IApBuB,IAAnB6H,EAAK+F,YACP/F,EAAKgG,OAAS,IAAI3N,WAAWsY,GAC7B3Q,EAAKkG,SAAW,EAChBlG,EAAK+F,UAAY4K,GAGnBrG,EAASuN,GAAYE,QAAQ/X,EAAMuR,GAE/BjH,IAAW5H,IAAeqK,IAC5BzC,EAASuN,GAAYe,qBAAqB5Y,EAAM+M,GAE5CzC,IAAW9H,GACb8H,EAASuN,GAAYE,QAAQ/X,EAAMuR,GAC1BjH,IAAWzH,KAEpByH,EAAS5H,KAKN1C,EAAK6G,SAAW,GAChByD,IAAW7H,IACXzC,EAAK8F,MAAMkB,KAAO,GACK,IAAvBtB,EAAK1F,EAAK+G,UAEf8Q,GAAYT,aAAapX,GACzBsK,EAASuN,GAAYE,QAAQ/X,EAAMuR,GAGrC,OAAQjH,GACN,KAAK1H,GACL,KAAKC,GACL,KAAKH,GACL,KAAKI,GAGH,OAFAtJ,KAAKiY,MAAMnH,GACX9Q,KAAKuX,OAAQ,GACN,EAOX,GAFAqI,EAAiBpZ,EAAK+F,UAElB/F,EAAKkG,WACgB,IAAnBlG,EAAK+F,WAAmBuE,IAAW7H,IAErC,GAAwB,WAApBjJ,KAAKkX,QAAQuI,GAAiB,CAEhC,IAAII,EAAgBrK,GAAQgB,WAAWhQ,EAAKgG,OAAQhG,EAAKkG,UAErDoT,EAAOtZ,EAAKkG,SAAWmT,EACvBE,EAAUvK,GAAQQ,WAAWxP,EAAKgG,OAAQqT,GAG9CrZ,EAAKkG,SAAWoT,EAChBtZ,EAAK+F,UAAY4K,EAAY2I,EACzBA,GAAMtZ,EAAKgG,OAAOjH,IAAIiB,EAAKgG,OAAO/G,SAASoa,EAAeA,EAAgBC,GAAO,GAErF9f,KAAKgY,OAAO+H,EAEd,MACE/f,KAAKgY,OAAOxR,EAAKgG,OAAO7N,SAAW6H,EAAKkG,SAAWlG,EAAKgG,OAAShG,EAAKgG,OAAO/G,SAAS,EAAGe,EAAKkG,WAMpG,GAAIoE,IAAW9H,IAA2B,IAAnB4W,EAAvB,CAGA,GAAI9O,IAAW7H,GAIb,OAHA6H,EAASuN,GAAYa,WAAWlf,KAAKwG,MACrCxG,KAAKiY,MAAMnH,GACX9Q,KAAKuX,OAAQ,GACN,EAGT,GAAsB,IAAlB/Q,EAAK6G,SAAgB,KAV4B,CAWvD,CAEA,OAAO,CACT,EAWAmS,GAAUvL,UAAU+D,OAAS,SAAUhD,GACrChV,KAAK6U,OAAOgD,KAAK7C,EACnB,EAYAwK,GAAUvL,UAAUgE,MAAQ,SAAUnH,GAEhCA,IAAW9H,KACW,WAApBhJ,KAAKkX,QAAQuI,GACfzf,KAAK+U,OAAS/U,KAAK6U,OAAOmL,KAAK,IAE/BhgB,KAAK+U,OAASX,GAAOQ,cAAc5U,KAAK6U,SAG5C7U,KAAK6U,OAAS,GACd7U,KAAKsL,IAAMwF,EACX9Q,KAAKwL,IAAMxL,KAAKwG,KAAKgF,GACvB,EA+EA,IAMIyU,GAAc,CACjBC,QAPiBV,GAQjBjB,QAPemB,GAQfS,WA1BD,SAAsB7S,EAAO4J,GAG3B,OAFAA,EAAUA,GAAW,CAAC,GACdG,KAAM,EACPqI,GAAUpS,EAAO4J,EAC1B,EAuBCkJ,OAPcV,GAQdrH,UAPe7P,GAUhB,MAAM,QAAE2P,GAAO,QAAEhG,GAAO,WAAEiG,GAAU,KAAEd,IAASY,IAEzC,QAAEgI,GAAO,QAAE3B,GAAO,WAAE4B,GAAU,OAAEC,IAAWH,GAIjD,IAKII,GAAY9B,E,gBC3sNhB,SAAS+B,EAAaC,EAAKC,GACzB,IAAI7hB,EAAS4hB,EAAI5hB,OAAS6hB,EACtBvD,EAAS,EACb,EAAG,CACD,IAAK,IAAI3U,EAAIkY,EAAQlY,EAAI,EAAGA,IAC1BiY,EAAItD,EAASuD,IAAWD,EAAItD,GAC5BA,IAGFte,GAAU6hB,CACZ,OAAS7hB,EAAS,EACpB,CAEA,SAAS8hB,EAAuBF,EAAKC,EAAQE,GAC3C,IAAIC,EAAQ,EACR/b,EAAQ2b,EAAI5hB,OAChB,MAAMiiB,EAAKhc,EAAQ8b,EAEnB,KAAO9b,EAAQ4b,GAAQ,CACrB,IAAK,IAAIlY,EAAIkY,EAAQlY,EAAI,IAAKA,EAC5BiY,EAAII,EAAQH,IAAWD,EAAII,KACzBA,EAEJ/b,GAAS4b,CACX,CAEA,MAAM1N,EAAOyN,EAAIhM,QACjB,IAAK,IAAIjM,EAAI,EAAGA,EAAIsY,IAAMtY,EACxB,IAAK,IAAI0E,EAAI,EAAGA,EAAI0T,IAAkB1T,EACpCuT,EAAKG,EAAiBpY,EAAK0E,GAAK8F,GAAO4N,EAAiB1T,EAAI,GAAK4T,EAAMtY,EAG7E,C,iBC9Be,MAAMuY,EACnB,YAAM1K,CAAO2K,EAAeC,GAC1B,MAAMC,QAAgBhhB,KAAKihB,YAAYF,GACjCG,EAAYJ,EAAcK,WAAa,EAC7C,GAAkB,IAAdD,EAAiB,CACnB,MAAME,GAAWN,EAAcO,aAK/B,ODsBC,SAAwBC,EAAOJ,EAAWK,EAAOC,EAAQC,EAC9DC,GACA,IAAKR,GAA2B,IAAdA,EAChB,OAAOI,EAGT,IAAK,IAAIhZ,EAAI,EAAGA,EAAImZ,EAAc9iB,SAAU2J,EAAG,CAC7C,GAAImZ,EAAcnZ,GAAK,GAAM,EAC3B,MAAM,IAAIkP,MAAM,wEAElB,GAAIiK,EAAcnZ,KAAOmZ,EAAc,GACrC,MAAM,IAAIjK,MAAM,qEAEpB,CAEA,MAAMkJ,EAAiBe,EAAc,GAAK,EACpCjB,EAAiC,IAAxBkB,EAA4B,EAAID,EAAc9iB,OAE7D,IAAK,IAAI2J,EAAI,EAAGA,EAAIkZ,KAEdlZ,EAAIkY,EAASe,EAAQb,GAAkBY,EAAMK,cAFrBrZ,EAAG,CAK/B,IAAIiY,EACJ,GAAkB,IAAdW,EAAiB,CACnB,OAAQO,EAAc,IACpB,KAAK,EACHlB,EAAM,IAAI1hB,WACRyiB,EAAOhZ,EAAIkY,EAASe,EAAQb,EAAgBF,EAASe,EAAQb,GAE/D,MACF,KAAK,GACHH,EAAM,IAAIlP,YACRiQ,EAAOhZ,EAAIkY,EAASe,EAAQb,EAAgBF,EAASe,EAAQb,EAAiB,GAEhF,MACF,KAAK,GACHH,EAAM,IAAIxY,YACRuZ,EAAOhZ,EAAIkY,EAASe,EAAQb,EAAgBF,EAASe,EAAQb,EAAiB,GAEhF,MACF,QACE,MAAM,IAAIlJ,MAAM,gCAAgCiK,EAAc,uBAElEnB,EAAaC,EAAKC,EACpB,MAAyB,IAAdU,IACTX,EAAM,IAAI1hB,WACRyiB,EAAOhZ,EAAIkY,EAASe,EAAQb,EAAgBF,EAASe,EAAQb,GAE/DD,EAAuBF,EAAKC,EAAQE,GAExC,CACA,OAAOY,CACT,CC3EaM,CACLZ,EAASE,EALOE,EAAUN,EAAce,UAAYf,EAAcgB,WACjDV,EAAUN,EAAciB,WACzCjB,EAAckB,cAAgBlB,EAAcmB,YAGDnB,EAAcoB,cACzDpB,EAAcqB,oBAElB,CACA,OAAOnB,CACT,E","sources":["webpack://ipyopenlayers/./node_modules/pako/dist/pako.esm.mjs","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/predictor.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/basedecoder.js"],"sourcesContent":["\n/*! pako 2.1.0 https://github.com/nodeca/pako @license (MIT AND Zlib) */\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n/* eslint-disable space-unary-ops */\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\n\n//const Z_FILTERED = 1;\n//const Z_HUFFMAN_ONLY = 2;\n//const Z_RLE = 3;\nconst Z_FIXED$1 = 4;\n//const Z_DEFAULT_STRATEGY = 0;\n\n/* Possible values of the data_type field (though see inflate()) */\nconst Z_BINARY = 0;\nconst Z_TEXT = 1;\n//const Z_ASCII = 1; // = Z_TEXT\nconst Z_UNKNOWN$1 = 2;\n\n/*============================================================================*/\n\n\nfunction zero$1(buf) { let len = buf.length; while (--len >= 0) { buf[len] = 0; } }\n\n// From zutil.h\n\nconst STORED_BLOCK = 0;\nconst STATIC_TREES = 1;\nconst DYN_TREES = 2;\n/* The three kinds of block type */\n\nconst MIN_MATCH$1 = 3;\nconst MAX_MATCH$1 = 258;\n/* The minimum and maximum match lengths */\n\n// From deflate.h\n/* ===========================================================================\n * Internal compression state.\n */\n\nconst LENGTH_CODES$1 = 29;\n/* number of length codes, not counting the special END_BLOCK code */\n\nconst LITERALS$1 = 256;\n/* number of literal bytes 0..255 */\n\nconst L_CODES$1 = LITERALS$1 + 1 + LENGTH_CODES$1;\n/* number of Literal or Length codes, including the END_BLOCK code */\n\nconst D_CODES$1 = 30;\n/* number of distance codes */\n\nconst BL_CODES$1 = 19;\n/* number of codes used to transfer the bit lengths */\n\nconst HEAP_SIZE$1 = 2 * L_CODES$1 + 1;\n/* maximum heap size */\n\nconst MAX_BITS$1 = 15;\n/* All codes must not exceed MAX_BITS bits */\n\nconst Buf_size = 16;\n/* size of bit buffer in bi_buf */\n\n\n/* ===========================================================================\n * Constants\n */\n\nconst MAX_BL_BITS = 7;\n/* Bit length codes must not exceed MAX_BL_BITS bits */\n\nconst END_BLOCK = 256;\n/* end of block literal code */\n\nconst REP_3_6 = 16;\n/* repeat previous bit length 3-6 times (2 bits of repeat count) */\n\nconst REPZ_3_10 = 17;\n/* repeat a zero length 3-10 times (3 bits of repeat count) */\n\nconst REPZ_11_138 = 18;\n/* repeat a zero length 11-138 times (7 bits of repeat count) */\n\n/* eslint-disable comma-spacing,array-bracket-spacing */\nconst extra_lbits = /* extra bits for each length code */\n new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]);\n\nconst extra_dbits = /* extra bits for each distance code */\n new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]);\n\nconst extra_blbits = /* extra bits for each bit length code */\n new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]);\n\nconst bl_order =\n new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);\n/* eslint-enable comma-spacing,array-bracket-spacing */\n\n/* The lengths of the bit length codes are sent in order of decreasing\n * probability, to avoid transmitting the lengths for unused bit length codes.\n */\n\n/* ===========================================================================\n * Local data. These are initialized only once.\n */\n\n// We pre-fill arrays with 0 to avoid uninitialized gaps\n\nconst DIST_CODE_LEN = 512; /* see definition of array dist_code below */\n\n// !!!! Use flat array instead of structure, Freq = i*2, Len = i*2+1\nconst static_ltree = new Array((L_CODES$1 + 2) * 2);\nzero$1(static_ltree);\n/* The static literal tree. Since the bit lengths are imposed, there is no\n * need for the L_CODES extra codes used during heap construction. However\n * The codes 286 and 287 are needed to build a canonical tree (see _tr_init\n * below).\n */\n\nconst static_dtree = new Array(D_CODES$1 * 2);\nzero$1(static_dtree);\n/* The static distance tree. (Actually a trivial tree since all codes use\n * 5 bits.)\n */\n\nconst _dist_code = new Array(DIST_CODE_LEN);\nzero$1(_dist_code);\n/* Distance codes. The first 256 values correspond to the distances\n * 3 .. 258, the last 256 values correspond to the top 8 bits of\n * the 15 bit distances.\n */\n\nconst _length_code = new Array(MAX_MATCH$1 - MIN_MATCH$1 + 1);\nzero$1(_length_code);\n/* length code for each normalized match length (0 == MIN_MATCH) */\n\nconst base_length = new Array(LENGTH_CODES$1);\nzero$1(base_length);\n/* First normalized length for each code (0 = MIN_MATCH) */\n\nconst base_dist = new Array(D_CODES$1);\nzero$1(base_dist);\n/* First normalized distance for each code (0 = distance of 1) */\n\n\nfunction StaticTreeDesc(static_tree, extra_bits, extra_base, elems, max_length) {\n\n this.static_tree = static_tree; /* static tree or NULL */\n this.extra_bits = extra_bits; /* extra bits for each code or NULL */\n this.extra_base = extra_base; /* base index for extra_bits */\n this.elems = elems; /* max number of elements in the tree */\n this.max_length = max_length; /* max bit length for the codes */\n\n // show if `static_tree` has data or dummy - needed for monomorphic objects\n this.has_stree = static_tree && static_tree.length;\n}\n\n\nlet static_l_desc;\nlet static_d_desc;\nlet static_bl_desc;\n\n\nfunction TreeDesc(dyn_tree, stat_desc) {\n this.dyn_tree = dyn_tree; /* the dynamic tree */\n this.max_code = 0; /* largest code with non zero frequency */\n this.stat_desc = stat_desc; /* the corresponding static tree */\n}\n\n\n\nconst d_code = (dist) => {\n\n return dist < 256 ? _dist_code[dist] : _dist_code[256 + (dist >>> 7)];\n};\n\n\n/* ===========================================================================\n * Output a short LSB first on the stream.\n * IN assertion: there is enough room in pendingBuf.\n */\nconst put_short = (s, w) => {\n// put_byte(s, (uch)((w) & 0xff));\n// put_byte(s, (uch)((ush)(w) >> 8));\n s.pending_buf[s.pending++] = (w) & 0xff;\n s.pending_buf[s.pending++] = (w >>> 8) & 0xff;\n};\n\n\n/* ===========================================================================\n * Send a value on a given number of bits.\n * IN assertion: length <= 16 and value fits in length bits.\n */\nconst send_bits = (s, value, length) => {\n\n if (s.bi_valid > (Buf_size - length)) {\n s.bi_buf |= (value << s.bi_valid) & 0xffff;\n put_short(s, s.bi_buf);\n s.bi_buf = value >> (Buf_size - s.bi_valid);\n s.bi_valid += length - Buf_size;\n } else {\n s.bi_buf |= (value << s.bi_valid) & 0xffff;\n s.bi_valid += length;\n }\n};\n\n\nconst send_code = (s, c, tree) => {\n\n send_bits(s, tree[c * 2]/*.Code*/, tree[c * 2 + 1]/*.Len*/);\n};\n\n\n/* ===========================================================================\n * Reverse the first len bits of a code, using straightforward code (a faster\n * method would use a table)\n * IN assertion: 1 <= len <= 15\n */\nconst bi_reverse = (code, len) => {\n\n let res = 0;\n do {\n res |= code & 1;\n code >>>= 1;\n res <<= 1;\n } while (--len > 0);\n return res >>> 1;\n};\n\n\n/* ===========================================================================\n * Flush the bit buffer, keeping at most 7 bits in it.\n */\nconst bi_flush = (s) => {\n\n if (s.bi_valid === 16) {\n put_short(s, s.bi_buf);\n s.bi_buf = 0;\n s.bi_valid = 0;\n\n } else if (s.bi_valid >= 8) {\n s.pending_buf[s.pending++] = s.bi_buf & 0xff;\n s.bi_buf >>= 8;\n s.bi_valid -= 8;\n }\n};\n\n\n/* ===========================================================================\n * Compute the optimal bit lengths for a tree and update the total bit length\n * for the current block.\n * IN assertion: the fields freq and dad are set, heap[heap_max] and\n * above are the tree nodes sorted by increasing frequency.\n * OUT assertions: the field len is set to the optimal bit length, the\n * array bl_count contains the frequencies for each bit length.\n * The length opt_len is updated; static_len is also updated if stree is\n * not null.\n */\nconst gen_bitlen = (s, desc) => {\n// deflate_state *s;\n// tree_desc *desc; /* the tree descriptor */\n\n const tree = desc.dyn_tree;\n const max_code = desc.max_code;\n const stree = desc.stat_desc.static_tree;\n const has_stree = desc.stat_desc.has_stree;\n const extra = desc.stat_desc.extra_bits;\n const base = desc.stat_desc.extra_base;\n const max_length = desc.stat_desc.max_length;\n let h; /* heap index */\n let n, m; /* iterate over the tree elements */\n let bits; /* bit length */\n let xbits; /* extra bits */\n let f; /* frequency */\n let overflow = 0; /* number of elements with bit length too large */\n\n for (bits = 0; bits <= MAX_BITS$1; bits++) {\n s.bl_count[bits] = 0;\n }\n\n /* In a first pass, compute the optimal bit lengths (which may\n * overflow in the case of the bit length tree).\n */\n tree[s.heap[s.heap_max] * 2 + 1]/*.Len*/ = 0; /* root of the heap */\n\n for (h = s.heap_max + 1; h < HEAP_SIZE$1; h++) {\n n = s.heap[h];\n bits = tree[tree[n * 2 + 1]/*.Dad*/ * 2 + 1]/*.Len*/ + 1;\n if (bits > max_length) {\n bits = max_length;\n overflow++;\n }\n tree[n * 2 + 1]/*.Len*/ = bits;\n /* We overwrite tree[n].Dad which is no longer needed */\n\n if (n > max_code) { continue; } /* not a leaf node */\n\n s.bl_count[bits]++;\n xbits = 0;\n if (n >= base) {\n xbits = extra[n - base];\n }\n f = tree[n * 2]/*.Freq*/;\n s.opt_len += f * (bits + xbits);\n if (has_stree) {\n s.static_len += f * (stree[n * 2 + 1]/*.Len*/ + xbits);\n }\n }\n if (overflow === 0) { return; }\n\n // Tracev((stderr,\"\\nbit length overflow\\n\"));\n /* This happens for example on obj2 and pic of the Calgary corpus */\n\n /* Find the first bit length which could increase: */\n do {\n bits = max_length - 1;\n while (s.bl_count[bits] === 0) { bits--; }\n s.bl_count[bits]--; /* move one leaf down the tree */\n s.bl_count[bits + 1] += 2; /* move one overflow item as its brother */\n s.bl_count[max_length]--;\n /* The brother of the overflow item also moves one step up,\n * but this does not affect bl_count[max_length]\n */\n overflow -= 2;\n } while (overflow > 0);\n\n /* Now recompute all bit lengths, scanning in increasing frequency.\n * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all\n * lengths instead of fixing only the wrong ones. This idea is taken\n * from 'ar' written by Haruhiko Okumura.)\n */\n for (bits = max_length; bits !== 0; bits--) {\n n = s.bl_count[bits];\n while (n !== 0) {\n m = s.heap[--h];\n if (m > max_code) { continue; }\n if (tree[m * 2 + 1]/*.Len*/ !== bits) {\n // Tracev((stderr,\"code %d bits %d->%d\\n\", m, tree[m].Len, bits));\n s.opt_len += (bits - tree[m * 2 + 1]/*.Len*/) * tree[m * 2]/*.Freq*/;\n tree[m * 2 + 1]/*.Len*/ = bits;\n }\n n--;\n }\n }\n};\n\n\n/* ===========================================================================\n * Generate the codes for a given tree and bit counts (which need not be\n * optimal).\n * IN assertion: the array bl_count contains the bit length statistics for\n * the given tree and the field len is set for all tree elements.\n * OUT assertion: the field code is set for all tree elements of non\n * zero code length.\n */\nconst gen_codes = (tree, max_code, bl_count) => {\n// ct_data *tree; /* the tree to decorate */\n// int max_code; /* largest code with non zero frequency */\n// ushf *bl_count; /* number of codes at each bit length */\n\n const next_code = new Array(MAX_BITS$1 + 1); /* next code value for each bit length */\n let code = 0; /* running code value */\n let bits; /* bit index */\n let n; /* code index */\n\n /* The distribution counts are first used to generate the code values\n * without bit reversal.\n */\n for (bits = 1; bits <= MAX_BITS$1; bits++) {\n code = (code + bl_count[bits - 1]) << 1;\n next_code[bits] = code;\n }\n /* Check that the bit counts in bl_count are consistent. The last code\n * must be all ones.\n */\n //Assert (code + bl_count[MAX_BITS]-1 == (1< {\n\n let n; /* iterates over tree elements */\n let bits; /* bit counter */\n let length; /* length value */\n let code; /* code value */\n let dist; /* distance index */\n const bl_count = new Array(MAX_BITS$1 + 1);\n /* number of codes at each bit length for an optimal tree */\n\n // do check in _tr_init()\n //if (static_init_done) return;\n\n /* For some embedded targets, global variables are not initialized: */\n/*#ifdef NO_INIT_GLOBAL_POINTERS\n static_l_desc.static_tree = static_ltree;\n static_l_desc.extra_bits = extra_lbits;\n static_d_desc.static_tree = static_dtree;\n static_d_desc.extra_bits = extra_dbits;\n static_bl_desc.extra_bits = extra_blbits;\n#endif*/\n\n /* Initialize the mapping length (0..255) -> length code (0..28) */\n length = 0;\n for (code = 0; code < LENGTH_CODES$1 - 1; code++) {\n base_length[code] = length;\n for (n = 0; n < (1 << extra_lbits[code]); n++) {\n _length_code[length++] = code;\n }\n }\n //Assert (length == 256, \"tr_static_init: length != 256\");\n /* Note that the length 255 (match length 258) can be represented\n * in two different ways: code 284 + 5 bits or code 285, so we\n * overwrite length_code[255] to use the best encoding:\n */\n _length_code[length - 1] = code;\n\n /* Initialize the mapping dist (0..32K) -> dist code (0..29) */\n dist = 0;\n for (code = 0; code < 16; code++) {\n base_dist[code] = dist;\n for (n = 0; n < (1 << extra_dbits[code]); n++) {\n _dist_code[dist++] = code;\n }\n }\n //Assert (dist == 256, \"tr_static_init: dist != 256\");\n dist >>= 7; /* from now on, all distances are divided by 128 */\n for (; code < D_CODES$1; code++) {\n base_dist[code] = dist << 7;\n for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) {\n _dist_code[256 + dist++] = code;\n }\n }\n //Assert (dist == 256, \"tr_static_init: 256+dist != 512\");\n\n /* Construct the codes of the static literal tree */\n for (bits = 0; bits <= MAX_BITS$1; bits++) {\n bl_count[bits] = 0;\n }\n\n n = 0;\n while (n <= 143) {\n static_ltree[n * 2 + 1]/*.Len*/ = 8;\n n++;\n bl_count[8]++;\n }\n while (n <= 255) {\n static_ltree[n * 2 + 1]/*.Len*/ = 9;\n n++;\n bl_count[9]++;\n }\n while (n <= 279) {\n static_ltree[n * 2 + 1]/*.Len*/ = 7;\n n++;\n bl_count[7]++;\n }\n while (n <= 287) {\n static_ltree[n * 2 + 1]/*.Len*/ = 8;\n n++;\n bl_count[8]++;\n }\n /* Codes 286 and 287 do not exist, but we must include them in the\n * tree construction to get a canonical Huffman tree (longest code\n * all ones)\n */\n gen_codes(static_ltree, L_CODES$1 + 1, bl_count);\n\n /* The static distance tree is trivial: */\n for (n = 0; n < D_CODES$1; n++) {\n static_dtree[n * 2 + 1]/*.Len*/ = 5;\n static_dtree[n * 2]/*.Code*/ = bi_reverse(n, 5);\n }\n\n // Now data ready and we can init static trees\n static_l_desc = new StaticTreeDesc(static_ltree, extra_lbits, LITERALS$1 + 1, L_CODES$1, MAX_BITS$1);\n static_d_desc = new StaticTreeDesc(static_dtree, extra_dbits, 0, D_CODES$1, MAX_BITS$1);\n static_bl_desc = new StaticTreeDesc(new Array(0), extra_blbits, 0, BL_CODES$1, MAX_BL_BITS);\n\n //static_init_done = true;\n};\n\n\n/* ===========================================================================\n * Initialize a new block.\n */\nconst init_block = (s) => {\n\n let n; /* iterates over tree elements */\n\n /* Initialize the trees. */\n for (n = 0; n < L_CODES$1; n++) { s.dyn_ltree[n * 2]/*.Freq*/ = 0; }\n for (n = 0; n < D_CODES$1; n++) { s.dyn_dtree[n * 2]/*.Freq*/ = 0; }\n for (n = 0; n < BL_CODES$1; n++) { s.bl_tree[n * 2]/*.Freq*/ = 0; }\n\n s.dyn_ltree[END_BLOCK * 2]/*.Freq*/ = 1;\n s.opt_len = s.static_len = 0;\n s.sym_next = s.matches = 0;\n};\n\n\n/* ===========================================================================\n * Flush the bit buffer and align the output on a byte boundary\n */\nconst bi_windup = (s) =>\n{\n if (s.bi_valid > 8) {\n put_short(s, s.bi_buf);\n } else if (s.bi_valid > 0) {\n //put_byte(s, (Byte)s->bi_buf);\n s.pending_buf[s.pending++] = s.bi_buf;\n }\n s.bi_buf = 0;\n s.bi_valid = 0;\n};\n\n/* ===========================================================================\n * Compares to subtrees, using the tree depth as tie breaker when\n * the subtrees have equal frequency. This minimizes the worst case length.\n */\nconst smaller = (tree, n, m, depth) => {\n\n const _n2 = n * 2;\n const _m2 = m * 2;\n return (tree[_n2]/*.Freq*/ < tree[_m2]/*.Freq*/ ||\n (tree[_n2]/*.Freq*/ === tree[_m2]/*.Freq*/ && depth[n] <= depth[m]));\n};\n\n/* ===========================================================================\n * Restore the heap property by moving down the tree starting at node k,\n * exchanging a node with the smallest of its two sons if necessary, stopping\n * when the heap property is re-established (each father smaller than its\n * two sons).\n */\nconst pqdownheap = (s, tree, k) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to restore */\n// int k; /* node to move down */\n\n const v = s.heap[k];\n let j = k << 1; /* left son of k */\n while (j <= s.heap_len) {\n /* Set j to the smallest of the two sons: */\n if (j < s.heap_len &&\n smaller(tree, s.heap[j + 1], s.heap[j], s.depth)) {\n j++;\n }\n /* Exit if v is smaller than both sons */\n if (smaller(tree, v, s.heap[j], s.depth)) { break; }\n\n /* Exchange v with the smallest son */\n s.heap[k] = s.heap[j];\n k = j;\n\n /* And continue down the tree, setting j to the left son of k */\n j <<= 1;\n }\n s.heap[k] = v;\n};\n\n\n// inlined manually\n// const SMALLEST = 1;\n\n/* ===========================================================================\n * Send the block data compressed using the given Huffman trees\n */\nconst compress_block = (s, ltree, dtree) => {\n// deflate_state *s;\n// const ct_data *ltree; /* literal tree */\n// const ct_data *dtree; /* distance tree */\n\n let dist; /* distance of matched string */\n let lc; /* match length or unmatched char (if dist == 0) */\n let sx = 0; /* running index in sym_buf */\n let code; /* the code to send */\n let extra; /* number of extra bits to send */\n\n if (s.sym_next !== 0) {\n do {\n dist = s.pending_buf[s.sym_buf + sx++] & 0xff;\n dist += (s.pending_buf[s.sym_buf + sx++] & 0xff) << 8;\n lc = s.pending_buf[s.sym_buf + sx++];\n if (dist === 0) {\n send_code(s, lc, ltree); /* send a literal byte */\n //Tracecv(isgraph(lc), (stderr,\" '%c' \", lc));\n } else {\n /* Here, lc is the match length - MIN_MATCH */\n code = _length_code[lc];\n send_code(s, code + LITERALS$1 + 1, ltree); /* send the length code */\n extra = extra_lbits[code];\n if (extra !== 0) {\n lc -= base_length[code];\n send_bits(s, lc, extra); /* send the extra length bits */\n }\n dist--; /* dist is now the match distance - 1 */\n code = d_code(dist);\n //Assert (code < D_CODES, \"bad d_code\");\n\n send_code(s, code, dtree); /* send the distance code */\n extra = extra_dbits[code];\n if (extra !== 0) {\n dist -= base_dist[code];\n send_bits(s, dist, extra); /* send the extra distance bits */\n }\n } /* literal or match pair ? */\n\n /* Check that the overlay between pending_buf and sym_buf is ok: */\n //Assert(s->pending < s->lit_bufsize + sx, \"pendingBuf overflow\");\n\n } while (sx < s.sym_next);\n }\n\n send_code(s, END_BLOCK, ltree);\n};\n\n\n/* ===========================================================================\n * Construct one Huffman tree and assigns the code bit strings and lengths.\n * Update the total bit length for the current block.\n * IN assertion: the field freq is set for all tree elements.\n * OUT assertions: the fields len and code are set to the optimal bit length\n * and corresponding code. The length opt_len is updated; static_len is\n * also updated if stree is not null. The field max_code is set.\n */\nconst build_tree = (s, desc) => {\n// deflate_state *s;\n// tree_desc *desc; /* the tree descriptor */\n\n const tree = desc.dyn_tree;\n const stree = desc.stat_desc.static_tree;\n const has_stree = desc.stat_desc.has_stree;\n const elems = desc.stat_desc.elems;\n let n, m; /* iterate over heap elements */\n let max_code = -1; /* largest code with non zero frequency */\n let node; /* new node being created */\n\n /* Construct the initial heap, with least frequent element in\n * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1].\n * heap[0] is not used.\n */\n s.heap_len = 0;\n s.heap_max = HEAP_SIZE$1;\n\n for (n = 0; n < elems; n++) {\n if (tree[n * 2]/*.Freq*/ !== 0) {\n s.heap[++s.heap_len] = max_code = n;\n s.depth[n] = 0;\n\n } else {\n tree[n * 2 + 1]/*.Len*/ = 0;\n }\n }\n\n /* The pkzip format requires that at least one distance code exists,\n * and that at least one bit should be sent even if there is only one\n * possible code. So to avoid special checks later on we force at least\n * two codes of non zero frequency.\n */\n while (s.heap_len < 2) {\n node = s.heap[++s.heap_len] = (max_code < 2 ? ++max_code : 0);\n tree[node * 2]/*.Freq*/ = 1;\n s.depth[node] = 0;\n s.opt_len--;\n\n if (has_stree) {\n s.static_len -= stree[node * 2 + 1]/*.Len*/;\n }\n /* node is 0 or 1 so it does not have extra bits */\n }\n desc.max_code = max_code;\n\n /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree,\n * establish sub-heaps of increasing lengths:\n */\n for (n = (s.heap_len >> 1/*int /2*/); n >= 1; n--) { pqdownheap(s, tree, n); }\n\n /* Construct the Huffman tree by repeatedly combining the least two\n * frequent nodes.\n */\n node = elems; /* next internal node of the tree */\n do {\n //pqremove(s, tree, n); /* n = node of least frequency */\n /*** pqremove ***/\n n = s.heap[1/*SMALLEST*/];\n s.heap[1/*SMALLEST*/] = s.heap[s.heap_len--];\n pqdownheap(s, tree, 1/*SMALLEST*/);\n /***/\n\n m = s.heap[1/*SMALLEST*/]; /* m = node of next least frequency */\n\n s.heap[--s.heap_max] = n; /* keep the nodes sorted by frequency */\n s.heap[--s.heap_max] = m;\n\n /* Create a new node father of n and m */\n tree[node * 2]/*.Freq*/ = tree[n * 2]/*.Freq*/ + tree[m * 2]/*.Freq*/;\n s.depth[node] = (s.depth[n] >= s.depth[m] ? s.depth[n] : s.depth[m]) + 1;\n tree[n * 2 + 1]/*.Dad*/ = tree[m * 2 + 1]/*.Dad*/ = node;\n\n /* and insert the new node in the heap */\n s.heap[1/*SMALLEST*/] = node++;\n pqdownheap(s, tree, 1/*SMALLEST*/);\n\n } while (s.heap_len >= 2);\n\n s.heap[--s.heap_max] = s.heap[1/*SMALLEST*/];\n\n /* At this point, the fields freq and dad are set. We can now\n * generate the bit lengths.\n */\n gen_bitlen(s, desc);\n\n /* The field len is now set, we can generate the bit codes */\n gen_codes(tree, max_code, s.bl_count);\n};\n\n\n/* ===========================================================================\n * Scan a literal or distance tree to determine the frequencies of the codes\n * in the bit length tree.\n */\nconst scan_tree = (s, tree, max_code) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to be scanned */\n// int max_code; /* and its largest code of non zero frequency */\n\n let n; /* iterates over all tree elements */\n let prevlen = -1; /* last emitted length */\n let curlen; /* length of current code */\n\n let nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */\n\n let count = 0; /* repeat count of the current code */\n let max_count = 7; /* max repeat count */\n let min_count = 4; /* min repeat count */\n\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n }\n tree[(max_code + 1) * 2 + 1]/*.Len*/ = 0xffff; /* guard */\n\n for (n = 0; n <= max_code; n++) {\n curlen = nextlen;\n nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;\n\n if (++count < max_count && curlen === nextlen) {\n continue;\n\n } else if (count < min_count) {\n s.bl_tree[curlen * 2]/*.Freq*/ += count;\n\n } else if (curlen !== 0) {\n\n if (curlen !== prevlen) { s.bl_tree[curlen * 2]/*.Freq*/++; }\n s.bl_tree[REP_3_6 * 2]/*.Freq*/++;\n\n } else if (count <= 10) {\n s.bl_tree[REPZ_3_10 * 2]/*.Freq*/++;\n\n } else {\n s.bl_tree[REPZ_11_138 * 2]/*.Freq*/++;\n }\n\n count = 0;\n prevlen = curlen;\n\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n\n } else if (curlen === nextlen) {\n max_count = 6;\n min_count = 3;\n\n } else {\n max_count = 7;\n min_count = 4;\n }\n }\n};\n\n\n/* ===========================================================================\n * Send a literal or distance tree in compressed form, using the codes in\n * bl_tree.\n */\nconst send_tree = (s, tree, max_code) => {\n// deflate_state *s;\n// ct_data *tree; /* the tree to be scanned */\n// int max_code; /* and its largest code of non zero frequency */\n\n let n; /* iterates over all tree elements */\n let prevlen = -1; /* last emitted length */\n let curlen; /* length of current code */\n\n let nextlen = tree[0 * 2 + 1]/*.Len*/; /* length of next code */\n\n let count = 0; /* repeat count of the current code */\n let max_count = 7; /* max repeat count */\n let min_count = 4; /* min repeat count */\n\n /* tree[max_code+1].Len = -1; */ /* guard already set */\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n }\n\n for (n = 0; n <= max_code; n++) {\n curlen = nextlen;\n nextlen = tree[(n + 1) * 2 + 1]/*.Len*/;\n\n if (++count < max_count && curlen === nextlen) {\n continue;\n\n } else if (count < min_count) {\n do { send_code(s, curlen, s.bl_tree); } while (--count !== 0);\n\n } else if (curlen !== 0) {\n if (curlen !== prevlen) {\n send_code(s, curlen, s.bl_tree);\n count--;\n }\n //Assert(count >= 3 && count <= 6, \" 3_6?\");\n send_code(s, REP_3_6, s.bl_tree);\n send_bits(s, count - 3, 2);\n\n } else if (count <= 10) {\n send_code(s, REPZ_3_10, s.bl_tree);\n send_bits(s, count - 3, 3);\n\n } else {\n send_code(s, REPZ_11_138, s.bl_tree);\n send_bits(s, count - 11, 7);\n }\n\n count = 0;\n prevlen = curlen;\n if (nextlen === 0) {\n max_count = 138;\n min_count = 3;\n\n } else if (curlen === nextlen) {\n max_count = 6;\n min_count = 3;\n\n } else {\n max_count = 7;\n min_count = 4;\n }\n }\n};\n\n\n/* ===========================================================================\n * Construct the Huffman tree for the bit lengths and return the index in\n * bl_order of the last bit length code to send.\n */\nconst build_bl_tree = (s) => {\n\n let max_blindex; /* index of last bit length code of non zero freq */\n\n /* Determine the bit length frequencies for literal and distance trees */\n scan_tree(s, s.dyn_ltree, s.l_desc.max_code);\n scan_tree(s, s.dyn_dtree, s.d_desc.max_code);\n\n /* Build the bit length tree: */\n build_tree(s, s.bl_desc);\n /* opt_len now includes the length of the tree representations, except\n * the lengths of the bit lengths codes and the 5+5+4 bits for the counts.\n */\n\n /* Determine the number of bit length codes to send. The pkzip format\n * requires that at least 4 bit length codes be sent. (appnote.txt says\n * 3 but the actual value used is 4.)\n */\n for (max_blindex = BL_CODES$1 - 1; max_blindex >= 3; max_blindex--) {\n if (s.bl_tree[bl_order[max_blindex] * 2 + 1]/*.Len*/ !== 0) {\n break;\n }\n }\n /* Update opt_len to include the bit length tree and counts */\n s.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4;\n //Tracev((stderr, \"\\ndyn trees: dyn %ld, stat %ld\",\n // s->opt_len, s->static_len));\n\n return max_blindex;\n};\n\n\n/* ===========================================================================\n * Send the header for a block using dynamic Huffman trees: the counts, the\n * lengths of the bit length codes, the literal tree and the distance tree.\n * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4.\n */\nconst send_all_trees = (s, lcodes, dcodes, blcodes) => {\n// deflate_state *s;\n// int lcodes, dcodes, blcodes; /* number of codes for each tree */\n\n let rank; /* index in bl_order */\n\n //Assert (lcodes >= 257 && dcodes >= 1 && blcodes >= 4, \"not enough codes\");\n //Assert (lcodes <= L_CODES && dcodes <= D_CODES && blcodes <= BL_CODES,\n // \"too many codes\");\n //Tracev((stderr, \"\\nbl counts: \"));\n send_bits(s, lcodes - 257, 5); /* not +255 as stated in appnote.txt */\n send_bits(s, dcodes - 1, 5);\n send_bits(s, blcodes - 4, 4); /* not -3 as stated in appnote.txt */\n for (rank = 0; rank < blcodes; rank++) {\n //Tracev((stderr, \"\\nbl code %2d \", bl_order[rank]));\n send_bits(s, s.bl_tree[bl_order[rank] * 2 + 1]/*.Len*/, 3);\n }\n //Tracev((stderr, \"\\nbl tree: sent %ld\", s->bits_sent));\n\n send_tree(s, s.dyn_ltree, lcodes - 1); /* literal tree */\n //Tracev((stderr, \"\\nlit tree: sent %ld\", s->bits_sent));\n\n send_tree(s, s.dyn_dtree, dcodes - 1); /* distance tree */\n //Tracev((stderr, \"\\ndist tree: sent %ld\", s->bits_sent));\n};\n\n\n/* ===========================================================================\n * Check if the data type is TEXT or BINARY, using the following algorithm:\n * - TEXT if the two conditions below are satisfied:\n * a) There are no non-portable control characters belonging to the\n * \"block list\" (0..6, 14..25, 28..31).\n * b) There is at least one printable character belonging to the\n * \"allow list\" (9 {TAB}, 10 {LF}, 13 {CR}, 32..255).\n * - BINARY otherwise.\n * - The following partially-portable control characters form a\n * \"gray list\" that is ignored in this detection algorithm:\n * (7 {BEL}, 8 {BS}, 11 {VT}, 12 {FF}, 26 {SUB}, 27 {ESC}).\n * IN assertion: the fields Freq of dyn_ltree are set.\n */\nconst detect_data_type = (s) => {\n /* block_mask is the bit mask of block-listed bytes\n * set bits 0..6, 14..25, and 28..31\n * 0xf3ffc07f = binary 11110011111111111100000001111111\n */\n let block_mask = 0xf3ffc07f;\n let n;\n\n /* Check for non-textual (\"block-listed\") bytes. */\n for (n = 0; n <= 31; n++, block_mask >>>= 1) {\n if ((block_mask & 1) && (s.dyn_ltree[n * 2]/*.Freq*/ !== 0)) {\n return Z_BINARY;\n }\n }\n\n /* Check for textual (\"allow-listed\") bytes. */\n if (s.dyn_ltree[9 * 2]/*.Freq*/ !== 0 || s.dyn_ltree[10 * 2]/*.Freq*/ !== 0 ||\n s.dyn_ltree[13 * 2]/*.Freq*/ !== 0) {\n return Z_TEXT;\n }\n for (n = 32; n < LITERALS$1; n++) {\n if (s.dyn_ltree[n * 2]/*.Freq*/ !== 0) {\n return Z_TEXT;\n }\n }\n\n /* There are no \"block-listed\" or \"allow-listed\" bytes:\n * this stream either is empty or has tolerated (\"gray-listed\") bytes only.\n */\n return Z_BINARY;\n};\n\n\nlet static_init_done = false;\n\n/* ===========================================================================\n * Initialize the tree data structures for a new zlib stream.\n */\nconst _tr_init$1 = (s) =>\n{\n\n if (!static_init_done) {\n tr_static_init();\n static_init_done = true;\n }\n\n s.l_desc = new TreeDesc(s.dyn_ltree, static_l_desc);\n s.d_desc = new TreeDesc(s.dyn_dtree, static_d_desc);\n s.bl_desc = new TreeDesc(s.bl_tree, static_bl_desc);\n\n s.bi_buf = 0;\n s.bi_valid = 0;\n\n /* Initialize the first block of the first file: */\n init_block(s);\n};\n\n\n/* ===========================================================================\n * Send a stored block\n */\nconst _tr_stored_block$1 = (s, buf, stored_len, last) => {\n//DeflateState *s;\n//charf *buf; /* input block */\n//ulg stored_len; /* length of input block */\n//int last; /* one if this is the last block for a file */\n\n send_bits(s, (STORED_BLOCK << 1) + (last ? 1 : 0), 3); /* send block type */\n bi_windup(s); /* align on byte boundary */\n put_short(s, stored_len);\n put_short(s, ~stored_len);\n if (stored_len) {\n s.pending_buf.set(s.window.subarray(buf, buf + stored_len), s.pending);\n }\n s.pending += stored_len;\n};\n\n\n/* ===========================================================================\n * Send one empty static block to give enough lookahead for inflate.\n * This takes 10 bits, of which 7 may remain in the bit buffer.\n */\nconst _tr_align$1 = (s) => {\n send_bits(s, STATIC_TREES << 1, 3);\n send_code(s, END_BLOCK, static_ltree);\n bi_flush(s);\n};\n\n\n/* ===========================================================================\n * Determine the best encoding for the current block: dynamic trees, static\n * trees or store, and write out the encoded block.\n */\nconst _tr_flush_block$1 = (s, buf, stored_len, last) => {\n//DeflateState *s;\n//charf *buf; /* input block, or NULL if too old */\n//ulg stored_len; /* length of input block */\n//int last; /* one if this is the last block for a file */\n\n let opt_lenb, static_lenb; /* opt_len and static_len in bytes */\n let max_blindex = 0; /* index of last bit length code of non zero freq */\n\n /* Build the Huffman trees unless a stored block is forced */\n if (s.level > 0) {\n\n /* Check if the file is binary or text */\n if (s.strm.data_type === Z_UNKNOWN$1) {\n s.strm.data_type = detect_data_type(s);\n }\n\n /* Construct the literal and distance trees */\n build_tree(s, s.l_desc);\n // Tracev((stderr, \"\\nlit data: dyn %ld, stat %ld\", s->opt_len,\n // s->static_len));\n\n build_tree(s, s.d_desc);\n // Tracev((stderr, \"\\ndist data: dyn %ld, stat %ld\", s->opt_len,\n // s->static_len));\n /* At this point, opt_len and static_len are the total bit lengths of\n * the compressed block data, excluding the tree representations.\n */\n\n /* Build the bit length tree for the above two trees, and get the index\n * in bl_order of the last bit length code to send.\n */\n max_blindex = build_bl_tree(s);\n\n /* Determine the best encoding. Compute the block lengths in bytes. */\n opt_lenb = (s.opt_len + 3 + 7) >>> 3;\n static_lenb = (s.static_len + 3 + 7) >>> 3;\n\n // Tracev((stderr, \"\\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u \",\n // opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,\n // s->sym_next / 3));\n\n if (static_lenb <= opt_lenb) { opt_lenb = static_lenb; }\n\n } else {\n // Assert(buf != (char*)0, \"lost buf\");\n opt_lenb = static_lenb = stored_len + 5; /* force a stored block */\n }\n\n if ((stored_len + 4 <= opt_lenb) && (buf !== -1)) {\n /* 4: two words for the lengths */\n\n /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE.\n * Otherwise we can't have processed more than WSIZE input bytes since\n * the last block flush, because compression would have been\n * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to\n * transform a block into a stored block.\n */\n _tr_stored_block$1(s, buf, stored_len, last);\n\n } else if (s.strategy === Z_FIXED$1 || static_lenb === opt_lenb) {\n\n send_bits(s, (STATIC_TREES << 1) + (last ? 1 : 0), 3);\n compress_block(s, static_ltree, static_dtree);\n\n } else {\n send_bits(s, (DYN_TREES << 1) + (last ? 1 : 0), 3);\n send_all_trees(s, s.l_desc.max_code + 1, s.d_desc.max_code + 1, max_blindex + 1);\n compress_block(s, s.dyn_ltree, s.dyn_dtree);\n }\n // Assert (s->compressed_len == s->bits_sent, \"bad compressed size\");\n /* The above check is made mod 2^32, for files larger than 512 MB\n * and uLong implemented on 32 bits.\n */\n init_block(s);\n\n if (last) {\n bi_windup(s);\n }\n // Tracev((stderr,\"\\ncomprlen %lu(%lu) \", s->compressed_len>>3,\n // s->compressed_len-7*last));\n};\n\n/* ===========================================================================\n * Save the match info and tally the frequency counts. Return true if\n * the current block must be flushed.\n */\nconst _tr_tally$1 = (s, dist, lc) => {\n// deflate_state *s;\n// unsigned dist; /* distance of matched string */\n// unsigned lc; /* match length-MIN_MATCH or unmatched char (if dist==0) */\n\n s.pending_buf[s.sym_buf + s.sym_next++] = dist;\n s.pending_buf[s.sym_buf + s.sym_next++] = dist >> 8;\n s.pending_buf[s.sym_buf + s.sym_next++] = lc;\n if (dist === 0) {\n /* lc is the unmatched char */\n s.dyn_ltree[lc * 2]/*.Freq*/++;\n } else {\n s.matches++;\n /* Here, lc is the match length - MIN_MATCH */\n dist--; /* dist = match distance - 1 */\n //Assert((ush)dist < (ush)MAX_DIST(s) &&\n // (ush)lc <= (ush)(MAX_MATCH-MIN_MATCH) &&\n // (ush)d_code(dist) < (ush)D_CODES, \"_tr_tally: bad match\");\n\n s.dyn_ltree[(_length_code[lc] + LITERALS$1 + 1) * 2]/*.Freq*/++;\n s.dyn_dtree[d_code(dist) * 2]/*.Freq*/++;\n }\n\n return (s.sym_next === s.sym_end);\n};\n\nvar _tr_init_1 = _tr_init$1;\nvar _tr_stored_block_1 = _tr_stored_block$1;\nvar _tr_flush_block_1 = _tr_flush_block$1;\nvar _tr_tally_1 = _tr_tally$1;\nvar _tr_align_1 = _tr_align$1;\n\nvar trees = {\n\t_tr_init: _tr_init_1,\n\t_tr_stored_block: _tr_stored_block_1,\n\t_tr_flush_block: _tr_flush_block_1,\n\t_tr_tally: _tr_tally_1,\n\t_tr_align: _tr_align_1\n};\n\n// Note: adler32 takes 12% for level 0 and 2% for level 6.\n// It isn't worth it to make additional optimizations as in original.\n// Small size is preferable.\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst adler32 = (adler, buf, len, pos) => {\n let s1 = (adler & 0xffff) |0,\n s2 = ((adler >>> 16) & 0xffff) |0,\n n = 0;\n\n while (len !== 0) {\n // Set limit ~ twice less than 5552, to keep\n // s2 in 31-bits, because we force signed ints.\n // in other case %= will fail.\n n = len > 2000 ? 2000 : len;\n len -= n;\n\n do {\n s1 = (s1 + buf[pos++]) |0;\n s2 = (s2 + s1) |0;\n } while (--n);\n\n s1 %= 65521;\n s2 %= 65521;\n }\n\n return (s1 | (s2 << 16)) |0;\n};\n\n\nvar adler32_1 = adler32;\n\n// Note: we can't get significant speed boost here.\n// So write code to minimize size - no pregenerated tables\n// and array tools dependencies.\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n// Use ordinary array, since untyped makes no boost here\nconst makeTable = () => {\n let c, table = [];\n\n for (var n = 0; n < 256; n++) {\n c = n;\n for (var k = 0; k < 8; k++) {\n c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1));\n }\n table[n] = c;\n }\n\n return table;\n};\n\n// Create table on load. Just 255 signed longs. Not a problem.\nconst crcTable = new Uint32Array(makeTable());\n\n\nconst crc32 = (crc, buf, len, pos) => {\n const t = crcTable;\n const end = pos + len;\n\n crc ^= -1;\n\n for (let i = pos; i < end; i++) {\n crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF];\n }\n\n return (crc ^ (-1)); // >>> 0;\n};\n\n\nvar crc32_1 = crc32;\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nvar messages = {\n 2: 'need dictionary', /* Z_NEED_DICT 2 */\n 1: 'stream end', /* Z_STREAM_END 1 */\n 0: '', /* Z_OK 0 */\n '-1': 'file error', /* Z_ERRNO (-1) */\n '-2': 'stream error', /* Z_STREAM_ERROR (-2) */\n '-3': 'data error', /* Z_DATA_ERROR (-3) */\n '-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */\n '-5': 'buffer error', /* Z_BUF_ERROR (-5) */\n '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nvar constants$2 = {\n\n /* Allowed flush values; see deflate() and inflate() below for details */\n Z_NO_FLUSH: 0,\n Z_PARTIAL_FLUSH: 1,\n Z_SYNC_FLUSH: 2,\n Z_FULL_FLUSH: 3,\n Z_FINISH: 4,\n Z_BLOCK: 5,\n Z_TREES: 6,\n\n /* Return codes for the compression/decompression functions. Negative values\n * are errors, positive values are used for special but normal events.\n */\n Z_OK: 0,\n Z_STREAM_END: 1,\n Z_NEED_DICT: 2,\n Z_ERRNO: -1,\n Z_STREAM_ERROR: -2,\n Z_DATA_ERROR: -3,\n Z_MEM_ERROR: -4,\n Z_BUF_ERROR: -5,\n //Z_VERSION_ERROR: -6,\n\n /* compression levels */\n Z_NO_COMPRESSION: 0,\n Z_BEST_SPEED: 1,\n Z_BEST_COMPRESSION: 9,\n Z_DEFAULT_COMPRESSION: -1,\n\n\n Z_FILTERED: 1,\n Z_HUFFMAN_ONLY: 2,\n Z_RLE: 3,\n Z_FIXED: 4,\n Z_DEFAULT_STRATEGY: 0,\n\n /* Possible values of the data_type field (though see inflate()) */\n Z_BINARY: 0,\n Z_TEXT: 1,\n //Z_ASCII: 1, // = Z_TEXT (deprecated)\n Z_UNKNOWN: 2,\n\n /* The deflate compression method */\n Z_DEFLATED: 8\n //Z_NULL: null // Use -1 or null inline, depending on var type\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst { _tr_init, _tr_stored_block, _tr_flush_block, _tr_tally, _tr_align } = trees;\n\n\n\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH: Z_NO_FLUSH$2, Z_PARTIAL_FLUSH, Z_FULL_FLUSH: Z_FULL_FLUSH$1, Z_FINISH: Z_FINISH$3, Z_BLOCK: Z_BLOCK$1,\n Z_OK: Z_OK$3, Z_STREAM_END: Z_STREAM_END$3, Z_STREAM_ERROR: Z_STREAM_ERROR$2, Z_DATA_ERROR: Z_DATA_ERROR$2, Z_BUF_ERROR: Z_BUF_ERROR$1,\n Z_DEFAULT_COMPRESSION: Z_DEFAULT_COMPRESSION$1,\n Z_FILTERED, Z_HUFFMAN_ONLY, Z_RLE, Z_FIXED, Z_DEFAULT_STRATEGY: Z_DEFAULT_STRATEGY$1,\n Z_UNKNOWN,\n Z_DEFLATED: Z_DEFLATED$2\n} = constants$2;\n\n/*============================================================================*/\n\n\nconst MAX_MEM_LEVEL = 9;\n/* Maximum value for memLevel in deflateInit2 */\nconst MAX_WBITS$1 = 15;\n/* 32K LZ77 window */\nconst DEF_MEM_LEVEL = 8;\n\n\nconst LENGTH_CODES = 29;\n/* number of length codes, not counting the special END_BLOCK code */\nconst LITERALS = 256;\n/* number of literal bytes 0..255 */\nconst L_CODES = LITERALS + 1 + LENGTH_CODES;\n/* number of Literal or Length codes, including the END_BLOCK code */\nconst D_CODES = 30;\n/* number of distance codes */\nconst BL_CODES = 19;\n/* number of codes used to transfer the bit lengths */\nconst HEAP_SIZE = 2 * L_CODES + 1;\n/* maximum heap size */\nconst MAX_BITS = 15;\n/* All codes must not exceed MAX_BITS bits */\n\nconst MIN_MATCH = 3;\nconst MAX_MATCH = 258;\nconst MIN_LOOKAHEAD = (MAX_MATCH + MIN_MATCH + 1);\n\nconst PRESET_DICT = 0x20;\n\nconst INIT_STATE = 42; /* zlib header -> BUSY_STATE */\n//#ifdef GZIP\nconst GZIP_STATE = 57; /* gzip header -> BUSY_STATE | EXTRA_STATE */\n//#endif\nconst EXTRA_STATE = 69; /* gzip extra block -> NAME_STATE */\nconst NAME_STATE = 73; /* gzip file name -> COMMENT_STATE */\nconst COMMENT_STATE = 91; /* gzip comment -> HCRC_STATE */\nconst HCRC_STATE = 103; /* gzip header CRC -> BUSY_STATE */\nconst BUSY_STATE = 113; /* deflate -> FINISH_STATE */\nconst FINISH_STATE = 666; /* stream complete */\n\nconst BS_NEED_MORE = 1; /* block not completed, need more input or more output */\nconst BS_BLOCK_DONE = 2; /* block flush performed */\nconst BS_FINISH_STARTED = 3; /* finish started, need only more output at next deflate */\nconst BS_FINISH_DONE = 4; /* finish done, accept no more input or output */\n\nconst OS_CODE = 0x03; // Unix :) . Don't detect, use this default.\n\nconst err = (strm, errorCode) => {\n strm.msg = messages[errorCode];\n return errorCode;\n};\n\nconst rank = (f) => {\n return ((f) * 2) - ((f) > 4 ? 9 : 0);\n};\n\nconst zero = (buf) => {\n let len = buf.length; while (--len >= 0) { buf[len] = 0; }\n};\n\n/* ===========================================================================\n * Slide the hash table when sliding the window down (could be avoided with 32\n * bit values at the expense of memory usage). We slide even when level == 0 to\n * keep the hash table consistent if we switch back to level > 0 later.\n */\nconst slide_hash = (s) => {\n let n, m;\n let p;\n let wsize = s.w_size;\n\n n = s.hash_size;\n p = n;\n do {\n m = s.head[--p];\n s.head[p] = (m >= wsize ? m - wsize : 0);\n } while (--n);\n n = wsize;\n//#ifndef FASTEST\n p = n;\n do {\n m = s.prev[--p];\n s.prev[p] = (m >= wsize ? m - wsize : 0);\n /* If n is not on any hash chain, prev[n] is garbage but\n * its value will never be used.\n */\n } while (--n);\n//#endif\n};\n\n/* eslint-disable new-cap */\nlet HASH_ZLIB = (s, prev, data) => ((prev << s.hash_shift) ^ data) & s.hash_mask;\n// This hash causes less collisions, https://github.com/nodeca/pako/issues/135\n// But breaks binary compatibility\n//let HASH_FAST = (s, prev, data) => ((prev << 8) + (prev >> 8) + (data << 4)) & s.hash_mask;\nlet HASH = HASH_ZLIB;\n\n\n/* =========================================================================\n * Flush as much pending output as possible. All deflate() output, except for\n * some deflate_stored() output, goes through this function so some\n * applications may wish to modify it to avoid allocating a large\n * strm->next_out buffer and copying into it. (See also read_buf()).\n */\nconst flush_pending = (strm) => {\n const s = strm.state;\n\n //_tr_flush_bits(s);\n let len = s.pending;\n if (len > strm.avail_out) {\n len = strm.avail_out;\n }\n if (len === 0) { return; }\n\n strm.output.set(s.pending_buf.subarray(s.pending_out, s.pending_out + len), strm.next_out);\n strm.next_out += len;\n s.pending_out += len;\n strm.total_out += len;\n strm.avail_out -= len;\n s.pending -= len;\n if (s.pending === 0) {\n s.pending_out = 0;\n }\n};\n\n\nconst flush_block_only = (s, last) => {\n _tr_flush_block(s, (s.block_start >= 0 ? s.block_start : -1), s.strstart - s.block_start, last);\n s.block_start = s.strstart;\n flush_pending(s.strm);\n};\n\n\nconst put_byte = (s, b) => {\n s.pending_buf[s.pending++] = b;\n};\n\n\n/* =========================================================================\n * Put a short in the pending buffer. The 16-bit value is put in MSB order.\n * IN assertion: the stream state is correct and there is enough room in\n * pending_buf.\n */\nconst putShortMSB = (s, b) => {\n\n // put_byte(s, (Byte)(b >> 8));\n// put_byte(s, (Byte)(b & 0xff));\n s.pending_buf[s.pending++] = (b >>> 8) & 0xff;\n s.pending_buf[s.pending++] = b & 0xff;\n};\n\n\n/* ===========================================================================\n * Read a new buffer from the current input stream, update the adler32\n * and total number of bytes read. All deflate() input goes through\n * this function so some applications may wish to modify it to avoid\n * allocating a large strm->input buffer and copying from it.\n * (See also flush_pending()).\n */\nconst read_buf = (strm, buf, start, size) => {\n\n let len = strm.avail_in;\n\n if (len > size) { len = size; }\n if (len === 0) { return 0; }\n\n strm.avail_in -= len;\n\n // zmemcpy(buf, strm->next_in, len);\n buf.set(strm.input.subarray(strm.next_in, strm.next_in + len), start);\n if (strm.state.wrap === 1) {\n strm.adler = adler32_1(strm.adler, buf, len, start);\n }\n\n else if (strm.state.wrap === 2) {\n strm.adler = crc32_1(strm.adler, buf, len, start);\n }\n\n strm.next_in += len;\n strm.total_in += len;\n\n return len;\n};\n\n\n/* ===========================================================================\n * Set match_start to the longest match starting at the given string and\n * return its length. Matches shorter or equal to prev_length are discarded,\n * in which case the result is equal to prev_length and match_start is\n * garbage.\n * IN assertions: cur_match is the head of the hash chain for the current\n * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1\n * OUT assertion: the match length is not greater than s->lookahead.\n */\nconst longest_match = (s, cur_match) => {\n\n let chain_length = s.max_chain_length; /* max hash chain length */\n let scan = s.strstart; /* current string */\n let match; /* matched string */\n let len; /* length of current match */\n let best_len = s.prev_length; /* best match length so far */\n let nice_match = s.nice_match; /* stop if match long enough */\n const limit = (s.strstart > (s.w_size - MIN_LOOKAHEAD)) ?\n s.strstart - (s.w_size - MIN_LOOKAHEAD) : 0/*NIL*/;\n\n const _win = s.window; // shortcut\n\n const wmask = s.w_mask;\n const prev = s.prev;\n\n /* Stop when cur_match becomes <= limit. To simplify the code,\n * we prevent matches with the string of window index 0.\n */\n\n const strend = s.strstart + MAX_MATCH;\n let scan_end1 = _win[scan + best_len - 1];\n let scan_end = _win[scan + best_len];\n\n /* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16.\n * It is easy to get rid of this optimization if necessary.\n */\n // Assert(s->hash_bits >= 8 && MAX_MATCH == 258, \"Code too clever\");\n\n /* Do not waste too much time if we already have a good match: */\n if (s.prev_length >= s.good_match) {\n chain_length >>= 2;\n }\n /* Do not look for matches beyond the end of the input. This is necessary\n * to make deflate deterministic.\n */\n if (nice_match > s.lookahead) { nice_match = s.lookahead; }\n\n // Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, \"need lookahead\");\n\n do {\n // Assert(cur_match < s->strstart, \"no future\");\n match = cur_match;\n\n /* Skip to next match if the match length cannot increase\n * or if the match length is less than 2. Note that the checks below\n * for insufficient lookahead only occur occasionally for performance\n * reasons. Therefore uninitialized memory will be accessed, and\n * conditional jumps will be made that depend on those values.\n * However the length of the match is limited to the lookahead, so\n * the output of deflate is not affected by the uninitialized values.\n */\n\n if (_win[match + best_len] !== scan_end ||\n _win[match + best_len - 1] !== scan_end1 ||\n _win[match] !== _win[scan] ||\n _win[++match] !== _win[scan + 1]) {\n continue;\n }\n\n /* The check at best_len-1 can be removed because it will be made\n * again later. (This heuristic is not always a win.)\n * It is not necessary to compare scan[2] and match[2] since they\n * are always equal when the other bytes match, given that\n * the hash keys are equal and that HASH_BITS >= 8.\n */\n scan += 2;\n match++;\n // Assert(*scan == *match, \"match[2]?\");\n\n /* We check for insufficient lookahead only every 8th comparison;\n * the 256th check will be made at strstart+258.\n */\n do {\n /*jshint noempty:false*/\n } while (_win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n _win[++scan] === _win[++match] && _win[++scan] === _win[++match] &&\n scan < strend);\n\n // Assert(scan <= s->window+(unsigned)(s->window_size-1), \"wild scan\");\n\n len = MAX_MATCH - (strend - scan);\n scan = strend - MAX_MATCH;\n\n if (len > best_len) {\n s.match_start = cur_match;\n best_len = len;\n if (len >= nice_match) {\n break;\n }\n scan_end1 = _win[scan + best_len - 1];\n scan_end = _win[scan + best_len];\n }\n } while ((cur_match = prev[cur_match & wmask]) > limit && --chain_length !== 0);\n\n if (best_len <= s.lookahead) {\n return best_len;\n }\n return s.lookahead;\n};\n\n\n/* ===========================================================================\n * Fill the window when the lookahead becomes insufficient.\n * Updates strstart and lookahead.\n *\n * IN assertion: lookahead < MIN_LOOKAHEAD\n * OUT assertions: strstart <= window_size-MIN_LOOKAHEAD\n * At least one byte has been read, or avail_in == 0; reads are\n * performed for at least two bytes (required for the zip translate_eol\n * option -- not supported here).\n */\nconst fill_window = (s) => {\n\n const _w_size = s.w_size;\n let n, more, str;\n\n //Assert(s->lookahead < MIN_LOOKAHEAD, \"already enough lookahead\");\n\n do {\n more = s.window_size - s.lookahead - s.strstart;\n\n // JS ints have 32 bit, block below not needed\n /* Deal with !@#$% 64K limit: */\n //if (sizeof(int) <= 2) {\n // if (more == 0 && s->strstart == 0 && s->lookahead == 0) {\n // more = wsize;\n //\n // } else if (more == (unsigned)(-1)) {\n // /* Very unlikely, but possible on 16 bit machine if\n // * strstart == 0 && lookahead == 1 (input done a byte at time)\n // */\n // more--;\n // }\n //}\n\n\n /* If the window is almost full and there is insufficient lookahead,\n * move the upper half to the lower one to make room in the upper half.\n */\n if (s.strstart >= _w_size + (_w_size - MIN_LOOKAHEAD)) {\n\n s.window.set(s.window.subarray(_w_size, _w_size + _w_size - more), 0);\n s.match_start -= _w_size;\n s.strstart -= _w_size;\n /* we now have strstart >= MAX_DIST */\n s.block_start -= _w_size;\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n slide_hash(s);\n more += _w_size;\n }\n if (s.strm.avail_in === 0) {\n break;\n }\n\n /* If there was no sliding:\n * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &&\n * more == window_size - lookahead - strstart\n * => more >= window_size - (MIN_LOOKAHEAD-1 + WSIZE + MAX_DIST-1)\n * => more >= window_size - 2*WSIZE + 2\n * In the BIG_MEM or MMAP case (not yet supported),\n * window_size == input_size + MIN_LOOKAHEAD &&\n * strstart + s->lookahead <= input_size => more >= MIN_LOOKAHEAD.\n * Otherwise, window_size == 2*WSIZE so more >= 2.\n * If there was sliding, more >= WSIZE. So in all cases, more >= 2.\n */\n //Assert(more >= 2, \"more < 2\");\n n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);\n s.lookahead += n;\n\n /* Initialize the hash value now that we have some input: */\n if (s.lookahead + s.insert >= MIN_MATCH) {\n str = s.strstart - s.insert;\n s.ins_h = s.window[str];\n\n /* UPDATE_HASH(s, s->ins_h, s->window[str + 1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + 1]);\n//#if MIN_MATCH != 3\n// Call update_hash() MIN_MATCH-3 more times\n//#endif\n while (s.insert) {\n /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + MIN_MATCH - 1]);\n\n s.prev[str & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = str;\n str++;\n s.insert--;\n if (s.lookahead + s.insert < MIN_MATCH) {\n break;\n }\n }\n }\n /* If the whole input has less than MIN_MATCH bytes, ins_h is garbage,\n * but this is not important since only literal bytes will be emitted.\n */\n\n } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);\n\n /* If the WIN_INIT bytes after the end of the current data have never been\n * written, then zero those bytes in order to avoid memory check reports of\n * the use of uninitialized (or uninitialised as Julian writes) bytes by\n * the longest match routines. Update the high water mark for the next\n * time through here. WIN_INIT is set to MAX_MATCH since the longest match\n * routines allow scanning to strstart + MAX_MATCH, ignoring lookahead.\n */\n// if (s.high_water < s.window_size) {\n// const curr = s.strstart + s.lookahead;\n// let init = 0;\n//\n// if (s.high_water < curr) {\n// /* Previous high water mark below current data -- zero WIN_INIT\n// * bytes or up to end of window, whichever is less.\n// */\n// init = s.window_size - curr;\n// if (init > WIN_INIT)\n// init = WIN_INIT;\n// zmemzero(s->window + curr, (unsigned)init);\n// s->high_water = curr + init;\n// }\n// else if (s->high_water < (ulg)curr + WIN_INIT) {\n// /* High water mark at or above current data, but below current data\n// * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up\n// * to end of window, whichever is less.\n// */\n// init = (ulg)curr + WIN_INIT - s->high_water;\n// if (init > s->window_size - s->high_water)\n// init = s->window_size - s->high_water;\n// zmemzero(s->window + s->high_water, (unsigned)init);\n// s->high_water += init;\n// }\n// }\n//\n// Assert((ulg)s->strstart <= s->window_size - MIN_LOOKAHEAD,\n// \"not enough room for search\");\n};\n\n/* ===========================================================================\n * Copy without compression as much as possible from the input stream, return\n * the current block state.\n *\n * In case deflateParams() is used to later switch to a non-zero compression\n * level, s->matches (otherwise unused when storing) keeps track of the number\n * of hash table slides to perform. If s->matches is 1, then one hash table\n * slide will be done when switching. If s->matches is 2, the maximum value\n * allowed here, then the hash table will be cleared, since two or more slides\n * is the same as a clear.\n *\n * deflate_stored() is written to minimize the number of times an input byte is\n * copied. It is most efficient with large input and output buffers, which\n * maximizes the opportunites to have a single copy from next_in to next_out.\n */\nconst deflate_stored = (s, flush) => {\n\n /* Smallest worthy block size when not flushing or finishing. By default\n * this is 32K. This can be as small as 507 bytes for memLevel == 1. For\n * large input and output buffers, the stored block size will be larger.\n */\n let min_block = s.pending_buf_size - 5 > s.w_size ? s.w_size : s.pending_buf_size - 5;\n\n /* Copy as many min_block or larger stored blocks directly to next_out as\n * possible. If flushing, copy the remaining available input to next_out as\n * stored blocks, if there is enough space.\n */\n let len, left, have, last = 0;\n let used = s.strm.avail_in;\n do {\n /* Set len to the maximum size block that we can copy directly with the\n * available input data and output space. Set left to how much of that\n * would be copied from what's left in the window.\n */\n len = 65535/* MAX_STORED */; /* maximum deflate stored block length */\n have = (s.bi_valid + 42) >> 3; /* number of header bytes */\n if (s.strm.avail_out < have) { /* need room for header */\n break;\n }\n /* maximum stored block length that will fit in avail_out: */\n have = s.strm.avail_out - have;\n left = s.strstart - s.block_start; /* bytes left in window */\n if (len > left + s.strm.avail_in) {\n len = left + s.strm.avail_in; /* limit len to the input */\n }\n if (len > have) {\n len = have; /* limit len to the output */\n }\n\n /* If the stored block would be less than min_block in length, or if\n * unable to copy all of the available input when flushing, then try\n * copying to the window and the pending buffer instead. Also don't\n * write an empty block when flushing -- deflate() does that.\n */\n if (len < min_block && ((len === 0 && flush !== Z_FINISH$3) ||\n flush === Z_NO_FLUSH$2 ||\n len !== left + s.strm.avail_in)) {\n break;\n }\n\n /* Make a dummy stored block in pending to get the header bytes,\n * including any pending bits. This also updates the debugging counts.\n */\n last = flush === Z_FINISH$3 && len === left + s.strm.avail_in ? 1 : 0;\n _tr_stored_block(s, 0, 0, last);\n\n /* Replace the lengths in the dummy stored block with len. */\n s.pending_buf[s.pending - 4] = len;\n s.pending_buf[s.pending - 3] = len >> 8;\n s.pending_buf[s.pending - 2] = ~len;\n s.pending_buf[s.pending - 1] = ~len >> 8;\n\n /* Write the stored block header bytes. */\n flush_pending(s.strm);\n\n//#ifdef ZLIB_DEBUG\n// /* Update debugging counts for the data about to be copied. */\n// s->compressed_len += len << 3;\n// s->bits_sent += len << 3;\n//#endif\n\n /* Copy uncompressed bytes from the window to next_out. */\n if (left) {\n if (left > len) {\n left = len;\n }\n //zmemcpy(s->strm->next_out, s->window + s->block_start, left);\n s.strm.output.set(s.window.subarray(s.block_start, s.block_start + left), s.strm.next_out);\n s.strm.next_out += left;\n s.strm.avail_out -= left;\n s.strm.total_out += left;\n s.block_start += left;\n len -= left;\n }\n\n /* Copy uncompressed bytes directly from next_in to next_out, updating\n * the check value.\n */\n if (len) {\n read_buf(s.strm, s.strm.output, s.strm.next_out, len);\n s.strm.next_out += len;\n s.strm.avail_out -= len;\n s.strm.total_out += len;\n }\n } while (last === 0);\n\n /* Update the sliding window with the last s->w_size bytes of the copied\n * data, or append all of the copied data to the existing window if less\n * than s->w_size bytes were copied. Also update the number of bytes to\n * insert in the hash tables, in the event that deflateParams() switches to\n * a non-zero compression level.\n */\n used -= s.strm.avail_in; /* number of input bytes directly copied */\n if (used) {\n /* If any input was used, then no unused input remains in the window,\n * therefore s->block_start == s->strstart.\n */\n if (used >= s.w_size) { /* supplant the previous history */\n s.matches = 2; /* clear hash */\n //zmemcpy(s->window, s->strm->next_in - s->w_size, s->w_size);\n s.window.set(s.strm.input.subarray(s.strm.next_in - s.w_size, s.strm.next_in), 0);\n s.strstart = s.w_size;\n s.insert = s.strstart;\n }\n else {\n if (s.window_size - s.strstart <= used) {\n /* Slide the window down. */\n s.strstart -= s.w_size;\n //zmemcpy(s->window, s->window + s->w_size, s->strstart);\n s.window.set(s.window.subarray(s.w_size, s.w_size + s.strstart), 0);\n if (s.matches < 2) {\n s.matches++; /* add a pending slide_hash() */\n }\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n }\n //zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);\n s.window.set(s.strm.input.subarray(s.strm.next_in - used, s.strm.next_in), s.strstart);\n s.strstart += used;\n s.insert += used > s.w_size - s.insert ? s.w_size - s.insert : used;\n }\n s.block_start = s.strstart;\n }\n if (s.high_water < s.strstart) {\n s.high_water = s.strstart;\n }\n\n /* If the last block was written to next_out, then done. */\n if (last) {\n return BS_FINISH_DONE;\n }\n\n /* If flushing and all input has been consumed, then done. */\n if (flush !== Z_NO_FLUSH$2 && flush !== Z_FINISH$3 &&\n s.strm.avail_in === 0 && s.strstart === s.block_start) {\n return BS_BLOCK_DONE;\n }\n\n /* Fill the window with any remaining input. */\n have = s.window_size - s.strstart;\n if (s.strm.avail_in > have && s.block_start >= s.w_size) {\n /* Slide the window down. */\n s.block_start -= s.w_size;\n s.strstart -= s.w_size;\n //zmemcpy(s->window, s->window + s->w_size, s->strstart);\n s.window.set(s.window.subarray(s.w_size, s.w_size + s.strstart), 0);\n if (s.matches < 2) {\n s.matches++; /* add a pending slide_hash() */\n }\n have += s.w_size; /* more space now */\n if (s.insert > s.strstart) {\n s.insert = s.strstart;\n }\n }\n if (have > s.strm.avail_in) {\n have = s.strm.avail_in;\n }\n if (have) {\n read_buf(s.strm, s.window, s.strstart, have);\n s.strstart += have;\n s.insert += have > s.w_size - s.insert ? s.w_size - s.insert : have;\n }\n if (s.high_water < s.strstart) {\n s.high_water = s.strstart;\n }\n\n /* There was not enough avail_out to write a complete worthy or flushed\n * stored block to next_out. Write a stored block to pending instead, if we\n * have enough input for a worthy block, or if flushing and there is enough\n * room for the remaining input as a stored block in the pending buffer.\n */\n have = (s.bi_valid + 42) >> 3; /* number of header bytes */\n /* maximum stored block length that will fit in pending: */\n have = s.pending_buf_size - have > 65535/* MAX_STORED */ ? 65535/* MAX_STORED */ : s.pending_buf_size - have;\n min_block = have > s.w_size ? s.w_size : have;\n left = s.strstart - s.block_start;\n if (left >= min_block ||\n ((left || flush === Z_FINISH$3) && flush !== Z_NO_FLUSH$2 &&\n s.strm.avail_in === 0 && left <= have)) {\n len = left > have ? have : left;\n last = flush === Z_FINISH$3 && s.strm.avail_in === 0 &&\n len === left ? 1 : 0;\n _tr_stored_block(s, s.block_start, len, last);\n s.block_start += len;\n flush_pending(s.strm);\n }\n\n /* We've done all we can with the available input and output. */\n return last ? BS_FINISH_STARTED : BS_NEED_MORE;\n};\n\n\n/* ===========================================================================\n * Compress as much as possible from the input stream, return the current\n * block state.\n * This function does not perform lazy evaluation of matches and inserts\n * new strings in the dictionary only for unmatched strings or for short\n * matches. It is used only for the fast compression options.\n */\nconst deflate_fast = (s, flush) => {\n\n let hash_head; /* head of the hash chain */\n let bflush; /* set if current block must be flushed */\n\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the next match, plus MIN_MATCH bytes to insert the\n * string following the next match.\n */\n if (s.lookahead < MIN_LOOKAHEAD) {\n fill_window(s);\n if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) {\n break; /* flush the current block */\n }\n }\n\n /* Insert the string window[strstart .. strstart+2] in the\n * dictionary, and set hash_head to the head of the hash chain:\n */\n hash_head = 0/*NIL*/;\n if (s.lookahead >= MIN_MATCH) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n\n /* Find the longest match, discarding those <= prev_length.\n * At this point we have always match_length < MIN_MATCH\n */\n if (hash_head !== 0/*NIL*/ && ((s.strstart - hash_head) <= (s.w_size - MIN_LOOKAHEAD))) {\n /* To simplify the code, we prevent matches with the string\n * of window index 0 (in particular we have to avoid a match\n * of the string with itself at the start of the input file).\n */\n s.match_length = longest_match(s, hash_head);\n /* longest_match() sets match_start */\n }\n if (s.match_length >= MIN_MATCH) {\n // check_match(s, s.strstart, s.match_start, s.match_length); // for debug only\n\n /*** _tr_tally_dist(s, s.strstart - s.match_start,\n s.match_length - MIN_MATCH, bflush); ***/\n bflush = _tr_tally(s, s.strstart - s.match_start, s.match_length - MIN_MATCH);\n\n s.lookahead -= s.match_length;\n\n /* Insert new strings in the hash table only if the match length\n * is not too large. This saves time but degrades compression.\n */\n if (s.match_length <= s.max_lazy_match/*max_insert_length*/ && s.lookahead >= MIN_MATCH) {\n s.match_length--; /* string at strstart already in table */\n do {\n s.strstart++;\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n /* strstart never exceeds WSIZE-MAX_MATCH, so there are\n * always MIN_MATCH bytes ahead.\n */\n } while (--s.match_length !== 0);\n s.strstart++;\n } else\n {\n s.strstart += s.match_length;\n s.match_length = 0;\n s.ins_h = s.window[s.strstart];\n /* UPDATE_HASH(s, s.ins_h, s.window[s.strstart+1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + 1]);\n\n//#if MIN_MATCH != 3\n// Call UPDATE_HASH() MIN_MATCH-3 more times\n//#endif\n /* If lookahead < MIN_MATCH, ins_h is garbage, but it does not\n * matter since it will be recomputed at next deflate call.\n */\n }\n } else {\n /* No match, output a literal byte */\n //Tracevv((stderr,\"%c\", s.window[s.strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n\n s.lookahead--;\n s.strstart++;\n }\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = ((s.strstart < (MIN_MATCH - 1)) ? s.strstart : MIN_MATCH - 1);\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* ===========================================================================\n * Same as above, but achieves better compression. We use a lazy\n * evaluation for matches: a match is finally adopted only if there is\n * no better match at the next window position.\n */\nconst deflate_slow = (s, flush) => {\n\n let hash_head; /* head of hash chain */\n let bflush; /* set if current block must be flushed */\n\n let max_insert;\n\n /* Process the input block. */\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the next match, plus MIN_MATCH bytes to insert the\n * string following the next match.\n */\n if (s.lookahead < MIN_LOOKAHEAD) {\n fill_window(s);\n if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) { break; } /* flush the current block */\n }\n\n /* Insert the string window[strstart .. strstart+2] in the\n * dictionary, and set hash_head to the head of the hash chain:\n */\n hash_head = 0/*NIL*/;\n if (s.lookahead >= MIN_MATCH) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n\n /* Find the longest match, discarding those <= prev_length.\n */\n s.prev_length = s.match_length;\n s.prev_match = s.match_start;\n s.match_length = MIN_MATCH - 1;\n\n if (hash_head !== 0/*NIL*/ && s.prev_length < s.max_lazy_match &&\n s.strstart - hash_head <= (s.w_size - MIN_LOOKAHEAD)/*MAX_DIST(s)*/) {\n /* To simplify the code, we prevent matches with the string\n * of window index 0 (in particular we have to avoid a match\n * of the string with itself at the start of the input file).\n */\n s.match_length = longest_match(s, hash_head);\n /* longest_match() sets match_start */\n\n if (s.match_length <= 5 &&\n (s.strategy === Z_FILTERED || (s.match_length === MIN_MATCH && s.strstart - s.match_start > 4096/*TOO_FAR*/))) {\n\n /* If prev_match is also MIN_MATCH, match_start is garbage\n * but we will ignore the current match anyway.\n */\n s.match_length = MIN_MATCH - 1;\n }\n }\n /* If there was a match at the previous step and the current\n * match is not better, output the previous match:\n */\n if (s.prev_length >= MIN_MATCH && s.match_length <= s.prev_length) {\n max_insert = s.strstart + s.lookahead - MIN_MATCH;\n /* Do not insert strings in hash table beyond this. */\n\n //check_match(s, s.strstart-1, s.prev_match, s.prev_length);\n\n /***_tr_tally_dist(s, s.strstart - 1 - s.prev_match,\n s.prev_length - MIN_MATCH, bflush);***/\n bflush = _tr_tally(s, s.strstart - 1 - s.prev_match, s.prev_length - MIN_MATCH);\n /* Insert in hash table all strings up to the end of the match.\n * strstart-1 and strstart are already inserted. If there is not\n * enough lookahead, the last two strings are not inserted in\n * the hash table.\n */\n s.lookahead -= s.prev_length - 1;\n s.prev_length -= 2;\n do {\n if (++s.strstart <= max_insert) {\n /*** INSERT_STRING(s, s.strstart, hash_head); ***/\n s.ins_h = HASH(s, s.ins_h, s.window[s.strstart + MIN_MATCH - 1]);\n hash_head = s.prev[s.strstart & s.w_mask] = s.head[s.ins_h];\n s.head[s.ins_h] = s.strstart;\n /***/\n }\n } while (--s.prev_length !== 0);\n s.match_available = 0;\n s.match_length = MIN_MATCH - 1;\n s.strstart++;\n\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n\n } else if (s.match_available) {\n /* If there was no match at the previous position, output a\n * single literal. If there was a match but the current match\n * is longer, truncate the previous match to a single literal.\n */\n //Tracevv((stderr,\"%c\", s->window[s->strstart-1]));\n /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart - 1]);\n\n if (bflush) {\n /*** FLUSH_BLOCK_ONLY(s, 0) ***/\n flush_block_only(s, false);\n /***/\n }\n s.strstart++;\n s.lookahead--;\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n } else {\n /* There is no previous match to compare with, wait for\n * the next step to decide.\n */\n s.match_available = 1;\n s.strstart++;\n s.lookahead--;\n }\n }\n //Assert (flush != Z_NO_FLUSH, \"no flush?\");\n if (s.match_available) {\n //Tracevv((stderr,\"%c\", s->window[s->strstart-1]));\n /*** _tr_tally_lit(s, s.window[s.strstart-1], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart - 1]);\n\n s.match_available = 0;\n }\n s.insert = s.strstart < MIN_MATCH - 1 ? s.strstart : MIN_MATCH - 1;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n\n return BS_BLOCK_DONE;\n};\n\n\n/* ===========================================================================\n * For Z_RLE, simply look for runs of bytes, generate matches only of distance\n * one. Do not maintain a hash table. (It will be regenerated if this run of\n * deflate switches away from Z_RLE.)\n */\nconst deflate_rle = (s, flush) => {\n\n let bflush; /* set if current block must be flushed */\n let prev; /* byte at distance one to match */\n let scan, strend; /* scan goes up to strend for length of run */\n\n const _win = s.window;\n\n for (;;) {\n /* Make sure that we always have enough lookahead, except\n * at the end of the input file. We need MAX_MATCH bytes\n * for the longest run, plus one for the unrolled loop.\n */\n if (s.lookahead <= MAX_MATCH) {\n fill_window(s);\n if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n if (s.lookahead === 0) { break; } /* flush the current block */\n }\n\n /* See how many times the previous byte repeats */\n s.match_length = 0;\n if (s.lookahead >= MIN_MATCH && s.strstart > 0) {\n scan = s.strstart - 1;\n prev = _win[scan];\n if (prev === _win[++scan] && prev === _win[++scan] && prev === _win[++scan]) {\n strend = s.strstart + MAX_MATCH;\n do {\n /*jshint noempty:false*/\n } while (prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n prev === _win[++scan] && prev === _win[++scan] &&\n scan < strend);\n s.match_length = MAX_MATCH - (strend - scan);\n if (s.match_length > s.lookahead) {\n s.match_length = s.lookahead;\n }\n }\n //Assert(scan <= s->window+(uInt)(s->window_size-1), \"wild scan\");\n }\n\n /* Emit match if have run of MIN_MATCH or longer, else emit literal */\n if (s.match_length >= MIN_MATCH) {\n //check_match(s, s.strstart, s.strstart - 1, s.match_length);\n\n /*** _tr_tally_dist(s, 1, s.match_length - MIN_MATCH, bflush); ***/\n bflush = _tr_tally(s, 1, s.match_length - MIN_MATCH);\n\n s.lookahead -= s.match_length;\n s.strstart += s.match_length;\n s.match_length = 0;\n } else {\n /* No match, output a literal byte */\n //Tracevv((stderr,\"%c\", s->window[s->strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n\n s.lookahead--;\n s.strstart++;\n }\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = 0;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* ===========================================================================\n * For Z_HUFFMAN_ONLY, do not look for matches. Do not maintain a hash table.\n * (It will be regenerated if this run of deflate switches away from Huffman.)\n */\nconst deflate_huff = (s, flush) => {\n\n let bflush; /* set if current block must be flushed */\n\n for (;;) {\n /* Make sure that we have a literal to write. */\n if (s.lookahead === 0) {\n fill_window(s);\n if (s.lookahead === 0) {\n if (flush === Z_NO_FLUSH$2) {\n return BS_NEED_MORE;\n }\n break; /* flush the current block */\n }\n }\n\n /* Output a literal byte */\n s.match_length = 0;\n //Tracevv((stderr,\"%c\", s->window[s->strstart]));\n /*** _tr_tally_lit(s, s.window[s.strstart], bflush); ***/\n bflush = _tr_tally(s, 0, s.window[s.strstart]);\n s.lookahead--;\n s.strstart++;\n if (bflush) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n }\n s.insert = 0;\n if (flush === Z_FINISH$3) {\n /*** FLUSH_BLOCK(s, 1); ***/\n flush_block_only(s, true);\n if (s.strm.avail_out === 0) {\n return BS_FINISH_STARTED;\n }\n /***/\n return BS_FINISH_DONE;\n }\n if (s.sym_next) {\n /*** FLUSH_BLOCK(s, 0); ***/\n flush_block_only(s, false);\n if (s.strm.avail_out === 0) {\n return BS_NEED_MORE;\n }\n /***/\n }\n return BS_BLOCK_DONE;\n};\n\n/* Values for max_lazy_match, good_match and max_chain_length, depending on\n * the desired pack level (0..9). The values given below have been tuned to\n * exclude worst case performance for pathological files. Better values may be\n * found for specific files.\n */\nfunction Config(good_length, max_lazy, nice_length, max_chain, func) {\n\n this.good_length = good_length;\n this.max_lazy = max_lazy;\n this.nice_length = nice_length;\n this.max_chain = max_chain;\n this.func = func;\n}\n\nconst configuration_table = [\n /* good lazy nice chain */\n new Config(0, 0, 0, 0, deflate_stored), /* 0 store only */\n new Config(4, 4, 8, 4, deflate_fast), /* 1 max speed, no lazy matches */\n new Config(4, 5, 16, 8, deflate_fast), /* 2 */\n new Config(4, 6, 32, 32, deflate_fast), /* 3 */\n\n new Config(4, 4, 16, 16, deflate_slow), /* 4 lazy matches */\n new Config(8, 16, 32, 32, deflate_slow), /* 5 */\n new Config(8, 16, 128, 128, deflate_slow), /* 6 */\n new Config(8, 32, 128, 256, deflate_slow), /* 7 */\n new Config(32, 128, 258, 1024, deflate_slow), /* 8 */\n new Config(32, 258, 258, 4096, deflate_slow) /* 9 max compression */\n];\n\n\n/* ===========================================================================\n * Initialize the \"longest match\" routines for a new zlib stream\n */\nconst lm_init = (s) => {\n\n s.window_size = 2 * s.w_size;\n\n /*** CLEAR_HASH(s); ***/\n zero(s.head); // Fill with NIL (= 0);\n\n /* Set the default configuration parameters:\n */\n s.max_lazy_match = configuration_table[s.level].max_lazy;\n s.good_match = configuration_table[s.level].good_length;\n s.nice_match = configuration_table[s.level].nice_length;\n s.max_chain_length = configuration_table[s.level].max_chain;\n\n s.strstart = 0;\n s.block_start = 0;\n s.lookahead = 0;\n s.insert = 0;\n s.match_length = s.prev_length = MIN_MATCH - 1;\n s.match_available = 0;\n s.ins_h = 0;\n};\n\n\nfunction DeflateState() {\n this.strm = null; /* pointer back to this zlib stream */\n this.status = 0; /* as the name implies */\n this.pending_buf = null; /* output still pending */\n this.pending_buf_size = 0; /* size of pending_buf */\n this.pending_out = 0; /* next pending byte to output to the stream */\n this.pending = 0; /* nb of bytes in the pending buffer */\n this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */\n this.gzhead = null; /* gzip header information to write */\n this.gzindex = 0; /* where in extra, name, or comment */\n this.method = Z_DEFLATED$2; /* can only be DEFLATED */\n this.last_flush = -1; /* value of flush param for previous deflate call */\n\n this.w_size = 0; /* LZ77 window size (32K by default) */\n this.w_bits = 0; /* log2(w_size) (8..16) */\n this.w_mask = 0; /* w_size - 1 */\n\n this.window = null;\n /* Sliding window. Input bytes are read into the second half of the window,\n * and move to the first half later to keep a dictionary of at least wSize\n * bytes. With this organization, matches are limited to a distance of\n * wSize-MAX_MATCH bytes, but this ensures that IO is always\n * performed with a length multiple of the block size.\n */\n\n this.window_size = 0;\n /* Actual size of window: 2*wSize, except when the user input buffer\n * is directly used as sliding window.\n */\n\n this.prev = null;\n /* Link to older string with same hash index. To limit the size of this\n * array to 64K, this link is maintained only for the last 32K strings.\n * An index in this array is thus a window index modulo 32K.\n */\n\n this.head = null; /* Heads of the hash chains or NIL. */\n\n this.ins_h = 0; /* hash index of string to be inserted */\n this.hash_size = 0; /* number of elements in hash table */\n this.hash_bits = 0; /* log2(hash_size) */\n this.hash_mask = 0; /* hash_size-1 */\n\n this.hash_shift = 0;\n /* Number of bits by which ins_h must be shifted at each input\n * step. It must be such that after MIN_MATCH steps, the oldest\n * byte no longer takes part in the hash key, that is:\n * hash_shift * MIN_MATCH >= hash_bits\n */\n\n this.block_start = 0;\n /* Window position at the beginning of the current output block. Gets\n * negative when the window is moved backwards.\n */\n\n this.match_length = 0; /* length of best match */\n this.prev_match = 0; /* previous match */\n this.match_available = 0; /* set if previous match exists */\n this.strstart = 0; /* start of string to insert */\n this.match_start = 0; /* start of matching string */\n this.lookahead = 0; /* number of valid bytes ahead in window */\n\n this.prev_length = 0;\n /* Length of the best match at previous step. Matches not greater than this\n * are discarded. This is used in the lazy match evaluation.\n */\n\n this.max_chain_length = 0;\n /* To speed up deflation, hash chains are never searched beyond this\n * length. A higher limit improves compression ratio but degrades the\n * speed.\n */\n\n this.max_lazy_match = 0;\n /* Attempt to find a better match only when the current match is strictly\n * smaller than this value. This mechanism is used only for compression\n * levels >= 4.\n */\n // That's alias to max_lazy_match, don't use directly\n //this.max_insert_length = 0;\n /* Insert new strings in the hash table only if the match length is not\n * greater than this length. This saves time but degrades compression.\n * max_insert_length is used only for compression levels <= 3.\n */\n\n this.level = 0; /* compression level (1..9) */\n this.strategy = 0; /* favor or force Huffman coding*/\n\n this.good_match = 0;\n /* Use a faster search when the previous match is longer than this */\n\n this.nice_match = 0; /* Stop searching when current match exceeds this */\n\n /* used by trees.c: */\n\n /* Didn't use ct_data typedef below to suppress compiler warning */\n\n // struct ct_data_s dyn_ltree[HEAP_SIZE]; /* literal and length tree */\n // struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */\n // struct ct_data_s bl_tree[2*BL_CODES+1]; /* Huffman tree for bit lengths */\n\n // Use flat array of DOUBLE size, with interleaved fata,\n // because JS does not support effective\n this.dyn_ltree = new Uint16Array(HEAP_SIZE * 2);\n this.dyn_dtree = new Uint16Array((2 * D_CODES + 1) * 2);\n this.bl_tree = new Uint16Array((2 * BL_CODES + 1) * 2);\n zero(this.dyn_ltree);\n zero(this.dyn_dtree);\n zero(this.bl_tree);\n\n this.l_desc = null; /* desc. for literal tree */\n this.d_desc = null; /* desc. for distance tree */\n this.bl_desc = null; /* desc. for bit length tree */\n\n //ush bl_count[MAX_BITS+1];\n this.bl_count = new Uint16Array(MAX_BITS + 1);\n /* number of codes at each bit length for an optimal tree */\n\n //int heap[2*L_CODES+1]; /* heap used to build the Huffman trees */\n this.heap = new Uint16Array(2 * L_CODES + 1); /* heap used to build the Huffman trees */\n zero(this.heap);\n\n this.heap_len = 0; /* number of elements in the heap */\n this.heap_max = 0; /* element of largest frequency */\n /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.\n * The same heap array is used to build all trees.\n */\n\n this.depth = new Uint16Array(2 * L_CODES + 1); //uch depth[2*L_CODES+1];\n zero(this.depth);\n /* Depth of each subtree used as tie breaker for trees of equal frequency\n */\n\n this.sym_buf = 0; /* buffer for distances and literals/lengths */\n\n this.lit_bufsize = 0;\n /* Size of match buffer for literals/lengths. There are 4 reasons for\n * limiting lit_bufsize to 64K:\n * - frequencies can be kept in 16 bit counters\n * - if compression is not successful for the first block, all input\n * data is still in the window so we can still emit a stored block even\n * when input comes from standard input. (This can also be done for\n * all blocks if lit_bufsize is not greater than 32K.)\n * - if compression is not successful for a file smaller than 64K, we can\n * even emit a stored file instead of a stored block (saving 5 bytes).\n * This is applicable only for zip (not gzip or zlib).\n * - creating new Huffman trees less frequently may not provide fast\n * adaptation to changes in the input data statistics. (Take for\n * example a binary file with poorly compressible code followed by\n * a highly compressible string table.) Smaller buffer sizes give\n * fast adaptation but have of course the overhead of transmitting\n * trees more frequently.\n * - I can't count above 4\n */\n\n this.sym_next = 0; /* running index in sym_buf */\n this.sym_end = 0; /* symbol table full when sym_next reaches this */\n\n this.opt_len = 0; /* bit length of current block with optimal trees */\n this.static_len = 0; /* bit length of current block with static trees */\n this.matches = 0; /* number of string matches in current block */\n this.insert = 0; /* bytes at end of window left to insert */\n\n\n this.bi_buf = 0;\n /* Output buffer. bits are inserted starting at the bottom (least\n * significant bits).\n */\n this.bi_valid = 0;\n /* Number of valid bits in bi_buf. All bits above the last valid bit\n * are always zero.\n */\n\n // Used for window memory init. We safely ignore it for JS. That makes\n // sense only for pointers and memory check tools.\n //this.high_water = 0;\n /* High water mark offset in window for initialized bytes -- bytes above\n * this are set to zero in order to avoid memory check warnings when\n * longest match routines access bytes past the input. This is then\n * updated to the new high water mark.\n */\n}\n\n\n/* =========================================================================\n * Check for a valid deflate stream state. Return 0 if ok, 1 if not.\n */\nconst deflateStateCheck = (strm) => {\n\n if (!strm) {\n return 1;\n }\n const s = strm.state;\n if (!s || s.strm !== strm || (s.status !== INIT_STATE &&\n//#ifdef GZIP\n s.status !== GZIP_STATE &&\n//#endif\n s.status !== EXTRA_STATE &&\n s.status !== NAME_STATE &&\n s.status !== COMMENT_STATE &&\n s.status !== HCRC_STATE &&\n s.status !== BUSY_STATE &&\n s.status !== FINISH_STATE)) {\n return 1;\n }\n return 0;\n};\n\n\nconst deflateResetKeep = (strm) => {\n\n if (deflateStateCheck(strm)) {\n return err(strm, Z_STREAM_ERROR$2);\n }\n\n strm.total_in = strm.total_out = 0;\n strm.data_type = Z_UNKNOWN;\n\n const s = strm.state;\n s.pending = 0;\n s.pending_out = 0;\n\n if (s.wrap < 0) {\n s.wrap = -s.wrap;\n /* was made negative by deflate(..., Z_FINISH); */\n }\n s.status =\n//#ifdef GZIP\n s.wrap === 2 ? GZIP_STATE :\n//#endif\n s.wrap ? INIT_STATE : BUSY_STATE;\n strm.adler = (s.wrap === 2) ?\n 0 // crc32(0, Z_NULL, 0)\n :\n 1; // adler32(0, Z_NULL, 0)\n s.last_flush = -2;\n _tr_init(s);\n return Z_OK$3;\n};\n\n\nconst deflateReset = (strm) => {\n\n const ret = deflateResetKeep(strm);\n if (ret === Z_OK$3) {\n lm_init(strm.state);\n }\n return ret;\n};\n\n\nconst deflateSetHeader = (strm, head) => {\n\n if (deflateStateCheck(strm) || strm.state.wrap !== 2) {\n return Z_STREAM_ERROR$2;\n }\n strm.state.gzhead = head;\n return Z_OK$3;\n};\n\n\nconst deflateInit2 = (strm, level, method, windowBits, memLevel, strategy) => {\n\n if (!strm) { // === Z_NULL\n return Z_STREAM_ERROR$2;\n }\n let wrap = 1;\n\n if (level === Z_DEFAULT_COMPRESSION$1) {\n level = 6;\n }\n\n if (windowBits < 0) { /* suppress zlib wrapper */\n wrap = 0;\n windowBits = -windowBits;\n }\n\n else if (windowBits > 15) {\n wrap = 2; /* write gzip wrapper instead */\n windowBits -= 16;\n }\n\n\n if (memLevel < 1 || memLevel > MAX_MEM_LEVEL || method !== Z_DEFLATED$2 ||\n windowBits < 8 || windowBits > 15 || level < 0 || level > 9 ||\n strategy < 0 || strategy > Z_FIXED || (windowBits === 8 && wrap !== 1)) {\n return err(strm, Z_STREAM_ERROR$2);\n }\n\n\n if (windowBits === 8) {\n windowBits = 9;\n }\n /* until 256-byte window bug fixed */\n\n const s = new DeflateState();\n\n strm.state = s;\n s.strm = strm;\n s.status = INIT_STATE; /* to pass state test in deflateReset() */\n\n s.wrap = wrap;\n s.gzhead = null;\n s.w_bits = windowBits;\n s.w_size = 1 << s.w_bits;\n s.w_mask = s.w_size - 1;\n\n s.hash_bits = memLevel + 7;\n s.hash_size = 1 << s.hash_bits;\n s.hash_mask = s.hash_size - 1;\n s.hash_shift = ~~((s.hash_bits + MIN_MATCH - 1) / MIN_MATCH);\n\n s.window = new Uint8Array(s.w_size * 2);\n s.head = new Uint16Array(s.hash_size);\n s.prev = new Uint16Array(s.w_size);\n\n // Don't need mem init magic for JS.\n //s.high_water = 0; /* nothing written to s->window yet */\n\n s.lit_bufsize = 1 << (memLevel + 6); /* 16K elements by default */\n\n /* We overlay pending_buf and sym_buf. This works since the average size\n * for length/distance pairs over any compressed block is assured to be 31\n * bits or less.\n *\n * Analysis: The longest fixed codes are a length code of 8 bits plus 5\n * extra bits, for lengths 131 to 257. The longest fixed distance codes are\n * 5 bits plus 13 extra bits, for distances 16385 to 32768. The longest\n * possible fixed-codes length/distance pair is then 31 bits total.\n *\n * sym_buf starts one-fourth of the way into pending_buf. So there are\n * three bytes in sym_buf for every four bytes in pending_buf. Each symbol\n * in sym_buf is three bytes -- two for the distance and one for the\n * literal/length. As each symbol is consumed, the pointer to the next\n * sym_buf value to read moves forward three bytes. From that symbol, up to\n * 31 bits are written to pending_buf. The closest the written pending_buf\n * bits gets to the next sym_buf symbol to read is just before the last\n * code is written. At that time, 31*(n-2) bits have been written, just\n * after 24*(n-2) bits have been consumed from sym_buf. sym_buf starts at\n * 8*n bits into pending_buf. (Note that the symbol buffer fills when n-1\n * symbols are written.) The closest the writing gets to what is unread is\n * then n+14 bits. Here n is lit_bufsize, which is 16384 by default, and\n * can range from 128 to 32768.\n *\n * Therefore, at a minimum, there are 142 bits of space between what is\n * written and what is read in the overlain buffers, so the symbols cannot\n * be overwritten by the compressed data. That space is actually 139 bits,\n * due to the three-bit fixed-code block header.\n *\n * That covers the case where either Z_FIXED is specified, forcing fixed\n * codes, or when the use of fixed codes is chosen, because that choice\n * results in a smaller compressed block than dynamic codes. That latter\n * condition then assures that the above analysis also covers all dynamic\n * blocks. A dynamic-code block will only be chosen to be emitted if it has\n * fewer bits than a fixed-code block would for the same set of symbols.\n * Therefore its average symbol length is assured to be less than 31. So\n * the compressed data for a dynamic block also cannot overwrite the\n * symbols from which it is being constructed.\n */\n\n s.pending_buf_size = s.lit_bufsize * 4;\n s.pending_buf = new Uint8Array(s.pending_buf_size);\n\n // It is offset from `s.pending_buf` (size is `s.lit_bufsize * 2`)\n //s->sym_buf = s->pending_buf + s->lit_bufsize;\n s.sym_buf = s.lit_bufsize;\n\n //s->sym_end = (s->lit_bufsize - 1) * 3;\n s.sym_end = (s.lit_bufsize - 1) * 3;\n /* We avoid equality with lit_bufsize*3 because of wraparound at 64K\n * on 16 bit machines and because stored blocks are restricted to\n * 64K-1 bytes.\n */\n\n s.level = level;\n s.strategy = strategy;\n s.method = method;\n\n return deflateReset(strm);\n};\n\nconst deflateInit = (strm, level) => {\n\n return deflateInit2(strm, level, Z_DEFLATED$2, MAX_WBITS$1, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY$1);\n};\n\n\n/* ========================================================================= */\nconst deflate$2 = (strm, flush) => {\n\n if (deflateStateCheck(strm) || flush > Z_BLOCK$1 || flush < 0) {\n return strm ? err(strm, Z_STREAM_ERROR$2) : Z_STREAM_ERROR$2;\n }\n\n const s = strm.state;\n\n if (!strm.output ||\n (strm.avail_in !== 0 && !strm.input) ||\n (s.status === FINISH_STATE && flush !== Z_FINISH$3)) {\n return err(strm, (strm.avail_out === 0) ? Z_BUF_ERROR$1 : Z_STREAM_ERROR$2);\n }\n\n const old_flush = s.last_flush;\n s.last_flush = flush;\n\n /* Flush as much pending output as possible */\n if (s.pending !== 0) {\n flush_pending(strm);\n if (strm.avail_out === 0) {\n /* Since avail_out is 0, deflate will be called again with\n * more output space, but possibly with both pending and\n * avail_in equal to zero. There won't be anything to do,\n * but this is not an error situation so make sure we\n * return OK instead of BUF_ERROR at next call of deflate:\n */\n s.last_flush = -1;\n return Z_OK$3;\n }\n\n /* Make sure there is something to do and avoid duplicate consecutive\n * flushes. For repeated and useless calls with Z_FINISH, we keep\n * returning Z_STREAM_END instead of Z_BUF_ERROR.\n */\n } else if (strm.avail_in === 0 && rank(flush) <= rank(old_flush) &&\n flush !== Z_FINISH$3) {\n return err(strm, Z_BUF_ERROR$1);\n }\n\n /* User must not provide more input after the first FINISH: */\n if (s.status === FINISH_STATE && strm.avail_in !== 0) {\n return err(strm, Z_BUF_ERROR$1);\n }\n\n /* Write the header */\n if (s.status === INIT_STATE && s.wrap === 0) {\n s.status = BUSY_STATE;\n }\n if (s.status === INIT_STATE) {\n /* zlib header */\n let header = (Z_DEFLATED$2 + ((s.w_bits - 8) << 4)) << 8;\n let level_flags = -1;\n\n if (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2) {\n level_flags = 0;\n } else if (s.level < 6) {\n level_flags = 1;\n } else if (s.level === 6) {\n level_flags = 2;\n } else {\n level_flags = 3;\n }\n header |= (level_flags << 6);\n if (s.strstart !== 0) { header |= PRESET_DICT; }\n header += 31 - (header % 31);\n\n putShortMSB(s, header);\n\n /* Save the adler32 of the preset dictionary: */\n if (s.strstart !== 0) {\n putShortMSB(s, strm.adler >>> 16);\n putShortMSB(s, strm.adler & 0xffff);\n }\n strm.adler = 1; // adler32(0L, Z_NULL, 0);\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n//#ifdef GZIP\n if (s.status === GZIP_STATE) {\n /* gzip header */\n strm.adler = 0; //crc32(0L, Z_NULL, 0);\n put_byte(s, 31);\n put_byte(s, 139);\n put_byte(s, 8);\n if (!s.gzhead) { // s->gzhead == Z_NULL\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, 0);\n put_byte(s, s.level === 9 ? 2 :\n (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?\n 4 : 0));\n put_byte(s, OS_CODE);\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n else {\n put_byte(s, (s.gzhead.text ? 1 : 0) +\n (s.gzhead.hcrc ? 2 : 0) +\n (!s.gzhead.extra ? 0 : 4) +\n (!s.gzhead.name ? 0 : 8) +\n (!s.gzhead.comment ? 0 : 16)\n );\n put_byte(s, s.gzhead.time & 0xff);\n put_byte(s, (s.gzhead.time >> 8) & 0xff);\n put_byte(s, (s.gzhead.time >> 16) & 0xff);\n put_byte(s, (s.gzhead.time >> 24) & 0xff);\n put_byte(s, s.level === 9 ? 2 :\n (s.strategy >= Z_HUFFMAN_ONLY || s.level < 2 ?\n 4 : 0));\n put_byte(s, s.gzhead.os & 0xff);\n if (s.gzhead.extra && s.gzhead.extra.length) {\n put_byte(s, s.gzhead.extra.length & 0xff);\n put_byte(s, (s.gzhead.extra.length >> 8) & 0xff);\n }\n if (s.gzhead.hcrc) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending, 0);\n }\n s.gzindex = 0;\n s.status = EXTRA_STATE;\n }\n }\n if (s.status === EXTRA_STATE) {\n if (s.gzhead.extra/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let left = (s.gzhead.extra.length & 0xffff) - s.gzindex;\n while (s.pending + left > s.pending_buf_size) {\n let copy = s.pending_buf_size - s.pending;\n // zmemcpy(s.pending_buf + s.pending,\n // s.gzhead.extra + s.gzindex, copy);\n s.pending_buf.set(s.gzhead.extra.subarray(s.gzindex, s.gzindex + copy), s.pending);\n s.pending = s.pending_buf_size;\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex += copy;\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n left -= copy;\n }\n // JS specific: s.gzhead.extra may be TypedArray or Array for backward compatibility\n // TypedArray.slice and TypedArray.from don't exist in IE10-IE11\n let gzhead_extra = new Uint8Array(s.gzhead.extra);\n // zmemcpy(s->pending_buf + s->pending,\n // s->gzhead->extra + s->gzindex, left);\n s.pending_buf.set(gzhead_extra.subarray(s.gzindex, s.gzindex + left), s.pending);\n s.pending += left;\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex = 0;\n }\n s.status = NAME_STATE;\n }\n if (s.status === NAME_STATE) {\n if (s.gzhead.name/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let val;\n do {\n if (s.pending === s.pending_buf_size) {\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n }\n // JS specific: little magic to add zero terminator to end of string\n if (s.gzindex < s.gzhead.name.length) {\n val = s.gzhead.name.charCodeAt(s.gzindex++) & 0xff;\n } else {\n val = 0;\n }\n put_byte(s, val);\n } while (val !== 0);\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n s.gzindex = 0;\n }\n s.status = COMMENT_STATE;\n }\n if (s.status === COMMENT_STATE) {\n if (s.gzhead.comment/* != Z_NULL*/) {\n let beg = s.pending; /* start of bytes to update crc */\n let val;\n do {\n if (s.pending === s.pending_buf_size) {\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n beg = 0;\n }\n // JS specific: little magic to add zero terminator to end of string\n if (s.gzindex < s.gzhead.comment.length) {\n val = s.gzhead.comment.charCodeAt(s.gzindex++) & 0xff;\n } else {\n val = 0;\n }\n put_byte(s, val);\n } while (val !== 0);\n //--- HCRC_UPDATE(beg) ---//\n if (s.gzhead.hcrc && s.pending > beg) {\n strm.adler = crc32_1(strm.adler, s.pending_buf, s.pending - beg, beg);\n }\n //---//\n }\n s.status = HCRC_STATE;\n }\n if (s.status === HCRC_STATE) {\n if (s.gzhead.hcrc) {\n if (s.pending + 2 > s.pending_buf_size) {\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n put_byte(s, strm.adler & 0xff);\n put_byte(s, (strm.adler >> 8) & 0xff);\n strm.adler = 0; //crc32(0L, Z_NULL, 0);\n }\n s.status = BUSY_STATE;\n\n /* Compression must start with an empty pending buffer */\n flush_pending(strm);\n if (s.pending !== 0) {\n s.last_flush = -1;\n return Z_OK$3;\n }\n }\n//#endif\n\n /* Start a new block or continue the current one.\n */\n if (strm.avail_in !== 0 || s.lookahead !== 0 ||\n (flush !== Z_NO_FLUSH$2 && s.status !== FINISH_STATE)) {\n let bstate = s.level === 0 ? deflate_stored(s, flush) :\n s.strategy === Z_HUFFMAN_ONLY ? deflate_huff(s, flush) :\n s.strategy === Z_RLE ? deflate_rle(s, flush) :\n configuration_table[s.level].func(s, flush);\n\n if (bstate === BS_FINISH_STARTED || bstate === BS_FINISH_DONE) {\n s.status = FINISH_STATE;\n }\n if (bstate === BS_NEED_MORE || bstate === BS_FINISH_STARTED) {\n if (strm.avail_out === 0) {\n s.last_flush = -1;\n /* avoid BUF_ERROR next call, see above */\n }\n return Z_OK$3;\n /* If flush != Z_NO_FLUSH && avail_out == 0, the next call\n * of deflate should use the same flush parameter to make sure\n * that the flush is complete. So we don't have to output an\n * empty block here, this will be done at next call. This also\n * ensures that for a very small output buffer, we emit at most\n * one empty block.\n */\n }\n if (bstate === BS_BLOCK_DONE) {\n if (flush === Z_PARTIAL_FLUSH) {\n _tr_align(s);\n }\n else if (flush !== Z_BLOCK$1) { /* FULL_FLUSH or SYNC_FLUSH */\n\n _tr_stored_block(s, 0, 0, false);\n /* For a full flush, this empty block will be recognized\n * as a special marker by inflate_sync().\n */\n if (flush === Z_FULL_FLUSH$1) {\n /*** CLEAR_HASH(s); ***/ /* forget history */\n zero(s.head); // Fill with NIL (= 0);\n\n if (s.lookahead === 0) {\n s.strstart = 0;\n s.block_start = 0;\n s.insert = 0;\n }\n }\n }\n flush_pending(strm);\n if (strm.avail_out === 0) {\n s.last_flush = -1; /* avoid BUF_ERROR at next call, see above */\n return Z_OK$3;\n }\n }\n }\n\n if (flush !== Z_FINISH$3) { return Z_OK$3; }\n if (s.wrap <= 0) { return Z_STREAM_END$3; }\n\n /* Write the trailer */\n if (s.wrap === 2) {\n put_byte(s, strm.adler & 0xff);\n put_byte(s, (strm.adler >> 8) & 0xff);\n put_byte(s, (strm.adler >> 16) & 0xff);\n put_byte(s, (strm.adler >> 24) & 0xff);\n put_byte(s, strm.total_in & 0xff);\n put_byte(s, (strm.total_in >> 8) & 0xff);\n put_byte(s, (strm.total_in >> 16) & 0xff);\n put_byte(s, (strm.total_in >> 24) & 0xff);\n }\n else\n {\n putShortMSB(s, strm.adler >>> 16);\n putShortMSB(s, strm.adler & 0xffff);\n }\n\n flush_pending(strm);\n /* If avail_out is zero, the application will call deflate again\n * to flush the rest.\n */\n if (s.wrap > 0) { s.wrap = -s.wrap; }\n /* write the trailer only once! */\n return s.pending !== 0 ? Z_OK$3 : Z_STREAM_END$3;\n};\n\n\nconst deflateEnd = (strm) => {\n\n if (deflateStateCheck(strm)) {\n return Z_STREAM_ERROR$2;\n }\n\n const status = strm.state.status;\n\n strm.state = null;\n\n return status === BUSY_STATE ? err(strm, Z_DATA_ERROR$2) : Z_OK$3;\n};\n\n\n/* =========================================================================\n * Initializes the compression dictionary from the given byte\n * sequence without producing any compressed output.\n */\nconst deflateSetDictionary = (strm, dictionary) => {\n\n let dictLength = dictionary.length;\n\n if (deflateStateCheck(strm)) {\n return Z_STREAM_ERROR$2;\n }\n\n const s = strm.state;\n const wrap = s.wrap;\n\n if (wrap === 2 || (wrap === 1 && s.status !== INIT_STATE) || s.lookahead) {\n return Z_STREAM_ERROR$2;\n }\n\n /* when using zlib wrappers, compute Adler-32 for provided dictionary */\n if (wrap === 1) {\n /* adler32(strm->adler, dictionary, dictLength); */\n strm.adler = adler32_1(strm.adler, dictionary, dictLength, 0);\n }\n\n s.wrap = 0; /* avoid computing Adler-32 in read_buf */\n\n /* if dictionary would fill window, just replace the history */\n if (dictLength >= s.w_size) {\n if (wrap === 0) { /* already empty otherwise */\n /*** CLEAR_HASH(s); ***/\n zero(s.head); // Fill with NIL (= 0);\n s.strstart = 0;\n s.block_start = 0;\n s.insert = 0;\n }\n /* use the tail */\n // dictionary = dictionary.slice(dictLength - s.w_size);\n let tmpDict = new Uint8Array(s.w_size);\n tmpDict.set(dictionary.subarray(dictLength - s.w_size, dictLength), 0);\n dictionary = tmpDict;\n dictLength = s.w_size;\n }\n /* insert dictionary into window and hash */\n const avail = strm.avail_in;\n const next = strm.next_in;\n const input = strm.input;\n strm.avail_in = dictLength;\n strm.next_in = 0;\n strm.input = dictionary;\n fill_window(s);\n while (s.lookahead >= MIN_MATCH) {\n let str = s.strstart;\n let n = s.lookahead - (MIN_MATCH - 1);\n do {\n /* UPDATE_HASH(s, s->ins_h, s->window[str + MIN_MATCH-1]); */\n s.ins_h = HASH(s, s.ins_h, s.window[str + MIN_MATCH - 1]);\n\n s.prev[str & s.w_mask] = s.head[s.ins_h];\n\n s.head[s.ins_h] = str;\n str++;\n } while (--n);\n s.strstart = str;\n s.lookahead = MIN_MATCH - 1;\n fill_window(s);\n }\n s.strstart += s.lookahead;\n s.block_start = s.strstart;\n s.insert = s.lookahead;\n s.lookahead = 0;\n s.match_length = s.prev_length = MIN_MATCH - 1;\n s.match_available = 0;\n strm.next_in = next;\n strm.input = input;\n strm.avail_in = avail;\n s.wrap = wrap;\n return Z_OK$3;\n};\n\n\nvar deflateInit_1 = deflateInit;\nvar deflateInit2_1 = deflateInit2;\nvar deflateReset_1 = deflateReset;\nvar deflateResetKeep_1 = deflateResetKeep;\nvar deflateSetHeader_1 = deflateSetHeader;\nvar deflate_2$1 = deflate$2;\nvar deflateEnd_1 = deflateEnd;\nvar deflateSetDictionary_1 = deflateSetDictionary;\nvar deflateInfo = 'pako deflate (from Nodeca project)';\n\n/* Not implemented\nmodule.exports.deflateBound = deflateBound;\nmodule.exports.deflateCopy = deflateCopy;\nmodule.exports.deflateGetDictionary = deflateGetDictionary;\nmodule.exports.deflateParams = deflateParams;\nmodule.exports.deflatePending = deflatePending;\nmodule.exports.deflatePrime = deflatePrime;\nmodule.exports.deflateTune = deflateTune;\n*/\n\nvar deflate_1$2 = {\n\tdeflateInit: deflateInit_1,\n\tdeflateInit2: deflateInit2_1,\n\tdeflateReset: deflateReset_1,\n\tdeflateResetKeep: deflateResetKeep_1,\n\tdeflateSetHeader: deflateSetHeader_1,\n\tdeflate: deflate_2$1,\n\tdeflateEnd: deflateEnd_1,\n\tdeflateSetDictionary: deflateSetDictionary_1,\n\tdeflateInfo: deflateInfo\n};\n\nconst _has = (obj, key) => {\n return Object.prototype.hasOwnProperty.call(obj, key);\n};\n\nvar assign = function (obj /*from1, from2, from3, ...*/) {\n const sources = Array.prototype.slice.call(arguments, 1);\n while (sources.length) {\n const source = sources.shift();\n if (!source) { continue; }\n\n if (typeof source !== 'object') {\n throw new TypeError(source + 'must be non-object');\n }\n\n for (const p in source) {\n if (_has(source, p)) {\n obj[p] = source[p];\n }\n }\n }\n\n return obj;\n};\n\n\n// Join array of chunks to single array.\nvar flattenChunks = (chunks) => {\n // calculate data length\n let len = 0;\n\n for (let i = 0, l = chunks.length; i < l; i++) {\n len += chunks[i].length;\n }\n\n // join chunks\n const result = new Uint8Array(len);\n\n for (let i = 0, pos = 0, l = chunks.length; i < l; i++) {\n let chunk = chunks[i];\n result.set(chunk, pos);\n pos += chunk.length;\n }\n\n return result;\n};\n\nvar common = {\n\tassign: assign,\n\tflattenChunks: flattenChunks\n};\n\n// String encode/decode helpers\n\n\n// Quick check if we can use fast array to bin string conversion\n//\n// - apply(Array) can fail on Android 2.2\n// - apply(Uint8Array) can fail on iOS 5.1 Safari\n//\nlet STR_APPLY_UIA_OK = true;\n\ntry { String.fromCharCode.apply(null, new Uint8Array(1)); } catch (__) { STR_APPLY_UIA_OK = false; }\n\n\n// Table with utf8 lengths (calculated by first byte of sequence)\n// Note, that 5 & 6-byte values and some 4-byte values can not be represented in JS,\n// because max possible codepoint is 0x10ffff\nconst _utf8len = new Uint8Array(256);\nfor (let q = 0; q < 256; q++) {\n _utf8len[q] = (q >= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1);\n}\n_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start\n\n\n// convert string to array (typed, when possible)\nvar string2buf = (str) => {\n if (typeof TextEncoder === 'function' && TextEncoder.prototype.encode) {\n return new TextEncoder().encode(str);\n }\n\n let buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0;\n\n // count binary size\n for (m_pos = 0; m_pos < str_len; m_pos++) {\n c = str.charCodeAt(m_pos);\n if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {\n c2 = str.charCodeAt(m_pos + 1);\n if ((c2 & 0xfc00) === 0xdc00) {\n c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);\n m_pos++;\n }\n }\n buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4;\n }\n\n // allocate buffer\n buf = new Uint8Array(buf_len);\n\n // convert\n for (i = 0, m_pos = 0; i < buf_len; m_pos++) {\n c = str.charCodeAt(m_pos);\n if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) {\n c2 = str.charCodeAt(m_pos + 1);\n if ((c2 & 0xfc00) === 0xdc00) {\n c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00);\n m_pos++;\n }\n }\n if (c < 0x80) {\n /* one byte */\n buf[i++] = c;\n } else if (c < 0x800) {\n /* two bytes */\n buf[i++] = 0xC0 | (c >>> 6);\n buf[i++] = 0x80 | (c & 0x3f);\n } else if (c < 0x10000) {\n /* three bytes */\n buf[i++] = 0xE0 | (c >>> 12);\n buf[i++] = 0x80 | (c >>> 6 & 0x3f);\n buf[i++] = 0x80 | (c & 0x3f);\n } else {\n /* four bytes */\n buf[i++] = 0xf0 | (c >>> 18);\n buf[i++] = 0x80 | (c >>> 12 & 0x3f);\n buf[i++] = 0x80 | (c >>> 6 & 0x3f);\n buf[i++] = 0x80 | (c & 0x3f);\n }\n }\n\n return buf;\n};\n\n// Helper\nconst buf2binstring = (buf, len) => {\n // On Chrome, the arguments in a function call that are allowed is `65534`.\n // If the length of the buffer is smaller than that, we can use this optimization,\n // otherwise we will take a slower path.\n if (len < 65534) {\n if (buf.subarray && STR_APPLY_UIA_OK) {\n return String.fromCharCode.apply(null, buf.length === len ? buf : buf.subarray(0, len));\n }\n }\n\n let result = '';\n for (let i = 0; i < len; i++) {\n result += String.fromCharCode(buf[i]);\n }\n return result;\n};\n\n\n// convert array to string\nvar buf2string = (buf, max) => {\n const len = max || buf.length;\n\n if (typeof TextDecoder === 'function' && TextDecoder.prototype.decode) {\n return new TextDecoder().decode(buf.subarray(0, max));\n }\n\n let i, out;\n\n // Reserve max possible length (2 words per char)\n // NB: by unknown reasons, Array is significantly faster for\n // String.fromCharCode.apply than Uint16Array.\n const utf16buf = new Array(len * 2);\n\n for (out = 0, i = 0; i < len;) {\n let c = buf[i++];\n // quick process ascii\n if (c < 0x80) { utf16buf[out++] = c; continue; }\n\n let c_len = _utf8len[c];\n // skip 5 & 6 byte codes\n if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; }\n\n // apply mask on first byte\n c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07;\n // join the rest\n while (c_len > 1 && i < len) {\n c = (c << 6) | (buf[i++] & 0x3f);\n c_len--;\n }\n\n // terminated by end of string?\n if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; }\n\n if (c < 0x10000) {\n utf16buf[out++] = c;\n } else {\n c -= 0x10000;\n utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff);\n utf16buf[out++] = 0xdc00 | (c & 0x3ff);\n }\n }\n\n return buf2binstring(utf16buf, out);\n};\n\n\n// Calculate max possible position in utf8 buffer,\n// that will not break sequence. If that's not possible\n// - (very small limits) return max size as is.\n//\n// buf[] - utf8 bytes array\n// max - length limit (mandatory);\nvar utf8border = (buf, max) => {\n\n max = max || buf.length;\n if (max > buf.length) { max = buf.length; }\n\n // go back from last position, until start of sequence found\n let pos = max - 1;\n while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; }\n\n // Very small and broken sequence,\n // return max, because we should return something anyway.\n if (pos < 0) { return max; }\n\n // If we came to start of buffer - that means buffer is too small,\n // return max too.\n if (pos === 0) { return max; }\n\n return (pos + _utf8len[buf[pos]] > max) ? pos : max;\n};\n\nvar strings = {\n\tstring2buf: string2buf,\n\tbuf2string: buf2string,\n\tutf8border: utf8border\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nfunction ZStream() {\n /* next input byte */\n this.input = null; // JS specific, because we have no pointers\n this.next_in = 0;\n /* number of bytes available at input */\n this.avail_in = 0;\n /* total number of input bytes read so far */\n this.total_in = 0;\n /* next output byte should be put there */\n this.output = null; // JS specific, because we have no pointers\n this.next_out = 0;\n /* remaining free space at output */\n this.avail_out = 0;\n /* total number of bytes output so far */\n this.total_out = 0;\n /* last error message, NULL if no error */\n this.msg = ''/*Z_NULL*/;\n /* not visible by applications */\n this.state = null;\n /* best guess about the data type: binary or text */\n this.data_type = 2/*Z_UNKNOWN*/;\n /* adler32 value of the uncompressed data */\n this.adler = 0;\n}\n\nvar zstream = ZStream;\n\nconst toString$1 = Object.prototype.toString;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH: Z_NO_FLUSH$1, Z_SYNC_FLUSH, Z_FULL_FLUSH, Z_FINISH: Z_FINISH$2,\n Z_OK: Z_OK$2, Z_STREAM_END: Z_STREAM_END$2,\n Z_DEFAULT_COMPRESSION,\n Z_DEFAULT_STRATEGY,\n Z_DEFLATED: Z_DEFLATED$1\n} = constants$2;\n\n/* ===========================================================================*/\n\n\n/**\n * class Deflate\n *\n * Generic JS-style wrapper for zlib calls. If you don't need\n * streaming behaviour - use more simple functions: [[deflate]],\n * [[deflateRaw]] and [[gzip]].\n **/\n\n/* internal\n * Deflate.chunks -> Array\n *\n * Chunks of output data, if [[Deflate#onData]] not overridden.\n **/\n\n/**\n * Deflate.result -> Uint8Array\n *\n * Compressed result, generated by default [[Deflate#onData]]\n * and [[Deflate#onEnd]] handlers. Filled after you push last chunk\n * (call [[Deflate#push]] with `Z_FINISH` / `true` param).\n **/\n\n/**\n * Deflate.err -> Number\n *\n * Error code after deflate finished. 0 (Z_OK) on success.\n * You will not need it in real life, because deflate errors\n * are possible only on wrong options or bad `onData` / `onEnd`\n * custom handlers.\n **/\n\n/**\n * Deflate.msg -> String\n *\n * Error message, if [[Deflate.err]] != 0\n **/\n\n\n/**\n * new Deflate(options)\n * - options (Object): zlib deflate options.\n *\n * Creates new deflator instance with specified params. Throws exception\n * on bad params. Supported options:\n *\n * - `level`\n * - `windowBits`\n * - `memLevel`\n * - `strategy`\n * - `dictionary`\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Additional options, for internal needs:\n *\n * - `chunkSize` - size of generated data chunks (16K by default)\n * - `raw` (Boolean) - do raw deflate\n * - `gzip` (Boolean) - create gzip wrapper\n * - `header` (Object) - custom header for gzip\n * - `text` (Boolean) - true if compressed data believed to be text\n * - `time` (Number) - modification time, unix timestamp\n * - `os` (Number) - operation system code\n * - `extra` (Array) - array of bytes with extra data (max 65536)\n * - `name` (String) - file name (binary string)\n * - `comment` (String) - comment (binary string)\n * - `hcrc` (Boolean) - true if header crc should be added\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * , chunk1 = new Uint8Array([1,2,3,4,5,6,7,8,9])\n * , chunk2 = new Uint8Array([10,11,12,13,14,15,16,17,18,19]);\n *\n * const deflate = new pako.Deflate({ level: 3});\n *\n * deflate.push(chunk1, false);\n * deflate.push(chunk2, true); // true -> last chunk\n *\n * if (deflate.err) { throw new Error(deflate.err); }\n *\n * console.log(deflate.result);\n * ```\n **/\nfunction Deflate$1(options) {\n this.options = common.assign({\n level: Z_DEFAULT_COMPRESSION,\n method: Z_DEFLATED$1,\n chunkSize: 16384,\n windowBits: 15,\n memLevel: 8,\n strategy: Z_DEFAULT_STRATEGY\n }, options || {});\n\n let opt = this.options;\n\n if (opt.raw && (opt.windowBits > 0)) {\n opt.windowBits = -opt.windowBits;\n }\n\n else if (opt.gzip && (opt.windowBits > 0) && (opt.windowBits < 16)) {\n opt.windowBits += 16;\n }\n\n this.err = 0; // error code, if happens (0 = Z_OK)\n this.msg = ''; // error message\n this.ended = false; // used to avoid multiple onEnd() calls\n this.chunks = []; // chunks of compressed data\n\n this.strm = new zstream();\n this.strm.avail_out = 0;\n\n let status = deflate_1$2.deflateInit2(\n this.strm,\n opt.level,\n opt.method,\n opt.windowBits,\n opt.memLevel,\n opt.strategy\n );\n\n if (status !== Z_OK$2) {\n throw new Error(messages[status]);\n }\n\n if (opt.header) {\n deflate_1$2.deflateSetHeader(this.strm, opt.header);\n }\n\n if (opt.dictionary) {\n let dict;\n // Convert data if needed\n if (typeof opt.dictionary === 'string') {\n // If we need to compress text, change encoding to utf8.\n dict = strings.string2buf(opt.dictionary);\n } else if (toString$1.call(opt.dictionary) === '[object ArrayBuffer]') {\n dict = new Uint8Array(opt.dictionary);\n } else {\n dict = opt.dictionary;\n }\n\n status = deflate_1$2.deflateSetDictionary(this.strm, dict);\n\n if (status !== Z_OK$2) {\n throw new Error(messages[status]);\n }\n\n this._dict_set = true;\n }\n}\n\n/**\n * Deflate#push(data[, flush_mode]) -> Boolean\n * - data (Uint8Array|ArrayBuffer|String): input data. Strings will be\n * converted to utf8 byte sequence.\n * - flush_mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes.\n * See constants. Skipped or `false` means Z_NO_FLUSH, `true` means Z_FINISH.\n *\n * Sends input data to deflate pipe, generating [[Deflate#onData]] calls with\n * new compressed chunks. Returns `true` on success. The last data block must\n * have `flush_mode` Z_FINISH (or `true`). That will flush internal pending\n * buffers and call [[Deflate#onEnd]].\n *\n * On fail call [[Deflate#onEnd]] with error code and return false.\n *\n * ##### Example\n *\n * ```javascript\n * push(chunk, false); // push one of data chunks\n * ...\n * push(chunk, true); // push last chunk\n * ```\n **/\nDeflate$1.prototype.push = function (data, flush_mode) {\n const strm = this.strm;\n const chunkSize = this.options.chunkSize;\n let status, _flush_mode;\n\n if (this.ended) { return false; }\n\n if (flush_mode === ~~flush_mode) _flush_mode = flush_mode;\n else _flush_mode = flush_mode === true ? Z_FINISH$2 : Z_NO_FLUSH$1;\n\n // Convert data if needed\n if (typeof data === 'string') {\n // If we need to compress text, change encoding to utf8.\n strm.input = strings.string2buf(data);\n } else if (toString$1.call(data) === '[object ArrayBuffer]') {\n strm.input = new Uint8Array(data);\n } else {\n strm.input = data;\n }\n\n strm.next_in = 0;\n strm.avail_in = strm.input.length;\n\n for (;;) {\n if (strm.avail_out === 0) {\n strm.output = new Uint8Array(chunkSize);\n strm.next_out = 0;\n strm.avail_out = chunkSize;\n }\n\n // Make sure avail_out > 6 to avoid repeating markers\n if ((_flush_mode === Z_SYNC_FLUSH || _flush_mode === Z_FULL_FLUSH) && strm.avail_out <= 6) {\n this.onData(strm.output.subarray(0, strm.next_out));\n strm.avail_out = 0;\n continue;\n }\n\n status = deflate_1$2.deflate(strm, _flush_mode);\n\n // Ended => flush and finish\n if (status === Z_STREAM_END$2) {\n if (strm.next_out > 0) {\n this.onData(strm.output.subarray(0, strm.next_out));\n }\n status = deflate_1$2.deflateEnd(this.strm);\n this.onEnd(status);\n this.ended = true;\n return status === Z_OK$2;\n }\n\n // Flush if out buffer full\n if (strm.avail_out === 0) {\n this.onData(strm.output);\n continue;\n }\n\n // Flush if requested and has data\n if (_flush_mode > 0 && strm.next_out > 0) {\n this.onData(strm.output.subarray(0, strm.next_out));\n strm.avail_out = 0;\n continue;\n }\n\n if (strm.avail_in === 0) break;\n }\n\n return true;\n};\n\n\n/**\n * Deflate#onData(chunk) -> Void\n * - chunk (Uint8Array): output data.\n *\n * By default, stores data blocks in `chunks[]` property and glue\n * those in `onEnd`. Override this handler, if you need another behaviour.\n **/\nDeflate$1.prototype.onData = function (chunk) {\n this.chunks.push(chunk);\n};\n\n\n/**\n * Deflate#onEnd(status) -> Void\n * - status (Number): deflate status. 0 (Z_OK) on success,\n * other if not.\n *\n * Called once after you tell deflate that the input stream is\n * complete (Z_FINISH). By default - join collected chunks,\n * free memory and fill `results` / `err` properties.\n **/\nDeflate$1.prototype.onEnd = function (status) {\n // On success - join\n if (status === Z_OK$2) {\n this.result = common.flattenChunks(this.chunks);\n }\n this.chunks = [];\n this.err = status;\n this.msg = this.strm.msg;\n};\n\n\n/**\n * deflate(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * Compress `data` with deflate algorithm and `options`.\n *\n * Supported options are:\n *\n * - level\n * - windowBits\n * - memLevel\n * - strategy\n * - dictionary\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Sugar (options):\n *\n * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify\n * negative windowBits implicitly.\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * const data = new Uint8Array([1,2,3,4,5,6,7,8,9]);\n *\n * console.log(pako.deflate(data));\n * ```\n **/\nfunction deflate$1(input, options) {\n const deflator = new Deflate$1(options);\n\n deflator.push(input, true);\n\n // That will never happens, if you don't cheat with options :)\n if (deflator.err) { throw deflator.msg || messages[deflator.err]; }\n\n return deflator.result;\n}\n\n\n/**\n * deflateRaw(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * The same as [[deflate]], but creates raw data, without wrapper\n * (header and adler32 crc).\n **/\nfunction deflateRaw$1(input, options) {\n options = options || {};\n options.raw = true;\n return deflate$1(input, options);\n}\n\n\n/**\n * gzip(data[, options]) -> Uint8Array\n * - data (Uint8Array|ArrayBuffer|String): input data to compress.\n * - options (Object): zlib deflate options.\n *\n * The same as [[deflate]], but create gzip wrapper instead of\n * deflate one.\n **/\nfunction gzip$1(input, options) {\n options = options || {};\n options.gzip = true;\n return deflate$1(input, options);\n}\n\n\nvar Deflate_1$1 = Deflate$1;\nvar deflate_2 = deflate$1;\nvar deflateRaw_1$1 = deflateRaw$1;\nvar gzip_1$1 = gzip$1;\nvar constants$1 = constants$2;\n\nvar deflate_1$1 = {\n\tDeflate: Deflate_1$1,\n\tdeflate: deflate_2,\n\tdeflateRaw: deflateRaw_1$1,\n\tgzip: gzip_1$1,\n\tconstants: constants$1\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n// See state defs from inflate.js\nconst BAD$1 = 16209; /* got a data error -- remain here until reset */\nconst TYPE$1 = 16191; /* i: waiting for type bits, including last-flag bit */\n\n/*\n Decode literal, length, and distance codes and write out the resulting\n literal and match bytes until either not enough input or output is\n available, an end-of-block is encountered, or a data error is encountered.\n When large enough input and output buffers are supplied to inflate(), for\n example, a 16K input buffer and a 64K output buffer, more than 95% of the\n inflate execution time is spent in this routine.\n\n Entry assumptions:\n\n state.mode === LEN\n strm.avail_in >= 6\n strm.avail_out >= 258\n start >= strm.avail_out\n state.bits < 8\n\n On return, state.mode is one of:\n\n LEN -- ran out of enough output space or enough available input\n TYPE -- reached end of block code, inflate() to interpret next block\n BAD -- error in block data\n\n Notes:\n\n - The maximum input bits used by a length/distance pair is 15 bits for the\n length code, 5 bits for the length extra, 15 bits for the distance code,\n and 13 bits for the distance extra. This totals 48 bits, or six bytes.\n Therefore if strm.avail_in >= 6, then there is enough input to avoid\n checking for available input while decoding.\n\n - The maximum bytes that a single length/distance pair can output is 258\n bytes, which is the maximum length that can be coded. inflate_fast()\n requires strm.avail_out >= 258 for each loop to avoid checking for\n output space.\n */\nvar inffast = function inflate_fast(strm, start) {\n let _in; /* local strm.input */\n let last; /* have enough input while in < last */\n let _out; /* local strm.output */\n let beg; /* inflate()'s initial strm.output */\n let end; /* while out < end, enough space available */\n//#ifdef INFLATE_STRICT\n let dmax; /* maximum distance from zlib header */\n//#endif\n let wsize; /* window size or zero if not using window */\n let whave; /* valid bytes in the window */\n let wnext; /* window write index */\n // Use `s_window` instead `window`, avoid conflict with instrumentation tools\n let s_window; /* allocated sliding window, if wsize != 0 */\n let hold; /* local strm.hold */\n let bits; /* local strm.bits */\n let lcode; /* local strm.lencode */\n let dcode; /* local strm.distcode */\n let lmask; /* mask for first level of length codes */\n let dmask; /* mask for first level of distance codes */\n let here; /* retrieved table entry */\n let op; /* code bits, operation, extra bits, or */\n /* window position, window bytes to copy */\n let len; /* match length, unused bytes */\n let dist; /* match distance */\n let from; /* where to copy match from */\n let from_source;\n\n\n let input, output; // JS specific, because we have no pointers\n\n /* copy state to local variables */\n const state = strm.state;\n //here = state.here;\n _in = strm.next_in;\n input = strm.input;\n last = _in + (strm.avail_in - 5);\n _out = strm.next_out;\n output = strm.output;\n beg = _out - (start - strm.avail_out);\n end = _out + (strm.avail_out - 257);\n//#ifdef INFLATE_STRICT\n dmax = state.dmax;\n//#endif\n wsize = state.wsize;\n whave = state.whave;\n wnext = state.wnext;\n s_window = state.window;\n hold = state.hold;\n bits = state.bits;\n lcode = state.lencode;\n dcode = state.distcode;\n lmask = (1 << state.lenbits) - 1;\n dmask = (1 << state.distbits) - 1;\n\n\n /* decode literals and length/distances until end-of-block or not enough\n input data or output space */\n\n top:\n do {\n if (bits < 15) {\n hold += input[_in++] << bits;\n bits += 8;\n hold += input[_in++] << bits;\n bits += 8;\n }\n\n here = lcode[hold & lmask];\n\n dolen:\n for (;;) { // Goto emulation\n op = here >>> 24/*here.bits*/;\n hold >>>= op;\n bits -= op;\n op = (here >>> 16) & 0xff/*here.op*/;\n if (op === 0) { /* literal */\n //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?\n // \"inflate: literal '%c'\\n\" :\n // \"inflate: literal 0x%02x\\n\", here.val));\n output[_out++] = here & 0xffff/*here.val*/;\n }\n else if (op & 16) { /* length base */\n len = here & 0xffff/*here.val*/;\n op &= 15; /* number of extra bits */\n if (op) {\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n }\n len += hold & ((1 << op) - 1);\n hold >>>= op;\n bits -= op;\n }\n //Tracevv((stderr, \"inflate: length %u\\n\", len));\n if (bits < 15) {\n hold += input[_in++] << bits;\n bits += 8;\n hold += input[_in++] << bits;\n bits += 8;\n }\n here = dcode[hold & dmask];\n\n dodist:\n for (;;) { // goto emulation\n op = here >>> 24/*here.bits*/;\n hold >>>= op;\n bits -= op;\n op = (here >>> 16) & 0xff/*here.op*/;\n\n if (op & 16) { /* distance base */\n dist = here & 0xffff/*here.val*/;\n op &= 15; /* number of extra bits */\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n if (bits < op) {\n hold += input[_in++] << bits;\n bits += 8;\n }\n }\n dist += hold & ((1 << op) - 1);\n//#ifdef INFLATE_STRICT\n if (dist > dmax) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD$1;\n break top;\n }\n//#endif\n hold >>>= op;\n bits -= op;\n //Tracevv((stderr, \"inflate: distance %u\\n\", dist));\n op = _out - beg; /* max distance in output */\n if (dist > op) { /* see if copy from window */\n op = dist - op; /* distance back in window */\n if (op > whave) {\n if (state.sane) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD$1;\n break top;\n }\n\n// (!) This block is disabled in zlib defaults,\n// don't enable it for binary compatibility\n//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR\n// if (len <= op - whave) {\n// do {\n// output[_out++] = 0;\n// } while (--len);\n// continue top;\n// }\n// len -= op - whave;\n// do {\n// output[_out++] = 0;\n// } while (--op > whave);\n// if (op === 0) {\n// from = _out - dist;\n// do {\n// output[_out++] = output[from++];\n// } while (--len);\n// continue top;\n// }\n//#endif\n }\n from = 0; // window index\n from_source = s_window;\n if (wnext === 0) { /* very common case */\n from += wsize - op;\n if (op < len) { /* some from window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n else if (wnext < op) { /* wrap around window */\n from += wsize + wnext - op;\n op -= wnext;\n if (op < len) { /* some from end of window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = 0;\n if (wnext < len) { /* some from start of window */\n op = wnext;\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n }\n else { /* contiguous in window */\n from += wnext - op;\n if (op < len) { /* some from window */\n len -= op;\n do {\n output[_out++] = s_window[from++];\n } while (--op);\n from = _out - dist; /* rest from output */\n from_source = output;\n }\n }\n while (len > 2) {\n output[_out++] = from_source[from++];\n output[_out++] = from_source[from++];\n output[_out++] = from_source[from++];\n len -= 3;\n }\n if (len) {\n output[_out++] = from_source[from++];\n if (len > 1) {\n output[_out++] = from_source[from++];\n }\n }\n }\n else {\n from = _out - dist; /* copy direct from output */\n do { /* minimum length is three */\n output[_out++] = output[from++];\n output[_out++] = output[from++];\n output[_out++] = output[from++];\n len -= 3;\n } while (len > 2);\n if (len) {\n output[_out++] = output[from++];\n if (len > 1) {\n output[_out++] = output[from++];\n }\n }\n }\n }\n else if ((op & 64) === 0) { /* 2nd level distance code */\n here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];\n continue dodist;\n }\n else {\n strm.msg = 'invalid distance code';\n state.mode = BAD$1;\n break top;\n }\n\n break; // need to emulate goto via \"continue\"\n }\n }\n else if ((op & 64) === 0) { /* 2nd level length code */\n here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))];\n continue dolen;\n }\n else if (op & 32) { /* end-of-block */\n //Tracevv((stderr, \"inflate: end of block\\n\"));\n state.mode = TYPE$1;\n break top;\n }\n else {\n strm.msg = 'invalid literal/length code';\n state.mode = BAD$1;\n break top;\n }\n\n break; // need to emulate goto via \"continue\"\n }\n } while (_in < last && _out < end);\n\n /* return unused bytes (on entry, bits < 8, so in won't go too far back) */\n len = bits >> 3;\n _in -= len;\n bits -= len << 3;\n hold &= (1 << bits) - 1;\n\n /* update state and return */\n strm.next_in = _in;\n strm.next_out = _out;\n strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last));\n strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end));\n state.hold = hold;\n state.bits = bits;\n return;\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nconst MAXBITS = 15;\nconst ENOUGH_LENS$1 = 852;\nconst ENOUGH_DISTS$1 = 592;\n//const ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);\n\nconst CODES$1 = 0;\nconst LENS$1 = 1;\nconst DISTS$1 = 2;\n\nconst lbase = new Uint16Array([ /* Length codes 257..285 base */\n 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31,\n 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0\n]);\n\nconst lext = new Uint8Array([ /* Length codes 257..285 extra */\n 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18,\n 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78\n]);\n\nconst dbase = new Uint16Array([ /* Distance codes 0..29 base */\n 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,\n 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145,\n 8193, 12289, 16385, 24577, 0, 0\n]);\n\nconst dext = new Uint8Array([ /* Distance codes 0..29 extra */\n 16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22,\n 23, 23, 24, 24, 25, 25, 26, 26, 27, 27,\n 28, 28, 29, 29, 64, 64\n]);\n\nconst inflate_table = (type, lens, lens_index, codes, table, table_index, work, opts) =>\n{\n const bits = opts.bits;\n //here = opts.here; /* table entry for duplication */\n\n let len = 0; /* a code's length in bits */\n let sym = 0; /* index of code symbols */\n let min = 0, max = 0; /* minimum and maximum code lengths */\n let root = 0; /* number of index bits for root table */\n let curr = 0; /* number of index bits for current table */\n let drop = 0; /* code bits to drop for sub-table */\n let left = 0; /* number of prefix codes available */\n let used = 0; /* code entries in table used */\n let huff = 0; /* Huffman code */\n let incr; /* for incrementing code, index */\n let fill; /* index for replicating entries */\n let low; /* low bits for current root entry */\n let mask; /* mask for low root bits */\n let next; /* next available space in table */\n let base = null; /* base value table to use */\n// let shoextra; /* extra bits table to use */\n let match; /* use base and extra for symbol >= match */\n const count = new Uint16Array(MAXBITS + 1); //[MAXBITS+1]; /* number of codes of each length */\n const offs = new Uint16Array(MAXBITS + 1); //[MAXBITS+1]; /* offsets in table for each length */\n let extra = null;\n\n let here_bits, here_op, here_val;\n\n /*\n Process a set of code lengths to create a canonical Huffman code. The\n code lengths are lens[0..codes-1]. Each length corresponds to the\n symbols 0..codes-1. The Huffman code is generated by first sorting the\n symbols by length from short to long, and retaining the symbol order\n for codes with equal lengths. Then the code starts with all zero bits\n for the first code of the shortest length, and the codes are integer\n increments for the same length, and zeros are appended as the length\n increases. For the deflate format, these bits are stored backwards\n from their more natural integer increment ordering, and so when the\n decoding tables are built in the large loop below, the integer codes\n are incremented backwards.\n\n This routine assumes, but does not check, that all of the entries in\n lens[] are in the range 0..MAXBITS. The caller must assure this.\n 1..MAXBITS is interpreted as that code length. zero means that that\n symbol does not occur in this code.\n\n The codes are sorted by computing a count of codes for each length,\n creating from that a table of starting indices for each length in the\n sorted table, and then entering the symbols in order in the sorted\n table. The sorted table is work[], with that space being provided by\n the caller.\n\n The length counts are used for other purposes as well, i.e. finding\n the minimum and maximum length codes, determining if there are any\n codes at all, checking for a valid set of lengths, and looking ahead\n at length counts to determine sub-table sizes when building the\n decoding tables.\n */\n\n /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */\n for (len = 0; len <= MAXBITS; len++) {\n count[len] = 0;\n }\n for (sym = 0; sym < codes; sym++) {\n count[lens[lens_index + sym]]++;\n }\n\n /* bound code lengths, force root to be within code lengths */\n root = bits;\n for (max = MAXBITS; max >= 1; max--) {\n if (count[max] !== 0) { break; }\n }\n if (root > max) {\n root = max;\n }\n if (max === 0) { /* no symbols to code at all */\n //table.op[opts.table_index] = 64; //here.op = (var char)64; /* invalid code marker */\n //table.bits[opts.table_index] = 1; //here.bits = (var char)1;\n //table.val[opts.table_index++] = 0; //here.val = (var short)0;\n table[table_index++] = (1 << 24) | (64 << 16) | 0;\n\n\n //table.op[opts.table_index] = 64;\n //table.bits[opts.table_index] = 1;\n //table.val[opts.table_index++] = 0;\n table[table_index++] = (1 << 24) | (64 << 16) | 0;\n\n opts.bits = 1;\n return 0; /* no symbols, but wait for decoding to report error */\n }\n for (min = 1; min < max; min++) {\n if (count[min] !== 0) { break; }\n }\n if (root < min) {\n root = min;\n }\n\n /* check for an over-subscribed or incomplete set of lengths */\n left = 1;\n for (len = 1; len <= MAXBITS; len++) {\n left <<= 1;\n left -= count[len];\n if (left < 0) {\n return -1;\n } /* over-subscribed */\n }\n if (left > 0 && (type === CODES$1 || max !== 1)) {\n return -1; /* incomplete set */\n }\n\n /* generate offsets into symbol table for each length for sorting */\n offs[1] = 0;\n for (len = 1; len < MAXBITS; len++) {\n offs[len + 1] = offs[len] + count[len];\n }\n\n /* sort symbols by length, by symbol order within each length */\n for (sym = 0; sym < codes; sym++) {\n if (lens[lens_index + sym] !== 0) {\n work[offs[lens[lens_index + sym]]++] = sym;\n }\n }\n\n /*\n Create and fill in decoding tables. In this loop, the table being\n filled is at next and has curr index bits. The code being used is huff\n with length len. That code is converted to an index by dropping drop\n bits off of the bottom. For codes where len is less than drop + curr,\n those top drop + curr - len bits are incremented through all values to\n fill the table with replicated entries.\n\n root is the number of index bits for the root table. When len exceeds\n root, sub-tables are created pointed to by the root entry with an index\n of the low root bits of huff. This is saved in low to check for when a\n new sub-table should be started. drop is zero when the root table is\n being filled, and drop is root when sub-tables are being filled.\n\n When a new sub-table is needed, it is necessary to look ahead in the\n code lengths to determine what size sub-table is needed. The length\n counts are used for this, and so count[] is decremented as codes are\n entered in the tables.\n\n used keeps track of how many table entries have been allocated from the\n provided *table space. It is checked for LENS and DIST tables against\n the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in\n the initial root table size constants. See the comments in inftrees.h\n for more information.\n\n sym increments through all symbols, and the loop terminates when\n all codes of length max, i.e. all codes, have been processed. This\n routine permits incomplete codes, so another loop after this one fills\n in the rest of the decoding tables with invalid code markers.\n */\n\n /* set up for code type */\n // poor man optimization - use if-else instead of switch,\n // to avoid deopts in old v8\n if (type === CODES$1) {\n base = extra = work; /* dummy value--not used */\n match = 20;\n\n } else if (type === LENS$1) {\n base = lbase;\n extra = lext;\n match = 257;\n\n } else { /* DISTS */\n base = dbase;\n extra = dext;\n match = 0;\n }\n\n /* initialize opts for loop */\n huff = 0; /* starting code */\n sym = 0; /* starting code symbol */\n len = min; /* starting code length */\n next = table_index; /* current table to fill in */\n curr = root; /* current table index bits */\n drop = 0; /* current bits to drop from code for index */\n low = -1; /* trigger new sub-table when len > root */\n used = 1 << root; /* use root table entries */\n mask = used - 1; /* mask for comparing low */\n\n /* check available table space */\n if ((type === LENS$1 && used > ENOUGH_LENS$1) ||\n (type === DISTS$1 && used > ENOUGH_DISTS$1)) {\n return 1;\n }\n\n /* process all codes and make table entries */\n for (;;) {\n /* create table entry */\n here_bits = len - drop;\n if (work[sym] + 1 < match) {\n here_op = 0;\n here_val = work[sym];\n }\n else if (work[sym] >= match) {\n here_op = extra[work[sym] - match];\n here_val = base[work[sym] - match];\n }\n else {\n here_op = 32 + 64; /* end of block */\n here_val = 0;\n }\n\n /* replicate for those indices with low len bits equal to huff */\n incr = 1 << (len - drop);\n fill = 1 << curr;\n min = fill; /* save offset to next table */\n do {\n fill -= incr;\n table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0;\n } while (fill !== 0);\n\n /* backwards increment the len-bit code huff */\n incr = 1 << (len - 1);\n while (huff & incr) {\n incr >>= 1;\n }\n if (incr !== 0) {\n huff &= incr - 1;\n huff += incr;\n } else {\n huff = 0;\n }\n\n /* go to next symbol, update count, len */\n sym++;\n if (--count[len] === 0) {\n if (len === max) { break; }\n len = lens[lens_index + work[sym]];\n }\n\n /* create new sub-table if needed */\n if (len > root && (huff & mask) !== low) {\n /* if first time, transition to sub-tables */\n if (drop === 0) {\n drop = root;\n }\n\n /* increment past last table */\n next += min; /* here min is 1 << curr */\n\n /* determine length of next table */\n curr = len - drop;\n left = 1 << curr;\n while (curr + drop < max) {\n left -= count[curr + drop];\n if (left <= 0) { break; }\n curr++;\n left <<= 1;\n }\n\n /* check for enough space */\n used += 1 << curr;\n if ((type === LENS$1 && used > ENOUGH_LENS$1) ||\n (type === DISTS$1 && used > ENOUGH_DISTS$1)) {\n return 1;\n }\n\n /* point entry in root table to sub-table */\n low = huff & mask;\n /*table.op[low] = curr;\n table.bits[low] = root;\n table.val[low] = next - opts.table_index;*/\n table[low] = (root << 24) | (curr << 16) | (next - table_index) |0;\n }\n }\n\n /* fill in remaining table entry if code is incomplete (guaranteed to have\n at most one remaining entry, since if the code is incomplete, the\n maximum code length that was allowed to get this far is one bit) */\n if (huff !== 0) {\n //table.op[next + huff] = 64; /* invalid code marker */\n //table.bits[next + huff] = len - drop;\n //table.val[next + huff] = 0;\n table[next + huff] = ((len - drop) << 24) | (64 << 16) |0;\n }\n\n /* set return parameters */\n //opts.table_index += used;\n opts.bits = root;\n return 0;\n};\n\n\nvar inftrees = inflate_table;\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\n\n\n\n\n\nconst CODES = 0;\nconst LENS = 1;\nconst DISTS = 2;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_FINISH: Z_FINISH$1, Z_BLOCK, Z_TREES,\n Z_OK: Z_OK$1, Z_STREAM_END: Z_STREAM_END$1, Z_NEED_DICT: Z_NEED_DICT$1, Z_STREAM_ERROR: Z_STREAM_ERROR$1, Z_DATA_ERROR: Z_DATA_ERROR$1, Z_MEM_ERROR: Z_MEM_ERROR$1, Z_BUF_ERROR,\n Z_DEFLATED\n} = constants$2;\n\n\n/* STATES ====================================================================*/\n/* ===========================================================================*/\n\n\nconst HEAD = 16180; /* i: waiting for magic header */\nconst FLAGS = 16181; /* i: waiting for method and flags (gzip) */\nconst TIME = 16182; /* i: waiting for modification time (gzip) */\nconst OS = 16183; /* i: waiting for extra flags and operating system (gzip) */\nconst EXLEN = 16184; /* i: waiting for extra length (gzip) */\nconst EXTRA = 16185; /* i: waiting for extra bytes (gzip) */\nconst NAME = 16186; /* i: waiting for end of file name (gzip) */\nconst COMMENT = 16187; /* i: waiting for end of comment (gzip) */\nconst HCRC = 16188; /* i: waiting for header crc (gzip) */\nconst DICTID = 16189; /* i: waiting for dictionary check value */\nconst DICT = 16190; /* waiting for inflateSetDictionary() call */\nconst TYPE = 16191; /* i: waiting for type bits, including last-flag bit */\nconst TYPEDO = 16192; /* i: same, but skip check to exit inflate on new block */\nconst STORED = 16193; /* i: waiting for stored size (length and complement) */\nconst COPY_ = 16194; /* i/o: same as COPY below, but only first time in */\nconst COPY = 16195; /* i/o: waiting for input or output to copy stored block */\nconst TABLE = 16196; /* i: waiting for dynamic block table lengths */\nconst LENLENS = 16197; /* i: waiting for code length code lengths */\nconst CODELENS = 16198; /* i: waiting for length/lit and distance code lengths */\nconst LEN_ = 16199; /* i: same as LEN below, but only first time in */\nconst LEN = 16200; /* i: waiting for length/lit/eob code */\nconst LENEXT = 16201; /* i: waiting for length extra bits */\nconst DIST = 16202; /* i: waiting for distance code */\nconst DISTEXT = 16203; /* i: waiting for distance extra bits */\nconst MATCH = 16204; /* o: waiting for output space to copy string */\nconst LIT = 16205; /* o: waiting for output space to write literal */\nconst CHECK = 16206; /* i: waiting for 32-bit check value */\nconst LENGTH = 16207; /* i: waiting for 32-bit length (gzip) */\nconst DONE = 16208; /* finished check, done -- remain here until reset */\nconst BAD = 16209; /* got a data error -- remain here until reset */\nconst MEM = 16210; /* got an inflate() memory error -- remain here until reset */\nconst SYNC = 16211; /* looking for synchronization bytes to restart inflate() */\n\n/* ===========================================================================*/\n\n\n\nconst ENOUGH_LENS = 852;\nconst ENOUGH_DISTS = 592;\n//const ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS);\n\nconst MAX_WBITS = 15;\n/* 32K LZ77 window */\nconst DEF_WBITS = MAX_WBITS;\n\n\nconst zswap32 = (q) => {\n\n return (((q >>> 24) & 0xff) +\n ((q >>> 8) & 0xff00) +\n ((q & 0xff00) << 8) +\n ((q & 0xff) << 24));\n};\n\n\nfunction InflateState() {\n this.strm = null; /* pointer back to this zlib stream */\n this.mode = 0; /* current inflate mode */\n this.last = false; /* true if processing last block */\n this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip,\n bit 2 true to validate check value */\n this.havedict = false; /* true if dictionary provided */\n this.flags = 0; /* gzip header method and flags (0 if zlib), or\n -1 if raw or no header yet */\n this.dmax = 0; /* zlib header max distance (INFLATE_STRICT) */\n this.check = 0; /* protected copy of check value */\n this.total = 0; /* protected copy of output count */\n // TODO: may be {}\n this.head = null; /* where to save gzip header information */\n\n /* sliding window */\n this.wbits = 0; /* log base 2 of requested window size */\n this.wsize = 0; /* window size or zero if not using window */\n this.whave = 0; /* valid bytes in the window */\n this.wnext = 0; /* window write index */\n this.window = null; /* allocated sliding window, if needed */\n\n /* bit accumulator */\n this.hold = 0; /* input bit accumulator */\n this.bits = 0; /* number of bits in \"in\" */\n\n /* for string and stored block copying */\n this.length = 0; /* literal or length of data to copy */\n this.offset = 0; /* distance back to copy string from */\n\n /* for table and code decoding */\n this.extra = 0; /* extra bits needed */\n\n /* fixed and dynamic code tables */\n this.lencode = null; /* starting table for length/literal codes */\n this.distcode = null; /* starting table for distance codes */\n this.lenbits = 0; /* index bits for lencode */\n this.distbits = 0; /* index bits for distcode */\n\n /* dynamic table building */\n this.ncode = 0; /* number of code length code lengths */\n this.nlen = 0; /* number of length code lengths */\n this.ndist = 0; /* number of distance code lengths */\n this.have = 0; /* number of code lengths in lens[] */\n this.next = null; /* next available space in codes[] */\n\n this.lens = new Uint16Array(320); /* temporary storage for code lengths */\n this.work = new Uint16Array(288); /* work area for code table building */\n\n /*\n because we don't have pointers in js, we use lencode and distcode directly\n as buffers so we don't need codes\n */\n //this.codes = new Int32Array(ENOUGH); /* space for code tables */\n this.lendyn = null; /* dynamic table for length/literal codes (JS specific) */\n this.distdyn = null; /* dynamic table for distance codes (JS specific) */\n this.sane = 0; /* if false, allow invalid distance too far */\n this.back = 0; /* bits back of last unprocessed length/lit */\n this.was = 0; /* initial length of match */\n}\n\n\nconst inflateStateCheck = (strm) => {\n\n if (!strm) {\n return 1;\n }\n const state = strm.state;\n if (!state || state.strm !== strm ||\n state.mode < HEAD || state.mode > SYNC) {\n return 1;\n }\n return 0;\n};\n\n\nconst inflateResetKeep = (strm) => {\n\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n strm.total_in = strm.total_out = state.total = 0;\n strm.msg = ''; /*Z_NULL*/\n if (state.wrap) { /* to support ill-conceived Java test suite */\n strm.adler = state.wrap & 1;\n }\n state.mode = HEAD;\n state.last = 0;\n state.havedict = 0;\n state.flags = -1;\n state.dmax = 32768;\n state.head = null/*Z_NULL*/;\n state.hold = 0;\n state.bits = 0;\n //state.lencode = state.distcode = state.next = state.codes;\n state.lencode = state.lendyn = new Int32Array(ENOUGH_LENS);\n state.distcode = state.distdyn = new Int32Array(ENOUGH_DISTS);\n\n state.sane = 1;\n state.back = -1;\n //Tracev((stderr, \"inflate: reset\\n\"));\n return Z_OK$1;\n};\n\n\nconst inflateReset = (strm) => {\n\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n state.wsize = 0;\n state.whave = 0;\n state.wnext = 0;\n return inflateResetKeep(strm);\n\n};\n\n\nconst inflateReset2 = (strm, windowBits) => {\n let wrap;\n\n /* get the state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n\n /* extract wrap request from windowBits parameter */\n if (windowBits < 0) {\n wrap = 0;\n windowBits = -windowBits;\n }\n else {\n wrap = (windowBits >> 4) + 5;\n if (windowBits < 48) {\n windowBits &= 15;\n }\n }\n\n /* set number of window bits, free window if different */\n if (windowBits && (windowBits < 8 || windowBits > 15)) {\n return Z_STREAM_ERROR$1;\n }\n if (state.window !== null && state.wbits !== windowBits) {\n state.window = null;\n }\n\n /* update state and reset the rest of it */\n state.wrap = wrap;\n state.wbits = windowBits;\n return inflateReset(strm);\n};\n\n\nconst inflateInit2 = (strm, windowBits) => {\n\n if (!strm) { return Z_STREAM_ERROR$1; }\n //strm.msg = Z_NULL; /* in case we return an error */\n\n const state = new InflateState();\n\n //if (state === Z_NULL) return Z_MEM_ERROR;\n //Tracev((stderr, \"inflate: allocated\\n\"));\n strm.state = state;\n state.strm = strm;\n state.window = null/*Z_NULL*/;\n state.mode = HEAD; /* to pass state test in inflateReset2() */\n const ret = inflateReset2(strm, windowBits);\n if (ret !== Z_OK$1) {\n strm.state = null/*Z_NULL*/;\n }\n return ret;\n};\n\n\nconst inflateInit = (strm) => {\n\n return inflateInit2(strm, DEF_WBITS);\n};\n\n\n/*\n Return state with length and distance decoding tables and index sizes set to\n fixed code decoding. Normally this returns fixed tables from inffixed.h.\n If BUILDFIXED is defined, then instead this routine builds the tables the\n first time it's called, and returns those tables the first time and\n thereafter. This reduces the size of the code by about 2K bytes, in\n exchange for a little execution time. However, BUILDFIXED should not be\n used for threaded applications, since the rewriting of the tables and virgin\n may not be thread-safe.\n */\nlet virgin = true;\n\nlet lenfix, distfix; // We have no pointers in JS, so keep tables separate\n\n\nconst fixedtables = (state) => {\n\n /* build fixed huffman tables if first call (may not be thread safe) */\n if (virgin) {\n lenfix = new Int32Array(512);\n distfix = new Int32Array(32);\n\n /* literal/length table */\n let sym = 0;\n while (sym < 144) { state.lens[sym++] = 8; }\n while (sym < 256) { state.lens[sym++] = 9; }\n while (sym < 280) { state.lens[sym++] = 7; }\n while (sym < 288) { state.lens[sym++] = 8; }\n\n inftrees(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 });\n\n /* distance table */\n sym = 0;\n while (sym < 32) { state.lens[sym++] = 5; }\n\n inftrees(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 });\n\n /* do this just once */\n virgin = false;\n }\n\n state.lencode = lenfix;\n state.lenbits = 9;\n state.distcode = distfix;\n state.distbits = 5;\n};\n\n\n/*\n Update the window with the last wsize (normally 32K) bytes written before\n returning. If window does not exist yet, create it. This is only called\n when a window is already in use, or when output has been written during this\n inflate call, but the end of the deflate stream has not been reached yet.\n It is also called to create a window for dictionary data when a dictionary\n is loaded.\n\n Providing output buffers larger than 32K to inflate() should provide a speed\n advantage, since only the last 32K of output is copied to the sliding window\n upon return from inflate(), and since all distances after the first 32K of\n output will fall in the output data, making match copies simpler and faster.\n The advantage may be dependent on the size of the processor's data caches.\n */\nconst updatewindow = (strm, src, end, copy) => {\n\n let dist;\n const state = strm.state;\n\n /* if it hasn't been done already, allocate space for the window */\n if (state.window === null) {\n state.wsize = 1 << state.wbits;\n state.wnext = 0;\n state.whave = 0;\n\n state.window = new Uint8Array(state.wsize);\n }\n\n /* copy state->wsize or less output bytes into the circular window */\n if (copy >= state.wsize) {\n state.window.set(src.subarray(end - state.wsize, end), 0);\n state.wnext = 0;\n state.whave = state.wsize;\n }\n else {\n dist = state.wsize - state.wnext;\n if (dist > copy) {\n dist = copy;\n }\n //zmemcpy(state->window + state->wnext, end - copy, dist);\n state.window.set(src.subarray(end - copy, end - copy + dist), state.wnext);\n copy -= dist;\n if (copy) {\n //zmemcpy(state->window, end - copy, copy);\n state.window.set(src.subarray(end - copy, end), 0);\n state.wnext = copy;\n state.whave = state.wsize;\n }\n else {\n state.wnext += dist;\n if (state.wnext === state.wsize) { state.wnext = 0; }\n if (state.whave < state.wsize) { state.whave += dist; }\n }\n }\n return 0;\n};\n\n\nconst inflate$2 = (strm, flush) => {\n\n let state;\n let input, output; // input/output buffers\n let next; /* next input INDEX */\n let put; /* next output INDEX */\n let have, left; /* available input and output */\n let hold; /* bit buffer */\n let bits; /* bits in bit buffer */\n let _in, _out; /* save starting available input and output */\n let copy; /* number of stored or match bytes to copy */\n let from; /* where to copy match bytes from */\n let from_source;\n let here = 0; /* current decoding table entry */\n let here_bits, here_op, here_val; // paked \"here\" denormalized (JS specific)\n //let last; /* parent table entry */\n let last_bits, last_op, last_val; // paked \"last\" denormalized (JS specific)\n let len; /* length to copy for repeats, bits to drop */\n let ret; /* return code */\n const hbuf = new Uint8Array(4); /* buffer for gzip header crc calculation */\n let opts;\n\n let n; // temporary variable for NEED_BITS\n\n const order = /* permutation of code lengths */\n new Uint8Array([ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ]);\n\n\n if (inflateStateCheck(strm) || !strm.output ||\n (!strm.input && strm.avail_in !== 0)) {\n return Z_STREAM_ERROR$1;\n }\n\n state = strm.state;\n if (state.mode === TYPE) { state.mode = TYPEDO; } /* skip check */\n\n\n //--- LOAD() ---\n put = strm.next_out;\n output = strm.output;\n left = strm.avail_out;\n next = strm.next_in;\n input = strm.input;\n have = strm.avail_in;\n hold = state.hold;\n bits = state.bits;\n //---\n\n _in = have;\n _out = left;\n ret = Z_OK$1;\n\n inf_leave: // goto emulation\n for (;;) {\n switch (state.mode) {\n case HEAD:\n if (state.wrap === 0) {\n state.mode = TYPEDO;\n break;\n }\n //=== NEEDBITS(16);\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 2) && hold === 0x8b1f) { /* gzip header */\n if (state.wbits === 0) {\n state.wbits = 15;\n }\n state.check = 0/*crc32(0L, Z_NULL, 0)*/;\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = FLAGS;\n break;\n }\n if (state.head) {\n state.head.done = false;\n }\n if (!(state.wrap & 1) || /* check if zlib header allowed */\n (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) {\n strm.msg = 'incorrect header check';\n state.mode = BAD;\n break;\n }\n if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) {\n strm.msg = 'unknown compression method';\n state.mode = BAD;\n break;\n }\n //--- DROPBITS(4) ---//\n hold >>>= 4;\n bits -= 4;\n //---//\n len = (hold & 0x0f)/*BITS(4)*/ + 8;\n if (state.wbits === 0) {\n state.wbits = len;\n }\n if (len > 15 || len > state.wbits) {\n strm.msg = 'invalid window size';\n state.mode = BAD;\n break;\n }\n\n // !!! pako patch. Force use `options.windowBits` if passed.\n // Required to always use max window size by default.\n state.dmax = 1 << state.wbits;\n //state.dmax = 1 << len;\n\n state.flags = 0; /* indicate zlib header */\n //Tracev((stderr, \"inflate: zlib header ok\\n\"));\n strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;\n state.mode = hold & 0x200 ? DICTID : TYPE;\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n break;\n case FLAGS:\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.flags = hold;\n if ((state.flags & 0xff) !== Z_DEFLATED) {\n strm.msg = 'unknown compression method';\n state.mode = BAD;\n break;\n }\n if (state.flags & 0xe000) {\n strm.msg = 'unknown header flags set';\n state.mode = BAD;\n break;\n }\n if (state.head) {\n state.head.text = ((hold >> 8) & 1);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = TIME;\n /* falls through */\n case TIME:\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if (state.head) {\n state.head.time = hold;\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC4(state.check, hold)\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n hbuf[2] = (hold >>> 16) & 0xff;\n hbuf[3] = (hold >>> 24) & 0xff;\n state.check = crc32_1(state.check, hbuf, 4, 0);\n //===\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = OS;\n /* falls through */\n case OS:\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if (state.head) {\n state.head.xflags = (hold & 0xff);\n state.head.os = (hold >> 8);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = EXLEN;\n /* falls through */\n case EXLEN:\n if (state.flags & 0x0400) {\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.length = hold;\n if (state.head) {\n state.head.extra_len = hold;\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n //=== CRC2(state.check, hold);\n hbuf[0] = hold & 0xff;\n hbuf[1] = (hold >>> 8) & 0xff;\n state.check = crc32_1(state.check, hbuf, 2, 0);\n //===//\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n }\n else if (state.head) {\n state.head.extra = null/*Z_NULL*/;\n }\n state.mode = EXTRA;\n /* falls through */\n case EXTRA:\n if (state.flags & 0x0400) {\n copy = state.length;\n if (copy > have) { copy = have; }\n if (copy) {\n if (state.head) {\n len = state.head.extra_len - state.length;\n if (!state.head.extra) {\n // Use untyped array for more convenient processing later\n state.head.extra = new Uint8Array(state.head.extra_len);\n }\n state.head.extra.set(\n input.subarray(\n next,\n // extra field is limited to 65536 bytes\n // - no need for additional size check\n next + copy\n ),\n /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/\n len\n );\n //zmemcpy(state.head.extra + len, next,\n // len + copy > state.head.extra_max ?\n // state.head.extra_max - len : copy);\n }\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n state.length -= copy;\n }\n if (state.length) { break inf_leave; }\n }\n state.length = 0;\n state.mode = NAME;\n /* falls through */\n case NAME:\n if (state.flags & 0x0800) {\n if (have === 0) { break inf_leave; }\n copy = 0;\n do {\n // TODO: 2 or 1 bytes?\n len = input[next + copy++];\n /* use constant limit because in js we should not preallocate memory */\n if (state.head && len &&\n (state.length < 65536 /*state.head.name_max*/)) {\n state.head.name += String.fromCharCode(len);\n }\n } while (len && copy < have);\n\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n if (len) { break inf_leave; }\n }\n else if (state.head) {\n state.head.name = null;\n }\n state.length = 0;\n state.mode = COMMENT;\n /* falls through */\n case COMMENT:\n if (state.flags & 0x1000) {\n if (have === 0) { break inf_leave; }\n copy = 0;\n do {\n len = input[next + copy++];\n /* use constant limit because in js we should not preallocate memory */\n if (state.head && len &&\n (state.length < 65536 /*state.head.comm_max*/)) {\n state.head.comment += String.fromCharCode(len);\n }\n } while (len && copy < have);\n if ((state.flags & 0x0200) && (state.wrap & 4)) {\n state.check = crc32_1(state.check, input, copy, next);\n }\n have -= copy;\n next += copy;\n if (len) { break inf_leave; }\n }\n else if (state.head) {\n state.head.comment = null;\n }\n state.mode = HCRC;\n /* falls through */\n case HCRC:\n if (state.flags & 0x0200) {\n //=== NEEDBITS(16); */\n while (bits < 16) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 4) && hold !== (state.check & 0xffff)) {\n strm.msg = 'header crc mismatch';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n }\n if (state.head) {\n state.head.hcrc = ((state.flags >> 9) & 1);\n state.head.done = true;\n }\n strm.adler = state.check = 0;\n state.mode = TYPE;\n break;\n case DICTID:\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n strm.adler = state.check = zswap32(hold);\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = DICT;\n /* falls through */\n case DICT:\n if (state.havedict === 0) {\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n return Z_NEED_DICT$1;\n }\n strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/;\n state.mode = TYPE;\n /* falls through */\n case TYPE:\n if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case TYPEDO:\n if (state.last) {\n //--- BYTEBITS() ---//\n hold >>>= bits & 7;\n bits -= bits & 7;\n //---//\n state.mode = CHECK;\n break;\n }\n //=== NEEDBITS(3); */\n while (bits < 3) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.last = (hold & 0x01)/*BITS(1)*/;\n //--- DROPBITS(1) ---//\n hold >>>= 1;\n bits -= 1;\n //---//\n\n switch ((hold & 0x03)/*BITS(2)*/) {\n case 0: /* stored block */\n //Tracev((stderr, \"inflate: stored block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = STORED;\n break;\n case 1: /* fixed block */\n fixedtables(state);\n //Tracev((stderr, \"inflate: fixed codes block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = LEN_; /* decode codes */\n if (flush === Z_TREES) {\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n break inf_leave;\n }\n break;\n case 2: /* dynamic block */\n //Tracev((stderr, \"inflate: dynamic codes block%s\\n\",\n // state.last ? \" (last)\" : \"\"));\n state.mode = TABLE;\n break;\n case 3:\n strm.msg = 'invalid block type';\n state.mode = BAD;\n }\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n break;\n case STORED:\n //--- BYTEBITS() ---// /* go to byte boundary */\n hold >>>= bits & 7;\n bits -= bits & 7;\n //---//\n //=== NEEDBITS(32); */\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) {\n strm.msg = 'invalid stored block lengths';\n state.mode = BAD;\n break;\n }\n state.length = hold & 0xffff;\n //Tracev((stderr, \"inflate: stored length %u\\n\",\n // state.length));\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n state.mode = COPY_;\n if (flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case COPY_:\n state.mode = COPY;\n /* falls through */\n case COPY:\n copy = state.length;\n if (copy) {\n if (copy > have) { copy = have; }\n if (copy > left) { copy = left; }\n if (copy === 0) { break inf_leave; }\n //--- zmemcpy(put, next, copy); ---\n output.set(input.subarray(next, next + copy), put);\n //---//\n have -= copy;\n next += copy;\n left -= copy;\n put += copy;\n state.length -= copy;\n break;\n }\n //Tracev((stderr, \"inflate: stored end\\n\"));\n state.mode = TYPE;\n break;\n case TABLE:\n //=== NEEDBITS(14); */\n while (bits < 14) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257;\n //--- DROPBITS(5) ---//\n hold >>>= 5;\n bits -= 5;\n //---//\n state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1;\n //--- DROPBITS(5) ---//\n hold >>>= 5;\n bits -= 5;\n //---//\n state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4;\n //--- DROPBITS(4) ---//\n hold >>>= 4;\n bits -= 4;\n //---//\n//#ifndef PKZIP_BUG_WORKAROUND\n if (state.nlen > 286 || state.ndist > 30) {\n strm.msg = 'too many length or distance symbols';\n state.mode = BAD;\n break;\n }\n//#endif\n //Tracev((stderr, \"inflate: table sizes ok\\n\"));\n state.have = 0;\n state.mode = LENLENS;\n /* falls through */\n case LENLENS:\n while (state.have < state.ncode) {\n //=== NEEDBITS(3);\n while (bits < 3) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.lens[order[state.have++]] = (hold & 0x07);//BITS(3);\n //--- DROPBITS(3) ---//\n hold >>>= 3;\n bits -= 3;\n //---//\n }\n while (state.have < 19) {\n state.lens[order[state.have++]] = 0;\n }\n // We have separate tables & no pointers. 2 commented lines below not needed.\n //state.next = state.codes;\n //state.lencode = state.next;\n // Switch to use dynamic table\n state.lencode = state.lendyn;\n state.lenbits = 7;\n\n opts = { bits: state.lenbits };\n ret = inftrees(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);\n state.lenbits = opts.bits;\n\n if (ret) {\n strm.msg = 'invalid code lengths set';\n state.mode = BAD;\n break;\n }\n //Tracev((stderr, \"inflate: code lengths ok\\n\"));\n state.have = 0;\n state.mode = CODELENS;\n /* falls through */\n case CODELENS:\n while (state.have < state.nlen + state.ndist) {\n for (;;) {\n here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if (here_val < 16) {\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.lens[state.have++] = here_val;\n }\n else {\n if (here_val === 16) {\n //=== NEEDBITS(here.bits + 2);\n n = here_bits + 2;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n if (state.have === 0) {\n strm.msg = 'invalid bit length repeat';\n state.mode = BAD;\n break;\n }\n len = state.lens[state.have - 1];\n copy = 3 + (hold & 0x03);//BITS(2);\n //--- DROPBITS(2) ---//\n hold >>>= 2;\n bits -= 2;\n //---//\n }\n else if (here_val === 17) {\n //=== NEEDBITS(here.bits + 3);\n n = here_bits + 3;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n len = 0;\n copy = 3 + (hold & 0x07);//BITS(3);\n //--- DROPBITS(3) ---//\n hold >>>= 3;\n bits -= 3;\n //---//\n }\n else {\n //=== NEEDBITS(here.bits + 7);\n n = here_bits + 7;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n len = 0;\n copy = 11 + (hold & 0x7f);//BITS(7);\n //--- DROPBITS(7) ---//\n hold >>>= 7;\n bits -= 7;\n //---//\n }\n if (state.have + copy > state.nlen + state.ndist) {\n strm.msg = 'invalid bit length repeat';\n state.mode = BAD;\n break;\n }\n while (copy--) {\n state.lens[state.have++] = len;\n }\n }\n }\n\n /* handle error breaks in while */\n if (state.mode === BAD) { break; }\n\n /* check for end-of-block code (better have one) */\n if (state.lens[256] === 0) {\n strm.msg = 'invalid code -- missing end-of-block';\n state.mode = BAD;\n break;\n }\n\n /* build code tables -- note: do not change the lenbits or distbits\n values here (9 and 6) without reading the comments in inftrees.h\n concerning the ENOUGH constants, which depend on those values */\n state.lenbits = 9;\n\n opts = { bits: state.lenbits };\n ret = inftrees(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts);\n // We have separate tables & no pointers. 2 commented lines below not needed.\n // state.next_index = opts.table_index;\n state.lenbits = opts.bits;\n // state.lencode = state.next;\n\n if (ret) {\n strm.msg = 'invalid literal/lengths set';\n state.mode = BAD;\n break;\n }\n\n state.distbits = 6;\n //state.distcode.copy(state.codes);\n // Switch to use dynamic table\n state.distcode = state.distdyn;\n opts = { bits: state.distbits };\n ret = inftrees(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts);\n // We have separate tables & no pointers. 2 commented lines below not needed.\n // state.next_index = opts.table_index;\n state.distbits = opts.bits;\n // state.distcode = state.next;\n\n if (ret) {\n strm.msg = 'invalid distances set';\n state.mode = BAD;\n break;\n }\n //Tracev((stderr, 'inflate: codes ok\\n'));\n state.mode = LEN_;\n if (flush === Z_TREES) { break inf_leave; }\n /* falls through */\n case LEN_:\n state.mode = LEN;\n /* falls through */\n case LEN:\n if (have >= 6 && left >= 258) {\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n inffast(strm, _out);\n //--- LOAD() ---\n put = strm.next_out;\n output = strm.output;\n left = strm.avail_out;\n next = strm.next_in;\n input = strm.input;\n have = strm.avail_in;\n hold = state.hold;\n bits = state.bits;\n //---\n\n if (state.mode === TYPE) {\n state.back = -1;\n }\n break;\n }\n state.back = 0;\n for (;;) {\n here = state.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if (here_bits <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if (here_op && (here_op & 0xf0) === 0) {\n last_bits = here_bits;\n last_op = here_op;\n last_val = here_val;\n for (;;) {\n here = state.lencode[last_val +\n ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((last_bits + here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n //--- DROPBITS(last.bits) ---//\n hold >>>= last_bits;\n bits -= last_bits;\n //---//\n state.back += last_bits;\n }\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.back += here_bits;\n state.length = here_val;\n if (here_op === 0) {\n //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ?\n // \"inflate: literal '%c'\\n\" :\n // \"inflate: literal 0x%02x\\n\", here.val));\n state.mode = LIT;\n break;\n }\n if (here_op & 32) {\n //Tracevv((stderr, \"inflate: end of block\\n\"));\n state.back = -1;\n state.mode = TYPE;\n break;\n }\n if (here_op & 64) {\n strm.msg = 'invalid literal/length code';\n state.mode = BAD;\n break;\n }\n state.extra = here_op & 15;\n state.mode = LENEXT;\n /* falls through */\n case LENEXT:\n if (state.extra) {\n //=== NEEDBITS(state.extra);\n n = state.extra;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;\n //--- DROPBITS(state.extra) ---//\n hold >>>= state.extra;\n bits -= state.extra;\n //---//\n state.back += state.extra;\n }\n //Tracevv((stderr, \"inflate: length %u\\n\", state.length));\n state.was = state.length;\n state.mode = DIST;\n /* falls through */\n case DIST:\n for (;;) {\n here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n if ((here_op & 0xf0) === 0) {\n last_bits = here_bits;\n last_op = here_op;\n last_val = here_val;\n for (;;) {\n here = state.distcode[last_val +\n ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)];\n here_bits = here >>> 24;\n here_op = (here >>> 16) & 0xff;\n here_val = here & 0xffff;\n\n if ((last_bits + here_bits) <= bits) { break; }\n //--- PULLBYTE() ---//\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n //---//\n }\n //--- DROPBITS(last.bits) ---//\n hold >>>= last_bits;\n bits -= last_bits;\n //---//\n state.back += last_bits;\n }\n //--- DROPBITS(here.bits) ---//\n hold >>>= here_bits;\n bits -= here_bits;\n //---//\n state.back += here_bits;\n if (here_op & 64) {\n strm.msg = 'invalid distance code';\n state.mode = BAD;\n break;\n }\n state.offset = here_val;\n state.extra = (here_op) & 15;\n state.mode = DISTEXT;\n /* falls through */\n case DISTEXT:\n if (state.extra) {\n //=== NEEDBITS(state.extra);\n n = state.extra;\n while (bits < n) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/;\n //--- DROPBITS(state.extra) ---//\n hold >>>= state.extra;\n bits -= state.extra;\n //---//\n state.back += state.extra;\n }\n//#ifdef INFLATE_STRICT\n if (state.offset > state.dmax) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD;\n break;\n }\n//#endif\n //Tracevv((stderr, \"inflate: distance %u\\n\", state.offset));\n state.mode = MATCH;\n /* falls through */\n case MATCH:\n if (left === 0) { break inf_leave; }\n copy = _out - left;\n if (state.offset > copy) { /* copy from window */\n copy = state.offset - copy;\n if (copy > state.whave) {\n if (state.sane) {\n strm.msg = 'invalid distance too far back';\n state.mode = BAD;\n break;\n }\n// (!) This block is disabled in zlib defaults,\n// don't enable it for binary compatibility\n//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR\n// Trace((stderr, \"inflate.c too far\\n\"));\n// copy -= state.whave;\n// if (copy > state.length) { copy = state.length; }\n// if (copy > left) { copy = left; }\n// left -= copy;\n// state.length -= copy;\n// do {\n// output[put++] = 0;\n// } while (--copy);\n// if (state.length === 0) { state.mode = LEN; }\n// break;\n//#endif\n }\n if (copy > state.wnext) {\n copy -= state.wnext;\n from = state.wsize - copy;\n }\n else {\n from = state.wnext - copy;\n }\n if (copy > state.length) { copy = state.length; }\n from_source = state.window;\n }\n else { /* copy from output */\n from_source = output;\n from = put - state.offset;\n copy = state.length;\n }\n if (copy > left) { copy = left; }\n left -= copy;\n state.length -= copy;\n do {\n output[put++] = from_source[from++];\n } while (--copy);\n if (state.length === 0) { state.mode = LEN; }\n break;\n case LIT:\n if (left === 0) { break inf_leave; }\n output[put++] = state.length;\n left--;\n state.mode = LEN;\n break;\n case CHECK:\n if (state.wrap) {\n //=== NEEDBITS(32);\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n // Use '|' instead of '+' to make sure that result is signed\n hold |= input[next++] << bits;\n bits += 8;\n }\n //===//\n _out -= left;\n strm.total_out += _out;\n state.total += _out;\n if ((state.wrap & 4) && _out) {\n strm.adler = state.check =\n /*UPDATE_CHECK(state.check, put - _out, _out);*/\n (state.flags ? crc32_1(state.check, output, _out, put - _out) : adler32_1(state.check, output, _out, put - _out));\n\n }\n _out = left;\n // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too\n if ((state.wrap & 4) && (state.flags ? hold : zswap32(hold)) !== state.check) {\n strm.msg = 'incorrect data check';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n //Tracev((stderr, \"inflate: check matches trailer\\n\"));\n }\n state.mode = LENGTH;\n /* falls through */\n case LENGTH:\n if (state.wrap && state.flags) {\n //=== NEEDBITS(32);\n while (bits < 32) {\n if (have === 0) { break inf_leave; }\n have--;\n hold += input[next++] << bits;\n bits += 8;\n }\n //===//\n if ((state.wrap & 4) && hold !== (state.total & 0xffffffff)) {\n strm.msg = 'incorrect length check';\n state.mode = BAD;\n break;\n }\n //=== INITBITS();\n hold = 0;\n bits = 0;\n //===//\n //Tracev((stderr, \"inflate: length matches trailer\\n\"));\n }\n state.mode = DONE;\n /* falls through */\n case DONE:\n ret = Z_STREAM_END$1;\n break inf_leave;\n case BAD:\n ret = Z_DATA_ERROR$1;\n break inf_leave;\n case MEM:\n return Z_MEM_ERROR$1;\n case SYNC:\n /* falls through */\n default:\n return Z_STREAM_ERROR$1;\n }\n }\n\n // inf_leave <- here is real place for \"goto inf_leave\", emulated via \"break inf_leave\"\n\n /*\n Return from inflate(), updating the total counts and the check value.\n If there was no progress during the inflate() call, return a buffer\n error. Call updatewindow() to create and/or update the window state.\n Note: a memory error from inflate() is non-recoverable.\n */\n\n //--- RESTORE() ---\n strm.next_out = put;\n strm.avail_out = left;\n strm.next_in = next;\n strm.avail_in = have;\n state.hold = hold;\n state.bits = bits;\n //---\n\n if (state.wsize || (_out !== strm.avail_out && state.mode < BAD &&\n (state.mode < CHECK || flush !== Z_FINISH$1))) {\n if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) ;\n }\n _in -= strm.avail_in;\n _out -= strm.avail_out;\n strm.total_in += _in;\n strm.total_out += _out;\n state.total += _out;\n if ((state.wrap & 4) && _out) {\n strm.adler = state.check = /*UPDATE_CHECK(state.check, strm.next_out - _out, _out);*/\n (state.flags ? crc32_1(state.check, output, _out, strm.next_out - _out) : adler32_1(state.check, output, _out, strm.next_out - _out));\n }\n strm.data_type = state.bits + (state.last ? 64 : 0) +\n (state.mode === TYPE ? 128 : 0) +\n (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0);\n if (((_in === 0 && _out === 0) || flush === Z_FINISH$1) && ret === Z_OK$1) {\n ret = Z_BUF_ERROR;\n }\n return ret;\n};\n\n\nconst inflateEnd = (strm) => {\n\n if (inflateStateCheck(strm)) {\n return Z_STREAM_ERROR$1;\n }\n\n let state = strm.state;\n if (state.window) {\n state.window = null;\n }\n strm.state = null;\n return Z_OK$1;\n};\n\n\nconst inflateGetHeader = (strm, head) => {\n\n /* check state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n const state = strm.state;\n if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR$1; }\n\n /* save header structure */\n state.head = head;\n head.done = false;\n return Z_OK$1;\n};\n\n\nconst inflateSetDictionary = (strm, dictionary) => {\n const dictLength = dictionary.length;\n\n let state;\n let dictid;\n let ret;\n\n /* check state */\n if (inflateStateCheck(strm)) { return Z_STREAM_ERROR$1; }\n state = strm.state;\n\n if (state.wrap !== 0 && state.mode !== DICT) {\n return Z_STREAM_ERROR$1;\n }\n\n /* check for correct dictionary identifier */\n if (state.mode === DICT) {\n dictid = 1; /* adler32(0, null, 0)*/\n /* dictid = adler32(dictid, dictionary, dictLength); */\n dictid = adler32_1(dictid, dictionary, dictLength, 0);\n if (dictid !== state.check) {\n return Z_DATA_ERROR$1;\n }\n }\n /* copy dictionary to window using updatewindow(), which will amend the\n existing dictionary if appropriate */\n ret = updatewindow(strm, dictionary, dictLength, dictLength);\n if (ret) {\n state.mode = MEM;\n return Z_MEM_ERROR$1;\n }\n state.havedict = 1;\n // Tracev((stderr, \"inflate: dictionary set\\n\"));\n return Z_OK$1;\n};\n\n\nvar inflateReset_1 = inflateReset;\nvar inflateReset2_1 = inflateReset2;\nvar inflateResetKeep_1 = inflateResetKeep;\nvar inflateInit_1 = inflateInit;\nvar inflateInit2_1 = inflateInit2;\nvar inflate_2$1 = inflate$2;\nvar inflateEnd_1 = inflateEnd;\nvar inflateGetHeader_1 = inflateGetHeader;\nvar inflateSetDictionary_1 = inflateSetDictionary;\nvar inflateInfo = 'pako inflate (from Nodeca project)';\n\n/* Not implemented\nmodule.exports.inflateCodesUsed = inflateCodesUsed;\nmodule.exports.inflateCopy = inflateCopy;\nmodule.exports.inflateGetDictionary = inflateGetDictionary;\nmodule.exports.inflateMark = inflateMark;\nmodule.exports.inflatePrime = inflatePrime;\nmodule.exports.inflateSync = inflateSync;\nmodule.exports.inflateSyncPoint = inflateSyncPoint;\nmodule.exports.inflateUndermine = inflateUndermine;\nmodule.exports.inflateValidate = inflateValidate;\n*/\n\nvar inflate_1$2 = {\n\tinflateReset: inflateReset_1,\n\tinflateReset2: inflateReset2_1,\n\tinflateResetKeep: inflateResetKeep_1,\n\tinflateInit: inflateInit_1,\n\tinflateInit2: inflateInit2_1,\n\tinflate: inflate_2$1,\n\tinflateEnd: inflateEnd_1,\n\tinflateGetHeader: inflateGetHeader_1,\n\tinflateSetDictionary: inflateSetDictionary_1,\n\tinflateInfo: inflateInfo\n};\n\n// (C) 1995-2013 Jean-loup Gailly and Mark Adler\n// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin\n//\n// This software is provided 'as-is', without any express or implied\n// warranty. In no event will the authors be held liable for any damages\n// arising from the use of this software.\n//\n// Permission is granted to anyone to use this software for any purpose,\n// including commercial applications, and to alter it and redistribute it\n// freely, subject to the following restrictions:\n//\n// 1. The origin of this software must not be misrepresented; you must not\n// claim that you wrote the original software. If you use this software\n// in a product, an acknowledgment in the product documentation would be\n// appreciated but is not required.\n// 2. Altered source versions must be plainly marked as such, and must not be\n// misrepresented as being the original software.\n// 3. This notice may not be removed or altered from any source distribution.\n\nfunction GZheader() {\n /* true if compressed data believed to be text */\n this.text = 0;\n /* modification time */\n this.time = 0;\n /* extra flags (not used when writing a gzip file) */\n this.xflags = 0;\n /* operating system */\n this.os = 0;\n /* pointer to extra field or Z_NULL if none */\n this.extra = null;\n /* extra field length (valid if extra != Z_NULL) */\n this.extra_len = 0; // Actually, we don't need it in JS,\n // but leave for few code modifications\n\n //\n // Setup limits is not necessary because in js we should not preallocate memory\n // for inflate use constant limit in 65536 bytes\n //\n\n /* space at extra (only when reading header) */\n // this.extra_max = 0;\n /* pointer to zero-terminated file name or Z_NULL */\n this.name = '';\n /* space at name (only when reading header) */\n // this.name_max = 0;\n /* pointer to zero-terminated comment or Z_NULL */\n this.comment = '';\n /* space at comment (only when reading header) */\n // this.comm_max = 0;\n /* true if there was or will be a header crc */\n this.hcrc = 0;\n /* true when done reading gzip header (not used when writing a gzip file) */\n this.done = false;\n}\n\nvar gzheader = GZheader;\n\nconst toString = Object.prototype.toString;\n\n/* Public constants ==========================================================*/\n/* ===========================================================================*/\n\nconst {\n Z_NO_FLUSH, Z_FINISH,\n Z_OK, Z_STREAM_END, Z_NEED_DICT, Z_STREAM_ERROR, Z_DATA_ERROR, Z_MEM_ERROR\n} = constants$2;\n\n/* ===========================================================================*/\n\n\n/**\n * class Inflate\n *\n * Generic JS-style wrapper for zlib calls. If you don't need\n * streaming behaviour - use more simple functions: [[inflate]]\n * and [[inflateRaw]].\n **/\n\n/* internal\n * inflate.chunks -> Array\n *\n * Chunks of output data, if [[Inflate#onData]] not overridden.\n **/\n\n/**\n * Inflate.result -> Uint8Array|String\n *\n * Uncompressed result, generated by default [[Inflate#onData]]\n * and [[Inflate#onEnd]] handlers. Filled after you push last chunk\n * (call [[Inflate#push]] with `Z_FINISH` / `true` param).\n **/\n\n/**\n * Inflate.err -> Number\n *\n * Error code after inflate finished. 0 (Z_OK) on success.\n * Should be checked if broken data possible.\n **/\n\n/**\n * Inflate.msg -> String\n *\n * Error message, if [[Inflate.err]] != 0\n **/\n\n\n/**\n * new Inflate(options)\n * - options (Object): zlib inflate options.\n *\n * Creates new inflator instance with specified params. Throws exception\n * on bad params. Supported options:\n *\n * - `windowBits`\n * - `dictionary`\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information on these.\n *\n * Additional options, for internal needs:\n *\n * - `chunkSize` - size of generated data chunks (16K by default)\n * - `raw` (Boolean) - do raw inflate\n * - `to` (String) - if equal to 'string', then result will be converted\n * from utf8 to utf16 (javascript) string. When string output requested,\n * chunk length can differ from `chunkSize`, depending on content.\n *\n * By default, when no options set, autodetect deflate/gzip data format via\n * wrapper header.\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako')\n * const chunk1 = new Uint8Array([1,2,3,4,5,6,7,8,9])\n * const chunk2 = new Uint8Array([10,11,12,13,14,15,16,17,18,19]);\n *\n * const inflate = new pako.Inflate({ level: 3});\n *\n * inflate.push(chunk1, false);\n * inflate.push(chunk2, true); // true -> last chunk\n *\n * if (inflate.err) { throw new Error(inflate.err); }\n *\n * console.log(inflate.result);\n * ```\n **/\nfunction Inflate$1(options) {\n this.options = common.assign({\n chunkSize: 1024 * 64,\n windowBits: 15,\n to: ''\n }, options || {});\n\n const opt = this.options;\n\n // Force window size for `raw` data, if not set directly,\n // because we have no header for autodetect.\n if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) {\n opt.windowBits = -opt.windowBits;\n if (opt.windowBits === 0) { opt.windowBits = -15; }\n }\n\n // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate\n if ((opt.windowBits >= 0) && (opt.windowBits < 16) &&\n !(options && options.windowBits)) {\n opt.windowBits += 32;\n }\n\n // Gzip header has no info about windows size, we can do autodetect only\n // for deflate. So, if window size not set, force it to max when gzip possible\n if ((opt.windowBits > 15) && (opt.windowBits < 48)) {\n // bit 3 (16) -> gzipped data\n // bit 4 (32) -> autodetect gzip/deflate\n if ((opt.windowBits & 15) === 0) {\n opt.windowBits |= 15;\n }\n }\n\n this.err = 0; // error code, if happens (0 = Z_OK)\n this.msg = ''; // error message\n this.ended = false; // used to avoid multiple onEnd() calls\n this.chunks = []; // chunks of compressed data\n\n this.strm = new zstream();\n this.strm.avail_out = 0;\n\n let status = inflate_1$2.inflateInit2(\n this.strm,\n opt.windowBits\n );\n\n if (status !== Z_OK) {\n throw new Error(messages[status]);\n }\n\n this.header = new gzheader();\n\n inflate_1$2.inflateGetHeader(this.strm, this.header);\n\n // Setup dictionary\n if (opt.dictionary) {\n // Convert data if needed\n if (typeof opt.dictionary === 'string') {\n opt.dictionary = strings.string2buf(opt.dictionary);\n } else if (toString.call(opt.dictionary) === '[object ArrayBuffer]') {\n opt.dictionary = new Uint8Array(opt.dictionary);\n }\n if (opt.raw) { //In raw mode we need to set the dictionary early\n status = inflate_1$2.inflateSetDictionary(this.strm, opt.dictionary);\n if (status !== Z_OK) {\n throw new Error(messages[status]);\n }\n }\n }\n}\n\n/**\n * Inflate#push(data[, flush_mode]) -> Boolean\n * - data (Uint8Array|ArrayBuffer): input data\n * - flush_mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE\n * flush modes. See constants. Skipped or `false` means Z_NO_FLUSH,\n * `true` means Z_FINISH.\n *\n * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with\n * new output chunks. Returns `true` on success. If end of stream detected,\n * [[Inflate#onEnd]] will be called.\n *\n * `flush_mode` is not needed for normal operation, because end of stream\n * detected automatically. You may try to use it for advanced things, but\n * this functionality was not tested.\n *\n * On fail call [[Inflate#onEnd]] with error code and return false.\n *\n * ##### Example\n *\n * ```javascript\n * push(chunk, false); // push one of data chunks\n * ...\n * push(chunk, true); // push last chunk\n * ```\n **/\nInflate$1.prototype.push = function (data, flush_mode) {\n const strm = this.strm;\n const chunkSize = this.options.chunkSize;\n const dictionary = this.options.dictionary;\n let status, _flush_mode, last_avail_out;\n\n if (this.ended) return false;\n\n if (flush_mode === ~~flush_mode) _flush_mode = flush_mode;\n else _flush_mode = flush_mode === true ? Z_FINISH : Z_NO_FLUSH;\n\n // Convert data if needed\n if (toString.call(data) === '[object ArrayBuffer]') {\n strm.input = new Uint8Array(data);\n } else {\n strm.input = data;\n }\n\n strm.next_in = 0;\n strm.avail_in = strm.input.length;\n\n for (;;) {\n if (strm.avail_out === 0) {\n strm.output = new Uint8Array(chunkSize);\n strm.next_out = 0;\n strm.avail_out = chunkSize;\n }\n\n status = inflate_1$2.inflate(strm, _flush_mode);\n\n if (status === Z_NEED_DICT && dictionary) {\n status = inflate_1$2.inflateSetDictionary(strm, dictionary);\n\n if (status === Z_OK) {\n status = inflate_1$2.inflate(strm, _flush_mode);\n } else if (status === Z_DATA_ERROR) {\n // Replace code with more verbose\n status = Z_NEED_DICT;\n }\n }\n\n // Skip snyc markers if more data follows and not raw mode\n while (strm.avail_in > 0 &&\n status === Z_STREAM_END &&\n strm.state.wrap > 0 &&\n data[strm.next_in] !== 0)\n {\n inflate_1$2.inflateReset(strm);\n status = inflate_1$2.inflate(strm, _flush_mode);\n }\n\n switch (status) {\n case Z_STREAM_ERROR:\n case Z_DATA_ERROR:\n case Z_NEED_DICT:\n case Z_MEM_ERROR:\n this.onEnd(status);\n this.ended = true;\n return false;\n }\n\n // Remember real `avail_out` value, because we may patch out buffer content\n // to align utf8 strings boundaries.\n last_avail_out = strm.avail_out;\n\n if (strm.next_out) {\n if (strm.avail_out === 0 || status === Z_STREAM_END) {\n\n if (this.options.to === 'string') {\n\n let next_out_utf8 = strings.utf8border(strm.output, strm.next_out);\n\n let tail = strm.next_out - next_out_utf8;\n let utf8str = strings.buf2string(strm.output, next_out_utf8);\n\n // move tail & realign counters\n strm.next_out = tail;\n strm.avail_out = chunkSize - tail;\n if (tail) strm.output.set(strm.output.subarray(next_out_utf8, next_out_utf8 + tail), 0);\n\n this.onData(utf8str);\n\n } else {\n this.onData(strm.output.length === strm.next_out ? strm.output : strm.output.subarray(0, strm.next_out));\n }\n }\n }\n\n // Must repeat iteration if out buffer is full\n if (status === Z_OK && last_avail_out === 0) continue;\n\n // Finalize if end of stream reached.\n if (status === Z_STREAM_END) {\n status = inflate_1$2.inflateEnd(this.strm);\n this.onEnd(status);\n this.ended = true;\n return true;\n }\n\n if (strm.avail_in === 0) break;\n }\n\n return true;\n};\n\n\n/**\n * Inflate#onData(chunk) -> Void\n * - chunk (Uint8Array|String): output data. When string output requested,\n * each chunk will be string.\n *\n * By default, stores data blocks in `chunks[]` property and glue\n * those in `onEnd`. Override this handler, if you need another behaviour.\n **/\nInflate$1.prototype.onData = function (chunk) {\n this.chunks.push(chunk);\n};\n\n\n/**\n * Inflate#onEnd(status) -> Void\n * - status (Number): inflate status. 0 (Z_OK) on success,\n * other if not.\n *\n * Called either after you tell inflate that the input stream is\n * complete (Z_FINISH). By default - join collected chunks,\n * free memory and fill `results` / `err` properties.\n **/\nInflate$1.prototype.onEnd = function (status) {\n // On success - join\n if (status === Z_OK) {\n if (this.options.to === 'string') {\n this.result = this.chunks.join('');\n } else {\n this.result = common.flattenChunks(this.chunks);\n }\n }\n this.chunks = [];\n this.err = status;\n this.msg = this.strm.msg;\n};\n\n\n/**\n * inflate(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * Decompress `data` with inflate/ungzip and `options`. Autodetect\n * format via wrapper header by default. That's why we don't provide\n * separate `ungzip` method.\n *\n * Supported options are:\n *\n * - windowBits\n *\n * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced)\n * for more information.\n *\n * Sugar (options):\n *\n * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify\n * negative windowBits implicitly.\n * - `to` (String) - if equal to 'string', then result will be converted\n * from utf8 to utf16 (javascript) string. When string output requested,\n * chunk length can differ from `chunkSize`, depending on content.\n *\n *\n * ##### Example:\n *\n * ```javascript\n * const pako = require('pako');\n * const input = pako.deflate(new Uint8Array([1,2,3,4,5,6,7,8,9]));\n * let output;\n *\n * try {\n * output = pako.inflate(input);\n * } catch (err) {\n * console.log(err);\n * }\n * ```\n **/\nfunction inflate$1(input, options) {\n const inflator = new Inflate$1(options);\n\n inflator.push(input);\n\n // That will never happens, if you don't cheat with options :)\n if (inflator.err) throw inflator.msg || messages[inflator.err];\n\n return inflator.result;\n}\n\n\n/**\n * inflateRaw(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * The same as [[inflate]], but creates raw data, without wrapper\n * (header and adler32 crc).\n **/\nfunction inflateRaw$1(input, options) {\n options = options || {};\n options.raw = true;\n return inflate$1(input, options);\n}\n\n\n/**\n * ungzip(data[, options]) -> Uint8Array|String\n * - data (Uint8Array|ArrayBuffer): input data to decompress.\n * - options (Object): zlib inflate options.\n *\n * Just shortcut to [[inflate]], because it autodetects format\n * by header.content. Done for convenience.\n **/\n\n\nvar Inflate_1$1 = Inflate$1;\nvar inflate_2 = inflate$1;\nvar inflateRaw_1$1 = inflateRaw$1;\nvar ungzip$1 = inflate$1;\nvar constants = constants$2;\n\nvar inflate_1$1 = {\n\tInflate: Inflate_1$1,\n\tinflate: inflate_2,\n\tinflateRaw: inflateRaw_1$1,\n\tungzip: ungzip$1,\n\tconstants: constants\n};\n\nconst { Deflate, deflate, deflateRaw, gzip } = deflate_1$1;\n\nconst { Inflate, inflate, inflateRaw, ungzip } = inflate_1$1;\n\n\n\nvar Deflate_1 = Deflate;\nvar deflate_1 = deflate;\nvar deflateRaw_1 = deflateRaw;\nvar gzip_1 = gzip;\nvar Inflate_1 = Inflate;\nvar inflate_1 = inflate;\nvar inflateRaw_1 = inflateRaw;\nvar ungzip_1 = ungzip;\nvar constants_1 = constants$2;\n\nvar pako = {\n\tDeflate: Deflate_1,\n\tdeflate: deflate_1,\n\tdeflateRaw: deflateRaw_1,\n\tgzip: gzip_1,\n\tInflate: Inflate_1,\n\tinflate: inflate_1,\n\tinflateRaw: inflateRaw_1,\n\tungzip: ungzip_1,\n\tconstants: constants_1\n};\n\nexport { Deflate_1 as Deflate, Inflate_1 as Inflate, constants_1 as constants, pako as default, deflate_1 as deflate, deflateRaw_1 as deflateRaw, gzip_1 as gzip, inflate_1 as inflate, inflateRaw_1 as inflateRaw, ungzip_1 as ungzip };\n","function decodeRowAcc(row, stride) {\n let length = row.length - stride;\n let offset = 0;\n do {\n for (let i = stride; i > 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n"],"names":["zero$1","buf","len","length","extra_lbits","Uint8Array","extra_dbits","extra_blbits","bl_order","static_ltree","Array","static_dtree","D_CODES$1","_dist_code","_length_code","MAX_MATCH$1","base_length","base_dist","StaticTreeDesc","static_tree","extra_bits","extra_base","elems","max_length","this","has_stree","static_l_desc","static_d_desc","static_bl_desc","TreeDesc","dyn_tree","stat_desc","max_code","d_code","dist","put_short","s","w","pending_buf","pending","send_bits","value","bi_valid","bi_buf","send_code","c","tree","bi_reverse","code","res","gen_codes","bl_count","next_code","MAX_BITS$1","bits","n","init_block","LITERALS$1","dyn_ltree","dyn_dtree","bl_tree","END_BLOCK","opt_len","static_len","sym_next","matches","bi_windup","smaller","m","depth","_n2","_m2","pqdownheap","k","v","heap","j","heap_len","compress_block","ltree","dtree","lc","extra","sx","sym_buf","build_tree","desc","stree","node","heap_max","base","h","xbits","f","overflow","gen_bitlen","scan_tree","curlen","prevlen","nextlen","count","max_count","min_count","REP_3_6","REPZ_3_10","REPZ_11_138","send_tree","static_init_done","_tr_stored_block$1","stored_len","last","set","window","subarray","trees","_tr_init","LENGTH_CODES$1","L_CODES$1","tr_static_init","l_desc","d_desc","bl_desc","_tr_stored_block","_tr_flush_block","opt_lenb","static_lenb","max_blindex","level","strm","data_type","block_mask","detect_data_type","BL_CODES$1","build_bl_tree","strategy","lcodes","dcodes","blcodes","rank","send_all_trees","_tr_tally","sym_end","_tr_align","STATIC_TREES","bi_flush","adler32_1","adler","pos","s1","s2","crcTable","Uint32Array","table","makeTable","crc32_1","crc","t","end","i","messages","constants$2","Z_NO_FLUSH","Z_PARTIAL_FLUSH","Z_SYNC_FLUSH","Z_FULL_FLUSH","Z_FINISH","Z_BLOCK","Z_TREES","Z_OK","Z_STREAM_END","Z_NEED_DICT","Z_ERRNO","Z_STREAM_ERROR","Z_DATA_ERROR","Z_MEM_ERROR","Z_BUF_ERROR","Z_NO_COMPRESSION","Z_BEST_SPEED","Z_BEST_COMPRESSION","Z_DEFAULT_COMPRESSION","Z_FILTERED","Z_HUFFMAN_ONLY","Z_RLE","Z_FIXED","Z_DEFAULT_STRATEGY","Z_BINARY","Z_TEXT","Z_UNKNOWN","Z_DEFLATED","Z_NO_FLUSH$2","Z_FULL_FLUSH$1","Z_FINISH$3","Z_BLOCK$1","Z_OK$3","Z_STREAM_END$3","Z_STREAM_ERROR$2","Z_DATA_ERROR$2","Z_BUF_ERROR$1","Z_DEFAULT_COMPRESSION$1","Z_DEFAULT_STRATEGY$1","Z_DEFLATED$2","MAX_MATCH","MIN_LOOKAHEAD","INIT_STATE","BUSY_STATE","FINISH_STATE","err","errorCode","msg","zero","slide_hash","p","wsize","w_size","hash_size","head","prev","HASH","data","hash_shift","hash_mask","flush_pending","state","avail_out","output","pending_out","next_out","total_out","flush_block_only","block_start","strstart","put_byte","b","putShortMSB","read_buf","start","size","avail_in","input","next_in","wrap","total_in","longest_match","cur_match","match","chain_length","max_chain_length","scan","best_len","prev_length","nice_match","limit","_win","wmask","w_mask","strend","scan_end1","scan_end","good_match","lookahead","match_start","fill_window","_w_size","more","str","window_size","insert","ins_h","deflate_stored","flush","left","have","min_block","pending_buf_size","used","high_water","deflate_fast","hash_head","bflush","match_length","max_lazy_match","MIN_MATCH","deflate_slow","max_insert","prev_match","match_available","Config","good_length","max_lazy","nice_length","max_chain","func","configuration_table","DeflateState","status","gzhead","gzindex","method","last_flush","w_bits","hash_bits","Uint16Array","HEAP_SIZE","MAX_BITS","lit_bufsize","deflateStateCheck","deflateResetKeep","deflateReset","ret","deflateInit2","windowBits","memLevel","deflate_1$2","deflateInit","deflateSetHeader","deflate","old_flush","header","level_flags","text","hcrc","name","comment","time","os","beg","copy","gzhead_extra","val","charCodeAt","bstate","deflate_huff","deflate_rle","deflateEnd","deflateSetDictionary","dictionary","dictLength","tmpDict","avail","next","deflateInfo","_has","obj","key","Object","prototype","hasOwnProperty","call","common","assign","sources","slice","arguments","source","shift","TypeError","flattenChunks","chunks","l","result","chunk","STR_APPLY_UIA_OK","String","fromCharCode","apply","__","_utf8len","q","strings","string2buf","TextEncoder","encode","c2","m_pos","str_len","buf_len","buf2string","max","TextDecoder","decode","out","utf16buf","c_len","buf2binstring","utf8border","zstream","toString$1","toString","Z_NO_FLUSH$1","Z_FINISH$2","Z_OK$2","Z_STREAM_END$2","Z_DEFLATED$1","Deflate$1","options","chunkSize","opt","raw","gzip","ended","Error","dict","_dict_set","deflate$1","deflator","push","flush_mode","_flush_mode","onData","onEnd","deflate_1$1","Deflate","deflateRaw","constants","BAD$1","inffast","_in","_out","dmax","whave","wnext","s_window","hold","lcode","dcode","lmask","dmask","here","op","from","from_source","lencode","distcode","lenbits","distbits","top","dolen","mode","sane","lbase","lext","dbase","dext","inftrees","type","lens","lens_index","codes","table_index","work","opts","incr","fill","low","mask","sym","min","root","curr","drop","huff","MAXBITS","offs","here_bits","here_op","here_val","Z_FINISH$1","Z_OK$1","Z_STREAM_END$1","Z_NEED_DICT$1","Z_STREAM_ERROR$1","Z_DATA_ERROR$1","Z_MEM_ERROR$1","HEAD","DICT","TYPE","TYPEDO","COPY_","LEN_","LEN","CHECK","BAD","zswap32","InflateState","havedict","flags","check","total","wbits","offset","ncode","nlen","ndist","lendyn","distdyn","back","was","inflateStateCheck","inflateResetKeep","Int32Array","inflateReset","inflateReset2","inflateInit2","lenfix","distfix","virgin","fixedtables","updatewindow","src","inflate_1$2","inflateInit","inflate","put","last_bits","last_op","last_val","hbuf","order","inf_leave","done","xflags","extra_len","inflateEnd","inflateGetHeader","inflateSetDictionary","dictid","inflateInfo","gzheader","Inflate$1","to","inflate$1","inflator","last_avail_out","next_out_utf8","tail","utf8str","join","inflate_1$1","Inflate","inflateRaw","ungzip","inflate_1","decodeRowAcc","row","stride","decodeRowFloatingPoint","bytesPerSample","index","wc","BaseDecoder","fileDirectory","buffer","decoded","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","byteLength","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/nbextension/540.index.js b/ipyopenlayers/nbextension/540.index.js new file mode 100644 index 0000000..36829b0 --- /dev/null +++ b/ipyopenlayers/nbextension/540.index.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[540],{708:(e,t,n)=>{function r(e,t){let n=e.length-t,r=0;do{for(let n=t;n>0;n--)e[r+t]+=e[r],r++;n-=t}while(n>0)}function a(e,t,n){let r=0,a=e.length;const o=a/n;for(;a>t;){for(let n=t;n>0;--n)e[r+t]+=e[r],++r;a-=t}const i=e.slice();for(let t=0;to});class o{async decode(e,t){const n=await this.decodeBlock(t),o=e.Predictor||1;if(1!==o){const t=!e.StripOffsets;return function(e,t,n,o,i,s){if(!t||1===t)return e;for(let e=0;e=e.byteLength);++s){let o;if(2===t){switch(i[0]){case 8:o=new Uint8Array(e,s*d*n*c,d*n*c);break;case 16:o=new Uint16Array(e,s*d*n*c,d*n*c/2);break;case 32:o=new Uint32Array(e,s*d*n*c,d*n*c/4);break;default:throw new Error(`Predictor 2 not allowed with ${i[0]} bits per sample.`)}r(o,d)}else 3===t&&(o=new Uint8Array(e,s*d*n*c,d*n*c),a(o,d,c))}return e}(n,o,t?e.TileWidth:e.ImageWidth,t?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return n}}},2540:(e,t,n)=>{n.r(t),n.d(t,{default:()=>a});var r=n(708);class a extends r.A{constructor(){if(super(),"undefined"==typeof createImageBitmap)throw new Error("Cannot decode WebImage as `createImageBitmap` is not available");if("undefined"==typeof document&&"undefined"==typeof OffscreenCanvas)throw new Error("Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available")}async decode(e,t){const n=new Blob([t]),r=await createImageBitmap(n);let a;"undefined"!=typeof document?(a=document.createElement("canvas"),a.width=r.width,a.height=r.height):a=new OffscreenCanvas(r.width,r.height);const o=a.getContext("2d");return o.drawImage(r,0,0),o.getImageData(0,0,r.width,r.height).data.buffer}}}}]); +//# sourceMappingURL=540.index.js.map \ No newline at end of file diff --git a/ipyopenlayers/nbextension/540.index.js.map b/ipyopenlayers/nbextension/540.index.js.map new file mode 100644 index 0000000..3571576 --- /dev/null +++ b/ipyopenlayers/nbextension/540.index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"540.index.js","mappings":"4GAAA,SAASA,EAAaC,EAAKC,GACzB,IAAIC,EAASF,EAAIE,OAASD,EACtBE,EAAS,EACb,EAAG,CACD,IAAK,IAAIC,EAAIH,EAAQG,EAAI,EAAGA,IAC1BJ,EAAIG,EAASF,IAAWD,EAAIG,GAC5BA,IAGFD,GAAUD,CACZ,OAASC,EAAS,EACpB,CAEA,SAASG,EAAuBL,EAAKC,EAAQK,GAC3C,IAAIC,EAAQ,EACRC,EAAQR,EAAIE,OAChB,MAAMO,EAAKD,EAAQF,EAEnB,KAAOE,EAAQP,GAAQ,CACrB,IAAK,IAAIG,EAAIH,EAAQG,EAAI,IAAKA,EAC5BJ,EAAIO,EAAQN,IAAWD,EAAIO,KACzBA,EAEJC,GAASP,CACX,CAEA,MAAMS,EAAOV,EAAIW,QACjB,IAAK,IAAIP,EAAI,EAAGA,EAAIK,IAAML,EACxB,IAAK,IAAIQ,EAAI,EAAGA,EAAIN,IAAkBM,EACpCZ,EAAKM,EAAiBF,EAAKQ,GAAKF,GAAOJ,EAAiBM,EAAI,GAAKH,EAAML,EAG7E,C,iBC9Be,MAAMS,EACnB,YAAMC,CAAOC,EAAeC,GAC1B,MAAMC,QAAgBC,KAAKC,YAAYH,GACjCI,EAAYL,EAAcM,WAAa,EAC7C,GAAkB,IAAdD,EAAiB,CACnB,MAAME,GAAWP,EAAcQ,aAK/B,ODsBC,SAAwBC,EAAOJ,EAAWK,EAAOC,EAAQC,EAC9DC,GACA,IAAKR,GAA2B,IAAdA,EAChB,OAAOI,EAGT,IAAK,IAAIpB,EAAI,EAAGA,EAAIuB,EAAczB,SAAUE,EAAG,CAC7C,GAAIuB,EAAcvB,GAAK,GAAM,EAC3B,MAAM,IAAIyB,MAAM,wEAElB,GAAIF,EAAcvB,KAAOuB,EAAc,GACrC,MAAM,IAAIE,MAAM,qEAEpB,CAEA,MAAMvB,EAAiBqB,EAAc,GAAK,EACpC1B,EAAiC,IAAxB2B,EAA4B,EAAID,EAAczB,OAE7D,IAAK,IAAIE,EAAI,EAAGA,EAAIsB,KAEdtB,EAAIH,EAASwB,EAAQnB,GAAkBkB,EAAMM,cAFrB1B,EAAG,CAK/B,IAAIJ,EACJ,GAAkB,IAAdoB,EAAiB,CACnB,OAAQO,EAAc,IACpB,KAAK,EACH3B,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/D,MACF,KAAK,GACHN,EAAM,IAAIgC,YACRR,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,KAAK,GACHN,EAAM,IAAIiC,YACRT,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,QACE,MAAM,IAAIuB,MAAM,gCAAgCF,EAAc,uBAElE5B,EAAaC,EAAKC,EACpB,MAAyB,IAAdmB,IACTpB,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/DD,EAAuBL,EAAKC,EAAQK,GAExC,CACA,OAAOkB,CACT,CC3EaU,CACLjB,EAASG,EALOE,EAAUP,EAAcoB,UAAYpB,EAAcqB,WACjDd,EAAUP,EAAcsB,WACzCtB,EAAcuB,cAAgBvB,EAAcwB,YAGDxB,EAAcyB,cACzDzB,EAAc0B,oBAElB,CACA,OAAOxB,CACT,E,4DCVa,MAAMyB,UAAwB,IAC3C,WAAAC,GAEE,GADAC,QACiC,oBAAtBC,kBACT,MAAM,IAAIhB,MAAM,kEACX,GAAwB,oBAAbiB,UAAuD,oBAApBC,gBACnD,MAAM,IAAIlB,MAAM,sFAEpB,CAEA,YAAMf,CAAOC,EAAeC,GAC1B,MAAMgC,EAAO,IAAIC,KAAK,CAACjC,IACjBkC,QAAoBL,kBAAkBG,GAE5C,IAAIG,EACoB,oBAAbL,UACTK,EAASL,SAASM,cAAc,UAChCD,EAAO1B,MAAQyB,EAAYzB,MAC3B0B,EAAOzB,OAASwB,EAAYxB,QAE5ByB,EAAS,IAAIJ,gBAAgBG,EAAYzB,MAAOyB,EAAYxB,QAG9D,MAAM2B,EAAMF,EAAOG,WAAW,MAM9B,OALAD,EAAIE,UAAUL,EAAa,EAAG,GAKvBG,EAAIG,aAAa,EAAG,EAAGN,EAAYzB,MAAOyB,EAAYxB,QAAQ+B,KAAKzC,MAC5E,E","sources":["webpack://ipyopenlayers/./node_modules/geotiff/dist-module/predictor.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/basedecoder.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/webimage.js"],"sourcesContent":["function decodeRowAcc(row, stride) {\n let length = row.length - stride;\n let offset = 0;\n do {\n for (let i = stride; i > 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\n/**\n * class WebImageDecoder\n *\n * This decoder uses the browsers image decoding facilities to read image\n * formats like WebP when supported.\n */\nexport default class WebImageDecoder extends BaseDecoder {\n constructor() {\n super();\n if (typeof createImageBitmap === 'undefined') {\n throw new Error('Cannot decode WebImage as `createImageBitmap` is not available');\n } else if (typeof document === 'undefined' && typeof OffscreenCanvas === 'undefined') {\n throw new Error('Cannot decode WebImage as neither `document` nor `OffscreenCanvas` is not available');\n }\n }\n\n async decode(fileDirectory, buffer) {\n const blob = new Blob([buffer]);\n const imageBitmap = await createImageBitmap(blob);\n\n let canvas;\n if (typeof document !== 'undefined') {\n canvas = document.createElement('canvas');\n canvas.width = imageBitmap.width;\n canvas.height = imageBitmap.height;\n } else {\n canvas = new OffscreenCanvas(imageBitmap.width, imageBitmap.height);\n }\n\n const ctx = canvas.getContext('2d');\n ctx.drawImage(imageBitmap, 0, 0);\n\n // TODO: check how many samples per pixel we have, and return RGB/RGBA accordingly\n // it seems like GDAL always encodes via RGBA which does not require a translation\n\n return ctx.getImageData(0, 0, imageBitmap.width, imageBitmap.height).data.buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","WebImageDecoder","constructor","super","createImageBitmap","document","OffscreenCanvas","blob","Blob","imageBitmap","canvas","createElement","ctx","getContext","drawImage","getImageData","data"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/nbextension/597.index.js b/ipyopenlayers/nbextension/597.index.js new file mode 100644 index 0000000..f746fca --- /dev/null +++ b/ipyopenlayers/nbextension/597.index.js @@ -0,0 +1,3 @@ +/*! For license information please see 597.index.js.LICENSE.txt */ +(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[597],{5021:(A,I)=>{var g,B,Q,C,E,i,e,a,o,t,s,r,D;B={defaultNoDataValue:-34027999387901484e22,decode:function(A,I){var g=(I=I||{}).encodedMaskData||null===I.encodedMaskData,e=i(A,I.inputOffset||0,g),a=null!==I.noDataValue?I.noDataValue:B.defaultNoDataValue,o=Q(e,I.pixelType||Float32Array,I.encodedMaskData,a,I.returnMask),t={width:e.width,height:e.height,pixelData:o.resultPixels,minValue:o.minValue,maxValue:e.pixels.maxValue,noDataValue:a};return o.resultMask&&(t.maskData=o.resultMask),I.returnEncodedMask&&e.mask&&(t.encodedMaskData=e.mask.bitset?e.mask.bitset:null),I.returnFileInfo&&(t.fileInfo=C(e),I.computeUsedBitDepths&&(t.fileInfo.bitDepths=E(e))),t}},Q=function(A,I,g,B,Q){var C,E,i,a=0,o=A.pixels.numBlocksX,t=A.pixels.numBlocksY,s=Math.floor(A.width/o),r=Math.floor(A.height/t),D=2*A.maxZError,n=Number.MAX_VALUE;g=g||(A.mask?A.mask.bitset:null),E=new I(A.width*A.height),Q&&g&&(i=new Uint8Array(A.width*A.height));for(var w,h,f=new Float32Array(s*r),G=0;G<=t;G++){var y=G!==t?r:A.height%t;if(0!==y)for(var l=0;l<=o;l++){var F=l!==o?s:A.width%o;if(0!==F){var k,c,U,S,d=G*A.width*r+l*s,R=A.width-F,M=A.pixels.blocks[a];if(M.encoding<2?(0===M.encoding?k=M.rawData:(e(M.stuffedData,M.bitsPerPixel,M.numValidPixels,M.offset,D,f,A.pixels.maxValue),k=f),c=0):U=2===M.encoding?0:M.offset,g)for(h=0;h>3],S<<=7&d),w=0;w>3]),128&S?(i&&(i[d]=1),n=n>(C=M.encoding<2?k[c++]:U)?C:n,E[d++]=C):(i&&(i[d]=0),E[d++]=B),S<<=1;d+=R}else if(M.encoding<2)for(h=0;h(C=k[c++])?C:n,E[d++]=C;d+=R}else for(n=n>U?U:n,h=0;h0){var E=new Uint8Array(Math.ceil(B.width*B.height/8)),i=(C=new DataView(A,I,B.mask.numBytes)).getInt16(0,!0),e=2,a=0;do{if(i>0)for(;i--;)E[a++]=C.getUint8(e++);else{var o=C.getUint8(e++);for(i=-i;i--;)E[a++]=o}i=C.getInt16(e,!0),e+=2}while(e0?1:0),D=s+(B.height%s>0?1:0);B.pixels.blocks=new Array(r*D);for(var n=0,w=0;w3)throw"Invalid block encoding ("+y.encoding+")";if(2!==y.encoding){if(0!==l&&2!==l){if(l>>=6,y.offsetType=l,2===l)y.offset=C.getInt8(1),f++;else if(1===l)y.offset=C.getInt16(1,!0),f+=2;else{if(0!==l)throw"Invalid block offset type";y.offset=C.getFloat32(1,!0),f+=4}if(1===y.encoding)if(l=C.getUint8(f),f++,y.bitsPerPixel=63&l,l>>=6,y.numValidPixelsType=l,2===l)y.numValidPixels=C.getUint8(f),f++;else if(1===l)y.numValidPixels=C.getUint16(f,!0),f+=2;else{if(0!==l)throw"Invalid valid pixel count type";y.numValidPixels=C.getUint32(f,!0),f+=4}}var F;if(I+=f,3!==y.encoding)if(0===y.encoding){var k=(B.pixels.numBytes-1)/4;if(k!==Math.floor(k))throw"uncompressed block has invalid length";F=new ArrayBuffer(4*k),new Uint8Array(F).set(new Uint8Array(A,I,4*k));var c=new Float32Array(F);y.rawData=c,I+=4*k}else if(1===y.encoding){var U=Math.ceil(y.numValidPixels*y.bitsPerPixel/8),S=Math.ceil(U/4);F=new ArrayBuffer(4*S),new Uint8Array(F).set(new Uint8Array(A,I,U)),y.stuffedData=new Uint32Array(F),I+=U}}else I++}return B.eofOffset=I,B},e=function(A,I,g,B,Q,C,E){var i,e,a,o=(1<=I)e=a>>>s-I&o,s-=I;else{var n=I-s;e=(a&o)<>>(s=32-n)}C[i]=e=g?(a=o>>>n-g&r,n-=g):(a=(o&r)<<(t=g-n)&r,a+=(o=A[D++])>>>(n=32-t)),I[e]=Q[a];else for(s=Math.ceil((i-C)/E),e=0;e=g?(a=o>>>n-g&r,n-=g):(a=(o&r)<<(t=g-n)&r,a+=(o=A[D++])>>>(n=32-t)),I[e]=a=g?(a=o>>>n&s,D-=g,n+=g):(a=o>>>n&s,D=32-(t=g-D),a|=((o=A[r++])&(1<=g?(a=o>>>n&s,D-=g,n+=g):(a=o>>>n&s,D=32-(t=g-D),a|=((o=A[r++])&(1<=359?359:Q;Q-=E;do{I+=A[C++]<<8,g+=I+=A[C++]}while(--E);I=(65535&I)+(I>>>16),g=(65535&g)+(g>>>16)}return 1&B&&(g+=I+=A[C]<<8),((g=(65535&g)+(g>>>16))<<16|(I=(65535&I)+(I>>>16)))>>>0},readHeaderInfo:function(A,I){var g=I.ptr,B=new Uint8Array(A,g,6),Q={};if(Q.fileIdentifierString=String.fromCharCode.apply(null,B),0!==Q.fileIdentifierString.lastIndexOf("Lerc2",0))throw"Unexpected file identifier string (expect Lerc2 ): "+Q.fileIdentifierString;g+=6;var C,E=new DataView(A,g,8),i=E.getInt32(0,!0);if(Q.fileVersion=i,g+=4,i>=3&&(Q.checksum=E.getUint32(4,!0),g+=4),E=new DataView(A,g,12),Q.height=E.getUint32(0,!0),Q.width=E.getUint32(4,!0),g+=8,i>=4?(Q.numDims=E.getUint32(8,!0),g+=4):Q.numDims=1,E=new DataView(A,g,40),Q.numValidPixel=E.getUint32(0,!0),Q.microBlockSize=E.getInt32(4,!0),Q.blobSize=E.getInt32(8,!0),Q.imageType=E.getInt32(12,!0),Q.maxZError=E.getFloat64(16,!0),Q.zMin=E.getFloat64(24,!0),Q.zMax=E.getFloat64(32,!0),g+=40,I.headerInfo=Q,I.ptr=g,i>=3&&(C=i>=4?52:48,this.computeChecksumFletcher32(new Uint8Array(A,g-C,Q.blobSize-14))!==Q.checksum))throw"Checksum failed.";return!0},checkMinMaxRanges:function(A,I){var g=I.headerInfo,B=this.getDataTypeArray(g.imageType),Q=g.numDims*this.getDataTypeSize(g.imageType),C=this.readSubArray(A,I.ptr,B,Q),E=this.readSubArray(A,I.ptr+Q,B,Q);I.ptr+=2*Q;var i,e=!0;for(i=0;i0){g=new Uint8Array(Math.ceil(E/8));var o=(e=new DataView(A,Q,a.numBytes)).getInt16(0,!0),t=2,s=0,r=0;do{if(o>0)for(;o--;)g[s++]=e.getUint8(t++);else for(r=e.getUint8(t++),o=-o;o--;)g[s++]=r;o=e.getInt16(t,!0),t+=2}while(t>3],D<<=7&n):D=g[n>>3],128&D&&(B[n]=1);I.pixels.resultMask=B,a.bitset=g,Q+=a.numBytes}return I.ptr=Q,I.mask=a,!0},readDataOneSweep:function(A,I,B,Q){var C,E=I.ptr,i=I.headerInfo,e=i.numDims,a=i.width*i.height,o=i.imageType,t=i.numValidPixel*g.getDataTypeSize(o)*e,s=I.pixels.resultMask;if(B===Uint8Array)C=new Uint8Array(A,E,t);else{var r=new ArrayBuffer(t);new Uint8Array(r).set(new Uint8Array(A,E,t)),C=new B(r)}if(C.length===a*e)I.pixels.resultPixels=Q?g.swapDimensionOrder(C,a,e,B,!0):C;else{I.pixels.resultPixels=new B(a*e);var D=0,n=0,w=0,h=0;if(e>1){if(Q){for(n=0;n=e)return!1;var a=new Uint32Array(e-i);g.decodeBits(A,I,a);var o,t,s,r,D=[];for(o=i;o0&&(D[t].second=f<>>32-r,32-y>=r?32===(y+=r)&&(y=0,f=G[++l]):(y+=r-32,f=G[++l],D[t].second|=f>>>32-y));var F,k=0,c=new B;for(o=0;o=Q?Q:k;var U,S,d,R,M,L=[];for(o=i;o0)if(U=[r,t],r<=F)for(S=D[t].second<=0;R--)S>>>R&1?(M.right||(M.right=new B),M=M.right):(M.left||(M.left=new B),M=M.left),0!==R||M.val||(M.val=U[1]);return{decodeLut:L,numBitsLUTQick:F,numBitsLUT:k,tree:c,stuffedData:G,srcPtr:l,bitPos:y}},readHuffman:function(A,I,B,Q){var C,E,i,e,a,o,t,s,r,D=I.headerInfo.numDims,n=I.headerInfo.height,w=I.headerInfo.width,h=w*n,f=this.readHuffmanTree(A,I),G=f.decodeLut,y=f.tree,l=f.stuffedData,F=f.srcPtr,k=f.bitPos,c=f.numBitsLUTQick,U=f.numBitsLUT,S=0===I.headerInfo.imageType?128:0,d=I.pixels.resultMask,R=0;k>0&&(F++,k=0);var M,L=l[F],N=1===I.encodeMode,J=new B(h*D),u=J;if(D<2||N){for(M=0;M1&&(u=new B(J.buffer,h*M,h),R=0),I.headerInfo.numValidPixel===w*n)for(s=0,o=0;o>>32-c,32-k>>64-k-c),G[a])E=G[a][1],k+=G[a][0];else for(a=e=L<>>32-U,32-k>>64-k-U),C=y,r=0;r>>U-r-1&1?C.right:C.left).left&&!C.right){E=C.val,k=k+r+1;break}k>=32&&(k-=32,L=l[++F]),i=E-S,N?(i+=t>0?R:o>0?u[s-w]:R,i&=255,u[s]=i,R=i):u[s]=i}else for(s=0,o=0;o>>32-c,32-k>>64-k-c),G[a])E=G[a][1],k+=G[a][0];else for(a=e=L<>>32-U,32-k>>64-k-U),C=y,r=0;r>>U-r-1&1?C.right:C.left).left&&!C.right){E=C.val,k=k+r+1;break}k>=32&&(k-=32,L=l[++F]),i=E-S,N?(t>0&&d[s-1]?i+=R:o>0&&d[s-w]?i+=u[s-w]:i+=R,i&=255,u[s]=i,R=i):u[s]=i}}else for(s=0,o=0;o>>32-c,32-k>>64-k-c),G[a])E=G[a][1],k+=G[a][0];else for(a=e=L<>>32-U,32-k>>64-k-U),C=y,r=0;r>>U-r-1&1?C.right:C.left).left&&!C.right){E=C.val,k=k+r+1;break}k>=32&&(k-=32,L=l[++F]),i=E-S,u[s]=i}I.ptr=I.ptr+4*(F+1)+(k>0?4:0),I.pixels.resultPixels=J,D>1&&!Q&&(I.pixels.resultPixels=g.swapDimensionOrder(J,h,D,B))},decodeBits:function(g,B,Q,C,E){var i=B.headerInfo,e=i.fileVersion,a=0,o=g.byteLength-B.ptr>=5?5:g.byteLength-B.ptr,t=new DataView(g,B.ptr,o),s=t.getUint8(0);a++;var r=s>>6,D=0===r?4:3-r,n=(32&s)>0,w=31&s,h=0;if(1===D)h=t.getUint8(a),a++;else if(2===D)h=t.getUint16(a,!0),a+=2;else{if(4!==D)throw"Invalid valid pixel count type";h=t.getUint32(a,!0),a+=4}var f,G,y,l,F,k,c,U,S,d=2*i.maxZError,R=i.numDims>1?i.maxValues[E]:i.zMax;if(n){for(B.counter.lut++,U=t.getUint8(a),a++,l=Math.ceil((U-1)*w/8),F=Math.ceil(l/4),G=new ArrayBuffer(4*F),y=new Uint8Array(G),B.ptr+=a,y.set(new Uint8Array(g,B.ptr,l)),c=new Uint32Array(G),B.ptr+=l,S=0;U-1>>>S;)S++;l=Math.ceil(h*S/8),F=Math.ceil(l/4),G=new ArrayBuffer(4*F),(y=new Uint8Array(G)).set(new Uint8Array(g,B.ptr,l)),f=new Uint32Array(G),B.ptr+=l,k=e>=3?function(A,I,g,B,Q,C){var E,i=(1<=I?(s=E>>>r&i,t-=I,r+=I):(s=E>>>r&i,t=32-(o=I-t),s|=((E=A[e++])&(1<=I?(s=E>>>t-I&i,t-=I):(s=(E&i)<<(o=I-t)&i,s+=(E=A[e++])>>>(t=32-o)),r[a]=s=3?I(f,Q,S,h,k):A(f,Q,S,h,k)}else B.counter.bitstuffer++,S=w,B.ptr+=a,S>0&&(l=Math.ceil(h*S/8),F=Math.ceil(l/4),G=new ArrayBuffer(4*F),(y=new Uint8Array(G)).set(new Uint8Array(g,B.ptr,l)),f=new Uint32Array(G),B.ptr+=l,e>=3?null==C?function(A,I,g,B){var Q,C,E,i,e=(1<=g?(C=E>>>t&e,o-=g,t+=g):(C=E>>>t&e,o=32-(i=g-o),C|=((E=A[a++])&(1<=g?(C=E>>>o-g&e,o-=g):(C=(E&e)<<(i=g-o)&e,C+=(E=A[a++])>>>(o=32-i)),I[Q]=C}(f,Q,S,h):A(f,Q,S,h,!1,C,d,R))},readTiles:function(A,I,B,Q){var C=I.headerInfo,E=C.width,i=C.height,e=E*i,a=C.microBlockSize,o=C.imageType,t=g.getDataTypeSize(o),s=Math.ceil(E/a),r=Math.ceil(i/a);I.pixels.numBlocksY=r,I.pixels.numBlocksX=s,I.pixels.ptr=0;var D,n,w,h,f,G,y,l,F,k,c=0,U=0,S=0,d=0,R=0,M=0,L=0,N=0,J=0,u=0,q=0,Y=0,m=0,p=0,x=0,H=new B(a*a),K=i%a||a,V=E%a||a,b=C.numDims,O=I.pixels.resultMask,v=I.pixels.resultPixels,X=C.fileVersion>=5?14:15,P=C.zMax;for(S=0;S1?(k=v,u=S*E*a+d*a,v=new B(I.pixels.resultPixels.buffer,e*l*t,e),P=C.maxValues[l]):k=null,L=A.byteLength-I.ptr,n={},x=0,N=(D=new DataView(A,I.ptr,Math.min(10,L))).getUint8(0),x++,F=C.fileVersion>=5?4&N:0,J=N>>6&255,(N>>2&X)!=(d*a>>3&X))throw"integrity issue";if(F&&0===l)throw"integrity issue";if((f=3&N)>3)throw I.ptr+=x,"Invalid block encoding ("+f+")";if(2!==f)if(0===f){if(F)throw"integrity issue";if(I.counter.uncompressed++,I.ptr+=x,Y=(Y=R*M*t)<(m=A.byteLength-I.ptr)?Y:m,w=new ArrayBuffer(Y%t==0?Y:Y+t-Y%t),new Uint8Array(w).set(new Uint8Array(A,I.ptr,Y)),h=new B(w),p=0,O)for(c=0;c1&&!Q&&(I.pixels.resultPixels=g.swapDimensionOrder(I.pixels.resultPixels,e,b,B))},formatFileInfo:function(A){return{fileIdentifierString:A.headerInfo.fileIdentifierString,fileVersion:A.headerInfo.fileVersion,imageType:A.headerInfo.imageType,height:A.headerInfo.height,width:A.headerInfo.width,numValidPixel:A.headerInfo.numValidPixel,microBlockSize:A.headerInfo.microBlockSize,blobSize:A.headerInfo.blobSize,maxZError:A.headerInfo.maxZError,pixelType:g.getPixelType(A.headerInfo.imageType),eofOffset:A.eofOffset,mask:A.mask?{numBytes:A.mask.numBytes}:null,pixels:{numBlocksX:A.pixels.numBlocksX,numBlocksY:A.pixels.numBlocksY,maxValue:A.headerInfo.zMax,minValue:A.headerInfo.zMin,noDataValue:A.noDataValue}}},constructConstantSurface:function(A,I){var g=A.headerInfo.zMax,B=A.headerInfo.zMin,Q=A.headerInfo.maxValues,C=A.headerInfo.numDims,E=A.headerInfo.height*A.headerInfo.width,i=0,e=0,a=0,o=A.pixels.resultMask,t=A.pixels.resultPixels;if(o)if(C>1){if(I)for(i=0;i1&&B!==g)if(I)for(i=0;i=-128&&I<=127;break;case 1:g=I>=0&&I<=255;break;case 2:g=I>=-32768&&I<=32767;break;case 3:g=I>=0&&I<=65536;break;case 4:g=I>=-2147483648&&I<=2147483647;break;case 5:g=I>=0&&I<=4294967296;break;case 6:g=I>=-34027999387901484e22&&I<=34027999387901484e22;break;case 7:g=I>=-17976931348623157e292&&I<=17976931348623157e292;break;default:g=!1}return g},getDataTypeSize:function(A){var I=0;switch(A){case 0:case 1:I=1;break;case 2:case 3:I=2;break;case 4:case 5:case 6:I=4;break;case 7:I=8;break;default:I=A}return I},getDataTypeUsed:function(A,I){var g=A;switch(A){case 2:case 4:g=A-I;break;case 3:case 5:g=A-2*I;break;case 6:g=0===I?A:1===I?2:1;break;case 7:g=0===I?A:A-2*I+1;break;default:g=A}return g},getOnePixel:function(A,I,g,B){var Q=0;switch(g){case 0:Q=B.getInt8(I);break;case 1:Q=B.getUint8(I);break;case 2:Q=B.getInt16(I,!0);break;case 3:Q=B.getUint16(I,!0);break;case 4:Q=B.getInt32(I,!0);break;case 5:Q=B.getUInt32(I,!0);break;case 6:Q=B.getFloat32(I,!0);break;case 7:Q=B.getFloat64(I,!0);break;default:throw"the decoder does not understand this pixel type"}return Q},swapDimensionOrder:function(A,I,g,B,Q){var C=0,E=0,i=0,e=0,a=A;if(g>1)if(a=new B(I*g),Q)for(C=0;C5)throw"unsupported lerc version 2."+i;g.readMask(A,C),E.numValidPixel===E.width*E.height||C.pixels.resultMask||(C.pixels.resultMask=I.maskData);var a=E.width*E.height;C.pixels.resultPixels=new e(a*E.numDims),C.counter={onesweep:0,uncompressed:0,lut:0,bitstuffer:0,constant:0,constantoffset:0};var o,t=!I.returnPixelInterleavedDims;if(0!==E.numValidPixel)if(E.zMax===E.zMin)g.constructConstantSurface(C,t);else if(i>=4&&g.checkMinMaxRanges(A,C))g.constructConstantSurface(C,t);else{var s=new DataView(A,C.ptr,2),r=s.getUint8(0);if(C.ptr++,r)g.readDataOneSweep(A,C,e,t);else if(i>1&&E.imageType<=1&&Math.abs(E.maxZError-.5)<1e-5){var D=s.getUint8(1);if(C.ptr++,C.encodeMode=D,D>2||i<4&&D>1)throw"Invalid Huffman flag "+D;D?g.readHuffman(A,C,e,t):g.readTiles(A,C,e,t)}else g.readTiles(A,C,e,t)}C.eofOffset=C.ptr,I.inputOffset?(o=C.headerInfo.blobSize+I.inputOffset-C.ptr,Math.abs(o)>=1&&(C.eofOffset=I.inputOffset+C.headerInfo.blobSize)):(o=C.headerInfo.blobSize-C.ptr,Math.abs(o)>=1&&(C.eofOffset=C.headerInfo.blobSize));var n={width:E.width,height:E.height,pixelData:C.pixels.resultPixels,minValue:E.zMin,maxValue:E.zMax,validPixelCount:E.numValidPixel,dimCount:E.numDims,dimStats:{minValues:E.minValues,maxValues:E.maxValues},maskData:C.pixels.resultMask};if(C.pixels.resultMask&&g.isValidPixelValue(E.imageType,B)){var w=C.pixels.resultMask;for(Q=0;Q1&&(a&&f.push(a),l.fileInfo.mask&&l.fileInfo.mask.numBytes>0&&y++),w++,G.pixels.push(l.pixelData),G.statistics.push({minValue:l.minValue,maxValue:l.maxValue,noDataValue:l.noDataValue,dimStats:l.dimStats})}if(B>1&&y>1){for(n=G.width*G.height,G.bandMasks=f,(a=new Uint8Array(n)).set(f[0]),o=1;o{"use strict";g.r(I),g.d(I,{default:()=>r,zstd:()=>s});var B=g(3075),Q=g(5021);let C,E,i;const e={env:{emscripten_notify_memory_growth:function(A){i=new Uint8Array(E.exports.memory.buffer)}}},a="AGFzbQEAAAABpQEVYAF/AX9gAn9/AGADf39/AX9gBX9/f39/AX9gAX8AYAJ/fwF/YAR/f39/AX9gA39/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gAn9/AX5gAn5+AX5gAABgBX9/f39/AGAGf39/f39/AGAIf39/f39/f38AYAl/f39/f39/f38AYAABf2AIf39/f39/f38Bf2ANf39/f39/f39/f39/fwF/YAF/AX4CJwEDZW52H2Vtc2NyaXB0ZW5fbm90aWZ5X21lbW9yeV9ncm93dGgABANpaAEFAAAFAgEFCwACAQABAgIFBQcAAwABDgsBAQcAEhMHAAUBDAQEAAANBwQCAgYCBAgDAwMDBgEACQkHBgICAAYGAgQUBwYGAwIGAAMCAQgBBwUGCgoEEQAEBAEIAwgDBQgDEA8IAAcABAUBcAECAgUEAQCAAgYJAX8BQaCgwAILB2AHBm1lbW9yeQIABm1hbGxvYwAoBGZyZWUAJgxaU1REX2lzRXJyb3IAaBlaU1REX2ZpbmREZWNvbXByZXNzZWRTaXplAFQPWlNURF9kZWNvbXByZXNzAEoGX3N0YXJ0ACQJBwEAQQELASQKussBaA8AIAAgACgCBCABajYCBAsZACAAKAIAIAAoAgRBH3F0QQAgAWtBH3F2CwgAIABBiH9LC34BBH9BAyEBIAAoAgQiA0EgTQRAIAAoAggiASAAKAIQTwRAIAAQDQ8LIAAoAgwiAiABRgRAQQFBAiADQSBJGw8LIAAgASABIAJrIANBA3YiBCABIARrIAJJIgEbIgJrIgQ2AgggACADIAJBA3RrNgIEIAAgBCgAADYCAAsgAQsUAQF/IAAgARACIQIgACABEAEgAgv3AQECfyACRQRAIABCADcCACAAQQA2AhAgAEIANwIIQbh/DwsgACABNgIMIAAgAUEEajYCECACQQRPBEAgACABIAJqIgFBfGoiAzYCCCAAIAMoAAA2AgAgAUF/ai0AACIBBEAgAEEIIAEQFGs2AgQgAg8LIABBADYCBEF/DwsgACABNgIIIAAgAS0AACIDNgIAIAJBfmoiBEEBTQRAIARBAWtFBEAgACABLQACQRB0IANyIgM2AgALIAAgAS0AAUEIdCADajYCAAsgASACakF/ai0AACIBRQRAIABBADYCBEFsDwsgAEEoIAEQFCACQQN0ams2AgQgAgsWACAAIAEpAAA3AAAgACABKQAINwAICy8BAX8gAUECdEGgHWooAgAgACgCAEEgIAEgACgCBGprQR9xdnEhAiAAIAEQASACCyEAIAFCz9bTvtLHq9lCfiAAfEIfiUKHla+vmLbem55/fgsdAQF/IAAoAgggACgCDEYEfyAAKAIEQSBGBUEACwuCBAEDfyACQYDAAE8EQCAAIAEgAhBnIAAPCyAAIAJqIQMCQCAAIAFzQQNxRQRAAkAgAkEBSARAIAAhAgwBCyAAQQNxRQRAIAAhAgwBCyAAIQIDQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADTw0BIAJBA3ENAAsLAkAgA0F8cSIEQcAASQ0AIAIgBEFAaiIFSw0AA0AgAiABKAIANgIAIAIgASgCBDYCBCACIAEoAgg2AgggAiABKAIMNgIMIAIgASgCEDYCECACIAEoAhQ2AhQgAiABKAIYNgIYIAIgASgCHDYCHCACIAEoAiA2AiAgAiABKAIkNgIkIAIgASgCKDYCKCACIAEoAiw2AiwgAiABKAIwNgIwIAIgASgCNDYCNCACIAEoAjg2AjggAiABKAI8NgI8IAFBQGshASACQUBrIgIgBU0NAAsLIAIgBE8NAQNAIAIgASgCADYCACABQQRqIQEgAkEEaiICIARJDQALDAELIANBBEkEQCAAIQIMAQsgA0F8aiIEIABJBEAgACECDAELIAAhAgNAIAIgAS0AADoAACACIAEtAAE6AAEgAiABLQACOgACIAIgAS0AAzoAAyABQQRqIQEgAkEEaiICIARNDQALCyACIANJBEADQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADRw0ACwsgAAsMACAAIAEpAAA3AAALQQECfyAAKAIIIgEgACgCEEkEQEEDDwsgACAAKAIEIgJBB3E2AgQgACABIAJBA3ZrIgE2AgggACABKAAANgIAQQALDAAgACABKAIANgAAC/cCAQJ/AkAgACABRg0AAkAgASACaiAASwRAIAAgAmoiBCABSw0BCyAAIAEgAhALDwsgACABc0EDcSEDAkACQCAAIAFJBEAgAwRAIAAhAwwDCyAAQQNxRQRAIAAhAwwCCyAAIQMDQCACRQ0EIAMgAS0AADoAACABQQFqIQEgAkF/aiECIANBAWoiA0EDcQ0ACwwBCwJAIAMNACAEQQNxBEADQCACRQ0FIAAgAkF/aiICaiIDIAEgAmotAAA6AAAgA0EDcQ0ACwsgAkEDTQ0AA0AgACACQXxqIgJqIAEgAmooAgA2AgAgAkEDSw0ACwsgAkUNAgNAIAAgAkF/aiICaiABIAJqLQAAOgAAIAINAAsMAgsgAkEDTQ0AIAIhBANAIAMgASgCADYCACABQQRqIQEgA0EEaiEDIARBfGoiBEEDSw0ACyACQQNxIQILIAJFDQADQCADIAEtAAA6AAAgA0EBaiEDIAFBAWohASACQX9qIgINAAsLIAAL8wICAn8BfgJAIAJFDQAgACACaiIDQX9qIAE6AAAgACABOgAAIAJBA0kNACADQX5qIAE6AAAgACABOgABIANBfWogAToAACAAIAE6AAIgAkEHSQ0AIANBfGogAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa0iBUIghiAFhCEFIAMgBGohAQNAIAEgBTcDGCABIAU3AxAgASAFNwMIIAEgBTcDACABQSBqIQEgAkFgaiICQR9LDQALCyAACy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAIajYCACADCy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAFajYCACADCx8AIAAgASACKAIEEAg2AgAgARAEGiAAIAJBCGo2AgQLCAAgAGdBH3MLugUBDX8jAEEQayIKJAACfyAEQQNNBEAgCkEANgIMIApBDGogAyAEEAsaIAAgASACIApBDGpBBBAVIgBBbCAAEAMbIAAgACAESxsMAQsgAEEAIAEoAgBBAXRBAmoQECENQVQgAygAACIGQQ9xIgBBCksNABogAiAAQQVqNgIAIAMgBGoiAkF8aiEMIAJBeWohDiACQXtqIRAgAEEGaiELQQQhBSAGQQR2IQRBICAAdCIAQQFyIQkgASgCACEPQQAhAiADIQYCQANAIAlBAkggAiAPS3JFBEAgAiEHAkAgCARAA0AgBEH//wNxQf//A0YEQCAHQRhqIQcgBiAQSQR/IAZBAmoiBigAACAFdgUgBUEQaiEFIARBEHYLIQQMAQsLA0AgBEEDcSIIQQNGBEAgBUECaiEFIARBAnYhBCAHQQNqIQcMAQsLIAcgCGoiByAPSw0EIAVBAmohBQNAIAIgB0kEQCANIAJBAXRqQQA7AQAgAkEBaiECDAELCyAGIA5LQQAgBiAFQQN1aiIHIAxLG0UEQCAHKAAAIAVBB3EiBXYhBAwCCyAEQQJ2IQQLIAYhBwsCfyALQX9qIAQgAEF/anEiBiAAQQF0QX9qIgggCWsiEUkNABogBCAIcSIEQQAgESAEIABIG2shBiALCyEIIA0gAkEBdGogBkF/aiIEOwEAIAlBASAGayAEIAZBAUgbayEJA0AgCSAASARAIABBAXUhACALQX9qIQsMAQsLAn8gByAOS0EAIAcgBSAIaiIFQQN1aiIGIAxLG0UEQCAFQQdxDAELIAUgDCIGIAdrQQN0awshBSACQQFqIQIgBEUhCCAGKAAAIAVBH3F2IQQMAQsLQWwgCUEBRyAFQSBKcg0BGiABIAJBf2o2AgAgBiAFQQdqQQN1aiADawwBC0FQCyEAIApBEGokACAACwkAQQFBBSAAGwsMACAAIAEoAAA2AAALqgMBCn8jAEHwAGsiCiQAIAJBAWohDiAAQQhqIQtBgIAEIAVBf2p0QRB1IQxBACECQQEhBkEBIAV0IglBf2oiDyEIA0AgAiAORkUEQAJAIAEgAkEBdCINai8BACIHQf//A0YEQCALIAhBA3RqIAI2AgQgCEF/aiEIQQEhBwwBCyAGQQAgDCAHQRB0QRB1ShshBgsgCiANaiAHOwEAIAJBAWohAgwBCwsgACAFNgIEIAAgBjYCACAJQQN2IAlBAXZqQQNqIQxBACEAQQAhBkEAIQIDQCAGIA5GBEADQAJAIAAgCUYNACAKIAsgAEEDdGoiASgCBCIGQQF0aiICIAIvAQAiAkEBajsBACABIAUgAhAUayIIOgADIAEgAiAIQf8BcXQgCWs7AQAgASAEIAZBAnQiAmooAgA6AAIgASACIANqKAIANgIEIABBAWohAAwBCwsFIAEgBkEBdGouAQAhDUEAIQcDQCAHIA1ORQRAIAsgAkEDdGogBjYCBANAIAIgDGogD3EiAiAISw0ACyAHQQFqIQcMAQsLIAZBAWohBgwBCwsgCkHwAGokAAsjAEIAIAEQCSAAhUKHla+vmLbem55/fkLj3MqV/M7y9YV/fAsQACAAQn43AwggACABNgIACyQBAX8gAARAIAEoAgQiAgRAIAEoAgggACACEQEADwsgABAmCwsfACAAIAEgAi8BABAINgIAIAEQBBogACACQQRqNgIEC0oBAX9BoCAoAgAiASAAaiIAQX9MBEBBiCBBMDYCAEF/DwsCQCAAPwBBEHRNDQAgABBmDQBBiCBBMDYCAEF/DwtBoCAgADYCACABC9cBAQh/Qbp/IQoCQCACKAIEIgggAigCACIJaiIOIAEgAGtLDQBBbCEKIAkgBCADKAIAIgtrSw0AIAAgCWoiBCACKAIIIgxrIQ0gACABQWBqIg8gCyAJQQAQKSADIAkgC2o2AgACQAJAIAwgBCAFa00EQCANIQUMAQsgDCAEIAZrSw0CIAcgDSAFayIAaiIBIAhqIAdNBEAgBCABIAgQDxoMAgsgBCABQQAgAGsQDyEBIAIgACAIaiIINgIEIAEgAGshBAsgBCAPIAUgCEEBECkLIA4hCgsgCgubAgEBfyMAQYABayINJAAgDSADNgJ8AkAgAkEDSwRAQX8hCQwBCwJAAkACQAJAIAJBAWsOAwADAgELIAZFBEBBuH8hCQwEC0FsIQkgBS0AACICIANLDQMgACAHIAJBAnQiAmooAgAgAiAIaigCABA7IAEgADYCAEEBIQkMAwsgASAJNgIAQQAhCQwCCyAKRQRAQWwhCQwCC0EAIQkgC0UgDEEZSHINAUEIIAR0QQhqIQBBACECA0AgAiAATw0CIAJBQGshAgwAAAsAC0FsIQkgDSANQfwAaiANQfgAaiAFIAYQFSICEAMNACANKAJ4IgMgBEsNACAAIA0gDSgCfCAHIAggAxAYIAEgADYCACACIQkLIA1BgAFqJAAgCQsLACAAIAEgAhALGgsQACAALwAAIAAtAAJBEHRyCy8AAn9BuH8gAUEISQ0AGkFyIAAoAAQiAEF3Sw0AGkG4fyAAQQhqIgAgACABSxsLCwkAIAAgATsAAAsDAAELigYBBX8gACAAKAIAIgVBfnE2AgBBACAAIAVBAXZqQYQgKAIAIgQgAEYbIQECQAJAIAAoAgQiAkUNACACKAIAIgNBAXENACACQQhqIgUgA0EBdkF4aiIDQQggA0EISxtnQR9zQQJ0QYAfaiIDKAIARgRAIAMgAigCDDYCAAsgAigCCCIDBEAgAyACKAIMNgIECyACKAIMIgMEQCADIAIoAgg2AgALIAIgAigCACAAKAIAQX5xajYCAEGEICEAAkACQCABRQ0AIAEgAjYCBCABKAIAIgNBAXENASADQQF2QXhqIgNBCCADQQhLG2dBH3NBAnRBgB9qIgMoAgAgAUEIakYEQCADIAEoAgw2AgALIAEoAggiAwRAIAMgASgCDDYCBAsgASgCDCIDBEAgAyABKAIINgIAQYQgKAIAIQQLIAIgAigCACABKAIAQX5xajYCACABIARGDQAgASABKAIAQQF2akEEaiEACyAAIAI2AgALIAIoAgBBAXZBeGoiAEEIIABBCEsbZ0Efc0ECdEGAH2oiASgCACEAIAEgBTYCACACIAA2AgwgAkEANgIIIABFDQEgACAFNgIADwsCQCABRQ0AIAEoAgAiAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAigCACABQQhqRgRAIAIgASgCDDYCAAsgASgCCCICBEAgAiABKAIMNgIECyABKAIMIgIEQCACIAEoAgg2AgBBhCAoAgAhBAsgACAAKAIAIAEoAgBBfnFqIgI2AgACQCABIARHBEAgASABKAIAQQF2aiAANgIEIAAoAgAhAgwBC0GEICAANgIACyACQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgIoAgAhASACIABBCGoiAjYCACAAIAE2AgwgAEEANgIIIAFFDQEgASACNgIADwsgBUEBdkF4aiIBQQggAUEISxtnQR9zQQJ0QYAfaiICKAIAIQEgAiAAQQhqIgI2AgAgACABNgIMIABBADYCCCABRQ0AIAEgAjYCAAsLDgAgAARAIABBeGoQJQsLgAIBA38CQCAAQQ9qQXhxQYQgKAIAKAIAQQF2ayICEB1Bf0YNAAJAQYQgKAIAIgAoAgAiAUEBcQ0AIAFBAXZBeGoiAUEIIAFBCEsbZ0Efc0ECdEGAH2oiASgCACAAQQhqRgRAIAEgACgCDDYCAAsgACgCCCIBBEAgASAAKAIMNgIECyAAKAIMIgFFDQAgASAAKAIINgIAC0EBIQEgACAAKAIAIAJBAXRqIgI2AgAgAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAygCACECIAMgAEEIaiIDNgIAIAAgAjYCDCAAQQA2AgggAkUNACACIAM2AgALIAELtwIBA38CQAJAIABBASAAGyICEDgiAA0AAkACQEGEICgCACIARQ0AIAAoAgAiA0EBcQ0AIAAgA0EBcjYCACADQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgAgAEEIakYEQCABIAAoAgw2AgALIAAoAggiAQRAIAEgACgCDDYCBAsgACgCDCIBBEAgASAAKAIINgIACyACECchAkEAIQFBhCAoAgAhACACDQEgACAAKAIAQX5xNgIAQQAPCyACQQ9qQXhxIgMQHSICQX9GDQIgAkEHakF4cSIAIAJHBEAgACACaxAdQX9GDQMLAkBBhCAoAgAiAUUEQEGAICAANgIADAELIAAgATYCBAtBhCAgADYCACAAIANBAXRBAXI2AgAMAQsgAEUNAQsgAEEIaiEBCyABC7kDAQJ/IAAgA2ohBQJAIANBB0wEQANAIAAgBU8NAiAAIAItAAA6AAAgAEEBaiEAIAJBAWohAgwAAAsACyAEQQFGBEACQCAAIAJrIgZBB00EQCAAIAItAAA6AAAgACACLQABOgABIAAgAi0AAjoAAiAAIAItAAM6AAMgAEEEaiACIAZBAnQiBkHAHmooAgBqIgIQFyACIAZB4B5qKAIAayECDAELIAAgAhAMCyACQQhqIQIgAEEIaiEACwJAAkACQAJAIAUgAU0EQCAAIANqIQEgBEEBRyAAIAJrQQ9Kcg0BA0AgACACEAwgAkEIaiECIABBCGoiACABSQ0ACwwFCyAAIAFLBEAgACEBDAQLIARBAUcgACACa0EPSnINASAAIQMgAiEEA0AgAyAEEAwgBEEIaiEEIANBCGoiAyABSQ0ACwwCCwNAIAAgAhAHIAJBEGohAiAAQRBqIgAgAUkNAAsMAwsgACEDIAIhBANAIAMgBBAHIARBEGohBCADQRBqIgMgAUkNAAsLIAIgASAAa2ohAgsDQCABIAVPDQEgASACLQAAOgAAIAFBAWohASACQQFqIQIMAAALAAsLQQECfyAAIAAoArjgASIDNgLE4AEgACgCvOABIQQgACABNgK84AEgACABIAJqNgK44AEgACABIAQgA2tqNgLA4AELpgEBAX8gACAAKALs4QEQFjYCyOABIABCADcD+OABIABCADcDuOABIABBwOABakIANwMAIABBqNAAaiIBQYyAgOAANgIAIABBADYCmOIBIABCADcDiOEBIABCAzcDgOEBIABBrNABakHgEikCADcCACAAQbTQAWpB6BIoAgA2AgAgACABNgIMIAAgAEGYIGo2AgggACAAQaAwajYCBCAAIABBEGo2AgALYQEBf0G4fyEDAkAgAUEDSQ0AIAIgABAhIgFBA3YiADYCCCACIAFBAXE2AgQgAiABQQF2QQNxIgM2AgACQCADQX9qIgFBAksNAAJAIAFBAWsOAgEAAgtBbA8LIAAhAwsgAwsMACAAIAEgAkEAEC4LiAQCA38CfiADEBYhBCAAQQBBKBAQIQAgBCACSwRAIAQPCyABRQRAQX8PCwJAAkAgA0EBRg0AIAEoAAAiBkGo6r5pRg0AQXYhAyAGQXBxQdDUtMIBRw0BQQghAyACQQhJDQEgAEEAQSgQECEAIAEoAAQhASAAQQE2AhQgACABrTcDAEEADwsgASACIAMQLyIDIAJLDQAgACADNgIYQXIhAyABIARqIgVBf2otAAAiAkEIcQ0AIAJBIHEiBkUEQEFwIQMgBS0AACIFQacBSw0BIAVBB3GtQgEgBUEDdkEKaq2GIgdCA4h+IAd8IQggBEEBaiEECyACQQZ2IQMgAkECdiEFAkAgAkEDcUF/aiICQQJLBEBBACECDAELAkACQAJAIAJBAWsOAgECAAsgASAEai0AACECIARBAWohBAwCCyABIARqLwAAIQIgBEECaiEEDAELIAEgBGooAAAhAiAEQQRqIQQLIAVBAXEhBQJ+AkACQAJAIANBf2oiA0ECTQRAIANBAWsOAgIDAQtCfyAGRQ0DGiABIARqMQAADAMLIAEgBGovAACtQoACfAwCCyABIARqKAAArQwBCyABIARqKQAACyEHIAAgBTYCICAAIAI2AhwgACAHNwMAQQAhAyAAQQA2AhQgACAHIAggBhsiBzcDCCAAIAdCgIAIIAdCgIAIVBs+AhALIAMLWwEBf0G4fyEDIAIQFiICIAFNBH8gACACakF/ai0AACIAQQNxQQJ0QaAeaigCACACaiAAQQZ2IgFBAnRBsB5qKAIAaiAAQSBxIgBFaiABRSAAQQV2cWoFQbh/CwsdACAAKAKQ4gEQWiAAQQA2AqDiASAAQgA3A5DiAQu1AwEFfyMAQZACayIKJABBuH8hBgJAIAVFDQAgBCwAACIIQf8BcSEHAkAgCEF/TARAIAdBgn9qQQF2IgggBU8NAkFsIQYgB0GBf2oiBUGAAk8NAiAEQQFqIQdBACEGA0AgBiAFTwRAIAUhBiAIIQcMAwUgACAGaiAHIAZBAXZqIgQtAABBBHY6AAAgACAGQQFyaiAELQAAQQ9xOgAAIAZBAmohBgwBCwAACwALIAcgBU8NASAAIARBAWogByAKEFMiBhADDQELIAYhBEEAIQYgAUEAQTQQECEJQQAhBQNAIAQgBkcEQCAAIAZqIggtAAAiAUELSwRAQWwhBgwDBSAJIAFBAnRqIgEgASgCAEEBajYCACAGQQFqIQZBASAILQAAdEEBdSAFaiEFDAILAAsLQWwhBiAFRQ0AIAUQFEEBaiIBQQxLDQAgAyABNgIAQQFBASABdCAFayIDEBQiAXQgA0cNACAAIARqIAFBAWoiADoAACAJIABBAnRqIgAgACgCAEEBajYCACAJKAIEIgBBAkkgAEEBcXINACACIARBAWo2AgAgB0EBaiEGCyAKQZACaiQAIAYLxhEBDH8jAEHwAGsiBSQAQWwhCwJAIANBCkkNACACLwAAIQogAi8AAiEJIAIvAAQhByAFQQhqIAQQDgJAIAMgByAJIApqakEGaiIMSQ0AIAUtAAohCCAFQdgAaiACQQZqIgIgChAGIgsQAw0BIAVBQGsgAiAKaiICIAkQBiILEAMNASAFQShqIAIgCWoiAiAHEAYiCxADDQEgBUEQaiACIAdqIAMgDGsQBiILEAMNASAAIAFqIg9BfWohECAEQQRqIQZBASELIAAgAUEDakECdiIDaiIMIANqIgIgA2oiDiEDIAIhBCAMIQcDQCALIAMgEElxBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgCS0AAyELIAcgBiAFQUBrIAgQAkECdGoiCS8BADsAACAFQUBrIAktAAIQASAJLQADIQogBCAGIAVBKGogCBACQQJ0aiIJLwEAOwAAIAVBKGogCS0AAhABIAktAAMhCSADIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgDS0AAyENIAAgC2oiCyAGIAVB2ABqIAgQAkECdGoiAC8BADsAACAFQdgAaiAALQACEAEgAC0AAyEAIAcgCmoiCiAGIAVBQGsgCBACQQJ0aiIHLwEAOwAAIAVBQGsgBy0AAhABIActAAMhByAEIAlqIgkgBiAFQShqIAgQAkECdGoiBC8BADsAACAFQShqIAQtAAIQASAELQADIQQgAyANaiIDIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgACALaiEAIAcgCmohByAEIAlqIQQgAyANLQADaiEDIAVB2ABqEA0gBUFAaxANciAFQShqEA1yIAVBEGoQDXJFIQsMAQsLIAQgDksgByACS3INAEFsIQsgACAMSw0BIAxBfWohCQNAQQAgACAJSSAFQdgAahAEGwRAIAAgBiAFQdgAaiAIEAJBAnRqIgovAQA7AAAgBUHYAGogCi0AAhABIAAgCi0AA2oiACAGIAVB2ABqIAgQAkECdGoiCi8BADsAACAFQdgAaiAKLQACEAEgACAKLQADaiEADAEFIAxBfmohCgNAIAVB2ABqEAQgACAKS3JFBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgACAJLQADaiEADAELCwNAIAAgCk0EQCAAIAYgBUHYAGogCBACQQJ0aiIJLwEAOwAAIAVB2ABqIAktAAIQASAAIAktAANqIQAMAQsLAkAgACAMTw0AIAAgBiAFQdgAaiAIEAIiAEECdGoiDC0AADoAACAMLQADQQFGBEAgBUHYAGogDC0AAhABDAELIAUoAlxBH0sNACAFQdgAaiAGIABBAnRqLQACEAEgBSgCXEEhSQ0AIAVBIDYCXAsgAkF9aiEMA0BBACAHIAxJIAVBQGsQBBsEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiIAIAYgBUFAayAIEAJBAnRqIgcvAQA7AAAgBUFAayAHLQACEAEgACAHLQADaiEHDAEFIAJBfmohDANAIAVBQGsQBCAHIAxLckUEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwNAIAcgDE0EQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwJAIAcgAk8NACAHIAYgBUFAayAIEAIiAEECdGoiAi0AADoAACACLQADQQFGBEAgBUFAayACLQACEAEMAQsgBSgCREEfSw0AIAVBQGsgBiAAQQJ0ai0AAhABIAUoAkRBIUkNACAFQSA2AkQLIA5BfWohAgNAQQAgBCACSSAFQShqEAQbBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2oiACAGIAVBKGogCBACQQJ0aiIELwEAOwAAIAVBKGogBC0AAhABIAAgBC0AA2ohBAwBBSAOQX5qIQIDQCAFQShqEAQgBCACS3JFBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsDQCAEIAJNBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsCQCAEIA5PDQAgBCAGIAVBKGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBKGogAi0AAhABDAELIAUoAixBH0sNACAFQShqIAYgAEECdGotAAIQASAFKAIsQSFJDQAgBUEgNgIsCwNAQQAgAyAQSSAFQRBqEAQbBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2oiACAGIAVBEGogCBACQQJ0aiICLwEAOwAAIAVBEGogAi0AAhABIAAgAi0AA2ohAwwBBSAPQX5qIQIDQCAFQRBqEAQgAyACS3JFBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsDQCADIAJNBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsCQCADIA9PDQAgAyAGIAVBEGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBEGogAi0AAhABDAELIAUoAhRBH0sNACAFQRBqIAYgAEECdGotAAIQASAFKAIUQSFJDQAgBUEgNgIUCyABQWwgBUHYAGoQCiAFQUBrEApxIAVBKGoQCnEgBUEQahAKcRshCwwJCwAACwALAAALAAsAAAsACwAACwALQWwhCwsgBUHwAGokACALC7UEAQ5/IwBBEGsiBiQAIAZBBGogABAOQVQhBQJAIARB3AtJDQAgBi0ABCEHIANB8ARqQQBB7AAQECEIIAdBDEsNACADQdwJaiIJIAggBkEIaiAGQQxqIAEgAhAxIhAQA0UEQCAGKAIMIgQgB0sNASADQdwFaiEPIANBpAVqIREgAEEEaiESIANBqAVqIQEgBCEFA0AgBSICQX9qIQUgCCACQQJ0aigCAEUNAAsgAkEBaiEOQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgASALaiAKNgIAIAVBAWohBSAKIAxqIQoMAQsLIAEgCjYCAEEAIQUgBigCCCELA0AgBSALRkUEQCABIAUgCWotAAAiDEECdGoiDSANKAIAIg1BAWo2AgAgDyANQQF0aiINIAw6AAEgDSAFOgAAIAVBAWohBQwBCwtBACEBIANBADYCqAUgBEF/cyAHaiEJQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgAyALaiABNgIAIAwgBSAJanQgAWohASAFQQFqIQUMAQsLIAcgBEEBaiIBIAJrIgRrQQFqIQgDQEEBIQUgBCAIT0UEQANAIAUgDk9FBEAgBUECdCIJIAMgBEE0bGpqIAMgCWooAgAgBHY2AgAgBUEBaiEFDAELCyAEQQFqIQQMAQsLIBIgByAPIAogESADIAIgARBkIAZBAToABSAGIAc6AAYgACAGKAIENgIACyAQIQULIAZBEGokACAFC8ENAQt/IwBB8ABrIgUkAEFsIQkCQCADQQpJDQAgAi8AACEKIAIvAAIhDCACLwAEIQYgBUEIaiAEEA4CQCADIAYgCiAMampBBmoiDUkNACAFLQAKIQcgBUHYAGogAkEGaiICIAoQBiIJEAMNASAFQUBrIAIgCmoiAiAMEAYiCRADDQEgBUEoaiACIAxqIgIgBhAGIgkQAw0BIAVBEGogAiAGaiADIA1rEAYiCRADDQEgACABaiIOQX1qIQ8gBEEEaiEGQQEhCSAAIAFBA2pBAnYiAmoiCiACaiIMIAJqIg0hAyAMIQQgCiECA0AgCSADIA9JcQRAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAACAGIAVBQGsgBxACQQF0aiIILQAAIQsgBUFAayAILQABEAEgAiALOgAAIAYgBUEoaiAHEAJBAXRqIggtAAAhCyAFQShqIAgtAAEQASAEIAs6AAAgBiAFQRBqIAcQAkEBdGoiCC0AACELIAVBEGogCC0AARABIAMgCzoAACAGIAVB2ABqIAcQAkEBdGoiCC0AACELIAVB2ABqIAgtAAEQASAAIAs6AAEgBiAFQUBrIAcQAkEBdGoiCC0AACELIAVBQGsgCC0AARABIAIgCzoAASAGIAVBKGogBxACQQF0aiIILQAAIQsgBUEoaiAILQABEAEgBCALOgABIAYgBUEQaiAHEAJBAXRqIggtAAAhCyAFQRBqIAgtAAEQASADIAs6AAEgA0ECaiEDIARBAmohBCACQQJqIQIgAEECaiEAIAkgBUHYAGoQDUVxIAVBQGsQDUVxIAVBKGoQDUVxIAVBEGoQDUVxIQkMAQsLIAQgDUsgAiAMS3INAEFsIQkgACAKSw0BIApBfWohCQNAIAVB2ABqEAQgACAJT3JFBEAgBiAFQdgAaiAHEAJBAXRqIggtAAAhCyAFQdgAaiAILQABEAEgACALOgAAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAASAAQQJqIQAMAQsLA0AgBUHYAGoQBCAAIApPckUEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCwNAIAAgCkkEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCyAMQX1qIQADQCAFQUBrEAQgAiAAT3JFBEAgBiAFQUBrIAcQAkEBdGoiCi0AACEJIAVBQGsgCi0AARABIAIgCToAACAGIAVBQGsgBxACQQF0aiIKLQAAIQkgBUFAayAKLQABEAEgAiAJOgABIAJBAmohAgwBCwsDQCAFQUBrEAQgAiAMT3JFBEAgBiAFQUBrIAcQAkEBdGoiAC0AACEKIAVBQGsgAC0AARABIAIgCjoAACACQQFqIQIMAQsLA0AgAiAMSQRAIAYgBUFAayAHEAJBAXRqIgAtAAAhCiAFQUBrIAAtAAEQASACIAo6AAAgAkEBaiECDAELCyANQX1qIQADQCAFQShqEAQgBCAAT3JFBEAgBiAFQShqIAcQAkEBdGoiAi0AACEKIAVBKGogAi0AARABIAQgCjoAACAGIAVBKGogBxACQQF0aiICLQAAIQogBUEoaiACLQABEAEgBCAKOgABIARBAmohBAwBCwsDQCAFQShqEAQgBCANT3JFBEAgBiAFQShqIAcQAkEBdGoiAC0AACECIAVBKGogAC0AARABIAQgAjoAACAEQQFqIQQMAQsLA0AgBCANSQRAIAYgBUEoaiAHEAJBAXRqIgAtAAAhAiAFQShqIAAtAAEQASAEIAI6AAAgBEEBaiEEDAELCwNAIAVBEGoQBCADIA9PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIAYgBUEQaiAHEAJBAXRqIgAtAAAhAiAFQRBqIAAtAAEQASADIAI6AAEgA0ECaiEDDAELCwNAIAVBEGoQBCADIA5PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIANBAWohAwwBCwsDQCADIA5JBEAgBiAFQRBqIAcQAkEBdGoiAC0AACECIAVBEGogAC0AARABIAMgAjoAACADQQFqIQMMAQsLIAFBbCAFQdgAahAKIAVBQGsQCnEgBUEoahAKcSAFQRBqEApxGyEJDAELQWwhCQsgBUHwAGokACAJC8oCAQR/IwBBIGsiBSQAIAUgBBAOIAUtAAIhByAFQQhqIAIgAxAGIgIQA0UEQCAEQQRqIQIgACABaiIDQX1qIQQDQCAFQQhqEAQgACAET3JFBEAgAiAFQQhqIAcQAkEBdGoiBi0AACEIIAVBCGogBi0AARABIAAgCDoAACACIAVBCGogBxACQQF0aiIGLQAAIQggBUEIaiAGLQABEAEgACAIOgABIABBAmohAAwBCwsDQCAFQQhqEAQgACADT3JFBEAgAiAFQQhqIAcQAkEBdGoiBC0AACEGIAVBCGogBC0AARABIAAgBjoAACAAQQFqIQAMAQsLA0AgACADT0UEQCACIAVBCGogBxACQQF0aiIELQAAIQYgBUEIaiAELQABEAEgACAGOgAAIABBAWohAAwBCwsgAUFsIAVBCGoQChshAgsgBUEgaiQAIAILtgMBCX8jAEEQayIGJAAgBkEANgIMIAZBADYCCEFUIQQCQAJAIANBQGsiDCADIAZBCGogBkEMaiABIAIQMSICEAMNACAGQQRqIAAQDiAGKAIMIgcgBi0ABEEBaksNASAAQQRqIQogBkEAOgAFIAYgBzoABiAAIAYoAgQ2AgAgB0EBaiEJQQEhBANAIAQgCUkEQCADIARBAnRqIgEoAgAhACABIAU2AgAgACAEQX9qdCAFaiEFIARBAWohBAwBCwsgB0EBaiEHQQAhBSAGKAIIIQkDQCAFIAlGDQEgAyAFIAxqLQAAIgRBAnRqIgBBASAEdEEBdSILIAAoAgAiAWoiADYCACAHIARrIQhBACEEAkAgC0EDTQRAA0AgBCALRg0CIAogASAEakEBdGoiACAIOgABIAAgBToAACAEQQFqIQQMAAALAAsDQCABIABPDQEgCiABQQF0aiIEIAg6AAEgBCAFOgAAIAQgCDoAAyAEIAU6AAIgBCAIOgAFIAQgBToABCAEIAg6AAcgBCAFOgAGIAFBBGohAQwAAAsACyAFQQFqIQUMAAALAAsgAiEECyAGQRBqJAAgBAutAQECfwJAQYQgKAIAIABHIAAoAgBBAXYiAyABa0F4aiICQXhxQQhHcgR/IAIFIAMQJ0UNASACQQhqC0EQSQ0AIAAgACgCACICQQFxIAAgAWpBD2pBeHEiASAAa0EBdHI2AgAgASAANgIEIAEgASgCAEEBcSAAIAJBAXZqIAFrIgJBAXRyNgIAQYQgIAEgAkH/////B3FqQQRqQYQgKAIAIABGGyABNgIAIAEQJQsLygIBBX8CQAJAAkAgAEEIIABBCEsbZ0EfcyAAaUEBR2oiAUEESSAAIAF2cg0AIAFBAnRB/B5qKAIAIgJFDQADQCACQXhqIgMoAgBBAXZBeGoiBSAATwRAIAIgBUEIIAVBCEsbZ0Efc0ECdEGAH2oiASgCAEYEQCABIAIoAgQ2AgALDAMLIARBHksNASAEQQFqIQQgAigCBCICDQALC0EAIQMgAUEgTw0BA0AgAUECdEGAH2ooAgAiAkUEQCABQR5LIQIgAUEBaiEBIAJFDQEMAwsLIAIgAkF4aiIDKAIAQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgBGBEAgASACKAIENgIACwsgAigCACIBBEAgASACKAIENgIECyACKAIEIgEEQCABIAIoAgA2AgALIAMgAygCAEEBcjYCACADIAAQNwsgAwvhCwINfwV+IwBB8ABrIgckACAHIAAoAvDhASIINgJcIAEgAmohDSAIIAAoAoDiAWohDwJAAkAgBUUEQCABIQQMAQsgACgCxOABIRAgACgCwOABIREgACgCvOABIQ4gAEEBNgKM4QFBACEIA0AgCEEDRwRAIAcgCEECdCICaiAAIAJqQazQAWooAgA2AkQgCEEBaiEIDAELC0FsIQwgB0EYaiADIAQQBhADDQEgB0EsaiAHQRhqIAAoAgAQEyAHQTRqIAdBGGogACgCCBATIAdBPGogB0EYaiAAKAIEEBMgDUFgaiESIAEhBEEAIQwDQCAHKAIwIAcoAixBA3RqKQIAIhRCEIinQf8BcSEIIAcoAkAgBygCPEEDdGopAgAiFUIQiKdB/wFxIQsgBygCOCAHKAI0QQN0aikCACIWQiCIpyEJIBVCIIghFyAUQiCIpyECAkAgFkIQiKdB/wFxIgNBAk8EQAJAIAZFIANBGUlyRQRAIAkgB0EYaiADQSAgBygCHGsiCiAKIANLGyIKEAUgAyAKayIDdGohCSAHQRhqEAQaIANFDQEgB0EYaiADEAUgCWohCQwBCyAHQRhqIAMQBSAJaiEJIAdBGGoQBBoLIAcpAkQhGCAHIAk2AkQgByAYNwNIDAELAkAgA0UEQCACBEAgBygCRCEJDAMLIAcoAkghCQwBCwJAAkAgB0EYakEBEAUgCSACRWpqIgNBA0YEQCAHKAJEQX9qIgMgA0VqIQkMAQsgA0ECdCAHaigCRCIJIAlFaiEJIANBAUYNAQsgByAHKAJINgJMCwsgByAHKAJENgJIIAcgCTYCRAsgF6chAyALBEAgB0EYaiALEAUgA2ohAwsgCCALakEUTwRAIAdBGGoQBBoLIAgEQCAHQRhqIAgQBSACaiECCyAHQRhqEAQaIAcgB0EYaiAUQhiIp0H/AXEQCCAUp0H//wNxajYCLCAHIAdBGGogFUIYiKdB/wFxEAggFadB//8DcWo2AjwgB0EYahAEGiAHIAdBGGogFkIYiKdB/wFxEAggFqdB//8DcWo2AjQgByACNgJgIAcoAlwhCiAHIAk2AmggByADNgJkAkACQAJAIAQgAiADaiILaiASSw0AIAIgCmoiEyAPSw0AIA0gBGsgC0Egak8NAQsgByAHKQNoNwMQIAcgBykDYDcDCCAEIA0gB0EIaiAHQdwAaiAPIA4gESAQEB4hCwwBCyACIARqIQggBCAKEAcgAkERTwRAIARBEGohAgNAIAIgCkEQaiIKEAcgAkEQaiICIAhJDQALCyAIIAlrIQIgByATNgJcIAkgCCAOa0sEQCAJIAggEWtLBEBBbCELDAILIBAgAiAOayICaiIKIANqIBBNBEAgCCAKIAMQDxoMAgsgCCAKQQAgAmsQDyEIIAcgAiADaiIDNgJkIAggAmshCCAOIQILIAlBEE8EQCADIAhqIQMDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALDAELAkAgCUEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgCUECdCIDQcAeaigCAGoiAhAXIAIgA0HgHmooAgBrIQIgBygCZCEDDAELIAggAhAMCyADQQlJDQAgAyAIaiEDIAhBCGoiCCACQQhqIgJrQQ9MBEADQCAIIAIQDCACQQhqIQIgCEEIaiIIIANJDQAMAgALAAsDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALCyAHQRhqEAQaIAsgDCALEAMiAhshDCAEIAQgC2ogAhshBCAFQX9qIgUNAAsgDBADDQFBbCEMIAdBGGoQBEECSQ0BQQAhCANAIAhBA0cEQCAAIAhBAnQiAmpBrNABaiACIAdqKAJENgIAIAhBAWohCAwBCwsgBygCXCEIC0G6fyEMIA8gCGsiACANIARrSw0AIAQEfyAEIAggABALIABqBUEACyABayEMCyAHQfAAaiQAIAwLkRcCFn8FfiMAQdABayIHJAAgByAAKALw4QEiCDYCvAEgASACaiESIAggACgCgOIBaiETAkACQCAFRQRAIAEhAwwBCyAAKALE4AEhESAAKALA4AEhFSAAKAK84AEhDyAAQQE2AozhAUEAIQgDQCAIQQNHBEAgByAIQQJ0IgJqIAAgAmpBrNABaigCADYCVCAIQQFqIQgMAQsLIAcgETYCZCAHIA82AmAgByABIA9rNgJoQWwhECAHQShqIAMgBBAGEAMNASAFQQQgBUEESBshFyAHQTxqIAdBKGogACgCABATIAdBxABqIAdBKGogACgCCBATIAdBzABqIAdBKGogACgCBBATQQAhBCAHQeAAaiEMIAdB5ABqIQoDQCAHQShqEARBAksgBCAXTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEJIAcoAkggBygCREEDdGopAgAiH0IgiKchCCAeQiCIISAgHUIgiKchAgJAIB9CEIinQf8BcSIDQQJPBEACQCAGRSADQRlJckUEQCAIIAdBKGogA0EgIAcoAixrIg0gDSADSxsiDRAFIAMgDWsiA3RqIQggB0EoahAEGiADRQ0BIAdBKGogAxAFIAhqIQgMAQsgB0EoaiADEAUgCGohCCAHQShqEAQaCyAHKQJUISEgByAINgJUIAcgITcDWAwBCwJAIANFBEAgAgRAIAcoAlQhCAwDCyAHKAJYIQgMAQsCQAJAIAdBKGpBARAFIAggAkVqaiIDQQNGBEAgBygCVEF/aiIDIANFaiEIDAELIANBAnQgB2ooAlQiCCAIRWohCCADQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAg2AlQLICCnIQMgCQRAIAdBKGogCRAFIANqIQMLIAkgC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgAmohAgsgB0EoahAEGiAHIAcoAmggAmoiCSADajYCaCAKIAwgCCAJSxsoAgAhDSAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogB0EoaiAfQhiIp0H/AXEQCCEOIAdB8ABqIARBBHRqIgsgCSANaiAIazYCDCALIAg2AgggCyADNgIEIAsgAjYCACAHIA4gH6dB//8DcWo2AkQgBEEBaiEEDAELCyAEIBdIDQEgEkFgaiEYIAdB4ABqIRogB0HkAGohGyABIQMDQCAHQShqEARBAksgBCAFTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEIIAcoAkggBygCREEDdGopAgAiH0IgiKchCSAeQiCIISAgHUIgiKchDAJAIB9CEIinQf8BcSICQQJPBEACQCAGRSACQRlJckUEQCAJIAdBKGogAkEgIAcoAixrIgogCiACSxsiChAFIAIgCmsiAnRqIQkgB0EoahAEGiACRQ0BIAdBKGogAhAFIAlqIQkMAQsgB0EoaiACEAUgCWohCSAHQShqEAQaCyAHKQJUISEgByAJNgJUIAcgITcDWAwBCwJAIAJFBEAgDARAIAcoAlQhCQwDCyAHKAJYIQkMAQsCQAJAIAdBKGpBARAFIAkgDEVqaiICQQNGBEAgBygCVEF/aiICIAJFaiEJDAELIAJBAnQgB2ooAlQiCSAJRWohCSACQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAk2AlQLICCnIRQgCARAIAdBKGogCBAFIBRqIRQLIAggC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgDGohDAsgB0EoahAEGiAHIAcoAmggDGoiGSAUajYCaCAbIBogCSAZSxsoAgAhHCAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogByAHQShqIB9CGIinQf8BcRAIIB+nQf//A3FqNgJEIAcgB0HwAGogBEEDcUEEdGoiDSkDCCIdNwPIASAHIA0pAwAiHjcDwAECQAJAAkAgBygCvAEiDiAepyICaiIWIBNLDQAgAyAHKALEASIKIAJqIgtqIBhLDQAgEiADayALQSBqTw0BCyAHIAcpA8gBNwMQIAcgBykDwAE3AwggAyASIAdBCGogB0G8AWogEyAPIBUgERAeIQsMAQsgAiADaiEIIAMgDhAHIAJBEU8EQCADQRBqIQIDQCACIA5BEGoiDhAHIAJBEGoiAiAISQ0ACwsgCCAdpyIOayECIAcgFjYCvAEgDiAIIA9rSwRAIA4gCCAVa0sEQEFsIQsMAgsgESACIA9rIgJqIhYgCmogEU0EQCAIIBYgChAPGgwCCyAIIBZBACACaxAPIQggByACIApqIgo2AsQBIAggAmshCCAPIQILIA5BEE8EQCAIIApqIQoDQCAIIAIQByACQRBqIQIgCEEQaiIIIApJDQALDAELAkAgDkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgDkECdCIKQcAeaigCAGoiAhAXIAIgCkHgHmooAgBrIQIgBygCxAEhCgwBCyAIIAIQDAsgCkEJSQ0AIAggCmohCiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAKSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAKSQ0ACwsgCxADBEAgCyEQDAQFIA0gDDYCACANIBkgHGogCWs2AgwgDSAJNgIIIA0gFDYCBCAEQQFqIQQgAyALaiEDDAILAAsLIAQgBUgNASAEIBdrIQtBACEEA0AgCyAFSARAIAcgB0HwAGogC0EDcUEEdGoiAikDCCIdNwPIASAHIAIpAwAiHjcDwAECQAJAAkAgBygCvAEiDCAepyICaiIKIBNLDQAgAyAHKALEASIJIAJqIhBqIBhLDQAgEiADayAQQSBqTw0BCyAHIAcpA8gBNwMgIAcgBykDwAE3AxggAyASIAdBGGogB0G8AWogEyAPIBUgERAeIRAMAQsgAiADaiEIIAMgDBAHIAJBEU8EQCADQRBqIQIDQCACIAxBEGoiDBAHIAJBEGoiAiAISQ0ACwsgCCAdpyIGayECIAcgCjYCvAEgBiAIIA9rSwRAIAYgCCAVa0sEQEFsIRAMAgsgESACIA9rIgJqIgwgCWogEU0EQCAIIAwgCRAPGgwCCyAIIAxBACACaxAPIQggByACIAlqIgk2AsQBIAggAmshCCAPIQILIAZBEE8EQCAIIAlqIQYDQCAIIAIQByACQRBqIQIgCEEQaiIIIAZJDQALDAELAkAgBkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgBkECdCIGQcAeaigCAGoiAhAXIAIgBkHgHmooAgBrIQIgBygCxAEhCQwBCyAIIAIQDAsgCUEJSQ0AIAggCWohBiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAGSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAGSQ0ACwsgEBADDQMgC0EBaiELIAMgEGohAwwBCwsDQCAEQQNHBEAgACAEQQJ0IgJqQazQAWogAiAHaigCVDYCACAEQQFqIQQMAQsLIAcoArwBIQgLQbp/IRAgEyAIayIAIBIgA2tLDQAgAwR/IAMgCCAAEAsgAGoFQQALIAFrIRALIAdB0AFqJAAgEAslACAAQgA3AgAgAEEAOwEIIABBADoACyAAIAE2AgwgACACOgAKC7QFAQN/IwBBMGsiBCQAIABB/wFqIgVBfWohBgJAIAMvAQIEQCAEQRhqIAEgAhAGIgIQAw0BIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahASOgAAIAMgBEEIaiAEQRhqEBI6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0FIAEgBEEQaiAEQRhqEBI6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBSABIARBCGogBEEYahASOgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEjoAACABIAJqIABrIQIMAwsgAyAEQRBqIARBGGoQEjoAAiADIARBCGogBEEYahASOgADIANBBGohAwwAAAsACyAEQRhqIAEgAhAGIgIQAw0AIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahAROgAAIAMgBEEIaiAEQRhqEBE6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0EIAEgBEEQaiAEQRhqEBE6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBCABIARBCGogBEEYahAROgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEToAACABIAJqIABrIQIMAgsgAyAEQRBqIARBGGoQEToAAiADIARBCGogBEEYahAROgADIANBBGohAwwAAAsACyAEQTBqJAAgAgtpAQF/An8CQAJAIAJBB00NACABKAAAQbfIwuF+Rw0AIAAgASgABDYCmOIBQWIgAEEQaiABIAIQPiIDEAMNAhogAEKBgICAEDcDiOEBIAAgASADaiACIANrECoMAQsgACABIAIQKgtBAAsLrQMBBn8jAEGAAWsiAyQAQWIhCAJAIAJBCUkNACAAQZjQAGogAUEIaiIEIAJBeGogAEGY0AAQMyIFEAMiBg0AIANBHzYCfCADIANB/ABqIANB+ABqIAQgBCAFaiAGGyIEIAEgAmoiAiAEaxAVIgUQAw0AIAMoAnwiBkEfSw0AIAMoAngiB0EJTw0AIABBiCBqIAMgBkGAC0GADCAHEBggA0E0NgJ8IAMgA0H8AGogA0H4AGogBCAFaiIEIAIgBGsQFSIFEAMNACADKAJ8IgZBNEsNACADKAJ4IgdBCk8NACAAQZAwaiADIAZBgA1B4A4gBxAYIANBIzYCfCADIANB/ABqIANB+ABqIAQgBWoiBCACIARrEBUiBRADDQAgAygCfCIGQSNLDQAgAygCeCIHQQpPDQAgACADIAZBwBBB0BEgBxAYIAQgBWoiBEEMaiIFIAJLDQAgAiAFayEFQQAhAgNAIAJBA0cEQCAEKAAAIgZBf2ogBU8NAiAAIAJBAnRqQZzQAWogBjYCACACQQFqIQIgBEEEaiEEDAELCyAEIAFrIQgLIANBgAFqJAAgCAtGAQN/IABBCGohAyAAKAIEIQJBACEAA0AgACACdkUEQCABIAMgAEEDdGotAAJBFktqIQEgAEEBaiEADAELCyABQQggAmt0C4YDAQV/Qbh/IQcCQCADRQ0AIAItAAAiBEUEQCABQQA2AgBBAUG4fyADQQFGGw8LAn8gAkEBaiIFIARBGHRBGHUiBkF/Sg0AGiAGQX9GBEAgA0EDSA0CIAUvAABBgP4BaiEEIAJBA2oMAQsgA0ECSA0BIAItAAEgBEEIdHJBgIB+aiEEIAJBAmoLIQUgASAENgIAIAVBAWoiASACIANqIgNLDQBBbCEHIABBEGogACAFLQAAIgVBBnZBI0EJIAEgAyABa0HAEEHQEUHwEiAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBmCBqIABBCGogBUEEdkEDcUEfQQggASABIAZqIAgbIgEgAyABa0GAC0GADEGAFyAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBoDBqIABBBGogBUECdkEDcUE0QQkgASABIAZqIAgbIgEgAyABa0GADUHgDkGQGSAAKAKM4QEgACgCnOIBIAQQHyIAEAMNACAAIAFqIAJrIQcLIAcLrQMBCn8jAEGABGsiCCQAAn9BUiACQf8BSw0AGkFUIANBDEsNABogAkEBaiELIABBBGohCUGAgAQgA0F/anRBEHUhCkEAIQJBASEEQQEgA3QiB0F/aiIMIQUDQCACIAtGRQRAAkAgASACQQF0Ig1qLwEAIgZB//8DRgRAIAkgBUECdGogAjoAAiAFQX9qIQVBASEGDAELIARBACAKIAZBEHRBEHVKGyEECyAIIA1qIAY7AQAgAkEBaiECDAELCyAAIAQ7AQIgACADOwEAIAdBA3YgB0EBdmpBA2ohBkEAIQRBACECA0AgBCALRkUEQCABIARBAXRqLgEAIQpBACEAA0AgACAKTkUEQCAJIAJBAnRqIAQ6AAIDQCACIAZqIAxxIgIgBUsNAAsgAEEBaiEADAELCyAEQQFqIQQMAQsLQX8gAg0AGkEAIQIDfyACIAdGBH9BAAUgCCAJIAJBAnRqIgAtAAJBAXRqIgEgAS8BACIBQQFqOwEAIAAgAyABEBRrIgU6AAMgACABIAVB/wFxdCAHazsBACACQQFqIQIMAQsLCyEFIAhBgARqJAAgBQvjBgEIf0FsIQcCQCACQQNJDQACQAJAAkACQCABLQAAIgNBA3EiCUEBaw4DAwEAAgsgACgCiOEBDQBBYg8LIAJBBUkNAkEDIQYgASgAACEFAn8CQAJAIANBAnZBA3EiCEF+aiIEQQFNBEAgBEEBaw0BDAILIAVBDnZB/wdxIQQgBUEEdkH/B3EhAyAIRQwCCyAFQRJ2IQRBBCEGIAVBBHZB//8AcSEDQQAMAQsgBUEEdkH//w9xIgNBgIAISw0DIAEtAARBCnQgBUEWdnIhBEEFIQZBAAshBSAEIAZqIgogAksNAgJAIANBgQZJDQAgACgCnOIBRQ0AQQAhAgNAIAJBg4ABSw0BIAJBQGshAgwAAAsACwJ/IAlBA0YEQCABIAZqIQEgAEHw4gFqIQIgACgCDCEGIAUEQCACIAMgASAEIAYQXwwCCyACIAMgASAEIAYQXQwBCyAAQbjQAWohAiABIAZqIQEgAEHw4gFqIQYgAEGo0ABqIQggBQRAIAggBiADIAEgBCACEF4MAQsgCCAGIAMgASAEIAIQXAsQAw0CIAAgAzYCgOIBIABBATYCiOEBIAAgAEHw4gFqNgLw4QEgCUECRgRAIAAgAEGo0ABqNgIMCyAAIANqIgBBiOMBakIANwAAIABBgOMBakIANwAAIABB+OIBakIANwAAIABB8OIBakIANwAAIAoPCwJ/AkACQAJAIANBAnZBA3FBf2oiBEECSw0AIARBAWsOAgACAQtBASEEIANBA3YMAgtBAiEEIAEvAABBBHYMAQtBAyEEIAEQIUEEdgsiAyAEaiIFQSBqIAJLBEAgBSACSw0CIABB8OIBaiABIARqIAMQCyEBIAAgAzYCgOIBIAAgATYC8OEBIAEgA2oiAEIANwAYIABCADcAECAAQgA3AAggAEIANwAAIAUPCyAAIAM2AoDiASAAIAEgBGo2AvDhASAFDwsCfwJAAkACQCADQQJ2QQNxQX9qIgRBAksNACAEQQFrDgIAAgELQQEhByADQQN2DAILQQIhByABLwAAQQR2DAELIAJBBEkgARAhIgJBj4CAAUtyDQFBAyEHIAJBBHYLIQIgAEHw4gFqIAEgB2otAAAgAkEgahAQIQEgACACNgKA4gEgACABNgLw4QEgB0EBaiEHCyAHC0sAIABC+erQ0OfJoeThADcDICAAQgA3AxggAELP1tO+0ser2UI3AxAgAELW64Lu6v2J9eAANwMIIABCADcDACAAQShqQQBBKBAQGgviAgICfwV+IABBKGoiASAAKAJIaiECAn4gACkDACIDQiBaBEAgACkDECIEQgeJIAApAwgiBUIBiXwgACkDGCIGQgyJfCAAKQMgIgdCEol8IAUQGSAEEBkgBhAZIAcQGQwBCyAAKQMYQsXP2bLx5brqJ3wLIAN8IQMDQCABQQhqIgAgAk0EQEIAIAEpAAAQCSADhUIbiUKHla+vmLbem55/fkLj3MqV/M7y9YV/fCEDIAAhAQwBCwsCQCABQQRqIgAgAksEQCABIQAMAQsgASgAAK1Ch5Wvr5i23puef34gA4VCF4lCz9bTvtLHq9lCfkL5893xmfaZqxZ8IQMLA0AgACACSQRAIAAxAABCxc/ZsvHluuonfiADhUILiUKHla+vmLbem55/fiEDIABBAWohAAwBCwsgA0IhiCADhULP1tO+0ser2UJ+IgNCHYggA4VC+fPd8Zn2masWfiIDQiCIIAOFC+8CAgJ/BH4gACAAKQMAIAKtfDcDAAJAAkAgACgCSCIDIAJqIgRBH00EQCABRQ0BIAAgA2pBKGogASACECAgACgCSCACaiEEDAELIAEgAmohAgJ/IAMEQCAAQShqIgQgA2ogAUEgIANrECAgACAAKQMIIAQpAAAQCTcDCCAAIAApAxAgACkAMBAJNwMQIAAgACkDGCAAKQA4EAk3AxggACAAKQMgIABBQGspAAAQCTcDICAAKAJIIQMgAEEANgJIIAEgA2tBIGohAQsgAUEgaiACTQsEQCACQWBqIQMgACkDICEFIAApAxghBiAAKQMQIQcgACkDCCEIA0AgCCABKQAAEAkhCCAHIAEpAAgQCSEHIAYgASkAEBAJIQYgBSABKQAYEAkhBSABQSBqIgEgA00NAAsgACAFNwMgIAAgBjcDGCAAIAc3AxAgACAINwMICyABIAJPDQEgAEEoaiABIAIgAWsiBBAgCyAAIAQ2AkgLCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQEBogAwVBun8LCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQCxogAwVBun8LC6gCAQZ/IwBBEGsiByQAIABB2OABaikDAEKAgIAQViEIQbh/IQUCQCAEQf//B0sNACAAIAMgBBBCIgUQAyIGDQAgACgCnOIBIQkgACAHQQxqIAMgAyAFaiAGGyIKIARBACAFIAYbayIGEEAiAxADBEAgAyEFDAELIAcoAgwhBCABRQRAQbp/IQUgBEEASg0BCyAGIANrIQUgAyAKaiEDAkAgCQRAIABBADYCnOIBDAELAkACQAJAIARBBUgNACAAQdjgAWopAwBCgICACFgNAAwBCyAAQQA2ApziAQwBCyAAKAIIED8hBiAAQQA2ApziASAGQRRPDQELIAAgASACIAMgBSAEIAgQOSEFDAELIAAgASACIAMgBSAEIAgQOiEFCyAHQRBqJAAgBQtnACAAQdDgAWogASACIAAoAuzhARAuIgEQAwRAIAEPC0G4fyECAkAgAQ0AIABB7OABaigCACIBBEBBYCECIAAoApjiASABRw0BC0EAIQIgAEHw4AFqKAIARQ0AIABBkOEBahBDCyACCycBAX8QVyIERQRAQUAPCyAEIAAgASACIAMgBBBLEE8hACAEEFYgAAs/AQF/AkACQAJAIAAoAqDiAUEBaiIBQQJLDQAgAUEBaw4CAAECCyAAEDBBAA8LIABBADYCoOIBCyAAKAKU4gELvAMCB38BfiMAQRBrIgkkAEG4fyEGAkAgBCgCACIIQQVBCSAAKALs4QEiBRtJDQAgAygCACIHQQFBBSAFGyAFEC8iBRADBEAgBSEGDAELIAggBUEDakkNACAAIAcgBRBJIgYQAw0AIAEgAmohCiAAQZDhAWohCyAIIAVrIQIgBSAHaiEHIAEhBQNAIAcgAiAJECwiBhADDQEgAkF9aiICIAZJBEBBuH8hBgwCCyAJKAIAIghBAksEQEFsIQYMAgsgB0EDaiEHAn8CQAJAAkAgCEEBaw4CAgABCyAAIAUgCiAFayAHIAYQSAwCCyAFIAogBWsgByAGEEcMAQsgBSAKIAVrIActAAAgCSgCCBBGCyIIEAMEQCAIIQYMAgsgACgC8OABBEAgCyAFIAgQRQsgAiAGayECIAYgB2ohByAFIAhqIQUgCSgCBEUNAAsgACkD0OABIgxCf1IEQEFsIQYgDCAFIAFrrFINAQsgACgC8OABBEBBaiEGIAJBBEkNASALEEQhDCAHKAAAIAynRw0BIAdBBGohByACQXxqIQILIAMgBzYCACAEIAI2AgAgBSABayEGCyAJQRBqJAAgBgsuACAAECsCf0EAQQAQAw0AGiABRSACRXJFBEBBYiAAIAEgAhA9EAMNARoLQQALCzcAIAEEQCAAIAAoAsTgASABKAIEIAEoAghqRzYCnOIBCyAAECtBABADIAFFckUEQCAAIAEQWwsL0QIBB38jAEEQayIGJAAgBiAENgIIIAYgAzYCDCAFBEAgBSgCBCEKIAUoAgghCQsgASEIAkACQANAIAAoAuzhARAWIQsCQANAIAQgC0kNASADKAAAQXBxQdDUtMIBRgRAIAMgBBAiIgcQAw0EIAQgB2shBCADIAdqIQMMAQsLIAYgAzYCDCAGIAQ2AggCQCAFBEAgACAFEE5BACEHQQAQA0UNAQwFCyAAIAogCRBNIgcQAw0ECyAAIAgQUCAMQQFHQQAgACAIIAIgBkEMaiAGQQhqEEwiByIDa0EAIAMQAxtBCkdyRQRAQbh/IQcMBAsgBxADDQMgAiAHayECIAcgCGohCEEBIQwgBigCDCEDIAYoAgghBAwBCwsgBiADNgIMIAYgBDYCCEG4fyEHIAQNASAIIAFrIQcMAQsgBiADNgIMIAYgBDYCCAsgBkEQaiQAIAcLRgECfyABIAAoArjgASICRwRAIAAgAjYCxOABIAAgATYCuOABIAAoArzgASEDIAAgATYCvOABIAAgASADIAJrajYCwOABCwutAgIEfwF+IwBBQGoiBCQAAkACQCACQQhJDQAgASgAAEFwcUHQ1LTCAUcNACABIAIQIiEBIABCADcDCCAAQQA2AgQgACABNgIADAELIARBGGogASACEC0iAxADBEAgACADEBoMAQsgAwRAIABBuH8QGgwBCyACIAQoAjAiA2shAiABIANqIQMDQAJAIAAgAyACIARBCGoQLCIFEAMEfyAFBSACIAVBA2oiBU8NAUG4fwsQGgwCCyAGQQFqIQYgAiAFayECIAMgBWohAyAEKAIMRQ0ACyAEKAI4BEAgAkEDTQRAIABBuH8QGgwCCyADQQRqIQMLIAQoAighAiAEKQMYIQcgAEEANgIEIAAgAyABazYCACAAIAIgBmytIAcgB0J/URs3AwgLIARBQGskAAslAQF/IwBBEGsiAiQAIAIgACABEFEgAigCACEAIAJBEGokACAAC30BBH8jAEGQBGsiBCQAIARB/wE2AggCQCAEQRBqIARBCGogBEEMaiABIAIQFSIGEAMEQCAGIQUMAQtBVCEFIAQoAgwiB0EGSw0AIAMgBEEQaiAEKAIIIAcQQSIFEAMNACAAIAEgBmogAiAGayADEDwhBQsgBEGQBGokACAFC4cBAgJ/An5BABAWIQMCQANAIAEgA08EQAJAIAAoAABBcHFB0NS0wgFGBEAgACABECIiAhADRQ0BQn4PCyAAIAEQVSIEQn1WDQMgBCAFfCIFIARUIQJCfiEEIAINAyAAIAEQUiICEAMNAwsgASACayEBIAAgAmohAAwBCwtCfiAFIAEbIQQLIAQLPwIBfwF+IwBBMGsiAiQAAn5CfiACQQhqIAAgARAtDQAaQgAgAigCHEEBRg0AGiACKQMICyEDIAJBMGokACADC40BAQJ/IwBBMGsiASQAAkAgAEUNACAAKAKI4gENACABIABB/OEBaigCADYCKCABIAApAvThATcDICAAEDAgACgCqOIBIQIgASABKAIoNgIYIAEgASkDIDcDECACIAFBEGoQGyAAQQA2AqjiASABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALKgECfyMAQRBrIgAkACAAQQA2AgggAEIANwMAIAAQWCEBIABBEGokACABC4cBAQN/IwBBEGsiAiQAAkAgACgCAEUgACgCBEVzDQAgAiAAKAIINgIIIAIgACkCADcDAAJ/IAIoAgAiAQRAIAIoAghBqOMJIAERBQAMAQtBqOMJECgLIgFFDQAgASAAKQIANwL04QEgAUH84QFqIAAoAgg2AgAgARBZIAEhAwsgAkEQaiQAIAMLywEBAn8jAEEgayIBJAAgAEGBgIDAADYCtOIBIABBADYCiOIBIABBADYC7OEBIABCADcDkOIBIABBADYCpOMJIABBADYC3OIBIABCADcCzOIBIABBADYCvOIBIABBADYCxOABIABCADcCnOIBIABBpOIBakIANwIAIABBrOIBakEANgIAIAFCADcCECABQgA3AhggASABKQMYNwMIIAEgASkDEDcDACABKAIIQQh2QQFxIQIgAEEANgLg4gEgACACNgKM4gEgAUEgaiQAC3YBA38jAEEwayIBJAAgAARAIAEgAEHE0AFqIgIoAgA2AiggASAAKQK80AE3AyAgACgCACEDIAEgAigCADYCGCABIAApArzQATcDECADIAFBEGoQGyABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALzAEBAX8gACABKAK00AE2ApjiASAAIAEoAgQiAjYCwOABIAAgAjYCvOABIAAgAiABKAIIaiICNgK44AEgACACNgLE4AEgASgCuNABBEAgAEKBgICAEDcDiOEBIAAgAUGk0ABqNgIMIAAgAUGUIGo2AgggACABQZwwajYCBCAAIAFBDGo2AgAgAEGs0AFqIAFBqNABaigCADYCACAAQbDQAWogAUGs0AFqKAIANgIAIABBtNABaiABQbDQAWooAgA2AgAPCyAAQgA3A4jhAQs7ACACRQRAQbp/DwsgBEUEQEFsDwsgAiAEEGAEQCAAIAEgAiADIAQgBRBhDwsgACABIAIgAyAEIAUQZQtGAQF/IwBBEGsiBSQAIAVBCGogBBAOAn8gBS0ACQRAIAAgASACIAMgBBAyDAELIAAgASACIAMgBBA0CyEAIAVBEGokACAACzQAIAAgAyAEIAUQNiIFEAMEQCAFDwsgBSAESQR/IAEgAiADIAVqIAQgBWsgABA1BUG4fwsLRgEBfyMAQRBrIgUkACAFQQhqIAQQDgJ/IAUtAAkEQCAAIAEgAiADIAQQYgwBCyAAIAEgAiADIAQQNQshACAFQRBqJAAgAAtZAQF/QQ8hAiABIABJBEAgAUEEdCAAbiECCyAAQQh2IgEgAkEYbCIAQYwIaigCAGwgAEGICGooAgBqIgJBA3YgAmogAEGACGooAgAgAEGECGooAgAgAWxqSQs3ACAAIAMgBCAFQYAQEDMiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQMgVBuH8LC78DAQN/IwBBIGsiBSQAIAVBCGogAiADEAYiAhADRQRAIAAgAWoiB0F9aiEGIAUgBBAOIARBBGohAiAFLQACIQMDQEEAIAAgBkkgBUEIahAEGwRAIAAgAiAFQQhqIAMQAkECdGoiBC8BADsAACAFQQhqIAQtAAIQASAAIAQtAANqIgQgAiAFQQhqIAMQAkECdGoiAC8BADsAACAFQQhqIAAtAAIQASAEIAAtAANqIQAMAQUgB0F+aiEEA0AgBUEIahAEIAAgBEtyRQRAIAAgAiAFQQhqIAMQAkECdGoiBi8BADsAACAFQQhqIAYtAAIQASAAIAYtAANqIQAMAQsLA0AgACAES0UEQCAAIAIgBUEIaiADEAJBAnRqIgYvAQA7AAAgBUEIaiAGLQACEAEgACAGLQADaiEADAELCwJAIAAgB08NACAAIAIgBUEIaiADEAIiA0ECdGoiAC0AADoAACAALQADQQFGBEAgBUEIaiAALQACEAEMAQsgBSgCDEEfSw0AIAVBCGogAiADQQJ0ai0AAhABIAUoAgxBIUkNACAFQSA2AgwLIAFBbCAFQQhqEAobIQILCwsgBUEgaiQAIAILkgIBBH8jAEFAaiIJJAAgCSADQTQQCyEDAkAgBEECSA0AIAMgBEECdGooAgAhCSADQTxqIAgQIyADQQE6AD8gAyACOgA+QQAhBCADKAI8IQoDQCAEIAlGDQEgACAEQQJ0aiAKNgEAIARBAWohBAwAAAsAC0EAIQkDQCAGIAlGRQRAIAMgBSAJQQF0aiIKLQABIgtBAnRqIgwoAgAhBCADQTxqIAotAABBCHQgCGpB//8DcRAjIANBAjoAPyADIAcgC2siCiACajoAPiAEQQEgASAKa3RqIQogAygCPCELA0AgACAEQQJ0aiALNgEAIARBAWoiBCAKSQ0ACyAMIAo2AgAgCUEBaiEJDAELCyADQUBrJAALowIBCX8jAEHQAGsiCSQAIAlBEGogBUE0EAsaIAcgBmshDyAHIAFrIRADQAJAIAMgCkcEQEEBIAEgByACIApBAXRqIgYtAAEiDGsiCGsiC3QhDSAGLQAAIQ4gCUEQaiAMQQJ0aiIMKAIAIQYgCyAPTwRAIAAgBkECdGogCyAIIAUgCEE0bGogCCAQaiIIQQEgCEEBShsiCCACIAQgCEECdGooAgAiCEEBdGogAyAIayAHIA4QYyAGIA1qIQgMAgsgCUEMaiAOECMgCUEBOgAPIAkgCDoADiAGIA1qIQggCSgCDCELA0AgBiAITw0CIAAgBkECdGogCzYBACAGQQFqIQYMAAALAAsgCUHQAGokAA8LIAwgCDYCACAKQQFqIQoMAAALAAs0ACAAIAMgBCAFEDYiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQNAVBuH8LCyMAIAA/AEEQdGtB//8DakEQdkAAQX9GBEBBAA8LQQAQAEEBCzsBAX8gAgRAA0AgACABIAJBgCAgAkGAIEkbIgMQCyEAIAFBgCBqIQEgAEGAIGohACACIANrIgINAAsLCwYAIAAQAwsLqBUJAEGICAsNAQAAAAEAAAACAAAAAgBBoAgLswYBAAAAAQAAAAIAAAACAAAAJgAAAIIAAAAhBQAASgAAAGcIAAAmAAAAwAEAAIAAAABJBQAASgAAAL4IAAApAAAALAIAAIAAAABJBQAASgAAAL4IAAAvAAAAygIAAIAAAACKBQAASgAAAIQJAAA1AAAAcwMAAIAAAACdBQAASgAAAKAJAAA9AAAAgQMAAIAAAADrBQAASwAAAD4KAABEAAAAngMAAIAAAABNBgAASwAAAKoKAABLAAAAswMAAIAAAADBBgAATQAAAB8NAABNAAAAUwQAAIAAAAAjCAAAUQAAAKYPAABUAAAAmQQAAIAAAABLCQAAVwAAALESAABYAAAA2gQAAIAAAABvCQAAXQAAACMUAABUAAAARQUAAIAAAABUCgAAagAAAIwUAABqAAAArwUAAIAAAAB2CQAAfAAAAE4QAAB8AAAA0gIAAIAAAABjBwAAkQAAAJAHAACSAAAAAAAAAAEAAAABAAAABQAAAA0AAAAdAAAAPQAAAH0AAAD9AAAA/QEAAP0DAAD9BwAA/Q8AAP0fAAD9PwAA/X8AAP3/AAD9/wEA/f8DAP3/BwD9/w8A/f8fAP3/PwD9/38A/f//AP3//wH9//8D/f//B/3//w/9//8f/f//P/3//38AAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACUAAAAnAAAAKQAAACsAAAAvAAAAMwAAADsAAABDAAAAUwAAAGMAAACDAAAAAwEAAAMCAAADBAAAAwgAAAMQAAADIAAAA0AAAAOAAAADAAEAQeAPC1EBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAQcQQC4sBAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABIAAAAUAAAAFgAAABgAAAAcAAAAIAAAACgAAAAwAAAAQAAAAIAAAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAQAAAAIAAAAAAAQBBkBIL5gQBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAAAEAAAAEAAAACAAAAAAAAAABAAEBBgAAAAAAAAQAAAAAEAAABAAAAAAgAAAFAQAAAAAAAAUDAAAAAAAABQQAAAAAAAAFBgAAAAAAAAUHAAAAAAAABQkAAAAAAAAFCgAAAAAAAAUMAAAAAAAABg4AAAAAAAEFEAAAAAAAAQUUAAAAAAABBRYAAAAAAAIFHAAAAAAAAwUgAAAAAAAEBTAAAAAgAAYFQAAAAAAABwWAAAAAAAAIBgABAAAAAAoGAAQAAAAADAYAEAAAIAAABAAAAAAAAAAEAQAAAAAAAAUCAAAAIAAABQQAAAAAAAAFBQAAACAAAAUHAAAAAAAABQgAAAAgAAAFCgAAAAAAAAULAAAAAAAABg0AAAAgAAEFEAAAAAAAAQUSAAAAIAABBRYAAAAAAAIFGAAAACAAAwUgAAAAAAADBSgAAAAAAAYEQAAAABAABgRAAAAAIAAHBYAAAAAAAAkGAAIAAAAACwYACAAAMAAABAAAAAAQAAAEAQAAACAAAAUCAAAAIAAABQMAAAAgAAAFBQAAACAAAAUGAAAAIAAABQgAAAAgAAAFCQAAACAAAAULAAAAIAAABQwAAAAAAAAGDwAAACAAAQUSAAAAIAABBRQAAAAgAAIFGAAAACAAAgUcAAAAIAADBSgAAAAgAAQFMAAAAAAAEAYAAAEAAAAPBgCAAAAAAA4GAEAAAAAADQYAIABBgBcLhwIBAAEBBQAAAAAAAAUAAAAAAAAGBD0AAAAAAAkF/QEAAAAADwX9fwAAAAAVBf3/HwAAAAMFBQAAAAAABwR9AAAAAAAMBf0PAAAAABIF/f8DAAAAFwX9/38AAAAFBR0AAAAAAAgE/QAAAAAADgX9PwAAAAAUBf3/DwAAAAIFAQAAABAABwR9AAAAAAALBf0HAAAAABEF/f8BAAAAFgX9/z8AAAAEBQ0AAAAQAAgE/QAAAAAADQX9HwAAAAATBf3/BwAAAAEFAQAAABAABgQ9AAAAAAAKBf0DAAAAABAF/f8AAAAAHAX9//8PAAAbBf3//wcAABoF/f//AwAAGQX9//8BAAAYBf3//wBBkBkLhgQBAAEBBgAAAAAAAAYDAAAAAAAABAQAAAAgAAAFBQAAAAAAAAUGAAAAAAAABQgAAAAAAAAFCQAAAAAAAAULAAAAAAAABg0AAAAAAAAGEAAAAAAAAAYTAAAAAAAABhYAAAAAAAAGGQAAAAAAAAYcAAAAAAAABh8AAAAAAAAGIgAAAAAAAQYlAAAAAAABBikAAAAAAAIGLwAAAAAAAwY7AAAAAAAEBlMAAAAAAAcGgwAAAAAACQYDAgAAEAAABAQAAAAAAAAEBQAAACAAAAUGAAAAAAAABQcAAAAgAAAFCQAAAAAAAAUKAAAAAAAABgwAAAAAAAAGDwAAAAAAAAYSAAAAAAAABhUAAAAAAAAGGAAAAAAAAAYbAAAAAAAABh4AAAAAAAAGIQAAAAAAAQYjAAAAAAABBicAAAAAAAIGKwAAAAAAAwYzAAAAAAAEBkMAAAAAAAUGYwAAAAAACAYDAQAAIAAABAQAAAAwAAAEBAAAABAAAAQFAAAAIAAABQcAAAAgAAAFCAAAACAAAAUKAAAAIAAABQsAAAAAAAAGDgAAAAAAAAYRAAAAAAAABhQAAAAAAAAGFwAAAAAAAAYaAAAAAAAABh0AAAAAAAAGIAAAAAAAEAYDAAEAAAAPBgOAAAAAAA4GA0AAAAAADQYDIAAAAAAMBgMQAAAAAAsGAwgAAAAACgYDBABBpB0L2QEBAAAAAwAAAAcAAAAPAAAAHwAAAD8AAAB/AAAA/wAAAP8BAAD/AwAA/wcAAP8PAAD/HwAA/z8AAP9/AAD//wAA//8BAP//AwD//wcA//8PAP//HwD//z8A//9/AP///wD///8B////A////wf///8P////H////z////9/AAAAAAEAAAACAAAABAAAAAAAAAACAAAABAAAAAgAAAAAAAAAAQAAAAIAAAABAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAACAAAAAcAAAAIAAAACQAAAAoAAAALAEGgIAsDwBBQ";var o=g(708),t=g(4946);const s=new class{init(){return C||(C="undefined"!=typeof fetch?fetch("data:application/wasm;base64,"+a).then((A=>A.arrayBuffer())).then((A=>WebAssembly.instantiate(A,e))).then(this._init):WebAssembly.instantiate(Buffer.from(a,"base64"),e).then(this._init),C)}_init(A){E=A.instance,e.env.emscripten_notify_memory_growth(0)}decode(A,I=0){if(!E)throw new Error("ZSTDDecoder: Await .init() before decoding.");const g=A.byteLength,B=E.exports.malloc(g);i.set(A,B),I=I||Number(E.exports.ZSTD_findDecompressedSize(B,g));const Q=E.exports.malloc(I),C=E.exports.ZSTD_decompress(Q,I,B,g),e=i.slice(Q,Q+C);return E.exports.free(B),E.exports.free(Q),e}};class r extends o.A{constructor(A){super(),this.planarConfiguration=void 0!==A.PlanarConfiguration?A.PlanarConfiguration:1,this.samplesPerPixel=void 0!==A.SamplesPerPixel?A.SamplesPerPixel:1,this.addCompression=A.LercParameters[t.TZ.AddCompression]}decodeBlock(A){switch(this.addCompression){case t.S3.None:break;case t.S3.Deflate:A=(0,B.UD)(new Uint8Array(A)).buffer;break;case t.S3.Zstandard:A=s.decode(new Uint8Array(A)).buffer;break;default:throw new Error(`Unsupported LERC additional compression method identifier: ${this.addCompression}`)}return Q.decode(A,{returnPixelInterleavedDims:1===this.planarConfiguration}).pixels[0].buffer}}}}]); +//# sourceMappingURL=597.index.js.map \ No newline at end of file diff --git a/ipyopenlayers/nbextension/597.index.js.LICENSE.txt b/ipyopenlayers/nbextension/597.index.js.LICENSE.txt new file mode 100644 index 0000000..d0f3b73 --- /dev/null +++ b/ipyopenlayers/nbextension/597.index.js.LICENSE.txt @@ -0,0 +1 @@ +/* Copyright 2015-2021 Esri. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @preserve */ diff --git a/ipyopenlayers/nbextension/597.index.js.map b/ipyopenlayers/nbextension/597.index.js.map new file mode 100644 index 0000000..c566868 --- /dev/null +++ b/ipyopenlayers/nbextension/597.index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"597.index.js","mappings":";8FAAA,MA0CQA,EAyEAC,EA+HAC,EAyBAC,EAiBAC,EA0JAC,EAstDAC,EACAC,EAxmEFC,EAobAC,EAkrDAC,EAQAC,EAzmEEX,EAAY,CAEhBA,oBAAgC,qBAiChCA,OAAmB,SAASY,EAAOC,GAGjC,IAAIC,GAFJD,EAAUA,GAAW,CAAC,GAECE,iBAAgD,OAA5BF,EAAQE,gBAC/CC,EAAaZ,EAAMQ,EAAOC,EAAQI,aAAe,EAAGH,GAEpDI,EAAuC,OAAxBL,EAAQK,YAAwBL,EAAQK,YAAclB,EAAUmB,mBAE/EC,EAAmBnB,EAAsBe,EAAYH,EAAQQ,WAAaC,aAC5ET,EAAQE,gBAAiBG,EAAaL,EAAQU,YAE5CC,EAAS,CACXC,MAAOT,EAAWS,MAClBC,OAAQV,EAAWU,OACnBC,UAAWP,EAAiBQ,aAC5BC,SAAUT,EAAiBS,SAC3BC,SAAUd,EAAWe,OAAOD,SAC5BZ,YAAaA,GAkBf,OAfIE,EAAiBY,aACnBR,EAAOS,SAAWb,EAAiBY,YAGjCnB,EAAQqB,mBAAqBlB,EAAWmB,OAC1CX,EAAOT,gBAAkBC,EAAWmB,KAAKC,OAASpB,EAAWmB,KAAKC,OAAS,MAGzEvB,EAAQwB,iBACVb,EAAOc,SAAWpC,EAAec,GAC7BH,EAAQV,uBACVqB,EAAOc,SAASC,UAAYpC,EAAqBa,KAI9CQ,CACT,GAEIvB,EAAwB,SAASuC,EAAMC,EAAiBC,EAAYxB,EAAayB,GACnF,IAMiCC,EAG7BhB,EAAcI,EATda,EAAW,EACXC,EAAON,EAAKT,OAAOgB,WACnBC,EAAOR,EAAKT,OAAOkB,WACnBC,EAAaC,KAAKC,MAAMZ,EAAKf,MAAQqB,GACrCO,EAAcF,KAAKC,MAAMZ,EAAKd,OAASsB,GACvCM,EAAQ,EAAId,EAAKe,UACjB1B,EAAW2B,OAAOC,UACtBf,EAAaA,IAAgBF,EAAS,KAAIA,EAAKL,KAAKC,OAAS,MAG7DR,EAAe,IAAIa,EAAgBD,EAAKf,MAAQe,EAAKd,QACjDiB,GAAoBD,IACtBV,EAAa,IAAI0B,WAAWlB,EAAKf,MAAQe,EAAKd,SAKhD,IAHA,IAEIiC,EAAIC,EAFJC,EAAkB,IAAIvC,aAAa4B,EAAaG,GAG3CS,EAAI,EAAGA,GAAKd,EAAMc,IAAK,CAC9B,IAAIC,EAAmBD,IAAMd,EAAQK,EAAeb,EAAKd,OAASsB,EAClE,GAAwB,IAApBe,EAGJ,IAAK,IAAIC,EAAI,EAAGA,GAAKlB,EAAMkB,IAAK,CAC9B,IAAIC,EAAkBD,IAAMlB,EAAQI,EAAcV,EAAKf,MAAQqB,EAC/D,GAAuB,IAAnBmB,EAAJ,CAIA,IAKIC,EAAWC,EAAUC,EAsBrBC,EA3BAC,EAASR,EAAItB,EAAKf,MAAQ4B,EAAcW,EAAId,EAC5CqB,EAAY/B,EAAKf,MAAQwC,EAEzBO,EAAQhC,EAAKT,OAAO0C,OAAO5B,GAyB/B,GAtBI2B,EAAME,SAAW,GAEI,IAAnBF,EAAME,SAERR,EAAYM,EAAMG,SAGlBtE,EAAQmE,EAAMI,YAAaJ,EAAMK,aAAcL,EAAMM,eAAgBN,EAAMO,OAAQzB,EAAOO,EAAiBrB,EAAKT,OAAOD,UACvHoC,EAAYL,GAEdM,EAAW,GAIXC,EAF0B,IAAnBI,EAAME,SAEA,EAIAF,EAAMO,OAIjBrC,EACF,IAAKkB,EAAK,EAAGA,EAAKG,EAAiBH,IAAM,CAMvC,IALa,EAATU,IAEFD,EAAW3B,EAAW4B,GAAU,GAChCD,IAAsB,EAATC,GAEVX,EAAK,EAAGA,EAAKM,EAAgBN,IACjB,EAATW,IAEJD,EAAW3B,EAAW4B,GAAU,IAEnB,IAAXD,GAEErC,IACFA,EAAWsC,GAAU,GAGvBzC,EAAWA,GADXe,EAAgB4B,EAAME,SAAW,EAAKR,EAAUC,KAAcC,GACzBxB,EAAef,EACpDD,EAAa0C,KAAY1B,IAGrBZ,IACFA,EAAWsC,GAAU,GAEvB1C,EAAa0C,KAAYpD,GAE3BmD,IAAa,EAEfC,GAAUC,CACZ,MAGA,GAAIC,EAAME,SAAW,EAGnB,IAAKd,EAAK,EAAGA,EAAKG,EAAiBH,IAAM,CACvC,IAAKD,EAAK,EAAGA,EAAKM,EAAgBN,IAEhC9B,EAAWA,GADXe,EAAesB,EAAUC,MACYvB,EAAef,EACpDD,EAAa0C,KAAY1B,EAE3B0B,GAAUC,CACZ,MAKA,IADA1C,EAAWA,EAAWuC,EAAaA,EAAavC,EAC3C+B,EAAK,EAAGA,EAAKG,EAAiBH,IAAM,CACvC,IAAKD,EAAK,EAAGA,EAAKM,EAAgBN,IAChC/B,EAAa0C,KAAYF,EAE3BE,GAAUC,CACZ,CAGJ,GAAwB,IAAnBC,EAAME,UAAoBP,IAAaK,EAAMM,eAChD,KAAM,8BAERjC,GAzFA,CA0FF,CACF,CAEA,MAAO,CACLjB,aAAcA,EACdI,WAAYA,EACZH,SAAUA,EAEd,EAEI3B,EAAiB,SAASsC,GAC5B,MAAO,CACL,qBAAwBA,EAAKwC,qBAC7B,YAAexC,EAAKyC,YACpB,UAAazC,EAAK0C,UAClB,OAAU1C,EAAKd,OACf,MAASc,EAAKf,MACd,UAAae,EAAKe,UAClB,UAAaf,EAAK2C,UAClB,KAAQ3C,EAAKL,KAAO,CAClB,WAAcK,EAAKL,KAAKY,WACxB,WAAcP,EAAKL,KAAKc,WACxB,SAAYT,EAAKL,KAAKiD,SACtB,SAAY5C,EAAKL,KAAKL,UACpB,KACJ,OAAU,CACR,WAAcU,EAAKT,OAAOgB,WAC1B,WAAcP,EAAKT,OAAOkB,WAC1B,SAAYT,EAAKT,OAAOqD,SACxB,SAAY5C,EAAKT,OAAOD,SACxB,YAAeU,EAAKtB,aAG1B,EAEIf,EAAuB,SAASqC,GAGlC,IAFA,IAAI6C,EAAY7C,EAAKT,OAAOgB,WAAaP,EAAKT,OAAOkB,WACjDV,EAAY,CAAC,EACR+C,EAAI,EAAGA,EAAID,EAAWC,IAAK,CAClC,IAAId,EAAQhC,EAAKT,OAAO0C,OAAOa,GACR,IAAnBd,EAAME,SACRnC,EAAUgD,SAAU,EACQ,IAAnBf,EAAME,SACfnC,EAAUiC,EAAMK,eAAgB,EAEhCtC,EAAU,IAAK,CAEnB,CAEA,OAAOiD,OAAOC,KAAKlD,EACrB,EAEInC,EAAQ,SAASQ,EAAO8E,EAAI5E,GAC9B,IAAI0B,EAAO,CAAC,EAGRmD,EAAa,IAAIjC,WAAW9C,EAAO8E,EAAI,IAE3C,GADAlD,EAAKwC,qBAAuBY,OAAOC,aAAaC,MAAM,KAAMH,GACnB,cAArCnD,EAAKwC,qBAAqBe,OAC5B,KAAM,sCAAwCvD,EAAKwC,qBAErDU,GAAM,GACN,IAAIM,EAAO,IAAIC,SAASrF,EAAO8E,EAAI,IASnC,GARAlD,EAAKyC,YAAce,EAAKE,SAAS,GAAG,GACpC1D,EAAK0C,UAAYc,EAAKE,SAAS,GAAG,GAClC1D,EAAKd,OAASsE,EAAKG,UAAU,GAAG,GAChC3D,EAAKf,MAAQuE,EAAKG,UAAU,IAAI,GAChC3D,EAAKe,UAAYyC,EAAKI,WAAW,IAAI,GACrCV,GAAM,IAGD5E,EAUH,GATAkF,EAAO,IAAIC,SAASrF,EAAO8E,EAAI,IAC/BlD,EAAKL,KAAO,CAAC,EACbK,EAAKL,KAAKc,WAAa+C,EAAKG,UAAU,GAAG,GACzC3D,EAAKL,KAAKY,WAAaiD,EAAKG,UAAU,GAAG,GACzC3D,EAAKL,KAAKiD,SAAWY,EAAKG,UAAU,GAAG,GACvC3D,EAAKL,KAAKL,SAAWkE,EAAKK,WAAW,IAAI,GACzCX,GAAM,GAGFlD,EAAKL,KAAKiD,SAAW,EAAG,CAC1B,IAAIhD,EAAS,IAAIsB,WAAWP,KAAKmD,KAAK9D,EAAKf,MAAQe,EAAKd,OAAS,IAE7D6E,GADJP,EAAO,IAAIC,SAASrF,EAAO8E,EAAIlD,EAAKL,KAAKiD,WAC1BoB,SAAS,GAAG,GACvBC,EAAK,EAAGC,EAAK,EACjB,EAAG,CACD,GAAIH,EAAM,EACR,KAAOA,KAASnE,EAAOsE,KAAQV,EAAKW,SAASF,SACxC,CACL,IAAIG,EAAMZ,EAAKW,SAASF,KAExB,IADAF,GAAOA,EACAA,KAASnE,EAAOsE,KAAQE,CACjC,CACAL,EAAMP,EAAKQ,SAASC,GAAI,GACxBA,GAAM,CACR,OAASA,EAAKjE,EAAKL,KAAKiD,UACxB,IAAc,QAATmB,GAAoBG,EAAKtE,EAAOyE,OACnC,KAAM,sCAERrE,EAAKL,KAAKC,OAASA,EACnBsD,GAAMlD,EAAKL,KAAKiD,QAClB,MACU5C,EAAKL,KAAKiD,SAAW5C,EAAKL,KAAKc,WAAaT,EAAKL,KAAKL,WAC9DU,EAAKL,KAAKC,OAAS,IAAIsB,WAAWP,KAAKmD,KAAK9D,EAAKf,MAAQe,EAAKd,OAAS,KAK3EsE,EAAO,IAAIC,SAASrF,EAAO8E,EAAI,IAC/BlD,EAAKT,OAAS,CAAC,EACfS,EAAKT,OAAOkB,WAAa+C,EAAKG,UAAU,GAAG,GAC3C3D,EAAKT,OAAOgB,WAAaiD,EAAKG,UAAU,GAAG,GAC3C3D,EAAKT,OAAOqD,SAAWY,EAAKG,UAAU,GAAG,GACzC3D,EAAKT,OAAOD,SAAWkE,EAAKK,WAAW,IAAI,GAC3CX,GAAM,GAEN,IAAI3C,EAAaP,EAAKT,OAAOgB,WACzBE,EAAaT,EAAKT,OAAOkB,WAIzB6D,EAAmB/D,GAAeP,EAAKf,MAAQsB,EAAc,EAAI,EAAI,GACrEgE,EAAmB9D,GAAeT,EAAKd,OAASuB,EAAc,EAAI,EAAI,GAC1ET,EAAKT,OAAO0C,OAAS,IAAIuC,MAAMF,EAAmBC,GAElD,IADA,IAAIE,EAAS,EACJC,EAAS,EAAGA,EAASH,EAAkBG,IAC9C,IAAK,IAAIC,EAAS,EAAGA,EAASL,EAAkBK,IAAU,CAGxD,IAAIC,EAAO,EACPC,EAAYzG,EAAM0G,WAAa5B,EACnCM,EAAO,IAAIC,SAASrF,EAAO8E,EAAIvC,KAAKoE,IAAI,GAAIF,IAC5C,IAAI7C,EAAQ,CAAC,EACbhC,EAAKT,OAAO0C,OAAOwC,KAAYzC,EAC/B,IAAIgD,EAAaxB,EAAKW,SAAS,GAE/B,GAFmCS,IACnC5C,EAAME,SAAwB,GAAb8C,EACbhD,EAAME,SAAW,EACnB,KAAM,2BAA6BF,EAAME,SAAW,IAEtD,GAAuB,IAAnBF,EAAME,SAAV,CAIA,GAAoB,IAAf8C,GAAqC,IAAfA,EAAmB,CAG5C,GAFAA,IAAe,EACfhD,EAAMiD,WAAaD,EACA,IAAfA,EACFhD,EAAMO,OAASiB,EAAK0B,QAAQ,GAAIN,SAC3B,GAAmB,IAAfI,EACThD,EAAMO,OAASiB,EAAKQ,SAAS,GAAG,GAAOY,GAAQ,MAC1C,IAAmB,IAAfI,EAGT,KAAM,4BAFNhD,EAAMO,OAASiB,EAAKK,WAAW,GAAG,GAAOe,GAAQ,CAGnD,CAEA,GAAuB,IAAnB5C,EAAME,SAKR,GAJA8C,EAAaxB,EAAKW,SAASS,GAAOA,IAClC5C,EAAMK,aAA4B,GAAb2C,EACrBA,IAAe,EACfhD,EAAMmD,mBAAqBH,EACR,IAAfA,EACFhD,EAAMM,eAAiBkB,EAAKW,SAASS,GAAOA,SACvC,GAAmB,IAAfI,EACThD,EAAMM,eAAiBkB,EAAK4B,UAAUR,GAAM,GAAOA,GAAQ,MACtD,IAAmB,IAAfI,EAGT,KAAM,iCAFNhD,EAAMM,eAAiBkB,EAAKG,UAAUiB,GAAM,GAAOA,GAAQ,CAG7D,CAEJ,CAOA,IAAIS,EAJJ,GAFAnC,GAAM0B,EAEiB,IAAnB5C,EAAME,SAKV,GAAuB,IAAnBF,EAAME,SAAgB,CACxB,IAAIoD,GAAatF,EAAKT,OAAOqD,SAAW,GAAK,EAC7C,GAAI0C,IAAc3E,KAAKC,MAAM0E,GAC3B,KAAM,wCAERD,EAAW,IAAIE,YAAwB,EAAZD,GAClB,IAAIpE,WAAWmE,GACjBG,IAAI,IAAItE,WAAW9C,EAAO8E,EAAgB,EAAZoC,IACrC,IAAInD,EAAU,IAAIrD,aAAauG,GAC/BrD,EAAMG,QAAUA,EAChBe,GAAkB,EAAZoC,CACR,MAAO,GAAuB,IAAnBtD,EAAME,SAAgB,CAC/B,IAAIuD,EAAY9E,KAAKmD,KAAK9B,EAAMM,eAAiBN,EAAMK,aAAe,GAClEqD,EAAY/E,KAAKmD,KAAK2B,EAAY,GACtCJ,EAAW,IAAIE,YAAwB,EAAZG,GAClB,IAAIxE,WAAWmE,GACjBG,IAAI,IAAItE,WAAW9C,EAAO8E,EAAIuC,IACrCzD,EAAMI,YAAc,IAAIuD,YAAYN,GACpCnC,GAAMuC,CACR,CAxDA,MAFEvC,GA2DJ,CAGF,OADAlD,EAAK2C,UAAYO,EACVlD,CACT,EAEInC,EAAU,SAAS+H,EAAKvD,EAAciD,EAAW/C,EAAQzB,EAAO+E,EAAMvG,GACxE,IACWwG,EAEPC,EAAGC,EAHHC,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAEXC,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAEvCsF,EAAmC,EAAbR,EAAIvB,OAAa1D,KAAKmD,KAAKzB,EAAeiD,EAAY,GAGhF,IAFAM,EAAIA,EAAIvB,OAAS,KAAO,EAAI+B,EAEvBN,EAAI,EAAGA,EAAIR,EAAWQ,IAAK,CAK9B,GAJiB,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,EACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,MACP,CACL,IAAIgE,EAAehE,EAAe6D,EAClCH,GAAMC,EAASC,IAAYI,EAAeJ,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,EAElB,CAEAR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,CAC5C,CACA,OAAOuG,CACT,EA9aE7H,EAgbKR,EAILS,EAAc,WAChB,aAOA,IAAIqI,EAGO,SAASV,EAAKC,EAAMxD,EAAciD,EAAWiB,EAAQhE,EAAQzB,EAAOxB,GAC3E,IACWwG,EAEPC,EAAGC,EAAQK,EAAaF,EAHxBF,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAIXE,EAAmC,EAAbR,EAAIvB,OAAa1D,KAAKmD,KAAKzB,EAAeiD,EAAY,GAEhF,GADAM,EAAIA,EAAIvB,OAAS,KAAO,EAAI+B,EACxBG,EACF,IAAKT,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,GACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,IAIZ0D,GAAMC,EAASC,KADfI,EAAehE,EAAe6D,GACYD,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,IAGlBR,EAAKC,GAAKS,EAAOR,QAKnB,IADAI,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAClCgF,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,GACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,IAIZ0D,GAAMC,EAASC,KADfI,EAAehE,EAAe6D,GACYD,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,IAIlBR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,CAGhD,EAtDEgH,EAyFQ,SAASV,EAAKC,EAAMxD,EAAciD,EAAWiB,EAAQhE,EAAQzB,EAAOxB,GAC5E,IACWwG,EAEPC,EAAGC,EAAQK,EAHXJ,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAAGM,EAAS,EAE3B,GAAID,EACF,IAAKT,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,GACXM,EAAS,GAEPN,GAAY7D,GACd0D,EAAMC,IAAWQ,EAAUP,EAC3BC,GAAY7D,EACZmE,GAAUnE,IAGV0D,EAAKC,IAAWQ,EAAUP,EAE1BC,EAAW,IAHXG,EAAehE,EAAe6D,GAI9BH,KAFAC,EAASJ,EAAI9C,OAEI,GAAKuD,GAAe,IAAQhE,EAAegE,EAC5DG,EAASH,GAEXR,EAAKC,GAAKS,EAAOR,OAGhB,CACH,IAAII,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAC3C,IAAKgF,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,GACXM,EAAS,GAEPN,GAAY7D,GAEd0D,EAAMC,IAAWQ,EAAUP,EAC3BC,GAAY7D,EACZmE,GAAUnE,IAGV0D,EAAKC,IAAWQ,EAAUP,EAE1BC,EAAW,IAHXG,EAAehE,EAAe6D,GAI9BH,KAFAC,EAASJ,EAAI9C,OAEI,GAAKuD,GAAe,IAAQhE,EAAegE,EAC5DG,EAASH,GAGXR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,CAE9C,CACA,OAAOuG,CACT,EAmGEY,EAAe,CACjBC,qBAAsB,GACtBC,0BAA2B,SAASvI,GAMlC,IAJA,IAAIwI,EAAO,MAAQC,EAAO,MACtBC,EAAM1I,EAAMiG,OACZ0C,EAAQpG,KAAKC,MAAMkG,EAAM,GACzBhE,EAAI,EACDiE,GAAO,CACZ,IAAIC,EAAQD,GAAS,IAAO,IAAMA,EAClCA,GAASC,EACT,GACEJ,GAASxI,EAAM0E,MAAQ,EACvB+D,GAAQD,GAAQxI,EAAM0E,aACbkE,GAEXJ,GAAe,MAAPA,IAAkBA,IAAS,IACnCC,GAAe,MAAPA,IAAkBA,IAAS,GACrC,CAUA,OAPU,EAANC,IACFD,GAAQD,GAASxI,EAAM0E,IAAM,KAI/B+D,GAAe,MAAPA,IAAkBA,IAAS,MAEnB,IAHhBD,GAAe,MAAPA,IAAkBA,IAAS,QAGJ,CACjC,EAEAK,eAAgB,SAAS7I,EAAO4B,GAC9B,IAAIkH,EAAMlH,EAAKkH,IACX/D,EAAa,IAAIjC,WAAW9C,EAAO8I,EAAK,GACxCC,EAAa,CAAC,EAElB,GADAA,EAAW3E,qBAAuBY,OAAOC,aAAaC,MAAM,KAAMH,GACF,IAA5DgE,EAAW3E,qBAAqB4E,YAAY,QAAS,GACvD,KAAM,sDAAwDD,EAAW3E,qBAE3E0E,GAAO,EACP,IAmCcG,EAnCV7D,EAAO,IAAIC,SAASrF,EAAO8I,EAAK,GAChCzE,EAAce,EAAKE,SAAS,GAAG,GAmCnC,GAlCAyD,EAAW1E,YAAcA,EACzByE,GAAO,EACHzE,GAAe,IACjB0E,EAAWG,SAAW9D,EAAKG,UAAU,GAAG,GACxCuD,GAAO,GAIT1D,EAAO,IAAIC,SAASrF,EAAO8I,EAAK,IAChCC,EAAWjI,OAASsE,EAAKG,UAAU,GAAG,GACtCwD,EAAWlI,MAAQuE,EAAKG,UAAU,GAAG,GACrCuD,GAAO,EACHzE,GAAe,GACjB0E,EAAWI,QAAU/D,EAAKG,UAAU,GAAG,GACvCuD,GAAO,GAGPC,EAAWI,QAAU,EAGvB/D,EAAO,IAAIC,SAASrF,EAAO8I,EAAK,IAChCC,EAAWK,cAAgBhE,EAAKG,UAAU,GAAG,GAC7CwD,EAAWM,eAAiBjE,EAAKE,SAAS,GAAG,GAC7CyD,EAAWO,SAAWlE,EAAKE,SAAS,GAAG,GACvCyD,EAAWzE,UAAYc,EAAKE,SAAS,IAAI,GAEzCyD,EAAWpG,UAAYyC,EAAKI,WAAW,IAAI,GAC3CuD,EAAWQ,KAAOnE,EAAKI,WAAW,IAAI,GACtCuD,EAAWS,KAAOpE,EAAKI,WAAW,IAAI,GACtCsD,GAAO,GACPlH,EAAKmH,WAAaA,EAClBnH,EAAKkH,IAAMA,EAGPzE,GAAe,IACjB4E,EAAY5E,GAAe,EAAI,GAAK,GACzBoF,KAAKlB,0BAA0B,IAAIzF,WAAW9C,EAAO8I,EAAMG,EAAWF,EAAWO,SAAW,OACtFP,EAAWG,UAC1B,KAAM,mBAGV,OAAO,CACT,EAEAQ,kBAAmB,SAAS1J,EAAO4B,GACjC,IAAImH,EAAanH,EAAKmH,WAClBY,EAAoBF,KAAKG,iBAAiBb,EAAWzE,WACrDuF,EAAad,EAAWI,QAAUM,KAAKK,gBAAgBf,EAAWzE,WAClEyF,EAAYN,KAAKO,aAAahK,EAAO4B,EAAKkH,IAAKa,EAAmBE,GAClEI,EAAYR,KAAKO,aAAahK,EAAO4B,EAAKkH,IAAMe,EAAYF,EAAmBE,GACnFjI,EAAKkH,KAAQ,EAAIe,EACjB,IAAInF,EAAGwF,GAAQ,EACf,IAAKxF,EAAI,EAAGA,EAAIqE,EAAWI,QAASzE,IAClC,GAAIqF,EAAUrF,KAAOuF,EAAUvF,GAAI,CACjCwF,GAAQ,EACR,KACF,CAIF,OAFAnB,EAAWgB,UAAYA,EACvBhB,EAAWkB,UAAYA,EAChBC,CACT,EAEAF,aAAc,SAAShK,EAAO8I,EAAKa,EAAmBnF,GACpD,IAAIT,EACJ,GAAI4F,IAAsB7G,WACxBiB,EAAU,IAAIjB,WAAW9C,EAAO8I,EAAKtE,OAElC,CACH,IAAIyC,EAAW,IAAIE,YAAY3C,GAClB,IAAI1B,WAAWmE,GACrBG,IAAI,IAAItE,WAAW9C,EAAO8I,EAAKtE,IACtCT,EAAU,IAAI4F,EAAkB1C,EAClC,CACA,OAAOlD,CACT,EAEAoG,SAAU,SAASnK,EAAO4B,GACxB,IAcIJ,EAAQJ,EAdR0H,EAAMlH,EAAKkH,IACXC,EAAanH,EAAKmH,WAClB7B,EAAY6B,EAAWlI,MAAQkI,EAAWjI,OAC1CsI,EAAgBL,EAAWK,cAE3BhE,EAAO,IAAIC,SAASrF,EAAO8I,EAAK,GAChCvH,EAAO,CAAC,EAKZ,GAJAA,EAAKiD,SAAWY,EAAKG,UAAU,GAAG,GAClCuD,GAAO,GAGF,IAAMM,GAAiBlC,IAAckC,IAAkB,IAAM7H,EAAKiD,SACrE,KAAM,eAGR,GAAsB,IAAlB4E,EACF5H,EAAS,IAAIsB,WAAWP,KAAKmD,KAAKwB,EAAY,IAC9C3F,EAAKC,OAASA,EACdJ,EAAa,IAAI0B,WAAWoE,GAC5BtF,EAAKT,OAAOC,WAAaA,EACzB0H,GAAOvH,EAAKiD,cAET,GAAIjD,EAAKiD,SAAW,EAAG,CAC1BhD,EAAS,IAAIsB,WAAWP,KAAKmD,KAAKwB,EAAY,IAE9C,IAAIvB,GADJP,EAAO,IAAIC,SAASrF,EAAO8I,EAAKvH,EAAKiD,WACtBoB,SAAS,GAAG,GACvBC,EAAK,EAAGC,EAAK,EAAGE,EAAM,EAC1B,EAAG,CACD,GAAIL,EAAM,EACR,KAAOA,KAASnE,EAAOsE,KAAQV,EAAKW,SAASF,UAI7C,IAFAG,EAAMZ,EAAKW,SAASF,KACpBF,GAAOA,EACAA,KAASnE,EAAOsE,KAAQE,EAEjCL,EAAMP,EAAKQ,SAASC,GAAI,GACxBA,GAAM,CACR,OAASA,EAAKtE,EAAKiD,UACnB,IAAc,QAATmB,GAAoBG,EAAKtE,EAAOyE,OACnC,KAAM,sCAGR7E,EAAa,IAAI0B,WAAWoE,GAC5B,IAAIkD,EAAK,EAAGC,EAAI,EAEhB,IAAKA,EAAI,EAAGA,EAAInD,EAAWmD,IACjB,EAAJA,GACFD,EAAK5I,EAAO6I,GAAK,GACjBD,IAAW,EAAJC,GAGPD,EAAK5I,EAAO6I,GAAK,GAEV,IAALD,IACFhJ,EAAWiJ,GAAK,GAGpBzI,EAAKT,OAAOC,WAAaA,EAEzBG,EAAKC,OAASA,EACdsH,GAAOvH,EAAKiD,QACd,CAGA,OAFA5C,EAAKkH,IAAMA,EACXlH,EAAKL,KAAOA,GACL,CACT,EAEA+I,iBAAkB,SAAStK,EAAO4B,EAAM+H,EAAmBY,GACzD,IAOIxG,EAPA+E,EAAMlH,EAAKkH,IACXC,EAAanH,EAAKmH,WAClBI,EAAUJ,EAAWI,QACrBjC,EAAY6B,EAAWlI,MAAQkI,EAAWjI,OAC1CwD,EAAYyE,EAAWzE,UACvBE,EAAWuE,EAAWK,cAAgBf,EAAayB,gBAAgBxF,GAAa6E,EAGhF5H,EAAOK,EAAKT,OAAOC,WACvB,GAAIuI,IAAsB7G,WACxBiB,EAAU,IAAIjB,WAAW9C,EAAO8I,EAAKtE,OAElC,CACH,IAAIyC,EAAW,IAAIE,YAAY3C,GAClB,IAAI1B,WAAWmE,GACrBG,IAAI,IAAItE,WAAW9C,EAAO8I,EAAKtE,IACtCT,EAAU,IAAI4F,EAAkB1C,EAClC,CACA,GAAIlD,EAAQkC,SAAWiB,EAAYiC,EAE/BvH,EAAKT,OAAOH,aADVuJ,EACyBlC,EAAamC,mBAAmBzG,EAASmD,EAAWiC,EAASQ,GAAmB,GAGhF5F,MAI/B,CACEnC,EAAKT,OAAOH,aAAe,IAAI2I,EAAkBzC,EAAYiC,GAC7D,IAAIsB,EAAI,EAAGJ,EAAI,EAAG3F,EAAI,EAAGgG,EAAS,EAClC,GAAIvB,EAAU,GACZ,GAAIoB,GACF,IAAKF,EAAI,EAAGA,EAAInD,EAAWmD,IACzB,GAAI9I,EAAK8I,GAEP,IADAK,EAASL,EACJ3F,EAAI,EAAGA,EAAIyE,EAASzE,IAAKgG,GAAQxD,EACpCtF,EAAKT,OAAOH,aAAa0J,GAAU3G,EAAQ0G,UAMjD,IAAKJ,EAAI,EAAGA,EAAInD,EAAWmD,IACzB,GAAI9I,EAAK8I,GAEP,IADAK,EAASL,EAAIlB,EACRzE,EAAI,EAAGA,EAAIyE,EAASzE,IACvB9C,EAAKT,OAAOH,aAAa0J,EAAShG,GAAKX,EAAQ0G,UAOvD,IAAKJ,EAAI,EAAGA,EAAInD,EAAWmD,IACrB9I,EAAK8I,KACPzI,EAAKT,OAAOH,aAAaqJ,GAAKtG,EAAQ0G,KAI9C,CAGA,OAFA3B,GAAOtE,EACP5C,EAAKkH,IAAMA,GACJ,CACT,EAEA6B,gBAAiB,SAAS3K,EAAO4B,GAC/B,IAAIgJ,EAAWnB,KAAKnB,qBAKhBlD,EAAO,IAAIC,SAASrF,EAAO4B,EAAKkH,IAAK,IAGzC,GAFAlH,EAAKkH,KAAO,GACE1D,EAAKE,SAAS,GAAG,GACjB,EACZ,KAAM,8BAER,IAAIkB,EAAOpB,EAAKE,SAAS,GAAG,GACxBuF,EAAKzF,EAAKE,SAAS,GAAG,GACtBwF,EAAK1F,EAAKE,SAAS,IAAI,GAC3B,GAAIuF,GAAMC,EACR,OAAO,EAET,IAAI7H,EAAkB,IAAIsE,YAAYuD,EAAKD,GAC3CxC,EAAa0C,WAAW/K,EAAO4B,EAAMqB,GACrC,IACIyB,EAAGsG,EAAGX,EAAG3B,EADTuC,EAAY,GAGhB,IAAKvG,EAAImG,EAAInG,EAAIoG,EAAIpG,IAEnBuG,EADAD,EAAItG,GAAKA,EAAI8B,EAAO,EAAIA,IACT,CAAE0E,MAAOjI,EAAgByB,EAAImG,GAAKM,OAAQ,MAG3D,IAAI9D,EAAYrH,EAAM0G,WAAa9E,EAAKkH,IACpCxB,EAAY/E,KAAKmD,KAAK2B,EAAY,GAClCJ,EAAW,IAAIE,YAAwB,EAAZG,GAClB,IAAIxE,WAAWmE,GACrBG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKzB,IAC3C,IACgB+D,EADZpH,EAAc,IAAIuD,YAAYN,GAC9BmB,EAAS,EAASiD,EAAS,EAE/B,IADAD,EAAOpH,EAAY,GACdU,EAAImG,EAAInG,EAAIoG,EAAIpG,KAEnBgE,EAAMuC,EADND,EAAItG,GAAKA,EAAI8B,EAAO,EAAIA,IACL0E,OACT,IACRD,EAAUD,GAAGG,OAAUC,GAAQhD,IAAa,GAAKM,EAE7C,GAAKN,GAAUM,EAEF,MADfN,GAAUM,KAERN,EAAS,EAETgD,EAAOpH,IADPqH,KAKFjD,GAAUM,EAAM,GAEhB0C,EAAOpH,IADPqH,GAEAJ,EAAUD,GAAGG,QAAUC,IAAU,GAAKhD,IAU5C,IAAoBkD,EAAhBC,EAAa,EACbC,EAAO,IAAIC,EACf,IAAK/G,EAAI,EAAGA,EAAIuG,EAAUhF,OAAQvB,SACXgH,IAAjBT,EAAUvG,KACZ6G,EAAahJ,KAAKoJ,IAAIJ,EAAYN,EAAUvG,GAAGwG,QAIjDI,EADEC,GAAcX,EACCA,EAGAW,EAMnB,IAAoBK,EAAOC,EAAMC,EAAYC,EAAgBC,EAAzDC,EAAY,GAChB,IAAKvH,EAAImG,EAAInG,EAAIoG,EAAIpG,IAGnB,IADAgE,EAAMuC,EADND,EAAItG,GAAKA,EAAI8B,EAAO,EAAIA,IACL0E,OACT,EAER,GADAU,EAAQ,CAAClD,EAAKsC,GACVtC,GAAO4C,EAGT,IAFAO,EAAOZ,EAAUD,GAAGG,QAAWG,EAAiB5C,EAChDoD,EAAa,GAAMR,EAAiB5C,EAC/B2B,EAAI,EAAGA,EAAIyB,EAAYzB,IAC1B4B,EAAUJ,EAAOxB,GAAKuB,OAOxB,IAFAC,EAAOZ,EAAUD,GAAGG,OACpBa,EAAOR,EACFO,EAAKrD,EAAM,EAAGqD,GAAM,EAAGA,IACbF,IAASE,EAAK,GAEpBC,EAAKE,QACRF,EAAKE,MAAQ,IAAIT,GAEnBO,EAAOA,EAAKE,QAGPF,EAAKG,OACRH,EAAKG,KAAO,IAAIV,GAElBO,EAAOA,EAAKG,MAEH,IAAPJ,GAAaC,EAAKhG,MACpBgG,EAAKhG,IAAM4F,EAAM,IAM3B,MAAO,CACLK,UAAWA,EACXX,eAAgBA,EAChBC,WAAYA,EACZC,KAAMA,EACNxH,YAAaA,EACbqH,OAAQA,EACRjD,OAAQA,EAEZ,EAEAgE,YAAa,SAASpM,EAAO4B,EAAM+H,EAAmBY,GACpD,IAsBIyB,EAAMhG,EAAKqG,EAAsCC,EAAQC,EACzD7H,EAAGsG,EAAGX,EAAGmC,EAtBTrD,EADavH,EAAKmH,WACGI,QACrBrI,EAASc,EAAKmH,WAAWjI,OACzBD,EAAQe,EAAKmH,WAAWlI,MACxBqG,EAAYrG,EAAQC,EAKpB2L,EAAchD,KAAKkB,gBAAgB3K,EAAO4B,GAC1CqK,EAAYQ,EAAYR,UACxBT,EAAOiB,EAAYjB,KAEnBxH,EAAcyI,EAAYzI,YAC1BqH,EAASoB,EAAYpB,OACrBjD,EAASqE,EAAYrE,OACrBkD,EAAiBmB,EAAYnB,eAC7BC,EAAakB,EAAYlB,WACzBpH,EAAuC,IAA9BvC,EAAKmH,WAAWzE,UAAkB,IAAM,EAI/B/C,EAAOK,EAAKT,OAAOC,WAErCsL,EAAU,EACVtE,EAAS,IACXiD,IACAjD,EAAS,GAEX,IAIIuE,EAJAvB,EAAOpH,EAAYqH,GACnBuB,EAAkC,IAApBhL,EAAKiL,WACnBC,EAAqB,IAAInD,EAAkBzC,EAAYiC,GACvDnI,EAAe8L,EAGnB,GAAI3D,EAAU,GAAKyD,GACjB,IAAKD,EAAO,EAAGA,EAAOxD,EAASwD,IAM7B,GALIxD,EAAU,IAEZnI,EAAe,IAAI2I,EAAkBmD,EAAmBlF,OAAQV,EAAYyF,EAAMzF,GAClFwF,EAAU,GAER9K,EAAKmH,WAAWK,gBAAkBvI,EAAQC,EAC5C,IAAKuJ,EAAI,EAAG3F,EAAI,EAAGA,EAAI5D,EAAQ4D,IAC7B,IAAKsG,EAAI,EAAGA,EAAInK,EAAOmK,IAAKX,IAAK,CAQ/B,GAPArE,EAAM,EAENuG,EADAD,EAAUlB,GAAQhD,IAAa,GAAKkD,EAEhC,GAAKlD,EAASkD,IAEhBiB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASkD,GAGtDW,EAAUM,GAEZvG,EAAMiG,EAAUM,GAAa,GAC7BnE,GAAU6D,EAAUM,GAAa,QAUjC,IANAA,EADAD,EAAUlB,GAAQhD,IAAa,GAAKmD,EAEhC,GAAKnD,EAASmD,IAEhBgB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASmD,GAG1DS,EAAOR,EACFgB,EAAK,EAAGA,EAAKjB,EAAYiB,IAG5B,KADAR,EADaM,IAAYf,EAAaiB,EAAK,EAAK,EAC5BR,EAAKE,MAAQF,EAAKG,MAC3BA,OAAQH,EAAKE,MAAQ,CAC9BlG,EAAMgG,EAAKhG,IACXoC,EAASA,EAASoE,EAAK,EACvB,KACF,CAIApE,GAAU,KACZA,GAAU,GAEVgD,EAAOpH,IADPqH,IAIFgB,EAAQrG,EAAM7B,EACVyI,GAEAP,GADErB,EAAI,EACG0B,EAEFhI,EAAI,EACF1D,EAAaqJ,EAAIxJ,GAGjB6L,EAEXL,GAAS,IACTrL,EAAaqJ,GAAKgC,EAClBK,EAAUL,GAGVrL,EAAaqJ,GAAKgC,CAEtB,MAIF,IAAKhC,EAAI,EAAG3F,EAAI,EAAGA,EAAI5D,EAAQ4D,IAC7B,IAAKsG,EAAI,EAAGA,EAAInK,EAAOmK,IAAKX,IAC1B,GAAI9I,EAAK8I,GAAI,CAQX,GAPArE,EAAM,EAENuG,EADAD,EAAUlB,GAAQhD,IAAa,GAAKkD,EAEhC,GAAKlD,EAASkD,IAEhBiB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASkD,GAGtDW,EAAUM,GAEZvG,EAAMiG,EAAUM,GAAa,GAC7BnE,GAAU6D,EAAUM,GAAa,QAUjC,IANAA,EADAD,EAAUlB,GAAQhD,IAAa,GAAKmD,EAEhC,GAAKnD,EAASmD,IAEhBgB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASmD,GAG1DS,EAAOR,EACFgB,EAAK,EAAGA,EAAKjB,EAAYiB,IAG5B,KADAR,EADaM,IAAYf,EAAaiB,EAAK,EAAK,EAC5BR,EAAKE,MAAQF,EAAKG,MAC3BA,OAAQH,EAAKE,MAAQ,CAC9BlG,EAAMgG,EAAKhG,IACXoC,EAASA,EAASoE,EAAK,EACvB,KACF,CAIApE,GAAU,KACZA,GAAU,GAEVgD,EAAOpH,IADPqH,IAIFgB,EAAQrG,EAAM7B,EACVyI,GACE5B,EAAI,GAAKzJ,EAAK8I,EAAI,GACpBgC,GAASK,EAEFhI,EAAI,GAAKnD,EAAK8I,EAAIxJ,GACzBwL,GAASrL,EAAaqJ,EAAIxJ,GAG1BwL,GAASK,EAGXL,GAAS,IACTrL,EAAaqJ,GAAKgC,EAClBK,EAAUL,GAGVrL,EAAaqJ,GAAKgC,CAEtB,OAOR,IAAKhC,EAAI,EAAG3F,EAAI,EAAGA,EAAI5D,EAAQ4D,IAC7B,IAAKsG,EAAI,EAAGA,EAAInK,EAAOmK,IAErB,GADAX,EAAI3F,EAAI7D,EAAQmK,GACXzJ,GAAQA,EAAK8I,GAChB,IAAKsC,EAAO,EAAGA,EAAOxD,EAASwD,IAAQtC,GAAGnD,EAAW,CAQnD,GAPAlB,EAAM,EAENuG,EADAD,EAAUlB,GAAQhD,IAAa,GAAKkD,EAEhC,GAAKlD,EAASkD,IAEhBiB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASkD,GAGtDW,EAAUM,GAEZvG,EAAMiG,EAAUM,GAAa,GAC7BnE,GAAU6D,EAAUM,GAAa,QAUjC,IANAA,EADAD,EAAUlB,GAAQhD,IAAa,GAAKmD,EAEhC,GAAKnD,EAASmD,IAEhBgB,EADAD,GAAYtI,EAAYqH,EAAS,KAAS,GAAKjD,EAASmD,GAG1DS,EAAOR,EACFgB,EAAK,EAAGA,EAAKjB,EAAYiB,IAG5B,KADAR,EADaM,IAAYf,EAAaiB,EAAK,EAAK,EAC5BR,EAAKE,MAAQF,EAAKG,MAC3BA,OAAQH,EAAKE,MAAQ,CAC9BlG,EAAMgG,EAAKhG,IACXoC,EAASA,EAASoE,EAAK,EACvB,KACF,CAIApE,GAAU,KACZA,GAAU,GAEVgD,EAAOpH,IADPqH,IAIFgB,EAAQrG,EAAM7B,EACdnD,EAAaqJ,GAAKgC,CACpB,CAKRzK,EAAKkH,IAAMlH,EAAKkH,IAAqB,GAAduC,EAAS,IAAUjD,EAAS,EAAI,EAAI,GAC3DxG,EAAKT,OAAOH,aAAe8L,EAEvB3D,EAAU,IAAMoB,IAClB3I,EAAKT,OAAOH,aAAeqH,EAAamC,mBAAmBsC,EAAoB5F,EAAWiC,EAASQ,GAEvG,EAEAoB,WAAY,SAAS/K,EAAO4B,EAAMqB,EAAiBkB,EAAQwI,GAGvD,IAAI5D,EAAanH,EAAKmH,WAClB1E,EAAc0E,EAAW1E,YAEzBd,EAAW,EACXwJ,EAAmB/M,EAAM0G,WAAa9E,EAAKkH,KAAQ,EAAK,EAAK9I,EAAM0G,WAAa9E,EAAKkH,IACrF1D,EAAO,IAAIC,SAASrF,EAAO4B,EAAKkH,IAAKiE,GACrCnG,EAAaxB,EAAKW,SAAS,GAC/BxC,IACA,IAAIyJ,EAASpG,GAAc,EACvBe,EAAgB,IAAXqF,EAAgB,EAAI,EAAIA,EAC7BC,GAAsB,GAAbrG,GAAmB,EAC5BsG,EAAuB,GAAbtG,EACVuG,EAAc,EAClB,GAAU,IAANxF,EACFwF,EAAc/H,EAAKW,SAASxC,GAAWA,SAClC,GAAU,IAANoE,EACTwF,EAAc/H,EAAK4B,UAAUzD,GAAU,GAAOA,GAAY,MACrD,IAAU,IAANoE,EAGT,KAAM,iCAFNwF,EAAc/H,EAAKG,UAAUhC,GAAU,GAAOA,GAAY,CAG5D,CAGA,IACIS,EAAaiD,EAAUmG,EAAQ/F,EAAWC,EAC1Ca,EAAQkF,EAASC,EAA6BrJ,EAF9CvB,EAAQ,EAAIqG,EAAWpG,UAGvB6G,EAAOT,EAAWI,QAAU,EAAIJ,EAAWkB,UAAU0C,GAAQ5D,EAAWS,KAC5E,GAAIyD,EAAO,CAiBT,IAhBArL,EAAK2L,QAAQC,MACbF,EAAWlI,EAAKW,SAASxC,GAEzBA,IACA8D,EAAY9E,KAAKmD,MAAM4H,EAAW,GAAKJ,EAAU,GACjD5F,EAAY/E,KAAKmD,KAAK2B,EAAY,GAClCJ,EAAW,IAAIE,YAAwB,EAAZG,GAC3B8F,EAAS,IAAItK,WAAWmE,GAExBrF,EAAKkH,KAAOvF,EACZ6J,EAAOhG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKzB,IAE3CgG,EAAU,IAAI9F,YAAYN,GAC1BrF,EAAKkH,KAAOzB,EAEZpD,EAAe,EACPqJ,EAAW,IAAOrJ,GACxBA,IAEFoD,EAAY9E,KAAKmD,KAAKyH,EAAclJ,EAAe,GACnDqD,EAAY/E,KAAKmD,KAAK2B,EAAY,GAClCJ,EAAW,IAAIE,YAAwB,EAAZG,IAC3B8F,EAAS,IAAItK,WAAWmE,IACjBG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKzB,IAC3CrD,EAAc,IAAIuD,YAAYN,GAC9BrF,EAAKkH,KAAOzB,EAEVc,EADE9D,GAAe,EA9vBZ,SAASmD,EAAKvD,EAAciD,EAAW/C,EAAQzB,EAAOxB,GACjE,IAEI0G,EAFAC,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EAAGgD,EAAI,EAAGO,EAAc,EAAGH,EAAW,EAAGH,EAAI,EAAGS,EAAS,EAE7DX,EAAO,GACPM,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAC3C,IAAKgF,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,GACXM,EAAS,GAEPN,GAAY7D,GAEd0D,EAAMC,IAAWQ,EAAUP,EAC3BC,GAAY7D,EACZmE,GAAUnE,IAGV0D,EAAKC,IAAWQ,EAAUP,EAE1BC,EAAW,IAHXG,EAAehE,EAAe6D,GAI9BH,KAFAC,EAASJ,EAAI9C,OAEI,GAAKuD,GAAe,IAAQhE,EAAegE,EAC5DG,EAASH,GAGXR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,EAG5C,OADAuG,EAAKgG,QAAQtJ,GACNsD,CACT,CAiuBiBS,CAAuBmF,EAASH,EAASI,EAAW,EAAGnJ,EAAQzB,EAAO8G,GAv1B3E,SAAShC,EAAKvD,EAAciD,EAAW/C,EAAQzB,EAAOxB,GAChE,IAEI0G,EAFAC,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EAAGgD,EAAI,EAAGO,EAAc,EAAGH,EAAW,EAAGH,EAAI,EAEjDF,EAAO,GAGPO,EAAmC,EAAbR,EAAIvB,OAAa1D,KAAKmD,KAAKzB,EAAeiD,EAAY,GAChFM,EAAIA,EAAIvB,OAAS,KAAO,EAAI+B,EAE5B,IAAID,EAAOxF,KAAKmD,MAAMxE,EAAWiD,GAAUzB,GAC3C,IAAKgF,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,GACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,IAGZ0D,GAAMC,EAASC,KADfI,EAAehE,EAAe6D,GACYD,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,IAIlBR,EAAKC,GAAKC,EAAII,EAAO5D,EAASwD,EAAIjF,EAAQxB,EAG5C,OADAuG,EAAKgG,QAAQtJ,GACNsD,CACT,CA2zBiBS,CAAsBmF,EAASH,EAASI,EAAW,EAAGnJ,EAAQzB,EAAO8G,GAG5EnF,GAAe,EAEjB6D,EAAoBlE,EAAaf,EAAiBgB,EAAckJ,EAAahF,GAG7ED,EAAmBlE,EAAaf,EAAiBgB,EAAckJ,EAAahF,EAEhF,MAGEvG,EAAK2L,QAAQG,aACbzJ,EAAeiJ,EACftL,EAAKkH,KAAOvF,EACRU,EAAe,IACjBoD,EAAY9E,KAAKmD,KAAKyH,EAAclJ,EAAe,GACnDqD,EAAY/E,KAAKmD,KAAK2B,EAAY,GAClCJ,EAAW,IAAIE,YAAwB,EAAZG,IAC3B8F,EAAS,IAAItK,WAAWmE,IACjBG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKzB,IAC3CrD,EAAc,IAAIuD,YAAYN,GAC9BrF,EAAKkH,KAAOzB,EACRhD,GAAe,EACH,MAAVF,EA5tBI,SAASqD,EAAKC,EAAMxD,EAAciD,GAClD,IACWQ,EAEPC,EAAGC,EAAQK,EAHXJ,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAAGM,EAAS,EAG3B,IAAKV,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,GACXM,EAAS,GAEPN,GAAY7D,GAEd0D,EAAMC,IAAWQ,EAAUP,EAC3BC,GAAY7D,EACZmE,GAAUnE,IAGV0D,EAAKC,IAAWQ,EAAUP,EAE1BC,EAAW,IAHXG,EAAehE,EAAe6D,GAI9BH,KAFAC,EAASJ,EAAI9C,OAEI,GAAKuD,GAAe,IAAQhE,EAAegE,EAC5DG,EAASH,GAEXR,EAAKC,GAAKC,CAGd,CAisBYO,CAA4BlE,EAAaf,EAAiBgB,EAAckJ,GAGxEjF,EAAoBlE,EAAaf,EAAiBgB,EAAckJ,GAAa,EAAOhJ,EAAQzB,EAAO8G,GAIvF,MAAVrF,EAnwBG,SAASqD,EAAKC,EAAMxD,EAAciD,GACjD,IACWQ,EAEPC,EAAGC,EAAQK,EAHXJ,GAAW,GAAK5D,GAAgB,EAChCS,EAAI,EACJoD,EAAW,EAIXE,EAAmC,EAAbR,EAAIvB,OAAa1D,KAAKmD,KAAKzB,EAAeiD,EAAY,GAGhF,IAFAM,EAAIA,EAAIvB,OAAS,KAAO,EAAI+B,EAEvBN,EAAI,EAAGA,EAAIR,EAAWQ,IACR,IAAbI,IACFF,EAASJ,EAAI9C,KACboD,EAAW,IAETA,GAAY7D,GACd0D,EAAKC,IAAYE,EAAW7D,EAAiB4D,EAC7CC,GAAY7D,IAIZ0D,GAAMC,EAASC,KADfI,EAAehE,EAAe6D,GACYD,EAG1CF,IAFAC,EAASJ,EAAI9C,SACboD,EAAW,GAAKG,IAGlBR,EAAKC,GAAKC,CAGd,CAuuBYO,CAA2BlE,EAAaf,EAAiBgB,EAAckJ,GAGvEjF,EAAmBlE,EAAaf,EAAiBgB,EAAckJ,GAAa,EAAOhJ,EAAQzB,EAAO8G,GAO9G,EAEAmE,UAAW,SAAS3N,EAAO4B,EAAM+H,EAAmBY,GAClD,IAAIxB,EAAanH,EAAKmH,WAClBlI,EAAQkI,EAAWlI,MACnBC,EAASiI,EAAWjI,OACpBoG,EAAYrG,EAAQC,EACpBuI,EAAiBN,EAAWM,eAC5B/E,EAAYyE,EAAWzE,UACvBsJ,EAAevF,EAAayB,gBAAgBxF,GAC5CnC,EAAaI,KAAKmD,KAAK7E,EAAQwI,GAC/BhH,EAAaE,KAAKmD,KAAK5E,EAASuI,GACpCzH,EAAKT,OAAOkB,WAAaA,EACzBT,EAAKT,OAAOgB,WAAaA,EACzBP,EAAKT,OAAO2H,IAAM,EAClB,IACI1D,EAAMxB,EAAOqD,EAAkBlD,EAC/B8J,EAIAhH,EAAY1C,EACkBwI,EAK9BmB,EAGAC,EAfAC,EAAM,EAAGC,EAAM,EAAG3H,EAAS,EAAGC,EAAS,EAAGpD,EAAkB,EAAGE,EAAiB,EAAGoD,EAAY,EAAGG,EAAa,EAAGoG,EAAS,EAAiBtJ,EAAS,EAAGC,EAAY,EAAGa,EAAW,EAAG0J,EAAY,EAAGzD,EAAI,EAAGlH,EAAW,EAGtNN,EAAkB,IAAI0G,EAAkBN,EAAiBA,GACzD8E,EAAmBrN,EAASuI,GAAmBA,EAC/C+E,EAAkBvN,EAAQwI,GAAmBA,EAE7CF,EAAUJ,EAAWI,QACrB5H,EAAOK,EAAKT,OAAOC,WACnBJ,EAAeY,EAAKT,OAAOH,aAE3BqN,EADctF,EAAW1E,aACY,EAAI,GAAK,GAE9CmF,EAAOT,EAAWS,KAGtB,IAAKlD,EAAS,EAAGA,EAASjE,EAAYiE,IAEpC,IADAnD,EAAmBmD,IAAWjE,EAAa,EAAKgH,EAAiB8E,EAC5D5H,EAAS,EAAGA,EAASpE,EAAYoE,IAOpC,IAHA7C,EAAS4C,EAASzF,EAAQwI,EAAiB9C,EAAS8C,EACpD1F,EAAY9C,GAHZwC,EAAkBkD,IAAWpE,EAAa,EAAKkH,EAAiB+E,GAK3DzB,EAAO,EAAGA,EAAOxD,EAASwD,IAAQ,CAkBrC,GAjBIxD,EAAU,GACZ4E,EAAsB/M,EACtB0C,EAAS4C,EAASzF,EAAQwI,EAAiB9C,EAAS8C,EACpDrI,EAAe,IAAI2I,EAAkB/H,EAAKT,OAAOH,aAAa4G,OAAQV,EAAYyF,EAAOiB,EAAc1G,GACvGsC,EAAOT,EAAWkB,UAAU0C,IAE5BoB,EAAsB,KAExBtH,EAAYzG,EAAM0G,WAAa9E,EAAKkH,IAEpClF,EAAQ,CAAC,EACTL,EAAW,EACXqD,GAHAxB,EAAO,IAAIC,SAASrF,EAAO4B,EAAKkH,IAAKvG,KAAKoE,IAAI,GAAIF,KAGhCV,SAAS,GAC3BxC,IACAuK,EAAiB/E,EAAW1E,aAAe,EAAiB,EAAbuC,EAAiB,EAChEoG,EAAUpG,GAAc,EAAK,KACjBA,GAAc,EAAKyH,KACX9H,EAAS8C,GAAmB,EAAKgF,GACnD,KAAM,kBAGR,GAAIP,GAA2B,IAATnB,EACpB,KAAM,kBAIR,IADAkB,EAA6B,EAAbjH,GACI,EAElB,MADAhF,EAAKkH,KAAOvF,EACN,2BAA6BsK,EAAgB,IAEhD,GAAsB,IAAlBA,EAyBJ,GAAsB,IAAlBA,EAAqB,CAC5B,GAAIC,EAEF,KAAM,kBAaR,GAXAlM,EAAK2L,QAAQe,eACb1M,EAAKkH,KAAOvF,EAGZiB,GAFAA,EAAWrB,EAAkBE,EAAiBuK,IAC9CM,EAAYlO,EAAM0G,WAAa9E,EAAKkH,KACFtE,EAAW0J,EAE7CjH,EAAW,IAAIE,YAAa3C,EAAWoJ,GAAkB,EAAIpJ,EAAYA,EAAWoJ,EAAepJ,EAAWoJ,GACrG,IAAI9K,WAAWmE,GACjBG,IAAI,IAAItE,WAAW9C,EAAO4B,EAAKkH,IAAKtE,IAC3CT,EAAU,IAAI4F,EAAkB1C,GAChCwD,EAAI,EACAlJ,EACF,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUK,EAAQ0G,MAEjC/G,IAEFA,GAAUC,CACZ,MAGA,IAAKqK,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,KAAYK,EAAQ0G,KAEnC/G,GAAUC,CACZ,CAEF/B,EAAKkH,KAAO2B,EAAImD,CAClB,MAKE,GAHA/G,EAAawB,EAAakG,gBAAiBT,GAAkBxJ,EAAY,EAAK,EAAIA,EAAW0I,GAC7F7I,EAASkE,EAAamG,YAAY5K,EAAOL,EAAUsD,EAAYzB,GAC/D7B,GAAY8E,EAAayB,gBAAgBjD,GACnB,IAAlBgH,EAMF,GAJAjM,EAAKkH,KAAOvF,EACZ3B,EAAK2L,QAAQkB,iBAGTlN,EACF,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUoK,EAAiBvL,KAAKoE,IAAI6C,EAAMuE,EAAoBrK,GAAUS,GAAUA,GAEjGT,IAEFA,GAAUC,CACZ,MAGA,IAAKqK,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,GAAUoK,EAAiBvL,KAAKoE,IAAI6C,EAAMuE,EAAoBrK,GAAUS,GAAUA,EAC/FT,IAEFA,GAAUC,CACZ,MASF,GALA/B,EAAKkH,KAAOvF,EAEZ8E,EAAa0C,WAAW/K,EAAO4B,EAAMqB,EAAiBkB,EAAQwI,GAC9DpJ,EAAW,EAEPuK,EACF,GAAIvM,EACF,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUT,EAAgBM,KAAcwK,EAAoBrK,IAE3EA,IAEFA,GAAUC,CACZ,MAGA,IAAKqK,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,GAAUT,EAAgBM,KAAcwK,EAAoBrK,GACzEA,IAEFA,GAAUC,CACZ,MAGC,GAAIpC,EACP,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUT,EAAgBM,MAEzCG,IAEFA,GAAUC,CACZ,MAGA,IAAKqK,EAAM,EAAGA,EAAM7K,EAAiB6K,IAAO,CAC1C,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,KAAYT,EAAgBM,KAE3CG,GAAUC,CACZ,KA1ID,CACH,GAAImK,EACF,GAAIvM,EACF,IAAKyM,EAAM,EAAGA,EAAM7K,EAAiB6K,IACnC,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAC9B1M,EAAKmC,KACP1C,EAAa0C,GAAUqK,EAAoBrK,IAE7CA,SAKJ,IAAKsK,EAAM,EAAGA,EAAM7K,EAAiB6K,IACnC,IAAKC,EAAM,EAAGA,EAAM5K,EAAgB4K,IAClCjN,EAAa0C,GAAUqK,EAAoBrK,GAC3CA,IAKR9B,EAAK2L,QAAQmB,WACb9M,EAAKkH,KAAOvF,CAuHd,CACF,CAIA4F,EAAU,IAAMoB,IAClB3I,EAAKT,OAAOH,aAAeqH,EAAamC,mBAAmB5I,EAAKT,OAAOH,aAAckG,EAAWiC,EAASQ,GAE7G,EAMArK,eAAgB,SAASsC,GACvB,MAAO,CACL,qBAAwBA,EAAKmH,WAAW3E,qBACxC,YAAexC,EAAKmH,WAAW1E,YAC/B,UAAazC,EAAKmH,WAAWzE,UAC7B,OAAU1C,EAAKmH,WAAWjI,OAC1B,MAASc,EAAKmH,WAAWlI,MACzB,cAAiBe,EAAKmH,WAAWK,cACjC,eAAkBxH,EAAKmH,WAAWM,eAClC,SAAYzH,EAAKmH,WAAWO,SAC5B,UAAa1H,EAAKmH,WAAWpG,UAC7B,UAAa0F,EAAasG,aAAa/M,EAAKmH,WAAWzE,WACvD,UAAa1C,EAAK2C,UAClB,KAAQ3C,EAAKL,KAAO,CAClB,SAAYK,EAAKL,KAAKiD,UACpB,KACJ,OAAU,CACR,WAAc5C,EAAKT,OAAOgB,WAC1B,WAAcP,EAAKT,OAAOkB,WAE1B,SAAYT,EAAKmH,WAAWS,KAC5B,SAAY5H,EAAKmH,WAAWQ,KAC5B,YAAe3H,EAAKtB,aAG1B,EAEAsO,yBAA0B,SAAShN,EAAM2I,GACvC,IAAIvE,EAAMpE,EAAKmH,WAAWS,KACtBqF,EAASjN,EAAKmH,WAAWQ,KACzBU,EAAYrI,EAAKmH,WAAWkB,UAC5Bd,EAAUvH,EAAKmH,WAAWI,QAC1BjC,EAAYtF,EAAKmH,WAAWjI,OAASc,EAAKmH,WAAWlI,MACrD6D,EAAI,EAAG2F,EAAI,EAAGK,EAAS,EACvBnJ,EAAOK,EAAKT,OAAOC,WACnBJ,EAAeY,EAAKT,OAAOH,aAC/B,GAAIO,EACF,GAAI4H,EAAU,GACZ,GAAIoB,EACF,IAAK7F,EAAI,EAAGA,EAAIyE,EAASzE,IAGvB,IAFAgG,EAAShG,EAAIwC,EACblB,EAAMiE,EAAUvF,GACX2F,EAAI,EAAGA,EAAInD,EAAWmD,IACrB9I,EAAK8I,KACPrJ,EAAa0J,EAASL,GAAKrE,QAMjC,IAAKqE,EAAI,EAAGA,EAAInD,EAAWmD,IACzB,GAAI9I,EAAK8I,GAEP,IADAK,EAASL,EAAIlB,EACRzE,EAAI,EAAGA,EAAIyE,EAASzE,IACvB1D,EAAa0J,EAASvB,GAAWc,EAAUvF,QAOnD,IAAK2F,EAAI,EAAGA,EAAInD,EAAWmD,IACrB9I,EAAK8I,KACPrJ,EAAaqJ,GAAKrE,QAMxB,GAAImD,EAAU,GAAK0F,IAAW7I,EAC5B,GAAIuE,EACF,IAAK7F,EAAI,EAAGA,EAAIyE,EAASzE,IAGvB,IAFAgG,EAAShG,EAAIwC,EACblB,EAAMiE,EAAUvF,GACX2F,EAAI,EAAGA,EAAInD,EAAWmD,IACzBrJ,EAAa0J,EAASL,GAAKrE,OAK/B,IAAKqE,EAAI,EAAGA,EAAInD,EAAWmD,IAEzB,IADAK,EAASL,EAAIlB,EACRzE,EAAI,EAAGA,EAAIyE,EAASzE,IACvB1D,EAAa0J,EAAShG,GAAKuF,EAAUvF,QAM3C,IAAK2F,EAAI,EAAGA,EAAInD,EAAYiC,EAASkB,IACnCrJ,EAAaqJ,GAAKrE,CAK1B,EAEA4D,iBAAkB,SAASkF,GACzB,IAAIC,EACJ,OAAQD,GACN,KAAK,EACHC,EAAKC,UACL,MACF,KAAK,EACHD,EAAKjM,WACL,MACF,KAAK,EACHiM,EAAKE,WACL,MACF,KAAK,EACHF,EAAKG,YACL,MACF,KAAK,EACHH,EAAKI,WACL,MACF,KAAK,EACHJ,EAAKxH,YACL,MACF,KAAK,EAML,QACEwH,EAAKrO,mBAJP,KAAK,EACHqO,EAAKK,aAKT,OAAOL,CACT,EAEAJ,aAAc,SAASG,GACrB,IAAIC,EACJ,OAAQD,GACN,KAAK,EACHC,EAAK,KACL,MACF,KAAK,EACHA,EAAK,KACL,MACF,KAAK,EACHA,EAAK,MACL,MACF,KAAK,EACHA,EAAK,MACL,MACF,KAAK,EACHA,EAAK,MACL,MACF,KAAK,EACHA,EAAK,MACL,MACF,KAAK,EAML,QACEA,EAAK,YAJP,KAAK,EACHA,EAAK,MAKT,OAAOA,CACT,EAEAM,kBAAmB,SAASP,EAAG9I,GAC7B,GAAW,MAAPA,EACF,OAAO,EAET,IAAIsJ,EACJ,OAAQR,GACN,KAAK,EACHQ,EAAUtJ,IAAQ,KAAOA,GAAO,IAChC,MACF,KAAK,EACHsJ,EAAUtJ,GAAO,GAAKA,GAAO,IAC7B,MACF,KAAK,EACHsJ,EAAUtJ,IAAQ,OAASA,GAAO,MAClC,MACF,KAAK,EACHsJ,EAAUtJ,GAAO,GAAKA,GAAO,MAC7B,MACF,KAAK,EACHsJ,EAAUtJ,IAAQ,YAAcA,GAAO,WACvC,MACF,KAAK,EACHsJ,EAAUtJ,GAAO,GAAKA,GAAO,WAC7B,MACF,KAAK,EACHsJ,EAAUtJ,IAAQ,sBAA0BA,GAAO,qBACnD,MACF,KAAK,EACHsJ,EAAUtJ,IAAQ,uBAA2BA,GAAO,sBACpD,MACF,QACEsJ,GAAU,EAEd,OAAOA,CACT,EAEAxF,gBAAiB,SAASgF,GACxB,IAAIS,EAAI,EACR,OAAQT,GACN,KAAK,EACL,KAAK,EACHS,EAAI,EACJ,MACF,KAAK,EACL,KAAK,EACHA,EAAI,EACJ,MACF,KAAK,EACL,KAAK,EACL,KAAK,EACHA,EAAI,EACJ,MACF,KAAK,EACHA,EAAI,EACJ,MACF,QACEA,EAAIT,EAER,OAAOS,CACT,EAEAhB,gBAAiB,SAASiB,EAAIC,GAC5B,IAAIX,EAAIU,EACR,OAAQA,GACN,KAAK,EACL,KAAK,EACHV,EAAIU,EAAKC,EACT,MACF,KAAK,EACL,KAAK,EACHX,EAAIU,EAAK,EAAIC,EACb,MACF,KAAK,EAEDX,EADE,IAAMW,EACJD,EAEG,IAAMC,EACT,EAGA,EAEN,MACF,KAAK,EAEDX,EADE,IAAMW,EACJD,EAGAA,EAAK,EAAIC,EAAK,EAEpB,MACF,QACEX,EAAIU,EAGR,OAAOV,CACT,EAEAN,YAAa,SAAS5K,EAAOL,EAAUsD,EAAYzB,GACjD,IAAIsK,EAAO,EACX,OAAQ7I,GACN,KAAK,EACH6I,EAAOtK,EAAK0B,QAAQvD,GACpB,MACF,KAAK,EACHmM,EAAOtK,EAAKW,SAASxC,GACrB,MACF,KAAK,EACHmM,EAAOtK,EAAKQ,SAASrC,GAAU,GAC/B,MACF,KAAK,EACHmM,EAAOtK,EAAK4B,UAAUzD,GAAU,GAChC,MACF,KAAK,EACHmM,EAAOtK,EAAKE,SAAS/B,GAAU,GAC/B,MACF,KAAK,EACHmM,EAAOtK,EAAKuK,UAAUpM,GAAU,GAChC,MACF,KAAK,EACHmM,EAAOtK,EAAKK,WAAWlC,GAAU,GACjC,MACF,KAAK,EACHmM,EAAOtK,EAAKI,WAAWjC,GAAU,GACjC,MACF,QACE,KAAM,kDAEV,OAAOmM,CACT,EAEAlF,mBAAoB,SAASrJ,EAAQ+F,EAAWiC,EAASQ,EAAmBiG,GAC1E,IAAIlL,EAAI,EAAGsG,EAAI,EAAG2B,EAAO,EAAG+C,EAAO,EAAGG,EAAO1O,EAC7C,GAAIgI,EAAU,EAEZ,GADA0G,EAAO,IAAIlG,EAAkBzC,EAAYiC,GACrCyG,EACF,IAAKlL,EAAE,EAAGA,EAAEwC,EAAWxC,IAErB,IADAgL,EAAOhL,EACFiI,EAAK,EAAGA,EAAOxD,EAASwD,IAAQ+C,GAAQxI,EAC3C2I,EAAKH,GAAQvO,EAAO6J,UAKxB,IAAKtG,EAAE,EAAGA,EAAEwC,EAAWxC,IAErB,IADAgL,EAAOhL,EACFiI,EAAK,EAAGA,EAAOxD,EAASwD,IAAQ+C,GAAQxI,EAC3C2I,EAAK7E,KAAO7J,EAAOuO,GAK3B,OAAOG,CACT,GAMEpE,EAAW,SAASzF,EAAKmG,EAAMD,GACjCzC,KAAKzD,IAAMA,EACXyD,KAAK0C,KAAOA,EACZ1C,KAAKyC,MAAQA,CACf,EAiMA,MA/LkB,CAoChB4D,OAAQ,SAAwB9P,EAAkBC,GAGhD,IAAIK,GADJL,EAAUA,GAAW,CAAC,GACIK,YAGtBoE,EAAI,EAAG9C,EAAO,CAAC,EAKnB,GAJAA,EAAKkH,IAAM7I,EAAQI,aAAe,EAClCuB,EAAKT,OAAS,CAAC,EAGVkH,EAAaQ,eAAe7I,EAAO4B,GAAxC,CAIA,IAAImH,EAAanH,EAAKmH,WAClB1E,EAAc0E,EAAW1E,YACzBsF,EAAoBtB,EAAauB,iBAAiBb,EAAWzE,WAGjE,GAAID,EAAc,EAChB,KAAM,8BAAgCA,EAIxCgE,EAAa8B,SAASnK,EAAO4B,GACzBmH,EAAWK,gBAAkBL,EAAWlI,MAAQkI,EAAWjI,QAAWc,EAAKT,OAAOC,aACpFQ,EAAKT,OAAOC,WAAanB,EAAQoB,UAGnC,IAAI6F,EAAY6B,EAAWlI,MAAQkI,EAAWjI,OAC9Cc,EAAKT,OAAOH,aAAe,IAAI2I,EAAkBzC,EAAY6B,EAAWI,SAExEvH,EAAK2L,QAAU,CACbwC,SAAU,EACVzB,aAAc,EACdd,IAAK,EACLE,WAAY,EACZgB,SAAU,EACVD,eAAgB,GAElB,IAgDIuB,EAhDAzF,GAAsBtK,EAAQgQ,2BAClC,GAAiC,IAA7BlH,EAAWK,cAEb,GAAIL,EAAWS,OAAST,EAAWQ,KAEjClB,EAAauG,yBAAyBhN,EAAM2I,QAEzC,GAAIlG,GAAe,GAAKgE,EAAaqB,kBAAkB1J,EAAO4B,GACjEyG,EAAauG,yBAAyBhN,EAAM2I,OAEzC,CACH,IAAInF,EAAO,IAAIC,SAASrF,EAAO4B,EAAKkH,IAAK,GACrCoH,EAAoB9K,EAAKW,SAAS,GAEtC,GADAnE,EAAKkH,MACDoH,EAEF7H,EAAaiC,iBAAiBtK,EAAO4B,EAAM+H,EAAmBY,QAM9D,GAAIlG,EAAc,GAAK0E,EAAWzE,WAAa,GAAK/B,KAAK4N,IAAIpH,EAAWpG,UAAY,IAAO,KAAS,CAElG,IAAIyN,EAAchL,EAAKW,SAAS,GAGhC,GAFAnE,EAAKkH,MACLlH,EAAKiL,WAAauD,EACdA,EAAc,GAAM/L,EAAc,GAAK+L,EAAc,EACvD,KAAM,wBAA0BA,EAE9BA,EAEF/H,EAAa+D,YAAYpM,EAAO4B,EAAM+H,EAAmBY,GAIzDlC,EAAasF,UAAU3N,EAAO4B,EAAM+H,EAAmBY,EAE3D,MAGElC,EAAasF,UAAU3N,EAAO4B,EAAM+H,EAAmBY,EAG7D,CAGF3I,EAAK2C,UAAY3C,EAAKkH,IAElB7I,EAAQI,aACV2P,EAAOpO,EAAKmH,WAAWO,SAAWrJ,EAAQI,YAAcuB,EAAKkH,IACzDvG,KAAK4N,IAAIH,IAAS,IAEpBpO,EAAK2C,UAAYtE,EAAQI,YAAcuB,EAAKmH,WAAWO,YAIzD0G,EAAOpO,EAAKmH,WAAWO,SAAW1H,EAAKkH,IACnCvG,KAAK4N,IAAIH,IAAS,IAEpBpO,EAAK2C,UAAY3C,EAAKmH,WAAWO,WAIrC,IAAI1I,EAAS,CACXC,MAAOkI,EAAWlI,MAClBC,OAAQiI,EAAWjI,OACnBC,UAAWa,EAAKT,OAAOH,aACvBC,SAAU8H,EAAWQ,KACrBrI,SAAU6H,EAAWS,KACrB6G,gBAAiBtH,EAAWK,cAC5BkH,SAAUvH,EAAWI,QACrBoH,SAAU,CACRxG,UAAWhB,EAAWgB,UACtBE,UAAWlB,EAAWkB,WAExB5I,SAAUO,EAAKT,OAAOC,YAMxB,GAAIQ,EAAKT,OAAOC,YAAciH,EAAagH,kBAAkBtG,EAAWzE,UAAWhE,GAAc,CAC/F,IAAIiB,EAAOK,EAAKT,OAAOC,WACvB,IAAKsD,EAAI,EAAGA,EAAIwC,EAAWxC,IACpBnD,EAAKmD,KACR9D,EAAOG,UAAU2D,GAAKpE,GAG1BM,EAAON,YAAcA,CACvB,CAKA,OAJAsB,EAAKtB,YAAcA,EACfL,EAAQwB,iBACVb,EAAOc,SAAW2G,EAAa/I,eAAesC,IAEzChB,CA3HP,CA4HF,EAEA4P,aAAc,SAAwBxQ,GAMpC,IALA,IAAIyQ,EAAQ,EACR/L,EAAI,EACJgL,EAAO,CACXA,IAAW,EACXA,OAAc,CAAC,GACRhL,EAAI1E,EAAM0G,WAAa,IAC5B2B,EAAaQ,eAAe7I,EAAO0P,GACnChL,GAAKgL,EAAK3G,WAAWO,SACrBmH,IACAf,EAAK5G,IAAMpE,EAEb,OAAO+L,CACT,EAIH,CAhrDiB,GAmrDZ/Q,EAAI,IAAIyH,YAAY,GACpBxH,EAAI,IAAImD,WAAWpD,GACf,IAAI6H,YAAY7H,GACtB,GAAK,EAJLI,EAKc,IAATH,EAAE,GAGPI,EAAO,CAoBT+P,OAAQ,SAASY,EAAazQ,GAC5B,IAAKH,EACH,KAAM,sCAGR,IAGI6Q,EAAMC,EAHNvQ,GADJJ,EAAUA,GAAW,CAAC,GACII,aAAe,EACrC0E,EAAa,IAAIjC,WAAW4N,EAAarQ,EAAa,IACtD+D,EAAuBY,OAAOC,aAAaC,MAAM,KAAMH,GAE3D,GAAoC,cAAhCX,EAAqBe,OACvBwL,EAAO/Q,EACPgR,EAAe,MAEZ,IAA6C,UAAzCxM,EAAqByM,UAAU,EAAG,GAKzC,KAAM,sCAAwCzM,EAJ9CuM,EAAO9Q,EACP+Q,EAAe,CAIjB,CAaA,IAXA,IAAmDzQ,EAAiC2Q,EAAUzP,EAqD1FqD,EAAGsG,EAAG9D,EArDN6J,EAAS,EAAGC,EAAMN,EAAYhK,WAAa,GAAqBuK,EAAY,GAC5EC,EAAoB,CACtBrQ,MAAO,EACPC,OAAQ,EACRK,OAAQ,GACRV,UAAWR,EAAQQ,UACnBc,KAAM,KACN4P,WAAY,IAEVC,EAAsB,EAEnB/Q,EAAc2Q,GAAK,CACxB,IAAIpQ,EAAS+P,EAAKb,OAAOY,EAAa,CACpCrQ,YAAaA,EACbF,gBAAiBA,EACjBkB,SAAUA,EACVV,WAAuB,IAAXoQ,EACZzP,kBAA8B,IAAXyP,EACnBtP,gBAAgB,EAChBwO,2BAA4BhQ,EAAQgQ,2BACpCxP,UAAWR,EAAQQ,WAAa,KAChCH,YAAaL,EAAQK,aAAe,OAGtCD,EAAcO,EAAOc,SAAS6C,UAC9BlD,EAAWT,EAAOS,SACH,IAAX0P,IACF5Q,EAAkBS,EAAOT,gBACzB+Q,EAAkBrQ,MAAQD,EAAOC,MACjCqQ,EAAkBpQ,OAASF,EAAOE,OAClCoQ,EAAkBZ,SAAW1P,EAAO0P,UAAY,EAEhDY,EAAkBzQ,UAAYG,EAAOH,WAAaG,EAAOc,SAASjB,UAClEyQ,EAAkB3P,KAAOF,GAEvBuP,EAAe,IACbvP,GACF4P,EAAUI,KAAKhQ,GAEbT,EAAOc,SAASH,MAAQX,EAAOc,SAASH,KAAKiD,SAAW,GAC1D4M,KAIJL,IACAG,EAAkB/P,OAAOkQ,KAAKzQ,EAAOG,WACrCmQ,EAAkBC,WAAWE,KAAK,CAChCpQ,SAAUL,EAAOK,SACjBC,SAAUN,EAAOM,SACjBZ,YAAaM,EAAON,YACpBiQ,SAAU3P,EAAO2P,UAErB,CAEA,GAAIK,EAAe,GAAKQ,EAAsB,EAAG,CAK/C,IAJAlK,EAAYgK,EAAkBrQ,MAAQqQ,EAAkBpQ,OACxDoQ,EAAkBD,UAAYA,GAC9B5P,EAAW,IAAIyB,WAAWoE,IACjBE,IAAI6J,EAAU,IAClBvM,EAAI,EAAGA,EAAIuM,EAAUhL,OAAQvB,IAEhC,IADAoM,EAAWG,EAAUvM,GAChBsG,EAAI,EAAGA,EAAI9D,EAAW8D,IACzB3J,EAAS2J,GAAK3J,EAAS2J,GAAK8F,EAAS9F,GAGzCkG,EAAkB7P,SAAWA,CAC/B,CAEA,OAAO6P,CACT,QAMsC,KAA3B,EAAF,WAAe,OAAOnR,CAAO,UAA/B,OAA+B,2GC9vE1C,IAAIuR,EACAC,EACAC,EAEJ,MAAMC,EAAgB,CAErBC,IAAK,CAEJC,gCAAiC,SAAWC,GAE3CJ,EAAO,IAAI1O,WAAYyO,EAASM,QAAQC,OAAOlK,OAEhD,IAwGImK,EAAO,0lsCCvHN,MAAMC,EAAO,UD0BnBV,IAAAA,GAEC,OAAKA,IAMJA,EAJqB,oBAAVW,MAIJA,MAAO,gCAAkCF,GAC9CG,MAAQC,GAAcA,EAASC,gBAC/BF,MAAQE,GAAiBC,YAAYC,YAAaF,EAAaX,KAC/DS,KAAMzI,KAAK8I,OAMNF,YACLC,YAAaE,OAAOC,KAAMV,EAAM,UAAYN,GAC5CS,KAAMzI,KAAK8I,OAIPjB,EAER,CAEAiB,KAAAA,CAAQ3R,GAEP2Q,EAAW3Q,EAAO2Q,SAElBE,EAAcC,IAAIC,gCAAiC,EAEpD,CAEA7B,MAAAA,CAAS4C,EAAmBC,EAAmB,GAE9C,IAAOpB,EAAW,MAAM,IAAIqB,MAAO,+CAGnC,MAAMC,EAAiBH,EAAMhM,WACvBoM,EAAgBvB,EAASM,QAAQkB,OAAQF,GAC/CrB,EAAKpK,IAAKsL,EAAOI,GAGjBH,EAAmBA,GAAoB/P,OAAQ2O,EAASM,QAAQmB,0BAA2BF,EAAeD,IAC1G,MAAMI,EAAkB1B,EAASM,QAAQkB,OAAQJ,GAC3CO,EAAa3B,EAASM,QAAQsB,gBAAiBF,EAAiBN,EAAkBG,EAAeD,GAGjGO,EAAM5B,EAAK6B,MAAOJ,EAAiBA,EAAkBC,GAI3D,OAHA3B,EAASM,QAAQyB,KAAMR,GACvBvB,EAASM,QAAQyB,KAAML,GAEhBG,CAER,GChFc,MAAMG,UAAoB,IACvC,WAAAC,CAAYC,GACVC,QAEAjK,KAAKkK,yBAAmE,IAAtCF,EAAcG,oBAAsCH,EAAcG,oBAAsB,EAC1HnK,KAAKoK,qBAA2D,IAAlCJ,EAAcK,gBAAkCL,EAAcK,gBAAkB,EAE9GrK,KAAKsK,eAAiBN,EAAcO,eAAe,KAAeC,eACpE,CAEA,WAAAC,CAAYtM,GACV,OAAQ6B,KAAKsK,gBACX,KAAK,KAAmBI,KACtB,MACF,KAAK,KAAmBC,QACtBxM,GAAS,QAAQ,IAAI9E,WAAW8E,IAASA,OACzC,MACF,KAAK,KAAmByM,UACtBzM,EAASoK,EAAKlC,OAAO,IAAIhN,WAAW8E,IAASA,OAC7C,MACF,QACE,MAAM,IAAIgL,MAAM,8DAA8DnJ,KAAKsK,kBAKvF,OAFmB,SAAYnM,EAAQ,CAAEqI,2BAAyD,IAA7BxG,KAAKkK,sBAC9CxS,OAAO,GACnByG,MAClB","sources":["webpack://ipyopenlayers/./node_modules/lerc/LercDecode.js","webpack://ipyopenlayers/./node_modules/zstddec/zstddec.ts","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/lerc.js"],"sourcesContent":["/* jshint forin: false, bitwise: false */\n/*\nCopyright 2015-2021 Esri\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n\nA copy of the license and additional notices are located with the\nsource distribution at:\n\nhttp://github.com/Esri/lerc/\n\nContributors: Johannes Schmid, (LERC v1)\n Chayanika Khatua, (LERC v1)\n Wenxue Ju (LERC v1, v2.x)\n*/\n\n/* Copyright 2015-2021 Esri. Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @preserve */\n\n/**\n * a module for decoding LERC blobs\n * @module Lerc\n */\n(function() {\n //this decoder supports all lerc versions, each version has its own class (LercDecode and Lerc2Decode). \n //the exported module handles format variation autoamtically.\n\n //the original LercDecode for Version 1\n var LercDecode = (function() {\n\n // Note: currently, this module only has an implementation for decoding LERC data, not encoding. The name of\n // the class was chosen to be future proof.\n\n var CntZImage = {};\n\n CntZImage.defaultNoDataValue = -3.4027999387901484e+38; // smallest Float32 value\n\n /**\n * Decode a LERC byte stream and return an object containing the pixel data and some required and optional\n * information about it, such as the image's width and height.\n *\n * @param {ArrayBuffer} input The LERC input byte stream\n * @param {object} [options] Decoding options, containing any of the following properties:\n * @config {number} [inputOffset = 0]\n * Skip the first inputOffset bytes of the input byte stream. A valid LERC file is expected at that position.\n * @config {Uint8Array} [encodedMask = null]\n * If specified, the decoder will not read mask information from the input and use the specified encoded\n * mask data instead. Mask header/data must not be present in the LERC byte stream in this case.\n * @config {number} [noDataValue = LercCode.defaultNoDataValue]\n * Pixel value to use for masked pixels.\n * @config {ArrayBufferView|Array} [pixelType = Float32Array]\n * The desired type of the pixelData array in the return value. Note that it is the caller's responsibility to\n * provide an appropriate noDataValue if the default pixelType is overridden.\n * @config {boolean} [returnMask = false]\n * If true, the return value will contain a maskData property of type Uint8Array which has one element per\n * pixel, the value of which is 1 or 0 depending on whether that pixel's data is present or masked. If the\n * input LERC data does not contain a mask, maskData will not be returned.\n * @config {boolean} [returnEncodedMask = false]\n * If true, the return value will contain a encodedMaskData property, which can be passed into encode() as\n * encodedMask.\n * @config {boolean} [returnFileInfo = false]\n * If true, the return value will have a fileInfo property that contains metadata obtained from the\n * LERC headers and the decoding process.\n * @config {boolean} [computeUsedBitDepths = false]\n * If true, the fileInfo property in the return value will contain the set of all block bit depths\n * encountered during decoding. Will only have an effect if returnFileInfo option is true.\n * @returns {{width, height, pixelData, minValue, maxValue, noDataValue, maskData, encodedMaskData, fileInfo}}\n */\n CntZImage.decode = function(input, options) {\n options = options || {};\n\n var skipMask = options.encodedMaskData || (options.encodedMaskData === null);\n var parsedData = parse(input, options.inputOffset || 0, skipMask);\n\n var noDataValue = (options.noDataValue !== null) ? options.noDataValue : CntZImage.defaultNoDataValue;\n\n var uncompressedData = uncompressPixelValues(parsedData, options.pixelType || Float32Array,\n options.encodedMaskData, noDataValue, options.returnMask);\n\n var result = {\n width: parsedData.width,\n height: parsedData.height,\n pixelData: uncompressedData.resultPixels,\n minValue: uncompressedData.minValue,\n maxValue: parsedData.pixels.maxValue,\n noDataValue: noDataValue\n };\n\n if (uncompressedData.resultMask) {\n result.maskData = uncompressedData.resultMask;\n }\n\n if (options.returnEncodedMask && parsedData.mask) {\n result.encodedMaskData = parsedData.mask.bitset ? parsedData.mask.bitset : null;\n }\n\n if (options.returnFileInfo) {\n result.fileInfo = formatFileInfo(parsedData);\n if (options.computeUsedBitDepths) {\n result.fileInfo.bitDepths = computeUsedBitDepths(parsedData);\n }\n }\n\n return result;\n };\n\n var uncompressPixelValues = function(data, TypedArrayClass, maskBitset, noDataValue, storeDecodedMask) {\n var blockIdx = 0;\n var numX = data.pixels.numBlocksX;\n var numY = data.pixels.numBlocksY;\n var blockWidth = Math.floor(data.width / numX);\n var blockHeight = Math.floor(data.height / numY);\n var scale = 2 * data.maxZError;\n var minValue = Number.MAX_VALUE, currentValue;\n maskBitset = maskBitset || ((data.mask) ? data.mask.bitset : null);\n\n var resultPixels, resultMask;\n resultPixels = new TypedArrayClass(data.width * data.height);\n if (storeDecodedMask && maskBitset) {\n resultMask = new Uint8Array(data.width * data.height);\n }\n var blockDataBuffer = new Float32Array(blockWidth * blockHeight);\n\n var xx, yy;\n for (var y = 0; y <= numY; y++) {\n var thisBlockHeight = (y !== numY) ? blockHeight : (data.height % numY);\n if (thisBlockHeight === 0) {\n continue;\n }\n for (var x = 0; x <= numX; x++) {\n var thisBlockWidth = (x !== numX) ? blockWidth : (data.width % numX);\n if (thisBlockWidth === 0) {\n continue;\n }\n\n var outPtr = y * data.width * blockHeight + x * blockWidth;\n var outStride = data.width - thisBlockWidth;\n\n var block = data.pixels.blocks[blockIdx];\n\n var blockData, blockPtr, constValue;\n if (block.encoding < 2) {\n // block is either uncompressed or bit-stuffed (encodings 0 and 1)\n if (block.encoding === 0) {\n // block is uncompressed\n blockData = block.rawData;\n } else {\n // block is bit-stuffed\n unstuff(block.stuffedData, block.bitsPerPixel, block.numValidPixels, block.offset, scale, blockDataBuffer, data.pixels.maxValue);\n blockData = blockDataBuffer;\n }\n blockPtr = 0;\n }\n else if (block.encoding === 2) {\n // block is all 0\n constValue = 0;\n }\n else {\n // block has constant value (encoding === 3)\n constValue = block.offset;\n }\n\n var maskByte;\n if (maskBitset) {\n for (yy = 0; yy < thisBlockHeight; yy++) {\n if (outPtr & 7) {\n //\n maskByte = maskBitset[outPtr >> 3];\n maskByte <<= outPtr & 7;\n }\n for (xx = 0; xx < thisBlockWidth; xx++) {\n if (!(outPtr & 7)) {\n // read next byte from mask\n maskByte = maskBitset[outPtr >> 3];\n }\n if (maskByte & 128) {\n // pixel data present\n if (resultMask) {\n resultMask[outPtr] = 1;\n }\n currentValue = (block.encoding < 2) ? blockData[blockPtr++] : constValue;\n minValue = minValue > currentValue ? currentValue : minValue;\n resultPixels[outPtr++] = currentValue;\n } else {\n // pixel data not present\n if (resultMask) {\n resultMask[outPtr] = 0;\n }\n resultPixels[outPtr++] = noDataValue;\n }\n maskByte <<= 1;\n }\n outPtr += outStride;\n }\n } else {\n // mask not present, simply copy block over\n if (block.encoding < 2) {\n // duplicating this code block for performance reasons\n // blockData case:\n for (yy = 0; yy < thisBlockHeight; yy++) {\n for (xx = 0; xx < thisBlockWidth; xx++) {\n currentValue = blockData[blockPtr++];\n minValue = minValue > currentValue ? currentValue : minValue;\n resultPixels[outPtr++] = currentValue;\n }\n outPtr += outStride;\n }\n }\n else {\n // constValue case:\n minValue = minValue > constValue ? constValue : minValue;\n for (yy = 0; yy < thisBlockHeight; yy++) {\n for (xx = 0; xx < thisBlockWidth; xx++) {\n resultPixels[outPtr++] = constValue;\n }\n outPtr += outStride;\n }\n }\n }\n if ((block.encoding === 1) && (blockPtr !== block.numValidPixels)) {\n throw \"Block and Mask do not match\";\n }\n blockIdx++;\n }\n }\n\n return {\n resultPixels: resultPixels,\n resultMask: resultMask,\n minValue: minValue\n };\n };\n\n var formatFileInfo = function(data) {\n return {\n \"fileIdentifierString\": data.fileIdentifierString,\n \"fileVersion\": data.fileVersion,\n \"imageType\": data.imageType,\n \"height\": data.height,\n \"width\": data.width,\n \"maxZError\": data.maxZError,\n \"eofOffset\": data.eofOffset,\n \"mask\": data.mask ? {\n \"numBlocksX\": data.mask.numBlocksX,\n \"numBlocksY\": data.mask.numBlocksY,\n \"numBytes\": data.mask.numBytes,\n \"maxValue\": data.mask.maxValue\n } : null,\n \"pixels\": {\n \"numBlocksX\": data.pixels.numBlocksX,\n \"numBlocksY\": data.pixels.numBlocksY,\n \"numBytes\": data.pixels.numBytes,\n \"maxValue\": data.pixels.maxValue,\n \"noDataValue\": data.noDataValue\n }\n };\n };\n\n var computeUsedBitDepths = function(data) {\n var numBlocks = data.pixels.numBlocksX * data.pixels.numBlocksY;\n var bitDepths = {};\n for (var i = 0; i < numBlocks; i++) {\n var block = data.pixels.blocks[i];\n if (block.encoding === 0) {\n bitDepths.float32 = true;\n } else if (block.encoding === 1) {\n bitDepths[block.bitsPerPixel] = true;\n } else {\n bitDepths[0] = true;\n }\n }\n\n return Object.keys(bitDepths);\n };\n\n var parse = function(input, fp, skipMask) {\n var data = {};\n\n // File header\n var fileIdView = new Uint8Array(input, fp, 10);\n data.fileIdentifierString = String.fromCharCode.apply(null, fileIdView);\n if (data.fileIdentifierString.trim() !== \"CntZImage\") {\n throw \"Unexpected file identifier string: \" + data.fileIdentifierString;\n }\n fp += 10;\n var view = new DataView(input, fp, 24);\n data.fileVersion = view.getInt32(0, true);\n data.imageType = view.getInt32(4, true);\n data.height = view.getUint32(8, true);\n data.width = view.getUint32(12, true);\n data.maxZError = view.getFloat64(16, true);\n fp += 24;\n\n // Mask Header\n if (!skipMask) {\n view = new DataView(input, fp, 16);\n data.mask = {};\n data.mask.numBlocksY = view.getUint32(0, true);\n data.mask.numBlocksX = view.getUint32(4, true);\n data.mask.numBytes = view.getUint32(8, true);\n data.mask.maxValue = view.getFloat32(12, true);\n fp += 16;\n\n // Mask Data\n if (data.mask.numBytes > 0) {\n var bitset = new Uint8Array(Math.ceil(data.width * data.height / 8));\n view = new DataView(input, fp, data.mask.numBytes);\n var cnt = view.getInt16(0, true);\n var ip = 2, op = 0;\n do {\n if (cnt > 0) {\n while (cnt--) { bitset[op++] = view.getUint8(ip++); }\n } else {\n var val = view.getUint8(ip++);\n cnt = -cnt;\n while (cnt--) { bitset[op++] = val; }\n }\n cnt = view.getInt16(ip, true);\n ip += 2;\n } while (ip < data.mask.numBytes);\n if ((cnt !== -32768) || (op < bitset.length)) {\n throw \"Unexpected end of mask RLE encoding\";\n }\n data.mask.bitset = bitset;\n fp += data.mask.numBytes;\n }\n else if ((data.mask.numBytes | data.mask.numBlocksY | data.mask.maxValue) === 0) { // Special case, all nodata\n data.mask.bitset = new Uint8Array(Math.ceil(data.width * data.height / 8));\n }\n }\n\n // Pixel Header\n view = new DataView(input, fp, 16);\n data.pixels = {};\n data.pixels.numBlocksY = view.getUint32(0, true);\n data.pixels.numBlocksX = view.getUint32(4, true);\n data.pixels.numBytes = view.getUint32(8, true);\n data.pixels.maxValue = view.getFloat32(12, true);\n fp += 16;\n\n var numBlocksX = data.pixels.numBlocksX;\n var numBlocksY = data.pixels.numBlocksY;\n // the number of blocks specified in the header does not take into account the blocks at the end of\n // each row/column with a special width/height that make the image complete in case the width is not\n // evenly divisible by the number of blocks.\n var actualNumBlocksX = numBlocksX + ((data.width % numBlocksX) > 0 ? 1 : 0);\n var actualNumBlocksY = numBlocksY + ((data.height % numBlocksY) > 0 ? 1 : 0);\n data.pixels.blocks = new Array(actualNumBlocksX * actualNumBlocksY);\n var blockI = 0;\n for (var blockY = 0; blockY < actualNumBlocksY; blockY++) {\n for (var blockX = 0; blockX < actualNumBlocksX; blockX++) {\n\n // Block\n var size = 0;\n var bytesLeft = input.byteLength - fp;\n view = new DataView(input, fp, Math.min(10, bytesLeft));\n var block = {};\n data.pixels.blocks[blockI++] = block;\n var headerByte = view.getUint8(0); size++;\n block.encoding = headerByte & 63;\n if (block.encoding > 3) {\n throw \"Invalid block encoding (\" + block.encoding + \")\";\n }\n if (block.encoding === 2) {\n fp++;\n continue;\n }\n if ((headerByte !== 0) && (headerByte !== 2)) {\n headerByte >>= 6;\n block.offsetType = headerByte;\n if (headerByte === 2) {\n block.offset = view.getInt8(1); size++;\n } else if (headerByte === 1) {\n block.offset = view.getInt16(1, true); size += 2;\n } else if (headerByte === 0) {\n block.offset = view.getFloat32(1, true); size += 4;\n } else {\n throw \"Invalid block offset type\";\n }\n\n if (block.encoding === 1) {\n headerByte = view.getUint8(size); size++;\n block.bitsPerPixel = headerByte & 63;\n headerByte >>= 6;\n block.numValidPixelsType = headerByte;\n if (headerByte === 2) {\n block.numValidPixels = view.getUint8(size); size++;\n } else if (headerByte === 1) {\n block.numValidPixels = view.getUint16(size, true); size += 2;\n } else if (headerByte === 0) {\n block.numValidPixels = view.getUint32(size, true); size += 4;\n } else {\n throw \"Invalid valid pixel count type\";\n }\n }\n }\n fp += size;\n\n if (block.encoding === 3) {\n continue;\n }\n\n var arrayBuf, store8;\n if (block.encoding === 0) {\n var numPixels = (data.pixels.numBytes - 1) / 4;\n if (numPixels !== Math.floor(numPixels)) {\n throw \"uncompressed block has invalid length\";\n }\n arrayBuf = new ArrayBuffer(numPixels * 4);\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, fp, numPixels * 4));\n var rawData = new Float32Array(arrayBuf);\n block.rawData = rawData;\n fp += numPixels * 4;\n } else if (block.encoding === 1) {\n var dataBytes = Math.ceil(block.numValidPixels * block.bitsPerPixel / 8);\n var dataWords = Math.ceil(dataBytes / 4);\n arrayBuf = new ArrayBuffer(dataWords * 4);\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, fp, dataBytes));\n block.stuffedData = new Uint32Array(arrayBuf);\n fp += dataBytes;\n }\n }\n }\n data.eofOffset = fp;\n return data;\n };\n\n var unstuff = function(src, bitsPerPixel, numPixels, offset, scale, dest, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0;\n var n, buffer;\n var nmax = Math.ceil((maxValue - offset) / scale);\n // get rid of trailing bytes that are already part of next block\n var numInvalidTailBytes = src.length * 4 - Math.ceil(bitsPerPixel * numPixels / 8);\n src[src.length - 1] <<= 8 * numInvalidTailBytes;\n\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n } else {\n var missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n //pixel values may exceed max due to quantization\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n return dest;\n };\n\n return CntZImage;\n })();\n\n //version 2. Supports 2.1, 2.2, 2.3\n var Lerc2Decode = (function() {\n \"use strict\";\n // Note: currently, this module only has an implementation for decoding LERC data, not encoding. The name of\n // the class was chosen to be future proof, following LercDecode.\n\n /*****************************************\n * private static class bitsutffer used by Lerc2Decode\n *******************************************/\n var BitStuffer = {\n //methods ending with 2 are for the new byte order used by Lerc2.3 and above.\n //originalUnstuff is used to unpack Huffman code table. code is duplicated to unstuffx for performance reasons.\n unstuff: function(src, dest, bitsPerPixel, numPixels, lutArr, offset, scale, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0;\n var n, buffer, missingBits, nmax;\n\n // get rid of trailing bytes that are already part of next block\n var numInvalidTailBytes = src.length * 4 - Math.ceil(bitsPerPixel * numPixels / 8);\n src[src.length - 1] <<= 8 * numInvalidTailBytes;\n if (lutArr) {\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n }\n else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n dest[o] = lutArr[n];//offset + lutArr[n] * scale;\n }\n }\n else {\n nmax = Math.ceil((maxValue - offset) / scale);\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n }\n else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n //pixel values may exceed max due to quantization\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n }\n },\n\n unstuffLUT: function(src, bitsPerPixel, numPixels, offset, scale, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o = 0, missingBits = 0, bitsLeft = 0, n = 0;\n var buffer;\n var dest = [];\n\n // get rid of trailing bytes that are already part of next block\n var numInvalidTailBytes = src.length * 4 - Math.ceil(bitsPerPixel * numPixels / 8);\n src[src.length - 1] <<= 8 * numInvalidTailBytes;\n\n var nmax = Math.ceil((maxValue - offset) / scale);\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n //dest.push(n);\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n dest.unshift(offset);//1st one\n return dest;\n },\n\n unstuff2: function(src, dest, bitsPerPixel, numPixels, lutArr, offset, scale, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0, bitPos = 0;\n var n, buffer, missingBits;\n if (lutArr) {\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n bitPos = 0;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = ((buffer >>> bitPos) & bitMask);\n bitsLeft -= bitsPerPixel;\n bitPos += bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = (buffer >>> bitPos) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n |= (buffer & ((1 << missingBits) - 1)) << (bitsPerPixel - missingBits);\n bitPos = missingBits;\n }\n dest[o] = lutArr[n];\n }\n }\n else {\n var nmax = Math.ceil((maxValue - offset) / scale);\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n bitPos = 0;\n }\n if (bitsLeft >= bitsPerPixel) {\n //no unsigned left shift\n n = ((buffer >>> bitPos) & bitMask);\n bitsLeft -= bitsPerPixel;\n bitPos += bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = (buffer >>> bitPos) & bitMask;//((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n |= (buffer & ((1 << missingBits) - 1)) << (bitsPerPixel - missingBits);\n bitPos = missingBits;\n }\n //pixel values may exceed max due to quantization\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n }\n return dest;\n },\n\n unstuffLUT2: function(src, bitsPerPixel, numPixels, offset, scale, maxValue) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o = 0, missingBits = 0, bitsLeft = 0, n = 0, bitPos = 0;\n var buffer;\n var dest = [];\n var nmax = Math.ceil((maxValue - offset) / scale);\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n bitPos = 0;\n }\n if (bitsLeft >= bitsPerPixel) {\n //no unsigned left shift\n n = ((buffer >>> bitPos) & bitMask);\n bitsLeft -= bitsPerPixel;\n bitPos += bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = (buffer >>> bitPos) & bitMask;//((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n |= (buffer & ((1 << missingBits) - 1)) << (bitsPerPixel - missingBits);\n bitPos = missingBits;\n }\n //dest.push(n);\n dest[o] = n < nmax ? offset + n * scale : maxValue;\n }\n dest.unshift(offset);\n return dest;\n },\n\n originalUnstuff: function(src, dest, bitsPerPixel, numPixels) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0;\n var n, buffer, missingBits;\n\n // get rid of trailing bytes that are already part of next block\n var numInvalidTailBytes = src.length * 4 - Math.ceil(bitsPerPixel * numPixels / 8);\n src[src.length - 1] <<= 8 * numInvalidTailBytes;\n\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n }\n if (bitsLeft >= bitsPerPixel) {\n n = (buffer >>> (bitsLeft - bitsPerPixel)) & bitMask;\n bitsLeft -= bitsPerPixel;\n }\n else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = ((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n += (buffer >>> bitsLeft);\n }\n dest[o] = n;\n }\n return dest;\n },\n\n originalUnstuff2: function(src, dest, bitsPerPixel, numPixels) {\n var bitMask = (1 << bitsPerPixel) - 1;\n var i = 0, o;\n var bitsLeft = 0, bitPos = 0;\n var n, buffer, missingBits;\n //micro-optimizations\n for (o = 0; o < numPixels; o++) {\n if (bitsLeft === 0) {\n buffer = src[i++];\n bitsLeft = 32;\n bitPos = 0;\n }\n if (bitsLeft >= bitsPerPixel) {\n //no unsigned left shift\n n = ((buffer >>> bitPos) & bitMask);\n bitsLeft -= bitsPerPixel;\n bitPos += bitsPerPixel;\n } else {\n missingBits = (bitsPerPixel - bitsLeft);\n n = (buffer >>> bitPos) & bitMask;//((buffer & bitMask) << missingBits) & bitMask;\n buffer = src[i++];\n bitsLeft = 32 - missingBits;\n n |= (buffer & ((1 << missingBits) - 1)) << (bitsPerPixel - missingBits);\n bitPos = missingBits;\n }\n dest[o] = n;\n }\n return dest;\n }\n };\n\n /*****************************************\n *private static class used by Lerc2Decode\n ******************************************/\n var Lerc2Helpers = {\n HUFFMAN_LUT_BITS_MAX: 12, //use 2^12 lut, treat it like constant\n computeChecksumFletcher32: function(input) {\n\n var sum1 = 0xffff, sum2 = 0xffff;\n var len = input.length;\n var words = Math.floor(len / 2);\n var i = 0;\n while (words) {\n var tlen = (words >= 359) ? 359 : words;\n words -= tlen;\n do {\n sum1 += (input[i++] << 8);\n sum2 += sum1 += input[i++];\n } while (--tlen);\n\n sum1 = (sum1 & 0xffff) + (sum1 >>> 16);\n sum2 = (sum2 & 0xffff) + (sum2 >>> 16);\n }\n\n // add the straggler byte if it exists\n if (len & 1) {\n sum2 += sum1 += (input[i] << 8);\n }\n // second reduction step to reduce sums to 16 bits\n sum1 = (sum1 & 0xffff) + (sum1 >>> 16);\n sum2 = (sum2 & 0xffff) + (sum2 >>> 16);\n\n return (sum2 << 16 | sum1) >>> 0;\n },\n\n readHeaderInfo: function(input, data) {\n var ptr = data.ptr;\n var fileIdView = new Uint8Array(input, ptr, 6);\n var headerInfo = {};\n headerInfo.fileIdentifierString = String.fromCharCode.apply(null, fileIdView);\n if (headerInfo.fileIdentifierString.lastIndexOf(\"Lerc2\", 0) !== 0) {\n throw \"Unexpected file identifier string (expect Lerc2 ): \" + headerInfo.fileIdentifierString;\n }\n ptr += 6;\n var view = new DataView(input, ptr, 8);\n var fileVersion = view.getInt32(0, true);\n headerInfo.fileVersion = fileVersion;\n ptr += 4;\n if (fileVersion >= 3) {\n headerInfo.checksum = view.getUint32(4, true); //nrows\n ptr += 4;\n }\n\n //keys start from here\n view = new DataView(input, ptr, 12);\n headerInfo.height = view.getUint32(0, true); //nrows\n headerInfo.width = view.getUint32(4, true); //ncols\n ptr += 8;\n if (fileVersion >= 4) {\n headerInfo.numDims = view.getUint32(8, true);\n ptr += 4;\n }\n else {\n headerInfo.numDims = 1;\n }\n\n view = new DataView(input, ptr, 40);\n headerInfo.numValidPixel = view.getUint32(0, true);\n headerInfo.microBlockSize = view.getInt32(4, true);\n headerInfo.blobSize = view.getInt32(8, true);\n headerInfo.imageType = view.getInt32(12, true);\n\n headerInfo.maxZError = view.getFloat64(16, true);\n headerInfo.zMin = view.getFloat64(24, true);\n headerInfo.zMax = view.getFloat64(32, true);\n ptr += 40;\n data.headerInfo = headerInfo;\n data.ptr = ptr;\n\n var checksum, keyLength;\n if (fileVersion >= 3) {\n keyLength = fileVersion >= 4 ? 52 : 48;\n checksum = this.computeChecksumFletcher32(new Uint8Array(input, ptr - keyLength, headerInfo.blobSize - 14));\n if (checksum !== headerInfo.checksum) {\n throw \"Checksum failed.\";\n }\n }\n return true;\n },\n\n checkMinMaxRanges: function(input, data) {\n var headerInfo = data.headerInfo;\n var OutPixelTypeArray = this.getDataTypeArray(headerInfo.imageType);\n var rangeBytes = headerInfo.numDims * this.getDataTypeSize(headerInfo.imageType);\n var minValues = this.readSubArray(input, data.ptr, OutPixelTypeArray, rangeBytes);\n var maxValues = this.readSubArray(input, data.ptr + rangeBytes, OutPixelTypeArray, rangeBytes);\n data.ptr += (2 * rangeBytes);\n var i, equal = true;\n for (i = 0; i < headerInfo.numDims; i++) {\n if (minValues[i] !== maxValues[i]) {\n equal = false;\n break;\n }\n }\n headerInfo.minValues = minValues;\n headerInfo.maxValues = maxValues;\n return equal;\n },\n\n readSubArray: function(input, ptr, OutPixelTypeArray, numBytes) {\n var rawData;\n if (OutPixelTypeArray === Uint8Array) {\n rawData = new Uint8Array(input, ptr, numBytes);\n }\n else {\n var arrayBuf = new ArrayBuffer(numBytes);\n var store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, ptr, numBytes));\n rawData = new OutPixelTypeArray(arrayBuf);\n }\n return rawData;\n },\n\n readMask: function(input, data) {\n var ptr = data.ptr;\n var headerInfo = data.headerInfo;\n var numPixels = headerInfo.width * headerInfo.height;\n var numValidPixel = headerInfo.numValidPixel;\n\n var view = new DataView(input, ptr, 4);\n var mask = {};\n mask.numBytes = view.getUint32(0, true);\n ptr += 4;\n\n // Mask Data\n if ((0 === numValidPixel || numPixels === numValidPixel) && 0 !== mask.numBytes) {\n throw (\"invalid mask\");\n }\n var bitset, resultMask;\n if (numValidPixel === 0) {\n bitset = new Uint8Array(Math.ceil(numPixels / 8));\n mask.bitset = bitset;\n resultMask = new Uint8Array(numPixels);\n data.pixels.resultMask = resultMask;\n ptr += mask.numBytes;\n }// ????? else if (data.mask.numBytes > 0 && data.mask.numBytes< data.numValidPixel) {\n else if (mask.numBytes > 0) {\n bitset = new Uint8Array(Math.ceil(numPixels / 8));\n view = new DataView(input, ptr, mask.numBytes);\n var cnt = view.getInt16(0, true);\n var ip = 2, op = 0, val = 0;\n do {\n if (cnt > 0) {\n while (cnt--) { bitset[op++] = view.getUint8(ip++); }\n } else {\n val = view.getUint8(ip++);\n cnt = -cnt;\n while (cnt--) { bitset[op++] = val; }\n }\n cnt = view.getInt16(ip, true);\n ip += 2;\n } while (ip < mask.numBytes);\n if ((cnt !== -32768) || (op < bitset.length)) {\n throw \"Unexpected end of mask RLE encoding\";\n }\n\n resultMask = new Uint8Array(numPixels);\n var mb = 0, k = 0;\n\n for (k = 0; k < numPixels; k++) {\n if (k & 7) {\n mb = bitset[k >> 3];\n mb <<= k & 7;\n }\n else {\n mb = bitset[k >> 3];\n }\n if (mb & 128) {\n resultMask[k] = 1;\n }\n }\n data.pixels.resultMask = resultMask;\n\n mask.bitset = bitset;\n ptr += mask.numBytes;\n }\n data.ptr = ptr;\n data.mask = mask;\n return true;\n },\n\n readDataOneSweep: function(input, data, OutPixelTypeArray, useBSQForOutputDim) {\n var ptr = data.ptr;\n var headerInfo = data.headerInfo;\n var numDims = headerInfo.numDims;\n var numPixels = headerInfo.width * headerInfo.height;\n var imageType = headerInfo.imageType;\n var numBytes = headerInfo.numValidPixel * Lerc2Helpers.getDataTypeSize(imageType) * numDims;\n //data.pixels.numBytes = numBytes;\n var rawData;\n var mask = data.pixels.resultMask;\n if (OutPixelTypeArray === Uint8Array) {\n rawData = new Uint8Array(input, ptr, numBytes);\n }\n else {\n var arrayBuf = new ArrayBuffer(numBytes);\n var store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, ptr, numBytes));\n rawData = new OutPixelTypeArray(arrayBuf);\n }\n if (rawData.length === numPixels * numDims) {\n if (useBSQForOutputDim) {\n data.pixels.resultPixels = Lerc2Helpers.swapDimensionOrder(rawData, numPixels, numDims, OutPixelTypeArray, true);\n }\n else {\n data.pixels.resultPixels = rawData;\n }\n }\n else //mask\n {\n data.pixels.resultPixels = new OutPixelTypeArray(numPixels * numDims);\n var z = 0, k = 0, i = 0, nStart = 0;\n if (numDims > 1) {\n if (useBSQForOutputDim) {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n nStart = k;\n for (i = 0; i < numDims; i++, nStart+=numPixels) {\n data.pixels.resultPixels[nStart] = rawData[z++];\n }\n }\n }\n }\n else {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n nStart = k * numDims;\n for (i = 0; i < numDims; i++) {\n data.pixels.resultPixels[nStart + i] = rawData[z++];\n }\n }\n }\n }\n }\n else {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n data.pixels.resultPixels[k] = rawData[z++];\n }\n }\n }\n }\n ptr += numBytes;\n data.ptr = ptr; //return data;\n return true;\n },\n\n readHuffmanTree: function(input, data) {\n var BITS_MAX = this.HUFFMAN_LUT_BITS_MAX; //8 is slow for the large test image\n //var size_max = 1 << BITS_MAX;\n /* ************************\n * reading code table\n *************************/\n var view = new DataView(input, data.ptr, 16);\n data.ptr += 16;\n var version = view.getInt32(0, true);\n if (version < 2) {\n throw \"unsupported Huffman version\";\n }\n var size = view.getInt32(4, true);\n var i0 = view.getInt32(8, true);\n var i1 = view.getInt32(12, true);\n if (i0 >= i1) {\n return false;\n }\n var blockDataBuffer = new Uint32Array(i1 - i0);\n Lerc2Helpers.decodeBits(input, data, blockDataBuffer);\n var codeTable = []; //size\n var i, j, k, len;\n\n for (i = i0; i < i1; i++) {\n j = i - (i < size ? 0 : size);//wrap around\n codeTable[j] = { first: blockDataBuffer[i - i0], second: null };\n }\n\n var dataBytes = input.byteLength - data.ptr;\n var dataWords = Math.ceil(dataBytes / 4);\n var arrayBuf = new ArrayBuffer(dataWords * 4);\n var store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, data.ptr, dataBytes));\n var stuffedData = new Uint32Array(arrayBuf); //must start from x*4\n var bitPos = 0, word, srcPtr = 0;\n word = stuffedData[0];\n for (i = i0; i < i1; i++) {\n j = i - (i < size ? 0 : size);//wrap around\n len = codeTable[j].first;\n if (len > 0) {\n codeTable[j].second = (word << bitPos) >>> (32 - len);\n\n if (32 - bitPos >= len) {\n bitPos += len;\n if (bitPos === 32) {\n bitPos = 0;\n srcPtr++;\n word = stuffedData[srcPtr];\n }\n }\n else {\n bitPos += len - 32;\n srcPtr++;\n word = stuffedData[srcPtr];\n codeTable[j].second |= word >>> (32 - bitPos);\n }\n }\n }\n\n //finished reading code table\n\n /* ************************\n * building lut\n *************************/\n var numBitsLUT = 0, numBitsLUTQick = 0;\n var tree = new TreeNode();\n for (i = 0; i < codeTable.length; i++) {\n if (codeTable[i] !== undefined) {\n numBitsLUT = Math.max(numBitsLUT, codeTable[i].first);\n }\n }\n if (numBitsLUT >= BITS_MAX) {\n numBitsLUTQick = BITS_MAX;\n }\n else {\n numBitsLUTQick = numBitsLUT;\n }\n // for debugging purpose\n // if (numBitsLUT >= 30) {\n // console.log(\"WARning, large NUM LUT BITS IS \" + numBitsLUT);\n // }\n var decodeLut = [], entry, code, numEntries, jj, currentBit, node;\n for (i = i0; i < i1; i++) {\n j = i - (i < size ? 0 : size);//wrap around\n len = codeTable[j].first;\n if (len > 0) {\n entry = [len, j];\n if (len <= numBitsLUTQick) {\n code = codeTable[j].second << (numBitsLUTQick - len);\n numEntries = 1 << (numBitsLUTQick - len);\n for (k = 0; k < numEntries; k++) {\n decodeLut[code | k] = entry;\n }\n }\n else {\n //build tree\n code = codeTable[j].second;\n node = tree;\n for (jj = len - 1; jj >= 0; jj--) {\n currentBit = code >>> jj & 1; //no left shift as length could be 30,31\n if (currentBit) {\n if (!node.right) {\n node.right = new TreeNode();\n }\n node = node.right;\n }\n else {\n if (!node.left) {\n node.left = new TreeNode();\n }\n node = node.left;\n }\n if (jj === 0 && !node.val) {\n node.val = entry[1];\n }\n }\n }\n }\n }\n return {\n decodeLut: decodeLut,\n numBitsLUTQick: numBitsLUTQick,\n numBitsLUT: numBitsLUT,\n tree: tree,\n stuffedData: stuffedData,\n srcPtr: srcPtr,\n bitPos: bitPos\n };\n },\n\n readHuffman: function(input, data, OutPixelTypeArray, useBSQForOutputDim) {\n var headerInfo = data.headerInfo;\n var numDims = headerInfo.numDims;\n var height = data.headerInfo.height;\n var width = data.headerInfo.width;\n var numPixels = width * height;\n //var size_max = 1 << BITS_MAX;\n /* ************************\n * reading huffman structure info\n *************************/\n var huffmanInfo = this.readHuffmanTree(input, data);\n var decodeLut = huffmanInfo.decodeLut;\n var tree = huffmanInfo.tree;\n //stuffedData includes huffman headers\n var stuffedData = huffmanInfo.stuffedData;\n var srcPtr = huffmanInfo.srcPtr;\n var bitPos = huffmanInfo.bitPos;\n var numBitsLUTQick = huffmanInfo.numBitsLUTQick;\n var numBitsLUT = huffmanInfo.numBitsLUT;\n var offset = data.headerInfo.imageType === 0 ? 128 : 0;\n /*************************\n * decode\n ***************************/\n var node, val, delta, mask = data.pixels.resultMask, valTmp, valTmpQuick, currentBit;\n var i, j, k, ii;\n var prevVal = 0;\n if (bitPos > 0) {\n srcPtr++;\n bitPos = 0;\n }\n var word = stuffedData[srcPtr];\n var deltaEncode = data.encodeMode === 1;\n var resultPixelsAllDim = new OutPixelTypeArray(numPixels * numDims);\n var resultPixels = resultPixelsAllDim;\n var iDim;\n // TODO: reevaluate the need to keep inlined decoding code as IE support is phasing out\n if (numDims < 2 || deltaEncode) {\n for (iDim = 0; iDim < numDims; iDim++) {\n if (numDims > 1) {\n //get the mem block of current dimension\n resultPixels = new OutPixelTypeArray(resultPixelsAllDim.buffer, numPixels * iDim, numPixels);\n prevVal = 0;\n }\n if (data.headerInfo.numValidPixel === width * height) { //all valid\n for (k = 0, i = 0; i < height; i++) {\n for (j = 0; j < width; j++, k++) {\n val = 0;\n valTmp = (word << bitPos) >>> (32 - numBitsLUTQick);\n valTmpQuick = valTmp;// >>> deltaBits;\n if (32 - bitPos < numBitsLUTQick) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUTQick));\n valTmpQuick = valTmp;// >>> deltaBits;\n }\n if (decodeLut[valTmpQuick]) // if there, move the correct number of bits and done\n {\n val = decodeLut[valTmpQuick][1];\n bitPos += decodeLut[valTmpQuick][0];\n }\n else {\n valTmp = (word << bitPos) >>> (32 - numBitsLUT);\n valTmpQuick = valTmp;// >>> deltaBits;\n if (32 - bitPos < numBitsLUT) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUT));\n valTmpQuick = valTmp;// >>> deltaBits;\n }\n node = tree;\n for (ii = 0; ii < numBitsLUT; ii++) {\n currentBit = valTmp >>> (numBitsLUT - ii - 1) & 1;\n node = currentBit ? node.right : node.left;\n if (!(node.left || node.right)) {\n val = node.val;\n bitPos = bitPos + ii + 1;\n break;\n }\n }\n }\n \n if (bitPos >= 32) {\n bitPos -= 32;\n srcPtr++;\n word = stuffedData[srcPtr];\n }\n \n delta = val - offset;\n if (deltaEncode) {\n if (j > 0) {\n delta += prevVal; // use overflow\n }\n else if (i > 0) {\n delta += resultPixels[k - width];\n }\n else {\n delta += prevVal;\n }\n delta &= 0xFF; //overflow\n resultPixels[k] = delta;//overflow\n prevVal = delta;\n }\n else {\n resultPixels[k] = delta;\n }\n }\n }\n }\n else { //not all valid, use mask\n for (k = 0, i = 0; i < height; i++) {\n for (j = 0; j < width; j++, k++) {\n if (mask[k]) {\n val = 0;\n valTmp = (word << bitPos) >>> (32 - numBitsLUTQick);\n valTmpQuick = valTmp;// >>> deltaBits;\n if (32 - bitPos < numBitsLUTQick) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUTQick));\n valTmpQuick = valTmp;// >>> deltaBits;\n }\n if (decodeLut[valTmpQuick]) // if there, move the correct number of bits and done\n {\n val = decodeLut[valTmpQuick][1];\n bitPos += decodeLut[valTmpQuick][0];\n }\n else {\n valTmp = (word << bitPos) >>> (32 - numBitsLUT);\n valTmpQuick = valTmp;// >>> deltaBits;\n if (32 - bitPos < numBitsLUT) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUT));\n valTmpQuick = valTmp;// >>> deltaBits;\n }\n node = tree;\n for (ii = 0; ii < numBitsLUT; ii++) {\n currentBit = valTmp >>> (numBitsLUT - ii - 1) & 1;\n node = currentBit ? node.right : node.left;\n if (!(node.left || node.right)) {\n val = node.val;\n bitPos = bitPos + ii + 1;\n break;\n }\n }\n }\n \n if (bitPos >= 32) {\n bitPos -= 32;\n srcPtr++;\n word = stuffedData[srcPtr];\n }\n \n delta = val - offset;\n if (deltaEncode) {\n if (j > 0 && mask[k - 1]) {\n delta += prevVal; // use overflow\n }\n else if (i > 0 && mask[k - width]) {\n delta += resultPixels[k - width];\n }\n else {\n delta += prevVal;\n }\n \n delta &= 0xFF; //overflow\n resultPixels[k] = delta;//overflow\n prevVal = delta;\n }\n else {\n resultPixels[k] = delta;\n }\n }\n }\n }\n }\n }\n }\n else {\n for (k = 0, i = 0; i < height; i++) {\n for (j = 0; j < width; j++) {\n k = i * width + j;\n if (!mask || mask[k]) {\n for (iDim = 0; iDim < numDims; iDim++, k+=numPixels) {\n val = 0;\n valTmp = (word << bitPos) >>> (32 - numBitsLUTQick);\n valTmpQuick = valTmp;\n if (32 - bitPos < numBitsLUTQick) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUTQick));\n valTmpQuick = valTmp;\n }\n if (decodeLut[valTmpQuick])\n {\n val = decodeLut[valTmpQuick][1];\n bitPos += decodeLut[valTmpQuick][0];\n }\n else {\n valTmp = (word << bitPos) >>> (32 - numBitsLUT);\n valTmpQuick = valTmp;\n if (32 - bitPos < numBitsLUT) {\n valTmp |= ((stuffedData[srcPtr + 1]) >>> (64 - bitPos - numBitsLUT));\n valTmpQuick = valTmp;\n }\n node = tree;\n for (ii = 0; ii < numBitsLUT; ii++) {\n currentBit = valTmp >>> (numBitsLUT - ii - 1) & 1;\n node = currentBit ? node.right : node.left;\n if (!(node.left || node.right)) {\n val = node.val;\n bitPos = bitPos + ii + 1;\n break;\n }\n }\n }\n\n if (bitPos >= 32) {\n bitPos -= 32;\n srcPtr++;\n word = stuffedData[srcPtr];\n }\n\n delta = val - offset;\n resultPixels[k] = delta;\n }\n }\n }\n }\n }\n data.ptr = data.ptr + (srcPtr + 1) * 4 + (bitPos > 0 ? 4 : 0);\n data.pixels.resultPixels = resultPixelsAllDim;\n //swap for BIP layout\n if (numDims > 1 && !useBSQForOutputDim) {\n data.pixels.resultPixels = Lerc2Helpers.swapDimensionOrder(resultPixelsAllDim, numPixels, numDims, OutPixelTypeArray);\n }\n },\n\n decodeBits: function(input, data, blockDataBuffer, offset, iDim) {\n {\n //bitstuff encoding is 3\n var headerInfo = data.headerInfo;\n var fileVersion = headerInfo.fileVersion;\n //var block = {};\n var blockPtr = 0;\n var viewByteLength = ((input.byteLength - data.ptr) >= 5) ? 5 : (input.byteLength - data.ptr);\n var view = new DataView(input, data.ptr, viewByteLength);\n var headerByte = view.getUint8(0);\n blockPtr++;\n var bits67 = headerByte >> 6;\n var n = (bits67 === 0) ? 4 : 3 - bits67;\n var doLut = (headerByte & 32) > 0 ? true : false;//5th bit\n var numBits = headerByte & 31;\n var numElements = 0;\n if (n === 1) {\n numElements = view.getUint8(blockPtr); blockPtr++;\n } else if (n === 2) {\n numElements = view.getUint16(blockPtr, true); blockPtr += 2;\n } else if (n === 4) {\n numElements = view.getUint32(blockPtr, true); blockPtr += 4;\n } else {\n throw \"Invalid valid pixel count type\";\n }\n //fix: huffman codes are bit stuffed, but not bound by data's max value, so need to use originalUnstuff\n //offset = offset || 0;\n var scale = 2 * headerInfo.maxZError;\n var stuffedData, arrayBuf, store8, dataBytes, dataWords;\n var lutArr, lutData, lutBytes, lutBitsPerElement, bitsPerPixel;\n var zMax = headerInfo.numDims > 1 ? headerInfo.maxValues[iDim] : headerInfo.zMax;\n if (doLut) {\n data.counter.lut++;\n lutBytes = view.getUint8(blockPtr);\n lutBitsPerElement = numBits;\n blockPtr++;\n dataBytes = Math.ceil((lutBytes - 1) * numBits / 8);\n dataWords = Math.ceil(dataBytes / 4);\n arrayBuf = new ArrayBuffer(dataWords * 4);\n store8 = new Uint8Array(arrayBuf);\n\n data.ptr += blockPtr;\n store8.set(new Uint8Array(input, data.ptr, dataBytes));\n\n lutData = new Uint32Array(arrayBuf);\n data.ptr += dataBytes;\n\n bitsPerPixel = 0;\n while ((lutBytes - 1) >>> bitsPerPixel) {\n bitsPerPixel++;\n }\n dataBytes = Math.ceil(numElements * bitsPerPixel / 8);\n dataWords = Math.ceil(dataBytes / 4);\n arrayBuf = new ArrayBuffer(dataWords * 4);\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, data.ptr, dataBytes));\n stuffedData = new Uint32Array(arrayBuf);\n data.ptr += dataBytes;\n if (fileVersion >= 3) {\n lutArr = BitStuffer.unstuffLUT2(lutData, numBits, lutBytes - 1, offset, scale, zMax);\n }\n else {\n lutArr = BitStuffer.unstuffLUT(lutData, numBits, lutBytes - 1, offset, scale, zMax);\n }\n //lutArr.unshift(0);\n if (fileVersion >= 3) {\n //BitStuffer.unstuff2(block, blockDataBuffer, headerInfo.zMax);\n BitStuffer.unstuff2(stuffedData, blockDataBuffer, bitsPerPixel, numElements, lutArr);\n }\n else {\n BitStuffer.unstuff(stuffedData, blockDataBuffer, bitsPerPixel, numElements, lutArr);\n }\n }\n else {\n //console.debug(\"bitstuffer\");\n data.counter.bitstuffer++;\n bitsPerPixel = numBits;\n data.ptr += blockPtr;\n if (bitsPerPixel > 0) {\n dataBytes = Math.ceil(numElements * bitsPerPixel / 8);\n dataWords = Math.ceil(dataBytes / 4);\n arrayBuf = new ArrayBuffer(dataWords * 4);\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, data.ptr, dataBytes));\n stuffedData = new Uint32Array(arrayBuf);\n data.ptr += dataBytes;\n if (fileVersion >= 3) {\n if (offset == null) {\n BitStuffer.originalUnstuff2(stuffedData, blockDataBuffer, bitsPerPixel, numElements);\n }\n else {\n BitStuffer.unstuff2(stuffedData, blockDataBuffer, bitsPerPixel, numElements, false, offset, scale, zMax);\n }\n }\n else {\n if (offset == null) {\n BitStuffer.originalUnstuff(stuffedData, blockDataBuffer, bitsPerPixel, numElements);\n }\n else {\n BitStuffer.unstuff(stuffedData, blockDataBuffer, bitsPerPixel, numElements, false, offset, scale, zMax);\n }\n }\n }\n }\n }\n\n },\n\n readTiles: function(input, data, OutPixelTypeArray, useBSQForOutputDim) {\n var headerInfo = data.headerInfo;\n var width = headerInfo.width;\n var height = headerInfo.height;\n var numPixels = width * height;\n var microBlockSize = headerInfo.microBlockSize;\n var imageType = headerInfo.imageType;\n var dataTypeSize = Lerc2Helpers.getDataTypeSize(imageType);\n var numBlocksX = Math.ceil(width / microBlockSize);\n var numBlocksY = Math.ceil(height / microBlockSize);\n data.pixels.numBlocksY = numBlocksY;\n data.pixels.numBlocksX = numBlocksX;\n data.pixels.ptr = 0;\n var row = 0, col = 0, blockY = 0, blockX = 0, thisBlockHeight = 0, thisBlockWidth = 0, bytesLeft = 0, headerByte = 0, bits67 = 0, testCode = 0, outPtr = 0, outStride = 0, numBytes = 0, bytesleft = 0, z = 0, blockPtr = 0;\n var view, block, arrayBuf, store8, rawData;\n var blockEncoding;\n var blockDataBuffer = new OutPixelTypeArray(microBlockSize * microBlockSize);\n var lastBlockHeight = (height % microBlockSize) || microBlockSize;\n var lastBlockWidth = (width % microBlockSize) || microBlockSize;\n var offsetType, offset;\n var numDims = headerInfo.numDims, iDim;\n var mask = data.pixels.resultMask;\n var resultPixels = data.pixels.resultPixels;\n var fileVersion = headerInfo.fileVersion;\n var fileVersionCheckNum = fileVersion >= 5 ? 14 : 15;\n var isDiffEncoding;\n var zMax = headerInfo.zMax;\n //var resultPixelsAllDim = resultPixels;\n var resultPixelsPrevDim;\n for (blockY = 0; blockY < numBlocksY; blockY++) {\n thisBlockHeight = (blockY !== numBlocksY - 1) ? microBlockSize : lastBlockHeight;\n for (blockX = 0; blockX < numBlocksX; blockX++) {\n //console.debug(\"y\" + blockY + \" x\" + blockX);\n thisBlockWidth = (blockX !== numBlocksX - 1) ? microBlockSize : lastBlockWidth;\n\n outPtr = blockY * width * microBlockSize + blockX * microBlockSize;\n outStride = width - thisBlockWidth;\n\n for (iDim = 0; iDim < numDims; iDim++) {\n if (numDims > 1) {\n resultPixelsPrevDim = resultPixels;\n outPtr = blockY * width * microBlockSize + blockX * microBlockSize;\n resultPixels = new OutPixelTypeArray(data.pixels.resultPixels.buffer, numPixels * iDim * dataTypeSize, numPixels);\n zMax = headerInfo.maxValues[iDim];\n } else {\n resultPixelsPrevDim = null;\n }\n bytesLeft = input.byteLength - data.ptr;\n view = new DataView(input, data.ptr, Math.min(10, bytesLeft));\n block = {};\n blockPtr = 0;\n headerByte = view.getUint8(0);\n blockPtr++;\n isDiffEncoding = headerInfo.fileVersion >= 5 ? headerByte & 4 : 0;\n bits67 = (headerByte >> 6) & 0xFF;\n testCode = (headerByte >> 2) & fileVersionCheckNum; // use bits 2345 for integrity check\n if (testCode !== (((blockX * microBlockSize) >> 3) & fileVersionCheckNum)) {\n throw \"integrity issue\";\n }\n\n if (isDiffEncoding && iDim === 0) {\n throw \"integrity issue\";\n }\n\n blockEncoding = headerByte & 3;\n if (blockEncoding > 3) {\n data.ptr += blockPtr;\n throw \"Invalid block encoding (\" + blockEncoding + \")\";\n }\n else if (blockEncoding === 2) { //constant 0\n if (isDiffEncoding) {\n if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = resultPixelsPrevDim[outPtr];\n }\n outPtr++;\n }\n }\n }\n else {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr] = resultPixelsPrevDim[outPtr];\n outPtr++;\n }\n }\n }\n }\n data.counter.constant++;\n data.ptr += blockPtr;\n continue;\n }\n else if (blockEncoding === 0) { //uncompressed\n if (isDiffEncoding) {\n // doesn't make sense, should not happen\n throw \"integrity issue\";\n }\n data.counter.uncompressed++;\n data.ptr += blockPtr;\n numBytes = thisBlockHeight * thisBlockWidth * dataTypeSize;\n bytesleft = input.byteLength - data.ptr;\n numBytes = numBytes < bytesleft ? numBytes : bytesleft;\n //bit alignment\n arrayBuf = new ArrayBuffer((numBytes % dataTypeSize) === 0 ? numBytes : (numBytes + dataTypeSize - numBytes % dataTypeSize));\n store8 = new Uint8Array(arrayBuf);\n store8.set(new Uint8Array(input, data.ptr, numBytes));\n rawData = new OutPixelTypeArray(arrayBuf);\n z = 0;\n if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = rawData[z++];\n }\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n else {//all valid\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr++] = rawData[z++];\n }\n outPtr += outStride;\n }\n }\n data.ptr += z * dataTypeSize;\n }\n else { //1 or 3\n offsetType = Lerc2Helpers.getDataTypeUsed((isDiffEncoding && imageType < 6) ? 4 : imageType, bits67);\n offset = Lerc2Helpers.getOnePixel(block, blockPtr, offsetType, view);\n blockPtr += Lerc2Helpers.getDataTypeSize(offsetType);\n if (blockEncoding === 3) //constant offset value\n {\n data.ptr += blockPtr;\n data.counter.constantoffset++;\n //you can delete the following resultMask case in favor of performance because val is constant and users use nodata mask, otherwise nodatavalue post processing handles it too.\n //while the above statement is true, we're not doing it as we want to keep invalid pixel value at 0 rather than arbitrary values\n if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = isDiffEncoding ? Math.min(zMax, resultPixelsPrevDim[outPtr] + offset) : offset;\n }\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n else {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr] = isDiffEncoding ? Math.min(zMax, resultPixelsPrevDim[outPtr] + offset) : offset;\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n }\n else { //bitstuff encoding is 3\n data.ptr += blockPtr;\n //heavy lifting\n Lerc2Helpers.decodeBits(input, data, blockDataBuffer, offset, iDim);\n blockPtr = 0;\n // duplicate code to favor performance, diff encoding is for multidimension only\n if (isDiffEncoding) {\n if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = blockDataBuffer[blockPtr++] + resultPixelsPrevDim[outPtr];\n }\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n else {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr] = blockDataBuffer[blockPtr++] + resultPixelsPrevDim[outPtr];\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n }\n else if (mask) {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n if (mask[outPtr]) {\n resultPixels[outPtr] = blockDataBuffer[blockPtr++];\n }\n outPtr++;\n }\n outPtr += outStride;\n }\n }\n else {\n for (row = 0; row < thisBlockHeight; row++) {\n for (col = 0; col < thisBlockWidth; col++) {\n resultPixels[outPtr++] = blockDataBuffer[blockPtr++];\n }\n outPtr += outStride;\n }\n }\n }\n }\n }\n }\n }\n //swap for BIP: it's always easier for clients to handle BSQ so we keep existing logic and introduce a swap here to minimze changes\n if (numDims > 1 && !useBSQForOutputDim) {\n data.pixels.resultPixels = Lerc2Helpers.swapDimensionOrder(data.pixels.resultPixels, numPixels, numDims, OutPixelTypeArray);\n }\n },\n\n /*****************\n * private methods (helper methods)\n *****************/\n\n formatFileInfo: function(data) {\n return {\n \"fileIdentifierString\": data.headerInfo.fileIdentifierString,\n \"fileVersion\": data.headerInfo.fileVersion,\n \"imageType\": data.headerInfo.imageType,\n \"height\": data.headerInfo.height,\n \"width\": data.headerInfo.width,\n \"numValidPixel\": data.headerInfo.numValidPixel,\n \"microBlockSize\": data.headerInfo.microBlockSize,\n \"blobSize\": data.headerInfo.blobSize,\n \"maxZError\": data.headerInfo.maxZError,\n \"pixelType\": Lerc2Helpers.getPixelType(data.headerInfo.imageType),\n \"eofOffset\": data.eofOffset,\n \"mask\": data.mask ? {\n \"numBytes\": data.mask.numBytes\n } : null,\n \"pixels\": {\n \"numBlocksX\": data.pixels.numBlocksX,\n \"numBlocksY\": data.pixels.numBlocksY,\n //\"numBytes\": data.pixels.numBytes,\n \"maxValue\": data.headerInfo.zMax,\n \"minValue\": data.headerInfo.zMin,\n \"noDataValue\": data.noDataValue\n }\n };\n },\n\n constructConstantSurface: function(data, useBSQForOutputDim) {\n var val = data.headerInfo.zMax;\n var valMin = data.headerInfo.zMin;\n var maxValues = data.headerInfo.maxValues;\n var numDims = data.headerInfo.numDims;\n var numPixels = data.headerInfo.height * data.headerInfo.width;\n var i = 0, k = 0, nStart = 0;\n var mask = data.pixels.resultMask;\n var resultPixels = data.pixels.resultPixels;\n if (mask) {\n if (numDims > 1) {\n if (useBSQForOutputDim) {\n for (i = 0; i < numDims; i++) {\n nStart = i * numPixels;\n val = maxValues[i];\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n resultPixels[nStart + k] = val;\n }\n }\n } \n }\n else {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n nStart = k * numDims;\n for (i = 0; i < numDims; i++) {\n resultPixels[nStart + numDims] = maxValues[i];\n }\n }\n }\n }\n }\n else {\n for (k = 0; k < numPixels; k++) {\n if (mask[k]) {\n resultPixels[k] = val;\n }\n }\n }\n }\n else {\n if (numDims > 1 && valMin !== val) {\n if (useBSQForOutputDim) {\n for (i = 0; i < numDims; i++) {\n nStart = i * numPixels;\n val = maxValues[i];\n for (k = 0; k < numPixels; k++) {\n resultPixels[nStart + k] = val;\n }\n }\n }\n else {\n for (k = 0; k < numPixels; k++) {\n nStart = k * numDims;\n for (i = 0; i < numDims; i++) {\n resultPixels[nStart + i] = maxValues[i];\n }\n }\n }\n }\n else {\n for (k = 0; k < numPixels * numDims; k++) {\n resultPixels[k] = val;\n }\n }\n }\n return;\n },\n\n getDataTypeArray: function(t) {\n var tp;\n switch (t) {\n case 0: //char\n tp = Int8Array;\n break;\n case 1: //byte\n tp = Uint8Array;\n break;\n case 2: //short\n tp = Int16Array;\n break;\n case 3: //ushort\n tp = Uint16Array;\n break;\n case 4:\n tp = Int32Array;\n break;\n case 5:\n tp = Uint32Array;\n break;\n case 6:\n tp = Float32Array;\n break;\n case 7:\n tp = Float64Array;\n break;\n default:\n tp = Float32Array;\n }\n return tp;\n },\n\n getPixelType: function(t) {\n var tp;\n switch (t) {\n case 0: //char\n tp = \"S8\";\n break;\n case 1: //byte\n tp = \"U8\";\n break;\n case 2: //short\n tp = \"S16\";\n break;\n case 3: //ushort\n tp = \"U16\";\n break;\n case 4:\n tp = \"S32\";\n break;\n case 5:\n tp = \"U32\";\n break;\n case 6:\n tp = \"F32\";\n break;\n case 7:\n tp = \"F64\";\n break;\n default:\n tp = \"F32\";\n }\n return tp;\n },\n\n isValidPixelValue: function(t, val) {\n if (val == null) {\n return false;\n }\n var isValid;\n switch (t) {\n case 0: //char\n isValid = val >= -128 && val <= 127;\n break;\n case 1: //byte (unsigned char)\n isValid = val >= 0 && val <= 255;\n break;\n case 2: //short\n isValid = val >= -32768 && val <= 32767;\n break;\n case 3: //ushort\n isValid = val >= 0 && val <= 65536;\n break;\n case 4: //int 32\n isValid = val >= -2147483648 && val <= 2147483647;\n break;\n case 5: //uinit 32\n isValid = val >= 0 && val <= 4294967296;\n break;\n case 6:\n isValid = val >= -3.4027999387901484e+38 && val <= 3.4027999387901484e+38;\n break;\n case 7:\n isValid = val >= -1.7976931348623157e+308 && val <= 1.7976931348623157e+308;\n break;\n default:\n isValid = false;\n }\n return isValid;\n },\n\n getDataTypeSize: function(t) {\n var s = 0;\n switch (t) {\n case 0: //ubyte\n case 1: //byte\n s = 1;\n break;\n case 2: //short\n case 3: //ushort\n s = 2;\n break;\n case 4:\n case 5:\n case 6:\n s = 4;\n break;\n case 7:\n s = 8;\n break;\n default:\n s = t;\n }\n return s;\n },\n\n getDataTypeUsed: function(dt, tc) {\n var t = dt;\n switch (dt) {\n case 2: //short\n case 4: //long\n t = dt - tc;\n break;\n case 3: //ushort\n case 5: //ulong\n t = dt - 2 * tc;\n break;\n case 6: //float\n if (0 === tc) {\n t = dt;\n }\n else if (1 === tc) {\n t = 2;\n }\n else {\n t = 1;//byte\n }\n break;\n case 7: //double\n if (0 === tc) {\n t = dt;\n }\n else {\n t = dt - 2 * tc + 1;\n }\n break;\n default:\n t = dt;\n break;\n }\n return t;\n },\n\n getOnePixel: function(block, blockPtr, offsetType, view) {\n var temp = 0;\n switch (offsetType) {\n case 0: //char\n temp = view.getInt8(blockPtr);\n break;\n case 1: //byte\n temp = view.getUint8(blockPtr);\n break;\n case 2:\n temp = view.getInt16(blockPtr, true);\n break;\n case 3:\n temp = view.getUint16(blockPtr, true);\n break;\n case 4:\n temp = view.getInt32(blockPtr, true);\n break;\n case 5:\n temp = view.getUInt32(blockPtr, true);\n break;\n case 6:\n temp = view.getFloat32(blockPtr, true);\n break;\n case 7:\n temp = view.getFloat64(blockPtr, true);\n break;\n default:\n throw (\"the decoder does not understand this pixel type\");\n }\n return temp;\n },\n\n swapDimensionOrder: function(pixels, numPixels, numDims, OutPixelTypeArray, inputIsBIP) {\n var i = 0, j = 0, iDim = 0, temp = 0, swap = pixels;\n if (numDims > 1) {\n swap = new OutPixelTypeArray(numPixels * numDims);\n if (inputIsBIP) {\n for (i=0; i 5) {\n throw \"unsupported lerc version 2.\" + fileVersion;\n }\n\n // Mask Header\n Lerc2Helpers.readMask(input, data);\n if (headerInfo.numValidPixel !== headerInfo.width * headerInfo.height && !data.pixels.resultMask) {\n data.pixels.resultMask = options.maskData;\n }\n\n var numPixels = headerInfo.width * headerInfo.height;\n data.pixels.resultPixels = new OutPixelTypeArray(numPixels * headerInfo.numDims);\n\n data.counter = {\n onesweep: 0,\n uncompressed: 0,\n lut: 0,\n bitstuffer: 0,\n constant: 0,\n constantoffset: 0\n };\n var useBSQForOutputDim = !options.returnPixelInterleavedDims;\n if (headerInfo.numValidPixel !== 0) {\n //not tested\n if (headerInfo.zMax === headerInfo.zMin) //constant surface\n {\n Lerc2Helpers.constructConstantSurface(data, useBSQForOutputDim);\n }\n else if (fileVersion >= 4 && Lerc2Helpers.checkMinMaxRanges(input, data)) {\n Lerc2Helpers.constructConstantSurface(data, useBSQForOutputDim);\n }\n else {\n var view = new DataView(input, data.ptr, 2);\n var bReadDataOneSweep = view.getUint8(0);\n data.ptr++;\n if (bReadDataOneSweep) {\n //console.debug(\"OneSweep\");\n Lerc2Helpers.readDataOneSweep(input, data, OutPixelTypeArray, useBSQForOutputDim);\n }\n else {\n //lerc2.1: //bitstuffing + lut\n //lerc2.2: //bitstuffing + lut + huffman\n //lerc2.3: new bitstuffer\n if (fileVersion > 1 && headerInfo.imageType <= 1 && Math.abs(headerInfo.maxZError - 0.5) < 0.00001) {\n //this is 2.x plus 8 bit (unsigned and signed) data, possiblity of Huffman\n var flagHuffman = view.getUint8(1);\n data.ptr++;\n data.encodeMode = flagHuffman;\n if (flagHuffman > 2 || (fileVersion < 4 && flagHuffman > 1)) {\n throw \"Invalid Huffman flag \" + flagHuffman;\n }\n if (flagHuffman) {//1 - delta Huffman, 2 - Huffman\n //console.log(\"Huffman\");\n Lerc2Helpers.readHuffman(input, data, OutPixelTypeArray, useBSQForOutputDim);\n }\n else {\n //console.log(\"Tiles\");\n Lerc2Helpers.readTiles(input, data, OutPixelTypeArray, useBSQForOutputDim);\n }\n }\n else { //lerc2.x non-8 bit data\n //console.log(\"Tiles\");\n Lerc2Helpers.readTiles(input, data, OutPixelTypeArray, useBSQForOutputDim);\n }\n }\n }\n }\n\n data.eofOffset = data.ptr;\n var diff;\n if (options.inputOffset) {\n diff = data.headerInfo.blobSize + options.inputOffset - data.ptr;\n if (Math.abs(diff) >= 1) {\n //console.debug(\"incorrect eof: dataptr \" + data.ptr + \" offset \" + options.inputOffset + \" blobsize \" + data.headerInfo.blobSize + \" diff: \" + diff);\n data.eofOffset = options.inputOffset + data.headerInfo.blobSize;\n }\n }\n else {\n diff = data.headerInfo.blobSize - data.ptr;\n if (Math.abs(diff) >= 1) {\n //console.debug(\"incorrect first band eof: dataptr \" + data.ptr + \" blobsize \" + data.headerInfo.blobSize + \" diff: \" + diff);\n data.eofOffset = data.headerInfo.blobSize;\n }\n }\n\n var result = {\n width: headerInfo.width,\n height: headerInfo.height,\n pixelData: data.pixels.resultPixels,\n minValue: headerInfo.zMin,\n maxValue: headerInfo.zMax,\n validPixelCount: headerInfo.numValidPixel,\n dimCount: headerInfo.numDims,\n dimStats: {\n minValues: headerInfo.minValues,\n maxValues: headerInfo.maxValues\n },\n maskData: data.pixels.resultMask\n //noDataValue: noDataValue\n };\n\n //we should remove this if there's no existing client\n //optional noDataValue processing, it's user's responsiblity\n if (data.pixels.resultMask && Lerc2Helpers.isValidPixelValue(headerInfo.imageType, noDataValue)) {\n var mask = data.pixels.resultMask;\n for (i = 0; i < numPixels; i++) {\n if (!mask[i]) {\n result.pixelData[i] = noDataValue;\n }\n }\n result.noDataValue = noDataValue;\n }\n data.noDataValue = noDataValue;\n if (options.returnFileInfo) {\n result.fileInfo = Lerc2Helpers.formatFileInfo(data);\n }\n return result;\n },\n\n getBandCount: function(/*byte array*/ input) {\n var count = 0;\n var i = 0;\n var temp = {};\n temp.ptr = 0;\n temp.pixels = {};\n while (i < input.byteLength - 58) {\n Lerc2Helpers.readHeaderInfo(input, temp);\n i += temp.headerInfo.blobSize;\n count++;\n temp.ptr = i;\n }\n return count;\n }\n };\n\n return Lerc2Decode;\n })();\n\n var isPlatformLittleEndian = (function() {\n var a = new ArrayBuffer(4);\n var b = new Uint8Array(a);\n var c = new Uint32Array(a);\n c[0] = 1;\n return b[0] === 1;\n })();\n\n var Lerc = {\n /************wrapper**********************************************/\n /**\n * A wrapper for decoding both LERC1 and LERC2 byte streams capable of handling multiband pixel blocks for various pixel types.\n *\n * @alias module:Lerc\n * @param {ArrayBuffer} input The LERC input byte stream\n * @param {object} [options] The decoding options below are optional.\n * @param {number} [options.inputOffset] The number of bytes to skip in the input byte stream. A valid Lerc file is expected at that position.\n * @param {string} [options.pixelType] (LERC1 only) Default value is F32. Valid pixel types for input are U8/S8/S16/U16/S32/U32/F32.\n * @param {number} [options.noDataValue] (LERC1 only). It is recommended to use the returned mask instead of setting this value.\n * @param {boolean} [options.returnPixelInterleavedDims] (nDim LERC2 only) If true, returned dimensions are pixel-interleaved, a.k.a [p1_dim0, p1_dim1, p1_dimn, p2_dim0...], default is [p1_dim0, p2_dim0, ..., p1_dim1, p2_dim1...]\n * @returns {{width, height, pixels, pixelType, mask, statistics}}\n * @property {number} width Width of decoded image.\n * @property {number} height Height of decoded image.\n * @property {array} pixels [band1, band2, …] Each band is a typed array of width*height.\n * @property {string} pixelType The type of pixels represented in the output.\n * @property {mask} mask Typed array with a size of width*height, or null if all pixels are valid.\n * @property {array} statistics [statistics_band1, statistics_band2, …] Each element is a statistics object representing min and max values\n **/\n decode: function(encodedData, options) {\n if (!isPlatformLittleEndian) {\n throw \"Big endian system is not supported.\";\n }\n options = options || {};\n var inputOffset = options.inputOffset || 0;\n var fileIdView = new Uint8Array(encodedData, inputOffset, 10);\n var fileIdentifierString = String.fromCharCode.apply(null, fileIdView);\n var lerc, majorVersion;\n if (fileIdentifierString.trim() === \"CntZImage\") {\n lerc = LercDecode;\n majorVersion = 1;\n }\n else if (fileIdentifierString.substring(0, 5) === \"Lerc2\") {\n lerc = Lerc2Decode;\n majorVersion = 2;\n }\n else {\n throw \"Unexpected file identifier string: \" + fileIdentifierString;\n }\n\n var iPlane = 0, eof = encodedData.byteLength - 10, encodedMaskData, bandMasks = [], bandMask, maskData;\n var decodedPixelBlock = {\n width: 0,\n height: 0,\n pixels: [],\n pixelType: options.pixelType,\n mask: null,\n statistics: []\n };\n var uniqueBandMaskCount = 0;\n\n while (inputOffset < eof) {\n var result = lerc.decode(encodedData, {\n inputOffset: inputOffset,//for both lerc1 and lerc2\n encodedMaskData: encodedMaskData,//lerc1 only\n maskData: maskData,//lerc2 only\n returnMask: iPlane === 0 ? true : false,//lerc1 only\n returnEncodedMask: iPlane === 0 ? true : false,//lerc1 only\n returnFileInfo: true,//for both lerc1 and lerc2\n returnPixelInterleavedDims: options.returnPixelInterleavedDims,//for ndim lerc2 only\n pixelType: options.pixelType || null,//lerc1 only\n noDataValue: options.noDataValue || null//lerc1 only\n });\n\n inputOffset = result.fileInfo.eofOffset;\n maskData = result.maskData;//lerc2\n if (iPlane === 0) {\n encodedMaskData = result.encodedMaskData;//lerc1\n decodedPixelBlock.width = result.width;\n decodedPixelBlock.height = result.height;\n decodedPixelBlock.dimCount = result.dimCount || 1;\n //decodedPixelBlock.dimStats = decodedPixelBlock.dimStats;\n decodedPixelBlock.pixelType = result.pixelType || result.fileInfo.pixelType;\n decodedPixelBlock.mask = maskData;\n }\n if (majorVersion > 1) {\n if (maskData) {\n bandMasks.push(maskData);\n }\n if (result.fileInfo.mask && result.fileInfo.mask.numBytes > 0) {\n uniqueBandMaskCount++;\n }\n }\n\n iPlane++;\n decodedPixelBlock.pixels.push(result.pixelData);\n decodedPixelBlock.statistics.push({\n minValue: result.minValue,\n maxValue: result.maxValue,\n noDataValue: result.noDataValue,\n dimStats: result.dimStats\n });\n }\n var i, j, numPixels;\n if (majorVersion > 1 && uniqueBandMaskCount > 1) {\n numPixels = decodedPixelBlock.width * decodedPixelBlock.height;\n decodedPixelBlock.bandMasks = bandMasks;\n maskData = new Uint8Array(numPixels);\n maskData.set(bandMasks[0]);\n for (i = 1; i < bandMasks.length; i++) {\n bandMask = bandMasks[i];\n for (j = 0; j < numPixels; j++) {\n maskData[j] = maskData[j] & bandMask[j];\n }\n }\n decodedPixelBlock.maskData = maskData;\n }\n\n return decodedPixelBlock;\n }\n };\n\n if (typeof define === \"function\" && define.amd) {/* jshint ignore:line */\n //amd loaders such as dojo and requireJS\n //http://wiki.commonjs.org/wiki/Modules/AsynchronousDefinition\n define([], function() { return Lerc; });/* jshint ignore:line */\n }\n else if (typeof module !== \"undefined\" && module.exports) {/* jshint ignore:line */\n //commonJS module 1.0/1.1/1.1.1 systems, such as nodeJS\n //http://wiki.commonjs.org/wiki/Modules\n module.exports = Lerc;/* jshint ignore:line */\n }\n else {\n //assign to this, most likely window\n this.Lerc = Lerc;\n }\n\n})();\n","interface DecoderExports {\n\tmemory: Uint8Array;\n\n\tZSTD_findDecompressedSize: (compressedPtr: number, compressedSize: number) => BigInt;\n\tZSTD_decompress: (uncompressedPtr: number, uncompressedSize: number, compressedPtr: number, compressedSize: number) => number;\n\tmalloc: (ptr: number) => number;\n\tfree: (ptr: number) => void;\n}\n\nlet init: Promise;\nlet instance: {exports: DecoderExports};\nlet heap: Uint8Array;\n\nconst IMPORT_OBJECT = {\n\n\tenv: {\n\n\t\temscripten_notify_memory_growth: function ( index: number ): void {\n\n\t\t\theap = new Uint8Array( instance.exports.memory.buffer );\n\n\t\t}\n\n\t}\n\n};\n\n/**\n * ZSTD (Zstandard) decoder.\n */\nexport class ZSTDDecoder {\n\n\tinit (): Promise {\n\n\t\tif ( init ) return init;\n\n\t\tif ( typeof fetch !== 'undefined' ) {\n\n\t\t\t// Web.\n\n\t\t\tinit = fetch( 'data:application/wasm;base64,' + wasm )\n\t\t\t\t.then( ( response ) => response.arrayBuffer() )\n\t\t\t\t.then( ( arrayBuffer ) => WebAssembly.instantiate( arrayBuffer, IMPORT_OBJECT ) )\n\t\t\t\t.then( this._init );\n\n\t\t} else {\n\n\t\t\t// Node.js.\n\n\t\t\tinit = WebAssembly\n\t\t\t\t.instantiate( Buffer.from( wasm, 'base64' ), IMPORT_OBJECT )\n\t\t\t\t.then( this._init );\n\n\t\t}\n\n\t\treturn init;\n\n\t}\n\n\t_init ( result: WebAssembly.WebAssemblyInstantiatedSource ): void {\n\n\t\tinstance = result.instance as unknown as { exports: DecoderExports };\n\n\t\tIMPORT_OBJECT.env.emscripten_notify_memory_growth( 0 ); // initialize heap.\n\n\t}\n\n\tdecode ( array: Uint8Array, uncompressedSize = 0 ): Uint8Array {\n\n\t\tif ( ! instance ) throw new Error( `ZSTDDecoder: Await .init() before decoding.` );\n\n\t\t// Write compressed data into WASM memory.\n\t\tconst compressedSize = array.byteLength;\n\t\tconst compressedPtr = instance.exports.malloc( compressedSize );\n\t\theap.set( array, compressedPtr );\n\n\t\t// Decompress into WASM memory.\n\t\tuncompressedSize = uncompressedSize || Number( instance.exports.ZSTD_findDecompressedSize( compressedPtr, compressedSize ) );\n\t\tconst uncompressedPtr = instance.exports.malloc( uncompressedSize );\n\t\tconst actualSize = instance.exports.ZSTD_decompress( uncompressedPtr, uncompressedSize, compressedPtr, compressedSize );\n\n\t\t// Read decompressed data and free WASM memory.\n\t\tconst dec = heap.slice( uncompressedPtr, uncompressedPtr + actualSize );\n\t\tinstance.exports.free( compressedPtr );\n\t\tinstance.exports.free( uncompressedPtr );\n\n\t\treturn dec;\n\n\t}\n\n}\n\n/**\n * BSD License\n *\n * For Zstandard software\n *\n * Copyright (c) 2016-present, Yann Collet, Facebook, Inc. All rights reserved.\n *\n * Redistribution and use in source and binary forms, with or without modification,\n * are permitted provided that the following conditions are met:\n *\n * * Redistributions of source code must retain the above copyright notice, this\n * list of conditions and the following disclaimer.\n *\n * * Redistributions in binary form must reproduce the above copyright notice,\n * this list of conditions and the following disclaimer in the documentation\n * and/or other materials provided with the distribution.\n *\n * * Neither the name Facebook nor the names of its contributors may be used to\n * endorse or promote products derived from this software without specific\n * prior written permission.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND\n * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\n * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR\n * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES\n * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;\n * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON\n * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n// wasm:begin\nconst wasm = 'AGFzbQEAAAABpQEVYAF/AX9gAn9/AGADf39/AX9gBX9/f39/AX9gAX8AYAJ/fwF/YAR/f39/AX9gA39/fwBgBn9/f39/fwF/YAd/f39/f39/AX9gAn9/AX5gAn5+AX5gAABgBX9/f39/AGAGf39/f39/AGAIf39/f39/f38AYAl/f39/f39/f38AYAABf2AIf39/f39/f38Bf2ANf39/f39/f39/f39/fwF/YAF/AX4CJwEDZW52H2Vtc2NyaXB0ZW5fbm90aWZ5X21lbW9yeV9ncm93dGgABANpaAEFAAAFAgEFCwACAQABAgIFBQcAAwABDgsBAQcAEhMHAAUBDAQEAAANBwQCAgYCBAgDAwMDBgEACQkHBgICAAYGAgQUBwYGAwIGAAMCAQgBBwUGCgoEEQAEBAEIAwgDBQgDEA8IAAcABAUBcAECAgUEAQCAAgYJAX8BQaCgwAILB2AHBm1lbW9yeQIABm1hbGxvYwAoBGZyZWUAJgxaU1REX2lzRXJyb3IAaBlaU1REX2ZpbmREZWNvbXByZXNzZWRTaXplAFQPWlNURF9kZWNvbXByZXNzAEoGX3N0YXJ0ACQJBwEAQQELASQKussBaA8AIAAgACgCBCABajYCBAsZACAAKAIAIAAoAgRBH3F0QQAgAWtBH3F2CwgAIABBiH9LC34BBH9BAyEBIAAoAgQiA0EgTQRAIAAoAggiASAAKAIQTwRAIAAQDQ8LIAAoAgwiAiABRgRAQQFBAiADQSBJGw8LIAAgASABIAJrIANBA3YiBCABIARrIAJJIgEbIgJrIgQ2AgggACADIAJBA3RrNgIEIAAgBCgAADYCAAsgAQsUAQF/IAAgARACIQIgACABEAEgAgv3AQECfyACRQRAIABCADcCACAAQQA2AhAgAEIANwIIQbh/DwsgACABNgIMIAAgAUEEajYCECACQQRPBEAgACABIAJqIgFBfGoiAzYCCCAAIAMoAAA2AgAgAUF/ai0AACIBBEAgAEEIIAEQFGs2AgQgAg8LIABBADYCBEF/DwsgACABNgIIIAAgAS0AACIDNgIAIAJBfmoiBEEBTQRAIARBAWtFBEAgACABLQACQRB0IANyIgM2AgALIAAgAS0AAUEIdCADajYCAAsgASACakF/ai0AACIBRQRAIABBADYCBEFsDwsgAEEoIAEQFCACQQN0ams2AgQgAgsWACAAIAEpAAA3AAAgACABKQAINwAICy8BAX8gAUECdEGgHWooAgAgACgCAEEgIAEgACgCBGprQR9xdnEhAiAAIAEQASACCyEAIAFCz9bTvtLHq9lCfiAAfEIfiUKHla+vmLbem55/fgsdAQF/IAAoAgggACgCDEYEfyAAKAIEQSBGBUEACwuCBAEDfyACQYDAAE8EQCAAIAEgAhBnIAAPCyAAIAJqIQMCQCAAIAFzQQNxRQRAAkAgAkEBSARAIAAhAgwBCyAAQQNxRQRAIAAhAgwBCyAAIQIDQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADTw0BIAJBA3ENAAsLAkAgA0F8cSIEQcAASQ0AIAIgBEFAaiIFSw0AA0AgAiABKAIANgIAIAIgASgCBDYCBCACIAEoAgg2AgggAiABKAIMNgIMIAIgASgCEDYCECACIAEoAhQ2AhQgAiABKAIYNgIYIAIgASgCHDYCHCACIAEoAiA2AiAgAiABKAIkNgIkIAIgASgCKDYCKCACIAEoAiw2AiwgAiABKAIwNgIwIAIgASgCNDYCNCACIAEoAjg2AjggAiABKAI8NgI8IAFBQGshASACQUBrIgIgBU0NAAsLIAIgBE8NAQNAIAIgASgCADYCACABQQRqIQEgAkEEaiICIARJDQALDAELIANBBEkEQCAAIQIMAQsgA0F8aiIEIABJBEAgACECDAELIAAhAgNAIAIgAS0AADoAACACIAEtAAE6AAEgAiABLQACOgACIAIgAS0AAzoAAyABQQRqIQEgAkEEaiICIARNDQALCyACIANJBEADQCACIAEtAAA6AAAgAUEBaiEBIAJBAWoiAiADRw0ACwsgAAsMACAAIAEpAAA3AAALQQECfyAAKAIIIgEgACgCEEkEQEEDDwsgACAAKAIEIgJBB3E2AgQgACABIAJBA3ZrIgE2AgggACABKAAANgIAQQALDAAgACABKAIANgAAC/cCAQJ/AkAgACABRg0AAkAgASACaiAASwRAIAAgAmoiBCABSw0BCyAAIAEgAhALDwsgACABc0EDcSEDAkACQCAAIAFJBEAgAwRAIAAhAwwDCyAAQQNxRQRAIAAhAwwCCyAAIQMDQCACRQ0EIAMgAS0AADoAACABQQFqIQEgAkF/aiECIANBAWoiA0EDcQ0ACwwBCwJAIAMNACAEQQNxBEADQCACRQ0FIAAgAkF/aiICaiIDIAEgAmotAAA6AAAgA0EDcQ0ACwsgAkEDTQ0AA0AgACACQXxqIgJqIAEgAmooAgA2AgAgAkEDSw0ACwsgAkUNAgNAIAAgAkF/aiICaiABIAJqLQAAOgAAIAINAAsMAgsgAkEDTQ0AIAIhBANAIAMgASgCADYCACABQQRqIQEgA0EEaiEDIARBfGoiBEEDSw0ACyACQQNxIQILIAJFDQADQCADIAEtAAA6AAAgA0EBaiEDIAFBAWohASACQX9qIgINAAsLIAAL8wICAn8BfgJAIAJFDQAgACACaiIDQX9qIAE6AAAgACABOgAAIAJBA0kNACADQX5qIAE6AAAgACABOgABIANBfWogAToAACAAIAE6AAIgAkEHSQ0AIANBfGogAToAACAAIAE6AAMgAkEJSQ0AIABBACAAa0EDcSIEaiIDIAFB/wFxQYGChAhsIgE2AgAgAyACIARrQXxxIgRqIgJBfGogATYCACAEQQlJDQAgAyABNgIIIAMgATYCBCACQXhqIAE2AgAgAkF0aiABNgIAIARBGUkNACADIAE2AhggAyABNgIUIAMgATYCECADIAE2AgwgAkFwaiABNgIAIAJBbGogATYCACACQWhqIAE2AgAgAkFkaiABNgIAIAQgA0EEcUEYciIEayICQSBJDQAgAa0iBUIghiAFhCEFIAMgBGohAQNAIAEgBTcDGCABIAU3AxAgASAFNwMIIAEgBTcDACABQSBqIQEgAkFgaiICQR9LDQALCyAACy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAIajYCACADCy8BAn8gACgCBCAAKAIAQQJ0aiICLQACIQMgACACLwEAIAEgAi0AAxAFajYCACADCx8AIAAgASACKAIEEAg2AgAgARAEGiAAIAJBCGo2AgQLCAAgAGdBH3MLugUBDX8jAEEQayIKJAACfyAEQQNNBEAgCkEANgIMIApBDGogAyAEEAsaIAAgASACIApBDGpBBBAVIgBBbCAAEAMbIAAgACAESxsMAQsgAEEAIAEoAgBBAXRBAmoQECENQVQgAygAACIGQQ9xIgBBCksNABogAiAAQQVqNgIAIAMgBGoiAkF8aiEMIAJBeWohDiACQXtqIRAgAEEGaiELQQQhBSAGQQR2IQRBICAAdCIAQQFyIQkgASgCACEPQQAhAiADIQYCQANAIAlBAkggAiAPS3JFBEAgAiEHAkAgCARAA0AgBEH//wNxQf//A0YEQCAHQRhqIQcgBiAQSQR/IAZBAmoiBigAACAFdgUgBUEQaiEFIARBEHYLIQQMAQsLA0AgBEEDcSIIQQNGBEAgBUECaiEFIARBAnYhBCAHQQNqIQcMAQsLIAcgCGoiByAPSw0EIAVBAmohBQNAIAIgB0kEQCANIAJBAXRqQQA7AQAgAkEBaiECDAELCyAGIA5LQQAgBiAFQQN1aiIHIAxLG0UEQCAHKAAAIAVBB3EiBXYhBAwCCyAEQQJ2IQQLIAYhBwsCfyALQX9qIAQgAEF/anEiBiAAQQF0QX9qIgggCWsiEUkNABogBCAIcSIEQQAgESAEIABIG2shBiALCyEIIA0gAkEBdGogBkF/aiIEOwEAIAlBASAGayAEIAZBAUgbayEJA0AgCSAASARAIABBAXUhACALQX9qIQsMAQsLAn8gByAOS0EAIAcgBSAIaiIFQQN1aiIGIAxLG0UEQCAFQQdxDAELIAUgDCIGIAdrQQN0awshBSACQQFqIQIgBEUhCCAGKAAAIAVBH3F2IQQMAQsLQWwgCUEBRyAFQSBKcg0BGiABIAJBf2o2AgAgBiAFQQdqQQN1aiADawwBC0FQCyEAIApBEGokACAACwkAQQFBBSAAGwsMACAAIAEoAAA2AAALqgMBCn8jAEHwAGsiCiQAIAJBAWohDiAAQQhqIQtBgIAEIAVBf2p0QRB1IQxBACECQQEhBkEBIAV0IglBf2oiDyEIA0AgAiAORkUEQAJAIAEgAkEBdCINai8BACIHQf//A0YEQCALIAhBA3RqIAI2AgQgCEF/aiEIQQEhBwwBCyAGQQAgDCAHQRB0QRB1ShshBgsgCiANaiAHOwEAIAJBAWohAgwBCwsgACAFNgIEIAAgBjYCACAJQQN2IAlBAXZqQQNqIQxBACEAQQAhBkEAIQIDQCAGIA5GBEADQAJAIAAgCUYNACAKIAsgAEEDdGoiASgCBCIGQQF0aiICIAIvAQAiAkEBajsBACABIAUgAhAUayIIOgADIAEgAiAIQf8BcXQgCWs7AQAgASAEIAZBAnQiAmooAgA6AAIgASACIANqKAIANgIEIABBAWohAAwBCwsFIAEgBkEBdGouAQAhDUEAIQcDQCAHIA1ORQRAIAsgAkEDdGogBjYCBANAIAIgDGogD3EiAiAISw0ACyAHQQFqIQcMAQsLIAZBAWohBgwBCwsgCkHwAGokAAsjAEIAIAEQCSAAhUKHla+vmLbem55/fkLj3MqV/M7y9YV/fAsQACAAQn43AwggACABNgIACyQBAX8gAARAIAEoAgQiAgRAIAEoAgggACACEQEADwsgABAmCwsfACAAIAEgAi8BABAINgIAIAEQBBogACACQQRqNgIEC0oBAX9BoCAoAgAiASAAaiIAQX9MBEBBiCBBMDYCAEF/DwsCQCAAPwBBEHRNDQAgABBmDQBBiCBBMDYCAEF/DwtBoCAgADYCACABC9cBAQh/Qbp/IQoCQCACKAIEIgggAigCACIJaiIOIAEgAGtLDQBBbCEKIAkgBCADKAIAIgtrSw0AIAAgCWoiBCACKAIIIgxrIQ0gACABQWBqIg8gCyAJQQAQKSADIAkgC2o2AgACQAJAIAwgBCAFa00EQCANIQUMAQsgDCAEIAZrSw0CIAcgDSAFayIAaiIBIAhqIAdNBEAgBCABIAgQDxoMAgsgBCABQQAgAGsQDyEBIAIgACAIaiIINgIEIAEgAGshBAsgBCAPIAUgCEEBECkLIA4hCgsgCgubAgEBfyMAQYABayINJAAgDSADNgJ8AkAgAkEDSwRAQX8hCQwBCwJAAkACQAJAIAJBAWsOAwADAgELIAZFBEBBuH8hCQwEC0FsIQkgBS0AACICIANLDQMgACAHIAJBAnQiAmooAgAgAiAIaigCABA7IAEgADYCAEEBIQkMAwsgASAJNgIAQQAhCQwCCyAKRQRAQWwhCQwCC0EAIQkgC0UgDEEZSHINAUEIIAR0QQhqIQBBACECA0AgAiAATw0CIAJBQGshAgwAAAsAC0FsIQkgDSANQfwAaiANQfgAaiAFIAYQFSICEAMNACANKAJ4IgMgBEsNACAAIA0gDSgCfCAHIAggAxAYIAEgADYCACACIQkLIA1BgAFqJAAgCQsLACAAIAEgAhALGgsQACAALwAAIAAtAAJBEHRyCy8AAn9BuH8gAUEISQ0AGkFyIAAoAAQiAEF3Sw0AGkG4fyAAQQhqIgAgACABSxsLCwkAIAAgATsAAAsDAAELigYBBX8gACAAKAIAIgVBfnE2AgBBACAAIAVBAXZqQYQgKAIAIgQgAEYbIQECQAJAIAAoAgQiAkUNACACKAIAIgNBAXENACACQQhqIgUgA0EBdkF4aiIDQQggA0EISxtnQR9zQQJ0QYAfaiIDKAIARgRAIAMgAigCDDYCAAsgAigCCCIDBEAgAyACKAIMNgIECyACKAIMIgMEQCADIAIoAgg2AgALIAIgAigCACAAKAIAQX5xajYCAEGEICEAAkACQCABRQ0AIAEgAjYCBCABKAIAIgNBAXENASADQQF2QXhqIgNBCCADQQhLG2dBH3NBAnRBgB9qIgMoAgAgAUEIakYEQCADIAEoAgw2AgALIAEoAggiAwRAIAMgASgCDDYCBAsgASgCDCIDBEAgAyABKAIINgIAQYQgKAIAIQQLIAIgAigCACABKAIAQX5xajYCACABIARGDQAgASABKAIAQQF2akEEaiEACyAAIAI2AgALIAIoAgBBAXZBeGoiAEEIIABBCEsbZ0Efc0ECdEGAH2oiASgCACEAIAEgBTYCACACIAA2AgwgAkEANgIIIABFDQEgACAFNgIADwsCQCABRQ0AIAEoAgAiAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAigCACABQQhqRgRAIAIgASgCDDYCAAsgASgCCCICBEAgAiABKAIMNgIECyABKAIMIgIEQCACIAEoAgg2AgBBhCAoAgAhBAsgACAAKAIAIAEoAgBBfnFqIgI2AgACQCABIARHBEAgASABKAIAQQF2aiAANgIEIAAoAgAhAgwBC0GEICAANgIACyACQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgIoAgAhASACIABBCGoiAjYCACAAIAE2AgwgAEEANgIIIAFFDQEgASACNgIADwsgBUEBdkF4aiIBQQggAUEISxtnQR9zQQJ0QYAfaiICKAIAIQEgAiAAQQhqIgI2AgAgACABNgIMIABBADYCCCABRQ0AIAEgAjYCAAsLDgAgAARAIABBeGoQJQsLgAIBA38CQCAAQQ9qQXhxQYQgKAIAKAIAQQF2ayICEB1Bf0YNAAJAQYQgKAIAIgAoAgAiAUEBcQ0AIAFBAXZBeGoiAUEIIAFBCEsbZ0Efc0ECdEGAH2oiASgCACAAQQhqRgRAIAEgACgCDDYCAAsgACgCCCIBBEAgASAAKAIMNgIECyAAKAIMIgFFDQAgASAAKAIINgIAC0EBIQEgACAAKAIAIAJBAXRqIgI2AgAgAkEBcQ0AIAJBAXZBeGoiAkEIIAJBCEsbZ0Efc0ECdEGAH2oiAygCACECIAMgAEEIaiIDNgIAIAAgAjYCDCAAQQA2AgggAkUNACACIAM2AgALIAELtwIBA38CQAJAIABBASAAGyICEDgiAA0AAkACQEGEICgCACIARQ0AIAAoAgAiA0EBcQ0AIAAgA0EBcjYCACADQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgAgAEEIakYEQCABIAAoAgw2AgALIAAoAggiAQRAIAEgACgCDDYCBAsgACgCDCIBBEAgASAAKAIINgIACyACECchAkEAIQFBhCAoAgAhACACDQEgACAAKAIAQX5xNgIAQQAPCyACQQ9qQXhxIgMQHSICQX9GDQIgAkEHakF4cSIAIAJHBEAgACACaxAdQX9GDQMLAkBBhCAoAgAiAUUEQEGAICAANgIADAELIAAgATYCBAtBhCAgADYCACAAIANBAXRBAXI2AgAMAQsgAEUNAQsgAEEIaiEBCyABC7kDAQJ/IAAgA2ohBQJAIANBB0wEQANAIAAgBU8NAiAAIAItAAA6AAAgAEEBaiEAIAJBAWohAgwAAAsACyAEQQFGBEACQCAAIAJrIgZBB00EQCAAIAItAAA6AAAgACACLQABOgABIAAgAi0AAjoAAiAAIAItAAM6AAMgAEEEaiACIAZBAnQiBkHAHmooAgBqIgIQFyACIAZB4B5qKAIAayECDAELIAAgAhAMCyACQQhqIQIgAEEIaiEACwJAAkACQAJAIAUgAU0EQCAAIANqIQEgBEEBRyAAIAJrQQ9Kcg0BA0AgACACEAwgAkEIaiECIABBCGoiACABSQ0ACwwFCyAAIAFLBEAgACEBDAQLIARBAUcgACACa0EPSnINASAAIQMgAiEEA0AgAyAEEAwgBEEIaiEEIANBCGoiAyABSQ0ACwwCCwNAIAAgAhAHIAJBEGohAiAAQRBqIgAgAUkNAAsMAwsgACEDIAIhBANAIAMgBBAHIARBEGohBCADQRBqIgMgAUkNAAsLIAIgASAAa2ohAgsDQCABIAVPDQEgASACLQAAOgAAIAFBAWohASACQQFqIQIMAAALAAsLQQECfyAAIAAoArjgASIDNgLE4AEgACgCvOABIQQgACABNgK84AEgACABIAJqNgK44AEgACABIAQgA2tqNgLA4AELpgEBAX8gACAAKALs4QEQFjYCyOABIABCADcD+OABIABCADcDuOABIABBwOABakIANwMAIABBqNAAaiIBQYyAgOAANgIAIABBADYCmOIBIABCADcDiOEBIABCAzcDgOEBIABBrNABakHgEikCADcCACAAQbTQAWpB6BIoAgA2AgAgACABNgIMIAAgAEGYIGo2AgggACAAQaAwajYCBCAAIABBEGo2AgALYQEBf0G4fyEDAkAgAUEDSQ0AIAIgABAhIgFBA3YiADYCCCACIAFBAXE2AgQgAiABQQF2QQNxIgM2AgACQCADQX9qIgFBAksNAAJAIAFBAWsOAgEAAgtBbA8LIAAhAwsgAwsMACAAIAEgAkEAEC4LiAQCA38CfiADEBYhBCAAQQBBKBAQIQAgBCACSwRAIAQPCyABRQRAQX8PCwJAAkAgA0EBRg0AIAEoAAAiBkGo6r5pRg0AQXYhAyAGQXBxQdDUtMIBRw0BQQghAyACQQhJDQEgAEEAQSgQECEAIAEoAAQhASAAQQE2AhQgACABrTcDAEEADwsgASACIAMQLyIDIAJLDQAgACADNgIYQXIhAyABIARqIgVBf2otAAAiAkEIcQ0AIAJBIHEiBkUEQEFwIQMgBS0AACIFQacBSw0BIAVBB3GtQgEgBUEDdkEKaq2GIgdCA4h+IAd8IQggBEEBaiEECyACQQZ2IQMgAkECdiEFAkAgAkEDcUF/aiICQQJLBEBBACECDAELAkACQAJAIAJBAWsOAgECAAsgASAEai0AACECIARBAWohBAwCCyABIARqLwAAIQIgBEECaiEEDAELIAEgBGooAAAhAiAEQQRqIQQLIAVBAXEhBQJ+AkACQAJAIANBf2oiA0ECTQRAIANBAWsOAgIDAQtCfyAGRQ0DGiABIARqMQAADAMLIAEgBGovAACtQoACfAwCCyABIARqKAAArQwBCyABIARqKQAACyEHIAAgBTYCICAAIAI2AhwgACAHNwMAQQAhAyAAQQA2AhQgACAHIAggBhsiBzcDCCAAIAdCgIAIIAdCgIAIVBs+AhALIAMLWwEBf0G4fyEDIAIQFiICIAFNBH8gACACakF/ai0AACIAQQNxQQJ0QaAeaigCACACaiAAQQZ2IgFBAnRBsB5qKAIAaiAAQSBxIgBFaiABRSAAQQV2cWoFQbh/CwsdACAAKAKQ4gEQWiAAQQA2AqDiASAAQgA3A5DiAQu1AwEFfyMAQZACayIKJABBuH8hBgJAIAVFDQAgBCwAACIIQf8BcSEHAkAgCEF/TARAIAdBgn9qQQF2IgggBU8NAkFsIQYgB0GBf2oiBUGAAk8NAiAEQQFqIQdBACEGA0AgBiAFTwRAIAUhBiAIIQcMAwUgACAGaiAHIAZBAXZqIgQtAABBBHY6AAAgACAGQQFyaiAELQAAQQ9xOgAAIAZBAmohBgwBCwAACwALIAcgBU8NASAAIARBAWogByAKEFMiBhADDQELIAYhBEEAIQYgAUEAQTQQECEJQQAhBQNAIAQgBkcEQCAAIAZqIggtAAAiAUELSwRAQWwhBgwDBSAJIAFBAnRqIgEgASgCAEEBajYCACAGQQFqIQZBASAILQAAdEEBdSAFaiEFDAILAAsLQWwhBiAFRQ0AIAUQFEEBaiIBQQxLDQAgAyABNgIAQQFBASABdCAFayIDEBQiAXQgA0cNACAAIARqIAFBAWoiADoAACAJIABBAnRqIgAgACgCAEEBajYCACAJKAIEIgBBAkkgAEEBcXINACACIARBAWo2AgAgB0EBaiEGCyAKQZACaiQAIAYLxhEBDH8jAEHwAGsiBSQAQWwhCwJAIANBCkkNACACLwAAIQogAi8AAiEJIAIvAAQhByAFQQhqIAQQDgJAIAMgByAJIApqakEGaiIMSQ0AIAUtAAohCCAFQdgAaiACQQZqIgIgChAGIgsQAw0BIAVBQGsgAiAKaiICIAkQBiILEAMNASAFQShqIAIgCWoiAiAHEAYiCxADDQEgBUEQaiACIAdqIAMgDGsQBiILEAMNASAAIAFqIg9BfWohECAEQQRqIQZBASELIAAgAUEDakECdiIDaiIMIANqIgIgA2oiDiEDIAIhBCAMIQcDQCALIAMgEElxBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgCS0AAyELIAcgBiAFQUBrIAgQAkECdGoiCS8BADsAACAFQUBrIAktAAIQASAJLQADIQogBCAGIAVBKGogCBACQQJ0aiIJLwEAOwAAIAVBKGogCS0AAhABIAktAAMhCSADIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgDS0AAyENIAAgC2oiCyAGIAVB2ABqIAgQAkECdGoiAC8BADsAACAFQdgAaiAALQACEAEgAC0AAyEAIAcgCmoiCiAGIAVBQGsgCBACQQJ0aiIHLwEAOwAAIAVBQGsgBy0AAhABIActAAMhByAEIAlqIgkgBiAFQShqIAgQAkECdGoiBC8BADsAACAFQShqIAQtAAIQASAELQADIQQgAyANaiIDIAYgBUEQaiAIEAJBAnRqIg0vAQA7AAAgBUEQaiANLQACEAEgACALaiEAIAcgCmohByAEIAlqIQQgAyANLQADaiEDIAVB2ABqEA0gBUFAaxANciAFQShqEA1yIAVBEGoQDXJFIQsMAQsLIAQgDksgByACS3INAEFsIQsgACAMSw0BIAxBfWohCQNAQQAgACAJSSAFQdgAahAEGwRAIAAgBiAFQdgAaiAIEAJBAnRqIgovAQA7AAAgBUHYAGogCi0AAhABIAAgCi0AA2oiACAGIAVB2ABqIAgQAkECdGoiCi8BADsAACAFQdgAaiAKLQACEAEgACAKLQADaiEADAEFIAxBfmohCgNAIAVB2ABqEAQgACAKS3JFBEAgACAGIAVB2ABqIAgQAkECdGoiCS8BADsAACAFQdgAaiAJLQACEAEgACAJLQADaiEADAELCwNAIAAgCk0EQCAAIAYgBUHYAGogCBACQQJ0aiIJLwEAOwAAIAVB2ABqIAktAAIQASAAIAktAANqIQAMAQsLAkAgACAMTw0AIAAgBiAFQdgAaiAIEAIiAEECdGoiDC0AADoAACAMLQADQQFGBEAgBUHYAGogDC0AAhABDAELIAUoAlxBH0sNACAFQdgAaiAGIABBAnRqLQACEAEgBSgCXEEhSQ0AIAVBIDYCXAsgAkF9aiEMA0BBACAHIAxJIAVBQGsQBBsEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiIAIAYgBUFAayAIEAJBAnRqIgcvAQA7AAAgBUFAayAHLQACEAEgACAHLQADaiEHDAEFIAJBfmohDANAIAVBQGsQBCAHIAxLckUEQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwNAIAcgDE0EQCAHIAYgBUFAayAIEAJBAnRqIgAvAQA7AAAgBUFAayAALQACEAEgByAALQADaiEHDAELCwJAIAcgAk8NACAHIAYgBUFAayAIEAIiAEECdGoiAi0AADoAACACLQADQQFGBEAgBUFAayACLQACEAEMAQsgBSgCREEfSw0AIAVBQGsgBiAAQQJ0ai0AAhABIAUoAkRBIUkNACAFQSA2AkQLIA5BfWohAgNAQQAgBCACSSAFQShqEAQbBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2oiACAGIAVBKGogCBACQQJ0aiIELwEAOwAAIAVBKGogBC0AAhABIAAgBC0AA2ohBAwBBSAOQX5qIQIDQCAFQShqEAQgBCACS3JFBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsDQCAEIAJNBEAgBCAGIAVBKGogCBACQQJ0aiIALwEAOwAAIAVBKGogAC0AAhABIAQgAC0AA2ohBAwBCwsCQCAEIA5PDQAgBCAGIAVBKGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBKGogAi0AAhABDAELIAUoAixBH0sNACAFQShqIAYgAEECdGotAAIQASAFKAIsQSFJDQAgBUEgNgIsCwNAQQAgAyAQSSAFQRBqEAQbBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2oiACAGIAVBEGogCBACQQJ0aiICLwEAOwAAIAVBEGogAi0AAhABIAAgAi0AA2ohAwwBBSAPQX5qIQIDQCAFQRBqEAQgAyACS3JFBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsDQCADIAJNBEAgAyAGIAVBEGogCBACQQJ0aiIALwEAOwAAIAVBEGogAC0AAhABIAMgAC0AA2ohAwwBCwsCQCADIA9PDQAgAyAGIAVBEGogCBACIgBBAnRqIgItAAA6AAAgAi0AA0EBRgRAIAVBEGogAi0AAhABDAELIAUoAhRBH0sNACAFQRBqIAYgAEECdGotAAIQASAFKAIUQSFJDQAgBUEgNgIUCyABQWwgBUHYAGoQCiAFQUBrEApxIAVBKGoQCnEgBUEQahAKcRshCwwJCwAACwALAAALAAsAAAsACwAACwALQWwhCwsgBUHwAGokACALC7UEAQ5/IwBBEGsiBiQAIAZBBGogABAOQVQhBQJAIARB3AtJDQAgBi0ABCEHIANB8ARqQQBB7AAQECEIIAdBDEsNACADQdwJaiIJIAggBkEIaiAGQQxqIAEgAhAxIhAQA0UEQCAGKAIMIgQgB0sNASADQdwFaiEPIANBpAVqIREgAEEEaiESIANBqAVqIQEgBCEFA0AgBSICQX9qIQUgCCACQQJ0aigCAEUNAAsgAkEBaiEOQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgASALaiAKNgIAIAVBAWohBSAKIAxqIQoMAQsLIAEgCjYCAEEAIQUgBigCCCELA0AgBSALRkUEQCABIAUgCWotAAAiDEECdGoiDSANKAIAIg1BAWo2AgAgDyANQQF0aiINIAw6AAEgDSAFOgAAIAVBAWohBQwBCwtBACEBIANBADYCqAUgBEF/cyAHaiEJQQEhBQNAIAUgDk9FBEAgCCAFQQJ0IgtqKAIAIQwgAyALaiABNgIAIAwgBSAJanQgAWohASAFQQFqIQUMAQsLIAcgBEEBaiIBIAJrIgRrQQFqIQgDQEEBIQUgBCAIT0UEQANAIAUgDk9FBEAgBUECdCIJIAMgBEE0bGpqIAMgCWooAgAgBHY2AgAgBUEBaiEFDAELCyAEQQFqIQQMAQsLIBIgByAPIAogESADIAIgARBkIAZBAToABSAGIAc6AAYgACAGKAIENgIACyAQIQULIAZBEGokACAFC8ENAQt/IwBB8ABrIgUkAEFsIQkCQCADQQpJDQAgAi8AACEKIAIvAAIhDCACLwAEIQYgBUEIaiAEEA4CQCADIAYgCiAMampBBmoiDUkNACAFLQAKIQcgBUHYAGogAkEGaiICIAoQBiIJEAMNASAFQUBrIAIgCmoiAiAMEAYiCRADDQEgBUEoaiACIAxqIgIgBhAGIgkQAw0BIAVBEGogAiAGaiADIA1rEAYiCRADDQEgACABaiIOQX1qIQ8gBEEEaiEGQQEhCSAAIAFBA2pBAnYiAmoiCiACaiIMIAJqIg0hAyAMIQQgCiECA0AgCSADIA9JcQRAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAACAGIAVBQGsgBxACQQF0aiIILQAAIQsgBUFAayAILQABEAEgAiALOgAAIAYgBUEoaiAHEAJBAXRqIggtAAAhCyAFQShqIAgtAAEQASAEIAs6AAAgBiAFQRBqIAcQAkEBdGoiCC0AACELIAVBEGogCC0AARABIAMgCzoAACAGIAVB2ABqIAcQAkEBdGoiCC0AACELIAVB2ABqIAgtAAEQASAAIAs6AAEgBiAFQUBrIAcQAkEBdGoiCC0AACELIAVBQGsgCC0AARABIAIgCzoAASAGIAVBKGogBxACQQF0aiIILQAAIQsgBUEoaiAILQABEAEgBCALOgABIAYgBUEQaiAHEAJBAXRqIggtAAAhCyAFQRBqIAgtAAEQASADIAs6AAEgA0ECaiEDIARBAmohBCACQQJqIQIgAEECaiEAIAkgBUHYAGoQDUVxIAVBQGsQDUVxIAVBKGoQDUVxIAVBEGoQDUVxIQkMAQsLIAQgDUsgAiAMS3INAEFsIQkgACAKSw0BIApBfWohCQNAIAVB2ABqEAQgACAJT3JFBEAgBiAFQdgAaiAHEAJBAXRqIggtAAAhCyAFQdgAaiAILQABEAEgACALOgAAIAYgBUHYAGogBxACQQF0aiIILQAAIQsgBUHYAGogCC0AARABIAAgCzoAASAAQQJqIQAMAQsLA0AgBUHYAGoQBCAAIApPckUEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCwNAIAAgCkkEQCAGIAVB2ABqIAcQAkEBdGoiCS0AACEIIAVB2ABqIAktAAEQASAAIAg6AAAgAEEBaiEADAELCyAMQX1qIQADQCAFQUBrEAQgAiAAT3JFBEAgBiAFQUBrIAcQAkEBdGoiCi0AACEJIAVBQGsgCi0AARABIAIgCToAACAGIAVBQGsgBxACQQF0aiIKLQAAIQkgBUFAayAKLQABEAEgAiAJOgABIAJBAmohAgwBCwsDQCAFQUBrEAQgAiAMT3JFBEAgBiAFQUBrIAcQAkEBdGoiAC0AACEKIAVBQGsgAC0AARABIAIgCjoAACACQQFqIQIMAQsLA0AgAiAMSQRAIAYgBUFAayAHEAJBAXRqIgAtAAAhCiAFQUBrIAAtAAEQASACIAo6AAAgAkEBaiECDAELCyANQX1qIQADQCAFQShqEAQgBCAAT3JFBEAgBiAFQShqIAcQAkEBdGoiAi0AACEKIAVBKGogAi0AARABIAQgCjoAACAGIAVBKGogBxACQQF0aiICLQAAIQogBUEoaiACLQABEAEgBCAKOgABIARBAmohBAwBCwsDQCAFQShqEAQgBCANT3JFBEAgBiAFQShqIAcQAkEBdGoiAC0AACECIAVBKGogAC0AARABIAQgAjoAACAEQQFqIQQMAQsLA0AgBCANSQRAIAYgBUEoaiAHEAJBAXRqIgAtAAAhAiAFQShqIAAtAAEQASAEIAI6AAAgBEEBaiEEDAELCwNAIAVBEGoQBCADIA9PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIAYgBUEQaiAHEAJBAXRqIgAtAAAhAiAFQRBqIAAtAAEQASADIAI6AAEgA0ECaiEDDAELCwNAIAVBEGoQBCADIA5PckUEQCAGIAVBEGogBxACQQF0aiIALQAAIQIgBUEQaiAALQABEAEgAyACOgAAIANBAWohAwwBCwsDQCADIA5JBEAgBiAFQRBqIAcQAkEBdGoiAC0AACECIAVBEGogAC0AARABIAMgAjoAACADQQFqIQMMAQsLIAFBbCAFQdgAahAKIAVBQGsQCnEgBUEoahAKcSAFQRBqEApxGyEJDAELQWwhCQsgBUHwAGokACAJC8oCAQR/IwBBIGsiBSQAIAUgBBAOIAUtAAIhByAFQQhqIAIgAxAGIgIQA0UEQCAEQQRqIQIgACABaiIDQX1qIQQDQCAFQQhqEAQgACAET3JFBEAgAiAFQQhqIAcQAkEBdGoiBi0AACEIIAVBCGogBi0AARABIAAgCDoAACACIAVBCGogBxACQQF0aiIGLQAAIQggBUEIaiAGLQABEAEgACAIOgABIABBAmohAAwBCwsDQCAFQQhqEAQgACADT3JFBEAgAiAFQQhqIAcQAkEBdGoiBC0AACEGIAVBCGogBC0AARABIAAgBjoAACAAQQFqIQAMAQsLA0AgACADT0UEQCACIAVBCGogBxACQQF0aiIELQAAIQYgBUEIaiAELQABEAEgACAGOgAAIABBAWohAAwBCwsgAUFsIAVBCGoQChshAgsgBUEgaiQAIAILtgMBCX8jAEEQayIGJAAgBkEANgIMIAZBADYCCEFUIQQCQAJAIANBQGsiDCADIAZBCGogBkEMaiABIAIQMSICEAMNACAGQQRqIAAQDiAGKAIMIgcgBi0ABEEBaksNASAAQQRqIQogBkEAOgAFIAYgBzoABiAAIAYoAgQ2AgAgB0EBaiEJQQEhBANAIAQgCUkEQCADIARBAnRqIgEoAgAhACABIAU2AgAgACAEQX9qdCAFaiEFIARBAWohBAwBCwsgB0EBaiEHQQAhBSAGKAIIIQkDQCAFIAlGDQEgAyAFIAxqLQAAIgRBAnRqIgBBASAEdEEBdSILIAAoAgAiAWoiADYCACAHIARrIQhBACEEAkAgC0EDTQRAA0AgBCALRg0CIAogASAEakEBdGoiACAIOgABIAAgBToAACAEQQFqIQQMAAALAAsDQCABIABPDQEgCiABQQF0aiIEIAg6AAEgBCAFOgAAIAQgCDoAAyAEIAU6AAIgBCAIOgAFIAQgBToABCAEIAg6AAcgBCAFOgAGIAFBBGohAQwAAAsACyAFQQFqIQUMAAALAAsgAiEECyAGQRBqJAAgBAutAQECfwJAQYQgKAIAIABHIAAoAgBBAXYiAyABa0F4aiICQXhxQQhHcgR/IAIFIAMQJ0UNASACQQhqC0EQSQ0AIAAgACgCACICQQFxIAAgAWpBD2pBeHEiASAAa0EBdHI2AgAgASAANgIEIAEgASgCAEEBcSAAIAJBAXZqIAFrIgJBAXRyNgIAQYQgIAEgAkH/////B3FqQQRqQYQgKAIAIABGGyABNgIAIAEQJQsLygIBBX8CQAJAAkAgAEEIIABBCEsbZ0EfcyAAaUEBR2oiAUEESSAAIAF2cg0AIAFBAnRB/B5qKAIAIgJFDQADQCACQXhqIgMoAgBBAXZBeGoiBSAATwRAIAIgBUEIIAVBCEsbZ0Efc0ECdEGAH2oiASgCAEYEQCABIAIoAgQ2AgALDAMLIARBHksNASAEQQFqIQQgAigCBCICDQALC0EAIQMgAUEgTw0BA0AgAUECdEGAH2ooAgAiAkUEQCABQR5LIQIgAUEBaiEBIAJFDQEMAwsLIAIgAkF4aiIDKAIAQQF2QXhqIgFBCCABQQhLG2dBH3NBAnRBgB9qIgEoAgBGBEAgASACKAIENgIACwsgAigCACIBBEAgASACKAIENgIECyACKAIEIgEEQCABIAIoAgA2AgALIAMgAygCAEEBcjYCACADIAAQNwsgAwvhCwINfwV+IwBB8ABrIgckACAHIAAoAvDhASIINgJcIAEgAmohDSAIIAAoAoDiAWohDwJAAkAgBUUEQCABIQQMAQsgACgCxOABIRAgACgCwOABIREgACgCvOABIQ4gAEEBNgKM4QFBACEIA0AgCEEDRwRAIAcgCEECdCICaiAAIAJqQazQAWooAgA2AkQgCEEBaiEIDAELC0FsIQwgB0EYaiADIAQQBhADDQEgB0EsaiAHQRhqIAAoAgAQEyAHQTRqIAdBGGogACgCCBATIAdBPGogB0EYaiAAKAIEEBMgDUFgaiESIAEhBEEAIQwDQCAHKAIwIAcoAixBA3RqKQIAIhRCEIinQf8BcSEIIAcoAkAgBygCPEEDdGopAgAiFUIQiKdB/wFxIQsgBygCOCAHKAI0QQN0aikCACIWQiCIpyEJIBVCIIghFyAUQiCIpyECAkAgFkIQiKdB/wFxIgNBAk8EQAJAIAZFIANBGUlyRQRAIAkgB0EYaiADQSAgBygCHGsiCiAKIANLGyIKEAUgAyAKayIDdGohCSAHQRhqEAQaIANFDQEgB0EYaiADEAUgCWohCQwBCyAHQRhqIAMQBSAJaiEJIAdBGGoQBBoLIAcpAkQhGCAHIAk2AkQgByAYNwNIDAELAkAgA0UEQCACBEAgBygCRCEJDAMLIAcoAkghCQwBCwJAAkAgB0EYakEBEAUgCSACRWpqIgNBA0YEQCAHKAJEQX9qIgMgA0VqIQkMAQsgA0ECdCAHaigCRCIJIAlFaiEJIANBAUYNAQsgByAHKAJINgJMCwsgByAHKAJENgJIIAcgCTYCRAsgF6chAyALBEAgB0EYaiALEAUgA2ohAwsgCCALakEUTwRAIAdBGGoQBBoLIAgEQCAHQRhqIAgQBSACaiECCyAHQRhqEAQaIAcgB0EYaiAUQhiIp0H/AXEQCCAUp0H//wNxajYCLCAHIAdBGGogFUIYiKdB/wFxEAggFadB//8DcWo2AjwgB0EYahAEGiAHIAdBGGogFkIYiKdB/wFxEAggFqdB//8DcWo2AjQgByACNgJgIAcoAlwhCiAHIAk2AmggByADNgJkAkACQAJAIAQgAiADaiILaiASSw0AIAIgCmoiEyAPSw0AIA0gBGsgC0Egak8NAQsgByAHKQNoNwMQIAcgBykDYDcDCCAEIA0gB0EIaiAHQdwAaiAPIA4gESAQEB4hCwwBCyACIARqIQggBCAKEAcgAkERTwRAIARBEGohAgNAIAIgCkEQaiIKEAcgAkEQaiICIAhJDQALCyAIIAlrIQIgByATNgJcIAkgCCAOa0sEQCAJIAggEWtLBEBBbCELDAILIBAgAiAOayICaiIKIANqIBBNBEAgCCAKIAMQDxoMAgsgCCAKQQAgAmsQDyEIIAcgAiADaiIDNgJkIAggAmshCCAOIQILIAlBEE8EQCADIAhqIQMDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALDAELAkAgCUEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgCUECdCIDQcAeaigCAGoiAhAXIAIgA0HgHmooAgBrIQIgBygCZCEDDAELIAggAhAMCyADQQlJDQAgAyAIaiEDIAhBCGoiCCACQQhqIgJrQQ9MBEADQCAIIAIQDCACQQhqIQIgCEEIaiIIIANJDQAMAgALAAsDQCAIIAIQByACQRBqIQIgCEEQaiIIIANJDQALCyAHQRhqEAQaIAsgDCALEAMiAhshDCAEIAQgC2ogAhshBCAFQX9qIgUNAAsgDBADDQFBbCEMIAdBGGoQBEECSQ0BQQAhCANAIAhBA0cEQCAAIAhBAnQiAmpBrNABaiACIAdqKAJENgIAIAhBAWohCAwBCwsgBygCXCEIC0G6fyEMIA8gCGsiACANIARrSw0AIAQEfyAEIAggABALIABqBUEACyABayEMCyAHQfAAaiQAIAwLkRcCFn8FfiMAQdABayIHJAAgByAAKALw4QEiCDYCvAEgASACaiESIAggACgCgOIBaiETAkACQCAFRQRAIAEhAwwBCyAAKALE4AEhESAAKALA4AEhFSAAKAK84AEhDyAAQQE2AozhAUEAIQgDQCAIQQNHBEAgByAIQQJ0IgJqIAAgAmpBrNABaigCADYCVCAIQQFqIQgMAQsLIAcgETYCZCAHIA82AmAgByABIA9rNgJoQWwhECAHQShqIAMgBBAGEAMNASAFQQQgBUEESBshFyAHQTxqIAdBKGogACgCABATIAdBxABqIAdBKGogACgCCBATIAdBzABqIAdBKGogACgCBBATQQAhBCAHQeAAaiEMIAdB5ABqIQoDQCAHQShqEARBAksgBCAXTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEJIAcoAkggBygCREEDdGopAgAiH0IgiKchCCAeQiCIISAgHUIgiKchAgJAIB9CEIinQf8BcSIDQQJPBEACQCAGRSADQRlJckUEQCAIIAdBKGogA0EgIAcoAixrIg0gDSADSxsiDRAFIAMgDWsiA3RqIQggB0EoahAEGiADRQ0BIAdBKGogAxAFIAhqIQgMAQsgB0EoaiADEAUgCGohCCAHQShqEAQaCyAHKQJUISEgByAINgJUIAcgITcDWAwBCwJAIANFBEAgAgRAIAcoAlQhCAwDCyAHKAJYIQgMAQsCQAJAIAdBKGpBARAFIAggAkVqaiIDQQNGBEAgBygCVEF/aiIDIANFaiEIDAELIANBAnQgB2ooAlQiCCAIRWohCCADQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAg2AlQLICCnIQMgCQRAIAdBKGogCRAFIANqIQMLIAkgC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgAmohAgsgB0EoahAEGiAHIAcoAmggAmoiCSADajYCaCAKIAwgCCAJSxsoAgAhDSAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogB0EoaiAfQhiIp0H/AXEQCCEOIAdB8ABqIARBBHRqIgsgCSANaiAIazYCDCALIAg2AgggCyADNgIEIAsgAjYCACAHIA4gH6dB//8DcWo2AkQgBEEBaiEEDAELCyAEIBdIDQEgEkFgaiEYIAdB4ABqIRogB0HkAGohGyABIQMDQCAHQShqEARBAksgBCAFTnJFBEAgBygCQCAHKAI8QQN0aikCACIdQhCIp0H/AXEhCyAHKAJQIAcoAkxBA3RqKQIAIh5CEIinQf8BcSEIIAcoAkggBygCREEDdGopAgAiH0IgiKchCSAeQiCIISAgHUIgiKchDAJAIB9CEIinQf8BcSICQQJPBEACQCAGRSACQRlJckUEQCAJIAdBKGogAkEgIAcoAixrIgogCiACSxsiChAFIAIgCmsiAnRqIQkgB0EoahAEGiACRQ0BIAdBKGogAhAFIAlqIQkMAQsgB0EoaiACEAUgCWohCSAHQShqEAQaCyAHKQJUISEgByAJNgJUIAcgITcDWAwBCwJAIAJFBEAgDARAIAcoAlQhCQwDCyAHKAJYIQkMAQsCQAJAIAdBKGpBARAFIAkgDEVqaiICQQNGBEAgBygCVEF/aiICIAJFaiEJDAELIAJBAnQgB2ooAlQiCSAJRWohCSACQQFGDQELIAcgBygCWDYCXAsLIAcgBygCVDYCWCAHIAk2AlQLICCnIRQgCARAIAdBKGogCBAFIBRqIRQLIAggC2pBFE8EQCAHQShqEAQaCyALBEAgB0EoaiALEAUgDGohDAsgB0EoahAEGiAHIAcoAmggDGoiGSAUajYCaCAbIBogCSAZSxsoAgAhHCAHIAdBKGogHUIYiKdB/wFxEAggHadB//8DcWo2AjwgByAHQShqIB5CGIinQf8BcRAIIB6nQf//A3FqNgJMIAdBKGoQBBogByAHQShqIB9CGIinQf8BcRAIIB+nQf//A3FqNgJEIAcgB0HwAGogBEEDcUEEdGoiDSkDCCIdNwPIASAHIA0pAwAiHjcDwAECQAJAAkAgBygCvAEiDiAepyICaiIWIBNLDQAgAyAHKALEASIKIAJqIgtqIBhLDQAgEiADayALQSBqTw0BCyAHIAcpA8gBNwMQIAcgBykDwAE3AwggAyASIAdBCGogB0G8AWogEyAPIBUgERAeIQsMAQsgAiADaiEIIAMgDhAHIAJBEU8EQCADQRBqIQIDQCACIA5BEGoiDhAHIAJBEGoiAiAISQ0ACwsgCCAdpyIOayECIAcgFjYCvAEgDiAIIA9rSwRAIA4gCCAVa0sEQEFsIQsMAgsgESACIA9rIgJqIhYgCmogEU0EQCAIIBYgChAPGgwCCyAIIBZBACACaxAPIQggByACIApqIgo2AsQBIAggAmshCCAPIQILIA5BEE8EQCAIIApqIQoDQCAIIAIQByACQRBqIQIgCEEQaiIIIApJDQALDAELAkAgDkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgDkECdCIKQcAeaigCAGoiAhAXIAIgCkHgHmooAgBrIQIgBygCxAEhCgwBCyAIIAIQDAsgCkEJSQ0AIAggCmohCiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAKSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAKSQ0ACwsgCxADBEAgCyEQDAQFIA0gDDYCACANIBkgHGogCWs2AgwgDSAJNgIIIA0gFDYCBCAEQQFqIQQgAyALaiEDDAILAAsLIAQgBUgNASAEIBdrIQtBACEEA0AgCyAFSARAIAcgB0HwAGogC0EDcUEEdGoiAikDCCIdNwPIASAHIAIpAwAiHjcDwAECQAJAAkAgBygCvAEiDCAepyICaiIKIBNLDQAgAyAHKALEASIJIAJqIhBqIBhLDQAgEiADayAQQSBqTw0BCyAHIAcpA8gBNwMgIAcgBykDwAE3AxggAyASIAdBGGogB0G8AWogEyAPIBUgERAeIRAMAQsgAiADaiEIIAMgDBAHIAJBEU8EQCADQRBqIQIDQCACIAxBEGoiDBAHIAJBEGoiAiAISQ0ACwsgCCAdpyIGayECIAcgCjYCvAEgBiAIIA9rSwRAIAYgCCAVa0sEQEFsIRAMAgsgESACIA9rIgJqIgwgCWogEU0EQCAIIAwgCRAPGgwCCyAIIAxBACACaxAPIQggByACIAlqIgk2AsQBIAggAmshCCAPIQILIAZBEE8EQCAIIAlqIQYDQCAIIAIQByACQRBqIQIgCEEQaiIIIAZJDQALDAELAkAgBkEHTQRAIAggAi0AADoAACAIIAItAAE6AAEgCCACLQACOgACIAggAi0AAzoAAyAIQQRqIAIgBkECdCIGQcAeaigCAGoiAhAXIAIgBkHgHmooAgBrIQIgBygCxAEhCQwBCyAIIAIQDAsgCUEJSQ0AIAggCWohBiAIQQhqIgggAkEIaiICa0EPTARAA0AgCCACEAwgAkEIaiECIAhBCGoiCCAGSQ0ADAIACwALA0AgCCACEAcgAkEQaiECIAhBEGoiCCAGSQ0ACwsgEBADDQMgC0EBaiELIAMgEGohAwwBCwsDQCAEQQNHBEAgACAEQQJ0IgJqQazQAWogAiAHaigCVDYCACAEQQFqIQQMAQsLIAcoArwBIQgLQbp/IRAgEyAIayIAIBIgA2tLDQAgAwR/IAMgCCAAEAsgAGoFQQALIAFrIRALIAdB0AFqJAAgEAslACAAQgA3AgAgAEEAOwEIIABBADoACyAAIAE2AgwgACACOgAKC7QFAQN/IwBBMGsiBCQAIABB/wFqIgVBfWohBgJAIAMvAQIEQCAEQRhqIAEgAhAGIgIQAw0BIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahASOgAAIAMgBEEIaiAEQRhqEBI6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0FIAEgBEEQaiAEQRhqEBI6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBSABIARBCGogBEEYahASOgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEjoAACABIAJqIABrIQIMAwsgAyAEQRBqIARBGGoQEjoAAiADIARBCGogBEEYahASOgADIANBBGohAwwAAAsACyAEQRhqIAEgAhAGIgIQAw0AIARBEGogBEEYaiADEBwgBEEIaiAEQRhqIAMQHCAAIQMDQAJAIARBGGoQBCADIAZPckUEQCADIARBEGogBEEYahAROgAAIAMgBEEIaiAEQRhqEBE6AAEgBEEYahAERQ0BIANBAmohAwsgBUF+aiEFAn8DQEG6fyECIAMiASAFSw0EIAEgBEEQaiAEQRhqEBE6AAAgAUEBaiEDIARBGGoQBEEDRgRAQQIhAiAEQQhqDAILIAMgBUsNBCABIARBCGogBEEYahAROgABIAFBAmohA0EDIQIgBEEYahAEQQNHDQALIARBEGoLIQUgAyAFIARBGGoQEToAACABIAJqIABrIQIMAgsgAyAEQRBqIARBGGoQEToAAiADIARBCGogBEEYahAROgADIANBBGohAwwAAAsACyAEQTBqJAAgAgtpAQF/An8CQAJAIAJBB00NACABKAAAQbfIwuF+Rw0AIAAgASgABDYCmOIBQWIgAEEQaiABIAIQPiIDEAMNAhogAEKBgICAEDcDiOEBIAAgASADaiACIANrECoMAQsgACABIAIQKgtBAAsLrQMBBn8jAEGAAWsiAyQAQWIhCAJAIAJBCUkNACAAQZjQAGogAUEIaiIEIAJBeGogAEGY0AAQMyIFEAMiBg0AIANBHzYCfCADIANB/ABqIANB+ABqIAQgBCAFaiAGGyIEIAEgAmoiAiAEaxAVIgUQAw0AIAMoAnwiBkEfSw0AIAMoAngiB0EJTw0AIABBiCBqIAMgBkGAC0GADCAHEBggA0E0NgJ8IAMgA0H8AGogA0H4AGogBCAFaiIEIAIgBGsQFSIFEAMNACADKAJ8IgZBNEsNACADKAJ4IgdBCk8NACAAQZAwaiADIAZBgA1B4A4gBxAYIANBIzYCfCADIANB/ABqIANB+ABqIAQgBWoiBCACIARrEBUiBRADDQAgAygCfCIGQSNLDQAgAygCeCIHQQpPDQAgACADIAZBwBBB0BEgBxAYIAQgBWoiBEEMaiIFIAJLDQAgAiAFayEFQQAhAgNAIAJBA0cEQCAEKAAAIgZBf2ogBU8NAiAAIAJBAnRqQZzQAWogBjYCACACQQFqIQIgBEEEaiEEDAELCyAEIAFrIQgLIANBgAFqJAAgCAtGAQN/IABBCGohAyAAKAIEIQJBACEAA0AgACACdkUEQCABIAMgAEEDdGotAAJBFktqIQEgAEEBaiEADAELCyABQQggAmt0C4YDAQV/Qbh/IQcCQCADRQ0AIAItAAAiBEUEQCABQQA2AgBBAUG4fyADQQFGGw8LAn8gAkEBaiIFIARBGHRBGHUiBkF/Sg0AGiAGQX9GBEAgA0EDSA0CIAUvAABBgP4BaiEEIAJBA2oMAQsgA0ECSA0BIAItAAEgBEEIdHJBgIB+aiEEIAJBAmoLIQUgASAENgIAIAVBAWoiASACIANqIgNLDQBBbCEHIABBEGogACAFLQAAIgVBBnZBI0EJIAEgAyABa0HAEEHQEUHwEiAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBmCBqIABBCGogBUEEdkEDcUEfQQggASABIAZqIAgbIgEgAyABa0GAC0GADEGAFyAAKAKM4QEgACgCnOIBIAQQHyIGEAMiCA0AIABBoDBqIABBBGogBUECdkEDcUE0QQkgASABIAZqIAgbIgEgAyABa0GADUHgDkGQGSAAKAKM4QEgACgCnOIBIAQQHyIAEAMNACAAIAFqIAJrIQcLIAcLrQMBCn8jAEGABGsiCCQAAn9BUiACQf8BSw0AGkFUIANBDEsNABogAkEBaiELIABBBGohCUGAgAQgA0F/anRBEHUhCkEAIQJBASEEQQEgA3QiB0F/aiIMIQUDQCACIAtGRQRAAkAgASACQQF0Ig1qLwEAIgZB//8DRgRAIAkgBUECdGogAjoAAiAFQX9qIQVBASEGDAELIARBACAKIAZBEHRBEHVKGyEECyAIIA1qIAY7AQAgAkEBaiECDAELCyAAIAQ7AQIgACADOwEAIAdBA3YgB0EBdmpBA2ohBkEAIQRBACECA0AgBCALRkUEQCABIARBAXRqLgEAIQpBACEAA0AgACAKTkUEQCAJIAJBAnRqIAQ6AAIDQCACIAZqIAxxIgIgBUsNAAsgAEEBaiEADAELCyAEQQFqIQQMAQsLQX8gAg0AGkEAIQIDfyACIAdGBH9BAAUgCCAJIAJBAnRqIgAtAAJBAXRqIgEgAS8BACIBQQFqOwEAIAAgAyABEBRrIgU6AAMgACABIAVB/wFxdCAHazsBACACQQFqIQIMAQsLCyEFIAhBgARqJAAgBQvjBgEIf0FsIQcCQCACQQNJDQACQAJAAkACQCABLQAAIgNBA3EiCUEBaw4DAwEAAgsgACgCiOEBDQBBYg8LIAJBBUkNAkEDIQYgASgAACEFAn8CQAJAIANBAnZBA3EiCEF+aiIEQQFNBEAgBEEBaw0BDAILIAVBDnZB/wdxIQQgBUEEdkH/B3EhAyAIRQwCCyAFQRJ2IQRBBCEGIAVBBHZB//8AcSEDQQAMAQsgBUEEdkH//w9xIgNBgIAISw0DIAEtAARBCnQgBUEWdnIhBEEFIQZBAAshBSAEIAZqIgogAksNAgJAIANBgQZJDQAgACgCnOIBRQ0AQQAhAgNAIAJBg4ABSw0BIAJBQGshAgwAAAsACwJ/IAlBA0YEQCABIAZqIQEgAEHw4gFqIQIgACgCDCEGIAUEQCACIAMgASAEIAYQXwwCCyACIAMgASAEIAYQXQwBCyAAQbjQAWohAiABIAZqIQEgAEHw4gFqIQYgAEGo0ABqIQggBQRAIAggBiADIAEgBCACEF4MAQsgCCAGIAMgASAEIAIQXAsQAw0CIAAgAzYCgOIBIABBATYCiOEBIAAgAEHw4gFqNgLw4QEgCUECRgRAIAAgAEGo0ABqNgIMCyAAIANqIgBBiOMBakIANwAAIABBgOMBakIANwAAIABB+OIBakIANwAAIABB8OIBakIANwAAIAoPCwJ/AkACQAJAIANBAnZBA3FBf2oiBEECSw0AIARBAWsOAgACAQtBASEEIANBA3YMAgtBAiEEIAEvAABBBHYMAQtBAyEEIAEQIUEEdgsiAyAEaiIFQSBqIAJLBEAgBSACSw0CIABB8OIBaiABIARqIAMQCyEBIAAgAzYCgOIBIAAgATYC8OEBIAEgA2oiAEIANwAYIABCADcAECAAQgA3AAggAEIANwAAIAUPCyAAIAM2AoDiASAAIAEgBGo2AvDhASAFDwsCfwJAAkACQCADQQJ2QQNxQX9qIgRBAksNACAEQQFrDgIAAgELQQEhByADQQN2DAILQQIhByABLwAAQQR2DAELIAJBBEkgARAhIgJBj4CAAUtyDQFBAyEHIAJBBHYLIQIgAEHw4gFqIAEgB2otAAAgAkEgahAQIQEgACACNgKA4gEgACABNgLw4QEgB0EBaiEHCyAHC0sAIABC+erQ0OfJoeThADcDICAAQgA3AxggAELP1tO+0ser2UI3AxAgAELW64Lu6v2J9eAANwMIIABCADcDACAAQShqQQBBKBAQGgviAgICfwV+IABBKGoiASAAKAJIaiECAn4gACkDACIDQiBaBEAgACkDECIEQgeJIAApAwgiBUIBiXwgACkDGCIGQgyJfCAAKQMgIgdCEol8IAUQGSAEEBkgBhAZIAcQGQwBCyAAKQMYQsXP2bLx5brqJ3wLIAN8IQMDQCABQQhqIgAgAk0EQEIAIAEpAAAQCSADhUIbiUKHla+vmLbem55/fkLj3MqV/M7y9YV/fCEDIAAhAQwBCwsCQCABQQRqIgAgAksEQCABIQAMAQsgASgAAK1Ch5Wvr5i23puef34gA4VCF4lCz9bTvtLHq9lCfkL5893xmfaZqxZ8IQMLA0AgACACSQRAIAAxAABCxc/ZsvHluuonfiADhUILiUKHla+vmLbem55/fiEDIABBAWohAAwBCwsgA0IhiCADhULP1tO+0ser2UJ+IgNCHYggA4VC+fPd8Zn2masWfiIDQiCIIAOFC+8CAgJ/BH4gACAAKQMAIAKtfDcDAAJAAkAgACgCSCIDIAJqIgRBH00EQCABRQ0BIAAgA2pBKGogASACECAgACgCSCACaiEEDAELIAEgAmohAgJ/IAMEQCAAQShqIgQgA2ogAUEgIANrECAgACAAKQMIIAQpAAAQCTcDCCAAIAApAxAgACkAMBAJNwMQIAAgACkDGCAAKQA4EAk3AxggACAAKQMgIABBQGspAAAQCTcDICAAKAJIIQMgAEEANgJIIAEgA2tBIGohAQsgAUEgaiACTQsEQCACQWBqIQMgACkDICEFIAApAxghBiAAKQMQIQcgACkDCCEIA0AgCCABKQAAEAkhCCAHIAEpAAgQCSEHIAYgASkAEBAJIQYgBSABKQAYEAkhBSABQSBqIgEgA00NAAsgACAFNwMgIAAgBjcDGCAAIAc3AxAgACAINwMICyABIAJPDQEgAEEoaiABIAIgAWsiBBAgCyAAIAQ2AkgLCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQEBogAwVBun8LCy8BAX8gAEUEQEG2f0EAIAMbDwtBun8hBCADIAFNBH8gACACIAMQCxogAwVBun8LC6gCAQZ/IwBBEGsiByQAIABB2OABaikDAEKAgIAQViEIQbh/IQUCQCAEQf//B0sNACAAIAMgBBBCIgUQAyIGDQAgACgCnOIBIQkgACAHQQxqIAMgAyAFaiAGGyIKIARBACAFIAYbayIGEEAiAxADBEAgAyEFDAELIAcoAgwhBCABRQRAQbp/IQUgBEEASg0BCyAGIANrIQUgAyAKaiEDAkAgCQRAIABBADYCnOIBDAELAkACQAJAIARBBUgNACAAQdjgAWopAwBCgICACFgNAAwBCyAAQQA2ApziAQwBCyAAKAIIED8hBiAAQQA2ApziASAGQRRPDQELIAAgASACIAMgBSAEIAgQOSEFDAELIAAgASACIAMgBSAEIAgQOiEFCyAHQRBqJAAgBQtnACAAQdDgAWogASACIAAoAuzhARAuIgEQAwRAIAEPC0G4fyECAkAgAQ0AIABB7OABaigCACIBBEBBYCECIAAoApjiASABRw0BC0EAIQIgAEHw4AFqKAIARQ0AIABBkOEBahBDCyACCycBAX8QVyIERQRAQUAPCyAEIAAgASACIAMgBBBLEE8hACAEEFYgAAs/AQF/AkACQAJAIAAoAqDiAUEBaiIBQQJLDQAgAUEBaw4CAAECCyAAEDBBAA8LIABBADYCoOIBCyAAKAKU4gELvAMCB38BfiMAQRBrIgkkAEG4fyEGAkAgBCgCACIIQQVBCSAAKALs4QEiBRtJDQAgAygCACIHQQFBBSAFGyAFEC8iBRADBEAgBSEGDAELIAggBUEDakkNACAAIAcgBRBJIgYQAw0AIAEgAmohCiAAQZDhAWohCyAIIAVrIQIgBSAHaiEHIAEhBQNAIAcgAiAJECwiBhADDQEgAkF9aiICIAZJBEBBuH8hBgwCCyAJKAIAIghBAksEQEFsIQYMAgsgB0EDaiEHAn8CQAJAAkAgCEEBaw4CAgABCyAAIAUgCiAFayAHIAYQSAwCCyAFIAogBWsgByAGEEcMAQsgBSAKIAVrIActAAAgCSgCCBBGCyIIEAMEQCAIIQYMAgsgACgC8OABBEAgCyAFIAgQRQsgAiAGayECIAYgB2ohByAFIAhqIQUgCSgCBEUNAAsgACkD0OABIgxCf1IEQEFsIQYgDCAFIAFrrFINAQsgACgC8OABBEBBaiEGIAJBBEkNASALEEQhDCAHKAAAIAynRw0BIAdBBGohByACQXxqIQILIAMgBzYCACAEIAI2AgAgBSABayEGCyAJQRBqJAAgBgsuACAAECsCf0EAQQAQAw0AGiABRSACRXJFBEBBYiAAIAEgAhA9EAMNARoLQQALCzcAIAEEQCAAIAAoAsTgASABKAIEIAEoAghqRzYCnOIBCyAAECtBABADIAFFckUEQCAAIAEQWwsL0QIBB38jAEEQayIGJAAgBiAENgIIIAYgAzYCDCAFBEAgBSgCBCEKIAUoAgghCQsgASEIAkACQANAIAAoAuzhARAWIQsCQANAIAQgC0kNASADKAAAQXBxQdDUtMIBRgRAIAMgBBAiIgcQAw0EIAQgB2shBCADIAdqIQMMAQsLIAYgAzYCDCAGIAQ2AggCQCAFBEAgACAFEE5BACEHQQAQA0UNAQwFCyAAIAogCRBNIgcQAw0ECyAAIAgQUCAMQQFHQQAgACAIIAIgBkEMaiAGQQhqEEwiByIDa0EAIAMQAxtBCkdyRQRAQbh/IQcMBAsgBxADDQMgAiAHayECIAcgCGohCEEBIQwgBigCDCEDIAYoAgghBAwBCwsgBiADNgIMIAYgBDYCCEG4fyEHIAQNASAIIAFrIQcMAQsgBiADNgIMIAYgBDYCCAsgBkEQaiQAIAcLRgECfyABIAAoArjgASICRwRAIAAgAjYCxOABIAAgATYCuOABIAAoArzgASEDIAAgATYCvOABIAAgASADIAJrajYCwOABCwutAgIEfwF+IwBBQGoiBCQAAkACQCACQQhJDQAgASgAAEFwcUHQ1LTCAUcNACABIAIQIiEBIABCADcDCCAAQQA2AgQgACABNgIADAELIARBGGogASACEC0iAxADBEAgACADEBoMAQsgAwRAIABBuH8QGgwBCyACIAQoAjAiA2shAiABIANqIQMDQAJAIAAgAyACIARBCGoQLCIFEAMEfyAFBSACIAVBA2oiBU8NAUG4fwsQGgwCCyAGQQFqIQYgAiAFayECIAMgBWohAyAEKAIMRQ0ACyAEKAI4BEAgAkEDTQRAIABBuH8QGgwCCyADQQRqIQMLIAQoAighAiAEKQMYIQcgAEEANgIEIAAgAyABazYCACAAIAIgBmytIAcgB0J/URs3AwgLIARBQGskAAslAQF/IwBBEGsiAiQAIAIgACABEFEgAigCACEAIAJBEGokACAAC30BBH8jAEGQBGsiBCQAIARB/wE2AggCQCAEQRBqIARBCGogBEEMaiABIAIQFSIGEAMEQCAGIQUMAQtBVCEFIAQoAgwiB0EGSw0AIAMgBEEQaiAEKAIIIAcQQSIFEAMNACAAIAEgBmogAiAGayADEDwhBQsgBEGQBGokACAFC4cBAgJ/An5BABAWIQMCQANAIAEgA08EQAJAIAAoAABBcHFB0NS0wgFGBEAgACABECIiAhADRQ0BQn4PCyAAIAEQVSIEQn1WDQMgBCAFfCIFIARUIQJCfiEEIAINAyAAIAEQUiICEAMNAwsgASACayEBIAAgAmohAAwBCwtCfiAFIAEbIQQLIAQLPwIBfwF+IwBBMGsiAiQAAn5CfiACQQhqIAAgARAtDQAaQgAgAigCHEEBRg0AGiACKQMICyEDIAJBMGokACADC40BAQJ/IwBBMGsiASQAAkAgAEUNACAAKAKI4gENACABIABB/OEBaigCADYCKCABIAApAvThATcDICAAEDAgACgCqOIBIQIgASABKAIoNgIYIAEgASkDIDcDECACIAFBEGoQGyAAQQA2AqjiASABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALKgECfyMAQRBrIgAkACAAQQA2AgggAEIANwMAIAAQWCEBIABBEGokACABC4cBAQN/IwBBEGsiAiQAAkAgACgCAEUgACgCBEVzDQAgAiAAKAIINgIIIAIgACkCADcDAAJ/IAIoAgAiAQRAIAIoAghBqOMJIAERBQAMAQtBqOMJECgLIgFFDQAgASAAKQIANwL04QEgAUH84QFqIAAoAgg2AgAgARBZIAEhAwsgAkEQaiQAIAMLywEBAn8jAEEgayIBJAAgAEGBgIDAADYCtOIBIABBADYCiOIBIABBADYC7OEBIABCADcDkOIBIABBADYCpOMJIABBADYC3OIBIABCADcCzOIBIABBADYCvOIBIABBADYCxOABIABCADcCnOIBIABBpOIBakIANwIAIABBrOIBakEANgIAIAFCADcCECABQgA3AhggASABKQMYNwMIIAEgASkDEDcDACABKAIIQQh2QQFxIQIgAEEANgLg4gEgACACNgKM4gEgAUEgaiQAC3YBA38jAEEwayIBJAAgAARAIAEgAEHE0AFqIgIoAgA2AiggASAAKQK80AE3AyAgACgCACEDIAEgAigCADYCGCABIAApArzQATcDECADIAFBEGoQGyABIAEoAig2AgggASABKQMgNwMAIAAgARAbCyABQTBqJAALzAEBAX8gACABKAK00AE2ApjiASAAIAEoAgQiAjYCwOABIAAgAjYCvOABIAAgAiABKAIIaiICNgK44AEgACACNgLE4AEgASgCuNABBEAgAEKBgICAEDcDiOEBIAAgAUGk0ABqNgIMIAAgAUGUIGo2AgggACABQZwwajYCBCAAIAFBDGo2AgAgAEGs0AFqIAFBqNABaigCADYCACAAQbDQAWogAUGs0AFqKAIANgIAIABBtNABaiABQbDQAWooAgA2AgAPCyAAQgA3A4jhAQs7ACACRQRAQbp/DwsgBEUEQEFsDwsgAiAEEGAEQCAAIAEgAiADIAQgBRBhDwsgACABIAIgAyAEIAUQZQtGAQF/IwBBEGsiBSQAIAVBCGogBBAOAn8gBS0ACQRAIAAgASACIAMgBBAyDAELIAAgASACIAMgBBA0CyEAIAVBEGokACAACzQAIAAgAyAEIAUQNiIFEAMEQCAFDwsgBSAESQR/IAEgAiADIAVqIAQgBWsgABA1BUG4fwsLRgEBfyMAQRBrIgUkACAFQQhqIAQQDgJ/IAUtAAkEQCAAIAEgAiADIAQQYgwBCyAAIAEgAiADIAQQNQshACAFQRBqJAAgAAtZAQF/QQ8hAiABIABJBEAgAUEEdCAAbiECCyAAQQh2IgEgAkEYbCIAQYwIaigCAGwgAEGICGooAgBqIgJBA3YgAmogAEGACGooAgAgAEGECGooAgAgAWxqSQs3ACAAIAMgBCAFQYAQEDMiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQMgVBuH8LC78DAQN/IwBBIGsiBSQAIAVBCGogAiADEAYiAhADRQRAIAAgAWoiB0F9aiEGIAUgBBAOIARBBGohAiAFLQACIQMDQEEAIAAgBkkgBUEIahAEGwRAIAAgAiAFQQhqIAMQAkECdGoiBC8BADsAACAFQQhqIAQtAAIQASAAIAQtAANqIgQgAiAFQQhqIAMQAkECdGoiAC8BADsAACAFQQhqIAAtAAIQASAEIAAtAANqIQAMAQUgB0F+aiEEA0AgBUEIahAEIAAgBEtyRQRAIAAgAiAFQQhqIAMQAkECdGoiBi8BADsAACAFQQhqIAYtAAIQASAAIAYtAANqIQAMAQsLA0AgACAES0UEQCAAIAIgBUEIaiADEAJBAnRqIgYvAQA7AAAgBUEIaiAGLQACEAEgACAGLQADaiEADAELCwJAIAAgB08NACAAIAIgBUEIaiADEAIiA0ECdGoiAC0AADoAACAALQADQQFGBEAgBUEIaiAALQACEAEMAQsgBSgCDEEfSw0AIAVBCGogAiADQQJ0ai0AAhABIAUoAgxBIUkNACAFQSA2AgwLIAFBbCAFQQhqEAobIQILCwsgBUEgaiQAIAILkgIBBH8jAEFAaiIJJAAgCSADQTQQCyEDAkAgBEECSA0AIAMgBEECdGooAgAhCSADQTxqIAgQIyADQQE6AD8gAyACOgA+QQAhBCADKAI8IQoDQCAEIAlGDQEgACAEQQJ0aiAKNgEAIARBAWohBAwAAAsAC0EAIQkDQCAGIAlGRQRAIAMgBSAJQQF0aiIKLQABIgtBAnRqIgwoAgAhBCADQTxqIAotAABBCHQgCGpB//8DcRAjIANBAjoAPyADIAcgC2siCiACajoAPiAEQQEgASAKa3RqIQogAygCPCELA0AgACAEQQJ0aiALNgEAIARBAWoiBCAKSQ0ACyAMIAo2AgAgCUEBaiEJDAELCyADQUBrJAALowIBCX8jAEHQAGsiCSQAIAlBEGogBUE0EAsaIAcgBmshDyAHIAFrIRADQAJAIAMgCkcEQEEBIAEgByACIApBAXRqIgYtAAEiDGsiCGsiC3QhDSAGLQAAIQ4gCUEQaiAMQQJ0aiIMKAIAIQYgCyAPTwRAIAAgBkECdGogCyAIIAUgCEE0bGogCCAQaiIIQQEgCEEBShsiCCACIAQgCEECdGooAgAiCEEBdGogAyAIayAHIA4QYyAGIA1qIQgMAgsgCUEMaiAOECMgCUEBOgAPIAkgCDoADiAGIA1qIQggCSgCDCELA0AgBiAITw0CIAAgBkECdGogCzYBACAGQQFqIQYMAAALAAsgCUHQAGokAA8LIAwgCDYCACAKQQFqIQoMAAALAAs0ACAAIAMgBCAFEDYiBRADBEAgBQ8LIAUgBEkEfyABIAIgAyAFaiAEIAVrIAAQNAVBuH8LCyMAIAA/AEEQdGtB//8DakEQdkAAQX9GBEBBAA8LQQAQAEEBCzsBAX8gAgRAA0AgACABIAJBgCAgAkGAIEkbIgMQCyEAIAFBgCBqIQEgAEGAIGohACACIANrIgINAAsLCwYAIAAQAwsLqBUJAEGICAsNAQAAAAEAAAACAAAAAgBBoAgLswYBAAAAAQAAAAIAAAACAAAAJgAAAIIAAAAhBQAASgAAAGcIAAAmAAAAwAEAAIAAAABJBQAASgAAAL4IAAApAAAALAIAAIAAAABJBQAASgAAAL4IAAAvAAAAygIAAIAAAACKBQAASgAAAIQJAAA1AAAAcwMAAIAAAACdBQAASgAAAKAJAAA9AAAAgQMAAIAAAADrBQAASwAAAD4KAABEAAAAngMAAIAAAABNBgAASwAAAKoKAABLAAAAswMAAIAAAADBBgAATQAAAB8NAABNAAAAUwQAAIAAAAAjCAAAUQAAAKYPAABUAAAAmQQAAIAAAABLCQAAVwAAALESAABYAAAA2gQAAIAAAABvCQAAXQAAACMUAABUAAAARQUAAIAAAABUCgAAagAAAIwUAABqAAAArwUAAIAAAAB2CQAAfAAAAE4QAAB8AAAA0gIAAIAAAABjBwAAkQAAAJAHAACSAAAAAAAAAAEAAAABAAAABQAAAA0AAAAdAAAAPQAAAH0AAAD9AAAA/QEAAP0DAAD9BwAA/Q8AAP0fAAD9PwAA/X8AAP3/AAD9/wEA/f8DAP3/BwD9/w8A/f8fAP3/PwD9/38A/f//AP3//wH9//8D/f//B/3//w/9//8f/f//P/3//38AAAAAAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABEAAAASAAAAEwAAABQAAAAVAAAAFgAAABcAAAAYAAAAGQAAABoAAAAbAAAAHAAAAB0AAAAeAAAAHwAAAAMAAAAEAAAABQAAAAYAAAAHAAAACAAAAAkAAAAKAAAACwAAAAwAAAANAAAADgAAAA8AAAAQAAAAEQAAABIAAAATAAAAFAAAABUAAAAWAAAAFwAAABgAAAAZAAAAGgAAABsAAAAcAAAAHQAAAB4AAAAfAAAAIAAAACEAAAAiAAAAIwAAACUAAAAnAAAAKQAAACsAAAAvAAAAMwAAADsAAABDAAAAUwAAAGMAAACDAAAAAwEAAAMCAAADBAAAAwgAAAMQAAADIAAAA0AAAAOAAAADAAEAQeAPC1EBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAEAAAABQAAAAcAAAAIAAAACQAAAAoAAAALAAAADAAAAA0AAAAOAAAADwAAABAAQcQQC4sBAQAAAAIAAAADAAAABAAAAAUAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAABIAAAAUAAAAFgAAABgAAAAcAAAAIAAAACgAAAAwAAAAQAAAAIAAAAAAAQAAAAIAAAAEAAAACAAAABAAAAAgAAAAQAAAAIAAAAAAAQBBkBIL5gQBAAAAAQAAAAEAAAABAAAAAgAAAAIAAAADAAAAAwAAAAQAAAAGAAAABwAAAAgAAAAJAAAACgAAAAsAAAAMAAAADQAAAA4AAAAPAAAAEAAAAAEAAAAEAAAACAAAAAAAAAABAAEBBgAAAAAAAAQAAAAAEAAABAAAAAAgAAAFAQAAAAAAAAUDAAAAAAAABQQAAAAAAAAFBgAAAAAAAAUHAAAAAAAABQkAAAAAAAAFCgAAAAAAAAUMAAAAAAAABg4AAAAAAAEFEAAAAAAAAQUUAAAAAAABBRYAAAAAAAIFHAAAAAAAAwUgAAAAAAAEBTAAAAAgAAYFQAAAAAAABwWAAAAAAAAIBgABAAAAAAoGAAQAAAAADAYAEAAAIAAABAAAAAAAAAAEAQAAAAAAAAUCAAAAIAAABQQAAAAAAAAFBQAAACAAAAUHAAAAAAAABQgAAAAgAAAFCgAAAAAAAAULAAAAAAAABg0AAAAgAAEFEAAAAAAAAQUSAAAAIAABBRYAAAAAAAIFGAAAACAAAwUgAAAAAAADBSgAAAAAAAYEQAAAABAABgRAAAAAIAAHBYAAAAAAAAkGAAIAAAAACwYACAAAMAAABAAAAAAQAAAEAQAAACAAAAUCAAAAIAAABQMAAAAgAAAFBQAAACAAAAUGAAAAIAAABQgAAAAgAAAFCQAAACAAAAULAAAAIAAABQwAAAAAAAAGDwAAACAAAQUSAAAAIAABBRQAAAAgAAIFGAAAACAAAgUcAAAAIAADBSgAAAAgAAQFMAAAAAAAEAYAAAEAAAAPBgCAAAAAAA4GAEAAAAAADQYAIABBgBcLhwIBAAEBBQAAAAAAAAUAAAAAAAAGBD0AAAAAAAkF/QEAAAAADwX9fwAAAAAVBf3/HwAAAAMFBQAAAAAABwR9AAAAAAAMBf0PAAAAABIF/f8DAAAAFwX9/38AAAAFBR0AAAAAAAgE/QAAAAAADgX9PwAAAAAUBf3/DwAAAAIFAQAAABAABwR9AAAAAAALBf0HAAAAABEF/f8BAAAAFgX9/z8AAAAEBQ0AAAAQAAgE/QAAAAAADQX9HwAAAAATBf3/BwAAAAEFAQAAABAABgQ9AAAAAAAKBf0DAAAAABAF/f8AAAAAHAX9//8PAAAbBf3//wcAABoF/f//AwAAGQX9//8BAAAYBf3//wBBkBkLhgQBAAEBBgAAAAAAAAYDAAAAAAAABAQAAAAgAAAFBQAAAAAAAAUGAAAAAAAABQgAAAAAAAAFCQAAAAAAAAULAAAAAAAABg0AAAAAAAAGEAAAAAAAAAYTAAAAAAAABhYAAAAAAAAGGQAAAAAAAAYcAAAAAAAABh8AAAAAAAAGIgAAAAAAAQYlAAAAAAABBikAAAAAAAIGLwAAAAAAAwY7AAAAAAAEBlMAAAAAAAcGgwAAAAAACQYDAgAAEAAABAQAAAAAAAAEBQAAACAAAAUGAAAAAAAABQcAAAAgAAAFCQAAAAAAAAUKAAAAAAAABgwAAAAAAAAGDwAAAAAAAAYSAAAAAAAABhUAAAAAAAAGGAAAAAAAAAYbAAAAAAAABh4AAAAAAAAGIQAAAAAAAQYjAAAAAAABBicAAAAAAAIGKwAAAAAAAwYzAAAAAAAEBkMAAAAAAAUGYwAAAAAACAYDAQAAIAAABAQAAAAwAAAEBAAAABAAAAQFAAAAIAAABQcAAAAgAAAFCAAAACAAAAUKAAAAIAAABQsAAAAAAAAGDgAAAAAAAAYRAAAAAAAABhQAAAAAAAAGFwAAAAAAAAYaAAAAAAAABh0AAAAAAAAGIAAAAAAAEAYDAAEAAAAPBgOAAAAAAA4GA0AAAAAADQYDIAAAAAAMBgMQAAAAAAsGAwgAAAAACgYDBABBpB0L2QEBAAAAAwAAAAcAAAAPAAAAHwAAAD8AAAB/AAAA/wAAAP8BAAD/AwAA/wcAAP8PAAD/HwAA/z8AAP9/AAD//wAA//8BAP//AwD//wcA//8PAP//HwD//z8A//9/AP///wD///8B////A////wf///8P////H////z////9/AAAAAAEAAAACAAAABAAAAAAAAAACAAAABAAAAAgAAAAAAAAAAQAAAAIAAAABAAAABAAAAAQAAAAEAAAABAAAAAgAAAAIAAAACAAAAAcAAAAIAAAACQAAAAoAAAALAEGgIAsDwBBQ';\n// wasm:end\n","import { inflate } from 'pako';\nimport Lerc from 'lerc';\nimport { ZSTDDecoder } from 'zstddec';\nimport BaseDecoder from './basedecoder.js';\nimport { LercParameters, LercAddCompression } from '../globals.js';\n\nexport const zstd = new ZSTDDecoder();\n\nexport default class LercDecoder extends BaseDecoder {\n constructor(fileDirectory) {\n super();\n\n this.planarConfiguration = typeof fileDirectory.PlanarConfiguration !== 'undefined' ? fileDirectory.PlanarConfiguration : 1;\n this.samplesPerPixel = typeof fileDirectory.SamplesPerPixel !== 'undefined' ? fileDirectory.SamplesPerPixel : 1;\n\n this.addCompression = fileDirectory.LercParameters[LercParameters.AddCompression];\n }\n\n decodeBlock(buffer) {\n switch (this.addCompression) {\n case LercAddCompression.None:\n break;\n case LercAddCompression.Deflate:\n buffer = inflate(new Uint8Array(buffer)).buffer; // eslint-disable-line no-param-reassign, prefer-destructuring\n break;\n case LercAddCompression.Zstandard:\n buffer = zstd.decode(new Uint8Array(buffer)).buffer; // eslint-disable-line no-param-reassign, prefer-destructuring\n break;\n default:\n throw new Error(`Unsupported LERC additional compression method identifier: ${this.addCompression}`);\n }\n\n const lercResult = Lerc.decode(buffer, { returnPixelInterleavedDims: this.planarConfiguration === 1 });\n const lercData = lercResult.pixels[0];\n return lercData.buffer;\n }\n}\n"],"names":["CntZImage","uncompressPixelValues","formatFileInfo","computeUsedBitDepths","parse","unstuff","a","b","LercDecode","Lerc2Decode","isPlatformLittleEndian","Lerc","input","options","skipMask","encodedMaskData","parsedData","inputOffset","noDataValue","defaultNoDataValue","uncompressedData","pixelType","Float32Array","returnMask","result","width","height","pixelData","resultPixels","minValue","maxValue","pixels","resultMask","maskData","returnEncodedMask","mask","bitset","returnFileInfo","fileInfo","bitDepths","data","TypedArrayClass","maskBitset","storeDecodedMask","currentValue","blockIdx","numX","numBlocksX","numY","numBlocksY","blockWidth","Math","floor","blockHeight","scale","maxZError","Number","MAX_VALUE","Uint8Array","xx","yy","blockDataBuffer","y","thisBlockHeight","x","thisBlockWidth","blockData","blockPtr","constValue","maskByte","outPtr","outStride","block","blocks","encoding","rawData","stuffedData","bitsPerPixel","numValidPixels","offset","fileIdentifierString","fileVersion","imageType","eofOffset","numBytes","numBlocks","i","float32","Object","keys","fp","fileIdView","String","fromCharCode","apply","trim","view","DataView","getInt32","getUint32","getFloat64","getFloat32","ceil","cnt","getInt16","ip","op","getUint8","val","length","actualNumBlocksX","actualNumBlocksY","Array","blockI","blockY","blockX","size","bytesLeft","byteLength","min","headerByte","offsetType","getInt8","numValidPixelsType","getUint16","arrayBuf","numPixels","ArrayBuffer","set","dataBytes","dataWords","Uint32Array","src","dest","o","n","buffer","bitMask","bitsLeft","nmax","numInvalidTailBytes","missingBits","BitStuffer","lutArr","bitPos","Lerc2Helpers","HUFFMAN_LUT_BITS_MAX","computeChecksumFletcher32","sum1","sum2","len","words","tlen","readHeaderInfo","ptr","headerInfo","lastIndexOf","keyLength","checksum","numDims","numValidPixel","microBlockSize","blobSize","zMin","zMax","this","checkMinMaxRanges","OutPixelTypeArray","getDataTypeArray","rangeBytes","getDataTypeSize","minValues","readSubArray","maxValues","equal","readMask","mb","k","readDataOneSweep","useBSQForOutputDim","swapDimensionOrder","z","nStart","readHuffmanTree","BITS_MAX","i0","i1","decodeBits","j","codeTable","first","second","word","srcPtr","numBitsLUTQick","numBitsLUT","tree","TreeNode","undefined","max","entry","code","numEntries","jj","node","decodeLut","right","left","readHuffman","delta","valTmp","valTmpQuick","ii","huffmanInfo","prevVal","iDim","deltaEncode","encodeMode","resultPixelsAllDim","viewByteLength","bits67","doLut","numBits","numElements","store8","lutData","lutBytes","counter","lut","unshift","bitstuffer","readTiles","dataTypeSize","blockEncoding","isDiffEncoding","resultPixelsPrevDim","row","col","bytesleft","lastBlockHeight","lastBlockWidth","fileVersionCheckNum","uncompressed","getDataTypeUsed","getOnePixel","constantoffset","constant","getPixelType","constructConstantSurface","valMin","t","tp","Int8Array","Int16Array","Uint16Array","Int32Array","Float64Array","isValidPixelValue","isValid","s","dt","tc","temp","getUInt32","inputIsBIP","swap","decode","onesweep","diff","returnPixelInterleavedDims","bReadDataOneSweep","abs","flagHuffman","validPixelCount","dimCount","dimStats","getBandCount","count","encodedData","lerc","majorVersion","substring","bandMask","iPlane","eof","bandMasks","decodedPixelBlock","statistics","uniqueBandMaskCount","push","init","instance","heap","IMPORT_OBJECT","env","emscripten_notify_memory_growth","index","exports","memory","wasm","zstd","fetch","then","response","arrayBuffer","WebAssembly","instantiate","_init","Buffer","from","array","uncompressedSize","Error","compressedSize","compressedPtr","malloc","ZSTD_findDecompressedSize","uncompressedPtr","actualSize","ZSTD_decompress","dec","slice","free","LercDecoder","constructor","fileDirectory","super","planarConfiguration","PlanarConfiguration","samplesPerPixel","SamplesPerPixel","addCompression","LercParameters","AddCompression","decodeBlock","None","Deflate","Zstandard"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/nbextension/64.index.js b/ipyopenlayers/nbextension/64.index.js new file mode 100644 index 0000000..215f678 --- /dev/null +++ b/ipyopenlayers/nbextension/64.index.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[64],{708:(e,t,n)=>{function r(e,t){let n=e.length-t,r=0;do{for(let n=t;n>0;n--)e[r+t]+=e[r],r++;n-=t}while(n>0)}function o(e,t,n){let r=0,o=e.length;const i=o/n;for(;o>t;){for(let n=t;n>0;--n)e[r+t]+=e[r],++r;o-=t}const l=e.slice();for(let t=0;ti});class i{async decode(e,t){const n=await this.decodeBlock(t),i=e.Predictor||1;if(1!==i){const t=!e.StripOffsets;return function(e,t,n,i,l,s){if(!t||1===t)return e;for(let e=0;e=e.byteLength);++s){let i;if(2===t){switch(l[0]){case 8:i=new Uint8Array(e,s*f*n*c,f*n*c);break;case 16:i=new Uint16Array(e,s*f*n*c,f*n*c/2);break;case 32:i=new Uint32Array(e,s*f*n*c,f*n*c/4);break;default:throw new Error(`Predictor 2 not allowed with ${l[0]} bits per sample.`)}r(i,f)}else 3===t&&(i=new Uint8Array(e,s*f*n*c,f*n*c),o(i,f,c))}return e}(n,i,t?e.TileWidth:e.ImageWidth,t?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return n}}},2064:(e,t,n)=>{n.r(t),n.d(t,{default:()=>i});var r=n(708);function o(e,t){for(let n=t.length-1;n>=0;n--)e.push(t[n]);return e}class i extends r.A{decodeBlock(e){return function(e){const t=new Uint16Array(4093),n=new Uint8Array(4093);for(let e=0;e<=257;e++)t[e]=4096,n[e]=e;let r=258,i=9,l=0;function s(){r=258,i=9}function c(e){const t=function(e,t,n){const r=t%8,o=Math.floor(t/8),i=8-r,l=t+n-8*(o+1);let s=8*(o+2)-(t+n);const c=8*(o+2)-t;if(s=Math.max(0,s),o>=e.length)return console.warn("ran off the end of the buffer before finding EOI_CODE (end on input code)"),257;let f=e[o]&2**(8-r)-1;f<<=n-i;let a=f;if(o+1>>s;t<<=Math.max(0,n-c),a+=t}if(l>8&&o+2>>r}return a}(e,l,i);return l+=i,t}function f(e,o){return n[r]=o,t[r]=e,r++,r-1}function a(e){const r=[];for(let o=e;4096!==o;o=t[o])r.push(n[o]);return r}const h=[];s();const u=new Uint8Array(e);let d,w=c(u);for(;257!==w;){if(256===w){for(s(),w=c(u);256===w;)w=c(u);if(257===w)break;if(w>256)throw new Error(`corrupted code at scanline ${w}`);o(h,a(w)),d=w}else if(w=2**i&&(12===i?d=void 0:i++),w=c(u)}return new Uint8Array(h)}(e).buffer}}}}]); +//# sourceMappingURL=64.index.js.map \ No newline at end of file diff --git a/ipyopenlayers/nbextension/64.index.js.map b/ipyopenlayers/nbextension/64.index.js.map new file mode 100644 index 0000000..d2479c4 --- /dev/null +++ b/ipyopenlayers/nbextension/64.index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"64.index.js","mappings":"2GAAA,SAASA,EAAaC,EAAKC,GACzB,IAAIC,EAASF,EAAIE,OAASD,EACtBE,EAAS,EACb,EAAG,CACD,IAAK,IAAIC,EAAIH,EAAQG,EAAI,EAAGA,IAC1BJ,EAAIG,EAASF,IAAWD,EAAIG,GAC5BA,IAGFD,GAAUD,CACZ,OAASC,EAAS,EACpB,CAEA,SAASG,EAAuBL,EAAKC,EAAQK,GAC3C,IAAIC,EAAQ,EACRC,EAAQR,EAAIE,OAChB,MAAMO,EAAKD,EAAQF,EAEnB,KAAOE,EAAQP,GAAQ,CACrB,IAAK,IAAIG,EAAIH,EAAQG,EAAI,IAAKA,EAC5BJ,EAAIO,EAAQN,IAAWD,EAAIO,KACzBA,EAEJC,GAASP,CACX,CAEA,MAAMS,EAAOV,EAAIW,QACjB,IAAK,IAAIP,EAAI,EAAGA,EAAIK,IAAML,EACxB,IAAK,IAAIQ,EAAI,EAAGA,EAAIN,IAAkBM,EACpCZ,EAAKM,EAAiBF,EAAKQ,GAAKF,GAAOJ,EAAiBM,EAAI,GAAKH,EAAML,EAG7E,C,iBC9Be,MAAMS,EACnB,YAAMC,CAAOC,EAAeC,GAC1B,MAAMC,QAAgBC,KAAKC,YAAYH,GACjCI,EAAYL,EAAcM,WAAa,EAC7C,GAAkB,IAAdD,EAAiB,CACnB,MAAME,GAAWP,EAAcQ,aAK/B,ODsBC,SAAwBC,EAAOJ,EAAWK,EAAOC,EAAQC,EAC9DC,GACA,IAAKR,GAA2B,IAAdA,EAChB,OAAOI,EAGT,IAAK,IAAIpB,EAAI,EAAGA,EAAIuB,EAAczB,SAAUE,EAAG,CAC7C,GAAIuB,EAAcvB,GAAK,GAAM,EAC3B,MAAM,IAAIyB,MAAM,wEAElB,GAAIF,EAAcvB,KAAOuB,EAAc,GACrC,MAAM,IAAIE,MAAM,qEAEpB,CAEA,MAAMvB,EAAiBqB,EAAc,GAAK,EACpC1B,EAAiC,IAAxB2B,EAA4B,EAAID,EAAczB,OAE7D,IAAK,IAAIE,EAAI,EAAGA,EAAIsB,KAEdtB,EAAIH,EAASwB,EAAQnB,GAAkBkB,EAAMM,cAFrB1B,EAAG,CAK/B,IAAIJ,EACJ,GAAkB,IAAdoB,EAAiB,CACnB,OAAQO,EAAc,IACpB,KAAK,EACH3B,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/D,MACF,KAAK,GACHN,EAAM,IAAIgC,YACRR,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,KAAK,GACHN,EAAM,IAAIiC,YACRT,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,QACE,MAAM,IAAIuB,MAAM,gCAAgCF,EAAc,uBAElE5B,EAAaC,EAAKC,EACpB,MAAyB,IAAdmB,IACTpB,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/DD,EAAuBL,EAAKC,EAAQK,GAExC,CACA,OAAOkB,CACT,CC3EaU,CACLjB,EAASG,EALOE,EAAUP,EAAcoB,UAAYpB,EAAcqB,WACjDd,EAAUP,EAAcsB,WACzCtB,EAAcuB,cAAgBvB,EAAcwB,YAGDxB,EAAcyB,cACzDzB,EAAc0B,oBAElB,CACA,OAAOxB,CACT,E,4DCiBF,SAASyB,EAAeC,EAAMC,GAC5B,IAAK,IAAIxC,EAAIwC,EAAO1C,OAAS,EAAGE,GAAK,EAAGA,IACtCuC,EAAKE,KAAKD,EAAOxC,IAEnB,OAAOuC,CACT,CAsFe,MAAMG,UAAmB,IACtC,WAAA3B,CAAYH,GACV,OAtFJ,SAAoB+B,GAClB,MAAMC,EAAkB,IAAIhB,YAAY,MAClCiB,EAAiB,IAAIlB,WAAW,MACtC,IAAK,IAAI3B,EAAI,EAAGA,GAAK,IAAKA,IACxB4C,EAAgB5C,GAAK,KACrB6C,EAAe7C,GAAKA,EAEtB,IAAI8C,EAAmB,IACnBpB,EAhDW,EAiDXqB,EAAW,EAEf,SAASC,IACPF,EAAmB,IACnBpB,EArDa,CAsDf,CACA,SAASuB,EAAQC,GACf,MAAMC,EAnDV,SAAiBD,EAAOH,EAAUjD,GAChC,MAAMsD,EAAIL,EAAW,EACfM,EAAIC,KAAKC,MAAMR,EAAW,GAC1BS,EAAK,EAAIJ,EACTK,EAAMV,EAAWjD,EAAqB,GAATuD,EAAI,GACvC,IAAIK,EAAM,GAAKL,EAAI,IAAON,EAAWjD,GACrC,MAAM6D,EAAgB,GAATN,EAAI,GAAUN,EAE3B,GADAW,EAAKJ,KAAKM,IAAI,EAAGF,GACbL,GAAKH,EAAMpD,OAEb,OADA+D,QAAQC,KAAK,6EAZA,IAef,IAAIC,EAASb,EAAMG,GAAO,IAAM,EAAID,GAAM,EAC1CW,IAAYjE,EAAS0D,EACrB,IAAIQ,EAASD,EACb,GAAIV,EAAI,EAAIH,EAAMpD,OAAQ,CACxB,IAAImE,EAASf,EAAMG,EAAI,KAAOK,EAC9BO,IAAWX,KAAKM,IAAI,EAAI9D,EAAS6D,GACjCK,GAAUC,CACZ,CACA,GAAIR,EAAK,GAAKJ,EAAI,EAAIH,EAAMpD,OAAQ,CAClC,MAAMoE,EAAgB,GAATb,EAAI,IAAWN,EAAWjD,GAEvCkE,GADed,EAAMG,EAAI,KAAOa,CAElC,CACA,OAAOF,CACT,CAyBiBG,CAAQjB,EAAOH,EAAUrB,GAEtC,OADAqB,GAAYrB,EACLyB,CACT,CACA,SAASiB,EAAgBpE,EAAGqE,GAI1B,OAHAxB,EAAeC,GAAoBuB,EACnCzB,EAAgBE,GAAoB9C,EACpC8C,IACOA,EAAmB,CAC5B,CACA,SAASwB,EAAsBC,GAC7B,MAAMC,EAAM,GACZ,IAAK,IAAIxE,EAAIuE,EAAS,OAANvE,EAAYA,EAAI4C,EAAgB5C,GAC9CwE,EAAI/B,KAAKI,EAAe7C,IAE1B,OAAOwE,CACT,CAEA,MAAMC,EAAS,GACfzB,IACA,MAAME,EAAQ,IAAIvB,WAAWgB,GAC7B,IACI+B,EADAC,EAAO1B,EAAQC,GAEnB,KA7Ee,MA6ERyB,GAAmB,CACxB,GA/Ee,MA+EXA,EAAqB,CAGvB,IAFA3B,IACA2B,EAAO1B,EAAQC,GAjFF,MAkFNyB,GACLA,EAAO1B,EAAQC,GAGjB,GArFW,MAqFPyB,EACF,MACK,GAAIA,EAxFE,IAyFX,MAAM,IAAIlD,MAAM,8BAA8BkD,KAG9CrC,EAAemC,EADHH,EAAsBK,IAElCD,EAAUC,CAEd,MAAO,GAAIA,EAAO7B,EAAkB,CAClC,MAAM8B,EAAMN,EAAsBK,GAClCrC,EAAemC,EAAQG,GACvBR,EAAgBM,EAASE,EAAIA,EAAI9E,OAAS,IAC1C4E,EAAUC,CACZ,KAAO,CACL,MAAME,EAASP,EAAsBI,GACrC,IAAKG,EACH,MAAM,IAAIpD,MAAM,mCAAmCiD,OAAa5B,gBAA+BC,KAEjGT,EAAemC,EAAQI,GACvBJ,EAAOhC,KAAKoC,EAAOA,EAAO/E,OAAS,IACnCsE,EAAgBM,EAASG,EAAOA,EAAO/E,OAAS,IAChD4E,EAAUC,CACZ,CAEI7B,EAAmB,GAAM,GAAKpB,IA7Gf,KA8GbA,EACFgD,OAAUI,EAEVpD,KAGJiD,EAAO1B,EAAQC,EACjB,CACA,OAAO,IAAIvB,WAAW8C,EACxB,CAIWM,CAAWnE,GAAeA,MACnC,E","sources":["webpack://ipyopenlayers/./node_modules/geotiff/dist-module/predictor.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/basedecoder.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/lzw.js"],"sourcesContent":["function decodeRowAcc(row, stride) {\n let length = row.length - stride;\n let offset = 0;\n do {\n for (let i = stride; i > 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\nconst MIN_BITS = 9;\nconst CLEAR_CODE = 256; // clear code\nconst EOI_CODE = 257; // end of information\nconst MAX_BYTELENGTH = 12;\n\nfunction getByte(array, position, length) {\n const d = position % 8;\n const a = Math.floor(position / 8);\n const de = 8 - d;\n const ef = (position + length) - ((a + 1) * 8);\n let fg = (8 * (a + 2)) - (position + length);\n const dg = ((a + 2) * 8) - position;\n fg = Math.max(0, fg);\n if (a >= array.length) {\n console.warn('ran off the end of the buffer before finding EOI_CODE (end on input code)');\n return EOI_CODE;\n }\n let chunk1 = array[a] & ((2 ** (8 - d)) - 1);\n chunk1 <<= (length - de);\n let chunks = chunk1;\n if (a + 1 < array.length) {\n let chunk2 = array[a + 1] >>> fg;\n chunk2 <<= Math.max(0, (length - dg));\n chunks += chunk2;\n }\n if (ef > 8 && a + 2 < array.length) {\n const hi = ((a + 3) * 8) - (position + length);\n const chunk3 = array[a + 2] >>> hi;\n chunks += chunk3;\n }\n return chunks;\n}\n\nfunction appendReversed(dest, source) {\n for (let i = source.length - 1; i >= 0; i--) {\n dest.push(source[i]);\n }\n return dest;\n}\n\nfunction decompress(input) {\n const dictionaryIndex = new Uint16Array(4093);\n const dictionaryChar = new Uint8Array(4093);\n for (let i = 0; i <= 257; i++) {\n dictionaryIndex[i] = 4096;\n dictionaryChar[i] = i;\n }\n let dictionaryLength = 258;\n let byteLength = MIN_BITS;\n let position = 0;\n\n function initDictionary() {\n dictionaryLength = 258;\n byteLength = MIN_BITS;\n }\n function getNext(array) {\n const byte = getByte(array, position, byteLength);\n position += byteLength;\n return byte;\n }\n function addToDictionary(i, c) {\n dictionaryChar[dictionaryLength] = c;\n dictionaryIndex[dictionaryLength] = i;\n dictionaryLength++;\n return dictionaryLength - 1;\n }\n function getDictionaryReversed(n) {\n const rev = [];\n for (let i = n; i !== 4096; i = dictionaryIndex[i]) {\n rev.push(dictionaryChar[i]);\n }\n return rev;\n }\n\n const result = [];\n initDictionary();\n const array = new Uint8Array(input);\n let code = getNext(array);\n let oldCode;\n while (code !== EOI_CODE) {\n if (code === CLEAR_CODE) {\n initDictionary();\n code = getNext(array);\n while (code === CLEAR_CODE) {\n code = getNext(array);\n }\n\n if (code === EOI_CODE) {\n break;\n } else if (code > CLEAR_CODE) {\n throw new Error(`corrupted code at scanline ${code}`);\n } else {\n const val = getDictionaryReversed(code);\n appendReversed(result, val);\n oldCode = code;\n }\n } else if (code < dictionaryLength) {\n const val = getDictionaryReversed(code);\n appendReversed(result, val);\n addToDictionary(oldCode, val[val.length - 1]);\n oldCode = code;\n } else {\n const oldVal = getDictionaryReversed(oldCode);\n if (!oldVal) {\n throw new Error(`Bogus entry. Not in dictionary, ${oldCode} / ${dictionaryLength}, position: ${position}`);\n }\n appendReversed(result, oldVal);\n result.push(oldVal[oldVal.length - 1]);\n addToDictionary(oldCode, oldVal[oldVal.length - 1]);\n oldCode = code;\n }\n\n if (dictionaryLength + 1 >= (2 ** byteLength)) {\n if (byteLength === MAX_BYTELENGTH) {\n oldCode = undefined;\n } else {\n byteLength++;\n }\n }\n code = getNext(array);\n }\n return new Uint8Array(result);\n}\n\nexport default class LZWDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n return decompress(buffer, false).buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","appendReversed","dest","source","push","LZWDecoder","input","dictionaryIndex","dictionaryChar","dictionaryLength","position","initDictionary","getNext","array","byte","d","a","Math","floor","de","ef","fg","dg","max","console","warn","chunk1","chunks","chunk2","hi","getByte","addToDictionary","c","getDictionaryReversed","n","rev","result","oldCode","code","val","oldVal","undefined","decompress"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/nbextension/709.index.js b/ipyopenlayers/nbextension/709.index.js new file mode 100644 index 0000000..fccc434 --- /dev/null +++ b/ipyopenlayers/nbextension/709.index.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[709],{708:(e,n,t)=>{function r(e,n){let t=e.length-n,r=0;do{for(let t=n;t>0;t--)e[r+n]+=e[r],r++;t-=n}while(t>0)}function s(e,n,t){let r=0,s=e.length;const o=s/t;for(;s>n;){for(let t=n;t>0;--t)e[r+n]+=e[r],++r;s-=n}const a=e.slice();for(let n=0;no});class o{async decode(e,n){const t=await this.decodeBlock(n),o=e.Predictor||1;if(1!==o){const n=!e.StripOffsets;return function(e,n,t,o,a,i){if(!n||1===n)return e;for(let e=0;e=e.byteLength);++i){let o;if(2===n){switch(a[0]){case 8:o=new Uint8Array(e,i*l*t*c,l*t*c);break;case 16:o=new Uint16Array(e,i*l*t*c,l*t*c/2);break;case 32:o=new Uint32Array(e,i*l*t*c,l*t*c/4);break;default:throw new Error(`Predictor 2 not allowed with ${a[0]} bits per sample.`)}r(o,l)}else 3===n&&(o=new Uint8Array(e,i*l*t*c,l*t*c),s(o,l,c))}return e}(t,o,n?e.TileWidth:e.ImageWidth,n?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return t}}},4709:(e,n,t)=>{t.r(n),t.d(n,{default:()=>w});var r=t(708);const s=new Int32Array([0,1,8,16,9,2,3,10,17,24,32,25,18,11,4,5,12,19,26,33,40,48,41,34,27,20,13,6,7,14,21,28,35,42,49,56,57,50,43,36,29,22,15,23,30,37,44,51,58,59,52,45,38,31,39,46,53,60,61,54,47,55,62,63]),o=4017,a=799,i=3406,c=2276,l=1567,f=3784,h=5793,u=2896;function d(e,n){let t=0;const r=[];let s=16;for(;s>0&&!e[s-1];)--s;r.push({children:[],index:0});let o,a=r[0];for(let i=0;i0;)a=r.pop();for(a.index++,r.push(a);r.length<=i;)r.push(o={children:[],index:0}),a.children[a.index]=o.children,a=o;t++}i+10)return p--,m>>p&1;if(m=e[d++],255===m){const n=e[d++];if(n)throw new Error(`unexpected marker: ${(m<<8|n).toString(16)}`)}return p=7,m>>>7}function w(e){let n,t=e;for(;null!==(n=b());){if(t=t[n],"number"==typeof t)return t;if("object"!=typeof t)throw new Error("invalid huffman sequence")}return null}function k(e){let n=e,t=0;for(;n>0;){const e=b();if(null===e)return;t=t<<1|e,--n}return t}function y(e){const n=k(e);return n>=1<0)return void P--;let t=a;const r=i;for(;t<=r;){const r=w(e.huffmanTableAC),o=15&r,a=r>>4;if(0===o){if(a<15){P=k(a)+(1<>4,0===t)o<15?(P=k(o)+(1<>4;if(0===r){if(a<15)break;o+=16}else o+=a,n[s[o]]=y(r),o++}};let q,z,O=0;z=1===v?r[0].blocksPerLine*r[0].blocksPerColumn:f*t.mcusPerColumn;const M=o||z;for(;O=65488&&q<=65495))break;d+=2}return d-u}function p(e,n){const t=[],{blocksPerLine:r,blocksPerColumn:s}=n,d=r<<3,m=new Int32Array(64),p=new Uint8Array(64);function b(e,t,r){const s=n.quantizationTable;let d,m,p,b,w,k,y,g,P;const A=r;let C;for(C=0;C<64;C++)A[C]=e[C]*s[C];for(C=0;C<8;++C){const e=8*C;0!==A[1+e]||0!==A[2+e]||0!==A[3+e]||0!==A[4+e]||0!==A[5+e]||0!==A[6+e]||0!==A[7+e]?(d=h*A[0+e]+128>>8,m=h*A[4+e]+128>>8,p=A[2+e],b=A[6+e],w=u*(A[1+e]-A[7+e])+128>>8,g=u*(A[1+e]+A[7+e])+128>>8,k=A[3+e]<<4,y=A[5+e]<<4,P=d-m+1>>1,d=d+m+1>>1,m=P,P=p*f+b*l+128>>8,p=p*l-b*f+128>>8,b=P,P=w-y+1>>1,w=w+y+1>>1,y=P,P=g+k+1>>1,k=g-k+1>>1,g=P,P=d-b+1>>1,d=d+b+1>>1,b=P,P=m-p+1>>1,m=m+p+1>>1,p=P,P=w*c+g*i+2048>>12,w=w*i-g*c+2048>>12,g=P,P=k*a+y*o+2048>>12,k=k*o-y*a+2048>>12,y=P,A[0+e]=d+g,A[7+e]=d-g,A[1+e]=m+y,A[6+e]=m-y,A[2+e]=p+k,A[5+e]=p-k,A[3+e]=b+w,A[4+e]=b-w):(P=h*A[0+e]+512>>10,A[0+e]=P,A[1+e]=P,A[2+e]=P,A[3+e]=P,A[4+e]=P,A[5+e]=P,A[6+e]=P,A[7+e]=P)}for(C=0;C<8;++C){const e=C;0!==A[8+e]||0!==A[16+e]||0!==A[24+e]||0!==A[32+e]||0!==A[40+e]||0!==A[48+e]||0!==A[56+e]?(d=h*A[0+e]+2048>>12,m=h*A[32+e]+2048>>12,p=A[16+e],b=A[48+e],w=u*(A[8+e]-A[56+e])+2048>>12,g=u*(A[8+e]+A[56+e])+2048>>12,k=A[24+e],y=A[40+e],P=d-m+1>>1,d=d+m+1>>1,m=P,P=p*f+b*l+2048>>12,p=p*l-b*f+2048>>12,b=P,P=w-y+1>>1,w=w+y+1>>1,y=P,P=g+k+1>>1,k=g-k+1>>1,g=P,P=d-b+1>>1,d=d+b+1>>1,b=P,P=m-p+1>>1,m=m+p+1>>1,p=P,P=w*c+g*i+2048>>12,w=w*i-g*c+2048>>12,g=P,P=k*a+y*o+2048>>12,k=k*o-y*a+2048>>12,y=P,A[0+e]=d+g,A[56+e]=d-g,A[8+e]=m+y,A[48+e]=m-y,A[16+e]=p+k,A[40+e]=p-k,A[24+e]=b+w,A[32+e]=b-w):(P=h*r[C+0]+8192>>14,A[0+e]=P,A[8+e]=P,A[16+e]=P,A[24+e]=P,A[32+e]=P,A[40+e]=P,A[48+e]=P,A[56+e]=P)}for(C=0;C<64;++C){const e=128+(A[C]+8>>4);t[C]=e<0?0:e>255?255:e}}for(let e=0;e>4){if(r>>4!=1)throw new Error("DQT: invalid table spec");for(let e=0;e<64;e++)o[s[e]]=t()}else for(let t=0;t<64;t++)o[s[t]]=e[n++];this.quantizationTables[15&r]=o}break}case 65472:case 65473:case 65474:{t();const r={extended:65473===a,progressive:65474===a,precision:e[n++],scanLines:t(),samplesPerLine:t(),components:{},componentsOrder:[]},s=e[n++];let i;for(let t=0;t>4,s=15&e[n+1],o=e[n+2];r.componentsOrder.push(i),r.components[i]={h:t,v:s,quantizationIdx:o},n+=3}o(r),this.frames.push(r);break}case 65476:{const r=t();for(let t=2;t>4?this.huffmanTablesAC[15&r]=d(s,a):this.huffmanTablesDC[15&r]=d(s,a)}break}case 65501:t(),this.resetInterval=t();break;case 65498:{t();const r=e[n++],s=[],o=this.frames[0];for(let t=0;t>4],t.huffmanTableAC=this.huffmanTablesAC[15&r],s.push(t)}const a=e[n++],i=e[n++],c=e[n++],l=m(e,n,o,s,this.resetInterval,a,i,c>>4,15&c);n+=l;break}case 65535:255!==e[n]&&n--;break;default:if(255===e[n-3]&&e[n-2]>=192&&e[n-2]<=254){n-=3;break}throw new Error(`unknown JPEG marker ${a.toString(16)}`)}a=t()}}getResult(){const{frames:e}=this;if(0===this.frames.length)throw new Error("no frames were decoded");this.frames.length>1&&console.warn("more than one frame is not supported");for(let e=0;e 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\n/* -*- tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- /\n/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */\n/*\n Copyright 2011 notmasteryet\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n http://www.apache.org/licenses/LICENSE-2.0\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// - The JPEG specification can be found in the ITU CCITT Recommendation T.81\n// (www.w3.org/Graphics/JPEG/itu-t81.pdf)\n// - The JFIF specification can be found in the JPEG File Interchange Format\n// (www.w3.org/Graphics/JPEG/jfif3.pdf)\n// - The Adobe Application-Specific JPEG markers in the Supporting the DCT Filters\n// in PostScript Level 2, Technical Note #5116\n// (partners.adobe.com/public/developer/en/ps/sdk/5116.DCT_Filter.pdf)\n\nconst dctZigZag = new Int32Array([\n 0,\n 1, 8,\n 16, 9, 2,\n 3, 10, 17, 24,\n 32, 25, 18, 11, 4,\n 5, 12, 19, 26, 33, 40,\n 48, 41, 34, 27, 20, 13, 6,\n 7, 14, 21, 28, 35, 42, 49, 56,\n 57, 50, 43, 36, 29, 22, 15,\n 23, 30, 37, 44, 51, 58,\n 59, 52, 45, 38, 31,\n 39, 46, 53, 60,\n 61, 54, 47,\n 55, 62,\n 63,\n]);\n\nconst dctCos1 = 4017; // cos(pi/16)\nconst dctSin1 = 799; // sin(pi/16)\nconst dctCos3 = 3406; // cos(3*pi/16)\nconst dctSin3 = 2276; // sin(3*pi/16)\nconst dctCos6 = 1567; // cos(6*pi/16)\nconst dctSin6 = 3784; // sin(6*pi/16)\nconst dctSqrt2 = 5793; // sqrt(2)\nconst dctSqrt1d2 = 2896;// sqrt(2) / 2\n\nfunction buildHuffmanTable(codeLengths, values) {\n let k = 0;\n const code = [];\n let length = 16;\n while (length > 0 && !codeLengths[length - 1]) {\n --length;\n }\n code.push({ children: [], index: 0 });\n\n let p = code[0];\n let q;\n for (let i = 0; i < length; i++) {\n for (let j = 0; j < codeLengths[i]; j++) {\n p = code.pop();\n p.children[p.index] = values[k];\n while (p.index > 0) {\n p = code.pop();\n }\n p.index++;\n code.push(p);\n while (code.length <= i) {\n code.push(q = { children: [], index: 0 });\n p.children[p.index] = q.children;\n p = q;\n }\n k++;\n }\n if (i + 1 < length) {\n // p here points to last code\n code.push(q = { children: [], index: 0 });\n p.children[p.index] = q.children;\n p = q;\n }\n }\n return code[0].children;\n}\n\nfunction decodeScan(data, initialOffset,\n frame, components, resetInterval,\n spectralStart, spectralEnd,\n successivePrev, successive) {\n const { mcusPerLine, progressive } = frame;\n\n const startOffset = initialOffset;\n let offset = initialOffset;\n let bitsData = 0;\n let bitsCount = 0;\n function readBit() {\n if (bitsCount > 0) {\n bitsCount--;\n return (bitsData >> bitsCount) & 1;\n }\n bitsData = data[offset++];\n if (bitsData === 0xFF) {\n const nextByte = data[offset++];\n if (nextByte) {\n throw new Error(`unexpected marker: ${((bitsData << 8) | nextByte).toString(16)}`);\n }\n // unstuff 0\n }\n bitsCount = 7;\n return bitsData >>> 7;\n }\n function decodeHuffman(tree) {\n let node = tree;\n let bit;\n while ((bit = readBit()) !== null) { // eslint-disable-line no-cond-assign\n node = node[bit];\n if (typeof node === 'number') {\n return node;\n }\n if (typeof node !== 'object') {\n throw new Error('invalid huffman sequence');\n }\n }\n return null;\n }\n function receive(initialLength) {\n let length = initialLength;\n let n = 0;\n while (length > 0) {\n const bit = readBit();\n if (bit === null) {\n return undefined;\n }\n n = (n << 1) | bit;\n --length;\n }\n return n;\n }\n function receiveAndExtend(length) {\n const n = receive(length);\n if (n >= 1 << (length - 1)) {\n return n;\n }\n return n + (-1 << length) + 1;\n }\n function decodeBaseline(component, zz) {\n const t = decodeHuffman(component.huffmanTableDC);\n const diff = t === 0 ? 0 : receiveAndExtend(t);\n component.pred += diff;\n zz[0] = component.pred;\n let k = 1;\n while (k < 64) {\n const rs = decodeHuffman(component.huffmanTableAC);\n const s = rs & 15;\n const r = rs >> 4;\n if (s === 0) {\n if (r < 15) {\n break;\n }\n k += 16;\n } else {\n k += r;\n const z = dctZigZag[k];\n zz[z] = receiveAndExtend(s);\n k++;\n }\n }\n }\n function decodeDCFirst(component, zz) {\n const t = decodeHuffman(component.huffmanTableDC);\n const diff = t === 0 ? 0 : (receiveAndExtend(t) << successive);\n component.pred += diff;\n zz[0] = component.pred;\n }\n function decodeDCSuccessive(component, zz) {\n zz[0] |= readBit() << successive;\n }\n let eobrun = 0;\n function decodeACFirst(component, zz) {\n if (eobrun > 0) {\n eobrun--;\n return;\n }\n let k = spectralStart;\n const e = spectralEnd;\n while (k <= e) {\n const rs = decodeHuffman(component.huffmanTableAC);\n const s = rs & 15;\n const r = rs >> 4;\n if (s === 0) {\n if (r < 15) {\n eobrun = receive(r) + (1 << r) - 1;\n break;\n }\n k += 16;\n } else {\n k += r;\n const z = dctZigZag[k];\n zz[z] = receiveAndExtend(s) * (1 << successive);\n k++;\n }\n }\n }\n let successiveACState = 0;\n let successiveACNextValue;\n function decodeACSuccessive(component, zz) {\n let k = spectralStart;\n const e = spectralEnd;\n let r = 0;\n while (k <= e) {\n const z = dctZigZag[k];\n const direction = zz[z] < 0 ? -1 : 1;\n switch (successiveACState) {\n case 0: { // initial state\n const rs = decodeHuffman(component.huffmanTableAC);\n const s = rs & 15;\n r = rs >> 4;\n if (s === 0) {\n if (r < 15) {\n eobrun = receive(r) + (1 << r);\n successiveACState = 4;\n } else {\n r = 16;\n successiveACState = 1;\n }\n } else {\n if (s !== 1) {\n throw new Error('invalid ACn encoding');\n }\n successiveACNextValue = receiveAndExtend(s);\n successiveACState = r ? 2 : 3;\n }\n continue; // eslint-disable-line no-continue\n }\n case 1: // skipping r zero items\n case 2:\n if (zz[z]) {\n zz[z] += (readBit() << successive) * direction;\n } else {\n r--;\n if (r === 0) {\n successiveACState = successiveACState === 2 ? 3 : 0;\n }\n }\n break;\n case 3: // set value for a zero item\n if (zz[z]) {\n zz[z] += (readBit() << successive) * direction;\n } else {\n zz[z] = successiveACNextValue << successive;\n successiveACState = 0;\n }\n break;\n case 4: // eob\n if (zz[z]) {\n zz[z] += (readBit() << successive) * direction;\n }\n break;\n default:\n break;\n }\n k++;\n }\n if (successiveACState === 4) {\n eobrun--;\n if (eobrun === 0) {\n successiveACState = 0;\n }\n }\n }\n function decodeMcu(component, decodeFunction, mcu, row, col) {\n const mcuRow = (mcu / mcusPerLine) | 0;\n const mcuCol = mcu % mcusPerLine;\n const blockRow = (mcuRow * component.v) + row;\n const blockCol = (mcuCol * component.h) + col;\n decodeFunction(component, component.blocks[blockRow][blockCol]);\n }\n function decodeBlock(component, decodeFunction, mcu) {\n const blockRow = (mcu / component.blocksPerLine) | 0;\n const blockCol = mcu % component.blocksPerLine;\n decodeFunction(component, component.blocks[blockRow][blockCol]);\n }\n\n const componentsLength = components.length;\n let component;\n let i;\n let j;\n let k;\n let n;\n let decodeFn;\n if (progressive) {\n if (spectralStart === 0) {\n decodeFn = successivePrev === 0 ? decodeDCFirst : decodeDCSuccessive;\n } else {\n decodeFn = successivePrev === 0 ? decodeACFirst : decodeACSuccessive;\n }\n } else {\n decodeFn = decodeBaseline;\n }\n\n let mcu = 0;\n let marker;\n let mcuExpected;\n if (componentsLength === 1) {\n mcuExpected = components[0].blocksPerLine * components[0].blocksPerColumn;\n } else {\n mcuExpected = mcusPerLine * frame.mcusPerColumn;\n }\n\n const usedResetInterval = resetInterval || mcuExpected;\n\n while (mcu < mcuExpected) {\n // reset interval stuff\n for (i = 0; i < componentsLength; i++) {\n components[i].pred = 0;\n }\n eobrun = 0;\n\n if (componentsLength === 1) {\n component = components[0];\n for (n = 0; n < usedResetInterval; n++) {\n decodeBlock(component, decodeFn, mcu);\n mcu++;\n }\n } else {\n for (n = 0; n < usedResetInterval; n++) {\n for (i = 0; i < componentsLength; i++) {\n component = components[i];\n const { h, v } = component;\n for (j = 0; j < v; j++) {\n for (k = 0; k < h; k++) {\n decodeMcu(component, decodeFn, mcu, j, k);\n }\n }\n }\n mcu++;\n\n // If we've reached our expected MCU's, stop decoding\n if (mcu === mcuExpected) {\n break;\n }\n }\n }\n\n // find marker\n bitsCount = 0;\n marker = (data[offset] << 8) | data[offset + 1];\n if (marker < 0xFF00) {\n throw new Error('marker was not found');\n }\n\n if (marker >= 0xFFD0 && marker <= 0xFFD7) { // RSTx\n offset += 2;\n } else {\n break;\n }\n }\n\n return offset - startOffset;\n}\n\nfunction buildComponentData(frame, component) {\n const lines = [];\n const { blocksPerLine, blocksPerColumn } = component;\n const samplesPerLine = blocksPerLine << 3;\n const R = new Int32Array(64);\n const r = new Uint8Array(64);\n\n // A port of poppler's IDCT method which in turn is taken from:\n // Christoph Loeffler, Adriaan Ligtenberg, George S. Moschytz,\n // \"Practical Fast 1-D DCT Algorithms with 11 Multiplications\",\n // IEEE Intl. Conf. on Acoustics, Speech & Signal Processing, 1989,\n // 988-991.\n function quantizeAndInverse(zz, dataOut, dataIn) {\n const qt = component.quantizationTable;\n let v0;\n let v1;\n let v2;\n let v3;\n let v4;\n let v5;\n let v6;\n let v7;\n let t;\n const p = dataIn;\n let i;\n\n // dequant\n for (i = 0; i < 64; i++) {\n p[i] = zz[i] * qt[i];\n }\n\n // inverse DCT on rows\n for (i = 0; i < 8; ++i) {\n const row = 8 * i;\n\n // check for all-zero AC coefficients\n if (p[1 + row] === 0 && p[2 + row] === 0 && p[3 + row] === 0\n && p[4 + row] === 0 && p[5 + row] === 0 && p[6 + row] === 0\n && p[7 + row] === 0) {\n t = ((dctSqrt2 * p[0 + row]) + 512) >> 10;\n p[0 + row] = t;\n p[1 + row] = t;\n p[2 + row] = t;\n p[3 + row] = t;\n p[4 + row] = t;\n p[5 + row] = t;\n p[6 + row] = t;\n p[7 + row] = t;\n continue; // eslint-disable-line no-continue\n }\n\n // stage 4\n v0 = ((dctSqrt2 * p[0 + row]) + 128) >> 8;\n v1 = ((dctSqrt2 * p[4 + row]) + 128) >> 8;\n v2 = p[2 + row];\n v3 = p[6 + row];\n v4 = ((dctSqrt1d2 * (p[1 + row] - p[7 + row])) + 128) >> 8;\n v7 = ((dctSqrt1d2 * (p[1 + row] + p[7 + row])) + 128) >> 8;\n v5 = p[3 + row] << 4;\n v6 = p[5 + row] << 4;\n\n // stage 3\n t = (v0 - v1 + 1) >> 1;\n v0 = (v0 + v1 + 1) >> 1;\n v1 = t;\n t = ((v2 * dctSin6) + (v3 * dctCos6) + 128) >> 8;\n v2 = ((v2 * dctCos6) - (v3 * dctSin6) + 128) >> 8;\n v3 = t;\n t = (v4 - v6 + 1) >> 1;\n v4 = (v4 + v6 + 1) >> 1;\n v6 = t;\n t = (v7 + v5 + 1) >> 1;\n v5 = (v7 - v5 + 1) >> 1;\n v7 = t;\n\n // stage 2\n t = (v0 - v3 + 1) >> 1;\n v0 = (v0 + v3 + 1) >> 1;\n v3 = t;\n t = (v1 - v2 + 1) >> 1;\n v1 = (v1 + v2 + 1) >> 1;\n v2 = t;\n t = ((v4 * dctSin3) + (v7 * dctCos3) + 2048) >> 12;\n v4 = ((v4 * dctCos3) - (v7 * dctSin3) + 2048) >> 12;\n v7 = t;\n t = ((v5 * dctSin1) + (v6 * dctCos1) + 2048) >> 12;\n v5 = ((v5 * dctCos1) - (v6 * dctSin1) + 2048) >> 12;\n v6 = t;\n\n // stage 1\n p[0 + row] = v0 + v7;\n p[7 + row] = v0 - v7;\n p[1 + row] = v1 + v6;\n p[6 + row] = v1 - v6;\n p[2 + row] = v2 + v5;\n p[5 + row] = v2 - v5;\n p[3 + row] = v3 + v4;\n p[4 + row] = v3 - v4;\n }\n\n // inverse DCT on columns\n for (i = 0; i < 8; ++i) {\n const col = i;\n\n // check for all-zero AC coefficients\n if (p[(1 * 8) + col] === 0 && p[(2 * 8) + col] === 0 && p[(3 * 8) + col] === 0\n && p[(4 * 8) + col] === 0 && p[(5 * 8) + col] === 0 && p[(6 * 8) + col] === 0\n && p[(7 * 8) + col] === 0) {\n t = ((dctSqrt2 * dataIn[i + 0]) + 8192) >> 14;\n p[(0 * 8) + col] = t;\n p[(1 * 8) + col] = t;\n p[(2 * 8) + col] = t;\n p[(3 * 8) + col] = t;\n p[(4 * 8) + col] = t;\n p[(5 * 8) + col] = t;\n p[(6 * 8) + col] = t;\n p[(7 * 8) + col] = t;\n continue; // eslint-disable-line no-continue\n }\n\n // stage 4\n v0 = ((dctSqrt2 * p[(0 * 8) + col]) + 2048) >> 12;\n v1 = ((dctSqrt2 * p[(4 * 8) + col]) + 2048) >> 12;\n v2 = p[(2 * 8) + col];\n v3 = p[(6 * 8) + col];\n v4 = ((dctSqrt1d2 * (p[(1 * 8) + col] - p[(7 * 8) + col])) + 2048) >> 12;\n v7 = ((dctSqrt1d2 * (p[(1 * 8) + col] + p[(7 * 8) + col])) + 2048) >> 12;\n v5 = p[(3 * 8) + col];\n v6 = p[(5 * 8) + col];\n\n // stage 3\n t = (v0 - v1 + 1) >> 1;\n v0 = (v0 + v1 + 1) >> 1;\n v1 = t;\n t = ((v2 * dctSin6) + (v3 * dctCos6) + 2048) >> 12;\n v2 = ((v2 * dctCos6) - (v3 * dctSin6) + 2048) >> 12;\n v3 = t;\n t = (v4 - v6 + 1) >> 1;\n v4 = (v4 + v6 + 1) >> 1;\n v6 = t;\n t = (v7 + v5 + 1) >> 1;\n v5 = (v7 - v5 + 1) >> 1;\n v7 = t;\n\n // stage 2\n t = (v0 - v3 + 1) >> 1;\n v0 = (v0 + v3 + 1) >> 1;\n v3 = t;\n t = (v1 - v2 + 1) >> 1;\n v1 = (v1 + v2 + 1) >> 1;\n v2 = t;\n t = ((v4 * dctSin3) + (v7 * dctCos3) + 2048) >> 12;\n v4 = ((v4 * dctCos3) - (v7 * dctSin3) + 2048) >> 12;\n v7 = t;\n t = ((v5 * dctSin1) + (v6 * dctCos1) + 2048) >> 12;\n v5 = ((v5 * dctCos1) - (v6 * dctSin1) + 2048) >> 12;\n v6 = t;\n\n // stage 1\n p[(0 * 8) + col] = v0 + v7;\n p[(7 * 8) + col] = v0 - v7;\n p[(1 * 8) + col] = v1 + v6;\n p[(6 * 8) + col] = v1 - v6;\n p[(2 * 8) + col] = v2 + v5;\n p[(5 * 8) + col] = v2 - v5;\n p[(3 * 8) + col] = v3 + v4;\n p[(4 * 8) + col] = v3 - v4;\n }\n\n // convert to 8-bit integers\n for (i = 0; i < 64; ++i) {\n const sample = 128 + ((p[i] + 8) >> 4);\n if (sample < 0) {\n dataOut[i] = 0;\n } else if (sample > 0XFF) {\n dataOut[i] = 0xFF;\n } else {\n dataOut[i] = sample;\n }\n }\n }\n\n for (let blockRow = 0; blockRow < blocksPerColumn; blockRow++) {\n const scanLine = blockRow << 3;\n for (let i = 0; i < 8; i++) {\n lines.push(new Uint8Array(samplesPerLine));\n }\n for (let blockCol = 0; blockCol < blocksPerLine; blockCol++) {\n quantizeAndInverse(component.blocks[blockRow][blockCol], r, R);\n\n let offset = 0;\n const sample = blockCol << 3;\n for (let j = 0; j < 8; j++) {\n const line = lines[scanLine + j];\n for (let i = 0; i < 8; i++) {\n line[sample + i] = r[offset++];\n }\n }\n }\n }\n return lines;\n}\n\nclass JpegStreamReader {\n constructor() {\n this.jfif = null;\n this.adobe = null;\n\n this.quantizationTables = [];\n this.huffmanTablesAC = [];\n this.huffmanTablesDC = [];\n this.resetFrames();\n }\n\n resetFrames() {\n this.frames = [];\n }\n\n parse(data) {\n let offset = 0;\n // const { length } = data;\n function readUint16() {\n const value = (data[offset] << 8) | data[offset + 1];\n offset += 2;\n return value;\n }\n function readDataBlock() {\n const length = readUint16();\n const array = data.subarray(offset, offset + length - 2);\n offset += array.length;\n return array;\n }\n function prepareComponents(frame) {\n let maxH = 0;\n let maxV = 0;\n let component;\n let componentId;\n for (componentId in frame.components) {\n if (frame.components.hasOwnProperty(componentId)) {\n component = frame.components[componentId];\n if (maxH < component.h) {\n maxH = component.h;\n }\n if (maxV < component.v) {\n maxV = component.v;\n }\n }\n }\n const mcusPerLine = Math.ceil(frame.samplesPerLine / 8 / maxH);\n const mcusPerColumn = Math.ceil(frame.scanLines / 8 / maxV);\n for (componentId in frame.components) {\n if (frame.components.hasOwnProperty(componentId)) {\n component = frame.components[componentId];\n const blocksPerLine = Math.ceil(Math.ceil(frame.samplesPerLine / 8) * component.h / maxH);\n const blocksPerColumn = Math.ceil(Math.ceil(frame.scanLines / 8) * component.v / maxV);\n const blocksPerLineForMcu = mcusPerLine * component.h;\n const blocksPerColumnForMcu = mcusPerColumn * component.v;\n const blocks = [];\n for (let i = 0; i < blocksPerColumnForMcu; i++) {\n const row = [];\n for (let j = 0; j < blocksPerLineForMcu; j++) {\n row.push(new Int32Array(64));\n }\n blocks.push(row);\n }\n component.blocksPerLine = blocksPerLine;\n component.blocksPerColumn = blocksPerColumn;\n component.blocks = blocks;\n }\n }\n frame.maxH = maxH;\n frame.maxV = maxV;\n frame.mcusPerLine = mcusPerLine;\n frame.mcusPerColumn = mcusPerColumn;\n }\n\n let fileMarker = readUint16();\n if (fileMarker !== 0xFFD8) { // SOI (Start of Image)\n throw new Error('SOI not found');\n }\n\n fileMarker = readUint16();\n while (fileMarker !== 0xFFD9) { // EOI (End of image)\n switch (fileMarker) {\n case 0xFF00: break;\n case 0xFFE0: // APP0 (Application Specific)\n case 0xFFE1: // APP1\n case 0xFFE2: // APP2\n case 0xFFE3: // APP3\n case 0xFFE4: // APP4\n case 0xFFE5: // APP5\n case 0xFFE6: // APP6\n case 0xFFE7: // APP7\n case 0xFFE8: // APP8\n case 0xFFE9: // APP9\n case 0xFFEA: // APP10\n case 0xFFEB: // APP11\n case 0xFFEC: // APP12\n case 0xFFED: // APP13\n case 0xFFEE: // APP14\n case 0xFFEF: // APP15\n case 0xFFFE: { // COM (Comment)\n const appData = readDataBlock();\n\n if (fileMarker === 0xFFE0) {\n if (appData[0] === 0x4A && appData[1] === 0x46 && appData[2] === 0x49\n && appData[3] === 0x46 && appData[4] === 0) { // 'JFIF\\x00'\n this.jfif = {\n version: { major: appData[5], minor: appData[6] },\n densityUnits: appData[7],\n xDensity: (appData[8] << 8) | appData[9],\n yDensity: (appData[10] << 8) | appData[11],\n thumbWidth: appData[12],\n thumbHeight: appData[13],\n thumbData: appData.subarray(14, 14 + (3 * appData[12] * appData[13])),\n };\n }\n }\n // TODO APP1 - Exif\n if (fileMarker === 0xFFEE) {\n if (appData[0] === 0x41 && appData[1] === 0x64 && appData[2] === 0x6F\n && appData[3] === 0x62 && appData[4] === 0x65 && appData[5] === 0) { // 'Adobe\\x00'\n this.adobe = {\n version: appData[6],\n flags0: (appData[7] << 8) | appData[8],\n flags1: (appData[9] << 8) | appData[10],\n transformCode: appData[11],\n };\n }\n }\n break;\n }\n\n case 0xFFDB: { // DQT (Define Quantization Tables)\n const quantizationTablesLength = readUint16();\n const quantizationTablesEnd = quantizationTablesLength + offset - 2;\n while (offset < quantizationTablesEnd) {\n const quantizationTableSpec = data[offset++];\n const tableData = new Int32Array(64);\n if ((quantizationTableSpec >> 4) === 0) { // 8 bit values\n for (let j = 0; j < 64; j++) {\n const z = dctZigZag[j];\n tableData[z] = data[offset++];\n }\n } else if ((quantizationTableSpec >> 4) === 1) { // 16 bit\n for (let j = 0; j < 64; j++) {\n const z = dctZigZag[j];\n tableData[z] = readUint16();\n }\n } else {\n throw new Error('DQT: invalid table spec');\n }\n this.quantizationTables[quantizationTableSpec & 15] = tableData;\n }\n break;\n }\n\n case 0xFFC0: // SOF0 (Start of Frame, Baseline DCT)\n case 0xFFC1: // SOF1 (Start of Frame, Extended DCT)\n case 0xFFC2: { // SOF2 (Start of Frame, Progressive DCT)\n readUint16(); // skip data length\n const frame = {\n extended: (fileMarker === 0xFFC1),\n progressive: (fileMarker === 0xFFC2),\n precision: data[offset++],\n scanLines: readUint16(),\n samplesPerLine: readUint16(),\n components: {},\n componentsOrder: [],\n };\n\n const componentsCount = data[offset++];\n let componentId;\n // let maxH = 0;\n // let maxV = 0;\n for (let i = 0; i < componentsCount; i++) {\n componentId = data[offset];\n const h = data[offset + 1] >> 4;\n const v = data[offset + 1] & 15;\n const qId = data[offset + 2];\n frame.componentsOrder.push(componentId);\n frame.components[componentId] = {\n h,\n v,\n quantizationIdx: qId,\n };\n offset += 3;\n }\n prepareComponents(frame);\n this.frames.push(frame);\n break;\n }\n\n case 0xFFC4: { // DHT (Define Huffman Tables)\n const huffmanLength = readUint16();\n for (let i = 2; i < huffmanLength;) {\n const huffmanTableSpec = data[offset++];\n const codeLengths = new Uint8Array(16);\n let codeLengthSum = 0;\n for (let j = 0; j < 16; j++, offset++) {\n codeLengths[j] = data[offset];\n codeLengthSum += codeLengths[j];\n }\n const huffmanValues = new Uint8Array(codeLengthSum);\n for (let j = 0; j < codeLengthSum; j++, offset++) {\n huffmanValues[j] = data[offset];\n }\n i += 17 + codeLengthSum;\n\n if ((huffmanTableSpec >> 4) === 0) {\n this.huffmanTablesDC[huffmanTableSpec & 15] = buildHuffmanTable(\n codeLengths, huffmanValues,\n );\n } else {\n this.huffmanTablesAC[huffmanTableSpec & 15] = buildHuffmanTable(\n codeLengths, huffmanValues,\n );\n }\n }\n break;\n }\n\n case 0xFFDD: // DRI (Define Restart Interval)\n readUint16(); // skip data length\n this.resetInterval = readUint16();\n break;\n\n case 0xFFDA: { // SOS (Start of Scan)\n readUint16(); // skip length\n const selectorsCount = data[offset++];\n const components = [];\n const frame = this.frames[0];\n for (let i = 0; i < selectorsCount; i++) {\n const component = frame.components[data[offset++]];\n const tableSpec = data[offset++];\n component.huffmanTableDC = this.huffmanTablesDC[tableSpec >> 4];\n component.huffmanTableAC = this.huffmanTablesAC[tableSpec & 15];\n components.push(component);\n }\n const spectralStart = data[offset++];\n const spectralEnd = data[offset++];\n const successiveApproximation = data[offset++];\n const processed = decodeScan(data, offset,\n frame, components, this.resetInterval,\n spectralStart, spectralEnd,\n successiveApproximation >> 4, successiveApproximation & 15);\n offset += processed;\n break;\n }\n\n case 0xFFFF: // Fill bytes\n if (data[offset] !== 0xFF) { // Avoid skipping a valid marker.\n offset--;\n }\n break;\n\n default:\n if (data[offset - 3] === 0xFF\n && data[offset - 2] >= 0xC0 && data[offset - 2] <= 0xFE) {\n // could be incorrect encoding -- last 0xFF byte of the previous\n // block was eaten by the encoder\n offset -= 3;\n break;\n }\n throw new Error(`unknown JPEG marker ${fileMarker.toString(16)}`);\n }\n fileMarker = readUint16();\n }\n }\n\n getResult() {\n const { frames } = this;\n if (this.frames.length === 0) {\n throw new Error('no frames were decoded');\n } else if (this.frames.length > 1) {\n console.warn('more than one frame is not supported');\n }\n\n // set each frame's components quantization table\n for (let i = 0; i < this.frames.length; i++) {\n const cp = this.frames[i].components;\n for (const j of Object.keys(cp)) {\n cp[j].quantizationTable = this.quantizationTables[cp[j].quantizationIdx];\n delete cp[j].quantizationIdx;\n }\n }\n\n const frame = frames[0];\n const { components, componentsOrder } = frame;\n const outComponents = [];\n const width = frame.samplesPerLine;\n const height = frame.scanLines;\n\n for (let i = 0; i < componentsOrder.length; i++) {\n const component = components[componentsOrder[i]];\n outComponents.push({\n lines: buildComponentData(frame, component),\n scaleX: component.h / frame.maxH,\n scaleY: component.v / frame.maxV,\n });\n }\n\n const out = new Uint8Array(width * height * outComponents.length);\n let oi = 0;\n for (let y = 0; y < height; ++y) {\n for (let x = 0; x < width; ++x) {\n for (let i = 0; i < outComponents.length; ++i) {\n const component = outComponents[i];\n out[oi] = component.lines[0 | y * component.scaleY][0 | x * component.scaleX];\n ++oi;\n }\n }\n }\n return out;\n }\n}\n\nexport default class JpegDecoder extends BaseDecoder {\n constructor(fileDirectory) {\n super();\n this.reader = new JpegStreamReader();\n if (fileDirectory.JPEGTables) {\n this.reader.parse(fileDirectory.JPEGTables);\n }\n }\n\n decodeBlock(buffer) {\n this.reader.resetFrames();\n this.reader.parse(new Uint8Array(buffer));\n return this.reader.getResult().buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","dctZigZag","Int32Array","dctCos1","dctSin1","dctCos3","dctSin3","dctCos6","dctSin6","dctSqrt2","dctSqrt1d2","buildHuffmanTable","codeLengths","values","k","code","push","children","q","p","j","pop","decodeScan","data","initialOffset","frame","components","resetInterval","spectralStart","spectralEnd","successivePrev","successive","mcusPerLine","progressive","startOffset","bitsData","bitsCount","readBit","nextByte","toString","decodeHuffman","tree","bit","node","receive","initialLength","n","receiveAndExtend","successiveACNextValue","eobrun","successiveACState","decodeMcu","component","decodeFunction","mcu","col","mcuCol","blockRow","v","blockCol","h","blocks","blocksPerLine","componentsLength","decodeFn","zz","t","huffmanTableDC","diff","pred","e","rs","huffmanTableAC","s","r","z","direction","marker","mcuExpected","blocksPerColumn","mcusPerColumn","usedResetInterval","buildComponentData","lines","samplesPerLine","R","quantizeAndInverse","dataOut","dataIn","qt","quantizationTable","v0","v1","v2","v3","v4","v5","v6","v7","sample","scanLine","line","JpegStreamReader","constructor","jfif","adobe","quantizationTables","huffmanTablesAC","huffmanTablesDC","resetFrames","frames","parse","readUint16","value","readDataBlock","array","subarray","prepareComponents","componentId","maxH","maxV","hasOwnProperty","Math","ceil","scanLines","blocksPerLineForMcu","blocksPerColumnForMcu","fileMarker","appData","version","major","minor","densityUnits","xDensity","yDensity","thumbWidth","thumbHeight","thumbData","flags0","flags1","transformCode","quantizationTablesEnd","quantizationTableSpec","tableData","extended","precision","componentsOrder","componentsCount","qId","quantizationIdx","huffmanLength","huffmanTableSpec","codeLengthSum","huffmanValues","selectorsCount","tableSpec","successiveApproximation","processed","getResult","console","warn","cp","Object","keys","outComponents","scaleX","scaleY","out","oi","y","x","JpegDecoder","super","reader","JPEGTables"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/nbextension/749.index.js b/ipyopenlayers/nbextension/749.index.js new file mode 100644 index 0000000..b4139e9 --- /dev/null +++ b/ipyopenlayers/nbextension/749.index.js @@ -0,0 +1,2 @@ +"use strict";(self.webpackChunkipyopenlayers=self.webpackChunkipyopenlayers||[]).push([[749],{708:(e,t,r)=>{function n(e,t){let r=e.length-t,n=0;do{for(let r=t;r>0;r--)e[n+t]+=e[n],n++;r-=t}while(r>0)}function o(e,t,r){let n=0,o=e.length;const i=o/r;for(;o>t;){for(let r=t;r>0;--r)e[n+t]+=e[n],++n;o-=t}const l=e.slice();for(let t=0;ti});class i{async decode(e,t){const r=await this.decodeBlock(t),i=e.Predictor||1;if(1!==i){const t=!e.StripOffsets;return function(e,t,r,i,l,s){if(!t||1===t)return e;for(let e=0;e=e.byteLength);++s){let i;if(2===t){switch(l[0]){case 8:i=new Uint8Array(e,s*c*r*a,c*r*a);break;case 16:i=new Uint16Array(e,s*c*r*a,c*r*a/2);break;case 32:i=new Uint32Array(e,s*c*r*a,c*r*a/4);break;default:throw new Error(`Predictor 2 not allowed with ${l[0]} bits per sample.`)}n(i,c)}else 3===t&&(i=new Uint8Array(e,s*c*r*a,c*r*a),o(i,c,a))}return e}(r,i,t?e.TileWidth:e.ImageWidth,t?e.TileLength:e.RowsPerStrip||e.ImageLength,e.BitsPerSample,e.PlanarConfiguration)}return r}}},6749:(e,t,r)=>{r.r(t),r.d(t,{default:()=>o});var n=r(708);class o extends n.A{decodeBlock(e){return e}}}}]); +//# sourceMappingURL=749.index.js.map \ No newline at end of file diff --git a/ipyopenlayers/nbextension/749.index.js.map b/ipyopenlayers/nbextension/749.index.js.map new file mode 100644 index 0000000..c9e8a7a --- /dev/null +++ b/ipyopenlayers/nbextension/749.index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"749.index.js","mappings":"4GAAA,SAASA,EAAaC,EAAKC,GACzB,IAAIC,EAASF,EAAIE,OAASD,EACtBE,EAAS,EACb,EAAG,CACD,IAAK,IAAIC,EAAIH,EAAQG,EAAI,EAAGA,IAC1BJ,EAAIG,EAASF,IAAWD,EAAIG,GAC5BA,IAGFD,GAAUD,CACZ,OAASC,EAAS,EACpB,CAEA,SAASG,EAAuBL,EAAKC,EAAQK,GAC3C,IAAIC,EAAQ,EACRC,EAAQR,EAAIE,OAChB,MAAMO,EAAKD,EAAQF,EAEnB,KAAOE,EAAQP,GAAQ,CACrB,IAAK,IAAIG,EAAIH,EAAQG,EAAI,IAAKA,EAC5BJ,EAAIO,EAAQN,IAAWD,EAAIO,KACzBA,EAEJC,GAASP,CACX,CAEA,MAAMS,EAAOV,EAAIW,QACjB,IAAK,IAAIP,EAAI,EAAGA,EAAIK,IAAML,EACxB,IAAK,IAAIQ,EAAI,EAAGA,EAAIN,IAAkBM,EACpCZ,EAAKM,EAAiBF,EAAKQ,GAAKF,GAAOJ,EAAiBM,EAAI,GAAKH,EAAML,EAG7E,C,iBC9Be,MAAMS,EACnB,YAAMC,CAAOC,EAAeC,GAC1B,MAAMC,QAAgBC,KAAKC,YAAYH,GACjCI,EAAYL,EAAcM,WAAa,EAC7C,GAAkB,IAAdD,EAAiB,CACnB,MAAME,GAAWP,EAAcQ,aAK/B,ODsBC,SAAwBC,EAAOJ,EAAWK,EAAOC,EAAQC,EAC9DC,GACA,IAAKR,GAA2B,IAAdA,EAChB,OAAOI,EAGT,IAAK,IAAIpB,EAAI,EAAGA,EAAIuB,EAAczB,SAAUE,EAAG,CAC7C,GAAIuB,EAAcvB,GAAK,GAAM,EAC3B,MAAM,IAAIyB,MAAM,wEAElB,GAAIF,EAAcvB,KAAOuB,EAAc,GACrC,MAAM,IAAIE,MAAM,qEAEpB,CAEA,MAAMvB,EAAiBqB,EAAc,GAAK,EACpC1B,EAAiC,IAAxB2B,EAA4B,EAAID,EAAczB,OAE7D,IAAK,IAAIE,EAAI,EAAGA,EAAIsB,KAEdtB,EAAIH,EAASwB,EAAQnB,GAAkBkB,EAAMM,cAFrB1B,EAAG,CAK/B,IAAIJ,EACJ,GAAkB,IAAdoB,EAAiB,CACnB,OAAQO,EAAc,IACpB,KAAK,EACH3B,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/D,MACF,KAAK,GACHN,EAAM,IAAIgC,YACRR,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,KAAK,GACHN,EAAM,IAAIiC,YACRT,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,EAAiB,GAEhF,MACF,QACE,MAAM,IAAIuB,MAAM,gCAAgCF,EAAc,uBAElE5B,EAAaC,EAAKC,EACpB,MAAyB,IAAdmB,IACTpB,EAAM,IAAI+B,WACRP,EAAOpB,EAAIH,EAASwB,EAAQnB,EAAgBL,EAASwB,EAAQnB,GAE/DD,EAAuBL,EAAKC,EAAQK,GAExC,CACA,OAAOkB,CACT,CC3EaU,CACLjB,EAASG,EALOE,EAAUP,EAAcoB,UAAYpB,EAAcqB,WACjDd,EAAUP,EAAcsB,WACzCtB,EAAcuB,cAAgBvB,EAAcwB,YAGDxB,EAAcyB,cACzDzB,EAAc0B,oBAElB,CACA,OAAOxB,CACT,E,4DChBa,MAAMyB,UAAmB,IACtC,WAAAvB,CAAYH,GACV,OAAOA,CACT,E","sources":["webpack://ipyopenlayers/./node_modules/geotiff/dist-module/predictor.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/basedecoder.js","webpack://ipyopenlayers/./node_modules/geotiff/dist-module/compression/raw.js"],"sourcesContent":["function decodeRowAcc(row, stride) {\n let length = row.length - stride;\n let offset = 0;\n do {\n for (let i = stride; i > 0; i--) {\n row[offset + stride] += row[offset];\n offset++;\n }\n\n length -= stride;\n } while (length > 0);\n}\n\nfunction decodeRowFloatingPoint(row, stride, bytesPerSample) {\n let index = 0;\n let count = row.length;\n const wc = count / bytesPerSample;\n\n while (count > stride) {\n for (let i = stride; i > 0; --i) {\n row[index + stride] += row[index];\n ++index;\n }\n count -= stride;\n }\n\n const copy = row.slice();\n for (let i = 0; i < wc; ++i) {\n for (let b = 0; b < bytesPerSample; ++b) {\n row[(bytesPerSample * i) + b] = copy[((bytesPerSample - b - 1) * wc) + i];\n }\n }\n}\n\nexport function applyPredictor(block, predictor, width, height, bitsPerSample,\n planarConfiguration) {\n if (!predictor || predictor === 1) {\n return block;\n }\n\n for (let i = 0; i < bitsPerSample.length; ++i) {\n if (bitsPerSample[i] % 8 !== 0) {\n throw new Error('When decoding with predictor, only multiple of 8 bits are supported.');\n }\n if (bitsPerSample[i] !== bitsPerSample[0]) {\n throw new Error('When decoding with predictor, all samples must have the same size.');\n }\n }\n\n const bytesPerSample = bitsPerSample[0] / 8;\n const stride = planarConfiguration === 2 ? 1 : bitsPerSample.length;\n\n for (let i = 0; i < height; ++i) {\n // Last strip will be truncated if height % stripHeight != 0\n if (i * stride * width * bytesPerSample >= block.byteLength) {\n break;\n }\n let row;\n if (predictor === 2) { // horizontal prediction\n switch (bitsPerSample[0]) {\n case 8:\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n break;\n case 16:\n row = new Uint16Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 2,\n );\n break;\n case 32:\n row = new Uint32Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample / 4,\n );\n break;\n default:\n throw new Error(`Predictor 2 not allowed with ${bitsPerSample[0]} bits per sample.`);\n }\n decodeRowAcc(row, stride, bytesPerSample);\n } else if (predictor === 3) { // horizontal floating point\n row = new Uint8Array(\n block, i * stride * width * bytesPerSample, stride * width * bytesPerSample,\n );\n decodeRowFloatingPoint(row, stride, bytesPerSample);\n }\n }\n return block;\n}\n","import { applyPredictor } from '../predictor.js';\n\nexport default class BaseDecoder {\n async decode(fileDirectory, buffer) {\n const decoded = await this.decodeBlock(buffer);\n const predictor = fileDirectory.Predictor || 1;\n if (predictor !== 1) {\n const isTiled = !fileDirectory.StripOffsets;\n const tileWidth = isTiled ? fileDirectory.TileWidth : fileDirectory.ImageWidth;\n const tileHeight = isTiled ? fileDirectory.TileLength : (\n fileDirectory.RowsPerStrip || fileDirectory.ImageLength\n );\n return applyPredictor(\n decoded, predictor, tileWidth, tileHeight, fileDirectory.BitsPerSample,\n fileDirectory.PlanarConfiguration,\n );\n }\n return decoded;\n }\n}\n","import BaseDecoder from './basedecoder.js';\n\nexport default class RawDecoder extends BaseDecoder {\n decodeBlock(buffer) {\n return buffer;\n }\n}\n"],"names":["decodeRowAcc","row","stride","length","offset","i","decodeRowFloatingPoint","bytesPerSample","index","count","wc","copy","slice","b","BaseDecoder","decode","fileDirectory","buffer","decoded","this","decodeBlock","predictor","Predictor","isTiled","StripOffsets","block","width","height","bitsPerSample","planarConfiguration","Error","byteLength","Uint8Array","Uint16Array","Uint32Array","applyPredictor","TileWidth","ImageWidth","TileLength","RowsPerStrip","ImageLength","BitsPerSample","PlanarConfiguration","RawDecoder"],"sourceRoot":""} \ No newline at end of file diff --git a/ipyopenlayers/tests/test_example.py b/ipyopenlayers/tests/test_example.py index a904ae6..8478660 100644 --- a/ipyopenlayers/tests/test_example.py +++ b/ipyopenlayers/tests/test_example.py @@ -6,7 +6,7 @@ import pytest -from ..example import ExampleWidget +from ..Map import ExampleWidget def test_example_creation_blank(): diff --git a/src/baseoverlay.ts b/src/baseoverlay.ts index 08ca913..ffd66df 100644 --- a/src/baseoverlay.ts +++ b/src/baseoverlay.ts @@ -15,11 +15,12 @@ export class BaseOverlayModel extends DOMWidgetModel { defaults() { return { ...super.defaults(), + _model_name: BaseOverlayModel.model_name, _model_module: BaseOverlayModel.model_module, _model_module_version: BaseOverlayModel.model_module_version, + _view_name: BaseOverlayModel.view_name, _view_module: BaseOverlayModel.view_module, _view_module_version: BaseOverlayModel.view_module_version, - position: [0, 0], }; } @@ -27,8 +28,10 @@ export class BaseOverlayModel extends DOMWidgetModel { ...DOMWidgetModel.serializers, }; + static model_name = 'BaseOverlayModel'; static model_module = MODULE_NAME; static model_module_version = MODULE_VERSION; + static view_name = 'BaseOverlayView'; static view_module = MODULE_NAME; static view_module_version = MODULE_VERSION; } diff --git a/src/geojson.ts b/src/geojson.ts index c4db11b..565fdbe 100644 --- a/src/geojson.ts +++ b/src/geojson.ts @@ -43,7 +43,6 @@ export class OpenLayersGeoJSONView extends LayerView { this.create_obj(); this.modelEvents(); } - create_obj() { this.obj = this.vectorLayer; } diff --git a/src/layer.ts b/src/layer.ts index 3515f77..6c8f40c 100644 --- a/src/layer.ts +++ b/src/layer.ts @@ -14,6 +14,7 @@ export class LayerModel extends WidgetModel { _view_name: LayerModel.view_name, _view_module: LayerModel.view_module, _view_module_version: LayerModel.view_module_version, + value: 'Hello World', }; } diff --git a/src/scaleline.ts b/src/scaleline.ts index 8ae6faf..5fd7a0a 100644 --- a/src/scaleline.ts +++ b/src/scaleline.ts @@ -35,7 +35,7 @@ export class ScaleLineModel extends BaseControlModel { export class ScaleLineView extends BaseControlView { createObj() { this.obj = new ScaleLine({ - className: 'ol-scale-bar', + className: 'ol-scale-line', }); } } diff --git a/src/tilelayer.ts b/src/tilelayer.ts index e780aed..6dbd870 100644 --- a/src/tilelayer.ts +++ b/src/tilelayer.ts @@ -1,12 +1,14 @@ // Copyright (c) QuantStack // Distributed under the terms of the Modified BSD License. -import { WidgetModel, WidgetView, ISerializers } from '@jupyter-widgets/base'; +import { WidgetModel, ISerializers } from '@jupyter-widgets/base'; import TileLayer from 'ol/layer/Tile'; import XYZ from 'ol/source/XYZ'; import OSM from 'ol/source/OSM'; import { MODULE_NAME, MODULE_VERSION } from './version'; +import { MapView } from './widget'; +import { LayerModel, LayerView } from './layer'; -export class TileLayerModel extends WidgetModel { +export class TileLayerModel extends LayerModel { defaults() { return { ...super.defaults(), @@ -16,7 +18,6 @@ export class TileLayerModel extends WidgetModel { _view_name: TileLayerModel.view_name, _view_module: TileLayerModel.view_module, _view_module_version: TileLayerModel.view_module_version, - value: 'Hello World', }; } @@ -33,7 +34,9 @@ export class TileLayerModel extends WidgetModel { static view_module_version = MODULE_VERSION; } -export class TileLayerView extends WidgetView { +export class TileLayerView extends LayerView { + map_view: MapView; + render() { super.render(); const url = this.model.get('url'); @@ -43,11 +46,15 @@ export class TileLayerView extends WidgetView { url: url, }), }); - + this.create_obj(); this.urlChanged(); this.model.on('change:url', this.urlChanged, this); } + create_obj() { + this.obj = this.tileLayer; + } + urlChanged() { const newUrl = this.model.get('url'); if (newUrl) { diff --git a/src/widget.ts b/src/widget.ts index c8a54f7..13841c6 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -13,6 +13,7 @@ import { BaseControlModel, BaseControlView } from './basecontrol'; import { Map } from 'ol'; import TileLayer from 'ol/layer/Tile'; + import View from 'ol/View'; import 'ol/ol.css'; import { MODULE_NAME, MODULE_VERSION } from './version'; @@ -20,6 +21,7 @@ import '../css/widget.css'; import { useGeographic } from 'ol/proj'; export * from './imageoverlay'; +export * from './geojson'; export * from './video_overlay'; export * from './popupoverlay'; export * from './zoomslider'; @@ -27,6 +29,7 @@ export * from './fullscreen'; export * from './scaleline'; export * from './mouseposition'; export * from './tilelayer'; +export * from './geojson'; const DEFAULT_LOCATION = [0.0, 0.0]; @@ -40,8 +43,9 @@ export class MapModel extends DOMWidgetModel { _view_name: MapModel.view_name, _view_module: MapModel.view_module, _view_module_version: MapModel.view_module_version, - value: 'Hello World', layers: [], + controls: [], + overlays: [], zoom: 2, center: DEFAULT_LOCATION, }; @@ -71,6 +75,7 @@ export class MapView extends DOMWidgetView { this.mapContainer = document.createElement('div'); this.mapContainer.style.height = '500px'; + this.mapContainer.style.width = '100%'; this.el.appendChild(this.mapContainer); this.layerViews = new ViewList( @@ -100,6 +105,8 @@ export class MapView extends DOMWidgetView { }); this.layersChanged(); + this.overlayChanged(); + this.controlChanged(); this.model.on('change:layers', this.layersChanged, this); this.model.on('change:overlays', this.overlayChanged, this); this.model.on('change:controls', this.controlChanged, this); @@ -137,7 +144,7 @@ export class MapView extends DOMWidgetView { } removeLayerView(child_view: TileLayerView) { - this.map.removeLayer(child_view.tileLayer); + this.map.removeLayer(child_view.obj); child_view.remove(); } @@ -157,7 +164,7 @@ export class MapView extends DOMWidgetView { const view = await this.create_child_view(child_model, { map_view: this, }); - this.map.addLayer(view.tileLayer); + this.map.addLayer(view.obj); this.displayed.then(() => { view.trigger('displayed', this); }); diff --git a/tsconfig.json b/tsconfig.json index f143a55..919ae69 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,4 +22,4 @@ "src/**/*.tsx", ], "exclude": ["src/**/__tests__"] -} +} \ No newline at end of file From a0ebc65da59e959716e86566e89a53747c440cca Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Tue, 18 Jun 2024 11:00:54 +0200 Subject: [PATCH 3/5] Resolve Conflict --- src/widget.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/widget.ts b/src/widget.ts index 13841c6..9a25760 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -29,7 +29,6 @@ export * from './fullscreen'; export * from './scaleline'; export * from './mouseposition'; export * from './tilelayer'; -export * from './geojson'; const DEFAULT_LOCATION = [0.0, 0.0]; @@ -203,4 +202,4 @@ export class MapView extends DOMWidgetView { layerViews: ViewList; overlayViews: ViewList; controlViews: ViewList; -} +} \ No newline at end of file From f0b85efe930e2e1eb142c27c82e15b34d4007736 Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Tue, 18 Jun 2024 15:04:37 +0200 Subject: [PATCH 4/5] linting error --- src/widget.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/widget.ts b/src/widget.ts index 9a25760..d26eb7b 100644 --- a/src/widget.ts +++ b/src/widget.ts @@ -13,7 +13,6 @@ import { BaseControlModel, BaseControlView } from './basecontrol'; import { Map } from 'ol'; import TileLayer from 'ol/layer/Tile'; - import View from 'ol/View'; import 'ol/ol.css'; import { MODULE_NAME, MODULE_VERSION } from './version'; @@ -202,4 +201,4 @@ export class MapView extends DOMWidgetView { layerViews: ViewList; overlayViews: ViewList; controlViews: ViewList; -} \ No newline at end of file +} From 57a796abc8c48ce6bae5ff0e8ff7702d1928767d Mon Sep 17 00:00:00 2001 From: Nour-Cheour10 Date: Tue, 18 Jun 2024 15:17:06 +0200 Subject: [PATCH 5/5] hide files --- .gitignore | 2 ++ demo.json | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) delete mode 100644 demo.json diff --git a/.gitignore b/.gitignore index e7ccd61..3057cb2 100644 --- a/.gitignore +++ b/.gitignore @@ -61,6 +61,7 @@ instance/ # Sphinx documentation docs/_build/ +docs/source/_static/ docs/source/_static/embed-bundle.js docs/source/_static/embed-bundle.js.map @@ -153,5 +154,6 @@ ipyopenlayers/nbextension/index.* # Packed lab extensions ipyopenlayers/labextension +ipyopenlayers/nbextension .yarn diff --git a/demo.json b/demo.json deleted file mode 100644 index 3cba51a..0000000 --- a/demo.json +++ /dev/null @@ -1 +0,0 @@ -{"type": "FeatureCollection", "features": [{"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.39940577291571, 34.5780540544853], [-77.39940610066606, 34.57805427015046], [-77.39940640189788, 34.57805446836596], [-77.39940680648922, 34.57805473459376], [-77.39940687019617, 34.57805477651398], [-77.39940689381065, 34.57805472199389], [-77.3994073308358, 34.57805432604519], [-77.39940731720131, 34.578054179242265], [-77.39940728534575, 34.578053836252096], [-77.39940728147378, 34.57805380828763], [-77.39940726378504, 34.57805363205166], [-77.39940725501071, 34.57805361742678], [-77.39940719593868, 34.57805349818902], [-77.39940711258689, 34.57805350039165], [-77.39940706262787, 34.57805349996589], [-77.3994070238417, 34.578053501157314], [-77.39940689549977, 34.57805350509971], [-77.3994068702403, 34.5780535173504], [-77.39940683257294, 34.57805352755014], [-77.39940665584797, 34.57805351246129], [-77.39940650171212, 34.578053517196004], [-77.39940646539253, 34.578053518311656], [-77.39940610067742, 34.578053945657025]]]]}, "type": "Feature", "id": "demo0", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.39940610067742, 34.578053945657025], [-77.39940646539254, 34.578053518311656], [-77.39940650171212, 34.578053517196004], [-77.39940665584797, 34.57805351246129], [-77.39940683257294, 34.57805352755014], [-77.3994068702403, 34.5780535173504], [-77.39940689549977, 34.57805350509971], [-77.3994070238417, 34.578053501157314], [-77.39940706262786, 34.57805349996589], [-77.39940711258689, 34.57805350039165], [-77.39940719593868, 34.57805349818902], [-77.39940725501071, 34.57805361742678], [-77.39940726378504, 34.57805363205166], [-77.39940728147378, 34.57805380828763], [-77.39940728534575, 34.578053836252096], [-77.39940731720131, 34.578054179242265], [-77.39940733083579, 34.57805432604519], [-77.39940689381065, 34.57805472199389], [-77.39940687019617, 34.57805477651398], [-77.39940680648922, 34.57805473459376], [-77.39940640189788, 34.57805446836596], [-77.39940610066606, 34.57805427015046], [-77.39940577291571, 34.5780540544853]], [[-77.15253692933524, 34.56151513936439], [-77.15144999595574, 34.559341247413045], [-77.14904546023064, 34.55892756614713], [-77.14743744409338, 34.55867737428063], [-77.14671571532021, 34.55979772058227], [-77.1460046186939, 34.56099495515147], [-77.14491706514983, 34.56169475917134], [-77.14497207062252, 34.56632469366697], [-77.1467862491276, 34.568533382227606], [-77.1468223367107, 34.56857174152883], [-77.15293546566507, 34.56884388206718], [-77.1545505387783, 34.56568527620884], [-77.15420520136999, 34.56541924496929], [-77.15241022744132, 34.56354664885801]], [[-77.39940554864587, 34.57805385245915], [-77.39940533113186, 34.57805388005787], [-77.39940430019209, 34.57805426698911], [-77.39940533109453, 34.578054945339986], [-77.39940577334389, 34.57805523634738], [-77.39940636733915, 34.578055627206076], [-77.39940687015479, 34.57805595806707], [-77.39940699795643, 34.57805553621237], [-77.39940724128886, 34.57805510120852], [-77.39940743965354, 34.578054643232534], [-77.39940755688437, 34.57805453702035], [-77.39940750261498, 34.578053952699676], [-77.3994074890696, 34.578053806856154], [-77.3994074632458, 34.5780536203485], [-77.39940745698588, 34.578053593842995], [-77.39940735796857, 34.57805341115014], [-77.39940730418934, 34.578053365925925], [-77.39940725501948, 34.57805336743631], [-77.39940719426355, 34.5780533693026], [-77.3994070626323, 34.57805337334602], [-77.39940695610295, 34.57805337661838], [-77.39940687024513, 34.57805337925574], [-77.39940660801658, 34.578053387310824], [-77.3994063340491, 34.5780533957265], [-77.39940610068713, 34.578053669162294]]]]}, "type": "Feature", "id": "demo1", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.32933078260577, 34.420286653098714], [-77.33117475736287, 34.42020746565844], [-77.33460597771473, 34.423794493641175], [-77.33473784452963, 34.42503544541048], [-77.33632618419041, 34.42680517558428], [-77.33747700638781, 34.42855603846078], [-77.34182498346473, 34.429486093242005], [-77.3443014336959, 34.4289134511942], [-77.3479590438793, 34.427720262919735], [-77.35374570015937, 34.426020369676905], [-77.35418268857896, 34.425671448613706], [-77.35580765974248, 34.42203473109974], [-77.36126255666461, 34.421004183238395], [-77.36344455408788, 34.42015390029393], [-77.36475455567283, 34.42058572773829], [-77.36473382774254, 34.42118360092122], [-77.36981780251108, 34.42380206211797], [-77.37288890174588, 34.421604550178465], [-77.37235930937102, 34.420589987156944], [-77.37089873650106, 34.41737918573283], [-77.3686879334351, 34.415982921225336], [-77.3692667954851, 34.41197094998541], [-77.36944809133527, 34.410617446370466], [-77.36806448865198, 34.40898670266513], [-77.37020727996773, 34.40545217197258], [-77.3702483920398, 34.4052960566473], [-77.37061425801089, 34.405272949613405], [-77.37897277109447, 34.404792314733655], [-77.37984473264206, 34.401326092299655], [-77.38239321609933, 34.405118642372805], [-77.39091208057313, 34.4058544225021], [-77.39188285015761, 34.406022388789815], [-77.39999147731666, 34.40552217919128], [-77.39831489526793, 34.40129507295282], [-77.39979849639546, 34.39602876048577], [-77.39928119919556, 34.39594021749391], [-77.39952703136558, 34.395787537711655], [-77.39987930422379, 34.39587269928718], [-77.40466993479139, 34.39081240476746], [-77.40677214858167, 34.38980797349567], [-77.4082976008465, 34.38727824052392], [-77.41050913167675, 34.386873977365354], [-77.41149038486083, 34.3857579837607], [-77.41244798185613, 34.383158449744336], [-77.41248853968165, 34.38308409421803], [-77.4125375553666, 34.38309638278298], [-77.41285419480836, 34.38294615830809], [-77.41732982321527, 34.38094308199863], [-77.41791529790049, 34.3809730788182], [-77.4219497207388, 34.380889807031664], [-77.42268488350805, 34.380855760642284], [-77.42276876872671, 34.38093177564485], [-77.42612711490543, 34.382270376889814], [-77.42647003797374, 34.382761855788], [-77.42625977263825, 34.38381273225756], [-77.42950550716348, 34.386144411534], [-77.43035092892055, 34.386324250985595], [-77.44022590989476, 34.38708143255442], [-77.44044868975519, 34.386820865760484], [-77.44164434218094, 34.386681806412255], [-77.4412519525014, 34.38728143460479], [-77.44081443484492, 34.38736787530143], [-77.44230721758807, 34.389466432203506], [-77.44614883918446, 34.390233542319805], [-77.4464065578547, 34.39045408024087], [-77.44682527628366, 34.390475446139774], [-77.44700593866774, 34.39038096794769], [-77.44718659562473, 34.390286486485515], [-77.44712919907474, 34.39007617914795], [-77.44793069982882, 34.387622267359845], [-77.44655660840455, 34.38540935461384], [-77.44625024303005, 34.38427320414274], [-77.44431734387501, 34.382033477276266], [-77.44285854497232, 34.37885634640306], [-77.44785633785028, 34.374538123095576], [-77.44698962543792, 34.37136131829231], [-77.44400000001644, 34.36039999999008], [-77.43458662286403, 34.36532330898005], [-77.4251721160516, 34.37024593650608], [-77.41575647950076, 34.37516788216274], [-77.41104823754901, 34.37762859916338], [-77.40633971313336, 34.38008914554466], [-77.39692181687144, 34.38500972624638], [-77.38750279063719, 34.38992962386249], [-77.37808263435296, 34.3948488379875], [-77.37337213241793, 34.39730818861416], [-77.36866134794137, 34.39976736821598], [-77.35923893132514, 34.404685214142425], [-77.3498153844272, 34.40960237536133], [-77.34039070717066, 34.41451885146718], [-77.33096489947884, 34.41943464205446]], [[-77.3055186605671, 34.43269907488547], [-77.30655327220532, 34.434379757448674], [-77.30869877869708, 34.43652519484434], [-77.31001455285869, 34.43456009430833], [-77.31238461485653, 34.43415500799195], [-77.31306413527085, 34.432780884551285], [-77.3135785735945, 34.432043161588126], [-77.31331479387134, 34.42985190702052], [-77.31362596929779, 34.429343048133894], [-77.3149040292102, 34.4278077101758], [-77.31210989248345, 34.429264165051066], [-77.30739543409321, 34.43172111671741]], [[-77.28289095309782, 34.444486342719294], [-77.289583619529, 34.44313734720211], [-77.29309813089382, 34.445507581635], [-77.30440131269941, 34.44453140229724], [-77.30078595268313, 34.43948411149647], [-77.29935643213052, 34.435909781030205], [-77.29325036283106, 34.4390909411066]], [[-77.22791697396704, 34.473093474483875], [-77.23403834099052, 34.47313092171005], [-77.2356204868993, 34.47203759845746], [-77.24057727316332, 34.47110015858404], [-77.24647425919052, 34.466907064929764], [-77.25377902121352, 34.46187414859207], [-77.25740109040493, 34.46333034485083], [-77.25806090063922, 34.465174589531955], [-77.26018575086117, 34.46526759392394], [-77.26255810254042, 34.46529596709001], [-77.26493314292327, 34.4644256299325], [-77.2667539837912, 34.461961406824216], [-77.26951334401079, 34.463095355871225], [-77.27093955393204, 34.46370540112572], [-77.27483189894548, 34.46420788731779], [-77.27245308319681, 34.468955758761275], [-77.27275803174818, 34.46935281239414], [-77.27306112938923, 34.46953206336318], [-77.27503092112724, 34.470672634343835], [-77.27524965084731, 34.47175333281274], [-77.276250650603, 34.47183225649323], [-77.27842251203616, 34.47075865878416], [-77.27949959258387, 34.471650918455765], [-77.28375416637518, 34.4698451055961], [-77.29011674428948, 34.46551248156134], [-77.29266422143553, 34.46379817219438], [-77.2937666697121, 34.463197264354015], [-77.29897010145473, 34.46252022175499], [-77.30094116912471, 34.46272123457566], [-77.3021081970862, 34.462506529860875], [-77.30255665978021, 34.461256023217686], [-77.30232272016312, 34.45941957108035], [-77.30229156186373, 34.45926889581487], [-77.3008132670316, 34.45758945151065], [-77.30169000659981, 34.45586393974895], [-77.29593294488106, 34.45437322788024], [-77.30188686018919, 34.45125586630647], [-77.30554564961051, 34.44979341631104], [-77.30621294330669, 34.44898000967999], [-77.30561507590004, 34.44684839787881], [-77.30443948674427, 34.44606324948056], [-77.2950479991887, 34.44791950648506], [-77.29600208644707, 34.450446489824785], [-77.2929072855267, 34.45355205667664], [-77.29028847269069, 34.452278610618656], [-77.28813780812303, 34.452387219317686], [-77.28644704890809, 34.45239570971904], [-77.2836885884, 34.45183407023626], [-77.28174771693897, 34.45178354586174], [-77.27999956706383, 34.450711529113626], [-77.27808413764336, 34.45087091721007], [-77.27806393181955, 34.4481940076211], [-77.27607194426412, 34.448037065868554], [-77.26697479678369, 34.45277333894442], [-77.25383372263998, 34.45961253440221], [-77.24069045414564, 34.46645039275779], [-77.23411799695381, 34.469868820179684]], [[-77.13206303244968, 34.59235517377309], [-77.14041560026347, 34.59437956001024], [-77.14630203063625, 34.59520748133121], [-77.14707538403012, 34.59520747990657], [-77.14776996735016, 34.59465941350485], [-77.15300596868484, 34.59172281407314], [-77.15354072780681, 34.59044065501473], [-77.15374073323287, 34.58655386650353], [-77.15364267679375, 34.58423091896078], [-77.15565067363497, 34.581792662723004], [-77.15679489585426, 34.57953712103641], [-77.15587833424617, 34.577206768395236], [-77.15590895028824, 34.576868687399376], [-77.1575640738741, 34.57337375162895], [-77.15777719705378, 34.57315981751765], [-77.16150133404433, 34.571902859545034], [-77.16587012824164, 34.57080838482029], [-77.1667342271194, 34.570615254612676], [-77.16748140226936, 34.570246283495614], [-77.170471670772, 34.56341911199621], [-77.17093713377983, 34.56250083879752], [-77.17037388271528, 34.56192711799848], [-77.17045797122739, 34.55680347045155], [-77.16872683295583, 34.555260268484126], [-77.1736329108138, 34.55271478612764], [-77.18675584530247, 34.54103680974169], [-77.18679441798356, 34.540942656729214], [-77.18710946278068, 34.533292653986514], [-77.1871169963584, 34.53309052775687], [-77.18711587299477, 34.53309029864644], [-77.18999656258332, 34.52544427754455], [-77.19292824962926, 34.522313878613645], [-77.20061968406097, 34.51226601583163], [-77.20511866344556, 34.51327904866838], [-77.21067663337777, 34.5113313932048], [-77.21075262574234, 34.50707675878356], [-77.20635610841191, 34.50757985756697], [-77.21152098940459, 34.50352226269968], [-77.21149902049817, 34.4986079311762], [-77.20906116130391, 34.498414701979904], [-77.2115721526845, 34.49565030153879], [-77.21156384864265, 34.4932345081089], [-77.2141669864611, 34.489466747546984], [-77.21715186140148, 34.48821617728652], [-77.21605671529142, 34.48701951573875], [-77.21676178976817, 34.48516512732725], [-77.21929529165146, 34.48050992390037], [-77.22093112816523, 34.47834501871232], [-77.22172164483297, 34.476764046880014], [-77.22202438711534, 34.47615723992991], [-77.22097143655486, 34.47670467082662], [-77.21439733329747, 34.48012209377758], [-77.20782268130138, 34.48353918163083], [-77.20124748054155, 34.48695593424932], [-77.1880954326309, 34.49378843323389], [-77.16178475054882, 34.50744940235593], [-77.13546528546534, 34.52110499237207], [-77.10913703580583, 34.534755194509884], [-77.09596961627106, 34.54157827238282], [-77.0828000000069, 34.54839999999615], [-77.09208215603842, 34.55668733761411], [-77.09672392733995, 34.56083071254245], [-77.10136616096389, 34.56497389144252], [-77.11065201557464, 34.573259660834395], [-77.11529563675929, 34.5774022511644], [-77.11993972066199, 34.58154464514258], [-77.1292292770173, 34.58982884371971]], [[-77.15241022744132, 34.56354664885801], [-77.15420520136998, 34.565419244969284], [-77.1545505387783, 34.56568527620884], [-77.15293546566505, 34.56884388206718], [-77.1468223367107, 34.56857174152883], [-77.1467862491276, 34.568533382227606], [-77.14497207062252, 34.56632469366697], [-77.14491706514983, 34.56169475917134], [-77.1460046186939, 34.56099495515147], [-77.14671571532021, 34.55979772058227], [-77.14743744409338, 34.55867737428063], [-77.14904546023062, 34.55892756614713], [-77.15144999595574, 34.559341247413045], [-77.15253692933524, 34.56151513936439]], [[-77.39940610068713, 34.578053669162294], [-77.3994063340491, 34.5780533957265], [-77.39940660801658, 34.578053387310824], [-77.39940687024513, 34.57805337925574], [-77.39940695610295, 34.57805337661838], [-77.3994070626323, 34.57805337334602], [-77.39940719426355, 34.5780533693026], [-77.39940725501948, 34.57805336743631], [-77.39940730418934, 34.578053365925925], [-77.39940735796857, 34.57805341115014], [-77.39940745698588, 34.57805359384299], [-77.3994074632458, 34.5780536203485], [-77.3994074890696, 34.578053806856154], [-77.39940750261498, 34.578053952699676], [-77.39940755688437, 34.57805453702035], [-77.39940743965354, 34.578054643232534], [-77.39940724128886, 34.57805510120852], [-77.39940699795643, 34.57805553621237], [-77.39940687015479, 34.57805595806707], [-77.39940636733914, 34.578055627206076], [-77.39940577334389, 34.57805523634738], [-77.39940533109453, 34.578054945339986], [-77.39940430019209, 34.57805426698912], [-77.39940533113186, 34.57805388005788], [-77.39940554864587, 34.57805385245915]], [[-77.11207194343993, 34.55828691362007], [-77.10249413071804, 34.56275346922161], [-77.09830442799088, 34.56024112826809], [-77.09714013272374, 34.56001151325018], [-77.09520735768265, 34.55693761958649], [-77.10029710834748, 34.55362310136736], [-77.10035982177315, 34.553540757695515], [-77.10050521516038, 34.55354546668941], [-77.10706349188865, 34.553757914455105]], [[-77.43241797173333, 34.39776785756878], [-77.43274403871156, 34.39802151447347], [-77.43318626997807, 34.39791482353961], [-77.43354299621332, 34.39769631313794], [-77.43250820386139, 34.397156727669575], [-77.43217545665915, 34.3974228478566], [-77.43176772948128, 34.39760556039392]], [[-77.14608048707832, 34.583219147129064], [-77.14763678109978, 34.582957284823806], [-77.14802091311532, 34.583783486157586], [-77.1466288409394, 34.58428009381285], [-77.14523831607329, 34.584878465051744], [-77.1406814410692, 34.58555388255154], [-77.13006056015922, 34.58819161986236], [-77.12854069186088, 34.58223093555608], [-77.12854055748672, 34.57868319504471], [-77.12933558472513, 34.57803817063931], [-77.12854057606424, 34.577895425740195], [-77.12835002186677, 34.574673005637315], [-77.1303740234601, 34.57177506170022], [-77.13084570272302, 34.570207455489694], [-77.13275864513803, 34.57088492964574], [-77.1372183499914, 34.57409250769384], [-77.13794876224092, 34.57482293908047], [-77.13861756738187, 34.57549171891885]], [[-77.37953825860046, 34.40982282272741], [-77.37493880496706, 34.41090075984324], [-77.37862079745018, 34.4133484397919], [-77.38317419302857, 34.41356171827999], [-77.38736647737954, 34.411541128211795], [-77.38658495056237, 34.40919041391665], [-77.38147310281768, 34.40731079407036]], [[-77.38707117747693, 34.39641549573966], [-77.38562716150848, 34.39852509922709], [-77.38552938894509, 34.400637322135196], [-77.38520450742088, 34.40125243452559], [-77.38078570299993, 34.400392894810224], [-77.37977956869284, 34.40022302620648], [-77.37999885890682, 34.398160087544845], [-77.38099633037876, 34.39770139230592], [-77.37915173481005, 34.395369800920356]], [[-77.41979720706723, 34.39139698708163], [-77.41474483715167, 34.39119854302648], [-77.41462022968778, 34.39132314661886], [-77.4134861717247, 34.39307773843446], [-77.41326253854061, 34.3952555788114], [-77.41743982966304, 34.39500289014426], [-77.41950859604628, 34.394275923013325], [-77.42044178785788, 34.39408768523936], [-77.42038616109168, 34.392159241950424], [-77.42046721764093, 34.39172321914001], [-77.42072533618648, 34.391636022911875], [-77.4201647236619, 34.39134672295856]], [[-77.3893008519995, 34.42408787248524], [-77.38912098487387, 34.42351768856072], [-77.38791266965467, 34.42341178532797], [-77.38816568644584, 34.42401644217105]], [[-77.40714418910046, 34.4047136010784], [-77.4080932241337, 34.40471360187997], [-77.40781515691154, 34.404363084475236], [-77.40712455076913, 34.40424190995614]], [[-77.39954076909424, 34.578127409806115], [-77.39953422441505, 34.57812383838076], [-77.39952805378579, 34.57813051054682], [-77.39952752764859, 34.57813102011227], [-77.39951614300988, 34.57814322919679], [-77.39951517875978, 34.578145030933655], [-77.39951453048835, 34.5781461634614], [-77.3995084794953, 34.578155294151884], [-77.39951086168848, 34.5781675385864], [-77.39950382940395, 34.57816771463075], [-77.39950221748025, 34.57817273924256], [-77.39950163326642, 34.57817456032542], [-77.39950271744948, 34.57818647429149], [-77.39949151546624, 34.57820177851756], [-77.39949130964256, 34.57820236406467], [-77.39949122752424, 34.57820259768264], [-77.39949151532463, 34.57820595517541], [-77.39949912960824, 34.57820145746155], [-77.39951115825104, 34.578194352210836], [-77.39951614138892, 34.57819140869867], [-77.39952831387026, 34.57818412986332], [-77.39954076744962, 34.57817670927362], [-77.3995458778692, 34.578173682842596], [-77.39955106786901, 34.578167427209536], [-77.39955916199055, 34.57814643887056], [-77.39956246145937, 34.57813924730528]], [[-77.34587817987449, 34.534163748533274], [-77.34587816814742, 34.53416430793813], [-77.34587263571262, 34.53416881200081], [-77.34587274110733, 34.534168963604266], [-77.34587265551194, 34.53417275180444], [-77.34587268904204, 34.534172774087374], [-77.34587272821275, 34.53417296032733], [-77.34587343244121, 34.534174097109386], [-77.34587340280538, 34.53417455692852], [-77.34587363262037, 34.53417488840779], [-77.34587362666676, 34.53417500287995], [-77.34587387387907, 34.53417523639314], [-77.34587411886478, 34.53417541021902], [-77.34587415191288, 34.534175438237085], [-77.34587480447664, 34.53417568938707], [-77.34587573056002, 34.53417575408916], [-77.34587654978552, 34.534175509339555], [-77.34587770942314, 34.53417516288933], [-77.3458788217655, 34.534174693843546], [-77.34588066731803, 34.53417427919651], [-77.34588265015962, 34.53417368680798], [-77.34588502596813, 34.534171628174796], [-77.3458909907904, 34.53417023863723], [-77.34589119308563, 34.53417017097578], [-77.34589131942958, 34.53417014457203], [-77.345891940756, 34.53416951980965], [-77.3458912223226, 34.534168902883096], [-77.3458872718327, 34.534165510554494], [-77.3458847657702, 34.53416335857105], [-77.34588260290963, 34.53416150129906], [-77.3458791934352, 34.53415857354539]], [[-77.399407698603, 34.578053840011556], [-77.39940769279347, 34.57805377746021], [-77.3994076812505, 34.578053734438775], [-77.39940763978595, 34.57805358016185], [-77.39940760135697, 34.57805341744715], [-77.399407580538, 34.578053379034905], [-77.3994074104938, 34.578053236040745], [-77.3994072550239, 34.57805324081643], [-77.39940706292012, 34.578053246717445], [-77.39940706263674, 34.57805324672616], [-77.3994070624074, 34.5780532467332], [-77.39940687024958, 34.57805325263587], [-77.39940671432103, 34.57805325742565], [-77.39940620270568, 34.57805327314134], [-77.39940610069681, 34.578053392667556], [-77.39940585938459, 34.578053472791595], [-77.3994053311438, 34.57805353981612], [-77.39940405526329, 34.578054018678245], [-77.39940352316083, 34.57805408938375], [-77.39940338035231, 34.578054843299654], [-77.3994048946155, 34.5780558397099], [-77.39940504912144, 34.57805612121864], [-77.39940533105312, 34.57805612689306], [-77.39940660301015, 34.5780569638618], [-77.3994068701134, 34.57805713962014], [-77.39940737222963, 34.57805548220733], [-77.39940778293298, 34.5780547479955], [-77.39940776879209, 34.57805459574012], [-77.39940775719408, 34.57805447086388]]]]}, "type": "Feature", "id": "demo2", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.3149040292102, 34.4278077101758], [-77.31362596929779, 34.429343048133894], [-77.31331479387134, 34.42985190702052], [-77.3135785735945, 34.432043161588126], [-77.31306413527085, 34.432780884551285], [-77.31238461485653, 34.43415500799195], [-77.31001455285869, 34.43456009430833], [-77.30869877869708, 34.43652519484434], [-77.30655327220533, 34.43437975744868], [-77.3055186605671, 34.43269907488547], [-77.3026806930274, 34.43417789664927], [-77.29935643213052, 34.435909781030205], [-77.30078595268311, 34.43948411149647], [-77.30440131269941, 34.444531402297244], [-77.29309813089382, 34.445507581635], [-77.289583619529, 34.44313734720211], [-77.28289095309782, 34.444486342719294], [-77.28011367677956, 34.44593280748054], [-77.27607194426412, 34.448037065868554], [-77.27806393181955, 34.4481940076211], [-77.27808413764336, 34.45087091721007], [-77.27999956706383, 34.450711529113626], [-77.28174771693897, 34.45178354586174], [-77.2836885884, 34.45183407023626], [-77.28644704890809, 34.45239570971904], [-77.28813780812303, 34.452387219317686], [-77.29028847269069, 34.452278610618656], [-77.2929072855267, 34.45355205667664], [-77.29600208644707, 34.45044648982478], [-77.2950479991887, 34.44791950648506], [-77.30443948674427, 34.44606324948056], [-77.30561507590004, 34.44684839787881], [-77.30621294330669, 34.44898000967999], [-77.30554564961051, 34.44979341631104], [-77.30188686018919, 34.45125586630647], [-77.29593294488106, 34.45437322788024], [-77.30169000659981, 34.45586393974895], [-77.3008132670316, 34.45758945151065], [-77.30229156186373, 34.45926889581487], [-77.30232272016312, 34.45941957108035], [-77.30255665978021, 34.461256023217686], [-77.30210819708618, 34.462506529860875], [-77.30094116912471, 34.46272123457566], [-77.29897010145473, 34.46252022175499], [-77.29376666971208, 34.463197264354015], [-77.29266422143553, 34.46379817219438], [-77.29011674428946, 34.46551248156133], [-77.28375416637518, 34.4698451055961], [-77.27949959258387, 34.471650918455765], [-77.27842251203614, 34.47075865878416], [-77.276250650603, 34.47183225649323], [-77.27524965084731, 34.47175333281274], [-77.27503092112724, 34.470672634343835], [-77.27306112938923, 34.46953206336318], [-77.27275803174818, 34.46935281239414], [-77.27245308319681, 34.468955758761275], [-77.27483189894548, 34.46420788731779], [-77.27093955393205, 34.46370540112572], [-77.26951334401079, 34.463095355871225], [-77.2667539837912, 34.46196140682421], [-77.26493314292327, 34.4644256299325], [-77.26255810254044, 34.465295967090015], [-77.26018575086117, 34.46526759392394], [-77.25806090063922, 34.465174589531955], [-77.25740109040493, 34.46333034485083], [-77.2537790212135, 34.46187414859206], [-77.2464742591905, 34.466907064929764], [-77.24057727316332, 34.47110015858404], [-77.23562048689928, 34.47203759845746], [-77.23403834099052, 34.473130921710045], [-77.22791697396704, 34.473093474483875], [-77.2275449910986, 34.47328691291498], [-77.22425828241435, 34.47499583373232], [-77.22202438711534, 34.47615723992991], [-77.22172164483297, 34.476764046880014], [-77.22093112816523, 34.47834501871232], [-77.21929529165146, 34.48050992390037], [-77.21676178976817, 34.48516512732725], [-77.21605671529142, 34.48701951573875], [-77.21715186140148, 34.48821617728652], [-77.2141669864611, 34.489466747546984], [-77.21156384864267, 34.493234508108905], [-77.2115721526845, 34.49565030153879], [-77.2090611613039, 34.4984147019799], [-77.21149902049817, 34.4986079311762], [-77.21152098940459, 34.50352226269968], [-77.20635610841191, 34.507579857566974], [-77.21075262574234, 34.507076758783555], [-77.21067663337776, 34.5113313932048], [-77.20511866344556, 34.51327904866838], [-77.20061968406097, 34.51226601583163], [-77.19292824962926, 34.522313878613645], [-77.18999656258332, 34.52544427754455], [-77.18711587299477, 34.53309029864644], [-77.1871169963584, 34.53309052775687], [-77.18710946278068, 34.533292653986514], [-77.18679441798358, 34.540942656729214], [-77.18675584530247, 34.54103680974169], [-77.1736329108138, 34.55271478612764], [-77.16872683295584, 34.55526026848413], [-77.17045797122739, 34.55680347045155], [-77.17037388271528, 34.56192711799848], [-77.17093713377983, 34.56250083879751], [-77.170471670772, 34.563419111996204], [-77.16748140226936, 34.570246283495614], [-77.1667342271194, 34.570615254612676], [-77.16587012824164, 34.57080838482029], [-77.16150133404435, 34.571902859545034], [-77.15777719705378, 34.57315981751765], [-77.15756407387408, 34.57337375162895], [-77.15590895028825, 34.576868687399376], [-77.15587833424617, 34.577206768395236], [-77.15679489585426, 34.57953712103641], [-77.15565067363497, 34.581792662723004], [-77.15364267679375, 34.58423091896078], [-77.15374073323287, 34.58655386650353], [-77.15354072780681, 34.59044065501473], [-77.15300596868484, 34.59172281407314], [-77.14776996735016, 34.59465941350485], [-77.14707538403012, 34.59520747990657], [-77.14630203063625, 34.59520748133121], [-77.14041560026347, 34.59437956001024], [-77.13206303244968, 34.59235517377309], [-77.13852068543206, 34.59811225591832], [-77.1478139466977, 34.60639488109072], [-77.15246127239699, 34.610535898339656], [-77.15485401266312, 34.61266764461739], [-77.16020330649829, 34.608579447647664], [-77.1611189964388, 34.60772126164122], [-77.16147090162913, 34.6074809117594], [-77.16531357854211, 34.60573657578637], [-77.16853824840526, 34.60380339645687], [-77.17108173531628, 34.60070174903768], [-77.1800139482095, 34.596131891489705], [-77.18316846235463, 34.59578276371086], [-77.18513597425438, 34.594274586192114], [-77.18699837430869, 34.59175781027504], [-77.18941206785072, 34.58707091331651], [-77.19433244406017, 34.584676172710196], [-77.19935903568214, 34.580317370874084], [-77.20421823801954, 34.574998492683875], [-77.20562672432011, 34.57368773664935], [-77.20675265972135, 34.57336065238147], [-77.20762396652455, 34.572291941350116], [-77.2057940711245, 34.57188808255823], [-77.2063250975792, 34.56578475276357], [-77.21003159298745, 34.563522689269796], [-77.21538170867248, 34.563512540412646], [-77.21789671155305, 34.56356954538566], [-77.22354241735641, 34.56347628282994], [-77.22364171170227, 34.56342410705624], [-77.22364425490557, 34.563383555928745], [-77.2239830300136, 34.562606014343686], [-77.2248839608134, 34.55995681610601], [-77.22518259688952, 34.55973417349531], [-77.2250563308956, 34.556337392336154], [-77.22518394827209, 34.555999596463], [-77.22507757938817, 34.555787989890796], [-77.22417551923171, 34.55348259406031], [-77.22326461187184, 34.55311633084846], [-77.22274583041204, 34.55166578954748], [-77.22279487878134, 34.54735371672994], [-77.220847726151, 34.54661123233644], [-77.2168109697165, 34.546292122958995], [-77.215379733782, 34.54320746687084], [-77.217149243058, 34.54077248313651], [-77.21945661390534, 34.53835627195119], [-77.2222838745125, 34.53587763239513], [-77.22419581664501, 34.53323139708563], [-77.22612372705274, 34.53131311298299], [-77.22705247345753, 34.53174705719635], [-77.2283977782982, 34.533536856042545], [-77.2285384185653, 34.534855183629205], [-77.23093185162409, 34.53656107833721], [-77.23088567531144, 34.538446576052465], [-77.23515898755247, 34.53689490301804], [-77.23909972810259, 34.531808797249006], [-77.24026960375346, 34.52942268870188], [-77.25130622066914, 34.52360609221732], [-77.25227660738155, 34.5239986901836], [-77.25622943975591, 34.5228057610673], [-77.25880006939612, 34.522749990084364], [-77.2630710389455, 34.51690221958784], [-77.26162770773927, 34.51535561035821], [-77.26251597563423, 34.51125402884492], [-77.25904065899894, 34.51276855098882], [-77.25832216663957, 34.51205002109325], [-77.25690916879611, 34.51234503868662], [-77.25581356288413, 34.510988490402475], [-77.25258718191307, 34.51115514252865], [-77.25170258180725, 34.511171926537614], [-77.24767156223652, 34.51230885463156], [-77.2476716572908, 34.51031773364224], [-77.24767062902825, 34.50938784289676], [-77.2481585150673, 34.50794702161971], [-77.24768998257355, 34.50638138068132], [-77.25016843466895, 34.50573241349271], [-77.25142221499613, 34.50667578279976], [-77.25181140219901, 34.50723452714085], [-77.25177946866697, 34.50778269065449], [-77.25262560166433, 34.509566379522646], [-77.25461139986274, 34.5084876889612], [-77.25618233241083, 34.50705110291147], [-77.259209837882, 34.505750013180666], [-77.26312068421646, 34.50135206383629], [-77.25933038265086, 34.50074923588649], [-77.2583492341773, 34.500542725802255], [-77.25732911865185, 34.50048377580573], [-77.25621148716023, 34.499177848996894], [-77.25808461401056, 34.49620984733059], [-77.25570485416605, 34.49580554674138], [-77.25567946339748, 34.49126037673723], [-77.25836166768343, 34.48830355279546], [-77.2638747971866, 34.48403086518153], [-77.26630002762272, 34.480851828811254], [-77.26945949610564, 34.48064277034048], [-77.2680063413342, 34.48328557836939], [-77.26759874662318, 34.48432426405242], [-77.26754452916975, 34.486580557311356], [-77.2674205634676, 34.48747157391448], [-77.26755266336768, 34.488258340438534], [-77.26680457388301, 34.491222558516014], [-77.26698951898463, 34.491577029438766], [-77.2725108085949, 34.49250761515982], [-77.27264564148993, 34.49243551630548], [-77.27266974004029, 34.49250257725352], [-77.27289360830042, 34.492616537888885], [-77.27334551110289, 34.496031918409024], [-77.26759437234571, 34.500074700153405], [-77.26686715413663, 34.506458351203676], [-77.2673140944908, 34.50693279824005], [-77.2721388788933, 34.50803686726922], [-77.2733323456216, 34.50698440730786], [-77.27875512009216, 34.50283410270445], [-77.28056579129075, 34.50109537669617], [-77.28520725823185, 34.49762186258975], [-77.2840939868488, 34.49511874871732], [-77.28410761403309, 34.494312628570086], [-77.28436460224812, 34.49351884312339], [-77.28271417171196, 34.493097188931685], [-77.2825918115267, 34.49294842822782], [-77.28224623333452, 34.492541898919654], [-77.28107857205966, 34.49200774155889], [-77.28153773896437, 34.4902838687252], [-77.28196846797883, 34.489392838719354], [-77.28277393933435, 34.488920595682046], [-77.28278127837554, 34.489180754280255], [-77.284377255511, 34.48958222922523], [-77.28478447604411, 34.490078803325325], [-77.28537635331446, 34.48987757578644], [-77.28555651363979, 34.48981543785467], [-77.2858882408477, 34.48970101528003], [-77.29036288173239, 34.4882049062095], [-77.29208247543201, 34.488323289370605], [-77.29347439341235, 34.48909822921039], [-77.2935725294848, 34.489964115289645], [-77.29517617131881, 34.49022593830297], [-77.2974875026608, 34.489922982631825], [-77.29832137819722, 34.489955720077546], [-77.29941251654778, 34.489804458745525], [-77.30409106257167, 34.488788219871694], [-77.30461235443333, 34.48938800098573], [-77.30795043838617, 34.489728871784365], [-77.31085299763132, 34.49095793893802], [-77.31204676353538, 34.49122838027515], [-77.31289440874465, 34.49370945493135], [-77.31700084394357, 34.496499507120376], [-77.3200344702569, 34.496028396500904], [-77.32959422245818, 34.49489253030541], [-77.33377710953536, 34.49065296323888], [-77.33301315403746, 34.488214286001615], [-77.33165143398777, 34.4872376228373], [-77.3314725292226, 34.48158070528177], [-77.33157473359582, 34.48058716359772], [-77.33170620345108, 34.47947407823541], [-77.3321844872606, 34.47397817271457], [-77.3328627303796, 34.47256774552606], [-77.33644655025893, 34.47012395286294], [-77.34049951101007, 34.47008073904309], [-77.34275196421609, 34.46884962580198], [-77.34765438019761, 34.46739977844058], [-77.3490749769169, 34.46680218994311], [-77.3495999441052, 34.466565839679845], [-77.35426833464413, 34.46557425388613], [-77.36012102792435, 34.46682059052392], [-77.36562032480361, 34.46772141669112], [-77.37167222849311, 34.46780535595368], [-77.37651862355143, 34.4681999454404], [-77.38483069263211, 34.465457007830466], [-77.38574748989834, 34.465148723008134], [-77.38632115526373, 34.46465467793744], [-77.38873453589744, 34.46441341431], [-77.40156588115244, 34.463338782522825], [-77.40408890206338, 34.46104155157412], [-77.40553253862537, 34.46051520595451], [-77.4063758277672, 34.459220562471074], [-77.40712836357773, 34.458914786612326], [-77.40663342197855, 34.45846986686242], [-77.40663672809245, 34.458199335293216], [-77.40744208504408, 34.45669047608503], [-77.40939923257851, 34.45590937305157], [-77.41027947902111, 34.45379227796939], [-77.41291815934792, 34.45608965099241], [-77.41122019204799, 34.45724224454467], [-77.4102244680899, 34.45804434567932], [-77.4105194934495, 34.458669027204], [-77.41021938032513, 34.45945942889027], [-77.41008076748697, 34.46035135256751], [-77.40848638775772, 34.46126706451775], [-77.41275753369482, 34.46287959573599], [-77.41610597412176, 34.462647165149534], [-77.41823975841612, 34.463239117544376], [-77.4219103554497, 34.463729119456104], [-77.42817666525534, 34.46019196869694], [-77.43683509651767, 34.464344223367185], [-77.44005676271283, 34.46426402545796], [-77.44364939237288, 34.46479420400706], [-77.44686775869187, 34.46322786031742], [-77.4503789368665, 34.462628535909545], [-77.45464153173961, 34.46063227344659], [-77.45619920494885, 34.46048858640898], [-77.46040137058799, 34.45989717892991], [-77.46181247961931, 34.45936510755813], [-77.46341896199316, 34.45866562770817], [-77.46508513883882, 34.45733430943524], [-77.46602630786653, 34.456660703634526], [-77.46717573222674, 34.45475072214933], [-77.4660758220553, 34.45339635831678], [-77.46891692320261, 34.45165599863377], [-77.46794124547235, 34.44808705675249], [-77.46494555504135, 34.437126611512795], [-77.46195073296501, 34.426166041271756], [-77.4604536473591, 34.42068570930473], [-77.45895677860105, 34.41520534612215], [-77.45820842551488, 34.41246515282866], [-77.45746012661058, 34.409724951735626], [-77.45671188187816, 34.40698474284451], [-77.45596369130756, 34.40424452615674], [-77.4544674726118, 34.39876406939707], [-77.45297147044315, 34.3932835814682], [-77.45222355053144, 34.390543325818946], [-77.45147568472149, 34.38780306238172], [-77.44998011536677, 34.382322512149194], [-77.44785633785028, 34.374538123095576], [-77.44285854497232, 34.37885634640306], [-77.44431734387501, 34.382033477276266], [-77.44625024303005, 34.38427320414273], [-77.44655660840456, 34.38540935461384], [-77.44793069982882, 34.387622267359845], [-77.44712919907474, 34.39007617914795], [-77.44718659562473, 34.390286486485515], [-77.44700593866774, 34.39038096794769], [-77.44682527628366, 34.390475446139774], [-77.4464065578547, 34.39045408024087], [-77.44614883918446, 34.390233542319805], [-77.44230721758807, 34.389466432203506], [-77.44081443484494, 34.387367875301436], [-77.4412519525014, 34.38728143460479], [-77.44164434218095, 34.386681806412255], [-77.44044868975519, 34.386820865760484], [-77.44022590989476, 34.38708143255442], [-77.43035092892055, 34.386324250985595], [-77.42950550716348, 34.386144411534], [-77.42625977263825, 34.38381273225756], [-77.42647003797374, 34.382761855788], [-77.42612711490543, 34.382270376889814], [-77.4227687687267, 34.38093177564485], [-77.42268488350805, 34.380855760642284], [-77.4219497207388, 34.380889807031664], [-77.41791529790049, 34.38097307881821], [-77.41732982321527, 34.38094308199863], [-77.41285419480836, 34.38294615830809], [-77.4125375553666, 34.38309638278298], [-77.41248853968165, 34.38308409421803], [-77.41244798185613, 34.383158449744336], [-77.41149038486083, 34.3857579837607], [-77.41050913167675, 34.38687397736536], [-77.4082976008465, 34.38727824052392], [-77.40677214858167, 34.389807973495664], [-77.40466993479139, 34.39081240476746], [-77.39987930422377, 34.39587269928718], [-77.39952703136557, 34.395787537711655], [-77.39928119919556, 34.39594021749391], [-77.39979849639546, 34.39602876048577], [-77.39831489526792, 34.40129507295281], [-77.39999147731666, 34.40552217919128], [-77.3918828501576, 34.406022388789815], [-77.39091208057313, 34.4058544225021], [-77.38239321609933, 34.405118642372805], [-77.37984473264206, 34.40132609229966], [-77.37897277109447, 34.40479231473365], [-77.37061425801089, 34.405272949613405], [-77.37024839203978, 34.4052960566473], [-77.37020727996773, 34.40545217197258], [-77.36806448865198, 34.40898670266513], [-77.36944809133527, 34.410617446370466], [-77.3692667954851, 34.41197094998541], [-77.36868793343511, 34.415982921225336], [-77.37089873650106, 34.41737918573283], [-77.37235930937102, 34.420589987156944], [-77.37288890174588, 34.42160455017847], [-77.36981780251108, 34.42380206211797], [-77.36473382774254, 34.42118360092122], [-77.36475455567285, 34.42058572773829], [-77.36344455408786, 34.420153900293926], [-77.3612625566646, 34.421004183238395], [-77.35580765974248, 34.42203473109974], [-77.35418268857896, 34.425671448613706], [-77.35374570015937, 34.42602036967691], [-77.3479590438793, 34.427720262919735], [-77.3443014336959, 34.4289134511942], [-77.34182498346473, 34.42948609324201], [-77.33747700638781, 34.42855603846078], [-77.33632618419041, 34.42680517558428], [-77.33473784452964, 34.42503544541048], [-77.33460597771473, 34.423794493641175], [-77.33117475736287, 34.42020746565844], [-77.32933078260577, 34.420286653098714], [-77.32153796127523, 34.424349746717596]], [[-77.10706349188865, 34.553757914455105], [-77.10050521516038, 34.55354546668941], [-77.10035982177315, 34.553540757695515], [-77.10029710834748, 34.55362310136736], [-77.09520735768265, 34.55693761958649], [-77.09714013272374, 34.56001151325018], [-77.09830442799088, 34.56024112826809], [-77.10249413071804, 34.56275346922161], [-77.11207194343993, 34.55828691362007]], [[-77.43176772948128, 34.39760556039392], [-77.43217545665915, 34.3974228478566], [-77.43250820386139, 34.397156727669575], [-77.43354299621332, 34.39769631313794], [-77.43318626997808, 34.39791482353961], [-77.43274403871156, 34.39802151447347], [-77.43241797173333, 34.39776785756878]], [[-77.13861756738187, 34.57549171891885], [-77.13794876224092, 34.57482293908047], [-77.13721834999139, 34.574092507693834], [-77.13275864513803, 34.57088492964574], [-77.13084570272302, 34.570207455489694], [-77.1303740234601, 34.57177506170022], [-77.12835002186677, 34.57467300563732], [-77.12854057606422, 34.5778954257402], [-77.12933558472513, 34.57803817063931], [-77.12854055748672, 34.57868319504471], [-77.12854069186088, 34.58223093555608], [-77.13006056015922, 34.58819161986236], [-77.1406814410692, 34.58555388255154], [-77.14523831607329, 34.584878465051744], [-77.14662884093941, 34.58428009381285], [-77.14802091311532, 34.583783486157586], [-77.14763678109978, 34.582957284823806], [-77.14608048707832, 34.583219147129064]], [[-77.38147310281768, 34.40731079407036], [-77.38658495056237, 34.40919041391665], [-77.38736647737954, 34.411541128211795], [-77.38317419302857, 34.41356171827999], [-77.37862079745018, 34.4133484397919], [-77.37493880496706, 34.41090075984324], [-77.37953825860046, 34.40982282272741]], [[-77.37915173481005, 34.395369800920356], [-77.38099633037876, 34.39770139230592], [-77.37999885890682, 34.39816008754484], [-77.37977956869284, 34.40022302620648], [-77.38078570299993, 34.400392894810224], [-77.38520450742088, 34.40125243452559], [-77.38552938894509, 34.400637322135196], [-77.3856271615085, 34.39852509922709], [-77.38707117747693, 34.39641549573966]], [[-77.4201647236619, 34.39134672295856], [-77.42072533618649, 34.39163602291188], [-77.42046721764093, 34.39172321914001], [-77.42038616109167, 34.392159241950424], [-77.42044178785788, 34.39408768523936], [-77.41950859604628, 34.394275923013325], [-77.41743982966304, 34.39500289014426], [-77.41326253854061, 34.3952555788114], [-77.4134861717247, 34.39307773843446], [-77.41462022968778, 34.39132314661886], [-77.41474483715167, 34.39119854302648], [-77.41979720706723, 34.39139698708163]], [[-77.38816568644584, 34.42401644217105], [-77.38791266965467, 34.423411785327964], [-77.38912098487387, 34.42351768856072], [-77.3893008519995, 34.42408787248524]], [[-77.40712455076913, 34.40424190995614], [-77.40781515691154, 34.404363084475236], [-77.4080932241337, 34.40471360187997], [-77.40714418910046, 34.4047136010784]], [[-77.39956246145937, 34.57813924730528], [-77.39955916199055, 34.57814643887056], [-77.39955106786901, 34.578167427209536], [-77.3995458778692, 34.578173682842596], [-77.39954076744962, 34.57817670927362], [-77.39952831387026, 34.57818412986332], [-77.39951614138892, 34.57819140869867], [-77.39951115825104, 34.578194352210836], [-77.39949912960823, 34.57820145746155], [-77.39949151532463, 34.57820595517541], [-77.39949122752424, 34.57820259768264], [-77.39949130964256, 34.57820236406467], [-77.39949151546624, 34.57820177851756], [-77.39950271744948, 34.57818647429149], [-77.39950163326642, 34.57817456032542], [-77.39950221748025, 34.57817273924256], [-77.39950382940395, 34.57816771463075], [-77.3995108616885, 34.5781675385864], [-77.3995084794953, 34.578155294151884], [-77.39951453048833, 34.5781461634614], [-77.39951517875978, 34.578145030933655], [-77.39951614300988, 34.57814322919679], [-77.39952752764859, 34.57813102011226], [-77.39952805378579, 34.57813051054682], [-77.39953422441504, 34.57812383838076], [-77.39954076909424, 34.578127409806115]], [[-77.3458791934352, 34.53415857354539], [-77.34588260290963, 34.53416150129906], [-77.3458847657702, 34.53416335857105], [-77.34588727183268, 34.534165510554494], [-77.3458912223226, 34.53416890288309], [-77.345891940756, 34.53416951980965], [-77.34589131942958, 34.53417014457203], [-77.34589119308563, 34.53417017097578], [-77.34589099079038, 34.53417023863723], [-77.34588502596813, 34.534171628174796], [-77.34588265015962, 34.53417368680798], [-77.34588066731801, 34.534174279196506], [-77.3458788217655, 34.534174693843546], [-77.34587770942314, 34.53417516288933], [-77.34587654978552, 34.53417550933955], [-77.34587573056001, 34.53417575408916], [-77.34587480447664, 34.53417568938707], [-77.34587415191288, 34.534175438237085], [-77.34587411886478, 34.53417541021902], [-77.34587387387907, 34.53417523639314], [-77.34587362666676, 34.53417500287995], [-77.34587363262037, 34.53417488840779], [-77.34587340280538, 34.53417455692852], [-77.34587343244121, 34.534174097109386], [-77.34587272821275, 34.53417296032733], [-77.34587268904204, 34.534172774087374], [-77.34587265551194, 34.534172751804434], [-77.34587274110733, 34.534168963604266], [-77.34587263571262, 34.534168812000814], [-77.34587816814742, 34.53416430793813], [-77.34587817987449, 34.534163748533274]], [[-77.39940775719408, 34.57805447086388], [-77.39940776879209, 34.57805459574012], [-77.39940778293298, 34.5780547479955], [-77.39940737222963, 34.578055482207326], [-77.3994068701134, 34.57805713962014], [-77.39940660301015, 34.5780569638618], [-77.3994053310531, 34.57805612689306], [-77.39940504912144, 34.57805612121864], [-77.3994048946155, 34.5780558397099], [-77.39940338035231, 34.578054843299654], [-77.39940352316081, 34.57805408938375], [-77.39940405526329, 34.57805401867825], [-77.3994053311438, 34.57805353981612], [-77.39940585938459, 34.578053472791595], [-77.39940610069681, 34.578053392667556], [-77.39940620270568, 34.578053273141336], [-77.39940671432103, 34.57805325742565], [-77.39940687024958, 34.57805325263587], [-77.3994070624074, 34.5780532467332], [-77.39940706263674, 34.57805324672616], [-77.39940706292012, 34.578053246717445], [-77.39940725502392, 34.57805324081644], [-77.3994074104938, 34.578053236040745], [-77.399407580538, 34.578053379034905], [-77.39940760135696, 34.578053417447144], [-77.39940763978595, 34.57805358016186], [-77.3994076812505, 34.57805373443878], [-77.39940769279347, 34.57805377746021], [-77.399407698603, 34.578053840011556]], [[-77.32336635255756, 34.47393339549667], [-77.31745960000389, 34.47691041903321], [-77.31575897029468, 34.47502702400159], [-77.31659953803607, 34.47433182515806], [-77.31755441221112, 34.47286217797137], [-77.31888072881785, 34.47373780353564]], [[-77.42653449456488, 34.43270473635976], [-77.42651981155315, 34.434389992521616], [-77.4244697410554, 34.433231564151974], [-77.42079005258549, 34.433116123150285], [-77.42026380228296, 34.434407042915154], [-77.4160119740721, 34.43451903487379], [-77.41508169525788, 34.43191991985703], [-77.4150668926425, 34.431881912087796], [-77.41506820685608, 34.43187862993292], [-77.41507470056865, 34.431877833626366], [-77.42042458053874, 34.43177594683839], [-77.42520566538822, 34.43205816912068], [-77.42633816186117, 34.432255408908844]], [[-77.2857468147245, 34.481818504433036], [-77.28297233410018, 34.48553415452647], [-77.28195145960818, 34.486000709888756], [-77.2820299860552, 34.48546005131437], [-77.282030007514, 34.48374956830262], [-77.28221618814975, 34.481881835065266], [-77.28200441520127, 34.48152041118179], [-77.2827587487251, 34.48128344327883], [-77.28574695497782, 34.481812610736135], [-77.28575607068184, 34.48180992708338], [-77.28947409045635, 34.48153069056935], [-77.29224799363026, 34.481345082244644], [-77.29275764188634, 34.48224731009064], [-77.29271762828539, 34.48256415033586], [-77.2927969767708, 34.48420010776607], [-77.29216664627063, 34.48477462821321], [-77.29171910303194, 34.484527918149894], [-77.29113719347531, 34.48420713159882], [-77.29125592649653, 34.4833925246418], [-77.2901455176719, 34.48340633414623], [-77.28896381809366, 34.48299597730349], [-77.28863109631148, 34.4824605622543]], [[-77.34401341900019, 34.45794566388519], [-77.34195740255761, 34.459896230775044], [-77.3371371214773, 34.46049310807359], [-77.33626210247978, 34.460580732727934], [-77.3362544542083, 34.46032852999816], [-77.33243983161671, 34.459613577270886], [-77.33126876095228, 34.45763288554423], [-77.33248573808801, 34.45734824817599], [-77.33572991191994, 34.456789522702], [-77.33901957751499, 34.4566544864807], [-77.34090228698025, 34.45601446410873]], [[-77.24598320171043, 34.51575479288995], [-77.24945148590666, 34.51622327905387], [-77.25095518443524, 34.51634189205361], [-77.25097287782704, 34.51845367582062], [-77.24949558117919, 34.52008113657824], [-77.25133499357125, 34.52241998587798], [-77.24030225044008, 34.528076893209956], [-77.2400939131947, 34.524969027515745], [-77.23928968248192, 34.52400323283908], [-77.23849428839985, 34.52241832685962], [-77.23655914355228, 34.522925721051685], [-77.23850597428128, 34.521407814245066], [-77.2385044373272, 34.518034167310034], [-77.23946024924578, 34.516994552452935], [-77.24137593372338, 34.516541348378524], [-77.2446399149368, 34.515648796820514]], [[-77.38851000257472, 34.45827002896296], [-77.38448635794373, 34.45791849501967], [-77.38296133779313, 34.459037758079546], [-77.38050703145043, 34.45931613878851], [-77.37924710529313, 34.45722935280251], [-77.3799184527417, 34.45709731064406], [-77.38416660723055, 34.456744444538764], [-77.38814516637873, 34.45680682815066], [-77.39079309892179, 34.457078455396385], [-77.39203954392597, 34.4587025651302]], [[-77.4200889721066, 34.44178189172839], [-77.42303694373688, 34.44309651295739], [-77.41895280663645, 34.44327632683012], [-77.41614943418533, 34.443839601035364], [-77.41577242176945, 34.44272470082273], [-77.41403631647296, 34.44181250037796], [-77.41451913931232, 34.44111893308162], [-77.41567317058194, 34.44095758402773], [-77.41781344786764, 34.441938491623276]], [[-77.26446043650002, 34.52058954843337], [-77.2647007150557, 34.52187630182824], [-77.26531918014292, 34.52167317477721], [-77.26815658562359, 34.52034238422989], [-77.27055643804839, 34.52077095141982], [-77.27139091113082, 34.52060408033233], [-77.27183377596802, 34.520776737953085], [-77.27498587878075, 34.52046820261158], [-77.27521836679306, 34.520363029753916], [-77.2752049901312, 34.52022668162846], [-77.27307703377201, 34.51945970378204], [-77.27228024186704, 34.51619425218816], [-77.27230338935765, 34.51598091081355], [-77.2722622044279, 34.5158172043869], [-77.27130620870074, 34.5161176051366], [-77.26538472540297, 34.51894504936354], [-77.26132922635465, 34.52168922016607]], [[-77.26054495219688, 34.49812266781356], [-77.26532709475777, 34.495958469924986], [-77.26525350263698, 34.49293246996203], [-77.26553556150617, 34.49233356611818], [-77.26277924164047, 34.492310742129504], [-77.25972666694302, 34.49535569044899], [-77.25988739417393, 34.49552988652682]], [[-77.29164210666599, 34.50689036743924], [-77.2961597422037, 34.50526031810808], [-77.29734823340267, 34.50470015939739], [-77.29797989495748, 34.50439921820628], [-77.30415128104525, 34.50019627121433], [-77.30424472076726, 34.500111167545946], [-77.30436232185902, 34.499996998098894], [-77.3089737316393, 34.495586761169655], [-77.3068830334565, 34.49439666479912], [-77.30681119660785, 34.49393890682017], [-77.30451324676149, 34.49359310636741], [-77.30202129525395, 34.49462671301859], [-77.30194141386816, 34.495012909634696], [-77.3002268871798, 34.49557107079775], [-77.29816371837151, 34.49662401719935], [-77.29750111866451, 34.49682358487583], [-77.29750961052603, 34.497232824638196], [-77.29487902898785, 34.49952076292994], [-77.29487851128765, 34.49956889837044], [-77.29467978256577, 34.49976614870974], [-77.29292563080558, 34.50180756121992], [-77.2933604162239, 34.50275595523257], [-77.29169966744625, 34.50446335577901], [-77.28965964894287, 34.50428985015316], [-77.2872431662373, 34.50555785408257], [-77.28776669579972, 34.50599370354444], [-77.28791914886733, 34.50620923452389], [-77.29067895632241, 34.50641870050636]], [[-77.44360261575628, 34.43333809679844], [-77.44266815705907, 34.434393522790245], [-77.4400458910527, 34.433156674898086], [-77.44213986688844, 34.43245825139698]], [[-77.3765583220368, 34.45962658103259], [-77.3747214479118, 34.45978051096208], [-77.37427412841492, 34.45995619928118], [-77.37356222424874, 34.459809527429556], [-77.37350420614506, 34.459469234465466], [-77.37368595197658, 34.45927627338355], [-77.37388024882343, 34.45850931269645], [-77.37780316636079, 34.45759681538953]], [[-77.42363592848534, 34.44306002067687], [-77.42406392640027, 34.44100959932992], [-77.42669136538711, 34.44146383488274], [-77.42702779615666, 34.44245153829058]], [[-77.38121536457281, 34.45040828432579], [-77.38224778519464, 34.449698189928085], [-77.38256047757461, 34.44933323686202], [-77.38407450784072, 34.4496289569407], [-77.38478315776591, 34.45041548940956], [-77.3841468198092, 34.450559174070634], [-77.38254385917847, 34.45078551833993]], [[-77.44296694734845, 34.42562946597724], [-77.44167065378599, 34.42513312372412], [-77.44061060366911, 34.42479695221904], [-77.44094182839687, 34.424266014920185], [-77.44234708680627, 34.42388930592597], [-77.44254179003605, 34.42407182323933], [-77.44323341472673, 34.425212843492154]], [[-77.39947745955381, 34.57819319503636], [-77.39947324224285, 34.57820519284209], [-77.3994738800583, 34.578212633627295], [-77.39947028524145, 34.57823215538939], [-77.39944226201023, 34.57826869625585], [-77.3994279209318, 34.578275886722935], [-77.39941591037736, 34.57832146687076], [-77.39945440514934, 34.57834059026487], [-77.39939300477205, 34.57844159480765], [-77.39938715147828, 34.578450130957535], [-77.39937904592142, 34.57845760753936], [-77.39935992767198, 34.57849600695664], [-77.39939300355557, 34.578476469359416], [-77.39940670208581, 34.57846837776139], [-77.39943976841931, 34.57844884571202], [-77.39954600270659, 34.57838609392495], [-77.3995900125878, 34.57836009754711], [-77.39967754515628, 34.57830839248442], [-77.39968530302546, 34.57830380994891], [-77.39968851695147, 34.57830007643763], [-77.39978439099939, 34.578186831576026], [-77.3997840887052, 34.5781837133978], [-77.39971664454346, 34.57806016208057], [-77.39964885002719, 34.578057493602955], [-77.3995900229525, 34.57804346845853], [-77.39957743561621, 34.578096988826225], [-77.39954077002415, 34.578099564070534], [-77.399532743133, 34.57810835034745], [-77.39952789949132, 34.57811769851926], [-77.39952161136077, 34.57812449773688], [-77.39951614346222, 34.578129793412906], [-77.39951503133244, 34.578131624918605], [-77.39951426952531, 34.57813293317928], [-77.39951025462591, 34.57814043516693], [-77.39950629551578, 34.578147351717256], [-77.39950382996643, 34.578151072126076], [-77.39950021229497, 34.57815759935297], [-77.39949247042738, 34.578162614528324], [-77.39949212448106, 34.5781633192988], [-77.39949151672911, 34.57816455742589], [-77.39948989114532, 34.57816786910482], [-77.39948896582547, 34.57816975418871], [-77.39948765780944, 34.578172418910746], [-77.39948546122294, 34.57817689384888], [-77.39947920309257, 34.5781896430595], [-77.39947872446328, 34.578190618134286]], [[-77.34913995704161, 34.551199597910895], [-77.34911526473827, 34.551216934222715], [-77.34911600331347, 34.551219368962336], [-77.3491175973053, 34.55122137922111], [-77.34912205546365, 34.5512298747973], [-77.34913434352433, 34.551231008300356], [-77.34914007482399, 34.55123132629635], [-77.34914190512374, 34.551231427848855], [-77.34914545292946, 34.55123162469491], [-77.34914796693211, 34.55122904786978], [-77.34916021303489, 34.55122328336889], [-77.34915792818228, 34.55121781852132], [-77.34915574581623, 34.55121262717738], [-77.34915463694144, 34.55121133605211], [-77.34915092231132, 34.55120803426691], [-77.34914375902852, 34.55119975233326], [-77.34914318970648, 34.551199132725486], [-77.34914300704152, 34.551198938061], [-77.34914266311708, 34.5511984852793]], [[-77.34591266242347, 34.53416500937523], [-77.3459478663291, 34.53415427867705], [-77.34593931155932, 34.534146932608714], [-77.34593110446129, 34.53413988509017], [-77.34591734337833, 34.5341280683003], [-77.34591242876796, 34.53412384807325], [-77.34590468151578, 34.5341171954206], [-77.34589375308607, 34.534107811054895], [-77.34587717611444, 34.53411668647963], [-77.34587709691742, 34.534120414583434], [-77.34587506792029, 34.53413415154888], [-77.34586974424958, 34.53414106260267], [-77.34586907709533, 34.534143793021904], [-77.34587325476468, 34.53414971370175], [-77.34586881021949, 34.534156853714975], [-77.34586839289832, 34.53415898445264], [-77.34586825138524, 34.53416573491292], [-77.34586752658105, 34.53416632499011], [-77.34587052613129, 34.5341706396491], [-77.34587047130496, 34.53417306610132], [-77.34587144658555, 34.53417371423875], [-77.34587167608197, 34.53417480539576], [-77.34587213698553, 34.53417507736463], [-77.34587267327781, 34.53417534299417], [-77.34587285833584, 34.53417547429929], [-77.3458729957857, 34.53417557182473], [-77.34587345776566, 34.53417596348967], [-77.34587439994104, 34.5341763261015], [-77.34587569552129, 34.53417727380909], [-77.34587708859532, 34.534176987171854], [-77.34587874397114, 34.534178067990595], [-77.34588188345512, 34.534177130046636], [-77.34588736493758, 34.53417598185511], [-77.34589108781972, 34.53417473666703], [-77.34589784997281, 34.53417332349184], [-77.34590351886608, 34.534167623249424]], [[-77.39940792465157, 34.5780540509867], [-77.39940789651735, 34.578053748064264], [-77.39940784061722, 34.57805353972091], [-77.39940778933281, 34.57805334890726], [-77.39940763979892, 34.578053209589726], [-77.39940751679823, 34.57805310615557], [-77.39940725502836, 34.578053114196564], [-77.39940716871186, 34.57805311684801], [-77.39940693157669, 34.578053124132296], [-77.39940687025403, 34.57805312601599], [-77.39940682062549, 34.57805312754047], [-77.39940634976222, 34.57805314200435], [-77.399406171223, 34.578053091780376], [-77.39940602901073, 34.57805311102876], [-77.39940533115572, 34.57805319957436], [-77.3994044571958, 34.57805352758809], [-77.39940311265369, 34.57805370625014], [-77.39940275179829, 34.578055611281044], [-77.39940342189185, 34.5780560522137], [-77.399404097751, 34.57805728362435], [-77.39940533101169, 34.57805730844614], [-77.39940628067352, 34.5780579333393], [-77.39940805717745, 34.57805832106186], [-77.39940740299983, 34.57805656205576], [-77.39940774650282, 34.57805542820229], [-77.39940800898157, 34.578054958970654], [-77.39940797251596, 34.57805456634417], [-77.39940794260774, 34.57805424432129]]]]}, "type": "Feature", "id": "demo3", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.15935199211063, 34.6166747015688], [-77.16322106178758, 34.61516240725311], [-77.1639782702281, 34.614440660081904], [-77.1661849616254, 34.61223398391474], [-77.16737361767383, 34.61172100162369], [-77.1699984629862, 34.61036736608554], [-77.17253641054775, 34.610874941120585], [-77.1751141825493, 34.61089057764221], [-77.17640149138464, 34.61080698769017], [-77.17772298947688, 34.60991597988493], [-77.17930578083528, 34.60889685243659], [-77.17948583426937, 34.6082909645684], [-77.18159123608174, 34.60553239598546], [-77.18169327985544, 34.60531507834534], [-77.18176399806421, 34.605057120115745], [-77.18224408606888, 34.60504040107838], [-77.18529693797171, 34.60414760609798], [-77.19013260340091, 34.602790680602425], [-77.19072876415262, 34.60251535329338], [-77.19149742601167, 34.602321078833334], [-77.1953495476552, 34.601367648608125], [-77.19760140461354, 34.60136764028554], [-77.19987065610218, 34.60109865412282], [-77.20086375692978, 34.601015283501845], [-77.20125209628796, 34.60082090204505], [-77.20288477392904, 34.60051212597013], [-77.20505860057816, 34.599966481568934], [-77.20552397333603, 34.59990251311883], [-77.20675991358118, 34.59975829412698], [-77.20676777680706, 34.59906026970992], [-77.2081706843996, 34.59699739717048], [-77.20813499004227, 34.596096060274014], [-77.20858702053776, 34.59544131331976], [-77.21007615829312, 34.59343258337272], [-77.21177118191311, 34.59337621495213], [-77.21410894109874, 34.59337619087252], [-77.21514424186185, 34.59337618517019], [-77.215661030371, 34.593143020245726], [-77.21577713481425, 34.59292935151611], [-77.21674142300711, 34.59239157117414], [-77.21721408916709, 34.592100183879836], [-77.21737670544148, 34.59203980132624], [-77.2179247509093, 34.59121424992854], [-77.21792437220935, 34.59121358012431], [-77.21792821859032, 34.59120966385942], [-77.21851994200334, 34.590427094916116], [-77.2186993699449, 34.59018978630637], [-77.21860892033331, 34.58938219445818], [-77.21957040418536, 34.58839452350749], [-77.22001067987088, 34.58760748743591], [-77.22092155382936, 34.58730424821148], [-77.22184011245287, 34.586815781768166], [-77.22523241263096, 34.58627624737152], [-77.22552000458707, 34.5862090503988], [-77.22558597813679, 34.58619545190222], [-77.22569483071547, 34.586171014202414], [-77.22773975332717, 34.58548223146164], [-77.22867919323832, 34.584986546031274], [-77.22677729865121, 34.58462567961917], [-77.22604627092205, 34.585169814543164], [-77.22580768008757, 34.584294470073466], [-77.22532688180566, 34.58330200780492], [-77.22565667818745, 34.582397067417475], [-77.2264345116726, 34.58169054268779], [-77.22798958878747, 34.581332051578194], [-77.23091565903283, 34.58041882457399], [-77.23362602861215, 34.57925527812979], [-77.23484245291684, 34.578653692676006], [-77.23792996531145, 34.575823840618455], [-77.24136127129425, 34.57393584442488], [-77.24523636070268, 34.57390716926908], [-77.24670545848615, 34.57343212463826], [-77.24714391623823, 34.57277961720159], [-77.25051472180226, 34.57156258389062], [-77.25212920482001, 34.57033013514331], [-77.2519381619964, 34.569386553726765], [-77.25526555735203, 34.566216328615155], [-77.25533320915403, 34.56588320495685], [-77.25577669086077, 34.565727106128335], [-77.256121328391, 34.56572107947943], [-77.25971709260864, 34.56434299163514], [-77.26005542440114, 34.56427545857129], [-77.26031226874676, 34.56410055247521], [-77.2618003199076, 34.56319870352934], [-77.26260954878879, 34.56289109527298], [-77.26296935350871, 34.5627135909559], [-77.26339896027963, 34.56233480191004], [-77.26330306062893, 34.562039518508506], [-77.26357959372578, 34.56127060079087], [-77.26294400211617, 34.56052189630391], [-77.26227388810976, 34.56000880192559], [-77.26448316285607, 34.55647290026994], [-77.26550428330746, 34.55503769803932], [-77.26648200345628, 34.55393976913359], [-77.26801383178187, 34.55111040570682], [-77.26958024452279, 34.547483029086315], [-77.26819464248307, 34.54528677243675], [-77.26655155401129, 34.5450689336279], [-77.26478597274233, 34.54386762570216], [-77.26422040817462, 34.54347229872567], [-77.26437945022187, 34.54313618963791], [-77.2635116660131, 34.541900285010826], [-77.26488793263684, 34.53962342935007], [-77.26559487751307, 34.53929416981044], [-77.26681611482115, 34.53824126567958], [-77.26766230096024, 34.53619243112951], [-77.26807409410877, 34.53564648941099], [-77.26794245932072, 34.535541246028885], [-77.26655360577392, 34.53449664804239], [-77.26607869460736, 34.534111134222144], [-77.2651984628672, 34.53335645896774], [-77.26725626800655, 34.53281353888489], [-77.26830494713408, 34.5325461567449], [-77.27022254470982, 34.531782978142594], [-77.27158248189417, 34.53127033730824], [-77.27209099586182, 34.531312044754685], [-77.27258874460286, 34.531357653403155], [-77.27603524908261, 34.53079162551989], [-77.27807641020193, 34.53126688039435], [-77.28432235722798, 34.52525333685974], [-77.28427835435463, 34.52501281772566], [-77.28480653813955, 34.52133446583717], [-77.28517400762802, 34.52092860952176], [-77.28960449893366, 34.51755602597705], [-77.29139460484916, 34.51732647068806], [-77.29232780740195, 34.5169837500165], [-77.29892902464559, 34.51342174316203], [-77.30410651466899, 34.51085171146414], [-77.30988023547349, 34.511431150863366], [-77.31036445478057, 34.51175408112657], [-77.3114017143434, 34.51154988431084], [-77.31669391224521, 34.50960691761186], [-77.31981124676184, 34.50769743604766], [-77.32304412385068, 34.506555580680704], [-77.32535538723695, 34.50744587664694], [-77.32779897401932, 34.5085494908829], [-77.32867381185702, 34.50879610620348], [-77.32925887837223, 34.5093055969741], [-77.33266335865585, 34.50963831501255], [-77.33471315048415, 34.51147228546168], [-77.33523388271634, 34.51155445329377], [-77.33548229615425, 34.511698748890275], [-77.33780592097845, 34.513469362804194], [-77.33845118221646, 34.51485169206787], [-77.3385481049184, 34.514883267882624], [-77.33915495462406, 34.514750442308], [-77.34079427608933, 34.513943668707604], [-77.34171661333289, 34.51363481443871], [-77.34563240689411, 34.51232514491879], [-77.34868097035661, 34.50946231323786], [-77.35007913458375, 34.506541809220046], [-77.3544928481937, 34.5041471902313], [-77.35677820471587, 34.501855244889605], [-77.35867002750226, 34.50018971897856], [-77.36089022673572, 34.498950547717186], [-77.3617286492844, 34.49922209989747], [-77.365205632522, 34.49801014832382], [-77.36721762474379, 34.49678577911251], [-77.37142134997592, 34.49574393871825], [-77.37773314609434, 34.497442143900265], [-77.37884939413122, 34.497842712532055], [-77.3797442236577, 34.49806541532945], [-77.38055480648552, 34.497533532871415], [-77.38122800807739, 34.49693816008033], [-77.38501844975639, 34.49316933387094], [-77.38589235647363, 34.492184111811305], [-77.386445826407, 34.492087953431664], [-77.38647205063074, 34.492264340894344], [-77.38675540927856, 34.492604064814444], [-77.3899832420596, 34.49567496600709], [-77.3907174030877, 34.496577431666864], [-77.39233592817382, 34.4964659055582], [-77.39330726912834, 34.49579189872914], [-77.39494769373538, 34.49495841192261], [-77.39715991476385, 34.4936930688031], [-77.398359037968, 34.49078696095978], [-77.39814466240225, 34.490579506695504], [-77.39837579735229, 34.490311534042675], [-77.3985084132359, 34.489614938371396], [-77.40068623751196, 34.489480777117365], [-77.40356981147846, 34.48842566711443], [-77.40413006039452, 34.48835671398676], [-77.40444758844349, 34.4880824444083], [-77.40848081829941, 34.486685396975496], [-77.40939957108282, 34.48616596547531], [-77.41063186775853, 34.48569700943729], [-77.41329656731261, 34.48459657871655], [-77.41471859077441, 34.48528726132523], [-77.41623655206132, 34.48550261519304], [-77.41725668253329, 34.48523362527514], [-77.41859583914362, 34.484280412413625], [-77.41902402688947, 34.48371632937658], [-77.41951964043312, 34.483449583059624], [-77.42063284279828, 34.48212188826166], [-77.42334483360304, 34.4819481412962], [-77.42561160459476, 34.481058743142036], [-77.42613020340629, 34.48004170442441], [-77.42812195441519, 34.47971972348527], [-77.42949452925552, 34.479300961056104], [-77.4320103907394, 34.47868330984369], [-77.43275257104852, 34.47850844518646], [-77.43312029436919, 34.47830230161435], [-77.43476882927284, 34.47711215603939], [-77.43685022275857, 34.47622807362658], [-77.43710223693591, 34.47587003866457], [-77.43776862609958, 34.47560370463255], [-77.43948336235049, 34.47465114924055], [-77.43942162998157, 34.47365703702605], [-77.43984956445635, 34.4724526584815], [-77.44222899744017, 34.47221790753189], [-77.44465235354113, 34.47241102611581], [-77.4453740411959, 34.47240832966361], [-77.4476734272022, 34.47243540180036], [-77.44832576203956, 34.47182021069233], [-77.44938837776766, 34.4714626240008], [-77.45114438967173, 34.47081387391991], [-77.45253721005176, 34.47052774129415], [-77.45318638986252, 34.470304859234346], [-77.45384250932288, 34.46974894396728], [-77.45634722642471, 34.46911455218734], [-77.4570001606524, 34.46890732359787], [-77.45742293989626, 34.468701039084195], [-77.45812116081439, 34.468264009548136], [-77.45900930777138, 34.467898852950455], [-77.45931886626205, 34.46765795802814], [-77.46139570930164, 34.466669072490866], [-77.46187166933741, 34.46652234737003], [-77.4621946220329, 34.46645776832933], [-77.4630593527755, 34.46591142796203], [-77.4633753075787, 34.46585232035062], [-77.46396020398419, 34.46544832113628], [-77.46408261646616, 34.46522060546328], [-77.46448987700371, 34.46500507749665], [-77.46612726518197, 34.46420732606825], [-77.46636394637676, 34.463953049307285], [-77.46683851342088, 34.463747878216296], [-77.46897349304592, 34.46320612230918], [-77.46934532824164, 34.463069408287296], [-77.4693721153142, 34.463038666876976], [-77.4694202954929, 34.463023451647594], [-77.46976390643856, 34.46279289656505], [-77.47109633735826, 34.46175746341786], [-77.47116589178715, 34.461534198118045], [-77.47157914216686, 34.46139271235406], [-77.47093780490079, 34.459047376898006], [-77.46943941652171, 34.45356723246782], [-77.46891692320261, 34.45165599863377], [-77.4660758220553, 34.45339635831678], [-77.46717573222674, 34.45475072214933], [-77.46602630786653, 34.456660703634526], [-77.46508513883882, 34.45733430943524], [-77.46341896199317, 34.45866562770817], [-77.4618124796193, 34.45936510755813], [-77.46040137058799, 34.45989717892991], [-77.45619920494885, 34.46048858640898], [-77.45464153173963, 34.4606322734466], [-77.4503789368665, 34.462628535909545], [-77.44686775869187, 34.46322786031742], [-77.44364939237288, 34.46479420400706], [-77.44005676271283, 34.46426402545796], [-77.43683509651768, 34.46434422336719], [-77.42817666525534, 34.46019196869694], [-77.4219103554497, 34.463729119456104], [-77.41823975841614, 34.463239117544376], [-77.41610597412176, 34.462647165149534], [-77.41275753369482, 34.46287959573599], [-77.40848638775772, 34.46126706451775], [-77.41008076748696, 34.46035135256751], [-77.41021938032512, 34.45945942889027], [-77.41051949344948, 34.458669027204], [-77.4102244680899, 34.45804434567931], [-77.411220192048, 34.45724224454467], [-77.41291815934792, 34.45608965099241], [-77.41027947902111, 34.4537922779694], [-77.4093992325785, 34.45590937305157], [-77.40744208504408, 34.456690476085036], [-77.40663672809245, 34.458199335293216], [-77.40663342197855, 34.45846986686242], [-77.40712836357773, 34.458914786612326], [-77.4063758277672, 34.459220562471074], [-77.40553253862537, 34.46051520595451], [-77.40408890206338, 34.46104155157412], [-77.40156588115244, 34.463338782522825], [-77.38873453589744, 34.46441341431], [-77.38632115526373, 34.46465467793744], [-77.38574748989834, 34.465148723008134], [-77.38483069263211, 34.465457007830466], [-77.37651862355143, 34.4681999454404], [-77.37167222849311, 34.46780535595368], [-77.36562032480363, 34.46772141669112], [-77.36012102792435, 34.46682059052392], [-77.35426833464412, 34.46557425388613], [-77.3495999441052, 34.466565839679845], [-77.3490749769169, 34.46680218994311], [-77.34765438019761, 34.46739977844058], [-77.34275196421609, 34.46884962580197], [-77.34049951101007, 34.47008073904309], [-77.33644655025893, 34.47012395286294], [-77.3328627303796, 34.47256774552606], [-77.3321844872606, 34.47397817271457], [-77.33170620345108, 34.47947407823541], [-77.33157473359582, 34.48058716359772], [-77.3314725292226, 34.48158070528177], [-77.33165143398779, 34.487237622837306], [-77.33301315403747, 34.488214286001615], [-77.33377710953536, 34.49065296323888], [-77.32959422245818, 34.49489253030541], [-77.3200344702569, 34.496028396500904], [-77.31700084394357, 34.49649950712037], [-77.31289440874465, 34.49370945493135], [-77.31204676353538, 34.49122838027515], [-77.31085299763132, 34.49095793893801], [-77.30795043838617, 34.489728871784365], [-77.30461235443333, 34.48938800098572], [-77.30409106257169, 34.488788219871694], [-77.29941251654778, 34.489804458745525], [-77.29832137819722, 34.489955720077546], [-77.2974875026608, 34.489922982631825], [-77.29517617131881, 34.49022593830297], [-77.2935725294848, 34.489964115289645], [-77.29347439341234, 34.48909822921039], [-77.29208247543201, 34.488323289370605], [-77.29036288173239, 34.48820490620951], [-77.2858882408477, 34.48970101528003], [-77.28555651363979, 34.48981543785467], [-77.28537635331446, 34.48987757578644], [-77.28478447604411, 34.49007880332533], [-77.284377255511, 34.48958222922523], [-77.28278127837554, 34.48918075428025], [-77.28277393933433, 34.48892059568205], [-77.28196846797883, 34.489392838719354], [-77.28153773896436, 34.4902838687252], [-77.28107857205966, 34.49200774155889], [-77.28224623333452, 34.492541898919654], [-77.28259181152669, 34.49294842822782], [-77.28271417171196, 34.493097188931685], [-77.28436460224812, 34.49351884312339], [-77.28410761403309, 34.494312628570086], [-77.2840939868488, 34.49511874871732], [-77.28520725823185, 34.49762186258975], [-77.28056579129075, 34.50109537669618], [-77.27875512009216, 34.50283410270445], [-77.2733323456216, 34.50698440730786], [-77.2721388788933, 34.50803686726922], [-77.26731409449081, 34.50693279824006], [-77.26686715413663, 34.506458351203676], [-77.26759437234571, 34.500074700153405], [-77.27334551110289, 34.496031918409024], [-77.27289360830042, 34.49261653788889], [-77.2726697400403, 34.49250257725352], [-77.27264564148993, 34.49243551630548], [-77.2725108085949, 34.49250761515982], [-77.26698951898463, 34.491577029438766], [-77.26680457388302, 34.491222558516014], [-77.26755266336768, 34.488258340438534], [-77.2674205634676, 34.48747157391448], [-77.26754452916975, 34.486580557311356], [-77.26759874662318, 34.48432426405242], [-77.2680063413342, 34.4832855783694], [-77.26945949610564, 34.48064277034048], [-77.26630002762272, 34.480851828811254], [-77.2638747971866, 34.48403086518153], [-77.25836166768343, 34.48830355279546], [-77.25567946339748, 34.49126037673723], [-77.25570485416605, 34.49580554674138], [-77.25808461401056, 34.49620984733059], [-77.25621148716021, 34.499177848996894], [-77.25732911865187, 34.50048377580574], [-77.2583492341773, 34.500542725802255], [-77.25933038265087, 34.50074923588649], [-77.26312068421646, 34.50135206383629], [-77.25920983788198, 34.50575001318066], [-77.25618233241083, 34.50705110291147], [-77.25461139986274, 34.5084876889612], [-77.25262560166433, 34.509566379522646], [-77.25177946866697, 34.50778269065449], [-77.251811402199, 34.50723452714085], [-77.25142221499613, 34.50667578279976], [-77.25016843466895, 34.50573241349271], [-77.24768998257355, 34.50638138068132], [-77.2481585150673, 34.50794702161971], [-77.24767062902825, 34.50938784289676], [-77.2476716572908, 34.51031773364224], [-77.24767156223652, 34.51230885463156], [-77.25170258180725, 34.511171926537614], [-77.25258718191307, 34.51115514252865], [-77.25581356288413, 34.510988490402475], [-77.25690916879611, 34.51234503868662], [-77.25832216663957, 34.51205002109325], [-77.25904065899894, 34.51276855098882], [-77.26251597563423, 34.51125402884492], [-77.26162770773927, 34.51535561035821], [-77.26307103894548, 34.516902219587834], [-77.25880006939612, 34.522749990084364], [-77.25622943975591, 34.5228057610673], [-77.25227660738153, 34.5239986901836], [-77.25130622066914, 34.52360609221732], [-77.24026960375346, 34.52942268870188], [-77.23909972810259, 34.531808797249006], [-77.23515898755247, 34.53689490301804], [-77.23088567531144, 34.538446576052465], [-77.23093185162409, 34.53656107833721], [-77.2285384185653, 34.534855183629205], [-77.22839777829819, 34.533536856042545], [-77.22705247345753, 34.531747057196355], [-77.22612372705272, 34.53131311298299], [-77.22419581664501, 34.533231397085636], [-77.2222838745125, 34.53587763239513], [-77.21945661390534, 34.53835627195119], [-77.217149243058, 34.54077248313651], [-77.215379733782, 34.54320746687084], [-77.2168109697165, 34.546292122958995], [-77.220847726151, 34.54661123233644], [-77.22279487878134, 34.54735371672994], [-77.22274583041204, 34.55166578954748], [-77.22326461187185, 34.55311633084846], [-77.22417551923171, 34.55348259406031], [-77.22507757938817, 34.555787989890796], [-77.22518394827209, 34.555999596463], [-77.2250563308956, 34.556337392336154], [-77.22518259688952, 34.55973417349531], [-77.2248839608134, 34.55995681610601], [-77.2239830300136, 34.562606014343686], [-77.22364425490557, 34.563383555928745], [-77.22364171170227, 34.56342410705624], [-77.22354241735641, 34.56347628282994], [-77.21789671155305, 34.56356954538566], [-77.21538170867247, 34.563512540412646], [-77.21003159298745, 34.563522689269796], [-77.2063250975792, 34.56578475276357], [-77.2057940711245, 34.57188808255823], [-77.20762396652455, 34.572291941350116], [-77.20675265972135, 34.57336065238147], [-77.20562672432011, 34.57368773664935], [-77.20421823801954, 34.574998492683875], [-77.19935903568214, 34.580317370874084], [-77.19433244406017, 34.584676172710196], [-77.18941206785072, 34.58707091331651], [-77.18699837430869, 34.59175781027504], [-77.18513597425438, 34.594274586192114], [-77.18316846235463, 34.59578276371086], [-77.18001394820949, 34.596131891489705], [-77.17108173531628, 34.60070174903768], [-77.16853824840526, 34.60380339645687], [-77.1653135785421, 34.60573657578637], [-77.16147090162914, 34.6074809117594], [-77.1611189964388, 34.60772126164122], [-77.16020330649829, 34.608579447647664], [-77.15485401266312, 34.61266764461739], [-77.15710906160584, 34.614676718589095]], [[-77.31888072881785, 34.47373780353564], [-77.31755441221112, 34.47286217797138], [-77.31659953803609, 34.47433182515806], [-77.31575897029467, 34.47502702400159], [-77.31745960000389, 34.47691041903321], [-77.32336635255756, 34.47393339549667]], [[-77.42633816186117, 34.432255408908844], [-77.42520566538822, 34.43205816912067], [-77.42042458053872, 34.431775946838385], [-77.41507470056865, 34.431877833626366], [-77.41506820685608, 34.43187862993292], [-77.41506689264251, 34.431881912087796], [-77.41508169525788, 34.43191991985703], [-77.4160119740721, 34.43451903487379], [-77.42026380228296, 34.434407042915154], [-77.42079005258549, 34.433116123150285], [-77.42446974105542, 34.433231564151974], [-77.42651981155316, 34.434389992521616], [-77.42653449456488, 34.43270473635976]], [[-77.28863109631148, 34.4824605622543], [-77.28896381809366, 34.48299597730349], [-77.2901455176719, 34.48340633414623], [-77.29125592649653, 34.4833925246418], [-77.29113719347531, 34.48420713159882], [-77.29171910303194, 34.484527918149894], [-77.29216664627063, 34.48477462821321], [-77.29279697677079, 34.48420010776607], [-77.29271762828539, 34.48256415033586], [-77.29275764188633, 34.48224731009064], [-77.29224799363024, 34.481345082244644], [-77.28947409045637, 34.48153069056935], [-77.28575607068184, 34.481809927083376], [-77.28574695497782, 34.481812610736135], [-77.2827587487251, 34.48128344327883], [-77.28200441520127, 34.48152041118178], [-77.28221618814975, 34.481881835065266], [-77.282030007514, 34.48374956830262], [-77.2820299860552, 34.48546005131437], [-77.2819514596082, 34.486000709888756], [-77.28297233410018, 34.48553415452647], [-77.2857468147245, 34.481818504433036]], [[-77.34090228698025, 34.45601446410873], [-77.33901957751499, 34.4566544864807], [-77.33572991191994, 34.456789522702], [-77.33248573808801, 34.45734824817599], [-77.33126876095228, 34.45763288554423], [-77.33243983161672, 34.459613577270886], [-77.33625445420829, 34.46032852999816], [-77.33626210247978, 34.460580732727934], [-77.33713712147731, 34.46049310807359], [-77.34195740255761, 34.459896230775044], [-77.34401341900019, 34.45794566388519]], [[-77.2446399149368, 34.515648796820514], [-77.24137593372338, 34.516541348378524], [-77.2394602492458, 34.516994552452935], [-77.2385044373272, 34.518034167310034], [-77.23850597428128, 34.521407814245066], [-77.23655914355228, 34.522925721051685], [-77.23849428839985, 34.52241832685962], [-77.23928968248192, 34.52400323283907], [-77.2400939131947, 34.52496902751574], [-77.24030225044008, 34.528076893209956], [-77.25133499357125, 34.52241998587798], [-77.24949558117919, 34.52008113657824], [-77.25097287782704, 34.51845367582062], [-77.25095518443524, 34.51634189205361], [-77.24945148590666, 34.51622327905387], [-77.24598320171043, 34.51575479288995]], [[-77.39203954392597, 34.4587025651302], [-77.39079309892179, 34.457078455396385], [-77.38814516637873, 34.45680682815066], [-77.38416660723055, 34.456744444538764], [-77.3799184527417, 34.45709731064406], [-77.37924710529313, 34.45722935280251], [-77.38050703145043, 34.45931613878851], [-77.38296133779313, 34.459037758079546], [-77.38448635794373, 34.45791849501967], [-77.38851000257472, 34.45827002896296]], [[-77.41781344786764, 34.441938491623276], [-77.41567317058195, 34.44095758402773], [-77.41451913931232, 34.44111893308161], [-77.41403631647296, 34.44181250037796], [-77.41577242176945, 34.44272470082273], [-77.41614943418533, 34.443839601035364], [-77.41895280663645, 34.443276326830116], [-77.42303694373688, 34.44309651295739], [-77.4200889721066, 34.44178189172839]], [[-77.26132922635465, 34.52168922016607], [-77.26538472540297, 34.51894504936354], [-77.27130620870074, 34.5161176051366], [-77.2722622044279, 34.5158172043869], [-77.27230338935765, 34.51598091081355], [-77.27228024186704, 34.516194252188164], [-77.27307703377201, 34.51945970378204], [-77.2752049901312, 34.52022668162846], [-77.27521836679306, 34.520363029753916], [-77.27498587878077, 34.52046820261158], [-77.27183377596802, 34.520776737953085], [-77.27139091113082, 34.52060408033233], [-77.27055643804839, 34.52077095141982], [-77.26815658562359, 34.52034238422989], [-77.26531918014292, 34.52167317477721], [-77.2647007150557, 34.521876301828236], [-77.26446043650002, 34.52058954843337]], [[-77.25988739417393, 34.49552988652682], [-77.25972666694302, 34.49535569044899], [-77.26277924164047, 34.492310742129504], [-77.26553556150617, 34.49233356611818], [-77.26525350263698, 34.49293246996202], [-77.26532709475777, 34.495958469924986], [-77.26054495219688, 34.49812266781356]], [[-77.29067895632241, 34.50641870050636], [-77.28791914886733, 34.50620923452389], [-77.28776669579972, 34.50599370354444], [-77.2872431662373, 34.50555785408257], [-77.28965964894287, 34.50428985015316], [-77.29169966744625, 34.50446335577901], [-77.29336041622389, 34.50275595523257], [-77.29292563080558, 34.50180756121992], [-77.29467978256577, 34.49976614870974], [-77.29487851128766, 34.49956889837044], [-77.29487902898785, 34.49952076292994], [-77.29750961052605, 34.4972328246382], [-77.2975011186645, 34.49682358487583], [-77.29816371837151, 34.49662401719936], [-77.3002268871798, 34.49557107079775], [-77.30194141386816, 34.495012909634696], [-77.30202129525395, 34.49462671301859], [-77.30451324676149, 34.49359310636742], [-77.30681119660784, 34.49393890682016], [-77.3068830334565, 34.49439666479912], [-77.3089737316393, 34.49558676116966], [-77.30436232185902, 34.4999969980989], [-77.30424472076727, 34.500111167545946], [-77.30415128104526, 34.50019627121433], [-77.29797989495746, 34.504399218206274], [-77.29734823340267, 34.50470015939739], [-77.2961597422037, 34.50526031810808], [-77.29164210666599, 34.50689036743924]], [[-77.44213986688844, 34.43245825139698], [-77.4400458910527, 34.433156674898086], [-77.44266815705907, 34.434393522790245], [-77.44360261575628, 34.43333809679844]], [[-77.37780316636079, 34.45759681538953], [-77.37388024882343, 34.45850931269645], [-77.37368595197658, 34.45927627338355], [-77.37350420614506, 34.45946923446546], [-77.37356222424873, 34.459809527429556], [-77.37427412841492, 34.45995619928118], [-77.3747214479118, 34.45978051096208], [-77.3765583220368, 34.45962658103259]], [[-77.42702779615666, 34.44245153829058], [-77.42669136538711, 34.44146383488274], [-77.42406392640027, 34.44100959932992], [-77.42363592848534, 34.44306002067687]], [[-77.38254385917847, 34.45078551833993], [-77.3841468198092, 34.450559174070634], [-77.38478315776592, 34.45041548940956], [-77.38407450784071, 34.4496289569407], [-77.38256047757461, 34.44933323686201], [-77.38224778519464, 34.449698189928085], [-77.38121536457281, 34.45040828432579]], [[-77.44323341472673, 34.425212843492154], [-77.44254179003605, 34.42407182323933], [-77.44234708680627, 34.42388930592597], [-77.44094182839687, 34.424266014920185], [-77.44061060366911, 34.42479695221904], [-77.44167065378599, 34.42513312372413], [-77.44296694734845, 34.42562946597724]], [[-77.39947872446328, 34.578190618134286], [-77.39947920309257, 34.5781896430595], [-77.39948546122294, 34.57817689384888], [-77.39948765780943, 34.578172418910746], [-77.39948896582547, 34.578169754188714], [-77.39948989114532, 34.57816786910482], [-77.39949151672911, 34.57816455742589], [-77.39949212448106, 34.57816331929881], [-77.39949247042738, 34.578162614528324], [-77.39950021229497, 34.57815759935297], [-77.39950382996643, 34.578151072126076], [-77.39950629551578, 34.57814735171725], [-77.39951025462591, 34.57814043516693], [-77.39951426952531, 34.57813293317928], [-77.39951503133244, 34.578131624918605], [-77.39951614346222, 34.578129793412906], [-77.39952161136077, 34.57812449773688], [-77.39952789949132, 34.57811769851926], [-77.399532743133, 34.57810835034745], [-77.39954077002415, 34.578099564070534], [-77.3995774356162, 34.57809698882622], [-77.3995900229525, 34.57804346845853], [-77.39964885002719, 34.578057493602955], [-77.39971664454347, 34.57806016208057], [-77.3997840887052, 34.5781837133978], [-77.39978439099939, 34.578186831576026], [-77.39968851695149, 34.57830007643762], [-77.39968530302546, 34.57830380994891], [-77.39967754515628, 34.57830839248442], [-77.3995900125878, 34.57836009754711], [-77.39954600270659, 34.57838609392495], [-77.39943976841931, 34.57844884571202], [-77.39940670208581, 34.57846837776139], [-77.39939300355559, 34.578476469359416], [-77.39935992767198, 34.57849600695664], [-77.39937904592142, 34.57845760753936], [-77.39938715147828, 34.578450130957535], [-77.39939300477205, 34.57844159480765], [-77.39945440514934, 34.57834059026487], [-77.39941591037736, 34.57832146687076], [-77.3994279209318, 34.578275886722935], [-77.39944226201023, 34.57826869625585], [-77.39947028524145, 34.57823215538939], [-77.39947388005828, 34.578212633627295], [-77.39947324224285, 34.57820519284209], [-77.39947745955381, 34.57819319503636]], [[-77.34914266311708, 34.5511984852793], [-77.34914300704152, 34.551198938061], [-77.34914318970648, 34.551199132725486], [-77.34914375902852, 34.55119975233326], [-77.34915092231132, 34.55120803426691], [-77.34915463694145, 34.55121133605211], [-77.34915574581623, 34.55121262717738], [-77.34915792818228, 34.55121781852132], [-77.34916021303489, 34.55122328336889], [-77.34914796693211, 34.55122904786978], [-77.34914545292946, 34.55123162469491], [-77.34914190512376, 34.551231427848855], [-77.34914007482399, 34.55123132629636], [-77.34913434352433, 34.551231008300356], [-77.34912205546367, 34.5512298747973], [-77.3491175973053, 34.55122137922111], [-77.34911600331345, 34.551219368962336], [-77.34911526473827, 34.551216934222715], [-77.34913995704161, 34.551199597910895]], [[-77.34590351886608, 34.534167623249424], [-77.34589784997281, 34.53417332349184], [-77.34589108781972, 34.53417473666703], [-77.34588736493758, 34.53417598185511], [-77.34588188345512, 34.534177130046636], [-77.34587874397114, 34.534178067990595], [-77.34587708859532, 34.534176987171854], [-77.3458756955213, 34.53417727380909], [-77.34587439994104, 34.5341763261015], [-77.34587345776566, 34.53417596348967], [-77.3458729957857, 34.53417557182473], [-77.34587285833584, 34.53417547429929], [-77.34587267327781, 34.53417534299417], [-77.34587213698553, 34.53417507736463], [-77.34587167608197, 34.53417480539576], [-77.34587144658555, 34.53417371423875], [-77.34587047130496, 34.53417306610132], [-77.34587052613129, 34.5341706396491], [-77.34586752658105, 34.53416632499012], [-77.34586825138524, 34.53416573491292], [-77.34586839289832, 34.53415898445264], [-77.34586881021947, 34.534156853714975], [-77.34587325476468, 34.53414971370175], [-77.34586907709533, 34.534143793021904], [-77.34586974424958, 34.53414106260267], [-77.34587506792029, 34.53413415154888], [-77.34587709691742, 34.534120414583434], [-77.34587717611444, 34.53411668647963], [-77.34589375308607, 34.534107811054895], [-77.34590468151578, 34.5341171954206], [-77.34591242876797, 34.53412384807325], [-77.34591734337833, 34.5341280683003], [-77.34593110446129, 34.53413988509017], [-77.3459393115593, 34.534146932608714], [-77.3459478663291, 34.53415427867705], [-77.34591266242347, 34.53416500937523]], [[-77.39940794260774, 34.57805424432129], [-77.39940797251596, 34.57805456634417], [-77.39940800898157, 34.578054958970654], [-77.39940774650282, 34.57805542820229], [-77.39940740299983, 34.57805656205576], [-77.39940805717745, 34.57805832106186], [-77.39940628067352, 34.5780579333393], [-77.39940533101169, 34.57805730844614], [-77.39940409775102, 34.57805728362435], [-77.39940342189185, 34.5780560522137], [-77.39940275179828, 34.578055611281044], [-77.39940311265369, 34.57805370625014], [-77.3994044571958, 34.57805352758809], [-77.39940533115572, 34.57805319957436], [-77.39940602901073, 34.57805311102876], [-77.399406171223, 34.578053091780376], [-77.39940634976222, 34.57805314200435], [-77.3994068206255, 34.57805312754047], [-77.39940687025403, 34.578053126015995], [-77.39940693157669, 34.578053124132296], [-77.39940716871187, 34.57805311684801], [-77.39940725502836, 34.578053114196564], [-77.39940751679825, 34.57805310615557], [-77.39940763979894, 34.57805320958973], [-77.39940778933281, 34.578053348907254], [-77.39940784061722, 34.57805353972091], [-77.39940789651735, 34.578053748064264], [-77.39940792465157, 34.5780540509867]], [[-77.27777438034724, 34.53652844471971], [-77.27794983032936, 34.536570042660195], [-77.28012962406423, 34.53713851039184], [-77.28052378216825, 34.537325031287125], [-77.28260945440385, 34.53778915050383], [-77.28266981032337, 34.53878667106294], [-77.28436918048448, 34.53971750639255], [-77.28528119061932, 34.53973538249042], [-77.28761895390163, 34.53906447578447], [-77.29090808460415, 34.5378426376655], [-77.29226497486054, 34.53715410006264], [-77.29487631172763, 34.53529959043251], [-77.29525260882967, 34.532808635921626], [-77.29513059634822, 34.53144801957623], [-77.29458597718411, 34.53071602244042], [-77.2942345918826, 34.529990927342695], [-77.29356693185764, 34.529133630663345], [-77.293023511088, 34.52803728237754], [-77.29243056546181, 34.52615647111275], [-77.29212790974742, 34.52542318909296], [-77.29239689864643, 34.52465111006002], [-77.29135158929492, 34.519140334063486], [-77.28590574170065, 34.52514065089559], [-77.2847125351098, 34.52528546151291], [-77.2799514370505, 34.53140894072879], [-77.28002934095568, 34.532554087216894], [-77.27797116947693, 34.53567601595087], [-77.27755264341374, 34.53629705792616], [-77.27744906996921, 34.53659220048712]], [[-77.35165953611369, 34.491398604062034], [-77.35165627017827, 34.49141301182714], [-77.35163616787331, 34.49141629689487], [-77.35161328663867, 34.49141314801858], [-77.35163047843676, 34.49140045125625]], [[-77.27683987736995, 34.54467192593351], [-77.2744952500803, 34.54524769279966], [-77.27231388564756, 34.54702589450052], [-77.27445551566367, 34.54690978861579]], [[-77.2336873883077, 34.56694802116336], [-77.23365841849028, 34.567080732744], [-77.23304824672704, 34.567187257099036], [-77.23324379913487, 34.566711690793085]], [[-77.28375605787906, 34.516540330153255], [-77.28394383116024, 34.5171113694809], [-77.28296883143484, 34.51740825059819], [-77.28287842022738, 34.517027643826026]], [[-77.4000254094777, 34.57819664588321], [-77.4000173618565, 34.57811729603198], [-77.39984328408684, 34.577966046350014], [-77.39981040344219, 34.57794560426672], [-77.39978703015294, 34.57794525675241], [-77.39976862582667, 34.577956987615096], [-77.39959002563839, 34.57796182624556], [-77.3995673503265, 34.577981428766876], [-77.39955992855937, 34.57800693339702], [-77.39957363968978, 34.578022609907045], [-77.39955997857079, 34.57808069591464], [-77.39954077060939, 34.578082045004905], [-77.39952410451582, 34.57810028779785], [-77.39951614393851, 34.578115651619015], [-77.3995142490871, 34.57811762641795], [-77.39951425476534, 34.57811966737156], [-77.39951178168491, 34.57812472454746], [-77.3995102827752, 34.57812719301981], [-77.39950626793141, 34.57813408776016], [-77.39950533049203, 34.578135839400204], [-77.39950383039283, 34.57813846006779], [-77.39949838735677, 34.57814849281535], [-77.39949581801, 34.578153498101905], [-77.39949481493845, 34.578155642261606], [-77.39949151694302, 34.57815825554569], [-77.39948927681345, 34.57816066152842], [-77.39948843865491, 34.578160991105754], [-77.39948780858192, 34.57816064918184], [-77.39948689955273, 34.578161124615164], [-77.39948652100162, 34.578161406593985], [-77.39948555862337, 34.57816195336566], [-77.39948536041794, 34.57816221656747], [-77.39948475208664, 34.578163072745085], [-77.39948262780126, 34.57816366231699], [-77.39948228217915, 34.57816349376553], [-77.39948174202499, 34.57816416256851], [-77.39948145059917, 34.57816662562934], [-77.399479203769, 34.57816979421652], [-77.39947607513582, 34.57817161423251], [-77.39947497674211, 34.578173851906016], [-77.39947257053208, 34.57817875389235], [-77.39947051006831, 34.578182951517334], [-77.3994668902839, 34.57819032582364], [-77.39946157671741, 34.57820115073976], [-77.39945663695909, 34.578207588874655], [-77.39944753415416, 34.578229758543536], [-77.39944645972693, 34.57823559325328], [-77.39944226296242, 34.57824106562047], [-77.39940866249997, 34.57825791254176], [-77.3993930091181, 34.578317317248064], [-77.39935478124707, 34.578354965267174], [-77.39932762271778, 34.578394571903324], [-77.39923707570014, 34.578478092653135], [-77.39922202877877, 34.57850831471999], [-77.39920578631474, 34.57858875091113], [-77.39919599231288, 34.578637252941554], [-77.3991700060775, 34.578621916196], [-77.39915865056108, 34.57859555214758], [-77.39913047025246, 34.57856408224264], [-77.39909749241782, 34.57856078576444], [-77.39907828555076, 34.5785864523694], [-77.39905654289925, 34.578610285258165], [-77.39904823872126, 34.578620487144725], [-77.39902891651423, 34.57861427144943], [-77.39900722318647, 34.578608527355456], [-77.39899898787374, 34.578606339630916], [-77.39896269657234, 34.5786238262457], [-77.39891867876344, 34.57864978431917], [-77.39890048300927, 34.578657064725036], [-77.39889049548431, 34.578645006775275], [-77.39884613479927, 34.57864064472483], [-77.39880198114882, 34.57863304842373], [-77.39879069215412, 34.57863647991133], [-77.39871208175134, 34.57865071524185], [-77.39870347751568, 34.578651420892136], [-77.3986990422346, 34.57865708922986], [-77.39866320805359, 34.57865735970315], [-77.39865422638042, 34.578644583879885], [-77.3986186215009, 34.57865876611504], [-77.39860497421816, 34.57866112400127], [-77.39858496785128, 34.57864681477872], [-77.39857687574381, 34.57864921663325], [-77.39855572216578, 34.57867475246377], [-77.39853745531498, 34.57868518295045], [-77.39851793479158, 34.578700354008696], [-77.39850646928812, 34.57870620402787], [-77.39848656567347, 34.57871397258301], [-77.39840796379636, 34.578761044759794], [-77.39837764461741, 34.57878171461518], [-77.39830945815214, 34.5788162055863], [-77.39829378418723, 34.578826484106735], [-77.39823605748934, 34.57886186487356], [-77.39821094967886, 34.57892678663329], [-77.39816208774137, 34.57900512448905], [-77.39814325804795, 34.57906048887382], [-77.39812028436401, 34.57916148833527], [-77.39820864296264, 34.579263341785754], [-77.39821093328621, 34.579263861559554], [-77.39821214801137, 34.579264145023565], [-77.39834651483396, 34.57930963670891], [-77.3984079382675, 34.57931236858927], [-77.39848281780235, 34.57930446971204], [-77.39850644247817, 34.57930008382682], [-77.39853491864945, 34.57929172482933], [-77.39855569529567, 34.579277584937806], [-77.39856337876215, 34.5792735103126], [-77.3986049476008, 34.57926617651448], [-77.3986150293099, 34.57926864249099], [-77.3986506258336, 34.579256493875], [-77.39865419988908, 34.57925482004315], [-77.39865608049055, 34.57925388208802], [-77.39866805466282, 34.579250127976124], [-77.39867882620004, 34.579245126534126], [-77.39868794462896, 34.57923054726799], [-77.39869525683176, 34.579228498891354], [-77.39870345270523, 34.57923073670818], [-77.39872331724018, 34.579215618534384], [-77.39872544590688, 34.5792124736894], [-77.39873083313566, 34.57921156678658], [-77.39875270535683, 34.57920987631965], [-77.39878675138257, 34.57919631569784], [-77.3988019580292, 34.57918789734819], [-77.39881226880959, 34.57918735864759], [-77.39887697072544, 34.5791669125453], [-77.39889678195634, 34.57916008788037], [-77.39890046272194, 34.5791581081025], [-77.39890832931883, 34.579153911346005], [-77.39894971563822, 34.57912816934857], [-77.39896238626125, 34.5791151692444], [-77.39899896921857, 34.57908037930347], [-77.39901698420324, 34.57905997827143], [-77.39903287760191, 34.579038273641885], [-77.39904822341269, 34.57901521682065], [-77.39907126952599, 34.579004495572846], [-77.39909747651215, 34.578976863154054], [-77.39912011753776, 34.579001287731835], [-77.39918292136824, 34.579002553723264], [-77.39919597876799, 34.5790032164725], [-77.39921329941443, 34.57899357695622], [-77.3992605571075, 34.578968864259906], [-77.39929448505998, 34.578918225541855], [-77.39931987229527, 34.57889071971647], [-77.39929448785372, 34.578840164698875], [-77.39927483639617, 34.57881225131632], [-77.39927315542937, 34.578791317081105], [-77.3992490021748, 34.57874578466668], [-77.39934302634433, 34.578728936103616], [-77.39939299501009, 34.578722022576294], [-77.39943985138893, 34.57866112071632], [-77.39954602217338, 34.57859840659334], [-77.39959000568075, 34.57857242584657], [-77.39969620635634, 34.57850969364107], [-77.3997870146419, 34.57845605371863], [-77.3998650222503, 34.578387483756494]], [[-77.34919593967037, 34.551256193015554], [-77.34919462522636, 34.55125293624991], [-77.34919387436796, 34.5512509612608], [-77.34919066882081, 34.55124509092951], [-77.34918072587604, 34.551230739614375], [-77.34918239156744, 34.55122409410123], [-77.34918013709292, 34.551217454972246], [-77.3491766425637, 34.55120365929116], [-77.34916952294581, 34.55119534332469], [-77.34916732698099, 34.5511930597087], [-77.34916045538732, 34.551185736709925], [-77.34914972198594, 34.55117160602584], [-77.34914684123571, 34.55116800466826], [-77.3491457761875, 34.551166673202786], [-77.34914347095525, 34.551163376450035], [-77.3491232539671, 34.55115872588837], [-77.34909447426165, 34.551159841568285], [-77.34906135441149, 34.55121090892474], [-77.34906619939737, 34.55122688062549], [-77.34907024937823, 34.55124023152923], [-77.34909241571803, 34.55124930406579], [-77.34911133155579, 34.5512530733162], [-77.3491275790443, 34.551253974794065], [-77.34914136872428, 34.551254739901765], [-77.34914848276742, 34.55125513461653], [-77.34917075929903, 34.551256370601806], [-77.34918563397956, 34.551257195905215], [-77.34919037049782, 34.551258056452184]], [[-77.34592548989501, 34.534171253494335], [-77.34593223687014, 34.53416919691133], [-77.34595250939515, 34.534170990465334], [-77.34597211108087, 34.53416289864907], [-77.34598624059952, 34.53414875676294], [-77.34598894383315, 34.53412628736431], [-77.34598044390637, 34.534118988390844], [-77.3459542273368, 34.534096475956005], [-77.34595159244746, 34.53409421334912], [-77.3459499209607, 34.53409277802462], [-77.34594244945762, 34.53408636216079], [-77.34591424108511, 34.53406213931893], [-77.34589971231732, 34.534065558678854], [-77.34589958170238, 34.53407323191323], [-77.34588937137966, 34.53410149084824], [-77.34586869799773, 34.53411255951925], [-77.34586839119042, 34.53412700210171], [-77.34586716727352, 34.53413528841421], [-77.34586292349141, 34.534140797584094], [-77.34586286285418, 34.53414355842411], [-77.34586280229982, 34.534146315490865], [-77.3458659425344, 34.5341507658966], [-77.34586258613038, 34.53415615784741], [-77.34586252572385, 34.53415890818374], [-77.34586321130021, 34.53416109034771], [-77.34586309200148, 34.534166477323254], [-77.3458666641765, 34.53416994662153], [-77.34586831115526, 34.53417231569393], [-77.34586828709799, 34.5341733803982], [-77.34587020412906, 34.53417465439013], [-77.34587027819563, 34.5341750065449], [-77.34587137515224, 34.53417565383442], [-77.34587161168398, 34.534175770990345], [-77.34587264909983, 34.534176391653816], [-77.34587276361843, 34.534176488742276], [-77.34587290133308, 34.53417654174404], [-77.34587356249259, 34.53417702537744], [-77.34587261654542, 34.53417780362097], [-77.34587162350562, 34.53417735145143], [-77.34587033001775, 34.534176911743984], [-77.3458697991785, 34.53417684635409], [-77.34586957249952, 34.5341768184313], [-77.34586765619859, 34.5341765823773], [-77.34586651442427, 34.53417644173112], [-77.34586142992002, 34.53417752263843], [-77.3458560071527, 34.53417514742248], [-77.34585428212353, 34.53417493492961], [-77.34584954805388, 34.53417607685475], [-77.34585419082933, 34.53417889455036], [-77.34585709266304, 34.53418080458586], [-77.34585955488507, 34.534182287545185], [-77.3458662861692, 34.53418634169635], [-77.34586819247903, 34.534187489837926], [-77.3458698079388, 34.53418846280475], [-77.34587838520201, 34.53419362875964], [-77.34588029994617, 34.53419341261302], [-77.34590053426723, 34.53419169205455], [-77.34590276638784, 34.53419149687884], [-77.34590296504746, 34.53419164413653], [-77.3459032229807, 34.53419146342864], [-77.34590333943794, 34.53419128840341], [-77.34590364114948, 34.53419083495716], [-77.34591459849045, 34.53417436702663]], [[-77.3986911836658, 34.578212872704604], [-77.39868726723004, 34.578221505927914], [-77.39868898806894, 34.57822784268267], [-77.3986911828362, 34.57823194541551], [-77.39869428944448, 34.57823463275652], [-77.39870310190236, 34.57823628488452], [-77.39870349545336, 34.578236079943096], [-77.39870565130269, 34.57823401812244], [-77.39872241600376, 34.57822777419966], [-77.39871830284426, 34.578218560442], [-77.39871084670314, 34.57821697624158], [-77.39870349644121, 34.57821329103786], [-77.39870165366554, 34.578212367834624], [-77.39869161963904, 34.57821229961207]], [[-77.39940978042989, 34.57805992940372], [-77.39940966136147, 34.578058468885345], [-77.39940902573639, 34.578057896218425], [-77.39940840921246, 34.578057045372816], [-77.39940797125287, 34.57805586775139], [-77.39940812077599, 34.578055374197255], [-77.39940823503015, 34.5780551699458], [-77.39940817623983, 34.57805453694823], [-77.39940815070017, 34.57805426196185], [-77.39940814461048, 34.57805412688912], [-77.3994081280214, 34.57805401777869], [-77.39940810853518, 34.57805380796987], [-77.3994081002412, 34.57805371866831], [-77.3994080832427, 34.578053657882954], [-77.3994080245649, 34.57805343661787], [-77.39940799998395, 34.57805334500305], [-77.39940799312978, 34.57805331950076], [-77.39940763980661, 34.57805299031711], [-77.39940762310269, 34.57805297627039], [-77.39940746461517, 34.578052981138775], [-77.39940725503388, 34.57805295655239], [-77.39940698636639, 34.578052925034505], [-77.39940687026495, 34.57805281394508], [-77.39940648688437, 34.5780527060982], [-77.39940570809001, 34.578052811507746], [-77.39940533116766, 34.57805285933261], [-77.3994048591283, 34.578053036497934], [-77.39940270214657, 34.57805332311653], [-77.39940225287675, 34.57805569490557], [-77.39940169357294, 34.5780563015981], [-77.39940225283735, 34.578056818000555], [-77.39940314638059, 34.578058446030056], [-77.39940533097027, 34.578058489999215], [-77.39940565211951, 34.578058701320714], [-77.39940660668256, 34.57805890965441], [-77.39940707986383, 34.5780602737293]]]]}, "type": "Feature", "id": "demo4", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16249278954537, 34.61947240005365], [-77.16967842754836, 34.616508345459366], [-77.17069651155825, 34.61625225249662], [-77.17173384892759, 34.615838296101515], [-77.17924384421791, 34.61333812512291], [-77.18008923544531, 34.6127300885914], [-77.18461038928726, 34.6102809784648], [-77.18603846663318, 34.609430666759685], [-77.18629552797778, 34.6090923025595], [-77.18700761765207, 34.60895394358331], [-77.18866491637336, 34.60876592473666], [-77.19131371567155, 34.608298202362505], [-77.1939637209861, 34.6067855797756], [-77.19462958434042, 34.60634024644111], [-77.19488976120572, 34.60622008791677], [-77.19517864828788, 34.60614707352007], [-77.1972162304516, 34.605569787608545], [-77.20311215921018, 34.603807169222094], [-77.20373356275802, 34.603569972746314], [-77.2046671115952, 34.603363713475304], [-77.20860196140006, 34.60264231188999], [-77.21097847132673, 34.60159845081918], [-77.21250878671164, 34.600858741785316], [-77.21345988164742, 34.60028808732168], [-77.21462191450517, 34.59906183269917], [-77.21515696159427, 34.59795499583356], [-77.214906467198, 34.59663145927298], [-77.21807832628333, 34.59529450684199], [-77.21838083881212, 34.59471712389823], [-77.21918473603472, 34.593198628363574], [-77.22002595228636, 34.59176748442716], [-77.22024033371495, 34.59139656175396], [-77.22074952565286, 34.59089224260137], [-77.2217511549548, 34.58963044881726], [-77.22251871747912, 34.5887257522358], [-77.22447722009142, 34.58826814052661], [-77.22726849218081, 34.587692802317065], [-77.2282531658368, 34.587471740404595], [-77.23043504746377, 34.586545220656575], [-77.23124472027942, 34.58597142117286], [-77.23274572525578, 34.5852596466177], [-77.23522304715897, 34.584251935578244], [-77.23706130758872, 34.58339657792406], [-77.23721356925425, 34.58330919248705], [-77.2389253096625, 34.5822868404819], [-77.24081991040967, 34.58170816743953], [-77.24150297273749, 34.58128382996934], [-77.24295412042039, 34.580612355062634], [-77.24399611570018, 34.58007314689925], [-77.24594894767407, 34.579161958866806], [-77.24665037726906, 34.57864200277818], [-77.24724536362781, 34.57844382133794], [-77.2481648202343, 34.5776929360487], [-77.24952472409119, 34.57673801673575], [-77.249987006471, 34.57635175695719], [-77.25114544666042, 34.575556197790775], [-77.25341024256699, 34.57413863775707], [-77.25552688954963, 34.57356047466966], [-77.2556439843849, 34.57349661072697], [-77.25576221810338, 34.57345850896316], [-77.25586717169234, 34.573339111552265], [-77.25714677594807, 34.572204318610176], [-77.25734359164102, 34.57169762788661], [-77.258098604151, 34.57103373841348], [-77.25914725535299, 34.5699542353979], [-77.25976412047558, 34.56927443655625], [-77.26181405563219, 34.567796524428424], [-77.26301350512213, 34.56690691762679], [-77.26367640940387, 34.566539932692784], [-77.26552679548239, 34.5653119154627], [-77.26615591529662, 34.564849644657144], [-77.26643147571849, 34.564689448293024], [-77.26753193180794, 34.56315641947124], [-77.267596974744, 34.56307764844036], [-77.26791093656414, 34.562703158559394], [-77.26965037183285, 34.560054844149576], [-77.27052573497859, 34.55937032884886], [-77.27091611707299, 34.55909905593255], [-77.2713385908754, 34.558927042982155], [-77.27656132987812, 34.55590716418497], [-77.27749997310383, 34.555418289897815], [-77.28067335783443, 34.552468176109464], [-77.28085804673493, 34.552307184103576], [-77.28142917431171, 34.55163522539148], [-77.28369976701171, 34.548866670365044], [-77.28392556075214, 34.5486105494082], [-77.28416190195671, 34.54843043434962], [-77.28720296097036, 34.54493035459747], [-77.2877530332316, 34.54466537731337], [-77.29076717026497, 34.54378529643367], [-77.29539152526475, 34.5435017270558], [-77.29707490929982, 34.54268227414918], [-77.29987831662329, 34.541712522328666], [-77.30055039881155, 34.541647239897635], [-77.3033973402352, 34.54094753549669], [-77.3049211806875, 34.54019413210428], [-77.3050837220482, 34.54015021626683], [-77.30657308856223, 34.539457815678794], [-77.30697029467038, 34.53920479174552], [-77.30727299315167, 34.53891734994838], [-77.30784270608129, 34.53764218285002], [-77.30978942839428, 34.53623482181103], [-77.31125138108115, 34.535327589081625], [-77.31355737185447, 34.53409797653233], [-77.31455343410616, 34.532961061527566], [-77.31487911081743, 34.530813334914484], [-77.31450019516996, 34.530045624874624], [-77.31308946690314, 34.52943206557815], [-77.31175461244129, 34.52931567113643], [-77.30993939111792, 34.529850082783895], [-77.30849095919831, 34.529853429168845], [-77.3082644520461, 34.52989723762508], [-77.30678657931931, 34.53038278210234], [-77.30441032062974, 34.531494451970765], [-77.30428599078212, 34.53193405276287], [-77.30358573269109, 34.532952066801855], [-77.30211009160986, 34.53286149791642], [-77.30200575356947, 34.53282677222089], [-77.30199173836223, 34.53280382859582], [-77.30144955221039, 34.5319194333838], [-77.30115841947372, 34.53153732056713], [-77.30049945094396, 34.530658581361905], [-77.30022931872526, 34.53030970482656], [-77.29984864287636, 34.52977180254148], [-77.29880157226245, 34.52838254872667], [-77.29840042892235, 34.527832357756154], [-77.29802040734049, 34.52689312094367], [-77.29819121829097, 34.5265116939574], [-77.29859929241452, 34.52518749390929], [-77.29930280048956, 34.52439369914927], [-77.30049618579156, 34.52213645660284], [-77.30305488535588, 34.51993826185939], [-77.30391787585202, 34.518856618968286], [-77.3055330744154, 34.51958247476455], [-77.30904802784896, 34.5197812705878], [-77.31012650359962, 34.521884017678865], [-77.31047679116081, 34.522561157393525], [-77.31392073137391, 34.52229489202699], [-77.31160401347253, 34.52357396492074], [-77.31254312730165, 34.52445127699489], [-77.31290757752608, 34.52458329550693], [-77.31318244365545, 34.525467320148636], [-77.31382800017629, 34.52465751808805], [-77.31639305850166, 34.52245571042177], [-77.31677057126082, 34.522116044464994], [-77.32204377419345, 34.52153373901308], [-77.32268422591376, 34.52197537628744], [-77.32312438835869, 34.52123633907152], [-77.3255746456765, 34.520793199549686], [-77.32585412414073, 34.52069014026683], [-77.32610932344086, 34.5207028844168], [-77.32836178274079, 34.52061516022907], [-77.32899417592273, 34.520683425128595], [-77.33001386470684, 34.520617268418576], [-77.3305661306215, 34.52059697495212], [-77.33125154035078, 34.52035941352717], [-77.33113538873299, 34.52080019903351], [-77.33156818483508, 34.521085118969914], [-77.33212900967094, 34.52090106174208], [-77.33248932076548, 34.520829219978474], [-77.33336166085972, 34.520693464440036], [-77.33370531353563, 34.520627100915604], [-77.33396514486954, 34.5205543015871], [-77.3343345996159, 34.52034014864641], [-77.3352947225965, 34.51978747500098], [-77.33587202478493, 34.519495647064225], [-77.33687976460277, 34.51913489630383], [-77.33702345843326, 34.519062741229966], [-77.33727107596152, 34.51893853258999], [-77.33798531850013, 34.518537511502686], [-77.33847025237617, 34.51824596733968], [-77.3393292646881, 34.518108600926666], [-77.34004767170916, 34.51792045719621], [-77.34064182698201, 34.51784387586408], [-77.34162159488821, 34.517745603237195], [-77.34266149816547, 34.51751763834112], [-77.34386371979733, 34.5174255031741], [-77.34477286325165, 34.5172465378829], [-77.347058489661, 34.51699384997121], [-77.3479197391342, 34.51693620845599], [-77.34875167265099, 34.516769981866524], [-77.35320156604112, 34.516010387548945], [-77.35423047869634, 34.51557188580804], [-77.35582812493959, 34.51527534306423], [-77.35738772130962, 34.51480424086304], [-77.35837462964778, 34.514554548349864], [-77.36001629747368, 34.51370599545678], [-77.36055915005502, 34.513414021325325], [-77.36248494094846, 34.51258129534369], [-77.36373093307462, 34.512003453643864], [-77.36456926152772, 34.51160886948004], [-77.3648949250901, 34.51104456345054], [-77.36560423719979, 34.51012568300694], [-77.36693807424857, 34.50903818166404], [-77.36986774884755, 34.50850769915256], [-77.370091717056, 34.508411596406226], [-77.37021523430354, 34.508396096471586], [-77.3708182923474, 34.508232326539115], [-77.37325585591446, 34.507321100078954], [-77.37504627985712, 34.5067734926759], [-77.37640623720769, 34.50683269572261], [-77.3776623966638, 34.50646704858879], [-77.37957192910672, 34.50566686907034], [-77.38054505982011, 34.50547574078977], [-77.382663442211, 34.50461042028001], [-77.3827358855531, 34.504573579056625], [-77.38275019597748, 34.50456199292886], [-77.38283937764584, 34.504540362579355], [-77.38481407059832, 34.50357948172329], [-77.38590937049722, 34.50305458465424], [-77.38687010900978, 34.502593175920424], [-77.38870405707542, 34.5017355997721], [-77.38895205413037, 34.5016194556437], [-77.38927089833709, 34.501536383796775], [-77.39225139295823, 34.50022028089566], [-77.39336742997064, 34.499794326323396], [-77.3951616326706, 34.49900471660266], [-77.39542092254122, 34.498861514722755], [-77.3955626333323, 34.49878704435797], [-77.39756720478942, 34.49786426475448], [-77.3985945719376, 34.497314346265256], [-77.40144611909659, 34.49617409195296], [-77.40176150183663, 34.49606162700963], [-77.40199565612906, 34.496045396102566], [-77.40238782106701, 34.49584286440123], [-77.40492977903308, 34.49474418603755], [-77.40637319078095, 34.494201706165235], [-77.40749610783243, 34.493643112585424], [-77.40766851849597, 34.493579702366766], [-77.40872140623446, 34.49296685696983], [-77.41000979860601, 34.49229033532401], [-77.41112609781146, 34.49175948170073], [-77.41248869381332, 34.491505624168674], [-77.41272885324427, 34.49135053335764], [-77.41299092149524, 34.4912222218055], [-77.41395936676896, 34.49076053375154], [-77.41486837219402, 34.49035741426149], [-77.41524807921637, 34.490198833088684], [-77.41585137945098, 34.490017483439644], [-77.41607296873754, 34.48983746984875], [-77.4165763301295, 34.489656358968126], [-77.4169839991605, 34.48939986843622], [-77.41727258530257, 34.48929931842873], [-77.4176295765702, 34.488980144190705], [-77.4179739606039, 34.48877494395652], [-77.41822200664937, 34.48807983400873], [-77.41954457118906, 34.48775690230781], [-77.4199351460494, 34.48752412979689], [-77.42063607611914, 34.486876980945944], [-77.42189616392785, 34.48650642750728], [-77.42241841616298, 34.48629996878273], [-77.42295209995996, 34.48562644333049], [-77.42422582302119, 34.485175820650426], [-77.4243221753596, 34.485104300557474], [-77.42440219689108, 34.48505024953386], [-77.42509534979838, 34.484291891453886], [-77.42587798982814, 34.48377452664171], [-77.42885774505763, 34.48241493733188], [-77.43030639966027, 34.48207229421799], [-77.4313709816621, 34.481757420446726], [-77.43187611152679, 34.481647180628315], [-77.43277003907704, 34.48142424442086], [-77.43342333605658, 34.48121110459232], [-77.43390170529477, 34.48116402860587], [-77.43534488021818, 34.480204528181304], [-77.43577843981726, 34.479979516458435], [-77.43618711201076, 34.47967243601886], [-77.4375857826823, 34.47896773699741], [-77.43788263299497, 34.47862593045528], [-77.43851274533974, 34.47832838325478], [-77.44059132032268, 34.478038251527664], [-77.44108670693394, 34.47789375709519], [-77.44119596965773, 34.47786013575115], [-77.44184826366907, 34.477833943738545], [-77.44237302099702, 34.4776740159197], [-77.44249361496716, 34.477302695728774], [-77.44347705364022, 34.4767870099266], [-77.44360820679807, 34.4766562727618], [-77.44394680391876, 34.476589793468705], [-77.44505782443622, 34.47617269578093], [-77.44600029939349, 34.476166919883454], [-77.44630476908144, 34.47603435857697], [-77.44648616664267, 34.475678768816], [-77.44672963598458, 34.4753804582293], [-77.44817575227975, 34.47427399708504], [-77.44829565269512, 34.47418192020008], [-77.44856920782011, 34.47412305975648], [-77.4498835926054, 34.47376555320456], [-77.4507037626748, 34.473671673393255], [-77.4510101461552, 34.47357176643615], [-77.45131232837856, 34.47327179931859], [-77.45196461879418, 34.472944799683965], [-77.45307060461765, 34.47247966879809], [-77.45366354087047, 34.472038222210045], [-77.45477721735713, 34.471736820886534], [-77.45547989164666, 34.471443187684216], [-77.45622362441254, 34.47090615094689], [-77.45783927648228, 34.47022429128797], [-77.45885705740716, 34.46980970838654], [-77.46029772549745, 34.46936806155257], [-77.46039725844287, 34.46932043202451], [-77.46156353568708, 34.46874875878043], [-77.46265033035078, 34.46812478079159], [-77.46271606730011, 34.46808719971347], [-77.46387201154535, 34.467494377598975], [-77.46442885997574, 34.46714770995751], [-77.46487560174289, 34.46684584118917], [-77.46492456960303, 34.4668177772607], [-77.46497633434952, 34.466784421688544], [-77.46573622393778, 34.46602410649], [-77.46722042975267, 34.46561385636517], [-77.46733324731052, 34.4655573437913], [-77.46756094191193, 34.465510450736495], [-77.46877463005698, 34.465124392109125], [-77.4697830789086, 34.46467028107645], [-77.47020372514908, 34.46441422556366], [-77.47079847373568, 34.46373167952229], [-77.47210586271191, 34.46331880801162], [-77.47206173885613, 34.46315746468277], [-77.47168708061412, 34.46178743737753], [-77.47157914216686, 34.46139271235406], [-77.47116589178715, 34.461534198118045], [-77.47109633735826, 34.46175746341786], [-77.46976390643854, 34.46279289656505], [-77.4694202954929, 34.463023451647594], [-77.4693721153142, 34.463038666876976], [-77.46934532824163, 34.46306940828729], [-77.46897349304592, 34.46320612230918], [-77.46683851342088, 34.463747878216296], [-77.46636394637676, 34.463953049307285], [-77.46612726518195, 34.46420732606824], [-77.46448987700371, 34.46500507749665], [-77.46408261646616, 34.46522060546328], [-77.46396020398419, 34.46544832113628], [-77.4633753075787, 34.46585232035062], [-77.4630593527755, 34.46591142796202], [-77.4621946220329, 34.46645776832933], [-77.46187166933743, 34.46652234737004], [-77.46139570930166, 34.466669072490866], [-77.45931886626205, 34.46765795802814], [-77.45900930777137, 34.467898852950455], [-77.45812116081439, 34.468264009548136], [-77.45742293989626, 34.468701039084195], [-77.4570001606524, 34.46890732359787], [-77.45634722642471, 34.46911455218734], [-77.45384250932288, 34.46974894396728], [-77.45318638986252, 34.470304859234346], [-77.45253721005176, 34.47052774129415], [-77.45114438967173, 34.47081387391991], [-77.44938837776766, 34.4714626240008], [-77.44832576203956, 34.47182021069233], [-77.4476734272022, 34.47243540180036], [-77.4453740411959, 34.472408329663615], [-77.44465235354113, 34.47241102611581], [-77.44222899744017, 34.47221790753189], [-77.43984956445635, 34.4724526584815], [-77.43942162998157, 34.47365703702605], [-77.43948336235049, 34.47465114924055], [-77.4377686260996, 34.47560370463255], [-77.43710223693591, 34.47587003866457], [-77.43685022275857, 34.47622807362657], [-77.43476882927283, 34.47711215603939], [-77.43312029436919, 34.47830230161435], [-77.43275257104852, 34.47850844518646], [-77.4320103907394, 34.47868330984369], [-77.42949452925552, 34.479300961056104], [-77.42812195441519, 34.47971972348527], [-77.42613020340629, 34.4800417044244], [-77.42561160459476, 34.48105874314203], [-77.42334483360304, 34.4819481412962], [-77.42063284279828, 34.48212188826166], [-77.41951964043312, 34.483449583059624], [-77.41902402688947, 34.483716329376584], [-77.41859583914362, 34.484280412413625], [-77.41725668253329, 34.48523362527514], [-77.41623655206132, 34.48550261519304], [-77.41471859077441, 34.48528726132523], [-77.41329656731261, 34.48459657871655], [-77.41063186775853, 34.48569700943729], [-77.40939957108282, 34.48616596547531], [-77.40848081829941, 34.486685396975496], [-77.40444758844349, 34.4880824444083], [-77.40413006039454, 34.48835671398676], [-77.40356981147846, 34.48842566711443], [-77.40068623751196, 34.489480777117365], [-77.3985084132359, 34.489614938371396], [-77.39837579735229, 34.490311534042675], [-77.39814466240225, 34.490579506695504], [-77.39835903796802, 34.49078696095978], [-77.39715991476385, 34.4936930688031], [-77.39494769373539, 34.49495841192262], [-77.39330726912834, 34.49579189872914], [-77.39233592817382, 34.4964659055582], [-77.3907174030877, 34.496577431666864], [-77.3899832420596, 34.49567496600709], [-77.38675540927856, 34.492604064814444], [-77.38647205063074, 34.492264340894344], [-77.386445826407, 34.49208795343166], [-77.38589235647363, 34.492184111811305], [-77.38501844975639, 34.49316933387094], [-77.38122800807737, 34.49693816008033], [-77.38055480648552, 34.497533532871415], [-77.37974422365768, 34.49806541532945], [-77.37884939413124, 34.49784271253206], [-77.37773314609433, 34.497442143900265], [-77.37142134997592, 34.49574393871825], [-77.36721762474379, 34.49678577911251], [-77.36520563252202, 34.49801014832382], [-77.3617286492844, 34.49922209989748], [-77.36089022673573, 34.49895054771719], [-77.35867002750226, 34.50018971897856], [-77.35677820471587, 34.501855244889605], [-77.3544928481937, 34.5041471902313], [-77.35007913458377, 34.506541809220046], [-77.34868097035661, 34.50946231323786], [-77.34563240689411, 34.51232514491879], [-77.34171661333289, 34.51363481443871], [-77.34079427608933, 34.5139436687076], [-77.33915495462406, 34.514750442308], [-77.33854810491839, 34.514883267882624], [-77.33845118221646, 34.51485169206787], [-77.33780592097845, 34.513469362804194], [-77.33548229615425, 34.511698748890275], [-77.33523388271634, 34.51155445329377], [-77.33471315048415, 34.51147228546167], [-77.33266335865585, 34.50963831501255], [-77.32925887837223, 34.5093055969741], [-77.32867381185702, 34.508796106203484], [-77.32779897401933, 34.5085494908829], [-77.32535538723695, 34.50744587664695], [-77.32304412385068, 34.506555580680704], [-77.31981124676184, 34.50769743604766], [-77.31669391224521, 34.50960691761186], [-77.3114017143434, 34.51154988431084], [-77.31036445478057, 34.51175408112657], [-77.30988023547349, 34.511431150863366], [-77.30410651466899, 34.51085171146414], [-77.29892902464559, 34.51342174316203], [-77.29232780740195, 34.5169837500165], [-77.29139460484916, 34.51732647068806], [-77.28960449893364, 34.51755602597705], [-77.28517400762802, 34.52092860952176], [-77.28480653813955, 34.52133446583717], [-77.28427835435463, 34.52501281772566], [-77.28432235722796, 34.52525333685974], [-77.27807641020192, 34.53126688039434], [-77.27603524908261, 34.53079162551988], [-77.27258874460286, 34.53135765340315], [-77.27209099586182, 34.531312044754685], [-77.27158248189417, 34.53127033730824], [-77.27022254470982, 34.531782978142594], [-77.26830494713408, 34.5325461567449], [-77.26725626800655, 34.53281353888489], [-77.26519846286719, 34.53335645896774], [-77.26607869460737, 34.534111134222144], [-77.26655360577392, 34.53449664804239], [-77.26794245932072, 34.53554124602889], [-77.26807409410877, 34.535646489410986], [-77.26766230096024, 34.536192431129514], [-77.26681611482115, 34.53824126567958], [-77.26559487751307, 34.53929416981044], [-77.26488793263684, 34.53962342935007], [-77.2635116660131, 34.541900285010826], [-77.26437945022187, 34.54313618963791], [-77.26422040817462, 34.54347229872567], [-77.26478597274233, 34.54386762570217], [-77.26655155401129, 34.5450689336279], [-77.26819464248308, 34.54528677243675], [-77.26958024452279, 34.547483029086315], [-77.26801383178187, 34.55111040570682], [-77.26648200345628, 34.55393976913359], [-77.26550428330746, 34.55503769803932], [-77.26448316285607, 34.55647290026994], [-77.26227388810976, 34.56000880192559], [-77.26294400211617, 34.56052189630391], [-77.26357959372578, 34.56127060079087], [-77.26330306062893, 34.562039518508506], [-77.26339896027963, 34.56233480191004], [-77.26296935350871, 34.5627135909559], [-77.26260954878879, 34.56289109527298], [-77.2618003199076, 34.56319870352934], [-77.26031226874676, 34.56410055247521], [-77.26005542440114, 34.56427545857128], [-77.25971709260864, 34.56434299163514], [-77.256121328391, 34.56572107947943], [-77.25577669086077, 34.565727106128335], [-77.25533320915403, 34.56588320495685], [-77.25526555735203, 34.56621632861516], [-77.2519381619964, 34.569386553726765], [-77.25212920482001, 34.57033013514331], [-77.25051472180225, 34.57156258389061], [-77.24714391623823, 34.57277961720159], [-77.24670545848615, 34.57343212463826], [-77.24523636070268, 34.57390716926908], [-77.24136127129425, 34.573935844424874], [-77.23792996531145, 34.575823840618455], [-77.23484245291682, 34.578653692676006], [-77.23362602861215, 34.57925527812979], [-77.23091565903283, 34.58041882457399], [-77.22798958878747, 34.581332051578194], [-77.22643451167258, 34.58169054268779], [-77.22565667818745, 34.582397067417475], [-77.22532688180564, 34.58330200780492], [-77.22580768008757, 34.584294470073466], [-77.22604627092207, 34.585169814543164], [-77.22677729865121, 34.58462567961917], [-77.22867919323832, 34.584986546031274], [-77.22773975332717, 34.58548223146165], [-77.22569483071547, 34.586171014202414], [-77.2255859781368, 34.58619545190222], [-77.22552000458708, 34.5862090503988], [-77.22523241263096, 34.586276247371515], [-77.22184011245287, 34.58681578176817], [-77.22092155382937, 34.58730424821149], [-77.22001067987088, 34.58760748743592], [-77.21957040418536, 34.58839452350749], [-77.21860892033331, 34.58938219445818], [-77.2186993699449, 34.59018978630637], [-77.21851994200335, 34.590427094916116], [-77.2179282185903, 34.591209663859416], [-77.21792437220935, 34.59121358012431], [-77.2179247509093, 34.59121424992854], [-77.21737670544148, 34.59203980132624], [-77.21721408916709, 34.592100183879836], [-77.21674142300711, 34.59239157117414], [-77.21577713481425, 34.59292935151611], [-77.215661030371, 34.593143020245726], [-77.21514424186185, 34.59337618517019], [-77.21410894109874, 34.59337619087252], [-77.21177118191311, 34.59337621495213], [-77.21007615829312, 34.59343258337272], [-77.20858702053776, 34.59544131331975], [-77.20813499004225, 34.596096060274014], [-77.2081706843996, 34.59699739717048], [-77.20676777680704, 34.59906026970992], [-77.20675991358118, 34.59975829412698], [-77.20552397333603, 34.59990251311883], [-77.20505860057816, 34.599966481568934], [-77.20288477392904, 34.60051212597013], [-77.20125209628796, 34.60082090204505], [-77.20086375692979, 34.601015283501845], [-77.19987065610218, 34.60109865412282], [-77.19760140461352, 34.60136764028553], [-77.19534954765518, 34.60136764860812], [-77.19149742601167, 34.602321078833334], [-77.19072876415262, 34.60251535329337], [-77.1901326034009, 34.602790680602425], [-77.18529693797171, 34.60414760609798], [-77.18224408606888, 34.60504040107838], [-77.18176399806421, 34.605057120115745], [-77.18169327985544, 34.60531507834534], [-77.18159123608174, 34.60553239598546], [-77.17948583426937, 34.6082909645684], [-77.17930578083528, 34.608896852436594], [-77.17772298947688, 34.60991597988493], [-77.17640149138464, 34.61080698769017], [-77.17511418254928, 34.61089057764221], [-77.17253641054775, 34.610874941120585], [-77.1699984629862, 34.61036736608553], [-77.16737361767383, 34.61172100162369], [-77.1661849616254, 34.61223398391474], [-77.1639782702281, 34.614440660081904], [-77.16322106178758, 34.61516240725311], [-77.15935199211063, 34.6166747015688], [-77.1617573144232, 34.61881734175802]], [[-77.27744906996921, 34.53659220048712], [-77.27755264341374, 34.53629705792616], [-77.27797116947693, 34.53567601595087], [-77.28002934095568, 34.532554087216894], [-77.2799514370505, 34.53140894072879], [-77.2847125351098, 34.52528546151291], [-77.28590574170066, 34.52514065089559], [-77.29135158929492, 34.519140334063486], [-77.29239689864643, 34.52465111006002], [-77.29212790974742, 34.52542318909296], [-77.29243056546181, 34.52615647111275], [-77.293023511088, 34.52803728237754], [-77.29356693185764, 34.529133630663345], [-77.2942345918826, 34.529990927342695], [-77.29458597718411, 34.53071602244042], [-77.29513059634823, 34.53144801957624], [-77.29525260882967, 34.532808635921626], [-77.29487631172763, 34.53529959043251], [-77.29226497486054, 34.537154100062644], [-77.29090808460414, 34.53784263766549], [-77.28761895390164, 34.53906447578447], [-77.2852811906193, 34.53973538249041], [-77.28436918048448, 34.53971750639255], [-77.28266981032337, 34.53878667106294], [-77.28260945440385, 34.53778915050383], [-77.28052378216825, 34.537325031287125], [-77.28012962406423, 34.53713851039184], [-77.27794983032936, 34.536570042660195], [-77.27777438034724, 34.53652844471971]], [[-77.35163047843676, 34.49140045125625], [-77.35161328663867, 34.49141314801858], [-77.35163616787331, 34.49141629689487], [-77.35165627017825, 34.49141301182714], [-77.35165953611369, 34.491398604062034]], [[-77.27445551566367, 34.54690978861579], [-77.27231388564755, 34.54702589450052], [-77.2744952500803, 34.54524769279966], [-77.27683987736995, 34.54467192593351]], [[-77.23324379913487, 34.566711690793085], [-77.23304824672702, 34.567187257099036], [-77.2336584184903, 34.567080732744], [-77.2336873883077, 34.56694802116336]], [[-77.28287842022738, 34.517027643826026], [-77.28296883143486, 34.51740825059819], [-77.28394383116024, 34.5171113694809], [-77.28375605787906, 34.516540330153255]], [[-77.3998650222503, 34.578387483756494], [-77.3997870146419, 34.57845605371863], [-77.39969620635634, 34.57850969364107], [-77.39959000568074, 34.578572425846566], [-77.39954602217338, 34.57859840659334], [-77.39943985138895, 34.57866112071632], [-77.39939299501009, 34.578722022576294], [-77.39934302634431, 34.578728936103616], [-77.3992490021748, 34.57874578466668], [-77.39927315542937, 34.578791317081105], [-77.39927483639617, 34.57881225131632], [-77.39929448785372, 34.578840164698875], [-77.39931987229528, 34.57889071971647], [-77.39929448505998, 34.578918225541855], [-77.3992605571075, 34.578968864259906], [-77.39921329941444, 34.57899357695622], [-77.39919597876799, 34.5790032164725], [-77.39918292136824, 34.579002553723264], [-77.39912011753776, 34.579001287731835], [-77.39909747651215, 34.578976863154054], [-77.39907126952599, 34.579004495572846], [-77.39904822341269, 34.57901521682065], [-77.39903287760191, 34.579038273641885], [-77.39901698420323, 34.57905997827143], [-77.39899896921857, 34.57908037930347], [-77.39896238626125, 34.5791151692444], [-77.39894971563822, 34.57912816934857], [-77.39890832931883, 34.579153911346005], [-77.39890046272194, 34.57915810810249], [-77.39889678195634, 34.57916008788037], [-77.39887697072544, 34.5791669125453], [-77.39881226880959, 34.57918735864759], [-77.39880195802918, 34.57918789734819], [-77.39878675138257, 34.579196315697835], [-77.39875270535683, 34.57920987631965], [-77.39873083313566, 34.57921156678658], [-77.39872544590688, 34.5792124736894], [-77.39872331724018, 34.579215618534384], [-77.39870345270523, 34.57923073670818], [-77.39869525683176, 34.57922849889135], [-77.39868794462896, 34.57923054726799], [-77.39867882620004, 34.579245126534126], [-77.39866805466282, 34.579250127976124], [-77.39865608049055, 34.57925388208802], [-77.39865419988908, 34.57925482004315], [-77.3986506258336, 34.579256493875], [-77.3986150293099, 34.57926864249099], [-77.3986049476008, 34.57926617651448], [-77.39856337876215, 34.5792735103126], [-77.39855569529567, 34.579277584937806], [-77.39853491864945, 34.57929172482933], [-77.39850644247817, 34.57930008382682], [-77.39848281780233, 34.57930446971204], [-77.39840793826748, 34.57931236858927], [-77.39834651483396, 34.57930963670891], [-77.39821214801135, 34.579264145023565], [-77.39821093328621, 34.579263861559554], [-77.39820864296264, 34.579263341785754], [-77.39812028436401, 34.57916148833527], [-77.39814325804795, 34.579060488873814], [-77.39816208774137, 34.57900512448905], [-77.39821094967886, 34.57892678663329], [-77.39823605748936, 34.57886186487356], [-77.39829378418723, 34.578826484106735], [-77.39830945815214, 34.5788162055863], [-77.39837764461741, 34.57878171461518], [-77.39840796379636, 34.578761044759794], [-77.39848656567347, 34.57871397258301], [-77.39850646928812, 34.57870620402787], [-77.39851793479158, 34.578700354008696], [-77.39853745531498, 34.57868518295045], [-77.39855572216577, 34.57867475246377], [-77.39857687574381, 34.57864921663325], [-77.39858496785128, 34.57864681477872], [-77.39860497421817, 34.57866112400127], [-77.39861862150089, 34.57865876611504], [-77.39865422638042, 34.578644583879885], [-77.39866320805359, 34.57865735970315], [-77.3986990422346, 34.57865708922986], [-77.39870347751568, 34.578651420892136], [-77.39871208175134, 34.57865071524185], [-77.39879069215412, 34.57863647991133], [-77.39880198114882, 34.57863304842374], [-77.39884613479926, 34.57864064472483], [-77.39889049548432, 34.578645006775275], [-77.39890048300927, 34.578657064725036], [-77.39891867876344, 34.57864978431917], [-77.39896269657234, 34.5786238262457], [-77.39899898787374, 34.578606339630916], [-77.39900722318649, 34.578608527355456], [-77.39902891651423, 34.57861427144944], [-77.39904823872128, 34.578620487144725], [-77.39905654289925, 34.578610285258165], [-77.39907828555076, 34.5785864523694], [-77.39909749241782, 34.57856078576444], [-77.39913047025246, 34.57856408224264], [-77.39915865056108, 34.578595552147576], [-77.3991700060775, 34.578621916196], [-77.39919599231288, 34.57863725294156], [-77.39920578631474, 34.57858875091113], [-77.39922202877877, 34.57850831471999], [-77.39923707570014, 34.578478092653135], [-77.39932762271779, 34.57839457190333], [-77.39935478124707, 34.578354965267174], [-77.39939300911811, 34.578317317248064], [-77.39940866249997, 34.57825791254176], [-77.39944226296242, 34.57824106562047], [-77.39944645972693, 34.57823559325328], [-77.39944753415416, 34.578229758543536], [-77.39945663695909, 34.578207588874655], [-77.39946157671741, 34.57820115073976], [-77.3994668902839, 34.57819032582364], [-77.39947051006831, 34.578182951517334], [-77.39947257053208, 34.57817875389235], [-77.39947497674211, 34.578173851906016], [-77.39947607513582, 34.57817161423251], [-77.399479203769, 34.578169794216514], [-77.39948145059917, 34.57816662562934], [-77.39948174202499, 34.578164162568505], [-77.39948228217915, 34.57816349376553], [-77.39948262780125, 34.57816366231699], [-77.39948475208664, 34.578163072745085], [-77.39948536041794, 34.57816221656747], [-77.39948555862337, 34.57816195336566], [-77.39948652100162, 34.578161406593985], [-77.39948689955273, 34.578161124615164], [-77.39948780858192, 34.57816064918184], [-77.39948843865491, 34.578160991105754], [-77.39948927681344, 34.57816066152842], [-77.39949151694302, 34.57815825554569], [-77.39949481493845, 34.578155642261606], [-77.39949581800998, 34.578153498101905], [-77.39949838735677, 34.57814849281535], [-77.39950383039283, 34.57813846006779], [-77.39950533049203, 34.578135839400204], [-77.3995062679314, 34.578134087760155], [-77.3995102827752, 34.57812719301981], [-77.39951178168491, 34.57812472454746], [-77.39951425476534, 34.57811966737156], [-77.3995142490871, 34.57811762641795], [-77.39951614393851, 34.578115651619015], [-77.39952410451582, 34.578100287797845], [-77.39954077060939, 34.578082045004905], [-77.39955997857079, 34.57808069591464], [-77.39957363968978, 34.578022609907045], [-77.39955992855937, 34.57800693339702], [-77.3995673503265, 34.577981428766876], [-77.39959002563839, 34.577961826245556], [-77.39976862582665, 34.57795698761509], [-77.39978703015294, 34.57794525675241], [-77.39981040344219, 34.57794560426673], [-77.39984328408684, 34.57796604635002], [-77.4000173618565, 34.57811729603198], [-77.4000254094777, 34.57819664588321]], [[-77.34919037049782, 34.551258056452184], [-77.34918563397954, 34.551257195905215], [-77.34917075929903, 34.551256370601806], [-77.34914848276742, 34.55125513461653], [-77.34914136872428, 34.551254739901765], [-77.3491275790443, 34.551253974794065], [-77.34911133155579, 34.5512530733162], [-77.34909241571805, 34.55124930406579], [-77.34907024937823, 34.55124023152923], [-77.34906619939736, 34.55122688062549], [-77.3490613544115, 34.551210908924745], [-77.34909447426165, 34.551159841568285], [-77.3491232539671, 34.55115872588837], [-77.34914347095525, 34.551163376450035], [-77.3491457761875, 34.551166673202786], [-77.34914684123571, 34.55116800466826], [-77.34914972198592, 34.55117160602584], [-77.3491604553873, 34.551185736709925], [-77.34916732698099, 34.5511930597087], [-77.34916952294583, 34.551195343324686], [-77.3491766425637, 34.55120365929116], [-77.34918013709292, 34.551217454972246], [-77.34918239156744, 34.55122409410123], [-77.34918072587604, 34.55123073961437], [-77.34919066882082, 34.55124509092951], [-77.34919387436797, 34.5512509612608], [-77.34919462522636, 34.55125293624991], [-77.34919593967037, 34.551256193015554]], [[-77.34591459849045, 34.53417436702663], [-77.34590364114948, 34.53419083495716], [-77.34590333943794, 34.53419128840341], [-77.3459032229807, 34.53419146342864], [-77.34590296504746, 34.53419164413653], [-77.34590276638784, 34.53419149687884], [-77.34590053426722, 34.53419169205455], [-77.34588029994616, 34.53419341261302], [-77.34587838520201, 34.53419362875964], [-77.3458698079388, 34.53418846280475], [-77.34586819247903, 34.534187489837926], [-77.34586628616918, 34.53418634169635], [-77.34585955488507, 34.534182287545185], [-77.34585709266304, 34.53418080458586], [-77.34585419082933, 34.53417889455036], [-77.34584954805388, 34.53417607685475], [-77.34585428212353, 34.53417493492961], [-77.3458560071527, 34.53417514742248], [-77.34586142992002, 34.53417752263843], [-77.34586651442427, 34.53417644173112], [-77.34586765619859, 34.5341765823773], [-77.34586957249952, 34.5341768184313], [-77.34586979917852, 34.53417684635409], [-77.34587033001775, 34.534176911743984], [-77.34587162350562, 34.53417735145143], [-77.3458726165454, 34.53417780362096], [-77.3458735624926, 34.53417702537744], [-77.34587290133308, 34.53417654174404], [-77.34587276361843, 34.534176488742276], [-77.34587264909985, 34.534176391653816], [-77.34587161168398, 34.534175770990345], [-77.34587137515223, 34.53417565383441], [-77.34587027819563, 34.53417500654489], [-77.34587020412906, 34.53417465439013], [-77.34586828709799, 34.5341733803982], [-77.34586831115526, 34.53417231569392], [-77.3458666641765, 34.53416994662153], [-77.34586309200148, 34.534166477323254], [-77.34586321130021, 34.53416109034771], [-77.34586252572385, 34.53415890818374], [-77.34586258613038, 34.53415615784741], [-77.3458659425344, 34.5341507658966], [-77.34586280229982, 34.534146315490865], [-77.34586286285418, 34.53414355842411], [-77.34586292349141, 34.534140797584094], [-77.34586716727352, 34.53413528841421], [-77.34586839119042, 34.53412700210171], [-77.34586869799774, 34.53411255951925], [-77.34588937137966, 34.53410149084824], [-77.34589958170238, 34.53407323191323], [-77.34589971231732, 34.534065558678854], [-77.34591424108511, 34.53406213931893], [-77.34594244945762, 34.53408636216079], [-77.3459499209607, 34.53409277802462], [-77.34595159244746, 34.53409421334912], [-77.3459542273368, 34.534096475956005], [-77.34598044390637, 34.534118988390844], [-77.34598894383315, 34.53412628736431], [-77.34598624059952, 34.53414875676294], [-77.34597211108085, 34.53416289864907], [-77.34595250939515, 34.534170990465334], [-77.34593223687014, 34.53416919691133], [-77.34592548989501, 34.534171253494335]], [[-77.39869161963904, 34.57821229961207], [-77.39870165366555, 34.578212367834624], [-77.3987034964412, 34.57821329103786], [-77.39871084670314, 34.57821697624158], [-77.39871830284427, 34.578218560442], [-77.39872241600376, 34.57822777419966], [-77.39870565130269, 34.57823401812244], [-77.39870349545336, 34.578236079943096], [-77.39870310190236, 34.57823628488451], [-77.39869428944448, 34.57823463275652], [-77.3986911828362, 34.57823194541551], [-77.39868898806894, 34.57822784268267], [-77.39868726723004, 34.578221505927914], [-77.3986911836658, 34.578212872704604]], [[-77.39940707986383, 34.5780602737293], [-77.39940660668256, 34.57805890965441], [-77.39940565211951, 34.578058701320714], [-77.39940533097027, 34.578058489999215], [-77.39940314638058, 34.578058446030056], [-77.39940225283733, 34.578056818000555], [-77.39940169357294, 34.5780563015981], [-77.39940225287675, 34.57805569490557], [-77.39940270214657, 34.57805332311653], [-77.39940485912828, 34.57805303649793], [-77.39940533116766, 34.57805285933261], [-77.39940570809001, 34.57805281150775], [-77.39940648688437, 34.5780527060982], [-77.39940687026495, 34.57805281394508], [-77.39940698636639, 34.578052925034505], [-77.39940725503388, 34.57805295655239], [-77.39940746461517, 34.578052981138775], [-77.39940762310269, 34.57805297627039], [-77.39940763980661, 34.57805299031711], [-77.39940799312978, 34.57805331950076], [-77.39940799998395, 34.57805334500305], [-77.3994080245649, 34.57805343661787], [-77.3994080832427, 34.57805365788296], [-77.3994081002412, 34.57805371866831], [-77.39940810853518, 34.57805380796987], [-77.3994081280214, 34.57805401777869], [-77.39940814461048, 34.57805412688912], [-77.39940815070017, 34.57805426196185], [-77.39940817623983, 34.57805453694823], [-77.39940823503017, 34.5780551699458], [-77.399408120776, 34.578055374197255], [-77.39940797125287, 34.57805586775139], [-77.39940840921246, 34.578057045372816], [-77.39940902573639, 34.578057896218425], [-77.39940966136149, 34.578058468885345], [-77.39940978042989, 34.57805992940372]], [[-77.32333697194943, 34.522900503899834], [-77.32404441220093, 34.523671909433574], [-77.32416351643298, 34.5237911191811], [-77.32421190761555, 34.52378902884395], [-77.32432395106278, 34.52380806980703], [-77.32499305484028, 34.523954501309674], [-77.32538748955183, 34.523585045148145], [-77.32500995159621, 34.5232296441527], [-77.32447356479565, 34.523556582356136], [-77.324888474238, 34.52308933358366], [-77.32452413769668, 34.52272988064772], [-77.32424358751425, 34.522430539132976]], [[-77.34505683242998, 34.53428856457524], [-77.3450656785624, 34.53432722498738], [-77.34507314807115, 34.534284183070376], [-77.34516625550208, 34.53422141839511], [-77.34518036268965, 34.53421217712494], [-77.34526507490001, 34.53419180576053], [-77.34526585460046, 34.534191210401524], [-77.34526623828991, 34.53419044913181], [-77.34526514693759, 34.53418868229478], [-77.34521476822448, 34.53416905832546], [-77.34516781638357, 34.53415374383684], [-77.34513935908313, 34.53419221717133], [-77.34514748852074, 34.53420824203063], [-77.34506203165425, 34.53427877175881]], [[-77.4001677214017, 34.57832946598539], [-77.40013199773607, 34.577977229283405], [-77.40007984040389, 34.57793191172264], [-77.39990869384624, 34.577825508936996], [-77.39978703388377, 34.577823700095344], [-77.39969123779707, 34.57788476023534], [-77.39959002808784, 34.577887502205485], [-77.39952600993075, 34.57794284509537], [-77.39950505639959, 34.578014851135556], [-77.39954376639858, 34.578059109899726], [-77.39954252152539, 34.578064403003054], [-77.39954077119465, 34.578064525939276], [-77.39952696506319, 34.57807963820279], [-77.39951280728728, 34.57806680448141], [-77.39949152037289, 34.578057334723745], [-77.39948243766415, 34.578061399474876], [-77.3994496325884, 34.578067985305736], [-77.39944226885005, 34.57807060366519], [-77.39943832039047, 34.57807329780707], [-77.39943263563376, 34.57807837274166], [-77.39943237456082, 34.57808907156229], [-77.39942937266437, 34.57811802047135], [-77.39942543148766, 34.57813248399373], [-77.39942879086931, 34.57814651995616], [-77.39943446028092, 34.578157717074504], [-77.39943746216655, 34.578178644260866], [-77.39942660739379, 34.578185386062756], [-77.39939981452272, 34.5781965808515], [-77.39939301325025, 34.57819942260572], [-77.39936159164846, 34.57821398056832], [-77.39931240972938, 34.57823564700885], [-77.39929450932128, 34.57824432809547], [-77.3992421230594, 34.5782650774548], [-77.39920659299732, 34.57828161285042], [-77.39919600538254, 34.5782865763117], [-77.39918287190038, 34.57828777908596], [-77.39909750166582, 34.57832036461667], [-77.39906656373779, 34.57832374671355], [-77.39904825022782, 34.578325700516096], [-77.39902892828928, 34.578328090498545], [-77.3990073892902, 34.57835201901463], [-77.3990008714002, 34.5783549783802], [-77.39899899761944, 34.57836032916034], [-77.39899667723523, 34.57835606521073], [-77.39897437197574, 34.57836074215331], [-77.3989588738459, 34.57835901926694], [-77.39895188844105, 34.578357719057436], [-77.39894974649866, 34.5783570093906], [-77.39894518805974, 34.5783560818901], [-77.39890049503691, 34.57836211958188], [-77.39886071312499, 34.5783833875329], [-77.39880199100833, 34.578398057548924], [-77.39877596340364, 34.57841043676708], [-77.39872548262485, 34.578422065107375], [-77.39870348723426, 34.57842603486216], [-77.39868090228086, 34.578423464126374], [-77.39867784083631, 34.57842500474965], [-77.39865423517881, 34.57844327366575], [-77.39863819890778, 34.57844108006145], [-77.39861394850001, 34.57845219891145], [-77.39860498330864, 34.578455854259914], [-77.39860041194501, 34.578458886667555], [-77.39858545613224, 34.57846597038781], [-77.39852283910211, 34.578492634242934], [-77.39850647845637, 34.57850441277042], [-77.39846215226211, 34.57853152439808], [-77.39840797295075, 34.578564466056434], [-77.39833723580459, 34.57860792806166], [-77.39825204091704, 34.578664484939125], [-77.39821096129445, 34.57868889327365], [-77.39801820338978, 34.578866245329074], [-77.3980163948552, 34.578869144860455], [-77.39794141324381, 34.57908961105128], [-77.39791624313918, 34.5792002666614], [-77.39791781824272, 34.579408855368584], [-77.39817170617161, 34.57943869735738], [-77.39821092438939, 34.57944759767283], [-77.3982299605775, 34.57945203989107], [-77.39830942802057, 34.57945174185895], [-77.39831706960325, 34.5794517502212], [-77.39837936843522, 34.57942021558408], [-77.39840793388322, 34.57940754517212], [-77.3984376147639, 34.579410608900055], [-77.39847702441263, 34.57940521117995], [-77.39850643822503, 34.57939482490474], [-77.39854281910895, 34.57938821046187], [-77.39856620085187, 34.5793822926438], [-77.39860494310548, 34.579368961093365], [-77.39860778260513, 34.579368027390494], [-77.39861730212812, 34.579363594189786], [-77.3986272523247, 34.57935966170493], [-77.39862956967065, 34.57935431617886], [-77.39864877743273, 34.57935905277792], [-77.39865372127592, 34.57935885035117], [-77.3986541953869, 34.57935915279919], [-77.39865477574014, 34.5793588126599], [-77.39865632901068, 34.579357963198], [-77.39867882196472, 34.579343931858524], [-77.39868472928066, 34.57933369461101], [-77.39868791687303, 34.579326869687975], [-77.39870344928744, 34.57931099044173], [-77.39871107030038, 34.57930520495475], [-77.39872043540458, 34.57930387453108], [-77.39872807544782, 34.579305092868], [-77.39874392487057, 34.57930171001293], [-77.3987527012903, 34.579306683321924], [-77.39879615099981, 34.57929096998606], [-77.39880195373466, 34.5792915515347], [-77.39880660343368, 34.5792882192062], [-77.39882345059958, 34.57928077820848], [-77.39888524350008, 34.579255466916536], [-77.39890045903661, 34.57924961581558], [-77.39893098607929, 34.5792323682665], [-77.39895904369719, 34.57921819753959], [-77.39899896401397, 34.57921335343192], [-77.39902444305054, 34.579198705798404], [-77.39903582720564, 34.5791837125363], [-77.3990482171216, 34.57917828210317], [-77.39907063546876, 34.57916788405308], [-77.3990974693584, 34.57916507440103], [-77.39915755425321, 34.57916782576001], [-77.39919597236263, 34.57917729518485], [-77.39925282886882, 34.579173946502706], [-77.39935686287458, 34.57909766922451], [-77.39938242340035, 34.5790826029445], [-77.39939298292485, 34.57907134437352], [-77.39949646957709, 34.57897674794027], [-77.39958761444782, 34.57885208637987], [-77.39968534268385, 34.57872843525134], [-77.39978700825617, 34.57866838199321], [-77.40015400719616, 34.578345783929535]], [[-77.34477138973556, 34.53390118281592], [-77.34478105898451, 34.533902843799744], [-77.344837641232, 34.53388559573656], [-77.34482725347483, 34.53379189458502], [-77.34480993728452, 34.533767172131434], [-77.34482250802573, 34.53374182924131], [-77.34478436904621, 34.53375936026286], [-77.34477343416873, 34.53376569581362], [-77.34474785961172, 34.53377610428526], [-77.34464056663302, 34.533825213638046], [-77.34460450699424, 34.53385793557938], [-77.34459818368033, 34.53386668033565], [-77.34462189718826, 34.53389362615172], [-77.34468240061348, 34.53390793274811], [-77.34468280339773, 34.53390802344895]], [[-77.34175688665863, 34.537637757447655], [-77.3417605676321, 34.53763335789178], [-77.34175106834036, 34.53762099858382], [-77.341682909458, 34.53760174528151], [-77.3417291062187, 34.537637883807406], [-77.34168864756828, 34.537666638073354], [-77.34169753095613, 34.53767503565758], [-77.34170507415034, 34.53767463454616], [-77.34175064355324, 34.53763938449141]], [[-77.34398044323203, 34.535233029087614], [-77.34399443621001, 34.53524944107849], [-77.34404240978616, 34.53529748701798], [-77.34411605589891, 34.535335927031156], [-77.34415849127691, 34.53536543579465], [-77.34420484867444, 34.53532315158563], [-77.344264589267, 34.53525675164906], [-77.34428614932618, 34.5352337338318], [-77.34433296664596, 34.53518230820132], [-77.34430478212768, 34.53509896198662], [-77.34424268996898, 34.53507288750582], [-77.34416590444883, 34.53504418709859], [-77.34410601128086, 34.535092552805835], [-77.34402980210203, 34.535142459635026], [-77.34398909405971, 34.535217155516165]], [[-77.34579377644991, 34.534169236262414], [-77.3458034459751, 34.53417506008146], [-77.34580518689388, 34.53417610861226], [-77.34582644417024, 34.534188911562666], [-77.3458444581792, 34.53419976113257], [-77.3458535830116, 34.534205256883006], [-77.3458708434394, 34.5342156525755], [-77.34588547040741, 34.53422446216927], [-77.34590197916258, 34.534234405133056], [-77.34595023490405, 34.534215142848886], [-77.34595090454083, 34.53421467370173], [-77.3459515237276, 34.53421374311719], [-77.34597314831888, 34.534181243199114], [-77.34599297921224, 34.53417305676313], [-77.34602246612324, 34.53414354404241], [-77.34602453817715, 34.5341263210379], [-77.34602810748213, 34.53409665261543], [-77.34601302145384, 34.534083698091415], [-77.3459907560773, 34.534064578604394], [-77.3459556576039, 34.534034439157374], [-77.34595340473658, 34.53403250459525], [-77.34587143826292, 34.534051795486214], [-77.34587070137688, 34.534095085321425], [-77.34586723613667, 34.5341046760073], [-77.34586021988103, 34.534108432558874], [-77.34585968546342, 34.534133589620005], [-77.34585926662675, 34.53413642527954], [-77.34585781436178, 34.53413831057293], [-77.34585768273017, 34.534144303818884], [-77.34585755127844, 34.534150288873825], [-77.34585863030412, 34.534151818091445], [-77.3458574769998, 34.53415367083628], [-77.34585734559887, 34.534159653578534], [-77.3458588369171, 34.53416440038874], [-77.34585877717186, 34.534167098206204], [-77.34586441276113, 34.534172571493514], [-77.34585436515208, 34.534171333807045], [-77.34584747887514, 34.534172994875284], [-77.34584212201604, 34.53417029698967], [-77.34584076845626, 34.53416968957101], [-77.34583303486538, 34.53416884013238], [-77.34582989651271, 34.5341684954233], [-77.34582198232582, 34.53416744178196], [-77.34580658527013, 34.53417376985555], [-77.34580522745598, 34.53417434939358]], [[-77.3422485654407, 34.537256112623744], [-77.34224422212938, 34.53726140823761], [-77.34217961972429, 34.53732825507681], [-77.34217567119478, 34.537344826416074], [-77.34218768715606, 34.537424854052226], [-77.3422567343029, 34.53743957072808], [-77.34234304423285, 34.537485391645376], [-77.342499502442, 34.53743027471327], [-77.34254762023637, 34.537401691044444], [-77.34255459340409, 34.53739672018019], [-77.34265333636236, 34.537328954657845], [-77.34274107206106, 34.53724868572566], [-77.34274197193665, 34.53724790360966], [-77.3427427248828, 34.537247245346315], [-77.34274792088098, 34.53724231827671], [-77.34281465556515, 34.53715908729554], [-77.34284141906201, 34.53715311397468], [-77.3428886053277, 34.53710384864191], [-77.34291067593664, 34.53708163116164], [-77.34292133690161, 34.53705077284903], [-77.34291763845681, 34.53703846698819], [-77.34288623147108, 34.53701699836705], [-77.34276091627807, 34.53700872932461], [-77.34274627203251, 34.53702350338511], [-77.34262308982363, 34.53714204706243], [-77.34273303724034, 34.537243554261835], [-77.34254563230405, 34.53721228963678], [-77.3424657363761, 34.53721447965976], [-77.34234848269202, 34.53724992926898], [-77.3422525538053, 34.53725510443251]], [[-77.34499890876808, 34.53296741078922], [-77.34500278335601, 34.533002050008676], [-77.34501785093376, 34.53300279677694], [-77.345007545971, 34.53301028320232], [-77.3450577461935, 34.53308113429869], [-77.3451538554142, 34.53308150569855], [-77.34519325396154, 34.533050860474496], [-77.34524974639696, 34.53300398820283], [-77.34525360122505, 34.53296887453657], [-77.3452750265433, 34.53291672115861], [-77.34528199912563, 34.53290358339467], [-77.34528417199064, 34.5328965499551], [-77.34529115338775, 34.53284106118066], [-77.34526326458956, 34.532804947232904], [-77.3452629041742, 34.5327839210928], [-77.34522452689743, 34.532773922641255], [-77.34521006425497, 34.53273627837914], [-77.3452053705787, 34.53273099475237], [-77.3452075318427, 34.532726445623936], [-77.34520088399405, 34.53272005085574], [-77.34516112564027, 34.53270675873637], [-77.34515419517645, 34.532706467922814], [-77.345145841238, 34.53270501495572], [-77.34510241375612, 34.532734598893875], [-77.34501381913574, 34.532752351801236], [-77.34502763898377, 34.5326953637196], [-77.34500538191536, 34.532686788082415], [-77.3449604453066, 34.532672065292196], [-77.34493903766877, 34.53266644201546], [-77.34495055320549, 34.53267955050754], [-77.3449774275058, 34.53270258863317], [-77.34499112890329, 34.532753898203424], [-77.34499715289557, 34.532760955289916], [-77.3449887245659, 34.532876924404945], [-77.34499064293924, 34.53288430186333], [-77.34499162887569, 34.532889816631226]], [[-77.3450742020195, 34.53316692752426], [-77.34507537891336, 34.533188465777954], [-77.34509156453768, 34.53320495664177], [-77.34511549913076, 34.53318703065132], [-77.34512921315475, 34.53314773024163]], [[-77.3490243448177, 34.55119820813117], [-77.34901145027513, 34.55121809017168], [-77.34901515890213, 34.5512303158174], [-77.34902383901769, 34.55125893023663], [-77.34906110432368, 34.55127215009748], [-77.34907629179628, 34.55127958419549], [-77.3490917332789, 34.551278962285224], [-77.34910970515162, 34.55127632488949], [-77.34914083232489, 34.55127805195461], [-77.34915689071295, 34.55127894293459], [-77.34918975254826, 34.55128491338607], [-77.3492283913162, 34.551271984913335], [-77.34921927173937, 34.551249389561626], [-77.34921406230417, 34.55123568714074], [-77.34921278082324, 34.55123334035959], [-77.34920159577956, 34.55122133057526], [-77.34920161752824, 34.55121493306535], [-77.34919618922953, 34.55119421836058], [-77.3491963662049, 34.55119148052496], [-77.34919575969224, 34.55118919533834], [-77.34919200415547, 34.55118705548603], [-77.34917789117195, 34.55117254485711], [-77.3491709221326, 34.55116453938237], [-77.34916993934937, 34.55116347631031], [-77.3491680588912, 34.551161250319744], [-77.34916236003721, 34.55115412592174], [-77.34915449782252, 34.551142882031755], [-77.3491501052663, 34.551136932372486], [-77.34914897117183, 34.55113408615562], [-77.3491442787936, 34.551128267620626], [-77.34912319592459, 34.55112341787829], [-77.34909545918852, 34.551117037527], [-77.34908196368426, 34.55111613545564], [-77.34905541539437, 34.55111436090526], [-77.34903274102616, 34.55111467949374], [-77.3489964611836, 34.551153627830175], [-77.34899271652532, 34.55115958079185], [-77.34899613928098, 34.551167616717436]], [[-77.39870349781798, 34.57818154490817], [-77.39870205299954, 34.57818223173567], [-77.39867887221692, 34.57818207412526], [-77.3986716381649, 34.578188177060625], [-77.39866377219815, 34.57819957732167], [-77.39866715844084, 34.57821535927225], [-77.39866909404208, 34.5782256146299], [-77.3986717790099, 34.57823358741598], [-77.39867411979618, 34.578240890689116], [-77.39867886929181, 34.57824908878544], [-77.3986846693977, 34.57825965384325], [-77.39869454808908, 34.578264479004915], [-77.39870349387853, 34.57827242996194], [-77.3987183276949, 34.57827159930669], [-77.39873965916206, 34.57827040479759], [-77.39875274551744, 34.57826236376656], [-77.39879070986247, 34.57822406823731], [-77.39875274860248, 34.57819020757495], [-77.39874777652103, 34.57818254941335], [-77.39871235748954, 34.57818230179515]], [[-77.34396346027569, 34.53033908430051], [-77.34396639931487, 34.53034708261967], [-77.34396898975132, 34.530368891132596], [-77.34397141633681, 34.53037345444124], [-77.34397654803496, 34.53038310483409], [-77.3439789650152, 34.53038765007585], [-77.34399103061926, 34.53038878065357], [-77.34400368071104, 34.530379734496684], [-77.34400395543551, 34.53037932682398], [-77.34400407892127, 34.530379143579346], [-77.34400440405837, 34.530378661097636], [-77.3440066696038, 34.53037288579635], [-77.34400950734583, 34.53037071190697], [-77.34401003146974, 34.53037031039499], [-77.3440118329668, 34.53036763709329], [-77.34401460275066, 34.53036615345453], [-77.3440162937523, 34.53036471969741], [-77.34401910133076, 34.53036341315304], [-77.34402448979019, 34.5303609055606], [-77.34402447725584, 34.53035826793003], [-77.34402572979673, 34.530347440018055], [-77.34402341004548, 34.53034575970243], [-77.34401568370907, 34.53033995772316], [-77.34399278370122, 34.53033486513305], [-77.34398684000547, 34.530331615339506], [-77.34398054447018, 34.53031921731686]], [[-77.39941764312252, 34.5780760880991], [-77.39942494457027, 34.57806621457455], [-77.3994207414494, 34.5780634828492], [-77.39941764357832, 34.578063026819066], [-77.39941463362715, 34.57806106840553], [-77.39941271927111, 34.57806001709211], [-77.39941148732372, 34.57805934053931], [-77.39941139585865, 34.578058218609364], [-77.39940987979487, 34.57805685271052], [-77.39940954923802, 34.57805639651923], [-77.39940932192613, 34.578055200879575], [-77.39940883352824, 34.578054814203874], [-77.39940840929027, 34.57805482331263], [-77.39940837996369, 34.57805450755228], [-77.39940837674877, 34.57805447293701], [-77.3994083597478, 34.5780540958463], [-77.39940835028361, 34.57805403359796], [-77.39940834838043, 34.57805389017502], [-77.39940831377815, 34.57805379220745], [-77.39940831375047, 34.57805379085071], [-77.39940831313302, 34.57805378855073], [-77.39940830239962, 34.57805368949825], [-77.39940828303286, 34.578053621078524], [-77.39940825938109, 34.5780535341184], [-77.3994082885221, 34.57805348418918], [-77.39940828748988, 34.578053408329154], [-77.39940821695379, 34.57805338154409], [-77.399408191623, 34.57805329085955], [-77.39940817105861, 34.57805313598018], [-77.39940802458176, 34.5780529554749], [-77.39940797326594, 34.57805290774399], [-77.39940778775389, 34.57805277509584], [-77.39940763981909, 34.57805263422818], [-77.3994073385602, 34.57805267469993], [-77.3994072550441, 34.57805266490249], [-77.39940720415713, 34.57805265893285], [-77.39940687028157, 34.57805233947045], [-77.39940680254574, 34.57805232041602], [-77.3994053871693, 34.57805251198674], [-77.3994053311796, 34.57805251909085], [-77.39940526106078, 34.57805254540777], [-77.39940229163945, 34.57805293998292], [-77.39940225296625, 34.57805314414675], [-77.39940050059568, 34.5780550449923], [-77.3993991747625, 34.57805349554139], [-77.39939355800503, 34.57805747550366], [-77.39939917453911, 34.57805985506105], [-77.39940089542193, 34.57806119630163], [-77.39940290306956, 34.578062761043974], [-77.39940533077376, 34.57806409664563], [-77.3994089743389, 34.578064592734535], [-77.39941100610162, 34.57806822580032]], [[-77.39938042296932, 34.57804640770172], [-77.39938566558754, 34.57805069102757], [-77.39938106227382, 34.578046010613825], [-77.3993808616605, 34.57804587169921], [-77.39937918996164, 34.578044647207896]], [[-77.34401833076802, 34.5303698300787], [-77.3440182725094, 34.530369581097794], [-77.34401809974239, 34.530369513917364], [-77.34401790906433, 34.53036962478369], [-77.3440179726442, 34.53036980800315]], [[-77.34401772511202, 34.53036913706525], [-77.34401779074621, 34.530369082037055], [-77.34401785857457, 34.53036903213375], [-77.34401772923357, 34.53036895848801], [-77.3440176410687, 34.53036906342942]]]]}, "type": "Feature", "id": "demo5", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16498669612761, 34.62169362296926], [-77.16759293100434, 34.62061855872905], [-77.1738360270186, 34.61904814514875], [-77.18019718850748, 34.61650968123487], [-77.18209579533607, 34.61587761137209], [-77.18430080596714, 34.61429168645048], [-77.18535520184736, 34.613517363949704], [-77.1861124475366, 34.61320761100839], [-77.18933647141259, 34.61179979578804], [-77.19250041770424, 34.611429803522554], [-77.19693386056082, 34.610293710178816], [-77.19847823152712, 34.60941462652213], [-77.20066312112226, 34.608639044487845], [-77.2026528932125, 34.60786932699088], [-77.20413026581531, 34.60709222539637], [-77.20662209100875, 34.606141068686384], [-77.20893564799849, 34.605629908949325], [-77.21295543834904, 34.604019134240225], [-77.21496717848767, 34.60304671827717], [-77.21759910989171, 34.60088710700713], [-77.21793644218933, 34.60064186456155], [-77.21803898143226, 34.60051996176575], [-77.21931224238254, 34.59730752969099], [-77.21924923908433, 34.596974639335535], [-77.21973574022287, 34.596769576984926], [-77.2214035097161, 34.593586430609506], [-77.22151150204121, 34.59338244201638], [-77.22162450765485, 34.59319018788622], [-77.22255546564274, 34.59157944469927], [-77.22304655493664, 34.59109305495484], [-77.22413438553761, 34.590163681574055], [-77.22540962909291, 34.58991938392617], [-77.22720080723462, 34.58954990495347], [-77.22899916748554, 34.5892329397239], [-77.23123923612334, 34.588235018675775], [-77.23275188332815, 34.58731258771779], [-77.23454603370443, 34.58686957820971], [-77.23702805791999, 34.585858047414334], [-77.23771289306404, 34.585233983962794], [-77.24021940223496, 34.58381967155138], [-77.2404686320982, 34.58366005413415], [-77.24067526127297, 34.58358217081025], [-77.24452795111144, 34.58201262158084], [-77.24455390476915, 34.582002523743604], [-77.24487650858728, 34.5818631962931], [-77.24826291245635, 34.580409393667615], [-77.24846694256222, 34.580258150126475], [-77.2488268503484, 34.580138269994144], [-77.250777007247, 34.578722051802046], [-77.25154289748029, 34.577735937965244], [-77.25322484766872, 34.57702946180731], [-77.25395701868243, 34.57666337027993], [-77.25527973687431, 34.57580175065239], [-77.2560237372904, 34.57536446333254], [-77.25715084272879, 34.574837073425094], [-77.2587268917037, 34.57389965081666], [-77.2589192121636, 34.5737810132338], [-77.25903805265584, 34.57371638331236], [-77.25922841170951, 34.573549863014065], [-77.26022330759054, 34.57231198019191], [-77.26059903772314, 34.57195386320206], [-77.26168969940264, 34.57098733033243], [-77.26297245266798, 34.57025526102098], [-77.26447663342043, 34.56919777020515], [-77.26506641566077, 34.56873302543761], [-77.26532793724276, 34.568555216916394], [-77.2660885612284, 34.56804082036744], [-77.26674076822484, 34.56759343733921], [-77.26783950136394, 34.56686740550692], [-77.26838862942387, 34.566430292917595], [-77.26964845893774, 34.56512432059204], [-77.27003368731685, 34.5648754271395], [-77.2715772288428, 34.56400882208963], [-77.2723054294475, 34.56371603993942], [-77.27265182290961, 34.563475108660825], [-77.2740963930165, 34.5619325277441], [-77.27455880900848, 34.56165619504351], [-77.27727434466797, 34.560040589077424], [-77.27739134196635, 34.559970004289546], [-77.27747272915907, 34.559916386313716], [-77.2782218720127, 34.559478908247556], [-77.28068682156805, 34.5579785217403], [-77.28108048388444, 34.557760073123035], [-77.28294309197196, 34.55640852321951], [-77.28400249523374, 34.55513134069073], [-77.28651228914627, 34.55368754310582], [-77.28729839530692, 34.553107148888266], [-77.28770711437384, 34.55284502242586], [-77.29058468708172, 34.55148126124132], [-77.29105226766976, 34.551326284980824], [-77.29216613569666, 34.551021845159276], [-77.29256035810145, 34.55082076384348], [-77.2930803709996, 34.550326710209546], [-77.29376098832273, 34.54999543140438], [-77.29581049211684, 34.54839612549674], [-77.29622644716024, 34.54788408881373], [-77.29696247455051, 34.54743907635408], [-77.29948579049487, 34.546312075708045], [-77.30013886995704, 34.545937541009806], [-77.30023729562483, 34.54586282714113], [-77.30036014391403, 34.54578492607869], [-77.30333144801872, 34.54374411717329], [-77.30365431083109, 34.543552220942644], [-77.30415873782876, 34.54328131611503], [-77.30555711150423, 34.54249157722308], [-77.30651865258241, 34.54177184758661], [-77.3071503153025, 34.54128009868659], [-77.30795759121219, 34.540777528823256], [-77.30891038524254, 34.540149925336394], [-77.30971460052828, 34.539420731682576], [-77.31046264035666, 34.53891850316228], [-77.3120511394185, 34.53823128381893], [-77.31289565760972, 34.53769683941987], [-77.31402004176394, 34.536676294611], [-77.3160574789813, 34.535697406681905], [-77.3160833728658, 34.535682751595274], [-77.31754363883479, 34.53441761969989], [-77.32007938644406, 34.533161086923116], [-77.32117186984945, 34.53220990914353], [-77.32246224292027, 34.5314869465331], [-77.32314457711145, 34.53118330562803], [-77.32296201268952, 34.53078841244792], [-77.32316193238228, 34.530339993535065], [-77.32348537444649, 34.52936187129557], [-77.32381529918271, 34.52870728084958], [-77.32390451233668, 34.52857230978867], [-77.32410354435963, 34.52843592379556], [-77.32443671005908, 34.527837813796], [-77.32457240285763, 34.52761921564539], [-77.32491252680366, 34.527085412431305], [-77.32491554357067, 34.52708027249954], [-77.32491606165097, 34.527077582504575], [-77.32492033614359, 34.52707411108796], [-77.32534969489919, 34.5265282440378], [-77.32546022746757, 34.526348919792724], [-77.32572684078484, 34.52615268910777], [-77.32620960215414, 34.52572020758848], [-77.32648742313756, 34.525385454868534], [-77.32653082751493, 34.525338614417265], [-77.32687253737731, 34.52504939669274], [-77.32733291577749, 34.52460541190015], [-77.3279777127291, 34.52419196629455], [-77.32846075045384, 34.52383554927572], [-77.32892754942404, 34.52354739319087], [-77.3302873303037, 34.52288066044205], [-77.33042960356732, 34.52280709181245], [-77.33051523321535, 34.52278658360342], [-77.3306225798373, 34.522765803006315], [-77.33209534065645, 34.52235067574419], [-77.33256923102331, 34.52225830216954], [-77.33315401300695, 34.52214658324038], [-77.33367105118258, 34.522103452869956], [-77.33431955767665, 34.521899295149275], [-77.334564553447, 34.52183985445317], [-77.33525327840324, 34.52157472887346], [-77.3358965954439, 34.52149488821429], [-77.33683103747956, 34.520964322880616], [-77.33683746253323, 34.52096061695866], [-77.33683845676377, 34.520959911604386], [-77.33683879191756, 34.52095925342539], [-77.33684064051748, 34.52095705666456], [-77.3374917367078, 34.52028440558718], [-77.3381120801221, 34.5197968296834], [-77.33829684333415, 34.51968283527149], [-77.33843831566818, 34.519625436171964], [-77.33881306438101, 34.51943740178489], [-77.3388654012204, 34.51942495532436], [-77.3392291115832, 34.5193731646355], [-77.33973712227981, 34.519390560367206], [-77.34001507410366, 34.5193296137838], [-77.3403218056809, 34.51928820754786], [-77.34158648438857, 34.51926462134479], [-77.34168083700573, 34.51928341900304], [-77.34260670238226, 34.519489836703656], [-77.34468782379604, 34.51983001925457], [-77.34469227460012, 34.51984228364509], [-77.34471304176284, 34.519838863575856], [-77.3447343446919, 34.519836580322185], [-77.34754978554122, 34.51961047361629], [-77.34785919203799, 34.51956425329267], [-77.35100878337141, 34.51892024207391], [-77.35101321544788, 34.51891921752277], [-77.35101450948375, 34.51891900028288], [-77.35417377385065, 34.51804118087657], [-77.35606390714527, 34.517403760454606], [-77.3573349541116, 34.517105824183574], [-77.35877991522653, 34.51673881998881], [-77.35891383905411, 34.51671132228284], [-77.3592256163371, 34.51656536750932], [-77.36050164905949, 34.515926175723465], [-77.36093781729176, 34.515802180455026], [-77.3622581618342, 34.515341652256254], [-77.36366806184343, 34.51475471545008], [-77.36524641384621, 34.51392536507387], [-77.36525685302249, 34.5139228372516], [-77.36529370125987, 34.5139023320257], [-77.36684135379511, 34.513277582416066], [-77.36715724524142, 34.51286844476385], [-77.36740750127998, 34.51264113421278], [-77.36844955189214, 34.511591637371886], [-77.36871911373018, 34.51164169314298], [-77.37001293009837, 34.51187062494559], [-77.3703663097001, 34.51199252719003], [-77.37079497887996, 34.51199446511943], [-77.37115945833904, 34.5118358834674], [-77.37159381812621, 34.51138061204974], [-77.37180620859135, 34.5111572020519], [-77.37318905786209, 34.510258585746136], [-77.37364214893148, 34.510063814627244], [-77.37474554716145, 34.50962482201817], [-77.37587789319167, 34.50916497647117], [-77.37635380912705, 34.50914205080967], [-77.37708080166607, 34.50883885389556], [-77.3782469094891, 34.50833097352305], [-77.37952637567702, 34.50767671551552], [-77.38040174381807, 34.50739273337064], [-77.381991859022, 34.50662125259519], [-77.38244906819835, 34.50640217535094], [-77.38269619788717, 34.50632751380298], [-77.3832814420354, 34.50607367769758], [-77.38461661444606, 34.505470099194], [-77.38586614647468, 34.504967955805554], [-77.38685467905646, 34.50457231877124], [-77.3874500531792, 34.504333667881795], [-77.38901293653306, 34.50364970005646], [-77.38902788795679, 34.50364297623764], [-77.38903529897746, 34.50363887932345], [-77.3890718686026, 34.50361866258216], [-77.39093116977307, 34.50258229891954], [-77.3922126432434, 34.50194127015048], [-77.39302996037131, 34.501616728334284], [-77.39379569885301, 34.501339887941825], [-77.39430710323334, 34.50124473371199], [-77.39519706754517, 34.50079849898195], [-77.39530811180343, 34.500738403576534], [-77.39537962036832, 34.50069891047603], [-77.39569061891174, 34.50053547779176], [-77.39855943172914, 34.4988802088068], [-77.39908428839809, 34.49860222133289], [-77.40172030004398, 34.49790065500087], [-77.40172321148036, 34.49789934843089], [-77.40173057434261, 34.49789648653672], [-77.40398973520232, 34.497015303025336], [-77.40489238853903, 34.49641587976559], [-77.40592374179519, 34.49596952199587], [-77.40647505961456, 34.495822449039544], [-77.40780487467555, 34.495218336560036], [-77.40806053066093, 34.49510255727421], [-77.40814760823861, 34.49506471109731], [-77.40820171303123, 34.4950303626708], [-77.4104733776133, 34.49398957602637], [-77.4106555009025, 34.493907501126586], [-77.41083855507162, 34.49381426478645], [-77.41284447560275, 34.49280959313429], [-77.41306778626277, 34.49270378252295], [-77.41328474501324, 34.492588362607194], [-77.4141691655608, 34.492050973703755], [-77.41444085888259, 34.49197197176654], [-77.41520607082262, 34.49159499680216], [-77.41540628008559, 34.49146417001721], [-77.41566214381308, 34.491358899446816], [-77.41670260970466, 34.490906158010915], [-77.4175929424196, 34.490473230460296], [-77.41785253682755, 34.4902769473129], [-77.41816647833221, 34.49013588664578], [-77.41909140131591, 34.48969098941956], [-77.41994084909184, 34.48920889772396], [-77.42023787875598, 34.489060097088014], [-77.42054728175835, 34.48890651535424], [-77.42228168303372, 34.487918876412074], [-77.42248477291379, 34.48777592162163], [-77.42288703048871, 34.48767500634056], [-77.42469743175755, 34.48690351976338], [-77.42517445971367, 34.4867070348046], [-77.42593287870373, 34.48649691725675], [-77.42594979489952, 34.48648985065644], [-77.42596308958178, 34.486481074467704], [-77.42625808644776, 34.486045577917395], [-77.42702437344032, 34.48556304251504], [-77.42727134113294, 34.4853499061732], [-77.42744421106117, 34.485205627281545], [-77.4293198960804, 34.484107725097374], [-77.42945687258661, 34.484035878107136], [-77.42977282574557, 34.48397343647697], [-77.43179547429864, 34.483312087996524], [-77.43273713978891, 34.48325406289214], [-77.43311258037312, 34.48320479574433], [-77.4335888962777, 34.48307400972468], [-77.43394127410811, 34.482835082904955], [-77.4340946176116, 34.4827257268324], [-77.43430921878596, 34.48265635461861], [-77.43497534233526, 34.48196560562548], [-77.4359742889585, 34.48158768090221], [-77.43733208455622, 34.48073478001456], [-77.43894563407002, 34.4799133585833], [-77.43974761880943, 34.47953252457105], [-77.44144423295401, 34.47920266213135], [-77.44147882268784, 34.4791858442307], [-77.4415157815753, 34.4791680668143], [-77.4428351958447, 34.47865693718775], [-77.44385444315698, 34.478168503775976], [-77.44406651480762, 34.478067241567025], [-77.44429787152671, 34.47795873672764], [-77.44495014472841, 34.47730853241337], [-77.44624285098166, 34.477054725772255], [-77.44657557474734, 34.47691040415124], [-77.44695984404318, 34.476743237000086], [-77.44786280223306, 34.476347872246436], [-77.44835886317315, 34.476138937119856], [-77.44861116466548, 34.47586760527924], [-77.44880693969067, 34.47561858766238], [-77.44901269562276, 34.47549668775845], [-77.44978326519366, 34.47490493296341], [-77.4509709252505, 34.47464938594047], [-77.45136166427507, 34.474483920917116], [-77.45189400104542, 34.47429225705322], [-77.4527856130189, 34.47398782183433], [-77.45343361712598, 34.473808039468096], [-77.45365842885946, 34.47370649503339], [-77.45402555818498, 34.47340229342796], [-77.45468313990995, 34.473083081101166], [-77.45512958392678, 34.47275069935347], [-77.4557885014507, 34.47257237232926], [-77.45730228533262, 34.47186520831414], [-77.45766225505065, 34.47160528032417], [-77.4581593903565, 34.471395472459946], [-77.46031411524959, 34.47051776678071], [-77.46058897095494, 34.4704335078505], [-77.46267336359169, 34.46943606286221], [-77.46282500353003, 34.469361733627096], [-77.46296630910435, 34.46928060370345], [-77.46486309161443, 34.468196234373366], [-77.46508365413494, 34.46808311962728], [-77.4652953679005, 34.46795131659478], [-77.46685594201114, 34.46694637804131], [-77.46711037492865, 34.46669180261722], [-77.46760598316946, 34.46655481127772], [-77.47003177000471, 34.46578464792308], [-77.4700831860155, 34.465767751080236], [-77.470091006528, 34.46576397752357], [-77.47009778740758, 34.465759879426855], [-77.47022270112073, 34.465684829732574], [-77.472148006225, 34.46451285923024], [-77.47222483215717, 34.46442469216761], [-77.47239371255318, 34.4643713599876], [-77.47210586271191, 34.46331880801162], [-77.47079847373568, 34.46373167952229], [-77.47020372514908, 34.464414225563665], [-77.46978307890862, 34.46467028107645], [-77.46877463005698, 34.465124392109125], [-77.46756094191193, 34.465510450736495], [-77.46733324731052, 34.465557343791296], [-77.46722042975267, 34.46561385636517], [-77.46573622393778, 34.466024106489996], [-77.4649763343495, 34.466784421688544], [-77.46492456960303, 34.4668177772607], [-77.46487560174289, 34.46684584118917], [-77.46442885997574, 34.46714770995751], [-77.46387201154535, 34.467494377598975], [-77.46271606730011, 34.46808719971347], [-77.4626503303508, 34.46812478079159], [-77.46156353568708, 34.46874875878042], [-77.46039725844287, 34.46932043202451], [-77.46029772549744, 34.46936806155257], [-77.45885705740714, 34.46980970838654], [-77.45783927648228, 34.47022429128798], [-77.45622362441256, 34.47090615094689], [-77.45547989164666, 34.471443187684216], [-77.45477721735713, 34.471736820886534], [-77.45366354087047, 34.472038222210045], [-77.45307060461765, 34.47247966879809], [-77.45196461879416, 34.47294479968396], [-77.45131232837856, 34.47327179931859], [-77.4510101461552, 34.47357176643615], [-77.4507037626748, 34.47367167339325], [-77.4498835926054, 34.47376555320456], [-77.44856920782011, 34.47412305975648], [-77.44829565269512, 34.47418192020008], [-77.44817575227975, 34.47427399708504], [-77.44672963598458, 34.4753804582293], [-77.44648616664267, 34.475678768816], [-77.44630476908144, 34.47603435857696], [-77.44600029939349, 34.476166919883454], [-77.44505782443622, 34.47617269578093], [-77.44394680391876, 34.476589793468705], [-77.44360820679807, 34.4766562727618], [-77.44347705364021, 34.4767870099266], [-77.44249361496716, 34.47730269572878], [-77.44237302099702, 34.4776740159197], [-77.44184826366907, 34.47783394373855], [-77.44119596965773, 34.47786013575115], [-77.44108670693394, 34.47789375709519], [-77.44059132032268, 34.47803825152766], [-77.43851274533974, 34.47832838325478], [-77.43788263299497, 34.47862593045528], [-77.4375857826823, 34.47896773699741], [-77.43618711201077, 34.47967243601886], [-77.43577843981726, 34.479979516458435], [-77.43534488021818, 34.480204528181304], [-77.43390170529477, 34.48116402860587], [-77.43342333605658, 34.48121110459232], [-77.43277003907704, 34.48142424442086], [-77.43187611152679, 34.481647180628315], [-77.4313709816621, 34.481757420446726], [-77.43030639966025, 34.48207229421799], [-77.42885774505763, 34.48241493733188], [-77.42587798982812, 34.48377452664171], [-77.42509534979838, 34.484291891453886], [-77.42440219689108, 34.48505024953386], [-77.4243221753596, 34.485104300557474], [-77.42422582302119, 34.485175820650426], [-77.42295209995996, 34.485626443330496], [-77.42241841616298, 34.48629996878273], [-77.42189616392785, 34.48650642750728], [-77.42063607611914, 34.486876980945944], [-77.41993514604941, 34.48752412979689], [-77.41954457118906, 34.48775690230781], [-77.41822200664936, 34.48807983400873], [-77.4179739606039, 34.48877494395652], [-77.41762957657022, 34.488980144190705], [-77.41727258530257, 34.48929931842873], [-77.4169839991605, 34.48939986843622], [-77.4165763301295, 34.489656358968126], [-77.41607296873754, 34.48983746984875], [-77.41585137945097, 34.490017483439644], [-77.41524807921635, 34.490198833088684], [-77.41486837219402, 34.49035741426149], [-77.41395936676896, 34.49076053375154], [-77.41299092149524, 34.4912222218055], [-77.41272885324427, 34.49135053335764], [-77.41248869381332, 34.49150562416867], [-77.41112609781146, 34.49175948170073], [-77.41000979860601, 34.49229033532401], [-77.40872140623446, 34.49296685696983], [-77.40766851849597, 34.493579702366766], [-77.40749610783243, 34.493643112585424], [-77.40637319078095, 34.494201706165235], [-77.40492977903308, 34.49474418603755], [-77.40238782106701, 34.495842864401226], [-77.40199565612906, 34.496045396102566], [-77.40176150183663, 34.49606162700963], [-77.40144611909659, 34.496174091952966], [-77.3985945719376, 34.497314346265256], [-77.39756720478942, 34.49786426475448], [-77.3955626333323, 34.49878704435797], [-77.39542092254122, 34.49886151472275], [-77.3951616326706, 34.49900471660266], [-77.39336742997065, 34.499794326323396], [-77.39225139295823, 34.50022028089566], [-77.38927089833709, 34.501536383796775], [-77.38895205413037, 34.5016194556437], [-77.38870405707542, 34.5017355997721], [-77.38687010900978, 34.502593175920424], [-77.38590937049722, 34.50305458465424], [-77.38481407059834, 34.50357948172329], [-77.38283937764585, 34.504540362579355], [-77.38275019597748, 34.50456199292886], [-77.3827358855531, 34.504573579056625], [-77.382663442211, 34.50461042028001], [-77.3805450598201, 34.50547574078977], [-77.37957192910672, 34.50566686907034], [-77.3776623966638, 34.50646704858879], [-77.37640623720769, 34.506832695722615], [-77.37504627985712, 34.5067734926759], [-77.37325585591445, 34.507321100078954], [-77.3708182923474, 34.508232326539115], [-77.37021523430353, 34.508396096471586], [-77.370091717056, 34.50841159640622], [-77.36986774884755, 34.50850769915256], [-77.36693807424858, 34.509038181664046], [-77.36560423719979, 34.51012568300694], [-77.3648949250901, 34.51104456345054], [-77.36456926152772, 34.51160886948004], [-77.36373093307462, 34.512003453643864], [-77.36248494094846, 34.51258129534369], [-77.36055915005502, 34.513414021325325], [-77.36001629747368, 34.51370599545678], [-77.35837462964778, 34.514554548349864], [-77.35738772130962, 34.51480424086304], [-77.35582812493959, 34.51527534306423], [-77.35423047869634, 34.51557188580804], [-77.35320156604112, 34.516010387548945], [-77.34875167265099, 34.51676998186652], [-77.3479197391342, 34.51693620845599], [-77.34705848966101, 34.51699384997121], [-77.34477286325165, 34.5172465378829], [-77.34386371979733, 34.5174255031741], [-77.34266149816547, 34.51751763834112], [-77.34162159488821, 34.517745603237195], [-77.34064182698201, 34.51784387586408], [-77.34004767170916, 34.51792045719621], [-77.3393292646881, 34.518108600926666], [-77.33847025237617, 34.51824596733968], [-77.33798531850015, 34.518537511502686], [-77.33727107596152, 34.51893853258999], [-77.33702345843325, 34.519062741229966], [-77.33687976460277, 34.51913489630383], [-77.33587202478493, 34.51949564706423], [-77.3352947225965, 34.51978747500098], [-77.3343345996159, 34.52034014864641], [-77.33396514486954, 34.5205543015871], [-77.33370531353562, 34.520627100915604], [-77.33336166085972, 34.520693464440036], [-77.33248932076548, 34.520829219978474], [-77.33212900967092, 34.52090106174208], [-77.33156818483508, 34.52108511896991], [-77.331135388733, 34.520800199033516], [-77.33125154035078, 34.52035941352717], [-77.33056613062152, 34.52059697495212], [-77.33001386470684, 34.520617268418576], [-77.32899417592273, 34.520683425128595], [-77.32836178274079, 34.52061516022907], [-77.32610932344086, 34.5207028844168], [-77.32585412414075, 34.52069014026683], [-77.32557464567648, 34.520793199549686], [-77.32312438835868, 34.52123633907152], [-77.32268422591376, 34.52197537628744], [-77.32204377419345, 34.52153373901308], [-77.31677057126082, 34.522116044464994], [-77.31639305850166, 34.52245571042177], [-77.31382800017629, 34.52465751808805], [-77.31318244365545, 34.525467320148636], [-77.31290757752608, 34.52458329550693], [-77.31254312730167, 34.52445127699489], [-77.31160401347253, 34.52357396492074], [-77.31392073137391, 34.522294892026984], [-77.31047679116081, 34.522561157393525], [-77.31012650359962, 34.521884017678865], [-77.30904802784897, 34.519781270587806], [-77.3055330744154, 34.51958247476455], [-77.30391787585202, 34.518856618968286], [-77.30305488535588, 34.51993826185939], [-77.30049618579156, 34.52213645660284], [-77.29930280048957, 34.52439369914927], [-77.29859929241451, 34.525187493909286], [-77.29819121829095, 34.526511693957396], [-77.29802040734049, 34.52689312094367], [-77.29840042892233, 34.527832357756154], [-77.29880157226245, 34.52838254872667], [-77.29984864287636, 34.52977180254148], [-77.30022931872524, 34.53030970482656], [-77.30049945094397, 34.530658581361905], [-77.30115841947372, 34.53153732056713], [-77.30144955221039, 34.5319194333838], [-77.30199173836223, 34.53280382859582], [-77.30200575356947, 34.53282677222089], [-77.30211009160988, 34.53286149791643], [-77.30358573269109, 34.532952066801855], [-77.30428599078212, 34.53193405276287], [-77.30441032062974, 34.531494451970765], [-77.30678657931931, 34.53038278210234], [-77.30826445204609, 34.52989723762507], [-77.30849095919831, 34.529853429168845], [-77.30993939111792, 34.529850082783895], [-77.31175461244129, 34.52931567113642], [-77.31308946690314, 34.52943206557815], [-77.31450019516996, 34.530045624874624], [-77.31487911081743, 34.530813334914484], [-77.31455343410616, 34.53296106152756], [-77.31355737185447, 34.53409797653233], [-77.31125138108114, 34.535327589081625], [-77.3097894283943, 34.53623482181103], [-77.30784270608129, 34.53764218285002], [-77.30727299315167, 34.53891734994838], [-77.30697029467038, 34.53920479174552], [-77.30657308856225, 34.539457815678794], [-77.3050837220482, 34.540150216266824], [-77.3049211806875, 34.54019413210428], [-77.3033973402352, 34.54094753549669], [-77.30055039881154, 34.541647239897635], [-77.29987831662329, 34.541712522328666], [-77.29707490929981, 34.54268227414917], [-77.29539152526475, 34.5435017270558], [-77.29076717026497, 34.54378529643367], [-77.2877530332316, 34.54466537731337], [-77.28720296097036, 34.54493035459747], [-77.28416190195671, 34.54843043434962], [-77.28392556075214, 34.5486105494082], [-77.28369976701171, 34.54886667036504], [-77.28142917431171, 34.55163522539148], [-77.28085804673493, 34.552307184103576], [-77.28067335783443, 34.552468176109464], [-77.27749997310383, 34.555418289897815], [-77.27656132987812, 34.55590716418497], [-77.2713385908754, 34.558927042982155], [-77.27091611707299, 34.55909905593255], [-77.27052573497859, 34.55937032884886], [-77.26965037183285, 34.560054844149576], [-77.26791093656415, 34.562703158559394], [-77.267596974744, 34.56307764844036], [-77.26753193180794, 34.56315641947124], [-77.26643147571849, 34.564689448293024], [-77.26615591529661, 34.56484964465714], [-77.26552679548239, 34.5653119154627], [-77.26367640940387, 34.566539932692784], [-77.26301350512213, 34.56690691762678], [-77.26181405563219, 34.567796524428424], [-77.25976412047558, 34.56927443655625], [-77.25914725535299, 34.5699542353979], [-77.258098604151, 34.57103373841348], [-77.257343591641, 34.57169762788661], [-77.25714677594806, 34.57220431861017], [-77.25586717169234, 34.57333911155226], [-77.2557622181034, 34.57345850896316], [-77.2556439843849, 34.57349661072698], [-77.25552688954963, 34.57356047466966], [-77.25341024256699, 34.57413863775707], [-77.25114544666042, 34.575556197790775], [-77.249987006471, 34.57635175695719], [-77.2495247240912, 34.57673801673575], [-77.24816482023431, 34.577692936048706], [-77.24724536362781, 34.57844382133794], [-77.24665037726906, 34.57864200277818], [-77.24594894767407, 34.579161958866806], [-77.24399611570018, 34.58007314689925], [-77.2429541204204, 34.580612355062634], [-77.24150297273749, 34.58128382996934], [-77.24081991040966, 34.58170816743953], [-77.2389253096625, 34.5822868404819], [-77.23721356925424, 34.58330919248705], [-77.23706130758872, 34.58339657792407], [-77.23522304715895, 34.584251935578244], [-77.2327457252558, 34.5852596466177], [-77.23124472027943, 34.58597142117286], [-77.23043504746377, 34.586545220656575], [-77.2282531658368, 34.587471740404595], [-77.22726849218081, 34.58769280231706], [-77.22447722009142, 34.58826814052661], [-77.22251871747912, 34.5887257522358], [-77.2217511549548, 34.58963044881725], [-77.22074952565286, 34.59089224260137], [-77.22024033371495, 34.59139656175396], [-77.22002595228636, 34.59176748442716], [-77.21918473603472, 34.593198628363574], [-77.21838083881212, 34.59471712389823], [-77.21807832628333, 34.59529450684199], [-77.214906467198, 34.59663145927298], [-77.21515696159427, 34.59795499583356], [-77.21462191450519, 34.59906183269917], [-77.21345988164742, 34.60028808732168], [-77.21250878671164, 34.600858741785316], [-77.21097847132673, 34.60159845081918], [-77.20860196140006, 34.60264231188999], [-77.2046671115952, 34.603363713475304], [-77.20373356275802, 34.603569972746314], [-77.20311215921018, 34.60380716922209], [-77.1972162304516, 34.605569787608545], [-77.19517864828788, 34.60614707352006], [-77.19488976120572, 34.60622008791677], [-77.19462958434042, 34.60634024644111], [-77.1939637209861, 34.6067855797756], [-77.19131371567154, 34.608298202362505], [-77.18866491637336, 34.60876592473666], [-77.18700761765206, 34.6089539435833], [-77.18629552797778, 34.6090923025595], [-77.18603846663318, 34.60943066675969], [-77.18461038928724, 34.6102809784648], [-77.18008923544531, 34.6127300885914], [-77.17924384421791, 34.61333812512291], [-77.1717338489276, 34.615838296101515], [-77.17069651155823, 34.61625225249662], [-77.16967842754836, 34.616508345459366], [-77.16249278954537, 34.61947240005365]], [[-77.32424358751425, 34.522430539132976], [-77.32452413769668, 34.522729880647724], [-77.324888474238, 34.52308933358366], [-77.32447356479565, 34.523556582356136], [-77.32500995159621, 34.5232296441527], [-77.32538748955183, 34.523585045148145], [-77.32499305484028, 34.523954501309674], [-77.32432395106278, 34.52380806980703], [-77.32421190761556, 34.52378902884395], [-77.32416351643298, 34.5237911191811], [-77.32404441220093, 34.523671909433574], [-77.32333697194943, 34.522900503899834]], [[-77.34506203165425, 34.53427877175881], [-77.34514748852074, 34.53420824203063], [-77.34513935908313, 34.53419221717133], [-77.34516781638357, 34.53415374383684], [-77.34521476822448, 34.53416905832546], [-77.34526514693759, 34.53418868229478], [-77.34526623828991, 34.53419044913181], [-77.34526585460046, 34.534191210401524], [-77.34526507490001, 34.534191805760535], [-77.34518036268965, 34.53421217712494], [-77.34516625550208, 34.53422141839512], [-77.34507314807115, 34.534284183070376], [-77.3450656785624, 34.53432722498737], [-77.34505683242998, 34.53428856457524]], [[-77.40015400719616, 34.578345783929535], [-77.39978700825617, 34.57866838199321], [-77.39968534268385, 34.57872843525134], [-77.39958761444782, 34.57885208637987], [-77.39949646957709, 34.57897674794027], [-77.39939298292485, 34.57907134437352], [-77.39938242340035, 34.5790826029445], [-77.39935686287458, 34.57909766922451], [-77.39925282886882, 34.579173946502706], [-77.39919597236265, 34.57917729518485], [-77.39915755425321, 34.57916782576001], [-77.3990974693584, 34.57916507440103], [-77.39907063546875, 34.57916788405308], [-77.3990482171216, 34.57917828210317], [-77.39903582720562, 34.5791837125363], [-77.39902444305054, 34.579198705798404], [-77.39899896401397, 34.579213353431925], [-77.39895904369718, 34.57921819753959], [-77.39893098607929, 34.5792323682665], [-77.39890045903661, 34.57924961581558], [-77.39888524350008, 34.579255466916536], [-77.39882345059956, 34.57928077820848], [-77.39880660343368, 34.5792882192062], [-77.39880195373466, 34.5792915515347], [-77.39879615099981, 34.57929096998607], [-77.3987527012903, 34.579306683321924], [-77.39874392487057, 34.57930171001292], [-77.39872807544782, 34.57930509286799], [-77.39872043540458, 34.57930387453108], [-77.39871107030038, 34.57930520495476], [-77.39870344928744, 34.579310990441726], [-77.39868791687303, 34.579326869687975], [-77.39868472928067, 34.57933369461101], [-77.39867882196474, 34.57934393185853], [-77.39865632901068, 34.579357963198], [-77.39865477574014, 34.5793588126599], [-77.3986541953869, 34.57935915279919], [-77.39865372127592, 34.57935885035117], [-77.39864877743273, 34.57935905277792], [-77.39862956967065, 34.57935431617885], [-77.3986272523247, 34.57935966170493], [-77.39861730212812, 34.579363594189786], [-77.39860778260513, 34.579368027390494], [-77.39860494310548, 34.579368961093365], [-77.39856620085187, 34.5793822926438], [-77.39854281910895, 34.57938821046187], [-77.39850643822503, 34.57939482490474], [-77.39847702441263, 34.57940521117996], [-77.3984376147639, 34.579410608900055], [-77.39840793388322, 34.579407545172124], [-77.39837936843522, 34.57942021558408], [-77.39831706960325, 34.5794517502212], [-77.39830942802057, 34.57945174185895], [-77.3982299605775, 34.57945203989107], [-77.39821092438939, 34.57944759767283], [-77.39817170617161, 34.57943869735738], [-77.39791781824272, 34.579408855368584], [-77.39791624313918, 34.5792002666614], [-77.39794141324381, 34.57908961105128], [-77.3980163948552, 34.578869144860455], [-77.39801820338978, 34.57886624532908], [-77.39821096129444, 34.57868889327365], [-77.39825204091704, 34.578664484939125], [-77.39833723580459, 34.57860792806166], [-77.39840797295075, 34.578564466056434], [-77.39846215226211, 34.57853152439808], [-77.39850647845637, 34.578504412770414], [-77.39852283910211, 34.578492634242934], [-77.39858545613224, 34.5784659703878], [-77.39860041194503, 34.578458886667555], [-77.39860498330866, 34.578455854259914], [-77.39861394850001, 34.57845219891145], [-77.39863819890778, 34.57844108006145], [-77.39865423517881, 34.57844327366575], [-77.39867784083631, 34.57842500474964], [-77.39868090228086, 34.578423464126374], [-77.39870348723426, 34.57842603486216], [-77.39872548262485, 34.578422065107375], [-77.39877596340364, 34.578410436767086], [-77.39880199100833, 34.57839805754893], [-77.39886071312498, 34.5783833875329], [-77.39890049503691, 34.57836211958188], [-77.39894518805974, 34.5783560818901], [-77.39894974649866, 34.5783570093906], [-77.39895188844105, 34.578357719057436], [-77.39895887384588, 34.57835901926694], [-77.39897437197574, 34.57836074215331], [-77.39899667723523, 34.57835606521073], [-77.39899899761944, 34.57836032916034], [-77.3990008714002, 34.5783549783802], [-77.3990073892902, 34.57835201901463], [-77.39902892828927, 34.578328090498545], [-77.39904825022782, 34.578325700516096], [-77.39906656373779, 34.578323746713544], [-77.39909750166582, 34.578320364616665], [-77.39918287190038, 34.57828777908596], [-77.39919600538252, 34.5782865763117], [-77.39920659299732, 34.57828161285042], [-77.3992421230594, 34.5782650774548], [-77.39929450932127, 34.57824432809547], [-77.39931240972938, 34.57823564700885], [-77.39936159164846, 34.57821398056832], [-77.39939301325026, 34.57819942260572], [-77.39939981452272, 34.5781965808515], [-77.39942660739379, 34.578185386062756], [-77.39943746216655, 34.578178644260866], [-77.39943446028093, 34.578157717074504], [-77.39942879086931, 34.578146519956164], [-77.39942543148766, 34.578132483993734], [-77.39942937266437, 34.57811802047135], [-77.39943237456082, 34.57808907156229], [-77.39943263563376, 34.57807837274166], [-77.39943832039047, 34.57807329780707], [-77.39944226885005, 34.57807060366519], [-77.3994496325884, 34.578067985305736], [-77.39948243766415, 34.578061399474876], [-77.39949152037289, 34.578057334723745], [-77.39951280728728, 34.57806680448141], [-77.39952696506319, 34.57807963820278], [-77.39954077119464, 34.578064525939276], [-77.39954252152539, 34.578064403003054], [-77.3995437663986, 34.578059109899726], [-77.3995050563996, 34.578014851135556], [-77.39952600993075, 34.57794284509537], [-77.39959002808784, 34.577887502205485], [-77.39969123779707, 34.57788476023535], [-77.39978703388377, 34.577823700095344], [-77.39990869384624, 34.577825508936996], [-77.40007984040389, 34.57793191172264], [-77.40013199773605, 34.5779772292834], [-77.4001677214017, 34.57832946598539]], [[-77.34468280339773, 34.53390802344895], [-77.34468240061348, 34.53390793274811], [-77.34462189718826, 34.53389362615172], [-77.34459818368035, 34.533866680335656], [-77.34460450699424, 34.53385793557938], [-77.34464056663302, 34.53382521363804], [-77.34474785961172, 34.53377610428526], [-77.34477343416872, 34.53376569581362], [-77.34478436904621, 34.53375936026286], [-77.34482250802573, 34.53374182924131], [-77.34480993728452, 34.533767172131434], [-77.34482725347483, 34.53379189458502], [-77.344837641232, 34.53388559573656], [-77.34478105898451, 34.533902843799744], [-77.34477138973556, 34.53390118281592]], [[-77.34175064355324, 34.53763938449141], [-77.34170507415033, 34.53767463454616], [-77.34169753095613, 34.53767503565758], [-77.34168864756828, 34.53766663807336], [-77.3417291062187, 34.537637883807406], [-77.341682909458, 34.53760174528151], [-77.34175106834036, 34.53762099858382], [-77.34176056763211, 34.53763335789178], [-77.34175688665863, 34.537637757447655]], [[-77.34398909405971, 34.535217155516165], [-77.34402980210204, 34.53514245963503], [-77.34410601128086, 34.535092552805835], [-77.34416590444883, 34.53504418709859], [-77.34424268996898, 34.53507288750583], [-77.34430478212768, 34.53509896198662], [-77.34433296664598, 34.53518230820132], [-77.34428614932618, 34.5352337338318], [-77.344264589267, 34.53525675164906], [-77.34420484867442, 34.53532315158562], [-77.34415849127691, 34.53536543579465], [-77.34411605589891, 34.535335927031156], [-77.34404240978616, 34.53529748701798], [-77.34399443621001, 34.53524944107849], [-77.34398044323203, 34.535233029087614]], [[-77.34580522745598, 34.53417434939358], [-77.34580658527013, 34.53417376985555], [-77.34582198232583, 34.53416744178196], [-77.34582989651271, 34.5341684954233], [-77.34583303486538, 34.53416884013238], [-77.34584076845626, 34.53416968957101], [-77.34584212201604, 34.53417029698967], [-77.34584747887514, 34.534172994875284], [-77.34585436515208, 34.534171333807045], [-77.34586441276114, 34.534172571493514], [-77.34585877717186, 34.53416709820621], [-77.3458588369171, 34.53416440038873], [-77.34585734559887, 34.534159653578534], [-77.34585747699978, 34.53415367083628], [-77.34585863030412, 34.534151818091445], [-77.34585755127844, 34.534150288873825], [-77.34585768273017, 34.534144303818884], [-77.34585781436178, 34.53413831057293], [-77.34585926662675, 34.53413642527954], [-77.34585968546341, 34.534133589620005], [-77.34586021988103, 34.534108432558874], [-77.34586723613667, 34.5341046760073], [-77.34587070137688, 34.534095085321425], [-77.34587143826292, 34.534051795486214], [-77.34595340473656, 34.53403250459525], [-77.3459556576039, 34.534034439157374], [-77.3459907560773, 34.53406457860439], [-77.34601302145384, 34.534083698091415], [-77.34602810748213, 34.53409665261543], [-77.34602453817715, 34.5341263210379], [-77.34602246612324, 34.53414354404241], [-77.34599297921223, 34.53417305676313], [-77.34597314831888, 34.534181243199114], [-77.34595152372759, 34.53421374311719], [-77.34595090454083, 34.53421467370173], [-77.34595023490405, 34.534215142848886], [-77.34590197916256, 34.534234405133056], [-77.3458854704074, 34.53422446216927], [-77.3458708434394, 34.5342156525755], [-77.3458535830116, 34.534205256883006], [-77.3458444581792, 34.53419976113257], [-77.34582644417024, 34.534188911562666], [-77.34580518689388, 34.53417610861226], [-77.3458034459751, 34.53417506008146], [-77.34579377644991, 34.534169236262414]], [[-77.3422525538053, 34.53725510443251], [-77.34234848269202, 34.53724992926898], [-77.3424657363761, 34.53721447965976], [-77.34254563230404, 34.53721228963678], [-77.34273303724034, 34.537243554261835], [-77.34262308982363, 34.53714204706243], [-77.34274627203251, 34.53702350338511], [-77.34276091627807, 34.53700872932461], [-77.34288623147108, 34.53701699836705], [-77.34291763845681, 34.53703846698819], [-77.34292133690161, 34.53705077284903], [-77.34291067593664, 34.53708163116164], [-77.34288860532772, 34.53710384864191], [-77.34284141906201, 34.53715311397468], [-77.34281465556515, 34.53715908729554], [-77.34274792088098, 34.53724231827671], [-77.3427427248828, 34.537247245346315], [-77.34274197193665, 34.537247903609654], [-77.34274107206106, 34.53724868572566], [-77.34265333636237, 34.53732895465785], [-77.34255459340409, 34.53739672018019], [-77.34254762023637, 34.537401691044444], [-77.34249950244201, 34.53743027471327], [-77.34234304423285, 34.537485391645376], [-77.3422567343029, 34.53743957072808], [-77.34218768715607, 34.537424854052226], [-77.34217567119478, 34.537344826416074], [-77.3421796197243, 34.53732825507681], [-77.34224422212938, 34.53726140823761], [-77.3422485654407, 34.537256112623744]], [[-77.34499162887569, 34.532889816631226], [-77.34499064293924, 34.53288430186333], [-77.3449887245659, 34.532876924404945], [-77.34499715289559, 34.532760955289916], [-77.34499112890329, 34.532753898203424], [-77.3449774275058, 34.53270258863317], [-77.34495055320549, 34.53267955050754], [-77.34493903766878, 34.53266644201546], [-77.3449604453066, 34.5326720652922], [-77.34500538191536, 34.532686788082415], [-77.34502763898378, 34.5326953637196], [-77.34501381913574, 34.532752351801236], [-77.34510241375612, 34.532734598893875], [-77.34514584123798, 34.53270501495571], [-77.34515419517645, 34.53270646792281], [-77.34516112564027, 34.53270675873637], [-77.34520088399405, 34.53272005085574], [-77.3452075318427, 34.532726445623936], [-77.3452053705787, 34.53273099475237], [-77.34521006425497, 34.53273627837914], [-77.34522452689743, 34.532773922641255], [-77.34526290417419, 34.5327839210928], [-77.34526326458956, 34.532804947232904], [-77.34529115338775, 34.53284106118066], [-77.34528417199064, 34.5328965499551], [-77.34528199912563, 34.53290358339467], [-77.3452750265433, 34.53291672115861], [-77.34525360122505, 34.532968874536564], [-77.34524974639696, 34.53300398820283], [-77.34519325396154, 34.533050860474496], [-77.3451538554142, 34.53308150569855], [-77.3450577461935, 34.53308113429869], [-77.345007545971, 34.53301028320232], [-77.34501785093376, 34.53300279677694], [-77.34500278335601, 34.533002050008676], [-77.34499890876808, 34.53296741078922]], [[-77.34512921315475, 34.53314773024163], [-77.34511549913077, 34.53318703065132], [-77.34509156453768, 34.53320495664177], [-77.34507537891338, 34.533188465777954], [-77.3450742020195, 34.53316692752426]], [[-77.34899613928098, 34.551167616717436], [-77.34899271652532, 34.55115958079185], [-77.34899646118362, 34.551153627830175], [-77.34903274102616, 34.55111467949374], [-77.34905541539437, 34.55111436090526], [-77.34908196368426, 34.55111613545564], [-77.34909545918852, 34.551117037527], [-77.34912319592459, 34.55112341787829], [-77.3491442787936, 34.551128267620626], [-77.34914897117184, 34.55113408615562], [-77.3491501052663, 34.551136932372486], [-77.34915449782252, 34.551142882031755], [-77.34916236003721, 34.55115412592174], [-77.34916805889118, 34.55116125031974], [-77.34916993934937, 34.55116347631031], [-77.3491709221326, 34.55116453938237], [-77.34917789117196, 34.55117254485711], [-77.34919200415547, 34.55118705548603], [-77.34919575969224, 34.55118919533834], [-77.3491963662049, 34.55119148052496], [-77.34919618922954, 34.551194218360585], [-77.34920161752825, 34.55121493306535], [-77.34920159577956, 34.55122133057526], [-77.34921278082324, 34.55123334035959], [-77.34921406230418, 34.55123568714074], [-77.34921927173937, 34.551249389561626], [-77.34922839131622, 34.551271984913335], [-77.34918975254826, 34.55128491338607], [-77.34915689071295, 34.55127894293459], [-77.34914083232489, 34.55127805195461], [-77.34910970515162, 34.55127632488949], [-77.3490917332789, 34.551278962285224], [-77.3490762917963, 34.551279584195484], [-77.34906110432368, 34.55127215009748], [-77.34902383901768, 34.55125893023663], [-77.34901515890212, 34.55123031581739], [-77.34901145027513, 34.55121809017169], [-77.3490243448177, 34.55119820813117]], [[-77.39871235748954, 34.57818230179515], [-77.39874777652105, 34.578182549413356], [-77.39875274860248, 34.57819020757495], [-77.39879070986245, 34.57822406823731], [-77.39875274551744, 34.57826236376656], [-77.39873965916208, 34.5782704047976], [-77.3987183276949, 34.57827159930669], [-77.39870349387853, 34.57827242996194], [-77.39869454808908, 34.57826447900491], [-77.3986846693977, 34.57825965384325], [-77.39867886929181, 34.57824908878544], [-77.39867411979618, 34.578240890689116], [-77.3986717790099, 34.57823358741598], [-77.39866909404208, 34.5782256146299], [-77.39866715844084, 34.57821535927225], [-77.39866377219815, 34.578199577321676], [-77.3986716381649, 34.578188177060625], [-77.39867887221692, 34.57818207412526], [-77.39870205299954, 34.57818223173566], [-77.39870349781798, 34.57818154490817]], [[-77.34398054447018, 34.53031921731686], [-77.34398684000547, 34.530331615339506], [-77.34399278370122, 34.53033486513305], [-77.34401568370907, 34.53033995772315], [-77.34402341004548, 34.53034575970242], [-77.34402572979673, 34.530347440018055], [-77.34402447725584, 34.53035826793003], [-77.34402448979019, 34.5303609055606], [-77.34401910133076, 34.53036341315304], [-77.3440162937523, 34.53036471969741], [-77.34401460275066, 34.53036615345454], [-77.34401183296681, 34.5303676370933], [-77.34401003146975, 34.53037031039499], [-77.34400950734583, 34.53037071190697], [-77.3440066696038, 34.53037288579635], [-77.34400440405835, 34.530378661097636], [-77.34400407892127, 34.530379143579346], [-77.34400395543551, 34.53037932682398], [-77.34400368071104, 34.530379734496684], [-77.34399103061926, 34.53038878065357], [-77.3439789650152, 34.53038765007585], [-77.34397654803496, 34.53038310483409], [-77.34397141633683, 34.53037345444124], [-77.34396898975132, 34.530368891132596], [-77.34396639931487, 34.53034708261966], [-77.34396346027569, 34.53033908430051]], [[-77.39941100610162, 34.57806822580032], [-77.3994089743389, 34.578064592734535], [-77.39940533077376, 34.57806409664563], [-77.39940290306956, 34.578062761043974], [-77.39940089542193, 34.57806119630163], [-77.3993991745391, 34.57805985506105], [-77.39939355800503, 34.57805747550366], [-77.3993991747625, 34.57805349554139], [-77.39940050059568, 34.5780550449923], [-77.39940225296625, 34.57805314414675], [-77.39940229163945, 34.57805293998292], [-77.39940526106078, 34.57805254540777], [-77.3994053311796, 34.57805251909085], [-77.3994053871693, 34.57805251198674], [-77.39940680254574, 34.57805232041602], [-77.39940687028157, 34.578052339470446], [-77.39940720415713, 34.57805265893285], [-77.3994072550441, 34.5780526649025], [-77.3994073385602, 34.57805267469993], [-77.39940763981909, 34.57805263422818], [-77.39940778775389, 34.57805277509584], [-77.39940797326594, 34.57805290774399], [-77.39940802458176, 34.5780529554749], [-77.39940817105861, 34.57805313598017], [-77.39940819162298, 34.57805329085955], [-77.39940821695379, 34.57805338154409], [-77.39940828748988, 34.578053408329154], [-77.3994082885221, 34.57805348418918], [-77.39940825938109, 34.5780535341184], [-77.39940828303286, 34.578053621078524], [-77.39940830239962, 34.57805368949825], [-77.39940831313302, 34.57805378855073], [-77.39940831375047, 34.57805379085071], [-77.39940831377815, 34.578053792207456], [-77.39940834838043, 34.57805389017502], [-77.39940835028361, 34.57805403359796], [-77.3994083597478, 34.5780540958463], [-77.39940837674877, 34.57805447293701], [-77.39940837996369, 34.578054507552274], [-77.39940840929029, 34.57805482331263], [-77.39940883352824, 34.57805481420388], [-77.39940932192613, 34.578055200879575], [-77.39940954923802, 34.57805639651923], [-77.39940987979489, 34.57805685271052], [-77.39941139585865, 34.578058218609364], [-77.39941148732372, 34.57805934053931], [-77.39941271927111, 34.57806001709211], [-77.39941463362715, 34.57806106840553], [-77.39941764357832, 34.578063026819066], [-77.3994207414494, 34.5780634828492], [-77.39942494457027, 34.57806621457455], [-77.39941764312252, 34.5780760880991]], [[-77.39937918996164, 34.578044647207896], [-77.3993808616605, 34.57804587169921], [-77.39938106227382, 34.578046010613825], [-77.39938566558754, 34.57805069102757], [-77.39938042296932, 34.57804640770172]], [[-77.3440179726442, 34.53036980800315], [-77.34401790906432, 34.53036962478368], [-77.34401809974239, 34.530369513917364], [-77.3440182725094, 34.53036958109779], [-77.34401833076802, 34.5303698300787]], [[-77.3440176410687, 34.53036906342942], [-77.34401772923357, 34.530368958488005], [-77.34401785857457, 34.53036903213375], [-77.34401779074621, 34.53036908203706], [-77.34401772511202, 34.53036913706525]], [[-77.30488900656508, 34.52871671328778], [-77.30465855656382, 34.52814027568283], [-77.30589207673593, 34.52795826334247], [-77.30549551240442, 34.52854809762149]], [[-77.34967311015626, 34.55160762380555], [-77.34984184975558, 34.551632604320936], [-77.34986875286297, 34.55163676981193], [-77.34987647168734, 34.5516396033975], [-77.34988222766283, 34.55164362875411], [-77.34988396249584, 34.55165309718994], [-77.34995323310781, 34.55175582100754], [-77.34997916282015, 34.55180326638755], [-77.34998805220164, 34.55187322066416], [-77.35008604423147, 34.55196375934369], [-77.35009195889825, 34.55198067825584], [-77.35011185520837, 34.55201237650295], [-77.35011518411422, 34.55209974633935], [-77.35015013949456, 34.552156624554385], [-77.35024736114272, 34.552246354517386], [-77.35027658522081, 34.552302315503745], [-77.35031596277132, 34.55231567351382], [-77.35031329062976, 34.55235877997399], [-77.35036073744274, 34.552480005980975], [-77.35044218042214, 34.552542330510406], [-77.35050218228459, 34.552614348611556], [-77.35059997261048, 34.552764443683024], [-77.35062743664986, 34.5527923693485], [-77.35087744793438, 34.552813142526574], [-77.35101787968212, 34.552887574696754], [-77.35113287504475, 34.55286124588925], [-77.35125376246387, 34.55281641601278], [-77.35127504462, 34.55278970142495], [-77.35128639274164, 34.552745092375815], [-77.3513061334988, 34.55271770911276], [-77.35128472343388, 34.55266589777247], [-77.35122094205781, 34.55259404611391], [-77.35115960551639, 34.55259965911846], [-77.35118773000043, 34.55255744615893], [-77.35102748279974, 34.55246980027707], [-77.35101942591552, 34.55246435905621], [-77.35101847691716, 34.55245939384006], [-77.35100598638329, 34.552447467394714], [-77.3509494117289, 34.55239665182652], [-77.35089890359714, 34.55235419161416], [-77.35088312951979, 34.55232612092126], [-77.3508355479734, 34.55227926687187], [-77.35079439524995, 34.55224682127848], [-77.35078837004794, 34.55221738383363], [-77.35076476649385, 34.55217431448469], [-77.35075796872741, 34.5521296529386], [-77.35074020589632, 34.5520697559218], [-77.3507216150401, 34.55201247406392], [-77.35069469408258, 34.55198597085804], [-77.35066542683965, 34.55189814980305], [-77.35064878547433, 34.55186380158456], [-77.350613420571, 34.55180610244254], [-77.35058000971178, 34.551788031874324], [-77.35055375242608, 34.55173064409228], [-77.35055371479807, 34.5517305961747], [-77.35049908091298, 34.55167726795623], [-77.35048779515954, 34.55165979136257], [-77.3504756106964, 34.551558235047125], [-77.35046059782617, 34.55151040155908], [-77.35039193024997, 34.551490963384545], [-77.35038971692113, 34.5514481856389], [-77.35043239337372, 34.55142320695023], [-77.35042359758648, 34.551406663363075], [-77.35037771117801, 34.551388708127426], [-77.35037308059415, 34.55138454506095], [-77.35036600400977, 34.55135547224212], [-77.35034558252995, 34.55133212653335], [-77.35031337733383, 34.551309037109384], [-77.35027018742022, 34.55125373194167], [-77.35024940675538, 34.5512235567528], [-77.3502024874172, 34.551151577553185], [-77.35015671967426, 34.551114484847176], [-77.35007823852939, 34.55106400946775], [-77.35003472061734, 34.55103715203319], [-77.34993430492369, 34.55105663668975], [-77.34988096916969, 34.55110564206071], [-77.3498273068958, 34.551128760727195], [-77.34973127195687, 34.55114606399865], [-77.34968352956321, 34.55115466605776], [-77.34951442351365, 34.55118945280894], [-77.34948864705346, 34.5510925270464], [-77.34948785522296, 34.55108887517729], [-77.34948801779126, 34.55108830565083], [-77.34948764715233, 34.55108766576259], [-77.34948883645191, 34.55108429427958], [-77.349549866234, 34.550993751256655], [-77.3495892809643, 34.550984809748044], [-77.34963184692168, 34.5509451974009], [-77.34964447314545, 34.55091559759055], [-77.34964243806851, 34.550913070664365], [-77.34964171750015, 34.55091212270388], [-77.34964009358791, 34.550909399568205], [-77.34962009129114, 34.55090373273664], [-77.34959123311589, 34.55089994941713], [-77.34958926080577, 34.550891472021476], [-77.34958895686195, 34.550890164319796], [-77.34954275953388, 34.55087368194481], [-77.34951187670137, 34.55088968151445], [-77.34950784131087, 34.55087123468152], [-77.34952547348679, 34.550857689145865], [-77.3495635842182, 34.55085055937193], [-77.34959256472885, 34.55084206402408], [-77.34962073640015, 34.55084195072062], [-77.34967773568192, 34.55082453138731], [-77.34969096901565, 34.55083125526155], [-77.34969899322874, 34.5508179366405], [-77.34971533613685, 34.5508107722927], [-77.34979083934664, 34.55075670949853], [-77.3498548111699, 34.5507907007727], [-77.34988246473017, 34.55079031117933], [-77.34988818898367, 34.55079174746929], [-77.34989645354636, 34.550789834046576], [-77.34997712370576, 34.55077903100358], [-77.34998665464205, 34.55077826525503], [-77.349996266914, 34.5507763097736], [-77.35003591109547, 34.55077049634073], [-77.35005372066182, 34.550773220187466], [-77.35006627514545, 34.550771917812476], [-77.35008517226213, 34.550762522021856], [-77.35009587950205, 34.55076268773636], [-77.35009370356264, 34.55075632195806], [-77.3500907108824, 34.550753429400764], [-77.35008554005566, 34.55074652991573], [-77.35004460971253, 34.55072797023877], [-77.34999072064392, 34.55070993695593], [-77.34998932819981, 34.55070945704692], [-77.34997595138292, 34.55070432795024], [-77.3498896393134, 34.5507286918336], [-77.34983253181638, 34.550707411267524], [-77.34981800217804, 34.55067358736647], [-77.34975335736394, 34.550646635870415], [-77.34976360466224, 34.550620210384366], [-77.34969622304061, 34.55060285066964], [-77.34960755657663, 34.55063627055342], [-77.34959067444412, 34.55064103388139], [-77.34949746555185, 34.5507092052761], [-77.34933017986296, 34.550621377501], [-77.34931356825726, 34.550617345238315], [-77.34930422501452, 34.55057575154528], [-77.34928774528223, 34.550516203921326], [-77.3492573753874, 34.550509443918315], [-77.34928553382164, 34.550492543086065], [-77.34930655369267, 34.550474539352315], [-77.34935544306546, 34.55046498346752], [-77.34942195723748, 34.55043473900581], [-77.34942402973539, 34.550413090399964], [-77.34945308806918, 34.550358869598114], [-77.34943239936763, 34.5503464182935], [-77.34942165856725, 34.55031040159618], [-77.34945562476165, 34.550297299337245], [-77.34947026165347, 34.55027195740328], [-77.34946276892086, 34.55026310085315], [-77.34945903300174, 34.55024649361478], [-77.34945103547922, 34.55026260132623], [-77.3494272982655, 34.550259768442444], [-77.34942721219007, 34.55025100813471], [-77.34945468565942, 34.55023622927143], [-77.34944184309884, 34.55021859390036], [-77.34942582901986, 34.55020977928854], [-77.3494108736091, 34.550206588368674], [-77.34936470589807, 34.550216616945384], [-77.34935899285605, 34.55021781033135], [-77.34932977359523, 34.55024304696497], [-77.34931510032804, 34.550256316287005], [-77.34931706392341, 34.550259502362536], [-77.34931144127943, 34.550262108620394], [-77.3493081554189, 34.55025940341951], [-77.34922939290595, 34.55027893472112], [-77.34921276279032, 34.55028486021554], [-77.34915815855176, 34.55030636569444], [-77.34911370340026, 34.55032416272414], [-77.34905232843768, 34.550332284166075], [-77.34894919497127, 34.550328868744515], [-77.3489747220226, 34.55039100124626], [-77.34898283845052, 34.55042654008282], [-77.34901277416166, 34.5504447183199], [-77.34903097344294, 34.55043076137882], [-77.34908156716189, 34.55043084093562], [-77.34909538788865, 34.55044094661969], [-77.34907368362664, 34.55045154568232], [-77.34903569529793, 34.55048013908828], [-77.34904630316365, 34.55050031754149], [-77.34901108810226, 34.550517988874304], [-77.34898671351695, 34.55053341529671], [-77.34896163306038, 34.55053438834835], [-77.34894809698177, 34.550531824464365], [-77.34892344752657, 34.5505268942704], [-77.34891306656345, 34.55051217565829], [-77.34890310888697, 34.55052982101261], [-77.34890726466736, 34.550532548449674], [-77.34891265180308, 34.55053019885246], [-77.34893028076071, 34.550541212258715], [-77.34892051821453, 34.55055269050952], [-77.34892358283207, 34.55055747738791], [-77.34892121701581, 34.55056363854831], [-77.34891175495594, 34.55056917088549], [-77.34888459882752, 34.55057986702282], [-77.34886216883851, 34.55059126375573], [-77.3488596126034, 34.55059575582493], [-77.34885495569334, 34.55059795544237], [-77.34881247497242, 34.55063443567455], [-77.34881221339342, 34.55063470863662], [-77.34881217884343, 34.55063476906115], [-77.34881165391162, 34.55066539172959], [-77.34882106995691, 34.55068827202841], [-77.34882468711697, 34.5506941188356], [-77.34882479770792, 34.5507030061262], [-77.34882670499846, 34.5507244310502], [-77.3488095437496, 34.550745405741765], [-77.34879720127968, 34.55075167296323], [-77.3487911830986, 34.55076014521494], [-77.34879473698439, 34.55076853469652], [-77.3487850791887, 34.55080787018048], [-77.34877475984197, 34.550823713665714], [-77.3487745796571, 34.5508441248744], [-77.34879691765241, 34.55087572747431], [-77.3488028552312, 34.55088087593679], [-77.34880263954543, 34.55088323422645], [-77.34882557632704, 34.55093881151609], [-77.34886627989745, 34.550955762923955], [-77.34890284449972, 34.55095637074379], [-77.34893221164548, 34.55096621869917], [-77.34893448574621, 34.55098434468599], [-77.34893949872983, 34.551007208583044], [-77.34893353897506, 34.551015083514386], [-77.3489411895373, 34.55101976543435], [-77.348950420404, 34.55102164177771], [-77.34899050625734, 34.55103203052613], [-77.34899921236111, 34.5510340702699], [-77.34901077270142, 34.55102745854458], [-77.34901165918059, 34.551034444570114], [-77.34904825967477, 34.55103540205353], [-77.34905879089577, 34.55102766227002], [-77.34906031705046, 34.55100390653856], [-77.34905983224176, 34.550990340301055], [-77.3490491991599, 34.550994573950675], [-77.34900886292323, 34.550973641772806], [-77.34905037435368, 34.55094350244756], [-77.34906677742208, 34.55094495420378], [-77.34909981635786, 34.55092767900962], [-77.34917352358825, 34.55094994684232], [-77.34917345558506, 34.55096471262868], [-77.349197066222, 34.55096705146255], [-77.3492346551504, 34.55096455263782], [-77.34926304476859, 34.55095726904278], [-77.34925186063205, 34.5509692765451], [-77.34925097347659, 34.550972493629644], [-77.34921842573797, 34.55099102776567], [-77.34919636276497, 34.550997624604705], [-77.34918701697816, 34.55100346655347], [-77.34918816965772, 34.551009044438615], [-77.34918928779298, 34.551013073492456], [-77.34919603026472, 34.55101207549272], [-77.34925003629823, 34.55102745074129], [-77.34925384070533, 34.55106079939773], [-77.34922965398654, 34.55108631110297], [-77.34923198977663, 34.55109454641266], [-77.34921628488186, 34.551113326534264], [-77.34920229849752, 34.55112942165838], [-77.3491992581433, 34.5511336156841], [-77.34919305978528, 34.55114117640757], [-77.34919210086689, 34.55113162410427], [-77.34918928237198, 34.551131294708945], [-77.34916889277955, 34.55112500888947], [-77.34916705724868, 34.55112040229011], [-77.3491637965246, 34.55111635900198], [-77.3491641601542, 34.55110430725124], [-77.34915497888237, 34.551099371008455], [-77.34914508009881, 34.551093442731556], [-77.34914061957973, 34.55109239348651], [-77.34913994457139, 34.55108057618733], [-77.34911658308452, 34.551080551079494], [-77.34912102995875, 34.55106471718811], [-77.34909673060224, 34.55106178304901], [-77.34907959026333, 34.55107538164694], [-77.34903974975018, 34.551065874045726], [-77.34899840276496, 34.55106925277338], [-77.3489597966897, 34.55107918244019], [-77.34892951920935, 34.55110746971555], [-77.34894532590738, 34.551137314575485], [-77.34892520880246, 34.55116929515821], [-77.3489344761765, 34.551191053044334], [-77.34894327115973, 34.55122790115951], [-77.34896659154543, 34.55124190389628], [-77.34897615542741, 34.55127343169158], [-77.34897933599787, 34.551283916611666], [-77.34898105742782, 34.55129129849514], [-77.34899312353456, 34.551298671740206], [-77.3490283034098, 34.551315891895754], [-77.34909094157359, 34.55131336912523], [-77.34911630970893, 34.55130964631832], [-77.34917861713434, 34.5513098594708], [-77.34918913459867, 34.55131177031996], [-77.34919651976749, 34.55130929925376], [-77.34922331882402, 34.55131001237404], [-77.34923794214346, 34.55132353000812], [-77.34925987908079, 34.551321701347135], [-77.34927207864547, 34.551355340458876], [-77.34927672673079, 34.5513635320442], [-77.34928035718687, 34.55136654721714], [-77.34927557079303, 34.55142490358721], [-77.34928440091488, 34.55143737642192], [-77.34931039634247, 34.5514644987984], [-77.34935273508425, 34.55147500462593], [-77.34938119020998, 34.551496797566664], [-77.34940867674192, 34.55151081932086], [-77.34947816043274, 34.55154835994894], [-77.34955977783304, 34.55156762075527], [-77.34957317840593, 34.55162605507285], [-77.3495738811907, 34.5516267964771], [-77.34957392502456, 34.551627151428534], [-77.34955668652323, 34.55169047608635], [-77.34952798085222, 34.551728252817725], [-77.34947188237474, 34.55182125552639], [-77.34947082670791, 34.55182463229125], [-77.34947106390833, 34.551825207974034], [-77.34947110852889, 34.5518256214521], [-77.34947163142262, 34.55183216396325], [-77.3495235911424, 34.551906592635866], [-77.34950340010506, 34.55194296509539], [-77.34950606287242, 34.55196597088786], [-77.34951089431296, 34.551972489266696], [-77.34948162096862, 34.55198512492987], [-77.3494811762377, 34.55199902323645], [-77.34951397965213, 34.55200264788354], [-77.34949698572048, 34.552023649712865], [-77.34950406082415, 34.552034677846976], [-77.34948646518619, 34.55204957818799], [-77.34948522420667, 34.55205630022808], [-77.34949590418363, 34.552066454224466], [-77.3494925646131, 34.55208359426815], [-77.34949450174526, 34.552109620560394], [-77.34949036709757, 34.55212845624544], [-77.34948914951009, 34.5521440283666], [-77.34949196817263, 34.55217187711316], [-77.34949306472048, 34.55218927326291], [-77.3494964381992, 34.55220967113856], [-77.34949711795943, 34.55222832049277], [-77.34949932886295, 34.55224957704681], [-77.34949961610741, 34.55227331351892], [-77.34949927316606, 34.55228702955456], [-77.34949788641661, 34.55231098983439], [-77.34949397895954, 34.55233266632456], [-77.34949367337103, 34.55234219871228], [-77.3494951927434, 34.552350456447314], [-77.3494942057174, 34.552357423411074], [-77.34949446841645, 34.55236395247943], [-77.34949073104984, 34.552373224728555], [-77.34950766306429, 34.552399299147915], [-77.34950974369005, 34.55239978700344], [-77.34955661851225, 34.55240465889723], [-77.34964708927706, 34.552411929404165], [-77.34964868224364, 34.552415346581164], [-77.34965458468001, 34.55241297617727], [-77.34965862383568, 34.55241278537231], [-77.34966118014339, 34.55240990166267], [-77.3496634826625, 34.552404148673475], [-77.34971722334195, 34.55234063154175], [-77.34972098981103, 34.552318941907814], [-77.34973709101708, 34.55227656721671], [-77.34973885952347, 34.5522264392595], [-77.34971838749672, 34.5521568482946], [-77.34967562309726, 34.55204848219453], [-77.3496785348689, 34.55204017285945], [-77.34967641879291, 34.55203232268203], [-77.34970764606547, 34.551974778374614], [-77.34969947464536, 34.551935897037275], [-77.34972380505813, 34.551911247748485], [-77.34970133368273, 34.551812609896395], [-77.34971993456402, 34.551789394271694], [-77.34968772401581, 34.55178241012399], [-77.34966962557687, 34.5517591075209], [-77.34962572426423, 34.551708639581626], [-77.34959510685042, 34.55168494721778], [-77.34957533668867, 34.55162710534156]], [[-77.34205040214522, 34.52884043039552], [-77.3420545254788, 34.52884032644508], [-77.34205509067723, 34.528836882702706], [-77.34201449854692, 34.528820839123696]], [[-77.34182183789316, 34.536799983540746], [-77.34166385777704, 34.53691281405706], [-77.34162738848867, 34.53695372256801], [-77.34156948773392, 34.53698477905198], [-77.34145252282752, 34.53706562510426], [-77.34140406200787, 34.53709340392987], [-77.34136957310253, 34.53714206957517], [-77.34133621373341, 34.537204765910076], [-77.34132910941021, 34.537305314831286], [-77.3413191157386, 34.537357990395506], [-77.34131545653368, 34.537452570320085], [-77.34135030076759, 34.53756402936179], [-77.3413530847369, 34.53757363020634], [-77.34137686132757, 34.53768855562734], [-77.34143526222844, 34.5377527959037], [-77.34152913227784, 34.53778906037031], [-77.34155085154256, 34.53779131941951], [-77.34155751496812, 34.53778910103221], [-77.34163778219762, 34.53777343056427], [-77.34174008373431, 34.53775377665723], [-77.34174801732054, 34.537753054849105], [-77.34175564377972, 34.53775173835508], [-77.3417699122547, 34.537754422946705], [-77.34189428011435, 34.53776751723359], [-77.34190081585814, 34.53783202080187], [-77.3419106278558, 34.537856589434774], [-77.34190618645381, 34.53787917973975], [-77.34191050462644, 34.53791781184538], [-77.34189277879432, 34.537949659363434], [-77.34189346234774, 34.537952639894755], [-77.34190719731819, 34.53797949230735], [-77.34187467685035, 34.53800559455098], [-77.34186194284683, 34.53803332510615], [-77.34185522762539, 34.53804817318513], [-77.34185441871088, 34.53805783234124], [-77.34183880869983, 34.53807117417673], [-77.34174429249113, 34.53812233866418], [-77.34173942288567, 34.53812504552251], [-77.34173701630739, 34.53812638325808], [-77.34169917871463, 34.538230659635474], [-77.34169970033824, 34.538254160663826], [-77.34169780195916, 34.538278183642255], [-77.34168212283191, 34.538317893952595], [-77.34168505371905, 34.53834798255699], [-77.34168510542781, 34.538348125050554], [-77.34169445636957, 34.53837732438046], [-77.34169774267305, 34.538398899124786], [-77.34169530617594, 34.538438406797184], [-77.34171205143151, 34.538485323785935], [-77.34169561001828, 34.538499567738256], [-77.34170409760195, 34.538514761692134], [-77.34173011164978, 34.53852806234754], [-77.34175315330029, 34.53850533196303], [-77.34175926579867, 34.53849041055], [-77.3417751174375, 34.538461028812364], [-77.34179780115028, 34.53842366237465], [-77.34181049884263, 34.53840904866941], [-77.34183173184257, 34.538377496099734], [-77.34184543725253, 34.538355604976246], [-77.34185821630004, 34.53830807849828], [-77.3418738821905, 34.538265633433745], [-77.34188805341616, 34.538227065011384], [-77.34189736379001, 34.538202936554015], [-77.3419359568559, 34.5381141589926], [-77.34194096715044, 34.53809996375271], [-77.34194232466506, 34.53809684836137], [-77.34194477482278, 34.538091325616875], [-77.34196616003754, 34.53803221477982], [-77.34197082973003, 34.53801127712455], [-77.34197327509162, 34.53800058888893], [-77.3419748450136, 34.537992256653794], [-77.34197861027481, 34.53796921903073], [-77.34198354646685, 34.53794132020384], [-77.34199226981309, 34.53790604931193], [-77.34199868478804, 34.53787966306977], [-77.34211798627166, 34.53782675924505], [-77.34213936232045, 34.53780579146467], [-77.34220776947612, 34.53773304729082], [-77.34233801074764, 34.53770332071848], [-77.34246716606083, 34.537610923057656], [-77.3426093139638, 34.53751125723196], [-77.34268290038085, 34.537467544302004], [-77.34273690715625, 34.53742904524956], [-77.3428291106744, 34.53735722689323], [-77.34287845322702, 34.5373143414095], [-77.34293701858353, 34.53726314063296], [-77.3429818487073, 34.53721284353099], [-77.34303580185323, 34.53714254117331], [-77.34311197979726, 34.53707171234234], [-77.34311510671986, 34.537056948111086], [-77.34309444032503, 34.536980135111456], [-77.34307085265064, 34.53695521966208], [-77.3429474534023, 34.53685113814454], [-77.34294791964416, 34.53684965204614], [-77.34293261619669, 34.53673028821483], [-77.34290252271023, 34.536642656642485], [-77.34288531672547, 34.536614683656275], [-77.34292041211374, 34.53658957858583], [-77.34295475939278, 34.53649480623607], [-77.34303691774554, 34.536470463632234], [-77.34295552392416, 34.53646169533766], [-77.34293790245266, 34.53637454391672], [-77.34293348820545, 34.53634754791997], [-77.34308626854818, 34.53621854443545], [-77.34315828319689, 34.5361809889299], [-77.34320239558936, 34.5361744209614], [-77.34346577483772, 34.53610987027102], [-77.3435537846741, 34.53605336021533], [-77.34374984055832, 34.53587825561926], [-77.34377117538145, 34.53576174619469], [-77.34386933400592, 34.535616244119055], [-77.34395743365624, 34.53557263880649], [-77.3439771236202, 34.53558823147621], [-77.34430124688858, 34.53555410123925], [-77.34433254035655, 34.53556065139392], [-77.34435046356045, 34.53555194196842], [-77.34435351848754, 34.5355484352193], [-77.34435416230673, 34.53554648781171], [-77.34435759380516, 34.53554169466582], [-77.34454400395214, 34.53527435339072], [-77.34462529161515, 34.535183942766594], [-77.3446479469025, 34.53513698808838], [-77.34468871849427, 34.53509062129159], [-77.34473307170808, 34.53501623928432], [-77.34473406276815, 34.53500218760438], [-77.34474041257886, 34.53499158847134], [-77.3447562818653, 34.5349768791999], [-77.3448466397204, 34.53486357961047], [-77.34489782577401, 34.534819821467565], [-77.34493838945119, 34.53474020858832], [-77.34494771311986, 34.53472662674361], [-77.34495082935786, 34.53472142621579], [-77.3449586966251, 34.53471069215433], [-77.34501685108168, 34.534629367964335], [-77.345039874616, 34.53459095599713], [-77.3450730723387, 34.53453253913874], [-77.34515804615923, 34.53445332667438], [-77.3451603092329, 34.53445121704068], [-77.34516055869027, 34.53445092965209], [-77.34516096859522, 34.53445064109585], [-77.34517266113613, 34.53444226787097], [-77.3453664379862, 34.534302755522695], [-77.3453700642343, 34.53429862552626], [-77.34537019106622, 34.53429280154214], [-77.34540907677047, 34.53423180701283], [-77.34542605582496, 34.53420758020694], [-77.34543972646725, 34.53417984836048], [-77.3454475427445, 34.53416506713701], [-77.34544134258205, 34.534152923432885], [-77.34544000590179, 34.53415085038717], [-77.34543903279452, 34.534150204680515], [-77.34542328768067, 34.534137954756105], [-77.3454186903499, 34.53413542885084], [-77.34538904430714, 34.53411227959576], [-77.34536592371668, 34.534074192152815], [-77.3453532276717, 34.534064288955264], [-77.34534011277863, 34.53405811543726], [-77.34532613183697, 34.53403474258604], [-77.34526226102597, 34.53394690764936], [-77.3453408236065, 34.533832326447595], [-77.34534391298475, 34.53379500560833], [-77.34535142052589, 34.5336892584798], [-77.34535174010512, 34.53355042291881], [-77.34536655582978, 34.533442260808826], [-77.34537726949233, 34.53332205168101], [-77.34537745613666, 34.53331828258766], [-77.34537847551658, 34.53331504505265], [-77.34541102392106, 34.53319104236152], [-77.34547201978856, 34.53311218875981], [-77.34548031690238, 34.5330027282307], [-77.34548668382823, 34.532935335692954], [-77.34549135326073, 34.532873207620185], [-77.34543014605396, 34.53279934362925], [-77.34539560113649, 34.532787354632674], [-77.3453394410121, 34.53274730525105], [-77.34529863995041, 34.532736471172626], [-77.34528041583671, 34.532731632039095], [-77.3452524848899, 34.53272421540011], [-77.34525033686458, 34.53270333505531], [-77.34525026583549, 34.53269410923947], [-77.34525026356054, 34.53269393255624], [-77.34525028758786, 34.532693760640385], [-77.34525062875765, 34.532690679358936], [-77.34525169017948, 34.53267842603969], [-77.34525096025452, 34.53267630655116], [-77.34524230963707, 34.53266996110987], [-77.34522118346192, 34.53266751446361], [-77.34521135293653, 34.53266321724105], [-77.34520239827434, 34.53265439742857], [-77.34517164729886, 34.53263292509286], [-77.34513680870535, 34.532618450273375], [-77.34510996104736, 34.532563352093646], [-77.34510927785328, 34.53256120680604], [-77.34510882586449, 34.53255978752269], [-77.34509064046517, 34.53250268357422], [-77.3450116296806, 34.53241593661586], [-77.34498649194414, 34.53241100859294], [-77.34481503528006, 34.53243005632233], [-77.34465551503673, 34.532466324787045], [-77.34465663126467, 34.532565132658576], [-77.34472359353832, 34.532609940184784], [-77.34472531248112, 34.53261645524195], [-77.3447277432644, 34.532625682490625], [-77.34473339120997, 34.53267649769075], [-77.34477249671751, 34.53277166524902], [-77.34478101681225, 34.5327920548052], [-77.34478514676478, 34.532804710952334], [-77.344804633012, 34.532880967092076], [-77.34481217754913, 34.532909981000465], [-77.34483038563106, 34.53301182665779], [-77.34483204673745, 34.53302953188558], [-77.34484613142044, 34.53305590396438], [-77.34483218177137, 34.533251814790546], [-77.34483426946456, 34.53327403172979], [-77.34484281969688, 34.533302685277974], [-77.34479408444507, 34.53333822095094], [-77.34458146976058, 34.53344152241647], [-77.3443967211722, 34.53354717994441], [-77.34434993743295, 34.533559539485324], [-77.34432131211224, 34.53359265809105], [-77.34431803722137, 34.533640854444364], [-77.34421580747417, 34.533852657892496], [-77.34426647214838, 34.53392121839679], [-77.34428249622187, 34.533965472459414], [-77.34438617340638, 34.53400430795188], [-77.34444530026497, 34.53402725152031], [-77.34453161536909, 34.534052038213815], [-77.34458105010359, 34.53406480456726], [-77.34468676163664, 34.53408589198047], [-77.34477640985826, 34.534104372945365], [-77.34484191022915, 34.53412980114504], [-77.34488352892807, 34.53417835110639], [-77.34488037385916, 34.534190343093854], [-77.34485466902618, 34.534250375154514], [-77.3448379333514, 34.5342938801453], [-77.34478020656444, 34.534383499128914], [-77.3447791488853, 34.53438946129793], [-77.34476955394122, 34.534401561981056], [-77.34469057709379, 34.53447054225296], [-77.34459947347142, 34.53453191353908], [-77.34456314325675, 34.53465690257738], [-77.34436975089918, 34.53471604332929], [-77.34414019021888, 34.53474080889928], [-77.34397650259464, 34.53474637364684], [-77.34392656442228, 34.53484380963537], [-77.34391547963874, 34.53487514675994], [-77.34386058137518, 34.53495237607415], [-77.34376603250624, 34.53514146803525], [-77.34370800367498, 34.53523420511174], [-77.3435694254512, 34.53537577417819], [-77.34351621783487, 34.53542222949645], [-77.34346833523124, 34.535614325968375], [-77.34327715354112, 34.53570144344691], [-77.34320035269036, 34.535732268892794], [-77.34316826813247, 34.53574851126886], [-77.34296999429945, 34.53586804414173], [-77.34296974405243, 34.53586840507935], [-77.3429648876551, 34.535871438921596], [-77.34276986032152, 34.536002027746505], [-77.34274432480369, 34.536022920140745], [-77.34266941634374, 34.53621899821252], [-77.34240686132576, 34.53631628822496], [-77.34237764695109, 34.53632536155883], [-77.34236973596968, 34.53632975539726], [-77.34234759796941, 34.536338494585024], [-77.34212200337114, 34.536449310585496], [-77.34208254210151, 34.53648535481736], [-77.3420207394312, 34.53652421359267], [-77.34197117698582, 34.53658958618281], [-77.34195177308393, 34.536614839201015], [-77.3419348706229, 34.53662900815604]], [[-77.34397531517891, 34.530949427063646], [-77.3439587714758, 34.531016553771565], [-77.3439211670882, 34.53107962784496], [-77.34395196679506, 34.531130252307314], [-77.34398909745123, 34.53119226348591], [-77.34401090741942, 34.53121844864957], [-77.34405445840534, 34.53136856297892], [-77.34407074373024, 34.53141451697648], [-77.3440697955121, 34.531425471924344], [-77.34407306394026, 34.53143759949391], [-77.34410522842325, 34.53150909577441], [-77.34412564460042, 34.531539845865886], [-77.34416554420012, 34.531584128593614], [-77.34420284738354, 34.53165114737659], [-77.34424193339765, 34.53174952399903], [-77.3442530645671, 34.5317592493007], [-77.34424868968564, 34.53177149114599], [-77.34428340872819, 34.531884375360036], [-77.34430319245547, 34.53192222090605], [-77.34432496439258, 34.53194618994683], [-77.34438655546656, 34.531991943857456], [-77.34443158444216, 34.53203625597556], [-77.3444677239361, 34.53207951241894], [-77.34451966774205, 34.53209520065437], [-77.34459972013933, 34.53219076976478], [-77.34461398385818, 34.53220403965394], [-77.34461540329269, 34.53220911233286], [-77.34462362880292, 34.53221931269086], [-77.3446486747741, 34.53221460108639], [-77.34482345280755, 34.532065179814246], [-77.34482901813394, 34.53205068896791], [-77.34482655159502, 34.53204933912164], [-77.34482388824537, 34.53204630480561], [-77.34473248406056, 34.531942169262884], [-77.34469925724156, 34.53190431435315], [-77.34468534429516, 34.531887747237974], [-77.34466218886547, 34.53184858900141], [-77.34465152185906, 34.53183140896459], [-77.3446333089159, 34.531799750005916], [-77.3445802045782, 34.53175305333579], [-77.34456185907085, 34.531675550690466], [-77.34454267572997, 34.53160225083148], [-77.34453250510633, 34.53154780042446], [-77.34450082819485, 34.53148586244641], [-77.34448509381589, 34.531389786486514], [-77.3444845703493, 34.5313657919207], [-77.34444842911932, 34.531306237436304], [-77.34437279080987, 34.5311859619524], [-77.34435010690731, 34.53114031985029], [-77.34426462499623, 34.53103406490817], [-77.3442606310479, 34.5310294861758], [-77.34411233476096, 34.53092971221224], [-77.34410016620478, 34.5309095622669], [-77.34406547428648, 34.53089125308847], [-77.34388145886993, 34.530833709994766], [-77.34387075404231, 34.530824317646584], [-77.34385037199678, 34.53083239876671], [-77.34385340304517, 34.53084455851071], [-77.34385621685988, 34.53085281023954]], [[-77.34558959313678, 34.546676957666484], [-77.34566387145705, 34.546690991312865], [-77.34579054016776, 34.54676627542882], [-77.34585793575677, 34.54678807107407], [-77.3460234644525, 34.546793724048875], [-77.345946056636, 34.54664861418464], [-77.3459809638752, 34.54657412769332], [-77.3459098001288, 34.546490014183085], [-77.34587995675015, 34.54645727374813], [-77.34586602463526, 34.54643715624414], [-77.34583351918852, 34.546371732456734], [-77.34581009907576, 34.54635389191348], [-77.34576861160929, 34.546300165284556], [-77.34569351722614, 34.5462482557309], [-77.34567443613322, 34.54623271766557], [-77.34560353077686, 34.546183712788995], [-77.34552259695775, 34.54615043751465], [-77.34548121696554, 34.546099047422516], [-77.34538887189726, 34.54616967743592], [-77.34538163322532, 34.54623295527538], [-77.34541499066911, 34.54632635879161], [-77.34541988159691, 34.54641003557623], [-77.34542974249266, 34.54650476114826], [-77.34544744951077, 34.54654315087927], [-77.34557221248178, 34.546632938339464]], [[-77.39944049985976, 34.579297888023284], [-77.39964198056221, 34.57911255371888], [-77.39978700089407, 34.578914106566344], [-77.39983148797981, 34.57886483284886], [-77.39988689762234, 34.578808901209136], [-77.40031003418406, 34.578462285734474], [-77.40043619632397, 34.57830506385488], [-77.400359625714, 34.5781236655876], [-77.40031639651063, 34.57789777666529], [-77.40018104144491, 34.577813625952416], [-77.4000069842503, 34.57770541360726], [-77.3997870376146, 34.57770214343828], [-77.39961384976749, 34.5778125328556], [-77.39959003053728, 34.57781317816541], [-77.39952601745406, 34.57786851666901], [-77.39945656314546, 34.57787802916383], [-77.39939302426149, 34.577886731444856], [-77.39933034435957, 34.577895316026655], [-77.39925820836585, 34.57790519568421], [-77.39919601649875, 34.57799024897807], [-77.39911091691731, 34.57798002072384], [-77.39917111653656, 34.57806303615899], [-77.39909750753321, 34.57816838146305], [-77.39908139451275, 34.578164762528516], [-77.39899900567161, 34.57815792774305], [-77.39895648546556, 34.57813982474215], [-77.39894146526272, 34.57814031120852], [-77.39890050378125, 34.5781486495341], [-77.39886322281077, 34.57814763509284], [-77.39885125256846, 34.578150571891754], [-77.39880665913866, 34.57811562354613], [-77.39880447432115, 34.5781132757666], [-77.39880200306784, 34.57811189110537], [-77.39875817466415, 34.578063706409694], [-77.39875275403494, 34.57806336209503], [-77.39872656404887, 34.578045886100476], [-77.39870350436198, 34.57803087896383], [-77.39870025702558, 34.57802833201115], [-77.3986635461548, 34.57804014373318], [-77.39865425279416, 34.57804223621502], [-77.39863975905338, 34.578060097556325], [-77.39863961787881, 34.578070884927634], [-77.39863653899536, 34.57808709801205], [-77.39863267235665, 34.578110907151995], [-77.39865424969263, 34.5781126581751], [-77.39867200560872, 34.5781159188886], [-77.39869175441348, 34.57811954557384], [-77.39870350051177, 34.57811948050113], [-77.39873416969697, 34.57809303579102], [-77.39878476632008, 34.578118782408595], [-77.39870964773719, 34.57813624594764], [-77.39870349980659, 34.57813572072628], [-77.39869651678664, 34.57813904026456], [-77.3986672673641, 34.57814976526346], [-77.39865424808079, 34.57814928181337], [-77.39863992273301, 34.57816621732513], [-77.39863944700296, 34.578176873885496], [-77.39863859592143, 34.5781832734913], [-77.39864193375595, 34.57818418761959], [-77.39864405211591, 34.57819215735798], [-77.39864403659273, 34.57820316066031], [-77.39864555600926, 34.578209112713296], [-77.39864433104137, 34.57821865295924], [-77.39864881438604, 34.57822385773732], [-77.39864926342898, 34.57822584151193], [-77.39864338853235, 34.57823205687373], [-77.39864541078695, 34.57823551427895], [-77.39863243077353, 34.57824387523723], [-77.39862961826002, 34.57824535925873], [-77.39862221572707, 34.57824837974232], [-77.39861066584258, 34.5782561600051], [-77.39861331278016, 34.578276200159806], [-77.39860499106986, 34.57828114438241], [-77.39859716003131, 34.57827853077594], [-77.39859970339367, 34.57825732694876], [-77.39857231283494, 34.57827343822356], [-77.39855573992021, 34.57827964598101], [-77.39853176750772, 34.57828867027908], [-77.39850648737843, 34.578308660885654], [-77.39842502132039, 34.57836461458813], [-77.39840798179259, 34.578375145373634], [-77.398401342188, 34.578379237454854], [-77.3983911401174, 34.57838786387663], [-77.39821097093673, 34.5784920684236], [-77.39811747627887, 34.57853889111674], [-77.397955442799, 34.57866301369673], [-77.39787070260446, 34.57873316497051], [-77.39781693869136, 34.57889124491631], [-77.39775089302506, 34.579045939835126], [-77.3976809103762, 34.57912719595423], [-77.397685674517, 34.57940966669701], [-77.39764189164781, 34.57955739844211], [-77.3977042841221, 34.5796697426093], [-77.39781689889043, 34.57963900183397], [-77.39787993904372, 34.579590980001285], [-77.39810769532285, 34.57960141982606], [-77.3982109176162, 34.57958783531244], [-77.39829155716737, 34.57955055696412], [-77.39830942341123, 34.579549516185395], [-77.3983583578885, 34.57950675469704], [-77.3983592272696, 34.579506380997465], [-77.39840792936783, 34.579505715813355], [-77.39844665302931, 34.57948301356696], [-77.39846755814914, 34.57948016285306], [-77.39850643409031, 34.579487065479555], [-77.39853765795215, 34.57946180151277], [-77.39857703932313, 34.57945253911983], [-77.39860493975313, 34.57944573221134], [-77.39862278931294, 34.5794351075644], [-77.39862956657656, 34.57942563027982], [-77.39864247909105, 34.57942565510303], [-77.39865419266638, 34.579422290273506], [-77.39869715788961, 34.57940514388329], [-77.39870247075832, 34.57940332712506], [-77.39870344542882, 34.57940172658034], [-77.39870552291075, 34.57940169832908], [-77.39874210335263, 34.57938724265718], [-77.39875269815597, 34.579381410077204], [-77.39878281998949, 34.579372169938225], [-77.39880195038151, 34.57937262307774], [-77.39882122232927, 34.57935493727206], [-77.39883588810734, 34.579348558264385], [-77.39885120322077, 34.57934849292716], [-77.398866282171, 34.579343918121694], [-77.39890045581973, 34.57932963311957], [-77.39893424259913, 34.579301198351274], [-77.39897724942696, 34.57928198284213], [-77.39899896077678, 34.57929626039091], [-77.39904817932104, 34.57930138873471], [-77.39904821238494, 34.57930138301945], [-77.39904823133425, 34.57930139643832], [-77.39909746371735, 34.57931397160601], [-77.39918288063464, 34.579335060153085], [-77.39919232016567, 34.57933762723747], [-77.39919596644557, 34.57933848488748], [-77.39937345380636, 34.579328596447546], [-77.3993929739837, 34.57933155818398], [-77.3994148417887, 34.57932515383854]], [[-77.34935199937605, 34.550307551167975], [-77.34932141940212, 34.55030970734254], [-77.34931888295277, 34.55029143560481], [-77.34934897057022, 34.5502888619573]], [[-77.3441438140533, 34.53027317059406], [-77.34412780690042, 34.53025423247986], [-77.3440975121236, 34.530207526699996], [-77.34409149637024, 34.53019825215953], [-77.34409041979525, 34.53019290095341], [-77.3440818310859, 34.530182528013235], [-77.34403767737197, 34.53011213811111], [-77.34399598336145, 34.53008958526038], [-77.34399594802723, 34.53002304172381], [-77.34399704398385, 34.52996702292543], [-77.34389266149283, 34.5298751858238], [-77.34388024472581, 34.52986924864722], [-77.34386263439339, 34.52986395263], [-77.34369796167097, 34.52980747528626], [-77.34365471555421, 34.52979855997483], [-77.34364403400521, 34.529772995770315], [-77.34360141263728, 34.52973893250168], [-77.34358758016002, 34.52972868847601], [-77.34356749341521, 34.52972280371648], [-77.34354467369987, 34.529689994107976], [-77.34352065612308, 34.52966833788495], [-77.34351461473781, 34.52966322850674], [-77.34350520841946, 34.52965546055008], [-77.34345230446687, 34.52964502569444], [-77.34345435721109, 34.529677876997084], [-77.3434533528858, 34.5297095846561], [-77.34343056147908, 34.529742505579456], [-77.34343516038831, 34.52976087741909], [-77.34342965426525, 34.529803840900364], [-77.34341679804467, 34.52987613601509], [-77.34342594669893, 34.52997166654652], [-77.34339696788882, 34.53005336308435], [-77.34344801975544, 34.53013973180456], [-77.34347075871075, 34.53017910212568], [-77.34358317336019, 34.53027139103813], [-77.3436068637539, 34.53031745773241], [-77.34362217332226, 34.530388189451855], [-77.34368264542911, 34.53047097705759], [-77.34369420386987, 34.53049271338858], [-77.34369791943769, 34.53049970071051], [-77.34375951167976, 34.530539770419985], [-77.34381526598304, 34.53060522633791], [-77.34381029827378, 34.530646211199155], [-77.34387533825472, 34.53062570791999], [-77.34389501269074, 34.53060573556148], [-77.34390032144921, 34.530592988350136], [-77.34390074938173, 34.53057776805167], [-77.34394800853762, 34.53050733754631], [-77.34395681423769, 34.53046245027635], [-77.34396944605831, 34.530455675040045], [-77.34397744341923, 34.53045357601997], [-77.34401429848958, 34.53042357679102], [-77.34400439008664, 34.530410587810394], [-77.34400472434132, 34.5304085869023], [-77.34402147680663, 34.53039194151373], [-77.34402226236219, 34.53038823905432], [-77.34402252770937, 34.53038413969759], [-77.34402351481609, 34.53038108643132], [-77.34402819866297, 34.53038038653346], [-77.34403500314792, 34.53037891686605], [-77.34404059813274, 34.53037462520721], [-77.34404177946229, 34.53037371906278], [-77.34404926889013, 34.530370337061235], [-77.34405301372014, 34.530368165450376], [-77.34406232992008, 34.53036499726344], [-77.34407753510658, 34.53036866850782], [-77.34410379994137, 34.53034949404167], [-77.34410896593218, 34.530337300162145], [-77.34417701029861, 34.5303083577083]], [[-77.35934568288079, 34.549550766714724], [-77.35935086507348, 34.54954616366256], [-77.35936899996454, 34.54952551599271], [-77.35937183983205, 34.54948193753652], [-77.35934114676564, 34.54947872119689], [-77.35933375848751, 34.54948742087796], [-77.359314528429, 34.54950639336899], [-77.35931494207581, 34.54953581044922], [-77.35932661459758, 34.549549655489656], [-77.3593185658614, 34.549563682668925], [-77.35933936320266, 34.549556646566174]], [[-77.34502251425079, 34.54541655282746], [-77.34495548793058, 34.545375161827515], [-77.34491076871932, 34.5452988813517], [-77.34473048385723, 34.545407533761065], [-77.34478481030581, 34.54544569272997], [-77.34485571572787, 34.54551192608879], [-77.34489131316136, 34.545515816976604], [-77.34490534423747, 34.54553408642619], [-77.34493291623261, 34.5456050152676], [-77.34496347632489, 34.54561883206935], [-77.34500970306576, 34.545667594222266], [-77.34500586418949, 34.54573514336114], [-77.3450252779198, 34.54581112328304], [-77.3450054583594, 34.545912154472845], [-77.34508353295172, 34.54596878832881], [-77.3451622772026, 34.546034857489154], [-77.34528518794254, 34.54608726390707], [-77.34540672554212, 34.545996776832204], [-77.345346309522, 34.54593098142464], [-77.34533000156645, 34.54590796080417], [-77.3452934825027, 34.545816172212774], [-77.34529149589511, 34.54581369479311], [-77.3452319037315, 34.54574083056298], [-77.3451759351092, 34.545710674533765], [-77.34517546803315, 34.54563583085822], [-77.34513542921468, 34.545572472275964], [-77.34510179429742, 34.54552755538124], [-77.34506230671661, 34.545507120986215], [-77.34493804379844, 34.5455000813625], [-77.34504654894424, 34.545448888765875]], [[-77.35601370000654, 34.55165519283325], [-77.35611848367412, 34.5516028978023], [-77.35615445885588, 34.551475425684906], [-77.35619645221078, 34.551564218917896], [-77.35627017072636, 34.551531605247675], [-77.35634995239269, 34.551511126686975], [-77.35650926929087, 34.55144819600602], [-77.35654798077435, 34.55143624192713], [-77.35657048078208, 34.5514293473493], [-77.35657935972347, 34.55141413758807], [-77.35680427802224, 34.5512947276833], [-77.3568945222372, 34.551246353490626], [-77.35688753459068, 34.55121104954713], [-77.35694597345314, 34.55120194434667], [-77.35701807471139, 34.551183864900125], [-77.35705020250545, 34.5511660084737], [-77.35712481542097, 34.551103092531385], [-77.3571403266538, 34.55108855391658], [-77.3571416077998, 34.55108629502913], [-77.35714494944759, 34.551085645801194], [-77.35724077194955, 34.551012887022175], [-77.35724013605665, 34.551010047223336], [-77.35726477103385, 34.55099718555137], [-77.35734450441609, 34.55094405219267], [-77.3573584375394, 34.55093474078698], [-77.35745462943461, 34.55086603539303], [-77.35754388593215, 34.550809999864796], [-77.3575811496412, 34.55078026472145], [-77.35764781652352, 34.55071165724325], [-77.35769468133952, 34.55067186191389], [-77.35772745650738, 34.55063678864812], [-77.35772604840881, 34.55062553452606], [-77.357744518244, 34.55062131511192], [-77.35778473747723, 34.550567335768626], [-77.35777719125541, 34.550526231978836], [-77.35784472613284, 34.550531684547266], [-77.35792428445589, 34.55048603848851], [-77.35784644416135, 34.550456679720895], [-77.3577881579975, 34.5504804374776], [-77.35774775812774, 34.550479877107655], [-77.35773197974254, 34.55050423479871], [-77.35771371049313, 34.550516356036134], [-77.35762202522784, 34.55057492312909], [-77.35754910955593, 34.55058198430775], [-77.35749373042644, 34.55060923328129], [-77.35747897428183, 34.55062950867075], [-77.35744951299317, 34.550644914148116], [-77.35740572162547, 34.550649150300174], [-77.35735086496271, 34.550666437301125], [-77.35731371287463, 34.55069635659746], [-77.35725655615525, 34.550762027300124], [-77.35725277076612, 34.550766336328095], [-77.35725447450811, 34.550768651683], [-77.35725033820924, 34.55076995317237], [-77.35720983190376, 34.550833724052765], [-77.35724626739427, 34.550888844476944], [-77.35715003276654, 34.55086379979131], [-77.35710403685502, 34.55087744169023], [-77.35700524042787, 34.55089576030447], [-77.35695282172753, 34.5509319313889], [-77.35695236679956, 34.55093212796742], [-77.35695214219238, 34.55093275590775], [-77.35692947351403, 34.5509830824044], [-77.35690056467274, 34.55100066046727], [-77.35682979335262, 34.55105876964518], [-77.35679029392563, 34.55107774160659], [-77.35677603958476, 34.5511256421227], [-77.35677905504045, 34.55114056538648], [-77.35678581219547, 34.55116155702801], [-77.35675071731436, 34.55115590917778], [-77.356738755863, 34.55115385514087], [-77.35674343549275, 34.551145693413424], [-77.35674022799128, 34.551139378227454], [-77.35673505128037, 34.551096315044965], [-77.35667312804613, 34.55110673096134], [-77.35665321671777, 34.55112733297981], [-77.35662346400048, 34.55116296515502], [-77.35660663931561, 34.55119348562488], [-77.35660570042995, 34.55119811059816], [-77.35659967044491, 34.55119875902723], [-77.35655314031716, 34.551211138110524], [-77.35648292415962, 34.55122675846347], [-77.35642843600364, 34.55123604933664], [-77.35635590363839, 34.55125150849234], [-77.35628623934046, 34.5512549043385], [-77.35624644624096, 34.55127168881108], [-77.35624026842807, 34.55127933697377], [-77.35620568888757, 34.55131395162504], [-77.35620455871333, 34.55131671226121], [-77.35618741912631, 34.55134815095559], [-77.35618791909465, 34.551367399060155], [-77.35617285761737, 34.55140104361071], [-77.35618921570946, 34.55140909803409], [-77.35615446233588, 34.551475273888144], [-77.3561544493381, 34.55147530104196], [-77.35615442263672, 34.55147531260255], [-77.35595609838452, 34.551564773002994], [-77.3558942321562, 34.55159706557335], [-77.3558313687317, 34.55164423053041], [-77.35582266288115, 34.55172637752273]], [[-77.34475288518406, 34.54505756616079], [-77.34473771674364, 34.54503926390318], [-77.3447210637008, 34.54501299980012], [-77.34464066317533, 34.545053227139576], [-77.34469350460266, 34.54515286060108], [-77.34461911197107, 34.54523906186632], [-77.34457089421593, 34.545308084327516], [-77.34471261698464, 34.54537921082128], [-77.34479181637687, 34.54527629995266], [-77.34485954847406, 34.545233677047904], [-77.34482706100638, 34.54520240619841], [-77.34482454307788, 34.54514918175528], [-77.34481633567502, 34.545137746348715], [-77.34472703016677, 34.54515741340121]], [[-77.34316868912738, 34.536462042329546], [-77.34328177094615, 34.53659705172076], [-77.34343186322451, 34.536590152927126], [-77.34354099726946, 34.53660733535758], [-77.34367149656495, 34.536501575689], [-77.3437091666506, 34.536476745772276], [-77.34374182298232, 34.53641032846883], [-77.34376794669245, 34.53636528937233], [-77.34374463188962, 34.536288628746945], [-77.34373253170457, 34.53625599118156], [-77.3436764164127, 34.53625604856796], [-77.34354972671687, 34.53622915853643], [-77.34340096582677, 34.53629567844841], [-77.34336616254788, 34.53630977523959], [-77.34316255558109, 34.53645238827078]], [[-77.32397817188112, 34.52706826726191], [-77.32394382456675, 34.52710089659748], [-77.32392905443517, 34.52710542055408], [-77.32392342295182, 34.52709095965293]], [[-77.34737394573521, 34.54846451815586], [-77.34737976606901, 34.54845383095002], [-77.34737268670264, 34.548443918929976], [-77.34732669892117, 34.548379587756926], [-77.34727327969787, 34.54834674309555], [-77.34724687337496, 34.548319306155506], [-77.34719711835649, 34.548304629370065], [-77.34709421826999, 34.54830839681505], [-77.34705873482945, 34.548377613525965], [-77.34709816838935, 34.54843181477463], [-77.34711873326522, 34.54849139068466], [-77.34719155949186, 34.54854596148565], [-77.34722864824852, 34.548574448819934], [-77.34725356341727, 34.548594400286014], [-77.34730580846306, 34.5486367471189], [-77.34730786707082, 34.548647791666085], [-77.34731828457296, 34.54866583083367], [-77.347335879675, 34.54870496598462], [-77.34735183856368, 34.54872259812488], [-77.34750805052258, 34.54880260235737], [-77.34751995995236, 34.54883675319938], [-77.34752479266427, 34.54892260353212], [-77.34757510345858, 34.54893973975184], [-77.34766238481183, 34.54897035027087], [-77.34767248003322, 34.548973480076825], [-77.34768241666713, 34.548967234332906], [-77.34768045934919, 34.54895667521852], [-77.34767371024509, 34.548920057928854], [-77.34765723377842, 34.54890354641826], [-77.34762519826666, 34.5488778080294], [-77.34763083667085, 34.54881793878428], [-77.34760769999716, 34.54878826374347], [-77.34760338458034, 34.54877363484381], [-77.34757970583183, 34.54873989130824], [-77.34746326662207, 34.548686636258424], [-77.34750166395736, 34.54863088152652], [-77.34749188525842, 34.54861664011885], [-77.34745468531331, 34.54856546088883], [-77.34738966238915, 34.548467952736225]], [[-77.34579576254879, 34.53416086443783], [-77.34578797605202, 34.534157682531124], [-77.3457705037464, 34.53415790760903], [-77.34576249624071, 34.5341769627523], [-77.3457678431625, 34.53418018312811], [-77.34580458275163, 34.53420231086388], [-77.34580689548537, 34.534203703790006], [-77.34580885536046, 34.53420488419365], [-77.34583258658168, 34.53421917715418], [-77.34584964042298, 34.534229617929775], [-77.34585297888486, 34.534231459134155], [-77.34589569405551, 34.53425718581189], [-77.34593643421859, 34.53427833370244], [-77.34594984593723, 34.53428651615107], [-77.34597540295908, 34.5342727262615], [-77.34599858613979, 34.53423788394497], [-77.34602043912328, 34.5342050407252], [-77.34602979592322, 34.534190978249924], [-77.34605091671541, 34.53415923543499], [-77.3460610056843, 34.534144072539064], [-77.3460658609411, 34.53412842238021], [-77.34607612193672, 34.53407461813707], [-77.34605331890253, 34.53405503696919], [-77.3460299197034, 34.53403494385812], [-77.34601507603873, 34.534022197439214], [-77.34595708787161, 34.533972402358245], [-77.34594813595169, 34.5339761540142], [-77.34583906910508, 34.534036038867725], [-77.34583934919311, 34.534047483807306], [-77.34584839731069, 34.5340516251817], [-77.345847418891, 34.53410220131466], [-77.34584745703148, 34.53410752212546], [-77.3458516194405, 34.53410952439855], [-77.34585107771805, 34.53413503132288], [-77.34585105672625, 34.53413760664414], [-77.34585263715836, 34.53413892298616], [-77.34585250260602, 34.534145049213414], [-77.34585246870756, 34.534146592621404], [-77.34585236786947, 34.534151183824946], [-77.34585233403993, 34.53415272409332], [-77.34585230025664, 34.53415426225659], [-77.345852199188, 34.53415886395662], [-77.34585118621169, 34.534160539884034], [-77.34585444964, 34.53416766938867], [-77.34585446253399, 34.53416771042977], [-77.34585446234222, 34.534167719089155], [-77.3458544804312, 34.534167736657174], [-77.34585444818063, 34.53416773268447], [-77.34585442607724, 34.53416773801613], [-77.34585440490649, 34.53416772735387], [-77.34584221588133, 34.534166225881705], [-77.34583729139463, 34.53416561927172], [-77.3458360997318, 34.53416547247985], [-77.34583313186748, 34.534165106891095], [-77.34582998261614, 34.534164760984936], [-77.34582575918054, 34.53416419870527], [-77.34582014755868, 34.53416350745165], [-77.34581775128379, 34.53416321227241], [-77.34581178330498, 34.534162477121136], [-77.34580543875649, 34.5341651850817]], [[-77.34855622048744, 34.54976505314282], [-77.3485372788396, 34.54978083272585], [-77.34847673269188, 34.549887316791306], [-77.34849320396555, 34.54998277203083], [-77.34850656209652, 34.550021139302096], [-77.34853138440249, 34.55003691898929], [-77.34858799730229, 34.55008020399916], [-77.3486278662709, 34.550109602947174], [-77.3486311170954, 34.550109921786124], [-77.34862968416236, 34.550111285693745], [-77.34866812274838, 34.55014025968447], [-77.34869519933393, 34.55014316813246], [-77.34872573503844, 34.55012203343409], [-77.3487976479479, 34.55014716325158], [-77.34881046680263, 34.55015324083966], [-77.34883743496235, 34.5501502894943], [-77.34883459095269, 34.550134988514195], [-77.34876678599495, 34.550090399100014], [-77.34876182576346, 34.55006936410345], [-77.34873890327917, 34.55003320627572], [-77.34880134523019, 34.55000853419343], [-77.34880299786977, 34.5499627778603], [-77.3487418886924, 34.54985540752271], [-77.34874085839009, 34.54984930944004], [-77.3487424024489, 34.54984270286744], [-77.34873347339791, 34.549785802750314], [-77.3487213472931, 34.54973795478518]], [[-77.34619446769773, 34.54694337209179], [-77.34606857931259, 34.546939876069914], [-77.3460860226965, 34.54702542001647], [-77.34613502193451, 34.54704160145187], [-77.34614633278349, 34.547050851518364], [-77.34616846793125, 34.547036789185746], [-77.34622354328093, 34.54701529556653]], [[-77.35962247786411, 34.548567777352325], [-77.35961953132008, 34.54855878527739], [-77.35962024564452, 34.548550898896366], [-77.35960793830793, 34.54854326879568], [-77.3595953021809, 34.54855455552621], [-77.35958323286121, 34.548564012012], [-77.35959163076095, 34.54857255393142]], [[-77.35956603473643, 34.548229863338804], [-77.35958905333233, 34.548272780441266], [-77.35958224984248, 34.54828872661273], [-77.35961333773903, 34.54830733465057], [-77.35962906226236, 34.54828198591982], [-77.35962458158868, 34.548258340404054], [-77.35962216071447, 34.548247725514514], [-77.35956603708135, 34.54822985515845], [-77.3595660372069, 34.54822985373685], [-77.35956603501766, 34.548229851050216], [-77.35956603258427, 34.54822985433547], [-77.35956603325421, 34.54822985570954]], [[-77.34943640641777, 34.55087644259471], [-77.34944833988543, 34.55087741406807], [-77.34945782169393, 34.55087843275269], [-77.34948823526577, 34.55087739889985], [-77.3494857866787, 34.550900472429376], [-77.34946574855144, 34.55090789464764], [-77.34944357545169, 34.550918382504236], [-77.34943192739519, 34.55091276166932], [-77.34940581073113, 34.55090959174074], [-77.34940688630128, 34.55089312526826], [-77.34944054431125, 34.55088091905009]], [[-77.35645245565156, 34.551321470811374], [-77.35644337527434, 34.55131130296599], [-77.35644631126715, 34.55130683979328], [-77.35645314153233, 34.5512915483108], [-77.35648046279641, 34.55130596371612]], [[-77.35962469763072, 34.54848718491594], [-77.359566892443, 34.548474555938924], [-77.35956063234089, 34.548465920824476], [-77.35955849431795, 34.548474555202915], [-77.35955825504251, 34.548475799667045], [-77.359558054534, 34.548477273989654], [-77.35956028117695, 34.54848126493261], [-77.35957928575549, 34.54850337438046], [-77.35960321741183, 34.54850344063301], [-77.3596085888716, 34.54851484167176], [-77.35961956772165, 34.54850426938364]], [[-77.34293174736129, 34.528991801972595], [-77.34295662726697, 34.528969016921366], [-77.3429444423054, 34.52895558043286], [-77.34293282160502, 34.528945284884315], [-77.34288509709909, 34.52893419287016], [-77.34290591840005, 34.52896112312552]], [[-77.34905725334409, 34.55056774247573], [-77.34905979243162, 34.550567994538255], [-77.34906042194096, 34.55056928442551], [-77.34905828232564, 34.55056913708421]], [[-77.34927297814745, 34.55033119285699], [-77.34929657829889, 34.55032850226197], [-77.34929097021289, 34.55033994840658], [-77.34927843106054, 34.55034223255734]], [[-77.34876292759985, 34.550638444203926], [-77.34878692815187, 34.55062248113216], [-77.34877497917775, 34.550609464035], [-77.34878298617961, 34.55059640748378], [-77.34873924894256, 34.550599278620716], [-77.34873842477332, 34.55063012241952]], [[-77.34916099339213, 34.550401849456826], [-77.34915921273004, 34.55040115946985], [-77.34916104195021, 34.550399739123435], [-77.34916267913684, 34.55039964117264], [-77.34916285987326, 34.5504006346356]], [[-77.3497039803583, 34.55088245941788], [-77.34969805017191, 34.55087446510315], [-77.3497074402559, 34.550862396441005], [-77.34969040647223, 34.55085571034401], [-77.34968638483197, 34.550873896983724], [-77.3496686311976, 34.55087869868817], [-77.34968315326361, 34.550880772147195], [-77.34968980084419, 34.5508820384213]], [[-77.34931151327935, 34.550950767535184], [-77.34930386579727, 34.55093613654032], [-77.34932779687597, 34.55093844735557], [-77.34932480091813, 34.55094632418987]], [[-77.3493843674016, 34.550292104660656], [-77.34937141226334, 34.55027881534847], [-77.34938489944912, 34.55026897923893], [-77.34939182365312, 34.55027587805059]], [[-77.34898877293452, 34.5509535943917], [-77.34899235775815, 34.55097083534264], [-77.3489631111801, 34.55097300995491], [-77.3489649127291, 34.550957479681784]], [[-77.34731269708114, 34.552885697495526], [-77.34731259721377, 34.55288547565264], [-77.3473122246147, 34.55288546757496], [-77.34731235548692, 34.55288565853216]], [[-77.34937010646566, 34.550911956987534], [-77.34938267959461, 34.55091984863951], [-77.34936971974068, 34.5509287660457], [-77.3493566823499, 34.55092358974566]]]]}, "type": "Feature", "id": "demo6", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.16764229531375, 34.6240587373062], [-77.17161026629942, 34.62337085930407], [-77.17313291022201, 34.623002943277875], [-77.17485149622571, 34.622741848402825], [-77.17683553727622, 34.62235677973872], [-77.17755165962575, 34.62235678860806], [-77.18052998324984, 34.62172646812293], [-77.18426864691747, 34.62060364302073], [-77.18624842259916, 34.61957485096954], [-77.18707928356329, 34.61705530016262], [-77.18826640712592, 34.61610928710029], [-77.18905913017427, 34.615326662944724], [-77.19089698893734, 34.61459223502261], [-77.1923593731234, 34.614491072244554], [-77.19731713726459, 34.614347786332544], [-77.19773907159434, 34.6144073998463], [-77.19809058554077, 34.61433118197635], [-77.2016976523925, 34.61444176438076], [-77.20407261950865, 34.614394271431124], [-77.2046146016734, 34.614156082274086], [-77.20793832153996, 34.61257365638042], [-77.20861619517595, 34.611218011907965], [-77.20928906447357, 34.609872236164875], [-77.20952306262356, 34.60940426411146], [-77.2099967112868, 34.609144645235325], [-77.21188256414564, 34.607705283801586], [-77.21534769961787, 34.60629121855284], [-77.2175057189568, 34.605305811316036], [-77.21792052232843, 34.604411506375584], [-77.21885264328897, 34.60335704077623], [-77.2199740576738, 34.60224201031317], [-77.22070335682571, 34.60086043720935], [-77.22112524238558, 34.59956817489196], [-77.2216038750148, 34.59843208225836], [-77.22217442120228, 34.59720568042295], [-77.22271804967889, 34.59603350034492], [-77.2233875508338, 34.59475918502628], [-77.2239433495581, 34.593574500721736], [-77.22423976650033, 34.59288753128569], [-77.22434470475267, 34.5926634772635], [-77.22442674180824, 34.59245542832339], [-77.22471100778981, 34.59199187559966], [-77.22542185283466, 34.59180580641274], [-77.2258237571049, 34.591667113902965], [-77.22615894546051, 34.59160723714035], [-77.22692652215682, 34.591520161364855], [-77.22843081077878, 34.59135712368762], [-77.22972441866213, 34.591202738703814], [-77.22973772054168, 34.59120039145514], [-77.23062356891256, 34.590678445324635], [-77.23107068721337, 34.59036625868343], [-77.23303603338559, 34.589234047522666], [-77.23414871080298, 34.588555523083656], [-77.23620739698882, 34.58804719470353], [-77.23842615932644, 34.58736216199276], [-77.23882480717073, 34.587456724678724], [-77.23905009698605, 34.587224856494], [-77.23932419800235, 34.58688067136482], [-77.24015860772809, 34.586013820615555], [-77.24078987556834, 34.58547661554188], [-77.24179025863884, 34.58483592762475], [-77.24434843864861, 34.5838716903019], [-77.24590487107194, 34.58323761452287], [-77.24759022682888, 34.582581890065875], [-77.24796298538683, 34.582439197311224], [-77.24816253292443, 34.58228688001765], [-77.24873696594244, 34.58188745740684], [-77.24965151555065, 34.5813119834947], [-77.25038444886454, 34.58057651631623], [-77.25281049000293, 34.57892937726726], [-77.25285307271665, 34.57890149094977], [-77.2528783841449, 34.57888756360169], [-77.25300617565479, 34.5788193376009], [-77.25583733175077, 34.577235161892844], [-77.2564456504364, 34.57683890264234], [-77.25757607168036, 34.57617449592243], [-77.2581869687205, 34.57575875070912], [-77.25843595402424, 34.57555435533477], [-77.25960332499842, 34.57487907999366], [-77.25992829421051, 34.574678614781334], [-77.26005291324863, 34.574610842269706], [-77.26119888185318, 34.57388643356644], [-77.26170562816468, 34.57363052276064], [-77.26249975465123, 34.57305937541723], [-77.26250878618019, 34.57304682476234], [-77.26254248967705, 34.57302177146149], [-77.26320711226049, 34.57233708384936], [-77.26343870470056, 34.572177303412346], [-77.26393556700847, 34.57178670319179], [-77.26473212547154, 34.57106459851852], [-77.26570130079153, 34.57046993070011], [-77.26648478577533, 34.56999461817046], [-77.2678158001312, 34.56926125296328], [-77.268235385184, 34.56892282480541], [-77.26840647363937, 34.5687973444753], [-77.26887468001277, 34.56846669783819], [-77.26945561800137, 34.567937169327585], [-77.26974705589767, 34.567638537702685], [-77.27021124657853, 34.56705390386206], [-77.27079350002728, 34.566278074076756], [-77.27094543271959, 34.56607563233772], [-77.27237793925887, 34.56533890629844], [-77.27282714519505, 34.565120511528676], [-77.27351609725928, 34.56465510371273], [-77.27446582505338, 34.56394925692592], [-77.27487951821068, 34.56365019655958], [-77.27734343620708, 34.56197731926841], [-77.27747844493999, 34.56188563041813], [-77.27832840779925, 34.561364232675686], [-77.28029291345217, 34.56013794395984], [-77.28064011439385, 34.55993879181848], [-77.28101518134014, 34.559745556476145], [-77.28336049341729, 34.55841008285957], [-77.28393424787384, 34.55800029052963], [-77.28537332715543, 34.55685646037497], [-77.2856700158921, 34.55662264885321], [-77.28724425778465, 34.55538666089792], [-77.2881009850636, 34.55484471088989], [-77.28990362398261, 34.553777128426944], [-77.29053501790028, 34.553576041730906], [-77.29089529590944, 34.55323760347977], [-77.29142559853997, 34.552941929695244], [-77.29292395933436, 34.552238278952444], [-77.29371841608396, 34.55179374085011], [-77.29494512227996, 34.55123529487734], [-77.29594594454551, 34.550335132202235], [-77.29691164497257, 34.549589577790016], [-77.29798117444507, 34.54873902949626], [-77.29994963425418, 34.54780228010791], [-77.30009685692407, 34.54771784934345], [-77.3016402117625, 34.54654630523982], [-77.30329007488913, 34.54550008724784], [-77.30342215599161, 34.54542678004707], [-77.30362332152842, 34.54531662465727], [-77.30526868728793, 34.54433868766609], [-77.30647349128365, 34.54369164216639], [-77.30712204516774, 34.54325394529394], [-77.30794687297282, 34.54273753471141], [-77.30879181587792, 34.542079747365506], [-77.3096649151583, 34.54153619914271], [-77.31216246586726, 34.54017377552478], [-77.31253125079824, 34.539926175994424], [-77.3128465800635, 34.53978975767614], [-77.31460713047322, 34.53874013541939], [-77.31603191831928, 34.537880538609166], [-77.31627854799027, 34.537776418580904], [-77.31659860714828, 34.53757815966001], [-77.31922333666748, 34.53570479818546], [-77.31964004517309, 34.535438733137596], [-77.32031368093465, 34.535085951877875], [-77.32240169135588, 34.534081567714054], [-77.32363746113678, 34.533410777633264], [-77.3239913970684, 34.53324522730557], [-77.32457729749231, 34.53313030998339], [-77.32494528528457, 34.53305401611532], [-77.32556896584246, 34.53292837632097], [-77.3260893393174, 34.5326174874444], [-77.32621240269086, 34.532279780816985], [-77.32626761822856, 34.532207465548446], [-77.3263742547977, 34.53206108911263], [-77.32641517946358, 34.532005821477746], [-77.32645538813354, 34.53195104044765], [-77.3263756614492, 34.53200069303338], [-77.32611690588098, 34.53196576314977], [-77.32598599809816, 34.53187719120898], [-77.32592958142982, 34.531830803226605], [-77.32579666809238, 34.53172537708136], [-77.32570185165584, 34.53143508385091], [-77.32568403891709, 34.53137646690988], [-77.32567547761263, 34.5313344313079], [-77.32560958395877, 34.53118509764677], [-77.32525679672513, 34.53094824478116], [-77.32523531748068, 34.53070214191465], [-77.32514910065125, 34.53047409590331], [-77.32506563823135, 34.530347876989396], [-77.32506694916646, 34.53013217286047], [-77.32524421161958, 34.53001948218656], [-77.32544616193883, 34.53006004496072], [-77.32563556439695, 34.53007005997464], [-77.32637416607241, 34.529808389359175], [-77.32637199282766, 34.529774069727665], [-77.32630377147999, 34.529328876930805], [-77.32653579706484, 34.52886015126646], [-77.32663714492836, 34.528301701876785], [-77.32725680027886, 34.527874712152524], [-77.32778477067167, 34.52748105664617], [-77.32824383353206, 34.52709148633723], [-77.32855249424665, 34.52686127386714], [-77.32885754154401, 34.526556766866264], [-77.32932488991747, 34.526243762253735], [-77.33009185461128, 34.525846548556], [-77.33045309851774, 34.52545966322314], [-77.33075028631009, 34.52495060254745], [-77.33205187600248, 34.524222061226105], [-77.33267540963186, 34.52390081058648], [-77.33484642346431, 34.52343125845885], [-77.33521365000381, 34.52328369676928], [-77.33537396107431, 34.52322765576809], [-77.33650310932063, 34.52296607264216], [-77.33675102452266, 34.52290459521227], [-77.33679253845605, 34.52289952539797], [-77.3368269521964, 34.522898051172106], [-77.33727600772977, 34.522663421752846], [-77.337368484331, 34.52259678640671], [-77.33758938380615, 34.52238761856833], [-77.33762235881136, 34.52233526378888], [-77.33765953905404, 34.52231010381494], [-77.33792102953322, 34.52207021039722], [-77.33797878605378, 34.5220120126403], [-77.33799171442135, 34.52196273507832], [-77.33813280687592, 34.52175239211249], [-77.33830499288362, 34.52167404611636], [-77.33839534832447, 34.52148138104169], [-77.33879941977307, 34.52116686458373], [-77.33865329579018, 34.521033455286165], [-77.33874542199753, 34.520894890780326], [-77.33893421899258, 34.5208208833322], [-77.3391940830061, 34.52088680990155], [-77.33968327542101, 34.5205500806408], [-77.3398258145132, 34.520427360358674], [-77.33999027864955, 34.52040150102774], [-77.3401665107482, 34.520371071737955], [-77.34031435395173, 34.52045929092207], [-77.34089700017692, 34.52078364494202], [-77.34154467447318, 34.521073503710355], [-77.34171650784461, 34.521236837328665], [-77.3420371993752, 34.52150412448524], [-77.34223595194265, 34.52170113564252], [-77.34298000497193, 34.52196317336642], [-77.34309302383879, 34.522008342225746], [-77.34311036154607, 34.52200480108386], [-77.34328190258634, 34.52199088166594], [-77.34387826776674, 34.521996811802765], [-77.34393530883091, 34.5219315021978], [-77.34465555233184, 34.52180084078906], [-77.34466778776165, 34.521799948731825], [-77.34468242714819, 34.521798464445276], [-77.34615274319567, 34.521633180087974], [-77.3462418615478, 34.52162107540927], [-77.34763169715674, 34.5214792964452], [-77.34781582995923, 34.52144641240317], [-77.34795622498261, 34.52140518743484], [-77.34976873723603, 34.52105730992899], [-77.35097030338576, 34.52081182216075], [-77.35319396573713, 34.519980803951604], [-77.35413465522373, 34.51974468934122], [-77.35553862889554, 34.51935640000311], [-77.35571524824591, 34.51927868925799], [-77.35579481480646, 34.5192598135543], [-77.35606677458597, 34.51917128703159], [-77.35729786523083, 34.51872357517711], [-77.35802044524527, 34.51835613932229], [-77.35888163056795, 34.51811734910661], [-77.36002554774768, 34.517621858384544], [-77.36029579179336, 34.51747665534604], [-77.36046813644474, 34.51739032426411], [-77.36081803592167, 34.517290853747106], [-77.36205154837265, 34.516797319428385], [-77.36250841671811, 34.516566623432404], [-77.36363541023721, 34.516183578822165], [-77.36383183455794, 34.51609425494315], [-77.36464474859031, 34.51561944778527], [-77.366802647405, 34.51468690896052], [-77.36680655751715, 34.51468466436471], [-77.3668092684502, 34.51468396347602], [-77.36681474484277, 34.51468178046228], [-77.36785222425695, 34.514200116255964], [-77.36840202863809, 34.51367639777225], [-77.3685722038003, 34.51355706699816], [-77.36907361076538, 34.513380338305254], [-77.36966169422186, 34.51309384521454], [-77.36998560253666, 34.51307042288951], [-77.37023782323902, 34.513055413650584], [-77.37077157445488, 34.51302244479385], [-77.37123640871626, 34.51286674951804], [-77.37156237502158, 34.512762235494954], [-77.372154541098, 34.512569587363004], [-77.37243525679358, 34.512456733527436], [-77.37314844365834, 34.51204465105846], [-77.37339567694742, 34.51193068639688], [-77.37384826231863, 34.51171281247505], [-77.37531712097052, 34.51087888461496], [-77.37632689837787, 34.51032743717144], [-77.37723931768477, 34.50982744617656], [-77.37947239328666, 34.50894326914613], [-77.379489740224, 34.5089357139537], [-77.37949793558039, 34.50893152323916], [-77.37951629647807, 34.50892556669716], [-77.38173980433541, 34.50804378381826], [-77.3826686664347, 34.50754424063302], [-77.3836973888539, 34.50700954072977], [-77.38576554438288, 34.50607690246445], [-77.38581648459363, 34.50605387441509], [-77.38584184546647, 34.50604368276387], [-77.3859031482158, 34.506019147772925], [-77.388059284319, 34.50515837241877], [-77.38901018132262, 34.50475260362197], [-77.39018846330477, 34.50420758533652], [-77.39193315132702, 34.503228281123306], [-77.3920850251494, 34.5031436275377], [-77.39218671662519, 34.50309275862542], [-77.39245728237526, 34.50298532187054], [-77.39377214766533, 34.50238674541979], [-77.39424730384432, 34.50220892064469], [-77.39535305159649, 34.501880880932454], [-77.39571733749699, 34.501702735960976], [-77.39641202681949, 34.501275392998345], [-77.39851399033388, 34.50031964450855], [-77.39852730142864, 34.50031196417397], [-77.40047667320246, 34.499279490039214], [-77.40169668351834, 34.498954788073775], [-77.40283910029575, 34.4984421038655], [-77.40430117188188, 34.49787380664358], [-77.40486428302168, 34.49767246406981], [-77.40511480691337, 34.49756250863058], [-77.4055651374693, 34.497342659747346], [-77.40716179585837, 34.49657165792189], [-77.40803657276271, 34.49617549647433], [-77.40930133402374, 34.495625798381006], [-77.41008718093839, 34.495126903483154], [-77.41070628578188, 34.494843254190165], [-77.41167862248548, 34.494405065104864], [-77.41265592905714, 34.49390728628691], [-77.41308530658777, 34.493692231190565], [-77.41410592877452, 34.493208632881746], [-77.41509752010441, 34.49268111607263], [-77.41526087033816, 34.49258186170407], [-77.41545959673725, 34.49252407680747], [-77.41660431155232, 34.49208264644243], [-77.41663580422191, 34.492062067550876], [-77.41710069814872, 34.491870795230525], [-77.41788144164083, 34.4915303782767], [-77.4179398889214, 34.491507813994886], [-77.41798921343953, 34.49147792289328], [-77.41890240067443, 34.49078744860286], [-77.42012915925366, 34.49023623960046], [-77.42017116760746, 34.49021603316122], [-77.4202097480118, 34.49019413741544], [-77.42137234892371, 34.48961171829732], [-77.42258011028078, 34.48901220865524], [-77.42258178743728, 34.489011449490995], [-77.42258280800951, 34.48901055621257], [-77.423580161193, 34.48830852017174], [-77.42498477468564, 34.487956141561], [-77.42514320823736, 34.487880173753695], [-77.42532521813527, 34.4877995756394], [-77.42641407963012, 34.48730974640506], [-77.42667739397116, 34.487193096944445], [-77.42705283319413, 34.48702614635494], [-77.42737025755264, 34.48683000386471], [-77.42761201509302, 34.48670385526135], [-77.42781511380839, 34.48657565309535], [-77.42850452067364, 34.48605281895642], [-77.42858931345413, 34.48599069408496], [-77.42912239872837, 34.485594002109806], [-77.42946416220883, 34.48530876304789], [-77.4296225053658, 34.48521607941705], [-77.43071054138998, 34.484645382180226], [-77.43107794634214, 34.484572772163546], [-77.43207777511064, 34.48434595650764], [-77.43237610480145, 34.48426682353129], [-77.43278010705171, 34.484126912279784], [-77.43391895627398, 34.48382859675418], [-77.43455655776272, 34.483562089306815], [-77.43459456971765, 34.48354394702647], [-77.43515399781653, 34.48324072654128], [-77.43579706842291, 34.48292973546383], [-77.43616780268736, 34.4825452957902], [-77.43837537454002, 34.48171012005398], [-77.43879554889558, 34.481446187042685], [-77.43929486714958, 34.481191995453685], [-77.44125078023391, 34.48026320193564], [-77.44170956351141, 34.48017400347429], [-77.44261053657927, 34.479735940677685], [-77.44357321996844, 34.47927288497831], [-77.44386770551614, 34.479158803835254], [-77.4440951955547, 34.47904978835459], [-77.44510044687492, 34.47856979034955], [-77.44619711230187, 34.47805546119376], [-77.44629208265873, 34.47796079206494], [-77.44648029945787, 34.47792383805975], [-77.44763244754556, 34.47742408451998], [-77.4483992021285, 34.47709052630792], [-77.44888717616186, 34.47687777089192], [-77.44892625936943, 34.476864742265974], [-77.4489692553369, 34.476845533993746], [-77.45015172605227, 34.4762721788085], [-77.45019967795903, 34.476232628100625], [-77.45123995761678, 34.475633924353545], [-77.45126022806748, 34.47562276903111], [-77.45128608088558, 34.475612383955216], [-77.4524438318285, 34.475112653341874], [-77.45256619444609, 34.47506932191845], [-77.45366876625769, 34.47466848734004], [-77.45394106567403, 34.474549356388806], [-77.45425959583137, 34.47441258916984], [-77.45522353226018, 34.47398448010575], [-77.45606228965065, 34.47357411956817], [-77.45656485035398, 34.47344819216476], [-77.45683949598956, 34.473192724565045], [-77.458443530451, 34.47243500920436], [-77.4588689838006, 34.47219169389404], [-77.45933460104146, 34.471968503885606], [-77.46082829107715, 34.47130897518334], [-77.46139332642159, 34.47104218596162], [-77.4619852520929, 34.470752140421794], [-77.46320567069264, 34.47015614116481], [-77.46384199011239, 34.46985589141178], [-77.46440366498611, 34.46952393431697], [-77.46555005195026, 34.46888282026365], [-77.46614749540888, 34.46860002724516], [-77.46665451906695, 34.468287181320775], [-77.4678717351701, 34.46752671440272], [-77.46840259140836, 34.46731966459266], [-77.4691833290037, 34.467064497446046], [-77.47033435807126, 34.46668623478088], [-77.47116464874541, 34.46628560260933], [-77.4718845633395, 34.46585051456592], [-77.47266929858209, 34.465379035986345], [-77.47243641069004, 34.464527490031415], [-77.47239371255318, 34.4643713599876], [-77.47222483215717, 34.46442469216761], [-77.472148006225, 34.46451285923024], [-77.47022270112073, 34.465684829732574], [-77.47009778740758, 34.465759879426855], [-77.470091006528, 34.46576397752357], [-77.47008318601549, 34.465767751080236], [-77.47003177000471, 34.46578464792308], [-77.46760598316946, 34.46655481127772], [-77.46711037492865, 34.46669180261721], [-77.46685594201114, 34.46694637804131], [-77.4652953679005, 34.46795131659478], [-77.46508365413494, 34.46808311962728], [-77.46486309161443, 34.468196234373366], [-77.46296630910435, 34.46928060370345], [-77.46282500353003, 34.46936173362709], [-77.46267336359169, 34.46943606286221], [-77.46058897095494, 34.4704335078505], [-77.46031411524959, 34.47051776678071], [-77.4581593903565, 34.471395472459946], [-77.45766225505065, 34.47160528032417], [-77.45730228533262, 34.47186520831414], [-77.45578850145068, 34.47257237232926], [-77.45512958392678, 34.47275069935347], [-77.45468313990995, 34.473083081101166], [-77.45402555818497, 34.47340229342796], [-77.45365842885946, 34.47370649503339], [-77.45343361712597, 34.473808039468096], [-77.4527856130189, 34.47398782183433], [-77.45189400104542, 34.47429225705322], [-77.45136166427508, 34.474483920917116], [-77.45097092525052, 34.474649385940474], [-77.44978326519367, 34.47490493296341], [-77.44901269562277, 34.47549668775845], [-77.44880693969067, 34.47561858766238], [-77.44861116466548, 34.47586760527924], [-77.44835886317315, 34.476138937119856], [-77.44786280223306, 34.476347872246436], [-77.44695984404316, 34.476743237000086], [-77.44657557474734, 34.47691040415124], [-77.44624285098166, 34.477054725772255], [-77.44495014472841, 34.477308532413375], [-77.44429787152671, 34.47795873672764], [-77.44406651480762, 34.478067241567025], [-77.443854443157, 34.478168503775976], [-77.4428351958447, 34.47865693718775], [-77.4415157815753, 34.4791680668143], [-77.44147882268784, 34.4791858442307], [-77.44144423295401, 34.47920266213135], [-77.43974761880943, 34.47953252457105], [-77.43894563407002, 34.4799133585833], [-77.4373320845562, 34.48073478001455], [-77.4359742889585, 34.48158768090221], [-77.43497534233526, 34.48196560562548], [-77.43430921878596, 34.48265635461861], [-77.4340946176116, 34.4827257268324], [-77.43394127410811, 34.482835082904955], [-77.4335888962777, 34.48307400972468], [-77.43311258037312, 34.48320479574433], [-77.4327371397889, 34.48325406289213], [-77.43179547429864, 34.483312087996524], [-77.42977282574557, 34.48397343647697], [-77.42945687258661, 34.484035878107136], [-77.4293198960804, 34.484107725097374], [-77.42744421106117, 34.485205627281545], [-77.42727134113294, 34.4853499061732], [-77.42702437344032, 34.48556304251504], [-77.42625808644776, 34.486045577917395], [-77.42596308958178, 34.486481074467704], [-77.42594979489952, 34.48648985065644], [-77.42593287870373, 34.48649691725675], [-77.42517445971367, 34.4867070348046], [-77.42469743175755, 34.48690351976337], [-77.42288703048871, 34.48767500634056], [-77.42248477291379, 34.487775921621626], [-77.42228168303372, 34.487918876412074], [-77.42054728175835, 34.48890651535424], [-77.42023787875598, 34.489060097088014], [-77.41994084909184, 34.48920889772396], [-77.41909140131591, 34.48969098941956], [-77.4181664783322, 34.490135886645774], [-77.41785253682755, 34.4902769473129], [-77.4175929424196, 34.490473230460296], [-77.41670260970466, 34.490906158010915], [-77.41566214381308, 34.491358899446816], [-77.41540628008559, 34.49146417001721], [-77.41520607082262, 34.49159499680216], [-77.41444085888259, 34.49197197176654], [-77.4141691655608, 34.492050973703755], [-77.41328474501324, 34.492588362607194], [-77.41306778626277, 34.49270378252295], [-77.41284447560275, 34.49280959313429], [-77.41083855507162, 34.49381426478645], [-77.4106555009025, 34.493907501126586], [-77.41047337761329, 34.49398957602637], [-77.40820171303123, 34.49503036267081], [-77.40814760823861, 34.495064711097314], [-77.40806053066093, 34.49510255727421], [-77.40780487467555, 34.495218336560036], [-77.40647505961456, 34.495822449039544], [-77.40592374179519, 34.49596952199587], [-77.40489238853903, 34.49641587976559], [-77.40398973520232, 34.497015303025336], [-77.40173057434261, 34.49789648653672], [-77.40172321148036, 34.49789934843089], [-77.40172030004398, 34.49790065500087], [-77.39908428839809, 34.49860222133289], [-77.39855943172915, 34.4988802088068], [-77.39569061891174, 34.50053547779176], [-77.39537962036832, 34.50069891047603], [-77.39530811180344, 34.50073840357654], [-77.39519706754517, 34.50079849898195], [-77.39430710323334, 34.50124473371199], [-77.39379569885301, 34.501339887941825], [-77.39302996037131, 34.501616728334284], [-77.3922126432434, 34.50194127015048], [-77.39093116977307, 34.50258229891954], [-77.3890718686026, 34.503618662582156], [-77.38903529897746, 34.50363887932345], [-77.38902788795679, 34.50364297623764], [-77.38901293653306, 34.50364970005646], [-77.38745005317921, 34.504333667881795], [-77.38685467905646, 34.50457231877124], [-77.38586614647468, 34.504967955805554], [-77.38461661444606, 34.505470099194], [-77.3832814420354, 34.50607367769758], [-77.38269619788717, 34.50632751380298], [-77.38244906819835, 34.506402175350935], [-77.381991859022, 34.50662125259519], [-77.38040174381807, 34.50739273337064], [-77.37952637567702, 34.50767671551552], [-77.37824690948912, 34.50833097352305], [-77.37708080166607, 34.50883885389556], [-77.37635380912705, 34.509142050809665], [-77.37587789319167, 34.50916497647117], [-77.37474554716145, 34.50962482201817], [-77.37364214893148, 34.510063814627244], [-77.37318905786209, 34.51025858574613], [-77.37180620859135, 34.5111572020519], [-77.37159381812621, 34.51138061204974], [-77.37115945833904, 34.5118358834674], [-77.37079497887994, 34.51199446511943], [-77.3703663097001, 34.51199252719003], [-77.37001293009837, 34.51187062494559], [-77.36871911373018, 34.51164169314298], [-77.36844955189214, 34.511591637371886], [-77.36740750127998, 34.51264113421278], [-77.36715724524142, 34.51286844476385], [-77.36684135379511, 34.51327758241607], [-77.36529370125987, 34.5139023320257], [-77.36525685302249, 34.51392283725159], [-77.36524641384621, 34.51392536507387], [-77.36366806184343, 34.514754715450074], [-77.3622581618342, 34.515341652256254], [-77.36093781729177, 34.515802180455026], [-77.3605016490595, 34.515926175723465], [-77.3592256163371, 34.51656536750932], [-77.35891383905411, 34.51671132228284], [-77.35877991522653, 34.51673881998881], [-77.3573349541116, 34.517105824183574], [-77.35606390714527, 34.517403760454606], [-77.35417377385066, 34.51804118087657], [-77.35101450948375, 34.51891900028288], [-77.35101321544786, 34.518919217522765], [-77.35100878337141, 34.51892024207391], [-77.34785919203799, 34.519564253292664], [-77.34754978554122, 34.51961047361629], [-77.3447343446919, 34.519836580322185], [-77.34471304176284, 34.51983886357586], [-77.34469227460012, 34.51984228364509], [-77.34468782379604, 34.51983001925457], [-77.34260670238226, 34.519489836703656], [-77.34168083700573, 34.51928341900304], [-77.34158648438856, 34.51926462134479], [-77.34032180568092, 34.51928820754786], [-77.34001507410366, 34.5193296137838], [-77.33973712227981, 34.519390560367206], [-77.3392291115832, 34.5193731646355], [-77.33886540122042, 34.51942495532436], [-77.33881306438101, 34.51943740178489], [-77.33843831566818, 34.519625436171964], [-77.33829684333413, 34.51968283527149], [-77.3381120801221, 34.5197968296834], [-77.3374917367078, 34.52028440558718], [-77.3368406405175, 34.52095705666456], [-77.33683879191756, 34.52095925342539], [-77.33683845676377, 34.52095991160438], [-77.33683746253323, 34.52096061695866], [-77.33683103747956, 34.520964322880616], [-77.3358965954439, 34.52149488821429], [-77.33525327840324, 34.52157472887346], [-77.33456455344701, 34.52183985445317], [-77.33431955767665, 34.521899295149275], [-77.33367105118258, 34.522103452869956], [-77.33315401300695, 34.52214658324038], [-77.33256923102331, 34.52225830216954], [-77.33209534065644, 34.52235067574419], [-77.3306225798373, 34.522765803006315], [-77.33051523321535, 34.52278658360342], [-77.33042960356732, 34.52280709181246], [-77.3302873303037, 34.52288066044205], [-77.32892754942404, 34.52354739319087], [-77.32846075045384, 34.52383554927572], [-77.3279777127291, 34.52419196629455], [-77.32733291577748, 34.52460541190015], [-77.32687253737731, 34.52504939669274], [-77.32653082751493, 34.525338614417265], [-77.32648742313756, 34.52538545486853], [-77.32620960215414, 34.52572020758848], [-77.32572684078482, 34.52615268910777], [-77.32546022746757, 34.526348919792724], [-77.32534969489919, 34.5265282440378], [-77.32492033614359, 34.52707411108796], [-77.32491606165097, 34.527077582504575], [-77.32491554357067, 34.52708027249954], [-77.32491252680364, 34.527085412431305], [-77.32457240285763, 34.52761921564539], [-77.32443671005908, 34.52783781379599], [-77.32410354435963, 34.52843592379557], [-77.32390451233668, 34.52857230978867], [-77.32381529918271, 34.52870728084958], [-77.32348537444649, 34.52936187129557], [-77.32316193238228, 34.53033999353506], [-77.32296201268952, 34.53078841244791], [-77.32314457711146, 34.53118330562803], [-77.32246224292027, 34.5314869465331], [-77.32117186984945, 34.53220990914353], [-77.32007938644406, 34.533161086923116], [-77.31754363883479, 34.53441761969989], [-77.3160833728658, 34.535682751595274], [-77.3160574789813, 34.535697406681905], [-77.31402004176394, 34.536676294611], [-77.31289565760972, 34.53769683941987], [-77.3120511394185, 34.53823128381893], [-77.31046264035666, 34.53891850316228], [-77.30971460052827, 34.53942073168257], [-77.30891038524254, 34.540149925336394], [-77.30795759121219, 34.540777528823256], [-77.3071503153025, 34.54128009868659], [-77.30651865258241, 34.54177184758661], [-77.30555711150423, 34.54249157722308], [-77.30415873782876, 34.54328131611503], [-77.30365431083109, 34.543552220942644], [-77.30333144801872, 34.54374411717329], [-77.30036014391403, 34.54578492607869], [-77.30023729562481, 34.54586282714113], [-77.30013886995704, 34.545937541009806], [-77.29948579049487, 34.546312075708045], [-77.29696247455051, 34.54743907635408], [-77.29622644716025, 34.54788408881373], [-77.29581049211684, 34.54839612549674], [-77.29376098832273, 34.54999543140438], [-77.2930803709996, 34.550326710209546], [-77.29256035810144, 34.550820763843475], [-77.29216613569666, 34.551021845159276], [-77.29105226766976, 34.551326284980824], [-77.29058468708172, 34.55148126124132], [-77.28770711437384, 34.55284502242586], [-77.28729839530692, 34.55310714888827], [-77.28651228914627, 34.55368754310582], [-77.28400249523374, 34.55513134069073], [-77.28294309197194, 34.5564085232195], [-77.28108048388442, 34.557760073123035], [-77.28068682156805, 34.5579785217403], [-77.2782218720127, 34.559478908247556], [-77.27747272915909, 34.55991638631372], [-77.27739134196635, 34.559970004289546], [-77.27727434466797, 34.560040589077424], [-77.27455880900848, 34.56165619504351], [-77.2740963930165, 34.56193252774409], [-77.27265182290961, 34.56347510866082], [-77.2723054294475, 34.56371603993942], [-77.27157722884282, 34.56400882208963], [-77.27003368731687, 34.5648754271395], [-77.26964845893772, 34.56512432059204], [-77.26838862942387, 34.566430292917595], [-77.26783950136395, 34.56686740550692], [-77.26674076822484, 34.56759343733921], [-77.2660885612284, 34.56804082036744], [-77.26532793724276, 34.568555216916394], [-77.26506641566077, 34.56873302543761], [-77.26447663342043, 34.56919777020515], [-77.26297245266798, 34.57025526102098], [-77.26168969940264, 34.57098733033243], [-77.26059903772314, 34.57195386320206], [-77.26022330759054, 34.57231198019191], [-77.25922841170951, 34.573549863014065], [-77.25903805265584, 34.57371638331236], [-77.25891921216359, 34.5737810132338], [-77.2587268917037, 34.57389965081666], [-77.25715084272879, 34.574837073425094], [-77.2560237372904, 34.57536446333254], [-77.25527973687433, 34.57580175065239], [-77.25395701868243, 34.57666337027993], [-77.25322484766872, 34.57702946180731], [-77.2515428974803, 34.57773593796525], [-77.250777007247, 34.57872205180204], [-77.24882685034841, 34.58013826999415], [-77.2484669425622, 34.580258150126475], [-77.24826291245635, 34.580409393667615], [-77.24487650858728, 34.58186319629309], [-77.24455390476915, 34.582002523743604], [-77.24452795111144, 34.58201262158084], [-77.24067526127297, 34.58358217081025], [-77.2404686320982, 34.58366005413415], [-77.24021940223496, 34.58381967155138], [-77.23771289306404, 34.585233983962794], [-77.23702805791999, 34.585858047414334], [-77.23454603370443, 34.58686957820971], [-77.23275188332815, 34.58731258771779], [-77.23123923612334, 34.588235018675775], [-77.22899916748553, 34.58923293972389], [-77.22720080723462, 34.589549904953465], [-77.22540962909291, 34.58991938392617], [-77.22413438553761, 34.590163681574055], [-77.22304655493666, 34.59109305495484], [-77.22255546564274, 34.59157944469927], [-77.22162450765485, 34.59319018788623], [-77.22151150204121, 34.59338244201638], [-77.2214035097161, 34.593586430609506], [-77.21973574022287, 34.596769576984926], [-77.21924923908432, 34.596974639335535], [-77.21931224238254, 34.597307529690994], [-77.21803898143226, 34.60051996176575], [-77.21793644218933, 34.60064186456155], [-77.21759910989171, 34.60088710700713], [-77.21496717848767, 34.60304671827717], [-77.21295543834904, 34.604019134240225], [-77.20893564799849, 34.605629908949325], [-77.20662209100875, 34.606141068686384], [-77.20413026581531, 34.60709222539637], [-77.20265289321252, 34.60786932699088], [-77.20066312112225, 34.608639044487845], [-77.19847823152712, 34.60941462652213], [-77.19693386056082, 34.610293710178816], [-77.19250041770424, 34.611429803522554], [-77.18933647141259, 34.61179979578804], [-77.18611244753659, 34.61320761100839], [-77.18535520184736, 34.613517363949704], [-77.18430080596714, 34.61429168645048], [-77.18209579533607, 34.61587761137209], [-77.18019718850748, 34.61650968123487], [-77.1738360270186, 34.61904814514875], [-77.16759293100434, 34.62061855872905], [-77.16498669612761, 34.62169362296926], [-77.16640603094804, 34.62295776776544]], [[-77.43513889327478, 34.754946966530504], [-77.43513557967549, 34.754919420179824], [-77.43508043709993, 34.75487781934234], [-77.43510282199468, 34.754944204230334], [-77.43510740076182, 34.75496010219714], [-77.43512605615759, 34.754952321016525]], [[-77.30549551240442, 34.52854809762149], [-77.30589207673593, 34.52795826334247], [-77.30465855656382, 34.52814027568283], [-77.30488900656508, 34.52871671328778]], [[-77.34957533668867, 34.55162710534156], [-77.3495951068504, 34.55168494721777], [-77.34962572426423, 34.551708639581626], [-77.34966962557687, 34.55175910752091], [-77.34968772401581, 34.55178241012399], [-77.34971993456402, 34.551789394271694], [-77.34970133368273, 34.551812609896395], [-77.34972380505813, 34.551911247748485], [-77.34969947464535, 34.551935897037275], [-77.34970764606547, 34.551974778374614], [-77.34967641879292, 34.55203232268203], [-77.3496785348689, 34.55204017285945], [-77.34967562309726, 34.55204848219453], [-77.34971838749672, 34.5521568482946], [-77.34973885952347, 34.5522264392595], [-77.34973709101709, 34.552276567216715], [-77.34972098981103, 34.552318941907814], [-77.34971722334197, 34.55234063154175], [-77.3496634826625, 34.55240414867347], [-77.34966118014339, 34.55240990166267], [-77.34965862383568, 34.55241278537231], [-77.34965458468001, 34.55241297617727], [-77.34964868224364, 34.552415346581164], [-77.34964708927706, 34.552411929404165], [-77.34955661851225, 34.55240465889723], [-77.34950974369005, 34.55239978700344], [-77.34950766306427, 34.55239929914791], [-77.34949073104984, 34.552373224728555], [-77.34949446841647, 34.55236395247944], [-77.3494942057174, 34.552357423411074], [-77.3494951927434, 34.552350456447314], [-77.34949367337103, 34.55234219871228], [-77.34949397895954, 34.55233266632456], [-77.34949788641661, 34.55231098983438], [-77.34949927316605, 34.55228702955456], [-77.34949961610741, 34.55227331351891], [-77.34949932886295, 34.55224957704681], [-77.34949711795943, 34.55222832049277], [-77.3494964381992, 34.55220967113856], [-77.34949306472046, 34.55218927326291], [-77.34949196817263, 34.55217187711316], [-77.34948914951009, 34.5521440283666], [-77.34949036709757, 34.55212845624544], [-77.34949450174526, 34.552109620560394], [-77.3494925646131, 34.55208359426815], [-77.34949590418363, 34.552066454224466], [-77.34948522420667, 34.55205630022809], [-77.34948646518619, 34.55204957818799], [-77.34950406082415, 34.552034677846976], [-77.34949698572048, 34.552023649712865], [-77.34951397965213, 34.55200264788354], [-77.3494811762377, 34.55199902323645], [-77.34948162096862, 34.55198512492987], [-77.34951089431296, 34.5519724892667], [-77.34950606287242, 34.55196597088786], [-77.34950340010506, 34.55194296509539], [-77.3495235911424, 34.551906592635866], [-77.34947163142262, 34.55183216396325], [-77.34947110852889, 34.5518256214521], [-77.34947106390833, 34.551825207974034], [-77.34947082670791, 34.55182463229125], [-77.34947188237474, 34.551821255526384], [-77.34952798085223, 34.551728252817725], [-77.34955668652321, 34.55169047608635], [-77.34957392502456, 34.551627151428534], [-77.3495738811907, 34.551626796477095], [-77.34957317840593, 34.55162605507285], [-77.34955977783304, 34.55156762075527], [-77.34947816043274, 34.55154835994894], [-77.34940867674192, 34.55151081932086], [-77.34938119020997, 34.551496797566664], [-77.34935273508425, 34.55147500462593], [-77.34931039634247, 34.5514644987984], [-77.34928440091488, 34.55143737642193], [-77.34927557079303, 34.55142490358721], [-77.34928035718687, 34.55136654721714], [-77.34927672673079, 34.5513635320442], [-77.34927207864547, 34.551355340458876], [-77.34925987908078, 34.551321701347135], [-77.34923794214345, 34.55132353000812], [-77.34922331882402, 34.55131001237404], [-77.3491965197675, 34.55130929925376], [-77.34918913459867, 34.55131177031996], [-77.34917861713436, 34.5513098594708], [-77.34911630970893, 34.55130964631832], [-77.34909094157359, 34.55131336912523], [-77.3490283034098, 34.551315891895754], [-77.34899312353456, 34.551298671740206], [-77.34898105742782, 34.55129129849514], [-77.34897933599787, 34.551283916611666], [-77.34897615542741, 34.55127343169158], [-77.34896659154543, 34.55124190389628], [-77.34894327115973, 34.55122790115951], [-77.34893447617648, 34.551191053044334], [-77.34892520880246, 34.55116929515821], [-77.34894532590738, 34.55113731457549], [-77.34892951920935, 34.55110746971555], [-77.3489597966897, 34.55107918244019], [-77.34899840276496, 34.55106925277338], [-77.34903974975018, 34.551065874045726], [-77.34907959026333, 34.55107538164694], [-77.34909673060223, 34.55106178304901], [-77.34912102995875, 34.55106471718811], [-77.34911658308454, 34.551080551079494], [-77.34913994457139, 34.55108057618733], [-77.34914061957973, 34.55109239348651], [-77.34914508009882, 34.551093442731556], [-77.34915497888237, 34.551099371008455], [-77.3491641601542, 34.55110430725124], [-77.3491637965246, 34.55111635900198], [-77.34916705724868, 34.55112040229011], [-77.34916889277955, 34.55112500888947], [-77.34918928237198, 34.55113129470894], [-77.34919210086689, 34.55113162410427], [-77.34919305978528, 34.55114117640757], [-77.3491992581433, 34.5511336156841], [-77.34920229849752, 34.55112942165838], [-77.34921628488186, 34.551113326534264], [-77.34923198977664, 34.55109454641266], [-77.34922965398654, 34.55108631110297], [-77.34925384070533, 34.55106079939773], [-77.34925003629823, 34.55102745074129], [-77.34919603026472, 34.55101207549272], [-77.34918928779298, 34.551013073492456], [-77.34918816965771, 34.55100904443861], [-77.34918701697816, 34.55100346655347], [-77.34919636276496, 34.550997624604705], [-77.34921842573797, 34.55099102776567], [-77.34925097347659, 34.55097249362965], [-77.34925186063205, 34.5509692765451], [-77.34926304476859, 34.55095726904278], [-77.3492346551504, 34.55096455263782], [-77.349197066222, 34.55096705146255], [-77.34917345558506, 34.55096471262868], [-77.34917352358823, 34.55094994684232], [-77.34909981635786, 34.55092767900962], [-77.34906677742208, 34.55094495420378], [-77.34905037435368, 34.55094350244756], [-77.34900886292323, 34.550973641772806], [-77.34904919915991, 34.55099457395067], [-77.34905983224176, 34.550990340301055], [-77.34906031705046, 34.55100390653856], [-77.34905879089575, 34.551027662270016], [-77.34904825967477, 34.55103540205353], [-77.34901165918059, 34.551034444570114], [-77.34901077270142, 34.55102745854459], [-77.34899921236111, 34.5510340702699], [-77.34899050625734, 34.55103203052613], [-77.348950420404, 34.55102164177771], [-77.34894118953731, 34.55101976543435], [-77.34893353897506, 34.551015083514386], [-77.34893949872983, 34.551007208583044], [-77.34893448574621, 34.55098434468599], [-77.34893221164548, 34.55096621869917], [-77.34890284449975, 34.55095637074379], [-77.34886627989745, 34.550955762923955], [-77.34882557632704, 34.55093881151609], [-77.34880263954543, 34.55088323422645], [-77.3488028552312, 34.55088087593679], [-77.34879691765241, 34.55087572747431], [-77.3487745796571, 34.5508441248744], [-77.34877475984197, 34.550823713665714], [-77.34878507918872, 34.55080787018048], [-77.34879473698439, 34.55076853469652], [-77.3487911830986, 34.55076014521494], [-77.3487972012797, 34.55075167296324], [-77.3488095437496, 34.550745405741765], [-77.34882670499846, 34.5507244310502], [-77.34882479770792, 34.5507030061262], [-77.34882468711697, 34.5506941188356], [-77.34882106995691, 34.55068827202841], [-77.34881165391162, 34.55066539172959], [-77.34881217884343, 34.55063476906115], [-77.34881221339342, 34.55063470863662], [-77.34881247497242, 34.550634435674546], [-77.34885495569334, 34.55059795544237], [-77.3488596126034, 34.55059575582493], [-77.34886216883851, 34.55059126375573], [-77.34888459882752, 34.55057986702282], [-77.34891175495595, 34.55056917088549], [-77.3489212170158, 34.55056363854831], [-77.34892358283207, 34.55055747738791], [-77.34892051821453, 34.55055269050952], [-77.34893028076071, 34.550541212258715], [-77.34891265180309, 34.55053019885246], [-77.34890726466736, 34.550532548449674], [-77.34890310888699, 34.55052982101261], [-77.34891306656345, 34.55051217565829], [-77.34892344752657, 34.5505268942704], [-77.34894809698177, 34.550531824464365], [-77.34896163306038, 34.55053438834835], [-77.34898671351695, 34.55053341529671], [-77.34901108810226, 34.55051798887431], [-77.34904630316365, 34.55050031754149], [-77.34903569529794, 34.55048013908828], [-77.34907368362664, 34.55045154568232], [-77.34909538788865, 34.55044094661969], [-77.34908156716189, 34.55043084093562], [-77.34903097344294, 34.55043076137882], [-77.34901277416166, 34.550444718319895], [-77.34898283845052, 34.55042654008282], [-77.34897472202259, 34.55039100124626], [-77.34894919497127, 34.550328868744515], [-77.34905232843768, 34.550332284166075], [-77.34911370340026, 34.55032416272414], [-77.34915815855176, 34.55030636569444], [-77.34921276279032, 34.55028486021554], [-77.34922939290595, 34.55027893472112], [-77.3493081554189, 34.55025940341951], [-77.34931144127943, 34.550262108620394], [-77.34931706392341, 34.550259502362536], [-77.34931510032804, 34.550256316287005], [-77.34932977359523, 34.55024304696497], [-77.34935899285605, 34.55021781033135], [-77.34936470589807, 34.550216616945384], [-77.3494108736091, 34.550206588368674], [-77.34942582901986, 34.55020977928854], [-77.34944184309884, 34.55021859390036], [-77.34945468565942, 34.55023622927143], [-77.34942721219007, 34.550251008134715], [-77.3494272982655, 34.550259768442444], [-77.34945103547922, 34.55026260132623], [-77.34945903300174, 34.55024649361478], [-77.34946276892087, 34.55026310085316], [-77.34947026165347, 34.55027195740328], [-77.34945562476165, 34.550297299337245], [-77.34942165856727, 34.55031040159618], [-77.34943239936763, 34.5503464182935], [-77.34945308806918, 34.550358869598114], [-77.34942402973539, 34.550413090399964], [-77.34942195723748, 34.55043473900581], [-77.34935544306546, 34.55046498346752], [-77.34930655369267, 34.550474539352315], [-77.34928553382164, 34.550492543086065], [-77.3492573753874, 34.550509443918315], [-77.34928774528223, 34.550516203921326], [-77.34930422501452, 34.55057575154528], [-77.34931356825726, 34.550617345238315], [-77.34933017986296, 34.550621377501], [-77.34949746555185, 34.5507092052761], [-77.34959067444412, 34.55064103388139], [-77.34960755657663, 34.55063627055342], [-77.34969622304061, 34.55060285066964], [-77.34976360466224, 34.550620210384366], [-77.34975335736394, 34.550646635870415], [-77.34981800217804, 34.55067358736647], [-77.34983253181638, 34.550707411267524], [-77.3498896393134, 34.5507286918336], [-77.34997595138292, 34.55070432795024], [-77.34998932819981, 34.55070945704692], [-77.34999072064392, 34.55070993695593], [-77.35004460971253, 34.55072797023877], [-77.35008554005566, 34.55074652991573], [-77.3500907108824, 34.550753429400764], [-77.35009370356264, 34.55075632195806], [-77.35009587950205, 34.55076268773636], [-77.35008517226213, 34.550762522021856], [-77.35006627514545, 34.550771917812476], [-77.35005372066182, 34.550773220187466], [-77.35003591109547, 34.55077049634073], [-77.349996266914, 34.5507763097736], [-77.34998665464205, 34.55077826525503], [-77.34997712370576, 34.55077903100358], [-77.34989645354636, 34.550789834046576], [-77.34988818898367, 34.55079174746929], [-77.34988246473017, 34.55079031117932], [-77.3498548111699, 34.5507907007727], [-77.34979083934664, 34.55075670949853], [-77.34971533613685, 34.5508107722927], [-77.34969899322873, 34.5508179366405], [-77.34969096901565, 34.55083125526155], [-77.34967773568192, 34.55082453138732], [-77.34962073640014, 34.55084195072062], [-77.34959256472885, 34.55084206402408], [-77.3495635842182, 34.55085055937193], [-77.34952547348679, 34.550857689145865], [-77.34950784131087, 34.55087123468152], [-77.34951187670137, 34.55088968151445], [-77.34954275953388, 34.55087368194481], [-77.34958895686195, 34.550890164319796], [-77.34958926080577, 34.550891472021476], [-77.34959123311589, 34.55089994941713], [-77.34962009129114, 34.55090373273665], [-77.34964009358791, 34.550909399568205], [-77.34964171750015, 34.55091212270388], [-77.34964243806851, 34.550913070664365], [-77.34964447314545, 34.55091559759055], [-77.34963184692168, 34.55094519740089], [-77.3495892809643, 34.550984809748044], [-77.349549866234, 34.550993751256655], [-77.34948883645191, 34.55108429427958], [-77.34948764715233, 34.55108766576259], [-77.34948801779126, 34.55108830565082], [-77.34948785522296, 34.55108887517729], [-77.34948864705346, 34.5510925270464], [-77.34951442351365, 34.55118945280894], [-77.34968352956321, 34.55115466605776], [-77.34973127195687, 34.551146063998644], [-77.3498273068958, 34.551128760727195], [-77.34988096916969, 34.55110564206071], [-77.34993430492368, 34.55105663668975], [-77.35003472061734, 34.55103715203319], [-77.35007823852939, 34.55106400946775], [-77.35015671967426, 34.551114484847176], [-77.35020248741719, 34.551151577553185], [-77.35024940675538, 34.5512235567528], [-77.35027018742022, 34.55125373194167], [-77.3503133773338, 34.551309037109384], [-77.35034558252995, 34.55133212653336], [-77.35036600400977, 34.55135547224212], [-77.35037308059415, 34.55138454506095], [-77.35037771117803, 34.551388708127426], [-77.35042359758648, 34.551406663363075], [-77.35043239337372, 34.55142320695023], [-77.35038971692113, 34.5514481856389], [-77.35039193024997, 34.551490963384545], [-77.35046059782616, 34.55151040155907], [-77.3504756106964, 34.55155823504712], [-77.35048779515952, 34.55165979136257], [-77.35049908091298, 34.55167726795623], [-77.35055371479807, 34.5517305961747], [-77.35055375242608, 34.55173064409228], [-77.35058000971178, 34.551788031874324], [-77.350613420571, 34.55180610244254], [-77.35064878547433, 34.55186380158456], [-77.35066542683965, 34.55189814980305], [-77.35069469408258, 34.55198597085804], [-77.3507216150401, 34.552012474063915], [-77.35074020589632, 34.5520697559218], [-77.35075796872741, 34.5521296529386], [-77.35076476649385, 34.55217431448469], [-77.35078837004794, 34.55221738383363], [-77.35079439524995, 34.55224682127848], [-77.3508355479734, 34.55227926687187], [-77.35088312951979, 34.55232612092126], [-77.35089890359714, 34.55235419161416], [-77.3509494117289, 34.55239665182652], [-77.35100598638329, 34.55244746739472], [-77.35101847691718, 34.55245939384006], [-77.35101942591552, 34.55246435905621], [-77.35102748279974, 34.55246980027707], [-77.35118773000043, 34.55255744615893], [-77.3511596055164, 34.55259965911846], [-77.35122094205781, 34.55259404611391], [-77.35128472343388, 34.55266589777247], [-77.3513061334988, 34.55271770911276], [-77.35128639274164, 34.55274509237582], [-77.35127504462, 34.55278970142495], [-77.35125376246387, 34.55281641601278], [-77.35113287504475, 34.55286124588925], [-77.35101787968212, 34.552887574696754], [-77.35087744793438, 34.552813142526574], [-77.35062743664986, 34.5527923693485], [-77.35059997261048, 34.552764443683024], [-77.35050218228459, 34.552614348611556], [-77.35044218042215, 34.552542330510406], [-77.35036073744274, 34.552480005980975], [-77.35031329062977, 34.55235877997399], [-77.35031596277132, 34.55231567351382], [-77.35027658522081, 34.55230231550375], [-77.35024736114272, 34.552246354517386], [-77.35015013949456, 34.552156624554385], [-77.35011518411422, 34.55209974633935], [-77.35011185520837, 34.55201237650295], [-77.35009195889825, 34.55198067825583], [-77.35008604423147, 34.55196375934369], [-77.34998805220164, 34.55187322066416], [-77.34997916282015, 34.55180326638755], [-77.34995323310781, 34.55175582100754], [-77.34988396249584, 34.55165309718994], [-77.34988222766283, 34.55164362875411], [-77.34987647168735, 34.5516396033975], [-77.34986875286297, 34.55163676981193], [-77.34984184975558, 34.551632604320936], [-77.34967311015626, 34.55160762380555]], [[-77.34201449854692, 34.528820839123696], [-77.34205509067723, 34.528836882702706], [-77.3420545254788, 34.52884032644508], [-77.34205040214522, 34.52884043039552]], [[-77.3419348706229, 34.53662900815604], [-77.34195177308393, 34.536614839201015], [-77.34197117698582, 34.53658958618281], [-77.3420207394312, 34.53652421359267], [-77.34208254210151, 34.53648535481736], [-77.34212200337114, 34.536449310585496], [-77.34234759796941, 34.536338494585024], [-77.34236973596968, 34.53632975539726], [-77.3423776469511, 34.53632536155884], [-77.34240686132576, 34.53631628822496], [-77.34266941634374, 34.53621899821252], [-77.34274432480369, 34.536022920140745], [-77.34276986032152, 34.536002027746505], [-77.3429648876551, 34.5358714389216], [-77.34296974405243, 34.53586840507935], [-77.34296999429945, 34.53586804414173], [-77.34316826813247, 34.53574851126886], [-77.34320035269036, 34.535732268892794], [-77.34327715354112, 34.53570144344691], [-77.34346833523124, 34.53561432596838], [-77.34351621783487, 34.53542222949645], [-77.3435694254512, 34.53537577417819], [-77.34370800367498, 34.53523420511174], [-77.34376603250624, 34.535141468035256], [-77.34386058137518, 34.53495237607415], [-77.34391547963874, 34.53487514675994], [-77.34392656442228, 34.53484380963536], [-77.34397650259464, 34.53474637364684], [-77.34414019021887, 34.53474080889928], [-77.34436975089919, 34.5347160433293], [-77.34456314325675, 34.53465690257738], [-77.34459947347142, 34.53453191353907], [-77.34469057709379, 34.53447054225296], [-77.34476955394122, 34.534401561981056], [-77.3447791488853, 34.534389461297934], [-77.34478020656444, 34.53438349912892], [-77.34483793335139, 34.53429388014529], [-77.34485466902618, 34.534250375154514], [-77.34488037385917, 34.534190343093854], [-77.34488352892807, 34.53417835110639], [-77.34484191022915, 34.53412980114505], [-77.34477640985824, 34.53410437294536], [-77.34468676163664, 34.53408589198047], [-77.34458105010359, 34.53406480456726], [-77.34453161536909, 34.534052038213815], [-77.34444530026497, 34.53402725152031], [-77.34438617340639, 34.53400430795188], [-77.34428249622187, 34.533965472459414], [-77.34426647214838, 34.53392121839679], [-77.34421580747417, 34.533852657892496], [-77.34431803722137, 34.533640854444364], [-77.34432131211224, 34.53359265809105], [-77.34434993743295, 34.533559539485324], [-77.3443967211722, 34.53354717994441], [-77.34458146976058, 34.53344152241647], [-77.34479408444507, 34.53333822095094], [-77.34484281969688, 34.533302685277974], [-77.34483426946456, 34.53327403172979], [-77.34483218177137, 34.533251814790546], [-77.34484613142044, 34.53305590396438], [-77.34483204673747, 34.53302953188558], [-77.34483038563106, 34.53301182665779], [-77.34481217754913, 34.53290998100047], [-77.34480463301199, 34.53288096709207], [-77.34478514676478, 34.532804710952334], [-77.34478101681225, 34.5327920548052], [-77.34477249671751, 34.53277166524902], [-77.34473339120997, 34.53267649769075], [-77.34472774326439, 34.53262568249062], [-77.34472531248112, 34.53261645524195], [-77.34472359353832, 34.532609940184784], [-77.34465663126467, 34.532565132658576], [-77.34465551503673, 34.532466324787045], [-77.34481503528006, 34.53243005632233], [-77.34498649194414, 34.53241100859294], [-77.3450116296806, 34.53241593661586], [-77.34509064046517, 34.53250268357422], [-77.34510882586449, 34.53255978752269], [-77.34510927785328, 34.53256120680604], [-77.34510996104736, 34.532563352093646], [-77.34513680870535, 34.532618450273375], [-77.34517164729886, 34.53263292509286], [-77.34520239827434, 34.53265439742857], [-77.34521135293653, 34.53266321724105], [-77.34522118346192, 34.53266751446361], [-77.34524230963707, 34.53266996110987], [-77.34525096025452, 34.53267630655116], [-77.34525169017948, 34.53267842603969], [-77.34525062875765, 34.532690679358936], [-77.34525028758786, 34.532693760640385], [-77.34525026356054, 34.53269393255624], [-77.34525026583549, 34.53269410923947], [-77.34525033686458, 34.53270333505531], [-77.3452524848899, 34.53272421540011], [-77.34528041583671, 34.532731632039095], [-77.34529863995041, 34.532736471172626], [-77.3453394410121, 34.53274730525105], [-77.34539560113649, 34.532787354632674], [-77.34543014605394, 34.53279934362925], [-77.34549135326071, 34.532873207620185], [-77.34548668382821, 34.532935335692954], [-77.34548031690238, 34.5330027282307], [-77.34547201978856, 34.53311218875981], [-77.34541102392106, 34.53319104236152], [-77.34537847551658, 34.53331504505265], [-77.34537745613666, 34.53331828258766], [-77.34537726949235, 34.53332205168101], [-77.34536655582978, 34.533442260808826], [-77.3453517401051, 34.53355042291881], [-77.34535142052589, 34.5336892584798], [-77.34534391298473, 34.53379500560833], [-77.3453408236065, 34.533832326447595], [-77.34526226102597, 34.53394690764936], [-77.34532613183697, 34.53403474258604], [-77.34534011277863, 34.53405811543726], [-77.34535322767171, 34.534064288955264], [-77.34536592371668, 34.53407419215281], [-77.34538904430714, 34.53411227959576], [-77.3454186903499, 34.53413542885084], [-77.34542328768066, 34.5341379547561], [-77.34543903279452, 34.534150204680515], [-77.34544000590179, 34.53415085038717], [-77.34544134258205, 34.534152923432885], [-77.3454475427445, 34.53416506713701], [-77.34543972646725, 34.53417984836048], [-77.34542605582496, 34.53420758020694], [-77.34540907677047, 34.53423180701284], [-77.34537019106622, 34.53429280154214], [-77.3453700642343, 34.53429862552626], [-77.3453664379862, 34.534302755522695], [-77.34517266113613, 34.53444226787097], [-77.34516096859522, 34.53445064109585], [-77.34516055869027, 34.53445092965209], [-77.3451603092329, 34.53445121704068], [-77.34515804615924, 34.53445332667438], [-77.3450730723387, 34.53453253913874], [-77.345039874616, 34.53459095599713], [-77.34501685108168, 34.53462936796433], [-77.3449586966251, 34.53471069215432], [-77.34495082935786, 34.53472142621578], [-77.34494771311986, 34.53472662674361], [-77.3449383894512, 34.534740208588325], [-77.34489782577401, 34.534819821467565], [-77.3448466397204, 34.53486357961047], [-77.34475628186529, 34.534976879199895], [-77.34474041257886, 34.53499158847134], [-77.34473406276814, 34.53500218760438], [-77.34473307170808, 34.53501623928432], [-77.34468871849427, 34.53509062129159], [-77.34464794690251, 34.53513698808838], [-77.34462529161515, 34.535183942766594], [-77.34454400395214, 34.53527435339072], [-77.34435759380516, 34.53554169466582], [-77.34435416230673, 34.53554648781171], [-77.34435351848754, 34.5355484352193], [-77.34435046356045, 34.53555194196842], [-77.34433254035655, 34.53556065139392], [-77.34430124688859, 34.53555410123925], [-77.3439771236202, 34.53558823147621], [-77.34395743365624, 34.53557263880649], [-77.34386933400593, 34.535616244119055], [-77.34377117538145, 34.53576174619469], [-77.34374984055833, 34.53587825561926], [-77.3435537846741, 34.53605336021533], [-77.34346577483772, 34.53610987027102], [-77.34320239558936, 34.53617442096141], [-77.34315828319689, 34.5361809889299], [-77.34308626854818, 34.53621854443545], [-77.34293348820545, 34.53634754791997], [-77.34293790245266, 34.536374543916715], [-77.34295552392416, 34.53646169533766], [-77.34303691774554, 34.536470463632234], [-77.34295475939278, 34.53649480623607], [-77.34292041211374, 34.53658957858583], [-77.34288531672547, 34.536614683656275], [-77.34290252271023, 34.536642656642485], [-77.34293261619669, 34.53673028821483], [-77.34294791964416, 34.53684965204614], [-77.3429474534023, 34.53685113814455], [-77.34307085265064, 34.53695521966208], [-77.34309444032505, 34.536980135111456], [-77.34311510671986, 34.537056948111086], [-77.34311197979726, 34.53707171234234], [-77.34303580185323, 34.53714254117331], [-77.3429818487073, 34.53721284353099], [-77.34293701858353, 34.53726314063296], [-77.34287845322702, 34.5373143414095], [-77.3428291106744, 34.53735722689323], [-77.34273690715625, 34.53742904524956], [-77.34268290038085, 34.537467544302004], [-77.34260931396382, 34.53751125723196], [-77.34246716606084, 34.537610923057656], [-77.34233801074764, 34.53770332071848], [-77.34220776947612, 34.53773304729082], [-77.34213936232045, 34.53780579146468], [-77.34211798627166, 34.53782675924505], [-77.34199868478805, 34.53787966306977], [-77.34199226981309, 34.53790604931193], [-77.34198354646685, 34.53794132020384], [-77.34197861027481, 34.53796921903073], [-77.3419748450136, 34.537992256653794], [-77.34197327509162, 34.53800058888893], [-77.34197082973003, 34.53801127712456], [-77.34196616003754, 34.53803221477982], [-77.34194477482276, 34.538091325616875], [-77.34194232466506, 34.53809684836137], [-77.34194096715044, 34.53809996375271], [-77.3419359568559, 34.5381141589926], [-77.34189736379001, 34.538202936554015], [-77.34188805341616, 34.538227065011384], [-77.3418738821905, 34.538265633433745], [-77.34185821630005, 34.53830807849829], [-77.34184543725253, 34.538355604976246], [-77.34183173184257, 34.538377496099734], [-77.34181049884263, 34.53840904866941], [-77.34179780115028, 34.538423662374655], [-77.34177511743752, 34.538461028812364], [-77.34175926579867, 34.53849041055], [-77.34175315330029, 34.53850533196303], [-77.34173011164978, 34.53852806234754], [-77.34170409760196, 34.538514761692134], [-77.34169561001828, 34.538499567738256], [-77.34171205143151, 34.53848532378593], [-77.34169530617594, 34.538438406797184], [-77.34169774267305, 34.538398899124786], [-77.34169445636958, 34.53837732438046], [-77.34168510542781, 34.538348125050554], [-77.34168505371905, 34.53834798255699], [-77.34168212283191, 34.538317893952595], [-77.34169780195916, 34.538278183642255], [-77.34169970033822, 34.538254160663826], [-77.34169917871463, 34.538230659635474], [-77.34173701630738, 34.538126383258074], [-77.34173942288567, 34.53812504552251], [-77.34174429249113, 34.53812233866418], [-77.34183880869983, 34.53807117417673], [-77.34185441871088, 34.53805783234124], [-77.34185522762539, 34.53804817318513], [-77.34186194284683, 34.53803332510615], [-77.34187467685035, 34.53800559455098], [-77.34190719731819, 34.53797949230735], [-77.34189346234774, 34.537952639894755], [-77.34189277879432, 34.537949659363434], [-77.34191050462644, 34.53791781184538], [-77.34190618645381, 34.53787917973975], [-77.3419106278558, 34.53785658943478], [-77.34190081585814, 34.53783202080187], [-77.34189428011435, 34.53776751723359], [-77.3417699122547, 34.537754422946705], [-77.34175564377972, 34.537751738355084], [-77.34174801732055, 34.537753054849105], [-77.3417400837343, 34.53775377665723], [-77.34163778219764, 34.53777343056428], [-77.34155751496812, 34.53778910103221], [-77.34155085154258, 34.53779131941951], [-77.34152913227784, 34.53778906037031], [-77.34143526222844, 34.53775279590371], [-77.34137686132757, 34.53768855562734], [-77.3413530847369, 34.53757363020634], [-77.34135030076759, 34.53756402936179], [-77.34131545653368, 34.537452570320085], [-77.3413191157386, 34.537357990395506], [-77.34132910941021, 34.53730531483129], [-77.34133621373341, 34.537204765910076], [-77.34136957310253, 34.53714206957517], [-77.34140406200787, 34.53709340392987], [-77.34145252282752, 34.53706562510426], [-77.34156948773392, 34.53698477905198], [-77.34162738848867, 34.53695372256801], [-77.34166385777704, 34.53691281405706], [-77.34182183789316, 34.536799983540746]], [[-77.34385621685988, 34.53085281023954], [-77.34385340304517, 34.53084455851071], [-77.3438503719968, 34.53083239876671], [-77.34387075404231, 34.530824317646584], [-77.34388145886993, 34.530833709994766], [-77.34406547428648, 34.53089125308848], [-77.34410016620478, 34.5309095622669], [-77.34411233476096, 34.53092971221224], [-77.3442606310479, 34.5310294861758], [-77.34426462499623, 34.53103406490817], [-77.34435010690731, 34.53114031985029], [-77.34437279080987, 34.5311859619524], [-77.34444842911932, 34.531306237436304], [-77.3444845703493, 34.5313657919207], [-77.34448509381588, 34.531389786486514], [-77.34450082819484, 34.5314858624464], [-77.34453250510634, 34.53154780042446], [-77.34454267572997, 34.53160225083148], [-77.34456185907085, 34.531675550690466], [-77.3445802045782, 34.53175305333579], [-77.3446333089159, 34.53179975000592], [-77.34465152185906, 34.53183140896459], [-77.34466218886547, 34.53184858900141], [-77.34468534429516, 34.531887747237974], [-77.34469925724154, 34.53190431435314], [-77.34473248406056, 34.53194216926288], [-77.34482388824537, 34.53204630480561], [-77.34482655159502, 34.53204933912164], [-77.34482901813394, 34.53205068896791], [-77.34482345280755, 34.532065179814246], [-77.3446486747741, 34.53221460108639], [-77.34462362880294, 34.53221931269086], [-77.34461540329269, 34.53220911233286], [-77.3446139838582, 34.53220403965394], [-77.34459972013933, 34.53219076976478], [-77.34451966774205, 34.53209520065437], [-77.3444677239361, 34.53207951241894], [-77.34443158444216, 34.53203625597556], [-77.34438655546656, 34.531991943857456], [-77.34432496439258, 34.53194618994683], [-77.34430319245547, 34.53192222090605], [-77.34428340872819, 34.531884375360036], [-77.34424868968564, 34.53177149114599], [-77.3442530645671, 34.531759249300706], [-77.34424193339765, 34.53174952399903], [-77.34420284738356, 34.53165114737659], [-77.34416554420011, 34.53158412859361], [-77.34412564460042, 34.531539845865886], [-77.34410522842325, 34.53150909577441], [-77.34407306394026, 34.53143759949391], [-77.3440697955121, 34.531425471924344], [-77.34407074373024, 34.53141451697648], [-77.34405445840534, 34.53136856297892], [-77.3440109074194, 34.53121844864957], [-77.34398909745123, 34.53119226348591], [-77.34395196679506, 34.531130252307314], [-77.3439211670882, 34.53107962784496], [-77.34395877147581, 34.531016553771565], [-77.34397531517891, 34.530949427063646]], [[-77.34557221248178, 34.546632938339464], [-77.34544744951077, 34.54654315087927], [-77.34542974249266, 34.54650476114826], [-77.34541988159691, 34.54641003557623], [-77.3454149906691, 34.5463263587916], [-77.34538163322532, 34.54623295527538], [-77.34538887189726, 34.54616967743592], [-77.34548121696554, 34.546099047422516], [-77.34552259695775, 34.54615043751465], [-77.34560353077686, 34.546183712788995], [-77.34567443613322, 34.54623271766557], [-77.34569351722614, 34.5462482557309], [-77.34576861160929, 34.54630016528455], [-77.34581009907576, 34.54635389191348], [-77.34583351918853, 34.546371732456734], [-77.34586602463526, 34.54643715624414], [-77.34587995675015, 34.54645727374813], [-77.3459098001288, 34.546490014183085], [-77.3459809638752, 34.54657412769332], [-77.345946056636, 34.54664861418464], [-77.3460234644525, 34.546793724048875], [-77.34585793575677, 34.54678807107407], [-77.34579054016776, 34.54676627542882], [-77.34566387145706, 34.546690991312865], [-77.34558959313678, 34.546676957666484]], [[-77.3994148417887, 34.57932515383854], [-77.3993929739837, 34.57933155818398], [-77.39937345380636, 34.579328596447546], [-77.39919596644559, 34.57933848488748], [-77.39919232016567, 34.57933762723747], [-77.39918288063464, 34.579335060153085], [-77.39909746371734, 34.57931397160601], [-77.39904823133425, 34.57930139643832], [-77.39904821238494, 34.57930138301945], [-77.39904817932104, 34.57930138873472], [-77.39899896077678, 34.57929626039091], [-77.39897724942696, 34.57928198284213], [-77.39893424259913, 34.579301198351274], [-77.39890045581973, 34.57932963311957], [-77.398866282171, 34.579343918121694], [-77.39885120322077, 34.57934849292716], [-77.39883588810734, 34.579348558264385], [-77.39882122232927, 34.57935493727206], [-77.39880195038151, 34.57937262307774], [-77.39878281998949, 34.57937216993822], [-77.39875269815597, 34.579381410077204], [-77.39874210335263, 34.57938724265718], [-77.39870552291075, 34.57940169832908], [-77.39870344542882, 34.57940172658034], [-77.39870247075832, 34.57940332712506], [-77.39869715788961, 34.5794051438833], [-77.3986541926664, 34.579422290273506], [-77.39864247909105, 34.57942565510304], [-77.39862956657656, 34.57942563027982], [-77.39862278931294, 34.5794351075644], [-77.39860493975313, 34.57944573221134], [-77.39857703932313, 34.579452539119835], [-77.39853765795215, 34.57946180151277], [-77.39850643409032, 34.579487065479555], [-77.39846755814914, 34.57948016285306], [-77.39844665302931, 34.57948301356695], [-77.39840792936783, 34.579505715813355], [-77.3983592272696, 34.579506380997465], [-77.3983583578885, 34.57950675469705], [-77.39830942341123, 34.579549516185395], [-77.39829155716737, 34.57955055696412], [-77.3982109176162, 34.57958783531243], [-77.39810769532285, 34.57960141982606], [-77.3978799390437, 34.57959098000128], [-77.39781689889043, 34.57963900183397], [-77.3977042841221, 34.5796697426093], [-77.39764189164781, 34.57955739844211], [-77.397685674517, 34.57940966669701], [-77.39768091037621, 34.57912719595423], [-77.39775089302506, 34.579045939835126], [-77.39781693869136, 34.57889124491632], [-77.39787070260445, 34.5787331649705], [-77.397955442799, 34.57866301369673], [-77.39811747627887, 34.57853889111674], [-77.39821097093673, 34.5784920684236], [-77.3983911401174, 34.57838786387663], [-77.398401342188, 34.578379237454854], [-77.39840798179259, 34.578375145373634], [-77.3984250213204, 34.57836461458814], [-77.39850648737843, 34.578308660885654], [-77.39853176750772, 34.57828867027908], [-77.39855573992021, 34.57827964598101], [-77.39857231283494, 34.57827343822356], [-77.39859970339367, 34.57825732694876], [-77.39859716003131, 34.57827853077594], [-77.39860499106986, 34.5782811443824], [-77.39861331278016, 34.578276200159806], [-77.3986106658426, 34.5782561600051], [-77.39862221572707, 34.57824837974232], [-77.39862961826, 34.57824535925872], [-77.39863243077353, 34.57824387523722], [-77.39864541078695, 34.57823551427895], [-77.39864338853234, 34.57823205687373], [-77.39864926342898, 34.57822584151193], [-77.39864881438604, 34.57822385773732], [-77.39864433104137, 34.578218652959244], [-77.39864555600926, 34.578209112713296], [-77.39864403659274, 34.578203160660316], [-77.39864405211591, 34.57819215735798], [-77.39864193375595, 34.578184187619584], [-77.39863859592143, 34.5781832734913], [-77.39863944700296, 34.578176873885496], [-77.39863992273301, 34.57816621732513], [-77.39865424808079, 34.57814928181337], [-77.3986672673641, 34.57814976526346], [-77.39869651678664, 34.57813904026457], [-77.39870349980657, 34.57813572072628], [-77.39870964773719, 34.57813624594764], [-77.39878476632006, 34.578118782408595], [-77.39873416969697, 34.57809303579102], [-77.39870350051177, 34.57811948050113], [-77.39869175441348, 34.57811954557384], [-77.39867200560872, 34.5781159188886], [-77.39865424969264, 34.5781126581751], [-77.39863267235665, 34.578110907151995], [-77.39863653899536, 34.57808709801205], [-77.39863961787881, 34.578070884927634], [-77.39863975905338, 34.57806009755632], [-77.39865425279416, 34.57804223621502], [-77.3986635461548, 34.578040143733176], [-77.39870025702558, 34.57802833201115], [-77.39870350436199, 34.57803087896383], [-77.39872656404887, 34.578045886100476], [-77.39875275403494, 34.57806336209503], [-77.39875817466415, 34.578063706409694], [-77.39880200306784, 34.57811189110537], [-77.39880447432115, 34.5781132757666], [-77.39880665913866, 34.57811562354613], [-77.39885125256846, 34.578150571891754], [-77.39886322281077, 34.57814763509284], [-77.39890050378125, 34.5781486495341], [-77.39894146526272, 34.57814031120853], [-77.39895648546556, 34.57813982474215], [-77.39899900567161, 34.57815792774305], [-77.39908139451275, 34.578164762528516], [-77.39909750753321, 34.57816838146305], [-77.39917111653656, 34.57806303615899], [-77.39911091691731, 34.57798002072384], [-77.39919601649875, 34.57799024897807], [-77.39925820836585, 34.57790519568421], [-77.39933034435957, 34.577895316026655], [-77.39939302426149, 34.577886731444856], [-77.39945656314546, 34.57787802916383], [-77.39952601745406, 34.57786851666901], [-77.3995900305373, 34.57781317816541], [-77.39961384976749, 34.5778125328556], [-77.3997870376146, 34.57770214343829], [-77.4000069842503, 34.57770541360726], [-77.40018104144491, 34.577813625952416], [-77.40031639651063, 34.57789777666529], [-77.400359625714, 34.5781236655876], [-77.40043619632397, 34.578305063854884], [-77.40031003418406, 34.578462285734474], [-77.39988689762234, 34.578808901209136], [-77.39983148797981, 34.57886483284886], [-77.39978700089407, 34.578914106566344], [-77.39964198056221, 34.57911255371888], [-77.39944049985976, 34.579297888023284]], [[-77.34934897057022, 34.5502888619573], [-77.34931888295277, 34.55029143560481], [-77.34932141940212, 34.55030970734254], [-77.34935199937605, 34.550307551167975]], [[-77.34417701029861, 34.5303083577083], [-77.34410896593218, 34.530337300162145], [-77.34410379994135, 34.53034949404167], [-77.34407753510658, 34.530368668507826], [-77.34406232992008, 34.53036499726344], [-77.34405301372014, 34.530368165450376], [-77.34404926889013, 34.530370337061235], [-77.34404177946229, 34.53037371906278], [-77.34404059813274, 34.53037462520721], [-77.34403500314792, 34.53037891686605], [-77.34402819866297, 34.53038038653346], [-77.34402351481609, 34.53038108643132], [-77.34402252770937, 34.53038413969759], [-77.34402226236219, 34.53038823905432], [-77.34402147680663, 34.53039194151373], [-77.34400472434132, 34.5304085869023], [-77.34400439008664, 34.530410587810394], [-77.34401429848958, 34.53042357679102], [-77.34397744341923, 34.53045357601997], [-77.34396944605831, 34.530455675040045], [-77.34395681423769, 34.53046245027635], [-77.34394800853762, 34.53050733754631], [-77.34390074938173, 34.53057776805167], [-77.34390032144921, 34.530592988350136], [-77.34389501269074, 34.53060573556148], [-77.3438753382547, 34.53062570791998], [-77.34381029827378, 34.530646211199155], [-77.34381526598304, 34.53060522633791], [-77.34375951167976, 34.530539770419985], [-77.34369791943769, 34.53049970071051], [-77.34369420386986, 34.53049271338858], [-77.34368264542911, 34.53047097705759], [-77.34362217332226, 34.530388189451855], [-77.34360686375389, 34.53031745773241], [-77.3435831733602, 34.53027139103813], [-77.34347075871075, 34.53017910212568], [-77.34344801975543, 34.53013973180455], [-77.34339696788882, 34.53005336308435], [-77.34342594669894, 34.52997166654652], [-77.34341679804467, 34.52987613601509], [-77.34342965426525, 34.529803840900364], [-77.34343516038831, 34.52976087741909], [-77.3434305614791, 34.52974250557946], [-77.3434533528858, 34.5297095846561], [-77.34345435721109, 34.529677876997084], [-77.34345230446687, 34.52964502569444], [-77.34350520841946, 34.52965546055008], [-77.34351461473781, 34.529663228506735], [-77.34352065612308, 34.52966833788495], [-77.34354467369987, 34.529689994107976], [-77.34356749341521, 34.52972280371648], [-77.34358758016002, 34.52972868847601], [-77.34360141263728, 34.52973893250168], [-77.34364403400522, 34.529772995770315], [-77.34365471555421, 34.52979855997483], [-77.34369796167097, 34.52980747528626], [-77.34386263439337, 34.52986395263], [-77.3438802447258, 34.529869248647216], [-77.34389266149283, 34.5298751858238], [-77.34399704398383, 34.52996702292543], [-77.34399594802723, 34.53002304172381], [-77.34399598336145, 34.53008958526038], [-77.34403767737196, 34.53011213811111], [-77.34408183108592, 34.530182528013235], [-77.34409041979525, 34.53019290095341], [-77.34409149637024, 34.53019825215953], [-77.3440975121236, 34.5302075267], [-77.34412780690042, 34.53025423247986], [-77.3441438140533, 34.53027317059406]], [[-77.35933936320266, 34.549556646566174], [-77.3593185658614, 34.54956368266893], [-77.35932661459759, 34.549549655489656], [-77.35931494207581, 34.549535810449214], [-77.359314528429, 34.54950639336899], [-77.35933375848751, 34.54948742087796], [-77.35934114676564, 34.54947872119689], [-77.35937183983205, 34.54948193753652], [-77.35936899996454, 34.549525515992705], [-77.35935086507348, 34.54954616366257], [-77.35934568288079, 34.549550766714724]], [[-77.34504654894424, 34.545448888765875], [-77.34493804379844, 34.5455000813625], [-77.34506230671661, 34.54550712098622], [-77.34510179429742, 34.54552755538124], [-77.34513542921468, 34.54557247227596], [-77.34517546803315, 34.54563583085822], [-77.34517593510918, 34.545710674533765], [-77.3452319037315, 34.54574083056298], [-77.34529149589511, 34.54581369479311], [-77.34529348250268, 34.545816172212774], [-77.34533000156645, 34.54590796080417], [-77.345346309522, 34.54593098142464], [-77.34540672554212, 34.545996776832204], [-77.34528518794254, 34.546087263907076], [-77.3451622772026, 34.546034857489154], [-77.34508353295172, 34.5459687883288], [-77.3450054583594, 34.545912154472845], [-77.34502527791979, 34.54581112328303], [-77.34500586418949, 34.54573514336114], [-77.34500970306576, 34.545667594222266], [-77.34496347632489, 34.545618832069344], [-77.34493291623261, 34.5456050152676], [-77.34490534423747, 34.54553408642619], [-77.34489131316136, 34.545515816976604], [-77.34485571572786, 34.545511926088786], [-77.34478481030581, 34.54544569272997], [-77.34473048385723, 34.54540753376107], [-77.34491076871932, 34.54529888135169], [-77.34495548793058, 34.54537516182751], [-77.34502251425079, 34.54541655282746]], [[-77.35582266288115, 34.55172637752273], [-77.3558313687317, 34.55164423053041], [-77.3558942321562, 34.55159706557335], [-77.35595609838452, 34.551564773002994], [-77.35615442263672, 34.55147531260255], [-77.3561544493381, 34.55147530104196], [-77.35615446233588, 34.551475273888144], [-77.35618921570946, 34.55140909803409], [-77.35617285761737, 34.55140104361071], [-77.35618791909465, 34.551367399060155], [-77.35618741912631, 34.55134815095559], [-77.35620455871333, 34.55131671226121], [-77.35620568888757, 34.55131395162504], [-77.35624026842807, 34.55127933697377], [-77.35624644624096, 34.55127168881108], [-77.35628623934046, 34.5512549043385], [-77.35635590363839, 34.55125150849234], [-77.35642843600364, 34.55123604933664], [-77.35648292415962, 34.55122675846347], [-77.35655314031716, 34.551211138110524], [-77.35659967044492, 34.55119875902723], [-77.35660570042995, 34.55119811059816], [-77.3566066393156, 34.55119348562488], [-77.35662346400048, 34.55116296515502], [-77.35665321671777, 34.55112733297981], [-77.35667312804613, 34.55110673096134], [-77.35673505128037, 34.551096315044965], [-77.35674022799128, 34.55113937822745], [-77.35674343549275, 34.551145693413424], [-77.356738755863, 34.55115385514087], [-77.35675071731436, 34.55115590917778], [-77.35678581219548, 34.55116155702801], [-77.35677905504045, 34.55114056538648], [-77.35677603958476, 34.5511256421227], [-77.35679029392563, 34.55107774160659], [-77.35682979335262, 34.55105876964518], [-77.35690056467274, 34.55100066046727], [-77.35692947351403, 34.55098308240441], [-77.35695214219238, 34.55093275590775], [-77.35695236679956, 34.55093212796742], [-77.35695282172753, 34.55093193138891], [-77.35700524042787, 34.55089576030447], [-77.35710403685502, 34.55087744169023], [-77.35715003276654, 34.55086379979131], [-77.35724626739426, 34.550888844476944], [-77.35720983190376, 34.550833724052765], [-77.35725033820924, 34.55076995317237], [-77.35725447450811, 34.550768651683], [-77.35725277076611, 34.550766336328095], [-77.35725655615525, 34.550762027300124], [-77.35731371287463, 34.55069635659746], [-77.35735086496271, 34.550666437301125], [-77.35740572162547, 34.550649150300174], [-77.35744951299318, 34.550644914148116], [-77.35747897428183, 34.55062950867075], [-77.35749373042644, 34.550609233281286], [-77.35754910955593, 34.55058198430775], [-77.35762202522784, 34.55057492312909], [-77.35771371049313, 34.550516356036134], [-77.35773197974254, 34.55050423479871], [-77.35774775812774, 34.550479877107655], [-77.3577881579975, 34.55048043747761], [-77.35784644416135, 34.550456679720895], [-77.35792428445589, 34.55048603848851], [-77.35784472613285, 34.550531684547266], [-77.35777719125541, 34.55052623197883], [-77.35778473747723, 34.550567335768626], [-77.357744518244, 34.55062131511192], [-77.35772604840881, 34.55062553452606], [-77.35772745650739, 34.55063678864813], [-77.35769468133952, 34.55067186191389], [-77.35764781652352, 34.55071165724325], [-77.3575811496412, 34.55078026472145], [-77.35754388593215, 34.550809999864796], [-77.35745462943463, 34.55086603539303], [-77.35735843753942, 34.550934740786985], [-77.35734450441609, 34.55094405219267], [-77.35726477103385, 34.55099718555137], [-77.35724013605663, 34.551010047223336], [-77.35724077194955, 34.551012887022175], [-77.35714494944759, 34.551085645801194], [-77.3571416077998, 34.55108629502912], [-77.3571403266538, 34.55108855391658], [-77.35712481542097, 34.551103092531385], [-77.35705020250545, 34.5511660084737], [-77.35701807471139, 34.551183864900125], [-77.35694597345312, 34.55120194434667], [-77.35688753459068, 34.55121104954713], [-77.35689452223718, 34.551246353490626], [-77.35680427802224, 34.5512947276833], [-77.35657935972347, 34.55141413758806], [-77.35657048078208, 34.5514293473493], [-77.35654798077437, 34.551436241927135], [-77.35650926929087, 34.55144819600602], [-77.35634995239269, 34.551511126686975], [-77.35627017072636, 34.55153160524768], [-77.35619645221077, 34.551564218917896], [-77.35615445885588, 34.551475425684906], [-77.35611848367412, 34.5516028978023], [-77.35601370000654, 34.55165519283325]], [[-77.34472703016677, 34.54515741340121], [-77.34481633567502, 34.545137746348715], [-77.34482454307788, 34.54514918175528], [-77.34482706100638, 34.54520240619841], [-77.34485954847406, 34.545233677047904], [-77.34479181637687, 34.54527629995266], [-77.34471261698464, 34.54537921082128], [-77.34457089421593, 34.545308084327516], [-77.34461911197107, 34.545239061866326], [-77.34469350460266, 34.54515286060108], [-77.34464066317533, 34.545053227139576], [-77.3447210637008, 34.54501299980012], [-77.34473771674364, 34.54503926390318], [-77.34475288518406, 34.54505756616079]], [[-77.34316255558109, 34.53645238827078], [-77.34336616254788, 34.53630977523959], [-77.34340096582677, 34.536295678448404], [-77.34354972671687, 34.536229158536436], [-77.3436764164127, 34.53625604856796], [-77.34373253170457, 34.53625599118156], [-77.34374463188962, 34.53628862874694], [-77.34376794669245, 34.53636528937233], [-77.34374182298232, 34.53641032846883], [-77.3437091666506, 34.536476745772276], [-77.34367149656495, 34.536501575689], [-77.34354099726946, 34.53660733535757], [-77.34343186322451, 34.536590152927126], [-77.34328177094615, 34.53659705172076], [-77.34316868912738, 34.536462042329546]], [[-77.32392342295182, 34.52709095965293], [-77.32392905443517, 34.52710542055408], [-77.32394382456675, 34.52710089659748], [-77.32397817188112, 34.52706826726191]], [[-77.34738966238915, 34.548467952736225], [-77.34745468531331, 34.54856546088883], [-77.34749188525842, 34.54861664011885], [-77.34750166395736, 34.54863088152652], [-77.34746326662207, 34.548686636258424], [-77.34757970583183, 34.54873989130824], [-77.34760338458034, 34.54877363484381], [-77.34760769999716, 34.54878826374346], [-77.34763083667085, 34.54881793878428], [-77.34762519826667, 34.54887780802941], [-77.34765723377843, 34.54890354641826], [-77.3476737102451, 34.548920057928854], [-77.34768045934919, 34.54895667521852], [-77.34768241666713, 34.548967234332906], [-77.34767248003322, 34.548973480076825], [-77.34766238481181, 34.54897035027087], [-77.34757510345858, 34.54893973975184], [-77.34752479266427, 34.54892260353212], [-77.34751995995236, 34.54883675319938], [-77.34750805052256, 34.54880260235737], [-77.34735183856367, 34.54872259812488], [-77.347335879675, 34.54870496598462], [-77.34731828457295, 34.54866583083367], [-77.34730786707084, 34.54864779166609], [-77.34730580846306, 34.5486367471189], [-77.34725356341727, 34.54859440028602], [-77.34722864824852, 34.548574448819934], [-77.34719155949186, 34.54854596148566], [-77.34711873326522, 34.54849139068466], [-77.34709816838935, 34.54843181477463], [-77.34705873482945, 34.548377613525965], [-77.34709421827, 34.54830839681506], [-77.34719711835649, 34.548304629370065], [-77.34724687337496, 34.548319306155506], [-77.34727327969787, 34.54834674309555], [-77.34732669892118, 34.548379587756926], [-77.34737268670264, 34.548443918929976], [-77.34737976606901, 34.54845383095002], [-77.34737394573521, 34.54846451815586]], [[-77.34580543875649, 34.5341651850817], [-77.34581178330498, 34.534162477121136], [-77.3458177512838, 34.53416321227241], [-77.34582014755868, 34.53416350745165], [-77.34582575918054, 34.53416419870527], [-77.34582998261614, 34.53416476098493], [-77.34583313186748, 34.534165106891095], [-77.3458360997318, 34.53416547247985], [-77.34583729139462, 34.53416561927172], [-77.34584221588133, 34.534166225881705], [-77.34585440490649, 34.53416772735387], [-77.34585442607725, 34.53416773801614], [-77.34585444818063, 34.53416773268447], [-77.3458544804312, 34.53416773665717], [-77.34585446234222, 34.534167719089155], [-77.34585446253399, 34.53416771042977], [-77.34585444964, 34.53416766938867], [-77.34585118621169, 34.53416053988404], [-77.345852199188, 34.53415886395662], [-77.34585230025664, 34.53415426225659], [-77.34585233403993, 34.534152724093325], [-77.34585236786945, 34.534151183824946], [-77.34585246870756, 34.534146592621404], [-77.34585250260602, 34.534145049213414], [-77.34585263715836, 34.53413892298616], [-77.34585105672625, 34.53413760664414], [-77.34585107771805, 34.53413503132288], [-77.34585161944048, 34.53410952439855], [-77.3458474570315, 34.53410752212546], [-77.345847418891, 34.53410220131466], [-77.34584839731069, 34.5340516251817], [-77.34583934919311, 34.5340474838073], [-77.34583906910508, 34.534036038867725], [-77.34594813595169, 34.5339761540142], [-77.34595708787161, 34.533972402358245], [-77.34601507603873, 34.534022197439214], [-77.3460299197034, 34.53403494385812], [-77.34605331890253, 34.53405503696919], [-77.34607612193672, 34.53407461813707], [-77.3460658609411, 34.53412842238021], [-77.3460610056843, 34.534144072539064], [-77.34605091671541, 34.53415923543499], [-77.34602979592322, 34.534190978249924], [-77.34602043912328, 34.5342050407252], [-77.34599858613979, 34.53423788394497], [-77.34597540295908, 34.5342727262615], [-77.34594984593723, 34.53428651615108], [-77.3459364342186, 34.53427833370244], [-77.34589569405551, 34.53425718581188], [-77.34585297888486, 34.534231459134155], [-77.34584964042298, 34.534229617929775], [-77.34583258658168, 34.53421917715418], [-77.34580885536046, 34.53420488419365], [-77.34580689548537, 34.53420370379], [-77.34580458275163, 34.53420231086388], [-77.3457678431625, 34.53418018312811], [-77.34576249624071, 34.5341769627523], [-77.3457705037464, 34.53415790760903], [-77.34578797605202, 34.534157682531124], [-77.34579576254879, 34.53416086443783]], [[-77.3487213472931, 34.54973795478518], [-77.34873347339791, 34.549785802750314], [-77.3487424024489, 34.54984270286744], [-77.34874085839009, 34.54984930944004], [-77.3487418886924, 34.54985540752271], [-77.34880299786975, 34.5499627778603], [-77.34880134523019, 34.55000853419343], [-77.34873890327917, 34.55003320627572], [-77.34876182576348, 34.55006936410345], [-77.34876678599495, 34.550090399100014], [-77.34883459095268, 34.550134988514195], [-77.34883743496235, 34.5501502894943], [-77.34881046680263, 34.55015324083966], [-77.3487976479479, 34.55014716325158], [-77.34872573503844, 34.55012203343409], [-77.34869519933392, 34.55014316813246], [-77.34866812274838, 34.55014025968447], [-77.34862968416236, 34.55011128569374], [-77.34863111709538, 34.550109921786124], [-77.3486278662709, 34.550109602947174], [-77.34858799730229, 34.55008020399916], [-77.34853138440249, 34.550036918989285], [-77.34850656209652, 34.550021139302096], [-77.34849320396555, 34.54998277203083], [-77.34847673269188, 34.549887316791306], [-77.3485372788396, 34.54978083272585], [-77.34855622048744, 34.54976505314282]], [[-77.34622354328093, 34.54701529556653], [-77.34616846793125, 34.547036789185746], [-77.34614633278349, 34.54705085151837], [-77.34613502193451, 34.54704160145187], [-77.3460860226965, 34.54702542001647], [-77.34606857931259, 34.54693987606992], [-77.34619446769773, 34.54694337209179]], [[-77.35959163076095, 34.54857255393142], [-77.35958323286121, 34.548564012012], [-77.3595953021809, 34.54855455552621], [-77.35960793830793, 34.54854326879568], [-77.35962024564454, 34.548550898896366], [-77.35961953132008, 34.54855878527739], [-77.35962247786411, 34.548567777352325]], [[-77.35956603325421, 34.54822985570954], [-77.35956603258427, 34.54822985433547], [-77.35956603501766, 34.548229851050216], [-77.35956603720692, 34.54822985373685], [-77.35956603708135, 34.54822985515845], [-77.35962216071445, 34.54824772551452], [-77.35962458158868, 34.548258340404054], [-77.35962906226236, 34.54828198591982], [-77.35961333773903, 34.54830733465057], [-77.35958224984249, 34.54828872661273], [-77.35958905333231, 34.548272780441266], [-77.35956603473643, 34.548229863338804]], [[-77.34944054431125, 34.55088091905009], [-77.34940688630128, 34.55089312526826], [-77.34940581073113, 34.55090959174075], [-77.34943192739519, 34.55091276166932], [-77.34944357545169, 34.550918382504236], [-77.34946574855144, 34.55090789464764], [-77.3494857866787, 34.550900472429376], [-77.34948823526577, 34.55087739889985], [-77.34945782169393, 34.55087843275268], [-77.34944833988541, 34.55087741406807], [-77.34943640641777, 34.55087644259471]], [[-77.35648046279641, 34.55130596371612], [-77.35645314153233, 34.5512915483108], [-77.35644631126715, 34.55130683979328], [-77.35644337527434, 34.55131130296599], [-77.35645245565156, 34.551321470811374]], [[-77.35961956772165, 34.54850426938364], [-77.3596085888716, 34.54851484167176], [-77.35960321741183, 34.54850344063301], [-77.35957928575549, 34.54850337438046], [-77.35956028117695, 34.54848126493261], [-77.359558054534, 34.548477273989654], [-77.35955825504251, 34.54847579966705], [-77.35955849431795, 34.548474555202915], [-77.35956063234089, 34.548465920824476], [-77.359566892443, 34.548474555938924], [-77.35962469763072, 34.54848718491594]], [[-77.34290591840005, 34.52896112312552], [-77.34288509709909, 34.52893419287016], [-77.34293282160502, 34.528945284884315], [-77.3429444423054, 34.52895558043286], [-77.34295662726697, 34.528969016921366], [-77.34293174736129, 34.528991801972595]], [[-77.34905828232564, 34.55056913708421], [-77.34906042194096, 34.55056928442551], [-77.34905979243162, 34.550567994538255], [-77.34905725334409, 34.55056774247573]], [[-77.34927843106054, 34.55034223255734], [-77.34929097021289, 34.55033994840658], [-77.34929657829889, 34.55032850226197], [-77.34927297814745, 34.55033119285699]], [[-77.34873842477332, 34.55063012241952], [-77.34873924894256, 34.55059927862071], [-77.3487829861796, 34.55059640748378], [-77.34877497917775, 34.550609464035], [-77.34878692815188, 34.55062248113216], [-77.34876292759985, 34.550638444203926]], [[-77.34916285987326, 34.5504006346356], [-77.34916267913684, 34.55039964117264], [-77.3491610419502, 34.550399739123435], [-77.34915921273004, 34.55040115946985], [-77.34916099339213, 34.550401849456826]], [[-77.34968980084419, 34.5508820384213], [-77.34968315326361, 34.550880772147195], [-77.3496686311976, 34.55087869868818], [-77.34968638483195, 34.550873896983724], [-77.34969040647223, 34.55085571034401], [-77.3497074402559, 34.550862396441005], [-77.34969805017191, 34.55087446510315], [-77.3497039803583, 34.55088245941788]], [[-77.34932480091813, 34.55094632418987], [-77.34932779687597, 34.55093844735557], [-77.34930386579727, 34.550936136540315], [-77.34931151327935, 34.550950767535184]], [[-77.34939182365312, 34.55027587805059], [-77.34938489944912, 34.55026897923893], [-77.34937141226334, 34.55027881534846], [-77.3493843674016, 34.550292104660656]], [[-77.3489649127291, 34.550957479681784], [-77.3489631111801, 34.550973009954916], [-77.34899235775815, 34.55097083534264], [-77.34898877293452, 34.5509535943917]], [[-77.34731235548692, 34.55288565853216], [-77.3473122246147, 34.55288546757496], [-77.34731259721377, 34.552885475652644], [-77.34731269708114, 34.552885697495526]], [[-77.3493566823499, 34.55092358974566], [-77.34936971974068, 34.5509287660457], [-77.34938267959461, 34.55091984863951], [-77.34937010646566, 34.550911956987534]], [[-77.3674751409664, 34.62678604270902], [-77.36903598061572, 34.625563120104545], [-77.36927126260343, 34.62508241212281], [-77.36982465491688, 34.625011540005474], [-77.37017481048485, 34.624699128493276], [-77.37041918938448, 34.6244548770121], [-77.3706134077008, 34.624204151768], [-77.37110906665359, 34.623715486640215], [-77.37081739442016, 34.623127646826475], [-77.37122302559251, 34.62284995832713], [-77.37087429300624, 34.62261980490189], [-77.37061397532094, 34.622572795814555], [-77.3703932164619, 34.62273176323694], [-77.3698254203361, 34.622867209235906], [-77.36974538224891, 34.62306273064268], [-77.36952669954916, 34.623621920194715], [-77.36943012493478, 34.62395723724265], [-77.36926528761049, 34.62422739041121], [-77.36903639156657, 34.62443879285856], [-77.3687975097822, 34.62464025811409], [-77.36816972243778, 34.62498781780065], [-77.367458564767, 34.62675760502957], [-77.36744381596094, 34.62677467641494], [-77.36743580374853, 34.6268161919061], [-77.3674585457581, 34.62680717295705], [-77.36746507279796, 34.62679451583145]], [[-77.34368592093055, 34.5367138246775], [-77.34383528249779, 34.53660042065623], [-77.34388356212277, 34.53656163884244], [-77.3439364615866, 34.53648137279818], [-77.34403002229871, 34.536384538677474], [-77.34426126544678, 34.53609727416281], [-77.34423385364802, 34.53605343663539], [-77.34429662902593, 34.53601753012209], [-77.34434020936254, 34.535996353121746], [-77.34461818180927, 34.53567726870291], [-77.34467676389498, 34.5355000711347], [-77.3447464580769, 34.53540272171447], [-77.34482061500272, 34.535279022921316], [-77.34484109475768, 34.535231606851326], [-77.34489071470769, 34.53513830379785], [-77.34490889864222, 34.53509944111227], [-77.344921778985, 34.53507987459373], [-77.3449922780627, 34.53496503397501], [-77.3450557093469, 34.5348966764411], [-77.3450779019218, 34.534830304058715], [-77.34513861619037, 34.53470937682313], [-77.34514336695986, 34.53469847458354], [-77.3451473563461, 34.53469289575735], [-77.3451557022751, 34.53467897158974], [-77.34526170120222, 34.534559037673176], [-77.34530750019783, 34.53452245815756], [-77.34543505167963, 34.534411684197096], [-77.34549764057903, 34.53436662244524], [-77.34555701209902, 34.53429900319845], [-77.3455728646983, 34.53426944421954], [-77.34556774284445, 34.53426399227038], [-77.34558538307323, 34.53420643794989], [-77.34557432836303, 34.53419867190705], [-77.34555956488458, 34.53418830040397], [-77.34553376586682, 34.5341690276355], [-77.34552002214056, 34.53415463793584], [-77.3455162306447, 34.534152127638876], [-77.34551140454246, 34.534148932341196], [-77.34550109065219, 34.53414206078856], [-77.34550137902447, 34.53413557453584], [-77.34550042047672, 34.534133922322255], [-77.3454940158312, 34.534127777558204], [-77.34548750241407, 34.53412152843542], [-77.34548161726187, 34.53411798179178], [-77.34547008264126, 34.5341048154948], [-77.34546676207293, 34.53410109667331], [-77.34546715898699, 34.53409875352589], [-77.34546358439276, 34.53409481438464], [-77.34542616587275, 34.53404573316049], [-77.3454432702365, 34.53399615539287], [-77.34542495114967, 34.53395865003248], [-77.34547791285644, 34.53391587723242], [-77.34551996978934, 34.53388070732927], [-77.34556921872489, 34.533769657720086], [-77.34563837433359, 34.53368995245121], [-77.3456450436788, 34.533647008319434], [-77.34564417758509, 34.53360278264964], [-77.3456699619642, 34.53339860278692], [-77.34569817238204, 34.5332222768074], [-77.34569600891828, 34.533150034823606], [-77.34568143686863, 34.533091890835905], [-77.34569549648359, 34.53290528863116], [-77.34567166565495, 34.53285793589108], [-77.345590435736, 34.532849577514384], [-77.34550307853557, 34.53274415608119], [-77.34539744289827, 34.53270749467377], [-77.34539466775587, 34.53270551564081], [-77.34539037083546, 34.532704374661364], [-77.34533564258302, 34.53268984244695], [-77.34531562615412, 34.53268452739426], [-77.34529993406085, 34.53268036060189], [-77.34527661743691, 34.532674169226134], [-77.34528337633168, 34.53265856541623], [-77.34528533673013, 34.532648724141225], [-77.34528285225291, 34.53264333959054], [-77.3452869490791, 34.532636182845906], [-77.34528625832819, 34.53263364821915], [-77.34528334020021, 34.532627968140396], [-77.34528258781532, 34.53262439871834], [-77.34528069418911, 34.532615415076975], [-77.34527910509853, 34.53261327630026], [-77.34527907279343, 34.532611974247544], [-77.34526887507519, 34.53259944707961], [-77.34526450495136, 34.532576485136886], [-77.34526704045368, 34.53256074198686], [-77.34524911392106, 34.532541085592314], [-77.34524568082826, 34.53250522341374], [-77.34528468307722, 34.532474762486835], [-77.34532151253161, 34.53239884918107], [-77.34526903361854, 34.53226819852221], [-77.34525821305223, 34.53223375147951], [-77.34521291060271, 34.532198623715175], [-77.34500391345968, 34.53215647802287], [-77.34505714969264, 34.532017862959215], [-77.34494747146123, 34.531957840086605], [-77.34491115125431, 34.53191646099609], [-77.34482925066315, 34.53181385933787], [-77.34482520017181, 34.53180901460809], [-77.34482372054431, 34.531806631553835], [-77.3448208399556, 34.53180162432143], [-77.34477045243145, 34.53160909464092], [-77.34476046022452, 34.53157091425499], [-77.34475078732314, 34.53151912850063], [-77.34476329669721, 34.5313731623671], [-77.3447622642013, 34.53132583500826], [-77.34471961761484, 34.53125556082365], [-77.3446581334506, 34.53109599822002], [-77.3445740014266, 34.531033707252384], [-77.3444572054062, 34.53092589007128], [-77.34443348105296, 34.53089869205685], [-77.344414883732, 34.5308861797515], [-77.34432586687876, 34.53073877650164], [-77.34419989661448, 34.530672293811804], [-77.34427140336709, 34.53054057545134], [-77.34427081118808, 34.53053909123621], [-77.34426994118121, 34.530535844021145], [-77.34424069495033, 34.53044120707871], [-77.34423938409799, 34.530421792746786], [-77.34422973952269, 34.53039609530066], [-77.34427389649763, 34.53036444646534], [-77.34430696800545, 34.53030949432103], [-77.34430281485638, 34.53029025614316], [-77.34430268277376, 34.53027362825525], [-77.34427723671072, 34.530219703609745], [-77.34426279356063, 34.53018313939111], [-77.34425713711323, 34.53017441879585], [-77.34423833724252, 34.53008097246393], [-77.34421890999835, 34.53005750937615], [-77.34421897281183, 34.53001826161156], [-77.34422360915309, 34.52993442335428], [-77.34418400621233, 34.52988073869594], [-77.34409075099502, 34.529796038030646], [-77.3440393898749, 34.52974882424867], [-77.34397598683039, 34.52972523317448], [-77.34384672621994, 34.52965326689446], [-77.34381232706617, 34.52962637159608], [-77.34370409244109, 34.52954189027742], [-77.34369033955609, 34.52953025905582], [-77.34368132115273, 34.52952281144838], [-77.3436603128179, 34.52949789513009], [-77.34356086165069, 34.52938688959195], [-77.34351254229267, 34.52933778983016], [-77.34349302290462, 34.52931755060615], [-77.34348260260197, 34.52930658408654], [-77.34342480480612, 34.529248498565025], [-77.34338660675814, 34.52919798637705], [-77.34332130223831, 34.52912029957875], [-77.34330396446026, 34.52909859364054], [-77.34329542735776, 34.52908869566146], [-77.34327829317475, 34.52906351812377], [-77.34324713913992, 34.529020921012275], [-77.34321816395747, 34.52897740263837], [-77.34319209439927, 34.52894190101469], [-77.34313075543787, 34.528872830330364], [-77.34312817457582, 34.528869596921155], [-77.34312661267128, 34.5288681653686], [-77.3431240841645, 34.52886424457482], [-77.34307544595096, 34.52878882449361], [-77.34304395300319, 34.528757648669384], [-77.34293916814714, 34.528670466125824], [-77.34292235248076, 34.528663325650435], [-77.34290339913481, 34.52865546161742], [-77.34271233054282, 34.52858090395147], [-77.342548533014, 34.528588849898654], [-77.34243330704696, 34.52855069446863], [-77.34235354253661, 34.52853389319167], [-77.34231366767239, 34.528520552590855], [-77.34229605968761, 34.52849802329189], [-77.34229156589439, 34.528476941206655], [-77.34225691435105, 34.52846888682758], [-77.34222821244771, 34.52846454412932], [-77.34215935779447, 34.52844407082135], [-77.34207347555034, 34.52840763724062], [-77.34202771797325, 34.52837491277237], [-77.34190675683695, 34.528309213459714], [-77.34187429704139, 34.52824966202212], [-77.34177306898572, 34.528174435338265], [-77.34171232175545, 34.52813088429994], [-77.34165757462489, 34.52810024403329], [-77.34160296045079, 34.52799948063493], [-77.3415908471349, 34.52798146094654], [-77.34148524155262, 34.52788021827142], [-77.34138966130271, 34.52778024883468], [-77.34130823274494, 34.52771262813089], [-77.34120601544525, 34.52767557039523], [-77.34104795787563, 34.52748086689918], [-77.34102190292442, 34.527457238945075], [-77.34101591918078, 34.52745113517845], [-77.34100508873509, 34.52743660931659], [-77.34090771964779, 34.527291667751435], [-77.34086525704032, 34.52723495577911], [-77.34081477465894, 34.52717953613694], [-77.34075682814105, 34.527164504302306], [-77.34072733206781, 34.52707636100244], [-77.34068289343747, 34.52701637220456], [-77.34062534445154, 34.52688428830926], [-77.34057405840761, 34.52682012432016], [-77.34051303357558, 34.52679598967883], [-77.34048580161902, 34.52671036280354], [-77.34033497681415, 34.526518354340254], [-77.34009693473874, 34.526366211477864], [-77.34004826690672, 34.52625262314017], [-77.33993237314097, 34.52544729590927], [-77.33992559552455, 34.52541158686921], [-77.33990964405825, 34.52539216962168], [-77.33987633197529, 34.525327421984066], [-77.3395837278247, 34.52515610817727], [-77.33959884288281, 34.524968955364976], [-77.33952802541143, 34.524753612373644], [-77.33952429868026, 34.52471840543567], [-77.3395730514323, 34.52448302923162], [-77.33955417725211, 34.5242695402894], [-77.33955474928602, 34.52421269324014], [-77.33941230948679, 34.52420046291972], [-77.3392166567052, 34.52446851804862], [-77.33918171354422, 34.5245393241123], [-77.3392657009819, 34.5246258835118], [-77.33943607344571, 34.52478516265375], [-77.33931763871612, 34.52500940724377], [-77.33932807736525, 34.525153061587936], [-77.33930254753844, 34.52536886723365], [-77.33957832150438, 34.52546154329564], [-77.33963576804283, 34.525599401446016], [-77.3393610034922, 34.526162704749964], [-77.339478036147, 34.52645524082959], [-77.33951465927241, 34.52665638219599], [-77.33972556933632, 34.52690927072578], [-77.33983350297137, 34.52717896365078], [-77.33989632323214, 34.527332940273155], [-77.3398774263197, 34.527377062392496], [-77.3398715232475, 34.52740488488002], [-77.34000422891145, 34.52773396614748], [-77.34009377795064, 34.52783557589215], [-77.34020878488649, 34.52792408400379], [-77.34029512936141, 34.527996529717555], [-77.34033676268137, 34.52804543960606], [-77.34050461491088, 34.528079358823106], [-77.34059692263341, 34.5281135019967], [-77.34061309214425, 34.528128096966164], [-77.34065823548507, 34.52820445860961], [-77.34069033274753, 34.528239394447276], [-77.34068926303047, 34.52829982911243], [-77.34066221594308, 34.528442784931656], [-77.34069294549631, 34.52848383696721], [-77.34077859943798, 34.52859606055185], [-77.34092505325341, 34.5286952640674], [-77.34107833533899, 34.52885194051592], [-77.34135904643617, 34.52910485625024], [-77.34136763088921, 34.529115721072436], [-77.34137310528676, 34.529120444312376], [-77.34144684185819, 34.52916546833908], [-77.34170592536346, 34.52934242609145], [-77.3417450742697, 34.529385926265284], [-77.34190168525889, 34.52953403726703], [-77.34203876247224, 34.52957326104726], [-77.342131159653, 34.52966461560025], [-77.34219801566339, 34.529694100467445], [-77.34222486451023, 34.52973236080557], [-77.34232251667035, 34.52984123561528], [-77.34251811588652, 34.52990571204437], [-77.34255450446689, 34.52990703941786], [-77.3425550830955, 34.529929670897495], [-77.34266068673438, 34.53006803617356], [-77.34290190499301, 34.53028404723322], [-77.34293882510708, 34.53034026183579], [-77.34296638807949, 34.53036013295188], [-77.34299051622071, 34.53041379685651], [-77.34317251871212, 34.530646118030205], [-77.34324732636708, 34.53080935098386], [-77.34326046246643, 34.530820917085784], [-77.34328143917931, 34.53084681968862], [-77.34339781804819, 34.53095832721715], [-77.34343368968098, 34.531027356566], [-77.34351214891555, 34.53116453499563], [-77.34357882035107, 34.53125129464978], [-77.34360979535356, 34.531280617463565], [-77.34366237671563, 34.531349025184866], [-77.34372898475448, 34.531431774162435], [-77.34374766621946, 34.531471820508884], [-77.34378546921675, 34.53150970611545], [-77.3438247192829, 34.53156509633404], [-77.34383869031232, 34.53158113360046], [-77.34384164117218, 34.531587874522494], [-77.34385293740755, 34.5315962209173], [-77.34393797962335, 34.53168925735993], [-77.34397031540266, 34.53173185464874], [-77.34401401450832, 34.53178144571569], [-77.34402983618837, 34.531798450578904], [-77.34403344132386, 34.531804761278536], [-77.34404404380234, 34.53181982130315], [-77.34406087198127, 34.53185518992654], [-77.34407929296891, 34.53189073902635], [-77.34408770587504, 34.53191253382923], [-77.34414106152833, 34.53196467285845], [-77.34415570414839, 34.53197461937691], [-77.34422142158392, 34.53201570411599], [-77.3442258251011, 34.53202120683305], [-77.34423552143075, 34.53202737943044], [-77.34433736130839, 34.53212143192276], [-77.34436824949881, 34.53215478300674], [-77.34442732213738, 34.53222097729952], [-77.3444365572082, 34.532229568913465], [-77.3444384909545, 34.53223647960505], [-77.34447375207266, 34.53228542199617], [-77.34446050740634, 34.5323263194441], [-77.34449515401167, 34.53234354745696], [-77.34446324992601, 34.53237272948415], [-77.34442324704045, 34.53239758557175], [-77.34426222995953, 34.53247635188627], [-77.34422478959343, 34.53249243279127], [-77.34421096541834, 34.53249831024435], [-77.34418874248534, 34.532531958142556], [-77.34410224502216, 34.53264490026547], [-77.34422022900478, 34.532690061754906], [-77.34429211186772, 34.53269508695888], [-77.34437046129294, 34.53272871819599], [-77.34439506487368, 34.53273785800555], [-77.34441521542439, 34.53274566373629], [-77.34452794952796, 34.53275798022756], [-77.3445876092473, 34.532819883619034], [-77.34459756997134, 34.53282597330083], [-77.34460910583925, 34.53284878005431], [-77.34461818367498, 34.53287668929699], [-77.34460808040606, 34.53289322540343], [-77.34457971482958, 34.5329262129199], [-77.3445595532814, 34.53294633025989], [-77.34452707426915, 34.53299998911434], [-77.34449819037926, 34.53307756925999], [-77.34449316405045, 34.53313247391801], [-77.34440463934942, 34.53320401621495], [-77.34423810419813, 34.533256704867085], [-77.34414763199668, 34.53328710285463], [-77.34400979041192, 34.53330400938942], [-77.34389631532096, 34.53333871542545], [-77.34380623201433, 34.53354542804931], [-77.34368645987826, 34.533684000685454], [-77.34368321420976, 34.53373176697479], [-77.34366753000215, 34.53413306834495], [-77.34369974041287, 34.53417172866614], [-77.34386071290106, 34.534228240673386], [-77.34398416592327, 34.53425321589211], [-77.34388149489155, 34.53432508042924], [-77.34390305635932, 34.53438729542174], [-77.3438868230584, 34.53444982963312], [-77.34382734572145, 34.534547115584395], [-77.34381553918297, 34.53464470664772], [-77.34378108901717, 34.53470908321462], [-77.34375767721068, 34.534761596089474], [-77.34375051058299, 34.53477647243157], [-77.34373698363481, 34.53480455137032], [-77.34370110181005, 34.53490599071799], [-77.34357621409373, 34.535081679201795], [-77.34346751131349, 34.53511713419961], [-77.34339082060097, 34.53519545150178], [-77.34317637347937, 34.53539744522156], [-77.34313961660867, 34.53545430690946], [-77.3430968946773, 34.53548255831176], [-77.34277699603683, 34.53569302160185], [-77.34267857028314, 34.535726661343226], [-77.34249664176728, 34.53581373366457], [-77.34226249931994, 34.536020910029414], [-77.34221678966749, 34.536098813454544], [-77.34197906331535, 34.53624821300929], [-77.34177940847724, 34.53628253297637], [-77.34175349283956, 34.536410282015055], [-77.34173794179193, 34.53651074476386], [-77.34157666085707, 34.53667434050712], [-77.34157424660155, 34.53667945467494], [-77.34157193057491, 34.53668121979594], [-77.34156423121493, 34.536689855509124], [-77.34126658664358, 34.536969963323564], [-77.34121951362025, 34.537003564085204], [-77.34117469544611, 34.53708138071299], [-77.34100729624637, 34.53725208111752], [-77.34104149837839, 34.53732669300947], [-77.34102493811537, 34.537405640342044], [-77.34100662601094, 34.537496996132056], [-77.34101748284061, 34.53758620266932], [-77.34104203613505, 34.53766236268643], [-77.34102092361388, 34.537739757878256], [-77.34099948621268, 34.53784115843261], [-77.34103268159963, 34.537906207682674], [-77.34099824842683, 34.53798783802825], [-77.34093646617839, 34.53813017762584], [-77.3409008985707, 34.538246660124855], [-77.34088955501207, 34.538333330501246], [-77.34084880828098, 34.53849897114092], [-77.34081408395073, 34.538705448526734], [-77.34082436372785, 34.53874730633543], [-77.34084877583302, 34.53881027710328], [-77.34090597475961, 34.538980384791564], [-77.3409270830474, 34.539102634585305], [-77.34112267665132, 34.539332213657154], [-77.34126565235675, 34.53901321239091], [-77.34152310502716, 34.538992146060934], [-77.34159315196916, 34.53888153462011], [-77.34177332427612, 34.53876354863406], [-77.34181003368431, 34.538727925991395], [-77.34186360645262, 34.538683298592204], [-77.34192401504869, 34.538631087196045], [-77.34195566573237, 34.53860391359933], [-77.34196038574777, 34.538583887577516], [-77.34195605771521, 34.538565472547894], [-77.3419867719261, 34.5384576823919], [-77.34201092410575, 34.53838241563078], [-77.34202420816185, 34.53832988753156], [-77.3420515411442, 34.53825188839062], [-77.3420670973172, 34.53820130821247], [-77.34207912893456, 34.53816722005785], [-77.34212099288679, 34.53807114551741], [-77.34212381863453, 34.538064776179354], [-77.34213455782294, 34.53801378556099], [-77.34214840448446, 34.53795254586251], [-77.3421654783086, 34.537942336479], [-77.34233442004708, 34.537858783323045], [-77.34238434765015, 34.537819004416455], [-77.34243646043036, 34.53778094341709], [-77.34253414720256, 34.537709597078106], [-77.34261934218198, 34.53768500109077], [-77.34273283443065, 34.537605413226075], [-77.3428097375892, 34.53752928740278], [-77.34285803584814, 34.537475474963486], [-77.34299372338327, 34.5373704536685], [-77.34303351095895, 34.53732782055137], [-77.34313427717737, 34.53722076708998], [-77.34315499708347, 34.53720056408282], [-77.34317003526331, 34.53718576954191], [-77.34326699330754, 34.53709092161891], [-77.34331524322579, 34.537042469003595], [-77.3433216003168, 34.53703326895423], [-77.34333515582293, 34.537021571296286], [-77.34345203035478, 34.536900379720514], [-77.34347395144586, 34.536859036147455], [-77.34353631294175, 34.536810270071165]], [[-77.27117693040852, 34.57318195710064], [-77.27111511821658, 34.57323053098409], [-77.27110482102574, 34.57325150675198], [-77.27109829563936, 34.573276320561675], [-77.27104633562067, 34.57328951162199], [-77.27098689206785, 34.57334154190156], [-77.27091381800038, 34.57339780674819], [-77.27090006602285, 34.57347107814301], [-77.27079842216119, 34.57350252197997], [-77.27069618355824, 34.57356525150089], [-77.2706874670733, 34.57357219930235], [-77.27061256159624, 34.57366582296121], [-77.27058800418965, 34.573682213886954], [-77.27049472541503, 34.573725324018234], [-77.27046325443189, 34.5737503262094], [-77.27042923686335, 34.57378756643109], [-77.27039714962123, 34.573802843341255], [-77.27034851718956, 34.57383924101574], [-77.27034769237608, 34.57384007277504], [-77.2703474045053, 34.573840751750765], [-77.2703459043219, 34.57384123732388], [-77.27029694601092, 34.57387802573111], [-77.27027645769076, 34.57389338952556], [-77.2702342799187, 34.57398659160496], [-77.27019642337372, 34.5740049312499], [-77.2701048380096, 34.574035771580824], [-77.27000573901014, 34.574097218401356], [-77.26999668393097, 34.574103883609325], [-77.26999257033145, 34.57410673900214], [-77.26998852558228, 34.57411189610386], [-77.26995679853917, 34.57416284356472], [-77.26995752968058, 34.57419254711168], [-77.26997860521172, 34.57420746898526], [-77.27002554781119, 34.574227165039304], [-77.27008731032953, 34.5742585991728], [-77.27006882441393, 34.574348400773765], [-77.27000115418781, 34.5743827336158], [-77.27008066491629, 34.57436572300275], [-77.27010252153336, 34.57435104984959], [-77.27016993986945, 34.57425796606442], [-77.270394772045, 34.574161271077294], [-77.27041601899681, 34.57414821791295], [-77.27042223519221, 34.57414051644154], [-77.27044400480094, 34.574124963816764], [-77.27051002868737, 34.57402958453782], [-77.27056416621727, 34.57395137633466], [-77.27067892791123, 34.57392502834086], [-77.27073925236365, 34.57389675431719], [-77.2707970626445, 34.57382990503911], [-77.27084479389518, 34.57379109352097], [-77.2708024517875, 34.573699071494445], [-77.2709305114077, 34.57361999261159], [-77.27104147876055, 34.57353369068259], [-77.2710863105983, 34.57348571843645], [-77.27112102345515, 34.57346082849481], [-77.27119871413896, 34.5734048601319], [-77.27122736034504, 34.573378972537554], [-77.27131208401396, 34.57330215254566], [-77.27137957118691, 34.57327310377724], [-77.27152713804796, 34.57317208159785], [-77.27153118784403, 34.5731684165141], [-77.27153171886506, 34.57316722997815], [-77.27153392383904, 34.57316547642279], [-77.27163905239917, 34.573057833435335], [-77.27169429798039, 34.57298488434498], [-77.27172629034804, 34.57294685728792], [-77.27170840650176, 34.57291638969055], [-77.27165489015479, 34.57291945143141], [-77.2716061994023, 34.57290653644184], [-77.27156199601524, 34.572894811704145], [-77.2714841312127, 34.57292782273164], [-77.27145805507455, 34.572939082998495], [-77.2714152950017, 34.57297657493634], [-77.27141035023033, 34.57298093986063], [-77.27136473443518, 34.57302038561753], [-77.27134789510795, 34.57303494719877], [-77.27131250780828, 34.573064719662526], [-77.27127140910156, 34.573146768296084]], [[-77.37726686963073, 34.69409274649512], [-77.37729844460016, 34.694303360490515], [-77.37805466768508, 34.69398441483823], [-77.37742776711681, 34.69385746818891]], [[-77.33913838522045, 34.523293638382825], [-77.33927461402077, 34.5231398030845], [-77.33938516494871, 34.522893001314394], [-77.33936611688966, 34.52255425194078], [-77.33920090617198, 34.52211029904882], [-77.33920610099892, 34.52206315828478], [-77.33912630417322, 34.52207397301861], [-77.33914293286863, 34.52209672209023], [-77.3390855767972, 34.52215435733534], [-77.3388970238519, 34.52245913711037], [-77.33876532407147, 34.52245397544716], [-77.33866353342944, 34.522655320151365], [-77.33871112071068, 34.52286542367761], [-77.33871755332741, 34.52291550108842], [-77.33901515648401, 34.52309437494377], [-77.33901628640366, 34.52317212463239]], [[-77.35477544089623, 34.553142757964636], [-77.3547592275947, 34.55303182118489], [-77.35471384041867, 34.552906802715306], [-77.35494659879906, 34.5527826968706], [-77.3550547240104, 34.55267884626969], [-77.35508516829465, 34.552608528193275], [-77.35523615807287, 34.55251874891454], [-77.35534691897914, 34.552447399656856], [-77.35545300090276, 34.55237587988155], [-77.3556361400991, 34.552284391722516], [-77.35570283045428, 34.55224906059229], [-77.35574480941627, 34.55221792457134], [-77.35593568674506, 34.552113982634864], [-77.35610819515686, 34.551971613203285], [-77.35612626317901, 34.551958333947226], [-77.35614371980634, 34.551943860898774], [-77.35623226696003, 34.55189917671123], [-77.35638833389697, 34.55183747032918], [-77.35653921302324, 34.55181876778988], [-77.35683339325202, 34.551685676092845], [-77.35693584405885, 34.55164396703233], [-77.35696637340922, 34.551621966284515], [-77.35698221344502, 34.551600963470115], [-77.35703307831344, 34.551534572470075], [-77.35719273007142, 34.55132583246265], [-77.35726933629488, 34.55127262603113], [-77.35733817039662, 34.551220509865445], [-77.35745249395234, 34.551113367806266], [-77.35756786852892, 34.551027000026146], [-77.35765936243797, 34.5509656458844], [-77.35773807535705, 34.55090258158198], [-77.35785707640038, 34.550813469988775], [-77.35804834991586, 34.550712999236005], [-77.3580823916345, 34.55067472314109], [-77.35813714542905, 34.550620973623275], [-77.35827974779802, 34.550591186490266], [-77.3583652536153, 34.55056397464921], [-77.35853299959302, 34.55047969485689], [-77.35861391402813, 34.55043658566327], [-77.35862945694728, 34.550384507781715], [-77.35880521793992, 34.55028129123941], [-77.35883945365438, 34.55023185989663], [-77.3588695496327, 34.55018840583315], [-77.35893357879326, 34.550131954123486], [-77.35895476612308, 34.55010568147917], [-77.35898305678434, 34.55008877127402], [-77.35913324248212, 34.549985372660245], [-77.35923233345892, 34.549992356560395], [-77.35933044349122, 34.54994635696134], [-77.35939885829438, 34.54982500654801], [-77.35942900008543, 34.5497797367573], [-77.3595638014478, 34.549656887142504], [-77.35971312929414, 34.54950646969167], [-77.35972741744078, 34.54949194329005], [-77.35972947516704, 34.54948912329975], [-77.35973360128192, 34.549485671847584], [-77.35980184040912, 34.54943933579775], [-77.35983558166771, 34.54941656264269], [-77.35983543830666, 34.54941390989405], [-77.35983789620809, 34.549353623038], [-77.35984793229706, 34.549298387550174], [-77.35984200897472, 34.54929182481645], [-77.35984274602909, 34.549287689696676], [-77.35985006735969, 34.54922945844512], [-77.35986820928866, 34.549184068837704], [-77.3598770833518, 34.54916436227177], [-77.35990321547646, 34.549121238036285], [-77.3599175249245, 34.54909733287603], [-77.35991817853095, 34.54908419617587], [-77.35993973303589, 34.54905627809684], [-77.36000085724454, 34.54902412736132], [-77.3600243796418, 34.549011681731685], [-77.3600791794577, 34.54895164319112], [-77.36010393712671, 34.54892620453107], [-77.36010305618997, 34.54884931297023], [-77.36009090915864, 34.54882754210287], [-77.36010490187572, 34.548802490117865], [-77.36014300373071, 34.548751848992474], [-77.36017306072434, 34.54871146728111], [-77.36017601536307, 34.54869287496842], [-77.3601750873812, 34.54867411089651], [-77.36017300984756, 34.54863210173856], [-77.36017221071205, 34.54861594281502], [-77.36017902409858, 34.54859018489683], [-77.3601820634807, 34.54856959200577], [-77.36017767526063, 34.548551462222946], [-77.36016000445517, 34.54854216544818], [-77.36015722445774, 34.54851748693955], [-77.36015448900645, 34.54851235664713], [-77.36015379365665, 34.54850919033575], [-77.36014898011308, 34.54849063012021], [-77.36013874976626, 34.54846023020946], [-77.36013784607557, 34.548453547161934], [-77.36013733198223, 34.54844571683603], [-77.36013144174007, 34.54834507063034], [-77.36012787261691, 34.548332571256694], [-77.36011421360354, 34.54831028530995], [-77.36009481440223, 34.54825209949976], [-77.36007380601251, 34.5482179446448], [-77.36005313333317, 34.54816295303675], [-77.3600520360325, 34.548159873484], [-77.36005309470126, 34.54815636539388], [-77.36005499053309, 34.54810120249947], [-77.36005460542592, 34.54809829747412], [-77.36005336322513, 34.54809440410328], [-77.36004243629787, 34.5480805308504], [-77.36003561681483, 34.5480829902141], [-77.36001549205801, 34.54807332669272], [-77.3600201852033, 34.54806719764778], [-77.36001938139617, 34.54804682494827], [-77.36001986024093, 34.54804209467333], [-77.36002791586026, 34.54801993124717], [-77.36004147757944, 34.54800837881558], [-77.36003232327083, 34.54799766670236], [-77.36001942924159, 34.5479809507047], [-77.36000899857117, 34.5479549734793], [-77.36000469288089, 34.54788444862107], [-77.3599946935575, 34.54786210052849], [-77.35998901417884, 34.547849407376205], [-77.3599684017978, 34.54780333931184], [-77.35993420320212, 34.547748398934864], [-77.35994452001438, 34.547730988614745], [-77.35993430214432, 34.54764943284208], [-77.35991377988884, 34.54762892779034], [-77.35991914610165, 34.5475944593084], [-77.3599122068247, 34.54750674227415], [-77.35992646649753, 34.54747383696167], [-77.3599170229787, 34.54742112968616], [-77.35990838666875, 34.54738488036228], [-77.35989591025744, 34.54733478623499], [-77.3598949721863, 34.54731712762284], [-77.35987546320948, 34.547267209188725], [-77.35987840639434, 34.54720897459728], [-77.35987850833013, 34.54720556472503], [-77.3598771404788, 34.54720146999088], [-77.3598610982128, 34.547146865684134], [-77.35985531438416, 34.547105760564236], [-77.35985649904052, 34.54708632196983], [-77.35985507255288, 34.54706654901272], [-77.359852505478, 34.547025690991845], [-77.35985109648703, 34.546988262813414], [-77.35984537181119, 34.54696551223433], [-77.3598463511718, 34.54693812161671], [-77.35984241906506, 34.54690473138834], [-77.35984318585432, 34.54687355971305], [-77.3598439173444, 34.54684330964864], [-77.35984094960872, 34.546811309425465], [-77.3598366909923, 34.54678314419548], [-77.35983746389748, 34.546757200258845], [-77.35983878583895, 34.54672163654777], [-77.3598321668221, 34.54668285211355], [-77.35982733917913, 34.54666207881602], [-77.35983097695761, 34.54655808903542], [-77.35982976654212, 34.54653931725728], [-77.35983188661778, 34.54652004152659], [-77.35983003086729, 34.546416867171274], [-77.35984471572863, 34.54631640523939], [-77.35984617655868, 34.54629213018842], [-77.3598469794054, 34.54626723979709], [-77.359838445236, 34.54617083146252], [-77.35984416675996, 34.54606776983543], [-77.35986243611815, 34.54604496472844], [-77.35987951937639, 34.546001233976824], [-77.35990061883388, 34.545917054457526], [-77.35990553654187, 34.54584926071878], [-77.35991962041973, 34.54579190611469], [-77.35993556728488, 34.5457174371557], [-77.3599417243538, 34.545666311200655], [-77.35994881542211, 34.54562194967843], [-77.35993548676326, 34.545544797269265], [-77.35992029693885, 34.5454876141676], [-77.35991625420606, 34.54542515480422], [-77.35991911415722, 34.54535913031942], [-77.3599140873146, 34.54530305479231], [-77.35991124066922, 34.54525308849487], [-77.35990760817106, 34.54524278180075], [-77.35991278939312, 34.54523186890993], [-77.3599274354818, 34.54517872060759], [-77.35992763650039, 34.54511490855863], [-77.35993292785867, 34.545055517654994], [-77.3599450036152, 34.54499917445164], [-77.35994518200098, 34.54498602180079], [-77.35994592512046, 34.54493123399158], [-77.35994717253267, 34.54487604558862], [-77.35994691201071, 34.54486402269908], [-77.35994881969324, 34.54480840511844], [-77.35995012002176, 34.54475329553717], [-77.35995011706642, 34.54474090726576], [-77.35994956916753, 34.544685885139955], [-77.35995016298308, 34.54462913227591], [-77.35995106394547, 34.54461950085114], [-77.3599618751701, 34.54456170100697], [-77.35996182602058, 34.544510622799486], [-77.35996104949528, 34.544491253838494], [-77.35996458598618, 34.544438898588794], [-77.3599528172676, 34.544382055379124], [-77.35995228406206, 34.54437719785625], [-77.35995295024156, 34.54431816209559], [-77.35994944319646, 34.544258658079876], [-77.35994951837311, 34.54425745030292], [-77.3599496203777, 34.5442563157279], [-77.35993803478391, 34.54419789792567], [-77.35993444631322, 34.54418684058656], [-77.35995406420136, 34.54414059597023], [-77.3599562415288, 34.54413535309715], [-77.3599571878193, 34.54413210703331], [-77.35998274478607, 34.54406904751124], [-77.3599860031098, 34.544025649602645], [-77.35998640615887, 34.54398930424958], [-77.35999151888554, 34.54394537195968], [-77.35999216793422, 34.54390446496347], [-77.35999277793532, 34.54386379215315], [-77.35999233139364, 34.54382284289128], [-77.35998610619744, 34.54377733138952], [-77.3599825006615, 34.54375088040633], [-77.35999030005866, 34.54370072337286], [-77.35998705939714, 34.5436870853715], [-77.35998713181363, 34.54367057659774], [-77.35996533317062, 34.54364813858591], [-77.35995787617392, 34.54364882696842], [-77.35989935969086, 34.54367303193379], [-77.35986624960015, 34.54368908577955], [-77.3598335496085, 34.54370310346838], [-77.35978912707614, 34.54372969260534], [-77.35973441020904, 34.543779050430146], [-77.35970888560472, 34.543837267630074], [-77.35970160223029, 34.543864708279784], [-77.35969246511773, 34.54388282597078], [-77.35969931143072, 34.543965203027426], [-77.35970002328929, 34.543987347667496], [-77.35970401816125, 34.544012631636114], [-77.35971247620031, 34.54407592926097], [-77.35972444987543, 34.54410624226457], [-77.3597148085309, 34.54414206618975], [-77.35971021438861, 34.54419833056364], [-77.35970755093797, 34.544231087727454], [-77.3596981873327, 34.54425816338154], [-77.35969631163013, 34.544293912191826], [-77.35969991342537, 34.54432109543551], [-77.35969941168734, 34.544327195737424], [-77.35969712476, 34.54435500111027], [-77.35969518255459, 34.54438088576899], [-77.35969068134699, 34.54445449246142], [-77.3596842960123, 34.544479260456946], [-77.3596814725705, 34.54449839946895], [-77.35968312231321, 34.544520557996705], [-77.35968460127197, 34.544540422506955], [-77.35968626923369, 34.54456282551306], [-77.3596873754711, 34.544577683929795], [-77.35968523763398, 34.5446015368784], [-77.35968745910216, 34.544625496627944], [-77.35968681918492, 34.544662515143614], [-77.35968599603402, 34.544699417410584], [-77.35968635503541, 34.54472378798748], [-77.3596821387779, 34.54474709237838], [-77.35968064753175, 34.54476380998675], [-77.35967849946789, 34.544786125186306], [-77.35967481754889, 34.54482856690866], [-77.35967164178481, 34.54484831868953], [-77.35967324633944, 34.544866950075125], [-77.35964132193723, 34.54494023332655], [-77.35962315430974, 34.54496676192529], [-77.35952383526174, 34.5450635204457], [-77.35946363742651, 34.545123094769735], [-77.35947490478524, 34.54514299923848], [-77.35949188126878, 34.545329082041725], [-77.35951650685267, 34.545360305696576], [-77.35948813282491, 34.54539780438263], [-77.35943326910262, 34.54545387798812], [-77.3590489083099, 34.54566432204655], [-77.35903568253703, 34.54567192382676], [-77.358658663281, 34.54548382907484], [-77.3586579117929, 34.54547746896428], [-77.35864788858697, 34.54546221584714], [-77.35863804330863, 34.545480925733685], [-77.35863549302309, 34.54548716533782], [-77.35843958098073, 34.54563273173875], [-77.3584378674729, 34.545638032900314], [-77.35840645463306, 34.54566776767142], [-77.3583767234728, 34.54572633286475], [-77.35841453195194, 34.545763804714205], [-77.35840048492842, 34.54586207960636], [-77.35839324246786, 34.54591914282997], [-77.35849608250781, 34.54599688600813], [-77.3583685161983, 34.54609489544808], [-77.35835604331558, 34.54618867076775], [-77.35837040098593, 34.546259806195444], [-77.35843169812745, 34.54633088793619], [-77.35848907032737, 34.54632937566613], [-77.35862789388734, 34.54633541963651], [-77.35888026188464, 34.54627470652792], [-77.35902238897259, 34.546252596779595], [-77.35927414598547, 34.54628716480396], [-77.35941383754856, 34.546302836786964], [-77.35943887870648, 34.54633470906194], [-77.3594324620288, 34.54635170360798], [-77.35949099670951, 34.5463926734161], [-77.35957527773915, 34.54645355080497], [-77.35958429557459, 34.5464660376525], [-77.35959639152827, 34.54657292251414], [-77.35960309874089, 34.54661036374604], [-77.35961721417317, 34.546682504228514], [-77.35961977891483, 34.54669196682025], [-77.35961953677254, 34.5467035827674], [-77.3596256780213, 34.5467967884243], [-77.35962599521235, 34.546813483690286], [-77.35962438936116, 34.54683012805344], [-77.35962610622084, 34.54691715393903], [-77.35962788240236, 34.54693562393474], [-77.35962369873008, 34.546953976316914], [-77.35960561869999, 34.54705334823771], [-77.35960503143525, 34.547061326363114], [-77.35960275550252, 34.54706797085711], [-77.35961494350667, 34.54716698090306], [-77.35961176262717, 34.547182769089524], [-77.35961856428148, 34.54719984674851], [-77.35964440840198, 34.547265371848745], [-77.35965983051119, 34.54729825953365], [-77.35967660061561, 34.54735226797574], [-77.35967909936424, 34.547359807851805], [-77.35967481591108, 34.5474185137062], [-77.35968141039805, 34.5474772365856], [-77.359681570894, 34.54747862709419], [-77.35968164174442, 34.54747873681938], [-77.35968162486374, 34.547478896679564], [-77.35968466364794, 34.54753950763641], [-77.35965099830992, 34.547622453502484], [-77.35965524442841, 34.547666155855914], [-77.35965010403521, 34.54771192897658], [-77.35959384596919, 34.547797408759486], [-77.3596019719133, 34.54790093508464], [-77.35961150245177, 34.54794151637412], [-77.35957266396163, 34.547940200128195], [-77.35951111635093, 34.54796969269105], [-77.35937464041325, 34.54801536367288], [-77.35934028019003, 34.548057925447225], [-77.35931596858468, 34.5480822451179], [-77.35930139058192, 34.54812840821542], [-77.35926408758465, 34.54821212750086], [-77.35924011391823, 34.54825755973481], [-77.35922568867193, 34.548278862581405], [-77.35922932358235, 34.54830363591043], [-77.35926924622134, 34.54833177541329], [-77.35927911103603, 34.54832630280984], [-77.35927082535972, 34.54833356929374], [-77.35926905904668, 34.5483399527434], [-77.35925053861676, 34.54838681623687], [-77.35924387749992, 34.54839865549045], [-77.35924632246152, 34.54841146089518], [-77.35923437859955, 34.54846122920194], [-77.35923531539478, 34.54848013535752], [-77.3592359572023, 34.54849160488607], [-77.35924189679156, 34.54850532707032], [-77.35926544897265, 34.54849767056796], [-77.35927130104506, 34.548501817202954], [-77.35928224217923, 34.54850496718789], [-77.35928413770053, 34.54851182482393], [-77.35926567329739, 34.54851750603207], [-77.35926501874398, 34.54851646651886], [-77.35925225338616, 34.54851183502452], [-77.35926410575655, 34.54851815474792], [-77.35926404558307, 34.548518737837796], [-77.35926492045809, 34.54852076046155], [-77.35927101388549, 34.54854363675226], [-77.35927228487759, 34.54854758001282], [-77.35927556875113, 34.54857036208389], [-77.35928345389037, 34.54857657475737], [-77.35926851890483, 34.54863604183854], [-77.35926779958069, 34.54864003479838], [-77.35926860904543, 34.54864397709391], [-77.35925151275958, 34.54870358586646], [-77.35923083857958, 34.54874978491028], [-77.3592061334526, 34.5488039424159], [-77.35918913193197, 34.548834980011506], [-77.35915679033174, 34.54895665334754], [-77.35915464507244, 34.548961083174184], [-77.35915262577548, 34.548965124440095], [-77.3591559071672, 34.548995235443456], [-77.35915807187408, 34.549084276165985], [-77.35915700945239, 34.54908641804586], [-77.3591584082317, 34.54920212686891], [-77.35915846269633, 34.54920663180094], [-77.35915851958565, 34.549211337284], [-77.35915985401041, 34.54932172195757], [-77.35915993995921, 34.54932883099816], [-77.35915807974114, 34.54933530778769], [-77.35914579907241, 34.54945304740859], [-77.35914574204718, 34.54945328724439], [-77.35914562254558, 34.54945343148063], [-77.35914540849248, 34.549453883269116], [-77.35909387054618, 34.549552437040774], [-77.35897194194243, 34.54958461535239], [-77.35894625282984, 34.549578327247296], [-77.35877394327566, 34.54950682132505], [-77.35877640462537, 34.549491211550716], [-77.35873028384233, 34.54949972479715], [-77.35872456583493, 34.54953044078625], [-77.35884823112588, 34.54961853670564], [-77.35863679962677, 34.54970261112659], [-77.35854777894195, 34.54983423502945], [-77.35851047222667, 34.54988951831992], [-77.35834321013834, 34.54993607489408], [-77.35825833945027, 34.550015216761615], [-77.3581509424443, 34.55001853840337], [-77.35795697296018, 34.54999168505644], [-77.35800836389156, 34.54989359398241], [-77.35798205857384, 34.54985095418705], [-77.35795925810893, 34.54981666026325], [-77.35794661198378, 34.54986354918649], [-77.35776119585195, 34.54989325108235], [-77.35775516904779, 34.5498983286035], [-77.35770596772144, 34.54993919468547], [-77.3576745026999, 34.5499795274977], [-77.35759729249708, 34.550043470586566], [-77.35756095023146, 34.55006513027946], [-77.3575122829007, 34.55014897175429], [-77.35735890754566, 34.55031540837151], [-77.35735472737271, 34.5503206855904], [-77.35735112077991, 34.55032373605586], [-77.35732532615621, 34.55034792527799], [-77.35704989445185, 34.550611926913675], [-77.35700597375923, 34.550647744872556], [-77.3569581023947, 34.55067266803421], [-77.35680144777486, 34.55079660568043], [-77.35675798543116, 34.55083877936994], [-77.35662694274752, 34.55087640508489], [-77.35656024467208, 34.5509011854131], [-77.35652853697006, 34.55091219392203], [-77.3564269808474, 34.55094642867398], [-77.35636229544502, 34.55097267173633], [-77.35632508207037, 34.550984139194064], [-77.35626332179177, 34.55100836709767], [-77.3562501171605, 34.55102510156174], [-77.35621549774959, 34.551067062155354], [-77.35620784716527, 34.5511003871849], [-77.35616233869129, 34.55113170983226], [-77.35610996757931, 34.551205284814834], [-77.35608490264494, 34.551240497818256], [-77.35604630802038, 34.55129849791152], [-77.35596036148777, 34.55137883666781], [-77.35595890819407, 34.5513801601063], [-77.35576143381024, 34.551492919849906], [-77.35569841569337, 34.551501790233836], [-77.35556451438903, 34.55151940584369], [-77.35537203833893, 34.551584617844085], [-77.35536669127698, 34.55158528788152], [-77.35536164582491, 34.55158630695578], [-77.35535966584882, 34.551589723516315], [-77.35532143458026, 34.55162290893337], [-77.35519780837379, 34.551735434667286], [-77.35518233838768, 34.551747438084746], [-77.35506826146096, 34.55187649432318], [-77.35501994452339, 34.55191679876679], [-77.35496563124923, 34.55195301208896], [-77.35487035408278, 34.55202739442946], [-77.3548130313668, 34.55206449828051], [-77.3547652998517, 34.55212815886708], [-77.3546450885548, 34.55213468519055], [-77.3545682529507, 34.55216011670923], [-77.35451248986121, 34.5521666416531], [-77.35449527221351, 34.55220379768715], [-77.35445943427001, 34.55227516402731], [-77.35456337089718, 34.55237289711606], [-77.35463289931981, 34.55238527775615], [-77.35461647577833, 34.552431173263216], [-77.35461013010676, 34.55246252556208], [-77.35456037055994, 34.552503664558046], [-77.35451542401296, 34.55247416752037], [-77.35447527088775, 34.55245149907736], [-77.35428907686241, 34.55240406755345], [-77.35417027610428, 34.55239321406931], [-77.35413739246437, 34.55239815725808], [-77.35407126655505, 34.552430354589816], [-77.35402998785393, 34.552428625200115], [-77.35402359807361, 34.55245530886857], [-77.35399564406288, 34.55247400878576], [-77.35397211118807, 34.55247384443625], [-77.35392654831799, 34.552497352408444], [-77.35392137948256, 34.552499968198234], [-77.3538727997182, 34.55252413074866], [-77.35383753736485, 34.55254329609322], [-77.35379965148087, 34.552564927582104], [-77.35377315287134, 34.55258902281723], [-77.35370578488285, 34.55260405224047], [-77.35365653194765, 34.552619478455405], [-77.35357479656336, 34.55267795185011], [-77.35347813787286, 34.55265561800281], [-77.35347639128122, 34.55265601582558], [-77.35346880105294, 34.55265757681222], [-77.35337820489146, 34.552689998356826], [-77.35334841638604, 34.55271793549403], [-77.35322910620698, 34.552753282849764], [-77.35322089827241, 34.5527800773716], [-77.35315614078735, 34.552778572495], [-77.3529822970682, 34.552832727935716], [-77.35294060924917, 34.5528209695576], [-77.35284011553527, 34.55284317572266], [-77.35278540070045, 34.55285801922318], [-77.35273435082844, 34.552856349670726], [-77.35260370763092, 34.55285233382688], [-77.3525890940779, 34.5528576268584], [-77.35257223978553, 34.55284782659869], [-77.35243732855864, 34.552839721648354], [-77.35223615174554, 34.55279767693132], [-77.35219792018574, 34.55279418276058], [-77.35218479514863, 34.55278943154559], [-77.35217046544469, 34.55278324188686], [-77.3520030462963, 34.55273143203288], [-77.35194796022975, 34.55272726316421], [-77.3518123314304, 34.55271237511654], [-77.35180719539383, 34.55271121444804], [-77.35171137285315, 34.552664907193765], [-77.35161757830603, 34.55261799353448], [-77.35161307414799, 34.55261572973983], [-77.35153249483956, 34.5525588870241], [-77.35142021181174, 34.55246548475639], [-77.35137792960994, 34.552434471422345], [-77.351349748728, 34.552411718029006], [-77.35132459520072, 34.55235414406294], [-77.35132427926618, 34.55235396743266], [-77.35123417986142, 34.552305939848495], [-77.35123140018591, 34.55230397594989], [-77.35109978260523, 34.55220287119185], [-77.3510744016591, 34.552181401515085], [-77.35103577547787, 34.552109036317894], [-77.35097078235827, 34.55201843983576], [-77.35095781385952, 34.55197848149848], [-77.3508549410739, 34.551877205063064], [-77.35084791071021, 34.551870045030526], [-77.35080351584674, 34.55175586604861], [-77.35075785792331, 34.551696818961915], [-77.3507279407463, 34.55164433191714], [-77.35068577294517, 34.55154650453272], [-77.35067835771574, 34.55152905703556], [-77.35067670757397, 34.55151685754067], [-77.35065739392695, 34.551489378369524], [-77.35061951791154, 34.551415114292716], [-77.35059980704119, 34.551380481505376], [-77.35059254037284, 34.55133917887541], [-77.35058533771462, 34.55129762268078], [-77.35057624877143, 34.551244826592274], [-77.35055476217619, 34.55112640159919], [-77.35053865875935, 34.55105951923042], [-77.3505224358729, 34.55103017996751], [-77.35050797546349, 34.55100272970491], [-77.35050270670041, 34.55096065766605], [-77.35050044627607, 34.55094260795173], [-77.35048961349925, 34.550934333653984], [-77.35047397614773, 34.550928575036764], [-77.35043661240707, 34.55091409510372], [-77.3503855432844, 34.55089793871398], [-77.35038045000283, 34.550896248441624], [-77.3503766131712, 34.550894101086], [-77.35032723493131, 34.55084512471515], [-77.3503151271565, 34.55082499264313], [-77.35031402983226, 34.55081642245625], [-77.35028061170908, 34.55080042400643], [-77.35027311450814, 34.55079644005522], [-77.35026269619652, 34.55079320733728], [-77.35027111296279, 34.550785864309105], [-77.35027802880421, 34.55076255179808], [-77.35027783460447, 34.55076042610376], [-77.35026437789372, 34.550742710278456], [-77.35024930837895, 34.55073392871469], [-77.35024082909223, 34.550709031844605], [-77.35021151195109, 34.550662029466864], [-77.35016392991699, 34.55062380506562], [-77.35009225772357, 34.55051254223612], [-77.35009181872422, 34.55051123142127], [-77.35009095880672, 34.550510916254105], [-77.35002219553996, 34.55044322954752], [-77.34994965831008, 34.550409819905695], [-77.3499312345989, 34.55039137219221], [-77.34989848895943, 34.55034393842563], [-77.34986320834098, 34.55032216215339], [-77.34985827304462, 34.550300560586045], [-77.34987261147799, 34.55028146506582], [-77.34986636675879, 34.55019909281521], [-77.34986652505182, 34.550176962569914], [-77.3498555542078, 34.550148972776526], [-77.34984086279475, 34.55011945035184], [-77.34982873256396, 34.550106887824434], [-77.34980641347778, 34.55007963283764], [-77.34979670176803, 34.55007078302664], [-77.34979671882054, 34.55006459781962], [-77.3497914738658, 34.550055693519326], [-77.34977757454291, 34.55002491520056], [-77.34973757273022, 34.55001190419067], [-77.3497103462077, 34.549988885767654], [-77.34965848102667, 34.54999434357813], [-77.34961195496561, 34.54999917047988], [-77.34957943243236, 34.55001460343546], [-77.34954200620109, 34.55002213024765], [-77.34954546344242, 34.54999807300452], [-77.34956258366309, 34.549975881189724], [-77.34961339680198, 34.54993649405084], [-77.34965732154839, 34.549928314861575], [-77.34965045974695, 34.549902029962155], [-77.34966516342045, 34.549870035031056], [-77.34966460740189, 34.549869028894165], [-77.34964385835086, 34.54984177472135], [-77.34961629981065, 34.54981030074502], [-77.34960525700126, 34.54979325489461], [-77.34959523550512, 34.54978756668068], [-77.34956365685605, 34.549758542524785], [-77.34954798279077, 34.549733161440685], [-77.34954215621434, 34.54972031850659], [-77.34952032249446, 34.54971566625043], [-77.34945557936419, 34.54966514452893], [-77.34935637235783, 34.54963832492724], [-77.34934727822602, 34.54962640739539], [-77.34914642701698, 34.54954612661771], [-77.34913196975087, 34.54953033011636], [-77.34901589092425, 34.549394422862534], [-77.34890918680202, 34.5493354452843], [-77.34874695295737, 34.54920011956323], [-77.3486533866718, 34.54918598183652], [-77.34856972769975, 34.54913947302512], [-77.34835939114994, 34.54898059727672], [-77.34833193768347, 34.548946478911304], [-77.34831001180565, 34.548932025250956], [-77.34812263961884, 34.54880889231553], [-77.34800273503186, 34.54873142072352], [-77.34798975945671, 34.5487226600162], [-77.34797309654134, 34.548706123820246], [-77.34789779305801, 34.54855088653434], [-77.34787579608047, 34.548504866109894], [-77.34783324386466, 34.548358369155814], [-77.34775257444534, 34.54827777652974], [-77.34759474056611, 34.54808704127443], [-77.34758191113538, 34.54806581839898], [-77.34756074134016, 34.54806055971012], [-77.34755256219594, 34.54803468346867], [-77.3474068065548, 34.54783788889736], [-77.34733974739578, 34.54776633044137], [-77.34721255305827, 34.547634550507325], [-77.34720546053168, 34.54762657814238], [-77.34720091075025, 34.54762269557886], [-77.34707890236109, 34.54748097778969], [-77.3469444900715, 34.54741477133349], [-77.34685848439668, 34.54720011750018], [-77.34684187705619, 34.547177604340156], [-77.34672402660064, 34.54695685250108], [-77.34661650908814, 34.546865411102026], [-77.34657629813552, 34.5467332889727], [-77.3464514731973, 34.54658711831335], [-77.34639911981037, 34.54654718264141], [-77.34639132336933, 34.54651508409614], [-77.3463274727198, 34.54644490301007], [-77.34616111483395, 34.54624455234871], [-77.34606825149491, 34.54618007196381], [-77.34601174720342, 34.54611621177245], [-77.34597167567794, 34.54608582427688], [-77.34590768239947, 34.54599220316569], [-77.34589156833883, 34.54597494038765], [-77.34588687032189, 34.54596934173249], [-77.34577970705075, 34.545868624999315], [-77.34568537591886, 34.54575817412958], [-77.34561889881866, 34.54568938534419], [-77.3455838774017, 34.54565198102851], [-77.34554109409466, 34.54556539298998], [-77.34551032414622, 34.545530181801475], [-77.34549479688708, 34.54551004145426], [-77.34541737991525, 34.54543111670792], [-77.34537309608749, 34.545392657126676], [-77.34530335510554, 34.54529937510721], [-77.3452512869145, 34.54524346698304], [-77.34522507239971, 34.54521396553557], [-77.34517575387989, 34.545139187142766], [-77.3451347924118, 34.54509025605284], [-77.34503843932394, 34.544995997784966], [-77.34500288301243, 34.54494870790772], [-77.34492133091788, 34.544840906411466], [-77.34488815766323, 34.544794158855595], [-77.34487201809904, 34.544775122038736], [-77.34482913807528, 34.544722091723536], [-77.3447645624669, 34.54464632074723], [-77.34468543026176, 34.5445571473342], [-77.34463489165816, 34.54450307949513], [-77.34458457430858, 34.544449248063515], [-77.34453889706595, 34.54440038079432], [-77.34450287030408, 34.544361616932605], [-77.34448018494412, 34.54434185695709], [-77.34439768123201, 34.54426369903106], [-77.34436058108798, 34.54422792294076], [-77.34434691564994, 34.54421332195921], [-77.34429541658673, 34.54415655157197], [-77.34425701202798, 34.544129145440735], [-77.34421744470264, 34.5440948699982], [-77.34416233729385, 34.54402035654628], [-77.34415526279233, 34.54401206003367], [-77.3440899338181, 34.54394999541313], [-77.34401572082712, 34.54391904027435], [-77.34396290646829, 34.54384132465841], [-77.34393098287251, 34.54382890779095], [-77.3437678783304, 34.543786400653936], [-77.34370166276835, 34.5437610599238], [-77.34357221958899, 34.54375880976959], [-77.34353317378023, 34.54374364292665], [-77.34351424614977, 34.54366150886655], [-77.34337946298312, 34.54360549113645], [-77.34328932827385, 34.54359032998546], [-77.34303579378468, 34.54357037708515], [-77.34289531160718, 34.543405741353624], [-77.34259860375616, 34.54341834136915], [-77.34189402086507, 34.54324498954205], [-77.34183911610599, 34.543239443386135], [-77.34181763671609, 34.543235992959595], [-77.34168795157547, 34.54319314313368], [-77.34103831824252, 34.54298244033284], [-77.34087551048844, 34.54300309072753], [-77.34064346299135, 34.5430805255203], [-77.34053858915314, 34.543130463244054], [-77.34024872887659, 34.54317332687925], [-77.34010769521365, 34.54310129033299], [-77.34005407766469, 34.5431022540374], [-77.33993592160236, 34.54303701031569], [-77.33989612361049, 34.543020011554525], [-77.33988866867126, 34.54298260240361], [-77.3398743790319, 34.54297612739428], [-77.33986080449122, 34.542971601871656], [-77.33985079388879, 34.542963802896196], [-77.33985186466603, 34.54295729380708], [-77.33984454407502, 34.54294786445206], [-77.33984196416756, 34.54294031556303], [-77.33981997651365, 34.542931278130155], [-77.33981289515586, 34.54292125806476], [-77.33980401401267, 34.5429086913161], [-77.33979150991735, 34.54289099809481], [-77.3397807133092, 34.54287572096516], [-77.33978262079864, 34.542864541349246], [-77.33976650000297, 34.54281656076384], [-77.33967033965276, 34.542719542514845], [-77.3396578895802, 34.54271756587933], [-77.3396563967542, 34.542701026355346], [-77.33968956571819, 34.54258280829301], [-77.33965280314993, 34.542480076443205], [-77.33962757315247, 34.542469315967104], [-77.33963067017932, 34.54244010240831], [-77.33965678871928, 34.54234270469293], [-77.33965360925505, 34.54223812919736], [-77.33965155731352, 34.542221048284446], [-77.33962861742575, 34.542190702636915], [-77.33959806162267, 34.54210633359682], [-77.33956396606277, 34.54206460921951], [-77.33949066315375, 34.5420010937817], [-77.33928865349458, 34.5417902165013], [-77.33917283606596, 34.54167785834437], [-77.33910729067479, 34.541602917952], [-77.33902691655875, 34.541505554652446], [-77.33891224438207, 34.541470520920576], [-77.33889732219589, 34.541362260014665], [-77.33890325160813, 34.541349405593586], [-77.33889057218023, 34.541334619396665], [-77.33881121932784, 34.54124023334198], [-77.3387854896421, 34.54120552823064], [-77.33872373060623, 34.54121300775688], [-77.33864000593105, 34.54119492221595], [-77.33861888346927, 34.54120235876665], [-77.33861989132576, 34.54121013933231], [-77.3386189602362, 34.54126788530674], [-77.33862393297878, 34.541284423805294], [-77.33866774133269, 34.54129460741889], [-77.33864996355138, 34.541341689973414], [-77.33867725222646, 34.541381910268505], [-77.33868615167623, 34.54148350773555], [-77.33869068039986, 34.54150238779832], [-77.33871584217624, 34.54155392805968], [-77.33885337802958, 34.54163684038636], [-77.33883102145916, 34.541727020854594], [-77.3387955771488, 34.5417851788602], [-77.33880129662964, 34.54179690885619], [-77.33880804544927, 34.54181074986017], [-77.3388340393192, 34.54184899571569], [-77.33885521768104, 34.54187678440525], [-77.33888923418178, 34.54195497243211], [-77.33889397129137, 34.541962784797256], [-77.33890235385587, 34.54197660915991], [-77.33901944278938, 34.54199388079984], [-77.33903503335674, 34.54215014851967], [-77.33905506394642, 34.54218443304241], [-77.339068136705, 34.542198379083935], [-77.33909242735444, 34.54224541018332], [-77.3391446058798, 34.542293963347035], [-77.3391682791215, 34.54233921318076], [-77.33918118904474, 34.542354189184444], [-77.33922452022688, 34.54240487830499], [-77.33928260690311, 34.542509680505724], [-77.33928633492128, 34.542515980842225], [-77.33929830226283, 34.54251667526364], [-77.33928906883604, 34.54252221377376], [-77.33932211498535, 34.54263565909292], [-77.33935113672652, 34.54270829367399], [-77.3393423505335, 34.54279655189583], [-77.33927496728546, 34.54283995115773], [-77.33922549148248, 34.54289437434121], [-77.33923216715729, 34.54291896459774], [-77.33923526540015, 34.542954173062256], [-77.33925480008071, 34.54300233395955], [-77.3392616801203, 34.54301157834605], [-77.33926440731902, 34.54301524275676], [-77.3392707873457, 34.54302065570306], [-77.33930375096224, 34.543045812871455], [-77.339346766156, 34.54304710231478], [-77.33936848098892, 34.54304026249504], [-77.3393755324517, 34.54303005539498], [-77.339378095579, 34.543025436683315], [-77.33939035500255, 34.543010462631166], [-77.33939157073499, 34.54300681258961], [-77.33938346713052, 34.54299406185649], [-77.33938162598113, 34.54298689916617], [-77.33937003835085, 34.54297293213943], [-77.33935390048362, 34.54294753975613], [-77.33931701322646, 34.542942415386094], [-77.33932181835183, 34.54291075747153], [-77.33939568748993, 34.542915927149444], [-77.33939823604422, 34.542930733166614], [-77.33944042657349, 34.542942415483694], [-77.33945254793429, 34.54297439554573], [-77.33944998555219, 34.54298449452896], [-77.33946001191595, 34.54298793308047], [-77.33946705731633, 34.543012508663345], [-77.3394670439805, 34.543012643257434], [-77.3394671359942, 34.54301271072128], [-77.33946725890036, 34.5430129917958], [-77.33947267364422, 34.543027134662395], [-77.33947770323877, 34.54303488354475], [-77.33948588632558, 34.54304053539857], [-77.33950788804799, 34.54306343472652], [-77.33951124222837, 34.54306984497572], [-77.33951498479057, 34.54307126110175], [-77.33953846804722, 34.543078320739234], [-77.3395637007379, 34.54308672521182], [-77.3395673540808, 34.54308772962603], [-77.33956886449313, 34.543089805089544], [-77.3395707800614, 34.54309404986911], [-77.3395782905181, 34.54310375045867], [-77.33957930009564, 34.54310885940314], [-77.33959830428245, 34.54311617297965], [-77.33960238971743, 34.54312155882983], [-77.33963243394227, 34.54314186630874], [-77.33966015899426, 34.54315975592814], [-77.33969339743955, 34.543173378413655], [-77.33974383175628, 34.54318704822594], [-77.33985358703828, 34.54328371789287], [-77.33989906014455, 34.54325912792436], [-77.33994840353739, 34.54328003298076], [-77.34016987667565, 34.543295586868965], [-77.34010416221642, 34.543380038651584], [-77.34024171297094, 34.54347678913174], [-77.34024626055893, 34.543479139209225], [-77.34024631674855, 34.54348200087273], [-77.34025094906873, 34.54348724491735], [-77.34030937991372, 34.543552057155196], [-77.34035925492657, 34.54358816528703], [-77.34038493965679, 34.54361556362082], [-77.3405921033383, 34.54367708196112], [-77.34060559986719, 34.54368996719729], [-77.34062915589615, 34.54369948321587], [-77.3407618131034, 34.54373592044709], [-77.34101966732769, 34.54378948571996], [-77.34115629431298, 34.54375602829414], [-77.34112081647235, 34.54384584963981], [-77.34109163169296, 34.5438964660471], [-77.3411593832378, 34.54396271138462], [-77.34118197915946, 34.54397793780703], [-77.34121098094714, 34.54400509577823], [-77.34125392256587, 34.544044180414275], [-77.34130633336294, 34.544063982737725], [-77.34134800071288, 34.54409367724966], [-77.34140343257945, 34.5441714956218], [-77.34165634649351, 34.54417134785703], [-77.34179736028794, 34.5441137350936], [-77.34196192418753, 34.54411190148751], [-77.34195803312902, 34.544215056120976], [-77.3421858480097, 34.54429148574958], [-77.34229859391442, 34.54433988036796], [-77.34233010232232, 34.5444063524042], [-77.3423783915604, 34.54445401380023], [-77.34244765803768, 34.54446844909425], [-77.34249322311963, 34.544578699860004], [-77.34252513451598, 34.54462311515776], [-77.34253894934469, 34.544640726034984], [-77.34256969337987, 34.54467034939179], [-77.34286580646751, 34.54487612922521], [-77.34293829201413, 34.545053318045106], [-77.34294254642559, 34.54505941598779], [-77.34295314935297, 34.545066230723776], [-77.34317953246199, 34.54512146735189], [-77.34334195614915, 34.54523044813589], [-77.34351106953471, 34.54535333094691], [-77.34355012642082, 34.545454937961594], [-77.34360185366891, 34.54552599343349], [-77.34361278816948, 34.54556833303005], [-77.34370232212174, 34.54566400176789], [-77.34371729372823, 34.54567570823579], [-77.34372008480442, 34.545677890608225], [-77.34372412496398, 34.54568237433477], [-77.34378864772982, 34.54574669170765], [-77.34384499706307, 34.545779745995084], [-77.34387335121005, 34.5458032815026], [-77.34401269777005, 34.54587802938403], [-77.34403057542814, 34.545925678240124], [-77.3440522271104, 34.5459947522247], [-77.34410832827933, 34.54604630163377], [-77.34415300025131, 34.54607440316095], [-77.34419188956173, 34.54609706923696], [-77.34425112772257, 34.546179510415314], [-77.34428777032923, 34.546213788223255], [-77.34445036325033, 34.54630470269579], [-77.3444939639188, 34.54634828052467], [-77.3446497536045, 34.546422619092056], [-77.34466647360145, 34.54651843046906], [-77.3447971163605, 34.54669364182228], [-77.34484445326753, 34.54673764408335], [-77.34484611262926, 34.54675675711509], [-77.34487671010646, 34.54677566617131], [-77.34515162312552, 34.54700831481201], [-77.3452005856021, 34.54717604565606], [-77.34522401913398, 34.54719489172195], [-77.34525883822589, 34.54723002798109], [-77.34529807393896, 34.54725953881957], [-77.34530428956285, 34.5472835352697], [-77.34534789282671, 34.54733429316198], [-77.34535219126765, 34.547339270055645], [-77.3454017733751, 34.54739191964753], [-77.34545005007028, 34.54745086727817], [-77.3455118065419, 34.54745985942898], [-77.34555305658253, 34.547558340672694], [-77.34559515716307, 34.547608916123174], [-77.34560321704774, 34.54763205082517], [-77.34564167937204, 34.54765364227734], [-77.34577703938595, 34.54774189199072], [-77.34580596243944, 34.547823405919125], [-77.34583330757839, 34.547856505277515], [-77.34588681444984, 34.547900189787214], [-77.34592096597709, 34.547929269311105], [-77.34596274896342, 34.548006123895796], [-77.34599109089362, 34.54804158973174], [-77.34602444906739, 34.54808052618988], [-77.34620999309996, 34.54813838262008], [-77.34632091283164, 34.54842882539844], [-77.34636013754324, 34.54847813098073], [-77.34637386152576, 34.54849710731507], [-77.34640635938356, 34.54854487491582], [-77.34658711858222, 34.54869029229806], [-77.34668472062276, 34.548744622338404], [-77.34678616178779, 34.548906473388705], [-77.34679051541775, 34.54891193426398], [-77.34697240794327, 34.54900966941712], [-77.34704633788864, 34.549113857768404], [-77.347174514356, 34.54928596017787], [-77.34720526834309, 34.5493161986791], [-77.34722266780973, 34.54933330640908], [-77.34723666514394, 34.54937127244071], [-77.3473890389308, 34.54955418768002], [-77.34746146335253, 34.54960507352719], [-77.34755618224673, 34.549761356728695], [-77.34756353610568, 34.54976920157961], [-77.34757012712993, 34.5497729514013], [-77.34773474938413, 34.54988101845511], [-77.34791714765662, 34.55019920788928], [-77.34792688729983, 34.55021125739425], [-77.34793106605753, 34.55021519856235], [-77.34793818034736, 34.55022260282941], [-77.34818668263844, 34.550418694816024], [-77.34821114136119, 34.550486008332186], [-77.34828901699457, 34.55062856299802], [-77.34830519216104, 34.55064646253675], [-77.34831050092674, 34.550652190154665], [-77.3483186822261, 34.550749032061326], [-77.34832077490421, 34.550766630523015], [-77.34832079346198, 34.5507682197363], [-77.34836296029714, 34.550853856199986], [-77.34837634749246, 34.550881044111094], [-77.3483743744422, 34.550918487305154], [-77.3483951590847, 34.550950173158654], [-77.34841162992355, 34.550975282617884], [-77.34842547261499, 34.55099638551682], [-77.34844562035042, 34.55103267299913], [-77.34845273848444, 34.551053667201565], [-77.34845268062708, 34.551080786999826], [-77.34845259327557, 34.551084290675355], [-77.34845403874505, 34.551086642880485], [-77.34845792462218, 34.55109619970467], [-77.34846280487116, 34.55111018010394], [-77.34847684453158, 34.55111140358311], [-77.34849532148024, 34.55111574802967], [-77.34850643005066, 34.551121076099975], [-77.34853097194397, 34.551134217415466], [-77.34853413405652, 34.5511467220766], [-77.34853103907005, 34.55116481032868], [-77.34853433244469, 34.55118261820284], [-77.34852763745994, 34.55119590238088], [-77.34854212519097, 34.5512010152418], [-77.34857100586177, 34.551220264379154], [-77.34860169391862, 34.551246735718905], [-77.34862438851006, 34.551259454206665], [-77.34869863312994, 34.551299613873184], [-77.3487277566858, 34.55130192551553], [-77.34877614867528, 34.5513131550922], [-77.34884556557199, 34.55133347110856], [-77.34889368692585, 34.55135431005568], [-77.34889672830036, 34.55135510122312], [-77.34889733029758, 34.551356922392046], [-77.34892951287202, 34.551390636039095], [-77.34893988640167, 34.55141200373157], [-77.34900111535862, 34.551471866416364], [-77.34905425559754, 34.55151795632893], [-77.34906547134217, 34.551529128582], [-77.34908539845043, 34.55155426880036], [-77.34918768667958, 34.55167801920012], [-77.34921792242729, 34.55173922526424], [-77.34927595326337, 34.55180454253891], [-77.34929726861967, 34.55183646850504], [-77.34930261660975, 34.55184944801846], [-77.34930461223284, 34.55186794052597], [-77.34933155642327, 34.551931205733126], [-77.34934678463415, 34.551965502554225], [-77.34936924324867, 34.552016083615015], [-77.34937158362533, 34.55202160065622], [-77.34937173657454, 34.5520231171185], [-77.34937325236945, 34.5520255344301], [-77.34939096099775, 34.552067279485314], [-77.34938935919781, 34.55208178637698], [-77.34939860793862, 34.552121833468995], [-77.34939958787771, 34.552141519647705], [-77.34940188260225, 34.552163658488304], [-77.34938445258308, 34.552204902831846], [-77.34938724741765, 34.552251107981824], [-77.34938804492776, 34.55226559112333], [-77.34938765443107, 34.55228092675455], [-77.34937899055731, 34.552328099276416], [-77.34937722877628, 34.552337949424995], [-77.34938376401163, 34.552374422739646], [-77.34938685797185, 34.55238817234112], [-77.34938897063785, 34.55240575922298], [-77.34938541671971, 34.55244958491564], [-77.34938311086054, 34.55249559613068], [-77.34939148066594, 34.55250991753589], [-77.34937654603742, 34.552523905162815], [-77.3493567325669, 34.55255987429864], [-77.34934667186477, 34.552577570818606], [-77.34932070178422, 34.552620922298765], [-77.34930073618742, 34.55264538622353], [-77.34928328799182, 34.5526648120774], [-77.34925590086716, 34.552676097367346], [-77.34921698367572, 34.552694643178256], [-77.34920609992531, 34.55270747868118], [-77.34919809998621, 34.5527213608528], [-77.34918962014385, 34.552743423608526], [-77.34915966889795, 34.55278532831309], [-77.34915901973056, 34.55278818969353], [-77.34916332058559, 34.55279272180053], [-77.34915494069304, 34.55279789209145], [-77.34914322488396, 34.552797769562574], [-77.34905569222195, 34.55284528422193], [-77.3490387576474, 34.5528562992006], [-77.34902243518991, 34.552869049276374], [-77.34899842766441, 34.55289876994287], [-77.34898701613294, 34.55290474861747], [-77.34898166418851, 34.55292000331346], [-77.3490049245846, 34.55291866890539], [-77.34901371637984, 34.552931509084516], [-77.349004284215, 34.55294649842475], [-77.34899038027422, 34.55293486711088], [-77.34897967992244, 34.55292150456803], [-77.34895574854883, 34.55292288290675], [-77.348934667257, 34.552929838956935], [-77.34887029877058, 34.55295214656318], [-77.34885673805645, 34.552959921859404], [-77.3488526878378, 34.55295724460164], [-77.34878043748853, 34.552978979803136], [-77.34875749227352, 34.553007180832665], [-77.34868885312186, 34.553020858590955], [-77.3486587123655, 34.55303419207418], [-77.34864776619375, 34.553038611408695], [-77.34862563800704, 34.553048557447504], [-77.34862306097754, 34.55307063516591], [-77.3486379420076, 34.553107992112494], [-77.34865621447993, 34.55314272720104], [-77.34866466272022, 34.55315983895121], [-77.34867681915229, 34.553163603017886], [-77.34871680836551, 34.553241065462764], [-77.3489477289763, 34.55324703027941], [-77.34894007339543, 34.55331350612533], [-77.34904559604563, 34.553284060812715], [-77.34906705214892, 34.553242644380944], [-77.34909382074537, 34.55322600800351], [-77.34920258914777, 34.55311489271255], [-77.34923302455397, 34.55308356634075], [-77.34923884306669, 34.553077856549564], [-77.34924667377909, 34.553077144117715], [-77.3494267417964, 34.55293327982825], [-77.34941223423372, 34.55291384746212], [-77.34930570443714, 34.55282828685989], [-77.34941061536652, 34.552788867789985], [-77.34940229048439, 34.55275318280384], [-77.34941295740187, 34.552727911509514], [-77.34943445172041, 34.55269811079307], [-77.3494449615944, 34.552685837139926], [-77.34944553162543, 34.552681666711806], [-77.34945223266077, 34.552675395607714], [-77.34949514121661, 34.552617410939085], [-77.34949343284634, 34.55258078433992], [-77.34955283588637, 34.55256909197072], [-77.34960691336963, 34.55256762806647], [-77.34965068389528, 34.5525825543832], [-77.34983374943388, 34.55262988897955], [-77.34983999779847, 34.55263263722954], [-77.34984551168723, 34.5526472306076], [-77.34992531415668, 34.552739122714435], [-77.34994497869566, 34.55279456870164], [-77.34999265506656, 34.55285184229126], [-77.34990913271301, 34.553063049028474], [-77.35021366634982, 34.55330383225481], [-77.35021827655578, 34.553309015880544], [-77.35022049799345, 34.5533101923023], [-77.35022284767543, 34.553312353646966], [-77.35046227846298, 34.5536099830793], [-77.35062307483992, 34.553740403119335], [-77.35078179034394, 34.55385096358473], [-77.3509947320687, 34.55389459427684], [-77.35101984413261, 34.55391221418165], [-77.35103095212028, 34.55392652627667], [-77.35111689168446, 34.55408014962346], [-77.35120457201762, 34.55414636101588], [-77.35137833898185, 34.5542875036267], [-77.35141591153163, 34.554336635711714], [-77.35146645445737, 34.554353493272615], [-77.35176521632458, 34.55453823331278], [-77.35182901606406, 34.55450680455521], [-77.352394894796, 34.55436519303433], [-77.35255844777058, 34.55419196541584], [-77.35271594050842, 34.55402464753114], [-77.35309991671298, 34.5540279449732], [-77.35322806898913, 34.55409995288819], [-77.35334426732386, 34.554168242674955], [-77.35345444829414, 34.55424242806956], [-77.35360905515282, 34.55421082938894], [-77.35373833670948, 34.55410584670746], [-77.35379097660135, 34.55405096810764], [-77.35392998221118, 34.55388261944982], [-77.3540144991262, 34.55374193508037], [-77.35406188092043, 34.55368602583175], [-77.35414104062653, 34.5536671644824], [-77.35440613550762, 34.55344074006949], [-77.35437678061211, 34.55334249042833], [-77.35454233454377, 34.5532897533045]], [[-77.39068026031235, 34.70563988940285], [-77.39077086368641, 34.70589622341456], [-77.39146071506357, 34.70620715824099], [-77.3915274151733, 34.706251839599545], [-77.39158362892898, 34.706222251212765], [-77.39167686207395, 34.706213329979526], [-77.39201189675944, 34.70542607073514], [-77.3923449548503, 34.70494591560319], [-77.39119277560137, 34.70408599237289]], [[-77.31960558806361, 34.54571461040343], [-77.3195302279232, 34.545634165183124], [-77.31948219178233, 34.54554758221613], [-77.31949082697412, 34.54548628508671], [-77.31939174220112, 34.54549759165341], [-77.31938707016204, 34.545496596905494], [-77.31902658896891, 34.54553242224719], [-77.31907666795895, 34.5453009699541], [-77.31903157750325, 34.54528735502297], [-77.31899956153005, 34.54527852941976], [-77.31891210892827, 34.545257048676085], [-77.31887957943324, 34.54525411096472], [-77.31880344739432, 34.54527047949297], [-77.31872490732748, 34.54527796101875], [-77.31860644042014, 34.54530062166624], [-77.31842771431579, 34.54528248309296], [-77.31821384882926, 34.545300054710566], [-77.3181147151484, 34.545256790246874], [-77.31810368035546, 34.54519592911093], [-77.31815328016548, 34.545148831295485], [-77.31815377555623, 34.54510660709739], [-77.31813257920682, 34.545069372189815], [-77.31812131005755, 34.54506003984154], [-77.31806446448664, 34.54505349575382], [-77.31802352411296, 34.54504443123204], [-77.31791578643598, 34.545033168668226], [-77.31782674730796, 34.54506473791965], [-77.31777165848366, 34.545033616150754], [-77.3176831807096, 34.54501152043452], [-77.31743592882064, 34.54498841029147], [-77.31724474253785, 34.54507449846019], [-77.31713408936388, 34.54514933715272], [-77.31703867345674, 34.54518722749356], [-77.31692240093209, 34.54519321428661], [-77.31677207940083, 34.545221465151656], [-77.31672036255867, 34.545272224787574], [-77.31666539002435, 34.545293722672056], [-77.31664197879921, 34.54536200016925], [-77.31663043459358, 34.54540091652439], [-77.31662867916263, 34.54540779923686], [-77.31662126567073, 34.54542092003344], [-77.31659260465032, 34.54553538623297], [-77.31655938410267, 34.54561474924988], [-77.31644407925342, 34.545679124730015], [-77.31663012740513, 34.545868440491056], [-77.31675958084219, 34.54571224999014], [-77.31686149636015, 34.54561916937459], [-77.31695716776039, 34.54556004347476], [-77.31703048530235, 34.54553719800729], [-77.31716654967852, 34.54549118026992], [-77.31722847761387, 34.54546499405304], [-77.31727578590682, 34.54546678165413], [-77.31742461076662, 34.54547225297372], [-77.31751704098107, 34.54546744265807], [-77.31771977709482, 34.54549588625272], [-77.31778867576286, 34.54550333301362], [-77.31781641962303, 34.54550633161051], [-77.3178834055695, 34.545514267101275], [-77.31820868368459, 34.545520951829516], [-77.31846917912941, 34.545471338409534], [-77.31859990650517, 34.545580113072475], [-77.31864102500084, 34.54558268592551], [-77.31875886127429, 34.54559143563416], [-77.31893079780306, 34.54560485833433], [-77.31898842613944, 34.545754947445545], [-77.3192618936192, 34.54583707754155], [-77.319364712646, 34.545994026034194], [-77.31937539308808, 34.54599629144599], [-77.31952952213993, 34.54611729109064], [-77.31973465957363, 34.546167394670036], [-77.319764447039, 34.5461484018467], [-77.32006181271898, 34.54607828247569], [-77.32003302525382, 34.54589801643241], [-77.31985334821564, 34.54587241498617], [-77.31977291518326, 34.54578595294784]], [[-77.3942827505902, 34.605940823957106], [-77.39427752236777, 34.60595131031178], [-77.39426848653517, 34.60596433539526], [-77.39393400304823, 34.60647999679138], [-77.39387430171573, 34.60649958052858], [-77.3936078038439, 34.606749777041045], [-77.3934801263017, 34.606866430852286], [-77.39346360446604, 34.606890299949654], [-77.3934419464477, 34.60691121811726], [-77.39307763948085, 34.60737938819408], [-77.39304491153665, 34.6074372259298], [-77.39296774092226, 34.60782874038274], [-77.39286141240107, 34.60802685607018], [-77.39269171606736, 34.60812218082092], [-77.3923850201845, 34.6082431199582], [-77.39220743407515, 34.60826587516948], [-77.39210262278174, 34.60858799274878], [-77.39256790568716, 34.608602220316655], [-77.39269166677778, 34.6086487924622], [-77.39272706920228, 34.608674448617386], [-77.3934681162582, 34.608592945876], [-77.39347998012335, 34.608594265269325], [-77.39349243009399, 34.60858880893922], [-77.39402944682556, 34.60826747708238], [-77.3942683314896, 34.60801404963825], [-77.3944480557111, 34.60780884479919], [-77.39453029355424, 34.60760340706366], [-77.39505668960294, 34.60716323093331], [-77.39524047960333, 34.6068497980788], [-77.39545085976016, 34.60678477055778], [-77.39573543970924, 34.60669848587547], [-77.39584501161367, 34.606665515681044], [-77.39592777317861, 34.60664186702884], [-77.39616510463951, 34.606518487980296], [-77.39621464805546, 34.60648493215795], [-77.39623916847135, 34.60642793944481], [-77.39637519150199, 34.606210126960505], [-77.3966333378288, 34.60588325062497], [-77.39725256089984, 34.60569461122164], [-77.39742162607068, 34.605697487950835], [-77.39763800203534, 34.60568997819178], [-77.39807168936136, 34.60539433689283], [-77.39854391295222, 34.604836847728556], [-77.39899821729418, 34.60406430254219], [-77.39946703452141, 34.60349475931915], [-77.39926054179978, 34.603241977503444], [-77.39899823163125, 34.60338469485181], [-77.39880815246867, 34.603385047762806], [-77.39820997517401, 34.603372182746256], [-77.3978449591946, 34.60372875346634], [-77.39784514252732, 34.60418488749809], [-77.39742168754753, 34.60413468893827], [-77.39713068943045, 34.604145253133446], [-77.39663341058314, 34.60438730663853], [-77.39639215255147, 34.60452757065404], [-77.39606690874419, 34.60459545898079], [-77.39584512492797, 34.604701947773265], [-77.39574083838326, 34.60476905742789], [-77.39545097807212, 34.60488597490105], [-77.39537330296977, 34.60493440191817], [-77.39520359319687, 34.6051169776197], [-77.3950568198747, 34.605212569515984]], [[-77.34306032948442, 34.52342402034836], [-77.3434848818784, 34.52320257774282], [-77.34377138242013, 34.52289972588066], [-77.34368932339396, 34.522532044388385], [-77.34307607080832, 34.52274241307588], [-77.34287009614704, 34.52290325158093], [-77.3427007188051, 34.52305378228256], [-77.34275893880103, 34.52323610427419]], [[-77.33845945727985, 34.55086425403697], [-77.33849949189941, 34.55090439960704], [-77.33887870597951, 34.55077841803915], [-77.3385020488249, 34.550793888142465], [-77.3383181562496, 34.55072980388793], [-77.33815436986085, 34.55066391955725], [-77.33828874198532, 34.55075205389789], [-77.33840554175407, 34.55084646533047]], [[-77.21792823846141, 34.61729473944239], [-77.21808589401418, 34.617387144870456], [-77.21811618012987, 34.617473802074485], [-77.21825040320223, 34.617400138201184], [-77.2183762130169, 34.61725884168709], [-77.21839490001211, 34.61717586834196], [-77.21852050056972, 34.617073254637454], [-77.21831695487217, 34.617077544219065], [-77.21824423498879, 34.61714141537861], [-77.21821090124898, 34.61716133606582], [-77.21798660419842, 34.61724096355789]], [[-77.31137751584313, 34.550544181241946], [-77.31133992809221, 34.55057389255848], [-77.31129946196464, 34.55075460872282], [-77.31101697295739, 34.5508385393308], [-77.310997614261, 34.55085603759587], [-77.31096650270311, 34.550872318783895], [-77.31079729993249, 34.55100691826982], [-77.31076373158918, 34.551056145726804], [-77.31082104774437, 34.551138012121214], [-77.31068958885733, 34.55135347712368], [-77.31100807303821, 34.55121780039069], [-77.31117721318711, 34.55119195562103], [-77.31124915241853, 34.551076544894144], [-77.31134240863788, 34.55102396987962], [-77.31140615575194, 34.55098558561535], [-77.3115051110511, 34.550854769915915], [-77.31180698335493, 34.55063625633841], [-77.31188919455748, 34.55054494985801], [-77.31193787662205, 34.550488035418574], [-77.31222685031803, 34.55021251785821], [-77.31228602014397, 34.550146522585024], [-77.31227773094639, 34.54994961687662], [-77.31239726719956, 34.54982113264695], [-77.31221791819782, 34.54985581643368], [-77.3121735148631, 34.5499380985255], [-77.31201918980668, 34.54995875614602], [-77.31198805926941, 34.54999121107602], [-77.311897853977, 34.550052281516756], [-77.31181918796838, 34.550115962334594], [-77.31179430119184, 34.55014143724556], [-77.31177493816702, 34.55024085865764], [-77.31174526626226, 34.550270882680934], [-77.3115832427402, 34.55039593694008], [-77.31151656730216, 34.55042612538591], [-77.31141769640789, 34.55049369444787]], [[-77.39589359323475, 34.58028465203496], [-77.39593507021125, 34.580228211754374], [-77.3960012716618, 34.58005219337692], [-77.39584678223758, 34.58008648460121], [-77.39565207248293, 34.579629739226164], [-77.39533809980522, 34.579766174581785], [-77.395058765208, 34.57984445497469], [-77.39470909711139, 34.5799326965584], [-77.39466473775268, 34.57995041396457], [-77.39463211035188, 34.57995644276384], [-77.39433469154258, 34.57996556757321], [-77.39427071972011, 34.57994628574895], [-77.39396039318738, 34.57999830551019], [-77.39370407594072, 34.579939453149954], [-77.39373137465856, 34.58027808573162], [-77.39403360571063, 34.58050250311929], [-77.39413421456373, 34.580635007675745], [-77.39427065661178, 34.58061078668403], [-77.39446403090957, 34.58064878681196], [-77.39466466674938, 34.58073734416034], [-77.39472741898692, 34.580759374091606], [-77.39495191149256, 34.580794610791365], [-77.39505868219985, 34.58081499669925], [-77.39520983670445, 34.580757404240764], [-77.39541294531682, 34.5806852516553], [-77.39545271740279, 34.58065554170712], [-77.39568418620479, 34.5804395781041], [-77.3958467651204, 34.580310964518034]], [[-77.27237605187699, 34.57217309615184], [-77.27231364074635, 34.572221325884925], [-77.272296902089, 34.57223661139551], [-77.27224840711202, 34.57228089666477], [-77.27222177721691, 34.57230392348387], [-77.2721419561878, 34.57237294440618], [-77.27212811000155, 34.572384917146906], [-77.27212349061442, 34.57238891149636], [-77.27211462348194, 34.57239676387312], [-77.27200444867503, 34.57249738794856], [-77.27194133717045, 34.57254740419285], [-77.27193543609691, 34.572555757674856], [-77.27192969446058, 34.5725843598035], [-77.27192420701209, 34.57260589338708], [-77.27193758599134, 34.57260996575426], [-77.27197408974716, 34.57263313217211], [-77.27196654786604, 34.57271982116175], [-77.2720502441127, 34.572644257207294], [-77.27210778458229, 34.57262334343595], [-77.2721879495439, 34.57260242723142], [-77.27224636424171, 34.572583154960256], [-77.2723292721535, 34.572563813961274], [-77.27247325192624, 34.57255115622228], [-77.27250151998899, 34.57253645721691], [-77.2725556728688, 34.572436568615814], [-77.27256559955498, 34.57242366046064], [-77.27258743828405, 34.57240332516387], [-77.27262271867185, 34.57231031667478], [-77.27268076483222, 34.57221922852774], [-77.27269484583847, 34.572198152380146], [-77.27275100989158, 34.572158323533664], [-77.27281895216683, 34.57209007343036], [-77.2728608623227, 34.57205080591835], [-77.27294694824931, 34.57198230010601], [-77.27295814184822, 34.57197302523805], [-77.27298967581672, 34.571946573085185], [-77.27305267179868, 34.57189279933662], [-77.27311636901926, 34.57183771447845], [-77.27319789012651, 34.571766356178316], [-77.2732388785304, 34.57172981050991], [-77.27331387633598, 34.571657638690894], [-77.27332717050757, 34.571644037504086], [-77.27338255065935, 34.5715863087337], [-77.27341227761579, 34.571555432218126], [-77.27341785355829, 34.571547977311255], [-77.2734292264347, 34.571536775369054], [-77.27351982974069, 34.571438158603215], [-77.27357792001254, 34.57137415617245], [-77.27361542843238, 34.571327838640826], [-77.27364992477766, 34.571273899292166], [-77.2736525628325, 34.571269377753524], [-77.27362881938758, 34.57121105802297], [-77.273583930104, 34.57118805238545], [-77.27355897960064, 34.57120556936047], [-77.27353656680006, 34.57122098319756], [-77.2734900808768, 34.571259071113616], [-77.27346275897806, 34.571271742667165], [-77.2734172900914, 34.57130926000208], [-77.27341398358037, 34.57131200710352], [-77.27336623594002, 34.57135019537419], [-77.27330397542207, 34.571399990836504], [-77.27335744287787, 34.57142539651317], [-77.27337093036864, 34.571518661779024], [-77.27324031452372, 34.571450906270144], [-77.27314728714055, 34.571526713014336], [-77.27309093747618, 34.57157167127273], [-77.27308259242471, 34.57158054502883], [-77.27307521930251, 34.57158426678795], [-77.27306130718858, 34.571596569219125], [-77.2730187883133, 34.571634446983275], [-77.27298226260008, 34.57166589144287], [-77.27290337237783, 34.571733806731956], [-77.27292754113418, 34.571745108582704], [-77.2729420280647, 34.57179440266019], [-77.27287359841672, 34.57175943861949], [-77.27276845055631, 34.57185043798687], [-77.27271503099233, 34.571896232516586], [-77.27270834418277, 34.57190463048304], [-77.27270081342324, 34.571908472444825], [-77.27268665531649, 34.57192079215306], [-77.27264372187238, 34.57195846798916], [-77.27260598099423, 34.571988429370826], [-77.27250931931063, 34.572065166077074], [-77.27251134036696, 34.572065896386256], [-77.27251248227877, 34.57206957250984], [-77.27250761211296, 34.57206652136716]], [[-77.21309855830836, 34.621440103417335], [-77.21307804767066, 34.62146949663246], [-77.21303523611104, 34.621674574797446], [-77.21327253025119, 34.62148486420148], [-77.21337643789049, 34.62138454416548], [-77.21338197104619, 34.6213756701902], [-77.21321112624885, 34.621327495333745], [-77.2131380879678, 34.62135639913111]], [[-77.22276395525716, 34.6132723530923], [-77.222756660589, 34.61327803037293], [-77.22273281637672, 34.61329374663282], [-77.22274067333942, 34.61334039782842], [-77.2228089684836, 34.61331240168599], [-77.22284109169281, 34.613284696021374], [-77.22315987701785, 34.61313401452941], [-77.22278655333577, 34.61324983187487]], [[-77.37537116814774, 34.68593318412845], [-77.3760306866653, 34.68485438581634], [-77.37480154848, 34.68542841109617], [-77.37489098321946, 34.685646300770095], [-77.374970802076, 34.68567049884536]], [[-77.32288495781012, 34.54702097776182], [-77.32303573173476, 34.54702961962264], [-77.32357113030814, 34.54692175390114], [-77.3236725074297, 34.54692120569938], [-77.32390360855038, 34.546955373637225], [-77.32374244312064, 34.546833931924894], [-77.32371854562322, 34.5468102715251], [-77.32367587578867, 34.5467767434388], [-77.3233223181745, 34.54664948715629], [-77.32329976494871, 34.54664436449485], [-77.32322392946712, 34.54662441013191], [-77.32289527283609, 34.54657876518601], [-77.32278870186784, 34.54672616078204], [-77.32277840874139, 34.54690431697573], [-77.32276863768898, 34.54697385631132], [-77.32282974264635, 34.54699981382955]], [[-77.35925742671837, 34.54067895591084], [-77.35922503920945, 34.54075062137305], [-77.35920725171357, 34.54079048534192], [-77.35920606869594, 34.540998177063386], [-77.35920298985101, 34.541202911151], [-77.359202280035, 34.54124354654863], [-77.35918676850565, 34.54127725852821], [-77.35918523277394, 34.541368413354505], [-77.35916874215977, 34.54139267221632], [-77.35917028374584, 34.541469041997075], [-77.3591904156476, 34.541490078981965], [-77.35919316576027, 34.54152874124863], [-77.35920635380833, 34.54168312087267], [-77.35924273172745, 34.54172736935169], [-77.35926243715332, 34.54181081704478], [-77.35928387980735, 34.54196626798793], [-77.35923883823988, 34.54204770425966], [-77.3592416479016, 34.54213916513566], [-77.35925614933917, 34.542215085195764], [-77.35920754438071, 34.54228084720791], [-77.35920804370544, 34.542285286566575], [-77.3592807562345, 34.54233395382276], [-77.3592856942232, 34.542347207909295], [-77.35940458054152, 34.542438535142665], [-77.35943326580167, 34.542476900401155], [-77.35948736484913, 34.542671438336455], [-77.35948685835277, 34.5426777189704], [-77.3594964927726, 34.542691690379435], [-77.3595092777633, 34.54266828287793], [-77.35958517945049, 34.5424645946389], [-77.35959021277843, 34.5424118041007], [-77.35966073057585, 34.54230474944724], [-77.35967755327607, 34.542261172186265], [-77.3596495166931, 34.54215844018877], [-77.35968439255564, 34.5420161306906], [-77.35968645621551, 34.54180252157813], [-77.35971424558537, 34.541659470952396], [-77.35976039812535, 34.541556375206675], [-77.35976194638269, 34.541504009524814], [-77.35976443121153, 34.54140742012044], [-77.3597733156467, 34.54131429154272], [-77.35977951221676, 34.54124933610686], [-77.35976065174077, 34.54116314015386], [-77.35976337455187, 34.54106108516219], [-77.35974015582784, 34.5407963645098], [-77.35971345783567, 34.54068028808714], [-77.35967646664608, 34.54052205906936], [-77.35967874226998, 34.54036008752219], [-77.3596455123901, 34.54020042440156], [-77.35960198650046, 34.53998907948796], [-77.35959806227538, 34.53993839294985], [-77.35956213415031, 34.53982393313727], [-77.35950022725122, 34.5399395645637], [-77.35946017616527, 34.54004275120182], [-77.35937782918236, 34.54023897151648], [-77.35932948795299, 34.54035322405218]], [[-77.31515725638647, 34.54684318923296], [-77.31521473907424, 34.54694736606693], [-77.3150329530412, 34.54701026468011], [-77.31499388801909, 34.54708824265436], [-77.31492614246298, 34.54712119195206], [-77.31476502132264, 34.54722521544063], [-77.31463222538062, 34.54735664481672], [-77.31461106756932, 34.54739867350082], [-77.31458405699128, 34.54741513139351], [-77.31449225844167, 34.54751330120294], [-77.31462717848981, 34.54757209719012], [-77.31474846661433, 34.54746559161511], [-77.3148140082659, 34.547382106732925], [-77.3149522259306, 34.54731639043815], [-77.31502759943979, 34.54723885599905], [-77.31506902228355, 34.54712483552638], [-77.31513116202817, 34.547091747325226], [-77.31523933558096, 34.54695934536045], [-77.31530543536836, 34.54689844708314], [-77.31539295169561, 34.54680933843531], [-77.3152351886223, 34.54675709197818]], [[-77.34019428481659, 34.550999968306364], [-77.34007093835254, 34.5508635720322], [-77.3398779799794, 34.55100607554537], [-77.33987131943042, 34.55100657300751], [-77.33986610200722, 34.55100688668445], [-77.33977271615873, 34.551025895638276], [-77.33976179943865, 34.55102545245372], [-77.33972485433645, 34.55102395258804], [-77.33969109110237, 34.551018605570064], [-77.33967463650949, 34.55102257099085], [-77.33964055816394, 34.55099649690508], [-77.33963073022892, 34.550976285228465], [-77.3396289092953, 34.550944974183835], [-77.33962150381139, 34.55091640771528], [-77.33961947853007, 34.550891773620855], [-77.33961880167914, 34.550886194113275], [-77.33961330240042, 34.550877247659116], [-77.33961392932825, 34.55085629262661], [-77.33961990656339, 34.55084941221956], [-77.33961318588976, 34.55083619919534], [-77.33959005370042, 34.550834881714856], [-77.33958071005374, 34.55083964302289], [-77.3395599194534, 34.55083345816807], [-77.3395373020273, 34.55083326740543], [-77.33953223806654, 34.55081343003103], [-77.33951955620711, 34.550831617849475], [-77.33948261733906, 34.55083689260992], [-77.33945084006046, 34.55083833738715], [-77.33934624065542, 34.550833587252626], [-77.3393132013739, 34.55082178563442], [-77.339286648553, 34.55082202455253], [-77.33917266875329, 34.55080742278745], [-77.33889821075127, 34.550777583026154], [-77.3388950220645, 34.55077884622376], [-77.33864937103442, 34.55105621719174], [-77.33888666810083, 34.55113998196271], [-77.33897172402753, 34.55120076359956], [-77.33905439115969, 34.55124278708488], [-77.33908045026685, 34.551249417306074], [-77.3391285291009, 34.55126228939481], [-77.33919134633203, 34.55127596874181], [-77.33927549597207, 34.55130424080073], [-77.33939421060921, 34.551316323857776], [-77.33944684087535, 34.551324038155485], [-77.33947127257792, 34.551327468320125], [-77.33952525872812, 34.55133119260339], [-77.33966753784502, 34.55132956633474], [-77.33974316821389, 34.5513412190673], [-77.3398717107558, 34.55137005803978], [-77.33999253236533, 34.55139392503331], [-77.34005820930082, 34.55141417615698], [-77.34021686143515, 34.551465568744796], [-77.34041567894135, 34.551516187602644], [-77.34044832941085, 34.55152266966047], [-77.34045631694552, 34.55152576973862], [-77.34046540285651, 34.551529488134335], [-77.34064317011526, 34.551586422431214], [-77.34068244443219, 34.55159605257889], [-77.34083841672644, 34.55163262211796], [-77.34092280540841, 34.551655568088975], [-77.34105295222786, 34.55168979876706], [-77.3412287812431, 34.551730616978006], [-77.3414011030846, 34.55177643240042], [-77.34152903278202, 34.551809678483515], [-77.34161904463576, 34.55183302506535], [-77.34163834238471, 34.55183830869355], [-77.34166943047062, 34.55184594600251], [-77.34181423921162, 34.55188152069382], [-77.34186996919836, 34.55190443043984], [-77.34193886588564, 34.55192959998599], [-77.34200884025599, 34.551955724997526], [-77.34208838158725, 34.551980548516354], [-77.34222478273614, 34.552010882578735], [-77.34233470395634, 34.55203555298223], [-77.34239919268532, 34.55205435579285], [-77.34257712383757, 34.55209350940463], [-77.34269817914313, 34.55213030930541], [-77.34278939979194, 34.55215931732109], [-77.34280456110503, 34.552162799747144], [-77.34283943070531, 34.55216728754602], [-77.34318074789675, 34.55221488175891], [-77.34334827984908, 34.55223416932266], [-77.34345828118788, 34.55225184966111], [-77.34357201892372, 34.55227380447724], [-77.34359975453316, 34.55228527451329], [-77.34361902816478, 34.55229996110884], [-77.34376621070953, 34.552365844098816], [-77.34380323998208, 34.552372683527615], [-77.34385939449834, 34.55238779284829], [-77.34396137827268, 34.552415607049525], [-77.3440319115087, 34.55244103899669], [-77.34413789756843, 34.55247013793841], [-77.34415629657805, 34.55247618403183], [-77.34425054117978, 34.552516991091], [-77.34435101999235, 34.55254522146108], [-77.34448518388183, 34.55258082900125], [-77.3446922885982, 34.55263520246539], [-77.34472188130472, 34.55264311230474], [-77.34474127513587, 34.55264828497302], [-77.34482989451408, 34.55267098971073], [-77.34493642322421, 34.55269894111125], [-77.34496007180717, 34.55270426577688], [-77.34499061006169, 34.55271469465271], [-77.34513120921366, 34.55276531104245], [-77.34518080180706, 34.5527786282636], [-77.34524744404418, 34.552800154793985], [-77.34532613629102, 34.552825573673374], [-77.34541173671231, 34.55284527035195], [-77.34552123422118, 34.552878435980034], [-77.34564220880166, 34.5529122624113], [-77.34578884288727, 34.552967083841395], [-77.34591067715658, 34.553016857963506], [-77.34610421288684, 34.55304275885381], [-77.34610639101254, 34.55304302563252], [-77.34610721780103, 34.55304317087515], [-77.34610860762928, 34.55304348853147], [-77.34630168043708, 34.553087616860594], [-77.34635756319868, 34.55309512735382], [-77.34644961326205, 34.55311683607423], [-77.34659452570489, 34.553157208084215], [-77.3466925017101, 34.553166300530506], [-77.34684514523593, 34.55320895691955], [-77.34698764951106, 34.55322429116373], [-77.34708354401806, 34.5532354154974], [-77.34713153949399, 34.55323363987595], [-77.34730829505455, 34.553238108897816], [-77.34747576899035, 34.55325319795417], [-77.34776631431325, 34.553172206541205], [-77.34785344365943, 34.55314884372875], [-77.3478400231383, 34.55303919066435], [-77.3477737631332, 34.55298911724885], [-77.34777270298703, 34.55298767217338], [-77.34776463314984, 34.55298143251102], [-77.3476998716769, 34.552936946603225], [-77.34767961539347, 34.55292621694808], [-77.34764094619244, 34.55292124219954], [-77.34758178676604, 34.552911903384775], [-77.34756114248238, 34.552908622366246], [-77.34748420286913, 34.55288696380843], [-77.34745234240552, 34.552870258530405], [-77.34744054425192, 34.5528518501369], [-77.34738753289164, 34.55282234238457], [-77.34737619955203, 34.55280718768395], [-77.34735970045548, 34.5528022772893], [-77.3472908152556, 34.552759796631776], [-77.34727738690664, 34.552761267792], [-77.34722640024688, 34.55276025199443], [-77.3471191197229, 34.55276032838472], [-77.34709454542421, 34.552757786449035], [-77.34703830055585, 34.55275216487427], [-77.34689835543483, 34.552752309525154], [-77.34680934520244, 34.5527533348926], [-77.34678615237354, 34.552753652360785], [-77.34670186168844, 34.55276001755993], [-77.34665404867675, 34.55275014744369], [-77.34657211942792, 34.55273198041602], [-77.34653047790188, 34.552722957881635], [-77.34646825769873, 34.552723143810695], [-77.34631076778119, 34.552693248733966], [-77.34627003684305, 34.55267864021447], [-77.34619729058514, 34.552663499528286], [-77.34615142654964, 34.55264769763562], [-77.34611567237258, 34.55264027894898], [-77.34609777588625, 34.552627948510334], [-77.34605927112688, 34.55262215207067], [-77.34603569706447, 34.55261457556838], [-77.34593386611633, 34.55258727519322], [-77.34592065428494, 34.55258396402497], [-77.34591725481286, 34.55258350576072], [-77.34591332252356, 34.55258194523087], [-77.34581051572448, 34.55254358193715], [-77.34572871984247, 34.552486094514514], [-77.34572662152732, 34.55248491182061], [-77.34560624705063, 34.552456767139404], [-77.34553186711771, 34.5524171837889], [-77.34550978458452, 34.55240906885489], [-77.34547955071892, 34.552399532667955], [-77.34539871682313, 34.55237241975842], [-77.3452179291686, 34.55236305165849], [-77.34514066183482, 34.55235534282589], [-77.34510488945182, 34.55235335844179], [-77.34504842128858, 34.552339148369846], [-77.3449450583092, 34.55232446846555], [-77.34485496700472, 34.55230108140221], [-77.34480534248766, 34.55228645438287], [-77.34474995538031, 34.552271892439244], [-77.34472922552455, 34.5522626595653], [-77.34463504020636, 34.552226111743416], [-77.34461219644581, 34.55221829083082], [-77.34455532540042, 34.55219882015386], [-77.34452394378907, 34.55218948401094], [-77.3444829501951, 34.552175679568805], [-77.34445789615623, 34.55216724271314], [-77.34441389416895, 34.55215206432771], [-77.34436050034564, 34.55213421877913], [-77.34429935655406, 34.552118039853596], [-77.34421402697892, 34.55209195719536], [-77.34418485437178, 34.552083988514475], [-77.34416544592322, 34.5520795722277], [-77.34409463260894, 34.55206476539129], [-77.34406775208623, 34.55205947533714], [-77.34406027316308, 34.55205756208212], [-77.34397013645122, 34.552035990630124], [-77.34393867303638, 34.55202888030705], [-77.3438797007591, 34.55201764293888], [-77.3437747560786, 34.551995489614356], [-77.34368827909722, 34.55197695867757], [-77.34358632228482, 34.551937437382946], [-77.34357983942526, 34.55193490031283], [-77.34347387546867, 34.55189780980078], [-77.34338546098364, 34.55185100109276], [-77.34337901314078, 34.55184890060537], [-77.34337087710041, 34.55184602028753], [-77.34328278417482, 34.55180102508025], [-77.34319210959995, 34.551722619201996], [-77.34311820909332, 34.55168418083592], [-77.3430832982319, 34.55164256980946], [-77.34299922188757, 34.55157417523175], [-77.3429520720374, 34.55156851834455], [-77.34280256523725, 34.55158902162193], [-77.34262197580398, 34.55159643227664], [-77.34259589925061, 34.5515966172652], [-77.34244384977406, 34.5516121433257], [-77.3424093271382, 34.55161544494578], [-77.34228388433804, 34.55159130985223], [-77.342213628253, 34.55158880383794], [-77.34215378413387, 34.551569057447026], [-77.3420702667265, 34.55154347130483], [-77.34204151710853, 34.55153331430503], [-77.34201871259609, 34.5515282533413], [-77.34187517965668, 34.55148135909069], [-77.34182385712005, 34.55146510849923], [-77.34181650616254, 34.551462188742256], [-77.34180394724736, 34.551459369552695], [-77.34172623571214, 34.55144192508794], [-77.34169776238883, 34.55143134503084], [-77.34164117819329, 34.551421577416164], [-77.34162861571264, 34.5514186827889], [-77.3415787113008, 34.551400733749105], [-77.3415162949959, 34.55137833565412], [-77.3414338103907, 34.55135338877569], [-77.34134277303995, 34.551337874086094], [-77.34130772752738, 34.55132937164645], [-77.34123838805806, 34.551314812509474], [-77.34119184231623, 34.55130259434631], [-77.34109720893002, 34.55128229581009], [-77.34104314491015, 34.5512684882773], [-77.34098618548325, 34.551245611600606], [-77.34094568537702, 34.55123831686228], [-77.3409285064452, 34.55122890898551], [-77.34089719440809, 34.55122256536177], [-77.34087174215155, 34.55121151434763], [-77.3408483220629, 34.55120398454106], [-77.34076015399155, 34.55118705586621], [-77.34074710726124, 34.55118512666457], [-77.34074412043441, 34.55118337764977], [-77.34065300978816, 34.551160669831205], [-77.34061996664772, 34.55116063436846], [-77.34056597769717, 34.55114779533764], [-77.3404577003649, 34.551117239468994], [-77.34038443037359, 34.55109746967122], [-77.34033543225158, 34.55105854525142], [-77.3402640547018, 34.55100184243203]], [[-77.26821733502, 34.57580741258282], [-77.26818620553863, 34.57585005857914], [-77.26798167177415, 34.575926427013584], [-77.26790551792757, 34.57599452993263], [-77.2678435783547, 34.57605878587704], [-77.2678482943906, 34.57613640976547], [-77.26765147395948, 34.57625241381823], [-77.26763034770322, 34.576271181155825], [-77.267628854177, 34.576277569670445], [-77.26736526083302, 34.576364028344784], [-77.26731133337096, 34.57637043594705], [-77.26712705110009, 34.576456028154055], [-77.26711520414342, 34.576470242802685], [-77.26711358816507, 34.5764727202425], [-77.26710773608104, 34.57647710099397], [-77.26709593848183, 34.57651754345824], [-77.26716727833735, 34.576638506309834], [-77.26714711641168, 34.576711024650336], [-77.26719986747301, 34.576728692586464], [-77.26721516888959, 34.57671637597487], [-77.2672725218252, 34.57661015448968], [-77.26733792711899, 34.57657457957704], [-77.26717581632346, 34.576477613504245], [-77.26742419047052, 34.57641643773032], [-77.26755493790463, 34.576443286318735], [-77.26760830399958, 34.57639378765997], [-77.26766673747048, 34.576359547622154], [-77.26765324167926, 34.57629154198308], [-77.26764645576716, 34.576278953722394], [-77.26789005879073, 34.57619731925754], [-77.26790447118894, 34.57618637066538], [-77.2679253869791, 34.57617079769812], [-77.26799918274541, 34.57607102100859], [-77.26810253036805, 34.57603391256523], [-77.26814691512618, 34.57599595331129], [-77.26807672114587, 34.57595928391973], [-77.26825503147263, 34.575892322667855], [-77.26828265542322, 34.575865505164934], [-77.26829062018106, 34.57585826851012], [-77.26830597267062, 34.57584451115061], [-77.26830905297632, 34.57578550797865]], [[-77.22880310948685, 34.60878285993907], [-77.228765518295, 34.60880302129486], [-77.22836288505107, 34.60890117698503], [-77.22827493374545, 34.60897043920555], [-77.22825294588361, 34.60899825383327], [-77.22821934237533, 34.609037296226894], [-77.22792490260046, 34.60931650788679], [-77.22782845538045, 34.60943611497838], [-77.22776295733964, 34.60950117137129], [-77.22765735134652, 34.609614896382546], [-77.22765806129702, 34.60965834789731], [-77.22777152928799, 34.60983753800171], [-77.22778595922613, 34.60990412021828], [-77.22723607422128, 34.61001864504236], [-77.22714957197698, 34.61008957857648], [-77.2271258326793, 34.61018109181401], [-77.22723969149389, 34.61028618918694], [-77.22741805129273, 34.61018054402217], [-77.22783602675662, 34.60994137978955], [-77.22786540927511, 34.60992105952748], [-77.227881747125, 34.60991167925534], [-77.22791383087635, 34.60988631444214], [-77.2281810788302, 34.60969962062093], [-77.22826836551411, 34.609622073561695], [-77.22832111310895, 34.60955027155036], [-77.2283566253251, 34.60947779376173], [-77.22849098598958, 34.60930304028657], [-77.22842852003863, 34.60910707881833], [-77.2286076911286, 34.60902624665446], [-77.22878643033025, 34.608897491734865], [-77.22884539095583, 34.60882047593872], [-77.22885628725855, 34.60879901619753]], [[-77.3653321369448, 34.52713031891592], [-77.36531684423714, 34.527142297982735], [-77.36522276644094, 34.52720127928297], [-77.36519376977776, 34.52725434528218], [-77.36524472640454, 34.52727510077726], [-77.3652485559412, 34.52733800973532], [-77.36527878419274, 34.5273926070655], [-77.36513097195063, 34.527543273734544], [-77.36513673805618, 34.52765789700751], [-77.36507863051499, 34.52775204720453], [-77.364939768541, 34.527810722083075], [-77.3648346903937, 34.52776756784033], [-77.36482922752947, 34.52770219853626], [-77.36474637851354, 34.527685237359464], [-77.36467436863353, 34.52767951064823], [-77.36455343390838, 34.527739098037166], [-77.3645488289064, 34.5277419331824], [-77.3645482414404, 34.52774231707114], [-77.36454736969529, 34.527742803615354], [-77.36454442265926, 34.527745919746], [-77.36442313358634, 34.527929801115626], [-77.36433282374747, 34.52801853656085], [-77.36414552979241, 34.52821430251112], [-77.3641072493584, 34.528272814556175], [-77.36408860567548, 34.52829854368904], [-77.3640098706397, 34.528391970343165], [-77.36393372203831, 34.52868510130562], [-77.36396598814889, 34.528805858386235], [-77.36399664716407, 34.52888475384124], [-77.3641296255274, 34.52891064117554], [-77.36426397978228, 34.52884580867827], [-77.364524617288, 34.52880220978776], [-77.36462445608126, 34.52877285617804], [-77.36466813383512, 34.528704708893756], [-77.36477715401963, 34.52859879702911], [-77.36476368428546, 34.528545485324166], [-77.36476998807001, 34.52844521003067], [-77.36481195072861, 34.528367366565575], [-77.36489078980777, 34.52820787562747], [-77.36489244605953, 34.52818274264544], [-77.36488905685388, 34.52815652427758], [-77.36493284342987, 34.52811404865801], [-77.36522896387449, 34.5278894363014], [-77.3652451439839, 34.52783307373815], [-77.36533197546626, 34.527824014724146], [-77.36537151136771, 34.527843955816195], [-77.36547502496427, 34.52785398697887], [-77.36552747458452, 34.527857140412905], [-77.36556030458394, 34.527862251115714], [-77.36554578980376, 34.52784379198409], [-77.36552963432214, 34.527762512709195], [-77.36552009041614, 34.52773147628188], [-77.36550951589007, 34.527726604940646], [-77.36552029271846, 34.52771860041993], [-77.36553067214997, 34.52771704087051], [-77.36559185819299, 34.52759232891094], [-77.36565259782562, 34.52753461887337], [-77.36567206574878, 34.52749573020973], [-77.36568533830814, 34.52745644820669], [-77.36565738147289, 34.52741276585269], [-77.36564754577313, 34.52739359795837], [-77.36557609880114, 34.527349773369394], [-77.36555841625315, 34.5272404281002], [-77.36555052005902, 34.52723104551744], [-77.36555342431097, 34.527223462129655], [-77.36559736296775, 34.52710188381649], [-77.36564562331708, 34.52703450195893], [-77.3656455959852, 34.52703298942773], [-77.36565028676858, 34.526971846057236], [-77.36564911253886, 34.52691201904174], [-77.36564952353245, 34.52690932123649], [-77.36564498864962, 34.5269100123283], [-77.36564032012183, 34.52691628863087], [-77.36563110731666, 34.526974609258495], [-77.36557736532498, 34.52700128716203], [-77.36554663808667, 34.52701750444625], [-77.36545412500493, 34.52706131364095], [-77.3654526521008, 34.527064781651355], [-77.3654397782061, 34.52706810749692], [-77.36534824030856, 34.527111454776346]], [[-77.30743160577002, 34.552851364208315], [-77.30743694744255, 34.55284846258555], [-77.30783372553715, 34.552633194168415], [-77.30792805685986, 34.55259077206287], [-77.30815813172987, 34.552499551283034], [-77.30823023526686, 34.55246860569397], [-77.30831158325549, 34.55242740645857], [-77.30845725848184, 34.552351635168705], [-77.3084491025136, 34.552323445724966], [-77.30850471254976, 34.55220498937027], [-77.30843446834294, 34.552131859519164], [-77.30840480179181, 34.552115662259084], [-77.30825901287992, 34.55213085091515], [-77.30823791851087, 34.552141648468925], [-77.30813022917187, 34.55219234777268], [-77.30791397773123, 34.55228979202724], [-77.30783951635047, 34.552386817520876], [-77.30776878009333, 34.5523552021253], [-77.30760343258632, 34.552432654899945], [-77.30744375013589, 34.5525197575044], [-77.3071957992644, 34.55263769379428], [-77.30743248166644, 34.55284628739092]], [[-77.2669003045993, 34.576904345628996], [-77.26688211467552, 34.57692015301913], [-77.2668823896456, 34.57692587556059], [-77.26687666029389, 34.57693108432481], [-77.26688414320095, 34.57693629939561], [-77.2668906278444, 34.57692772429033], [-77.26689181616062, 34.576926616839984], [-77.26689763805021, 34.57692322595501]], [[-77.32913755175534, 34.548276030549815], [-77.32916803849906, 34.548276537569954], [-77.32916341404835, 34.54825818498061], [-77.3291432778705, 34.54825777349418], [-77.32913800267373, 34.54825663660394], [-77.32877270921097, 34.54829672466808], [-77.32874525157854, 34.54826244813007], [-77.32858833280802, 34.548194855618824], [-77.32856649218466, 34.548099168414], [-77.32855281696037, 34.54809590395357], [-77.32837239696423, 34.54811685528287], [-77.32835604090634, 34.548116041323084], [-77.32826534063761, 34.54808545327357], [-77.32796394252284, 34.54809381400486], [-77.32777925423109, 34.5480972041078], [-77.32776754883915, 34.54809750803685], [-77.32768275263481, 34.54822618643812], [-77.32770550857958, 34.54830971679145], [-77.32769950386351, 34.548384452107804], [-77.32785622696065, 34.548446068130005], [-77.32790743185676, 34.54846851001358], [-77.32795194159556, 34.54860965948205], [-77.3279978559096, 34.54867052682695], [-77.32815729887538, 34.54876216373861], [-77.32815810821486, 34.54876990153692], [-77.32834091165125, 34.54876648610003], [-77.3284752448989, 34.54872431982926], [-77.32847953591013, 34.548686575082726], [-77.32850464495951, 34.54859768675201], [-77.32874217915221, 34.54839456610782], [-77.32881364318946, 34.54835240905705]], [[-77.2165972063386, 34.61891933319171], [-77.21708791308762, 34.61874278819157], [-77.21715264622686, 34.618686822301036], [-77.21718226073018, 34.618494182346645], [-77.2174624283995, 34.61841845750581], [-77.21752292225507, 34.618364683455894], [-77.21752186586653, 34.61828532456597], [-77.21755679337271, 34.61817364211506], [-77.21758174428288, 34.618159012260634], [-77.21754058935994, 34.61815922466606], [-77.21753435821896, 34.61817673244139], [-77.21743887632785, 34.61827876945924], [-77.21735747147085, 34.618325072597884], [-77.21718513734369, 34.618478950576936], [-77.21717098855382, 34.61849329196343], [-77.21699600564314, 34.61866101366795], [-77.21658510720188, 34.61883079346733], [-77.21651632311449, 34.618891772954576], [-77.21649964428615, 34.61891162643222], [-77.21630960325544, 34.619002071541416], [-77.21611759854729, 34.619117129276646], [-77.21629753745678, 34.61935466749178], [-77.21626479389204, 34.619364440013655], [-77.21595592706973, 34.6193794985715], [-77.21591090149259, 34.61951850723082], [-77.21600046715642, 34.619568414178204], [-77.21608085749999, 34.61949065629576], [-77.21631093956454, 34.61937186567153], [-77.21631427781118, 34.61936956231888], [-77.21631533284231, 34.619368432415406], [-77.21631810155773, 34.61936624144878], [-77.2165806023987, 34.61915370428255], [-77.21658060601123, 34.61894896885023]], [[-77.4045150850345, 34.57659680985469], [-77.40466857679301, 34.576585920970274], [-77.40490908559359, 34.576596915112376], [-77.40520531502483, 34.576343043855914], [-77.40490907351158, 34.57619042868974], [-77.4046548940842, 34.576271823782605], [-77.40460047143615, 34.57600577126697], [-77.40451506906837, 34.57595720117195], [-77.40432566384504, 34.575841334089525], [-77.40431806760262, 34.5758382195869], [-77.40431608098993, 34.57583667229591], [-77.40413758579906, 34.575878092694246], [-77.40412107102584, 34.57593697138805], [-77.40408985261215, 34.5760458290285], [-77.40407193027133, 34.576082059481685], [-77.40406432814547, 34.57614430751244], [-77.40407802633314, 34.57650575603614], [-77.4041210865044, 34.57670181509627], [-77.40421059133391, 34.57681475025624]], [[-77.35265063791891, 34.55516234974244], [-77.35285982010718, 34.55517507282037], [-77.35301289492782, 34.55516264856134], [-77.35332264461522, 34.55511008727426], [-77.35346363155773, 34.555045335633004], [-77.35332487832113, 34.555012790952915], [-77.35303009662768, 34.55504623799982], [-77.35293235481282, 34.55500766225768], [-77.35262443217127, 34.5549736366271]], [[-77.36388142063353, 34.52965310726185], [-77.36377646557298, 34.52977558996021], [-77.36395670125106, 34.52968973940234], [-77.36398977076979, 34.529614118819566]], [[-77.31283652189403, 34.5493797580613], [-77.3130148603775, 34.5493573071206], [-77.31301695920008, 34.549355124531175], [-77.3130187713182, 34.549353587554506], [-77.31303209570359, 34.549114055226475], [-77.31306194429176, 34.54910257804619], [-77.31327321380073, 34.54891757750963], [-77.31302164612401, 34.549067852356], [-77.3129973905127, 34.549097152333246], [-77.31298985314614, 34.54911293029334], [-77.31273367032989, 34.549325509750666]], [[-77.30982020516834, 34.55164213523358], [-77.30996288206386, 34.5515942902845], [-77.31001824444378, 34.55156884002676], [-77.31012288224842, 34.55154063589366], [-77.3102158128354, 34.5515155873571], [-77.31045307679676, 34.551435653139905], [-77.31024210128324, 34.551450505520364], [-77.3102172982155, 34.55145231457096], [-77.31014968324828, 34.551399735659416], [-77.31012120223761, 34.55136444124728], [-77.310087563622, 34.55136572665825], [-77.31002963447507, 34.5513698548043], [-77.31002290826896, 34.55137019488738], [-77.31001783861723, 34.55137261161205], [-77.30982407499631, 34.55147732503797], [-77.30977179813311, 34.55150122067964], [-77.30968270217772, 34.55154625681048], [-77.30958638762183, 34.55165936052084], [-77.30942681717458, 34.551674114326694], [-77.30933876479253, 34.551718039144596], [-77.30928346299652, 34.551760263348086], [-77.30922714674898, 34.551816821136285], [-77.30912579856448, 34.55187101772266], [-77.30922511363295, 34.55190338263908], [-77.30936496182801, 34.55183668252557], [-77.30940340858353, 34.55181868467868], [-77.30942377713659, 34.55180355919046], [-77.30947740388423, 34.55178734101033], [-77.30967623206482, 34.55170312039109]], [[-77.22534317082653, 34.61162203086166], [-77.22535166983398, 34.6115974383672], [-77.2253501527078, 34.61158004069388], [-77.22534561256553, 34.61152797238701], [-77.22520883896631, 34.611502517755966], [-77.22498488744668, 34.611568487208174], [-77.2248916243717, 34.611591716519825], [-77.2247691940382, 34.61176887065939], [-77.22473975092022, 34.61178481761369], [-77.224509186829, 34.611866295384196], [-77.22442201711212, 34.61192721092138], [-77.22437321777849, 34.611991564824024], [-77.22430728235574, 34.61201541402985], [-77.22422385126528, 34.61207748849381], [-77.22420161036158, 34.61209585848625], [-77.22412890536661, 34.61218546534697], [-77.2241086115625, 34.61220635730899], [-77.22402690438965, 34.61225867959061], [-77.22401568290358, 34.61241348501997], [-77.2238620688577, 34.6123754353709], [-77.22381229379931, 34.61241864605697], [-77.22376514521709, 34.6125193358711], [-77.22359045562308, 34.6126056070674], [-77.2238703821291, 34.6126129650939], [-77.22399832837394, 34.6125226865185], [-77.22407357541246, 34.612464991758074], [-77.22415036727399, 34.61244533395851], [-77.22453754410287, 34.61229071040491], [-77.22459184225274, 34.612268585136334], [-77.22459195416866, 34.61224451177547], [-77.22465900196535, 34.61220592670908], [-77.22489945420213, 34.61203310403372], [-77.2249438152464, 34.611924229180204], [-77.22514340507337, 34.611927159285045], [-77.22525165476007, 34.61182522421003]], [[-77.30346987563676, 34.554534263874494], [-77.3035156469577, 34.55451234306847], [-77.30347065898708, 34.55450100821662], [-77.30343670790941, 34.55452367176105]], [[-77.39978699089981, 34.57924988539917], [-77.3997891617599, 34.57924757850171], [-77.39999605594973, 34.579018423328066], [-77.4002564510663, 34.57875557510927], [-77.40045234705497, 34.578595105447135], [-77.40057503543976, 34.57844221252317], [-77.40079021551364, 34.57825397780854], [-77.4008647610442, 34.57813084057147], [-77.40088981298926, 34.57790041950895], [-77.40061437973985, 34.57789716140919], [-77.4005750462297, 34.577926530160155], [-77.40055664529605, 34.57788293774938], [-77.40055295246016, 34.57786364128648], [-77.40018104615781, 34.577632425851014], [-77.40010527465435, 34.577585318277535], [-77.39978704134545, 34.577580586781224], [-77.39973400263779, 34.577614393495324], [-77.399444097167, 34.5776540994006], [-77.39939303225297, 34.577661093275466], [-77.39934265766585, 34.57766799251746], [-77.3991960268235, 34.577716476513345], [-77.39913206995564, 34.57771301512986], [-77.39906792759905, 34.57772760184461], [-77.39899902250116, 34.577737245050756], [-77.39897529666626, 34.577747294742714], [-77.39891135790135, 34.5777704070742], [-77.39890051928423, 34.5777721354252], [-77.39889213574662, 34.57777582625534], [-77.39887022811897, 34.57778802103397], [-77.39882440398148, 34.577818758281296], [-77.39880201501704, 34.577829758728555], [-77.39874254812543, 34.57784850784344], [-77.39870351167752, 34.5778629160784], [-77.39860767864431, 34.57793204709707], [-77.39860625789464, 34.57793360048378], [-77.3986050065189, 34.57793485569589], [-77.39855753428716, 34.577992353927755], [-77.39855824568721, 34.577994937572065], [-77.39855575278835, 34.57799483737284], [-77.39853059605475, 34.57802334758165], [-77.39850649938329, 34.57804620767598], [-77.39850265856307, 34.57804920477206], [-77.39840799861439, 34.57801657335234], [-77.39833283273055, 34.57807784666123], [-77.39831857976208, 34.57808969482842], [-77.39826843506646, 34.5781313788409], [-77.39821098649315, 34.57817566762601], [-77.39819586784637, 34.57818746091609], [-77.39817146232065, 34.57820727298527], [-77.39794884449479, 34.57838150063225], [-77.39785534615402, 34.57846516916897], [-77.39781696025075, 34.57848902925031], [-77.3977598986084, 34.57854042494616], [-77.39770242301461, 34.578576102916344], [-77.39761994605999, 34.578644986547204], [-77.39746360349739, 34.57873397538514], [-77.3974424594063, 34.57875806619495], [-77.39742293251035, 34.57877726833872], [-77.39724113413465, 34.57899475946219], [-77.39695214816386, 34.57923233691932], [-77.3968277569912, 34.579458137665725], [-77.39689076578611, 34.579814563046675], [-77.39725983463171, 34.580037092101186], [-77.39735868991417, 34.580091972344036], [-77.39742285602937, 34.58010033153838], [-77.39749350256565, 34.5800795037187], [-77.3976349536135, 34.57998297241973], [-77.3978168833292, 34.579933310545], [-77.39786778076096, 34.57989453862227], [-77.39801389704387, 34.57983657496244], [-77.3981012476975, 34.57979753259686], [-77.39821090807217, 34.57978588105662], [-77.39825534119797, 34.579729053414596], [-77.39830941524048, 34.57972319955658], [-77.39833480285725, 34.579697067694866], [-77.39835487349957, 34.57966681670663], [-77.39835867011365, 34.579662893979005], [-77.39836522882565, 34.579658255488496], [-77.39838873703223, 34.57964125674155], [-77.39840792328543, 34.579638173525524], [-77.39841154970712, 34.579636011043576], [-77.39843083469218, 34.57963116891827], [-77.39843254962051, 34.57963106975721], [-77.3984359622637, 34.579632258538155], [-77.39845717555365, 34.57963274934876], [-77.39848406625352, 34.57962408047758], [-77.39850642843547, 34.57961343631306], [-77.398552480656, 34.57958178421255], [-77.39856389108581, 34.57957474173367], [-77.39860493555283, 34.5795420540015], [-77.39861532374746, 34.579534288188235], [-77.3986458802245, 34.57952763809841], [-77.39865418787973, 34.57953353786003], [-77.39869128694725, 34.57952523013775], [-77.39870343996382, 34.57953049280005], [-77.3987154538044, 34.57952159259384], [-77.39880194507595, 34.579501130114494], [-77.3988054954448, 34.57949948135025], [-77.39881857835216, 34.57949376801565], [-77.39887778713998, 34.579460803872244], [-77.39890045078018, 34.57945518673684], [-77.39892063795646, 34.57945728922296], [-77.39899756344248, 34.579467942780425], [-77.39899865003675, 34.57946811362192], [-77.398998954078, 34.57946816142516], [-77.39907377981646, 34.579482459501335], [-77.39913869642982, 34.5794920167011], [-77.39919596034011, 34.57950548587908], [-77.39923023935108, 34.57950357607582], [-77.39939296726794, 34.57952826628187], [-77.39957526593737, 34.57947487712592]], [[-77.36371935025662, 34.530070970794235], [-77.36371880597069, 34.530060623937715], [-77.36371155997867, 34.530029065603145], [-77.36370345083287, 34.53006323402708], [-77.36369227281696, 34.530069415236525], [-77.36344827586439, 34.53026541146586]], [[-77.2427247159996, 34.59741292096763], [-77.24281150287666, 34.597331670396514], [-77.2428037963398, 34.5970356070224], [-77.24252849004162, 34.59732562959833], [-77.2425124339004, 34.59739619149836], [-77.24247666896409, 34.59745699399923], [-77.24255356770976, 34.597529909975144], [-77.24268881009296, 34.59746824145209]], [[-77.40656345007599, 34.57623146099618], [-77.40659015795524, 34.57614314150395], [-77.40648505987372, 34.57603558332955], [-77.406326001166, 34.576009871204334], [-77.40628805959845, 34.57600373507551], [-77.4061406925789, 34.5762080238321], [-77.40628807705076, 34.57638224847105], [-77.40629397803949, 34.576391826945205], [-77.40633255968373, 34.57639261601963], [-77.40648507859042, 34.57642173164031], [-77.40652938188894, 34.57636420384205]], [[-77.35566859756986, 34.55863575155658], [-77.35577009747144, 34.55873476308601], [-77.35590589112873, 34.558824667960835], [-77.3560019039396, 34.55887603138979], [-77.35606238928511, 34.55887078952916], [-77.35611937607126, 34.55885534457044], [-77.35616087910326, 34.55885628619356], [-77.35623028080649, 34.55877797197682], [-77.35622438238013, 34.55874105304987], [-77.35624240907467, 34.55858238685303], [-77.35623357172473, 34.558565222379194], [-77.35610130977952, 34.55841365231571], [-77.35607012093453, 34.55837647559864], [-77.35606685704445, 34.5583724356175], [-77.35606267561523, 34.558367110949966], [-77.35587631924356, 34.55818078207355], [-77.3557705019494, 34.55799505416377], [-77.35572922501653, 34.55793608650035], [-77.35566901632302, 34.55790550363591], [-77.35548980186425, 34.557842271954605], [-77.35547209061413, 34.55784428463795], [-77.35545877004282, 34.557842009493896], [-77.35531540462179, 34.5578917246423], [-77.35534887782117, 34.557976181496386], [-77.35540244295132, 34.55804803547941], [-77.35544085454431, 34.55822135125425], [-77.35544008612783, 34.55828910917878], [-77.35546672544358, 34.55846333343226]], [[-77.362895362997, 34.53140833314608], [-77.36316865686044, 34.53129318709276], [-77.3632958206184, 34.53104522690167], [-77.36338439600432, 34.53090143720309], [-77.36340469879116, 34.530845315459416], [-77.36346284715728, 34.530737151573646], [-77.36331077012, 34.53039094955932], [-77.36330594617634, 34.530373152978676], [-77.36268391195712, 34.530560574294014], [-77.36251891771545, 34.530688710866926], [-77.36249299106458, 34.5307160352442], [-77.36247869820315, 34.53073387536062], [-77.36249081193108, 34.53074880382426], [-77.3625140146257, 34.530903210502174], [-77.36253300609297, 34.53095824786824], [-77.36263662676737, 34.53095595201437], [-77.36253110894894, 34.53098295001396], [-77.36257253528358, 34.53121000910316], [-77.36250505286098, 34.531295269279546], [-77.36244976071603, 34.53144009688675], [-77.36234633953342, 34.531487415021914], [-77.36227078777185, 34.53160137252353], [-77.36221863914687, 34.531628221209864], [-77.36216744886708, 34.531717726355446], [-77.36234982466468, 34.53173173801811], [-77.36249499184329, 34.53173541941478], [-77.36256186377251, 34.531701196323006], [-77.36277609578627, 34.53159889469832]], [[-77.42927302760737, 34.68330432796168], [-77.42960234380507, 34.68321933250066], [-77.4296636148855, 34.68335358638134], [-77.42975878379502, 34.683368941769366], [-77.42989886328911, 34.68330184274302], [-77.42995372337458, 34.68326286416371], [-77.42992633285142, 34.683206901450724], [-77.429873799788, 34.68318305909348], [-77.42979453596766, 34.6831087475598], [-77.42968276970325, 34.68312239980517], [-77.4296284193397, 34.683129210487046], [-77.42961307821807, 34.68313072245066], [-77.42958461867826, 34.683133771912644], [-77.4292602263475, 34.683294416657134], [-77.4292576788647, 34.683297520768484], [-77.42897107779689, 34.68318643215376], [-77.42896321714137, 34.68319001887857], [-77.42893307131155, 34.68318542807921], [-77.42886694127492, 34.68321957720099], [-77.42880851140187, 34.68319462267746], [-77.42877782287988, 34.68320101320737], [-77.42875340865973, 34.683220921246374], [-77.4287246454894, 34.68320764380764], [-77.42870834372034, 34.6832116544753], [-77.4287157493547, 34.68323838935205], [-77.42873249286147, 34.683240022147956], [-77.42876642292052, 34.68324219922298], [-77.42879473853318, 34.68324222265997], [-77.42883949646097, 34.68325116091427], [-77.42889005099111, 34.68325736086795], [-77.42895623831389, 34.68323771879199], [-77.42899306046907, 34.683238811629735], [-77.42925281407, 34.6833018490809], [-77.42925789553905, 34.68330247225298], [-77.42926093540277, 34.68330284504452]], [[-77.22083017630641, 34.615474774187476], [-77.22082149990536, 34.6154637895866], [-77.22080763367397, 34.61547692213214], [-77.2208001479324, 34.615480361948634], [-77.22050876132244, 34.61553977430614], [-77.22036503366492, 34.615648734527845], [-77.22034684914497, 34.61568024862863], [-77.22030569562423, 34.615687868013225], [-77.22027746258028, 34.61570520539594], [-77.22012193041687, 34.6157803280982], [-77.22010002079087, 34.615833640519874], [-77.22004495476341, 34.61589209014353], [-77.21998421674583, 34.61605937378421], [-77.21996064461598, 34.61612111394268], [-77.21985710350864, 34.616206046549436], [-77.21999486829222, 34.616262982877075], [-77.22009412175248, 34.6161571591271], [-77.22016187887294, 34.61609206513263], [-77.22027330827378, 34.6159101228309], [-77.22044003895563, 34.61580739640737], [-77.22044854277561, 34.61580117958076], [-77.22058760326074, 34.61569925999132], [-77.22061690097416, 34.615635988499776], [-77.22080623306233, 34.615493923645296], [-77.22081621036904, 34.61548455298309], [-77.22081983411377, 34.61548191643231]], [[-77.33694469233933, 34.55022618871856], [-77.33699625436871, 34.55010019199935], [-77.33702130693226, 34.55006625752644], [-77.33707530798176, 34.55001447122589], [-77.3370712860718, 34.54998363590019], [-77.33708682712835, 34.549934427122565], [-77.33705028932863, 34.549904822418576], [-77.33701120789914, 34.54990841411964], [-77.33695187177119, 34.54991614418505], [-77.33678709579792, 34.54995727121844], [-77.33672188464374, 34.54996663623747], [-77.33662800441293, 34.550077610839345], [-77.3366664912736, 34.55011727962778]], [[-77.24486716343277, 34.595461743536525], [-77.24486860864452, 34.59546078789411], [-77.24487538685283, 34.59545699814068], [-77.24486861048169, 34.59545510519424], [-77.24486393819691, 34.59545887459631], [-77.24486249219206, 34.595460305960884], [-77.24485931249126, 34.59546301498846]], [[-77.29251609259187, 34.5597820920944], [-77.29255716309034, 34.559762215825984], [-77.29274786058429, 34.55961695018148], [-77.29275818677968, 34.559611682060165], [-77.29278597754828, 34.55960133666019], [-77.2928651911699, 34.5595182865199], [-77.29275011752969, 34.55952164729764], [-77.29265954948968, 34.559563626134576], [-77.29257099011242, 34.55963216878323], [-77.29245539563428, 34.55971263476073]], [[-77.35422436220061, 34.55297726048744], [-77.35440024039715, 34.553044060710725], [-77.35439217296019, 34.55310160391656], [-77.3543220107462, 34.55310325390112], [-77.35415610789174, 34.55301059951921], [-77.35411436452719, 34.55299309379597], [-77.3541577617579, 34.552938531527666]], [[-77.31399010564985, 34.548090000318645], [-77.31390196941062, 34.54820090256533], [-77.31399475274229, 34.54823419303994], [-77.31402276712987, 34.5482330189524], [-77.31402668688008, 34.548229607039225], [-77.31405739584258, 34.548122773182484], [-77.31422420595644, 34.548014106649845], [-77.31430623441587, 34.54794465087187], [-77.31441896898555, 34.54781000142614], [-77.31422733040327, 34.54788075005192], [-77.31417066707357, 34.54792950065179], [-77.31412236624303, 34.54797105628781]], [[-77.35231120483047, 34.55472155924633], [-77.35238471725688, 34.5545690823204], [-77.35183028379004, 34.55458722608214], [-77.3520034790148, 34.55485753203941], [-77.35214948869165, 34.5549024599625], [-77.3522887749037, 34.554810316329466]], [[-77.22596362535435, 34.610938699425915], [-77.22599299197631, 34.610972218788326], [-77.22604833655306, 34.61097317267989], [-77.2260981913173, 34.610978767437985], [-77.22624473284199, 34.61100170129068], [-77.22638769482865, 34.6110082542661], [-77.22645051437787, 34.61101170114002], [-77.22649957491335, 34.61098099928665], [-77.22649976089262, 34.61096633379407], [-77.22653282912381, 34.61086578395243], [-77.22653081106398, 34.610853177060456], [-77.22640735122775, 34.610817220408194], [-77.22625621018628, 34.610790607153355], [-77.22610102508759, 34.610869154499134], [-77.22604394525877, 34.61093050584727]], [[-77.2236146167879, 34.61287440185852], [-77.22349980867122, 34.61267431925661], [-77.22337546092706, 34.612830143133486], [-77.22331593216893, 34.61285082229246], [-77.22317311969826, 34.612902979387734], [-77.22312717925834, 34.6129380018174], [-77.2230673588487, 34.612984940561525], [-77.2232768920581, 34.61307120213501], [-77.22330446964244, 34.61305992243288]], [[-77.42764252934356, 34.6850096468496], [-77.42760388399374, 34.68499439159843], [-77.42753802374244, 34.68497317172084], [-77.42751652064658, 34.685030851746006], [-77.42757978231013, 34.68504144626169], [-77.42762880859765, 34.68505706344775], [-77.42770550566838, 34.685063575802275], [-77.4277075666306, 34.685063400234654], [-77.42770844393118, 34.68506234954656], [-77.42770546930221, 34.68505997115108]], [[-77.31540556193787, 34.54656271670689], [-77.31534915675206, 34.546624100823735], [-77.31543226334642, 34.54672427275373], [-77.3155280946877, 34.54660310408755], [-77.31560664513252, 34.54653383634578], [-77.31576680373323, 34.5464709249787], [-77.3158318966004, 34.546424367021814], [-77.31597065027455, 34.546321766796495], [-77.31603129303674, 34.54629231795123], [-77.31608240908395, 34.54622069346517], [-77.31615808157137, 34.546164614035135], [-77.31623199414275, 34.5461045005341], [-77.31635527897892, 34.54605909575902], [-77.31639011956999, 34.54602918588054], [-77.31654653297221, 34.54590922002379], [-77.31623735953923, 34.54587526904309], [-77.3161518982603, 34.54591316567753], [-77.31604014221553, 34.54591428283078], [-77.31595229133762, 34.5459945712482], [-77.31589686347326, 34.54603739331683], [-77.31583967058991, 34.54609229679511], [-77.31575628897056, 34.546145127831075], [-77.31575703255317, 34.54621772867459], [-77.31572719410663, 34.54627171186264], [-77.3155844056259, 34.54638209154993], [-77.31543682708185, 34.54652936902036]], [[-77.28145270747113, 34.56457712142738], [-77.28144310026147, 34.5645836839907], [-77.28146600280178, 34.56458894424998], [-77.28152398419016, 34.564553368793646]], [[-77.35404132487369, 34.55654575261706], [-77.35406191061671, 34.556577499062314], [-77.35409407626426, 34.556643821919565], [-77.35418949013909, 34.55684601360319], [-77.35422844942131, 34.55694336913658], [-77.35433474219003, 34.55709295222003], [-77.35437205949324, 34.55713497366193], [-77.35448760848192, 34.55729631075087], [-77.35450070823818, 34.557314601484485], [-77.35451228348838, 34.55732706538523], [-77.35453496687161, 34.55737489106323], [-77.35462975339986, 34.557581329078936], [-77.3547704918609, 34.55759496763462], [-77.35488134643673, 34.557607014354616], [-77.35493153920646, 34.55763715351733], [-77.35501962784845, 34.557678588491356], [-77.35507825352187, 34.557698630020724], [-77.3551760772455, 34.55776287381719], [-77.35518078620163, 34.55776593811535], [-77.35527515574309, 34.557799395316295], [-77.35545779570073, 34.55781236575092], [-77.35538977537938, 34.557625307547], [-77.35534689894791, 34.55755431002407], [-77.35527534779641, 34.557467495165085], [-77.35520429835985, 34.55730413120917], [-77.3551737968082, 34.557231845622496], [-77.35507863433305, 34.55704336124483], [-77.35507546866222, 34.55703713965909], [-77.35507392938973, 34.55703394548318], [-77.35506981624128, 34.55702502220079], [-77.35497929790137, 34.556835291469156], [-77.35488191329199, 34.556635862825885], [-77.35480885382802, 34.55651409274107], [-77.35468505922547, 34.55645853277936], [-77.35468288174067, 34.55645575619066], [-77.35468095185165, 34.55645368539624], [-77.35459959904566, 34.55634529810733], [-77.35448817481807, 34.55633417412745], [-77.35435598524863, 34.556358005929816], [-77.35414214294994, 34.5564795413941], [-77.35409417060416, 34.55648486304464], [-77.35406243997562, 34.55650853019207]], [[-77.35668109729532, 34.559380192063855], [-77.35671047288176, 34.5594959320077], [-77.3568227719725, 34.55951256511254], [-77.35684987821905, 34.55952182373241], [-77.35686940466098, 34.55951403132761], [-77.3568784478537, 34.5595337691852], [-77.35686453426517, 34.55955158540296], [-77.35686749928588, 34.55972850611342], [-77.35688671495518, 34.55974485508968], [-77.35697251947178, 34.55981242942782], [-77.35704664446871, 34.55987870434762], [-77.35710788367835, 34.55985930437674], [-77.35717178930946, 34.55983866517645], [-77.35724364133604, 34.55982197424618], [-77.35732238416854, 34.55980955658198], [-77.35736995368389, 34.559811413509], [-77.35738215565478, 34.559736577495855], [-77.35740266951366, 34.55967057893437], [-77.35742250674352, 34.55964811295398], [-77.35744080774334, 34.55945717420693], [-77.35744184679085, 34.55945266279487], [-77.35744081088505, 34.55945147588932], [-77.35735173694664, 34.55934941794429], [-77.35727725724614, 34.5592640811008], [-77.35724396124195, 34.55924419101332], [-77.35706846000183, 34.559270992071745], [-77.35685879373004, 34.55911204651256], [-77.35685380506764, 34.55910878116193], [-77.3568501100417, 34.55910678457802], [-77.35683930822398, 34.55910320784598], [-77.35665320478937, 34.55900264835691], [-77.3565836932852, 34.55901428133593], [-77.35651925271665, 34.55901656789437], [-77.3564562276313, 34.55902695517756], [-77.35643499344155, 34.55906691682932], [-77.35645615408885, 34.559157480548215], [-77.3564672350606, 34.55915647167112], [-77.35645872335984, 34.55916963878127], [-77.35646169532899, 34.55917519372217], [-77.35651600335522, 34.55930907507398], [-77.35661946960343, 34.55932261033581], [-77.35665302152805, 34.55932930125223], [-77.35669184053792, 34.559306533412844], [-77.35668722617312, 34.5593490206991]], [[-77.33083180869859, 34.54939387166038], [-77.33084698765916, 34.549362665553005], [-77.33068402808001, 34.549308538225326], [-77.33051656952915, 34.549410162499754], [-77.33053012447188, 34.54943651020494], [-77.33061554359746, 34.549518342792624], [-77.33059865431893, 34.54957021391871], [-77.33067772294756, 34.549579942805096], [-77.33099223744149, 34.5495138534163], [-77.33107127557363, 34.54953986089623], [-77.33115170524994, 34.54963456244845], [-77.33143533927581, 34.54962879285678], [-77.33133228479082, 34.54949798293974], [-77.33113694832292, 34.54944339110982], [-77.33109979714631, 34.54943250217621], [-77.331073966135, 34.54942402212244], [-77.33094340544518, 34.54938930024562]], [[-77.281268895661, 34.56474222297841], [-77.28127326460444, 34.56473919824264], [-77.28126849200844, 34.56473987449869], [-77.28126751508778, 34.56474099530771], [-77.2812670518607, 34.564741526759605]], [[-77.32466367206287, 34.5470607378151], [-77.32453092344389, 34.547012409758985], [-77.32459274674483, 34.54711437580166], [-77.32478988367218, 34.54713850450427]], [[-77.3346552846923, 34.549672019742324], [-77.33463332065402, 34.54965575840207], [-77.33460273060197, 34.54963188259676], [-77.33440322571698, 34.54958315621474], [-77.33444108830965, 34.54970281696779], [-77.33452247907177, 34.549739597616174], [-77.33459841684063, 34.549817945705385], [-77.33489419011126, 34.54982215753804]], [[-77.21238182919231, 34.62213164251102], [-77.21243815645018, 34.62212598320546], [-77.21251393632619, 34.62207437015002], [-77.2126125635842, 34.62202192342226], [-77.21262701063709, 34.62200690384362], [-77.2127240150864, 34.62191288842893], [-77.21298109494884, 34.62171603277186], [-77.21255638085839, 34.62178721200398], [-77.2124658303162, 34.62186348737802], [-77.21243176070456, 34.62188979391587], [-77.21235294666624, 34.621927441423324], [-77.21233375401687, 34.62195806719759], [-77.21237771921301, 34.6220033653171], [-77.21237412349365, 34.622110681373705], [-77.21237800121428, 34.62212122959011]], [[-77.32679823345929, 34.547572406190405], [-77.32671644889888, 34.547630621462574], [-77.32679616117028, 34.54766142664696], [-77.32696401537191, 34.547734135193025], [-77.32705297404004, 34.54774358471822], [-77.32701311094938, 34.54769700464553], [-77.32685216731483, 34.547611116409385]], [[-77.34607458100078, 34.53400114903249], [-77.34603409455912, 34.533958255701], [-77.3459585239219, 34.53391011478182], [-77.3458685278393, 34.53398208011074], [-77.34580259261847, 34.5340182828723], [-77.34580343371871, 34.534052651858204], [-77.34583060508325, 34.534065088344846], [-77.34583005067086, 34.53409374683886], [-77.3458301672483, 34.534110010037935], [-77.34584288976154, 34.53411613003864], [-77.3458425762225, 34.53413089298091], [-77.34584251147564, 34.53413883626307], [-77.34584738613671, 34.5341428963686], [-77.34584732248175, 34.53414579460767], [-77.3458472587395, 34.53414869681332], [-77.34584721768559, 34.5341505660039], [-77.3458471539152, 34.53415346948764], [-77.34584713345993, 34.53415440082152], [-77.34584709005753, 34.534156376945035], [-77.34584706963193, 34.53415730692756], [-77.34584505412309, 34.53415974531433], [-77.34584394397669, 34.53416158200567], [-77.34584454810263, 34.5341629018198], [-77.34584229891043, 34.53416262475913], [-77.34584139581023, 34.534162513513095], [-77.34583928092093, 34.534162252995976], [-77.34583710985135, 34.534161985558455], [-77.34583618276116, 34.53416187135726], [-77.34583282389244, 34.53416145760363], [-77.345830066612, 34.53416111795508], [-77.3458249580589, 34.534160488670786], [-77.34582425606759, 34.53416039859672], [-77.3458231995402, 34.53416027205203], [-77.34581783431395, 34.5341596111498], [-77.3458106351973, 34.53415872434374], [-77.34580817662128, 34.534157481365995], [-77.34580564504395, 34.53415623818995], [-77.34579541142783, 34.53415205628212], [-77.34575943530302, 34.534152519725865], [-77.34575650165745, 34.53415950080569], [-77.34573936224062, 34.534153678875484], [-77.34571993646577, 34.534148829815294], [-77.34569561342202, 34.53415250154872], [-77.34569292709185, 34.53416926740866], [-77.34571904304977, 34.534187205169296], [-77.34575554792076, 34.53420086426148], [-77.34578600534688, 34.534219511062496], [-77.34581148230595, 34.53423510867525], [-77.3458523747583, 34.53425766138516], [-77.34587614536487, 34.53427197804889], [-77.34589881689756, 34.53428374665893], [-77.34594920109174, 34.53431448590216], [-77.3460452119005, 34.53426268102216], [-77.34604626773924, 34.534261094187826], [-77.34604865104671, 34.53425751227456], [-77.34609024799806, 34.53419499545509], [-77.3461086872648, 34.53416728274378], [-77.34613757934105, 34.53407415366709], [-77.34613922240423, 34.534065538151154], [-77.3461188227252, 34.53404802076568]], [[-77.32055066212479, 34.546105653795415], [-77.3206653413067, 34.54605198687389], [-77.32055279162799, 34.54601447119995], [-77.32025071639674, 34.54611155429627]], [[-77.32265461220015, 34.546500614507345], [-77.32250511238846, 34.546473784551594], [-77.32236668882702, 34.54645540230524], [-77.32244125731444, 34.54653127001962], [-77.32247874302624, 34.54654134387241], [-77.32250307353571, 34.546561173850364]], [[-77.36940858250286, 34.52017302058754], [-77.36939836896187, 34.52018870110275], [-77.36934427369917, 34.520249731531116], [-77.36942848375477, 34.52029927343252], [-77.36950167643745, 34.520218320899815], [-77.36962709443013, 34.520195061946275], [-77.36968860568722, 34.52014687435283], [-77.36975793384609, 34.520094661491896], [-77.36982611095759, 34.52007300820129], [-77.36983220178678, 34.520064973282814], [-77.36982661714002, 34.52005078333922], [-77.36978017174982, 34.52004038542808], [-77.36973869343151, 34.52001724233186], [-77.36966090096745, 34.5200099941547], [-77.3696330807422, 34.519932249086175], [-77.36961674222017, 34.51992273090316], [-77.36960377532056, 34.51991427226624], [-77.36953611326297, 34.51988173912727], [-77.36951566374313, 34.51992697028639], [-77.36950021098974, 34.519969251446476], [-77.36946662978073, 34.52003639022436], [-77.36950228416723, 34.52005131205617], [-77.36943298730084, 34.5201015776026]], [[-77.33761674283471, 34.550536371641456], [-77.33767162734497, 34.550553142083224], [-77.3376285944802, 34.55052740672912], [-77.33760120585978, 34.550518863646104]], [[-77.21762492290478, 34.61758641748439], [-77.21761066408429, 34.61759717373786], [-77.21761579620298, 34.617629010142316], [-77.2177331664725, 34.617594967138686], [-77.21764914689722, 34.617563189117526]], [[-77.43987311365825, 34.74685951753659], [-77.43982828721644, 34.746852735300706], [-77.43977941574833, 34.74685072935065], [-77.4397527511149, 34.74688424816801], [-77.43973369888896, 34.74691865916539], [-77.43973676603603, 34.74696798722137], [-77.43973434314051, 34.74700352996048], [-77.43977385432345, 34.74702855612609], [-77.43982352099616, 34.747030892714335], [-77.43986484059222, 34.74699023658845], [-77.43987994333042, 34.74696974778718], [-77.43988174194251, 34.74694203676844], [-77.43989477768122, 34.74690505169357]], [[-77.24505980537072, 34.59530442279392], [-77.24517695696031, 34.595262374622216], [-77.2451913236905, 34.59525054073721], [-77.24520074202844, 34.595215385143796], [-77.24516380933497, 34.59524837285926], [-77.24504752096104, 34.595293495469974], [-77.24503805350332, 34.59530426238245]], [[-77.34163600135295, 34.53801850539601], [-77.34154512141731, 34.53803930966075], [-77.34152574614494, 34.53803436609586], [-77.34148634723655, 34.537955486189595], [-77.3413674027514, 34.53793473483824], [-77.34152110777039, 34.53789557696197], [-77.34154837700382, 34.5378984132707], [-77.34157231493967, 34.53789044385428], [-77.34164745119668, 34.53785802364663], [-77.34167483000746, 34.53784621006233], [-77.34173548694905, 34.53782732425158], [-77.34174637976368, 34.537823932723924], [-77.34176201769448, 34.53782655352708], [-77.34180629916177, 34.53783408338298], [-77.34181457935838, 34.53785214046825], [-77.34182493015145, 34.53786891764001], [-77.34182238733197, 34.537882246497986], [-77.341815995567, 34.53791492928005], [-77.3418000073477, 34.53793370761002], [-77.34174231791948, 34.53799974042968], [-77.34173669518572, 34.5380005248563]], [[-77.39633010599837, 34.510305939800645], [-77.3962434192201, 34.510279830415996], [-77.39619470055584, 34.51032548561125], [-77.39624204389666, 34.510341054445036]], [[-77.30495665331537, 34.55375718331938], [-77.30482597063273, 34.55381274551703], [-77.30475774701486, 34.55390753809927], [-77.3049113444184, 34.55385433118184]], [[-77.32200646185208, 34.54641589362468], [-77.32208234231962, 34.54644115117594], [-77.32203623697815, 34.54639337685105], [-77.32192241712337, 34.54636100434413], [-77.32191885372318, 34.54636000473196], [-77.32191482243978, 34.54636209553088], [-77.32191879684022, 34.54636244210974]], [[-77.32137355455176, 34.546220210805096], [-77.32135329131698, 34.54619796125041], [-77.32134015394702, 34.546195869239824], [-77.32133385676477, 34.54619223729486], [-77.32129657126762, 34.54618272235356], [-77.32113820742131, 34.546164191063866], [-77.32103704468294, 34.54624339696964], [-77.3211363292477, 34.54624463642095], [-77.32132772762067, 34.54620526627544], [-77.32133355212888, 34.54620528667793]], [[-77.28193403591243, 34.56430782025825], [-77.28191022377256, 34.56430391960005], [-77.28189616210419, 34.564314351716604], [-77.2818427295764, 34.5643150708901], [-77.2817898103184, 34.56433374156471], [-77.28176877034804, 34.564365346545095], [-77.28173180224961, 34.5643836180449], [-77.28178819414407, 34.564382619022005], [-77.28189067114765, 34.56434259962015], [-77.28191969793475, 34.56433528073725]], [[-77.33444457392284, 34.55052250634999], [-77.33451310412529, 34.55050607202793], [-77.33455872496751, 34.55043616462396], [-77.33453951242957, 34.55042311476939], [-77.33438880547786, 34.55039156985785], [-77.33432757744518, 34.550453586432845], [-77.33438631362738, 34.55049903902626]], [[-77.36391477776083, 34.52917261113014], [-77.3639083073507, 34.5291814059347], [-77.36380951394501, 34.52924557059952], [-77.36380609604544, 34.5292703876407], [-77.36392391491887, 34.5293015703619], [-77.36392443046297, 34.529301899583075], [-77.3639255014593, 34.529301341814396], [-77.36396719506243, 34.529198117931585], [-77.3639765412068, 34.529141360603404]], [[-77.26565529105898, 34.57796501129727], [-77.26561755185207, 34.577982302196254], [-77.2655938158739, 34.57800288102603], [-77.2655983987788, 34.578020169164986], [-77.26561239647752, 34.578004342319744], [-77.26567432288259, 34.57798193759305], [-77.26568037519247, 34.577976266168974]], [[-77.33384795328023, 34.54954328001629], [-77.33401468395566, 34.54959372911619], [-77.334123513154, 34.549503661170974], [-77.33401818079791, 34.54944294789308]], [[-77.33069943327166, 34.54864542339664], [-77.33068519981846, 34.54865147675902], [-77.33069916573108, 34.54865693962995], [-77.3307673396133, 34.54868254978847], [-77.33071543558056, 34.54864713039473]], [[-77.2139228929116, 34.62075523903533], [-77.21398023030684, 34.62071589068864], [-77.21396242459036, 34.620677229761206], [-77.21392520031982, 34.620711542630474]], [[-77.40489258425802, 34.50772301301435], [-77.40483721169745, 34.50765543272853], [-77.40479270371816, 34.50773743836241], [-77.40483488402417, 34.50775952250228]], [[-77.34814784416851, 34.55311730858549], [-77.34806793986898, 34.55311336252007], [-77.34797917400591, 34.55307506667002], [-77.3479402009724, 34.55306686943544], [-77.34792168106421, 34.55311856363892], [-77.3479508726555, 34.553145650826025], [-77.34806691295368, 34.5531579691511]], [[-77.43849679294014, 34.75053951681336], [-77.43849184148195, 34.75052455209846], [-77.43848019768488, 34.750533719549885], [-77.43842616522547, 34.75056251822639], [-77.43848558314582, 34.75054617672716]], [[-77.26990107598304, 34.57445304678942], [-77.26991384442115, 34.57448726046059], [-77.26993935830053, 34.574456056374515], [-77.2699461758835, 34.574423328810376]], [[-77.40187359352066, 34.576698353896646], [-77.4018277559884, 34.57669440064868], [-77.4017727422136, 34.57682158439025], [-77.40178467884441, 34.57683674252018], [-77.40195407788576, 34.576865200873996], [-77.4020354418034, 34.57680055344861], [-77.40195407840723, 34.57676851894426]], [[-77.4347855899323, 34.75391297635319], [-77.43482396654733, 34.753868470904585], [-77.43480333209149, 34.75385168327888], [-77.43479153748065, 34.75385714175061]], [[-77.36942009386402, 34.52030798394121], [-77.36933102777958, 34.520270191864036], [-77.36929301258311, 34.520326297710454], [-77.36932921298555, 34.52034985332044]], [[-77.21171258409103, 34.62261994414676], [-77.21165651469828, 34.6226229412342], [-77.21160806347103, 34.62261812031278], [-77.21156017432328, 34.622645809507226], [-77.21154237377868, 34.62268577730897], [-77.21148967276243, 34.62273282905018], [-77.21162180049375, 34.62275645093406], [-77.21164806946031, 34.62274724250936], [-77.21186197806094, 34.62266966059154]], [[-77.3599867395045, 34.54807431267107], [-77.35999288150018, 34.548076582552284], [-77.3600053412279, 34.54807843135315], [-77.36000229842914, 34.548085082531955], [-77.35999536277303, 34.548085982899806], [-77.35998663039933, 34.548079081049636], [-77.35998451054748, 34.548077787946184]], [[-77.33953745043858, 34.55088259303727], [-77.33953052889308, 34.55088734071127], [-77.33952471845728, 34.55088803716126], [-77.33952520644584, 34.55088435397928], [-77.33953074756586, 34.55087788452778]]]]}, "type": "Feature", "id": "demo7", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.18337339005524, 34.63806456131876], [-77.18565093306229, 34.638245079433304], [-77.18689680409523, 34.63881093323493], [-77.19205094558153, 34.63893607047069], [-77.1932833070197, 34.64017298789065], [-77.1957661004802, 34.641374330827304], [-77.19736051157322, 34.64177726028186], [-77.19771946831963, 34.64211374474167], [-77.19983027664777, 34.64257656813858], [-77.20020945983903, 34.64265259616357], [-77.20045859232499, 34.64274581185113], [-77.20361398387391, 34.642757217013255], [-77.20628821347435, 34.64331951247588], [-77.20706945957703, 34.64336633806168], [-77.20982028858467, 34.64336634750631], [-77.21002629937048, 34.64336634750251], [-77.2092711534609, 34.64220462105509], [-77.20857271004205, 34.64138228454226], [-77.20906173600346, 34.63987785557712], [-77.20906171456865, 34.639344199301426], [-77.20699611524684, 34.637486713083085], [-77.20754328600648, 34.63697303002492], [-77.20955788676083, 34.63391822390154], [-77.20931232722586, 34.631516775656465], [-77.20323444769551, 34.63341831025434], [-77.20323441340273, 34.63469310809048], [-77.20028582997317, 34.636008146500735], [-77.1988835019174, 34.634332321449605], [-77.19776191020118, 34.63432978682535], [-77.19630202836704, 34.63286989169778], [-77.19618571070286, 34.632401914384815], [-77.19561989894964, 34.631898372499904], [-77.19377871604456, 34.63036274816484], [-77.19093320907399, 34.627830120558016], [-77.18912826249873, 34.62622343785512], [-77.1892271402478, 34.624767523020274], [-77.19141993392914, 34.62417859655902], [-77.19400764477861, 34.62176725513636], [-77.1964497988855, 34.621568486304014], [-77.19998932487108, 34.62128267517039], [-77.20112774652861, 34.621034914446426], [-77.20366126084026, 34.61928938259122], [-77.20515949423259, 34.619737920620096], [-77.20618924480081, 34.61984718937536], [-77.20803875773622, 34.62059981949076], [-77.2080889200192, 34.62061548348851], [-77.20811056827564, 34.620618428333], [-77.20811306099074, 34.62060569464358], [-77.20810825308477, 34.62059914008349], [-77.20952791229779, 34.61924922768448], [-77.2107447201337, 34.61892824029039], [-77.21139408136332, 34.61790128742428], [-77.21211718369646, 34.61715124202299], [-77.21249926561492, 34.61663251493705], [-77.21384553159689, 34.615402362807274], [-77.21501245225234, 34.613609590138616], [-77.21501297616946, 34.6136087007784], [-77.21635872479928, 34.61182996330169], [-77.21723461487338, 34.6103250767839], [-77.21748806424624, 34.610033756172314], [-77.21768289296537, 34.60967213990306], [-77.21884203634399, 34.6082552188456], [-77.22014933690538, 34.60765827172346], [-77.22152328130865, 34.60469608445155], [-77.22205540588548, 34.60409411637596], [-77.22284227990414, 34.60291481124184], [-77.22318460798697, 34.60246883886508], [-77.22328664562627, 34.60200718080192], [-77.22341599915917, 34.60165013070208], [-77.2234579831698, 34.60107797717379], [-77.2235184693328, 34.600142375262855], [-77.22352018005803, 34.60013737835931], [-77.22394091322019, 34.59923065946424], [-77.22434277001662, 34.598364555135866], [-77.22478595896027, 34.59741191055457], [-77.22524828537605, 34.59641503522983], [-77.22579724963046, 34.59560633184557], [-77.22599344235503, 34.59480815922049], [-77.22611217852054, 34.594553788776324], [-77.22652549479014, 34.593778390205614], [-77.22682733020034, 34.59361744254536], [-77.2281607770325, 34.593746776934125], [-77.2284539375314, 34.593735550137744], [-77.23087406420697, 34.592236174055586], [-77.23186216728926, 34.59178057509099], [-77.233266201397, 34.5908926829966], [-77.23355339706801, 34.590655608091794], [-77.23362919184194, 34.59056814118259], [-77.23377058322859, 34.59042866652482], [-77.2349878558592, 34.589302186280996], [-77.23615070153875, 34.588881612847004], [-77.23793599095222, 34.58833041291645], [-77.24048691654937, 34.588935514335205], [-77.24156247249573, 34.58782855260004], [-77.241867175336, 34.587533936150315], [-77.2420126541868, 34.58745842807508], [-77.2421333331879, 34.58729872626136], [-77.2427373755218, 34.58657285266913], [-77.24331820567227, 34.58619533644812], [-77.24505956790165, 34.58581316695003], [-77.2461676968058, 34.58539268558084], [-77.24740073972394, 34.584568403895844], [-77.24797081008234, 34.584157159055145], [-77.24931624489116, 34.583643067868884], [-77.25010543965763, 34.5828446659671], [-77.25051603333337, 34.58247227539151], [-77.25074273233926, 34.58228272518083], [-77.25126892867493, 34.58158888385957], [-77.2516161378245, 34.58128976076183], [-77.25210689457526, 34.58086696684965], [-77.25232773641372, 34.5807295789022], [-77.25301381218627, 34.580286076484285], [-77.25381772522442, 34.579759614634746], [-77.25508659675502, 34.579061431376175], [-77.25649628298675, 34.57830882070546], [-77.25775235410637, 34.57800125880124], [-77.25809870066342, 34.577413181168026], [-77.25891215226116, 34.57686587465541], [-77.2591934531044, 34.57665403241862], [-77.25930315534036, 34.576565295505766], [-77.25959965606481, 34.57635009223272], [-77.26038238581042, 34.57570753888936], [-77.26080815835697, 34.575461247258026], [-77.26153985002662, 34.57500393716978], [-77.26247955707157, 34.57431891246997], [-77.26280713814323, 34.57401297382343], [-77.26379302475323, 34.573309764798026], [-77.26398484414419, 34.57316294914503], [-77.2640546992555, 34.57309098510027], [-77.26518044069401, 34.57231431268832], [-77.26568829872753, 34.57191506835695], [-77.26649825272847, 34.57147529649684], [-77.2667766916806, 34.57131591320704], [-77.26737236648864, 34.57078406713856], [-77.26753791579489, 34.5706143862428], [-77.2682855297167, 34.57015711510725], [-77.26898700006396, 34.56959132441515], [-77.26953937410613, 34.56918620019449], [-77.2697990996637, 34.56899921831215], [-77.26993199847179, 34.568917296327825], [-77.27065193630085, 34.56844334243719], [-77.27117657343395, 34.56807247331006], [-77.27187938829735, 34.56734090959969], [-77.27199586476996, 34.567194211076156], [-77.27207882494355, 34.567083669912684], [-77.27235754159008, 34.566946419230476], [-77.27325008684473, 34.5663501320345], [-77.27385704770867, 34.56603648757882], [-77.27435233277089, 34.565679420363836], [-77.2745414490055, 34.56550896269479], [-77.27490429774818, 34.56524309222512], [-77.27541628124825, 34.56479456057466], [-77.2756576507572, 34.564654016251275], [-77.27636551831047, 34.564190136259455], [-77.27689349344259, 34.56380846101624], [-77.27730642623187, 34.563528100270865], [-77.27802565403243, 34.56303964912628], [-77.27895701986012, 34.562416414842744], [-77.2795219264956, 34.562046169307784], [-77.28060532594787, 34.56139885500873], [-77.28196365512316, 34.560613934410675], [-77.28225259803867, 34.56042299061405], [-77.28242666292638, 34.560305531788764], [-77.28390266813429, 34.55932784092439], [-77.28501711232624, 34.558540160978325], [-77.28663684847622, 34.557377598195934], [-77.2872057447126, 34.557008305105775], [-77.28757889416357, 34.5567724993177], [-77.29045831618798, 34.55507949512108], [-77.29049990667473, 34.55505685938834], [-77.29051927302827, 34.55504219327046], [-77.2905576193778, 34.55502483698793], [-77.29209088621144, 34.55419798994211], [-77.29239284529108, 34.55396728295081], [-77.29285610012275, 34.55371599036748], [-77.29368474957893, 34.55321587000451], [-77.2942022859225, 34.55286112428274], [-77.29514580932128, 34.55240835490347], [-77.29527602664771, 34.552341458535444], [-77.29610410044631, 34.55179997047378], [-77.2968748382944, 34.5511468134557], [-77.29769659827697, 34.55058811436014], [-77.29875387332108, 34.54993228980431], [-77.2993907743705, 34.549425791278736], [-77.30006411368576, 34.549105362998304], [-77.30132141790807, 34.548378687014406], [-77.30283427240785, 34.54738832330253], [-77.30304312790018, 34.547229783338516], [-77.30325244862136, 34.547097048021826], [-77.30438671203261, 34.54646751303123], [-77.30484404016764, 34.546199802025505], [-77.30491699676494, 34.54615501009904], [-77.30501534567598, 34.546096059481286], [-77.30643650753088, 34.54526382507266], [-77.30675702029629, 34.545063740161304], [-77.30719730907558, 34.544803615983255], [-77.30803113100663, 34.5442345541061], [-77.30852713319742, 34.54393841426764], [-77.30962471479998, 34.54324783927847], [-77.3103480961349, 34.54283785801124], [-77.31141472648926, 34.54223962308649], [-77.3128078705765, 34.54144054806097], [-77.31420381948719, 34.5407408816011], [-77.31550879984135, 34.53998862137358], [-77.3159890259896, 34.53971262643691], [-77.31610109522059, 34.539677488464164], [-77.31632797943277, 34.53957552559574], [-77.31757479734723, 34.53905194518492], [-77.3182993399634, 34.53876067586793], [-77.31915948093919, 34.53843666924898], [-77.31938594397914, 34.53829617249843], [-77.31963910540247, 34.538120623157894], [-77.3200885389387, 34.537644632850125], [-77.3215680667781, 34.53686421963579], [-77.32200026881105, 34.53658826209465], [-77.32234743552523, 34.53640645180821], [-77.32341461540986, 34.5359401404478], [-77.3240959099464, 34.535621461337094], [-77.3242583366164, 34.53549838518671], [-77.32552498747395, 34.53481589341871], [-77.32602873291125, 34.53457535493894], [-77.32664720610191, 34.53417579657511], [-77.32695798682937, 34.53403420473505], [-77.32711580998824, 34.53393067917004], [-77.32728101061875, 34.533694671055876], [-77.32736479316239, 34.53358302682787], [-77.32751880121731, 34.53348205928537], [-77.32776813227296, 34.53343505038003], [-77.32785294463805, 34.533268044613294], [-77.32791711562601, 34.533234222870554], [-77.32817475595705, 34.53313622855113], [-77.32848435982315, 34.53293246546107], [-77.32854459807547, 34.5328194946264], [-77.32871620549746, 34.53263244109451], [-77.32895788693082, 34.532374765247724], [-77.329164510071, 34.53212770334037], [-77.32919495648038, 34.532095870673885], [-77.32940959306055, 34.53199863453076], [-77.32951835116067, 34.531898741138015], [-77.32962115713171, 34.53185324268634], [-77.3296683168196, 34.53178300571176], [-77.32962995212887, 34.531721489241455], [-77.32954116650819, 34.531565872002034], [-77.329817679494, 34.531579479971896], [-77.32991815530198, 34.53158623480242], [-77.3300033380167, 34.53154251929749], [-77.33031406133227, 34.531441305582405], [-77.33059897019024, 34.53133573969127], [-77.3308824368193, 34.53125664970898], [-77.33110380030634, 34.53124048351982], [-77.33140631195364, 34.531232052518384], [-77.3315617509749, 34.531225392427054], [-77.33168652853936, 34.531248031588646], [-77.33184714476275, 34.531250812489965], [-77.331888390474, 34.531261175866256], [-77.33211245268507, 34.531291426519786], [-77.33225690963097, 34.53141083735388], [-77.33227705275446, 34.53142797271238], [-77.33240728579209, 34.53155102614617], [-77.33264753191816, 34.53159948759854], [-77.3326654048289, 34.53160819492522], [-77.33268048151712, 34.53160409348368], [-77.33273284475023, 34.53158722070551], [-77.33283462988055, 34.53155494807475], [-77.33278072693902, 34.531509836185045], [-77.33272076424129, 34.53146654972262], [-77.33266990332118, 34.53141442245129], [-77.33256970030706, 34.53142815818855], [-77.33260131039779, 34.53136131763133], [-77.33258206010117, 34.5313077551595], [-77.33252795204811, 34.531218419541446], [-77.33244663293877, 34.531138742009816], [-77.33247197394525, 34.53101944572758], [-77.33247845300757, 34.530889350773904], [-77.33249177062976, 34.53076696291049], [-77.33246334832899, 34.530646706663035], [-77.33242475544122, 34.530572524375415], [-77.33233538199644, 34.53042029059428], [-77.33232610451509, 34.530405834363584], [-77.33230147543291, 34.530376183284766], [-77.33220082449631, 34.53025928947265], [-77.33213679473576, 34.53020402843212], [-77.33213657858656, 34.53009717469793], [-77.33230907651873, 34.53004883564191], [-77.33256159271184, 34.52989813244861], [-77.3326453954575, 34.529848118473396], [-77.33270712101566, 34.52981128009691], [-77.33278423603961, 34.529817926703075], [-77.33277164416592, 34.52986792947186], [-77.33285867635757, 34.529951975683154], [-77.33288892029414, 34.52998005247827], [-77.3328992099399, 34.529991144591804], [-77.33294996258601, 34.53005453348823], [-77.33297331000361, 34.530083747897706], [-77.33301093007236, 34.530129071066895], [-77.3330633927538, 34.530193202833615], [-77.3330903701103, 34.5302110584142], [-77.33315344646056, 34.53026257617733], [-77.33321331085172, 34.530294053791216], [-77.33324472081452, 34.5303141859398], [-77.33325380125267, 34.53034943562285], [-77.33328265586783, 34.530382516920334], [-77.3332941211237, 34.530397474706255], [-77.33331514609674, 34.53040181867691], [-77.33334050410073, 34.530435011330916], [-77.33337064611254, 34.53046024286964], [-77.33345573269247, 34.53049112068586], [-77.33339492088793, 34.530441878257015], [-77.33341597566117, 34.530387319960475], [-77.33338159534631, 34.53034775352102], [-77.3333724681423, 34.53033820280619], [-77.33335013976495, 34.53033558273956], [-77.3333592182284, 34.53031991809432], [-77.3333489266563, 34.53027455309235], [-77.33332692524795, 34.53017998734978], [-77.33332192483454, 34.53013511713722], [-77.33329042992092, 34.53004755078014], [-77.33328708638923, 34.530040812039786], [-77.33328556557517, 34.53003884785669], [-77.33322933656243, 34.52996384004891], [-77.33319623967168, 34.52992928422499], [-77.33312059434381, 34.52983110362837], [-77.3331262018088, 34.5298169471045], [-77.33330537048948, 34.529672667316134], [-77.3334987207296, 34.529529319672164], [-77.33396927361214, 34.529695715625685], [-77.33409418190831, 34.52979219783521], [-77.33409277045934, 34.52992277361631], [-77.33427290762066, 34.52999776880926], [-77.33443370833429, 34.53001798026425], [-77.33449562385621, 34.53000383615774], [-77.33456725609436, 34.52991694449275], [-77.3345731961329, 34.52985368696122], [-77.33457576275637, 34.529794448061025], [-77.33482413408272, 34.52972260175811], [-77.3350653341704, 34.52967996027923], [-77.33527578464279, 34.529863553963196], [-77.3354545199229, 34.529824089104125], [-77.33561751085958, 34.52980488297743], [-77.33583462776808, 34.52944075049324], [-77.33577411087589, 34.529436165899575], [-77.3358341014664, 34.529413528911455], [-77.33585646139089, 34.529417935050404], [-77.33586080380933, 34.52942094639747], [-77.33586745047924, 34.52942274238159], [-77.33599709273942, 34.52949289221881], [-77.33621787754836, 34.52963344960683], [-77.33624353501062, 34.529653205127445], [-77.33636075169194, 34.52984143059115], [-77.33643224119061, 34.52995392469555], [-77.33662744002572, 34.53002532974408], [-77.3367738288837, 34.53017814547601], [-77.33701591580827, 34.53020027783486], [-77.33708264399877, 34.530227240370934], [-77.33714905109906, 34.53037691912537], [-77.33718120589148, 34.53045788189769], [-77.33730926816409, 34.530628611972986], [-77.33729003497668, 34.53068704661663], [-77.33739559752392, 34.53075501730116], [-77.33776745496046, 34.530851699587096], [-77.33778636021819, 34.530831408224444], [-77.33780083845612, 34.53084911040011], [-77.33818275158916, 34.53066468279374], [-77.33846701335429, 34.530827749408665], [-77.33861772743852, 34.53098571619452], [-77.33879662096822, 34.5310610348876], [-77.33895581393374, 34.531183227617646], [-77.33907516916503, 34.531332952933994], [-77.33923913648279, 34.53138596839304], [-77.33928433181357, 34.531590233363374], [-77.33928924263087, 34.53162357954307], [-77.33932074331854, 34.53162982043149], [-77.33933798240693, 34.531631223925686], [-77.33958197425366, 34.53173514493388], [-77.33972708406851, 34.53177965928461], [-77.33977387092261, 34.53179868632498], [-77.33977833958754, 34.531830747782585], [-77.34002687243408, 34.53200711089341], [-77.34005728020594, 34.53203789229759], [-77.34011044304398, 34.53217647272972], [-77.34020820160487, 34.53216503981068], [-77.34016615422577, 34.53223189368063], [-77.34030414394483, 34.53228752071711], [-77.34042103007317, 34.53219522964649], [-77.34038026110092, 34.532123796841496], [-77.34050508133814, 34.53208560978869], [-77.34056455924045, 34.53213674971343], [-77.34063220276198, 34.532164851590395], [-77.34068973550727, 34.53227446404873], [-77.34082583044574, 34.53238181616166], [-77.34084694805344, 34.532405764533046], [-77.34089013511155, 34.5324093230385], [-77.34116961233143, 34.532577179499036], [-77.34121726707812, 34.53260824910449], [-77.34127635281025, 34.53268280352914], [-77.34152877389502, 34.532855233091084], [-77.34166417394883, 34.53288699914832], [-77.34175170319673, 34.53292789799419], [-77.34184696646702, 34.532969372572936], [-77.34196427009431, 34.53300840287099], [-77.34205408125813, 34.53300097228349], [-77.34232861151698, 34.53314489975064], [-77.34231239878201, 34.53322767801379], [-77.34243996113155, 34.533289353567795], [-77.34262069582083, 34.5333476971902], [-77.34278193131982, 34.53335509401125], [-77.3428295750681, 34.53341615034645], [-77.3429376115635, 34.533546921600994], [-77.34282178082162, 34.53375366854831], [-77.34279840225828, 34.53379782427154], [-77.3427565209758, 34.53381779426358], [-77.34268923152939, 34.53390792045613], [-77.34252805950682, 34.53409548156384], [-77.34248007549218, 34.534139651681755], [-77.34241842152177, 34.534221905492714], [-77.34219686658625, 34.534280461765974], [-77.3420258415375, 34.53422335402935], [-77.34172742744707, 34.53427004276327], [-77.34123886131111, 34.534304995329805], [-77.34077480663612, 34.53459252157429], [-77.34090177926136, 34.53486169161146], [-77.34047094064957, 34.53512586744283], [-77.33994793692554, 34.53539093180979], [-77.33964374405653, 34.53538270736509], [-77.33950115785458, 34.53535469628654], [-77.33925284298286, 34.53531131558347], [-77.33923827258624, 34.53530318088681], [-77.33923983286462, 34.53529460146332], [-77.33909727551134, 34.53517759375474], [-77.33888630765891, 34.53512248917029], [-77.33886454857357, 34.53512729888519], [-77.33885881309135, 34.535116673367895], [-77.3388536873068, 34.53511368032153], [-77.33866929757518, 34.53508301363486], [-77.33858467335983, 34.53508274501028], [-77.33847311998932, 34.535078771541706], [-77.33838445550735, 34.53512656466706], [-77.33834740171181, 34.535186500555625], [-77.3383631712233, 34.53525032644267], [-77.33836789738612, 34.535305961600436], [-77.3384147205057, 34.53538970270017], [-77.33840076234762, 34.535423643414056], [-77.33846388852919, 34.53547763755317], [-77.3386946151212, 34.53548223539693], [-77.33881389359368, 34.53583244227408], [-77.33881345210304, 34.535853920960946], [-77.3386944584577, 34.53596502352662], [-77.33850299822642, 34.53617788994212], [-77.33813847040636, 34.53644063899028], [-77.33812222910893, 34.53648932009385], [-77.33804644752449, 34.536552746742046], [-77.33726936190531, 34.53706771825288], [-77.33724919476037, 34.53707677017847], [-77.3371347458214, 34.537145021230245], [-77.33680853702973, 34.53734017369161], [-77.33683632358519, 34.537362367528424], [-77.33682889769942, 34.53737640427733], [-77.33684979191926, 34.537372138290486], [-77.33710464559513, 34.53756859565897], [-77.33712783198234, 34.53763291543306], [-77.33710560644741, 34.537733208400645], [-77.33713234505916, 34.537809429399566], [-77.33712851909686, 34.53786856598806], [-77.33713066706501, 34.53787210246932], [-77.33719660527946, 34.537922596348196], [-77.3372287377704, 34.53796013514449], [-77.33733911824281, 34.53795573548079], [-77.33735725899982, 34.53802190000629], [-77.33736940498815, 34.53811004285609], [-77.33750776774055, 34.538245071376316], [-77.33754449450693, 34.538283027291996], [-77.33761220260794, 34.53835319083701], [-77.33774489361235, 34.538455785253554], [-77.33773826634194, 34.53853802452702], [-77.33777397456062, 34.53859208505938], [-77.33784622479095, 34.53868602911855], [-77.33787068503601, 34.5387602539872], [-77.3378711981982, 34.5388048462637], [-77.33790408635092, 34.53886715556166], [-77.33793153620364, 34.53891857703256], [-77.33794333450362, 34.53894662604015], [-77.33798946403112, 34.53901438698972], [-77.33799660027238, 34.53902699582322], [-77.33800034645027, 34.53903108941281], [-77.33805489822902, 34.53910355850215], [-77.33812015551172, 34.539136266732754], [-77.33810121054171, 34.5392115254721], [-77.33813844374411, 34.53928168780481], [-77.33817761855799, 34.53936565829245], [-77.33818291410235, 34.539372058284], [-77.33820558941754, 34.53947222425209], [-77.3382056701612, 34.53951078261859], [-77.33821508650038, 34.53961224856245], [-77.33820256499547, 34.53971584609533], [-77.33818918398273, 34.539860791535816], [-77.33824222046385, 34.53992718022796], [-77.33825378331514, 34.54003101129936], [-77.33820864089908, 34.5401028107716], [-77.33821437561413, 34.54018957946725], [-77.33831620929851, 34.54033215761752], [-77.33835066683804, 34.54036972045413], [-77.33840572798489, 34.54052748624798], [-77.33841269920455, 34.54056309769792], [-77.33843340573642, 34.540615260661305], [-77.33843617579134, 34.5406821300123], [-77.33840731752807, 34.540767618378396], [-77.33841771922454, 34.540807193270666], [-77.33840319312759, 34.54101207310093], [-77.33842404637294, 34.54105110090367], [-77.33837484535367, 34.54108355774839], [-77.33836661448903, 34.54128108030767], [-77.33836995939909, 34.54130369759456], [-77.33838044317181, 34.54133468543686], [-77.33841076806024, 34.54142023716601], [-77.33843399890463, 34.541471437627465], [-77.33844973517706, 34.54153704150044], [-77.33850082457703, 34.54164169075051], [-77.33851862593795, 34.54177195101765], [-77.33859551909217, 34.54183191514765], [-77.33863762912094, 34.541877244458504], [-77.33870680063032, 34.5419446843407], [-77.33872380156993, 34.54197620291271], [-77.33872996812039, 34.54198637268881], [-77.33874310434044, 34.54200803668793], [-77.33879058329103, 34.54216701695943], [-77.33882047136329, 34.542218173630815], [-77.3389123743957, 34.54231621594526], [-77.33891773430196, 34.542326593695094], [-77.3389298016562, 34.54234732320421], [-77.33891247852202, 34.542449758352575], [-77.338997961969, 34.542492803521526], [-77.339022741414, 34.54255630864358], [-77.33903273134055, 34.542587168092794], [-77.33903654634818, 34.54264768792477], [-77.33900670541743, 34.54268102394623], [-77.33896886992403, 34.54275614809785], [-77.33893954175015, 34.542848867765926], [-77.33892198769792, 34.54293802623103], [-77.33899520865856, 34.542977558590096], [-77.33907427896408, 34.543029908848354], [-77.33907832641523, 34.54303534723453], [-77.33908007597803, 34.54303769803999], [-77.33908448969521, 34.54304362854752], [-77.33913578287346, 34.543112548877225], [-77.33921794383077, 34.54314027776204], [-77.33926733039527, 34.543170104604336], [-77.33931002649373, 34.54315341819601], [-77.33936581780014, 34.5431554017965], [-77.3394059217936, 34.54314952165959], [-77.3394639525229, 34.543155945726255], [-77.33947239101713, 34.54315957088022], [-77.33947407025786, 34.54316464387108], [-77.3395138080892, 34.54318857244723], [-77.33952622742633, 34.54319656241965], [-77.33955144688105, 34.54321471925631], [-77.33955214984785, 34.5432199005432], [-77.33956045052106, 34.54322725820274], [-77.33957765263386, 34.54326094154921], [-77.3396569184659, 34.54329987720011], [-77.33968295142547, 34.54331821378393], [-77.33970439462848, 34.54340639635212], [-77.3398494909972, 34.54346084996232], [-77.33991902805249, 34.54348535976866], [-77.33997228763275, 34.5435214156945], [-77.34008259655326, 34.54360295491448], [-77.34010983995091, 34.543624040111304], [-77.34022026805958, 34.543720709457375], [-77.34022965495257, 34.543729215592315], [-77.34022934591266, 34.543733274272384], [-77.34023569904826, 34.54373691266462], [-77.34037179624582, 34.54386684566791], [-77.34053014084297, 34.543930812736846], [-77.3406219056398, 34.54401314691506], [-77.34073920261899, 34.54407157213914], [-77.34092676854713, 34.54406461425557], [-77.3410140555074, 34.5440323161358], [-77.34105128445582, 34.54407681284811], [-77.3411114165975, 34.54406637813836], [-77.34113535178327, 34.54408857738201], [-77.34114242716224, 34.54412853061176], [-77.34120724561686, 34.54416674479889], [-77.3412299919913, 34.54418295515275], [-77.34126189462535, 34.54422774186483], [-77.34118870151943, 34.54432572167005], [-77.34139766943025, 34.544420925652275], [-77.34155297733065, 34.54442128700927], [-77.34174125266156, 34.544491058414735], [-77.34174644700212, 34.544516261756925], [-77.34178838244749, 34.544502376569895], [-77.34183479088192, 34.54450660393563], [-77.34204024446433, 34.54453533385653], [-77.34217713766509, 34.544668624811116], [-77.34217947366675, 34.54467134352535], [-77.34218044773692, 34.544672699267224], [-77.34229822790962, 34.54482284316016], [-77.34256034029998, 34.54507540105686], [-77.34258226886138, 34.54509064001759], [-77.3425876367557, 34.54510376167981], [-77.34260631951874, 34.54513054010008], [-77.34268363396106, 34.54521236151443], [-77.3427073622505, 34.545237344775245], [-77.34275195524906, 34.5452782595801], [-77.34281294347004, 34.54531616914003], [-77.34286831761288, 34.545356918226915], [-77.34294479457414, 34.54542812387091], [-77.3430915660881, 34.54552090627977], [-77.3431513387817, 34.545625487281804], [-77.3433309842119, 34.545705802653394], [-77.34334414554158, 34.54572096431171], [-77.343382335715, 34.545723895697094], [-77.34346322432131, 34.54575154743932], [-77.34352634012076, 34.545746711987185], [-77.34354340943507, 34.54576192835634], [-77.34358464884964, 34.54578035583294], [-77.34360578933185, 34.54580331207761], [-77.34359749103254, 34.54581535288848], [-77.34362259494489, 34.54582883546918], [-77.34363822450115, 34.545860495736264], [-77.3436890556678, 34.54590593835521], [-77.34368262048628, 34.545925515573245], [-77.34369189163314, 34.545940566456764], [-77.34371791382104, 34.54595152505544], [-77.34378793204775, 34.54610925251769], [-77.34382599781823, 34.546149708021396], [-77.34408360807704, 34.54634636864556], [-77.34408878741064, 34.54635672141997], [-77.3440896166932, 34.546363703703705], [-77.34410082566764, 34.546371483366734], [-77.3442750838863, 34.54670608062064], [-77.34448629575107, 34.54668070631665], [-77.34458734217515, 34.54677463453066], [-77.3446018351294, 34.54694156877265], [-77.34486907513256, 34.54710672148153], [-77.34494104794888, 34.547167629393215], [-77.34495386642996, 34.54721154168689], [-77.34507415004751, 34.54730827797885], [-77.34508140791046, 34.5473156019537], [-77.34510776851862, 34.54734162057065], [-77.34516212048908, 34.54742639940514], [-77.34518700393848, 34.54746424557684], [-77.34525186784853, 34.547532328647996], [-77.34530385516108, 34.547617189203564], [-77.3453288615382, 34.54764722937811], [-77.34538190660959, 34.547799487378114], [-77.3455023332861, 34.54786709085434], [-77.3455596660706, 34.547906350437586], [-77.34563498483455, 34.54794403994627], [-77.34565563010085, 34.54796744517019], [-77.34568861293931, 34.54805014345201], [-77.34571367403692, 34.54808150379938], [-77.34578977349315, 34.54817032890454], [-77.34585601386186, 34.54830584409511], [-77.34587186267416, 34.548394203154814], [-77.34601587332732, 34.54845260437205], [-77.3460694534063, 34.54851995469503], [-77.34610838052909, 34.54857377974875], [-77.34614460604611, 34.548670556045764], [-77.34620661281653, 34.548694152213834], [-77.34624270100285, 34.548739847836664], [-77.3462687639687, 34.54881797319091], [-77.34639769365185, 34.54892093550031], [-77.34642879639807, 34.5489382488008], [-77.34644008959543, 34.54895626728329], [-77.34647570063046, 34.54900093516329], [-77.34658605914686, 34.5491800847659], [-77.34665859248301, 34.54924709561067], [-77.34678022399589, 34.54935863620695], [-77.346814602931, 34.54939202126171], [-77.34693948715284, 34.54951728291375], [-77.34699434392799, 34.549610979244406], [-77.34706913310235, 34.54966054935971], [-77.34716307403636, 34.54978263306655], [-77.34719610360034, 34.54980583984273], [-77.34720777077173, 34.5498250903092], [-77.34722243952505, 34.549861124829306], [-77.34728729992167, 34.54993605720698], [-77.34730914697549, 34.54996166755947], [-77.3474133416081, 34.55004033131858], [-77.34743997369995, 34.55010404064737], [-77.34753614485369, 34.55026748170436], [-77.34754014926813, 34.55026960455508], [-77.34754434729321, 34.55027526899545], [-77.34769059627916, 34.55039713389829], [-77.34773068948684, 34.55048430901144], [-77.34773565233293, 34.550492633713844], [-77.34780230090998, 34.550553975199094], [-77.34785255008799, 34.55066454465863], [-77.34789460248649, 34.55070554372262], [-77.3479026356118, 34.55071941907387], [-77.34791291570934, 34.55076411371703], [-77.34792534553856, 34.550780047773095], [-77.34795261064077, 34.55080228657168], [-77.34798246114262, 34.550815311774954], [-77.34802184639732, 34.5508519246535], [-77.34803932561334, 34.55085735733043], [-77.34811919031121, 34.55088718899192], [-77.34813836755146, 34.55091528815561], [-77.34822966292163, 34.55095470708489], [-77.34824783842282, 34.55098110265003], [-77.34826730169311, 34.551019145547635], [-77.3482851493703, 34.551033404923096], [-77.34830900920721, 34.55107296730757], [-77.34830979307307, 34.55107423640184], [-77.34831006882627, 34.55107489028348], [-77.34831110009317, 34.5510784095657], [-77.34831437871787, 34.55108887783342], [-77.34831058176519, 34.55110092642079], [-77.34831008796344, 34.551104540499225], [-77.3483095365173, 34.55110487588327], [-77.34830162247869, 34.551108182915215], [-77.34830202392472, 34.55111114644366], [-77.34830928655784, 34.55111256249214], [-77.34831030895035, 34.551112777859956], [-77.34831143481526, 34.55111225336915], [-77.34831125415187, 34.551105108012656], [-77.34832831409781, 34.55110634047344], [-77.34833488427864, 34.55111120030932], [-77.34833777230911, 34.551114269299276], [-77.34833943956788, 34.55111587426923], [-77.34834074552492, 34.551119459675796], [-77.3483355486181, 34.55112408479902], [-77.34834338366335, 34.55112510859817], [-77.34834677649228, 34.55112759073876], [-77.34834850310874, 34.55112987135372], [-77.3483506545879, 34.55113469229229], [-77.34835272319825, 34.55113691474495], [-77.3483550869136, 34.55113888124553], [-77.34835859865893, 34.55114367181552], [-77.34835863015778, 34.55114371540396], [-77.34835864046644, 34.55114373506469], [-77.34835867306411, 34.551143792044286], [-77.34836280611584, 34.551150765145216], [-77.34836452250491, 34.55115436956996], [-77.34837116987089, 34.55115721228216], [-77.34838273913, 34.551164338705], [-77.34838704747288, 34.55116749705826], [-77.34839467393724, 34.5511767515394], [-77.34838238233847, 34.551179838805375], [-77.3483707040367, 34.5511878818798], [-77.34838035986674, 34.551200833975294], [-77.34838126186635, 34.55120204389592], [-77.34839130806985, 34.55121551962244], [-77.34840565701576, 34.551234766932595], [-77.34841000284231, 34.55124063799899], [-77.34841182305593, 34.551243170179006], [-77.34841645080252, 34.5512494453933], [-77.34843846964787, 34.5512794395438], [-77.34844927815695, 34.551298985683154], [-77.34848537623358, 34.55134508342601], [-77.34849124748028, 34.55135415161398], [-77.34850079036481, 34.55136609682838], [-77.34857132746858, 34.55142027776826], [-77.34862382875073, 34.55145748389652], [-77.34869382844782, 34.55150837875267], [-77.34874329621343, 34.55153152547626], [-77.34877412775914, 34.551558266478466], [-77.34887525945118, 34.551659006009615], [-77.34888413258852, 34.551666327712745], [-77.34888647093473, 34.55166787930522], [-77.34900158889286, 34.55177035581014], [-77.34902735953717, 34.55179932127608], [-77.34907843623701, 34.55185684154934], [-77.34916210177983, 34.55193873449882], [-77.34919107149778, 34.551987909919774], [-77.3492218423279, 34.55201421448267], [-77.34925689150742, 34.55209310269241], [-77.34926012618897, 34.55210038328401], [-77.34926117722787, 34.55210513317312], [-77.34926294125644, 34.552220238729824], [-77.34926250201167, 34.552222451794115], [-77.34926325095691, 34.55234458151834], [-77.34926326641195, 34.55234475219266], [-77.34926327203003, 34.55234490648039], [-77.34926301090644, 34.55236706691822], [-77.34926182194747, 34.55246668270511], [-77.34926176551868, 34.55246737856533], [-77.3492617326342, 34.552468034743555], [-77.34926062994919, 34.55247055266731], [-77.34922601232087, 34.55257484459054], [-77.34920536554785, 34.55259790492214], [-77.3491368136911, 34.552655630873005], [-77.34905839475869, 34.552727833069916], [-77.34904449035075, 34.55273489663079], [-77.34901354872396, 34.55274791765302], [-77.3489250215368, 34.5528009528287], [-77.34885989156541, 34.55282288556215], [-77.3487742561789, 34.55285177935497], [-77.34866187261572, 34.55289687679536], [-77.34854340867582, 34.552937979497905], [-77.34848466748217, 34.552959243599496], [-77.34846395182632, 34.55296658710918], [-77.34844250966623, 34.552965878379325], [-77.3482686386084, 34.552923004287464], [-77.3482004977005, 34.5529076207804], [-77.34809127923538, 34.55288062720057], [-77.34787855099106, 34.55281245945846], [-77.34776708226443, 34.55275281645725], [-77.34755925319766, 34.552712359387485], [-77.34748863229109, 34.55269462023989], [-77.347310097541, 34.55261584326878], [-77.34725202111332, 34.552607782876976], [-77.34709836660934, 34.55259188904123], [-77.3470315673643, 34.55258521257524], [-77.34688046029805, 34.552565206358736], [-77.34676891448085, 34.552542569348844], [-77.3467073432425, 34.552522083612956], [-77.3465524802396, 34.552515742231286], [-77.34648896355954, 34.552513012786655], [-77.34631434674145, 34.55253793104556], [-77.34630141518159, 34.552534225181944], [-77.34626977122001, 34.55253066142759], [-77.34615772126705, 34.552522259529646], [-77.34611836202444, 34.552523566907766], [-77.34604593969217, 34.55250166021185], [-77.34603535524796, 34.55249415838909], [-77.34596377198054, 34.55245227700658], [-77.34595516139058, 34.55243415231456], [-77.34592472377432, 34.55240739486578], [-77.3457894252778, 34.552318186562374], [-77.34566700429932, 34.552250153744794], [-77.3455368652633, 34.55220036612798], [-77.3453507949873, 34.55216732358257], [-77.34514421282731, 34.552201333598475], [-77.34499375282249, 34.552196086576615], [-77.34494787228627, 34.55220243658199], [-77.34476380336265, 34.55214204289114], [-77.34475302918534, 34.55213860641265], [-77.34475149517912, 34.55213801115442], [-77.3447495103706, 34.55213733162472], [-77.34455825380454, 34.55207185200873], [-77.34453185564576, 34.55206282434682], [-77.344497468432, 34.55205118125663], [-77.34436345231094, 34.552006242182955], [-77.34430773961427, 34.5519910239099], [-77.34421361625454, 34.55196960665198], [-77.34416838852366, 34.55195201468261], [-77.34408378013404, 34.55191910493547], [-77.34397299376745, 34.551912142695336], [-77.34388890455486, 34.551893909333444], [-77.34381923479674, 34.5518778895346], [-77.34377783487969, 34.55186205525391], [-77.34363880349068, 34.55180747817465], [-77.34363429162786, 34.55177645396478], [-77.34358517379772, 34.551703733915446], [-77.34351640575008, 34.551624289161026], [-77.34348425402109, 34.551584891557226], [-77.34338886328351, 34.551472884440635], [-77.34335813640175, 34.55135821462868], [-77.34328551028581, 34.55131627104368], [-77.34320109924754, 34.5513331305867], [-77.34311722298402, 34.55134067909411], [-77.34291023371382, 34.55135882398421], [-77.34280767516658, 34.551367672229546], [-77.34254862360442, 34.551391036379485], [-77.34241442719383, 34.551394568282234], [-77.34221902055111, 34.551399035105916], [-77.34221582544467, 34.55139875808531], [-77.34202269313612, 34.55135589658539], [-77.34197682411906, 34.55134091052581], [-77.34189856163755, 34.5513233509233], [-77.3418277029561, 34.55129860142101], [-77.3417497349511, 34.55127135733393], [-77.34163219882855, 34.5512635661282], [-77.3415740952893, 34.551247612586494], [-77.34148937362274, 34.55122697382416], [-77.34143704483859, 34.55121338060756], [-77.34125950836598, 34.55117045244915], [-77.34125636963918, 34.55116189464762], [-77.34124204342012, 34.55115660057167], [-77.34121086812135, 34.55115803013105], [-77.34104666621369, 34.55111609423163], [-77.3410101938319, 34.55110677942113], [-77.3409583520695, 34.55109135974198], [-77.34085157617919, 34.55106316814894], [-77.34077290232773, 34.5510449431096], [-77.34065634194822, 34.55101649094075], [-77.34064754311169, 34.551013654749546], [-77.34057046862965, 34.550956737812655], [-77.34046366098393, 34.550859356504], [-77.34042389401712, 34.55082627695085], [-77.3403922602969, 34.55080555368545], [-77.34031070501402, 34.550719899132645], [-77.34028346504182, 34.55069116727945], [-77.34012575777817, 34.55062987943914], [-77.34007680993848, 34.550609593116256], [-77.34007236211788, 34.550609520112864], [-77.33991664424327, 34.55065229621218], [-77.33987857560263, 34.5506927347], [-77.3398736365883, 34.55069653183514], [-77.33987241057078, 34.55070044121938], [-77.33984109350176, 34.55073972254827], [-77.33979525791696, 34.5507690090248], [-77.33977847211658, 34.55077695601152], [-77.33977019839737, 34.550777760573524], [-77.33976520996559, 34.55077333061624], [-77.33973820765802, 34.550741625610016], [-77.33971422623415, 34.55071945875517], [-77.33968221888216, 34.550694657456184], [-77.3396446579886, 34.55069172286003], [-77.33963341492638, 34.55068280318677], [-77.33962559898343, 34.55067597291424], [-77.33961962189919, 34.55067186049851], [-77.33960939884186, 34.55066018824756], [-77.33960832606166, 34.550658871873736], [-77.33959358724589, 34.55066582695645], [-77.33958710279605, 34.55066888689497], [-77.3395854897456, 34.55066964807526], [-77.33958463170096, 34.550670052976784], [-77.33958427768948, 34.55066952160926], [-77.33957401775612, 34.5506718266988], [-77.33957533874663, 34.550676283528546], [-77.3395782312123, 34.55067781337893], [-77.33957831659694, 34.550677851968516], [-77.33958137760442, 34.550679257210184], [-77.33958438778178, 34.55068060115694], [-77.33958962270438, 34.55068056196602], [-77.33959294623347, 34.55068334759956], [-77.33958924979945, 34.5506883858658], [-77.33959510743513, 34.550690687330174], [-77.33958404102995, 34.55069559629322], [-77.33956018873454, 34.550696145522664], [-77.33955886244767, 34.55069628893557], [-77.33953511047353, 34.55068921711575], [-77.33952325562103, 34.55068572003826], [-77.33950957043086, 34.5506732416635], [-77.33948666695204, 34.550661777649864], [-77.33943498822347, 34.55063721024959], [-77.33942704370543, 34.5506150004909], [-77.33936511237793, 34.550586055317915], [-77.33929295746327, 34.55054924003145], [-77.33921952730968, 34.55053063938399], [-77.3389390530885, 34.55052492145961], [-77.33890101488552, 34.55051978152156], [-77.33870791279274, 34.550434975670214], [-77.33850939725995, 34.5504762859967], [-77.3381666526759, 34.55039118521889], [-77.33815966905127, 34.55036701888186], [-77.3381192446048, 34.550369499988676], [-77.33801003795261, 34.55034526313497], [-77.33790867821045, 34.55031554266068], [-77.33772907911711, 34.55026330740576], [-77.33767715218343, 34.55024934215697], [-77.3375968795357, 34.55022830552265], [-77.33753058217765, 34.55011887837492], [-77.33753192082064, 34.550112534108315], [-77.33753227312747, 34.549992778973596], [-77.3375242844947, 34.54988230801441], [-77.33734609072879, 34.54984714694451], [-77.3373067284545, 34.54980554093818], [-77.33726105235516, 34.54978696453345], [-77.33715300284686, 34.54970795920952], [-77.33713282443547, 34.54969575385186], [-77.33695643276255, 34.549719177627345], [-77.33687884045554, 34.549719518617835], [-77.3367831387801, 34.549718932268945], [-77.33676020685984, 34.54971553067645], [-77.33671160486091, 34.54971322813161], [-77.33656383044413, 34.549718381959934], [-77.33641635431285, 34.54975504292236], [-77.33617335503467, 34.54962576898389], [-77.33597810894264, 34.549603875786445], [-77.33578002702727, 34.54965630323173], [-77.3355849346288, 34.549659946230385], [-77.33558362603743, 34.54966021386397], [-77.33558056391469, 34.54965946662034], [-77.33538834865604, 34.54961563904534], [-77.33533174822243, 34.54961012754034], [-77.33528594220336, 34.54958134119147], [-77.33502843957251, 34.54939069601758], [-77.33501083877671, 34.54937608084919], [-77.33501086078579, 34.54937018929613], [-77.33500145570169, 34.54936853865649], [-77.33476742721433, 34.549166262845276], [-77.33474237809475, 34.54909061254459], [-77.33461670708007, 34.5490290446052], [-77.33451133751223, 34.54895826752093], [-77.33437287800403, 34.54888744518103], [-77.33422708826808, 34.54889970379548], [-77.3340338274316, 34.548906514420345], [-77.33402871675807, 34.54890643897832], [-77.33383502259028, 34.54887590691369], [-77.33374261343195, 34.54888151695219], [-77.33344232593934, 34.54887931388407], [-77.333359778992, 34.54887901791178], [-77.33312978537906, 34.548862396794924], [-77.33305114402397, 34.54881743425821], [-77.33294097409883, 34.54887131249425], [-77.33255228361539, 34.548816553944455], [-77.33238833552397, 34.54877386373725], [-77.33230797315834, 34.54876001885797], [-77.33226769360361, 34.54874054650089], [-77.33209356069696, 34.548680869240314], [-77.33187701834822, 34.54865689676092], [-77.33182348253393, 34.548643823348165], [-77.3317461128586, 34.54862137439902], [-77.33158647443234, 34.5485817640079], [-77.3314868245063, 34.54855254575753], [-77.3311787836964, 34.54845811576796], [-77.3311772808338, 34.54840861608063], [-77.33109744237491, 34.54841328563582], [-77.33092172151113, 34.54838509021181], [-77.33089801747595, 34.5483785160988], [-77.33070715472543, 34.5483130553163], [-77.33066641670544, 34.548312365999934], [-77.33062790999777, 34.54829248907832], [-77.33044363657285, 34.54815233304035], [-77.33035828201487, 34.54808643256689], [-77.33035488033093, 34.54806535550017], [-77.33025830310979, 34.54806210215136], [-77.32992937659506, 34.547992348826625], [-77.3298230120709, 34.547984989794045], [-77.32953556842409, 34.54804369890005], [-77.32942854510313, 34.54804201944904], [-77.32933945207127, 34.54803548078655], [-77.3292191663765, 34.5480053565519], [-77.32917989875367, 34.54798876008681], [-77.3291446622831, 34.547970207993565], [-77.32898058276797, 34.54793685413638], [-77.32875433401665, 34.54787189317311], [-77.32871168333418, 34.54786024876198], [-77.32863496637123, 34.54784451175668], [-77.3283640610682, 34.54777123547643], [-77.32823039152055, 34.54774162610266], [-77.327972729655, 34.5477161106805], [-77.32792461645946, 34.54770179573556], [-77.32771812469446, 34.54764642954654], [-77.32758442785915, 34.54753080622228], [-77.32754924954216, 34.54751093116835], [-77.32754331075249, 34.54729601575875], [-77.3275298101733, 34.54726891077189], [-77.3272022444441, 34.54708268929403], [-77.32719024197169, 34.54708041741595], [-77.32680857421644, 34.54712819330424], [-77.32673299471324, 34.54713861551153], [-77.32641791775248, 34.547181898595355], [-77.32641469388014, 34.54718269839661], [-77.3264099821302, 34.5471820908594], [-77.32615432218921, 34.547139941764144], [-77.32602381220971, 34.54710841412428], [-77.32590476543295, 34.54708736708046], [-77.3257273284531, 34.54703832919991], [-77.3256786318915, 34.54701707819996], [-77.32563335767796, 34.547015817695154], [-77.32547651652129, 34.54697599580318], [-77.32542976842814, 34.5469639789841], [-77.32524289725181, 34.546923507312286], [-77.32508868482346, 34.546885292762695], [-77.32501049020334, 34.546798450874405], [-77.32485261097742, 34.54682375622826], [-77.32468673007924, 34.54680199302779], [-77.32465680171659, 34.54680247722486], [-77.32456241358577, 34.54677931963911], [-77.32446161172585, 34.54675463147415], [-77.3244212486137, 34.54676145999556], [-77.32439330746853, 34.546740405725295], [-77.32430699181424, 34.54665494644667], [-77.32420689645238, 34.54652237929787], [-77.3241926343319, 34.54645173956844], [-77.32407767736433, 34.54638247052513], [-77.32403883064184, 34.546326749654426], [-77.3239611381429, 34.546312880554765], [-77.32378615681931, 34.54627653047184], [-77.3236885807285, 34.54623185493374], [-77.32335631556583, 34.54619202384032], [-77.32328142912615, 34.54617562304062], [-77.32290593926162, 34.54612148926192], [-77.32276253295234, 34.54608542851186], [-77.32256749199817, 34.54602350618978], [-77.32229160591027, 34.545958956873896], [-77.3221264012406, 34.54587820223217], [-77.32182405812301, 34.545829929011234], [-77.32173455900015, 34.54584545213425], [-77.3214943571297, 34.54578218067189], [-77.32134422308184, 34.54574818626716], [-77.32129724121167, 34.54574572096862], [-77.32126853497581, 34.545720513593196], [-77.32095438236081, 34.545629747291876], [-77.32085263316475, 34.54559934364242], [-77.3206817358909, 34.54556000708498], [-77.32056390866829, 34.54553845456016], [-77.32035708446972, 34.54549148720653], [-77.32017365960142, 34.54543757801257], [-77.32013321401647, 34.54541948276906], [-77.32008319746456, 34.54540118453437], [-77.31994519325112, 34.54532036778122], [-77.31978460120217, 34.545285775595175], [-77.31969115617352, 34.545271175156074], [-77.31954480307354, 34.545233718972455], [-77.31943442749062, 34.54522401731076], [-77.31939389693869, 34.54520446082691], [-77.31920584818211, 34.54515557271124], [-77.31919874119673, 34.545155410852026], [-77.31917392089116, 34.545149023219196], [-77.31900362093229, 34.5451048518155], [-77.31896073840842, 34.54509962803168], [-77.31880779963127, 34.54509478223439], [-77.31865829760763, 34.54508703617943], [-77.31861155090752, 34.545082018358045], [-77.31853464781094, 34.5450861274066], [-77.31834612171694, 34.54508180510497], [-77.31834657573138, 34.54503863191646], [-77.31826596821523, 34.544955277880895], [-77.31824736501906, 34.54493047769719], [-77.31824790900063, 34.54491477847845], [-77.31822322992909, 34.544898855063465], [-77.31807791589635, 34.5448020310229], [-77.31788782178019, 34.544771115188986], [-77.31783376056549, 34.544764863954356], [-77.31775281824194, 34.54475670613902], [-77.31753479207538, 34.544730144175894], [-77.31744261639889, 34.54470251941292], [-77.31718971954896, 34.54467955936898], [-77.31692343204719, 34.544709853097466], [-77.31665768131569, 34.54469099407524], [-77.31651190712768, 34.544846317322744], [-77.31650236831126, 34.54493631969167], [-77.31651572117192, 34.54501814789211], [-77.31644308618763, 34.54518964551387], [-77.3164535642399, 34.54530643822428], [-77.31645205585446, 34.54531076280207], [-77.3164512061349, 34.545313627268406], [-77.3164463637461, 34.54533261335825], [-77.31642224803339, 34.545423742078064], [-77.31640092962564, 34.54544051163185], [-77.31633910289906, 34.54550746622147], [-77.31624473517716, 34.545560152354355], [-77.31614642980617, 34.54566206547737], [-77.316044519925, 34.545727268274725], [-77.31603337019047, 34.54573811527641], [-77.31601043428356, 34.54576215443356], [-77.3159560726368, 34.54581779278934], [-77.31589277747533, 34.54588071371294], [-77.3158436506307, 34.54592228743525], [-77.31576662605491, 34.545973963596154], [-77.31567696880352, 34.54603411491541], [-77.31564420621604, 34.54605640819351], [-77.31552799359734, 34.54610617924389], [-77.31544483137111, 34.54618752994301], [-77.31531940731827, 34.546253028446785], [-77.31524356152146, 34.54634117282866], [-77.31504419524082, 34.54653023942497], [-77.31498941001882, 34.54658918457385], [-77.31495063053919, 34.54662805412605], [-77.31480414902798, 34.54679490499814], [-77.31471889301682, 34.546906146108306], [-77.31469949658809, 34.5469448634605], [-77.3146412071286, 34.54697321361162], [-77.31451878849192, 34.5471052909285], [-77.31444724326516, 34.54718996935233], [-77.31439512413912, 34.547293500774025], [-77.31423885843132, 34.54738871548013], [-77.31418989687741, 34.54744198680296], [-77.31415815430842, 34.5474762964404], [-77.31403756240582, 34.547601595385714], [-77.31402561475402, 34.547610414668185], [-77.31398929043644, 34.54765231029226], [-77.31388635007856, 34.547760140283536], [-77.3138750555126, 34.54778552620623], [-77.31383623610759, 34.54781572360794], [-77.3137074531625, 34.54795233717755], [-77.3136350725366, 34.5480228645905], [-77.31362324062907, 34.54803554242224], [-77.31361446528837, 34.548043994896474], [-77.31354130514431, 34.54811985660144], [-77.31343369614778, 34.5482390429933], [-77.3133751930391, 34.548287393650426], [-77.31334161125272, 34.548327987847316], [-77.31323289699532, 34.54843055200087], [-77.31320713412288, 34.548453982665144], [-77.31318457797319, 34.54847294313137], [-77.31303257850188, 34.5486015186575], [-77.31301801732718, 34.54861031560453], [-77.31301007204328, 34.548620407225705], [-77.31285640420235, 34.54875015015189], [-77.31283535727182, 34.5487679009929], [-77.31283393403214, 34.54876910019176], [-77.31283230321174, 34.54877060737569], [-77.31267664795496, 34.548913096075516], [-77.31266364995645, 34.548934605687215], [-77.31263167347457, 34.54895477758667], [-77.3125053171245, 34.549060103293954], [-77.31248186102619, 34.54909450789627], [-77.31238553100881, 34.5491997086111], [-77.31234365024469, 34.5492756347321], [-77.31222951691657, 34.54936125542808], [-77.31215856658886, 34.5494339326429], [-77.31209265354858, 34.549486573167044], [-77.3119818686339, 34.54959631454868], [-77.31182760303285, 34.54975722132804], [-77.31181905746936, 34.54976546056868], [-77.31181110491552, 34.54977181023228], [-77.31162708231489, 34.54992040183011], [-77.3115182033085, 34.55005867634358], [-77.31148135226788, 34.5500978674535], [-77.31142576485581, 34.550149798207784], [-77.31130148646427, 34.55025870705859], [-77.31117047660932, 34.55035341349867], [-77.31110023491732, 34.550409130741066], [-77.31102566548346, 34.55046811696941], [-77.31084804556978, 34.55053474468324], [-77.3107179187038, 34.55066320094915], [-77.31068016684401, 34.55070142310607], [-77.31062703463166, 34.55072373741138], [-77.31038359559801, 34.550805420344], [-77.31022905946263, 34.55095132132695], [-77.31017861434603, 34.550985440827496], [-77.30994238672929, 34.551087415904355], [-77.30983213355734, 34.55113412350186], [-77.30946240096542, 34.551316131528935], [-77.30943493170939, 34.55132859777559], [-77.30942619452571, 34.55133288941028], [-77.30941161869333, 34.55134036675176], [-77.30889750203269, 34.55157227356407], [-77.3086411403608, 34.55169123703138], [-77.30834728471656, 34.55180117309854], [-77.30824526093105, 34.551829195465416], [-77.30800045747864, 34.55193878876706], [-77.30784872077483, 34.551995205801994], [-77.30772444175416, 34.552072191707], [-77.30729860479138, 34.55228417843608], [-77.30705374355932, 34.55240768795264], [-77.3068053042891, 34.55254079916706], [-77.30630220908292, 34.55274004531939], [-77.30626025273939, 34.55275663334798], [-77.30623792931101, 34.55276133858682], [-77.30619965306659, 34.55278068186969], [-77.30574440728913, 34.55301785022297], [-77.30546555000176, 34.55315678380494], [-77.3052311334574, 34.553264740494285], [-77.3047831157962, 34.55347361316308], [-77.3047095178866, 34.55350756713502], [-77.30467165928478, 34.5535221040941], [-77.3045643065749, 34.55357122844211], [-77.30419332049924, 34.55375303217757], [-77.30407460324187, 34.553820106895834], [-77.30387706244338, 34.553917098845716], [-77.303696406476, 34.55400788983866], [-77.30348055552204, 34.55408087007136], [-77.3032708816282, 34.554180259247055], [-77.30318031516178, 34.554253405673975], [-77.30308324799957, 34.55427855281785], [-77.30291465256154, 34.554335656975326], [-77.30287487590122, 34.55435307718751], [-77.3026866983308, 34.554443992054686], [-77.30259132629801, 34.55446341091138], [-77.30249924701215, 34.55453580093847], [-77.30228911763365, 34.554653105185], [-77.30211582658907, 34.554728698673856], [-77.3020224597128, 34.554768773297035], [-77.30189230037146, 34.55482974629932], [-77.30185487587785, 34.55485004058923], [-77.30178816577396, 34.55488264783821], [-77.30159933656861, 34.554974018395875], [-77.30149475316239, 34.555037270417245], [-77.30135569749542, 34.55510379309456], [-77.30111465890292, 34.55521367347377], [-77.30109777483365, 34.55522058559645], [-77.30109177391846, 34.55522368648387], [-77.30108094081766, 34.555228936663454], [-77.30082964361443, 34.55534445317683], [-77.30070052571475, 34.55541530340349], [-77.30057507609403, 34.555468903716466], [-77.30041849872114, 34.555568794880294], [-77.30034860310514, 34.555607040449935], [-77.30030278979373, 34.555630572713454], [-77.30014421940811, 34.55570590332915], [-77.300104207084, 34.555726084294186], [-77.30009290547962, 34.5557309404807], [-77.29990591818222, 34.55580912505665], [-77.29980929693775, 34.555841243668766], [-77.29960525270023, 34.55593028607809], [-77.29954113631696, 34.555959072085386], [-77.29950928743318, 34.55597739689529], [-77.29941353998811, 34.55601690494373], [-77.29911249655771, 34.55615238048346], [-77.29899750880837, 34.556191168877234], [-77.29881563248125, 34.55628838145492], [-77.29874731668657, 34.5563177502921], [-77.29871552081885, 34.55633511941154], [-77.29861592425476, 34.55637848859229], [-77.2984852737132, 34.5564385582186], [-77.29831864143023, 34.55651370154081], [-77.29821993886924, 34.556557762302596], [-77.29805113677749, 34.55664286650635], [-77.29796896217763, 34.55668396096826], [-77.29792130010733, 34.55671176437324], [-77.29777734929041, 34.55677101745501], [-77.29752448668371, 34.55688739985632], [-77.29745238959062, 34.55692923598926], [-77.29734221549444, 34.55698937352588], [-77.29720598577532, 34.557057662020846], [-77.29712677581253, 34.55710093975989], [-77.29694260566009, 34.55717781772048], [-77.29692851295798, 34.55718260161189], [-77.29689798444859, 34.55719436271004], [-77.29673047328195, 34.557254803510034], [-77.29648754513357, 34.557356783487776], [-77.29638177529716, 34.557401530522725], [-77.29633388073108, 34.55742087008187], [-77.2961725269005, 34.55750138003111], [-77.29612545775925, 34.557525126361114], [-77.29593640605482, 34.557624174364335], [-77.29588123632536, 34.557654614916586], [-77.2957808335921, 34.557702963075506], [-77.2955388929528, 34.55782901840605], [-77.29536541408265, 34.55790025321616], [-77.29534068323665, 34.55790828768028], [-77.29526950996176, 34.5579425762036], [-77.29514210589849, 34.5580030819656], [-77.29510838208583, 34.55802350043246], [-77.29505302697982, 34.558052163763925], [-77.29485550639404, 34.55814877237836], [-77.29474461585713, 34.558206786100925], [-77.29460966853752, 34.55827747297411], [-77.29435733236376, 34.55839068156522], [-77.29434747835037, 34.55839550695366], [-77.29434442519687, 34.55839671941869], [-77.2943324712317, 34.55840031949464], [-77.29404491699984, 34.55849927208435], [-77.29395125554757, 34.55854550106781], [-77.29377784641784, 34.558617627883926], [-77.29375293318708, 34.558629386566345], [-77.2936805012811, 34.55866092207823], [-77.29355455374257, 34.55871566578586], [-77.293508902925, 34.558735070979964], [-77.29342266101122, 34.5587756134191], [-77.29325033815454, 34.55885757036979], [-77.29315748085, 34.55890143146685], [-77.29286266405276, 34.559037711709756], [-77.29276046123802, 34.55908486925372], [-77.29273237485545, 34.55910216259416], [-77.29269209016998, 34.55912519434763], [-77.2924965382039, 34.5592357347539], [-77.29236261484206, 34.559303135210826], [-77.29223815092737, 34.55935832011936], [-77.29198057826949, 34.55947203702698], [-77.29197105305732, 34.559476661546014], [-77.2919657319887, 34.55948063942835], [-77.29194697657273, 34.559488433156076], [-77.29171484782421, 34.55960030968404], [-77.29156870629555, 34.55966409704645], [-77.29144518874921, 34.5597174028682], [-77.29119365856432, 34.55982968843219], [-77.29117874413116, 34.559836062055474], [-77.29117184741055, 34.55984043941169], [-77.29114766435475, 34.55985120108083], [-77.29077454636972, 34.560035359834785], [-77.29066676279575, 34.56008356628875], [-77.29048181756102, 34.56017656804101], [-77.29041473793166, 34.56020925069892], [-77.29037723874629, 34.56023047629423], [-77.29031054327167, 34.56026595926551], [-77.29005260825491, 34.56041198076669], [-77.28996596136571, 34.5604529344637], [-77.28989032048628, 34.560489881826875], [-77.28963065245398, 34.56062496481359], [-77.28955499597411, 34.56066214377991], [-77.28948920372932, 34.560692743493846], [-77.28917498750025, 34.56081731388261], [-77.28914947155276, 34.560827949701206], [-77.28914502453217, 34.56082936732482], [-77.28913754309853, 34.56083236386164], [-77.28873466881842, 34.56101271175405], [-77.28841265729554, 34.56116155925257], [-77.28832426767127, 34.56119789077885], [-77.28817605170019, 34.561249097325195], [-77.28791469597672, 34.56134804894046], [-77.28774260039728, 34.5614215879272], [-77.28766341905225, 34.56145495912894], [-77.28750446556974, 34.56152588342266], [-77.28719402749778, 34.56166421288621], [-77.28709396885455, 34.56171485411933], [-77.28700861721302, 34.561752057149526], [-77.2866836659583, 34.56189558334148], [-77.28664658253189, 34.561911825626794], [-77.28630562382814, 34.56208667078084], [-77.28627276994494, 34.56210119857037], [-77.2862467889031, 34.56211320238488], [-77.2859013431652, 34.562277528473835], [-77.28586498507721, 34.562294750796546], [-77.28586212359068, 34.56229621905635], [-77.2858589337339, 34.562297702334845], [-77.28551013061882, 34.56244659772019], [-77.28545192213576, 34.56247243690598], [-77.28537343086, 34.56250568541683], [-77.28504187571578, 34.56264205662927], [-77.28485557871579, 34.56271112735584], [-77.28483704492857, 34.5627187453573], [-77.28482385232836, 34.56272446446165], [-77.28463196996671, 34.56280568634963], [-77.28440615762531, 34.56292193983029], [-77.2842210275304, 34.56301283469889], [-77.28405285645934, 34.563095677076525], [-77.28381054233701, 34.56320067185378], [-77.28369606946153, 34.56324964162187], [-77.2835099776322, 34.56334377008209], [-77.28339990914677, 34.56339464804768], [-77.28331097211444, 34.563434799435996], [-77.28302236560553, 34.563551579727616], [-77.28298984371558, 34.563564682200855], [-77.28296762081584, 34.563573953056384], [-77.28285080719652, 34.56362156067989], [-77.2826221433845, 34.563715447105395], [-77.28257983177674, 34.56373239495832], [-77.28251726488386, 34.56375801430006], [-77.28216953307867, 34.56391207989201], [-77.2818550560297, 34.56408231849552], [-77.28175840895318, 34.56412635167645], [-77.2816744118152, 34.56418402062438], [-77.28155871862523, 34.564264769005284], [-77.28152251845519, 34.56428992387194], [-77.28150952621849, 34.56429909199032], [-77.28136349814993, 34.56439526703771], [-77.28129997296716, 34.56444130233532], [-77.28114554784443, 34.56456631765211], [-77.2811045733354, 34.56459609922687], [-77.28109091210997, 34.56460952311796], [-77.28107913490025, 34.564628236462895], [-77.28094689137004, 34.56478443697988], [-77.2809076079112, 34.564830790643214], [-77.2807690210017, 34.56495482237073], [-77.28061377199559, 34.56504337690704], [-77.28053895240842, 34.56507879100227], [-77.28044394676036, 34.56514787081114], [-77.2804361322803, 34.56515163689895], [-77.28042068816802, 34.565166696697766], [-77.28034737902789, 34.56523699186915], [-77.28031897456876, 34.56525588720041], [-77.28028733864839, 34.565292433507715], [-77.28021317245836, 34.56536540928634], [-77.28017003908278, 34.56540785028004], [-77.28008635426019, 34.56547328060696], [-77.28007377916201, 34.56548653026785], [-77.28003092201433, 34.56552095161669], [-77.27997604900956, 34.5655639028442], [-77.2799160321958, 34.5656153120739], [-77.27983050704543, 34.56568884924918], [-77.27978902006903, 34.56572614598876], [-77.27966808693718, 34.565821926512584], [-77.27958791143907, 34.56587586898905], [-77.27956666631741, 34.56590378961015], [-77.2795344845321, 34.565942026666484], [-77.27946792340231, 34.56601386573846], [-77.27942503894727, 34.566059594391184], [-77.27936087628292, 34.56612328936893], [-77.27924414383897, 34.56622729339999], [-77.27918262115281, 34.56625761431799], [-77.27903693203062, 34.566333507963485], [-77.279015069195, 34.56635214817695], [-77.2789577486825, 34.566393530838], [-77.27880882069901, 34.56649730167301], [-77.27876473642453, 34.56654779069924], [-77.27865327822305, 34.566639712569916], [-77.27851571814246, 34.5667638937671], [-77.27842800118162, 34.56681578006217], [-77.27826806035665, 34.56692426657898], [-77.27819154546228, 34.56697409266054], [-77.27801772799909, 34.56710806712729], [-77.27792905475752, 34.567189136412814], [-77.27771919283974, 34.56735720394755], [-77.27767489301567, 34.56740483426115], [-77.27763269878967, 34.567422804916866], [-77.27756963567109, 34.56747226134384], [-77.27738714306442, 34.567617892818], [-77.27724385807522, 34.56773415417804], [-77.27712509876173, 34.567832970441884], [-77.2770529145717, 34.56789292161422], [-77.2768897711307, 34.56803546125074], [-77.27688335472817, 34.56804964273748], [-77.27686675271909, 34.56805594151554], [-77.27684214467857, 34.568077724524976], [-77.27675160433147, 34.56815712401724], [-77.27668023048942, 34.568218641212866], [-77.27662634286632, 34.5682651149008], [-77.27652094768807, 34.56835739036616], [-77.27650283990141, 34.56837324409224], [-77.27649365024322, 34.56838128980874], [-77.27646544366777, 34.56840607104402], [-77.27638080274235, 34.568481488223604], [-77.27630997762797, 34.56854652441565], [-77.27617776436921, 34.56866970926255], [-77.27614680378257, 34.568698767900756], [-77.27612972315086, 34.568714799223535], [-77.2760703472286, 34.568770793751106], [-77.27595046403142, 34.56888395953826], [-77.27591629374334, 34.568916321319435], [-77.27585183600462, 34.568975560460785], [-77.27579823220401, 34.56902487750372], [-77.275769293374, 34.56905142036773], [-77.27566979163115, 34.5691326178677], [-77.2755791992869, 34.56921094601453], [-77.27546548825238, 34.56930405038961], [-77.27542829989696, 34.56934930790249], [-77.27538814848685, 34.56936962124941], [-77.275314676958, 34.569431937313894], [-77.27519874873214, 34.56952976510024], [-77.27515771568827, 34.56956371145064], [-77.27501085710156, 34.5696912502961], [-77.27492029427899, 34.569780720479294], [-77.274753379713, 34.56993832068862], [-77.27469948649517, 34.5699990348302], [-77.27465062271389, 34.570028050166194], [-77.27454975349863, 34.5701113532658], [-77.27442532814231, 34.57021315637653], [-77.27428061263547, 34.570356157629206], [-77.27420720342954, 34.57043168083092], [-77.27407242495379, 34.5705609099398], [-77.27400297490504, 34.5706512971652], [-77.27392255022241, 34.570694892206966], [-77.27377410518791, 34.570811950553896], [-77.27372756832743, 34.570850074948176], [-77.27370755153106, 34.57086374646585], [-77.27367588871628, 34.570893207234846], [-77.27357995447113, 34.57097155169261], [-77.27353132410452, 34.57100413537734], [-77.27343741187067, 34.57107818209103], [-77.27332968306249, 34.571153396733656], [-77.27329299086657, 34.57118466499654], [-77.27321560993887, 34.57124938558731], [-77.27316434575349, 34.57129238752671], [-77.2731391511591, 34.57131253795857], [-77.27307107270691, 34.57136891141392], [-77.27294933112526, 34.57147231259728], [-77.2729097041337, 34.5715080404341], [-77.27283314927006, 34.57157640362051], [-77.27278850063456, 34.571616347552904], [-77.2727647770695, 34.57163677077682], [-77.27266561378713, 34.5717245221325], [-77.27257848782406, 34.57179968617258], [-77.2725416592528, 34.57183261297537], [-77.27246908811796, 34.57189652549316], [-77.2724189582081, 34.57194080212724], [-77.27239186812044, 34.571962308103146], [-77.27232125968722, 34.57201836171978], [-77.27229451751752, 34.572040025719765], [-77.27228513723608, 34.57204811718584], [-77.27220105119534, 34.57212119770675], [-77.27216464529107, 34.57215647975507], [-77.27209432602407, 34.57222065471261], [-77.27204579610454, 34.57226497139553], [-77.27201914743245, 34.57228801439352], [-77.27193927003685, 34.57235708377942], [-77.27192553447966, 34.57236905637022], [-77.27192019803151, 34.57237293249991], [-77.27183078584832, 34.57244908835466], [-77.27180104317335, 34.57248139990795], [-77.27175417801948, 34.57253181290818], [-77.27170794424354, 34.57259191534605], [-77.27174327913393, 34.572699855405695], [-77.27172227591086, 34.57271087517473], [-77.27153721331777, 34.572735481380974], [-77.27145469561567, 34.57277180032456], [-77.27142598829666, 34.5728054190445], [-77.2713746771417, 34.57285771347608], [-77.27131867698111, 34.572914817114864], [-77.27128209074408, 34.572946888369714], [-77.27120583505527, 34.57301282942864], [-77.27119422636379, 34.57302286788812], [-77.27117151237324, 34.57304197789274], [-77.27109141930815, 34.57310590963085], [-77.27105934889913, 34.573130098880114], [-77.27098327767396, 34.57318806978797], [-77.27091923794083, 34.5732369183942], [-77.27089404458279, 34.57325896985985], [-77.27082366773575, 34.57331315792739], [-77.27069812990997, 34.57341332888915], [-77.27065037800004, 34.57345145021989], [-77.2705437328062, 34.573536461737355], [-77.27051582542927, 34.57355870635949], [-77.27050596859574, 34.57357102632402], [-77.27047062129068, 34.57359461900471], [-77.27037856563348, 34.57366574952921], [-77.2703060237537, 34.573721801872786], [-77.27023609226953, 34.57377238273713], [-77.27020416380563, 34.57379551120658], [-77.27013081072344, 34.573849901625984], [-77.27010322617132, 34.573870040823216], [-77.27009128335959, 34.573878832234016], [-77.27005985332666, 34.57390146072518], [-77.26994610514524, 34.573985252523975], [-77.26990079394778, 34.57401860491644], [-77.26979907549175, 34.574089211242395], [-77.26979607846887, 34.57409129157767], [-77.26976655244775, 34.574153521649286], [-77.26974231483017, 34.57420413788415], [-77.26974233358627, 34.57420489989664], [-77.26974236820139, 34.57420630621671], [-77.26960914125395, 34.57431226207107], [-77.26952935350924, 34.57434545961248], [-77.26943008354483, 34.57440218603163], [-77.26941387835122, 34.57441474447738], [-77.26932038632052, 34.57448821298992], [-77.26927851568485, 34.574521935859515], [-77.26918941910287, 34.57459498717243], [-77.26914766518864, 34.57462948193334], [-77.26912864646668, 34.57464628776304], [-77.26907473587725, 34.574688175086834], [-77.26901269713771, 34.574736704161076], [-77.26893227439253, 34.574800243194275], [-77.26887750976684, 34.57484390901485], [-77.26875691328618, 34.57494073053781], [-77.2687438584767, 34.5749512345812], [-77.26873893613315, 34.57495689719122], [-77.2687229128416, 34.5749671891368], [-77.26859503549744, 34.57505736709545], [-77.26853306952371, 34.5751024093381], [-77.26845073897907, 34.575163855417934], [-77.26838882905973, 34.57521112207141], [-77.26833370865953, 34.57525370780023], [-77.26826298576944, 34.575309481178444], [-77.26819414454052, 34.57537934754683], [-77.26813825880173, 34.57540848482457], [-77.268034148818, 34.575495774665015], [-77.26794848180694, 34.575568307429656], [-77.26790774411276, 34.57559249575323], [-77.26786502774678, 34.5756422763422], [-77.26776254556185, 34.575731546195016], [-77.26766489716603, 34.57580906807311], [-77.26742801538381, 34.575989699346536], [-77.26740268702846, 34.57602411760732], [-77.26736945003552, 34.57603914999426], [-77.26732414770281, 34.57606632957629], [-77.26715776913827, 34.576179493536976], [-77.26708822074102, 34.57623505746564], [-77.266987318289, 34.57631567081518], [-77.26696398292066, 34.57633575237256], [-77.26695621493784, 34.57634251096905], [-77.26694120686915, 34.576355773856285], [-77.26683430589976, 34.57645075830838], [-77.26677918498527, 34.57650000530935], [-77.26661115403174, 34.57664277818651], [-77.26658991573463, 34.57666028211857], [-77.26658244041599, 34.57666661996633], [-77.26656858540555, 34.576679070069915], [-77.26646115425707, 34.57677491602276], [-77.26640562026773, 34.57682498271596], [-77.26631120041003, 34.57688095741983], [-77.266203314373, 34.57697366586713], [-77.26613597143883, 34.5770248371651], [-77.26604514771796, 34.57709570266018], [-77.26600649852355, 34.57712723198105], [-77.26590330577923, 34.57720903030328], [-77.26581130060548, 34.57728223742356], [-77.265776789196, 34.57731026594439], [-77.26571665738506, 34.577365619501506], [-77.26565735418973, 34.577418707100186], [-77.26562981790475, 34.577449441187674], [-77.26554854126474, 34.57752798337568], [-77.26544368014888, 34.577612505268064], [-77.26534646418861, 34.57768799922333], [-77.26529971818269, 34.577744082427024], [-77.26524904051873, 34.57776800834431], [-77.26517283376977, 34.57781998803577], [-77.26504977445131, 34.57791939711396], [-77.2650039370343, 34.57795648775449], [-77.26492683884099, 34.57802889323599], [-77.26488640416497, 34.578065078007896], [-77.26487152052633, 34.57808947405552], [-77.26477112551447, 34.57817384524712], [-77.26467429758327, 34.57824268066659], [-77.26447768931662, 34.57838084373228], [-77.2644707072409, 34.57838588506263], [-77.26446872799669, 34.578388464336896], [-77.26446213673587, 34.57839182564473], [-77.2642758059187, 34.578545496715876], [-77.26421546687652, 34.578601477549306], [-77.26405622334141, 34.578722421429084], [-77.26396768101705, 34.57881765615771], [-77.2638899218917, 34.57885952724874], [-77.26372864148082, 34.57900871084753], [-77.26370885319415, 34.5790271031313], [-77.26370218531576, 34.579032441478326], [-77.2636961699361, 34.57904099421422], [-77.26354010862167, 34.579205640263254], [-77.26349439508715, 34.579251765358755], [-77.26341159348176, 34.57933129361592], [-77.26329861060344, 34.57947203348809], [-77.26317581370611, 34.579538875058276], [-77.26300859612434, 34.579665947644955], [-77.26298622265674, 34.579683129018925], [-77.26297971030243, 34.57969308074516], [-77.26295391774124, 34.57970707480934], [-77.26276890042888, 34.57983420663614], [-77.26269875508189, 34.57989618404979], [-77.26257514436014, 34.579990500896116], [-77.26253807029775, 34.58002589172604], [-77.26244880339317, 34.580112190185616], [-77.26239934516117, 34.580162766103896], [-77.26223335595091, 34.58032372885032], [-77.2622271365524, 34.58033042105999], [-77.26222279751997, 34.58033436616988], [-77.26221078440769, 34.58034295984274], [-77.26207415141178, 34.58043622019908], [-77.2620206602569, 34.580483207039265], [-77.26195305474063, 34.58054452786057], [-77.26183559294093, 34.5806472304543], [-77.26182077699538, 34.58066196412434], [-77.26171813152826, 34.5807617152599], [-77.2616523012926, 34.580812833427224], [-77.26148648170657, 34.58094159421549], [-77.26145514511487, 34.580966105697186], [-77.26144353490989, 34.58097578087189], [-77.26141902977858, 34.580996139977394], [-77.26131386860504, 34.58108341396738], [-77.26126368099597, 34.581124440789594], [-77.26118137990181, 34.58119082477994], [-77.26107095871453, 34.58128165730727], [-77.26099331256003, 34.58133929087887], [-77.26090601946939, 34.58140482953135], [-77.26087318422381, 34.58143438064661], [-77.26076509947988, 34.58153443109711], [-77.26069185959591, 34.581601735095326], [-77.26066204647103, 34.58162130327183], [-77.26059770281739, 34.58167116315734], [-77.26049257220332, 34.581753113578], [-77.26037811121644, 34.58183463224589], [-77.26008817333647, 34.58203936853689], [-77.26008091682563, 34.582044237521735], [-77.26007614095857, 34.58204654186548], [-77.26006984834973, 34.58205256118236], [-77.25978966397705, 34.582259669736246], [-77.25967787955891, 34.5823430277995], [-77.25960396650626, 34.58241074573611], [-77.25953551765136, 34.582475341484724], [-77.25949840587077, 34.58251203074595], [-77.25934008814234, 34.58268494124811], [-77.25933202187528, 34.582692676456816], [-77.25933150020934, 34.582694957475056], [-77.25932857162441, 34.58269758868813], [-77.25910301586116, 34.58291264770199], [-77.2589583267804, 34.5830175674195], [-77.25895362889763, 34.58302171128145], [-77.25883702371974, 34.58312738621323], [-77.25877205285684, 34.583180523599594], [-77.25860242853673, 34.5833098799287], [-77.25857261814699, 34.583331774690215], [-77.25855834081483, 34.583341125468436], [-77.25851940661443, 34.58336803158362], [-77.25825547894502, 34.583552961268715], [-77.25819896953257, 34.58365670975326], [-77.25801699173046, 34.583769863039706], [-77.25797442209426, 34.58378562598984], [-77.257919489372, 34.58382663650694], [-77.25776738537263, 34.58393011672287], [-77.25769922381416, 34.583980524747645], [-77.2575941860783, 34.58408192572436], [-77.25746669009756, 34.58419789421403], [-77.25739880153489, 34.58425955992609], [-77.25725394757782, 34.584393042841505], [-77.25724322879815, 34.584415977530696], [-77.25721809197371, 34.58442746838201], [-77.25717682645971, 34.584461415253735], [-77.25702681627843, 34.58458597918528], [-77.25696812143245, 34.584629995440835], [-77.25683891735348, 34.58473216551487], [-77.2568325559346, 34.58473716088858], [-77.25683040524463, 34.58473992287], [-77.25670379374961, 34.58484486142605], [-77.2566307681179, 34.58489099734336], [-77.25647925585402, 34.58500704621787], [-77.25641176903414, 34.58505754700858], [-77.25624490799191, 34.585205078454905], [-77.25613456162463, 34.58527139784388], [-77.25600576173825, 34.58541156177186], [-77.25593228551931, 34.58549114731366], [-77.25587143134791, 34.58553017591785], [-77.25573305726974, 34.58564876225515], [-77.25566596536463, 34.58570585491351], [-77.25549464035231, 34.58585232657363], [-77.25541056812116, 34.58592142173249], [-77.25523081659065, 34.58606915097553], [-77.25517918179705, 34.58613887846906], [-77.25511415669963, 34.58617119467153], [-77.25500545756452, 34.5862536942172], [-77.25487541229813, 34.58635063670561], [-77.25471250622508, 34.586471236782444], [-77.25458329822177, 34.586563311851286], [-77.25450954292076, 34.586619356948304], [-77.25433929067404, 34.58673719393803], [-77.25430166912838, 34.58676310952978], [-77.25424763492012, 34.5868047037311], [-77.25401134936786, 34.5869896273864], [-77.25390852648003, 34.58707072178259], [-77.25376479422094, 34.58720588798536], [-77.25360417338592, 34.58735693579855], [-77.25355158691173, 34.58741053751296], [-77.25353796714819, 34.5874237014698], [-77.25350576345996, 34.587449888808244], [-77.25327680036855, 34.58763881077357], [-77.25317574107345, 34.58773353773369], [-77.25302916944187, 34.58785498506873], [-77.25279134425129, 34.58804893402904], [-77.25276630007772, 34.588069960217446], [-77.25272512658378, 34.588109579966044], [-77.2526336420081, 34.588295186529216], [-77.25244717115928, 34.588400109584114], [-77.25208422388425, 34.58869458458352], [-77.25206193898964, 34.588714766001125], [-77.2520549056225, 34.588720961563055], [-77.2520381298955, 34.58873420222518], [-77.25168433637273, 34.58903620972897], [-77.2515457862412, 34.58915221588041], [-77.2514841328036, 34.58918679036949], [-77.25132750360999, 34.58935693556497], [-77.25131777759769, 34.58936747887418], [-77.25131556017179, 34.58936975887519], [-77.25131169860835, 34.58937358142781], [-77.25121734283306, 34.58959769633201], [-77.25101781443286, 34.589757985140665], [-77.25064255455119, 34.5899915044034], [-77.25060121533357, 34.59002052181396], [-77.25058547797234, 34.59003074881566], [-77.2505544143039, 34.59005160336667], [-77.25017453124144, 34.59032253928479], [-77.25004059526532, 34.59044771527266], [-77.2497737975128, 34.590623415869516], [-77.24973070145195, 34.5906589821056], [-77.24963976899778, 34.5907343295553], [-77.2494758149501, 34.59087458020948], [-77.24938893938142, 34.59093841517587], [-77.2492420460664, 34.59106692583893], [-77.24922897213973, 34.591090811626785], [-77.24916545013245, 34.591130212408665], [-77.24900766829121, 34.59125660641932], [-77.24895123230661, 34.591304608905645], [-77.2488331912184, 34.59140368658592], [-77.24870652208608, 34.59152100741012], [-77.24862455161056, 34.59157315775338], [-77.24846285270101, 34.59172602638005], [-77.24846014898453, 34.591737274727365], [-77.24843017618419, 34.59175008294757], [-77.2482279763268, 34.59187773866239], [-77.24814287654107, 34.591947956662935], [-77.24787552607847, 34.5921295947891], [-77.24784494035794, 34.59216016136915], [-77.24781750285146, 34.59216995872881], [-77.24778101314892, 34.59219979076922], [-77.24755628626498, 34.59237309652292], [-77.24750593601021, 34.59255015893352], [-77.24744686235834, 34.59260015033055], [-77.24712464455982, 34.59277808105789], [-77.2470738718123, 34.59280644117631], [-77.24706130735578, 34.592812000170866], [-77.24703638599128, 34.5928380940627], [-77.24686348617789, 34.593025540987455], [-77.24679118245368, 34.59322906738938], [-77.24676866992492, 34.59325374528229], [-77.24630602818449, 34.59344817901005], [-77.24630109946236, 34.59345047852041], [-77.24629794704322, 34.59345233484987], [-77.24628649791646, 34.59345922535024], [-77.24595151408998, 34.59366071504931], [-77.24588242387631, 34.59373540900448], [-77.2456665411391, 34.593873936450386], [-77.24549035111852, 34.59404400519965], [-77.24541953646806, 34.594151144919145], [-77.24527259612977, 34.59431424673903], [-77.24518297932431, 34.594427947308944], [-77.24481460707051, 34.5947289344141], [-77.24479876023908, 34.59474353299311], [-77.2447915490827, 34.59474769268967], [-77.24478870638673, 34.59475466654637], [-77.24457542084654, 34.59496633725537], [-77.2444767116523, 34.59511442285017], [-77.24438592343253, 34.59518708006263], [-77.2441833532566, 34.595348645116374], [-77.24414140926618, 34.595403487528586], [-77.24410417969892, 34.59544040770941], [-77.24389398950282, 34.595619665062344], [-77.2436931449399, 34.59573214385702], [-77.24336933233766, 34.59591842162714], [-77.24318378729515, 34.5960350488629], [-77.24295144012967, 34.59617713649856], [-77.24284623330334, 34.59624412247718], [-77.24282422185748, 34.59627394160804], [-77.24252680239996, 34.59645462286751], [-77.24234547343463, 34.596505446069294], [-77.2421877979701, 34.59683034306964], [-77.24224275710904, 34.59690358727581], [-77.24214881323996, 34.5969878865628], [-77.24210429350076, 34.59712835016609], [-77.24206150373479, 34.59723891117574], [-77.24205374136494, 34.597247902839804], [-77.24205345138557, 34.59726861446928], [-77.2420322772169, 34.597358349742734], [-77.24197149904782, 34.59746237660435], [-77.2419618257071, 34.59747893338463], [-77.24176813556086, 34.59757320678868], [-77.24164105792242, 34.59766683698097], [-77.24140876868914, 34.59764434067317], [-77.2412665675823, 34.59776934942478], [-77.24091261760987, 34.59786036977215], [-77.24088363732159, 34.597974842643296], [-77.2406183689226, 34.59815250285823], [-77.24063388913498, 34.598190832277545], [-77.24055903062882, 34.59820322099903], [-77.24052341767423, 34.598208939977354], [-77.24026351223522, 34.598397313095674], [-77.24014528346169, 34.598492556638995], [-77.24011535630015, 34.598524450452786], [-77.24003072887396, 34.598614639230775], [-77.2398185411657, 34.598819225010644], [-77.23980716011778, 34.59883269154493], [-77.23980297235403, 34.5988454415434], [-77.2397706511545, 34.59886306392611], [-77.23956005928862, 34.599048888288685], [-77.2394219727367, 34.59916391135408], [-77.2390418961578, 34.599469733802174], [-77.2390333233187, 34.59947557802711], [-77.23903101868251, 34.599478534506005], [-77.23902578827568, 34.59948328979785], [-77.23877657977184, 34.59969415155993], [-77.23865936154968, 34.599800311542445], [-77.23854242334257, 34.59991136742919], [-77.23832270307301, 34.60011378867641], [-77.23830611991461, 34.60014347953345], [-77.23827010151535, 34.60016138649965], [-77.23811436763197, 34.60030160320924], [-77.23806408784075, 34.60034500803462], [-77.23792663676866, 34.60046330445855], [-77.2375854175699, 34.60075707838104], [-77.23758817412715, 34.60077883821883], [-77.23755968375922, 34.60079427808056], [-77.23751713594191, 34.60081582113469], [-77.23717477178681, 34.60110927658526], [-77.23705747523674, 34.60120834736458], [-77.23679173105013, 34.60141579633888], [-77.23678575290165, 34.60142062354875], [-77.23678354925337, 34.60142242519182], [-77.23677872829266, 34.601426331509245], [-77.23659128927963, 34.601576338120935], [-77.23651913550772, 34.60163725231403], [-77.23641149195342, 34.60174510010677], [-77.23627500510659, 34.601853678632416], [-77.23606399073948, 34.6020203589878], [-77.23602145356651, 34.60205554302822], [-77.23600710186184, 34.60206823006296], [-77.235967981432, 34.602097093052116], [-77.2358248890853, 34.60220939015843], [-77.23571287375455, 34.60228070484358], [-77.23563853599539, 34.60237232162013], [-77.2354707128175, 34.60249728478992], [-77.23526243637403, 34.60269516748774], [-77.23524064522336, 34.60271481919981], [-77.2351912297877, 34.602755124031646], [-77.23507095198485, 34.602937113466815], [-77.23490806683617, 34.60303734592668], [-77.23459769854827, 34.60325076066642], [-77.23449406921515, 34.603326480058854], [-77.23442758611789, 34.603357729214416], [-77.23440451116376, 34.603416875014716], [-77.23400825586496, 34.60379601174327], [-77.23374608903303, 34.60397593537815], [-77.2336026971254, 34.60408426568416], [-77.2334358702476, 34.60422222198163], [-77.23337817597483, 34.60430607151083], [-77.23309538441333, 34.60455219465251], [-77.2330064337615, 34.60463280296523], [-77.23298021824702, 34.60465763757473], [-77.2329274951946, 34.60470427351589], [-77.23262595143768, 34.60495176015623], [-77.2324503397422, 34.60508719621836], [-77.23217447989904, 34.60520756430562], [-77.23185981579691, 34.60547111857038], [-77.23181116585347, 34.60550813250343], [-77.2318009713198, 34.60553272874398], [-77.23172640793246, 34.605590227634124], [-77.23143353961746, 34.60586330064689], [-77.23126909462853, 34.60593672551191], [-77.23114504510583, 34.60610591244384], [-77.23107405248932, 34.606200942243284], [-77.2309140515483, 34.60638007251373], [-77.23064340610821, 34.60647527841395], [-77.23050876611829, 34.606583776973], [-77.23027869062045, 34.606783655095285], [-77.23026412632854, 34.606795314638056], [-77.2302607939374, 34.6067998916294], [-77.23025286217847, 34.606807073064864], [-77.22989826279954, 34.607127287676335], [-77.22974761971233, 34.60723076002055], [-77.22958047730592, 34.60732969583547], [-77.22944669182269, 34.60738301213721], [-77.22900852135979, 34.607626428400884], [-77.22898291407351, 34.60762787759202], [-77.2289778524734, 34.6076413803433], [-77.22896200374507, 34.60765737015555], [-77.22845862799282, 34.608071766783986], [-77.22823014466404, 34.60827311360168], [-77.22821652787962, 34.60828834221437], [-77.22822711297712, 34.60829966024457], [-77.22812490879356, 34.60850822771236], [-77.22812064002176, 34.608516454849486], [-77.22811396491792, 34.6085256708551], [-77.22798634454371, 34.608713690861514], [-77.2279449531769, 34.60873827010261], [-77.22792469638507, 34.60878015712862], [-77.22778168620667, 34.608961064890565], [-77.22767053574944, 34.6090902055703], [-77.2276012182555, 34.60918250309315], [-77.22756561268613, 34.60928185096335], [-77.22754532620291, 34.609307551686], [-77.22740615949549, 34.609402789229094], [-77.227346894851, 34.60945975432004], [-77.22715783560207, 34.60961526430751], [-77.22695234351691, 34.60976621739192], [-77.22686750735588, 34.60983163810447], [-77.22668711193357, 34.609977844839705], [-77.22660129237357, 34.610046307931015], [-77.22656365856912, 34.61007790129861], [-77.22647815974314, 34.61012460459686], [-77.226264362243, 34.61025539570841], [-77.22611938513181, 34.610340130013874], [-77.22599653429039, 34.61046993690326], [-77.22593135216074, 34.6105015867559], [-77.22581673482769, 34.6105978934066], [-77.22574739884095, 34.61066667329585], [-77.22572243909117, 34.61068398307909], [-77.22561821778413, 34.610745047130706], [-77.22552841706788, 34.61080059575309], [-77.22549468760852, 34.61081742436296], [-77.22538236709991, 34.610892821018], [-77.22531490445428, 34.6109393842958], [-77.22523028423792, 34.61099865682163], [-77.22521153360874, 34.61101179077975], [-77.22516897951822, 34.61104417814798], [-77.22511131171521, 34.61108699886051], [-77.22506393244964, 34.611103366082055], [-77.22503550575323, 34.61114669587815], [-77.22492753432071, 34.611252243330505], [-77.22484215346071, 34.61132154013325], [-77.22463716354298, 34.611479376399245], [-77.22456963348587, 34.611535708676755], [-77.2245458330932, 34.611570147348644], [-77.2244562810161, 34.61161865046172], [-77.22426462649383, 34.61174731212362], [-77.22411719035782, 34.61184628883338], [-77.22398250452729, 34.61196072162956], [-77.22392721583188, 34.61200602180451], [-77.2237659807768, 34.61214888432352], [-77.22373486770746, 34.612163643131765], [-77.22373139692515, 34.61217657915038], [-77.22372214421942, 34.61218899273544], [-77.22349713514498, 34.612393765969976], [-77.22336667047934, 34.61249356624306], [-77.22335775494449, 34.61250060296097], [-77.22333539972692, 34.61251732778589], [-77.22321556963348, 34.61260721812153], [-77.22316658616927, 34.61264430567794], [-77.22305054777385, 34.61272870919588], [-77.22294641878258, 34.61277717722591], [-77.22292234205169, 34.61281974906101], [-77.22282559082632, 34.61289168965542], [-77.2226390073863, 34.61303306045214], [-77.22257108399418, 34.613100752821495], [-77.22238137307356, 34.61324840068052], [-77.22237341703514, 34.613253644685486], [-77.2223547523065, 34.61326974713354], [-77.22217198215809, 34.61340318404889], [-77.22213270050167, 34.61346444783362], [-77.22207484621465, 34.61353984034217], [-77.22208144227798, 34.61369608189539], [-77.22200160784728, 34.61390912010506], [-77.22197641977154, 34.61392347091122], [-77.22176100594623, 34.61402457634503], [-77.22154005836634, 34.61412469807274], [-77.22151653314012, 34.61413506306538], [-77.22148455843875, 34.61415500769308], [-77.22119774429805, 34.61433334998145], [-77.22109098031251, 34.61441396452512], [-77.22099078111677, 34.61455268860153], [-77.22073453243256, 34.61475435234162], [-77.22072622969516, 34.61476748058073], [-77.22071535993734, 34.614783007477], [-77.22056483477178, 34.61499041740628], [-77.22042619253631, 34.61513754449816], [-77.2203581262529, 34.615209775811664], [-77.22024499536496, 34.615326274322356], [-77.22014766892275, 34.61542883801884], [-77.22008650700107, 34.61549284946669], [-77.21993414362733, 34.61564765778653], [-77.2199048548027, 34.61565999555879], [-77.2198698917516, 34.615677260237796], [-77.2196457121252, 34.61575819584784], [-77.21961575651062, 34.61576266552478], [-77.21940598742532, 34.615841629857805], [-77.21938199767204, 34.61585232850675], [-77.2193505931523, 34.61586983574125], [-77.21921317710353, 34.615944243567895], [-77.21916783402246, 34.61599054854103], [-77.21906870372486, 34.61605067443205], [-77.21876488509521, 34.61624716102528], [-77.21876021247101, 34.6162619924956], [-77.21874181583755, 34.61626904414961], [-77.21871889624707, 34.61628424424315], [-77.21854978988392, 34.616426962046845], [-77.21849795945266, 34.6164769617883], [-77.21836644688815, 34.61659260577614], [-77.21826766512704, 34.6166944548791], [-77.21802707959611, 34.616890426858866], [-77.2179944026493, 34.616919127599125], [-77.21796726440954, 34.61693534577293], [-77.21779512042576, 34.617070590726065], [-77.21773780946559, 34.617123969087764], [-77.21761406137219, 34.61723826815198], [-77.217503845303, 34.61734117129997], [-77.21729103581124, 34.617533025547495], [-77.21726500337387, 34.61755798803076], [-77.21724842472234, 34.61757049426703], [-77.21720421534135, 34.61760895269767], [-77.21706107700714, 34.6177325776819], [-77.21701022909464, 34.61777354571869], [-77.21689867804633, 34.617863422246444], [-77.21687702840435, 34.617880865349534], [-77.21686826642568, 34.61788980092793], [-77.21675392124405, 34.61798898193001], [-77.2165559377785, 34.618175262269105], [-77.21651910630732, 34.61823668998826], [-77.2164251168165, 34.61831420494378], [-77.21633862574203, 34.6184048852312], [-77.21631245611017, 34.61842547398791], [-77.21615117559459, 34.61856687927585], [-77.21605979591214, 34.61864119725264], [-77.21581568148926, 34.61881941955637], [-77.2157856061842, 34.61885521939701], [-77.21575342317946, 34.61887053606504], [-77.2157074552768, 34.61889818275938], [-77.21534205693487, 34.61916208064288], [-77.215104278283, 34.619272758245], [-77.21501389984698, 34.61948657433906], [-77.21500255948978, 34.61951757398807], [-77.21478159223886, 34.61971863046639], [-77.21460030175828, 34.61981722596627], [-77.21443772804821, 34.61992714609443], [-77.21438524865584, 34.61995466331236], [-77.2143025272436, 34.620006086691845], [-77.21416438604503, 34.62008693135516], [-77.2141104830977, 34.620136973510796], [-77.21396197294825, 34.6202472510479], [-77.21375732915413, 34.62038231597254], [-77.21363582583928, 34.620489434144694], [-77.21354942082023, 34.620564008732], [-77.21351721765365, 34.62059722000325], [-77.21343001347888, 34.62074865475224], [-77.21340407366701, 34.62078820747419], [-77.21329635753122, 34.62086347130735], [-77.21314374431351, 34.62100332006266], [-77.21302466673083, 34.621045563792464], [-77.21287548058588, 34.621157547688405], [-77.21281602778087, 34.62121310804443], [-77.21279552457526, 34.6212344028589], [-77.21264690906511, 34.621367023038296], [-77.21256805234225, 34.62142919620024], [-77.21240810112084, 34.62156292777443], [-77.21230475925918, 34.62164407368031], [-77.21225748854432, 34.6216781061053], [-77.21212981632094, 34.62179666413333], [-77.21206040819021, 34.62186044769535], [-77.21203250393276, 34.62188702936368], [-77.21202021299895, 34.62201293430573], [-77.21199846002557, 34.622083428406775], [-77.21200141619741, 34.622091469816525], [-77.21201036154676, 34.622115803084384], [-77.21195103595142, 34.622149434453306], [-77.2117444303279, 34.6223068447609], [-77.21153372238851, 34.62234928232679], [-77.21136012437657, 34.6224831643289], [-77.2113250985741, 34.62250938914006], [-77.21114410645649, 34.62266019584431], [-77.21108894769316, 34.622726409656465], [-77.21096804602846, 34.622836015402406], [-77.21086385823259, 34.62294430421137], [-77.2108095568797, 34.62302010942154], [-77.21054392388032, 34.62315470170679], [-77.21040209594591, 34.62331514754579], [-77.21028235380973, 34.62345971064959], [-77.21015665903087, 34.62359546235812], [-77.2100712942084, 34.623678399273246], [-77.2097447315074, 34.62402804266575], [-77.20974485603513, 34.624034282282096], [-77.20971979634842, 34.62405524304247], [-77.20932247360642, 34.62432730076186], [-77.20883573110392, 34.624367869775824], [-77.2087179173908, 34.62436755751158], [-77.20842981606324, 34.6244017002595], [-77.2079772855323, 34.624445541333756], [-77.2077962046701, 34.62452168619745], [-77.20669483908546, 34.62461959927269], [-77.20578325850795, 34.62516432535272], [-77.20393241509595, 34.62479190149185], [-77.20086458482137, 34.625688868027936], [-77.19959731108864, 34.62818833396719], [-77.20300734751149, 34.629629384956246], [-77.20318391688988, 34.62978652216152], [-77.2032343137744, 34.63019254648567], [-77.2040505934093, 34.62971189008062], [-77.20946315997372, 34.62971332697178], [-77.20951838257227, 34.62825869444923], [-77.21044925376762, 34.627960306595696], [-77.21078632163642, 34.62694468395273], [-77.21068208408991, 34.626465200870015], [-77.21052741708408, 34.62630680203367], [-77.21053087425355, 34.62598188373879], [-77.21049903353274, 34.62595007539068], [-77.21053302608325, 34.62577957398501], [-77.21054177385155, 34.625747061094486], [-77.21060386497915, 34.62554354470943], [-77.21059603010677, 34.62551566461217], [-77.2106277474011, 34.62548873255443], [-77.2107352500185, 34.625380575140014], [-77.21097643142029, 34.6251413865841], [-77.21104112368344, 34.62507947278287], [-77.21112025910138, 34.62498314657665], [-77.21127828968108, 34.62475237783397], [-77.21140633506013, 34.62463696640161], [-77.21157175500886, 34.62444700644407], [-77.21178244610289, 34.62419532110657], [-77.21188656757357, 34.62397842352867], [-77.21206803540703, 34.62374652181261], [-77.2124729280851, 34.62337539829232], [-77.21250330570261, 34.62330955050113], [-77.21257467329173, 34.6232755067892], [-77.21267191190356, 34.6232237665667], [-77.21312570200841, 34.62288736373954], [-77.21333932313453, 34.62264070161178], [-77.21352849341753, 34.62244782310981], [-77.2138677715693, 34.622119192119555], [-77.21396697726416, 34.62201110202568], [-77.2140392021543, 34.62194827321018], [-77.21426941740533, 34.621736008682994], [-77.21445550311677, 34.621578333439686], [-77.21471745800194, 34.62123661119479], [-77.21478557375212, 34.62113304443665], [-77.214887155311, 34.62100334781563], [-77.2150309238373, 34.6208579504582], [-77.21528660242194, 34.62070126107236], [-77.21550015565887, 34.620617884248176], [-77.21577730439807, 34.620424977263696], [-77.21590732328978, 34.62032259751288], [-77.21594887222338, 34.620282214570274], [-77.21602988954157, 34.62020870747173], [-77.21627984790022, 34.61999648844921], [-77.21647192801088, 34.61985216725681], [-77.21668343234758, 34.61969801628855], [-77.21672525941568, 34.619636496360584], [-77.21681778299072, 34.619546738866], [-77.21693832390815, 34.61941764352847], [-77.21702778841134, 34.61934684761366], [-77.21719928660781, 34.61920257460776], [-77.21727003617059, 34.61914374530145], [-77.21742341471588, 34.61904129773546], [-77.21755413063903, 34.618994919685136], [-77.21750902574041, 34.61892090352602], [-77.21775957782171, 34.618682842715806], [-77.2178945995127, 34.61855044712421], [-77.21808986416892, 34.61835810341456], [-77.21811625904273, 34.61834264534632], [-77.2181253340188, 34.618323083332434], [-77.21831965107276, 34.61811265347921], [-77.21844399733112, 34.61797669772114], [-77.21866816859313, 34.6177527331521], [-77.21874298604429, 34.61767472430559], [-77.21879602757356, 34.61763236541684], [-77.21893236498084, 34.61752767684933], [-77.21918196388951, 34.61731820171238], [-77.21933760710962, 34.617250320292285], [-77.21945889260348, 34.61708967396653], [-77.21953409228982, 34.617030155869436], [-77.21956124299773, 34.61699811660344], [-77.21965160519142, 34.61694049674068], [-77.21976553727879, 34.61685111325776], [-77.21981114505006, 34.616816353151535], [-77.21996647471944, 34.61670112328146], [-77.22011076760688, 34.616604332245345], [-77.22030819230352, 34.61647695555152], [-77.2204032171166, 34.616432167093116], [-77.22044014687017, 34.61639466058172], [-77.22054323717605, 34.61631679459339], [-77.22077454287495, 34.616105009851864], [-77.22096749541947, 34.61596493827223], [-77.22118100283522, 34.61580911350126], [-77.22126374487479, 34.615752649415924], [-77.22149938765189, 34.61559184379204], [-77.22156915493063, 34.615541082773525], [-77.22159709447364, 34.61552178792342], [-77.22172533089886, 34.61513998494298], [-77.22165538233395, 34.61507652830973], [-77.22165874089904, 34.614919111520194], [-77.22166052474508, 34.614841253528716], [-77.22177578688012, 34.61475375899605], [-77.221815129011, 34.61472949038515], [-77.2219831458547, 34.614631045271445], [-77.22203736487371, 34.61459845459119], [-77.2221281546329, 34.61454947530771], [-77.22240503946165, 34.61451841064586], [-77.2225712328297, 34.614507313698624], [-77.22265506271891, 34.614490503327644], [-77.22286900885484, 34.61434487759779], [-77.2230209470174, 34.61424161851433], [-77.22307967096896, 34.614210760577784], [-77.22318775217335, 34.61412278053615], [-77.22356267640833, 34.61381302367349], [-77.22385237172905, 34.613583202554175], [-77.22410251405907, 34.613384277837625], [-77.22461601628723, 34.61296828282183], [-77.22462738633459, 34.61295771117153], [-77.22463162545097, 34.61295468428234], [-77.22464255614098, 34.61294679731155], [-77.22504555774758, 34.61267224799256], [-77.22522536549434, 34.61253018897372], [-77.22542823356363, 34.61235520689646], [-77.22554607192978, 34.61224147692196], [-77.22569503972204, 34.6120959001332], [-77.22578251110345, 34.61201290197718], [-77.22595778525432, 34.61172011084808], [-77.22598296030444, 34.611647265014675], [-77.22597222816282, 34.61152419397702], [-77.22618691124616, 34.61153210961453], [-77.22671934493843, 34.611234022990715], [-77.22692524378053, 34.61105708161817], [-77.22704483967279, 34.610946115510146], [-77.22691864771366, 34.610920016065585], [-77.22690397010716, 34.610815130170906], [-77.22689860796615, 34.610776811661324], [-77.22703374789427, 34.6106927784346], [-77.22725514699611, 34.61069309816013], [-77.22744678251652, 34.610584392709754], [-77.22753595871681, 34.61053380731131], [-77.22766741777974, 34.61040239578244], [-77.22771135386802, 34.61036959174308], [-77.22782246696723, 34.610287856454924], [-77.22807859682382, 34.61011072304116], [-77.22835960064671, 34.60994938649126], [-77.22850609550682, 34.60983357039735], [-77.22858681020051, 34.60973163643243], [-77.22876879993981, 34.6095664760183], [-77.22881189193808, 34.609513717772266], [-77.22884290972151, 34.609475742046264], [-77.22896066063731, 34.60938605445832], [-77.22928498421508, 34.60921155933911], [-77.22945666654041, 34.60909323406487], [-77.2294798614233, 34.60893309972037], [-77.22955179455948, 34.60879145574886], [-77.22977236045078, 34.60864678457198], [-77.22990414627313, 34.60844745419726], [-77.23005606509112, 34.608197810800974], [-77.23025430189612, 34.60810150236412], [-77.2303756260699, 34.60798734472968], [-77.23058886546991, 34.60783639084091], [-77.23065630532035, 34.607801677134894], [-77.23073909225951, 34.60778034108078], [-77.23079608137016, 34.60770594434123], [-77.23135008854584, 34.60735718534855], [-77.23147664722272, 34.60721656236972], [-77.23151387705988, 34.60713442833676], [-77.23157316750759, 34.60704784395139], [-77.23163086943481, 34.60690797870547], [-77.23199808943733, 34.60652149390802], [-77.23199662398497, 34.60646547498393], [-77.23200456566572, 34.606371305548414], [-77.23215881532423, 34.6064016206025], [-77.23250402806907, 34.606158190093566], [-77.23261468262275, 34.60604287233101], [-77.23282652834655, 34.605844165117915], [-77.23284770987193, 34.60582557528746], [-77.23285531680796, 34.60581325691438], [-77.23316433749596, 34.605614871317634], [-77.2332838576339, 34.60553704965141], [-77.23351947779256, 34.605380014359625], [-77.2337123661564, 34.6052608150364], [-77.23382054498231, 34.60519527279268], [-77.23397966838616, 34.60504533325572], [-77.23410087892128, 34.60494900115033], [-77.23431211492573, 34.604762686947836], [-77.23440760932918, 34.60456443351789], [-77.23485858637666, 34.60440089368587], [-77.23492861828784, 34.60437049256655], [-77.23498444764512, 34.604344355683104], [-77.23537228742643, 34.604107748602274], [-77.23554787622194, 34.60391743278602], [-77.23581896992344, 34.60362235416703], [-77.23594357183629, 34.60347728199228], [-77.23598959922138, 34.60334205324075], [-77.23631316667544, 34.60319364813192], [-77.23643849807505, 34.60308396774822], [-77.23652352139565, 34.60305165913751], [-77.23651607083097, 34.60299412643954], [-77.23676697554431, 34.60271875717666], [-77.23687477637094, 34.60260800219249], [-77.23712146551742, 34.60240020768823], [-77.23713466114584, 34.60238842770529], [-77.23743532056486, 34.602180845557456], [-77.237542041144, 34.60209341064756], [-77.23781255823513, 34.60189779965657], [-77.23795942408616, 34.601807293630266], [-77.23806507518687, 34.601759144047335], [-77.238423459642, 34.601562677664965], [-77.23868094533903, 34.601336345215785], [-77.23906109478713, 34.6009395975], [-77.23910280808343, 34.60089825053774], [-77.23913073555632, 34.60087703978748], [-77.23921440741915, 34.60079450297149], [-77.23956515183963, 34.600463345296646], [-77.23963567895237, 34.60035718539717], [-77.23981928792213, 34.60017475145965], [-77.23997311779601, 34.600024152503885], [-77.24017991588624, 34.59983815589646], [-77.24021012877279, 34.59980715989623], [-77.24026070162324, 34.59975589118504], [-77.24034844826772, 34.599582386590185], [-77.24051604809824, 34.59947977127242], [-77.24063412909088, 34.5993692296917], [-77.24082306984738, 34.59917803971601], [-77.24084275549436, 34.599149998412976], [-77.2408600601227, 34.5991283982424], [-77.24093425092008, 34.59906299728941], [-77.241196027317, 34.59876987024799], [-77.24143944067461, 34.598725676743996], [-77.24212505268905, 34.598376387208475], [-77.24220226311616, 34.59835019635447], [-77.24222606934634, 34.59831632358601], [-77.24222104220851, 34.59828744010967], [-77.2425475572218, 34.59799996974083], [-77.24275976607652, 34.59788703285296], [-77.24302410443173, 34.59776649847932], [-77.24322785968955, 34.59745257131148], [-77.24362332630133, 34.59708233229439], [-77.24371801619259, 34.597069009970184], [-77.24375685551473, 34.597022907651876], [-77.24382771314146, 34.596951311957646], [-77.24408375089484, 34.59673697241436], [-77.24411286011622, 34.59657961108715], [-77.24424832179663, 34.59642649035476], [-77.24436645743167, 34.59633108060369], [-77.24463533601401, 34.59614943030504], [-77.2447798072553, 34.59604140090095], [-77.24491415448537, 34.59593572522113], [-77.24511765308813, 34.59579596622096], [-77.2451878672062, 34.59574701742492], [-77.24523351758175, 34.595725213708675], [-77.24530108926774, 34.595665039919425], [-77.24551407116714, 34.595511643750186], [-77.24559371597785, 34.5954506679414], [-77.24578617653981, 34.595308105592544], [-77.24580136461778, 34.595298604519414], [-77.24599505922508, 34.595150312247654], [-77.24632981038633, 34.59491257514696], [-77.24638678968577, 34.594873378026065], [-77.24640572331901, 34.5948582490804], [-77.2464668666278, 34.594796188355126], [-77.2467688536997, 34.59452390530334], [-77.24688112485788, 34.59444097314673], [-77.24689029867365, 34.594335373769], [-77.24705979719425, 34.59412535271041], [-77.24719463426246, 34.59399432271401], [-77.24742720107099, 34.593794813994776], [-77.24751879447408, 34.593732709090794], [-77.2477705911631, 34.593568346070576], [-77.24784855759427, 34.59351226739291], [-77.2480424732505, 34.593349031215205], [-77.24823522228974, 34.593198863902465], [-77.2483688126258, 34.59314412022843], [-77.248483419544, 34.59300420446493], [-77.24885152958956, 34.59271079487297], [-77.2489652132874, 34.592533511317775], [-77.2492808547207, 34.59227326340547], [-77.24936440820805, 34.5922312587794], [-77.24950538165879, 34.59212442807018], [-77.24976216571321, 34.59192772803164], [-77.24990069206041, 34.59185073464795], [-77.25014256211718, 34.591648281959706], [-77.25015994967336, 34.59163548023793], [-77.25016650569665, 34.591630053991864], [-77.25040451681694, 34.59141906734249], [-77.25054117537107, 34.59130598970262], [-77.25078371339201, 34.59104084722924], [-77.25084047942467, 34.590982055004574], [-77.25088532919133, 34.59095478426783], [-77.25096648569561, 34.590903289509676], [-77.2512994232619, 34.590665790152855], [-77.25152009214553, 34.59056422691959], [-77.2516774502547, 34.590344717210264], [-77.25168265844917, 34.59033688846004], [-77.2519084443614, 34.59012346234959], [-77.2520282219057, 34.58999940250892], [-77.25213364919125, 34.5899055234228], [-77.25233863068384, 34.589723889309155], [-77.25237810709432, 34.589689099819395], [-77.25239877603599, 34.58967168575015], [-77.25245814893145, 34.58962166229793], [-77.25259130085021, 34.58951427447407], [-77.25266741781306, 34.589476207254876], [-77.2528179884243, 34.58938724976001], [-77.2530499290172, 34.58927065178683], [-77.25325399477708, 34.58911775274099], [-77.25364944630329, 34.58893350989217], [-77.25379194627347, 34.58893893140363], [-77.25384611510214, 34.58886199270131], [-77.2538747387965, 34.58878133912549], [-77.25406797966434, 34.58852714909142], [-77.25409485309183, 34.58841023193266], [-77.25415501085949, 34.588308994373165], [-77.25435767341352, 34.58812751844071], [-77.2545939009641, 34.587978175553054], [-77.25471801129277, 34.58773078193095], [-77.25480686618396, 34.587523597618656], [-77.25502277296948, 34.587404498635166], [-77.25512893932851, 34.58720950987283], [-77.25502619663104, 34.58706952062251], [-77.2551301631974, 34.586842724294904], [-77.25513071001427, 34.58684207720046], [-77.25513479769097, 34.58683991299272], [-77.2554595063305, 34.58663228781145], [-77.25555521443117, 34.58656349391234], [-77.25567866750623, 34.58658931530163], [-77.25594185840771, 34.58653770544125], [-77.25614837369739, 34.5864940715934], [-77.25621144389724, 34.58648988372411], [-77.25637389444128, 34.58637592474668], [-77.25657340631977, 34.58624862465525], [-77.25662958205892, 34.5862045062334], [-77.25681436888777, 34.58601087581046], [-77.25697073294029, 34.5858506554382], [-77.2569948002164, 34.58581044974864], [-77.25706096843712, 34.58575123152636], [-77.25733377419132, 34.585516276083254], [-77.25749332864142, 34.58537834457223], [-77.25759493273156, 34.58530122068179], [-77.25773241220077, 34.58521355907173], [-77.25775588326299, 34.585163337364385], [-77.25783531385325, 34.585093849214715], [-77.25799475985792, 34.58494646628095], [-77.25807608204158, 34.584861953507115], [-77.25824407049447, 34.5847304161417], [-77.25827319829463, 34.58470863733424], [-77.25835233680351, 34.58463731042728], [-77.25846391977652, 34.584549633547624], [-77.25848823463457, 34.58451396053057], [-77.25856741795194, 34.58445227696522], [-77.25883159950487, 34.58421938597442], [-77.25903746685933, 34.58408584035624], [-77.25923260811359, 34.583918783255726], [-77.25926855817261, 34.58386835547057], [-77.25935668594009, 34.58378928837805], [-77.25950949893732, 34.58365164472033], [-77.2595806821957, 34.58357110134088], [-77.25982418438934, 34.5833943228763], [-77.25998702922723, 34.58327524954989], [-77.26003065401716, 34.58322131255653], [-77.26013432493234, 34.583130645650876], [-77.26028003054547, 34.58300526449931], [-77.2603459725702, 34.582937238025096], [-77.26055295618053, 34.582791068444614], [-77.26073697708424, 34.582627743403776], [-77.26078842594308, 34.58257392600812], [-77.26091577096028, 34.58247056796556], [-77.26105359948666, 34.58235911972683], [-77.26111713725777, 34.582308605402616], [-77.26128582915041, 34.58217140177779], [-77.26132187830358, 34.582144557454406], [-77.26151402459507, 34.58200434559798], [-77.26157689040451, 34.58192895075849], [-77.26173007031895, 34.58179817637898], [-77.2618308662284, 34.58171326231577], [-77.26188096649585, 34.581673454385125], [-77.26202176980607, 34.581549785329265], [-77.2620868274368, 34.58149772972234], [-77.26227056670689, 34.58136271637291], [-77.2623230687931, 34.58128064522951], [-77.26243435788328, 34.58116697920098], [-77.2625400680379, 34.58106204681086], [-77.26258111145586, 34.58098166920911], [-77.26274098226321, 34.580842182861076], [-77.26277491359095, 34.58082541434548], [-77.26283523375373, 34.58077489079893], [-77.26298236483551, 34.58068129873239], [-77.26301416216215, 34.58062800328858], [-77.26310514472269, 34.58054832219159], [-77.2632678182965, 34.5804122874932], [-77.26333352059868, 34.58033637366374], [-77.26351780494198, 34.58019628283165], [-77.26353482256755, 34.58018679050014], [-77.26356983734784, 34.5801558620722], [-77.26372284540156, 34.58002539721555], [-77.26380059823828, 34.579982858092144], [-77.26388216752956, 34.579889866005814], [-77.26402992979382, 34.57976522785569], [-77.26408646012368, 34.57969155591476], [-77.2642560092796, 34.5795473416355], [-77.26427951156347, 34.579534636379975], [-77.26432728073866, 34.579491654153045], [-77.26446317781766, 34.579369370017474], [-77.26453058611057, 34.5793332694228], [-77.26458130017609, 34.57926057633759], [-77.264759318588, 34.57911559108828], [-77.26483772347592, 34.5790452536998], [-77.26487778944022, 34.579007074779334], [-77.26494332740592, 34.57894126130415], [-77.26498278113307, 34.57889749808087], [-77.26501046597976, 34.578870273311324], [-77.26510714037555, 34.57878310065858], [-77.26519461949344, 34.57870544191502], [-77.26525111572737, 34.578682933794965], [-77.26528867961942, 34.57862818998812], [-77.26547945851362, 34.5784652238422], [-77.26557745269277, 34.57838869913319], [-77.2657167061736, 34.57824821403385], [-77.26575669414558, 34.578219500496346], [-77.26585715388413, 34.57813352483387], [-77.26595024078978, 34.5780630245409], [-77.26600769591323, 34.57803543025338], [-77.2660199416379, 34.57798684980239], [-77.26608720030204, 34.57792384864215], [-77.26612419283157, 34.57788912227937], [-77.26623375686134, 34.57781753986336], [-77.26632626243536, 34.57774022684505], [-77.26646271192377, 34.57759987688437], [-77.26650044919775, 34.5775665343515], [-77.26661362482848, 34.57747115451979], [-77.26669395052961, 34.57741001961166], [-77.26671827745947, 34.577384306214306], [-77.26678174296087, 34.577334061122656], [-77.26688845258987, 34.57725439523149], [-77.26695920557387, 34.5772045226924], [-77.26699127492823, 34.57718153807846], [-77.2670060973475, 34.57717127144094], [-77.26709173854363, 34.57710658317069], [-77.26714133372766, 34.57706407179057], [-77.26725902904408, 34.576971556770104], [-77.26727492484696, 34.5769567426897], [-77.26728569189899, 34.57695047155821], [-77.26730728414616, 34.576932946764174], [-77.26747845517622, 34.57679330180129], [-77.26758100730962, 34.57674514279494], [-77.26765961968925, 34.57663777995506], [-77.26779720562628, 34.57652647490516], [-77.26786025458046, 34.57647564877293], [-77.2680398952165, 34.576317700717304], [-77.26804696734541, 34.57631309925177], [-77.26804825525419, 34.57631054719043], [-77.26805328961234, 34.57630659407639], [-77.26824791653631, 34.576163211060035], [-77.26837384533658, 34.57610047961944], [-77.2684561088053, 34.5760197648557], [-77.26852829507267, 34.57594493510271], [-77.26859715513575, 34.57588236992303], [-77.26863399006925, 34.57584936215438], [-77.26874729407808, 34.57575228098302], [-77.26882681141223, 34.575692246671636], [-77.26884718376208, 34.57566636066805], [-77.26890522014435, 34.57562001688968], [-77.26901486865599, 34.57553089464943], [-77.26912726833788, 34.57545271385077], [-77.26921398896808, 34.57537938178848], [-77.26933650648604, 34.575274730852655], [-77.2693749760144, 34.57523652135478], [-77.26940405576167, 34.57521981770178], [-77.26946059947882, 34.57517515939237], [-77.26959866492173, 34.57506429360984], [-77.26965136535273, 34.57502258330564], [-77.26977807777072, 34.5749255889534], [-77.26979643068009, 34.57491157722942], [-77.26993016383068, 34.57480883404129], [-77.26998989738165, 34.57475503779891], [-77.27017619784532, 34.574593480442466], [-77.27017713746419, 34.57459296136333], [-77.27017782810866, 34.574592637007974], [-77.27017794622844, 34.574592068016194], [-77.27037606822975, 34.57444128199908], [-77.270484550876, 34.57438108194857], [-77.27059888166325, 34.57431084229397], [-77.27071761723104, 34.57416373646415], [-77.27076493907342, 34.57412992883508], [-77.27085495364238, 34.57405669899994], [-77.27087858930074, 34.57403789365756], [-77.27096601452214, 34.57398015791394], [-77.27103175898695, 34.573952763725146], [-77.27105413588399, 34.57389637516039], [-77.27114919510858, 34.5738144730752], [-77.27123656011338, 34.57373319576737], [-77.27124918245886, 34.57372173411753], [-77.27133688399903, 34.573652797945705], [-77.27142974453164, 34.57357193585549], [-77.27148835009994, 34.57351732087225], [-77.27152823391205, 34.57349437901224], [-77.27160531054196, 34.57343417248724], [-77.2717243502386, 34.573340199274874], [-77.2717896818802, 34.573305339733324], [-77.27184702112987, 34.57323188273639], [-77.27188844120994, 34.57319526918694], [-77.27190852429948, 34.57317539950746], [-77.27201179675004, 34.57308713160567], [-77.27209257067969, 34.573010486542884], [-77.27222680744052, 34.57290587366365], [-77.27226515544757, 34.572871379089236], [-77.27228276648744, 34.57285104276074], [-77.27232867376966, 34.57283706737235], [-77.2725157658339, 34.572729664894375], [-77.27262246789782, 34.57266379626317], [-77.27273777934371, 34.57259851747667], [-77.2728488876355, 34.572489079633904], [-77.2728801827196, 34.57244838510655], [-77.2729086438674, 34.572421883294794], [-77.27299590436365, 34.57235094545763], [-77.27316800707307, 34.57223533979343], [-77.27331906049557, 34.57212969995998], [-77.27346013924515, 34.57202263255516], [-77.27367124866856, 34.57184875880442], [-77.27370904469085, 34.57181934790812], [-77.27372922256173, 34.57180811352657], [-77.27375247419197, 34.5717830870456], [-77.27397479293039, 34.57159174607777], [-77.27406697896492, 34.57148049490405], [-77.27419866975501, 34.571373673633474], [-77.2744218919966, 34.57119763408308], [-77.27446019515313, 34.571173019978225], [-77.27447823049448, 34.57115997677341], [-77.27451024706855, 34.571131719612865], [-77.27473218212569, 34.57094426685096], [-77.27479913610392, 34.57081727958285], [-77.2748952022073, 34.570721410951634], [-77.2751614906798, 34.57052026146046], [-77.27517914141194, 34.570508057426764], [-77.27518488462854, 34.57050316680599], [-77.27548202956325, 34.570296191258], [-77.27559279613982, 34.57020876416215], [-77.27584295122992, 34.57005397612745], [-77.27601749074844, 34.56992928802153], [-77.27608053903234, 34.56987188770905], [-77.27623347541795, 34.56975113454677], [-77.27638985589545, 34.56960327766392], [-77.27654151625632, 34.569505777422066], [-77.27661232841601, 34.569442339620586], [-77.2767628163515, 34.56927779822357], [-77.27691308622953, 34.569129028959985], [-77.2770183879197, 34.56900291178496], [-77.27708113064725, 34.56890372493783], [-77.27737748458335, 34.56868578520171], [-77.27747232342587, 34.56859446236243], [-77.27750263228741, 34.56856962557525], [-77.27759553496175, 34.568505852703765], [-77.27787836115832, 34.56829840204644], [-77.27805140948676, 34.568186272980284], [-77.27810898723446, 34.56814593062429], [-77.27829934936629, 34.56801563802354], [-77.27835394906725, 34.56792950904034], [-77.27849980371641, 34.567799540915345], [-77.27859999499248, 34.56771317240921], [-77.27863650804218, 34.56765832913561], [-77.27878981902796, 34.56755918955129], [-77.27884591326197, 34.56751598025668], [-77.27886849338284, 34.567498599169284], [-77.27892024062649, 34.56745825985253], [-77.27904303122025, 34.567362704959976], [-77.27913699340341, 34.56728402537644], [-77.27935329539287, 34.56711224697453], [-77.27940687678164, 34.56706956004752], [-77.27942096522935, 34.56704165886079], [-77.27949439379447, 34.56699900753217], [-77.27961937150795, 34.566889530370354], [-77.27965915260347, 34.566853711216204], [-77.27973028779289, 34.566787242289266], [-77.27980052922324, 34.56672206388636], [-77.2799171901375, 34.566638314398524], [-77.28013793990249, 34.566450744630444], [-77.28016372857147, 34.56642201425293], [-77.28018507366339, 34.56640689919843], [-77.28024599686213, 34.56634577555231], [-77.28039866148357, 34.566204802101545], [-77.28054213704823, 34.56606729833485], [-77.28063709968374, 34.56598786491399], [-77.2808161172177, 34.56582913538884], [-77.28087633072411, 34.565770989795894], [-77.28090138318271, 34.56572964042449], [-77.28109241400146, 34.56555229578087], [-77.28129127302442, 34.5654192335449], [-77.28138891722159, 34.56533991829168], [-77.28168718636813, 34.56513522400089], [-77.28169492521802, 34.565128286304486], [-77.28170010837766, 34.56512567550145], [-77.28170710700412, 34.5651225047807], [-77.28212699840557, 34.564848173047736], [-77.2823372526285, 34.56470740055905], [-77.2823386211886, 34.56470676154118], [-77.28257214129282, 34.56458690316482], [-77.28277210712662, 34.56450588399798], [-77.2828246983306, 34.56448293239447], [-77.28288894520922, 34.56445162166949], [-77.28306804152605, 34.564370768559115], [-77.28322722405018, 34.56430595720403], [-77.28337975850229, 34.564241589127846], [-77.28348888794362, 34.564195540092626], [-77.28378969885301, 34.56407691172216], [-77.2841961431655, 34.56389224505827], [-77.28419958934619, 34.56389078622715], [-77.28420072283365, 34.56389019850783], [-77.28461028623914, 34.563717620807964], [-77.28489467220231, 34.56360323246941], [-77.28502032277001, 34.56354867560582], [-77.28520956489474, 34.56347720746997], [-77.28543028360612, 34.56338284157018], [-77.28560095325884, 34.563303329679044], [-77.28617225994934, 34.563060587100075], [-77.28625082384842, 34.56302492016733], [-77.28631423277344, 34.562995705249975], [-77.2868547207239, 34.562752047831], [-77.28704703955371, 34.56266655102247], [-77.28707164981604, 34.5626546561932], [-77.28710712447565, 34.56264177583454], [-77.2877631537843, 34.56235578140924], [-77.28789160520972, 34.56232074367307], [-77.28842181629761, 34.562108316042746], [-77.28871194648383, 34.56197027730896], [-77.28902451175703, 34.561807874427664], [-77.28953281794992, 34.56159715276195], [-77.28990901877233, 34.56142614186163], [-77.29035442181464, 34.561192813904356], [-77.29059511215118, 34.561042557509246], [-77.29094251658364, 34.560844913784145], [-77.29106578368756, 34.560774923886186], [-77.29115036554042, 34.560746826617], [-77.29132895078621, 34.56065466671205], [-77.29143420574272, 34.560599631824516], [-77.29154787190714, 34.560543338656274], [-77.29157380131622, 34.56052548531004], [-77.29161077666014, 34.56050428189471], [-77.29194567930554, 34.56032705922178], [-77.29205738430093, 34.560264141492794], [-77.29223489878285, 34.56016997509324], [-77.29230282849937, 34.56013524910536], [-77.2923433808267, 34.56011515963117], [-77.2925677445131, 34.56001584299103], [-77.29274063312248, 34.559922140969064], [-77.29290227677062, 34.559829460992376], [-77.2930449423846, 34.559751387924436], [-77.29313857855414, 34.559699766855374], [-77.29329256917391, 34.55962355850786], [-77.2935242537217, 34.559495454304766], [-77.29353134158622, 34.5594914152568], [-77.2935362597161, 34.559488463792604], [-77.29357732209411, 34.55946262525272], [-77.2937572887817, 34.55935302359367], [-77.29377878414353, 34.55933654693388], [-77.2939345982009, 34.559249299649], [-77.29402341951001, 34.559234208739234], [-77.29422445583472, 34.559214832414526], [-77.29432697386912, 34.559262024961654], [-77.29458271529288, 34.559185338695954], [-77.29479168949524, 34.559111557050514], [-77.29492223453443, 34.559050140933564], [-77.29504980793887, 34.558988837912246], [-77.29512258029705, 34.55882855907802], [-77.29514327391433, 34.55878590401101], [-77.29514383826296, 34.55877355109206], [-77.29516004945178, 34.55874903906156], [-77.29527427343967, 34.55860125564857], [-77.29548845384724, 34.55850085583628], [-77.29552338682157, 34.55848469526918], [-77.2955365027233, 34.55848053932734], [-77.29555825868665, 34.55846930302935], [-77.29592021697529, 34.558308865300525], [-77.2961210653105, 34.5582683867264], [-77.29631602604127, 34.55817615496504], [-77.29647883971558, 34.55809244640717], [-77.29662399000873, 34.55801646221437], [-77.29671306752616, 34.55799124358106], [-77.2969298128849, 34.557894058867575], [-77.29710970697523, 34.557823267950525], [-77.29716902730064, 34.55778505290542], [-77.29728357640218, 34.55773220058093], [-77.29742882989576, 34.55766315314858], [-77.29750705733264, 34.557625130561505], [-77.2977089337628, 34.557551142938664], [-77.29790343595795, 34.5574680487159], [-77.29797588911124, 34.557432727554364], [-77.29814428063105, 34.55736391941052], [-77.29825413940864, 34.55731981415457], [-77.29830009312472, 34.557299105513344], [-77.29843952854394, 34.55723556693431], [-77.2986968154413, 34.55712733153018], [-77.29883519333525, 34.557105947522246], [-77.29909207677258, 34.55701737317563], [-77.2993474491061, 34.55685856547665], [-77.2998618187905, 34.55664311586063], [-77.29988645060834, 34.55663410869812], [-77.29989581271076, 34.556628772649105], [-77.29991508528926, 34.55662024910439], [-77.30028366142483, 34.55644134266916], [-77.3004226088992, 34.556388472314225], [-77.3006805189801, 34.55626347187693], [-77.30096471613032, 34.55615563005392], [-77.30134977607578, 34.55600099907238], [-77.30147325039708, 34.5559492237897], [-77.30152894163575, 34.55593356143406], [-77.30181861540402, 34.555857503914325], [-77.30186836900361, 34.55584490079927], [-77.30213834917424, 34.55573350068346], [-77.3022645063976, 34.5556973067994], [-77.30265988152591, 34.555493279278075], [-77.30266199514928, 34.55549230276248], [-77.3026630049614, 34.555492155052185], [-77.30305936153744, 34.55529240652653], [-77.30315702980877, 34.55523588771245], [-77.3034406192594, 34.55513512695262], [-77.30374542388918, 34.55502558804558], [-77.30385203010306, 34.55498001156009], [-77.30417571872707, 34.55473827678716], [-77.30425254731901, 34.55464606427246], [-77.30431110336968, 34.55455576864665], [-77.30436384476491, 34.55451301673608], [-77.30450267018556, 34.55440062679548], [-77.30465259440317, 34.55433195038222], [-77.30490155164819, 34.55428136803179], [-77.30525438740145, 34.554269879550475], [-77.30544035611878, 34.554227406814135], [-77.30591982263928, 34.55399417741426], [-77.30623457760558, 34.5538481414866], [-77.30633271254476, 34.55380131215721], [-77.30688055042474, 34.553662177418076], [-77.30700676638926, 34.55363273028638], [-77.30702509397025, 34.55362613211613], [-77.30757168402207, 34.553410987849325], [-77.3078183446747, 34.553287591794636], [-77.30802362072977, 34.553134216308514], [-77.30834460160197, 34.55296239891684], [-77.30851006908455, 34.552874253596116], [-77.308614700622, 34.55281659391447], [-77.30899369579079, 34.552612916339584], [-77.3090744983886, 34.55257448339945], [-77.3094095503013, 34.55240933936545], [-77.30952914985298, 34.55237682146036], [-77.30965696595102, 34.55228437764755], [-77.31001247082395, 34.55211533430267], [-77.31020377297354, 34.552028450563284], [-77.31050007445204, 34.551855932828374], [-77.31060156049894, 34.55180907567879], [-77.31075316775002, 34.55173075750959], [-77.31089613960816, 34.551679878668125], [-77.31099763319003, 34.55166268498415], [-77.31112077288381, 34.55166135441111], [-77.311173721847, 34.55157699353285], [-77.3115902629845, 34.55139312962106], [-77.3116769674914, 34.55125992709313], [-77.31179514730906, 34.551140839240084], [-77.3118924253663, 34.55104340944436], [-77.31194642957509, 34.55097642651562], [-77.31217901400026, 34.55070998724408], [-77.31219396237397, 34.55069338508589], [-77.31243005969921, 34.55041736254988], [-77.31250355856497, 34.550347286177995], [-77.31260158581458, 34.55023795114083], [-77.3128422443045, 34.55001535565437], [-77.31290882110795, 34.549858995717486], [-77.3129395153483, 34.54981428907513], [-77.3130064858851, 34.54971453263014], [-77.31306562280804, 34.54962726689833], [-77.31307674704043, 34.54959007211694], [-77.31320893421633, 34.54945281624289], [-77.31321174135076, 34.549449991082746], [-77.31321455042202, 34.549447878684425], [-77.31324764312168, 34.54941947797994], [-77.3133878097385, 34.54930059344358], [-77.31338852959513, 34.54928765258889], [-77.31340930549153, 34.5492796639796], [-77.31358957656019, 34.54913712914437], [-77.31374102916868, 34.54900505975136], [-77.31375700993638, 34.54897023463426], [-77.31380990159678, 34.548939501692175], [-77.31395496920544, 34.548818207557595], [-77.31404557032792, 34.5487165153737], [-77.31409578476553, 34.54863834942779], [-77.3142114427544, 34.54855886250198], [-77.3142838503263, 34.54848150406552], [-77.31436088618571, 34.5484264227117], [-77.31445700176428, 34.548317394783346], [-77.3145754608451, 34.54815079692921], [-77.31461433880148, 34.548120226204425], [-77.31476521348966, 34.547970625592164], [-77.31485940214284, 34.54786520826083], [-77.31492179586172, 34.54779844721159], [-77.31498707332045, 34.54772446744371], [-77.31501698193671, 34.547692209454546], [-77.31507820014623, 34.54762618229518], [-77.31511771507081, 34.547583299657376], [-77.31521841500987, 34.5474733737318], [-77.3152485256769, 34.54746069748382], [-77.31529605291887, 34.54738811626131], [-77.315364862138, 34.54730299381811], [-77.31537538040891, 34.54727404123756], [-77.3154199460131, 34.54725031092317], [-77.31554609500633, 34.54710874623211], [-77.31563846003667, 34.54701888828028], [-77.31570887532959, 34.54693958708714], [-77.31575106200386, 34.54688031067117], [-77.315823007983, 34.546804049926706], [-77.31585952840368, 34.546764521830866], [-77.3158836057056, 34.54673886863704], [-77.31599906395319, 34.54661526285815], [-77.31601572715552, 34.54659748708235], [-77.31601842012772, 34.54659346910294], [-77.31613795301011, 34.54645752649337], [-77.31618173907194, 34.54642457262355], [-77.3162255436201, 34.546380093466965], [-77.31626381411466, 34.54634032687146], [-77.31630522668364, 34.54631109569121], [-77.31636270016072, 34.54626426844076], [-77.31661404733688, 34.546150248383185], [-77.31662360920971, 34.54614698024653], [-77.31662986655144, 34.54614594832426], [-77.31664088366831, 34.54614047917936], [-77.3169183390026, 34.54603800438893], [-77.31702116146711, 34.545935709689715], [-77.3171183690346, 34.545886987235846], [-77.3171380374919, 34.545824259048274], [-77.3171727897881, 34.54572775293945], [-77.31720397600948, 34.545680244126444], [-77.31722367504868, 34.545670281747356], [-77.31725452438604, 34.545665948489514], [-77.31732236599154, 34.54564723131281], [-77.31741520637993, 34.5456588994631], [-77.31742023128923, 34.54565947440614], [-77.31742687163268, 34.545660365540854], [-77.31752180613742, 34.545705131313824], [-77.31776699977775, 34.545706010472465], [-77.3178116368519, 34.545710834912576], [-77.3178752272754, 34.54571836815267], [-77.3180725153277, 34.54577128691204], [-77.31819997516206, 34.54589338879779], [-77.31822566787929, 34.54591284030264], [-77.31832282976595, 34.54606459207732], [-77.31835691278118, 34.5461387986546], [-77.31841637708979, 34.546270695167664], [-77.31845007920909, 34.546370226989275], [-77.31849032190172, 34.54642052650111], [-77.31858033335516, 34.54641736698494], [-77.31874858697144, 34.546466527200074], [-77.31883034674809, 34.546472297890546], [-77.31897169055361, 34.54647096713965], [-77.31906204984368, 34.5464707874621], [-77.31936442435133, 34.546465675637656], [-77.31946725746579, 34.54646891830047], [-77.3196718316594, 34.54649227032334], [-77.31975610149175, 34.54650560423007], [-77.319905161107, 34.54649885727427], [-77.32026692215595, 34.546524859351194], [-77.32054102608144, 34.5465182574768], [-77.32088915514727, 34.54648118049405], [-77.32093449216953, 34.54648159133719], [-77.3209615095465, 34.54648220572377], [-77.32102909113138, 34.54648935188479], [-77.3212459237044, 34.54650842744586], [-77.32132553454176, 34.54654872853102], [-77.32144561727485, 34.54659871562927], [-77.3217166704658, 34.54661188010129], [-77.32174036664199, 34.546617121231705], [-77.32177671614272, 34.546626750693726], [-77.3219777906279, 34.546678876705315], [-77.32207757504631, 34.546705930407626], [-77.32209500008192, 34.546710890723645], [-77.32210650195893, 34.54673095203597], [-77.32216217720003, 34.54678074032793], [-77.32219298428792, 34.54681175473575], [-77.32214583564237, 34.54703439975258], [-77.32214168519364, 34.54706393796763], [-77.32252796258112, 34.54722802943839], [-77.32287700740696, 34.54736181806726], [-77.32298131409675, 34.54736779658044], [-77.32326981093973, 34.54735366076535], [-77.32344835142277, 34.5473658164495], [-77.32360688902659, 34.54737732101268], [-77.32366150312288, 34.547393159551966], [-77.32402240941089, 34.54752814228865], [-77.32402324423045, 34.54754506440109], [-77.32415726496319, 34.54775357693593], [-77.32431711349876, 34.54780543747397], [-77.32443625780465, 34.547842452936095], [-77.32457641005921, 34.5479381609782], [-77.32468729060918, 34.54800810360402], [-77.32482417814666, 34.5480439269174], [-77.32489972949614, 34.548088752704444], [-77.32500864459071, 34.548120862312246], [-77.32506815826522, 34.54820268447037], [-77.32521344359783, 34.548187741897884], [-77.3254088278835, 34.54818514748318], [-77.32560601296862, 34.54818976775132], [-77.32578747567102, 34.548141307604894], [-77.3259988766688, 34.54817915149579], [-77.32635763074303, 34.548192732712465], [-77.32678507851656, 34.54813751129398], [-77.32695735370501, 34.54822179628689], [-77.32709965620042, 34.548309989386745], [-77.32710259372406, 34.54851300254419], [-77.32710538857033, 34.54859246345209], [-77.32715238370848, 34.54879204032574], [-77.32716214555083, 34.54880559113526], [-77.32724247446808, 34.548971411887564], [-77.32740558152469, 34.5490004647991], [-77.32754947162438, 34.54903305373332], [-77.32780222394504, 34.549030705263014], [-77.32794258861814, 34.54901168717126], [-77.32807282757622, 34.548985393734114], [-77.32818141187238, 34.54898524129076], [-77.32833573257523, 34.54898914822383], [-77.32833591535223, 34.54898916013466], [-77.32847674354971, 34.54900319626626], [-77.3286594905006, 34.54902260701464], [-77.32872751557284, 34.54902511887049], [-77.32882792410258, 34.54904085051261], [-77.32899911010128, 34.549090757875916], [-77.32911773381365, 34.5491283999481], [-77.32935523974211, 34.54920987153893], [-77.32939858476017, 34.549271262811125], [-77.32950669176422, 34.54928593461395], [-77.32970719230767, 34.549404097285915], [-77.32979462334279, 34.549454366871736], [-77.32984722178256, 34.54960086787629], [-77.32979315780526, 34.54963655556129], [-77.32967269809538, 34.54976431523755], [-77.32954821136383, 34.54991657826621], [-77.32983118298775, 34.55033830394304], [-77.32983683562419, 34.55036472209512], [-77.32983626110796, 34.550388146368384], [-77.32987293725928, 34.55042079421545], [-77.33062240647335, 34.5507588465015], [-77.33065027139116, 34.55076160101828], [-77.33068241396359, 34.55075271943202], [-77.33074805781276, 34.550723369994074], [-77.33134032505862, 34.55057618651462], [-77.3314441691062, 34.5503893926051], [-77.3315475984756, 34.55018026884313], [-77.33165789564373, 34.550102949221326], [-77.33184495403685, 34.550037943726956], [-77.33216657256143, 34.54998477925855], [-77.33223908554405, 34.54997297847839], [-77.33232286491628, 34.54995536948365], [-77.33263356451828, 34.54989301051945], [-77.33300160705267, 34.54989447028984], [-77.33302624332607, 34.54989058832634], [-77.33303862111386, 34.549896648702784], [-77.33305256435365, 34.54990244981547], [-77.33311686793009, 34.549950580961415], [-77.33330691476701, 34.55011069818114], [-77.33329717496638, 34.55018373670807], [-77.33331898507336, 34.55035377832341], [-77.33337935025688, 34.550604231041035], [-77.33379371983018, 34.550656673386406], [-77.33382950636218, 34.55074640099142], [-77.33387650833488, 34.5507632552004], [-77.33418001392896, 34.550929725123254], [-77.33424157978693, 34.55091737358109], [-77.33446802622422, 34.55085673958061], [-77.33457447040094, 34.55085081783027], [-77.33485352187861, 34.55079598840473], [-77.33496937248503, 34.55075264969884], [-77.33518941050069, 34.55068310709946], [-77.33536365232436, 34.5506812873713], [-77.33562652793967, 34.55067546442592], [-77.33580619446083, 34.55069923437885], [-77.3361469259829, 34.55076664766685], [-77.33650798705696, 34.55087452236424], [-77.33671377757831, 34.55097805847531], [-77.33683517471933, 34.55126380206411], [-77.33679907976683, 34.55132229859236], [-77.33685709581849, 34.55135231587417], [-77.33691834070976, 34.55136419187714], [-77.33701014480239, 34.55147788078142], [-77.33714730310308, 34.55151704182188], [-77.33719058782357, 34.55158272426645], [-77.33730631311168, 34.55156530353993], [-77.33754330902657, 34.551608493560565], [-77.33769735691996, 34.551633798387506], [-77.33778975024882, 34.551612175142836], [-77.33783784484817, 34.551662557232554], [-77.33808656536343, 34.55178162625762], [-77.3382753412927, 34.5517275317783], [-77.33847957696594, 34.55176513472721], [-77.33872098263112, 34.5516849208731], [-77.33871998109123, 34.55153569772422], [-77.33875306826896, 34.55145213774], [-77.33883059024517, 34.5513973819217], [-77.3388809477047, 34.55138727091754], [-77.33889006740878, 34.55138882826232], [-77.33899749940292, 34.551422602960336], [-77.33907669322446, 34.55141184838975], [-77.33908776254925, 34.55141465838168], [-77.33910563805205, 34.55141903023915], [-77.3391254707798, 34.55142486012629], [-77.33914048558206, 34.55143511069189], [-77.33917350111206, 34.55147017939199], [-77.33917420713439, 34.55147037328279], [-77.33921762240071, 34.55149742964649], [-77.33927023603493, 34.55153167094505], [-77.339379177109, 34.551563303766926], [-77.33939440795695, 34.55160503858421], [-77.33946054018921, 34.55167401098921], [-77.33947268443411, 34.55178716417642], [-77.3397218829925, 34.551881241976545], [-77.339857959163, 34.551978400679175], [-77.33996397824448, 34.55228992767664], [-77.33995857490186, 34.55233683676279], [-77.33999266402643, 34.55235918131777], [-77.3400355758041, 34.55239320898269], [-77.34014940624468, 34.552380179622205], [-77.34042675361081, 34.55245614130747], [-77.3405075693975, 34.55245235914711], [-77.34081621269951, 34.55259347026187], [-77.34094562076795, 34.55260367264728], [-77.34141567003468, 34.552499692899445], [-77.34160514958563, 34.552434558865016], [-77.34189663703557, 34.55236694239408], [-77.3423522519984, 34.552482184482365], [-77.34236570113924, 34.5524947917899], [-77.34238906704564, 34.5524928861778], [-77.34241178754124, 34.5524877132516], [-77.34278071028176, 34.552535727445466], [-77.34286667185508, 34.55259850308873], [-77.34317335901908, 34.55253501665146], [-77.34327957510561, 34.55252749020243], [-77.34337025834913, 34.55250974574421], [-77.34345922221318, 34.55251226063614], [-77.3434683838208, 34.55251115629546], [-77.34349784659273, 34.55251949880521], [-77.34356591159202, 34.552538468352296], [-77.34357736206792, 34.55254356097103], [-77.34359467667227, 34.55254828321283], [-77.34381185336615, 34.55260751438444], [-77.34388851617881, 34.55262842269065], [-77.34395565743728, 34.55266357272051], [-77.34404034009417, 34.55267601021244], [-77.34405358008622, 34.5526737815212], [-77.34409612611638, 34.55268647288363], [-77.34415104217433, 34.552703955843306], [-77.3441727177714, 34.55270994801558], [-77.3442094530701, 34.55278942249727], [-77.34434366930812, 34.552863897134316], [-77.3444366497576, 34.55285889398677], [-77.34454077723936, 34.55282959301866], [-77.34467839796841, 34.5528456523751], [-77.34473636695719, 34.55286111370126], [-77.34474860019331, 34.55286424791889], [-77.3447639805107, 34.55286970815298], [-77.34485655133305, 34.55290325561573], [-77.34493090731712, 34.55293814670336], [-77.34495602037117, 34.55294868011718], [-77.34512442700202, 34.55305946201426], [-77.34512746215759, 34.55306033070108], [-77.34513197577277, 34.55306158634341], [-77.3451603933579, 34.55308022259686], [-77.34526632969585, 34.5531966243626], [-77.3453525411643, 34.55327467383047], [-77.3454119755076, 34.553451047384065], [-77.34540778239018, 34.55351154589766], [-77.34550541657529, 34.55356460384333], [-77.34571110054968, 34.55382554727271], [-77.34600159717232, 34.55391575311846], [-77.34615808006467, 34.55397009899846], [-77.34628166314073, 34.55395632147133], [-77.34640650252456, 34.55393503304977], [-77.34667596363916, 34.553884161317775], [-77.34689055502935, 34.553787854214406], [-77.34695979848216, 34.553707512828474], [-77.34707416431307, 34.55364263919148], [-77.34713524573955, 34.553713543609064], [-77.34721555629083, 34.55374109252425], [-77.34727250977747, 34.55385968910665], [-77.34739089423938, 34.554002842298395], [-77.3477783283314, 34.554149759075585], [-77.34780732280285, 34.55417050376116], [-77.34784655013078, 34.55420235818898], [-77.34793201409789, 34.55418062265357], [-77.34834702783016, 34.554244898957975], [-77.34835240194897, 34.55431197678097], [-77.34846537429634, 34.55444016621235], [-77.34850617456995, 34.55453467069323], [-77.34849005035107, 34.554619407388444], [-77.34861818405687, 34.55479518966474], [-77.3488013673772, 34.5548665919614], [-77.34923602174428, 34.55491929030711], [-77.34907231403014, 34.555144318580105], [-77.34915805033502, 34.5554201496409], [-77.34923856289585, 34.555809939316454], [-77.34891976384418, 34.556433721200186], [-77.34857920116009, 34.556704481201166], [-77.34810801731939, 34.55774162864951], [-77.34700146078589, 34.5597600359977], [-77.34672731258436, 34.55985016255342], [-77.3439267426086, 34.56046518843544], [-77.34384952456334, 34.56042520557023], [-77.34378714319976, 34.56050134935405], [-77.3437575195942, 34.56057278103963], [-77.34377568402078, 34.56064957152629], [-77.34384889280962, 34.56131110563059], [-77.34394658092411, 34.56224376620815], [-77.3450063500599, 34.56254118567514], [-77.34542335689949, 34.56318075018815], [-77.34584650019475, 34.5636686417395], [-77.3464001556244, 34.56423372928792], [-77.34699818834815, 34.564611111259076], [-77.34794828956507, 34.564389978614585], [-77.3491776214747, 34.564237338921316], [-77.35014986798463, 34.56454777057941], [-77.35038306886455, 34.56471412461462], [-77.35137461904269, 34.56494949436663], [-77.35248518958475, 34.56523054909927], [-77.35330109425438, 34.56522788032673], [-77.35378442987762, 34.56540185307261], [-77.35444410588588, 34.5653615477663], [-77.35487703511356, 34.565031137531925], [-77.3551808549773, 34.56539420838946], [-77.35531339795331, 34.565702773333086], [-77.35566446656196, 34.56587488794374], [-77.35645092420346, 34.56553903766582], [-77.35645173979734, 34.56553802164283], [-77.35645257422944, 34.56553700290641], [-77.35645340185218, 34.56553778864245], [-77.35645363044893, 34.565538648115655], [-77.35724038331556, 34.565730634014], [-77.35738479200084, 34.56556012966276], [-77.358017013686, 34.56532599384026], [-77.35802852256207, 34.565318862560886], [-77.35803615649729, 34.565319066495945], [-77.35868964974837, 34.56535337316285], [-77.35881637054112, 34.56544098364149], [-77.35929331487522, 34.5654649569159], [-77.35960391886297, 34.566142469298526], [-77.3599643484863, 34.56634292215652], [-77.36103252229802, 34.56641914127975], [-77.36117962351985, 34.566410810195705], [-77.36128404963797, 34.56642890077119], [-77.36155755980297, 34.566502064174955], [-77.36196744585467, 34.56661297537623], [-77.36220614404904, 34.567000343156614], [-77.3623698584249, 34.56723420995448], [-77.36275490155707, 34.567582848979], [-77.36306449604464, 34.567649627925555], [-77.36339419153121, 34.567935818934444], [-77.36354247898589, 34.5683342881041], [-77.36364436803946, 34.568638948867545], [-77.3637848602614, 34.56872867225807], [-77.36417209378604, 34.569351912013616], [-77.36424200249871, 34.56951195262474], [-77.36426545942587, 34.56957795454821], [-77.36380595359823, 34.57127296563722], [-77.36355044828983, 34.5721693943529], [-77.3629204401037, 34.57309869787401], [-77.36347009088905, 34.57394381200734], [-77.36432768728608, 34.57426550797895], [-77.36489071439183, 34.57451320194738], [-77.36562531604497, 34.57470715202192], [-77.36590347407814, 34.574726428781624], [-77.36679019853798, 34.57519535628827], [-77.3680687670589, 34.57511854412861], [-77.36819725896815, 34.57573522370534], [-77.36905489605753, 34.57614928034427], [-77.36957644238352, 34.576672590095036], [-77.3703108697215, 34.57712901231064], [-77.37052722384072, 34.57720914449584], [-77.37063048433015, 34.57728511181371], [-77.37093702771854, 34.57736915778998], [-77.37141839483078, 34.57758234632774], [-77.37152226710413, 34.5776916569579], [-77.37185579555174, 34.57775557815871], [-77.37220630396277, 34.57789837501237], [-77.37272503605931, 34.57792051250703], [-77.37299433173233, 34.57789346310068], [-77.37369763930307, 34.57833934776575], [-77.37371624882003, 34.5784077096849], [-77.37378218159678, 34.57840710809101], [-77.37422539637784, 34.57874100332888], [-77.37424974419577, 34.578259799712555], [-77.37517875818511, 34.57793237942071], [-77.3753585383269, 34.577490793866005], [-77.3756507050559, 34.57667423010634], [-77.37794232220013, 34.576029458449845], [-77.37828333375897, 34.575734856690595], [-77.3785111287942, 34.57571617694472], [-77.37861580010343, 34.5758195812461], [-77.37996344595824, 34.57560485817302], [-77.38008716777182, 34.57559160607606], [-77.38021711575814, 34.57556159091277], [-77.38135213597236, 34.57520274179963], [-77.38166328353323, 34.575136466061515], [-77.381912294125, 34.57518892151792], [-77.38244627939247, 34.575380293117234], [-77.38245121944635, 34.57538676737584], [-77.38278829926682, 34.57581677723598], [-77.3829302524705, 34.576676175667316], [-77.38302420727149, 34.576995241979446], [-77.38304235159643, 34.57720430545782], [-77.38247041507995, 34.57877333198924], [-77.38227241480485, 34.57945938567754], [-77.38223207725166, 34.579656819915996], [-77.3821768931191, 34.579959190457856], [-77.38229005941896, 34.580325208678055], [-77.38233508059332, 34.58049110268907], [-77.38241152712183, 34.580521532922965], [-77.38244998440298, 34.58056744562078], [-77.3828929765206, 34.58078242747825], [-77.38323790975274, 34.581104682559854], [-77.38342427621653, 34.58118322532604], [-77.38385612677443, 34.58130392105799], [-77.38465093861869, 34.58185552219001], [-77.38473733539645, 34.58192550364058], [-77.38481381424859, 34.58206542982736], [-77.38576565026658, 34.58339308121752], [-77.38596048404696, 34.5838273575759], [-77.3860088638401, 34.58464621417234], [-77.38572985893495, 34.58509650790465], [-77.38605966469757, 34.58540413769959], [-77.38638931023877, 34.58540589030301], [-77.38697504729922, 34.585984035357555], [-77.38717728524028, 34.58606622913767], [-77.38778727785672, 34.58649814711818], [-77.38789674555005, 34.58655622825949], [-77.38796529450875, 34.58659596449525], [-77.38813635518088, 34.586632128631784], [-77.38875338627619, 34.5866618898651], [-77.38927776865575, 34.58656738861211], [-77.38954151908624, 34.58645503631501], [-77.3897165424749, 34.58640853149599], [-77.3903296380663, 34.58631814394479], [-77.39070395789761, 34.586077570426205], [-77.39083821821498, 34.5857569597108], [-77.39111787088257, 34.58527721686329], [-77.39176246936515, 34.585230388769475], [-77.39194675577801, 34.58509313437602], [-77.3919845800993, 34.58504374594878], [-77.39269414431305, 34.58439838970499], [-77.39293373771189, 34.58431585816194], [-77.39339245752811, 34.58399154717895], [-77.39380679152868, 34.58343225788662], [-77.39409426116617, 34.58304118053872], [-77.39427044357612, 34.582878380280754], [-77.39489023736232, 34.58274503878013], [-77.39524709263702, 34.58267170336996], [-77.39584661112667, 34.582357130006294], [-77.39613127762365, 34.58220491384107], [-77.39627556986356, 34.581877377557795], [-77.39698026415203, 34.58129888259447], [-77.397422796546, 34.58114521106063], [-77.39765470014186, 34.58107914885473], [-77.39781682306929, 34.581085313884266], [-77.39793202676567, 34.58108969436253], [-77.39821084630422, 34.581082353720575], [-77.39829354283017, 34.58107256416494], [-77.39849781951236, 34.58101684595016], [-77.39860487673295, 34.58090793236749], [-77.39876912549789, 34.5806684805435], [-77.39886350733148, 34.5805089562509], [-77.39899892341829, 34.58026238335914], [-77.39902562805501, 34.58020689734698], [-77.39915354021781, 34.580021843778276], [-77.39918982249274, 34.57997091921597], [-77.39919285856946, 34.579967156908374], [-77.39937583390281, 34.57973179271858], [-77.39938739829849, 34.57972413043611], [-77.39939296055219, 34.57972497437976], [-77.39973569008603, 34.57962460041328], [-77.39978698146724, 34.57957009509519], [-77.40013782312175, 34.579197267879444], [-77.40016062391965, 34.57917201380728], [-77.40036742128683, 34.578963268265774], [-77.40057502464478, 34.57896929478104], [-77.40074242231015, 34.57886582887231], [-77.40133348067579, 34.57863202247626], [-77.40136305335331, 34.57863321980347], [-77.40140466206526, 34.578634719839286], [-77.40145612241227, 34.57858245740834], [-77.40196663650212, 34.57831003658525], [-77.40215107559374, 34.57828229665826], [-77.40278774347782, 34.57822719142256], [-77.40293909334355, 34.57826017455191], [-77.4032294131401, 34.57801369461814], [-77.40341479483573, 34.577963243876724], [-77.40343131479652, 34.57787282514634], [-77.40372710233255, 34.577757722828096], [-77.40404797622213, 34.57770501681944], [-77.4042209172717, 34.57765130544312], [-77.40451511073468, 34.577605095256004], [-77.40470083588674, 34.57746515501334], [-77.4047291091224, 34.577454903344645], [-77.40490911329886, 34.577514179995994], [-77.4052364768328, 34.5772595023083], [-77.40530311217907, 34.5773442729359], [-77.4059759440402, 34.57793011483781], [-77.4059983740122, 34.57802685100241], [-77.40592869244648, 34.57878608800678], [-77.4060958338362, 34.57960613693706], [-77.40687928234243, 34.58015451773884], [-77.40697625705651, 34.58033318359517], [-77.40703033892584, 34.58048812796335], [-77.40735165521085, 34.581468378796465], [-77.40742220453356, 34.58196712068753], [-77.40714361053173, 34.58229202753855], [-77.4071955534685, 34.58335755670508], [-77.40725924560856, 34.58368895642388], [-77.40766758396401, 34.58415278019707], [-77.40778569577961, 34.58433486399748], [-77.40790200265572, 34.584445327725525], [-77.40817003723927, 34.58471443683595], [-77.40828850641276, 34.585058510130814], [-77.40819695699155, 34.58525190543187], [-77.40830870574065, 34.58539421570079], [-77.40831717010379, 34.58593434149438], [-77.40804487489527, 34.5861230162324], [-77.40781023869611, 34.58631043370899], [-77.40730679176161, 34.58707871507323], [-77.40746694950059, 34.587688310269], [-77.40735655645321, 34.588256114834756], [-77.40707528532893, 34.588810444523375], [-77.4070098902061, 34.58896004286953], [-77.40687984849669, 34.58965652983329], [-77.40668958134373, 34.59035938063122], [-77.40669984903916, 34.59056294696428], [-77.40665428332595, 34.59081262968813], [-77.40631860578875, 34.59171145219382], [-77.40536143296497, 34.59245443250484], [-77.4053037426143, 34.592799014448275], [-77.4050723047322, 34.59394506142436], [-77.4049651912683, 34.59420992561759], [-77.40489573860418, 34.5946596121407], [-77.40470717168081, 34.595302616943634], [-77.40398171467281, 34.59605016010565], [-77.40382476542986, 34.59617756409261], [-77.40372753248703, 34.59622972798671], [-77.40299955464593, 34.597105888776326], [-77.40278406707667, 34.597239444838806], [-77.4021511741233, 34.597650295698806], [-77.40190355110784, 34.59778156713685], [-77.4016830084864, 34.59808016224524], [-77.40136297553569, 34.598558933989224], [-77.40123628071849, 34.59885727649759], [-77.40107179724805, 34.599017499656675], [-77.40057476037757, 34.59940712172468], [-77.40026567859884, 34.59964998137259], [-77.39988063648073, 34.60003850352504], [-77.39978653122697, 34.600124956716215], [-77.39929910179592, 34.60044644952029], [-77.3989982922277, 34.60069677744642], [-77.39840887067952, 34.60131416434129], [-77.39745004825572, 34.602056967398], [-77.39742177127862, 34.60207316518086], [-77.39740349569453, 34.60207445614485], [-77.39738108906413, 34.60209737565749], [-77.39615640479654, 34.60260921639068], [-77.39604172708783, 34.603139708927074], [-77.39584519981872, 34.60342999171273], [-77.39542932997887, 34.60362919902653], [-77.39514235595807, 34.60411856760679], [-77.39507920579928, 34.60415171278631], [-77.39505689119181, 34.60416125866528], [-77.39477409196232, 34.60447629444168], [-77.39463872669093, 34.60458991953833], [-77.39426859730692, 34.60452517571789], [-77.39361826346038, 34.60518751007555], [-77.39353763180414, 34.60526093495123], [-77.39348025519577, 34.60536388289855], [-77.39278258817038, 34.60615716022846], [-77.3927474260916, 34.60622204804331], [-77.39269189188457, 34.60626075848293], [-77.39241199778112, 34.60651207353306], [-77.39225200887302, 34.60660900631643], [-77.39219911304728, 34.60666586695317], [-77.39190355130643, 34.606778730489054], [-77.39166653077238, 34.60674266228689], [-77.3915909100903, 34.606665783119084], [-77.39134370733574, 34.60636464085083], [-77.39126655104255, 34.606212863508915], [-77.39111533619626, 34.60610761033906], [-77.39047119305229, 34.60548610762632], [-77.38972669640083, 34.60489950266794], [-77.3889212252004, 34.60398288914768], [-77.38796255259832, 34.60374662992724], [-77.38782543800569, 34.60362306901983], [-77.38754172725737, 34.60351624603554], [-77.38678403895867, 34.603196820981], [-77.38638612028609, 34.603184282435286], [-77.38581868923657, 34.603153372184494], [-77.38546499719189, 34.603109617442556], [-77.38538519321202, 34.60297798385575], [-77.38480968788421, 34.60272825555634], [-77.38443057190855, 34.602674853987764], [-77.38402147192916, 34.602528994825896], [-77.38357266394095, 34.60239010376914], [-77.38333132937981, 34.60231924530303], [-77.38323327006907, 34.6022796254642], [-77.3830359404007, 34.602254883609646], [-77.3821199319788, 34.60210057915868], [-77.38165681988467, 34.602040329794015], [-77.38088743185473, 34.601948261366914], [-77.3808482939709, 34.60195546819423], [-77.38070282835412, 34.60195456774946], [-77.38015203192202, 34.60195670897252], [-77.38008033937028, 34.60195388216271], [-77.37999018955215, 34.60196015032434], [-77.3793049500442, 34.602142094258596], [-77.37929203864125, 34.602147073383094], [-77.37928392299933, 34.60215028975352], [-77.37850375920117, 34.602247261115274], [-77.37789894969258, 34.60255628883563], [-77.3773059784074, 34.602884975605335], [-77.37692704814748, 34.602953061703026], [-77.37641744741418, 34.60342115563034], [-77.37593546995129, 34.60412107534094], [-77.37534985238712, 34.60515947683562], [-77.37514338445555, 34.60530294340203], [-77.37418291465575, 34.60588278770615], [-77.37384551377073, 34.60633902082113], [-77.37377289263655, 34.606380055091876], [-77.37356143287685, 34.6063799397232], [-77.3731450684921, 34.606267097719964], [-77.37287466271044, 34.6063604347111], [-77.37219627109596, 34.60647230235594], [-77.37163720221432, 34.60690416306976], [-77.37087669334454, 34.60733855336351], [-77.3706193358835, 34.60742285796478], [-77.37047836834911, 34.607521293716786], [-77.37032889159872, 34.607694623270014], [-77.36960395899875, 34.608403932804414], [-77.36904218942519, 34.60883708966987], [-77.36845082151709, 34.60902640337642], [-77.36783339402287, 34.60975220106352], [-77.36763123873426, 34.6099602507852], [-77.36749722251557, 34.61149883286845], [-77.36746447434739, 34.61155625757809], [-77.366471208156, 34.612275258643244], [-77.36588714004812, 34.61311067113574], [-77.36576314703072, 34.61331325940432], [-77.36565413991092, 34.61346240973447], [-77.36503325295575, 34.614330875760295], [-77.3643097830026, 34.614582151323845], [-77.36391987480513, 34.61499053195982], [-77.36282202664181, 34.615568313797425], [-77.36276591242202, 34.61561230364859], [-77.3627325486354, 34.61565527941865], [-77.36222439412946, 34.61650344117621], [-77.36273188885508, 34.61712965814342], [-77.3628028804866, 34.617192796743694], [-77.36283309030709, 34.61726493730769], [-77.36342357202746, 34.61813273236461], [-77.3639461272399, 34.61880293551492], [-77.36422910331541, 34.62037621088585], [-77.3627301756762, 34.62097617588442], [-77.36186716325925, 34.62156946795467], [-77.36115303236411, 34.62155357903084], [-77.36015570203918, 34.622120458676626], [-77.35957570862149, 34.622459832476125], [-77.35931553567549, 34.62258568344868], [-77.35814032308498, 34.62303491394426], [-77.3579984836173, 34.62309823494013], [-77.35794597815561, 34.62311941022955], [-77.35697959421846, 34.62380325958782], [-77.35642094569802, 34.62429305631057], [-77.35516317806405, 34.62516145052465], [-77.35498003981205, 34.62533489288458], [-77.35465863878842, 34.62557366743195], [-77.35373377441414, 34.62605578974435], [-77.35335103978194, 34.6264827195219], [-77.35263955782634, 34.62698145912312], [-77.3525480474138, 34.62706739474643], [-77.3523813238841, 34.627233725464066], [-77.35186786357231, 34.627766714580424], [-77.35156457695618, 34.62800291264403], [-77.35114962358296, 34.62843052477357], [-77.35075415882517, 34.62871422404109], [-77.35046090514498, 34.62888177497218], [-77.35038567884338, 34.629051666359814], [-77.34981673961357, 34.62927401490454], [-77.34933027700555, 34.629626640929594], [-77.34905430819487, 34.62978435962437], [-77.34877242351303, 34.63003622717447], [-77.34871438909003, 34.63016008781142], [-77.34839965870611, 34.630312647770225], [-77.34825563776896, 34.63065014636953], [-77.34812032908452, 34.630939855000456], [-77.34803789717994, 34.63120633270897], [-77.34781708774233, 34.63165332842831], [-77.34775917674698, 34.63193707425497], [-77.3474035656017, 34.63278107292009], [-77.347362227293, 34.63290088109784], [-77.34731310546061, 34.6329938710648], [-77.34736821004304, 34.63424086348881], [-77.34690866193567, 34.63473741139747], [-77.34675143330543, 34.635906914240266], [-77.34668413841152, 34.63627104312412], [-77.34589737566957, 34.6380283777775], [-77.34580092601374, 34.63811533421362], [-77.34382322890723, 34.63784730795638], [-77.34332148532513, 34.63795419134715], [-77.34273281053161, 34.63791983875164], [-77.34264690293197, 34.63788021806326], [-77.34205227572406, 34.63801031694847], [-77.34171883372781, 34.63798195218692], [-77.34146021894091, 34.63793361304256], [-77.34140256257757, 34.637963188900805], [-77.34139152353005, 34.638002039518575], [-77.34133935939805, 34.638034043321504], [-77.34087778494246, 34.63853781389714], [-77.34057610579677, 34.638575214160625], [-77.34050153003409, 34.63899304276103], [-77.34052658831028, 34.63978216662841], [-77.3406308167833, 34.63996079889568], [-77.34103734018626, 34.64060748396602], [-77.34119595479672, 34.64075310046915], [-77.34134927743688, 34.64088416823583], [-77.34223119084106, 34.64099964504847], [-77.34346781674076, 34.6412749600639], [-77.34379442440033, 34.64030738716756], [-77.3456951764154, 34.638733368470625], [-77.34605900126279, 34.63883243502842], [-77.34811915206906, 34.64311950304227], [-77.34897563327795, 34.64458156205151], [-77.35067272524998, 34.647249501760854], [-77.35183669511534, 34.649086836526145], [-77.35297011325649, 34.65078501343687], [-77.35331179862257, 34.651210610237754], [-77.35402562843828, 34.652977037524494], [-77.35445247140512, 34.65395742966007], [-77.35578658038823, 34.65549751130747], [-77.35722194426793, 34.65613248051842], [-77.35760707622947, 34.65648634683003], [-77.35809754244761, 34.65683272328475], [-77.35854117578097, 34.65693353506975], [-77.35871279813446, 34.65717646421664], [-77.35928114959663, 34.65776520505235], [-77.35992168360802, 34.65930011783104], [-77.3601944310586, 34.65992066586473], [-77.36019574290866, 34.6605483827907], [-77.36014424641075, 34.660771575017506], [-77.36011195666734, 34.66081183376175], [-77.36008757375005, 34.66082574149439], [-77.36001562266141, 34.66090512341208], [-77.35947185856159, 34.660948562247775], [-77.35933563657412, 34.66142168781124], [-77.35934966197428, 34.66172476085602], [-77.35927523551334, 34.662371474818144], [-77.35925632825919, 34.66258159600413], [-77.35926962044039, 34.66269428032047], [-77.3592320857831, 34.66293954515004], [-77.35907512993106, 34.663450502170946], [-77.35908704297744, 34.663601232310064], [-77.35902589675834, 34.66378620078586], [-77.35898265935745, 34.663950594248725], [-77.35901388118714, 34.66405177443759], [-77.35907131587497, 34.66430008206075], [-77.35907716017655, 34.66442499828553], [-77.35920308194999, 34.66469452989298], [-77.35922695173628, 34.66524094945439], [-77.35926437202298, 34.66537405222629], [-77.35925409844883, 34.66544368017573], [-77.35926057139932, 34.6657099955466], [-77.35926499583127, 34.66586135406021], [-77.3592078057749, 34.66626774864461], [-77.35919848282941, 34.66635787938068], [-77.3592118177568, 34.666504003120366], [-77.3591901131683, 34.66684641650503], [-77.35929621177036, 34.66698811216796], [-77.35943121342788, 34.667300678599496], [-77.35935527647108, 34.66773106784066], [-77.35939246258785, 34.667940643168585], [-77.35939105753909, 34.668280971691885], [-77.35939885441186, 34.66848594753124], [-77.35941256846445, 34.668596704197014], [-77.35951743452655, 34.66875099692214], [-77.35955057700146, 34.668834896255994], [-77.35968162762836, 34.66905667351051], [-77.35965661493682, 34.669219262908285], [-77.35964399119557, 34.66944012351698], [-77.35958832644808, 34.66952272100536], [-77.35979763842447, 34.6696872754381], [-77.35985035324741, 34.66971520616528], [-77.35988778398627, 34.66973503854125], [-77.36026914156031, 34.67010988340465], [-77.36031492783857, 34.670145969701835], [-77.36035846196397, 34.67017525073503], [-77.36056502657706, 34.670256723427805], [-77.36106470242692, 34.670357158886745], [-77.36154681984665, 34.67020448480862], [-77.36182698464143, 34.670383226879174], [-77.36184234238696, 34.67054689302257], [-77.36201654007786, 34.670648029564504], [-77.36213161999869, 34.67082875722199], [-77.36222463775775, 34.67104100902262], [-77.36245276603887, 34.67120702509712], [-77.362670707191, 34.671242071028885], [-77.36292570206903, 34.67128969936259], [-77.36302485751465, 34.6712977819697], [-77.3632198762266, 34.671334000514], [-77.36361102672484, 34.67134001826233], [-77.36414702383908, 34.671526588834524], [-77.36451328451773, 34.671644287392766], [-77.36469159952215, 34.671740782508294], [-77.36560212342201, 34.67230139873293], [-77.3656522404229, 34.672344290252845], [-77.36570493520064, 34.67237333032977], [-77.3659532495957, 34.67248076601236], [-77.36674882291608, 34.672900606102104], [-77.36684020757923, 34.673006557764694], [-77.36700374751597, 34.67308354193864], [-77.3677613723547, 34.67353594447773], [-77.36813994702769, 34.67358276030616], [-77.36876665471436, 34.67381601169463], [-77.36885705094556, 34.67388475988827], [-77.36894195911992, 34.67385373883444], [-77.36978490530885, 34.67389315126681], [-77.37004102558252, 34.673929194991956], [-77.37039508206479, 34.67386546173559], [-77.37209202849391, 34.67369362916689], [-77.37250044691554, 34.67370265873744], [-77.37287730015841, 34.673513032059795], [-77.37342871359222, 34.67345283765479], [-77.37379034054953, 34.673381839843884], [-77.37422846010853, 34.67343434628306], [-77.37456980912219, 34.673362641870945], [-77.37498104925075, 34.673402980394165], [-77.37570603551728, 34.67346768741228], [-77.37613532474809, 34.67354974832676], [-77.37627524432764, 34.673626378529086], [-77.37695360484474, 34.67366514662369], [-77.37728840572447, 34.673700636778186], [-77.3773663950203, 34.67366301051737], [-77.37787047213186, 34.67375702402497], [-77.37830934664062, 34.67363697987313], [-77.37851694106384, 34.67359130230563], [-77.37870957217325, 34.67357720401971], [-77.37949900917211, 34.673509329599824], [-77.37972665066744, 34.67354687042645], [-77.38018556286686, 34.67360908783079], [-77.38039665521717, 34.67360656890479], [-77.38083044236808, 34.67386774130984], [-77.38117467065892, 34.674059352999315], [-77.38072435256794, 34.674931340283365], [-77.38069904974276, 34.675340298501816], [-77.38054155575058, 34.676096037259356], [-77.37961743401442, 34.67693411752088], [-77.37944837529601, 34.6772212072212], [-77.37847367713405, 34.6778680956383], [-77.37815531789911, 34.67819077079988], [-77.37779479348126, 34.67842343292666], [-77.37691274086991, 34.67912345954244], [-77.37658502912188, 34.67935158072], [-77.37542604730322, 34.680122641626056], [-77.37457382083684, 34.680121656899786], [-77.37419242677832, 34.68024913761285], [-77.37304876455556, 34.681025636887185], [-77.3728909284467, 34.68118270913621], [-77.37270124255451, 34.68126358970027], [-77.37221953301986, 34.681480659028026], [-77.37131487700006, 34.68191655106465], [-77.371051583288, 34.68159143017146], [-77.37078476183302, 34.68133688484435], [-77.3704992357571, 34.68122820165675], [-77.37031632125866, 34.68123255657801], [-77.37001032422526, 34.68118226356602], [-77.36976183043708, 34.68108090613207], [-77.36962554443534, 34.68111239141267], [-77.36921342587858, 34.680908277219245], [-77.36899745140195, 34.68080748157073], [-77.36863696263838, 34.68065733239194], [-77.3682749697611, 34.680575244837804], [-77.36815204181698, 34.680440929655774], [-77.36773138008593, 34.68020527434316], [-77.36762258751172, 34.68020300259965], [-77.36722557372556, 34.67999036921757], [-77.36710351284067, 34.67992930488654], [-77.36705625145464, 34.67993657878405], [-77.36698355434797, 34.67990980003529], [-77.36666247274226, 34.67984551044222], [-77.36655055970341, 34.67977238672136], [-77.36629554745703, 34.67980419338429], [-77.36618653620008, 34.67981769492242], [-77.36591278166338, 34.67990783436095], [-77.36566566733879, 34.67988405560413], [-77.36557251915764, 34.679896184568605], [-77.36530325342912, 34.67994590705746], [-77.36501617830382, 34.67993026490666], [-77.36468375047673, 34.68001835167472], [-77.36424487548167, 34.67979877342439], [-77.3641793684907, 34.679786036215525], [-77.36415616218663, 34.67977401728832], [-77.36408295200675, 34.679757500237976], [-77.36353427508314, 34.67985466963181], [-77.36327146593027, 34.67969653221459], [-77.36301976000738, 34.67956529319012], [-77.36296775129486, 34.67953612021291], [-77.3627423726924, 34.67951783923491], [-77.36250586421887, 34.67949747532152], [-77.36245645940996, 34.67944404525485], [-77.36234048180839, 34.67948930548713], [-77.36130227588153, 34.67963559076464], [-77.36121520238204, 34.67959665763769], [-77.36105356962139, 34.67962492205256], [-77.36085942529795, 34.67977654387334], [-77.36063665776838, 34.68014799610658], [-77.36049392457406, 34.680405244776225], [-77.36049435213334, 34.680801473526195], [-77.35943899631062, 34.681592502160875], [-77.35923094652776, 34.68183853348851], [-77.35872343261055, 34.681995831813545], [-77.35870708264622, 34.68201236478145], [-77.35868018574578, 34.68202546623922], [-77.35824888287692, 34.682244406389884], [-77.35798497772224, 34.682477998743686], [-77.35777739680925, 34.68234900194439], [-77.35760958165096, 34.68231590143093], [-77.35740585940775, 34.68241117676553], [-77.35712362582079, 34.68252333757317], [-77.35708670106158, 34.6827317287358], [-77.35657303439538, 34.683218414645026], [-77.35646052691558, 34.683211979711785], [-77.3559371317743, 34.683347194789825], [-77.35590378898989, 34.68335666914549], [-77.35590399960293, 34.683381552235154], [-77.35583336310208, 34.683451175009026], [-77.35560362866742, 34.683728821237274], [-77.35561015661983, 34.68390929291901], [-77.35554974243941, 34.684000176451406], [-77.35555175435753, 34.684062135636346], [-77.35569294260108, 34.68414161593556], [-77.35570428376882, 34.68414935459445], [-77.35574988347653, 34.68413379582253], [-77.35593885673131, 34.68402600821], [-77.35617895127001, 34.68383117514984], [-77.35648988911916, 34.683504859158575], [-77.35674535880982, 34.68346448676212], [-77.35710356023029, 34.68345266883526], [-77.3575961265021, 34.68314914409477], [-77.3577625022406, 34.68308970471155], [-77.35782382662133, 34.683033219264544], [-77.35841145328872, 34.682549766489124], [-77.35852370649624, 34.68248803580853], [-77.35859189238735, 34.68244904990102], [-77.35869518781955, 34.6824309524802], [-77.35913742359651, 34.682393855894816], [-77.35921820730583, 34.682353250771435], [-77.35960609047574, 34.6821710907118], [-77.35988590483012, 34.68185983564817], [-77.3607607874711, 34.68116251754659], [-77.361004195439, 34.68085758565754], [-77.36179940145348, 34.68082978696162], [-77.36204696239287, 34.680855206507985], [-77.36236237255838, 34.68103221772419], [-77.36245401742597, 34.68111429839253], [-77.36255599382164, 34.681163504129046], [-77.36274126501594, 34.68128739429178], [-77.36295894919141, 34.68131395007917], [-77.36313071001825, 34.681245451212895], [-77.36347155277551, 34.68111941712364], [-77.3638131282034, 34.680956228003225], [-77.36397195465614, 34.680935500003734], [-77.36417728718365, 34.68097033851719], [-77.36437801806571, 34.681072032383], [-77.36454418691878, 34.68108210940446], [-77.3646431324007, 34.681206216866244], [-77.36490191984686, 34.68132910251658], [-77.36516091463886, 34.68139578194945], [-77.36544145747938, 34.68153228965617], [-77.36577775095324, 34.681709371491], [-77.36582215135735, 34.68201897702678], [-77.36588529614063, 34.682065322107015], [-77.36626800462881, 34.682120414968345], [-77.36643922305551, 34.6822189341751], [-77.36680301050552, 34.68249700603647], [-77.36727456038265, 34.68279415361232], [-77.36736637010199, 34.682851769165715], [-77.36743945621464, 34.682897121522466], [-77.36792554672652, 34.68320975372386], [-77.36810729891177, 34.68332454855887], [-77.3684724897739, 34.683462294401075], [-77.36853765061883, 34.68352698910008], [-77.3686266655001, 34.68358310252511], [-77.3689572535318, 34.68399243397127], [-77.36914183802625, 34.68424145614888], [-77.36934189700598, 34.68445958047394], [-77.36934133922122, 34.68448522576909], [-77.3693569016519, 34.684539810232835], [-77.36966944581283, 34.68490195056225], [-77.3697243648459, 34.68497883540723], [-77.36980783404377, 34.6850485141767], [-77.37018760704906, 34.68531811942378], [-77.3702680144687, 34.68534878056917], [-77.3703041909776, 34.68540065144903], [-77.37069131369552, 34.685811381254155], [-77.37108153058192, 34.6861700260704], [-77.37122779413312, 34.68634320413677], [-77.37166433071957, 34.68663926735502], [-77.37228143748754, 34.686837527386345], [-77.37250587805714, 34.686949009285684], [-77.37283722715345, 34.68731326536796], [-77.37327758957036, 34.687530083581336], [-77.37348377812806, 34.68778935796006], [-77.3736856606138, 34.688237091218454], [-77.37369825986151, 34.68827943546364], [-77.3737268961564, 34.6887307230957], [-77.37381177123913, 34.68892852740846], [-77.37376997143114, 34.689619224762055], [-77.3737693135692, 34.68969968263874], [-77.37370006595772, 34.68980306965908], [-77.37346881494241, 34.69062860341414], [-77.37344971504388, 34.690718411374], [-77.37345268480473, 34.69078206970215], [-77.37347777639856, 34.69096680248171], [-77.37353153057406, 34.69150989655728], [-77.37409464253257, 34.69245939571714], [-77.37415632138425, 34.69257084672673], [-77.37416281690639, 34.692600937819435], [-77.37402871491031, 34.69319442018265], [-77.37377530448137, 34.69447636068212], [-77.37368080161453, 34.6945858007968], [-77.37368990373373, 34.69465323424657], [-77.37383245223617, 34.6955397412739], [-77.37404385374023, 34.69584668147883], [-77.37414797486385, 34.6964711551543], [-77.3741900956662, 34.696522637925064], [-77.37419808588137, 34.69673757567137], [-77.37435027706093, 34.69718785520327], [-77.37453224397933, 34.697393115609145], [-77.37479309067427, 34.697635488997456], [-77.37500599975348, 34.69807953019066], [-77.37518131723003, 34.6981251474554], [-77.37522603397606, 34.69827252303994], [-77.37524294842586, 34.69858174388847], [-77.37528223627196, 34.69875219266679], [-77.37533097914044, 34.69879847572442], [-77.37534642711796, 34.69896955623396], [-77.37534930827564, 34.69923036708119], [-77.37551420455442, 34.699445963518514], [-77.37552526186266, 34.69969357161941], [-77.37551014733313, 34.699843363927855], [-77.37562348279452, 34.70007807795437], [-77.37565653682513, 34.70012493835103], [-77.37568493323228, 34.70015901479807], [-77.37571394525992, 34.7002752494852], [-77.37600789840738, 34.70060200731349], [-77.37602003925757, 34.70063364119436], [-77.37596955104043, 34.70085097778101], [-77.37599045877444, 34.70087662991398], [-77.37608565187574, 34.70097740556043], [-77.3761868255106, 34.70106480295675], [-77.37621191413488, 34.70114502230648], [-77.3763348919483, 34.701179800020086], [-77.37643117347855, 34.70142098987439], [-77.37648165816806, 34.70146108749504], [-77.37653595196495, 34.701504197407935], [-77.37660770517911, 34.701561186900726], [-77.3766746274251, 34.701613550502145], [-77.3767348960949, 34.70166040536146], [-77.37690382364998, 34.701855268669185], [-77.37701363810027, 34.70192591471933], [-77.37710976086683, 34.70214997115307], [-77.37711406157905, 34.70215705624092], [-77.37711481496744, 34.70215975502049], [-77.3771284697019, 34.702166545811316], [-77.37737188111015, 34.70230539662073], [-77.37747694018856, 34.702349608598965], [-77.37773999303764, 34.702463726669485], [-77.37790700888402, 34.70252430103136], [-77.3782302260852, 34.7027334271184], [-77.37831921494039, 34.70280636029378], [-77.37839943025861, 34.7028904551176], [-77.37865547203589, 34.70303256286064], [-77.37908171051565, 34.70333359031822], [-77.37948960033927, 34.70355206632079], [-77.38031231526034, 34.70447175699637], [-77.38039508600208, 34.70457136398583], [-77.38046587735967, 34.704606439234425], [-77.3805554059816, 34.70464462670358], [-77.38121717145582, 34.70512131750466], [-77.38151764694491, 34.70540057737415], [-77.3815694499954, 34.705471086620825], [-77.38177227104777, 34.705782543898266], [-77.38201140374204, 34.70590845270233], [-77.3822869522707, 34.705980995887245], [-77.38263100516674, 34.7059823955456], [-77.38318804456746, 34.7059583970469], [-77.38328047840872, 34.705953332281595], [-77.38336364449435, 34.70601186819887], [-77.3837969843404, 34.706382796009954], [-77.38418632551507, 34.70656156596561], [-77.38452992130846, 34.70665702719371], [-77.38501159734831, 34.706615500628], [-77.38553634413203, 34.70680673696666], [-77.38616407472372, 34.7070625088064], [-77.38694671063219, 34.707196197061634], [-77.38738888909955, 34.70726005804815], [-77.387632652945, 34.70724268431413], [-77.38797672826158, 34.707154887686286], [-77.38842479485419, 34.70704178079775], [-77.38871594385103, 34.70710496575652], [-77.38952864473632, 34.70735083619843], [-77.38988124903466, 34.70750777552314], [-77.39049552675891, 34.707435803012245], [-77.39059506761402, 34.70746063159521], [-77.39107652173688, 34.70780723650964], [-77.3916366272876, 34.70780576301273], [-77.39171771357502, 34.70780672518292], [-77.39196505623599, 34.70778214792356], [-77.3923379140509, 34.707878619972334], [-77.39254740017661, 34.70779890761288], [-77.3933832999296, 34.708083536298425], [-77.39354340099399, 34.70814286458716], [-77.39372294564845, 34.70822517275319], [-77.39468397683119, 34.708433925068135], [-77.39472773701722, 34.70848009129599], [-77.39481924400168, 34.708521777250795], [-77.39504968275115, 34.70851206399693], [-77.3952227256376, 34.70820932074859], [-77.39545705219415, 34.70809547437116], [-77.39546543382036, 34.70808209653245], [-77.39561677395393, 34.70804504039535], [-77.39607650164152, 34.70825001455256], [-77.39696304472685, 34.708376396554], [-77.39691184945121, 34.70916372455057], [-77.39609176236618, 34.709106605151014], [-77.39564462343066, 34.70974009142889], [-77.39559665098294, 34.70979342113025], [-77.39559593328408, 34.70982153161904], [-77.3955972691211, 34.70983844004291], [-77.39561514577227, 34.709841794894274], [-77.39577805896725, 34.710209386005424], [-77.3957458754097, 34.7104331542508], [-77.39576003340025, 34.710447776252636], [-77.39585155549234, 34.71062506291352], [-77.39592200678865, 34.710774364978036], [-77.39596627075431, 34.710842098531984], [-77.39616508240874, 34.71094067156792], [-77.39613463446246, 34.71112834621201], [-77.39618208387613, 34.71120338924623], [-77.39627192250208, 34.71134244840418], [-77.39639647636983, 34.71149954794281], [-77.3964113420341, 34.71151829798927], [-77.3966459950918, 34.711632816098344], [-77.39666906076397, 34.71173501608847], [-77.39689628070764, 34.71191918618486], [-77.39693822154875, 34.71191225993036], [-77.39696461199769, 34.71194630332035], [-77.39697849543222, 34.71198278565857], [-77.39718470272629, 34.71230086679722], [-77.39739640957576, 34.71254324583347], [-77.39745695008845, 34.71263368583706], [-77.39749390834046, 34.71272228388721], [-77.3974322346453, 34.7127957910293], [-77.39751243298673, 34.71328791196861], [-77.39749365675917, 34.71351102484723], [-77.39748160416241, 34.713556697902234], [-77.39767915510774, 34.71377959508503], [-77.3977687981101, 34.713842638914954], [-77.39784271771401, 34.713962626295164], [-77.39789757899503, 34.71423527160597], [-77.39789146841431, 34.71425925699665], [-77.39791855073318, 34.714339493397524], [-77.39795556191824, 34.71443425938754], [-77.39802123324502, 34.71458423392383], [-77.39804002613667, 34.7146222070162], [-77.39806135319222, 34.71467282904186], [-77.3981152862268, 34.71481399205545], [-77.39814973353259, 34.7149087678109], [-77.39818572317135, 34.71500778780917], [-77.39824085477757, 34.715159472332246], [-77.39828574720255, 34.715235930098295], [-77.39831371747081, 34.715359939793366], [-77.39832710844686, 34.71539516679496], [-77.39840423962465, 34.715556961231556], [-77.39843036553337, 34.71561158749664], [-77.3985753682754, 34.71573798949466], [-77.39856215283142, 34.71589178463992], [-77.39862629328081, 34.71604156849188], [-77.39869048530677, 34.71613632049917], [-77.3986966784399, 34.71621842447434], [-77.39871520588508, 34.716287792408664], [-77.3987568889378, 34.71633179850401], [-77.39877973178288, 34.716496234497356], [-77.39879053699848, 34.71653083493698], [-77.39879262401213, 34.716540062398145], [-77.39879611835285, 34.71656162184303], [-77.39896537732056, 34.716799845197755], [-77.39903202142094, 34.71688658115489], [-77.39905032887623, 34.71693877708543], [-77.39915746535503, 34.71721835646907], [-77.39919649403934, 34.71726433653101], [-77.39922270874331, 34.717301768398556], [-77.39933749203522, 34.71765187886208], [-77.39930424519058, 34.717828851045255], [-77.39934674678233, 34.71797983010273], [-77.39938882678666, 34.718076802529325], [-77.39943587402493, 34.71815447385101], [-77.399451820559, 34.71834365355745], [-77.39948408959921, 34.71845091261039], [-77.3994433899276, 34.718500380264146], [-77.39945483119463, 34.71871294616541], [-77.39951721114183, 34.71891592928452], [-77.39957451233111, 34.71904168651716], [-77.39947845506808, 34.71913548415479], [-77.39928730753599, 34.7192909737069], [-77.39917761010888, 34.71939177220591], [-77.39918497713946, 34.71946454263983], [-77.39895644421269, 34.71959603513873], [-77.3988879790215, 34.71966640064635], [-77.39879858521604, 34.71988849747396], [-77.39863054617211, 34.72017822125713], [-77.39845493449522, 34.72045478359854], [-77.3982746772389, 34.72082348096024], [-77.39793204499117, 34.721096249353124], [-77.39735397054783, 34.721603038465716], [-77.39734622498189, 34.72161693198326], [-77.39732694574913, 34.72163059230574], [-77.39669560722774, 34.722067412590306], [-77.3961164567902, 34.72211890403187], [-77.39588643532959, 34.72217646615706], [-77.39584559888286, 34.72217393462708], [-77.39579029343739, 34.72219083793807], [-77.39514510046837, 34.722522089428786], [-77.39514387909472, 34.72252297394348], [-77.39513962024586, 34.72252609264959], [-77.39466715386536, 34.72291616395051], [-77.39458371616035, 34.72310352915224], [-77.39432468816088, 34.72314046574222], [-77.39410402135763, 34.72327827936347], [-77.3939443353813, 34.72355453759015], [-77.39385118512747, 34.72374896483522], [-77.39318616069434, 34.72423296769719], [-77.39292396911259, 34.72454284200037], [-77.39276856346964, 34.724625020184654], [-77.39260951559186, 34.72463351989411], [-77.39222619222349, 34.724633088498784], [-77.3919712205971, 34.72462360460014], [-77.39185115489845, 34.72462133388558], [-77.39141273110211, 34.724525824656496], [-77.39135670580725, 34.724531667666874], [-77.39124999485071, 34.72451626222263], [-77.39087133407557, 34.72451556011178], [-77.39073191930953, 34.72447515757288], [-77.39056910982373, 34.72443112549319], [-77.39036121283159, 34.72442961226007], [-77.39007467402635, 34.72453059124337], [-77.38996393204908, 34.72452822411803], [-77.38946380231293, 34.72442608820952], [-77.38939986897704, 34.72442801702327], [-77.38913626567678, 34.724671302082434], [-77.38872302375768, 34.72476958490837], [-77.38780122987069, 34.72469207429011], [-77.38747536546018, 34.724649929529846], [-77.38722558402274, 34.72453977951304], [-77.3866626575135, 34.72427397083608], [-77.38634018240693, 34.72414242522161], [-77.38588197589048, 34.72370671417242], [-77.38583900409314, 34.72365968196391], [-77.38577324603588, 34.72366102365259], [-77.38519306777052, 34.72367609794134], [-77.384660906998, 34.72333838656489], [-77.38315175053017, 34.72305928088194], [-77.38282732879433, 34.72299008928358], [-77.38259393257744, 34.7229510562036], [-77.38190121162452, 34.72292201986957], [-77.38155379757463, 34.72295968055245], [-77.38057612322764, 34.722644089824016], [-77.3803819419586, 34.72257874030993], [-77.3801305021233, 34.722533069713734], [-77.37971548018402, 34.722665907853475], [-77.37967521223042, 34.722667277175255], [-77.37941620430819, 34.72259243542818], [-77.3793827665756, 34.722599682238766], [-77.379283988457, 34.72277577537199], [-77.3790122230299, 34.72287990607473], [-77.37893666661789, 34.72295610205209], [-77.37874490272448, 34.72293559382379], [-77.37830741812644, 34.7230992225639], [-77.37805478297344, 34.72301041112557], [-77.37768113659148, 34.723047852694684], [-77.37763709656058, 34.72307561579123], [-77.37763764645632, 34.72310719264549], [-77.37729047617768, 34.72325709431008], [-77.37727513572555, 34.72327652181046], [-77.37730226586292, 34.72354898640235], [-77.3768306403941, 34.723769321705454], [-77.37673642972543, 34.72384780173003], [-77.37650067594396, 34.72380161348665], [-77.37647117380259, 34.723817252201904], [-77.37630848673251, 34.72389622808862], [-77.37613646984259, 34.723951924911354], [-77.37606481425172, 34.72395459942277], [-77.37598076257692, 34.724108630981796], [-77.37561453316992, 34.7240765699815], [-77.37553563430987, 34.72412893893991], [-77.37542257808528, 34.7242024839541], [-77.37537211233156, 34.7242356985612], [-77.3753594678227, 34.724266879811665], [-77.37523747916495, 34.72438972643039], [-77.37523564115293, 34.72450313218907], [-77.37518351591437, 34.72459424464094], [-77.37496335820185, 34.724967015378255], [-77.37487714033382, 34.72529740879099], [-77.37440785228932, 34.7254898350775], [-77.37421819451858, 34.725716518264385], [-77.37375255089427, 34.72553840122119], [-77.37351833409156, 34.72557955255865], [-77.37326968913916, 34.7256618417662], [-77.3730968008962, 34.72558850465194], [-77.37289650775197, 34.72564146329837], [-77.37281766803923, 34.725670877465426], [-77.37274234006628, 34.72570517288723], [-77.37259882376486, 34.72567104516137], [-77.3724226565606, 34.72570198984235], [-77.37237036200301, 34.72568762661321], [-77.37184983441689, 34.725536794144126], [-77.3718307211321, 34.72553217073822], [-77.37120907331806, 34.725627440558405], [-77.37120535374062, 34.7256237323024], [-77.37117679295373, 34.72560906925315], [-77.37052643245778, 34.72589982049498], [-77.37007143700866, 34.7257144162703], [-77.36998747324171, 34.725693621768684], [-77.36984557761467, 34.725706175603484], [-77.3693047896109, 34.72598264991862], [-77.36892555213906, 34.725807727116766], [-77.36875101402717, 34.7258275039883], [-77.36856107974133, 34.72584465359725], [-77.36811709388739, 34.72594849559164], [-77.3679890607246, 34.72597610000646], [-77.36769019935946, 34.726114850383574], [-77.3675612762541, 34.726235309557744], [-77.36734145074723, 34.726238246259115], [-77.36683176115568, 34.72625071146784], [-77.366399961326, 34.72617423884034], [-77.3662386761607, 34.72623098940085], [-77.36610093851152, 34.7262180111776], [-77.3658203747582, 34.726225987731915], [-77.3656355086216, 34.72624599769328], [-77.3654533398156, 34.72628250009127], [-77.36517718674524, 34.72632667315757], [-77.36498119970977, 34.72643718201086], [-77.36485180806935, 34.726387795430114], [-77.364573355837, 34.726397069399624], [-77.36437466210884, 34.72646378589712], [-77.3639479304872, 34.72648407707192], [-77.36380012891847, 34.726380136471526], [-77.3633683880589, 34.72635001925513], [-77.36315270060487, 34.72654758782091], [-77.36251634196908, 34.72679714459373], [-77.36181462399807, 34.72703132483876], [-77.36128726905838, 34.72705909222342], [-77.36062918375939, 34.72698927087417], [-77.36034535222308, 34.726890646663996], [-77.36009644884825, 34.72676164092402], [-77.36000759015678, 34.726756298517536], [-77.35975896439456, 34.72689276695295], [-77.35965357936149, 34.72683156351982], [-77.35960767083469, 34.72684748560764], [-77.35943863163894, 34.72696481569479], [-77.35914760678645, 34.72702374507911], [-77.35907377206787, 34.727012683733264], [-77.35905857601836, 34.727092244489384], [-77.35910806710297, 34.72729362111175], [-77.35885908666751, 34.72746069024869], [-77.35858572217008, 34.72783986871479], [-77.3585732572046, 34.727854443043476], [-77.35831441045008, 34.72825455322239], [-77.35791982997647, 34.728431547919286], [-77.35779036901896, 34.72851664212755], [-77.35760236162909, 34.72847513684671], [-77.35731773432386, 34.728431597690246], [-77.35721805427998, 34.728425289712995], [-77.35710857350232, 34.728395407601084], [-77.35706226685062, 34.72842163567773], [-77.35688248814245, 34.72854976187303], [-77.35677900422792, 34.72858818175527], [-77.35669580121458, 34.728735178728094], [-77.35652043986755, 34.72904499094063], [-77.35651306848109, 34.729112076865135], [-77.35646922925802, 34.72917266549869], [-77.35638922403427, 34.729217276749246], [-77.35616211987724, 34.72932065640595], [-77.3555660985563, 34.729648966508016], [-77.35543893544468, 34.72987701602125], [-77.35521650773768, 34.73026484223865], [-77.3550918760325, 34.73050527814806], [-77.35510314912685, 34.73052954991779], [-77.35508683391518, 34.730608803744666], [-77.35510421563202, 34.730767641236405], [-77.35527514927212, 34.73079144003858], [-77.35515603303953, 34.7312003526295], [-77.35516623574647, 34.731246510714534], [-77.35503738865536, 34.73173347019701], [-77.35503000870563, 34.73175259483734], [-77.3550200719883, 34.73177608976802], [-77.3554185267276, 34.73218664340993], [-77.35515371947096, 34.732461695238015], [-77.35524716370834, 34.73314987574309], [-77.35528301344429, 34.733180013556726], [-77.35519928175673, 34.73331474519975], [-77.35490628967872, 34.73417025442488], [-77.35487499874075, 34.73421078979314], [-77.35419397971663, 34.73471410185655], [-77.35406596673357, 34.73470224599718], [-77.35375757905715, 34.7347183217387], [-77.35358287811876, 34.73475613787495], [-77.35348767171092, 34.73482814419017], [-77.35349961146896, 34.73488696483105], [-77.35342272627224, 34.734975904089374], [-77.3533148691281, 34.735156013234324], [-77.35321408261859, 34.73522399925021], [-77.35313084875172, 34.735281464964544], [-77.35293695805203, 34.73545157445165], [-77.35287695380507, 34.735563562279395], [-77.35272286351761, 34.735655135428544], [-77.35247753199772, 34.735847937261326], [-77.35195575289998, 34.73623422572429], [-77.3516678744171, 34.73640711097584], [-77.35132525358651, 34.73664753540187], [-77.35101390206569, 34.73710422340643], [-77.35097101736967, 34.73725597902776], [-77.35100534375806, 34.737666200583774], [-77.35117881642539, 34.737884537548055], [-77.35128721587044, 34.73853572295594], [-77.35130135734123, 34.73857867869735], [-77.35130373766278, 34.73860001404959], [-77.35130512670553, 34.7386387532969], [-77.35143814808005, 34.73926185824123], [-77.35163347366672, 34.73940553888297], [-77.35168574510517, 34.73946561399897], [-77.35192391279335, 34.739489664756775], [-77.35211917314268, 34.73952643164467], [-77.35218568056942, 34.739566384941675], [-77.35230954741418, 34.739528606722885], [-77.35229854716205, 34.739438249647215], [-77.35229120100948, 34.73939411143649], [-77.35228747456961, 34.73921594822472], [-77.35227320078593, 34.73901375574958], [-77.35230522334227, 34.73894995190054], [-77.35230510113207, 34.73888641910584], [-77.35227415039768, 34.73861882392266], [-77.35217125945506, 34.7384809556252], [-77.35229692046796, 34.73824092242561], [-77.35229846026193, 34.738219807703324], [-77.35230092882837, 34.73820402520074], [-77.35231370190738, 34.737974024666435], [-77.35235648293764, 34.73776709177383], [-77.35234257776027, 34.737643122592516], [-77.35232830384578, 34.73748463927727], [-77.352370797253, 34.737361879620195], [-77.35246062847547, 34.73710946013176], [-77.35262981151999, 34.736955876142545], [-77.35271943578584, 34.736700502457225], [-77.35273715275272, 34.736685875076766], [-77.35304296828544, 34.73641178834704], [-77.35307992792012, 34.736381633630195], [-77.3531145135956, 34.73636867299102], [-77.35317118192619, 34.73635201224021], [-77.35327326194275, 34.73638017947548], [-77.35370751726643, 34.736388990931225], [-77.35379666729237, 34.73630833854825], [-77.35403074968296, 34.73594752201542], [-77.3544180116017, 34.73539290652499], [-77.35445199767251, 34.73524362045251], [-77.3543207978018, 34.73492801198153], [-77.35487512455695, 34.73443088816477], [-77.35506288823959, 34.734896831318046], [-77.35551960184124, 34.73471360701248], [-77.35599063192977, 34.73471416659639], [-77.35619981590862, 34.73451630716721], [-77.3561688026215, 34.734100661548084], [-77.35600440725642, 34.734172546655486], [-77.35559064087194, 34.73411254922642], [-77.35624752152358, 34.73382960007406], [-77.35661273371065, 34.73312913888962], [-77.3568957497209, 34.73295861182393], [-77.35788381407608, 34.732319457417674], [-77.35840808539182, 34.73232337464212], [-77.35852449389417, 34.73226993044308], [-77.3592528287834, 34.73172958839235], [-77.35938703063458, 34.731641787799], [-77.35976079245768, 34.73081234580687], [-77.3607885735225, 34.73056538568717], [-77.361087130123, 34.730433556996964], [-77.36180694608669, 34.730072224411245], [-77.36222432234248, 34.72974544568392], [-77.3627617823359, 34.729762178806915], [-77.3634818454214, 34.729539319473915], [-77.36433645277774, 34.72976027119917], [-77.36504335679405, 34.72958359955986], [-77.36602781363467, 34.72902042949518], [-77.3662799475577, 34.72892920199061], [-77.36806669964069, 34.72883417237736], [-77.36836164844333, 34.72923225458066], [-77.36933326663359, 34.72930084054339], [-77.3695220376913, 34.729291290053304], [-77.36954311179221, 34.729288044788056], [-77.36956355171527, 34.72928515346379], [-77.36972603716548, 34.72924687381304], [-77.37089578739291, 34.7287538656109], [-77.3712342298775, 34.728917124057844], [-77.37158433307933, 34.7288935497397], [-77.3721842590909, 34.72873321546045], [-77.37262668757256, 34.72862264488356], [-77.3731635387407, 34.72848280572557], [-77.37361800323401, 34.72821190832921], [-77.37432694471379, 34.72809944347233], [-77.37453457679501, 34.72773146889426], [-77.37497984915926, 34.72793831335366], [-77.37615705636864, 34.727621683672496], [-77.37619547426232, 34.72745441221716], [-77.37636728544163, 34.727576470188396], [-77.37651565661855, 34.727609469476306], [-77.37712961561444, 34.727485533574004], [-77.3776393521726, 34.7276122291291], [-77.37767397961369, 34.727593473088056], [-77.37787682253168, 34.72721081190018], [-77.37802950120388, 34.7271587219018], [-77.37923349101682, 34.726537766249734], [-77.37930401745561, 34.72655141127377], [-77.37983229890042, 34.726683928453454], [-77.37984275440733, 34.72668421361097], [-77.37985333311359, 34.72667872609327], [-77.38023494329, 34.72657726169984], [-77.3805353078424, 34.72647087791475], [-77.38103270217319, 34.726385253979885], [-77.38165911858934, 34.726359004809154], [-77.38186464051564, 34.7263091084324], [-77.38197092148455, 34.726423027298594], [-77.38268005849609, 34.72682617557463], [-77.3829339874589, 34.72704365211534], [-77.38337588922474, 34.72742881425816], [-77.38344924507619, 34.7274778883814], [-77.38353005103934, 34.72747650025385], [-77.3840884038497, 34.727484948683696], [-77.38459987853318, 34.72781136777268], [-77.38466272128582, 34.72783230998482], [-77.38519392388186, 34.728094870408405], [-77.38558183741729, 34.72812443862996], [-77.38572084993945, 34.72806616431839], [-77.38598496855957, 34.728126778857096], [-77.38646535323892, 34.728132754650936], [-77.38659947378989, 34.728006390781076], [-77.38765836392822, 34.72832203236319], [-77.38769140739441, 34.72832709728073], [-77.38774609697538, 34.72838496179436], [-77.38871669667043, 34.72877359002545], [-77.38881601687618, 34.728871276569855], [-77.38896079734114, 34.72887484910014], [-77.3891987361355, 34.728830948546396], [-77.38976817743024, 34.728698522146594], [-77.39019029599365, 34.72855446126546], [-77.39100117875289, 34.728714130949605], [-77.39144032410687, 34.7286661267832], [-77.39158217253444, 34.72867171449722], [-77.39232605823906, 34.728806881155634], [-77.39268759873991, 34.7287872840976], [-77.39330408972748, 34.72914907457931], [-77.39376613497639, 34.729347002056954], [-77.39380550914987, 34.72935464941508], [-77.3938401887463, 34.72937102333579], [-77.39403102198736, 34.72940340739312], [-77.39508357944646, 34.729369594811594], [-77.39565191048115, 34.7293404136843], [-77.39641630008899, 34.729195995556395], [-77.3971195138711, 34.72973455172864], [-77.39751425754251, 34.72983226727764], [-77.39779625841466, 34.729853702533504], [-77.39846259023913, 34.729835472833514], [-77.39880450930855, 34.729805170578004], [-77.39947853891681, 34.72961138173241], [-77.40013819344615, 34.729303349312254], [-77.40028657473154, 34.729116256730286], [-77.40068425050809, 34.728589824868536], [-77.40083150871064, 34.728427605726765], [-77.4014198889903, 34.72794193194511], [-77.40169710753831, 34.727612128011046], [-77.40185124851985, 34.72750501144061], [-77.40205938478458, 34.72742401976601], [-77.40262369291023, 34.72727155695527], [-77.40273357637338, 34.72731008401222], [-77.40315958407332, 34.72700543870969], [-77.40328510815502, 34.7268565671331], [-77.40354445863062, 34.72672444338234], [-77.40409815583205, 34.726825380292105], [-77.4041579975729, 34.72681977842377], [-77.40419046102598, 34.726840424640535], [-77.40481647860022, 34.72676001529498], [-77.40497287934872, 34.72662328184057], [-77.4050191496553, 34.72653762998015], [-77.40544820064804, 34.72626252073984], [-77.4055969771638, 34.72614729768874], [-77.40587584913271, 34.72571903377288], [-77.40604021689121, 34.72537562824895], [-77.40607438271448, 34.72522935564208], [-77.40625052251929, 34.7250353277635], [-77.4064867078815, 34.7248144541975], [-77.40654386259591, 34.72470273208556], [-77.40685626396913, 34.723890086248424], [-77.40684270158947, 34.723820731240664], [-77.4068775036833, 34.72375189930767], [-77.40693209808708, 34.72329288102271], [-77.40713639919366, 34.723178930418705], [-77.40739234913931, 34.72309733649526], [-77.40760990193752, 34.72297083757217], [-77.40787597859881, 34.722839127205724], [-77.40811804132707, 34.722787505282525], [-77.40847361915081, 34.72232302238528], [-77.40851579343791, 34.72216945317997], [-77.40880107132259, 34.72185895330615], [-77.40910688165923, 34.72141164716235], [-77.40925049922812, 34.721308195560376], [-77.40962275007362, 34.72095116257359], [-77.40969348071964, 34.7208744397602], [-77.40979145657056, 34.720379176037625], [-77.40976419618511, 34.71999948733299], [-77.40978416856746, 34.71952647001204], [-77.41008657584521, 34.719364171891506], [-77.41015998539423, 34.71894174600148], [-77.40981623708174, 34.71835470860994], [-77.40972166679813, 34.71823183779011], [-77.40977823008588, 34.71813810160924], [-77.40990398578204, 34.71805179698514], [-77.41057589407373, 34.717828438156225], [-77.41102758202568, 34.71745685754155], [-77.41118613791595, 34.717329935231795], [-77.4114127197983, 34.71726964115959], [-77.41165550169777, 34.717117369764566], [-77.41164036219625, 34.71657636565828], [-77.41165890794602, 34.71655945369813], [-77.41307172106818, 34.71596855688195], [-77.41309089858368, 34.71595551535359], [-77.4131311659443, 34.71595616734451], [-77.41441965670276, 34.715741333893966], [-77.41489954799779, 34.71592012709886], [-77.4156362746878, 34.715967503218906], [-77.4161541605535, 34.71644190561822], [-77.4166673267517, 34.71683448314372], [-77.41742377344592, 34.717457385299106], [-77.41756355296808, 34.71763951201018], [-77.41769898946696, 34.717699412629884], [-77.41801591756327, 34.71802243241096], [-77.41823647615168, 34.71825156611858], [-77.41864025270363, 34.71887658657946], [-77.4187120530046, 34.71894593199223], [-77.41961810958507, 34.719927464764694], [-77.42178231490436, 34.72121777015023], [-77.42179846000414, 34.72122950918867], [-77.42180461035822, 34.721232401655804], [-77.4218102802344, 34.72123252321537], [-77.42184070766531, 34.721211886445715], [-77.424390009769, 34.71989318225437], [-77.42447065949214, 34.71959722912388], [-77.42552730086541, 34.71610302752018], [-77.42542392025628, 34.71578208049256], [-77.42552091599678, 34.71533060180765], [-77.42548351293179, 34.71356662661162], [-77.42537828705747, 34.71259417748414], [-77.42549524729176, 34.7122971217382], [-77.42547423035563, 34.71132709811621], [-77.42571536147867, 34.711161119177135], [-77.42588005401774, 34.71059932995081], [-77.42600742918883, 34.71039538823818], [-77.42605331279182, 34.71021772589855], [-77.42603391570722, 34.70964238066346], [-77.42592679518424, 34.709249051857], [-77.42592364588168, 34.70924200921359], [-77.42592358596639, 34.70921868188355], [-77.42584902468028, 34.70882676355431], [-77.4259216267764, 34.7085067190759], [-77.42619551246807, 34.70822486567235], [-77.42648291832516, 34.7079283982736], [-77.42657372571392, 34.707798041105924], [-77.42703138047389, 34.70760589913428], [-77.42718749591339, 34.70758428857311], [-77.42736021125958, 34.707513968495974], [-77.42749395128499, 34.707337322906966], [-77.42751053125767, 34.70724077869829], [-77.4273620587246, 34.70695554622117], [-77.42732969566757, 34.70686984936222], [-77.4274911677426, 34.70658491036692], [-77.4276085819786, 34.70648267530632], [-77.42795027527421, 34.70616453432129], [-77.42802810140381, 34.706070293561346], [-77.42803351085375, 34.70597564988595], [-77.42812125465144, 34.705543796247426], [-77.42804008961188, 34.70523429469446], [-77.427829451404, 34.70484847803273], [-77.42760915472851, 34.70452134032078], [-77.42702834676255, 34.70404351321324], [-77.42689133937921, 34.7039280884995], [-77.4268223726496, 34.70389892875393], [-77.42671265250866, 34.70381664768195], [-77.42612475258147, 34.703355184945906], [-77.42593145561483, 34.702548111187845], [-77.4259274540809, 34.70254041255876], [-77.42592944262562, 34.70253639377175], [-77.42576197280367, 34.7017210417989], [-77.42569677428462, 34.70134159830041], [-77.42568112100257, 34.70119858871131], [-77.42556519472858, 34.700910392734016], [-77.42556390141016, 34.700443057436445], [-77.42561582909906, 34.70019514197959], [-77.4255525176237, 34.70002292868088], [-77.42549926549586, 34.69961249922346], [-77.42545308147993, 34.699171665421474], [-77.42547359589626, 34.699027253349584], [-77.4251829203712, 34.69849111023231], [-77.42509962164443, 34.69842639596777], [-77.42506007846461, 34.69832356521157], [-77.42492296881736, 34.69805372980376], [-77.42495265857924, 34.69794801632978], [-77.42515948924674, 34.697799254404984], [-77.4254057350558, 34.69772127489627], [-77.42571588600232, 34.69769991890992], [-77.42609099758995, 34.697568001309854], [-77.42655295431796, 34.697572537632546], [-77.42707812909134, 34.69735207276515], [-77.4271949448833, 34.69712625406066], [-77.42860087189585, 34.69696540915861], [-77.42883472607167, 34.69694553011676], [-77.42891584272874, 34.696947941660035], [-77.4289841092363, 34.696900444554934], [-77.42912549162534, 34.69674648657726], [-77.4295028201392, 34.696411752297436], [-77.42980024155506, 34.69606770034661], [-77.43004071383406, 34.69579533837668], [-77.43016877200448, 34.69563750570218], [-77.43003673051516, 34.695473447914466], [-77.42985468301598, 34.69496860868718], [-77.43016067198137, 34.69452895383123], [-77.43005709355407, 34.694326441554864], [-77.42976885662317, 34.69382046797115], [-77.42980717017488, 34.69358500285856], [-77.42983689779601, 34.692878530417524], [-77.42986499834721, 34.69273595726079], [-77.42990245609965, 34.69257797641207], [-77.43006680906092, 34.69168839991312], [-77.43041595521295, 34.69085132764704], [-77.43032223334065, 34.69065959086578], [-77.43045167867557, 34.690484455564], [-77.43045911623317, 34.689589332477794], [-77.43039115843254, 34.6890761314603], [-77.43037004686201, 34.688440055362385], [-77.43017920899652, 34.68786973342287], [-77.43009052632316, 34.68741606181987], [-77.43002373885912, 34.68720081467818], [-77.42973570768784, 34.68667137776345], [-77.42978979846053, 34.68655993476563], [-77.42981860813038, 34.68645814854979], [-77.42996164448574, 34.68606096768203], [-77.43000135117404, 34.686009061564825], [-77.43005522756452, 34.68564525479569], [-77.4296985416558, 34.685514006264604], [-77.42957887831619, 34.68551511247036], [-77.42914839692682, 34.685362430214596], [-77.42906575240765, 34.685747643961705], [-77.42894089156464, 34.68577103955863], [-77.42880685494828, 34.68596860918585], [-77.42855422613184, 34.68588673760113], [-77.42868252758511, 34.686172684568426], [-77.42865730052489, 34.68622868451312], [-77.42846834994553, 34.686656847810596], [-77.42832657642464, 34.68701028831322], [-77.42826376996442, 34.68714436831135], [-77.42812507262775, 34.6873435678134], [-77.4281192038959, 34.687373343537125], [-77.42809735649475, 34.68738340821663], [-77.42806197789017, 34.687435535937176], [-77.42794968610441, 34.68759359186686], [-77.42785787361596, 34.68773975022131], [-77.42771754800191, 34.68796002110247], [-77.42780702229389, 34.688102767678146], [-77.42750092526286, 34.68826713273282], [-77.4273729661881, 34.68844272905478], [-77.42733749300399, 34.688497626497316], [-77.42721581013595, 34.6886157879717], [-77.42713391789727, 34.68879979084821], [-77.42702433669677, 34.68880681642905], [-77.42691106749454, 34.68890756047454], [-77.42682925957482, 34.68904958800224], [-77.4265806564576, 34.689232760881794], [-77.42651108937774, 34.689277296698435], [-77.4264785067974, 34.68931534854229], [-77.42639472647153, 34.689404815861494], [-77.4262660346615, 34.68962454618641], [-77.42614775764585, 34.68975874536082], [-77.42609581184286, 34.689800930256], [-77.42600180733389, 34.68994045287262], [-77.42587371504382, 34.69006861293362], [-77.4258715128017, 34.690221204853316], [-77.42581465173183, 34.690382368087256], [-77.42563785530325, 34.69069856020848], [-77.42544314123066, 34.6909489681985], [-77.4253564321181, 34.69112902638041], [-77.42525753132452, 34.691124619521794], [-77.4250079499327, 34.69132264095988], [-77.42471849003094, 34.69158185831665], [-77.42461088795875, 34.69161029406234], [-77.42441862901, 34.691568554095824], [-77.42426726747686, 34.69159205217785], [-77.42400183267101, 34.691500411685396], [-77.42398037576648, 34.69151654748265], [-77.42379751417113, 34.69157194646485], [-77.42364480750062, 34.69162685068479], [-77.42360116334272, 34.69166345425746], [-77.42352550462904, 34.69187514942818], [-77.42321717797866, 34.69199721841925], [-77.42316725798254, 34.692037357647294], [-77.4231230923365, 34.692055324476215], [-77.42284193411865, 34.69218658698081], [-77.42281374380555, 34.69220730491545], [-77.42275191963778, 34.6922640176747], [-77.42284321258883, 34.692516515066174], [-77.42264210438326, 34.69267462167336], [-77.4224809408354, 34.69266934656561], [-77.42245062308041, 34.69283610523888], [-77.42243555466028, 34.692933014000445], [-77.42223634005794, 34.69317175563365], [-77.42211723467274, 34.69331236080349], [-77.42208673410181, 34.693370092602756], [-77.42197009961095, 34.69348297208123], [-77.42184029138676, 34.69360751301094], [-77.42158667010914, 34.693754270756806], [-77.42152710235823, 34.693843404056906], [-77.42140246210744, 34.6938385078976], [-77.42123922540648, 34.69378792155017], [-77.42110489517427, 34.693759489820124], [-77.4210655819064, 34.69383677120378], [-77.42079070649724, 34.6937378925006], [-77.4207691035312, 34.69374784958532], [-77.42059113627944, 34.693809002112616], [-77.42042859709248, 34.69388183450949], [-77.42039076314423, 34.69389505767272], [-77.42031041394543, 34.69409798354379], [-77.41999450109655, 34.69427443970771], [-77.41996917154496, 34.694288012814965], [-77.41985415911145, 34.69426645207592], [-77.41967489043391, 34.694440601880714], [-77.41963156604095, 34.69448399031944], [-77.41925652182282, 34.69461649733045], [-77.41925563402322, 34.694617301926726], [-77.4192542482736, 34.694617673073175], [-77.4192492058138, 34.694618203227904], [-77.41856270122247, 34.69479264378621], [-77.4184771703654, 34.69484043333048], [-77.41829035041121, 34.694837628982455], [-77.4178778641809, 34.694944423690714], [-77.41766433810366, 34.69500737012703], [-77.4176602924857, 34.695176329991035], [-77.4170888718687, 34.69545593300107], [-77.41704772152488, 34.69549515528388], [-77.41698807118212, 34.695500280680314], [-77.41683822368964, 34.695624054638266], [-77.41672871777432, 34.695968653850905], [-77.41660507997162, 34.696267428394094], [-77.41663026676119, 34.696603527271044], [-77.41658436157962, 34.69703635675231], [-77.41660936715186, 34.69711205788854], [-77.41685788454394, 34.69740128824917], [-77.41673571853241, 34.69764840030364], [-77.41678952245528, 34.69806509091191], [-77.41681273595688, 34.69823443948868], [-77.41680387547342, 34.69831653768286], [-77.41688431359623, 34.69837604064614], [-77.41710029098307, 34.6988941220406], [-77.41720533098655, 34.699041781773225], [-77.41722061241391, 34.69921575816997], [-77.4172462744968, 34.699339527383245], [-77.41726705072747, 34.69946239426394], [-77.4173109059709, 34.69952689002541], [-77.41742933479442, 34.699814098422344], [-77.41745296597193, 34.69983119641049], [-77.41765884784202, 34.70012823726157], [-77.41769410229685, 34.70022002124908], [-77.41766355131402, 34.7002422279389], [-77.41759867538109, 34.70033606144808], [-77.41742886094264, 34.70060651815081], [-77.41743119772634, 34.700687158563134], [-77.41734380058392, 34.70076945703974], [-77.41724394124405, 34.7009012083236], [-77.41718401703238, 34.70095421122407], [-77.4171395517093, 34.70107784204625], [-77.41711065437961, 34.70113413568691], [-77.41709579685269, 34.701183979863785], [-77.41702140837867, 34.70122297084547], [-77.41694104233173, 34.70130496244431], [-77.41663435589687, 34.701452912054336], [-77.41658518300838, 34.701471144357164], [-77.41643017119551, 34.7014552122548], [-77.41628889309723, 34.70153921240212], [-77.41618087200905, 34.701558105866255], [-77.41601146772379, 34.70158830497146], [-77.41593274984108, 34.70166239404987], [-77.41587333477338, 34.70180330055547], [-77.41583765178828, 34.701807055960735], [-77.41562107278045, 34.70213887580431], [-77.41536280542621, 34.702200058372625], [-77.4144328174732, 34.702415305388314], [-77.41396929937089, 34.70243027363669], [-77.41315847669253, 34.70238913192884], [-77.4130006589874, 34.7023425525636], [-77.41267001976988, 34.702376319861], [-77.41219675443932, 34.702524190306235], [-77.41182103159142, 34.702580827495154], [-77.4113240530477, 34.702387756537846], [-77.41072861849322, 34.70192648078642], [-77.41059782281954, 34.70179796892022], [-77.41060857332494, 34.70165516783293], [-77.4101777587962, 34.70108047804911], [-77.40978538184211, 34.700757130614406], [-77.40907064237481, 34.699998887411056], [-77.40892719745332, 34.699816692547884], [-77.40883281264384, 34.69962008767501], [-77.4083918735206, 34.69864316773679], [-77.40838145716788, 34.698258938226694], [-77.40803346142056, 34.69795415523886], [-77.40756040027131, 34.69723400548123], [-77.40729328439005, 34.69692743188554], [-77.40720464635037, 34.69639005313131], [-77.4070401721283, 34.6959337324316], [-77.40704987445767, 34.69524359341958], [-77.40669362012025, 34.693728945931845], [-77.40659342203848, 34.69354090799365], [-77.40629563241325, 34.69198746248881], [-77.40573686224057, 34.691004636448746], [-77.40500077063919, 34.688956851243894], [-77.40369933808054, 34.68636603786976], [-77.4034958490993, 34.68601387548374], [-77.40179612866064, 34.685152433277175], [-77.40156575411821, 34.68503356518972], [-77.40152784180083, 34.68501315118831], [-77.40130866730655, 34.684715301234036], [-77.40053383920026, 34.683678639388646], [-77.3994855015063, 34.68321463886335], [-77.39781617472019, 34.681994274503204], [-77.39737528926746, 34.68165066175608], [-77.39725618971268, 34.68147502349715], [-77.39706871092423, 34.68126106618909], [-77.39663999563646, 34.68006971292506], [-77.3965975909688, 34.679977832859635], [-77.39659987967435, 34.67996346347541], [-77.39596605697724, 34.678638424557015], [-77.39594043334931, 34.67845321425884], [-77.39586900925168, 34.678002638875036], [-77.3955550470233, 34.67625789201572], [-77.39547865936055, 34.67507526557385], [-77.39532371248139, 34.67394023815524], [-77.39434196725963, 34.67197882535235], [-77.393542984008, 34.671080105543524], [-77.3932027881083, 34.67066868755058], [-77.39293930390161, 34.670422047582115], [-77.3923160767184, 34.669999853784574], [-77.39164418019536, 34.66953346385413], [-77.39077928360275, 34.66903137392191], [-77.38983974495696, 34.668500752356756], [-77.38967047894023, 34.66843548485972], [-77.38951259933603, 34.66840489087645], [-77.38874002426513, 34.668279846161695], [-77.38845091058732, 34.668221814805214], [-77.38832361886296, 34.66820166171357], [-77.3875576463788, 34.66809082050616], [-77.38730179756254, 34.668057554678626], [-77.38687644775018, 34.66805336081298], [-77.38613056892365, 34.6679695943655], [-77.38586897173566, 34.66781439249126], [-77.38499218531673, 34.66776832875915], [-77.38468165880437, 34.66772804597154], [-77.38407305845558, 34.667620558623454], [-77.38384745524844, 34.66758895453398], [-77.38342787951626, 34.66754946554464], [-77.38227459822099, 34.66742865718289], [-77.38154343182597, 34.66728045667717], [-77.38132866303735, 34.66721457204514], [-77.38081441906519, 34.66697618457717], [-77.3804703584236, 34.66685392824979], [-77.38009766365222, 34.6667396795362], [-77.37988788328659, 34.66643797647957], [-77.37963106201818, 34.66631049586893], [-77.3794632239106, 34.66619999638205], [-77.37875148933088, 34.665957206860554], [-77.37826246058661, 34.66621393232901], [-77.37826211962206, 34.665787742995995], [-77.37814964487237, 34.66542377030133], [-77.37822396379505, 34.66471726321364], [-77.37844666267641, 34.66441083148341], [-77.37899529665569, 34.663645915109726], [-77.37900494484616, 34.663635041250814], [-77.37900708349746, 34.663631365406005], [-77.3790179080647, 34.66360834829284], [-77.37948485402387, 34.66277864742289], [-77.3800544595134, 34.662515867842124], [-77.38043314214578, 34.66234297860875], [-77.3807676839929, 34.66170049797254], [-77.38090571215584, 34.661423961669996], [-77.38087936083397, 34.66131526906581], [-77.38070748818133, 34.66074994037223], [-77.38078325198506, 34.66046600861976], [-77.38080466306477, 34.660104421486054], [-77.38055102249794, 34.659285275640904], [-77.3804496298939, 34.658823842670095], [-77.38015567669592, 34.65816528078308], [-77.3800862933206, 34.65802979633293], [-77.38006567159277, 34.65794871292616], [-77.3794936141562, 34.65726729898884], [-77.37908835090744, 34.65659259917242], [-77.3786024084695, 34.65625177976792], [-77.37753450852298, 34.65523733269646], [-77.3757729919173, 34.65440296444553], [-77.37526467588152, 34.6536730436062], [-77.37450864372559, 34.65293227543006], [-77.37313136400306, 34.65139016400452], [-77.37223638885686, 34.65048150887647], [-77.37127203905189, 34.64957969581346], [-77.37054429351421, 34.648369824594], [-77.36932208882496, 34.647064490682006], [-77.36918930442141, 34.64660131270375], [-77.36883448545736, 34.64522882860107], [-77.36874198313816, 34.64361839442043], [-77.36870612150274, 34.643482374419115], [-77.36822412330105, 34.641936668430915], [-77.3677373905799, 34.64101347833143], [-77.36768482622179, 34.639861252458225], [-77.36793721969647, 34.63937578385833], [-77.36825050456517, 34.6385569554229], [-77.36837800306918, 34.63783993600231], [-77.36903213805101, 34.63619443527645], [-77.36957060271166, 34.635555051762495], [-77.36996672666389, 34.63491846153983], [-77.37011963797315, 34.63266963244802], [-77.36989747117654, 34.63153197373853], [-77.36970828977225, 34.63083317839527], [-77.36971503018111, 34.628894329181094], [-77.36957319641736, 34.62818220925618], [-77.36952107462153, 34.627666500982], [-77.36971788617193, 34.62719812300603], [-77.36982394944204, 34.626996067133504], [-77.36998571080888, 34.62659863436186], [-77.37010593978295, 34.626407275697666], [-77.37029744319187, 34.62604012390098], [-77.3706128641708, 34.62577216239971], [-77.37133456858149, 34.6253091694841], [-77.37154803638992, 34.62519274264514], [-77.37219005994507, 34.62504828175422], [-77.37277432803586, 34.62495396711745], [-77.37376720570943, 34.624394202151365], [-77.37390208686026, 34.62430761321775], [-77.3740821090188, 34.624136457330984], [-77.37483991561271, 34.62348400781223], [-77.37534447626396, 34.62322388060686], [-77.37592509172343, 34.62279793093568], [-77.37679529870407, 34.6220474232078], [-77.3768686073758, 34.62197966092371], [-77.37692173432079, 34.62193484780267], [-77.37704897724075, 34.62187385978837], [-77.378498792268, 34.621240547681154], [-77.37914276017013, 34.62101577352287], [-77.37928728716693, 34.62098955693143], [-77.37940935928674, 34.62095317946758], [-77.38007580684737, 34.62061412849031], [-77.38045863416139, 34.620233623015736], [-77.38136329295085, 34.61969107034064], [-77.38152863823873, 34.61953341914715], [-77.38165291588517, 34.61944088656314], [-77.38193961577639, 34.61929927599874], [-77.38322992182333, 34.618560034234505], [-77.38375079783876, 34.618209687726946], [-77.38436215363328, 34.61756066736639], [-77.38480699436278, 34.617124866872096], [-77.38546125280486, 34.61640852269954], [-77.38611651386623, 34.61560955684984], [-77.38638405402594, 34.61543841023627], [-77.38664410284832, 34.61525345277683], [-77.38717252811794, 34.61480204604311], [-77.38731350730104, 34.614739724448796], [-77.38760235987526, 34.614546252931106], [-77.38796097042042, 34.614300853208725], [-77.38839924226446, 34.61405426304264], [-77.38874942139725, 34.613666119504465], [-77.3894909482564, 34.613424865641086], [-77.38953118234515, 34.61341192495185], [-77.38953781189318, 34.613409895855234], [-77.38954712886881, 34.61340673145399], [-77.39072822683576, 34.61283033457111], [-77.39111460710973, 34.61262815844222], [-77.39123743654736, 34.6124562120454], [-77.39187388815483, 34.61226351169968], [-77.3919029919872, 34.61224979335749], [-77.39192170065745, 34.61224542207507], [-77.3926904218333, 34.61211542561232], [-77.39269134731667, 34.612115817339514], [-77.39269690805199, 34.612113493431245], [-77.39326207343619, 34.611797569353925], [-77.39395137468892, 34.611083457320596], [-77.39409843915827, 34.610879478085856], [-77.39426812742062, 34.61077537653934], [-77.39554865418307, 34.60947387275956], [-77.39584486880428, 34.60921389730355], [-77.39591550784584, 34.60917800279525], [-77.3961458918017, 34.60906868752232], [-77.39604042713798, 34.60887326829357], [-77.39597074292266, 34.60824480677216], [-77.3959772171809, 34.607537192187564], [-77.39600068769258, 34.60739134468207], [-77.3965582263041, 34.60723009037139], [-77.39663327691161, 34.60716146811185], [-77.39672834698158, 34.60718398349541], [-77.39680232777442, 34.6072757230008], [-77.39683032961469, 34.60790852655499], [-77.39742152617887, 34.60834484945226], [-77.39888762365416, 34.60867322409023], [-77.39897485641981, 34.608685707866414], [-77.39899812770673, 34.60868460817334], [-77.39903100648209, 34.608687957602996], [-77.40049566239256, 34.60852643317681], [-77.40057474050649, 34.60851094969099], [-77.40191542257844, 34.60849055226481], [-77.40215135008951, 34.6085609083962], [-77.40253117582657, 34.60855671859199], [-77.40372794806947, 34.60827760788563], [-77.40503534644094, 34.608076168189136], [-77.40688118574124, 34.60875010397786], [-77.41003041990922, 34.608763647859654], [-77.41003386654728, 34.60876372676924], [-77.41003440163578, 34.608763863232106], [-77.410035661424, 34.60876424826137], [-77.41452942490575, 34.61006558095388], [-77.41634119185595, 34.61069963554804], [-77.41880666819246, 34.61163424769309], [-77.41949471184029, 34.61178330251042], [-77.42091691686619, 34.612120244715385], [-77.4226482162076, 34.612501083760286], [-77.4234182628675, 34.61279435511701], [-77.42527322466712, 34.613355772741414], [-77.42800411856352, 34.613985880463105], [-77.42928959695807, 34.61404706653561], [-77.43067273223342, 34.614380901097505], [-77.43334217675152, 34.61435967496688], [-77.43359066700242, 34.61439519923526], [-77.43364962115784, 34.61439908587056], [-77.43539451265572, 34.613839180728235], [-77.43553140025334, 34.613802433579224], [-77.43617885881595, 34.61298032065553], [-77.43618336473105, 34.61287642059425], [-77.4364964065683, 34.612151310757554], [-77.43631935920351, 34.611135876516485], [-77.4361504110086, 34.61077296813737], [-77.43571745218085, 34.61023557361499], [-77.43505883234377, 34.60901998678508], [-77.43441831130855, 34.60831276629183], [-77.43377612889697, 34.606931231519425], [-77.4332170487211, 34.6054144186635], [-77.4330903695327, 34.603097956467266], [-77.43284687321508, 34.60207122737035], [-77.43367278636956, 34.6002612498545], [-77.43367556807256, 34.600248317879945], [-77.43367998907712, 34.60024628812716], [-77.43440571763416, 34.59844916245311], [-77.43487703773343, 34.597973296307316], [-77.4352550998359, 34.597038741296565], [-77.43535326846225, 34.59671971687781], [-77.43536508579865, 34.59661210145671], [-77.43555581169845, 34.596260192535674], [-77.43577441656595, 34.59541478565335], [-77.43599258682062, 34.59482300855352], [-77.43581459497796, 34.59424469349021], [-77.43544076492054, 34.59340605809477], [-77.4353194790553, 34.59322195567713], [-77.4352998271845, 34.593174908788946], [-77.4352535088737, 34.59313434999875], [-77.43422093759457, 34.592794791372654], [-77.4340071939111, 34.591713307315445], [-77.4339531550698, 34.59142309222899], [-77.4336763603452, 34.59091486340716], [-77.43317355079057, 34.590677113687676], [-77.43315185659566, 34.5901385931829], [-77.43209939805844, 34.58896983616828], [-77.4317815955979, 34.588980740427395], [-77.43139926562115, 34.58869357360026], [-77.42992064463286, 34.58785775931871], [-77.4289461027118, 34.58632112058212], [-77.42866382236862, 34.5859962880399], [-77.4283935623613, 34.58573129996424], [-77.4266205881137, 34.585096216128335], [-77.42579315110143, 34.584174100935996], [-77.42501605655852, 34.58365989184915], [-77.42454438447966, 34.582890861108794], [-77.4242166302201, 34.58270865954065], [-77.42365185841524, 34.581929838780354], [-77.42336722822401, 34.581362607258264], [-77.42323065526863, 34.58032053912638], [-77.42312027345417, 34.57969994508417], [-77.42289568870679, 34.57945657103688], [-77.4226396619895, 34.5791865700885], [-77.42160709049315, 34.57822023500002], [-77.42129289765279, 34.57801827657657], [-77.42106331167918, 34.57779723760312], [-77.42030766452324, 34.57759371994196], [-77.42025529212647, 34.577587886130175], [-77.4194871317429, 34.576983286089124], [-77.41939866908211, 34.576936270670195], [-77.41919717125197, 34.576870059981964], [-77.41822503724626, 34.57667215617563], [-77.41791106920391, 34.57663883547736], [-77.41731779321476, 34.57608243225458], [-77.41658114766918, 34.57581493788452], [-77.41633496358365, 34.57596515824735], [-77.41480559869794, 34.57580606458391], [-77.41476407343576, 34.575806549650196], [-77.41475895773323, 34.57580362224727], [-77.41474655617503, 34.575801227913196], [-77.41318296012196, 34.57566546539003], [-77.41204572186007, 34.57573182770762], [-77.41160698148842, 34.575665282729], [-77.4100697188525, 34.57479163389318], [-77.41004447545448, 34.574780672472365], [-77.41003092105831, 34.57477586192866], [-77.4100050033741, 34.57477304833169], [-77.40907146068051, 34.57427135396448], [-77.40845492761892, 34.57436506678098], [-77.40826248055475, 34.57441079610538], [-77.40791767081022, 34.5745233618823], [-77.40766696214507, 34.574581234470585], [-77.40735003070597, 34.5748427373813], [-77.40719221610912, 34.57486953681027], [-77.40687899013685, 34.574755889322184], [-77.40638608214286, 34.57479226866013], [-77.40609100739651, 34.57476380399687], [-77.40578420544622, 34.57489179754894], [-77.40563011673213, 34.57493589428175], [-77.40557670313804, 34.575015703864935], [-77.4053030381471, 34.57519010803702], [-77.4051195728111, 34.57530855582226], [-77.40508543290056, 34.57532111811763], [-77.40490904804452, 34.5753199576023], [-77.40480434229933, 34.575240021031604], [-77.4045150477153, 34.57507838745038], [-77.40419438489957, 34.57513620989181], [-77.40405872388867, 34.57516764221302], [-77.40404148571052, 34.57523730082869], [-77.4037270670774, 34.575515820651084], [-77.40361967872667, 34.575607033276704], [-77.4035098274301, 34.57573861298659], [-77.40333307640955, 34.576001770002236], [-77.40318974196502, 34.57605492724999], [-77.40293907913872, 34.5761316365098], [-77.40261862046789, 34.576212566188154], [-77.40243403856118, 34.57619879327247], [-77.40215108169917, 34.57606954923864], [-77.40206788136052, 34.57603637798393], [-77.4017570836924, 34.57599311334381], [-77.40141591168472, 34.57609773752948], [-77.40136308344357, 34.576139993126695], [-77.40109273340407, 34.576378773968386], [-77.4009547424787, 34.57651648910404], [-77.40091205925127, 34.576538096244256], [-77.4005750686848, 34.576882536790926], [-77.4005097662759, 34.57695035607962], [-77.40039562820766, 34.57703719416065], [-77.40003555288376, 34.5773569384145], [-77.39978705092693, 34.5772712055869], [-77.39965289460127, 34.57728893435312], [-77.39939304334285, 34.577349954161264], [-77.39921741646873, 34.57744253259029], [-77.3991960368238, 34.577452616845896], [-77.39913144160377, 34.57750150480292], [-77.39906592853961, 34.5775134401548], [-77.39899903112973, 34.5775227978571], [-77.39893246598972, 34.57753233941689], [-77.39887083302759, 34.577543647349906], [-77.39880202619472, 34.57756704856089], [-77.3987667853553, 34.57759065981952], [-77.39874353709509, 34.5776371341924], [-77.39868965462468, 34.57761673251055], [-77.39860502071559, 34.577618435505464], [-77.39853417360014, 34.57765402433092], [-77.39840801397358, 34.57769093689661], [-77.39822315227795, 34.57776215416165], [-77.39821100702471, 34.57776039098821], [-77.39818118612828, 34.57778129671898], [-77.39792192716462, 34.57793178024802], [-77.39781698578003, 34.57801615803687], [-77.39757817260438, 34.57812563088393], [-77.3974229654236, 34.57821480132331], [-77.3973236266995, 34.578222553426876], [-77.3968185614659, 34.57840246452713], [-77.39667375873934, 34.57846519718226], [-77.39663492656403, 34.57849997895458], [-77.39654857615338, 34.57853446067374], [-77.39624090283564, 34.57867255519512], [-77.39610238047295, 34.578781101200676], [-77.39596115473832, 34.57882759338186], [-77.39584688078351, 34.57880159856656], [-77.39559758914574, 34.57884723089346], [-77.39525508451189, 34.57883946989164], [-77.39505885166412, 34.57884230222637], [-77.3948058503318, 34.57896543355915], [-77.39466015075809, 34.578713839827756], [-77.39449627207115, 34.57849458102177], [-77.3946309402101, 34.5778689106316], [-77.39455837808752, 34.57756965123268], [-77.39451717499789, 34.577460750658084], [-77.39444269216114, 34.577286457364835], [-77.39427097419102, 34.577301273430045], [-77.39410169156213, 34.57727852983364], [-77.39387696321779, 34.57735015232865], [-77.3935863849498, 34.577281888108146], [-77.39348296644683, 34.57726068503859], [-77.3934082889, 34.577276602554456], [-77.39309967800882, 34.57724064829705], [-77.39286391218383, 34.57709261123715], [-77.39285933002074, 34.57660322081797], [-77.39287532050069, 34.57642386868104], [-77.39279755812464, 34.57632463811769], [-77.39269511839117, 34.57585506901269], [-77.39261030039572, 34.57570437149014], [-77.39261717861845, 34.575611962127596], [-77.39264073381099, 34.575549921452605], [-77.39252161478589, 34.574963685451415], [-77.39241309803008, 34.57479225721764], [-77.39241598926735, 34.57449087549797], [-77.39237073378146, 34.57429898497688], [-77.39228247179904, 34.57396195778759], [-77.39220842983376, 34.57344786359839], [-77.3922299170947, 34.572772962363516], [-77.39179320751575, 34.572334245060986], [-77.39165114572496, 34.571782005067675], [-77.3913078846552, 34.57090865494833], [-77.39122381108271, 34.57071809419758], [-77.39124122719984, 34.57058477431815], [-77.39111984685881, 34.57058438887116], [-77.39086951435985, 34.57049940770293], [-77.39003633754015, 34.57035876815178], [-77.39000394706602, 34.570044893762216], [-77.38964861874479, 34.569983441885], [-77.38954404177892, 34.569986857255586], [-77.38940192722721, 34.56997856492699], [-77.38879510150436, 34.570177163670664], [-77.38875607175707, 34.57013645239165], [-77.3886903281287, 34.57016349681771], [-77.38796804570451, 34.57058496828407], [-77.38739401115015, 34.57019082762741], [-77.3871801603554, 34.57023269838868], [-77.38697520217704, 34.570260801163684], [-77.38639219703887, 34.57031022958411], [-77.38568082674544, 34.57058572220255], [-77.38560419195149, 34.570581796862385], [-77.38554561728972, 34.57062469090447], [-77.38481615399886, 34.570982257630085], [-77.38428983275126, 34.571150849629355], [-77.38378736326727, 34.571200781442215], [-77.38324020858786, 34.57112316295407], [-77.38275244243677, 34.570767096790085], [-77.38221514594771, 34.57031882852937], [-77.38191239548554, 34.57009538403081], [-77.38166467429319, 34.569613876004645], [-77.38158756625587, 34.5695601697308], [-77.38160213535042, 34.56949064046939], [-77.38135464297238, 34.56907887074557], [-77.38107126492798, 34.56878546568164], [-77.38122469766424, 34.568388703305494], [-77.38111635474388, 34.56818766774006], [-77.38094264583955, 34.56795487736623], [-77.38091895890162, 34.56791326595166], [-77.3801523501193, 34.567219667113584], [-77.38015023156737, 34.5671544765419], [-77.38008949277598, 34.56702855746737], [-77.37866849432376, 34.5659018068208], [-77.37851399829327, 34.56584782102248], [-77.37847770266232, 34.56580192152389], [-77.37840302694585, 34.56577355426531], [-77.37601038827577, 34.565420142977004], [-77.37536252575785, 34.56533806641724], [-77.37441272186132, 34.56532500128908], [-77.37302429867069, 34.56567193371322], [-77.37221052099264, 34.56635724495541], [-77.37194167992145, 34.56641494916205], [-77.37063451085578, 34.56680823718507], [-77.370579099621, 34.56684125892561], [-77.36950823915905, 34.56657083743046], [-77.36905869938502, 34.56672661939278], [-77.36857046502111, 34.56634119699983], [-77.36853945994501, 34.56605640961779], [-77.36813357325475, 34.56555501156561], [-77.36795226509146, 34.5650760017282], [-77.36701063694687, 34.564018522615754], [-77.3672424862264, 34.56254787491139], [-77.36719618864375, 34.561982437683156], [-77.36748499214198, 34.56172950763324], [-77.36782337930093, 34.56050500127183], [-77.36767142938021, 34.55902833892941], [-77.36766751147464, 34.55882922360039], [-77.36780836805764, 34.558461922270624], [-77.36748665716277, 34.55786445449432], [-77.36651666508263, 34.5572967659518], [-77.36600612160548, 34.55726805011653], [-77.36591152376431, 34.55665749495831], [-77.36566814888525, 34.55572075823099], [-77.36508882464832, 34.55499350052105], [-77.36433650708248, 34.555299228254476], [-77.36393370016137, 34.55553653698769], [-77.36276002843336, 34.55702753450801], [-77.3618906693037, 34.5570260228575], [-77.3596307949605, 34.55826388889709], [-77.35960803548639, 34.558278095133524], [-77.35957808263782, 34.558263709974405], [-77.35957248911579, 34.55829680551298], [-77.35845825987866, 34.55891663135683], [-77.35803211069864, 34.558704891807736], [-77.35796941556833, 34.55859524038236], [-77.35763820438473, 34.55867035137212], [-77.35751171689864, 34.558593499283596], [-77.35757633208149, 34.558226590419], [-77.35730277330829, 34.5578370190661], [-77.35752324832211, 34.55774273393351], [-77.35744927615835, 34.55753312299387], [-77.35742509782311, 34.55690775949185], [-77.35724526036437, 34.55690220193307], [-77.35648503692386, 34.557013265855105], [-77.35645738075686, 34.55698313341494], [-77.35608483899023, 34.556653314555064], [-77.35599201545418, 34.5566122799567], [-77.35566973997535, 34.55664509627762], [-77.35562610104407, 34.5563648413237], [-77.35565495065111, 34.556313482003965], [-77.35527621648349, 34.55596780485768], [-77.35526588948142, 34.555956073095096], [-77.35524710244613, 34.55594763991714], [-77.35488248661007, 34.55565476808504], [-77.35484181380085, 34.55562528319225], [-77.35467326735375, 34.55560568947543], [-77.35449089345794, 34.55553180539071], [-77.35430008431251, 34.55565940593515], [-77.35412900396081, 34.55572108503587], [-77.35409461627643, 34.55573436294441], [-77.3539852488637, 34.55582253979691], [-77.35347206117893, 34.55577858811196], [-77.35403461726207, 34.55565977150515], [-77.35409585821935, 34.55563603260059], [-77.35444062401564, 34.555360560279986], [-77.35442924543979, 34.555151169887516], [-77.35446108166371, 34.55512213827034], [-77.35450182266118, 34.55505545473613], [-77.35462674234785, 34.554954364095295], [-77.35484660080172, 34.5548462719819], [-77.35490055704402, 34.55478982270575], [-77.35523794175865, 34.55478993961143], [-77.35527701803667, 34.55479433797928], [-77.35552093555354, 34.55499402496969], [-77.35559565252376, 34.55503598230096], [-77.35567415190586, 34.55529940342121], [-77.35593821531212, 34.55509569450309], [-77.3558192325271, 34.55486680675669], [-77.35586237013618, 34.55445522913863], [-77.35579189517945, 34.55440474875148], [-77.35588475671679, 34.554207184007616], [-77.35593160258986, 34.55409898426425], [-77.356160756529, 34.55392262881336], [-77.35610524947951, 34.55368489563979], [-77.35625074330564, 34.55342002879746], [-77.35595044709139, 34.55331928822034], [-77.35593705549064, 34.55322036417177], [-77.35584925190099, 34.553154488949694], [-77.35572641401737, 34.55302016869468], [-77.35571759382641, 34.55301274029394], [-77.35571105698801, 34.55300807530604], [-77.35570756637674, 34.55299648687104], [-77.35557823679734, 34.55278237255254], [-77.3555230763955, 34.5526771848658], [-77.35552002035651, 34.55266834184006], [-77.35552362474708, 34.55265861641395], [-77.35550497961364, 34.55260930134673], [-77.35554025726432, 34.55257717370374], [-77.35558413061443, 34.55256386839791], [-77.35567892656857, 34.552523055205036], [-77.35572375577323, 34.552507615850864], [-77.35573831851168, 34.552500999717296], [-77.35579043111977, 34.5524748820458], [-77.35613255940227, 34.55243067714164], [-77.35638960015231, 34.552334832229484], [-77.35652798987822, 34.55230842092218], [-77.35689667063053, 34.55212054173107], [-77.35692515894662, 34.55211024139597], [-77.35693446643396, 34.552103186652694], [-77.35694330155141, 34.55209621177935], [-77.35699734731747, 34.55204435908659], [-77.35711632138526, 34.5519432938749], [-77.35729188666853, 34.55180120344431], [-77.35730916865062, 34.55178874931329], [-77.35732565204302, 34.551766893451614], [-77.35746848391666, 34.55161789034816], [-77.3576002158139, 34.55151198954531], [-77.35765615750228, 34.55146082871925], [-77.35772683208077, 34.551393411976306], [-77.35811405539465, 34.55119318616465], [-77.35812042124927, 34.55118996675428], [-77.35812416183788, 34.551187893666416], [-77.35813188975979, 34.551185829058355], [-77.35813610508524, 34.55119001150046], [-77.35819060370824, 34.55122411250358], [-77.35848294317346, 34.5514029289176], [-77.35855444520972, 34.55140113133746], [-77.35890561358029, 34.55135353745531], [-77.35896471613987, 34.551315530720366], [-77.35909426015138, 34.55116702466913], [-77.35933401491553, 34.55101753239927], [-77.35948154533752, 34.550858708517985], [-77.35961178563473, 34.55048788891521], [-77.35958022738971, 34.5504099833171], [-77.3594629574402, 34.55026449498794], [-77.35956581706576, 34.5501546043578], [-77.35957421374384, 34.55009435507668], [-77.35966198856215, 34.54999101242916], [-77.35967499387054, 34.54995935305053], [-77.35969317016898, 34.54986411060077], [-77.35972604648589, 34.549815815417276], [-77.35978513107558, 34.549764569190344], [-77.35987679976895, 34.54974467855105], [-77.35992401767112, 34.549743106763415], [-77.35998698147122, 34.54969939156993], [-77.36005895383374, 34.549649421813456], [-77.36012619421827, 34.549486570650444], [-77.36014736223464, 34.54944406678383], [-77.36014788132871, 34.5494313985675], [-77.3601562408383, 34.549412514957446], [-77.36012818683561, 34.54939947574502], [-77.3601036942978, 34.54933159075942], [-77.3600906808736, 34.54931722319616], [-77.36003236074956, 34.54929776293477], [-77.36000220934955, 34.54928770199524], [-77.35998365602481, 34.54928151110492], [-77.3599678539707, 34.54927370376882], [-77.35995669493457, 34.549261801138634], [-77.3599623726688, 34.54922988159045], [-77.35996919272642, 34.54921230497876], [-77.35998585443869, 34.54918542866056], [-77.35999301875104, 34.54918269969316], [-77.36003523982947, 34.54917192850917], [-77.36011441640818, 34.549191393311006], [-77.36012577968964, 34.54919418686517], [-77.36013284384987, 34.5491959235183], [-77.36016312312961, 34.54920336735731], [-77.36016318468015, 34.54918437080727], [-77.36018736909665, 34.54914757724498], [-77.3603047131995, 34.54904157891785], [-77.36030876118217, 34.549025855985214], [-77.36038232459576, 34.54890799072319], [-77.36037837052756, 34.54881135519795], [-77.36037969754923, 34.54878595705191], [-77.36037460802373, 34.548764497525625], [-77.36038764655997, 34.54869168464214], [-77.36040159496947, 34.54866039172332], [-77.36037431864246, 34.54864402609124], [-77.3603676859604, 34.548604068594464], [-77.36035912648235, 34.548595178115], [-77.36034348921054, 34.548569106855695], [-77.36033536298648, 34.54855281680522], [-77.36033325835245, 34.54854782011719], [-77.36032954372554, 34.54853923269162], [-77.3603266434823, 34.548533471145255], [-77.36032617888492, 34.548529594615665], [-77.36031984785015, 34.548529909583564], [-77.36031117440282, 34.54853029557746], [-77.36030650603064, 34.54852939646509], [-77.36030578968084, 34.548527675780555], [-77.36031049351102, 34.548526378795145], [-77.36031997736511, 34.54852424817024], [-77.36032732262126, 34.54852262911822], [-77.36034051857548, 34.54851617162715], [-77.36034182324725, 34.54851416106532], [-77.36033833266501, 34.548490224201046], [-77.36033771268578, 34.54848597265054], [-77.36033695027287, 34.54848074433833], [-77.3603346021742, 34.548432702192635], [-77.36033403025468, 34.54842529687079], [-77.3603328889638, 34.548416676591124], [-77.36034872070385, 34.548340422770465], [-77.3603630930585, 34.54830718799515], [-77.36036657353056, 34.54828781622737], [-77.36041041372044, 34.548169473416635], [-77.36035431698122, 34.54809579330019], [-77.3603424036259, 34.54806472700498], [-77.36033493992585, 34.548057929601946], [-77.36031061979617, 34.54803329108812], [-77.36030726336014, 34.5479706304613], [-77.36030560880542, 34.5479397411915], [-77.3603353334833, 34.547921131312435], [-77.36033443121892, 34.54782937972118], [-77.36030268017964, 34.54781775080058], [-77.36022075739373, 34.54774120296548], [-77.36019887456159, 34.547710286690645], [-77.36018493098102, 34.54770113970064], [-77.3601672696484, 34.547691224548196], [-77.36013217159669, 34.54759747981964], [-77.36012824054342, 34.54757200685386], [-77.36012013914447, 34.54753800646385], [-77.36011723493803, 34.54751099118694], [-77.36011462021916, 34.54747759512784], [-77.36010690698134, 34.54743744346982], [-77.36010208184027, 34.54735698857569], [-77.36009772693563, 34.547284374425736], [-77.36009520229308, 34.547235567161266], [-77.36009200085235, 34.547181823345795], [-77.3601063525089, 34.54703646648189], [-77.36009621445254, 34.54699059728689], [-77.36007310260125, 34.546940939893524], [-77.36007209320722, 34.54692376977959], [-77.36009575147833, 34.54686825189177], [-77.3600977915059, 34.54680156527517], [-77.360089685378, 34.54674671334466], [-77.3600738623796, 34.54667626261515], [-77.36007550977044, 34.54662634256707], [-77.36003581892652, 34.546607086008066], [-77.3600308161937, 34.54653113502573], [-77.36007143892941, 34.54650451670695], [-77.36008724607757, 34.54643440641568], [-77.36016186106635, 34.54627031715927], [-77.36016542488719, 34.54624615856783], [-77.36016659744936, 34.54622464624962], [-77.36018588242305, 34.54601075751921], [-77.3601970835041, 34.54599677553646], [-77.36019894285276, 34.54599201586391], [-77.36020652626769, 34.54597539765045], [-77.36044975468826, 34.54586567826172], [-77.3604300365752, 34.545718405314744], [-77.36032561690496, 34.54566362498388], [-77.36031332592384, 34.545550932625275], [-77.36035424225523, 34.545484495757584], [-77.36028597684646, 34.54545224458024], [-77.36022274312164, 34.54526659814789], [-77.36022072098612, 34.54526025075636], [-77.36022059545634, 34.54525891725456], [-77.36022079272918, 34.545257543375875], [-77.36022431932273, 34.545197706433484], [-77.36023649833783, 34.54501681704899], [-77.36024635107236, 34.54501038415609], [-77.36023679342593, 34.54500670668167], [-77.36023062166824, 34.5449222472632], [-77.36022359720225, 34.54477531356663], [-77.36022346500593, 34.544768855652364], [-77.36022345985228, 34.54476210531759], [-77.36022856789393, 34.544645708725696], [-77.36022251399868, 34.54453475316714], [-77.36022344848148, 34.54452403383719], [-77.36022303066339, 34.54451352857854], [-77.36021285524835, 34.54430068292578], [-77.36021062181484, 34.54428105672122], [-77.36021002092842, 34.544258830692065], [-77.36021499029263, 34.54415801554824], [-77.36021180750011, 34.54406009576727], [-77.36021811602272, 34.54403515333319], [-77.36021835002498, 34.54401451526324], [-77.36020908801466, 34.54382077384494], [-77.36020953241946, 34.543791565205254], [-77.36020543358, 34.54375986265953], [-77.36019722320208, 34.54367092568336], [-77.36018114971077, 34.543623863175476], [-77.36019234192862, 34.54359206770813], [-77.36021683402902, 34.54354568954221], [-77.36020849109839, 34.54351298225653], [-77.36023351850184, 34.54342087480155], [-77.36020472220534, 34.543341317907974], [-77.3601829154683, 34.5433057496947], [-77.360166168179, 34.543244021374704], [-77.360105402382, 34.543072087699045], [-77.36009152633775, 34.54294422765662], [-77.360088504331, 34.542829696918446], [-77.36009603299476, 34.542713159648144], [-77.3603029853216, 34.54255398574564], [-77.36009838574216, 34.542456276796585], [-77.36010573140402, 34.54233756778327], [-77.36011431026124, 34.54222531602069], [-77.36012050371163, 34.54209061630558], [-77.36012861708505, 34.54195063721831], [-77.36013154578895, 34.54173696550552], [-77.36014158136969, 34.541597932606074], [-77.36015610368729, 34.54144707481156], [-77.36015901294994, 34.5413505981397], [-77.36016839851428, 34.541258160194914], [-77.36018448581608, 34.541102105657416], [-77.3602005490892, 34.5409306770707], [-77.36018468145404, 34.54076934620426], [-77.36020315008626, 34.54060976940907], [-77.36021900439208, 34.54043394965314], [-77.36022097729833, 34.54029027007695], [-77.36023675743064, 34.540115281196634], [-77.36024874665117, 34.53992867959295], [-77.36023953635777, 34.53980256362961], [-77.36025063436409, 34.539623634284695], [-77.36025739472827, 34.53943937468455], [-77.36025683426934, 34.53931424351863], [-77.360249898022, 34.539134091797465], [-77.36022313213635, 34.53898254728068], [-77.36011796797584, 34.538749935527974], [-77.36026745947169, 34.538641913740534], [-77.3601109906492, 34.53858466421987], [-77.36004368202204, 34.53821705087239], [-77.36012376944754, 34.53817295841364], [-77.36005353871653, 34.53814538925693], [-77.36002126978305, 34.53794289553788], [-77.36000957716938, 34.53793728342224], [-77.36002124240217, 34.537709393864205], [-77.36003846064492, 34.53769559564989], [-77.36003721098876, 34.53767498897625], [-77.36007002978536, 34.53744622509919], [-77.36003767452213, 34.53743325910139], [-77.36001715158343, 34.53721066505472], [-77.36001955541684, 34.53720866982177], [-77.36001893279665, 34.537206065194496], [-77.36001495360081, 34.5371911707584], [-77.35999474103133, 34.53698299632492], [-77.35997965199915, 34.536969592086066], [-77.35999552457415, 34.536951772086404], [-77.35995521793842, 34.53677153148951], [-77.3599705011724, 34.53672608572841], [-77.35998057563799, 34.53669612860437], [-77.3599953996822, 34.53660008796701], [-77.36000093007019, 34.536581848586586], [-77.36003119235878, 34.536481604510335], [-77.360037492887, 34.53647545566092], [-77.36004305027198, 34.53647081361452], [-77.36017318048265, 34.5362931127047], [-77.36020315694373, 34.5362029317902], [-77.36012168417454, 34.536162778172496], [-77.36010406095559, 34.5360111097427], [-77.36038631124487, 34.53593173066122], [-77.3604189047514, 34.53591594603227], [-77.36043680480235, 34.535910818013974], [-77.36067685947737, 34.535645062298286], [-77.36073457083492, 34.53557281364775], [-77.36081414577782, 34.535380466103675], [-77.36084298001776, 34.535315194109785], [-77.36091340968095, 34.535163101391234], [-77.36093012540562, 34.53511893816007], [-77.36091193517446, 34.535081880536296], [-77.36092342860952, 34.53504379270425], [-77.36101268064469, 34.5349846361717], [-77.36102607798422, 34.53496955847206], [-77.3610802446005, 34.53495448570594], [-77.36124269577965, 34.53500174463376], [-77.36153358855091, 34.534968146655174], [-77.36163696268153, 34.53492644726617], [-77.36173718678643, 34.534757876546095], [-77.36176980414919, 34.53458635523285], [-77.36188652778003, 34.534491541841625], [-77.36177178720646, 34.53443104474682], [-77.36171240409178, 34.53427179648014], [-77.3616829648222, 34.534256894616334], [-77.3616859364742, 34.53404881162954], [-77.36169643589625, 34.53402927166451], [-77.36173395492986, 34.53397691656031], [-77.36181672030196, 34.53386408468445], [-77.36192951342791, 34.533828892454515], [-77.3620543741288, 34.53383877246419], [-77.36222484336761, 34.5338143113517], [-77.36244961844494, 34.53372043576027], [-77.36252665039295, 34.53366486860634], [-77.36266879527219, 34.533533605866786], [-77.36294160341778, 34.5333602738122], [-77.36324865835877, 34.53310934223859], [-77.36367550466323, 34.53303000354254], [-77.364471840819, 34.53265019526147], [-77.36470172017923, 34.53253589200263], [-77.36483797197297, 34.532269579195145], [-77.36549711492884, 34.53192946292188], [-77.36535153154198, 34.53123852634242], [-77.3657087677422, 34.53051339538595], [-77.36535235931261, 34.53027234604235], [-77.36532342882984, 34.53007925969209], [-77.36512270404658, 34.52996342086798], [-77.36515240393283, 34.52977484283144], [-77.3652686061462, 34.52959750591134], [-77.36530398656105, 34.529351878430035], [-77.36530350773754, 34.52934765257549], [-77.36530613774367, 34.52934178080914], [-77.3652973273462, 34.52934195533077], [-77.36515665191058, 34.52921355537681], [-77.36510421680308, 34.52920404505066], [-77.36500779081364, 34.52914542890528], [-77.36496128276137, 34.529120064652474], [-77.36496820036346, 34.529064304635305], [-77.36502866967709, 34.52902000812159], [-77.36506960590671, 34.52898946738807], [-77.36522778027884, 34.52891832073418], [-77.36530705066987, 34.52891597303014], [-77.36538861552579, 34.52889633477881], [-77.36560937392728, 34.52862944401599], [-77.36567373493912, 34.528559836994866], [-77.36568272669157, 34.52854272520985], [-77.36570892588621, 34.52850583427716], [-77.36592339719449, 34.528279041819644], [-77.36605223271569, 34.528225802744274], [-77.36610889780478, 34.52817894116286], [-77.36632127432969, 34.52797689201237], [-77.36628681753479, 34.52784322886086], [-77.36624695329388, 34.52766399045814], [-77.36612195503957, 34.527606668556245], [-77.36607350882058, 34.52755390557742], [-77.36603617236108, 34.52752831574642], [-77.36604514487857, 34.52747727133924], [-77.36600276612593, 34.52736607050709], [-77.36600686547408, 34.527287711963126], [-77.3659471678742, 34.527181234742585], [-77.36594352765724, 34.52716952648968], [-77.36598965208167, 34.52704536571176], [-77.36587201353423, 34.5269822757578], [-77.36587118181522, 34.526940021199664], [-77.36587068388255, 34.52689565621403], [-77.3658680757258, 34.52687926220945], [-77.36587452351228, 34.52685968056431], [-77.36588561044621, 34.52681552937261], [-77.36594674086187, 34.52668460982706], [-77.36594702510803, 34.52668444303716], [-77.36594703110067, 34.526684093558984], [-77.36588093602185, 34.526571376615536], [-77.36581947999596, 34.52653926603023], [-77.36575413115155, 34.526524990926255], [-77.36567866180309, 34.526553855496246], [-77.36555630275005, 34.5265940556873], [-77.3655348085519, 34.526608036028904], [-77.36553081451083, 34.52662181949141], [-77.3654817157149, 34.5267063813873], [-77.36535352974317, 34.52687972636154], [-77.36534756910923, 34.52688946630151], [-77.36534138783371, 34.52689393609348], [-77.36532678126089, 34.52691226156824], [-77.36520369470729, 34.52703618621394], [-77.36518461724751, 34.52705853433133], [-77.36515262275803, 34.527083596219356], [-77.36506252005034, 34.52717893770111], [-77.36502963518572, 34.52723148068235], [-77.36494969295248, 34.52737602439568], [-77.36490648898382, 34.52741991892453], [-77.36457732671545, 34.52747962304376], [-77.36455485581885, 34.52747800357865], [-77.36451252862913, 34.527476575413445], [-77.36445676249585, 34.52747651848888], [-77.36437555645145, 34.527522729416006], [-77.36436552533398, 34.52752922291778], [-77.3643572988553, 34.52753503578283], [-77.36427736357051, 34.527610503619286], [-77.36415667869043, 34.52772617086342], [-77.36410257729418, 34.5277738132824], [-77.36402007316805, 34.52781876508619], [-77.36391555926139, 34.52793117083868], [-77.36375640636774, 34.52806594682735], [-77.36372407922384, 34.52808635712767], [-77.36370853388787, 34.528108469398965], [-77.36352004830069, 34.52823543603123], [-77.36342139675587, 34.52835467609952], [-77.36339113357263, 34.528399016903], [-77.3633727596318, 34.52841212702076], [-77.36335556279218, 34.528430580240915], [-77.36329133572337, 34.52853580544319], [-77.36327051422131, 34.52861073714415], [-77.36326284392064, 34.528662322231355], [-77.36329767685169, 34.52868971691489], [-77.36334839330746, 34.52874435373745], [-77.3633641847802, 34.52876006333003], [-77.36337778704807, 34.52876817749785], [-77.36344639502545, 34.528818523034346], [-77.36352265181911, 34.52886972236264], [-77.36352713398789, 34.528878096705924], [-77.36353382189043, 34.52898723269846], [-77.36353397018361, 34.52899050463797], [-77.36353387058267, 34.528993689892715], [-77.36353732858423, 34.52906484935486], [-77.36354129793813, 34.529111861754735], [-77.3635483413185, 34.52922412115987], [-77.3635449617767, 34.52923374665686], [-77.36354409929305, 34.529240598465464], [-77.36353595942751, 34.52935745597618], [-77.36350784859198, 34.529471322965385], [-77.36348653088093, 34.52951229672865], [-77.36342592905577, 34.52961813129691], [-77.36339244605253, 34.529663531178336], [-77.36333771897547, 34.529753250531], [-77.36332492698301, 34.5297713657064], [-77.36326863281194, 34.52985164686069], [-77.36314554817432, 34.529903344846964], [-77.36312545641148, 34.52991186251074], [-77.36310262013905, 34.529909528465765], [-77.36298592358737, 34.52989124940953], [-77.36293030261916, 34.529863441991516], [-77.36279349726824, 34.52979552791332], [-77.36257434382092, 34.52974079826028], [-77.36254131263402, 34.52970898563997], [-77.36243683017373, 34.52958274917163], [-77.36234210557012, 34.52952942491977], [-77.3622705001037, 34.529467273586434], [-77.36226376871821, 34.52941829617423], [-77.36220764110409, 34.52939416478844], [-77.36215743622787, 34.5293309284909], [-77.36212909718274, 34.52933292899004], [-77.36212172564359, 34.529316343454255], [-77.362132494439, 34.529298776932066], [-77.3620895477405, 34.52924217554685], [-77.36200149078205, 34.5292112493852], [-77.3619867263725, 34.52919931717842], [-77.3618829699239, 34.529177350301566], [-77.36176724193459, 34.52922930020023], [-77.36158652787006, 34.52939343115071], [-77.36152695969176, 34.52950083819403], [-77.36150806355312, 34.52964955698076], [-77.36175042587006, 34.52996465818488], [-77.36181901145407, 34.53005041823418], [-77.36184143500813, 34.530091190207884], [-77.36183819242899, 34.53014902885259], [-77.36185972464067, 34.53050236417578], [-77.36182350021626, 34.53058342313], [-77.36181568274858, 34.53063480949371], [-77.36185901453013, 34.53074428419766], [-77.36189609898884, 34.53081779119647], [-77.36196010625181, 34.53090914453273], [-77.36198254959545, 34.53096437771167], [-77.36202452612966, 34.53104411817321], [-77.36198766481091, 34.531129666387045], [-77.36196864488747, 34.53120597824528], [-77.36196194189166, 34.53129795726344], [-77.36185403518814, 34.531398573850936], [-77.36180873146216, 34.531506492793085], [-77.36178082316425, 34.53156886943149], [-77.36176503400233, 34.53160363121709], [-77.36171018512682, 34.53172438096953], [-77.36166817496765, 34.53180486495746], [-77.36166183040308, 34.53183083301311], [-77.36164228253678, 34.531873867839415], [-77.36158024741542, 34.53201044504581], [-77.36155597911127, 34.532090903619455], [-77.36152482625825, 34.53220415724838], [-77.36152363639178, 34.53221797432465], [-77.36152655972327, 34.532232687056755], [-77.36149576352905, 34.532344401052335], [-77.36154421337491, 34.53248964476485], [-77.36152022808609, 34.53258570215879], [-77.3614872671382, 34.53271030147734], [-77.36129333900351, 34.53278752873588], [-77.36116154875775, 34.5328001690137], [-77.36104398248176, 34.53289911910519], [-77.36094503902213, 34.53294317961155], [-77.36089593757504, 34.53300026260009], [-77.36077562019685, 34.533109105249686], [-77.36075467643096, 34.533185610283496], [-77.36077785041579, 34.53325232696237], [-77.36073841992072, 34.53343277628478], [-77.36071342139726, 34.53357557508228], [-77.36072417971002, 34.533679651649315], [-77.36066833586425, 34.5338020044643], [-77.36066553046628, 34.53382010439905], [-77.36067338719523, 34.5339317912847], [-77.3605980458581, 34.53401616874214], [-77.36049862083547, 34.53418781993574], [-77.36049606610324, 34.53420215357139], [-77.36048868712287, 34.53421132179423], [-77.36047524753593, 34.53423070654501], [-77.36043541763077, 34.534333300245564], [-77.36041844917301, 34.53442551168693], [-77.36040020307857, 34.5344607838791], [-77.36038153128743, 34.53451782523379], [-77.36035353520043, 34.53464229246466], [-77.36033598824845, 34.5347148562153], [-77.36026725177737, 34.53484570304262], [-77.36026644605343, 34.53484828268676], [-77.36022454271927, 34.53497573046867], [-77.36008041085428, 34.535228501222846], [-77.36008441878303, 34.535240734773446], [-77.36007058928027, 34.53524971438313], [-77.36005885565785, 34.53527284164247], [-77.3600113088217, 34.535373675729645], [-77.35999126593781, 34.53545948388557], [-77.35997794545067, 34.53550089252546], [-77.35991954245293, 34.535591639740446], [-77.35991069550207, 34.53563298952285], [-77.35990378588141, 34.535665284415934], [-77.35990036214318, 34.53575688962515], [-77.35983716730236, 34.535881236573694], [-77.35983035758673, 34.535889383310696], [-77.3597475505326, 34.535961812782105], [-77.35974695768718, 34.5359636450903], [-77.35981885653113, 34.53601345166687], [-77.35984514464285, 34.53603470944207], [-77.3599551531889, 34.53604744396835], [-77.35992960435092, 34.53617458689407], [-77.35994338102866, 34.536240342840024], [-77.35975068591904, 34.536335892987836], [-77.35976231806043, 34.53638883000204], [-77.35973315530634, 34.53645154732355], [-77.35972935160632, 34.53645972751052], [-77.35970131283118, 34.53652002742895], [-77.35968672961191, 34.536553140983244], [-77.35966512727049, 34.53662902651932], [-77.35966005592186, 34.53664838085014], [-77.35965634565093, 34.53666254075482], [-77.35963240700752, 34.536753899913926], [-77.35962517769133, 34.53677155905191], [-77.35962070794847, 34.5367764593291], [-77.35962082658132, 34.536783245667344], [-77.35954317351492, 34.536980024938046], [-77.35950045258438, 34.53703860094758], [-77.35944655359718, 34.53715652568344], [-77.35943996161149, 34.53716972419601], [-77.35943954557658, 34.53717796877553], [-77.35937506077447, 34.53730148215676], [-77.35940895108575, 34.53741145108764], [-77.35922251420479, 34.537511231153836], [-77.35912963305283, 34.53758164878852], [-77.35901426394486, 34.537716133867946], [-77.35888474005273, 34.53786173717853], [-77.35901926115201, 34.53796268106137], [-77.3589979880064, 34.53809025373983], [-77.35901962253358, 34.538203785017394], [-77.35901839748777, 34.5382148867957], [-77.35898773871338, 34.538336553542024], [-77.35898322565149, 34.53847270867356], [-77.35899531517362, 34.538700395745906], [-77.35893501575072, 34.53883379343646], [-77.35879568081532, 34.53900803785024], [-77.35864195206452, 34.539025189538016], [-77.35848354609438, 34.53914362784673], [-77.358509885715, 34.53931370559478], [-77.35846013738673, 34.539391822220615], [-77.35850576110653, 34.53945566081821], [-77.35848308630162, 34.539816740547266], [-77.35843725898434, 34.53988476404572], [-77.35850756049217, 34.53995327881454], [-77.35850259391628, 34.540284728882966], [-77.35841709761976, 34.540377314584525], [-77.3588193343925, 34.54052776389635], [-77.358812238001, 34.54059827570943], [-77.35886697330824, 34.54080218221653], [-77.35889566359496, 34.54088724048189], [-77.35890463223895, 34.540919171472886], [-77.3589137621648, 34.54093905241318], [-77.35891447088007, 34.54102057715996], [-77.35890628463903, 34.54104134545197], [-77.35891149613809, 34.54114331486624], [-77.3589090297533, 34.54118401111427], [-77.35891436305297, 34.54128500602914], [-77.35892319304699, 34.54129398059114], [-77.35892114994631, 34.541396382688156], [-77.35892127946701, 34.54140642202007], [-77.35892146342454, 34.54141597819815], [-77.35892352196358, 34.541521722052515], [-77.35891410131843, 34.54152986755378], [-77.35892287780344, 34.541645593772714], [-77.35891994451643, 34.54165850491844], [-77.3588357003142, 34.541785980667626], [-77.35880507891673, 34.54198681432725], [-77.35880820645023, 34.542034763464336], [-77.35889546819617, 34.54212899732589], [-77.35887794530248, 34.54217304505024], [-77.358869498991, 34.54227076153618], [-77.35891561365558, 34.542342570364646], [-77.35891980025723, 34.542382745794654], [-77.35892006301816, 34.54238589249926], [-77.3589206671588, 34.542389628942864], [-77.3587809834396, 34.54252833101153], [-77.35880714871797, 34.54258276330035], [-77.3588138037114, 34.54276842883961], [-77.35894887661382, 34.542843494954866], [-77.35898767670496, 34.5429189745191], [-77.35898654636918, 34.54298837875734], [-77.35900207539416, 34.54304461086545], [-77.35909512744092, 34.54307535521778], [-77.35916045641596, 34.543166123801335], [-77.35918860047947, 34.54320410760556], [-77.35929386206149, 34.54331632547799], [-77.3593325392319, 34.54342820474734], [-77.35941337536575, 34.54345746744528], [-77.35947770921112, 34.543512322296024], [-77.35954282666657, 34.543600875286444], [-77.35957066951578, 34.54363873847948], [-77.3595998442348, 34.543678412947564], [-77.35958741311568, 34.54370752714388], [-77.35954652107962, 34.543764627832395], [-77.35955620199685, 34.54383213132509], [-77.35953580786735, 34.54388858251963], [-77.359539356514, 34.54393251356336], [-77.35954538305917, 34.544081697951384], [-77.35955260666907, 34.544130987506506], [-77.35956803991415, 34.544185240458916], [-77.35956735463057, 34.544194505464134], [-77.35955942022218, 34.54423040548858], [-77.35955507059901, 34.54425062079179], [-77.35955340603013, 34.54425328443572], [-77.35954884644137, 34.54430968461129], [-77.35954826096824, 34.54432089874559], [-77.35953691828468, 34.544378070596565], [-77.35953381594281, 34.54442655582221], [-77.35953013344479, 34.54450145959193], [-77.35956907097409, 34.544546528323984], [-77.3595698466643, 34.54455694700278], [-77.35957072147994, 34.54456869708221], [-77.35957435517642, 34.54461750378324], [-77.35957757713945, 34.544660780199855], [-77.35957727215437, 34.54467828974225], [-77.35957876191007, 34.54469679368614], [-77.35957927659003, 34.54470860411318], [-77.3595780982214, 34.544720730567356], [-77.35957567732865, 34.544739725392404], [-77.35955096614524, 34.54480160899465], [-77.35955065230476, 34.54480453494224], [-77.35955037713595, 34.54480716733926], [-77.35947578568147, 34.54487652149925], [-77.3594662635884, 34.544890425779634], [-77.35944570747381, 34.544910451940495], [-77.35927111035349, 34.54504384165115], [-77.35924553365885, 34.54507985048339], [-77.3591711575121, 34.54508904864228], [-77.35915858980249, 34.54498909370528], [-77.35915405062164, 34.54492284985923], [-77.3591499965261, 34.5448636852268], [-77.35906262688546, 34.54469403227529], [-77.35906224217295, 34.544691245893766], [-77.35906190204898, 34.544688977268486], [-77.35905821158768, 34.54468784343729], [-77.35904596097922, 34.544685923233665], [-77.35853028329288, 34.54460854910228], [-77.35827539879025, 34.54458437251088], [-77.35792520858234, 34.54485496517847], [-77.35804577063756, 34.54497522176115], [-77.35800708657925, 34.54508800007281], [-77.35799124218482, 34.54516621337212], [-77.35800368803197, 34.5453333129218], [-77.35785967677943, 34.545594125053334], [-77.35785524765991, 34.54559678544218], [-77.35785427274432, 34.545599649818456], [-77.35784351131787, 34.545611038414], [-77.35757313035566, 34.54588495223422], [-77.35752281512892, 34.54593177681565], [-77.3574722475501, 34.54613337403261], [-77.35748201043039, 34.54614289503932], [-77.35745104205019, 34.54629414133858], [-77.35743896801029, 34.546387723332884], [-77.35743849220589, 34.54639398407264], [-77.35743809989366, 34.546400590288386], [-77.35743263869776, 34.546633015749094], [-77.35743248226674, 34.5466396727038], [-77.35743241984082, 34.54664626331497], [-77.35743113228408, 34.54670107290614], [-77.3574416697156, 34.546703197342325], [-77.35751030456277, 34.54670801069648], [-77.35755935230765, 34.546743817868354], [-77.3576087811323, 34.54675417500731], [-77.35773391051885, 34.546779604355905], [-77.35783236058826, 34.546786583878585], [-77.35786038301976, 34.54680514755893], [-77.35791941455808, 34.546814387885576], [-77.35802769673418, 34.54682869389698], [-77.35816120245522, 34.54681887345212], [-77.35822406936907, 34.546825555155294], [-77.35847437856805, 34.54689151499392], [-77.35861545261173, 34.54687875480041], [-77.35866482679586, 34.54692049829391], [-77.35866785706853, 34.54695144746813], [-77.35875696177493, 34.54702900691267], [-77.35879925631471, 34.54706014275412], [-77.35888295923309, 34.54716529891217], [-77.35894019971255, 34.54719485770138], [-77.35899905424074, 34.54727099448933], [-77.35899906116803, 34.54727100172771], [-77.35899907396428, 34.5472710196746], [-77.35905495410233, 34.54734939219557], [-77.35907820998216, 34.547382008741955], [-77.35909364434667, 34.54742742601882], [-77.35909803570694, 34.54743747808371], [-77.35910275582769, 34.54743968033156], [-77.35910324961486, 34.54744586215216], [-77.35911519193233, 34.54749909556998], [-77.35908286061945, 34.547569651175735], [-77.35932330543395, 34.547591540905515], [-77.35910611925385, 34.54769562759999], [-77.35909225001376, 34.54774722279879], [-77.3591095384702, 34.54779084018238], [-77.35914318296182, 34.54786230074606], [-77.35914503806758, 34.54796293248972], [-77.3591375819802, 34.547985519278285], [-77.35912229021177, 34.54802256820824], [-77.35902003577327, 34.54812485656946], [-77.35901302090507, 34.54814707004067], [-77.35899826895974, 34.54825040268314], [-77.35900296116472, 34.54826636028147], [-77.3590089644205, 34.54834970796775], [-77.35900433613517, 34.548371940976274], [-77.35902922798167, 34.54839471768291], [-77.35903187120205, 34.54839857922069], [-77.35902817292794, 34.54840281148845], [-77.35899993264975, 34.54843378097236], [-77.35902211191154, 34.54846044741009], [-77.35902204593253, 34.548461922798275], [-77.35902085249236, 34.54846341521072], [-77.35897513837187, 34.54849855700779], [-77.3589726219456, 34.54849996844651], [-77.3589709038052, 34.548501530370864], [-77.35887652198285, 34.548573962485506], [-77.35887658925685, 34.548577429498685], [-77.35878563433039, 34.54864825502436], [-77.35877095734719, 34.54866059705269], [-77.35872977884162, 34.548754369988146], [-77.35856986304157, 34.54886975971116], [-77.35853961996582, 34.548910219871644], [-77.35852084737756, 34.54893120398696], [-77.35835683408797, 34.54906965711357], [-77.35834955843626, 34.549078278523574], [-77.35828744259524, 34.54913710364882], [-77.35827287080868, 34.549152990617095], [-77.35826885489564, 34.549155767249935], [-77.3582208848557, 34.549219216914835], [-77.35820288044182, 34.549243122542954], [-77.35816760584478, 34.54929094828499], [-77.35811876862101, 34.549356331380615], [-77.35807929064362, 34.54943136137233], [-77.35802862664617, 34.54949172169958], [-77.35800133397562, 34.54951761752605], [-77.35796499755727, 34.549566078874335], [-77.35793113230554, 34.5496076467825], [-77.35788688942263, 34.549634540488356], [-77.35782189923951, 34.549678685638284], [-77.35776502711617, 34.54972599708496], [-77.35772525188965, 34.54975584796004], [-77.3576854330321, 34.549785957115375], [-77.35753585531752, 34.54991206933321], [-77.35736577728017, 34.550015570657344], [-77.35720976747923, 34.550099263541014], [-77.35712349349745, 34.55020817929473], [-77.35696568801909, 34.55034165157392], [-77.35692502668472, 34.55038508089233], [-77.35679172533871, 34.55054350248384], [-77.35656561981429, 34.550666676189515], [-77.35654062899185, 34.55068524442112], [-77.3563098056124, 34.55080576978377], [-77.35625124679089, 34.55084931637386], [-77.35620136184343, 34.550877192796], [-77.35616733856224, 34.550913617521935], [-77.35612338280055, 34.55096343848955], [-77.35609658038507, 34.550993993761224], [-77.35601146785918, 34.55110076575124], [-77.35598915342109, 34.551131870468296], [-77.35598141758894, 34.55114273836272], [-77.355965254064, 34.55116544603271], [-77.35587310017775, 34.55127098876499], [-77.3558248458631, 34.551314931442775], [-77.35576472796336, 34.55134925933295], [-77.35566441509778, 34.551363379298365], [-77.35549012045851, 34.55140044273523], [-77.35537056299219, 34.55141647398068], [-77.35530143425302, 34.551432823067984], [-77.3552718604901, 34.55144030346398], [-77.35519140535888, 34.55147992960757], [-77.35517258979893, 34.55148890177786], [-77.35516715958835, 34.55149167772708], [-77.35514250878371, 34.55151692883071], [-77.35503342432315, 34.551636686708044], [-77.35501317508292, 34.55166512983581], [-77.35497132364502, 34.55170486350477], [-77.3546839629831, 34.55193181379067], [-77.35462863930204, 34.55197477991321], [-77.3545721686922, 34.551989452496684], [-77.35445110318584, 34.55204009895044], [-77.35434610341548, 34.552085683754306], [-77.354174915043, 34.55219107110071], [-77.35412261912145, 34.55222531995397], [-77.35406666360454, 34.55226549323853], [-77.35402468787163, 34.552301858045226], [-77.35397561291845, 34.55232127113235], [-77.35389618045622, 34.552363518640185], [-77.3537903458348, 34.55242767773854], [-77.35378291460397, 34.55243259540643], [-77.3537766671292, 34.552435919237304], [-77.35361688450995, 34.55247599848405], [-77.35357916769696, 34.55248753669783], [-77.35352277017343, 34.55250116337929], [-77.35338148812868, 34.55254698875881], [-77.35330483606377, 34.55257254151705], [-77.35318349268975, 34.552620184592115], [-77.35310286390899, 34.552649042393256], [-77.35301661156996, 34.552680676400165], [-77.352985646431, 34.55268686777668], [-77.35294898258269, 34.55269395098039], [-77.35278827951613, 34.55273266357021], [-77.35263316215998, 34.552742476387664], [-77.3525916905065, 34.552744579087616], [-77.3525651782641, 34.55274298633353], [-77.35251827174403, 34.552733183159226], [-77.35232258169323, 34.55268517802773], [-77.35220139846939, 34.552642770415], [-77.35210052282562, 34.55261183009201], [-77.35196117576494, 34.5525685420395], [-77.35187576695294, 34.55254052251753], [-77.351812105559, 34.55249751512177], [-77.35169268475639, 34.55243768376279], [-77.35161696166855, 34.552373260620556], [-77.35152747912815, 34.55232131909895], [-77.35148684074517, 34.552269577098805], [-77.35142610379918, 34.55220910762168], [-77.35139025738286, 34.55218378138232], [-77.35136535326168, 34.55216465076821], [-77.35123843477263, 34.55205729074618], [-77.3511793508692, 34.55194659851138], [-77.35104324069285, 34.55178427096186], [-77.35100830325544, 34.55174868913429], [-77.35100009386849, 34.55172757544296], [-77.35096523361676, 34.551682492439795], [-77.35092551907769, 34.551615897357124], [-77.35090108768117, 34.551588448885724], [-77.35086518901538, 34.55150961920512], [-77.35086398327164, 34.55150234273262], [-77.35085457547787, 34.55145158296789], [-77.35084607158132, 34.5513887136779], [-77.35084211178861, 34.55138307974344], [-77.35084041432778, 34.55137337271348], [-77.35082115009081, 34.551263685676176], [-77.35079161272132, 34.551101243246094], [-77.35077736640616, 34.55102516559885], [-77.35076666643019, 34.55096607060162], [-77.35074517126586, 34.55090738845025], [-77.35067192818988, 34.5508572152152], [-77.35063177722313, 34.55082676974538], [-77.35058051856292, 34.550808673819745], [-77.35051910990973, 34.550791335769404], [-77.35047728531246, 34.55078465900493], [-77.3504578049033, 34.55077738020498], [-77.35042783062981, 34.5507694424407], [-77.35040972133116, 34.55075342102171], [-77.350403429581, 34.55074235143216], [-77.35038879556414, 34.550718939633235], [-77.35038816042568, 34.55071394621605], [-77.35038137756749, 34.55068690752614], [-77.35037876876203, 34.550656160118415], [-77.35037258914272, 34.55064895761791], [-77.35036022246501, 34.55059555623724], [-77.35035114936011, 34.55055637722982], [-77.35028865812026, 34.55045052086846], [-77.35026508540457, 34.55038013473709], [-77.35023431037357, 34.550368855423415], [-77.35011127873871, 34.550273415234116], [-77.35010079910998, 34.550263076944205], [-77.35009699912382, 34.55024827662979], [-77.35007388939678, 34.55016275745166], [-77.35006897125142, 34.55014782854945], [-77.35006144126356, 34.550124971466374], [-77.35004972055555, 34.550089393666994], [-77.3500420652967, 34.5500661563482], [-77.35004009522277, 34.550060176232655], [-77.35003432178544, 34.5500496786058], [-77.3500258378865, 34.550031625378864], [-77.35000422715571, 34.550014232020274], [-77.34996049937527, 34.55000719086492], [-77.34996707153398, 34.5499788772135], [-77.3499596549604, 34.5499512478017], [-77.34995913530372, 34.549947883088386], [-77.34995018233198, 34.54992010247604], [-77.34994350144967, 34.54989937207661], [-77.3499142220656, 34.549804947105386], [-77.34991361856099, 34.5498029538677], [-77.34991112438891, 34.54979459340209], [-77.34988857546219, 34.54969957080271], [-77.34988120200104, 34.54968520840518], [-77.34985587504264, 34.54965236181767], [-77.3497972059699, 34.54952734350451], [-77.34971517097786, 34.54946428067865], [-77.34964569120027, 34.54940062329866], [-77.3495312879387, 34.54923902606945], [-77.34942527704098, 34.54908467565197], [-77.34936167014844, 34.549025509975635], [-77.34909875583944, 34.548787148623546], [-77.34898615909276, 34.54858990617737], [-77.34895365032384, 34.548476084429296], [-77.34876462337913, 34.548432348212856], [-77.34856677778636, 34.54828608460835], [-77.34850740075805, 34.54816915898215], [-77.34840129845465, 34.54792857449485], [-77.34799503056678, 34.547753493935005], [-77.34799491188936, 34.54775334093013], [-77.34799486088686, 34.5477532720682], [-77.34799467037004, 34.54775306876877], [-77.34780835146881, 34.547411783543964], [-77.34775407689843, 34.54729827838149], [-77.347429531814, 34.54698125717047], [-77.34736319934767, 34.54686488263078], [-77.3472901617025, 34.54683843231463], [-77.34723233902093, 34.54677557153092], [-77.34703564754179, 34.546548291698315], [-77.34699749551034, 34.54642786339455], [-77.34680503976764, 34.54624006467085], [-77.34646455192636, 34.54601955932215], [-77.3464622133798, 34.54601674292814], [-77.34646042541384, 34.54601550144002], [-77.34644037308415, 34.546003072169476], [-77.34631710063535, 34.545885183185845], [-77.34622286609682, 34.54580486243954], [-77.34617717497586, 34.54574969888874], [-77.34622847723301, 34.54555923472109], [-77.34598112845246, 34.54541532495333], [-77.34569365312876, 34.54539912813171], [-77.3456896281506, 34.545394522200525], [-77.34568784037484, 34.54539220328357], [-77.34568086099125, 34.545385027732074], [-77.34565532115107, 34.54529980352214], [-77.34565082719215, 34.54527511881109], [-77.3456382005535, 34.54519208173947], [-77.3456319206572, 34.54515542912229], [-77.3454501220232, 34.54502433402548], [-77.3453826287456, 34.54490274566236], [-77.34531538533142, 34.54477764045464], [-77.34530374333484, 34.54472108052193], [-77.34528496074866, 34.544715709768795], [-77.34526861795503, 34.54468760260755], [-77.34519773217691, 34.54455993840615], [-77.34512148025652, 34.544494410993366], [-77.34493655204525, 34.54427758840838], [-77.34493664547901, 34.54427618473651], [-77.34493674417573, 34.5442747019993], [-77.34493443537802, 34.544272701373835], [-77.34493081019784, 34.54427479372827], [-77.3447284912335, 34.544190915513106], [-77.34466459904345, 34.54414522242559], [-77.34464362198551, 34.54407352352905], [-77.34459367238092, 34.54405156977883], [-77.34454718686524, 34.54404101196845], [-77.34449734945038, 34.54397215832611], [-77.34449863420042, 34.54388212666055], [-77.3444896969184, 34.543850849529406], [-77.34449230343665, 34.54364556874007], [-77.34444344376743, 34.54361268455289], [-77.34427293107817, 34.543570195857], [-77.34422065965794, 34.5435223270275], [-77.34416735793556, 34.54348783531988], [-77.3440696439078, 34.54348305010286], [-77.34406924988566, 34.54348295115297], [-77.3440691338348, 34.54348280183186], [-77.34406450528665, 34.54342238313019], [-77.34405371259201, 34.54335109897306], [-77.34403586816539, 34.54326686054432], [-77.34399272447715, 34.54318789067952], [-77.34400520008715, 34.543048716725295], [-77.34379771609149, 34.542971126916086], [-77.34378682211847, 34.54296551298559], [-77.34366389455322, 34.542824251275846], [-77.34363457197053, 34.542749778614855], [-77.34359683941776, 34.54269207309765], [-77.34357547661052, 34.542649801184965], [-77.34355550608234, 34.54261181292823], [-77.3436347976803, 34.54250492680949], [-77.3435978273038, 34.54239154507256], [-77.34340883873527, 34.54233281994355], [-77.34331442846386, 34.5423061975306], [-77.34328631975664, 34.54223239179693], [-77.34325372905572, 34.54216919415112], [-77.34321678876438, 34.542149051571826], [-77.34316651709382, 34.54217407740879], [-77.34307693213172, 34.54218228299074], [-77.34310921312802, 34.54214618440905], [-77.34319048277395, 34.542079209760175], [-77.34321940610405, 34.542035670509236], [-77.34330446813766, 34.5419928308133], [-77.3433301895952, 34.54187000041066], [-77.3433567138987, 34.5418104759824], [-77.34327584962837, 34.54166976808196], [-77.34328872384617, 34.54157543815134], [-77.34328657008363, 34.54148732899824], [-77.34324250874758, 34.54133726773276], [-77.34329103575645, 34.54124110802059], [-77.34327744515525, 34.54118587164198], [-77.34323922712287, 34.54117704262113], [-77.34317173802245, 34.54114517629341], [-77.3431418949747, 34.541141844216], [-77.34310787896054, 34.541133155237034], [-77.34309312358994, 34.541128807852985], [-77.34308756338544, 34.541114739822554], [-77.3430928022638, 34.54108422599339], [-77.3430903253105, 34.54108131123187], [-77.34309246641595, 34.541052829685114], [-77.34307084536526, 34.54104050223314], [-77.34305940454892, 34.541004161323215], [-77.34307041556193, 34.54099479723066], [-77.34305983635836, 34.540988495442065], [-77.34304759954983, 34.540975115025326], [-77.34303526800181, 34.54093864890524], [-77.34302908104193, 34.54089109242329], [-77.3430048483171, 34.54088182038232], [-77.34298717830583, 34.54084480640849], [-77.3429626880191, 34.540699980429764], [-77.34281479162354, 34.54066434318806], [-77.34275757918851, 34.54061381935105], [-77.34266653993348, 34.54047630211159], [-77.34260278087758, 34.54048959442689], [-77.34261027528154, 34.54044894616461], [-77.34258800401645, 34.540259430915], [-77.3425855305045, 34.54020768685372], [-77.34260165526632, 34.54016035374339], [-77.34250243656798, 34.53997482192828], [-77.34254952789746, 34.539886583354715], [-77.34251286757062, 34.53983359220225], [-77.34241942696303, 34.539741944778385], [-77.34238607879996, 34.53968817630038], [-77.3423783234967, 34.539554848309365], [-77.34238367700507, 34.53950226890809], [-77.34236733809222, 34.539461012573156], [-77.34236231889362, 34.53929866101191], [-77.34234373203826, 34.53926319659181], [-77.3423426169355, 34.53923837371922], [-77.34233287915964, 34.5390359336324], [-77.34234156372241, 34.53901868965141], [-77.34232774479315, 34.53900828326922], [-77.34230831671495, 34.53898895563074], [-77.34216940642126, 34.538886738560905], [-77.3420635561396, 34.53881386444776], [-77.34216917570734, 34.53870784814029], [-77.34217741371539, 34.5386393380121], [-77.34219855866755, 34.5385496244757], [-77.34217842351975, 34.53846395290597], [-77.34217207249733, 34.538431025449555], [-77.34216057333215, 34.53841073719417], [-77.3421778723511, 34.53833948614667], [-77.34220903592947, 34.53830329851491], [-77.34223607832925, 34.53824362176434], [-77.34225780179975, 34.53817387367406], [-77.34228918418466, 34.53807208796988], [-77.34230095715472, 34.53804525594209], [-77.342303461533, 34.53802802650007], [-77.3423313490282, 34.53799174598992], [-77.34233561060658, 34.5379815772081], [-77.34233845821026, 34.53797865632848], [-77.34238113377972, 34.53794163829511], [-77.34242717401997, 34.537904688860046], [-77.34243158160292, 34.53790118659804], [-77.34249891613001, 34.53787477535637], [-77.34253086392312, 34.53785176410743], [-77.34262167784146, 34.53782052159248], [-77.34272843303643, 34.53779601423919], [-77.34276288407216, 34.53775487580718], [-77.34278277710578, 34.53773112119708], [-77.34292947477418, 34.53758985567064], [-77.34293099498538, 34.53758831416438], [-77.34293218909463, 34.537587216498025], [-77.3429370884912, 34.537581878251004], [-77.34305846943468, 34.53744663932528], [-77.34309389831152, 34.53741921759843], [-77.34313060348192, 34.53737988733508], [-77.34317350858129, 34.53733377303891], [-77.34320926763428, 34.537302534777744], [-77.3432609508157, 34.537252140935294], [-77.34333143382591, 34.537182799845496], [-77.34338814847047, 34.537154389673894], [-77.34344279021919, 34.537092262509056], [-77.34353156941086, 34.53701576979423], [-77.34353645129566, 34.53701064358592], [-77.34364192208409, 34.536940801755584], [-77.34376105263303, 34.536855919721646], [-77.34385431632069, 34.53679579690906], [-77.34393054086235, 34.5367379227872], [-77.34405784599188, 34.53664647718039], [-77.34421568995072, 34.53654568889999], [-77.34426219542019, 34.53649755634368], [-77.34433060567163, 34.53641257290592], [-77.34466279782201, 34.53627614838753], [-77.3447268931796, 34.53625082627675], [-77.34475504572181, 34.53624067802889], [-77.34476640129586, 34.53622163265429], [-77.34478283406271, 34.53618532260203], [-77.34498702919069, 34.53594506799007], [-77.34493332722627, 34.53583067518198], [-77.34493325918096, 34.53583015499186], [-77.3449328830735, 34.53582977495778], [-77.34489416779297, 34.53571360983202], [-77.3449053579394, 34.53560991902759], [-77.34491511799679, 34.53557341829186], [-77.34498727676427, 34.535455392986236], [-77.3450231367274, 34.53537760653079], [-77.34502521075947, 34.53532752506943], [-77.34505706110993, 34.53525378291689], [-77.34508158497874, 34.53519700364964], [-77.34509820362962, 34.535165754709034], [-77.34514649171183, 34.53507831245755], [-77.34515216666928, 34.53506782647528], [-77.34515442388431, 34.535064113245795], [-77.3452131828621, 34.53497333151104], [-77.34521641396547, 34.53493278368326], [-77.34523416838297, 34.53487842320846], [-77.34525836531259, 34.534804337455284], [-77.34527795411024, 34.534756468288336], [-77.34528677304121, 34.53473904496969], [-77.34534504456276, 34.53467385202648], [-77.3453492965569, 34.53466884352577], [-77.34535227752137, 34.5346659062482], [-77.34546148361699, 34.5345974142453], [-77.34555196088283, 34.53451805193218], [-77.34567412313946, 34.53445253046392], [-77.34575069205525, 34.534411462794225], [-77.3457955116963, 34.534387423769765], [-77.3459088202735, 34.53436792813886], [-77.34594826804755, 34.53435495609118], [-77.345983588627, 34.53435477928156], [-77.34598209348731, 34.534332968507115], [-77.34610075377404, 34.53428761659224], [-77.34614794227411, 34.53420741798867], [-77.34618085765067, 34.53420241342128], [-77.34618142994212, 34.534181874595006], [-77.34616961154451, 34.534170590179656], [-77.34620624525158, 34.53409057586387], [-77.3462026218979, 34.534056415092564], [-77.34620435436369, 34.53402362545317], [-77.34615302701533, 34.53398684849623], [-77.34612821669589, 34.533960563294], [-77.34611504385502, 34.53394660733724], [-77.34595996027386, 34.53384781412305], [-77.34577527326715, 34.533995499008896], [-77.34576611613184, 34.53400052687689], [-77.34576751824432, 34.53405781990911], [-77.34581281285583, 34.534078551507996], [-77.34581268245073, 34.53408529236307], [-77.34581287746511, 34.5341124979504], [-77.3458341600826, 34.53412273567872], [-77.34583407472694, 34.53412675463893], [-77.34583396622506, 34.534140065882], [-77.34584020803338, 34.53414526468457], [-77.34584023696989, 34.53414681417752], [-77.34584144440078, 34.53414739240568], [-77.3458413174923, 34.53415356698756], [-77.34584131557374, 34.53415430959582], [-77.34584189841101, 34.53415459103173], [-77.34584186453829, 34.53415614325857], [-77.34584192455017, 34.534156456795024], [-77.3458418965862, 34.534157729999045], [-77.34584051819235, 34.53415824964695], [-77.345839323865, 34.53415864693565], [-77.34583847979869, 34.53415854296153], [-77.34583692830809, 34.53415835184518], [-77.34583626579052, 34.53415827023467], [-77.34583461577498, 34.53415806698173], [-77.34583264234941, 34.53415782389036], [-77.34583015062395, 34.53415747422706], [-77.34582841506915, 34.53415725153417], [-77.34582429770506, 34.534156758380284], [-77.34581797172201, 34.53415365158865], [-77.3458151339068, 34.53415221687963], [-77.34580584295958, 34.53414765439484], [-77.34580284680364, 34.53414643003311], [-77.34578844948672, 34.53414661549907], [-77.3457571682077, 34.53413059260332], [-77.34574729494805, 34.534128128041125], [-77.34566962806099, 34.53413985240047], [-77.34566105023232, 34.53419338814066], [-77.34566365251956, 34.53419517552314], [-77.34575489192494, 34.53422931473292], [-77.34576492867276, 34.53423545948194], [-77.34577332418893, 34.53424059942073], [-77.34585177063174, 34.53428386363617], [-77.34585659667421, 34.53428677028591], [-77.34586119957652, 34.534289159615426], [-77.34591020699212, 34.53431905889023], [-77.3457965155836, 34.53433223276869], [-77.34575257691966, 34.534329716328706], [-77.34566157357425, 34.53431366656707], [-77.34569469164977, 34.534251914139105], [-77.34564857642717, 34.53420282686391], [-77.34565033416253, 34.53419709194603], [-77.34562931983908, 34.534182329176744], [-77.34561710756722, 34.534166301597416], [-77.34560925838201, 34.53416118271031], [-77.34559307677401, 34.53414412591534], [-77.34557361337407, 34.534138875710866], [-77.34556074948284, 34.53413692975008], [-77.34555646473935, 34.534134092880755], [-77.34554902937576, 34.53412730940401], [-77.34554254729953, 34.534120794252246], [-77.3455517140375, 34.53409510935941], [-77.34552643970642, 34.53409250952953], [-77.34553809160184, 34.534075822962485], [-77.3455626062591, 34.53405640982719], [-77.34558636371557, 34.53403722289083], [-77.34560827181778, 34.5340195294999], [-77.34566260470258, 34.5339756492507], [-77.34570428871885, 34.53397043050028], [-77.34576202132669, 34.53392011360798], [-77.34592414820388, 34.533851666601706], [-77.34595285936237, 34.533843037847475], [-77.3459552589381, 34.533608739654916], [-77.345956270793, 34.53360222428822], [-77.34595172429289, 34.533370064640664], [-77.3459532685224, 34.533357836284615], [-77.34595495804764, 34.53334727610092], [-77.34594796541386, 34.53311377936127], [-77.34590086640156, 34.532925849422945], [-77.3459046835487, 34.53287518743316], [-77.34587191057011, 34.532810066309594], [-77.3458495073483, 34.53276071719444], [-77.34584905779596, 34.53272370374166], [-77.34568649157019, 34.532719806606224], [-77.34559364855842, 34.53271025326829], [-77.3455760110172, 34.53268896853314], [-77.34555298144585, 34.532680975998424], [-77.34548259278753, 34.532638983331424], [-77.34539886195066, 34.53264596369906], [-77.3453949224294, 34.532644985839525], [-77.34538713220299, 34.532643635717484], [-77.34535036347914, 34.5326213001847], [-77.34534633365236, 34.53262141553857], [-77.34532778487518, 34.532621572891806], [-77.34533973544018, 34.53261310690089], [-77.34535078370423, 34.532603079441884], [-77.34536242673605, 34.53258598569966], [-77.34538082238794, 34.53257100958059], [-77.34540097785838, 34.53255421670277], [-77.34545107099217, 34.532512025413226], [-77.34547458858285, 34.53249245800977], [-77.34554001360569, 34.532438022096954], [-77.34556876031988, 34.53241410385945], [-77.34558325811324, 34.53220078720416], [-77.3455791083903, 34.53218757664943], [-77.34552080162831, 34.532142365270865], [-77.34535748849842, 34.53197464652443], [-77.34534307398562, 34.53189983706365], [-77.34522049064206, 34.531869983534925], [-77.34513611606224, 34.53181509384099], [-77.34502572236957, 34.53180499589321], [-77.34500670849489, 34.53178030139082], [-77.34501237454576, 34.531667380967185], [-77.34500607322693, 34.531643403113165], [-77.34507228830978, 34.53152604512825], [-77.34508259248068, 34.53143225942674], [-77.34503412363668, 34.53116822812105], [-77.3449880017171, 34.531048533340126], [-77.34476884450089, 34.53088627033475], [-77.34472102734378, 34.53084212918106], [-77.34460994959598, 34.53076515917547], [-77.34457815852153, 34.5306899089541], [-77.34463005271064, 34.53061039979863], [-77.34454099715114, 34.53057598877655], [-77.34446931695312, 34.530401000550484], [-77.3444656033299, 34.53039169286506], [-77.34446497124775, 34.530389333680716], [-77.3444663305398, 34.53038707505938], [-77.34444113271759, 34.53027035394584], [-77.34444033135117, 34.530169469880555], [-77.34443087053054, 34.530149420751634], [-77.34442417473963, 34.53011815833514], [-77.34444468598537, 34.529924828571005], [-77.344445924369, 34.529902435067086], [-77.34434182330148, 34.529761318520265], [-77.34425749709334, 34.52968472778212], [-77.34419486135116, 34.52963117922694], [-77.34409638573598, 34.529551891312025], [-77.34402973613521, 34.52951478392434], [-77.34398420017018, 34.52947923194522], [-77.3438814399338, 34.529385654299254], [-77.34382830543063, 34.52933128368812], [-77.34377850199675, 34.529264009310516], [-77.34377186291141, 34.52922722592181], [-77.34371159353825, 34.529216943367715], [-77.34360478729421, 34.52911230699878], [-77.34355552396823, 34.52905127258719], [-77.34347243317339, 34.52897111452629], [-77.3434524125619, 34.528943698890025], [-77.34340027322395, 34.52887450646674], [-77.34337044447062, 34.52883308290481], [-77.34336327642596, 34.52881236891092], [-77.34332940310628, 34.5287694430925], [-77.34325451711393, 34.528653322706724], [-77.34320620192624, 34.52861189477491], [-77.34311290162215, 34.52851913884773], [-77.34309303205798, 34.52850576807269], [-77.34294421114251, 34.528452094072186], [-77.34289459866005, 34.52844298378535], [-77.34277290628783, 34.52842941739814], [-77.34275526002551, 34.52842774857182], [-77.34274852980894, 34.52842705484973], [-77.34273621393098, 34.52842701441076], [-77.34259052726118, 34.52843172851849], [-77.34255213735436, 34.52843280632031], [-77.34246212837388, 34.52841777427374], [-77.34245217933527, 34.52841574329138], [-77.34244653235007, 34.52841516963723], [-77.34235726526785, 34.52837274057472], [-77.34235513203127, 34.528368506467416], [-77.34235234442386, 34.52836751599442], [-77.34234549540064, 34.528360991069], [-77.34225134414585, 34.52825963762244], [-77.34222326134454, 34.528226949119706], [-77.34217976929685, 34.52815610725864], [-77.34217540372958, 34.52814815387068], [-77.34217817393797, 34.52814039528641], [-77.34216669131426, 34.528126644110316], [-77.34213373204284, 34.52805335299377], [-77.34210846053591, 34.52803537553081], [-77.34204097005245, 34.527964332349754], [-77.34201169866228, 34.527904352353744], [-77.34201036487585, 34.52780466966048], [-77.34203814980259, 34.52771456077973], [-77.34210280684381, 34.52759407126587], [-77.34206014276839, 34.52755268920217], [-77.34209017893679, 34.52749149331419], [-77.34218215796253, 34.527457182351604], [-77.34220295986078, 34.52740973249619], [-77.34218441440251, 34.527359514364065], [-77.34210728960863, 34.527349338138016], [-77.34199273048387, 34.52731756896691], [-77.34200602971916, 34.52718461893027], [-77.34179524327303, 34.527214834467216], [-77.34172150798315, 34.52715857208956], [-77.34164972368865, 34.527122098411844], [-77.34168497059221, 34.52694487887623], [-77.34160608534918, 34.52688355779981], [-77.34141534508505, 34.52666900259359], [-77.34141483602905, 34.52666660586082], [-77.34141501713587, 34.526666227744535], [-77.34141495019571, 34.526665947023595], [-77.34141543790098, 34.52666498679211], [-77.34141828293146, 34.52666575789555], [-77.34189940355628, 34.526782620353], [-77.34209768908771, 34.52681283063182], [-77.3421962893513, 34.52684551888276], [-77.34226509556345, 34.52683145885831], [-77.3423919996021, 34.526869140923424], [-77.34256116145033, 34.526746148890666], [-77.34255160082937, 34.52672254998062], [-77.34259331312086, 34.52665018595554], [-77.34267029279017, 34.52648562823196], [-77.34274758173368, 34.52632117024949], [-77.3429932425326, 34.52632895082667], [-77.3430896395666, 34.52623930802211], [-77.34317829219788, 34.52616771800357], [-77.34318752622444, 34.52603856796319], [-77.3433934867183, 34.525993948236334], [-77.34354979477833, 34.52586944536137], [-77.34355912793, 34.52572269246408], [-77.34379351053464, 34.52566835165879], [-77.3438557661043, 34.5256187169203], [-77.34390968697963, 34.52557284202201], [-77.34399358167173, 34.52550293622246], [-77.3440316508491, 34.525455951572894], [-77.34419386209713, 34.525328418263854], [-77.34427198728535, 34.52527589065218], [-77.34436247380998, 34.525120223043736], [-77.34459263836098, 34.52505661033992], [-77.34474060769065, 34.52496363883621], [-77.34480510575057, 34.52483892954652], [-77.34499193365829, 34.52476219015323], [-77.34507290759545, 34.52472091457747], [-77.34522167854641, 34.52464959324426], [-77.34527238569117, 34.52456963588364], [-77.34539176374854, 34.52444446094281], [-77.3455736480737, 34.52421951715338], [-77.34568567383442, 34.5240931821533], [-77.3461948145783, 34.523661545589775], [-77.34632409878441, 34.52359129780586], [-77.34704405760425, 34.523408051464536], [-77.34758887526112, 34.52321347014976], [-77.34777588959989, 34.52318007149785], [-77.34803694685814, 34.52310341580916], [-77.3493615579836, 34.5224981963716], [-77.34986303805755, 34.52233347144677], [-77.35057896978435, 34.52214494837532], [-77.35094210642025, 34.522037737091665], [-77.35113706277727, 34.52196012986322], [-77.35189695980753, 34.521730239984684], [-77.35235459905456, 34.521559282339894], [-77.35278826019457, 34.52143822548072], [-77.35410632651686, 34.52097833640587], [-77.35468269868367, 34.520705501651015], [-77.35538580977632, 34.520437549480896], [-77.35569142361511, 34.52031704214227], [-77.35584768536005, 34.52027906020862], [-77.3563193770089, 34.52011420451548], [-77.35704983162844, 34.51987070115364], [-77.3572736861912, 34.51977823353394], [-77.35779995395484, 34.5195756009648], [-77.3588564053293, 34.519218539359336], [-77.35929818264503, 34.518978065986516], [-77.3601546465673, 34.518582561985426], [-77.36044392783255, 34.518447995261155], [-77.36136052010595, 34.51799487768578], [-77.36202934563991, 34.51776814690085], [-77.36361130182108, 34.517105330013], [-77.36361324522704, 34.51710434868877], [-77.36361437831233, 34.517103963573675], [-77.36361738881459, 34.51710259454902], [-77.36520061649011, 34.51638582124064], [-77.36576886978051, 34.51616653969013], [-77.36678622799337, 34.515693894157515], [-77.36681617643377, 34.51568279039075], [-77.36686705082028, 34.51565693436739], [-77.36786659323828, 34.51520054487507], [-77.36837302283095, 34.514948846819095], [-77.36958479060456, 34.51428597765985], [-77.36978357524634, 34.51414658525457], [-77.3699625278324, 34.514083510628915], [-77.37023280596593, 34.51402480453171], [-77.37105315943454, 34.51377099260042], [-77.37154269647239, 34.51362692688037], [-77.37229543120026, 34.51338209826994], [-77.37312696498809, 34.51298921567136], [-77.37370204315344, 34.51271321062967], [-77.37437053336888, 34.51240506336741], [-77.37588418118146, 34.51167639557086], [-77.37630038788066, 34.51149519726146], [-77.37645868491542, 34.51143436901195], [-77.37666522584718, 34.51130669220841], [-77.37788950420995, 34.51064020836392], [-77.37838575326133, 34.51038528541824], [-77.37935379666968, 34.51001430926672], [-77.37947406204438, 34.509984861842824], [-77.37956066853464, 34.50996359311621], [-77.3808603690693, 34.50983889775374], [-77.38104697057169, 34.509842771450366], [-77.38131309233681, 34.50982288040677], [-77.38263435869703, 34.50906045073941], [-77.38294613995193, 34.508630721446096], [-77.38334443183284, 34.508384814668155], [-77.38422984567995, 34.50791853512436], [-77.38492082017424, 34.507604776121994], [-77.38581550634942, 34.50720964811024], [-77.3870968823098, 34.50667680116491], [-77.3881984054452, 34.506211849879435], [-77.38898462974016, 34.50588557174753], [-77.38926761124175, 34.50574621919389], [-77.38996806129674, 34.505470540704934], [-77.39056941127305, 34.50521201774066], [-77.3916401983052, 34.504913817516616], [-77.39215148959345, 34.50465733330592], [-77.3932684028505, 34.503719294283044], [-77.39374799270217, 34.5034604502148], [-77.3942159652739, 34.50318695769458], [-77.39526917872702, 34.50278640529019], [-77.3953330595016, 34.502770280787246], [-77.39535746881914, 34.50274895909185], [-77.39540431865808, 34.50272726431225], [-77.39691957761447, 34.502014269238494], [-77.39749532165574, 34.50180233794461], [-77.39850403442968, 34.50134877587314], [-77.3985606790041, 34.50132729271765], [-77.39870106159242, 34.50127197882855], [-77.39969207875546, 34.50088436134263], [-77.4012059880128, 34.500219443784445], [-77.40167252550577, 34.500033092752865], [-77.4019044103997, 34.49997394692386], [-77.40215557521627, 34.49979380719688], [-77.40325840387663, 34.49930054576707], [-77.40403983364814, 34.499026109780566], [-77.40484040931403, 34.49873986084375], [-77.40625710205161, 34.498118071555886], [-77.40701765177076, 34.49774677539531], [-77.40801227787185, 34.49726353118505], [-77.4083242162225, 34.49713699091144], [-77.40890637012538, 34.49685998642481], [-77.41045505980885, 34.4961868856647], [-77.41098166380685, 34.495852571127244], [-77.41160902848313, 34.49555964768362], [-77.41191440240527, 34.495220442910934], [-77.41212911544474, 34.49512284743536], [-77.41276160402869, 34.49493172273357], [-77.41313839991155, 34.49460753205391], [-77.41331100779601, 34.49451940251335], [-77.41382413199102, 34.49426001078318], [-77.41436371820993, 34.4939946781588], [-77.4144969432195, 34.49393082753152], [-77.41497085348357, 34.493629232998614], [-77.4154511292018, 34.49337475847594], [-77.41566134070153, 34.49326337795998], [-77.4161545229122, 34.49301642411607], [-77.41693266749452, 34.492774982029474], [-77.41757896795673, 34.49252069300985], [-77.41809080559474, 34.49229752341401], [-77.41891198365299, 34.49198049766115], [-77.4196049878722, 34.49156053087151], [-77.41995226452131, 34.49129794989282], [-77.42044998119397, 34.49107431509192], [-77.42119584485566, 34.49071426800813], [-77.42215465463283, 34.490339760590864], [-77.42250681909144, 34.49016333950662], [-77.42284808619767, 34.48999394104101], [-77.42375664199818, 34.48958268360912], [-77.4243095103905, 34.48909877331398], [-77.4246755494722, 34.488841118721844], [-77.42519105735997, 34.48871179207485], [-77.42602812962606, 34.48831042163329], [-77.4269897658203, 34.48788458729804], [-77.42730486621815, 34.48774283796871], [-77.42758552705988, 34.48761850392876], [-77.4283556511852, 34.48727879326425], [-77.42856735815133, 34.48716832499071], [-77.42877354542429, 34.487038173232015], [-77.42912775235905, 34.486846622388796], [-77.4293990422936, 34.48665651945303], [-77.42962233489543, 34.48649292033399], [-77.42991222800698, 34.486277198241176], [-77.430642578037, 34.485800629616556], [-77.43105505503203, 34.48553147669918], [-77.43116435512854, 34.48546015443762], [-77.43130160912784, 34.48540254917519], [-77.43181967263465, 34.485184593661764], [-77.4322783604684, 34.48508053826233], [-77.4334245330986, 34.48477651203086], [-77.43419927364943, 34.484508209267716], [-77.43475884843757, 34.48430284117149], [-77.43483614316423, 34.484274472493645], [-77.43491722567266, 34.48423594061302], [-77.43595245837784, 34.483743283308144], [-77.43610239693604, 34.48370176526026], [-77.43715093276352, 34.48320158359924], [-77.43744968454857, 34.483168444647625], [-77.43788643938953, 34.483036275345164], [-77.43963960029568, 34.48245411789789], [-77.44043928281008, 34.48224518163201], [-77.44120680736071, 34.4818544444635], [-77.44205956780044, 34.48145528983606], [-77.44267072198748, 34.48095339819721], [-77.44297649112534, 34.48059355242284], [-77.44314766662671, 34.4805097788587], [-77.44367331705789, 34.48025251903477], [-77.44423296398308, 34.479982024811655], [-77.4443362045403, 34.47993199440654], [-77.4450959443351, 34.47975578699591], [-77.44594952000016, 34.47939390748661], [-77.44638249020562, 34.479192912143574], [-77.44672732927668, 34.47882799740558], [-77.44683833558847, 34.478763640854986], [-77.44755700171747, 34.47857558180287], [-77.44839076000179, 34.47816713692155], [-77.44880199750567, 34.47799250595024], [-77.44913770688052, 34.47779465358368], [-77.44966635371776, 34.477556538091164], [-77.45007167431825, 34.47742142199348], [-77.4511161961404, 34.47695478615102], [-77.45133648840437, 34.476847971064466], [-77.45152845001022, 34.476689641231275], [-77.45218780827362, 34.47633378349356], [-77.45243648607095, 34.4761944194576], [-77.45271190973985, 34.47609361994167], [-77.45350745228309, 34.47572538601415], [-77.4537438891541, 34.47564165826811], [-77.45391747924334, 34.47557855044193], [-77.45504437572731, 34.47508553340982], [-77.45610111660721, 34.474631800826025], [-77.4563281501909, 34.47454683861378], [-77.45636042365926, 34.474536965651716], [-77.45638906709881, 34.47452087418331], [-77.45796147801673, 34.47412687277677], [-77.45871452296048, 34.473426411675845], [-77.45882170543905, 34.47335680986091], [-77.45890689193216, 34.47329781342671], [-77.45986813751172, 34.472721513686146], [-77.45989788968056, 34.47269167513709], [-77.45990464726357, 34.47267299727318], [-77.46104836922281, 34.47211404222194], [-77.46109949448473, 34.47208748249224], [-77.46115372064783, 34.47206094115233], [-77.4622373747466, 34.47153871744202], [-77.46233303511445, 34.471498804347675], [-77.46342497260238, 34.47095829322771], [-77.46357831785413, 34.470915828862076], [-77.4636751930732, 34.470837980226], [-77.46461511154018, 34.47038721666347], [-77.46477303139883, 34.47030828081103], [-77.46494410083122, 34.47022689774422], [-77.46578359952748, 34.46973700409633], [-77.46592502714643, 34.469679973874506], [-77.46609339000324, 34.46960973171055], [-77.46698068053364, 34.46919141867256], [-77.46721418869824, 34.46911830786285], [-77.46731847996205, 34.468996403570934], [-77.46813604340147, 34.46849331730975], [-77.46824658846, 34.46843189164124], [-77.46838796713561, 34.46837516881768], [-77.46934366127908, 34.46798636638539], [-77.46958091356197, 34.46789216238576], [-77.46982722096249, 34.46777268654589], [-77.47055837569457, 34.46750540975481], [-77.47089745711718, 34.4673437926655], [-77.47132733303475, 34.467173276928385], [-77.4717565354356, 34.46696396270566], [-77.47227512219135, 34.466825107862135], [-77.4729519242816, 34.46641242697504], [-77.47281109611711, 34.46589751342328], [-77.47266929858209, 34.465379035986345], [-77.4718845633395, 34.46585051456592], [-77.47116464874541, 34.46628560260933], [-77.47033435807126, 34.46668623478088], [-77.4691833290037, 34.467064497446046], [-77.46840259140836, 34.46731966459266], [-77.4678717351701, 34.46752671440272], [-77.46665451906695, 34.468287181320775], [-77.46614749540888, 34.46860002724516], [-77.46555005195026, 34.46888282026365], [-77.46440366498612, 34.46952393431697], [-77.46384199011239, 34.46985589141178], [-77.46320567069264, 34.47015614116481], [-77.4619852520929, 34.47075214042179], [-77.46139332642159, 34.47104218596162], [-77.46082829107715, 34.47130897518334], [-77.45933460104146, 34.47196850388561], [-77.4588689838006, 34.47219169389404], [-77.458443530451, 34.47243500920436], [-77.45683949598956, 34.47319272456504], [-77.45656485035398, 34.47344819216476], [-77.45606228965065, 34.47357411956817], [-77.45522353226018, 34.47398448010574], [-77.45425959583137, 34.47441258916984], [-77.45394106567402, 34.474549356388806], [-77.45366876625769, 34.47466848734005], [-77.45256619444609, 34.47506932191845], [-77.4524438318285, 34.475112653341874], [-77.4512860808856, 34.475612383955216], [-77.45126022806748, 34.47562276903111], [-77.45123995761678, 34.475633924353545], [-77.45019967795903, 34.476232628100625], [-77.45015172605228, 34.47627217880851], [-77.4489692553369, 34.47684553399374], [-77.44892625936943, 34.476864742265974], [-77.44888717616186, 34.47687777089192], [-77.44839920212851, 34.47709052630792], [-77.44763244754556, 34.47742408451999], [-77.44648029945787, 34.47792383805975], [-77.44629208265873, 34.47796079206494], [-77.44619711230187, 34.478055461193755], [-77.44510044687492, 34.47856979034955], [-77.4440951955547, 34.47904978835459], [-77.44386770551614, 34.479158803835254], [-77.44357321996844, 34.47927288497831], [-77.44261053657927, 34.479735940677685], [-77.44170956351142, 34.48017400347429], [-77.44125078023391, 34.48026320193564], [-77.43929486714958, 34.481191995453685], [-77.43879554889558, 34.48144618704268], [-77.43837537454002, 34.48171012005398], [-77.43616780268736, 34.4825452957902], [-77.43579706842291, 34.48292973546383], [-77.43515399781653, 34.48324072654128], [-77.43459456971765, 34.48354394702647], [-77.43455655776272, 34.483562089306815], [-77.43391895627398, 34.483828596754186], [-77.43278010705171, 34.484126912279784], [-77.43237610480145, 34.48426682353129], [-77.43207777511064, 34.48434595650764], [-77.43107794634214, 34.484572772163546], [-77.43071054138998, 34.484645382180226], [-77.4296225053658, 34.48521607941706], [-77.42946416220883, 34.48530876304789], [-77.42912239872837, 34.485594002109806], [-77.42858931345413, 34.48599069408496], [-77.42850452067363, 34.48605281895642], [-77.42781511380839, 34.48657565309535], [-77.42761201509302, 34.48670385526135], [-77.42737025755264, 34.48683000386471], [-77.42705283319413, 34.48702614635494], [-77.42667739397116, 34.487193096944445], [-77.42641407963012, 34.48730974640506], [-77.42532521813527, 34.4877995756394], [-77.42514320823736, 34.487880173753695], [-77.42498477468564, 34.487956141561], [-77.423580161193, 34.48830852017174], [-77.4225828080095, 34.48901055621257], [-77.42258178743728, 34.489011449490995], [-77.42258011028078, 34.48901220865524], [-77.42137234892371, 34.48961171829732], [-77.4202097480118, 34.49019413741545], [-77.42017116760746, 34.49021603316122], [-77.42012915925366, 34.49023623960046], [-77.41890240067443, 34.49078744860286], [-77.41798921343953, 34.49147792289328], [-77.4179398889214, 34.491507813994886], [-77.41788144164083, 34.4915303782767], [-77.41710069814872, 34.491870795230525], [-77.41663580422191, 34.492062067550876], [-77.41660431155232, 34.49208264644242], [-77.41545959673725, 34.49252407680747], [-77.41526087033817, 34.49258186170407], [-77.41509752010441, 34.49268111607263], [-77.41410592877452, 34.49320863288174], [-77.41308530658776, 34.49369223119056], [-77.41265592905714, 34.49390728628691], [-77.41167862248548, 34.49440506510487], [-77.41070628578188, 34.494843254190165], [-77.41008718093838, 34.495126903483154], [-77.40930133402372, 34.495625798381006], [-77.40803657276271, 34.49617549647433], [-77.40716179585837, 34.49657165792189], [-77.40556513746928, 34.497342659747346], [-77.40511480691337, 34.49756250863058], [-77.40486428302168, 34.49767246406981], [-77.40430117188188, 34.49787380664358], [-77.40283910029574, 34.4984421038655], [-77.40169668351834, 34.498954788073775], [-77.40047667320245, 34.499279490039214], [-77.39852730142864, 34.50031196417397], [-77.39851399033388, 34.50031964450855], [-77.39641202681949, 34.501275392998345], [-77.39571733749699, 34.501702735960976], [-77.3953530515965, 34.501880880932454], [-77.39424730384432, 34.50220892064469], [-77.39377214766533, 34.50238674541979], [-77.39245728237526, 34.50298532187054], [-77.39218671662519, 34.50309275862542], [-77.3920850251494, 34.5031436275377], [-77.39193315132702, 34.503228281123306], [-77.39018846330478, 34.50420758533653], [-77.38901018132262, 34.50475260362197], [-77.388059284319, 34.50515837241877], [-77.38590314821579, 34.506019147772925], [-77.38584184546647, 34.50604368276387], [-77.38581648459363, 34.50605387441509], [-77.38576554438288, 34.50607690246445], [-77.3836973888539, 34.50700954072977], [-77.3826686664347, 34.50754424063302], [-77.38173980433541, 34.50804378381826], [-77.37951629647807, 34.50892556669716], [-77.3794979355804, 34.50893152323916], [-77.379489740224, 34.5089357139537], [-77.37947239328666, 34.50894326914613], [-77.37723931768477, 34.50982744617656], [-77.37632689837787, 34.51032743717144], [-77.37531712097052, 34.51087888461496], [-77.37384826231863, 34.51171281247505], [-77.37339567694741, 34.51193068639688], [-77.37314844365834, 34.51204465105846], [-77.37243525679358, 34.512456733527436], [-77.372154541098, 34.512569587363004], [-77.37156237502158, 34.512762235494954], [-77.37123640871626, 34.51286674951804], [-77.37077157445488, 34.51302244479385], [-77.37023782323902, 34.513055413650584], [-77.36998560253666, 34.51307042288951], [-77.36966169422186, 34.51309384521454], [-77.36907361076538, 34.513380338305254], [-77.36857220380031, 34.51355706699816], [-77.36840202863809, 34.513676397772244], [-77.36785222425695, 34.514200116255964], [-77.36681474484277, 34.51468178046228], [-77.3668092684502, 34.51468396347602], [-77.36680655751717, 34.51468466436471], [-77.36680264740501, 34.51468690896052], [-77.36464474859031, 34.51561944778526], [-77.36383183455794, 34.51609425494315], [-77.36363541023721, 34.51618357882216], [-77.36250841671811, 34.516566623432404], [-77.36205154837265, 34.516797319428385], [-77.36081803592167, 34.517290853747106], [-77.36046813644475, 34.51739032426411], [-77.36029579179336, 34.51747665534604], [-77.36002554774768, 34.517621858384544], [-77.35888163056795, 34.51811734910661], [-77.35802044524527, 34.51835613932229], [-77.35729786523083, 34.518723575177106], [-77.35606677458597, 34.51917128703159], [-77.35579481480646, 34.5192598135543], [-77.35571524824591, 34.51927868925799], [-77.35553862889554, 34.51935640000311], [-77.35413465522373, 34.51974468934123], [-77.35319396573713, 34.519980803951604], [-77.35097030338576, 34.52081182216075], [-77.34976873723603, 34.52105730992899], [-77.34795622498261, 34.52140518743484], [-77.34781582995922, 34.52144641240317], [-77.34763169715674, 34.5214792964452], [-77.3462418615478, 34.52162107540927], [-77.34615274319567, 34.52163318008798], [-77.34468242714819, 34.521798464445276], [-77.34466778776164, 34.52179994873182], [-77.34465555233184, 34.52180084078906], [-77.34393530883091, 34.5219315021978], [-77.34387826776674, 34.521996811802765], [-77.34328190258634, 34.52199088166594], [-77.34311036154607, 34.52200480108386], [-77.34309302383878, 34.522008342225746], [-77.34298000497193, 34.52196317336642], [-77.34223595194265, 34.52170113564252], [-77.34203719937518, 34.52150412448523], [-77.34171650784461, 34.521236837328665], [-77.34154467447318, 34.521073503710355], [-77.34089700017694, 34.52078364494202], [-77.34031435395174, 34.52045929092207], [-77.3401665107482, 34.520371071737955], [-77.33999027864955, 34.52040150102774], [-77.3398258145132, 34.520427360358674], [-77.33968327542101, 34.5205500806408], [-77.3391940830061, 34.52088680990155], [-77.33893421899258, 34.5208208833322], [-77.33874542199753, 34.520894890780326], [-77.33865329579018, 34.521033455286165], [-77.33879941977307, 34.52116686458373], [-77.33839534832447, 34.52148138104169], [-77.33830499288362, 34.52167404611636], [-77.33813280687592, 34.52175239211249], [-77.33799171442135, 34.52196273507832], [-77.33797878605378, 34.52201201264031], [-77.33792102953322, 34.52207021039722], [-77.33765953905404, 34.52231010381494], [-77.33762235881136, 34.522335263788875], [-77.33758938380615, 34.52238761856833], [-77.337368484331, 34.52259678640671], [-77.33727600772977, 34.522663421752846], [-77.33682695219642, 34.522898051172106], [-77.33679253845604, 34.52289952539797], [-77.33675102452266, 34.52290459521227], [-77.33650310932063, 34.52296607264216], [-77.33537396107431, 34.52322765576809], [-77.3352136500038, 34.523283696769276], [-77.33484642346433, 34.52343125845886], [-77.33267540963185, 34.52390081058648], [-77.33205187600248, 34.524222061226105], [-77.33075028631009, 34.52495060254745], [-77.33045309851774, 34.52545966322314], [-77.33009185461128, 34.525846548556], [-77.32932488991747, 34.52624376225373], [-77.32885754154401, 34.526556766866264], [-77.32855249424665, 34.52686127386714], [-77.32824383353206, 34.52709148633723], [-77.32778477067168, 34.52748105664617], [-77.32725680027886, 34.527874712152524], [-77.32663714492836, 34.528301701876785], [-77.32653579706484, 34.52886015126646], [-77.32630377148, 34.529328876930805], [-77.32637199282766, 34.529774069727665], [-77.32637416607243, 34.529808389359175], [-77.32563556439695, 34.53007005997464], [-77.32544616193883, 34.53006004496072], [-77.32524421161958, 34.53001948218656], [-77.32506694916646, 34.53013217286047], [-77.32506563823135, 34.530347876989396], [-77.32514910065125, 34.53047409590331], [-77.32523531748068, 34.53070214191465], [-77.32525679672513, 34.53094824478116], [-77.32560958395877, 34.53118509764677], [-77.32567547761263, 34.5313344313079], [-77.32568403891709, 34.53137646690988], [-77.32570185165584, 34.53143508385091], [-77.32579666809238, 34.53172537708136], [-77.32592958142982, 34.531830803226605], [-77.32598599809816, 34.53187719120898], [-77.32611690588098, 34.53196576314977], [-77.3263756614492, 34.53200069303338], [-77.32645538813354, 34.53195104044765], [-77.32641517946358, 34.532005821477746], [-77.3263742547977, 34.53206108911263], [-77.32626761822856, 34.532207465548446], [-77.32621240269086, 34.532279780816985], [-77.3260893393174, 34.5326174874444], [-77.32556896584246, 34.53292837632097], [-77.32494528528457, 34.53305401611532], [-77.32457729749231, 34.53313030998339], [-77.3239913970684, 34.53324522730557], [-77.32363746113678, 34.533410777633264], [-77.32240169135588, 34.534081567714054], [-77.32031368093465, 34.535085951877875], [-77.31964004517307, 34.535438733137596], [-77.31922333666748, 34.53570479818546], [-77.31659860714826, 34.53757815966001], [-77.31627854799027, 34.537776418580904], [-77.31603191831928, 34.537880538609166], [-77.31460713047322, 34.53874013541939], [-77.3128465800635, 34.53978975767614], [-77.31253125079824, 34.53992617599442], [-77.31216246586726, 34.54017377552478], [-77.3096649151583, 34.54153619914271], [-77.30879181587792, 34.542079747365506], [-77.30794687297282, 34.54273753471141], [-77.30712204516774, 34.54325394529395], [-77.30647349128364, 34.54369164216638], [-77.30526868728793, 34.54433868766609], [-77.30362332152842, 34.54531662465727], [-77.30342215599163, 34.54542678004707], [-77.30329007488913, 34.54550008724784], [-77.3016402117625, 34.54654630523982], [-77.30009685692407, 34.54771784934345], [-77.29994963425419, 34.54780228010791], [-77.29798117444507, 34.54873902949626], [-77.29691164497255, 34.549589577790016], [-77.29594594454551, 34.550335132202235], [-77.29494512227996, 34.55123529487734], [-77.29371841608396, 34.55179374085011], [-77.29292395933436, 34.552238278952444], [-77.29142559853996, 34.55294192969524], [-77.29089529590944, 34.55323760347977], [-77.29053501790028, 34.553576041730906], [-77.28990362398261, 34.553777128426944], [-77.2881009850636, 34.55484471088988], [-77.28724425778466, 34.55538666089792], [-77.2856700158921, 34.55662264885321], [-77.28537332715543, 34.55685646037497], [-77.28393424787384, 34.55800029052963], [-77.28336049341729, 34.55841008285957], [-77.28101518134014, 34.559745556476145], [-77.28064011439385, 34.55993879181848], [-77.28029291345219, 34.56013794395984], [-77.27832840779925, 34.561364232675686], [-77.27747844493999, 34.56188563041813], [-77.27734343620708, 34.56197731926841], [-77.27487951821068, 34.56365019655958], [-77.27446582505338, 34.56394925692592], [-77.27351609725926, 34.56465510371273], [-77.27282714519505, 34.565120511528676], [-77.27237793925887, 34.56533890629844], [-77.27094543271959, 34.566075632337714], [-77.27079350002728, 34.566278074076756], [-77.27021124657853, 34.56705390386205], [-77.26974705589767, 34.567638537702685], [-77.26945561800139, 34.56793716932759], [-77.26887468001277, 34.56846669783819], [-77.26840647363937, 34.5687973444753], [-77.268235385184, 34.56892282480541], [-77.2678158001312, 34.56926125296327], [-77.26648478577532, 34.56999461817046], [-77.26570130079153, 34.57046993070012], [-77.26473212547153, 34.57106459851852], [-77.26393556700847, 34.57178670319178], [-77.26343870470056, 34.572177303412346], [-77.26320711226049, 34.57233708384936], [-77.26254248967705, 34.57302177146149], [-77.26250878618019, 34.57304682476234], [-77.26249975465123, 34.57305937541723], [-77.26170562816468, 34.57363052276064], [-77.26119888185318, 34.57388643356644], [-77.26005291324861, 34.574610842269706], [-77.25992829421052, 34.574678614781334], [-77.25960332499842, 34.57487907999366], [-77.25843595402424, 34.57555435533477], [-77.2581869687205, 34.57575875070912], [-77.25757607168036, 34.57617449592243], [-77.2564456504364, 34.57683890264234], [-77.25583733175077, 34.577235161892844], [-77.25300617565479, 34.5788193376009], [-77.2528783841449, 34.57888756360169], [-77.25285307271665, 34.57890149094977], [-77.25281049000293, 34.57892937726726], [-77.25038444886454, 34.58057651631623], [-77.24965151555064, 34.5813119834947], [-77.24873696594244, 34.58188745740684], [-77.24816253292444, 34.582286880017655], [-77.24796298538683, 34.58243919731122], [-77.24759022682888, 34.582581890065875], [-77.24590487107193, 34.58323761452287], [-77.24434843864861, 34.58387169030189], [-77.24179025863884, 34.58483592762475], [-77.24078987556834, 34.58547661554188], [-77.24015860772809, 34.586013820615555], [-77.23932419800235, 34.58688067136482], [-77.23905009698603, 34.587224856494], [-77.23882480717073, 34.587456724678724], [-77.23842615932644, 34.58736216199276], [-77.23620739698882, 34.58804719470353], [-77.23414871080298, 34.588555523083656], [-77.23303603338559, 34.589234047522666], [-77.23107068721337, 34.59036625868343], [-77.23062356891256, 34.590678445324635], [-77.22973772054168, 34.59120039145514], [-77.22972441866213, 34.591202738703814], [-77.22843081077878, 34.59135712368762], [-77.22692652215682, 34.591520161364855], [-77.22615894546051, 34.59160723714035], [-77.2258237571049, 34.591667113902965], [-77.22542185283466, 34.59180580641274], [-77.22471100778981, 34.59199187559966], [-77.22442674180824, 34.59245542832339], [-77.22434470475267, 34.5926634772635], [-77.22423976650033, 34.59288753128569], [-77.2239433495581, 34.59357450072174], [-77.22338755083379, 34.59475918502628], [-77.22271804967889, 34.59603350034492], [-77.22217442120228, 34.59720568042295], [-77.2216038750148, 34.59843208225836], [-77.22112524238558, 34.59956817489196], [-77.22070335682571, 34.60086043720935], [-77.2199740576738, 34.60224201031318], [-77.21885264328897, 34.60335704077623], [-77.21792052232843, 34.60441150637559], [-77.2175057189568, 34.60530581131603], [-77.21534769961788, 34.60629121855285], [-77.21188256414564, 34.607705283801586], [-77.2099967112868, 34.609144645235325], [-77.20952306262356, 34.60940426411146], [-77.20928906447357, 34.609872236164875], [-77.20861619517596, 34.611218011907965], [-77.20793832153996, 34.61257365638042], [-77.20461460167341, 34.614156082274086], [-77.20407261950865, 34.614394271431124], [-77.2016976523925, 34.61444176438076], [-77.19809058554077, 34.61433118197635], [-77.19773907159434, 34.61440739984629], [-77.19731713726459, 34.614347786332544], [-77.1923593731234, 34.61449107224456], [-77.19089698893734, 34.61459223502261], [-77.18905913017427, 34.615326662944724], [-77.18826640712592, 34.61610928710029], [-77.18707928356329, 34.61705530016262], [-77.18624842259918, 34.61957485096955], [-77.18426864691747, 34.62060364302073], [-77.18052998324984, 34.62172646812293], [-77.17755165962575, 34.62235678860806], [-77.17683553727622, 34.62235677973872], [-77.1748514962257, 34.622741848402825], [-77.17313291022201, 34.623002943277875], [-77.17161026629942, 34.62337085930407], [-77.16764229531375, 34.6240587373062], [-77.1687305631317, 34.62502790680826], [-77.17105521127934, 34.6270979965303], [-77.17570485551602, 34.6312380279716]], [[-77.43510740076182, 34.75496010219714], [-77.43510282199468, 34.754944204230334], [-77.43508043709991, 34.75487781934233], [-77.43513557967549, 34.754919420179824], [-77.43513889327478, 34.754946966530504], [-77.43578808594091, 34.754676181976464], [-77.43578160371533, 34.7546222944531], [-77.43573649330204, 34.754453837240405], [-77.4355477937356, 34.75398157899298], [-77.43558961177374, 34.75386616588257], [-77.43552637709665, 34.753569320755915], [-77.43549002971885, 34.75346130278641], [-77.43552044882308, 34.75341299016996], [-77.43552450528276, 34.753359945941774], [-77.43552913144094, 34.75313650518716], [-77.43558737060836, 34.75297429947093], [-77.4356259739194, 34.75289081885178], [-77.43565526957292, 34.752825807615295], [-77.43580899590677, 34.752592924084766], [-77.43588182063668, 34.752448104954055], [-77.43589550237584, 34.75242594243075], [-77.43597598533103, 34.75236579849338], [-77.4361312988162, 34.752228799711915], [-77.43618675118556, 34.752198409019975], [-77.43625745485322, 34.7521513594594], [-77.43646213756801, 34.75206485960055], [-77.43651819391985, 34.75199201263081], [-77.43664767273381, 34.7519110002338], [-77.43670522981454, 34.75187026556375], [-77.43684043143313, 34.75177058523652], [-77.43698965062167, 34.75169010879925], [-77.43718400679751, 34.75158400686805], [-77.4374181277462, 34.75146473872224], [-77.43754184913873, 34.75142072943809], [-77.4376466678961, 34.75136059896367], [-77.43778261646776, 34.751313252706154], [-77.43791970456705, 34.7512901363026], [-77.43812823122684, 34.75122697422586], [-77.43830284047463, 34.75116816746517], [-77.43849699089577, 34.75109861458556], [-77.43867326697381, 34.75102544428188], [-77.4387894650435, 34.750921270296445], [-77.43887089774373, 34.75087667411157], [-77.4389992375165, 34.75081012401544], [-77.43914371686031, 34.75076550589969], [-77.43923319508701, 34.75073273684957], [-77.43938608092901, 34.75069421255882], [-77.43962563330341, 34.75048464183827], [-77.43970738811774, 34.75047127970383], [-77.43972682759417, 34.750410173198915], [-77.43991409425666, 34.75027660814921], [-77.44020093139429, 34.75001676150663], [-77.44028724248034, 34.74992293255816], [-77.44044155902645, 34.74988112864534], [-77.44080253869298, 34.749667888744455], [-77.44096878180795, 34.74954064689172], [-77.44121631072478, 34.7492534024271], [-77.44124221611598, 34.74923955049491], [-77.4412846932312, 34.74918354261474], [-77.44151306728916, 34.748934235836565], [-77.44169656075212, 34.74864016159903], [-77.44178484007192, 34.748333952885524], [-77.44172853656588, 34.74779088232822], [-77.44173791985745, 34.74773008137257], [-77.44171147426727, 34.74770864792171], [-77.4416230863381, 34.74761868136018], [-77.44146909084746, 34.747438245920385], [-77.44139524339869, 34.74742663509885], [-77.44114827799794, 34.747438888724304], [-77.44055247398161, 34.747331826805585], [-77.44053783516607, 34.74733241231379], [-77.4405318113678, 34.74733182265415], [-77.44051148378472, 34.747330121751126], [-77.44021903047947, 34.74732611413174], [-77.44006573558018, 34.747318315976074], [-77.44005210862707, 34.7473173706955], [-77.44005985519026, 34.74730871282432], [-77.4400530698611, 34.74716998348035], [-77.44007161999924, 34.74708602598336], [-77.44009731267866, 34.74704568255393], [-77.44009119425472, 34.746986076118944], [-77.44010721276621, 34.74690938448675], [-77.4400499147643, 34.746802539238786], [-77.43993158414233, 34.74669803851335], [-77.43991252158298, 34.74669428689325], [-77.43976568215112, 34.7466767777846], [-77.43966706597256, 34.74666725002032], [-77.43960631462316, 34.74673440201014], [-77.43953660665159, 34.746828015043775], [-77.43949901093812, 34.74687850329576], [-77.43945883052689, 34.74696239350756], [-77.43946946885464, 34.747092191491525], [-77.43936203630571, 34.74720809315856], [-77.43927800137077, 34.747254051326905], [-77.43907754804424, 34.74719978307865], [-77.43886584727403, 34.747142647993485], [-77.43889361443456, 34.746899395414246], [-77.43893733344282, 34.74678021184983], [-77.4388937457687, 34.74668460231592], [-77.43905917145332, 34.746422124176554], [-77.43912650812953, 34.74628727077004], [-77.43925275522503, 34.74608842193852], [-77.43926477269144, 34.74605605897651], [-77.43907925535684, 34.74572494753422], [-77.43907052001985, 34.745718040706976], [-77.43903463923006, 34.74569614777167], [-77.43906881065644, 34.74569021850089], [-77.43910100806187, 34.745649778987556], [-77.4393345031168, 34.74537648775495], [-77.43935643216037, 34.745249537594994], [-77.43940048877934, 34.74513397317393], [-77.43946639158966, 34.74500843813517], [-77.43953565029565, 34.744957349614744], [-77.43960851115094, 34.74477857339012], [-77.43961118629932, 34.744599663003186], [-77.43962155777925, 34.74450361780276], [-77.43962279917832, 34.74435203570585], [-77.4396275532269, 34.744226198358945], [-77.43962413521902, 34.74414785220479], [-77.43962132386399, 34.743851746993585], [-77.43960929958475, 34.74370763362495], [-77.4396160482255, 34.743663151558806], [-77.43963509709158, 34.74362447869444], [-77.43966494263015, 34.743400719194966], [-77.43967731118947, 34.74331960123706], [-77.43969003464245, 34.74322754244509], [-77.43969667661986, 34.743132291797764], [-77.43970725342444, 34.74299468136555], [-77.43972748298688, 34.74276551022126], [-77.4397366864305, 34.742587241887534], [-77.43976473962775, 34.742340926504035], [-77.43977086795168, 34.74230100132338], [-77.4396873086566, 34.74201096309598], [-77.43963887314646, 34.74157519528872], [-77.43959745151058, 34.74148053585001], [-77.43960757721794, 34.74142407994216], [-77.43962230975542, 34.74136066415507], [-77.43971227408304, 34.74098622214197], [-77.43974244602683, 34.74091217040689], [-77.43976533124572, 34.740846608104675], [-77.43992212207607, 34.74045226155978], [-77.43994431844075, 34.74042367025582], [-77.43995372545142, 34.740406659397166], [-77.44001425417743, 34.74027793425953], [-77.44015477487783, 34.739987382182086], [-77.44019069802268, 34.73995071974762], [-77.44019340848828, 34.739892665906524], [-77.4403021590929, 34.73948045953158], [-77.44034335346448, 34.73944502570586], [-77.44034546263536, 34.73938281554445], [-77.44047465810782, 34.739014558067936], [-77.44052672462968, 34.73895006316698], [-77.44055721741596, 34.73840176512037], [-77.44055722246885, 34.73840169204642], [-77.44055722528117, 34.73840164231258], [-77.44070668252871, 34.73789488285224], [-77.44070779014297, 34.737892411124875], [-77.44086672982027, 34.737412017750046], [-77.44088244741535, 34.73739726421409], [-77.44089247037465, 34.73736894453437], [-77.44087549447339, 34.73730147463255], [-77.44090618875971, 34.73691681023551], [-77.44083930679382, 34.7368231656945], [-77.44069535760275, 34.73655836772005], [-77.44050722317004, 34.7363582921261], [-77.44021016848278, 34.73631440071394], [-77.44019356583684, 34.7363125413448], [-77.44017173570889, 34.73631041588465], [-77.43989534430057, 34.73625705917996], [-77.43966739004284, 34.73620076511767], [-77.43959680553444, 34.73618086640128], [-77.43951317614726, 34.73615880379268], [-77.43930875284329, 34.736068434969596], [-77.43913112363964, 34.73607250292098], [-77.43899216682854, 34.73605461443516], [-77.43872478837851, 34.736041336632724], [-77.43867630887536, 34.736038276803264], [-77.43865084402888, 34.73603568468103], [-77.43857386796462, 34.7360316455343], [-77.43819065589271, 34.73603168101257], [-77.43803311846017, 34.73604525193864], [-77.43754318888384, 34.73608791904355], [-77.43738199033162, 34.73607965331312], [-77.43732023315634, 34.73610526595417], [-77.4372646303353, 34.736133220912826], [-77.43697808273939, 34.73629406835132], [-77.43694215374849, 34.73633867787837], [-77.4367693776483, 34.73651920793388], [-77.43690109062655, 34.73691599414711], [-77.43667324786892, 34.73704465550186], [-77.43650962128142, 34.73702424365467], [-77.4364518449968, 34.737078192501386], [-77.43620570516423, 34.73727550609396], [-77.43613889956744, 34.73741698257626], [-77.43608074469026, 34.737590860003095], [-77.43598478680752, 34.73792217120983], [-77.43588230335124, 34.738242647355335], [-77.43588933119985, 34.73844785615784], [-77.43588052324634, 34.73856719185005], [-77.43585431567888, 34.73871514083332], [-77.43586521981034, 34.73896244784063], [-77.4358595022218, 34.738996472491394], [-77.43586419534694, 34.73902040410233], [-77.43586510375127, 34.739105609862634], [-77.43587921642187, 34.739460537822346], [-77.43589154407432, 34.73956670670525], [-77.43590305817798, 34.73977195704275], [-77.43590733723694, 34.73985174452572], [-77.43590999293218, 34.739894098984614], [-77.4359488470664, 34.74014576720102], [-77.43590841380473, 34.74034115823898], [-77.43591568246018, 34.740540279508025], [-77.43591173327519, 34.740691837777334], [-77.43589423931913, 34.74079347201558], [-77.43576963276419, 34.74104942453218], [-77.43571872113091, 34.74118343696186], [-77.43555875858053, 34.741271876258054], [-77.43547183584926, 34.74131070917636], [-77.43530386053526, 34.741318001534744], [-77.43521531720805, 34.741350766557495], [-77.4350773903231, 34.74123887064314], [-77.43499280641238, 34.74116952368318], [-77.4348430298812, 34.741031318661875], [-77.43469925132372, 34.74091835616119], [-77.43465223358702, 34.74086520009822], [-77.43459533792306, 34.740790913940515], [-77.43422284375819, 34.74034894193569], [-77.43412010319392, 34.74019438965564], [-77.43396441791498, 34.74001141344596], [-77.43374635000444, 34.73977984679372], [-77.43334519664273, 34.73979503826682], [-77.4331550646422, 34.73976952047069], [-77.43309912879815, 34.73980061653244], [-77.43294597121593, 34.73979139356136], [-77.43288929775309, 34.73963573019377], [-77.43272239699417, 34.739438263685464], [-77.43277483660779, 34.7391484009955], [-77.43276376539227, 34.73903281762117], [-77.43275541649508, 34.73897809560083], [-77.4327580425478, 34.738763743797705], [-77.43277695341384, 34.7385227173468], [-77.43271313358312, 34.738456077290614], [-77.43263167495026, 34.73813692628791], [-77.43244818790816, 34.73761900010999], [-77.43224016396191, 34.73740746008186], [-77.43216423356799, 34.73714616624518], [-77.43200972558864, 34.73691860668421], [-77.43185954906895, 34.73667345051132], [-77.43184373627598, 34.73647511510261], [-77.4316786308183, 34.73586209964151], [-77.43167743112255, 34.73585794709738], [-77.43167696438152, 34.73585683285814], [-77.43167662302491, 34.73585424346116], [-77.43136037890453, 34.735188094564194], [-77.43131691678177, 34.73511424555224], [-77.43126298765543, 34.735068130859304], [-77.43114078614062, 34.734983422924], [-77.43070068073573, 34.73479565601441], [-77.43012555266881, 34.73482036937377], [-77.42949467992467, 34.73509511309924], [-77.42997032986803, 34.73567596898383], [-77.4299926245007, 34.73582819616671], [-77.430279332655, 34.7362512501675], [-77.43037735722807, 34.73639895986915], [-77.43067956899948, 34.736627324418855], [-77.43060927894528, 34.737106226184636], [-77.43061061376345, 34.737162279459085], [-77.43056225150275, 34.737214611837565], [-77.43044993377781, 34.737665177437385], [-77.43082195213131, 34.738806842893446], [-77.43087518991602, 34.73886963375588], [-77.43091556230836, 34.73894600589114], [-77.43167903066687, 34.740276236051], [-77.4316835173963, 34.74031801752895], [-77.43169531575808, 34.74033659663835], [-77.4322002278539, 34.740690866434164], [-77.43263549225634, 34.740665134102095], [-77.4327455181863, 34.740596006992625], [-77.4328479436005, 34.740668418887886], [-77.43293124270176, 34.740690327023366], [-77.43312720326561, 34.74081127291679], [-77.43314474486378, 34.74084308488626], [-77.43308753159968, 34.7410715264976], [-77.4333159809384, 34.74126673133196], [-77.43336823030384, 34.741400829001975], [-77.43377140419975, 34.741621100717595], [-77.43384307221712, 34.741661040489824], [-77.43406276666568, 34.74200389582737], [-77.4340666208957, 34.74200627094817], [-77.4343376267557, 34.74216777748395], [-77.43457415186704, 34.74223696666559], [-77.43469697836373, 34.74228819029218], [-77.43496801974926, 34.74220520407066], [-77.43513173188836, 34.74245076581357], [-77.43528617576271, 34.74250286963027], [-77.43548829358866, 34.742623107260705], [-77.43580914939403, 34.74261457140814], [-77.43581253966794, 34.74261491214433], [-77.4361145467544, 34.74267484465694], [-77.43649963091693, 34.74277292328927], [-77.43688825973175, 34.742876535085486], [-77.43721844822018, 34.742825504808465], [-77.4373172581264, 34.74282953869697], [-77.43735337403875, 34.74282558324311], [-77.43749773008608, 34.7428029408516], [-77.43773359221089, 34.742761856058024], [-77.43801120633606, 34.742768195874824], [-77.43820340449159, 34.74278151686547], [-77.43832403240219, 34.74279510045034], [-77.43851729858874, 34.74282399286991], [-77.43862880976309, 34.742849817416136], [-77.43876079798457, 34.74294560935501], [-77.43883748509472, 34.74311163817878], [-77.43885350799523, 34.74313013434851], [-77.43885815486787, 34.74316520160189], [-77.43887096616245, 34.74340285016897], [-77.43888500885188, 34.74356339888221], [-77.4388591644371, 34.743678241946895], [-77.43884370860448, 34.74380383266759], [-77.43884165360994, 34.743811881884355], [-77.43884076926045, 34.7438224826878], [-77.43882887000831, 34.74394717312409], [-77.43883293303186, 34.74403153148043], [-77.43882653815399, 34.74417306721931], [-77.43882211210685, 34.74422432714963], [-77.4388147173763, 34.744262334258686], [-77.4387847410453, 34.74447863126359], [-77.4387787552952, 34.744488694916384], [-77.43878177691245, 34.744499280065206], [-77.43877642099963, 34.744555559997586], [-77.43876225351983, 34.744730628303586], [-77.4387608329537, 34.744761948486385], [-77.43875300084851, 34.74480062041083], [-77.43866799959166, 34.744993153131674], [-77.43866130934137, 34.74500669407958], [-77.43865622747089, 34.74501639859594], [-77.4386267929576, 34.74507260746746], [-77.4385362238616, 34.74524250950516], [-77.43844282342832, 34.745415525966834], [-77.43840613992519, 34.745476578802304], [-77.43840384426287, 34.74554976048334], [-77.43841342926518, 34.745758640726635], [-77.43841378886665, 34.74576881491721], [-77.43840248704738, 34.74584769704205], [-77.43838784246502, 34.74600284215474], [-77.43838006518442, 34.746026500005506], [-77.43836650596177, 34.74603854440041], [-77.43834148263642, 34.74605849567213], [-77.43820698050334, 34.74615184050907], [-77.43803195225112, 34.74618439980467], [-77.43800148934395, 34.746190066623], [-77.43798092589476, 34.74619647813975], [-77.43788989601343, 34.746210573401946], [-77.43779475990108, 34.74622627032846], [-77.43764602827989, 34.74624579412181], [-77.43758248214345, 34.74625341224141], [-77.43750027859056, 34.746278169988216], [-77.43746374463214, 34.74638835109154], [-77.43745240358578, 34.74640120255404], [-77.43744812395519, 34.74640781357929], [-77.43741281660914, 34.746527130455476], [-77.437371194364, 34.74665600768132], [-77.43731395788033, 34.74677210945222], [-77.43721202918346, 34.74693976172542], [-77.43719198103268, 34.74700901199959], [-77.43714466034125, 34.747033706306986], [-77.43709897574614, 34.74711627789841], [-77.4370903301876, 34.74713189324364], [-77.43707951341588, 34.7472182440756], [-77.4371110903395, 34.74726026866543], [-77.43717165036735, 34.747330976436835], [-77.43725620509102, 34.74736773703685], [-77.43731013984544, 34.74740638928118], [-77.4374219783224, 34.74748662020725], [-77.43771792355787, 34.74762152929999], [-77.43784460883174, 34.7477753885962], [-77.43787672903775, 34.74780726600418], [-77.43804465125434, 34.74793163481414], [-77.43833525369499, 34.74823047844447], [-77.43834986290406, 34.74824535046977], [-77.43835357180626, 34.74824916902081], [-77.43840142818358, 34.74827008390138], [-77.43885201334463, 34.7484876403309], [-77.43891379848387, 34.748512558482794], [-77.4390142328179, 34.74859167573514], [-77.43928489992322, 34.74875345867643], [-77.43937382466724, 34.7488892935475], [-77.43926526722424, 34.74900163628887], [-77.43922175169992, 34.7491156829841], [-77.43904504432355, 34.7492999278949], [-77.43901055362161, 34.74933331375344], [-77.43892493929195, 34.74957102448318], [-77.43875686205945, 34.74966666232217], [-77.43863752934246, 34.74975013710571], [-77.43854233491739, 34.749796118628176], [-77.43844578928291, 34.74990630593473], [-77.43838454670109, 34.74994127593514], [-77.43833483774175, 34.749959134392974], [-77.43825702994144, 34.74997187221871], [-77.43815144551144, 34.750038857108066], [-77.43802596340976, 34.74994825532979], [-77.43801286532022, 34.749946956319334], [-77.43800318642637, 34.749947809709795], [-77.43790963079086, 34.749965278541204], [-77.43788082312713, 34.74997494207685], [-77.4378837403872, 34.75000758460829], [-77.4379012530228, 34.75005195791267], [-77.43789338500295, 34.750125662786196], [-77.43789859918516, 34.75022458877645], [-77.4379068360293, 34.750333423590575], [-77.43783021270934, 34.750396326664], [-77.43771334730857, 34.750444703314045], [-77.4376517396391, 34.750478693623506], [-77.43758358225895, 34.75050001367408], [-77.43752710880796, 34.75053425392347], [-77.43748709592325, 34.750583645563296], [-77.43732930069109, 34.75066377747518], [-77.43731325306173, 34.75067357469771], [-77.43730358698383, 34.75068171539362], [-77.4371382280891, 34.7507615736985], [-77.43707353919451, 34.75079196431386], [-77.4369718690539, 34.75084534788245], [-77.43696320529747, 34.75084957660336], [-77.43695323477993, 34.75085526924373], [-77.43677679739979, 34.750918986086944], [-77.43665976468584, 34.751015831878945], [-77.43654196951098, 34.751168368068356], [-77.4365101380325, 34.75123117549197], [-77.43650057986574, 34.751239738042], [-77.43647408548999, 34.751265221779946], [-77.43632311080064, 34.75145725658939], [-77.43624173270939, 34.75154051546688], [-77.43608285651072, 34.75164676518019], [-77.43584788726103, 34.751644996101916], [-77.43576957475447, 34.75162131692201], [-77.43566030302208, 34.75171248805621], [-77.43552122544159, 34.75173615179762], [-77.43547387329319, 34.75178186531855], [-77.43541009660085, 34.75175546843507], [-77.4353443100459, 34.75173648363067], [-77.43525751913228, 34.7517287044673], [-77.43519218151606, 34.75169566355052], [-77.4351023092334, 34.751711034857856], [-77.43498844644304, 34.751736778123785], [-77.43491212491989, 34.75180287621278], [-77.43483632828367, 34.75186219305602], [-77.43476658284662, 34.75189178912765], [-77.4347766999156, 34.7519732442625], [-77.43483408084418, 34.75205512986799], [-77.43494255406736, 34.75226294996038], [-77.4349765956689, 34.75233626393413], [-77.43495836466454, 34.75243535295239], [-77.43493223581885, 34.75264845913145], [-77.43473060208342, 34.75281108269092], [-77.4344135493417, 34.75301751577777], [-77.43440512208166, 34.75302334665836], [-77.43440413296176, 34.75302561016285], [-77.43440099461598, 34.753026112169685], [-77.43407859718658, 34.753188791350915], [-77.43406578529186, 34.75322073925605], [-77.43401705246882, 34.753244743160764], [-77.43389631839948, 34.7534046301074], [-77.43377153336029, 34.753487887577336], [-77.43376060495679, 34.753513059113985], [-77.43371339453134, 34.75362024367402], [-77.43371502043445, 34.753734262863276], [-77.43373514175825, 34.753746878285405], [-77.43384901294095, 34.753825242242144], [-77.43408443475361, 34.75399891325911], [-77.43411456130866, 34.75401562140763], [-77.43412103065752, 34.75403232242965], [-77.43412056123017, 34.75404201202572], [-77.43419368448583, 34.75444841593599], [-77.43420925841622, 34.75463203821458], [-77.43422764012942, 34.754980502732735], [-77.43422398516218, 34.75519622256863], [-77.43403720993314, 34.75540647646032], [-77.43439666751935, 34.75525654960577]], [[-77.36746507279796, 34.62679451583145], [-77.3674585457581, 34.62680717295705], [-77.36743580374853, 34.6268161919061], [-77.36744381596094, 34.62677467641494], [-77.367458564767, 34.62675760502956], [-77.36816972243778, 34.62498781780065], [-77.3687975097822, 34.62464025811409], [-77.36903639156657, 34.62443879285856], [-77.36926528761049, 34.6242273904112], [-77.36943012493478, 34.62395723724265], [-77.36952669954917, 34.62362192019472], [-77.36974538224891, 34.62306273064268], [-77.36982542033611, 34.622867209235906], [-77.3703932164619, 34.62273176323694], [-77.37061397532094, 34.622572795814555], [-77.37087429300625, 34.62261980490189], [-77.37122302559251, 34.62284995832713], [-77.37081739442016, 34.62312764682648], [-77.37110906665359, 34.623715486640215], [-77.3706134077008, 34.624204151768], [-77.37041918938448, 34.6244548770121], [-77.37017481048485, 34.624699128493276], [-77.36982465491688, 34.625011540005474], [-77.36927126260343, 34.62508241212281], [-77.36903598061572, 34.625563120104545], [-77.3674751409664, 34.62678604270902]], [[-77.34353631294175, 34.536810270071165], [-77.34347395144586, 34.536859036147455], [-77.34345203035478, 34.53690037972052], [-77.34333515582291, 34.537021571296286], [-77.3433216003168, 34.53703326895423], [-77.34331524322579, 34.537042469003595], [-77.34326699330754, 34.53709092161891], [-77.34317003526331, 34.53718576954191], [-77.34315499708347, 34.53720056408282], [-77.34313427717737, 34.53722076708998], [-77.34303351095895, 34.53732782055137], [-77.34299372338327, 34.5373704536685], [-77.34285803584814, 34.537475474963486], [-77.34280973758919, 34.53752928740278], [-77.34273283443065, 34.53760541322607], [-77.34261934218198, 34.53768500109077], [-77.34253414720256, 34.537709597078106], [-77.34243646043036, 34.53778094341709], [-77.34238434765015, 34.537819004416455], [-77.34233442004708, 34.537858783323045], [-77.34216547830859, 34.537942336479], [-77.34214840448446, 34.53795254586251], [-77.34213455782293, 34.53801378556099], [-77.34212381863453, 34.538064776179354], [-77.34212099288679, 34.53807114551741], [-77.34207912893456, 34.53816722005785], [-77.3420670973172, 34.53820130821247], [-77.3420515411442, 34.53825188839062], [-77.34202420816185, 34.53832988753156], [-77.34201092410574, 34.53838241563078], [-77.3419867719261, 34.53845768239189], [-77.34195605771522, 34.538565472547894], [-77.34196038574777, 34.538583887577516], [-77.34195566573237, 34.53860391359933], [-77.34192401504869, 34.538631087196045], [-77.34186360645262, 34.538683298592204], [-77.34181003368431, 34.538727925991395], [-77.34177332427612, 34.53876354863406], [-77.34159315196916, 34.53888153462011], [-77.34152310502716, 34.538992146060934], [-77.34126565235675, 34.53901321239091], [-77.34112267665132, 34.539332213657154], [-77.3409270830474, 34.539102634585305], [-77.34090597475961, 34.538980384791564], [-77.34084877583302, 34.53881027710328], [-77.34082436372785, 34.538747306335424], [-77.34081408395073, 34.538705448526734], [-77.34084880828098, 34.53849897114092], [-77.34088955501207, 34.538333330501246], [-77.34090089857068, 34.538246660124855], [-77.34093646617839, 34.53813017762584], [-77.34099824842683, 34.53798783802825], [-77.34103268159963, 34.53790620768267], [-77.34099948621268, 34.53784115843261], [-77.34102092361388, 34.53773975787825], [-77.34104203613505, 34.53766236268643], [-77.34101748284061, 34.53758620266932], [-77.34100662601095, 34.537496996132056], [-77.34102493811537, 34.537405640342044], [-77.34104149837839, 34.53732669300947], [-77.34100729624637, 34.53725208111752], [-77.34117469544611, 34.53708138071299], [-77.34121951362025, 34.537003564085204], [-77.34126658664358, 34.536969963323564], [-77.34156423121493, 34.53668985550912], [-77.3415719305749, 34.53668121979593], [-77.34157424660155, 34.53667945467494], [-77.34157666085707, 34.53667434050712], [-77.34173794179192, 34.53651074476386], [-77.34175349283956, 34.536410282015055], [-77.34177940847724, 34.53628253297637], [-77.34197906331535, 34.53624821300929], [-77.34221678966749, 34.536098813454544], [-77.34226249931994, 34.536020910029414], [-77.34249664176728, 34.53581373366457], [-77.34267857028316, 34.53572666134323], [-77.34277699603682, 34.53569302160185], [-77.3430968946773, 34.53548255831176], [-77.34313961660868, 34.53545430690946], [-77.34317637347937, 34.53539744522156], [-77.34339082060097, 34.53519545150178], [-77.34346751131349, 34.53511713419961], [-77.34357621409373, 34.535081679201795], [-77.34370110181007, 34.534905990717995], [-77.34373698363481, 34.53480455137032], [-77.34375051058299, 34.53477647243157], [-77.34375767721068, 34.534761596089474], [-77.34378108901718, 34.53470908321462], [-77.34381553918297, 34.53464470664772], [-77.34382734572145, 34.534547115584395], [-77.3438868230584, 34.53444982963312], [-77.34390305635932, 34.53438729542174], [-77.34388149489155, 34.53432508042924], [-77.34398416592327, 34.53425321589211], [-77.34386071290106, 34.534228240673386], [-77.34369974041286, 34.53417172866614], [-77.34366753000214, 34.53413306834495], [-77.34368321420976, 34.53373176697479], [-77.34368645987826, 34.533684000685454], [-77.34380623201433, 34.53354542804931], [-77.34389631532098, 34.53333871542545], [-77.34400979041192, 34.53330400938942], [-77.34414763199668, 34.53328710285463], [-77.34423810419813, 34.533256704867085], [-77.34440463934942, 34.53320401621495], [-77.34449316405045, 34.53313247391801], [-77.34449819037926, 34.53307756925999], [-77.34452707426915, 34.53299998911433], [-77.3445595532814, 34.53294633025989], [-77.34457971482958, 34.5329262129199], [-77.34460808040606, 34.532893225403434], [-77.34461818367498, 34.53287668929699], [-77.34460910583925, 34.53284878005431], [-77.34459756997136, 34.53282597330084], [-77.3445876092473, 34.53281988361904], [-77.34452794952796, 34.53275798022756], [-77.34441521542439, 34.53274566373629], [-77.34439506487367, 34.53273785800555], [-77.34437046129294, 34.53272871819599], [-77.34429211186772, 34.53269508695888], [-77.34422022900475, 34.532690061754906], [-77.34410224502216, 34.53264490026546], [-77.34418874248536, 34.532531958142556], [-77.34421096541834, 34.53249831024435], [-77.34422478959343, 34.53249243279127], [-77.34426222995953, 34.53247635188626], [-77.34442324704045, 34.53239758557176], [-77.34446324992602, 34.53237272948415], [-77.34449515401167, 34.53234354745696], [-77.34446050740634, 34.5323263194441], [-77.34447375207267, 34.53228542199618], [-77.3444384909545, 34.53223647960505], [-77.3444365572082, 34.532229568913465], [-77.34442732213738, 34.53222097729952], [-77.3443682494988, 34.53215478300674], [-77.34433736130839, 34.53212143192276], [-77.34423552143075, 34.53202737943044], [-77.3442258251011, 34.53202120683305], [-77.34422142158392, 34.53201570411599], [-77.34415570414839, 34.53197461937691], [-77.34414106152833, 34.53196467285844], [-77.34408770587504, 34.53191253382923], [-77.34407929296891, 34.53189073902635], [-77.34406087198127, 34.53185518992654], [-77.34404404380236, 34.53181982130315], [-77.34403344132387, 34.53180476127854], [-77.34402983618838, 34.53179845057891], [-77.34401401450832, 34.53178144571569], [-77.34397031540266, 34.53173185464873], [-77.34393797962335, 34.53168925735992], [-77.34385293740755, 34.5315962209173], [-77.34384164117218, 34.531587874522494], [-77.34383869031232, 34.53158113360046], [-77.34382471928289, 34.53156509633404], [-77.34378546921675, 34.53150970611545], [-77.34374766621946, 34.531471820508884], [-77.34372898475448, 34.531431774162435], [-77.34366237671563, 34.531349025184866], [-77.34360979535356, 34.531280617463565], [-77.34357882035107, 34.53125129464978], [-77.34351214891555, 34.53116453499563], [-77.34343368968098, 34.531027356566], [-77.34339781804819, 34.53095832721715], [-77.34328143917932, 34.53084681968862], [-77.34326046246643, 34.530820917085784], [-77.34324732636708, 34.53080935098386], [-77.34317251871212, 34.530646118030205], [-77.34299051622071, 34.53041379685651], [-77.34296638807949, 34.53036013295188], [-77.34293882510708, 34.53034026183579], [-77.34290190499301, 34.53028404723322], [-77.34266068673438, 34.53006803617355], [-77.3425550830955, 34.5299296708975], [-77.34255450446689, 34.52990703941786], [-77.34251811588652, 34.52990571204437], [-77.34232251667035, 34.52984123561528], [-77.34222486451023, 34.52973236080557], [-77.34219801566339, 34.529694100467445], [-77.342131159653, 34.52966461560025], [-77.34203876247224, 34.52957326104726], [-77.34190168525889, 34.52953403726703], [-77.34174507426968, 34.529385926265284], [-77.34170592536344, 34.529342426091446], [-77.34144684185819, 34.52916546833909], [-77.34137310528676, 34.52912044431237], [-77.34136763088921, 34.529115721072436], [-77.34135904643617, 34.52910485625025], [-77.34107833533899, 34.52885194051592], [-77.34092505325341, 34.5286952640674], [-77.34077859943798, 34.528596060551855], [-77.3406929454963, 34.528483836967204], [-77.34066221594307, 34.528442784931656], [-77.34068926303047, 34.52829982911242], [-77.34069033274754, 34.52823939444728], [-77.34065823548507, 34.52820445860961], [-77.34061309214425, 34.528128096966164], [-77.34059692263341, 34.5281135019967], [-77.34050461491088, 34.528079358823106], [-77.34033676268137, 34.52804543960607], [-77.34029512936141, 34.52799652971755], [-77.34020878488649, 34.52792408400379], [-77.34009377795064, 34.52783557589215], [-77.34000422891147, 34.52773396614748], [-77.3398715232475, 34.52740488488002], [-77.3398774263197, 34.527377062392496], [-77.33989632323214, 34.52733294027316], [-77.33983350297137, 34.52717896365078], [-77.33972556933632, 34.52690927072578], [-77.33951465927241, 34.52665638219599], [-77.339478036147, 34.52645524082959], [-77.3393610034922, 34.526162704749964], [-77.33963576804283, 34.525599401446016], [-77.33957832150438, 34.52546154329564], [-77.33930254753844, 34.52536886723365], [-77.33932807736525, 34.525153061587936], [-77.33931763871612, 34.52500940724377], [-77.3394360734457, 34.52478516265375], [-77.3392657009819, 34.52462588351181], [-77.3391817135442, 34.5245393241123], [-77.3392166567052, 34.52446851804862], [-77.33941230948679, 34.52420046291972], [-77.33955474928602, 34.52421269324014], [-77.33955417725211, 34.5242695402894], [-77.3395730514323, 34.52448302923162], [-77.33952429868026, 34.52471840543567], [-77.33952802541143, 34.524753612373644], [-77.33959884288282, 34.524968955364976], [-77.3395837278247, 34.52515610817727], [-77.33987633197528, 34.525327421984066], [-77.33990964405825, 34.52539216962168], [-77.33992559552455, 34.52541158686922], [-77.33993237314097, 34.52544729590927], [-77.34004826690672, 34.52625262314017], [-77.34009693473874, 34.52636621147787], [-77.34033497681413, 34.526518354340254], [-77.34048580161902, 34.52671036280354], [-77.34051303357558, 34.52679598967883], [-77.34057405840761, 34.52682012432016], [-77.34062534445155, 34.52688428830926], [-77.34068289343747, 34.52701637220456], [-77.34072733206781, 34.52707636100244], [-77.34075682814105, 34.527164504302306], [-77.34081477465894, 34.52717953613694], [-77.3408652570403, 34.5272349557791], [-77.34090771964779, 34.527291667751435], [-77.34100508873509, 34.52743660931658], [-77.34101591918078, 34.52745113517845], [-77.34102190292444, 34.527457238945075], [-77.34104795787563, 34.52748086689918], [-77.34120601544527, 34.52767557039523], [-77.34130823274494, 34.52771262813089], [-77.34138966130271, 34.527780248834674], [-77.34148524155262, 34.52788021827142], [-77.3415908471349, 34.52798146094654], [-77.34160296045077, 34.52799948063493], [-77.34165757462489, 34.52810024403329], [-77.34171232175545, 34.528130884299934], [-77.34177306898572, 34.52817443533826], [-77.34187429704139, 34.52824966202212], [-77.34190675683693, 34.528309213459714], [-77.34202771797325, 34.52837491277237], [-77.34207347555034, 34.52840763724062], [-77.34215935779447, 34.52844407082135], [-77.34222821244771, 34.52846454412932], [-77.34225691435105, 34.528468886827575], [-77.34229156589439, 34.528476941206655], [-77.34229605968763, 34.52849802329189], [-77.34231366767239, 34.528520552590855], [-77.34235354253661, 34.52853389319167], [-77.34243330704696, 34.52855069446863], [-77.342548533014, 34.528588849898654], [-77.34271233054282, 34.52858090395148], [-77.34290339913481, 34.52865546161741], [-77.34292235248074, 34.528663325650435], [-77.34293916814714, 34.52867046612582], [-77.3430439530032, 34.528757648669384], [-77.34307544595096, 34.52878882449361], [-77.34312408416449, 34.52886424457482], [-77.34312661267128, 34.5288681653686], [-77.34312817457582, 34.528869596921155], [-77.34313075543787, 34.528872830330364], [-77.34319209439927, 34.52894190101469], [-77.34321816395749, 34.52897740263837], [-77.34324713913992, 34.529020921012275], [-77.34327829317475, 34.52906351812377], [-77.34329542735776, 34.52908869566146], [-77.34330396446026, 34.52909859364055], [-77.34332130223831, 34.52912029957875], [-77.34338660675814, 34.52919798637705], [-77.34342480480612, 34.529248498565025], [-77.34348260260197, 34.52930658408654], [-77.34349302290462, 34.529317550606144], [-77.34351254229267, 34.52933778983016], [-77.34356086165069, 34.52938688959194], [-77.34366031281792, 34.52949789513009], [-77.34368132115273, 34.52952281144838], [-77.3436903395561, 34.52953025905582], [-77.34370409244109, 34.52954189027742], [-77.34381232706617, 34.52962637159608], [-77.34384672621994, 34.52965326689446], [-77.34397598683039, 34.52972523317448], [-77.3440393898749, 34.52974882424867], [-77.34409075099502, 34.529796038030646], [-77.34418400621233, 34.52988073869594], [-77.34422360915309, 34.52993442335428], [-77.34421897281183, 34.53001826161156], [-77.34421890999835, 34.53005750937615], [-77.34423833724252, 34.53008097246392], [-77.34425713711323, 34.53017441879585], [-77.34426279356063, 34.53018313939111], [-77.34427723671072, 34.530219703609745], [-77.34430268277376, 34.53027362825525], [-77.34430281485638, 34.53029025614316], [-77.34430696800545, 34.53030949432103], [-77.34427389649763, 34.53036444646535], [-77.34422973952269, 34.53039609530065], [-77.34423938409799, 34.530421792746786], [-77.34424069495033, 34.53044120707871], [-77.34426994118121, 34.530535844021145], [-77.3442708111881, 34.53053909123621], [-77.34427140336709, 34.53054057545134], [-77.34419989661448, 34.530672293811804], [-77.34432586687876, 34.53073877650164], [-77.344414883732, 34.5308861797515], [-77.34443348105296, 34.53089869205685], [-77.3444572054062, 34.53092589007129], [-77.3445740014266, 34.531033707252384], [-77.34465813345058, 34.53109599822001], [-77.34471961761486, 34.53125556082365], [-77.3447622642013, 34.53132583500826], [-77.34476329669721, 34.5313731623671], [-77.34475078732314, 34.53151912850063], [-77.34476046022452, 34.531570914255], [-77.34477045243145, 34.53160909464092], [-77.34482083995559, 34.53180162432143], [-77.34482372054431, 34.531806631553835], [-77.34482520017181, 34.53180901460809], [-77.34482925066314, 34.53181385933787], [-77.34491115125431, 34.53191646099609], [-77.34494747146123, 34.531957840086605], [-77.34505714969264, 34.532017862959215], [-77.34500391345969, 34.53215647802288], [-77.34521291060271, 34.532198623715175], [-77.34525821305223, 34.53223375147951], [-77.34526903361854, 34.53226819852221], [-77.34532151253161, 34.53239884918108], [-77.34528468307722, 34.532474762486835], [-77.34524568082826, 34.53250522341374], [-77.34524911392106, 34.532541085592314], [-77.34526704045368, 34.53256074198686], [-77.34526450495136, 34.532576485136886], [-77.34526887507519, 34.53259944707961], [-77.34527907279343, 34.532611974247544], [-77.34527910509853, 34.53261327630026], [-77.34528069418911, 34.532615415076975], [-77.34528258781532, 34.53262439871834], [-77.34528334020021, 34.532627968140396], [-77.3452862583282, 34.53263364821915], [-77.3452869490791, 34.532636182845906], [-77.34528285225291, 34.53264333959054], [-77.34528533673014, 34.53264872414123], [-77.34528337633168, 34.53265856541622], [-77.34527661743691, 34.532674169226134], [-77.34529993406085, 34.53268036060189], [-77.34531562615412, 34.53268452739426], [-77.34533564258302, 34.53268984244695], [-77.34539037083547, 34.53270437466137], [-77.34539466775587, 34.53270551564081], [-77.34539744289827, 34.53270749467377], [-77.34550307853557, 34.53274415608119], [-77.34559043573599, 34.532849577514384], [-77.34567166565495, 34.53285793589108], [-77.34569549648359, 34.53290528863116], [-77.34568143686863, 34.533091890835905], [-77.34569600891828, 34.533150034823606], [-77.34569817238204, 34.53322227680739], [-77.3456699619642, 34.53339860278692], [-77.34564417758509, 34.53360278264964], [-77.3456450436788, 34.533647008319434], [-77.34563837433359, 34.53368995245122], [-77.34556921872488, 34.533769657720086], [-77.34551996978935, 34.53388070732927], [-77.34547791285644, 34.53391587723242], [-77.34542495114967, 34.53395865003248], [-77.3454432702365, 34.53399615539287], [-77.34542616587277, 34.5340457331605], [-77.34546358439276, 34.53409481438464], [-77.34546715898699, 34.53409875352589], [-77.34546676207293, 34.53410109667331], [-77.34547008264126, 34.5341048154948], [-77.34548161726188, 34.53411798179178], [-77.34548750241407, 34.53412152843542], [-77.3454940158312, 34.534127777558204], [-77.34550042047672, 34.534133922322255], [-77.34550137902447, 34.53413557453584], [-77.34550109065219, 34.53414206078856], [-77.34551140454246, 34.534148932341196], [-77.3455162306447, 34.534152127638876], [-77.34552002214056, 34.53415463793584], [-77.34553376586683, 34.5341690276355], [-77.34555956488458, 34.53418830040396], [-77.34557432836303, 34.53419867190705], [-77.34558538307323, 34.53420643794989], [-77.34556774284447, 34.53426399227038], [-77.3455728646983, 34.53426944421954], [-77.34555701209902, 34.53429900319845], [-77.34549764057903, 34.53436662244525], [-77.34543505167962, 34.534411684197096], [-77.34530750019783, 34.53452245815756], [-77.34526170120222, 34.53455903767317], [-77.3451557022751, 34.534678971589734], [-77.3451473563461, 34.534692895757345], [-77.34514336695985, 34.534698474583536], [-77.34513861619037, 34.53470937682313], [-77.3450779019218, 34.534830304058715], [-77.3450557093469, 34.5348966764411], [-77.3449922780627, 34.53496503397501], [-77.344921778985, 34.53507987459373], [-77.34490889864222, 34.53509944111227], [-77.34489071470769, 34.53513830379785], [-77.3448410947577, 34.535231606851326], [-77.34482061500272, 34.53527902292132], [-77.3447464580769, 34.53540272171447], [-77.34467676389498, 34.5355000711347], [-77.34461818180927, 34.53567726870291], [-77.34434020936254, 34.535996353121746], [-77.34429662902593, 34.53601753012209], [-77.34423385364802, 34.53605343663539], [-77.34426126544678, 34.53609727416281], [-77.34403002229871, 34.536384538677474], [-77.3439364615866, 34.53648137279817], [-77.34388356212277, 34.53656163884244], [-77.34383528249779, 34.53660042065623], [-77.34368592093055, 34.5367138246775]], [[-77.27127140910156, 34.573146768296084], [-77.27131250780826, 34.573064719662526], [-77.27134789510795, 34.57303494719877], [-77.27136473443518, 34.57302038561753], [-77.27141035023033, 34.57298093986063], [-77.2714152950017, 34.57297657493634], [-77.27145805507456, 34.572939082998495], [-77.2714841312127, 34.57292782273164], [-77.27156199601524, 34.572894811704145], [-77.2716061994023, 34.57290653644184], [-77.27165489015479, 34.57291945143141], [-77.27170840650176, 34.57291638969055], [-77.27172629034804, 34.57294685728792], [-77.27169429798039, 34.572984884344976], [-77.27163905239917, 34.573057833435335], [-77.27153392383904, 34.57316547642279], [-77.27153171886505, 34.57316722997814], [-77.27153118784402, 34.5731684165141], [-77.27152713804797, 34.57317208159786], [-77.27137957118691, 34.57327310377724], [-77.27131208401396, 34.57330215254566], [-77.27122736034504, 34.573378972537554], [-77.27119871413896, 34.5734048601319], [-77.27112102345515, 34.57346082849481], [-77.2710863105983, 34.57348571843646], [-77.27104147876057, 34.57353369068259], [-77.2709305114077, 34.57361999261159], [-77.27080245178752, 34.57369907149445], [-77.27084479389518, 34.57379109352097], [-77.2707970626445, 34.57382990503911], [-77.27073925236365, 34.57389675431719], [-77.27067892791123, 34.57392502834086], [-77.27056416621727, 34.57395137633466], [-77.27051002868737, 34.57402958453782], [-77.27044400480095, 34.574124963816764], [-77.2704222351922, 34.57414051644154], [-77.27041601899681, 34.57414821791295], [-77.270394772045, 34.574161271077294], [-77.27016993986946, 34.57425796606443], [-77.27010252153335, 34.57435104984959], [-77.27008066491629, 34.57436572300275], [-77.27000115418781, 34.5743827336158], [-77.27006882441393, 34.574348400773765], [-77.27008731032953, 34.5742585991728], [-77.27002554781119, 34.574227165039304], [-77.2699786052117, 34.57420746898526], [-77.26995752968058, 34.57419254711168], [-77.26995679853917, 34.57416284356472], [-77.26998852558228, 34.57411189610386], [-77.26999257033145, 34.57410673900214], [-77.26999668393097, 34.574103883609325], [-77.27000573901014, 34.57409721840135], [-77.2701048380096, 34.574035771580824], [-77.27019642337372, 34.5740049312499], [-77.27023427991868, 34.57398659160496], [-77.27027645769077, 34.573893389525566], [-77.27029694601092, 34.57387802573111], [-77.2703459043219, 34.57384123732388], [-77.2703474045053, 34.573840751750765], [-77.27034769237608, 34.57384007277504], [-77.27034851718956, 34.57383924101574], [-77.27039714962123, 34.57380284334125], [-77.27042923686335, 34.5737875664311], [-77.27046325443189, 34.5737503262094], [-77.27049472541503, 34.573725324018234], [-77.27058800418965, 34.573682213886954], [-77.27061256159624, 34.57366582296121], [-77.2706874670733, 34.57357219930235], [-77.27069618355824, 34.57356525150089], [-77.27079842216119, 34.57350252197997], [-77.27090006602285, 34.57347107814301], [-77.27091381800038, 34.57339780674819], [-77.27098689206785, 34.57334154190157], [-77.27104633562067, 34.573289511621994], [-77.27109829563936, 34.573276320561675], [-77.27110482102574, 34.57325150675198], [-77.27111511821658, 34.573230530984084], [-77.27117693040852, 34.57318195710064]], [[-77.37742776711681, 34.69385746818891], [-77.37805466768506, 34.693984414838226], [-77.37729844460016, 34.694303360490515], [-77.37726686963073, 34.69409274649512]], [[-77.33901628640366, 34.52317212463239], [-77.33901515648401, 34.52309437494376], [-77.33871755332741, 34.52291550108843], [-77.3387111207107, 34.52286542367761], [-77.33866353342943, 34.522655320151365], [-77.33876532407147, 34.52245397544716], [-77.3388970238519, 34.52245913711037], [-77.3390855767972, 34.52215435733534], [-77.33914293286863, 34.52209672209023], [-77.33912630417322, 34.52207397301861], [-77.33920610099892, 34.52206315828478], [-77.33920090617198, 34.52211029904882], [-77.33936611688966, 34.52255425194078], [-77.33938516494871, 34.522893001314394], [-77.33927461402077, 34.5231398030845], [-77.33913838522045, 34.523293638382825]], [[-77.35454233454377, 34.5532897533045], [-77.35437678061211, 34.55334249042833], [-77.35440613550762, 34.55344074006949], [-77.35414104062653, 34.5536671644824], [-77.35406188092043, 34.55368602583175], [-77.35401449912621, 34.55374193508037], [-77.3539299822112, 34.55388261944983], [-77.35379097660136, 34.554050968107646], [-77.3537383367095, 34.554105846707465], [-77.35360905515282, 34.55421082938894], [-77.35345444829414, 34.55424242806956], [-77.35334426732385, 34.554168242674955], [-77.35322806898913, 34.55409995288819], [-77.35309991671298, 34.5540279449732], [-77.35271594050842, 34.55402464753114], [-77.35255844777058, 34.554191965415846], [-77.352394894796, 34.55436519303433], [-77.35182901606406, 34.55450680455521], [-77.35176521632458, 34.55453823331278], [-77.35146645445738, 34.554353493272615], [-77.35141591153163, 34.55433663571172], [-77.35137833898185, 34.5542875036267], [-77.35120457201762, 34.55414636101588], [-77.35111689168446, 34.55408014962346], [-77.35103095212028, 34.55392652627667], [-77.35101984413261, 34.55391221418165], [-77.3509947320687, 34.55389459427684], [-77.35078179034394, 34.55385096358473], [-77.35062307483992, 34.553740403119335], [-77.35046227846298, 34.5536099830793], [-77.35022284767543, 34.553312353646966], [-77.35022049799345, 34.5533101923023], [-77.35021827655578, 34.553309015880544], [-77.3502136663498, 34.55330383225481], [-77.34990913271301, 34.553063049028474], [-77.34999265506657, 34.55285184229126], [-77.34994497869566, 34.55279456870164], [-77.34992531415668, 34.552739122714435], [-77.34984551168722, 34.55264723060759], [-77.34983999779848, 34.55263263722955], [-77.34983374943388, 34.55262988897955], [-77.34965068389528, 34.5525825543832], [-77.34960691336963, 34.55256762806646], [-77.34955283588637, 34.55256909197072], [-77.34949343284634, 34.55258078433992], [-77.34949514121661, 34.552617410939085], [-77.34945223266078, 34.552675395607714], [-77.34944553162543, 34.5526816667118], [-77.3494449615944, 34.552685837139926], [-77.34943445172041, 34.55269811079307], [-77.34941295740187, 34.552727911509514], [-77.34940229048439, 34.55275318280384], [-77.34941061536652, 34.55278886778998], [-77.34930570443714, 34.55282828685989], [-77.34941223423374, 34.55291384746212], [-77.3494267417964, 34.55293327982825], [-77.34924667377909, 34.553077144117715], [-77.34923884306669, 34.553077856549564], [-77.34923302455397, 34.55308356634075], [-77.34920258914777, 34.55311489271255], [-77.34909382074537, 34.55322600800351], [-77.34906705214892, 34.553242644380944], [-77.34904559604563, 34.553284060812715], [-77.34894007339543, 34.55331350612533], [-77.3489477289763, 34.55324703027941], [-77.34871680836551, 34.553241065462764], [-77.34867681915229, 34.553163603017886], [-77.34866466272022, 34.55315983895121], [-77.34865621447993, 34.55314272720104], [-77.3486379420076, 34.553107992112494], [-77.34862306097753, 34.55307063516591], [-77.34862563800704, 34.553048557447504], [-77.34864776619375, 34.55303861140869], [-77.34865871236552, 34.553034192074186], [-77.34868885312186, 34.55302085859095], [-77.34875749227352, 34.553007180832665], [-77.34878043748853, 34.552978979803136], [-77.3488526878378, 34.55295724460164], [-77.34885673805644, 34.5529599218594], [-77.34887029877058, 34.55295214656318], [-77.348934667257, 34.552929838956935], [-77.34895574854883, 34.55292288290675], [-77.34897967992244, 34.55292150456803], [-77.34899038027422, 34.55293486711088], [-77.34900428421501, 34.55294649842476], [-77.34901371637984, 34.552931509084516], [-77.3490049245846, 34.55291866890539], [-77.34898166418851, 34.55292000331345], [-77.34898701613294, 34.55290474861747], [-77.34899842766441, 34.55289876994287], [-77.34902243518991, 34.552869049276374], [-77.3490387576474, 34.5528562992006], [-77.34905569222195, 34.55284528422193], [-77.34914322488395, 34.552797769562574], [-77.34915494069304, 34.552797892091455], [-77.34916332058559, 34.55279272180053], [-77.34915901973056, 34.55278818969353], [-77.34915966889795, 34.55278532831309], [-77.34918962014385, 34.552743423608526], [-77.34919809998622, 34.5527213608528], [-77.34920609992531, 34.55270747868118], [-77.34921698367572, 34.552694643178256], [-77.34925590086716, 34.552676097367346], [-77.34928328799182, 34.5526648120774], [-77.3493007361874, 34.552645386223524], [-77.34932070178422, 34.552620922298765], [-77.34934667186477, 34.552577570818606], [-77.3493567325669, 34.55255987429864], [-77.34937654603742, 34.552523905162815], [-77.34939148066596, 34.5525099175359], [-77.34938311086054, 34.55249559613068], [-77.34938541671971, 34.55244958491564], [-77.34938897063785, 34.55240575922298], [-77.34938685797185, 34.55238817234111], [-77.34938376401163, 34.552374422739646], [-77.34937722877628, 34.552337949424995], [-77.34937899055731, 34.552328099276416], [-77.34938765443107, 34.55228092675455], [-77.34938804492775, 34.55226559112332], [-77.34938724741765, 34.55225110798182], [-77.34938445258308, 34.552204902831846], [-77.34940188260225, 34.552163658488304], [-77.34939958787771, 34.5521415196477], [-77.34939860793862, 34.552121833469], [-77.34938935919781, 34.55208178637698], [-77.34939096099774, 34.552067279485314], [-77.34937325236945, 34.5520255344301], [-77.34937173657454, 34.5520231171185], [-77.34937158362533, 34.55202160065622], [-77.34936924324867, 34.552016083615015], [-77.34934678463415, 34.551965502554225], [-77.34933155642327, 34.551931205733126], [-77.34930461223284, 34.55186794052597], [-77.34930261660975, 34.55184944801846], [-77.34929726861967, 34.55183646850504], [-77.34927595326337, 34.55180454253891], [-77.34921792242729, 34.55173922526424], [-77.34918768667958, 34.551678019200125], [-77.34908539845043, 34.55155426880036], [-77.34906547134217, 34.551529128582], [-77.34905425559754, 34.55151795632893], [-77.34900111535862, 34.551471866416364], [-77.34893988640167, 34.55141200373158], [-77.34892951287202, 34.551390636039095], [-77.34889733029759, 34.55135692239205], [-77.34889672830036, 34.55135510122312], [-77.34889368692586, 34.55135431005568], [-77.34884556557199, 34.55133347110856], [-77.34877614867528, 34.5513131550922], [-77.3487277566858, 34.55130192551553], [-77.34869863312994, 34.551299613873184], [-77.34862438851006, 34.55125945420667], [-77.34860169391862, 34.551246735718905], [-77.34857100586179, 34.551220264379154], [-77.34854212519099, 34.5512010152418], [-77.34852763745994, 34.55119590238088], [-77.34853433244469, 34.55118261820284], [-77.34853103907005, 34.55116481032867], [-77.34853413405651, 34.551146722076595], [-77.34853097194397, 34.551134217415466], [-77.34850643005066, 34.55112107609997], [-77.34849532148024, 34.55111574802967], [-77.34847684453158, 34.55111140358311], [-77.34846280487115, 34.55111018010394], [-77.34845792462218, 34.55109619970467], [-77.34845403874505, 34.551086642880485], [-77.34845259327557, 34.551084290675355], [-77.34845268062708, 34.551080786999826], [-77.34845273848444, 34.55105366720157], [-77.3484456203504, 34.55103267299913], [-77.34842547261499, 34.55099638551682], [-77.34841162992355, 34.550975282617884], [-77.34839515908469, 34.550950173158654], [-77.3483743744422, 34.55091848730515], [-77.34837634749246, 34.550881044111094], [-77.34836296029714, 34.55085385619999], [-77.34832079346198, 34.5507682197363], [-77.34832077490422, 34.550766630523015], [-77.3483186822261, 34.55074903206132], [-77.34831050092673, 34.550652190154665], [-77.34830519216105, 34.55064646253675], [-77.34828901699457, 34.55062856299802], [-77.34821114136119, 34.550486008332186], [-77.34818668263846, 34.550418694816024], [-77.34793818034736, 34.55022260282941], [-77.34793106605753, 34.55021519856234], [-77.34792688729983, 34.55021125739425], [-77.3479171476566, 34.55019920788928], [-77.34773474938413, 34.54988101845511], [-77.34757012712993, 34.5497729514013], [-77.34756353610568, 34.54976920157961], [-77.34755618224673, 34.549761356728695], [-77.34746146335253, 34.54960507352719], [-77.3473890389308, 34.54955418768002], [-77.34723666514394, 34.54937127244071], [-77.34722266780973, 34.54933330640908], [-77.34720526834309, 34.5493161986791], [-77.34717451435598, 34.54928596017787], [-77.34704633788864, 34.549113857768404], [-77.34697240794328, 34.54900966941712], [-77.34679051541775, 34.54891193426398], [-77.34678616178779, 34.548906473388705], [-77.34668472062278, 34.548744622338404], [-77.34658711858222, 34.54869029229806], [-77.34640635938358, 34.54854487491582], [-77.34637386152578, 34.54849710731508], [-77.34636013754324, 34.54847813098073], [-77.34632091283166, 34.54842882539844], [-77.34620999309996, 34.54813838262008], [-77.34602444906737, 34.54808052618988], [-77.34599109089362, 34.54804158973174], [-77.34596274896342, 34.548006123895796], [-77.34592096597709, 34.547929269311105], [-77.34588681444984, 34.547900189787214], [-77.3458333075784, 34.54785650527752], [-77.34580596243944, 34.547823405919125], [-77.34577703938595, 34.54774189199072], [-77.34564167937204, 34.54765364227734], [-77.34560321704774, 34.54763205082517], [-77.34559515716307, 34.547608916123174], [-77.34555305658253, 34.547558340672694], [-77.3455118065419, 34.54745985942898], [-77.34545005007028, 34.54745086727817], [-77.3454017733751, 34.54739191964753], [-77.34535219126766, 34.547339270055645], [-77.34534789282671, 34.54733429316198], [-77.34530428956285, 34.5472835352697], [-77.34529807393895, 34.54725953881956], [-77.34525883822589, 34.54723002798109], [-77.34522401913398, 34.54719489172195], [-77.3452005856021, 34.54717604565606], [-77.34515162312552, 34.54700831481201], [-77.34487671010646, 34.54677566617131], [-77.34484611262926, 34.54675675711509], [-77.34484445326753, 34.54673764408335], [-77.3447971163605, 34.54669364182228], [-77.34466647360145, 34.54651843046906], [-77.3446497536045, 34.546422619092056], [-77.3444939639188, 34.54634828052467], [-77.34445036325033, 34.54630470269579], [-77.34428777032923, 34.546213788223255], [-77.34425112772257, 34.546179510415314], [-77.34419188956173, 34.54609706923695], [-77.34415300025131, 34.54607440316095], [-77.34410832827933, 34.54604630163377], [-77.3440522271104, 34.5459947522247], [-77.34403057542812, 34.545925678240124], [-77.34401269777005, 34.54587802938402], [-77.34387335121005, 34.5458032815026], [-77.34384499706307, 34.54577974599509], [-77.34378864772982, 34.54574669170765], [-77.34372412496398, 34.54568237433477], [-77.3437200848044, 34.545677890608225], [-77.34371729372823, 34.54567570823579], [-77.34370232212173, 34.54566400176788], [-77.34361278816948, 34.54556833303005], [-77.34360185366891, 34.5455259934335], [-77.34355012642082, 34.545454937961594], [-77.34351106953471, 34.54535333094691], [-77.34334195614915, 34.54523044813589], [-77.34317953246199, 34.54512146735189], [-77.34295314935297, 34.54506623072378], [-77.34294254642559, 34.54505941598779], [-77.34293829201413, 34.545053318045106], [-77.34286580646753, 34.54487612922521], [-77.34256969337986, 34.54467034939179], [-77.34253894934469, 34.544640726034984], [-77.34252513451598, 34.544623115157755], [-77.34249322311965, 34.544578699860004], [-77.3424476580377, 34.54446844909426], [-77.3423783915604, 34.54445401380023], [-77.34233010232231, 34.5444063524042], [-77.34229859391442, 34.54433988036795], [-77.3421858480097, 34.54429148574958], [-77.34195803312902, 34.544215056120976], [-77.34196192418754, 34.54411190148751], [-77.34179736028794, 34.5441137350936], [-77.34165634649351, 34.54417134785703], [-77.34140343257945, 34.5441714956218], [-77.34134800071288, 34.544093677249656], [-77.34130633336294, 34.544063982737725], [-77.34125392256587, 34.544044180414275], [-77.34121098094715, 34.54400509577824], [-77.34118197915946, 34.54397793780703], [-77.3411593832378, 34.54396271138462], [-77.34109163169296, 34.5438964660471], [-77.34112081647237, 34.543845849639816], [-77.34115629431298, 34.54375602829414], [-77.34101966732769, 34.54378948571996], [-77.3407618131034, 34.54373592044709], [-77.34062915589615, 34.54369948321587], [-77.34060559986719, 34.54368996719729], [-77.34059210333831, 34.54367708196112], [-77.34038493965679, 34.54361556362081], [-77.34035925492657, 34.54358816528703], [-77.34030937991372, 34.543552057155196], [-77.34025094906873, 34.54348724491735], [-77.34024631674855, 34.54348200087273], [-77.34024626055893, 34.543479139209225], [-77.34024171297094, 34.54347678913174], [-77.34010416221642, 34.543380038651584], [-77.34016987667565, 34.543295586868965], [-77.33994840353739, 34.54328003298076], [-77.33989906014455, 34.54325912792436], [-77.33985358703828, 34.54328371789287], [-77.33974383175628, 34.54318704822594], [-77.33969339743955, 34.543173378413655], [-77.33966015899425, 34.54315975592813], [-77.33963243394227, 34.54314186630874], [-77.33960238971743, 34.54312155882983], [-77.33959830428245, 34.54311617297965], [-77.33957930009564, 34.54310885940314], [-77.33957829051812, 34.54310375045867], [-77.33957078006138, 34.543094049869104], [-77.33956886449313, 34.543089805089544], [-77.3395673540808, 34.54308772962603], [-77.3395637007379, 34.54308672521182], [-77.33953846804722, 34.543078320739234], [-77.33951498479057, 34.54307126110175], [-77.33951124222837, 34.54306984497572], [-77.33950788804799, 34.54306343472652], [-77.33948588632559, 34.543040535398575], [-77.33947770323877, 34.54303488354475], [-77.33947267364422, 34.543027134662395], [-77.33946725890036, 34.5430129917958], [-77.3394671359942, 34.54301271072128], [-77.3394670439805, 34.543012643257434], [-77.33946705731633, 34.543012508663345], [-77.33946001191593, 34.54298793308046], [-77.33944998555219, 34.54298449452896], [-77.33945254793429, 34.54297439554572], [-77.3394404265735, 34.542942415483694], [-77.33939823604422, 34.542930733166614], [-77.33939568748994, 34.542915927149444], [-77.33932181835183, 34.54291075747153], [-77.33931701322646, 34.542942415386094], [-77.33935390048362, 34.54294753975613], [-77.33937003835085, 34.54297293213943], [-77.33938162598113, 34.54298689916617], [-77.33938346713052, 34.54299406185649], [-77.33939157073499, 34.54300681258961], [-77.33939035500255, 34.54301046263117], [-77.339378095579, 34.543025436683315], [-77.3393755324517, 34.54303005539498], [-77.33936848098892, 34.54304026249504], [-77.33934676615598, 34.54304710231477], [-77.33930375096226, 34.543045812871455], [-77.3392707873457, 34.54302065570306], [-77.33926440731902, 34.543015242756766], [-77.3392616801203, 34.54301157834605], [-77.33925480008071, 34.54300233395954], [-77.33923526540015, 34.54295417306225], [-77.33923216715729, 34.54291896459774], [-77.33922549148247, 34.54289437434121], [-77.33927496728546, 34.54283995115773], [-77.33934235053351, 34.54279655189584], [-77.33935113672652, 34.54270829367399], [-77.33932211498535, 34.54263565909292], [-77.33928906883604, 34.54252221377376], [-77.33929830226283, 34.54251667526364], [-77.33928633492128, 34.542515980842225], [-77.33928260690311, 34.542509680505724], [-77.33922452022688, 34.54240487830499], [-77.33918118904474, 34.542354189184444], [-77.3391682791215, 34.54233921318076], [-77.3391446058798, 34.542293963347035], [-77.33909242735444, 34.54224541018331], [-77.339068136705, 34.542198379083935], [-77.3390550639464, 34.5421844330424], [-77.33903503335675, 34.54215014851967], [-77.33901944278938, 34.54199388079984], [-77.33890235385586, 34.54197660915991], [-77.33889397129136, 34.541962784797256], [-77.33888923418178, 34.54195497243211], [-77.33885521768104, 34.54187678440525], [-77.3388340393192, 34.54184899571569], [-77.33880804544927, 34.54181074986016], [-77.33880129662964, 34.54179690885619], [-77.3387955771488, 34.5417851788602], [-77.33883102145916, 34.541727020854594], [-77.33885337802958, 34.54163684038636], [-77.33871584217624, 34.54155392805968], [-77.33869068039986, 34.54150238779832], [-77.33868615167623, 34.54148350773555], [-77.33867725222646, 34.541381910268505], [-77.33864996355138, 34.541341689973414], [-77.33866774133267, 34.54129460741889], [-77.33862393297879, 34.541284423805294], [-77.3386189602362, 34.54126788530674], [-77.33861989132578, 34.54121013933231], [-77.33861888346927, 34.54120235876664], [-77.33864000593107, 34.54119492221595], [-77.33872373060623, 34.54121300775688], [-77.3387854896421, 34.54120552823064], [-77.33881121932784, 34.54124023334198], [-77.33889057218025, 34.54133461939666], [-77.33890325160812, 34.54134940559358], [-77.33889732219589, 34.541362260014665], [-77.33891224438207, 34.54147052092057], [-77.33902691655875, 34.541505554652446], [-77.33910729067479, 34.541602917952], [-77.33917283606596, 34.54167785834437], [-77.33928865349458, 34.5417902165013], [-77.33949066315375, 34.5420010937817], [-77.33956396606277, 34.54206460921951], [-77.33959806162265, 34.54210633359682], [-77.33962861742575, 34.542190702636915], [-77.3396515573135, 34.542221048284446], [-77.33965360925504, 34.54223812919736], [-77.33965678871928, 34.542342704692935], [-77.33963067017932, 34.54244010240831], [-77.33962757315247, 34.542469315967104], [-77.33965280314993, 34.542480076443205], [-77.33968956571819, 34.54258280829302], [-77.3396563967542, 34.542701026355346], [-77.3396578895802, 34.54271756587933], [-77.33967033965276, 34.542719542514845], [-77.33976650000297, 34.54281656076384], [-77.33978262079864, 34.54286454134925], [-77.3397807133092, 34.54287572096516], [-77.33979150991735, 34.54289099809481], [-77.33980401401267, 34.5429086913161], [-77.33981289515586, 34.54292125806476], [-77.33981997651365, 34.542931278130155], [-77.33984196416756, 34.54294031556303], [-77.33984454407502, 34.54294786445206], [-77.33985186466603, 34.54295729380708], [-77.33985079388879, 34.54296380289619], [-77.33986080449122, 34.542971601871656], [-77.33987437903188, 34.54297612739428], [-77.33988866867126, 34.54298260240361], [-77.33989612361049, 34.543020011554525], [-77.33993592160238, 34.54303701031569], [-77.34005407766467, 34.5431022540374], [-77.34010769521365, 34.54310129033299], [-77.34024872887659, 34.54317332687925], [-77.34053858915314, 34.543130463244054], [-77.34064346299137, 34.5430805255203], [-77.34087551048844, 34.54300309072753], [-77.34103831824252, 34.54298244033284], [-77.34168795157547, 34.54319314313368], [-77.34181763671607, 34.543235992959595], [-77.34183911610599, 34.543239443386135], [-77.34189402086507, 34.54324498954205], [-77.34259860375617, 34.54341834136915], [-77.3428953116072, 34.543405741353624], [-77.34303579378468, 34.54357037708515], [-77.34328932827385, 34.54359032998546], [-77.34337946298312, 34.54360549113645], [-77.34351424614977, 34.543661508866556], [-77.34353317378024, 34.54374364292665], [-77.34357221958899, 34.54375880976959], [-77.34370166276835, 34.54376105992381], [-77.3437678783304, 34.543786400653936], [-77.34393098287251, 34.54382890779095], [-77.34396290646829, 34.54384132465841], [-77.34401572082712, 34.54391904027435], [-77.3440899338181, 34.54394999541313], [-77.34415526279233, 34.54401206003367], [-77.34416233729384, 34.54402035654628], [-77.34421744470264, 34.5440948699982], [-77.34425701202798, 34.544129145440735], [-77.34429541658673, 34.54415655157197], [-77.34434691564994, 34.54421332195921], [-77.34436058108798, 34.54422792294076], [-77.34439768123201, 34.54426369903106], [-77.34448018494413, 34.5443418569571], [-77.34450287030408, 34.544361616932605], [-77.34453889706595, 34.54440038079432], [-77.3445845743086, 34.544449248063515], [-77.34463489165816, 34.54450307949513], [-77.34468543026176, 34.5445571473342], [-77.3447645624669, 34.54464632074724], [-77.34482913807528, 34.544722091723536], [-77.34487201809904, 34.544775122038736], [-77.34488815766323, 34.544794158855595], [-77.34492133091788, 34.544840906411466], [-77.34500288301243, 34.54494870790772], [-77.34503843932394, 34.544995997784966], [-77.3451347924118, 34.545090256052845], [-77.3451757538799, 34.545139187142766], [-77.3452250723997, 34.54521396553557], [-77.3452512869145, 34.545243466983045], [-77.34530335510554, 34.54529937510721], [-77.34537309608749, 34.545392657126676], [-77.34541737991523, 34.54543111670791], [-77.34549479688707, 34.54551004145425], [-77.34551032414622, 34.545530181801475], [-77.34554109409466, 34.54556539298998], [-77.3455838774017, 34.54565198102851], [-77.34561889881866, 34.54568938534419], [-77.34568537591886, 34.54575817412959], [-77.34577970705074, 34.545868624999315], [-77.3458868703219, 34.54596934173249], [-77.34589156833883, 34.54597494038765], [-77.34590768239947, 34.54599220316569], [-77.34597167567793, 34.54608582427688], [-77.34601174720342, 34.54611621177245], [-77.34606825149491, 34.54618007196381], [-77.34616111483395, 34.54624455234871], [-77.3463274727198, 34.54644490301007], [-77.34639132336933, 34.54651508409614], [-77.34639911981037, 34.54654718264141], [-77.3464514731973, 34.546587118313354], [-77.3465762981355, 34.5467332889727], [-77.34661650908814, 34.546865411102026], [-77.34672402660063, 34.54695685250108], [-77.34684187705619, 34.547177604340156], [-77.34685848439668, 34.54720011750018], [-77.3469444900715, 34.54741477133349], [-77.34707890236109, 34.54748097778969], [-77.34720091075025, 34.54762269557886], [-77.34720546053168, 34.54762657814238], [-77.34721255305827, 34.54763455050732], [-77.34733974739578, 34.54776633044137], [-77.3474068065548, 34.54783788889737], [-77.34755256219594, 34.54803468346867], [-77.34756074134016, 34.54806055971012], [-77.34758191113539, 34.54806581839898], [-77.34759474056611, 34.54808704127443], [-77.34775257444534, 34.54827777652974], [-77.34783324386466, 34.548358369155814], [-77.34787579608047, 34.548504866109894], [-77.34789779305801, 34.54855088653434], [-77.34797309654132, 34.548706123820246], [-77.34798975945671, 34.5487226600162], [-77.34800273503187, 34.54873142072352], [-77.34812263961884, 34.54880889231553], [-77.34831001180567, 34.548932025250956], [-77.34833193768347, 34.548946478911304], [-77.34835939114996, 34.548980597276724], [-77.34856972769975, 34.54913947302512], [-77.3486533866718, 34.54918598183652], [-77.34874695295736, 34.549200119563224], [-77.34890918680202, 34.5493354452843], [-77.34901589092425, 34.549394422862534], [-77.34913196975087, 34.54953033011636], [-77.34914642701698, 34.54954612661771], [-77.34934727822602, 34.54962640739539], [-77.34935637235783, 34.54963832492724], [-77.34945557936419, 34.54966514452893], [-77.34952032249446, 34.54971566625042], [-77.34954215621434, 34.54972031850659], [-77.34954798279077, 34.54973316144069], [-77.34956365685605, 34.549758542524785], [-77.34959523550512, 34.54978756668068], [-77.34960525700126, 34.54979325489461], [-77.34961629981065, 34.54981030074502], [-77.34964385835086, 34.54984177472135], [-77.34966460740189, 34.549869028894165], [-77.34966516342045, 34.549870035031056], [-77.34965045974694, 34.549902029962155], [-77.34965732154839, 34.549928314861575], [-77.34961339680198, 34.54993649405084], [-77.3495625836631, 34.54997588118973], [-77.34954546344242, 34.54999807300452], [-77.34954200620109, 34.55002213024765], [-77.34957943243236, 34.55001460343546], [-77.34961195496561, 34.54999917047988], [-77.34965848102667, 34.549994343578135], [-77.3497103462077, 34.54998888576766], [-77.3497375727302, 34.55001190419067], [-77.34977757454291, 34.55002491520056], [-77.3497914738658, 34.550055693519326], [-77.34979671882056, 34.55006459781962], [-77.34979670176803, 34.55007078302664], [-77.34980641347778, 34.55007963283764], [-77.34982873256395, 34.550106887824434], [-77.34984086279475, 34.55011945035184], [-77.3498555542078, 34.550148972776526], [-77.34986652505184, 34.550176962569914], [-77.34986636675879, 34.55019909281521], [-77.34987261147798, 34.55028146506582], [-77.34985827304462, 34.55030056058605], [-77.34986320834098, 34.55032216215339], [-77.34989848895941, 34.55034393842562], [-77.3499312345989, 34.55039137219221], [-77.34994965831008, 34.55040981990569], [-77.35002219553996, 34.55044322954752], [-77.35009095880672, 34.55051091625411], [-77.35009181872422, 34.55051123142127], [-77.35009225772357, 34.55051254223611], [-77.35016392991699, 34.55062380506562], [-77.35021151195109, 34.550662029466864], [-77.35024082909223, 34.550709031844605], [-77.35024930837895, 34.55073392871469], [-77.35026437789372, 34.550742710278456], [-77.35027783460447, 34.55076042610375], [-77.35027802880421, 34.55076255179808], [-77.35027111296279, 34.550785864309105], [-77.35026269619654, 34.55079320733728], [-77.35027311450814, 34.55079644005522], [-77.35028061170908, 34.55080042400643], [-77.35031402983226, 34.55081642245624], [-77.35031512715652, 34.55082499264313], [-77.35032723493131, 34.55084512471515], [-77.3503766131712, 34.550894101086], [-77.35038045000283, 34.55089624844162], [-77.3503855432844, 34.55089793871398], [-77.35043661240707, 34.55091409510373], [-77.35047397614773, 34.550928575036764], [-77.35048961349925, 34.550934333653984], [-77.35050044627607, 34.55094260795173], [-77.35050270670041, 34.55096065766605], [-77.35050797546349, 34.55100272970491], [-77.3505224358729, 34.55103017996751], [-77.35053865875935, 34.551059519230414], [-77.35055476217619, 34.551126401599184], [-77.35057624877143, 34.551244826592274], [-77.35058533771462, 34.55129762268078], [-77.35059254037284, 34.55133917887541], [-77.35059980704118, 34.551380481505376], [-77.35061951791154, 34.551415114292716], [-77.35065739392694, 34.551489378369524], [-77.35067670757397, 34.55151685754067], [-77.35067835771574, 34.55152905703556], [-77.35068577294517, 34.55154650453272], [-77.3507279407463, 34.55164433191714], [-77.35075785792331, 34.551696818961915], [-77.35080351584675, 34.551755866048616], [-77.35084791071021, 34.551870045030526], [-77.3508549410739, 34.551877205063064], [-77.35095781385951, 34.55197848149848], [-77.35097078235827, 34.55201843983576], [-77.35103577547787, 34.552109036317894], [-77.3510744016591, 34.552181401515085], [-77.35109978260523, 34.55220287119185], [-77.35123140018591, 34.55230397594989], [-77.35123417986142, 34.55230593984849], [-77.35132427926618, 34.55235396743266], [-77.35132459520072, 34.55235414406294], [-77.351349748728, 34.552411718029006], [-77.35137792960992, 34.552434471422345], [-77.35142021181176, 34.55246548475639], [-77.35153249483955, 34.55255888702409], [-77.351613074148, 34.55261572973983], [-77.35161757830603, 34.55261799353448], [-77.35171137285315, 34.552664907193765], [-77.35180719539383, 34.55271121444804], [-77.3518123314304, 34.55271237511655], [-77.35194796022975, 34.552727263164215], [-77.3520030462963, 34.55273143203288], [-77.35217046544469, 34.55278324188686], [-77.35218479514863, 34.55278943154559], [-77.35219792018574, 34.55279418276058], [-77.35223615174554, 34.55279767693132], [-77.35243732855864, 34.552839721648354], [-77.35257223978553, 34.55284782659869], [-77.35258909407789, 34.55285762685839], [-77.35260370763092, 34.55285233382688], [-77.35273435082844, 34.552856349670726], [-77.35278540070047, 34.55285801922318], [-77.35284011553527, 34.55284317572266], [-77.35294060924917, 34.5528209695576], [-77.3529822970682, 34.552832727935716], [-77.35315614078735, 34.552778572495], [-77.35322089827241, 34.5527800773716], [-77.35322910620698, 34.552753282849764], [-77.35334841638604, 34.55271793549403], [-77.35337820489146, 34.552689998356826], [-77.35346880105294, 34.55265757681222], [-77.35347639128122, 34.55265601582559], [-77.35347813787284, 34.55265561800281], [-77.35357479656336, 34.55267795185011], [-77.35365653194765, 34.552619478455405], [-77.35370578488285, 34.55260405224047], [-77.35377315287134, 34.55258902281723], [-77.35379965148087, 34.5525649275821], [-77.35383753736485, 34.55254329609321], [-77.3538727997182, 34.55252413074866], [-77.35392137948256, 34.55249996819823], [-77.35392654831799, 34.552497352408444], [-77.35397211118807, 34.55247384443625], [-77.35399564406288, 34.55247400878576], [-77.35402359807364, 34.55245530886857], [-77.35402998785395, 34.552428625200115], [-77.35407126655505, 34.552430354589816], [-77.35413739246437, 34.55239815725808], [-77.3541702761043, 34.55239321406931], [-77.35428907686241, 34.55240406755345], [-77.35447527088773, 34.55245149907736], [-77.35451542401296, 34.55247416752037], [-77.35456037055994, 34.55250366455805], [-77.35461013010676, 34.55246252556208], [-77.35461647577833, 34.552431173263216], [-77.35463289931981, 34.552385277756144], [-77.35456337089718, 34.55237289711606], [-77.35445943427001, 34.55227516402731], [-77.35449527221351, 34.55220379768715], [-77.35451248986121, 34.5521666416531], [-77.3545682529507, 34.55216011670923], [-77.3546450885548, 34.55213468519055], [-77.3547652998517, 34.55212815886708], [-77.3548130313668, 34.55206449828051], [-77.35487035408278, 34.55202739442946], [-77.35496563124923, 34.55195301208895], [-77.35501994452339, 34.55191679876679], [-77.35506826146096, 34.55187649432318], [-77.35518233838766, 34.551747438084746], [-77.35519780837379, 34.551735434667286], [-77.35532143458026, 34.55162290893337], [-77.35535966584882, 34.551589723516315], [-77.35536164582491, 34.55158630695578], [-77.35536669127698, 34.55158528788152], [-77.35537203833893, 34.551584617844085], [-77.35556451438903, 34.55151940584369], [-77.35569841569337, 34.551501790233836], [-77.35576143381024, 34.551492919849906], [-77.35595890819405, 34.5513801601063], [-77.35596036148777, 34.55137883666781], [-77.35604630802038, 34.55129849791152], [-77.35608490264494, 34.551240497818256], [-77.35610996757933, 34.55120528481484], [-77.35616233869129, 34.55113170983226], [-77.35620784716527, 34.5511003871849], [-77.35621549774959, 34.551067062155354], [-77.3562501171605, 34.55102510156174], [-77.35626332179177, 34.55100836709767], [-77.35632508207037, 34.550984139194064], [-77.35636229544502, 34.55097267173633], [-77.3564269808474, 34.55094642867398], [-77.35652853697006, 34.55091219392203], [-77.35656024467208, 34.5509011854131], [-77.35662694274751, 34.55087640508489], [-77.35675798543116, 34.55083877936994], [-77.35680144777486, 34.55079660568043], [-77.3569581023947, 34.55067266803421], [-77.35700597375923, 34.550647744872556], [-77.35704989445183, 34.550611926913675], [-77.35732532615621, 34.55034792527799], [-77.35735112077991, 34.55032373605586], [-77.35735472737271, 34.5503206855904], [-77.35735890754566, 34.55031540837151], [-77.3575122829007, 34.55014897175429], [-77.35756095023146, 34.55006513027946], [-77.35759729249708, 34.55004347058656], [-77.3576745026999, 34.5499795274977], [-77.35770596772144, 34.54993919468547], [-77.35775516904779, 34.549898328603504], [-77.35776119585195, 34.54989325108235], [-77.35794661198378, 34.54986354918649], [-77.35795925810893, 34.54981666026325], [-77.35798205857384, 34.54985095418705], [-77.35800836389154, 34.54989359398241], [-77.35795697296018, 34.54999168505644], [-77.3581509424443, 34.55001853840337], [-77.35825833945027, 34.550015216761615], [-77.35834321013834, 34.54993607489408], [-77.35851047222667, 34.54988951831992], [-77.35854777894195, 34.54983423502945], [-77.35863679962677, 34.54970261112659], [-77.35884823112588, 34.54961853670564], [-77.35872456583493, 34.54953044078625], [-77.35873028384233, 34.54949972479715], [-77.35877640462537, 34.549491211550716], [-77.35877394327566, 34.54950682132505], [-77.35894625282984, 34.549578327247296], [-77.35897194194243, 34.54958461535239], [-77.35909387054618, 34.549552437040774], [-77.3591454084925, 34.549453883269116], [-77.35914562254558, 34.54945343148063], [-77.35914574204718, 34.54945328724438], [-77.35914579907242, 34.54945304740859], [-77.35915807974112, 34.54933530778769], [-77.35915993995921, 34.54932883099816], [-77.35915985401041, 34.54932172195757], [-77.35915851958565, 34.549211337284], [-77.35915846269633, 34.54920663180094], [-77.3591584082317, 34.54920212686892], [-77.35915700945239, 34.54908641804586], [-77.35915807187408, 34.54908427616598], [-77.3591559071672, 34.548995235443456], [-77.35915262577548, 34.548965124440095], [-77.35915464507244, 34.548961083174184], [-77.35915679033175, 34.54895665334754], [-77.35918913193197, 34.548834980011506], [-77.3592061334526, 34.5488039424159], [-77.35923083857958, 34.54874978491028], [-77.35925151275957, 34.54870358586646], [-77.35926860904543, 34.54864397709392], [-77.3592677995807, 34.54864003479838], [-77.35926851890483, 34.54863604183854], [-77.35928345389037, 34.54857657475737], [-77.35927556875113, 34.54857036208389], [-77.35927228487759, 34.54854758001282], [-77.35927101388549, 34.54854363675226], [-77.35926492045809, 34.54852076046155], [-77.35926404558307, 34.548518737837796], [-77.35926410575655, 34.54851815474792], [-77.35925225338616, 34.54851183502452], [-77.35926501874398, 34.54851646651886], [-77.35926567329739, 34.54851750603207], [-77.35928413770053, 34.54851182482393], [-77.35928224217923, 34.54850496718789], [-77.35927130104506, 34.548501817202954], [-77.35926544897265, 34.54849767056796], [-77.35924189679156, 34.548505327070316], [-77.3592359572023, 34.54849160488607], [-77.35923531539478, 34.54848013535752], [-77.35923437859955, 34.54846122920194], [-77.35924632246152, 34.54841146089518], [-77.35924387749992, 34.54839865549045], [-77.35925053861676, 34.54838681623687], [-77.35926905904668, 34.5483399527434], [-77.35927082535972, 34.54833356929374], [-77.35927911103603, 34.54832630280984], [-77.35926924622134, 34.54833177541329], [-77.35922932358235, 34.54830363591043], [-77.35922568867193, 34.548278862581405], [-77.35924011391823, 34.54825755973481], [-77.35926408758466, 34.54821212750087], [-77.35930139058192, 34.54812840821542], [-77.35931596858468, 34.5480822451179], [-77.35934028019004, 34.548057925447225], [-77.35937464041325, 34.54801536367288], [-77.35951111635092, 34.54796969269104], [-77.35957266396164, 34.547940200128195], [-77.35961150245177, 34.54794151637412], [-77.35960197191332, 34.54790093508464], [-77.35959384596919, 34.54779740875949], [-77.35965010403521, 34.54771192897658], [-77.35965524442841, 34.547666155855914], [-77.35965099830992, 34.547622453502484], [-77.35968466364795, 34.547539507636415], [-77.35968162486374, 34.547478896679564], [-77.35968164174442, 34.54747873681938], [-77.359681570894, 34.547478627094186], [-77.35968141039807, 34.5474772365856], [-77.35967481591108, 34.5474185137062], [-77.35967909936424, 34.547359807851805], [-77.35967660061561, 34.54735226797574], [-77.35965983051119, 34.54729825953365], [-77.35964440840198, 34.547265371848745], [-77.35961856428148, 34.54719984674851], [-77.35961176262717, 34.547182769089524], [-77.35961494350667, 34.54716698090306], [-77.35960275550252, 34.54706797085711], [-77.35960503143525, 34.54706132636312], [-77.35960561869997, 34.54705334823771], [-77.35962369873008, 34.546953976316914], [-77.35962788240236, 34.54693562393475], [-77.35962610622083, 34.54691715393903], [-77.35962438936116, 34.54683012805344], [-77.35962599521235, 34.546813483690286], [-77.3596256780213, 34.5467967884243], [-77.35961953677254, 34.5467035827674], [-77.35961977891483, 34.54669196682025], [-77.35961721417317, 34.546682504228514], [-77.3596030987409, 34.54661036374604], [-77.35959639152827, 34.54657292251414], [-77.35958429557459, 34.5464660376525], [-77.35957527773917, 34.54645355080497], [-77.35949099670951, 34.5463926734161], [-77.3594324620288, 34.54635170360798], [-77.35943887870648, 34.54633470906194], [-77.35941383754857, 34.54630283678697], [-77.35927414598547, 34.54628716480396], [-77.35902238897259, 34.546252596779595], [-77.35888026188464, 34.54627470652792], [-77.35862789388733, 34.546335419636506], [-77.35848907032737, 34.54632937566613], [-77.35843169812745, 34.54633088793619], [-77.35837040098593, 34.546259806195444], [-77.35835604331558, 34.54618867076775], [-77.3583685161983, 34.54609489544808], [-77.35849608250783, 34.54599688600814], [-77.35839324246786, 34.54591914282997], [-77.35840048492842, 34.54586207960636], [-77.35841453195192, 34.545763804714205], [-77.3583767234728, 34.54572633286475], [-77.35840645463306, 34.54566776767142], [-77.3584378674729, 34.54563803290031], [-77.35843958098073, 34.54563273173875], [-77.35863549302309, 34.54548716533782], [-77.35863804330863, 34.54548092573368], [-77.35864788858697, 34.54546221584714], [-77.3586579117929, 34.54547746896428], [-77.358658663281, 34.54548382907485], [-77.35903568253703, 34.54567192382676], [-77.3590489083099, 34.54566432204655], [-77.35943326910262, 34.54545387798812], [-77.35948813282492, 34.54539780438264], [-77.35951650685267, 34.545360305696576], [-77.35949188126878, 34.545329082041725], [-77.35947490478523, 34.54514299923848], [-77.35946363742651, 34.545123094769735], [-77.35952383526174, 34.5450635204457], [-77.35962315430974, 34.544966761925295], [-77.35964132193723, 34.54494023332655], [-77.35967324633944, 34.544866950075125], [-77.35967164178481, 34.54484831868953], [-77.35967481754889, 34.54482856690866], [-77.35967849946789, 34.544786125186306], [-77.35968064753175, 34.544763809986755], [-77.3596821387779, 34.54474709237838], [-77.35968635503541, 34.54472378798748], [-77.35968599603402, 34.544699417410584], [-77.3596868191849, 34.544662515143614], [-77.35968745910216, 34.544625496627944], [-77.35968523763398, 34.5446015368784], [-77.3596873754711, 34.544577683929795], [-77.35968626923369, 34.54456282551306], [-77.35968460127197, 34.544540422506955], [-77.35968312231321, 34.544520557996705], [-77.3596814725705, 34.54449839946895], [-77.35968429601232, 34.544479260456946], [-77.35969068134699, 34.54445449246142], [-77.35969518255459, 34.54438088576899], [-77.35969712476, 34.54435500111027], [-77.35969941168734, 34.544327195737424], [-77.35969991342537, 34.54432109543551], [-77.35969631163013, 34.544293912191826], [-77.3596981873327, 34.54425816338154], [-77.35970755093797, 34.544231087727454], [-77.35971021438861, 34.54419833056364], [-77.3597148085309, 34.54414206618975], [-77.35972444987542, 34.54410624226456], [-77.35971247620031, 34.54407592926097], [-77.35970401816125, 34.544012631636114], [-77.35970002328929, 34.543987347667496], [-77.35969931143072, 34.543965203027426], [-77.35969246511773, 34.54388282597078], [-77.3597016022303, 34.543864708279784], [-77.35970888560472, 34.543837267630074], [-77.35973441020904, 34.54377905043014], [-77.35978912707614, 34.54372969260534], [-77.3598335496085, 34.54370310346838], [-77.35986624960015, 34.54368908577955], [-77.35989935969086, 34.54367303193379], [-77.35995787617392, 34.54364882696842], [-77.35996533317062, 34.54364813858591], [-77.35998713181363, 34.54367057659774], [-77.35998705939714, 34.5436870853715], [-77.35999030005866, 34.54370072337286], [-77.35998250066152, 34.54375088040633], [-77.35998610619744, 34.54377733138952], [-77.35999233139364, 34.54382284289128], [-77.35999277793532, 34.54386379215315], [-77.35999216793422, 34.54390446496347], [-77.35999151888554, 34.54394537195968], [-77.35998640615887, 34.54398930424958], [-77.3599860031098, 34.54402564960265], [-77.35998274478607, 34.544069047511236], [-77.3599571878193, 34.54413210703331], [-77.3599562415288, 34.54413535309715], [-77.35995406420136, 34.54414059597022], [-77.35993444631322, 34.54418684058656], [-77.3599380347839, 34.54419789792566], [-77.3599496203777, 34.5442563157279], [-77.35994951837311, 34.54425745030292], [-77.35994944319646, 34.544258658079876], [-77.35995295024156, 34.54431816209559], [-77.35995228406205, 34.54437719785624], [-77.3599528172676, 34.544382055379124], [-77.35996458598618, 34.544438898588794], [-77.35996104949528, 34.544491253838494], [-77.35996182602058, 34.544510622799486], [-77.3599618751701, 34.54456170100697], [-77.35995106394546, 34.544619500851134], [-77.35995016298307, 34.54462913227591], [-77.35994956916753, 34.544685885139955], [-77.35995011706642, 34.54474090726576], [-77.35995012002176, 34.54475329553717], [-77.35994881969324, 34.54480840511843], [-77.35994691201071, 34.54486402269908], [-77.35994717253267, 34.54487604558862], [-77.35994592512046, 34.54493123399158], [-77.35994518200098, 34.54498602180079], [-77.35994500361521, 34.54499917445165], [-77.35993292785867, 34.545055517654994], [-77.35992763650039, 34.54511490855863], [-77.3599274354818, 34.54517872060759], [-77.35991278939312, 34.54523186890993], [-77.35990760817104, 34.54524278180075], [-77.35991124066922, 34.54525308849487], [-77.3599140873146, 34.54530305479231], [-77.35991911415722, 34.54535913031942], [-77.35991625420606, 34.54542515480422], [-77.35992029693885, 34.5454876141676], [-77.35993548676326, 34.545544797269265], [-77.3599488154221, 34.54562194967843], [-77.35994172435379, 34.54566631120065], [-77.35993556728486, 34.5457174371557], [-77.35991962041973, 34.54579190611469], [-77.35990553654187, 34.54584926071878], [-77.35990061883388, 34.545917054457526], [-77.35987951937639, 34.546001233976824], [-77.35986243611815, 34.54604496472844], [-77.35984416675994, 34.54606776983543], [-77.359838445236, 34.54617083146252], [-77.35984697940542, 34.54626723979709], [-77.35984617655868, 34.54629213018842], [-77.35984471572863, 34.54631640523939], [-77.35983003086729, 34.54641686717128], [-77.3598318866178, 34.54652004152659], [-77.35982976654212, 34.54653931725728], [-77.35983097695762, 34.546558089035415], [-77.35982733917913, 34.54666207881602], [-77.3598321668221, 34.54668285211354], [-77.35983878583896, 34.54672163654777], [-77.35983746389748, 34.546757200258845], [-77.3598366909923, 34.54678314419548], [-77.35984094960872, 34.546811309425465], [-77.3598439173444, 34.54684330964864], [-77.3598431858543, 34.54687355971304], [-77.35984241906506, 34.54690473138834], [-77.3598463511718, 34.546938121616705], [-77.35984537181119, 34.54696551223433], [-77.35985109648703, 34.546988262813414], [-77.359852505478, 34.547025690991845], [-77.35985507255288, 34.54706654901271], [-77.35985649904052, 34.54708632196983], [-77.35985531438416, 34.547105760564236], [-77.3598610982128, 34.547146865684134], [-77.3598771404788, 34.54720146999089], [-77.35987850833013, 34.54720556472503], [-77.35987840639434, 34.54720897459728], [-77.35987546320948, 34.54726720918873], [-77.3598949721863, 34.54731712762284], [-77.35989591025744, 34.54733478623499], [-77.35990838666875, 34.54738488036228], [-77.3599170229787, 34.54742112968616], [-77.35992646649753, 34.54747383696168], [-77.3599122068247, 34.54750674227415], [-77.35991914610165, 34.5475944593084], [-77.35991377988884, 34.54762892779034], [-77.35993430214432, 34.54764943284208], [-77.35994452001438, 34.547730988614745], [-77.35993420320213, 34.547748398934864], [-77.3599684017978, 34.54780333931185], [-77.35998901417884, 34.547849407376205], [-77.3599946935575, 34.54786210052849], [-77.36000469288089, 34.54788444862107], [-77.36000899857117, 34.54795497347929], [-77.36001942924159, 34.5479809507047], [-77.36003232327081, 34.54799766670236], [-77.36004147757944, 34.548008378815574], [-77.36002791586026, 34.54801993124717], [-77.36001986024093, 34.54804209467333], [-77.36001938139617, 34.54804682494827], [-77.3600201852033, 34.54806719764778], [-77.36001549205801, 34.54807332669272], [-77.36003561681484, 34.5480829902141], [-77.36004243629787, 34.5480805308504], [-77.36005336322513, 34.54809440410329], [-77.36005460542592, 34.54809829747412], [-77.36005499053309, 34.54810120249947], [-77.36005309470126, 34.54815636539388], [-77.36005203603249, 34.548159873483996], [-77.36005313333317, 34.54816295303675], [-77.36007380601252, 34.5482179446448], [-77.36009481440223, 34.54825209949976], [-77.36011421360354, 34.54831028530995], [-77.36012787261691, 34.548332571256694], [-77.36013144174007, 34.54834507063034], [-77.36013733198224, 34.54844571683603], [-77.36013784607557, 34.54845354716193], [-77.36013874976626, 34.54846023020946], [-77.3601489801131, 34.54849063012022], [-77.36015379365664, 34.54850919033575], [-77.36015448900645, 34.54851235664713], [-77.36015722445775, 34.54851748693955], [-77.36016000445517, 34.54854216544818], [-77.36017767526064, 34.548551462222946], [-77.3601820634807, 34.54856959200577], [-77.36017902409858, 34.54859018489683], [-77.36017221071205, 34.54861594281502], [-77.36017300984756, 34.54863210173856], [-77.3601750873812, 34.54867411089651], [-77.36017601536308, 34.54869287496842], [-77.36017306072434, 34.54871146728111], [-77.36014300373071, 34.548751848992474], [-77.36010490187572, 34.548802490117865], [-77.36009090915864, 34.54882754210287], [-77.36010305618997, 34.54884931297023], [-77.3601039371267, 34.54892620453107], [-77.3600791794577, 34.54895164319112], [-77.3600243796418, 34.549011681731685], [-77.36000085724454, 34.54902412736132], [-77.35993973303589, 34.54905627809684], [-77.35991817853095, 34.54908419617587], [-77.3599175249245, 34.54909733287603], [-77.35990321547646, 34.549121238036285], [-77.3598770833518, 34.54916436227177], [-77.35986820928866, 34.549184068837704], [-77.35985006735967, 34.54922945844511], [-77.35984274602909, 34.549287689696676], [-77.35984200897472, 34.54929182481645], [-77.35984793229706, 34.54929838755018], [-77.35983789620809, 34.549353623038], [-77.35983543830666, 34.54941390989406], [-77.35983558166771, 34.5494165626427], [-77.35980184040912, 34.54943933579775], [-77.35973360128192, 34.549485671847584], [-77.35972947516706, 34.54948912329975], [-77.35972741744078, 34.54949194329005], [-77.35971312929415, 34.54950646969167], [-77.3595638014478, 34.5496568871425], [-77.35942900008543, 34.5497797367573], [-77.35939885829437, 34.549825006548005], [-77.35933044349123, 34.54994635696134], [-77.35923233345892, 34.549992356560395], [-77.35913324248212, 34.549985372660245], [-77.35898305678434, 34.55008877127402], [-77.35895476612308, 34.55010568147917], [-77.35893357879326, 34.550131954123486], [-77.3588695496327, 34.55018840583315], [-77.35883945365438, 34.55023185989663], [-77.35880521793993, 34.55028129123941], [-77.35862945694728, 34.550384507781715], [-77.35861391402813, 34.55043658566327], [-77.35853299959302, 34.55047969485689], [-77.3583652536153, 34.55056397464921], [-77.35827974779802, 34.550591186490266], [-77.35813714542907, 34.550620973623275], [-77.3580823916345, 34.550674723141086], [-77.35804834991586, 34.550712999236], [-77.35785707640038, 34.550813469988775], [-77.35773807535705, 34.55090258158198], [-77.35765936243797, 34.550965645884396], [-77.35756786852892, 34.55102700002614], [-77.35745249395234, 34.551113367806266], [-77.35733817039662, 34.551220509865445], [-77.35726933629488, 34.55127262603113], [-77.35719273007142, 34.55132583246265], [-77.35703307831344, 34.551534572470075], [-77.35698221344502, 34.551600963470115], [-77.35696637340921, 34.55162196628451], [-77.35693584405885, 34.55164396703233], [-77.35683339325202, 34.551685676092845], [-77.35653921302324, 34.55181876778988], [-77.35638833389697, 34.55183747032919], [-77.35623226696003, 34.55189917671123], [-77.35614371980634, 34.55194386089877], [-77.35612626317901, 34.551958333947226], [-77.35610819515686, 34.551971613203285], [-77.35593568674506, 34.552113982634864], [-77.35574480941625, 34.55221792457134], [-77.35570283045428, 34.55224906059229], [-77.35563614009908, 34.55228439172251], [-77.35545300090277, 34.55237587988155], [-77.35534691897914, 34.552447399656856], [-77.35523615807287, 34.55251874891454], [-77.35508516829464, 34.552608528193275], [-77.3550547240104, 34.55267884626969], [-77.35494659879906, 34.5527826968706], [-77.35471384041867, 34.552906802715306], [-77.3547592275947, 34.55303182118489], [-77.35477544089623, 34.553142757964636]], [[-77.39119277560137, 34.70408599237289], [-77.39234495485032, 34.70494591560319], [-77.39201189675944, 34.70542607073514], [-77.39167686207395, 34.706213329979526], [-77.39158362892898, 34.706222251212765], [-77.3915274151733, 34.706251839599545], [-77.39146071506357, 34.706207158240986], [-77.39077086368641, 34.70589622341456], [-77.39068026031235, 34.70563988940285]], [[-77.31977291518326, 34.54578595294784], [-77.31985334821564, 34.54587241498617], [-77.32003302525382, 34.54589801643242], [-77.32006181271898, 34.54607828247569], [-77.319764447039, 34.5461484018467], [-77.31973465957363, 34.546167394670036], [-77.31952952213994, 34.54611729109064], [-77.31937539308808, 34.54599629144599], [-77.31936471264599, 34.54599402603419], [-77.3192618936192, 34.54583707754155], [-77.31898842613946, 34.545754947445545], [-77.31893079780306, 34.54560485833433], [-77.31875886127429, 34.54559143563416], [-77.31864102500084, 34.54558268592551], [-77.31859990650517, 34.545580113072475], [-77.31846917912941, 34.545471338409534], [-77.31820868368459, 34.545520951829516], [-77.31788340556952, 34.545514267101275], [-77.31781641962303, 34.54550633161052], [-77.31778867576286, 34.54550333301362], [-77.31771977709482, 34.54549588625272], [-77.31751704098107, 34.54546744265807], [-77.31742461076662, 34.54547225297372], [-77.31727578590682, 34.54546678165413], [-77.31722847761388, 34.54546499405304], [-77.31716654967852, 34.54549118026992], [-77.31703048530235, 34.54553719800729], [-77.31695716776039, 34.54556004347476], [-77.31686149636015, 34.54561916937459], [-77.31675958084219, 34.54571224999014], [-77.31663012740513, 34.545868440491056], [-77.3164440792534, 34.545679124730015], [-77.31655938410267, 34.54561474924988], [-77.31659260465032, 34.54553538623297], [-77.31662126567073, 34.54542092003344], [-77.31662867916263, 34.54540779923686], [-77.31663043459359, 34.54540091652439], [-77.31664197879921, 34.54536200016925], [-77.31666539002434, 34.545293722672056], [-77.31672036255867, 34.545272224787574], [-77.31677207940085, 34.545221465151656], [-77.31692240093209, 34.54519321428661], [-77.31703867345674, 34.54518722749356], [-77.31713408936388, 34.54514933715272], [-77.31724474253785, 34.545074498460195], [-77.31743592882064, 34.54498841029147], [-77.3176831807096, 34.54501152043452], [-77.31777165848366, 34.545033616150754], [-77.31782674730798, 34.54506473791965], [-77.31791578643598, 34.545033168668226], [-77.31802352411297, 34.54504443123204], [-77.31806446448664, 34.54505349575382], [-77.31812131005755, 34.54506003984154], [-77.31813257920683, 34.545069372189815], [-77.31815377555623, 34.54510660709739], [-77.31815328016548, 34.545148831295485], [-77.31810368035548, 34.54519592911093], [-77.3181147151484, 34.54525679024687], [-77.31821384882926, 34.545300054710566], [-77.31842771431579, 34.54528248309296], [-77.31860644042014, 34.54530062166624], [-77.31872490732748, 34.54527796101875], [-77.31880344739432, 34.54527047949297], [-77.31887957943324, 34.54525411096472], [-77.31891210892827, 34.545257048676085], [-77.31899956153005, 34.54527852941976], [-77.31903157750324, 34.545287355022964], [-77.31907666795895, 34.5453009699541], [-77.31902658896892, 34.54553242224719], [-77.31938707016204, 34.545496596905494], [-77.31939174220113, 34.54549759165341], [-77.31949082697412, 34.54548628508671], [-77.31948219178233, 34.54554758221614], [-77.3195302279232, 34.545634165183124], [-77.31960558806361, 34.54571461040343]], [[-77.3950568198747, 34.605212569515984], [-77.39520359319687, 34.6051169776197], [-77.39537330296977, 34.60493440191817], [-77.39545097807212, 34.60488597490105], [-77.39574083838326, 34.60476905742789], [-77.39584512492797, 34.604701947773265], [-77.39606690874419, 34.60459545898079], [-77.39639215255147, 34.60452757065404], [-77.39663341058314, 34.60438730663853], [-77.39713068943045, 34.604145253133446], [-77.39742168754753, 34.60413468893827], [-77.39784514252733, 34.6041848874981], [-77.3978449591946, 34.60372875346634], [-77.39820997517401, 34.603372182746256], [-77.39880815246866, 34.603385047762806], [-77.39899823163125, 34.60338469485181], [-77.39926054179978, 34.603241977503444], [-77.39946703452141, 34.60349475931915], [-77.39899821729418, 34.60406430254219], [-77.39854391295222, 34.60483684772856], [-77.39807168936136, 34.60539433689283], [-77.39763800203534, 34.60568997819178], [-77.39742162607068, 34.605697487950835], [-77.39725256089984, 34.60569461122164], [-77.39663333782882, 34.60588325062498], [-77.39637519150199, 34.606210126960505], [-77.39623916847135, 34.60642793944481], [-77.39621464805546, 34.60648493215795], [-77.39616510463951, 34.606518487980296], [-77.39592777317861, 34.60664186702884], [-77.39584501161367, 34.606665515681044], [-77.39573543970924, 34.60669848587547], [-77.39545085976016, 34.60678477055778], [-77.39524047960333, 34.6068497980788], [-77.39505668960294, 34.60716323093331], [-77.39453029355424, 34.60760340706365], [-77.39444805571111, 34.60780884479919], [-77.3942683314896, 34.60801404963824], [-77.39402944682554, 34.60826747708238], [-77.39349243009399, 34.60858880893922], [-77.39347998012335, 34.608594265269325], [-77.3934681162582, 34.608592945876], [-77.39272706920228, 34.608674448617386], [-77.39269166677778, 34.6086487924622], [-77.39256790568717, 34.608602220316655], [-77.39210262278174, 34.60858799274878], [-77.39220743407515, 34.60826587516948], [-77.3923850201845, 34.6082431199582], [-77.39269171606736, 34.60812218082092], [-77.39286141240107, 34.608026856070175], [-77.39296774092226, 34.60782874038274], [-77.39304491153663, 34.6074372259298], [-77.39307763948085, 34.60737938819408], [-77.3934419464477, 34.60691121811726], [-77.39346360446604, 34.606890299949654], [-77.3934801263017, 34.606866430852286], [-77.3936078038439, 34.606749777041045], [-77.39387430171573, 34.60649958052858], [-77.39393400304823, 34.60647999679138], [-77.39426848653517, 34.60596433539526], [-77.39427752236777, 34.60595131031178], [-77.3942827505902, 34.605940823957106]], [[-77.34275893880103, 34.52323610427419], [-77.3427007188051, 34.52305378228255], [-77.34287009614704, 34.52290325158092], [-77.34307607080832, 34.52274241307588], [-77.34368932339396, 34.522532044388385], [-77.34377138242013, 34.52289972588066], [-77.34348488187838, 34.52320257774282], [-77.34306032948442, 34.52342402034836]], [[-77.33840554175407, 34.55084646533047], [-77.33828874198532, 34.55075205389789], [-77.33815436986085, 34.55066391955725], [-77.3383181562496, 34.55072980388793], [-77.33850204882489, 34.550793888142465], [-77.33887870597951, 34.55077841803916], [-77.33849949189941, 34.55090439960704], [-77.33845945727985, 34.55086425403697]], [[-77.21798660419842, 34.61724096355789], [-77.21821090124898, 34.61716133606582], [-77.21824423498879, 34.61714141537861], [-77.21831695487215, 34.617077544219065], [-77.21852050056972, 34.617073254637454], [-77.21839490001211, 34.61717586834196], [-77.2183762130169, 34.61725884168709], [-77.21825040320223, 34.617400138201184], [-77.21811618012988, 34.617473802074485], [-77.21808589401418, 34.617387144870456], [-77.21792823846141, 34.61729473944239]], [[-77.31141769640789, 34.55049369444787], [-77.31151656730216, 34.55042612538591], [-77.3115832427402, 34.550395936940085], [-77.31174526626226, 34.550270882680934], [-77.31177493816702, 34.55024085865764], [-77.31179430119184, 34.55014143724556], [-77.31181918796838, 34.550115962334594], [-77.311897853977, 34.550052281516756], [-77.31198805926941, 34.54999121107602], [-77.31201918980666, 34.54995875614602], [-77.3121735148631, 34.5499380985255], [-77.31221791819782, 34.54985581643368], [-77.31239726719956, 34.54982113264695], [-77.31227773094639, 34.54994961687661], [-77.31228602014397, 34.550146522585024], [-77.31222685031803, 34.55021251785822], [-77.31193787662204, 34.55048803541857], [-77.31188919455748, 34.55054494985801], [-77.31180698335491, 34.55063625633841], [-77.31150511105112, 34.550854769915915], [-77.31140615575194, 34.55098558561535], [-77.31134240863788, 34.55102396987962], [-77.31124915241851, 34.551076544894144], [-77.31117721318712, 34.55119195562103], [-77.31100807303821, 34.55121780039069], [-77.31068958885733, 34.551353477123676], [-77.31082104774437, 34.551138012121214], [-77.31076373158918, 34.551056145726804], [-77.31079729993249, 34.55100691826982], [-77.31096650270311, 34.550872318783895], [-77.310997614261, 34.55085603759587], [-77.31101697295739, 34.5508385393308], [-77.31129946196464, 34.55075460872282], [-77.31133992809221, 34.55057389255848], [-77.31137751584313, 34.550544181241946]], [[-77.3958467651204, 34.580310964518034], [-77.39568418620479, 34.5804395781041], [-77.39545271740279, 34.58065554170712], [-77.39541294531682, 34.5806852516553], [-77.39520983670445, 34.580757404240764], [-77.39505868219985, 34.58081499669925], [-77.39495191149256, 34.580794610791365], [-77.39472741898692, 34.58075937409161], [-77.39466466674938, 34.58073734416034], [-77.39446403090957, 34.58064878681196], [-77.39427065661178, 34.58061078668403], [-77.39413421456373, 34.580635007675745], [-77.39403360571062, 34.58050250311929], [-77.39373137465856, 34.58027808573162], [-77.39370407594072, 34.579939453149954], [-77.39396039318738, 34.57999830551019], [-77.39427071972011, 34.57994628574895], [-77.39433469154258, 34.57996556757321], [-77.39463211035189, 34.57995644276384], [-77.39466473775268, 34.57995041396457], [-77.39470909711139, 34.5799326965584], [-77.395058765208, 34.57984445497469], [-77.39533809980522, 34.579766174581785], [-77.39565207248293, 34.579629739226164], [-77.39584678223758, 34.58008648460121], [-77.3960012716618, 34.58005219337692], [-77.39593507021125, 34.580228211754374], [-77.39589359323475, 34.58028465203496]], [[-77.27250761211296, 34.57206652136716], [-77.27251248227877, 34.57206957250984], [-77.27251134036696, 34.572065896386256], [-77.27250931931063, 34.57206516607708], [-77.27260598099423, 34.571988429370826], [-77.27264372187238, 34.57195846798916], [-77.27268665531649, 34.57192079215306], [-77.27270081342324, 34.571908472444825], [-77.27270834418277, 34.57190463048304], [-77.27271503099234, 34.571896232516586], [-77.27276845055631, 34.57185043798687], [-77.27287359841672, 34.57175943861949], [-77.2729420280647, 34.57179440266019], [-77.27292754113418, 34.571745108582704], [-77.27290337237781, 34.571733806731956], [-77.27298226260008, 34.57166589144287], [-77.2730187883133, 34.571634446983275], [-77.27306130718858, 34.571596569219125], [-77.27307521930251, 34.57158426678795], [-77.27308259242473, 34.57158054502883], [-77.27309093747618, 34.57157167127273], [-77.27314728714055, 34.571526713014336], [-77.27324031452372, 34.571450906270144], [-77.27337093036864, 34.571518661779024], [-77.27335744287787, 34.57142539651317], [-77.27330397542207, 34.57139999083651], [-77.27336623594002, 34.57135019537419], [-77.27341398358037, 34.57131200710352], [-77.2734172900914, 34.57130926000208], [-77.27346275897807, 34.571271742667165], [-77.2734900808768, 34.571259071113616], [-77.27353656680006, 34.57122098319756], [-77.27355897960062, 34.571205569360465], [-77.27358393010401, 34.57118805238545], [-77.27362881938758, 34.57121105802297], [-77.2736525628325, 34.571269377753524], [-77.27364992477766, 34.571273899292166], [-77.27361542843238, 34.571327838640826], [-77.27357792001254, 34.57137415617245], [-77.27351982974069, 34.571438158603215], [-77.27342922643471, 34.571536775369054], [-77.27341785355829, 34.571547977311255], [-77.27341227761579, 34.57155543221813], [-77.27338255065936, 34.57158630873371], [-77.27332717050757, 34.571644037504086], [-77.27331387633598, 34.571657638690894], [-77.2732388785304, 34.57172981050991], [-77.27319789012651, 34.571766356178316], [-77.27311636901925, 34.57183771447844], [-77.27305267179867, 34.57189279933662], [-77.27298967581672, 34.571946573085185], [-77.27295814184822, 34.57197302523805], [-77.27294694824931, 34.57198230010601], [-77.2728608623227, 34.57205080591835], [-77.27281895216682, 34.57209007343036], [-77.27275100989158, 34.572158323533664], [-77.27269484583847, 34.572198152380146], [-77.27268076483222, 34.57221922852774], [-77.27262271867185, 34.57231031667478], [-77.27258743828405, 34.57240332516387], [-77.27256559955498, 34.57242366046064], [-77.2725556728688, 34.572436568615814], [-77.27250151998899, 34.57253645721691], [-77.27247325192624, 34.57255115622228], [-77.2723292721535, 34.57256381396128], [-77.27224636424171, 34.57258315496025], [-77.2721879495439, 34.57260242723142], [-77.27210778458229, 34.57262334343596], [-77.2720502441127, 34.572644257207294], [-77.27196654786604, 34.57271982116175], [-77.27197408974716, 34.57263313217211], [-77.27193758599134, 34.57260996575426], [-77.27192420701209, 34.57260589338708], [-77.27192969446058, 34.5725843598035], [-77.27193543609691, 34.572555757674856], [-77.27194133717045, 34.57254740419285], [-77.27200444867503, 34.57249738794856], [-77.27211462348194, 34.57239676387312], [-77.27212349061442, 34.57238891149637], [-77.27212811000155, 34.572384917146906], [-77.27214195618778, 34.57237294440618], [-77.2722217772169, 34.57230392348387], [-77.27224840711202, 34.57228089666477], [-77.272296902089, 34.57223661139551], [-77.27231364074635, 34.572221325884925], [-77.27237605187699, 34.57217309615184]], [[-77.2131380879678, 34.62135639913111], [-77.21321112624885, 34.621327495333745], [-77.21338197104619, 34.6213756701902], [-77.21337643789049, 34.62138454416548], [-77.21327253025119, 34.62148486420148], [-77.21303523611104, 34.621674574797446], [-77.21307804767066, 34.62146949663246], [-77.21309855830836, 34.621440103417335]], [[-77.22278655333577, 34.61324983187487], [-77.22315987701785, 34.61313401452941], [-77.22284109169281, 34.613284696021374], [-77.2228089684836, 34.61331240168599], [-77.22274067333943, 34.61334039782842], [-77.22273281637672, 34.61329374663282], [-77.222756660589, 34.61327803037293], [-77.22276395525716, 34.6132723530923]], [[-77.374970802076, 34.68567049884536], [-77.37489098321946, 34.685646300770095], [-77.37480154848, 34.68542841109617], [-77.3760306866653, 34.68485438581634], [-77.37537116814774, 34.68593318412845]], [[-77.32282974264635, 34.54699981382955], [-77.32276863768898, 34.54697385631132], [-77.32277840874139, 34.54690431697573], [-77.32278870186784, 34.54672616078204], [-77.32289527283609, 34.54657876518601], [-77.32322392946712, 34.54662441013191], [-77.32329976494871, 34.54664436449485], [-77.3233223181745, 34.54664948715629], [-77.32367587578867, 34.5467767434388], [-77.32371854562324, 34.54681027152511], [-77.32374244312064, 34.546833931924894], [-77.32390360855038, 34.54695537363722], [-77.3236725074297, 34.54692120569938], [-77.32357113030814, 34.54692175390114], [-77.32303573173476, 34.54702961962264], [-77.32288495781012, 34.54702097776182]], [[-77.35932948795299, 34.54035322405218], [-77.35937782918236, 34.54023897151648], [-77.35946017616527, 34.54004275120182], [-77.35950022725123, 34.5399395645637], [-77.35956213415031, 34.53982393313727], [-77.35959806227538, 34.53993839294985], [-77.35960198650046, 34.53998907948796], [-77.3596455123901, 34.54020042440156], [-77.35967874226998, 34.54036008752219], [-77.35967646664608, 34.54052205906936], [-77.35971345783567, 34.54068028808714], [-77.35974015582784, 34.5407963645098], [-77.35976337455187, 34.54106108516219], [-77.35976065174079, 34.54116314015387], [-77.35977951221676, 34.54124933610686], [-77.3597733156467, 34.54131429154272], [-77.35976443121153, 34.54140742012044], [-77.35976194638269, 34.541504009524814], [-77.35976039812536, 34.541556375206675], [-77.35971424558537, 34.541659470952396], [-77.35968645621553, 34.541802521578134], [-77.35968439255564, 34.5420161306906], [-77.3596495166931, 34.54215844018877], [-77.35967755327607, 34.54226117218626], [-77.35966073057585, 34.54230474944724], [-77.35959021277843, 34.5424118041007], [-77.35958517945049, 34.5424645946389], [-77.3595092777633, 34.54266828287793], [-77.3594964927726, 34.542691690379435], [-77.35948685835278, 34.5426777189704], [-77.35948736484913, 34.542671438336455], [-77.35943326580167, 34.542476900401155], [-77.35940458054151, 34.542438535142665], [-77.35928569422322, 34.542347207909295], [-77.3592807562345, 34.54233395382276], [-77.35920804370544, 34.54228528656658], [-77.35920754438071, 34.54228084720791], [-77.35925614933917, 34.542215085195764], [-77.3592416479016, 34.54213916513566], [-77.35923883823988, 34.54204770425966], [-77.35928387980735, 34.54196626798793], [-77.35926243715332, 34.54181081704478], [-77.35924273172745, 34.54172736935169], [-77.35920635380833, 34.54168312087267], [-77.35919316576027, 34.54152874124863], [-77.3591904156476, 34.541490078981965], [-77.35917028374584, 34.54146904199707], [-77.35916874215978, 34.54139267221632], [-77.35918523277394, 34.541368413354505], [-77.35918676850565, 34.54127725852821], [-77.359202280035, 34.54124354654863], [-77.35920298985101, 34.541202911151], [-77.35920606869594, 34.540998177063386], [-77.35920725171357, 34.54079048534192], [-77.35922503920945, 34.54075062137306], [-77.35925742671837, 34.54067895591084]], [[-77.3152351886223, 34.54675709197818], [-77.31539295169561, 34.54680933843531], [-77.31530543536836, 34.54689844708314], [-77.31523933558096, 34.54695934536045], [-77.31513116202817, 34.547091747325226], [-77.31506902228355, 34.54712483552638], [-77.31502759943979, 34.54723885599904], [-77.3149522259306, 34.547316390438155], [-77.3148140082659, 34.547382106732925], [-77.31474846661433, 34.54746559161511], [-77.31462717848981, 34.54757209719012], [-77.31449225844167, 34.54751330120294], [-77.31458405699128, 34.54741513139351], [-77.31461106756932, 34.54739867350082], [-77.3146322253806, 34.54735664481672], [-77.31476502132264, 34.547225215440626], [-77.31492614246298, 34.54712119195206], [-77.31499388801909, 34.54708824265436], [-77.3150329530412, 34.54701026468011], [-77.31521473907424, 34.54694736606693], [-77.31515725638647, 34.54684318923296]], [[-77.3402640547018, 34.55100184243203], [-77.34033543225158, 34.55105854525142], [-77.34038443037359, 34.55109746967122], [-77.3404577003649, 34.551117239468994], [-77.34056597769718, 34.55114779533764], [-77.34061996664772, 34.55116063436846], [-77.34065300978814, 34.551160669831205], [-77.34074412043442, 34.55118337764977], [-77.34074710726124, 34.55118512666457], [-77.34076015399155, 34.55118705586621], [-77.3408483220629, 34.55120398454106], [-77.34087174215155, 34.55121151434763], [-77.34089719440809, 34.55122256536177], [-77.3409285064452, 34.55122890898551], [-77.34094568537704, 34.55123831686228], [-77.34098618548325, 34.551245611600606], [-77.34104314491015, 34.5512684882773], [-77.34109720893002, 34.55128229581008], [-77.34119184231623, 34.55130259434631], [-77.34123838805806, 34.551314812509474], [-77.34130772752738, 34.55132937164645], [-77.34134277303995, 34.551337874086094], [-77.3414338103907, 34.55135338877569], [-77.3415162949959, 34.55137833565412], [-77.3415787113008, 34.551400733749105], [-77.34162861571262, 34.5514186827889], [-77.34164117819329, 34.551421577416164], [-77.34169776238883, 34.55143134503084], [-77.34172623571216, 34.55144192508795], [-77.34180394724736, 34.55145936955269], [-77.34181650616254, 34.551462188742256], [-77.34182385712005, 34.55146510849923], [-77.34187517965668, 34.55148135909069], [-77.34201871259609, 34.5515282533413], [-77.34204151710853, 34.55153331430503], [-77.3420702667265, 34.55154347130483], [-77.34215378413387, 34.551569057447026], [-77.342213628253, 34.55158880383794], [-77.34228388433804, 34.551591309852235], [-77.3424093271382, 34.55161544494578], [-77.34244384977406, 34.5516121433257], [-77.3425958992506, 34.551596617265204], [-77.34262197580398, 34.55159643227664], [-77.34280256523725, 34.55158902162193], [-77.3429520720374, 34.55156851834455], [-77.34299922188757, 34.55157417523175], [-77.3430832982319, 34.55164256980946], [-77.34311820909332, 34.55168418083592], [-77.34319210959995, 34.551722619201996], [-77.34328278417482, 34.55180102508025], [-77.34337087710041, 34.55184602028753], [-77.34337901314076, 34.551848900605364], [-77.34338546098364, 34.55185100109276], [-77.34347387546867, 34.55189780980078], [-77.34357983942526, 34.55193490031283], [-77.34358632228482, 34.551937437382946], [-77.34368827909721, 34.551976958677564], [-77.3437747560786, 34.551995489614356], [-77.3438797007591, 34.55201764293888], [-77.34393867303638, 34.55202888030705], [-77.34397013645122, 34.552035990630124], [-77.34406027316307, 34.55205756208212], [-77.34406775208623, 34.55205947533714], [-77.34409463260894, 34.55206476539129], [-77.34416544592322, 34.5520795722277], [-77.34418485437178, 34.552083988514475], [-77.34421402697892, 34.55209195719536], [-77.34429935655407, 34.552118039853596], [-77.34436050034563, 34.55213421877913], [-77.34441389416895, 34.55215206432771], [-77.34445789615623, 34.55216724271314], [-77.34448295019511, 34.552175679568805], [-77.34452394378907, 34.55218948401094], [-77.34455532540042, 34.55219882015386], [-77.34461219644581, 34.55221829083082], [-77.34463504020634, 34.552226111743416], [-77.34472922552455, 34.552262659565294], [-77.34474995538031, 34.552271892439244], [-77.34480534248766, 34.55228645438287], [-77.34485496700472, 34.55230108140221], [-77.3449450583092, 34.55232446846554], [-77.34504842128858, 34.552339148369846], [-77.34510488945182, 34.55235335844179], [-77.34514066183482, 34.55235534282589], [-77.3452179291686, 34.55236305165849], [-77.34539871682313, 34.55237241975842], [-77.34547955071892, 34.552399532667955], [-77.34550978458452, 34.55240906885489], [-77.34553186711771, 34.55241718378889], [-77.34560624705063, 34.552456767139404], [-77.3457266215273, 34.55248491182061], [-77.34572871984247, 34.552486094514514], [-77.34581051572448, 34.55254358193715], [-77.34591332252356, 34.55258194523087], [-77.34591725481286, 34.55258350576072], [-77.34592065428494, 34.55258396402497], [-77.34593386611633, 34.55258727519322], [-77.34603569706447, 34.55261457556838], [-77.34605927112688, 34.552622152070676], [-77.34609777588625, 34.55262794851034], [-77.34611567237258, 34.55264027894898], [-77.34615142654964, 34.55264769763562], [-77.34619729058514, 34.552663499528286], [-77.34627003684305, 34.55267864021447], [-77.34631076778119, 34.552693248733966], [-77.34646825769873, 34.552723143810695], [-77.34653047790188, 34.552722957881635], [-77.34657211942792, 34.55273198041603], [-77.34665404867675, 34.55275014744369], [-77.34670186168844, 34.55276001755993], [-77.34678615237354, 34.552753652360785], [-77.34680934520244, 34.5527533348926], [-77.34689835543483, 34.552752309525154], [-77.34703830055585, 34.55275216487427], [-77.34709454542423, 34.55275778644904], [-77.3471191197229, 34.55276032838473], [-77.34722640024688, 34.55276025199443], [-77.34727738690664, 34.552761267792], [-77.3472908152556, 34.552759796631776], [-77.34735970045548, 34.5528022772893], [-77.34737619955203, 34.55280718768395], [-77.34738753289164, 34.55282234238457], [-77.34744054425192, 34.5528518501369], [-77.34745234240552, 34.552870258530405], [-77.34748420286913, 34.55288696380843], [-77.34756114248238, 34.552908622366246], [-77.34758178676604, 34.552911903384775], [-77.34764094619244, 34.552921242199545], [-77.34767961539347, 34.55292621694808], [-77.3476998716769, 34.55293694660323], [-77.34776463314984, 34.55298143251102], [-77.34777270298702, 34.55298767217337], [-77.3477737631332, 34.55298911724885], [-77.3478400231383, 34.55303919066435], [-77.34785344365943, 34.55314884372875], [-77.34776631431325, 34.553172206541205], [-77.34747576899035, 34.55325319795417], [-77.34730829505455, 34.553238108897816], [-77.347131539494, 34.55323363987595], [-77.34708354401806, 34.5532354154974], [-77.34698764951106, 34.55322429116373], [-77.34684514523595, 34.55320895691955], [-77.3466925017101, 34.553166300530506], [-77.34659452570489, 34.553157208084215], [-77.34644961326205, 34.55311683607423], [-77.34635756319868, 34.55309512735382], [-77.34630168043708, 34.553087616860594], [-77.34610860762928, 34.55304348853147], [-77.34610721780103, 34.55304317087515], [-77.34610639101254, 34.55304302563252], [-77.34610421288683, 34.55304275885381], [-77.34591067715658, 34.553016857963506], [-77.34578884288727, 34.552967083841395], [-77.34564220880166, 34.5529122624113], [-77.34552123422117, 34.55287843598003], [-77.34541173671231, 34.55284527035195], [-77.34532613629102, 34.552825573673374], [-77.34524744404419, 34.552800154793985], [-77.34518080180706, 34.5527786282636], [-77.34513120921366, 34.55276531104244], [-77.34499061006169, 34.5527146946527], [-77.34496007180715, 34.55270426577688], [-77.34493642322421, 34.55269894111125], [-77.34482989451408, 34.552670989710734], [-77.34474127513587, 34.55264828497302], [-77.34472188130472, 34.55264311230474], [-77.3446922885982, 34.55263520246539], [-77.34448518388183, 34.55258082900125], [-77.34435101999235, 34.55254522146108], [-77.34425054117978, 34.552516991091], [-77.34415629657805, 34.55247618403183], [-77.34413789756844, 34.55247013793841], [-77.34403191150868, 34.55244103899669], [-77.34396137827268, 34.552415607049525], [-77.34385939449834, 34.55238779284829], [-77.34380323998208, 34.55237268352762], [-77.34376621070953, 34.552365844098816], [-77.34361902816478, 34.55229996110884], [-77.34359975453316, 34.552285274513295], [-77.34357201892372, 34.55227380447724], [-77.34345828118788, 34.55225184966111], [-77.34334827984908, 34.55223416932265], [-77.34318074789675, 34.55221488175891], [-77.34283943070531, 34.55216728754602], [-77.34280456110503, 34.552162799747144], [-77.34278939979194, 34.55215931732109], [-77.34269817914313, 34.55213030930541], [-77.34257712383757, 34.55209350940463], [-77.34239919268532, 34.55205435579285], [-77.34233470395634, 34.552035552982225], [-77.34222478273614, 34.552010882578735], [-77.34208838158725, 34.55198054851636], [-77.34200884025599, 34.551955724997526], [-77.34193886588564, 34.55192959998599], [-77.34186996919836, 34.55190443043984], [-77.34181423921162, 34.55188152069382], [-77.34166943047062, 34.55184594600251], [-77.34163834238471, 34.55183830869355], [-77.34161904463576, 34.55183302506535], [-77.34152903278203, 34.551809678483515], [-77.3414011030846, 34.55177643240042], [-77.3412287812431, 34.551730616978006], [-77.34105295222786, 34.55168979876706], [-77.34092280540843, 34.55165556808898], [-77.34083841672644, 34.55163262211796], [-77.34068244443219, 34.55159605257889], [-77.34064317011526, 34.551586422431214], [-77.34046540285651, 34.551529488134335], [-77.34045631694552, 34.55152576973862], [-77.34044832941085, 34.55152266966047], [-77.34041567894137, 34.55151618760265], [-77.34021686143515, 34.551465568744796], [-77.34005820930082, 34.55141417615698], [-77.33999253236533, 34.55139392503331], [-77.3398717107558, 34.55137005803978], [-77.33974316821389, 34.5513412190673], [-77.33966753784502, 34.55132956633474], [-77.33952525872813, 34.5513311926034], [-77.33947127257792, 34.551327468320125], [-77.33944684087535, 34.551324038155485], [-77.33939421060921, 34.551316323857776], [-77.33927549597207, 34.55130424080073], [-77.33919134633203, 34.55127596874181], [-77.3391285291009, 34.55126228939481], [-77.33908045026685, 34.551249417306074], [-77.33905439115969, 34.55124278708488], [-77.33897172402752, 34.55120076359956], [-77.33888666810083, 34.55113998196271], [-77.3386493710344, 34.55105621719174], [-77.3388950220645, 34.55077884622376], [-77.33889821075128, 34.550777583026154], [-77.33917266875329, 34.55080742278745], [-77.33928664855299, 34.550822024552524], [-77.3393132013739, 34.55082178563442], [-77.33934624065542, 34.550833587252626], [-77.33945084006048, 34.55083833738715], [-77.33948261733906, 34.55083689260992], [-77.33951955620711, 34.550831617849475], [-77.33953223806654, 34.55081343003103], [-77.3395373020273, 34.55083326740543], [-77.3395599194534, 34.550833458168064], [-77.33958071005374, 34.55083964302289], [-77.33959005370042, 34.550834881714856], [-77.33961318588976, 34.550836199195345], [-77.33961990656339, 34.55084941221956], [-77.33961392932825, 34.55085629262661], [-77.33961330240042, 34.550877247659116], [-77.33961880167914, 34.550886194113275], [-77.33961947853007, 34.550891773620855], [-77.33962150381139, 34.55091640771528], [-77.3396289092953, 34.550944974183835], [-77.33963073022892, 34.55097628522847], [-77.33964055816394, 34.55099649690508], [-77.33967463650947, 34.551022570990845], [-77.33969109110237, 34.551018605570064], [-77.33972485433645, 34.55102395258804], [-77.33976179943865, 34.55102545245372], [-77.33977271615873, 34.55102589563827], [-77.33986610200722, 34.55100688668445], [-77.33987131943042, 34.55100657300751], [-77.3398779799794, 34.55100607554537], [-77.34007093835255, 34.5508635720322], [-77.34019428481659, 34.550999968306364]], [[-77.26830905297632, 34.57578550797865], [-77.2683059726706, 34.57584451115061], [-77.26829062018106, 34.575858268510125], [-77.2682826554232, 34.575865505164934], [-77.26825503147263, 34.575892322667855], [-77.26807672114587, 34.57595928391973], [-77.26814691512618, 34.57599595331129], [-77.26810253036805, 34.57603391256523], [-77.26799918274541, 34.57607102100859], [-77.2679253869791, 34.57617079769812], [-77.26790447118894, 34.57618637066538], [-77.26789005879073, 34.57619731925754], [-77.26764645576716, 34.576278953722394], [-77.26765324167926, 34.57629154198308], [-77.26766673747046, 34.57635954762215], [-77.26760830399958, 34.57639378765997], [-77.26755493790463, 34.576443286318735], [-77.2674241904705, 34.576416437730316], [-77.26717581632346, 34.576477613504245], [-77.26733792711899, 34.57657457957704], [-77.2672725218252, 34.57661015448968], [-77.26721516888959, 34.57671637597487], [-77.26719986747301, 34.576728692586464], [-77.26714711641168, 34.576711024650336], [-77.26716727833734, 34.576638506309834], [-77.26709593848183, 34.57651754345824], [-77.26710773608104, 34.57647710099397], [-77.26711358816509, 34.5764727202425], [-77.26711520414342, 34.576470242802685], [-77.26712705110008, 34.576456028154055], [-77.26731133337096, 34.57637043594705], [-77.26736526083302, 34.576364028344784], [-77.26762885417699, 34.576277569670445], [-77.26763034770322, 34.576271181155825], [-77.26765147395948, 34.57625241381824], [-77.2678482943906, 34.57613640976547], [-77.26784357835469, 34.57605878587704], [-77.26790551792757, 34.57599452993263], [-77.26798167177415, 34.575926427013584], [-77.26818620553863, 34.57585005857915], [-77.26821733502, 34.57580741258282]], [[-77.22885628725855, 34.60879901619753], [-77.22884539095581, 34.60882047593872], [-77.22878643033025, 34.608897491734865], [-77.22860769112859, 34.60902624665446], [-77.22842852003865, 34.60910707881833], [-77.22849098598958, 34.60930304028657], [-77.2283566253251, 34.60947779376173], [-77.22832111310895, 34.60955027155036], [-77.22826836551411, 34.60962207356169], [-77.22818107883019, 34.60969962062093], [-77.22791383087636, 34.60988631444214], [-77.227881747125, 34.60991167925534], [-77.2278654092751, 34.60992105952748], [-77.22783602675662, 34.60994137978954], [-77.22741805129273, 34.61018054402217], [-77.22723969149389, 34.61028618918694], [-77.2271258326793, 34.61018109181401], [-77.22714957197698, 34.61008957857648], [-77.22723607422128, 34.61001864504236], [-77.22778595922613, 34.60990412021828], [-77.22777152928799, 34.609837538001706], [-77.22765806129702, 34.60965834789731], [-77.22765735134652, 34.609614896382546], [-77.22776295733964, 34.60950117137129], [-77.22782845538045, 34.60943611497838], [-77.22792490260048, 34.609316507886795], [-77.22821934237533, 34.609037296226894], [-77.22825294588361, 34.60899825383326], [-77.22827493374544, 34.60897043920555], [-77.22836288505107, 34.60890117698503], [-77.228765518295, 34.60880302129487], [-77.22880310948685, 34.60878285993907]], [[-77.36534824030856, 34.527111454776346], [-77.3654397782061, 34.52706810749693], [-77.3654526521008, 34.527064781651355], [-77.36545412500493, 34.52706131364095], [-77.36554663808667, 34.52701750444625], [-77.36557736532498, 34.52700128716202], [-77.36563110731666, 34.526974609258495], [-77.36564032012183, 34.52691628863087], [-77.36564498864963, 34.5269100123283], [-77.36564952353244, 34.52690932123648], [-77.36564911253886, 34.52691201904174], [-77.36565028676858, 34.526971846057236], [-77.3656455959852, 34.52703298942773], [-77.36564562331708, 34.52703450195893], [-77.36559736296775, 34.52710188381649], [-77.36555342431097, 34.527223462129655], [-77.36555052005902, 34.52723104551744], [-77.36555841625317, 34.5272404281002], [-77.36557609880114, 34.527349773369394], [-77.36564754577313, 34.52739359795837], [-77.36565738147289, 34.52741276585269], [-77.36568533830814, 34.52745644820669], [-77.36567206574878, 34.52749573020973], [-77.36565259782562, 34.52753461887337], [-77.36559185819299, 34.52759232891094], [-77.36553067214997, 34.52771704087051], [-77.36552029271846, 34.52771860041993], [-77.36550951589007, 34.527726604940646], [-77.36552009041614, 34.52773147628188], [-77.36552963432214, 34.527762512709195], [-77.36554578980376, 34.52784379198409], [-77.36556030458392, 34.52786225111571], [-77.36552747458452, 34.52785714041291], [-77.36547502496428, 34.52785398697887], [-77.36537151136771, 34.527843955816195], [-77.36533197546626, 34.527824014724146], [-77.3652451439839, 34.52783307373815], [-77.36522896387449, 34.5278894363014], [-77.36493284342986, 34.52811404865801], [-77.36488905685388, 34.52815652427758], [-77.36489244605953, 34.52818274264544], [-77.36489078980777, 34.52820787562747], [-77.36481195072861, 34.528367366565575], [-77.36476998807001, 34.52844521003067], [-77.36476368428546, 34.528545485324166], [-77.36477715401963, 34.52859879702911], [-77.36466813383512, 34.528704708893756], [-77.36462445608126, 34.52877285617804], [-77.364524617288, 34.52880220978776], [-77.36426397978228, 34.52884580867827], [-77.36412962552738, 34.52891064117554], [-77.36399664716407, 34.52888475384124], [-77.36396598814889, 34.528805858386235], [-77.36393372203831, 34.52868510130562], [-77.3640098706397, 34.528391970343165], [-77.36408860567548, 34.52829854368904], [-77.3641072493584, 34.528272814556175], [-77.36414552979241, 34.52821430251112], [-77.36433282374747, 34.52801853656085], [-77.36442313358634, 34.527929801115626], [-77.36454442265925, 34.527745919746], [-77.36454736969529, 34.527742803615354], [-77.3645482414404, 34.52774231707114], [-77.3645488289064, 34.5277419331824], [-77.36455343390837, 34.52773909803716], [-77.36467436863353, 34.52767951064823], [-77.36474637851354, 34.52768523735946], [-77.36482922752947, 34.52770219853626], [-77.36483469039369, 34.52776756784033], [-77.364939768541, 34.527810722083075], [-77.36507863051497, 34.52775204720453], [-77.36513673805618, 34.527657897007515], [-77.36513097195063, 34.52754327373454], [-77.36527878419274, 34.5273926070655], [-77.3652485559412, 34.52733800973532], [-77.36524472640454, 34.52727510077726], [-77.36519376977776, 34.52725434528218], [-77.36522276644095, 34.52720127928297], [-77.36531684423714, 34.527142297982735], [-77.3653321369448, 34.52713031891592]], [[-77.30743248166644, 34.55284628739092], [-77.3071957992644, 34.55263769379428], [-77.30744375013589, 34.55251975750439], [-77.30760343258632, 34.552432654899945], [-77.30776878009333, 34.5523552021253], [-77.30783951635047, 34.552386817520876], [-77.30791397773123, 34.55228979202724], [-77.30813022917187, 34.55219234777268], [-77.30823791851087, 34.552141648468925], [-77.30825901287992, 34.55213085091515], [-77.30840480179181, 34.552115662259084], [-77.30843446834294, 34.552131859519164], [-77.30850471254976, 34.552204989370274], [-77.3084491025136, 34.552323445724966], [-77.30845725848184, 34.552351635168705], [-77.30831158325549, 34.55242740645856], [-77.30823023526686, 34.55246860569397], [-77.30815813172987, 34.552499551283034], [-77.30792805685986, 34.55259077206287], [-77.30783372553715, 34.552633194168415], [-77.30743694744255, 34.55284846258555], [-77.30743160577002, 34.552851364208315]], [[-77.26689763805021, 34.57692322595501], [-77.26689181616062, 34.57692661683999], [-77.2668906278444, 34.57692772429033], [-77.26688414320095, 34.57693629939561], [-77.26687666029389, 34.57693108432481], [-77.2668823896456, 34.57692587556059], [-77.26688211467552, 34.57692015301914], [-77.2669003045993, 34.576904345628996]], [[-77.32881364318946, 34.54835240905705], [-77.32874217915221, 34.54839456610782], [-77.32850464495951, 34.54859768675201], [-77.32847953591013, 34.54868657508272], [-77.32847524489888, 34.54872431982926], [-77.32834091165125, 34.54876648610003], [-77.32815810821486, 34.54876990153692], [-77.32815729887538, 34.54876216373861], [-77.3279978559096, 34.54867052682695], [-77.32795194159557, 34.54860965948205], [-77.32790743185676, 34.54846851001358], [-77.32785622696065, 34.548446068130005], [-77.32769950386351, 34.54838445210781], [-77.32770550857958, 34.54830971679145], [-77.32768275263481, 34.54822618643813], [-77.32776754883915, 34.54809750803685], [-77.32777925423109, 34.548097204107805], [-77.32796394252284, 34.54809381400486], [-77.32826534063761, 34.54808545327358], [-77.32835604090634, 34.548116041323084], [-77.32837239696423, 34.54811685528287], [-77.32855281696037, 34.54809590395357], [-77.32856649218466, 34.548099168414], [-77.32858833280802, 34.54819485561883], [-77.32874525157854, 34.54826244813007], [-77.32877270921097, 34.54829672466808], [-77.32913800267373, 34.54825663660394], [-77.3291432778705, 34.548257773494186], [-77.32916341404834, 34.54825818498061], [-77.32916803849905, 34.548276537569954], [-77.32913755175534, 34.548276030549815]], [[-77.21658060601123, 34.61894896885023], [-77.21658060239868, 34.619153704282546], [-77.21631810155773, 34.61936624144878], [-77.21631533284231, 34.619368432415406], [-77.21631427781118, 34.61936956231888], [-77.21631093956454, 34.61937186567153], [-77.2160808575, 34.61949065629577], [-77.21600046715642, 34.619568414178204], [-77.21591090149258, 34.61951850723082], [-77.21595592706973, 34.6193794985715], [-77.21626479389204, 34.619364440013655], [-77.21629753745678, 34.61935466749178], [-77.21611759854729, 34.619117129276646], [-77.21630960325544, 34.619002071541416], [-77.21649964428615, 34.61891162643222], [-77.21651632311449, 34.618891772954576], [-77.21658510720188, 34.61883079346733], [-77.21699600564315, 34.61866101366795], [-77.21717098855382, 34.61849329196344], [-77.21718513734369, 34.618478950576936], [-77.21735747147085, 34.618325072597884], [-77.21743887632785, 34.61827876945924], [-77.21753435821896, 34.6181767324414], [-77.21754058935994, 34.61815922466606], [-77.21758174428287, 34.618159012260634], [-77.21755679337271, 34.61817364211507], [-77.21752186586653, 34.61828532456597], [-77.21752292225507, 34.618364683455894], [-77.21746242839951, 34.61841845750581], [-77.21718226073018, 34.618494182346645], [-77.21715264622686, 34.618686822301036], [-77.21708791308762, 34.61874278819157], [-77.2165972063386, 34.61891933319171]], [[-77.40421059133391, 34.57681475025624], [-77.40412108650442, 34.57670181509627], [-77.40407802633314, 34.57650575603614], [-77.40406432814547, 34.57614430751244], [-77.40407193027133, 34.57608205948168], [-77.40408985261215, 34.5760458290285], [-77.40412107102584, 34.57593697138805], [-77.40413758579905, 34.575878092694246], [-77.40431608098993, 34.5758366722959], [-77.40431806760262, 34.57583821958689], [-77.40432566384504, 34.575841334089525], [-77.40451506906837, 34.57595720117195], [-77.40460047143615, 34.57600577126697], [-77.40465489408422, 34.576271823782605], [-77.40490907351156, 34.576190428689735], [-77.40520531502483, 34.576343043855914], [-77.4049090855936, 34.57659691511238], [-77.40466857679301, 34.576585920970274], [-77.4045150850345, 34.57659680985469]], [[-77.35262443217127, 34.5549736366271], [-77.35293235481282, 34.55500766225768], [-77.35303009662768, 34.55504623799982], [-77.35332487832113, 34.55501279095291], [-77.35346363155773, 34.555045335633], [-77.35332264461522, 34.55511008727426], [-77.35301289492782, 34.55516264856134], [-77.35285982010718, 34.55517507282037], [-77.35265063791891, 34.55516234974244]], [[-77.36398977076979, 34.529614118819566], [-77.36395670125106, 34.52968973940234], [-77.36377646557298, 34.52977558996021], [-77.36388142063353, 34.52965310726185]], [[-77.31273367032989, 34.549325509750666], [-77.31298985314614, 34.54911293029334], [-77.3129973905127, 34.549097152333246], [-77.31302164612401, 34.549067852356], [-77.31327321380073, 34.54891757750963], [-77.31306194429176, 34.54910257804619], [-77.31303209570359, 34.549114055226475], [-77.3130187713182, 34.549353587554506], [-77.3130169592001, 34.54935512453118], [-77.31301486037752, 34.5493573071206], [-77.31283652189403, 34.5493797580613]], [[-77.30967623206482, 34.55170312039109], [-77.30947740388422, 34.551787341010325], [-77.30942377713659, 34.55180355919046], [-77.30940340858353, 34.55181868467868], [-77.30936496182801, 34.55183668252557], [-77.30922511363295, 34.55190338263909], [-77.30912579856448, 34.55187101772266], [-77.30922714674898, 34.551816821136285], [-77.30928346299652, 34.551760263348086], [-77.30933876479253, 34.551718039144596], [-77.30942681717458, 34.55167411432669], [-77.30958638762183, 34.55165936052084], [-77.30968270217772, 34.55154625681048], [-77.30977179813311, 34.55150122067964], [-77.30982407499631, 34.55147732503798], [-77.31001783861723, 34.55137261161205], [-77.31002290826896, 34.55137019488739], [-77.31002963447509, 34.55136985480431], [-77.310087563622, 34.55136572665825], [-77.31012120223761, 34.55136444124728], [-77.31014968324828, 34.551399735659416], [-77.31021729821552, 34.55145231457096], [-77.31024210128324, 34.551450505520364], [-77.31045307679676, 34.551435653139905], [-77.3102158128354, 34.5515155873571], [-77.31012288224842, 34.55154063589366], [-77.31001824444378, 34.55156884002676], [-77.30996288206387, 34.5515942902845], [-77.30982020516834, 34.55164213523358]], [[-77.22525165476007, 34.61182522421003], [-77.22514340507337, 34.611927159285045], [-77.2249438152464, 34.611924229180204], [-77.22489945420213, 34.61203310403371], [-77.22465900196535, 34.61220592670908], [-77.22459195416866, 34.61224451177547], [-77.22459184225274, 34.612268585136334], [-77.22453754410287, 34.61229071040491], [-77.22415036727399, 34.61244533395851], [-77.22407357541246, 34.61246499175807], [-77.22399832837394, 34.6125226865185], [-77.2238703821291, 34.6126129650939], [-77.22359045562308, 34.6126056070674], [-77.22376514521707, 34.6125193358711], [-77.22381229379931, 34.61241864605697], [-77.22386206885771, 34.6123754353709], [-77.22401568290358, 34.61241348501997], [-77.22402690438965, 34.61225867959061], [-77.2241086115625, 34.61220635730899], [-77.22412890536661, 34.61218546534697], [-77.22420161036158, 34.61209585848625], [-77.2242238512653, 34.61207748849382], [-77.22430728235574, 34.61201541402985], [-77.22437321777849, 34.611991564824024], [-77.22442201711213, 34.61192721092138], [-77.224509186829, 34.611866295384196], [-77.22473975092022, 34.61178481761369], [-77.2247691940382, 34.61176887065939], [-77.2248916243717, 34.611591716519825], [-77.22498488744668, 34.611568487208174], [-77.22520883896631, 34.611502517755966], [-77.22534561256553, 34.61152797238701], [-77.2253501527078, 34.61158004069388], [-77.22535166983398, 34.6115974383672], [-77.22534317082653, 34.61162203086166]], [[-77.30343670790941, 34.55452367176105], [-77.30347065898708, 34.55450100821662], [-77.3035156469577, 34.55451234306847], [-77.30346987563676, 34.554534263874494]], [[-77.39957526593737, 34.57947487712592], [-77.39939296726794, 34.57952826628187], [-77.39923023935108, 34.57950357607582], [-77.39919596034011, 34.57950548587909], [-77.3991386964298, 34.5794920167011], [-77.39907377981646, 34.579482459501335], [-77.398998954078, 34.57946816142516], [-77.39899865003675, 34.57946811362192], [-77.39899756344248, 34.579467942780425], [-77.39892063795646, 34.57945728922296], [-77.39890045078018, 34.57945518673684], [-77.39887778713998, 34.579460803872244], [-77.39881857835216, 34.57949376801565], [-77.3988054954448, 34.57949948135025], [-77.39880194507595, 34.5795011301145], [-77.39871545380439, 34.57952159259384], [-77.39870343996382, 34.57953049280005], [-77.39869128694725, 34.57952523013775], [-77.39865418787973, 34.57953353786003], [-77.3986458802245, 34.57952763809841], [-77.39861532374746, 34.57953428818824], [-77.39860493555284, 34.57954205400151], [-77.39856389108581, 34.57957474173367], [-77.39855248065601, 34.57958178421255], [-77.39850642843547, 34.57961343631306], [-77.39848406625352, 34.57962408047758], [-77.39845717555363, 34.57963274934876], [-77.3984359622637, 34.579632258538155], [-77.3984325496205, 34.57963106975721], [-77.39843083469218, 34.57963116891826], [-77.39841154970712, 34.579636011043576], [-77.39840792328543, 34.579638173525524], [-77.39838873703223, 34.57964125674156], [-77.39836522882565, 34.579658255488496], [-77.39835867011365, 34.579662893979], [-77.39835487349958, 34.57966681670662], [-77.39833480285725, 34.579697067694866], [-77.39830941524048, 34.57972319955658], [-77.39825534119797, 34.579729053414596], [-77.39821090807217, 34.57978588105662], [-77.3981012476975, 34.57979753259686], [-77.39801389704388, 34.57983657496244], [-77.39786778076096, 34.57989453862227], [-77.3978168833292, 34.579933310545], [-77.3976349536135, 34.57998297241973], [-77.39749350256565, 34.5800795037187], [-77.39742285602938, 34.58010033153838], [-77.39735868991417, 34.580091972344036], [-77.39725983463171, 34.58003709210118], [-77.39689076578611, 34.579814563046675], [-77.3968277569912, 34.579458137665725], [-77.39695214816386, 34.57923233691932], [-77.39724113413465, 34.57899475946219], [-77.39742293251035, 34.57877726833871], [-77.3974424594063, 34.57875806619495], [-77.39746360349739, 34.57873397538514], [-77.39761994605999, 34.578644986547204], [-77.39770242301462, 34.57857610291635], [-77.3977598986084, 34.57854042494616], [-77.39781696025075, 34.57848902925031], [-77.39785534615402, 34.57846516916897], [-77.39794884449479, 34.57838150063225], [-77.39817146232065, 34.57820727298527], [-77.39819586784637, 34.57818746091609], [-77.39821098649315, 34.57817566762601], [-77.39826843506646, 34.5781313788409], [-77.39831857976208, 34.57808969482843], [-77.39833283273055, 34.57807784666123], [-77.39840799861439, 34.57801657335234], [-77.39850265856307, 34.57804920477205], [-77.39850649938329, 34.57804620767598], [-77.39853059605475, 34.57802334758165], [-77.39855575278835, 34.57799483737284], [-77.39855824568721, 34.577994937572065], [-77.39855753428716, 34.577992353927755], [-77.3986050065189, 34.57793485569589], [-77.39860625789464, 34.57793360048378], [-77.39860767864431, 34.57793204709707], [-77.39870351167752, 34.5778629160784], [-77.39874254812543, 34.57784850784344], [-77.39880201501704, 34.577829758728555], [-77.39882440398148, 34.577818758281296], [-77.39887022811897, 34.57778802103397], [-77.39889213574662, 34.57777582625534], [-77.39890051928423, 34.5777721354252], [-77.39891135790135, 34.5777704070742], [-77.39897529666626, 34.577747294742714], [-77.39899902250116, 34.577737245050756], [-77.39906792759905, 34.5777276018446], [-77.39913206995564, 34.57771301512986], [-77.39919602682349, 34.577716476513345], [-77.39934265766585, 34.57766799251746], [-77.39939303225297, 34.57766109327546], [-77.39944409716699, 34.57765409940059], [-77.3997340026378, 34.577614393495324], [-77.39978704134545, 34.577580586781224], [-77.40010527465435, 34.577585318277535], [-77.40018104615781, 34.57763242585102], [-77.40055295246016, 34.57786364128648], [-77.40055664529604, 34.57788293774937], [-77.4005750462297, 34.57792653016016], [-77.40061437973986, 34.57789716140919], [-77.40088981298926, 34.57790041950895], [-77.4008647610442, 34.57813084057147], [-77.40079021551364, 34.57825397780854], [-77.40057503543976, 34.57844221252317], [-77.40045234705498, 34.578595105447135], [-77.4002564510663, 34.57875557510927], [-77.39999605594974, 34.579018423328066], [-77.3997891617599, 34.579247578501715], [-77.39978699089981, 34.57924988539917]], [[-77.36344827586439, 34.53026541146586], [-77.36369227281698, 34.530069415236525], [-77.36370345083287, 34.53006323402708], [-77.36371155997867, 34.530029065603145], [-77.36371880597069, 34.530060623937715], [-77.36371935025662, 34.530070970794235]], [[-77.24268881009296, 34.59746824145209], [-77.24255356770976, 34.597529909975144], [-77.24247666896409, 34.59745699399923], [-77.2425124339004, 34.59739619149836], [-77.24252849004162, 34.59732562959832], [-77.2428037963398, 34.5970356070224], [-77.24281150287666, 34.597331670396514], [-77.2427247159996, 34.59741292096763]], [[-77.40652938188894, 34.57636420384205], [-77.40648507859042, 34.57642173164031], [-77.40633255968373, 34.57639261601963], [-77.40629397803949, 34.576391826945205], [-77.40628807705076, 34.57638224847105], [-77.4061406925789, 34.5762080238321], [-77.40628805959847, 34.57600373507551], [-77.40632600116598, 34.576009871204334], [-77.40648505987372, 34.57603558332954], [-77.40659015795524, 34.57614314150395], [-77.40656345007599, 34.57623146099618]], [[-77.35546672544358, 34.55846333343226], [-77.35544008612783, 34.55828910917878], [-77.35544085454431, 34.55822135125425], [-77.35540244295133, 34.55804803547941], [-77.35534887782117, 34.55797618149639], [-77.35531540462179, 34.5578917246423], [-77.35545877004282, 34.557842009493896], [-77.35547209061413, 34.55784428463795], [-77.35548980186425, 34.557842271954605], [-77.35566901632302, 34.5579055036359], [-77.35572922501653, 34.55793608650035], [-77.3557705019494, 34.55799505416377], [-77.35587631924356, 34.55818078207355], [-77.35606267561523, 34.55836711094996], [-77.35606685704445, 34.5583724356175], [-77.35607012093453, 34.55837647559864], [-77.35610130977953, 34.55841365231571], [-77.35623357172473, 34.558565222379194], [-77.35624240907467, 34.55858238685303], [-77.35622438238013, 34.55874105304988], [-77.35623028080647, 34.558777971976816], [-77.35616087910326, 34.55885628619356], [-77.35611937607125, 34.55885534457044], [-77.35606238928511, 34.55887078952916], [-77.3560019039396, 34.55887603138979], [-77.35590589112873, 34.558824667960835], [-77.35577009747144, 34.55873476308601], [-77.35566859756986, 34.55863575155658]], [[-77.36277609578627, 34.53159889469832], [-77.36256186377253, 34.531701196323006], [-77.3624949918433, 34.53173541941479], [-77.36234982466468, 34.53173173801811], [-77.3621674488671, 34.53171772635545], [-77.36221863914687, 34.531628221209864], [-77.36227078777185, 34.53160137252353], [-77.36234633953342, 34.531487415021914], [-77.36244976071605, 34.53144009688675], [-77.36250505286098, 34.531295269279546], [-77.36257253528358, 34.53121000910316], [-77.36253110894894, 34.53098295001396], [-77.36263662676737, 34.53095595201437], [-77.36253300609297, 34.53095824786824], [-77.3625140146257, 34.530903210502174], [-77.3624908119311, 34.53074880382426], [-77.36247869820315, 34.53073387536062], [-77.36249299106458, 34.5307160352442], [-77.36251891771545, 34.530688710866926], [-77.36268391195712, 34.530560574294014], [-77.36330594617634, 34.530373152978676], [-77.36331077012, 34.53039094955932], [-77.36346284715728, 34.53073715157365], [-77.36340469879116, 34.530845315459416], [-77.36338439600434, 34.53090143720309], [-77.3632958206184, 34.53104522690167], [-77.36316865686044, 34.53129318709276], [-77.362895362997, 34.53140833314608]], [[-77.42926093540277, 34.68330284504452], [-77.42925789553907, 34.68330247225298], [-77.42925281407, 34.6833018490809], [-77.42899306046908, 34.683238811629735], [-77.42895623831389, 34.68323771879199], [-77.42889005099111, 34.68325736086795], [-77.42883949646097, 34.68325116091427], [-77.42879473853318, 34.68324222265997], [-77.42876642292052, 34.68324219922298], [-77.42873249286147, 34.683240022147956], [-77.4287157493547, 34.68323838935205], [-77.42870834372034, 34.6832116544753], [-77.4287246454894, 34.68320764380764], [-77.42875340865973, 34.683220921246374], [-77.42877782287988, 34.68320101320737], [-77.42880851140185, 34.68319462267746], [-77.42886694127492, 34.68321957720098], [-77.42893307131155, 34.68318542807921], [-77.42896321714137, 34.68319001887857], [-77.4289710777969, 34.68318643215376], [-77.4292576788647, 34.683297520768484], [-77.4292602263475, 34.683294416657134], [-77.42958461867826, 34.683133771912644], [-77.42961307821807, 34.68313072245066], [-77.42962841933969, 34.683129210487046], [-77.42968276970323, 34.68312239980517], [-77.42979453596767, 34.6831087475598], [-77.429873799788, 34.68318305909348], [-77.42992633285144, 34.683206901450724], [-77.42995372337458, 34.68326286416371], [-77.42989886328911, 34.68330184274302], [-77.42975878379502, 34.68336894176937], [-77.4296636148855, 34.68335358638134], [-77.42960234380507, 34.68321933250066], [-77.42927302760737, 34.68330432796168]], [[-77.22081983411377, 34.61548191643231], [-77.22081621036904, 34.61548455298309], [-77.22080623306233, 34.615493923645296], [-77.22061690097416, 34.615635988499776], [-77.22058760326074, 34.61569925999132], [-77.22044854277561, 34.61580117958076], [-77.22044003895563, 34.61580739640737], [-77.22027330827378, 34.6159101228309], [-77.22016187887294, 34.61609206513263], [-77.22009412175248, 34.6161571591271], [-77.21999486829222, 34.616262982877075], [-77.21985710350864, 34.616206046549436], [-77.21996064461598, 34.61612111394268], [-77.21998421674584, 34.61605937378422], [-77.22004495476341, 34.61589209014353], [-77.22010002079087, 34.615833640519874], [-77.22012193041687, 34.6157803280982], [-77.22027746258028, 34.61570520539594], [-77.22030569562423, 34.615687868013225], [-77.22034684914496, 34.61568024862863], [-77.22036503366492, 34.615648734527845], [-77.22050876132244, 34.61553977430614], [-77.2208001479324, 34.615480361948634], [-77.22080763367397, 34.61547692213214], [-77.22082149990536, 34.6154637895866], [-77.22083017630641, 34.615474774187476]], [[-77.3366664912736, 34.55011727962778], [-77.33662800441292, 34.550077610839345], [-77.33672188464374, 34.54996663623747], [-77.33678709579792, 34.54995727121843], [-77.33695187177119, 34.549916144185055], [-77.33701120789912, 34.549908414119635], [-77.33705028932863, 34.549904822418576], [-77.33708682712835, 34.549934427122565], [-77.3370712860718, 34.54998363590019], [-77.33707530798176, 34.55001447122589], [-77.33702130693226, 34.55006625752644], [-77.33699625436871, 34.55010019199935], [-77.33694469233933, 34.55022618871856]], [[-77.24485931249126, 34.59546301498846], [-77.24486249219207, 34.595460305960884], [-77.24486393819691, 34.59545887459631], [-77.24486861048169, 34.59545510519424], [-77.24487538685283, 34.59545699814068], [-77.24486860864452, 34.59546078789411], [-77.24486716343277, 34.595461743536525]], [[-77.29245539563428, 34.55971263476073], [-77.29257099011242, 34.55963216878323], [-77.29265954948968, 34.559563626134576], [-77.29275011752969, 34.55952164729764], [-77.2928651911699, 34.5595182865199], [-77.29278597754828, 34.55960133666019], [-77.29275818677968, 34.559611682060165], [-77.29274786058427, 34.55961695018148], [-77.29255716309034, 34.559762215825984], [-77.29251609259187, 34.5597820920944]], [[-77.3541577617579, 34.552938531527666], [-77.35411436452719, 34.55299309379597], [-77.35415610789174, 34.55301059951921], [-77.3543220107462, 34.55310325390112], [-77.3543921729602, 34.55310160391656], [-77.35440024039715, 34.55304406071072], [-77.35422436220061, 34.55297726048744]], [[-77.31412236624303, 34.54797105628781], [-77.31417066707357, 34.54792950065179], [-77.31422733040326, 34.54788075005192], [-77.31441896898555, 34.54781000142614], [-77.31430623441587, 34.54794465087187], [-77.31422420595644, 34.548014106649845], [-77.31405739584258, 34.548122773182484], [-77.31402668688008, 34.548229607039225], [-77.31402276712987, 34.5482330189524], [-77.31399475274229, 34.54823419303994], [-77.31390196941061, 34.54820090256533], [-77.31399010564985, 34.548090000318645]], [[-77.3522887749037, 34.554810316329466], [-77.35214948869165, 34.554902459962506], [-77.3520034790148, 34.55485753203941], [-77.35183028379004, 34.55458722608214], [-77.35238471725688, 34.5545690823204], [-77.35231120483047, 34.55472155924633]], [[-77.22604394525877, 34.61093050584727], [-77.2261010250876, 34.610869154499134], [-77.22625621018628, 34.610790607153355], [-77.22640735122775, 34.610817220408194], [-77.22653081106398, 34.610853177060456], [-77.22653282912381, 34.61086578395243], [-77.22649976089262, 34.61096633379407], [-77.22649957491335, 34.61098099928665], [-77.22645051437787, 34.61101170114002], [-77.22638769482865, 34.6110082542661], [-77.22624473284199, 34.61100170129068], [-77.22609819131729, 34.610978767437985], [-77.22604833655306, 34.61097317267989], [-77.22599299197631, 34.610972218788326], [-77.22596362535435, 34.610938699425915]], [[-77.22330446964244, 34.61305992243288], [-77.2232768920581, 34.61307120213501], [-77.22306735884871, 34.612984940561525], [-77.22312717925834, 34.6129380018174], [-77.22317311969826, 34.612902979387734], [-77.22331593216893, 34.61285082229246], [-77.22337546092706, 34.612830143133486], [-77.22349980867122, 34.61267431925661], [-77.2236146167879, 34.61287440185852]], [[-77.42770546930221, 34.68505997115108], [-77.4277084439312, 34.68506234954656], [-77.4277075666306, 34.685063400234654], [-77.42770550566838, 34.68506357580227], [-77.42762880859765, 34.68505706344775], [-77.42757978231013, 34.68504144626169], [-77.42751652064658, 34.685030851746006], [-77.42753802374244, 34.68497317172084], [-77.42760388399374, 34.68499439159842], [-77.42764252934356, 34.6850096468496]], [[-77.31543682708185, 34.54652936902036], [-77.3155844056259, 34.54638209154993], [-77.31572719410663, 34.54627171186264], [-77.31575703255317, 34.54621772867459], [-77.31575628897056, 34.546145127831075], [-77.31583967058991, 34.54609229679511], [-77.31589686347326, 34.54603739331683], [-77.31595229133762, 34.5459945712482], [-77.31604014221551, 34.54591428283078], [-77.3161518982603, 34.54591316567753], [-77.31623735953923, 34.54587526904309], [-77.31654653297223, 34.54590922002379], [-77.31639011956999, 34.54602918588054], [-77.31635527897892, 34.54605909575902], [-77.31623199414275, 34.5461045005341], [-77.31615808157137, 34.546164614035135], [-77.31608240908393, 34.546220693465166], [-77.31603129303676, 34.54629231795123], [-77.31597065027455, 34.546321766796495], [-77.3158318966004, 34.546424367021814], [-77.31576680373323, 34.5464709249787], [-77.31560664513252, 34.54653383634577], [-77.3155280946877, 34.54660310408755], [-77.31543226334642, 34.54672427275373], [-77.31534915675206, 34.546624100823735], [-77.31540556193787, 34.54656271670689]], [[-77.28152398419016, 34.564553368793646], [-77.28146600280176, 34.56458894424997], [-77.28144310026147, 34.5645836839907], [-77.28145270747113, 34.56457712142738]], [[-77.35406243997562, 34.55650853019207], [-77.35409417060416, 34.55648486304464], [-77.35414214294994, 34.5564795413941], [-77.35435598524863, 34.55635800592981], [-77.35448817481807, 34.55633417412745], [-77.35459959904566, 34.55634529810733], [-77.35468095185165, 34.55645368539624], [-77.35468288174067, 34.55645575619066], [-77.35468505922547, 34.55645853277936], [-77.35480885382802, 34.55651409274107], [-77.35488191329199, 34.556635862825885], [-77.35497929790137, 34.556835291469156], [-77.35506981624128, 34.55702502220079], [-77.35507392938973, 34.55703394548318], [-77.3550754686622, 34.55703713965909], [-77.35507863433305, 34.55704336124483], [-77.3551737968082, 34.557231845622496], [-77.35520429835985, 34.55730413120917], [-77.35527534779641, 34.557467495165085], [-77.35534689894791, 34.55755431002407], [-77.35538977537938, 34.557625307547], [-77.35545779570073, 34.55781236575091], [-77.35527515574309, 34.557799395316295], [-77.35518078620163, 34.55776593811535], [-77.3551760772455, 34.5577628738172], [-77.35507825352187, 34.557698630020724], [-77.35501962784845, 34.557678588491356], [-77.35493153920646, 34.55763715351733], [-77.35488134643673, 34.557607014354616], [-77.3547704918609, 34.557594967634614], [-77.35462975339986, 34.557581329078936], [-77.35453496687161, 34.55737489106323], [-77.35451228348838, 34.55732706538523], [-77.35450070823819, 34.557314601484485], [-77.35448760848192, 34.55729631075087], [-77.35437205949324, 34.55713497366193], [-77.35433474219002, 34.557092952220025], [-77.3542284494213, 34.556943369136576], [-77.35418949013909, 34.55684601360319], [-77.35409407626426, 34.556643821919565], [-77.35406191061671, 34.55657749906232], [-77.35404132487369, 34.55654575261706]], [[-77.35668722617312, 34.5593490206991], [-77.35669184053792, 34.559306533412844], [-77.35665302152805, 34.55932930125223], [-77.35661946960343, 34.55932261033581], [-77.35651600335522, 34.55930907507398], [-77.35646169532899, 34.55917519372217], [-77.35645872335984, 34.55916963878127], [-77.3564672350606, 34.55915647167112], [-77.35645615408885, 34.559157480548215], [-77.35643499344155, 34.55906691682932], [-77.3564562276313, 34.55902695517756], [-77.35651925271665, 34.55901656789437], [-77.3565836932852, 34.55901428133593], [-77.35665320478937, 34.55900264835691], [-77.35683930822398, 34.559103207845986], [-77.3568501100417, 34.55910678457802], [-77.35685380506764, 34.55910878116193], [-77.35685879373005, 34.55911204651256], [-77.35706846000183, 34.559270992071745], [-77.35724396124195, 34.55924419101332], [-77.35727725724614, 34.5592640811008], [-77.35735173694664, 34.55934941794429], [-77.35744081088505, 34.55945147588932], [-77.35744184679085, 34.55945266279487], [-77.35744080774334, 34.55945717420693], [-77.35742250674352, 34.55964811295398], [-77.35740266951366, 34.55967057893437], [-77.35738215565478, 34.55973657749586], [-77.35736995368387, 34.559811413509], [-77.35732238416854, 34.55980955658198], [-77.35724364133604, 34.55982197424618], [-77.35717178930948, 34.55983866517646], [-77.35710788367835, 34.55985930437674], [-77.35704664446871, 34.559878704347625], [-77.35697251947178, 34.55981242942782], [-77.35688671495518, 34.55974485508968], [-77.35686749928588, 34.55972850611342], [-77.35686453426517, 34.55955158540296], [-77.35687844785369, 34.5595337691852], [-77.35686940466098, 34.5595140313276], [-77.35684987821905, 34.55952182373241], [-77.3568227719725, 34.55951256511254], [-77.35671047288176, 34.55949593200771], [-77.35668109729532, 34.559380192063855]], [[-77.33094340544518, 34.54938930024562], [-77.331073966135, 34.54942402212244], [-77.3310997971463, 34.54943250217621], [-77.33113694832292, 34.54944339110982], [-77.33133228479083, 34.54949798293974], [-77.33143533927581, 34.54962879285678], [-77.33115170524994, 34.54963456244845], [-77.33107127557362, 34.549539860896225], [-77.33099223744149, 34.5495138534163], [-77.33067772294756, 34.549579942805096], [-77.33059865431893, 34.54957021391872], [-77.33061554359746, 34.549518342792624], [-77.33053012447188, 34.54943651020494], [-77.33051656952915, 34.549410162499754], [-77.33068402808001, 34.549308538225326], [-77.33084698765916, 34.549362665553], [-77.33083180869859, 34.54939387166038]], [[-77.2812670518607, 34.564741526759605], [-77.28126751508778, 34.56474099530771], [-77.28126849200844, 34.56473987449869], [-77.28127326460444, 34.56473919824264], [-77.281268895661, 34.56474222297841]], [[-77.32478988367218, 34.54713850450427], [-77.32459274674483, 34.54711437580166], [-77.32453092344389, 34.547012409758985], [-77.32466367206287, 34.5470607378151]], [[-77.33489419011126, 34.54982215753804], [-77.33459841684063, 34.549817945705385], [-77.33452247907177, 34.549739597616174], [-77.33444108830966, 34.549702816967795], [-77.33440322571698, 34.54958315621474], [-77.33460273060197, 34.54963188259677], [-77.33463332065402, 34.54965575840207], [-77.3346552846923, 34.549672019742324]], [[-77.21237800121428, 34.62212122959011], [-77.21237412349365, 34.622110681373705], [-77.21237771921301, 34.6220033653171], [-77.21233375401687, 34.62195806719759], [-77.21235294666624, 34.621927441423324], [-77.21243176070456, 34.62188979391587], [-77.2124658303162, 34.62186348737802], [-77.21255638085839, 34.62178721200398], [-77.21298109494884, 34.62171603277186], [-77.2127240150864, 34.62191288842893], [-77.21262701063709, 34.62200690384362], [-77.2126125635842, 34.62202192342226], [-77.21251393632619, 34.62207437015002], [-77.21243815645016, 34.62212598320546], [-77.21238182919231, 34.62213164251102]], [[-77.32685216731483, 34.547611116409385], [-77.32701311094938, 34.54769700464553], [-77.32705297404004, 34.54774358471822], [-77.3269640153719, 34.547734135193025], [-77.3267961611703, 34.54766142664696], [-77.32671644889888, 34.547630621462574], [-77.32679823345929, 34.547572406190405]], [[-77.3461188227252, 34.53404802076568], [-77.34613922240423, 34.534065538151154], [-77.34613757934106, 34.53407415366709], [-77.3461086872648, 34.53416728274378], [-77.34609024799806, 34.53419499545508], [-77.34604865104671, 34.53425751227456], [-77.34604626773924, 34.534261094187826], [-77.34604521190052, 34.53426268102216], [-77.34594920109174, 34.53431448590216], [-77.34589881689755, 34.53428374665893], [-77.34587614536487, 34.53427197804889], [-77.3458523747583, 34.53425766138516], [-77.34581148230595, 34.53423510867525], [-77.34578600534688, 34.534219511062496], [-77.34575554792076, 34.53420086426148], [-77.34571904304977, 34.534187205169296], [-77.34569292709185, 34.53416926740866], [-77.34569561342202, 34.53415250154872], [-77.34571993646577, 34.534148829815294], [-77.34573936224061, 34.53415367887548], [-77.34575650165745, 34.53415950080569], [-77.34575943530302, 34.534152519725865], [-77.34579541142783, 34.53415205628212], [-77.34580564504395, 34.534156238189944], [-77.34580817662128, 34.534157481365995], [-77.3458106351973, 34.53415872434374], [-77.34581783431395, 34.5341596111498], [-77.3458231995402, 34.53416027205203], [-77.34582425606759, 34.53416039859672], [-77.3458249580589, 34.534160488670786], [-77.345830066612, 34.53416111795508], [-77.34583282389244, 34.53416145760363], [-77.34583618276116, 34.534161871357256], [-77.34583710985135, 34.534161985558455], [-77.34583928092093, 34.534162252995976], [-77.34584139581023, 34.534162513513095], [-77.34584229891043, 34.53416262475913], [-77.34584454810263, 34.5341629018198], [-77.34584394397669, 34.53416158200567], [-77.3458450541231, 34.53415974531433], [-77.34584706963193, 34.53415730692756], [-77.34584709005753, 34.534156376945035], [-77.34584713345993, 34.53415440082152], [-77.3458471539152, 34.53415346948764], [-77.34584721768559, 34.5341505660039], [-77.3458472587395, 34.53414869681332], [-77.34584732248175, 34.53414579460767], [-77.34584738613673, 34.5341428963686], [-77.34584251147564, 34.53413883626307], [-77.3458425762225, 34.53413089298091], [-77.34584288976154, 34.53411613003864], [-77.34583016724831, 34.534110010037935], [-77.34583005067086, 34.53409374683886], [-77.34583060508325, 34.534065088344846], [-77.34580343371871, 34.534052651858204], [-77.34580259261845, 34.5340182828723], [-77.34586852783931, 34.53398208011074], [-77.3459585239219, 34.53391011478182], [-77.3460340945591, 34.533958255701], [-77.34607458100078, 34.53400114903249]], [[-77.32025071639674, 34.54611155429627], [-77.32055279162799, 34.54601447119995], [-77.3206653413067, 34.54605198687389], [-77.32055066212479, 34.546105653795415]], [[-77.32250307353571, 34.546561173850364], [-77.32247874302624, 34.54654134387241], [-77.32244125731442, 34.54653127001962], [-77.32236668882702, 34.54645540230524], [-77.32250511238846, 34.5464737845516], [-77.32265461220015, 34.546500614507345]], [[-77.36943298730084, 34.5201015776026], [-77.36950228416723, 34.52005131205617], [-77.36946662978073, 34.52003639022436], [-77.36950021098973, 34.51996925144647], [-77.36951566374313, 34.51992697028639], [-77.36953611326297, 34.51988173912727], [-77.36960377532056, 34.51991427226624], [-77.36961674222017, 34.51992273090316], [-77.3696330807422, 34.519932249086175], [-77.36966090096745, 34.5200099941547], [-77.36973869343151, 34.52001724233186], [-77.36978017174982, 34.52004038542809], [-77.36982661714002, 34.52005078333922], [-77.36983220178678, 34.520064973282814], [-77.36982611095759, 34.52007300820129], [-77.36975793384609, 34.520094661491896], [-77.36968860568723, 34.52014687435283], [-77.36962709443014, 34.52019506194628], [-77.36950167643744, 34.52021832089981], [-77.36942848375477, 34.52029927343252], [-77.36934427369917, 34.520249731531116], [-77.36939836896187, 34.52018870110275], [-77.36940858250286, 34.52017302058754]], [[-77.33760120585978, 34.550518863646104], [-77.3376285944802, 34.550527406729124], [-77.33767162734497, 34.55055314208323], [-77.33761674283471, 34.550536371641456]], [[-77.21764914689722, 34.617563189117526], [-77.2177331664725, 34.617594967138686], [-77.21761579620298, 34.617629010142316], [-77.21761066408429, 34.61759717373786], [-77.21762492290478, 34.61758641748439]], [[-77.43989477768122, 34.74690505169357], [-77.43988174194251, 34.74694203676844], [-77.43987994333042, 34.74696974778718], [-77.43986484059222, 34.74699023658845], [-77.43982352099616, 34.747030892714335], [-77.43977385432343, 34.74702855612609], [-77.43973434314051, 34.74700352996048], [-77.43973676603603, 34.74696798722136], [-77.43973369888896, 34.74691865916539], [-77.43975275111488, 34.74688424816801], [-77.43977941574833, 34.74685072935065], [-77.43982828721644, 34.746852735300706], [-77.43987311365825, 34.74685951753659]], [[-77.24503805350332, 34.59530426238245], [-77.24504752096104, 34.595293495469974], [-77.24516380933497, 34.59524837285926], [-77.24520074202844, 34.5952153851438], [-77.2451913236905, 34.59525054073721], [-77.24517695696031, 34.595262374622216], [-77.24505980537072, 34.59530442279392]], [[-77.34173669518572, 34.5380005248563], [-77.34174231791948, 34.53799974042968], [-77.34180000734771, 34.53793370761003], [-77.341815995567, 34.53791492928005], [-77.34182238733197, 34.537882246497986], [-77.34182493015146, 34.53786891764001], [-77.34181457935838, 34.537852140468246], [-77.34180629916177, 34.53783408338298], [-77.34176201769448, 34.53782655352708], [-77.34174637976368, 34.537823932723924], [-77.34173548694905, 34.53782732425158], [-77.34167483000746, 34.53784621006233], [-77.34164745119668, 34.53785802364663], [-77.34157231493967, 34.53789044385428], [-77.34154837700382, 34.5378984132707], [-77.3415211077704, 34.53789557696197], [-77.34136740275142, 34.53793473483824], [-77.34148634723657, 34.5379554861896], [-77.34152574614494, 34.53803436609586], [-77.34154512141731, 34.53803930966075], [-77.34163600135295, 34.53801850539601]], [[-77.39624204389666, 34.510341054445036], [-77.39619470055584, 34.51032548561125], [-77.3962434192201, 34.510279830415996], [-77.39633010599837, 34.510305939800645]], [[-77.3049113444184, 34.55385433118184], [-77.30475774701486, 34.55390753809927], [-77.30482597063273, 34.55381274551703], [-77.30495665331537, 34.55375718331938]], [[-77.32191879684022, 34.54636244210974], [-77.32191482243978, 34.54636209553088], [-77.32191885372318, 34.54636000473196], [-77.32192241712339, 34.54636100434413], [-77.32203623697815, 34.54639337685105], [-77.32208234231962, 34.54644115117594], [-77.32200646185208, 34.54641589362468]], [[-77.32133355212888, 34.54620528667793], [-77.32132772762066, 34.54620526627544], [-77.32113632924768, 34.546244636420944], [-77.32103704468294, 34.54624339696964], [-77.32113820742131, 34.546164191063866], [-77.32129657126762, 34.54618272235356], [-77.32133385676477, 34.54619223729486], [-77.32134015394702, 34.546195869239824], [-77.32135329131697, 34.54619796125041], [-77.32137355455176, 34.546220210805096]], [[-77.28191969793475, 34.56433528073725], [-77.28189067114765, 34.56434259962014], [-77.28178819414407, 34.564382619022005], [-77.28173180224961, 34.5643836180449], [-77.28176877034804, 34.564365346545095], [-77.28178981031839, 34.56433374156471], [-77.2818427295764, 34.5643150708901], [-77.28189616210419, 34.564314351716604], [-77.28191022377256, 34.56430391960006], [-77.28193403591243, 34.56430782025825]], [[-77.33438631362738, 34.55049903902626], [-77.33432757744518, 34.550453586432845], [-77.33438880547786, 34.55039156985785], [-77.33453951242957, 34.55042311476939], [-77.33455872496751, 34.55043616462396], [-77.33451310412529, 34.55050607202793], [-77.33444457392284, 34.55052250634999]], [[-77.3639765412068, 34.529141360603404], [-77.36396719506243, 34.529198117931585], [-77.3639255014593, 34.529301341814396], [-77.36392443046297, 34.529301899583075], [-77.36392391491889, 34.5293015703619], [-77.36380609604544, 34.5292703876407], [-77.36380951394501, 34.52924557059952], [-77.36390830735068, 34.5291814059347], [-77.36391477776083, 34.52917261113014]], [[-77.26568037519247, 34.577976266168974], [-77.2656743228826, 34.57798193759305], [-77.26561239647752, 34.578004342319744], [-77.2655983987788, 34.578020169164986], [-77.2655938158739, 34.57800288102603], [-77.26561755185207, 34.57798230219625], [-77.26565529105898, 34.57796501129727]], [[-77.33401818079791, 34.54944294789308], [-77.334123513154, 34.549503661170974], [-77.33401468395566, 34.54959372911619], [-77.33384795328023, 34.54954328001629]], [[-77.33071543558056, 34.54864713039473], [-77.33076733961329, 34.54868254978847], [-77.33069916573108, 34.54865693962995], [-77.33068519981846, 34.54865147675902], [-77.33069943327166, 34.54864542339664]], [[-77.21392520031982, 34.620711542630474], [-77.21396242459036, 34.620677229761206], [-77.21398023030684, 34.62071589068864], [-77.2139228929116, 34.62075523903533]], [[-77.40483488402417, 34.50775952250228], [-77.40479270371816, 34.50773743836241], [-77.40483721169745, 34.50765543272853], [-77.40489258425802, 34.50772301301435]], [[-77.34806691295368, 34.5531579691511], [-77.3479508726555, 34.553145650826025], [-77.34792168106421, 34.55311856363892], [-77.3479402009724, 34.55306686943544], [-77.34797917400591, 34.55307506667002], [-77.34806793986898, 34.553113362520065], [-77.34814784416851, 34.55311730858549]], [[-77.43848558314582, 34.75054617672716], [-77.43842616522547, 34.75056251822639], [-77.43848019768488, 34.750533719549885], [-77.43849184148195, 34.75052455209846], [-77.43849679294014, 34.75053951681336]], [[-77.2699461758835, 34.574423328810376], [-77.26993935830052, 34.57445605637451], [-77.26991384442115, 34.57448726046059], [-77.26990107598304, 34.57445304678942]], [[-77.40195407840723, 34.57676851894426], [-77.40203544180339, 34.5768005534486], [-77.40195407788576, 34.576865200873996], [-77.40178467884441, 34.576836742520186], [-77.40177274221358, 34.57682158439025], [-77.4018277559884, 34.57669440064868], [-77.40187359352066, 34.576698353896646]], [[-77.43479153748065, 34.75385714175061], [-77.43480333209148, 34.75385168327888], [-77.43482396654733, 34.753868470904585], [-77.4347855899323, 34.75391297635319]], [[-77.36932921298555, 34.52034985332044], [-77.36929301258311, 34.520326297710454], [-77.36933102777958, 34.52027019186404], [-77.36942009386402, 34.52030798394121]], [[-77.21186197806094, 34.62266966059154], [-77.2116480694603, 34.62274724250936], [-77.21162180049375, 34.62275645093407], [-77.21148967276244, 34.62273282905018], [-77.21154237377868, 34.62268577730897], [-77.21156017432328, 34.622645809507226], [-77.21160806347103, 34.62261812031278], [-77.21165651469828, 34.6226229412342], [-77.21171258409103, 34.62261994414676]], [[-77.35998451054748, 34.548077787946184], [-77.35998663039933, 34.548079081049636], [-77.35999536277303, 34.548085982899806], [-77.36000229842914, 34.548085082531955], [-77.3600053412279, 34.54807843135315], [-77.35999288150018, 34.548076582552284], [-77.3599867395045, 34.54807431267107]], [[-77.33953074756586, 34.55087788452778], [-77.33952520644584, 34.55088435397927], [-77.33952471845728, 34.550888037161265], [-77.33953052889308, 34.55088734071128], [-77.33953745043858, 34.55088259303727]], [[-77.22196192619249, 34.623585233007276], [-77.22194247571952, 34.625034320814166], [-77.22215029880888, 34.62563436181104], [-77.22233155213, 34.62580224087459], [-77.22328899852991, 34.62623215230009], [-77.22368480761666, 34.62646116248886], [-77.2248631434576, 34.62569967184567], [-77.22541359757977, 34.62549206366017], [-77.2261398405789, 34.62487703855611], [-77.22613877243735, 34.624857617255444], [-77.22620694716073, 34.624812882126186], [-77.22686591592594, 34.6241539764747], [-77.22703434146813, 34.62398555936268], [-77.22731841567301, 34.62370148951678], [-77.22902039212966, 34.6208106039801], [-77.22944050875458, 34.62040451131], [-77.23109209320461, 34.619350985114075], [-77.23088425836569, 34.61720885545558], [-77.2329911315427, 34.61808037747991], [-77.23452670444884, 34.61703481222441], [-77.23462094215145, 34.61656135393763], [-77.23454699361031, 34.616093711448244], [-77.234202822709, 34.61568790446457], [-77.23347193307532, 34.61552173251847], [-77.23157967087865, 34.61519764211817], [-77.23067237014872, 34.61599750571398], [-77.23014691999984, 34.616552979627336], [-77.22992120536104, 34.61667159522712], [-77.22963608871353, 34.616956711492435], [-77.22730667647407, 34.61928618930936], [-77.22673476490147, 34.62019102582832], [-77.2249408523942, 34.62165185003174], [-77.22481955626307, 34.622333652080975], [-77.22408677534813, 34.62233782289973]], [[-77.34542052252297, 34.56728051522089], [-77.34525198222394, 34.56715053408684], [-77.34438296561495, 34.5666958732579], [-77.34384495982452, 34.566842661512105], [-77.34330882133769, 34.5668522880701], [-77.34226903640217, 34.56692132403934], [-77.34170988937488, 34.56656465507431], [-77.34148133848215, 34.56660055011959], [-77.34105458904189, 34.566445164289995], [-77.3406931614943, 34.56692939177922], [-77.34000030451526, 34.5662076899314], [-77.33939593237983, 34.56599510187321], [-77.33911809939738, 34.56587415581489], [-77.3388896087622, 34.5657646429857], [-77.33861906937412, 34.565868543985765], [-77.33833014351057, 34.56591309296144], [-77.33827144302899, 34.56603175775393], [-77.33829868744552, 34.566418907634436], [-77.33830283442923, 34.56645178606873], [-77.33828949793391, 34.56649701559875], [-77.33829867766411, 34.56726869294553], [-77.33830496733854, 34.567300563631775], [-77.337917183483, 34.56776194721496], [-77.3378617422596, 34.56778883601726], [-77.33787032550792, 34.56785693270165], [-77.33820436415651, 34.56816411316012], [-77.33832832036532, 34.56826551992164], [-77.33885367297171, 34.56835364321476], [-77.33890274595186, 34.56891277664939], [-77.33911561851092, 34.56911589771378], [-77.33956239758007, 34.569185507097], [-77.33962491475621, 34.56965801693236], [-77.33990298918162, 34.5698916448736], [-77.34044437667684, 34.56980594627809], [-77.34069072187793, 34.570200844467536], [-77.34089318923655, 34.5703247212024], [-77.34136408235241, 34.57038035327563], [-77.34177414548274, 34.57051665306503], [-77.34226638213354, 34.57057382995434], [-77.34266442122444, 34.57049022707362], [-77.34323600010708, 34.57083686936413], [-77.34365130492812, 34.5709826548578], [-77.34384203657288, 34.57097344773622], [-77.34424730960163, 34.571128236082004], [-77.34486718877534, 34.57119559523276], [-77.34503901185198, 34.57142662594408], [-77.3454176150909, 34.571503738907424], [-77.34571474917242, 34.57164971232326], [-77.34588291692259, 34.57165282577803], [-77.34620560741467, 34.57147973234978], [-77.34638119434325, 34.57142272058399], [-77.34693199150757, 34.571220876171054], [-77.34699378611185, 34.571175589617084], [-77.34705746290763, 34.57113627108223], [-77.34699406948849, 34.570751736543826], [-77.34682786946208, 34.570499479751824], [-77.34678061331532, 34.57032700407997], [-77.34678709121745, 34.570102565572796], [-77.34616775555234, 34.5679112773687]], [[-77.42918892009848, 34.731158315155476], [-77.42912410667216, 34.730672320521734], [-77.42884642104822, 34.730396078667574], [-77.42878791796979, 34.730328722781024], [-77.42878665155965, 34.72992031944309], [-77.42864785125371, 34.72976761346099], [-77.42846849216882, 34.72960665476524], [-77.42838972604612, 34.72948944701733], [-77.42811865680184, 34.72930620308179], [-77.42774962370748, 34.72889458866049], [-77.42758897216227, 34.7286343921619], [-77.42745428202409, 34.72829134670968], [-77.427350941085, 34.72784092050218], [-77.42717879989783, 34.72757693317711], [-77.42706983005735, 34.72740468927994], [-77.42661609424323, 34.7272546941247], [-77.42649866793047, 34.727163009908985], [-77.42600663478379, 34.72716718909376], [-77.42562090318266, 34.72746005817946], [-77.4255927231386, 34.727681577956986], [-77.42524751347617, 34.72801996115431], [-77.42522277923146, 34.72830522559394], [-77.42517505528494, 34.72855370209413], [-77.42531147565188, 34.728691650413], [-77.42537709665004, 34.72882252167552], [-77.42546052071248, 34.729075859266516], [-77.42559014569869, 34.72925787175055], [-77.42572288181788, 34.72941280137147], [-77.42580001665475, 34.72957627966989], [-77.42590992274978, 34.72978116209845], [-77.42593435451995, 34.729937260512756], [-77.42597698011112, 34.730072323587244], [-77.42601558810648, 34.730183466590304], [-77.42621309067646, 34.73029739379395], [-77.42623072634373, 34.73030315761047], [-77.42646104904945, 34.73032863342219], [-77.426630732045, 34.73037325527475], [-77.42682554483596, 34.730463195692366], [-77.42698846023772, 34.73067041810762], [-77.42714776702962, 34.73092046914557], [-77.42719324512488, 34.73103137823652], [-77.42727586369544, 34.73112238142534], [-77.42745879801954, 34.73136699053766], [-77.42772435254318, 34.73164499085489], [-77.42775899262693, 34.73166825466819], [-77.42783651856783, 34.731720272981555], [-77.42816381645252, 34.73196567062401], [-77.42808525362216, 34.732234673075496], [-77.42810188985136, 34.732372087868775], [-77.42806458961142, 34.732453445782554], [-77.42795724990162, 34.73260106362865], [-77.42792322641843, 34.732717766218634], [-77.42792463869672, 34.73273501588259], [-77.42801716966147, 34.73290153738424], [-77.42801891563158, 34.73291888207022], [-77.42803149626936, 34.732941720194276], [-77.42832071178151, 34.73336720942369], [-77.42848692059856, 34.733583346800714], [-77.42863868565365, 34.733553125041006], [-77.42855690292049, 34.73364924229281], [-77.4289396594593, 34.73423427288191], [-77.4289753683125, 34.7343054551954], [-77.42899603355292, 34.734361780122995], [-77.4293777010511, 34.7349359935362], [-77.42996417244089, 34.73470014240153], [-77.4300583643964, 34.73471060009992], [-77.43010862928746, 34.73462595014097], [-77.43048428665107, 34.7343228626203], [-77.43035010938331, 34.73417838129755], [-77.43029545593208, 34.733980538598594], [-77.43029544605307, 34.733977989824986], [-77.43029486128552, 34.733977133540996], [-77.43021738109027, 34.733787360026454], [-77.43005311885216, 34.733710221713906], [-77.42985652739824, 34.73363304382174], [-77.42975883845881, 34.733619351549486], [-77.42943747583709, 34.733677479534215], [-77.42942737340667, 34.7336796919585], [-77.42938867433641, 34.73368666332605], [-77.42938901819683, 34.733617026318775], [-77.42932074027647, 34.73335715139544], [-77.42936576497951, 34.73324983279728], [-77.42949294316053, 34.7330390146573], [-77.42971106121622, 34.732934513014165], [-77.42968593051167, 34.73260651682538], [-77.42995082525138, 34.732113000644325], [-77.42974711451325, 34.731828999585176]], [[-77.24960249571282, 34.60859165121733], [-77.24971630945123, 34.6087080815593], [-77.2503051831575, 34.60884374815091], [-77.25035177079792, 34.60877734892358], [-77.25058788639684, 34.608437833017526], [-77.25062307491864, 34.608368666537544], [-77.25082529868092, 34.60794926155328], [-77.25080187217422, 34.60788812434947], [-77.25028734789062, 34.60775953958327], [-77.25004050219343, 34.60772633717584], [-77.24981984399429, 34.607754822284356], [-77.24971511579216, 34.607861855298374], [-77.2496660350678, 34.60799210616272], [-77.24936033901383, 34.608305266830726]], [[-77.4270039152053, 34.684187904089725], [-77.42675062741918, 34.68421655181778], [-77.42667694747757, 34.68431319504684], [-77.42665337566783, 34.68434483425106], [-77.42660692493975, 34.68440610598245], [-77.42655054601201, 34.68448047381513], [-77.42649152647608, 34.68455832444521], [-77.42648638506266, 34.68456596398814], [-77.42648560499471, 34.684578787145874], [-77.42647861086586, 34.684682844275066], [-77.42647914133242, 34.684703199300635], [-77.42649605952195, 34.68476533653028], [-77.42651514357591, 34.68485556064176], [-77.42650544015429, 34.68489483639665], [-77.4265424822503, 34.68493583848503], [-77.42661068166049, 34.684952746575526], [-77.42683105109376, 34.6850458437114], [-77.42702096021871, 34.68512607193017], [-77.42712022460785, 34.685153760939045], [-77.42720274816082, 34.685172886217835], [-77.4274180828932, 34.68523166765106], [-77.4276374239581, 34.685248090912374], [-77.42771123164587, 34.68525636275744], [-77.42773181522614, 34.685254717113125], [-77.42779426127834, 34.685249724526436], [-77.42792928292432, 34.68523892947876], [-77.42805980494839, 34.685228494006104], [-77.42826267729966, 34.68541007597216], [-77.42834231186015, 34.68535945489856], [-77.42862967235551, 34.68534745127345], [-77.42869704438591, 34.685372369262], [-77.42872373534584, 34.68530819413332], [-77.42857523258485, 34.685173214834236], [-77.42844397747757, 34.68500810446956], [-77.42843919581058, 34.68498056468816], [-77.4283835322611, 34.68494997202203], [-77.42797601259166, 34.68472749141355], [-77.4278902853843, 34.68470706622012], [-77.42780339983359, 34.68465917421409], [-77.42761169436164, 34.68456258152309], [-77.42742863150457, 34.68450955669737], [-77.42733211030581, 34.68442153077014], [-77.42711062237983, 34.68419589532566], [-77.4270848155955, 34.684168898789565], [-77.42696752138501, 34.68403242752625], [-77.42696487661502, 34.68402976914282], [-77.42696156575371, 34.68403065915032], [-77.4269614872496, 34.68403329562087], [-77.42695783442957, 34.68403647025281]], [[-77.28271293038912, 34.584389984149674], [-77.28367891490564, 34.58406796010239], [-77.2838419025602, 34.583900277438545], [-77.28404752720427, 34.58343282722774], [-77.28369161944138, 34.58314909412432], [-77.28347120612179, 34.58289017880671], [-77.28313993720353, 34.58271308776416], [-77.2829348644196, 34.58256433947022], [-77.28282875248189, 34.58275567108923], [-77.2827319139937, 34.583182118096744]], [[-77.33236223675776, 34.52821975205358], [-77.3323515061739, 34.52822157653883], [-77.33233893884018, 34.528224235524085], [-77.33203250290367, 34.52830759635145], [-77.33202561027346, 34.52838389625142], [-77.33195436299644, 34.528420590899835], [-77.33188111900579, 34.5284822913918], [-77.3318543191503, 34.52850296881486], [-77.33183289821153, 34.528520912949894], [-77.33182880554503, 34.528534601678885], [-77.33180405461994, 34.5285545996443], [-77.33178302664611, 34.52855873062756], [-77.33175454080185, 34.52857390785377], [-77.33167482789757, 34.52861794497399], [-77.33166484990502, 34.528625389366326], [-77.33162454089873, 34.528644036072606], [-77.33157949094635, 34.52858382200191], [-77.33157263892598, 34.52857143395382], [-77.33157529735495, 34.528560630022284], [-77.33156017837173, 34.528492160656484], [-77.3315496726684, 34.52845232822106], [-77.33156126228056, 34.528445500534026], [-77.33167399815326, 34.528381429559175], [-77.33176418848987, 34.528299076597534], [-77.33196290409222, 34.5280528399225], [-77.33217083161574, 34.52812654383364], [-77.33238514206627, 34.52796497566854], [-77.33201267096604, 34.52798842614177], [-77.33222930446289, 34.527658190502706], [-77.33269828748058, 34.5274303167026], [-77.3327633901603, 34.527387532785255], [-77.33282485603908, 34.527373976521346], [-77.33314424609264, 34.52736618994278], [-77.33307372320434, 34.52766833941001], [-77.3330257369542, 34.52787286343546], [-77.33278402456347, 34.52792832084773], [-77.3327508971499, 34.52792565571174]], [[-77.36983810743268, 34.588567539204554], [-77.3701203423206, 34.58873995056908], [-77.37023205230578, 34.588883029013594], [-77.37041004467996, 34.58876953102346], [-77.3706263552935, 34.588245288151654], [-77.37066075230761, 34.58811714211597], [-77.37083518159142, 34.58746757520053], [-77.37141480209291, 34.587358948742384], [-77.37150273437591, 34.58724143596095], [-77.37217587880686, 34.5870790168598], [-77.37220301187384, 34.58709369733383], [-77.37229824541558, 34.58713477149597], [-77.37231225926817, 34.5870301318508], [-77.37257276340725, 34.58659441739961], [-77.37220356065784, 34.585549376487386], [-77.37170099036291, 34.58657710118121], [-77.37141514459215, 34.58641885886274], [-77.37132743496832, 34.58641737559034], [-77.37062688557864, 34.58682534702275], [-77.3701627214863, 34.58683966943558], [-77.3694821094528, 34.58697288061184], [-77.36905062610798, 34.58691802437843], [-77.36872880647194, 34.58719967216224], [-77.36826235568437, 34.587310130615464], [-77.36805654132635, 34.5874214068474], [-77.36752076528239, 34.5877202617444], [-77.36750033575974, 34.58775151579909], [-77.36747404516392, 34.58778116295247], [-77.3671853512366, 34.58830687705433], [-77.36726024816538, 34.58860689235793], [-77.36728781747874, 34.588803107046466], [-77.3674736304064, 34.58879132656381], [-77.36794538579439, 34.588849052842505], [-77.36826167040593, 34.58901798423866], [-77.36839797175514, 34.58914525740505], [-77.36885159553691, 34.58901328357343], [-77.36904991415855, 34.58873406946824], [-77.36948969606199, 34.588661142895454]], [[-77.389332523823, 34.5121129192003], [-77.38890849424656, 34.511989101427815], [-77.38887424031854, 34.5119772053745], [-77.38884732830343, 34.51197376920722], [-77.38821833347096, 34.511991191425565], [-77.38787812955337, 34.51202345585561], [-77.38733627951872, 34.51221593955435], [-77.38728169687066, 34.51222997281445], [-77.38727163547871, 34.51223841314304], [-77.38700728012618, 34.512508237363264], [-77.38700680863391, 34.512592908475035], [-77.38696556108883, 34.51275908878149], [-77.38701091499013, 34.51290580637019], [-77.38725344951362, 34.51304416554717], [-77.38735945976718, 34.51312465501193], [-77.38760322253538, 34.51315675746859], [-77.38780072826191, 34.51327326545069], [-77.38803409516993, 34.51323141489316], [-77.38818312253404, 34.51316513453625], [-77.38872463566726, 34.513056277486996], [-77.38882347338301, 34.51303157070157], [-77.38889350184711, 34.51301404037685], [-77.38912439334655, 34.51293728262384], [-77.38951273222139, 34.51281860532068], [-77.38962010794158, 34.51250963856775], [-77.38966996931732, 34.51239843965188], [-77.38967279795175, 34.51236848747686], [-77.38969185371639, 34.512323592807725], [-77.3896244052055, 34.51231900515627]], [[-77.37583896256763, 34.58090846299778], [-77.37535743806427, 34.58090177368255], [-77.37516144326449, 34.58131388931521], [-77.37516474293393, 34.58152445433832], [-77.37519902084259, 34.58168993283023], [-77.37528989687638, 34.58235554436536], [-77.3753569416393, 34.58244859902021], [-77.37608475626601, 34.582241015205454], [-77.37612160450018, 34.582210407563224], [-77.37576693098566, 34.581437685609416]], [[-77.35051026802259, 34.55751944904907], [-77.35039598811834, 34.556481005935765], [-77.35039024790964, 34.556222120327234], [-77.35049853773941, 34.55599615821703], [-77.35055800857666, 34.55545844359541], [-77.35101049372726, 34.5556088227437], [-77.3511584256077, 34.55562192982394], [-77.35151016389702, 34.55571350224028], [-77.35173854197575, 34.555699170073154], [-77.35191957015115, 34.555757210464535], [-77.35195440566223, 34.55586011760553], [-77.35240060895057, 34.55585824674415], [-77.35251960507509, 34.555883191656875], [-77.35310768780701, 34.555831032672884], [-77.35321755066217, 34.555911286648595], [-77.3533065982952, 34.556055745687495], [-77.35338249425737, 34.556558455010354], [-77.35333176515017, 34.55664788201829], [-77.353377060421, 34.5567177344319], [-77.35335995937002, 34.55743451804054], [-77.35363031773953, 34.55745401160026], [-77.35362545666833, 34.557799494230316], [-77.35330544965541, 34.55796176162163], [-77.3527906007252, 34.55812963568829], [-77.35300132380826, 34.55754454056479], [-77.35210581462434, 34.55726858979564], [-77.3517301437274, 34.557341490808916], [-77.35132336370955, 34.557347625670275]], [[-77.36915031370908, 34.52128912819825], [-77.36921740600864, 34.521194088332685], [-77.36917121412404, 34.521104953513714], [-77.36918060212919, 34.52107697863865], [-77.36918099703132, 34.52105570229367], [-77.36916698787573, 34.520956526976285], [-77.36918603728894, 34.52085233374789], [-77.3691828447743, 34.52080824461927], [-77.36938987560413, 34.52069799738977], [-77.36941982484016, 34.52067938169685], [-77.36942581922479, 34.52067812111249], [-77.3694363724888, 34.52067287885562], [-77.36970542964866, 34.52056582464886], [-77.36981809950944, 34.52042476597644], [-77.36988013337864, 34.52036409975555], [-77.36987945938952, 34.52032730493201], [-77.36998177723913, 34.520203584719674], [-77.37002072378107, 34.52014430084454], [-77.370061062894, 34.52009319756168], [-77.37010149521649, 34.52001348428657], [-77.37009453815787, 34.51996595946614], [-77.37011161648388, 34.51991012516865], [-77.37005252818, 34.5198495999806], [-77.36994312407194, 34.51979630440772], [-77.3698338179621, 34.51973461856046], [-77.36976088192436, 34.5196928945896], [-77.3696720269854, 34.519659608791436], [-77.36956046235939, 34.519603248108524], [-77.36949058927769, 34.519563342896184], [-77.36944570278057, 34.519543397378264], [-77.36928481691112, 34.51957055978751], [-77.36922091217718, 34.51958498439522], [-77.3690488851172, 34.51973419009178], [-77.36903833593466, 34.5197444969151], [-77.36903727722469, 34.519751083665454], [-77.36903617037852, 34.51975882457853], [-77.36902760308769, 34.51987489135408], [-77.36904481931919, 34.51991263245002], [-77.3690694667213, 34.519975010154745], [-77.36908653446639, 34.519988812349446], [-77.36909578799482, 34.52002081103538], [-77.36913509044014, 34.52010422859891], [-77.36911962535434, 34.52015658916892], [-77.36911777808925, 34.52016793028946], [-77.36907464887138, 34.52021248264682], [-77.3690492105093, 34.520239018248276], [-77.36904439915635, 34.52024416163875], [-77.36903707945129, 34.52025232540838], [-77.3689882849899, 34.52027787312862], [-77.36883879363927, 34.520342238988306], [-77.36877752026592, 34.5203626518057], [-77.36863962126016, 34.520471035368594], [-77.36856772448523, 34.52050891936439], [-77.3685455420626, 34.52061309384543], [-77.36854955466353, 34.520800675549474], [-77.36851958641736, 34.520982210221725], [-77.36854844570969, 34.52109368568786], [-77.36858124233258, 34.52128576326544], [-77.36862057321004, 34.521306862756994], [-77.36886169639621, 34.52133930240173], [-77.36901076973534, 34.52140703202112]], [[-77.3842832389464, 34.51424794259983], [-77.384857154552, 34.514042574808826], [-77.3848764154703, 34.51403633066368], [-77.38488034727463, 34.514036770184056], [-77.38492387577388, 34.51403295020608], [-77.38559979088662, 34.51397468753946], [-77.38566300346201, 34.513960749361814], [-77.3857139073904, 34.513950600022895], [-77.38595979175258, 34.51388351426173], [-77.38638333824262, 34.51377959391066], [-77.38645607112099, 34.51359811386334], [-77.38657872196148, 34.51337797994367], [-77.38659740385015, 34.51330186677312], [-77.38664484344375, 34.51318309781457], [-77.38646935258642, 34.513009903334805], [-77.38640325304607, 34.51288323341143], [-77.38638017900183, 34.51284353966775], [-77.38608452737576, 34.51267293950913], [-77.38605252395115, 34.51266603918051], [-77.38569154404372, 34.512697267444395], [-77.38541009212918, 34.51280947286812], [-77.38529515677642, 34.512872239374175], [-77.38499949885743, 34.513042713512334], [-77.38493959892446, 34.513077251364166], [-77.38489741776715, 34.51310695058709], [-77.38436967633537, 34.51329665737697], [-77.38410651171961, 34.513373836281545], [-77.38374255335772, 34.513450012941654], [-77.383689499266, 34.513462425807454], [-77.38331758602527, 34.513552921667], [-77.3830822070205, 34.51366364885669], [-77.38269595702566, 34.51386464306849], [-77.38258832484931, 34.513920046775574], [-77.38252368848275, 34.513951577469186], [-77.38233155221506, 34.51403587869139], [-77.38203921793087, 34.51414957616959], [-77.38180813841659, 34.51443231109674], [-77.3817574707368, 34.514489660893574], [-77.38177015758916, 34.51451535099034], [-77.38172591171131, 34.51452126283024], [-77.38138517257592, 34.51482472757833], [-77.38132581683098, 34.51485921217443], [-77.38101215458823, 34.51503517598999], [-77.38092835877097, 34.515080575259354], [-77.3808841201566, 34.51510527598158], [-77.3806498334178, 34.51530958746305], [-77.38054370672428, 34.515399198814016], [-77.38055861459425, 34.51541595071485], [-77.38052769522099, 34.515443368100364], [-77.38045872153032, 34.51553386990765], [-77.38052547096241, 34.51554157157419], [-77.38065896939027, 34.51554408810697], [-77.38079122737123, 34.51552912058303], [-77.38091840530495, 34.51552012229513], [-77.38099841628431, 34.51552842174486], [-77.38131068968264, 34.51552736798763], [-77.3813198051529, 34.51552643145417], [-77.38166132262377, 34.515455753497406], [-77.38170521039841, 34.51543581387832], [-77.3819687314922, 34.515193685279186], [-77.38201187490012, 34.5151296233436], [-77.38216785016454, 34.51492013585181], [-77.3822637831857, 34.514755503119474], [-77.38251076780213, 34.514522626338994], [-77.38281502464557, 34.5145270086875], [-77.38329453889108, 34.5145719456326], [-77.38372930552575, 34.51442574915053], [-77.38408395362333, 34.51437165081966]], [[-77.37063212669, 34.57298711452821], [-77.37076228564965, 34.572958642957374], [-77.37119215595419, 34.57275647005876], [-77.37124451439882, 34.572559536167226], [-77.37156697288906, 34.57254438797123], [-77.37158385463965, 34.572700040923], [-77.37195917847818, 34.572914219215996], [-77.37202449917763, 34.573287964729744], [-77.37203779725095, 34.57348376238191], [-77.37198307922137, 34.573733815640516], [-77.37193333819012, 34.57405228632771], [-77.37158339187019, 34.574221896196974], [-77.37141961144927, 34.57431281886507], [-77.37136277011703, 34.574368900694196], [-77.37075256228954, 34.574387677487316], [-77.37063159638576, 34.57437104040959], [-77.37029832980936, 34.5741589091024], [-77.37026298932331, 34.574136738422936], [-77.36990286811616, 34.5737913167718], [-77.36989755965901, 34.57300052727463]], [[-77.4297072112259, 34.682856889288416], [-77.42962418219685, 34.682868075096074], [-77.42946219726488, 34.682884039725636], [-77.42937630139262, 34.68289324353561], [-77.42920076023054, 34.682999517911156], [-77.42912893761014, 34.68308703387426], [-77.42901285664813, 34.68304204006678], [-77.42890328726257, 34.68309203529082], [-77.4288409417502, 34.683082540918306], [-77.42873689171138, 34.683116813560815], [-77.42869764089329, 34.68312974222715], [-77.42866386913961, 34.68314086613748], [-77.42863399130067, 34.683150707439935], [-77.42860816977363, 34.68317042603881], [-77.4285669623275, 34.68319714747548], [-77.42856920589733, 34.68329368831348], [-77.42856331912081, 34.68333564088422], [-77.4285729560992, 34.68345506495092], [-77.4286219909705, 34.68356512962846], [-77.42881517471798, 34.683695840241825], [-77.42882394539598, 34.68369493296721], [-77.42903027608439, 34.68367358905547], [-77.42914867550027, 34.68367994977102], [-77.42937058654694, 34.683699078129045], [-77.42946245026624, 34.68370282869468], [-77.42951785417794, 34.68372289215078], [-77.42975699023495, 34.68375312512796], [-77.43002317696484, 34.6838012033977], [-77.43008982833739, 34.68374917747453], [-77.43048356211034, 34.68344816908953], [-77.43029085343429, 34.68305437941709], [-77.43021782385883, 34.682899082640404], [-77.42989095217403, 34.68283717633507]], [[-77.35409163064837, 34.56077480096822], [-77.3541037898009, 34.56078226762567], [-77.3540916159875, 34.56079962934417], [-77.35408057279211, 34.560785609290264]], [[-77.36449382301812, 34.62062330938778], [-77.3658839209938, 34.620977941538364], [-77.36636469816185, 34.62067064976321], [-77.36680550222694, 34.62079534425154], [-77.36698233255004, 34.62124714583028], [-77.36676350681523, 34.62179381561573], [-77.36683173676599, 34.622805520453284], [-77.36588334408462, 34.622399150057696], [-77.36556144206209, 34.62231356181142], [-77.36475714439874, 34.622082632559554]], [[-77.33316647984915, 34.52693203061554], [-77.33312404905988, 34.52687946239808], [-77.33316823326153, 34.52685648932385], [-77.33322528416042, 34.52686490507084]], [[-77.39138474883117, 34.512239259183], [-77.39158458564496, 34.51209261587538], [-77.39158824697655, 34.51208992184364], [-77.3915918614424, 34.51208356117773], [-77.39170164173157, 34.51189675621545], [-77.39173428973393, 34.51174211444073], [-77.39163203196624, 34.511596100236844], [-77.39149028470467, 34.51144407974857], [-77.39137522915317, 34.51138832561457], [-77.39121641401368, 34.5113295836485], [-77.39106935123449, 34.51128007952433], [-77.39082521200874, 34.51127524636776], [-77.39072410032968, 34.51130018581311], [-77.39056750032604, 34.51134508030481], [-77.39042905075942, 34.51144101668109], [-77.39033201888415, 34.511538864247015], [-77.39026684749837, 34.51169548146016], [-77.39014815254872, 34.51181022888062], [-77.39023832205885, 34.51190962438969], [-77.39041436793985, 34.51209263761859], [-77.39048652381906, 34.512204480527444], [-77.39054682075239, 34.512242369500086], [-77.39080084920991, 34.51235668858877], [-77.39092321006017, 34.51235655183075], [-77.39119360368589, 34.512342324507934]], [[-77.39753106364851, 34.50973277500908], [-77.39748175221384, 34.50974179922377], [-77.39713793849117, 34.509764316445], [-77.39685867882613, 34.509791404455754], [-77.39674451429327, 34.50980915566079], [-77.39665451946993, 34.509836084579], [-77.39635029868246, 34.50988920363863], [-77.39608830823204, 34.509973590039515], [-77.39598469844452, 34.5100069283031], [-77.3959546582851, 34.51003262945263], [-77.39576492565011, 34.51026510490085], [-77.39574051316146, 34.510384792992795], [-77.39560295534038, 34.51053331933309], [-77.3957738414862, 34.510613326253754], [-77.39594032510347, 34.51067058696696], [-77.39599302823187, 34.510688713711595], [-77.3961939026934, 34.510692853768546], [-77.3962945839216, 34.510701694647246], [-77.39633206662671, 34.510700865865445], [-77.39637965989603, 34.51069566066923], [-77.39672686985315, 34.51059482191311], [-77.3970888739792, 34.510543971134936], [-77.39751854002462, 34.5102906553944], [-77.39756259271803, 34.51027774476477], [-77.39757411928221, 34.5102487764549], [-77.39757954302135, 34.51021104777725], [-77.39771413405462, 34.509983727758716], [-77.39761032914524, 34.50980433482052], [-77.3975986551508, 34.50975556268606], [-77.39758522979504, 34.50972383062426]], [[-77.3705824902157, 34.5694478261705], [-77.37063350397791, 34.56940904680306], [-77.37100502549971, 34.56938695439456], [-77.37139667202948, 34.56935725523469], [-77.37142147331635, 34.56934828480426], [-77.37146095666647, 34.569363825774346], [-77.37198066032585, 34.56949285761469], [-77.37210342506454, 34.569963850856126], [-77.37213874560739, 34.57007274103955], [-77.37181507551712, 34.570345352828525], [-77.37158191449764, 34.57032625529261], [-77.37142106864876, 34.57042346103946], [-77.37112720974498, 34.5702184706316], [-77.37083371434589, 34.57004473579113], [-77.37063347391012, 34.569486918039544]], [[-77.43731037382575, 34.74064908542129], [-77.4373095915221, 34.74062121163969], [-77.43727227628955, 34.74051303037738], [-77.43719764032093, 34.74024971361362], [-77.4372183575434, 34.740030299916796], [-77.43722211768784, 34.739793098001854], [-77.43718421729439, 34.73945933651219], [-77.43716622648307, 34.73937001308366], [-77.43713043099753, 34.739164595356684], [-77.43706882771492, 34.73896424456604], [-77.4370355596106, 34.73884835983931], [-77.4370336793335, 34.73862794390446], [-77.43696872353712, 34.73826597109328], [-77.43698861434402, 34.73810490408184], [-77.43705923672263, 34.73801807944079], [-77.43707932134666, 34.73795481070705], [-77.4371386741356, 34.7377663176113], [-77.43726107173246, 34.73754483155543], [-77.43726570871985, 34.737531186782086], [-77.43724382813062, 34.7374758329327], [-77.4372947481052, 34.73748896103637], [-77.43746000842363, 34.737319558849144], [-77.43756768972662, 34.73725714990779], [-77.4377168128762, 34.73713830795795], [-77.43787790598907, 34.737016180763945], [-77.437990315792, 34.73694581673498], [-77.43812836848525, 34.736823959178295], [-77.4382185597828, 34.73682493035351], [-77.4384067720178, 34.736969742381305], [-77.43856949460493, 34.736998940415134], [-77.43881279567856, 34.73704787538165], [-77.4390253568777, 34.73704782143356], [-77.43921187870963, 34.737177328250695], [-77.43953615346848, 34.73748592431421], [-77.43953818962618, 34.737487590347015], [-77.43953845364555, 34.73749046180431], [-77.43958869751054, 34.737912924582965], [-77.43953898627724, 34.73804594302835], [-77.43951342497841, 34.73819223762929], [-77.4394753228163, 34.73840663513976], [-77.4394580563263, 34.7385766971148], [-77.43948707124635, 34.73862493738276], [-77.43949282998746, 34.738756067626596], [-77.43949637857911, 34.73884425796034], [-77.43948316582966, 34.738890464982575], [-77.43943212858083, 34.73896584340383], [-77.43936716878906, 34.73907483281536], [-77.43933505875339, 34.7390927536152], [-77.43923016122278, 34.739224884534465], [-77.43913707130562, 34.73930309552366], [-77.43918024132886, 34.73942256379991], [-77.43925671746811, 34.73957203483919], [-77.4392753317087, 34.7396309158418], [-77.43919037071215, 34.73986474492464], [-77.43918270613639, 34.73989502968349], [-77.43916173519294, 34.73990027427029], [-77.43902606032432, 34.74001300936676], [-77.43893270658054, 34.74007023988362], [-77.43887541891769, 34.74014079653472], [-77.43884599362056, 34.74017970188128], [-77.43884855855475, 34.74023055644898], [-77.43887944506858, 34.74033114665757], [-77.43888728289555, 34.740437603419], [-77.43887484909105, 34.740609055820784], [-77.43892230014015, 34.74086940065928], [-77.4389190809639, 34.74090402494167], [-77.43891640142839, 34.740955388684405], [-77.43893509119786, 34.741189133545184], [-77.43889802780515, 34.74132593377719], [-77.43888741263717, 34.7414519910132], [-77.43883481613467, 34.74156979410238], [-77.43878036188407, 34.741694105547694], [-77.43868923722843, 34.74185944827263], [-77.43862391519416, 34.74197299602436], [-77.438555522455, 34.741995165367506], [-77.43825281443438, 34.74206882511905], [-77.43822560850022, 34.7420701175111], [-77.43821294569466, 34.74207107790927], [-77.43819146526263, 34.7420671175792], [-77.43791179201624, 34.74200384872417], [-77.43773277394018, 34.74188713382771], [-77.43766021733353, 34.74184234535312], [-77.43764185261364, 34.74182875998706], [-77.43759699412547, 34.74179107833031], [-77.43726626204091, 34.7415602950309], [-77.43724195291963, 34.74121118299896], [-77.43724994638538, 34.741159406685], [-77.43727976945362, 34.741108256586905], [-77.43729090177109, 34.74082576167871]], [[-77.33381066191961, 34.52743460125289], [-77.33433166790238, 34.527464664868695], [-77.33445232415767, 34.527250238659136], [-77.3346680611176, 34.52714706115198], [-77.3349865982871, 34.52701358115186], [-77.33512793717867, 34.52698011274636], [-77.33529466922394, 34.52695334085322], [-77.33537640879561, 34.5270451920539], [-77.33523641429942, 34.52713522766578], [-77.33524481867852, 34.52747371166372], [-77.33519566326086, 34.52756082003272], [-77.33519057669606, 34.52760972609539], [-77.3352808481677, 34.52779338607323], [-77.33539025127925, 34.52784633427243], [-77.33549950006736, 34.52788385395302], [-77.33559595268791, 34.527932031444024], [-77.33567815829258, 34.527981063870115], [-77.33568555466027, 34.52798490390807], [-77.33569326376147, 34.52799151159274], [-77.33587191775253, 34.52796456800983], [-77.33589012701599, 34.527965462983396], [-77.33611936630003, 34.52806198318932], [-77.3359233193562, 34.52794580528649], [-77.33615138786605, 34.527829167767884], [-77.33619632694158, 34.527719122561535], [-77.33620165588354, 34.52766095769953], [-77.33608892851645, 34.527559051025506], [-77.33608477577273, 34.52754832473428], [-77.33607462849214, 34.527434409928], [-77.33610002760372, 34.527376871107556], [-77.3361720053943, 34.52734239150912], [-77.3362980501045, 34.52730072849113], [-77.33650654238068, 34.527372290752396], [-77.3365464019214, 34.527454255851936], [-77.33668436849327, 34.52756820581893], [-77.33669971831443, 34.527589324563856], [-77.33673251823711, 34.527796099493656], [-77.33677608753065, 34.52782315769812], [-77.3367390896795, 34.527866925764904], [-77.33667732298518, 34.527872299126905], [-77.33629862311217, 34.528149267823736], [-77.33627841283902, 34.52814812647553], [-77.33609138615374, 34.528296766978556], [-77.3360786302113, 34.528300130164176], [-77.33605661412679, 34.52830748574608], [-77.3358811500732, 34.52835276348803], [-77.33578891504817, 34.52839789416453], [-77.3357819923795, 34.528397092801264], [-77.335697138691, 34.52846796810702], [-77.33569436426407, 34.528476058994706], [-77.3356817603316, 34.52848776461329], [-77.33552679254537, 34.5285186678563], [-77.33548323442281, 34.52858547572525], [-77.33528218790597, 34.52852764392223], [-77.33519529038149, 34.528476491318216], [-77.33509476837318, 34.52841056068879], [-77.33500080025952, 34.52832329401693], [-77.33491446846426, 34.52820630035814], [-77.33490734668771, 34.52809191682987], [-77.33488649462902, 34.527986138742094], [-77.3347136740222, 34.52791786172868], [-77.33466764955085, 34.527910384727015], [-77.33432551740802, 34.52772980520815], [-77.33420415188303, 34.52777840147499], [-77.33384581482878, 34.52775493776954]], [[-77.36027012974009, 34.562575030314015], [-77.35999962982002, 34.56275647273163], [-77.35974873741102, 34.56251696419974], [-77.35968062099963, 34.56244618835696], [-77.35972372182769, 34.56222291975989], [-77.3597491253756, 34.56209235498708], [-77.35980303101977, 34.56204013539362], [-77.35995444730659, 34.56201368413554], [-77.36000004299508, 34.56195984155512], [-77.36013576823598, 34.56189045175021], [-77.36015843386033, 34.56203342281951], [-77.36024803719445, 34.562177688072595], [-77.36039379232366, 34.562331059307255], [-77.36046442649686, 34.562337792066884], [-77.36053339644167, 34.562403988277964], [-77.360522011835, 34.56254392719197], [-77.36039370549607, 34.56250003774877]], [[-77.34056181929503, 34.53334551484534], [-77.34053106388113, 34.533190816341815], [-77.34049799458735, 34.533163431625155], [-77.34049388155229, 34.533155579236556], [-77.34048099608162, 34.533127306973725], [-77.3404004290696, 34.53312721757834], [-77.34036155891243, 34.533183057853], [-77.34042075669343, 34.53321090651758], [-77.34038125760839, 34.53336628448707], [-77.34036575341102, 34.53342727289261], [-77.34044124376662, 34.53343674393169], [-77.34047380471686, 34.53343833782865], [-77.3406159670201, 34.53348055083548], [-77.34066966566826, 34.53345610223595], [-77.34068637394827, 34.53338115133004], [-77.34067218837829, 34.53334698232743]], [[-77.36776668378805, 34.52210598697416], [-77.36742005257118, 34.5223191455436], [-77.36732869986085, 34.52238957505375], [-77.36730951353051, 34.52244832249117], [-77.36729785526073, 34.522523323033084], [-77.36727376628184, 34.52257588672084], [-77.36728385862939, 34.52261611419379], [-77.36728847443965, 34.52269618059461], [-77.36740974876321, 34.522771002117324], [-77.36750741736631, 34.522847448037865], [-77.36771583007943, 34.522879428732985], [-77.36762558053559, 34.52299937921385], [-77.36779889441316, 34.5229175198281], [-77.36813982149056, 34.52281833350087], [-77.36818178432502, 34.52280469635272], [-77.3681963699865, 34.52269864686208], [-77.36821612011155, 34.522562512243006], [-77.36824141963567, 34.52233699903322], [-77.36827715105693, 34.522308890698575], [-77.36824481791386, 34.52228915110874], [-77.36820624350831, 34.52226548139162], [-77.36811307749718, 34.52214750025372], [-77.36795404479497, 34.52211062287388], [-77.36787401025254, 34.5220871087074]], [[-77.35246843433093, 34.6866937281887], [-77.35245468312414, 34.68677952617623], [-77.35242839186512, 34.68686027804873], [-77.35240811609485, 34.68690776592627], [-77.35247595742334, 34.687019534851245], [-77.35247624312497, 34.687020257462684], [-77.35247660809763, 34.687020516293856], [-77.35247999445723, 34.687019742378084], [-77.35275832071528, 34.6869507250021], [-77.3528037409242, 34.68692456976429], [-77.35309554812152, 34.68669152968417], [-77.35311285271754, 34.686626760302886], [-77.35309192941281, 34.68654669320332], [-77.35295197287668, 34.68646755255488], [-77.352952667835, 34.686456776852985], [-77.35292355792416, 34.6864589431158], [-77.35263705370329, 34.68646787723691], [-77.35257865105385, 34.68647230383506], [-77.35257266260687, 34.68651963528096]], [[-77.40440448975427, 34.5084200831278], [-77.40462441953035, 34.508397215108864], [-77.40482027264949, 34.50834459828314], [-77.40530281399232, 34.50822228159579], [-77.40541341139229, 34.50821047359804], [-77.4055459156206, 34.50811832907044], [-77.40578982549815, 34.50782287739157], [-77.40577460337295, 34.507381815657524], [-77.40543627781102, 34.50718760234183], [-77.40542028667117, 34.50716738084521], [-77.40539051062156, 34.50716142169285], [-77.40502473720025, 34.50698418938319], [-77.4046599882314, 34.5068068096189], [-77.40424187698974, 34.507070109215476], [-77.40386516526146, 34.50725465944188], [-77.40360530571586, 34.5074192469445], [-77.40375293536934, 34.50746501539395], [-77.4038572950869, 34.50760641551986], [-77.40395729777211, 34.50779308739209], [-77.40399061555787, 34.50785327722906], [-77.40407392076838, 34.50798164580575], [-77.40413040792627, 34.50807792661395], [-77.40416138584763, 34.50812136816073], [-77.4043902307764, 34.508285240313924]], [[-77.40212701151812, 34.50821415275541], [-77.401655236446, 34.508295225402485], [-77.40148658235225, 34.50833311130446], [-77.40126220308431, 34.50849211585034], [-77.40117830997761, 34.508559895644595], [-77.40098270841024, 34.508777309504666], [-77.40109770870328, 34.50899409516041], [-77.40111995828683, 34.50900232910944], [-77.40146940787935, 34.50909976449606], [-77.40169671827796, 34.509023130162035], [-77.4019461195529, 34.508933304541216], [-77.40226368461587, 34.5086776937603], [-77.40247205614594, 34.50856225005273], [-77.40251572200422, 34.50840253439724], [-77.40226968574464, 34.50840969687184]], [[-77.26724585143907, 34.59994033863197], [-77.267347944947, 34.59982221097654], [-77.2673109671387, 34.59964643269204], [-77.26759233532184, 34.59907572862221], [-77.26660937910114, 34.59902265588177], [-77.2661121078387, 34.599294301431215], [-77.26568771365721, 34.599691703712054], [-77.26580458636673, 34.59990216117208], [-77.26606058235186, 34.60038423382747], [-77.26702780435252, 34.600709074459814]], [[-77.35652979150865, 34.5612821671609], [-77.35645493288527, 34.561328048135145], [-77.35639694758554, 34.561301290222666], [-77.35645502225485, 34.56116904276441], [-77.3566235591353, 34.56060085675841], [-77.35681639085772, 34.56039180662623], [-77.35682640478512, 34.56036557465223], [-77.35684941503303, 34.56035173298128], [-77.3568512267681, 34.56038481941237], [-77.35685297294145, 34.56038654048865], [-77.35689588891239, 34.56075458618349], [-77.35724313927176, 34.560729601847385], [-77.35727601568786, 34.560750192595314], [-77.35739998307876, 34.56090148237391], [-77.3572430595728, 34.56087379382372], [-77.35702707009867, 34.56097786796619]], [[-77.39465569202304, 34.51115971761551], [-77.39479631997392, 34.51091881859331], [-77.3947993444136, 34.51086873123302], [-77.39466339544614, 34.51066893583125], [-77.39437223844283, 34.510599385165726], [-77.39427032876327, 34.5106629794388], [-77.39406479767845, 34.5107553342213], [-77.39400495860839, 34.51078222277614], [-77.39397536222872, 34.51079743829868], [-77.3937649719322, 34.51091381211761], [-77.39357798971912, 34.51101746671958], [-77.39340565381201, 34.51109530190371], [-77.39326521108688, 34.51116736651813], [-77.3931808297891, 34.51122795101668], [-77.39309182496356, 34.511263012258034], [-77.39301519432688, 34.511294077195856], [-77.39298175532736, 34.51135513399618], [-77.3928915716825, 34.51141433031948], [-77.3929798233893, 34.51144098906697], [-77.39307140606077, 34.51145347982629], [-77.39317574548318, 34.51145392041439], [-77.393345436821, 34.511487322336365], [-77.39356761151907, 34.51147881655862], [-77.39389902299762, 34.51147565328696], [-77.39395997323045, 34.51148167880723], [-77.39400318024175, 34.511471911906064], [-77.39435441606169, 34.51139198568198], [-77.39455721190112, 34.511299154611635]], [[-77.33527182267036, 34.53634358911725], [-77.33527481088288, 34.53636284217879], [-77.33527186395324, 34.536382362422316], [-77.33530227490529, 34.53639141486162], [-77.33534270498183, 34.53635307876787], [-77.33533838412463, 34.5363320392096], [-77.3353454339583, 34.53623027798304], [-77.33530618612086, 34.536222694983024], [-77.33526983971092, 34.536241148697144]], [[-77.38557755469998, 34.53499421328961], [-77.3855213430928, 34.53503856973482], [-77.38558005749854, 34.53501216852763], [-77.3855840436803, 34.534993277385595], [-77.38558050091112, 34.5349925313144]], [[-77.37065278272173, 34.51824019111874], [-77.37049580907109, 34.51817083047882], [-77.37036877288557, 34.51809023045711], [-77.37026491145461, 34.51803849911996], [-77.37015591027094, 34.51805311877375], [-77.37006831419232, 34.51805455658358], [-77.36997134905667, 34.51808748624093], [-77.3699507840585, 34.51815047119395], [-77.36996807133306, 34.51821006913313], [-77.37000942163681, 34.518297718012064], [-77.37011007824046, 34.51837234121807], [-77.37016330836158, 34.518422595678], [-77.37021653417169, 34.518479412677706], [-77.3702539538442, 34.51851970577849], [-77.3702954190066, 34.518563962043906], [-77.37032381482484, 34.51858636506858], [-77.37044729407874, 34.51864674180018], [-77.37049447087769, 34.518654641597045], [-77.37064237693544, 34.518697259226926], [-77.37080467646322, 34.51866115666051], [-77.37086500019552, 34.518646523714025], [-77.37089078565185, 34.518595955441825], [-77.37091437303371, 34.518501251702226], [-77.37091101689936, 34.51842056118248], [-77.3708729521278, 34.51836805916814], [-77.37074242778742, 34.51828120563203]], [[-77.37379292653016, 34.51710702677365], [-77.37380368257857, 34.51711445657691], [-77.37381792459668, 34.51712120114291], [-77.3741351052558, 34.517346298345274], [-77.37437321174755, 34.517373357444356], [-77.37459681285404, 34.517386491181306], [-77.37484864456052, 34.5172887791592], [-77.37505429958185, 34.517208057365195], [-77.37538821758415, 34.51710084434186], [-77.37563726857529, 34.51699501395959], [-77.37578462509708, 34.516926869218345], [-77.37592402557742, 34.516799804582234], [-77.37582212606826, 34.516588264703856], [-77.37580548486395, 34.51656418956096], [-77.37544092584012, 34.516379794155554], [-77.37540502630937, 34.516360708224646], [-77.37535865069971, 34.516362753434024], [-77.3750122237148, 34.51637605725305], [-77.37483094752977, 34.51646773123567], [-77.37469225907755, 34.516535202160064], [-77.37461548493832, 34.51656464461628], [-77.37443252702015, 34.51663826008121], [-77.37413640352658, 34.51676143355225], [-77.37381869402495, 34.51708734893256], [-77.37379984911365, 34.517094372388975]], [[-77.32906538158551, 34.53118330465409], [-77.32908210883274, 34.531132833573864], [-77.32913152697506, 34.531117968335195], [-77.32924850254301, 34.531044780661794], [-77.32953926179863, 34.53099947251171], [-77.32963207773649, 34.53086489075051], [-77.32985599267114, 34.53077676442597], [-77.32993753733834, 34.53075253711501], [-77.32994573725024, 34.5307638624305], [-77.32993717423899, 34.53076815539942], [-77.32974808752272, 34.53092138496753], [-77.329544876542, 34.53106630653412], [-77.3295374217212, 34.53107860539126], [-77.32916043409159, 34.53113204557136], [-77.32914306746252, 34.531156819387625]], [[-77.36592810002414, 34.52485079859908], [-77.36589007519876, 34.52491820133491], [-77.36589317154309, 34.52503513701506], [-77.36592470656512, 34.525096113652296], [-77.36590061020007, 34.52517168928216], [-77.36592815795, 34.52525004018344], [-77.36599568793034, 34.52533071307508], [-77.36606295162602, 34.525389383038316], [-77.36617101187237, 34.52545662678578], [-77.36626996844163, 34.52547404841639], [-77.36636617891294, 34.525504072688534], [-77.36650038398683, 34.52546354600019], [-77.36656650638498, 34.52532531339075], [-77.3666059079276, 34.52524279343937], [-77.36659523786561, 34.52522779672496], [-77.36664329646642, 34.52511499328327], [-77.3666650372426, 34.5250469468305], [-77.36672087942266, 34.52498140165359], [-77.36668489176061, 34.524918530308724], [-77.36657743402166, 34.52484628810041], [-77.36652239688846, 34.5248001599132], [-77.36646444266088, 34.52477352318533], [-77.36634900808328, 34.52469003680199], [-77.36589283877375, 34.524671184531975]], [[-77.34232808045822, 34.53505924690094], [-77.34263573676913, 34.53491376807934], [-77.34279614587133, 34.534863757202864], [-77.34280865051463, 34.534796399283636], [-77.34281294579158, 34.534788952703394], [-77.34319479482335, 34.53459956646553], [-77.34331634150757, 34.53454675376025], [-77.34346842636268, 34.53452506533019], [-77.34358908626884, 34.53452403727208], [-77.34360843766856, 34.534552094027525], [-77.34362126002742, 34.534650768632176], [-77.34361892099255, 34.53467299536762], [-77.34361162084497, 34.534690496137046], [-77.3435924875796, 34.53473800332666], [-77.34358372749001, 34.53475618733175], [-77.34356338969158, 34.534791214874986], [-77.34352068234985, 34.53480953908173], [-77.34345685597128, 34.53486355195223], [-77.34326832213486, 34.534917817635844], [-77.3431879940583, 34.53489412569026], [-77.34309994130084, 34.534938201090014], [-77.34285127712943, 34.53502825701151], [-77.34281651905155, 34.535259668741205], [-77.3427950695091, 34.535281162614545], [-77.34279532012009, 34.53528670281527], [-77.3428223491347, 34.53539964745691], [-77.3427831760128, 34.53542540339409], [-77.34264704132823, 34.53546291650636], [-77.34244804636083, 34.53553846577533], [-77.3423876250996, 34.53555523878289], [-77.34223495801297, 34.53551070850452], [-77.34217997253032, 34.53549995437384], [-77.34217385932354, 34.53548096511515], [-77.34220301629769, 34.535366338374374], [-77.34236163870314, 34.53512115912069]], [[-77.35715992838078, 34.543768223750234], [-77.35720562913161, 34.543680026431375], [-77.35727748585795, 34.543479285585924], [-77.35712597284626, 34.5433474301465], [-77.3570069132038, 34.54351824233927], [-77.35705681599421, 34.54371805017831], [-77.35705907361115, 34.54379093650226]], [[-77.33782164365678, 34.53035070425049], [-77.33794566957765, 34.530441660697605], [-77.3377931951381, 34.53053621891474], [-77.33775921319356, 34.53039793901003], [-77.33773793440002, 34.53037780836242], [-77.33775464573286, 34.530348653094876]], [[-77.34385219415496, 34.55330103702482], [-77.34394118978575, 34.553290665025784], [-77.34398332665548, 34.553252556851916], [-77.34403245208426, 34.55321976453876], [-77.3441963103933, 34.553107818075986], [-77.34419962512767, 34.55303820521304], [-77.34395502147548, 34.55299038917903], [-77.3439479373397, 34.552998195684424], [-77.3436791806613, 34.553104536336335], [-77.34384845973884, 34.553246232633086]], [[-77.35460709290902, 34.554199677283606], [-77.35461741381356, 34.55414479504519], [-77.35468040137175, 34.55403892100625], [-77.35470725660062, 34.554000036493825], [-77.35472277989244, 34.553981557365795], [-77.35477486654355, 34.55390874443063], [-77.35479004324505, 34.55387512349103], [-77.35482392962606, 34.553851187012754], [-77.35486423848974, 34.553864443352815], [-77.35487853398993, 34.553889002448955], [-77.35489412917161, 34.55396677154919], [-77.35489883593702, 34.55398187439911], [-77.35490339670716, 34.5539908748516], [-77.35491819951775, 34.55402072039532], [-77.35495001169076, 34.55407628818516], [-77.35495272361335, 34.55409652865103], [-77.35497650456983, 34.55413103854309], [-77.35500451945477, 34.55421148400988], [-77.35498053785788, 34.55429456044659], [-77.35501619533682, 34.554332214458555], [-77.3549083314166, 34.55445090784787], [-77.35475942067322, 34.554369176194925], [-77.35461385145751, 34.55433064576481], [-77.35458330124342, 34.55427211654187]], [[-77.39469930867955, 34.57658533437834], [-77.3946746339301, 34.57657856316346], [-77.39465220996246, 34.57657829544779], [-77.39464676318372, 34.576592914346755], [-77.39464099190984, 34.57661966411055], [-77.39459002876043, 34.57702566991232], [-77.39453641538712, 34.5771719551246], [-77.39466499420675, 34.5771488205918], [-77.39483489719439, 34.57699034642705], [-77.39501372401058, 34.576915739613156], [-77.39498090700474, 34.57662891236655]], [[-77.34486883631081, 34.54325106106042], [-77.34479422596904, 34.54331739692483], [-77.34478812042128, 34.54342175592256], [-77.34475257129364, 34.54356820949474], [-77.34492162049818, 34.54377353686584], [-77.34492033061642, 34.543788892855474], [-77.34491730346124, 34.54380671370702], [-77.34494492493202, 34.543817879418626], [-77.3449671754646, 34.543795709601326], [-77.34496940379299, 34.54378183239264], [-77.34536164279837, 34.543490922722846], [-77.34536907563582, 34.543464903609724], [-77.34540777460792, 34.543229121223604], [-77.345351639946, 34.54320533789411], [-77.34507886056196, 34.543201782622305], [-77.3449592022202, 34.54319882546842]], [[-77.37252621245236, 34.518024104031404], [-77.37252649638859, 34.51808158710372], [-77.37261845356443, 34.518092791679855], [-77.37278845720905, 34.518124627788346], [-77.37284072175541, 34.51811778131468], [-77.37301203107194, 34.518043763995394], [-77.37314388217033, 34.51793507124128], [-77.37314233581428, 34.51776783953656], [-77.37320987512982, 34.51768072986509], [-77.37311689607321, 34.517634519794456], [-77.37302178625504, 34.51761474429887], [-77.37288605566519, 34.51756791596591], [-77.372747412608, 34.517575675179444], [-77.37262951297637, 34.51760651413792], [-77.37246797264984, 34.517787670490584], [-77.37246793213318, 34.51788453046768], [-77.3724600534201, 34.51791122620097], [-77.3724923831002, 34.51794828395768]], [[-77.35931080741038, 34.54703507835699], [-77.3593250874894, 34.54705705781423], [-77.35928425872085, 34.54705516995638], [-77.35928103609598, 34.547035624836234], [-77.35927143941208, 34.546986949593006], [-77.35926685104448, 34.546947654564875], [-77.35926147988519, 34.54690192528095], [-77.35932331660459, 34.5469049223322], [-77.35932555021202, 34.54693309843702], [-77.35932007709651, 34.54697994612393]], [[-77.33673519048293, 34.53482040637297], [-77.33672568961869, 34.53479984528731], [-77.33669876220125, 34.53480267038607], [-77.33669808097767, 34.53482073244799]], [[-77.34967584098827, 34.55279373869017], [-77.3496456553037, 34.55280116183229], [-77.34960358048511, 34.55281150865338], [-77.34954694451149, 34.552825194030454], [-77.34952839680831, 34.55279624100908], [-77.34951984254027, 34.55275418443287], [-77.34951630176722, 34.55273677630329], [-77.34952250682036, 34.552719124084916], [-77.34952862249858, 34.55270440071216], [-77.34955039243003, 34.552675310616856], [-77.34955669023492, 34.552673662351076], [-77.34961655505987, 34.55268101275194], [-77.34964800788657, 34.552698888189404], [-77.3496792797868, 34.55271332317419], [-77.34966961576252, 34.552761547018754], [-77.34967264709321, 34.55277548286355]], [[-77.35928274242822, 34.54666390137421], [-77.35930781860512, 34.546646626579324], [-77.35931081008157, 34.54667300860201], [-77.35931122467154, 34.54667775934672], [-77.35929096205004, 34.54668802930829]], [[-77.35948905954963, 34.54750939044707], [-77.3594510225794, 34.547532412665646], [-77.35946484055854, 34.547497606931564], [-77.35947258278725, 34.54744763415758], [-77.35945133845392, 34.547411484195266], [-77.35942827440654, 34.54735563160875], [-77.35949423939925, 34.54737901751085], [-77.35949742245256, 34.54738927497848], [-77.35948892779221, 34.547445280583815], [-77.35949377790104, 34.54744959393791], [-77.35949648628198, 34.54749800657608], [-77.35948988468488, 34.54750634878041]], [[-77.34292358084491, 34.52588695450094], [-77.34291677279472, 34.5259067485633], [-77.34284206950755, 34.52594863501154], [-77.34286524207243, 34.52588166006586]], [[-77.35929890018517, 34.54660967062286], [-77.35923008579346, 34.546613410421784], [-77.35923760389252, 34.54657984701706], [-77.3592801951381, 34.546575488358506]], [[-77.34833398700891, 34.55115017940437], [-77.34833853324572, 34.55114943131305], [-77.34833992923083, 34.55114640637464], [-77.34834412031566, 34.551144388144685], [-77.34834341140044, 34.551140172375256], [-77.34834182994561, 34.551138482230016], [-77.34834213941409, 34.551135662106034], [-77.34834469572337, 34.55113041921761], [-77.34833917458042, 34.551128293124734], [-77.34833457871224, 34.55112447469072], [-77.34832556523267, 34.55112759646033], [-77.3483251338612, 34.55113323407019], [-77.34832708060931, 34.55113744323226], [-77.34832726383304, 34.5511405782198], [-77.34833039941614, 34.551145473073966], [-77.34833120440396, 34.55114766183291], [-77.3483323736087, 34.55114852339411]], [[-77.33875138499296, 34.55242939620653], [-77.33875065064515, 34.55243138114174], [-77.33875396613882, 34.55243065254414], [-77.33875416813038, 34.55242872041298]]]]}, "type": "Feature", "id": "demo8", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19031456423028, 34.644242465966386], [-77.19579313336114, 34.644867969925684], [-77.19922509637607, 34.64595892197913], [-77.20174566315922, 34.64644195046827], [-77.2064995025654, 34.64876032771997], [-77.20693013864486, 34.64895695019093], [-77.20717109531898, 34.649055743361714], [-77.20801839423129, 34.64947139331709], [-77.2094851188515, 34.649471407843805], [-77.21040126854231, 34.649342077984485], [-77.21354872164872, 34.64942192777886], [-77.21373770527407, 34.64941873638309], [-77.21389244066783, 34.64943563430496], [-77.21539977174766, 34.64946916863252], [-77.21541127974143, 34.649471416050744], [-77.21541130398025, 34.649464353106275], [-77.21540867517906, 34.649451603741596], [-77.21417794273995, 34.64918673118936], [-77.21536079187301, 34.64811140107318], [-77.21514474131347, 34.64755784604583], [-77.21485183938088, 34.64722079392992], [-77.21298226356478, 34.64669489587402], [-77.21256249278717, 34.64546841142918], [-77.21241914089262, 34.643966652044796], [-77.21278236966738, 34.64360035561435], [-77.21234912663044, 34.642802285664885], [-77.21169900452355, 34.641629308669565], [-77.21168958213337, 34.6413006286873], [-77.2116781313399, 34.640165187216546], [-77.21167805908188, 34.63836620071192], [-77.21105688995368, 34.63780761556779], [-77.21452185955086, 34.634554707499035], [-77.21478693157978, 34.63444976521246], [-77.2148492676433, 34.63433631038144], [-77.2150058429586, 34.63418339904141], [-77.21751137844407, 34.63077562424457], [-77.22174198798018, 34.630116096651534], [-77.22418014686573, 34.62881339898034], [-77.22602001527028, 34.62767637033778], [-77.22773970560704, 34.626482823391164], [-77.22849783743501, 34.62598644651425], [-77.22871933227447, 34.625802558298794], [-77.22939639786699, 34.62517733478553], [-77.23042952484724, 34.62425338856491], [-77.23158826339086, 34.62309465559353], [-77.23459736114216, 34.620978667472684], [-77.23475753291639, 34.62082384240837], [-77.23486873119352, 34.62075291034196], [-77.23508195833465, 34.620613489318686], [-77.23845242204641, 34.61868089998136], [-77.24003567254906, 34.61749347934612], [-77.24006425401458, 34.617471315021945], [-77.24008155818811, 34.617457278909015], [-77.24009461906998, 34.617377067884405], [-77.24058824250243, 34.615798146465245], [-77.24053421169616, 34.615622943652326], [-77.23860168906417, 34.613663191071424], [-77.23856277720752, 34.61361699765933], [-77.2385074165948, 34.6135778118515], [-77.23821969975391, 34.61321471445439], [-77.23887710982413, 34.613119259010645], [-77.24219206205805, 34.6114886678072], [-77.24125253050323, 34.61002334707714], [-77.24289192601294, 34.60948164200941], [-77.24294823055278, 34.60903685024018], [-77.24331455586929, 34.60830043293892], [-77.24349108392406, 34.60809891866248], [-77.24372412209445, 34.60759232980741], [-77.24374859858776, 34.60739193344756], [-77.2437555283163, 34.60726517524848], [-77.24391333839694, 34.60693356409336], [-77.24376276625672, 34.6068010010953], [-77.2432955291644, 34.606702557362574], [-77.2432853605019, 34.606412738913214], [-77.24316536148476, 34.60631534220565], [-77.24275802129785, 34.606168947699395], [-77.24273044087766, 34.60589766608635], [-77.24263806055797, 34.60569122265784], [-77.24259973151675, 34.60549341714625], [-77.2422790698592, 34.605390749446485], [-77.2422052845232, 34.60492667961873], [-77.24220043889949, 34.60491320423199], [-77.24275244737122, 34.60475598351683], [-77.24275705982872, 34.60469976494397], [-77.2427380376949, 34.60466091760645], [-77.24261791110557, 34.604636318946554], [-77.24219737153746, 34.6048960398644], [-77.24217733296227, 34.60490181771886], [-77.2421537913315, 34.60490952825456], [-77.24215203455093, 34.60492619710154], [-77.24158921103717, 34.6053363865379], [-77.24131376669632, 34.60544846305919], [-77.2410283727945, 34.60553941097788], [-77.24049708424974, 34.605545540075916], [-77.23964440428085, 34.60518310855096], [-77.24082274088076, 34.6050117046717], [-77.24096567042777, 34.60481589576365], [-77.24123271058556, 34.604718981354374], [-77.24124984269524, 34.60452906934876], [-77.24123352686928, 34.60436565530625], [-77.24119526065176, 34.6040282839407], [-77.24121454495472, 34.603807511323616], [-77.24134023432993, 34.6034313645542], [-77.24140749099864, 34.60312499181216], [-77.24143796663144, 34.602989129616674], [-77.24133489331118, 34.602959593013296], [-77.24142700515058, 34.60291965030801], [-77.2414039239911, 34.602493681002144], [-77.24171377442912, 34.602151133779664], [-77.24213301298161, 34.601608438833004], [-77.24253473480898, 34.601275453771585], [-77.24307676627015, 34.60090624741607], [-77.24321372043241, 34.60075090345629], [-77.24334027853504, 34.60067723463643], [-77.24352922349715, 34.60059957374836], [-77.24394724730487, 34.60058044432948], [-77.2445581688255, 34.600445795640496], [-77.24536526605024, 34.60030401047943], [-77.24599103063875, 34.60002702392191], [-77.246196405638, 34.59973859134169], [-77.24629405281004, 34.5993603790373], [-77.246462955492, 34.59912150659586], [-77.24656660871969, 34.5988652370491], [-77.24682515492974, 34.59851807429297], [-77.2469135560823, 34.59821430553261], [-77.24721215897102, 34.59788881003218], [-77.24738637035452, 34.59770256161717], [-77.24754402624492, 34.59732127313276], [-77.24802381516422, 34.596954858583636], [-77.24888960115577, 34.59667286865798], [-77.24924774931682, 34.59672881193442], [-77.2501564784637, 34.59678662162652], [-77.2505105918485, 34.596801925106746], [-77.25175403238852, 34.596923340880736], [-77.25171256894481, 34.597649550064794], [-77.25173783475532, 34.59770898027406], [-77.25231747952326, 34.59818199550538], [-77.25278967353121, 34.59867703495975], [-77.25287059615684, 34.5988027625638], [-77.2530466564725, 34.598792894029806], [-77.25395789556009, 34.598768992999624], [-77.25449399961869, 34.59876547066356], [-77.2545699911892, 34.59877692438478], [-77.25458727170557, 34.59880182819591], [-77.25460147626495, 34.59881965168641], [-77.25497862868055, 34.59902270839611], [-77.25506741134373, 34.59927541314937], [-77.25507984120574, 34.59932864337266], [-77.25462669098954, 34.59949793571918], [-77.25456956786704, 34.59948996591386], [-77.25415049948599, 34.599605843613176], [-77.25390779229805, 34.599558730297694], [-77.25375361468345, 34.59969559920072], [-77.25396843016388, 34.599965607415896], [-77.25399085657466, 34.60049473024507], [-77.25407688050271, 34.600663728197276], [-77.25480032761305, 34.601653994148336], [-77.25480423987193, 34.601659824849044], [-77.2548076578014, 34.60166393026035], [-77.25607981872776, 34.60245798828136], [-77.25626565339451, 34.602582300307276], [-77.25668714444396, 34.60275451208413], [-77.2574411152944, 34.60310036258896], [-77.25828939568368, 34.60329422266079], [-77.25956718222118, 34.60327678672509], [-77.25983943111673, 34.60300250659022], [-77.26004993848181, 34.60263503129478], [-77.26038202570751, 34.602102509010805], [-77.26051100604663, 34.6014870205333], [-77.2612702882009, 34.60070842797181], [-77.2604227385239, 34.60054061261452], [-77.25990010873583, 34.60048667005806], [-77.25960607434077, 34.6004882669545], [-77.25910138545446, 34.600116420530604], [-77.25902195045275, 34.60008066674142], [-77.25905197937092, 34.59991701575644], [-77.25908912525169, 34.5996441171913], [-77.25934936127813, 34.59922325119296], [-77.25932421333108, 34.59919127197089], [-77.25960614551012, 34.59882182719759], [-77.26011169058705, 34.59850296013854], [-77.26010888778765, 34.59831032040882], [-77.26005777088825, 34.59822316699362], [-77.26010075566688, 34.597844314652036], [-77.26018315105863, 34.597373485698355], [-77.26004166545607, 34.59675954794192], [-77.25978721327257, 34.596399660035715], [-77.25926687108594, 34.59615977154787], [-77.25812527005036, 34.59600750477297], [-77.25777296917494, 34.59577968113277], [-77.2575410989785, 34.595491429766625], [-77.25742319762404, 34.59527098352801], [-77.25713387167887, 34.59490909265716], [-77.25714394613584, 34.59430632853149], [-77.25708429521731, 34.59380828024446], [-77.25692989155792, 34.59351584831307], [-77.25639103205117, 34.59330439349714], [-77.25592532383652, 34.593157183854615], [-77.25576949409754, 34.59307432389849], [-77.25511604703574, 34.59272538673946], [-77.25528609599777, 34.59227474501154], [-77.25539108955553, 34.59188760025374], [-77.25542272093496, 34.591814159031536], [-77.25549722963083, 34.59177022734806], [-77.25546224944499, 34.59149355190812], [-77.25525819443305, 34.591329866383354], [-77.25536302652749, 34.59116329913534], [-77.25549228932132, 34.590451258254845], [-77.25567548080232, 34.59042002639268], [-77.25635607046165, 34.58990492796452], [-77.2566813494472, 34.58955651015673], [-77.25729206476605, 34.58897134790976], [-77.25768478516909, 34.58869279899735], [-77.25744108337514, 34.588240820813354], [-77.25740837930286, 34.58819970693333], [-77.25740015751077, 34.5881960625931], [-77.25739977190784, 34.58818622913983], [-77.25733339936257, 34.587722464171314], [-77.25772510439256, 34.58733956474125], [-77.25776480216277, 34.58721418699541], [-77.2582837614581, 34.58685457108703], [-77.25862280482454, 34.58666274928442], [-77.25886524514569, 34.58642899054001], [-77.2590056310618, 34.586345965844075], [-77.25912399270679, 34.586080888898046], [-77.25909035842831, 34.5859753641538], [-77.25909652029833, 34.585769536879766], [-77.25963108158558, 34.58544228182846], [-77.25992620529794, 34.585192927362115], [-77.26004496375421, 34.58510779667348], [-77.2601037259328, 34.58497915861723], [-77.26025589972946, 34.584207258490956], [-77.26025092387376, 34.584189211010646], [-77.26026294790076, 34.58418226992344], [-77.26026464414286, 34.5841794171686], [-77.26027850519144, 34.584162575630415], [-77.2606449793081, 34.58374098823008], [-77.26057950100251, 34.583698743150464], [-77.26079034885126, 34.58333246503073], [-77.26082373347309, 34.58328371316993], [-77.26102907272991, 34.58316295794208], [-77.26120518413487, 34.58304416376371], [-77.2613682448127, 34.58303592984238], [-77.26167698718359, 34.58306451655652], [-77.26195163412876, 34.583050793724524], [-77.26233819868155, 34.5829315198837], [-77.26279942676344, 34.58251206094715], [-77.26281059415246, 34.582500244799796], [-77.26282096774813, 34.582498158825956], [-77.26282591884974, 34.58248998070923], [-77.26350480825909, 34.581803180118044], [-77.26350242094273, 34.58160908578341], [-77.26381916473562, 34.58138312809334], [-77.26405711189236, 34.581181378078256], [-77.26418436858248, 34.58109309113657], [-77.26441862024441, 34.58097752228652], [-77.26466587435493, 34.580757921452495], [-77.2648436636439, 34.580364985788414], [-77.26511334396912, 34.580163538572435], [-77.26545537238151, 34.57987733923279], [-77.26559545333217, 34.579719146658924], [-77.26578514735498, 34.57943193742866], [-77.2659084555013, 34.57934029706823], [-77.26600980480518, 34.579092904687556], [-77.26603952476353, 34.578980605736625], [-77.26615387210491, 34.57890134141336], [-77.26641703246585, 34.578693101177294], [-77.26682924257709, 34.578571371392364], [-77.26708886341405, 34.5784184438035], [-77.2674178475141, 34.57838089654162], [-77.26790651947272, 34.578382396858075], [-77.26829089323398, 34.578321296346196], [-77.26840697473739, 34.578276267746425], [-77.26877176852723, 34.578252771688284], [-77.26925417197836, 34.5780832718231], [-77.2695681869633, 34.57799455079142], [-77.26998441567925, 34.57760397281089], [-77.26982422490444, 34.57739284084652], [-77.27016461470053, 34.577210574424136], [-77.27054052973082, 34.5772063904973], [-77.270752034422, 34.57699444307783], [-77.2708929418204, 34.576543903800335], [-77.27092759004852, 34.57653690915497], [-77.27097246488022, 34.57649895863802], [-77.27138032265589, 34.57562982881056], [-77.27136902942995, 34.57561553250577], [-77.27180414511325, 34.57519180803989], [-77.27164202191695, 34.57502828751255], [-77.27159032797996, 34.57479776661007], [-77.27150071080685, 34.57469662490934], [-77.27160486460815, 34.574548294940065], [-77.27162083669388, 34.57447040094995], [-77.2720251079217, 34.5742707420882], [-77.27203116542188, 34.57427022857599], [-77.27204028718738, 34.57426770326281], [-77.27206842363398, 34.57425121408202], [-77.27204058508306, 34.57424013584346], [-77.27214576209239, 34.57385480951542], [-77.27218344749866, 34.57380762250872], [-77.27218957223953, 34.57375392519001], [-77.27212471739199, 34.57356733997783], [-77.27222257678801, 34.573458600926614], [-77.27231145549155, 34.57334635079184], [-77.27240401204897, 34.57328745380152], [-77.27255399655836, 34.57322485057496], [-77.27283965041964, 34.57322739880026], [-77.27310959131997, 34.57325775386779], [-77.27344815322246, 34.573123348435956], [-77.27379112208516, 34.57323832690156], [-77.27402364250669, 34.5736520427681], [-77.27409735176083, 34.57385844843614], [-77.27419346226347, 34.573965587351196], [-77.27450550018656, 34.57407295129387], [-77.27447952435553, 34.57441729251131], [-77.2744924045091, 34.57444528998929], [-77.27449109741019, 34.57448628920621], [-77.27421971430884, 34.57491031084909], [-77.27392900072341, 34.57539124590531], [-77.27477760129187, 34.57549463351831], [-77.27526428428592, 34.57593504889313], [-77.2757444635782, 34.57618074695793], [-77.2759691625113, 34.57647186286814], [-77.27628707355075, 34.57671230052043], [-77.27653883413652, 34.57697784140642], [-77.27697304197908, 34.57719013723387], [-77.27719791350022, 34.57737558381473], [-77.27819131714837, 34.57805030183564], [-77.27828997540936, 34.57816641608923], [-77.27841840481248, 34.57829567962806], [-77.27881946918174, 34.578702884095634], [-77.27938004026937, 34.579086315496575], [-77.27954623433148, 34.579165428863725], [-77.27962024978444, 34.57925269411594], [-77.28015468440569, 34.579672309014725], [-77.28068147380455, 34.580131164346625], [-77.28076423795176, 34.58017877368255], [-77.2807876419582, 34.58027789235706], [-77.28091951743465, 34.581092506085625], [-77.2808445301204, 34.58161844614021], [-77.28054228473472, 34.58249524189715], [-77.2802027624923, 34.58292152809396], [-77.27999140176394, 34.58340787742714], [-77.2787831905659, 34.58618823230358], [-77.27825242575102, 34.58653898211948], [-77.27830991381367, 34.58697743382618], [-77.27847612408442, 34.58818345584739], [-77.27945400543842, 34.587551671946976], [-77.28015302986641, 34.58744714753394], [-77.2820365012713, 34.58766802339906], [-77.2836453672461, 34.587131695169084], [-77.28444349398407, 34.586907073044635], [-77.28503236796612, 34.58666935887463], [-77.28596397690953, 34.585702367766224], [-77.28640028857558, 34.585278019663974], [-77.28575800402442, 34.58295297852838], [-77.28543335521513, 34.582399223807656], [-77.28471298392655, 34.58185862035861], [-77.28419082895935, 34.58146676573935], [-77.28353112937907, 34.58097167269206], [-77.28320718323383, 34.58072755078562], [-77.28244060312556, 34.58034270709244], [-77.28099115742278, 34.580093739520905], [-77.2809448607201, 34.57996693433428], [-77.28048977077077, 34.57954674262834], [-77.28084462562802, 34.579201322157836], [-77.28067796341092, 34.57882774815031], [-77.28064376934907, 34.57875415358884], [-77.28060397190339, 34.57871109986446], [-77.2805780124004, 34.578584353945956], [-77.28039418952693, 34.57822329949217], [-77.28031283867038, 34.57814328237946], [-77.28021522789378, 34.5780759200797], [-77.27987238432526, 34.577573454023856], [-77.27905161040772, 34.57717521349255], [-77.27902828681074, 34.5771548834001], [-77.27901608087377, 34.577113598200675], [-77.27875866200964, 34.57652104059055], [-77.27875122096273, 34.57620896560335], [-77.27869533677045, 34.5760809789786], [-77.27862421857274, 34.575836544933054], [-77.27858618659926, 34.57572467514657], [-77.27852016294504, 34.57544041325137], [-77.27852546654451, 34.57524857690627], [-77.2784667924836, 34.57516066062006], [-77.27865522252316, 34.574787440933605], [-77.27868808638073, 34.57442833194955], [-77.27867889011448, 34.5743463066786], [-77.27865775818105, 34.57431631185717], [-77.27865802709078, 34.57424874600436], [-77.27846969863442, 34.57383021194477], [-77.2784916931524, 34.57368157880627], [-77.27831773209104, 34.57349386514595], [-77.27803014037855, 34.57348710064798], [-77.27788476560083, 34.57351672876971], [-77.27776726655966, 34.573456686796646], [-77.27754002465291, 34.57336509526762], [-77.27741909977023, 34.573348636681], [-77.27743881902283, 34.57327790744801], [-77.27747055289217, 34.57319284561167], [-77.2774163043424, 34.57304047438136], [-77.27743089589853, 34.5729767808957], [-77.27729004408906, 34.57279489067882], [-77.27736653842486, 34.5726334602476], [-77.2767620108182, 34.57228207785468], [-77.27663652355818, 34.572172143417234], [-77.27694137377445, 34.571408006891154], [-77.27705507119788, 34.57136244221097], [-77.27709463836408, 34.57126560638547], [-77.27741013077879, 34.570510569744656], [-77.27760990878072, 34.570463371013204], [-77.27748348632291, 34.57038502185718], [-77.27770075658916, 34.57011187194219], [-77.2782279904332, 34.57004059548546], [-77.27830334912447, 34.56999058973866], [-77.27905425074854, 34.56963416776353], [-77.27919217299491, 34.5694667052872], [-77.27953061205446, 34.56942787170425], [-77.28004894119918, 34.56891432103096], [-77.28006570626451, 34.56877095546351], [-77.28023857051136, 34.56861766869733], [-77.28039325119731, 34.56832535232002], [-77.28053332204149, 34.568030807949356], [-77.28073474623758, 34.567880842950366], [-77.2808912978588, 34.56763816162777], [-77.28089604566918, 34.56742218438754], [-77.28109633816324, 34.567217226256815], [-77.28238373925583, 34.56706768449271], [-77.28239320624328, 34.56705620247309], [-77.28197031096084, 34.5664988778332], [-77.28187441416071, 34.56645862281805], [-77.2817562259195, 34.56607575406031], [-77.28183479198682, 34.56590254817139], [-77.28226713357816, 34.56568173553128], [-77.28231415645313, 34.56567170369708], [-77.28331136417656, 34.56528308395632], [-77.28344571040529, 34.565363692961114], [-77.28355093880852, 34.565274025745225], [-77.28369201388993, 34.56511868357385], [-77.28431690898005, 34.56486283965131], [-77.28434217077826, 34.564846638491595], [-77.28438638683238, 34.564823485135285], [-77.28511742443051, 34.56445435992353], [-77.28540878461638, 34.56428737956124], [-77.28561875590049, 34.564240529858054], [-77.28691479679304, 34.56369121339375], [-77.28704648684771, 34.56371421506227], [-77.28712140879183, 34.563627280613716], [-77.28786487310352, 34.56344683523224], [-77.28829842743231, 34.563201151228924], [-77.28868885404225, 34.56294344484608], [-77.28908253585001, 34.56279680772539], [-77.29033348549699, 34.56207583815231], [-77.2907289174609, 34.56185475347634], [-77.29161827809355, 34.561541047648205], [-77.29191966859725, 34.56142497173136], [-77.29236627146169, 34.56134275336446], [-77.29302260406246, 34.561231332165114], [-77.29350356677489, 34.56086952635438], [-77.29406298858024, 34.560744304235094], [-77.2942956422663, 34.56036403142666], [-77.2947938558411, 34.560106486423734], [-77.29509422469991, 34.560027345445576], [-77.29560302006554, 34.55986176008837], [-77.29588610635223, 34.55975152717683], [-77.2964865502988, 34.560049777613145], [-77.29642675372841, 34.56020424055544], [-77.29640992495854, 34.56055037839268], [-77.29634194588078, 34.56086065453867], [-77.29577825905494, 34.56113059257538], [-77.29580780281715, 34.56159431364263], [-77.29583305095562, 34.56161790972906], [-77.29584179090251, 34.561625804574966], [-77.29613428824442, 34.561872759565425], [-77.2963238470784, 34.56184570292456], [-77.29645945532152, 34.56162702642403], [-77.2959336971885, 34.56159790803295], [-77.29663279957703, 34.56138742994172], [-77.29687877757998, 34.56112216981035], [-77.29702383614294, 34.560951924104785], [-77.29739907950331, 34.560434424179846], [-77.29738393642697, 34.56041065800195], [-77.29742924709998, 34.56039646752242], [-77.29744293874566, 34.559918774852086], [-77.29740402731719, 34.55991816600013], [-77.29745341390068, 34.55989571005747], [-77.29795095720337, 34.55965675591601], [-77.29824637579402, 34.55957371559963], [-77.29908694105808, 34.559676730922035], [-77.29946534487314, 34.55983783987783], [-77.29980446171574, 34.56010861985907], [-77.3005172465401, 34.560450742244754], [-77.29999424221208, 34.56065209116794], [-77.299778107103, 34.56122548477694], [-77.29956735398632, 34.56143799128343], [-77.29955530184766, 34.561567981340936], [-77.29971794627394, 34.561576981783006], [-77.29976737319409, 34.561680371829915], [-77.30002609786665, 34.56230911791176], [-77.30035986357788, 34.56243177023502], [-77.30015183442755, 34.562716535918454], [-77.30011381817822, 34.56295668487697], [-77.29972920176387, 34.56329802994116], [-77.29953486481276, 34.563409854076184], [-77.29934864206777, 34.563556075405785], [-77.29893569078601, 34.56412298270848], [-77.29870041445136, 34.56424475272731], [-77.29881583391966, 34.56448155697487], [-77.29847714401987, 34.56488610350873], [-77.29814620417012, 34.56536446017314], [-77.29809648716984, 34.56538024311536], [-77.29806712523525, 34.565438006379], [-77.2976048441816, 34.56577057243332], [-77.29740566444937, 34.56632954441376], [-77.29738989984452, 34.566384195468416], [-77.29739356477793, 34.56642314883869], [-77.29750188633787, 34.56706010445403], [-77.29750763441865, 34.56721634808841], [-77.29750736118183, 34.567379789204985], [-77.29747888796025, 34.567936032876446], [-77.29748527743425, 34.568068596338826], [-77.29750552647418, 34.56822827209782], [-77.29763505261575, 34.56859350916981], [-77.29796039081504, 34.56884948443509], [-77.29789835020219, 34.569120359803705], [-77.29797388675965, 34.569696590182105], [-77.2981405276127, 34.56988315208932], [-77.29835378810733, 34.569642094002745], [-77.2984416074557, 34.56910381317931], [-77.29851874256191, 34.56876938754745], [-77.2986744733998, 34.568174023313865], [-77.29869836882963, 34.56789457854381], [-77.2987762632476, 34.56771644870412], [-77.29869210615513, 34.567046432568155], [-77.2990601705531, 34.56628162523294], [-77.29936793410928, 34.56610043768316], [-77.2997216136907, 34.56573809811767], [-77.29996847372004, 34.56543083072836], [-77.30110200275166, 34.565213943659884], [-77.30129820749025, 34.565151508829246], [-77.30145680246768, 34.56512255563419], [-77.30158828221644, 34.56493283376347], [-77.30181083456992, 34.564603525334704], [-77.30181868159897, 34.564339994181935], [-77.30181730368076, 34.56405092696209], [-77.30180165285933, 34.5637447771483], [-77.30246222261883, 34.56310934025918], [-77.30202979441941, 34.562724843866754], [-77.3020354198552, 34.56264016900431], [-77.30230859621562, 34.562514126298], [-77.30288970168255, 34.562493731925706], [-77.30314667358708, 34.56203189858023], [-77.30381679289138, 34.56152017454295], [-77.30449165927735, 34.56116836765008], [-77.30470424097518, 34.56095859957598], [-77.30514381099346, 34.56076606246197], [-77.30570887603608, 34.56045410037057], [-77.3060869710518, 34.56012336079459], [-77.3064591016167, 34.559825691379714], [-77.30760842321988, 34.55947332362404], [-77.30767323585633, 34.559461542988004], [-77.30776240835905, 34.559466654420035], [-77.30924802803528, 34.55928712175067], [-77.31001235640774, 34.55958634460052], [-77.31007085096341, 34.559597124736314], [-77.31081074026298, 34.55962714960955], [-77.31091781191903, 34.55944762912229], [-77.31081921459977, 34.55926600683556], [-77.31065722310201, 34.55909886099938], [-77.31070888554129, 34.558988006315985], [-77.31071663330589, 34.55891784665877], [-77.31071387293149, 34.55857347843485], [-77.31068673091896, 34.558501568685976], [-77.31070275488572, 34.55809932459231], [-77.31067762663977, 34.55801325768547], [-77.31060699529849, 34.55787067557145], [-77.310857193477, 34.55764750667658], [-77.31119700690229, 34.55716424070703], [-77.31132819303353, 34.55694061650213], [-77.31179802497888, 34.55646317249468], [-77.31184797088014, 34.556268448025605], [-77.31169419539677, 34.55590882921176], [-77.31148340971545, 34.55531617643818], [-77.31172874202937, 34.554428331755076], [-77.31175955123385, 34.55394097032487], [-77.31175762726866, 34.553462182779846], [-77.31206168768482, 34.55291835083398], [-77.31204181397818, 34.55260682249074], [-77.31252289654088, 34.55189768803088], [-77.31254411567194, 34.551869843331914], [-77.312557222607, 34.551864074155475], [-77.31256351981597, 34.5518613969471], [-77.31265646969658, 34.551796700960324], [-77.31341891257527, 34.55128997503313], [-77.31345157427295, 34.55119556196649], [-77.31380287040841, 34.55070984770886], [-77.31391076085121, 34.550535755254145], [-77.31416896839073, 34.55037175586827], [-77.31496113280004, 34.55005422344395], [-77.31496167160044, 34.550053907988364], [-77.31496176709585, 34.55005385984952], [-77.31496277057754, 34.55005365689152], [-77.31575544869992, 34.549689915550815], [-77.31586056287053, 34.54949783291231], [-77.31597556898414, 34.5494185780345], [-77.316555337468, 34.549064440580054], [-77.31694491923281, 34.54903217372075], [-77.31693925730153, 34.548558538111486], [-77.31702941634359, 34.54828797135908], [-77.31711773718068, 34.54812259575312], [-77.31721820664276, 34.547771232460754], [-77.3173751418943, 34.54758704581107], [-77.31752605355753, 34.54732770874682], [-77.31808909810064, 34.54715651493133], [-77.318138221007, 34.54712896715338], [-77.31817142657347, 34.54711433085038], [-77.31819725986443, 34.547124718564795], [-77.31826341187933, 34.54713147556924], [-77.318807791206, 34.54714564194363], [-77.31895363410356, 34.54724350276746], [-77.31940760530767, 34.5472502800409], [-77.31973692246528, 34.54732649927496], [-77.31981968815757, 34.54734564924651], [-77.32000000044042, 34.54737163234508], [-77.320288657291, 34.54747361424467], [-77.32038758046704, 34.54772750611819], [-77.32040196838065, 34.54780350948241], [-77.32036557142101, 34.547898048287415], [-77.32029832774069, 34.54818090289437], [-77.31975464130609, 34.54836002383962], [-77.31971252672828, 34.54837068413338], [-77.3196367668976, 34.54835560325299], [-77.31943653009353, 34.54843182696205], [-77.3193334762749, 34.54845633966399], [-77.31945853509586, 34.54858393170956], [-77.31955951889334, 34.548658970855826], [-77.31970254092371, 34.54879809786607], [-77.31978733777697, 34.548817893127634], [-77.31980505338305, 34.54886851010092], [-77.3200736836869, 34.549083958560395], [-77.3202263106617, 34.54963641295895], [-77.3202200924886, 34.549788134010086], [-77.32012478112144, 34.55001051201036], [-77.3201108145723, 34.55007703217033], [-77.32024455348528, 34.55027424406035], [-77.32028841542092, 34.55066037513819], [-77.32032978283931, 34.55075162436866], [-77.32025299476815, 34.550878751657315], [-77.3200953109706, 34.55156006221425], [-77.31985340238455, 34.55179930700997], [-77.31983779401013, 34.55215789849679], [-77.32040567309426, 34.552314017323766], [-77.32062801850192, 34.552525561762074], [-77.32091790742447, 34.55262562918869], [-77.32124539158019, 34.553023929396765], [-77.32195550619218, 34.55320176418549], [-77.32219156338832, 34.55327366984466], [-77.32274022563516, 34.55322587544992], [-77.32293985118807, 34.55331438917488], [-77.32323093847401, 34.55345292965628], [-77.32328495813758, 34.55361003258885], [-77.32325161840646, 34.553759220456094], [-77.32350586911006, 34.554068153492224], [-77.32356982374873, 34.55416188850749], [-77.32363332882785, 34.554194001983134], [-77.32428297239986, 34.55441938742479], [-77.32449712716698, 34.55442589245064], [-77.3250685467391, 34.55440727064346], [-77.32513492906975, 34.55442620150695], [-77.32533477050055, 34.554439148942], [-77.32571685261111, 34.55446876139331], [-77.32585230206865, 34.55447323827791], [-77.32610950827488, 34.5544884072102], [-77.32623600025698, 34.55430964176753], [-77.326649239651, 34.55397294080748], [-77.32678643542008, 34.553824297313696], [-77.32719220885834, 34.55368259661099], [-77.327729347169, 34.553289684968405], [-77.32823892909384, 34.553151042866084], [-77.32872192077474, 34.552779249735465], [-77.32954270177387, 34.55254070532081], [-77.32982431518633, 34.55251291175563], [-77.33006914634792, 34.552441470621076], [-77.3303446400901, 34.55241684005487], [-77.33060813024964, 34.55257559291514], [-77.33069671435463, 34.55263320325325], [-77.33075418952129, 34.55268100997556], [-77.33138564620533, 34.552909567844104], [-77.33154051695386, 34.55296030891752], [-77.33178065047417, 34.553023088018534], [-77.33216728829304, 34.55306603865457], [-77.33283703628706, 34.55294500875158], [-77.3329553425419, 34.55294626488611], [-77.33304429928491, 34.552896169972534], [-77.33317152233505, 34.55282313851287], [-77.33335377245895, 34.55269654344676], [-77.33369495123975, 34.55274788679433], [-77.33373166856205, 34.5527510106595], [-77.3337447518329, 34.55276795231292], [-77.33393988717702, 34.553076175691466], [-77.3342390249068, 34.55347774708704], [-77.3342274091269, 34.55365059884662], [-77.33371217587651, 34.55417249637514], [-77.33368168534791, 34.55420007802968], [-77.33365053687258, 34.55426033031451], [-77.3339974186843, 34.55435376939079], [-77.33388884399838, 34.55418890713021], [-77.3345032583217, 34.553922420801655], [-77.33460760263905, 34.55408556975854], [-77.3345466737743, 34.554547851685584], [-77.33458501904495, 34.55457844938581], [-77.33462513187428, 34.55465932284153], [-77.33464264878474, 34.55544057314231], [-77.33467765119627, 34.5555443955998], [-77.33445684855768, 34.55592425431743], [-77.33417305685391, 34.556426523767286], [-77.33387488211065, 34.55663907332682], [-77.33373064463942, 34.55709565812643], [-77.33372369620436, 34.55720142524587], [-77.33423739076107, 34.557566222458405], [-77.334114854228, 34.55777038144003], [-77.3344152362221, 34.557719177287865], [-77.33480843679962, 34.557729425198914], [-77.3357049211468, 34.5575330851045], [-77.33599150995765, 34.55747575486214], [-77.33609750933206, 34.55736324728561], [-77.33618318876212, 34.55728646289311], [-77.3375908627563, 34.55623474531149], [-77.33836314739494, 34.55697299627549], [-77.33837253140474, 34.55744607581845], [-77.33913589949178, 34.55734025461476], [-77.33914776529384, 34.557349800836874], [-77.33920797299503, 34.557386749890156], [-77.33947617184965, 34.557547390088054], [-77.3395028037492, 34.55755649855311], [-77.33952302357837, 34.55757949731471], [-77.33967979660952, 34.55776292393071], [-77.33970478132534, 34.557982676107514], [-77.33969157207687, 34.55818577349017], [-77.3397103570434, 34.558390613887255], [-77.3397546581416, 34.55860124393128], [-77.33972953525276, 34.55880085038534], [-77.33967961538761, 34.559211666698125], [-77.33952925502669, 34.55948274499678], [-77.33962135703261, 34.55978127072266], [-77.33962039094058, 34.559894182191194], [-77.33966760382167, 34.56005022574455], [-77.3397891654837, 34.56029445355914], [-77.3397857643931, 34.56042899884275], [-77.33980851245681, 34.56071621430238], [-77.33975314675845, 34.560979963240975], [-77.33960739696103, 34.561169679172615], [-77.33956431611993, 34.56165325741918], [-77.33912085345635, 34.56228672985062], [-77.33846898175398, 34.562036096333046], [-77.33833316129046, 34.562030072818395], [-77.33796485924351, 34.56180297849953], [-77.33754705491138, 34.561465956672684], [-77.33754621028706, 34.56146554602146], [-77.33754571686562, 34.56146513105905], [-77.33754363120221, 34.561464200492445], [-77.33752441125911, 34.56146921255704], [-77.33682287695123, 34.561640331782094], [-77.33684090942731, 34.56232630493291], [-77.3368934766844, 34.562409016056996], [-77.33703989590296, 34.56269298474357], [-77.3373104644288, 34.56319814222646], [-77.33729151349598, 34.563473104536236], [-77.33729225849824, 34.56377866867037], [-77.33734716356294, 34.56404194880203], [-77.33705749329135, 34.564409052365946], [-77.33706881145316, 34.56459324728702], [-77.33714920283138, 34.56471258841718], [-77.33733679813739, 34.564892522868774], [-77.3371487395467, 34.565298556176494], [-77.33713989160577, 34.56533587361468], [-77.3371427583089, 34.56534496441306], [-77.33714581351053, 34.56534763647094], [-77.33734460084338, 34.56574048392288], [-77.33739269147848, 34.56642195160376], [-77.33741539284924, 34.56657938863381], [-77.337426823713, 34.56670142674041], [-77.33747158057432, 34.566995851704114], [-77.3374648921021, 34.567079152787954], [-77.33741039129168, 34.56728829875978], [-77.33729990203052, 34.56744507763496], [-77.33714694971091, 34.56756523438728], [-77.33685858324844, 34.56762237780751], [-77.33675276617876, 34.56783296297181], [-77.33658145689839, 34.567733060749575], [-77.33635881577328, 34.5678052495894], [-77.33622262489314, 34.56774677346884], [-77.33609710384174, 34.56776049548335], [-77.33596479226166, 34.56786887991474], [-77.33571615354587, 34.56794064783995], [-77.33518765855862, 34.567760315732514], [-77.33517692595187, 34.56777115036004], [-77.33513468891091, 34.56780186195916], [-77.33468823961738, 34.56814336228396], [-77.3347239891899, 34.56830302801925], [-77.33466190652132, 34.56867342275321], [-77.33457969254347, 34.56889173939433], [-77.33438797132578, 34.56900032625157], [-77.33411275841061, 34.569176905550165], [-77.33438776649876, 34.56924986153933], [-77.33447707411429, 34.569220743121434], [-77.33458480279032, 34.56919302675514], [-77.33474797315208, 34.56912209526021], [-77.33478186171129, 34.56910812433963], [-77.33480058917426, 34.56909819771038], [-77.33488678436424, 34.56906563493112], [-77.33511688149325, 34.568968901753685], [-77.33517600639924, 34.56890371525235], [-77.33538233111122, 34.56879208656107], [-77.33557006537129, 34.5688030727118], [-77.3357190343647, 34.568785477576114], [-77.33596411050668, 34.568718447435025], [-77.33674497728927, 34.56922302940657], [-77.33674899815536, 34.569225321915106], [-77.33675166112661, 34.56922656447546], [-77.33709790471313, 34.569647908594526], [-77.33745896250988, 34.56988309825876], [-77.33753910081563, 34.56988861692233], [-77.33758669979868, 34.5698997902647], [-77.3376377015237, 34.56994375813189], [-77.33811100538537, 34.57010833920554], [-77.33823793734305, 34.570611099713155], [-77.33828766960687, 34.57069938739528], [-77.33830217674634, 34.5707234243603], [-77.338326375078, 34.57078095163236], [-77.33843685238864, 34.57098326536097], [-77.33846020999766, 34.57109912063418], [-77.33852305227725, 34.57119112041614], [-77.33856244894868, 34.571254186848236], [-77.33859923727272, 34.57129140137191], [-77.33871987353139, 34.57141619074062], [-77.33877205362438, 34.5714225915316], [-77.33882999183672, 34.57147049255198], [-77.33900833760163, 34.571558438839425], [-77.33911345474009, 34.57195107166734], [-77.3393752388103, 34.57224117527508], [-77.33957476582998, 34.57256398777816], [-77.33956882147358, 34.572704631140844], [-77.3395067426756, 34.57288007933971], [-77.33947481239161, 34.57304166898916], [-77.33938077195029, 34.57308946523789], [-77.33920563547956, 34.57321501274673], [-77.33911248514876, 34.57322381844625], [-77.33901083242046, 34.57325216904234], [-77.33884742763382, 34.57330515774909], [-77.33871838502745, 34.573357816858106], [-77.33854309606461, 34.57344564977137], [-77.3383241581943, 34.57365451296339], [-77.33830571435887, 34.573668587017025], [-77.33810935642786, 34.573890104313165], [-77.33792997551433, 34.57389063697158], [-77.33776422895974, 34.57392500648775], [-77.33759276459081, 34.573771094240534], [-77.33755244729575, 34.57375925176138], [-77.33753608098543, 34.57375426773011], [-77.33727293047775, 34.57367615086865], [-77.33680014982762, 34.57351641265103], [-77.33674824766298, 34.57354228786569], [-77.33655865561312, 34.57369938253644], [-77.3363034873761, 34.573902066469344], [-77.33623811076151, 34.57396585300895], [-77.33619876503357, 34.574138533232784], [-77.3362344383701, 34.57439092138302], [-77.33632124256697, 34.574837436223106], [-77.33735471449732, 34.57507894329404], [-77.33750987411787, 34.575083757555305], [-77.3375350433917, 34.57508554932326], [-77.33755452087534, 34.575071192270514], [-77.33763812809276, 34.575038196680765], [-77.33818608488892, 34.574811598399414], [-77.33832329623331, 34.57477382247822], [-77.33856139959919, 34.5746489949729], [-77.33879393512653, 34.57452984534839], [-77.33911159525553, 34.57439336933169], [-77.3394906147254, 34.57436346765845], [-77.33951749725587, 34.57435622430107], [-77.3398996099877, 34.57438138388268], [-77.3402497960185, 34.57428542240103], [-77.34033016151972, 34.57426586482371], [-77.34068793579709, 34.5739494390681], [-77.34137954791805, 34.573651127122204], [-77.34143808590346, 34.573601648952646], [-77.34151463758094, 34.573590282092525], [-77.3422644122084, 34.573293290729424], [-77.3429435713803, 34.573543276221415], [-77.34305221498369, 34.57356109002225], [-77.34323118345993, 34.57357768715598], [-77.34384024795389, 34.57350918099576], [-77.3439826385762, 34.573430122444954], [-77.34438471222161, 34.57348135417309], [-77.34462826462223, 34.573478815320485], [-77.3449058276805, 34.57344302219273], [-77.34513291784447, 34.57341665719211], [-77.34528326950733, 34.57351422011414], [-77.34538409586983, 34.57353433360868], [-77.34541621542843, 34.57354327514316], [-77.34566913993851, 34.5736106763188], [-77.34581009123147, 34.57372233525036], [-77.3459744890571, 34.573839338119086], [-77.3460757133683, 34.573962930733245], [-77.34620383514498, 34.57409897266949], [-77.34644559030586, 34.574196117032734], [-77.3465402844712, 34.574244402595234], [-77.34659772871538, 34.574257841002975], [-77.34670290411486, 34.574272441607114], [-77.34699166991007, 34.5743473872044], [-77.34713171640914, 34.57437104144007], [-77.34724155069071, 34.57435087083293], [-77.3472730231077, 34.57419857502981], [-77.34730161246657, 34.57407297494545], [-77.34732075515133, 34.57400002451216], [-77.34738606143867, 34.57375735968989], [-77.34741157935264, 34.57366003559058], [-77.34744323259676, 34.57362805488941], [-77.34753748047581, 34.573352820609855], [-77.34778041565733, 34.57321593467206], [-77.34793437909565, 34.57339137098483], [-77.34817425170652, 34.57346046203278], [-77.34820575410221, 34.57348439453192], [-77.34832100840231, 34.573501775159585], [-77.3485119524554, 34.57353491340165], [-77.34856818668032, 34.57355587657059], [-77.34867510095387, 34.57356604287762], [-77.3488084568506, 34.57343164597254], [-77.34905524030827, 34.573071530187775], [-77.34922998940557, 34.57265849856008], [-77.3492483377532, 34.57251926368728], [-77.34931255150458, 34.57246225926489], [-77.34935692336066, 34.57239342081884], [-77.3496270143396, 34.5719063888708], [-77.35002727206998, 34.571685333577456], [-77.35014527353067, 34.571810404033286], [-77.35031389413044, 34.57169847676696], [-77.35093348277448, 34.57143636184405], [-77.35094240494982, 34.571426418542934], [-77.35093356779545, 34.57129948658459], [-77.3509008448292, 34.57061901830663], [-77.35090358439567, 34.57058290710717], [-77.35091820482053, 34.570563755982164], [-77.35093404835695, 34.5705259276325], [-77.35122890818695, 34.5702185607048], [-77.35172251377959, 34.56970820714305], [-77.35177368775032, 34.569663719589656], [-77.35201385361897, 34.56957404336711], [-77.35251062799249, 34.56944700415691], [-77.35254761596336, 34.56945736744609], [-77.35319814830287, 34.56929528921941], [-77.35329870588845, 34.56923824109678], [-77.35337114741705, 34.569300613570505], [-77.3534870175938, 34.56936204127955], [-77.35408632001395, 34.569815680790846], [-77.35432946528103, 34.569827874697914], [-77.3548351072778, 34.570017123883375], [-77.35487412446383, 34.57008058892998], [-77.3549020826395, 34.57003758533943], [-77.35539867241783, 34.5702197756411], [-77.35547551293456, 34.570349501877445], [-77.35560101957613, 34.57039704669957], [-77.3556618592562, 34.570477262417896], [-77.35582854543091, 34.57054357948392], [-77.35587212907981, 34.57071696696532], [-77.35601085807505, 34.571073437675146], [-77.35596574327238, 34.57112804400319], [-77.35566136246442, 34.571357187735856], [-77.35557161161236, 34.57151270453622], [-77.35538706039982, 34.57150682595611], [-77.35526730673708, 34.57148067517337], [-77.3552039581746, 34.57144996423782], [-77.35514955988978, 34.57137246600308], [-77.3549364924775, 34.57134417250785], [-77.35487337852818, 34.57137975030625], [-77.354556506975, 34.57141399087081], [-77.354479368459, 34.571421853238064], [-77.3543110135018, 34.57154754121246], [-77.35426235753806, 34.57113918402097], [-77.35426767213791, 34.57094789190319], [-77.35408571812515, 34.570846470503], [-77.35333144151511, 34.57104619926754], [-77.35329761733325, 34.57107246192134], [-77.3532889913218, 34.571079449615645], [-77.35326285350246, 34.57109250184501], [-77.35327117724921, 34.57111976493857], [-77.3532975903428, 34.57111800004677], [-77.35393152724444, 34.571845370070456], [-77.35402389854782, 34.57189803041629], [-77.35408503639921, 34.57201560121959], [-77.35426913885055, 34.57244722892193], [-77.35443686009901, 34.572621743981486], [-77.35414908069997, 34.57344235495075], [-77.35487243351128, 34.57302871395981], [-77.3552253570188, 34.572888471268854], [-77.35526650028551, 34.57289944789076], [-77.35528211100221, 34.572907817487135], [-77.35530766662671, 34.5729209659595], [-77.35557379611205, 34.57321398324181], [-77.35562951004782, 34.5732991946889], [-77.35565256415813, 34.57330417480206], [-77.35566026088905, 34.57331173068896], [-77.3557120741348, 34.57334316182622], [-77.35610641334553, 34.573598729126665], [-77.35633846337329, 34.573621704993656], [-77.35644807046336, 34.57363624181166], [-77.35674841430838, 34.573663596658506], [-77.35702977457102, 34.573724516436634], [-77.35721193902688, 34.573495978421626], [-77.35723614408597, 34.57348596900384], [-77.35761140865931, 34.57341825455441], [-77.35763020304591, 34.57336759929723], [-77.3577777587032, 34.57325559599194], [-77.35766833236165, 34.57347142997709], [-77.35751951828692, 34.57387625589468], [-77.35744528015539, 34.57411266343776], [-77.35723553526623, 34.574606222061114], [-77.35720857174408, 34.574741143445465], [-77.35720535150631, 34.57477058234721], [-77.3568412651002, 34.575098588038905], [-77.35672609887574, 34.57514004538691], [-77.35644721890786, 34.575176995688345], [-77.35607397309798, 34.57533551718519], [-77.35603707355752, 34.57534599812131], [-77.35598473323662, 34.575370823523215], [-77.35572859171398, 34.575482632833314], [-77.35565901993995, 34.57551929815159], [-77.3555368683684, 34.57556687622414], [-77.35540020754692, 34.575600675695455], [-77.35526481494743, 34.57587246671574], [-77.35497831592322, 34.575824409909515], [-77.3548708029947, 34.57588142533911], [-77.35482898745826, 34.57591667871411], [-77.35456302040342, 34.575999991605194], [-77.35478300442162, 34.57606282497883], [-77.35487071994197, 34.576026983628196], [-77.35493667587119, 34.57601727836351], [-77.35526479165385, 34.57591363157776], [-77.35534991728585, 34.575886741373154], [-77.3555906698192, 34.57577859913993], [-77.35565886601808, 34.57579353754294], [-77.3556885102236, 34.57580605953263], [-77.35577105397158, 34.575826129145135], [-77.35605282207095, 34.57588391532818], [-77.35626560273336, 34.57595018416433], [-77.35644667902575, 34.576155469921005], [-77.35670383157728, 34.576263824796044], [-77.35680020613106, 34.57652710449519], [-77.35694392874126, 34.57681933167871], [-77.35723408795212, 34.57727565299203], [-77.3572609017522, 34.5772810024237], [-77.35726146258507, 34.57730981700654], [-77.35725463119189, 34.57733296918331], [-77.3573580539974, 34.57801101522901], [-77.35735322903133, 34.57814571207558], [-77.35762746641099, 34.57845933583086], [-77.35771012124809, 34.578429850019766], [-77.35802147876467, 34.57847109290053], [-77.35828204581595, 34.5785802994496], [-77.35841538715125, 34.57868032209478], [-77.35855993665334, 34.578552245852215], [-77.35880967944674, 34.57815719465991], [-77.35887831102076, 34.57800004712981], [-77.35924435254444, 34.57787349242223], [-77.35953761692276, 34.57776630612621], [-77.35959802315986, 34.57755226805549], [-77.35979868221914, 34.577160583285696], [-77.35977199751385, 34.57694842851068], [-77.36038658369867, 34.576494205656225], [-77.36059936790227, 34.57659998021309], [-77.36078056221024, 34.57655462386947], [-77.36100154746846, 34.57658499568875], [-77.3611746052815, 34.576485665196785], [-77.36134316902988, 34.57654057163578], [-77.36138358268202, 34.576716414623505], [-77.36156834278762, 34.577039095898], [-77.3616128876084, 34.57705994573586], [-77.36161722066848, 34.57710733099263], [-77.36171676320494, 34.57725303699127], [-77.36181163454933, 34.577503894031345], [-77.3619067948658, 34.57754979205366], [-77.36196208788488, 34.57758806633536], [-77.36232257963532, 34.577890847333855], [-77.3624391506037, 34.57792776132843], [-77.36274990422073, 34.578031990190155], [-77.36305119034456, 34.57774997627309], [-77.36308532189162, 34.57768174433978], [-77.36322116846162, 34.577642461964274], [-77.36353819474462, 34.57747419975273], [-77.36378362316461, 34.57748441632913], [-77.36403500483922, 34.57749753838459], [-77.36432622422134, 34.57746535532413], [-77.36461621869955, 34.57763662049783], [-77.36472014924493, 34.57765919094793], [-77.36489654178168, 34.577718717692335], [-77.3649711594012, 34.57774401986724], [-77.36511410310501, 34.577792492473485], [-77.36516452498617, 34.57781588037001], [-77.3652568678065, 34.577856924184715], [-77.36550804271408, 34.577960822658724], [-77.36567837910529, 34.578037204131554], [-77.3658150604016, 34.5781074255449], [-77.36590197447235, 34.578150592196536], [-77.3659264038038, 34.57815873565637], [-77.36595034340809, 34.57818161485667], [-77.366149252011, 34.57831100610601], [-77.36645708345581, 34.578533194220206], [-77.36659694367327, 34.578613114041424], [-77.36668978613804, 34.57866390713524], [-77.36684028142409, 34.57874037024293], [-77.36706446447945, 34.578849524876844], [-77.36708372431156, 34.57885239392867], [-77.3670979245598, 34.57885015997337], [-77.36709914011676, 34.57886528482425], [-77.36747765280099, 34.579068303232134], [-77.3675707126707, 34.57912162929914], [-77.36775970686298, 34.57919470599723], [-77.36783308734208, 34.57922564284417], [-77.36787159659436, 34.57925188770256], [-77.36808613175299, 34.579341047943345], [-77.36826553911321, 34.579442749465244], [-77.36833183012696, 34.57946542409314], [-77.36848318181431, 34.57951506352817], [-77.36860083548481, 34.57956134193478], [-77.36875134979768, 34.579575399454114], [-77.36905350169332, 34.57964274617376], [-77.36923505563684, 34.57963570507383], [-77.36944748741766, 34.57973477795127], [-77.36947981193052, 34.57976123218179], [-77.3695606103007, 34.57978443489296], [-77.36976709224703, 34.579834835666546], [-77.36984145018744, 34.57988808321205], [-77.37000213915897, 34.57989398075279], [-77.37023545169419, 34.57994385238153], [-77.37032525140654, 34.58000207017082], [-77.37050657220814, 34.580072734684094], [-77.3706294068773, 34.58012319462044], [-77.37086178397003, 34.58019571085572], [-77.37117617077759, 34.58040083822655], [-77.37132236816724, 34.58048209021013], [-77.37141729910434, 34.58054445191965], [-77.37154444688751, 34.58063530996542], [-77.37169411987743, 34.580750785494054], [-77.37173669426375, 34.5808249555326], [-77.37181118638642, 34.58092475055463], [-77.37193639329031, 34.58100550350112], [-77.37206594322095, 34.58112178124721], [-77.37213790051209, 34.58118384364245], [-77.37220512372203, 34.58117565394906], [-77.37239461577661, 34.5812786467458], [-77.37259908415257, 34.58136796163319], [-77.37268358692256, 34.58136631278281], [-77.37268656841749, 34.58145693336016], [-77.37285802520319, 34.58157770865326], [-77.37293972529699, 34.58178765585384], [-77.37295245764919, 34.58184318831896], [-77.37293909356796, 34.58190311715225], [-77.37298542804078, 34.58267977081931], [-77.3729775322369, 34.58268869602487], [-77.3729811000113, 34.58270062512907], [-77.37299264746261, 34.582703759411466], [-77.37309530689046, 34.5827823699243], [-77.37340854490544, 34.583027486758446], [-77.3734181883294, 34.58308385904115], [-77.37345249656437, 34.58346939024631], [-77.37344806676202, 34.58353647473996], [-77.37338638961812, 34.58355834603108], [-77.37326296610743, 34.58349669512539], [-77.37307678404585, 34.5834325903747], [-77.3729924136912, 34.58337520977902], [-77.37287325563086, 34.58342446875791], [-77.37259836676749, 34.58339810043797], [-77.37243350018046, 34.58336927728519], [-77.37240135782923, 34.58336828791029], [-77.3723193427486, 34.583331973321876], [-77.37220437153759, 34.583275508892605], [-77.37211580695956, 34.58323739583352], [-77.37190952388501, 34.58316028282266], [-77.37181038659345, 34.583127588595204], [-77.37157319588877, 34.583059970895896], [-77.37141638835826, 34.58301948450611], [-77.37133652832827, 34.583011142607916], [-77.37115148017662, 34.58295174979882], [-77.37106679968815, 34.582916097455225], [-77.3710224148783, 34.5828473928432], [-77.37091148920427, 34.58268134516659], [-77.3706286241292, 34.58219469190557], [-77.37062046159859, 34.582187920994954], [-77.37060867032007, 34.5821808218517], [-77.37009061531808, 34.5819860991527], [-77.36993996344185, 34.581852585025764], [-77.36984070135203, 34.58182033549787], [-77.3695621609977, 34.581782579095936], [-77.36922995772754, 34.581721308823816], [-77.3690526704781, 34.581735978418024], [-77.36885680693057, 34.581795050418364], [-77.36839472114984, 34.581790810723874], [-77.3682645873927, 34.58178343234674], [-77.36816180096395, 34.58179488284952], [-77.36797440813123, 34.58171112820673], [-77.36787060178995, 34.581669788419376], [-77.36778967825995, 34.58165053218922], [-77.36767361340443, 34.58160318404064], [-77.36763369478945, 34.581590936184654], [-77.36747662232864, 34.581543814804746], [-77.3672477752904, 34.581569212791294], [-77.36708254749749, 34.58164750354025], [-77.36680347460498, 34.581755848924445], [-77.36668846429377, 34.58176847614972], [-77.36632151404339, 34.58149556036376], [-77.36625984732966, 34.58149610523815], [-77.36590032116798, 34.58194830006323], [-77.36587025036114, 34.58198177145729], [-77.36586717777465, 34.58201459846716], [-77.3659002442448, 34.582125595959546], [-77.36611906988023, 34.582591444261894], [-77.36614601966461, 34.58282355640303], [-77.36629392065576, 34.582959966071826], [-77.36650677224418, 34.58296682101313], [-77.3666879797563, 34.582910523187], [-77.36731642322178, 34.58282703676834], [-77.3674760948351, 34.582815132174176], [-77.36772162267516, 34.58286121306658], [-77.36826411915811, 34.58293866209395], [-77.36855916998755, 34.583007204344895], [-77.36865811373542, 34.583046131644004], [-77.36884662051219, 34.58328373773397], [-77.36892157341464, 34.58341347692431], [-77.36902977041692, 34.58408280136313], [-77.36903578382176, 34.58410560869542], [-77.36902100876011, 34.58414082532729], [-77.36887752708407, 34.58479011294579], [-77.36877430047126, 34.584992384505895], [-77.3687533941965, 34.58531631901529], [-77.36869195658628, 34.58546630646752], [-77.36834026092994, 34.58582072084151], [-77.36826292164281, 34.58590337104825], [-77.36825574255451, 34.58590845181447], [-77.36824258942515, 34.58591807875745], [-77.36774005024294, 34.586276382215125], [-77.36747453654752, 34.5865868406473], [-77.3671452617952, 34.58692522376983], [-77.3668952740068, 34.58718650808152], [-77.36668608787402, 34.587390647465995], [-77.36644976307917, 34.587619983103714], [-77.3660549112586, 34.587931352154136], [-77.36596727163989, 34.588018928127525], [-77.36589762620994, 34.58818962655417], [-77.36576644241251, 34.58811426064418], [-77.36534986035711, 34.588291883962604], [-77.36510941212552, 34.58839008073627], [-77.36476024482653, 34.58854233145204], [-77.36478589794713, 34.58861475346704], [-77.36493973994178, 34.5889410415965], [-77.36479336455508, 34.589302182811046], [-77.36510909979614, 34.58910217540445], [-77.36571908812127, 34.589677934120026], [-77.36581494277151, 34.58975248899443], [-77.36589692182862, 34.589831478257445], [-77.36663079571792, 34.59039576354826], [-77.36666886611818, 34.590407471386115], [-77.36668482072747, 34.59041014613979], [-77.36671225132254, 34.590413587900215], [-77.36722558868745, 34.59057655144797], [-77.36747286751304, 34.590653894004866], [-77.36773371213063, 34.59080496331896], [-77.36805733918243, 34.591039445657145], [-77.36814598660814, 34.59115039206262], [-77.3682607569443, 34.59130257182573], [-77.36856667692246, 34.59148554909261], [-77.36887614614534, 34.59158463121156], [-77.36904878788997, 34.59161911367011], [-77.36960664552001, 34.59166543270656], [-77.36938674105568, 34.59218189212538], [-77.36983679215867, 34.592021217583486], [-77.36993032726302, 34.591719459832944], [-77.3706251593386, 34.59146348551221], [-77.37087885353796, 34.59090617439527], [-77.37106669097746, 34.59060602217031], [-77.3714706327506, 34.58975981167103], [-77.37148548554521, 34.58969658287263], [-77.37220231462808, 34.589063189325834], [-77.372456563454, 34.58898147357826], [-77.37299057535195, 34.588687568062916], [-77.37304212169232, 34.58862323065451], [-77.37335787939742, 34.588124143699915], [-77.3737789711391, 34.587887345512236], [-77.37390198204027, 34.58778273175746], [-77.37412348271968, 34.587618326332944], [-77.37440610484036, 34.587403992013265], [-77.37456730394713, 34.587234136381], [-77.37486301853546, 34.58698117741572], [-77.37517165995081, 34.586816316851994], [-77.37535558708066, 34.586698377941126], [-77.37545449103504, 34.58668399748389], [-77.37603441346653, 34.58661165547438], [-77.3761437252148, 34.58660034929048], [-77.37629086737162, 34.58661547224644], [-77.37653775783821, 34.58666891161486], [-77.37665923066719, 34.586697531026694], [-77.37693175105471, 34.58687167948219], [-77.37714977820232, 34.586947364870156], [-77.37737212794514, 34.58715025652444], [-77.37753825587647, 34.58732184090739], [-77.37768413898533, 34.587916260420506], [-77.3776693946896, 34.58795654657756], [-77.37747823064166, 34.58857341251378], [-77.37726016945055, 34.58886463780782], [-77.37693104842279, 34.58923467806192], [-77.37663483196462, 34.58927386997003], [-77.37647570445132, 34.589336245446226], [-77.37648501553652, 34.589456807513685], [-77.37642635232217, 34.58983390547998], [-77.37653671018793, 34.5901399745622], [-77.37659269084497, 34.59017417680412], [-77.37693066107555, 34.590542978230474], [-77.37695542854068, 34.590580100975345], [-77.37700958550627, 34.59059899315534], [-77.37744782861671, 34.59082769749151], [-77.37756012357418, 34.591368790115276], [-77.37759997882074, 34.59149077359399], [-77.3775751701414, 34.59179118454833], [-77.3777184124487, 34.59191649147518], [-77.37787837082999, 34.59174749549918], [-77.37785238857573, 34.59147088037696], [-77.37788048812838, 34.59132262772478], [-77.3779944808694, 34.590754145759725], [-77.37804964877327, 34.590449127218164], [-77.37823781457463, 34.589863048110374], [-77.3782080226147, 34.589577180686206], [-77.3782552484276, 34.589298823770505], [-77.37843337530205, 34.588695582144744], [-77.37847638891425, 34.588655895491534], [-77.37850750579064, 34.58853264317824], [-77.37859881245691, 34.58792080739265], [-77.37867473592053, 34.587811675200186], [-77.37898203114177, 34.58742919577046], [-77.37908049467661, 34.587328639486245], [-77.37903562388895, 34.58719106650473], [-77.37911804894, 34.58689866440007], [-77.37912654917687, 34.58671473976498], [-77.37912862927125, 34.58622861334251], [-77.37916335599442, 34.58604300881943], [-77.3791677009101, 34.58590378387876], [-77.3791486165729, 34.58577976710181], [-77.3789662228512, 34.58564685488851], [-77.37893524220516, 34.585615899649795], [-77.3789023704821, 34.58560771564627], [-77.37871179569491, 34.5854643330729], [-77.37870538726538, 34.58546051617598], [-77.37850847767386, 34.58528825728973], [-77.37850845664491, 34.58528821198601], [-77.37850841193477, 34.585287678087184], [-77.37842844149542, 34.584875228143865], [-77.37850855371725, 34.58478242567665], [-77.37866838511175, 34.5845882387778], [-77.37880902317985, 34.58439581936048], [-77.37929695829183, 34.58361982045291], [-77.37936915109883, 34.583543734039026], [-77.37950478733092, 34.58344642320916], [-77.37988535205685, 34.583176297036275], [-77.38008519599902, 34.58300971966713], [-77.38015347592635, 34.5829283702308], [-77.38008525590348, 34.582782163173874], [-77.38002206906204, 34.58259088215695], [-77.37998818141975, 34.58252762935618], [-77.37983982320162, 34.5822844195513], [-77.37973989345625, 34.58208660679044], [-77.37966232708646, 34.581725464542565], [-77.37961698058083, 34.581387833986085], [-77.37960017431266, 34.58130985912793], [-77.37929764203743, 34.5811156691606], [-77.37922327841135, 34.58101976904773], [-77.3791719509479, 34.580947011277374], [-77.37899992757893, 34.58065087684498], [-77.3789536800791, 34.58055390482653], [-77.37896571245756, 34.58048544948787], [-77.37893916443116, 34.58013143300649], [-77.37900336765178, 34.57980470774502], [-77.37903018940004, 34.57969375195866], [-77.37929815752187, 34.57923852629396], [-77.37930228448235, 34.57923442002265], [-77.37931423644943, 34.579228251777735], [-77.37982870050746, 34.57887654342042], [-77.38008630948603, 34.5788024899833], [-77.38039662614, 34.57873789285656], [-77.38048035186526, 34.57870057939644], [-77.3807643765808, 34.5789007827892], [-77.38087429947589, 34.57896401290618], [-77.3809030383801, 34.578999259833886], [-77.38098167867811, 34.57972113971938], [-77.38097247490673, 34.57983837987587], [-77.38097566752997, 34.57994741684473], [-77.38104041501691, 34.58049830097647], [-77.38107781091753, 34.5806723256031], [-77.38134280218846, 34.58097789095619], [-77.38166177437795, 34.58122864855687], [-77.38174948745224, 34.58133010310254], [-77.38183184198972, 34.581412770370164], [-77.38208805138531, 34.581765516457764], [-77.38210192094441, 34.58179840597253], [-77.38244961179, 34.582146382654315], [-77.38245999509672, 34.58216016543713], [-77.3824690336943, 34.582170053996826], [-77.38247949094573, 34.582200754797505], [-77.38264361347382, 34.582569454042044], [-77.38264905713379, 34.58277817471235], [-77.38270706745362, 34.58298487252506], [-77.38277572044782, 34.58332664940879], [-77.38277668940323, 34.58347121368338], [-77.38283746426664, 34.58381520610887], [-77.3826762450009, 34.584083124603225], [-77.38244905691661, 34.58451213773397], [-77.38238288716462, 34.58465860258583], [-77.38230617478237, 34.58474091810021], [-77.38225719161636, 34.584954591187994], [-77.38202973859194, 34.58562989249836], [-77.38213681578853, 34.58595051876287], [-77.38215523476003, 34.58603636911326], [-77.38220733757964, 34.58619340821319], [-77.38227379961253, 34.5864438439061], [-77.38225927335831, 34.586649879648704], [-77.38228735211693, 34.587117448485515], [-77.38205440020828, 34.587098510111154], [-77.38192407361127, 34.58705924432606], [-77.38181373753969, 34.58709998913686], [-77.3816603314891, 34.58715663846467], [-77.38164569790041, 34.58717122260762], [-77.3816603130795, 34.587232959950235], [-77.38167720302962, 34.58736073313494], [-77.38170225678354, 34.587375352899386], [-77.38185729894737, 34.58740800094269], [-77.38199674522151, 34.58739495041373], [-77.38205432308078, 34.587424653075615], [-77.38238627423122, 34.58734369531429], [-77.38237200702407, 34.587703383366666], [-77.38241662932288, 34.58773108309982], [-77.3824483012751, 34.58776131823147], [-77.38251638086118, 34.58782149102922], [-77.3825467942406, 34.58785452432359], [-77.38260141394827, 34.58788259965532], [-77.38263058200444, 34.58789425244517], [-77.38264529713751, 34.58790532767783], [-77.38266731606939, 34.58789682200169], [-77.38284238025821, 34.58766724601421], [-77.38321805818036, 34.58800599824187], [-77.38322439033307, 34.58801798133236], [-77.38323635287816, 34.5880481707888], [-77.38329119407945, 34.588148628051485], [-77.38329912835749, 34.588206595092494], [-77.38327042944218, 34.58838621924596], [-77.38350637318163, 34.58825541195382], [-77.38353952888471, 34.58817194246063], [-77.3835604471626, 34.58809355684837], [-77.38355488982893, 34.58803881625081], [-77.38346017920921, 34.58797109772672], [-77.38343340278897, 34.58795485470003], [-77.38324969454898, 34.58798707808075], [-77.3832363738535, 34.5879536034076], [-77.38291334287463, 34.587625355508756], [-77.38323650522548, 34.58736189886821], [-77.38332237262279, 34.58723431612908], [-77.38344748227559, 34.58712379698167], [-77.38363064787234, 34.58696199250335], [-77.38390286184776, 34.58692687221376], [-77.3840247289867, 34.58683325956413], [-77.38413493553553, 34.586905943326116], [-77.38416419254618, 34.58702048318175], [-77.38433728437957, 34.58708328306337], [-77.38441872299482, 34.58711609713735], [-77.38458939585287, 34.58719984734584], [-77.38469790205201, 34.58724437043341], [-77.38481275371628, 34.58723160387362], [-77.38505045663727, 34.58731728829362], [-77.38517500289713, 34.58733357985251], [-77.38525968874298, 34.58734412392561], [-77.3856008327212, 34.5873878775138], [-77.38582732196973, 34.58738583288588], [-77.38599489056446, 34.5873743054115], [-77.38628503009771, 34.58745192561881], [-77.38638893269957, 34.58744478603752], [-77.38643957543141, 34.58748701887566], [-77.38653867040765, 34.587527304489996], [-77.38678296148117, 34.58759296384093], [-77.3870370256976, 34.587606282312926], [-77.38717700194121, 34.58768198603382], [-77.38745677435375, 34.58781950296755], [-77.38754781126849, 34.58783139687948], [-77.38757103213412, 34.58783587734651], [-77.38762612093103, 34.58785444401115], [-77.38776805210868, 34.58788684889416], [-77.38785307874494, 34.58788303765328], [-77.38796507721305, 34.58790817500122], [-77.38818400463038, 34.58790333841726], [-77.38830267210889, 34.588122106362384], [-77.38835909655405, 34.58814473317945], [-77.38841746650202, 34.588168447709755], [-77.38855611357576, 34.5882216786019], [-77.38860075957854, 34.58824330347173], [-77.38868146991452, 34.58827977223092], [-77.38875312890846, 34.588311735521444], [-77.38886307011103, 34.58834741206374], [-77.38903610269607, 34.588440921336996], [-77.38910777875584, 34.588473020117135], [-77.38914716105508, 34.58849027916958], [-77.38928709023355, 34.58855550369289], [-77.38937789679484, 34.588567593231296], [-77.38938948613337, 34.58860224989473], [-77.3895411950921, 34.58866698870081], [-77.3896171657843, 34.58869984618326], [-77.38971484565437, 34.588742440344895], [-77.38973821406506, 34.58874592599842], [-77.38975823702725, 34.5887613615075], [-77.38987327831389, 34.58881152610006], [-77.38993523142013, 34.588838992328945], [-77.3902228849999, 34.58880900858237], [-77.39032927430435, 34.58897428019084], [-77.39038901757634, 34.589030594547914], [-77.39040544152768, 34.58909260293879], [-77.39047733636413, 34.58924179865827], [-77.39049383597764, 34.589327072631896], [-77.39058165273222, 34.58933916162907], [-77.39072328920108, 34.58933234732051], [-77.39102973382236, 34.58933274354417], [-77.39111736334556, 34.58924798918333], [-77.39120754751977, 34.58930432928092], [-77.39136224557828, 34.58937919407164], [-77.3915114008811, 34.58945717943464], [-77.39169137919352, 34.58956237413337], [-77.39170841943614, 34.58956969070805], [-77.39183519746746, 34.58973555809838], [-77.39183129994794, 34.58981598078941], [-77.39178087205094, 34.590033797674884], [-77.39160250329807, 34.59009544767086], [-77.39151132693495, 34.59006715509263], [-77.3913225237845, 34.590012915817425], [-77.39111730848113, 34.589682942919225], [-77.39093779329491, 34.59009618793375], [-77.39072318115468, 34.590159041567205], [-77.39034486907454, 34.59035804072415], [-77.39032908526075, 34.59036956645477], [-77.39032361160088, 34.59037221304909], [-77.39030033475149, 34.59038146651629], [-77.39013203981354, 34.59045112096188], [-77.39003582947844, 34.59052824725724], [-77.39003351170508, 34.59052969278546], [-77.39002858575982, 34.59053210167392], [-77.38993498626898, 34.59058782049469], [-77.38973860984305, 34.59067402817804], [-77.389737606314, 34.59067453679527], [-77.38973752498121, 34.5906753532325], [-77.38973854303048, 34.59067541107015], [-77.38993497052144, 34.590700701956884], [-77.39002124150039, 34.59075332475998], [-77.39009967569832, 34.59080015307512], [-77.39013198901361, 34.59082151103164], [-77.3901389346245, 34.59082182609855], [-77.39014522151096, 34.59082840273643], [-77.39025886764237, 34.590887591526226], [-77.39032900664819, 34.59095300167858], [-77.3905725909036, 34.59092891176858], [-77.39078665839801, 34.59116047496812], [-77.39056449289572, 34.59144629285271], [-77.39058955416377, 34.591613467590456], [-77.39047357230189, 34.59178606512336], [-77.39043590572963, 34.5918479084628], [-77.3903911256067, 34.59192143145719], [-77.39032886482065, 34.59200996989324], [-77.39030029410566, 34.592048972216446], [-77.39025250265288, 34.59208663944975], [-77.39010303667392, 34.59228949989921], [-77.39000245167817, 34.592474297264864], [-77.3899984209579, 34.59254784608165], [-77.39003360958131, 34.59264933363925], [-77.38993469791427, 34.59266544230097], [-77.38982109262152, 34.59269580548546], [-77.38954057772966, 34.59295093867642], [-77.38941499322586, 34.5929212359116], [-77.3892747190028, 34.592938626778114], [-77.38914649652224, 34.59295312849664], [-77.38911510283768, 34.5929213249305], [-77.38898004316728, 34.59293992265865], [-77.38894944860988, 34.59300284620343], [-77.3887923052585, 34.59314632453424], [-77.38894940623106, 34.593286272504685], [-77.38898110997445, 34.593297227590526], [-77.38914642459055, 34.59344211129664], [-77.38922206552154, 34.59342743675448], [-77.38954053187867, 34.59327310039356], [-77.38981236553377, 34.59355547449198], [-77.3899345703731, 34.59359161475712], [-77.39005069298113, 34.59368889511739], [-77.39022774884958, 34.59367978600698], [-77.39032864980096, 34.593624124371374], [-77.39036530620452, 34.593556364642254], [-77.3904146826311, 34.59342962055882], [-77.39051601331565, 34.59332234832483], [-77.3906133941369, 34.593190447950036], [-77.39072279412038, 34.593151800234196], [-77.39079763613749, 34.593069453805384], [-77.39086239042136, 34.59299820657169], [-77.3909198695991, 34.59287626208746], [-77.39093172326425, 34.59283783355477], [-77.39091987821587, 34.592807926823845], [-77.39080504524938, 34.59276753901412], [-77.39074414007175, 34.592463216532664], [-77.39073326380016, 34.59244188272677], [-77.39073450128947, 34.59242919125037], [-77.39072289332957, 34.59237988927993], [-77.3906526992115, 34.592104594758915], [-77.39064066994936, 34.59203066579485], [-77.39065073283211, 34.59195141088924], [-77.39072295579902, 34.591895562887146], [-77.39083998593671, 34.59170341377137], [-77.39111709596357, 34.59137759271377], [-77.3914803014016, 34.591518254865505], [-77.39151115329612, 34.5915081532177], [-77.3915417959424, 34.59150916283474], [-77.3919052305645, 34.59147630129574], [-77.3919759645, 34.591489746047145], [-77.39210226986727, 34.59145315282994], [-77.39221789398695, 34.59137864680798], [-77.39226324501342, 34.5913332398606], [-77.39229932340429, 34.59130025057803], [-77.39264172370926, 34.59094866412549], [-77.39269343907951, 34.5908928053069], [-77.39269803942436, 34.59088978713543], [-77.39271031939634, 34.59088306005824], [-77.39308753058651, 34.59068567253985], [-77.39335475207139, 34.5906534479189], [-77.39348160488028, 34.59063516374131], [-77.39360843151744, 34.5906168882835], [-77.39374640921832, 34.59073362937793], [-77.39414590529508, 34.59080941576898], [-77.39426972750348, 34.5908119908985], [-77.39451102758008, 34.59088332978334], [-77.39481059763395, 34.590846542264046], [-77.39481059715756, 34.59100470890628], [-77.39505784097747, 34.591145825287335], [-77.39519170835034, 34.59123007361589], [-77.3953003257133, 34.59135864185683], [-77.39545187756667, 34.591621118651986], [-77.39555060156908, 34.59164074652127], [-77.39555768755946, 34.59174609091296], [-77.3955759421728, 34.5918771433019], [-77.39533501164752, 34.59190409757646], [-77.39505777171492, 34.592041116349776], [-77.39493476267245, 34.59212799228051], [-77.39468010936004, 34.592297243919006], [-77.39466367349875, 34.592319159206866], [-77.39465107715404, 34.592315002801165], [-77.39440229197642, 34.59248029279388], [-77.39426957977992, 34.59251436765558], [-77.3942324582855, 34.59253410364302], [-77.39417105573897, 34.59256674882675], [-77.39412923352491, 34.59258898391908], [-77.39408845013007, 34.59261201572818], [-77.39407252959407, 34.592641524295175], [-77.39400721543892, 34.592712725290255], [-77.3940298600119, 34.59276964303518], [-77.39403391051817, 34.592815017771095], [-77.39407250880907, 34.59287684191602], [-77.3941397271962, 34.59293961591963], [-77.39426953130878, 34.59307845293585], [-77.39433373944824, 34.593127163351866], [-77.3943875458502, 34.59318858354713], [-77.39459334833512, 34.59323458611478], [-77.39466360073982, 34.59321482123961], [-77.39498486351356, 34.593180884472694], [-77.39505768542499, 34.59316706461454], [-77.39512116277388, 34.59315115768003], [-77.39525472902581, 34.59312339064398], [-77.39543595514787, 34.593054407864585], [-77.39545177461855, 34.59304881889152], [-77.39548349361257, 34.593030507825404], [-77.39569835050997, 34.592840583665875], [-77.3958458853791, 34.59259146541782], [-77.39588437732772, 34.59254811128867], [-77.39603872613299, 34.59230901779193], [-77.39660024278946, 34.592020276556795], [-77.39661986499637, 34.59200213614085], [-77.39663407571678, 34.591992911664406], [-77.39666381039889, 34.591979071681365], [-77.3972417286197, 34.59173325882746], [-77.39742224746806, 34.591541552220505], [-77.39746876563136, 34.591520531870785], [-77.39744708208022, 34.59147354256449], [-77.39742225100464, 34.59146932288037], [-77.39740810794804, 34.591463926978435], [-77.39709485218081, 34.591452521638665], [-77.39702817971931, 34.59145009408145], [-77.39665154784127, 34.59118250463846], [-77.39663412327943, 34.59117928993021], [-77.39663056640164, 34.591170590666955], [-77.39663059895835, 34.591166753252416], [-77.39662913647282, 34.59116159030345], [-77.39653183962068, 34.590866647838624], [-77.39645451960445, 34.59076758084204], [-77.39646436781992, 34.59058322661288], [-77.39646947372341, 34.59051828839937], [-77.39652885530293, 34.590332285641], [-77.39651807006405, 34.59020874235067], [-77.3966341958152, 34.58995410702616], [-77.39665658336857, 34.58988928807423], [-77.39669760938708, 34.589815055720706], [-77.39663420426155, 34.58981264580683], [-77.3964548322841, 34.589687085478786], [-77.39624015457859, 34.58958072272718], [-77.39621706345443, 34.589552998933684], [-77.39593268058081, 34.58966243991297], [-77.39584608514585, 34.589664306277236], [-77.39576935052933, 34.5896753750607], [-77.39564813369708, 34.58961018588209], [-77.39549296704953, 34.589588458185936], [-77.3954520274381, 34.58957797514803], [-77.395362682484, 34.589555097272275], [-77.39516981255588, 34.589558674819294], [-77.39505796941589, 34.58950511787358], [-77.39483675904214, 34.589302650064354], [-77.39481647945323, 34.58914122176105], [-77.39481462939924, 34.58909355652396], [-77.39480283594584, 34.589032615955226], [-77.39477870162753, 34.58897510278764], [-77.39473322670358, 34.5888930124152], [-77.39470880452448, 34.588848219314], [-77.3946639625035, 34.588830054730956], [-77.39453878695119, 34.588786186645336], [-77.39446693721383, 34.588773344756035], [-77.39441776776536, 34.58877920410192], [-77.39426990682475, 34.58877704913867], [-77.39402817575092, 34.58873425471751], [-77.3938758491025, 34.58875034267659], [-77.39380207434388, 34.58868224106174], [-77.3937063013984, 34.5886165608419], [-77.39348182497498, 34.588384269147745], [-77.39335678180977, 34.588377127087256], [-77.39336008087793, 34.588241925777524], [-77.39336619737499, 34.588116433702304], [-77.39348187317574, 34.58789673477574], [-77.39378317125376, 34.58733176083335], [-77.39393465672529, 34.586948520103476], [-77.39396109795089, 34.58688152720546], [-77.39397176108326, 34.58677684865695], [-77.39408857335681, 34.58643856952763], [-77.39417478415513, 34.58632340668372], [-77.39427014929699, 34.58607788099053], [-77.39431237518234, 34.585981717620484], [-77.39443237039293, 34.58571459000314], [-77.39466423363152, 34.5856494918909], [-77.39494255391604, 34.585466247260975], [-77.3950123173421, 34.585406640478524], [-77.39505830311876, 34.58535349386444], [-77.39514740896995, 34.58534068904638], [-77.39560136463804, 34.58510718489835], [-77.395846415924, 34.58500528455721], [-77.39612125740194, 34.584871645710116], [-77.3961751588826, 34.58479349577987], [-77.39624047351599, 34.584776234788706], [-77.39643830623675, 34.58461275834911], [-77.39663453529599, 34.58444687674189], [-77.39667794477435, 34.58441353684235], [-77.39675749700696, 34.58435528938417], [-77.397191020073, 34.584043182806276], [-77.39742264836403, 34.583809752226514], [-77.39772245841823, 34.58368996939199], [-77.39801236491945, 34.58353884658522], [-77.39821073808983, 34.583418145566526], [-77.39832467002445, 34.58340280860611], [-77.39886335560804, 34.58334827692058], [-77.3989988107906, 34.583288606539476], [-77.39909767263227, 34.583275041079865], [-77.39941359557218, 34.58312293448702], [-77.39978689053893, 34.582795519460745], [-77.40010932927039, 34.58267511762206], [-77.40040049704557, 34.58279255539594], [-77.40057495024159, 34.58289619559453], [-77.4006119812156, 34.5829101156644], [-77.40075769755529, 34.58292899061872], [-77.40113685322211, 34.58311796565922], [-77.40136301164625, 34.582991915345104], [-77.40170397092305, 34.58315983088352], [-77.40183085796545, 34.58311916823579], [-77.40215107448223, 34.583070625744625], [-77.40226851353808, 34.582837515490866], [-77.40274293231168, 34.5828539194938], [-77.40293913414827, 34.58274449741755], [-77.40326392083821, 34.583066511400965], [-77.40333316916404, 34.58307224684363], [-77.40368219750425, 34.58335610543428], [-77.4037036631977, 34.58337837595099], [-77.40372720742666, 34.58340580576281], [-77.40399711669096, 34.583868987682436], [-77.40411682594751, 34.58414253055029], [-77.40412125961038, 34.58415756268142], [-77.4042568712444, 34.584400778981944], [-77.40426075446423, 34.584696624072194], [-77.4043361261694, 34.58496003240297], [-77.40434900207181, 34.585137386716184], [-77.40435386334495, 34.58538204886494], [-77.40436434598597, 34.58564241544234], [-77.40435787624877, 34.5858060458252], [-77.40430520563606, 34.58604007912674], [-77.4042860420625, 34.58624098990826], [-77.40422303076109, 34.586359676567156], [-77.40413324630055, 34.58667477581893], [-77.40412980834468, 34.586688114520356], [-77.40412994477754, 34.586697379320455], [-77.40412132842864, 34.58671829194045], [-77.40403204524682, 34.587030590522524], [-77.40400055689281, 34.58713134436203], [-77.4039041760792, 34.587379247008094], [-77.40386911367288, 34.587574890352954], [-77.40381470917427, 34.587676919243506], [-77.40372730833006, 34.58792784718935], [-77.40368973745595, 34.588025353710265], [-77.40360510261871, 34.58833046241292], [-77.40360703978136, 34.58846186422115], [-77.40361401490733, 34.58858294226102], [-77.40362132208526, 34.588672091135585], [-77.40366248996241, 34.588808576661506], [-77.40367675864246, 34.58887637871932], [-77.40372733525138, 34.58903249332103], [-77.40383331588764, 34.589164176173824], [-77.40393063535029, 34.58926431569291], [-77.40383286373367, 34.58939211648722], [-77.4037273461779, 34.589470767975754], [-77.40351994256004, 34.58974816132272], [-77.40341298457332, 34.58984945963709], [-77.40333329649413, 34.590052173136364], [-77.40327143352886, 34.59020860005085], [-77.4032570461534, 34.59055308675521], [-77.40326589168357, 34.5907066131631], [-77.4032906267217, 34.59105498176803], [-77.40329163424869, 34.591434492958605], [-77.40330126285404, 34.59151256925917], [-77.40330196371535, 34.59190249720139], [-77.40330735414534, 34.59192971304897], [-77.40333333984647, 34.592067112497375], [-77.40334006261799, 34.59210204480802], [-77.40334334266255, 34.592108813756795], [-77.40337814363491, 34.5922678126869], [-77.40341101382454, 34.59231133597074], [-77.40352034609663, 34.592497027162324], [-77.40365652775311, 34.59270048155625], [-77.4035576714597, 34.592897648769245], [-77.4034443940631, 34.59358024570405], [-77.4032489094081, 34.59394202169136], [-77.40312431230043, 34.59405101165627], [-77.40293930458336, 34.59418310257685], [-77.40283029882036, 34.5942108791335], [-77.40271526346181, 34.59429323636624], [-77.4025452239957, 34.59442474386999], [-77.40248327244211, 34.594501344421275], [-77.40243373993307, 34.59457523777607], [-77.40239738473059, 34.59463349107621], [-77.40234818524833, 34.594742738929625], [-77.40233023787252, 34.59478312406986], [-77.40229098541892, 34.594869751019246], [-77.40227311349187, 34.59502299079681], [-77.40215114625448, 34.59517540005179], [-77.40205823699613, 34.59537847261028], [-77.40198594354999, 34.59548900294642], [-77.40175706145894, 34.5958798851086], [-77.40173152795418, 34.59592277922772], [-77.40171289334096, 34.595952976849176], [-77.4016165150447, 34.596118301793865], [-77.40157870465586, 34.5961846263329], [-77.4015705492446, 34.59619715043572], [-77.40156001658107, 34.59621114402566], [-77.40138483955363, 34.59642488608321], [-77.40137942912727, 34.59644339877504], [-77.40136297005768, 34.59646128433687], [-77.40103346186994, 34.596900159164605], [-77.40099982242079, 34.59693835500616], [-77.40096887350573, 34.59697457398162], [-77.40089742784315, 34.59699675682913], [-77.40057477415638, 34.59721059625769], [-77.40046032233562, 34.597284124807246], [-77.40037772353148, 34.59733751889751], [-77.40023455042083, 34.59744000020882], [-77.4002042877351, 34.59746980795579], [-77.40018067174745, 34.59751290113524], [-77.40009310115535, 34.597672694823785], [-77.40010598397956, 34.597802663941714], [-77.4000740640758, 34.597887728257604], [-77.39999589426306, 34.59809806212105], [-77.39998283378587, 34.59832546389015], [-77.39986884455692, 34.59843055919893], [-77.39978655587844, 34.59848407701316], [-77.39944491196422, 34.59882764414478], [-77.39941079480013, 34.598852336255824], [-77.39939244302869, 34.59887038079576], [-77.3993592953304, 34.59887570572333], [-77.3989983330058, 34.59899733273167], [-77.3987733218793, 34.59910670182237], [-77.39832827062729, 34.599286009777984], [-77.39821010622026, 34.5993334908217], [-77.39810926680515, 34.599336265460444], [-77.39770470105537, 34.5995032593431], [-77.39749799713647, 34.59961508245035], [-77.39742187269805, 34.59967412735455], [-77.39726402337142, 34.59973687362777], [-77.3970277537561, 34.599837294064535], [-77.3968875661715, 34.599894683222125], [-77.39668790977694, 34.6000160294915], [-77.39663362963196, 34.60006895947149], [-77.39657387960933, 34.600090949782], [-77.39635579072306, 34.60024767782199], [-77.39604500101308, 34.60037676296436], [-77.39584537345773, 34.600553172547365], [-77.3957849228275, 34.60056419774842], [-77.39545125337159, 34.6006209927209], [-77.39540761862152, 34.60063673342449], [-77.39525419196923, 34.600670853718576], [-77.39518548567612, 34.600715777286965], [-77.39513589904446, 34.600807791032096], [-77.39505711879156, 34.600883957605824], [-77.394863448994, 34.60097085120026], [-77.39466298306488, 34.60112857283908], [-77.39457179893334, 34.60113062864393], [-77.39430612078843, 34.60122703151299], [-77.39426885460405, 34.60125262637911], [-77.39424490528178, 34.601250203567446], [-77.39409732783074, 34.60126978003162], [-77.39407179265638, 34.6012812663424], [-77.39397495097052, 34.601314936202236], [-77.39391562537236, 34.60136755168959], [-77.39387472437093, 34.601383166161106], [-77.39382477890216, 34.60139039706121], [-77.39348058708204, 34.601578364150825], [-77.39334979185047, 34.60154599728291], [-77.3932287952345, 34.601575868063435], [-77.39308645516346, 34.601695883465965], [-77.39271051088664, 34.60190225122226], [-77.3926923121935, 34.6019137116315], [-77.39191549907369, 34.60202416982105], [-77.39190405587819, 34.602015449340804], [-77.39185384335877, 34.601991294115415], [-77.39111583768533, 34.60177326504527], [-77.39076346723402, 34.60173307124999], [-77.39032762196172, 34.60154493187851], [-77.39010708837458, 34.601448119186955], [-77.38969623219349, 34.60133841724667], [-77.389539402939, 34.60137069573664], [-77.38937477061025, 34.601376356396415], [-77.38897800444613, 34.601366544106035], [-77.38875116305697, 34.601359706819125], [-77.38865371202833, 34.60133808112956], [-77.38844571447024, 34.601358608100455], [-77.38835704360488, 34.60135073068517], [-77.3882782095327, 34.60137215587761], [-77.3880851233484, 34.60144672910141], [-77.38796289586534, 34.60152402020325], [-77.38772702355382, 34.60153717441228], [-77.3873375151644, 34.60167194831806], [-77.38717462844699, 34.6016690664038], [-77.3868413404615, 34.60149438006991], [-77.38679103057896, 34.60149032752315], [-77.38678053604534, 34.601490972165614], [-77.38676448948107, 34.60148817206914], [-77.38638641806082, 34.60146912593572], [-77.38619353624965, 34.60137099783944], [-77.3861572904333, 34.601346138663644], [-77.38599233676577, 34.601243032403374], [-77.3859488577181, 34.601245305823014], [-77.38585717355869, 34.60121168475803], [-77.38572129618159, 34.601098711653776], [-77.38559825282094, 34.60104285385487], [-77.38542650959566, 34.60103421030788], [-77.38540119317919, 34.60104114099438], [-77.3853911683387, 34.6010557791061], [-77.385204108924, 34.60116994096698], [-77.3849389984831, 34.60120505203784], [-77.3848099661728, 34.60128453180892], [-77.38473038107942, 34.60128837401118], [-77.38441584057115, 34.601306726214], [-77.38422532793635, 34.60122758408609], [-77.38420746555288, 34.60122498952465], [-77.38402174065624, 34.6012007777354], [-77.38390018022356, 34.601200153733956], [-77.38365332575626, 34.601132459415645], [-77.3836276296116, 34.6011529889087], [-77.38358959728684, 34.601154937685166], [-77.3832334762279, 34.60130664641591], [-77.38294556848919, 34.60109242170222], [-77.38283942438485, 34.60098498106707], [-77.38262395996345, 34.60082857738416], [-77.38252636088012, 34.60075537986255], [-77.38244540835359, 34.60051598164604], [-77.38239476189308, 34.600491610140246], [-77.38236314427586, 34.60044160216547], [-77.38234242294126, 34.60034328915061], [-77.38224837802315, 34.6003882942869], [-77.38219044134377, 34.600466492204056], [-77.38215707638575, 34.60058527574949], [-77.38205125762688, 34.60066006526739], [-77.38190306345138, 34.6007728586018], [-77.38185417156829, 34.60077637904], [-77.38167410301149, 34.60094712360503], [-77.38165706859834, 34.60096340123728], [-77.38165413098244, 34.60096518401627], [-77.38126294939497, 34.60095876155323], [-77.38098255274355, 34.60094262568724], [-77.38086883438882, 34.600936550392404], [-77.38069480480094, 34.600919120135565], [-77.38067177797177, 34.6009211200467], [-77.38065766186315, 34.60091487584245], [-77.38056770249722, 34.60091263136974], [-77.38047472012752, 34.60091177041173], [-77.38033234917825, 34.60088763956745], [-77.3801853600252, 34.600868287098365], [-77.38008059398177, 34.60093520633], [-77.37980541013027, 34.600810197651725], [-77.37971220483489, 34.60079594769072], [-77.37968651213667, 34.60078371515109], [-77.37960389317894, 34.60075022590201], [-77.37948947037742, 34.60071322507478], [-77.37942680905485, 34.60071997125214], [-77.37929241770368, 34.60068599784994], [-77.3790764432292, 34.60072332201342], [-77.37889830349863, 34.600666152701216], [-77.37882279209748, 34.60060858579606], [-77.37862278297831, 34.60055604457974], [-77.37853350408855, 34.600537361125006], [-77.37850422332666, 34.600520407431816], [-77.37837345289776, 34.60045107813668], [-77.37830719009816, 34.60042413165403], [-77.37828154757028, 34.600420555693276], [-77.37811013848008, 34.60039656076657], [-77.3779376603785, 34.600415994081544], [-77.37771603225053, 34.600353408708514], [-77.3769442056793, 34.59994877434667], [-77.37693542110348, 34.59994195346147], [-77.37692792342293, 34.599911183809496], [-77.37650194954976, 34.59916336834997], [-77.37669696943794, 34.598886153545955], [-77.37674623523108, 34.59870361188367], [-77.37687655051776, 34.59831611445081], [-77.37681851140712, 34.598268636734694], [-77.376474763095, 34.597957826821094], [-77.37646322684043, 34.597818564890495], [-77.37637513817313, 34.5974833925762], [-77.37667082616792, 34.59716296591011], [-77.376864500053, 34.596988325779], [-77.37689909442503, 34.59695135983145], [-77.37692880296144, 34.59687794324768], [-77.377080119721, 34.596695652144305], [-77.37750999888893, 34.59647075858131], [-77.37725704923477, 34.59615381237871], [-77.37692893657731, 34.59641919600698], [-77.3768365633931, 34.596468291084435], [-77.37653480724533, 34.59651906350354], [-77.37626934968984, 34.59651092756758], [-77.3761407159981, 34.5964891046122], [-77.37549448559828, 34.59660816228705], [-77.37535263629246, 34.596099827109775], [-77.37520004531999, 34.59595444384027], [-77.37489864249582, 34.595637984031214], [-77.3747933125366, 34.59516391804698], [-77.3749980096606, 34.59475193312434], [-77.37499250986929, 34.594674546357346], [-77.37495901323504, 34.59459401829465], [-77.37484277809021, 34.59460701372302], [-77.37456489411464, 34.594680222712725], [-77.37406391311914, 34.59526899573847], [-77.37396691455154, 34.5954881630502], [-77.37377642638154, 34.59553952262699], [-77.37363167791845, 34.59618038207098], [-77.3735784772872, 34.59682437305963], [-77.37357075389147, 34.59703827830671], [-77.37355744662707, 34.597275481314774], [-77.37377572682885, 34.59766533079127], [-77.37394821077335, 34.59783302511376], [-77.37421770976644, 34.59816700922154], [-77.37451238949711, 34.59860087322391], [-77.37453324264958, 34.59863060596976], [-77.37456362036761, 34.59866595657973], [-77.37495454779987, 34.59896506219853], [-77.37499479419864, 34.599845382236765], [-77.37524573964629, 34.600193469904355], [-77.37522056911861, 34.600337953006054], [-77.3751135868226, 34.60080568240264], [-77.37495705388348, 34.60083207871994], [-77.37461487131065, 34.60107743957939], [-77.37456284261444, 34.601117269422296], [-77.37454961952983, 34.60112863260814], [-77.37453934705542, 34.60114435286611], [-77.37434476239781, 34.60136210541926], [-77.37416859774413, 34.60149877489981], [-77.37410642539741, 34.601564325371825], [-77.37401174206073, 34.601644915455246], [-77.37387111982522, 34.601769376234024], [-77.37377436158292, 34.601842437789735], [-77.37361320839045, 34.60191460332334], [-77.3735857232905, 34.601927667759895], [-77.37357726756791, 34.601937109917486], [-77.37352750123898, 34.601980542689176], [-77.37338014403393, 34.602119880804835], [-77.37330973192302, 34.60217059715526], [-77.37322567035243, 34.60244097826414], [-77.37298586989638, 34.602558663168935], [-77.3727058545146, 34.60255921364228], [-77.37222506207587, 34.60235632656451], [-77.37219767789196, 34.60236332647499], [-77.37218091159687, 34.60235125506099], [-77.37218074589924, 34.60233321375729], [-77.37180359206485, 34.60224016644845], [-77.37152667921315, 34.60230112958661], [-77.37140944347077, 34.602297741560015], [-77.37119353097962, 34.60224279652765], [-77.37078611478125, 34.60235639201579], [-77.37077517978193, 34.60211109426777], [-77.37062132501887, 34.601915144833356], [-77.3704513115646, 34.60191631882448], [-77.37047018580107, 34.60173046115305], [-77.37033053679657, 34.601437143512754], [-77.37024573648513, 34.6013184943287], [-77.37000736730037, 34.60094799846363], [-77.36983369233616, 34.60025025986379], [-77.36971202878733, 34.60027246535773], [-77.36971022799929, 34.600141675164984], [-77.36976328646288, 34.60005811295886], [-77.36955759075849, 34.59961222574849], [-77.36907185740145, 34.59941259013116], [-77.36904576578642, 34.59943666514319], [-77.36899829103388, 34.59944622457394], [-77.36793738178305, 34.59954786149317], [-77.36748089521438, 34.59960103816976], [-77.3674692400773, 34.59959327372495], [-77.36745220856093, 34.599599383146185], [-77.36726505995998, 34.5996446751846], [-77.36602840076179, 34.59996901317561], [-77.36589260454498, 34.5999936633401], [-77.36554391928748, 34.600366167057196], [-77.36549831607348, 34.60039205419455], [-77.3652805699248, 34.60077952631369], [-77.36540338915928, 34.601084459375066], [-77.36547519950366, 34.60120059070378], [-77.36569543876192, 34.601568905554146], [-77.36575393481209, 34.60170908049258], [-77.36589177171071, 34.60197409998821], [-77.36608482343334, 34.602153916572675], [-77.36636050624878, 34.60232226010605], [-77.3665297357452, 34.602459571997386], [-77.36667977357314, 34.6025939142185], [-77.36697382647652, 34.60255068281357], [-77.36746805106895, 34.60255435493385], [-77.36787589476512, 34.60251385874929], [-77.3680912914908, 34.60292215676236], [-77.36821218808531, 34.60295211052407], [-77.36825612021175, 34.60304503619477], [-77.3686408345998, 34.60327762890696], [-77.36865725509877, 34.603272853218456], [-77.36904437721776, 34.60306684987776], [-77.36939567889192, 34.60311276023079], [-77.36947548719057, 34.60310753734925], [-77.36983272856527, 34.60283513720152], [-77.3701743413619, 34.603103209026386], [-77.37037727425329, 34.60317967840918], [-77.37062096172937, 34.60291669582671], [-77.37092919774359, 34.60336258745381], [-77.37116801585883, 34.60358776559977], [-77.37114580349586, 34.603897127042465], [-77.37104051582523, 34.6041956723912], [-77.37080984600235, 34.60443294698376], [-77.37062034063285, 34.60463334350433], [-77.3704474675805, 34.60494410556782], [-77.37022603878222, 34.60507618607978], [-77.37009861934122, 34.605180437946274], [-77.36993786650402, 34.60531783157275], [-77.3698317618561, 34.60544068095271], [-77.36958805711376, 34.605678521508125], [-77.36958189797267, 34.60583497970544], [-77.3692500273655, 34.605929066586], [-77.36904324015866, 34.60605765462732], [-77.3689494907302, 34.60609406698723], [-77.36864905260347, 34.60616366725952], [-77.36839697991444, 34.606274595665276], [-77.36828486450477, 34.606323077289595], [-77.36825482990707, 34.606357406421985], [-77.36818656122432, 34.60637842139724], [-77.36772909607373, 34.60665371151677], [-77.36746635805626, 34.60679722777185], [-77.36733247325245, 34.60685243196673], [-77.36713610309555, 34.60694959708403], [-77.36707212638737, 34.60699865353661], [-77.3668307480721, 34.60718458873045], [-77.36667784975448, 34.60730584382686], [-77.36663799392808, 34.607334063747544], [-77.36657857897913, 34.60738553590737], [-77.36618587410467, 34.60776146688876], [-77.36588923423912, 34.608049020462744], [-77.36576882844989, 34.608221617169235], [-77.36555070255086, 34.60838263557088], [-77.3654949166086, 34.60843146460006], [-77.36544118588446, 34.60845626556316], [-77.36525505170817, 34.60859146535619], [-77.36510059855706, 34.60880656530763], [-77.36505531761001, 34.60887851005128], [-77.36493670679802, 34.60914376550307], [-77.36471505485596, 34.60935204983009], [-77.36454078668095, 34.609623647027846], [-77.36431176561909, 34.60998676036043], [-77.36418192041418, 34.610138123447946], [-77.3640591571202, 34.610295581305884], [-77.36381294921608, 34.610643170812565], [-77.3636612938336, 34.61105296835318], [-77.36359080721579, 34.611212110851746], [-77.36356326980139, 34.611259588566064], [-77.36352282489048, 34.61136177022313], [-77.36343774530721, 34.61165869829402], [-77.36332052487924, 34.611882482676265], [-77.36330494696087, 34.61191222207753], [-77.36319722327882, 34.612117874909245], [-77.36317111769887, 34.61216775838065], [-77.36312825648946, 34.6122481966171], [-77.3630763710936, 34.61234754799416], [-77.36301859814, 34.612450129138196], [-77.36294627074811, 34.612578551946136], [-77.36286181114306, 34.61272851683686], [-77.36281616982939, 34.6128095560237], [-77.36278341719975, 34.612867710650164], [-77.36273375659462, 34.61296477768898], [-77.36270927989597, 34.613010878388565], [-77.36270032452593, 34.61303850780413], [-77.36268584827177, 34.61309212947427], [-77.36267752703922, 34.61325406627353], [-77.36273357601702, 34.613366253483505], [-77.36276782149588, 34.61341643794565], [-77.36279248837472, 34.61344979578659], [-77.362850683825, 34.613739661525074], [-77.36294803697564, 34.613851959761064], [-77.36284191455451, 34.61398421927798], [-77.36273326154611, 34.61406604144174], [-77.36239505404063, 34.61435610931552], [-77.36235974378928, 34.61438360734721], [-77.3623389249426, 34.614397951396725], [-77.36230669795242, 34.614403533517354], [-77.3619446724783, 34.61453952495202], [-77.36157442510205, 34.614448483721766], [-77.36155052355144, 34.61445420747128], [-77.36153133402652, 34.614459760738455], [-77.361290683192, 34.61451506172851], [-77.36116863893807, 34.61454592446226], [-77.36115628609747, 34.614559823614954], [-77.36099734090915, 34.614557280804945], [-77.36077694787757, 34.61457299923671], [-77.36076208959675, 34.61457648660927], [-77.36074590037472, 34.61457603218851], [-77.36036788758382, 34.61460422163579], [-77.36004491040421, 34.614617649193676], [-77.35979994053181, 34.614542433290104], [-77.35957939005456, 34.614849887068786], [-77.35927696631853, 34.61470611025679], [-77.35913906698497, 34.614400161738224], [-77.35896982269256, 34.61423225951408], [-77.35883483935568, 34.614019390627185], [-77.35879145008771, 34.61396165271323], [-77.3584683946734, 34.613995494473336], [-77.35836335131523, 34.61405076248987], [-77.3580028923522, 34.61432772522089], [-77.35782264992332, 34.61439550668474], [-77.3576113513814, 34.61462000143666], [-77.35741408894354, 34.61486362760439], [-77.35721420328227, 34.61493485191832], [-77.35696646589031, 34.6151373464873], [-77.35721404631897, 34.615239817391945], [-77.35744268185323, 34.615247126293596], [-77.3576664974805, 34.61546116887493], [-77.3577743377272, 34.615691064711356], [-77.35778622845515, 34.61586849213754], [-77.35800193948441, 34.61621415463377], [-77.35802366553438, 34.61623546703135], [-77.35802456753254, 34.616258747907196], [-77.35819893001434, 34.61642924080161], [-77.3582123782459, 34.61642951443477], [-77.35839596099714, 34.61656541731143], [-77.35844417463433, 34.61657098975397], [-77.35844293250929, 34.61662309784241], [-77.35879000912844, 34.61686960104893], [-77.35884489088201, 34.61693066766349], [-77.35890016532602, 34.61698185352415], [-77.35918409872687, 34.61709493618162], [-77.35945879107015, 34.617030208075434], [-77.35949668925927, 34.617320563094054], [-77.35954379937506, 34.617350806502714], [-77.35957814096948, 34.61742228518887], [-77.35972881169457, 34.617549374090736], [-77.35978806297526, 34.61770318436768], [-77.35980070791703, 34.61794133613729], [-77.35977968335106, 34.61812894264713], [-77.35957767273479, 34.61838910376192], [-77.35943009701616, 34.6184448957428], [-77.35889725063947, 34.61856408238476], [-77.35878915468041, 34.61859961547542], [-77.358647652451, 34.61856398444641], [-77.35859206002559, 34.61858055635085], [-77.35854292903377, 34.61857210852456], [-77.35845932772968, 34.618600558628856], [-77.35839490448069, 34.618683924108204], [-77.35836330774711, 34.618723306253436], [-77.35833347146384, 34.61876160720184], [-77.35827186619919, 34.61906271798924], [-77.35800043985623, 34.61919324887276], [-77.35794789862854, 34.61924164007684], [-77.35786484435305, 34.61953229419297], [-77.35765376088492, 34.61970851424787], [-77.35721148462828, 34.62023514985609], [-77.35690333935149, 34.62033378862148], [-77.3565308583829, 34.62060287515447], [-77.35642281359202, 34.620693260078276], [-77.35641232771458, 34.62072496218282], [-77.35640739366868, 34.62073694699796], [-77.35638753161358, 34.620777753731595], [-77.35619577256949, 34.621372366782595], [-77.35600293947832, 34.62164423779335], [-77.35563363381041, 34.622096539076495], [-77.3554551736639, 34.622380118183116], [-77.3548448274858, 34.62275774092167], [-77.35421418281048, 34.622920720083066], [-77.35348924847517, 34.62346527295076], [-77.35326753948566, 34.62342760523352], [-77.3531778069498, 34.62365235760668], [-77.35296198481976, 34.62377792768601], [-77.3522144392725, 34.62408726952802], [-77.35207474635742, 34.62417201952823], [-77.35187671559137, 34.62443913350634], [-77.3518155121917, 34.624779436071584], [-77.35176689736909, 34.625003774793086], [-77.35162193257496, 34.625103880086606], [-77.3511271480265, 34.62571800250015], [-77.35111638432377, 34.625730790959], [-77.3511103948107, 34.62574366838495], [-77.35107874733549, 34.62577456470912], [-77.35060017535322, 34.62639004751882], [-77.35054119974284, 34.6265281410037], [-77.35033140165832, 34.62667131268205], [-77.35013852250599, 34.62681937258246], [-77.35005094068939, 34.62684237696742], [-77.34994334358704, 34.626875162154576], [-77.34974227838939, 34.62689918412152], [-77.3495129562405, 34.626902508219175], [-77.34945492635408, 34.62706200776395], [-77.34917947256709, 34.627239819228244], [-77.34917051728995, 34.62723948117418], [-77.34916776726521, 34.62724741574958], [-77.34917076280493, 34.62725707032152], [-77.34929578001089, 34.6276575630161], [-77.34918322491315, 34.627929037803185], [-77.3490173063069, 34.62806966534109], [-77.34880663942783, 34.62824463642216], [-77.34873508633873, 34.62825805002465], [-77.34861214092697, 34.628363492712914], [-77.3484630047973, 34.62849687744659], [-77.34840745415079, 34.62853913647212], [-77.34833655844731, 34.62863330941622], [-77.34811079611887, 34.62892936155473], [-77.34794944787343, 34.62912682587235], [-77.34782060851825, 34.62932562974033], [-77.34765105304892, 34.62957145591449], [-77.34753537477619, 34.62972652506952], [-77.34744994313573, 34.629826727030334], [-77.34728178158885, 34.63004416927808], [-77.34722844301275, 34.63010716445741], [-77.34719265324642, 34.630139189791706], [-77.34708774360983, 34.63023433736018], [-77.34692208489689, 34.630385595490424], [-77.34685278031704, 34.63042363472695], [-77.34666909345353, 34.63055030787625], [-77.34664803932846, 34.63056608337061], [-77.3466404621547, 34.63057700826576], [-77.34642770000309, 34.63069396814703], [-77.34638609915656, 34.630904056347376], [-77.3461016889772, 34.63147222396019], [-77.34603513593112, 34.63166187385364], [-77.34592034107375, 34.63177197651389], [-77.34551508679982, 34.63220060181472], [-77.34539493413888, 34.632343147956625], [-77.3453563389227, 34.63236254887988], [-77.34481530066161, 34.6324381913071], [-77.34477353989614, 34.632436731730046], [-77.34470887071014, 34.63242525708412], [-77.34425228872, 34.63240491686456], [-77.34410973864695, 34.63186586527978], [-77.34407878357773, 34.631749986835636], [-77.34409686845449, 34.63156450055618], [-77.34392943589201, 34.63103029025603], [-77.34387665620395, 34.63093374095141], [-77.34384989593245, 34.63090539154034], [-77.34380130922484, 34.630784484478845], [-77.34344789265356, 34.630148611430684], [-77.34323611383259, 34.629824506162606], [-77.34318620301921, 34.62976254194769], [-77.34291064163425, 34.62953794725486], [-77.34276344834988, 34.629612350768994], [-77.34256023547233, 34.62975184905962], [-77.34232518119452, 34.62981026960714], [-77.34228725190391, 34.62983057575779], [-77.34205594797857, 34.62986522359272], [-77.34200595958978, 34.62981459077099], [-77.3416958197428, 34.62954515648869], [-77.34171409566525, 34.6293940329373], [-77.34178857869726, 34.62911042435337], [-77.34161936785836, 34.628873314972424], [-77.3415584202786, 34.62872002321642], [-77.34151952750753, 34.628631197307165], [-77.34144040372945, 34.62859287165243], [-77.3410431221275, 34.62833523121454], [-77.34070299832075, 34.62810888491427], [-77.3406352528295, 34.628086017423165], [-77.34052427971801, 34.627850743067725], [-77.34064996843668, 34.627844928149905], [-77.34074909189606, 34.627143136992544], [-77.34086328099603, 34.626832789064416], [-77.34093985791134, 34.62633474623799], [-77.34067707695563, 34.62638664719851], [-77.34060149149698, 34.626588328275275], [-77.34044256242635, 34.62681254418079], [-77.34008482865752, 34.62687977891588], [-77.33984445859896, 34.62702186876249], [-77.33952982612875, 34.62683069966629], [-77.33940655490596, 34.62680699802273], [-77.33917600939901, 34.62688102446292], [-77.33894713146312, 34.62683644794482], [-77.33849705843545, 34.62660827603914], [-77.33847955560917, 34.62660075421531], [-77.33815304623145, 34.62611273864458], [-77.33780513149856, 34.62597878229812], [-77.33770506206452, 34.62593193040622], [-77.33765719082933, 34.62594654583594], [-77.33729023872246, 34.62616521957888], [-77.33712305773749, 34.62622140345993], [-77.33693124555529, 34.62640119175267], [-77.33721001259467, 34.626757583325016], [-77.33690487873073, 34.62682680573003], [-77.33722860141371, 34.62679516439091], [-77.33723758684327, 34.626791608736085], [-77.33726260422685, 34.626806697114105], [-77.33768729945169, 34.62703493985573], [-77.33772674035953, 34.62724013643852], [-77.33765208819537, 34.62756824420946], [-77.3376173469293, 34.62780525943583], [-77.33766085100808, 34.628235319996286], [-77.33781015422889, 34.62839054172128], [-77.33788374407243, 34.62841498165131], [-77.3381453456971, 34.62842403460003], [-77.33820804608501, 34.62843598442193], [-77.33828322564307, 34.62842708441879], [-77.33874563745076, 34.62838346692716], [-77.33889349765218, 34.628661413280554], [-77.33908686482846, 34.62885586126906], [-77.33911525132203, 34.62905540139393], [-77.33909535013942, 34.62918546129207], [-77.33912435025002, 34.62981057936988], [-77.33912916034991, 34.62989748567238], [-77.33912820814355, 34.62992205381655], [-77.3391127180473, 34.63032173906058], [-77.33910469616956, 34.63052872542034], [-77.33910578662343, 34.63054047658534], [-77.33911278384628, 34.630549678442065], [-77.33911761258501, 34.630540786619605], [-77.3392644755578, 34.630508093404394], [-77.33946819706216, 34.630396917480226], [-77.3395818763071, 34.630307043483974], [-77.33982717632361, 34.63012241759081], [-77.3400425901389, 34.63006998634168], [-77.34020522421648, 34.63008561992392], [-77.34050422534746, 34.63030592602241], [-77.34067846982188, 34.63029662848624], [-77.34074800175158, 34.6305192659314], [-77.34080562547877, 34.630782482729614], [-77.34085005499864, 34.63092725437721], [-77.34087306556087, 34.63105940664516], [-77.34098531182796, 34.631107236113024], [-77.34115228879361, 34.63130776275816], [-77.34128917692841, 34.63138356154265], [-77.34138296372471, 34.6314932409765], [-77.34196423864783, 34.63204029446409], [-77.34192526118443, 34.63242026947627], [-77.34193473270467, 34.63288834082447], [-77.34186166511807, 34.63310303786458], [-77.3419310398352, 34.63355696238035], [-77.34198767518592, 34.63372506876714], [-77.34201053720733, 34.633909283690336], [-77.34216924426528, 34.63423342620527], [-77.34229963312367, 34.63452623873128], [-77.34231948475374, 34.63486498509783], [-77.34233564166601, 34.63494329381619], [-77.34227799357748, 34.63516623358505], [-77.34222580631314, 34.635380370126306], [-77.34222076651616, 34.63544005520984], [-77.34218955839768, 34.63550744581254], [-77.34197148257327, 34.635874548105676], [-77.3419444077874, 34.6358804932282], [-77.34187182494401, 34.635970484898195], [-77.34180856949781, 34.63605606281326], [-77.34169187045337, 34.636216789319846], [-77.34166428652765, 34.63625497201469], [-77.3416268789678, 34.63630658465934], [-77.34135190303249, 34.63663055419533], [-77.34121926980521, 34.63678453568655], [-77.34119262704145, 34.636815466906], [-77.3411780568165, 34.63684591949878], [-77.341046319415, 34.63701248731742], [-77.3409041029369, 34.637075659399386], [-77.34066978411326, 34.6372819594909], [-77.34065320563086, 34.637312698233146], [-77.34063335027368, 34.637321338818026], [-77.34060297114206, 34.6373347231184], [-77.34044045596826, 34.637447685090535], [-77.34035573573433, 34.63753287408599], [-77.34024692175409, 34.63760061298521], [-77.34005897548113, 34.63764912960862], [-77.33977833034753, 34.637819372857386], [-77.3397715863415, 34.63782405777514], [-77.33976680223334, 34.637827900379776], [-77.33957326663366, 34.63797251880424], [-77.33951215856516, 34.63811409874441], [-77.33938134175341, 34.63812695117425], [-77.33926187638275, 34.63831920010515], [-77.33923964182377, 34.63835103249355], [-77.33907168300107, 34.638505088009325], [-77.33897466958759, 34.63862552150453], [-77.33883192982688, 34.638545064059606], [-77.33862450216321, 34.638406678676546], [-77.33839770180728, 34.638256713619626], [-77.33823447813157, 34.638128048335176], [-77.33799088950508, 34.63791408938894], [-77.33771492985674, 34.637905547264396], [-77.3375463229437, 34.63788954951724], [-77.33741612760133, 34.63790397563605], [-77.33721097749084, 34.6378137578338], [-77.33718447428939, 34.63778859028337], [-77.33712775511123, 34.63776810144235], [-77.33693808866872, 34.637702371283545], [-77.33685602117724, 34.63764033987131], [-77.33652578076972, 34.6373706387502], [-77.33622033667143, 34.63717726374891], [-77.3361213987018, 34.63717047228744], [-77.33606226574848, 34.637140287171775], [-77.33600746923422, 34.637077847852105], [-77.33557235813609, 34.63696218795815], [-77.33542795641502, 34.63643736094374], [-77.33543531220326, 34.63631237197543], [-77.33543639287355, 34.636111592586694], [-77.33543203078472, 34.63609202893937], [-77.33539499541348, 34.636072936044116], [-77.33524054416728, 34.63597254518814], [-77.33521153415509, 34.635954567289176], [-77.33507557535792, 34.63594148754365], [-77.33507439291049, 34.635942197385496], [-77.33506701412615, 34.6359409155559], [-77.3349330200919, 34.63593196320024], [-77.33491199975292, 34.63593055878074], [-77.33488315714503, 34.6359286316736], [-77.33463731119812, 34.63615670188227], [-77.33432841008607, 34.635980949366214], [-77.33406091391788, 34.63565697310669], [-77.3339893982867, 34.63550414397639], [-77.33388356783071, 34.63499519872802], [-77.33387619504573, 34.63483833085792], [-77.33387361232019, 34.63465224930232], [-77.33387773595516, 34.634577274369136], [-77.33387563694177, 34.634416413613934], [-77.3337856082183, 34.63430683351191], [-77.33370644840942, 34.63443962799549], [-77.33376210906003, 34.63454812330324], [-77.33366728328141, 34.6345145989509], [-77.33352439221545, 34.634659787326214], [-77.33358899123158, 34.63487773764459], [-77.33322309294067, 34.635490628576676], [-77.33316702661803, 34.63566068588567], [-77.3329929386259, 34.63580350640464], [-77.33298284626639, 34.6358223478973], [-77.33296995135143, 34.6358240768244], [-77.33294916520298, 34.635841536605504], [-77.33277245818368, 34.63595953597587], [-77.33267821748994, 34.63596536943373], [-77.33259662751976, 34.635965462980195], [-77.33242172427693, 34.635965663315766], [-77.33236850924092, 34.63601716439152], [-77.33211470126753, 34.63601260902263], [-77.33204875654056, 34.63601894476291], [-77.3320089380355, 34.635980938769414], [-77.33175902807952, 34.63601412254653], [-77.33172850032265, 34.63601821746361], [-77.33169810846698, 34.63602229689957], [-77.33160804405058, 34.635993508098], [-77.33143335238171, 34.63597245145582], [-77.331398262991, 34.63596778601095], [-77.33133776583611, 34.63595438316807], [-77.33106863096704, 34.63592036613191], [-77.33092039945667, 34.6358982806228], [-77.33090456732513, 34.635900402572624], [-77.33089300946435, 34.635894199696025], [-77.33086005838345, 34.63588512563749], [-77.3307342311456, 34.6358492011496], [-77.33063722000719, 34.63582660488685], [-77.33043621474333, 34.63577977520072], [-77.33040623004536, 34.63580989781626], [-77.33035078109376, 34.635819678932], [-77.33030787617403, 34.63574987860157], [-77.33004987872334, 34.63562940411894], [-77.32988486294795, 34.635594108036955], [-77.32964006325773, 34.63541949460374], [-77.32956579663795, 34.63507786179085], [-77.3293251478359, 34.635208484328736], [-77.32899088429342, 34.63506804171082], [-77.32894907982208, 34.63505827208884], [-77.32891897729085, 34.635096415474564], [-77.32873887947724, 34.63519563373428], [-77.32870994574083, 34.6353330488424], [-77.32869764926049, 34.63549080086213], [-77.32865807091663, 34.63555419454803], [-77.32847569859622, 34.6357606832632], [-77.32835860546994, 34.63584150786455], [-77.32833330443478, 34.63584864106359], [-77.32828113180769, 34.63589899915508], [-77.32819918188581, 34.635977797922585], [-77.32812547971122, 34.636049237521746], [-77.32808403235384, 34.63625242672791], [-77.32793853788247, 34.6362739767021], [-77.3278243511422, 34.63634358009676], [-77.32779336264397, 34.63634808920158], [-77.32774906143814, 34.63637824394894], [-77.32765380046115, 34.636450159722486], [-77.32760367025467, 34.636471156363655], [-77.32735210920629, 34.63654190280864], [-77.32719833705133, 34.63659839167428], [-77.32710930982222, 34.636676812839255], [-77.32706198511934, 34.63669126425862], [-77.3269908014747, 34.636731285910265], [-77.32665553163108, 34.636920370982565], [-77.32650047723963, 34.63708334735138], [-77.32623558786429, 34.63707828143297], [-77.32615403642455, 34.63711936544181], [-77.32603454468193, 34.63717999226246], [-77.32590377238265, 34.63730013253435], [-77.32580081805035, 34.637456843272375], [-77.32540125193665, 34.63758185287052], [-77.3253296488759, 34.63762941715848], [-77.32524156187932, 34.637601893140555], [-77.32507154190752, 34.63766054110959], [-77.32502303310667, 34.63769665851874], [-77.32498506691431, 34.63769602320512], [-77.32475796897702, 34.637707290079874], [-77.32471079249936, 34.63773588061968], [-77.32465924879557, 34.637725407429514], [-77.32438807309335, 34.63772290111617], [-77.32422257091402, 34.63765125106109], [-77.32420713261396, 34.63764976262148], [-77.32404539005766, 34.637610465168194], [-77.3238935022531, 34.63747359828221], [-77.32375362332924, 34.63739961963448], [-77.32367239030597, 34.637346987219935], [-77.3235388844615, 34.63725077037472], [-77.32333153145993, 34.63712866750634], [-77.32331537091989, 34.63711928723591], [-77.3233056446059, 34.6371146550535], [-77.32329369363647, 34.637117380222705], [-77.32310526156103, 34.637159693062486], [-77.32301206415941, 34.637188031343655], [-77.32300690505274, 34.63722113215038], [-77.32282182347852, 34.63734403982883], [-77.32283281658724, 34.63794865181981], [-77.32263525982256, 34.63783717979307], [-77.32283848369912, 34.63804024936362], [-77.32257499127701, 34.63825899129142], [-77.32234664946502, 34.6382350094601], [-77.32225446562983, 34.63825694586817], [-77.32203901455226, 34.638149864299535], [-77.32181749468747, 34.63778829963451], [-77.32176429935541, 34.63769108569399], [-77.32189381721449, 34.63763726250053], [-77.32212388279159, 34.63760633318704], [-77.3221646754668, 34.63767505491245], [-77.32244399783853, 34.637658539936325], [-77.322311748107, 34.63738400495731], [-77.32216343507955, 34.63728882947892], [-77.32208536054503, 34.63725820976519], [-77.32204952671343, 34.63723585727243], [-77.32197832124604, 34.63722358832816], [-77.3214124600479, 34.637251578974706], [-77.32090616227256, 34.63729655812758], [-77.32077096215659, 34.63724521932711], [-77.32048671999726, 34.63697901194114], [-77.32022324593686, 34.6369190802927], [-77.32006959220104, 34.636940509747866], [-77.31994789095172, 34.6368977173157], [-77.31973177389202, 34.63685226292982], [-77.31968327989628, 34.63684756502887], [-77.31957791512659, 34.636883137547784], [-77.3195399803017, 34.63694827809996], [-77.31944944970351, 34.63704055459614], [-77.31927105108144, 34.6372633778789], [-77.31923658560167, 34.63733230257372], [-77.31912635486233, 34.63737584247804], [-77.31890074306243, 34.63749659907356], [-77.318595243331, 34.63727926773652], [-77.31853616794666, 34.63727501165073], [-77.3184408896009, 34.6372564780669], [-77.31820505021199, 34.63722015235965], [-77.31806045265753, 34.637189972538614], [-77.31770359910519, 34.637056254304596], [-77.31758700411606, 34.6369792988598], [-77.31748199444915, 34.63680730236667], [-77.31719653667592, 34.63660443486419], [-77.31701411518334, 34.63630678956595], [-77.31691585530707, 34.63601234192707], [-77.3167927738834, 34.63549315692151], [-77.31669472574693, 34.63495791282343], [-77.31672131036754, 34.63465898114035], [-77.31672693755567, 34.63432056501962], [-77.31671369464267, 34.634117430240096], [-77.31659320054516, 34.633832570129925], [-77.31660503779902, 34.63375870249127], [-77.31655549347794, 34.63378490514124], [-77.31633346373002, 34.633722342436855], [-77.31624120913368, 34.6338138713887], [-77.315885407676, 34.6334614658342], [-77.31576128519183, 34.633418476717864], [-77.31555493718201, 34.63358416905533], [-77.31502066998625, 34.633204130027174], [-77.31491563749782, 34.63308546591185], [-77.31486692556149, 34.632803216761644], [-77.31468610467279, 34.63241403714889], [-77.31468142506337, 34.632406655492], [-77.31467950459269, 34.63240528119849], [-77.31467815869483, 34.63240476372736], [-77.31467435454887, 34.63240305995175], [-77.314503105211, 34.63232994280098], [-77.31439795104222, 34.63238867260217], [-77.31435552172907, 34.63239206432398], [-77.31426310365079, 34.63246398615919], [-77.31418192232219, 34.63261047595472], [-77.31410705416835, 34.63274911854646], [-77.31384387970282, 34.633365406950674], [-77.31384235606522, 34.63362816750691], [-77.31336208504374, 34.63386452544583], [-77.31306055368546, 34.63391505408657], [-77.31261484263901, 34.63353383154576], [-77.3124363399043, 34.633401413874346], [-77.31231823982571, 34.6334058910908], [-77.31208583936615, 34.63332209947802], [-77.31197319546507, 34.63328148601133], [-77.31191032562195, 34.63329478759243], [-77.3116687368066, 34.63335943159165], [-77.31121278603, 34.63352751069324], [-77.31097187352131, 34.633616319060614], [-77.31098220566116, 34.63398369452117], [-77.31119692824007, 34.63419897024076], [-77.31134616139617, 34.634410954617685], [-77.3115243416617, 34.63452722641878], [-77.31173974104688, 34.63477960903673], [-77.31204125240613, 34.63521672645962], [-77.31263513524479, 34.635302800295094], [-77.31338962234024, 34.635959561822624], [-77.31343931779939, 34.63600646786442], [-77.31342433940414, 34.63724243856848], [-77.31329545315393, 34.63766040005312], [-77.31354988009028, 34.63808247861548], [-77.31389036876799, 34.63805185375364], [-77.31417843722548, 34.63794689728935], [-77.31485389294096, 34.63779728665713], [-77.31507957204653, 34.63759704993907], [-77.31517612167363, 34.63754398187099], [-77.31569581043472, 34.63747751557508], [-77.31581178762707, 34.63747033754197], [-77.3161977262567, 34.63743327414325], [-77.31633149718697, 34.63745492332459], [-77.31661158598779, 34.637627918490494], [-77.31664767335866, 34.63769045299089], [-77.31685353761625, 34.63801674113345], [-77.31700237987175, 34.63813608332325], [-77.3171275906, 34.63823179100967], [-77.31719904009715, 34.63832069956453], [-77.31740674548175, 34.63829277751658], [-77.31745294899477, 34.638257932041675], [-77.31752038085361, 34.63825861468667], [-77.3177514757703, 34.638150348547306], [-77.31820659373093, 34.638048302086546], [-77.31837335526757, 34.63805891604339], [-77.31852857365897, 34.63800580740212], [-77.31867798396264, 34.63798175205326], [-77.31882569777693, 34.63797077351228], [-77.31906185381547, 34.638299473074], [-77.31921308311033, 34.63835175718087], [-77.31934188155279, 34.63851962721853], [-77.31960818068944, 34.6390142282138], [-77.31979951661067, 34.63930086665531], [-77.31966036762778, 34.63973039024839], [-77.31959809537341, 34.63988498997837], [-77.3194692817392, 34.64019011047619], [-77.31946885337554, 34.64021892407589], [-77.3194528959987, 34.64024810603189], [-77.31940127963519, 34.64027443906728], [-77.31914374254667, 34.64058267562357], [-77.31907892782169, 34.64066560695544], [-77.31899133073327, 34.640774026883975], [-77.3189462707276, 34.64091395067838], [-77.31890271409169, 34.641024965239154], [-77.3188649190348, 34.64111692902341], [-77.3187907753204, 34.641482447875674], [-77.3187779803256, 34.6419728187155], [-77.31877598953642, 34.642241440674354], [-77.31870755508129, 34.64279464178741], [-77.3189558111786, 34.64240939813669], [-77.31918266536566, 34.64209191807321], [-77.31976741065229, 34.64184505876289], [-77.31977259974107, 34.641841166855684], [-77.31977472469157, 34.64183944344991], [-77.31978381680399, 34.641834940062566], [-77.32015681058714, 34.64152890297228], [-77.32034493332833, 34.641502730481285], [-77.32053841104582, 34.64146700318283], [-77.32090905162805, 34.64156408867462], [-77.32097433548509, 34.641448658400634], [-77.32114444428751, 34.64141536809021], [-77.32158315007725, 34.641292015735914], [-77.32177775583914, 34.641309751404506], [-77.32197623558886, 34.641226021756935], [-77.32219164649177, 34.64113379727677], [-77.32254517780885, 34.64093873459791], [-77.3227948210492, 34.64094907510843], [-77.32304623500016, 34.641094821943994], [-77.32314390786782, 34.64109335595025], [-77.32328480653442, 34.641196527870505], [-77.32336444154004, 34.641187774963], [-77.32345541943972, 34.641050438191535], [-77.32363716641292, 34.64107305190184], [-77.32384853945263, 34.6409725135279], [-77.3240334969459, 34.64074070378438], [-77.32432098512339, 34.6408674549596], [-77.32444196024021, 34.64085935372606], [-77.32468147644468, 34.64077920140782], [-77.32495083709438, 34.64076864713219], [-77.32536464467248, 34.64099297662718], [-77.32547975602385, 34.64105398235537], [-77.32581351119046, 34.641356776142544], [-77.32607840489621, 34.641359104825014], [-77.32619499574798, 34.641161801358514], [-77.32668769918976, 34.64120488530461], [-77.32711140849548, 34.641083556269884], [-77.32728647878287, 34.64099830605032], [-77.32741068961755, 34.640962407144904], [-77.32789465346103, 34.64083853083128], [-77.32796996590955, 34.640817350258246], [-77.32817773279592, 34.640683971257204], [-77.32827134050875, 34.64043144502791], [-77.3284379964838, 34.640355885428185], [-77.32868859944114, 34.640257516934426], [-77.32900121757933, 34.63997226592144], [-77.32915591922188, 34.639922834539576], [-77.32947311725067, 34.639852539223256], [-77.3296090851708, 34.639811008841406], [-77.33011403576316, 34.63973177174059], [-77.33023224283731, 34.63972590213432], [-77.33034397197993, 34.63969762424924], [-77.33073581234108, 34.63964888791354], [-77.3308808076558, 34.63976731592396], [-77.33123902960043, 34.639800672709875], [-77.33150627765276, 34.64022739579016], [-77.33165132371053, 34.640415960562365], [-77.33197868882667, 34.640632315620344], [-77.33250186409803, 34.6417126768776], [-77.33249619053723, 34.641779563523386], [-77.3325358904267, 34.6418251492348], [-77.33258533513275, 34.64187857444277], [-77.33274360822405, 34.641938409234626], [-77.33344284403402, 34.64232569111775], [-77.33392640457515, 34.64217995114653], [-77.334063664186, 34.642244712536254], [-77.3342964648267, 34.6420537812123], [-77.33444629190383, 34.6419340059285], [-77.33450328325537, 34.641864374398764], [-77.33471885557456, 34.64178088398206], [-77.33491457347, 34.64170825276767], [-77.33510021380462, 34.64164863640367], [-77.33519869840848, 34.641719787764124], [-77.33533512676668, 34.641689019130816], [-77.33542375615154, 34.641665607748436], [-77.33553691423134, 34.64162424342754], [-77.33561051436712, 34.641612508641956], [-77.33570567795104, 34.64147539202865], [-77.33578229352618, 34.641439257025056], [-77.33588039422855, 34.641315233404974], [-77.33594601280562, 34.64092483534129], [-77.33622459667995, 34.64087134847058], [-77.33650403274558, 34.64085768388854], [-77.33748937917322, 34.64103132245784], [-77.33753363256035, 34.64101327013704], [-77.3375682659089, 34.64104685164961], [-77.33760513524587, 34.641078552449706], [-77.33805913649128, 34.64122309081769], [-77.33819914546518, 34.6411389432022], [-77.33864043123448, 34.64122031058416], [-77.3388722932653, 34.64130260118779], [-77.33907701846022, 34.64150402360781], [-77.33923584761574, 34.641698743892924], [-77.33928256872638, 34.64175123009364], [-77.33944041911548, 34.64193263560762], [-77.3395541307275, 34.64207705636188], [-77.33970648922411, 34.642267739705076], [-77.3398141820408, 34.64234073749077], [-77.33985584090925, 34.64245764298714], [-77.3399545690149, 34.64266569577632], [-77.34009465735475, 34.6429335397768], [-77.34021682950505, 34.64321428764011], [-77.34022887288528, 34.64324186683831], [-77.34023235938704, 34.643249958282986], [-77.34023853030983, 34.64326443372241], [-77.34036280617991, 34.64355075404009], [-77.34041325967895, 34.64364712565945], [-77.34046728219836, 34.64381162233073], [-77.340562258877, 34.64404867162332], [-77.34062031943856, 34.64418903223842], [-77.34070996236751, 34.64423939695368], [-77.34074503250865, 34.644249660928466], [-77.34085204243951, 34.644304317569336], [-77.34102009203782, 34.644407827615254], [-77.34107469108542, 34.64443756962403], [-77.34110707709173, 34.64445815488965], [-77.34127229357439, 34.644563169781534], [-77.3414433683569, 34.64453849004785], [-77.34155118164635, 34.64464231739224], [-77.3415752896244, 34.64475361765571], [-77.34159740088742, 34.64486668000671], [-77.34163641500115, 34.64516722484261], [-77.34162136283771, 34.64522267048993], [-77.34165475347972, 34.64558540184404], [-77.34165482719638, 34.64558669506523], [-77.34165501388087, 34.64558770570895], [-77.34165457338275, 34.64558942571325], [-77.34162355719278, 34.646012984648436], [-77.34160203969061, 34.64620549129064], [-77.34158925113907, 34.64628915853152], [-77.34156821699888, 34.64644257826674], [-77.34156489771698, 34.64650443740288], [-77.34155123641061, 34.6466682566267], [-77.34153921813486, 34.64681408422933], [-77.34153397319996, 34.64686927597882], [-77.34152893661876, 34.646982642784415], [-77.34152524749264, 34.64713466218839], [-77.34151543222244, 34.647286612893915], [-77.34151502094062, 34.64729387481602], [-77.34149903383243, 34.647443810732135], [-77.34141780417363, 34.647597351553415], [-77.34136756465739, 34.64773611181755], [-77.34142160082182, 34.6480387643314], [-77.3413551672855, 34.64815981048248], [-77.34125592319639, 34.648551340854475], [-77.34103468220042, 34.64887711153311], [-77.34082007224046, 34.64881170472382], [-77.34047344764632, 34.64907227028379], [-77.34043665115702, 34.64908757236347], [-77.34031033386233, 34.6488211321895], [-77.34023000906137, 34.64885589007336], [-77.34015852835066, 34.64883463591235], [-77.34013539429137, 34.648839781103895], [-77.34008408401525, 34.64892633318895], [-77.33995619976793, 34.64898481649639], [-77.34010073816926, 34.649009204792705], [-77.3401996647489, 34.64904022516428], [-77.34042522039498, 34.64913144317091], [-77.34044062660737, 34.649137246965836], [-77.34044688837258, 34.64913851202754], [-77.34046509530201, 34.64914756905773], [-77.34097837567847, 34.649220771635264], [-77.34105582403369, 34.649466888876844], [-77.34121418417031, 34.64977025857418], [-77.34125194441079, 34.649827310719786], [-77.34129313162592, 34.649856314424134], [-77.34167195352519, 34.650143940171816], [-77.34189922867877, 34.6499927100985], [-77.34211067988991, 34.65001649969988], [-77.3423170011899, 34.6500150447517], [-77.34237011669228, 34.65013048528877], [-77.34259552474953, 34.650271121422634], [-77.34272636559723, 34.650352755077705], [-77.3428454782568, 34.65048723220927], [-77.34300262082215, 34.650703584562365], [-77.34310483316618, 34.65075164025986], [-77.34312872199874, 34.65087034975274], [-77.34326669873589, 34.65100527026169], [-77.34330574940276, 34.651057048278815], [-77.34340738270365, 34.65112441303032], [-77.34348066392846, 34.65115575259269], [-77.34363070212686, 34.65122344036691], [-77.3437582432034, 34.651277074924785], [-77.34397969840026, 34.65131594374443], [-77.34409930253446, 34.65138097246388], [-77.34419608448462, 34.65146163615148], [-77.34428258514492, 34.651496360211965], [-77.3443162481899, 34.651510782168955], [-77.34438740077094, 34.65154156204622], [-77.34443535672365, 34.6515620173004], [-77.34445792340665, 34.651572225527005], [-77.3445242223186, 34.65160221638302], [-77.34463402505216, 34.65165188660193], [-77.3446794493884, 34.65165285495161], [-77.34480236862115, 34.65169295365706], [-77.3449597506229, 34.651672002818444], [-77.34510519197164, 34.651865020858274], [-77.34516657574305, 34.651911977532926], [-77.34532689291667, 34.65201783611986], [-77.34535133223889, 34.652034681784784], [-77.34535648110824, 34.652034755057244], [-77.34551831727086, 34.65206898480785], [-77.34578826798675, 34.652193242025085], [-77.3458453714162, 34.65221504027037], [-77.34593930998646, 34.652255862179274], [-77.34620073196766, 34.65227818572186], [-77.34633636864254, 34.65239115597385], [-77.34648934323235, 34.652518988640075], [-77.34658113674172, 34.6525777381341], [-77.34679384819003, 34.65263363799262], [-77.34695005256404, 34.652820131664534], [-77.34737293458429, 34.653241671609706], [-77.34755479588216, 34.65342355881624], [-77.34773376769583, 34.653533082189426], [-77.3479744002947, 34.653741049991595], [-77.34823320509221, 34.653967552113286], [-77.34837892512955, 34.65408840303803], [-77.34851514341327, 34.65423432596159], [-77.34894956003765, 34.65471318959428], [-77.34913102096317, 34.6548958978578], [-77.3493094062368, 34.65508577846455], [-77.34931974263708, 34.65509639438683], [-77.34933039862297, 34.65510397413741], [-77.34957316841046, 34.655168771088036], [-77.34967262810355, 34.65521356413042], [-77.34995508067638, 34.655419115997745], [-77.34983944044161, 34.65578990062502], [-77.34982136645822, 34.65585947912992], [-77.34983411258719, 34.65589100544667], [-77.34957886211693, 34.656314780777805], [-77.35011711474958, 34.656388459630804], [-77.35025259478032, 34.656505276186664], [-77.35054331718109, 34.656692924130446], [-77.35087192644197, 34.65698121632114], [-77.35101384297832, 34.657106180131564], [-77.35136450016361, 34.65736368831787], [-77.35175264969848, 34.65770426815572], [-77.35217836124188, 34.65804897338256], [-77.35255913712439, 34.65842113754792], [-77.35299476019034, 34.65872925353001], [-77.3532547980968, 34.65869581342499], [-77.35384235767835, 34.65896440957185], [-77.35395539098221, 34.6589949739531], [-77.35400097125228, 34.659033680143835], [-77.35405400780202, 34.65907620446882], [-77.35475226262899, 34.65977268138578], [-77.35478600181719, 34.65977611341798], [-77.35482485750012, 34.65981433135205], [-77.35541423009523, 34.659879773190575], [-77.35587547553314, 34.659915668716415], [-77.35610662211724, 34.66013807203771], [-77.3562754199381, 34.660272189773906], [-77.3564196619785, 34.660439270461914], [-77.3565014642047, 34.660508991837034], [-77.35665775718715, 34.66066358402448], [-77.35684999540663, 34.660802159174615], [-77.35688584050858, 34.6608278762835], [-77.35714312961966, 34.660850933066364], [-77.35754552726927, 34.661128614157484], [-77.35757365010495, 34.66114691454026], [-77.35772621726298, 34.661947801044064], [-77.35772394831771, 34.66199785809269], [-77.35770215437232, 34.66256599047806], [-77.35756644714856, 34.66261892665521], [-77.35742664910286, 34.66283296494303], [-77.35738332857579, 34.66293561892749], [-77.3574452328705, 34.663124120546044], [-77.35761672426503, 34.66315338652215], [-77.3576598935629, 34.663083316792516], [-77.35774746122517, 34.66309989261241], [-77.35797671980946, 34.66306642620113], [-77.35840909982514, 34.66354200574132], [-77.35839682393325, 34.663738435840074], [-77.35838371809011, 34.66378918661869], [-77.35838903200883, 34.66385972894585], [-77.35841478337095, 34.66402861223319], [-77.35840434790288, 34.66412685395991], [-77.35840221875776, 34.66415218523122], [-77.35840740849326, 34.66419514522537], [-77.35841089038621, 34.664272840589675], [-77.35843561896496, 34.66442866968096], [-77.35846013056393, 34.66447811698302], [-77.35848479049072, 34.664506381372675], [-77.35847035445478, 34.66457008096749], [-77.35851630732814, 34.66482907688426], [-77.35854508144311, 34.66498548558882], [-77.35854236931789, 34.665091831461474], [-77.35854838450145, 34.66519859196908], [-77.35854922162972, 34.66527825418844], [-77.35857002028621, 34.66546944617244], [-77.3585920317465, 34.665951725466755], [-77.3585923189355, 34.66595319002992], [-77.35859224128451, 34.66595378077359], [-77.35859213613287, 34.665954547172], [-77.35856172720044, 34.66637095394374], [-77.35857915372313, 34.66644296552897], [-77.35859873540836, 34.66673667205732], [-77.35855882043916, 34.66693314583919], [-77.35858274799462, 34.66722270304641], [-77.35859787567355, 34.66741516747955], [-77.35841040699626, 34.66767008722348], [-77.35829158035767, 34.667944632914526], [-77.35814111819073, 34.66810760753117], [-77.3579425395208, 34.66823627647543], [-77.35793529231981, 34.66824423030696], [-77.35790062699851, 34.66845676694973], [-77.35793926316396, 34.66848041980781], [-77.35813277719328, 34.66856530665915], [-77.35820898678043, 34.668613579717906], [-77.35841590278255, 34.6686207199748], [-77.35860123962632, 34.668705805460235], [-77.3588225758898, 34.66884645921877], [-77.35888683898617, 34.668880141217905], [-77.35891314880917, 34.668969338042906], [-77.35908983148481, 34.6692971301978], [-77.35897817526353, 34.66948802482537], [-77.35893623941726, 34.669630535521165], [-77.35883585926099, 34.66981940871874], [-77.35882078916006, 34.669986717562196], [-77.35881409304915, 34.67011878599041], [-77.35904102968742, 34.67027860932686], [-77.35907400098122, 34.670312903990435], [-77.35911525819373, 34.67033500091351], [-77.35935928492077, 34.670487486597885], [-77.35944896670767, 34.67054367468346], [-77.35962171807634, 34.67065191103518], [-77.35964160167241, 34.67066435334793], [-77.35966759589482, 34.67067991696243], [-77.35987618560415, 34.67080610519477], [-77.3599367388792, 34.6708313498527], [-77.36013580320818, 34.67094255409016], [-77.36022116319157, 34.67100659431249], [-77.3603389791241, 34.67107506431506], [-77.36038997500827, 34.67109777308154], [-77.36053664521224, 34.671157928103895], [-77.36066220575894, 34.671190760477025], [-77.36072304106966, 34.67121153426598], [-77.36081624686233, 34.67125318502316], [-77.36088747348805, 34.67128204935113], [-77.36112442051112, 34.671390897611225], [-77.3611994371577, 34.67140165593289], [-77.36122227563706, 34.67141850864634], [-77.3612251103953, 34.671440702770774], [-77.36145458400158, 34.67155352321723], [-77.36151827544819, 34.67158484161242], [-77.36166011327475, 34.67162462763571], [-77.36172838231818, 34.67164111489464], [-77.36188627176853, 34.671695744101825], [-77.36203813539703, 34.67181638026101], [-77.36216287003805, 34.67187701445629], [-77.36224481162182, 34.67192371501884], [-77.36244522826667, 34.67205385045206], [-77.3624948876959, 34.67209306799333], [-77.36257622612436, 34.67215010730321], [-77.36267704853762, 34.6722159784176], [-77.36271396860771, 34.672241171214075], [-77.36274415066805, 34.67226522563731], [-77.36299098754299, 34.672422118503405], [-77.36304926843697, 34.6724591623618], [-77.36325244623396, 34.67257587945565], [-77.36327648462174, 34.67259653839417], [-77.36330181534521, 34.67261751738781], [-77.36349006213523, 34.67278818763556], [-77.3635471222076, 34.67278239893229], [-77.36373507781563, 34.67297499559316], [-77.36377162934775, 34.67300377677007], [-77.3637650233235, 34.67304125486408], [-77.3639692706321, 34.673199109052874], [-77.36399835241482, 34.6732234490698], [-77.36400405580984, 34.67325210231216], [-77.36408500186243, 34.67331587241383], [-77.36412551385419, 34.673322660444015], [-77.36420931789924, 34.673403048198445], [-77.36428370369555, 34.67339798215324], [-77.36434190098123, 34.67344937007281], [-77.3645067713242, 34.67362046958442], [-77.36449765195415, 34.673671661674284], [-77.36467687429048, 34.673854151878736], [-77.36469475888346, 34.67386996678657], [-77.36469243112086, 34.67388858954778], [-77.36478454556608, 34.67399749280964], [-77.36478478290236, 34.67399777196726], [-77.36487097446246, 34.67410774834389], [-77.36488123788511, 34.67412062576433], [-77.3650595975024, 34.674325521613135], [-77.36508484938223, 34.67435809440087], [-77.36511302119848, 34.67441353009788], [-77.3653212459796, 34.67457032139784], [-77.36534928371807, 34.674630533913486], [-77.3655110633563, 34.674750867911555], [-77.36548294235016, 34.674840063064934], [-77.36549023026224, 34.67494215447586], [-77.36551985075359, 34.67499335569717], [-77.36553469701475, 34.67502280613276], [-77.36573299009471, 34.67504178029726], [-77.36583074808412, 34.67519432365734], [-77.36595575030194, 34.675264507203], [-77.36589395602677, 34.67567302803651], [-77.36590758972058, 34.675695827051925], [-77.36592792069571, 34.675730170394495], [-77.36598741633621, 34.67583148548631], [-77.36610794981927, 34.67588731369066], [-77.3661376366178, 34.67591294561938], [-77.36627576134994, 34.67595757493585], [-77.36647449118556, 34.67590899454166], [-77.36657156818528, 34.67597308620576], [-77.367034225958, 34.67599171740201], [-77.36704996264069, 34.67598820500518], [-77.36705852757291, 34.6759923976792], [-77.367173741395, 34.67598452839603], [-77.36735373033676, 34.675972548069446], [-77.36741125361065, 34.675951883782204], [-77.36758538053468, 34.67584209378783], [-77.36777234795593, 34.675560995386604], [-77.36785830848423, 34.67544584843309], [-77.36838253177065, 34.675520534705754], [-77.36861904812456, 34.67557935008944], [-77.36873145248202, 34.67558163625118], [-77.36896571096969, 34.67557316017149], [-77.36941079690878, 34.67554563541994], [-77.36958314999526, 34.675507679518745], [-77.36979628586228, 34.67546139578161], [-77.37061855864961, 34.67533984996453], [-77.37085911920492, 34.67523503187953], [-77.37169540576346, 34.6750180212366], [-77.37212761884179, 34.6749880941463], [-77.37248744131597, 34.6749661913626], [-77.37299459208302, 34.674893260755866], [-77.37336520296962, 34.67484771201185], [-77.3736344156683, 34.67482221764427], [-77.37369962538966, 34.674821279603805], [-77.37379635988248, 34.674965750514986], [-77.37387591986369, 34.67506316716894], [-77.37388255088123, 34.6750746821216], [-77.37389613611678, 34.67508044914612], [-77.37407711369409, 34.67531912356345], [-77.37431691131692, 34.67548992530374], [-77.37436727625848, 34.67551936389507], [-77.37443395808083, 34.67553085385056], [-77.37465016559591, 34.67557566534991], [-77.37479969043622, 34.67555122916028], [-77.37495889420727, 34.67554286911758], [-77.37515155607532, 34.67552872883664], [-77.37558282583154, 34.6754549467918], [-77.37598094135626, 34.67543011532099], [-77.37618818735287, 34.67543105220676], [-77.37642515946463, 34.675482302418665], [-77.37656566752707, 34.67550578225776], [-77.37675661277156, 34.675534525133614], [-77.37685495609699, 34.675545592809925], [-77.37709071917953, 34.675595879700744], [-77.37732001010322, 34.67565533834489], [-77.37761205259963, 34.67575110320819], [-77.37773712310681, 34.67599437761903], [-77.37750793340425, 34.67634085577793], [-77.37747029918344, 34.67651847153277], [-77.37716192927401, 34.67688630091047], [-77.37702969953175, 34.67706646343062], [-77.37698994394417, 34.67715800484848], [-77.37687312271515, 34.67719640753099], [-77.37627522206907, 34.677657617272835], [-77.37619150977253, 34.67772662229274], [-77.37608922693555, 34.6778358982936], [-77.37546386084095, 34.678256587561584], [-77.37541524797743, 34.67831489424479], [-77.37497034786315, 34.67857397077145], [-77.37461399276248, 34.67879560475094], [-77.37451256854986, 34.67879113390948], [-77.37365560743032, 34.67879783009795], [-77.37348729544318, 34.67855349497908], [-77.37312793915021, 34.678840240331006], [-77.37306315205845, 34.679074079949956], [-77.37267976885401, 34.67927430048472], [-77.3723348572873, 34.67941361512016], [-77.37195082713791, 34.679724125669395], [-77.37138080984421, 34.67976090580513], [-77.37133787493401, 34.679774055661284], [-77.3712902228704, 34.67976404697431], [-77.37074953112392, 34.679739139756265], [-77.37048753386523, 34.679660190647716], [-77.36992669811394, 34.67950526526894], [-77.36970510248142, 34.67947412689266], [-77.36963372418153, 34.67945944120913], [-77.36940904171053, 34.67937302716934], [-77.36895694000964, 34.67926167387559], [-77.36895672800796, 34.67915120379232], [-77.36872819646862, 34.679043545655304], [-77.36857735090835, 34.678974882222306], [-77.36856786773915, 34.67896986601705], [-77.36852690531994, 34.67896658812863], [-77.36834351052536, 34.678945483955744], [-77.36820490942375, 34.67894390961794], [-77.36794724206526, 34.6790839388002], [-77.36772878882377, 34.67916006055222], [-77.36730636716612, 34.6792300958861], [-77.36693433506719, 34.679241957000016], [-77.36667940995542, 34.67932827003215], [-77.36651490486807, 34.67936045011746], [-77.3662868167238, 34.67934624821818], [-77.36608128684125, 34.67932705304011], [-77.36583267527503, 34.67930165329405], [-77.36570194169482, 34.67927802563198], [-77.36550614071555, 34.67924664070099], [-77.3653929261883, 34.67924597606198], [-77.36492123408533, 34.67921844029161], [-77.36491703932106, 34.67921812013562], [-77.36491596532332, 34.67921802718128], [-77.36491108617643, 34.679215191211476], [-77.36457523254633, 34.67908703620144], [-77.36442835374466, 34.67883593099616], [-77.3644069918053, 34.67882232763976], [-77.3644069984734, 34.678801715516876], [-77.36433907033526, 34.6787081426656], [-77.36421907207628, 34.67857276998349], [-77.36403586646172, 34.678365324610766], [-77.36401533825767, 34.67833538742534], [-77.36399292105344, 34.67827401862408], [-77.36378560778311, 34.678118020166615], [-77.36375703985982, 34.67805567295037], [-77.36359948220823, 34.67793789950916], [-77.36354164378369, 34.67791161122223], [-77.36350774066979, 34.67788357371725], [-77.3630352951915, 34.67752803419696], [-77.36302584401945, 34.6775202522818], [-77.36301805164032, 34.67750868061223], [-77.36299983072776, 34.67752097310871], [-77.3624782269395, 34.67754761633478], [-77.36240079392839, 34.67757342822358], [-77.36235040753492, 34.6775834815855], [-77.36209620590297, 34.6775918742761], [-77.36190179871966, 34.67759715805947], [-77.3618024924757, 34.677572843519734], [-77.3613540566752, 34.6773384375641], [-77.36125265404247, 34.67740525128061], [-77.36100437729601, 34.67766666285958], [-77.36092743864958, 34.677817647651594], [-77.36074758575126, 34.67807723432779], [-77.36055350439585, 34.67835640909916], [-77.36043500289922, 34.678438349578585], [-77.36023953702836, 34.67887682573535], [-77.36023276900119, 34.67888786070214], [-77.3602292718624, 34.6788941905056], [-77.3602185311715, 34.678906450668], [-77.35954882942264, 34.679469206116785], [-77.35951316692484, 34.679535809774414], [-77.35943951749331, 34.679971608559676], [-77.35911331059567, 34.680457792244006], [-77.35901775598363, 34.680516934728395], [-77.3586943795788, 34.680724638898255], [-77.3584658010308, 34.6808213585054], [-77.35843648291001, 34.68084047569609], [-77.3582995199016, 34.68101282603791], [-77.35829287956835, 34.68110389455216], [-77.35828645611096, 34.68116872451892], [-77.3582269254973, 34.68158670602118], [-77.35822199381056, 34.681601018191465], [-77.35818434464312, 34.68164153948697], [-77.35821271703205, 34.681693348140485], [-77.35821168243105, 34.681724281198704], [-77.35820176395183, 34.68173108613306], [-77.35807765362333, 34.68177349363564], [-77.35801826254215, 34.68176938290051], [-77.35788870552808, 34.68177864805014], [-77.35773391695282, 34.681787886678535], [-77.35758464296981, 34.68179521429753], [-77.35745150126809, 34.681811437943566], [-77.35712096093482, 34.68188273195812], [-77.3569360893941, 34.68196762801209], [-77.3568224537435, 34.68203694467694], [-77.35669684190182, 34.68214498501741], [-77.35635514019178, 34.682344821106824], [-77.35629289514824, 34.68242512244734], [-77.35620222596675, 34.68243392958798], [-77.35611625322913, 34.68244501894679], [-77.35569180573519, 34.6825304868778], [-77.3555391986769, 34.6826561693157], [-77.35533938484308, 34.68285630576865], [-77.35523240527792, 34.68298640186039], [-77.35510786338628, 34.68311116126036], [-77.35496113998221, 34.68315923209141], [-77.35477939621468, 34.68321177062492], [-77.35452127921862, 34.68327847835271], [-77.35464034981598, 34.68306770948752], [-77.35450003425072, 34.68290063142083], [-77.35439202744146, 34.6826546839265], [-77.35438112423334, 34.682615924438885], [-77.35437948989276, 34.682599213890406], [-77.35436392482802, 34.68258119268393], [-77.35394197290199, 34.68214756985028], [-77.35400471365644, 34.68175683142292], [-77.35399150262643, 34.68169466142491], [-77.35400339943367, 34.68167187414814], [-77.35387480484704, 34.68141087296043], [-77.35372509979544, 34.68124386077536], [-77.35360173007926, 34.681083279339354], [-77.35347054480795, 34.68093363626267], [-77.35335749338117, 34.68080695739318], [-77.35317095662003, 34.6805054772027], [-77.35299773709274, 34.68050916145663], [-77.35304176397045, 34.680362929735686], [-77.35294468330213, 34.68015580323439], [-77.35295085295921, 34.68013172204208], [-77.35287539359493, 34.680033515315685], [-77.35278069721178, 34.679911395642684], [-77.35276901121571, 34.67989682279529], [-77.35275051267335, 34.67989211326278], [-77.35270738109054, 34.67988455200475], [-77.35246443252677, 34.67984674151789], [-77.35232471258237, 34.6798446020112], [-77.3521688181045, 34.679834211113764], [-77.3517354188138, 34.67990397890778], [-77.3515539196308, 34.67989067903005], [-77.35133902570371, 34.67981488440806], [-77.35111570920473, 34.67974987757707], [-77.35099877882365, 34.679741312311805], [-77.35064452316212, 34.67996101803827], [-77.35087587054952, 34.68016465529243], [-77.35089348239698, 34.680157804810825], [-77.35088729277068, 34.680171376913414], [-77.35116897521213, 34.680339954224266], [-77.35108967010841, 34.68063097223572], [-77.35126301031701, 34.68089269784272], [-77.35132476068722, 34.68100843030267], [-77.35139568380391, 34.68107633820738], [-77.3517293869161, 34.681347837158974], [-77.35197309959511, 34.68129780502731], [-77.3519409192404, 34.68148885678408], [-77.35219875470588, 34.681792689010415], [-77.35228794740861, 34.68184386104713], [-77.3523467407165, 34.681920516667155], [-77.35258763168585, 34.682331482739926], [-77.35261308810209, 34.68237132749621], [-77.35260742580196, 34.68238635435162], [-77.35254470160808, 34.682868099392124], [-77.35217984339988, 34.683246492425155], [-77.35203389759582, 34.683425621683796], [-77.35163915149629, 34.68391997635906], [-77.35219662665857, 34.68386162591108], [-77.35221431591084, 34.68388823224943], [-77.35245863533686, 34.68407764520369], [-77.35272105191953, 34.68411688697445], [-77.35312379705385, 34.684354088160916], [-77.35355208235339, 34.68467930568118], [-77.35344804679463, 34.684892917742445], [-77.35325785771394, 34.68520709169526], [-77.35309459788058, 34.68533403651868], [-77.3528778220528, 34.68563856138726], [-77.35282268938914, 34.68573124703772], [-77.35275689930917, 34.685763263074215], [-77.35238821915758, 34.68598433887854], [-77.35213625188166, 34.68613119434066], [-77.35186795745712, 34.68616137232684], [-77.35174762843147, 34.68638922405293], [-77.3516935542538, 34.686637442516954], [-77.35169395318628, 34.68664028540336], [-77.35169270053852, 34.686644275209325], [-77.35168471625254, 34.686644244420386], [-77.35138357120306, 34.68666205978465], [-77.35117740203506, 34.6868257109055], [-77.351145265513, 34.68695930993951], [-77.35116723803013, 34.68704250265191], [-77.35104630952466, 34.6873477721478], [-77.35088094981391, 34.68748298103499], [-77.35083636801838, 34.68751595423377], [-77.35071517276589, 34.687505740735624], [-77.35056867904346, 34.68750315515076], [-77.35054152975154, 34.687500654116015], [-77.35050089317181, 34.687502509221936], [-77.35038255901314, 34.687532788207605], [-77.35036269060957, 34.68755413280269], [-77.35029484038033, 34.68763897249958], [-77.35017214654758, 34.68774208749225], [-77.35010925481143, 34.68779358175117], [-77.34987763136763, 34.68786441515701], [-77.34982970395389, 34.68789073049303], [-77.34981647772258, 34.687884947287806], [-77.34958184611608, 34.6879642843073], [-77.34950390597587, 34.68798204578148], [-77.34940056891254, 34.68805175216477], [-77.34938979277103, 34.68811316022496], [-77.34937147556106, 34.688177591323885], [-77.34935822390683, 34.688404319409216], [-77.34904280152816, 34.688539329274285], [-77.3488093050315, 34.68855595298972], [-77.34867213638961, 34.68856850522204], [-77.34855969298827, 34.68853271917884], [-77.34846221049129, 34.68853296485917], [-77.34845135607564, 34.688514787788876], [-77.34831349755643, 34.68845031708501], [-77.34824133264377, 34.688332729857905], [-77.34831155630478, 34.68811465077975], [-77.34830431703743, 34.688080394107274], [-77.34829827698854, 34.6880678508113], [-77.34829705602965, 34.68801549903717], [-77.34813114103892, 34.687860475458365], [-77.34806947678945, 34.687849745934976], [-77.3480915806521, 34.687692449060606], [-77.34793972834875, 34.68755541460594], [-77.34801588196342, 34.68738891609955], [-77.34807558259178, 34.687267129980945], [-77.34799860858254, 34.68711592580249], [-77.34806103484193, 34.68689533780399], [-77.34805844098238, 34.68677593329229], [-77.34802332539563, 34.68670272637308], [-77.34803484559929, 34.686655242531224], [-77.3480365986131, 34.686594260857575], [-77.34803650534329, 34.68659403904824], [-77.3480362009485, 34.68659390827763], [-77.34796434669036, 34.68658464969643], [-77.34790193968155, 34.686599051183435], [-77.34780524727472, 34.68661722520846], [-77.34754092226581, 34.686679786587085], [-77.34742006731652, 34.68668593255171], [-77.3471732119994, 34.68673249814245], [-77.34689035436097, 34.68678625445592], [-77.3466555176539, 34.686600883411224], [-77.3466251888705, 34.68659613843198], [-77.3466134616431, 34.686598849385135], [-77.3466029067468, 34.6865997150855], [-77.34631571644611, 34.686593560549454], [-77.34609478549089, 34.68661013132819], [-77.34600821703357, 34.68662185865801], [-77.34588720744608, 34.686603452451365], [-77.34542140898374, 34.68677026745092], [-77.34537865310119, 34.68679085691243], [-77.34535574156482, 34.686807494503796], [-77.3448157809386, 34.6869300981522], [-77.34471830767825, 34.686941324587046], [-77.34466628508642, 34.686921055440514], [-77.34457384077616, 34.68688659023256], [-77.34419158804846, 34.68669394058577], [-77.34365587178881, 34.687012568267036], [-77.34357057667502, 34.687102654601944], [-77.34364879836392, 34.687309846710356], [-77.34371858903803, 34.687491339432256], [-77.34376532113178, 34.68761434616371], [-77.34435270752414, 34.687891694938926], [-77.34434869204944, 34.68795377652684], [-77.34439790136219, 34.68804453624054], [-77.34483482587989, 34.688223640622965], [-77.34500782260096, 34.68823490974045], [-77.34554268454474, 34.68822484942096], [-77.3459946148105, 34.687975325847454], [-77.34633674408789, 34.68800062513326], [-77.34662202751689, 34.68853161390939], [-77.34663586045652, 34.68855310041643], [-77.34663870545371, 34.68855660570704], [-77.34664001032833, 34.688568587963545], [-77.34699383648622, 34.6890716711909], [-77.34709279670133, 34.68907061474776], [-77.3472797465716, 34.689245831529355], [-77.34734095293605, 34.68924669336755], [-77.34754400705944, 34.68940320954805], [-77.3475786263421, 34.68941001104888], [-77.3475903835385, 34.689418386429026], [-77.34776631150193, 34.689616385593915], [-77.34747254535961, 34.689824167610105], [-77.34728539270425, 34.689758075598185], [-77.34706845843337, 34.68980259911179], [-77.34688066252517, 34.68980109232659], [-77.34666878879924, 34.689849701223224], [-77.34669293393989, 34.69000740560795], [-77.34649620992349, 34.6902429522868], [-77.34639971574421, 34.69053502898718], [-77.3461698728515, 34.69068398730069], [-77.3460251659277, 34.69068572171453], [-77.34593007829206, 34.69067859382591], [-77.34547224015158, 34.690703774126085], [-77.34541152459491, 34.69073753773733], [-77.34521289112267, 34.69083629242131], [-77.345143013094, 34.69070750640798], [-77.3449074902513, 34.69067712459065], [-77.34484865748733, 34.69061452623558], [-77.34453576944168, 34.69051179337058], [-77.34459501423547, 34.69078271244706], [-77.34405423579398, 34.6912887596502], [-77.34399100072451, 34.69130543985052], [-77.34386503538398, 34.691370266995506], [-77.34336485552276, 34.691601302710815], [-77.34295918824705, 34.691667254997185], [-77.34255467426118, 34.69203745421436], [-77.34213269740147, 34.69221112276847], [-77.34198423278325, 34.69223273410925], [-77.34178754102771, 34.692289446339686], [-77.34160787785983, 34.69238412935761], [-77.34153876189012, 34.69248086143314], [-77.34139709597717, 34.692683665376435], [-77.34136004526155, 34.692802732501036], [-77.34118202521647, 34.69293361800456], [-77.34097142749428, 34.693096507170566], [-77.34066767435817, 34.693151080603414], [-77.3405124740817, 34.69317780116897], [-77.34040591879837, 34.69323343763389], [-77.34032344582026, 34.69331333810792], [-77.34032045986578, 34.69331875732061], [-77.34031999052392, 34.69332523239787], [-77.34034983535805, 34.693395623766094], [-77.34032540040597, 34.69348122186838], [-77.34034095496803, 34.69355963339069], [-77.34029231230963, 34.69377106182559], [-77.34028987433692, 34.693810329371466], [-77.34027605700308, 34.69399162827066], [-77.34036199435253, 34.69417457449875], [-77.34033217255916, 34.694291902197335], [-77.3402597154744, 34.69438051622344], [-77.34023869737086, 34.69446651350622], [-77.34027737506985, 34.69454310808459], [-77.34031036891075, 34.69460844718322], [-77.34040922193171, 34.69476870706567], [-77.34036332090406, 34.69496185903702], [-77.34052988385167, 34.69523952754493], [-77.34016498596569, 34.6955732363941], [-77.33971073032123, 34.69593761193261], [-77.33939726059091, 34.6957051121539], [-77.33916643927338, 34.69575053816838], [-77.3388001933399, 34.69563983878761], [-77.33857394878225, 34.69572936884348], [-77.33844818024099, 34.69564698836328], [-77.33841420087995, 34.69552977197746], [-77.33806473164648, 34.695421580033326], [-77.33767187151246, 34.69545593914869], [-77.33746829974973, 34.69541397872767], [-77.33698085493879, 34.695199271638614], [-77.33694250908725, 34.695163247699035], [-77.3367926550328, 34.69513649659731], [-77.33633930593473, 34.69517895023565], [-77.33611545407965, 34.69507675687971], [-77.33526051612617, 34.69505466495799], [-77.33517907936097, 34.69505142156046], [-77.33510198418796, 34.695068148418216], [-77.33493954541682, 34.69503161787072], [-77.33418378004856, 34.69498624370397], [-77.3340060363526, 34.69496799345832], [-77.33374944365876, 34.69499149288954], [-77.3329811414286, 34.69530019377781], [-77.33278359085917, 34.695411801998006], [-77.33267501088613, 34.69542820152593], [-77.33223266359866, 34.695890203533864], [-77.3320276998717, 34.69601830698862], [-77.33187011349317, 34.69613790012391], [-77.33138017990055, 34.696494467895434], [-77.33133490425809, 34.69668076982922], [-77.33110232451111, 34.696719863311735], [-77.33092335802473, 34.69670606630369], [-77.33070212367306, 34.696758037774984], [-77.33044222698433, 34.69693124954414], [-77.33025334708252, 34.696998481067666], [-77.32970608812727, 34.697404246930226], [-77.32956142776185, 34.69766173251577], [-77.32939404295678, 34.697741523129466], [-77.32886288696045, 34.69824555834305], [-77.32874903874932, 34.69821815406886], [-77.3285501114402, 34.69834459104832], [-77.32819551005427, 34.69848191346362], [-77.3277463494866, 34.698605813816485], [-77.32756589634388, 34.69858833726923], [-77.32748490249102, 34.698562633763316], [-77.32710895640528, 34.69867898995759], [-77.32689934836995, 34.69882181039006], [-77.32665166398203, 34.6986048352759], [-77.32648183475544, 34.698545917722896], [-77.32638266645031, 34.698539721539305], [-77.32617546789872, 34.698489566044], [-77.3260131779565, 34.69851227088115], [-77.32600892889303, 34.69844925257329], [-77.32583623427652, 34.698359982764934], [-77.32565103137598, 34.698396702647855], [-77.3253205424144, 34.698369808040425], [-77.32519685013361, 34.698499993481335], [-77.32498409400738, 34.69870987774376], [-77.32478291029764, 34.699064383231224], [-77.32455094103068, 34.699380138696995], [-77.32490991395427, 34.699487009747614], [-77.32534225969223, 34.699422387052714], [-77.32549329584435, 34.699539667972566], [-77.32634751591803, 34.69943743248875], [-77.32631925575981, 34.70011250244861], [-77.32648672796655, 34.70024125479118], [-77.3268726672093, 34.7006099574195], [-77.32729676266878, 34.70095324836104], [-77.3274444997317, 34.70106556605131], [-77.3276687334824, 34.701090756925474], [-77.3280216593021, 34.701139661648355], [-77.32824135183373, 34.70113370092571], [-77.32862511469357, 34.70112328907402], [-77.32917432185896, 34.70114903561996], [-77.32985973972686, 34.70099518362993], [-77.33112613638687, 34.700491302222055], [-77.3312130106801, 34.700458825891516], [-77.33125872596268, 34.7004437300089], [-77.33156366476939, 34.70036827469145], [-77.33238448425942, 34.70016516819531], [-77.33229814409913, 34.699589794065844], [-77.33205341606248, 34.69962710851796], [-77.33181815781143, 34.699662977817596], [-77.331240181435, 34.70036533912317], [-77.33107556428719, 34.69974195785051], [-77.33083733329332, 34.699493121437314], [-77.33067156856085, 34.69926446577651], [-77.33073520223572, 34.69870264154723], [-77.33098910681997, 34.69849757101309], [-77.331225853859, 34.697860901375], [-77.3320022559368, 34.6977431651231], [-77.3328059814717, 34.697622641513114], [-77.33330247546587, 34.6973891124215], [-77.33347418003213, 34.69730101239118], [-77.3339739871458, 34.69713841760688], [-77.33446200485788, 34.69713700793384], [-77.33458448487707, 34.697097673446], [-77.33470750972849, 34.69711786469523], [-77.33557531788465, 34.69706883306732], [-77.33576016346314, 34.697172125498135], [-77.33675521516417, 34.69765682203081], [-77.33681566867578, 34.69766017348162], [-77.33685998518825, 34.697657106703744], [-77.33685050516938, 34.6976937609247], [-77.336938711819, 34.69781952613561], [-77.33735147966878, 34.698599792423664], [-77.33739404592039, 34.698822821049056], [-77.33770987835274, 34.69870339470701], [-77.33782481723813, 34.69860521614724], [-77.33800671222794, 34.698509916111156], [-77.33921891705889, 34.69763047909392], [-77.33944420255129, 34.697487587981925], [-77.34032190841991, 34.697217564917814], [-77.34047117662722, 34.6971214312485], [-77.34056161301413, 34.69713001005895], [-77.34063510512657, 34.69711768074013], [-77.34156674864099, 34.696816094296125], [-77.34192294892594, 34.696565296731464], [-77.34229698224786, 34.69618684347134], [-77.34261418418123, 34.69592830789857], [-77.34278808572826, 34.695461209702756], [-77.34282254062668, 34.69537613158094], [-77.34287942248778, 34.695333419958075], [-77.34349404150231, 34.69483282174194], [-77.34359674198184, 34.694785875757105], [-77.34366554652499, 34.69468792120883], [-77.34373521372626, 34.69455603888107], [-77.34379596688345, 34.694324177800944], [-77.34380440220146, 34.69430285558628], [-77.34379029577458, 34.6942584329078], [-77.34361506050473, 34.694036592214104], [-77.34343167218319, 34.6940011885803], [-77.34324527714233, 34.694073890334025], [-77.34294175049962, 34.6942051484939], [-77.34256383095928, 34.694359024960505], [-77.34227528031741, 34.69402529983883], [-77.34239093761552, 34.69371677910006], [-77.3427452367483, 34.69373450774174], [-77.34320328811381, 34.69356509487638], [-77.34337468727985, 34.69362836099461], [-77.34355778226706, 34.69347466581348], [-77.34404278170584, 34.69338915614024], [-77.34446484829314, 34.69338272812006], [-77.34466054311639, 34.69332323467404], [-77.34486826983455, 34.69335990281154], [-77.34501163315109, 34.69335617027461], [-77.34507827948804, 34.693396973606696], [-77.34523523781166, 34.69340558645748], [-77.34548506007657, 34.69334114791823], [-77.34553709033538, 34.69331455444212], [-77.34560246410602, 34.69329571646878], [-77.34591787763658, 34.69311626433668], [-77.34600200624698, 34.693088424840674], [-77.3464887312999, 34.69300792570549], [-77.34654831240168, 34.693006679358454], [-77.34693241253616, 34.69306069139712], [-77.34701558797876, 34.69337477860537], [-77.34702597539503, 34.693423133713075], [-77.34710310480304, 34.69371769824518], [-77.34709423559089, 34.6938513637747], [-77.34718390295333, 34.69390994805708], [-77.34727707536291, 34.69397800665598], [-77.34741655741712, 34.694023363984236], [-77.3475018265716, 34.69380506232436], [-77.34749720272349, 34.693796054841535], [-77.34750684859004, 34.693784258602385], [-77.34753970798548, 34.69338173459426], [-77.34717852360684, 34.69335241493995], [-77.34755396061128, 34.69318771965635], [-77.34779421408962, 34.69283902199374], [-77.3478212442755, 34.692786377459534], [-77.3478393029775, 34.69277433845379], [-77.34782626656268, 34.692728649856605], [-77.34774618416861, 34.692434493080015], [-77.34728334444179, 34.69253691418735], [-77.34711748701895, 34.69252410239231], [-77.34698693245086, 34.69252696450464], [-77.34673603259333, 34.69246257113899], [-77.34668973313954, 34.69251972451953], [-77.34669490436647, 34.692455103336904], [-77.34668577740545, 34.69244528628211], [-77.34669415064197, 34.692425439376485], [-77.34672489501519, 34.69239865078201], [-77.34696622625471, 34.692028344983356], [-77.3473459873957, 34.6919540938833], [-77.3474534758146, 34.691951078274975], [-77.34764589201197, 34.69199261164398], [-77.34778650812626, 34.69200928596116], [-77.34800754242025, 34.69210442378465], [-77.34828090335424, 34.69202301772326], [-77.3491992124214, 34.69209311544387], [-77.34920858941857, 34.69209116044127], [-77.34988444400236, 34.691424012063216], [-77.3505308179286, 34.69094272307252], [-77.35049966303737, 34.69069285176486], [-77.35082627745112, 34.69064298571818], [-77.35145261391114, 34.690261104762946], [-77.35183945050271, 34.689788294218076], [-77.35193722905811, 34.689414171325225], [-77.35189769998135, 34.68929291539704], [-77.3519545668126, 34.68919590575838], [-77.35219530003349, 34.68876467089148], [-77.3523446356667, 34.688498797289625], [-77.35264785066701, 34.68849235383442], [-77.35299956845691, 34.68816685842784], [-77.35313596740899, 34.687923790113345], [-77.35314044602802, 34.68790382324468], [-77.35315610952067, 34.68787698427409], [-77.35323698833176, 34.68764687480983], [-77.35355260081377, 34.687437701228916], [-77.35377891310154, 34.687572460886315], [-77.35389935801837, 34.68769914905749], [-77.35401581814108, 34.68790388707363], [-77.35418911414006, 34.688003516848156], [-77.35417256109042, 34.68827727746372], [-77.3544930053908, 34.68832196754305], [-77.35487315181294, 34.6881872848334], [-77.35516270424162, 34.68807691289314], [-77.35534865796319, 34.687844283309744], [-77.35531703405249, 34.68779063128924], [-77.35541753329869, 34.68739336365486], [-77.35542394794051, 34.687346559197465], [-77.35543285384188, 34.687307284490615], [-77.35555771667987, 34.68687938235428], [-77.35560429010506, 34.68683440767453], [-77.3558118214637, 34.686466392133745], [-77.35606824534358, 34.68628330523143], [-77.35612301021699, 34.68598767125433], [-77.35627637946286, 34.68576733530743], [-77.35633685575353, 34.68565533305261], [-77.35650333057802, 34.68552053006229], [-77.3567942579811, 34.68547101273073], [-77.35681952970398, 34.68546220324319], [-77.35684683754972, 34.685469180778945], [-77.35712465033615, 34.68544203949994], [-77.35729644816233, 34.68547868009415], [-77.35749728286521, 34.68540754546858], [-77.35780688351824, 34.68515368016528], [-77.3580390129416, 34.6850378561955], [-77.35828960898196, 34.68483344623293], [-77.35854193198432, 34.68468333172981], [-77.35885696920693, 34.68467171003775], [-77.35919903070726, 34.684481525667564], [-77.3593124667406, 34.68446370778944], [-77.3598639829782, 34.68425264180576], [-77.36035035898863, 34.68410729685358], [-77.36071335828083, 34.68403116708468], [-77.36112061951788, 34.68404729515635], [-77.36146406778848, 34.683818091182374], [-77.36182225702436, 34.683691960090236], [-77.36211042578944, 34.68350377724234], [-77.36235120565246, 34.68332804881129], [-77.36257601420024, 34.68315699198646], [-77.36273662893024, 34.68303148852778], [-77.36295465731635, 34.682900394793336], [-77.36312325826802, 34.68273599769786], [-77.36335552157098, 34.68253324649588], [-77.36387558538306, 34.68238530231013], [-77.36361343318217, 34.68280987754104], [-77.36380355764467, 34.683051794168705], [-77.36390660832664, 34.68314988568466], [-77.36410922950449, 34.68322914132904], [-77.36432157822527, 34.68332917338857], [-77.36490507147127, 34.683169693160025], [-77.36496801763381, 34.683163981994234], [-77.36504456784411, 34.68316263356944], [-77.36570028915273, 34.683345963406914], [-77.3661088775725, 34.683357506265985], [-77.36622484469046, 34.68342580912629], [-77.36636489769398, 34.6836227836217], [-77.36678741469935, 34.68383588591616], [-77.36691779387334, 34.683985608468085], [-77.36712969721789, 34.68396477853069], [-77.36745343099355, 34.68402135030876], [-77.36774021028889, 34.684140935525164], [-77.3677908286294, 34.68418537476159], [-77.36819471838145, 34.684419739126966], [-77.36830666761784, 34.68449331952585], [-77.3683292443036, 34.684598766401166], [-77.36852716534656, 34.68497299983618], [-77.368562650184, 34.68505407869199], [-77.36856216831158, 34.68508510967844], [-77.36862341568111, 34.68553311762527], [-77.36873548245582, 34.68574017471251], [-77.36887035560288, 34.68598657069806], [-77.36891734683019, 34.68605493567651], [-77.3691014708691, 34.6862469052455], [-77.36926595178076, 34.686419588222826], [-77.36957634366895, 34.68666980860727], [-77.36987168156875, 34.68689153996395], [-77.37025633243175, 34.68725824388998], [-77.37045670626559, 34.687569038521474], [-77.37054799610759, 34.68770554712384], [-77.3707113194539, 34.68812358053479], [-77.37072271662062, 34.68815275191621], [-77.37073138093774, 34.688167733012065], [-77.37080737181911, 34.688270121445896], [-77.37108751164067, 34.688660411484605], [-77.37114911323322, 34.68867766805111], [-77.37125736103317, 34.688668900958916], [-77.37171236011596, 34.68879931070012], [-77.37187926873489, 34.68883935316974], [-77.37224389641959, 34.68890501492169], [-77.37227798269451, 34.688912767066654], [-77.37229437139129, 34.68891402214603], [-77.37230676144347, 34.68892596087997], [-77.3722987192104, 34.68895359726182], [-77.37235589327179, 34.689162903776754], [-77.37237349517837, 34.68924736611291], [-77.37241362395528, 34.689398664286976], [-77.37237244132828, 34.68965705763811], [-77.3722593405639, 34.68990726798164], [-77.3720592307375, 34.69027784528381], [-77.37201112737473, 34.690428783637806], [-77.37203048419718, 34.69063029325822], [-77.3720812740322, 34.69090653480633], [-77.37209512239022, 34.69103873788643], [-77.37206002138049, 34.69129460061098], [-77.37198922412495, 34.69140658267029], [-77.37180206429986, 34.691704145339436], [-77.37145955436324, 34.69196678525985], [-77.37141960346027, 34.69234733184346], [-77.37140677886643, 34.69246143478347], [-77.3715744105309, 34.69262241126421], [-77.37162861342117, 34.69282671223414], [-77.37165713469149, 34.69291441477385], [-77.37163530751798, 34.692969789316635], [-77.3714985901481, 34.69334962901744], [-77.37114975179705, 34.69347155226865], [-77.37104858245796, 34.69358899809098], [-77.37079691711028, 34.694007443008054], [-77.37108849581567, 34.69417927874476], [-77.37114133223542, 34.694894243091106], [-77.37114862507532, 34.6949215086293], [-77.37114630291111, 34.69493420700639], [-77.37114578428056, 34.69495140659423], [-77.37121025812996, 34.69590020168403], [-77.37108459483079, 34.69617345870395], [-77.37114476593345, 34.696501518301964], [-77.37123105778619, 34.6966482399819], [-77.37130046864428, 34.696775913910116], [-77.37140257495756, 34.696848554963466], [-77.37156472763783, 34.69696673783233], [-77.37167487580605, 34.69718173623796], [-77.37182528336187, 34.69727784491238], [-77.37196314596088, 34.697448545605866], [-77.37212466172957, 34.69769467945914], [-77.37215990268484, 34.69771924272229], [-77.37256528172256, 34.697773522958066], [-77.3726242215582, 34.69803606389309], [-77.37282009827202, 34.69836588114113], [-77.37287259656391, 34.69859606113215], [-77.37342511831481, 34.698688645180084], [-77.37361997608286, 34.69873047555496], [-77.37376483032301, 34.69882138659207], [-77.37394897941009, 34.69893548756392], [-77.3740468584531, 34.69899853524367], [-77.374117776557, 34.69907796317247], [-77.37436565873315, 34.69936559963072], [-77.37446954429004, 34.69946166881287], [-77.37457536605814, 34.69956408243088], [-77.37468759406501, 34.69968807300986], [-77.37475821346521, 34.69979902733824], [-77.37485601307066, 34.69995268665445], [-77.37499950545046, 34.7001655331912], [-77.37503152881666, 34.700211837431915], [-77.37505147617071, 34.700246105304856], [-77.37521666988702, 34.7004487028239], [-77.37522621752436, 34.70045622820512], [-77.37525445904588, 34.70050625859025], [-77.37536945408381, 34.70068978449142], [-77.3753920748186, 34.70072281551071], [-77.3754248607289, 34.70076281204306], [-77.37556891503073, 34.7009809480257], [-77.37569520746412, 34.70113239404969], [-77.37585848338472, 34.70133160914209], [-77.37594488968293, 34.70148005138857], [-77.37602724581255, 34.70157413913944], [-77.37611276370181, 34.701745088582314], [-77.3761301540915, 34.70180368881286], [-77.37618074187907, 34.70196501240091], [-77.37620243944046, 34.70203744842931], [-77.37620770638452, 34.7020662735718], [-77.37623083884792, 34.70211164350982], [-77.37634507694324, 34.702354795383094], [-77.37641146807142, 34.702496105109375], [-77.37649194689, 34.70263600452959], [-77.37653868124598, 34.702722312975155], [-77.37662137431985, 34.702829025951715], [-77.37667090025582, 34.70289251461553], [-77.37671057111228, 34.70294237776939], [-77.37684031040109, 34.70310612830278], [-77.376883295265, 34.70312327925184], [-77.37705886064923, 34.70338105870768], [-77.37705945414557, 34.70338180531052], [-77.37705952470016, 34.70338188743555], [-77.3770596099322, 34.70338198241575], [-77.37726472314962, 34.70361819350645], [-77.37744408269529, 34.70381631697819], [-77.37747495472642, 34.70385062527439], [-77.37751081585479, 34.70389024047112], [-77.37784352676252, 34.70396115423716], [-77.37779677829838, 34.704255218614875], [-77.37780689589617, 34.704383640855646], [-77.37782447015661, 34.704697399277926], [-77.37781543132739, 34.704740051076946], [-77.37768483775201, 34.7048718928488], [-77.3777503372322, 34.70512832658784], [-77.37776976026507, 34.70521918733183], [-77.37818475379912, 34.70525664336935], [-77.37835516680963, 34.70525319328779], [-77.37867913955296, 34.70528649318676], [-77.37898730956279, 34.70528389218073], [-77.37910090408236, 34.70525872397381], [-77.37957890900886, 34.70545437858783], [-77.38014789951302, 34.70556695341149], [-77.38018675967781, 34.70556883584534], [-77.38021812456516, 34.705589839549354], [-77.38073839199708, 34.705877137435465], [-77.38107488399274, 34.70607319337978], [-77.38127552563216, 34.70623544339152], [-77.3814765464903, 34.706352081892184], [-77.38163903733415, 34.70641788369528], [-77.3818439991601, 34.70648569739472], [-77.38206223199371, 34.706554273068534], [-77.38239869373622, 34.70678347117686], [-77.38306985277819, 34.70702689713802], [-77.38445826634421, 34.708159966213124], [-77.38451005678239, 34.70821181321625], [-77.38454434478072, 34.70822686671834], [-77.38457571574018, 34.70822898040101], [-77.38461667518852, 34.70821542004579], [-77.38521822537282, 34.70811367398873], [-77.3853809385811, 34.70804946685356], [-77.3856007353393, 34.70800071649776], [-77.38590309201386, 34.70796258295918], [-77.38635643766972, 34.70814854892595], [-77.38662964750219, 34.70822095488986], [-77.38703910751998, 34.708466435570685], [-77.3875284488595, 34.708569130614], [-77.38787218347619, 34.70859564182601], [-77.38826685668434, 34.7086539303619], [-77.38845507319603, 34.7085882222681], [-77.38878497645854, 34.70855613727251], [-77.38960326641647, 34.70846662792783], [-77.38979431699407, 34.70868703662454], [-77.39010374228289, 34.70895152443364], [-77.39013467323726, 34.70899146690082], [-77.39018780819788, 34.709047144399534], [-77.39048616955859, 34.70929125223304], [-77.39062958497401, 34.70934893578354], [-77.39075179200742, 34.70935187767413], [-77.39094050280526, 34.70938208582739], [-77.39124129191795, 34.709415860096236], [-77.39124783685754, 34.70941495349227], [-77.39125191055498, 34.70941354546926], [-77.39165125442825, 34.70932649636375], [-77.39191994795257, 34.709320465679234], [-77.3921695099356, 34.70942590283914], [-77.39227845544391, 34.709436741580454], [-77.3925259873611, 34.709441252171956], [-77.39268876927501, 34.70952694552999], [-77.39296522159952, 34.709596760458844], [-77.3931116820196, 34.70963222626774], [-77.39322024249822, 34.70964796406811], [-77.39362192028499, 34.70976931095999], [-77.3937137070111, 34.70976686836842], [-77.39375077587906, 34.70976744049716], [-77.39434507868994, 34.70980026623703], [-77.39485755244621, 34.7100811488109], [-77.3948984113295, 34.71010290532967], [-77.39491005316837, 34.710124936732555], [-77.39492987960249, 34.710147599375816], [-77.39524776196328, 34.71043046454872], [-77.39539495901897, 34.710601466278916], [-77.39553021150444, 34.71075902976894], [-77.39566519581979, 34.710964071752414], [-77.39578068382033, 34.71110092635321], [-77.39585833973396, 34.71121447742142], [-77.39600868029831, 34.71145219328249], [-77.39621825454566, 34.711716757000225], [-77.39626563727467, 34.711791387010514], [-77.39629898136035, 34.71190596487888], [-77.3964485087313, 34.71216146699559], [-77.39656649237101, 34.71239776380685], [-77.39668602928661, 34.712782386908856], [-77.3967705717342, 34.712919837807014], [-77.39678092784843, 34.71303194751815], [-77.39689761207147, 34.71341800084116], [-77.39690874140825, 34.713635819079094], [-77.39698706171167, 34.71372222360714], [-77.39704816505468, 34.713744790736705], [-77.39713848095894, 34.71381196168314], [-77.39737910395269, 34.71400510283058], [-77.39753179172348, 34.7142880454368], [-77.39756507910275, 34.71437389107462], [-77.39758887356265, 34.71443295038634], [-77.39772772483585, 34.71471798228274], [-77.39774184721936, 34.71474651810275], [-77.39775149820893, 34.714769425748855], [-77.39780752884354, 34.71490621729028], [-77.39788554203605, 34.715095899812574], [-77.3979000208764, 34.715126897416376], [-77.39791896051504, 34.71516413322746], [-77.39806299029452, 34.715505277673536], [-77.39818497121577, 34.71575981222284], [-77.39824519047261, 34.71587564104822], [-77.39830226164399, 34.71605359334877], [-77.39838955797104, 34.716261777203414], [-77.39841879691627, 34.71640076867095], [-77.39845670055823, 34.71662672874503], [-77.39846773344328, 34.716675509220096], [-77.39847150547217, 34.71669878195043], [-77.39848580646245, 34.71676382500484], [-77.39853809728103, 34.71700165221308], [-77.3985679185075, 34.71708006553769], [-77.39862036469725, 34.71716804090007], [-77.39866022548392, 34.71726474487912], [-77.39871188164224, 34.717342027208005], [-77.39878160650252, 34.717437303206275], [-77.3989558852139, 34.71770696893194], [-77.39901385677908, 34.7177868026353], [-77.39906082970701, 34.717860321610104], [-77.39913681946337, 34.71804984357759], [-77.3991080032099, 34.718193877584596], [-77.3991501863387, 34.71833409007358], [-77.39905738639447, 34.71844688202813], [-77.3989536963344, 34.71870453194386], [-77.39891649601087, 34.71881146955744], [-77.39887555949707, 34.718897807150725], [-77.39867648360715, 34.719186454776676], [-77.39863472331356, 34.71925223256781], [-77.39862127579559, 34.71926732176248], [-77.39856117514164, 34.71931449410847], [-77.39819761497463, 34.71967823621712], [-77.39811318196911, 34.719895888346485], [-77.39787646995667, 34.720125019069215], [-77.39772419169391, 34.720260061957745], [-77.3974772883602, 34.72035254494653], [-77.39706381960141, 34.72032645871036], [-77.39698734925213, 34.7202995977125], [-77.39690464145221, 34.72034414204076], [-77.3969725290215, 34.72042308551781], [-77.39699560472204, 34.72056180112232], [-77.39716519495293, 34.7207890896651], [-77.39697277235668, 34.72102406770287], [-77.39683578135501, 34.72111319009279], [-77.39667214331665, 34.72128072678586], [-77.39658172032829, 34.721349449629], [-77.39636238884853, 34.721522462261596], [-77.3960702251522, 34.72154242499938], [-77.39591924457807, 34.721546051909314], [-77.39556291599258, 34.7215521328893], [-77.39546927582676, 34.72155847823681], [-77.3954257013037, 34.7215540997273], [-77.39531179739444, 34.72156168803914], [-77.39501641948374, 34.721566180322334], [-77.39472885367718, 34.72174626691368], [-77.39467363480715, 34.721753902460065], [-77.39463676673614, 34.72178722958575], [-77.39417346748594, 34.72203618523292], [-77.3939946719756, 34.72214015752153], [-77.39331565017432, 34.72244327383431], [-77.39327926545283, 34.72246681435134], [-77.39320602636307, 34.72257597984352], [-77.39208348718071, 34.723130437473884], [-77.39187282038965, 34.723159999900005], [-77.39167570297045, 34.72354690662743], [-77.39163579210161, 34.723569081601376], [-77.39136880507542, 34.72383242285598], [-77.39100104676987, 34.72386999036732], [-77.39090767941647, 34.72386896878349], [-77.39044213098703, 34.72381355558504], [-77.39028320050963, 34.7238114127769], [-77.38999009095986, 34.723779834252525], [-77.38936621385056, 34.72355057113814], [-77.38909047043065, 34.723502384373276], [-77.38881443123844, 34.72337720754312], [-77.38808909309878, 34.72295845473061], [-77.38798806410587, 34.72288188932917], [-77.3879538278188, 34.72284327132922], [-77.3878946755645, 34.7227829461523], [-77.38747901851582, 34.72242627690497], [-77.38730794511062, 34.722219845989756], [-77.38714054134986, 34.7219598566277], [-77.38702582547911, 34.72177807710604], [-77.38686556695626, 34.7215116092781], [-77.38680129798337, 34.72144685127366], [-77.38672956857991, 34.72134513761162], [-77.38661147190768, 34.721289850783734], [-77.38652266233072, 34.721302217833994], [-77.3862126228294, 34.72135552235625], [-77.38620249591226, 34.721369303542076], [-77.38588303393435, 34.72151975895255], [-77.38581253856732, 34.72154004038654], [-77.38529540378437, 34.72138238656444], [-77.38513159886828, 34.72134164038547], [-77.38510230764692, 34.72106650277253], [-77.38496156190384, 34.72063807685588], [-77.38490043927521, 34.720545381542074], [-77.38483869474322, 34.72047637953768], [-77.38473934894054, 34.72047273766146], [-77.38442457158294, 34.7204501302932], [-77.38417719326351, 34.72054654434184], [-77.38392712070294, 34.7206409883318], [-77.38358498025778, 34.72071544786289], [-77.38347977364904, 34.72074054614333], [-77.3832472631851, 34.72102579445944], [-77.383073772627, 34.72103507504676], [-77.38302715013407, 34.72107938248615], [-77.38290761802674, 34.721218664166095], [-77.38263830867791, 34.721431174910585], [-77.38260311266428, 34.72146902406261], [-77.38258803004837, 34.72148486665819], [-77.38253480753724, 34.72153120268336], [-77.38230580789373, 34.72173116588245], [-77.38190234783143, 34.721804049490295], [-77.38189768323821, 34.721812009098564], [-77.38188754005313, 34.72180905947614], [-77.38187284325839, 34.72180704852655], [-77.38124752717184, 34.72180507658345], [-77.38096165495637, 34.721777730635736], [-77.38059770925273, 34.7218348910712], [-77.3800818702237, 34.72183546568287], [-77.37995366902564, 34.721844786220466], [-77.37937922726299, 34.72195353988675], [-77.37927295159848, 34.72198111157047], [-77.37925555281082, 34.72198067576223], [-77.3792295192451, 34.72198684718282], [-77.37847935808206, 34.72220789154139], [-77.37796980771115, 34.72205279188041], [-77.37793204247987, 34.72206099587719], [-77.37786023980317, 34.722066721711], [-77.3777139077149, 34.72207839086886], [-77.37763966804715, 34.72208571551853], [-77.37750434031278, 34.722109802987724], [-77.37732273291981, 34.72215815965509], [-77.37730910105742, 34.722164659250474], [-77.37729251342721, 34.72217728730738], [-77.37714508553748, 34.72227060277413], [-77.37704210226242, 34.72233951909713], [-77.37688991940601, 34.72260171175097], [-77.37658605429286, 34.72273907027676], [-77.37635181171085, 34.72321494061063], [-77.37635109730654, 34.72321601860484], [-77.3763505199997, 34.72321638301319], [-77.37634975066345, 34.72321679583575], [-77.37602183721664, 34.723427213151496], [-77.37565518989835, 34.723505178593705], [-77.3756233004154, 34.72351066480099], [-77.37561828783574, 34.72351554762653], [-77.37561399296696, 34.7235171801978], [-77.37523872914649, 34.72364313637547], [-77.37512679166586, 34.72372532450624], [-77.37494698972404, 34.72384288033971], [-77.37491760329631, 34.723866336529944], [-77.37486867757885, 34.72390160942029], [-77.37469835107191, 34.72403543865252], [-77.37462122826406, 34.72413003682948], [-77.37447916340096, 34.72423830681514], [-77.37429527427834, 34.7243453412168], [-77.37416243256676, 34.72440702757921], [-77.3740620490929, 34.7244717575956], [-77.37396073377323, 34.72454659784964], [-77.37389154268891, 34.72459179564818], [-77.37373670282368, 34.72492867849535], [-77.37343303748166, 34.72499048521451], [-77.37325605862199, 34.72503966326695], [-77.37299140853325, 34.72520649712776], [-77.37275855435365, 34.72531356276433], [-77.37262569454316, 34.725356752168025], [-77.3725173133529, 34.72537578988489], [-77.37234796884005, 34.72532927770172], [-77.37221404888953, 34.72531602934809], [-77.37211964511664, 34.72527737501311], [-77.37191876061503, 34.7252287820788], [-77.37167942164719, 34.725265461658324], [-77.37151532605466, 34.72510186553015], [-77.37142628784567, 34.725066008336285], [-77.37137422767987, 34.725041799365314], [-77.3710354230417, 34.724972549682406], [-77.37083578671852, 34.724833827215576], [-77.3704197327917, 34.72465785227874], [-77.37034361454681, 34.72446643105488], [-77.37014518525937, 34.7246953026016], [-77.36984711275949, 34.72484371102439], [-77.36967821063587, 34.72491979379066], [-77.36959862955506, 34.724970175143085], [-77.3695401350036, 34.724940511184634], [-77.36904338729113, 34.72499560526038], [-77.36899075886302, 34.72500144214595], [-77.36893417386763, 34.725012579454926], [-77.36844142292483, 34.725100521393074], [-77.36834829417003, 34.72515189766542], [-77.36823587956876, 34.725155698469166], [-77.36781326415706, 34.725182232663656], [-77.36774206981146, 34.72517747872008], [-77.3676881576855, 34.72518294074842], [-77.3675455839544, 34.72515993757202], [-77.36726734592926, 34.72511251854735], [-77.36718423901763, 34.725036322143396], [-77.36698449370463, 34.7250862336858], [-77.3667273365918, 34.72513382107647], [-77.36653770731156, 34.72520076602235], [-77.36641646962929, 34.72522120902309], [-77.36622119818267, 34.72525970539864], [-77.36607534513395, 34.7253619225477], [-77.36596778860277, 34.72546190360929], [-77.36584239634473, 34.72553324837057], [-77.36554529646811, 34.72572579791234], [-77.36516546672613, 34.72580238327078], [-77.36481101215747, 34.72581995287952], [-77.36456668184431, 34.72580229686288], [-77.36408375233324, 34.725707399222564], [-77.36399617607373, 34.72570479041241], [-77.36392796871228, 34.7257109583834], [-77.36390960662533, 34.725659422532246], [-77.36371828575334, 34.7254780655809], [-77.36369743741933, 34.72544487125556], [-77.36350805410954, 34.725323491743445], [-77.36346062490355, 34.72528209067515], [-77.3633878847687, 34.72524369551334], [-77.36337389079561, 34.725078541038684], [-77.36333724104406, 34.72498279352038], [-77.36315364119858, 34.7248834214735], [-77.3630313381903, 34.72490291526549], [-77.36292117093902, 34.72490870979028], [-77.36242064191329, 34.724943868911545], [-77.36206487329709, 34.725195232445394], [-77.36172509656805, 34.72527708091679], [-77.361501980805, 34.72533474096794], [-77.36139523626338, 34.72538198041492], [-77.36124337565396, 34.72553823124924], [-77.3611536624633, 34.725664346681434], [-77.3609587613039, 34.725854097666016], [-77.36030942156948, 34.7261538784862], [-77.36027649414034, 34.72616362305919], [-77.36026989844781, 34.726164239172086], [-77.36025730145582, 34.72616994132516], [-77.3597994618, 34.72637919935045], [-77.35959447294752, 34.72642807707405], [-77.35908010722845, 34.726380089322625], [-77.3590082766998, 34.72638458668214], [-77.35897870488708, 34.72636525120977], [-77.35892815880221, 34.72634355396681], [-77.3587375479024, 34.72628580039657], [-77.358572688555, 34.72628341495661], [-77.35844809007918, 34.72625151755761], [-77.35821276634434, 34.726441785185074], [-77.35816198695893, 34.72659940266045], [-77.3581247390949, 34.72669756489643], [-77.35812216227565, 34.72680780412845], [-77.35801983182334, 34.726955661664434], [-77.35804768463245, 34.72708156393723], [-77.35797551331888, 34.727316091639494], [-77.35778104885864, 34.727475832759], [-77.35760364062921, 34.727624839131366], [-77.35742667182082, 34.72770686151334], [-77.35716358513119, 34.72787318066189], [-77.35697853209533, 34.7279041304635], [-77.35676529125521, 34.72792224281823], [-77.35654622124967, 34.727889064698246], [-77.35649923975294, 34.72787865813616], [-77.35633339205935, 34.72777586623706], [-77.35622481825504, 34.72772125222819], [-77.35617605395811, 34.72773308488384], [-77.35594192976905, 34.72772833546734], [-77.35619315526131, 34.72765161745245], [-77.3561928694339, 34.72732593473434], [-77.35614989283434, 34.727212400782555], [-77.35608342591225, 34.72717707414954], [-77.3560106330709, 34.72707192472873], [-77.35594857345214, 34.72699634771486], [-77.35584916109886, 34.72695271669316], [-77.35553774598995, 34.72704152411963], [-77.35538655947857, 34.72682981241826], [-77.35532079172759, 34.72681422418861], [-77.35530696352289, 34.726757689033846], [-77.35513690871309, 34.72656148215582], [-77.35523996345711, 34.726362554135505], [-77.35521931025507, 34.726150547557815], [-77.35521474021247, 34.726107394296534], [-77.35514938130584, 34.726088588288185], [-77.35508983866958, 34.72620348559742], [-77.35492031022042, 34.726406436725725], [-77.35493457542339, 34.72653649923976], [-77.3549273607037, 34.72672269413826], [-77.35514601305519, 34.72686283527256], [-77.35511101747274, 34.7269756096057], [-77.35524064519745, 34.726986055005234], [-77.35548723826162, 34.727080381478544], [-77.35568418971103, 34.72727633609463], [-77.35559039264393, 34.727395231042124], [-77.3554572682716, 34.72779487255175], [-77.35541709684335, 34.727922764295414], [-77.35526659849502, 34.728107147703255], [-77.35519637587376, 34.72816953212238], [-77.35516459368263, 34.728117021346065], [-77.35493312800054, 34.728044970466655], [-77.35476606617853, 34.72802940606287], [-77.35453552797624, 34.72792140849205], [-77.35438088386275, 34.727884514579955], [-77.35433450964844, 34.72794900345923], [-77.35424803073049, 34.7280337307492], [-77.35404067180767, 34.728297432319266], [-77.35395463483482, 34.72832121396766], [-77.3537681610317, 34.728514129546795], [-77.35366423213688, 34.72860213986712], [-77.35353194147537, 34.72878172093106], [-77.35353119737779, 34.728790348268575], [-77.353510348372, 34.728820002365275], [-77.35341043211251, 34.72901551105335], [-77.35339113753236, 34.72905326475917], [-77.35320804283027, 34.729227992254565], [-77.3529817602375, 34.729596838942925], [-77.35280758825508, 34.72975786979463], [-77.35278383122812, 34.72994853142185], [-77.35307112627119, 34.730071955011475], [-77.35311829805411, 34.73008543797888], [-77.35314024619667, 34.730094302796694], [-77.35337814729507, 34.730263397123636], [-77.35367668330815, 34.730309232761414], [-77.35369826526053, 34.73042769029777], [-77.35368027511271, 34.73047572398213], [-77.3541189068709, 34.730848567511465], [-77.35416624832912, 34.73085609126253], [-77.35417002487985, 34.730895880199704], [-77.35438886793618, 34.73107904092555], [-77.3544382409301, 34.731202639768654], [-77.35449704051493, 34.73133837381896], [-77.35445602015815, 34.731421589213255], [-77.35433397356243, 34.73174849868413], [-77.35423793063418, 34.73186132445249], [-77.35409572800717, 34.73217565641441], [-77.35398372638213, 34.7323836002366], [-77.35401373479219, 34.73255024106811], [-77.3539138554352, 34.73288057461848], [-77.35381650272342, 34.733204750543806], [-77.35361694982565, 34.73340871028827], [-77.35355504405489, 34.73369150381177], [-77.35346278887856, 34.733917253917134], [-77.35334062136457, 34.73405961897926], [-77.3531070121812, 34.734453469541855], [-77.35308596804899, 34.7344722493502], [-77.35305378536513, 34.734515820729456], [-77.35277424211799, 34.734834316119304], [-77.352383895139, 34.73498659714876], [-77.35231394695438, 34.73500106588712], [-77.35169235934052, 34.73512433697486], [-77.35167965642157, 34.735122911988896], [-77.35166325626048, 34.73512650978127], [-77.3513770150921, 34.73513389951492], [-77.35109466733921, 34.73521703897508], [-77.35105811558898, 34.73522861797976], [-77.35104994118973, 34.73522899690478], [-77.3508794338327, 34.73536842221016], [-77.35086570349523, 34.73537727165039], [-77.35085427095456, 34.73538716428198], [-77.3507606306876, 34.73550657138724], [-77.35073816833594, 34.73558340647742], [-77.35061721613374, 34.73568779488286], [-77.3505442860213, 34.73577995148514], [-77.35048168448066, 34.735994425052425], [-77.35040902048475, 34.736042204496684], [-77.3502840187779, 34.736138425735206], [-77.35016797096218, 34.73629688480487], [-77.3501635943451, 34.73631957461138], [-77.35015047806615, 34.73633924140613], [-77.35011973505263, 34.73636949141887], [-77.34946589170309, 34.736902697158484], [-77.3494251464867, 34.73697313227777], [-77.34932858693084, 34.73703122339417], [-77.34909436691127, 34.73712266080798], [-77.34862644726687, 34.73738652964933], [-77.34812397759966, 34.73709682751812], [-77.34810232914097, 34.737129054336094], [-77.34790851003987, 34.73754419816177], [-77.3479448321534, 34.737598789472365], [-77.34796031472537, 34.737617874089665], [-77.34813237314312, 34.73786257143213], [-77.34837183851084, 34.738027579117706], [-77.34842643133283, 34.73807500584543], [-77.34884379277578, 34.73810376839161], [-77.34899138073838, 34.738191954618664], [-77.34937237844532, 34.73848559150522], [-77.34946413621608, 34.738626261761624], [-77.34973774740175, 34.73881491276705], [-77.3498319464907, 34.73892050115556], [-77.34986029081392, 34.739273470017295], [-77.34986675058889, 34.739284591226514], [-77.34987017646213, 34.7392902347433], [-77.35016330820656, 34.73945402059016], [-77.35015578083033, 34.739732309402264], [-77.35012116442302, 34.740142858835675], [-77.35008809263195, 34.740228978296564], [-77.34999105588216, 34.74037489540477], [-77.35017404052755, 34.740704563196104], [-77.34997509290662, 34.74117556121168], [-77.34999210593149, 34.74130504793], [-77.35004255271716, 34.741697367161], [-77.34993170758469, 34.74199731642016], [-77.34976078532009, 34.74237664162651], [-77.3498009726926, 34.7427052771758], [-77.3499060001244, 34.74280547638554], [-77.34993840673067, 34.743178749901816], [-77.3504803836581, 34.74358680818966], [-77.34960966574826, 34.744310307743056], [-77.34922254172011, 34.744452864514834], [-77.34901937678774, 34.74476204296472], [-77.34892629601126, 34.74482868448816], [-77.3489712346742, 34.745101173920986], [-77.34901623810951, 34.74524985308389], [-77.34893263814834, 34.74547257243434], [-77.34877775891897, 34.74576995368095], [-77.34867003234537, 34.7458781980003], [-77.34872232404642, 34.74608098629368], [-77.34899948831927, 34.74622691068122], [-77.34904702803456, 34.74624689625924], [-77.3495404530874, 34.74624016541083], [-77.34957940192263, 34.74647616188645], [-77.34969508338503, 34.74661884772847], [-77.34990584811605, 34.74674753453804], [-77.35005987216265, 34.74688408979737], [-77.35020091246278, 34.7470368207002], [-77.35036531141223, 34.747182558805], [-77.35036909185287, 34.747257434024455], [-77.35050181285722, 34.74742465454425], [-77.35054611994258, 34.747437697873465], [-77.3505596441466, 34.74747497688036], [-77.3508103261839, 34.747628695836724], [-77.35092379266591, 34.74791238895126], [-77.35093167760942, 34.74792956508831], [-77.35079808428817, 34.748401656412966], [-77.35079179326341, 34.748417882571125], [-77.35077671374671, 34.74844294319128], [-77.350587470921, 34.74893329969746], [-77.3503968743276, 34.7493227594768], [-77.35027984308671, 34.749462891155275], [-77.35009075117925, 34.749689841920386], [-77.35004853125955, 34.749791359867146], [-77.34993045025395, 34.74999821254557], [-77.349884616935, 34.750145499776224], [-77.34964332695735, 34.750379536153815], [-77.34938076886554, 34.75056101271429], [-77.34919971336325, 34.75081530872402], [-77.34887751684934, 34.75095361187081], [-77.34861687174019, 34.750892368569154], [-77.34858156555465, 34.75090599126505], [-77.34847453646081, 34.75092903888112], [-77.3482564561185, 34.75102947679996], [-77.34803999146553, 34.75098865643601], [-77.3479730147838, 34.75099331971931], [-77.34796130209946, 34.75099479714126], [-77.34761568423448, 34.751173169617026], [-77.34735990690118, 34.751100316082514], [-77.34733747731855, 34.75109985419545], [-77.34732804167403, 34.751095124422406], [-77.34725583119305, 34.751096235422175], [-77.34703552483504, 34.7511082581526], [-77.34700968320189, 34.75113000344608], [-77.34691115670643, 34.75134105882463], [-77.34688710267419, 34.75139050850047], [-77.34680763347207, 34.751495317699465], [-77.34662666641088, 34.751913613558926], [-77.34650942437939, 34.75226173804783], [-77.34596821191863, 34.75271977884444], [-77.34547922820528, 34.752516835886546], [-77.34549319702776, 34.75229300820534], [-77.34529294368068, 34.75246065318237], [-77.34476639523665, 34.75273266605224], [-77.3444680130466, 34.753006439017476], [-77.34379723279923, 34.753021852510486], [-77.3434775740878, 34.75304490778676], [-77.34265040906365, 34.75311532732294], [-77.34271880905698, 34.752449628463374], [-77.34260705184585, 34.75236033007468], [-77.34261035447777, 34.75197712797054], [-77.34260192059627, 34.75197010677615], [-77.34259796419474, 34.75194913528617], [-77.3424117417329, 34.751760678995986], [-77.3423741583791, 34.75175106948805], [-77.34226634549319, 34.75169422431614], [-77.3420717135995, 34.75169870695567], [-77.34179088770182, 34.75160213635445], [-77.34159093338938, 34.7515649705023], [-77.34151375199161, 34.75155739217803], [-77.34140289929343, 34.75156755850201], [-77.34085464705637, 34.751730527292324], [-77.34035359052378, 34.75191453970549], [-77.3401471444459, 34.75213722372486], [-77.33880266781073, 34.752920508003164], [-77.3387066832637, 34.75297104269452], [-77.33827665484384, 34.75253662649457], [-77.33824222251732, 34.75250805152628], [-77.33805856119014, 34.75211392735057], [-77.33799065679632, 34.75196820887699], [-77.33784453955823, 34.7518153594185], [-77.33764707153502, 34.751682972163074], [-77.33730121653393, 34.75170998079847], [-77.3372803872995, 34.751695338885945], [-77.33705583840509, 34.751504488006034], [-77.33699200471897, 34.75148946798792], [-77.33673942072309, 34.751495564796826], [-77.3366507986133, 34.75142174995348], [-77.33654190931101, 34.7513471180155], [-77.3364961205348, 34.75130217464739], [-77.33628016983117, 34.75131255443667], [-77.33622607338808, 34.7512007915781], [-77.33589882911848, 34.75121159308278], [-77.3356317606009, 34.75118452589082], [-77.33522086710846, 34.750944537769385], [-77.33509638097144, 34.7509655528938], [-77.33500255922334, 34.7510033929867], [-77.3348911820364, 34.75119800551399], [-77.33512534495866, 34.75154131308461], [-77.33498686835266, 34.75191272699152], [-77.33485994694422, 34.752153759208944], [-77.33454600861216, 34.75225166216344], [-77.33405536608704, 34.752485715904214], [-77.33366716541076, 34.75222856839776], [-77.33367437974252, 34.75213348474117], [-77.33335964864347, 34.752101095780255], [-77.33300947257335, 34.75196220575352], [-77.33288447719573, 34.751952472921786], [-77.33275672664422, 34.75186598815343], [-77.33232512723023, 34.75159421628709], [-77.33226757326184, 34.75144566303296], [-77.3319867076853, 34.75135918738349], [-77.33162028568005, 34.75134780953216], [-77.33118153013956, 34.75110714052481], [-77.33099474854288, 34.75104043533423], [-77.33090458590611, 34.750960338016775], [-77.33039479011566, 34.75075058363657], [-77.3305385819445, 34.75119525542193], [-77.33000959440487, 34.75168603350778], [-77.32995793536469, 34.75183748136117], [-77.3299812420073, 34.752075549512064], [-77.32997744438333, 34.75221661088915], [-77.33000525983397, 34.752243081690565], [-77.33023162325692, 34.75241534074176], [-77.33037710528026, 34.75277430899493], [-77.33088558080736, 34.752700871404166], [-77.33073273532369, 34.753118122949566], [-77.33131959432023, 34.753653433038856], [-77.33175878410326, 34.753606126404804], [-77.33166242061075, 34.753965449712325], [-77.3323250811986, 34.75431596189465], [-77.33300948454024, 34.75422118514524], [-77.33314631885705, 34.75473681063724], [-77.3333689465252, 34.75484654520302], [-77.3337286965156, 34.75498160720739], [-77.33391373134049, 34.75503325448451], [-77.33410706018165, 34.75495396783853], [-77.33458133592495, 34.754797538012255], [-77.3349869575292, 34.754819759417614], [-77.33629466710283, 34.75484873573074], [-77.3368874767556, 34.75510755771168], [-77.33757110835276, 34.75455596685291], [-77.33765535917053, 34.75452685222965], [-77.33780672860837, 34.754474542539064], [-77.33831314835794, 34.75432482616258], [-77.33868283389133, 34.75458926994979], [-77.33916840254693, 34.754885996179766], [-77.33932827014038, 34.75495436057282], [-77.33982256142548, 34.75528962670238], [-77.33986668297854, 34.75531312584044], [-77.34034493830623, 34.755578617126936], [-77.34041045934123, 34.755625939652305], [-77.34046531222666, 34.75568291422644], [-77.34060450133461, 34.7557161243781], [-77.34076515890702, 34.75574738732878], [-77.34084961558497, 34.75590334171679], [-77.34110906021125, 34.75587713604722], [-77.34114172522357, 34.75644273368808], [-77.34122374171046, 34.75655366263868], [-77.34123409020893, 34.75656933691861], [-77.34124886586271, 34.756590788667786], [-77.34145181170288, 34.75679610430521], [-77.34156428104987, 34.75681708222964], [-77.34182200198815, 34.756680012581796], [-77.34217327666485, 34.7566355551162], [-77.34245872279311, 34.75655047033083], [-77.34271011613967, 34.75655555084189], [-77.34335812689207, 34.756512878116446], [-77.3435827095407, 34.75671753130171], [-77.3436058941117, 34.75672582145166], [-77.34382420876081, 34.7569428568009], [-77.34393317923346, 34.75715684032661], [-77.34402645871283, 34.75734001120398], [-77.34437106345194, 34.757096782929544], [-77.34436473264753, 34.756744729030004], [-77.34464112546846, 34.75631471832888], [-77.34487836469884, 34.756052449096906], [-77.34493674541272, 34.75597486197392], [-77.34505468005187, 34.75586333515471], [-77.3451757345032, 34.75590364369614], [-77.34564369641417, 34.755897891079876], [-77.34567647308758, 34.755912788822286], [-77.34594310323841, 34.75589831116209], [-77.3459626708621, 34.755889810162174], [-77.34615327116806, 34.75577594256111], [-77.34632332883763, 34.755620619040705], [-77.34633582791004, 34.75560884456261], [-77.34647695442175, 34.75542439003098], [-77.34659929730825, 34.75532901390108], [-77.3467087113795, 34.75499140699217], [-77.34712954699464, 34.75490770576625], [-77.34765965860811, 34.75469617430732], [-77.347709211598, 34.754601127533476], [-77.34782136903758, 34.75458842993752], [-77.34788040795645, 34.754612230176335], [-77.34824811399241, 34.75444022720839], [-77.3484552354082, 34.754343340431625], [-77.34850088378451, 34.754311487879605], [-77.34863828916806, 34.75422652036822], [-77.34868859087071, 34.754192139908916], [-77.34869324157651, 34.754184261998844], [-77.34872387507093, 34.75406279499326], [-77.3487240612262, 34.75396346556442], [-77.34866032197529, 34.75376276900694], [-77.3485241950541, 34.753602810716885], [-77.34858720041854, 34.753280328962596], [-77.3487239734458, 34.75294694708438], [-77.34925957753907, 34.752763261060124], [-77.34958924043866, 34.75262740544294], [-77.34969539508097, 34.75253092434491], [-77.34994792090217, 34.75243271398598], [-77.35105709554387, 34.75169874964277], [-77.35158261178215, 34.75164960786463], [-77.35228296968663, 34.75160292182114], [-77.35283266725975, 34.75159215288153], [-77.35300977413455, 34.752012563195755], [-77.35324812672292, 34.75206104562584], [-77.3533404356427, 34.75208679625461], [-77.35373241277614, 34.752477000891176], [-77.35371257882232, 34.75286779171498], [-77.35372981286851, 34.75288851250047], [-77.35410138929845, 34.752981641269926], [-77.35389064816171, 34.75369397552569], [-77.35390511266642, 34.75383921844818], [-77.35387141684927, 34.75394692981821], [-77.35392262031742, 34.7542068257667], [-77.35442413091651, 34.754742750887004], [-77.35434025333976, 34.755163191831116], [-77.35493093049759, 34.75564795569946], [-77.35516643913029, 34.756104624279956], [-77.35522214468544, 34.75755752374404], [-77.35530689029484, 34.75769021758419], [-77.35595551492688, 34.75865150232508], [-77.3561669015639, 34.758854145274796], [-77.35672130514746, 34.75930129392418], [-77.35705690329894, 34.759381326405105], [-77.35722594067697, 34.759332963474655], [-77.35769716141972, 34.75967735633999], [-77.35772271692056, 34.75968511202447], [-77.3579071478644, 34.759804067821094], [-77.35797667070092, 34.75984202911645], [-77.35799788859954, 34.759840292865874], [-77.35799975732564, 34.759886081174976], [-77.35810462695457, 34.760086185283825], [-77.35812936874464, 34.760133396256734], [-77.35816939134637, 34.76020976335946], [-77.35851500087438, 34.76051723795916], [-77.35853383076079, 34.760610777515296], [-77.35850709801728, 34.76076201532553], [-77.35856834783866, 34.760898719705786], [-77.35867027500893, 34.76090006530947], [-77.3587310655283, 34.76097496310202], [-77.35901156002035, 34.76103181011656], [-77.35889102376504, 34.76144039009207], [-77.35891418547888, 34.76177057953259], [-77.35897580144969, 34.76184776899153], [-77.35895460499773, 34.76191904710395], [-77.35893576657652, 34.76199136160844], [-77.35902709880948, 34.76220254491188], [-77.35921746183497, 34.76237034849037], [-77.35925262445336, 34.762423323215216], [-77.35926037611262, 34.762641249746856], [-77.35946857820112, 34.7628232613031], [-77.35931060543861, 34.76296148132022], [-77.35936873981827, 34.76312247931119], [-77.35939778971655, 34.763199443881845], [-77.35944989668248, 34.76325717751319], [-77.35944118217951, 34.7633144075663], [-77.35945776181761, 34.76341088418813], [-77.35946102764686, 34.763445731916974], [-77.35950368365992, 34.76354952012491], [-77.35955419681983, 34.76369225140583], [-77.3596584517196, 34.76368812549757], [-77.35974645761932, 34.76375988527195], [-77.35970223418083, 34.76394645804367], [-77.35986771826458, 34.76423062425658], [-77.3598778508707, 34.76430785027006], [-77.35983224538656, 34.76472287936362], [-77.35982899071846, 34.76480878714617], [-77.36006395917117, 34.76495318043479], [-77.36000384948676, 34.76548990016706], [-77.36005950856072, 34.76566645133827], [-77.3600733499249, 34.766030132362644], [-77.36059696002653, 34.76636993293589], [-77.36056788192049, 34.766902214863286], [-77.36050533872357, 34.76730057562222], [-77.36050448911632, 34.767439259352244], [-77.36041079828367, 34.76751811547788], [-77.36041402210644, 34.767784838898216], [-77.36041623161258, 34.76796760012337], [-77.36045934816964, 34.768014392120875], [-77.36054182601745, 34.768177887031015], [-77.3606065489891, 34.76821274024538], [-77.36073462077935, 34.768171071563245], [-77.36083971108972, 34.768219746135365], [-77.3611843219645, 34.7683566795907], [-77.36132500192127, 34.768347283088104], [-77.36146340448295, 34.768491180624125], [-77.36170554656022, 34.768585953630556], [-77.36174584963737, 34.76871257679513], [-77.36184172102307, 34.76877712597344], [-77.36207122287487, 34.76887997974855], [-77.36223020638906, 34.768996695106246], [-77.36244343245755, 34.76891434128541], [-77.36285042771537, 34.769001855577244], [-77.36303637906333, 34.76908173911714], [-77.36348547826006, 34.769552403313824], [-77.3638332770056, 34.769485206038794], [-77.3641761278034, 34.7695754453961], [-77.36433496114915, 34.769444348589445], [-77.3642746624908, 34.76931798561149], [-77.36463257495713, 34.769182387031215], [-77.36463055893742, 34.76916292497971], [-77.36466264759665, 34.76913993180008], [-77.36462408778317, 34.769137514000924], [-77.36452639746102, 34.76900871775502], [-77.36429439204937, 34.769168211908536], [-77.36427751395466, 34.76875976254542], [-77.36385580307675, 34.768583315590064], [-77.36382759066613, 34.76856644388748], [-77.36377136717391, 34.768522494938125], [-77.3633354750458, 34.76835367551969], [-77.36327725527701, 34.768252332967094], [-77.36315125260171, 34.7680859929278], [-77.36305363611791, 34.76802475094354], [-77.3629788976303, 34.76797501187865], [-77.36269814472199, 34.76803731312529], [-77.36230547654677, 34.76762224201545], [-77.3621557433561, 34.76769590343881], [-77.3620904522904, 34.76753321523876], [-77.36213690221052, 34.76745137333201], [-77.36216612407529, 34.76739429271036], [-77.36193243023969, 34.76670649354563], [-77.36191356345871, 34.766320803605254], [-77.36186716411838, 34.766238511946995], [-77.36190659456959, 34.766220961401636], [-77.36186416437202, 34.76584240781157], [-77.36175982644824, 34.76564171542169], [-77.36179373557312, 34.765287544526466], [-77.36177554378186, 34.7650879881071], [-77.36185744026449, 34.76495270178802], [-77.36187460546049, 34.764563432767744], [-77.36182113021988, 34.76443012359047], [-77.361589351155, 34.7641718043142], [-77.36133765517555, 34.7638162632627], [-77.36124447099382, 34.76342287696791], [-77.36135536233692, 34.76307281346194], [-77.36146719510225, 34.762743145620355], [-77.36193858192199, 34.762529300758395], [-77.36203591998499, 34.762200883810834], [-77.36210175181277, 34.76184679649459], [-77.36213112802196, 34.76134669417282], [-77.36222095115549, 34.761329290624516], [-77.36222318184994, 34.761230417720725], [-77.3623218620128, 34.7609099242891], [-77.36234088975823, 34.76081204387816], [-77.3625145735918, 34.760476391205614], [-77.36249786502859, 34.76022355279958], [-77.36201777466596, 34.75966365689089], [-77.36193314695014, 34.75962655291862], [-77.36189238750549, 34.75956618605316], [-77.3614521509693, 34.75915468364752], [-77.36080349865564, 34.75939080565254], [-77.36037385481379, 34.759435733879435], [-77.3601846477182, 34.75945895821007], [-77.36009693266406, 34.75940857270197], [-77.359872016763, 34.75935618063251], [-77.35963481959985, 34.75928945375034], [-77.35933450727329, 34.75920651267154], [-77.35943000624643, 34.75892947539883], [-77.35925298173386, 34.75854156080878], [-77.35921834410765, 34.7585074004714], [-77.35922592218132, 34.758470107255405], [-77.35921533147197, 34.75840979192009], [-77.35916980295741, 34.758150506254374], [-77.35909413448667, 34.75800081353135], [-77.3590455602618, 34.75785183580092], [-77.3590545326024, 34.75751886521514], [-77.3590415515508, 34.757460692388534], [-77.35901385203637, 34.75730234369041], [-77.35900390174626, 34.75728212348714], [-77.35900199370418, 34.75726357663106], [-77.35893752197589, 34.757146477679655], [-77.35885900676743, 34.757058321886916], [-77.35880232513186, 34.75699937358183], [-77.35865533382349, 34.7569692904494], [-77.3585583413216, 34.75680815700996], [-77.3583294034746, 34.756825745965514], [-77.35822757323045, 34.75625864642542], [-77.35816557455081, 34.756178743608224], [-77.35816500159498, 34.75616374381634], [-77.35816269520201, 34.75610787771818], [-77.35810032823574, 34.75581926154733], [-77.35798404985171, 34.755716277113564], [-77.35801562737439, 34.75549018250674], [-77.35779991775966, 34.7552944562888], [-77.3577547851852, 34.75526036446356], [-77.35750565718459, 34.75509397056332], [-77.35729547388223, 34.754968797187225], [-77.35698934773713, 34.75470263571723], [-77.35677767268011, 34.75441972004238], [-77.35671265688316, 34.75412700611417], [-77.35677406951831, 34.75393283211026], [-77.35654324551435, 34.753490510388], [-77.35653675510613, 34.75347802324649], [-77.35653520824583, 34.75347505049792], [-77.35653248654111, 34.75347094346659], [-77.35571860814545, 34.752615554059346], [-77.3556780578073, 34.752557438205415], [-77.35562214298628, 34.7524804836739], [-77.3551191487853, 34.751723065457206], [-77.35505044624603, 34.75146329080572], [-77.35509992921581, 34.75093571484362], [-77.35551128489958, 34.750799918077334], [-77.35582061733513, 34.75065201969838], [-77.35609289244645, 34.750538775324024], [-77.35621648090861, 34.75043431649516], [-77.35646325273726, 34.75007642648611], [-77.35637660035482, 34.74988304618861], [-77.3562632751104, 34.749742028877336], [-77.35608798856781, 34.74964055318105], [-77.35593634976972, 34.74933651089272], [-77.35580077058144, 34.74930933296543], [-77.3553912067196, 34.74915111352785], [-77.3547158243266, 34.74885412588252], [-77.35453885735191, 34.74870307450415], [-77.35444369015258, 34.74828883650734], [-77.35422385962642, 34.748156930651625], [-77.35389550969452, 34.748113927154066], [-77.35387180758275, 34.74799520297719], [-77.3539614723943, 34.74788684522761], [-77.35438586416936, 34.74775031632103], [-77.35447959339322, 34.74742440221271], [-77.35431092078922, 34.747301549274006], [-77.35433545684523, 34.74695680136058], [-77.35425208226768, 34.74655838623146], [-77.35423816025681, 34.74634301919107], [-77.35417925927483, 34.746003475068086], [-77.35421460589674, 34.74579879210444], [-77.35409882498719, 34.74535192241152], [-77.35398851900665, 34.74505488968129], [-77.35436527843368, 34.74443459460544], [-77.35455938230494, 34.74407464009719], [-77.35468840862193, 34.74398406215043], [-77.3552480900563, 34.74345732775626], [-77.35528516558676, 34.743441102700025], [-77.35527709925351, 34.743415875386425], [-77.35528153547885, 34.74340129424021], [-77.35556286582157, 34.74288926609081], [-77.3557702348747, 34.742631173095276], [-77.35578287077429, 34.74260553430817], [-77.35600423964003, 34.74234129575571], [-77.3559592794671, 34.74209154194577], [-77.3557279678001, 34.74189183469288], [-77.35538179822312, 34.741747318016024], [-77.355233951972, 34.74144385456014], [-77.35489723903272, 34.74103109914671], [-77.354842696812, 34.74058515791896], [-77.35486268202776, 34.74051393653904], [-77.35498790264036, 34.7400438895886], [-77.35501502969682, 34.74001066698503], [-77.35506721847483, 34.739624030530535], [-77.3549420431883, 34.73956280112008], [-77.35466858652298, 34.73926617843323], [-77.3544830623493, 34.739284953651854], [-77.35447273526015, 34.739139836330565], [-77.35370245531907, 34.738468410736694], [-77.35360365129017, 34.738384579060344], [-77.35311896035569, 34.73841530708983], [-77.35309470046816, 34.73838186338332], [-77.35299065961917, 34.73836849606292], [-77.3530449571343, 34.73826538500539], [-77.3531585581737, 34.73827898041438], [-77.35366144077912, 34.738173298022716], [-77.35381723466489, 34.73807323948408], [-77.35438828180271, 34.73720189699387], [-77.3548709489245, 34.7366918745017], [-77.35495509514361, 34.73663671080903], [-77.35552064405088, 34.7363324623561], [-77.35600994876171, 34.73649190770657], [-77.3560480430215, 34.73650426253518], [-77.35606809533618, 34.73650961820531], [-77.3561290053189, 34.73652993336019], [-77.35661894597564, 34.7366750727675], [-77.35687793717537, 34.736654279467245], [-77.35691453681677, 34.73685510835752], [-77.35713323287371, 34.73696643749556], [-77.35735629865778, 34.737074723721726], [-77.35752219917356, 34.73712591155384], [-77.35769018048624, 34.737110909979506], [-77.35779478611285, 34.73697795270126], [-77.35791012758705, 34.73683134950119], [-77.35829618322123, 34.73666542090476], [-77.35847879332069, 34.73645761777856], [-77.35871963670368, 34.73627203968908], [-77.35925031774829, 34.73586312571457], [-77.35957408215943, 34.73575253986969], [-77.35974375724905, 34.73549189138015], [-77.3601226682597, 34.73496210719091], [-77.36011891419503, 34.734949417230645], [-77.35989095877532, 34.734496907273716], [-77.35987486933189, 34.73434871463434], [-77.36002795422928, 34.733601812607404], [-77.3602727882892, 34.73346970371027], [-77.36088961572166, 34.73308872980854], [-77.36129098616003, 34.732960153791154], [-77.3614538362881, 34.732820133377245], [-77.3616769334317, 34.73250979445736], [-77.36200334860008, 34.732257279921846], [-77.36290583061387, 34.73152343803148], [-77.36318471309234, 34.731292716454355], [-77.36410270126275, 34.731095874188135], [-77.36424678234889, 34.73103000472332], [-77.36433299928564, 34.73103354898045], [-77.36483669516147, 34.731060783546695], [-77.36509822883083, 34.731118360826265], [-77.36515931299232, 34.7311273364911], [-77.36540771608563, 34.73115664150865], [-77.36560831544416, 34.731120118463906], [-77.36583806366025, 34.7310904078934], [-77.36605890228046, 34.73097633280592], [-77.36632995576352, 34.73095908938077], [-77.36669374067344, 34.73085233042349], [-77.36703043706376, 34.73087027695954], [-77.3680040564368, 34.73045824733253], [-77.36800518529897, 34.7304573806438], [-77.36800602004114, 34.73045751698288], [-77.36800638482968, 34.73045760884815], [-77.36800750302388, 34.73045777382], [-77.36879759818592, 34.73063727695044], [-77.36918482801087, 34.73052251673891], [-77.36963809334924, 34.73062743742955], [-77.36987911039478, 34.7305935525206], [-77.3703948602776, 34.730479919844115], [-77.37077605653673, 34.730565762406485], [-77.37141614780046, 34.73062642126757], [-77.37164436261293, 34.730593651474244], [-77.37169878335429, 34.73057818725385], [-77.37211160248587, 34.73067915923425], [-77.3726688585879, 34.730668070926555], [-77.3729347090276, 34.730566625641515], [-77.3732965517173, 34.73073565136715], [-77.37336516096802, 34.73111798844238], [-77.37340461578786, 34.731157096315265], [-77.37348899959717, 34.73116133901429], [-77.37377642673684, 34.7309829073086], [-77.37411624198506, 34.73091457692798], [-77.37455006017896, 34.730751366434006], [-77.37549707797797, 34.730575662960405], [-77.37627366655191, 34.73057679972349], [-77.37677270149166, 34.73059933710334], [-77.37804987874253, 34.73052101649135], [-77.37747458091138, 34.729887643596065], [-77.3770430239486, 34.72966763004987], [-77.37659968340347, 34.72935957855734], [-77.37697753647583, 34.729027279943566], [-77.37708613133013, 34.72891159461988], [-77.37727184657197, 34.72887894409522], [-77.37774310545248, 34.728489231106614], [-77.37803766605796, 34.72827996666363], [-77.37840704647999, 34.72807827165352], [-77.37880528263877, 34.72801382891009], [-77.37889856788195, 34.728022111471034], [-77.3792968925475, 34.72803689705172], [-77.37943402136627, 34.72805685261716], [-77.37958284434046, 34.727982024375805], [-77.37967566054047, 34.72790798074311], [-77.37980289291326, 34.727779449131845], [-77.3800049606138, 34.7276981383411], [-77.38021844730828, 34.72756318669731], [-77.38044989488849, 34.72744671794938], [-77.38068373274884, 34.727311458092906], [-77.38138114008964, 34.727213470084905], [-77.38151398202622, 34.72717258930742], [-77.38162176435097, 34.72714642203865], [-77.38170286882983, 34.72723335510266], [-77.38180322527748, 34.7273611986048], [-77.38243774468353, 34.72781972797081], [-77.38265152926425, 34.72801746493211], [-77.38275305057013, 34.72813463758787], [-77.38289706800077, 34.7283032125494], [-77.38302277963753, 34.72846853757247], [-77.38353499670588, 34.72908565122513], [-77.38352037006821, 34.72915378487286], [-77.38355327937225, 34.72932992759516], [-77.3839560079698, 34.72967027588942], [-77.38462265341006, 34.729466290831375], [-77.38476112674938, 34.72949025080347], [-77.38478703464567, 34.72949779188861], [-77.38484787157734, 34.729493213202375], [-77.38558333426083, 34.729338176902395], [-77.38569763048758, 34.72928330753531], [-77.38597330589401, 34.72922757564821], [-77.38620188315716, 34.72904123389328], [-77.38627742187789, 34.728976543293264], [-77.38630456388567, 34.72893652896121], [-77.3866263055652, 34.72879873849953], [-77.38666393456394, 34.72878270238347], [-77.38694666482408, 34.72868411188702], [-77.38700603577645, 34.728671388747124], [-77.38733957454511, 34.728739548864766], [-77.38756191500414, 34.72877362931161], [-77.38762366150887, 34.72883896042954], [-77.38782225238667, 34.729146339287745], [-77.38784285437313, 34.72919524648168], [-77.38792298758746, 34.729422725591675], [-77.38795569420517, 34.72951431575791], [-77.38797830851718, 34.729548879796134], [-77.38800677707624, 34.72955977083605], [-77.38824975711786, 34.72971839873944], [-77.38849406162898, 34.72975897958111], [-77.38855580655397, 34.72976860246863], [-77.38859754333535, 34.729777577687834], [-77.388809536275, 34.72981309159898], [-77.38910566929819, 34.72986021650343], [-77.38917494623787, 34.72984473046479], [-77.38924988486093, 34.729890302270086], [-77.38963027584023, 34.729969805514344], [-77.38979038282976, 34.72993362898552], [-77.39028467707317, 34.72990535954954], [-77.39050874510053, 34.729909724312805], [-77.39110406702859, 34.72982582842343], [-77.39130223821864, 34.72971066536243], [-77.39171607203056, 34.72971176970795], [-77.39178132998994, 34.72970149059304], [-77.39221924690771, 34.72971360780798], [-77.39241975051108, 34.729711105665515], [-77.39261054801153, 34.72982863380213], [-77.39298537238761, 34.72997181034246], [-77.39337460705337, 34.73010633539637], [-77.39357622561977, 34.73014549429789], [-77.39377116455663, 34.73023753443171], [-77.39389835986563, 34.73047529691892], [-77.39405398263007, 34.73070928227133], [-77.39421840535942, 34.73094375986935], [-77.39428217301219, 34.73102804992565], [-77.39438209569026, 34.73100556018883], [-77.39461089006095, 34.73100007645954], [-77.39481741968551, 34.730969102281605], [-77.39581232061857, 34.731144899067246], [-77.39585126719575, 34.731145123881724], [-77.3958604895663, 34.731151976391985], [-77.39679503217576, 34.73120969237246], [-77.39710674386377, 34.731238081293284], [-77.39740573994317, 34.73114318518039], [-77.3976402702144, 34.73109521462882], [-77.39780075181281, 34.73105594245757], [-77.39821990184781, 34.731061170962796], [-77.39844438163989, 34.73104758791411], [-77.39852113765589, 34.73103899241936], [-77.39866470758926, 34.73102445611097], [-77.39911304756833, 34.73095285405723], [-77.39936726362228, 34.730925960247774], [-77.39976237702521, 34.73092482381164], [-77.4003474477985, 34.73106697254093], [-77.40036059142126, 34.731073144061284], [-77.40037519109187, 34.73107748374665], [-77.40041092510515, 34.73107615548901], [-77.40100155951696, 34.73107395556364], [-77.40133334838258, 34.731147615543456], [-77.402207135641, 34.73114531551355], [-77.4022380510067, 34.73113034418625], [-77.40227022423804, 34.7311213606224], [-77.4022923988781, 34.7311488543953], [-77.40229967536767, 34.73117768407109], [-77.40229203343145, 34.73121860368463], [-77.40215403559858, 34.732099197045294], [-77.40234015277113, 34.73231009814564], [-77.40228009855211, 34.73269552672983], [-77.40220845735628, 34.73282316494334], [-77.40186219266722, 34.732760496062085], [-77.40179272870657, 34.73276891139504], [-77.40146404544417, 34.73285776727947], [-77.40112024152222, 34.73287680780623], [-77.4007336149446, 34.732866429145076], [-77.40061014850626, 34.73295813453333], [-77.40048766294156, 34.73284700418294], [-77.40040765169766, 34.732827188712676], [-77.39958177677501, 34.73277322613264], [-77.39925106233463, 34.73268887021184], [-77.39886795373937, 34.7327729677449], [-77.3986945746776, 34.73281912822658], [-77.39855138314948, 34.73289054884068], [-77.3979310291695, 34.732966874795494], [-77.39788526415383, 34.73297643806958], [-77.39787543082241, 34.73297630785435], [-77.39784902636909, 34.732975678742626], [-77.39741838269288, 34.73297726772083], [-77.3972232017991, 34.73304832298979], [-77.39696310147968, 34.73298111581262], [-77.39670635545008, 34.733135094548956], [-77.39652535293197, 34.733243646948154], [-77.39634779441951, 34.73347159908844], [-77.39626625564603, 34.73354028117248], [-77.39601277872434, 34.73367210358565], [-77.39589148220686, 34.733816972747476], [-77.3961027274722, 34.734042219599985], [-77.39610928815999, 34.734578222001595], [-77.3960875139975, 34.73459604252297], [-77.3960788596439, 34.7346315137173], [-77.39612512663395, 34.73462421551859], [-77.39616280843171, 34.73462238198461], [-77.39687897185864, 34.734340148500586], [-77.3975159063894, 34.7342506050552], [-77.397717048399, 34.734047791666434], [-77.3981075918205, 34.73378592658778], [-77.39826110202519, 34.73367896584201], [-77.39829662138933, 34.733664993154484], [-77.3983295750078, 34.733655745590625], [-77.39849276595453, 34.73362537831113], [-77.39900619170595, 34.73353365392468], [-77.39943470772104, 34.73412540341242], [-77.39947395065725, 34.734132105799844], [-77.39950438809863, 34.73414321184951], [-77.39976038462684, 34.734250027737694], [-77.39988630059696, 34.734247452618995], [-77.40003194735883, 34.734257519273925], [-77.40009204652377, 34.734211914071366], [-77.4002601651558, 34.73409865755124], [-77.40034000187718, 34.73401293658079], [-77.40045656062293, 34.73388778617432], [-77.40090088871118, 34.73363361927792], [-77.4009991870167, 34.73359420638331], [-77.40121843598706, 34.73359514204055], [-77.40145205038738, 34.7335863870065], [-77.4015528491814, 34.733596569146556], [-77.40170641605093, 34.73362478670457], [-77.40198321576992, 34.73370658395724], [-77.40217830112417, 34.73365097610137], [-77.40272899280302, 34.73356435883109], [-77.40254159456279, 34.73312305327195], [-77.4029130776909, 34.73332815920699], [-77.40324617299149, 34.732778556256584], [-77.4034665535618, 34.732704075143715], [-77.40362896347935, 34.7326561769607], [-77.40374917530272, 34.732326890595644], [-77.40374525721418, 34.73224242901448], [-77.40374363456782, 34.73209545333936], [-77.40366552596572, 34.73165541609197], [-77.40359247684071, 34.73149954566823], [-77.40349745491591, 34.73131172850872], [-77.40341670636364, 34.731126487655494], [-77.4033523438449, 34.73098675095228], [-77.40326073640531, 34.730745174526426], [-77.40302728837491, 34.73031392763487], [-77.40305569702738, 34.72993798525293], [-77.40316048599027, 34.7296456424244], [-77.40334041823462, 34.72964106708431], [-77.40358128172457, 34.72938944836515], [-77.40379550155727, 34.729187463816906], [-77.40379921233992, 34.72918168655168], [-77.4039534781557, 34.728960507294225], [-77.40404628112756, 34.72884927934138], [-77.4042987398283, 34.7285466951518], [-77.40431076089405, 34.72853349758507], [-77.40431642578126, 34.72852833136977], [-77.40436214220009, 34.72850066463246], [-77.40484342535792, 34.728153535532414], [-77.4049269400023, 34.72804453875105], [-77.40508191630653, 34.72805665798773], [-77.40533561304932, 34.72796451056917], [-77.40543017461118, 34.72796116011614], [-77.4056523021764, 34.72787733009041], [-77.40570087578875, 34.72781350972615], [-77.40580625474696, 34.72776964133727], [-77.40641922136497, 34.72758644616859], [-77.40646546484501, 34.72756720181395], [-77.40650334003557, 34.72757665984518], [-77.40657066468795, 34.72757988887985], [-77.40697628855294, 34.72765417649055], [-77.40714933678774, 34.72755998473802], [-77.4074074280019, 34.72761087690066], [-77.40768219646382, 34.727469053221455], [-77.40776551117835, 34.7274481418979], [-77.40782152300724, 34.72745291486885], [-77.40804534508803, 34.72731650412223], [-77.40812768833966, 34.72729210139549], [-77.4082119356031, 34.727211892681375], [-77.40834114811443, 34.727140400957964], [-77.40832346404568, 34.72686402627211], [-77.40832134228852, 34.7268499553664], [-77.40836008016109, 34.726587907835004], [-77.408436521466, 34.7263007220974], [-77.40847017296971, 34.726067297913296], [-77.40858735623219, 34.72584634988214], [-77.40872114339189, 34.72559595926745], [-77.40879291485689, 34.72538710820879], [-77.40894597394507, 34.72511547900578], [-77.40902399370715, 34.7250167604781], [-77.40910557376687, 34.72473758157358], [-77.4091432964677, 34.72462537874786], [-77.40919946173786, 34.7245554997469], [-77.40938235751571, 34.72427852997699], [-77.40944757655815, 34.72417268636467], [-77.40946381404005, 34.72414185889553], [-77.40959211068154, 34.723943680218625], [-77.40967047583665, 34.723829294853516], [-77.40974296912891, 34.723716885784306], [-77.40990381127634, 34.72351204177408], [-77.40991385817256, 34.72347907187351], [-77.4099370378654, 34.723470408650556], [-77.41013772711955, 34.7232958383896], [-77.41021461692033, 34.72322265175332], [-77.41034568633866, 34.723166345769535], [-77.41071410847508, 34.72293831098968], [-77.41088561842162, 34.72282341249735], [-77.4111386995214, 34.72264201620189], [-77.41124719231814, 34.72256564088544], [-77.41140620720981, 34.722439200993456], [-77.41149438716354, 34.72237253942599], [-77.41151509855543, 34.722356302054145], [-77.41155357588255, 34.72231642132316], [-77.41170115904498, 34.72216530057236], [-77.41179257760425, 34.72206183562294], [-77.41202326863677, 34.72180157375646], [-77.4120636380793, 34.72175687952023], [-77.41208448323623, 34.721740254436945], [-77.41210567095091, 34.72170116661427], [-77.41224107720734, 34.72151546718745], [-77.41230721492781, 34.721406995707504], [-77.41238184247668, 34.72128514400569], [-77.41252123380136, 34.72100879285438], [-77.41257743586182, 34.720794443975414], [-77.4127075547537, 34.72056531580107], [-77.41270921821769, 34.72056098037616], [-77.41271284110245, 34.720555260102486], [-77.41284025743943, 34.72032725647978], [-77.41292446778782, 34.72017185100196], [-77.41303386951884, 34.719975028711744], [-77.41300213943559, 34.719824767317974], [-77.41311187250636, 34.719730149595826], [-77.41328192483391, 34.71942522768622], [-77.41330805782962, 34.71937265304631], [-77.41332536316693, 34.71933109629519], [-77.4134663066196, 34.71903295684237], [-77.41353577475516, 34.7188931896318], [-77.41379936517463, 34.7186098654705], [-77.41395975375492, 34.71848236454088], [-77.41430670271056, 34.718344806197564], [-77.41449676916345, 34.7182538604561], [-77.41483043599384, 34.71822776181911], [-77.41492030082709, 34.7181981878819], [-77.4150019801194, 34.718157674470774], [-77.41536766373355, 34.71818147104357], [-77.41562490289296, 34.71822036212369], [-77.41614555706418, 34.71823093263007], [-77.41626703254198, 34.718216728282016], [-77.41642723658715, 34.71841751202843], [-77.41651070728645, 34.71852499763414], [-77.416515522705, 34.71853750547568], [-77.41671836044037, 34.71887194477652], [-77.41672636963776, 34.718881410052454], [-77.41674163974437, 34.718896125381605], [-77.41676495314876, 34.71896956761581], [-77.41688436268679, 34.71922558174873], [-77.41684135019389, 34.71927981467093], [-77.41686171339987, 34.71949720766088], [-77.41676234362673, 34.719759126082856], [-77.4167637794263, 34.72002205427188], [-77.41659337016469, 34.720185115056296], [-77.41652019074303, 34.720495967061645], [-77.41661542166713, 34.720713123998905], [-77.41668320982204, 34.72107998373221], [-77.41668434996897, 34.7211124658367], [-77.41651524404605, 34.72155343709073], [-77.41647714642416, 34.72159910265679], [-77.41649538117983, 34.72165590867125], [-77.41649954311512, 34.72184120809314], [-77.41649901371403, 34.72216584332086], [-77.4166983066518, 34.72246399630911], [-77.41683362491125, 34.722841943584136], [-77.41684560728244, 34.72285997498675], [-77.41688151606822, 34.72290015170087], [-77.41708450570101, 34.723141935092826], [-77.417146202447, 34.72316991899564], [-77.41733403219452, 34.723387201119074], [-77.4175162846774, 34.723461933178584], [-77.41754384902208, 34.72364937998704], [-77.41736241567824, 34.72397246765242], [-77.41777843668058, 34.72406645229811], [-77.41783877554772, 34.724220158874985], [-77.41795947537454, 34.72435379888073], [-77.4181698549636, 34.72452844042381], [-77.41820529318683, 34.724806322359896], [-77.4182480806295, 34.72494217888487], [-77.41830980109305, 34.725035381022096], [-77.41815441234175, 34.72542760782006], [-77.41861545670457, 34.72560386115072], [-77.41865598252119, 34.725664785473924], [-77.41880091527298, 34.72576618550472], [-77.41906787184007, 34.72593936481114], [-77.41914154566177, 34.72600111505564], [-77.41932068975416, 34.72613894344571], [-77.41967620704594, 34.7263687807487], [-77.41989734780559, 34.72648614557019], [-77.42024331658276, 34.726624404145866], [-77.42062461650377, 34.72677411685657], [-77.42099486693013, 34.72692112915544], [-77.42100406138562, 34.72709555495924], [-77.4211232770437, 34.727313941394506], [-77.42121255113106, 34.72744798645818], [-77.42126955375073, 34.7275085972096], [-77.42139929374694, 34.72751327373964], [-77.4215443980718, 34.72752937846439], [-77.42158716744045, 34.72751880327916], [-77.42180128759983, 34.72747752224302], [-77.42192580864327, 34.72745638864668], [-77.42195620976864, 34.72745445939685], [-77.42251322128844, 34.72762695117148], [-77.42251402896969, 34.727639141629496], [-77.42258487994758, 34.72804343458472], [-77.42261284819276, 34.72821707403157], [-77.42288345280122, 34.72857755855581], [-77.42312190215421, 34.728712190587544], [-77.42343241282755, 34.728895936309875], [-77.42355936890411, 34.728976098038984], [-77.42386129936601, 34.729071938568154], [-77.42401756214005, 34.72908933392068], [-77.42433929117814, 34.72909716304215], [-77.42464733677902, 34.729128605066265], [-77.42509453370349, 34.72959141283153], [-77.42513954072535, 34.72964304481113], [-77.42514779632658, 34.72965268075029], [-77.42515323833983, 34.729664214463206], [-77.42536591713717, 34.73000807745835], [-77.4253765164923, 34.73005219360252], [-77.42541146537434, 34.73031354879885], [-77.42531731410091, 34.73047472825267], [-77.4254791698786, 34.730684499535734], [-77.42568822559696, 34.73096935938578], [-77.42555431755011, 34.731090597970905], [-77.42532990810136, 34.73120004741448], [-77.42520853001382, 34.73127343821026], [-77.42511207796552, 34.731327033052494], [-77.42485794517097, 34.73144844217619], [-77.42478199027975, 34.731491183546524], [-77.42468609564176, 34.73154157053206], [-77.42455821505308, 34.73165089119379], [-77.42453569883584, 34.73166975413311], [-77.42452810208515, 34.73168196977604], [-77.4245362793764, 34.73169325904832], [-77.42454526801671, 34.73169560814813], [-77.42458482377863, 34.731750027181945], [-77.42460656123376, 34.73177553874856], [-77.42468488383851, 34.73176701711787], [-77.42471765842863, 34.73174823081735], [-77.42473934952639, 34.731628590334815], [-77.42490405413449, 34.73156365530981], [-77.4249181192825, 34.731546769913145], [-77.42527150636607, 34.73140176506232], [-77.42528481634707, 34.73139809388338], [-77.42530189242606, 34.73139338387157], [-77.4256520684041, 34.73125032589887], [-77.42592414536362, 34.73136211602093], [-77.42602248120384, 34.731365731999425], [-77.42606193217966, 34.731172186833334], [-77.42644963748114, 34.731341556046026], [-77.4265748373654, 34.73132918564328], [-77.42666959630498, 34.73141725108158], [-77.42697593346854, 34.73156840702373], [-77.42708482412257, 34.73173706403104], [-77.42708627621465, 34.73174557140767], [-77.4270937192511, 34.73175155242334], [-77.42722447366839, 34.73191111655721], [-77.42732553384499, 34.73205816970687], [-77.42736155108784, 34.73211332055452], [-77.42746489133275, 34.73225721450048], [-77.42753553179683, 34.732440153058846], [-77.42753826863537, 34.732454619625855], [-77.42756967720851, 34.73265988850543], [-77.42757217700589, 34.73274600242366], [-77.42756562300069, 34.7328813087572], [-77.42755881762304, 34.733020864001276], [-77.4275058041269, 34.733132914650845], [-77.42760852642587, 34.73331776894215], [-77.42781102502227, 34.73370329106758], [-77.42791736602462, 34.73385400867497], [-77.4279340551497, 34.733990608627465], [-77.42803406332743, 34.73425171585259], [-77.42815572258445, 34.7345932901841], [-77.42817070831236, 34.734632382706124], [-77.4281712296239, 34.73464088489805], [-77.42809177038589, 34.7349483192293], [-77.42804420424702, 34.735140254412656], [-77.42804677028178, 34.7351481253411], [-77.42804252866217, 34.73515617448527], [-77.42807748626831, 34.73534956393456], [-77.42813274052568, 34.73545770252446], [-77.42818128027419, 34.735529461514254], [-77.42822986095872, 34.735578728713], [-77.42830639133784, 34.73570046755713], [-77.42837095647795, 34.735820489808376], [-77.42839882705044, 34.735885103156015], [-77.42843253701528, 34.735986049834295], [-77.42850533098579, 34.736146983301495], [-77.4285120390688, 34.73628426510193], [-77.428486479652, 34.73641992417183], [-77.42850895829802, 34.73666605473517], [-77.42837159905817, 34.736659303071285], [-77.42822234835782, 34.73671209428324], [-77.4280763637274, 34.736707104163074], [-77.42789005806779, 34.736543703748424], [-77.42767136431219, 34.73640048822179], [-77.42722292686193, 34.73606056533026], [-77.42714182439448, 34.73601482476068], [-77.42708725514855, 34.735985794305165], [-77.4266384773979, 34.73585349533762], [-77.42654724804845, 34.735853811264406], [-77.4262894596317, 34.73587217569837], [-77.42622098620961, 34.73587338024197], [-77.42618808453149, 34.7358654531898], [-77.42606163932467, 34.73585194607817], [-77.42591284114667, 34.73583037375432], [-77.42583441610944, 34.7357725257368], [-77.42583829274761, 34.73561397590059], [-77.42583735064868, 34.73549401818454], [-77.42571373346897, 34.735090401411625], [-77.42565705586904, 34.734871933439756], [-77.42562502927557, 34.734810168209364], [-77.42556896011179, 34.734803501970184], [-77.42550761783718, 34.73475362155145], [-77.42505117126962, 34.73460314251954], [-77.42498378670676, 34.7346100440479], [-77.42493882254088, 34.73462088431514], [-77.42454899852407, 34.734683008921536], [-77.42430067456706, 34.73475484296417], [-77.42418140086633, 34.73483023724866], [-77.4240310443561, 34.73486264426533], [-77.42393718769668, 34.735179076866544], [-77.42356870061666, 34.73506837767502], [-77.42341068670886, 34.73506665856763], [-77.42313795392897, 34.73510953418051], [-77.42304577611677, 34.73521827982154], [-77.42281803741268, 34.73544642859166], [-77.4223924142451, 34.7356464665117], [-77.42241375155842, 34.73597453089842], [-77.42241131844115, 34.73615053429059], [-77.42220282206694, 34.73683248725051], [-77.42212825249948, 34.73699288273752], [-77.4216942601862, 34.737342329542585], [-77.42165639860207, 34.737387019328125], [-77.42210752549347, 34.737900076022335], [-77.42239236860767, 34.73794392927701], [-77.42246949737805, 34.73823031475867], [-77.42221366942607, 34.73834603515185], [-77.42225037700139, 34.73871279753622], [-77.42178722630914, 34.739006137125656], [-77.42172540050046, 34.73904403056738], [-77.42164297514657, 34.739059556095015], [-77.42136153137766, 34.7391973836577], [-77.4210796126749, 34.739235378605585], [-77.42092162408913, 34.73922648797085], [-77.42072075940891, 34.73929626768411], [-77.42060136283484, 34.739451100926104], [-77.42053137011473, 34.73961277654702], [-77.42056009345919, 34.73979918421631], [-77.42082110302096, 34.740128017443865], [-77.4213807812298, 34.740086059075786], [-77.42144982218086, 34.740089573219], [-77.42147432516343, 34.74008662496047], [-77.4215158297571, 34.740094970960335], [-77.42247881188169, 34.740275087281674], [-77.42273300317757, 34.74016876740282], [-77.4228636801254, 34.74042561210241], [-77.42309053569541, 34.74068368571974], [-77.42318662205436, 34.74081666167501], [-77.42332983925465, 34.74112395232548], [-77.4237043498943, 34.74124318413312], [-77.42408256074484, 34.74139967579939], [-77.42426345674407, 34.74152682233363], [-77.42434257941743, 34.741594342589835], [-77.42439764968859, 34.74169961958326], [-77.42453402490392, 34.74196087699958], [-77.42453598963093, 34.74214050821463], [-77.42447723692857, 34.74228650431229], [-77.42442798048495, 34.74245148059384], [-77.42441361595262, 34.742543802604786], [-77.42437364993249, 34.74262314707872], [-77.42436305612172, 34.74270174613763], [-77.42447254045081, 34.742784716038486], [-77.42453243334892, 34.74281243564699], [-77.42477342485334, 34.74275379025478], [-77.42489114295093, 34.74272076198463], [-77.42518247688038, 34.74278206101499], [-77.42545960109103, 34.74290163823004], [-77.42546728431616, 34.74290575694964], [-77.42547336212931, 34.74290825617346], [-77.4257687523467, 34.742971913909074], [-77.42597752929211, 34.74299995447447], [-77.4261687681697, 34.743064608453366], [-77.42636368485239, 34.74313187362247], [-77.42655474249004, 34.74319512218392], [-77.42665606077558, 34.743229436397456], [-77.42677728187479, 34.7432571981388], [-77.42695336601378, 34.74330997486999], [-77.427108179941, 34.7433514405319], [-77.42743979917938, 34.74342726212837], [-77.42754939314364, 34.74346616341087], [-77.42767880519774, 34.74353583227722], [-77.4279675701218, 34.74365352379553], [-77.42804525061332, 34.74396833849931], [-77.4284181165355, 34.74399578709385], [-77.42866835316306, 34.744031023582295], [-77.42887563969163, 34.7439953981953], [-77.42911464033128, 34.74406786771975], [-77.42927929588325, 34.74413571056797], [-77.4294379994212, 34.74429972050628], [-77.429459554259, 34.744370394045035], [-77.42938452973952, 34.74456056243886], [-77.42930727066727, 34.74470050668018], [-77.42914569000615, 34.74494769148623], [-77.42911099073473, 34.745024029285474], [-77.42908388170343, 34.74508338282541], [-77.42906253740718, 34.7454287604234], [-77.42903125533846, 34.74555522113026], [-77.4290322303026, 34.74574680680822], [-77.42903633105834, 34.74588607780145], [-77.42916593340169, 34.74616133865705], [-77.42898732927122, 34.74635290259585], [-77.42906312875525, 34.74654508054549], [-77.42914081919568, 34.74671161774422], [-77.42916427282054, 34.74672549012482], [-77.4291701578388, 34.74672765400923], [-77.42917956145187, 34.7467352782224], [-77.42959802998831, 34.74699096539179], [-77.42971441534937, 34.747062746165476], [-77.42986932059605, 34.74732420287924], [-77.43003878340986, 34.74758445128007], [-77.43004412373665, 34.74769768406826], [-77.42999364122392, 34.7478482036571], [-77.43001236500595, 34.74793412487478], [-77.43002427211239, 34.74799867005842], [-77.4300532786439, 34.74810731505271], [-77.4300802244479, 34.74812901643597], [-77.4302055014347, 34.74820175909339], [-77.43031550422563, 34.74830908663707], [-77.43040083082775, 34.7482700117358], [-77.43051164817831, 34.748163443347366], [-77.43071437775872, 34.74786451894113], [-77.43072112156106, 34.74782287749127], [-77.43073780992756, 34.747785092810005], [-77.43080670280615, 34.74771993698255], [-77.43129528382562, 34.74762222310632], [-77.4322082161141, 34.74730897490154], [-77.4322721804625, 34.7473003230577], [-77.43243028174696, 34.74730198563762], [-77.43294524651938, 34.74697815795068], [-77.43305239437133, 34.747335714269724], [-77.43330187139682, 34.74748670945653], [-77.43342794925626, 34.74752593948565], [-77.43345338758095, 34.74761484807379], [-77.43360918619305, 34.747614794475005], [-77.43371374481433, 34.74764629687151], [-77.43377697303019, 34.74763275858493], [-77.43378964121462, 34.74753567361703], [-77.433804939363, 34.747502769215764], [-77.43382649452046, 34.747459216503174], [-77.43365322132772, 34.74731285388506], [-77.43350621782805, 34.747255547376525], [-77.43337022488623, 34.74720314085224], [-77.43307084310486, 34.74696675587008], [-77.43300566741576, 34.746908809746486], [-77.43290280048974, 34.746834880278556], [-77.4323531651981, 34.74680824621642], [-77.43229967418083, 34.746310502210775], [-77.43171941604606, 34.74639742753127], [-77.43126858536363, 34.74633702418305], [-77.43120179999323, 34.74635515101235], [-77.43119169488496, 34.74632625835269], [-77.43072844021043, 34.74627424141056], [-77.43059914397327, 34.74622178710307], [-77.43040041119946, 34.746209911488606], [-77.43022386858233, 34.74619780536512], [-77.42995204522319, 34.746241938884545], [-77.42975595269276, 34.74603232125476], [-77.42955621623253, 34.7457386662226], [-77.42952878589011, 34.74568068184624], [-77.42962428881098, 34.745482926959866], [-77.42971512072019, 34.74536675366423], [-77.42979594219443, 34.74526338292373], [-77.42998008859867, 34.74505180161875], [-77.42998387523195, 34.74504952850112], [-77.43005432268936, 34.7450150955429], [-77.43031462446919, 34.74488557942909], [-77.43031964465659, 34.744858693955244], [-77.430350706619, 34.74486487289449], [-77.43066253434982, 34.744727626547494], [-77.43068766813997, 34.74471209037867], [-77.4307247468984, 34.74468036508787], [-77.43091792311628, 34.74453734308206], [-77.43089508335197, 34.7443031319414], [-77.43092266045677, 34.74420651889771], [-77.43068162326503, 34.7438957200427], [-77.4306602317605, 34.74379567364134], [-77.4306784647992, 34.74341559425075], [-77.43069343862038, 34.743340797372966], [-77.43069078626924, 34.743221628900365], [-77.4308198578486, 34.74282592246417], [-77.43096563815328, 34.74274067709252], [-77.43125196467152, 34.74264279207786], [-77.43179152724181, 34.74260641140853], [-77.43199278187045, 34.74235741063023], [-77.43232728498262, 34.74246715068917], [-77.4328842500848, 34.742318121001304], [-77.43299870711411, 34.74236285121323], [-77.43316574717838, 34.74237808427823], [-77.43349076763698, 34.74256110823342], [-77.43356831573104, 34.74261029097529], [-77.43360122531585, 34.74264282339813], [-77.4337822924513, 34.74274299206816], [-77.43402677914263, 34.74291170145185], [-77.43420370923285, 34.74297792040596], [-77.43465216826289, 34.74329647947233], [-77.4349992502029, 34.743398829059096], [-77.4352734999112, 34.743365242383625], [-77.43535738845986, 34.74336689436615], [-77.43571955899974, 34.74341988290383], [-77.43589771061983, 34.74342405721113], [-77.43605673351992, 34.743537689008306], [-77.43627076630342, 34.743761202364], [-77.43630076660054, 34.74418198825241], [-77.43630613530124, 34.74422846256111], [-77.43661001192335, 34.74451248387463], [-77.43675847453466, 34.744881156483146], [-77.43716438812943, 34.74517402141858], [-77.43730650793243, 34.74520322538702], [-77.43737111304502, 34.745160527064876], [-77.4374443887337, 34.74514057787355], [-77.43797597374439, 34.745105703968356], [-77.43803725696708, 34.74525628771302], [-77.43798240801055, 34.74532854366799], [-77.43803755420312, 34.74547936647958], [-77.43803729090688, 34.745500873349094], [-77.4379569122388, 34.745599152229474], [-77.43794370444701, 34.74572186013156], [-77.43792604392203, 34.745749088476636], [-77.43784332029966, 34.74583898349455], [-77.43779033002103, 34.74584520158343], [-77.43776062488969, 34.745849821708305], [-77.43764749728214, 34.745865290746366], [-77.43759451109067, 34.7458698689727], [-77.43756909084384, 34.745857706271444], [-77.43744249098663, 34.745841217178175], [-77.43727197416622, 34.745746285146666], [-77.43709162429658, 34.74594571224055], [-77.43687226117127, 34.745841136790645], [-77.43681694480307, 34.746039435526036], [-77.43691552019052, 34.746170647576804], [-77.43700136908112, 34.74625756772882], [-77.43699322018114, 34.746380538269214], [-77.4370103193156, 34.74644045975133], [-77.43700874942802, 34.74657815906767], [-77.43694364708001, 34.746642736093975], [-77.43692435574663, 34.746673901674285], [-77.43686024548364, 34.746893115511845], [-77.43684573750882, 34.746919341064185], [-77.43677045473396, 34.74705542645545], [-77.43672168445086, 34.74709057582714], [-77.4367252815339, 34.74712548092276], [-77.43673500505705, 34.7471387570894], [-77.43674290838987, 34.74715060415582], [-77.43690484480538, 34.747389715730094], [-77.43696750101691, 34.74748243277432], [-77.43697124912717, 34.74748660912808], [-77.43697958335184, 34.74749384199087], [-77.43722190798763, 34.74771125176724], [-77.4373132721563, 34.74779033475596], [-77.43746627290069, 34.74793279709335], [-77.43747583735215, 34.747941725625665], [-77.43747923800647, 34.747944302466244], [-77.43748535853136, 34.74795005540287], [-77.43765168273003, 34.748095567235126], [-77.4377225061392, 34.74819729044828], [-77.43798368985941, 34.74840347048273], [-77.43821454453172, 34.748712924991466], [-77.43825354581003, 34.74873730242599], [-77.43843194845645, 34.74883977584818], [-77.43848476535673, 34.74888712355978], [-77.43852745522858, 34.74906944283762], [-77.43851785273658, 34.749149300425216], [-77.43851644208365, 34.74927403517064], [-77.43851120582961, 34.74929942490995], [-77.43844093969052, 34.74940194646146], [-77.43831879270903, 34.749602895743045], [-77.43829614806955, 34.74963088007694], [-77.43828638070275, 34.74964597671672], [-77.43824351436, 34.74975225059683], [-77.43823983747359, 34.74975688116697], [-77.43823331329907, 34.7497559788982], [-77.43811948347013, 34.749747245124624], [-77.43799796004899, 34.749736734378516], [-77.43792196238162, 34.74972388736247], [-77.43787179216251, 34.74971656804614], [-77.43785326305117, 34.74975567750635], [-77.43770744555403, 34.74982200272085], [-77.43766987189193, 34.749873598389], [-77.43762865077102, 34.74995672644248], [-77.43760454813594, 34.750027791667506], [-77.43751644183499, 34.75016080447831], [-77.43750899890965, 34.75019444264084], [-77.43748517746478, 34.75020667864354], [-77.43745353707632, 34.750234519934516], [-77.43733032103978, 34.75032761336569], [-77.43729113238852, 34.75039784820934], [-77.4371819193065, 34.75045909059703], [-77.43714719648196, 34.75048732308731], [-77.43703722123438, 34.75056508780438], [-77.43702451784023, 34.75057587048481], [-77.43701754580795, 34.75058178835464], [-77.43685988053072, 34.75062389103782], [-77.43682474361442, 34.75062345033077], [-77.43672451491085, 34.75061917695945], [-77.43670004603204, 34.75062220826287], [-77.43659100925953, 34.75061556835744], [-77.43654303561826, 34.750610767897456], [-77.43649052573888, 34.750588760345536], [-77.43644970822872, 34.75057172307426], [-77.43638028968913, 34.750619143738845], [-77.43636947057739, 34.750627603492056], [-77.4363620816199, 34.75063231908606], [-77.43636527331998, 34.75064100789529], [-77.43636410171128, 34.750675073220805], [-77.43635573159045, 34.75086818916436], [-77.43635486706219, 34.75090931598812], [-77.4363359334789, 34.75094667427754], [-77.43626783279672, 34.751007681321454], [-77.43619659305104, 34.75109295316213], [-77.43615858132353, 34.75112026065533], [-77.43608768018068, 34.75120320350476], [-77.43605662034805, 34.75123820000016], [-77.43599786179428, 34.7512406695677], [-77.43587631067345, 34.75125255554147], [-77.43583749852954, 34.75125418418327], [-77.43574959216882, 34.7512568964913], [-77.43561947265795, 34.751271958035574], [-77.43555056763272, 34.75127016340311], [-77.43542479533629, 34.751283185652674], [-77.43541151210371, 34.75130617023567], [-77.43531246654756, 34.75130336611938], [-77.43521334505462, 34.75132742933021], [-77.43519324329594, 34.7513235470097], [-77.43515580154256, 34.75132896933008], [-77.43498102186982, 34.751350800188014], [-77.43486381669706, 34.75142720586855], [-77.43481578190173, 34.751454783390926], [-77.43479398570577, 34.75148208359762], [-77.43474566042113, 34.751539792189945], [-77.43459235612885, 34.75169116085465], [-77.43454198273781, 34.7517553229221], [-77.43448722135889, 34.75187079034048], [-77.43447279205316, 34.75192890907341], [-77.43448877250717, 34.7520933424342], [-77.43450881311404, 34.752448860941804], [-77.43448464279466, 34.752492088671346], [-77.43419200580453, 34.75264035212595], [-77.43417534873387, 34.752651961909145], [-77.43416123631178, 34.7526586222912], [-77.43382525134363, 34.752799610855675], [-77.43380833506077, 34.7528002714137], [-77.43376723479042, 34.75280049182153], [-77.4337755236331, 34.752837240804475], [-77.43361516536328, 34.75302688438586], [-77.43355408236322, 34.75313274504224], [-77.43353795563843, 34.753279430589714], [-77.43349385945768, 34.753401119108304], [-77.43344138534218, 34.75352521296178], [-77.43342537827428, 34.75367026927299], [-77.43337429322588, 34.75378129389682], [-77.43338098880723, 34.75389459323008], [-77.43338757847906, 34.7540654565394], [-77.43336342384981, 34.754316811499784], [-77.43335253606456, 34.75433273489314], [-77.4333530930954, 34.754352624788964], [-77.4333729460576, 34.75436209345603], [-77.43341158371776, 34.7543954657437], [-77.43363110643065, 34.75457799761139], [-77.43371139625006, 34.754649576446894], [-77.43368446630664, 34.75484113208857], [-77.43366771776456, 34.755001888356205], [-77.43350873932796, 34.75518049956122], [-77.43347071445088, 34.75523976134292], [-77.43310787296518, 34.755365342909904], [-77.43309531870544, 34.75537440041109], [-77.43307887995853, 34.75537791170669], [-77.43303519924044, 34.755378005934226], [-77.43287409853734, 34.755386972013945], [-77.43280961539492, 34.75540090356831], [-77.43280517516702, 34.75547394444881], [-77.43276996671028, 34.75552681248269], [-77.4327445225623, 34.75554921618253], [-77.43269806921451, 34.75578121571906], [-77.4325759429858, 34.75600752982704], [-77.43257211285619, 34.75601537369755], [-77.4325703277529, 34.756016109311055], [-77.43222915503522, 34.75609775416444], [-77.43215624117485, 34.75608391265765], [-77.43193202797075, 34.75601643893588], [-77.43188121015801, 34.756008601688805], [-77.43178524621972, 34.75602134991706], [-77.43177466914558, 34.75602153388497], [-77.43176756412208, 34.75603070357704], [-77.43170943932918, 34.75610193628667], [-77.43165591548177, 34.75617646496774], [-77.43163469440084, 34.756248274270654], [-77.43148891305762, 34.75643938012209], [-77.43147325852769, 34.75646395140304], [-77.43146733513596, 34.756469326844226], [-77.43144810753236, 34.756486330155305], [-77.43147905740717, 34.756473422312844], [-77.43184376353258, 34.75632131686902], [-77.43202611607444, 34.75624526375661], [-77.43220846826904, 34.75616921038386], [-77.43257317161654, 34.75601710285736], [-77.43293787357506, 34.755864994289574], [-77.4333025741446, 34.7557128846805], [-77.43366727332518, 34.75556077403017], [-77.43403720993314, 34.75540647646032], [-77.43422398516218, 34.75519622256863], [-77.43422764012942, 34.754980502732735], [-77.43420925841622, 34.75463203821459], [-77.43419368448583, 34.75444841593599], [-77.43412056123016, 34.75404201202572], [-77.43412103065754, 34.75403232242965], [-77.43411456130866, 34.75401562140763], [-77.43408443475361, 34.75399891325911], [-77.43384901294095, 34.753825242242144], [-77.43373514175826, 34.753746878285405], [-77.43371502043445, 34.753734262863276], [-77.43371339453134, 34.75362024367402], [-77.43376060495679, 34.753513059113985], [-77.43377153336029, 34.753487887577336], [-77.43389631839946, 34.7534046301074], [-77.43401705246882, 34.753244743160764], [-77.43406578529186, 34.75322073925605], [-77.43407859718658, 34.753188791350915], [-77.43440099461598, 34.753026112169685], [-77.43440413296177, 34.75302561016285], [-77.43440512208166, 34.75302334665836], [-77.43441354934171, 34.75301751577778], [-77.43473060208342, 34.75281108269092], [-77.43493223581885, 34.75264845913145], [-77.43495836466454, 34.75243535295239], [-77.43497659566891, 34.75233626393414], [-77.43494255406736, 34.75226294996038], [-77.43483408084418, 34.75205512986799], [-77.4347766999156, 34.7519732442625], [-77.43476658284662, 34.75189178912765], [-77.43483632828367, 34.75186219305602], [-77.43491212491989, 34.75180287621278], [-77.43498844644304, 34.751736778123785], [-77.4351023092334, 34.75171103485785], [-77.43519218151606, 34.75169566355052], [-77.43525751913226, 34.7517287044673], [-77.4353443100459, 34.75173648363068], [-77.43541009660083, 34.75175546843507], [-77.43547387329319, 34.75178186531855], [-77.43552122544159, 34.75173615179762], [-77.43566030302206, 34.7517124880562], [-77.43576957475447, 34.751621316922005], [-77.43584788726102, 34.751644996101916], [-77.43608285651072, 34.75164676518019], [-77.43624173270939, 34.75154051546687], [-77.43632311080064, 34.7514572565894], [-77.43647408548999, 34.751265221779946], [-77.43650057986574, 34.751239738042], [-77.4365101380325, 34.75123117549197], [-77.43654196951098, 34.75116836806835], [-77.43665976468583, 34.751015831878945], [-77.43677679739979, 34.750918986086944], [-77.43695323477993, 34.75085526924373], [-77.43696320529747, 34.75084957660336], [-77.4369718690539, 34.75084534788245], [-77.43707353919451, 34.75079196431386], [-77.4371382280891, 34.7507615736985], [-77.43730358698383, 34.75068171539361], [-77.43731325306173, 34.7506735746977], [-77.43732930069109, 34.75066377747518], [-77.43748709592325, 34.7505836455633], [-77.43752710880796, 34.75053425392347], [-77.43758358225895, 34.75050001367408], [-77.4376517396391, 34.750478693623506], [-77.43771334730857, 34.750444703314045], [-77.43783021270934, 34.750396326664], [-77.4379068360293, 34.750333423590575], [-77.43789859918516, 34.750224588776454], [-77.43789338500295, 34.75012566278619], [-77.4379012530228, 34.75005195791267], [-77.4378837403872, 34.75000758460829], [-77.43788082312713, 34.74997494207685], [-77.43790963079087, 34.749965278541204], [-77.43800318642637, 34.749947809709795], [-77.4380128653202, 34.749946956319334], [-77.43802596340976, 34.74994825532979], [-77.43815144551144, 34.750038857108066], [-77.43825702994144, 34.74997187221871], [-77.43833483774175, 34.74995913439297], [-77.43838454670109, 34.74994127593514], [-77.43844578928291, 34.74990630593473], [-77.43854233491739, 34.74979611862817], [-77.43863752934246, 34.74975013710571], [-77.43875686205945, 34.74966666232218], [-77.43892493929197, 34.74957102448318], [-77.43901055362161, 34.74933331375344], [-77.43904504432354, 34.7492999278949], [-77.43922175169992, 34.7491156829841], [-77.43926526722424, 34.74900163628887], [-77.43937382466724, 34.7488892935475], [-77.43928489992322, 34.74875345867643], [-77.4390142328179, 34.74859167573514], [-77.43891379848387, 34.748512558482794], [-77.43885201334464, 34.7484876403309], [-77.43840142818358, 34.74827008390139], [-77.43835357180626, 34.74824916902081], [-77.43834986290405, 34.74824535046977], [-77.438335253695, 34.74823047844447], [-77.43804465125434, 34.74793163481414], [-77.43787672903775, 34.74780726600418], [-77.43784460883174, 34.7477753885962], [-77.43771792355787, 34.74762152929999], [-77.4374219783224, 34.74748662020725], [-77.43731013984544, 34.74740638928118], [-77.43725620509102, 34.74736773703685], [-77.43717165036735, 34.747330976436835], [-77.43711109033949, 34.74726026866543], [-77.43707951341588, 34.7472182440756], [-77.4370903301876, 34.74713189324364], [-77.43709897574614, 34.74711627789841], [-77.43714466034123, 34.747033706306986], [-77.4371919810327, 34.747009011999594], [-77.43721202918346, 34.74693976172542], [-77.43731395788033, 34.74677210945222], [-77.437371194364, 34.74665600768132], [-77.43741281660914, 34.746527130455476], [-77.43744812395519, 34.74640781357929], [-77.43745240358578, 34.74640120255404], [-77.43746374463213, 34.74638835109153], [-77.43750027859056, 34.746278169988216], [-77.43758248214345, 34.74625341224141], [-77.4376460282799, 34.74624579412182], [-77.43779475990108, 34.74622627032846], [-77.43788989601343, 34.746210573401946], [-77.43798092589476, 34.74619647813975], [-77.43800148934395, 34.746190066623], [-77.43803195225112, 34.74618439980467], [-77.43820698050334, 34.74615184050907], [-77.4383414826364, 34.74605849567213], [-77.43836650596175, 34.74603854440041], [-77.4383800651844, 34.7460265000055], [-77.43838784246502, 34.74600284215474], [-77.43840248704738, 34.74584769704205], [-77.43841378886664, 34.74576881491721], [-77.43841342926518, 34.745758640726635], [-77.43840384426287, 34.74554976048334], [-77.43840613992519, 34.745476578802304], [-77.43844282342832, 34.745415525966834], [-77.4385362238616, 34.74524250950516], [-77.4386267929576, 34.74507260746746], [-77.43865622747089, 34.74501639859594], [-77.43866130934138, 34.74500669407958], [-77.43866799959166, 34.744993153131674], [-77.4387530008485, 34.74480062041083], [-77.4387608329537, 34.744761948486385], [-77.43876225351983, 34.744730628303586], [-77.43877642099963, 34.74455555999758], [-77.43878177691245, 34.744499280065206], [-77.4387787552952, 34.744488694916384], [-77.4387847410453, 34.74447863126358], [-77.4388147173763, 34.744262334258686], [-77.43882211210685, 34.74422432714963], [-77.43882653815398, 34.74417306721931], [-77.43883293303186, 34.74403153148043], [-77.43882887000831, 34.74394717312409], [-77.43884076926045, 34.7438224826878], [-77.43884165360994, 34.743811881884355], [-77.43884370860448, 34.74380383266759], [-77.4388591644371, 34.743678241946895], [-77.4388850088519, 34.74356339888221], [-77.43887096616244, 34.74340285016897], [-77.43885815486789, 34.74316520160189], [-77.43885350799522, 34.74313013434851], [-77.43883748509471, 34.743111638178775], [-77.43876079798457, 34.74294560935502], [-77.43862880976309, 34.742849817416136], [-77.43851729858874, 34.74282399286991], [-77.43832403240219, 34.74279510045034], [-77.43820340449159, 34.74278151686547], [-77.43801120633607, 34.742768195874824], [-77.43773359221089, 34.742761856058024], [-77.43749773008608, 34.7428029408516], [-77.43735337403875, 34.74282558324311], [-77.4373172581264, 34.74282953869697], [-77.43721844822018, 34.742825504808465], [-77.43688825973175, 34.742876535085486], [-77.43649963091693, 34.74277292328928], [-77.4361145467544, 34.74267484465694], [-77.43581253966794, 34.74261491214433], [-77.43580914939403, 34.74261457140814], [-77.43548829358866, 34.7426231072607], [-77.43528617576271, 34.74250286963027], [-77.43513173188836, 34.74245076581357], [-77.43496801974926, 34.74220520407066], [-77.43469697836373, 34.74228819029218], [-77.43457415186704, 34.74223696666559], [-77.4343376267557, 34.74216777748396], [-77.4340666208957, 34.74200627094817], [-77.43406276666568, 34.74200389582737], [-77.43384307221712, 34.741661040489824], [-77.43377140419975, 34.741621100717595], [-77.43336823030386, 34.741400829001975], [-77.4333159809384, 34.74126673133196], [-77.43308753159968, 34.7410715264976], [-77.43314474486378, 34.74084308488625], [-77.43312720326561, 34.74081127291679], [-77.43293124270176, 34.74069032702336], [-77.4328479436005, 34.740668418887886], [-77.4327455181863, 34.740596006992625], [-77.43263549225634, 34.740665134102095], [-77.43220022785391, 34.740690866434164], [-77.43169531575808, 34.74033659663835], [-77.4316835173963, 34.74031801752895], [-77.43167903066687, 34.740276236051], [-77.43091556230836, 34.73894600589114], [-77.43087518991604, 34.73886963375588], [-77.43082195213131, 34.738806842893446], [-77.4304499337778, 34.73766517743738], [-77.43056225150275, 34.737214611837565], [-77.43061061376345, 34.737162279459085], [-77.43060927894528, 34.73710622618464], [-77.43067956899947, 34.736627324418855], [-77.43037735722807, 34.73639895986915], [-77.430279332655, 34.7362512501675], [-77.4299926245007, 34.73582819616671], [-77.42997032986803, 34.73567596898383], [-77.42949467992467, 34.73509511309924], [-77.43012555266881, 34.73482036937377], [-77.43070068073573, 34.734795656014406], [-77.43114078614062, 34.734983422924], [-77.43126298765543, 34.735068130859304], [-77.43131691678177, 34.73511424555224], [-77.43136037890453, 34.735188094564194], [-77.43167662302491, 34.735854243461155], [-77.43167696438152, 34.73585683285814], [-77.43167743112255, 34.73585794709738], [-77.4316786308183, 34.735862099641515], [-77.43184373627598, 34.73647511510261], [-77.43185954906895, 34.73667345051132], [-77.43200972558864, 34.73691860668421], [-77.43216423356799, 34.737146166245175], [-77.43224016396191, 34.73740746008186], [-77.43244818790816, 34.73761900010999], [-77.43263167495027, 34.73813692628791], [-77.43271313358312, 34.738456077290614], [-77.43277695341384, 34.7385227173468], [-77.4327580425478, 34.738763743797705], [-77.4327554164951, 34.73897809560083], [-77.43276376539225, 34.739032817621165], [-77.43277483660779, 34.7391484009955], [-77.43272239699417, 34.739438263685464], [-77.43288929775309, 34.73963573019377], [-77.43294597121593, 34.73979139356136], [-77.43309912879815, 34.739800616532435], [-77.4331550646422, 34.73976952047069], [-77.43334519664273, 34.73979503826682], [-77.43374635000444, 34.73977984679372], [-77.43396441791498, 34.74001141344596], [-77.43412010319392, 34.74019438965564], [-77.43422284375819, 34.74034894193569], [-77.43459533792306, 34.740790913940515], [-77.43465223358702, 34.74086520009822], [-77.4346992513237, 34.74091835616119], [-77.4348430298812, 34.741031318661875], [-77.43499280641238, 34.74116952368318], [-77.4350773903231, 34.74123887064314], [-77.43521531720805, 34.741350766557495], [-77.43530386053526, 34.74131800153474], [-77.43547183584926, 34.74131070917636], [-77.43555875858053, 34.741271876258054], [-77.43571872113091, 34.74118343696186], [-77.43576963276419, 34.74104942453218], [-77.43589423931913, 34.74079347201558], [-77.43591173327519, 34.740691837777334], [-77.43591568246018, 34.740540279508025], [-77.43590841380473, 34.74034115823898], [-77.4359488470664, 34.74014576720102], [-77.43590999293218, 34.739894098984614], [-77.43590733723696, 34.73985174452572], [-77.43590305817798, 34.73977195704275], [-77.43589154407432, 34.73956670670525], [-77.43587921642187, 34.73946053782235], [-77.43586510375127, 34.739105609862634], [-77.43586419534694, 34.73902040410233], [-77.43585950222182, 34.738996472491394], [-77.43586521981032, 34.73896244784063], [-77.43585431567888, 34.73871514083332], [-77.43588052324634, 34.73856719185005], [-77.43588933119985, 34.73844785615784], [-77.43588230335124, 34.738242647355335], [-77.43598478680752, 34.73792217120983], [-77.43608074469026, 34.737590860003095], [-77.43613889956744, 34.73741698257626], [-77.43620570516423, 34.73727550609396], [-77.4364518449968, 34.737078192501386], [-77.43650962128142, 34.73702424365467], [-77.43667324786892, 34.73704465550186], [-77.43690109062655, 34.73691599414711], [-77.4367693776483, 34.73651920793388], [-77.43694215374849, 34.736338677878365], [-77.43697808273939, 34.73629406835132], [-77.4372646303353, 34.736133220912826], [-77.43732023315636, 34.73610526595417], [-77.43738199033162, 34.73607965331311], [-77.43754318888384, 34.73608791904355], [-77.43803311846017, 34.73604525193864], [-77.43819065589271, 34.73603168101257], [-77.43857386796462, 34.7360316455343], [-77.43865084402888, 34.73603568468103], [-77.43867630887536, 34.736038276803264], [-77.43872478837851, 34.736041336632724], [-77.43899216682854, 34.73605461443516], [-77.43913112363964, 34.73607250292098], [-77.43930875284329, 34.736068434969596], [-77.43951317614726, 34.73615880379267], [-77.43959680553445, 34.73618086640128], [-77.43966739004284, 34.73620076511767], [-77.43989534430057, 34.73625705917996], [-77.44017173570889, 34.736310415884645], [-77.44019356583685, 34.7363125413448], [-77.44021016848276, 34.73631440071394], [-77.44050722317004, 34.7363582921261], [-77.44069535760276, 34.73655836772006], [-77.4408393067938, 34.7368231656945], [-77.4409061887597, 34.73691681023551], [-77.4408754944734, 34.73730147463255], [-77.44089247037465, 34.73736894453437], [-77.44088244741535, 34.73739726421409], [-77.44086672982027, 34.737412017750046], [-77.44070779014297, 34.737892411124875], [-77.44070668252871, 34.73789488285224], [-77.44055722528117, 34.73840164231258], [-77.44055722246885, 34.73840169204642], [-77.44055721741596, 34.73840176512037], [-77.44052672462966, 34.73895006316698], [-77.44047465810783, 34.739014558067936], [-77.44034546263536, 34.73938281554445], [-77.44034335346448, 34.73944502570587], [-77.4403021590929, 34.73948045953158], [-77.44019340848827, 34.739892665906524], [-77.44019069802269, 34.73995071974762], [-77.44015477487783, 34.73998738218208], [-77.44001425417743, 34.74027793425953], [-77.43995372545142, 34.740406659397166], [-77.43994431844075, 34.74042367025582], [-77.43992212207607, 34.74045226155978], [-77.43976533124571, 34.740846608104675], [-77.43974244602683, 34.74091217040689], [-77.43971227408304, 34.74098622214197], [-77.43962230975544, 34.74136066415507], [-77.43960757721794, 34.74142407994216], [-77.43959745151058, 34.74148053585001], [-77.43963887314646, 34.74157519528872], [-77.4396873086566, 34.74201096309598], [-77.43977086795168, 34.74230100132338], [-77.43976473962775, 34.742340926504035], [-77.4397366864305, 34.742587241887534], [-77.43972748298688, 34.74276551022126], [-77.43970725342446, 34.74299468136556], [-77.43969667661986, 34.74313229179776], [-77.43969003464244, 34.74322754244509], [-77.43967731118947, 34.74331960123706], [-77.43966494263015, 34.743400719194966], [-77.43963509709158, 34.74362447869444], [-77.4396160482255, 34.743663151558806], [-77.43960929958475, 34.74370763362495], [-77.43962132386399, 34.743851746993585], [-77.43962413521902, 34.74414785220479], [-77.4396275532269, 34.744226198358945], [-77.43962279917832, 34.74435203570585], [-77.43962155777925, 34.74450361780276], [-77.43961118629932, 34.744599663003186], [-77.43960851115094, 34.74477857339012], [-77.43953565029565, 34.74495734961474], [-77.43946639158965, 34.745008438135166], [-77.43940048877934, 34.74513397317393], [-77.43935643216038, 34.745249537594994], [-77.4393345031168, 34.745376487754946], [-77.43910100806187, 34.745649778987556], [-77.43906881065644, 34.74569021850089], [-77.43903463923006, 34.74569614777167], [-77.43907052001984, 34.745718040706976], [-77.43907925535684, 34.745724947534214], [-77.43926477269144, 34.74605605897651], [-77.43925275522503, 34.74608842193852], [-77.43912650812953, 34.74628727077005], [-77.43905917145332, 34.746422124176554], [-77.4388937457687, 34.74668460231592], [-77.43893733344282, 34.746780211849824], [-77.43889361443456, 34.746899395414246], [-77.43886584727403, 34.747142647993485], [-77.43907754804422, 34.74719978307865], [-77.43927800137077, 34.747254051326905], [-77.43936203630571, 34.74720809315856], [-77.43946946885465, 34.747092191491525], [-77.43945883052689, 34.74696239350756], [-77.43949901093812, 34.74687850329576], [-77.43953660665159, 34.746828015043775], [-77.43960631462316, 34.74673440201014], [-77.43966706597256, 34.74666725002032], [-77.43976568215112, 34.7466767777846], [-77.43991252158298, 34.74669428689325], [-77.43993158414233, 34.74669803851335], [-77.44004991476432, 34.74680253923879], [-77.44010721276621, 34.74690938448675], [-77.44009119425472, 34.746986076118944], [-77.44009731267866, 34.747045682553924], [-77.44007161999924, 34.74708602598336], [-77.44005306986108, 34.74716998348035], [-77.44005985519026, 34.74730871282432], [-77.44005210862707, 34.74731737069549], [-77.44006573558019, 34.747318315976074], [-77.44021903047947, 34.74732611413174], [-77.44051148378472, 34.747330121751126], [-77.4405318113678, 34.74733182265415], [-77.44053783516607, 34.747332412313796], [-77.44055247398161, 34.74733182680558], [-77.44114827799793, 34.747438888724304], [-77.44139524339869, 34.747426635098854], [-77.44146909084746, 34.747438245920385], [-77.4416230863381, 34.74761868136018], [-77.44171147426727, 34.74770864792171], [-77.44173791985745, 34.74773008137257], [-77.44172853656588, 34.74779088232822], [-77.44178484007192, 34.748333952885524], [-77.44169656075212, 34.74864016159903], [-77.44151306728916, 34.748934235836565], [-77.4412846932312, 34.74918354261474], [-77.44124221611597, 34.74923955049491], [-77.44121631072478, 34.7492534024271], [-77.44096878180795, 34.74954064689172], [-77.44080253869299, 34.749667888744455], [-77.44044155902645, 34.74988112864534], [-77.44028724248034, 34.74992293255816], [-77.44020093139429, 34.75001676150663], [-77.43991409425666, 34.75027660814921], [-77.43972682759417, 34.75041017319892], [-77.43970738811774, 34.75047127970383], [-77.4396256333034, 34.75048464183826], [-77.43938608092901, 34.75069421255881], [-77.43923319508703, 34.75073273684958], [-77.43914371686031, 34.7507655058997], [-77.4389992375165, 34.75081012401544], [-77.43887089774373, 34.75087667411157], [-77.4387894650435, 34.750921270296445], [-77.43867326697381, 34.75102544428188], [-77.43849699089577, 34.75109861458556], [-77.43830284047463, 34.75116816746517], [-77.43812823122684, 34.75122697422586], [-77.43791970456705, 34.7512901363026], [-77.43778261646776, 34.751313252706154], [-77.4376466678961, 34.75136059896367], [-77.43754184913871, 34.75142072943808], [-77.4374181277462, 34.75146473872224], [-77.43718400679751, 34.75158400686805], [-77.43698965062168, 34.75169010879925], [-77.43684043143313, 34.75177058523652], [-77.43670522981454, 34.75187026556375], [-77.43664767273381, 34.7519110002338], [-77.43651819391985, 34.75199201263081], [-77.43646213756801, 34.752064859600544], [-77.43625745485322, 34.7521513594594], [-77.43618675118556, 34.752198409019975], [-77.4361312988162, 34.752228799711915], [-77.43597598533103, 34.75236579849338], [-77.43589550237583, 34.75242594243074], [-77.43588182063668, 34.752448104954055], [-77.43580899590678, 34.752592924084766], [-77.43565526957292, 34.752825807615295], [-77.4356259739194, 34.75289081885178], [-77.43558737060836, 34.75297429947093], [-77.43552913144094, 34.75313650518716], [-77.43552450528276, 34.75335994594178], [-77.43552044882308, 34.75341299016996], [-77.43549002971886, 34.75346130278642], [-77.43552637709665, 34.753569320755915], [-77.43558961177374, 34.75386616588257], [-77.4355477937356, 34.75398157899298], [-77.43573649330204, 34.75445383724041], [-77.43578160371533, 34.7546222944531], [-77.43578808594091, 34.754676181976464], [-77.43585543923982, 34.7546480882626], [-77.43614678406632, 34.7545265635694], [-77.4360185707573, 34.75416680932838], [-77.43600980688421, 34.75414297978354], [-77.43601344146617, 34.754135781381194], [-77.43617834193336, 34.75368004534017], [-77.43619868684294, 34.753649928145855], [-77.43623813218849, 34.753595656231525], [-77.43620096930842, 34.75345433611929], [-77.43616221958995, 34.75318091905535], [-77.4361936981949, 34.75308915069097], [-77.43600940130764, 34.752798261487534], [-77.43604855416626, 34.75272040218122], [-77.43613176279699, 34.75258561571902], [-77.43616236720335, 34.75253242976496], [-77.43617093406934, 34.752522163698906], [-77.43624034828471, 34.75247872667441], [-77.43632444263909, 34.75242327615719], [-77.43648921333543, 34.7523538354905], [-77.43652370768302, 34.75233929822708], [-77.43672432368822, 34.7523286455048], [-77.43711023426576, 34.752291266362626], [-77.43714227636801, 34.75226352837266], [-77.43719624075196, 34.75223138257764], [-77.43726224196598, 34.75227566201055], [-77.43760722621383, 34.75227516035548], [-77.43782426632829, 34.752277238495374], [-77.4378569282507, 34.752272596276235], [-77.4380116108461, 34.75218788447364], [-77.43835575009896, 34.75216733358157], [-77.43851499222686, 34.752106445192446], [-77.4387083042795, 34.752118846899336], [-77.43887188397112, 34.75209744077031], [-77.43920269715993, 34.751946076822094], [-77.4392737011362, 34.75192896633192], [-77.43958547967867, 34.75176746931068], [-77.43997295683971, 34.75150042273452], [-77.44031320499536, 34.75146057845525], [-77.44053757484829, 34.75125240272533], [-77.44046489957358, 34.750939644670396], [-77.44054817497512, 34.750697083147074], [-77.44067730226297, 34.75055990046803], [-77.4409254952563, 34.75042484229803], [-77.44100251728433, 34.75034335307732], [-77.44105097051863, 34.75031369198197], [-77.44136413345109, 34.75018624781387], [-77.441776868497, 34.74969878162237], [-77.44190031099225, 34.74956659420159], [-77.44195149345799, 34.7495102076308], [-77.44211314690395, 34.749359187685315], [-77.44244573039755, 34.74896204125399], [-77.44278653822374, 34.74868385026601], [-77.44298400718175, 34.748345836183766], [-77.44307683688162, 34.74806429717585], [-77.44322322126283, 34.74771834958894], [-77.44332104699396, 34.74740103367931], [-77.44339623396479, 34.74721976587844], [-77.44359869393911, 34.74710683659525], [-77.44382901659698, 34.746857637220664], [-77.44385559120052, 34.7468212033002], [-77.44387488240801, 34.74681025959054], [-77.44389979092884, 34.746794272586484], [-77.44401034506606, 34.74678198105342], [-77.44428079943799, 34.74672552222446], [-77.44458305077515, 34.74664904649833], [-77.44469680297337, 34.746657254635664], [-77.44488026491805, 34.74662010087603], [-77.44489901182592, 34.74641119480333], [-77.4446502310502, 34.74641684485268], [-77.44455174191268, 34.74642038250094], [-77.44432561163708, 34.746426364449974], [-77.44418390253604, 34.746567296395014], [-77.44400377353784, 34.74643487818115], [-77.44379838334862, 34.746424001348984], [-77.44361888434793, 34.74639222770782], [-77.443380977467, 34.746371126605794], [-77.44292215952194, 34.746343170403605], [-77.44275694688912, 34.74631164180923], [-77.4426619679606, 34.74632477625196], [-77.44245945098092, 34.746333521889945], [-77.44210136529725, 34.74636119694943], [-77.44180722044248, 34.746361930013116], [-77.44177284576338, 34.746368027170746], [-77.44176712811736, 34.74637865706569], [-77.44173510143466, 34.74663951464212], [-77.441549125351, 34.74675029237133], [-77.44150191464973, 34.74683756891902], [-77.44130542050789, 34.74689582660935], [-77.441187041117, 34.7469066072654], [-77.44087295124612, 34.74689736787656], [-77.44066127459229, 34.746905834300506], [-77.4405335106896, 34.74689332770346], [-77.44049579125117, 34.746765614832235], [-77.44019935691621, 34.74658632535121], [-77.44012739871431, 34.74653477776161], [-77.43995753980353, 34.746393988611956], [-77.43983456445521, 34.746438743835], [-77.43974716390261, 34.74642423993549], [-77.43970014010159, 34.7464876656341], [-77.43966194693796, 34.74648126686935], [-77.43964786810257, 34.74648159559634], [-77.43962090584988, 34.74645998585955], [-77.43961215291233, 34.746384893441125], [-77.43967564398737, 34.746307439604124], [-77.43975751475284, 34.74622819541866], [-77.43981918917818, 34.746168046665176], [-77.43996152909867, 34.7460199522957], [-77.44011913199694, 34.7457269752101], [-77.44015054707032, 34.74552695781974], [-77.44014728545275, 34.74520859659198], [-77.44012764871562, 34.744959932492705], [-77.44014834819654, 34.74482196748162], [-77.44005706168258, 34.74456188080727], [-77.44005797728018, 34.74441326168407], [-77.44005934552001, 34.74437704504289], [-77.44004174546485, 34.7439736239045], [-77.44004020458684, 34.74381133134252], [-77.44001654642847, 34.74353772860412], [-77.44001825363488, 34.74352414983351], [-77.44002054443817, 34.74350634243013], [-77.44003063094976, 34.74324896007644], [-77.4400501813915, 34.74307728659504], [-77.44007439247385, 34.74284664898964], [-77.44008694552659, 34.742709607169694], [-77.4401091152756, 34.742606289606364], [-77.4401692402522, 34.742253917263085], [-77.44018413686705, 34.74218453497141], [-77.44020606308581, 34.74211943244707], [-77.44018696094331, 34.74189701890468], [-77.44015335260642, 34.74161475344173], [-77.44018207545517, 34.74123662136134], [-77.44022231598835, 34.74107981961817], [-77.44025807769445, 34.7409037359546], [-77.44028513819997, 34.74082225426959], [-77.44036268170227, 34.740714859764424], [-77.4404475088074, 34.740599467005914], [-77.44047894860813, 34.740516832065936], [-77.44064020583282, 34.74033063433658], [-77.44075442365273, 34.7402191109203], [-77.4407901568843, 34.74016014914337], [-77.4408905648709, 34.74004820211256], [-77.44112683002072, 34.73971874402024], [-77.44128924172395, 34.73959733085679], [-77.44139907615488, 34.73938962256299], [-77.44138159924476, 34.7392487257227], [-77.44163611738946, 34.73910470104295], [-77.44179203606855, 34.738923259539064], [-77.44185283778796, 34.73885433327278], [-77.4419710058496, 34.73870457570972], [-77.4419889124338, 34.738342849122844], [-77.44228814984473, 34.738238289972045], [-77.44247499736039, 34.738047871379685], [-77.44244548017552, 34.73794333189784], [-77.44267831368077, 34.73771868305536], [-77.4427847232742, 34.737554081472794], [-77.4429507427127, 34.737560826299685], [-77.44325986631338, 34.737582478782144], [-77.44335627962467, 34.73759151966479], [-77.44343359611031, 34.73764788418475], [-77.44356363816178, 34.737774940651626], [-77.44375454123659, 34.73796037919364], [-77.4438613188787, 34.73806207905674], [-77.44422080057434, 34.73856353188846], [-77.4442572440781, 34.73864344968861], [-77.44425944155486, 34.73885653916845], [-77.44426775301983, 34.73887349631878], [-77.44434442316214, 34.738886225973644], [-77.4444997092296, 34.73885972108147], [-77.44473589524503, 34.73889013863653], [-77.44491250369605, 34.738861160149774], [-77.44517658412798, 34.73889741542085], [-77.4453696372405, 34.738785243500175], [-77.44554646809995, 34.738886105014096], [-77.44600929870843, 34.7388051882283], [-77.44622213348514, 34.73876689164587], [-77.44654334733312, 34.739206844265354], [-77.44667168501535, 34.73886066776173], [-77.44636954571808, 34.738654860310504], [-77.44627896133068, 34.73857044328592], [-77.44623829845513, 34.73826320789738], [-77.44593728540094, 34.738045119233696], [-77.44583834495273, 34.73798368487759], [-77.44570047156692, 34.737830399988674], [-77.44532725672966, 34.737427462754255], [-77.44514965720046, 34.73737822695348], [-77.44477290095587, 34.73712737032524], [-77.44473955533753, 34.73710293857671], [-77.44434351540217, 34.737109487588484], [-77.44413225231045, 34.737125571596245], [-77.44386772129864, 34.737020319340154], [-77.4435317434804, 34.7369850245306], [-77.44336113893999, 34.736785287459966], [-77.4430515574261, 34.73649467615401], [-77.44303651523946, 34.73648058208058], [-77.44303322745206, 34.73647570034474], [-77.44302219559158, 34.736467748315235], [-77.4427667278243, 34.73630500840193], [-77.44260788218091, 34.73620676878314], [-77.44250079171977, 34.73611612589485], [-77.44230577879362, 34.73588641264501], [-77.44205913115346, 34.73557226647293], [-77.44204912441114, 34.735547092429286], [-77.44203473475943, 34.735510891757876], [-77.44167035378013, 34.735258726158676], [-77.44163318737158, 34.73486442872056], [-77.44159345924736, 34.734820026754036], [-77.44142316675456, 34.73458270583477], [-77.44136419822757, 34.73450440800328], [-77.44135309655981, 34.734498282859185], [-77.44135588765153, 34.734488033278126], [-77.44127512337224, 34.73434090390087], [-77.44116514996402, 34.73414187965391], [-77.44115950970739, 34.734132648119555], [-77.44115511468327, 34.734119055856915], [-77.44110762161023, 34.73406731848074], [-77.44091129176249, 34.73385377836736], [-77.44083458329895, 34.73382181622586], [-77.44064642061022, 34.73366125253298], [-77.44031729091336, 34.73328661657529], [-77.44020781959058, 34.73319051865487], [-77.44015007235514, 34.73316079829477], [-77.44007356872775, 34.73312596745379], [-77.43964080877396, 34.73305025213098], [-77.43954292658569, 34.73304328768887], [-77.43953057573873, 34.733026692030364], [-77.43949622060441, 34.73299973206642], [-77.43912851019438, 34.73274804527864], [-77.43907376993481, 34.73244888875871], [-77.43901727196575, 34.73227335023746], [-77.43905660928904, 34.73221249051914], [-77.43909837800646, 34.73186780531752], [-77.4388176724509, 34.73164457405575], [-77.43870442074382, 34.731509579833144], [-77.43863806010704, 34.73152880031128], [-77.43824652250458, 34.731330427682366], [-77.43813860937065, 34.73124926106201], [-77.4378124176861, 34.73092777474143], [-77.43762266838854, 34.73081660744037], [-77.43720964532238, 34.73108268035047], [-77.43702004426473, 34.73112876859613], [-77.43687734517054, 34.731176658208994], [-77.43666639325608, 34.73129875099034], [-77.43629002708724, 34.73125393682345], [-77.43621827519237, 34.73123862488752], [-77.43614889550743, 34.7312010758729], [-77.43570331850255, 34.7310523235906], [-77.43572974986395, 34.730711258959225], [-77.43557511299056, 34.73101144839436], [-77.43557537148861, 34.731070626912576], [-77.43540319113315, 34.731478308949846], [-77.43522531062402, 34.731507337392394], [-77.43479637944263, 34.73172105149453], [-77.43467423685408, 34.73178291057546], [-77.43416807824588, 34.731676669463226], [-77.4340471294198, 34.731654651563105], [-77.43364506374392, 34.73159705582907], [-77.43353782772934, 34.73163902004657], [-77.43346765298777, 34.73153865776566], [-77.43326611985844, 34.73147018136257], [-77.43314967588832, 34.731448117824826], [-77.43310105781848, 34.73145605972918], [-77.4330302417172, 34.731497944439475], [-77.43297204496116, 34.7315584622582], [-77.4329077982033, 34.7316006060415], [-77.43281305134961, 34.731733292556875], [-77.43264599645238, 34.73172403884789], [-77.43220694930096, 34.731806870013344], [-77.43207181677735, 34.73152337227583], [-77.43181145120883, 34.73133681295664], [-77.43180541162403, 34.73115074144633], [-77.43179880826719, 34.73100183717528], [-77.43179153139086, 34.730898731615106], [-77.43179756200958, 34.73086847247145], [-77.43180684076785, 34.7308371576469], [-77.43187536317592, 34.73073734261222], [-77.43193400630885, 34.730636633196006], [-77.43202770422518, 34.730450228739386], [-77.43205905070307, 34.73040080982655], [-77.43220729982204, 34.73027888851699], [-77.43222058774695, 34.73017774052651], [-77.43229070673209, 34.730132149164476], [-77.4323814628205, 34.730096333775094], [-77.43252298550195, 34.73014718848398], [-77.43269008634948, 34.730137605240266], [-77.43276927426123, 34.7301662552549], [-77.43325572437774, 34.73028788911326], [-77.43328233537676, 34.73030652232615], [-77.43379770798374, 34.73050816923695], [-77.4338534470443, 34.73054847951262], [-77.43393520365548, 34.73057557018516], [-77.43393209242429, 34.73049635865539], [-77.43403008808016, 34.73041121988673], [-77.43415045885251, 34.7302931492788], [-77.43417285999232, 34.730216090764785], [-77.43433127793325, 34.73007681771992], [-77.434501777566, 34.73000570689492], [-77.4346565525967, 34.7299888153785], [-77.4348481754362, 34.73006990693592], [-77.4350207223047, 34.73010576835928], [-77.4352786130587, 34.730054716402094], [-77.43572645106948, 34.73051096322274], [-77.43578522237306, 34.73051957005144], [-77.43600965189478, 34.73022589646786], [-77.43620145030373, 34.7301713315378], [-77.4363971642239, 34.73011123734156], [-77.43656053507087, 34.73005588860562], [-77.43689275731113, 34.7301096573455], [-77.43715845402645, 34.73020521346905], [-77.43752421902063, 34.73045698770658], [-77.43776807867289, 34.730159744638236], [-77.4381687136226, 34.730014438528094], [-77.43857081394779, 34.72975557305379], [-77.43902295335383, 34.72991452150227], [-77.43916144451963, 34.72952856535791], [-77.43945394900061, 34.7291232278849], [-77.44012610028912, 34.728811871940266], [-77.44015552661232, 34.72877395543587], [-77.44016888584507, 34.728762530597066], [-77.44028659626228, 34.72869356124593], [-77.44014962420273, 34.72873056665463], [-77.44004697849896, 34.72859664133088], [-77.439596804946, 34.72808857728547], [-77.43958790268287, 34.72800048869102], [-77.439183655582, 34.727637527935926], [-77.43896108557053, 34.72746103023442], [-77.4385748439203, 34.72708745243013], [-77.43829404298044, 34.72684655403913], [-77.43822224179372, 34.726528826261784], [-77.43737107969605, 34.7255487195539], [-77.43740321367437, 34.72543264869652], [-77.43707729555969, 34.72524071734197], [-77.43701430266847, 34.7254240373732], [-77.43595937742667, 34.72548677572965], [-77.43523166942674, 34.72521630568511], [-77.43469119386877, 34.72543836318136], [-77.43438946451678, 34.72490452444342], [-77.4336256500748, 34.724689734383404], [-77.43317764578768, 34.724851378689], [-77.43232580371166, 34.72475074236459], [-77.43219935942346, 34.72474850975725], [-77.43174882570833, 34.724529201053315], [-77.43125682997393, 34.72452990008152], [-77.43115384340392, 34.72453577563205], [-77.43110147948492, 34.7245507937719], [-77.43100745262622, 34.72452998179426], [-77.43046847609989, 34.724522826519404], [-77.43018177015804, 34.724443027055614], [-77.42985414136442, 34.72443035741385], [-77.42964907083899, 34.72420391153332], [-77.42964103370167, 34.72396511725954], [-77.42953430357039, 34.723805404836426], [-77.42945419266327, 34.723597229266716], [-77.42939244362341, 34.723418200604506], [-77.42937381618177, 34.7233126523876], [-77.42940896192417, 34.723180241076676], [-77.42962547155372, 34.723005483983115], [-77.42970148216762, 34.72291041963838], [-77.42978590757974, 34.72289764100001], [-77.42983631242853, 34.722786636126045], [-77.42998300851376, 34.722622634917336], [-77.43035520689683, 34.72253758169373], [-77.43040794563278, 34.72251699432039], [-77.43089152610494, 34.72261156868687], [-77.43168490486818, 34.72244331076152], [-77.43170186916007, 34.72244008414626], [-77.43171520254572, 34.72243029306132], [-77.43298860470934, 34.72178088884928], [-77.43304582797329, 34.72164495880235], [-77.433760872496, 34.72159563045043], [-77.43447994837769, 34.72173765445439], [-77.43536807539593, 34.72149444918913], [-77.43561507794182, 34.71986089677794], [-77.43598063828259, 34.71947235944534], [-77.43574812177312, 34.71898084675299], [-77.43546207324276, 34.718343626415276], [-77.43530890597066, 34.717378531927864], [-77.43454788135568, 34.717072271626265], [-77.43446242030113, 34.716705544133866], [-77.43453605640903, 34.716602391986655], [-77.43446747706413, 34.715944052998836], [-77.43424824781118, 34.71551258553019], [-77.43413402451327, 34.71519040244421], [-77.433855329492, 34.715035063749944], [-77.4335123348587, 34.714929597291004], [-77.43329021392533, 34.714772761049716], [-77.43313130495957, 34.7147160174452], [-77.4328573473359, 34.71446734309142], [-77.4327771308968, 34.7144174090387], [-77.43275894963712, 34.7143934881391], [-77.43234488801792, 34.71415137434638], [-77.43223116413128, 34.71400220723273], [-77.43208723253768, 34.71363908189936], [-77.43216888815662, 34.71348202654908], [-77.43226964114906, 34.71328998950642], [-77.43225622989324, 34.713139105092125], [-77.43218619758069, 34.71305005715207], [-77.43194474262968, 34.712979166042025], [-77.43189251805674, 34.7129573634995], [-77.43130102921803, 34.712801370005295], [-77.43129367986221, 34.712799568033276], [-77.43074085127054, 34.712506951757305], [-77.43045752081366, 34.71226054691154], [-77.43020750919985, 34.712134935482396], [-77.4297106414545, 34.71170810565546], [-77.42969312300485, 34.71169743635778], [-77.42968752177934, 34.711689052376755], [-77.42967458532691, 34.71167752817672], [-77.42935427282985, 34.71138171179895], [-77.42924166652364, 34.71104251703309], [-77.42919412689261, 34.71100214595213], [-77.42914384694647, 34.710781781141506], [-77.42893497841416, 34.71030082634461], [-77.42890412210416, 34.710230378473064], [-77.42886761469381, 34.71012017363054], [-77.42878518185853, 34.709833621190484], [-77.42879962224221, 34.70969443911875], [-77.42882843188646, 34.70951844292972], [-77.42882662822399, 34.70942434910941], [-77.42885112287287, 34.709359723799125], [-77.42879152555591, 34.709132543832425], [-77.42883344928843, 34.70877880182333], [-77.42907359579057, 34.70867209953454], [-77.4293014289571, 34.70862123552836], [-77.42960002868317, 34.708536018402064], [-77.42993788017753, 34.708415211685605], [-77.42997289084794, 34.7083975871834], [-77.43002214763327, 34.708345700336245], [-77.43025240439606, 34.708106589607574], [-77.43050654967004, 34.707776214926874], [-77.430661058266, 34.70754992709829], [-77.43078575361518, 34.707482638980956], [-77.43089352602097, 34.70735167242003], [-77.43092372898644, 34.70733423335198], [-77.43095996383154, 34.70714063096794], [-77.43094045406292, 34.707088549703], [-77.43090837849557, 34.7069352394644], [-77.43086250899094, 34.706734908386466], [-77.43082444525933, 34.706488931248195], [-77.43085387538582, 34.70629212300923], [-77.43087911592879, 34.70613960203039], [-77.4309388267251, 34.70596986251494], [-77.43097697110164, 34.70592562855005], [-77.43103094917305, 34.70577184562427], [-77.4310458110196, 34.70572773712729], [-77.43103167636639, 34.70564113221244], [-77.43102553571497, 34.705550910466854], [-77.4309508547093, 34.70550903865334], [-77.43085129579379, 34.70548054621841], [-77.43076814206441, 34.705435122171465], [-77.43066885667619, 34.705316414147205], [-77.43041457813467, 34.70513626976566], [-77.4303249404908, 34.70508454589628], [-77.43017301104999, 34.70498554143511], [-77.42977978452072, 34.70475352633272], [-77.4294490233876, 34.70464639938431], [-77.42922591242225, 34.70445263541503], [-77.42859314872152, 34.704110757890945], [-77.42843470366714, 34.7034171298262], [-77.42837659918757, 34.70330835334937], [-77.42850610707798, 34.70288303105315], [-77.42850989211894, 34.70280635194028], [-77.42852793045984, 34.70261112887214], [-77.42855544911524, 34.702341651034466], [-77.4285555194091, 34.70234124257705], [-77.42855564427224, 34.70234087808834], [-77.4288985622312, 34.70140679009772], [-77.42896363663853, 34.70136581409864], [-77.42919862024972, 34.70117981104359], [-77.42920392868939, 34.70117030306317], [-77.42894430086601, 34.70099627555207], [-77.42878095910608, 34.70090770976904], [-77.42845914445434, 34.70068852781682], [-77.42840218215132, 34.7006548674517], [-77.42836076054061, 34.70063666713361], [-77.42833279563197, 34.700586162332826], [-77.42837605128459, 34.7005527039], [-77.42833490688119, 34.70020107278007], [-77.42831398106311, 34.7000205160826], [-77.42829575885924, 34.6999152809209], [-77.42826513933883, 34.699783803207374], [-77.42823584957968, 34.69971366135802], [-77.42811642014965, 34.699427657238644], [-77.42809289447041, 34.69940929558115], [-77.42806951372621, 34.69937596286228], [-77.4281586441774, 34.69928175429506], [-77.42830676331613, 34.69894373000765], [-77.42834665568975, 34.698913806362256], [-77.42897782881116, 34.69866571305041], [-77.42904920301905, 34.698661636956935], [-77.42924444077173, 34.69866867525375], [-77.42949883602357, 34.69864876623164], [-77.4296141972619, 34.698681384208115], [-77.42980516193221, 34.69869478177654], [-77.43000509546566, 34.698728454819125], [-77.43025389348048, 34.69868555139032], [-77.43070988269136, 34.698622028892295], [-77.43083648429017, 34.698591757069885], [-77.43092281058526, 34.69858873178201], [-77.43116248218134, 34.69857474700685], [-77.43128036553287, 34.698569480398405], [-77.43160869742422, 34.69843325450777], [-77.4316468781796, 34.69842074219749], [-77.43182930726293, 34.698296467103916], [-77.43221833055736, 34.69803134517297], [-77.43230182018846, 34.697995642886404], [-77.43239288626164, 34.697614880186535], [-77.43232838473867, 34.697510767879145], [-77.4324419983098, 34.697476966090306], [-77.43264553898953, 34.69706481115033], [-77.43264637724691, 34.69706322895125], [-77.43264641248813, 34.69706290938546], [-77.43264652226459, 34.69706263842198], [-77.4327556200924, 34.69682156534815], [-77.43280262723758, 34.69657082701706], [-77.43280447102084, 34.6965591178162], [-77.43280039043661, 34.696529610423575], [-77.43266261112831, 34.69616314200644], [-77.43238418731092, 34.69585310689404], [-77.43238019781963, 34.6957668727834], [-77.43228688498122, 34.695427166804], [-77.43235824424265, 34.69509666770601], [-77.43246480976606, 34.69476318146439], [-77.43267510609986, 34.694372363749665], [-77.43271822674005, 34.6942927344218], [-77.43272206544393, 34.69419576001599], [-77.43292005210255, 34.693900988994656], [-77.43295447850642, 34.69381628588937], [-77.43298291939487, 34.693797506257674], [-77.43320905297286, 34.69349618738856], [-77.43322646271722, 34.69335233163066], [-77.43381142804955, 34.69303508589792], [-77.4338297930223, 34.69301525169059], [-77.43384096774557, 34.69300814393923], [-77.43387679663958, 34.69297804315603], [-77.43416627269877, 34.69256283451696], [-77.43429859798903, 34.6922859787156], [-77.43465601341836, 34.69233085200089], [-77.43480322229443, 34.692226493599], [-77.43506803310241, 34.69204811054854], [-77.43511509189345, 34.69201481258933], [-77.43525460611525, 34.69182526839954], [-77.43550521001964, 34.691610623372064], [-77.43562537525767, 34.691463576049706], [-77.43567135871118, 34.69141193441414], [-77.43574737655493, 34.69130450622047], [-77.43606351043891, 34.69068420694222], [-77.43639260079881, 34.69075830251981], [-77.43660283263678, 34.69061952157889], [-77.43684739967132, 34.690469986463306], [-77.43709117537082, 34.690297200603695], [-77.43712611520161, 34.69024343536328], [-77.4372246045941, 34.69009739346509], [-77.43737319255345, 34.689833915804186], [-77.43847533432397, 34.69016582397275], [-77.43848539167735, 34.690169503952944], [-77.43850224490747, 34.690183853303125], [-77.43902449043362, 34.69052119746259], [-77.43914872353083, 34.69077753611704], [-77.43924970684336, 34.690985899388444], [-77.43944527478305, 34.6912819692818], [-77.43963632552575, 34.69146680269188], [-77.43979996024083, 34.691557114311514], [-77.43998810520576, 34.69162079553932], [-77.44039288509882, 34.69194460150523], [-77.44044168849969, 34.69202342438597], [-77.44045486445947, 34.692222653139225], [-77.44054529521611, 34.692872987184444], [-77.44073881315086, 34.693183608235735], [-77.44089084394113, 34.69362155365288], [-77.44116118475765, 34.6942120013672], [-77.44127086147665, 34.69435573738852], [-77.44192620350391, 34.69471676569797], [-77.44218339821897, 34.69486762377159], [-77.44221586160174, 34.69499696390029], [-77.44370799507362, 34.69757571870356], [-77.44381101355694, 34.69775947028958], [-77.44425440126734, 34.69808879671207], [-77.44629022961924, 34.69863656608864], [-77.4473652688163, 34.69984702543222], [-77.44965371142357, 34.7009299666791], [-77.45060050591471, 34.701461298545084], [-77.45171199341351, 34.70160369961001], [-77.45189827250415, 34.70160682263406], [-77.45216657413803, 34.70141390339327], [-77.45305761344277, 34.700843283301126], [-77.45317475694613, 34.70070213858358], [-77.45342083821096, 34.7005729739619], [-77.45361589664186, 34.7008087696821], [-77.45373366570004, 34.70107951520568], [-77.4540982433563, 34.70221071146888], [-77.45415834768235, 34.70236801461763], [-77.45419683367379, 34.70237176326483], [-77.45421484917418, 34.70236565081667], [-77.45423044539265, 34.702337911061306], [-77.45485914718482, 34.70147277974735], [-77.4554164482715, 34.70137418569911], [-77.45578798956727, 34.70125221113967], [-77.45629267963757, 34.70131060723303], [-77.4564955790112, 34.701392102511115], [-77.45698204123204, 34.70155561265773], [-77.45732785220827, 34.70193745228788], [-77.45749352662882, 34.70200327697228], [-77.45779591269685, 34.70227116804279], [-77.45806667859078, 34.70223759433693], [-77.45818246500883, 34.70247347208732], [-77.45817798894959, 34.702632362950034], [-77.45835836336273, 34.70318984978767], [-77.45839284386264, 34.70326641548846], [-77.4583895676422, 34.70327987761048], [-77.45837294269872, 34.703395340502425], [-77.45845039611737, 34.70334016959757], [-77.45893626276725, 34.703663713129515], [-77.45916264463396, 34.703849944787194], [-77.45970982609617, 34.70390240824344], [-77.46018249172946, 34.70378669439145], [-77.46069319466598, 34.704013742175455], [-77.46091347654338, 34.70401170866139], [-77.46142225404287, 34.70393205133277], [-77.46176799900523, 34.70454775735365], [-77.4619977312017, 34.70508475531], [-77.46208430855258, 34.70530856581322], [-77.46212293444091, 34.70568747048856], [-77.46218038135763, 34.70574409422091], [-77.46258420631541, 34.705992708549154], [-77.46268504164676, 34.7062155360532], [-77.46283966300821, 34.70649681116713], [-77.46302900664246, 34.70669986142628], [-77.46303099727866, 34.707236193643766], [-77.46320437029921, 34.707519534329194], [-77.46360683893516, 34.707882734795874], [-77.46389688305067, 34.708675555952496], [-77.46517771106083, 34.708431422429506], [-77.46522012155754, 34.708417256028326], [-77.46527134998857, 34.708354957843405], [-77.46574144967971, 34.707510387776765], [-77.46616108608585, 34.706964642196596], [-77.46636046654702, 34.706201464933244], [-77.46590175576658, 34.70533050484409], [-77.4658191034371, 34.70464172673631], [-77.46519670058957, 34.70417721248313], [-77.46511334192851, 34.70404357112514], [-77.46510883548594, 34.70393561282529], [-77.4647585729252, 34.70347551897619], [-77.4645580049681, 34.703382589304496], [-77.46422510571882, 34.70310380013291], [-77.46370683379482, 34.70232793212851], [-77.46346882204531, 34.70205165316837], [-77.46330660233882, 34.7018467363741], [-77.46320320940401, 34.70171612912067], [-77.46297854386171, 34.70151454670082], [-77.46286382354403, 34.70141141460757], [-77.46269923614965, 34.701311220152114], [-77.46225735338325, 34.70104221848278], [-77.46195178745708, 34.70089940221524], [-77.46166655460786, 34.70049723410635], [-77.46126667449677, 34.70003508012029], [-77.46090430603014, 34.69955105554983], [-77.46053223396427, 34.69926663868358], [-77.46026587750484, 34.69906303208567], [-77.46008689087436, 34.69899952598], [-77.4598789000471, 34.69875472768253], [-77.45954080936541, 34.69833468207628], [-77.45928797683374, 34.69801182613752], [-77.45901651337365, 34.69766074485025], [-77.45833630707013, 34.69717459208508], [-77.45826370891663, 34.697121138324626], [-77.45821299207661, 34.697103412713055], [-77.45813133965689, 34.69702617483129], [-77.45719724381848, 34.696376513097846], [-77.45655856890076, 34.696476629840596], [-77.45630009374358, 34.6968380967472], [-77.45582688717559, 34.69668334309873], [-77.45526714766133, 34.69654780255127], [-77.45521414482799, 34.69655900975857], [-77.45520489930918, 34.696562619175054], [-77.4545461006636, 34.69668025164415], [-77.45438108193812, 34.696693020162314], [-77.4539660722301, 34.69668872401625], [-77.4538982534722, 34.69670448583191], [-77.45385841223856, 34.696689607519566], [-77.45345688377407, 34.696678146992085], [-77.45326318132607, 34.69668452021533], [-77.45276067190173, 34.69670153891422], [-77.45253277732039, 34.69666341536191], [-77.45193625739685, 34.696840989046215], [-77.45147766137626, 34.69634438870471], [-77.45121754142295, 34.69572822142975], [-77.45110756184887, 34.695606061112834], [-77.45103754147435, 34.69551625792774], [-77.45086387705258, 34.695261380359355], [-77.45069710470459, 34.69498733116146], [-77.45064055127904, 34.694908198886196], [-77.4502982813521, 34.694288936322764], [-77.45024537612153, 34.69418034403927], [-77.45017812758962, 34.694055674254095], [-77.4492747776645, 34.69369274427226], [-77.44918303120608, 34.693064499650816], [-77.44900162179248, 34.69271772578241], [-77.44891687018571, 34.692250666575795], [-77.44886177119932, 34.69210983234671], [-77.44883738691668, 34.69208967341524], [-77.44882537694534, 34.692085076378305], [-77.44879308115844, 34.69204840069504], [-77.44831218518709, 34.69164365045168], [-77.44800035084906, 34.69154631059247], [-77.4480980439874, 34.691283876448175], [-77.44798041134761, 34.69072049916688], [-77.44796392641202, 34.69067798121864], [-77.44796375160149, 34.69066874951723], [-77.44774199264974, 34.690041388363085], [-77.44778175791006, 34.68985189350789], [-77.44793592587015, 34.68915266460095], [-77.44801701605398, 34.689019482909735], [-77.4484974532993, 34.688660221733755], [-77.44845148388706, 34.688053305405255], [-77.44892836415116, 34.687784103656895], [-77.44942708066597, 34.68778732628652], [-77.44997230059654, 34.68746685701906], [-77.45029240467264, 34.6870228034723], [-77.45097363905938, 34.68687063586976], [-77.45132618071307, 34.68682204615096], [-77.45198764894167, 34.68680271313737], [-77.4523148207465, 34.686664317519394], [-77.45310937245438, 34.68632727468547], [-77.45342358124674, 34.68615892055105], [-77.45390619946879, 34.685592335585206], [-77.45397382693326, 34.68551139537959], [-77.45399927389187, 34.68546995023], [-77.45425574625031, 34.68505092268548], [-77.45441622702526, 34.68479086979329], [-77.4545789413134, 34.68460487634849], [-77.45468539670046, 34.68448319081676], [-77.45495094672317, 34.68417964703325], [-77.4549530108406, 34.68417661137231], [-77.45442707542952, 34.683790167380806], [-77.45430730343158, 34.683950936920375], [-77.45425206661871, 34.68402508036601], [-77.45420604068414, 34.684195046783316], [-77.45408488484617, 34.68424948619723], [-77.45396350708378, 34.6842856106615], [-77.45369537867332, 34.68429606968698], [-77.45368120755992, 34.684337390642575], [-77.45362408863801, 34.684351499940924], [-77.45339920972464, 34.68462411289893], [-77.45295146574185, 34.68446177119464], [-77.45241291783377, 34.68434669293789], [-77.4523444719382, 34.68434498160346], [-77.4523068385698, 34.684334214181405], [-77.4521136869632, 34.684302251243395], [-77.45205448390769, 34.68429562231685], [-77.45203618644342, 34.684303154046226], [-77.45183618565488, 34.68431267786944], [-77.45169652707926, 34.68436986437185], [-77.45144048042856, 34.68441360557731], [-77.45107829184882, 34.68429196407435], [-77.45081416205286, 34.6841377022384], [-77.45080352650113, 34.68413417701581], [-77.45079800165651, 34.684128210572155], [-77.4505775549153, 34.6841248378254], [-77.45047587751077, 34.68415933468145], [-77.45034004722439, 34.68411050100236], [-77.44999089932452, 34.68401881346438], [-77.44987601055769, 34.68401789565823], [-77.44977970455217, 34.683942392561434], [-77.44959060287275, 34.68389692989028], [-77.44949815745579, 34.6837781448147], [-77.44941703994556, 34.683723531954044], [-77.44930719681986, 34.68376904204712], [-77.4492049569466, 34.68375073832466], [-77.4489641484455, 34.68376037674648], [-77.4486211379602, 34.68392575620019], [-77.44845340196136, 34.684017712746034], [-77.44789069777387, 34.684235968641524], [-77.44776066991327, 34.68438081969124], [-77.44760870106144, 34.68440460278809], [-77.44719064702045, 34.68444104853041], [-77.44692547335454, 34.68440596368195], [-77.44686643973826, 34.684414643499785], [-77.44669454769915, 34.684502384316296], [-77.44653131015245, 34.68458700086846], [-77.4465176332527, 34.684592212171346], [-77.44650396966755, 34.684599856173904], [-77.44645699423035, 34.68460157185775], [-77.44611257648069, 34.68467785576644], [-77.44580582632679, 34.684798305610535], [-77.44573625126239, 34.684810454342696], [-77.44557237635459, 34.684810801695754], [-77.44546166277316, 34.68488054971671], [-77.4453326167998, 34.68489842356478], [-77.44527567007646, 34.68498659073087], [-77.4451003613914, 34.685022061137225], [-77.44500902946533, 34.685117211893726], [-77.44495175851827, 34.68515286877746], [-77.44463783663409, 34.6852582014409], [-77.44456851639973, 34.6852984053983], [-77.44446901588739, 34.685356113205856], [-77.44434158301752, 34.685430176081184], [-77.44430059492322, 34.6854546784859], [-77.44427045305127, 34.685473719163774], [-77.44418801574358, 34.68554892051069], [-77.44416077780997, 34.68557513474959], [-77.44416103547617, 34.685600412770356], [-77.44414908600663, 34.68571080454304], [-77.44417327847839, 34.68599423770469], [-77.44417335895267, 34.685998804759436], [-77.44417270648, 34.68600172562533], [-77.44417415700445, 34.68600919189266], [-77.4442806059717, 34.68659532540429], [-77.44406817252445, 34.686938194910624], [-77.44402705638595, 34.68706571658433], [-77.44394476862982, 34.68711605451359], [-77.44384499500555, 34.687147523110646], [-77.44366266226943, 34.68710749470995], [-77.44320709562695, 34.687137529597216], [-77.4430099028178, 34.68708349164777], [-77.44221667270706, 34.68681835766593], [-77.442079948929, 34.686603499634394], [-77.44194533493618, 34.68648522749487], [-77.4416511801949, 34.6863581858959], [-77.44145013066657, 34.68656556657859], [-77.44137112069973, 34.68669623128404], [-77.44112805580446, 34.686998544144416], [-77.44070030078636, 34.686942604531666], [-77.44064809497797, 34.68696177809815], [-77.44053366070743, 34.686962476907745], [-77.44024976001525, 34.68705841970382], [-77.44002317658826, 34.68706822331877], [-77.43974746990018, 34.68695635977254], [-77.43956099986131, 34.68645063300226], [-77.43941682314681, 34.68620158209576], [-77.43946522107271, 34.68602987938194], [-77.43958193156438, 34.6859668874588], [-77.43965865011606, 34.685654225862876], [-77.4396898735402, 34.68554938536158], [-77.43970639390304, 34.68542261773838], [-77.43972768502417, 34.68517900209957], [-77.43958072326453, 34.68495218082403], [-77.43978211675419, 34.68479868613021], [-77.43978969633906, 34.684745726079285], [-77.4397956350551, 34.6847042310739], [-77.43980874563599, 34.684612626335465], [-77.43978756674389, 34.6845594449135], [-77.43970712314096, 34.68451797967013], [-77.43966625964998, 34.684423047013496], [-77.43958308545193, 34.68434655911167], [-77.43954344397396, 34.6842957444008], [-77.43937721079081, 34.68398610097228], [-77.43919165607015, 34.683698061496564], [-77.43916942968201, 34.683626438862156], [-77.43912694638483, 34.6835202812953], [-77.43885441221721, 34.683282324174556], [-77.43860306905596, 34.683116118349346], [-77.43853135834618, 34.68300000542402], [-77.43829143730768, 34.68282424962866], [-77.43809027904602, 34.68267363642716], [-77.4377174800197, 34.682446963319826], [-77.43758671073513, 34.682199287019344], [-77.43744962602139, 34.681970847428644], [-77.43755021533764, 34.68189820186484], [-77.43764510733874, 34.68158437633666], [-77.43766470061442, 34.6814870068183], [-77.43770152252947, 34.681397801352915], [-77.43769132454398, 34.68134188274907], [-77.43768168238101, 34.68131707728448], [-77.43766152279619, 34.681242723814464], [-77.43757228322232, 34.68118653923644], [-77.43755885506349, 34.681187900942064], [-77.4375329295482, 34.681184806345556], [-77.4373484002685, 34.68119443394159], [-77.43723009537314, 34.68121688134348], [-77.43713889783785, 34.68122583572905], [-77.43693481582493, 34.68123178015674], [-77.43681637846777, 34.68144636231017], [-77.43630201156543, 34.68125225706957], [-77.43599922368111, 34.68104180025689], [-77.43590274814406, 34.68087087625504], [-77.43577895303254, 34.680577812702694], [-77.43578713178235, 34.68055091976038], [-77.43570352727777, 34.68038610080153], [-77.43569845402757, 34.68038014611617], [-77.43557520410525, 34.68029250290796], [-77.4354911818133, 34.6802515450501], [-77.43537481394179, 34.68021143191465], [-77.43527553493387, 34.680220916283844], [-77.43511869400851, 34.68016661815784], [-77.43495056373052, 34.68023680193053], [-77.43468220639637, 34.680200828937835], [-77.43464441605866, 34.68018761329566], [-77.43457706961523, 34.68018673533804], [-77.43445020431903, 34.68019544185285], [-77.43431094977123, 34.680232864953254], [-77.43426309613334, 34.68026344749391], [-77.43422867678854, 34.680285444239956], [-77.43409055712678, 34.68035527168054], [-77.43393605361838, 34.68042133523791], [-77.4339097362803, 34.68043355669242], [-77.43388493680548, 34.680444761151776], [-77.43356998770867, 34.68057927326888], [-77.43354448438407, 34.680584225691064], [-77.43342220602966, 34.68056246372542], [-77.43308245678712, 34.68057668131815], [-77.43291254497507, 34.68063694769279], [-77.43267289200921, 34.68065490450653], [-77.4322845719284, 34.68059274823138], [-77.4321150787861, 34.68049075971773], [-77.4320142370241, 34.68041976008292], [-77.43187041471796, 34.680423761596415], [-77.43184859257619, 34.68042899112133], [-77.43166923812176, 34.680504858739376], [-77.43166700339323, 34.680506020831224], [-77.4316655385989, 34.680507165010155], [-77.43166224995043, 34.680510650166696], [-77.43158599774208, 34.680619112248394], [-77.43156633977287, 34.68071535761131], [-77.4315550681832, 34.68074806077876], [-77.43150747301124, 34.68099302946621], [-77.43150421333588, 34.681009806585585], [-77.43150142320995, 34.68102416672855], [-77.43146548025902, 34.68120916131984], [-77.43145423136743, 34.68126705818957], [-77.43145335818261, 34.681271552411566], [-77.43145133083357, 34.68127515641514], [-77.43144334383487, 34.681285676776696], [-77.43132830309027, 34.68144793176245], [-77.43129390287775, 34.681495316530025], [-77.43122699331279, 34.68158509940697], [-77.43113200537978, 34.68171822697024], [-77.43107749149418, 34.681785709530786], [-77.43100185007629, 34.681902265535136], [-77.43097373496921, 34.681942406034246], [-77.43095898995858, 34.6819658872734], [-77.43091928663432, 34.681989666122874], [-77.43080619125907, 34.6820899924499], [-77.43050992621635, 34.68233078022255], [-77.4305135991196, 34.68234054330307], [-77.43049660175656, 34.682343246354385], [-77.4301668368318, 34.6825403810442], [-77.43002334324163, 34.68253386938758], [-77.42979359526335, 34.6825583258854], [-77.4296481561608, 34.682596925723], [-77.42932121906057, 34.682653546079024], [-77.42907725405193, 34.682819474840976], [-77.42899962856566, 34.682875617967824], [-77.42895225675545, 34.68291260330223], [-77.42883014620088, 34.68297245156546], [-77.42870584512805, 34.68299579459859], [-77.42864044974556, 34.6830362357119], [-77.42861424122094, 34.68307391589373], [-77.42855968885479, 34.68309116054144], [-77.42850906415418, 34.683122232670094], [-77.42846653961047, 34.68312583055928], [-77.42842990927844, 34.68319891455349], [-77.42841786254934, 34.68328476650542], [-77.42843045062179, 34.68344076133518], [-77.42818865885022, 34.68374598249917], [-77.42821281035106, 34.68377211935274], [-77.4281836021997, 34.68378504251074], [-77.42815112829418, 34.683805614834085], [-77.4281078937695, 34.68377968968346], [-77.42751428903836, 34.68379195183944], [-77.42735922240347, 34.68364576526929], [-77.42727348064551, 34.68351690969888], [-77.42717126174774, 34.683625625350416], [-77.42707067373001, 34.683652179451954], [-77.42696127894594, 34.683656243066096], [-77.42690097846034, 34.68369697703523], [-77.42679943587335, 34.68376557077902], [-77.42675025493182, 34.68381964424851], [-77.42670063598122, 34.68392061935855], [-77.426690375701, 34.683938469206424], [-77.42668236635522, 34.68394810626955], [-77.42662034110575, 34.684053741945], [-77.42656370172, 34.68412803371303], [-77.42645410752829, 34.68427513624994], [-77.4264379751402, 34.684296415988484], [-77.42637573049126, 34.68440487838582], [-77.42632597491306, 34.68448724176342], [-77.42631973870893, 34.684507675996], [-77.42631206147459, 34.68452916141479], [-77.42631457564566, 34.68461620833587], [-77.42630801900765, 34.684754037089434], [-77.42631466088352, 34.684785438035426], [-77.42630458525298, 34.684826220350224], [-77.42628790929234, 34.6849856180009], [-77.42628815767509, 34.68505570618558], [-77.426290613991, 34.68509608359945], [-77.42630867859711, 34.68513276831314], [-77.42630270671033, 34.68514683415983], [-77.42631963204927, 34.68515233162743], [-77.42637631897723, 34.685171911010244], [-77.42640494593014, 34.6851772888274], [-77.42646866250165, 34.68519093449464], [-77.42653851859271, 34.68520870800673], [-77.42670938699612, 34.685256101295074], [-77.42676405242794, 34.685277371079884], [-77.4268146920175, 34.68528630652082], [-77.42706191397794, 34.685355267112996], [-77.42735597986443, 34.68542341846928], [-77.42736211166309, 34.685425092309394], [-77.42737223873753, 34.68542585057867], [-77.42767481703436, 34.685451693163955], [-77.42790567214595, 34.685574265679676], [-77.42797457640481, 34.68552303353843], [-77.42800447705159, 34.685608373319134], [-77.42807230392094, 34.68584670005651], [-77.42810902737615, 34.685972106637024], [-77.42808595721257, 34.68602074912714], [-77.4279398724557, 34.68637805863394], [-77.42789750052094, 34.68645719705487], [-77.42780670420147, 34.68658367197062], [-77.427647653467, 34.68692888572127], [-77.42749344753781, 34.68714394005976], [-77.42730556523162, 34.68736831399722], [-77.42700219103607, 34.687812177529295], [-77.42699747253876, 34.68781963289079], [-77.42699441594614, 34.687823827407065], [-77.42698348922875, 34.68784073733086], [-77.42677057641974, 34.688205753340476], [-77.4267052707446, 34.68827650961138], [-77.42649383687805, 34.6884255569216], [-77.42646700477012, 34.68845732504884], [-77.42632625026822, 34.68854063635793], [-77.42617758274432, 34.68865102525575], [-77.42614045779017, 34.68867133498664], [-77.42609805511114, 34.68868598475388], [-77.42590690177553, 34.688835891756085], [-77.4258195897639, 34.68889463197513], [-77.42570476093157, 34.68902317649776], [-77.42569856853305, 34.689042564616436], [-77.42565011595475, 34.68912662748841], [-77.42558414386548, 34.68925759357084], [-77.42554618722056, 34.689312537417806], [-77.42546310412747, 34.689519286433416], [-77.4253596466347, 34.689638457477194], [-77.4251511759321, 34.689969265827706], [-77.42512220298708, 34.6899981598381], [-77.42505252514317, 34.69008434253547], [-77.42486948583188, 34.6903328912365], [-77.42481741266812, 34.690411608276925], [-77.42458533767221, 34.690606241144366], [-77.4243623495394, 34.69081152554449], [-77.4242708804653, 34.69085003184135], [-77.42417642246195, 34.690897187585435], [-77.4239448628283, 34.69106492651162], [-77.42378766026255, 34.69116960193186], [-77.42361158363434, 34.69126795060711], [-77.423372973635, 34.69145895167142], [-77.42330612099889, 34.69151645710972], [-77.42326854576284, 34.69154711628661], [-77.42308012971014, 34.69168069773747], [-77.42299230792015, 34.69175131270401], [-77.42296466758948, 34.6917625569433], [-77.42273003395336, 34.691917845247815], [-77.42266564767516, 34.69196516471881], [-77.4225566508652, 34.69206515004922], [-77.42235903293212, 34.69221179384526], [-77.42222775157467, 34.69230124547051], [-77.42206860523065, 34.69248489201535], [-77.4217747161519, 34.692552502201146], [-77.42165053440787, 34.692549288930266], [-77.42151768515357, 34.6926119676378], [-77.42132524490799, 34.69276539083658], [-77.4213102489972, 34.692865552619544], [-77.42121634848856, 34.693065654257936], [-77.42116989151066, 34.693259350021805], [-77.42088701346539, 34.693405197849856], [-77.42084090393473, 34.6934694100876], [-77.4208127378565, 34.693483567589276], [-77.42050292636395, 34.693625067274766], [-77.42048342074682, 34.69363287949275], [-77.42014584998763, 34.6937516218772], [-77.42010605925569, 34.693763847381334], [-77.42006097226853, 34.693779701707186], [-77.41977778192569, 34.69391614101084], [-77.41974994261906, 34.69392955378158], [-77.41972261585356, 34.69394089421259], [-77.41942710814057, 34.694020568813684], [-77.41933420207319, 34.69399776953496], [-77.41886974675732, 34.69388379089275], [-77.41882971957484, 34.69387031773521], [-77.41878860188898, 34.69385364741125], [-77.4184288238906, 34.69376787706386], [-77.41826893721525, 34.69375192903246], [-77.41821795140213, 34.69376973923872], [-77.4180608588698, 34.69377490172291], [-77.41783490185541, 34.69379022573699], [-77.41770930517546, 34.69379573320698], [-77.4175529538957, 34.693853017482986], [-77.41745608313069, 34.693918811572], [-77.41746123482264, 34.693988504187686], [-77.4172480779732, 34.69432671115733], [-77.41707283838316, 34.694633458758496], [-77.4169001457511, 34.69491042463853], [-77.41676746713017, 34.6950368867263], [-77.41656424286629, 34.69505434856924], [-77.41634428002673, 34.69509293133302], [-77.416229264356, 34.695104528048375], [-77.41607039167141, 34.695179264027495], [-77.41597859349753, 34.695243000726975], [-77.41583668905936, 34.69535362646922], [-77.41555996787598, 34.695559808590346], [-77.41537260808194, 34.69574818217554], [-77.41535272079678, 34.695766860488234], [-77.41529921646347, 34.69581973015318], [-77.41524016375836, 34.69590563357566], [-77.41522589859498, 34.69600204651382], [-77.41526812623651, 34.69621050876073], [-77.4153122445005, 34.69626065105798], [-77.41531956777905, 34.6964095060644], [-77.41537739215856, 34.69661414462774], [-77.41523620075978, 34.6967387292609], [-77.41521956780912, 34.69699404200861], [-77.41487217883264, 34.69689058377993], [-77.41474313911432, 34.69691686136213], [-77.41471747477362, 34.69692106985826], [-77.4146702018119, 34.69692585792306], [-77.41455709622346, 34.69700600772099], [-77.41454123578416, 34.69700691085119], [-77.41454641327334, 34.6970223297961], [-77.41454817483412, 34.697025743345144], [-77.41465953227373, 34.69720167757837], [-77.41466029891721, 34.697202947758825], [-77.41494496399766, 34.697306576341724], [-77.41493700284907, 34.697354057406784], [-77.41501027014121, 34.69739985543498], [-77.41521059416, 34.6975159189731], [-77.41535502154048, 34.69772452342782], [-77.41528631457106, 34.69785124364179], [-77.4152573394837, 34.697969904395215], [-77.41535914820076, 34.698026508563835], [-77.41527662517292, 34.69825620200173], [-77.41529547639789, 34.69832949982763], [-77.41535474423569, 34.69847470176207], [-77.41532773129103, 34.698553630575816], [-77.41536483425578, 34.69864333538324], [-77.4154105109347, 34.69867461657442], [-77.4154911075648, 34.698760613553226], [-77.41560245810172, 34.69881772315783], [-77.41590572853275, 34.699035367599514], [-77.41598740213462, 34.69910349865211], [-77.41602568831402, 34.69912789963836], [-77.41606134598918, 34.69911854518067], [-77.41661908371128, 34.69928634456796], [-77.41662073544852, 34.69928636767743], [-77.41662280721249, 34.699288561749185], [-77.41691321274595, 34.69961000352094], [-77.41699540743699, 34.6998977964582], [-77.41702653847571, 34.69998651929153], [-77.41702861494609, 34.70000822137426], [-77.41702577083728, 34.70010109259343], [-77.41703877620587, 34.70054989676682], [-77.41697402793793, 34.70061086768265], [-77.41681126186802, 34.70099161117562], [-77.41679948926897, 34.70102529583279], [-77.41678132923046, 34.70104382319166], [-77.41674817671779, 34.701059816404154], [-77.41641024748183, 34.70118511366357], [-77.41639196806734, 34.701183234906736], [-77.41624252157365, 34.70122886315928], [-77.41604028049895, 34.70129103464277], [-77.4160201999397, 34.70129539450527], [-77.41599178493546, 34.701301870269546], [-77.41562351394403, 34.701394821223886], [-77.4153476902872, 34.70146937573575], [-77.41522048310254, 34.70148387389004], [-77.4148845485986, 34.70147366563852], [-77.4146856554878, 34.7015421850173], [-77.4143844146204, 34.70161291345598], [-77.41361685031175, 34.701431414402734], [-77.41345188801014, 34.701375953655244], [-77.41326609998954, 34.701280429062066], [-77.41286888876981, 34.701175833670284], [-77.41268527749757, 34.701078751434366], [-77.4125251427006, 34.70099408202748], [-77.4125274443408, 34.70092867429524], [-77.41253103838116, 34.70082653502079], [-77.41253716135117, 34.700652518831006], [-77.41248777232559, 34.700563319239], [-77.4124270903794, 34.70048815448877], [-77.41236891885218, 34.70038971966797], [-77.41220153754122, 34.700287719635966], [-77.41216682151428, 34.70028026680137], [-77.41212845544541, 34.700266845081345], [-77.41187224237066, 34.70019085376066], [-77.41161873365147, 34.699772112080815], [-77.4116465424581, 34.699575157949326], [-77.41168788593166, 34.69944775470878], [-77.41172947169935, 34.699251741604314], [-77.41175779098855, 34.699188016515066], [-77.41177383608466, 34.699075713601765], [-77.41174569343698, 34.69897786092002], [-77.41163492329802, 34.698797166778405], [-77.41152578502164, 34.6987328302119], [-77.41143092027934, 34.698588182898646], [-77.41131869710377, 34.698372861028474], [-77.41134384131045, 34.69827816257275], [-77.41122195319994, 34.698010022326805], [-77.41116868234482, 34.697989086342204], [-77.4111291304243, 34.69792348899847], [-77.41114969825782, 34.69781952563734], [-77.41096221989777, 34.697305980735365], [-77.41093218998078, 34.697195035370115], [-77.41087435916808, 34.69699716768446], [-77.41077647225822, 34.696813640728266], [-77.41078286473332, 34.69668411757202], [-77.41070242677664, 34.69648431419348], [-77.41067761864053, 34.69640852751513], [-77.41064558447091, 34.696356530794645], [-77.41063997022027, 34.696237800346914], [-77.41060139251637, 34.69606151185713], [-77.41058748168346, 34.69599977850749], [-77.41055930315852, 34.69587199453796], [-77.4105379761425, 34.69579725501673], [-77.41053426922318, 34.69575847013705], [-77.41050954483701, 34.69565043519151], [-77.4104959263392, 34.69559162162527], [-77.41044867174942, 34.69544896426814], [-77.41040197114174, 34.69530874263933], [-77.41029897616941, 34.695227426648096], [-77.41032818829501, 34.69512725238473], [-77.41025274721649, 34.694856389578156], [-77.41024071557722, 34.69481708976839], [-77.41024209486811, 34.69480480736565], [-77.41024207330503, 34.69475435803584], [-77.41024251772043, 34.69458145823872], [-77.41022860127116, 34.694533293015134], [-77.41020369250522, 34.694374480072725], [-77.41010348380695, 34.69420995822084], [-77.41049631300237, 34.69380607628775], [-77.41050061584143, 34.69378979101627], [-77.41050533536443, 34.69377322160037], [-77.41052772558821, 34.693768026705115], [-77.41082921512518, 34.69355478733685], [-77.41091089376472, 34.69355146105711], [-77.41101739835175, 34.69348849125123], [-77.41108993328832, 34.69348649222546], [-77.4111309076059, 34.69345120075213], [-77.41115335141464, 34.693336775039285], [-77.41115887161618, 34.69330653095179], [-77.4111297362262, 34.6931712336633], [-77.4111432054045, 34.69308989209454], [-77.41106675111209, 34.69286963898779], [-77.41125809779251, 34.6927599607962], [-77.41127679978788, 34.69266357359261], [-77.41128747944269, 34.69258336303952], [-77.4112980971453, 34.692531246623375], [-77.41123515145708, 34.69243178150721], [-77.41118325848375, 34.69240366384562], [-77.41096417157739, 34.69227463408791], [-77.41096140890994, 34.69227303195431], [-77.41096079087745, 34.69227265057625], [-77.41052339994631, 34.692009393559374], [-77.41048520802367, 34.691701850299864], [-77.4103910111044, 34.69151497650937], [-77.4104734692486, 34.691476702420104], [-77.4105815621532, 34.69109244067201], [-77.410531948658, 34.69100517289569], [-77.41056687071342, 34.69088132761067], [-77.410625194427, 34.690478682554186], [-77.41054028467538, 34.69021696678736], [-77.41056067867311, 34.689896992316925], [-77.41054543175476, 34.689768474551286], [-77.41054879086846, 34.6896132747707], [-77.41049688300572, 34.68944856101106], [-77.41047494189642, 34.6893515334009], [-77.41046973229189, 34.68930605374393], [-77.41045842926954, 34.68920769370831], [-77.41040497581079, 34.688934373749134], [-77.41039813652007, 34.68872188507475], [-77.41039599206346, 34.688690464784166], [-77.41038488932426, 34.688496407468065], [-77.41036535195107, 34.68843085478269], [-77.41030755221607, 34.68821278060878], [-77.41028244514219, 34.688122286219745], [-77.41027815805631, 34.688094584850475], [-77.41026216385629, 34.68804611139058], [-77.41014870229091, 34.68770224193234], [-77.410033343331, 34.68747600405263], [-77.41019048173524, 34.68727315538199], [-77.41019795811413, 34.68723535020582], [-77.41023814277767, 34.687022590263766], [-77.41024174275519, 34.68698980823957], [-77.41024480139698, 34.68698793088014], [-77.41025436493938, 34.686966573095674], [-77.41033865307493, 34.6867673667976], [-77.4103685322789, 34.686717849731394], [-77.41037484241693, 34.686477263440054], [-77.41039756032623, 34.686259395292666], [-77.41040454309223, 34.686208097673905], [-77.41040149908207, 34.68612201830034], [-77.41038752484246, 34.68592258346488], [-77.41036885721869, 34.68582502352853], [-77.410354811092, 34.685513248039804], [-77.41033285506855, 34.685393697405694], [-77.41029749417862, 34.68533196180613], [-77.410347603192, 34.68528572023438], [-77.41034889475989, 34.68494066116991], [-77.41028977796717, 34.68477014311697], [-77.41034549163788, 34.68453412100223], [-77.41034663790016, 34.68423092145469], [-77.41046407282445, 34.683999922128976], [-77.41016808454592, 34.68360932014694], [-77.4105225074878, 34.683327378819754], [-77.41104970596314, 34.68311357689249], [-77.41144705888337, 34.683343386486], [-77.41160644078165, 34.68340395602534], [-77.41166405814006, 34.68349931922606], [-77.4120532407606, 34.6835867683942], [-77.41217775962991, 34.68364397783848], [-77.41249610739352, 34.68359854838163], [-77.41251600493095, 34.68359556457431], [-77.41252110479174, 34.68358811972891], [-77.41248590761732, 34.68330214605594], [-77.41243852399381, 34.68317622198618], [-77.41239652959959, 34.68288844041264], [-77.41219351494433, 34.682385739814954], [-77.41195712700082, 34.68199888754888], [-77.41235587677892, 34.681837420818404], [-77.41255119009826, 34.681647649997984], [-77.41266977650923, 34.68160274241946], [-77.41278047781098, 34.6814483257881], [-77.41279541769379, 34.681434193361056], [-77.4128839084229, 34.68120501094706], [-77.41288393077798, 34.68120496954886], [-77.41288393685011, 34.68120492572675], [-77.41294364844939, 34.68095691208853], [-77.41268302795805, 34.680876305302604], [-77.41265772302135, 34.68087981721311], [-77.41262250913375, 34.68086771815044], [-77.41236475066987, 34.68078509338921], [-77.41202808164769, 34.68066936448284], [-77.41180351116336, 34.68051033013326], [-77.4114663060657, 34.68014978961785], [-77.411356061186, 34.68005703461202], [-77.41107466714821, 34.67974172393346], [-77.41079147450273, 34.67957942575132], [-77.41067239899078, 34.6794495607121], [-77.4106338870676, 34.67929937248972], [-77.41009757308888, 34.67879668180758], [-77.40979929355011, 34.67858002252868], [-77.40949872923788, 34.678153823746825], [-77.40905506872886, 34.677628606570316], [-77.40897676338167, 34.67747889429583], [-77.40887531068257, 34.67734519162523], [-77.40853914894154, 34.67709031974289], [-77.40834397616202, 34.67696726424688], [-77.40823223757067, 34.67689681265232], [-77.40796850199926, 34.676689206458335], [-77.4078624314033, 34.67641742015615], [-77.40779717646079, 34.67618563000436], [-77.4077897919404, 34.676067533115805], [-77.4077338413469, 34.67577286890322], [-77.40798676429846, 34.675988082741085], [-77.40831790442226, 34.675693240825495], [-77.40831874002738, 34.675233378188075], [-77.40833003135931, 34.67513835927133], [-77.40830930692336, 34.67507930025369], [-77.40830433444489, 34.674891452015935], [-77.40825475542346, 34.674209377646235], [-77.40814024147816, 34.67395368018946], [-77.40844291626452, 34.67323819638748], [-77.40851425410504, 34.672966332114086], [-77.40866004777732, 34.67279902508068], [-77.40891142840218, 34.67279496932826], [-77.4090688022028, 34.67260129898001], [-77.40916414030616, 34.67249096300656], [-77.40927715176358, 34.672312262095666], [-77.40941042731913, 34.672161742478735], [-77.40941970672826, 34.67214604114693], [-77.40951337793095, 34.67195055833148], [-77.40954595476597, 34.67188532467439], [-77.40954205503633, 34.671648687600296], [-77.40961753447154, 34.67137278866073], [-77.40977783970553, 34.67117208821785], [-77.40991861849534, 34.67111720003877], [-77.4101098354384, 34.67075737783788], [-77.40993022680352, 34.67066630045202], [-77.40957638259334, 34.670498564420505], [-77.40933628472004, 34.67045842032869], [-77.40908440266526, 34.670500567660156], [-77.40893666187822, 34.67049509375488], [-77.40865109146729, 34.670539825314606], [-77.40860107747305, 34.67054765939734], [-77.40847869923536, 34.67071738463682], [-77.40835122255173, 34.67079740392261], [-77.40832868865124, 34.670830983658135], [-77.40826626093933, 34.67092259216625], [-77.4082364285095, 34.670983686441254], [-77.40816090905517, 34.67112415163437], [-77.40817430725703, 34.6711699707375], [-77.40815192055409, 34.67121951993012], [-77.40804334017321, 34.67136738991929], [-77.40793055119792, 34.67160553503018], [-77.40791275712289, 34.67163755242355], [-77.40783136361712, 34.67170797626652], [-77.40754680125661, 34.67206859098951], [-77.4074462031526, 34.67230949674669], [-77.40673178973144, 34.67234245211658], [-77.40662280155999, 34.67245874716842], [-77.4062169624274, 34.67327415277187], [-77.40621424030206, 34.673279562960886], [-77.40621150873123, 34.673282259527845], [-77.40619184151916, 34.673335715700226], [-77.40603023898791, 34.67377429069001], [-77.40605389423607, 34.67381203985953], [-77.40647828300176, 34.67405780918686], [-77.40678418361215, 34.674219203230926], [-77.407151612442, 34.67444669333632], [-77.40738927123905, 34.6745704429402], [-77.40740779277596, 34.6748155792286], [-77.40742718112433, 34.67527117269624], [-77.40743149646416, 34.67538300398937], [-77.40729367908824, 34.67550299825378], [-77.40705878989486, 34.67581168525702], [-77.40688874348663, 34.67588668252229], [-77.40673682536864, 34.67618163812353], [-77.40675487427711, 34.67626444417542], [-77.40659648841833, 34.676363534554035], [-77.4064318906521, 34.676635677421274], [-77.40637034590272, 34.67668898895792], [-77.40627107949945, 34.67674669272038], [-77.40620507649554, 34.67684979900855], [-77.40623615508413, 34.6769215873053], [-77.40626786947139, 34.676945086143704], [-77.40639621934608, 34.67699323078473], [-77.40641217497028, 34.67699995062781], [-77.4066765932456, 34.67709943893194], [-77.40672693990594, 34.67711838192083], [-77.40701268039697, 34.67713901583552], [-77.40723378958984, 34.677313335636256], [-77.40738359632596, 34.677602750937915], [-77.40747235154785, 34.67776438988267], [-77.40782587100543, 34.67795901667206], [-77.40775158603137, 34.67829066884178], [-77.40785451661617, 34.678657418246665], [-77.40802297778049, 34.678769469743784], [-77.40800176530149, 34.678937352440094], [-77.4083087093084, 34.67930175837234], [-77.40843087717415, 34.67949198911847], [-77.4085230084668, 34.67967889770217], [-77.40873648012546, 34.68003735964893], [-77.4088510858121, 34.680209374322274], [-77.40888267612956, 34.68036389247476], [-77.40892697239227, 34.680485950205956], [-77.40901534318539, 34.68058719331225], [-77.40918419976457, 34.68070409958874], [-77.40944854535371, 34.68085281649854], [-77.40972026708418, 34.681065778353705], [-77.40982258910638, 34.68125194003048], [-77.40995232136837, 34.681535342824084], [-77.40998417912026, 34.6816986679838], [-77.41001000106893, 34.68187664407498], [-77.40979903110616, 34.682143961700234], [-77.40939699451611, 34.68218210322878], [-77.40936960032077, 34.682189670340385], [-77.40933670956605, 34.682200150220055], [-77.4089837431719, 34.68230665423099], [-77.40868764236026, 34.68241876543874], [-77.40861165059417, 34.682446155090574], [-77.40842391057706, 34.682439837832376], [-77.40824805187437, 34.68259954999775], [-77.40800137641662, 34.682575693982486], [-77.40780671729406, 34.68262578612588], [-77.40775429179817, 34.6827646247505], [-77.40758230911084, 34.68300687619016], [-77.40727496544903, 34.68287122272662], [-77.40704753646506, 34.68288026305713], [-77.40688674361098, 34.682814162299465], [-77.40669209884321, 34.682671111671034], [-77.40654370949416, 34.68251091618688], [-77.40634203468213, 34.68227038042379], [-77.40627957315255, 34.68217475932715], [-77.40622100415872, 34.68208509635595], [-77.40613300827026, 34.6821324017839], [-77.40604535667141, 34.68216654985494], [-77.40576310757908, 34.682275487747084], [-77.40549581804098, 34.682376376041105], [-77.40539241902344, 34.68241728496822], [-77.40522708100593, 34.68243929895314], [-77.40480742676817, 34.68254060115355], [-77.4046013125414, 34.68242846586598], [-77.40446631354963, 34.68239867478581], [-77.4042289603377, 34.68232531375012], [-77.40393569715513, 34.68225976889809], [-77.403921737304, 34.68225599482177], [-77.40362418905005, 34.68220084395848], [-77.40335650383393, 34.68205502223744], [-77.40333554346012, 34.682045221728316], [-77.40306376370224, 34.68192328700999], [-77.4028128853331, 34.68183543558005], [-77.40272896062352, 34.68180108335184], [-77.40247439739375, 34.68174564643928], [-77.40196503904293, 34.6812975707699], [-77.40196437524996, 34.68129668758684], [-77.40196383153176, 34.681295989575], [-77.40195993952744, 34.6812911722626], [-77.40166090839462, 34.6809769332187], [-77.40166922761583, 34.68091445841357], [-77.4014885743924, 34.68072446286323], [-77.40144726656655, 34.68061971417486], [-77.40125734164754, 34.68049071446397], [-77.40123916117484, 34.68047938789498], [-77.40099792789262, 34.68036080152541], [-77.40095878649237, 34.680341194246644], [-77.40050396965937, 34.680120497914324], [-77.40041673376953, 34.68000027599523], [-77.40001535513382, 34.67960610202577], [-77.39990233709993, 34.67956390780504], [-77.39986432937829, 34.67949463127129], [-77.39982819896981, 34.679431307427905], [-77.39985229557692, 34.6793393002744], [-77.39992429414579, 34.67890579860679], [-77.40001660256605, 34.678859838205504], [-77.40021081431561, 34.67845747102496], [-77.40020428361623, 34.67844466355871], [-77.40020958626853, 34.67842730011424], [-77.40018267925149, 34.67787795261539], [-77.40030844708745, 34.67752410048696], [-77.40039026446055, 34.677226327065235], [-77.40058512829904, 34.67720698569101], [-77.40076039468454, 34.67708365406513], [-77.40087750286085, 34.67700288936449], [-77.40093020944622, 34.67698736460271], [-77.40099504811909, 34.67689794673191], [-77.40105375278077, 34.67681536416335], [-77.40106109305233, 34.67676384959552], [-77.40104097080015, 34.67673941890297], [-77.40095949940019, 34.67658306180722], [-77.4008430384163, 34.676470583823075], [-77.4008051571419, 34.67644744407712], [-77.40077704932631, 34.6764359993941], [-77.40075866192578, 34.67640214303618], [-77.40042908493547, 34.67613481052577], [-77.40032674439003, 34.675886932941424], [-77.40025430807351, 34.67576138559918], [-77.40018145337388, 34.675640937132414], [-77.40030411029738, 34.6755887492451], [-77.40036508266164, 34.675268857331474], [-77.40038046397353, 34.675151457686084], [-77.40042155401525, 34.67503261786038], [-77.4005658532295, 34.67473879067806], [-77.40052754821674, 34.67464380039649], [-77.40061296158058, 34.674597516345244], [-77.40067369203808, 34.67441538791715], [-77.40067737084755, 34.67432875942396], [-77.40066152536129, 34.674252560536786], [-77.400617449509, 34.67411612596951], [-77.4005635055391, 34.67396363480805], [-77.40052584935847, 34.67386282775344], [-77.40050077756315, 34.673795709095074], [-77.40038305776937, 34.67348056671669], [-77.40037725218308, 34.67347848493163], [-77.40037871801596, 34.67347340575352], [-77.40037804590075, 34.67346481527491], [-77.40033327299221, 34.67327366706581], [-77.40028624768411, 34.673161460228414], [-77.40025599528344, 34.67308273837491], [-77.40010949008646, 34.67282000675322], [-77.40000491070973, 34.672574004802286], [-77.39988850333285, 34.672343376261814], [-77.39981065840271, 34.672156241700826], [-77.39961491869624, 34.671708361249564], [-77.39955272087285, 34.671590789281424], [-77.3995470984063, 34.671504822753825], [-77.39949047101668, 34.671264089419864], [-77.39946747004146, 34.67118002623644], [-77.39946034418924, 34.67113601515119], [-77.39942246107766, 34.6709020377478], [-77.39939572992213, 34.670763627899014], [-77.39939332460163, 34.67075204963526], [-77.39937398215982, 34.670699301968064], [-77.39933544663491, 34.670591998934434], [-77.39931018775722, 34.67054842515428], [-77.39908347127275, 34.67044755283361], [-77.3989599656156, 34.67039594635622], [-77.39871245052102, 34.6703999657105], [-77.39840604320386, 34.67028379183909], [-77.39816825421724, 34.670066693806035], [-77.39785957934609, 34.669619084979466], [-77.39769857696356, 34.6694762138288], [-77.39750959642815, 34.66931874517458], [-77.39734582219802, 34.669251069149496], [-77.39715686353223, 34.66913440391258], [-77.39703459124058, 34.669070551052016], [-77.39663770478917, 34.66884054334204], [-77.39659834896148, 34.66885059769135], [-77.39655122206408, 34.66877845965923], [-77.39657199357903, 34.6687330004825], [-77.39659074482324, 34.66836304394808], [-77.39665225377249, 34.668254676447226], [-77.39661524215587, 34.66805541299479], [-77.39659468391217, 34.66791508497871], [-77.39639216755607, 34.66760445112138], [-77.39637191349208, 34.66756168564813], [-77.39634272610019, 34.6675213350085], [-77.39619600787212, 34.6673692819642], [-77.39609365126896, 34.667275273853704], [-77.39594360561503, 34.66744738912743], [-77.39587637206341, 34.66759452788895], [-77.39566498446149, 34.66764909172602], [-77.39552358653961, 34.66776552103082], [-77.39505776345638, 34.66769637096204], [-77.39500564491465, 34.667713323930585], [-77.39499064169458, 34.667691483540395], [-77.3947137572558, 34.66761503559933], [-77.39469458612268, 34.66759180596293], [-77.3944666069333, 34.667532362338356], [-77.39441300955943, 34.66754732789649], [-77.39433492083968, 34.66751865778498], [-77.39392497896239, 34.66739427195668], [-77.3938269906301, 34.667358501320365], [-77.39376960658521, 34.667308123846055], [-77.39361250744994, 34.66725704227829], [-77.39354261352315, 34.667234297952874], [-77.39346991177344, 34.66720996207867], [-77.39332568813437, 34.667161796493176], [-77.39324300922034, 34.6671626486211], [-77.39313838981712, 34.667125073652684], [-77.39276132049793, 34.66698647415774], [-77.3926635111567, 34.66695132946328], [-77.39260559011927, 34.666900975702596], [-77.39243938663236, 34.66683374786029], [-77.39238253117091, 34.666815409870566], [-77.39228581191465, 34.66681118799153], [-77.39219206060085, 34.66680313830483], [-77.39205354030156, 34.66684517980238], [-77.39187246037974, 34.66686054658289], [-77.39180122433508, 34.66691184611781], [-77.39154142627893, 34.66702420658727], [-77.39147172741187, 34.66712095685416], [-77.39134625314534, 34.66707486309713], [-77.39121605468736, 34.66703417735607], [-77.39076495236405, 34.66686977248594], [-77.39028153809382, 34.6666696831134], [-77.39018823329971, 34.666648878077574], [-77.38997898436884, 34.666657476145936], [-77.38951778740454, 34.66675141044547], [-77.38942730392014, 34.66676831695588], [-77.38922184479146, 34.66677105260608], [-77.38897790835117, 34.66678116475191], [-77.38886334180611, 34.66679872296142], [-77.38877471277324, 34.66675894957703], [-77.38835260072172, 34.666735461764134], [-77.38829877854177, 34.6667312721523], [-77.38828411515186, 34.66673274299476], [-77.38826586048471, 34.66673246442851], [-77.38769258881969, 34.666709200411105], [-77.38729109505205, 34.66671890674742], [-77.38708743155257, 34.66673268641617], [-77.38682715798612, 34.6666819831414], [-77.38676416176123, 34.666677781112455], [-77.38648803176045, 34.66673630332498], [-77.3863601753321, 34.66664740246195], [-77.38622420103046, 34.66661435693004], [-77.38617910386338, 34.666589731997576], [-77.38600976437023, 34.66657048648263], [-77.38595579644465, 34.66656459617064], [-77.38593949662814, 34.66656442862726], [-77.38591630317198, 34.666564463313925], [-77.38563889379827, 34.66656935129845], [-77.38542931805054, 34.666575842826845], [-77.38533700706832, 34.666578702178086], [-77.38521145630828, 34.666577875516346], [-77.38472696950518, 34.66661901168286], [-77.38445582894816, 34.66654628237026], [-77.38444262082542, 34.66654729030532], [-77.38415980119792, 34.666511423416594], [-77.38387107966517, 34.666377376098986], [-77.38370317741644, 34.6663282744956], [-77.38362146365823, 34.666304377799925], [-77.38338877011641, 34.66617615872135], [-77.38338699493963, 34.66608115148597], [-77.38314348848718, 34.66599008633106], [-77.38311694838197, 34.66599124021314], [-77.38311421630098, 34.66599008701194], [-77.38306408024712, 34.66595092525351], [-77.38259943869635, 34.66570178261554], [-77.38256056444865, 34.66563121710394], [-77.38257145965157, 34.66558138944315], [-77.3823633893212, 34.66548402208784], [-77.38230610571526, 34.66543292519084], [-77.38220370472226, 34.665388286251044], [-77.38210713415032, 34.6653359664588], [-77.38194763469984, 34.665314750289866], [-77.38175974413946, 34.665205666153085], [-77.38163708913439, 34.66515966032463], [-77.38159519398022, 34.665037895306604], [-77.38141649022964, 34.66493528804474], [-77.38137621473112, 34.664771031012734], [-77.38153340048476, 34.66459432412838], [-77.38167231728829, 34.66434394262428], [-77.38172636801087, 34.66423545789236], [-77.3817593465534, 34.66415650179427], [-77.38188536075884, 34.66403695187867], [-77.3820800473907, 34.66380266154367], [-77.38221891162063, 34.66368029207097], [-77.38240357667802, 34.66345133054952], [-77.38246544338122, 34.66333872160296], [-77.38246253982962, 34.663159371693645], [-77.38253783766113, 34.662932252608336], [-77.38288924607873, 34.66222367768263], [-77.38287930245495, 34.6621272276204], [-77.38296938403866, 34.66203859099765], [-77.3830936484226, 34.661932781562825], [-77.38366654566885, 34.66138034993107], [-77.38408373165917, 34.66130354289399], [-77.38413569996573, 34.66146694948627], [-77.38431935515071, 34.661516335169665], [-77.38440321206451, 34.66154321074383], [-77.38483935480724, 34.661510059897424], [-77.3849910608742, 34.661579331147834], [-77.38524341222924, 34.661593100246925], [-77.38534035478642, 34.66158769643886], [-77.38559148612414, 34.6615720591142], [-77.38577392162892, 34.661485214958724], [-77.38586274233272, 34.66141261692905], [-77.38597279401019, 34.66121414490888], [-77.38615643444153, 34.661034855383036], [-77.38644968335993, 34.66067537875732], [-77.38646497235024, 34.66065900817691], [-77.3864606136443, 34.660637665007265], [-77.38643865657956, 34.660278024469015], [-77.38614898662637, 34.660215091803096], [-77.38599535239126, 34.66017860750729], [-77.38559667351626, 34.660138051074284], [-77.38490258686059, 34.65989921485097], [-77.38488426382975, 34.65989159915644], [-77.38487599656143, 34.659888744531514], [-77.38485706615623, 34.65988225457088], [-77.38389818383487, 34.65954732000153], [-77.38348651828102, 34.65934992149826], [-77.38263372666975, 34.658523343337905], [-77.38237721705192, 34.657964597406604], [-77.3822843519399, 34.6577273816584], [-77.38222950998554, 34.657431772778544], [-77.38241137997176, 34.6571928127586], [-77.38239528985237, 34.656919471781116], [-77.38238683162794, 34.65686924709096], [-77.38237256102055, 34.65682457424368], [-77.38228631843083, 34.65657219453811], [-77.38225576951865, 34.65648141629478], [-77.38223984788634, 34.6564674539689], [-77.38208910883499, 34.656237094169754], [-77.38205180937166, 34.65607130947042], [-77.3820139349117, 34.65589687922004], [-77.38191190802976, 34.655439044591574], [-77.38187809915027, 34.6552511764673], [-77.38184516968775, 34.65507255579775], [-77.38183938914322, 34.65443353404923], [-77.38181997141973, 34.65441514037745], [-77.38183236671449, 34.6543936942021], [-77.3818222421217, 34.65426911208899], [-77.38178031659919, 34.65367822529253], [-77.38177740660402, 34.653576962840944], [-77.3819158786359, 34.653137743680794], [-77.38191790620806, 34.65313561419484], [-77.38218550354917, 34.652893737637754], [-77.38229411754914, 34.65282360919957], [-77.38270784820348, 34.65271229778459], [-77.38279609959395, 34.65274588423929], [-77.38294638922753, 34.6527650664887], [-77.38332389059329, 34.6526405632376], [-77.38344086434691, 34.65276760405728], [-77.38348878204455, 34.652888381929706], [-77.3835393091127, 34.65291250711957], [-77.38370256238865, 34.6530393021487], [-77.38399125506916, 34.65327233258941], [-77.38421363740521, 34.653424529155984], [-77.38450499834163, 34.65355183367458], [-77.38434164786355, 34.65322411398226], [-77.38426881587085, 34.65306624988818], [-77.38417469998012, 34.65282507039036], [-77.3840698768056, 34.65271115113019], [-77.38395117682501, 34.65254653761422], [-77.38374488558178, 34.65250944909874], [-77.3837072283857, 34.65250047546442], [-77.3836861400417, 34.65249721175172], [-77.38359562987519, 34.65248273898065], [-77.38341777720088, 34.65245447790755], [-77.38337644021333, 34.652447897187386], [-77.38283458889177, 34.652461098126146], [-77.38273452629716, 34.65244031267254], [-77.38248388001917, 34.65233368411686], [-77.38233080760386, 34.652310334786996], [-77.38206924512096, 34.65231675448757], [-77.38176983885724, 34.65227291199762], [-77.38170972835911, 34.65189820672558], [-77.38172475923602, 34.651625637819684], [-77.38170435621724, 34.65125346995151], [-77.38166536975635, 34.65106027652709], [-77.38143056222714, 34.650736032022515], [-77.38139775804694, 34.650711913423855], [-77.38105180705291, 34.65044532680117], [-77.38086245718347, 34.650326716708946], [-77.38056714939567, 34.65005971544674], [-77.38030178907704, 34.64990105848451], [-77.37982184196497, 34.64923848107411], [-77.37950018104115, 34.64882607876058], [-77.37946717806312, 34.64879222164745], [-77.37943548526182, 34.648779507648186], [-77.37900783390785, 34.64855342692301], [-77.37873206882382, 34.648466444291], [-77.3781543593927, 34.64794660964218], [-77.37795946857452, 34.647809897450664], [-77.37774297646955, 34.64761277937557], [-77.37733495470485, 34.64743588821558], [-77.37726599331562, 34.64740895927693], [-77.37723679048413, 34.64740113649015], [-77.3771731847112, 34.647379932537945], [-77.3768931049811, 34.64728438907679], [-77.37677175617728, 34.64723933518514], [-77.37658281167188, 34.647162670322075], [-77.37654719127028, 34.64715657344271], [-77.37649953279877, 34.647128793331206], [-77.37628538589809, 34.64705412206045], [-77.3760356690999, 34.64698573110721], [-77.37587045030479, 34.64697583111008], [-77.37578217053434, 34.646902293939114], [-77.37552905372053, 34.646840270025024], [-77.37552275479489, 34.646839151836645], [-77.37524172422681, 34.646824247011146], [-77.37519843681511, 34.64681854580776], [-77.37512365848382, 34.646801886912634], [-77.37488620797173, 34.64685796901841], [-77.37470309295155, 34.64674260301121], [-77.37470242065785, 34.64674239661088], [-77.37456480791842, 34.64685185139081], [-77.37444050185714, 34.64683153665192], [-77.37407214024958, 34.64684390461161], [-77.37393790989292, 34.6469185807443], [-77.37376752464814, 34.64687068012401], [-77.3735122262985, 34.64680443038375], [-77.373219168076, 34.64652920959819], [-77.37310889985983, 34.64645466421932], [-77.37304612723669, 34.646337738508976], [-77.37282647782227, 34.646169039384255], [-77.37273393981336, 34.64604869375796], [-77.3726455526845, 34.64597081508827], [-77.37243856100514, 34.645832556406056], [-77.37226422237634, 34.645830495292856], [-77.3720490552886, 34.64563083378826], [-77.37211795136429, 34.645331689038706], [-77.37211624029328, 34.64519958238357], [-77.37219603869195, 34.645071043177076], [-77.37225893899733, 34.644940469644155], [-77.37231089707686, 34.64484470413878], [-77.37235957391087, 34.64474410594156], [-77.3723161855839, 34.64457856256769], [-77.37219197372502, 34.64434514250509], [-77.37210442722777, 34.64398506662159], [-77.37210523997382, 34.64393505779388], [-77.37216301364847, 34.643733122700404], [-77.37232047616332, 34.643061432445165], [-77.37234756052048, 34.64287790780007], [-77.37229176121146, 34.64232903771099], [-77.37228068743786, 34.64222287951959], [-77.37225056898272, 34.64212041080525], [-77.37204923302923, 34.64166068063448], [-77.37200029460755, 34.64141741545665], [-77.37181966462224, 34.64116859111839], [-77.37175793364463, 34.6410889778325], [-77.37167876035709, 34.641039621464735], [-77.37141158559244, 34.64073181467916], [-77.3713651577451, 34.64071836867884], [-77.3712994505396, 34.64066977202905], [-77.3712603348351, 34.64052947080592], [-77.37114749250803, 34.64026771885252], [-77.37107261468827, 34.64020273686435], [-77.37115103381873, 34.63984265106606], [-77.37118055092313, 34.639605610232124], [-77.37139686358532, 34.639269363536], [-77.37170963833432, 34.63924987363003], [-77.37197032317962, 34.638875571896136], [-77.3721856535181, 34.63869393872153], [-77.37228629369481, 34.63872170357416], [-77.37257993884198, 34.63874288008658], [-77.37287514003481, 34.63863854869817], [-77.37297427355938, 34.638633121553354], [-77.37303101442478, 34.63866173851864], [-77.37323925415706, 34.63855358775464], [-77.37336865224566, 34.63837507522818], [-77.37344347225039, 34.63831943521621], [-77.37376307723589, 34.63795429207182], [-77.37397191093575, 34.637963100632945], [-77.37431615834237, 34.63794225450147], [-77.37455170152089, 34.6378488143543], [-77.3749290299987, 34.638043173771656], [-77.37494594277207, 34.63804126819045], [-77.3749640010244, 34.638039371024234], [-77.37514309754562, 34.63801923148258], [-77.37531147405844, 34.63800087233686], [-77.37534025196143, 34.637998044017344], [-77.3756212477895, 34.63792527401884], [-77.37572065639132, 34.637895968511955], [-77.37573458091845, 34.6378814199146], [-77.37575161809099, 34.63788815153431], [-77.37607022034466, 34.6377974296601], [-77.37612890438308, 34.63778071930049], [-77.37622603984198, 34.63773359406551], [-77.3763717006077, 34.63765402849667], [-77.3765232610192, 34.63755184706322], [-77.37686420827522, 34.63732169822601], [-77.37687458510287, 34.63727385610771], [-77.37691763073613, 34.637264580349736], [-77.3769667541079, 34.637254036961735], [-77.37705675157389, 34.637293965958335], [-77.37761709136919, 34.63730921327987], [-77.37770619532074, 34.63734900165184], [-77.37787622611071, 34.637417393681424], [-77.37799253015766, 34.63746752916093], [-77.37810044942363, 34.637506842873556], [-77.37815047052388, 34.637507132726526], [-77.37827078173737, 34.637543664108975], [-77.37849472262516, 34.6375920739623], [-77.3787597526976, 34.637612412680724], [-77.3790459773427, 34.63785656366652], [-77.37916881626597, 34.637962059365826], [-77.37928318470959, 34.6381333839779], [-77.37940188948997, 34.63822985788078], [-77.37953482754584, 34.638364254704065], [-77.37954410359055, 34.63842165325142], [-77.37967739467811, 34.638513046214925], [-77.37977135484802, 34.63850002968094], [-77.3800588767613, 34.63854598819199], [-77.38007168796189, 34.63853581197239], [-77.38009230456444, 34.638532766411366], [-77.3808509807994, 34.638435630381494], [-77.38086030772217, 34.638428161109985], [-77.38090953921423, 34.638437235374106], [-77.38156864789649, 34.63842869552], [-77.38164890091286, 34.638439233135315], [-77.38220291732245, 34.638250899597374], [-77.38269164344848, 34.637604841888674], [-77.38301349783974, 34.63666512972361], [-77.38296987805028, 34.63644214392775], [-77.38243787967069, 34.63647940201888], [-77.38240370653804, 34.63648692232335], [-77.38191947956501, 34.63659348226176], [-77.38170388830883, 34.63668336479442], [-77.38164926242649, 34.63667671069295], [-77.38163123415468, 34.636654428137454], [-77.38161128264099, 34.63663788511362], [-77.38125501459221, 34.63647955557341], [-77.38106293085545, 34.63649914885271], [-77.38086073998487, 34.63641525058094], [-77.38060938100365, 34.63620380681337], [-77.38034527699331, 34.635971145279896], [-77.38019622844628, 34.635859159756244], [-77.38007230801753, 34.63577266908028], [-77.37955207819144, 34.63579645568238], [-77.37940206632453, 34.63525789595214], [-77.37936318679002, 34.63517809580725], [-77.37928402654455, 34.634542701150885], [-77.37926216376118, 34.6344524896853], [-77.37926161533628, 34.634429003976905], [-77.37926210952486, 34.63440529745429], [-77.37925505348873, 34.6336122596029], [-77.3792235190841, 34.6335853671224], [-77.3792373565749, 34.633532861968625], [-77.37893849893626, 34.63314972666472], [-77.37889011244506, 34.633025631864754], [-77.37879905441471, 34.63289547524798], [-77.37855665067143, 34.632832306133494], [-77.37853230999193, 34.632796600918425], [-77.37849591529977, 34.6327194507989], [-77.37845931893726, 34.63280694184233], [-77.37821593691119, 34.63288138450774], [-77.37779745608375, 34.63303875605872], [-77.37770726242705, 34.633150790593845], [-77.37756316034779, 34.633130588595414], [-77.37754375732263, 34.63297820740448], [-77.37705956709097, 34.63289634936332], [-77.37691877164268, 34.63293897081867], [-77.37670617383704, 34.63286990009263], [-77.37635163083364, 34.63291151010869], [-77.37623689751081, 34.6327418797396], [-77.3761302879317, 34.632715107591444], [-77.37603828137341, 34.63267139836144], [-77.37583274070892, 34.63269594008089], [-77.37573652705059, 34.63238983834955], [-77.37573621322015, 34.63238943150934], [-77.37573610744738, 34.63238917136056], [-77.37549023131788, 34.63226510136599], [-77.37543339093355, 34.63168229551348], [-77.3753891853652, 34.6315902911615], [-77.37537579904925, 34.63155590328054], [-77.37534210940024, 34.63143422203998], [-77.37521802275226, 34.63119038217877], [-77.37523227657678, 34.63106994469419], [-77.37518971326134, 34.63093415978352], [-77.37512561331215, 34.63077913098041], [-77.37494812109156, 34.63047880077905], [-77.37486818313475, 34.630477727434716], [-77.37487273464318, 34.63039099087774], [-77.37478388732643, 34.63022685225987], [-77.3747568768043, 34.63018914952109], [-77.37458946255134, 34.630007227694975], [-77.37457249481182, 34.62998975972899], [-77.37455400932569, 34.62997297803676], [-77.37437307679124, 34.62980872213256], [-77.3742552995281, 34.62973360852693], [-77.37415983349318, 34.62969640876041], [-77.37411613433864, 34.62969789222245], [-77.37376562231691, 34.629544122879295], [-77.37351304556796, 34.6295851012855], [-77.37351308304761, 34.62931312226258], [-77.37346100810504, 34.628992411374774], [-77.3734537131355, 34.628897113267136], [-77.37344979166585, 34.628813467267136], [-77.37337168156041, 34.628525799836005], [-77.3733587419874, 34.62848623085892], [-77.37308175609293, 34.62841380998276], [-77.37297747793471, 34.62837160242165], [-77.37239457605249, 34.62777595849694], [-77.37297787835607, 34.62710597903883], [-77.37318959191322, 34.62704032137955], [-77.37376643797, 34.62688341911507], [-77.3739255122342, 34.62687767404576], [-77.37416069576086, 34.62683923534594], [-77.37434479128325, 34.626872283524804], [-77.37436865759486, 34.62686651088498], [-77.3745549404133, 34.62683749790381], [-77.37457398787498, 34.62682525676845], [-77.37470123464597, 34.62675216674903], [-77.37475210506085, 34.62669345109678], [-77.37488115534498, 34.62656873721499], [-77.3748925595826, 34.626506010461384], [-77.37494929984096, 34.6264444449437], [-77.37505145587124, 34.62622959321675], [-77.375343636234, 34.62611823327428], [-77.37539245715129, 34.62607053513544], [-77.37548740756134, 34.625787024238456], [-77.3760704793005, 34.62554831641483], [-77.3761071339911, 34.62551595053876], [-77.37613228760962, 34.62550919585577], [-77.37615401454426, 34.62551288513814], [-77.37637915362711, 34.625345099839876], [-77.37652660958976, 34.625202414685134], [-77.37660690866976, 34.62513294357775], [-77.3767689532623, 34.625023147208964], [-77.37692093856084, 34.6248590500789], [-77.37710617428752, 34.62477511138488], [-77.37712114843015, 34.62476343776663], [-77.37731523646556, 34.62462005583002], [-77.37749610725271, 34.624493841640955], [-77.37754255252595, 34.62430730391632], [-77.37770962060802, 34.62404342713773], [-77.3782696771002, 34.62377932943071], [-77.3784981942299, 34.62359537608266], [-77.37860513279398, 34.62360012409649], [-77.37905219739372, 34.62342055092757], [-77.3792867175912, 34.62331811634556], [-77.37953598760909, 34.62277003545087], [-77.38007534336653, 34.6225810725137], [-77.38021842417216, 34.62255749364164], [-77.38046958742798, 34.62248871153608], [-77.38077170486062, 34.62242290091401], [-77.38086382994886, 34.622399152804675], [-77.381042409112, 34.62247702901307], [-77.38165224546292, 34.62252918207867], [-77.38194672085532, 34.62268634014235], [-77.3821952234234, 34.62270338936255], [-77.38244068455238, 34.622555314660325], [-77.38265694511307, 34.62266824741368], [-77.382942239353, 34.622551096370756], [-77.3832291386739, 34.62250581100423], [-77.38358473406613, 34.62234291945567], [-77.38359855092264, 34.62231416937088], [-77.3836460918534, 34.62230963702573], [-77.38401765317877, 34.62212823662103], [-77.38410008421035, 34.622179867395715], [-77.38428920552201, 34.62210928610179], [-77.38441188631882, 34.622055961780845], [-77.38447384165157, 34.622002509153745], [-77.38451330907446, 34.62189373681688], [-77.38461035816101, 34.62177055255975], [-77.38463753628184, 34.621584998279836], [-77.38480623661444, 34.62132416529177], [-77.38493998039192, 34.621017899450436], [-77.38520053016667, 34.62087874560845], [-77.38527728800578, 34.62082530552618], [-77.38549420415633, 34.62068572691332], [-77.38559478873246, 34.620615091226156], [-77.38584671519037, 34.62047193875299], [-77.38598904008016, 34.62037973127602], [-77.38604369353465, 34.62034913832892], [-77.38618742524174, 34.620269566199646], [-77.38632822150846, 34.620189973139816], [-77.38638329127618, 34.62013127505526], [-77.3865862839641, 34.62000611451438], [-77.38677752722005, 34.619965178706124], [-77.38708241315749, 34.61981222898442], [-77.38717176579172, 34.61977099480049], [-77.38723053169788, 34.61975794223761], [-77.38756598235273, 34.619713625039395], [-77.38788737318274, 34.61959997498013], [-77.387935084686, 34.61956603602226], [-77.3879602155186, 34.61953532973242], [-77.38799658191064, 34.61954506426245], [-77.38835443300846, 34.61945814194677], [-77.38851959994449, 34.61950884140218], [-77.38865219987323, 34.61959357427383], [-77.38874859500177, 34.619793169189094], [-77.38892036380908, 34.62011516261204], [-77.3889875078784, 34.6202905270826], [-77.38894696815171, 34.62051012176609], [-77.38874841510638, 34.62115373141687], [-77.38874534319213, 34.6211712647736], [-77.3887435141655, 34.62117483437523], [-77.38833164138637, 34.621634546545415], [-77.38828109980003, 34.621666057419446], [-77.38795987187625, 34.621964758344106], [-77.38791040856762, 34.622090805115604], [-77.3878529357713, 34.622152341312244], [-77.38780486346477, 34.62232615603028], [-77.3879597933902, 34.62252423152256], [-77.38820920467111, 34.62268148808764], [-77.38836711661082, 34.62292735986911], [-77.38854995726203, 34.6231144608608], [-77.38853284078087, 34.623328039480825], [-77.38874812384142, 34.62337906024081], [-77.38886685383133, 34.62340776508035], [-77.38899165153234, 34.623424193233575], [-77.38908645931711, 34.623460520793294], [-77.38914233695829, 34.62347315061087], [-77.38929193211044, 34.62348207530425], [-77.38940140099571, 34.62348184236538], [-77.38939097739777, 34.62336114514246], [-77.38938233717552, 34.62320558586466], [-77.38933949201339, 34.623128543065945], [-77.38927958524039, 34.62307263907795], [-77.38919267702087, 34.62286249030061], [-77.38916500643445, 34.62281234666528], [-77.38914242686056, 34.622757083526665], [-77.38902405594001, 34.62253560993795], [-77.38888812271809, 34.62242769169255], [-77.38889782606361, 34.62216278084513], [-77.38885865525589, 34.62200737165598], [-77.38891145354995, 34.62182407497242], [-77.38892068702435, 34.62157386234443], [-77.38903431806304, 34.62144087090245], [-77.38914261010919, 34.62130651188913], [-77.38934216745074, 34.621298183067815], [-77.38953684001936, 34.621184653327504], [-77.389622031718, 34.62113993854598], [-77.38973395860238, 34.62108957180689], [-77.38992924767199, 34.62100587395378], [-77.38993107548937, 34.62100503804201], [-77.38993458460727, 34.621003136130156], [-77.38993779428675, 34.62099543846835], [-77.39005083809583, 34.62077409285587], [-77.38998858539003, 34.62063267433904], [-77.38997646884492, 34.62057252985443], [-77.3899761643325, 34.620524073497116], [-77.3897513600545, 34.62041135064941], [-77.38953694964896, 34.62028985292124], [-77.389451093774, 34.62031616267452], [-77.38941982504949, 34.62022820665302], [-77.38946797630952, 34.62014696119404], [-77.3895369720139, 34.62010803875941], [-77.38965838535887, 34.62006305813249], [-77.39003246596357, 34.619824369522675], [-77.39001139124139, 34.61963203158984], [-77.39008307455545, 34.61928345659538], [-77.39004630031616, 34.618988032700514], [-77.39032556510678, 34.61857726296816], [-77.39038469060966, 34.61845450237201], [-77.39101707653535, 34.618404042261254], [-77.39111398926025, 34.618382321318045], [-77.39121856198878, 34.61838324638673], [-77.3917725538407, 34.61833058951901], [-77.39190237746769, 34.618521864798396], [-77.39241770072043, 34.61839185336337], [-77.39268347141625, 34.618908546227274], [-77.39269074458322, 34.61893254521557], [-77.39310172879382, 34.61925470349252], [-77.39347915238426, 34.61891076844541], [-77.39352659650844, 34.618838069222896], [-77.39358487569513, 34.61877857294325], [-77.39390896347908, 34.618345578840064], [-77.39394711569915, 34.61830176967294], [-77.39407671491695, 34.618077474631036], [-77.39407535572975, 34.618065779491474], [-77.39406294410318, 34.618064627581276], [-77.39387342147015, 34.617991578727526], [-77.39377391620121, 34.61800934448986], [-77.39368240594679, 34.617915369478055], [-77.39354900469202, 34.617859457640456], [-77.39347923577952, 34.61782625126612], [-77.39310566633007, 34.6175517677467], [-77.39308506143789, 34.617540528418154], [-77.39298501163563, 34.61748359464276], [-77.39288797150908, 34.617442262078455], [-77.39286574258611, 34.61742021479344], [-77.3928255002294, 34.61740207356351], [-77.39269088211731, 34.617343065051564], [-77.39257968182214, 34.61734500098515], [-77.39234323983686, 34.61725932424959], [-77.39229669519197, 34.617248112452415], [-77.39194751561442, 34.61726789435677], [-77.39190249913773, 34.617256233495176], [-77.39171524024236, 34.617127002818464], [-77.39168976840199, 34.61712440676804], [-77.39150830289321, 34.6172646954277], [-77.39123109698606, 34.61729366520971], [-77.39111409934091, 34.617340659200245], [-77.3910227450916, 34.6173513197063], [-77.39071988848696, 34.617475096952525], [-77.39070184939911, 34.61749597611075], [-77.39046249060297, 34.61767784785178], [-77.39032565253763, 34.61781601629842], [-77.39009809084413, 34.617828110010876], [-77.38993144525966, 34.61789049603716], [-77.38969708694695, 34.61781297282198], [-77.38953725463641, 34.617825048645855], [-77.38939440839927, 34.61783831192939], [-77.3893966835405, 34.617684135131086], [-77.38916497283462, 34.6173165047873], [-77.38914859083795, 34.61729533206455], [-77.38914834911422, 34.61728974071554], [-77.38915555963708, 34.61686975962071], [-77.38914320810645, 34.61665371718669], [-77.38913021248312, 34.61646286956942], [-77.38913021434301, 34.61644884554037], [-77.38913021620503, 34.61643482151088], [-77.38913854070216, 34.61602819232879], [-77.38913379232655, 34.61602376190648], [-77.38913854206281, 34.61601796226801], [-77.38914329545584, 34.61598400228813], [-77.38917585387135, 34.61562814784585], [-77.38921099231521, 34.61558806483729], [-77.38938835248462, 34.61540179045895], [-77.38953757798804, 34.61524962328534], [-77.38960580272385, 34.615180053561424], [-77.38979469302971, 34.6150793481887], [-77.39032602469445, 34.614616977491565], [-77.39053372670581, 34.61474907309231], [-77.39088029212411, 34.6146706988975], [-77.39111441203951, 34.61442118756387], [-77.39145721591088, 34.614470421571134], [-77.39150859091139, 34.61445135597839], [-77.3915799258391, 34.61447423241479], [-77.3919027657269, 34.6145254648636], [-77.39205230861963, 34.61459277746388], [-77.39222284997632, 34.61464946813827], [-77.39229693464179, 34.6146689390764], [-77.39232353481864, 34.61468609594057], [-77.39247990632498, 34.61467699395953], [-77.39249403526463, 34.614569240384085], [-77.39251417984129, 34.61449666509248], [-77.3925082971668, 34.61446047230029], [-77.39247933661713, 34.61426771382389], [-77.39253277871018, 34.61400604775558], [-77.39255439641178, 34.6138323213042], [-77.39261518280348, 34.613741677805336], [-77.39269121000189, 34.613636023143236], [-77.39290220459345, 34.61335760017408], [-77.39294073368578, 34.613196195466905], [-77.39322914857851, 34.61315565400879], [-77.39347961170503, 34.61306856854222], [-77.39368358465104, 34.61304005534476], [-77.39387379056868, 34.613019741282386], [-77.39397728183297, 34.61309109769978], [-77.39426189874712, 34.61315500807169], [-77.3942679557959, 34.6131549515922], [-77.3942732647644, 34.61315417483794], [-77.39429035760097, 34.6131574282173], [-77.39460611992405, 34.61317222167017], [-77.39466212771069, 34.613208175073666], [-77.39482589937461, 34.613256602054676], [-77.39489338200859, 34.61324594840615], [-77.3950563025854, 34.61322022764569], [-77.39529294824992, 34.61318252294297], [-77.39545048176332, 34.613157338902944], [-77.39560350172198, 34.61313287494823], [-77.39584466437348, 34.613016998781376], [-77.39626915355866, 34.61290470097042], [-77.39663302134191, 34.61282884872148], [-77.39689324917254, 34.61292631610143], [-77.39702719256739, 34.6128851489868], [-77.39714456467578, 34.6128722215801], [-77.39722428015685, 34.61286348714138], [-77.39736319755411, 34.61277692301408], [-77.39742137096667, 34.612742714741465], [-77.39749557342545, 34.61269517148354], [-77.39750008958778, 34.612354723372135], [-77.39748951050663, 34.61227147356752], [-77.39751070679716, 34.612172210516015], [-77.39768770765725, 34.61168058335454], [-77.39800685448989, 34.61156624958784], [-77.3982097464088, 34.61153505251788], [-77.39833352714635, 34.61143391426045], [-77.39899808244748, 34.611399824538125], [-77.39927645320942, 34.611464420253895], [-77.39939224784399, 34.61147083783287], [-77.3994480535948, 34.61150428323374], [-77.39957480903831, 34.61154610955686], [-77.3997864134247, 34.611615407273675], [-77.39999175841811, 34.61168934972382], [-77.40018058026054, 34.61180064559101], [-77.40022085044583, 34.611834111485074], [-77.40029234660435, 34.611867174199276], [-77.40048871216874, 34.61193151928425], [-77.40057474863512, 34.61194029132132], [-77.4007409057415, 34.61198143881414], [-77.40077183316025, 34.611990021330364], [-77.40079046293805, 34.61198753575799], [-77.40096891799124, 34.612047236510925], [-77.40111277137231, 34.61201844125856], [-77.40112485582327, 34.61217164872437], [-77.40136309072173, 34.61233680320473], [-77.40148610092443, 34.61241161000463], [-77.40160976610889, 34.61252626642508], [-77.40175726896102, 34.6127780109853], [-77.40186101357173, 34.61280284714783], [-77.40215144420765, 34.61290759448777], [-77.40238859777277, 34.61300760941388], [-77.40279844746776, 34.613203920368136], [-77.402896862308, 34.613235970899176], [-77.40293980417889, 34.61335223434631], [-77.40337590201716, 34.61350002690132], [-77.40372815603138, 34.61341244354128], [-77.40403255865031, 34.61354713653651], [-77.40412233715017, 34.61354690685495], [-77.40434981304351, 34.61364967171402], [-77.40451652209579, 34.61373057812977], [-77.40457333663882, 34.6137357849987], [-77.40465106507892, 34.613785765296655], [-77.40503358408843, 34.61402280092908], [-77.4053049036836, 34.614203993519766], [-77.40559477992305, 34.61418650798484], [-77.40571737110193, 34.614481052596346], [-77.40609329521673, 34.614693944941315], [-77.40645863613186, 34.61476759279026], [-77.4064874819089, 34.61477667860191], [-77.40650375231678, 34.614774626383216], [-77.40688166984883, 34.614864633475754], [-77.4072426090182, 34.61511010346934], [-77.40750452179765, 34.615250615581225], [-77.40767007490874, 34.615336788014275], [-77.40796241691763, 34.61554051569445], [-77.40839145181181, 34.61579346069875], [-77.40843002070002, 34.61581855833357], [-77.40845849093343, 34.61583086893367], [-77.40852953265171, 34.6158500494533], [-77.40885269311656, 34.61599006090495], [-77.40895220926342, 34.61602992340916], [-77.40920585144188, 34.61605630147898], [-77.40924688493408, 34.616042706526585], [-77.40951485790761, 34.61605590131313], [-77.40962434679487, 34.61605811427109], [-77.40964107483454, 34.61607503558037], [-77.40989130164999, 34.6164261467342], [-77.40987329205021, 34.61660327003522], [-77.40982146244895, 34.61686080555397], [-77.40977995995024, 34.61701627001728], [-77.40979318501067, 34.61712576069055], [-77.40979473335125, 34.61728924222694], [-77.40983832804878, 34.617427521213145], [-77.40985332309789, 34.61747693055969], [-77.40986083688296, 34.61749199068376], [-77.40987582073274, 34.61753019753526], [-77.40994425987554, 34.61769223925204], [-77.4100354827332, 34.61790822396494], [-77.41014902186704, 34.617964980351346], [-77.4102003876055, 34.61807985007216], [-77.41017511862289, 34.618233852867164], [-77.41019532938608, 34.61833304818228], [-77.41036304734237, 34.618480951498306], [-77.41037109555603, 34.61854297300828], [-77.41073330497147, 34.61885208847363], [-77.410784529069, 34.6188872087235], [-77.41082400218426, 34.61889629534621], [-77.41136795793348, 34.61902378009206], [-77.41161243034375, 34.619104738260816], [-77.41185015990305, 34.619284014366684], [-77.41236439921529, 34.619465807703754], [-77.41239485637544, 34.61946790485757], [-77.41240088552482, 34.61946850334822], [-77.41241124153456, 34.619470199797775], [-77.41279509251115, 34.61950194207103], [-77.41308523579471, 34.61947382405183], [-77.41318929283477, 34.61949230510125], [-77.41350553150409, 34.61964166078605], [-77.41363889456743, 34.61964676414525], [-77.4138200783433, 34.61968025001751], [-77.41395921267683, 34.619680106414954], [-77.41397772726697, 34.61967508692509], [-77.41427591383783, 34.61961444321166], [-77.41435855964897, 34.61958812785369], [-77.41437191473887, 34.61958956158837], [-77.41437806329813, 34.61959307448814], [-77.41471402798118, 34.61949510830678], [-77.41476609946055, 34.61949361805104], [-77.41481217989178, 34.61948738975687], [-77.41492335874543, 34.61952097148968], [-77.41511732516805, 34.61953926461621], [-77.41516031086249, 34.61954775836798], [-77.41527512413616, 34.619593837596206], [-77.41555452897089, 34.619635033049576], [-77.41570129561747, 34.61967516838389], [-77.4157732127735, 34.6198228542106], [-77.41590211729873, 34.62017850543837], [-77.4159163853747, 34.620261733642046], [-77.41594886876807, 34.6203452617203], [-77.41602841974088, 34.620549532875096], [-77.41615898686379, 34.6206163194587], [-77.41626620126105, 34.62068370791408], [-77.41634316914804, 34.620822758079065], [-77.416622769123, 34.6208504942719], [-77.41681918303541, 34.6208574767499], [-77.41713156087566, 34.62071249545451], [-77.41741812533756, 34.62074315430515], [-77.41761188330338, 34.62073837503663], [-77.41791996329233, 34.62066228955082], [-77.41820635981927, 34.62086144498586], [-77.4183142187373, 34.62088263985387], [-77.41848521977707, 34.62094543391686], [-77.4185333384325, 34.62093405636701], [-77.41870840997538, 34.62081217799689], [-77.41902953874197, 34.62070509357598], [-77.41917757340859, 34.62068579820745], [-77.41949675689864, 34.62053050295798], [-77.41988384496273, 34.62051069846673], [-77.42028515487173, 34.62047882733884], [-77.42075296152088, 34.62045680316673], [-77.4210735490089, 34.62041720304005], [-77.42127890621286, 34.620504991653306], [-77.42179122103911, 34.620652158998], [-77.4218322062535, 34.620678358704], [-77.42186203062289, 34.62069079176599], [-77.42191371364072, 34.62069013361517], [-77.42217756314102, 34.620681092435106], [-77.42225621953907, 34.62062875362139], [-77.422461752916, 34.6205553124719], [-77.4226014557161, 34.6204824345096], [-77.42265037438762, 34.62044516591314], [-77.42269690033751, 34.62047124450923], [-77.42292240495709, 34.62045056645914], [-77.42365368500184, 34.62035170368506], [-77.42431095239803, 34.62032708887162], [-77.4247661513697, 34.62057451175548], [-77.42483521117538, 34.620600525513716], [-77.42485193989087, 34.620639261339534], [-77.42536416130362, 34.6208386367039], [-77.42538217818051, 34.62084621348409], [-77.42540600653251, 34.62085062126836], [-77.42554220998763, 34.620921024394434], [-77.42589789397786, 34.621079696361136], [-77.42592860721082, 34.62109255961597], [-77.42596490991366, 34.62111275622091], [-77.42647990952656, 34.62133295196571], [-77.42658143778502, 34.62144454252218], [-77.42681481544746, 34.62155689236981], [-77.42696239238722, 34.62165744027103], [-77.42701626814976, 34.62186872256437], [-77.42725762835101, 34.622141016010325], [-77.42713810776662, 34.62220323831927], [-77.42726449901066, 34.62220234609513], [-77.4273164268624, 34.62220934427463], [-77.42762318288976, 34.62243425072661], [-77.42770428916711, 34.6225790107491], [-77.4277050890208, 34.622607385382054], [-77.42753312628913, 34.62282914655471], [-77.42752000002294, 34.62285232356324], [-77.42749605012023, 34.62286594920071], [-77.4272828609171, 34.623269692515635], [-77.42720429436416, 34.62336126899912], [-77.42716122797195, 34.6235639931825], [-77.42713461875408, 34.62368116700118], [-77.42719340986272, 34.623976920105335], [-77.42716161054427, 34.62404270942993], [-77.42712156347383, 34.62420514745305], [-77.42775861332895, 34.624241830867575], [-77.42785361113943, 34.62422470209467], [-77.42787119107675, 34.62423722174606], [-77.42833885302574, 34.62437788253366], [-77.4284509748208, 34.62440883150501], [-77.42845391995903, 34.62441293885206], [-77.42902044165946, 34.62459421296337], [-77.42905173241296, 34.6245888134275], [-77.4290789875968, 34.62460405798146], [-77.42914373192866, 34.62465962150534], [-77.4295662465928, 34.62487418401667], [-77.4299608967626, 34.625091220271145], [-77.42996554819265, 34.625300345569464], [-77.42996905806376, 34.62545813187221], [-77.42997152063083, 34.62556882499839], [-77.42985233353099, 34.625712979105906], [-77.42953226146577, 34.62595183810602], [-77.42945303748535, 34.626006797673114], [-77.42941452831334, 34.62603459884903], [-77.42932378925047, 34.626084563642316], [-77.42929307418096, 34.626105670140674], [-77.42929554864762, 34.62611907274306], [-77.42933099847316, 34.6261938075061], [-77.42933254650279, 34.62627435000583], [-77.42939917331485, 34.62635899865036], [-77.429525622027, 34.62665165791098], [-77.4295408929016, 34.62668785103399], [-77.42956025255359, 34.62670971544825], [-77.42963449499396, 34.6268385513433], [-77.42972036347234, 34.62697111803484], [-77.42972960407532, 34.62700331320108], [-77.42975385189483, 34.62704126956496], [-77.42985468912865, 34.627264030184534], [-77.42990313287358, 34.6273231013889], [-77.42993459657819, 34.62741425907279], [-77.42982538132773, 34.627536204385635], [-77.42971270489971, 34.62774660144551], [-77.42962900287749, 34.62792675034127], [-77.42960966874654, 34.62802048812399], [-77.4296846155311, 34.62812384204029], [-77.42979242218061, 34.62825422529433], [-77.42993398375603, 34.62865294925326], [-77.43001834008578, 34.62876721911754], [-77.43020783832375, 34.62893397015735], [-77.43050947491247, 34.62920624581872], [-77.43060780235037, 34.62933772297815], [-77.43090253377119, 34.62955111998383], [-77.43097540640154, 34.62955101727696], [-77.43147813553284, 34.62973301569841], [-77.43157775594527, 34.62972909144767], [-77.43186568601236, 34.62971774825547], [-77.43251630710469, 34.6296837340099], [-77.43252252771805, 34.62955892094828], [-77.43252523805472, 34.629529795756454], [-77.43253413779998, 34.62947453880403], [-77.4325495837416, 34.6292586677754], [-77.43256546606649, 34.629149092242706], [-77.43257927886994, 34.6291141994451], [-77.43257495475194, 34.62896758797079], [-77.43257104899081, 34.62896288149424], [-77.4325651188813, 34.62895438262745], [-77.4324495967289, 34.62881287252529], [-77.43240084166747, 34.628723284196745], [-77.4321564356564, 34.628368666878266], [-77.43195594154292, 34.62835281717245], [-77.43184301566423, 34.62824725356826], [-77.4319188586319, 34.62750047168939], [-77.43191709034365, 34.62748868979054], [-77.43191709135405, 34.62748615769851], [-77.43183641895752, 34.626772178873104], [-77.43179015263854, 34.626205366468355], [-77.43179779434033, 34.626044708132746], [-77.43172967706305, 34.62588691527211], [-77.43144129369134, 34.625755204093736], [-77.43101250064674, 34.625530020798905], [-77.43096907515209, 34.6252985353535], [-77.43086377690474, 34.6252031660988], [-77.4308084026821, 34.625184486127054], [-77.43072355824899, 34.625053744461155], [-77.43063427942734, 34.624940209004286], [-77.43062505632297, 34.624901957242855], [-77.4306113874782, 34.624863613829795], [-77.4304847482687, 34.62466588072566], [-77.43035425789913, 34.62460988915716], [-77.43030948201564, 34.62444821413412], [-77.43027123724184, 34.62426431044417], [-77.43036239037751, 34.62415700765159], [-77.43032870175757, 34.62394245932678], [-77.43022803071514, 34.623907386047414], [-77.43015939481954, 34.623776227166175], [-77.43001244269644, 34.62359958472079], [-77.42997349458196, 34.62346241969092], [-77.42979212261551, 34.62302821663205], [-77.42982492920625, 34.62291454754706], [-77.42978903168483, 34.62277373163238], [-77.42952302489822, 34.62258760348189], [-77.42934118714984, 34.622406905646116], [-77.4293165921795, 34.62232093482183], [-77.42929082935828, 34.62223328888413], [-77.42918862283096, 34.62198816586055], [-77.4292547681517, 34.62160708769849], [-77.42925508803467, 34.621601322280256], [-77.42925594227256, 34.6215997464904], [-77.42926385496537, 34.62158731034484], [-77.42950994365458, 34.62107107801943], [-77.42962239409212, 34.62102903228813], [-77.4299188329912, 34.62078690075365], [-77.43005122009332, 34.620674687934944], [-77.43007315862042, 34.6206487750228], [-77.43022934458725, 34.62058387898681], [-77.43092906832747, 34.620039851145364], [-77.43124904235441, 34.6200753974411], [-77.43178502244209, 34.62000908956237], [-77.43195096784311, 34.61993154659723], [-77.43206880720356, 34.61998768245702], [-77.43247230756488, 34.61994465575669], [-77.43247999070853, 34.61994344895843], [-77.43248919385522, 34.619939843122495], [-77.43291079157976, 34.619783691562546], [-77.43295087883091, 34.61974288476243], [-77.43310875381638, 34.61963086443073], [-77.43355330400638, 34.61938913816404], [-77.43383122736404, 34.61911728556635], [-77.43431803627382, 34.61906706399954], [-77.43491107151144, 34.619249573154086], [-77.434919132083, 34.61925022684075], [-77.4349375750986, 34.61925420651909], [-77.43547470740447, 34.61935916221548], [-77.43556045613211, 34.61937691200926], [-77.43592776959433, 34.619291054965444], [-77.43597965327083, 34.61928308169466], [-77.43603374907143, 34.619255530723535], [-77.43629313116924, 34.619109210795244], [-77.43641310662653, 34.61894576014426], [-77.43678978405443, 34.61871407250131], [-77.43681125839338, 34.618671115054156], [-77.43660607764865, 34.6180989095325], [-77.43658228188157, 34.61803473219634], [-77.43657758925778, 34.61796989714516], [-77.43665477137425, 34.61790763243042], [-77.4367876269826, 34.617877007527134], [-77.43719978055708, 34.617568225280976], [-77.43758733288178, 34.61747297315186], [-77.43768167094098, 34.61735210577015], [-77.43784084415947, 34.617173157571095], [-77.43796729708119, 34.61694025692444], [-77.43803427341642, 34.616882348045294], [-77.43806544227866, 34.6166323318025], [-77.43836373405836, 34.61646774594182], [-77.4387980222674, 34.61633388974502], [-77.43887667655302, 34.61629682063958], [-77.4393391725121, 34.61618983197061], [-77.43970767120847, 34.61613619539452], [-77.43991574753719, 34.61604104298175], [-77.44031093053317, 34.6158984874438], [-77.44073278003403, 34.61579735112772], [-77.44080342028869, 34.61577697498244], [-77.44091498731888, 34.615771319780556], [-77.44130266253009, 34.61568013633123], [-77.44172206801461, 34.6154617806244], [-77.44172982621672, 34.61543705908624], [-77.44183145568078, 34.61536855687517], [-77.4421941858551, 34.61509570002837], [-77.44292913526326, 34.61548688780785], [-77.4429019291049, 34.61584723728867], [-77.44290994570513, 34.61586161048633], [-77.44290706790011, 34.61588220268436], [-77.442989652628, 34.61608105696116], [-77.44306314947167, 34.6161871810226], [-77.44311608197557, 34.616540963228054], [-77.44311585944367, 34.61654140360758], [-77.44311589565852, 34.61654153033107], [-77.44328078345039, 34.61686363171801], [-77.44338284263635, 34.61712913455217], [-77.44345406215963, 34.61727928254556], [-77.44337975015621, 34.61757391714731], [-77.44397925039632, 34.61777548813782], [-77.44438249478239, 34.61773566064147], [-77.44459105441803, 34.61796706045861], [-77.44470406732337, 34.618256841883635], [-77.44471463278727, 34.61833979911184], [-77.44471558932023, 34.61854467752531], [-77.44473399811588, 34.61866481042483], [-77.44482756458675, 34.61899872693068], [-77.44483293434703, 34.61901360157732], [-77.44484888452114, 34.61903156940662], [-77.44511717532023, 34.619123274818186], [-77.44514402410564, 34.61910945875674], [-77.4453551309611, 34.618960247746095], [-77.44549616991073, 34.61881675135224], [-77.44555911521819, 34.618635291286616], [-77.44603185068709, 34.61846224640979], [-77.44626008692973, 34.61842483268292], [-77.44652745888556, 34.61852269977194], [-77.44660403621621, 34.61867705852708], [-77.44662183485468, 34.61886504429829], [-77.4467535481716, 34.619053220951855], [-77.44690925994523, 34.619218238832374], [-77.44704883791735, 34.61938533575408], [-77.44719708383008, 34.61943952924078], [-77.44718908231944, 34.61951531188316], [-77.4473208535241, 34.619629383800735], [-77.44750425667087, 34.61972119731185], [-77.44761173376885, 34.61997289135897], [-77.44768214562312, 34.62003972936945], [-77.4477104989983, 34.62006736389623], [-77.44780779266858, 34.620236944901094], [-77.44792299021077, 34.62034031035772], [-77.44820443755498, 34.62037784544425], [-77.44830303434124, 34.6206011990583], [-77.44847396339675, 34.62074964508322], [-77.4485860505811, 34.62082565304061], [-77.448664424084, 34.620867406429554], [-77.44889461171239, 34.62104113209754], [-77.44900893007974, 34.621138427565064], [-77.44889147535466, 34.62136660663122], [-77.44918366252739, 34.6214212696007], [-77.44915679248531, 34.621132858747075], [-77.44917000921618, 34.62109249571927], [-77.44920613733484, 34.620981917291466], [-77.44930521419622, 34.62068468425115], [-77.44930840957718, 34.62056650512178], [-77.44936495324833, 34.62029839098305], [-77.44917464739925, 34.61990030746419], [-77.4491594290767, 34.61961848276364], [-77.44926083340701, 34.61931106410956], [-77.44926003355695, 34.619087316749656], [-77.44925359396633, 34.61885311721544], [-77.44928809522142, 34.61870120414345], [-77.44927954543758, 34.618606285422075], [-77.4492706179735, 34.61847900554174], [-77.4491620061384, 34.618462005112264], [-77.4489837165142, 34.618510785522545], [-77.448912890444, 34.61851229572659], [-77.44880105912807, 34.61853080403701], [-77.44846091101948, 34.618781795890655], [-77.4481239513897, 34.61864756330915], [-77.44813110799618, 34.61843468605977], [-77.44809279297051, 34.61828299763637], [-77.44808013273997, 34.61824396567814], [-77.44803024639621, 34.61809419072181], [-77.44796581732648, 34.61792655404071], [-77.44784538250701, 34.6177776487825], [-77.44760332679307, 34.61756993824997], [-77.44753709836243, 34.61753635591208], [-77.44739267095598, 34.6175374829433], [-77.44707016895674, 34.61754293744387], [-77.44686623428387, 34.61744219381313], [-77.4467160388071, 34.61736116508797], [-77.4466113552112, 34.61729663317751], [-77.44642607989806, 34.61711075444697], [-77.44640542662796, 34.61709122966396], [-77.44638793219328, 34.61708546701351], [-77.446383853756, 34.617065646973295], [-77.4462762972451, 34.61679193723719], [-77.44624833848296, 34.61675601627558], [-77.44624226625228, 34.61670640090626], [-77.4461302600147, 34.616513316295695], [-77.44595171836195, 34.616471339598206], [-77.44579261226966, 34.6162393576626], [-77.4457008743116, 34.616173610670835], [-77.44567526293841, 34.6161552553961], [-77.44562853922557, 34.616118029117004], [-77.44473884745672, 34.61570940748473], [-77.44533147172712, 34.61503290298445], [-77.4455011342572, 34.614898543784335], [-77.44626798548624, 34.61461291168748], [-77.44633515037593, 34.61457097472133], [-77.44673840012535, 34.61441080855113], [-77.44676685773348, 34.614392638114495], [-77.44705657532833, 34.614204004859424], [-77.44718048811401, 34.61410524605572], [-77.44757085463604, 34.61379412016286], [-77.44759425209375, 34.61377273832457], [-77.44761208848948, 34.61376138844729], [-77.44766674554205, 34.61372053086792], [-77.44787805205078, 34.61356234004856], [-77.44802516815633, 34.61334989543286], [-77.44805990256566, 34.61331626895351], [-77.44810370131191, 34.61327291667148], [-77.44842753795561, 34.612825504016136], [-77.44842644007345, 34.61279170773398], [-77.44832231642533, 34.61247206306656], [-77.44830770813027, 34.612461625107635], [-77.4480703915836, 34.61231269050514], [-77.44788877866964, 34.612017583320586], [-77.44780301276296, 34.61188163971362], [-77.44784376904585, 34.61167543637217], [-77.44783835584572, 34.61138053539769], [-77.44809994664115, 34.61105845113375], [-77.44823012609297, 34.61089821867266], [-77.44836108026949, 34.61073633074848], [-77.44865426077803, 34.610684480661554], [-77.44915548924668, 34.610757435196724], [-77.44936659830407, 34.61072786098482], [-77.44941147660234, 34.610732497874196], [-77.44951339918333, 34.610727848211866], [-77.44992388754528, 34.61068387554693], [-77.45030893140225, 34.61049001721855], [-77.45039095754949, 34.61046965813398], [-77.45082487128641, 34.61065060314336], [-77.45086876991932, 34.61071985181881], [-77.45106232395273, 34.61095214007179], [-77.45094101545429, 34.61122736634123], [-77.45078504137027, 34.611736598098425], [-77.45081968641352, 34.61175985845836], [-77.45125366039065, 34.61170034005592], [-77.45153510859005, 34.61155582142838], [-77.45166052919767, 34.611479113413694], [-77.45170677153644, 34.61143513344289], [-77.45190489476634, 34.6112816876839], [-77.45221497411885, 34.61105370930152], [-77.45253785324881, 34.61063034439019], [-77.45257030192592, 34.61055863905289], [-77.45259738251862, 34.610514332113134], [-77.45270736575699, 34.61030044929822], [-77.45282680253223, 34.61007963723203], [-77.4528153677453, 34.61002499118273], [-77.4529731978945, 34.6099753917745], [-77.45336102389182, 34.60979671877841], [-77.45381324831978, 34.609754733069444], [-77.45387361431034, 34.609748769922476], [-77.45390260350202, 34.6097533046092], [-77.4539237404273, 34.60976676527712], [-77.45394945357731, 34.609802386822196], [-77.45414469202777, 34.610073004753744], [-77.45431057635476, 34.61016883324308], [-77.45447517216408, 34.61034800507765], [-77.45458256826328, 34.61041785664696], [-77.45474871220557, 34.61054748217108], [-77.45485081825116, 34.610610121381484], [-77.45491148177331, 34.61065903871167], [-77.45500479382655, 34.610691545630964], [-77.45504390240046, 34.610804674558395], [-77.45512588343982, 34.6109009261818], [-77.45516797693026, 34.610949209847185], [-77.45534311480975, 34.610909353610865], [-77.45530494952968, 34.6107817132939], [-77.45523906757225, 34.610499378313946], [-77.45521847205679, 34.610430249703384], [-77.45518836883144, 34.61032920789801], [-77.45513727220344, 34.61021795673404], [-77.45511699198399, 34.61016493550206], [-77.4551021395074, 34.6101152948909], [-77.45498118248355, 34.6099537094609], [-77.45492119049312, 34.60987935802617], [-77.4548595763363, 34.60986909680415], [-77.45466589561804, 34.609734334825774], [-77.4546607300059, 34.60955655186953], [-77.45453887168233, 34.60938921691523], [-77.45446066131103, 34.60924435529407], [-77.4544718541115, 34.609057202185255], [-77.45448312884297, 34.60886868448286], [-77.4544419611466, 34.60873592579797], [-77.4544807354266, 34.60850010454546], [-77.45450820395232, 34.60844940949622], [-77.45445455501299, 34.60816394307144], [-77.45443866647634, 34.60814284164924], [-77.45419269279118, 34.60803430562512], [-77.45418563230854, 34.608035591852314], [-77.45393713338726, 34.6080609480709], [-77.45376152691203, 34.60809700505524], [-77.4529408080454, 34.60821070972586], [-77.45292750649077, 34.608213575187584], [-77.45291503379653, 34.60821772620101], [-77.4529023682643, 34.60821177941829], [-77.45277570200784, 34.608152941310145], [-77.45238130921486, 34.607991136032076], [-77.452746643923, 34.60755306978907], [-77.45277253015986, 34.60753244091122], [-77.45277398158366, 34.60750987647014], [-77.45319564838509, 34.60706109438826], [-77.45324821147709, 34.60689590899951], [-77.45332586561355, 34.60661394106841], [-77.4533127808077, 34.60648268760212], [-77.45345425494429, 34.60629753881837], [-77.45416464883967, 34.60577522687387], [-77.45432471075551, 34.60563677049076], [-77.45437968568164, 34.6056172061315], [-77.45482733452846, 34.60555251745181], [-77.45494248773731, 34.605504426478404], [-77.45506379570759, 34.605456161179625], [-77.45508206713701, 34.60537447400209], [-77.45511512346562, 34.60529870246854], [-77.45512445826623, 34.6052700660364], [-77.45513161317791, 34.60526090485316], [-77.45513389555299, 34.60523222345278], [-77.45513855021795, 34.60517373043155], [-77.45514360154974, 34.60511025312763], [-77.45515021157604, 34.60502718741467], [-77.45511042860676, 34.60499712048821], [-77.45508224903116, 34.6049339409316], [-77.45513123785564, 34.604742594461], [-77.4551289196416, 34.60464057762705], [-77.4551477752487, 34.604617203727884], [-77.45514521736688, 34.60457608412095], [-77.45502732410179, 34.60436312324457], [-77.45477785072308, 34.60411092865694], [-77.45465511422805, 34.60401921008435], [-77.45417233604951, 34.60393701197453], [-77.45381086384688, 34.60376023091242], [-77.45343701570086, 34.603628144556936], [-77.4531286762247, 34.603384504467854], [-77.45303942565724, 34.60329008913529], [-77.45284471074545, 34.60305857143231], [-77.4529932538731, 34.60265454024638], [-77.45346931267736, 34.60251285220127], [-77.45368612561855, 34.60227759240911], [-77.45434586435863, 34.6018959852747], [-77.45435106809491, 34.60189349030508], [-77.45435576232927, 34.601892512180726], [-77.45435497928806, 34.60188924990887], [-77.45435399040292, 34.601886047595876], [-77.4542872683472, 34.60124915769615], [-77.45425909722887, 34.601178075690775], [-77.45426382368643, 34.60062156490944], [-77.45447624400163, 34.600377607089314], [-77.45467923244462, 34.6001475325112], [-77.4546296434697, 34.59972011588791], [-77.45437657509206, 34.59966751391506], [-77.45366949030908, 34.599404249151576], [-77.45342329838059, 34.59936662934197], [-77.45322234508045, 34.59925824291093], [-77.45298809648662, 34.59898446811305], [-77.45297334162602, 34.59896001163364], [-77.4529293743995, 34.59891583655794], [-77.45253064806482, 34.59871702903018], [-77.4524668682894, 34.598707514351936], [-77.45242525156418, 34.59869957321357], [-77.45230922133565, 34.598671711078936], [-77.45225212894633, 34.598678846284265], [-77.45216007300493, 34.59869097540537], [-77.45205939986334, 34.598748630304854], [-77.4520070240136, 34.598747923563764], [-77.45203859007037, 34.59877407909644], [-77.45210146846472, 34.59883945076212], [-77.4520932986331, 34.59893296304889], [-77.4520833719604, 34.59917650242343], [-77.45215099885371, 34.599194582381195], [-77.45215307440341, 34.59926357806174], [-77.45238205168096, 34.59949793548522], [-77.45203411054408, 34.59984134336929], [-77.45200449333757, 34.59997489153427], [-77.45194040878758, 34.60011825193138], [-77.45181593339387, 34.6003139665124], [-77.4517723877542, 34.600369153470666], [-77.45165293444148, 34.600444428387824], [-77.45132097388759, 34.600830584426845], [-77.45103842187731, 34.60131409345384], [-77.45101927007676, 34.60134440501019], [-77.45102915225638, 34.60136086907716], [-77.45099545850266, 34.60142127116348], [-77.45096293348404, 34.60174901498378], [-77.45083741864107, 34.60190016657849], [-77.4506928527455, 34.601971926945374], [-77.45067067008996, 34.602017004749065], [-77.45063407884813, 34.602091775788665], [-77.45064086861385, 34.60214108602917], [-77.45069818017097, 34.602193787520314], [-77.45072722552584, 34.60220646214318], [-77.45076094330923, 34.60222063755223], [-77.45112294648357, 34.602179736545445], [-77.45123078266798, 34.602657213932794], [-77.45127739588457, 34.602767099460394], [-77.45112617797979, 34.60309015172871], [-77.45117490962716, 34.60325705925033], [-77.45107245701482, 34.60335846476773], [-77.4509830380727, 34.60349961723866], [-77.45103495379739, 34.60357476744624], [-77.45117062188496, 34.60371701198822], [-77.45133697747531, 34.603746746113664], [-77.4513343120996, 34.603858643203004], [-77.45132996132413, 34.60393071197574], [-77.45143230811647, 34.60408735817139], [-77.45153799908141, 34.60416980636542], [-77.45160679366123, 34.604331176513554], [-77.45191623108687, 34.60452026804904], [-77.45215405965092, 34.60457633343353], [-77.4522995597614, 34.604691108723244], [-77.45238620678286, 34.604919698502805], [-77.45208565922727, 34.605139067230205], [-77.45194548086053, 34.605530621445645], [-77.45165738747005, 34.605903468752466], [-77.45132959638907, 34.6062176738869], [-77.4511117195079, 34.60633192976356], [-77.45058904282982, 34.60649006154827], [-77.45044572919687, 34.60632763234557], [-77.4502944866403, 34.606277145200146], [-77.4501027649257, 34.606170313336165], [-77.44991927020641, 34.60622437108612], [-77.44979224702132, 34.60636281980203], [-77.44968041212317, 34.606450488765354], [-77.44932879788038, 34.60659018459644], [-77.44904031579019, 34.606728455609876], [-77.44893438891903, 34.60680883686982], [-77.44905752562136, 34.60699121081302], [-77.4491709811645, 34.60706044768119], [-77.44917768301605, 34.607301461437245], [-77.44919886550755, 34.60742175230113], [-77.44913094150442, 34.607497017843635], [-77.4491203270501, 34.607748904424064], [-77.44911106488283, 34.60781604941305], [-77.44904953642448, 34.608087933633016], [-77.44889832920659, 34.608245975781195], [-77.44879950828945, 34.60849727952154], [-77.44873728033758, 34.60859807059171], [-77.44851912868302, 34.60872337435044], [-77.4483647750386, 34.60882958381966], [-77.4481410530176, 34.609008838893814], [-77.44792508346997, 34.609143786631506], [-77.44767436335658, 34.60913957588401], [-77.44742679752572, 34.60903488063653], [-77.44696569326206, 34.6090917188829], [-77.44686195743195, 34.60910103755388], [-77.44666415421648, 34.609111428980995], [-77.44635592214573, 34.60917291091575], [-77.44616726177627, 34.60915360382461], [-77.44587703147195, 34.60910756460131], [-77.44580974590822, 34.60909814803084], [-77.44567777775873, 34.60907595659303], [-77.44553921116092, 34.609070092222275], [-77.44548943463161, 34.609068029058875], [-77.44541091986679, 34.60908154866313], [-77.44538734497192, 34.60912917228826], [-77.44532713241819, 34.60925558522084], [-77.44532408565917, 34.60926188758838], [-77.44531868722403, 34.609266778694796], [-77.44491964075267, 34.609687463953776], [-77.44435907223185, 34.609540409291135], [-77.4443568761679, 34.60953840151012], [-77.44407237753074, 34.60925290487885], [-77.44408631850612, 34.60895489753827], [-77.44395016011059, 34.60878106773603], [-77.44369378454086, 34.608622354334784], [-77.44366645711833, 34.60855393360565], [-77.44352169138706, 34.6080116986936], [-77.44351262057829, 34.607935509344756], [-77.44357846001357, 34.60774724336777], [-77.44357051414906, 34.60754975062127], [-77.44361948730807, 34.60742650747886], [-77.44355420800562, 34.60731975806976], [-77.44326006401153, 34.607269021447145], [-77.44322602913472, 34.60726384956114], [-77.44319908851668, 34.607242800006], [-77.4431203091577, 34.6072518046086], [-77.44268856919967, 34.60743197357121], [-77.44227851826443, 34.60757660933377], [-77.4422407960816, 34.60758295958693], [-77.44220746263744, 34.60759485197058], [-77.44216432642366, 34.60758145154897], [-77.44149090179846, 34.607556625860944], [-77.44139705153718, 34.607430970755736], [-77.44109933747518, 34.6072538612634], [-77.44103070190138, 34.60720499128519], [-77.44097204433155, 34.607182900003146], [-77.44083694173597, 34.607072059611035], [-77.440597680651, 34.60692038905971], [-77.44056421842747, 34.60686104027247], [-77.44027455745324, 34.606643267342875], [-77.44046171982662, 34.60632130169057], [-77.44044918377645, 34.606224232381145], [-77.44051512374264, 34.60603028062189], [-77.44050937114277, 34.60601386047485], [-77.44046742450675, 34.60590525791069], [-77.4404495572772, 34.60585842673716], [-77.44044538554319, 34.6058560680066], [-77.44035630814537, 34.605743868561646], [-77.44032223522743, 34.605653052670505], [-77.44025308868069, 34.605541647198514], [-77.44021901414268, 34.60545459931136], [-77.44006392078327, 34.60522633470582], [-77.44005551959279, 34.60519736291701], [-77.44001161655476, 34.60505662391014], [-77.43993429958493, 34.60491757482295], [-77.4399229435358, 34.60490232848314], [-77.43991499866456, 34.60489954755354], [-77.4399124368789, 34.60489018575685], [-77.43967889972176, 34.60459761548135], [-77.43968423065645, 34.60450059234202], [-77.43958231348724, 34.60440453600886], [-77.43942620953861, 34.604300413929955], [-77.43935911272668, 34.60407707489421], [-77.4392791970527, 34.603973082546325], [-77.43925358777493, 34.603892193840885], [-77.43911468266698, 34.60365074130449], [-77.43910710813466, 34.60361416235722], [-77.43906461216488, 34.6034803939688], [-77.43901392174998, 34.603336813485306], [-77.43900759850315, 34.60331202613332], [-77.43899808052991, 34.60329034544339], [-77.43888709387933, 34.60297713742833], [-77.43888432871373, 34.602972305210095], [-77.43884563594224, 34.602860141090936], [-77.43882574818974, 34.60281000483872], [-77.43882645198424, 34.602806616426584], [-77.43874253136181, 34.602688552110315], [-77.43870375110367, 34.6026601645094], [-77.43868818590781, 34.60260335832183], [-77.43859918203394, 34.60240669723338], [-77.43846374787115, 34.60235934584091], [-77.43838633176814, 34.60220980936564], [-77.43833608052512, 34.60202649956382], [-77.4384296941947, 34.60189343904022], [-77.43839452904058, 34.60174268794776], [-77.4382538120391, 34.60168070982975], [-77.4382304545633, 34.60148617273424], [-77.43823036850438, 34.60129294668553], [-77.43827887205747, 34.60114502140172], [-77.43825882322773, 34.601026693058074], [-77.43823669929769, 34.600867437633624], [-77.43822269289122, 34.60066825606536], [-77.43822094270212, 34.60064820480067], [-77.43816255913335, 34.600453563847225], [-77.43818528612884, 34.60026699799526], [-77.43818527323147, 34.60023798278163], [-77.43819163170005, 34.60021490775023], [-77.43818522760225, 34.6000546705531], [-77.43817586933436, 34.60002704561832], [-77.43817558630836, 34.5998540583866], [-77.43817555143164, 34.599775525936714], [-77.43815331166135, 34.59960571339163], [-77.4381749872373, 34.599429992906614], [-77.43817495199357, 34.59935057709605], [-77.43826564394233, 34.59916487690148], [-77.43832037686714, 34.598827447065084], [-77.43823209076572, 34.59874513437356], [-77.43832029257439, 34.59863730291489], [-77.43840851002726, 34.59856670121384], [-77.4386312275036, 34.59826282645391], [-77.43864663510357, 34.59809278593441], [-77.43871714852014, 34.597825807674866], [-77.43876354431201, 34.59743604100078], [-77.4387662773036, 34.59735555752498], [-77.43876599021215, 34.596969557378706], [-77.43851405837701, 34.59689146097179], [-77.43844657733419, 34.59659115081273], [-77.43840758639755, 34.59650091592888], [-77.43831017641287, 34.59629113002246], [-77.43824987294082, 34.59619500013396], [-77.43824979803395, 34.59602523568593], [-77.43826149749323, 34.59550104972225], [-77.43821519035475, 34.59535082739335], [-77.43809891701616, 34.59503577501898], [-77.43840692151299, 34.59500926630135], [-77.43858802072944, 34.594643025016], [-77.43863351399298, 34.59444114887072], [-77.4386569150208, 34.59428287172669], [-77.43865583961635, 34.59416932355045], [-77.43856388089378, 34.59402662399974], [-77.43847459121724, 34.59368848475648], [-77.4385129012391, 34.593609401808386], [-77.43880019022555, 34.59320152956971], [-77.4388169460088, 34.59315891514076], [-77.43919404570786, 34.59272304098706], [-77.43922249612287, 34.5926882712625], [-77.43997093850072, 34.592561401991915], [-77.4399821116005, 34.592563166523746], [-77.44004751588227, 34.59260873751087], [-77.44037625558137, 34.59272358980122], [-77.44055387866152, 34.592698258625376], [-77.44077030779022, 34.592686394812866], [-77.44092351960467, 34.59257673554817], [-77.44109354564117, 34.59238700953249], [-77.44110948198151, 34.59232574195592], [-77.44099876866906, 34.59215428661033], [-77.44078250834212, 34.59200739852336], [-77.44076998609799, 34.5920043550441], [-77.4407652765184, 34.5920048160197], [-77.44057295318044, 34.592004847235714], [-77.44040219948926, 34.59203409956144], [-77.44037593578274, 34.59203864622247], [-77.44034691979022, 34.592039130709516], [-77.44027336551356, 34.592081032390126], [-77.44008807506805, 34.59222217117284], [-77.43998208761758, 34.592511284590074], [-77.43996499925518, 34.59253180088983], [-77.43923653927207, 34.59260972865196], [-77.43919399726104, 34.592616083418626], [-77.43861789701427, 34.59251651692935], [-77.43840576928756, 34.59241555756416], [-77.43800741849847, 34.591984119846614], [-77.4379615021879, 34.59161987743473], [-77.43796109122403, 34.59156622562007], [-77.43785923343597, 34.591417146489015], [-77.43781969633109, 34.59136846312011], [-77.4376932955369, 34.59118035544866], [-77.43766206161912, 34.59113640235393], [-77.43761704544929, 34.59106259119031], [-77.43743780976794, 34.59079270490054], [-77.43761676362006, 34.59041105480215], [-77.43763981153907, 34.59036375772679], [-77.43766171878704, 34.59033573409575], [-77.43801060409635, 34.589910070079966], [-77.43804103884504, 34.58988909243438], [-77.43807706045574, 34.589851080453904], [-77.43809421127575, 34.58975844251258], [-77.43801056639086, 34.589823717619524], [-77.43798487910934, 34.589836726264416], [-77.43761651164314, 34.589827892193526], [-77.43732670126616, 34.58984726771007], [-77.43722245433825, 34.589826359170594], [-77.43707204638889, 34.589733834217036], [-77.43684048971306, 34.58960529544821], [-77.43683254506892, 34.5896018731543], [-77.43682830065825, 34.5895968201442], [-77.43651794631563, 34.58922734002358], [-77.43649164652591, 34.58916909989901], [-77.43643401683755, 34.58905018486059], [-77.43634721509545, 34.58892090437247], [-77.43627409639322, 34.588838005700595], [-77.43616844946952, 34.58871468743466], [-77.43603976000034, 34.58855619336165], [-77.43598914837375, 34.588509127062245], [-77.43596063028514, 34.588458737054445], [-77.43584266363057, 34.588383106697], [-77.43578620703587, 34.58833247046005], [-77.43573071508166, 34.588279683719676], [-77.43564556365394, 34.58819911977989], [-77.43556836029404, 34.588174038125004], [-77.43549316347483, 34.588101734045345], [-77.43542362368865, 34.58792621990303], [-77.43542425993131, 34.58789940034309], [-77.43539004896509, 34.58784147860598], [-77.43529328674276, 34.58770604077356], [-77.43527483627214, 34.587683355108055], [-77.43525129594819, 34.587656054406], [-77.43518861104712, 34.58757638865647], [-77.43513536983194, 34.587516576810145], [-77.4350973294367, 34.58747560436621], [-77.43497053232086, 34.58732811318856], [-77.4348570681085, 34.587200131924696], [-77.43472817077279, 34.5870773993761], [-77.43465995796754, 34.586977630422155], [-77.43464621599001, 34.58696521309903], [-77.43464178580905, 34.58695105157597], [-77.43456139948897, 34.586856676305864], [-77.43456133627808, 34.58685660298517], [-77.43456128747546, 34.586856541960664], [-77.43456091738284, 34.58685607623952], [-77.43448562791522, 34.58676133270252], [-77.43446284010555, 34.5867326566938], [-77.43435582934507, 34.586683088807995], [-77.43424884088591, 34.58658327071258], [-77.43407503957653, 34.58619075845509], [-77.4344625183713, 34.585910597583094], [-77.43449936983633, 34.585737647310445], [-77.4347348448462, 34.585663819710405], [-77.43504032604933, 34.58499664754083], [-77.43498303696809, 34.58477875045413], [-77.43446180619414, 34.584086650026514], [-77.43440388905516, 34.58407570561237], [-77.43367394855883, 34.584619317362254], [-77.43334916623215, 34.584165789792024], [-77.43313709188655, 34.583925478770105], [-77.43288548028134, 34.58353386539766], [-77.4327039047023, 34.58360558060524], [-77.43280403926373, 34.583395416811456], [-77.43279423598423, 34.58329860557875], [-77.43280958131913, 34.58262685790875], [-77.43280280312787, 34.5825464129079], [-77.43249101554127, 34.58233784937755], [-77.432421412789, 34.5822519275557], [-77.43216073189583, 34.582283349006296], [-77.43209697931312, 34.58229911464228], [-77.43197981023702, 34.58236708443185], [-77.4318641574893, 34.58243117372672], [-77.43170307330647, 34.582625862698116], [-77.43150468642898, 34.582734074092556], [-77.43142720850449, 34.58287250548055], [-77.4313092022322, 34.58306075167968], [-77.43121895001256, 34.58287256102793], [-77.43113392911803, 34.582787669371285], [-77.43052094331387, 34.58245459625994], [-77.43026627268077, 34.58263859649786], [-77.43012697651344, 34.58262232597589], [-77.43002033251761, 34.58263897315156], [-77.42973300804158, 34.58278979380434], [-77.42954672248811, 34.582816352482176], [-77.42913348675623, 34.58287370313017], [-77.42896790925633, 34.58267617016794], [-77.42895474170925, 34.582667488265145], [-77.4289449167089, 34.582661630859505], [-77.42870459911609, 34.5825485582872], [-77.4285508129696, 34.58241219995803], [-77.42845582839267, 34.58232559466813], [-77.42826481818224, 34.5822367332195], [-77.42815670646485, 34.5821465035866], [-77.4279501297568, 34.58197409505535], [-77.4279205014996, 34.58180820362124], [-77.42787823970505, 34.581559896539645], [-77.42799806589183, 34.58137189006761], [-77.42799649379268, 34.581290571412225], [-77.42801336813987, 34.58111577769756], [-77.42795934083213, 34.58100259907831], [-77.42793209842038, 34.58094456609369], [-77.42790763211643, 34.58091876540278], [-77.42776225298154, 34.58074389864881], [-77.42775131956213, 34.58074084362994], [-77.42773723902275, 34.580731097912775], [-77.42750788034401, 34.58061372502654], [-77.42736813656295, 34.58041037695519], [-77.42734102079505, 34.5803929880186], [-77.42733706904852, 34.58036434501128], [-77.4273061420063, 34.58030204468895], [-77.42721155007209, 34.58012654255246], [-77.42713355070981, 34.57996917005428], [-77.42704208145162, 34.57963128354251], [-77.4270716610604, 34.57955352630994], [-77.42736778024396, 34.57922864196757], [-77.42745192091388, 34.57916467189047], [-77.42756475286464, 34.57912438387329], [-77.42765096548264, 34.579045212243415], [-77.42769973997194, 34.578971382812725], [-77.42769353394947, 34.578900209788046], [-77.4276365537092, 34.57883500084658], [-77.42760991622902, 34.57879007253696], [-77.42748657692587, 34.57864438259996], [-77.42749667839486, 34.578357519740806], [-77.42744769030692, 34.578225414305884], [-77.42776134415672, 34.577772284402215], [-77.4277694009885, 34.57776301371203], [-77.42777803337597, 34.577753080706366], [-77.42795827537356, 34.577545682167724], [-77.42797312410623, 34.577528596170325], [-77.42800198130419, 34.57750841811638], [-77.42803062107475, 34.577476116795694], [-77.42803093707474, 34.5774258904124], [-77.42797768228567, 34.577405782966046], [-77.42795823109795, 34.5774014072243], [-77.42787871847308, 34.57739962463478], [-77.42783480269843, 34.57739957080045], [-77.42776124411515, 34.5774438528414], [-77.42765793054193, 34.577457189392206], [-77.42739192382663, 34.57738429713688], [-77.42737087708085, 34.57738340440875], [-77.42736722585771, 34.57738321510113], [-77.42736230564921, 34.577383275658704], [-77.42697322622138, 34.5773839859065], [-77.42690148209186, 34.57737786769876], [-77.42677622932435, 34.57739448882305], [-77.42669499483353, 34.57736025878727], [-77.42666472272887, 34.57736924211266], [-77.42657924000167, 34.57743130700344], [-77.42651880816211, 34.57744535777783], [-77.42626722342916, 34.57745850500979], [-77.42618525422567, 34.577481975963764], [-77.42609653539522, 34.57747590843611], [-77.42589576106815, 34.577487909638776], [-77.42579125840712, 34.57749891284008], [-77.42572412777456, 34.57748537663742], [-77.42565419695426, 34.577487740180175], [-77.42559425604773, 34.57749172581273], [-77.42554889110961, 34.57748724838981], [-77.42539771131078, 34.57746021071335], [-77.42539724696337, 34.57746012692557], [-77.42538836105169, 34.57746156194497], [-77.42520542647824, 34.57749357035948], [-77.42519495524847, 34.57749522405295], [-77.42500326980996, 34.577546521587955], [-77.4247771112293, 34.57751848015755], [-77.42444282065009, 34.577565281631735], [-77.42421521806756, 34.577357586134475], [-77.42404616605812, 34.57720076997463], [-77.42398312925837, 34.5770277479388], [-77.42382106730098, 34.57677250735612], [-77.42373535561048, 34.57673131918], [-77.42355681016586, 34.57638009804662], [-77.42348884200467, 34.576249999281025], [-77.42388914245353, 34.57584118723596], [-77.42392364233444, 34.57576258357298], [-77.42408337810404, 34.57559791883166], [-77.4241894180352, 34.57551188447992], [-77.42405571336784, 34.57549027724116], [-77.42382732172648, 34.57535191552827], [-77.42382070250446, 34.57534880355628], [-77.42343766138718, 34.57539643455573], [-77.42342671989132, 34.57538204685092], [-77.42334816083338, 34.57533650724299], [-77.42337601829814, 34.57541712921618], [-77.42318015339985, 34.5756042447769], [-77.42314039016213, 34.575759842247294], [-77.42311096229692, 34.575880015641374], [-77.42307514127631, 34.57593075170092], [-77.42303287057234, 34.57595764858399], [-77.42297620960012, 34.575960547956306], [-77.42271876014223, 34.57602275574891], [-77.4226389101642, 34.576096360921234], [-77.42240003332898, 34.57614988748061], [-77.42224493059969, 34.57616022437443], [-77.42217322778839, 34.576092763508356], [-77.42206541264419, 34.576031088686975], [-77.42185088346469, 34.57593653002992], [-77.42168441020911, 34.575840927683466], [-77.42150346540296, 34.575737937279484], [-77.4214568382992, 34.575712430978], [-77.42144743091747, 34.57570592832048], [-77.42142372433536, 34.575699217252456], [-77.4212598352866, 34.57568378884549], [-77.42118305834056, 34.575651258353865], [-77.42116132794267, 34.57564322814023], [-77.42115004446643, 34.57564477241689], [-77.42106282496097, 34.57562180579905], [-77.42097201709205, 34.57555218733469], [-77.42090463704284, 34.57552007613417], [-77.42072129767925, 34.57543270183894], [-77.42066879954196, 34.57547215011225], [-77.42062738377959, 34.57543430903689], [-77.4206264730855, 34.57538981795834], [-77.42047176873106, 34.575311037543855], [-77.42040839842491, 34.575277314969796], [-77.42031295950454, 34.57522282018259], [-77.4202747492669, 34.57519959050482], [-77.42015156904766, 34.57516658189238], [-77.41996974016033, 34.57506011324132], [-77.41988071868684, 34.575009304261414], [-77.41976813220113, 34.57496791952484], [-77.41963283362516, 34.574951322438444], [-77.41961695580011, 34.57489878746948], [-77.4194866753503, 34.574747745248764], [-77.41946686387988, 34.574729524541134], [-77.41944038053923, 34.57471200454642], [-77.41928964585031, 34.57457338584604], [-77.41925823751258, 34.5745598702226], [-77.4190926310598, 34.5744689697922], [-77.41892224729955, 34.5743622719676], [-77.41886057758911, 34.57419661309123], [-77.41872097419302, 34.573566433366466], [-77.41871238606448, 34.573543420771145], [-77.4187309573103, 34.57350571324295], [-77.41869840942243, 34.57325800188077], [-77.41861406118255, 34.572799260669285], [-77.41861441430885, 34.572708405547644], [-77.41860429490471, 34.572608576513765], [-77.4186982627715, 34.57249608683634], [-77.41908915798768, 34.572211975605306], [-77.41909218485843, 34.57221008757609], [-77.41909782493825, 34.57220790722646], [-77.41937410843283, 34.57205334680199], [-77.41938030120667, 34.571960884896185], [-77.41931954200805, 34.57193687603617], [-77.41921980985029, 34.57177177856971], [-77.41909207111303, 34.571631091140766], [-77.41888128933155, 34.571623255525694], [-77.41891037919011, 34.57139189680683], [-77.41869804294473, 34.57134990746712], [-77.41851932377543, 34.57144839043013], [-77.41854771459302, 34.57170679115542], [-77.4185149992638, 34.57187359890176], [-77.41821374767535, 34.57224418282785], [-77.41791029491165, 34.57243693256689], [-77.41764963816377, 34.57227948211282], [-77.41724313635773, 34.57218755714147], [-77.41712229635331, 34.57219619361858], [-77.41702541280935, 34.572193187514046], [-77.41690025329785, 34.57210685741255], [-77.41650088653739, 34.571985023807976], [-77.41633427285299, 34.57177634667001], [-77.41632160902999, 34.57176585777332], [-77.41605395430386, 34.57168201482916], [-77.41555833270046, 34.571451523294535], [-77.41555184741095, 34.57144645028313], [-77.41554627016343, 34.57144145600948], [-77.41546456379314, 34.57137702303857], [-77.41515224948091, 34.571128577562384], [-77.4151185283434, 34.571126805122724], [-77.41510504892771, 34.57104155733021], [-77.41506889899681, 34.5706730503789], [-77.41515216196345, 34.5705389867552], [-77.41530291045326, 34.57037715616767], [-77.4155461066602, 34.570374298672675], [-77.41573598311892, 34.57037206720597], [-77.41574680088085, 34.5703668439245], [-77.41594005073358, 34.57021594773007], [-77.41599472943157, 34.57017367669074], [-77.41613743942565, 34.56988134265372], [-77.41614382281745, 34.569668623456195], [-77.41618794298434, 34.569504945564894], [-77.41633388281797, 34.569374724599484], [-77.41667754845686, 34.5691127841142], [-77.41672779937245, 34.569088611336575], [-77.4168018560807, 34.56906917257614], [-77.41695070255956, 34.56894315917126], [-77.41701134367491, 34.56890643637692], [-77.41707859630532, 34.56885024439706], [-77.41712170665832, 34.56876384769048], [-77.41714807208916, 34.568702819748665], [-77.41715968672878, 34.568672715936366], [-77.41718241489325, 34.56860397583424], [-77.41716636807153, 34.56824716736789], [-77.41717912692151, 34.56788278641477], [-77.41748679720816, 34.567776295046144], [-77.41790941143864, 34.56755302346356], [-77.41800857451126, 34.56759405397476], [-77.41811209619394, 34.56768596402958], [-77.41830340014525, 34.56773524996668], [-77.41846866994335, 34.56788094607575], [-77.41859692577884, 34.56793222861365], [-77.41869739002837, 34.56791469332335], [-77.41880978237894, 34.567706343855974], [-77.41909128352228, 34.567587484847074], [-77.41919108141798, 34.56753008450775], [-77.41940677292648, 34.56741439301899], [-77.4194851980185, 34.567382001460274], [-77.4195761548059, 34.56737642055026], [-77.41993410665208, 34.56742273426701], [-77.42022012844413, 34.567438519296985], [-77.42027312904781, 34.56749227207717], [-77.42038952817626, 34.56748238596488], [-77.42066708584989, 34.56750330473591], [-77.42090724546402, 34.567447871128415], [-77.42106112584457, 34.56789740740917], [-77.42121590175714, 34.56740445956021], [-77.42145496482489, 34.56736853689755], [-77.42184875778926, 34.567146209804214], [-77.42184886820206, 34.56714620161716], [-77.42184892278767, 34.56714612581148], [-77.42184911608184, 34.56714603903203], [-77.42250518712173, 34.566909478263625], [-77.42263670879927, 34.56687253730622], [-77.42282351544296, 34.566803885951565], [-77.42319043512444, 34.566699873682744], [-77.42342452808334, 34.566533734047056], [-77.42385091131027, 34.56639718652603], [-77.42415537682238, 34.56681276983066], [-77.42419308571627, 34.56682824589931], [-77.42421252279358, 34.56691236808459], [-77.42433628968334, 34.567077865810994], [-77.42440955073067, 34.5671167916532], [-77.42446383429387, 34.56703901246202], [-77.42460647891002, 34.566932261947485], [-77.42480817309493, 34.566718428386075], [-77.4249040143415, 34.56660075714761], [-77.42500031513995, 34.566496599076125], [-77.42524122914483, 34.56639615931446], [-77.42578805792266, 34.56592848444515], [-77.42587919579631, 34.5658127219869], [-77.42614253666267, 34.565676399302085], [-77.42641127848987, 34.565460217786416], [-77.42657581288593, 34.565442165068646], [-77.42679436973356, 34.56534659736014], [-77.42712364309682, 34.565275912210964], [-77.42736351857485, 34.56481807433633], [-77.42770508243807, 34.565082493903034], [-77.42789062428936, 34.56542372743961], [-77.4277202075892, 34.565832478200605], [-77.42770226805884, 34.56593538307652], [-77.42753793151692, 34.56632388661554], [-77.42756584916167, 34.56652690883764], [-77.42756603218895, 34.56653211938759], [-77.42769508486217, 34.56665794782603], [-77.42775546057062, 34.56671703272581], [-77.42775661220533, 34.566718384735694], [-77.42776517267883, 34.56672333503785], [-77.42815201428094, 34.566863787991736], [-77.42832880872695, 34.5668682010389], [-77.4288867914619, 34.56692081297483], [-77.42893992447856, 34.566897124057135], [-77.42898166186944, 34.566919396080685], [-77.42903765112987, 34.566956278541795], [-77.42972794890098, 34.567285828678], [-77.43009608328131, 34.56725567135692], [-77.43028362621229, 34.56762533738488], [-77.42998023082744, 34.5679408718481], [-77.42972822546166, 34.568147752301265], [-77.42957328030563, 34.568410123540524], [-77.429547059177, 34.5685809984448], [-77.42950864694768, 34.56877427307872], [-77.42951712004066, 34.56881307616144], [-77.42959342371665, 34.56899888590102], [-77.42972859525344, 34.569297723047065], [-77.42979967812947, 34.56931705679524], [-77.42987797343167, 34.56938234097369], [-77.42981504638726, 34.56948454508027], [-77.42979037527161, 34.5701779075127], [-77.4298582008629, 34.57023437959941], [-77.43012287655706, 34.57027644963714], [-77.43050534098082, 34.57015317835384], [-77.43051679979025, 34.57014868218233], [-77.43052419751001, 34.57014607489804], [-77.43130471313702, 34.570100100340596], [-77.43137370787173, 34.570089649726384], [-77.43169865789599, 34.57004278725548], [-77.43176473306477, 34.57002997199364], [-77.43202588372004, 34.56992099882022], [-77.43200334206166, 34.569828117722956], [-77.43187462936362, 34.56932835563727], [-77.43180300323532, 34.569104039830336], [-77.43167901121652, 34.56871805339978], [-77.43154128785724, 34.5682926960653], [-77.43132044039127, 34.56749335123595], [-77.4313179031159, 34.567460626237015], [-77.43142306159787, 34.56661142553138], [-77.43130348793879, 34.566498510372455], [-77.4310873103511, 34.56604361339934], [-77.43080141655348, 34.5658521185655], [-77.43051531421001, 34.565652835563526], [-77.42994326914966, 34.565743576406426], [-77.4296587361222, 34.56516813227768], [-77.42927044985714, 34.56486734428896], [-77.42893923498353, 34.56467271689018], [-77.42879661744949, 34.56459727250859], [-77.42851749050502, 34.56448393370583], [-77.4283177954249, 34.56433329965652], [-77.4281976400135, 34.563680991573435], [-77.42815101848134, 34.56354559610623], [-77.42799912976619, 34.56302404928928], [-77.42756847704553, 34.563144191148], [-77.42761281497052, 34.56349641955577], [-77.42809762452711, 34.56369544916898], [-77.42761225799843, 34.56403394815128], [-77.4273634225954, 34.56448740597817], [-77.42732486746313, 34.56461473417056], [-77.42706770484352, 34.564693499768936], [-77.42672889949164, 34.56490762972183], [-77.4265756530848, 34.56487387303611], [-77.42647004046592, 34.56489372158663], [-77.42646610241204, 34.56478045636422], [-77.42618163919616, 34.56460973676282], [-77.42606854949042, 34.56453519503971], [-77.42586964639604, 34.56453042317275], [-77.42578767726314, 34.56452813102099], [-77.42571091101874, 34.564547764296975], [-77.42540265344415, 34.564519184691655], [-77.42539373726298, 34.56452615567539], [-77.42537308684003, 34.56453610580453], [-77.42499981951893, 34.56460937716881], [-77.42477912118963, 34.56478635937558], [-77.42431249406857, 34.565091714886705], [-77.42424785509104, 34.565139621720085], [-77.42421207610589, 34.565150377353255], [-77.42417589048966, 34.565150457205995], [-77.42409977451496, 34.56512245681233], [-77.4235623057276, 34.56505124393305], [-77.42342415872915, 34.56501930216973], [-77.42306934777226, 34.56480455006723], [-77.42303016094776, 34.56478667261068], [-77.42283522621912, 34.56467054411953], [-77.42288801997303, 34.56487298428112], [-77.42283875065664, 34.565086480090315], [-77.42285209501436, 34.565302761773836], [-77.42272054051237, 34.565412494129276], [-77.4226363843942, 34.56549042604593], [-77.42231065121564, 34.565879009831015], [-77.42224253546223, 34.56590728479488], [-77.42215516947816, 34.5659222209325], [-77.42184859549393, 34.5659368762213], [-77.42142365471884, 34.565967167074405], [-77.42106070336959, 34.56594500737559], [-77.42083296684785, 34.5658399461209], [-77.42047845305152, 34.565867400120325], [-77.42027281864239, 34.565991517229754], [-77.42023058686152, 34.56606061245229], [-77.42013034709672, 34.566120626874955], [-77.41996303996186, 34.56623546090775], [-77.41987892337046, 34.566250388041524], [-77.4198223350475, 34.566226112698494], [-77.41968194684662, 34.56623965096449], [-77.41961888916134, 34.566194522845464], [-77.41955612042577, 34.56612688650677], [-77.41948492167211, 34.565981570194495], [-77.41936143619196, 34.56594021387821], [-77.41934196140902, 34.56580994794009], [-77.41921067382282, 34.56553343306815], [-77.41918280506063, 34.56540835774162], [-77.41948476322408, 34.56517529153185], [-77.4196465115003, 34.565091124296984], [-77.41987867391454, 34.565011012629526], [-77.41998485418267, 34.56498233879833], [-77.420232314912, 34.56487554576019], [-77.42027258512346, 34.56485712432255], [-77.4202999749605, 34.564851884652526], [-77.42034493905848, 34.56481586647072], [-77.4205456976101, 34.564656676032754], [-77.42066642358104, 34.56436382293114], [-77.42067359065175, 34.56435152245781], [-77.42106028850137, 34.564015159120295], [-77.42113600868316, 34.56393402348581], [-77.42125565744033, 34.563835105133634], [-77.42138576352171, 34.56374258027013], [-77.4214541379456, 34.56361099501481], [-77.42159613716271, 34.56351439102544], [-77.4218480550719, 34.56352685459518], [-77.42199436797864, 34.5635706762406], [-77.42208802226882, 34.563548876076176], [-77.4222419881783, 34.56351666281421], [-77.42232720762522, 34.56346797319812], [-77.4224080909334, 34.56342304193977], [-77.42243892674352, 34.563390314146574], [-77.42260702582077, 34.56321524462219], [-77.42261498642158, 34.56319160950584], [-77.42263584160806, 34.56316463279311], [-77.42277640629669, 34.562917745422574], [-77.4230296771079, 34.562750929686075], [-77.4230727111173, 34.562723362018005], [-77.42323313051739, 34.56249494457088], [-77.42323154547515, 34.56248276188516], [-77.42316256442402, 34.562285790363745], [-77.42313787455876, 34.5621725923277], [-77.42294323454777, 34.56222445040643], [-77.42271954512154, 34.562349811768016], [-77.42266105804606, 34.5623856375517], [-77.42263566750563, 34.56241491191607], [-77.42242127227425, 34.56258637830265], [-77.42224182285742, 34.56279082618201], [-77.42218257531766, 34.56285199394836], [-77.42199796676282, 34.56304036377344], [-77.42184795872981, 34.5630951533057], [-77.42162068791046, 34.56317816175547], [-77.42129749754712, 34.56323573341777], [-77.4210601222569, 34.56323827598405], [-77.42087320981483, 34.563242651543405], [-77.42052043959902, 34.56309216744519], [-77.42027211059536, 34.56253723758398], [-77.42022004897785, 34.56234247064195], [-77.42022415747984, 34.56228580717024], [-77.41987809915122, 34.56213369045657], [-77.41978012586495, 34.56203095446082], [-77.4195046859502, 34.56196517562121], [-77.41948413571016, 34.561957877548906], [-77.41946942537206, 34.56197027017387], [-77.41940692128045, 34.56232058640696], [-77.41939281948345, 34.562405922797765], [-77.41948428055309, 34.56270372017899], [-77.41964987681564, 34.56303954098246], [-77.41974976498389, 34.56320352012456], [-77.41971019443882, 34.56345257051874], [-77.41948454626227, 34.56406732165264], [-77.41947860811463, 34.56408546307778], [-77.41947963725123, 34.564091718320064], [-77.41948005582468, 34.56409650372917], [-77.419322396311, 34.564788690179476], [-77.41909076515999, 34.56489164081463], [-77.41872924755228, 34.56501437830386], [-77.41869684720655, 34.565023268892986], [-77.41866553050653, 34.56502475316165], [-77.41830290314542, 34.56501854541072], [-77.41804238808137, 34.56500472150968], [-77.41790891321969, 34.56475479028006], [-77.41763700403189, 34.56465096600474], [-77.4176994035815, 34.56434891268349], [-77.41751487263089, 34.56418275907223], [-77.4172913962945, 34.56440785459846], [-77.41735714541817, 34.56465285672402], [-77.41742319442953, 34.56481339847352], [-77.41712110792996, 34.56522594672907], [-77.4170906703981, 34.56525320865746], [-77.41702559929595, 34.56529541847099], [-77.41682252961198, 34.56542750075618], [-77.4167272196344, 34.56556984999085], [-77.41664292946854, 34.56568441496624], [-77.4163333415175, 34.56599793605031], [-77.41617590598128, 34.56609763054832], [-77.41593941952087, 34.5661684046156], [-77.41576029952145, 34.566327359367534], [-77.4156304113011, 34.566437623310115], [-77.41554553101761, 34.56657306118043], [-77.41539562652937, 34.5668046168082], [-77.41532957425267, 34.56700592242506], [-77.41515166916373, 34.567186631949646], [-77.41509404604058, 34.56727275977442], [-77.41496855890631, 34.5675180691409], [-77.41475781594224, 34.56790034087291], [-77.41460838689264, 34.56803100594905], [-77.41429422264578, 34.568237445994484], [-77.414574149918, 34.568395033037305], [-77.41453404173376, 34.568810666625296], [-77.41418129229018, 34.56887523789081], [-77.41396999042594, 34.56857793576867], [-77.41358713645431, 34.568752204900775], [-77.413563082067, 34.56875364728742], [-77.41318206863548, 34.56857915308966], [-77.4128943318592, 34.56843962528487], [-77.4126212688765, 34.56823423994311], [-77.41239407285198, 34.567931133747365], [-77.41229853015325, 34.567779458046076], [-77.41222365722516, 34.56768732028538], [-77.4120000771666, 34.56758557685615], [-77.41170636646535, 34.56776202332352], [-77.41163145473176, 34.56780012084989], [-77.41160614486976, 34.567820375866354], [-77.41156189549747, 34.56783057610079], [-77.41086755731085, 34.56793630295201], [-77.41081824124791, 34.56794839854082], [-77.41045392817423, 34.568367460883685], [-77.41045419414199, 34.56839961491092], [-77.41057372035168, 34.56877474245237], [-77.41061784756995, 34.568984443179644], [-77.41065412838822, 34.56918771199486], [-77.41081837789685, 34.569388015285654], [-77.41094322086636, 34.569436007077655], [-77.41111051917453, 34.56954638843133], [-77.41142472812669, 34.56969674039015], [-77.41160635319035, 34.56981394146008], [-77.41192264628184, 34.5697699887179], [-77.41205983023909, 34.56976974302171], [-77.41210078313756, 34.56982796880657], [-77.41230274468549, 34.56989746951726], [-77.41239431301128, 34.57003751697314], [-77.41249736528448, 34.57008422389879], [-77.41259783780825, 34.57018076840403], [-77.41249905308625, 34.57030787930462], [-77.41239438029294, 34.57062258186796], [-77.41239191365425, 34.57063242849446], [-77.41238765538391, 34.570635702943505], [-77.4122238376612, 34.570900113311126], [-77.41166945194732, 34.571096143096085], [-77.41160648820777, 34.5710920755254], [-77.41153889425243, 34.57111000357249], [-77.41139148470677, 34.571204137471206], [-77.4109368801908, 34.57139728251947], [-77.41081858133147, 34.57150199008345], [-77.41064717816357, 34.57197600835312], [-77.41054689076363, 34.57217525634228], [-77.41042467864246, 34.57228746665111], [-77.41016114634745, 34.57237152528984], [-77.41003071936177, 34.57251210102362], [-77.40989577974528, 34.57241468160524], [-77.4097287983959, 34.57229338153542], [-77.40963671781466, 34.572257889197864], [-77.40944945528085, 34.57211092989512], [-77.40941923356466, 34.572103715748035], [-77.40924272293023, 34.57205775563854], [-77.40915342069366, 34.572048115867815], [-77.4089915960649, 34.57197524286223], [-77.40889517820781, 34.57193911399131], [-77.40868291972188, 34.571841121316496], [-77.4084547544467, 34.57188553258471], [-77.40832041390769, 34.571792336234736], [-77.4078100886731, 34.57172124609799], [-77.40770214895753, 34.57169872203234], [-77.40766678639592, 34.571672113605935], [-77.40761060768648, 34.57168950210463], [-77.4072728073053, 34.571629790041115], [-77.40702620791366, 34.57167559150248], [-77.40687883234247, 34.57166307674098], [-77.40675074819764, 34.571736143714205], [-77.40612147214787, 34.57193206473425], [-77.40609088949434, 34.571935451004755], [-77.40592907447878, 34.57199279648623], [-77.40542407946413, 34.57219624074986], [-77.40530294398796, 34.57229273114061], [-77.40500202043685, 34.57245091389094], [-77.40451499519466, 34.572816391975465], [-77.4042615054714, 34.572809487017295], [-77.40412101205557, 34.57279934159765], [-77.40403145226708, 34.57278780436912], [-77.40374834724905, 34.57275512712754], [-77.40372702893828, 34.57277510843985], [-77.4033750103323, 34.57283126065186], [-77.40346273704185, 34.5731979523263], [-77.40349613083936, 34.57344196747077], [-77.4034259136065, 34.573727912297], [-77.40320616612624, 34.57408413581797], [-77.4029390698122, 34.57436274752591], [-77.40268091377912, 34.57473089869039], [-77.40254507938461, 34.57478289241679], [-77.40232519435426, 34.57506043473552], [-77.4022244907857, 34.57515407154503], [-77.40215108501856, 34.5752163261076], [-77.4019666754643, 34.57531089774322], [-77.4017570883079, 34.57545507920405], [-77.4016836219194, 34.575498432714184], [-77.40150578801625, 34.57560326486294], [-77.40140495124892, 34.57566292744954], [-77.40136308924218, 34.575698471073], [-77.40114868492986, 34.57584833216468], [-77.40071073456286, 34.576142573811694], [-77.4006350455126, 34.57621811158924], [-77.4005750827035, 34.57624846601421], [-77.4004533201962, 34.576310929552534], [-77.40018107815138, 34.576425241504765], [-77.40003736564864, 34.57650945581582], [-77.39978706760498, 34.576738982971435], [-77.39950135204936, 34.57685835668208], [-77.39939305981925, 34.57689073461937], [-77.39924606805312, 34.57693689455598], [-77.3991960557175, 34.57695780848195], [-77.39914649331394, 34.57695174625021], [-77.39899905425058, 34.576952544935835], [-77.39860725302658, 34.57687304383063], [-77.39860505444332, 34.576872813812884], [-77.39860067591215, 34.576876341708406], [-77.39821104809315, 34.57693844201498], [-77.39802986054701, 34.57718332499476], [-77.39798448887743, 34.577385103308536], [-77.39781701360671, 34.57750374284643], [-77.39764375373782, 34.577672146841294], [-77.39756288978056, 34.57771975685063], [-77.39742298953755, 34.57780496307582], [-77.39732829721149, 34.5778023126613], [-77.39713673388769, 34.57781587696192], [-77.39702898517672, 34.5777519061696], [-77.39666990373219, 34.57761239194843], [-77.39663498776038, 34.57760346745552], [-77.39661826153196, 34.57760024117205], [-77.39659098304678, 34.57758615261308], [-77.39658551363618, 34.57753362393245], [-77.39646128907447, 34.57675571831327], [-77.3965118697717, 34.5760320634646], [-77.39642615729072, 34.57591164186627], [-77.39584713931308, 34.575503584494236], [-77.39565479472577, 34.57538105984936], [-77.395618422605, 34.57517902732976], [-77.39541369532671, 34.57482656026344], [-77.39541330765486, 34.57478404655844], [-77.39538594986149, 34.574715514109386], [-77.39523677279475, 34.57438494200724], [-77.39523802200142, 34.574192126341345], [-77.3952130417819, 34.573704890758655], [-77.39523883105574, 34.57353550139368], [-77.39532264123807, 34.573239677458105], [-77.3953566382585, 34.5729897073065], [-77.39563284910244, 34.572860669656386], [-77.39584735898055, 34.57277649833415], [-77.39661907570665, 34.572504763618504], [-77.39663534727225, 34.57250035730287], [-77.3966453907672, 34.57249425542694], [-77.396674353136, 34.572479254001465], [-77.39665612951363, 34.57245949048631], [-77.3966353524508, 34.57242891473383], [-77.39652068494806, 34.571775901642866], [-77.39641263961504, 34.57166786745452], [-77.39605260799156, 34.57149873412584], [-77.39584747569236, 34.571354503244706], [-77.39566236490715, 34.57112647337972], [-77.39553817305989, 34.57094488423155], [-77.39529348226272, 34.570728115383055], [-77.39528636133963, 34.57037643060076], [-77.39532256482042, 34.57012684624759], [-77.39545362795411, 34.56987549917222], [-77.39552425602767, 34.56974927831247], [-77.39557870471714, 34.56966532098026], [-77.39569338674241, 34.56948254922408], [-77.3956793663501, 34.56940756913351], [-77.39559322943828, 34.56923865336013], [-77.39546378080821, 34.56884360004768], [-77.39545912849368, 34.56883342835737], [-77.395459128938, 34.56882760012217], [-77.39545372211686, 34.56881440932711], [-77.39518908091125, 34.568447816061195], [-77.39538435225722, 34.56806990333428], [-77.3954101106549, 34.567991356075375], [-77.39541614444917, 34.56794990467411], [-77.39545379999937, 34.56794379312253], [-77.39548947454233, 34.567941459661185], [-77.395847773561, 34.56780203631722], [-77.39603729967128, 34.56768053823407], [-77.39604476413396, 34.567678844710954], [-77.39606431187191, 34.56766361993792], [-77.39624175845196, 34.567502130772], [-77.39632512978565, 34.5674347684532], [-77.39624177375029, 34.5673126762514], [-77.39607269325555, 34.56722884436613], [-77.3960085537221, 34.567229092957135], [-77.39584782216937, 34.56723257484768], [-77.39555746080345, 34.567232600018556], [-77.39545386209399, 34.56725407735834], [-77.39537633871231, 34.56723063407664], [-77.39510094486934, 34.56723104370523], [-77.3950599059546, 34.567231104722836], [-77.39497263880065, 34.5672993677217], [-77.39483707776063, 34.567409330529145], [-77.39466592458946, 34.567462921134585], [-77.39442870495112, 34.56753944128895], [-77.39427195008837, 34.56760728078397], [-77.394125731349, 34.5675944952212], [-77.39387799291987, 34.56757937521763], [-77.39367763716757, 34.56760806720102], [-77.39348404622373, 34.56746088495013], [-77.39346419865197, 34.56744432963793], [-77.39344667321828, 34.56742546604222], [-77.3933643921308, 34.56730836507635], [-77.3933001343844, 34.56722026622466], [-77.3931687694263, 34.567040983997586], [-77.39313284945878, 34.56700013855632], [-77.39309014748557, 34.566947230113726], [-77.39304022826772, 34.5670057357048], [-77.3930089271033, 34.56706404178079], [-77.3929378561991, 34.567334789107306], [-77.39269608788668, 34.56777741010669], [-77.3926406402884, 34.567906570151166], [-77.39260293603012, 34.56797174735054], [-77.39263512414747, 34.568032770457116], [-77.39269604892206, 34.56809440107084], [-77.39290751222907, 34.568352383265704], [-77.39298146790692, 34.56845864511738], [-77.39299264116161, 34.56865981117155], [-77.39298438182242, 34.56876586558833], [-77.39290175586581, 34.568999589754554], [-77.39269593239237, 34.56904669966143], [-77.39256031941062, 34.56910546698491], [-77.39243235677405, 34.569129532847086], [-77.39230195613231, 34.56911727579936], [-77.3920113023953, 34.569017553394744], [-77.39190800612752, 34.56898241602045], [-77.39187256826352, 34.56896443291748], [-77.39176607196018, 34.56894160074202], [-77.39151405040558, 34.568898439765064], [-77.39139091446796, 34.56886300648035], [-77.391284900017, 34.56883339441204], [-77.39112009980332, 34.568783315136415], [-77.39085361764134, 34.56864863974231], [-77.39084601453101, 34.568520583249935], [-77.39088243507119, 34.56821991364859], [-77.39092628318971, 34.56800459597124], [-77.39112030025521, 34.56736778606785], [-77.39112927076494, 34.56734483596903], [-77.39113500064697, 34.56733434551045], [-77.39114420159464, 34.567307269058595], [-77.39126033899548, 34.566617932702776], [-77.39125676448846, 34.56646764254023], [-77.39153716052083, 34.56602710967627], [-77.39167798705937, 34.56580609484182], [-77.3917519820066, 34.56554707163604], [-77.39190851148143, 34.56517997476842], [-77.39201333216258, 34.56477314244442], [-77.39198220373456, 34.564664722914806], [-77.39217104326495, 34.564354661443275], [-77.39223422684437, 34.56420379876046], [-77.39226722910537, 34.56416092509946], [-77.39230262189258, 34.56393892083623], [-77.39231852456757, 34.56376706838014], [-77.39232116966608, 34.56374672397082], [-77.39234575969732, 34.56355085442024], [-77.39230268800071, 34.56343271727143], [-77.39225855540866, 34.56339871716214], [-77.39200994728051, 34.56338701006221], [-77.39190875728701, 34.563357677063216], [-77.3918901784353, 34.56340428660349], [-77.39179573637445, 34.5637207244264], [-77.39170428963651, 34.5638556701932], [-77.39134926776255, 34.56415315113602], [-77.39112072442632, 34.56440594185926], [-77.39057470876676, 34.56486774084733], [-77.3906499112407, 34.56519874698146], [-77.39033271391729, 34.565181554583276], [-77.39005681492866, 34.565494286145174], [-77.38979785023821, 34.56555615946491], [-77.38954473830515, 34.56565216128985], [-77.38941990295581, 34.56574891641955], [-77.3893477327402, 34.56583210650976], [-77.38932061915729, 34.56589775576637], [-77.38934770765029, 34.565984703348875], [-77.3893950929002, 34.56604822032668], [-77.3895446421309, 34.566245642874385], [-77.3895758169876, 34.566285519112895], [-77.38972580367962, 34.56649317329115], [-77.3898618271786, 34.566668837635646], [-77.38954450555141, 34.56709161660883], [-77.38930767733831, 34.567004004219996], [-77.38909557612664, 34.56714468568086], [-77.3890464246839, 34.56721100668372], [-77.38875649571759, 34.5676330646344], [-77.38873539675706, 34.56765769734191], [-77.38867400993075, 34.567689283904315], [-77.38845764949735, 34.567823026434006], [-77.38836248854707, 34.567894751977654], [-77.3881617002587, 34.5679713612386], [-77.38796848196603, 34.56813943083533], [-77.38756048449338, 34.56828952444912], [-77.38718048537001, 34.568503023521956], [-77.38701726258536, 34.568601454003826], [-77.3867864783262, 34.56871616106294], [-77.38658103204894, 34.56884023905137], [-77.38646733586793, 34.56893731653149], [-77.38639245554238, 34.56899886136379], [-77.38622783092688, 34.5690685638411], [-77.38599844310997, 34.56921684054234], [-77.38584493773712, 34.569205515442334], [-77.38560447453905, 34.56921286377045], [-77.38545966368372, 34.56915799975064], [-77.3849598038186, 34.569074002281184], [-77.38484551272535, 34.56905928912937], [-77.38481657758787, 34.56901816884079], [-77.38438013794706, 34.56877883577914], [-77.38427921599467, 34.568322996284145], [-77.38402891724411, 34.567793863510786], [-77.38383053070665, 34.56775235910762], [-77.38382508681697, 34.567539338614075], [-77.38391397511828, 34.56740255615716], [-77.38402912904262, 34.5668613716705], [-77.38409336796273, 34.566651527054766], [-77.38409572266781, 34.566579488712186], [-77.38402921675167, 34.566476022543355], [-77.38375087427569, 34.566151821262736], [-77.38355069636995, 34.56588063480022], [-77.38353128461368, 34.5653465273609], [-77.38349198491557, 34.565039967805546], [-77.38341463937743, 34.5648647240805], [-77.38324168392222, 34.56487366652765], [-77.38278569164315, 34.56429266421043], [-77.38254940520174, 34.564223849984074], [-77.38245398335275, 34.56407379900684], [-77.3821358153685, 34.56388017472254], [-77.38202799390191, 34.56355276852], [-77.38180179248907, 34.563439305521946], [-77.38166627772105, 34.56335238364728], [-77.38158313729733, 34.56328195847172], [-77.38148190993735, 34.56320692863985], [-77.3813606629027, 34.56312927642639], [-77.38127241185057, 34.56306083370139], [-77.38096745213687, 34.562856527204666], [-77.38093716227796, 34.562797715017396], [-77.38087861328793, 34.562528755319065], [-77.38012293358022, 34.562163730147645], [-77.38009084140464, 34.562147489223214], [-77.38008289358737, 34.562143476986485], [-77.38006591009778, 34.56213735827092], [-77.3800794815904, 34.56212315167937], [-77.38009085095818, 34.56211312934704], [-77.38029987895625, 34.56167906723328], [-77.38025440412872, 34.56143712538184], [-77.3801631171749, 34.56127421737802], [-77.380122522377, 34.561246195149735], [-77.38009109951712, 34.56122036119749], [-77.37991061364289, 34.56108061421784], [-77.37986564876904, 34.561074071989886], [-77.3796972050264, 34.561085133357025], [-77.37943264680221, 34.56124003096691], [-77.37930321511047, 34.56128519827075], [-77.37918371933426, 34.56128660765661], [-77.3790757416833, 34.5614309584924], [-77.37851516059449, 34.56191709200938], [-77.37815128958319, 34.56202120733334], [-77.37810429070593, 34.562013763124455], [-77.37805797332535, 34.56200222060386], [-77.37772726561224, 34.56198882114909], [-77.3776048777616, 34.56206752549103], [-77.37742500152643, 34.56219231842416], [-77.37733324681238, 34.562252002903676], [-77.37720165570913, 34.562267455712714], [-77.37696465838123, 34.56215979778465], [-77.37693933828992, 34.56215784414964], [-77.37661682523606, 34.56213295886196], [-77.37654540757316, 34.56213554113025], [-77.37646294199033, 34.562143231816094], [-77.37634843563686, 34.562144881627326], [-77.37625693757336, 34.56214812320395], [-77.3761514644759, 34.562151691739835], [-77.37587465110236, 34.56219064382274], [-77.37575751555565, 34.56218478914838], [-77.37557395172124, 34.56213351252643], [-77.37554298163008, 34.56213345605081], [-77.37536359469804, 34.562132839184194], [-77.37523103706712, 34.56212794205177], [-77.37507965970906, 34.562125444403044], [-77.374969627906, 34.56221751608474], [-77.37487701365296, 34.56213593887068], [-77.37461764809076, 34.562118654944975], [-77.37457572128663, 34.56212471599838], [-77.37455160084336, 34.56210899014015], [-77.37448743831752, 34.56209223482073], [-77.37437877478193, 34.56205957138137], [-77.37426265384939, 34.56203750185376], [-77.37418182905729, 34.56199305885749], [-77.3739403135499, 34.562006798632225], [-77.3737879399554, 34.56185599276167], [-77.37333461215192, 34.56189778155258], [-77.37303446126799, 34.561452482056055], [-77.37300022908443, 34.56140639129814], [-77.37269047516874, 34.56098692658019], [-77.37252314077713, 34.56067703658576], [-77.3723705999311, 34.56052882387898], [-77.37229531229501, 34.55994956112753], [-77.3723101853827, 34.559858600901], [-77.3723813833366, 34.55966687349011], [-77.37244317423631, 34.559238210435396], [-77.3726083562011, 34.55896651698559], [-77.37265414547196, 34.55858580792997], [-77.37289190730239, 34.55807653914674], [-77.37282774782645, 34.557898506502355], [-77.37300152131976, 34.55786433386569], [-77.37325200825654, 34.558024650017714], [-77.37354860598963, 34.55824124233277], [-77.37378926379408, 34.55812812054964], [-77.37407038210979, 34.558209738766124], [-77.37418314548096, 34.55823524174909], [-77.37422810747245, 34.55826008583108], [-77.37431848544988, 34.55829553068882], [-77.37457700922532, 34.55839691967543], [-77.3747213758316, 34.558237471237504], [-77.37457711213463, 34.55810028950246], [-77.37448101381362, 34.55795117754988], [-77.37440888455932, 34.5578579423818], [-77.37428204785583, 34.55755799847468], [-77.37423072321623, 34.55740808982136], [-77.37411041555058, 34.55705183075173], [-77.37435630361949, 34.55677791303362], [-77.37457764121436, 34.55657803893222], [-77.374586971265, 34.55655859481156], [-77.37458856792884, 34.55654659958041], [-77.37466193138071, 34.55633551155609], [-77.37464869696265, 34.55626095305039], [-77.37465461864215, 34.55623042508303], [-77.37463606385442, 34.556189781594924], [-77.37460836554504, 34.55613095029123], [-77.37461551393606, 34.556089283742416], [-77.37457783097943, 34.556033245040155], [-77.37446301829905, 34.55585115025686], [-77.3743487084676, 34.555743807968746], [-77.37449207266346, 34.5553912596502], [-77.37440758565025, 34.5553107616381], [-77.37379050586178, 34.554655556075744], [-77.37372428061278, 34.55463149720856], [-77.37323127554103, 34.55463115037298], [-77.37233551202993, 34.55463023170658], [-77.37221486119988, 34.55473986850149], [-77.3721862612092, 34.55475091415642], [-77.37205896248412, 34.55480007786857], [-77.37162030200105, 34.555071709649255], [-77.37142691103585, 34.5551080847259], [-77.37119964078883, 34.55516882568788], [-77.37090804064769, 34.55525584195804], [-77.37063894253708, 34.55550461416257], [-77.37039143624558, 34.55530719132704], [-77.36993744244856, 34.555198648526], [-77.36985123354404, 34.55524198024712], [-77.36979542382083, 34.55518638785293], [-77.36978109688185, 34.55512827531699], [-77.36945745727098, 34.55492442687235], [-77.36932581467838, 34.55491120098606], [-77.36906363195163, 34.55473225600134], [-77.36891475333553, 34.55456450957552], [-77.36878354786343, 34.55442287230788], [-77.36866997578275, 34.5541417772325], [-77.3686361118257, 34.554056092508425], [-77.36862341085913, 34.554021383930134], [-77.36847312711345, 34.55390030446296], [-77.36844530873046, 34.55386476230034], [-77.36840143607546, 34.5538410829183], [-77.36827622178284, 34.553794704010194], [-77.36814810786112, 34.5538033794806], [-77.36790277306883, 34.55370064083337], [-77.3678825841666, 34.55369378189546], [-77.36755581951526, 34.55370932902677], [-77.3674906388056, 34.55366368608113], [-77.3669993230598, 34.55334113280773], [-77.36686427838985, 34.55326713853463], [-77.36671891903451, 34.553069659061265], [-77.36625988494609, 34.55316273604117], [-77.36593245847637, 34.55312241737877], [-77.36578303621259, 34.553119889358946], [-77.36549452075917, 34.55306823821688], [-77.36514834514406, 34.55307224171746], [-77.36506376927336, 34.55307762114309], [-77.36457803556438, 34.55306629569067], [-77.36436328148022, 34.55306372242217], [-77.36401674107381, 34.55300830978364], [-77.36386841471175, 34.552992862921755], [-77.3635803889614, 34.55296011506816], [-77.36341791606522, 34.55297872421036], [-77.36321014186612, 34.55290760193707], [-77.36279803605164, 34.55283295487467], [-77.36244474864138, 34.55274966135378], [-77.36221360429991, 34.552684579353546], [-77.36201631146767, 34.55267838878781], [-77.36194646040897, 34.5526439857957], [-77.3619424150332, 34.55260052232909], [-77.36192759076452, 34.552545440181085], [-77.36179844263557, 34.55237643079132], [-77.36178273615636, 34.552285119767916], [-77.36175734890077, 34.55213752402936], [-77.36173568781388, 34.55195535378873], [-77.36176360154948, 34.55181683231456], [-77.36179061347252, 34.55164308451647], [-77.36179253853852, 34.55148628165152], [-77.36181598032823, 34.55129442473909], [-77.36181752723463, 34.55114955952118], [-77.36182428832265, 34.55100499837262], [-77.36184671874268, 34.5507883940452], [-77.36176154396506, 34.5506679719541], [-77.36188003153146, 34.55053538782035], [-77.36199664286637, 34.55019216401724], [-77.36200462567932, 34.550143316967365], [-77.36200910491688, 34.550101452391814], [-77.36203157769465, 34.54968295664239], [-77.36199511692689, 34.54965503683206], [-77.36202900619332, 34.54961440541718], [-77.36182070022817, 34.54935978070251], [-77.36176982422278, 34.54919783247808], [-77.36176161677342, 34.54898759064706], [-77.3617557281822, 34.54892618427319], [-77.3615973400754, 34.548733022308575], [-77.36175188065296, 34.54848612401088], [-77.3617481716776, 34.5484491357118], [-77.36173113403119, 34.54822410596552], [-77.36173288980464, 34.54798015468256], [-77.36173385238666, 34.54797720549563], [-77.36166616993447, 34.547743811724054], [-77.36213985766418, 34.54727275691223], [-77.36223162147382, 34.54722933415042], [-77.36243232903455, 34.54714382413037], [-77.3625377282458, 34.54704221321093], [-77.36259731886652, 34.54691052146064], [-77.36293495520805, 34.54683974226737], [-77.36295557376236, 34.54682364088187], [-77.3631414252173, 34.54667850626541], [-77.36314813216327, 34.54666545363151], [-77.36322943745066, 34.546539372583936], [-77.36324646052196, 34.54648124340366], [-77.36328751999129, 34.546318571802075], [-77.36326738775455, 34.546289081579935], [-77.36326023264412, 34.546239580569264], [-77.36325130338162, 34.54604657254684], [-77.36333210847661, 34.545802051544804], [-77.36331880272259, 34.54577134959908], [-77.36335197811712, 34.5457705218446], [-77.36342321089168, 34.54573310003906], [-77.3637496848128, 34.54554669160763], [-77.3640216754535, 34.54561657622904], [-77.3644529775588, 34.54538384192951], [-77.36449080235681, 34.54534808386416], [-77.36425298635426, 34.545105071965295], [-77.3640987593972, 34.544945211242734], [-77.36398705639814, 34.54482357054076], [-77.36376913565738, 34.544694969705795], [-77.36352342483897, 34.54469170403186], [-77.36326380228996, 34.54475113898187], [-77.36301255279844, 34.54507836331916], [-77.3629883550139, 34.5451051445299], [-77.36298383963536, 34.545111659334836], [-77.36297419054932, 34.545122384728835], [-77.36294845529672, 34.54512687585713], [-77.3625775192092, 34.5453008917615], [-77.3622751369181, 34.5452078643428], [-77.36224899547683, 34.545173490618026], [-77.36218867468769, 34.545136878524744], [-77.36197694779784, 34.545118512158794], [-77.36175778488112, 34.54506249063974], [-77.36175636788272, 34.54503775173419], [-77.36174993032841, 34.545008061574], [-77.36167505361094, 34.54480463754324], [-77.36166534679953, 34.54464968447516], [-77.36161558957701, 34.54456837663939], [-77.36142070598139, 34.54438392965718], [-77.36139872344297, 34.54436870967303], [-77.36135867902071, 34.544360550836394], [-77.36126682088596, 34.54427627934492], [-77.36143048180779, 34.54395639285095], [-77.36145027924096, 34.543868807255876], [-77.36145496156635, 34.5438570358072], [-77.36145378499005, 34.54384427160982], [-77.36143348915033, 34.54382486963321], [-77.36118784953486, 34.5435627776139], [-77.36126594909436, 34.54339460681903], [-77.361084745441, 34.54319422534574], [-77.36120023634727, 34.54307063863225], [-77.36143024940607, 34.54288129643335], [-77.36144027185242, 34.542870473663775], [-77.36145548843871, 34.542862756379265], [-77.36147806092987, 34.54286036794793], [-77.36224563193966, 34.542644884694084], [-77.36247852450532, 34.542585924812656], [-77.36269954556373, 34.54248970338245], [-77.36303796991848, 34.54233076432467], [-77.36333518069499, 34.54230223408721], [-77.36374024612846, 34.54205894662317], [-77.36378163269046, 34.5420227203541], [-77.36383048001437, 34.54200883092065], [-77.36389559464251, 34.54199614358741], [-77.36422603786833, 34.541878292844004], [-77.3645085144839, 34.54187964230234], [-77.36461858127497, 34.54187974569417], [-77.36476307830512, 34.54191161697109], [-77.36499931846151, 34.54211842740965], [-77.36500356358286, 34.54212180204525], [-77.365001062701, 34.54212496753172], [-77.36493688910443, 34.542376231274154], [-77.36520023108714, 34.54271289399373], [-77.3645996920952, 34.542707197103255], [-77.36427708241463, 34.542760492709526], [-77.36420357796646, 34.54286195956837], [-77.3641868675508, 34.54297391794442], [-77.36412075166409, 34.54318115879546], [-77.36387813692181, 34.54345768251977], [-77.3639276341536, 34.543500907671024], [-77.36384993460207, 34.543546125951295], [-77.36391954257613, 34.54390911867074], [-77.3639264258994, 34.543990732561376], [-77.36405676849573, 34.54414347787649], [-77.36410887340337, 34.54424859427316], [-77.3642450617214, 34.544235084507015], [-77.36456683773798, 34.54414641287676], [-77.36482884346549, 34.54386074843353], [-77.36480397984145, 34.543513556966914], [-77.36559527776963, 34.54326069264525], [-77.3656446706336, 34.54292911591537], [-77.36559193520651, 34.54277152441897], [-77.36617365448895, 34.54254754450637], [-77.36672394053599, 34.542608452242426], [-77.36665991983526, 34.542800477267875], [-77.36725056461368, 34.542716939826896], [-77.36773645596492, 34.54287727387494], [-77.36783373358948, 34.54287755241082], [-77.36921522445957, 34.54267927575142], [-77.36931226716008, 34.54263616225828], [-77.36940245743043, 34.542655682409496], [-77.37001506417117, 34.54262393806807], [-77.37009779998905, 34.54261967061343], [-77.37058511405642, 34.542726034600676], [-77.37087791988588, 34.54284104944508], [-77.37117293116195, 34.54263819849652], [-77.37123573527312, 34.542448046387186], [-77.37134305952398, 34.54215227211482], [-77.37148538534156, 34.54179678696046], [-77.37168748898762, 34.54176775056915], [-77.37207779329529, 34.541588259796704], [-77.372104839513, 34.54157559621513], [-77.37247871082232, 34.54150058464783], [-77.37284913019394, 34.5417258902078], [-77.3730024531633, 34.54186169880717], [-77.37321090863135, 34.542163409247884], [-77.37322121069695, 34.54217890674956], [-77.37324640857706, 34.54226835216407], [-77.3734070161427, 34.54252105893986], [-77.37338079028271, 34.54262858252887], [-77.37335997831451, 34.54270864848327], [-77.37323018024213, 34.542982481651535], [-77.37318953354495, 34.54312243687555], [-77.37314992041232, 34.543151510980266], [-77.3728076295015, 34.54343336778656], [-77.37278874499725, 34.54347191964241], [-77.37260769658192, 34.5437193079716], [-77.37267867600103, 34.543867338953994], [-77.37274796241455, 34.54398560460645], [-77.37297849573571, 34.54415552753535], [-77.37309402295195, 34.54456606532246], [-77.37304707492385, 34.5446353007228], [-77.37279558524543, 34.54491517848394], [-77.37319155349778, 34.54468227072402], [-77.3735088707839, 34.544858028091326], [-77.37358001764154, 34.54486375335344], [-77.37372431786123, 34.54493633916707], [-77.37385272830963, 34.544935102775476], [-77.3739712563368, 34.544923159665174], [-77.37404731942446, 34.54493322895666], [-77.37409510317678, 34.54492882006467], [-77.37416857496743, 34.54487805322112], [-77.37418938465274, 34.544850505102374], [-77.37420044356118, 34.544817310211904], [-77.37410350068802, 34.54472788116898], [-77.37415328266025, 34.54458459897472], [-77.37413165208511, 34.544478995310925], [-77.37429345508488, 34.54426407918899], [-77.37432818605448, 34.544172979804955], [-77.3743835069383, 34.54405736741197], [-77.37441385696947, 34.54394866669041], [-77.37451055600756, 34.543764992697675], [-77.37463149188127, 34.54352535336671], [-77.37456754671305, 34.543436858616076], [-77.3745604920094, 34.54329258971059], [-77.37456063417665, 34.54294819593716], [-77.37485720481251, 34.54244353056502], [-77.37489911128603, 34.54240975674823], [-77.37532258349817, 34.54217320186426], [-77.37560837798587, 34.541981304818016], [-77.37575987234614, 34.54188921013386], [-77.37600405659674, 34.54184448953827], [-77.3762809665421, 34.54179377450957], [-77.37639825614087, 34.541772807244044], [-77.37651819632995, 34.54176136737173], [-77.37664142641448, 34.54166896522575], [-77.37673521382617, 34.54161857990718], [-77.37670656028533, 34.54147156330459], [-77.37665175001813, 34.54142264793626], [-77.37640991196209, 34.54125904550586], [-77.37633369454794, 34.541271028700976], [-77.3756841469489, 34.541355689522476], [-77.37562232980028, 34.54136659497186], [-77.3755799246876, 34.54135886915883], [-77.37553360486011, 34.54133898995179], [-77.3751330470293, 34.541214364248404], [-77.37498819717514, 34.540927944514436], [-77.37495332325545, 34.540867607982534], [-77.37487799249767, 34.54046687943245], [-77.3748774987339, 34.540454242740424], [-77.37487340845726, 34.54044528905945], [-77.37486046981444, 34.540341207469055], [-77.37481048317883, 34.54001010797517], [-77.37475360695262, 34.539982441967794], [-77.3748121175172, 34.539938145509836], [-77.37487398920351, 34.53974580440285], [-77.37492917566087, 34.539498394008746], [-77.37503171690452, 34.539452699586526], [-77.37567334623648, 34.5391188621837], [-77.3761277518849, 34.53908802239703], [-77.37646062446325, 34.53902377942619], [-77.37682240554203, 34.53896971672441], [-77.3768720844191, 34.53895338642863], [-77.37725079737965, 34.53880095786132], [-77.37750162303217, 34.53876290992745], [-77.37803955012919, 34.53864058154331], [-77.37866304635548, 34.53854177568391], [-77.37882609712472, 34.53857739756693], [-77.37935352838713, 34.53867029516057], [-77.37960997341577, 34.53863205329822], [-77.3801677709248, 34.538222640204474], [-77.38030381269759, 34.53813913886829], [-77.38035899303765, 34.53795023981204], [-77.38041150617585, 34.53790688294771], [-77.38057145933433, 34.53777264064259], [-77.38067564973454, 34.5377421660349], [-77.38080626566136, 34.53780943364805], [-77.38085498773303, 34.5378477962847], [-77.38088862335594, 34.53792689920569], [-77.38065785726296, 34.538151978568884], [-77.38118321992943, 34.53849868796694], [-77.38121161211981, 34.53854345665401], [-77.38151948811858, 34.53851740321937], [-77.38196884890365, 34.5384758465501], [-77.38260621195695, 34.538453170379825], [-77.382748468724, 34.53871871254596], [-77.38279874399723, 34.53879023716714], [-77.38283394262201, 34.53881752593144], [-77.38298406739824, 34.53913276110267], [-77.38330920337685, 34.539238653758545], [-77.3832450360763, 34.53941800917702], [-77.38322507968866, 34.53955989965684], [-77.38342736889196, 34.53971127640501], [-77.38347244990779, 34.53972866492401], [-77.38351039559055, 34.53974453374742], [-77.38385985806885, 34.53991817223397], [-77.38397577222729, 34.5401218547465], [-77.38408152744236, 34.540233178916395], [-77.3841426380071, 34.540342622914636], [-77.38427833554988, 34.540505054042214], [-77.38430804379088, 34.54054451685949], [-77.38433450126445, 34.54055978558597], [-77.3843336899443, 34.540595702778795], [-77.38444922428604, 34.54092047233911], [-77.38462754027238, 34.541007188047736], [-77.38444623804614, 34.541147096690395], [-77.38425843096886, 34.541386050029374], [-77.38414361783573, 34.54156663870822], [-77.38399249141787, 34.54174917217417], [-77.38394000783617, 34.54184083258056], [-77.38390201212673, 34.5418757590118], [-77.38385190371636, 34.54200372955528], [-77.38381855646864, 34.54210317809206], [-77.38384670941619, 34.54223358855187], [-77.3838967357247, 34.542304536202955], [-77.38398799766502, 34.54241423603302], [-77.3840848409199, 34.54255444048077], [-77.38393586037694, 34.542885542661566], [-77.3837831966594, 34.54308760187291], [-77.38368923924655, 34.543262273610665], [-77.38367381932014, 34.54343904034253], [-77.3837897684239, 34.543576316830226], [-77.38375376063951, 34.54379031274553], [-77.38368751557488, 34.543911527116364], [-77.38386171530144, 34.54384281065217], [-77.38420476868231, 34.543761224841646], [-77.38459233869153, 34.543709267296265], [-77.38499341006468, 34.54360707113584], [-77.38540871315766, 34.54360177613883], [-77.38628038146818, 34.543396800724935], [-77.3865709666342, 34.54328618872134], [-77.38725977581646, 34.5435655416763], [-77.38729501820836, 34.54359423211623], [-77.38734924947785, 34.543590841118274], [-77.38802411911368, 34.543944960665385], [-77.38808110069016, 34.543964728731595], [-77.38812562611966, 34.543980278197786], [-77.3882760001011, 34.54405858052993], [-77.38841966015504, 34.54407257977384], [-77.38851590581567, 34.54408233103801], [-77.38866770627355, 34.54400340057606], [-77.38872820874535, 34.54397428554694], [-77.38891369593634, 34.54385116286451], [-77.38894413817883, 34.54383095584697], [-77.38898013428322, 34.54380706201409], [-77.38932020644135, 34.543517169222106], [-77.38933145140906, 34.54351155209185], [-77.38934702914834, 34.543488977885914], [-77.389249359435, 34.543482720625114], [-77.38892025567321, 34.5435600894735], [-77.38876239607015, 34.54344881794904], [-77.38879930299159, 34.54334348050363], [-77.3886784225279, 34.543205106348395], [-77.38831097249046, 34.542924253961715], [-77.3882063622891, 34.542904123070414], [-77.3881507672566, 34.54286516482931], [-77.38745031876616, 34.54260793557081], [-77.38737202180671, 34.54258121778967], [-77.38736108797235, 34.54257845750474], [-77.38735130889287, 34.54257301015015], [-77.38735150804624, 34.542559887730036], [-77.3870232615653, 34.54213065898459], [-77.38729942507004, 34.54165940672584], [-77.3873015471232, 34.54160085775589], [-77.38732931896023, 34.54155579509381], [-77.38739733768469, 34.541458834526544], [-77.3874453180854, 34.54133528849395], [-77.38747652432278, 34.541283862429616], [-77.38751630416063, 34.54115006956282], [-77.38755782851212, 34.54107422777745], [-77.38752886375195, 34.54100279175198], [-77.38752187827707, 34.54090445457066], [-77.38746734417566, 34.54084244658238], [-77.38741518685725, 34.540667494792544], [-77.38737322867587, 34.540637775397684], [-77.3873606094678, 34.54061300924344], [-77.38736209422962, 34.540578429541355], [-77.38711217421582, 34.540159177522284], [-77.38715776634629, 34.53983519232347], [-77.3871673067185, 34.53966156069561], [-77.38721013614882, 34.53951123096851], [-77.3873313028489, 34.53922090898181], [-77.38736357358344, 34.539143587152154], [-77.38706150672957, 34.53894392644446], [-77.38705998331359, 34.538943500348616], [-77.38667219155633, 34.538800271686945], [-77.38650601185972, 34.538777613551936], [-77.38615138001724, 34.53866581445394], [-77.38588952583746, 34.53869188312902], [-77.38564447422038, 34.53874985265425], [-77.38509908871475, 34.538927673959456], [-77.38464174017088, 34.53884325332601], [-77.38431770257344, 34.538762650121555], [-77.38410349218942, 34.53863444757346], [-77.38391769039731, 34.53842580887556], [-77.38391972675616, 34.53841611781889], [-77.38391692227982, 34.53840637178342], [-77.38388428708313, 34.53817639657615], [-77.38370441723342, 34.53780635947095], [-77.3837566347644, 34.537705142822], [-77.38375640253977, 34.5375822265093], [-77.3838140169947, 34.53736299860005], [-77.38426177139036, 34.53719954355076], [-77.3843535735162, 34.53717500510615], [-77.3844002657242, 34.53715144946074], [-77.38514779982214, 34.53677082871394], [-77.38531503329583, 34.53660300672772], [-77.38564864546646, 34.536452949368346], [-77.38641610611919, 34.53614516738733], [-77.38673564582446, 34.535988293533386], [-77.38689197069758, 34.53587993348202], [-77.38707391763997, 34.53575771282449], [-77.38731803117257, 34.535590477703266], [-77.38753174300939, 34.53550012311848], [-77.38782473607361, 34.53546713090722], [-77.38831771785578, 34.535460466995715], [-77.38846844062321, 34.53546252013548], [-77.38868539850155, 34.53552526022864], [-77.38870861119734, 34.53553351406334], [-77.38872587983715, 34.53551942059033], [-77.38892140172928, 34.53537690085601], [-77.38910839941292, 34.535211923691364], [-77.38925700835769, 34.535043456761215], [-77.38955311990554, 34.534910416781976], [-77.38976585639733, 34.53479425839103], [-77.38990367438699, 34.53475926157548], [-77.39002065373163, 34.53476985680617], [-77.39033247524591, 34.53479798183348], [-77.39059044957266, 34.53482120406706], [-77.39068715775525, 34.534829828952105], [-77.39106654759831, 34.53494351251246], [-77.39116690534888, 34.53497891882587], [-77.39146712093057, 34.53505682204339], [-77.39150454738771, 34.535094674007624], [-77.39155897957605, 34.535110695507996], [-77.3920111836314, 34.53519385144156], [-77.39224828928816, 34.53523042351844], [-77.39227600866136, 34.53523472506756], [-77.39233322768915, 34.53524381860715], [-77.39253950787078, 34.53527660180395], [-77.39263943112672, 34.53529248208483], [-77.39272341395196, 34.535239152944676], [-77.39278655306892, 34.53508949370057], [-77.3928940355002, 34.53491806616182], [-77.39285326987563, 34.53480566009574], [-77.39285026349015, 34.53479979387853], [-77.39279149992319, 34.534688026999596], [-77.39275947218755, 34.53462711132049], [-77.39266455428786, 34.53446151007612], [-77.39265835622508, 34.53445120390821], [-77.39254557785947, 34.53430622028072], [-77.39248616092982, 34.534242416134774], [-77.39227430679276, 34.53407411008085], [-77.39223709782675, 34.53405696792287], [-77.39216928049201, 34.53404330409944], [-77.39188473067749, 34.533942743380834], [-77.3915903324822, 34.53406392649785], [-77.39149155555604, 34.5339713122499], [-77.39142300679349, 34.53390614516048], [-77.39125091365982, 34.533838106762744], [-77.39125923770469, 34.53378221513797], [-77.3914429128463, 34.533658439391715], [-77.3914652731818, 34.5336340853559], [-77.39149952611263, 34.53361722186884], [-77.39162926589721, 34.53355155092284], [-77.39195449415443, 34.5333753420578], [-77.39201867027275, 34.5332566215642], [-77.39209548518392, 34.5330746156303], [-77.39220729572197, 34.53300163418024], [-77.39229995343551, 34.53293428989956], [-77.39255791585575, 34.5326754934531], [-77.3930062605493, 34.532508620198655], [-77.39309517876113, 34.53248206014007], [-77.39317293155254, 34.5324779205698], [-77.3937347063221, 34.53243977817786], [-77.39388102202932, 34.53244674904458], [-77.39425394978159, 34.53227348784412], [-77.39435563873404, 34.532059757612686], [-77.39467410293219, 34.532089325190945], [-77.3950630033392, 34.53191657954809], [-77.3950735246927, 34.53191220215947], [-77.3951107117125, 34.53188044283954], [-77.39544017637989, 34.53161263261638], [-77.39543359640851, 34.53159065736032], [-77.39527190692006, 34.531275442433525], [-77.39475499871494, 34.53122184375019], [-77.39472156438485, 34.53120939874556], [-77.3946937201836, 34.531216389685845], [-77.3946705382529, 34.53121961793365], [-77.3943002421887, 34.5312590770127], [-77.39396218878161, 34.53130168244293], [-77.39390654802173, 34.53131135713], [-77.39386167763595, 34.531322931447335], [-77.39371186116367, 34.5313723760796], [-77.39356001093434, 34.5314245576125], [-77.39351094280995, 34.5314485955398], [-77.39330562860548, 34.53154917621867], [-77.39311481747146, 34.53160889770287], [-77.39297577635236, 34.53156592221345], [-77.39276939010131, 34.531508372916434], [-77.39249158652734, 34.53144976258538], [-77.39233422833166, 34.531411018499576], [-77.3919266649491, 34.53162997054673], [-77.39186083951948, 34.531839880580726], [-77.39153514411349, 34.53203491186801], [-77.39140103799909, 34.53219547845143], [-77.39131347510006, 34.532342063611026], [-77.39120831163135, 34.53251584703803], [-77.3909682431886, 34.532603536499636], [-77.39073480703024, 34.53271390333687], [-77.39062566189858, 34.53272915229267], [-77.3900170634379, 34.532841049725896], [-77.38994704404348, 34.532834181021855], [-77.38984541496883, 34.53284636498378], [-77.38958033647124, 34.532947825062706], [-77.38923733161089, 34.533047298482145], [-77.38915688329861, 34.533060725714265], [-77.3888070557488, 34.5333042140598], [-77.38878197036627, 34.533322501063324], [-77.38865940516875, 34.533386394649156], [-77.3883610139984, 34.53354024119252], [-77.38819831516383, 34.53353531209404], [-77.3877260255792, 34.533610397335785], [-77.3875751342872, 34.533576479463015], [-77.3874251765123, 34.53365597195], [-77.38696696174928, 34.53418524641798], [-77.38686204359608, 34.534319279962105], [-77.38684319952945, 34.53436625127896], [-77.38677159671651, 34.534395156423614], [-77.38672522233136, 34.534368317436076], [-77.38663224029064, 34.53435242672342], [-77.38598924443286, 34.534274722309554], [-77.38520606708015, 34.53455302728469], [-77.38519784984406, 34.53455473659103], [-77.38519344621217, 34.534557237373065], [-77.38518959576412, 34.53456050410188], [-77.38480011598732, 34.53478480428063], [-77.38471606000338, 34.534821724577725], [-77.38445560531213, 34.5348798990791], [-77.3844064469245, 34.534834868882676], [-77.38431124153797, 34.53474779083737], [-77.38429515031785, 34.53468950334859], [-77.38427292603748, 34.53460620712118], [-77.38421823279734, 34.53445576491798], [-77.38418236538921, 34.534362525945745], [-77.38410910459056, 34.53422667120956], [-77.38397267875722, 34.53396351620106], [-77.38394874432633, 34.533760133980365], [-77.38364943682978, 34.53359320387903], [-77.38304770134287, 34.53329033908979], [-77.3828719004706, 34.53326026213819], [-77.3826118296484, 34.53313755288064], [-77.38221738891275, 34.53310979481866], [-77.38208965485728, 34.533135743014434], [-77.38188737067648, 34.53320329456768], [-77.38081754367346, 34.53342226663895], [-77.38051272219558, 34.53343645315262], [-77.38026291944107, 34.533467679764144], [-77.37972407050592, 34.53359477631331], [-77.37940977341944, 34.53363084724491], [-77.37927751193756, 34.533666541721296], [-77.37893106903579, 34.53394490554683], [-77.3788681643912, 34.534003071900315], [-77.37857888672951, 34.534320079239784], [-77.37793367819842, 34.53462745384283], [-77.37757180628299, 34.53482358031149], [-77.37733567679658, 34.535058250669366], [-77.3768856215546, 34.535483172264705], [-77.37662536601232, 34.53579537909457], [-77.37657604955541, 34.53582927518297], [-77.37653226771648, 34.535866008929744], [-77.37620338029392, 34.53614468525693], [-77.37592039613443, 34.53627286335206], [-77.37573662150304, 34.53633107104115], [-77.37532231190256, 34.5364728681587], [-77.37502977215846, 34.53656718002055], [-77.37494552638545, 34.53659530294317], [-77.37482603305543, 34.53661859786971], [-77.37415550875137, 34.5368118660313], [-77.37342542015847, 34.53678013357068], [-77.37337121516515, 34.53677635524296], [-77.37333677760252, 34.53678046856876], [-77.37328116229043, 34.53676706413494], [-77.3728092354585, 34.53669704584695], [-77.37267658304219, 34.53641585303966], [-77.37265560012888, 34.53636756466106], [-77.37263063383439, 34.53634944980869], [-77.37259682941578, 34.536305060805965], [-77.3724060428603, 34.536036671597216], [-77.37233946093185, 34.53592346949907], [-77.37219759183257, 34.535711675589596], [-77.3721906090006, 34.53570009408618], [-77.37217960781142, 34.535677388800345], [-77.37212883444732, 34.53546416827087], [-77.37199256338312, 34.53508969388237], [-77.37199012703952, 34.534994502574705], [-77.3722325631172, 34.53471958170687], [-77.37239144094272, 34.53444701048845], [-77.37252774990554, 34.534356652341806], [-77.37264262419976, 34.534290802169124], [-77.37298261870724, 34.53415172371414], [-77.37343442176017, 34.53399509574943], [-77.3736255627176, 34.533897317025364], [-77.3742245324176, 34.533773384729486], [-77.37431591468187, 34.5336799847397], [-77.37434198185392, 34.533605353673295], [-77.37445706182584, 34.53341481175157], [-77.37441029344045, 34.53328567558603], [-77.37438723822628, 34.533180047090504], [-77.37437359912468, 34.53309859877996], [-77.37424786612281, 34.532746230758136], [-77.3742352323019, 34.5327205438532], [-77.37423312375506, 34.53271260390736], [-77.37423704534106, 34.53270470111094], [-77.37424897033475, 34.53269762330996], [-77.37461693304117, 34.53239281197422], [-77.37490233393972, 34.532215458366124], [-77.3750469795223, 34.532127431139074], [-77.37514232540016, 34.532151706557855], [-77.37551892867606, 34.5322314266056], [-77.37557275902128, 34.53227467666136], [-77.37582721372152, 34.53233984917919], [-77.37604779932002, 34.53231381252064], [-77.37629535661884, 34.532415341803556], [-77.37647054105516, 34.532476553884834], [-77.37649934695033, 34.53263076528506], [-77.3766040840866, 34.53270068501309], [-77.37673282854098, 34.53276078560857], [-77.37690827802152, 34.53276242052645], [-77.37699802793024, 34.532638365490996], [-77.3770482848618, 34.53258218288034], [-77.37706602199695, 34.532508502230286], [-77.37700539063954, 34.53231378951682], [-77.3770052195878, 34.5323131265119], [-77.37700508672368, 34.53231302959581], [-77.37688195625164, 34.53216504402271], [-77.37662214570686, 34.53190462683821], [-77.37660442185387, 34.531892358761674], [-77.37660270844712, 34.53188137731527], [-77.37662337285292, 34.531850541081255], [-77.37685752722052, 34.53149601540648], [-77.37688450627225, 34.531197458477216], [-77.37704625991873, 34.53083811686486], [-77.37717016845822, 34.53065472798167], [-77.37722629968736, 34.53032250288315], [-77.37741769509992, 34.52982807962947], [-77.37741272578492, 34.52980596795995], [-77.37743317377411, 34.52978929795148], [-77.37745570237533, 34.52976597693996], [-77.37791084600158, 34.52924449445976], [-77.37806022127697, 34.529100960094524], [-77.37826353525598, 34.52876023967724], [-77.37831988360793, 34.52869586282314], [-77.37841070936193, 34.528278090404505], [-77.37899830909956, 34.5281083880161], [-77.37906655273706, 34.52796615106601], [-77.3792440586021, 34.52807295470702], [-77.37980324479153, 34.52802168433328], [-77.3798502993209, 34.52802212500731], [-77.37994008293288, 34.52802869285652], [-77.38041866569539, 34.52790358840689], [-77.38064003849733, 34.52781346687796], [-77.38088556897303, 34.52749525988767], [-77.3808536895499, 34.52735119754382], [-77.3809241740054, 34.52717284690461], [-77.38103974690122, 34.526834707281914], [-77.38103681836797, 34.52657548280712], [-77.38108971149717, 34.52633783950708], [-77.38099003429792, 34.526157286835286], [-77.38094694768971, 34.525538415388965], [-77.38086230398892, 34.52539131108971], [-77.3808236928654, 34.525317571277384], [-77.38081642418565, 34.52497824715994], [-77.38086400712761, 34.524901404230654], [-77.38104300386883, 34.524591790767126], [-77.38211376183608, 34.5243406002166], [-77.38228740171523, 34.524395028458784], [-77.38259645672159, 34.52435411337501], [-77.38385198647916, 34.523989894423984], [-77.38386659353793, 34.52398656008461], [-77.38387791381511, 34.52398411732025], [-77.38389230836088, 34.5239750140166], [-77.38439604888168, 34.523242815251535], [-77.38447910292788, 34.522911050428625], [-77.38458315221254, 34.52247042445802], [-77.38483216086217, 34.521880798937104], [-77.38393308379253, 34.5210452902154], [-77.38389833222773, 34.521057670082925], [-77.38277235766591, 34.52145965501238], [-77.3823537506095, 34.5214624403204], [-77.38196039808447, 34.52205801617447], [-77.38180873371965, 34.522316859097394], [-77.38167599364736, 34.52241633946903], [-77.38154055916671, 34.522710076903934], [-77.38148391975281, 34.52281957771415], [-77.38080604306133, 34.52291672939704], [-77.38075127142544, 34.52290101293262], [-77.38033827395238, 34.522788130762315], [-77.38016148175562, 34.52255440332638], [-77.3800865376247, 34.52249593315781], [-77.37997780247673, 34.52239346070482], [-77.37967264734107, 34.52232653225023], [-77.37919483084482, 34.52230562806704], [-77.3786743896111, 34.522116831776486], [-77.37841472792049, 34.52209131648951], [-77.37800050504987, 34.5221183231243], [-77.37762908523857, 34.522121409225505], [-77.3771380146995, 34.522314621907356], [-77.3768373263214, 34.5224210082539], [-77.3767186070475, 34.52248804553235], [-77.37655737884825, 34.52258439722826], [-77.37604080643897, 34.52293007698517], [-77.37569853432848, 34.522921836617456], [-77.37560609089793, 34.52294016846123], [-77.37525413551569, 34.523005008792154], [-77.37460019306485, 34.52335620347267], [-77.37459542728396, 34.5234418416509], [-77.37445779427094, 34.52350551740617], [-77.37421274163297, 34.52356408386713], [-77.37298960071902, 34.52365394118576], [-77.372884614071, 34.52364751871324], [-77.37283606892444, 34.52364086677098], [-77.37274805632778, 34.52362317650382], [-77.37210174275823, 34.523554917168994], [-77.37133586144893, 34.52381116608181], [-77.37131073596846, 34.52381988104715], [-77.3712944315409, 34.523822553848426], [-77.3712839460952, 34.52383419748853], [-77.37125144526074, 34.52387508202608], [-77.37070825574764, 34.524406820843616], [-77.37065031928886, 34.52450256436912], [-77.37079212360342, 34.52488438912062], [-77.37074209158072, 34.525043925847896], [-77.37074593616771, 34.52513587357603], [-77.37071024630657, 34.525250450282755], [-77.37069760718643, 34.52538766577813], [-77.37070769513454, 34.525523896915345], [-77.37047991506905, 34.52583350535629], [-77.37043898319777, 34.52588986110489], [-77.37041662178986, 34.52591781526728], [-77.37007954635888, 34.52617909548505], [-77.37000158225769, 34.526173747296426], [-77.36968778599405, 34.52614655671712], [-77.36956564687469, 34.526117052488786], [-77.36940939582601, 34.52606296350757], [-77.36945261809133, 34.5259066383357], [-77.36935129391901, 34.52558168279787], [-77.36933652570303, 34.52532493231014], [-77.36924880834428, 34.52510679551434], [-77.36945337048603, 34.52491358112732], [-77.36952338091379, 34.52457757548029], [-77.3697328539292, 34.5241676913789], [-77.36978261674498, 34.52408036360297], [-77.36987223045745, 34.524037648794206], [-77.36980668675702, 34.524003373529254], [-77.36980617037602, 34.52359511338621], [-77.36982223672472, 34.523555198901384], [-77.36980910508441, 34.5235187465151], [-77.36981693365027, 34.52310363961059], [-77.36990952302953, 34.523052965080396], [-77.37054890985874, 34.522802816508616], [-77.37118429364875, 34.52277555048687], [-77.3713400065746, 34.52253361064547], [-77.37148079466506, 34.522735822810674], [-77.37198460824158, 34.52266825352764], [-77.3721222793525, 34.522652082495654], [-77.37226277346858, 34.52262653313649], [-77.37274971801371, 34.522543822963755], [-77.37291210656781, 34.52243838836432], [-77.37309525080327, 34.52247899955813], [-77.3734853912454, 34.52240506659988], [-77.37370265706178, 34.52219267630814], [-77.37389060443951, 34.522105522958896], [-77.37390389044714, 34.52186669455136], [-77.37353769282917, 34.52193381383499], [-77.37292343725255, 34.52194006378991], [-77.37244733731362, 34.52200397674598], [-77.37213476263685, 34.522103292593904], [-77.37196204572064, 34.52216057086725], [-77.37141555816085, 34.52230241542731], [-77.37134574928793, 34.52228125361708], [-77.37101650187441, 34.52212176511605], [-77.37084436576961, 34.52193892671536], [-77.37103908747821, 34.52171148165953], [-77.3711134354686, 34.521410494012244], [-77.37137644806415, 34.52093223927271], [-77.37141623345745, 34.520901580833645], [-77.37143896377304, 34.520873921746265], [-77.3721755826609, 34.520308778799176], [-77.37295221632984, 34.52065581056934], [-77.37295237345413, 34.52065595109545], [-77.37295262848558, 34.520656239074015], [-77.37295358003253, 34.52065561399936], [-77.37295266729086, 34.520654532437234], [-77.37228297603862, 34.520197206599384], [-77.37267155329602, 34.519716950617344], [-77.37266704375962, 34.51952338053863], [-77.37298267186858, 34.519334951051], [-77.37355904196451, 34.51860971026024], [-77.37419282554869, 34.51827898262026], [-77.37457943143545, 34.51815153423572], [-77.37514171906416, 34.518032476472335], [-77.37568196360911, 34.51801014817479], [-77.37615715444358, 34.51780468173072], [-77.37677315337703, 34.51754768246261], [-77.3776454305022, 34.517041274976066], [-77.37770587746434, 34.51700811425286], [-77.37774504436487, 34.51700894419806], [-77.37778235818094, 34.516998403636244], [-77.37914585630773, 34.51671533817849], [-77.3793234019843, 34.516632422950416], [-77.37947723909511, 34.516680491139184], [-77.38001703559988, 34.516699301728806], [-77.38010632789259, 34.516719917751225], [-77.38017227363872, 34.51667691555565], [-77.38024180558116, 34.516584288008396], [-77.38048360487734, 34.51637281588928], [-77.38060037414616, 34.51631272464219], [-77.38090348791886, 34.516178879842045], [-77.38097011756291, 34.51611283092679], [-77.38127828351314, 34.516040720844416], [-77.38129880176213, 34.51605245182158], [-77.38137909296472, 34.516013216306234], [-77.38164803387664, 34.51594596418076], [-77.3816939227038, 34.515934489055034], [-77.3819018826812, 34.51580984203217], [-77.38247927596133, 34.515914466619535], [-77.38291320150577, 34.51556811547171], [-77.38358174902298, 34.515503214019375], [-77.38405668579713, 34.515577801597296], [-77.38435175927859, 34.515274611546296], [-77.3850951323359, 34.514987572193874], [-77.38543144946732, 34.514806519791605], [-77.38564523368491, 34.51474741812971], [-77.3859524617071, 34.51467327531947], [-77.38682717894943, 34.51449216421369], [-77.38722396420687, 34.514350560431424], [-77.38738688105154, 34.51426777449912], [-77.3878158731131, 34.51422753154377], [-77.38800976506869, 34.51430984935341], [-77.38852482644579, 34.51449278914108], [-77.38859624724772, 34.514602147108654], [-77.38878592213845, 34.514696728837436], [-77.38941757309722, 34.51494574256911], [-77.38990778240792, 34.51527258065846], [-77.38995226453336, 34.515506464298674], [-77.38974471934945, 34.515911355592465], [-77.38909079155249, 34.51615902702538], [-77.3887521951024, 34.5161923261183], [-77.3885413725694, 34.51631932962843], [-77.38834271830564, 34.516477726093214], [-77.38752354654815, 34.51681754151366], [-77.38715871720945, 34.51724148497932], [-77.38648356435623, 34.51716816905384], [-77.38622311335035, 34.517178280094384], [-77.38557539576729, 34.51783919248551], [-77.38555768468952, 34.517847909976], [-77.38400737833305, 34.51775887080859], [-77.38261794455492, 34.51816458877217], [-77.38242777719923, 34.51819058095906], [-77.38203671779166, 34.51812175254933], [-77.38086313911622, 34.51796071642052], [-77.3803424393808, 34.518290854038526], [-77.37975588694661, 34.51840080301831], [-77.37928255762131, 34.518434654078895], [-77.37918829722477, 34.51834781871414], [-77.378590534884, 34.518431898616896], [-77.37849439368094, 34.51857749575595], [-77.37810693385603, 34.51893337138956], [-77.37810180127026, 34.51918748979982], [-77.37769320549785, 34.519294418319305], [-77.3769344361205, 34.5196129095721], [-77.3761069818232, 34.52001487545892], [-77.37576337678033, 34.52025057213179], [-77.37577251747939, 34.520451711309335], [-77.37548675461966, 34.52078011048786], [-77.37551237554342, 34.520907798980005], [-77.37556535371031, 34.52125843751756], [-77.3756207075744, 34.521532308417875], [-77.37607420530682, 34.5214587597861], [-77.37646969262883, 34.52137356292472], [-77.37730306113033, 34.52122398578157], [-77.377650581511, 34.52117365543347], [-77.37789512547856, 34.52107368359895], [-77.37845772864823, 34.520841428839965], [-77.37856605260598, 34.52040672164897], [-77.37924473521136, 34.52010356693668], [-77.37985977855428, 34.52025347040573], [-77.38008712100302, 34.52015336081628], [-77.38082426732942, 34.5196773489844], [-77.38109765002567, 34.519651614363084], [-77.38227163253947, 34.51939257021103], [-77.38226451999783, 34.52021926888493], [-77.38231145846882, 34.52028570976836], [-77.38231423558176, 34.52032599889951], [-77.38237370734785, 34.52058037569458], [-77.38380587099617, 34.520969068543344], [-77.38397453642528, 34.520999954961184], [-77.38551116973598, 34.52068259562734], [-77.3862867167714, 34.52118016949991], [-77.38642818361261, 34.52165057848207], [-77.38633505831687, 34.522109289643346], [-77.38643990752715, 34.522138554088535], [-77.38704907575146, 34.522099561103204], [-77.38778889708902, 34.5219738747589], [-77.38809467343083, 34.52206189975439], [-77.38861918297529, 34.522090813659425], [-77.38993733524957, 34.521964832516254], [-77.3899860703166, 34.521137288448614], [-77.38878908086708, 34.52121630466133], [-77.38863955473911, 34.521187399226214], [-77.38811856496876, 34.52091705940039], [-77.3880285791146, 34.52082659167122], [-77.38739336168183, 34.520532014658045], [-77.38867699506089, 34.51952707400232], [-77.38934328410548, 34.519689300563485], [-77.3896569776245, 34.51959316103711], [-77.39025239556867, 34.51928116961411], [-77.39154000678289, 34.51895439835899], [-77.39177519904794, 34.51888555290918], [-77.39183151408986, 34.51886962838714], [-77.39189393215229, 34.518864460565055], [-77.39192707787373, 34.518898544444255], [-77.3920676363478, 34.51902778382903], [-77.3930373379332, 34.519717661446606], [-77.39315104497236, 34.51984373809792], [-77.39337817689378, 34.519900198685605], [-77.39398211625202, 34.5201799700644], [-77.39428112444689, 34.5201043188864], [-77.394947061049, 34.519943702607506], [-77.39497290082164, 34.5199279930486], [-77.39509696112125, 34.51950781961749], [-77.39513518884532, 34.51941489932171], [-77.39577257510611, 34.51884312759673], [-77.39655056866096, 34.51844538810426], [-77.39809138620592, 34.51803272852824], [-77.39812986327918, 34.51802362354223], [-77.39951414907675, 34.51878280333901], [-77.39962846838714, 34.5187998718404], [-77.39968144285221, 34.51883731685169], [-77.40030300186012, 34.5192546659549], [-77.40045382167423, 34.51939686114373], [-77.40076198804351, 34.519581996651276], [-77.40074914424956, 34.51977335063895], [-77.40079387602975, 34.51984860976512], [-77.40107350328589, 34.520026694435366], [-77.40121468162603, 34.520471100488564], [-77.40138635835703, 34.52036557269251], [-77.40201171489853, 34.51993064616878], [-77.4020333106786, 34.51990117560461], [-77.40210469228394, 34.519821330803005], [-77.40253966864245, 34.519325327116285], [-77.40268271389141, 34.51922372825805], [-77.4028171014845, 34.519016491455375], [-77.40303857756051, 34.51876361279222], [-77.40322151408901, 34.51849250178561], [-77.40401364053042, 34.5181331355844], [-77.4044132273696, 34.51784083211652], [-77.40457538035679, 34.51794934108468], [-77.40460068140189, 34.51804836332134], [-77.40518959214847, 34.518222932564385], [-77.40587417186286, 34.51793110974713], [-77.40598185902518, 34.51789363379841], [-77.40602798861309, 34.51787069465121], [-77.40629502082878, 34.51780366818916], [-77.40724539644677, 34.51746942265778], [-77.40756786006304, 34.517168428787144], [-77.4080007394553, 34.51728561174945], [-77.40869445517191, 34.51718077388316], [-77.40914119446956, 34.51700977689006], [-77.41015406166984, 34.51661977325427], [-77.41072610037908, 34.51633159347132], [-77.41087316121036, 34.51625368396996], [-77.41104520416077, 34.516138162640964], [-77.41232252310688, 34.515135029593935], [-77.4124321925688, 34.51502531662085], [-77.4126044035901, 34.51493353675973], [-77.41391111326408, 34.51428839896808], [-77.41463573826499, 34.514110288677074], [-77.41479792654742, 34.51406638513943], [-77.41548933596516, 34.51390660019446], [-77.41630269282675, 34.5138918777061], [-77.41705612883473, 34.51403863475553], [-77.41746474823388, 34.51423119907585], [-77.41822322579458, 34.514368218246034], [-77.41861532884717, 34.514512926367665], [-77.41864973090699, 34.51452794844585], [-77.4187125833345, 34.514540535651335], [-77.41916341683378, 34.514621596541616], [-77.42009096249492, 34.51477591770316], [-77.42017974283857, 34.51475282297985], [-77.42028085777248, 34.51474062131823], [-77.42043442416252, 34.51478133955579], [-77.42188548466451, 34.5154563746377], [-77.42197531717103, 34.515691849550684], [-77.42194302838273, 34.516522009271206], [-77.42184282053474, 34.5166205490699], [-77.42193090564625, 34.517013448692886], [-77.42182418131861, 34.51710803924934], [-77.42188999691987, 34.51738499656621], [-77.42190135914333, 34.51750740642943], [-77.42198520226876, 34.517682852477165], [-77.42200937931483, 34.51777751895114], [-77.42242823995154, 34.51792092691469], [-77.42244334516529, 34.517931596602864], [-77.4225364790992, 34.517950796214], [-77.42325104174762, 34.51783233734376], [-77.42377621402338, 34.51788732655303], [-77.42403324057798, 34.51817857871049], [-77.42479697024854, 34.518911200180135], [-77.42485450996514, 34.519002066819176], [-77.4258073074116, 34.5185473951881], [-77.42589825175534, 34.51839862001436], [-77.42605161597464, 34.51816959324262], [-77.42612516309417, 34.518038891406206], [-77.42622541247684, 34.51786162693135], [-77.42627103605933, 34.517779695354115], [-77.42639677582014, 34.5175538874833], [-77.42652197040924, 34.5173290569456], [-77.42664040757174, 34.51696613924322], [-77.42675417990337, 34.516805790497514], [-77.42692811799807, 34.51660943302207], [-77.42703748186452, 34.51638125495647], [-77.42706764533058, 34.51627077427311], [-77.42707317480841, 34.51618339716937], [-77.42700063902265, 34.51592615277097], [-77.42685915662469, 34.51581123255009], [-77.42677095441897, 34.51561723560949], [-77.42671306575605, 34.515015313538825], [-77.42666397192708, 34.51486007782249], [-77.42663147990348, 34.51475690698478], [-77.42651619708144, 34.5143917582869], [-77.42646894351913, 34.51428837548347], [-77.42634974168817, 34.514004426393406], [-77.42628901577632, 34.51393491948864], [-77.42610493002033, 34.51372667626127], [-77.4258685104565, 34.51340317633301], [-77.4254363648022, 34.51307883064911], [-77.42528123449662, 34.51288231792664], [-77.4252110345559, 34.512299133708076], [-77.42528735762713, 34.51212099997406], [-77.42535490249637, 34.511375978432966], [-77.42605316833126, 34.51036503048908], [-77.4260426121686, 34.51005303371147], [-77.42621312439067, 34.50980696366213], [-77.42656902905081, 34.50975977464185], [-77.4268347090626, 34.509772548677326], [-77.42779723536269, 34.50958384221669], [-77.42814744055892, 34.50936238148758], [-77.42891014325664, 34.50913168467429], [-77.42973224797427, 34.50867435821871], [-77.43108627014146, 34.508203218227735], [-77.43131260156119, 34.5081871147475], [-77.4323515447517, 34.50752206466979], [-77.43290461194493, 34.50716975529747], [-77.43294878693588, 34.50712232654033], [-77.43297764300989, 34.50710523479432], [-77.43316365804895, 34.506967113689285], [-77.43380567724304, 34.50647192300674], [-77.43373382750124, 34.506315589790155], [-77.43404342756585, 34.50633474765832], [-77.43489836866857, 34.50585209969556], [-77.4348966913838, 34.50569247487284], [-77.43521718309772, 34.505701371104784], [-77.4360412971767, 34.505464538520044], [-77.43646453770559, 34.50533745019125], [-77.43658538345147, 34.50532489677003], [-77.43675165960623, 34.50527103588665], [-77.43735830951675, 34.505106394525285], [-77.43769896159051, 34.504926229328014], [-77.43828607108682, 34.50496312860632], [-77.43968372984001, 34.50512808758392], [-77.44011022683492, 34.50544216287599], [-77.44060724814005, 34.505712111874935], [-77.4414945372184, 34.505748077247446], [-77.44233201259408, 34.50574094772472], [-77.443109198945, 34.50501088482548], [-77.44311529954467, 34.50493336006652], [-77.44311494288769, 34.50491965532346], [-77.44311676675837, 34.50490087215344], [-77.4431296805149, 34.50375215822122], [-77.44321317945301, 34.503573597232105], [-77.44312775928893, 34.50256302783518], [-77.44338392443505, 34.502231232639325], [-77.44477979620186, 34.50126783351108], [-77.44511062405178, 34.50115016281701], [-77.44607637704969, 34.50108435202499], [-77.44624124725851, 34.5010256352253], [-77.44685162757835, 34.500807937107275], [-77.44729310011783, 34.50060869497243], [-77.44770715333777, 34.50042470531843], [-77.4479489598859, 34.50015294790957], [-77.44852911042994, 34.49979099505957], [-77.44909889290952, 34.49952351826181], [-77.44956444062254, 34.49906444499296], [-77.45003837965264, 34.498791839811965], [-77.45023959398088, 34.49852696015831], [-77.45180822378728, 34.49741966433489], [-77.4519066132321, 34.49732327165061], [-77.45200979773763, 34.49726594556368], [-77.45412220892352, 34.496031961161755], [-77.45412939298502, 34.49602695952985], [-77.45413604515493, 34.496023007987525], [-77.45414690170074, 34.49600786947796], [-77.45468469434687, 34.49537537490306], [-77.45494420342695, 34.49523471374921], [-77.45520907991428, 34.49508171209659], [-77.45582251023157, 34.49475768547179], [-77.45614995551568, 34.494632400315], [-77.45640534309614, 34.49453165898034], [-77.45726852929641, 34.49415564758423], [-77.45743410440275, 34.49406817052291], [-77.45760049793326, 34.49397760057716], [-77.4583490319336, 34.49381239390521], [-77.45888010584483, 34.493732454681094], [-77.45953638333788, 34.493901376132825], [-77.46026682417059, 34.493879027180895], [-77.46076031491388, 34.49411828516017], [-77.46174618865246, 34.49436434500187], [-77.46338628808552, 34.493790817825115], [-77.46387588954988, 34.493633253162365], [-77.46419622288548, 34.49347484939767], [-77.46490534792994, 34.49351813929244], [-77.46521684634632, 34.49388372346802], [-77.46637027145633, 34.49431846983562], [-77.46720909559733, 34.49525225604534], [-77.46730348289019, 34.49534061962277], [-77.46728082482045, 34.49540850289347], [-77.46695604486756, 34.49631736047648], [-77.4668458197599, 34.49666842367377], [-77.46677906541308, 34.49682541295482], [-77.46676251838903, 34.49724523934425], [-77.46674872929236, 34.497339010481284], [-77.46674165623371, 34.49740125092018], [-77.46672477818633, 34.49779577922109], [-77.46672100581226, 34.498013114787], [-77.46662495523323, 34.49853258239704], [-77.46656733450654, 34.49891311026327], [-77.46667224789049, 34.49936166116352], [-77.46643097877029, 34.49962638872401], [-77.46648294677556, 34.49974014731623], [-77.46652562858675, 34.500029735577186], [-77.46663452546184, 34.50031925237528], [-77.46661762167304, 34.50045270978409], [-77.4670109269021, 34.50072986112946], [-77.4671604263585, 34.50116866453048], [-77.46729897942694, 34.50141998155861], [-77.46741498455975, 34.501601921702516], [-77.46854024682024, 34.50215843593814], [-77.46795370660602, 34.502741926103184], [-77.46797592001623, 34.502805333106004], [-77.4679741777612, 34.502875599049545], [-77.46835905236277, 34.502938775224756], [-77.46922879104599, 34.502868862116564], [-77.46945255090542, 34.50284378023423], [-77.4699015006126, 34.50249983279492], [-77.47032519817064, 34.50224893353221], [-77.47059214730453, 34.5016472254369], [-77.47173480003053, 34.50134037747523], [-77.47230759478732, 34.500998401731835], [-77.47200493596026, 34.49995734525264], [-77.4724609280403, 34.49965515846617], [-77.47205864192082, 34.49917518297202], [-77.47119380039648, 34.499363169442915], [-77.46928309802547, 34.49814305036941], [-77.46877933434811, 34.49775716654068], [-77.46846769305331, 34.49742619735886], [-77.4686136551333, 34.49712242748946], [-77.46867795558657, 34.49676135128], [-77.46901282714256, 34.496313927322305], [-77.46910197849982, 34.4961715952811], [-77.46917740778673, 34.49611117082952], [-77.4699186148017, 34.49559587231555], [-77.47006400080868, 34.49548061897902], [-77.4700738535729, 34.495455609194245], [-77.47011834691206, 34.4954323561945], [-77.47026655802215, 34.49541402998899], [-77.47031470481205, 34.495493328709564], [-77.47237177001867, 34.49587968703425], [-77.47289893518104, 34.49682758611286], [-77.47301214704942, 34.49698107555282], [-77.47308127541972, 34.49707479715484], [-77.47336721265562, 34.49746244594485], [-77.47389897740699, 34.49702601001123], [-77.47426005185233, 34.496300590196455], [-77.47364797609995, 34.49521266476879], [-77.47339448053418, 34.49429842124725], [-77.47321994314167, 34.49341956279736], [-77.472759535124, 34.492545158592506], [-77.472580559951, 34.49155514397336], [-77.47193792870267, 34.49042100169075], [-77.47235131467126, 34.48962667150211], [-77.47261743796344, 34.48885498364719], [-77.47301831109127, 34.4885697721778], [-77.47343016594637, 34.48784895653343], [-77.47409578401505, 34.487578900461806], [-77.47513492124479, 34.487221813757515], [-77.47600059264732, 34.48740042843784], [-77.4771123881353, 34.48705624306311], [-77.47714561287451, 34.48701036069068], [-77.47724218637096, 34.48701677909769], [-77.47783969257605, 34.48675346300706], [-77.47784327296237, 34.48675293693588], [-77.47828637622813, 34.48644020273856], [-77.47831396378731, 34.48638981657039], [-77.47837346681112, 34.486230038735165], [-77.47824556311846, 34.48576263260074], [-77.47805812008235, 34.48507763534655], [-77.47768324421894, 34.48370763936858], [-77.47730838196632, 34.48233764143129], [-77.47693353332322, 34.480967641534875], [-77.47618387686052, 34.47822763586535], [-77.4758090690384, 34.476857630092624], [-77.4756216702291, 34.47617262647183], [-77.47552797209983, 34.475830124477845], [-77.47543427482077, 34.47548762236146], [-77.47505949420636, 34.474117612672096], [-77.4746847271939, 34.472747601024686], [-77.47393523396987, 34.47000757185645], [-77.47383809409408, 34.469652423679534], [-77.47355117306826, 34.469820995836685], [-77.47310977616695, 34.46996571154019], [-77.47145125184349, 34.4707702248792], [-77.47090424067119, 34.470911083414755], [-77.47035117439691, 34.47117682077641], [-77.46947480022132, 34.47140463531093], [-77.46902335402035, 34.47173809450842], [-77.46853145986823, 34.47213434447811], [-77.46816901943947, 34.47241712971453], [-77.46672180168123, 34.473168183478904], [-77.46607918260594, 34.47331897324789], [-77.46541770742499, 34.47332261170186], [-77.46430602120927, 34.4735720777651], [-77.4641907565466, 34.47358950425825], [-77.46414913009203, 34.47360694434997], [-77.46398955011367, 34.473640710093726], [-77.46341632120726, 34.47380725064191], [-77.46330300789575, 34.473999544814234], [-77.46326081659439, 34.474194518292435], [-77.46329541101402, 34.47434252740223], [-77.46302093816848, 34.47440476961991], [-77.46277630710668, 34.474684335955814], [-77.46219427226647, 34.47481586760108], [-77.462003190227, 34.47490272196124], [-77.46184819112047, 34.47503969512403], [-77.46115616257116, 34.47543865356262], [-77.4611161199096, 34.47565976744086], [-77.45954522303012, 34.475963504919264], [-77.45941220111388, 34.4759786743647], [-77.4593434625734, 34.47598651254944], [-77.45924268887966, 34.47601695540499], [-77.45816469667298, 34.47634026941291], [-77.45742031573894, 34.47592433789984], [-77.45801739821349, 34.47580140654595], [-77.45843319230426, 34.475544198235866], [-77.45872217922623, 34.47531498448085], [-77.45916294398171, 34.4750668561867], [-77.46012938577309, 34.47518031541975], [-77.45968360644241, 34.47468832086621], [-77.4602950328215, 34.47428314495911], [-77.46122042670657, 34.47452238051929], [-77.46057941481759, 34.47405831774344], [-77.46053044031181, 34.47388279996072], [-77.46083457349869, 34.47339576239052], [-77.46102022517245, 34.473237035019054], [-77.46111939046895, 34.47307247444306], [-77.46125077636493, 34.47285444601407], [-77.46129711734869, 34.47277754495147], [-77.46132504955918, 34.472745163404916], [-77.46182327079006, 34.47248625683208], [-77.46187136900203, 34.47246254359899], [-77.46192359585856, 34.472437809871025], [-77.46241706697046, 34.47219600115246], [-77.46250362295918, 34.47217572473857], [-77.46256935907482, 34.47213285146708], [-77.46314426690023, 34.47189297835357], [-77.46361659416718, 34.47165917546387], [-77.46456670200817, 34.47139607160966], [-77.4648325371942, 34.47118244724994], [-77.46515149027238, 34.47108618816401], [-77.46517852210633, 34.470914316394925], [-77.46540191772823, 34.47080295633273], [-77.46582010897721, 34.47081703306972], [-77.4660515454876, 34.470716966292756], [-77.46715611540345, 34.47041968387363], [-77.46750306747468, 34.470446689002614], [-77.46752533513248, 34.47035793025513], [-77.46799186652692, 34.47009016395562], [-77.46810720799628, 34.469922514129216], [-77.46838734812411, 34.46972616431591], [-77.4684347414834, 34.469711325576206], [-77.46846078361683, 34.46968088536751], [-77.46893195575903, 34.469358888008074], [-77.46899681322492, 34.4691795179921], [-77.46912833685923, 34.46908825213574], [-77.46933534276515, 34.46896086584309], [-77.46959092646884, 34.46889057085002], [-77.4697534816596, 34.46878221486372], [-77.47005435335777, 34.46871618596862], [-77.47045646941649, 34.46848012277037], [-77.47064060990363, 34.468407007476515], [-77.47078569397756, 34.468336631833935], [-77.47121346256553, 34.468091318546975], [-77.4713607764981, 34.46797813683898], [-77.47165611557195, 34.46786546602948], [-77.47186789453235, 34.46781526168643], [-77.47197812573702, 34.46777420199976], [-77.47247973973165, 34.467636665765], [-77.47333148797756, 34.467800215152415], [-77.4731857951386, 34.46726753485821], [-77.4729519242816, 34.46641242697504], [-77.47227512219135, 34.466825107862135], [-77.4717565354356, 34.46696396270566], [-77.47132733303474, 34.46717327692838], [-77.47089745711718, 34.4673437926655], [-77.47055837569458, 34.46750540975481], [-77.46982722096249, 34.46777268654589], [-77.46958091356197, 34.467892162385766], [-77.46934366127908, 34.46798636638539], [-77.46838796713561, 34.46837516881768], [-77.46824658846, 34.46843189164123], [-77.46813604340146, 34.46849331730975], [-77.46731847996205, 34.468996403570934], [-77.46721418869824, 34.46911830786285], [-77.46698068053364, 34.46919141867256], [-77.46609339000324, 34.46960973171055], [-77.46592502714643, 34.469679973874506], [-77.46578359952748, 34.46973700409633], [-77.46494410083122, 34.47022689774422], [-77.46477303139883, 34.47030828081103], [-77.46461511154018, 34.47038721666347], [-77.4636751930732, 34.470837980226], [-77.46357831785411, 34.47091582886207], [-77.46342497260238, 34.4709582932277], [-77.46233303511445, 34.471498804347675], [-77.4622373747466, 34.47153871744202], [-77.46115372064783, 34.47206094115233], [-77.46109949448473, 34.47208748249224], [-77.46104836922281, 34.47211404222194], [-77.45990464726357, 34.47267299727318], [-77.45989788968056, 34.47269167513709], [-77.45986813751172, 34.472721513686146], [-77.45890689193216, 34.47329781342671], [-77.45882170543905, 34.47335680986091], [-77.45871452296048, 34.473426411675845], [-77.45796147801673, 34.47412687277677], [-77.45638906709881, 34.47452087418331], [-77.45636042365928, 34.474536965651716], [-77.4563281501909, 34.47454683861378], [-77.45610111660721, 34.47463180082602], [-77.45504437572731, 34.47508553340982], [-77.45391747924334, 34.47557855044193], [-77.45374388915408, 34.47564165826811], [-77.45350745228309, 34.47572538601414], [-77.45271190973983, 34.47609361994167], [-77.45243648607095, 34.4761944194576], [-77.45218780827364, 34.476333783493565], [-77.45152845001022, 34.476689641231275], [-77.45133648840437, 34.476847971064466], [-77.45111619614039, 34.47695478615101], [-77.45007167431827, 34.47742142199348], [-77.44966635371775, 34.47755653809116], [-77.44913770688052, 34.47779465358367], [-77.44880199750567, 34.47799250595024], [-77.44839076000177, 34.47816713692154], [-77.44755700171747, 34.47857558180287], [-77.44683833558847, 34.478763640854986], [-77.44672732927667, 34.47882799740558], [-77.44638249020562, 34.479192912143574], [-77.44594952000016, 34.47939390748661], [-77.4450959443351, 34.47975578699591], [-77.44433620454032, 34.47993199440654], [-77.44423296398308, 34.479982024811655], [-77.44367331705789, 34.48025251903477], [-77.44314766662673, 34.4805097788587], [-77.44297649112535, 34.480593552422846], [-77.44267072198748, 34.48095339819721], [-77.44205956780044, 34.48145528983606], [-77.44120680736071, 34.4818544444635], [-77.44043928281008, 34.48224518163201], [-77.43963960029566, 34.48245411789788], [-77.43788643938953, 34.483036275345164], [-77.43744968454857, 34.483168444647625], [-77.43715093276352, 34.48320158359924], [-77.43610239693604, 34.48370176526026], [-77.43595245837784, 34.483743283308144], [-77.43491722567266, 34.484235940613026], [-77.43483614316423, 34.48427447249365], [-77.43475884843757, 34.48430284117149], [-77.43419927364943, 34.48450820926772], [-77.4334245330986, 34.48477651203086], [-77.4322783604684, 34.48508053826233], [-77.43181967263465, 34.485184593661764], [-77.43130160912784, 34.48540254917519], [-77.43116435512854, 34.48546015443762], [-77.43105505503205, 34.48553147669918], [-77.430642578037, 34.485800629616556], [-77.42991222800698, 34.486277198241176], [-77.42962233489543, 34.48649292033399], [-77.4293990422936, 34.486656519453035], [-77.42912775235905, 34.486846622388796], [-77.42877354542429, 34.487038173232015], [-77.42856735815133, 34.48716832499071], [-77.42835565118519, 34.48727879326425], [-77.42758552705986, 34.48761850392876], [-77.42730486621815, 34.48774283796871], [-77.4269897658203, 34.48788458729804], [-77.42602812962606, 34.48831042163328], [-77.42519105735997, 34.48871179207485], [-77.4246755494722, 34.488841118721844], [-77.4243095103905, 34.48909877331398], [-77.42375664199818, 34.48958268360912], [-77.42284808619767, 34.48999394104101], [-77.42250681909144, 34.49016333950662], [-77.42215465463283, 34.490339760590864], [-77.42119584485567, 34.490714268008134], [-77.42044998119397, 34.49107431509192], [-77.41995226452131, 34.49129794989282], [-77.4196049878722, 34.49156053087151], [-77.41891198365299, 34.49198049766115], [-77.41809080559474, 34.49229752341401], [-77.41757896795673, 34.49252069300985], [-77.41693266749454, 34.49277498202948], [-77.4161545229122, 34.49301642411607], [-77.41566134070153, 34.49326337795998], [-77.4154511292018, 34.49337475847594], [-77.41497085348357, 34.493629232998614], [-77.4144969432195, 34.49393082753152], [-77.41436371820993, 34.4939946781588], [-77.41382413199102, 34.49426001078318], [-77.41331100779601, 34.49451940251335], [-77.41313839991155, 34.49460753205391], [-77.41276160402869, 34.49493172273357], [-77.41212911544474, 34.495122847435354], [-77.41191440240526, 34.495220442910934], [-77.41160902848313, 34.49555964768362], [-77.41098166380685, 34.49585257112724], [-77.41045505980885, 34.4961868856647], [-77.4089063701254, 34.496859986424816], [-77.4083242162225, 34.49713699091144], [-77.40801227787185, 34.49726353118505], [-77.40701765177076, 34.49774677539531], [-77.40625710205161, 34.498118071555886], [-77.40484040931403, 34.49873986084375], [-77.40403983364814, 34.49902610978056], [-77.40325840387663, 34.49930054576707], [-77.40215557521627, 34.49979380719688], [-77.4019044103997, 34.49997394692385], [-77.40167252550577, 34.500033092752865], [-77.4012059880128, 34.50021944378445], [-77.39969207875546, 34.50088436134263], [-77.39870106159242, 34.50127197882855], [-77.3985606790041, 34.50132729271765], [-77.39850403442968, 34.50134877587314], [-77.39749532165575, 34.50180233794461], [-77.39691957761447, 34.502014269238494], [-77.39540431865808, 34.50272726431225], [-77.39535746881914, 34.50274895909185], [-77.3953330595016, 34.502770280787246], [-77.39526917872702, 34.50278640529019], [-77.3942159652739, 34.50318695769458], [-77.39374799270217, 34.503460450214796], [-77.39326840285051, 34.503719294283044], [-77.39215148959345, 34.50465733330592], [-77.3916401983052, 34.504913817516616], [-77.39056941127303, 34.50521201774066], [-77.38996806129674, 34.505470540704934], [-77.38926761124175, 34.505746219193895], [-77.38898462974016, 34.50588557174753], [-77.38819840544521, 34.506211849879435], [-77.3870968823098, 34.50667680116491], [-77.38581550634942, 34.50720964811024], [-77.38492082017423, 34.507604776121994], [-77.38422984567995, 34.50791853512436], [-77.38334443183282, 34.508384814668155], [-77.38294613995193, 34.508630721446096], [-77.38263435869703, 34.50906045073941], [-77.38131309233681, 34.50982288040677], [-77.38104697057169, 34.509842771450366], [-77.3808603690693, 34.50983889775374], [-77.37956066853465, 34.50996359311621], [-77.3794740620444, 34.509984861842824], [-77.37935379666968, 34.51001430926672], [-77.37838575326133, 34.51038528541824], [-77.37788950420995, 34.51064020836392], [-77.37666522584718, 34.51130669220841], [-77.37645868491542, 34.51143436901195], [-77.37630038788066, 34.51149519726146], [-77.37588418118145, 34.51167639557086], [-77.37437053336888, 34.51240506336741], [-77.37370204315344, 34.51271321062967], [-77.37312696498809, 34.51298921567137], [-77.37229543120026, 34.51338209826994], [-77.37154269647239, 34.51362692688037], [-77.37105315943454, 34.51377099260042], [-77.37023280596593, 34.51402480453171], [-77.3699625278324, 34.514083510628915], [-77.36978357524634, 34.51414658525457], [-77.36958479060456, 34.51428597765985], [-77.36837302283095, 34.514948846819095], [-77.36786659323828, 34.51520054487507], [-77.36686705082028, 34.515656934367385], [-77.36681617643377, 34.51568279039075], [-77.36678622799336, 34.515693894157515], [-77.36576886978051, 34.51616653969013], [-77.36520061649011, 34.51638582124064], [-77.36361738881459, 34.51710259454902], [-77.36361437831233, 34.517103963573675], [-77.36361324522704, 34.51710434868877], [-77.36361130182108, 34.517105330013], [-77.36202934563991, 34.51776814690085], [-77.36136052010595, 34.51799487768578], [-77.36044392783253, 34.518447995261155], [-77.3601546465673, 34.518582561985426], [-77.35929818264503, 34.518978065986516], [-77.3588564053293, 34.519218539359336], [-77.35779995395484, 34.5195756009648], [-77.3572736861912, 34.51977823353394], [-77.35704983162844, 34.519870701153636], [-77.3563193770089, 34.52011420451548], [-77.35584768536005, 34.52027906020862], [-77.35569142361511, 34.52031704214227], [-77.35538580977632, 34.520437549480896], [-77.35468269868367, 34.520705501651015], [-77.35410632651686, 34.52097833640587], [-77.35278826019457, 34.52143822548072], [-77.35235459905456, 34.521559282339894], [-77.35189695980753, 34.521730239984684], [-77.35113706277727, 34.52196012986322], [-77.35094210642025, 34.522037737091665], [-77.35057896978435, 34.52214494837532], [-77.34986303805755, 34.52233347144677], [-77.3493615579836, 34.5224981963716], [-77.34803694685814, 34.52310341580916], [-77.34777588959989, 34.52318007149785], [-77.34758887526112, 34.52321347014976], [-77.34704405760425, 34.52340805146453], [-77.34632409878441, 34.52359129780586], [-77.3461948145783, 34.523661545589775], [-77.34568567383442, 34.5240931821533], [-77.3455736480737, 34.52421951715338], [-77.34539176374854, 34.52444446094282], [-77.34527238569119, 34.52456963588364], [-77.34522167854642, 34.52464959324426], [-77.34507290759545, 34.52472091457747], [-77.34499193365829, 34.52476219015323], [-77.34480510575057, 34.524838929546526], [-77.34474060769065, 34.52496363883621], [-77.34459263836098, 34.52505661033992], [-77.34436247380998, 34.525120223043736], [-77.34427198728535, 34.52527589065218], [-77.34419386209711, 34.525328418263854], [-77.3440316508491, 34.525455951572894], [-77.34399358167173, 34.52550293622246], [-77.34390968697963, 34.52557284202201], [-77.3438557661043, 34.5256187169203], [-77.34379351053464, 34.52566835165879], [-77.34355912793, 34.52572269246408], [-77.34354979477833, 34.52586944536137], [-77.3433934867183, 34.525993948236334], [-77.34318752622444, 34.52603856796319], [-77.34317829219788, 34.52616771800356], [-77.3430896395666, 34.52623930802211], [-77.34299324253261, 34.526328950826674], [-77.34274758173368, 34.52632117024949], [-77.34267029279017, 34.52648562823196], [-77.34259331312086, 34.52665018595554], [-77.34255160082937, 34.52672254998062], [-77.34256116145033, 34.52674614889066], [-77.3423919996021, 34.526869140923424], [-77.34226509556343, 34.52683145885831], [-77.3421962893513, 34.52684551888276], [-77.34209768908771, 34.52681283063182], [-77.34189940355628, 34.526782620353], [-77.34141828293146, 34.52666575789555], [-77.34141543790098, 34.52666498679211], [-77.34141495019571, 34.526665947023595], [-77.34141501713587, 34.526666227744535], [-77.34141483602903, 34.52666660586082], [-77.34141534508505, 34.52666900259359], [-77.34160608534918, 34.52688355779982], [-77.34168497059221, 34.52694487887623], [-77.34164972368865, 34.52712209841184], [-77.34172150798315, 34.52715857208956], [-77.34179524327303, 34.527214834467216], [-77.34200602971916, 34.527184618930264], [-77.34199273048387, 34.52731756896691], [-77.34210728960863, 34.527349338138016], [-77.34218441440251, 34.52735951436407], [-77.34220295986078, 34.52740973249618], [-77.34218215796253, 34.527457182351604], [-77.34209017893679, 34.52749149331419], [-77.34206014276839, 34.52755268920217], [-77.34210280684381, 34.52759407126587], [-77.34203814980259, 34.52771456077973], [-77.34201036487585, 34.52780466966048], [-77.34201169866228, 34.527904352353744], [-77.34204097005245, 34.527964332349754], [-77.3421084605359, 34.528035375530806], [-77.34213373204284, 34.52805335299377], [-77.34216669131425, 34.528126644110316], [-77.34217817393798, 34.52814039528641], [-77.34217540372958, 34.52814815387068], [-77.34217976929685, 34.52815610725864], [-77.34222326134454, 34.528226949119706], [-77.34225134414585, 34.52825963762244], [-77.34234549540064, 34.528360991069], [-77.34235234442386, 34.52836751599442], [-77.34235513203127, 34.528368506467416], [-77.34235726526785, 34.52837274057472], [-77.34244653235008, 34.52841516963723], [-77.34245217933527, 34.52841574329138], [-77.34246212837388, 34.52841777427374], [-77.34255213735435, 34.52843280632031], [-77.34259052726118, 34.52843172851849], [-77.34273621393098, 34.52842701441076], [-77.34274852980893, 34.52842705484973], [-77.34275526002551, 34.52842774857183], [-77.34277290628783, 34.52842941739814], [-77.34289459866005, 34.52844298378534], [-77.34294421114251, 34.528452094072186], [-77.34309303205798, 34.52850576807269], [-77.34311290162215, 34.52851913884773], [-77.34320620192624, 34.52861189477491], [-77.34325451711393, 34.528653322706724], [-77.34332940310628, 34.5287694430925], [-77.34336327642596, 34.52881236891092], [-77.34337044447062, 34.528833082904804], [-77.34340027322395, 34.52887450646674], [-77.3434524125619, 34.528943698890025], [-77.34347243317339, 34.52897111452629], [-77.34355552396822, 34.52905127258719], [-77.34360478729421, 34.52911230699878], [-77.34371159353825, 34.52921694336771], [-77.34377186291142, 34.52922722592181], [-77.34377850199675, 34.529264009310516], [-77.34382830543063, 34.529331283688116], [-77.3438814399338, 34.529385654299254], [-77.34398420017018, 34.52947923194522], [-77.34402973613521, 34.52951478392434], [-77.34409638573598, 34.529551891312025], [-77.34419486135116, 34.52963117922694], [-77.34425749709335, 34.52968472778212], [-77.34434182330148, 34.529761318520265], [-77.344445924369, 34.529902435067086], [-77.34444468598537, 34.529924828571005], [-77.34442417473963, 34.53011815833514], [-77.34443087053054, 34.530149420751634], [-77.34444033135117, 34.530169469880555], [-77.34444113271759, 34.53027035394584], [-77.3444663305398, 34.53038707505938], [-77.34446497124776, 34.530389333680716], [-77.34446560332988, 34.53039169286506], [-77.34446931695312, 34.530401000550484], [-77.34454099715114, 34.53057598877655], [-77.34463005271064, 34.53061039979863], [-77.34457815852153, 34.5306899089541], [-77.34460994959598, 34.53076515917547], [-77.34472102734378, 34.53084212918106], [-77.34476884450089, 34.53088627033475], [-77.34498800171711, 34.531048533340126], [-77.34503412363668, 34.53116822812105], [-77.34508259248068, 34.53143225942674], [-77.34507228830978, 34.53152604512825], [-77.34500607322693, 34.531643403113165], [-77.34501237454576, 34.531667380967185], [-77.34500670849489, 34.53178030139082], [-77.34502572236957, 34.53180499589321], [-77.34513611606224, 34.53181509384099], [-77.34522049064205, 34.53186998353492], [-77.34534307398562, 34.53189983706365], [-77.34535748849842, 34.53197464652443], [-77.34552080162831, 34.532142365270865], [-77.3455791083903, 34.53218757664943], [-77.34558325811324, 34.53220078720416], [-77.34556876031988, 34.53241410385945], [-77.3455400136057, 34.53243802209696], [-77.34547458858285, 34.53249245800977], [-77.34545107099217, 34.532512025413226], [-77.34540097785839, 34.53255421670278], [-77.34538082238794, 34.53257100958059], [-77.34536242673605, 34.53258598569966], [-77.34535078370422, 34.532603079441884], [-77.34533973544018, 34.53261310690089], [-77.34532778487518, 34.532621572891806], [-77.34534633365236, 34.53262141553857], [-77.34535036347914, 34.5326213001847], [-77.345387132203, 34.53264363571749], [-77.3453949224294, 34.532644985839525], [-77.34539886195066, 34.53264596369906], [-77.34548259278753, 34.532638983331424], [-77.34555298144585, 34.532680975998424], [-77.3455760110172, 34.53268896853314], [-77.34559364855842, 34.53271025326829], [-77.34568649157019, 34.532719806606224], [-77.34584905779596, 34.53272370374166], [-77.3458495073483, 34.53276071719445], [-77.34587191057011, 34.532810066309594], [-77.3459046835487, 34.53287518743316], [-77.34590086640156, 34.532925849422945], [-77.34594796541386, 34.533113779361265], [-77.34595495804764, 34.53334727610092], [-77.3459532685224, 34.533357836284615], [-77.34595172429289, 34.53337006464067], [-77.345956270793, 34.53360222428822], [-77.3459552589381, 34.53360873965491], [-77.34595285936238, 34.533843037847475], [-77.34592414820386, 34.5338516666017], [-77.34576202132669, 34.53392011360798], [-77.34570428871885, 34.53397043050029], [-77.34566260470258, 34.5339756492507], [-77.34560827181778, 34.5340195294999], [-77.34558636371557, 34.53403722289083], [-77.3455626062591, 34.53405640982719], [-77.34553809160184, 34.534075822962485], [-77.34552643970642, 34.53409250952953], [-77.3455517140375, 34.53409510935941], [-77.34554254729954, 34.534120794252246], [-77.34554902937577, 34.53412730940401], [-77.34555646473935, 34.534134092880755], [-77.34556074948284, 34.53413692975009], [-77.34557361337407, 34.534138875710866], [-77.34559307677401, 34.53414412591534], [-77.34560925838201, 34.53416118271031], [-77.34561710756721, 34.534166301597416], [-77.34562931983908, 34.534182329176744], [-77.34565033416253, 34.53419709194603], [-77.34564857642717, 34.53420282686391], [-77.34569469164977, 34.534251914139105], [-77.34566157357425, 34.53431366656707], [-77.34575257691966, 34.534329716328706], [-77.3457965155836, 34.53433223276869], [-77.34591020699212, 34.53431905889023], [-77.34586119957652, 34.534289159615426], [-77.34585659667421, 34.53428677028591], [-77.34585177063174, 34.53428386363617], [-77.34577332418891, 34.53424059942072], [-77.34576492867275, 34.53423545948194], [-77.34575489192494, 34.53422931473292], [-77.34566365251955, 34.53419517552314], [-77.34566105023232, 34.53419338814066], [-77.34566962806099, 34.53413985240047], [-77.34574729494805, 34.534128128041125], [-77.3457571682077, 34.53413059260332], [-77.34578844948672, 34.53414661549907], [-77.34580284680365, 34.53414643003311], [-77.34580584295958, 34.53414765439484], [-77.3458151339068, 34.53415221687963], [-77.34581797172201, 34.53415365158865], [-77.34582429770505, 34.53415675838028], [-77.34582841506915, 34.53415725153417], [-77.34583015062395, 34.53415747422706], [-77.34583264234941, 34.53415782389036], [-77.34583461577498, 34.53415806698173], [-77.34583626579052, 34.53415827023467], [-77.34583692830809, 34.53415835184518], [-77.34583847979869, 34.53415854296153], [-77.345839323865, 34.53415864693565], [-77.34584051819236, 34.53415824964696], [-77.3458418965862, 34.53415772999905], [-77.34584192455019, 34.534156456795024], [-77.34584186453829, 34.53415614325857], [-77.34584189841101, 34.53415459103173], [-77.34584131557374, 34.53415430959582], [-77.3458413174923, 34.53415356698756], [-77.34584144440078, 34.53414739240568], [-77.34584023696989, 34.53414681417752], [-77.34584020803338, 34.53414526468457], [-77.34583396622506, 34.534140065882], [-77.34583407472694, 34.53412675463893], [-77.3458341600826, 34.53412273567872], [-77.34581287746511, 34.5341124979504], [-77.34581268245071, 34.534085292363066], [-77.34581281285583, 34.534078551507996], [-77.34576751824432, 34.53405781990911], [-77.34576611613184, 34.53400052687689], [-77.34577527326715, 34.533995499008896], [-77.34595996027386, 34.53384781412305], [-77.34611504385502, 34.53394660733724], [-77.34612821669587, 34.533960563294], [-77.34615302701533, 34.533986848496234], [-77.34620435436369, 34.53402362545317], [-77.3462026218979, 34.534056415092564], [-77.34620624525158, 34.53409057586387], [-77.34616961154451, 34.534170590179656], [-77.34618142994212, 34.534181874595006], [-77.34618085765067, 34.53420241342128], [-77.3461479422741, 34.53420741798867], [-77.34610075377404, 34.53428761659224], [-77.34598209348731, 34.534332968507115], [-77.345983588627, 34.53435477928156], [-77.34594826804755, 34.53435495609118], [-77.3459088202735, 34.53436792813886], [-77.3457955116963, 34.534387423769765], [-77.34575069205525, 34.534411462794225], [-77.34567412313945, 34.53445253046392], [-77.34555196088283, 34.53451805193218], [-77.34546148361699, 34.5345974142453], [-77.34535227752137, 34.5346659062482], [-77.3453492965569, 34.53466884352577], [-77.34534504456276, 34.53467385202648], [-77.34528677304121, 34.53473904496969], [-77.34527795411024, 34.534756468288336], [-77.34525836531259, 34.534804337455284], [-77.34523416838297, 34.53487842320846], [-77.34521641396546, 34.53493278368326], [-77.3452131828621, 34.53497333151104], [-77.34515442388431, 34.535064113245795], [-77.34515216666928, 34.53506782647528], [-77.34514649171183, 34.53507831245755], [-77.34509820362962, 34.535165754709034], [-77.34508158497874, 34.53519700364964], [-77.34505706110993, 34.53525378291689], [-77.34502521075947, 34.53532752506943], [-77.3450231367274, 34.53537760653079], [-77.34498727676427, 34.535455392986236], [-77.34491511799679, 34.53557341829187], [-77.3449053579394, 34.53560991902759], [-77.34489416779297, 34.53571360983202], [-77.34493288307351, 34.53582977495779], [-77.34493325918096, 34.535830154991864], [-77.34493332722627, 34.53583067518198], [-77.34498702919069, 34.53594506799007], [-77.3447828340627, 34.53618532260202], [-77.34476640129586, 34.536221632654296], [-77.34475504572181, 34.53624067802889], [-77.3447268931796, 34.53625082627675], [-77.34466279782201, 34.53627614838753], [-77.34433060567163, 34.53641257290592], [-77.34426219542019, 34.53649755634368], [-77.34421568995072, 34.53654568889999], [-77.34405784599188, 34.5366464771804], [-77.34393054086235, 34.5367379227872], [-77.34385431632069, 34.53679579690906], [-77.343761052633, 34.536855919721646], [-77.3436419220841, 34.536940801755584], [-77.34353645129566, 34.53701064358592], [-77.34353156941086, 34.53701576979422], [-77.34344279021919, 34.537092262509056], [-77.34338814847047, 34.537154389673894], [-77.34333143382591, 34.537182799845496], [-77.3432609508157, 34.537252140935294], [-77.34320926763428, 34.53730253477774], [-77.34317350858129, 34.53733377303891], [-77.34313060348194, 34.53737988733508], [-77.34309389831152, 34.53741921759844], [-77.34305846943468, 34.53744663932528], [-77.3429370884912, 34.537581878251004], [-77.34293218909463, 34.53758721649802], [-77.34293099498538, 34.537588314164374], [-77.34292947477418, 34.53758985567064], [-77.34278277710578, 34.53773112119708], [-77.34276288407216, 34.53775487580718], [-77.34272843303643, 34.53779601423919], [-77.34262167784146, 34.53782052159248], [-77.34253086392312, 34.53785176410743], [-77.34249891613001, 34.53787477535637], [-77.34243158160291, 34.537901186598035], [-77.34242717401997, 34.537904688860046], [-77.34238113377972, 34.53794163829511], [-77.34233845821026, 34.53797865632848], [-77.34233561060658, 34.5379815772081], [-77.3423313490282, 34.53799174598992], [-77.342303461533, 34.538028026500065], [-77.34230095715472, 34.53804525594209], [-77.34228918418466, 34.53807208796988], [-77.34225780179975, 34.53817387367406], [-77.34223607832925, 34.53824362176434], [-77.34220903592947, 34.53830329851491], [-77.3421778723511, 34.53833948614667], [-77.34216057333215, 34.53841073719417], [-77.34217207249733, 34.538431025449555], [-77.34217842351975, 34.538463952905964], [-77.34219855866755, 34.5385496244757], [-77.34217741371539, 34.5386393380121], [-77.34216917570734, 34.53870784814029], [-77.3420635561396, 34.53881386444776], [-77.34216940642126, 34.538886738560905], [-77.34230831671495, 34.53898895563074], [-77.34232774479315, 34.53900828326922], [-77.34234156372241, 34.53901868965141], [-77.34233287915966, 34.5390359336324], [-77.3423426169355, 34.53923837371922], [-77.34234373203826, 34.53926319659181], [-77.34236231889362, 34.53929866101191], [-77.34236733809223, 34.53946101257316], [-77.34238367700507, 34.53950226890809], [-77.3423783234967, 34.539554848309365], [-77.34238607879995, 34.53968817630037], [-77.34241942696303, 34.539741944778385], [-77.34251286757062, 34.53983359220225], [-77.34254952789746, 34.539886583354715], [-77.34250243656798, 34.53997482192828], [-77.34260165526631, 34.54016035374338], [-77.3425855305045, 34.54020768685372], [-77.34258800401645, 34.540259430915], [-77.34261027528156, 34.54044894616461], [-77.34260278087758, 34.54048959442689], [-77.34266653993348, 34.540476302111585], [-77.34275757918851, 34.54061381935105], [-77.34281479162355, 34.54066434318806], [-77.3429626880191, 34.540699980429764], [-77.34298717830583, 34.54084480640849], [-77.3430048483171, 34.54088182038232], [-77.34302908104195, 34.54089109242329], [-77.3430352680018, 34.54093864890524], [-77.34304759954983, 34.540975115025326], [-77.34305983635838, 34.54098849544207], [-77.34307041556193, 34.54099479723066], [-77.34305940454892, 34.541004161323215], [-77.34307084536526, 34.54104050223314], [-77.34309246641595, 34.541052829685114], [-77.3430903253105, 34.54108131123187], [-77.34309280226378, 34.54108422599339], [-77.34308756338542, 34.541114739822554], [-77.34309312358994, 34.541128807852985], [-77.34310787896054, 34.541133155237034], [-77.3431418949747, 34.541141844216], [-77.34317173802245, 34.54114517629341], [-77.34323922712287, 34.54117704262113], [-77.34327744515525, 34.54118587164198], [-77.34329103575645, 34.54124110802059], [-77.34324250874758, 34.54133726773276], [-77.34328657008365, 34.54148732899824], [-77.34328872384617, 34.54157543815134], [-77.34327584962837, 34.54166976808196], [-77.3433567138987, 34.5418104759824], [-77.3433301895952, 34.54187000041066], [-77.34330446813766, 34.54199283081329], [-77.34321940610407, 34.54203567050924], [-77.34319048277393, 34.542079209760175], [-77.34310921312802, 34.54214618440904], [-77.34307693213172, 34.54218228299074], [-77.34316651709382, 34.54217407740878], [-77.34321678876438, 34.542149051571826], [-77.34325372905572, 34.54216919415112], [-77.34328631975664, 34.54223239179693], [-77.34331442846386, 34.5423061975306], [-77.34340883873527, 34.54233281994355], [-77.3435978273038, 34.54239154507256], [-77.3436347976803, 34.54250492680949], [-77.34355550608234, 34.542611812928236], [-77.34357547661052, 34.542649801184965], [-77.34359683941776, 34.54269207309765], [-77.34363457197053, 34.542749778614855], [-77.34366389455322, 34.542824251275846], [-77.34378682211847, 34.54296551298559], [-77.34379771609149, 34.542971126916086], [-77.34400520008715, 34.543048716725295], [-77.34399272447715, 34.54318789067952], [-77.34403586816539, 34.54326686054432], [-77.34405371259201, 34.54335109897306], [-77.34406450528665, 34.54342238313019], [-77.3440691338348, 34.54348280183186], [-77.34406924988568, 34.54348295115297], [-77.3440696439078, 34.54348305010286], [-77.34416735793558, 34.54348783531989], [-77.34422065965795, 34.5435223270275], [-77.34427293107817, 34.543570195857], [-77.34444344376742, 34.54361268455289], [-77.34449230343667, 34.543645568740075], [-77.3444896969184, 34.543850849529406], [-77.34449863420042, 34.54388212666055], [-77.34449734945038, 34.54397215832611], [-77.34454718686524, 34.54404101196846], [-77.34459367238094, 34.54405156977884], [-77.34464362198551, 34.54407352352906], [-77.34466459904345, 34.5441452224256], [-77.3447284912335, 34.544190915513106], [-77.34493081019784, 34.54427479372827], [-77.34493443537802, 34.544272701373835], [-77.34493674417571, 34.5442747019993], [-77.34493664547901, 34.54427618473651], [-77.34493655204525, 34.54427758840838], [-77.34512148025652, 34.544494410993366], [-77.34519773217691, 34.54455993840615], [-77.34526861795503, 34.54468760260755], [-77.34528496074864, 34.544715709768795], [-77.34530374333484, 34.54472108052193], [-77.34531538533142, 34.54477764045464], [-77.34538262874558, 34.54490274566236], [-77.3454501220232, 34.54502433402547], [-77.3456319206572, 34.54515542912229], [-77.3456382005535, 34.54519208173947], [-77.34565082719215, 34.54527511881109], [-77.34565532115107, 34.54529980352214], [-77.34568086099127, 34.545385027732074], [-77.34568784037484, 34.54539220328357], [-77.3456896281506, 34.545394522200525], [-77.34569365312878, 34.54539912813171], [-77.34598112845246, 34.54541532495333], [-77.34622847723301, 34.54555923472109], [-77.34617717497586, 34.54574969888874], [-77.34622286609682, 34.54580486243954], [-77.34631710063535, 34.545885183185845], [-77.34644037308415, 34.546003072169476], [-77.34646042541384, 34.54601550144002], [-77.3464622133798, 34.54601674292814], [-77.34646455192636, 34.546019559322154], [-77.34680503976766, 34.546240064670855], [-77.34699749551034, 34.54642786339455], [-77.34703564754179, 34.546548291698315], [-77.34723233902093, 34.54677557153092], [-77.3472901617025, 34.54683843231463], [-77.34736319934767, 34.54686488263078], [-77.347429531814, 34.54698125717047], [-77.34775407689843, 34.54729827838149], [-77.34780835146881, 34.547411783543964], [-77.34799467037004, 34.54775306876877], [-77.34799486088686, 34.5477532720682], [-77.34799491188936, 34.54775334093013], [-77.34799503056678, 34.547753493935005], [-77.34840129845466, 34.54792857449485], [-77.34850740075805, 34.54816915898215], [-77.34856677778636, 34.54828608460835], [-77.34876462337913, 34.548432348212856], [-77.34895365032384, 34.548476084429296], [-77.34898615909276, 34.54858990617737], [-77.34909875583944, 34.548787148623546], [-77.34936167014844, 34.549025509975635], [-77.34942527704098, 34.549084675651976], [-77.34953128793872, 34.54923902606945], [-77.34964569120027, 34.549400623298666], [-77.34971517097786, 34.54946428067865], [-77.3497972059699, 34.54952734350451], [-77.34985587504264, 34.54965236181767], [-77.34988120200106, 34.54968520840518], [-77.34988857546219, 34.54969957080271], [-77.34991112438891, 34.54979459340209], [-77.34991361856099, 34.5498029538677], [-77.3499142220656, 34.549804947105386], [-77.34994350144967, 34.54989937207661], [-77.34995018233198, 34.54992010247604], [-77.34995913530372, 34.54994788308838], [-77.3499596549604, 34.5499512478017], [-77.34996707153398, 34.5499788772135], [-77.34996049937527, 34.55000719086492], [-77.35000422715571, 34.550014232020274], [-77.3500258378865, 34.550031625378864], [-77.35003432178544, 34.550049678605795], [-77.35004009522277, 34.550060176232655], [-77.35004206529672, 34.5500661563482], [-77.35004972055555, 34.550089393666994], [-77.35006144126356, 34.550124971466374], [-77.35006897125142, 34.55014782854945], [-77.35007388939678, 34.55016275745166], [-77.35009699912382, 34.55024827662979], [-77.35010079910998, 34.55026307694421], [-77.35011127873871, 34.550273415234116], [-77.35023431037357, 34.550368855423415], [-77.35026508540457, 34.55038013473709], [-77.35028865812026, 34.55045052086846], [-77.35035114936011, 34.55055637722982], [-77.35036022246501, 34.55059555623724], [-77.35037258914272, 34.55064895761791], [-77.35037876876203, 34.550656160118415], [-77.35038137756749, 34.55068690752614], [-77.35038816042568, 34.55071394621605], [-77.35038879556414, 34.550718939633235], [-77.350403429581, 34.55074235143216], [-77.35040972133116, 34.55075342102171], [-77.35042783062981, 34.5507694424407], [-77.3504578049033, 34.55077738020498], [-77.35047728531246, 34.55078465900493], [-77.35051910990973, 34.550791335769404], [-77.35058051856292, 34.550808673819745], [-77.35063177722313, 34.55082676974538], [-77.35067192818988, 34.55085721521521], [-77.35074517126586, 34.55090738845025], [-77.35076666643019, 34.55096607060162], [-77.35077736640615, 34.55102516559885], [-77.35079161272132, 34.551101243246094], [-77.3508211500908, 34.551263685676176], [-77.35084041432778, 34.55137337271348], [-77.35084211178861, 34.55138307974344], [-77.3508460715813, 34.5513887136779], [-77.35085457547787, 34.55145158296789], [-77.35086398327164, 34.55150234273262], [-77.35086518901538, 34.55150961920512], [-77.35090108768118, 34.55158844888573], [-77.35092551907769, 34.551615897357124], [-77.35096523361676, 34.55168249243979], [-77.35100009386849, 34.55172757544296], [-77.35100830325544, 34.55174868913429], [-77.35104324069285, 34.55178427096186], [-77.3511793508692, 34.55194659851137], [-77.35123843477263, 34.55205729074617], [-77.35136535326168, 34.55216465076821], [-77.35139025738286, 34.55218378138232], [-77.35142610379918, 34.55220910762168], [-77.35148684074517, 34.552269577098805], [-77.35152747912815, 34.55232131909895], [-77.35161696166855, 34.55237326062056], [-77.3516926847564, 34.55243768376279], [-77.351812105559, 34.55249751512177], [-77.35187576695294, 34.55254052251754], [-77.35196117576494, 34.5525685420395], [-77.35210052282562, 34.55261183009201], [-77.35220139846939, 34.552642770415], [-77.35232258169323, 34.55268517802773], [-77.35251827174403, 34.552733183159226], [-77.35256517826409, 34.55274298633353], [-77.3525916905065, 34.552744579087616], [-77.35263316215998, 34.552742476387664], [-77.35278827951613, 34.55273266357021], [-77.35294898258269, 34.55269395098039], [-77.352985646431, 34.55268686777668], [-77.35301661156997, 34.552680676400165], [-77.35310286390899, 34.552649042393256], [-77.35318349268975, 34.552620184592115], [-77.35330483606377, 34.55257254151705], [-77.35338148812868, 34.55254698875881], [-77.35352277017343, 34.55250116337929], [-77.35357916769696, 34.55248753669783], [-77.35361688450995, 34.55247599848405], [-77.3537766671292, 34.552435919237304], [-77.35378291460397, 34.55243259540642], [-77.3537903458348, 34.55242767773854], [-77.35389618045622, 34.552363518640185], [-77.35397561291845, 34.55232127113235], [-77.35402468787163, 34.55230185804523], [-77.35406666360454, 34.55226549323853], [-77.35412261912145, 34.55222531995396], [-77.354174915043, 34.55219107110071], [-77.35434610341548, 34.552085683754306], [-77.35445110318582, 34.55204009895044], [-77.3545721686922, 34.551989452496684], [-77.35462863930202, 34.55197477991321], [-77.3546839629831, 34.55193181379067], [-77.354971323645, 34.55170486350477], [-77.35501317508293, 34.55166512983582], [-77.35503342432315, 34.55163668670804], [-77.35514250878371, 34.55151692883071], [-77.35516715958835, 34.55149167772708], [-77.35517258979893, 34.55148890177786], [-77.35519140535888, 34.55147992960757], [-77.3552718604901, 34.55144030346398], [-77.35530143425302, 34.551432823067984], [-77.35537056299219, 34.55141647398068], [-77.35549012045851, 34.55140044273523], [-77.35566441509778, 34.551363379298365], [-77.35576472796336, 34.55134925933295], [-77.3558248458631, 34.551314931442775], [-77.35587310017773, 34.55127098876498], [-77.355965254064, 34.55116544603271], [-77.35598141758894, 34.55114273836272], [-77.35598915342109, 34.551131870468296], [-77.35601146785918, 34.55110076575124], [-77.35609658038507, 34.550993993761224], [-77.35612338280055, 34.55096343848955], [-77.35616733856224, 34.550913617521935], [-77.35620136184343, 34.550877192796], [-77.35625124679089, 34.55084931637386], [-77.3563098056124, 34.55080576978377], [-77.35654062899185, 34.55068524442111], [-77.35656561981428, 34.55066667618951], [-77.35679172533871, 34.55054350248384], [-77.35692502668472, 34.55038508089233], [-77.35696568801909, 34.55034165157392], [-77.35712349349745, 34.55020817929473], [-77.35720976747923, 34.550099263541014], [-77.35736577728017, 34.550015570657344], [-77.35753585531751, 34.54991206933321], [-77.3576854330321, 34.549785957115375], [-77.35772525188966, 34.54975584796004], [-77.35776502711617, 34.54972599708496], [-77.35782189923951, 34.549678685638284], [-77.35788688942263, 34.549634540488356], [-77.35793113230554, 34.5496076467825], [-77.35796499755727, 34.549566078874335], [-77.35800133397562, 34.54951761752605], [-77.35802862664617, 34.54949172169958], [-77.3580792906436, 34.54943136137232], [-77.35811876862101, 34.549356331380615], [-77.35816760584478, 34.54929094828499], [-77.35820288044182, 34.549243122542954], [-77.3582208848557, 34.549219216914835], [-77.35826885489564, 34.54915576724994], [-77.35827287080866, 34.549152990617095], [-77.35828744259524, 34.54913710364882], [-77.35834955843626, 34.549078278523574], [-77.35835683408797, 34.54906965711357], [-77.35852084737756, 34.54893120398696], [-77.35853961996582, 34.548910219871644], [-77.35856986304157, 34.54886975971116], [-77.35872977884162, 34.548754369988146], [-77.35877095734719, 34.54866059705269], [-77.35878563433037, 34.548648255024354], [-77.35887658925685, 34.54857742949868], [-77.35887652198285, 34.548573962485506], [-77.3589709038052, 34.548501530370864], [-77.3589726219456, 34.54849996844651], [-77.35897513837187, 34.54849855700779], [-77.35902085249236, 34.54846341521072], [-77.35902204593253, 34.548461922798275], [-77.35902211191154, 34.54846044741009], [-77.35899993264975, 34.54843378097236], [-77.35902817292794, 34.54840281148845], [-77.35903187120205, 34.54839857922069], [-77.35902922798167, 34.54839471768291], [-77.35900433613517, 34.54837194097627], [-77.3590089644205, 34.54834970796775], [-77.35900296116472, 34.54826636028147], [-77.35899826895974, 34.548250402683145], [-77.35901302090505, 34.54814707004067], [-77.35902003577327, 34.54812485656946], [-77.35912229021177, 34.54802256820824], [-77.3591375819802, 34.547985519278285], [-77.35914503806758, 34.54796293248972], [-77.35914318296182, 34.54786230074606], [-77.3591095384702, 34.54779084018238], [-77.35909225001376, 34.54774722279879], [-77.35910611925385, 34.54769562759999], [-77.35932330543395, 34.547591540905515], [-77.35908286061944, 34.54756965117573], [-77.35911519193233, 34.54749909556998], [-77.35910324961486, 34.547445862152166], [-77.35910275582769, 34.54743968033156], [-77.35909803570694, 34.54743747808371], [-77.35909364434667, 34.54742742601882], [-77.35907820998216, 34.547382008741955], [-77.35905495410233, 34.54734939219557], [-77.35899907396428, 34.5472710196746], [-77.35899906116803, 34.54727100172771], [-77.35899905424074, 34.54727099448933], [-77.35894019971255, 34.54719485770138], [-77.35888295923309, 34.54716529891217], [-77.35879925631471, 34.54706014275412], [-77.35875696177493, 34.54702900691267], [-77.35866785706853, 34.54695144746813], [-77.35866482679586, 34.54692049829391], [-77.35861545261173, 34.54687875480041], [-77.35847437856805, 34.54689151499392], [-77.35822406936909, 34.546825555155294], [-77.35816120245522, 34.54681887345212], [-77.35802769673418, 34.54682869389698], [-77.35791941455808, 34.546814387885576], [-77.35786038301976, 34.54680514755893], [-77.35783236058826, 34.546786583878585], [-77.35773391051885, 34.546779604355905], [-77.3576087811323, 34.54675417500731], [-77.35755935230765, 34.546743817868354], [-77.35751030456277, 34.54670801069648], [-77.3574416697156, 34.546703197342325], [-77.35743113228408, 34.54670107290614], [-77.35743241984082, 34.54664626331497], [-77.35743248226674, 34.5466396727038], [-77.35743263869776, 34.546633015749094], [-77.35743809989366, 34.546400590288386], [-77.35743849220587, 34.54639398407264], [-77.35743896801029, 34.546387723332884], [-77.35745104205019, 34.54629414133858], [-77.35748201043039, 34.54614289503932], [-77.3574722475501, 34.54613337403261], [-77.35752281512892, 34.54593177681565], [-77.35757313035566, 34.54588495223422], [-77.35784351131787, 34.545611038414], [-77.35785427274432, 34.545599649818456], [-77.35785524765991, 34.545596785442186], [-77.35785967677943, 34.545594125053334], [-77.35800368803197, 34.5453333129218], [-77.35799124218482, 34.54516621337211], [-77.35800708657925, 34.54508800007281], [-77.35804577063756, 34.54497522176115], [-77.35792520858234, 34.54485496517847], [-77.35827539879025, 34.54458437251088], [-77.35853028329286, 34.54460854910227], [-77.35904596097922, 34.544685923233665], [-77.35905821158767, 34.54468784343729], [-77.35906190204898, 34.544688977268486], [-77.35906224217295, 34.544691245893766], [-77.35906262688546, 34.54469403227529], [-77.3591499965261, 34.5448636852268], [-77.35915405062164, 34.544922849859226], [-77.35915858980249, 34.54498909370529], [-77.3591711575121, 34.54508904864228], [-77.35924553365885, 34.54507985048339], [-77.35927111035349, 34.54504384165115], [-77.35944570747381, 34.544910451940495], [-77.35946626358839, 34.544890425779634], [-77.35947578568148, 34.54487652149925], [-77.35955037713595, 34.54480716733926], [-77.35955065230476, 34.54480453494224], [-77.35955096614524, 34.54480160899465], [-77.35957567732865, 34.54473972539241], [-77.3595780982214, 34.544720730567356], [-77.35957927659003, 34.54470860411318], [-77.35957876191007, 34.54469679368614], [-77.35957727215437, 34.54467828974225], [-77.35957757713945, 34.544660780199855], [-77.35957435517642, 34.54461750378324], [-77.35957072147994, 34.54456869708221], [-77.35956984666431, 34.54455694700279], [-77.35956907097409, 34.544546528323984], [-77.35953013344479, 34.54450145959193], [-77.35953381594281, 34.54442655582221], [-77.35953691828468, 34.544378070596565], [-77.35954826096824, 34.54432089874559], [-77.35954884644137, 34.54430968461129], [-77.35955340603013, 34.544253284435726], [-77.35955507059901, 34.54425062079179], [-77.35955942022218, 34.54423040548858], [-77.35956735463056, 34.54419450546413], [-77.35956803991415, 34.544185240458916], [-77.35955260666907, 34.544130987506506], [-77.35954538305917, 34.544081697951384], [-77.359539356514, 34.54393251356336], [-77.35953580786733, 34.54388858251963], [-77.35955620199687, 34.54383213132509], [-77.35954652107962, 34.543764627832395], [-77.35958741311568, 34.54370752714388], [-77.3595998442348, 34.543678412947564], [-77.35957066951578, 34.54363873847948], [-77.35954282666657, 34.543600875286444], [-77.35947770921112, 34.543512322296024], [-77.35941337536575, 34.54345746744528], [-77.3593325392319, 34.54342820474734], [-77.35929386206149, 34.54331632547799], [-77.35918860047948, 34.54320410760556], [-77.35916045641596, 34.54316612380134], [-77.35909512744092, 34.54307535521778], [-77.35900207539416, 34.54304461086545], [-77.35898654636918, 34.54298837875734], [-77.35898767670496, 34.5429189745191], [-77.35894887661382, 34.542843494954866], [-77.3588138037114, 34.54276842883961], [-77.35880714871799, 34.54258276330035], [-77.35878098343959, 34.54252833101153], [-77.3589206671588, 34.542389628942864], [-77.35892006301816, 34.54238589249926], [-77.35891980025723, 34.542382745794654], [-77.35891561365558, 34.542342570364646], [-77.358869498991, 34.54227076153618], [-77.35887794530248, 34.54217304505024], [-77.35889546819615, 34.54212899732589], [-77.35880820645022, 34.542034763464336], [-77.35880507891672, 34.54198681432725], [-77.35883570031422, 34.541785980667626], [-77.35891994451643, 34.54165850491844], [-77.35892287780342, 34.541645593772714], [-77.35891410131843, 34.54152986755378], [-77.35892352196358, 34.541521722052515], [-77.35892146342454, 34.54141597819815], [-77.35892127946701, 34.54140642202007], [-77.35892114994631, 34.541396382688156], [-77.35892319304699, 34.54129398059114], [-77.35891436305297, 34.54128500602914], [-77.3589090297533, 34.54118401111427], [-77.35891149613808, 34.54114331486624], [-77.35890628463903, 34.54104134545197], [-77.35891447088007, 34.54102057715996], [-77.3589137621648, 34.54093905241318], [-77.35890463223895, 34.540919171472886], [-77.35889566359496, 34.54088724048189], [-77.35886697330824, 34.54080218221653], [-77.358812238001, 34.54059827570943], [-77.3588193343925, 34.54052776389635], [-77.35841709761976, 34.54037731458453], [-77.35850259391628, 34.54028472888297], [-77.35850756049217, 34.53995327881454], [-77.35843725898434, 34.53988476404572], [-77.35848308630162, 34.539816740547266], [-77.35850576110653, 34.53945566081821], [-77.35846013738674, 34.539391822220615], [-77.35850988571498, 34.53931370559478], [-77.35848354609436, 34.53914362784673], [-77.35864195206453, 34.53902518953802], [-77.3587956808153, 34.53900803785023], [-77.35893501575072, 34.53883379343646], [-77.35899531517362, 34.538700395745906], [-77.35898322565149, 34.53847270867356], [-77.35898773871338, 34.53833655354202], [-77.35901839748777, 34.53821488679571], [-77.35901962253358, 34.538203785017394], [-77.35899798800641, 34.53809025373983], [-77.35901926115201, 34.53796268106137], [-77.35888474005273, 34.53786173717853], [-77.35901426394486, 34.537716133867946], [-77.35912963305283, 34.53758164878852], [-77.35922251420479, 34.53751123115383], [-77.35940895108575, 34.53741145108764], [-77.35937506077447, 34.53730148215676], [-77.35943954557658, 34.53717796877553], [-77.3594399616115, 34.53716972419601], [-77.3594465535972, 34.53715652568345], [-77.35950045258438, 34.53703860094758], [-77.35954317351492, 34.53698002493804], [-77.35962082658132, 34.536783245667344], [-77.35962070794847, 34.5367764593291], [-77.35962517769133, 34.53677155905191], [-77.35963240700754, 34.536753899913926], [-77.35965634565093, 34.53666254075482], [-77.35966005592186, 34.53664838085014], [-77.35966512727049, 34.53662902651932], [-77.35968672961191, 34.536553140983244], [-77.35970131283118, 34.53652002742895], [-77.35972935160632, 34.53645972751052], [-77.35973315530634, 34.53645154732355], [-77.35976231806043, 34.53638883000204], [-77.35975068591904, 34.536335892987836], [-77.35994338102866, 34.536240342840024], [-77.35992960435091, 34.53617458689407], [-77.3599551531889, 34.53604744396835], [-77.35984514464285, 34.53603470944207], [-77.35981885653113, 34.53601345166687], [-77.35974695768718, 34.5359636450903], [-77.3597475505326, 34.53596181278211], [-77.35983035758673, 34.535889383310696], [-77.35983716730236, 34.535881236573694], [-77.35990036214318, 34.53575688962515], [-77.35990378588141, 34.535665284415934], [-77.35991069550207, 34.53563298952285], [-77.35991954245293, 34.53559163974045], [-77.35997794545067, 34.53550089252546], [-77.35999126593781, 34.535459483885575], [-77.36001130882171, 34.53537367572965], [-77.36005885565785, 34.53527284164247], [-77.36007058928027, 34.53524971438313], [-77.36008441878303, 34.53524073477344], [-77.36008041085428, 34.535228501222846], [-77.36022454271927, 34.53497573046867], [-77.36026644605343, 34.53484828268676], [-77.36026725177737, 34.53484570304262], [-77.36033598824845, 34.5347148562153], [-77.36035353520043, 34.53464229246466], [-77.36038153128743, 34.53451782523379], [-77.36040020307856, 34.5344607838791], [-77.36041844917301, 34.53442551168693], [-77.36043541763077, 34.534333300245564], [-77.36047524753593, 34.53423070654501], [-77.36048868712287, 34.53421132179423], [-77.36049606610324, 34.53420215357139], [-77.36049862083547, 34.53418781993574], [-77.3605980458581, 34.534016168742134], [-77.36067338719523, 34.533931791284694], [-77.36066553046628, 34.53382010439904], [-77.36066833586425, 34.5338020044643], [-77.36072417971002, 34.533679651649315], [-77.36071342139728, 34.53357557508228], [-77.36073841992072, 34.53343277628478], [-77.36077785041579, 34.53325232696237], [-77.36075467643094, 34.53318561028349], [-77.36077562019685, 34.533109105249686], [-77.36089593757504, 34.53300026260009], [-77.36094503902213, 34.53294317961155], [-77.36104398248175, 34.53289911910519], [-77.36116154875775, 34.5328001690137], [-77.36129333900351, 34.53278752873588], [-77.3614872671382, 34.53271030147734], [-77.36152022808609, 34.53258570215879], [-77.36154421337491, 34.53248964476485], [-77.36149576352905, 34.532344401052335], [-77.36152655972327, 34.53223268705676], [-77.36152363639177, 34.53221797432465], [-77.36152482625825, 34.53220415724838], [-77.36155597911127, 34.532090903619455], [-77.36158024741542, 34.53201044504581], [-77.36164228253678, 34.531873867839415], [-77.36166183040308, 34.53183083301311], [-77.36166817496765, 34.53180486495746], [-77.36171018512682, 34.53172438096953], [-77.36176503400233, 34.53160363121709], [-77.36178082316425, 34.531568869431496], [-77.36180873146216, 34.531506492793085], [-77.36185403518814, 34.531398573850936], [-77.36196194189166, 34.53129795726344], [-77.36196864488747, 34.53120597824528], [-77.36198766481091, 34.53112966638705], [-77.36202452612966, 34.53104411817321], [-77.36198254959547, 34.53096437771167], [-77.36196010625183, 34.53090914453273], [-77.36189609898882, 34.53081779119647], [-77.36185901453013, 34.53074428419766], [-77.36181568274858, 34.53063480949371], [-77.36182350021627, 34.53058342313], [-77.36185972464067, 34.53050236417578], [-77.36183819242899, 34.53014902885259], [-77.36184143500813, 34.53009119020788], [-77.36181901145406, 34.53005041823418], [-77.36175042587006, 34.52996465818488], [-77.36150806355312, 34.52964955698076], [-77.36152695969176, 34.52950083819403], [-77.36158652787005, 34.52939343115071], [-77.36176724193459, 34.52922930020023], [-77.3618829699239, 34.529177350301566], [-77.3619867263725, 34.52919931717842], [-77.36200149078205, 34.5292112493852], [-77.3620895477405, 34.52924217554685], [-77.362132494439, 34.529298776932066], [-77.36212172564359, 34.529316343454255], [-77.36212909718276, 34.529332928990044], [-77.36215743622787, 34.5293309284909], [-77.36220764110409, 34.52939416478844], [-77.36226376871821, 34.52941829617423], [-77.3622705001037, 34.529467273586434], [-77.36234210557011, 34.52952942491977], [-77.36243683017373, 34.52958274917163], [-77.36254131263402, 34.52970898563997], [-77.36257434382092, 34.52974079826028], [-77.36279349726824, 34.52979552791332], [-77.36293030261918, 34.529863441991516], [-77.36298592358737, 34.52989124940953], [-77.36310262013905, 34.529909528465765], [-77.36312545641147, 34.52991186251074], [-77.36314554817432, 34.529903344846964], [-77.36326863281194, 34.52985164686069], [-77.36332492698301, 34.5297713657064], [-77.36333771897547, 34.529753250531], [-77.36339244605253, 34.529663531178336], [-77.36342592905577, 34.52961813129691], [-77.36348653088093, 34.52951229672864], [-77.363507848592, 34.52947132296539], [-77.36353595942751, 34.52935745597618], [-77.36354409929305, 34.529240598465464], [-77.3635449617767, 34.52923374665686], [-77.36354834131849, 34.52922412115987], [-77.36354129793813, 34.529111861754735], [-77.36353732858423, 34.52906484935486], [-77.36353387058267, 34.52899368989271], [-77.3635339701836, 34.52899050463797], [-77.36353382189041, 34.52898723269846], [-77.36352713398789, 34.528878096705924], [-77.36352265181912, 34.52886972236264], [-77.36344639502545, 34.528818523034346], [-77.36337778704805, 34.52876817749785], [-77.3633641847802, 34.52876006333003], [-77.36334839330748, 34.52874435373745], [-77.36329767685169, 34.52868971691489], [-77.36326284392064, 34.528662322231355], [-77.36327051422131, 34.52861073714415], [-77.36329133572337, 34.52853580544319], [-77.36335556279218, 34.528430580240915], [-77.3633727596318, 34.52841212702076], [-77.36339113357263, 34.528399016903], [-77.36342139675588, 34.528354676099525], [-77.36352004830069, 34.52823543603124], [-77.36370853388787, 34.528108469398965], [-77.36372407922384, 34.52808635712768], [-77.36375640636774, 34.52806594682735], [-77.36391555926139, 34.52793117083868], [-77.36402007316804, 34.52781876508619], [-77.36410257729418, 34.5277738132824], [-77.36415667869043, 34.52772617086342], [-77.36427736357051, 34.527610503619286], [-77.3643572988553, 34.52753503578283], [-77.36436552533398, 34.52752922291778], [-77.36437555645145, 34.527522729416006], [-77.36445676249585, 34.52747651848888], [-77.36451252862913, 34.527476575413445], [-77.36455485581887, 34.52747800357865], [-77.36457732671545, 34.52747962304376], [-77.36490648898382, 34.52741991892453], [-77.36494969295248, 34.52737602439568], [-77.36502963518572, 34.52723148068235], [-77.36506252005034, 34.52717893770111], [-77.36515262275803, 34.527083596219356], [-77.36518461724751, 34.52705853433133], [-77.36520369470729, 34.52703618621394], [-77.36532678126089, 34.52691226156825], [-77.3653413878337, 34.52689393609348], [-77.36534756910923, 34.52688946630151], [-77.36535352974317, 34.52687972636154], [-77.3654817157149, 34.5267063813873], [-77.36553081451083, 34.52662181949141], [-77.3655348085519, 34.526608036028904], [-77.36555630275005, 34.5265940556873], [-77.36567866180309, 34.526553855496246], [-77.36575413115155, 34.526524990926255], [-77.36581947999596, 34.52653926603023], [-77.36588093602185, 34.526571376615536], [-77.36594703110067, 34.526684093558984], [-77.36594702510804, 34.52668444303716], [-77.36594674086186, 34.52668460982706], [-77.36588561044621, 34.52681552937261], [-77.36587452351228, 34.52685968056431], [-77.3658680757258, 34.52687926220945], [-77.36587068388255, 34.52689565621403], [-77.36587118181522, 34.526940021199664], [-77.36587201353422, 34.5269822757578], [-77.36598965208167, 34.52704536571176], [-77.36594352765724, 34.52716952648968], [-77.36594716787421, 34.527181234742585], [-77.36600686547408, 34.527287711963126], [-77.36600276612593, 34.52736607050709], [-77.36604514487857, 34.52747727133924], [-77.36603617236106, 34.52752831574642], [-77.36607350882058, 34.52755390557742], [-77.36612195503957, 34.527606668556245], [-77.36624695329388, 34.52766399045814], [-77.36628681753479, 34.52784322886086], [-77.36632127432969, 34.52797689201237], [-77.36610889780479, 34.528178941162864], [-77.36605223271569, 34.528225802744274], [-77.36592339719449, 34.528279041819644], [-77.36570892588621, 34.52850583427716], [-77.36568272669157, 34.52854272520985], [-77.36567373493912, 34.528559836994866], [-77.36560937392728, 34.52862944401599], [-77.36538861552579, 34.52889633477881], [-77.36530705066987, 34.528915973030145], [-77.36522778027884, 34.52891832073418], [-77.36506960590671, 34.52898946738807], [-77.36502866967709, 34.52902000812159], [-77.36496820036346, 34.529064304635305], [-77.36496128276137, 34.529120064652474], [-77.36500779081362, 34.52914542890528], [-77.36510421680308, 34.52920404505066], [-77.36515665191058, 34.52921355537681], [-77.3652973273462, 34.52934195533077], [-77.36530613774367, 34.52934178080914], [-77.36530350773754, 34.52934765257549], [-77.36530398656106, 34.529351878430035], [-77.3652686061462, 34.52959750591134], [-77.36515240393283, 34.52977484283144], [-77.36512270404658, 34.52996342086798], [-77.36532342882983, 34.53007925969209], [-77.36535235931261, 34.53027234604235], [-77.3657087677422, 34.53051339538595], [-77.36535153154198, 34.53123852634242], [-77.36549711492884, 34.53192946292188], [-77.36483797197297, 34.532269579195145], [-77.36470172017923, 34.53253589200263], [-77.364471840819, 34.53265019526146], [-77.36367550466323, 34.53303000354254], [-77.36324865835877, 34.53310934223859], [-77.36294160341778, 34.5333602738122], [-77.36266879527219, 34.533533605866786], [-77.36252665039295, 34.53366486860634], [-77.36244961844494, 34.53372043576027], [-77.36222484336761, 34.5338143113517], [-77.3620543741288, 34.53383877246419], [-77.36192951342791, 34.533828892454515], [-77.36181672030196, 34.53386408468446], [-77.36173395492986, 34.53397691656031], [-77.36169643589625, 34.53402927166451], [-77.3616859364742, 34.53404881162954], [-77.3616829648222, 34.534256894616334], [-77.36171240409178, 34.53427179648014], [-77.36177178720646, 34.53443104474682], [-77.36188652778003, 34.534491541841625], [-77.36176980414919, 34.53458635523285], [-77.36173718678643, 34.534757876546095], [-77.36163696268152, 34.53492644726617], [-77.36153358855093, 34.534968146655174], [-77.36124269577965, 34.53500174463376], [-77.3610802446005, 34.53495448570594], [-77.36102607798422, 34.53496955847206], [-77.36101268064469, 34.5349846361717], [-77.36092342860952, 34.53504379270425], [-77.36091193517446, 34.535081880536296], [-77.36093012540562, 34.53511893816007], [-77.36091340968095, 34.535163101391234], [-77.36084298001776, 34.535315194109785], [-77.36081414577782, 34.535380466103675], [-77.36073457083492, 34.53557281364775], [-77.36067685947737, 34.535645062298286], [-77.36043680480235, 34.535910818013974], [-77.3604189047514, 34.53591594603227], [-77.36038631124487, 34.53593173066122], [-77.36010406095559, 34.536011109742695], [-77.36012168417454, 34.536162778172496], [-77.36020315694374, 34.5362029317902], [-77.36017318048265, 34.536293112704705], [-77.36004305027198, 34.53647081361452], [-77.360037492887, 34.53647545566092], [-77.36003119235878, 34.536481604510335], [-77.36000093007019, 34.536581848586586], [-77.3599953996822, 34.53660008796701], [-77.35998057563799, 34.53669612860437], [-77.35997050117241, 34.53672608572841], [-77.35995521793842, 34.53677153148951], [-77.35999552457415, 34.536951772086404], [-77.35997965199915, 34.536969592086066], [-77.35999474103133, 34.53698299632492], [-77.36001495360081, 34.5371911707584], [-77.36001893279665, 34.537206065194496], [-77.36001955541684, 34.53720866982177], [-77.36001715158343, 34.53721066505472], [-77.36003767452213, 34.5374332591014], [-77.36007002978536, 34.53744622509919], [-77.36003721098876, 34.53767498897625], [-77.36003846064492, 34.53769559564989], [-77.36002124240217, 34.5377093938642], [-77.36000957716938, 34.53793728342224], [-77.36002126978305, 34.53794289553788], [-77.36005353871653, 34.53814538925693], [-77.36012376944754, 34.53817295841364], [-77.36004368202204, 34.53821705087239], [-77.3601109906492, 34.53858466421987], [-77.36026745947169, 34.538641913740534], [-77.36011796797584, 34.538749935527974], [-77.36022313213634, 34.53898254728068], [-77.36024989802202, 34.539134091797465], [-77.36025683426934, 34.53931424351863], [-77.36025739472827, 34.53943937468455], [-77.36025063436409, 34.539623634284695], [-77.36023953635777, 34.53980256362961], [-77.36024874665117, 34.53992867959295], [-77.36023675743064, 34.540115281196634], [-77.36022097729833, 34.54029027007695], [-77.36021900439208, 34.54043394965314], [-77.36020315008626, 34.54060976940907], [-77.36018468145404, 34.54076934620425], [-77.36020054908921, 34.540930677070705], [-77.36018448581606, 34.54110210565741], [-77.36016839851428, 34.541258160194914], [-77.36015901294994, 34.541350598139694], [-77.36015610368729, 34.54144707481156], [-77.36014158136967, 34.54159793260607], [-77.36013154578896, 34.54173696550552], [-77.36012861708505, 34.54195063721831], [-77.36012050371161, 34.54209061630558], [-77.36011431026124, 34.54222531602069], [-77.36010573140402, 34.54233756778327], [-77.36009838574216, 34.542456276796585], [-77.3603029853216, 34.54255398574564], [-77.36009603299476, 34.542713159648144], [-77.36008850433102, 34.542829696918446], [-77.36009152633775, 34.54294422765662], [-77.360105402382, 34.543072087699045], [-77.360166168179, 34.543244021374704], [-77.3601829154683, 34.54330574969471], [-77.36020472220534, 34.543341317907974], [-77.36023351850184, 34.54342087480155], [-77.36020849109838, 34.54351298225653], [-77.36021683402902, 34.54354568954221], [-77.36019234192861, 34.543592067708126], [-77.36018114971077, 34.54362386317548], [-77.36019722320208, 34.543670925683365], [-77.36020543358, 34.54375986265953], [-77.36020953241945, 34.543791565205254], [-77.36020908801466, 34.54382077384494], [-77.36021835002498, 34.54401451526324], [-77.36021811602272, 34.54403515333319], [-77.36021180750011, 34.54406009576728], [-77.36021499029263, 34.54415801554824], [-77.36021002092842, 34.544258830692065], [-77.36021062181484, 34.54428105672122], [-77.36021285524835, 34.54430068292578], [-77.36022303066339, 34.54451352857854], [-77.36022344848148, 34.54452403383719], [-77.36022251399868, 34.54453475316714], [-77.36022856789393, 34.544645708725696], [-77.36022345985228, 34.54476210531759], [-77.36022346500593, 34.544768855652364], [-77.36022359720225, 34.54477531356663], [-77.36023062166824, 34.5449222472632], [-77.36023679342593, 34.54500670668167], [-77.36024635107236, 34.5450103841561], [-77.36023649833783, 34.54501681704898], [-77.36022431932273, 34.545197706433484], [-77.36022079272918, 34.545257543375875], [-77.36022059545634, 34.54525891725456], [-77.36022072098612, 34.54526025075636], [-77.36022274312164, 34.54526659814789], [-77.36028597684646, 34.54545224458024], [-77.36035424225523, 34.545484495757584], [-77.36031332592384, 34.545550932625275], [-77.36032561690496, 34.545663624983874], [-77.3604300365752, 34.54571840531475], [-77.36044975468825, 34.54586567826171], [-77.36020652626769, 34.54597539765045], [-77.36019894285278, 34.54599201586391], [-77.3601970835041, 34.545996775536466], [-77.36018588242307, 34.54601075751921], [-77.36016659744936, 34.54622464624962], [-77.36016542488719, 34.54624615856783], [-77.36016186106635, 34.54627031715927], [-77.36008724607757, 34.54643440641568], [-77.36007143892941, 34.54650451670695], [-77.3600308161937, 34.54653113502573], [-77.36003581892652, 34.546607086008066], [-77.36007550977044, 34.54662634256707], [-77.3600738623796, 34.54667626261515], [-77.360089685378, 34.54674671334466], [-77.3600977915059, 34.54680156527517], [-77.36009575147833, 34.54686825189177], [-77.36007209320724, 34.546923769779596], [-77.36007310260125, 34.546940939893524], [-77.36009621445254, 34.54699059728689], [-77.3601063525089, 34.54703646648189], [-77.36009200085235, 34.547181823345795], [-77.36009520229308, 34.547235567161266], [-77.36009772693563, 34.54728437442573], [-77.36010208184027, 34.54735698857569], [-77.36010690698134, 34.54743744346982], [-77.36011462021916, 34.54747759512784], [-77.36011723493803, 34.54751099118694], [-77.36012013914447, 34.54753800646385], [-77.36012824054342, 34.54757200685386], [-77.36013217159669, 34.54759747981964], [-77.3601672696484, 34.547691224548196], [-77.36018493098102, 34.54770113970064], [-77.36019887456159, 34.547710286690645], [-77.36022075739373, 34.54774120296548], [-77.36030268017964, 34.54781775080058], [-77.36033443121892, 34.54782937972118], [-77.3603353334833, 34.547921131312435], [-77.36030560880542, 34.5479397411915], [-77.36030726336014, 34.5479706304613], [-77.36031061979617, 34.54803329108812], [-77.36033493992583, 34.54805792960194], [-77.3603424036259, 34.54806472700498], [-77.36035431698122, 34.54809579330019], [-77.36041041372044, 34.548169473416635], [-77.36036657353056, 34.54828781622737], [-77.3603630930585, 34.54830718799515], [-77.36034872070385, 34.548340422770465], [-77.3603328889638, 34.548416676591124], [-77.36033403025468, 34.54842529687079], [-77.3603346021742, 34.54843270219264], [-77.36033695027287, 34.54848074433833], [-77.36033771268578, 34.54848597265054], [-77.36033833266501, 34.548490224201046], [-77.36034182324725, 34.54851416106532], [-77.36034051857548, 34.548516171627156], [-77.36032732262126, 34.54852262911822], [-77.36031997736511, 34.54852424817024], [-77.36031049351102, 34.548526378795145], [-77.36030578968082, 34.548527675780555], [-77.36030650603064, 34.54852939646509], [-77.36031117440284, 34.54853029557746], [-77.36031984785015, 34.548529909583564], [-77.36032617888492, 34.548529594615665], [-77.3603266434823, 34.548533471145255], [-77.36032954372554, 34.54853923269162], [-77.36033325835245, 34.54854782011719], [-77.36033536298648, 34.54855281680522], [-77.36034348921054, 34.548569106855695], [-77.36035912648235, 34.548595178115], [-77.3603676859604, 34.548604068594464], [-77.36037431864246, 34.54864402609124], [-77.36040159496946, 34.54866039172332], [-77.36038764655997, 34.54869168464214], [-77.36037460802373, 34.548764497525625], [-77.36037969754923, 34.54878595705191], [-77.36037837052756, 34.54881135519795], [-77.36038232459576, 34.54890799072319], [-77.36030876118217, 34.549025855985214], [-77.3603047131995, 34.54904157891785], [-77.36018736909665, 34.54914757724498], [-77.36016318468015, 34.54918437080727], [-77.36016312312961, 34.54920336735731], [-77.36013284384988, 34.5491959235183], [-77.36012577968964, 34.54919418686517], [-77.36011441640818, 34.549191393311006], [-77.36003523982947, 34.54917192850917], [-77.35999301875104, 34.54918269969316], [-77.35998585443869, 34.54918542866056], [-77.35996919272642, 34.54921230497876], [-77.3599623726688, 34.54922988159045], [-77.35995669493457, 34.549261801138634], [-77.35996785397072, 34.54927370376882], [-77.35998365602481, 34.54928151110492], [-77.36000220934955, 34.54928770199524], [-77.36003236074956, 34.54929776293477], [-77.3600906808736, 34.54931722319617], [-77.3601036942978, 34.54933159075942], [-77.36012818683561, 34.54939947574501], [-77.3601562408383, 34.549412514957446], [-77.36014788132871, 34.5494313985675], [-77.36014736223464, 34.54944406678383], [-77.36012619421827, 34.549486570650444], [-77.36005895383374, 34.549649421813456], [-77.35998698147122, 34.54969939156993], [-77.35992401767112, 34.549743106763415], [-77.35987679976895, 34.54974467855105], [-77.35978513107558, 34.549764569190344], [-77.35972604648589, 34.549815815417276], [-77.35969317016898, 34.54986411060077], [-77.35967499387054, 34.54995935305053], [-77.35966198856215, 34.54999101242916], [-77.35957421374384, 34.55009435507668], [-77.35956581706576, 34.55015460435781], [-77.35946295744019, 34.55026449498794], [-77.35958022738971, 34.5504099833171], [-77.35961178563473, 34.55048788891521], [-77.35948154533752, 34.550858708517985], [-77.35933401491553, 34.55101753239927], [-77.35909426015138, 34.55116702466913], [-77.35896471613987, 34.55131553072036], [-77.35890561358029, 34.55135353745531], [-77.35855444520972, 34.55140113133746], [-77.35848294317346, 34.5514029289176], [-77.35819060370824, 34.55122411250358], [-77.35813610508524, 34.55119001150046], [-77.35813188975979, 34.551185829058355], [-77.35812416183786, 34.551187893666416], [-77.35812042124928, 34.55118996675428], [-77.35811405539465, 34.55119318616465], [-77.35772683208077, 34.551393411976306], [-77.35765615750228, 34.55146082871925], [-77.3576002158139, 34.55151198954531], [-77.35746848391668, 34.55161789034816], [-77.35732565204303, 34.551766893451614], [-77.35730916865062, 34.55178874931329], [-77.35729188666853, 34.55180120344431], [-77.35711632138526, 34.5519432938749], [-77.35699734731747, 34.55204435908659], [-77.35694330155141, 34.55209621177935], [-77.35693446643396, 34.552103186652694], [-77.35692515894662, 34.55211024139597], [-77.35689667063053, 34.55212054173108], [-77.35652798987822, 34.55230842092218], [-77.35638960015231, 34.552334832229484], [-77.35613255940228, 34.55243067714164], [-77.35579043111977, 34.5524748820458], [-77.35573831851168, 34.552500999717296], [-77.35572375577324, 34.552507615850864], [-77.35567892656857, 34.552523055205036], [-77.35558413061443, 34.55256386839791], [-77.35554025726432, 34.55257717370374], [-77.35550497961366, 34.55260930134673], [-77.35552362474708, 34.55265861641395], [-77.35552002035651, 34.55266834184006], [-77.3555230763955, 34.5526771848658], [-77.35557823679734, 34.55278237255254], [-77.35570756637674, 34.55299648687104], [-77.35571105698801, 34.55300807530604], [-77.35571759382641, 34.55301274029394], [-77.35572641401737, 34.55302016869468], [-77.35584925190099, 34.553154488949694], [-77.35593705549064, 34.55322036417177], [-77.3559504470914, 34.55331928822034], [-77.35625074330562, 34.55342002879746], [-77.35610524947951, 34.55368489563979], [-77.356160756529, 34.55392262881336], [-77.35593160258986, 34.55409898426425], [-77.35588475671679, 34.554207184007616], [-77.35579189517945, 34.55440474875147], [-77.35586237013618, 34.55445522913863], [-77.3558192325271, 34.55486680675669], [-77.35593821531212, 34.55509569450309], [-77.35567415190587, 34.55529940342121], [-77.35559565252376, 34.55503598230096], [-77.35552093555354, 34.55499402496969], [-77.35527701803667, 34.55479433797928], [-77.35523794175863, 34.55478993961143], [-77.35490055704402, 34.55478982270574], [-77.35484660080172, 34.5548462719819], [-77.35462674234786, 34.554954364095295], [-77.35450182266118, 34.55505545473612], [-77.35446108166371, 34.55512213827034], [-77.35442924543979, 34.555151169887516], [-77.35444062401564, 34.555360560279986], [-77.35409585821935, 34.555636032600596], [-77.35403461726209, 34.55565977150515], [-77.35347206117893, 34.55577858811196], [-77.35398524886368, 34.55582253979691], [-77.35409461627643, 34.55573436294441], [-77.35412900396081, 34.55572108503587], [-77.35430008431251, 34.55565940593516], [-77.35449089345794, 34.55553180539071], [-77.35467326735375, 34.55560568947543], [-77.35484181380085, 34.55562528319225], [-77.35488248661007, 34.55565476808504], [-77.35524710244613, 34.555947639917136], [-77.35526588948142, 34.555956073095096], [-77.35527621648349, 34.55596780485768], [-77.35565495065111, 34.556313482003965], [-77.35562610104407, 34.5563648413237], [-77.35566973997537, 34.55664509627762], [-77.35599201545418, 34.5566122799567], [-77.35608483899021, 34.55665331455506], [-77.35645738075686, 34.55698313341494], [-77.35648503692386, 34.557013265855105], [-77.35724526036437, 34.55690220193307], [-77.35742509782311, 34.55690775949185], [-77.35744927615835, 34.55753312299387], [-77.35752324832211, 34.55774273393351], [-77.35730277330829, 34.5578370190661], [-77.35757633208149, 34.558226590419], [-77.35751171689866, 34.5585934992836], [-77.35763820438473, 34.55867035137212], [-77.35796941556833, 34.55859524038237], [-77.35803211069864, 34.558704891807736], [-77.35845825987866, 34.55891663135683], [-77.35957248911579, 34.55829680551298], [-77.35957808263782, 34.558263709974405], [-77.35960803548639, 34.558278095133524], [-77.3596307949605, 34.55826388889708], [-77.3618906693037, 34.5570260228575], [-77.36276002843336, 34.55702753450801], [-77.36393370016137, 34.55553653698769], [-77.36433650708248, 34.555299228254476], [-77.36508882464832, 34.55499350052105], [-77.36566814888525, 34.55572075823098], [-77.36591152376431, 34.55665749495831], [-77.36600612160548, 34.55726805011653], [-77.36651666508261, 34.5572967659518], [-77.36748665716277, 34.55786445449432], [-77.36780836805764, 34.558461922270624], [-77.36766751147464, 34.55882922360039], [-77.36767142938021, 34.55902833892941], [-77.36782337930093, 34.560505001271835], [-77.36748499214198, 34.56172950763324], [-77.36719618864375, 34.561982437683156], [-77.3672424862264, 34.56254787491139], [-77.36701063694687, 34.564018522615754], [-77.36795226509146, 34.5650760017282], [-77.36813357325475, 34.565555011565614], [-77.36853945994501, 34.566056409617794], [-77.36857046502111, 34.56634119699983], [-77.36905869938501, 34.56672661939278], [-77.36950823915905, 34.56657083743046], [-77.37057909962098, 34.56684125892561], [-77.37063451085578, 34.56680823718507], [-77.37194167992145, 34.56641494916205], [-77.37221052099262, 34.56635724495541], [-77.37302429867067, 34.56567193371321], [-77.37441272186132, 34.565325001289075], [-77.37536252575785, 34.56533806641724], [-77.37601038827577, 34.565420142977004], [-77.37840302694585, 34.56577355426531], [-77.37847770266232, 34.56580192152389], [-77.37851399829326, 34.56584782102248], [-77.37866849432376, 34.565901806820804], [-77.38008949277598, 34.56702855746736], [-77.38015023156737, 34.5671544765419], [-77.3801523501193, 34.567219667113584], [-77.3809189589016, 34.56791326595166], [-77.38094264583955, 34.56795487736623], [-77.38111635474388, 34.56818766774006], [-77.38122469766424, 34.568388703305494], [-77.38107126492798, 34.56878546568164], [-77.38135464297238, 34.56907887074557], [-77.38160213535042, 34.56949064046939], [-77.38158756625587, 34.5695601697308], [-77.38166467429319, 34.569613876004645], [-77.38191239548554, 34.57009538403081], [-77.3822151459477, 34.57031882852937], [-77.38275244243677, 34.570767096790085], [-77.38324020858786, 34.57112316295407], [-77.38378736326727, 34.571200781442215], [-77.38428983275128, 34.571150849629355], [-77.38481615399886, 34.57098225763009], [-77.38554561728972, 34.570624690904474], [-77.3856041919515, 34.57058179686239], [-77.38568082674544, 34.57058572220255], [-77.38639219703887, 34.57031022958411], [-77.38697520217704, 34.570260801163684], [-77.38718016035538, 34.57023269838868], [-77.38739401115015, 34.57019082762741], [-77.38796804570451, 34.57058496828407], [-77.38869032812869, 34.57016349681771], [-77.38875607175706, 34.57013645239165], [-77.38879510150436, 34.570177163670664], [-77.38940192722721, 34.56997856492699], [-77.38954404177892, 34.569986857255586], [-77.38964861874479, 34.569983441885], [-77.39000394706602, 34.570044893762216], [-77.39003633754015, 34.57035876815178], [-77.39086951435985, 34.57049940770293], [-77.39111984685881, 34.57058438887116], [-77.39124122719984, 34.57058477431815], [-77.39122381108272, 34.57071809419759], [-77.3913078846552, 34.57090865494834], [-77.39165114572496, 34.571782005067675], [-77.39179320751575, 34.572334245060986], [-77.3922299170947, 34.572772962363516], [-77.39220842983374, 34.57344786359839], [-77.39228247179904, 34.57396195778759], [-77.39237073378146, 34.57429898497688], [-77.39241598926735, 34.57449087549797], [-77.39241309803008, 34.57479225721764], [-77.39252161478589, 34.57496368545142], [-77.39264073381099, 34.575549921452605], [-77.39261717861845, 34.575611962127596], [-77.39261030039572, 34.57570437149014], [-77.39269511839117, 34.57585506901269], [-77.39279755812464, 34.57632463811768], [-77.39287532050069, 34.57642386868104], [-77.39285933002074, 34.57660322081797], [-77.39286391218383, 34.57709261123715], [-77.39309967800882, 34.57724064829706], [-77.3934082889, 34.577276602554456], [-77.39348296644683, 34.57726068503859], [-77.3935863849498, 34.577281888108146], [-77.39387696321779, 34.57735015232865], [-77.39410169156213, 34.57727852983364], [-77.39427097419102, 34.577301273430045], [-77.39444269216114, 34.577286457364835], [-77.39451717499789, 34.577460750658084], [-77.39455837808752, 34.57756965123268], [-77.3946309402101, 34.5778689106316], [-77.39449627207115, 34.57849458102177], [-77.39466015075809, 34.578713839827756], [-77.3948058503318, 34.57896543355915], [-77.39505885166412, 34.57884230222637], [-77.39525508451189, 34.57883946989165], [-77.39559758914574, 34.57884723089346], [-77.39584688078352, 34.57880159856656], [-77.39596115473832, 34.57882759338186], [-77.39610238047295, 34.578781101200676], [-77.39624090283564, 34.57867255519512], [-77.39654857615338, 34.57853446067374], [-77.39663492656403, 34.578499978954575], [-77.39667375873934, 34.57846519718226], [-77.3968185614659, 34.57840246452714], [-77.3973236266995, 34.578222553426876], [-77.3974229654236, 34.57821480132331], [-77.39757817260438, 34.57812563088393], [-77.39781698578003, 34.578016158036874], [-77.39792192716462, 34.57793178024802], [-77.39818118612828, 34.57778129671898], [-77.39821100702471, 34.57776039098821], [-77.39822315227794, 34.57776215416165], [-77.39840801397358, 34.5776909368966], [-77.39853417360014, 34.57765402433092], [-77.39860502071559, 34.577618435505464], [-77.39868965462468, 34.57761673251055], [-77.39874353709507, 34.5776371341924], [-77.3987667853553, 34.57759065981952], [-77.39880202619472, 34.57756704856089], [-77.39887083302759, 34.577543647349906], [-77.3989324659897, 34.57753233941689], [-77.39899903112973, 34.5775227978571], [-77.39906592853961, 34.5775134401548], [-77.39913144160377, 34.57750150480292], [-77.3991960368238, 34.577452616845896], [-77.39921741646873, 34.57744253259029], [-77.39939304334285, 34.57734995416126], [-77.39965289460127, 34.57728893435312], [-77.39978705092693, 34.5772712055869], [-77.40003555288376, 34.5773569384145], [-77.40039562820765, 34.57703719416065], [-77.4005097662759, 34.57695035607962], [-77.4005750686848, 34.576882536790926], [-77.40091205925127, 34.576538096244256], [-77.4009547424787, 34.57651648910404], [-77.40109273340407, 34.576378773968386], [-77.40136308344357, 34.576139993126695], [-77.40141591168472, 34.57609773752948], [-77.4017570836924, 34.57599311334382], [-77.40206788136052, 34.57603637798393], [-77.40215108169916, 34.57606954923864], [-77.40243403856118, 34.57619879327247], [-77.40261862046788, 34.576212566188154], [-77.40293907913872, 34.5761316365098], [-77.40318974196502, 34.57605492724999], [-77.40333307640955, 34.57600177000224], [-77.4035098274301, 34.57573861298659], [-77.40361967872667, 34.575607033276704], [-77.4037270670774, 34.575515820651084], [-77.40404148571052, 34.57523730082869], [-77.40405872388867, 34.57516764221302], [-77.40419438489957, 34.5751362098918], [-77.4045150477153, 34.57507838745039], [-77.40480434229931, 34.575240021031604], [-77.40490904804452, 34.575319957602304], [-77.40508543290056, 34.57532111811763], [-77.40511957281109, 34.575308555822254], [-77.4053030381471, 34.57519010803702], [-77.40557670313804, 34.57501570386493], [-77.40563011673213, 34.57493589428175], [-77.40578420544622, 34.57489179754894], [-77.40609100739651, 34.57476380399687], [-77.40638608214286, 34.57479226866013], [-77.40687899013685, 34.574755889322184], [-77.40719221610912, 34.57486953681027], [-77.40735003070597, 34.5748427373813], [-77.40766696214507, 34.574581234470585], [-77.40791767081022, 34.5745233618823], [-77.40826248055475, 34.57441079610538], [-77.40845492761892, 34.57436506678098], [-77.40907146068051, 34.57427135396448], [-77.4100050033741, 34.57477304833169], [-77.41003092105831, 34.57477586192866], [-77.41004447545448, 34.574780672472365], [-77.4100697188525, 34.57479163389318], [-77.41160698148842, 34.57566528272899], [-77.41204572186007, 34.57573182770762], [-77.41318296012196, 34.57566546539004], [-77.41474655617503, 34.575801227913196], [-77.41475895773323, 34.57580362224727], [-77.41476407343576, 34.5758065496502], [-77.41480559869794, 34.57580606458391], [-77.41633496358365, 34.57596515824736], [-77.41658114766919, 34.57581493788452], [-77.41731779321475, 34.57608243225458], [-77.4179110692039, 34.576638835477354], [-77.41822503724626, 34.57667215617563], [-77.41919717125195, 34.576870059981964], [-77.41939866908211, 34.576936270670195], [-77.4194871317429, 34.576983286089124], [-77.42025529212647, 34.577587886130175], [-77.42030766452324, 34.57759371994196], [-77.42106331167918, 34.57779723760312], [-77.42129289765279, 34.57801827657657], [-77.42160709049315, 34.57822023500002], [-77.4226396619895, 34.5791865700885], [-77.42289568870679, 34.57945657103688], [-77.42312027345419, 34.57969994508417], [-77.42323065526863, 34.58032053912638], [-77.42336722822401, 34.58136260725827], [-77.42365185841524, 34.581929838780354], [-77.4242166302201, 34.58270865954065], [-77.42454438447966, 34.582890861108794], [-77.42501605655852, 34.58365989184915], [-77.42579315110143, 34.58417410093599], [-77.4266205881137, 34.585096216128335], [-77.4283935623613, 34.58573129996424], [-77.42866382236862, 34.5859962880399], [-77.4289461027118, 34.58632112058212], [-77.42992064463287, 34.58785775931871], [-77.43139926562115, 34.58869357360026], [-77.43178159559791, 34.588980740427395], [-77.43209939805844, 34.58896983616828], [-77.43315185659566, 34.5901385931829], [-77.43317355079057, 34.590677113687676], [-77.4336763603452, 34.590914863407164], [-77.4339531550698, 34.59142309222899], [-77.43400719391111, 34.59171330731545], [-77.43422093759457, 34.592794791372654], [-77.4352535088737, 34.593134349998756], [-77.4352998271845, 34.593174908788946], [-77.4353194790553, 34.59322195567713], [-77.43544076492054, 34.59340605809477], [-77.43581459497797, 34.59424469349021], [-77.43599258682062, 34.59482300855352], [-77.43577441656595, 34.59541478565335], [-77.43555581169846, 34.596260192535674], [-77.43536508579865, 34.59661210145671], [-77.43535326846225, 34.59671971687781], [-77.4352550998359, 34.597038741296565], [-77.43487703773343, 34.597973296307316], [-77.43440571763416, 34.59844916245311], [-77.43367998907712, 34.60024628812716], [-77.43367556807256, 34.600248317879945], [-77.43367278636956, 34.6002612498545], [-77.43284687321508, 34.60207122737036], [-77.4330903695327, 34.603097956467266], [-77.4332170487211, 34.6054144186635], [-77.43377612889697, 34.606931231519425], [-77.43441831130855, 34.60831276629183], [-77.43505883234376, 34.60901998678508], [-77.43571745218085, 34.61023557361499], [-77.4361504110086, 34.610772968137375], [-77.43631935920351, 34.611135876516485], [-77.4364964065683, 34.612151310757554], [-77.43618336473104, 34.61287642059424], [-77.43617885881594, 34.61298032065553], [-77.43553140025335, 34.613802433579224], [-77.4353945126557, 34.613839180728235], [-77.43364962115784, 34.614399085870566], [-77.43359066700242, 34.61439519923526], [-77.43334217675152, 34.61435967496688], [-77.43067273223343, 34.614380901097505], [-77.42928959695807, 34.61404706653561], [-77.42800411856352, 34.6139858804631], [-77.42527322466712, 34.613355772741414], [-77.4234182628675, 34.61279435511701], [-77.4226482162076, 34.612501083760286], [-77.42091691686618, 34.612120244715385], [-77.41949471184029, 34.61178330251042], [-77.41880666819246, 34.61163424769309], [-77.41634119185595, 34.61069963554804], [-77.41452942490575, 34.61006558095387], [-77.410035661424, 34.60876424826137], [-77.41003440163578, 34.608763863232106], [-77.41003386654728, 34.60876372676924], [-77.41003041990923, 34.60876364785966], [-77.40688118574124, 34.60875010397786], [-77.40503534644094, 34.608076168189136], [-77.40372794806947, 34.60827760788563], [-77.40253117582657, 34.60855671859199], [-77.40215135008953, 34.6085609083962], [-77.40191542257844, 34.60849055226481], [-77.40057474050649, 34.60851094969099], [-77.40049566239254, 34.60852643317681], [-77.39903100648209, 34.60868795760299], [-77.39899812770673, 34.60868460817334], [-77.39897485641981, 34.608685707866414], [-77.39888762365416, 34.60867322409023], [-77.39742152617887, 34.60834484945226], [-77.39683032961469, 34.60790852655499], [-77.39680232777441, 34.60727572300079], [-77.39672834698158, 34.60718398349541], [-77.39663327691161, 34.60716146811185], [-77.3965582263041, 34.60723009037139], [-77.39600068769258, 34.60739134468207], [-77.3959772171809, 34.607537192187564], [-77.39597074292266, 34.60824480677216], [-77.39604042713798, 34.60887326829357], [-77.3961458918017, 34.60906868752232], [-77.39591550784584, 34.60917800279524], [-77.39584486880428, 34.60921389730355], [-77.39554865418306, 34.60947387275956], [-77.39426812742062, 34.61077537653934], [-77.39409843915827, 34.610879478085856], [-77.39395137468892, 34.611083457320596], [-77.39326207343619, 34.611797569353925], [-77.39269690805199, 34.612113493431245], [-77.39269134731667, 34.612115817339514], [-77.3926904218333, 34.61211542561232], [-77.39192170065745, 34.61224542207507], [-77.39190299198718, 34.61224979335749], [-77.39187388815483, 34.61226351169968], [-77.39123743654736, 34.6124562120454], [-77.39111460710973, 34.61262815844222], [-77.39072822683576, 34.6128303345711], [-77.38954712886881, 34.61340673145399], [-77.38953781189318, 34.613409895855234], [-77.38953118234515, 34.61341192495185], [-77.3894909482564, 34.613424865641086], [-77.38874942139725, 34.613666119504465], [-77.38839924226446, 34.61405426304264], [-77.38796097042042, 34.614300853208725], [-77.38760235987526, 34.614546252931106], [-77.38731350730104, 34.614739724448796], [-77.38717252811794, 34.61480204604311], [-77.38664410284832, 34.61525345277683], [-77.38638405402594, 34.61543841023627], [-77.38611651386623, 34.61560955684985], [-77.38546125280486, 34.616408522699544], [-77.38480699436278, 34.617124866872096], [-77.38436215363328, 34.61756066736639], [-77.38375079783876, 34.618209687726946], [-77.38322992182333, 34.618560034234505], [-77.38193961577639, 34.61929927599874], [-77.38165291588517, 34.61944088656314], [-77.38152863823873, 34.61953341914715], [-77.38136329295085, 34.61969107034064], [-77.38045863416139, 34.620233623015736], [-77.38007580684737, 34.62061412849032], [-77.37940935928674, 34.62095317946758], [-77.37928728716693, 34.62098955693143], [-77.37914276017013, 34.62101577352287], [-77.378498792268, 34.621240547681154], [-77.37704897724076, 34.62187385978837], [-77.37692173432079, 34.62193484780267], [-77.3768686073758, 34.62197966092371], [-77.37679529870407, 34.6220474232078], [-77.37592509172342, 34.622797930935675], [-77.37534447626398, 34.62322388060686], [-77.37483991561271, 34.62348400781223], [-77.37408210901881, 34.624136457330984], [-77.37390208686026, 34.62430761321775], [-77.37376720570943, 34.624394202151365], [-77.37277432803586, 34.62495396711745], [-77.37219005994507, 34.62504828175422], [-77.37154803638991, 34.62519274264514], [-77.37133456858149, 34.6253091694841], [-77.3706128641708, 34.62577216239971], [-77.37029744319187, 34.62604012390097], [-77.37010593978295, 34.626407275697666], [-77.36998571080888, 34.62659863436187], [-77.36982394944204, 34.626996067133504], [-77.36971788617193, 34.62719812300603], [-77.36952107462153, 34.627666500982], [-77.36957319641735, 34.62818220925618], [-77.36971503018111, 34.628894329181094], [-77.36970828977225, 34.630833178395264], [-77.36989747117654, 34.63153197373853], [-77.37011963797315, 34.63266963244802], [-77.36996672666389, 34.634918461539826], [-77.36957060271166, 34.635555051762495], [-77.36903213805101, 34.63619443527645], [-77.36837800306918, 34.63783993600231], [-77.36825050456517, 34.6385569554229], [-77.36793721969647, 34.63937578385833], [-77.36768482622179, 34.639861252458225], [-77.3677373905799, 34.64101347833143], [-77.36822412330105, 34.641936668430915], [-77.36870612150274, 34.643482374419115], [-77.36874198313816, 34.64361839442043], [-77.36883448545734, 34.64522882860106], [-77.36918930442143, 34.64660131270375], [-77.36932208882496, 34.647064490682006], [-77.37054429351421, 34.648369824594], [-77.37127203905189, 34.64957969581346], [-77.37223638885685, 34.65048150887647], [-77.37313136400306, 34.651390164004525], [-77.37450864372559, 34.65293227543006], [-77.37526467588152, 34.6536730436062], [-77.3757729919173, 34.65440296444553], [-77.37753450852298, 34.65523733269646], [-77.3786024084695, 34.65625177976793], [-77.37908835090744, 34.65659259917242], [-77.3794936141562, 34.65726729898884], [-77.38006567159277, 34.65794871292616], [-77.38008629332062, 34.65802979633293], [-77.38015567669594, 34.65816528078309], [-77.38044962989392, 34.658823842670095], [-77.38055102249794, 34.659285275640904], [-77.38080466306477, 34.660104421486054], [-77.38078325198506, 34.66046600861976], [-77.38070748818134, 34.66074994037223], [-77.38087936083399, 34.66131526906581], [-77.38090571215584, 34.66142396166999], [-77.3807676839929, 34.66170049797254], [-77.38043314214578, 34.66234297860875], [-77.3800544595134, 34.662515867842124], [-77.37948485402387, 34.66277864742289], [-77.3790179080647, 34.66360834829284], [-77.37900708349746, 34.663631365406005], [-77.37900494484616, 34.663635041250814], [-77.37899529665569, 34.663645915109726], [-77.3784466626764, 34.66441083148341], [-77.37822396379505, 34.664717263213646], [-77.37814964487237, 34.66542377030133], [-77.37826211962206, 34.665787742995995], [-77.37826246058661, 34.666213932329], [-77.37875148933088, 34.665957206860554], [-77.3794632239106, 34.66619999638205], [-77.37963106201818, 34.66631049586893], [-77.37988788328659, 34.66643797647957], [-77.38009766365222, 34.6667396795362], [-77.3804703584236, 34.66685392824979], [-77.38081441906519, 34.66697618457717], [-77.38132866303735, 34.66721457204514], [-77.38154343182597, 34.66728045667717], [-77.38227459822099, 34.66742865718289], [-77.38342787951626, 34.66754946554464], [-77.38384745524844, 34.66758895453398], [-77.38407305845558, 34.667620558623454], [-77.38468165880437, 34.66772804597154], [-77.38499218531672, 34.66776832875915], [-77.38586897173565, 34.66781439249126], [-77.38613056892365, 34.66796959436551], [-77.38687644775018, 34.66805336081298], [-77.38730179756254, 34.668057554678626], [-77.3875576463788, 34.66809082050616], [-77.38832361886296, 34.66820166171357], [-77.38845091058732, 34.668221814805214], [-77.38874002426513, 34.66827984616169], [-77.38951259933603, 34.66840489087645], [-77.38967047894022, 34.66843548485973], [-77.38983974495696, 34.668500752356756], [-77.39077928360275, 34.66903137392191], [-77.39164418019536, 34.66953346385413], [-77.3923160767184, 34.669999853784574], [-77.39293930390161, 34.670422047582115], [-77.3932027881083, 34.670668687550574], [-77.393542984008, 34.671080105543524], [-77.39434196725963, 34.67197882535235], [-77.39532371248139, 34.67394023815524], [-77.39547865936053, 34.67507526557385], [-77.3955550470233, 34.67625789201572], [-77.39586900925168, 34.678002638875036], [-77.39594043334931, 34.678453214258845], [-77.39596605697724, 34.678638424557015], [-77.39659987967435, 34.67996346347541], [-77.3965975909688, 34.679977832859635], [-77.39663999563645, 34.68006971292506], [-77.39706871092423, 34.68126106618909], [-77.39725618971268, 34.68147502349714], [-77.39737528926746, 34.68165066175608], [-77.39781617472019, 34.681994274503204], [-77.3994855015063, 34.68321463886335], [-77.40053383920026, 34.683678639388646], [-77.40130866730655, 34.684715301234036], [-77.40152784180083, 34.68501315118831], [-77.4015657541182, 34.68503356518971], [-77.40179612866064, 34.685152433277175], [-77.4034958490993, 34.68601387548374], [-77.40369933808054, 34.68636603786976], [-77.4050007706392, 34.688956851243894], [-77.40573686224057, 34.691004636448746], [-77.40629563241325, 34.69198746248881], [-77.40659342203848, 34.69354090799365], [-77.40669362012025, 34.693728945931845], [-77.40704987445767, 34.69524359341958], [-77.4070401721283, 34.6959337324316], [-77.40720464635037, 34.69639005313131], [-77.40729328439005, 34.69692743188554], [-77.40756040027132, 34.69723400548123], [-77.40803346142056, 34.69795415523886], [-77.40838145716788, 34.698258938226694], [-77.4083918735206, 34.69864316773679], [-77.40883281264384, 34.69962008767501], [-77.40892719745332, 34.699816692547884], [-77.40907064237481, 34.699998887411056], [-77.40978538184211, 34.700757130614406], [-77.4101777587962, 34.70108047804911], [-77.41060857332494, 34.70165516783293], [-77.41059782281955, 34.70179796892022], [-77.41072861849322, 34.70192648078642], [-77.4113240530477, 34.702387756537846], [-77.41182103159142, 34.702580827495154], [-77.41219675443932, 34.702524190306235], [-77.41267001976988, 34.702376319861], [-77.41300065898741, 34.7023425525636], [-77.41315847669254, 34.70238913192885], [-77.41396929937089, 34.70243027363669], [-77.4144328174732, 34.702415305388314], [-77.41536280542621, 34.702200058372625], [-77.41562107278045, 34.70213887580431], [-77.41583765178828, 34.701807055960735], [-77.4158733347734, 34.701803300555476], [-77.41593274984108, 34.70166239404987], [-77.4160114677238, 34.701588304971466], [-77.41618087200905, 34.701558105866255], [-77.41628889309723, 34.70153921240212], [-77.41643017119551, 34.7014552122548], [-77.41658518300838, 34.701471144357164], [-77.41663435589687, 34.70145291205433], [-77.41694104233173, 34.70130496244432], [-77.41702140837867, 34.701222970845464], [-77.41709579685269, 34.701183979863785], [-77.41711065437961, 34.70113413568691], [-77.4171395517093, 34.70107784204625], [-77.41718401703237, 34.700954211224065], [-77.41724394124405, 34.7009012083236], [-77.41734380058392, 34.70076945703974], [-77.41743119772634, 34.70068715856314], [-77.41742886094264, 34.700606518150806], [-77.41759867538109, 34.700336061448084], [-77.41766355131402, 34.70024222793891], [-77.41769410229685, 34.70022002124908], [-77.41765884784202, 34.70012823726157], [-77.41745296597193, 34.69983119641049], [-77.41742933479442, 34.699814098422344], [-77.4173109059709, 34.69952689002541], [-77.41726705072747, 34.69946239426394], [-77.41724627449679, 34.699339527383245], [-77.41722061241391, 34.69921575816997], [-77.41720533098655, 34.699041781773225], [-77.41710029098307, 34.69889412204059], [-77.41688431359623, 34.698376040646146], [-77.41680387547342, 34.69831653768286], [-77.41681273595688, 34.69823443948868], [-77.41678952245528, 34.69806509091191], [-77.41673571853241, 34.69764840030364], [-77.41685788454394, 34.69740128824917], [-77.41660936715186, 34.69711205788854], [-77.41658436157962, 34.6970363567523], [-77.41663026676119, 34.696603527271044], [-77.41660507997162, 34.696267428394094], [-77.4167287177743, 34.695968653850905], [-77.41683822368964, 34.695624054638266], [-77.41698807118212, 34.69550028068031], [-77.41704772152488, 34.69549515528388], [-77.4170888718687, 34.69545593300107], [-77.4176602924857, 34.695176329991035], [-77.41766433810366, 34.69500737012703], [-77.41787786418088, 34.694944423690714], [-77.41829035041121, 34.69483762898246], [-77.4184771703654, 34.69484043333048], [-77.41856270122247, 34.69479264378621], [-77.4192492058138, 34.694618203227904], [-77.4192542482736, 34.694617673073175], [-77.41925563402322, 34.694617301926726], [-77.41925652182282, 34.69461649733045], [-77.41963156604095, 34.69448399031944], [-77.41967489043392, 34.694440601880714], [-77.41985415911145, 34.69426645207592], [-77.41996917154495, 34.69428801281496], [-77.41999450109655, 34.69427443970771], [-77.42031041394543, 34.69409798354379], [-77.42039076314424, 34.69389505767272], [-77.42042859709248, 34.69388183450949], [-77.42059113627944, 34.693809002112616], [-77.4207691035312, 34.69374784958532], [-77.42079070649724, 34.6937378925006], [-77.4210655819064, 34.69383677120378], [-77.42110489517427, 34.693759489820124], [-77.42123922540648, 34.69378792155017], [-77.42140246210744, 34.6938385078976], [-77.42152710235823, 34.693843404056906], [-77.42158667010914, 34.693754270756806], [-77.42184029138676, 34.69360751301093], [-77.42197009961095, 34.69348297208123], [-77.42208673410181, 34.69337009260275], [-77.42211723467275, 34.69331236080349], [-77.42223634005794, 34.69317175563365], [-77.42243555466028, 34.692933014000445], [-77.42245062308041, 34.69283610523888], [-77.4224809408354, 34.69266934656561], [-77.42264210438326, 34.69267462167336], [-77.42284321258883, 34.69251651506618], [-77.42275191963778, 34.6922640176747], [-77.42281374380555, 34.69220730491545], [-77.42284193411865, 34.69218658698081], [-77.42312309233651, 34.692055324476215], [-77.42316725798253, 34.692037357647294], [-77.42321717797866, 34.69199721841925], [-77.42352550462905, 34.69187514942818], [-77.42360116334272, 34.69166345425746], [-77.42364480750061, 34.69162685068479], [-77.42379751417113, 34.69157194646485], [-77.42398037576648, 34.69151654748265], [-77.42400183267101, 34.691500411685396], [-77.42426726747686, 34.691592052177846], [-77.42441862901002, 34.691568554095824], [-77.42461088795875, 34.69161029406234], [-77.42471849003094, 34.69158185831665], [-77.4250079499327, 34.69132264095988], [-77.42525753132452, 34.691124619521794], [-77.4253564321181, 34.69112902638041], [-77.42544314123066, 34.6909489681985], [-77.42563785530325, 34.69069856020848], [-77.42581465173183, 34.690382368087256], [-77.4258715128017, 34.690221204853316], [-77.42587371504382, 34.69006861293362], [-77.42600180733389, 34.68994045287262], [-77.42609581184286, 34.689800930256], [-77.42614775764585, 34.68975874536082], [-77.4262660346615, 34.68962454618641], [-77.42639472647153, 34.689404815861494], [-77.4264785067974, 34.68931534854229], [-77.42651108937774, 34.689277296698435], [-77.4265806564576, 34.689232760881794], [-77.42682925957483, 34.68904958800224], [-77.42691106749456, 34.68890756047454], [-77.42702433669677, 34.68880681642905], [-77.42713391789727, 34.68879979084821], [-77.42721581013595, 34.6886157879717], [-77.42733749300399, 34.688497626497316], [-77.42737296618809, 34.68844272905477], [-77.42750092526286, 34.68826713273282], [-77.42780702229389, 34.68810276767814], [-77.42771754800191, 34.68796002110247], [-77.42785787361596, 34.68773975022131], [-77.42794968610441, 34.68759359186686], [-77.42806197789017, 34.687435535937176], [-77.42809735649475, 34.68738340821663], [-77.42811920389592, 34.687373343537125], [-77.42812507262774, 34.6873435678134], [-77.42826376996442, 34.68714436831135], [-77.42832657642464, 34.68701028831322], [-77.42846834994553, 34.686656847810596], [-77.42865730052489, 34.68622868451312], [-77.42868252758511, 34.686172684568426], [-77.42855422613184, 34.68588673760114], [-77.42880685494828, 34.68596860918585], [-77.42894089156464, 34.68577103955863], [-77.42906575240765, 34.685747643961705], [-77.42914839692683, 34.685362430214596], [-77.4295788783162, 34.68551511247036], [-77.42969854165578, 34.6855140062646], [-77.43005522756452, 34.68564525479569], [-77.43000135117404, 34.686009061564825], [-77.42996164448573, 34.68606096768203], [-77.42981860813038, 34.68645814854979], [-77.42978979846053, 34.68655993476563], [-77.42973570768784, 34.68667137776345], [-77.43002373885912, 34.687200814678185], [-77.43009052632317, 34.68741606181987], [-77.43017920899652, 34.68786973342288], [-77.43037004686201, 34.688440055362385], [-77.43039115843254, 34.6890761314603], [-77.43045911623317, 34.689589332477794], [-77.43045167867557, 34.69048445556399], [-77.43032223334065, 34.69065959086578], [-77.43041595521294, 34.69085132764704], [-77.43006680906092, 34.69168839991311], [-77.42990245609965, 34.692577976412075], [-77.42986499834721, 34.69273595726079], [-77.42983689779601, 34.692878530417524], [-77.42980717017488, 34.69358500285857], [-77.42976885662317, 34.69382046797115], [-77.43005709355407, 34.694326441554864], [-77.43016067198137, 34.69452895383123], [-77.42985468301598, 34.69496860868718], [-77.43003673051516, 34.695473447914466], [-77.43016877200448, 34.69563750570218], [-77.43004071383406, 34.69579533837668], [-77.42980024155506, 34.69606770034661], [-77.4295028201392, 34.696411752297436], [-77.42912549162534, 34.69674648657726], [-77.42898410923628, 34.696900444554934], [-77.42891584272874, 34.696947941660035], [-77.42883472607167, 34.69694553011676], [-77.42860087189585, 34.69696540915861], [-77.4271949448833, 34.69712625406066], [-77.42707812909134, 34.69735207276515], [-77.42655295431794, 34.697572537632546], [-77.42609099758995, 34.697568001309854], [-77.42571588600232, 34.69769991890992], [-77.4254057350558, 34.69772127489627], [-77.42515948924674, 34.697799254404984], [-77.42495265857923, 34.697948016329775], [-77.42492296881736, 34.69805372980376], [-77.42506007846461, 34.69832356521157], [-77.42509962164442, 34.698426395967765], [-77.42518292037121, 34.69849111023232], [-77.42547359589625, 34.699027253349584], [-77.42545308147993, 34.699171665421474], [-77.42549926549586, 34.69961249922346], [-77.4255525176237, 34.70002292868088], [-77.42561582909906, 34.700195141979584], [-77.42556390141016, 34.700443057436445], [-77.42556519472858, 34.700910392734016], [-77.42568112100257, 34.70119858871131], [-77.42569677428462, 34.70134159830042], [-77.42576197280367, 34.7017210417989], [-77.42592944262563, 34.70253639377175], [-77.4259274540809, 34.70254041255876], [-77.42593145561483, 34.70254811118785], [-77.42612475258147, 34.703355184945906], [-77.42671265250866, 34.703816647681954], [-77.4268223726496, 34.70389892875393], [-77.4268913393792, 34.7039280884995], [-77.42702834676255, 34.70404351321324], [-77.42760915472851, 34.70452134032078], [-77.42782945140398, 34.70484847803273], [-77.42804008961188, 34.70523429469446], [-77.42812125465144, 34.705543796247426], [-77.42803351085375, 34.70597564988595], [-77.42802810140381, 34.706070293561346], [-77.42795027527421, 34.70616453432129], [-77.4276085819786, 34.70648267530631], [-77.4274911677426, 34.706584910366914], [-77.42732969566757, 34.70686984936222], [-77.42736205872461, 34.706955546221174], [-77.42751053125765, 34.70724077869829], [-77.42749395128499, 34.707337322906966], [-77.42736021125958, 34.707513968495974], [-77.42718749591339, 34.70758428857311], [-77.42703138047389, 34.70760589913428], [-77.42657372571392, 34.707798041105924], [-77.42648291832516, 34.7079283982736], [-77.42619551246807, 34.70822486567235], [-77.4259216267764, 34.7085067190759], [-77.42584902468028, 34.70882676355431], [-77.42592358596639, 34.70921868188355], [-77.42592364588167, 34.70924200921359], [-77.42592679518424, 34.709249051857], [-77.42603391570722, 34.70964238066346], [-77.42605331279182, 34.71021772589855], [-77.42600742918883, 34.71039538823818], [-77.42588005401774, 34.71059932995081], [-77.42571536147867, 34.711161119177135], [-77.42547423035563, 34.71132709811621], [-77.42549524729178, 34.7122971217382], [-77.42537828705747, 34.71259417748414], [-77.42548351293179, 34.71356662661163], [-77.42552091599678, 34.71533060180765], [-77.42542392025628, 34.71578208049256], [-77.42552730086543, 34.71610302752018], [-77.42447065949214, 34.71959722912388], [-77.424390009769, 34.719893182254374], [-77.4218407076653, 34.721211886445715], [-77.4218102802344, 34.72123252321537], [-77.42180461035822, 34.721232401655804], [-77.42179846000414, 34.72122950918867], [-77.42178231490438, 34.72121777015023], [-77.41961810958509, 34.719927464764694], [-77.4187120530046, 34.71894593199223], [-77.41864025270363, 34.71887658657946], [-77.41823647615168, 34.71825156611858], [-77.41801591756327, 34.71802243241096], [-77.41769898946694, 34.717699412629884], [-77.41756355296808, 34.71763951201018], [-77.41742377344593, 34.717457385299106], [-77.4166673267517, 34.71683448314372], [-77.4161541605535, 34.71644190561822], [-77.4156362746878, 34.715967503218906], [-77.4148995479978, 34.71592012709886], [-77.41441965670276, 34.715741333893966], [-77.4131311659443, 34.71595616734451], [-77.41309089858368, 34.71595551535359], [-77.41307172106818, 34.71596855688195], [-77.41165890794602, 34.71655945369813], [-77.41164036219625, 34.71657636565828], [-77.41165550169777, 34.717117369764566], [-77.4114127197983, 34.71726964115959], [-77.41118613791595, 34.717329935231795], [-77.41102758202568, 34.71745685754155], [-77.41057589407373, 34.717828438156225], [-77.40990398578205, 34.71805179698514], [-77.40977823008588, 34.718138101609235], [-77.40972166679813, 34.7182318377901], [-77.40981623708174, 34.71835470860994], [-77.41015998539423, 34.71894174600148], [-77.41008657584521, 34.719364171891506], [-77.40978416856746, 34.71952647001204], [-77.40976419618511, 34.71999948733299], [-77.40979145657056, 34.720379176037625], [-77.40969348071964, 34.7208744397602], [-77.40962275007362, 34.7209511625736], [-77.40925049922814, 34.721308195560376], [-77.40910688165923, 34.72141164716235], [-77.40880107132259, 34.72185895330615], [-77.40851579343791, 34.72216945317997], [-77.40847361915081, 34.72232302238528], [-77.40811804132707, 34.722787505282525], [-77.40787597859881, 34.72283912720573], [-77.40760990193752, 34.72297083757217], [-77.40739234913931, 34.72309733649526], [-77.40713639919366, 34.723178930418705], [-77.40693209808708, 34.72329288102271], [-77.4068775036833, 34.723751899307665], [-77.40684270158947, 34.723820731240664], [-77.40685626396913, 34.723890086248424], [-77.40654386259591, 34.724702732085554], [-77.4064867078815, 34.7248144541975], [-77.40625052251929, 34.7250353277635], [-77.40607438271448, 34.72522935564208], [-77.40604021689121, 34.72537562824895], [-77.40587584913271, 34.72571903377288], [-77.4055969771638, 34.72614729768874], [-77.40544820064804, 34.72626252073984], [-77.4050191496553, 34.72653762998015], [-77.4049728793487, 34.72662328184057], [-77.40481647860022, 34.72676001529498], [-77.40419046102598, 34.726840424640535], [-77.4041579975729, 34.72681977842377], [-77.40409815583206, 34.72682538029211], [-77.40354445863062, 34.72672444338234], [-77.40328510815502, 34.7268565671331], [-77.40315958407334, 34.72700543870969], [-77.40273357637338, 34.72731008401222], [-77.40262369291023, 34.72727155695527], [-77.40205938478458, 34.72742401976601], [-77.40185124851985, 34.72750501144061], [-77.40169710753833, 34.727612128011046], [-77.40141988899029, 34.727941931945104], [-77.40083150871065, 34.72842760572677], [-77.40068425050809, 34.728589824868536], [-77.40028657473154, 34.729116256730286], [-77.40013819344614, 34.729303349312254], [-77.3994785389168, 34.72961138173241], [-77.39880450930856, 34.72980517057801], [-77.39846259023913, 34.729835472833514], [-77.39779625841466, 34.729853702533504], [-77.39751425754251, 34.72983226727764], [-77.3971195138711, 34.72973455172864], [-77.39641630008899, 34.729195995556395], [-77.39565191048113, 34.7293404136843], [-77.39508357944646, 34.729369594811594], [-77.39403102198736, 34.72940340739312], [-77.3938401887463, 34.72937102333579], [-77.39380550914989, 34.72935464941508], [-77.3937661349764, 34.729347002056954], [-77.39330408972748, 34.72914907457931], [-77.39268759873991, 34.7287872840976], [-77.39232605823906, 34.728806881155634], [-77.39158217253444, 34.72867171449722], [-77.39144032410687, 34.7286661267832], [-77.39100117875289, 34.728714130949605], [-77.39019029599365, 34.72855446126546], [-77.38976817743024, 34.728698522146594], [-77.38919873613551, 34.728830948546396], [-77.38896079734114, 34.72887484910014], [-77.38881601687618, 34.72887127656985], [-77.38871669667044, 34.72877359002545], [-77.38774609697539, 34.72838496179436], [-77.38769140739443, 34.72832709728074], [-77.38765836392822, 34.72832203236319], [-77.38659947378989, 34.728006390781076], [-77.38646535323892, 34.728132754650936], [-77.38598496855957, 34.728126778857096], [-77.38572084993945, 34.72806616431839], [-77.38558183741729, 34.72812443862996], [-77.38519392388186, 34.72809487040841], [-77.38466272128582, 34.72783230998482], [-77.38459987853317, 34.72781136777268], [-77.3840884038497, 34.727484948683696], [-77.38353005103934, 34.72747650025384], [-77.38344924507619, 34.7274778883814], [-77.38337588922474, 34.72742881425816], [-77.3829339874589, 34.72704365211534], [-77.38268005849609, 34.72682617557462], [-77.38197092148455, 34.726423027298594], [-77.38186464051563, 34.7263091084324], [-77.38165911858934, 34.726359004809154], [-77.38103270217319, 34.726385253979885], [-77.3805353078424, 34.72647087791475], [-77.38023494329, 34.72657726169984], [-77.37985333311359, 34.72667872609327], [-77.37984275440732, 34.72668421361097], [-77.37983229890042, 34.726683928453454], [-77.37930401745561, 34.726551411273775], [-77.37923349101682, 34.726537766249734], [-77.37802950120388, 34.7271587219018], [-77.37787682253169, 34.72721081190018], [-77.37767397961369, 34.727593473088056], [-77.3776393521726, 34.72761222912911], [-77.37712961561444, 34.727485533574004], [-77.37651565661855, 34.727609469476306], [-77.37636728544163, 34.727576470188396], [-77.37619547426232, 34.72745441221716], [-77.37615705636864, 34.727621683672496], [-77.37497984915926, 34.72793831335366], [-77.37453457679501, 34.72773146889426], [-77.37432694471379, 34.72809944347233], [-77.37361800323401, 34.72821190832921], [-77.3731635387407, 34.72848280572557], [-77.37262668757256, 34.72862264488356], [-77.37218425909091, 34.72873321546045], [-77.37158433307931, 34.7288935497397], [-77.3712342298775, 34.72891712405784], [-77.37089578739291, 34.7287538656109], [-77.36972603716548, 34.72924687381304], [-77.36956355171527, 34.72928515346379], [-77.36954311179221, 34.729288044788056], [-77.36952203769128, 34.729291290053304], [-77.36933326663359, 34.72930084054339], [-77.36836164844333, 34.72923225458066], [-77.36806669964069, 34.72883417237736], [-77.3662799475577, 34.72892920199061], [-77.36602781363469, 34.72902042949518], [-77.36504335679405, 34.72958359955986], [-77.36433645277774, 34.72976027119917], [-77.3634818454214, 34.729539319473915], [-77.3627617823359, 34.729762178806915], [-77.36222432234248, 34.72974544568392], [-77.36180694608669, 34.730072224411245], [-77.361087130123, 34.730433556996964], [-77.36078857352251, 34.73056538568717], [-77.35976079245768, 34.73081234580687], [-77.35938703063458, 34.731641787799], [-77.3592528287834, 34.73172958839235], [-77.35852449389417, 34.73226993044309], [-77.35840808539182, 34.73232337464212], [-77.35788381407608, 34.73231945741767], [-77.3568957497209, 34.73295861182393], [-77.35661273371065, 34.73312913888962], [-77.35624752152358, 34.73382960007406], [-77.35559064087194, 34.73411254922641], [-77.3560044072564, 34.734172546655486], [-77.3561688026215, 34.734100661548084], [-77.35619981590862, 34.73451630716721], [-77.35599063192977, 34.73471416659639], [-77.35551960184124, 34.73471360701248], [-77.35506288823959, 34.73489683131805], [-77.35487512455695, 34.73443088816477], [-77.3543207978018, 34.73492801198153], [-77.3544519976725, 34.73524362045251], [-77.3544180116017, 34.73539290652499], [-77.35403074968296, 34.73594752201542], [-77.35379666729237, 34.73630833854825], [-77.35370751726644, 34.736388990931225], [-77.35327326194275, 34.73638017947548], [-77.35317118192619, 34.73635201224021], [-77.3531145135956, 34.73636867299103], [-77.35307992792012, 34.736381633630195], [-77.35304296828544, 34.73641178834704], [-77.35273715275271, 34.736685875076766], [-77.35271943578586, 34.736700502457225], [-77.35262981151999, 34.736955876142545], [-77.35246062847546, 34.73710946013176], [-77.35237079725302, 34.737361879620195], [-77.35232830384578, 34.73748463927727], [-77.35234257776028, 34.73764312259252], [-77.35235648293764, 34.73776709177383], [-77.35231370190738, 34.737974024666435], [-77.35230092882837, 34.738204025200744], [-77.35229846026193, 34.738219807703324], [-77.35229692046796, 34.73824092242561], [-77.35217125945506, 34.7384809556252], [-77.35227415039768, 34.73861882392266], [-77.35230510113206, 34.73888641910584], [-77.35230522334227, 34.73894995190054], [-77.35227320078593, 34.73901375574958], [-77.35228747456961, 34.73921594822472], [-77.35229120100948, 34.73939411143649], [-77.35229854716205, 34.739438249647215], [-77.35230954741417, 34.739528606722885], [-77.35218568056942, 34.739566384941675], [-77.35211917314268, 34.73952643164467], [-77.35192391279335, 34.739489664756775], [-77.35168574510517, 34.73946561399897], [-77.35163347366672, 34.73940553888297], [-77.35143814808004, 34.73926185824123], [-77.35130512670553, 34.7386387532969], [-77.35130373766278, 34.73860001404959], [-77.35130135734121, 34.73857867869735], [-77.35128721587044, 34.73853572295594], [-77.3511788164254, 34.73788453754806], [-77.35100534375806, 34.737666200583774], [-77.35097101736967, 34.73725597902776], [-77.35101390206569, 34.73710422340643], [-77.35132525358651, 34.73664753540187], [-77.3516678744171, 34.73640711097585], [-77.35195575289998, 34.73623422572429], [-77.35247753199772, 34.735847937261326], [-77.35272286351761, 34.735655135428544], [-77.35287695380508, 34.7355635622794], [-77.35293695805203, 34.73545157445165], [-77.35313084875173, 34.735281464964544], [-77.35321408261858, 34.73522399925021], [-77.3533148691281, 34.735156013234324], [-77.35342272627224, 34.734975904089374], [-77.35349961146896, 34.73488696483105], [-77.35348767171092, 34.734828144190175], [-77.35358287811876, 34.73475613787495], [-77.35375757905715, 34.7347183217387], [-77.35406596673357, 34.734702245997184], [-77.35419397971663, 34.73471410185655], [-77.35487499874075, 34.73421078979314], [-77.35490628967872, 34.73417025442488], [-77.35519928175671, 34.73331474519975], [-77.35528301344429, 34.733180013556726], [-77.35524716370834, 34.73314987574309], [-77.35515371947095, 34.732461695238015], [-77.35541852672759, 34.73218664340993], [-77.3550200719883, 34.73177608976802], [-77.35503000870563, 34.73175259483734], [-77.35503738865536, 34.73173347019701], [-77.35516623574647, 34.731246510714534], [-77.35515603303953, 34.7312003526295], [-77.35527514927212, 34.73079144003858], [-77.35510421563202, 34.730767641236405], [-77.35508683391518, 34.730608803744666], [-77.35510314912685, 34.73052954991779], [-77.3550918760325, 34.73050527814806], [-77.35521650773768, 34.73026484223865], [-77.35543893544468, 34.72987701602125], [-77.35556609855628, 34.729648966508016], [-77.35616211987724, 34.72932065640595], [-77.35638922403427, 34.729217276749246], [-77.35646922925802, 34.72917266549869], [-77.35651306848109, 34.729112076865135], [-77.35652043986755, 34.72904499094063], [-77.35669580121458, 34.728735178728094], [-77.35677900422792, 34.72858818175527], [-77.35688248814245, 34.72854976187304], [-77.35706226685062, 34.728421635677726], [-77.35710857350232, 34.728395407601084], [-77.35721805427998, 34.728425289712995], [-77.35731773432386, 34.728431597690246], [-77.35760236162909, 34.72847513684671], [-77.35779036901896, 34.72851664212755], [-77.35791982997648, 34.728431547919286], [-77.35831441045008, 34.72825455322239], [-77.3585732572046, 34.727854443043476], [-77.35858572217008, 34.72783986871479], [-77.35885908666751, 34.72746069024869], [-77.35910806710297, 34.72729362111175], [-77.35905857601836, 34.72709224448939], [-77.35907377206787, 34.72701268373326], [-77.35914760678645, 34.72702374507911], [-77.35943863163894, 34.72696481569479], [-77.35960767083469, 34.72684748560765], [-77.35965357936149, 34.72683156351982], [-77.35975896439456, 34.72689276695295], [-77.36000759015678, 34.72675629851753], [-77.36009644884825, 34.72676164092402], [-77.36034535222308, 34.72689064666399], [-77.36062918375939, 34.72698927087417], [-77.36128726905838, 34.72705909222342], [-77.36181462399807, 34.727031324838755], [-77.36251634196908, 34.72679714459373], [-77.36315270060487, 34.72654758782091], [-77.3633683880589, 34.72635001925513], [-77.36380012891847, 34.726380136471526], [-77.3639479304872, 34.72648407707192], [-77.36437466210883, 34.72646378589712], [-77.364573355837, 34.726397069399624], [-77.36485180806935, 34.726387795430114], [-77.36498119970977, 34.72643718201086], [-77.36517718674524, 34.72632667315757], [-77.36545333981559, 34.726282500091266], [-77.3656355086216, 34.72624599769329], [-77.3658203747582, 34.726225987731915], [-77.36610093851154, 34.72621801117761], [-77.3662386761607, 34.72623098940085], [-77.366399961326, 34.72617423884034], [-77.36683176115568, 34.72625071146784], [-77.36734145074723, 34.726238246259115], [-77.3675612762541, 34.726235309557744], [-77.36769019935946, 34.726114850383574], [-77.3679890607246, 34.72597610000646], [-77.36811709388739, 34.72594849559164], [-77.36856107974133, 34.72584465359726], [-77.36875101402717, 34.7258275039883], [-77.36892555213906, 34.72580772711676], [-77.3693047896109, 34.72598264991862], [-77.36984557761467, 34.725706175603484], [-77.36998747324171, 34.725693621768684], [-77.37007143700866, 34.7257144162703], [-77.37052643245778, 34.72589982049498], [-77.37117679295373, 34.72560906925315], [-77.37120535374062, 34.7256237323024], [-77.37120907331806, 34.725627440558405], [-77.3718307211321, 34.72553217073822], [-77.37184983441689, 34.725536794144126], [-77.37237036200301, 34.72568762661321], [-77.3724226565606, 34.72570198984235], [-77.37259882376486, 34.72567104516137], [-77.37274234006628, 34.72570517288723], [-77.37281766803923, 34.725670877465426], [-77.37289650775197, 34.72564146329837], [-77.3730968008962, 34.72558850465194], [-77.37326968913918, 34.725661841766204], [-77.37351833409156, 34.72557955255865], [-77.37375255089427, 34.72553840122119], [-77.37421819451859, 34.725716518264385], [-77.37440785228932, 34.7254898350775], [-77.37487714033382, 34.72529740879099], [-77.37496335820185, 34.724967015378255], [-77.37518351591437, 34.72459424464094], [-77.37523564115294, 34.72450313218907], [-77.37523747916495, 34.72438972643039], [-77.3753594678227, 34.724266879811665], [-77.37537211233156, 34.724235698561195], [-77.37542257808526, 34.724202483954095], [-77.37553563430987, 34.72412893893991], [-77.37561453316992, 34.7240765699815], [-77.37598076257692, 34.72410863098179], [-77.37606481425172, 34.72395459942277], [-77.37613646984259, 34.723951924911354], [-77.3763084867325, 34.72389622808862], [-77.37647117380259, 34.723817252201904], [-77.37650067594396, 34.72380161348665], [-77.37673642972543, 34.72384780173003], [-77.3768306403941, 34.72376932170545], [-77.37730226586292, 34.72354898640235], [-77.37727513572555, 34.72327652181046], [-77.37729047617768, 34.72325709431008], [-77.37763764645632, 34.72310719264549], [-77.37763709656058, 34.72307561579123], [-77.37768113659148, 34.723047852694684], [-77.37805478297344, 34.72301041112557], [-77.37830741812644, 34.7230992225639], [-77.37874490272446, 34.72293559382379], [-77.37893666661789, 34.72295610205209], [-77.3790122230299, 34.72287990607473], [-77.379283988457, 34.72277577537199], [-77.3793827665756, 34.72259968223876], [-77.3794162043082, 34.72259243542818], [-77.37967521223042, 34.722667277175255], [-77.37971548018402, 34.722665907853475], [-77.3801305021233, 34.722533069713734], [-77.3803819419586, 34.72257874030992], [-77.38057612322764, 34.722644089824016], [-77.38155379757464, 34.72295968055245], [-77.38190121162452, 34.72292201986957], [-77.38259393257744, 34.7229510562036], [-77.38282732879433, 34.72299008928358], [-77.38315175053017, 34.72305928088194], [-77.384660906998, 34.72333838656489], [-77.38519306777053, 34.72367609794134], [-77.38577324603588, 34.72366102365259], [-77.38583900409314, 34.72365968196391], [-77.38588197589048, 34.72370671417242], [-77.38634018240693, 34.72414242522161], [-77.38666265751348, 34.72427397083608], [-77.38722558402274, 34.72453977951304], [-77.38747536546018, 34.724649929529846], [-77.38780122987069, 34.72469207429011], [-77.38872302375768, 34.72476958490837], [-77.3891362656768, 34.724671302082434], [-77.38939986897702, 34.72442801702327], [-77.38946380231293, 34.72442608820952], [-77.38996393204908, 34.72452822411804], [-77.39007467402635, 34.72453059124337], [-77.3903612128316, 34.72442961226007], [-77.39056910982373, 34.72443112549319], [-77.39073191930953, 34.72447515757288], [-77.39087133407557, 34.72451556011178], [-77.3912499948507, 34.72451626222262], [-77.39135670580724, 34.724531667666874], [-77.39141273110211, 34.724525824656496], [-77.39185115489845, 34.72462133388558], [-77.3919712205971, 34.72462360460014], [-77.39222619222349, 34.724633088498784], [-77.39260951559186, 34.72463351989411], [-77.39276856346964, 34.724625020184654], [-77.39292396911259, 34.72454284200037], [-77.39318616069434, 34.7242329676972], [-77.39385118512747, 34.72374896483522], [-77.3939443353813, 34.72355453759015], [-77.39410402135763, 34.72327827936347], [-77.39432468816088, 34.72314046574222], [-77.39458371616035, 34.72310352915224], [-77.39466715386536, 34.72291616395051], [-77.39513962024586, 34.72252609264959], [-77.39514387909472, 34.72252297394348], [-77.39514510046837, 34.722522089428786], [-77.39579029343739, 34.72219083793807], [-77.39584559888286, 34.72217393462708], [-77.39588643532959, 34.72217646615706], [-77.3961164567902, 34.72211890403187], [-77.39669560722774, 34.722067412590306], [-77.39732694574913, 34.72163059230574], [-77.39734622498189, 34.72161693198327], [-77.39735397054783, 34.721603038465716], [-77.39793204499117, 34.721096249353124], [-77.3982746772389, 34.72082348096024], [-77.39845493449522, 34.72045478359854], [-77.39863054617211, 34.72017822125713], [-77.39879858521604, 34.71988849747396], [-77.3988879790215, 34.71966640064635], [-77.39895644421269, 34.71959603513873], [-77.39918497713947, 34.71946454263983], [-77.39917761010888, 34.71939177220591], [-77.39928730753599, 34.719290973706904], [-77.39947845506808, 34.71913548415479], [-77.39957451233111, 34.71904168651716], [-77.39951721114183, 34.71891592928452], [-77.39945483119463, 34.71871294616541], [-77.3994433899276, 34.718500380264146], [-77.39948408959921, 34.71845091261039], [-77.399451820559, 34.71834365355745], [-77.39943587402492, 34.71815447385101], [-77.39938882678666, 34.718076802529325], [-77.39934674678233, 34.71797983010273], [-77.39930424519058, 34.717828851045255], [-77.39933749203522, 34.71765187886208], [-77.39922270874331, 34.717301768398556], [-77.39919649403933, 34.71726433653101], [-77.39915746535503, 34.71721835646907], [-77.39905032887623, 34.71693877708543], [-77.39903202142092, 34.71688658115489], [-77.39896537732056, 34.716799845197755], [-77.39879611835285, 34.71656162184303], [-77.39879262401213, 34.716540062398145], [-77.39879053699848, 34.71653083493698], [-77.39877973178288, 34.716496234497356], [-77.3987568889378, 34.71633179850401], [-77.39871520588508, 34.716287792408664], [-77.3986966784399, 34.71621842447434], [-77.39869048530677, 34.71613632049917], [-77.39862629328081, 34.71604156849188], [-77.39856215283142, 34.71589178463992], [-77.39857536827539, 34.715737989494656], [-77.39843036553337, 34.71561158749664], [-77.39840423962465, 34.71555696123156], [-77.39832710844686, 34.71539516679496], [-77.39831371747081, 34.71535993979336], [-77.39828574720255, 34.715235930098295], [-77.39824085477757, 34.715159472332246], [-77.39818572317134, 34.715007787809164], [-77.39814973353259, 34.7149087678109], [-77.3981152862268, 34.71481399205545], [-77.39806135319222, 34.71467282904186], [-77.39804002613667, 34.7146222070162], [-77.39802123324502, 34.71458423392383], [-77.39795556191824, 34.71443425938754], [-77.39791855073318, 34.71433949339753], [-77.39789146841431, 34.71425925699665], [-77.39789757899503, 34.71423527160597], [-77.39784271771401, 34.713962626295164], [-77.3977687981101, 34.713842638914954], [-77.39767915510774, 34.71377959508503], [-77.39748160416241, 34.713556697902234], [-77.39749365675917, 34.71351102484723], [-77.39751243298673, 34.71328791196861], [-77.3974322346453, 34.7127957910293], [-77.39749390834046, 34.71272228388721], [-77.39745695008845, 34.71263368583706], [-77.39739640957576, 34.71254324583347], [-77.39718470272629, 34.71230086679722], [-77.39697849543222, 34.71198278565857], [-77.39696461199769, 34.71194630332036], [-77.39693822154875, 34.71191225993036], [-77.39689628070762, 34.71191918618485], [-77.39666906076397, 34.71173501608847], [-77.39664599509179, 34.711632816098344], [-77.3964113420341, 34.71151829798927], [-77.39639647636983, 34.71149954794281], [-77.39627192250208, 34.71134244840418], [-77.39618208387613, 34.71120338924623], [-77.39613463446246, 34.71112834621201], [-77.39616508240874, 34.71094067156792], [-77.39596627075431, 34.710842098531984], [-77.39592200678865, 34.710774364978036], [-77.39585155549234, 34.71062506291352], [-77.39576003340025, 34.710447776252636], [-77.3957458754097, 34.7104331542508], [-77.39577805896725, 34.710209386005424], [-77.39561514577228, 34.709841794894274], [-77.3955972691211, 34.70983844004291], [-77.39559593328408, 34.70982153161904], [-77.39559665098294, 34.70979342113026], [-77.39564462343066, 34.70974009142889], [-77.39609176236618, 34.709106605151014], [-77.39691184945121, 34.70916372455057], [-77.39696304472686, 34.70837639655401], [-77.39607650164152, 34.708250014552554], [-77.39561677395393, 34.70804504039535], [-77.39546543382036, 34.70808209653245], [-77.39545705219413, 34.70809547437116], [-77.3952227256376, 34.70820932074859], [-77.39504968275114, 34.70851206399693], [-77.39481924400168, 34.708521777250795], [-77.39472773701722, 34.70848009129599], [-77.3946839768312, 34.70843392506814], [-77.39372294564845, 34.70822517275318], [-77.39354340099399, 34.70814286458716], [-77.39338329992961, 34.708083536298425], [-77.39254740017661, 34.70779890761288], [-77.3923379140509, 34.707878619972334], [-77.39196505623599, 34.70778214792356], [-77.39171771357502, 34.70780672518292], [-77.3916366272876, 34.70780576301273], [-77.39107652173688, 34.70780723650964], [-77.39059506761402, 34.70746063159521], [-77.39049552675891, 34.707435803012245], [-77.38988124903466, 34.70750777552314], [-77.38952864473633, 34.70735083619844], [-77.38871594385103, 34.70710496575652], [-77.38842479485419, 34.70704178079775], [-77.38797672826158, 34.707154887686286], [-77.387632652945, 34.70724268431413], [-77.38738888909955, 34.70726005804815], [-77.38694671063219, 34.707196197061634], [-77.38616407472374, 34.7070625088064], [-77.38553634413203, 34.70680673696666], [-77.38501159734831, 34.706615500628], [-77.38452992130846, 34.70665702719371], [-77.38418632551507, 34.7065615659656], [-77.3837969843404, 34.706382796009954], [-77.38336364449435, 34.70601186819887], [-77.38328047840872, 34.705953332281595], [-77.38318804456746, 34.7059583970469], [-77.38263100516674, 34.7059823955456], [-77.3822869522707, 34.705980995887245], [-77.38201140374204, 34.70590845270233], [-77.38177227104777, 34.70578254389826], [-77.3815694499954, 34.70547108662083], [-77.38151764694491, 34.70540057737415], [-77.38121717145582, 34.70512131750466], [-77.38055540598158, 34.70464462670358], [-77.38046587735965, 34.70460643923443], [-77.38039508600208, 34.70457136398583], [-77.38031231526034, 34.70447175699637], [-77.37948960033927, 34.70355206632079], [-77.37908171051565, 34.703333590318216], [-77.37865547203589, 34.70303256286064], [-77.37839943025861, 34.70289045511759], [-77.37831921494039, 34.70280636029378], [-77.3782302260852, 34.7027334271184], [-77.37790700888404, 34.70252430103136], [-77.37773999303764, 34.702463726669485], [-77.37747694018856, 34.702349608598965], [-77.37737188111015, 34.70230539662073], [-77.3771284697019, 34.702166545811316], [-77.37711481496746, 34.70215975502049], [-77.37711406157905, 34.70215705624092], [-77.37710976086683, 34.70214997115308], [-77.37701363810027, 34.70192591471933], [-77.37690382364998, 34.701855268669185], [-77.3767348960949, 34.70166040536146], [-77.3766746274251, 34.701613550502145], [-77.37660770517911, 34.701561186900726], [-77.37653595196495, 34.701504197407935], [-77.37648165816807, 34.70146108749504], [-77.37643117347855, 34.70142098987439], [-77.3763348919483, 34.701179800020086], [-77.37621191413488, 34.70114502230648], [-77.3761868255106, 34.70106480295675], [-77.37608565187574, 34.70097740556043], [-77.37599045877444, 34.70087662991398], [-77.37596955104043, 34.70085097778101], [-77.37602003925757, 34.70063364119436], [-77.37600789840738, 34.70060200731349], [-77.37571394525992, 34.7002752494852], [-77.3756849332323, 34.70015901479807], [-77.37565653682513, 34.70012493835103], [-77.37562348279452, 34.70007807795437], [-77.37551014733313, 34.699843363927855], [-77.37552526186266, 34.69969357161941], [-77.37551420455442, 34.699445963518514], [-77.37534930827564, 34.69923036708119], [-77.37534642711796, 34.69896955623396], [-77.37533097914044, 34.69879847572442], [-77.37528223627196, 34.69875219266679], [-77.37524294842588, 34.698581743888475], [-77.37522603397605, 34.69827252303994], [-77.37518131723003, 34.6981251474554], [-77.37500599975348, 34.69807953019066], [-77.37479309067427, 34.69763548899746], [-77.37453224397933, 34.697393115609145], [-77.37435027706091, 34.69718785520327], [-77.37419808588137, 34.69673757567137], [-77.3741900956662, 34.696522637925064], [-77.37414797486385, 34.6964711551543], [-77.37404385374023, 34.69584668147883], [-77.37383245223617, 34.6955397412739], [-77.37368990373373, 34.694653234246566], [-77.37368080161453, 34.6945858007968], [-77.37377530448137, 34.69447636068212], [-77.3740287149103, 34.69319442018265], [-77.37416281690639, 34.692600937819435], [-77.37415632138425, 34.69257084672673], [-77.37409464253257, 34.69245939571714], [-77.37353153057406, 34.69150989655728], [-77.37347777639856, 34.69096680248171], [-77.37345268480473, 34.69078206970216], [-77.37344971504389, 34.690718411374], [-77.37346881494241, 34.69062860341413], [-77.37370006595772, 34.68980306965908], [-77.3737693135692, 34.68969968263874], [-77.37376997143114, 34.689619224762055], [-77.37381177123913, 34.68892852740846], [-77.3737268961564, 34.6887307230957], [-77.37369825986151, 34.68827943546365], [-77.3736856606138, 34.68823709121845], [-77.37348377812806, 34.68778935796006], [-77.37327758957036, 34.68753008358133], [-77.37283722715345, 34.68731326536796], [-77.37250587805714, 34.68694900928568], [-77.37228143748754, 34.686837527386345], [-77.37166433071957, 34.68663926735502], [-77.37122779413312, 34.68634320413677], [-77.3710815305819, 34.68617002607041], [-77.37069131369552, 34.685811381254155], [-77.3703041909776, 34.68540065144903], [-77.37026801446869, 34.68534878056917], [-77.37018760704906, 34.68531811942379], [-77.36980783404377, 34.68504851417669], [-77.36972436484588, 34.68497883540723], [-77.36966944581283, 34.68490195056225], [-77.3693569016519, 34.684539810232835], [-77.36934133922124, 34.68448522576909], [-77.36934189700598, 34.68445958047394], [-77.36914183802625, 34.68424145614888], [-77.3689572535318, 34.68399243397127], [-77.3686266655001, 34.68358310252511], [-77.36853765061885, 34.68352698910008], [-77.3684724897739, 34.68346229440107], [-77.36810729891175, 34.68332454855887], [-77.36792554672652, 34.68320975372386], [-77.36743945621464, 34.682897121522466], [-77.36736637010199, 34.682851769165715], [-77.36727456038265, 34.68279415361232], [-77.36680301050552, 34.68249700603647], [-77.36643922305551, 34.6822189341751], [-77.36626800462881, 34.682120414968345], [-77.36588529614063, 34.682065322107015], [-77.36582215135735, 34.68201897702678], [-77.36577775095326, 34.681709371491], [-77.36544145747938, 34.68153228965617], [-77.36516091463886, 34.68139578194945], [-77.36490191984686, 34.68132910251658], [-77.3646431324007, 34.68120621686624], [-77.36454418691879, 34.68108210940446], [-77.3643780180657, 34.681072032383], [-77.36417728718365, 34.68097033851719], [-77.36397195465614, 34.680935500003734], [-77.36381312820342, 34.680956228003225], [-77.36347155277551, 34.68111941712363], [-77.36313071001825, 34.68124545121289], [-77.36295894919141, 34.68131395007917], [-77.36274126501594, 34.68128739429178], [-77.36255599382164, 34.681163504129046], [-77.36245401742596, 34.68111429839253], [-77.36236237255838, 34.681032217724194], [-77.36204696239287, 34.680855206507985], [-77.36179940145348, 34.68082978696162], [-77.361004195439, 34.68085758565754], [-77.3607607874711, 34.68116251754658], [-77.35988590483012, 34.68185983564817], [-77.35960609047572, 34.6821710907118], [-77.35921820730583, 34.682353250771435], [-77.35913742359651, 34.682393855894816], [-77.35869518781954, 34.6824309524802], [-77.35859189238735, 34.68244904990102], [-77.35852370649624, 34.68248803580853], [-77.35841145328872, 34.682549766489124], [-77.35782382662133, 34.683033219264544], [-77.3577625022406, 34.68308970471155], [-77.3575961265021, 34.68314914409477], [-77.35710356023029, 34.68345266883526], [-77.35674535880982, 34.68346448676212], [-77.35648988911916, 34.683504859158575], [-77.35617895127001, 34.68383117514984], [-77.35593885673131, 34.68402600821], [-77.35574988347653, 34.68413379582253], [-77.35570428376882, 34.68414935459445], [-77.35569294260108, 34.68414161593556], [-77.35555175435753, 34.684062135636346], [-77.35554974243941, 34.684000176451406], [-77.35561015661983, 34.68390929291902], [-77.35560362866742, 34.68372882123727], [-77.35583336310208, 34.683451175009026], [-77.35590399960293, 34.683381552235154], [-77.35590378898989, 34.68335666914549], [-77.3559371317743, 34.683347194789825], [-77.35646052691558, 34.683211979711785], [-77.35657303439538, 34.683218414645026], [-77.35708670106158, 34.6827317287358], [-77.3571236258208, 34.68252333757318], [-77.35740585940773, 34.68241117676553], [-77.35760958165096, 34.68231590143093], [-77.35777739680925, 34.68234900194438], [-77.35798497772224, 34.682477998743686], [-77.35824888287692, 34.682244406389884], [-77.35868018574578, 34.68202546623922], [-77.35870708264622, 34.68201236478145], [-77.35872343261055, 34.681995831813545], [-77.35923094652776, 34.68183853348851], [-77.35943899631062, 34.681592502160875], [-77.36049435213334, 34.680801473526195], [-77.36049392457406, 34.680405244776225], [-77.36063665776838, 34.68014799610658], [-77.36085942529795, 34.67977654387334], [-77.3610535696214, 34.67962492205256], [-77.36121520238203, 34.67959665763769], [-77.36130227588151, 34.67963559076465], [-77.36234048180839, 34.67948930548713], [-77.36245645940996, 34.679444045254854], [-77.36250586421886, 34.67949747532152], [-77.3627423726924, 34.67951783923491], [-77.36296775129486, 34.67953612021291], [-77.36301976000738, 34.67956529319012], [-77.36327146593028, 34.67969653221459], [-77.36353427508314, 34.67985466963181], [-77.36408295200674, 34.679757500237976], [-77.36415616218663, 34.67977401728832], [-77.3641793684907, 34.67978603621552], [-77.36424487548166, 34.67979877342439], [-77.36468375047673, 34.68001835167472], [-77.36501617830382, 34.67993026490666], [-77.36530325342912, 34.67994590705746], [-77.36557251915765, 34.67989618456861], [-77.36566566733879, 34.67988405560413], [-77.36591278166338, 34.67990783436095], [-77.36618653620008, 34.67981769492242], [-77.36629554745703, 34.679804193384285], [-77.36655055970341, 34.67977238672137], [-77.36666247274226, 34.67984551044222], [-77.36698355434797, 34.67990980003528], [-77.36705625145464, 34.67993657878405], [-77.36710351284066, 34.679929304886535], [-77.36722557372556, 34.67999036921757], [-77.36762258751172, 34.68020300259964], [-77.36773138008593, 34.68020527434316], [-77.36815204181698, 34.680440929655774], [-77.3682749697611, 34.680575244837804], [-77.36863696263838, 34.68065733239193], [-77.36899745140195, 34.68080748157073], [-77.36921342587858, 34.680908277219245], [-77.36962554443534, 34.68111239141267], [-77.36976183043708, 34.68108090613207], [-77.37001032422526, 34.681182263566015], [-77.37031632125866, 34.68123255657801], [-77.3704992357571, 34.68122820165675], [-77.37078476183304, 34.68133688484435], [-77.371051583288, 34.68159143017146], [-77.37131487700006, 34.68191655106465], [-77.37221953301986, 34.681480659028026], [-77.37270124255451, 34.68126358970027], [-77.3728909284467, 34.68118270913621], [-77.37304876455556, 34.681025636887185], [-77.37419242677832, 34.68024913761285], [-77.37457382083684, 34.680121656899786], [-77.37542604730324, 34.680122641626056], [-77.37658502912188, 34.67935158072], [-77.37691274086991, 34.67912345954244], [-77.37779479348126, 34.678423432926664], [-77.37815531789911, 34.67819077079988], [-77.37847367713405, 34.6778680956383], [-77.37944837529601, 34.677221207221194], [-77.37961743401442, 34.67693411752089], [-77.38054155575058, 34.676096037259356], [-77.38069904974276, 34.675340298501816], [-77.38072435256794, 34.674931340283365], [-77.38117467065892, 34.674059352999315], [-77.38083044236808, 34.67386774130984], [-77.38039665521717, 34.67360656890479], [-77.38018556286686, 34.67360908783079], [-77.37972665066742, 34.67354687042645], [-77.3794990091721, 34.67350932959982], [-77.37870957217325, 34.673577204019715], [-77.37851694106384, 34.67359130230564], [-77.37830934664062, 34.67363697987313], [-77.37787047213187, 34.67375702402498], [-77.37736639502032, 34.67366301051737], [-77.37728840572447, 34.673700636778186], [-77.37695360484474, 34.67366514662369], [-77.37627524432764, 34.673626378529086], [-77.37613532474809, 34.67354974832676], [-77.37570603551728, 34.67346768741228], [-77.37498104925075, 34.673402980394165], [-77.37456980912219, 34.673362641870945], [-77.37422846010853, 34.67343434628306], [-77.37379034054953, 34.673381839843884], [-77.37342871359222, 34.67345283765479], [-77.3728773001584, 34.673513032059795], [-77.37250044691554, 34.67370265873744], [-77.37209202849391, 34.67369362916689], [-77.37039508206479, 34.67386546173559], [-77.37004102558252, 34.673929194991956], [-77.36978490530885, 34.6738931512668], [-77.36894195911992, 34.67385373883444], [-77.36885705094556, 34.67388475988827], [-77.36876665471436, 34.67381601169463], [-77.36813994702769, 34.67358276030616], [-77.3677613723547, 34.67353594447773], [-77.36700374751597, 34.67308354193864], [-77.36684020757924, 34.673006557764694], [-77.36674882291608, 34.672900606102104], [-77.3659532495957, 34.67248076601236], [-77.36570493520064, 34.67237333032977], [-77.3656522404229, 34.67234429025284], [-77.36560212342201, 34.67230139873293], [-77.36469159952215, 34.671740782508294], [-77.36451328451773, 34.671644287392766], [-77.36414702383908, 34.671526588834524], [-77.36361102672483, 34.67134001826232], [-77.36321987622658, 34.671334000514], [-77.36302485751465, 34.6712977819697], [-77.36292570206903, 34.67128969936259], [-77.362670707191, 34.671242071028885], [-77.36245276603887, 34.67120702509712], [-77.36222463775775, 34.67104100902262], [-77.36213161999869, 34.67082875722199], [-77.36201654007786, 34.670648029564504], [-77.36184234238696, 34.67054689302257], [-77.36182698464143, 34.670383226879174], [-77.36154681984667, 34.67020448480862], [-77.36106470242692, 34.670357158886745], [-77.36056502657706, 34.67025672342781], [-77.36035846196397, 34.67017525073503], [-77.36031492783857, 34.670145969701835], [-77.36026914156031, 34.670109883404656], [-77.35988778398625, 34.66973503854124], [-77.35985035324741, 34.669715206165286], [-77.35979763842447, 34.6696872754381], [-77.35958832644808, 34.66952272100536], [-77.35964399119557, 34.669440123516985], [-77.35965661493682, 34.669219262908285], [-77.35968162762836, 34.66905667351051], [-77.35955057700147, 34.668834896255994], [-77.35951743452657, 34.66875099692214], [-77.35941256846445, 34.668596704197014], [-77.35939885441186, 34.66848594753124], [-77.35939105753907, 34.668280971691885], [-77.35939246258785, 34.66794064316859], [-77.35935527647108, 34.66773106784066], [-77.35943121342788, 34.667300678599496], [-77.35929621177036, 34.66698811216796], [-77.3591901131683, 34.66684641650504], [-77.3592118177568, 34.666504003120366], [-77.35919848282941, 34.66635787938068], [-77.3592078057749, 34.66626774864461], [-77.35926499583127, 34.66586135406021], [-77.35926057139932, 34.6657099955466], [-77.35925409844883, 34.66544368017573], [-77.35926437202298, 34.66537405222629], [-77.35922695173628, 34.66524094945439], [-77.35920308194999, 34.66469452989298], [-77.35907716017655, 34.664424998285526], [-77.35907131587498, 34.664300082060755], [-77.35901388118714, 34.66405177443759], [-77.35898265935745, 34.663950594248725], [-77.35902589675834, 34.66378620078586], [-77.35908704297744, 34.663601232310064], [-77.35907512993106, 34.66345050217095], [-77.3592320857831, 34.66293954515004], [-77.35926962044039, 34.66269428032047], [-77.35925632825919, 34.662581596004124], [-77.35927523551334, 34.662371474818144], [-77.35934966197428, 34.66172476085602], [-77.35933563657412, 34.66142168781124], [-77.35947185856159, 34.660948562247775], [-77.36001562266141, 34.66090512341208], [-77.36008757375005, 34.66082574149439], [-77.36011195666734, 34.660811833761755], [-77.36014424641075, 34.660771575017506], [-77.36019574290866, 34.6605483827907], [-77.3601944310586, 34.65992066586473], [-77.35992168360802, 34.65930011783104], [-77.35928114959663, 34.65776520505235], [-77.35871279813446, 34.65717646421665], [-77.35854117578097, 34.65693353506975], [-77.35809754244761, 34.65683272328475], [-77.35760707622947, 34.65648634683003], [-77.35722194426793, 34.65613248051842], [-77.35578658038823, 34.65549751130747], [-77.35445247140512, 34.65395742966007], [-77.35402562843828, 34.652977037524494], [-77.35331179862257, 34.651210610237754], [-77.3529701132565, 34.65078501343687], [-77.35183669511534, 34.64908683652615], [-77.35067272524998, 34.64724950176086], [-77.34897563327795, 34.64458156205151], [-77.34811915206906, 34.64311950304227], [-77.34605900126279, 34.63883243502842], [-77.3456951764154, 34.638733368470625], [-77.34379442440033, 34.64030738716757], [-77.34346781674076, 34.6412749600639], [-77.34223119084106, 34.64099964504847], [-77.34134927743688, 34.64088416823583], [-77.34119595479673, 34.64075310046915], [-77.34103734018626, 34.64060748396602], [-77.34063081678329, 34.63996079889568], [-77.34052658831028, 34.63978216662841], [-77.34050153003409, 34.63899304276103], [-77.34057610579677, 34.638575214160625], [-77.34087778494248, 34.638537813897145], [-77.34133935939805, 34.638034043321504], [-77.34139152353005, 34.638002039518575], [-77.34140256257757, 34.637963188900805], [-77.34146021894091, 34.63793361304257], [-77.34171883372781, 34.63798195218693], [-77.34205227572406, 34.63801031694846], [-77.34264690293197, 34.63788021806326], [-77.34273281053161, 34.63791983875164], [-77.34332148532513, 34.63795419134715], [-77.34382322890724, 34.63784730795638], [-77.34580092601374, 34.63811533421362], [-77.34589737566958, 34.6380283777775], [-77.34668413841152, 34.63627104312411], [-77.34675143330543, 34.635906914240266], [-77.34690866193567, 34.63473741139747], [-77.34736821004304, 34.63424086348881], [-77.34731310546061, 34.6329938710648], [-77.347362227293, 34.63290088109784], [-77.3474035656017, 34.63278107292009], [-77.34775917674698, 34.63193707425497], [-77.34781708774234, 34.631653328428314], [-77.34803789717994, 34.63120633270897], [-77.34812032908452, 34.630939855000456], [-77.34825563776896, 34.63065014636953], [-77.34839965870611, 34.63031264777022], [-77.34871438909005, 34.630160087811426], [-77.34877242351303, 34.63003622717447], [-77.34905430819487, 34.62978435962437], [-77.34933027700555, 34.629626640929594], [-77.34981673961357, 34.62927401490454], [-77.35038567884338, 34.629051666359814], [-77.35046090514498, 34.62888177497218], [-77.35075415882518, 34.6287142240411], [-77.35114962358296, 34.62843052477357], [-77.35156457695618, 34.62800291264403], [-77.35186786357231, 34.62776671458042], [-77.3523813238841, 34.627233725464066], [-77.3525480474138, 34.62706739474643], [-77.35263955782634, 34.62698145912313], [-77.35335103978196, 34.6264827195219], [-77.35373377441414, 34.62605578974435], [-77.35465863878841, 34.62557366743195], [-77.35498003981206, 34.62533489288458], [-77.35516317806405, 34.62516145052465], [-77.35642094569802, 34.62429305631057], [-77.35697959421844, 34.62380325958782], [-77.35794597815561, 34.62311941022954], [-77.3579984836173, 34.62309823494013], [-77.35814032308498, 34.62303491394426], [-77.35931553567549, 34.62258568344868], [-77.35957570862149, 34.622459832476125], [-77.36015570203918, 34.622120458676626], [-77.36115303236411, 34.621553579030845], [-77.36186716325923, 34.62156946795467], [-77.3627301756762, 34.62097617588442], [-77.36422910331541, 34.62037621088585], [-77.3639461272399, 34.61880293551492], [-77.36342357202747, 34.61813273236461], [-77.36283309030709, 34.61726493730769], [-77.3628028804866, 34.617192796743694], [-77.36273188885508, 34.617129658143426], [-77.36222439412946, 34.61650344117621], [-77.3627325486354, 34.615655279418654], [-77.36276591242202, 34.61561230364859], [-77.36282202664181, 34.615568313797425], [-77.36391987480513, 34.61499053195982], [-77.3643097830026, 34.614582151323845], [-77.36503325295575, 34.614330875760295], [-77.36565413991092, 34.61346240973447], [-77.36576314703072, 34.61331325940432], [-77.36588714004812, 34.61311067113574], [-77.366471208156, 34.612275258643244], [-77.36746447434737, 34.61155625757809], [-77.36749722251557, 34.61149883286845], [-77.36763123873428, 34.60996025078521], [-77.36783339402287, 34.60975220106352], [-77.36845082151709, 34.60902640337642], [-77.36904218942519, 34.60883708966986], [-77.36960395899875, 34.608403932804414], [-77.37032889159872, 34.607694623270014], [-77.37047836834911, 34.60752129371678], [-77.3706193358835, 34.60742285796478], [-77.37087669334454, 34.60733855336351], [-77.37163720221432, 34.60690416306976], [-77.37219627109596, 34.60647230235594], [-77.37287466271044, 34.6063604347111], [-77.3731450684921, 34.606267097719964], [-77.37356143287685, 34.6063799397232], [-77.37377289263655, 34.606380055091876], [-77.37384551377073, 34.60633902082113], [-77.37418291465575, 34.60588278770615], [-77.37514338445554, 34.60530294340203], [-77.37534985238713, 34.60515947683562], [-77.37593546995129, 34.60412107534094], [-77.37641744741418, 34.60342115563034], [-77.37692704814748, 34.602953061703026], [-77.3773059784074, 34.602884975605335], [-77.37789894969258, 34.60255628883563], [-77.37850375920115, 34.602247261115274], [-77.37928392299933, 34.60215028975352], [-77.37929203864125, 34.602147073383094], [-77.37930495004422, 34.602142094258596], [-77.37999018955216, 34.601960150324345], [-77.38008033937028, 34.60195388216271], [-77.38015203192202, 34.60195670897252], [-77.38070282835412, 34.601954567749466], [-77.3808482939709, 34.60195546819423], [-77.38088743185473, 34.601948261366914], [-77.38165681988467, 34.602040329794015], [-77.3821199319788, 34.60210057915868], [-77.3830359404007, 34.602254883609646], [-77.38323327006907, 34.6022796254642], [-77.38333132937981, 34.60231924530303], [-77.38357266394095, 34.60239010376914], [-77.38402147192916, 34.60252899482589], [-77.38443057190855, 34.602674853987764], [-77.38480968788421, 34.60272825555634], [-77.38538519321202, 34.60297798385575], [-77.38546499719189, 34.603109617442556], [-77.38581868923657, 34.603153372184494], [-77.38638612028609, 34.60318428243529], [-77.38678403895867, 34.603196820981], [-77.38754172725737, 34.60351624603554], [-77.38782543800569, 34.60362306901983], [-77.38796255259832, 34.60374662992724], [-77.3889212252004, 34.60398288914769], [-77.38972669640083, 34.60489950266794], [-77.39047119305229, 34.60548610762632], [-77.39111533619626, 34.60610761033906], [-77.39126655104255, 34.606212863508915], [-77.39134370733574, 34.60636464085083], [-77.39159091009029, 34.606665783119084], [-77.3916665307724, 34.60674266228689], [-77.39190355130643, 34.606778730489054], [-77.39219911304728, 34.60666586695317], [-77.392252008873, 34.60660900631643], [-77.39241199778112, 34.60651207353306], [-77.39269189188457, 34.60626075848293], [-77.3927474260916, 34.606222048043314], [-77.39278258817038, 34.606157160228456], [-77.39348025519577, 34.60536388289855], [-77.39353763180414, 34.60526093495123], [-77.39361826346038, 34.60518751007555], [-77.39426859730692, 34.604525175717896], [-77.39463872669093, 34.60458991953833], [-77.39477409196232, 34.60447629444168], [-77.39505689119181, 34.60416125866528], [-77.39507920579928, 34.60415171278631], [-77.39514235595807, 34.60411856760679], [-77.39542932997887, 34.60362919902653], [-77.39584519981872, 34.60342999171273], [-77.39604172708783, 34.603139708927074], [-77.39615640479654, 34.602609216390675], [-77.39738108906413, 34.60209737565749], [-77.39740349569453, 34.60207445614485], [-77.39742177127862, 34.60207316518086], [-77.39745004825572, 34.602056967398], [-77.39840887067952, 34.60131416434129], [-77.3989982922277, 34.60069677744642], [-77.39929910179592, 34.60044644952029], [-77.39978653122697, 34.600124956716215], [-77.39988063648073, 34.60003850352504], [-77.40026567859884, 34.59964998137259], [-77.40057476037757, 34.59940712172468], [-77.40107179724805, 34.599017499656675], [-77.40123628071849, 34.59885727649759], [-77.40136297553569, 34.598558933989224], [-77.4016830084864, 34.59808016224524], [-77.40190355110784, 34.597781567136856], [-77.40215117412332, 34.597650295698806], [-77.40278406707667, 34.597239444838806], [-77.40299955464593, 34.597105888776326], [-77.40372753248704, 34.59622972798671], [-77.40382476542986, 34.59617756409261], [-77.40398171467281, 34.59605016010565], [-77.4047071716808, 34.595302616943634], [-77.40489573860418, 34.5946596121407], [-77.4049651912683, 34.59420992561759], [-77.4050723047322, 34.59394506142436], [-77.4053037426143, 34.592799014448275], [-77.40536143296498, 34.592454432504844], [-77.40631860578875, 34.59171145219382], [-77.40665428332595, 34.59081262968813], [-77.40669984903917, 34.59056294696428], [-77.40668958134371, 34.59035938063121], [-77.40687984849669, 34.58965652983329], [-77.4070098902061, 34.58896004286953], [-77.40707528532892, 34.588810444523375], [-77.40735655645321, 34.588256114834756], [-77.40746694950059, 34.587688310269], [-77.40730679176161, 34.58707871507323], [-77.40781023869611, 34.58631043370899], [-77.40804487489527, 34.586123016232406], [-77.40831717010379, 34.58593434149438], [-77.40830870574065, 34.58539421570079], [-77.40819695699155, 34.58525190543187], [-77.40828850641276, 34.585058510130814], [-77.40817003723927, 34.58471443683595], [-77.40790200265572, 34.58444532772552], [-77.40778569577961, 34.58433486399748], [-77.40766758396401, 34.58415278019707], [-77.40725924560856, 34.58368895642388], [-77.4071955534685, 34.58335755670508], [-77.40714361053173, 34.58229202753855], [-77.40742220453356, 34.58196712068753], [-77.40735165521085, 34.581468378796465], [-77.40703033892584, 34.58048812796335], [-77.40697625705651, 34.58033318359517], [-77.40687928234243, 34.58015451773884], [-77.4060958338362, 34.57960613693706], [-77.40592869244648, 34.57878608800678], [-77.40599837401219, 34.57802685100241], [-77.4059759440402, 34.577930114837805], [-77.40530311217907, 34.5773442729359], [-77.40523647683278, 34.5772595023083], [-77.40490911329886, 34.57751417999599], [-77.4047291091224, 34.57745490334465], [-77.40470083588674, 34.577465155013336], [-77.40451511073468, 34.577605095256], [-77.4042209172717, 34.57765130544311], [-77.40404797622213, 34.57770501681944], [-77.40372710233255, 34.577757722828096], [-77.40343131479652, 34.577872825146336], [-77.40341479483573, 34.577963243876724], [-77.4032294131401, 34.57801369461814], [-77.40293909334355, 34.57826017455191], [-77.40278774347782, 34.57822719142256], [-77.40215107559374, 34.57828229665826], [-77.40196663650212, 34.57831003658525], [-77.40145612241227, 34.57858245740834], [-77.40140466206526, 34.578634719839286], [-77.40136305335331, 34.57863321980347], [-77.40133348067579, 34.57863202247626], [-77.40074242231015, 34.57886582887231], [-77.40057502464478, 34.57896929478104], [-77.40036742128683, 34.578963268265774], [-77.40016062391965, 34.57917201380728], [-77.40013782312175, 34.579197267879444], [-77.39978698146724, 34.57957009509519], [-77.39973569008603, 34.57962460041329], [-77.39939296055219, 34.57972497437976], [-77.39938739829849, 34.57972413043611], [-77.39937583390281, 34.57973179271858], [-77.39919285856946, 34.579967156908374], [-77.39918982249273, 34.57997091921596], [-77.39915354021781, 34.580021843778276], [-77.39902562805503, 34.58020689734698], [-77.39899892341829, 34.58026238335914], [-77.39886350733148, 34.5805089562509], [-77.39876912549789, 34.5806684805435], [-77.39860487673295, 34.58090793236749], [-77.39849781951236, 34.58101684595016], [-77.39829354283017, 34.58107256416495], [-77.39821084630422, 34.581082353720575], [-77.39793202676569, 34.58108969436253], [-77.39781682306929, 34.581085313884266], [-77.39765470014186, 34.58107914885473], [-77.397422796546, 34.58114521106063], [-77.39698026415206, 34.581298882594474], [-77.39627556986356, 34.581877377557795], [-77.39613127762365, 34.58220491384107], [-77.39584661112666, 34.582357130006294], [-77.39524709263702, 34.58267170336996], [-77.3948902373623, 34.58274503878013], [-77.39427044357612, 34.582878380280754], [-77.39409426116616, 34.583041180538714], [-77.39380679152866, 34.583432257886614], [-77.39339245752811, 34.58399154717895], [-77.39293373771189, 34.58431585816194], [-77.39269414431307, 34.58439838970499], [-77.3919845800993, 34.58504374594878], [-77.39194675577801, 34.58509313437601], [-77.39176246936515, 34.585230388769475], [-77.39111787088257, 34.58527721686329], [-77.39083821821498, 34.58575695971079], [-77.39070395789761, 34.586077570426205], [-77.3903296380663, 34.58631814394479], [-77.3897165424749, 34.58640853149599], [-77.38954151908624, 34.58645503631501], [-77.38927776865575, 34.58656738861211], [-77.38875338627619, 34.5866618898651], [-77.38813635518088, 34.586632128631784], [-77.38796529450875, 34.58659596449525], [-77.38789674555005, 34.5865562282595], [-77.38778727785672, 34.58649814711818], [-77.38717728524028, 34.58606622913767], [-77.38697504729922, 34.585984035357555], [-77.38638931023877, 34.58540589030301], [-77.38605966469757, 34.58540413769959], [-77.38572985893495, 34.58509650790465], [-77.38600886384012, 34.58464621417234], [-77.38596048404696, 34.5838273575759], [-77.38576565026658, 34.58339308121752], [-77.38481381424859, 34.58206542982736], [-77.38473733539645, 34.58192550364058], [-77.38465093861869, 34.58185552219001], [-77.38385612677443, 34.58130392105799], [-77.38342427621653, 34.58118322532604], [-77.38323790975275, 34.581104682559854], [-77.3828929765206, 34.58078242747825], [-77.38244998440298, 34.58056744562078], [-77.38241152712183, 34.580521532922965], [-77.38233508059332, 34.58049110268907], [-77.38229005941896, 34.580325208678055], [-77.3821768931191, 34.579959190457856], [-77.38223207725166, 34.579656819915996], [-77.38227241480485, 34.57945938567754], [-77.38247041507995, 34.57877333198924], [-77.38304235159643, 34.57720430545782], [-77.38302420727149, 34.576995241979446], [-77.3829302524705, 34.576676175667316], [-77.38278829926682, 34.575816777235985], [-77.38245121944635, 34.57538676737584], [-77.38244627939247, 34.575380293117234], [-77.381912294125, 34.57518892151793], [-77.38166328353323, 34.575136466061515], [-77.38135213597236, 34.57520274179963], [-77.38021711575814, 34.57556159091277], [-77.38008716777182, 34.57559160607606], [-77.37996344595825, 34.57560485817303], [-77.37861580010343, 34.5758195812461], [-77.37851112879422, 34.57571617694472], [-77.37828333375897, 34.575734856690595], [-77.37794232220013, 34.576029458449845], [-77.3756507050559, 34.57667423010634], [-77.3753585383269, 34.577490793866005], [-77.37517875818511, 34.57793237942071], [-77.37424974419575, 34.57825979971255], [-77.37422539637784, 34.57874100332888], [-77.37378218159678, 34.57840710809101], [-77.37371624882005, 34.5784077096849], [-77.37369763930307, 34.57833934776575], [-77.37299433173233, 34.57789346310068], [-77.37272503605931, 34.57792051250703], [-77.37220630396277, 34.57789837501237], [-77.37185579555174, 34.57775557815871], [-77.37152226710413, 34.5776916569579], [-77.37141839483078, 34.57758234632774], [-77.37093702771854, 34.57736915778998], [-77.37063048433015, 34.57728511181371], [-77.37052722384074, 34.57720914449584], [-77.3703108697215, 34.57712901231064], [-77.36957644238352, 34.576672590095036], [-77.36905489605753, 34.57614928034427], [-77.36819725896814, 34.57573522370534], [-77.3680687670589, 34.575118544128614], [-77.36679019853798, 34.57519535628827], [-77.36590347407814, 34.574726428781624], [-77.36562531604497, 34.57470715202193], [-77.36489071439183, 34.57451320194738], [-77.36432768728608, 34.57426550797895], [-77.36347009088905, 34.57394381200734], [-77.3629204401037, 34.57309869787401], [-77.36355044828983, 34.5721693943529], [-77.36380595359823, 34.57127296563722], [-77.36426545942587, 34.56957795454821], [-77.36424200249873, 34.56951195262474], [-77.36417209378604, 34.569351912013616], [-77.3637848602614, 34.56872867225807], [-77.36364436803946, 34.568638948867545], [-77.36354247898589, 34.5683342881041], [-77.36339419153121, 34.567935818934444], [-77.36306449604463, 34.567649627925555], [-77.36275490155707, 34.567582848979], [-77.36236985842488, 34.56723420995447], [-77.36220614404905, 34.56700034315662], [-77.36196744585466, 34.56661297537623], [-77.36155755980296, 34.566502064174955], [-77.36128404963799, 34.56642890077119], [-77.36117962351985, 34.566410810195705], [-77.361032522298, 34.56641914127975], [-77.3599643484863, 34.56634292215652], [-77.35960391886297, 34.566142469298526], [-77.35929331487522, 34.5654649569159], [-77.35881637054112, 34.56544098364149], [-77.35868964974837, 34.56535337316285], [-77.35803615649728, 34.565319066495945], [-77.35802852256205, 34.56531886256088], [-77.358017013686, 34.56532599384026], [-77.35738479200084, 34.56556012966276], [-77.35724038331556, 34.565730634014], [-77.35645363044893, 34.565538648115655], [-77.35645340185218, 34.56553778864245], [-77.35645257422944, 34.56553700290641], [-77.35645173979734, 34.56553802164283], [-77.35645092420346, 34.56553903766582], [-77.35566446656196, 34.56587488794374], [-77.35531339795332, 34.565702773333086], [-77.35518085497729, 34.56539420838946], [-77.35487703511356, 34.565031137531925], [-77.35444410588588, 34.56536154776631], [-77.35378442987762, 34.56540185307261], [-77.35330109425438, 34.56522788032673], [-77.35248518958475, 34.56523054909927], [-77.35137461904269, 34.56494949436663], [-77.35038306886455, 34.56471412461462], [-77.35014986798463, 34.56454777057941], [-77.34917762147468, 34.564237338921316], [-77.34794828956507, 34.564389978614585], [-77.34699818834814, 34.564611111259076], [-77.3464001556244, 34.56423372928792], [-77.34584650019475, 34.5636686417395], [-77.34542335689949, 34.56318075018815], [-77.3450063500599, 34.56254118567514], [-77.3439465809241, 34.56224376620815], [-77.3438488928096, 34.56131110563059], [-77.34377568402077, 34.560649571526284], [-77.3437575195942, 34.56057278103963], [-77.34378714319976, 34.56050134935405], [-77.34384952456334, 34.56042520557023], [-77.3439267426086, 34.56046518843544], [-77.34672731258436, 34.55985016255342], [-77.34700146078589, 34.5597600359977], [-77.34810801731939, 34.55774162864951], [-77.34857920116009, 34.556704481201166], [-77.34891976384418, 34.556433721200186], [-77.34923856289585, 34.555809939316454], [-77.34915805033502, 34.5554201496409], [-77.34907231403014, 34.555144318580105], [-77.34923602174429, 34.55491929030711], [-77.34880136737719, 34.55486659196139], [-77.34861818405687, 34.55479518966474], [-77.34849005035107, 34.554619407388444], [-77.34850617456995, 34.55453467069323], [-77.34846537429635, 34.55444016621236], [-77.34835240194896, 34.554311976780966], [-77.34834702783016, 34.554244898957975], [-77.34793201409788, 34.55418062265356], [-77.34784655013078, 34.55420235818898], [-77.34780732280285, 34.55417050376116], [-77.34777832833142, 34.554149759075585], [-77.34739089423938, 34.554002842298395], [-77.34727250977747, 34.55385968910666], [-77.34721555629085, 34.55374109252425], [-77.34713524573955, 34.553713543609064], [-77.34707416431307, 34.55364263919148], [-77.34695979848217, 34.553707512828474], [-77.34689055502935, 34.553787854214406], [-77.34667596363917, 34.553884161317775], [-77.34640650252456, 34.55393503304977], [-77.34628166314073, 34.55395632147133], [-77.34615808006467, 34.553970098998455], [-77.34600159717232, 34.55391575311846], [-77.34571110054968, 34.55382554727271], [-77.3455054165753, 34.55356460384333], [-77.34540778239018, 34.55351154589766], [-77.3454119755076, 34.553451047384065], [-77.3453525411643, 34.55327467383047], [-77.34526632969585, 34.5531966243626], [-77.3451603933579, 34.55308022259686], [-77.34513197577277, 34.55306158634341], [-77.34512746215759, 34.55306033070108], [-77.345124427002, 34.55305946201426], [-77.34495602037117, 34.55294868011718], [-77.34493090731712, 34.55293814670336], [-77.34485655133305, 34.55290325561573], [-77.3447639805107, 34.55286970815298], [-77.34474860019331, 34.55286424791889], [-77.34473636695719, 34.55286111370126], [-77.34467839796841, 34.5528456523751], [-77.34454077723936, 34.55282959301866], [-77.3444366497576, 34.55285889398677], [-77.34434366930812, 34.552863897134316], [-77.3442094530701, 34.55278942249727], [-77.34417271777139, 34.55270994801558], [-77.34415104217433, 34.552703955843306], [-77.34409612611638, 34.55268647288362], [-77.34405358008622, 34.55267378152121], [-77.34404034009417, 34.55267601021244], [-77.34395565743728, 34.55266357272051], [-77.34388851617881, 34.55262842269065], [-77.34381185336615, 34.55260751438444], [-77.34359467667227, 34.55254828321283], [-77.34357736206792, 34.55254356097103], [-77.34356591159202, 34.552538468352296], [-77.34349784659273, 34.55251949880521], [-77.34346838382079, 34.55251115629546], [-77.34345922221318, 34.55251226063614], [-77.34337025834913, 34.55250974574421], [-77.34327957510561, 34.55252749020243], [-77.34317335901909, 34.55253501665146], [-77.34286667185509, 34.55259850308873], [-77.34278071028176, 34.552535727445466], [-77.34241178754124, 34.5524877132516], [-77.34238906704564, 34.5524928861778], [-77.34236570113924, 34.5524947917899], [-77.3423522519984, 34.552482184482365], [-77.34189663703557, 34.55236694239408], [-77.34160514958562, 34.552434558865016], [-77.34141567003468, 34.552499692899445], [-77.34094562076795, 34.55260367264728], [-77.34081621269951, 34.55259347026187], [-77.3405075693975, 34.55245235914712], [-77.3404267536108, 34.55245614130746], [-77.34014940624468, 34.552380179622205], [-77.3400355758041, 34.55239320898269], [-77.33999266402643, 34.55235918131776], [-77.33995857490186, 34.55233683676279], [-77.33996397824448, 34.55228992767664], [-77.339857959163, 34.551978400679175], [-77.3397218829925, 34.551881241976545], [-77.33947268443411, 34.55178716417642], [-77.33946054018921, 34.55167401098921], [-77.33939440795695, 34.55160503858421], [-77.339379177109, 34.551563303766926], [-77.33927023603493, 34.55153167094505], [-77.33921762240071, 34.55149742964649], [-77.33917420713438, 34.55147037328279], [-77.33917350111204, 34.55147017939199], [-77.33914048558206, 34.55143511069189], [-77.3391254707798, 34.551424860126296], [-77.33910563805205, 34.55141903023915], [-77.33908776254925, 34.55141465838168], [-77.33907669322446, 34.55141184838975], [-77.33899749940294, 34.55142260296034], [-77.33889006740878, 34.55138882826232], [-77.3388809477047, 34.55138727091754], [-77.33883059024518, 34.5513973819217], [-77.33875306826896, 34.55145213774], [-77.33871998109123, 34.55153569772422], [-77.3387209826311, 34.55168492087309], [-77.33847957696594, 34.551765134727205], [-77.3382753412927, 34.5517275317783], [-77.33808656536343, 34.55178162625762], [-77.33783784484817, 34.551662557232554], [-77.33778975024882, 34.551612175142836], [-77.33769735691996, 34.551633798387506], [-77.33754330902657, 34.551608493560565], [-77.33730631311168, 34.55156530353993], [-77.33719058782356, 34.55158272426645], [-77.33714730310308, 34.55151704182188], [-77.33701014480239, 34.55147788078142], [-77.33691834070976, 34.55136419187714], [-77.33685709581849, 34.551352315874176], [-77.33679907976683, 34.55132229859237], [-77.33683517471933, 34.55126380206411], [-77.33671377757831, 34.55097805847531], [-77.33650798705699, 34.55087452236424], [-77.3361469259829, 34.55076664766685], [-77.33580619446083, 34.55069923437885], [-77.33562652793967, 34.55067546442592], [-77.33536365232436, 34.5506812873713], [-77.3351894105007, 34.55068310709946], [-77.33496937248503, 34.55075264969884], [-77.33485352187861, 34.55079598840473], [-77.33457447040095, 34.55085081783027], [-77.33446802622422, 34.55085673958061], [-77.33424157978693, 34.55091737358109], [-77.33418001392897, 34.550929725123254], [-77.33387650833488, 34.5507632552004], [-77.33382950636216, 34.55074640099142], [-77.33379371983018, 34.550656673386406], [-77.33337935025688, 34.550604231041035], [-77.33331898507336, 34.55035377832341], [-77.33329717496636, 34.55018373670807], [-77.33330691476702, 34.55011069818115], [-77.33311686793009, 34.549950580961415], [-77.33305256435365, 34.54990244981547], [-77.33303862111386, 34.549896648702784], [-77.33302624332607, 34.54989058832634], [-77.33300160705267, 34.549894470289836], [-77.33263356451828, 34.54989301051945], [-77.33232286491628, 34.54995536948365], [-77.33223908554405, 34.54997297847839], [-77.33216657256143, 34.54998477925855], [-77.33184495403685, 34.550037943726956], [-77.33165789564374, 34.55010294922133], [-77.3315475984756, 34.55018026884313], [-77.33144416910619, 34.5503893926051], [-77.33134032505862, 34.55057618651461], [-77.33074805781276, 34.550723369994074], [-77.33068241396359, 34.55075271943202], [-77.33065027139116, 34.55076160101828], [-77.33062240647335, 34.5507588465015], [-77.32987293725928, 34.55042079421545], [-77.32983626110796, 34.550388146368384], [-77.32983683562419, 34.55036472209512], [-77.32983118298775, 34.55033830394304], [-77.32954821136383, 34.54991657826621], [-77.32967269809538, 34.54976431523756], [-77.32979315780526, 34.54963655556129], [-77.32984722178256, 34.54960086787629], [-77.32979462334279, 34.549454366871736], [-77.32970719230767, 34.549404097285915], [-77.32950669176422, 34.54928593461395], [-77.32939858476017, 34.549271262811125], [-77.3293552397421, 34.54920987153893], [-77.32911773381365, 34.5491283999481], [-77.32899911010128, 34.549090757875916], [-77.32882792410258, 34.54904085051261], [-77.32872751557282, 34.54902511887049], [-77.3286594905006, 34.54902260701464], [-77.32847674354971, 34.549003196266256], [-77.32833591535223, 34.54898916013466], [-77.32833573257523, 34.54898914822383], [-77.32818141187238, 34.54898524129076], [-77.32807282757622, 34.548985393734114], [-77.32794258861813, 34.54901168717126], [-77.32780222394504, 34.549030705263014], [-77.32754947162438, 34.54903305373332], [-77.32740558152469, 34.5490004647991], [-77.32724247446808, 34.548971411887564], [-77.32716214555083, 34.54880559113526], [-77.32715238370848, 34.54879204032574], [-77.32710538857033, 34.54859246345209], [-77.32710259372406, 34.54851300254418], [-77.32709965620042, 34.548309989386745], [-77.32695735370501, 34.54822179628689], [-77.32678507851656, 34.54813751129398], [-77.32635763074303, 34.548192732712465], [-77.3259988766688, 34.54817915149579], [-77.325787475671, 34.548141307604894], [-77.32560601296862, 34.54818976775132], [-77.3254088278835, 34.54818514748318], [-77.32521344359783, 34.548187741897884], [-77.32506815826522, 34.54820268447037], [-77.32500864459071, 34.548120862312246], [-77.32489972949614, 34.54808875270445], [-77.32482417814666, 34.5480439269174], [-77.32468729060918, 34.54800810360402], [-77.32457641005921, 34.5479381609782], [-77.32443625780465, 34.547842452936095], [-77.32431711349876, 34.54780543747397], [-77.32415726496319, 34.54775357693593], [-77.32402324423045, 34.54754506440109], [-77.32402240941089, 34.547528142288655], [-77.32366150312288, 34.547393159551966], [-77.32360688902659, 34.547377321012675], [-77.32344835142278, 34.5473658164495], [-77.32326981093973, 34.54735366076535], [-77.32298131409674, 34.54736779658044], [-77.32287700740697, 34.54736181806726], [-77.32252796258112, 34.54722802943839], [-77.32214168519364, 34.54706393796763], [-77.32214583564237, 34.54703439975258], [-77.32219298428792, 34.54681175473575], [-77.32216217720003, 34.54678074032793], [-77.32210650195893, 34.54673095203597], [-77.32209500008192, 34.546710890723645], [-77.32207757504631, 34.546705930407626], [-77.3219777906279, 34.546678876705315], [-77.32177671614272, 34.546626750693726], [-77.32174036664199, 34.546617121231705], [-77.3217166704658, 34.54661188010129], [-77.32144561727485, 34.54659871562927], [-77.32132553454177, 34.54654872853102], [-77.3212459237044, 34.54650842744586], [-77.32102909113138, 34.54648935188479], [-77.32096150954649, 34.54648220572377], [-77.32093449216953, 34.54648159133719], [-77.32088915514727, 34.54648118049405], [-77.32054102608144, 34.5465182574768], [-77.32026692215595, 34.54652485935119], [-77.31990516110699, 34.54649885727427], [-77.31975610149175, 34.54650560423007], [-77.3196718316594, 34.54649227032334], [-77.31946725746579, 34.54646891830047], [-77.31936442435132, 34.546465675637656], [-77.31906204984368, 34.5464707874621], [-77.31897169055361, 34.54647096713965], [-77.31883034674809, 34.546472297890546], [-77.31874858697142, 34.546466527200074], [-77.31858033335516, 34.54641736698494], [-77.31849032190173, 34.54642052650111], [-77.31845007920907, 34.546370226989275], [-77.31841637708979, 34.546270695167664], [-77.31835691278118, 34.5461387986546], [-77.31832282976595, 34.546064592077315], [-77.31822566787929, 34.54591284030264], [-77.31819997516206, 34.54589338879779], [-77.3180725153277, 34.54577128691204], [-77.3178752272754, 34.54571836815267], [-77.3178116368519, 34.545710834912576], [-77.31776699977775, 34.545706010472465], [-77.31752180613742, 34.545705131313824], [-77.31742687163268, 34.545660365540854], [-77.31742023128923, 34.54565947440614], [-77.31741520637993, 34.545658899463106], [-77.31732236599154, 34.54564723131281], [-77.31725452438604, 34.545665948489514], [-77.31722367504868, 34.54567028174735], [-77.31720397600947, 34.545680244126444], [-77.3171727897881, 34.54572775293945], [-77.3171380374919, 34.545824259048274], [-77.3171183690346, 34.545886987235846], [-77.3170211614671, 34.54593570968971], [-77.3169183390026, 34.546038004388926], [-77.31664088366831, 34.54614047917936], [-77.31662986655142, 34.54614594832426], [-77.31662360920971, 34.54614698024653], [-77.31661404733688, 34.546150248383185], [-77.31636270016072, 34.54626426844076], [-77.31630522668364, 34.54631109569121], [-77.31626381411466, 34.54634032687146], [-77.3162255436201, 34.546380093466965], [-77.31618173907194, 34.54642457262355], [-77.31613795301011, 34.54645752649337], [-77.31601842012772, 34.54659346910294], [-77.31601572715552, 34.54659748708235], [-77.31599906395319, 34.54661526285815], [-77.3158836057056, 34.54673886863705], [-77.31585952840368, 34.546764521830866], [-77.315823007983, 34.546804049926706], [-77.31575106200387, 34.54688031067117], [-77.31570887532959, 34.54693958708714], [-77.31563846003667, 34.54701888828028], [-77.31554609500633, 34.54710874623211], [-77.3154199460131, 34.54725031092316], [-77.31537538040891, 34.54727404123756], [-77.315364862138, 34.54730299381811], [-77.31529605291887, 34.54738811626131], [-77.3152485256769, 34.54746069748382], [-77.31521841500987, 34.5474733737318], [-77.31511771507081, 34.547583299657376], [-77.31507820014623, 34.54762618229518], [-77.31501698193671, 34.547692209454546], [-77.31498707332045, 34.5477244674437], [-77.31492179586172, 34.54779844721159], [-77.31485940214284, 34.54786520826083], [-77.31476521348966, 34.547970625592164], [-77.31461433880146, 34.548120226204425], [-77.3145754608451, 34.54815079692921], [-77.31445700176428, 34.548317394783346], [-77.31436088618571, 34.5484264227117], [-77.31428385032629, 34.54848150406552], [-77.3142114427544, 34.54855886250198], [-77.31409578476553, 34.54863834942779], [-77.31404557032792, 34.5487165153737], [-77.31395496920544, 34.548818207557595], [-77.3138099015968, 34.548939501692175], [-77.31375700993638, 34.54897023463426], [-77.31374102916868, 34.54900505975136], [-77.31358957656018, 34.54913712914437], [-77.31340930549153, 34.5492796639796], [-77.31338852959513, 34.54928765258889], [-77.3133878097385, 34.54930059344358], [-77.31324764312168, 34.54941947797994], [-77.31321455042202, 34.549447878684425], [-77.31321174135076, 34.549449991082746], [-77.31320893421633, 34.54945281624289], [-77.31307674704041, 34.54959007211694], [-77.31306562280803, 34.54962726689833], [-77.3130064858851, 34.54971453263014], [-77.31293951534829, 34.54981428907512], [-77.31290882110795, 34.549858995717486], [-77.3128422443045, 34.55001535565437], [-77.31260158581458, 34.55023795114083], [-77.31250355856498, 34.550347286177995], [-77.31243005969921, 34.55041736254988], [-77.31219396237397, 34.55069338508589], [-77.31217901400026, 34.55070998724408], [-77.31194642957509, 34.55097642651562], [-77.3118924253663, 34.55104340944436], [-77.31179514730907, 34.551140839240084], [-77.3116769674914, 34.551259927093135], [-77.3115902629845, 34.55139312962106], [-77.311173721847, 34.55157699353285], [-77.31112077288381, 34.55166135441111], [-77.31099763319003, 34.55166268498415], [-77.31089613960819, 34.551679878668125], [-77.31075316775002, 34.55173075750959], [-77.31060156049895, 34.55180907567879], [-77.31050007445205, 34.551855932828374], [-77.31020377297354, 34.552028450563284], [-77.31001247082395, 34.55211533430267], [-77.30965696595102, 34.55228437764755], [-77.30952914985298, 34.55237682146036], [-77.3094095503013, 34.55240933936545], [-77.3090744983886, 34.55257448339945], [-77.30899369579079, 34.55261291633958], [-77.308614700622, 34.55281659391447], [-77.30851006908455, 34.552874253596116], [-77.30834460160196, 34.55296239891683], [-77.30802362072977, 34.553134216308514], [-77.3078183446747, 34.553287591794636], [-77.30757168402207, 34.553410987849325], [-77.30702509397025, 34.55362613211613], [-77.30700676638926, 34.55363273028638], [-77.30688055042474, 34.553662177418076], [-77.30633271254476, 34.55380131215721], [-77.30623457760558, 34.5538481414866], [-77.30591982263928, 34.55399417741426], [-77.30544035611877, 34.554227406814135], [-77.30525438740145, 34.554269879550475], [-77.30490155164819, 34.55428136803179], [-77.30465259440317, 34.55433195038222], [-77.30450267018556, 34.55440062679548], [-77.30436384476491, 34.55451301673608], [-77.30431110336968, 34.55455576864665], [-77.30425254731901, 34.55464606427246], [-77.30417571872707, 34.55473827678716], [-77.30385203010306, 34.55498001156009], [-77.30374542388918, 34.55502558804558], [-77.3034406192594, 34.55513512695262], [-77.30315702980877, 34.55523588771245], [-77.30305936153744, 34.55529240652653], [-77.3026630049614, 34.555492155052185], [-77.30266199514928, 34.55549230276248], [-77.3026598815259, 34.555493279278075], [-77.3022645063976, 34.5556973067994], [-77.30213834917424, 34.55573350068346], [-77.30186836900361, 34.55584490079927], [-77.30181861540403, 34.555857503914325], [-77.30152894163575, 34.55593356143406], [-77.30147325039708, 34.5559492237897], [-77.3013497760758, 34.55600099907238], [-77.30096471613032, 34.55615563005392], [-77.3006805189801, 34.55626347187693], [-77.3004226088992, 34.556388472314225], [-77.30028366142481, 34.55644134266915], [-77.29991508528927, 34.55662024910439], [-77.29989581271076, 34.556628772649105], [-77.29988645060834, 34.55663410869812], [-77.2998618187905, 34.55664311586063], [-77.2993474491061, 34.55685856547665], [-77.29909207677257, 34.557017373175626], [-77.29883519333525, 34.557105947522246], [-77.2986968154413, 34.55712733153018], [-77.29843952854395, 34.55723556693431], [-77.29830009312472, 34.55729910551335], [-77.29825413940864, 34.55731981415457], [-77.29814428063105, 34.55736391941053], [-77.29797588911124, 34.55743272755436], [-77.29790343595795, 34.557468048715904], [-77.2977089337628, 34.557551142938664], [-77.29750705733264, 34.557625130561505], [-77.29742882989576, 34.55766315314858], [-77.29728357640218, 34.55773220058093], [-77.29716902730064, 34.55778505290542], [-77.29710970697523, 34.557823267950525], [-77.2969298128849, 34.557894058867575], [-77.29671306752614, 34.55799124358106], [-77.29662399000873, 34.55801646221437], [-77.29647883971558, 34.558092446407166], [-77.29631602604127, 34.55817615496504], [-77.2961210653105, 34.5582683867264], [-77.29592021697529, 34.558308865300525], [-77.29555825868665, 34.55846930302935], [-77.2955365027233, 34.55848053932734], [-77.29552338682157, 34.55848469526918], [-77.29548845384724, 34.55850085583628], [-77.29527427343967, 34.55860125564857], [-77.29516004945178, 34.55874903906156], [-77.29514383826296, 34.55877355109205], [-77.29514327391433, 34.55878590401101], [-77.29512258029703, 34.55882855907802], [-77.29504980793888, 34.558988837912246], [-77.29492223453443, 34.559050140933564], [-77.29479168949524, 34.559111557050514], [-77.29458271529288, 34.559185338695954], [-77.2943269738691, 34.559262024961654], [-77.29422445583472, 34.559214832414526], [-77.29402341951001, 34.55923420873923], [-77.2939345982009, 34.559249299649], [-77.29377878414353, 34.55933654693388], [-77.2937572887817, 34.55935302359367], [-77.29357732209411, 34.55946262525273], [-77.2935362597161, 34.559488463792604], [-77.29353134158622, 34.5594914152568], [-77.2935242537217, 34.559495454304766], [-77.29329256917391, 34.55962355850785], [-77.29313857855412, 34.559699766855374], [-77.2930449423846, 34.559751387924436], [-77.2929022767706, 34.559829460992376], [-77.29274063312248, 34.559922140969064], [-77.2925677445131, 34.56001584299103], [-77.2923433808267, 34.56011515963117], [-77.29230282849937, 34.56013524910536], [-77.29223489878285, 34.56016997509324], [-77.29205738430093, 34.560264141492794], [-77.29194567930554, 34.56032705922178], [-77.29161077666014, 34.560504281894715], [-77.29157380131622, 34.56052548531004], [-77.29154787190714, 34.560543338656274], [-77.29143420574272, 34.560599631824516], [-77.29132895078621, 34.56065466671205], [-77.29115036554042, 34.560746826617], [-77.29106578368756, 34.560774923886186], [-77.29094251658364, 34.560844913784145], [-77.29059511215118, 34.561042557509246], [-77.29035442181464, 34.561192813904356], [-77.28990901877236, 34.56142614186163], [-77.28953281794992, 34.561597152761955], [-77.28902451175703, 34.561807874427664], [-77.28871194648383, 34.56197027730896], [-77.28842181629761, 34.562108316042746], [-77.28789160520972, 34.56232074367307], [-77.2877631537843, 34.56235578140924], [-77.28710712447565, 34.56264177583454], [-77.28707164981604, 34.5626546561932], [-77.28704703955373, 34.56266655102247], [-77.2868547207239, 34.562752047831], [-77.28631423277344, 34.562995705249975], [-77.2862508238484, 34.56302492016733], [-77.28617225994934, 34.563060587100075], [-77.28560095325884, 34.563303329679044], [-77.28543028360612, 34.56338284157018], [-77.28520956489474, 34.56347720746997], [-77.28502032277001, 34.56354867560583], [-77.28489467220231, 34.56360323246941], [-77.28461028623914, 34.563717620807964], [-77.28420072283365, 34.56389019850783], [-77.28419958934619, 34.56389078622715], [-77.2841961431655, 34.56389224505827], [-77.28378969885301, 34.56407691172216], [-77.28348888794362, 34.564195540092626], [-77.2833797585023, 34.564241589127846], [-77.28322722405018, 34.564305957204034], [-77.28306804152605, 34.564370768559115], [-77.28288894520922, 34.56445162166949], [-77.2828246983306, 34.56448293239447], [-77.28277210712662, 34.56450588399798], [-77.28257214129282, 34.56458690316482], [-77.2823386211886, 34.56470676154118], [-77.28233725262851, 34.56470740055905], [-77.28212699840557, 34.564848173047736], [-77.28170710700412, 34.565122504780696], [-77.28170010837766, 34.56512567550145], [-77.28169492521802, 34.565128286304486], [-77.28168718636813, 34.56513522400089], [-77.28138891722159, 34.56533991829167], [-77.28129127302442, 34.5654192335449], [-77.28109241400148, 34.56555229578087], [-77.28090138318271, 34.56572964042449], [-77.28087633072411, 34.565770989795894], [-77.2808161172177, 34.56582913538883], [-77.28063709968373, 34.56598786491399], [-77.28054213704823, 34.56606729833484], [-77.28039866148357, 34.566204802101545], [-77.28024599686213, 34.56634577555231], [-77.28018507366339, 34.56640689919843], [-77.28016372857147, 34.566422014252936], [-77.28013793990249, 34.566450744630444], [-77.2799171901375, 34.56663831439853], [-77.27980052922322, 34.56672206388636], [-77.27973028779289, 34.566787242289266], [-77.27965915260347, 34.566853711216204], [-77.27961937150795, 34.56688953037035], [-77.27949439379447, 34.56699900753217], [-77.27942096522935, 34.56704165886079], [-77.27940687678165, 34.56706956004753], [-77.27935329539287, 34.56711224697453], [-77.27913699340341, 34.56728402537644], [-77.27904303122025, 34.567362704959976], [-77.2789202406265, 34.567458259852536], [-77.27886849338284, 34.567498599169284], [-77.27884591326197, 34.56751598025668], [-77.27878981902796, 34.56755918955129], [-77.27863650804218, 34.56765832913561], [-77.27859999499248, 34.56771317240921], [-77.27849980371641, 34.567799540915345], [-77.27835394906725, 34.56792950904034], [-77.27829934936629, 34.56801563802354], [-77.27810898723446, 34.56814593062429], [-77.27805140948676, 34.568186272980284], [-77.27787836115832, 34.56829840204644], [-77.27759553496173, 34.568505852703765], [-77.27750263228741, 34.56856962557525], [-77.27747232342587, 34.56859446236243], [-77.27737748458335, 34.56868578520171], [-77.27708113064725, 34.568903724937826], [-77.2770183879197, 34.56900291178496], [-77.27691308622953, 34.569129028959985], [-77.2767628163515, 34.56927779822357], [-77.27661232841601, 34.569442339620586], [-77.27654151625632, 34.569505777422066], [-77.27638985589545, 34.56960327766392], [-77.27623347541797, 34.56975113454677], [-77.27608053903234, 34.56987188770905], [-77.27601749074844, 34.56992928802153], [-77.27584295122992, 34.57005397612745], [-77.27559279613982, 34.57020876416215], [-77.27548202956325, 34.570296191258], [-77.27518488462853, 34.570503166805985], [-77.27517914141194, 34.570508057426764], [-77.2751614906798, 34.570520261460466], [-77.27489520220729, 34.570721410951634], [-77.27479913610392, 34.57081727958285], [-77.2747321821257, 34.57094426685096], [-77.27451024706855, 34.571131719612865], [-77.27447823049447, 34.57115997677341], [-77.27446019515313, 34.571173019978225], [-77.2744218919966, 34.57119763408308], [-77.27419866975501, 34.571373673633474], [-77.27406697896492, 34.57148049490405], [-77.27397479293039, 34.57159174607777], [-77.27375247419198, 34.5717830870456], [-77.27372922256174, 34.57180811352658], [-77.27370904469085, 34.57181934790812], [-77.27367124866856, 34.57184875880442], [-77.27346013924515, 34.57202263255516], [-77.27331906049557, 34.57212969995998], [-77.27316800707305, 34.57223533979343], [-77.27299590436365, 34.57235094545763], [-77.27290864386741, 34.572421883294794], [-77.2728801827196, 34.57244838510655], [-77.27284888763552, 34.572489079633904], [-77.27273777934371, 34.57259851747668], [-77.27262246789783, 34.57266379626318], [-77.2725157658339, 34.572729664894375], [-77.27232867376968, 34.57283706737235], [-77.27228276648744, 34.57285104276073], [-77.27226515544757, 34.572871379089236], [-77.27222680744052, 34.57290587366365], [-77.27209257067969, 34.57301048654289], [-77.27201179675002, 34.57308713160567], [-77.27190852429948, 34.57317539950746], [-77.27188844120994, 34.57319526918694], [-77.27184702112987, 34.57323188273639], [-77.2717896818802, 34.573305339733324], [-77.2717243502386, 34.573340199274874], [-77.27160531054194, 34.57343417248723], [-77.27152823391205, 34.57349437901224], [-77.27148835009994, 34.57351732087225], [-77.27142974453164, 34.57357193585549], [-77.27133688399903, 34.573652797945705], [-77.27124918245886, 34.57372173411753], [-77.27123656011338, 34.57373319576737], [-77.27114919510858, 34.5738144730752], [-77.27105413588399, 34.57389637516039], [-77.27103175898695, 34.573952763725146], [-77.27096601452214, 34.57398015791394], [-77.27087858930074, 34.57403789365756], [-77.27085495364238, 34.57405669899994], [-77.27076493907342, 34.57412992883508], [-77.27071761723104, 34.57416373646415], [-77.27059888166325, 34.57431084229397], [-77.270484550876, 34.57438108194857], [-77.27037606822975, 34.57444128199908], [-77.27017794622844, 34.574592068016194], [-77.27017782810866, 34.574592637007974], [-77.27017713746419, 34.57459296136332], [-77.27017619784532, 34.57459348044246], [-77.26998989738163, 34.57475503779891], [-77.26993016383068, 34.57480883404129], [-77.26979643068007, 34.574911577229415], [-77.26977807777071, 34.57492558895339], [-77.26965136535273, 34.57502258330564], [-77.26959866492173, 34.57506429360984], [-77.26946059947882, 34.57517515939237], [-77.26940405576167, 34.57521981770178], [-77.2693749760144, 34.57523652135478], [-77.26933650648604, 34.575274730852655], [-77.26921398896808, 34.57537938178848], [-77.26912726833788, 34.57545271385077], [-77.26901486865599, 34.57553089464943], [-77.26890522014435, 34.57562001688968], [-77.26884718376208, 34.57566636066805], [-77.26882681141223, 34.575692246671636], [-77.26874729407807, 34.57575228098302], [-77.26863399006923, 34.57584936215437], [-77.26859715513575, 34.57588236992303], [-77.26852829507266, 34.575944935102704], [-77.2684561088053, 34.5760197648557], [-77.26837384533658, 34.57610047961944], [-77.26824791653631, 34.576163211060035], [-77.26805328961234, 34.57630659407639], [-77.26804825525419, 34.576310547190424], [-77.26804696734541, 34.57631309925177], [-77.2680398952165, 34.576317700717304], [-77.26786025458046, 34.57647564877293], [-77.2677972056263, 34.57652647490516], [-77.26765961968925, 34.57663777995506], [-77.26758100730962, 34.57674514279494], [-77.26747845517622, 34.57679330180129], [-77.26730728414616, 34.576932946764174], [-77.26728569189899, 34.57695047155821], [-77.26727492484696, 34.5769567426897], [-77.2672590290441, 34.57697155677011], [-77.26714133372766, 34.57706407179057], [-77.26709173854364, 34.57710658317069], [-77.2670060973475, 34.57717127144094], [-77.26699127492823, 34.57718153807847], [-77.26695920557387, 34.5772045226924], [-77.26688845258987, 34.5772543952315], [-77.26678174296087, 34.577334061122656], [-77.26671827745947, 34.577384306214306], [-77.26669395052961, 34.57741001961166], [-77.26661362482848, 34.57747115451979], [-77.26650044919775, 34.5775665343515], [-77.26646271192377, 34.57759987688437], [-77.26632626243537, 34.57774022684506], [-77.26623375686134, 34.57781753986336], [-77.26612419283158, 34.57788912227937], [-77.26608720030204, 34.57792384864215], [-77.26601994163791, 34.57798684980239], [-77.26600769591323, 34.57803543025338], [-77.26595024078978, 34.5780630245409], [-77.26585715388413, 34.57813352483387], [-77.26575669414558, 34.578219500496346], [-77.2657167061736, 34.57824821403385], [-77.26557745269278, 34.5783886991332], [-77.26547945851362, 34.5784652238422], [-77.26528867961942, 34.57862818998812], [-77.26525111572735, 34.578682933794965], [-77.26519461949344, 34.57870544191502], [-77.26510714037553, 34.57878310065858], [-77.26501046597976, 34.578870273311324], [-77.26498278113307, 34.57889749808087], [-77.26494332740592, 34.57894126130415], [-77.26487778944022, 34.579007074779334], [-77.26483772347592, 34.5790452536998], [-77.264759318588, 34.57911559108828], [-77.26458130017609, 34.57926057633759], [-77.26453058611057, 34.5793332694228], [-77.26446317781766, 34.579369370017474], [-77.26432728073866, 34.579491654153045], [-77.26427951156347, 34.57953463637997], [-77.2642560092796, 34.5795473416355], [-77.26408646012366, 34.57969155591476], [-77.26402992979382, 34.57976522785569], [-77.26388216752956, 34.579889866005814], [-77.26380059823829, 34.57998285809215], [-77.26372284540156, 34.58002539721555], [-77.26356983734784, 34.5801558620722], [-77.26353482256756, 34.58018679050014], [-77.26351780494198, 34.58019628283165], [-77.26333352059868, 34.58033637366374], [-77.26326781829651, 34.58041228749321], [-77.26310514472269, 34.58054832219159], [-77.26301416216215, 34.58062800328858], [-77.26298236483551, 34.58068129873239], [-77.26283523375373, 34.58077489079893], [-77.26277491359095, 34.58082541434548], [-77.26274098226322, 34.58084218286108], [-77.26258111145586, 34.58098166920911], [-77.2625400680379, 34.58106204681086], [-77.26243435788328, 34.58116697920098], [-77.26232306879308, 34.58128064522951], [-77.26227056670689, 34.58136271637291], [-77.2620868274368, 34.58149772972234], [-77.26202176980607, 34.581549785329265], [-77.26188096649585, 34.581673454385125], [-77.2618308662284, 34.58171326231577], [-77.26173007031893, 34.58179817637898], [-77.26157689040451, 34.58192895075849], [-77.26151402459507, 34.58200434559798], [-77.26132187830358, 34.582144557454406], [-77.2612858291504, 34.58217140177779], [-77.26111713725777, 34.582308605402616], [-77.26105359948666, 34.58235911972683], [-77.26091577096028, 34.58247056796556], [-77.26078842594308, 34.58257392600812], [-77.26073697708424, 34.58262774340377], [-77.26055295618055, 34.58279106844462], [-77.2603459725702, 34.582937238025096], [-77.26028003054546, 34.583005264499306], [-77.26013432493234, 34.58313064565087], [-77.26003065401716, 34.58322131255653], [-77.25998702922723, 34.58327524954989], [-77.25982418438934, 34.58339432287631], [-77.25958068219569, 34.58357110134088], [-77.25950949893732, 34.58365164472033], [-77.25935668594009, 34.58378928837805], [-77.25926855817261, 34.58386835547057], [-77.25923260811359, 34.583918783255726], [-77.25903746685933, 34.58408584035624], [-77.25883159950487, 34.58421938597442], [-77.25856741795192, 34.58445227696522], [-77.25848823463457, 34.58451396053057], [-77.25846391977652, 34.58454963354762], [-77.25835233680351, 34.58463731042728], [-77.25827319829463, 34.58470863733424], [-77.25824407049447, 34.58473041614171], [-77.25807608204158, 34.584861953507115], [-77.25799475985792, 34.58494646628095], [-77.25783531385325, 34.585093849214715], [-77.25775588326297, 34.585163337364385], [-77.25773241220077, 34.58521355907173], [-77.25759493273156, 34.58530122068179], [-77.25749332864143, 34.585378344572234], [-77.25733377419132, 34.585516276083254], [-77.25706096843713, 34.58575123152636], [-77.2569948002164, 34.58581044974864], [-77.25697073294029, 34.5858506554382], [-77.25681436888777, 34.58601087581046], [-77.25662958205893, 34.5862045062334], [-77.25657340631976, 34.58624862465525], [-77.25637389444128, 34.58637592474668], [-77.25621144389724, 34.58648988372411], [-77.25614837369739, 34.58649407159341], [-77.25594185840771, 34.58653770544125], [-77.25567866750623, 34.58658931530163], [-77.25555521443118, 34.586563493912344], [-77.2554595063305, 34.58663228781145], [-77.25513479769097, 34.58683991299272], [-77.25513071001427, 34.58684207720046], [-77.25513016319742, 34.586842724294904], [-77.25502619663104, 34.58706952062251], [-77.25512893932851, 34.58720950987283], [-77.25502277296948, 34.587404498635166], [-77.25480686618394, 34.58752359761865], [-77.25471801129277, 34.58773078193095], [-77.2545939009641, 34.587978175553054], [-77.25435767341352, 34.58812751844071], [-77.25415501085949, 34.588308994373165], [-77.25409485309183, 34.588410231932656], [-77.25406797966434, 34.58852714909142], [-77.2538747387965, 34.58878133912549], [-77.25384611510214, 34.58886199270131], [-77.25379194627347, 34.58893893140363], [-77.25364944630329, 34.58893350989217], [-77.25325399477708, 34.58911775274099], [-77.25304992901721, 34.58927065178683], [-77.2528179884243, 34.58938724976001], [-77.25266741781306, 34.589476207254876], [-77.2525913008502, 34.58951427447407], [-77.25245814893145, 34.58962166229793], [-77.25239877603599, 34.58967168575015], [-77.25237810709432, 34.589689099819395], [-77.25233863068384, 34.58972388930915], [-77.25213364919125, 34.5899055234228], [-77.2520282219057, 34.58999940250892], [-77.25190844436139, 34.59012346234959], [-77.25168265844917, 34.59033688846004], [-77.2516774502547, 34.590344717210264], [-77.25152009214553, 34.59056422691959], [-77.2512994232619, 34.590665790152855], [-77.2509664856956, 34.590903289509676], [-77.25088532919132, 34.59095478426783], [-77.25084047942467, 34.590982055004574], [-77.25078371339201, 34.59104084722924], [-77.25054117537107, 34.59130598970262], [-77.25040451681694, 34.59141906734249], [-77.25016650569665, 34.591630053991864], [-77.25015994967335, 34.59163548023793], [-77.25014256211718, 34.591648281959706], [-77.24990069206042, 34.59185073464795], [-77.24976216571321, 34.59192772803164], [-77.24950538165879, 34.59212442807018], [-77.24936440820807, 34.5922312587794], [-77.2492808547207, 34.59227326340547], [-77.2489652132874, 34.592533511317775], [-77.24885152958956, 34.59271079487298], [-77.248483419544, 34.59300420446493], [-77.2483688126258, 34.59314412022843], [-77.24823522228974, 34.59319886390246], [-77.24804247325049, 34.5933490312152], [-77.24784855759427, 34.59351226739291], [-77.2477705911631, 34.593568346070576], [-77.24751879447408, 34.593732709090794], [-77.24742720107098, 34.593794813994776], [-77.24719463426244, 34.59399432271401], [-77.24705979719425, 34.59412535271041], [-77.24689029867365, 34.594335373769006], [-77.24688112485788, 34.59444097314673], [-77.2467688536997, 34.59452390530334], [-77.2464668666278, 34.59479618835513], [-77.24640572331901, 34.5948582490804], [-77.24638678968577, 34.594873378026065], [-77.24632981038633, 34.59491257514696], [-77.24599505922508, 34.595150312247654], [-77.24580136461778, 34.595298604519414], [-77.24578617653981, 34.595308105592544], [-77.24559371597786, 34.5954506679414], [-77.24551407116714, 34.595511643750186], [-77.24530108926774, 34.595665039919425], [-77.24523351758175, 34.59572521370868], [-77.2451878672062, 34.59574701742492], [-77.24511765308813, 34.59579596622096], [-77.24491415448537, 34.59593572522113], [-77.2447798072553, 34.59604140090095], [-77.24463533601401, 34.59614943030504], [-77.24436645743167, 34.59633108060369], [-77.24424832179663, 34.59642649035476], [-77.24411286011622, 34.59657961108715], [-77.24408375089484, 34.59673697241436], [-77.24382771314146, 34.596951311957646], [-77.24375685551475, 34.597022907651876], [-77.2437180161926, 34.597069009970184], [-77.24362332630133, 34.59708233229439], [-77.24322785968955, 34.59745257131148], [-77.24302410443173, 34.597766498479324], [-77.24275976607652, 34.59788703285296], [-77.2425475572218, 34.59799996974083], [-77.24222104220851, 34.59828744010967], [-77.24222606934634, 34.598316323586005], [-77.24220226311616, 34.59835019635447], [-77.24212505268905, 34.598376387208475], [-77.24143944067461, 34.598725676743996], [-77.241196027317, 34.59876987024799], [-77.24093425092008, 34.59906299728941], [-77.24086006012269, 34.5991283982424], [-77.24084275549436, 34.599149998412976], [-77.24082306984738, 34.59917803971601], [-77.24063412909088, 34.5993692296917], [-77.24051604809824, 34.59947977127243], [-77.24034844826771, 34.599582386590185], [-77.24026070162324, 34.59975589118503], [-77.24021012877279, 34.59980715989623], [-77.24017991588624, 34.59983815589646], [-77.23997311779601, 34.600024152503885], [-77.23981928792213, 34.60017475145965], [-77.23963567895237, 34.60035718539717], [-77.23956515183963, 34.600463345296646], [-77.23921440741915, 34.60079450297149], [-77.23913073555632, 34.60087703978748], [-77.23910280808343, 34.60089825053774], [-77.23906109478715, 34.6009395975], [-77.23868094533904, 34.601336345215785], [-77.238423459642, 34.60156267766497], [-77.23806507518687, 34.601759144047335], [-77.23795942408617, 34.601807293630266], [-77.23781255823513, 34.60189779965657], [-77.237542041144, 34.60209341064756], [-77.23743532056486, 34.602180845557456], [-77.23713466114584, 34.6023884277053], [-77.23712146551742, 34.60240020768823], [-77.23687477637094, 34.60260800219249], [-77.23676697554431, 34.60271875717666], [-77.23651607083097, 34.60299412643955], [-77.23652352139567, 34.60305165913751], [-77.23643849807503, 34.60308396774822], [-77.23631316667544, 34.60319364813192], [-77.2359895992214, 34.60334205324075], [-77.2359435718363, 34.60347728199228], [-77.23581896992344, 34.60362235416703], [-77.23554787622194, 34.60391743278602], [-77.23537228742643, 34.60410774860228], [-77.2349844476451, 34.604344355683104], [-77.23492861828784, 34.60437049256655], [-77.23485858637666, 34.60440089368587], [-77.23440760932918, 34.60456443351789], [-77.23431211492573, 34.604762686947836], [-77.23410087892128, 34.604949001150324], [-77.23397966838614, 34.60504533325572], [-77.23382054498231, 34.60519527279268], [-77.2337123661564, 34.6052608150364], [-77.23351947779256, 34.605380014359625], [-77.2332838576339, 34.60553704965141], [-77.23316433749596, 34.605614871317634], [-77.23285531680796, 34.60581325691438], [-77.23284770987195, 34.60582557528746], [-77.23282652834655, 34.605844165117915], [-77.23261468262275, 34.60604287233101], [-77.23250402806909, 34.606158190093566], [-77.23215881532423, 34.6064016206025], [-77.23200456566572, 34.606371305548414], [-77.23199662398497, 34.60646547498393], [-77.23199808943734, 34.60652149390802], [-77.23163086943481, 34.60690797870547], [-77.23157316750759, 34.60704784395139], [-77.23151387705988, 34.607134428336764], [-77.23147664722272, 34.60721656236972], [-77.23135008854584, 34.60735718534854], [-77.23079608137016, 34.60770594434123], [-77.23073909225953, 34.60778034108078], [-77.23065630532035, 34.607801677134894], [-77.23058886546991, 34.60783639084091], [-77.2303756260699, 34.60798734472968], [-77.23025430189612, 34.60810150236412], [-77.2300560650911, 34.608197810800974], [-77.22990414627314, 34.60844745419727], [-77.22977236045078, 34.60864678457198], [-77.22955179455948, 34.60879145574886], [-77.22947986142331, 34.60893309972037], [-77.22945666654041, 34.60909323406487], [-77.2292849842151, 34.609211559339116], [-77.22896066063731, 34.60938605445833], [-77.2288429097215, 34.609475742046264], [-77.22881189193808, 34.609513717772266], [-77.22876879993981, 34.6095664760183], [-77.22858681020053, 34.60973163643243], [-77.22850609550682, 34.60983357039735], [-77.22835960064671, 34.60994938649126], [-77.22807859682382, 34.61011072304116], [-77.22782246696724, 34.610287856454924], [-77.22771135386802, 34.61036959174309], [-77.22766741777974, 34.61040239578244], [-77.22753595871683, 34.61053380731131], [-77.22744678251652, 34.610584392709754], [-77.22725514699611, 34.61069309816012], [-77.22703374789427, 34.6106927784346], [-77.22689860796613, 34.610776811661324], [-77.22690397010716, 34.610815130170906], [-77.22691864771366, 34.610920016065585], [-77.2270448396728, 34.610946115510146], [-77.22692524378053, 34.61105708161817], [-77.22671934493843, 34.611234022990715], [-77.22618691124616, 34.61153210961453], [-77.22597222816282, 34.61152419397702], [-77.22598296030444, 34.611647265014675], [-77.22595778525432, 34.61172011084808], [-77.22578251110345, 34.61201290197718], [-77.22569503972204, 34.6120959001332], [-77.22554607192978, 34.61224147692196], [-77.22542823356363, 34.61235520689645], [-77.22522536549434, 34.61253018897372], [-77.22504555774759, 34.61267224799256], [-77.22464255614098, 34.61294679731156], [-77.22463162545097, 34.61295468428234], [-77.22462738633459, 34.61295771117153], [-77.22461601628723, 34.61296828282183], [-77.22410251405907, 34.61338427783762], [-77.22385237172904, 34.613583202554175], [-77.22356267640833, 34.61381302367349], [-77.22318775217335, 34.61412278053615], [-77.22307967096896, 34.614210760577784], [-77.2230209470174, 34.61424161851433], [-77.22286900885486, 34.61434487759779], [-77.22265506271891, 34.614490503327644], [-77.2225712328297, 34.61450731369863], [-77.22240503946165, 34.61451841064586], [-77.2221281546329, 34.61454947530771], [-77.2220373648737, 34.61459845459119], [-77.2219831458547, 34.614631045271445], [-77.221815129011, 34.61472949038515], [-77.22177578688013, 34.61475375899605], [-77.22166052474508, 34.614841253528716], [-77.22165874089904, 34.614919111520194], [-77.22165538233395, 34.61507652830973], [-77.22172533089886, 34.61513998494298], [-77.22159709447362, 34.61552178792342], [-77.22156915493063, 34.61554108277352], [-77.2214993876519, 34.61559184379204], [-77.22126374487479, 34.615752649415924], [-77.22118100283524, 34.61580911350126], [-77.22096749541947, 34.615964938272235], [-77.22077454287495, 34.616105009851864], [-77.22054323717605, 34.61631679459339], [-77.22044014687017, 34.61639466058172], [-77.2204032171166, 34.616432167093116], [-77.22030819230352, 34.61647695555152], [-77.22011076760688, 34.616604332245345], [-77.21996647471946, 34.616701123281466], [-77.21981114505006, 34.616816353151535], [-77.21976553727879, 34.61685111325776], [-77.21965160519143, 34.61694049674069], [-77.21956124299773, 34.61699811660344], [-77.21953409228982, 34.617030155869436], [-77.2194588926035, 34.61708967396654], [-77.21933760710962, 34.617250320292285], [-77.21918196388951, 34.61731820171238], [-77.21893236498084, 34.61752767684933], [-77.21879602757356, 34.61763236541684], [-77.21874298604429, 34.61767472430559], [-77.21866816859313, 34.6177527331521], [-77.21844399733112, 34.61797669772114], [-77.21831965107276, 34.6181126534792], [-77.2181253340188, 34.61832308333243], [-77.21811625904273, 34.61834264534632], [-77.21808986416892, 34.61835810341456], [-77.2178945995127, 34.61855044712421], [-77.21775957782171, 34.618682842715806], [-77.21750902574041, 34.61892090352602], [-77.21755413063903, 34.618994919685136], [-77.21742341471588, 34.61904129773546], [-77.21727003617059, 34.61914374530144], [-77.21719928660781, 34.61920257460776], [-77.21702778841134, 34.61934684761366], [-77.21693832390815, 34.61941764352847], [-77.21681778299072, 34.619546738866006], [-77.21672525941568, 34.619636496360584], [-77.21668343234758, 34.61969801628855], [-77.21647192801088, 34.61985216725681], [-77.21627984790022, 34.61999648844921], [-77.21602988954157, 34.62020870747173], [-77.21594887222338, 34.620282214570274], [-77.21590732328978, 34.62032259751288], [-77.21577730439807, 34.620424977263696], [-77.21550015565887, 34.620617884248176], [-77.21528660242194, 34.62070126107237], [-77.2150309238373, 34.6208579504582], [-77.214887155311, 34.62100334781563], [-77.21478557375212, 34.62113304443665], [-77.21471745800194, 34.62123661119479], [-77.21445550311677, 34.621578333439686], [-77.21426941740533, 34.621736008682994], [-77.2140392021543, 34.62194827321017], [-77.21396697726416, 34.62201110202568], [-77.2138677715693, 34.622119192119555], [-77.21352849341753, 34.62244782310981], [-77.21333932313453, 34.62264070161178], [-77.21312570200841, 34.62288736373954], [-77.21267191190356, 34.6232237665667], [-77.21257467329173, 34.6232755067892], [-77.21250330570261, 34.62330955050113], [-77.21247292808509, 34.62337539829232], [-77.21206803540701, 34.62374652181261], [-77.21188656757357, 34.62397842352867], [-77.21178244610289, 34.62419532110657], [-77.21157175500886, 34.62444700644407], [-77.21140633506013, 34.62463696640161], [-77.21127828968108, 34.62475237783397], [-77.21112025910138, 34.62498314657665], [-77.21104112368344, 34.62507947278287], [-77.21097643142029, 34.6251413865841], [-77.2107352500185, 34.625380575140014], [-77.2106277474011, 34.62548873255443], [-77.21059603010677, 34.62551566461217], [-77.21060386497915, 34.62554354470942], [-77.21054177385155, 34.62574706109448], [-77.21053302608325, 34.62577957398501], [-77.21049903353274, 34.62595007539068], [-77.21053087425355, 34.62598188373879], [-77.21052741708408, 34.62630680203367], [-77.21068208408991, 34.626465200870015], [-77.21078632163642, 34.62694468395273], [-77.21044925376762, 34.627960306595696], [-77.20951838257227, 34.62825869444923], [-77.20946315997372, 34.62971332697178], [-77.2040505934093, 34.62971189008062], [-77.2032343137744, 34.630192546485674], [-77.20318391688988, 34.62978652216151], [-77.20300734751149, 34.62962938495624], [-77.19959731108865, 34.628188333967195], [-77.20086458482137, 34.62568886802794], [-77.20393241509595, 34.62479190149185], [-77.20578325850795, 34.62516432535273], [-77.20669483908546, 34.62461959927269], [-77.2077962046701, 34.62452168619745], [-77.2079772855323, 34.624445541333756], [-77.20842981606324, 34.6244017002595], [-77.2087179173908, 34.62436755751158], [-77.2088357311039, 34.624367869775824], [-77.20932247360642, 34.62432730076186], [-77.20971979634842, 34.62405524304247], [-77.20974485603514, 34.624034282282096], [-77.2097447315074, 34.62402804266575], [-77.2100712942084, 34.623678399273246], [-77.21015665903087, 34.62359546235812], [-77.21028235380973, 34.62345971064959], [-77.21040209594591, 34.62331514754579], [-77.21054392388032, 34.623154701706795], [-77.2108095568797, 34.62302010942153], [-77.21086385823259, 34.62294430421137], [-77.21096804602846, 34.622836015402406], [-77.21108894769316, 34.622726409656465], [-77.21114410645649, 34.62266019584431], [-77.21132509857408, 34.62250938914006], [-77.21136012437657, 34.6224831643289], [-77.21153372238851, 34.62234928232679], [-77.2117444303279, 34.62230684476091], [-77.21195103595142, 34.622149434453306], [-77.21201036154676, 34.622115803084384], [-77.21200141619741, 34.622091469816525], [-77.21199846002557, 34.622083428406775], [-77.21202021299895, 34.62201293430574], [-77.21203250393276, 34.62188702936368], [-77.21206040819021, 34.62186044769535], [-77.21212981632092, 34.62179666413332], [-77.21225748854432, 34.6216781061053], [-77.21230475925918, 34.62164407368031], [-77.21240810112084, 34.62156292777443], [-77.21256805234225, 34.62142919620024], [-77.21264690906511, 34.621367023038296], [-77.21279552457526, 34.6212344028589], [-77.21281602778087, 34.62121310804442], [-77.21287548058588, 34.6211575476884], [-77.21302466673083, 34.621045563792464], [-77.21314374431351, 34.62100332006266], [-77.21329635753122, 34.62086347130735], [-77.21340407366701, 34.62078820747419], [-77.21343001347887, 34.62074865475224], [-77.21351721765365, 34.62059722000325], [-77.21354942082023, 34.620564008732], [-77.21363582583928, 34.620489434144694], [-77.21375732915413, 34.62038231597254], [-77.21396197294825, 34.6202472510479], [-77.2141104830977, 34.620136973510796], [-77.21416438604503, 34.62008693135516], [-77.2143025272436, 34.620006086691845], [-77.21438524865584, 34.61995466331236], [-77.21443772804821, 34.619927146094426], [-77.2146003017583, 34.61981722596627], [-77.21478159223886, 34.61971863046639], [-77.21500255948978, 34.61951757398807], [-77.215013899847, 34.619486574339064], [-77.215104278283, 34.619272758245], [-77.21534205693487, 34.61916208064288], [-77.2157074552768, 34.61889818275938], [-77.21575342317945, 34.61887053606503], [-77.2157856061842, 34.61885521939701], [-77.21581568148926, 34.61881941955637], [-77.21605979591214, 34.61864119725264], [-77.21615117559459, 34.61856687927585], [-77.21631245611017, 34.61842547398791], [-77.21633862574203, 34.6184048852312], [-77.2164251168165, 34.61831420494378], [-77.21651910630732, 34.61823668998825], [-77.2165559377785, 34.618175262269105], [-77.21675392124403, 34.617988981930004], [-77.21686826642568, 34.61788980092793], [-77.21687702840435, 34.617880865349534], [-77.21689867804635, 34.617863422246444], [-77.21701022909464, 34.61777354571869], [-77.21706107700714, 34.6177325776819], [-77.21720421534135, 34.61760895269767], [-77.21724842472234, 34.61757049426703], [-77.21726500337385, 34.61755798803076], [-77.21729103581124, 34.617533025547495], [-77.21750384530301, 34.61734117129997], [-77.21761406137219, 34.61723826815198], [-77.21773780946558, 34.617123969087764], [-77.21779512042576, 34.617070590726065], [-77.21796726440954, 34.61693534577293], [-77.2179944026493, 34.61691912759913], [-77.21802707959613, 34.61689042685887], [-77.21826766512704, 34.6166944548791], [-77.21836644688815, 34.61659260577614], [-77.21849795945268, 34.6164769617883], [-77.21854978988392, 34.616426962046845], [-77.21871889624707, 34.61628424424315], [-77.21874181583756, 34.61626904414961], [-77.21876021247101, 34.61626199249561], [-77.21876488509521, 34.61624716102528], [-77.21906870372486, 34.61605067443205], [-77.21916783402246, 34.61599054854103], [-77.21921317710353, 34.615944243567895], [-77.2193505931523, 34.61586983574125], [-77.21938199767203, 34.61585232850674], [-77.2194059874253, 34.6158416298578], [-77.21961575651062, 34.61576266552478], [-77.2196457121252, 34.61575819584784], [-77.2198698917516, 34.6156772602378], [-77.2199048548027, 34.61565999555879], [-77.21993414362733, 34.61564765778653], [-77.22008650700107, 34.61549284946669], [-77.22014766892275, 34.61542883801884], [-77.22024499536496, 34.615326274322356], [-77.2203581262529, 34.615209775811664], [-77.22042619253631, 34.615137544498154], [-77.22056483477178, 34.61499041740628], [-77.22071535993734, 34.614783007477], [-77.22072622969516, 34.61476748058073], [-77.22073453243256, 34.61475435234162], [-77.22099078111677, 34.61455268860153], [-77.22109098031251, 34.61441396452512], [-77.22119774429805, 34.61433334998145], [-77.22148455843875, 34.61415500769308], [-77.22151653314012, 34.61413506306538], [-77.22154005836634, 34.61412469807274], [-77.22176100594623, 34.61402457634503], [-77.22197641977152, 34.61392347091122], [-77.22200160784728, 34.61390912010506], [-77.222081442278, 34.61369608189539], [-77.22207484621465, 34.61353984034217], [-77.22213270050169, 34.61346444783363], [-77.22217198215809, 34.61340318404889], [-77.2223547523065, 34.61326974713354], [-77.22237341703514, 34.613253644685486], [-77.22238137307356, 34.61324840068052], [-77.22257108399418, 34.613100752821495], [-77.2226390073863, 34.61303306045214], [-77.22282559082632, 34.61289168965542], [-77.22292234205169, 34.61281974906101], [-77.2229464187826, 34.61277717722591], [-77.22305054777387, 34.61272870919588], [-77.22316658616927, 34.61264430567794], [-77.22321556963348, 34.61260721812153], [-77.22333539972692, 34.61251732778589], [-77.22335775494449, 34.61250060296097], [-77.22336667047934, 34.61249356624306], [-77.22349713514498, 34.612393765969976], [-77.22372214421942, 34.61218899273544], [-77.22373139692515, 34.61217657915038], [-77.22373486770745, 34.612163643131765], [-77.2237659807768, 34.61214888432352], [-77.22392721583188, 34.61200602180452], [-77.22398250452729, 34.61196072162956], [-77.22411719035782, 34.61184628883338], [-77.22426462649383, 34.61174731212362], [-77.2244562810161, 34.61161865046172], [-77.2245458330932, 34.611570147348644], [-77.22456963348587, 34.611535708676755], [-77.22463716354298, 34.611479376399245], [-77.22484215346071, 34.61132154013325], [-77.22492753432071, 34.6112522433305], [-77.22503550575324, 34.61114669587815], [-77.22506393244964, 34.611103366082055], [-77.22511131171521, 34.61108699886051], [-77.22516897951822, 34.61104417814798], [-77.22521153360874, 34.61101179077975], [-77.22523028423792, 34.61099865682163], [-77.22531490445428, 34.6109393842958], [-77.22538236709991, 34.610892821018], [-77.22549468760852, 34.61081742436296], [-77.22552841706786, 34.61080059575309], [-77.22561821778413, 34.610745047130706], [-77.22572243909119, 34.61068398307909], [-77.22574739884095, 34.61066667329585], [-77.2258167348277, 34.610597893406606], [-77.22593135216074, 34.6105015867559], [-77.22599653429037, 34.61046993690326], [-77.22611938513181, 34.61034013001388], [-77.226264362243, 34.6102553957084], [-77.22647815974314, 34.61012460459686], [-77.22656365856912, 34.61007790129862], [-77.22660129237357, 34.610046307931015], [-77.22668711193359, 34.609977844839705], [-77.22686750735588, 34.609831638104474], [-77.22695234351691, 34.60976621739192], [-77.22715783560207, 34.60961526430751], [-77.227346894851, 34.60945975432004], [-77.22740615949547, 34.609402789229094], [-77.22754532620293, 34.609307551686], [-77.22756561268613, 34.60928185096335], [-77.2276012182555, 34.60918250309315], [-77.22767053574944, 34.6090902055703], [-77.22778168620667, 34.608961064890565], [-77.22792469638507, 34.60878015712862], [-77.2279449531769, 34.60873827010261], [-77.22798634454371, 34.608713690861514], [-77.22811396491792, 34.6085256708551], [-77.22812064002176, 34.608516454849486], [-77.22812490879356, 34.60850822771236], [-77.22822711297712, 34.60829966024457], [-77.22821652787962, 34.60828834221437], [-77.22823014466402, 34.60827311360168], [-77.22845862799282, 34.608071766783986], [-77.22896200374507, 34.60765737015555], [-77.2289778524734, 34.60764138034331], [-77.22898291407351, 34.60762787759203], [-77.22900852135979, 34.607626428400884], [-77.22944669182269, 34.60738301213722], [-77.22958047730592, 34.60732969583547], [-77.22974761971233, 34.60723076002055], [-77.22989826279954, 34.607127287676335], [-77.23025286217846, 34.60680707306486], [-77.2302607939374, 34.6067998916294], [-77.23026412632854, 34.606795314638056], [-77.23027869062047, 34.606783655095285], [-77.23050876611829, 34.606583776973], [-77.23064340610821, 34.60647527841395], [-77.2309140515483, 34.60638007251373], [-77.23107405248932, 34.606200942243284], [-77.23114504510583, 34.60610591244384], [-77.23126909462853, 34.60593672551191], [-77.23143353961746, 34.60586330064689], [-77.23172640793246, 34.605590227634124], [-77.2318009713198, 34.60553272874398], [-77.23181116585349, 34.60550813250343], [-77.23185981579691, 34.60547111857038], [-77.23217447989904, 34.605207564305616], [-77.2324503397422, 34.60508719621836], [-77.23262595143768, 34.60495176015623], [-77.2329274951946, 34.60470427351589], [-77.23298021824701, 34.60465763757473], [-77.2330064337615, 34.60463280296523], [-77.23309538441333, 34.60455219465252], [-77.23337817597482, 34.60430607151083], [-77.2334358702476, 34.60422222198163], [-77.2336026971254, 34.60408426568416], [-77.23374608903303, 34.60397593537815], [-77.23400825586496, 34.60379601174327], [-77.23440451116376, 34.603416875014716], [-77.23442758611789, 34.603357729214416], [-77.23449406921515, 34.603326480058854], [-77.23459769854827, 34.60325076066642], [-77.23490806683617, 34.60303734592668], [-77.23507095198485, 34.602937113466815], [-77.2351912297877, 34.602755124031646], [-77.23524064522336, 34.60271481919981], [-77.23526243637403, 34.60269516748774], [-77.2354707128175, 34.60249728478992], [-77.23563853599539, 34.60237232162013], [-77.23571287375455, 34.60228070484358], [-77.2358248890853, 34.60220939015843], [-77.235967981432, 34.60209709305211], [-77.23600710186184, 34.60206823006297], [-77.23602145356651, 34.60205554302822], [-77.23606399073948, 34.6020203589878], [-77.2362750051066, 34.601853678632416], [-77.23641149195342, 34.60174510010676], [-77.23651913550772, 34.60163725231403], [-77.23659128927963, 34.601576338120935], [-77.23677872829266, 34.601426331509245], [-77.23678354925337, 34.60142242519182], [-77.23678575290165, 34.60142062354875], [-77.23679173105012, 34.60141579633888], [-77.23705747523674, 34.60120834736458], [-77.23717477178683, 34.60110927658527], [-77.23751713594191, 34.60081582113469], [-77.23755968375922, 34.60079427808057], [-77.23758817412715, 34.60077883821882], [-77.23758541756989, 34.60075707838104], [-77.23792663676866, 34.60046330445855], [-77.23806408784074, 34.60034500803462], [-77.23811436763197, 34.60030160320923], [-77.23827010151535, 34.60016138649965], [-77.23830611991461, 34.60014347953345], [-77.23832270307301, 34.60011378867641], [-77.23854242334257, 34.59991136742919], [-77.23865936154968, 34.599800311542445], [-77.23877657977184, 34.59969415155993], [-77.23902578827568, 34.59948328979785], [-77.23903101868251, 34.599478534506005], [-77.2390333233187, 34.59947557802711], [-77.2390418961578, 34.599469733802174], [-77.2394219727367, 34.59916391135408], [-77.23956005928864, 34.59904888828869], [-77.2397706511545, 34.59886306392611], [-77.23980297235403, 34.5988454415434], [-77.23980716011778, 34.59883269154493], [-77.2398185411657, 34.598819225010644], [-77.24003072887396, 34.598614639230775], [-77.24011535630015, 34.59852445045278], [-77.24014528346169, 34.598492556638995], [-77.24026351223522, 34.598397313095674], [-77.24052341767423, 34.598208939977354], [-77.24055903062882, 34.598203220999025], [-77.24063388913498, 34.598190832277545], [-77.24061836892258, 34.59815250285823], [-77.24088363732159, 34.597974842643296], [-77.24091261760985, 34.59786036977215], [-77.2412665675823, 34.59776934942478], [-77.24140876868914, 34.59764434067317], [-77.24164105792244, 34.59766683698097], [-77.24176813556086, 34.59757320678868], [-77.2419618257071, 34.59747893338463], [-77.24197149904782, 34.59746237660434], [-77.2420322772169, 34.597358349742734], [-77.24205345138557, 34.59726861446928], [-77.24205374136494, 34.597247902839804], [-77.24206150373479, 34.59723891117574], [-77.24210429350076, 34.59712835016609], [-77.24214881323996, 34.5969878865628], [-77.24224275710904, 34.59690358727581], [-77.2421877979701, 34.59683034306964], [-77.24234547343463, 34.596505446069294], [-77.24252680239996, 34.59645462286751], [-77.24282422185748, 34.59627394160804], [-77.24284623330334, 34.59624412247718], [-77.24295144012967, 34.59617713649856], [-77.24318378729515, 34.59603504886291], [-77.24336933233766, 34.59591842162715], [-77.24369314493991, 34.59573214385702], [-77.24389398950281, 34.595619665062344], [-77.24410417969892, 34.59544040770941], [-77.24414140926618, 34.595403487528586], [-77.2441833532566, 34.595348645116374], [-77.24438592343255, 34.59518708006263], [-77.2444767116523, 34.59511442285017], [-77.24457542084654, 34.59496633725537], [-77.24478870638673, 34.59475466654637], [-77.2447915490827, 34.59474769268967], [-77.24479876023908, 34.59474353299311], [-77.24481460707051, 34.5947289344141], [-77.24518297932431, 34.594427947308944], [-77.24527259612978, 34.59431424673903], [-77.24541953646806, 34.594151144919145], [-77.2454903511185, 34.59404400519965], [-77.2456665411391, 34.593873936450386], [-77.24588242387631, 34.59373540900448], [-77.24595151408998, 34.59366071504931], [-77.24628649791646, 34.59345922535023], [-77.24629794704323, 34.59345233484987], [-77.24630109946236, 34.59345047852041], [-77.24630602818449, 34.593448179010046], [-77.24676866992493, 34.5932537452823], [-77.24679118245369, 34.59322906738938], [-77.24686348617789, 34.593025540987455], [-77.24703638599127, 34.5928380940627], [-77.24706130735578, 34.592812000170866], [-77.2470738718123, 34.59280644117631], [-77.24712464455982, 34.59277808105789], [-77.24744686235834, 34.59260015033055], [-77.24750593601021, 34.59255015893352], [-77.247556286265, 34.59237309652292], [-77.24778101314892, 34.59219979076922], [-77.24781750285146, 34.59216995872881], [-77.24784494035794, 34.59216016136916], [-77.24787552607847, 34.5921295947891], [-77.24814287654107, 34.591947956662935], [-77.2482279763268, 34.59187773866239], [-77.24843017618419, 34.59175008294758], [-77.24846014898453, 34.591737274727365], [-77.24846285270101, 34.591726026380044], [-77.24862455161056, 34.59157315775338], [-77.24870652208608, 34.59152100741012], [-77.24883319121841, 34.59140368658593], [-77.24895123230661, 34.591304608905645], [-77.24900766829121, 34.59125660641932], [-77.24916545013245, 34.591130212408665], [-77.24922897213973, 34.591090811626785], [-77.2492420460664, 34.59106692583893], [-77.24938893938142, 34.59093841517587], [-77.2494758149501, 34.59087458020948], [-77.24963976899778, 34.5907343295553], [-77.24973070145195, 34.5906589821056], [-77.2497737975128, 34.590623415869516], [-77.25004059526532, 34.59044771527266], [-77.25017453124144, 34.59032253928479], [-77.2505544143039, 34.59005160336667], [-77.25058547797232, 34.59003074881566], [-77.25060121533357, 34.59002052181397], [-77.25064255455119, 34.5899915044034], [-77.25101781443286, 34.589757985140665], [-77.25121734283306, 34.58959769633201], [-77.25131169860835, 34.58937358142781], [-77.25131556017179, 34.58936975887519], [-77.25131777759769, 34.58936747887418], [-77.25132750360999, 34.58935693556497], [-77.2514841328036, 34.58918679036949], [-77.2515457862412, 34.58915221588042], [-77.25168433637273, 34.58903620972896], [-77.2520381298955, 34.58873420222518], [-77.2520549056225, 34.588720961563055], [-77.25206193898966, 34.588714766001125], [-77.25208422388424, 34.588694584583514], [-77.25244717115928, 34.588400109584114], [-77.2526336420081, 34.588295186529216], [-77.25272512658378, 34.588109579966044], [-77.25276630007772, 34.588069960217446], [-77.25279134425128, 34.58804893402904], [-77.25302916944187, 34.587854985068724], [-77.25317574107345, 34.58773353773369], [-77.25327680036855, 34.58763881077357], [-77.25350576345996, 34.587449888808244], [-77.25353796714819, 34.587423701469795], [-77.25355158691173, 34.58741053751296], [-77.25360417338592, 34.58735693579855], [-77.25376479422094, 34.58720588798536], [-77.25390852648003, 34.58707072178259], [-77.25401134936786, 34.586989627386416], [-77.25424763492013, 34.5868047037311], [-77.25430166912838, 34.58676310952978], [-77.25433929067404, 34.58673719393803], [-77.25450954292076, 34.586619356948304], [-77.25458329822177, 34.586563311851286], [-77.25471250622508, 34.586471236782444], [-77.25487541229813, 34.58635063670561], [-77.25500545756452, 34.5862536942172], [-77.25511415669963, 34.58617119467153], [-77.25517918179705, 34.58613887846906], [-77.25523081659065, 34.58606915097553], [-77.25541056812116, 34.58592142173249], [-77.25549464035232, 34.58585232657363], [-77.25566596536463, 34.58570585491351], [-77.25573305726974, 34.58564876225515], [-77.25587143134791, 34.58553017591785], [-77.25593228551932, 34.58549114731366], [-77.25600576173825, 34.58541156177186], [-77.25613456162463, 34.58527139784388], [-77.25624490799191, 34.585205078454905], [-77.25641176903414, 34.58505754700858], [-77.25647925585402, 34.58500704621787], [-77.2566307681179, 34.58489099734336], [-77.25670379374961, 34.58484486142605], [-77.25683040524463, 34.58473992287], [-77.2568325559346, 34.58473716088858], [-77.25683891735348, 34.58473216551487], [-77.25696812143245, 34.584629995440835], [-77.25702681627843, 34.58458597918528], [-77.25717682645971, 34.584461415253735], [-77.25721809197371, 34.58442746838201], [-77.25724322879816, 34.584415977530696], [-77.25725394757782, 34.584393042841505], [-77.25739880153489, 34.58425955992609], [-77.25746669009756, 34.58419789421403], [-77.2575941860783, 34.58408192572436], [-77.25769922381416, 34.583980524747645], [-77.25776738537263, 34.58393011672287], [-77.257919489372, 34.58382663650694], [-77.25797442209425, 34.58378562598984], [-77.25801699173046, 34.583769863039706], [-77.25819896953257, 34.58365670975326], [-77.25825547894502, 34.583552961268715], [-77.25851940661443, 34.583368031583625], [-77.25855834081483, 34.583341125468436], [-77.25857261814697, 34.583331774690215], [-77.25860242853673, 34.583309879928706], [-77.25877205285684, 34.583180523599594], [-77.25883702371975, 34.58312738621323], [-77.25895362889763, 34.58302171128145], [-77.2589583267804, 34.5830175674195], [-77.25910301586116, 34.58291264770199], [-77.25932857162441, 34.58269758868813], [-77.25933150020934, 34.582694957475056], [-77.25933202187528, 34.582692676456816], [-77.25934008814234, 34.58268494124811], [-77.25949840587077, 34.58251203074595], [-77.25953551765136, 34.582475341484724], [-77.25960396650626, 34.58241074573611], [-77.25967787955891, 34.5823430277995], [-77.25978966397705, 34.582259669736246], [-77.26006984834973, 34.58205256118236], [-77.26007614095856, 34.58204654186548], [-77.26008091682563, 34.582044237521735], [-77.26008817333647, 34.58203936853689], [-77.26037811121645, 34.58183463224589], [-77.26049257220332, 34.581753113578], [-77.2605977028174, 34.58167116315734], [-77.26066204647103, 34.581621303271824], [-77.26069185959591, 34.581601735095326], [-77.26076509947988, 34.58153443109711], [-77.26087318422381, 34.58143438064661], [-77.26090601946939, 34.58140482953135], [-77.26099331256003, 34.58133929087888], [-77.26107095871451, 34.58128165730727], [-77.26118137990181, 34.58119082477994], [-77.26126368099597, 34.581124440789594], [-77.26131386860504, 34.58108341396738], [-77.26141902977858, 34.580996139977394], [-77.26144353490989, 34.58097578087189], [-77.26145514511488, 34.58096610569719], [-77.26148648170657, 34.58094159421549], [-77.2616523012926, 34.580812833427224], [-77.26171813152826, 34.5807617152599], [-77.26182077699538, 34.58066196412434], [-77.26183559294093, 34.5806472304543], [-77.26195305474063, 34.58054452786057], [-77.2620206602569, 34.580483207039265], [-77.26207415141178, 34.58043622019908], [-77.26221078440767, 34.58034295984274], [-77.26222279751997, 34.58033436616987], [-77.2622271365524, 34.58033042105999], [-77.26223335595091, 34.58032372885032], [-77.26239934516117, 34.580162766103896], [-77.26244880339317, 34.580112190185616], [-77.26253807029775, 34.58002589172604], [-77.26257514436014, 34.579990500896116], [-77.26269875508189, 34.57989618404979], [-77.26276890042888, 34.57983420663614], [-77.26295391774124, 34.57970707480934], [-77.26297971030243, 34.57969308074516], [-77.26298622265674, 34.579683129018925], [-77.26300859612435, 34.579665947644955], [-77.26317581370611, 34.579538875058276], [-77.26329861060344, 34.57947203348809], [-77.26341159348176, 34.57933129361593], [-77.26349439508715, 34.579251765358755], [-77.26354010862167, 34.579205640263254], [-77.26369616993608, 34.57904099421422], [-77.26370218531576, 34.579032441478326], [-77.26370885319415, 34.5790271031313], [-77.26372864148081, 34.57900871084753], [-77.2638899218917, 34.57885952724874], [-77.26396768101704, 34.5788176561577], [-77.26405622334141, 34.578722421429084], [-77.26421546687652, 34.578601477549306], [-77.2642758059187, 34.578545496715876], [-77.26446213673587, 34.57839182564473], [-77.26446872799667, 34.578388464336896], [-77.2644707072409, 34.57838588506263], [-77.26447768931662, 34.57838084373228], [-77.26467429758327, 34.57824268066659], [-77.26477112551447, 34.57817384524712], [-77.26487152052633, 34.57808947405552], [-77.26488640416497, 34.578065078007896], [-77.26492683884099, 34.57802889323599], [-77.2650039370343, 34.57795648775449], [-77.26504977445131, 34.57791939711396], [-77.26517283376977, 34.57781998803577], [-77.26524904051871, 34.57776800834431], [-77.26529971818269, 34.577744082427024], [-77.26534646418861, 34.57768799922333], [-77.26544368014889, 34.577612505268064], [-77.26554854126474, 34.57752798337568], [-77.26562981790475, 34.577449441187674], [-77.26565735418973, 34.577418707100186], [-77.26571665738506, 34.57736561950151], [-77.265776789196, 34.57731026594439], [-77.26581130060548, 34.57728223742356], [-77.26590330577923, 34.57720903030328], [-77.26600649852355, 34.57712723198105], [-77.26604514771796, 34.57709570266019], [-77.26613597143883, 34.5770248371651], [-77.266203314373, 34.57697366586713], [-77.26631120041003, 34.57688095741983], [-77.26640562026773, 34.57682498271596], [-77.26646115425707, 34.57677491602276], [-77.26656858540555, 34.576679070069915], [-77.26658244041597, 34.57666661996633], [-77.26658991573463, 34.57666028211856], [-77.26661115403174, 34.57664277818651], [-77.26677918498527, 34.576500005309356], [-77.26683430589975, 34.57645075830838], [-77.26694120686915, 34.576355773856285], [-77.26695621493782, 34.57634251096905], [-77.26696398292066, 34.576335752372565], [-77.26698731828898, 34.57631567081518], [-77.26708822074102, 34.57623505746564], [-77.26715776913827, 34.576179493536976], [-77.2673241477028, 34.57606632957629], [-77.26736945003552, 34.57603914999426], [-77.26740268702846, 34.57602411760732], [-77.26742801538381, 34.575989699346536], [-77.26766489716603, 34.57580906807311], [-77.26776254556185, 34.575731546195016], [-77.26786502774678, 34.5756422763422], [-77.26790774411276, 34.57559249575323], [-77.26794848180694, 34.575568307429656], [-77.268034148818, 34.575495774665015], [-77.26813825880173, 34.57540848482457], [-77.26819414454052, 34.57537934754683], [-77.26826298576943, 34.575309481178444], [-77.26833370865953, 34.57525370780023], [-77.26838882905975, 34.57521112207141], [-77.26845073897907, 34.575163855417934], [-77.26853306952371, 34.5751024093381], [-77.26859503549744, 34.57505736709545], [-77.2687229128416, 34.5749671891368], [-77.26873893613316, 34.57495689719122], [-77.26874385847671, 34.5749512345812], [-77.26875691328618, 34.57494073053781], [-77.26887750976684, 34.57484390901485], [-77.26893227439253, 34.574800243194275], [-77.26901269713771, 34.57473670416108], [-77.26907473587725, 34.574688175086834], [-77.26912864646668, 34.57464628776304], [-77.26914766518864, 34.57462948193334], [-77.26918941910287, 34.57459498717243], [-77.26927851568485, 34.574521935859515], [-77.26932038632053, 34.57448821298992], [-77.26941387835122, 34.57441474447738], [-77.26943008354483, 34.57440218603163], [-77.26952935350926, 34.57434545961249], [-77.26960914125395, 34.57431226207107], [-77.26974236820139, 34.57420630621671], [-77.26974233358627, 34.57420489989665], [-77.26974231483017, 34.57420413788415], [-77.26976655244775, 34.574153521649286], [-77.26979607846887, 34.57409129157767], [-77.26979907549175, 34.574089211242395], [-77.26990079394778, 34.57401860491644], [-77.26994610514524, 34.573985252523975], [-77.27005985332666, 34.573901460725175], [-77.27009128335959, 34.573878832234016], [-77.27010322617132, 34.57387004082322], [-77.27013081072346, 34.57384990162599], [-77.27020416380563, 34.57379551120658], [-77.27023609226953, 34.57377238273713], [-77.2703060237537, 34.573721801872786], [-77.27037856563348, 34.57366574952921], [-77.27047062129068, 34.57359461900471], [-77.27050596859574, 34.57357102632402], [-77.27051582542926, 34.57355870635949], [-77.27054373280622, 34.573536461737355], [-77.27065037800004, 34.57345145021989], [-77.27069812990999, 34.57341332888915], [-77.27082366773577, 34.573313157927394], [-77.27089404458277, 34.57325896985984], [-77.27091923794083, 34.5732369183942], [-77.27098327767396, 34.57318806978797], [-77.27105934889912, 34.57313009888011], [-77.27109141930814, 34.57310590963085], [-77.27117151237326, 34.57304197789274], [-77.27119422636379, 34.57302286788812], [-77.27120583505527, 34.57301282942864], [-77.27128209074408, 34.572946888369714], [-77.27131867698112, 34.572914817114864], [-77.2713746771417, 34.57285771347609], [-77.27142598829666, 34.5728054190445], [-77.27145469561567, 34.57277180032456], [-77.27153721331777, 34.572735481380974], [-77.27172227591086, 34.57271087517473], [-77.27174327913393, 34.57269985540569], [-77.27170794424354, 34.57259191534605], [-77.27175417801948, 34.57253181290818], [-77.27180104317335, 34.57248139990796], [-77.27183078584832, 34.57244908835466], [-77.27192019803151, 34.5723729324999], [-77.27192553447966, 34.57236905637022], [-77.27193927003685, 34.57235708377942], [-77.27201914743245, 34.57228801439352], [-77.27204579610454, 34.57226497139553], [-77.27209432602407, 34.57222065471261], [-77.27216464529107, 34.57215647975507], [-77.27220105119534, 34.57212119770675], [-77.27228513723608, 34.57204811718584], [-77.27229451751752, 34.572040025719765], [-77.27232125968722, 34.57201836171978], [-77.27239186812044, 34.571962308103146], [-77.27241895820812, 34.571940802127244], [-77.27246908811796, 34.57189652549316], [-77.2725416592528, 34.57183261297537], [-77.27257848782406, 34.57179968617258], [-77.27266561378713, 34.5717245221325], [-77.2727647770695, 34.57163677077682], [-77.27278850063456, 34.571616347552904], [-77.27283314927006, 34.57157640362051], [-77.2729097041337, 34.5715080404341], [-77.27294933112526, 34.57147231259728], [-77.27307107270691, 34.57136891141391], [-77.2731391511591, 34.571312537958576], [-77.27316434575349, 34.57129238752671], [-77.27321560993887, 34.57124938558731], [-77.27329299086657, 34.57118466499654], [-77.27332968306249, 34.57115339673366], [-77.27343741187067, 34.57107818209103], [-77.27353132410452, 34.57100413537734], [-77.27357995447113, 34.57097155169261], [-77.27367588871628, 34.570893207234846], [-77.27370755153107, 34.57086374646585], [-77.27372756832743, 34.570850074948176], [-77.27377410518791, 34.570811950553896], [-77.27392255022242, 34.570694892206966], [-77.27400297490504, 34.5706512971652], [-77.2740724249538, 34.57056090993981], [-77.27420720342954, 34.57043168083092], [-77.27428061263547, 34.570356157629206], [-77.27442532814231, 34.57021315637653], [-77.27454975349863, 34.5701113532658], [-77.27465062271389, 34.57002805016619], [-77.27469948649517, 34.5699990348302], [-77.274753379713, 34.56993832068862], [-77.27492029427899, 34.569780720479294], [-77.27501085710156, 34.5696912502961], [-77.27515771568827, 34.56956371145064], [-77.27519874873214, 34.56952976510024], [-77.27531467695802, 34.5694319373139], [-77.27538814848685, 34.56936962124941], [-77.27542829989696, 34.56934930790249], [-77.27546548825238, 34.56930405038961], [-77.2755791992869, 34.56921094601453], [-77.27566979163115, 34.56913261786771], [-77.27576929337398, 34.56905142036773], [-77.27579823220401, 34.56902487750372], [-77.27585183600462, 34.568975560460785], [-77.27591629374335, 34.568916321319435], [-77.27595046403142, 34.56888395953826], [-77.2760703472286, 34.568770793751106], [-77.27612972315087, 34.568714799223535], [-77.27614680378257, 34.56869876790076], [-77.27617776436921, 34.56866970926255], [-77.27630997762797, 34.56854652441565], [-77.27638080274235, 34.568481488223604], [-77.27646544366777, 34.56840607104402], [-77.27649365024322, 34.56838128980874], [-77.27650283990141, 34.568373244092236], [-77.27652094768807, 34.56835739036616], [-77.27662634286632, 34.5682651149008], [-77.27668023048942, 34.568218641212866], [-77.27675160433145, 34.56815712401724], [-77.27684214467857, 34.568077724524976], [-77.27686675271909, 34.56805594151554], [-77.27688335472817, 34.56804964273747], [-77.27688977113071, 34.568035461250744], [-77.2770529145717, 34.567892921614224], [-77.27712509876173, 34.567832970441884], [-77.27724385807522, 34.56773415417804], [-77.27738714306442, 34.567617892818], [-77.27756963567109, 34.56747226134384], [-77.27763269878967, 34.567422804916866], [-77.27767489301567, 34.56740483426115], [-77.27771919283974, 34.56735720394755], [-77.27792905475752, 34.567189136412814], [-77.27801772799909, 34.56710806712729], [-77.27819154546228, 34.56697409266054], [-77.27826806035665, 34.56692426657898], [-77.27842800118162, 34.56681578006217], [-77.27851571814246, 34.5667638937671], [-77.27865327822306, 34.56663971256992], [-77.27876473642453, 34.56654779069923], [-77.27880882069901, 34.56649730167301], [-77.2789577486825, 34.566393530838], [-77.279015069195, 34.56635214817695], [-77.27903693203062, 34.566333507963485], [-77.27918262115281, 34.56625761431799], [-77.27924414383898, 34.56622729339999], [-77.27936087628292, 34.56612328936893], [-77.27942503894727, 34.566059594391184], [-77.27946792340231, 34.56601386573846], [-77.2795344845321, 34.565942026666484], [-77.27956666631741, 34.56590378961015], [-77.27958791143907, 34.56587586898905], [-77.27966808693716, 34.565821926512584], [-77.27978902006903, 34.56572614598876], [-77.27983050704543, 34.56568884924918], [-77.2799160321958, 34.5656153120739], [-77.27997604900956, 34.5655639028442], [-77.28003092201433, 34.56552095161669], [-77.28007377916201, 34.56548653026785], [-77.28008635426019, 34.56547328060696], [-77.28017003908278, 34.565407850280046], [-77.28021317245836, 34.565365409286336], [-77.28028733864839, 34.565292433507715], [-77.28031897456876, 34.56525588720041], [-77.28034737902789, 34.56523699186915], [-77.28042068816802, 34.565166696697766], [-77.2804361322803, 34.56515163689895], [-77.28044394676036, 34.56514787081114], [-77.28053895240842, 34.56507879100227], [-77.28061377199559, 34.565043376907035], [-77.28076902100169, 34.56495482237073], [-77.28090760791122, 34.564830790643214], [-77.28094689137004, 34.56478443697988], [-77.28107913490025, 34.56462823646289], [-77.28109091210999, 34.56460952311796], [-77.2811045733354, 34.56459609922687], [-77.28114554784443, 34.56456631765211], [-77.28129997296716, 34.56444130233532], [-77.28136349814993, 34.56439526703771], [-77.28150952621849, 34.56429909199032], [-77.28152251845519, 34.56428992387194], [-77.28155871862523, 34.564264769005284], [-77.2816744118152, 34.56418402062438], [-77.28175840895318, 34.56412635167645], [-77.2818550560297, 34.56408231849552], [-77.28216953307867, 34.56391207989201], [-77.28251726488386, 34.56375801430006], [-77.28257983177674, 34.56373239495832], [-77.2826221433845, 34.563715447105395], [-77.28285080719652, 34.56362156067989], [-77.28296762081584, 34.563573953056384], [-77.28298984371558, 34.563564682200855], [-77.28302236560553, 34.563551579727616], [-77.28331097211444, 34.563434799435996], [-77.28339990914677, 34.56339464804768], [-77.2835099776322, 34.56334377008209], [-77.28369606946154, 34.56324964162187], [-77.28381054233701, 34.56320067185378], [-77.28405285645934, 34.563095677076525], [-77.2842210275304, 34.56301283469889], [-77.28440615762531, 34.56292193983029], [-77.28463196996671, 34.56280568634963], [-77.28482385232836, 34.56272446446166], [-77.28483704492857, 34.5627187453573], [-77.28485557871579, 34.56271112735584], [-77.28504187571578, 34.56264205662927], [-77.28537343086, 34.56250568541683], [-77.28545192213576, 34.56247243690598], [-77.2855101306188, 34.56244659772018], [-77.2858589337339, 34.562297702334845], [-77.28586212359068, 34.56229621905635], [-77.28586498507721, 34.562294750796546], [-77.2859013431652, 34.562277528473835], [-77.2862467889031, 34.56211320238488], [-77.28627276994494, 34.56210119857037], [-77.28630562382814, 34.56208667078084], [-77.28664658253189, 34.561911825626794], [-77.2866836659583, 34.56189558334148], [-77.28700861721302, 34.561752057149526], [-77.28709396885455, 34.56171485411933], [-77.28719402749778, 34.56166421288621], [-77.28750446556974, 34.561525883422654], [-77.28766341905225, 34.561454959128945], [-77.28774260039728, 34.5614215879272], [-77.28791469597672, 34.56134804894047], [-77.28817605170019, 34.561249097325195], [-77.28832426767127, 34.56119789077885], [-77.28841265729555, 34.561161559252575], [-77.28873466881842, 34.56101271175405], [-77.28913754309853, 34.56083236386164], [-77.28914502453216, 34.56082936732482], [-77.28914947155278, 34.56082794970121], [-77.28917498750023, 34.56081731388261], [-77.28948920372932, 34.560692743493846], [-77.28955499597411, 34.5606621437799], [-77.28963065245398, 34.5606249648136], [-77.28989032048628, 34.560489881826875], [-77.28996596136571, 34.5604529344637], [-77.29005260825491, 34.56041198076669], [-77.29031054327167, 34.56026595926551], [-77.29037723874629, 34.56023047629423], [-77.29041473793166, 34.56020925069892], [-77.29048181756102, 34.56017656804101], [-77.29066676279575, 34.56008356628875], [-77.29077454636972, 34.560035359834785], [-77.29114766435475, 34.55985120108083], [-77.29117184741055, 34.55984043941169], [-77.29117874413116, 34.55983606205547], [-77.29119365856432, 34.55982968843219], [-77.29144518874921, 34.5597174028682], [-77.29156870629555, 34.55966409704645], [-77.29171484782421, 34.55960030968404], [-77.29194697657273, 34.559488433156076], [-77.29196573198871, 34.55948063942835], [-77.29197105305732, 34.559476661546014], [-77.29198057826949, 34.55947203702698], [-77.29223815092737, 34.55935832011936], [-77.29236261484206, 34.559303135210826], [-77.2924965382039, 34.5592357347539], [-77.29269209016998, 34.55912519434763], [-77.29273237485545, 34.559102162594165], [-77.29276046123802, 34.55908486925372], [-77.29286266405276, 34.559037711709756], [-77.29315748085, 34.55890143146685], [-77.29325033815454, 34.558857570369796], [-77.29342266101122, 34.5587756134191], [-77.293508902925, 34.558735070979964], [-77.29355455374257, 34.55871566578586], [-77.29368050128109, 34.55866092207823], [-77.29375293318708, 34.558629386566345], [-77.29377784641785, 34.558617627883926], [-77.29395125554757, 34.55854550106781], [-77.29404491699984, 34.55849927208435], [-77.29433247123168, 34.55840031949464], [-77.29434442519687, 34.558396719418695], [-77.29434747835037, 34.55839550695366], [-77.29435733236376, 34.55839068156522], [-77.2946096685375, 34.55827747297411], [-77.29474461585713, 34.558206786100925], [-77.29485550639404, 34.55814877237836], [-77.29505302697982, 34.558052163763925], [-77.29510838208583, 34.55802350043246], [-77.29514210589849, 34.5580030819656], [-77.29526950996176, 34.5579425762036], [-77.29534068323665, 34.55790828768028], [-77.29536541408264, 34.55790025321616], [-77.2955388929528, 34.55782901840605], [-77.29578083359209, 34.557702963075506], [-77.29588123632536, 34.55765461491658], [-77.29593640605482, 34.557624174364335], [-77.29612545775925, 34.557525126361114], [-77.2961725269005, 34.55750138003111], [-77.2963338807311, 34.55742087008187], [-77.29638177529716, 34.557401530522725], [-77.29648754513357, 34.557356783487776], [-77.29673047328195, 34.557254803510034], [-77.29689798444859, 34.55719436271004], [-77.29692851295798, 34.55718260161189], [-77.29694260566009, 34.55717781772048], [-77.29712677581253, 34.55710093975989], [-77.29720598577532, 34.557057662020846], [-77.29734221549444, 34.55698937352588], [-77.2974523895906, 34.55692923598925], [-77.2975244866837, 34.55688739985632], [-77.29777734929041, 34.556771017455006], [-77.29792130010733, 34.55671176437324], [-77.29796896217763, 34.55668396096826], [-77.29805113677749, 34.55664286650635], [-77.29821993886924, 34.556557762302596], [-77.29831864143023, 34.55651370154081], [-77.2984852737132, 34.5564385582186], [-77.29861592425476, 34.55637848859229], [-77.29871552081885, 34.55633511941154], [-77.29874731668657, 34.5563177502921], [-77.29881563248125, 34.55628838145492], [-77.29899750880837, 34.556191168877234], [-77.29911249655771, 34.55615238048346], [-77.29941353998811, 34.55601690494373], [-77.29950928743318, 34.55597739689528], [-77.29954113631696, 34.555959072085386], [-77.29960525270023, 34.555930286078095], [-77.29980929693775, 34.555841243668766], [-77.29990591818222, 34.55580912505665], [-77.30009290547962, 34.5557309404807], [-77.300104207084, 34.555726084294186], [-77.30014421940811, 34.55570590332914], [-77.30030278979373, 34.55563057271345], [-77.30034860310514, 34.555607040449935], [-77.30041849872114, 34.555568794880294], [-77.30057507609405, 34.555468903716466], [-77.30070052571475, 34.55541530340349], [-77.30082964361443, 34.55534445317683], [-77.30108094081766, 34.555228936663454], [-77.30109177391846, 34.55522368648387], [-77.30109777483365, 34.55522058559645], [-77.30111465890292, 34.55521367347377], [-77.30135569749541, 34.55510379309455], [-77.30149475316239, 34.555037270417245], [-77.30159933656861, 34.554974018395875], [-77.30178816577396, 34.55488264783821], [-77.30185487587785, 34.55485004058923], [-77.30189230037145, 34.55482974629932], [-77.3020224597128, 34.554768773297035], [-77.30211582658907, 34.554728698673856], [-77.30228911763365, 34.554653105185], [-77.30249924701215, 34.55453580093847], [-77.30259132629801, 34.55446341091138], [-77.3026866983308, 34.55444399205468], [-77.30287487590122, 34.55435307718751], [-77.30291465256154, 34.554335656975326], [-77.30308324799957, 34.554278552817856], [-77.30318031516178, 34.554253405673975], [-77.30327088162821, 34.55418025924706], [-77.30348055552204, 34.55408087007136], [-77.30369640647602, 34.55400788983866], [-77.30387706244338, 34.553917098845716], [-77.30407460324187, 34.55382010689583], [-77.30419332049924, 34.55375303217757], [-77.3045643065749, 34.55357122844211], [-77.30467165928478, 34.5535221040941], [-77.3047095178866, 34.55350756713502], [-77.3047831157962, 34.55347361316308], [-77.3052311334574, 34.553264740494285], [-77.30546555000176, 34.55315678380494], [-77.30574440728913, 34.55301785022297], [-77.30619965306659, 34.5527806818697], [-77.30623792931101, 34.55276133858682], [-77.30626025273939, 34.55275663334798], [-77.30630220908292, 34.55274004531938], [-77.3068053042891, 34.55254079916706], [-77.30705374355932, 34.55240768795264], [-77.30729860479138, 34.55228417843608], [-77.30772444175416, 34.552072191707], [-77.30784872077483, 34.551995205801994], [-77.30800045747864, 34.55193878876706], [-77.30824526093105, 34.551829195465416], [-77.30834728471656, 34.55180117309854], [-77.3086411403608, 34.55169123703138], [-77.30889750203269, 34.55157227356407], [-77.30941161869333, 34.55134036675176], [-77.30942619452571, 34.551332889410276], [-77.30943493170939, 34.55132859777559], [-77.30946240096542, 34.551316131528935], [-77.30983213355734, 34.55113412350186], [-77.30994238672929, 34.551087415904355], [-77.31017861434603, 34.550985440827496], [-77.31022905946263, 34.55095132132695], [-77.31038359559801, 34.550805420344], [-77.31062703463166, 34.55072373741138], [-77.31068016684401, 34.55070142310607], [-77.3107179187038, 34.55066320094915], [-77.31084804556978, 34.55053474468324], [-77.31102566548346, 34.55046811696941], [-77.31110023491732, 34.550409130741066], [-77.31117047660932, 34.55035341349867], [-77.31130148646429, 34.55025870705859], [-77.31142576485581, 34.550149798207784], [-77.31148135226788, 34.5500978674535], [-77.31151820330848, 34.55005867634358], [-77.31162708231489, 34.54992040183011], [-77.3118111049155, 34.54977181023228], [-77.31181905746938, 34.54976546056868], [-77.31182760303285, 34.54975722132804], [-77.31198186863388, 34.54959631454868], [-77.31209265354858, 34.549486573167044], [-77.31215856658886, 34.549433932642906], [-77.31222951691657, 34.54936125542808], [-77.31234365024469, 34.5492756347321], [-77.31238553100881, 34.5491997086111], [-77.31248186102619, 34.54909450789627], [-77.3125053171245, 34.549060103293954], [-77.31263167347458, 34.54895477758667], [-77.31266364995645, 34.548934605687215], [-77.31267664795496, 34.54891309607552], [-77.31283230321174, 34.548770607375694], [-77.31283393403214, 34.54876910019176], [-77.31283535727182, 34.5487679009929], [-77.31285640420235, 34.54875015015189], [-77.31301007204328, 34.548620407225705], [-77.3130180173272, 34.54861031560453], [-77.31303257850188, 34.5486015186575], [-77.31318457797317, 34.548472943131365], [-77.31320713412286, 34.548453982665144], [-77.31323289699532, 34.548430552000866], [-77.31334161125272, 34.548327987847316], [-77.3133751930391, 34.548287393650426], [-77.31343369614778, 34.5482390429933], [-77.31354130514431, 34.54811985660144], [-77.31361446528837, 34.548043994896474], [-77.31362324062907, 34.54803554242225], [-77.3136350725366, 34.5480228645905], [-77.3137074531625, 34.54795233717755], [-77.31383623610759, 34.54781572360794], [-77.3138750555126, 34.54778552620624], [-77.31388635007856, 34.547760140283536], [-77.31398929043644, 34.54765231029226], [-77.31402561475403, 34.547610414668185], [-77.31403756240582, 34.547601595385714], [-77.31415815430842, 34.54747629644041], [-77.31418989687741, 34.54744198680296], [-77.31423885843132, 34.54738871548013], [-77.31439512413912, 34.547293500774025], [-77.31444724326516, 34.54718996935233], [-77.31451878849192, 34.5471052909285], [-77.3146412071286, 34.54697321361162], [-77.31469949658809, 34.546944863460496], [-77.31471889301682, 34.546906146108306], [-77.31480414902798, 34.54679490499814], [-77.31495063053919, 34.54662805412605], [-77.31498941001882, 34.54658918457385], [-77.3150441952408, 34.54653023942497], [-77.31524356152146, 34.54634117282866], [-77.31531940731826, 34.54625302844678], [-77.31544483137111, 34.54618752994301], [-77.31552799359734, 34.54610617924389], [-77.31564420621604, 34.54605640819351], [-77.31567696880352, 34.54603411491541], [-77.31576662605491, 34.545973963596154], [-77.3158436506307, 34.54592228743525], [-77.31589277747534, 34.54588071371294], [-77.3159560726368, 34.54581779278934], [-77.31601043428356, 34.54576215443356], [-77.31603337019047, 34.54573811527641], [-77.31604451992501, 34.54572726827472], [-77.31614642980617, 34.54566206547737], [-77.31624473517718, 34.54556015235436], [-77.31633910289906, 34.545507466221466], [-77.31640092962563, 34.54544051163185], [-77.3164222480334, 34.545423742078064], [-77.3164463637461, 34.54533261335825], [-77.31645120613489, 34.545313627268406], [-77.31645205585446, 34.545310762802075], [-77.31645356423988, 34.54530643822428], [-77.31644308618763, 34.54518964551387], [-77.31651572117192, 34.54501814789211], [-77.31650236831126, 34.54493631969167], [-77.31651190712768, 34.544846317322744], [-77.31665768131569, 34.54469099407524], [-77.31692343204719, 34.544709853097466], [-77.31718971954896, 34.54467955936898], [-77.31744261639889, 34.54470251941292], [-77.31753479207538, 34.54473014417589], [-77.31775281824196, 34.54475670613902], [-77.31783376056548, 34.544764863954356], [-77.31788782178019, 34.544771115188986], [-77.31807791589635, 34.5448020310229], [-77.3182232299291, 34.54489885506347], [-77.31824790900063, 34.54491477847845], [-77.31824736501906, 34.54493047769719], [-77.31826596821523, 34.54495527788089], [-77.3183465757314, 34.54503863191646], [-77.31834612171694, 34.54508180510497], [-77.31853464781094, 34.5450861274066], [-77.31861155090753, 34.545082018358045], [-77.31865829760763, 34.54508703617943], [-77.31880779963127, 34.54509478223439], [-77.31896073840842, 34.54509962803168], [-77.31900362093229, 34.545104851815495], [-77.31917392089116, 34.545149023219196], [-77.31919874119673, 34.545155410852026], [-77.31920584818211, 34.54515557271124], [-77.31939389693868, 34.54520446082691], [-77.31943442749062, 34.54522401731076], [-77.31954480307354, 34.545233718972455], [-77.31969115617352, 34.545271175156074], [-77.31978460120217, 34.54528577559517], [-77.31994519325112, 34.54532036778122], [-77.32008319746454, 34.54540118453437], [-77.32013321401647, 34.54541948276906], [-77.32017365960144, 34.54543757801257], [-77.32035708446972, 34.54549148720653], [-77.32056390866829, 34.54553845456016], [-77.3206817358909, 34.54556000708498], [-77.32085263316475, 34.54559934364242], [-77.32095438236081, 34.545629747291876], [-77.32126853497581, 34.5457205135932], [-77.32129724121165, 34.54574572096861], [-77.32134422308184, 34.54574818626716], [-77.3214943571297, 34.545782180671885], [-77.32173455900015, 34.54584545213425], [-77.32182405812301, 34.545829929011234], [-77.3221264012406, 34.54587820223217], [-77.32229160591028, 34.5459589568739], [-77.32256749199817, 34.54602350618978], [-77.32276253295234, 34.54608542851186], [-77.32290593926162, 34.54612148926192], [-77.32328142912615, 34.54617562304062], [-77.32335631556583, 34.54619202384032], [-77.3236885807285, 34.54623185493374], [-77.32378615681931, 34.54627653047184], [-77.3239611381429, 34.546312880554765], [-77.32403883064184, 34.546326749654426], [-77.32407767736433, 34.54638247052513], [-77.3241926343319, 34.54645173956844], [-77.32420689645238, 34.54652237929787], [-77.32430699181424, 34.546654946446665], [-77.32439330746854, 34.546740405725295], [-77.3244212486137, 34.54676145999556], [-77.32446161172585, 34.54675463147415], [-77.32456241358577, 34.54677931963911], [-77.32465680171659, 34.546802477224865], [-77.32468673007924, 34.54680199302779], [-77.32485261097742, 34.54682375622826], [-77.32501049020334, 34.546798450874405], [-77.32508868482346, 34.546885292762695], [-77.32524289725181, 34.546923507312286], [-77.32542976842814, 34.54696397898411], [-77.32547651652129, 34.54697599580318], [-77.32563335767796, 34.547015817695154], [-77.32567863189149, 34.54701707819996], [-77.3257273284531, 34.54703832919991], [-77.32590476543295, 34.54708736708046], [-77.32602381220971, 34.54710841412429], [-77.32615432218921, 34.547139941764144], [-77.3264099821302, 34.547182090859394], [-77.32641469388014, 34.54718269839661], [-77.32641791775248, 34.547181898595355], [-77.32673299471324, 34.54713861551152], [-77.32680857421644, 34.54712819330424], [-77.32719024197169, 34.54708041741595], [-77.3272022444441, 34.54708268929403], [-77.3275298101733, 34.5472689107719], [-77.32754331075249, 34.54729601575875], [-77.32754924954214, 34.54751093116834], [-77.32758442785915, 34.54753080622228], [-77.32771812469444, 34.54764642954654], [-77.32792461645946, 34.54770179573556], [-77.327972729655, 34.5477161106805], [-77.32823039152055, 34.54774162610266], [-77.3283640610682, 34.54777123547643], [-77.32863496637123, 34.54784451175668], [-77.32871168333416, 34.54786024876198], [-77.32875433401665, 34.54787189317311], [-77.32898058276797, 34.54793685413638], [-77.3291446622831, 34.547970207993565], [-77.32917989875367, 34.54798876008681], [-77.3292191663765, 34.5480053565519], [-77.32933945207127, 34.54803548078655], [-77.32942854510313, 34.54804201944904], [-77.3295355684241, 34.54804369890005], [-77.3298230120709, 34.547984989794045], [-77.32992937659506, 34.547992348826625], [-77.33025830310979, 34.54806210215136], [-77.33035488033093, 34.54806535550017], [-77.33035828201487, 34.54808643256689], [-77.33044363657285, 34.54815233304035], [-77.33062790999777, 34.548292489078314], [-77.33066641670544, 34.548312365999934], [-77.33070715472543, 34.5483130553163], [-77.33089801747595, 34.5483785160988], [-77.33092172151112, 34.54838509021181], [-77.33109744237491, 34.54841328563582], [-77.3311772808338, 34.54840861608063], [-77.3311787836964, 34.548458115767964], [-77.3314868245063, 34.54855254575753], [-77.33158647443234, 34.5485817640079], [-77.3317461128586, 34.548621374399026], [-77.33182348253393, 34.548643823348165], [-77.33187701834822, 34.54865689676092], [-77.33209356069696, 34.548680869240314], [-77.33226769360361, 34.54874054650089], [-77.33230797315834, 34.54876001885797], [-77.33238833552397, 34.54877386373725], [-77.33255228361539, 34.548816553944455], [-77.33294097409883, 34.54887131249425], [-77.33305114402397, 34.54881743425821], [-77.33312978537906, 34.548862396794924], [-77.333359778992, 34.54887901791179], [-77.33344232593934, 34.54887931388407], [-77.33374261343195, 34.54888151695219], [-77.33383502259028, 34.54887590691369], [-77.33402871675807, 34.54890643897832], [-77.3340338274316, 34.548906514420345], [-77.33422708826808, 34.54889970379548], [-77.33437287800405, 34.54888744518103], [-77.33451133751223, 34.54895826752093], [-77.33461670708007, 34.5490290446052], [-77.33474237809475, 34.54909061254459], [-77.33476742721433, 34.549166262845276], [-77.33500145570169, 34.54936853865649], [-77.3350108607858, 34.54937018929613], [-77.33501083877671, 34.54937608084919], [-77.33502843957251, 34.54939069601758], [-77.33528594220334, 34.54958134119147], [-77.33533174822244, 34.54961012754034], [-77.33538834865604, 34.54961563904534], [-77.33558056391469, 34.54965946662034], [-77.33558362603743, 34.54966021386397], [-77.3355849346288, 34.549659946230385], [-77.33578002702727, 34.549656303231735], [-77.33597810894264, 34.549603875786445], [-77.33617335503467, 34.54962576898389], [-77.33641635431285, 34.54975504292236], [-77.33656383044413, 34.549718381959934], [-77.33671160486091, 34.54971322813161], [-77.33676020685984, 34.54971553067645], [-77.3367831387801, 34.549718932268945], [-77.33687884045554, 34.549719518617835], [-77.33695643276255, 34.549719177627345], [-77.33713282443547, 34.54969575385185], [-77.33715300284686, 34.54970795920952], [-77.33726105235516, 34.54978696453345], [-77.33730672845448, 34.54980554093818], [-77.33734609072879, 34.54984714694451], [-77.3375242844947, 34.54988230801442], [-77.33753227312747, 34.549992778973596], [-77.33753192082064, 34.55011253410832], [-77.33753058217765, 34.55011887837492], [-77.3375968795357, 34.55022830552265], [-77.33767715218343, 34.55024934215697], [-77.33772907911711, 34.55026330740576], [-77.33790867821045, 34.55031554266068], [-77.33801003795261, 34.55034526313497], [-77.3381192446048, 34.550369499988676], [-77.33815966905127, 34.55036701888186], [-77.33816665267588, 34.55039118521889], [-77.33850939725995, 34.5504762859967], [-77.33870791279276, 34.550434975670214], [-77.33890101488552, 34.55051978152156], [-77.3389390530885, 34.55052492145961], [-77.33921952730968, 34.55053063938399], [-77.33929295746327, 34.55054924003145], [-77.33936511237792, 34.55058605531791], [-77.33942704370543, 34.5506150004909], [-77.33943498822347, 34.55063721024959], [-77.33948666695204, 34.550661777649864], [-77.33950957043085, 34.5506732416635], [-77.33952325562103, 34.55068572003826], [-77.33953511047353, 34.550689217115746], [-77.33955886244767, 34.55069628893556], [-77.33956018873454, 34.55069614552266], [-77.33958404102995, 34.55069559629322], [-77.33959510743513, 34.550690687330174], [-77.33958924979945, 34.550688385865804], [-77.33959294623347, 34.55068334759956], [-77.33958962270438, 34.55068056196602], [-77.33958438778178, 34.55068060115694], [-77.33958137760442, 34.550679257210184], [-77.33957831659694, 34.550677851968516], [-77.3395782312123, 34.55067781337893], [-77.33957533874664, 34.550676283528546], [-77.33957401775612, 34.5506718266988], [-77.33958427768948, 34.55066952160926], [-77.33958463170096, 34.55067005297678], [-77.3395854897456, 34.55066964807526], [-77.33958710279606, 34.55066888689497], [-77.33959358724589, 34.55066582695645], [-77.33960832606166, 34.550658871873736], [-77.33960939884186, 34.55066018824756], [-77.33961962189919, 34.55067186049851], [-77.33962559898345, 34.55067597291425], [-77.33963341492638, 34.55068280318677], [-77.33964465798859, 34.55069172286003], [-77.33968221888217, 34.55069465745619], [-77.33971422623415, 34.550719458755175], [-77.33973820765802, 34.550741625610016], [-77.3397652099656, 34.55077333061624], [-77.33977019839737, 34.550777760573524], [-77.33977847211658, 34.55077695601152], [-77.33979525791696, 34.5507690090248], [-77.33984109350176, 34.55073972254827], [-77.33987241057078, 34.55070044121938], [-77.3398736365883, 34.55069653183514], [-77.33987857560263, 34.5506927347], [-77.33991664424327, 34.55065229621217], [-77.34007236211788, 34.550609520112864], [-77.34007680993848, 34.550609593116256], [-77.34012575777817, 34.55062987943914], [-77.34028346504182, 34.55069116727945], [-77.34031070501403, 34.550719899132645], [-77.3403922602969, 34.55080555368545], [-77.34042389401712, 34.55082627695085], [-77.34046366098391, 34.550859356504], [-77.34057046862965, 34.550956737812655], [-77.34064754311169, 34.551013654749546], [-77.34065634194822, 34.55101649094075], [-77.34077290232773, 34.5510449431096], [-77.34085157617919, 34.55106316814894], [-77.3409583520695, 34.55109135974198], [-77.3410101938319, 34.55110677942113], [-77.34104666621369, 34.55111609423163], [-77.34121086812135, 34.55115803013104], [-77.34124204342012, 34.55115660057167], [-77.34125636963918, 34.55116189464762], [-77.34125950836598, 34.55117045244915], [-77.34143704483859, 34.55121338060756], [-77.34148937362274, 34.55122697382416], [-77.34157409528932, 34.5512476125865], [-77.34163219882853, 34.5512635661282], [-77.3417497349511, 34.55127135733393], [-77.3418277029561, 34.55129860142101], [-77.34189856163755, 34.5513233509233], [-77.34197682411906, 34.55134091052581], [-77.34202269313612, 34.55135589658539], [-77.34221582544467, 34.55139875808531], [-77.34221902055111, 34.551399035105916], [-77.34241442719383, 34.551394568282234], [-77.34254862360442, 34.551391036379485], [-77.34280767516658, 34.551367672229546], [-77.34291023371384, 34.55135882398421], [-77.34311722298402, 34.55134067909411], [-77.34320109924754, 34.5513331305867], [-77.34328551028581, 34.55131627104368], [-77.34335813640175, 34.55135821462868], [-77.34338886328351, 34.551472884440635], [-77.34348425402109, 34.551584891557226], [-77.34351640575008, 34.551624289161026], [-77.34358517379772, 34.551703733915446], [-77.34363429162786, 34.55177645396478], [-77.34363880349068, 34.55180747817465], [-77.34377783487969, 34.55186205525391], [-77.34381923479674, 34.5518778895346], [-77.34388890455486, 34.551893909333444], [-77.34397299376745, 34.551912142695336], [-77.34408378013404, 34.55191910493547], [-77.34416838852366, 34.55195201468261], [-77.34421361625454, 34.55196960665198], [-77.34430773961427, 34.551991023909906], [-77.34436345231094, 34.552006242182955], [-77.344497468432, 34.55205118125663], [-77.34453185564576, 34.55206282434682], [-77.34455825380454, 34.55207185200873], [-77.3447495103706, 34.55213733162472], [-77.34475149517912, 34.55213801115441], [-77.34475302918536, 34.55213860641265], [-77.34476380336265, 34.55214204289114], [-77.34494787228627, 34.55220243658199], [-77.34499375282249, 34.552196086576615], [-77.34514421282731, 34.552201333598475], [-77.3453507949873, 34.552167323582566], [-77.34553686526328, 34.55220036612798], [-77.34566700429932, 34.552250153744794], [-77.34578942527781, 34.552318186562374], [-77.34592472377432, 34.552407394865774], [-77.34595516139058, 34.55243415231456], [-77.34596377198054, 34.55245227700658], [-77.34603535524798, 34.55249415838909], [-77.34604593969219, 34.55250166021186], [-77.34611836202446, 34.552523566907766], [-77.34615772126705, 34.55252225952965], [-77.34626977122001, 34.55253066142759], [-77.34630141518159, 34.552534225181944], [-77.34631434674147, 34.55253793104556], [-77.34648896355954, 34.552513012786655], [-77.3465524802396, 34.552515742231286], [-77.3467073432425, 34.552522083612956], [-77.34676891448085, 34.552542569348844], [-77.34688046029804, 34.552565206358736], [-77.3470315673643, 34.55258521257524], [-77.34709836660934, 34.55259188904123], [-77.34725202111332, 34.552607782876976], [-77.347310097541, 34.552615843268775], [-77.34748863229109, 34.55269462023989], [-77.34755925319766, 34.552712359387485], [-77.34776708226443, 34.55275281645726], [-77.34787855099106, 34.552812459458465], [-77.34809127923538, 34.55288062720057], [-77.3482004977005, 34.5529076207804], [-77.3482686386084, 34.552923004287464], [-77.34844250966623, 34.552965878379325], [-77.3484639518263, 34.55296658710918], [-77.34848466748217, 34.552959243599496], [-77.34854340867582, 34.552937979497905], [-77.34866187261572, 34.55289687679535], [-77.3487742561789, 34.55285177935497], [-77.34885989156541, 34.55282288556215], [-77.34892502153681, 34.552800952828704], [-77.34901354872396, 34.55274791765302], [-77.34904449035074, 34.55273489663079], [-77.34905839475869, 34.552727833069916], [-77.3491368136911, 34.552655630873005], [-77.34920536554785, 34.55259790492213], [-77.34922601232087, 34.55257484459054], [-77.34926062994917, 34.55247055266731], [-77.34926173263422, 34.552468034743555], [-77.34926176551868, 34.55246737856533], [-77.34926182194747, 34.55246668270511], [-77.34926301090644, 34.55236706691822], [-77.34926327203003, 34.55234490648039], [-77.34926326641195, 34.55234475219266], [-77.34926325095691, 34.55234458151834], [-77.34926250201168, 34.552222451794115], [-77.34926294125644, 34.552220238729824], [-77.34926117722787, 34.55210513317312], [-77.34926012618897, 34.55210038328401], [-77.34925689150742, 34.55209310269241], [-77.3492218423279, 34.55201421448267], [-77.34919107149778, 34.55198790991978], [-77.34916210177983, 34.55193873449882], [-77.34907843623701, 34.55185684154934], [-77.34902735953717, 34.55179932127608], [-77.34900158889286, 34.55177035581014], [-77.34888647093473, 34.55166787930522], [-77.34888413258854, 34.551666327712745], [-77.34887525945118, 34.551659006009615], [-77.34877412775914, 34.551558266478466], [-77.34874329621343, 34.55153152547626], [-77.34869382844782, 34.55150837875267], [-77.34862382875073, 34.55145748389652], [-77.34857132746858, 34.55142027776826], [-77.34850079036481, 34.55136609682838], [-77.34849124748028, 34.55135415161398], [-77.34848537623358, 34.55134508342601], [-77.34844927815695, 34.551298985683154], [-77.34843846964787, 34.5512794395438], [-77.34841645080253, 34.5512494453933], [-77.34841182305593, 34.551243170179006], [-77.34841000284231, 34.55124063799899], [-77.34840565701576, 34.551234766932595], [-77.34839130806986, 34.55121551962244], [-77.34838126186635, 34.55120204389592], [-77.34838035986674, 34.551200833975294], [-77.3483707040367, 34.5511878818798], [-77.34838238233846, 34.551179838805375], [-77.34839467393724, 34.5511767515394], [-77.34838704747288, 34.55116749705826], [-77.34838273913, 34.551164338705], [-77.34837116987089, 34.55115721228216], [-77.34836452250491, 34.55115436956996], [-77.34836280611583, 34.551150765145216], [-77.34835867306411, 34.551143792044286], [-77.34835864046644, 34.55114373506469], [-77.34835863015778, 34.55114371540396], [-77.34835859865893, 34.551143671815524], [-77.3483550869136, 34.551138881245535], [-77.34835272319825, 34.55113691474495], [-77.34835065458792, 34.55113469229229], [-77.34834850310874, 34.55112987135372], [-77.34834677649228, 34.55112759073876], [-77.34834338366335, 34.55112510859817], [-77.3483355486181, 34.551124084799014], [-77.34834074552492, 34.551119459675796], [-77.34833943956788, 34.55111587426922], [-77.34833777230911, 34.551114269299276], [-77.34833488427864, 34.55111120030932], [-77.34832831409781, 34.55110634047344], [-77.34831125415187, 34.551105108012656], [-77.34831143481526, 34.55111225336915], [-77.34831030895035, 34.551112777859956], [-77.34830928655784, 34.55111256249214], [-77.34830202392472, 34.55111114644367], [-77.34830162247869, 34.551108182915215], [-77.3483095365173, 34.55110487588326], [-77.34831008796344, 34.551104540499225], [-77.34831058176519, 34.55110092642079], [-77.34831437871786, 34.55108887783342], [-77.34831110009316, 34.55107840956569], [-77.34831006882627, 34.55107489028348], [-77.34830979307307, 34.55107423640184], [-77.34830900920723, 34.55107296730757], [-77.3482851493703, 34.5510334049231], [-77.34826730169311, 34.551019145547635], [-77.34824783842282, 34.55098110265003], [-77.34822966292163, 34.55095470708489], [-77.34813836755144, 34.55091528815561], [-77.34811919031121, 34.55088718899192], [-77.34803932561334, 34.55085735733043], [-77.3480218463973, 34.5508519246535], [-77.34798246114262, 34.550815311774954], [-77.34795261064077, 34.55080228657168], [-77.34792534553856, 34.550780047773095], [-77.34791291570934, 34.55076411371703], [-77.3479026356118, 34.55071941907387], [-77.34789460248649, 34.55070554372262], [-77.34785255008799, 34.55066454465863], [-77.34780230090998, 34.550553975199094], [-77.34773565233293, 34.55049263371384], [-77.34773068948682, 34.55048430901144], [-77.34769059627916, 34.55039713389829], [-77.34754434729322, 34.550275268995456], [-77.34754014926813, 34.55026960455508], [-77.34753614485369, 34.55026748170437], [-77.34743997369995, 34.55010404064737], [-77.3474133416081, 34.55004033131858], [-77.34730914697549, 34.54996166755947], [-77.34728729992167, 34.54993605720698], [-77.34722243952507, 34.549861124829306], [-77.34720777077172, 34.5498250903092], [-77.34719610360035, 34.54980583984273], [-77.34716307403636, 34.54978263306655], [-77.34706913310235, 34.54966054935971], [-77.34699434392799, 34.549610979244406], [-77.34693948715284, 34.54951728291375], [-77.346814602931, 34.54939202126171], [-77.34678022399589, 34.54935863620695], [-77.34665859248301, 34.54924709561067], [-77.34658605914686, 34.54918008476591], [-77.34647570063046, 34.54900093516329], [-77.34644008959543, 34.54895626728329], [-77.34642879639807, 34.5489382488008], [-77.34639769365185, 34.54892093550031], [-77.3462687639687, 34.54881797319091], [-77.34624270100285, 34.548739847836664], [-77.34620661281653, 34.54869415221384], [-77.34614460604611, 34.54867055604577], [-77.34610838052909, 34.54857377974875], [-77.3460694534063, 34.54851995469503], [-77.34601587332732, 34.54845260437205], [-77.34587186267416, 34.548394203154814], [-77.34585601386186, 34.54830584409511], [-77.34578977349315, 34.54817032890454], [-77.34571367403692, 34.54808150379938], [-77.34568861293931, 34.548050143452], [-77.34565563010085, 34.547967445170194], [-77.34563498483455, 34.54794403994627], [-77.3455596660706, 34.547906350437586], [-77.3455023332861, 34.54786709085434], [-77.34538190660959, 34.54779948737812], [-77.3453288615382, 34.54764722937811], [-77.34530385516108, 34.547617189203564], [-77.34525186784853, 34.547532328647996], [-77.34518700393848, 34.54746424557683], [-77.34516212048908, 34.54742639940514], [-77.34510776851862, 34.54734162057065], [-77.34508140791046, 34.5473156019537], [-77.34507415004751, 34.54730827797885], [-77.34495386642996, 34.54721154168689], [-77.34494104794888, 34.547167629393215], [-77.34486907513256, 34.54710672148153], [-77.3446018351294, 34.54694156877265], [-77.34458734217515, 34.54677463453066], [-77.34448629575107, 34.54668070631665], [-77.34427508388629, 34.54670608062064], [-77.34410082566764, 34.546371483366734], [-77.3440896166932, 34.546363703703705], [-77.34408878741064, 34.54635672141997], [-77.34408360807704, 34.54634636864556], [-77.34382599781823, 34.546149708021396], [-77.34378793204775, 34.54610925251769], [-77.34371791382105, 34.54595152505544], [-77.34369189163314, 34.545940566456764], [-77.34368262048628, 34.54592551557324], [-77.3436890556678, 34.54590593835521], [-77.34363822450115, 34.54586049573626], [-77.34362259494489, 34.54582883546919], [-77.34359749103255, 34.54581535288848], [-77.34360578933185, 34.54580331207761], [-77.34358464884964, 34.545780355832946], [-77.34354340943507, 34.54576192835634], [-77.34352634012077, 34.545746711987185], [-77.34346322432131, 34.54575154743932], [-77.343382335715, 34.545723895697094], [-77.34334414554158, 34.54572096431171], [-77.3433309842119, 34.545705802653394], [-77.3431513387817, 34.545625487281804], [-77.3430915660881, 34.54552090627977], [-77.34294479457414, 34.54542812387091], [-77.34286831761288, 34.545356918226915], [-77.34281294347004, 34.54531616914003], [-77.34275195524906, 34.5452782595801], [-77.3427073622505, 34.545237344775245], [-77.34268363396106, 34.54521236151443], [-77.34260631951874, 34.545130540100075], [-77.3425876367557, 34.54510376167981], [-77.34258226886138, 34.54509064001759], [-77.34256034029998, 34.54507540105686], [-77.34229822790962, 34.54482284316016], [-77.34218044773692, 34.544672699267224], [-77.34217947366675, 34.54467134352535], [-77.3421771376651, 34.544668624811116], [-77.34204024446433, 34.54453533385653], [-77.34183479088192, 34.54450660393563], [-77.34178838244749, 34.544502376569895], [-77.34174644700212, 34.544516261756925], [-77.34174125266156, 34.544491058414735], [-77.34155297733065, 34.544421287009264], [-77.34139766943025, 34.544420925652275], [-77.34118870151943, 34.54432572167005], [-77.34126189462535, 34.54422774186483], [-77.3412299919913, 34.54418295515275], [-77.34120724561687, 34.54416674479889], [-77.34114242716224, 34.54412853061176], [-77.34113535178327, 34.54408857738201], [-77.3411114165975, 34.54406637813836], [-77.34105128445582, 34.54407681284812], [-77.3410140555074, 34.5440323161358], [-77.34092676854715, 34.54406461425557], [-77.34073920261898, 34.54407157213913], [-77.3406219056398, 34.54401314691506], [-77.34053014084297, 34.543930812736846], [-77.34037179624582, 34.54386684566791], [-77.34023569904826, 34.54373691266462], [-77.34022934591266, 34.543733274272384], [-77.34022965495257, 34.54372921559231], [-77.34022026805958, 34.543720709457375], [-77.34010983995091, 34.543624040111304], [-77.34008259655326, 34.54360295491448], [-77.33997228763275, 34.5435214156945], [-77.33991902805249, 34.54348535976866], [-77.3398494909972, 34.54346084996232], [-77.33970439462848, 34.54340639635212], [-77.33968295142547, 34.54331821378393], [-77.3396569184659, 34.54329987720011], [-77.33957765263386, 34.54326094154921], [-77.33956045052105, 34.54322725820274], [-77.33955214984786, 34.5432199005432], [-77.33955144688105, 34.54321471925631], [-77.33952622742633, 34.54319656241965], [-77.3395138080892, 34.54318857244723], [-77.33947407025786, 34.54316464387108], [-77.33947239101713, 34.54315957088022], [-77.3394639525229, 34.543155945726255], [-77.3394059217936, 34.54314952165959], [-77.33936581780014, 34.5431554017965], [-77.33931002649373, 34.54315341819601], [-77.33926733039527, 34.543170104604336], [-77.33921794383077, 34.54314027776204], [-77.33913578287346, 34.543112548877225], [-77.33908448969521, 34.54304362854752], [-77.33908007597803, 34.54303769803999], [-77.33907832641523, 34.54303534723453], [-77.33907427896408, 34.543029908848354], [-77.33899520865856, 34.542977558590096], [-77.33892198769792, 34.54293802623103], [-77.33893954175014, 34.542848867765926], [-77.33896886992402, 34.54275614809785], [-77.33900670541743, 34.54268102394623], [-77.33903654634818, 34.54264768792477], [-77.33903273134055, 34.542587168092794], [-77.33902274141401, 34.54255630864358], [-77.338997961969, 34.542492803521526], [-77.33891247852202, 34.542449758352575], [-77.3389298016562, 34.54234732320421], [-77.33891773430196, 34.542326593695094], [-77.3389123743957, 34.54231621594526], [-77.33882047136329, 34.54221817363081], [-77.33879058329103, 34.54216701695943], [-77.33874310434045, 34.54200803668793], [-77.33872996812039, 34.54198637268881], [-77.33872380156993, 34.54197620291271], [-77.33870680063032, 34.5419446843407], [-77.33863762912094, 34.541877244458504], [-77.33859551909217, 34.54183191514764], [-77.33851862593797, 34.54177195101765], [-77.33850082457703, 34.54164169075051], [-77.33844973517706, 34.54153704150044], [-77.33843399890463, 34.541471437627465], [-77.33841076806026, 34.54142023716601], [-77.3383804431718, 34.54133468543685], [-77.33836995939907, 34.54130369759455], [-77.33836661448903, 34.54128108030767], [-77.33837484535367, 34.54108355774839], [-77.33842404637294, 34.54105110090367], [-77.3384031931276, 34.54101207310093], [-77.33841771922455, 34.54080719327067], [-77.33840731752808, 34.540767618378396], [-77.33843617579134, 34.5406821300123], [-77.33843340573642, 34.540615260661305], [-77.33841269920454, 34.54056309769791], [-77.33840572798489, 34.54052748624798], [-77.33835066683804, 34.54036972045413], [-77.33831620929851, 34.54033215761752], [-77.33821437561413, 34.54018957946725], [-77.33820864089907, 34.5401028107716], [-77.33825378331514, 34.54003101129936], [-77.33824222046385, 34.53992718022796], [-77.33818918398273, 34.539860791535816], [-77.33820256499546, 34.53971584609533], [-77.33821508650038, 34.53961224856245], [-77.3382056701612, 34.53951078261859], [-77.33820558941754, 34.53947222425209], [-77.33818291410235, 34.539372058284], [-77.33817761855798, 34.53936565829245], [-77.33813844374411, 34.53928168780481], [-77.33810121054171, 34.5392115254721], [-77.33812015551172, 34.539136266732754], [-77.33805489822902, 34.53910355850215], [-77.33800034645027, 34.53903108941281], [-77.33799660027238, 34.53902699582322], [-77.33798946403112, 34.53901438698973], [-77.33794333450362, 34.53894662604014], [-77.33793153620364, 34.53891857703256], [-77.33790408635092, 34.53886715556166], [-77.3378711981982, 34.5388048462637], [-77.337870685036, 34.53876025398719], [-77.33784622479095, 34.53868602911855], [-77.33777397456063, 34.53859208505938], [-77.33773826634194, 34.53853802452702], [-77.33774489361235, 34.538455785253554], [-77.33761220260794, 34.53835319083701], [-77.33754449450693, 34.538283027291996], [-77.33750776774056, 34.538245071376316], [-77.33736940498815, 34.53811004285609], [-77.33735725899982, 34.5380219000063], [-77.33733911824282, 34.53795573548079], [-77.3372287377704, 34.53796013514449], [-77.33719660527946, 34.537922596348196], [-77.33713066706501, 34.53787210246932], [-77.33712851909686, 34.537868565988056], [-77.33713234505916, 34.537809429399566], [-77.33710560644741, 34.537733208400645], [-77.33712783198234, 34.53763291543305], [-77.33710464559513, 34.53756859565897], [-77.33684979191926, 34.537372138290486], [-77.3368288976994, 34.53737640427733], [-77.33683632358519, 34.537362367528424], [-77.33680853702973, 34.53734017369161], [-77.3371347458214, 34.537145021230245], [-77.33724919476037, 34.53707677017847], [-77.33726936190531, 34.53706771825288], [-77.33804644752449, 34.536552746742046], [-77.33812222910893, 34.53648932009385], [-77.33813847040636, 34.53644063899027], [-77.33850299822642, 34.53617788994212], [-77.3386944584577, 34.53596502352662], [-77.33881345210303, 34.535853920960946], [-77.33881389359368, 34.53583244227408], [-77.3386946151212, 34.53548223539693], [-77.33846388852919, 34.53547763755317], [-77.33840076234762, 34.535423643414056], [-77.3384147205057, 34.53538970270017], [-77.33836789738612, 34.535305961600436], [-77.3383631712233, 34.53525032644267], [-77.33834740171181, 34.535186500555625], [-77.33838445550735, 34.53512656466706], [-77.3384731199893, 34.535078771541706], [-77.33858467335983, 34.53508274501028], [-77.33866929757518, 34.53508301363487], [-77.3388536873068, 34.53511368032152], [-77.33885881309135, 34.535116673367895], [-77.33886454857357, 34.53512729888519], [-77.33888630765891, 34.53512248917029], [-77.33909727551134, 34.53517759375474], [-77.33923983286462, 34.53529460146332], [-77.33923827258624, 34.5353031808868], [-77.33925284298286, 34.53531131558347], [-77.33950115785458, 34.53535469628654], [-77.33964374405653, 34.53538270736509], [-77.33994793692554, 34.53539093180979], [-77.34047094064958, 34.53512586744284], [-77.34090177926136, 34.53486169161146], [-77.34077480663612, 34.53459252157429], [-77.34123886131111, 34.534304995329805], [-77.34172742744707, 34.53427004276327], [-77.3420258415375, 34.53422335402935], [-77.34219686658626, 34.534280461765974], [-77.34241842152177, 34.534221905492714], [-77.34248007549218, 34.534139651681755], [-77.34252805950682, 34.53409548156384], [-77.34268923152939, 34.53390792045612], [-77.34275652097581, 34.53381779426358], [-77.34279840225828, 34.53379782427154], [-77.34282178082162, 34.53375366854831], [-77.3429376115635, 34.533546921601], [-77.3428295750681, 34.533416150346454], [-77.34278193131982, 34.53335509401125], [-77.34262069582081, 34.5333476971902], [-77.34243996113155, 34.533289353567795], [-77.34231239878201, 34.53322767801379], [-77.34232861151699, 34.533144899750646], [-77.34205408125813, 34.53300097228349], [-77.34196427009432, 34.53300840287099], [-77.34184696646702, 34.532969372572936], [-77.34175170319673, 34.53292789799419], [-77.34166417394883, 34.53288699914832], [-77.34152877389502, 34.532855233091084], [-77.34127635281025, 34.53268280352914], [-77.34121726707812, 34.53260824910449], [-77.34116961233143, 34.532577179499036], [-77.34089013511155, 34.5324093230385], [-77.34084694805344, 34.532405764533046], [-77.34082583044574, 34.53238181616166], [-77.34068973550727, 34.53227446404873], [-77.34063220276198, 34.532164851590395], [-77.34056455924045, 34.53213674971344], [-77.34050508133814, 34.53208560978869], [-77.34038026110092, 34.532123796841496], [-77.34042103007316, 34.53219522964648], [-77.34030414394483, 34.53228752071711], [-77.34016615422577, 34.53223189368063], [-77.34020820160487, 34.53216503981068], [-77.34011044304398, 34.53217647272972], [-77.34005728020594, 34.53203789229759], [-77.34002687243408, 34.53200711089341], [-77.33977833958754, 34.531830747782585], [-77.33977387092261, 34.53179868632499], [-77.33972708406851, 34.53177965928461], [-77.33958197425366, 34.53173514493388], [-77.33933798240693, 34.531631223925686], [-77.33932074331854, 34.53162982043149], [-77.33928924263088, 34.53162357954307], [-77.33928433181357, 34.531590233363374], [-77.33923913648279, 34.53138596839304], [-77.33907516916503, 34.531332952933994], [-77.33895581393374, 34.531183227617646], [-77.33879662096822, 34.5310610348876], [-77.33861772743852, 34.530985716194515], [-77.33846701335429, 34.530827749408665], [-77.33818275158916, 34.53066468279374], [-77.33780083845612, 34.53084911040011], [-77.33778636021819, 34.530831408224444], [-77.33776745496046, 34.530851699587096], [-77.33739559752394, 34.53075501730117], [-77.33729003497668, 34.53068704661663], [-77.33730926816409, 34.530628611972986], [-77.33718120589148, 34.53045788189769], [-77.33714905109905, 34.53037691912537], [-77.33708264399877, 34.530227240370934], [-77.33701591580827, 34.53020027783486], [-77.3367738288837, 34.53017814547601], [-77.33662744002572, 34.53002532974408], [-77.33643224119061, 34.52995392469555], [-77.33636075169194, 34.52984143059115], [-77.33624353501062, 34.529653205127445], [-77.33621787754836, 34.52963344960682], [-77.33599709273942, 34.52949289221881], [-77.33586745047924, 34.52942274238159], [-77.33586080380933, 34.52942094639747], [-77.3358564613909, 34.529417935050404], [-77.3358341014664, 34.529413528911455], [-77.3357741108759, 34.529436165899575], [-77.33583462776808, 34.52944075049324], [-77.33561751085958, 34.52980488297743], [-77.3354545199229, 34.529824089104125], [-77.33527578464279, 34.529863553963196], [-77.3350653341704, 34.52967996027924], [-77.33482413408271, 34.52972260175811], [-77.33457576275637, 34.529794448061025], [-77.3345731961329, 34.52985368696122], [-77.33456725609436, 34.52991694449275], [-77.33449562385621, 34.53000383615774], [-77.33443370833429, 34.53001798026425], [-77.33427290762066, 34.52999776880926], [-77.33409277045934, 34.52992277361631], [-77.33409418190831, 34.52979219783521], [-77.33396927361214, 34.529695715625685], [-77.3334987207296, 34.529529319672164], [-77.33330537048948, 34.529672667316134], [-77.33312620180881, 34.5298169471045], [-77.33312059434381, 34.52983110362837], [-77.33319623967168, 34.52992928422499], [-77.33322933656243, 34.52996384004891], [-77.33328556557515, 34.53003884785669], [-77.33328708638923, 34.530040812039786], [-77.33329042992091, 34.53004755078013], [-77.33332192483454, 34.53013511713722], [-77.33332692524795, 34.53017998734978], [-77.3333489266563, 34.53027455309235], [-77.3333592182284, 34.53031991809432], [-77.33335013976495, 34.53033558273956], [-77.3333724681423, 34.53033820280619], [-77.33338159534631, 34.53034775352102], [-77.33341597566117, 34.53038731996047], [-77.33339492088793, 34.530441878257015], [-77.33345573269247, 34.53049112068586], [-77.33337064611254, 34.53046024286964], [-77.33334050410073, 34.530435011330916], [-77.33331514609674, 34.53040181867691], [-77.3332941211237, 34.53039747470625], [-77.33328265586783, 34.530382516920334], [-77.33325380125265, 34.53034943562285], [-77.33324472081452, 34.5303141859398], [-77.33321331085172, 34.530294053791216], [-77.33315344646056, 34.53026257617733], [-77.3330903701103, 34.5302110584142], [-77.3330633927538, 34.530193202833615], [-77.33301093007236, 34.530129071066895], [-77.33297331000361, 34.530083747897706], [-77.33294996258601, 34.53005453348823], [-77.3328992099399, 34.529991144591804], [-77.33288892029414, 34.52998005247827], [-77.33285867635757, 34.529951975683154], [-77.33277164416592, 34.52986792947186], [-77.33278423603961, 34.529817926703075], [-77.33270712101566, 34.52981128009691], [-77.3326453954575, 34.529848118473396], [-77.33256159271184, 34.52989813244861], [-77.33230907651873, 34.53004883564191], [-77.33213657858656, 34.53009717469793], [-77.33213679473576, 34.53020402843212], [-77.33220082449631, 34.53025928947265], [-77.33230147543291, 34.530376183284766], [-77.33232610451509, 34.530405834363584], [-77.33233538199644, 34.53042029059428], [-77.33242475544122, 34.530572524375415], [-77.33246334832899, 34.530646706663035], [-77.33249177062976, 34.53076696291049], [-77.33247845300757, 34.53088935077391], [-77.33247197394525, 34.53101944572758], [-77.33244663293877, 34.53113874200981], [-77.33252795204811, 34.531218419541446], [-77.33258206010117, 34.531307755159496], [-77.33260131039779, 34.53136131763133], [-77.33256970030706, 34.53142815818855], [-77.33266990332118, 34.53141442245129], [-77.33272076424129, 34.53146654972262], [-77.33278072693902, 34.531509836185045], [-77.33283462988055, 34.53155494807475], [-77.33273284475023, 34.53158722070552], [-77.33268048151712, 34.53160409348368], [-77.3326654048289, 34.53160819492522], [-77.33264753191816, 34.53159948759854], [-77.33240728579209, 34.53155102614616], [-77.33227705275446, 34.531427972712386], [-77.33225690963097, 34.53141083735388], [-77.33211245268507, 34.531291426519786], [-77.331888390474, 34.531261175866256], [-77.33184714476275, 34.531250812489965], [-77.33168652853936, 34.531248031588646], [-77.33156175097488, 34.531225392427054], [-77.33140631195364, 34.531232052518384], [-77.33110380030634, 34.53124048351982], [-77.3308824368193, 34.53125664970898], [-77.33059897019024, 34.53133573969127], [-77.33031406133227, 34.531441305582405], [-77.3300033380167, 34.53154251929749], [-77.32991815530198, 34.53158623480242], [-77.329817679494, 34.531579479971896], [-77.32954116650819, 34.531565872002034], [-77.32962995212887, 34.531721489241455], [-77.3296683168196, 34.53178300571176], [-77.32962115713171, 34.53185324268634], [-77.32951835116067, 34.531898741138015], [-77.32940959306055, 34.531998634530765], [-77.32919495648038, 34.532095870673885], [-77.329164510071, 34.53212770334037], [-77.32895788693082, 34.532374765247724], [-77.32871620549746, 34.53263244109451], [-77.32854459807547, 34.5328194946264], [-77.32848435982315, 34.53293246546107], [-77.32817475595704, 34.53313622855113], [-77.327917115626, 34.533234222870554], [-77.32785294463807, 34.5332680446133], [-77.32776813227296, 34.53343505038003], [-77.32751880121731, 34.53348205928537], [-77.32736479316239, 34.53358302682787], [-77.32728101061875, 34.533694671055876], [-77.32711580998826, 34.53393067917004], [-77.32695798682937, 34.53403420473505], [-77.32664720610192, 34.53417579657511], [-77.32602873291125, 34.53457535493894], [-77.32552498747395, 34.53481589341871], [-77.32425833661641, 34.53549838518671], [-77.3240959099464, 34.535621461337094], [-77.32341461540986, 34.5359401404478], [-77.32234743552523, 34.53640645180821], [-77.32200026881105, 34.53658826209465], [-77.3215680667781, 34.53686421963579], [-77.3200885389387, 34.537644632850125], [-77.31963910540247, 34.538120623157894], [-77.31938594397914, 34.53829617249843], [-77.31915948093919, 34.53843666924898], [-77.31829933996342, 34.538760675867934], [-77.31757479734723, 34.53905194518492], [-77.31632797943277, 34.53957552559574], [-77.31610109522059, 34.539677488464164], [-77.3159890259896, 34.53971262643691], [-77.31550879984135, 34.53998862137358], [-77.31420381948719, 34.54074088160111], [-77.3128078705765, 34.541440548060976], [-77.31141472648926, 34.54223962308649], [-77.3103480961349, 34.54283785801124], [-77.30962471479998, 34.54324783927847], [-77.3085271331974, 34.54393841426764], [-77.30803113100663, 34.5442345541061], [-77.30719730907558, 34.544803615983255], [-77.30675702029629, 34.545063740161304], [-77.30643650753088, 34.54526382507266], [-77.30501534567598, 34.546096059481286], [-77.30491699676494, 34.54615501009904], [-77.30484404016764, 34.546199802025505], [-77.3043867120326, 34.54646751303123], [-77.30325244862136, 34.54709704802183], [-77.30304312790018, 34.547229783338516], [-77.30283427240785, 34.54738832330253], [-77.30132141790808, 34.548378687014406], [-77.30006411368576, 34.549105362998304], [-77.2993907743705, 34.549425791278736], [-77.29875387332106, 34.54993228980431], [-77.29769659827699, 34.55058811436014], [-77.2968748382944, 34.5511468134557], [-77.29610410044631, 34.55179997047378], [-77.29527602664771, 34.552341458535444], [-77.29514580932128, 34.55240835490347], [-77.2942022859225, 34.55286112428274], [-77.29368474957893, 34.55321587000451], [-77.29285610012275, 34.55371599036748], [-77.29239284529108, 34.55396728295081], [-77.29209088621143, 34.55419798994211], [-77.29055761937781, 34.55502483698793], [-77.29051927302827, 34.55504219327046], [-77.29049990667473, 34.55505685938834], [-77.29045831618798, 34.55507949512108], [-77.28757889416357, 34.5567724993177], [-77.2872057447126, 34.557008305105775], [-77.28663684847622, 34.557377598195934], [-77.28501711232624, 34.558540160978325], [-77.28390266813429, 34.55932784092439], [-77.28242666292638, 34.560305531788764], [-77.28225259803867, 34.56042299061405], [-77.28196365512316, 34.56061393441068], [-77.28060532594787, 34.56139885500873], [-77.27952192649559, 34.562046169307784], [-77.27895701986012, 34.562416414842744], [-77.27802565403243, 34.56303964912628], [-77.27730642623187, 34.563528100270865], [-77.27689349344257, 34.56380846101624], [-77.27636551831047, 34.56419013625946], [-77.2756576507572, 34.564654016251275], [-77.27541628124825, 34.56479456057466], [-77.27490429774818, 34.56524309222512], [-77.27454144900551, 34.56550896269479], [-77.2743523327709, 34.565679420363836], [-77.27385704770869, 34.56603648757882], [-77.27325008684473, 34.5663501320345], [-77.27235754159008, 34.566946419230476], [-77.27207882494356, 34.567083669912684], [-77.27199586476996, 34.567194211076156], [-77.27187938829735, 34.56734090959969], [-77.27117657343395, 34.56807247331006], [-77.27065193630085, 34.56844334243719], [-77.26993199847179, 34.568917296327825], [-77.26979909966371, 34.56899921831215], [-77.26953937410613, 34.56918620019449], [-77.26898700006396, 34.56959132441515], [-77.2682855297167, 34.57015711510725], [-77.26753791579489, 34.5706143862428], [-77.26737236648864, 34.57078406713856], [-77.2667766916806, 34.57131591320704], [-77.26649825272847, 34.57147529649684], [-77.26568829872753, 34.57191506835695], [-77.26518044069401, 34.57231431268833], [-77.26405469925548, 34.57309098510027], [-77.2639848441442, 34.57316294914503], [-77.26379302475323, 34.573309764798026], [-77.26280713814324, 34.57401297382343], [-77.26247955707157, 34.57431891246997], [-77.26153985002662, 34.57500393716978], [-77.26080815835695, 34.575461247258026], [-77.26038238581042, 34.57570753888936], [-77.25959965606481, 34.57635009223272], [-77.25930315534036, 34.576565295505766], [-77.25919345310439, 34.57665403241862], [-77.25891215226117, 34.57686587465541], [-77.25809870066342, 34.577413181168026], [-77.25775235410637, 34.57800125880124], [-77.25649628298675, 34.57830882070546], [-77.25508659675504, 34.57906143137618], [-77.25381772522442, 34.579759614634746], [-77.25301381218627, 34.580286076484285], [-77.25232773641372, 34.5807295789022], [-77.25210689457526, 34.580866966849655], [-77.2516161378245, 34.58128976076183], [-77.25126892867493, 34.58158888385957], [-77.25074273233926, 34.58228272518083], [-77.25051603333337, 34.58247227539151], [-77.25010543965762, 34.5828446659671], [-77.24931624489116, 34.583643067868884], [-77.24797081008234, 34.58415715905515], [-77.24740073972396, 34.584568403895844], [-77.2461676968058, 34.58539268558084], [-77.24505956790165, 34.58581316695003], [-77.24331820567227, 34.58619533644813], [-77.2427373755218, 34.58657285266913], [-77.2421333331879, 34.58729872626136], [-77.2420126541868, 34.58745842807508], [-77.24186717533598, 34.587533936150315], [-77.24156247249573, 34.58782855260004], [-77.24048691654936, 34.588935514335205], [-77.23793599095222, 34.58833041291645], [-77.23615070153875, 34.588881612847004], [-77.2349878558592, 34.589302186280996], [-77.23377058322859, 34.59042866652482], [-77.23362919184194, 34.59056814118259], [-77.23355339706801, 34.590655608091794], [-77.233266201397, 34.5908926829966], [-77.23186216728928, 34.59178057509099], [-77.23087406420697, 34.592236174055586], [-77.2284539375314, 34.593735550137744], [-77.22816077703249, 34.593746776934125], [-77.22682733020032, 34.59361744254536], [-77.22652549479014, 34.593778390205614], [-77.22611217852054, 34.594553788776324], [-77.22599344235503, 34.594808159220484], [-77.22579724963046, 34.59560633184557], [-77.22524828537605, 34.59641503522983], [-77.22478595896027, 34.59741191055457], [-77.22434277001663, 34.59836455513587], [-77.22394091322019, 34.59923065946424], [-77.22352018005803, 34.60013737835931], [-77.2235184693328, 34.600142375262855], [-77.2234579831698, 34.60107797717379], [-77.22341599915917, 34.60165013070208], [-77.22328664562627, 34.60200718080192], [-77.22318460798697, 34.60246883886508], [-77.22284227990414, 34.60291481124184], [-77.22205540588548, 34.60409411637596], [-77.22152328130865, 34.60469608445155], [-77.22014933690538, 34.60765827172346], [-77.21884203634399, 34.6082552188456], [-77.21768289296537, 34.60967213990306], [-77.21748806424624, 34.610033756172314], [-77.21723461487338, 34.61032507678391], [-77.21635872479928, 34.61182996330169], [-77.21501297616946, 34.6136087007784], [-77.21501245225234, 34.61360959013861], [-77.21384553159689, 34.615402362807274], [-77.21249926561492, 34.61663251493705], [-77.21211718369646, 34.617151242023], [-77.21139408136332, 34.61790128742428], [-77.2107447201337, 34.61892824029039], [-77.20952791229779, 34.61924922768447], [-77.20810825308477, 34.62059914008349], [-77.20811306099074, 34.62060569464358], [-77.20811056827564, 34.620618428333], [-77.2080889200192, 34.62061548348851], [-77.20803875773622, 34.62059981949076], [-77.20618924480083, 34.61984718937536], [-77.20515949423259, 34.619737920620096], [-77.20366126084026, 34.61928938259122], [-77.20112774652863, 34.621034914446426], [-77.19998932487108, 34.62128267517039], [-77.1964497988855, 34.621568486304014], [-77.19400764477861, 34.62176725513636], [-77.19141993392915, 34.62417859655902], [-77.1892271402478, 34.624767523020274], [-77.18912826249873, 34.62622343785512], [-77.19093320907399, 34.627830120558016], [-77.19377871604456, 34.63036274816484], [-77.19561989894964, 34.63189837249991], [-77.19618571070288, 34.632401914384815], [-77.19630202836706, 34.63286989169778], [-77.19776191020118, 34.63432978682535], [-77.19888350191741, 34.634332321449605], [-77.20028582997315, 34.63600814650073], [-77.20323441340273, 34.63469310809048], [-77.20323444769551, 34.633418310254335], [-77.20931232722586, 34.631516775656465], [-77.20955788676083, 34.63391822390154], [-77.2075432860065, 34.636973030024926], [-77.20699611524682, 34.63748671308308], [-77.20906171456865, 34.639344199301426], [-77.20906173600346, 34.63987785557711], [-77.20857271004205, 34.64138228454226], [-77.2092711534609, 34.64220462105509], [-77.21002629937048, 34.64336634750251], [-77.20982028858467, 34.64336634750631], [-77.20706945957703, 34.64336633806168], [-77.20628821347435, 34.64331951247588], [-77.20361398387391, 34.642757217013255], [-77.20045859232499, 34.64274581185113], [-77.20020945983903, 34.64265259616357], [-77.19983027664777, 34.64257656813858], [-77.19771946831962, 34.642113744741664], [-77.19736051157322, 34.64177726028186], [-77.1957661004802, 34.641374330827304], [-77.1932833070197, 34.640172987890644], [-77.19205094558153, 34.63893607047069], [-77.18689680409523, 34.63881093323493], [-77.18565093306229, 34.638245079433304], [-77.18337339005524, 34.63806456131876], [-77.18500553610146, 34.639517498559236], [-77.18733099634333, 34.64158724275226], [-77.18965657264816, 34.64365693754346]], [[-77.42726645501145, 34.75823022538552], [-77.42728927697492, 34.758084346998075], [-77.42719900280056, 34.75796526340287], [-77.42708496714074, 34.75785952358831], [-77.42704300351606, 34.75782755808191], [-77.42690327434754, 34.75787909705444], [-77.42673819493443, 34.75770359999205], [-77.42662791432699, 34.75772259347232], [-77.42648850879043, 34.75766186717495], [-77.42637050109846, 34.7575041188347], [-77.42623858614527, 34.757635366841235], [-77.42604981498275, 34.757504142305045], [-77.4259734706242, 34.757430256899234], [-77.42568420654243, 34.75747766614895], [-77.42560526217781, 34.75749592852238], [-77.4254801333349, 34.75751824558266], [-77.42539421163663, 34.75755332904635], [-77.42530241110077, 34.75760186762774], [-77.42521094020103, 34.75763767327272], [-77.42498443172171, 34.75783031110163], [-77.4249642131567, 34.75785111088793], [-77.42486055463458, 34.75807430184332], [-77.42449778653062, 34.758434059590286], [-77.42444034619353, 34.75843727515234], [-77.42391794839614, 34.758221601744296], [-77.42379563571663, 34.75813201569966], [-77.42366150783651, 34.75799978025653], [-77.4236026990884, 34.75797245684711], [-77.42337592798853, 34.757878574048384], [-77.42289176958333, 34.757386331401506], [-77.42288513748139, 34.75737890664957], [-77.42288141763993, 34.75737152086189], [-77.42275301037746, 34.75698762408585], [-77.4225536420229, 34.75670910189331], [-77.42250021117313, 34.75664665832741], [-77.42245752377949, 34.75662066940755], [-77.42238593068156, 34.75657708174826], [-77.42217685330738, 34.75648253270161], [-77.42193519130747, 34.75643587790757], [-77.42187464983193, 34.75641874337522], [-77.42157011493836, 34.75636539568934], [-77.4213437004147, 34.75637027746088], [-77.42125036991348, 34.756359778556615], [-77.42118496079998, 34.756302320531944], [-77.4210549798405, 34.75618537082157], [-77.4209659665916, 34.755753192341594], [-77.4208874544041, 34.755567750763], [-77.42087798749364, 34.75553757172345], [-77.42085986244845, 34.75549372474303], [-77.42080764353551, 34.75534371649166], [-77.42070971666088, 34.755334564979655], [-77.4205688401055, 34.75539134523406], [-77.42034132140626, 34.75531496569939], [-77.42027334241148, 34.75530441797615], [-77.41973569724269, 34.755121110110636], [-77.41969433527917, 34.75508918011024], [-77.41956569192129, 34.75474562447181], [-77.41937026963613, 34.75464213899774], [-77.41919040144286, 34.75461477766342], [-77.41904405768236, 34.75464396361505], [-77.4189728511625, 34.75474079276079], [-77.41879427662454, 34.75483620422382], [-77.41898947907848, 34.75530840815845], [-77.4193512868286, 34.75528138689578], [-77.41965518273624, 34.7552243469654], [-77.41978863353366, 34.75532563468075], [-77.42022011765927, 34.75548817050765], [-77.4204375038121, 34.75572123266118], [-77.42045717799517, 34.75597645247687], [-77.42058601749953, 34.75643915998756], [-77.42060633493072, 34.75654357968106], [-77.42061470896601, 34.756590581707826], [-77.42061097935635, 34.756669093259525], [-77.42062705279022, 34.756981312102766], [-77.42066191239388, 34.7571661526649], [-77.42082791551537, 34.75734393369987], [-77.42094500136504, 34.7574140558562], [-77.421105737711, 34.757477349499084], [-77.4212273438808, 34.757546427873876], [-77.42132904113916, 34.75758136195527], [-77.42152199849369, 34.75763629369063], [-77.42169732254538, 34.75769586190063], [-77.42192900587533, 34.75777757726642], [-77.42208896166218, 34.75789318204409], [-77.42252667217228, 34.758302767317296], [-77.42259832588921, 34.75834894963342], [-77.42263844439655, 34.7583745192163], [-77.42279995384425, 34.75847238367525], [-77.4231443454405, 34.75867817300501], [-77.42370447104285, 34.758822774839054], [-77.42373955911785, 34.75883755080493], [-77.42467480893698, 34.75912752368372], [-77.42483893440846, 34.75908834772365], [-77.424919185806, 34.75919361421936], [-77.42525339827459, 34.75877063388988], [-77.42540671399895, 34.75852008145289], [-77.42578060404479, 34.758433774511275], [-77.42615093052828, 34.75852518593694], [-77.42633014585168, 34.75853274913097], [-77.42640880431438, 34.758479237382566], [-77.42643584269284, 34.758576594344575], [-77.42710247556444, 34.75829860640727]], [[-77.22408677534813, 34.62233782289973], [-77.22481955626307, 34.622333652080975], [-77.2249408523942, 34.62165185003174], [-77.22673476490147, 34.620191025828326], [-77.22730667647409, 34.61928618930936], [-77.22963608871353, 34.616956711492435], [-77.22992120536104, 34.61667159522712], [-77.23014691999984, 34.616552979627336], [-77.23067237014872, 34.61599750571398], [-77.23157967087865, 34.61519764211817], [-77.23347193307532, 34.61552173251847], [-77.234202822709, 34.61568790446457], [-77.23454699361031, 34.61609371144825], [-77.23462094215145, 34.61656135393763], [-77.23452670444884, 34.61703481222442], [-77.2329911315427, 34.61808037747991], [-77.23088425836569, 34.61720885545558], [-77.23109209320461, 34.619350985114075], [-77.22944050875458, 34.62040451131], [-77.22902039212966, 34.6208106039801], [-77.22731841567301, 34.62370148951678], [-77.22703434146813, 34.62398555936268], [-77.22686591592594, 34.6241539764747], [-77.22620694716073, 34.624812882126186], [-77.22613877243737, 34.624857617255444], [-77.2261398405789, 34.62487703855611], [-77.22541359757977, 34.62549206366017], [-77.2248631434576, 34.62569967184567], [-77.22368480761666, 34.62646116248886], [-77.22328899852991, 34.62623215230009], [-77.22233155213, 34.62580224087459], [-77.2221502988089, 34.62563436181104], [-77.2219424757195, 34.625034320814166], [-77.22196192619249, 34.623585233007276]], [[-77.34616775555234, 34.5679112773687], [-77.34678709121744, 34.570102565572796], [-77.34678061331532, 34.57032700407997], [-77.34682786946208, 34.570499479751824], [-77.34699406948849, 34.570751736543826], [-77.34705746290763, 34.57113627108224], [-77.34699378611184, 34.571175589617084], [-77.34693199150757, 34.571220876171054], [-77.34638119434325, 34.57142272058398], [-77.34620560741467, 34.57147973234978], [-77.34588291692259, 34.571652825778024], [-77.34571474917242, 34.57164971232326], [-77.3454176150909, 34.571503738907424], [-77.34503901185198, 34.57142662594408], [-77.34486718877534, 34.57119559523276], [-77.34424730960163, 34.571128236082004], [-77.34384203657288, 34.57097344773622], [-77.34365130492812, 34.5709826548578], [-77.34323600010708, 34.57083686936413], [-77.34266442122444, 34.57049022707362], [-77.34226638213354, 34.57057382995434], [-77.34177414548276, 34.57051665306503], [-77.34136408235241, 34.57038035327563], [-77.34089318923657, 34.5703247212024], [-77.34069072187793, 34.570200844467536], [-77.34044437667684, 34.56980594627809], [-77.33990298918162, 34.5698916448736], [-77.33962491475621, 34.56965801693236], [-77.33956239758007, 34.569185507097], [-77.33911561851092, 34.56911589771378], [-77.33890274595186, 34.56891277664939], [-77.33885367297171, 34.56835364321476], [-77.33832832036532, 34.56826551992164], [-77.33820436415651, 34.56816411316012], [-77.33787032550792, 34.56785693270165], [-77.3378617422596, 34.56778883601726], [-77.337917183483, 34.56776194721496], [-77.33830496733854, 34.567300563631775], [-77.33829867766411, 34.56726869294553], [-77.33828949793391, 34.566497015598756], [-77.33830283442923, 34.56645178606874], [-77.33829868744553, 34.566418907634436], [-77.33827144302899, 34.56603175775393], [-77.33833014351057, 34.56591309296144], [-77.33861906937412, 34.565868543985765], [-77.3388896087622, 34.5657646429857], [-77.33911809939738, 34.56587415581489], [-77.33939593237983, 34.56599510187321], [-77.34000030451526, 34.5662076899314], [-77.3406931614943, 34.56692939177922], [-77.34105458904189, 34.566445164289995], [-77.34148133848215, 34.56660055011959], [-77.34170988937488, 34.56656465507431], [-77.34226903640217, 34.56692132403934], [-77.34330882133769, 34.5668522880701], [-77.34384495982452, 34.566842661512105], [-77.34438296561495, 34.5666958732579], [-77.34525198222393, 34.567150534086835], [-77.34542052252297, 34.56728051522089]], [[-77.42974711451325, 34.731828999585176], [-77.42995082525138, 34.732113000644325], [-77.42968593051167, 34.73260651682538], [-77.42971106121621, 34.73293451301416], [-77.42949294316053, 34.7330390146573], [-77.42936576497951, 34.73324983279728], [-77.42932074027647, 34.73335715139544], [-77.42938901819683, 34.733617026318775], [-77.42938867433641, 34.73368666332605], [-77.42942737340667, 34.73367969195851], [-77.42943747583709, 34.733677479534215], [-77.42975883845881, 34.733619351549486], [-77.42985652739824, 34.73363304382174], [-77.43005311885216, 34.733710221713906], [-77.43021738109029, 34.733787360026454], [-77.43029486128552, 34.733977133540996], [-77.43029544605307, 34.733977989824986], [-77.43029545593208, 34.733980538598594], [-77.43035010938331, 34.73417838129755], [-77.43048428665107, 34.7343228626203], [-77.43010862928746, 34.73462595014097], [-77.43005836439642, 34.73471060009992], [-77.42996417244089, 34.73470014240153], [-77.4293777010511, 34.7349359935362], [-77.42899603355292, 34.734361780122995], [-77.4289753683125, 34.7343054551954], [-77.42893965945932, 34.73423427288191], [-77.42855690292049, 34.73364924229281], [-77.42863868565365, 34.733553125041006], [-77.42848692059856, 34.733583346800714], [-77.42832071178151, 34.73336720942369], [-77.42803149626936, 34.732941720194276], [-77.42801891563158, 34.73291888207022], [-77.42801716966147, 34.73290153738424], [-77.42792463869672, 34.73273501588259], [-77.42792322641843, 34.732717766218634], [-77.42795724990161, 34.73260106362864], [-77.42806458961142, 34.732453445782554], [-77.42810188985138, 34.732372087868775], [-77.42808525362216, 34.732234673075496], [-77.42816381645252, 34.73196567062401], [-77.42783651856783, 34.731720272981555], [-77.42775899262693, 34.73166825466819], [-77.42772435254318, 34.731644990854896], [-77.42745879801954, 34.73136699053766], [-77.42727586369546, 34.73112238142534], [-77.42719324512488, 34.73103137823652], [-77.42714776702962, 34.73092046914557], [-77.42698846023772, 34.73067041810762], [-77.42682554483596, 34.730463195692366], [-77.426630732045, 34.73037325527475], [-77.42646104904945, 34.73032863342219], [-77.42623072634373, 34.73030315761047], [-77.42621309067646, 34.73029739379395], [-77.42601558810647, 34.7301834665903], [-77.42597698011112, 34.730072323587244], [-77.42593435451995, 34.729937260512756], [-77.42590992274978, 34.72978116209845], [-77.42580001665473, 34.72957627966989], [-77.42572288181788, 34.72941280137147], [-77.42559014569869, 34.72925787175055], [-77.42546052071248, 34.729075859266516], [-77.42537709665004, 34.72882252167552], [-77.42531147565188, 34.728691650413], [-77.42517505528494, 34.72855370209414], [-77.42522277923146, 34.72830522559394], [-77.42524751347617, 34.72801996115431], [-77.4255927231386, 34.727681577956986], [-77.42562090318266, 34.72746005817946], [-77.4260066347838, 34.72716718909376], [-77.42649866793047, 34.727163009908985], [-77.42661609424323, 34.7272546941247], [-77.42706983005735, 34.72740468927994], [-77.42717879989783, 34.72757693317711], [-77.427350941085, 34.727840920502175], [-77.42745428202409, 34.72829134670968], [-77.42758897216227, 34.728634392161894], [-77.42774962370748, 34.72889458866049], [-77.42811865680184, 34.72930620308179], [-77.42838972604612, 34.72948944701733], [-77.42846849216882, 34.72960665476524], [-77.42864785125371, 34.72976761346099], [-77.42878665155965, 34.72992031944309], [-77.42878791796979, 34.730328722781024], [-77.42884642104822, 34.730396078667574], [-77.42912410667216, 34.730672320521734], [-77.42918892009848, 34.731158315155476]], [[-77.24936033901383, 34.608305266830726], [-77.2496660350678, 34.60799210616272], [-77.24971511579216, 34.607861855298374], [-77.24981984399429, 34.607754822284356], [-77.25004050219341, 34.60772633717583], [-77.25028734789062, 34.60775953958327], [-77.25080187217422, 34.60788812434947], [-77.25082529868091, 34.60794926155327], [-77.25062307491865, 34.608368666537544], [-77.25058788639684, 34.60843783301753], [-77.2503517707979, 34.60877734892358], [-77.2503051831575, 34.60884374815091], [-77.24971630945123, 34.6087080815593], [-77.24960249571282, 34.60859165121733]], [[-77.42695783442957, 34.68403647025281], [-77.4269614872496, 34.68403329562087], [-77.42696156575371, 34.68403065915032], [-77.42696487661502, 34.68402976914282], [-77.42696752138501, 34.68403242752625], [-77.4270848155955, 34.684168898789565], [-77.42711062237984, 34.68419589532566], [-77.42733211030583, 34.68442153077014], [-77.42742863150457, 34.68450955669737], [-77.42761169436164, 34.68456258152309], [-77.42780339983359, 34.68465917421409], [-77.4278902853843, 34.68470706622012], [-77.42797601259166, 34.68472749141355], [-77.4283835322611, 34.68494997202203], [-77.42843919581058, 34.68498056468817], [-77.42844397747757, 34.68500810446956], [-77.42857523258485, 34.685173214834236], [-77.42872373534584, 34.68530819413332], [-77.42869704438593, 34.685372369262], [-77.42862967235551, 34.68534745127345], [-77.42834231186015, 34.68535945489856], [-77.42826267729964, 34.68541007597216], [-77.42805980494839, 34.685228494006104], [-77.42792928292432, 34.68523892947876], [-77.42779426127834, 34.685249724526436], [-77.42773181522614, 34.685254717113125], [-77.42771123164587, 34.68525636275744], [-77.4276374239581, 34.685248090912374], [-77.4274180828932, 34.68523166765106], [-77.42720274816082, 34.685172886217835], [-77.42712022460785, 34.685153760939045], [-77.42702096021871, 34.68512607193017], [-77.42683105109376, 34.6850458437114], [-77.42661068166049, 34.684952746575526], [-77.4265424822503, 34.68493583848503], [-77.42650544015429, 34.68489483639665], [-77.42651514357591, 34.68485556064176], [-77.42649605952195, 34.68476533653028], [-77.42647914133242, 34.68470319930064], [-77.42647861086586, 34.68468284427506], [-77.42648560499471, 34.684578787145874], [-77.42648638506266, 34.68456596398814], [-77.42649152647608, 34.68455832444521], [-77.42655054601201, 34.68448047381512], [-77.42660692493976, 34.684406105982454], [-77.42665337566783, 34.68434483425106], [-77.42667694747757, 34.68431319504684], [-77.42675062741918, 34.68421655181777], [-77.4270039152053, 34.684187904089725]], [[-77.2827319139937, 34.583182118096744], [-77.28282875248189, 34.58275567108923], [-77.2829348644196, 34.582564339470224], [-77.28313993720353, 34.582713087764155], [-77.28347120612179, 34.58289017880671], [-77.28369161944137, 34.58314909412432], [-77.28404752720427, 34.58343282722774], [-77.2838419025602, 34.583900277438545], [-77.28367891490564, 34.58406796010239], [-77.28271293038912, 34.584389984149674]], [[-77.3327508971499, 34.52792565571174], [-77.33278402456347, 34.52792832084773], [-77.3330257369542, 34.52787286343546], [-77.33307372320434, 34.52766833941001], [-77.33314424609264, 34.52736618994278], [-77.33282485603908, 34.527373976521346], [-77.3327633901603, 34.527387532785255], [-77.33269828748058, 34.5274303167026], [-77.33222930446289, 34.527658190502706], [-77.33201267096605, 34.52798842614177], [-77.33238514206627, 34.52796497566854], [-77.33217083161574, 34.52812654383364], [-77.33196290409222, 34.5280528399225], [-77.33176418848987, 34.528299076597534], [-77.33167399815326, 34.528381429559175], [-77.33156126228056, 34.528445500534026], [-77.33154967266839, 34.52845232822106], [-77.33156017837172, 34.528492160656484], [-77.33157529735495, 34.528560630022284], [-77.33157263892598, 34.52857143395382], [-77.33157949094634, 34.52858382200191], [-77.33162454089874, 34.528644036072606], [-77.33166484990502, 34.52862538936632], [-77.33167482789757, 34.528617944973995], [-77.33175454080187, 34.52857390785377], [-77.33178302664612, 34.52855873062756], [-77.33180405461994, 34.5285545996443], [-77.33182880554503, 34.528534601678885], [-77.33183289821153, 34.528520912949894], [-77.33185431915028, 34.52850296881486], [-77.33188111900579, 34.52848229139181], [-77.33195436299644, 34.528420590899835], [-77.33202561027346, 34.52838389625142], [-77.33203250290367, 34.52830759635145], [-77.33233893884017, 34.528224235524085], [-77.3323515061739, 34.52822157653883], [-77.33236223675776, 34.52821975205358]], [[-77.36948969606199, 34.588661142895454], [-77.36904991415855, 34.58873406946824], [-77.36885159553691, 34.58901328357343], [-77.36839797175513, 34.58914525740504], [-77.36826167040591, 34.58901798423866], [-77.36794538579439, 34.588849052842505], [-77.36747363040638, 34.5887913265638], [-77.36728781747874, 34.588803107046466], [-77.3672602481654, 34.58860689235793], [-77.3671853512366, 34.58830687705433], [-77.36747404516392, 34.58778116295247], [-77.36750033575974, 34.58775151579909], [-77.36752076528239, 34.587720261744394], [-77.36805654132635, 34.5874214068474], [-77.36826235568437, 34.587310130615464], [-77.36872880647194, 34.58719967216224], [-77.36905062610799, 34.58691802437843], [-77.3694821094528, 34.58697288061184], [-77.3701627214863, 34.58683966943558], [-77.37062688557864, 34.58682534702275], [-77.37132743496832, 34.58641737559034], [-77.37141514459215, 34.58641885886274], [-77.37170099036291, 34.58657710118121], [-77.37220356065784, 34.585549376487386], [-77.37257276340723, 34.58659441739961], [-77.37231225926817, 34.5870301318508], [-77.37229824541558, 34.58713477149597], [-77.37220301187384, 34.58709369733382], [-77.37217587880686, 34.5870790168598], [-77.37150273437591, 34.58724143596095], [-77.37141480209291, 34.587358948742384], [-77.37083518159142, 34.58746757520053], [-77.37066075230761, 34.58811714211597], [-77.3706263552935, 34.58824528815166], [-77.37041004467996, 34.58876953102346], [-77.3702320523058, 34.588883029013594], [-77.3701203423206, 34.58873995056908], [-77.36983810743268, 34.588567539204554]], [[-77.3896244052055, 34.51231900515627], [-77.38969185371639, 34.512323592807725], [-77.38967279795175, 34.51236848747686], [-77.38966996931732, 34.51239843965188], [-77.38962010794157, 34.51250963856775], [-77.38951273222139, 34.51281860532068], [-77.38912439334655, 34.51293728262384], [-77.38889350184711, 34.51301404037685], [-77.38882347338301, 34.51303157070157], [-77.38872463566726, 34.513056277486996], [-77.38818312253404, 34.51316513453625], [-77.38803409516993, 34.51323141489316], [-77.3878007282619, 34.513273265450685], [-77.38760322253538, 34.51315675746859], [-77.38735945976718, 34.51312465501193], [-77.38725344951362, 34.51304416554717], [-77.38701091499013, 34.51290580637019], [-77.38696556108883, 34.51275908878149], [-77.38700680863391, 34.512592908475035], [-77.3870072801262, 34.512508237363264], [-77.38727163547871, 34.51223841314304], [-77.38728169687066, 34.51222997281445], [-77.38733627951872, 34.51221593955435], [-77.38787812955337, 34.51202345585561], [-77.38821833347097, 34.51199119142557], [-77.38884732830343, 34.51197376920722], [-77.38887424031854, 34.51197720537451], [-77.38890849424655, 34.511989101427815], [-77.389332523823, 34.5121129192003]], [[-77.37576693098566, 34.581437685609416], [-77.37612160450018, 34.582210407563224], [-77.37608475626601, 34.582241015205454], [-77.3753569416393, 34.58244859902021], [-77.37528989687637, 34.58235554436536], [-77.37519902084259, 34.58168993283023], [-77.37516474293393, 34.58152445433833], [-77.37516144326449, 34.58131388931521], [-77.37535743806427, 34.58090177368255], [-77.37583896256763, 34.58090846299778]], [[-77.35132336370955, 34.557347625670275], [-77.3517301437274, 34.557341490808916], [-77.35210581462434, 34.55726858979564], [-77.35300132380826, 34.55754454056479], [-77.3527906007252, 34.55812963568829], [-77.35330544965541, 34.55796176162163], [-77.35362545666833, 34.557799494230316], [-77.35363031773953, 34.55745401160026], [-77.35335995937002, 34.55743451804054], [-77.353377060421, 34.5567177344319], [-77.35333176515017, 34.55664788201829], [-77.35338249425737, 34.556558455010354], [-77.3533065982952, 34.55605574568749], [-77.35321755066217, 34.555911286648595], [-77.35310768780701, 34.555831032672884], [-77.35251960507509, 34.555883191656875], [-77.35240060895057, 34.55585824674415], [-77.35195440566224, 34.55586011760553], [-77.35191957015115, 34.555757210464535], [-77.35173854197575, 34.555699170073154], [-77.35151016389702, 34.55571350224028], [-77.3511584256077, 34.55562192982394], [-77.35101049372726, 34.5556088227437], [-77.35055800857666, 34.55545844359541], [-77.35049853773941, 34.55599615821703], [-77.35039024790964, 34.556222120327234], [-77.35039598811834, 34.556481005935765], [-77.35051026802259, 34.55751944904907]], [[-77.36901076973534, 34.52140703202112], [-77.36886169639622, 34.52133930240173], [-77.36862057321004, 34.521306862756994], [-77.36858124233258, 34.52128576326544], [-77.36854844570969, 34.52109368568786], [-77.36851958641736, 34.520982210221725], [-77.36854955466353, 34.520800675549474], [-77.3685455420626, 34.52061309384543], [-77.36856772448523, 34.52050891936439], [-77.36863962126016, 34.520471035368594], [-77.36877752026592, 34.5203626518057], [-77.36883879363927, 34.52034223898831], [-77.3689882849899, 34.52027787312862], [-77.36903707945129, 34.52025232540838], [-77.36904439915635, 34.52024416163875], [-77.3690492105093, 34.520239018248276], [-77.36907464887138, 34.52021248264682], [-77.36911777808925, 34.52016793028946], [-77.36911962535434, 34.52015658916892], [-77.36913509044014, 34.52010422859891], [-77.36909578799482, 34.52002081103538], [-77.36908653446639, 34.51998881234944], [-77.3690694667213, 34.519975010154745], [-77.3690448193192, 34.51991263245002], [-77.36902760308769, 34.51987489135408], [-77.36903617037852, 34.51975882457853], [-77.36903727722469, 34.519751083665454], [-77.36903833593465, 34.519744496915095], [-77.3690488851172, 34.519734190091775], [-77.36922091217718, 34.51958498439522], [-77.36928481691112, 34.51957055978751], [-77.36944570278057, 34.519543397378264], [-77.36949058927769, 34.519563342896184], [-77.36956046235939, 34.519603248108524], [-77.3696720269854, 34.519659608791436], [-77.36976088192435, 34.519692894589596], [-77.3698338179621, 34.51973461856046], [-77.36994312407194, 34.51979630440772], [-77.37005252818, 34.5198495999806], [-77.37011161648388, 34.51991012516865], [-77.37009453815787, 34.51996595946614], [-77.37010149521649, 34.52001348428657], [-77.370061062894, 34.52009319756168], [-77.37002072378107, 34.52014430084454], [-77.36998177723913, 34.520203584719674], [-77.36987945938952, 34.52032730493201], [-77.36988013337864, 34.52036409975555], [-77.36981809950944, 34.52042476597644], [-77.36970542964866, 34.52056582464886], [-77.3694363724888, 34.52067287885563], [-77.36942581922479, 34.52067812111249], [-77.36941982484016, 34.52067938169685], [-77.36938987560413, 34.52069799738977], [-77.36918284477431, 34.52080824461927], [-77.36918603728894, 34.52085233374789], [-77.36916698787573, 34.520956526976285], [-77.36918099703132, 34.52105570229367], [-77.36918060212919, 34.52107697863865], [-77.36917121412404, 34.521104953513714], [-77.36921740600863, 34.521194088332685], [-77.36915031370908, 34.52128912819825]], [[-77.38408395362333, 34.51437165081966], [-77.38372930552575, 34.51442574915053], [-77.38329453889108, 34.5145719456326], [-77.38281502464557, 34.5145270086875], [-77.38251076780213, 34.514522626338994], [-77.38226378318572, 34.514755503119474], [-77.38216785016454, 34.51492013585181], [-77.38201187490012, 34.5151296233436], [-77.3819687314922, 34.515193685279186], [-77.38170521039841, 34.51543581387832], [-77.38166132262377, 34.51545575349741], [-77.3813198051529, 34.51552643145417], [-77.38131068968265, 34.51552736798764], [-77.38099841628433, 34.51552842174486], [-77.38091840530495, 34.51552012229513], [-77.38079122737123, 34.51552912058303], [-77.38065896939027, 34.51554408810697], [-77.38052547096241, 34.51554157157419], [-77.38045872153032, 34.51553386990765], [-77.380527695221, 34.515443368100364], [-77.38055861459425, 34.51541595071485], [-77.38054370672428, 34.515399198814016], [-77.38064983341782, 34.51530958746305], [-77.3808841201566, 34.51510527598158], [-77.38092835877097, 34.515080575259354], [-77.38101215458823, 34.51503517598999], [-77.38132581683098, 34.51485921217442], [-77.38138517257592, 34.51482472757833], [-77.38172591171131, 34.51452126283024], [-77.38177015758916, 34.51451535099034], [-77.3817574707368, 34.514489660893574], [-77.38180813841659, 34.51443231109675], [-77.38203921793087, 34.51414957616959], [-77.38233155221506, 34.51403587869139], [-77.38252368848275, 34.513951577469186], [-77.38258832484931, 34.513920046775574], [-77.38269595702566, 34.51386464306849], [-77.3830822070205, 34.51366364885669], [-77.38331758602527, 34.513552921667], [-77.383689499266, 34.513462425807454], [-77.38374255335772, 34.513450012941654], [-77.38410651171961, 34.51337383628154], [-77.38436967633538, 34.51329665737697], [-77.38489741776715, 34.51310695058709], [-77.38493959892446, 34.513077251364166], [-77.38499949885743, 34.513042713512334], [-77.38529515677642, 34.51287223937418], [-77.38541009212918, 34.51280947286812], [-77.38569154404372, 34.512697267444395], [-77.38605252395115, 34.5126660391805], [-77.38608452737576, 34.51267293950912], [-77.38638017900183, 34.51284353966775], [-77.38640325304607, 34.51288323341143], [-77.38646935258643, 34.51300990333481], [-77.38664484344375, 34.51318309781457], [-77.38659740385015, 34.51330186677312], [-77.38657872196148, 34.51337797994367], [-77.38645607112099, 34.51359811386334], [-77.38638333824262, 34.51377959391066], [-77.38595979175258, 34.51388351426172], [-77.3857139073904, 34.513950600022895], [-77.38566300346201, 34.513960749361814], [-77.38559979088662, 34.51397468753946], [-77.38492387577386, 34.51403295020608], [-77.38488034727463, 34.514036770184056], [-77.3848764154703, 34.51403633066367], [-77.384857154552, 34.514042574808826], [-77.3842832389464, 34.51424794259983]], [[-77.36989755965901, 34.57300052727463], [-77.36990286811616, 34.5737913167718], [-77.37026298932331, 34.57413673842294], [-77.37029832980936, 34.5741589091024], [-77.37063159638576, 34.57437104040959], [-77.37075256228954, 34.574387677487316], [-77.37136277011702, 34.5743689006942], [-77.37141961144928, 34.57431281886507], [-77.37158339187019, 34.574221896196974], [-77.37193333819012, 34.57405228632771], [-77.37198307922137, 34.573733815640516], [-77.37203779725095, 34.57348376238191], [-77.37202449917763, 34.573287964729744], [-77.37195917847818, 34.572914219215996], [-77.37158385463965, 34.572700040923], [-77.37156697288906, 34.57254438797123], [-77.37124451439882, 34.572559536167226], [-77.37119215595419, 34.57275647005876], [-77.37076228564965, 34.572958642957374], [-77.37063212669, 34.57298711452821]], [[-77.42989095217403, 34.68283717633507], [-77.43021782385883, 34.682899082640404], [-77.43029085343429, 34.68305437941709], [-77.43048356211034, 34.68344816908953], [-77.43008982833739, 34.68374917747453], [-77.43002317696484, 34.6838012033977], [-77.42975699023498, 34.68375312512796], [-77.42951785417794, 34.68372289215078], [-77.42946245026624, 34.68370282869468], [-77.42937058654694, 34.683699078129045], [-77.42914867550027, 34.68367994977102], [-77.42903027608439, 34.68367358905547], [-77.42882394539598, 34.68369493296721], [-77.42881517471798, 34.683695840241825], [-77.4286219909705, 34.68356512962846], [-77.4285729560992, 34.68345506495092], [-77.42856331912081, 34.68333564088422], [-77.42856920589733, 34.68329368831348], [-77.4285669623275, 34.68319714747548], [-77.42860816977363, 34.683170426038814], [-77.42863399130067, 34.683150707439935], [-77.42866386913961, 34.68314086613748], [-77.42869764089328, 34.68312974222715], [-77.42873689171138, 34.683116813560815], [-77.4288409417502, 34.683082540918306], [-77.42890328726257, 34.68309203529082], [-77.42901285664813, 34.68304204006678], [-77.42912893761014, 34.68308703387426], [-77.42920076023054, 34.682999517911156], [-77.42937630139262, 34.68289324353561], [-77.42946219726488, 34.682884039725636], [-77.42962418219685, 34.682868075096074], [-77.4297072112259, 34.682856889288416]], [[-77.35408057279211, 34.560785609290264], [-77.3540916159875, 34.56079962934417], [-77.35410378980092, 34.56078226762567], [-77.35409163064837, 34.56077480096822]], [[-77.36475714439874, 34.622082632559554], [-77.36556144206209, 34.62231356181142], [-77.36588334408462, 34.6223991500577], [-77.36683173676599, 34.622805520453284], [-77.36676350681523, 34.62179381561573], [-77.36698233255004, 34.62124714583028], [-77.36680550222694, 34.62079534425155], [-77.36636469816185, 34.62067064976321], [-77.3658839209938, 34.620977941538364], [-77.36449382301812, 34.62062330938778]], [[-77.33322528416042, 34.52686490507084], [-77.33316823326153, 34.52685648932385], [-77.33312404905988, 34.52687946239808], [-77.33316647984915, 34.52693203061554]], [[-77.39119360368589, 34.512342324507934], [-77.39092321006015, 34.51235655183075], [-77.39080084920991, 34.51235668858877], [-77.39054682075238, 34.51224236950008], [-77.39048652381905, 34.512204480527444], [-77.39041436793985, 34.51209263761859], [-77.39023832205885, 34.51190962438969], [-77.39014815254872, 34.51181022888062], [-77.39026684749837, 34.51169548146016], [-77.39033201888415, 34.511538864247015], [-77.39042905075942, 34.51144101668109], [-77.39056750032604, 34.51134508030481], [-77.39072410032968, 34.51130018581311], [-77.39082521200874, 34.51127524636776], [-77.3910693512345, 34.51128007952434], [-77.39121641401368, 34.5113295836485], [-77.39137522915316, 34.51138832561456], [-77.39149028470469, 34.51144407974858], [-77.39163203196624, 34.511596100236844], [-77.39173428973393, 34.51174211444073], [-77.39170164173157, 34.51189675621545], [-77.3915918614424, 34.51208356117773], [-77.39158824697655, 34.51208992184364], [-77.39158458564496, 34.51209261587538], [-77.39138474883117, 34.512239259183]], [[-77.39758522979504, 34.50972383062426], [-77.3975986551508, 34.50975556268606], [-77.39761032914524, 34.50980433482052], [-77.39771413405462, 34.509983727758716], [-77.39757954302135, 34.51021104777725], [-77.39757411928221, 34.5102487764549], [-77.39756259271803, 34.51027774476477], [-77.39751854002462, 34.5102906553944], [-77.3970888739792, 34.510543971134936], [-77.39672686985315, 34.51059482191311], [-77.39637965989603, 34.51069566066923], [-77.39633206662671, 34.510700865865445], [-77.3962945839216, 34.510701694647246], [-77.3961939026934, 34.510692853768546], [-77.39599302823187, 34.510688713711595], [-77.39594032510347, 34.51067058696696], [-77.3957738414862, 34.510613326253754], [-77.39560295534037, 34.51053331933309], [-77.39574051316146, 34.510384792992795], [-77.39576492565011, 34.51026510490085], [-77.39595465828512, 34.51003262945264], [-77.39598469844452, 34.5100069283031], [-77.39608830823204, 34.509973590039515], [-77.39635029868248, 34.50988920363863], [-77.39665451946995, 34.509836084579], [-77.39674451429327, 34.50980915566079], [-77.39685867882613, 34.509791404455754], [-77.39713793849117, 34.509764316445], [-77.39748175221384, 34.50974179922377], [-77.39753106364851, 34.50973277500908]], [[-77.37063347391012, 34.569486918039544], [-77.37083371434589, 34.57004473579113], [-77.37112720974498, 34.5702184706316], [-77.37142106864876, 34.57042346103946], [-77.37158191449765, 34.57032625529261], [-77.37181507551712, 34.570345352828525], [-77.3721387456074, 34.57007274103955], [-77.37210342506454, 34.569963850856126], [-77.37198066032585, 34.56949285761469], [-77.37146095666647, 34.569363825774346], [-77.37142147331635, 34.56934828480426], [-77.37139667202948, 34.569357255234685], [-77.3710050254997, 34.56938695439456], [-77.37063350397791, 34.56940904680306], [-77.3705824902157, 34.5694478261705]], [[-77.43729090177109, 34.74082576167871], [-77.43727976945362, 34.741108256586905], [-77.43724994638539, 34.741159406685], [-77.43724195291962, 34.74121118299895], [-77.43726626204092, 34.7415602950309], [-77.43759699412547, 34.74179107833031], [-77.43764185261365, 34.74182875998706], [-77.43766021733353, 34.74184234535312], [-77.43773277394018, 34.74188713382771], [-77.43791179201624, 34.74200384872417], [-77.43819146526265, 34.7420671175792], [-77.43821294569466, 34.74207107790927], [-77.43822560850022, 34.74207011751109], [-77.43825281443438, 34.74206882511905], [-77.438555522455, 34.741995165367506], [-77.43862391519416, 34.74197299602436], [-77.43868923722843, 34.74185944827262], [-77.43878036188407, 34.741694105547694], [-77.43883481613467, 34.74156979410238], [-77.43888741263717, 34.7414519910132], [-77.43889802780514, 34.74132593377719], [-77.43893509119786, 34.741189133545184], [-77.4389164014284, 34.740955388684405], [-77.4389190809639, 34.74090402494167], [-77.43892230014015, 34.74086940065927], [-77.43887484909105, 34.740609055820784], [-77.43888728289555, 34.740437603419], [-77.43887944506858, 34.74033114665757], [-77.43884855855475, 34.74023055644898], [-77.43884599362056, 34.74017970188128], [-77.43887541891769, 34.74014079653472], [-77.43893270658056, 34.74007023988362], [-77.43902606032432, 34.74001300936676], [-77.43916173519294, 34.73990027427029], [-77.43918270613639, 34.739895029683495], [-77.43919037071217, 34.73986474492464], [-77.4392753317087, 34.7396309158418], [-77.43925671746811, 34.73957203483919], [-77.43918024132884, 34.73942256379991], [-77.43913707130562, 34.73930309552366], [-77.43923016122278, 34.739224884534465], [-77.43933505875339, 34.7390927536152], [-77.43936716878906, 34.73907483281536], [-77.43943212858083, 34.73896584340383], [-77.43948316582966, 34.738890464982575], [-77.43949637857911, 34.73884425796034], [-77.43949282998746, 34.738756067626596], [-77.43948707124636, 34.73862493738276], [-77.4394580563263, 34.7385766971148], [-77.43947532281632, 34.73840663513977], [-77.43951342497841, 34.73819223762929], [-77.43953898627724, 34.73804594302835], [-77.43958869751054, 34.737912924582965], [-77.43953845364555, 34.73749046180431], [-77.43953818962618, 34.737487590347015], [-77.43953615346848, 34.73748592431421], [-77.43921187870963, 34.737177328250695], [-77.43902535687772, 34.73704782143356], [-77.43881279567856, 34.73704787538165], [-77.43856949460493, 34.736998940415134], [-77.4384067720178, 34.736969742381305], [-77.4382185597828, 34.73682493035351], [-77.43812836848525, 34.736823959178295], [-77.437990315792, 34.73694581673498], [-77.43787790598905, 34.737016180763945], [-77.4377168128762, 34.73713830795795], [-77.43756768972662, 34.73725714990779], [-77.43746000842361, 34.737319558849144], [-77.4372947481052, 34.73748896103637], [-77.43724382813063, 34.7374758329327], [-77.43726570871985, 34.737531186782086], [-77.43726107173246, 34.73754483155543], [-77.4371386741356, 34.7377663176113], [-77.43707932134664, 34.73795481070705], [-77.43705923672265, 34.73801807944079], [-77.43698861434402, 34.73810490408184], [-77.43696872353712, 34.73826597109328], [-77.4370336793335, 34.73862794390446], [-77.4370355596106, 34.73884835983931], [-77.43706882771494, 34.73896424456604], [-77.43713043099753, 34.739164595356684], [-77.43716622648307, 34.73937001308366], [-77.43718421729439, 34.73945933651219], [-77.43722211768784, 34.739793098001854], [-77.4372183575434, 34.74003029991679], [-77.43719764032093, 34.74024971361362], [-77.43727227628955, 34.74051303037738], [-77.4373095915221, 34.7406212116397], [-77.43731037382575, 34.74064908542129]], [[-77.33384581482878, 34.52775493776954], [-77.33420415188303, 34.52777840147499], [-77.33432551740803, 34.52772980520815], [-77.33466764955084, 34.527910384727015], [-77.3347136740222, 34.52791786172868], [-77.334886494629, 34.527986138742094], [-77.33490734668771, 34.52809191682987], [-77.33491446846426, 34.52820630035814], [-77.33500080025952, 34.52832329401693], [-77.33509476837318, 34.52841056068879], [-77.33519529038149, 34.528476491318216], [-77.33528218790597, 34.52852764392224], [-77.33548323442281, 34.52858547572525], [-77.33552679254537, 34.5285186678563], [-77.3356817603316, 34.52848776461329], [-77.33569436426406, 34.528476058994706], [-77.33569713869102, 34.52846796810702], [-77.3357819923795, 34.528397092801264], [-77.33578891504817, 34.52839789416453], [-77.3358811500732, 34.52835276348803], [-77.33605661412679, 34.52830748574608], [-77.3360786302113, 34.528300130164176], [-77.33609138615375, 34.528296766978556], [-77.33627841283902, 34.52814812647553], [-77.33629862311217, 34.528149267823736], [-77.33667732298518, 34.527872299126905], [-77.3367390896795, 34.527866925764904], [-77.33677608753065, 34.52782315769812], [-77.33673251823711, 34.52779609949365], [-77.33669971831443, 34.52758932456385], [-77.33668436849327, 34.52756820581893], [-77.3365464019214, 34.527454255851936], [-77.33650654238068, 34.527372290752396], [-77.33629805010452, 34.52730072849113], [-77.3361720053943, 34.527342391509116], [-77.33610002760372, 34.527376871107556], [-77.33607462849213, 34.52743440992799], [-77.33608477577273, 34.52754832473428], [-77.33608892851645, 34.5275590510255], [-77.33620165588354, 34.52766095769953], [-77.33619632694158, 34.527719122561535], [-77.33615138786605, 34.527829167767884], [-77.3359233193562, 34.52794580528649], [-77.33611936630003, 34.52806198318932], [-77.33589012701599, 34.527965462983396], [-77.33587191775253, 34.52796456800983], [-77.33569326376146, 34.52799151159274], [-77.33568555466029, 34.52798490390807], [-77.33567815829258, 34.527981063870115], [-77.33559595268791, 34.527932031444024], [-77.33549950006734, 34.52788385395302], [-77.33539025127925, 34.52784633427243], [-77.3352808481677, 34.52779338607323], [-77.33519057669606, 34.52760972609539], [-77.33519566326086, 34.52756082003271], [-77.33524481867852, 34.52747371166372], [-77.33523641429942, 34.52713522766578], [-77.33537640879561, 34.5270451920539], [-77.33529466922394, 34.52695334085322], [-77.33512793717867, 34.52698011274635], [-77.3349865982871, 34.52701358115186], [-77.3346680611176, 34.52714706115198], [-77.33445232415767, 34.527250238659136], [-77.33433166790238, 34.527464664868695], [-77.33381066191961, 34.52743460125289]], [[-77.36039370549607, 34.56250003774877], [-77.360522011835, 34.56254392719197], [-77.36053339644167, 34.56240398827797], [-77.36046442649686, 34.562337792066884], [-77.36039379232365, 34.562331059307255], [-77.36024803719445, 34.562177688072595], [-77.36015843386033, 34.56203342281951], [-77.36013576823596, 34.56189045175021], [-77.3600000429951, 34.56195984155513], [-77.3599544473066, 34.56201368413554], [-77.35980303101977, 34.56204013539362], [-77.3597491253756, 34.56209235498708], [-77.35972372182769, 34.56222291975988], [-77.35968062099963, 34.56244618835695], [-77.35974873741102, 34.56251696419974], [-77.35999962982002, 34.56275647273163], [-77.36027012974009, 34.562575030314015]], [[-77.34067218837829, 34.53334698232743], [-77.34068637394827, 34.53338115133004], [-77.34066966566826, 34.533456102235945], [-77.3406159670201, 34.533480550835485], [-77.34047380471686, 34.53343833782865], [-77.34044124376662, 34.53343674393169], [-77.34036575341102, 34.53342727289262], [-77.3403812576084, 34.53336628448707], [-77.34042075669343, 34.53321090651758], [-77.34036155891243, 34.533183057853], [-77.3404004290696, 34.53312721757834], [-77.34048099608164, 34.533127306973725], [-77.34049388155229, 34.533155579236556], [-77.34049799458735, 34.533163431625155], [-77.34053106388113, 34.533190816341815], [-77.34056181929503, 34.53334551484534]], [[-77.36787401025254, 34.5220871087074], [-77.36795404479497, 34.52211062287388], [-77.36811307749718, 34.52214750025372], [-77.36820624350833, 34.52226548139163], [-77.36824481791386, 34.52228915110874], [-77.36827715105693, 34.522308890698575], [-77.36824141963567, 34.52233699903322], [-77.36821612011155, 34.522562512243006], [-77.3681963699865, 34.52269864686208], [-77.36818178432502, 34.52280469635272], [-77.36813982149056, 34.522818333500865], [-77.36779889441316, 34.5229175198281], [-77.36762558053559, 34.52299937921385], [-77.36771583007943, 34.522879428732985], [-77.36750741736631, 34.52284744803787], [-77.36740974876321, 34.522771002117324], [-77.36728847443965, 34.52269618059461], [-77.3672838586294, 34.52261611419379], [-77.36727376628184, 34.52257588672083], [-77.36729785526074, 34.522523323033084], [-77.36730951353051, 34.52244832249117], [-77.36732869986085, 34.52238957505375], [-77.36742005257118, 34.5223191455436], [-77.36776668378805, 34.52210598697416]], [[-77.35257266260687, 34.68651963528096], [-77.35257865105385, 34.68647230383505], [-77.35263705370329, 34.68646787723691], [-77.35292355792416, 34.6864589431158], [-77.352952667835, 34.686456776852985], [-77.35295197287668, 34.68646755255488], [-77.35309192941281, 34.68654669320332], [-77.35311285271754, 34.68662676030289], [-77.35309554812152, 34.68669152968417], [-77.3528037409242, 34.68692456976428], [-77.35275832071528, 34.6869507250021], [-77.35247999445723, 34.687019742378084], [-77.35247660809763, 34.687020516293856], [-77.35247624312497, 34.687020257462684], [-77.35247595742334, 34.687019534851245], [-77.35240811609485, 34.68690776592627], [-77.35242839186512, 34.68686027804873], [-77.35245468312414, 34.68677952617623], [-77.35246843433093, 34.6866937281887]], [[-77.4043902307764, 34.508285240313924], [-77.40416138584763, 34.50812136816073], [-77.40413040792627, 34.50807792661395], [-77.40407392076838, 34.50798164580575], [-77.40399061555787, 34.50785327722906], [-77.40395729777211, 34.50779308739209], [-77.40385729508691, 34.50760641551986], [-77.40375293536934, 34.50746501539395], [-77.40360530571586, 34.5074192469445], [-77.40386516526146, 34.50725465944188], [-77.40424187698976, 34.507070109215476], [-77.4046599882314, 34.5068068096189], [-77.40502473720025, 34.50698418938319], [-77.40539051062157, 34.50716142169285], [-77.40542028667117, 34.50716738084521], [-77.40543627781102, 34.50718760234183], [-77.40577460337293, 34.507381815657524], [-77.40578982549815, 34.50782287739157], [-77.4055459156206, 34.50811832907044], [-77.40541341139229, 34.50821047359804], [-77.40530281399231, 34.50822228159579], [-77.40482027264949, 34.50834459828314], [-77.40462441953035, 34.508397215108864], [-77.40440448975427, 34.5084200831278]], [[-77.40226968574464, 34.50840969687184], [-77.40251572200422, 34.50840253439724], [-77.40247205614594, 34.50856225005273], [-77.40226368461586, 34.5086776937603], [-77.4019461195529, 34.508933304541216], [-77.40169671827796, 34.509023130162035], [-77.40146940787935, 34.50909976449606], [-77.40111995828684, 34.50900232910945], [-77.40109770870328, 34.50899409516041], [-77.40098270841023, 34.508777309504666], [-77.40117830997761, 34.50855989564459], [-77.40126220308431, 34.50849211585034], [-77.40148658235223, 34.50833311130445], [-77.401655236446, 34.508295225402485], [-77.40212701151812, 34.50821415275541]], [[-77.26702780435252, 34.600709074459814], [-77.26606058235186, 34.60038423382747], [-77.26580458636673, 34.59990216117208], [-77.2656877136572, 34.599691703712054], [-77.2661121078387, 34.599294301431215], [-77.26660937910114, 34.599022655881775], [-77.26759233532184, 34.59907572862221], [-77.2673109671387, 34.59964643269204], [-77.267347944947, 34.59982221097654], [-77.26724585143907, 34.59994033863197]], [[-77.35702707009867, 34.56097786796619], [-77.3572430595728, 34.56087379382372], [-77.35739998307878, 34.56090148237391], [-77.35727601568786, 34.560750192595314], [-77.35724313927174, 34.56072960184738], [-77.35689588891239, 34.56075458618349], [-77.35685297294145, 34.56038654048865], [-77.3568512267681, 34.56038481941237], [-77.35684941503303, 34.56035173298129], [-77.35682640478512, 34.56036557465223], [-77.35681639085772, 34.56039180662623], [-77.3566235591353, 34.560600856758406], [-77.35645502225485, 34.56116904276441], [-77.35639694758552, 34.561301290222666], [-77.35645493288527, 34.561328048135145], [-77.35652979150865, 34.5612821671609]], [[-77.39455721190112, 34.511299154611635], [-77.39435441606169, 34.51139198568198], [-77.39400318024175, 34.511471911906064], [-77.39395997323045, 34.51148167880723], [-77.39389902299762, 34.51147565328696], [-77.39356761151907, 34.51147881655863], [-77.39334543682101, 34.51148732233637], [-77.39317574548318, 34.51145392041439], [-77.39307140606077, 34.51145347982629], [-77.3929798233893, 34.51144098906697], [-77.3928915716825, 34.51141433031948], [-77.39298175532736, 34.51135513399618], [-77.39301519432688, 34.511294077195856], [-77.39309182496356, 34.51126301225804], [-77.3931808297891, 34.51122795101668], [-77.39326521108688, 34.51116736651813], [-77.39340565381201, 34.51109530190371], [-77.39357798971912, 34.51101746671958], [-77.3937649719322, 34.51091381211761], [-77.3939753622287, 34.51079743829868], [-77.39400495860839, 34.51078222277614], [-77.39406479767845, 34.5107553342213], [-77.39427032876327, 34.5106629794388], [-77.39437223844283, 34.510599385165726], [-77.39466339544616, 34.51066893583125], [-77.3947993444136, 34.51086873123302], [-77.39479631997392, 34.51091881859331], [-77.39465569202304, 34.51115971761551]], [[-77.33526983971092, 34.536241148697144], [-77.33530618612086, 34.536222694983024], [-77.3353454339583, 34.53623027798304], [-77.33533838412463, 34.5363320392096], [-77.33534270498183, 34.53635307876787], [-77.33530227490529, 34.53639141486162], [-77.33527186395324, 34.536382362422316], [-77.33527481088286, 34.53636284217878], [-77.33527182267036, 34.53634358911725]], [[-77.38558050091112, 34.5349925313144], [-77.3855840436803, 34.534993277385595], [-77.38558005749854, 34.53501216852763], [-77.38552134309279, 34.53503856973482], [-77.38557755469998, 34.53499421328961]], [[-77.37074242778742, 34.51828120563203], [-77.3708729521278, 34.51836805916814], [-77.37091101689936, 34.51842056118248], [-77.37091437303371, 34.51850125170223], [-77.37089078565185, 34.51859595544183], [-77.37086500019552, 34.51864652371403], [-77.37080467646322, 34.51866115666051], [-77.37064237693544, 34.518697259226926], [-77.3704944708777, 34.518654641597045], [-77.37044729407873, 34.51864674180018], [-77.37032381482484, 34.51858636506858], [-77.3702954190066, 34.518563962043906], [-77.3702539538442, 34.51851970577849], [-77.37021653417169, 34.5184794126777], [-77.37016330836158, 34.518422595678], [-77.37011007824046, 34.51837234121806], [-77.37000942163681, 34.518297718012064], [-77.36996807133306, 34.51821006913313], [-77.3699507840585, 34.51815047119395], [-77.36997134905667, 34.51808748624094], [-77.37006831419232, 34.51805455658358], [-77.37015591027094, 34.51805311877375], [-77.37026491145461, 34.51803849911996], [-77.37036877288557, 34.51809023045711], [-77.37049580907109, 34.51817083047882], [-77.37065278272173, 34.51824019111874]], [[-77.37379984911365, 34.517094372388975], [-77.37381869402495, 34.51708734893256], [-77.37413640352658, 34.51676143355225], [-77.37443252702015, 34.51663826008121], [-77.37461548493832, 34.51656464461629], [-77.37469225907755, 34.516535202160064], [-77.37483094752977, 34.51646773123567], [-77.3750122237148, 34.51637605725305], [-77.37535865069971, 34.516362753434024], [-77.37540502630937, 34.516360708224646], [-77.37544092584012, 34.516379794155554], [-77.37580548486395, 34.51656418956097], [-77.37582212606827, 34.51658826470386], [-77.37592402557742, 34.516799804582234], [-77.37578462509708, 34.516926869218345], [-77.37563726857529, 34.51699501395959], [-77.37538821758415, 34.51710084434186], [-77.37505429958183, 34.51720805736519], [-77.37484864456052, 34.5172887791592], [-77.37459681285404, 34.517386491181306], [-77.37437321174755, 34.517373357444356], [-77.3741351052558, 34.517346298345274], [-77.37381792459668, 34.51712120114291], [-77.37380368257857, 34.51711445657691], [-77.37379292653016, 34.51710702677365]], [[-77.32914306746252, 34.531156819387625], [-77.32916043409159, 34.53113204557136], [-77.3295374217212, 34.53107860539126], [-77.329544876542, 34.531066306534115], [-77.32974808752272, 34.53092138496753], [-77.32993717423899, 34.53076815539942], [-77.32994573725024, 34.5307638624305], [-77.32993753733834, 34.530752537115006], [-77.32985599267113, 34.530776764425966], [-77.32963207773649, 34.53086489075051], [-77.32953926179863, 34.53099947251171], [-77.32924850254301, 34.531044780661794], [-77.32913152697508, 34.531117968335195], [-77.32908210883274, 34.531132833573864], [-77.32906538158551, 34.53118330465409]], [[-77.36589283877375, 34.524671184531975], [-77.36634900808326, 34.52469003680199], [-77.36646444266088, 34.52477352318533], [-77.36652239688846, 34.52480015991319], [-77.36657743402166, 34.52484628810041], [-77.36668489176061, 34.524918530308724], [-77.36672087942266, 34.52498140165359], [-77.3666650372426, 34.5250469468305], [-77.3666432964664, 34.52511499328326], [-77.3665952378656, 34.52522779672496], [-77.36660590792762, 34.52524279343937], [-77.36656650638498, 34.52532531339075], [-77.36650038398683, 34.52546354600019], [-77.36636617891294, 34.525504072688534], [-77.36626996844163, 34.52547404841639], [-77.36617101187237, 34.52545662678578], [-77.36606295162603, 34.525389383038316], [-77.36599568793034, 34.52533071307508], [-77.36592815795, 34.52525004018344], [-77.36590061020007, 34.52517168928215], [-77.36592470656512, 34.5250961136523], [-77.36589317154309, 34.52503513701506], [-77.36589007519876, 34.52491820133491], [-77.36592810002414, 34.52485079859908]], [[-77.34236163870314, 34.53512115912069], [-77.34220301629769, 34.53536633837437], [-77.34217385932352, 34.53548096511515], [-77.34217997253032, 34.53549995437384], [-77.34223495801297, 34.53551070850452], [-77.3423876250996, 34.53555523878289], [-77.34244804636083, 34.53553846577533], [-77.34264704132823, 34.53546291650636], [-77.3427831760128, 34.5354254033941], [-77.3428223491347, 34.53539964745691], [-77.34279532012009, 34.53528670281527], [-77.3427950695091, 34.535281162614545], [-77.34281651905155, 34.535259668741205], [-77.34285127712943, 34.53502825701151], [-77.34309994130084, 34.53493820109002], [-77.3431879940583, 34.53489412569026], [-77.34326832213486, 34.534917817635844], [-77.34345685597128, 34.53486355195223], [-77.34352068234985, 34.53480953908173], [-77.34356338969158, 34.534791214874986], [-77.34358372749001, 34.53475618733175], [-77.3435924875796, 34.53473800332666], [-77.34361162084495, 34.534690496137046], [-77.34361892099255, 34.53467299536762], [-77.34362126002742, 34.53465076863218], [-77.34360843766856, 34.534552094027525], [-77.34358908626884, 34.534524037272085], [-77.34346842636268, 34.53452506533019], [-77.34331634150759, 34.53454675376025], [-77.34319479482335, 34.53459956646553], [-77.34281294579158, 34.534788952703394], [-77.34280865051463, 34.53479639928364], [-77.34279614587133, 34.534863757202864], [-77.34263573676913, 34.53491376807934], [-77.34232808045822, 34.53505924690094]], [[-77.35705907361115, 34.54379093650226], [-77.35705681599421, 34.54371805017831], [-77.3570069132038, 34.54351824233927], [-77.35712597284626, 34.5433474301465], [-77.35727748585795, 34.543479285585924], [-77.35720562913161, 34.543680026431375], [-77.35715992838078, 34.543768223750234]], [[-77.33775464573286, 34.530348653094876], [-77.33773793440002, 34.53037780836242], [-77.33775921319356, 34.53039793901003], [-77.3377931951381, 34.53053621891474], [-77.33794566957766, 34.530441660697605], [-77.33782164365678, 34.53035070425049]], [[-77.34384845973884, 34.553246232633086], [-77.34367918066128, 34.553104536336335], [-77.34394793733969, 34.552998195684424], [-77.34395502147547, 34.55299038917902], [-77.34419962512767, 34.55303820521304], [-77.3441963103933, 34.553107818075986], [-77.34403245208426, 34.55321976453877], [-77.34398332665548, 34.553252556851916], [-77.34394118978575, 34.553290665025784], [-77.34385219415496, 34.55330103702482]], [[-77.35458330124342, 34.55427211654187], [-77.35461385145751, 34.55433064576481], [-77.35475942067322, 34.554369176194925], [-77.3549083314166, 34.55445090784787], [-77.35501619533682, 34.554332214458555], [-77.3549805378579, 34.55429456044659], [-77.35500451945478, 34.55421148400988], [-77.35497650456983, 34.55413103854309], [-77.35495272361335, 34.55409652865103], [-77.35495001169076, 34.55407628818516], [-77.35491819951775, 34.55402072039532], [-77.35490339670716, 34.5539908748516], [-77.35489883593701, 34.55398187439911], [-77.35489412917161, 34.55396677154919], [-77.35487853398993, 34.553889002448955], [-77.35486423848974, 34.553864443352815], [-77.35482392962606, 34.553851187012754], [-77.35479004324506, 34.55387512349103], [-77.35477486654355, 34.55390874443063], [-77.35472277989244, 34.553981557365795], [-77.35470725660062, 34.554000036493825], [-77.35468040137175, 34.55403892100625], [-77.35461741381356, 34.55414479504519], [-77.35460709290902, 34.554199677283606]], [[-77.39498090700474, 34.57662891236655], [-77.39501372401058, 34.576915739613156], [-77.39483489719439, 34.57699034642705], [-77.39466499420675, 34.5771488205918], [-77.39453641538712, 34.5771719551246], [-77.39459002876043, 34.57702566991232], [-77.39464099190984, 34.57661966411055], [-77.39464676318372, 34.57659291434676], [-77.39465220996244, 34.57657829544779], [-77.3946746339301, 34.57657856316346], [-77.39469930867955, 34.57658533437834]], [[-77.3449592022202, 34.54319882546842], [-77.34507886056196, 34.5432017826223], [-77.345351639946, 34.54320533789411], [-77.34540777460792, 34.543229121223604], [-77.34536907563582, 34.543464903609724], [-77.34536164279837, 34.543490922722846], [-77.34496940379299, 34.54378183239264], [-77.3449671754646, 34.543795709601326], [-77.34494492493201, 34.543817879418626], [-77.34491730346124, 34.54380671370702], [-77.34492033061642, 34.543788892855474], [-77.34492162049818, 34.54377353686584], [-77.34475257129364, 34.54356820949474], [-77.34478812042128, 34.54342175592256], [-77.34479422596904, 34.54331739692483], [-77.34486883631081, 34.54325106106042]], [[-77.3724923831002, 34.51794828395768], [-77.3724600534201, 34.51791122620097], [-77.37246793213318, 34.517884530467676], [-77.37246797264984, 34.517787670490584], [-77.37262951297637, 34.51760651413792], [-77.372747412608, 34.517575675179444], [-77.37288605566518, 34.517567915965905], [-77.37302178625504, 34.51761474429887], [-77.37311689607321, 34.517634519794456], [-77.37320987512982, 34.51768072986509], [-77.37314233581428, 34.51776783953656], [-77.37314388217033, 34.51793507124128], [-77.37301203107194, 34.51804376399539], [-77.37284072175541, 34.51811778131468], [-77.37278845720905, 34.518124627788346], [-77.37261845356444, 34.518092791679855], [-77.37252649638859, 34.51808158710372], [-77.37252621245236, 34.518024104031404]], [[-77.35932007709651, 34.54697994612393], [-77.35932555021202, 34.54693309843702], [-77.35932331660459, 34.5469049223322], [-77.35926147988519, 34.54690192528095], [-77.35926685104447, 34.54694765456487], [-77.35927143941208, 34.546986949593006], [-77.35928103609598, 34.54703562483624], [-77.35928425872085, 34.54705516995638], [-77.3593250874894, 34.54705705781423], [-77.35931080741038, 34.54703507835699]], [[-77.33669808097767, 34.53482073244799], [-77.33669876220124, 34.534802670386064], [-77.33672568961869, 34.53479984528731], [-77.33673519048293, 34.53482040637297]], [[-77.34967264709321, 34.55277548286355], [-77.34966961576252, 34.552761547018754], [-77.3496792797868, 34.55271332317419], [-77.34964800788657, 34.552698888189404], [-77.34961655505987, 34.55268101275194], [-77.34955669023492, 34.552673662351076], [-77.34955039243005, 34.55267531061686], [-77.34952862249858, 34.55270440071216], [-77.34952250682036, 34.552719124084916], [-77.34951630176724, 34.5527367763033], [-77.34951984254027, 34.55275418443287], [-77.34952839680831, 34.55279624100908], [-77.3495469445115, 34.552825194030454], [-77.34960358048512, 34.55281150865338], [-77.3496456553037, 34.55280116183229], [-77.34967584098827, 34.55279373869017]], [[-77.35929096205004, 34.54668802930829], [-77.35931122467154, 34.54667775934672], [-77.35931081008157, 34.54667300860201], [-77.35930781860512, 34.546646626579324], [-77.35928274242822, 34.54666390137421]], [[-77.35948988468488, 34.54750634878041], [-77.359496486282, 34.54749800657608], [-77.35949377790104, 34.54744959393791], [-77.35948892779221, 34.547445280583815], [-77.35949742245256, 34.547389274978485], [-77.35949423939925, 34.54737901751085], [-77.35942827440654, 34.54735563160875], [-77.35945133845392, 34.547411484195266], [-77.35947258278725, 34.54744763415758], [-77.35946484055854, 34.547497606931564], [-77.3594510225794, 34.547532412665646], [-77.35948905954963, 34.54750939044707]], [[-77.34286524207243, 34.52588166006586], [-77.34284206950755, 34.52594863501154], [-77.34291677279472, 34.5259067485633], [-77.34292358084491, 34.52588695450094]], [[-77.3592801951381, 34.546575488358506], [-77.35923760389252, 34.54657984701706], [-77.35923008579346, 34.54661341042179], [-77.35929890018517, 34.54660967062286]], [[-77.3483323736087, 34.55114852339411], [-77.34833120440396, 34.55114766183291], [-77.34833039941614, 34.55114547307396], [-77.34832726383304, 34.5511405782198], [-77.34832708060931, 34.55113744323226], [-77.3483251338612, 34.55113323407019], [-77.34832556523267, 34.55112759646033], [-77.34833457871224, 34.55112447469072], [-77.34833917458042, 34.551128293124734], [-77.34834469572337, 34.55113041921761], [-77.34834213941409, 34.551135662106034], [-77.34834182994562, 34.551138482230016], [-77.34834341140044, 34.55114017237525], [-77.34834412031566, 34.551144388144685], [-77.34833992923083, 34.55114640637464], [-77.34833853324574, 34.55114943131305], [-77.34833398700891, 34.55115017940437]], [[-77.33875416813038, 34.55242872041298], [-77.33875396613882, 34.55243065254414], [-77.33875065064514, 34.55243138114173], [-77.33875138499296, 34.55242939620653]], [[-77.43130416952543, 34.50245853040128], [-77.43162087051162, 34.502396202568804], [-77.43186518804995, 34.5024367460162], [-77.4326311973756, 34.50254841101801], [-77.43275126649519, 34.50270271049551], [-77.43312975140923, 34.5029899010392], [-77.43319670188741, 34.50303591761163], [-77.4332611002971, 34.50306647991119], [-77.43327793907271, 34.50312338217209], [-77.43317914850316, 34.50317074452791], [-77.43309902758327, 34.503630558720005], [-77.43304970231462, 34.50373123412321], [-77.43294158036386, 34.50395191764872], [-77.432972665448, 34.50406507306273], [-77.43287361321697, 34.504115135921616], [-77.43278167743777, 34.504180813915056], [-77.43257311871211, 34.50438246377631], [-77.4326160628626, 34.50458409393764], [-77.43227593399335, 34.50479452152277], [-77.43138967624455, 34.50476222382902], [-77.43091056061887, 34.50472634658438], [-77.4304381544661, 34.504476257450946], [-77.43026016176333, 34.50426447688379], [-77.43031982224674, 34.50406219032385], [-77.43022792226617, 34.5038032476571], [-77.42982668542535, 34.503566820434855], [-77.4301135155653, 34.50336777365762], [-77.43026487946636, 34.50325141131379], [-77.43046558548173, 34.50309711703966], [-77.43050784451097, 34.502965296023426], [-77.43059467689339, 34.502930468728906], [-77.4307071188922, 34.50277027105042], [-77.43068401847569, 34.502597258639156], [-77.43079950816191, 34.50251291843264], [-77.43096181872312, 34.50244857902942]], [[-77.33557498576968, 34.57448572484134], [-77.33524264931101, 34.57445684827548], [-77.3351714899327, 34.57448223921797], [-77.33512244768181, 34.57449795109166], [-77.33497443670434, 34.57454536987437], [-77.33482601249113, 34.57459339402381], [-77.33478432121102, 34.57460686153489], [-77.33477737429727, 34.57461941944666], [-77.33466840352415, 34.57482832047608], [-77.33470738107954, 34.574959867981065], [-77.3347321994569, 34.575031419806855], [-77.3347416055919, 34.57506821528146], [-77.33511472457128, 34.57540097124744], [-77.33510218870639, 34.57547657934103], [-77.33517045172994, 34.57576840000466], [-77.3353657067784, 34.57536489119452], [-77.33564103182533, 34.574982595554516], [-77.33567350133032, 34.57477946808181]], [[-77.23839492503372, 34.59384131357728], [-77.23768601105361, 34.59433251087505], [-77.23738253263244, 34.59441993545362], [-77.23715909183805, 34.594521143834], [-77.23653951390295, 34.59456854716329], [-77.2364798574987, 34.5945742636417], [-77.23645711906771, 34.594582354973994], [-77.23612551206818, 34.59469062545955], [-77.23522288786374, 34.59477079819089], [-77.23466852763988, 34.594784230313806], [-77.23457716277254, 34.594535302700265], [-77.23444861223697, 34.59440363230317], [-77.2334772572982, 34.59380638645136], [-77.23339259680118, 34.59350909077749], [-77.23340758247667, 34.59315565750252], [-77.23328921633413, 34.59242674521554], [-77.23383928327385, 34.5918724439387], [-77.23440040209957, 34.5914092503546], [-77.23503328418236, 34.5906789066012], [-77.23508816071497, 34.59062477398545], [-77.23571831563483, 34.58995212693679], [-77.23608524769509, 34.58981916916125], [-77.23742876769658, 34.58933234180453], [-77.2387437724477, 34.59002882904578], [-77.23875476260154, 34.590032846543195], [-77.2387590424934, 34.59003552536354], [-77.23878808026062, 34.59005370002205], [-77.23953694307136, 34.590474852963055], [-77.23961063213272, 34.590568531168], [-77.24002279971339, 34.59087013256271], [-77.24018607428127, 34.590966656986794], [-77.24037007048149, 34.59109975754883], [-77.24027855723726, 34.59137974614153], [-77.2399815743733, 34.59177795962134], [-77.24096059236749, 34.59208901412231], [-77.23922093791643, 34.59245409232773], [-77.238885892676, 34.59277035869046], [-77.23826866817757, 34.592819487240305], [-77.23817803444878, 34.59284865079053], [-77.23786027183, 34.59293927472372], [-77.23767114678868, 34.59300445418488], [-77.23716666579624, 34.593180890976484], [-77.23711312206127, 34.59319971984049], [-77.23710869639226, 34.59329539100388], [-77.23731466188478, 34.593510846385435], [-77.23810526364207, 34.593749307647855]], [[-77.26276050112547, 34.59663351737372], [-77.26299353791056, 34.59712380647524], [-77.26229244732156, 34.597813135714816], [-77.26214072077656, 34.59847013091744], [-77.26158483437493, 34.599120990881545], [-77.26255843763812, 34.59965238895014], [-77.26271945838593, 34.60016576862405], [-77.26285010358626, 34.60041126012053], [-77.2635229633344, 34.6013345442653], [-77.26435410289594, 34.60227515828406], [-77.26448442232915, 34.60242511421032], [-77.2644979456052, 34.6024391060965], [-77.26451312648581, 34.6024548127835], [-77.26655965659728, 34.60313667686936], [-77.26843122327544, 34.603271150522005], [-77.26868440361481, 34.60234094212731], [-77.26947685874067, 34.60093218183394], [-77.26996913595151, 34.599380949075076], [-77.27017117311952, 34.59884469675585], [-77.27095476495194, 34.597277662333774], [-77.27174322524215, 34.59570082073165], [-77.2720470644787, 34.595202628612626], [-77.27072622194419, 34.59479663085175], [-77.26823192432312, 34.595103903808536], [-77.26569438471971, 34.59558026505324], [-77.2643619743025, 34.59608763156415]], [[-77.4285779580003, 34.491926697360874], [-77.42766237941565, 34.491972178396956], [-77.42854789252264, 34.492156132895786], [-77.42820921390742, 34.49267564241334], [-77.42830755289803, 34.49298354410473], [-77.42824325551166, 34.493352920782485], [-77.42820163204888, 34.493902465738245], [-77.42832124355624, 34.4940324424668], [-77.42819758303219, 34.494118391877485], [-77.42853316688087, 34.49451212047813], [-77.4288204729819, 34.49473346549742], [-77.42914125395104, 34.4949773713268], [-77.42916733729695, 34.495426709578396], [-77.42890870809, 34.49565238806724], [-77.42894454341021, 34.49575310921735], [-77.42853984611264, 34.49604537903943], [-77.42851802353142, 34.49605662091865], [-77.42832680904779, 34.496059346959704], [-77.42765902188052, 34.4962331913605], [-77.42724184443763, 34.4962233712078], [-77.42696825841733, 34.49611198141457], [-77.4269045670007, 34.495986739330974], [-77.42676332242004, 34.495797766749455], [-77.42658757545789, 34.49563278349672], [-77.42656754457715, 34.49553844547057], [-77.42606385642377, 34.49526826870729], [-77.42644772441999, 34.49481824788203], [-77.42499838712952, 34.494538307474905], [-77.42431087604126, 34.49436842519535], [-77.42444602278607, 34.493482866753226], [-77.42450478306691, 34.493162010013755], [-77.42536521482539, 34.492741425841004], [-77.42553724816375, 34.4925392067895], [-77.42575406957826, 34.49204940639853], [-77.42339822880932, 34.4917543988905], [-77.4233355443873, 34.49174667468034], [-77.42328123594599, 34.49107287731003], [-77.4239294330215, 34.49085503772569], [-77.42393379011884, 34.49076844499072], [-77.42435129107369, 34.490568016022465], [-77.42451673692574, 34.4905464158269], [-77.4246408360516, 34.49046679191958], [-77.42518428422594, 34.49027680414855], [-77.42552197532525, 34.489923974902545], [-77.42611923630776, 34.48954303987975], [-77.42599305919998, 34.48918477412657], [-77.42658873723735, 34.488899345306045], [-77.42694481075326, 34.48875610352712], [-77.42745876808979, 34.488584082249794], [-77.4278082616479, 34.48843432989081], [-77.42877357491938, 34.488651211107324], [-77.42882425352717, 34.48888075951903], [-77.42987095560116, 34.48938276263344], [-77.42893478179381, 34.48972355931579], [-77.4288238805162, 34.490446487079595], [-77.42911348610374, 34.49069517940562], [-77.42936255327871, 34.49111980831051], [-77.42865407150556, 34.49153216545165]], [[-77.44760956182509, 34.48205688456746], [-77.44829329217586, 34.48130975545623], [-77.44779132691836, 34.48083873757279], [-77.44848838556292, 34.480345662417875], [-77.44999661988714, 34.48095097547215], [-77.44999051266073, 34.480956243759145], [-77.44913929167602, 34.48172090310133], [-77.44777410648545, 34.48218891550581], [-77.4476681856247, 34.4822714326115], [-77.44673429357177, 34.482135977313966], [-77.44753280976659, 34.48212833051504]], [[-77.46803174423486, 34.507531821394444], [-77.46802191195421, 34.50753622720144], [-77.46613627475597, 34.50779935333861], [-77.46605257554754, 34.50811186110211], [-77.46599372333935, 34.50832413627674], [-77.46568377210818, 34.508760033755294], [-77.465679641161, 34.50876561836116], [-77.46568117846194, 34.50876853440558], [-77.46566371865534, 34.50878051646966], [-77.46499193851193, 34.50940907996867], [-77.46555466601843, 34.509892938815014], [-77.46584559583468, 34.51012789182948], [-77.46451046263057, 34.51057387097243], [-77.46439530400293, 34.51072983335946], [-77.46398672524882, 34.51091354452387], [-77.46391578491699, 34.511259639720976], [-77.46401644692615, 34.511386124622604], [-77.46431530611883, 34.511667123682784], [-77.46440340037975, 34.51178780754956], [-77.46457276552731, 34.51179215075114], [-77.4647882996475, 34.51158670954391], [-77.46495194247613, 34.51143358375324], [-77.46497518392593, 34.51139356127341], [-77.46504360370818, 34.511343361108004], [-77.46539095807923, 34.51100145486564], [-77.46610476522011, 34.510298831075836], [-77.46634772645427, 34.510153358979665], [-77.46725055404222, 34.50952847279489], [-77.46725692413084, 34.5095139385099], [-77.46757170418039, 34.508864413727196], [-77.46768333941199, 34.50855062912851], [-77.46804667079246, 34.50755063637919], [-77.46805022364846, 34.5075407951875], [-77.46805137442665, 34.50753772118767], [-77.46805281124978, 34.507532182064104], [-77.46848803081917, 34.50620883895122], [-77.46739934273172, 34.50484871236818], [-77.46740539530282, 34.50480292549097], [-77.46751713483336, 34.5046803113855], [-77.46727212158515, 34.504719614627945], [-77.4672500203702, 34.50477619856155], [-77.46724198825326, 34.50479464014571], [-77.46722282412696, 34.504834102474106], [-77.46692381885117, 34.506129516979]], [[-77.3329571542724, 34.63416644539829], [-77.3330183153501, 34.63418718778295], [-77.3330337615119, 34.63410993134731], [-77.33300329150656, 34.6340125418583], [-77.33288651123355, 34.6338146834509], [-77.33257229189839, 34.63371786480704], [-77.33254991049317, 34.63373252890141], [-77.33253584052876, 34.63373662182698], [-77.33237641703704, 34.63366558957425], [-77.33225702673452, 34.63379450702922], [-77.33232017367533, 34.633868875287575], [-77.33243522209797, 34.63398920798032], [-77.33245727716508, 34.63399691254708], [-77.332558565859, 34.63377562859419], [-77.33286058006394, 34.634133692538164], [-77.33293017067624, 34.63415729406774]], [[-77.36376855502148, 34.527611271171935], [-77.36376678176622, 34.52761177512083], [-77.36374865348988, 34.52762416990522], [-77.36336905035786, 34.527840297097384], [-77.36314539996084, 34.52780475738521], [-77.3632019145007, 34.52793662315169], [-77.36309181597042, 34.52812139815904], [-77.36299337825997, 34.5282114878058], [-77.36299826656818, 34.528229889364674], [-77.36305802608689, 34.5283883617289], [-77.36301148462162, 34.52845370482106], [-77.3630052041171, 34.528481630917916], [-77.36303457331378, 34.5286474998045], [-77.3630273247942, 34.528696248286515], [-77.36315568860539, 34.528797201203155], [-77.36315811979375, 34.52879982032165], [-77.36316744566187, 34.52880894694678], [-77.3632080516681, 34.528915040338056], [-77.36327210271372, 34.528950461455466], [-77.36329014262844, 34.528964421607526], [-77.36329170717411, 34.52899359773254], [-77.36321441602374, 34.52903653619859], [-77.3632120607545, 34.52907902273689], [-77.36300473182374, 34.52915285844457], [-77.36294670829119, 34.529145588304964], [-77.36268726254778, 34.5289900577648], [-77.36262498851679, 34.52895755015183], [-77.36256044621055, 34.52887194215969], [-77.36237893535883, 34.52866104107315], [-77.3622754143959, 34.5285597306853], [-77.36220677652332, 34.52834145771618], [-77.36220191752263, 34.52832549282], [-77.36225021916405, 34.528275711193274], [-77.36242787181301, 34.5280481206298], [-77.36249472175118, 34.527984848637075], [-77.36258180750568, 34.5279374475913], [-77.36285469880185, 34.52774181365382], [-77.36262961437049, 34.5275537595852], [-77.36259834492608, 34.52753391530872], [-77.3625960517338, 34.5275311538215], [-77.36259143544534, 34.52751625532888], [-77.36248914610606, 34.52712931387164], [-77.36250617197092, 34.5270575420289], [-77.36251074490765, 34.526999180272945], [-77.36258141535887, 34.52680187858145], [-77.36260851210595, 34.52676920800366], [-77.36292343688906, 34.52670328018792], [-77.36299196322904, 34.5264979144314], [-77.36321293405445, 34.52634742901864], [-77.36340487231273, 34.52595333415294], [-77.36340278862262, 34.52594908449506], [-77.36340211310966, 34.525942760186275], [-77.36341247012484, 34.52594004835979], [-77.36369178815968, 34.52558699673222], [-77.36381465499883, 34.52551619646324], [-77.3639524028886, 34.525380258161036], [-77.3640119550183, 34.52524607239912], [-77.36421658262783, 34.5251034297593], [-77.36451991789308, 34.52510920805726], [-77.36481544392306, 34.52525592595224], [-77.36499701195035, 34.525303431114175], [-77.36526442105128, 34.52535883152839], [-77.3653874648542, 34.52539304953618], [-77.365402759286, 34.525406408236115], [-77.36540815946101, 34.5254153605487], [-77.36546742741024, 34.52545761863437], [-77.3655607730606, 34.52552817241144], [-77.36562574643688, 34.52562883827505], [-77.3655687546726, 34.52576351893393], [-77.36553529088498, 34.52598736586563], [-77.36554766365767, 34.52612973986012], [-77.36544609312637, 34.52633915873759], [-77.36543481990218, 34.52639082340122], [-77.36538704365435, 34.526411950921535], [-77.36536378772979, 34.52643032841441], [-77.36526832855975, 34.52653722272106], [-77.36524793166906, 34.52659261930855], [-77.36517267756372, 34.52667341579786], [-77.36518830791522, 34.526775702528575], [-77.36517120688158, 34.52680364637522], [-77.36497293903791, 34.52694701743379], [-77.36496805071731, 34.52695315034377], [-77.36495903463417, 34.5269668520186], [-77.36479575302768, 34.52711767052655], [-77.364573203172, 34.527249430595475], [-77.36456961866473, 34.52725599307659], [-77.36455994613874, 34.52725508947513], [-77.36455299830789, 34.52725665277178], [-77.36424094133798, 34.52734441618098], [-77.36416393627458, 34.52740841336132], [-77.3637695801401, 34.52761002462091]], [[-77.41795964627488, 34.4962052471993], [-77.41903847546583, 34.49576977274973], [-77.41983403869949, 34.49630107132387], [-77.41948703304936, 34.49688680610677], [-77.4194790304036, 34.49695847144549], [-77.41937679640655, 34.4970092942396], [-77.41918714866213, 34.497043355178945], [-77.41803353941813, 34.49702152847064], [-77.41775727941183, 34.49687044719336], [-77.41788320631673, 34.496470717262326], [-77.41788336856109, 34.49623385977808]], [[-77.30863385752433, 34.54518683383262], [-77.30879631482993, 34.54508667776726], [-77.30881825219008, 34.54507402300852], [-77.30886844075019, 34.54505332374009], [-77.30959016580468, 34.544718868283226], [-77.30995382315683, 34.544633379718185], [-77.31025415621517, 34.54436474894139], [-77.3111818405788, 34.543813023470435], [-77.31170314101534, 34.54349790792337], [-77.31245607652626, 34.54306933443936], [-77.31277405664147, 34.54288257463404], [-77.31336354330783, 34.54257591428305], [-77.31356902766152, 34.542465273953646], [-77.31365469298507, 34.542460940886514], [-77.31370690035902, 34.54240008802896], [-77.31436336006152, 34.542074878424465], [-77.31467133793184, 34.541962360586226], [-77.31550675657489, 34.54165196756398], [-77.31582295980151, 34.541529520824895], [-77.3159481746003, 34.54145755754138], [-77.31623988169122, 34.54136609625696], [-77.3175253353085, 34.54116636475703], [-77.31801014045699, 34.54099259711881], [-77.31831509670471, 34.54097005796768], [-77.31841452285927, 34.540804252501225], [-77.31841935903641, 34.5407439741301], [-77.31879432323015, 34.54049236162643], [-77.31885937221965, 34.54043595153734], [-77.31911597785003, 34.54029784140039], [-77.31925884655814, 34.5402217337452], [-77.31946913733654, 34.54010353909047], [-77.31991170414062, 34.539845695971344], [-77.32028083999316, 34.53975800789676], [-77.32035646874904, 34.539762578043245], [-77.32069939105259, 34.53973739218702], [-77.32113787315188, 34.53937416353943], [-77.32125601375486, 34.539206951572275], [-77.32205647237342, 34.53875254957312], [-77.32216504898598, 34.53865594776063], [-77.32229664855113, 34.53858272341938], [-77.32243818989309, 34.53860905089224], [-77.32356911603885, 34.53834602320149], [-77.32387987779846, 34.53802773892542], [-77.3239129606069, 34.53799615360465], [-77.32436231721145, 34.53773860496254], [-77.32497434001709, 34.53735399379347], [-77.32547501513032, 34.536960693860856], [-77.32603012597457, 34.536563414697326], [-77.32627575387721, 34.53629038580962], [-77.32639598077819, 34.53617042005818], [-77.32655176908968, 34.53598039796266], [-77.32665791917798, 34.535875449694174], [-77.32681824467124, 34.535778839882475], [-77.32707586001436, 34.53564669513189], [-77.32721161946492, 34.53556355821298], [-77.327617072799, 34.53534884881442], [-77.32786971781115, 34.5352709702012], [-77.3281851414803, 34.53522754232584], [-77.3283127901214, 34.53519080233612], [-77.32866122649267, 34.53499591030154], [-77.32877512306867, 34.53491910369296], [-77.32903401175052, 34.5348119706775], [-77.32919786013863, 34.53462812343689], [-77.32945713577064, 34.53453135782536], [-77.3297438983154, 34.5343971846234], [-77.3298896466629, 34.53419933783378], [-77.33025469787447, 34.53399530276954], [-77.33090655044052, 34.533969672932066], [-77.33144682879924, 34.53348583398497], [-77.33168589928816, 34.53335551178269], [-77.33184147806125, 34.533281119542934], [-77.33223921951591, 34.53312609431417], [-77.33263409306561, 34.53295695538504], [-77.33282235175933, 34.53291523690836], [-77.33303037076803, 34.532768519741246], [-77.33342775852013, 34.532587244820256], [-77.33374703728097, 34.53237184477974], [-77.33382590037863, 34.53234584530779], [-77.33422041023377, 34.532109951408366], [-77.33422393923647, 34.53210878430233], [-77.33422536414065, 34.532107931322564], [-77.33422780551584, 34.532106703908354], [-77.33479235411373, 34.53188718861069], [-77.33501410503982, 34.531889327443515], [-77.33520953126472, 34.531844295923094], [-77.33570626940771, 34.53189409192678], [-77.33576132008419, 34.53190949581586], [-77.33579768013803, 34.531954030376], [-77.33583342455287, 34.531897278229025], [-77.33597042033455, 34.53185610361534], [-77.33619356700692, 34.5318094938465], [-77.33623833528925, 34.53181757335381], [-77.33639052382844, 34.53191612391346], [-77.33658276783436, 34.53195348048523], [-77.3369681505939, 34.53195295904351], [-77.3369777545687, 34.53195450500747], [-77.33736499449472, 34.53207645160078], [-77.33745952010217, 34.53207267563315], [-77.33775942245535, 34.531994812975775], [-77.33814660795419, 34.53203275140301], [-77.33814345418615, 34.532037887775324], [-77.33814887443097, 34.532128087272895], [-77.33816749616955, 34.53250236456013], [-77.33819310025311, 34.53251569946933], [-77.33822412996956, 34.53256447162395], [-77.3387486379846, 34.53292542919406], [-77.3387164625634, 34.533052359230865], [-77.33891356374357, 34.53300907475007], [-77.33912038306207, 34.53311677627423], [-77.3392411797483, 34.53313803261595], [-77.33930107101298, 34.53322668203693], [-77.33937318534134, 34.53332523112618], [-77.33947085396497, 34.53344693338402], [-77.33968809759051, 34.53346515534912], [-77.33972585564848, 34.53351932017134], [-77.33972968074593, 34.53373377873426], [-77.33975818170616, 34.533759488338774], [-77.33995006688058, 34.53390156388514], [-77.33967209482248, 34.53415700593533], [-77.3394872315189, 34.534173036415964], [-77.33914340300473, 34.53433755438666], [-77.33897636070836, 34.53442112377048], [-77.33887951813654, 34.53448037587177], [-77.33883701682453, 34.534409158691254], [-77.33870355951845, 34.534400819966216], [-77.33836803851013, 34.5342813064653], [-77.33839031230544, 34.53395623969649], [-77.33810881182653, 34.53385870496595], [-77.33777090850054, 34.53383423670955], [-77.33768750563844, 34.533830845927646], [-77.33732246860025, 34.53391273233919], [-77.33721946416367, 34.534062563899916], [-77.33692507513273, 34.534121988082816], [-77.33686594209924, 34.53413884841202], [-77.33672822877976, 34.53414670621805], [-77.3366102491069, 34.53421225719488], [-77.33655669926782, 34.53423669084504], [-77.33652907895619, 34.534270843222274], [-77.33645472016276, 34.534357033351945], [-77.33641102845394, 34.534414172988235], [-77.33629587085483, 34.53450228664157], [-77.3362281810062, 34.53457355459023], [-77.33612738643718, 34.534665456247474], [-77.33578907017782, 34.53478444407481], [-77.33573260059212, 34.53476191166004], [-77.33545764491944, 34.53469520675138], [-77.33522862621162, 34.53472577858935], [-77.33494582534206, 34.534834086264645], [-77.3345579546545, 34.5347539696707], [-77.33371794296869, 34.53490332142639], [-77.33337213556828, 34.5349842079854], [-77.33316287497884, 34.53506834016528], [-77.3327951527737, 34.53525049952942], [-77.33200299142823, 34.53549722293274], [-77.33177929975034, 34.53595841857272], [-77.33151645162005, 34.53560341518195], [-77.33100133002799, 34.53565087187711], [-77.33082634238458, 34.53591793766226], [-77.33020560340888, 34.536107527565335], [-77.33020204771232, 34.53611077864207], [-77.33019302005806, 34.536114246778496], [-77.32992086099998, 34.536470689642925], [-77.32930054858767, 34.5367321726679], [-77.32860449982492, 34.537434546388894], [-77.32821118522564, 34.53762551256811], [-77.32800652656269, 34.53789744204662], [-77.32751228245607, 34.53827886099176], [-77.32756696369842, 34.538450254575324], [-77.3270021566399, 34.53881260708029], [-77.32645750810988, 34.53875891403808], [-77.32621813256567, 34.5387645016359], [-77.32555005687904, 34.5391511418413], [-77.32542292370093, 34.539196474780354], [-77.32530343607924, 34.53926520850885], [-77.32436486638511, 34.539727242641916], [-77.32383574735869, 34.539920315591736], [-77.3232852396074, 34.53989884641057], [-77.32289186938233, 34.54000362091536], [-77.32226515759419, 34.53993215694862], [-77.32204135838191, 34.53987437553881], [-77.32168176423986, 34.53991115624933], [-77.32147870877542, 34.5399874722205], [-77.32096536005386, 34.54005911829624], [-77.32068889916354, 34.54018662491819], [-77.32024978393352, 34.54048100926305], [-77.3201089525162, 34.540635756436956], [-77.31989157026435, 34.54070742571601], [-77.31958523981582, 34.540877561153145], [-77.31938702094581, 34.54091654602887], [-77.31909954558235, 34.54100086105801], [-77.31891812549007, 34.54104952377988], [-77.31857108712421, 34.54121180045426], [-77.31839876321973, 34.54129344488389], [-77.31830505082809, 34.541399677898006], [-77.31778864567849, 34.5414931632167], [-77.31756214711281, 34.54184635929919], [-77.31750883275461, 34.541871826936536], [-77.31748758475767, 34.54187034151098], [-77.31696033591336, 34.54208348407474], [-77.31671371196325, 34.54229669160259], [-77.31616586942957, 34.54253654277192], [-77.31604234978042, 34.54263012751344], [-77.31591777635188, 34.54275600317369], [-77.3151200334147, 34.54317465793589], [-77.31466584181297, 34.54373122834462], [-77.31454637754996, 34.543889014210045], [-77.31464868903394, 34.54449958940249], [-77.31479000736655, 34.54469263693632], [-77.31522513703686, 34.54502886385258], [-77.31526309727495, 34.545114313934576], [-77.31545699189145, 34.54532628500119], [-77.31544289613821, 34.54534678381347], [-77.31546445109801, 34.54534963333886], [-77.31554115896026, 34.54556399920173], [-77.31558909411974, 34.54563906173283], [-77.31545714605, 34.54566160841256], [-77.31523707089048, 34.545716050810896], [-77.3150629357297, 34.54573005135208], [-77.31483734109996, 34.54590989320634], [-77.31476438965163, 34.54598271278731], [-77.31462081426815, 34.54618580013311], [-77.3144626467228, 34.54633262918195], [-77.31454093172735, 34.546511355314415], [-77.31455902819818, 34.54668429483618], [-77.31452109188686, 34.546767642538796], [-77.3144562005519, 34.546826368786], [-77.31444774767262, 34.54685167005175], [-77.31434364494352, 34.54696003729212], [-77.31433524565999, 34.54701589826766], [-77.31424591062768, 34.547087717188205], [-77.31421209324691, 34.54710133488863], [-77.31407084308115, 34.54713556275777], [-77.31385707410803, 34.54726970941443], [-77.31384895734375, 34.547272870258794], [-77.31348504192403, 34.547309716663385], [-77.31345589270073, 34.54729203833485], [-77.31334597187363, 34.54727939698295], [-77.31339286676194, 34.54734138735849], [-77.31322386298942, 34.547507190796864], [-77.31310173769279, 34.547628004457344], [-77.31308906631709, 34.54765115394637], [-77.31305455938269, 34.54766390169007], [-77.31287091900606, 34.547905959903716], [-77.31278630296114, 34.54800057581529], [-77.31270374733644, 34.54817477538381], [-77.3126866391699, 34.548200476540565], [-77.31264683213391, 34.548308297318066], [-77.31258430551247, 34.54839907675926], [-77.3125633177579, 34.548439750342936], [-77.31258996796927, 34.548469029820325], [-77.31258888070599, 34.548558484535334], [-77.31257373237446, 34.54864236934843], [-77.31257251951271, 34.5486832387358], [-77.31242859690572, 34.54882012336789], [-77.31242118032485, 34.54883792621299], [-77.31227135683235, 34.54897129373953], [-77.31225593561642, 34.54898447098853], [-77.3122378978536, 34.549003899173236], [-77.31208937114575, 34.54915178816501], [-77.312036276353, 34.54923027124404], [-77.3120154333855, 34.549252851851946], [-77.31192416966127, 34.549319769320604], [-77.31183621136006, 34.5493902421774], [-77.31166149322414, 34.549440274812596], [-77.31155940793921, 34.549563141151104], [-77.31151088894649, 34.5496153660043], [-77.31147099746985, 34.54969824044796], [-77.31143569932922, 34.54972636844428], [-77.31128052792602, 34.5497516110984], [-77.31108258747143, 34.549876414367915], [-77.31103877271019, 34.5499095684684], [-77.31073970333748, 34.54998508616006], [-77.31035653730068, 34.55022546848889], [-77.31028016308805, 34.55025815151951], [-77.31024497299603, 34.550273455660516], [-77.30984632129532, 34.55054373361638], [-77.30953571211326, 34.550832933384164], [-77.30948778882119, 34.55086599647753], [-77.30944530376105, 34.5508869572679], [-77.30925009338526, 34.550998669030335], [-77.30923120154804, 34.55100836671329], [-77.30904805483918, 34.55108344145398], [-77.30892523968859, 34.551088888693], [-77.30890811136614, 34.551167843504764], [-77.30865048701405, 34.55129341619836], [-77.30851007044703, 34.55138356577203], [-77.30825891571185, 34.55150212832794], [-77.30825299925051, 34.55149989570187], [-77.30823481219662, 34.55150931012937], [-77.30790044627922, 34.551583527434026], [-77.30785802615574, 34.551599299607325], [-77.30759882458717, 34.55175986465866], [-77.3070668929013, 34.55184845965632], [-77.3068776337965, 34.55207912868765], [-77.30688725151137, 34.55219236816237], [-77.30666350092638, 34.55230569588352], [-77.30652505473438, 34.55240429251495], [-77.30632765003948, 34.55247954419265], [-77.30626733105736, 34.55245571923745], [-77.30589805273941, 34.55257916479148], [-77.30587423543919, 34.55258418490237], [-77.30586163764255, 34.55259055132488], [-77.3057992205521, 34.552547645080566], [-77.30557178181178, 34.55238118776597], [-77.30557841596541, 34.5523221107246], [-77.30506375432705, 34.551964488561154], [-77.3051126731854, 34.551709105975824], [-77.3035078089213, 34.55120857041799], [-77.30338100754228, 34.55108798620194], [-77.30315554584912, 34.5512099273548], [-77.30310539330864, 34.55123543146225], [-77.30300186107395, 34.551281184364534], [-77.30156256586312, 34.55216129767188], [-77.30113141147245, 34.5522614780898], [-77.30046586470053, 34.5526243247986], [-77.30001851844926, 34.553629600853576], [-77.3000865276481, 34.55365797971669], [-77.30004082076944, 34.553717878832046], [-77.30018521543981, 34.554468631688906], [-77.30006905971217, 34.55463970991146], [-77.30004631104168, 34.55471439783618], [-77.30029190696945, 34.55509734645774], [-77.3002253133757, 34.55529852020681], [-77.30024497115771, 34.555348887459125], [-77.30009471013034, 34.5554833587148], [-77.30009630047277, 34.55549262215433], [-77.29997265066118, 34.55554812872227], [-77.29995189323373, 34.55557454336147], [-77.29991102012889, 34.555592918793465], [-77.29983883059352, 34.5556071695905], [-77.29975164924598, 34.55564073043825], [-77.2997140127345, 34.55562166210214], [-77.2996137060494, 34.555624361907576], [-77.29951878679098, 34.555574920793916], [-77.29934926091173, 34.55558297690869], [-77.29913090665941, 34.55537252269208], [-77.29851313489465, 34.555842169417225], [-77.29841360356144, 34.55590671669182], [-77.29833189980619, 34.555952294815796], [-77.29816763405236, 34.55599354199556], [-77.29780276406231, 34.556106066943315], [-77.29753679084385, 34.556366604524904], [-77.29749546708672, 34.556453292047216], [-77.29747918788738, 34.55648011383419], [-77.29746024402385, 34.556528174601254], [-77.29741494083285, 34.55661173316248], [-77.29735684577543, 34.55663422552604], [-77.2972847249408, 34.55675281597012], [-77.29719071920874, 34.55680175941982], [-77.29713183992166, 34.556886634585354], [-77.2971253309004, 34.5568941371372], [-77.29712173490694, 34.556898600487564], [-77.29703236325572, 34.55694208753941], [-77.29698643407778, 34.556950703882094], [-77.29693362078739, 34.55696646772851], [-77.29682637091365, 34.557007235101345], [-77.29673743618207, 34.55696020301163], [-77.2964026738587, 34.556914778655525], [-77.29634301703487, 34.557034389531864], [-77.29627494864043, 34.55714247550997], [-77.29611693084408, 34.55727250535367], [-77.29594380467955, 34.5573112623467], [-77.29587585384608, 34.55740352543389], [-77.29587160736426, 34.55744513778318], [-77.29574284333421, 34.55750696468553], [-77.29568366308868, 34.55755836184639], [-77.2955748071536, 34.55761011382989], [-77.29554371999579, 34.557624907282936], [-77.29539429859395, 34.55766585714472], [-77.29518024596713, 34.55778911162726], [-77.29515782608483, 34.55779912030071], [-77.29514680657533, 34.55780435360176], [-77.29507830323732, 34.55784582972878], [-77.29490884369628, 34.557926288719436], [-77.29490448916894, 34.55795106735044], [-77.2947486902226, 34.55803457006291], [-77.29467189729527, 34.558059320810756], [-77.29460500846554, 34.55811642496243], [-77.29445115237704, 34.55820024602632], [-77.294350838839, 34.55825349331952], [-77.29432981167704, 34.55826536508887], [-77.29427408541073, 34.558286291710886], [-77.29418796274692, 34.558320492650566], [-77.29409322758039, 34.55834902325012], [-77.29395510225204, 34.55838297221136], [-77.29380365946581, 34.55838173338531], [-77.29357688814696, 34.55850869011687], [-77.29356452650109, 34.55851369974765], [-77.29355928081146, 34.55851597981206], [-77.29354507989633, 34.55852201631981], [-77.29336215480949, 34.558549316569035], [-77.29326845662992, 34.55861043785995], [-77.29325150572672, 34.55860966803279], [-77.293163686359, 34.55863934350978], [-77.29305567947694, 34.558705844191394], [-77.29296817123172, 34.558720099095275], [-77.29277120686716, 34.55886904431744], [-77.29276551012971, 34.558871672857045], [-77.29275275544843, 34.55887952616621], [-77.29249213555515, 34.55898511738858], [-77.29250188829417, 34.55903007030603], [-77.29236729446578, 34.559105570674724], [-77.29230559704088, 34.55914270753193], [-77.29217011666772, 34.559199192818895], [-77.29216874315539, 34.55919899027782], [-77.29216605353942, 34.55920063478177], [-77.29201721987047, 34.55925068117766], [-77.29197073185685, 34.55926959659178], [-77.29183376476917, 34.559332743009094], [-77.29157610477051, 34.55935187155652], [-77.29142994576154, 34.55946150233899], [-77.29137603618383, 34.55950925005679], [-77.29130487249732, 34.55956893702198], [-77.29121640795638, 34.559605938015046], [-77.29117698773892, 34.559623553556996], [-77.29101994641711, 34.55970647280154], [-77.29094781104568, 34.55972354802826], [-77.29094590723834, 34.55974281457612], [-77.29077967025015, 34.559819210626095], [-77.29067201592258, 34.559837650716716], [-77.29056708099193, 34.559919538737596], [-77.29044352362067, 34.55997480005907], [-77.29038257413477, 34.560005449180665], [-77.29027394289227, 34.56006707875517], [-77.2899704714178, 34.56026275582705], [-77.28975238676048, 34.56038842220633], [-77.28955910357784, 34.560488970818945], [-77.28937843187572, 34.56057561049767], [-77.28935376695324, 34.56058740166096], [-77.2893135763046, 34.56060008277538], [-77.28914922119169, 34.560652475986494], [-77.28877176483053, 34.56080365849228], [-77.2887392844927, 34.56081819841394], [-77.28871332343347, 34.56083019872589], [-77.28857274187274, 34.56088798314018], [-77.28836404167083, 34.56097592509211], [-77.28832925026204, 34.560987957722965], [-77.28825723646997, 34.56100937341177], [-77.28805666057775, 34.56107547125659], [-77.287920041459, 34.56112287205676], [-77.28771905512626, 34.561213230035136], [-77.2877117841769, 34.561216338418745], [-77.28768963032111, 34.56122604859312], [-77.28753198752179, 34.56129488052314], [-77.28750971238978, 34.56130490775427], [-77.2874748397756, 34.561317109989545], [-77.2873700013657, 34.56135379380874], [-77.28730531485652, 34.56136359615768], [-77.28717030991896, 34.561416255354075], [-77.28710039516878, 34.56144425800286], [-77.28672326022355, 34.56162726114765], [-77.28668968412005, 34.561642225187995], [-77.2866606757912, 34.56165708633991], [-77.28627816911775, 34.56187394551145], [-77.2862191910254, 34.56190440916294], [-77.28607249653845, 34.561986194400646], [-77.28594259680924, 34.56205817349328], [-77.28586685681721, 34.56209703650554], [-77.28579848463029, 34.562128829467255], [-77.28566137859917, 34.562201059139554], [-77.2855057924837, 34.5622699798747], [-77.28545621102873, 34.56229198945749], [-77.28519170339376, 34.562404033565414], [-77.28506571406609, 34.56245793581887], [-77.285046055903, 34.562466218606424], [-77.28501291983524, 34.56247738317189], [-77.28474102946278, 34.56257653136868], [-77.28463658957816, 34.56261140373556], [-77.28449959028192, 34.56268317864085], [-77.28436367399485, 34.56275316706568], [-77.28422547232306, 34.562825942326825], [-77.2840709577558, 34.562895622274226], [-77.28398138903603, 34.562935231981385], [-77.28381534133464, 34.5629989271886], [-77.28361467147302, 34.563100138650825], [-77.28340414554549, 34.56321659070155], [-77.28319914865833, 34.56331936378742], [-77.28319835905071, 34.563319694623445], [-77.28299387367882, 34.56339533590961], [-77.28286842900377, 34.563444058622146], [-77.28278903919252, 34.56347201334418], [-77.28265962143642, 34.563523095549996], [-77.28258409345155, 34.56355334817445], [-77.28226164253385, 34.56368538254395], [-77.28219211416345, 34.56371091283633], [-77.28217412728964, 34.56371910145038], [-77.28215290782668, 34.56372940214445], [-77.28181914745261, 34.563882692996394], [-77.28176362973518, 34.56390709892136], [-77.28170081167914, 34.56393999616883], [-77.28153307771733, 34.5640642961593], [-77.28139110144541, 34.56416177117369], [-77.28137093300023, 34.56417584779562], [-77.2813289520643, 34.564203504757415], [-77.28112400041553, 34.5642848181075], [-77.28104866679162, 34.564370541446245], [-77.2810249911148, 34.56438803904629], [-77.28088656086061, 34.564402230297276], [-77.2808678483428, 34.56452370481153], [-77.28080348589685, 34.56458694909882], [-77.2807752542432, 34.564631807659104], [-77.28075309751432, 34.56470082366988], [-77.28068423286757, 34.564776242593176], [-77.28065482974027, 34.56481093767109], [-77.28063109987288, 34.56483217529343], [-77.28057305944378, 34.56486528174233], [-77.28041804137871, 34.56497126978818], [-77.28037409403143, 34.56502455237355], [-77.28027452524803, 34.56511351585455], [-77.28025242889763, 34.56513282852405], [-77.28024175442621, 34.56514306413445], [-77.28009821783365, 34.565238548137565], [-77.28004664755045, 34.56529812293091], [-77.27998145378778, 34.56534720913211], [-77.27986599173624, 34.56543044962661], [-77.27984375620731, 34.56544625974548], [-77.27982342724027, 34.56545262894413], [-77.2798023362365, 34.565474203276274], [-77.27964071924725, 34.56559426727797], [-77.27953946651535, 34.565659599418595], [-77.27952404733455, 34.56566477772381], [-77.2795212346872, 34.56567141334884], [-77.2794274871301, 34.56573320901148], [-77.27938521862674, 34.56577170501007], [-77.27935808603081, 34.56582441675153], [-77.279312860022, 34.565883853373045], [-77.27927628400417, 34.56592731147338], [-77.279225607199, 34.56599483193119], [-77.27912009999481, 34.56609732624276], [-77.2791135187452, 34.56610385952114], [-77.27910943325335, 34.566107499534205], [-77.27910000102648, 34.56611214812476], [-77.27886688619078, 34.56622037330762], [-77.27860754161492, 34.566299777889355], [-77.27859585750544, 34.56630791920552], [-77.27855738235043, 34.566351984195414], [-77.27832614322185, 34.56651333682971], [-77.2783427092212, 34.56657238333487], [-77.27824373818946, 34.5666519193205], [-77.2780246660643, 34.56672531808593], [-77.27787250406757, 34.566873198924654], [-77.27778069684751, 34.56689727989489], [-77.2777136226329, 34.56699185519813], [-77.27744960677941, 34.567151470264704], [-77.27746665669305, 34.56726812392211], [-77.2774626254762, 34.56727156160577], [-77.27725659150862, 34.56737197122574], [-77.27712213862176, 34.567523921878475], [-77.27703776900593, 34.56755088198284], [-77.27700059734333, 34.567587523865015], [-77.2770068129094, 34.567624165817065], [-77.27685697256368, 34.567718672697396], [-77.27680862008734, 34.56780810592965], [-77.27673695072335, 34.56786906238959], [-77.27668442427581, 34.567893798745125], [-77.27664492187841, 34.56791307697256], [-77.2766242275888, 34.567951253130026], [-77.27651910850729, 34.56802102441501], [-77.27649066433645, 34.56805006175751], [-77.27643153164007, 34.56813197616053], [-77.27636378272791, 34.568190421656], [-77.27631521125073, 34.56822260540878], [-77.27627945214087, 34.56823785972708], [-77.27626296937228, 34.56827034628294], [-77.2761253820021, 34.56838236471557], [-77.27606896238458, 34.56845698636596], [-77.27597426427025, 34.56854411279712], [-77.27595383231973, 34.56855838047564], [-77.27595022716048, 34.568565489631126], [-77.2759415102087, 34.56857452367984], [-77.27586667169732, 34.56864515610195], [-77.27581817942018, 34.56867294672255], [-77.27576394690834, 34.5687180905998], [-77.27572114329827, 34.56878315480988], [-77.27562027945129, 34.568878613752496], [-77.27560619244532, 34.56889195518536], [-77.27559821823142, 34.56889928379468], [-77.27557324115357, 34.56892055029722], [-77.27550315566378, 34.56897903264267], [-77.27545526038243, 34.56899792815845], [-77.27538665583, 34.5690397173432], [-77.27533656047297, 34.56910643375261], [-77.27522569307058, 34.56919121760623], [-77.27519702192662, 34.56919965238535], [-77.2751881611774, 34.569212605539036], [-77.27517711529136, 34.56922839292517], [-77.27510792225759, 34.56928470441505], [-77.27501709065882, 34.56931699561406], [-77.27498290969648, 34.56933781901839], [-77.27488994281615, 34.56943854613277], [-77.27473464268112, 34.56944561163152], [-77.27466336273498, 34.56960461915965], [-77.27444189391342, 34.569743126504946], [-77.27450813645966, 34.56984650009676], [-77.27447897070802, 34.569875399171366], [-77.27427233805055, 34.569965467811826], [-77.27411085265173, 34.5701790803512], [-77.27410041200517, 34.57018762274426], [-77.27409600112996, 34.57019198136962], [-77.27407846554328, 34.57021002193597], [-77.27375475540877, 34.57039612403412], [-77.27379792349078, 34.570480050644335], [-77.27374020552432, 34.57053273120363], [-77.27366327635094, 34.57062460092408], [-77.2736541676027, 34.570632451078495], [-77.27352607265875, 34.57067088233639], [-77.27343951735284, 34.5707980593623], [-77.27338092680345, 34.57083807684147], [-77.27336317275953, 34.570854596149374], [-77.2732986506701, 34.570949443697906], [-77.27327266569974, 34.57097023539331], [-77.27314235857236, 34.57098680614509], [-77.27300773292089, 34.571044412364515], [-77.27300053761296, 34.57114625619701], [-77.27297927568482, 34.571160009057614], [-77.27297565134424, 34.57116713488355], [-77.27293219675167, 34.57122686524227], [-77.27286445244191, 34.571268817613735], [-77.27274453477659, 34.57129018337704], [-77.27260432146998, 34.571458584920805], [-77.27258185589933, 34.57147409537479], [-77.27257012404216, 34.5714813507013], [-77.27253082728606, 34.57150596434782], [-77.27240306846531, 34.57158605360142], [-77.27235437540716, 34.57160037816301], [-77.27219541227136, 34.57168756499512], [-77.27215329692982, 34.57175014116506], [-77.2719624266242, 34.57189461069117], [-77.27194834800987, 34.57190381204614], [-77.27173953809928, 34.572039350154256], [-77.27160388505803, 34.57211240249099], [-77.27153275285067, 34.572184039174914], [-77.2714995782076, 34.572259776447126], [-77.27147051556409, 34.57233758563552], [-77.27143716532768, 34.57242762011639], [-77.27142250874189, 34.57247236554708], [-77.27139527092982, 34.57256733782033], [-77.27140688586806, 34.57257652891215], [-77.27138219925553, 34.57267118175645], [-77.27137527368397, 34.57268359926768], [-77.27136205862459, 34.5726894156802], [-77.27133199839768, 34.572724618770714], [-77.27122514498839, 34.57278963152677], [-77.2712511224223, 34.57281214846409], [-77.27119333650042, 34.57286795663359], [-77.27116546820939, 34.572902773915004], [-77.27111545360351, 34.57294449667041], [-77.27109896338234, 34.57294832324699], [-77.27108921100539, 34.57296466746176], [-77.27102800077793, 34.5730098012711], [-77.27100447059706, 34.573028583488494], [-77.27094482732716, 34.573073569691246], [-77.27083881892078, 34.57311276327965], [-77.2708472244675, 34.57314718695018], [-77.27080466535169, 34.57317948205645], [-77.27072248910207, 34.57322145202403], [-77.27062236880366, 34.573323287416535], [-77.27060893608324, 34.57333400584753], [-77.2705979995398, 34.573342736714835], [-77.27043802621714, 34.573434756888055], [-77.27041080560241, 34.57348639450983], [-77.27040493414796, 34.5734966068552], [-77.27034202433875, 34.573545043408906], [-77.27024997412337, 34.57361426655984], [-77.27017760228685, 34.57360759181083], [-77.27007221257222, 34.57364166575189], [-77.27011962550351, 34.57369535450833], [-77.27002276196731, 34.573755611851496], [-77.26999880205582, 34.57377717234386], [-77.26997780287503, 34.57381099416197], [-77.26991747049738, 34.573855098367765], [-77.26990101390606, 34.57385450291765], [-77.26987500812882, 34.57386182959298], [-77.26974690539868, 34.57388174539841], [-77.26960567768499, 34.57407161584117], [-77.26959958666218, 34.57407584382679], [-77.26959842524968, 34.574078291660285], [-77.2695918116409, 34.57408239082495], [-77.26908256435118, 34.57427086252585], [-77.26908488931531, 34.574278774314], [-77.26897355804552, 34.5744921447717], [-77.26896440224473, 34.5744972396916], [-77.26896236055619, 34.57449840171428], [-77.26890412501551, 34.5746103342065], [-77.26890290473814, 34.57461128875251], [-77.26877686011704, 34.57466202561466], [-77.26874947165192, 34.574716008444774], [-77.26873973089673, 34.57472560959456], [-77.26866839980192, 34.57472986587865], [-77.26859907098047, 34.57479541252977], [-77.2685675705447, 34.5748044929208], [-77.26836346675759, 34.5748446236335], [-77.26827020217219, 34.574868626894954], [-77.26822768920619, 34.57491064983206], [-77.26811109473171, 34.57499896098228], [-77.26808405698658, 34.57501719008137], [-77.2680760474921, 34.57502455520615], [-77.26797222109904, 34.57512623010537], [-77.26789958195513, 34.575196215704665], [-77.2678508402267, 34.57528016934103], [-77.2677960641538, 34.57534804655383], [-77.26772972669289, 34.575373755601206], [-77.26767003986946, 34.575531611639434], [-77.26760728891499, 34.57556887050796], [-77.26759531816124, 34.57558282092622], [-77.26754694565726, 34.575681959471396], [-77.26750021750205, 34.57571820208547], [-77.26736503793234, 34.575706621883334], [-77.26714067006999, 34.57576784588505], [-77.26721766694983, 34.57588478827927], [-77.26720456409038, 34.575892506586364], [-77.26719825802373, 34.57589860262802], [-77.26699749190736, 34.575992254853965], [-77.26695960967199, 34.57600325739756], [-77.26687215500866, 34.57619793093246], [-77.26685065466675, 34.576216375930464], [-77.26684006575886, 34.57622554466171], [-77.26680793230477, 34.57625371550456], [-77.26677657358802, 34.57626946732447], [-77.26677946270472, 34.57627858174887], [-77.26674689733653, 34.5763069867096], [-77.26671485689056, 34.57632353099756], [-77.26668102448458, 34.57636138482004], [-77.26665155914957, 34.57638649912046], [-77.26656958459702, 34.57642994084271], [-77.26647855017816, 34.57652908751813], [-77.26645978808375, 34.57654455064234], [-77.26644284949609, 34.57655891179469], [-77.26635897249332, 34.576619191885264], [-77.2662850726864, 34.57664323460702], [-77.26623427735163, 34.57667259535208], [-77.26613736753015, 34.57674626351668], [-77.2659374283046, 34.57673719347562], [-77.26569488802247, 34.577006355108395], [-77.26559484572087, 34.57706028838029], [-77.26558351405806, 34.577079649401426], [-77.26547608700875, 34.57727202567322], [-77.26545970729276, 34.57728532849734], [-77.26545262395253, 34.577291848974156], [-77.265428916866, 34.57731369590198], [-77.26521777311548, 34.57741158824191], [-77.26518575526259, 34.57749945085922], [-77.26512714361212, 34.577586444592285], [-77.2650844592388, 34.577621633076696], [-77.26488064440274, 34.5777111219957], [-77.26485444838653, 34.577745677604426], [-77.26482153271478, 34.577824307084256], [-77.2647209384037, 34.57792231081048], [-77.26470751405624, 34.57793317350036], [-77.26470180667545, 34.57793853349177], [-77.26468506903228, 34.57795108633511], [-77.2644495203625, 34.57804276713431], [-77.26438258300573, 34.578143284863295], [-77.26437241780442, 34.578152589734714], [-77.26423638993103, 34.578181825723846], [-77.26421412428095, 34.57829585993906], [-77.26412743408451, 34.57835888436672], [-77.26409879851315, 34.57838806843901], [-77.26406593472345, 34.578471881438844], [-77.26395053532339, 34.57857003647703], [-77.26393107660712, 34.57856751383584], [-77.26388717330994, 34.57857565468073], [-77.26390444235057, 34.578595566118025], [-77.26371033721783, 34.57869980622727], [-77.26364675557451, 34.57879241237374], [-77.26360833569305, 34.578829945477274], [-77.26350007647241, 34.57884141852462], [-77.26349521047774, 34.57893255853046], [-77.26340012926168, 34.57900868117381], [-77.26336877661606, 34.57905325872533], [-77.26333897672063, 34.57912170533804], [-77.26325430800668, 34.579206499157856], [-77.26323005391198, 34.57923097161324], [-77.26316139206605, 34.57929691908994], [-77.26302766946398, 34.57940711623619], [-77.26300367882578, 34.57944883302574], [-77.26290966185519, 34.579519296572116], [-77.26284191754331, 34.57957052826819], [-77.26269070684361, 34.57965988167288], [-77.26262424477999, 34.579705550067125], [-77.2624596608521, 34.57985096935169], [-77.26240909106134, 34.579873396688924], [-77.26241959015915, 34.579886561345404], [-77.2622554803446, 34.58003481247809], [-77.26220442891085, 34.58009296520393], [-77.26208461328012, 34.58019573284374], [-77.26207602562188, 34.58020382681123], [-77.2619104440891, 34.58030550611099], [-77.26185981683183, 34.58034015210935], [-77.26174037462424, 34.580439700143884], [-77.26153773284584, 34.5805118526646], [-77.26160411368426, 34.58055940646418], [-77.26149265479222, 34.58067084262876], [-77.26142565842775, 34.580738704801554], [-77.26134681709952, 34.580801097984036], [-77.26130626831804, 34.58083369333441], [-77.261276470539, 34.580844801932], [-77.2612604802077, 34.580871815964606], [-77.26116227685313, 34.58095365212632], [-77.26111542312225, 34.58099257866941], [-77.2610328831991, 34.58106130652631], [-77.26098504066469, 34.58109966460129], [-77.26092194512046, 34.58114912282895], [-77.26087825778497, 34.58116697545186], [-77.26083013705414, 34.5812166988403], [-77.26071977214067, 34.5812979338158], [-77.26064684518394, 34.58135161203168], [-77.26061329488437, 34.58136754484891], [-77.26060533791124, 34.58138117153669], [-77.26057902539435, 34.58140259980408], [-77.26052271565575, 34.58145129590752], [-77.26044306028379, 34.581486237931735], [-77.26031506697942, 34.58159331120454], [-77.26031412733812, 34.58159392794856], [-77.26031384268981, 34.58159414852249], [-77.26031317826757, 34.58159460293302], [-77.2601961570976, 34.58165379089317], [-77.26015978900311, 34.58169961878559], [-77.2601518940929, 34.58170512737318], [-77.26006680824669, 34.581703059752684], [-77.26002744312362, 34.58174284315774], [-77.25996100721818, 34.581725913434134], [-77.25985153569155, 34.58167398733316], [-77.25962745104553, 34.581640913462245], [-77.25921387573311, 34.581638314419685], [-77.2592367986516, 34.58129345303129], [-77.25924623756171, 34.58127422614374], [-77.25923940458327, 34.581261344454184], [-77.25944501519183, 34.58082138553765], [-77.25944689248823, 34.5808186758594], [-77.25945361738904, 34.58081370912901], [-77.25977789959447, 34.580373380278395], [-77.26007591035716, 34.580068006676775], [-77.26031439516797, 34.579944258347666], [-77.26079562747522, 34.57980777991156], [-77.26114588645365, 34.579705169918], [-77.26102330067074, 34.57952869873993], [-77.26103156854222, 34.579487902233346], [-77.26121176980749, 34.57907218825556], [-77.261194411544, 34.57901946924066], [-77.26099645058397, 34.579055246230055], [-77.2607530193692, 34.579355740224514], [-77.25992558346094, 34.579167305918716], [-77.25951475159647, 34.579007181597596], [-77.2594670167042, 34.578463554456704], [-77.25947573742266, 34.57821965345411], [-77.25945070188365, 34.57799093083702], [-77.25970454417724, 34.57778045080671], [-77.25994484925322, 34.57755847616449], [-77.2600885806332, 34.577450234835794], [-77.26045045761153, 34.57715751659166], [-77.26084861437992, 34.576811746839965], [-77.26097504149796, 34.576696862360144], [-77.26126912593405, 34.576459628399654], [-77.26161770467067, 34.5761813192613], [-77.26208694649472, 34.57584166822006], [-77.26322916750418, 34.57499064137052], [-77.26323224363371, 34.57498839894326], [-77.26323461382827, 34.574986185341245], [-77.2639462162409, 34.57430896332205], [-77.26419233587006, 34.57412194815064], [-77.26468412933912, 34.57378682862462], [-77.26477291194576, 34.57372979610442], [-77.26503008047206, 34.573581206281716], [-77.2655513833575, 34.573286172520525], [-77.2658905111482, 34.573068096530754], [-77.26653740153047, 34.57267028689864], [-77.26697789498105, 34.572455689648706], [-77.26733894025611, 34.571981429887515], [-77.26786068074924, 34.57158243986006], [-77.26803582494577, 34.57137415581054], [-77.2681267218065, 34.57113202592961], [-77.26839989917057, 34.570849116768066], [-77.26855117461406, 34.570694065965746], [-77.26887789812436, 34.57049422855475], [-77.26961362316634, 34.57014864461082], [-77.26997432104031, 34.56999273550069], [-77.27039093150451, 34.569896047751804], [-77.27067324487825, 34.56977667270067], [-77.27107395171922, 34.56948485935794], [-77.27161924496457, 34.56930364700403], [-77.27170880120482, 34.569056980412185], [-77.27213038506046, 34.568716576822496], [-77.27230754347423, 34.568601441511746], [-77.27273185529391, 34.56819473019585], [-77.27306126165658, 34.567957419781436], [-77.27312439626472, 34.56775425298964], [-77.27332884867508, 34.56753265678615], [-77.27339632788505, 34.56730429197893], [-77.27404425373413, 34.566944092494396], [-77.27459851451695, 34.566695913373366], [-77.27502001473954, 34.56648923402559], [-77.27543888678368, 34.56612897569581], [-77.27548894502944, 34.5660547548196], [-77.27569153172729, 34.56591244694633], [-77.27606789704512, 34.565628915975374], [-77.27621225314084, 34.565502450419636], [-77.27656145478788, 34.565299117739286], [-77.27705197669542, 34.56493494684852], [-77.27725426835121, 34.564779472357316], [-77.27784424768691, 34.56442868664947], [-77.2779145607885, 34.564387778006896], [-77.27798005144726, 34.564365164472136], [-77.27819642720218, 34.56423886329875], [-77.27868346980046, 34.56394909470944], [-77.27892413770387, 34.56379535943537], [-77.2791764629801, 34.56368512745749], [-77.28018796984958, 34.56308288295109], [-77.28057264783732, 34.56277035407981], [-77.28127615175146, 34.56232828768831], [-77.2813972341469, 34.562243288673386], [-77.2814592389294, 34.56219833891618], [-77.28222406370173, 34.561621550305716], [-77.28362977586139, 34.5606915015705], [-77.2838733461797, 34.56056048261389], [-77.28406246729493, 34.56043398373262], [-77.28456330152629, 34.560062273481044], [-77.28552510003898, 34.559393631372025], [-77.28681860094744, 34.558681588660335], [-77.2871714452101, 34.55845254346762], [-77.28770221698583, 34.55811713078903], [-77.28882129266148, 34.55736225055405], [-77.28970194212354, 34.556939127374704], [-77.29046512568686, 34.55652376269585], [-77.29167678010208, 34.55560617816248], [-77.29206165078912, 34.55543197841565], [-77.29334495139852, 34.55462509296735], [-77.29349992587613, 34.554506687203556], [-77.2936561986831, 34.554421917019454], [-77.29440066027183, 34.553951660813624], [-77.29481118021062, 34.553705273962535], [-77.29525013493054, 34.55343604147242], [-77.29529313628467, 34.55339260946312], [-77.29532885369152, 34.55336131638648], [-77.29604916493045, 34.552855289701554], [-77.29614359810522, 34.55281308817634], [-77.29627743202056, 34.55273563447364], [-77.29684523088406, 34.552399465561344], [-77.29713898978852, 34.55230417595734], [-77.29749917661746, 34.552070752582225], [-77.29843882883137, 34.551424603091725], [-77.29885275663982, 34.55115139037608], [-77.29929887124479, 34.55083332384875], [-77.30003442898092, 34.550363275109945], [-77.30050252377808, 34.54996742676775], [-77.30139328986326, 34.54955357147544], [-77.30162738561033, 34.54941229938649], [-77.30211134018563, 34.54915259671579], [-77.3024227477152, 34.548983574433315], [-77.30250761116636, 34.54895656450039], [-77.30258838685472, 34.5488924559394], [-77.30321796412687, 34.548560674515116], [-77.30346579042512, 34.5484295177238], [-77.30372189073738, 34.54824016380443], [-77.30425009755842, 34.54781776926171], [-77.30458258460371, 34.54762701950651], [-77.30481354209431, 34.54749526083277], [-77.30511364841925, 34.547244624591215], [-77.30555206725575, 34.54699825100604], [-77.30561136962164, 34.54696025323888], [-77.30602705793491, 34.546695768044586], [-77.30640845884707, 34.546456188136695], [-77.30698818437148, 34.546170155589934], [-77.30778861187777, 34.545697964436755], [-77.30790711486752, 34.54562398716422], [-77.30799975900474, 34.54556925267818]], [[-77.36909429461826, 34.517741244881535], [-77.36901210176805, 34.517744871865666], [-77.36830831705994, 34.51778745198399], [-77.36794770024451, 34.51768622664511], [-77.36711747480265, 34.51781630535827], [-77.366785427283, 34.51811696116275], [-77.36675179087467, 34.51813506716666], [-77.36673024786737, 34.518147698140055], [-77.36627019266078, 34.51839741704925], [-77.36537303481823, 34.51867002671025], [-77.36514706662967, 34.51873117727985], [-77.36497435892174, 34.51876023515849], [-77.36436012788431, 34.5188188711021], [-77.36422423596622, 34.51889190064325], [-77.36411169600467, 34.51899184385943], [-77.36403937688249, 34.519298663464376], [-77.3635521183341, 34.51982857972806], [-77.36335703507521, 34.519960046396186], [-77.36317332232301, 34.52010632987042], [-77.36244882301092, 34.52051150352378], [-77.36196071272374, 34.520769204526985], [-77.36135412426938, 34.520972199170416], [-77.36059764333864, 34.521319762198985], [-77.36037568535183, 34.52142954552619], [-77.36031909433319, 34.52146193269759], [-77.3602224342779, 34.5215106930105], [-77.35978929217391, 34.52170081814859], [-77.3595788823787, 34.52194661068435], [-77.35945150389118, 34.52203315742817], [-77.35933936416346, 34.52212752833103], [-77.35936761622597, 34.5222508967051], [-77.35956505626731, 34.522550442916994], [-77.35958115973695, 34.52258235275129], [-77.35956299838634, 34.522640317691305], [-77.3591801210308, 34.522894561585446], [-77.35877358940007, 34.522833871440696], [-77.35836532172195, 34.523009611001285], [-77.35797985195074, 34.523216132488216], [-77.35786580895513, 34.52324836531859], [-77.35783076988335, 34.52332408717278], [-77.35717975192, 34.52387559967714], [-77.35712982722252, 34.52388364861809], [-77.35604293344718, 34.52380204872937], [-77.35560919404003, 34.52390092531922], [-77.35530869435348, 34.52387507324293], [-77.35508188986364, 34.523880359564565], [-77.35498286317123, 34.524121698456554], [-77.3549686106791, 34.524225876128625], [-77.35480880855323, 34.52457168740996], [-77.35469838381565, 34.524687205638045], [-77.354013107719, 34.52503787353162], [-77.35312531227765, 34.525044923009084], [-77.3524364909387, 34.52532570618703], [-77.35209566744194, 34.525407369963126], [-77.35141711735736, 34.52571646629946], [-77.35104230613756, 34.525888160293796], [-77.35085200435891, 34.52595516054637], [-77.35038706730991, 34.526151917372474], [-77.35005966646702, 34.52627358762213], [-77.34989056309071, 34.52632105721242], [-77.34970715400375, 34.526452251510705], [-77.34926487282016, 34.526698422513405], [-77.34897243493256, 34.52673981169271], [-77.34882858582107, 34.52679764776461], [-77.34847665274074, 34.5268374345177], [-77.34841288363805, 34.52688335932564], [-77.34841980346151, 34.527095431307465], [-77.34831673438063, 34.527142018104186], [-77.34821388842118, 34.52749196941426], [-77.3476754452571, 34.52754006882357], [-77.34660440569397, 34.528049159868466], [-77.3460938726918, 34.528039583665134], [-77.3457524403724, 34.528280846423684], [-77.34572312649043, 34.528494551588416], [-77.34580324225254, 34.52865543731595], [-77.34555321663693, 34.529177432190224], [-77.34556862037259, 34.52949606610819], [-77.34556655251751, 34.52979994106191], [-77.34555416370489, 34.529987786261536], [-77.34549140030447, 34.530140911302745], [-77.34529406910231, 34.530270033405394], [-77.3452556167538, 34.53034706526738], [-77.34523306386741, 34.53027881176678], [-77.3450075375273, 34.530222956616626], [-77.3448657632844, 34.53023115135686], [-77.34478186981403, 34.53022132545467], [-77.34471543262512, 34.53020264692429], [-77.34467010746445, 34.530204810632895], [-77.34465511196045, 34.530187955084], [-77.34466202184423, 34.53017736555094], [-77.34465914357631, 34.530124567691345], [-77.34466039345403, 34.530116394940215], [-77.34465578330783, 34.53000643709201], [-77.34465828189992, 34.52998373192368], [-77.34481811977406, 34.52984887981205], [-77.34465441354395, 34.5297661270076], [-77.34456286845618, 34.5296888884951], [-77.34463137767933, 34.52963093057283], [-77.34462050534128, 34.52955043870842], [-77.34449040487357, 34.529487097971014], [-77.3444724672249, 34.52942111412673], [-77.34442846402943, 34.52941530824447], [-77.34441553758354, 34.52936876995098], [-77.34437192163239, 34.52925585145004], [-77.34431135094616, 34.5291873397729], [-77.34410917366671, 34.528997806724874], [-77.34410507278204, 34.528975086059695], [-77.34409589994685, 34.52897352108285], [-77.34408270887047, 34.52895834468296], [-77.34400431735338, 34.52880998275947], [-77.34395272168207, 34.52874930284365], [-77.34393738712735, 34.52861928376686], [-77.34372646611409, 34.52857266663635], [-77.34370291825307, 34.52855536269806], [-77.34370951099585, 34.52853947788764], [-77.3435319842123, 34.52844336433065], [-77.34353053741708, 34.52844281953541], [-77.34342256889227, 34.5284054867941], [-77.34337738793673, 34.52840365014382], [-77.3433380635831, 34.52839435024287], [-77.34329431848018, 34.52838822971804], [-77.3432887118855, 34.52838610419646], [-77.34324044145062, 34.528372367244216], [-77.343217655664, 34.528365427715904], [-77.34317473140928, 34.52835168100142], [-77.34314314862146, 34.52833612526495], [-77.34308598042827, 34.528323168273154], [-77.34306951610256, 34.528310625218225], [-77.34304544564549, 34.528317647769924], [-77.34301628029604, 34.52831496720698], [-77.34298807695441, 34.52831191391257], [-77.34294757583521, 34.528306396135584], [-77.34292016790596, 34.528302964414976], [-77.34284982638869, 34.52829594085661], [-77.34284988454837, 34.52829581154513], [-77.3428496913391, 34.528295781252496], [-77.34284923426848, 34.52829574037909], [-77.34279500920381, 34.52827699952947], [-77.34275191852146, 34.528280331765636], [-77.34274619449664, 34.52828024866705], [-77.34275202669414, 34.528275648151904], [-77.34278213105831, 34.52826307118586], [-77.34281242786037, 34.52826381899989], [-77.34285062176093, 34.528255494203215], [-77.34287979174572, 34.528248517974916], [-77.34292494046868, 34.52823901735812], [-77.34294919675256, 34.5282362072203], [-77.3429980260325, 34.528244049743535], [-77.34304685502252, 34.528256615858254], [-77.34307220839028, 34.52826394498178], [-77.34311689130004, 34.52827477667004], [-77.34314436167412, 34.52828359233649], [-77.34323486221797, 34.52829718463024], [-77.34326202386673, 34.52823663435024], [-77.34334413506211, 34.52813138975568], [-77.34353514374752, 34.528194978489985], [-77.34354266603779, 34.52819393725695], [-77.3435407665046, 34.528197715889306], [-77.34359475994012, 34.52831116930729], [-77.34354726739001, 34.52843179952556], [-77.34372936870588, 34.52844692734451], [-77.34383272334158, 34.52833985205082], [-77.34385526878407, 34.52827368583593], [-77.34384098662501, 34.528209540919065], [-77.34380098405457, 34.52803667745287], [-77.34374281204902, 34.527864567551795], [-77.34363792075771, 34.52788051309754], [-77.34373057465082, 34.52780198897995], [-77.34372981623858, 34.527792961370295], [-77.34374468818804, 34.527783294193355], [-77.3440547573681, 34.527454365053764], [-77.34408586012458, 34.52726122907782], [-77.34410293086646, 34.52722942271325], [-77.34407417430563, 34.52706770532883], [-77.3440149420151, 34.52702661381436], [-77.34376379365689, 34.526955657971605], [-77.34367789047018, 34.52688489069219], [-77.34363293200536, 34.52683676061901], [-77.34349377174327, 34.52678287181642], [-77.34337861245977, 34.52663815553758], [-77.34337385422775, 34.52663227125545], [-77.34336952522472, 34.526629841545045], [-77.34337189695347, 34.5266251239867], [-77.3433502331298, 34.52651020769938], [-77.34336172622983, 34.52649597402669], [-77.34336373770984, 34.52644705980261], [-77.34338358281585, 34.52642288803031], [-77.34341851749761, 34.526399424887025], [-77.34346184234583, 34.52637173924276], [-77.3435831853751, 34.52627788076232], [-77.34365398859264, 34.526265668703516], [-77.34378204009523, 34.52616523864631], [-77.3440944707385, 34.52608696600312], [-77.34422317701146, 34.52626219182982], [-77.34432977447105, 34.526391595532054], [-77.34455680596736, 34.52660946206397], [-77.34470192400462, 34.526592670501756], [-77.34507257046856, 34.52645950846099], [-77.345155031384, 34.5262497871084], [-77.34512699504421, 34.52613213703202], [-77.34488859668107, 34.52596871550421], [-77.34473661044598, 34.52594349295258], [-77.3445740898739, 34.52586043540714], [-77.34445459147862, 34.52581445144173], [-77.34437815828284, 34.52584649324885], [-77.34430512398599, 34.52576076178549], [-77.3442839432089, 34.525702978576035], [-77.3443826888843, 34.52565017279628], [-77.344450755174, 34.52565999332459], [-77.34457909149737, 34.52564368250857], [-77.34464652051142, 34.52566921140709], [-77.34501650773582, 34.52565839624662], [-77.3451945630018, 34.52573717719176], [-77.34536146564075, 34.52575800423419], [-77.34546057848779, 34.525594494627], [-77.34549632272169, 34.52550882043726], [-77.34560945099325, 34.52523052081813], [-77.34576645397799, 34.525216729844345], [-77.3459295733866, 34.52518095438401], [-77.34616063366656, 34.5251440207861], [-77.34624604311485, 34.52504365146376], [-77.34631143284703, 34.52498241098175], [-77.34660377177202, 34.52472102143055], [-77.34696075342536, 34.52448822623458], [-77.34766993725565, 34.52434658369684], [-77.34774928044327, 34.52433508441949], [-77.34783438580487, 34.524326552747056], [-77.34788656983324, 34.524266080420524], [-77.34854381950484, 34.52392073035949], [-77.3487335222362, 34.52377071132077], [-77.34899157599847, 34.52361739531345], [-77.34934005693049, 34.523432240642364], [-77.34970459079832, 34.52324988576312], [-77.35013305004424, 34.5230843319531], [-77.35024690107934, 34.52301711247263], [-77.35063246811592, 34.52289155939981], [-77.35082870845423, 34.522803564414914], [-77.35092502917699, 34.52278020679236], [-77.35107765366783, 34.522732950069134], [-77.35171559426972, 34.52253731930884], [-77.35210054761964, 34.52242914691501], [-77.35250659983379, 34.522275049880236], [-77.3530022684638, 34.52224169728017], [-77.35329016215108, 34.52233655474546], [-77.35360256276671, 34.5221667664992], [-77.35408386336252, 34.52195656213207], [-77.35475164300611, 34.521732579380355], [-77.354875829013, 34.52165185121913], [-77.35511366976841, 34.52141204176942], [-77.35553841616093, 34.52120595533326], [-77.35562378995941, 34.52116358964114], [-77.35567244016252, 34.521144406260824], [-77.35575349853227, 34.521124703718634], [-77.35646139762231, 34.52097024023493], [-77.35698785211463, 34.52083403660344], [-77.35725155223768, 34.52074369497447], [-77.35777891218453, 34.52055702503345], [-77.35804208635385, 34.52050038499019], [-77.35818781191801, 34.52042460175822], [-77.35883195946704, 34.52028571388789], [-77.35886533581495, 34.52025762541327], [-77.35889492559599, 34.520232945145814], [-77.35920946115891, 34.51992837307683], [-77.35963115307855, 34.519637261092306], [-77.3596317693712, 34.51963688345159], [-77.36028963330773, 34.51946062726148], [-77.36042219717133, 34.51939741257967], [-77.36074291094793, 34.51927876033248], [-77.36121412688796, 34.519092080543324], [-77.36142038746314, 34.5190174962825], [-77.36157324680443, 34.518867875706555], [-77.36201016715555, 34.51860674219638], [-77.36243552651793, 34.51851809187207], [-77.36323781619697, 34.51813843586333], [-77.3635939860427, 34.51799636256173], [-77.36386619368724, 34.51787976377616], [-77.36438655195786, 34.51766202957243], [-77.36467975935936, 34.51762340532447], [-77.36503036480818, 34.51739053385913], [-77.36517914665464, 34.51732614340289], [-77.36569844811906, 34.517125721260484], [-77.36662047805613, 34.51675999630676], [-77.36676240515347, 34.516738126861284], [-77.36683797287486, 34.516686842241214], [-77.36713987049129, 34.516596928238144], [-77.36755347392356, 34.5164683064993], [-77.36804502531075, 34.51628081985531], [-77.36834596249588, 34.51613596081493], [-77.36904589040958, 34.51577445416729], [-77.36939236068872, 34.51562678518155], [-77.36992666591968, 34.515658032591446], [-77.37019565500562, 34.515340545234004], [-77.37060705136848, 34.51511795480164], [-77.37120869186582, 34.514840095781274], [-77.37151787606093, 34.514717563562634], [-77.37230980714418, 34.514382509259434], [-77.37231198728188, 34.514381578074705], [-77.3731035562572, 34.51401866574459], [-77.37341431167155, 34.51392656487176], [-77.37383579843495, 34.51367324325739], [-77.3746898844619, 34.51329002226695], [-77.37541785744199, 34.51299519102529], [-77.37548188699577, 34.5129763672208], [-77.37550824438512, 34.5129586738713], [-77.37556484154544, 34.51293432113537], [-77.37627480283135, 34.512622205178204], [-77.37660852357908, 34.51250066426622], [-77.37737924282827, 34.51218305907588], [-77.37772461311154, 34.51205034484156], [-77.37785940802694, 34.51196701906306], [-77.37826306224208, 34.51180606589895], [-77.37865098572027, 34.51167096335805], [-77.37888858302802, 34.51162331921452], [-77.37943981274917, 34.51149601104776], [-77.38074676647406, 34.511534054052994], [-77.38100939310765, 34.511502139653714], [-77.38122142010047, 34.51149679162549], [-77.38160107717746, 34.51157424183451], [-77.38131335870528, 34.5118097219396], [-77.38099960615962, 34.51193432135457], [-77.38011156745996, 34.51233738541914], [-77.37941295828168, 34.51268089684434], [-77.37922175217022, 34.512778794227216], [-77.37888738979736, 34.512944912396904], [-77.37821436339479, 34.51328201636446], [-77.37781748352704, 34.51381531271957], [-77.37761799032737, 34.51398522107457], [-77.37738258222959, 34.51414121552251], [-77.37761947353154, 34.51422479576429], [-77.37780402836017, 34.51440850544858], [-77.37797480559135, 34.51415883325724], [-77.37850089149228, 34.51397996491288], [-77.37914400375762, 34.513734334085925], [-77.37938955889167, 34.51371334481979], [-77.37960294408421, 34.513688280091515], [-77.3808213915485, 34.51364533712286], [-77.3809351260363, 34.51364499468348], [-77.38076318850774, 34.51414339276124], [-77.38040273204267, 34.514346750181346], [-77.37964002280492, 34.51479502403974], [-77.37945187637594, 34.51487749366269], [-77.37936133839943, 34.514958525086506], [-77.37911206172753, 34.51502571992862], [-77.37857451244008, 34.51504379093559], [-77.37823612636346, 34.51527935271821], [-77.37777947217305, 34.51549111242027], [-77.37774681865085, 34.51553797018747], [-77.37700772187159, 34.51565373948582], [-77.376990824463, 34.51565633319764], [-77.37697391477856, 34.515658601589934], [-77.37692988247241, 34.51567546702279], [-77.37650213029687, 34.515925742309626], [-77.37619480960136, 34.51614592825947], [-77.37573665748343, 34.515847500117296], [-77.37568946551285, 34.51568640968141], [-77.3752927639255, 34.51542183537563], [-77.37465313949228, 34.51490730646735], [-77.37409617423957, 34.51496171612481], [-77.37386507051352, 34.51504695853335], [-77.37372627953323, 34.51507177199097], [-77.37307457096506, 34.515293369527924], [-77.37256200519681, 34.515498640276206], [-77.37233215329893, 34.51584861962632], [-77.3720379080137, 34.51623702167059], [-77.37147089804772, 34.516781854672786], [-77.37075564067527, 34.516606470657756], [-77.37097613719713, 34.51702338113805], [-77.37007612604404, 34.51726922638548], [-77.36988958144337, 34.51728624970072], [-77.36954951813819, 34.517509679758945], [-77.36948822587271, 34.51767674868297], [-77.36921059094757, 34.517695590029625]], [[-77.40952721219135, 34.49970581887075], [-77.40952407649189, 34.49970688393265], [-77.40807238448504, 34.499845073615475], [-77.40795424294535, 34.49986264532237], [-77.40788424366022, 34.499902606333116], [-77.40777784327429, 34.49996109932045], [-77.40693920596652, 34.50043621109413], [-77.40635713020076, 34.501099518397744], [-77.4061972001651, 34.50116878297339], [-77.40542277692512, 34.501685137110904], [-77.40538218684084, 34.50188391804443], [-77.40592702867866, 34.50193036954079], [-77.40633580860501, 34.50205363630819], [-77.40640615433361, 34.50207377944719], [-77.40644290248868, 34.5021126467884], [-77.40723783340852, 34.50240936504724], [-77.40732588181005, 34.5026106554289], [-77.40757188686513, 34.50292891932172], [-77.40726644089537, 34.50335357774365], [-77.4071664482738, 34.50352631997501], [-77.40677188342175, 34.50372838334399], [-77.40629297009401, 34.50397063628844], [-77.40613287742815, 34.50401688805476], [-77.40587554020233, 34.50415330612903], [-77.40550078827056, 34.50430193913247], [-77.40493472388908, 34.50428919309189], [-77.40478022208623, 34.50427186103302], [-77.4047217378413, 34.504045810568634], [-77.4044366839128, 34.50418520489445], [-77.40442480723004, 34.504362838658544], [-77.40336665228139, 34.50465803132157], [-77.40313490257563, 34.504817846759835], [-77.402538473926, 34.50524847877676], [-77.40162533648999, 34.50574647237622], [-77.40159467562849, 34.505782695406545], [-77.40154315928149, 34.50580760275366], [-77.4014925386222, 34.50579737637581], [-77.40105382100862, 34.505828996737236], [-77.40010890967235, 34.505879977497294], [-77.39997196207523, 34.50587926234593], [-77.39924090069482, 34.50560109092969], [-77.39928393086504, 34.50553925932841], [-77.3996281181995, 34.50505550856282], [-77.39966512792518, 34.50484423274821], [-77.39999707350438, 34.504759281852074], [-77.40140195957441, 34.50382003109423], [-77.40002354686662, 34.50357856960099], [-77.3992424576507, 34.50363902230218], [-77.39845457376896, 34.50355284585841], [-77.3973025571411, 34.50343257516125], [-77.39704523329269, 34.50337228930123], [-77.39689367361737, 34.50316764067181], [-77.396829380086, 34.50301121611453], [-77.39689785785941, 34.502981336887636], [-77.39748991943978, 34.50279297227601], [-77.39818728271553, 34.502506929615336], [-77.3984729362058, 34.50273457312363], [-77.39862010097136, 34.50234944795599], [-77.39889467519895, 34.50222337013993], [-77.3992723614331, 34.50208111879038], [-77.39973631438804, 34.501899125089416], [-77.40006411482497, 34.50176926039063], [-77.40138291406977, 34.50170676803502], [-77.40163834586092, 34.501558739814435], [-77.40226251948343, 34.50135049308784], [-77.40321802469313, 34.50110441834221], [-77.40371828382969, 34.50085616341756], [-77.40446368311767, 34.500439815853014], [-77.40480625882797, 34.500266744624724], [-77.40547670894391, 34.499724946850215], [-77.40593768053378, 34.49953116923825], [-77.40639718112922, 34.499307304567225], [-77.406572580894, 34.4992647079753], [-77.40670302448126, 34.499137007618124], [-77.40746784538362, 34.49870690443866], [-77.40786533215666, 34.498479427029594], [-77.40798656201149, 34.49841521711671], [-77.40844969668473, 34.498191210084755], [-77.40953855071604, 34.497767921604726], [-77.40957070645867, 34.49775627121452], [-77.40960299372904, 34.49775889185862], [-77.4096400752408, 34.497733349651426], [-77.4111541115269, 34.49712931372127], [-77.41223267161303, 34.497051349921676], [-77.41235441023456, 34.49659406665789], [-77.41251118084094, 34.49652309311194], [-77.41304335149331, 34.496257156595576], [-77.41349895264317, 34.49597708413679], [-77.41367335465442, 34.49584732154726], [-77.41502106528769, 34.49603045994537], [-77.41506759502862, 34.496022019893154], [-77.41597713280385, 34.495428313025975], [-77.41598422393506, 34.49531040665332], [-77.41548436829922, 34.49472755763995], [-77.41551729696236, 34.49426278358683], [-77.41572880974826, 34.494064512906476], [-77.41578822254884, 34.494026702845794], [-77.4158593588897, 34.4939890111914], [-77.41634959506983, 34.49370548268382], [-77.41693453111287, 34.493450633219894], [-77.41699016811856, 34.49342277379569], [-77.41732618096714, 34.493318515994346], [-77.41830010844853, 34.493064438381225], [-77.41855863148146, 34.49299706050831], [-77.41888407433814, 34.4928747737256], [-77.41952942239672, 34.49263496425938], [-77.42053164307151, 34.49276803682142], [-77.42084767759867, 34.49253137637644], [-77.42141002029344, 34.49275197637101], [-77.42152578660793, 34.493009808476245], [-77.42168668584554, 34.49332963818267], [-77.42135674018742, 34.49367671553411], [-77.42124493125607, 34.49370903404889], [-77.42118971989414, 34.49378449246449], [-77.42095687449978, 34.49416315369524], [-77.42056340818333, 34.494311713912005], [-77.42004243320142, 34.49451453344089], [-77.41953244881792, 34.49465893529943], [-77.4189438856855, 34.4954232111123], [-77.41856897649456, 34.495378842272444], [-77.41767579448717, 34.495515178330535], [-77.41744604877499, 34.49602121673478], [-77.41637389181653, 34.49587443238772], [-77.4152171358373, 34.49612580114199], [-77.41567127373823, 34.49676376146142], [-77.41460078434764, 34.49701449245081], [-77.4140643792359, 34.49728028424192], [-77.41400306098662, 34.497318047552454], [-77.41389707887251, 34.49734855624665], [-77.41329411853219, 34.49756751176228], [-77.4117111241379, 34.49805302627678], [-77.41112997078187, 34.4982122775159], [-77.41090785469247, 34.498393450595266], [-77.41071190565191, 34.49855784598712]], [[-77.3243681465633, 34.750777604736456], [-77.32450798459968, 34.75090332022651], [-77.32480120097776, 34.75090075284258], [-77.32496218011326, 34.75079487742297], [-77.32517591382026, 34.7507840145861], [-77.32516110516666, 34.750957358377626], [-77.32549854320285, 34.75101043001279], [-77.32569338398051, 34.751174471771165], [-77.32574457991146, 34.75119434791252], [-77.32583083784596, 34.75126587037773], [-77.32592206356928, 34.751255696663335], [-77.32605450132056, 34.75115861655086], [-77.32626200364857, 34.75113149828059], [-77.32648180320554, 34.751113334796415], [-77.32671454340988, 34.750948927833996], [-77.3268627043394, 34.751063861240134], [-77.32709913904107, 34.751022016088186], [-77.32730436094296, 34.7509806897565], [-77.32762922202778, 34.750868756569915], [-77.32764285907251, 34.750865455739756], [-77.3276936533363, 34.75081922763996], [-77.32789104173871, 34.75058332455876], [-77.32795991119501, 34.7502204325675], [-77.3280047355625, 34.74990932402622], [-77.32854498420848, 34.749518980393056], [-77.32878248277204, 34.74932175572007], [-77.3289913005365, 34.74929973582967], [-77.32912941975853, 34.74932139805071], [-77.32940988384752, 34.74923936100012], [-77.3294667764932, 34.749062056542044], [-77.32941431797076, 34.74891248466804], [-77.32918566501294, 34.74863135567476], [-77.32895082487586, 34.748670445821524], [-77.32867883264578, 34.74852590306329], [-77.32823816459617, 34.748430055117346], [-77.32803772146667, 34.74845898506357], [-77.32787021111363, 34.74851326787534], [-77.32676703335036, 34.74877271502616], [-77.32674600435182, 34.748780981125684], [-77.32673357852438, 34.74878276453457], [-77.32556207268907, 34.74891074389364], [-77.3255114429267, 34.74890640912371], [-77.3253550874006, 34.748837900914886], [-77.32433606314251, 34.74906493720827], [-77.32426871145263, 34.74905989938599], [-77.32411131197266, 34.74901242484209], [-77.32312211734745, 34.74920984142567], [-77.32300965603696, 34.749269478379674], [-77.3229858000773, 34.74929176233661], [-77.32294650701832, 34.74931127970673], [-77.32229486898618, 34.74966735454339], [-77.32215226024174, 34.749829882109125], [-77.32219062141775, 34.749902185235136], [-77.32219589613736, 34.74992177327889], [-77.32216968557282, 34.750097701714466], [-77.32225860970193, 34.750380236348875], [-77.32213330461282, 34.750451540026376], [-77.32213828956574, 34.75075424859169], [-77.32213791985454, 34.75088413227671], [-77.32208217386881, 34.75104468009249], [-77.32201264474963, 34.751244920200634], [-77.32230743350027, 34.75134827709998], [-77.32165395737375, 34.75187059415717], [-77.32160439264958, 34.75189813295555], [-77.32103090004644, 34.75195304702702], [-77.32078654689255, 34.75179320883562], [-77.32077817553915, 34.75179213482752], [-77.32076388069639, 34.75179162874325], [-77.32063243103316, 34.75177830477314], [-77.32056048365247, 34.75183123531279], [-77.32053638732145, 34.75190922710471], [-77.32039724513153, 34.752092421798906], [-77.32040223169926, 34.75209659097891], [-77.3204011797159, 34.75210862222986], [-77.32037339692688, 34.752153895238614], [-77.32021970671991, 34.75260895211429], [-77.32017238319507, 34.75265933857827], [-77.3200958998665, 34.75310774735532], [-77.32009816378502, 34.75311047397986], [-77.3201002921253, 34.75311887673422], [-77.32017048289185, 34.75359041909079], [-77.31998988454566, 34.75398187640157], [-77.31987215931736, 34.75419362047591], [-77.32012428697425, 34.75457147119985], [-77.31997618052915, 34.75478059203069], [-77.31975184756377, 34.75510984036242], [-77.31963994979432, 34.755264755743525], [-77.31946340840433, 34.75556877418405], [-77.31941701391595, 34.755643057955304], [-77.31939824085093, 34.75568900045956], [-77.31921311383476, 34.756142047727195], [-77.31920656282642, 34.75615758991433], [-77.31920568282517, 34.75615936107027], [-77.31920526423605, 34.75616125739347], [-77.31920797219519, 34.756159719987025], [-77.31920839318235, 34.75615921218913], [-77.31920879497397, 34.75615893488589], [-77.31962187489239, 34.75588720969497], [-77.31967304224398, 34.75585167683694], [-77.31982700534766, 34.75574978164203], [-77.31990297874802, 34.75562503635286], [-77.3198153140109, 34.755588511569925], [-77.31982770380559, 34.7554311643445], [-77.32004858612228, 34.755329606216286], [-77.32016186496905, 34.755053688230475], [-77.32028649727641, 34.75456085566457], [-77.32031704505636, 34.75454507277482], [-77.32056846614883, 34.754325384049665], [-77.32069106459996, 34.753642491631496], [-77.32084095789166, 34.753498591541444], [-77.32152266437848, 34.753102618671015], [-77.32188986176834, 34.75311901946938], [-77.3221270777281, 34.7531274596171], [-77.32221216964142, 34.75307526937119], [-77.32221905976706, 34.753066156641665], [-77.32241484500376, 34.75293567133213], [-77.32244472416993, 34.75288331494516], [-77.32248787863789, 34.75278565332292], [-77.32249612108721, 34.75268847828587], [-77.32256373003887, 34.752594795516416], [-77.32250633138273, 34.7525394435456], [-77.3224500222557, 34.75248514245318], [-77.32228506770147, 34.75232606883878], [-77.32222589813267, 34.75226330674019], [-77.32246564419607, 34.751384555768546], [-77.32261870358418, 34.751305639556435], [-77.32286160285624, 34.75098648921585], [-77.32309612319939, 34.75075287855676], [-77.32314069601676, 34.750705953289284], [-77.32321301818018, 34.75062981324135], [-77.32334161720914, 34.75061753297041], [-77.32384863998502, 34.7505041077649], [-77.32412472781866, 34.750803805063775]], [[-77.34319613251044, 34.685687357576356], [-77.34257819312319, 34.686066266589], [-77.34239013140348, 34.68621150600371], [-77.34251942252062, 34.68626860883595], [-77.34273967328292, 34.686365882836476], [-77.34304993651693, 34.686502911259595], [-77.34312033849551, 34.68653400410071], [-77.34313680398168, 34.68659642197155], [-77.34351626459245, 34.68695821551336], [-77.34405687395062, 34.68647015907338], [-77.34401873263992, 34.686223362593545], [-77.34393644480909, 34.68599930765484], [-77.34392828660363, 34.68591228882992], [-77.34389120617631, 34.68566726203781], [-77.34383172356954, 34.685592431523666], [-77.34332507721949, 34.68560829108082], [-77.34330792409715, 34.68561465848048]], [[-77.38417149230037, 34.51049958954373], [-77.38365824509663, 34.51061676245911], [-77.383948323228, 34.51025636090768], [-77.38419187457201, 34.50959804626069], [-77.38434283238746, 34.509310250842766], [-77.3842924548525, 34.509227394319964], [-77.38499653570544, 34.50872093980045], [-77.38516614464157, 34.508717467943626], [-77.38578490482104, 34.508564306168864], [-77.38698197376668, 34.50860754159332], [-77.38785785315908, 34.50840130719654], [-77.38775482216624, 34.508983521486634], [-77.38600117176053, 34.50996022496066], [-77.38584935907966, 34.51004318400911], [-77.38575072319776, 34.51007746638785], [-77.38558908733445, 34.51011992016954]], [[-77.22753102299859, 34.59888808964578], [-77.22775775763778, 34.59953198731087], [-77.22734191839581, 34.59959302216082], [-77.22699720871863, 34.59994211537161], [-77.22670608393665, 34.599684604416396], [-77.22696853322113, 34.599469693287496]], [[-77.24421578771135, 34.59258054776161], [-77.24464765947059, 34.59297051963876], [-77.2449352729947, 34.59334496796766], [-77.24499057973986, 34.59357693385837], [-77.24478606869684, 34.59380456220012], [-77.24485337565272, 34.59399568224517], [-77.24478826092498, 34.594076829083434], [-77.24474428613415, 34.59427261950148], [-77.24471318567831, 34.594415546308994], [-77.24457409345591, 34.59454368225892], [-77.24428906574563, 34.594708098161604], [-77.24421744746616, 34.59488379602887], [-77.24420166686598, 34.59493688642365], [-77.24417137015521, 34.59498574297557], [-77.2440689306788, 34.59508036773938], [-77.24396342948694, 34.595153788001724], [-77.2438710482405, 34.59523302637844], [-77.24364487320808, 34.595374094509346], [-77.24342627795028, 34.59549475218726], [-77.24326474327697, 34.595570078496884], [-77.24278712852305, 34.59587125025347], [-77.24259976137857, 34.595989022799884], [-77.24254297085149, 34.59602375200221], [-77.24244760449918, 34.596073601175995], [-77.2420822741304, 34.59627131307508], [-77.24193218797483, 34.59640775989878], [-77.24176641609877, 34.59658641056112], [-77.24147599940133, 34.59638937255988], [-77.24145297053549, 34.5963727825635], [-77.24144532070221, 34.59637346842433], [-77.2414499860103, 34.596369753923256], [-77.24083446101065, 34.59592897642784], [-77.2407012578002, 34.5959171843085], [-77.24072737353461, 34.59584144366263], [-77.24067871691588, 34.59568011742447], [-77.24048748056669, 34.59535118165125], [-77.24044373347604, 34.59527880386187], [-77.24038475289707, 34.595151743756894], [-77.2403053046508, 34.59496323157014], [-77.24015044936655, 34.59485326108228], [-77.24016449867746, 34.594648548090575], [-77.24002067809495, 34.59420537168606], [-77.23976250561196, 34.59406423904016], [-77.23877180614734, 34.59380186431603], [-77.23944494774685, 34.59326772336267], [-77.23978209528673, 34.59293880529135], [-77.24112119678196, 34.59212939827272], [-77.24291183223578, 34.591825261916355], [-77.243777310508, 34.59256152789865]], [[-77.22436266772682, 34.60937789606304], [-77.2247208273717, 34.60909582556035], [-77.22536995872721, 34.60877071738056], [-77.22602469321676, 34.60852232120943], [-77.22605458444696, 34.608745009704606], [-77.22612728325267, 34.60883049631764], [-77.22650774171522, 34.60923368425753], [-77.22654302179288, 34.60929702120147], [-77.22656554215791, 34.60933644692476], [-77.2264985784192, 34.609362510049195], [-77.22648640560193, 34.609565880919845], [-77.22638078703929, 34.60972507120704], [-77.22630061275011, 34.60978689695518], [-77.22626710044733, 34.6098140579791], [-77.22619075193917, 34.60985950204428], [-77.22605569977233, 34.60995472344003], [-77.2259265480386, 34.60999305299214], [-77.22580550243237, 34.610060871802446], [-77.22535049005839, 34.610183263949565], [-77.22559021694413, 34.61038816024145], [-77.22554666472152, 34.610434428980206], [-77.22554588222118, 34.61048738575078], [-77.2254990412577, 34.61054851010716], [-77.22552403386541, 34.61059659747855], [-77.22550246215266, 34.6106131295883], [-77.22539042795883, 34.61065777714213], [-77.22537611639834, 34.61066509499394], [-77.22535135386697, 34.610684141246495], [-77.22497253429931, 34.61063477849437], [-77.22491785692715, 34.61070744135389], [-77.22487734090538, 34.61065481837189], [-77.22484656640226, 34.61061484732666], [-77.22465774404776, 34.6103696002741], [-77.22462134244756, 34.61032232047511], [-77.22446017103697, 34.61011298496113], [-77.224438148341, 34.61008438138561], [-77.2240737806666, 34.60961111977783]], [[-77.4435130608636, 34.482551019186374], [-77.44471583551473, 34.48214624755453], [-77.4452515959774, 34.48328254715125], [-77.44532692877424, 34.4834153836039], [-77.44529439590427, 34.48343919945101], [-77.444385383635, 34.48416317239035], [-77.4432269382963, 34.48465949065127], [-77.4429608745486, 34.48475456722923], [-77.44222192894684, 34.485014685297514], [-77.44173866700369, 34.485209374389434], [-77.44169524812021, 34.48523209772439], [-77.4416417714925, 34.48531773639617], [-77.44155272325895, 34.48592525910014], [-77.44074488033465, 34.48650039312643], [-77.44047629001467, 34.48701604916091], [-77.43977200919855, 34.4871855853868], [-77.43843935233839, 34.48791874758554], [-77.43722915233627, 34.487622541842605], [-77.43686753496297, 34.48763843928894], [-77.4357698076647, 34.48800456303516], [-77.43543475408386, 34.48813023196401], [-77.43531305746448, 34.48830934039061], [-77.43498130070502, 34.48909805454517], [-77.43405583023424, 34.48959629152942], [-77.43357836746195, 34.489841060391406], [-77.43250990094204, 34.48951742749569], [-77.43131630141488, 34.48914495102328], [-77.43140488375187, 34.48810996859494], [-77.43126225937566, 34.487607623382516], [-77.43126489835831, 34.48742729222692], [-77.43119605918278, 34.487257997505026], [-77.43106237427654, 34.48692923271372], [-77.43122248837903, 34.48674958968029], [-77.43136210732791, 34.48665598968598], [-77.43208249264146, 34.48650064370644], [-77.43206490777736, 34.48611703844411], [-77.43225730669793, 34.48599149122394], [-77.43248630446452, 34.485842059304986], [-77.4325181934277, 34.48582125011734], [-77.43257657457643, 34.485805378498256], [-77.43291109018219, 34.48571518218221], [-77.43349942717342, 34.485514691791096], [-77.43372621988863, 34.485451949621215], [-77.43438144933009, 34.48524169424479], [-77.43495204102098, 34.485010263658346], [-77.4350424388544, 34.48496888745975], [-77.43516449927183, 34.48492408851471], [-77.43573884923656, 34.48471329083396], [-77.4361624028786, 34.48451201045067], [-77.43637722999154, 34.48442949036451], [-77.4368114738947, 34.484332541105054], [-77.43718642482902, 34.4842287170385], [-77.43740321834272, 34.484125300314965], [-77.43807195200534, 34.48405112123522], [-77.43871005470258, 34.483980339420015], [-77.43904377307912, 34.483943318827656], [-77.43963824626834, 34.48380111113879], [-77.43998068364796, 34.48370282978399], [-77.44080210821554, 34.48360976895229], [-77.4417735951835, 34.483234388081556], [-77.44222939822674, 34.48311529858777], [-77.44247841257057, 34.48298852849352]], [[-77.3943030266258, 34.506209138457564], [-77.3928574008423, 34.50654527026761], [-77.39303807464266, 34.506006825527976], [-77.39342082106332, 34.50578000616403], [-77.39447797456995, 34.50531745773195], [-77.3952688415349, 34.50562722780752], [-77.3959246823137, 34.50501140613505], [-77.39631808609083, 34.50488905581486], [-77.39629071923511, 34.505189451416435], [-77.39542938019028, 34.50566166918441], [-77.3952666553546, 34.50572448832981]], [[-77.44526722278461, 34.493195691861125], [-77.44506261714027, 34.492924830836685], [-77.44483672086758, 34.49284781605009], [-77.44514642442414, 34.49275362691784], [-77.44586472472406, 34.49201121170727], [-77.44734286533465, 34.49162433688437], [-77.44750272989072, 34.49152092963194], [-77.44799083948526, 34.49139521142307], [-77.44876811375195, 34.491223847408286], [-77.44899131330884, 34.49115421492721], [-77.45013854453674, 34.49131113203779], [-77.45126158111289, 34.491069220986944], [-77.45142552737634, 34.49109310180237], [-77.45169958968371, 34.491023430568816], [-77.45270944447898, 34.490863863786686], [-77.45319590224513, 34.49124656192851], [-77.4528957462231, 34.49154542450497], [-77.4517174005668, 34.49129070073592], [-77.45257793432427, 34.49189066066387], [-77.45177699289674, 34.49237895295997], [-77.45114620695946, 34.49220129235291], [-77.45034605309995, 34.49207036315725], [-77.44993432626829, 34.49194564720354], [-77.44920632328464, 34.49185276866598], [-77.44898583744147, 34.492020499747014], [-77.44782780302756, 34.491776988141645], [-77.44759727186491, 34.49186687845979], [-77.44722068206337, 34.492670127865296], [-77.44570822575693, 34.49289218311456]], [[-77.4365424629726, 34.68802488937845], [-77.43689871386557, 34.688145541272235], [-77.43711423312982, 34.68826356776049], [-77.43729412628633, 34.6886250393002], [-77.43695781587581, 34.68880432516244], [-77.4367822577664, 34.688868032577076], [-77.43646400046083, 34.68877339741299], [-77.43635647958568, 34.68866784756523], [-77.43612961417297, 34.68846657640411], [-77.43566248535161, 34.68805452780787], [-77.4359779310739, 34.68755330981627]], [[-77.39979660910375, 34.51186087448863], [-77.39980352115623, 34.51188560736951], [-77.39976052093253, 34.51193896903952], [-77.39924288257583, 34.51258482139838], [-77.3990309337899, 34.512844587563215], [-77.39871486420077, 34.51273123244369], [-77.39825343197774, 34.5125165582648], [-77.39791644338729, 34.51237033712705], [-77.39749435247694, 34.512218975597165], [-77.3973370498545, 34.51165792778662], [-77.39828257296044, 34.51121787305086], [-77.39832596479793, 34.511145641988996], [-77.39839618832724, 34.51110944223905], [-77.39953221303347, 34.51073904801489], [-77.39986439774378, 34.51067679985585], [-77.40048353059356, 34.510425310046685], [-77.40065374518097, 34.5104757252644], [-77.40096223487123, 34.5107389605878], [-77.40064262591513, 34.5109718798498], [-77.40029895684103, 34.51111194153414], [-77.39983894660459, 34.51181198819746]], [[-77.33309165869187, 34.569748225861446], [-77.33320520586703, 34.569994502639396], [-77.333316608977, 34.569715890615136], [-77.33343730471476, 34.56952367946914], [-77.33359954673152, 34.56956359493884], [-77.3337319129623, 34.56951360361586], [-77.33383779686845, 34.56947308059043], [-77.33390306485589, 34.56930475943771], [-77.33375457413848, 34.56939529652067], [-77.33359968913595, 34.569392028902165], [-77.33342358571133, 34.56946567059356], [-77.33338999993313, 34.56947946583884], [-77.33320546462818, 34.56968441427774]], [[-77.22002920270297, 34.61369801934448], [-77.22047417478453, 34.61377114841741], [-77.22018734242184, 34.61401788033796], [-77.22052876455169, 34.61437677750587], [-77.22052534205582, 34.61448672004684], [-77.22050537857062, 34.614514359151386], [-77.2204838438551, 34.6145313066385], [-77.22035311339803, 34.61473801686138], [-77.22032646177477, 34.614776087349874], [-77.22020873635837, 34.61494406687281], [-77.2201972789114, 34.61496139245823], [-77.22017410368397, 34.61498543452761], [-77.22004220936628, 34.61512466907008], [-77.2199851115596, 34.615180319200384], [-77.21986796906542, 34.61529840869137], [-77.21977207476881, 34.615399177143026], [-77.21969720822425, 34.615475244991714], [-77.21966445901977, 34.615508519497816], [-77.21960604278011, 34.615565234833795], [-77.21955303337025, 34.615617560718476], [-77.21950662804157, 34.615634447447036], [-77.2194611807814, 34.615651564481965], [-77.21924996419803, 34.61573485281844], [-77.21908816502773, 34.615816529448644], [-77.21901584822183, 34.615855320107364], [-77.21890649766392, 34.61591397521776], [-77.21871642158388, 34.61589793394005], [-77.21869816226774, 34.61578572748971], [-77.2186882465639, 34.61572479555724], [-77.2186620812313, 34.61556400700338], [-77.2186521276502, 34.61555462778023], [-77.21865761891016, 34.615536585210485], [-77.21862045789442, 34.6153082259833], [-77.21860372138612, 34.61520537952312], [-77.21855955799475, 34.614933986734925], [-77.21848184094263, 34.61482591300751], [-77.21832695779972, 34.61457418028259], [-77.2184163651242, 34.6140068318317], [-77.21922996145432, 34.61394226951861]], [[-77.41909555337183, 34.502374610982216], [-77.41888241253933, 34.50247961918122], [-77.41863011947883, 34.50246793613806], [-77.41809460462125, 34.502617121289504], [-77.4177456621165, 34.50243818911497], [-77.4176077878359, 34.502276920450086], [-77.41760205251757, 34.50214505406787], [-77.41767638913541, 34.50195851798574], [-77.41765841427564, 34.50167588980739], [-77.41844153279942, 34.501644906859575], [-77.4186565890943, 34.501816834420865], [-77.41877242076703, 34.50187707187855], [-77.41889217554464, 34.502039776586344], [-77.41908977594227, 34.50211949369556], [-77.41945886803039, 34.50219054540712]], [[-77.4542218568421, 34.47711276592874], [-77.45427097395438, 34.477085926025175], [-77.45431878058459, 34.47704689974707], [-77.45463580376145, 34.47666915805302], [-77.4551411014644, 34.47648398772405], [-77.45532950262925, 34.47641220496549], [-77.45619966622279, 34.47614607312044], [-77.45676694506318, 34.476152216142225], [-77.45783211662003, 34.47662078920876], [-77.45700430034438, 34.47702057663547], [-77.45683465666825, 34.477143619115594], [-77.4567235829531, 34.47723996363027], [-77.45648447340513, 34.477563016690596], [-77.45623741485319, 34.47789077008092], [-77.45636254116094, 34.47810230388096], [-77.45519219329738, 34.47823830738004], [-77.45449629227669, 34.477696383997696], [-77.45399209381327, 34.47729964976676]], [[-77.45725423727782, 34.48267109198498], [-77.45622656250688, 34.48278863910333], [-77.45596170705312, 34.483057688955526], [-77.45578294964885, 34.48316714163214], [-77.45482736058679, 34.483126239818176], [-77.45477478993739, 34.48267726902047], [-77.45503630350389, 34.48255835494082], [-77.4553154634195, 34.482345931315365], [-77.45563724488724, 34.48187068955437], [-77.45706686782148, 34.48131052941284], [-77.45737879791434, 34.4809723026899], [-77.45870337016773, 34.481100846241205], [-77.45872287832404, 34.48139468956828], [-77.45844644592874, 34.48149107279912], [-77.4583425484168, 34.48191614235218]], [[-77.46315550469257, 34.486749083937845], [-77.46285193450093, 34.48700855254083], [-77.46264798456222, 34.487096556045664], [-77.46247833798608, 34.487193154305245], [-77.46212633317214, 34.48743716338447], [-77.46190254233127, 34.48763586138513], [-77.46162548920813, 34.48778787917787], [-77.4615408412515, 34.48823004499481], [-77.46163909819249, 34.48829800025849], [-77.46146344063892, 34.48840600273802], [-77.4613106698207, 34.48882299721088], [-77.46126253003806, 34.48895439371665], [-77.46105998122258, 34.48926423511472], [-77.46105963331469, 34.489281848236004], [-77.46105055527606, 34.48929066404238], [-77.46103399529515, 34.489297730751964], [-77.46089174157936, 34.489352148812216], [-77.46042261789684, 34.48952413548239], [-77.45997558702724, 34.489362464936626], [-77.45840493161556, 34.489085789252755], [-77.45816759088551, 34.48879718182671], [-77.45841294330258, 34.48860329654525], [-77.4582894814578, 34.48836321802567], [-77.45822284130602, 34.48812447226102], [-77.45819370243434, 34.48790273958855], [-77.45842172075145, 34.487511220571115], [-77.4583568640105, 34.48745576312289], [-77.45836548126644, 34.48739215529294], [-77.4584885015171, 34.48737517503115], [-77.45883231945179, 34.48680440047517], [-77.45875182141558, 34.48639177303488], [-77.45958716116692, 34.48646858934316], [-77.4606503969894, 34.48634662641523], [-77.46089445402474, 34.486325120884274], [-77.460991171611, 34.486291658668165], [-77.4610603321165, 34.48624205987316], [-77.4620993559134, 34.48580720439142], [-77.46231706177473, 34.48574773982865], [-77.46333182797004, 34.48572827382388], [-77.46350425538597, 34.48602070290747], [-77.46371954636872, 34.48630857307071], [-77.46375003576003, 34.48644388007274], [-77.4636217348052, 34.4864503065379]], [[-77.25110060950558, 34.61079898676154], [-77.25189018523889, 34.61009874824532], [-77.25209231788637, 34.60993437162394], [-77.25217330201849, 34.60984766626867], [-77.25258889051862, 34.60903076247959], [-77.25300562491078, 34.60821160103912], [-77.25304999828553, 34.60812438082924], [-77.25307125390957, 34.60801695583533], [-77.25334503316736, 34.607204908044864], [-77.25269396321485, 34.60581590962568], [-77.2519015084582, 34.60568571200883], [-77.25030339071616, 34.605555562057816], [-77.24942843071842, 34.605603679357515], [-77.24797646314308, 34.606115460521764], [-77.24735122522907, 34.606733019341604], [-77.24680711104702, 34.607450403047416], [-77.24669274190317, 34.6076031430987], [-77.24668339277403, 34.60762311543763], [-77.24667348708115, 34.60764263242278], [-77.24710107097359, 34.60859869564494], [-77.24771901243838, 34.608980674177566], [-77.24849603194076, 34.60989961854532], [-77.2493917056409, 34.610664451356314], [-77.24991370598288, 34.61130871023784]], [[-77.39590682458739, 34.51122396369877], [-77.39590924179826, 34.51121180828312], [-77.39591745717514, 34.51110001128406], [-77.39593077884928, 34.51109548429866], [-77.39594828070008, 34.51109556201129], [-77.39595319518921, 34.51120179440765], [-77.39598306514036, 34.511212958594584], [-77.39592582118861, 34.51131614709882]], [[-77.31383942808596, 34.69843896761304], [-77.3143182713932, 34.698442145885934], [-77.31427429793419, 34.698838714947186], [-77.31431398396552, 34.69886581293051], [-77.31455790811886, 34.698799868317955], [-77.31477281088561, 34.69859166231664], [-77.31501012045177, 34.698530807763575], [-77.31524332921165, 34.69821862122695], [-77.31515820505929, 34.69819034127321], [-77.3151070242531, 34.69819761812962], [-77.31490247983419, 34.69802162939042], [-77.31487496808633, 34.698014073414505], [-77.31483635498836, 34.698009494853764], [-77.31448943071791, 34.69826258206858], [-77.31411656290967, 34.69788559783217], [-77.314032081627, 34.69787408520061], [-77.31400601138402, 34.697866221407445], [-77.31391172832868, 34.697827809827274], [-77.31370827817098, 34.69786066532694], [-77.31361702660041, 34.69779917775776], [-77.31354090714488, 34.6977207635894], [-77.31345792921283, 34.6976921950325], [-77.31323186072376, 34.69776309167942], [-77.3134065619376, 34.69786880259619], [-77.31347025873636, 34.69791203337789], [-77.31350836423692, 34.697968901087705], [-77.31362905311009, 34.698133054082405], [-77.31370307586654, 34.69812707202597], [-77.3137746152816, 34.698344721064004], [-77.31382179867775, 34.698413332106234]], [[-77.44092190174149, 34.495870431264684], [-77.44059849530636, 34.49582244335585], [-77.43994665795381, 34.49559696105045], [-77.43967678216747, 34.49528711674935], [-77.4400811462493, 34.49514151856732], [-77.44036333842776, 34.4949617185615], [-77.44047755842199, 34.49474006807298], [-77.44063205870947, 34.494660261823356], [-77.44085146255831, 34.49432767373112], [-77.4408529384529, 34.49399598358772], [-77.44128309433653, 34.493399369204184], [-77.44146039004877, 34.49343540197685], [-77.44270253811597, 34.49366599938135], [-77.44312265159152, 34.49393814327545], [-77.44420113504805, 34.49416650635125], [-77.44289574534167, 34.49437311967713], [-77.44216867418012, 34.49496781576252], [-77.44177507114438, 34.495200051347226], [-77.4416068198953, 34.495288872261895], [-77.44165735663576, 34.49538802379129], [-77.4414221507785, 34.495609156582326], [-77.44129026071369, 34.495729134495384]], [[-77.357122824501, 34.570112390363306], [-77.3570938605426, 34.56996116404799], [-77.35709438857513, 34.569904207727326], [-77.35723818142003, 34.569749144876916], [-77.35730675516265, 34.56973524939579], [-77.35757842574162, 34.569680198898176], [-77.35763219218394, 34.56968772162235], [-77.35791702110089, 34.569691130497], [-77.3580261335596, 34.569754325368635], [-77.35859891798391, 34.569707244413856], [-77.35881413672516, 34.56966233467497], [-77.35899258518806, 34.56961094670386], [-77.35936647928239, 34.569618771652785], [-77.35960214650369, 34.5695536479854], [-77.35996610508205, 34.56967079541603], [-77.36001404771119, 34.56967679094197], [-77.36038995037651, 34.56984501880249], [-77.36058646749292, 34.570038315841096], [-77.36078961622565, 34.57042717560607], [-77.36079218933057, 34.570433251218], [-77.36079949812097, 34.57044930569813], [-77.36090057015385, 34.57062992383937], [-77.36096418390316, 34.57063836712318], [-77.3611266020627, 34.570809657231074], [-77.36116112669492, 34.57082224123046], [-77.3611774057454, 34.570845567961705], [-77.3614514695353, 34.571187436952975], [-77.36141112324519, 34.57136566828062], [-77.36141079754739, 34.57161784707888], [-77.36141113361401, 34.57187020995039], [-77.36117673879018, 34.57218480828631], [-77.36106602828178, 34.57239740894944], [-77.36042873801517, 34.57256506220263], [-77.36038859089871, 34.57252253968976], [-77.36031041291004, 34.57254114973071], [-77.35972726375206, 34.57257283013625], [-77.3596006517341, 34.57244320220937], [-77.35937959862437, 34.572148646298835], [-77.35922899501308, 34.571931962511], [-77.3592069419557, 34.57190580344379], [-77.3590050859885, 34.57175724263317], [-77.35881317063928, 34.571495388932604], [-77.35852488493458, 34.57149487139008], [-77.35806094950206, 34.5712510048958], [-77.35804461190597, 34.57123258991714], [-77.35802536178865, 34.571192619331356], [-77.35796563119013, 34.57090470520046], [-77.35785585383547, 34.57085597631264], [-77.35771091716947, 34.57079136226108], [-77.35763160819864, 34.57076627234133], [-77.3574266375033, 34.570696845751755], [-77.35723770107259, 34.57062858491041], [-77.35717565203542, 34.570596220656796], [-77.35694636340448, 34.570562342880976], [-77.35716258422232, 34.570450168323895]], [[-77.34177108716145, 34.6537029045822], [-77.34167777541964, 34.6536698088833], [-77.34163344310038, 34.65366464088312], [-77.34159231041104, 34.65361322601527], [-77.34129709721874, 34.653368822760974], [-77.34119649343123, 34.65338151179957], [-77.34118104984313, 34.6532476751355], [-77.34090944354637, 34.653033115803346], [-77.34082696380702, 34.652964919141176], [-77.3406735134771, 34.652895336759386], [-77.34054952844664, 34.65283540812095], [-77.34030772798808, 34.652844696386595], [-77.33997470469006, 34.652569247091606], [-77.33995230672724, 34.65240018344228], [-77.33975621585303, 34.651755239826066], [-77.33973480605167, 34.65168264916856], [-77.33967709159982, 34.651680609042], [-77.33961199430613, 34.65177503267985], [-77.33931984290287, 34.652081952041186], [-77.33916263969259, 34.65230707528525], [-77.3390433477636, 34.652491094533076], [-77.33863154108627, 34.65271856791526], [-77.33860837578754, 34.65273546961568], [-77.33859554504293, 34.65274032052222], [-77.33851414211709, 34.65276968704032], [-77.33832693865705, 34.653156831015586], [-77.33823060123228, 34.65323059231709], [-77.33836759891348, 34.65324104953388], [-77.33843422276827, 34.65325698292813], [-77.33863596818009, 34.65287277329777], [-77.33890945737056, 34.65331649765177], [-77.33924654858055, 34.65334803977085], [-77.33936549648998, 34.653316488110534], [-77.33957616326802, 34.65314479809685], [-77.33965890114605, 34.653456580366836], [-77.33966753144237, 34.653741023996496], [-77.33944512705929, 34.6537127203988], [-77.33917948016635, 34.65395268636468], [-77.33917342170497, 34.653953936522036], [-77.33916504210929, 34.65395864221775], [-77.33886614100848, 34.654018132945964], [-77.33875448116578, 34.6542232060566], [-77.33839780299581, 34.65432932852944], [-77.33828670042772, 34.65432130406686], [-77.3379905823112, 34.65452951494653], [-77.33779730930719, 34.65466420234739], [-77.33771715047317, 34.654673713166005], [-77.33759858231363, 34.655005300890046], [-77.33763302801168, 34.6551781091769], [-77.33754038347837, 34.65543528173196], [-77.33742250005399, 34.6556488460901], [-77.33728147386849, 34.65569235164571], [-77.33718538038741, 34.65590598905665], [-77.33712501103116, 34.65603840648731], [-77.33712520776822, 34.65627432946276], [-77.33735427407092, 34.656252424693506], [-77.33739562461471, 34.65626040322328], [-77.33742781398256, 34.65624937369354], [-77.33763043857857, 34.65617659082216], [-77.3376821418174, 34.656092836558905], [-77.33782109700307, 34.65602093699431], [-77.33793757900509, 34.65577061510507], [-77.33815343326938, 34.65596111944781], [-77.33836647610397, 34.65586278196591], [-77.33858625160771, 34.655811889620054], [-77.33873432700003, 34.65569344225149], [-77.33871890613152, 34.65552451192452], [-77.3388991185143, 34.65524883213992], [-77.33898411155889, 34.65510482100494], [-77.33908209453642, 34.65509270554205], [-77.33924023654102, 34.654780024626895], [-77.33927757131657, 34.65471150732269], [-77.33930969567012, 34.654632018117994], [-77.33940943166978, 34.654622954714476], [-77.33960079607685, 34.654487299048135], [-77.34011489491688, 34.654374547457856], [-77.34020728775054, 34.65431873846062], [-77.34025388546134, 34.65428837550889], [-77.34069175165631, 34.65415882394345], [-77.34079730253117, 34.65406820817237], [-77.34083817699988, 34.65409085468023], [-77.34132178792085, 34.65395074043218], [-77.34141137630257, 34.653937393008924], [-77.34147377242844, 34.65398073801282], [-77.34167475363688, 34.65394659939873], [-77.34172931077859, 34.653926205515454], [-77.34178049019462, 34.65394761200685], [-77.34185022305743, 34.65394358246988], [-77.34187807092277, 34.65386983025561], [-77.3419138454457, 34.65383616212189], [-77.34188151498013, 34.653747613512124]], [[-77.38254448162654, 34.513396828346416], [-77.38253903181393, 34.51339939205186], [-77.38253614846317, 34.51340089247081], [-77.38252462351471, 34.51340679918919], [-77.3821395341266, 34.51358542566963], [-77.38191386421627, 34.51359191473627], [-77.38174670627384, 34.51360259884162], [-77.38136742384927, 34.51382273864501], [-77.38120267915241, 34.513925194213314], [-77.38102253997457, 34.513654944999566], [-77.38099154263624, 34.513620799289825], [-77.38175670972916, 34.513160667686996], [-77.38198834430746, 34.51313147506802], [-77.38219352363397, 34.513174731333685], [-77.38253641608722, 34.51338906451778], [-77.38254882619111, 34.51338846774948]], [[-77.42912987687154, 34.49820611863881], [-77.4299809653713, 34.49884592665107], [-77.42967997561837, 34.49899803694201], [-77.4295267623917, 34.49916051905234], [-77.42941974618681, 34.49926759668743], [-77.42933403724652, 34.49942402793547], [-77.42920517084261, 34.49948187540548], [-77.42834897014139, 34.50008765889027], [-77.42832878760018, 34.50011268654054], [-77.42831728190347, 34.5001180920708], [-77.42830682960928, 34.50012356326696], [-77.42824350297705, 34.500142725269406], [-77.42762269223417, 34.50037460665347], [-77.42706457889128, 34.500505959114065], [-77.42672914219966, 34.50053440370455], [-77.42631653323161, 34.50068550046818], [-77.42581687111917, 34.50086840233469], [-77.42540828845966, 34.50108063761007], [-77.42523842906081, 34.50130599199676], [-77.42493509319031, 34.50144476983547], [-77.42465477678752, 34.50154444072808], [-77.4245139010587, 34.501606764016486], [-77.42431716164093, 34.50173854274991], [-77.42379844336011, 34.50190799267131], [-77.42363690707683, 34.502002017875064], [-77.42343994244595, 34.50202736614128], [-77.42313780210449, 34.50202556533639], [-77.42237029134203, 34.50198043708967], [-77.42202965324923, 34.502108360479845], [-77.4215055121147, 34.502220187723736], [-77.42132857587569, 34.50192025228651], [-77.42162461655741, 34.50161792696824], [-77.42144992286786, 34.50145024414242], [-77.42149185938166, 34.50131933470226], [-77.42127029980392, 34.501103292128825], [-77.42171219553722, 34.500631536702194], [-77.42175502559884, 34.50049297768249], [-77.42184642154119, 34.50045718649469], [-77.42285068798296, 34.49986902702789], [-77.4228791143616, 34.499851116978995], [-77.42291247778681, 34.49983610838568], [-77.42349825423184, 34.49955794284692], [-77.42405294683141, 34.49934014493151], [-77.42434389232868, 34.49937487588728], [-77.42491394606887, 34.499262796116064], [-77.42535480966707, 34.49917611678906], [-77.42569041116768, 34.498841139081854], [-77.4260275714669, 34.49864412307193], [-77.42650343260576, 34.49845087450173], [-77.42688050962275, 34.49850607439645], [-77.42741832986746, 34.49849280464614], [-77.42785220250934, 34.49845867807867], [-77.42799106409302, 34.49840659866314], [-77.42821178480138, 34.498284357409375], [-77.42900494444069, 34.49817962187577]], [[-77.25891795633473, 34.581853092921676], [-77.25901610761625, 34.58207978956548], [-77.25887994106085, 34.5821880817127], [-77.2592234288364, 34.58236955559302], [-77.25913011910758, 34.582443439957046], [-77.25909243298548, 34.58247957935305], [-77.25904827350833, 34.58267266953526], [-77.25882191791787, 34.58287604072147], [-77.25880727389287, 34.58288321658405], [-77.25880563102754, 34.582889245407735], [-77.25880090776592, 34.582895201150954], [-77.25862578356478, 34.58305042725327], [-77.25849027971802, 34.58310009864701], [-77.25840915008261, 34.583186380883745], [-77.25839609951923, 34.58321052225341], [-77.25833278223908, 34.58325421760384], [-77.25823851653075, 34.583315955870034], [-77.25814525250752, 34.58338040749677], [-77.25798319374533, 34.58346479125862], [-77.25793000414251, 34.58352734643549], [-77.2578162704285, 34.5836141019107], [-77.25779445140284, 34.58362555328871], [-77.25777014595714, 34.583632600589894], [-77.25774247057262, 34.583658988300265], [-77.25760503854899, 34.58373744137094], [-77.25757428381506, 34.58375836459794], [-77.25750757235942, 34.583807700217385], [-77.25720567779737, 34.5839416801902], [-77.25724674406547, 34.58402833379234], [-77.25719610944769, 34.5840792769623], [-77.25712098801849, 34.584155235681685], [-77.25710012313691, 34.58416904331363], [-77.25710128188187, 34.584174658247626], [-77.25701968876257, 34.584250999880226], [-77.25697221275014, 34.58427681116304], [-77.25688938472335, 34.584345860585586], [-77.25683658611659, 34.58438397158481], [-77.256817509486, 34.584399812235056], [-77.25676864900205, 34.58443507945138], [-77.25666459805896, 34.584488269906934], [-77.25663744027445, 34.58453205907089], [-77.25661550917013, 34.58454878415127], [-77.25653694289934, 34.58459605754361], [-77.25644692264798, 34.58465441397604], [-77.25633978963022, 34.5846321865111], [-77.25620291910771, 34.5847866259153], [-77.25617175718922, 34.58480298381083], [-77.25615203731186, 34.58482069557775], [-77.25581675796954, 34.58482425829279], [-77.25569670716814, 34.585159886637726], [-77.25558335991306, 34.585228009593514], [-77.25556013108351, 34.585253287907676], [-77.25543366438825, 34.58545189721362], [-77.25539435986597, 34.58548509384309], [-77.25508141409433, 34.58548477816184], [-77.2546065857496, 34.58562245841362], [-77.25491564155118, 34.58581976561684], [-77.2548344655658, 34.58587607014909], [-77.25480801693013, 34.58589889500111], [-77.25473477173001, 34.585986057690604], [-77.25470985953899, 34.58600484418772], [-77.25461860080935, 34.586059063530435], [-77.2545260881761, 34.58608746478616], [-77.25446488207731, 34.58617225349015], [-77.25441457685552, 34.586206239179106], [-77.2541735388659, 34.586281345203574], [-77.254156973422, 34.58626446991227], [-77.25404167836847, 34.58614701793742], [-77.25393775109754, 34.58604114517823], [-77.25382117018229, 34.5858621835194], [-77.25380740956177, 34.585666176844356], [-77.25391570380323, 34.58556806568424], [-77.25418762193682, 34.585347067998654], [-77.25431889388933, 34.58512846530026], [-77.25445121664126, 34.58489146015428], [-77.25431982639513, 34.58465719320477], [-77.2552417095168, 34.58412068250689], [-77.25551344538462, 34.58389718090524], [-77.2555321264608, 34.583809947916144], [-77.25563739021004, 34.583712480878575], [-77.25625255573117, 34.58324002375697], [-77.25703505638614, 34.58318908956979], [-77.25743334590891, 34.58312131807933], [-77.2575466583614, 34.58307651690343], [-77.25756712773823, 34.58302744524593], [-77.25758277574135, 34.58298397764418], [-77.25760042016668, 34.58279109205576], [-77.2574719752861, 34.58254861403955], [-77.2578157617621, 34.58216191143691], [-77.2578050592959, 34.58210348777541], [-77.25800916789014, 34.58198318152925], [-77.25833217685373, 34.58196851445831]], [[-77.43761357012784, 34.582975955007385], [-77.43751482200922, 34.582820626329934], [-77.43745291169418, 34.582723241314966], [-77.43721093968911, 34.582342621930145], [-77.43695851360435, 34.58194554772763], [-77.43682500446988, 34.58173553338459], [-77.43660318990959, 34.58138661132689], [-77.43638195270778, 34.581179732107], [-77.43567429033831, 34.58082329602531], [-77.43524862130461, 34.580958899252366], [-77.43489894859451, 34.58092177761991], [-77.43485459326197, 34.58092631919856], [-77.43479014518508, 34.580915863922975], [-77.43481477351597, 34.58098174812431], [-77.43482579270677, 34.58101122615733], [-77.43498073229344, 34.58138234416211], [-77.43487636612907, 34.58179893396132], [-77.4348719270011, 34.58184096104378], [-77.43467434535039, 34.58227582882364], [-77.43457327754673, 34.58241126419536], [-77.43446117255162, 34.58245841547545], [-77.43416149325178, 34.58267299728828], [-77.4340183887092, 34.58274259950174], [-77.43403337652117, 34.58282964164161], [-77.43406730130444, 34.58285221906155], [-77.43437980445117, 34.583167599619024], [-77.4344049263104, 34.5832248977567], [-77.43446172142428, 34.58386908107202], [-77.4344876615221, 34.583973280962645], [-77.43449627068283, 34.58399994494621], [-77.43525006600777, 34.58458676386137], [-77.43554551846118, 34.583848236963355], [-77.43560207953101, 34.58337071518938], [-77.43603758615743, 34.58325436415734], [-77.4361901090607, 34.58307028332943], [-77.43670268279881, 34.58296409173572], [-77.43666977891999, 34.58326108025416], [-77.43682567008426, 34.58333200685502], [-77.43698218835681, 34.58347190112637], [-77.43702275434491, 34.58350164224841], [-77.43717426567191, 34.58361272325083], [-77.43720009445056, 34.583630246192975], [-77.43721983025911, 34.58364959831905], [-77.43758109904921, 34.58358916407173], [-77.43761385590298, 34.58364531342886], [-77.4379817491111, 34.58394885042748], [-77.4380080268805, 34.583977747982175], [-77.43818692234261, 34.58412276659258], [-77.4382051808713, 34.58429880956042], [-77.43823831145566, 34.58430803977417], [-77.43837313807487, 34.58431986373871], [-77.43840219890639, 34.58430535501427], [-77.43851570191171, 34.58448022211916], [-77.43857608701407, 34.58449650088403], [-77.43872796746346, 34.5846618221127], [-77.43876597829353, 34.584689105021624], [-77.43898426044358, 34.58482712357241], [-77.43919028605399, 34.58436477886687], [-77.43935825415541, 34.58481448439679], [-77.4393107606394, 34.58500213328452], [-77.43947861830831, 34.58509210720854], [-77.4395329682472, 34.585182294501266], [-77.43958470776843, 34.585231036625956], [-77.43966861178288, 34.58528458917351], [-77.43977298738318, 34.585359879165935], [-77.43997888444287, 34.58554226850828], [-77.44024870834015, 34.58542486330172], [-77.44076159291038, 34.5856356671101], [-77.44062888834125, 34.584959979250826], [-77.44058325213584, 34.584818095921015], [-77.44031787625491, 34.58437314801971], [-77.4401169959933, 34.58403634034674], [-77.4399781205133, 34.583868209063105], [-77.43981877544488, 34.58390774531707], [-77.4391901386864, 34.584034795511904], [-77.4390789194219, 34.58406661092801], [-77.43879615948413, 34.58414749692974], [-77.43844258756081, 34.5842349435101], [-77.43840216001426, 34.5842163703212], [-77.43827453935663, 34.58401563216441], [-77.43819452688967, 34.58388977736892], [-77.43812259380967, 34.58377663139818], [-77.4379473192555, 34.58350093226712], [-77.43781870483008, 34.58329862901395]], [[-77.43820054818349, 34.740724112391256], [-77.43798083763647, 34.740657385683114], [-77.43792705713703, 34.7406150103175], [-77.43784476556911, 34.740573657898025], [-77.43777537881347, 34.74050443629035], [-77.43777303037507, 34.74045606769641], [-77.43784146336452, 34.74032118987285], [-77.43793402759351, 34.740280349605364], [-77.43796877883463, 34.740155301482844], [-77.43806316363315, 34.74004595175969], [-77.43813582827511, 34.73985830347143], [-77.43814982052905, 34.73979671221542], [-77.43817251361611, 34.73974039761973], [-77.43826464218361, 34.73967666594258], [-77.4383279639996, 34.73962046541572], [-77.43846941161965, 34.73962885720699], [-77.43854566435769, 34.73960220734299], [-77.43859833294084, 34.73963142735726], [-77.43862588662992, 34.73965384796533], [-77.43862789647181, 34.739684229481256], [-77.43860399253626, 34.73969747574647], [-77.4386087497543, 34.739817297782736], [-77.43851962167857, 34.73990342963488], [-77.4384957376815, 34.739894493109155], [-77.43843748053995, 34.73989721684539], [-77.43846593197128, 34.74008896386812], [-77.43844524531852, 34.74017561873616], [-77.43844477423117, 34.74017928108177], [-77.43844438392144, 34.740184448292986], [-77.43842963240841, 34.74031374869011], [-77.4384104219665, 34.740413349987605], [-77.43840635722651, 34.740445374627285], [-77.43836530977464, 34.740655373633246], [-77.43837684316391, 34.74071457875888], [-77.4383903230447, 34.740843813892354]], [[-77.22939400891362, 34.59720950079052], [-77.23012977542817, 34.59708672386418], [-77.23048893772679, 34.59739073543547], [-77.23057875487117, 34.59750095159125], [-77.23063536293446, 34.59775348856646], [-77.23078854876432, 34.59788573519664], [-77.2309290317086, 34.59810462643412], [-77.23093498548383, 34.59818767963143], [-77.23083540398416, 34.59836079012922], [-77.2306427178487, 34.59858510006263], [-77.23041026837681, 34.59879860232549], [-77.23000790549082, 34.5989925307133], [-77.2294845756984, 34.598869579938366], [-77.22917490391697, 34.59897228205811], [-77.22830031086848, 34.59863208985038], [-77.22885311413401, 34.59830772448151], [-77.22879408170598, 34.59819970301536], [-77.22874842043535, 34.59818577860524], [-77.22879915900357, 34.598049129831], [-77.22876078511575, 34.59772571557704], [-77.22870216055924, 34.59746835519225], [-77.22893895327212, 34.59706914466365], [-77.22940016173958, 34.59683345784202], [-77.22941579738458, 34.596831481657766], [-77.22941912915736, 34.59683495475752]], [[-77.43131197623893, 34.5009404527302], [-77.4312947441947, 34.50097121022051], [-77.43126373665322, 34.50108859706034], [-77.43121711132915, 34.50123054608718], [-77.43070841490825, 34.5012474289431], [-77.43065378590413, 34.50125380868481], [-77.43061967727306, 34.50125037396259], [-77.43061755157888, 34.50123619670112], [-77.43060765502696, 34.501151810069096], [-77.43057945424871, 34.50092060845379], [-77.43074231444277, 34.50091138959156], [-77.43108579703967, 34.50086965018063], [-77.43120090452216, 34.50085853909677]], [[-77.45178773456348, 34.47923435189524], [-77.45169021353468, 34.479396155432745], [-77.4514848818456, 34.479675645719894], [-77.45112315116415, 34.480133318549655], [-77.44968996170718, 34.47958431899598], [-77.4497523039908, 34.479514983477344], [-77.45016868416003, 34.47925079567786], [-77.45075352958361, 34.47899185745317], [-77.45080494257809, 34.47896889379946], [-77.45084657004259, 34.47898616498673]], [[-77.43686988759859, 34.49696190832504], [-77.43672403430672, 34.4970746218378], [-77.43661184710353, 34.497157514313216], [-77.43566842024079, 34.497493361822016], [-77.43544103298522, 34.49763929534056], [-77.43505103535844, 34.49775347332759], [-77.43446010148044, 34.49799977856732], [-77.43342417342382, 34.49784727437343], [-77.43307964900359, 34.49787600558339], [-77.43280630234509, 34.49776026100044], [-77.43238745708183, 34.497617627651586], [-77.43259546254613, 34.49744447413155], [-77.43290882610306, 34.49725056038875], [-77.43326681738236, 34.49658252558262], [-77.43403788098834, 34.496453961297505], [-77.43413120636166, 34.496408539816926], [-77.43455826628549, 34.4963772765761], [-77.43481078821685, 34.49614471847186], [-77.43530343510487, 34.49615715739802], [-77.43623338101392, 34.495970616422724], [-77.43658468555941, 34.49591784444056], [-77.4367038922767, 34.495876593115874], [-77.43693867774631, 34.49582310776311], [-77.43784992415955, 34.495619930700855], [-77.43864389439429, 34.49591001959192], [-77.4386431613966, 34.496224991957874], [-77.4386730109926, 34.49624927130742], [-77.43863974857568, 34.4962795186274], [-77.43832875704184, 34.49656949253689], [-77.43827015377879, 34.49663782047956], [-77.43814714360062, 34.49670792808856], [-77.4375865450095, 34.49682955171765]], [[-77.39363079197497, 34.50867023731463], [-77.39399422215114, 34.50880684053356], [-77.39481187093611, 34.50892765223408], [-77.39497350220829, 34.50951509128521], [-77.39506164379368, 34.50963211338403], [-77.3949299177119, 34.50980401050711], [-77.39479947035049, 34.51015962515281], [-77.3945878214863, 34.51032076938336], [-77.3943796217369, 34.510271035284696], [-77.39400452895622, 34.510505102871086], [-77.39398170127845, 34.51051558644195], [-77.39397641627758, 34.51052002061047], [-77.3939730629366, 34.51052373973138], [-77.39378331054291, 34.51061250359337], [-77.39369799392637, 34.510632914444514], [-77.39358540922727, 34.510687643025676], [-77.39335436339995, 34.510714090192636], [-77.39292375142175, 34.51084100657331], [-77.39279689238066, 34.51085079875686], [-77.3926684032678, 34.51087707311659], [-77.39220928125081, 34.510899389475455], [-77.39201115430443, 34.51089037659268], [-77.39127782402888, 34.510697308862866], [-77.39123092757559, 34.51068520990481], [-77.391205229695, 34.51069426182347], [-77.39114416673364, 34.510687167691025], [-77.3911636063819, 34.510641749707254], [-77.39123302192067, 34.510592225482554], [-77.39133367562071, 34.510227830093385], [-77.39135532907785, 34.51016702737891], [-77.39143323793766, 34.50977961333878], [-77.39157568075684, 34.50944785153089], [-77.39129350286034, 34.5091966112903], [-77.39132322108694, 34.50873279957292], [-77.39206186906483, 34.50863782511237], [-77.392797964614, 34.50852185255509]], [[-77.45416684912878, 34.680177778309414], [-77.45417579953137, 34.680224148845404], [-77.4542850856092, 34.680354792903245], [-77.45454450581684, 34.680294700506906], [-77.45477392169751, 34.68021859763704], [-77.45488642709714, 34.68011960069752], [-77.4548052115297, 34.680044747580105], [-77.45477490434165, 34.680013173998795], [-77.45469167013034, 34.679918569661424], [-77.45456360891305, 34.67981412632391], [-77.45454663574897, 34.679749185633106], [-77.45450051083867, 34.679675032430296], [-77.45441524464253, 34.679538182917206], [-77.45418697598393, 34.67948243504658], [-77.45401137580947, 34.679194383098576], [-77.45397923673373, 34.679156486295774], [-77.45392127796944, 34.679162891274764], [-77.45391878340985, 34.679189613656305], [-77.45393805478588, 34.67920680678461], [-77.45395542761625, 34.67954843275784], [-77.45406483536505, 34.67983243757876], [-77.45409761625507, 34.679877169178894], [-77.45410644570612, 34.679915506998164], [-77.45414201993586, 34.680049145000815]], [[-77.30193360796103, 34.55411214942524], [-77.3021697021557, 34.55433828464776], [-77.30168785645, 34.55452022184888], [-77.30157475484525, 34.55466846522534], [-77.30150967428933, 34.5546818824628], [-77.30150117518946, 34.55476490679849], [-77.30138822234628, 34.55481763484232], [-77.30131237482829, 34.55483423023628], [-77.30130327064677, 34.5548318092859], [-77.30129511671426, 34.55483601674594], [-77.30128900558103, 34.554822846265964], [-77.30142513090591, 34.55468993549489], [-77.301314064096, 34.554580435824406], [-77.30127813807889, 34.55446622137373], [-77.3011380248252, 34.55425237838926], [-77.30151833120078, 34.55403730851118]], [[-77.41128594386556, 34.671232877546004], [-77.4113686641548, 34.671244979973295], [-77.41159328838086, 34.67127784371179], [-77.41166631632643, 34.67127391024918], [-77.41178167811239, 34.67117250575781], [-77.4120283342985, 34.67088174050331], [-77.41204746807543, 34.67085918512677], [-77.41205466191828, 34.67085070472358], [-77.41207052454388, 34.67083200522312], [-77.4123132563974, 34.6705458639021], [-77.41242038075785, 34.6704195806238], [-77.41244614955552, 34.670389203164405], [-77.412514686916, 34.67030840778635], [-77.412579042469, 34.67023254223674], [-77.4126102901139, 34.67020648599958], [-77.4127348840983, 34.67011342447485], [-77.41275235326736, 34.67010116553619], [-77.41287074886216, 34.67001808180417], [-77.41266715700411, 34.66978177007155], [-77.41256941927755, 34.66991262437998], [-77.41251662810578, 34.669976348009286], [-77.4125192823065, 34.670034856694706], [-77.41246841116424, 34.67005155811201], [-77.41242391550082, 34.670068671868236], [-77.41231748198683, 34.67010401046551], [-77.41230583091394, 34.67015965221829], [-77.41223633269232, 34.67016332359076], [-77.41213337092867, 34.67025158406908], [-77.41205724389854, 34.67029249103288], [-77.41203078038838, 34.67083188529701], [-77.41196923464513, 34.67082080705194], [-77.4115375202088, 34.670773078251855], [-77.41143318914645, 34.67072431878211], [-77.41120363961112, 34.67083242296118], [-77.41112900516278, 34.67085290907022], [-77.41107104790558, 34.670868616138925], [-77.41098329280432, 34.670839292075264], [-77.41076508009556, 34.67081889971102], [-77.41022093084003, 34.67076804582452], [-77.41067584294008, 34.67112710020923], [-77.41086071996935, 34.67116215153952], [-77.41097411085457, 34.67120341430478], [-77.41114475034965, 34.671218272381466]], [[-77.38756081132452, 34.624317282438696], [-77.38744669424513, 34.624461455431685], [-77.38737661657774, 34.62455611467491], [-77.38756527470635, 34.624588030407814], [-77.38764301458285, 34.624517717412616], [-77.38771299954371, 34.624454418445566], [-77.3877624194566, 34.624380388047115], [-77.38785479637765, 34.62427490834089], [-77.3878249838084, 34.62413426349079], [-77.38780230759482, 34.62402728629488], [-77.38772981846081, 34.624045477999104], [-77.38756531494562, 34.62430764277782], [-77.38756259292033, 34.62431409514445]], [[-77.42422251055567, 34.527455277796484], [-77.42413943193223, 34.52727242294422], [-77.42414605979837, 34.526976642645735], [-77.42421252436861, 34.52673400422403], [-77.4242105950252, 34.52670910972329], [-77.42417032901128, 34.52648344739943], [-77.42419548188592, 34.52645349550996], [-77.42423514340013, 34.52623383892502], [-77.42421657441747, 34.52623191825617], [-77.42385419389183, 34.526046022341475], [-77.42374515633527, 34.526300068597074], [-77.42366296592589, 34.52644298016405], [-77.42345455099549, 34.52658692182718], [-77.42305043388652, 34.526894757495995], [-77.42284179323443, 34.527036997553026], [-77.42265249461656, 34.52714085789498], [-77.42258812999636, 34.527201855244], [-77.42241397821579, 34.52732563394833], [-77.42235085633345, 34.527420458165864], [-77.42230213492178, 34.527488039141545], [-77.42230375507313, 34.52752034046627], [-77.42227944479373, 34.52771608756099], [-77.422310944918, 34.52773160869001], [-77.42232061221732, 34.52777680516503], [-77.42230623587571, 34.528178796665856], [-77.42237238754846, 34.528212413121196], [-77.42235202502445, 34.52862710723736], [-77.42243152698151, 34.528823795757376], [-77.42251548110687, 34.52917110133022], [-77.4226683445808, 34.52935340291853], [-77.42280844178302, 34.530000049915934], [-77.42285857096469, 34.5301008808014], [-77.42291187728466, 34.53013486761327], [-77.42297848711027, 34.530145121515886], [-77.42313710447621, 34.53015976492246], [-77.42414566191553, 34.5301658318659], [-77.42454855601393, 34.53014302131445], [-77.42483443187417, 34.53012683453029], [-77.4249901774301, 34.53006717282531], [-77.42502180853785, 34.530033007609376], [-77.42520620783831, 34.52992388083009], [-77.42523026764769, 34.52982682505207], [-77.42519039091071, 34.529763791743996], [-77.42514814016263, 34.52964739583987], [-77.4250097555902, 34.52951092908516], [-77.42476799335925, 34.52933516930195], [-77.4245734691705, 34.5290165436118], [-77.42446790832831, 34.52895555510424], [-77.42447937589509, 34.52888720662214], [-77.42448226288525, 34.52882728301122], [-77.4244049301043, 34.528520264198704], [-77.42418640112177, 34.52843987254097], [-77.42417483914082, 34.5282116303782], [-77.42419784695196, 34.5279485305967], [-77.42442153706156, 34.52780469654398], [-77.42441762561376, 34.52754459645645]], [[-77.24032737272962, 34.60193523302069], [-77.24032633754483, 34.60194058754214], [-77.24033335765634, 34.60240930514684], [-77.24017789091255, 34.60272593826533], [-77.24024435001613, 34.60287364061778], [-77.2402980290318, 34.6030483611394], [-77.240216364559, 34.60315754994233], [-77.24000861524317, 34.60315667037056], [-77.23975474114334, 34.60305831720733], [-77.23922867562165, 34.60308116573647], [-77.23957701824574, 34.60258883143521], [-77.23969899529864, 34.60235930266478], [-77.2403067731128, 34.601942942218365], [-77.2403183909576, 34.601933518788336]], [[-77.30139592424379, 34.559228739896824], [-77.30155185510964, 34.55932306936577], [-77.30157799627145, 34.55943587267879], [-77.30138510285069, 34.55968769612532], [-77.30085216203992, 34.55942346446611], [-77.30116797488728, 34.55923614960457]], [[-77.30819996521298, 34.54857661068935], [-77.30923937884594, 34.54826052937229], [-77.30919823295503, 34.547655438721634], [-77.30864984737366, 34.54797337288488], [-77.30792842865986, 34.54860398778254], [-77.30788915893957, 34.54859663750701], [-77.30780971006398, 34.54863263550635], [-77.30792728053983, 34.548652834816515]], [[-77.3997869251106, 34.58153733290659], [-77.39965349061919, 34.581390024847956], [-77.39964963000317, 34.58068939935768], [-77.39970564100454, 34.58053335203984], [-77.39973564936335, 34.58047373769072], [-77.39978695675288, 34.58042084083459], [-77.39986324202519, 34.580428409890835], [-77.40018098092344, 34.58022963175154], [-77.40030813318698, 34.58015885216853], [-77.40037799191909, 34.58015168037623], [-77.40053446557914, 34.58003286303701], [-77.40057500401016, 34.57999881565206], [-77.40059643626404, 34.580003333643916], [-77.40077201143686, 34.58007409637184], [-77.40085803091714, 34.58006208748901], [-77.40096901976929, 34.58011187199102], [-77.40120487088632, 34.58031701473497], [-77.40130315538443, 34.580367354755154], [-77.40136303461733, 34.58041568026265], [-77.40150914446357, 34.580540239401344], [-77.40167632364091, 34.58067355569665], [-77.40170462120338, 34.580725968690444], [-77.40212903904002, 34.58103279924656], [-77.40173660327049, 34.58149197628291], [-77.40170529168658, 34.58151852555468], [-77.40153964448646, 34.58173274579634], [-77.40136302209288, 34.5817499484288], [-77.40120616054405, 34.581759576227945], [-77.40113070744194, 34.58177569023309], [-77.4009689937767, 34.581949665424496], [-77.40069909737639, 34.58195454337474], [-77.4005749666859, 34.58197447437691], [-77.40043797891266, 34.581849012837566], [-77.40022809418629, 34.58173168789163], [-77.40019840622253, 34.581717157486594], [-77.40018094601739, 34.58170592271367], [-77.39995205416227, 34.58152487565597]], [[-77.35793996979561, 34.53619987357609], [-77.35799963364516, 34.53603060075544], [-77.3578857498401, 34.53592407343652], [-77.3578543590476, 34.53556187258815], [-77.35778844847488, 34.53551496864231], [-77.35770289271554, 34.53530255094485], [-77.35763062657674, 34.53515166897103], [-77.35758413528258, 34.535111136134816], [-77.35754993826892, 34.5350165783528], [-77.35741824393408, 34.53464537601481], [-77.35763074006503, 34.53418608712983], [-77.3576566231088, 34.53407500331908], [-77.35800418469692, 34.53390343787362], [-77.35852430338142, 34.53371702591267], [-77.35865688035014, 34.53356828260963], [-77.35882447345162, 34.53346358592563], [-77.35932802059772, 34.53290298722039], [-77.35932959693639, 34.532902168250715], [-77.35933030150393, 34.532901095320774], [-77.35932982765131, 34.53290007803866], [-77.35947654246453, 34.53239038420809], [-77.35964475877992, 34.53206205482796], [-77.35961248361491, 34.531881160627194], [-77.359827753029, 34.53155768105131], [-77.35994593003775, 34.5313434907268], [-77.35999440303073, 34.53123872549086], [-77.36008614185533, 34.53083364934707], [-77.360163165635, 34.530715055152], [-77.36032721932459, 34.53079892904634], [-77.36065983146548, 34.53092785873593], [-77.36093880432831, 34.531126458348446], [-77.36097030374994, 34.53117561079293], [-77.36098318674071, 34.53119410324505], [-77.36133167338876, 34.53138483687015], [-77.36133494852692, 34.5313882644928], [-77.36134712248955, 34.53140026630836], [-77.36143959869217, 34.531544524766836], [-77.36135795676451, 34.5316297752728], [-77.36137172120873, 34.53166060435928], [-77.36131699003099, 34.531753473984175], [-77.36125045017221, 34.53184995878307], [-77.36122411417882, 34.53189387701222], [-77.36110235477526, 34.53202626022686], [-77.36101090601352, 34.532110399623676], [-77.36093418761446, 34.53218045874235], [-77.36093047223642, 34.53219098625348], [-77.36091430697424, 34.5321972908133], [-77.36058795189325, 34.53252104428523], [-77.36029222966948, 34.53276256315964], [-77.36023164218818, 34.53284439253129], [-77.36025615019145, 34.53316445076885], [-77.36022965803723, 34.53326122339146], [-77.36026265618361, 34.533356223312744], [-77.36023648771715, 34.53366209182558], [-77.36026521480846, 34.533745751441145], [-77.360225555097, 34.533834907585856], [-77.36028607172014, 34.53398757201405], [-77.3603641270382, 34.53404823959154], [-77.36032397563184, 34.53413117031576], [-77.36029658852424, 34.53423088190068], [-77.36027779353236, 34.534282408886966], [-77.36022826664922, 34.53433296569231], [-77.36022816399829, 34.534392529969054], [-77.36017616616415, 34.53449304888299], [-77.36015839634375, 34.5345473347639], [-77.36014030779474, 34.53462062527281], [-77.36009374216188, 34.53473565290871], [-77.36009021190047, 34.53475025196896], [-77.36008507746274, 34.53476002589068], [-77.36006994227861, 34.53478840867773], [-77.36003392313958, 34.53485931803145], [-77.36000617778474, 34.534884766190835], [-77.35996296612156, 34.53494897383149], [-77.35983837144425, 34.5350313444474], [-77.35977541695124, 34.53510607863669], [-77.35974872158238, 34.535289079286414], [-77.35972881998542, 34.5353317737027], [-77.35966116786645, 34.53549743443589], [-77.35958090202196, 34.535508164093095], [-77.35956455132502, 34.53556042577412], [-77.35960638883016, 34.535587282656294], [-77.3595126352271, 34.53572331450618], [-77.35950437457731, 34.53581391592894], [-77.3594963252615, 34.53591196557695], [-77.35948527364386, 34.53593907866325], [-77.35948128605823, 34.535956429649644], [-77.35933128058812, 34.536083666719904], [-77.35934407648594, 34.53626857643659], [-77.35938293045822, 34.53632105277912], [-77.35943343198672, 34.536429883501164], [-77.35943474214652, 34.53644133199967], [-77.35944214741889, 34.53649104957084], [-77.35945356062595, 34.536547777708], [-77.35945715813348, 34.53655518767377], [-77.35944775435591, 34.53656103802744], [-77.35944031534132, 34.53657107890481], [-77.35937896643452, 34.53665175002334], [-77.35931094451375, 34.53677640836989], [-77.35926404943584, 34.53682782047282], [-77.35926433823087, 34.536844340861606], [-77.35923621497051, 34.53691280884169], [-77.35921743746553, 34.53695694483681], [-77.35921929242558, 34.536966465611485], [-77.35919076735333, 34.537056910831055], [-77.35916452148415, 34.53708697691782], [-77.35907991292072, 34.53719264541472], [-77.35904591011308, 34.5372347921468], [-77.3590008710067, 34.53725246914343], [-77.35883606212309, 34.53724461294716], [-77.35860141961413, 34.53731341962915], [-77.35844152468093, 34.53733110761522], [-77.35829614528836, 34.537366687010994], [-77.35820137496609, 34.53747049327751], [-77.35804296583595, 34.5375931012334], [-77.35786208848828, 34.53751934841644], [-77.35777352388646, 34.537457259022204], [-77.35765893951447, 34.53722075113962], [-77.35758379379247, 34.537118105587474], [-77.357596510285, 34.53702622740834], [-77.35789135665274, 34.53653583742108]], [[-77.34551038155473, 34.57465290360756], [-77.3454154658208, 34.57463734181519], [-77.34523043071997, 34.574596048082896], [-77.34521849121806, 34.57459824143785], [-77.34521176184367, 34.57459312482152], [-77.34519136152122, 34.574588804363586], [-77.34502151919665, 34.574555660502], [-77.34492618074569, 34.57462694743203], [-77.34502134021587, 34.574815247623725], [-77.34502358589324, 34.57482278436586], [-77.34502545596534, 34.57482494073326], [-77.34521825945002, 34.57493558062584], [-77.34528512781273, 34.574927816587284], [-77.34541522725024, 34.57498579491529], [-77.34559774688972, 34.575167168042974], [-77.34572205714882, 34.575243029813535], [-77.34613488977489, 34.57551444915254], [-77.34617156496353, 34.57554289441395], [-77.34620282870944, 34.57558957508625], [-77.34634043619926, 34.57563318651104], [-77.34659674182242, 34.57573001776215], [-77.34683507398826, 34.57558157611457], [-77.34699090009319, 34.575503826560016], [-77.34709956253668, 34.57549275763263], [-77.34710914569732, 34.57537430207782], [-77.3470792825853, 34.575283522332526], [-77.34699113049182, 34.575157606858646], [-77.34672331579131, 34.57486949359222], [-77.34659728376543, 34.574921306953094], [-77.3464547320427, 34.57489026965814], [-77.3462033399174, 34.57483214998077], [-77.34601819290467, 34.57488160595291], [-77.34581308062205, 34.57471164807975], [-77.34581036346587, 34.57471102077833], [-77.34580941861961, 34.57471093740942]], [[-77.45166910326614, 34.60993362986566], [-77.45148482207296, 34.60996657594899], [-77.45143179727569, 34.609850599066945], [-77.45161151309675, 34.609811662813954]], [[-77.3422149937771, 34.55103301598971], [-77.34211970223399, 34.55099148154969], [-77.34203331459481, 34.55089599003445], [-77.3419295770353, 34.550893966188724], [-77.34183866970423, 34.55084232854627], [-77.34174910273035, 34.550674807854655], [-77.34177685712035, 34.550606400937184], [-77.34194608289178, 34.55039879385333], [-77.34188775808019, 34.550245501379976], [-77.34180106817976, 34.550113281279025], [-77.34197373815019, 34.54989518698975], [-77.3420267793308, 34.54981637373436], [-77.3419453324189, 34.54960289312784], [-77.34206493920716, 34.54952666038217], [-77.34217107637643, 34.54938981425687], [-77.34234513895527, 34.54937287782154], [-77.3424603303672, 34.54940657677132], [-77.34257035503143, 34.54944384321027], [-77.34277979229819, 34.54948285851151], [-77.34323691103877, 34.54978154665218], [-77.34339563956308, 34.54978488114608], [-77.34346378506964, 34.54987410230626], [-77.34349047955821, 34.5500319790546], [-77.34367904724569, 34.55033277363545], [-77.343645762612, 34.550561042053886], [-77.34369274269766, 34.5508204417131], [-77.34341939644227, 34.550990957752], [-77.34320692164609, 34.55108086786586], [-77.34316682465713, 34.55111642615146], [-77.34300963690714, 34.55112297699365], [-77.34297154729424, 34.551145582229125], [-77.34286017721416, 34.55115534694886], [-77.34281276293875, 34.55114728293187], [-77.34271842134935, 34.55114658305553], [-77.34255376115512, 34.55114580590652], [-77.34242060788034, 34.551126891305124], [-77.342287169533, 34.551106136977644]], [[-77.32142540502701, 34.69810749228493], [-77.32172642204168, 34.69808145344487], [-77.32202710262608, 34.698031073216946], [-77.32205828436092, 34.69825964890952], [-77.32225215903301, 34.69833235834737], [-77.32250052920561, 34.69845515865072], [-77.32274576144191, 34.698652803850564], [-77.32275554431212, 34.698660150652366], [-77.32335648825867, 34.69858504606643], [-77.32331555191465, 34.69879319594938], [-77.3234598872018, 34.698634991069966], [-77.32342664026194, 34.69855949314464], [-77.32340542522633, 34.69854740941132], [-77.3233879936866, 34.69854402569324], [-77.32298524035748, 34.69808237777936], [-77.3229331121188, 34.69804939974809], [-77.32272953187372, 34.69788494573004], [-77.3226557565265, 34.69769040632116], [-77.32261382558951, 34.6975798398349], [-77.32253295133722, 34.697366577928605], [-77.32246819069245, 34.69729775384191], [-77.32248006458727, 34.69722711794004], [-77.32232981790162, 34.69703567677347], [-77.32231676691744, 34.697020119974596], [-77.32227691503404, 34.69701127479112], [-77.32205036169654, 34.69696729027977], [-77.32182295002333, 34.69700581300425], [-77.3216214808343, 34.6970044272669], [-77.32140243307299, 34.697136678883204], [-77.32093820868434, 34.697292148517704], [-77.32046671569395, 34.69725715977839], [-77.32006872904806, 34.697960820886784], [-77.32014902739067, 34.69803390607915], [-77.3205519400366, 34.6980027205975], [-77.3209678308982, 34.698057540375615], [-77.32114010774286, 34.69803890040675]], [[-77.3187450530614, 34.698039924468624], [-77.31883656873823, 34.6981202255365], [-77.31925358450898, 34.69809662370441], [-77.31935063527027, 34.69801622480352], [-77.31989642061596, 34.69802831255078], [-77.32000141185084, 34.69722442364621], [-77.31993384026453, 34.69708866236495], [-77.31968740207687, 34.69707182901822], [-77.31962724149379, 34.697064961067], [-77.31952045769363, 34.69700317522878], [-77.31945830436345, 34.69700120212434], [-77.31934522646328, 34.69700537445535], [-77.31924588296677, 34.697017292706555], [-77.31910443140028, 34.69695862313046], [-77.31906117817948, 34.69695278072957], [-77.31875963344581, 34.69699715392498], [-77.31870589162736, 34.69697230722019], [-77.31844242588095, 34.69702179497865], [-77.31806809676073, 34.69713488112792], [-77.31779521718076, 34.69718865898932], [-77.31765848444522, 34.69732025218704], [-77.31758937660784, 34.69740987585501], [-77.3174901059991, 34.697579361352894], [-77.31738547641112, 34.697925172991965], [-77.31755769536684, 34.69800544459881], [-77.31794905480018, 34.69801457828369], [-77.31845718981631, 34.69802872360249]], [[-77.43137952285468, 34.58367689003583], [-77.43205231685087, 34.583552703491954], [-77.43209743791708, 34.58357105679947], [-77.43243117702549, 34.58387391157691], [-77.43244008573667, 34.583928129554316], [-77.43259078839375, 34.58427542787469], [-77.43209789049091, 34.58482286381752], [-77.43180442413427, 34.58470528536757], [-77.43170382666395, 34.584739765093936], [-77.43153375660927, 34.584669592545076], [-77.43130975525408, 34.584632953148315], [-77.43116967563306, 34.58463180576552], [-77.43102745308849, 34.584501422320116], [-77.4310603987633, 34.58422811843804], [-77.43101665110387, 34.58407839391242], [-77.43130943704313, 34.58372902414532]], [[-77.34308856044365, 34.684193490069255], [-77.34311578391194, 34.684215349048266], [-77.34322027536616, 34.68423867926381], [-77.34339567819734, 34.684282080106776], [-77.34346969153346, 34.6842943672883], [-77.34367931448742, 34.68432655572384], [-77.3436262996448, 34.68417385494166], [-77.34366701537135, 34.68408677089206], [-77.34361646099981, 34.68403711832782], [-77.3435928245783, 34.68400253328666], [-77.34356626286458, 34.68397875312433], [-77.34350036323258, 34.68392163784188], [-77.3434399039977, 34.683923127035854], [-77.3433769250619, 34.68388289207748], [-77.34325139761373, 34.683748420760026], [-77.343130501256, 34.68376705511899], [-77.34305174136281, 34.68368382838325], [-77.34274613400058, 34.683668669086195], [-77.34270778228934, 34.68355928678017], [-77.34247451536123, 34.683483522686565], [-77.34227516989806, 34.68340060440674], [-77.34216806071542, 34.683356753467564], [-77.34209515568921, 34.68338128289806], [-77.3420731121553, 34.68333074494201], [-77.34163557186612, 34.68312932381205], [-77.34094917073799, 34.68347479751559], [-77.34111132483733, 34.68297534342211], [-77.34108401288063, 34.68296755725083], [-77.34076823787294, 34.68302241922693], [-77.34046602275674, 34.68307299132759], [-77.34038506859187, 34.68331319657311], [-77.3402827780612, 34.68357640566077], [-77.34030797364332, 34.683578609454585], [-77.34092953376951, 34.683489907908005], [-77.34093257106097, 34.683488937194895], [-77.34093505290619, 34.68348892508338], [-77.3414362502975, 34.68349415085878], [-77.34152932375216, 34.68349512119853], [-77.34173970479874, 34.68365480118842], [-77.34192267332267, 34.683726371367264], [-77.34205948440662, 34.68373057401758], [-77.3420956075493, 34.6837750928088], [-77.34215480024768, 34.68380691285767], [-77.34228399214749, 34.68398799242899], [-77.342341098085, 34.68398034606604], [-77.34257682183406, 34.684010183789724], [-77.34269586734412, 34.68410150947088], [-77.34298474462963, 34.684180400166156]], [[-77.42455697870642, 34.51922759438146], [-77.42375014382156, 34.51953375872177], [-77.42321481676007, 34.51946873782892], [-77.42291465994126, 34.51950640680869], [-77.42219654374833, 34.51977176456776], [-77.4221336725549, 34.52009836467772], [-77.42214334986733, 34.52041054157192], [-77.42240336446874, 34.520667177344336], [-77.42259076009768, 34.52071793954438], [-77.42317907009793, 34.521083555900546], [-77.42333349405375, 34.521121009173285], [-77.4233524636913, 34.52121512410448], [-77.42342709862703, 34.52136292756338], [-77.42369206523759, 34.52181526096479], [-77.42423297954852, 34.52175458606433], [-77.4242069177942, 34.52158128356382], [-77.42454228222982, 34.52140836584574], [-77.42460719439131, 34.52112162020403], [-77.42443028175961, 34.52105930344453], [-77.42446438895317, 34.520873969300844], [-77.42476479352777, 34.52036597630032], [-77.42486100885361, 34.52001765467142], [-77.42496452180748, 34.51988472338775], [-77.42478933833303, 34.51925625321415]], [[-77.41297641748099, 34.66949594781161], [-77.41281916684628, 34.66962693822542], [-77.41293142640754, 34.66997550137082], [-77.41321492880301, 34.66977655345934], [-77.41340236640957, 34.66964501736345], [-77.41353495520315, 34.66955197211834], [-77.41377412703493, 34.6692777964017], [-77.4138035258511, 34.66924321596244], [-77.41381217191588, 34.669229323200774], [-77.41382623421389, 34.669206727495194], [-77.41395503685743, 34.66899976482995], [-77.41387636710878, 34.66892463299791], [-77.41360290231607, 34.66885356597461], [-77.41356409024417, 34.668851523225754], [-77.41354962454534, 34.668857883288425], [-77.41335472497599, 34.66888307619601], [-77.413265485828, 34.668994358164156], [-77.41323859031158, 34.66902858695273], [-77.41323314209535, 34.66905823430231], [-77.41318536345102, 34.66909837065098], [-77.41307028717816, 34.66924924249924], [-77.41300887128043, 34.66943946296349]], [[-77.32388482281738, 34.69889438252342], [-77.32371799718307, 34.698863912562956], [-77.32359788583483, 34.69885170588544], [-77.32329698669845, 34.69906462791274], [-77.32352372106119, 34.69910680462239], [-77.32377906820845, 34.69904823733176], [-77.32384199819188, 34.69904168514742], [-77.32401683960528, 34.69912895740586], [-77.32400598054656, 34.69887372078595]], [[-77.45419799971383, 34.68219185619315], [-77.45420243951686, 34.68223727730265], [-77.45404483324924, 34.68231532964994], [-77.45404417575769, 34.68232616706742], [-77.45404596114041, 34.68233765364505], [-77.4541332010493, 34.68249257935779], [-77.45414756091625, 34.682506207464805], [-77.45415530472694, 34.68251355664981], [-77.45438595833919, 34.68262986326656], [-77.45459940668059, 34.68293502335378], [-77.45463957671541, 34.68305491787491], [-77.45473486632474, 34.68337701816928], [-77.45498124460653, 34.683627477725565], [-77.4549573778141, 34.68417229578865], [-77.45524898702934, 34.683721052710325], [-77.45537370038451, 34.68336539623036], [-77.45549607119456, 34.68305911463231], [-77.45536959127789, 34.68264520154662], [-77.45580490597389, 34.682575015301005], [-77.45599239252812, 34.68230387078852], [-77.45605070724648, 34.6822291717932], [-77.45610582779474, 34.681911582232686], [-77.45597129864758, 34.68173749971229], [-77.45579598311163, 34.68150892052644], [-77.45531880912452, 34.68150945381571], [-77.45517654790655, 34.68154832917679], [-77.45505114616057, 34.681630862386676], [-77.45464887173132, 34.68183430707893], [-77.45453949383577, 34.68200236202905], [-77.454270614817, 34.68211458722051]], [[-77.46623903941274, 34.476326287760536], [-77.46627492615687, 34.47637409007864], [-77.46625512217207, 34.47638510147835], [-77.46619765479332, 34.476370167893016]], [[-77.40223216468122, 34.510085313376976], [-77.40299607577667, 34.51044527814009], [-77.40300202225585, 34.51044868917897], [-77.40283489066444, 34.51085536233978], [-77.40251797774692, 34.511003991903166], [-77.40232612055235, 34.51110455634469], [-77.40212246129954, 34.511115162259685], [-77.40210563131286, 34.51106353526323], [-77.40194278034073, 34.5109181341615], [-77.40179071168157, 34.51061933427988]], [[-77.40845435725132, 34.56593303316731], [-77.4081169637475, 34.56621834768005], [-77.40807586136414, 34.566587930359944], [-77.4080097323064, 34.56707674414075], [-77.40794246595411, 34.56745634856375], [-77.40795787429289, 34.56776808041001], [-77.40794776790997, 34.56788016215545], [-77.40801449921982, 34.56792013355782], [-77.4082013889958, 34.56799534840722], [-77.4084544931367, 34.56801554951341], [-77.40853529960438, 34.568132834061956], [-77.40864920886341, 34.56820346608686], [-77.40924243511333, 34.56832618608454], [-77.40939521689171, 34.56826041402943], [-77.40963638806745, 34.568231725044555], [-77.40985230018515, 34.568221638467264], [-77.41003034576559, 34.56820392801012], [-77.41038940141112, 34.56833914816698], [-77.41042431757009, 34.56833696930027], [-77.41075982235462, 34.56789870972908], [-77.41066102660643, 34.56774356131953], [-77.41051586563898, 34.5674106028052], [-77.41031436220379, 34.567113873812964], [-77.41042302909501, 34.56667237237964], [-77.41085756905431, 34.5661862717638], [-77.41025666380297, 34.566028931300934], [-77.41003014331199, 34.56580033726641], [-77.40988706825888, 34.56563143984349], [-77.40958243272792, 34.56552124327357], [-77.40935114394345, 34.56543724451923], [-77.40897490858553, 34.56532087635143]], [[-77.34257412198124, 34.5274810243195], [-77.34257033185263, 34.527481641754584], [-77.34257034413457, 34.52747928491147], [-77.34257216061738, 34.52747775309539], [-77.3425743248574, 34.52747224121689], [-77.34263885550959, 34.52734701820222], [-77.34267696609614, 34.52728038082849], [-77.3427763506977, 34.52722248170422], [-77.34290734213198, 34.52722662704501], [-77.3429721563021, 34.5272420170404], [-77.34301264701142, 34.527293237836055], [-77.3429969971616, 34.52740012790553], [-77.3430271470297, 34.52741356111757], [-77.34299322966694, 34.52743435552121], [-77.34296745899167, 34.52744541857907], [-77.34292721471809, 34.52745293223842], [-77.34277031596358, 34.52748376939897], [-77.34257872094578, 34.52748094703885]], [[-77.33545954643077, 34.62455798894787], [-77.33551928727282, 34.62461074474666], [-77.33584877821406, 34.624935279339624], [-77.33607563459036, 34.625030905592624], [-77.33624933046879, 34.6250584094506], [-77.33631257807963, 34.625164931383125], [-77.33652694203703, 34.62519069390973], [-77.33659660367563, 34.62519385860528], [-77.33688580154296, 34.625177926130945], [-77.33692283577844, 34.62522453831084], [-77.336942803151, 34.62517346844914], [-77.33722015815742, 34.625111282763264], [-77.33724487074849, 34.62509216030648], [-77.33736796716512, 34.62490324031163], [-77.33731320203944, 34.62433165543356], [-77.33715977578815, 34.624259847767256], [-77.33683096012342, 34.62413852643505], [-77.33669141028828, 34.62407228147792], [-77.33647337499143, 34.624067775857384], [-77.33636950029327, 34.62406309914753], [-77.33629105933234, 34.62405956734454], [-77.33603339968732, 34.62398325409187], [-77.33575689026554, 34.62396925787583], [-77.33563942612122, 34.623956223298094], [-77.33539830137519, 34.624008309857224], [-77.3353005148697, 34.624093022751424], [-77.33531080348544, 34.62431660990923], [-77.3353540436797, 34.6245076713779]], [[-77.2385457556734, 34.6036824496847], [-77.23863688338639, 34.603600670435604], [-77.23868745469127, 34.603693620080755], [-77.23857129171228, 34.603730217325875]], [[-77.38769940817745, 34.66000170987992], [-77.38771058970288, 34.66008676185127], [-77.38782782526454, 34.66004900648973], [-77.38792873830869, 34.660053388802886], [-77.38812691031083, 34.66004923402565], [-77.3883961893466, 34.65990580653391], [-77.38819507239187, 34.659814029252345], [-77.38799831377662, 34.65986509959213], [-77.38787728110032, 34.65987835300672], [-77.38776648659649, 34.65990959482615]], [[-77.39971680065541, 34.52970030348407], [-77.39990992709582, 34.529498466711026], [-77.39985084840791, 34.5292556373085], [-77.39944470779353, 34.52939747340486], [-77.39921755675704, 34.529457562975594], [-77.39890883627449, 34.52964297732945], [-77.39864973932274, 34.52984119675166], [-77.3983464536189, 34.53002725040534], [-77.39825216322276, 34.53006700806048], [-77.39804206716047, 34.530257763095705], [-77.39810381533385, 34.53040589348858], [-77.3981516264658, 34.530542838358016], [-77.39833982300468, 34.530520646225355], [-77.39863656177596, 34.53042879731933], [-77.39890209478459, 34.5302974145755], [-77.39943346877706, 34.52989884126852]], [[-77.45106906446901, 34.74196046368062], [-77.45086017036158, 34.741441645249935], [-77.4508176019331, 34.741262898589554], [-77.45084105016022, 34.74115546839187], [-77.45071713786292, 34.7409603298009], [-77.45066334121012, 34.74088084553459], [-77.45060736574209, 34.740794352113944], [-77.45049483964337, 34.7406204766809], [-77.45038542725726, 34.74055039647433], [-77.45037365909613, 34.7404332267863], [-77.45027327133033, 34.740278105952285], [-77.4502083898787, 34.74017784945986], [-77.45015126572967, 34.74007605156368], [-77.45006090021398, 34.739903942480346], [-77.44997968304689, 34.73982686568385], [-77.44983654274697, 34.7397255383709], [-77.44979767340413, 34.73970561490398], [-77.44954724104464, 34.73962689514661], [-77.44941927087694, 34.73961431045214], [-77.44918944043826, 34.73959170855263], [-77.44863727988823, 34.739494221823584], [-77.44861063154566, 34.73937607872969], [-77.4485729406607, 34.73896576973405], [-77.44844085492456, 34.738683341011246], [-77.44839834404686, 34.73862528190096], [-77.4482208823112, 34.73850684237676], [-77.44793613781255, 34.73844754095335], [-77.44790484929607, 34.73844002491059], [-77.44758585920606, 34.73848558095199], [-77.4472346331078, 34.738498300479456], [-77.44711421186189, 34.738643987208945], [-77.44684248504444, 34.73892033006202], [-77.44683335047603, 34.738932880179625], [-77.44669944014339, 34.739410041608444], [-77.44673528521938, 34.73944189413736], [-77.44722738363342, 34.73972485464541], [-77.44745004932147, 34.73969156280302], [-77.4477384954069, 34.73966342264278], [-77.44791270538718, 34.73957226133302], [-77.44818421973201, 34.739643740938526], [-77.44833639611481, 34.73961978428359], [-77.4485573911647, 34.73956014364619], [-77.44859536050959, 34.739567585977866], [-77.44903000471407, 34.739776758543016], [-77.44913018718415, 34.739796565851734], [-77.44926662273184, 34.739916179311734], [-77.44947706689807, 34.74003661884477], [-77.44966639676842, 34.74015948983517], [-77.44967457351089, 34.74017740948682], [-77.44968243581272, 34.74019180299749], [-77.44972323936052, 34.74038031423075], [-77.44982240835887, 34.740520192080886], [-77.44991299403559, 34.740747553726976], [-77.4500673448814, 34.74099008318436], [-77.45014674282022, 34.74109643496986], [-77.45018599655597, 34.74120618316319], [-77.45024222289875, 34.741493887371654], [-77.45024588183763, 34.74150149176389], [-77.4504956304256, 34.74172618694278], [-77.45076295284954, 34.74196669012136], [-77.45092294695793, 34.74211179679912], [-77.45084772963493, 34.74255529762579], [-77.45067438219573, 34.74296227453941], [-77.4506624737282, 34.74304959524322], [-77.45067699816488, 34.743107298597884], [-77.4507096395847, 34.74320316917555], [-77.45072647483909, 34.743309866476956], [-77.45080120956726, 34.74337754806281], [-77.45088932949879, 34.74346511952721], [-77.45107358450991, 34.743614066578154], [-77.45124322501388, 34.743575258823725], [-77.45127466668791, 34.74375074181363], [-77.45149205894975, 34.74389832100038], [-77.45174207444116, 34.744067465290094], [-77.45185474970077, 34.74414201002769], [-77.4520137457369, 34.74423665570771], [-77.45213139334157, 34.744286073652766], [-77.45229962068241, 34.74435673755484], [-77.45245684464614, 34.74437757380811], [-77.45288491520331, 34.74455007476402], [-77.45307015330846, 34.74444943877231], [-77.45295670786737, 34.74430183515426], [-77.45246481242297, 34.74414692748203], [-77.45237874638819, 34.7440831487086], [-77.4521629710334, 34.74382646183915], [-77.45198618172944, 34.74351189162487], [-77.45197357000936, 34.74345907105108], [-77.45194574962103, 34.74336323971664], [-77.45164662101485, 34.74305473947542], [-77.45143074924444, 34.742926888518625], [-77.45135694041056, 34.74282354315859], [-77.4511034741827, 34.7426446161387], [-77.4512851475281, 34.74246455345174], [-77.45109544057314, 34.74203981081843]], [[-77.34189998686334, 34.68530400889216], [-77.34171284475715, 34.685252094080774], [-77.3416274636815, 34.685217959802], [-77.34129391771134, 34.68508386912577], [-77.34096941662028, 34.685431696515764], [-77.34151717674433, 34.68559765259005]], [[-77.34282253486836, 34.5381512378903], [-77.34295477660895, 34.53795119533091], [-77.34290356883324, 34.537848583388644], [-77.34292067561263, 34.53783369193683], [-77.34292159178068, 34.53783213270436], [-77.34292460855, 34.53777192136427], [-77.34292529057973, 34.53777106937102], [-77.3429746255599, 34.53773375088636], [-77.34300986004077, 34.53769845178284], [-77.34302563035035, 34.537675826739516], [-77.34306479078961, 34.53765344415808], [-77.34311323963105, 34.537569271345404], [-77.34312368892114, 34.53755966599796], [-77.34312652416062, 34.53755657679943], [-77.34321970750774, 34.53748045978928], [-77.34322699126037, 34.53745579777947], [-77.34330733230186, 34.53741083590017], [-77.34332335147101, 34.537406714400696], [-77.34332633601163, 34.5374036259842], [-77.34350925981033, 34.53737301391819], [-77.3435233874045, 34.53737023224004], [-77.34371079771478, 34.53722272406792], [-77.34372349056848, 34.53720460762438], [-77.34377358492881, 34.537129090369206], [-77.34382533224695, 34.537091490978796], [-77.34387218973808, 34.53705289199865], [-77.34392457949826, 34.53699623414571], [-77.34412030744282, 34.53692796801918], [-77.34429214443846, 34.53702432776283], [-77.34430334148267, 34.5370308235627], [-77.34431612086325, 34.53704034014012], [-77.3445097500576, 34.53723783822452], [-77.34457827383542, 34.53730549169544], [-77.34472179419296, 34.53745214823048], [-77.3445852937781, 34.53764840682402], [-77.34453466575779, 34.53772389242067], [-77.34438603056311, 34.53779980515975], [-77.34429667751758, 34.53788301326877], [-77.3442176208757, 34.53796622200839], [-77.34402415604798, 34.53804216257075], [-77.3438989493336, 34.538106817902765], [-77.34355931578322, 34.53814256485856], [-77.34350462537799, 34.53818304759713], [-77.34341835621115, 34.538183120044444], [-77.342978382253, 34.53819261790513]], [[-77.44477879172808, 34.73039029581868], [-77.44476633410252, 34.73050108887212], [-77.44480955155512, 34.73039484448075], [-77.4448105803304, 34.73038431883841], [-77.4448159221235, 34.73032966539955], [-77.4449000122345, 34.72944687217389], [-77.44425369544231, 34.72948696886269], [-77.4440652538358, 34.72956490187175], [-77.44388846201963, 34.729638017119605], [-77.44370975200694, 34.729721046654745], [-77.44352993864265, 34.72980002450187], [-77.44335346311632, 34.72987523337657], [-77.44319880051115, 34.730156803995456], [-77.4435717929129, 34.730197942610275], [-77.44377341314888, 34.73036343292428], [-77.44393123005663, 34.730455462085295], [-77.44412151634384, 34.73051387732446]], [[-77.35180632180032, 34.684191890076605], [-77.35192026937578, 34.68409780699855], [-77.35175336814322, 34.68414494183224], [-77.35152534311283, 34.68411220247076], [-77.3514037657475, 34.68410113873967], [-77.35120830288808, 34.68417341505025], [-77.35117378808897, 34.68408104332635], [-77.35103683377497, 34.684147948306126], [-77.35103287538246, 34.684189494329544], [-77.35115732524118, 34.68427705147852], [-77.35116369843499, 34.68428590314851], [-77.3511987209284, 34.684291477431834], [-77.35148681076186, 34.684244920620095], [-77.35179612988561, 34.684193350490965]], [[-77.3364637759114, 34.539100609047026], [-77.33641953858259, 34.53899902195269], [-77.33630843875585, 34.538907186136676], [-77.33626275619946, 34.538770020694024], [-77.33615434497105, 34.53868452859203], [-77.33627371423405, 34.53857022730109], [-77.33643387538294, 34.53838018306813], [-77.3365946228973, 34.53822965096442], [-77.3368307903732, 34.538192489830834], [-77.33694333842921, 34.53825515226587], [-77.3370257508269, 34.53824960614314], [-77.33708184607792, 34.538306326539036], [-77.33712345782692, 34.538360219876665], [-77.33721747812137, 34.53844634669305], [-77.3372644486029, 34.53849488915435], [-77.3372898649279, 34.53852122720605], [-77.33744087603, 34.53860275013289], [-77.33747524331471, 34.538658378601596], [-77.33747321383069, 34.538739675645814], [-77.33745345316835, 34.538834567389], [-77.33760033729692, 34.53886566129968], [-77.3376388706062, 34.538935627827435], [-77.33765128475439, 34.53895888309828], [-77.33766905927845, 34.53900113984385], [-77.33768443445851, 34.53907652426503], [-77.33766546037, 34.53915684496596], [-77.33767888769859, 34.539199730644704], [-77.33780516927365, 34.53931580655306], [-77.337639870505, 34.53945015954102], [-77.33758544116083, 34.53950903747286], [-77.33751286035145, 34.53946842593794], [-77.33733597382688, 34.539406107605586], [-77.33719458212053, 34.539435041164715], [-77.33687053973101, 34.539315984269926], [-77.33684049058985, 34.53929828350386], [-77.3368053204888, 34.53929210498375], [-77.33651529709503, 34.53912225504903]], [[-77.33546308146308, 34.53364278310704], [-77.33542793906499, 34.533609682143364], [-77.335366892011, 34.53360402138671], [-77.33501372554797, 34.53346258657105], [-77.33499543311835, 34.533454232173106], [-77.33497842531305, 34.53342811147156], [-77.33490437824867, 34.53347831097265], [-77.33449011742387, 34.53372730244777], [-77.33423469010042, 34.5338194291178], [-77.33435809895568, 34.533936389817484], [-77.3343710802636, 34.534044632567664], [-77.33450077976302, 34.53422931317973], [-77.33449663374655, 34.53431423788587], [-77.33458863040055, 34.53427208792423], [-77.3346091788944, 34.53425521115384], [-77.33496242649662, 34.5341181083745], [-77.33516565233705, 34.534056221146415], [-77.33566826141961, 34.53385809317006], [-77.33565853173063, 34.533799385210116]], [[-77.43462108511847, 34.7380046998609], [-77.43469068026786, 34.73779157866748], [-77.43493427042903, 34.737890883516215], [-77.43496259824609, 34.738057335210854], [-77.43503762742196, 34.738150252602026], [-77.43504180891526, 34.73836514675389], [-77.43496735629533, 34.73868473915388], [-77.43468517316683, 34.73875155771743], [-77.43459940555798, 34.738556167569676], [-77.43472806782846, 34.73815517585514]], [[-77.36348749414861, 34.773516281824506], [-77.36321624958343, 34.77360465249885], [-77.36305040980852, 34.77382741129152], [-77.3629817088285, 34.77389850506325], [-77.36320949748556, 34.774008391063354], [-77.36322783240331, 34.773984636061215], [-77.36329477442366, 34.77373308799988], [-77.36365418294743, 34.77358183116573], [-77.36365942430963, 34.77357644871562], [-77.36369291851439, 34.773448455900784]], [[-77.35793902336212, 34.54698701092543], [-77.35817545290121, 34.547022346396744], [-77.35820693888185, 34.54702563785089], [-77.3582194452794, 34.547027457279746], [-77.35846623540947, 34.547070786488774], [-77.35860906288536, 34.547157807623464], [-77.35864005440442, 34.54718062255485], [-77.35865408850069, 34.54719825362046], [-77.35882148618617, 34.54728469721676], [-77.35882973941757, 34.54729537395734], [-77.35886092504109, 34.54732796003734], [-77.35888096213658, 34.547349204422844], [-77.35888464585098, 34.54735758843232], [-77.35891106561688, 34.54740607576291], [-77.35888909098621, 34.54747491321231], [-77.35887884457674, 34.5475331271072], [-77.3588638181032, 34.54757773729999], [-77.35882655555778, 34.54766306785723], [-77.35878822458541, 34.54778932735864], [-77.35878806990459, 34.54779274076591], [-77.35877728728997, 34.547914985751504], [-77.35876509856739, 34.54802644526185], [-77.35876633263749, 34.54803897493024], [-77.35876475225965, 34.548051764270454], [-77.35880313974523, 34.5481560868927], [-77.35873877309469, 34.548262006531054], [-77.35871900531734, 34.54832776136201], [-77.3586926049247, 34.54841682623549], [-77.3586693739995, 34.548476610707276], [-77.35857534924683, 34.54863016258173], [-77.35855519214618, 34.54866942637375], [-77.35854788418892, 34.5486824875387], [-77.3585133189526, 34.548724793921764], [-77.3584186950574, 34.54885138481545], [-77.35832162686454, 34.54895988824201], [-77.35825201016277, 34.54901865573609], [-77.35818124271026, 34.549102512859406], [-77.35817712937767, 34.54910640827966], [-77.35817166904211, 34.549113533551974], [-77.35810765595456, 34.549196791662126], [-77.35807293794781, 34.549240518226405], [-77.35797044446873, 34.54937699112523], [-77.35796986205992, 34.54937777085201], [-77.35796971593511, 34.54937804856996], [-77.35796929276138, 34.54937855273281], [-77.35785939778955, 34.54951608695029], [-77.35782634177444, 34.54955666156084], [-77.35776809502046, 34.54959206773163], [-77.35763966634096, 34.54967013478643], [-77.35760403926666, 34.54969687251837], [-77.35743937615543, 34.54982138305182], [-77.35740647721823, 34.54984912085985], [-77.35736906932841, 34.54987188550477], [-77.35718832886798, 34.54996884537678], [-77.35697181969152, 34.55007408229187], [-77.35691280962124, 34.550105671234135], [-77.35663758660432, 34.55038560398028], [-77.35659337222138, 34.55043282821786], [-77.35658491516547, 34.55044287898101], [-77.35657057032111, 34.55045069350762], [-77.35618622042237, 34.55073626625963], [-77.3561769286626, 34.550741117989624], [-77.35617119546069, 34.550745381418906], [-77.35605013079794, 34.55087826929481], [-77.35601955772051, 34.55091292186914], [-77.35592703310748, 34.55101840171629], [-77.35587081626772, 34.55108892463629], [-77.35576831282852, 34.551192920806045], [-77.35548237675233, 34.551259754802416], [-77.35537313249465, 34.55130443906812], [-77.35532096653586, 34.55131813927718], [-77.35517538836113, 34.55136689188899], [-77.35516301930629, 34.55137320876488], [-77.35504630427374, 34.55143287403926], [-77.35497590878543, 34.55150498380591], [-77.35486236114849, 34.55159174917766], [-77.35473336531037, 34.55167987955541], [-77.35446148855118, 34.551893449983936], [-77.35426460983346, 34.55199217792724], [-77.35420611831658, 34.55201757154777], [-77.35417850656019, 34.552034569955396], [-77.35398757522732, 34.55215961181351], [-77.3539791849332, 34.55216563562834], [-77.35390770210493, 34.552209902641394], [-77.3537800682541, 34.55228774462376], [-77.35369782986595, 34.55231858323307], [-77.35345120615055, 34.552395383812424], [-77.35338447175907, 34.55241702937129], [-77.35326023181855, 34.5524584460398], [-77.35314847232692, 34.55249645870269], [-77.35298864090136, 34.55255646287153], [-77.35285506928338, 34.55260207337755], [-77.35279090752795, 34.55261822905349], [-77.3527000385794, 34.55264094619799], [-77.35269217371533, 34.55264332140065], [-77.35268020890959, 34.55264117909776], [-77.35259434983836, 34.552628792618336], [-77.35252513374115, 34.55260978470218], [-77.35245761309577, 34.5525830088388], [-77.3522842588994, 34.55252204228861], [-77.3522048637439, 34.55249192445639], [-77.3520201053313, 34.55243131194722], [-77.35187846478169, 34.5523356245801], [-77.35184786528937, 34.5523202702317], [-77.35181669089692, 34.55229795309338], [-77.35167042071961, 34.55221316608579], [-77.35159258630713, 34.55213194725905], [-77.35143187345275, 34.551958054070084], [-77.35140246788616, 34.55193317997726], [-77.35139320240634, 34.55191582132952], [-77.35135768221629, 34.551873459284565], [-77.35125950579354, 34.55169024134068], [-77.35120183259068, 34.55160226067496], [-77.35118343226591, 34.55157877918057], [-77.35115004642083, 34.55152404203079], [-77.35111255798992, 34.55146656854383], [-77.35105688149763, 34.551230326008856], [-77.3510566510957, 34.55122979328513], [-77.35105662163453, 34.55122940685214], [-77.35105605609925, 34.55122675353215], [-77.35101198380532, 34.550991400292375], [-77.35100576822644, 34.55095707221372], [-77.35096509480974, 34.55081593485396], [-77.35089488802194, 34.550763431004455], [-77.35081647092792, 34.55068702611583], [-77.35076199692251, 34.550660145714374], [-77.35069635485667, 34.55055812556392], [-77.35068899304561, 34.55054824152515], [-77.35068572324636, 34.55054459199372], [-77.35067947671094, 34.55052889577883], [-77.35060840783993, 34.550361729763736], [-77.35058299111054, 34.55031867548412], [-77.35053153504707, 34.5501785326105], [-77.35046888457622, 34.55009027585054], [-77.35044858548218, 34.54999993413955], [-77.35044259400962, 34.5499716489814], [-77.35043256718967, 34.54993299633976], [-77.3504151110895, 34.54985319357067], [-77.35040394272971, 34.549794875711854], [-77.35040687474229, 34.54979013324514], [-77.35043486796977, 34.54972793969293], [-77.35040443820446, 34.54967092541483], [-77.35052089936914, 34.54959314777315], [-77.3504467409111, 34.549443128181835], [-77.35100507698883, 34.54933751340805], [-77.35110025781479, 34.54930383261612], [-77.35112254220086, 34.549275225051844], [-77.3518182621976, 34.54920494488715], [-77.35188813095722, 34.54918879107432], [-77.35199548624644, 34.54920325169728], [-77.35225473990697, 34.549116045122865], [-77.35228164686376, 34.549149539601906], [-77.3523103125127, 34.549108069320795], [-77.35231696540818, 34.54908983080026], [-77.35242118426326, 34.548913640560905], [-77.35268417722683, 34.54871779142503], [-77.35301491821059, 34.54870579592607], [-77.35346996329665, 34.548693284806276], [-77.35355001139756, 34.5488600470905], [-77.3535532480328, 34.548911884600436], [-77.35357516645404, 34.54897841338042], [-77.35364443934931, 34.54902996232134], [-77.35370189244783, 34.54904007757665], [-77.35385419603827, 34.54905830516264], [-77.35389459951463, 34.549082037543656], [-77.35397348502913, 34.54909621650335], [-77.3540492840896, 34.54911139450756], [-77.35417455481267, 34.54911156674194], [-77.35424526672071, 34.54912551296106], [-77.35441555674802, 34.54913896203019], [-77.35444125565873, 34.54913935825498], [-77.35445469397519, 34.54914095643986], [-77.35463779133545, 34.54912290969689], [-77.35463794081309, 34.54912286192133], [-77.35481067312222, 34.54908284283184], [-77.35486394003738, 34.549072650516464], [-77.35503290204602, 34.54902050395007], [-77.35521074341929, 34.54905159346953], [-77.35522853170798, 34.54905000281208], [-77.35524915440129, 34.54904782304376], [-77.35532689680818, 34.549040762999326], [-77.35538678717941, 34.54901518132942], [-77.35541322503887, 34.549003468325225], [-77.3554262340482, 34.548989135614505], [-77.35547021919908, 34.54894196498778], [-77.35548973881052, 34.54891651055987], [-77.35552801751012, 34.54887243873546], [-77.35562766412762, 34.54876570490609], [-77.35564662838011, 34.54874447430998], [-77.35570925123407, 34.54867436738802], [-77.35577418812035, 34.54859217732832], [-77.35580127442812, 34.54857134656881], [-77.35582886124224, 34.548552387138685], [-77.35600943424052, 34.54844721331647], [-77.3560307807054, 34.548434643885344], [-77.35622677423531, 34.54832108368312], [-77.35626597832818, 34.54830071030798], [-77.35631335906089, 34.54826973347123], [-77.35649399108024, 34.548163280873645], [-77.35654279506521, 34.54804360432081], [-77.35647677553797, 34.54800138389413], [-77.35639276719441, 34.54786565473786], [-77.35633365924895, 34.547777164974605], [-77.35639935142078, 34.547669407258155], [-77.35647459054411, 34.547512052414774], [-77.35653427463963, 34.54743776165653], [-77.35664304992514, 34.54728856234483], [-77.35666934382512, 34.54723919100911], [-77.35676766479276, 34.54705457642902], [-77.35687512532942, 34.546964741151186], [-77.35704577572626, 34.54684688467185], [-77.35713914072855, 34.546868203728124], [-77.35732840945711, 34.54689947995266], [-77.35739314858229, 34.54691735651498], [-77.3574370376804, 34.546905363227], [-77.35750381751285, 34.54691602083664], [-77.35782804669851, 34.54697490304068]], [[-77.36452016974275, 34.54586840392076], [-77.36452728257915, 34.54587918342963], [-77.36453585449412, 34.545866723800565], [-77.36453771356125, 34.545861287866465], [-77.36453977982386, 34.54585356158548], [-77.36462261595938, 34.54560423304197], [-77.36453829839304, 34.54539661760938], [-77.36425299861827, 34.54565747189194], [-77.36444678520594, 34.54582339183401], [-77.36451740451118, 34.54586421316374]], [[-77.34533382088566, 34.54880126632004], [-77.34561300076439, 34.54889767585276], [-77.34569336956659, 34.54901194642357], [-77.34574065131571, 34.54905690141962], [-77.34590174879983, 34.54921838525157], [-77.3458688969668, 34.54936185041926], [-77.34582219745127, 34.54953480805703], [-77.34611544768156, 34.549658021774405], [-77.34637953853203, 34.54970880361072], [-77.34654022976763, 34.54981935002179], [-77.3467685083778, 34.54986715738587], [-77.3467809279276, 34.54987859807578], [-77.34679714585717, 34.54988417323687], [-77.34691315834473, 34.549958997599546], [-77.3469532103832, 34.549989607018695], [-77.34696197654782, 34.549990494159346], [-77.34704262666243, 34.55004263370119], [-77.34709534019663, 34.550086087750195], [-77.34711489058239, 34.55010863737756], [-77.34715515296006, 34.550126521633246], [-77.34721644908711, 34.55027315431738], [-77.34723832623934, 34.550310334123864], [-77.34738414281031, 34.5503876355167], [-77.34744089576441, 34.55046421288742], [-77.34746152378833, 34.55052303908977], [-77.34750001825783, 34.55054132120756], [-77.34753737383463, 34.55057808015327], [-77.34758083815746, 34.550628281243505], [-77.34760944322385, 34.550699887266674], [-77.34766895931747, 34.55073801168217], [-77.34772907985297, 34.55077806258499], [-77.3477651657106, 34.5508234260068], [-77.34778194806073, 34.55084416387915], [-77.347845137491, 34.55090932390448], [-77.34786270543093, 34.55095495381048], [-77.34786870018617, 34.55098644909579], [-77.34791987909716, 34.551017468445224], [-77.3480221803853, 34.551111684531854], [-77.34811331061907, 34.551142584384564], [-77.34812908535827, 34.551151480242474], [-77.34813954438317, 34.55115993928625], [-77.34814312737564, 34.5511785319417], [-77.3481815696244, 34.55123244954156], [-77.34822212957445, 34.551270466014216], [-77.34830502865606, 34.55134216107184], [-77.3483251077218, 34.551365207283155], [-77.34833271908386, 34.55137696309337], [-77.34835627736226, 34.55140645194297], [-77.34841833166497, 34.55148705412313], [-77.34844754263742, 34.55151393147814], [-77.34849616950797, 34.55156685401158], [-77.34853347568445, 34.55159289569527], [-77.3485999597391, 34.55163997176096], [-77.3486890152554, 34.55171751373753], [-77.34874998420979, 34.55176782250271], [-77.34879796160683, 34.55179965755287], [-77.34888180807482, 34.551870503187914], [-77.34890251499898, 34.551893777177455], [-77.34894454122936, 34.55194110522065], [-77.34896389647201, 34.55202060034149], [-77.34901240625271, 34.55205199241822], [-77.34907321351004, 34.5520838178358], [-77.34909826438593, 34.552107712200254], [-77.34910678018844, 34.55212244990493], [-77.34913039708708, 34.55214374047999], [-77.34913295355675, 34.55215698376442], [-77.34912419969513, 34.55218114841844], [-77.34912735535465, 34.55220638127615], [-77.34912009850588, 34.55224294374546], [-77.34912029518526, 34.55227501604807], [-77.34912836780059, 34.552364164161304], [-77.34912981250386, 34.552403839610704], [-77.34913130222878, 34.55244475306644], [-77.34913081353162, 34.552486222620225], [-77.34913058475384, 34.55250563540346], [-77.3491276127634, 34.55252696135485], [-77.3491193454784, 34.55254907805659], [-77.3490610835413, 34.55261097975774], [-77.34905389287717, 34.55261527988166], [-77.34903755766138, 34.55262205246073], [-77.34896184430022, 34.552657977560315], [-77.34891731598273, 34.55267301081396], [-77.34886291788992, 34.5526913761967], [-77.34875892864056, 34.55272648392146], [-77.34866532448831, 34.552746890448645], [-77.34861253900368, 34.55277308391786], [-77.34849599517216, 34.55280473446229], [-77.34846780441367, 34.55279920645296], [-77.34839584094077, 34.55275983001586], [-77.34827422697524, 34.55268023538301], [-77.34811172197958, 34.55263286524723], [-77.34797566957606, 34.552595006495885], [-77.34788387217124, 34.55258134502913], [-77.34756937332604, 34.55251383199597], [-77.34749323603401, 34.552494707196715], [-77.34747869363846, 34.55248829048584], [-77.34744628926839, 34.55248379310318], [-77.34722570502308, 34.55243833681698], [-77.34710293132622, 34.552393711309605], [-77.34699470410642, 34.55237174777295], [-77.34685244769307, 34.55232441678872], [-77.34671313467399, 34.5522706994138], [-77.34645414762375, 34.552297999846026], [-77.34632077715352, 34.552258868135624], [-77.34622382028704, 34.55223090092302], [-77.34618700513303, 34.55217533952623], [-77.34607548336808, 34.55210177241734], [-77.34593292401972, 34.55205159886485], [-77.34575752224697, 34.551992311054676], [-77.3456824180562, 34.551916439390105], [-77.34554297304267, 34.551935413369684], [-77.34533237294355, 34.55192196651646], [-77.34514977318622, 34.55196017688598], [-77.34499494383401, 34.55195383619276], [-77.34485813332029, 34.551876885124884], [-77.34476014631677, 34.55182999457875], [-77.3446356489017, 34.551742953683664], [-77.34454938911148, 34.551676482685046], [-77.34437511740778, 34.55150052615694], [-77.3443331192513, 34.55148912779725], [-77.34430502617718, 34.551466817810905], [-77.34424160350386, 34.55139111647343], [-77.34410943174176, 34.55125013646793], [-77.34466194438448, 34.55075766563075], [-77.3446907882774, 34.55067686280174], [-77.34471293106894, 34.55062693593691], [-77.34478783739242, 34.55062926486904], [-77.34486342692793, 34.5506052378277], [-77.34531960467088, 34.55042540974182], [-77.34534608287133, 34.55024008842496], [-77.34533423859125, 34.55009465167304], [-77.34537032878711, 34.54995331432097], [-77.34537538105938, 34.549599093223264], [-77.34531876661465, 34.54929535401676], [-77.34515282849054, 34.54914147279381], [-77.34502548707052, 34.54903453776105], [-77.34484561637905, 34.54870438048767], [-77.34484505592059, 34.54869611344342], [-77.34523134507323, 34.54842239130991], [-77.34534271748146, 34.5486245144373]], [[-77.33661046844603, 34.65218692012311], [-77.33658548676945, 34.65217653293856], [-77.3365747491335, 34.65217525869412], [-77.33652239806742, 34.652139479981166], [-77.3364150028513, 34.652213740155176], [-77.33611626509366, 34.65242760376597], [-77.33633021838855, 34.65268181856191], [-77.33642715591765, 34.65271784154227], [-77.33669583693472, 34.652777889776715], [-77.33693095079394, 34.65264072845383], [-77.33724696246396, 34.65294357320931], [-77.33734228216159, 34.65297454870702], [-77.33737885426379, 34.65299020611069], [-77.33745807344886, 34.65301298340334], [-77.33768706940494, 34.652930673733174], [-77.33784550564475, 34.65312647522555], [-77.33801309985323, 34.65319748635555], [-77.33790807784197, 34.65300261390727], [-77.3377185713465, 34.65287885944294], [-77.3376719128845, 34.652855247967025], [-77.33740172119809, 34.65285689111725], [-77.33733713453523, 34.652782584640505], [-77.33700990722754, 34.652484437799814]], [[-77.26010129831559, 34.59925240119767], [-77.26021214355293, 34.599267597074444], [-77.26022263125577, 34.59926976585356], [-77.26025801341935, 34.59926472875547], [-77.26024527264393, 34.59922501882597]], [[-77.32046768452778, 34.54444265849517], [-77.32058893700165, 34.544466780288005], [-77.32115080888455, 34.5444086586004], [-77.32137590005375, 34.54439128060336], [-77.32165099594773, 34.54436788812542], [-77.32216622275537, 34.54417173256654], [-77.32257933892517, 34.54429354696177], [-77.32294980700368, 34.54424086640723], [-77.3231918885122, 34.544312908641416], [-77.32331833649587, 34.54444674158145], [-77.32332930557985, 34.54469159143237], [-77.32336506372341, 34.544929653318604], [-77.32319576914809, 34.54512014172144], [-77.32292699021419, 34.545219026125984], [-77.32261851736877, 34.545335897580884], [-77.32247911679866, 34.54533455006282], [-77.32213792257751, 34.54538447673886], [-77.32203968846181, 34.545425561501595], [-77.3218540371916, 34.5454604775776], [-77.32174275760468, 34.54549418696813], [-77.32168249263643, 34.545454383895944], [-77.32143098887454, 34.545452360789454], [-77.32135137277206, 34.54544192317739], [-77.32132547648777, 34.5454515120002], [-77.32112213327477, 34.54539554249406], [-77.3209616237743, 34.54531961785333], [-77.3207346700355, 34.54530758986393], [-77.32071811423317, 34.545218471562265], [-77.3205719532114, 34.545193998977425], [-77.32044915537145, 34.545273190710404], [-77.32036029793561, 34.5452477597832], [-77.32026139285257, 34.54518175286539], [-77.32032273588888, 34.54512195923061], [-77.32021475828209, 34.545116520902155], [-77.32018092937889, 34.54512635954918], [-77.32000085445569, 34.54504579628227], [-77.31999401604422, 34.54504215112687], [-77.31998671244558, 34.545037115974246], [-77.31993560361241, 34.5450230966721], [-77.31979183410665, 34.54497619826835], [-77.31972593362389, 34.54500357995833], [-77.31965877504416, 34.54497253390748], [-77.31966638283339, 34.544891987435605], [-77.31979672493334, 34.54476686515165], [-77.31981920028088, 34.54471797777526], [-77.31984679210707, 34.54470071126036], [-77.31998239718527, 34.54454902254708]], [[-77.247825064529, 34.591413699434625], [-77.24819369216117, 34.591384414374595], [-77.248174257542, 34.59146667208879], [-77.24815875709753, 34.59147786070853], [-77.24812935995519, 34.591511523899165], [-77.24775532672824, 34.59145730818454], [-77.24775781825628, 34.5916819511245], [-77.24788583857634, 34.59175834126281], [-77.24779672476433, 34.59182280456448], [-77.2477213497351, 34.5919147521392], [-77.24771075302043, 34.59192215466068], [-77.24755228123765, 34.59193403885949], [-77.2474268484256, 34.5920666350923], [-77.2471640028547, 34.59202856321639], [-77.24717245645687, 34.59173635278714], [-77.24713066745642, 34.591632546034326], [-77.24725428869749, 34.591574670991214], [-77.24771603907227, 34.591422360752794]], [[-77.39057901169613, 34.62712816089288], [-77.39061560037672, 34.62684891692782], [-77.39075481946654, 34.62644293509752], [-77.390759487148, 34.62635993283463], [-77.390718955332, 34.62615229701801], [-77.39070120939543, 34.62600656693029], [-77.3906850866006, 34.625989763599904], [-77.39052186245337, 34.62590906167177], [-77.39043999846774, 34.625900974237524], [-77.39032474628961, 34.62588958829356], [-77.39021078986346, 34.62593541822976], [-77.39022944804678, 34.62605544739919], [-77.39023656659953, 34.62614935430267], [-77.39024652883717, 34.626265269295416], [-77.39023818101215, 34.62638559014816], [-77.39023165156395, 34.626479697965074], [-77.39021051170526, 34.62678439607685], [-77.39019296228089, 34.62690984316164], [-77.39016511358078, 34.62708562896736], [-77.3901678692389, 34.62733802881215], [-77.39024450501016, 34.62766534428086], [-77.39027033699485, 34.627747825846996], [-77.39028682175203, 34.62778606859356], [-77.39042427161989, 34.62783304203773], [-77.39043642092018, 34.62772388388118], [-77.39048443462836, 34.627544797085235], [-77.39057633218037, 34.62727914660396]], [[-77.39186770647053, 34.520917116317776], [-77.3920295479946, 34.52084242936636], [-77.39194182229129, 34.52075973071699], [-77.39178927400322, 34.52074592223638], [-77.39157576336774, 34.520554131187026], [-77.39118825489302, 34.52058665751492], [-77.39100524559849, 34.520705429460314], [-77.39034199952033, 34.52108593397875], [-77.39099223450833, 34.52128314324747], [-77.39149773890968, 34.52109611778967], [-77.39178404707917, 34.52097810302554]], [[-77.34128962584052, 34.75912703404781], [-77.34109421886768, 34.75918385446816], [-77.34091118847296, 34.759182593438304], [-77.34074659650179, 34.759284290210374], [-77.34070487260371, 34.75930537342903], [-77.34053927639022, 34.7594197875479], [-77.34049554665211, 34.75950215354656], [-77.34060683261555, 34.75956250397992], [-77.34066344655875, 34.759635305209244], [-77.34076052850367, 34.759692591114145], [-77.3409542795204, 34.759665281287226], [-77.3413373849438, 34.75964324697824], [-77.34156430926927, 34.75962765200377], [-77.34202118331415, 34.75990584804051], [-77.3420799055669, 34.75991490959815], [-77.34218265368415, 34.75991814364609], [-77.3425858509423, 34.75986587102758], [-77.34270955043242, 34.75980979368504], [-77.34311548975367, 34.759705864008424], [-77.34325016618419, 34.75958718813338], [-77.34339235398426, 34.759521770201424], [-77.3435511577149, 34.75915873917343], [-77.34368139101356, 34.758692583560034], [-77.34374185840329, 34.758645208902365], [-77.34439490096477, 34.758133565475525], [-77.34443914544107, 34.758087240562666], [-77.34446032163319, 34.75805929434487], [-77.34452705720923, 34.75797913851929], [-77.34458143724935, 34.75789414109612], [-77.34459295353861, 34.75779741475565], [-77.34459154378943, 34.757583946510216], [-77.3445928750986, 34.75755373716431], [-77.34459072350805, 34.757459773050236], [-77.34446195459243, 34.75757169355151], [-77.34442305639162, 34.75766492778148], [-77.34427966043486, 34.75784038445398], [-77.34430933505273, 34.757972248701606], [-77.34423635439207, 34.758090012035304], [-77.3436914272299, 34.758492764608164], [-77.34357823255998, 34.758601200531714], [-77.3429384774061, 34.75902216287659], [-77.3426359567032, 34.75864483240832], [-77.34246496946767, 34.758590117135356], [-77.34231079063147, 34.75850067287775], [-77.34219652935182, 34.75848311487847], [-77.34205016292859, 34.75850397591096], [-77.34203370747521, 34.758509573573036], [-77.34186676685655, 34.75858708829533], [-77.34171266200138, 34.75867980420297], [-77.34162907995402, 34.75878943524324], [-77.34127461697317, 34.75898356012593]], [[-77.44087905328428, 34.72995580979068], [-77.44043223479923, 34.729969673917914], [-77.4404252082124, 34.72997015278383], [-77.43998411128801, 34.729989250079974], [-77.43974661581723, 34.73012346103041], [-77.4391620513363, 34.730141739795506], [-77.43906916673207, 34.73024900352149], [-77.43882449224996, 34.730528891558336], [-77.4388936369979, 34.73061401536929], [-77.43894137020908, 34.73069067737427], [-77.4391338591011, 34.730960187407874], [-77.43935716937605, 34.731469443395724], [-77.4399637909579, 34.73145135902998], [-77.440088542055, 34.73145465393226], [-77.44067621096303, 34.731342343457385], [-77.44079045979585, 34.73130637399538], [-77.44117129252109, 34.731348893179266], [-77.44162054172568, 34.73116696341328], [-77.44183544528276, 34.730725719729335], [-77.44190199164163, 34.730486148423836], [-77.44164248379998, 34.7302185124739], [-77.44126694776674, 34.73007012062011], [-77.44106019187811, 34.730015173200094]], [[-77.33377579103663, 34.577291597179524], [-77.3335931366127, 34.57731177284028], [-77.33358810055823, 34.577313151055975], [-77.33353309271142, 34.5773264826244], [-77.33358440291715, 34.5773285027992], [-77.33359312501267, 34.577325840336414]], [[-77.45021193337442, 34.697356804365114], [-77.45005803713516, 34.69755904006853], [-77.4497691198319, 34.69768698089473], [-77.44945374045633, 34.69761313604987], [-77.44917828087057, 34.69751397822415], [-77.44890528958008, 34.6974184039901], [-77.44862633082998, 34.69720647868735], [-77.44839743855576, 34.69697868171011], [-77.4482563849094, 34.69679647713977], [-77.44855005986838, 34.69613665670952], [-77.44869402814004, 34.69596430915098], [-77.44902212956957, 34.695837537748105], [-77.44925334673403, 34.695790638626974], [-77.44971975067664, 34.695641155423175], [-77.45017717448347, 34.695804954490704], [-77.45031404567405, 34.6958021603549], [-77.45035721121238, 34.69591935547747], [-77.4503875431553, 34.69599716451173], [-77.45036549354661, 34.696112633959274], [-77.45038445188428, 34.69655509419969], [-77.45035145352341, 34.69681461196308], [-77.45029074672937, 34.69708135642372]], [[-77.37899149053976, 34.73014822034237], [-77.3788213656778, 34.73016868929446], [-77.37876760522295, 34.73016529773626], [-77.37811354602131, 34.73051400021554], [-77.37892602411553, 34.730424460411925]], [[-77.39686649159249, 34.58900986261334], [-77.39689562813426, 34.589148609063], [-77.3970283036422, 34.58918277154905], [-77.39707290556005, 34.589028131641534], [-77.39729382619367, 34.588948215388875], [-77.39736375499099, 34.5888749620509], [-77.39728733651916, 34.58867009150576], [-77.39709330073305, 34.58862256734965], [-77.39702833568549, 34.588607088724885], [-77.39699956817569, 34.58859708851193], [-77.39690613400968, 34.58857957156038], [-77.39683130870911, 34.58856498493853], [-77.3966879940188, 34.588553166622056], [-77.39663428030872, 34.588549470289614], [-77.39655193655466, 34.58854194658974], [-77.39653427302767, 34.58863321513477], [-77.39656971872488, 34.58869765260996], [-77.39663426587103, 34.588787923182295], [-77.39671015576972, 34.58895063857041]], [[-77.30983387545325, 34.54736280177081], [-77.31030833931067, 34.54757427937282], [-77.31057505577627, 34.54725638489431], [-77.31037304877087, 34.54682515397725], [-77.3103808503717, 34.54676133778713], [-77.31025507439301, 34.54676769004808], [-77.31019152535023, 34.54690447592888]], [[-77.4503750880115, 34.62321025966956], [-77.45040783105449, 34.62295507185902], [-77.45047835020875, 34.62283399374088], [-77.45024571903673, 34.62245405281813], [-77.45020112001555, 34.62227550065202], [-77.44988935903038, 34.62207823349904], [-77.44978285359485, 34.622105567416135], [-77.44933434881432, 34.62197154896842], [-77.44915997492605, 34.62195270764252], [-77.4489793693273, 34.62188537113582], [-77.44875740328385, 34.62178475351908], [-77.44872739085305, 34.621957222117956], [-77.44867060701063, 34.62220156004386], [-77.44854140636457, 34.62270892538166], [-77.44857669783218, 34.622738704607116], [-77.44853334027029, 34.62277293604049], [-77.44851338187601, 34.62281376574919], [-77.44838152838172, 34.623339222076936], [-77.44829472053549, 34.62355761974297], [-77.44831266563926, 34.62390290498491], [-77.44848025889613, 34.62424322895568], [-77.4488762203068, 34.62475108761143], [-77.44893678891924, 34.62485156871854], [-77.4490152557936, 34.62487269393695], [-77.4490878174853, 34.62491147622195], [-77.44924107114086, 34.624878727974576], [-77.44959342000547, 34.62483767272116], [-77.44988159198799, 34.624582164871384], [-77.44992051448521, 34.624497026216304], [-77.44999489523477, 34.624383646047235], [-77.450223251478, 34.62398353790865]], [[-77.42392598343406, 34.522801505865445], [-77.42409382075567, 34.52295980593396], [-77.42410353447517, 34.52306529238673], [-77.42411804123162, 34.52318834993139], [-77.42419161844477, 34.523368700215855], [-77.42451375919329, 34.5233806624673], [-77.4245426988588, 34.523102595161234], [-77.42456140109626, 34.52299909784641], [-77.42457443763205, 34.52291361176198], [-77.42457806177438, 34.52259276891915], [-77.42432299906895, 34.522543876263065], [-77.42428788584644, 34.52232968982006], [-77.42361287673438, 34.522446301736466], [-77.4238375238954, 34.52267104792055]], [[-77.4575293876773, 34.598002505269946], [-77.45752609961325, 34.59803049416885], [-77.4580323671486, 34.59806033333462], [-77.45823641895917, 34.59805219638323], [-77.45837460223953, 34.59803391676286], [-77.4584593829536, 34.59777948928028], [-77.45846254519722, 34.5977633259457], [-77.4584535721537, 34.597751858398915], [-77.45833195240323, 34.59723483402564], [-77.45829189566881, 34.59707591328617], [-77.45829131647446, 34.59707364511327], [-77.45829634475609, 34.59706444535138], [-77.45848084586717, 34.59652264671101], [-77.45863724682263, 34.596430203367305], [-77.45867724967486, 34.59622500144883], [-77.45868770582261, 34.59597564753028], [-77.45891597352417, 34.59578762335638], [-77.45895627176043, 34.595759927481566], [-77.45897385702783, 34.59573994473392], [-77.45902407728687, 34.59557214609889], [-77.45901324589101, 34.595470173953586], [-77.45897340650406, 34.59540196957186], [-77.45893529921173, 34.595368462145174], [-77.45886367189757, 34.59533758971265], [-77.45879879298731, 34.59530681397864], [-77.45870055022084, 34.59529518623991], [-77.45863355479727, 34.59528030900715], [-77.45844575064817, 34.5952716129363], [-77.45833256001643, 34.595317584295394], [-77.45816005179881, 34.59540223850926], [-77.45784391421054, 34.5954526548471], [-77.45776816640539, 34.595424337886], [-77.45736330197917, 34.59551224538233], [-77.4573382873782, 34.595525717094596], [-77.45731466129831, 34.59552180259684], [-77.45713085216565, 34.595585755598925], [-77.45709451970473, 34.595595283168294], [-77.4570353689219, 34.59567795627482], [-77.4570506920546, 34.59571255253938], [-77.45705945995098, 34.595763399402514], [-77.45705717276343, 34.595836736357725], [-77.45720952605953, 34.59590521818612], [-77.45723942035295, 34.59608827925169], [-77.45739777149066, 34.59633459264956], [-77.4574933483371, 34.59656277501181], [-77.45760008096455, 34.5968338539217], [-77.45763178942734, 34.59696281212269], [-77.45828316176716, 34.59707597168746], [-77.45772263575891, 34.59749611405364]], [[-77.3039145484741, 34.55357985075134], [-77.30389483863055, 34.55360109928521], [-77.30388814669607, 34.553604378703945], [-77.30388437709135, 34.55360650851371], [-77.30369634231809, 34.55375940339455], [-77.30364721878026, 34.55378192335392], [-77.30348945203974, 34.553703186516], [-77.30313436004698, 34.5537102379933], [-77.30349431099677, 34.55349690973502], [-77.30375254465095, 34.553538324746256], [-77.30388550045892, 34.55355880883759]], [[-77.31852605619105, 34.64300912962548], [-77.31867711225847, 34.64283061799823], [-77.31832581979307, 34.64260788627028], [-77.31810329332933, 34.6429092715151], [-77.31808638211528, 34.642932175729406], [-77.31808631086932, 34.6430096455003], [-77.31808400305171, 34.64333390149879], [-77.31820633590272, 34.6436077539651], [-77.31826130678917, 34.64342927148726], [-77.31833592715594, 34.64345588898669], [-77.31840991555744, 34.64328922917733], [-77.31842713361837, 34.64325044529319], [-77.31844789457064, 34.643216204318705], [-77.31853593303356, 34.64306096281966]], [[-77.41889451545006, 34.56868270339831], [-77.41895882571714, 34.568768100538975], [-77.41903686007535, 34.56876721831997], [-77.41907140784468, 34.56863047358923], [-77.41902921359736, 34.56861493103578], [-77.41894387821073, 34.56857403691934], [-77.41883640489164, 34.56858017940246], [-77.41887764858949, 34.568654999857166]], [[-77.33978110458132, 34.68333183578362], [-77.34041219386742, 34.68307127248684], [-77.33986309128312, 34.68304958890981], [-77.33971151591808, 34.68304225182922], [-77.33926606899257, 34.683193292166024], [-77.33922276602009, 34.68319340539464], [-77.33917950241616, 34.683208820578194], [-77.33869938916013, 34.68323517951437], [-77.33859831186774, 34.6832825750646], [-77.33843304045566, 34.68334281291787], [-77.3381789369213, 34.68359823715269], [-77.33789755213476, 34.68363440335038], [-77.33785364979511, 34.68366598684528], [-77.33787736384966, 34.683703897211245], [-77.33814221343985, 34.68366389483208], [-77.33823171792464, 34.683645045194005], [-77.33854087153337, 34.68348030728956], [-77.33910157347091, 34.68331986377136], [-77.33924918328418, 34.68327061496038]], [[-77.31392369428745, 34.54738756213129], [-77.31400195400943, 34.547401450655215], [-77.31394596943048, 34.54744740403146], [-77.31385766063374, 34.547510550444656], [-77.3138439151912, 34.547488033840146], [-77.31379749151547, 34.54740568591945], [-77.31384836841606, 34.54729800153668]], [[-77.3474515464295, 34.656336092564274], [-77.34743814350577, 34.65652531654262], [-77.34744093420768, 34.65660833632934], [-77.34741025833043, 34.656701354167396], [-77.34737161625357, 34.65692868172145], [-77.34735226700973, 34.657042510301466], [-77.34734714539228, 34.65707264028928], [-77.34736155864714, 34.65725110749778], [-77.34736151785621, 34.657252240207654], [-77.34744811912242, 34.657287740141335], [-77.34747472874427, 34.65731411701252], [-77.34751822360482, 34.65733622476036], [-77.3475402922379, 34.6573480315777], [-77.34761369975399, 34.65732604242261], [-77.34762036332516, 34.657327634698014], [-77.34768326931348, 34.65726288145199], [-77.34770962720953, 34.65724414763442], [-77.3477994578586, 34.65704451234693], [-77.34786761198674, 34.65697175325523], [-77.34793974103953, 34.65679172624681], [-77.34803801208515, 34.65663850168169], [-77.34832519501872, 34.656491466084326], [-77.34832804495201, 34.65648850260315], [-77.34832917025217, 34.65648799613603], [-77.34833731559544, 34.65648526040604], [-77.34832851391715, 34.65648489467877], [-77.34832747744196, 34.65648568043072], [-77.3483256681576, 34.65648472765121], [-77.34800413283487, 34.65647001994047], [-77.34786985845741, 34.65624469583476], [-77.34770573948111, 34.65623973963922], [-77.34763976898265, 34.656250364300476], [-77.34753551997763, 34.6563325154468]], [[-77.25355229703, 34.58669766131641], [-77.25309364462973, 34.58691737358908], [-77.25328395237389, 34.587165540749545], [-77.25328168537763, 34.58716785152075], [-77.2532803151358, 34.58716924821533], [-77.25327475746775, 34.58717491314276], [-77.25313655427274, 34.58727426054374], [-77.2531411466518, 34.58731086152426], [-77.25310690981648, 34.587343660980295], [-77.25303757048584, 34.58738430296833], [-77.2529372014132, 34.58747907414883], [-77.25291219641429, 34.58749912103972], [-77.25270173967846, 34.58759353246303], [-77.25255596763834, 34.58776235985927], [-77.25236307518517, 34.587667995952465], [-77.25228073385334, 34.58779605434197], [-77.25241870939985, 34.58785690886585], [-77.25228468588138, 34.587926926065464], [-77.25224280562404, 34.58802874025831], [-77.25217009784359, 34.588108391942676], [-77.25210998107434, 34.588100184877916], [-77.25210846268861, 34.58815677007652], [-77.25195841426341, 34.58824201863833], [-77.25181621391908, 34.58844989104595], [-77.25179041803294, 34.588473252051706], [-77.25176205125265, 34.58849823981934], [-77.25158218613089, 34.588616690098014], [-77.25155875600205, 34.58868189226164], [-77.25148211669398, 34.58875867899746], [-77.25142650861783, 34.58880687525736], [-77.25128343954077, 34.58889588408962], [-77.25116998434582, 34.58905924127153], [-77.25111033408565, 34.58911792478756], [-77.2510773803649, 34.5891536476776], [-77.2509344903534, 34.589300570003196], [-77.25090214645647, 34.58932643894065], [-77.25089590101234, 34.589336710779165], [-77.250871668583, 34.58935462956287], [-77.25071320310003, 34.589487035930674], [-77.25055720584419, 34.589545710188325], [-77.25029642757144, 34.58972842062058], [-77.25012586635387, 34.58962192464654], [-77.24991083328666, 34.58965738924004], [-77.24979083685497, 34.58957558465549], [-77.24985010892769, 34.58937663534718], [-77.2496483484315, 34.589002783791514], [-77.24975108885295, 34.58885567389188], [-77.25001802246746, 34.58821133876317], [-77.25021884092294, 34.588105023762616], [-77.25082276594829, 34.587855404117036], [-77.2511159628375, 34.587873323922274], [-77.25169858823595, 34.587790664012644], [-77.25175913142955, 34.58778810650307], [-77.25184527551701, 34.58776176455648], [-77.25186257042336, 34.58769773688512], [-77.25213296882829, 34.587463318228785], [-77.2521615897523, 34.58731532746022], [-77.2521818024038, 34.587210812151746], [-77.25225581960217, 34.58691528008683], [-77.25229524192949, 34.58685450716384], [-77.2525619583438, 34.58653027721955], [-77.25319625880431, 34.58649702993576]], [[-77.33986217302834, 34.68509095183962], [-77.33986582712734, 34.685096697987994], [-77.33987120906563, 34.68509896490256], [-77.34047467902842, 34.68506531856631], [-77.34059606985404, 34.684995548244686], [-77.34052033898247, 34.68498723015497], [-77.34049709978999, 34.68498813222304], [-77.33986965833499, 34.68509375005208]], [[-77.34787794597574, 34.73687063829847], [-77.34785798416438, 34.7368611494778], [-77.34774283605421, 34.7368203172003], [-77.34772072368217, 34.73679953352869], [-77.34765749954596, 34.736785300332684], [-77.34760595162494, 34.73677610438427], [-77.34744839092988, 34.73681190089668], [-77.34743645749487, 34.73680680270354], [-77.34744206950533, 34.736816762890705], [-77.3475048000158, 34.73692809635742], [-77.34754266321369, 34.73699394231303], [-77.34760394577506, 34.73708644355753], [-77.34764768378423, 34.737152181298306], [-77.34775102514757, 34.73730750209029], [-77.34811038495174, 34.737088694909794], [-77.3480817485401, 34.73705941142127], [-77.34788294075821, 34.73687185949861]], [[-77.34391712279228, 34.624176200833816], [-77.34379783083583, 34.62411944015844], [-77.34354468318725, 34.62399869732324], [-77.34303017055004, 34.623760838018676], [-77.34287046071665, 34.62365969149122], [-77.34246523300683, 34.62353155052818], [-77.34233781654137, 34.62350091974603], [-77.34232301604767, 34.623551076461354], [-77.3422913376004, 34.623658430310556], [-77.34220026392683, 34.62398992784208], [-77.34217465549352, 34.62405385085269], [-77.3421444818041, 34.624131709211376], [-77.34203041359882, 34.62443524514336], [-77.34225983626565, 34.62470586497844], [-77.34232957882935, 34.62473083104696], [-77.34248399621362, 34.62467633799122], [-77.34256599288004, 34.62463661456729], [-77.34265796168741, 34.62450516433657], [-77.34284798004438, 34.62444707226562], [-77.34306182000654, 34.62442887583626], [-77.34316064273175, 34.624410208186475], [-77.34319635881295, 34.624340675355676], [-77.34374955260624, 34.624215052147136], [-77.34376169717319, 34.62421569237075], [-77.34377798312724, 34.62421655087687]], [[-77.40583849937606, 34.67164669550057], [-77.4057467186753, 34.67155400135218], [-77.40568822934671, 34.67148621702813], [-77.40549058651392, 34.67134886436941], [-77.40548767107013, 34.67134671738812], [-77.40548660554732, 34.67134593924675], [-77.40547857604676, 34.67134466024339], [-77.40548342757685, 34.671348487654015], [-77.40546844865342, 34.671408633364415], [-77.4054206595368, 34.67159783979834], [-77.40541960721654, 34.67160358612364], [-77.40553032379708, 34.671748089502316], [-77.40555398031037, 34.67176538935621], [-77.40566251300599, 34.67184475851472], [-77.40589343529938, 34.67201362922071]], [[-77.34148376006445, 34.55054566109069], [-77.34125623212341, 34.55054248453951], [-77.34113487702447, 34.55052977679893], [-77.34086302524764, 34.55056773009286], [-77.34075899756851, 34.550572780702744], [-77.34066631438552, 34.550584995413274], [-77.34061301426838, 34.55052898463282], [-77.34053341036444, 34.5505020912973], [-77.34047248025563, 34.55047779621436], [-77.34028661118714, 34.55045352186104], [-77.34028412862834, 34.55044932583824], [-77.34008771000977, 34.55035972019329], [-77.3400847996859, 34.55035877248727], [-77.3401092074163, 34.550125026342855], [-77.34013079669414, 34.55010870508612], [-77.34021551699561, 34.54992837218512], [-77.34040619827587, 34.54982427588833], [-77.34065262296109, 34.54964432973163], [-77.34088601380765, 34.5495729460697], [-77.3410575767963, 34.54962288871561], [-77.34138932883982, 34.54968286847386], [-77.34153963482316, 34.55007606302368], [-77.34156894948671, 34.55014666936426], [-77.34155427936733, 34.550212505113414]], [[-77.3385429255936, 34.549027187070415], [-77.33865304162669, 34.549028466636074], [-77.33865392553804, 34.549097021207544], [-77.33894763869199, 34.54928828940396], [-77.33894799265799, 34.549311410391155], [-77.338928117284, 34.549348172716435], [-77.33884287746378, 34.549508645847894], [-77.33855835474368, 34.54958276485474], [-77.33853013015727, 34.54958020579224], [-77.33826261035111, 34.549398115494135], [-77.33835979784644, 34.54925029164063], [-77.33839452788878, 34.54913432629579]], [[-77.3951101113231, 34.51268915134271], [-77.39505806279338, 34.51260431339888], [-77.39488007789183, 34.51259634063187], [-77.39447942670496, 34.512559792329455], [-77.39457681189202, 34.512301960314275], [-77.39502631762107, 34.51214546569981], [-77.39511790498011, 34.512342400941215], [-77.39533890972866, 34.51239154015988], [-77.39536996099079, 34.51252563101729], [-77.39527210907929, 34.512640136811385]], [[-77.26972721800823, 34.57881456784505], [-77.26974941588499, 34.57880096437133], [-77.26974428673428, 34.57878081815967], [-77.2697157221555, 34.578798315668294]], [[-77.33839319914917, 34.762292637834086], [-77.33837705462011, 34.76229175404349], [-77.33809809499364, 34.76227731716344], [-77.3378790543247, 34.76237337037248], [-77.33804399860679, 34.76246339296788], [-77.33834452198573, 34.76233834509522], [-77.338387009729, 34.76231392795209], [-77.33844770538465, 34.76229541018985]], [[-77.39939135775818, 34.5937417777051], [-77.39939149134766, 34.59374046799204], [-77.39919551770568, 34.59360794605562], [-77.39913806400907, 34.59362664218201], [-77.39899847484583, 34.593672066265505], [-77.39861028442202, 34.593853172821], [-77.3986069810395, 34.59385644491677], [-77.39872306702702, 34.59413360262561], [-77.39877947390387, 34.594253337582444], [-77.39880141445472, 34.594296252989025], [-77.39885459368949, 34.594397490086145], [-77.3989728660668, 34.59462244958607], [-77.39898412166696, 34.59464838674305], [-77.39899844626328, 34.59468493011891], [-77.39902170847893, 34.594668025353734], [-77.39901916020044, 34.59464333175544], [-77.39922883474928, 34.59443671288149], [-77.3992312781768, 34.594361894453726], [-77.39926267635263, 34.59418362604322], [-77.3992688573023, 34.59404947356384]], [[-77.21160972401933, 34.621589146418536], [-77.2118259519564, 34.62156400296068], [-77.2119537155425, 34.62154914599097], [-77.21181202144572, 34.62160513414955], [-77.21174196295377, 34.62181198699633], [-77.21171862152414, 34.62183343692602], [-77.21170625950037, 34.62184521302207], [-77.2116600700009, 34.62189132025162], [-77.21152756336653, 34.62193617963086], [-77.21157959808832, 34.62196452723005], [-77.21152789526951, 34.62201530036432], [-77.21141479624009, 34.62204510961348], [-77.21135620650291, 34.62213988335003], [-77.21132334082503, 34.62216208385598], [-77.21122281126327, 34.62218975648721], [-77.21124284940714, 34.622090461814366], [-77.21125455722529, 34.622032445508715], [-77.21126290121482, 34.62199109787063], [-77.21129910082065, 34.62181171696522], [-77.21131766849545, 34.62180174907914], [-77.21144058576836, 34.62160881416197]], [[-77.40307280303807, 34.509944523054926], [-77.40301000316364, 34.51039786949806], [-77.40239152953066, 34.51004290232215], [-77.40302106344609, 34.50990372811366]], [[-77.2590523546049, 34.58491992333676], [-77.25926804524039, 34.58504666546602], [-77.25895357547805, 34.58511516626842], [-77.2589157080182, 34.58505666239032], [-77.25894939439294, 34.58502159135924], [-77.25895711809477, 34.58498828937684]], [[-77.3500214765716, 34.69028939072959], [-77.35002095633077, 34.690268459411456], [-77.35008744047286, 34.69009527275385], [-77.35006610028216, 34.69025504985718], [-77.35006507663662, 34.6903075740904]], [[-77.43659554879677, 34.734173817646536], [-77.43620418534564, 34.73396815542386], [-77.43626244272184, 34.73362967918174], [-77.43645509918449, 34.73361420245468], [-77.43670362379179, 34.733602662429284], [-77.43698383108776, 34.73364287523175], [-77.43691889634114, 34.73377626811715], [-77.43695111757614, 34.73400694651088], [-77.43667488184619, 34.73409189406604]], [[-77.39012473983344, 34.65869952526613], [-77.39004771210932, 34.658720804499424], [-77.38978105667621, 34.65880490689351], [-77.38978037062324, 34.65880585258381], [-77.38975547065952, 34.65911514862448], [-77.38971498226945, 34.6592368739971], [-77.38967847907574, 34.65935929841058], [-77.3898081397829, 34.65940916333646], [-77.38997268645159, 34.659312670421], [-77.39014649047243, 34.65927387233379], [-77.3902657920483, 34.65930112978837], [-77.39043972264952, 34.65929428135564], [-77.3907316394048, 34.659336538964865], [-77.39101934116542, 34.6593587249952], [-77.39131550478336, 34.65938071269931], [-77.39133265926964, 34.65938294910235], [-77.39137245160826, 34.65938176437718], [-77.39165482161982, 34.65937664833956], [-77.39188275410707, 34.65931533104594], [-77.39214676195634, 34.65911910599137], [-77.3921660486625, 34.65910477109677], [-77.39201522908152, 34.65885392951019], [-77.39191647592072, 34.65881542967465], [-77.39154193500516, 34.65869952152335], [-77.3914232779049, 34.658662800742235], [-77.39119751775647, 34.658607658140994], [-77.39111034063527, 34.65858320963821], [-77.39075338334322, 34.658631364911386], [-77.39066398767169, 34.65862861765982], [-77.39042734923135, 34.658833930933156]], [[-77.45447491760314, 34.67720856359675], [-77.4541107677907, 34.67737101591703], [-77.45422972429694, 34.67793595208743], [-77.45425217788663, 34.6779867942518], [-77.45470958666667, 34.67806460154031], [-77.4548164362877, 34.67813348999776], [-77.45498992214242, 34.678145774604225], [-77.45499483044354, 34.67814545183441], [-77.45499581119059, 34.67814409599374], [-77.45509653497464, 34.67802525580293], [-77.45509904425971, 34.67801677496493], [-77.45509032162269, 34.677932524121104], [-77.45504948419124, 34.67784871729819], [-77.45485672329923, 34.677814476490994], [-77.45481818572283, 34.677618281536475], [-77.45463995327307, 34.677434676755894]], [[-77.47357665846458, 34.485871028980974], [-77.47350217379613, 34.48589327319438], [-77.4735368948363, 34.485851716266836], [-77.47357343901292, 34.48585602192516]], [[-77.35760970497726, 34.61236988248373], [-77.35743344385563, 34.612332982293466], [-77.35744559448374, 34.61269767065992], [-77.35760951552544, 34.61274010187202], [-77.35777415404657, 34.6127210567408], [-77.35782818164009, 34.61270153676893], [-77.35782163563637, 34.612663116084136], [-77.35784644027694, 34.612463416633645], [-77.35780677965606, 34.6123988506629], [-77.35771259328878, 34.61237185960612]], [[-77.22120692930334, 34.61320207275996], [-77.22179697798212, 34.61327641187778], [-77.22156913708312, 34.6134199501725], [-77.22169763574627, 34.613497245066995], [-77.2216193387678, 34.61356900709866], [-77.2215848605696, 34.61365687309976], [-77.22149351284698, 34.61372112016444], [-77.22138301006466, 34.61368750135432], [-77.22123443690236, 34.61381629602835], [-77.22119627067835, 34.61362618946134], [-77.22126028953356, 34.61347713952246]], [[-77.4438093990976, 34.73491716142695], [-77.4439162933146, 34.73499117830001], [-77.44396062617625, 34.73498900216301], [-77.4441137267262, 34.734973328756354], [-77.44421310712244, 34.73492723254704], [-77.44421039212784, 34.734868454713634], [-77.44419700490133, 34.73478185283835], [-77.44417567971671, 34.73475917548937], [-77.44412473400297, 34.73475660468206], [-77.44404503796142, 34.73475307106963], [-77.44401671149635, 34.73475461388415], [-77.44393907362803, 34.73475846420173], [-77.4438539350623, 34.734763215781186], [-77.44382290377628, 34.73476407306701], [-77.44349429821479, 34.73489823346637], [-77.44344427188949, 34.73489327562779], [-77.44320323611959, 34.73479621364083], [-77.44309314306975, 34.734815472917184], [-77.44298197585525, 34.73488583581236], [-77.44296531471177, 34.73494158752101], [-77.44302593466529, 34.7349576311196], [-77.44316735036054, 34.73492025496774], [-77.44339753108164, 34.73498444063213], [-77.44346777543862, 34.73498991226751], [-77.4435115329594, 34.7350031278025], [-77.4436210274676, 34.73499989533052]], [[-77.46159490361892, 34.59571386795126], [-77.46158821607371, 34.59575171664257], [-77.46157020864767, 34.59580341306888], [-77.46154855783071, 34.596144283042364], [-77.46138289500193, 34.59629925134683], [-77.46127526298133, 34.5964660108179], [-77.46117877634727, 34.59661906475485], [-77.4612166192006, 34.596860446749446], [-77.46090501561086, 34.59703339775424], [-77.46084215261533, 34.59708438351679], [-77.46076404605498, 34.59724675094578], [-77.46073109025609, 34.59730994959589], [-77.46071911591886, 34.59731426415148], [-77.46069736400061, 34.597328314530536], [-77.46048821278531, 34.597430815425454], [-77.46037187915981, 34.59758783368781], [-77.46055763700139, 34.597684300312636], [-77.46071758306456, 34.59776082679268], [-77.46107671961596, 34.59774055590814], [-77.46109720951112, 34.59773513150481], [-77.46114382648435, 34.59769670401773], [-77.4613752232695, 34.59753530445243], [-77.46150873207502, 34.59731843854753], [-77.46154979263625, 34.59725174098285], [-77.46168895200293, 34.59702569525017], [-77.4617466515954, 34.596826298828894], [-77.46193299239033, 34.59649170647346], [-77.46193300390664, 34.59627413635812], [-77.46189244321508, 34.59604615883472], [-77.4616816456763, 34.59578440378288], [-77.46163955273664, 34.59571859048435]], [[-77.39756523419686, 34.508210618739675], [-77.39768870238073, 34.50827354777333], [-77.39794750120134, 34.50848352724471], [-77.398059461003, 34.50870969440922], [-77.3981621032382, 34.50880383788279], [-77.39811091806945, 34.50905455133264], [-77.39774959281377, 34.50911638886302], [-77.39754386128575, 34.50916269103634], [-77.39731581497684, 34.50916446400802], [-77.39681332444147, 34.50937926095537], [-77.39676300536067, 34.50939221979963], [-77.39675384587213, 34.50939364398939], [-77.3967413756912, 34.50939737540937], [-77.3966923868793, 34.50939671896234], [-77.39667936873758, 34.5093515403268], [-77.39659231496357, 34.508921493436134], [-77.39677133022539, 34.50861511413413], [-77.39682951468863, 34.50843130864056], [-77.39684328377696, 34.5083955937025], [-77.39717387316858, 34.50816391024192], [-77.39736971491408, 34.508197423039405]], [[-77.33975636610636, 34.64888873943381], [-77.33991386371044, 34.64896659801576], [-77.33980630115876, 34.64879439093763], [-77.33973483502366, 34.64878159783098], [-77.33957430120358, 34.64882623127924]], [[-77.37771714945674, 34.59637076575172], [-77.37795467244344, 34.59615086971144], [-77.37813680941157, 34.59598330155647], [-77.37813768085131, 34.59592741214725], [-77.37779190924954, 34.59566133831748], [-77.37771736576579, 34.59560430697607], [-77.37736277398136, 34.59606740982567]], [[-77.36817055626298, 34.60451742274876], [-77.3680756482963, 34.604622637701986], [-77.36818948165266, 34.60467734136492], [-77.36825549564624, 34.60464583832696], [-77.36828760525164, 34.60462669627035], [-77.36838052535639, 34.60457873647101], [-77.36851758211589, 34.604416660327814], [-77.36864971692638, 34.60443534768312], [-77.36879926175584, 34.60435738459557], [-77.36886882969485, 34.604319838822654], [-77.3688793180884, 34.604259661730005], [-77.36876651714104, 34.60409859645802], [-77.36876357433667, 34.60397656486144], [-77.36851228360165, 34.60398697920076], [-77.36844303168895, 34.60414517845015], [-77.36836513280608, 34.60427433854622], [-77.36825558601778, 34.60441393413866]], [[-77.38831368585096, 34.59406446875304], [-77.38824525324802, 34.59419595347666], [-77.38835814630687, 34.59415715825736], [-77.38837824749841, 34.59424577343436], [-77.38851511798569, 34.59420454696411], [-77.38855518425905, 34.5941924786505], [-77.38860811820732, 34.5941772756059], [-77.38868870371155, 34.59415423872663], [-77.38875224186258, 34.59409880922849], [-77.38882877782873, 34.59407265346704], [-77.38894384281278, 34.593973611244], [-77.38907892769178, 34.59360225817531], [-77.38875230769503, 34.59366389072194], [-77.38869227008205, 34.593649999900265], [-77.38847746327662, 34.59374476431803], [-77.38835817594382, 34.59396716082524]], [[-77.36981693646105, 34.59331251511787], [-77.36966322697415, 34.59269311185793], [-77.36917947751724, 34.592717326141155], [-77.36914405535337, 34.593326938261995]], [[-77.3332762720548, 34.65643052611393], [-77.33326662371242, 34.656426990994674], [-77.33324342929888, 34.65641849264382], [-77.33317770599021, 34.65645582732418], [-77.33323955967677, 34.65650318585225], [-77.33342818277245, 34.65684345974892], [-77.33371065726197, 34.657043407991736], [-77.33386674902945, 34.657000402694436], [-77.33403030650571, 34.65704070594161], [-77.33422874289974, 34.65684130079376], [-77.33429671488818, 34.65677301301673], [-77.33431659287558, 34.65675306427569], [-77.33435282429734, 34.656716613274625], [-77.33450433724808, 34.656295837343734], [-77.33428219874013, 34.65670076352392], [-77.33426322281638, 34.65670324053684], [-77.3339532092041, 34.65665697118726], [-77.33370222200863, 34.656735436571594], [-77.33364701924837, 34.65672665894942]], [[-77.39505581988179, 34.62144148007954], [-77.39491037626823, 34.62129151456279], [-77.39475310330457, 34.6212560726714], [-77.3946616177561, 34.62123553961317], [-77.39459745048197, 34.621249093516134], [-77.39451866248228, 34.62119134699979], [-77.39432820451249, 34.6211533335651], [-77.39426741191431, 34.62111595959951], [-77.3935788821816, 34.62058526401209], [-77.39360539021831, 34.6213230354571], [-77.39358808236805, 34.621443054929095], [-77.39352650847005, 34.62175897974235], [-77.39381892191636, 34.62177522251526], [-77.39401026990264, 34.621836904740135], [-77.39426736693129, 34.62180577873669], [-77.39449074638597, 34.6218039336107], [-77.3947705941593, 34.62200415952488], [-77.39496307359194, 34.62207625341468], [-77.3950557848953, 34.622071822451524], [-77.3952092538042, 34.62220018275244], [-77.39530755075799, 34.62219788808386], [-77.39544999535643, 34.6222109215785], [-77.39561640083035, 34.62209447780157], [-77.39558198997273, 34.62202930244058], [-77.39549373348264, 34.621899881582486], [-77.39545001489822, 34.621824700860856], [-77.39516492232882, 34.62182977038448], [-77.39516751029225, 34.621522353379085]], [[-77.24601868763648, 34.59282469485365], [-77.24610306813132, 34.592616968008016], [-77.24626604625576, 34.5927320996905], [-77.24625130151693, 34.592748827629315], [-77.24620560604856, 34.592973711564035], [-77.24632764092168, 34.59307643322137], [-77.24629368430668, 34.593115205619085], [-77.24624084918707, 34.593160510177206], [-77.24608274184871, 34.59319970582185], [-77.24602457970026, 34.59320450546028], [-77.2459928560296, 34.593234024789766], [-77.24594952348212, 34.59321797588324], [-77.24580288550115, 34.59300729970878], [-77.24578278076389, 34.59294039844711]], [[-77.4177958441453, 34.75506166980276], [-77.41777495740145, 34.75507301345306], [-77.41770168612645, 34.75507642735667], [-77.41709449144483, 34.755208017150096], [-77.41681845367927, 34.75496071601857], [-77.41686501393066, 34.75528007059529], [-77.41692924487265, 34.75539847354879], [-77.4168559489323, 34.7558359882093], [-77.4168779974257, 34.75595533228051], [-77.41693453579603, 34.75628899443754], [-77.41707191376597, 34.756470555301526], [-77.4172201588069, 34.756988153652046], [-77.41730583762057, 34.757026921721405], [-77.41724435642811, 34.75708991002006], [-77.41731591920593, 34.757269424445205], [-77.41739018061445, 34.757438122455746], [-77.41740429261043, 34.75745951810586], [-77.4175057482258, 34.75761312324658], [-77.41756123840894, 34.75767021944104], [-77.41767236897176, 34.75764112660453], [-77.41772967347923, 34.75753907146725], [-77.41775441731193, 34.75735790062859], [-77.41776099089647, 34.757283526728294], [-77.41775764913314, 34.757269307801074], [-77.41774766842258, 34.757226840767714], [-77.41766544637007, 34.756876995713036], [-77.41761449318481, 34.75666019131375], [-77.4176947201617, 34.756392373782184], [-77.41811891821868, 34.7557952030256], [-77.41815020356154, 34.75572926047061], [-77.41819579358985, 34.7557151039556], [-77.41823590775297, 34.755695788036206], [-77.4188057709404, 34.75539930170567], [-77.41844848004057, 34.75496196518005], [-77.41781769405837, 34.7550539637331]], [[-77.37430968751504, 34.55928270095508], [-77.37435868868437, 34.55937379443913], [-77.37439492167292, 34.55936231131413], [-77.37445532543106, 34.55933721445133], [-77.3745767342575, 34.55919036283055], [-77.37460338304014, 34.55913229747708], [-77.37466806041243, 34.55909427723158], [-77.37457679607175, 34.559011894397685], [-77.37443405923817, 34.55912799829096]], [[-77.30897960959675, 34.55399727059322], [-77.30882626425168, 34.55387248740228], [-77.3089879976227, 34.5536401755908], [-77.30927092129679, 34.55380865258502]], [[-77.34816168386573, 34.625640878632375], [-77.34809745889388, 34.6259379877181], [-77.34821054639175, 34.62611860909607], [-77.34846991227151, 34.626348588910744], [-77.34865692719676, 34.62627675356759], [-77.34894563625082, 34.62637283080473], [-77.3489830067708, 34.626306610100194], [-77.34896552791236, 34.62601491670608], [-77.3488907813688, 34.625847776803155], [-77.34881403126805, 34.625667008976144], [-77.34857430816024, 34.6256466479655], [-77.34852995062231, 34.625645016100535], [-77.34824501945467, 34.62564572497825]], [[-77.3978162838736, 34.592363863327485], [-77.3979752633083, 34.592499776151065], [-77.39808649699586, 34.592521575863714], [-77.39821035265976, 34.59255942440351], [-77.39826354395144, 34.59257216806419], [-77.39853331883111, 34.59251394086988], [-77.39852442738682, 34.592379552888445], [-77.39848056282247, 34.59230705687214], [-77.39847106041897, 34.592281108750214], [-77.39840740392069, 34.592214423798644], [-77.39838711948791, 34.59220892982607], [-77.39835672827611, 34.59219145980779], [-77.39826257653041, 34.59214879434073], [-77.39821037069888, 34.59209724981403], [-77.3978627028321, 34.592212725698744], [-77.39781629753918, 34.59205216379485], [-77.39771113933918, 34.592171303889586], [-77.39776527670315, 34.592331740702456]], [[-77.36353761263709, 34.770737710758176], [-77.3635402262075, 34.77049971614302], [-77.36344884191016, 34.770147422073336], [-77.36342813272955, 34.76994191528115], [-77.3633694226048, 34.77011962824605], [-77.36336117257027, 34.77012800043979], [-77.36318944902887, 34.77056573596396], [-77.36318303703538, 34.770613622708616], [-77.36303077065848, 34.77068057681109], [-77.3630404719124, 34.7707077616484], [-77.36314711685435, 34.770870880838324], [-77.36315930713275, 34.770867551596], [-77.36323738903046, 34.77091225550727], [-77.36344403698143, 34.770986016133556], [-77.3634827515635, 34.77104547904793], [-77.36350396883185, 34.77096106674482]], [[-77.34477964866508, 34.68881304523873], [-77.34477885922313, 34.68880796830061], [-77.34478201766697, 34.68878296092693], [-77.34477314053046, 34.6888087531358], [-77.34477349892603, 34.688809390246455], [-77.34477319596431, 34.688813335569584]], [[-77.37880990829446, 34.527325374930925], [-77.37896814509308, 34.527555894979876], [-77.3785014054838, 34.52755898456126], [-77.37845124351827, 34.527452774402924], [-77.37850403826707, 34.527330125930334]], [[-77.45408461023496, 34.67692676497384], [-77.4541148613941, 34.67706276235128], [-77.45404245330855, 34.67725032715392], [-77.4544402880624, 34.67717651086186], [-77.45423681423655, 34.677012829816896], [-77.45419574672023, 34.67689508708605], [-77.45410407548151, 34.676815439082496]], [[-77.42569271019183, 34.62593817772107], [-77.42570261910505, 34.62593896319422], [-77.4257084798515, 34.625941601759706], [-77.42571096009557, 34.6259358286542], [-77.42571052793198, 34.625933101068334], [-77.4257116118754, 34.62592797512666], [-77.42552533458633, 34.625616633609766], [-77.42577346833266, 34.62533824478108], [-77.42584666280493, 34.62515584830447], [-77.42591239566718, 34.62507714605667], [-77.4259667283768, 34.624963565780675], [-77.426124026298, 34.624967023226645], [-77.42629742884166, 34.62490219946996], [-77.42645919100569, 34.62484172700017], [-77.42652148556651, 34.62477895510709], [-77.42661837774895, 34.62470481916128], [-77.42666485105966, 34.62463250227742], [-77.42674691256443, 34.62453010655528], [-77.42662411321228, 34.62448358616359], [-77.42647185551445, 34.62454200861309], [-77.42638713403015, 34.624578322431475], [-77.42602662951802, 34.6246290030885], [-77.42588355601049, 34.62465952201316], [-77.42533450686044, 34.624565113073125], [-77.42533199208059, 34.624565303711584], [-77.4253300062108, 34.624566149918955], [-77.42482610127402, 34.62463804749843], [-77.42478243070843, 34.6249913129587], [-77.42474261852463, 34.625101182175314], [-77.42464004589317, 34.625251202021516], [-77.42451788043306, 34.62543344163941], [-77.42445218835138, 34.6254951719413], [-77.42433541135775, 34.62558643186024], [-77.42409078523258, 34.625794271252104], [-77.42391195572718, 34.625925518660075], [-77.42387043117427, 34.625949807465744], [-77.4237905797354, 34.62599008454589], [-77.42363148526668, 34.62603737587546], [-77.42346260802834, 34.62620432901383], [-77.42337719718388, 34.62635778131357], [-77.42325391206779, 34.62657927798518], [-77.42321836406383, 34.62664314373421], [-77.42327772259254, 34.62666632764796], [-77.42353036539518, 34.62655425460686], [-77.42368169105748, 34.62646437861633], [-77.42374982295732, 34.62647000444082], [-77.42379617564721, 34.6264402618493], [-77.42404711460887, 34.626282569806804], [-77.42420418977888, 34.626208857338185], [-77.42442513615309, 34.62610517039636], [-77.42467017101782, 34.625990178817304], [-77.42494522889967, 34.625950342271835], [-77.42518163147616, 34.62593776402734]], [[-77.37011170846668, 34.59414004004084], [-77.36983628542643, 34.593357621258], [-77.3695342949128, 34.59422320085706], [-77.36983589373585, 34.594393143536394]], [[-77.33482942562709, 34.65623712370211], [-77.33483815508062, 34.65622803661774], [-77.33496203364803, 34.65602103866897], [-77.33496120231828, 34.65596557136157], [-77.33493596345987, 34.65599670089392], [-77.33482702871865, 34.6562251941355], [-77.33459532409918, 34.65626135110305]], [[-77.43817158979213, 34.74123422367338], [-77.43814289034215, 34.74147138807091], [-77.4381082559885, 34.741504614652], [-77.43809179132394, 34.74159329321062], [-77.438024256479, 34.741615223450935], [-77.43795160305953, 34.741622588953796], [-77.43793833405746, 34.741614716221406], [-77.437919019926, 34.74156937105677], [-77.43792492100775, 34.74153499192022], [-77.43794236958045, 34.74150143140406], [-77.43801752346198, 34.7414275873117], [-77.438114092992, 34.74120658662675], [-77.43813615707938, 34.74117635169548], [-77.43818442253557, 34.74117724527996], [-77.43818144495636, 34.74120534226723]], [[-77.34872149900711, 34.65618697302761], [-77.34868211397803, 34.65635893371427], [-77.34884476593601, 34.65630201650315], [-77.34892454599019, 34.656270246359], [-77.34900991827655, 34.65628404643337], [-77.34916227207975, 34.65626475146833], [-77.3490950508605, 34.656115479915286], [-77.34902963770404, 34.65614096616784], [-77.34890465825039, 34.656171349378454], [-77.34877302635776, 34.65617892471553]], [[-77.39939250973646, 34.59572600063083], [-77.39953182158082, 34.59563080356189], [-77.39939251499119, 34.59549183938287], [-77.39937439760729, 34.59546074810011], [-77.39931035738192, 34.59545046772627], [-77.39930679459368, 34.59535862743927], [-77.399218401489, 34.59522674875005], [-77.39919547717079, 34.59518589634868], [-77.39915331216919, 34.595215412076385], [-77.39915195194206, 34.5953079227047], [-77.39914938676341, 34.59547369097103], [-77.3991289430883, 34.59561725828695], [-77.3991212140585, 34.595770033330446], [-77.39925448856674, 34.595734405046045]], [[-77.22261972412453, 34.61260133262218], [-77.22259467577834, 34.61246422513294], [-77.22256840763562, 34.61232044345765], [-77.22293306231042, 34.612128173741525], [-77.22295186595161, 34.612124508622124], [-77.22323767818028, 34.61218652138418], [-77.2231184611912, 34.61227273138125], [-77.22311108691802, 34.61236328867535], [-77.22312922653644, 34.61241076450887], [-77.223107990794, 34.612427794270985], [-77.22300797473308, 34.612472988500286], [-77.22298808363503, 34.61248548969543], [-77.22272433266632, 34.61256843525395], [-77.22271610602719, 34.612572264437226], [-77.22263924309988, 34.612708171420664]], [[-77.45070193095489, 34.61229540263294], [-77.45084563922396, 34.61213022839879], [-77.45085298971865, 34.612119619554214], [-77.45080967370163, 34.61199887900683], [-77.45075286595967, 34.61209062881474], [-77.45055794166775, 34.612039543355415], [-77.45036312190467, 34.612259325518], [-77.45036022679062, 34.612262947408084], [-77.45035846175843, 34.61227104099811], [-77.45026643034197, 34.612471529879116], [-77.45042927217202, 34.61252965026019], [-77.45063659420819, 34.61236596327199], [-77.4506433735358, 34.612362016942654], [-77.45064553284892, 34.61235943629029]], [[-77.33289450899765, 34.570625642887315], [-77.33310235932206, 34.570281790844035], [-77.33281097892805, 34.57028485359304], [-77.33267466360965, 34.570510560672844], [-77.33263647965433, 34.57066273189082], [-77.3325266858509, 34.57079717689389], [-77.33254371615524, 34.57096343927731], [-77.33266895217298, 34.570930146693684], [-77.33281058225722, 34.570757724150916], [-77.33286666788055, 34.57069001846919]], [[-77.44184753330842, 34.68602423854533], [-77.44180128999162, 34.68609895480968], [-77.44197501160394, 34.68613978183584], [-77.44198093096423, 34.686070876082006], [-77.4419851113883, 34.6860222127586], [-77.44199258707414, 34.68593519258893], [-77.44197279008364, 34.68586614222538], [-77.44196355104793, 34.68580800942432], [-77.44186385735554, 34.68577119714984], [-77.4418116029565, 34.685869570881756], [-77.44181076714077, 34.68587134406388], [-77.4418103236418, 34.685871979307294]], [[-77.38949711371002, 34.51132105160367], [-77.38941515810781, 34.51142632904711], [-77.38925102034068, 34.5114742599802], [-77.38912067508782, 34.51146881996962], [-77.38904487175516, 34.511365075004946], [-77.38899005082374, 34.511074390987744], [-77.38951765936774, 34.51100692368138]], [[-77.37343294849923, 34.67853584155246], [-77.37319804996602, 34.67851907271847], [-77.3731387369825, 34.67857629319997], [-77.37312990798135, 34.67875401147487]], [[-77.36474032733396, 34.682254775240494], [-77.36492410523172, 34.68236656787727], [-77.36509759196946, 34.682571446673954], [-77.3645687110804, 34.68264016987596]], [[-77.34248224908256, 34.538363455054885], [-77.34249799404958, 34.53826172890901], [-77.34252403960727, 34.53814725955302], [-77.34266338809982, 34.53823793491568], [-77.34268138976677, 34.53825802956226], [-77.34271596044312, 34.53833613748833], [-77.34277349762424, 34.538466913103576], [-77.34278840214793, 34.53865975007833], [-77.34280485561408, 34.53870722061309], [-77.34276005001279, 34.53874708047258], [-77.34274791558403, 34.53896023139653], [-77.34273974467905, 34.53898559233262], [-77.34269929349156, 34.539057899564696], [-77.34268125059553, 34.53898216482686], [-77.34268795233798, 34.53896885791407], [-77.34265611596676, 34.53894488344833], [-77.34265428819111, 34.53876122124123], [-77.34266670718203, 34.538727095301724], [-77.34246386023193, 34.538663955997926], [-77.34247240364417, 34.53860705892828], [-77.3424722436413, 34.538510252286784], [-77.34248250423481, 34.5384085070798], [-77.34247549941892, 34.53838737445904]], [[-77.34393330114503, 34.53906979400088], [-77.34413599127772, 34.53908821732359], [-77.34416446121264, 34.539182314657616], [-77.34406532405873, 34.53926033637535], [-77.3441893546628, 34.539442825501695], [-77.34421848639485, 34.53948311976904], [-77.34424556485357, 34.53948800483314], [-77.34425734536131, 34.539587680462844], [-77.34428152955766, 34.53971886888762], [-77.34427195212356, 34.53973142440987], [-77.34425194116963, 34.53982190124172], [-77.34419402804892, 34.53994188768411], [-77.34417565048673, 34.53997892151543], [-77.34420767984376, 34.53999936245518], [-77.34424507496755, 34.540119486925406], [-77.34428455291297, 34.54020807273391], [-77.3442421618619, 34.54024574298228], [-77.34395346498957, 34.54032157913459], [-77.34373126736364, 34.540359820252455], [-77.3434543384695, 34.54036161691913], [-77.34342966485312, 34.54034666826777], [-77.3434296940537, 34.54033106183379], [-77.3433327464919, 34.54017865143156], [-77.34325856843556, 34.5401108617872], [-77.34327702044608, 34.53999231077268], [-77.34346971127037, 34.539695620966974], [-77.34353227216175, 34.53961976944352], [-77.34354790591064, 34.53957959732319], [-77.34359617229083, 34.53949665220713], [-77.34375850727139, 34.539233104180006], [-77.34387577790767, 34.53911086887255]], [[-77.3453989941993, 34.53065078135075], [-77.34533232215564, 34.53056025684887], [-77.34550828086671, 34.53056808293544], [-77.34563332170929, 34.530706784997804], [-77.34563682077174, 34.53071035253163], [-77.3456329914488, 34.530715061527815], [-77.34555662291761, 34.53091784033238], [-77.34541986276916, 34.53087633817881], [-77.34539540920386, 34.53083936095164], [-77.34536254481792, 34.53074981980146]], [[-77.3706652651392, 34.516562492482365], [-77.37041157454783, 34.516303422514504], [-77.37021401011462, 34.516342901426356], [-77.36996326071909, 34.51664288586982]], [[-77.44183242787173, 34.68441140930912], [-77.44181654120337, 34.684476056259655], [-77.44175590465682, 34.684473255696076], [-77.44173808226397, 34.68456291356268], [-77.44175954940113, 34.68459588959505], [-77.4417409631831, 34.68463575252859], [-77.4417486043576, 34.68478172487628], [-77.44192207165129, 34.68493175836874], [-77.44189911250125, 34.6847188896136], [-77.44191167408167, 34.68464907549685], [-77.4419093149902, 34.68453707494098], [-77.44191542061779, 34.68448887683093]], [[-77.33289133786728, 34.5345633502086], [-77.33312966408164, 34.53455534672714], [-77.33327044809778, 34.534276555915355], [-77.33289298339426, 34.53444010284885]], [[-77.30312425884208, 34.55395649440241], [-77.30309057080015, 34.5539677398803], [-77.3028921997558, 34.55411305932957], [-77.30288281732867, 34.554118458016106], [-77.30286114912185, 34.554097933866736], [-77.3029302727252, 34.553984332990865], [-77.30309535341502, 34.55376474430086]], [[-77.42419067805474, 34.52525628726964], [-77.4241622274546, 34.52532306139269], [-77.42433943296935, 34.525282102029635], [-77.42434921565979, 34.52523336772507], [-77.42441096109013, 34.52513453582369], [-77.42435348305705, 34.525110329000924], [-77.42444231758923, 34.525083831409134], [-77.4244545197508, 34.52498076520615], [-77.42430760770287, 34.52501836622684], [-77.42426781051257, 34.525090828083286], [-77.42424689009451, 34.52512573904825], [-77.42420845375501, 34.52521844998983]], [[-77.35210526318222, 34.729773836878294], [-77.35211839652936, 34.72971534159574], [-77.3520662708303, 34.729712125031305], [-77.35205375200873, 34.72971135250637], [-77.3520313707218, 34.72970836506522], [-77.35190261633787, 34.72971624369682], [-77.35185479449603, 34.72975152158966], [-77.35188514051261, 34.729776410844174], [-77.35201953067435, 34.729748080380254], [-77.35204277726488, 34.72974913745426]], [[-77.43831673466713, 34.74371427625203], [-77.43837048866126, 34.743742464427605], [-77.43837462487018, 34.74377632705114], [-77.43838130832042, 34.74379081131326], [-77.43838323730589, 34.74382289055364], [-77.43835054627836, 34.74381137603801], [-77.43833037164055, 34.743794788960855], [-77.43831072069784, 34.743766150226996]], [[-77.42434610616657, 34.74335880973688], [-77.42434985075958, 34.743376819445274], [-77.42435256814817, 34.74343358883166], [-77.42436241667662, 34.74359476758784], [-77.42436264601176, 34.74364412456158], [-77.42441486130369, 34.74377209488994], [-77.42442455733939, 34.74379204093333], [-77.42455084912363, 34.7438474955249], [-77.42455369973388, 34.743846259827315], [-77.4246322426454, 34.74379350759841], [-77.4246691353639, 34.74375124292153], [-77.42468885615811, 34.7436818159491], [-77.42467281275353, 34.74347299464566], [-77.42466865660741, 34.743449262448344], [-77.42443872531871, 34.74333975456622], [-77.42443868701008, 34.74313618323045], [-77.42434598320713, 34.74332581835275]], [[-77.39624138545415, 34.62285349222563], [-77.3962476926376, 34.622862585458996], [-77.39631989727835, 34.62296668486266], [-77.3963781116849, 34.62304606046959], [-77.39643550523334, 34.623129717265414], [-77.39657472004484, 34.62301770708153], [-77.39657732679142, 34.62295777829413], [-77.39649204062711, 34.62275647185723], [-77.3964355199962, 34.622742026153404], [-77.39637074931565, 34.62269231016153], [-77.39629666216118, 34.622633234950875], [-77.39626108907268, 34.62261394512875], [-77.39623841573135, 34.622595384707125], [-77.39616336658368, 34.62265245756069], [-77.39620420944034, 34.622683403566185], [-77.39623840584267, 34.622838786389096], [-77.39624413685415, 34.62284692284469]], [[-77.39657651957266, 34.53065651676729], [-77.39655970337282, 34.53054143067152], [-77.39641601501022, 34.530578472650014], [-77.39639008333418, 34.530669914301576]], [[-77.42100208603532, 34.56860598012398], [-77.42106128847807, 34.56864572182975], [-77.42113209484734, 34.56865938536259], [-77.42118089195463, 34.56864525086163], [-77.4212582584398, 34.56860057803215], [-77.42139234616594, 34.56848579651976], [-77.42137121041347, 34.56839833852219], [-77.42135658136289, 34.5681726028248], [-77.4211337448236, 34.568176775482975], [-77.42106118768464, 34.56818230453403], [-77.4209438797767, 34.568338302203685], [-77.42092952383211, 34.56841071602828], [-77.42093211074533, 34.56855229525652]], [[-77.43570033580355, 34.620760047677564], [-77.43543971246598, 34.6205758647366], [-77.43537186457694, 34.620521586212874], [-77.43528329725092, 34.62043582630676], [-77.43523278442304, 34.620396409918044], [-77.43519117903386, 34.620462082381174], [-77.43511155915158, 34.62055398023156], [-77.43512569573632, 34.62059390950725], [-77.43517424318003, 34.62065153060841], [-77.43523440697231, 34.62068958643762], [-77.43532521954614, 34.62073418938475]], [[-77.44239570610274, 34.61775263520866], [-77.44249861307955, 34.61764050958743], [-77.44236523759581, 34.61764132780563], [-77.44233223925755, 34.617687942797644]], [[-77.33947186661248, 34.76198497292511], [-77.33950624081032, 34.76203647343159], [-77.33952326271526, 34.76203050389738], [-77.33953639056946, 34.76201329447914]], [[-77.44179533475058, 34.685167436215615], [-77.4418000843841, 34.685206641102354], [-77.44181279032881, 34.685311514876304], [-77.4419169009205, 34.6852971404653], [-77.4419077694375, 34.68520674534497], [-77.4419077445031, 34.685161694514896], [-77.44192210968663, 34.6849334894003], [-77.44178491366445, 34.68508142030737]], [[-77.44192688987935, 34.68560011044107], [-77.44184138808794, 34.685547556619014], [-77.441850094443, 34.685632171331044], [-77.4418600886771, 34.685701908815346], [-77.44195319253299, 34.685730288639974]], [[-77.45594486504461, 34.59811159228759], [-77.45594358826449, 34.59811080107492], [-77.45569674757002, 34.59795783556601], [-77.45553764982745, 34.59785924303821], [-77.45544616367036, 34.59780709597476], [-77.45533825570996, 34.5978197881992], [-77.45524405416276, 34.59782567607563], [-77.45519185859256, 34.59784935839063], [-77.45511913648541, 34.597978452558465], [-77.4551190195926, 34.597978668389224], [-77.45511902473964, 34.5979787195485], [-77.45511899798694, 34.59797889544528], [-77.45510475524866, 34.59812857303373], [-77.45507633417859, 34.59825940385463], [-77.4552254169342, 34.59831757894763], [-77.45551099378801, 34.59845063985907], [-77.45593595105568, 34.59812249433942], [-77.45594949530143, 34.598114461593774]], [[-77.44525459809259, 34.74654429273699], [-77.44542261646237, 34.74653003147259], [-77.44529206073824, 34.74641480316636], [-77.44510145844848, 34.74641785525574]], [[-77.39647527040276, 34.53160053609599], [-77.39653458698572, 34.53152627186178], [-77.39637266112733, 34.531550643640074], [-77.39640777966564, 34.531622324760846]], [[-77.39584421061772, 34.622272413058774], [-77.39583348539364, 34.622263906785534], [-77.39584100704556, 34.62227437356127], [-77.39584421042949, 34.62227653938589], [-77.39584548292368, 34.62227372810659]], [[-77.44157492422258, 34.73820816518561], [-77.44156687298167, 34.73819540556882], [-77.44145176702227, 34.73802840313387], [-77.44146362755613, 34.738013089742125], [-77.44150176534006, 34.73800754150345], [-77.44158313069438, 34.73817980188759], [-77.44158711434368, 34.73820247714625]], [[-77.3567373148972, 34.57047768347901], [-77.3566157750455, 34.57060992843668], [-77.35646344500144, 34.570646636772224], [-77.35644969210912, 34.570710462918846], [-77.35642286144217, 34.570666635169], [-77.35640547289978, 34.570640199379625], [-77.35636334094798, 34.57055311819574], [-77.35630017065877, 34.570443080704266], [-77.35644992481171, 34.57029149502489], [-77.35658519047264, 34.57033556727916], [-77.35665986106633, 34.57037730505588]], [[-77.43595880447945, 34.621128140194855], [-77.43594940157783, 34.62098445279665], [-77.43590498270635, 34.620931470005736], [-77.43588998938057, 34.62100138709353]], [[-77.3832362305726, 34.58860026732008], [-77.38323063546761, 34.58864103324096], [-77.38323096479355, 34.58864664809582], [-77.38321936726149, 34.58874879879045], [-77.38323619147744, 34.58877694731934], [-77.38326745339799, 34.58881431813106], [-77.38330729909636, 34.58881274430274], [-77.38332361829319, 34.58874572619914], [-77.38330590244153, 34.58873632531489], [-77.38327544066544, 34.58867683835212], [-77.38325066018231, 34.588638146805415]], [[-77.33290910122176, 34.57752842266379], [-77.33291198484505, 34.57751268327031], [-77.33289690042417, 34.57751702022025], [-77.33280491690489, 34.57753228943988], [-77.33278974083713, 34.57753946245819], [-77.33280490933348, 34.577541368533176], [-77.33289805540696, 34.577529678521124]], [[-77.43561372913007, 34.62178845150967], [-77.43559997711871, 34.62182253435242], [-77.43558496803253, 34.621860942254116], [-77.43556711532503, 34.62192421146146], [-77.43561025941855, 34.6219673971996], [-77.43562937689194, 34.62199877601119], [-77.43563655883358, 34.62202643336931], [-77.43568311191089, 34.62204198294541], [-77.43569236066342, 34.6219961313471], [-77.43569727276375, 34.62197942396772], [-77.43571116726869, 34.62193524789987], [-77.43572668829333, 34.621878729086916], [-77.43568034163475, 34.621837065597], [-77.4356738446599, 34.621801480175996]], [[-77.3332644341844, 34.53116765034442], [-77.3333600278605, 34.53125222171173], [-77.33326147576244, 34.53129512280123], [-77.33323196099425, 34.53127063680331]], [[-77.34092309807389, 34.626018034581875], [-77.34086694357751, 34.62607196514435], [-77.34095900544413, 34.6261967659968], [-77.34097756518841, 34.62605677900585]], [[-77.34386595441946, 34.629247214744545], [-77.34397482001992, 34.62925860315997], [-77.34400420585942, 34.62922823258337], [-77.34406986817584, 34.62915972338728], [-77.34409113168121, 34.62904097416409], [-77.34410626528737, 34.62900322001892], [-77.3440782880933, 34.62897705959161], [-77.34400477220248, 34.62901715531514], [-77.34394830650466, 34.62904621938367], [-77.34394521178878, 34.62911126053126]], [[-77.37770767765869, 34.631530231078486], [-77.3779046084075, 34.631440264594644], [-77.37770770877393, 34.63140910148405], [-77.37765039711535, 34.63132633997199], [-77.37754461530005, 34.63131646741228], [-77.37751059343867, 34.63134259408964], [-77.37748914499497, 34.631393968915255], [-77.37751057150038, 34.63142719801641], [-77.37755572769738, 34.63144188834991], [-77.37763070467909, 34.63147971869402]], [[-77.34266593425423, 34.53911442484095], [-77.34262765590009, 34.5391794258356], [-77.34259180254934, 34.539170512730635], [-77.34259140480201, 34.539161779508035]], [[-77.32150690982634, 34.64345727555698], [-77.32146406115645, 34.643365001674205], [-77.32143997927852, 34.64339476525423], [-77.32144388736062, 34.643404921366006]], [[-77.3751101501437, 34.55860600641737], [-77.37516777742606, 34.55872823750218], [-77.37522555251519, 34.55865161642691], [-77.37518739349971, 34.558594874726815], [-77.37516782989664, 34.5585737055552]], [[-77.36365125021479, 34.59010374616476], [-77.36364043426711, 34.5900731005914], [-77.36362884056203, 34.59008281926818], [-77.3636279181856, 34.59008837935663]], [[-77.34267693257584, 34.527278320967746], [-77.3426757300136, 34.52721930331669], [-77.34267834136257, 34.52721732745187], [-77.34269071411465, 34.52721714744677]]]]}, "type": "Feature", "id": "demo9", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19415315749714, 34.64765832343758], [-77.19436568185941, 34.6476825879539], [-77.19449881438611, 34.64772490810792], [-77.19526628858908, 34.647871982927434], [-77.20048712386406, 34.64892389118626], [-77.20230841254785, 34.649652837064764], [-77.20355047897954, 34.65021994739885], [-77.20413293251328, 34.650458755606365], [-77.20612335101106, 34.651122226886166], [-77.20774491978939, 34.65159111202921], [-77.21174739417134, 34.65278830433852], [-77.21202955285221, 34.652788307035216], [-77.21240464412014, 34.652788300925884], [-77.21363020580472, 34.653094584529725], [-77.21824460449486, 34.65384519564731], [-77.22064335481151, 34.655439522972664], [-77.22116703849758, 34.653689515223746], [-77.22300204450099, 34.6522769501663], [-77.22278798213121, 34.65193201515613], [-77.22285048285298, 34.651822275469364], [-77.22276903743209, 34.65157792809977], [-77.22218001886873, 34.64999860578518], [-77.22197104209911, 34.64921219205378], [-77.22075799968462, 34.64888627187387], [-77.22014407024739, 34.648425829187055], [-77.21943876792588, 34.64789683907007], [-77.21911343206625, 34.64734171125109], [-77.21822744583906, 34.64591574713975], [-77.21707321521681, 34.64516562818895], [-77.21608179973467, 34.64479421259827], [-77.21552328959608, 34.643816825209676], [-77.21504747122309, 34.64298415783976], [-77.21456883723823, 34.64214651954458], [-77.2143949851133, 34.64184227156524], [-77.21439071135173, 34.6417602912183], [-77.21438169615043, 34.64148975374804], [-77.21434778807885, 34.64030694300145], [-77.21433774093087, 34.63931068466408], [-77.21839369405147, 34.638794355131886], [-77.21914308835272, 34.63875399820001], [-77.22024530107669, 34.639305108275934], [-77.22026105267042, 34.638534514928935], [-77.21979626934083, 34.63826994476541], [-77.22161759013477, 34.63487071331967], [-77.22153535776678, 34.63468085907367], [-77.22359492994609, 34.63176429839439], [-77.22437671966043, 34.631317568588955], [-77.2265986517688, 34.629848420606805], [-77.2296499703405, 34.627962722366085], [-77.2304914332546, 34.6273787070522], [-77.23255924512043, 34.62559425588084], [-77.23463576329372, 34.624585040189565], [-77.23769614955725, 34.62326745366923], [-77.2409843895848, 34.621314600436115], [-77.24124550484878, 34.621164879320396], [-77.24175570897118, 34.62075908703993], [-77.24434937586092, 34.61866610418277], [-77.24495645571989, 34.617856692089184], [-77.24549166573536, 34.616902303318284], [-77.24588933619908, 34.6160448004684], [-77.24596706997812, 34.614845908017834], [-77.2467925840569, 34.61423052692949], [-77.25018069581319, 34.61333424170995], [-77.25298006675376, 34.61191483940579], [-77.25375877580609, 34.61125747465853], [-77.25411455361245, 34.61103619670362], [-77.25400812081513, 34.6107755306786], [-77.25480695682576, 34.60920533042575], [-77.25560351971376, 34.60763952852649], [-77.2569646746592, 34.607489716642675], [-77.2569086752643, 34.60675041238126], [-77.25747651346548, 34.60564465047513], [-77.25856468376324, 34.60501440973235], [-77.25991303023703, 34.60488056848066], [-77.26128669456375, 34.604805696539636], [-77.26186828634857, 34.60434920536878], [-77.26201857019561, 34.6048372010177], [-77.2629176534528, 34.60560813534343], [-77.26332031559683, 34.60610426515395], [-77.26435017605685, 34.60690343456918], [-77.26532538634103, 34.60751545237979], [-77.26604900544899, 34.607736972439795], [-77.26648598916881, 34.60823846279], [-77.26660902823532, 34.608311506607215], [-77.26672059834688, 34.608256902220276], [-77.26749078533612, 34.60769262278476], [-77.26864129509319, 34.606766190204425], [-77.26868697780166, 34.60652609827643], [-77.26937360900521, 34.60618032839395], [-77.2702430482679, 34.605484750864534], [-77.2705865325633, 34.60520994805869], [-77.27145023087554, 34.60207525881468], [-77.27168366075955, 34.60121761545184], [-77.27174401544372, 34.60111032195367], [-77.27178150808477, 34.60099217751849], [-77.27298811861709, 34.597789560382374], [-77.27315755356784, 34.597450722751425], [-77.27332804121832, 34.59710976452784], [-77.27521490503842, 34.59401595513215], [-77.2744532884824, 34.5937818510597], [-77.27504575406783, 34.59337964260534], [-77.27588498392583, 34.59330730326859], [-77.27912496612915, 34.59182751205006], [-77.28017377586457, 34.591149903153294], [-77.28173145929745, 34.59091698433103], [-77.28328934265039, 34.590380791787084], [-77.28503997861522, 34.58988809864595], [-77.2873633570309, 34.588950207028184], [-77.28743905728307, 34.5889203842586], [-77.28771490081641, 34.588254813064644], [-77.2890158607232, 34.585284638086435], [-77.28890842146133, 34.58495313405212], [-77.2870182825101, 34.58045994301182], [-77.28568390304076, 34.58031614220101], [-77.28501252737036, 34.57984139522097], [-77.28425077356732, 34.5795482845711], [-77.28384350090279, 34.57924104213064], [-77.28323043489533, 34.57878043823306], [-77.28281150435528, 34.57841308948953], [-77.28237636512259, 34.57810487296216], [-77.28198707578495, 34.57790551113256], [-77.28169499435367, 34.57762533143998], [-77.28138536853663, 34.577428559671084], [-77.2812795221568, 34.577350163864516], [-77.28103669414688, 34.57713714321013], [-77.28093649997265, 34.57664930956264], [-77.28076763129691, 34.576503090628336], [-77.28075501497665, 34.5763663250035], [-77.28125228587214, 34.575586582851905], [-77.28111873974184, 34.57545223164233], [-77.28125222650137, 34.575241152992575], [-77.28144109283366, 34.57478094406689], [-77.28116862844962, 34.574513494948036], [-77.28110744994751, 34.57417109154985], [-77.2814996291005, 34.57359683241061], [-77.28192682025855, 34.57321253125816], [-77.28230271740074, 34.572717236804166], [-77.28280953085788, 34.57206343411374], [-77.28292423008973, 34.571823382412134], [-77.28307983571209, 34.57160932280116], [-77.28353941877258, 34.571500559125596], [-77.28520439310671, 34.57116585286624], [-77.28555728257089, 34.57118371555242], [-77.2868997530354, 34.57152178846704], [-77.28720047891825, 34.5713370438796], [-77.28770570995515, 34.57123694780516], [-77.28790588559065, 34.57108951136695], [-77.28776125277255, 34.57096398066653], [-77.28766173133381, 34.571017132983684], [-77.28713233062228, 34.571061660439405], [-77.28648068367187, 34.57068748071057], [-77.28648192792257, 34.57068111688368], [-77.2864607359611, 34.570215694111724], [-77.28673310175955, 34.56985796791319], [-77.28685927190614, 34.56977564937363], [-77.28691201988474, 34.56975991259514], [-77.28699856853851, 34.56965899601668], [-77.2874386731021, 34.56934979710576], [-77.28771462287776, 34.56915936320043], [-77.28787640926122, 34.56869451212379], [-77.28769684079074, 34.56842740932777], [-77.28786110004559, 34.567975465577945], [-77.28815226510147, 34.56752050339012], [-77.28785583533373, 34.56723241947432], [-77.28793733779764, 34.56672912754321], [-77.28820729440434, 34.56658217836487], [-77.28857815192202, 34.566533793202865], [-77.28878766533872, 34.566515665789666], [-77.28873550009452, 34.56662362848177], [-77.28877932584413, 34.56688624330748], [-77.28910764620568, 34.56715350632099], [-77.28936483433131, 34.56751398755141], [-77.28956170675863, 34.56772483703398], [-77.28988711175268, 34.56790453358771], [-77.29082497031594, 34.56805077774489], [-77.29090150990979, 34.56802709603323], [-77.29096375972846, 34.56806756119519], [-77.29213290928621, 34.56778759249534], [-77.29284939782107, 34.567880798753876], [-77.29333280359332, 34.56796668645957], [-77.29347982649335, 34.56812532446191], [-77.29402165997126, 34.56837040999347], [-77.29498982041076, 34.568945944288274], [-77.29525370754625, 34.56895336813874], [-77.29537407702915, 34.569220453891504], [-77.295197096972, 34.56946990636648], [-77.29517660944985, 34.57021095814585], [-77.29504777197351, 34.57095553701478], [-77.29543331128622, 34.57149341569726], [-77.29591842214779, 34.572024410842914], [-77.29703247443808, 34.57309076826612], [-77.29751360674639, 34.5734550706643], [-77.29807969481871, 34.57391606861903], [-77.29891429041842, 34.57527069702414], [-77.30039419918184, 34.574330686044284], [-77.30165651424777, 34.57132119323055], [-77.30225310251855, 34.56993171305055], [-77.30193885681061, 34.56897403455138], [-77.3028693266871, 34.569107820141156], [-77.30326296707027, 34.569362327465385], [-77.30423494255416, 34.56964733346348], [-77.30601997079539, 34.57017074401669], [-77.30813654975202, 34.570202894323714], [-77.30917182993952, 34.570220119622185], [-77.30993314465988, 34.56964913018453], [-77.31128469796595, 34.568635484885725], [-77.3119510127552, 34.56813576577997], [-77.31232907986053, 34.56530177819004], [-77.31238061778939, 34.565137272154296], [-77.31252068973927, 34.56506181768002], [-77.31322874019341, 34.56399218093951], [-77.31536000858304, 34.56125788726172], [-77.31537889744826, 34.56118822820419], [-77.31550270998582, 34.560486352189415], [-77.31572095864227, 34.55924756789465], [-77.31573286755923, 34.559122272885396], [-77.31591125665054, 34.55747248133754], [-77.3159575607996, 34.55725510485186], [-77.31585374928616, 34.55710056744846], [-77.31616734773316, 34.55660344592887], [-77.31638173107015, 34.55648339951667], [-77.3171688503455, 34.556106273689835], [-77.31717587024235, 34.55610617157316], [-77.31717752648684, 34.55610161861833], [-77.31717952499694, 34.55610036533632], [-77.31718119974344, 34.55609693664621], [-77.31749648091085, 34.55556521906913], [-77.31719062954343, 34.55547517733104], [-77.31683611537915, 34.5553926773735], [-77.316359427973, 34.55523890361059], [-77.31601674367353, 34.55504701771768], [-77.31563828189194, 34.55469493527866], [-77.31506481155401, 34.554801580482724], [-77.31504515998351, 34.554448409578896], [-77.3149251583763, 34.55394201066542], [-77.31514812393942, 34.55345438135621], [-77.31494744370994, 34.55302814085298], [-77.31497216161178, 34.552941330205286], [-77.31538058449375, 34.552441755681755], [-77.31524464898645, 34.55217912710846], [-77.31569824396178, 34.55213351458603], [-77.31627085028742, 34.55195941564523], [-77.31648955945825, 34.55187538355788], [-77.31667929273692, 34.55188403963268], [-77.31727947731372, 34.55167677952441], [-77.31786569438744, 34.551468053943296], [-77.31779762342067, 34.55111536358068], [-77.31808408729347, 34.5508496391015], [-77.31881027589158, 34.550934305912186], [-77.31855030717568, 34.5502358744247], [-77.31863055631356, 34.55001647361615], [-77.31889393646777, 34.54979765966229], [-77.3189739447337, 34.54991554278934], [-77.31897214264444, 34.54996740701821], [-77.31900385275507, 34.55003484343977], [-77.31888110871205, 34.55095092209498], [-77.31889987662836, 34.55095703447573], [-77.31887798508546, 34.55096727820457], [-77.31886567456849, 34.55100685516457], [-77.3182592496498, 34.551659703753366], [-77.31803400931781, 34.552060652848766], [-77.31824367821054, 34.55239808082356], [-77.31815539325008, 34.55253284253485], [-77.31833874909074, 34.552692147881075], [-77.31866177992441, 34.55294972783249], [-77.31870523163447, 34.55301426880466], [-77.31881701964572, 34.55308859480383], [-77.31942657512758, 34.55343402488243], [-77.31959464052929, 34.55341653488156], [-77.32017354690817, 34.553585597272914], [-77.32037492600955, 34.553630622525134], [-77.32040948631119, 34.55365600105997], [-77.32042023042938, 34.553676375519224], [-77.3205140613966, 34.55375140467966], [-77.32093613919946, 34.55409188498175], [-77.32099628653863, 34.55417749110417], [-77.32165596820772, 34.554478096045145], [-77.32168975259054, 34.55461832623623], [-77.3219210611943, 34.55467791463771], [-77.32327948864908, 34.55509791583648], [-77.32348021265497, 34.55516856039765], [-77.32350417466557, 34.55517675195453], [-77.32361494305303, 34.55517589518263], [-77.32505052469948, 34.555180862766264], [-77.32553743113016, 34.55520356556177], [-77.32583499435023, 34.555216468391855], [-77.32605134176094, 34.55518105531308], [-77.32630677031527, 34.555278727027826], [-77.3266185569796, 34.555291050524175], [-77.32680182209756, 34.555207585358254], [-77.32705543416614, 34.554948935819006], [-77.32718586947311, 34.55466276582733], [-77.32742292475362, 34.55447153526991], [-77.3277129739851, 34.55458701336814], [-77.32783938319305, 34.55479413286854], [-77.32819901008075, 34.55486732099294], [-77.32836407509328, 34.55498306663313], [-77.32860007494939, 34.55518411973605], [-77.32873712236224, 34.55541908009815], [-77.32877717883783, 34.55553281740811], [-77.32896662561427, 34.555627711371926], [-77.32923308063106, 34.55567067090598], [-77.32927510897804, 34.55583138653433], [-77.32951174971458, 34.555942560465546], [-77.32973891082712, 34.556187769447384], [-77.32979748365275, 34.55620910687375], [-77.32986786931549, 34.556235818715066], [-77.32990906771367, 34.5563381668103], [-77.33025214331096, 34.55667021511549], [-77.3302687486081, 34.55681798006633], [-77.33047836529435, 34.55712732941155], [-77.33050190328382, 34.55714829127307], [-77.33078564806121, 34.55739234561545], [-77.33118205516699, 34.55751581154881], [-77.33121458752356, 34.55755059437339], [-77.3312058269367, 34.557963076101736], [-77.33113007759245, 34.5580129132683], [-77.33105348973352, 34.55815506906054], [-77.33068809206762, 34.558566073916595], [-77.3307765699503, 34.55874776843722], [-77.33095598307817, 34.55901719712455], [-77.33103867328224, 34.5592271998537], [-77.33109795503077, 34.56053816685097], [-77.33109728838325, 34.56069504067386], [-77.33100195152969, 34.5609685780163], [-77.33124286473674, 34.56119533738152], [-77.33185472478468, 34.56162454179145], [-77.33203021558163, 34.56181941424427], [-77.33257136045879, 34.561915488074256], [-77.33281804950278, 34.56188553743365], [-77.33310908083709, 34.56156827852202], [-77.33324737427205, 34.561621703641336], [-77.33360596142975, 34.56185939631267], [-77.33380493096777, 34.56200397935952], [-77.33427705833749, 34.562061788609554], [-77.33439369286086, 34.562050873331685], [-77.33476091555559, 34.5623196453446], [-77.33486969121384, 34.56236414854431], [-77.33518122730271, 34.56248782286957], [-77.33529976997838, 34.56251038646771], [-77.33541859507619, 34.56262107125986], [-77.33580921591646, 34.563242324003], [-77.33592513399637, 34.56339732660421], [-77.33593656342309, 34.56342995155215], [-77.33596820758791, 34.5636224217338], [-77.33608443445695, 34.56409784127288], [-77.33610624971152, 34.56422036839147], [-77.33611004914806, 34.564373327238684], [-77.33617803409751, 34.56483196433334], [-77.33619261778807, 34.565057033101894], [-77.33636072199015, 34.56541933402154], [-77.3363702716056, 34.565445718430155], [-77.33637816495263, 34.56545489718143], [-77.3364675702361, 34.56555730311016], [-77.33670230298745, 34.56583283459012], [-77.3367204296167, 34.565866757115124], [-77.33675413730145, 34.56610606659451], [-77.33683443183628, 34.56666291988907], [-77.33684337053482, 34.56675835115894], [-77.33687933986809, 34.567081004547624], [-77.3368520809004, 34.56719139671677], [-77.33675326976308, 34.56719835225222], [-77.33654225155368, 34.56732672791785], [-77.33635916052697, 34.567373377210764], [-77.33616295397056, 34.56739541483887], [-77.33596514144077, 34.5674340126924], [-77.33568884610162, 34.56737892381038], [-77.33548696296778, 34.56737198519794], [-77.33540774038428, 34.56729257930176], [-77.3351774342764, 34.56714555586732], [-77.33504613027009, 34.56706159190078], [-77.33486549549912, 34.56694599395402], [-77.33478367185634, 34.566892205167065], [-77.33459619613701, 34.56676230693141], [-77.33451231564095, 34.566704187422474], [-77.33438991509547, 34.566634849734186], [-77.33432880574783, 34.56659860801285], [-77.33412899913296, 34.566484089203264], [-77.33410033638182, 34.566419182030884], [-77.33399618600816, 34.56634694986041], [-77.33389115136546, 34.56635016631522], [-77.33378176425829, 34.56625270814048], [-77.33366540340879, 34.566201478650946], [-77.33360237917044, 34.566155738974416], [-77.33287039575363, 34.56553463810596], [-77.33284397373556, 34.56550720797611], [-77.33281504785572, 34.56544418723348], [-77.3324967617708, 34.56524517471617], [-77.33248216844682, 34.56559044324896], [-77.33260908567121, 34.56579382745631], [-77.33260418550945, 34.566421982501716], [-77.33281396563886, 34.56672983815217], [-77.33298048018517, 34.56703725660932], [-77.33293351640296, 34.56722372199853], [-77.33309089255606, 34.56750021116671], [-77.33318074163644, 34.567641204053466], [-77.33320715755701, 34.56765769733093], [-77.33353022260987, 34.5679108442818], [-77.33360087374157, 34.5679657853454], [-77.33360855072974, 34.56796749258241], [-77.33361358134675, 34.56797504358158], [-77.3336389793556, 34.568012496263606], [-77.33391626928903, 34.56835607163516], [-77.33363879125895, 34.5687789118498], [-77.33361528749128, 34.56882387756996], [-77.33360592586799, 34.56883144229079], [-77.33360015256781, 34.568833862905464], [-77.33359054252507, 34.56883778659772], [-77.33320604014094, 34.56899505762743], [-77.33297223052256, 34.56908899183344], [-77.33281188888904, 34.56920064328808], [-77.33245356828118, 34.56937681775036], [-77.33202359676788, 34.56959246368579], [-77.33179903329568, 34.56969213512444], [-77.33148113143113, 34.569979716262], [-77.33164067338262, 34.570368691513856], [-77.33165759907038, 34.57080342961273], [-77.3316710575373, 34.571179919087925], [-77.33169412095569, 34.57129379049527], [-77.33171123321142, 34.57164479847681], [-77.3318323016116, 34.57183147688622], [-77.33202166825811, 34.57186648946306], [-77.33222752351344, 34.571792337629326], [-77.33280980250561, 34.57168794928394], [-77.33320436339682, 34.57143018222426], [-77.33346004119653, 34.57124460987829], [-77.33359843100381, 34.57090871206521], [-77.33371613219302, 34.570634122992104], [-77.33375876892123, 34.57050141082415], [-77.33399298045693, 34.57022718292169], [-77.33412673559428, 34.5701680517824], [-77.33438708744241, 34.57007757484876], [-77.33476012595419, 34.569910207107974], [-77.33478121378872, 34.569902298629096], [-77.33482055796884, 34.56988185806538], [-77.33517534948913, 34.569713508221504], [-77.33534875730086, 34.56961052966565], [-77.33591503880939, 34.5693946438592], [-77.33596358704106, 34.56937109584519], [-77.33605582078926, 34.569421541961276], [-77.33641866947204, 34.56962842119663], [-77.33675121988517, 34.56978359146188], [-77.3368691327336, 34.56992707970885], [-77.33702907581441, 34.570031265132364], [-77.33732295092409, 34.57022164639412], [-77.33753866717777, 34.5704429581693], [-77.33773786027373, 34.57056369625418], [-77.33784976202008, 34.570762350911195], [-77.33802811573356, 34.57105786623212], [-77.33806912267232, 34.57115535300743], [-77.3383258155138, 34.57150556729621], [-77.33833991629363, 34.57152574819981], [-77.33835283959387, 34.57153910106948], [-77.33861129148573, 34.57180980451516], [-77.33870795221378, 34.57191258283727], [-77.33870369661024, 34.57193020105264], [-77.33866119815474, 34.57234384705602], [-77.33868582557189, 34.57272924587896], [-77.33864022517139, 34.57277140542445], [-77.33832470256777, 34.572948214500435], [-77.33810746019397, 34.57303854048374], [-77.33793055000012, 34.573149647777385], [-77.3378327718764, 34.573206734372164], [-77.33773345020501, 34.573279635140345], [-77.33763282429365, 34.57323698450317], [-77.33753648131434, 34.573241059955095], [-77.33736411396616, 34.57319365688675], [-77.33705770683991, 34.57309041455715], [-77.33674868448671, 34.572989161242894], [-77.33651214192167, 34.572907782735214], [-77.33609369060083, 34.572856188712095], [-77.33596068835661, 34.5729921436123], [-77.33559502019116, 34.57323996097868], [-77.3352527750231, 34.57368296447655], [-77.33521481616815, 34.57373445485493], [-77.3351720770666, 34.57375553921998], [-77.33509463451064, 34.573789113762224], [-77.33465696305456, 34.57406292339094], [-77.33438372533729, 34.57418391623948], [-77.33399355456116, 34.57428430037374], [-77.33398629645106, 34.57428596081673], [-77.3339715742855, 34.57429167806623], [-77.33398406950812, 34.57429587370574], [-77.33387724540633, 34.574729776363384], [-77.33402961629368, 34.57508862748684], [-77.3340487429523, 34.57512966483956], [-77.33407215684662, 34.57521603514247], [-77.3341917243041, 34.57553365136587], [-77.33418833633525, 34.57574329247417], [-77.33420191978155, 34.57638126539343], [-77.33399107212108, 34.576839915387005], [-77.33359348963428, 34.57688383159338], [-77.33323399216025, 34.57698221517225], [-77.33319938516156, 34.57699060244056], [-77.3331578031295, 34.57700068007161], [-77.33286894788924, 34.5770659760271], [-77.33280529411996, 34.577080054449304], [-77.33273181957742, 34.57709626517332], [-77.33250114550958, 34.57714715881512], [-77.33241117336485, 34.5772038360162], [-77.33214408051279, 34.57738920187102], [-77.33201692672748, 34.577475395453234], [-77.33197386139202, 34.57750421684485], [-77.331895255163, 34.57756188932888], [-77.3318210410203, 34.57778333276629], [-77.33201677870849, 34.57765091574581], [-77.33233200933894, 34.57800822373433], [-77.33251668605874, 34.578011526802605], [-77.33280451088392, 34.57801927622918], [-77.33303963629645, 34.57799317416312], [-77.33336745603481, 34.577956781345065], [-77.33359266156874, 34.5778880362424], [-77.33386256252825, 34.57783743974558], [-77.3343807791976, 34.57779411887522], [-77.3348586383883, 34.577650691188424], [-77.33516899325349, 34.5775775046869], [-77.33553347682235, 34.57749536975257], [-77.33558875024738, 34.57748318089325], [-77.33595717536033, 34.57739573977076], [-77.33631632023747, 34.577313291769734], [-77.33635127386611, 34.57729361123679], [-77.33645770212266, 34.57721600369711], [-77.33674550798618, 34.577017958149035], [-77.33709458068368, 34.5768145086869], [-77.33723437513176, 34.57647160756592], [-77.33753396040925, 34.576476793902174], [-77.3379681588952, 34.576221282120045], [-77.33832235026611, 34.57600353726187], [-77.33845504804924, 34.57591273042469], [-77.33900144146179, 34.575808793437275], [-77.33911049131783, 34.57584584631951], [-77.33979624010428, 34.575687302998105], [-77.34006287338264, 34.57571563316297], [-77.34033105901904, 34.57550007539058], [-77.3405570789591, 34.57532767707507], [-77.34068691414377, 34.575327310095005], [-77.34116071453795, 34.57504197686325], [-77.3414752928197, 34.57482895395389], [-77.3416383855917, 34.57463857539579], [-77.34211976008582, 34.574548650104845], [-77.34226335253332, 34.57475873389029], [-77.3424388640885, 34.57453681558507], [-77.34279106968037, 34.574577824693165], [-77.34305145451036, 34.574626884329696], [-77.34314211462487, 34.57467127595326], [-77.34324777329046, 34.574868901918975], [-77.34353130793154, 34.57503984500883], [-77.34383898974349, 34.57529683454779], [-77.34404563061128, 34.575592079472855], [-77.34462676579862, 34.575637632956074], [-77.3446854723868, 34.57565965971823], [-77.34502075104653, 34.57567024807471], [-77.34502749566973, 34.575673738310094], [-77.34503481223118, 34.57568784995338], [-77.34502073856636, 34.57568836910718], [-77.34476614709897, 34.57586168002839], [-77.34462655922022, 34.57593557051649], [-77.34421334511674, 34.57619488457652], [-77.34396666559243, 34.577385348127194], [-77.3441612587726, 34.57749651090481], [-77.34462540879123, 34.57759622540411], [-77.34495699905867, 34.5778736599749], [-77.34541319677675, 34.57795677478531], [-77.34616643068334, 34.57801973462585], [-77.34620119364229, 34.57801607835397], [-77.34622696569727, 34.57802070871601], [-77.34662499843523, 34.57799122524438], [-77.34698925329347, 34.577982332560836], [-77.3470223227174, 34.57793407117948], [-77.34719957872815, 34.57728560263419], [-77.34727220036551, 34.57704903213275], [-77.34777815658205, 34.57665840826873], [-77.3482021856012, 34.57652294624192], [-77.34834580113863, 34.576045491348054], [-77.34842605877664, 34.57588242289877], [-77.34841095123771, 34.57535519278632], [-77.34836788495105, 34.57519321984728], [-77.34829137751018, 34.574906901170124], [-77.34836591084434, 34.57456166481241], [-77.34841010420621, 34.57433805175397], [-77.34846766167324, 34.57422191684263], [-77.34856773125247, 34.57425922109102], [-77.34880272228864, 34.57428156601229], [-77.34916949398512, 34.57442935772197], [-77.34935559779842, 34.57446987172056], [-77.34967656275278, 34.574501712426326], [-77.35014360728914, 34.57445880657614], [-77.35073276602608, 34.5742182933691], [-77.3509317818047, 34.574180222348794], [-77.35113941467371, 34.574169085501026], [-77.3517198270172, 34.574105013894204], [-77.35195118762678, 34.57442813791664], [-77.35250762652323, 34.57443578356887], [-77.3525818292981, 34.57450690081907], [-77.35301961880707, 34.57452390329027], [-77.3532560829792, 34.574532423979974], [-77.35329557058337, 34.574532142724955], [-77.35336466004517, 34.57454870660547], [-77.35385195988093, 34.57465361597215], [-77.35408325914159, 34.57507120097249], [-77.35426354042946, 34.57499977448133], [-77.35422357066902, 34.5751997426809], [-77.35414429599473, 34.57527704920186], [-77.35408311876806, 34.57531300245896], [-77.35396837523564, 34.575360078161914], [-77.35368898014117, 34.57554234029336], [-77.35353840861859, 34.5755606627568], [-77.35329487765392, 34.57570673209604], [-77.35310371501825, 34.57556697120497], [-77.35290096146765, 34.575554769318174], [-77.35260346161422, 34.57553686459779], [-77.35250677564136, 34.57585535744697], [-77.35218309217441, 34.57634247792558], [-77.35250622306737, 34.576778480527395], [-77.35264878048457, 34.57697083386006], [-77.35329421780034, 34.576826660330454], [-77.35344539356825, 34.57684702473065], [-77.35403009984121, 34.576925786848555], [-77.35405122057763, 34.57695609091081], [-77.35414486572805, 34.57697684238322], [-77.35486991973528, 34.57743102376975], [-77.35507155119123, 34.577407761053436], [-77.35540803657389, 34.57757657979755], [-77.35565779350226, 34.57770711038327], [-77.35598930665529, 34.577984652068295], [-77.35605164975908, 34.577993747976365], [-77.35628919219131, 34.57829886203626], [-77.35629892295457, 34.578455301961746], [-77.35644512239081, 34.57898321928182], [-77.35646854312648, 34.579096848110915], [-77.35649230409817, 34.57911873117698], [-77.35659424033022, 34.57926489663221], [-77.35704775816598, 34.58008701338062], [-77.35753086772108, 34.58013978748539], [-77.35802054916712, 34.580223954174535], [-77.35830912323266, 34.58024448860736], [-77.35880862874362, 34.580173879368395], [-77.35924364112157, 34.58004044484551], [-77.35959692649385, 34.5796948016191], [-77.35991524415249, 34.578968602094264], [-77.36038549735392, 34.578652864012525], [-77.36092770921334, 34.57848026212126], [-77.36114235904549, 34.57841564135461], [-77.36117365762121, 34.57840440425325], [-77.3611967563898, 34.578416632768345], [-77.36126651650265, 34.57843148489316], [-77.36142029859823, 34.57867524305148], [-77.36151397503087, 34.57887802419988], [-77.36152061371553, 34.579244009780474], [-77.36154409974179, 34.57968990613404], [-77.36196109098222, 34.579649557245475], [-77.36260835556102, 34.57993651048003], [-77.3626804987777, 34.57999990094477], [-77.36249688814844, 34.58080166839977], [-77.36274832136397, 34.581375751150226], [-77.3629011695045, 34.58142785332895], [-77.36298598506403, 34.5815803579204], [-77.3635361769841, 34.581823133649806], [-77.36425571380336, 34.581471543770334], [-77.36432440471901, 34.58146719726059], [-77.36450080619693, 34.5820210179097], [-77.36471812018445, 34.58217204725433], [-77.36472268728774, 34.582179404925085], [-77.36485169535638, 34.58244133228729], [-77.36488488142109, 34.58276056577742], [-77.36459834118779, 34.58304642068234], [-77.36454876024231, 34.58329618211136], [-77.36432355741209, 34.58333934101642], [-77.36397540423046, 34.58351114775044], [-77.36390278810367, 34.58354242999839], [-77.3638428337025, 34.583672992678544], [-77.36364361643129, 34.584033000802876], [-77.3637305478969, 34.58423110209705], [-77.36387343210482, 34.584484330378935], [-77.36417793975963, 34.58480517633186], [-77.36424375681412, 34.58488092788331], [-77.36432284740015, 34.58491240564025], [-77.36445869347193, 34.58491111306109], [-77.36459431429479, 34.58474522287929], [-77.36486351640852, 34.58443965099768], [-77.36511129210001, 34.58412150379228], [-77.365412666796, 34.58410297381409], [-77.36589927749701, 34.58435784328918], [-77.36612798126212, 34.584278001293924], [-77.36675782904835, 34.58443367494912], [-77.36721823750989, 34.584644378317165], [-77.36740791007949, 34.585189172006224], [-77.36742640000682, 34.58523897114608], [-77.36722490826135, 34.58579533548862], [-77.36693582691123, 34.586106270716286], [-77.36668653199905, 34.586335867382736], [-77.36636741672378, 34.586693585443136], [-77.36606702731186, 34.58708049485358], [-77.3659692371247, 34.58717125827006], [-77.3658980273337, 34.58725652536389], [-77.3656858109644, 34.58736397945141], [-77.3653870657512, 34.58747711653269], [-77.36510980291982, 34.58750043120034], [-77.36476911827307, 34.5877495673646], [-77.3646606955594, 34.587766733651], [-77.36432151479569, 34.58787524871421], [-77.3641947474349, 34.587911203262124], [-77.36408688956502, 34.58796198991615], [-77.3639273620048, 34.58807593244822], [-77.36375807700225, 34.588262071333446], [-77.36367737014288, 34.58842908406531], [-77.36362559824147, 34.58860599846647], [-77.36363264311832, 34.58870468615316], [-77.36371867619437, 34.588916719691696], [-77.36379540021312, 34.58910580727921], [-77.36368270129057, 34.58928358923021], [-77.36353267961921, 34.58942998619388], [-77.36335260746367, 34.589594114269325], [-77.3632211416977, 34.589702092764014], [-77.36313846887933, 34.58973631069956], [-77.36300050703835, 34.589793412004624], [-77.3627443220168, 34.5898994453103], [-77.36259080413085, 34.58996298476343], [-77.3623501734848, 34.590062578720435], [-77.36196478677275, 34.59020903758071], [-77.36195603089352, 34.59020990718705], [-77.36194635872593, 34.59021070333163], [-77.36189081727673, 34.59022911898456], [-77.36163372823057, 34.59034352032838], [-77.36160948416351, 34.590642747233424], [-77.36177443337493, 34.59067042755728], [-77.36195579660023, 34.59070289735321], [-77.3622954004056, 34.59065413754677], [-77.36238357570045, 34.590619001995115], [-77.36274401917672, 34.59054939633186], [-77.36293012005608, 34.59072801963288], [-77.36334300192829, 34.59086916130735], [-77.36347279535104, 34.59091426039015], [-77.36353193520627, 34.59106075952256], [-77.3638852936048, 34.591640194991385], [-77.36387686044245, 34.59211840036509], [-77.36408987480313, 34.592459850462696], [-77.36431940550911, 34.59259350597444], [-77.36494378437564, 34.59233690435133], [-77.3650719635336, 34.59227993793231], [-77.36510772115865, 34.592254827771846], [-77.3652109521046, 34.592187253193664], [-77.36589606882436, 34.591826139548786], [-77.3664586663483, 34.59187579019851], [-77.36668425549473, 34.5917622177527], [-77.36703566754814, 34.59156507598519], [-77.3670784245919, 34.59154547625087], [-77.36712149298077, 34.59155236970776], [-77.36711531554779, 34.59159966174844], [-77.36711420529387, 34.59163841080194], [-77.36694935643783, 34.59204811641925], [-77.3672857984192, 34.59264812304212], [-77.36739944061515, 34.59283241671432], [-77.36743976606657, 34.592861299900015], [-77.36747190027745, 34.59302408590284], [-77.36767884051784, 34.59426692479796], [-77.36767382631183, 34.59449113169654], [-77.36780965940812, 34.59483623072197], [-77.36761935387723, 34.59603703444742], [-77.3676869665741, 34.59618746661645], [-77.36805053735327, 34.59676008824951], [-77.36747052832058, 34.59640271604722], [-77.36726245186526, 34.596472717543506], [-77.365893824258, 34.597107122560416], [-77.36551153848643, 34.597787421901785], [-77.3652599239616, 34.59823516267271], [-77.36488533408101, 34.59890174877305], [-77.36431616377268, 34.59991455954056], [-77.36425911692987, 34.60001607156967], [-77.36425345320231, 34.60014573394302], [-77.36431598629409, 34.60031794924082], [-77.3645379094804, 34.60149594250769], [-77.3646715460573, 34.60171631984749], [-77.3649311098294, 34.60234251584875], [-77.36497210199599, 34.602522159529805], [-77.3650003897403, 34.602628870039844], [-77.36510311811507, 34.602899878228015], [-77.36511230654786, 34.60292652980836], [-77.36510310265369, 34.60293594303475], [-77.36488156355199, 34.60314576307145], [-77.36451130306374, 34.603437610784766], [-77.3643855600146, 34.60353217645685], [-77.36431454318343, 34.60360667706393], [-77.3640449244958, 34.6039293080438], [-77.36400121128736, 34.604022839255435], [-77.36379428821883, 34.60438994418956], [-77.36413587715398, 34.60499808078206], [-77.36419369191974, 34.60518155537282], [-77.36409949539173, 34.605425897634994], [-77.36395954816282, 34.60606437261362], [-77.36378338918243, 34.60636801210744], [-77.36385207164183, 34.606576594670834], [-77.36405693067327, 34.60662339738666], [-77.36431332381967, 34.60639950612826], [-77.36490322456288, 34.60614233817569], [-77.36510165122453, 34.606331857330396], [-77.36549936434389, 34.60627105813245], [-77.36589008447456, 34.606006487036026], [-77.36593284061243, 34.60578028378278], [-77.36636381217627, 34.6053791194616], [-77.36660632928961, 34.605258759641465], [-77.36667869578505, 34.60522886981384], [-77.36672323887139, 34.60524192673512], [-77.36699138486851, 34.60529103020402], [-77.36707281033965, 34.6053002297036], [-77.3671819850839, 34.60529346971361], [-77.36746692803054, 34.60536521605361], [-77.36762826556796, 34.60536238525252], [-77.36786107457031, 34.6053583003968], [-77.36810861648041, 34.60530906932931], [-77.3682552786727, 34.60520309801255], [-77.3685346593492, 34.60498109864745], [-77.36861556491735, 34.60493286700628], [-77.36864953221989, 34.604915335116715], [-77.36872108969591, 34.6048771886278], [-77.3690437523083, 34.604708437976676], [-77.36919505959213, 34.60462439194041], [-77.36943797631616, 34.604485719064655], [-77.36947797405807, 34.60446377681145], [-77.3695083364837, 34.60441632860477], [-77.36943812555077, 34.60408844044164], [-77.3694135034109, 34.60403197283156], [-77.36942041083783, 34.60400443288634], [-77.36942008642451, 34.603985006224256], [-77.36943823438213, 34.60379891700728], [-77.36945462306706, 34.60359251841731], [-77.3697797946279, 34.60358484002666], [-77.36983243121091, 34.60363515296874], [-77.37012421329491, 34.60379288643828], [-77.37024923540736, 34.60386056512196], [-77.37028318850432, 34.60388018325462], [-77.3702601483469, 34.60391978767986], [-77.37037259419176, 34.604291865620965], [-77.37022622831583, 34.604558064008515], [-77.37017082750923, 34.604685855028855], [-77.37008283390813, 34.60475815317212], [-77.36983193849164, 34.60496361563307], [-77.36965877490042, 34.60505729020346], [-77.36946934227561, 34.605271059573056], [-77.36943766995313, 34.605302230807546], [-77.3693060402096, 34.6054363085511], [-77.36924052260463, 34.60550304465886], [-77.36923199035319, 34.605508329830506], [-77.3690434185619, 34.60558728269919], [-77.36874270585552, 34.60569956666739], [-77.36864921818409, 34.60573237764997], [-77.36858994661756, 34.60575841777086], [-77.36831889236547, 34.60586128288819], [-77.36825501309994, 34.605885884057074], [-77.36799705402791, 34.60605439123783], [-77.36750667313973, 34.60635955476246], [-77.36746652537705, 34.60637646069187], [-77.36745045847464, 34.60639358804008], [-77.36737476757904, 34.60642178559462], [-77.36707231077204, 34.60654027362169], [-77.36678040607208, 34.60661753043435], [-77.36667809679358, 34.60669866619581], [-77.36633374087154, 34.606942487430565], [-77.36611365466565, 34.60684455484638], [-77.36609641793092, 34.60703040026444], [-77.36588961792226, 34.60712630685023], [-77.36573070290773, 34.60733653113733], [-77.36571565893777, 34.60750977532891], [-77.36549516671737, 34.60783629498491], [-77.3654457971809, 34.607920043875154], [-77.365392263903, 34.607980890182276], [-77.36510084139377, 34.60823476601616], [-77.36500505160781, 34.608358070677994], [-77.36492601831277, 34.608472569112905], [-77.36470642888926, 34.608827616987725], [-77.36466604619544, 34.60889108332356], [-77.36460607559138, 34.60894318399107], [-77.36431209793811, 34.60921984883364], [-77.36415031800306, 34.609259112990664], [-77.36397585949155, 34.609458462760955], [-77.36374374160681, 34.60972904710578], [-77.36352342179558, 34.61001163226954], [-77.36331304464602, 34.610176468132124], [-77.3630879848609, 34.610435381521135], [-77.36329596716222, 34.61065012681108], [-77.36322241046683, 34.61094136950822], [-77.3631684944979, 34.611272901066556], [-77.36309696038067, 34.611673768771155], [-77.36309659485634, 34.61170780553836], [-77.36304740025055, 34.61180218832814], [-77.36285695713858, 34.61216685380632], [-77.36281069290526, 34.612256034808986], [-77.36273401320955, 34.61239471241913], [-77.36260997491661, 34.61262695857142], [-77.3625024823117, 34.61281781835835], [-77.36246107207909, 34.612942098328276], [-77.36241658592192, 34.613079348550045], [-77.36239868031032, 34.613145672945045], [-77.36233938421393, 34.61338637172311], [-77.36230871287881, 34.61348644367021], [-77.36229805954434, 34.61352096264456], [-77.36230310827237, 34.613559222150904], [-77.36231507005988, 34.613917140328496], [-77.36222270027335, 34.6139563631515], [-77.3620064695182, 34.61405380380448], [-77.36194488451211, 34.614076937627736], [-77.36188995010943, 34.61406342964382], [-77.36155066692751, 34.614144678429], [-77.36127827108245, 34.61422350721251], [-77.36115643035166, 34.61425150592299], [-77.36103319160786, 34.61426029531061], [-77.3607622089685, 34.61432389738107], [-77.36046695286412, 34.61431560973719], [-77.36036802181276, 34.61432298729616], [-77.36028349432397, 34.614326501469364], [-77.36008161951129, 34.61426451753519], [-77.3598261741115, 34.61403591132591], [-77.35957999636454, 34.61360457092033], [-77.35952700407645, 34.613552331883064], [-77.35948769081409, 34.61350088739373], [-77.35925542865515, 34.6131845177822], [-77.35919326291994, 34.61311094330499], [-77.35879247371082, 34.612751831481646], [-77.35879224131084, 34.612751660397706], [-77.35879205154656, 34.61275139536832], [-77.3584218800457, 34.61235496526424], [-77.3581936415302, 34.61198890207283], [-77.35800419762833, 34.61175150413092], [-77.35763252680931, 34.611620928063985], [-77.35757151020141, 34.611612319623475], [-77.35721594356603, 34.61156215485093], [-77.35649962907891, 34.61146109052499], [-77.35642756428952, 34.6116169306671], [-77.35550659633739, 34.61223305580888], [-77.3554047404503, 34.61323928989667], [-77.35571226420807, 34.613964109364446], [-77.35593750132281, 34.61486084527047], [-77.3558039565115, 34.61554946565514], [-77.355814812195, 34.61572760021949], [-77.35642534810532, 34.61583722947666], [-77.35668264654875, 34.61587987064861], [-77.3568876568548, 34.61592438061024], [-77.35721359582718, 34.61611587223891], [-77.35731898457993, 34.61624669923444], [-77.35740097453771, 34.61634847816842], [-77.3576856401691, 34.616647934978786], [-77.3577567490583, 34.61672183675091], [-77.3580015558585, 34.61697508558639], [-77.35806569330806, 34.61703282573051], [-77.35814088651303, 34.617091112745], [-77.35854193962464, 34.617300340920096], [-77.35878976702962, 34.617359340294136], [-77.35889760902063, 34.617406773312496], [-77.35909417899259, 34.61747512843201], [-77.35918388573968, 34.617530060194724], [-77.35924470085757, 34.61756910182139], [-77.35930570954311, 34.61764133698719], [-77.35935135541285, 34.617766029654774], [-77.35937531457438, 34.617968978777256], [-77.35935221100978, 34.61797818275013], [-77.35918364211396, 34.61802813715564], [-77.35902860403432, 34.6180700758373], [-77.35893320655344, 34.6180958812397], [-77.35878940211596, 34.61809819732099], [-77.3586087161911, 34.61806750770951], [-77.35839524886568, 34.617992685395144], [-77.35809265418933, 34.61804584784076], [-77.35800096266914, 34.61815326393327], [-77.35777554583541, 34.618417337341626], [-77.35769122730018, 34.61852064346763], [-77.35728283882102, 34.61883670734395], [-77.35721217531108, 34.618884851449295], [-77.357182573194, 34.61889533553271], [-77.3571051591506, 34.618938348815696], [-77.35656811136538, 34.61917124690305], [-77.35642354264235, 34.61929324363981], [-77.35604963004997, 34.61953676632477], [-77.35580432641657, 34.619974611783306], [-77.35573217978815, 34.62008997668276], [-77.35563458286884, 34.620303590999825], [-77.35542137046124, 34.62064938682107], [-77.35484561458446, 34.62129526431116], [-77.3545951548406, 34.62157720548205], [-77.35405690182138, 34.62178618700418], [-77.35387833229267, 34.62175756726326], [-77.35357147853715, 34.6216677673706], [-77.35326860630227, 34.62151179184281], [-77.35307401611166, 34.621426103792174], [-77.35279535633057, 34.6212565775147], [-77.35261378135397, 34.621139021849636], [-77.35222982423085, 34.62106805886655], [-77.35201764003281, 34.62186632329698], [-77.35187439721904, 34.62223814598432], [-77.35185714168082, 34.62241934138939], [-77.35174355803355, 34.622524541711456], [-77.35140825829728, 34.62333458928871], [-77.35129706026473, 34.62348780336599], [-77.35090547040501, 34.62406044323339], [-77.35086655714704, 34.624163186199155], [-77.3508061813717, 34.624230326286195], [-77.35065923156797, 34.6243088161495], [-77.35022828015205, 34.62453997065755], [-77.34997036918627, 34.624660820679395], [-77.34964370596798, 34.624816435735326], [-77.34925256503554, 34.62479840678398], [-77.34899334054643, 34.624765593361104], [-77.34886145682887, 34.62495984717914], [-77.34859783507, 34.624946918339994], [-77.34839583747782, 34.62497775798375], [-77.34808150192558, 34.62489881376309], [-77.34804400099017, 34.62489558181052], [-77.34788768282993, 34.62471784546315], [-77.3477718903213, 34.624490850342156], [-77.3478254137305, 34.62399250012204], [-77.3480251377999, 34.6236120669969], [-77.3476340816758, 34.62341092755253], [-77.3467913241836, 34.62302694773789], [-77.34671978448637, 34.62300849073866], [-77.34669219603879, 34.62297993731902], [-77.34664517813874, 34.62295758544291], [-77.34531612855935, 34.622394404395365], [-77.34478293450738, 34.622168461073485], [-77.34363668005864, 34.6216827075699], [-77.34251734947036, 34.62120835574045], [-77.34234919808873, 34.62154784857879], [-77.34220694386569, 34.62187901802294], [-77.34173522457375, 34.62230899690857], [-77.3415704267619, 34.62286746762947], [-77.34139234958843, 34.62332331222718], [-77.3413284015825, 34.62368762730522], [-77.34117511881783, 34.62408611218086], [-77.34097467499394, 34.62426778380411], [-77.34093989260201, 34.62458495878971], [-77.34070538334342, 34.624934322905695], [-77.3405556823208, 34.62521103322736], [-77.34020530687398, 34.62552979664372], [-77.34019396068965, 34.62554050791841], [-77.34018839732883, 34.62554737462041], [-77.34017116782643, 34.62556073869793], [-77.33966841112199, 34.625716994918704], [-77.33958194631637, 34.62571510328904], [-77.33951347288289, 34.62571502182764], [-77.33927125212172, 34.62576179242627], [-77.33896267018848, 34.62572521111779], [-77.33894317579933, 34.62572195062893], [-77.3389191026278, 34.625706352768816], [-77.33854284059217, 34.62534091133409], [-77.33853927786127, 34.62532982278267], [-77.33865368542034, 34.6248987914643], [-77.33869332708944, 34.62480640930417], [-77.33857814688548, 34.6241229687352], [-77.33855782860056, 34.624067956298695], [-77.33822122967528, 34.62372124452043], [-77.33820767017957, 34.6237085350484], [-77.33785612405856, 34.623496997939164], [-77.33775902866105, 34.623448881634964], [-77.33757686732297, 34.62335860906284], [-77.33731073441407, 34.623188543311], [-77.33656415271423, 34.62265361353973], [-77.33637819034172, 34.62251271444661], [-77.33545252143298, 34.62227599700482], [-77.33499640317753, 34.62200700089287], [-77.33456200000788, 34.62228264265831], [-77.3338886518973, 34.62286596226011], [-77.33367628806468, 34.62304992903184], [-77.33320179682568, 34.62368148985375], [-77.33354644401854, 34.626049859190054], [-77.33403426556939, 34.62637675893333], [-77.3348607980015, 34.62790014977457], [-77.33489056409054, 34.627980405152904], [-77.33510480700843, 34.62960581082742], [-77.33528111150133, 34.62979970909898], [-77.33529843634443, 34.62964345504224], [-77.33530059776177, 34.629578943402336], [-77.33540691102918, 34.629254004522195], [-77.33497824565877, 34.62800983444406], [-77.33573784119997, 34.628598807456704], [-77.33638728907525, 34.62893255674606], [-77.33663924324317, 34.62911006353505], [-77.33724201891201, 34.62931250737612], [-77.33761772879268, 34.629468712935434], [-77.33777819101387, 34.62948298334014], [-77.33823943944736, 34.63001960538719], [-77.33825111468144, 34.630510666922035], [-77.3382514571312, 34.6308619482722], [-77.33878631120966, 34.63131459925508], [-77.3389553609596, 34.63141234808079], [-77.33930304520449, 34.631381206419206], [-77.33943349173887, 34.63134940151423], [-77.33960786235879, 34.63126843971905], [-77.33972696407754, 34.63121688711288], [-77.3398012156889, 34.63117912044204], [-77.33999005438496, 34.63108571541152], [-77.34002098607685, 34.63108711296434], [-77.34020800245975, 34.63122820264974], [-77.34032977318947, 34.63142067110144], [-77.3405455245348, 34.631707971133025], [-77.34067753284657, 34.631794931634815], [-77.34087611042892, 34.632156890572105], [-77.34089310452765, 34.6321678310269], [-77.34089737303889, 34.63218675117015], [-77.34089396868065, 34.632199480450325], [-77.34089004037703, 34.63222622120542], [-77.34058392713926, 34.633073772491784], [-77.34095877963313, 34.63359449864302], [-77.34117058896443, 34.63383723576416], [-77.34119708956098, 34.63386213396079], [-77.34122661887241, 34.63390136776762], [-77.34150492430322, 34.63440071556796], [-77.34167784118083, 34.63455390103], [-77.34171745924058, 34.63460615952034], [-77.34179572940624, 34.634709586040984], [-77.34186821597675, 34.634829495566436], [-77.34187008045566, 34.63500720584165], [-77.34184711172611, 34.63509118277094], [-77.34172757358735, 34.63544876624016], [-77.34165483332383, 34.63557890065386], [-77.34159047790511, 34.63571220087914], [-77.34150048848377, 34.63590193719445], [-77.34141416048172, 34.6360214356223], [-77.34116115616872, 34.63637051537391], [-77.34112235434479, 34.63641623067943], [-77.34109751167563, 34.63644507195341], [-77.34100634676874, 34.636536042048334], [-77.34083282007572, 34.63672090295563], [-77.34078325702033, 34.63676687265555], [-77.34066906288736, 34.636860061255874], [-77.34055951566296, 34.63695387783718], [-77.34039774702856, 34.63707418120518], [-77.34028048900424, 34.637158380378004], [-77.34004250596801, 34.637296323358036], [-77.33999442238107, 34.63732785202836], [-77.33995762493578, 34.63733050141176], [-77.33992156392208, 34.6373846612376], [-77.33956573007416, 34.63763185145437], [-77.33943617301927, 34.63773591192377], [-77.33937735226046, 34.637789595356836], [-77.33929758372956, 34.63784277431767], [-77.33927354582167, 34.63785948751023], [-77.33920403010232, 34.63790514316207], [-77.33916866082045, 34.63792837257138], [-77.3391584213312, 34.637946785386504], [-77.33912543417162, 34.63796396579523], [-77.33898941829402, 34.63793459871982], [-77.3388584388053, 34.637918551296615], [-77.33882557480398, 34.63788344279863], [-77.33866265511895, 34.63773214730466], [-77.33847774789376, 34.63758282788628], [-77.33829266196852, 34.63731662928074], [-77.33807638518154, 34.63734113951728], [-77.33789373184914, 34.637405225091904], [-77.33766899036502, 34.63740335880807], [-77.33745054847557, 34.63741281157991], [-77.33721924942033, 34.63733354974913], [-77.33714064257863, 34.63730136101816], [-77.33710296201303, 34.63727607526283], [-77.33675862546609, 34.63701261002124], [-77.33672477988519, 34.63698702755072], [-77.33672107581398, 34.636984002505535], [-77.33671577699353, 34.63698064785105], [-77.33626716304167, 34.6367346445659], [-77.3360551659541, 34.63664930787282], [-77.33605361894348, 34.63635430066272], [-77.33603108919844, 34.63623061687918], [-77.33609233084206, 34.635932783827535], [-77.3358909720674, 34.6360233489462], [-77.33567941579403, 34.63560227417793], [-77.33521624529456, 34.63557237264581], [-77.33515765758345, 34.63555988860956], [-77.33512311645516, 34.63555562986121], [-77.33493805182796, 34.6355366170925], [-77.33484821510366, 34.63552587621784], [-77.33482792304102, 34.63551196841322], [-77.33458505344417, 34.63547288097654], [-77.33441105414605, 34.63482047607688], [-77.33444920836993, 34.634759706099395], [-77.33463494153008, 34.63455115784063], [-77.33473345018018, 34.634454235638614], [-77.33479704376924, 34.63390526146205], [-77.33475229757072, 34.63387412848748], [-77.33477880680337, 34.63367369209637], [-77.33483904323084, 34.63321824091595], [-77.33487514596646, 34.633013281644025], [-77.33492322962078, 34.63250749314782], [-77.3350382792446, 34.6313029174718], [-77.33415004194106, 34.630543014031744], [-77.33310297865862, 34.63151940447911], [-77.3330615167393, 34.631558276964334], [-77.33306409726049, 34.63157380804238], [-77.33244146375247, 34.632313847312815], [-77.33242431917454, 34.632505574725634], [-77.33223112249584, 34.632784732186686], [-77.33208257892798, 34.632999366607294], [-77.33189853447101, 34.63314145127717], [-77.33177893357015, 34.63343810616048], [-77.3316706462388, 34.63359595352521], [-77.33172560856373, 34.634246064599694], [-77.331757197649, 34.634285074214915], [-77.33192147284949, 34.63449751888552], [-77.332076903497, 34.63469852579274], [-77.33210629960531, 34.63471149035759], [-77.33219023556065, 34.634748508480826], [-77.33245751157074, 34.63486638499671], [-77.332554499683, 34.63490097070778], [-77.33279421732006, 34.634986784474386], [-77.33280001192435, 34.63498890349306], [-77.3328076683824, 34.63501602086918], [-77.33293737751704, 34.63529092253276], [-77.33289822735554, 34.63540967066523], [-77.33288835218328, 34.63541777218454], [-77.3328601275285, 34.635443846003554], [-77.33275334538723, 34.635542491046394], [-77.33270891172074, 34.63556653625404], [-77.33260517532958, 34.63560166663213], [-77.33243342681115, 34.63564293274194], [-77.33229397681968, 34.63564603461334], [-77.33217453927121, 34.63565312505506], [-77.33198353509444, 34.635694172139644], [-77.33181296228447, 34.635730828013365], [-77.33167450830382, 34.63574935677257], [-77.33155166208307, 34.63573825742199], [-77.33151185197701, 34.63573640080094], [-77.33145270603703, 34.63572805971525], [-77.33134730851839, 34.63571404618287], [-77.33104970273662, 34.63564811310651], [-77.33102494979423, 34.63563302739953], [-77.33101109193261, 34.63563383140846], [-77.33099134919593, 34.635630874543], [-77.33067141094537, 34.63553635928409], [-77.33051338458651, 34.63549781456485], [-77.33050306994286, 34.635495089713544], [-77.33047647634129, 34.63548370875242], [-77.33032974362187, 34.63542899092066], [-77.33019713670964, 34.63534307761592], [-77.3301357523618, 34.635097490431406], [-77.32990899338623, 34.63462006895098], [-77.32989432450445, 34.634540632698034], [-77.32982385007395, 34.634503728819354], [-77.32979718322092, 34.634515648280995], [-77.32925022820324, 34.63455469861816], [-77.32919479885216, 34.63455928875955], [-77.32912175833577, 34.634552196409146], [-77.32869722601508, 34.63450151509479], [-77.32854436963805, 34.63450837172939], [-77.32833273665527, 34.634754836095574], [-77.32835108179964, 34.63516713231207], [-77.32835241486022, 34.6351741285299], [-77.32811931905682, 34.63558002347014], [-77.32810301431367, 34.63560280418845], [-77.32807093946808, 34.63563472727561], [-77.3278530188835, 34.635848025390146], [-77.32772716620954, 34.63591913896272], [-77.32758351940527, 34.63610010072132], [-77.32757599323328, 34.636111630897666], [-77.3275283623547, 34.6361311368854], [-77.32732900428849, 34.636214636437366], [-77.32728868201885, 34.63622597625825], [-77.32723640261102, 34.63624518132464], [-77.32694615026098, 34.63611428588162], [-77.32665732222527, 34.63624358342637], [-77.32664084405563, 34.63623929229175], [-77.32631546050376, 34.636161743770145], [-77.32598757455156, 34.63642142737956], [-77.32577443742635, 34.63665587054788], [-77.32573057892269, 34.63672387479229], [-77.3256709247031, 34.63680786909263], [-77.3253930302622, 34.637075986675725], [-77.3252348065007, 34.63715696196306], [-77.32517877220768, 34.63720956361519], [-77.32497098618236, 34.63728570795399], [-77.32494199363487, 34.63729295555825], [-77.3249098107832, 34.63729204918334], [-77.3246711140885, 34.63730534399246], [-77.32462004480288, 34.63728380667467], [-77.3244150823713, 34.63723821498981], [-77.32400316134088, 34.63703657238651], [-77.32394853616461, 34.63701387781722], [-77.32392185693764, 34.63699503787211], [-77.32381226909231, 34.636934343059224], [-77.3235597966709, 34.63678604445952], [-77.32350100196422, 34.63675191749056], [-77.32320449358033, 34.636610704599285], [-77.32296484234706, 34.63666535206216], [-77.32277604738145, 34.63663389270714], [-77.32256176283173, 34.636598185970385], [-77.32242685653975, 34.63658240007584], [-77.32221033011146, 34.636438423206485], [-77.32184006872879, 34.636192220510154], [-77.32148836211772, 34.63614443456821], [-77.32117760862953, 34.636081365328835], [-77.32098239124448, 34.63629334750782], [-77.32057766948937, 34.6362820535884], [-77.32032959739331, 34.63614237438337], [-77.3201626561933, 34.636195073320735], [-77.31993445659259, 34.63626710936879], [-77.31963962547992, 34.636360178187196], [-77.31963341929197, 34.63636213728716], [-77.3196286958362, 34.636363728509494], [-77.31959593240987, 34.63637486767878], [-77.31936654723702, 34.63645256886973], [-77.31933866221577, 34.6364884642172], [-77.31914205986483, 34.63657658778383], [-77.31885479898082, 34.63676566670453], [-77.31876375798777, 34.636813939359634], [-77.31869026418347, 34.636821992555454], [-77.31854171221725, 34.63681143591714], [-77.318433326903, 34.63676249398084], [-77.31829589833926, 34.636724086555446], [-77.31806061231887, 34.63650031421594], [-77.31788698617535, 34.636385716863145], [-77.31777511373508, 34.63620247975772], [-77.31756438128144, 34.63587657654403], [-77.31752904412521, 34.63573728503575], [-77.3175464033477, 34.63538985783346], [-77.31759178179456, 34.63467487133502], [-77.31758735279904, 34.63454027327925], [-77.31757864593796, 34.63444875255575], [-77.31755929867563, 34.6341221330227], [-77.31739371853166, 34.63391930947597], [-77.3173557769677, 34.633728044432345], [-77.31713065906538, 34.63336282840834], [-77.31710973586684, 34.63333376880335], [-77.31708025708198, 34.633315744606755], [-77.31673968573378, 34.63310750955373], [-77.3166667297072, 34.63306290198788], [-77.3165264638136, 34.63299774658374], [-77.31638079021933, 34.632914097348376], [-77.3161718875546, 34.632894607511595], [-77.3160366137603, 34.63279404389749], [-77.31539216765536, 34.632309244906715], [-77.3153391696807, 34.632247438768545], [-77.31528398169252, 34.63223349754253], [-77.31494978659089, 34.631992917968645], [-77.3149043450384, 34.63196039988271], [-77.31489230226317, 34.631955769673596], [-77.31456415953994, 34.63183645930829], [-77.31441457930009, 34.631782072712454], [-77.31404262318685, 34.63165023368495], [-77.31381229942201, 34.63127965678387], [-77.31366147599493, 34.63097741346111], [-77.31361992996497, 34.63086419373596], [-77.31365265123532, 34.630781079277455], [-77.31363731179177, 34.63043982785157], [-77.3136369208075, 34.630432649957974], [-77.3135490264864, 34.63005253636475], [-77.3135401668685, 34.630031157008766], [-77.31349561629555, 34.62996689928683], [-77.31322659464865, 34.62954314192813], [-77.31295382470981, 34.62926754274217], [-77.3126886413435, 34.62886906215744], [-77.31245031533928, 34.62878439227465], [-77.31201994995635, 34.62872674302742], [-77.31137706282615, 34.62865500550469], [-77.3113654023856, 34.62865495256833], [-77.31135044087499, 34.62866591895802], [-77.31077478002757, 34.62890190646665], [-77.31048850753277, 34.62915976645699], [-77.30997222576542, 34.629676098278566], [-77.30941473778846, 34.630826481090466], [-77.30905253028672, 34.63308280143605], [-77.30898656837121, 34.63318700292351], [-77.30912145934744, 34.63589244702641], [-77.30935298682218, 34.63651265015798], [-77.30940761034277, 34.63709874116901], [-77.30993975378095, 34.63980812051248], [-77.31025454615586, 34.640012444750504], [-77.31047242421837, 34.640162799978675], [-77.31225364603203, 34.64064691300994], [-77.31317110677996, 34.64084937538632], [-77.3132091803765, 34.63971129867889], [-77.31417030045019, 34.63944726059523], [-77.31426314802978, 34.639360946630354], [-77.31475987944903, 34.639194773351484], [-77.31536747145933, 34.639076001373425], [-77.31537589849752, 34.63907408594705], [-77.31538846135102, 34.63907723673642], [-77.31545898255034, 34.639051844434306], [-77.3159540375433, 34.63876460111511], [-77.31638604858657, 34.638924786072955], [-77.31659314093685, 34.63894581670716], [-77.31663849144157, 34.6389850154006], [-77.31669119616947, 34.63895925311371], [-77.31726902533892, 34.63893668130337], [-77.31730435126752, 34.63886456464846], [-77.31783394239002, 34.63878566956608], [-77.3178804918781, 34.63879332517439], [-77.31800882156729, 34.63885516973349], [-77.31835323659642, 34.63890564793416], [-77.3185363793896, 34.639347946688744], [-77.31856022376576, 34.63947075025714], [-77.31848392905769, 34.63979455833093], [-77.31834277224, 34.640344529568104], [-77.3182806132136, 34.64044389468177], [-77.31823460588748, 34.64055805488843], [-77.31796007246908, 34.6412409584711], [-77.317914340271, 34.6414366278241], [-77.31780215152656, 34.641593581193504], [-77.31739563755781, 34.6421622947915], [-77.31734163212116, 34.642236549638554], [-77.31732816928503, 34.642422203020544], [-77.31722458442997, 34.643029710599265], [-77.31722498470617, 34.643462457293765], [-77.31715971581824, 34.643882571278255], [-77.31731964643737, 34.64439323105421], [-77.3178518096883, 34.64547565594983], [-77.3179496541788, 34.64551925064427], [-77.31797712788881, 34.64545847966128], [-77.3181805753163, 34.64498484845778], [-77.31829708352771, 34.644463821235426], [-77.31838863987973, 34.644516191664664], [-77.31858769117515, 34.644067829138706], [-77.31860911458224, 34.64401957254931], [-77.31876778590068, 34.643662161545144], [-77.3187971417929, 34.64359603697506], [-77.31882985800847, 34.6435243043326], [-77.31898465042157, 34.64321044878717], [-77.31902757271912, 34.643143842468284], [-77.31928293118489, 34.64274757507347], [-77.31929606274905, 34.64272719752073], [-77.31930706589182, 34.64271179873742], [-77.31933542788049, 34.64269982528314], [-77.31986518524184, 34.64230249801185], [-77.32008212278275, 34.64212655442426], [-77.32024615540162, 34.64204530791241], [-77.3204350796006, 34.6419518963988], [-77.32066558268596, 34.64200409548713], [-77.32083569551635, 34.642026320837445], [-77.32114180080694, 34.64228304087587], [-77.32128481922337, 34.64228518682944], [-77.32156512992299, 34.6424347131518], [-77.32131587623316, 34.64261145733671], [-77.3212233747731, 34.642689470643006], [-77.32097685621443, 34.64293735031855], [-77.3209645620854, 34.64295074153913], [-77.32096002549052, 34.64297238390098], [-77.32087601554736, 34.64337316196286], [-77.32110787936998, 34.64370903774052], [-77.32112820757551, 34.643742681356514], [-77.32114092759569, 34.64375883219174], [-77.32121249915338, 34.64384970740067], [-77.32144088884276, 34.644139696802945], [-77.32153961757764, 34.644265052691566], [-77.32206640252566, 34.64418140600602], [-77.32221920526612, 34.64412252039457], [-77.32219114598561, 34.64403683824626], [-77.32217290512574, 34.643970658104095], [-77.32200860082295, 34.64341167763021], [-77.32195938455807, 34.643245559418034], [-77.32195384614471, 34.64322539650823], [-77.32194708657956, 34.643200983985366], [-77.32194339948003, 34.64308684301993], [-77.32189824528845, 34.64248797272487], [-77.3219405618825, 34.642383242015484], [-77.32199455632549, 34.642244226215766], [-77.32208170559926, 34.6421809748555], [-77.32221426535148, 34.64211572849737], [-77.3223713285928, 34.64202898560584], [-77.32267313169132, 34.6418768968355], [-77.32297603961568, 34.6418518870427], [-77.32327420946503, 34.64179132220781], [-77.32329189210446, 34.64178740270094], [-77.32359603543328, 34.641750942936596], [-77.32393177068901, 34.641717625290056], [-77.32420860963619, 34.64161303358237], [-77.32447632082004, 34.64155882058767], [-77.32455508494053, 34.64155184943407], [-77.32487186931624, 34.64172761100658], [-77.32516152228283, 34.64194160077114], [-77.32542951185135, 34.642116730776564], [-77.3256189111082, 34.6422594984211], [-77.32563868106902, 34.64227663157908], [-77.32587450333233, 34.64226581867064], [-77.32593614142242, 34.64226180002975], [-77.32594240387905, 34.6422606362023], [-77.32595707586657, 34.64225449517134], [-77.32619140355294, 34.64215949212723], [-77.32623211125481, 34.642124697659334], [-77.32640705992051, 34.64202720907322], [-77.3267205453033, 34.64185712682884], [-77.32681068420607, 34.641817438345825], [-77.3268702245275, 34.641792390667405], [-77.32712899881278, 34.641671786965475], [-77.32739563227786, 34.64154195019089], [-77.32788104491347, 34.64140165822412], [-77.32800153073066, 34.64137081844326], [-77.32814674068715, 34.641329980173495], [-77.32830442740519, 34.64128499604441], [-77.32842365956688, 34.64124103754662], [-77.32859258113866, 34.64112575125342], [-77.32884101250791, 34.64096344043678], [-77.32895553668357, 34.640876976111485], [-77.32917529761795, 34.64083919708616], [-77.32933566417279, 34.64075802905551], [-77.32945369781304, 34.64063139801763], [-77.3296929873664, 34.64056516340023], [-77.3297690506639, 34.64060762194433], [-77.33006148696941, 34.64076849227685], [-77.33046416911463, 34.640880823625345], [-77.33058721772275, 34.641090852331075], [-77.33065982629371, 34.641187496652], [-77.33062366309731, 34.641293466105125], [-77.33058351032311, 34.641475092061974], [-77.33049921259308, 34.64184458172076], [-77.33045638628867, 34.642059387517364], [-77.33069620446699, 34.64269586001751], [-77.33071157074019, 34.643140406305804], [-77.33159861277642, 34.643590669749805], [-77.33163538178528, 34.643607606735685], [-77.33165032126969, 34.64359896131177], [-77.3316622567406, 34.643597941690324], [-77.33299604491233, 34.64392338606963], [-77.33320420565732, 34.643703109812634], [-77.33358460363871, 34.64366588870747], [-77.33378871842072, 34.64358158461543], [-77.33388424218805, 34.6435638248544], [-77.33409917511656, 34.6433223566161], [-77.3341458395798, 34.643272382754404], [-77.33415936710752, 34.64326036781477], [-77.33417504595738, 34.6432372039963], [-77.33466777389987, 34.642683246857345], [-77.3347825289348, 34.64250763281183], [-77.33517417451705, 34.642342317485785], [-77.3352337958557, 34.64231361995927], [-77.33528503968833, 34.64230954296958], [-77.3358155277213, 34.64222067780754], [-77.33585516465035, 34.64221952348481], [-77.3359083149304, 34.6422242112417], [-77.3364842210564, 34.64216369821185], [-77.33694651533011, 34.64227772800634], [-77.33715953129617, 34.64233810064664], [-77.33740395438696, 34.642520167625676], [-77.33760939625172, 34.6424779276264], [-77.33778617484853, 34.642270261379764], [-77.33822095103119, 34.64183803130151], [-77.33828365896315, 34.641772923291505], [-77.33832190432462, 34.641749937222244], [-77.33836856684624, 34.64175854118703], [-77.3384889184507, 34.641801255408694], [-77.33889756768451, 34.64185929910526], [-77.33900962399, 34.64198609111364], [-77.33926776913397, 34.6422744483171], [-77.33945825152321, 34.64251221187264], [-77.33962240547977, 34.642720419615536], [-77.33988816449876, 34.64327095434995], [-77.33989939320972, 34.64329565877233], [-77.33990541103796, 34.643308213548465], [-77.339924344732, 34.64335191965989], [-77.34017570487067, 34.643921180677665], [-77.34024418573034, 34.644092328623046], [-77.34046511224633, 34.64444983198575], [-77.34047717601086, 34.64447243114504], [-77.34050166845599, 34.64447898501082], [-77.34080677884958, 34.644556921526316], [-77.34097104547011, 34.64464277201839], [-77.34098566753575, 34.64465054935221], [-77.34105730309747, 34.64469608248064], [-77.34116918264242, 34.644767195606725], [-77.34122373844616, 34.64480187236378], [-77.34131795410225, 34.645104075713064], [-77.34133354553117, 34.64520879742929], [-77.34134094778207, 34.64529450616426], [-77.34140545353583, 34.64562092426847], [-77.34138551283196, 34.64600335235596], [-77.34138416345239, 34.64604584426093], [-77.3413583312141, 34.64617227140928], [-77.34130421098729, 34.6464788157957], [-77.34129534320091, 34.64658641592509], [-77.34126943151307, 34.64685908115612], [-77.34126484924097, 34.646906215895434], [-77.34124552805355, 34.64720715318223], [-77.34122176849883, 34.64733412623152], [-77.34110784115386, 34.647648082566015], [-77.34108736975982, 34.647726748997854], [-77.34106020700477, 34.64777829884381], [-77.34088187007644, 34.64811674935116], [-77.34082699112194, 34.64815091930612], [-77.34062968714541, 34.64825938597143], [-77.34038954482736, 34.648409791980555], [-77.34030340918652, 34.64842456483321], [-77.34020454043126, 34.64845651769765], [-77.34011367809369, 34.64848588299094], [-77.34000152282117, 34.64851550268254], [-77.3397493239233, 34.6484793655848], [-77.33967129220085, 34.6484653971766], [-77.33961175736354, 34.64848194973281], [-77.33943580663825, 34.64842324217135], [-77.33933808136013, 34.64840045847558], [-77.33910696973952, 34.64833317718066], [-77.33899426423963, 34.64828273465434], [-77.33886961829552, 34.64822901323671], [-77.33874814899796, 34.64821196137751], [-77.33866365686572, 34.64823074444748], [-77.3384269429549, 34.64856169565463], [-77.33849056010791, 34.64863874459471], [-77.338596195478, 34.648770291175296], [-77.33866732553378, 34.6489507029222], [-77.33870955852957, 34.64911990894039], [-77.33876916626528, 34.64935872282674], [-77.33891117795568, 34.64969867917891], [-77.33874911516509, 34.65018967459223], [-77.33874864931632, 34.65020553044558], [-77.33874614078515, 34.6502118679573], [-77.33874326089112, 34.65022016451461], [-77.33873411022736, 34.65021937834402], [-77.33816327744165, 34.650520504784346], [-77.33798992668409, 34.65054448336558], [-77.33785624092877, 34.65058585935324], [-77.3378274141391, 34.650688711343605], [-77.33759074388988, 34.65085794068166], [-77.3374746359984, 34.65102663849736], [-77.33710613240466, 34.65114593196181], [-77.33702252103785, 34.651216853416344], [-77.33696657077107, 34.651219596686516], [-77.33648127197736, 34.651234804252546], [-77.3363863835473, 34.65123777752408], [-77.3361365463443, 34.650985963568964], [-77.33616055275441, 34.65072164301921], [-77.33576976902599, 34.650769557883606], [-77.33566717175849, 34.650845221583296], [-77.3353023093958, 34.651000419419816], [-77.33513883402493, 34.65140269071561], [-77.33460488289803, 34.65150496176025], [-77.33452221985465, 34.65152079476037], [-77.33444586880061, 34.65153541832833], [-77.33390560327426, 34.651638895811324], [-77.33332066735092, 34.65175092580819], [-77.33328898509463, 34.65175699376907], [-77.33297559018514, 34.6518416288559], [-77.33328185644766, 34.65182774314635], [-77.33332562667673, 34.65193939080167], [-77.33358538044047, 34.652601962244475], [-77.33396592991232, 34.65276965151478], [-77.33414889009866, 34.65284988626716], [-77.33444037416194, 34.65297854205101], [-77.33461990939098, 34.6530324871154], [-77.33484136971197, 34.65310934085648], [-77.33494051706751, 34.65313656903088], [-77.33515055929635, 34.653194251027166], [-77.33517990281157, 34.653200700646856], [-77.33526428027209, 34.653215615306436], [-77.3354646476648, 34.65324711689945], [-77.33551244471491, 34.65326223661156], [-77.33560127636127, 34.65328138698991], [-77.33600038390328, 34.65333469276587], [-77.33619799890971, 34.65348717619855], [-77.336902561681, 34.653828932091564], [-77.33690753370733, 34.6538314412576], [-77.336909125823, 34.65383195863834], [-77.3369125952211, 34.65383344397178], [-77.33691052270441, 34.65383636407575], [-77.33691088174639, 34.65384810305694], [-77.33697000587631, 34.65466955616872], [-77.33682459776361, 34.655090692523814], [-77.33668786725458, 34.655552258668244], [-77.33666312678848, 34.65560723032787], [-77.33663448943487, 34.655659467095994], [-77.33625486158866, 34.655893377712076], [-77.33613262587933, 34.656348802872124], [-77.33577755885949, 34.65607174601465], [-77.33571869854092, 34.65568523382214], [-77.33548207284849, 34.65517194986355], [-77.33537367639317, 34.65488858259066], [-77.33532712935335, 34.654667300762], [-77.3352686129592, 34.65448100328683], [-77.3350958843954, 34.65437611767272], [-77.33486224026636, 34.65443947857845], [-77.33475153128555, 34.65448994662948], [-77.3346782918345, 34.654803565703446], [-77.33463513590937, 34.654989907883916], [-77.33462302034165, 34.655037261895785], [-77.33460242565579, 34.6551073096703], [-77.33447994268325, 34.65557097912765], [-77.33415725565564, 34.655834829970125], [-77.33411662750008, 34.65587667255568], [-77.33409453523653, 34.65587846820492], [-77.33355380666758, 34.655881233910776], [-77.33343854061089, 34.65568896202346], [-77.33319847370221, 34.6554365683819], [-77.33309739316155, 34.65520086543725], [-77.33294668988748, 34.65483447352867], [-77.33293585113623, 34.6548084194667], [-77.33293279080793, 34.65480145255284], [-77.33289211130926, 34.65475590300373], [-77.33275292479433, 34.65459650308361], [-77.33269688998011, 34.654573643115015], [-77.33258337632745, 34.65461977688564], [-77.33242770414202, 34.6548707386411], [-77.33237615327363, 34.65494150583275], [-77.33240660512304, 34.65529562528247], [-77.33232451517571, 34.65556060299208], [-77.33223527007395, 34.65607463374555], [-77.33222195644935, 34.65613216182611], [-77.33222343640493, 34.65616473667899], [-77.33223099021686, 34.65620344520574], [-77.33233590749352, 34.65690585250794], [-77.33234856331865, 34.656991557991994], [-77.33233092271621, 34.6571535769096], [-77.33230252856075, 34.65754199670205], [-77.33206442209985, 34.65768100543679], [-77.33193656780007, 34.65777546971628], [-77.3318814497804, 34.65781619308154], [-77.33159152253606, 34.65793938421334], [-77.33158147259815, 34.658203447829784], [-77.33121710730686, 34.65820998634193], [-77.33073557448026, 34.65817264067509], [-77.33029137589133, 34.658333651703785], [-77.32993396109126, 34.658453575254214], [-77.32943219480515, 34.658060134289656], [-77.32918518464541, 34.65763967497105], [-77.32877220585786, 34.65748207580462], [-77.32796696701317, 34.657141752677205], [-77.3276461822625, 34.65719865882253], [-77.32733271000957, 34.657172250627916], [-77.32710536921564, 34.657164150725684], [-77.32664623234663, 34.656942703255964], [-77.32615118862222, 34.65713750345649], [-77.3260476563522, 34.6571508749559], [-77.32593878536107, 34.65717705313761], [-77.32536714864617, 34.65695103296926], [-77.32487359166572, 34.656989321770666], [-77.3244700138487, 34.65690248346504], [-77.32406534701344, 34.65684621398514], [-77.32324389558772, 34.65709234150483], [-77.32374588034304, 34.65817128115354], [-77.32359785619448, 34.658757606091605], [-77.32364077242846, 34.65942861883825], [-77.32437235443672, 34.65948076712463], [-77.32456764797666, 34.65934774554278], [-77.32471988683275, 34.65958887496461], [-77.32523716175382, 34.65949275063219], [-77.32536096957223, 34.65946811735737], [-77.32562513702615, 34.65931575860958], [-77.32582073890441, 34.65920980795503], [-77.32608206324078, 34.65907502588364], [-77.32614837721205, 34.659057816890936], [-77.32641663050615, 34.65898820285821], [-77.3266413676036, 34.658929880908346], [-77.32681597682772, 34.65888456743209], [-77.32710505449253, 34.65922735252238], [-77.32718742305745, 34.65929733300184], [-77.3272645757277, 34.659376784981234], [-77.3272452933337, 34.65949374103586], [-77.32719687048473, 34.65968451926312], [-77.32719285171395, 34.66011212449109], [-77.32709219051644, 34.66024440352487], [-77.32690933647362, 34.66051476806851], [-77.32679461474284, 34.66087029973813], [-77.32659772913551, 34.661156184084604], [-77.32685382360056, 34.66179763167289], [-77.32698054276192, 34.66200224760261], [-77.32711714893831, 34.66204347907439], [-77.32762731839465, 34.66182770656652], [-77.3277905271689, 34.66133747257979], [-77.32786043661876, 34.660983037220774], [-77.32797053202816, 34.66083819126837], [-77.32805135672356, 34.6607504236667], [-77.32831129491223, 34.66048899490073], [-77.3285731454464, 34.66015984643738], [-77.32903492874244, 34.6602326698352], [-77.32925334353769, 34.66035796061098], [-77.32956035014058, 34.66074991747864], [-77.32976221231422, 34.66108914800108], [-77.33003961752681, 34.66152817106908], [-77.33015392021981, 34.66165312830054], [-77.33048898644373, 34.661946659778344], [-77.33090763746159, 34.662253105607995], [-77.33091623548323, 34.66225991409569], [-77.33132530220772, 34.66258742163312], [-77.33167941373591, 34.66287092443238], [-77.33197359543686, 34.662573368387726], [-77.33203497628766, 34.662098481821666], [-77.3320845086245, 34.6620096048214], [-77.33210429681465, 34.66179807655174], [-77.33213246023763, 34.66138706265275], [-77.33213404055483, 34.66124090896243], [-77.33251637829918, 34.660661552172655], [-77.33263743937597, 34.6605238719034], [-77.33279821623836, 34.66047058268158], [-77.33301056360465, 34.66040019986173], [-77.33309973920187, 34.66037759544424], [-77.33318813768035, 34.66037066665829], [-77.33341409752775, 34.66034849487881], [-77.3336310201253, 34.660320202957045], [-77.33373560914224, 34.66035499631876], [-77.33392074973442, 34.66038727903049], [-77.33387330187887, 34.660158344052526], [-77.33379754128106, 34.65999063707712], [-77.33360584662844, 34.65970915100639], [-77.33347919457786, 34.65947273475908], [-77.33337146601534, 34.659383199195986], [-77.33318477173906, 34.65920708045411], [-77.33308225883661, 34.6591103744112], [-77.33301470543412, 34.65887416306932], [-77.33323163896978, 34.658814734532456], [-77.33347018047044, 34.65903391073297], [-77.33352320763976, 34.65868157533199], [-77.33398379218694, 34.658455213595545], [-77.33399073879102, 34.658450740469554], [-77.33399335194461, 34.658450452468045], [-77.33399784358032, 34.65844625488445], [-77.33434731653874, 34.6581163267352], [-77.33453054159381, 34.65793679252557], [-77.33506619782798, 34.65747973183436], [-77.3350771119106, 34.65746985451425], [-77.33508102587824, 34.65746669347657], [-77.33509118264362, 34.657459304595385], [-77.33561537049658, 34.65696157463292], [-77.33590740453283, 34.65690357289128], [-77.33617654825815, 34.65656738928717], [-77.33649937459113, 34.65693906204406], [-77.33689932917761, 34.65697743370005], [-77.33704954487958, 34.656998113302095], [-77.33736197544823, 34.6569268807129], [-77.33751995300314, 34.656879089327575], [-77.33772029770459, 34.65681848032341], [-77.33790662844477, 34.656768043305235], [-77.33812358219288, 34.656696184112356], [-77.33844369494068, 34.65660212178982], [-77.33871774698017, 34.65646619676803], [-77.33916889538537, 34.65605580287057], [-77.33923460620002, 34.656005906535235], [-77.33925739317094, 34.65596495597122], [-77.33943480580837, 34.65572082235203], [-77.33975925075394, 34.65527572119529], [-77.33982751379202, 34.655224864735075], [-77.33996000165932, 34.65510324356798], [-77.34032111983893, 34.65488511362557], [-77.34065800150378, 34.65466560237589], [-77.34090281466533, 34.654593169453044], [-77.34117064480537, 34.65447689375355], [-77.34122882840474, 34.654465644404354], [-77.34150975632099, 34.65442685180157], [-77.341796104804, 34.65439349125498], [-77.34182237503344, 34.654389210325625], [-77.34184807982825, 34.65438788600305], [-77.34213184294522, 34.65437326610061], [-77.34213898683328, 34.654371433203096], [-77.34242717501873, 34.654315323715224], [-77.34247998535358, 34.65428506991281], [-77.34273801045424, 34.654165738770565], [-77.34292390019826, 34.65411175316877], [-77.34303558150836, 34.6540532441247], [-77.34320939876707, 34.65398920423212], [-77.34333916454571, 34.65397065794703], [-77.34345074424381, 34.65378013269364], [-77.34336234303532, 34.653686408753856], [-77.34327705860903, 34.65366170257924], [-77.34316478293971, 34.65350343535738], [-77.34294910040646, 34.653468050988764], [-77.34291641546821, 34.65346042053486], [-77.34289678056979, 34.65345992240944], [-77.34284747938793, 34.65344094299327], [-77.34257491734144, 34.653354373148694], [-77.34237416454357, 34.653346389340804], [-77.34194219279102, 34.653195389565184], [-77.34190145148702, 34.65318967941999], [-77.34187733233432, 34.65318181297744], [-77.34184705746071, 34.65315626338976], [-77.34145131996573, 34.652877036002025], [-77.34115404456134, 34.65265708172788], [-77.34103153396894, 34.65255993743675], [-77.34086009274294, 34.65244773235021], [-77.34081495941064, 34.6524146177351], [-77.34076862713947, 34.652332482164354], [-77.34063126523135, 34.65220420609059], [-77.34058598368938, 34.651929402870536], [-77.340686678119, 34.65162753909408], [-77.34074824021008, 34.651413624609354], [-77.34075605307014, 34.65080903897329], [-77.34074319389707, 34.65077578891084], [-77.34071599295727, 34.65071627807074], [-77.34060499144663, 34.64995997138533], [-77.34047682018692, 34.649968354688994], [-77.34030386494771, 34.64998205266664], [-77.34034115889546, 34.64969911811342], [-77.34043908400082, 34.64971435951453], [-77.34060908838335, 34.64994559562617], [-77.3406112684676, 34.64994754474268], [-77.34061256725276, 34.64994972365101], [-77.34061312620685, 34.64995300602332], [-77.3407887155166, 34.650744377107806], [-77.34084574579862, 34.65076171357123], [-77.34143556218199, 34.65087173448005], [-77.34150532236008, 34.65078587562701], [-77.34201623341521, 34.65060105784635], [-77.34202047836072, 34.650599532148085], [-77.34202110944874, 34.65059911221882], [-77.34202193932093, 34.650599205584705], [-77.34203529144014, 34.65059844192568], [-77.34232299283978, 34.65057726745749], [-77.34233807037292, 34.650583143772984], [-77.34254061989432, 34.6507204958064], [-77.34271049143696, 34.65084309327822], [-77.34292515839618, 34.65110736440251], [-77.34311730070516, 34.65127411355089], [-77.34312644336939, 34.65128295195184], [-77.34313895663801, 34.651290942994635], [-77.34334417469861, 34.65142597864672], [-77.34348166945975, 34.65149397466508], [-77.34382282068977, 34.651626540296796], [-77.34382876029238, 34.6516278769336], [-77.34384280392729, 34.651633375632166], [-77.34417621039844, 34.65176355759818], [-77.34430683297757, 34.651816479140784], [-77.3444805557582, 34.65189506403966], [-77.34452705054115, 34.65191609634113], [-77.34454287627838, 34.651923255243034], [-77.34457503486756, 34.651937802341365], [-77.3447636197103, 34.652060323596075], [-77.34490986340957, 34.652227667644034], [-77.3451640029483, 34.652415845943246], [-77.34555108105458, 34.65256069620048], [-77.34562285245337, 34.652588952845534], [-77.34565107917783, 34.65259972790877], [-77.34571114390413, 34.652625829613086], [-77.34611427894446, 34.65283088549221], [-77.34633714141891, 34.65296188494186], [-77.34633788165999, 34.6529623003576], [-77.34633840718412, 34.652962963004526], [-77.34653591398279, 34.653144343615736], [-77.3466964910566, 34.65333454713103], [-77.34717040886014, 34.65391608666911], [-77.34726052593189, 34.65400621657928], [-77.34738716976578, 34.654083717385674], [-77.34769726973109, 34.65428977558193], [-77.34790342687828, 34.654376844439106], [-77.34813571244544, 34.65456997441797], [-77.34829416717733, 34.654727713042604], [-77.34835705405091, 34.654794547944384], [-77.3485203206794, 34.654956772067436], [-77.348719519572, 34.65525068280241], [-77.34887252350171, 34.655407740046876], [-77.3490863448772, 34.65553840924745], [-77.34890008127715, 34.65568646373431], [-77.34881382480634, 34.655719652034755], [-77.3487063600367, 34.65573675136498], [-77.34851120242918, 34.65580702832504], [-77.34834000087614, 34.65583092199108], [-77.34821488709163, 34.655925770763155], [-77.3480695789512, 34.65584925066309], [-77.34787882208596, 34.65584684092217], [-77.34761395563235, 34.655820482935674], [-77.34755286374012, 34.65581816849036], [-77.34750301257483, 34.65582272048012], [-77.34727655153634, 34.65578690547387], [-77.34697045089732, 34.655728860385864], [-77.34689003157175, 34.65570653053701], [-77.34675971465047, 34.65569039063439], [-77.34666601861089, 34.65575746766094], [-77.34659418233768, 34.65582759993765], [-77.3465247642335, 34.65589012290133], [-77.34655006860584, 34.656161915909735], [-77.34660528881281, 34.656451853571255], [-77.34660786891992, 34.656722712351865], [-77.34679594814786, 34.65705859564528], [-77.34684626570541, 34.65712303870892], [-77.34686863672798, 34.657126437098015], [-77.34720697360393, 34.657282782609784], [-77.34729379643821, 34.65738527168597], [-77.34740077725642, 34.657450400378856], [-77.34740469257221, 34.65745278397989], [-77.34741076217554, 34.65745647907521], [-77.34751128697458, 34.65752881336991], [-77.34759008449383, 34.65759565185121], [-77.34773112421877, 34.65766770980051], [-77.34789662728996, 34.657752265624495], [-77.34794164659009, 34.6577516157283], [-77.34821067765593, 34.6577117717996], [-77.34832407304626, 34.65764202665206], [-77.34853666766128, 34.65752595031316], [-77.34904476256335, 34.65736341042904], [-77.34914273964301, 34.65735525286716], [-77.34924669467372, 34.65734430235689], [-77.34967894947127, 34.65725606257946], [-77.34976659037734, 34.65727296863808], [-77.35013301767563, 34.65750535601694], [-77.35054594096488, 34.65786998447423], [-77.35085938183921, 34.65836388681818], [-77.35132005549264, 34.65862864447622], [-77.351722743946, 34.658951168511756], [-77.35203617061241, 34.659353341318734], [-77.35226902654344, 34.66016267493723], [-77.35226970070958, 34.66016500280679], [-77.35226984876472, 34.66016525385717], [-77.35226983730496, 34.6601655593067], [-77.35226979498049, 34.660166495191405], [-77.35221163637382, 34.6605952507245], [-77.35236824803857, 34.6606559439006], [-77.35249097996696, 34.66055688677834], [-77.3525889232065, 34.66046332026748], [-77.3526400505485, 34.6604152797388], [-77.3527498392203, 34.66036271020515], [-77.35292851499462, 34.66025745207707], [-77.35348880580045, 34.66004788914413], [-77.3535265742064, 34.660046854927955], [-77.3535839444854, 34.66005754639253], [-77.35421597642916, 34.6602903209662], [-77.35442397308412, 34.66049302764495], [-77.35532216672648, 34.660345273647366], [-77.35551212718012, 34.66036636618108], [-77.35564275603248, 34.66037653211652], [-77.35579687464624, 34.66052482109821], [-77.35604717753723, 34.660724189953655], [-77.35625753465226, 34.660888138594174], [-77.35645760632605, 34.661059955435775], [-77.35671264260915, 34.66124303193154], [-77.35687464786585, 34.661382630276194], [-77.35703235253845, 34.661556026757445], [-77.35728428688532, 34.66171996808376], [-77.35733785212403, 34.66200115361097], [-77.35732807057735, 34.662216952276275], [-77.35730282413905, 34.66242797071061], [-77.35723033006485, 34.66253993678292], [-77.35711982741766, 34.662689759308954], [-77.35695271280295, 34.662898071250055], [-77.35699508006925, 34.6632404740065], [-77.35703635035142, 34.66335955893909], [-77.35710346034097, 34.66334159787482], [-77.35739915457208, 34.66337893872817], [-77.35759086620686, 34.663410009751765], [-77.3580701398164, 34.663588573212266], [-77.35807713702745, 34.663590357682345], [-77.35807787369437, 34.66359943561998], [-77.35813086740407, 34.66394319932217], [-77.3581494494574, 34.66406506435982], [-77.35812804625843, 34.66426655365631], [-77.35811959759513, 34.66434608609163], [-77.35814445915105, 34.66455313645222], [-77.35814942462497, 34.66471733183531], [-77.35817309506116, 34.664944743276266], [-77.35813619654066, 34.66504165853168], [-77.35814568529273, 34.665427777010045], [-77.35814136148208, 34.66551196000937], [-77.35814311669756, 34.66552809485586], [-77.3581444633111, 34.66555759965999], [-77.35813578405444, 34.666016488747054], [-77.35806880775326, 34.66635623743278], [-77.35806033247803, 34.66651424082086], [-77.35806791886836, 34.66676621597611], [-77.35802081583724, 34.66700705619196], [-77.35810261736641, 34.66711862906973], [-77.35812754742076, 34.66745733178267], [-77.35812019478404, 34.667480790959075], [-77.3577697369297, 34.66775425886129], [-77.35774915083006, 34.66776006104521], [-77.35738180327172, 34.66805999830296], [-77.35737223456698, 34.66807092714605], [-77.35735371315803, 34.66815678925196], [-77.35726620859653, 34.66855097412883], [-77.35726338444634, 34.66857326597044], [-77.35727594793664, 34.66861697728445], [-77.35732791243169, 34.6692918849977], [-77.35762294019752, 34.669291088636726], [-77.35791290650712, 34.66918174769092], [-77.35803241338688, 34.669143728724116], [-77.35829030623198, 34.669053509553194], [-77.35849338961832, 34.669135376342275], [-77.35854221365088, 34.66914546053234], [-77.35853261675405, 34.66924957311143], [-77.35853500662175, 34.66937335257775], [-77.35855344465486, 34.6695310258893], [-77.35850244399447, 34.669704460934064], [-77.35835376036954, 34.66988563812215], [-77.35830806415998, 34.67011414647831], [-77.35840099736528, 34.67036653590235], [-77.35849179622899, 34.670421273691964], [-77.35867955797738, 34.67061657163917], [-77.35897538729724, 34.6707750146683], [-77.35898592570487, 34.67078067009929], [-77.35926401975544, 34.67095504197213], [-77.35949222762504, 34.67109813244226], [-77.3595471664712, 34.67113127235946], [-77.35962023318405, 34.67117381118044], [-77.35983964185715, 34.67130031856462], [-77.3600158674347, 34.671355858841025], [-77.36018383778386, 34.67142954855913], [-77.36055871055699, 34.67152757289989], [-77.36056406311117, 34.671528972520534], [-77.36056582179485, 34.67152968522063], [-77.360568504205, 34.671530917460956], [-77.36091896084399, 34.67165202801785], [-77.36110104395107, 34.671740738108085], [-77.36123209462409, 34.67180517053518], [-77.36157557987568, 34.67187993680962], [-77.36163128151561, 34.671892061421055], [-77.36165412287505, 34.6718970332694], [-77.36173428689132, 34.67193158478591], [-77.36195355082522, 34.672038170190554], [-77.36217498265044, 34.672164369738184], [-77.36224371316564, 34.672208998144065], [-77.36231546515842, 34.67226566284563], [-77.36242047265249, 34.672349530203434], [-77.36250145345957, 34.67240478830522], [-77.36266567858888, 34.67253567203947], [-77.36276308359191, 34.67259758398072], [-77.36288463463815, 34.67267484291477], [-77.36303857376986, 34.67277970897031], [-77.36316332204302, 34.67288304292562], [-77.3632797660855, 34.67298824061968], [-77.3633904335233, 34.673092729194934], [-77.36346868440236, 34.67323701819201], [-77.36365156332377, 34.673262830701496], [-77.36379534330665, 34.673379749573684], [-77.36389543661458, 34.673453582596025], [-77.36392501142862, 34.67347703155543], [-77.363952656638, 34.67350286045109], [-77.36404067450252, 34.673585095760274], [-77.36412914135869, 34.67367938338779], [-77.36426499947271, 34.67380661546556], [-77.36439266361037, 34.67392978419563], [-77.3644827868253, 34.6740331690955], [-77.36458237378882, 34.674147409205865], [-77.36458938844792, 34.67415568466065], [-77.36468305719961, 34.67427320996765], [-77.36476396017495, 34.67436614963668], [-77.36487999135423, 34.67451582003741], [-77.36500943950156, 34.67477054441199], [-77.36503560350378, 34.67479024565935], [-77.3650469664099, 34.67481464809689], [-77.36506134631337, 34.6748810601587], [-77.36511099181686, 34.675126437739166], [-77.36519360639315, 34.675281885996704], [-77.36535937279744, 34.67562710010564], [-77.36543191055631, 34.67566782703993], [-77.3654212981278, 34.67573798561244], [-77.36554899380192, 34.67595152536786], [-77.36555641767458, 34.675966204014415], [-77.36567019774168, 34.67619117018558], [-77.36565468175567, 34.67628478490653], [-77.36575173565438, 34.67633743676397], [-77.36613253127842, 34.67646879265093], [-77.36629102455467, 34.67654137451596], [-77.36634539524724, 34.67654146497365], [-77.3664462128903, 34.67657191089942], [-77.36681042178779, 34.67681388109011], [-77.36707096885823, 34.6767713024159], [-77.36744957502724, 34.676673602065904], [-77.36767418932145, 34.676558985431086], [-77.36801481934883, 34.676438831990886], [-77.36811221594243, 34.676452347852326], [-77.36841640601995, 34.67652387191241], [-77.36916499133093, 34.676604078571806], [-77.3692668360594, 34.67659810966463], [-77.36933545369699, 34.6766047325573], [-77.36941292966917, 34.676651531064614], [-77.36974104859625, 34.67708093069536], [-77.36991273056822, 34.6775576127469], [-77.36991126339049, 34.677738379083934], [-77.37006791562831, 34.677962659512986], [-77.3702961913642, 34.67823050063498], [-77.37053558285263, 34.678413557101294], [-77.37056302686936, 34.678443006521626], [-77.37051882360983, 34.67847133281609], [-77.37022782527957, 34.678822432009206], [-77.37007330045876, 34.678796375733285], [-77.36987303534073, 34.678634474887126], [-77.36981455868754, 34.67860134501543], [-77.36926998697543, 34.678650272390854], [-77.3692504687155, 34.67864142165137], [-77.36920864965887, 34.67862918319367], [-77.36923315842829, 34.678260498205915], [-77.36883231222936, 34.67809599927306], [-77.36832437682496, 34.67841163506873], [-77.36814667835387, 34.6783964809626], [-77.36795999262164, 34.67845227497513], [-77.36756251954398, 34.67834715903068], [-77.36713950703839, 34.678637735974434], [-77.36682573093725, 34.67882393102789], [-77.36673029224814, 34.67891318964891], [-77.3665056948768, 34.6790006924105], [-77.36647237059451, 34.67901048540861], [-77.36642863507035, 34.67901128300242], [-77.36619793342055, 34.67902044003989], [-77.36617128027356, 34.67901687320831], [-77.36612090167688, 34.67901120928989], [-77.36577506694806, 34.6789517670158], [-77.36562143760943, 34.67884925556814], [-77.36539830190054, 34.67884760007533], [-77.36532666179323, 34.678833879689925], [-77.36521856111685, 34.67884955350711], [-77.36514670317035, 34.67884418634089], [-77.36505079958869, 34.67875331613814], [-77.36503370206599, 34.67873406682813], [-77.3650211829856, 34.678717314781736], [-77.3647988101511, 34.67852067235668], [-77.36458305268465, 34.67830276493794], [-77.36457766917214, 34.67829669167874], [-77.36457308600508, 34.67829150211726], [-77.36440007103946, 34.6780391867615], [-77.3643265753157, 34.677837986628916], [-77.3642728377969, 34.67774290984072], [-77.36418214224554, 34.67762188014501], [-77.36407524343363, 34.677500802465865], [-77.36395871570714, 34.67740114632967], [-77.36376896281138, 34.67698330243492], [-77.36374699472414, 34.67696505339355], [-77.36374605091791, 34.67694297999979], [-77.36372711926138, 34.67688928787664], [-77.36373047791751, 34.6767014250283], [-77.36376686533757, 34.67660542219404], [-77.36375083520204, 34.67656786548817], [-77.36371859771789, 34.676562634533774], [-77.36357658294651, 34.676615048416906], [-77.36347956489661, 34.676669838946154], [-77.36322033587939, 34.6768115451809], [-77.36303657577241, 34.676915342855864], [-77.36275349439347, 34.67707936563151], [-77.36258773041574, 34.67715565628403], [-77.36251498390098, 34.677179905953814], [-77.36241887533987, 34.67719908204644], [-77.36218997744484, 34.677268722829936], [-77.36195626542455, 34.677188906074676], [-77.36193005022027, 34.67718118380253], [-77.36191831738054, 34.67717369799304], [-77.36182537569813, 34.67711804730963], [-77.36163708209068, 34.67701250234871], [-77.36142653882253, 34.67680603672505], [-77.36139244988247, 34.676806609634625], [-77.36089175489201, 34.67684777423049], [-77.36081996743567, 34.67685311180441], [-77.36081437307635, 34.67685324158908], [-77.36080831589169, 34.67685463415281], [-77.36077823424074, 34.67686337076759], [-77.36014528723032, 34.67709657910639], [-77.36005214397237, 34.67704998997212], [-77.35979692733417, 34.67699818619691], [-77.35968411457425, 34.676939090644], [-77.35960166792964, 34.67690756970065], [-77.35948634849572, 34.67695912210577], [-77.3589880195515, 34.67695986660465], [-77.35878398722025, 34.676974679335814], [-77.35880378083698, 34.67713462016384], [-77.35885069360266, 34.67718645730409], [-77.35890442922438, 34.67724789253009], [-77.35900045820136, 34.677465381600726], [-77.35908975579501, 34.677582722430245], [-77.35910075260904, 34.67760250287219], [-77.3591864126893, 34.677716447248315], [-77.35932340894624, 34.67786638195011], [-77.3594347038038, 34.67791952593778], [-77.35960253569041, 34.67799966612474], [-77.35971710707044, 34.67809634494915], [-77.35983292469221, 34.678172925417], [-77.35999544068825, 34.67827629709259], [-77.35995062631828, 34.67843923385098], [-77.35994568854588, 34.67851170663418], [-77.35991651560644, 34.67861693001378], [-77.35983498704931, 34.67869881393805], [-77.35963730774081, 34.67884697441397], [-77.35952384953976, 34.67890705272065], [-77.35938271357762, 34.67900463877969], [-77.35911803058335, 34.67918551606227], [-77.3587577732909, 34.67981535788612], [-77.35861941796684, 34.68001995126585], [-77.35857656416658, 34.680090153322666], [-77.35793597515774, 34.68058474464788], [-77.35785826955949, 34.68062164983313], [-77.35774666417036, 34.680691536280904], [-77.35766109024439, 34.68086168469158], [-77.35758338161179, 34.68101619483067], [-77.3576061304635, 34.68119822595665], [-77.35761752828844, 34.68128942798307], [-77.35761205544215, 34.681360734986605], [-77.3573812622047, 34.68147129473527], [-77.35737900706657, 34.68147267100618], [-77.35737849725865, 34.68147280130288], [-77.35737731393806, 34.68147334819327], [-77.3570490352665, 34.68157850294106], [-77.35684631791517, 34.68163925392915], [-77.35639444964175, 34.681852036994385], [-77.35637717569483, 34.68186159133337], [-77.35636659889309, 34.68186764615899], [-77.35634949475364, 34.681871280534516], [-77.35572558417547, 34.68201406959007], [-77.35550279760193, 34.68212879864396], [-77.35548006754297, 34.68197761907366], [-77.35530026749719, 34.681890485344525], [-77.3551796899585, 34.681832796243526], [-77.35493903224523, 34.68156453759768], [-77.35486569063286, 34.681436581026276], [-77.35477828220078, 34.68115378464741], [-77.35468685075509, 34.68078583466275], [-77.35457351614085, 34.680639964808165], [-77.35426711119769, 34.680320514810816], [-77.35394552850224, 34.679898964820914], [-77.35389049047413, 34.67982200823748], [-77.35384880125795, 34.67976472168651], [-77.35350991681621, 34.67933784653274], [-77.35350431375602, 34.67933085931996], [-77.35348845673427, 34.67932682229056], [-77.35296500820913, 34.67915324319796], [-77.3527634522531, 34.679112712815225], [-77.35211295436655, 34.67902831893613], [-77.35183567552563, 34.67892016643463], [-77.35134722846625, 34.678625998493175], [-77.34979137641068, 34.6785756272468], [-77.34940243380007, 34.67905531662048], [-77.34908751279339, 34.67944371057774], [-77.34858703402139, 34.680060949190505], [-77.34819812861049, 34.680540564183055], [-77.34841239405041, 34.68088479564979], [-77.34883479385945, 34.681010320390186], [-77.34995518910493, 34.68127414880451], [-77.34995522451837, 34.68127416874013], [-77.34995558421028, 34.68127441124596], [-77.35046804850002, 34.68166780121159], [-77.35081775307154, 34.68203884703011], [-77.3508836510486, 34.682121405981], [-77.35088901918873, 34.68213217726096], [-77.35087243958814, 34.6822379584083], [-77.35078921023755, 34.68299736840917], [-77.35073543640236, 34.68311651937784], [-77.3506768831692, 34.683190524790746], [-77.35046804106125, 34.68403292390355], [-77.35039723632144, 34.68413771669786], [-77.35041723292835, 34.68423689314622], [-77.35039269400141, 34.68448509956482], [-77.35037548480268, 34.68462808473498], [-77.35042950923375, 34.68485095108187], [-77.35088326023836, 34.68504575167243], [-77.35102158625804, 34.685183652630755], [-77.35105077727536, 34.685746732859656], [-77.35129297652972, 34.685763162795], [-77.35104974414611, 34.68599765994092], [-77.35101051506936, 34.686039469442996], [-77.35093127924544, 34.686158308420765], [-77.35075267749455, 34.68644916116725], [-77.35068144466638, 34.68653560704462], [-77.3504607891302, 34.686797812720705], [-77.35044785594366, 34.68681136780035], [-77.35044724462064, 34.686816657765775], [-77.35042129241424, 34.68688401903628], [-77.35035515706757, 34.687067785228706], [-77.35035256534846, 34.68707819489923], [-77.35023857269834, 34.6872699422491], [-77.35021077883867, 34.687331297422304], [-77.35011045168199, 34.687439201381785], [-77.35008822089026, 34.68745578844703], [-77.34993564242774, 34.687525881987774], [-77.34982910897686, 34.68754521014233], [-77.34931440727604, 34.6876980443468], [-77.34928943150828, 34.68770503338065], [-77.34928441008284, 34.68770726806034], [-77.34927994219255, 34.687706577070934], [-77.34897674198147, 34.687746953469876], [-77.3489724124074, 34.68775105613357], [-77.34896487045812, 34.687746027811436], [-77.34873932064934, 34.687728440952064], [-77.34868742619275, 34.68770182042937], [-77.3485678918463, 34.687556832120634], [-77.34855429890479, 34.687476646242146], [-77.34850965482622, 34.68732113574514], [-77.34848795857258, 34.68713351932919], [-77.34846732317266, 34.68697614978973], [-77.34844996695996, 34.68684194878787], [-77.34843681701386, 34.686778696197365], [-77.3484095577126, 34.68660380557894], [-77.34840881351163, 34.686599983154316], [-77.3483759790785, 34.68643133572013], [-77.34830543995756, 34.68637440757013], [-77.3481938623442, 34.686309577586925], [-77.34807460841793, 34.68626908194721], [-77.34792782144183, 34.68619511553881], [-77.34761987671831, 34.68622484827522], [-77.34734677700592, 34.686134807934266], [-77.34726007009168, 34.686107565569], [-77.34680701066786, 34.686142369069685], [-77.34674163474553, 34.68615748185435], [-77.34667599710028, 34.686162865377966], [-77.34621158683613, 34.686252748344174], [-77.34611147097898, 34.68626631092475], [-77.34584144496154, 34.68622523852066], [-77.34560962877302, 34.68619513342847], [-77.34554536231201, 34.68615456613339], [-77.34520793032331, 34.68600115501235], [-77.34499609760667, 34.685984824164755], [-77.34492120876381, 34.68593655261972], [-77.34489589694911, 34.685867633108415], [-77.3448812590899, 34.685711499591804], [-77.34476402484349, 34.68526917442904], [-77.3446862276635, 34.68499079545293], [-77.34467293656392, 34.68494510361944], [-77.34466761820983, 34.684924205984565], [-77.34463711246761, 34.68485668578806], [-77.34454122671309, 34.684652291468], [-77.34448962894658, 34.6844612546473], [-77.34436270632334, 34.684043797617456], [-77.34435267895876, 34.68400905310304], [-77.34434813141154, 34.68399329575892], [-77.34410516511885, 34.68380535719875], [-77.3440814637208, 34.683786204044864], [-77.34387904788161, 34.683648212268224], [-77.34383818984095, 34.68361663768263], [-77.34380134283178, 34.68358095796819], [-77.34340569013415, 34.68321717365169], [-77.3433372720622, 34.68321377985296], [-77.34331836703758, 34.68315986113274], [-77.34294910435247, 34.68272840324447], [-77.3429458532399, 34.68272666316846], [-77.34294431029583, 34.682723816089805], [-77.34268903444476, 34.6825934339747], [-77.34262059861555, 34.682582792218575], [-77.3424054784551, 34.68253932934029], [-77.34219243361996, 34.68251811084353], [-77.34195975289492, 34.68237154462167], [-77.34153198946775, 34.68223801320416], [-77.34132388227384, 34.682141728243984], [-77.34101479442892, 34.68201383518546], [-77.34087892322401, 34.68195223854557], [-77.34046356509792, 34.68179408795332], [-77.34021096287918, 34.681851986302014], [-77.33956823958692, 34.68227682379654], [-77.33948416367815, 34.68229353327743], [-77.33938424024115, 34.68231406765171], [-77.33884463244722, 34.682434628575905], [-77.33793064404504, 34.682644249729506], [-77.33754224752926, 34.68279707280159], [-77.3373174864796, 34.682834260657195], [-77.33690878867513, 34.68291723294003], [-77.33668178947549, 34.68290886949929], [-77.3365919005781, 34.682977855220834], [-77.3364625867925, 34.68312575266716], [-77.33639880465836, 34.68329628764947], [-77.33632924156278, 34.68348227663583], [-77.33629734146612, 34.68363579381182], [-77.33600612535564, 34.683963991607996], [-77.33586993387459, 34.68410403080184], [-77.33558532607026, 34.68422083379136], [-77.33483446177257, 34.68502647998058], [-77.3347728476952, 34.685307022062304], [-77.33547608283513, 34.68532110180688], [-77.33561901258352, 34.68529641206507], [-77.33598696045225, 34.68562786442146], [-77.3360399171259, 34.68567556849602], [-77.33609536494376, 34.68571708451586], [-77.33654175195153, 34.68603913730268], [-77.33655674687023, 34.68606620005443], [-77.33658691224998, 34.68608547027737], [-77.33721651745944, 34.686346848562806], [-77.337625176322, 34.68663236882077], [-77.33848333059018, 34.68694872785896], [-77.33950843072037, 34.6873307193668], [-77.33980913132083, 34.687356492306975], [-77.33995436989309, 34.687393468177405], [-77.34027853234059, 34.68747599296836], [-77.34157578214376, 34.68772249166304], [-77.34210739069829, 34.68768716909756], [-77.34244971350691, 34.68783835533537], [-77.34282150738368, 34.68810182046135], [-77.34293450778215, 34.68825363885624], [-77.34313718330282, 34.68826338269922], [-77.34331754876877, 34.688747224836845], [-77.34350879028318, 34.68898226272785], [-77.34364217318846, 34.68928576112362], [-77.34371488224053, 34.68944136019431], [-77.34384421208846, 34.6898986236734], [-77.343847341271, 34.68991056131646], [-77.34384729408603, 34.68991625570684], [-77.34383369098818, 34.68998714282991], [-77.34379500456913, 34.69016143248417], [-77.34373991868227, 34.69039304200158], [-77.34373513731934, 34.69041333694081], [-77.34373068664702, 34.69043629937985], [-77.34369689046281, 34.69045814139463], [-77.34352365499218, 34.69057190068782], [-77.34350687954705, 34.69057235724407], [-77.34336874203463, 34.69055747251865], [-77.34309418431768, 34.69051027349364], [-77.34308343667477, 34.690509298313316], [-77.34307710688483, 34.69050888661337], [-77.34249382139635, 34.69061628938618], [-77.34242871725623, 34.690702515477795], [-77.34217385653024, 34.69097092730536], [-77.34202309071672, 34.691135641496246], [-77.34144563818232, 34.69160192539366], [-77.34078653580839, 34.69223436910387], [-77.34075564527102, 34.692266823618745], [-77.3407439274545, 34.692285905862065], [-77.34066530578416, 34.69236459477899], [-77.34020014587172, 34.692847887604955], [-77.34008193191806, 34.692946162506395], [-77.33995060473566, 34.693308633795404], [-77.3399231573317, 34.693373264926144], [-77.33991663959155, 34.69343795897995], [-77.33988018958269, 34.69375696120768], [-77.33987332810395, 34.69386747656694], [-77.33986116072768, 34.694027126174475], [-77.33975045407166, 34.69437170938672], [-77.33968971230613, 34.69451346714706], [-77.33957570858232, 34.69477952210842], [-77.3395814700667, 34.694882267720516], [-77.33954617044496, 34.69502455272011], [-77.3393671660564, 34.69505961492097], [-77.33925468658025, 34.695026503454066], [-77.33881942776476, 34.69488442324595], [-77.33854065110611, 34.69478755241591], [-77.33805431256862, 34.69460438970976], [-77.3378363166716, 34.69454113780462], [-77.33772338967557, 34.69453599329945], [-77.33727316321963, 34.69418610669527], [-77.3372354486619, 34.69415500707641], [-77.3368059941962, 34.69380087498962], [-77.33677140494481, 34.69378384307919], [-77.33674769636009, 34.6937733840249], [-77.33662832892134, 34.69369684566966], [-77.33659680802958, 34.693686067986185], [-77.33648171861142, 34.69365864550734], [-77.33641779946693, 34.69366174185377], [-77.33637196655428, 34.69361672116523], [-77.33620905071045, 34.693566934224776], [-77.3360134010228, 34.693578716117074], [-77.33587209985149, 34.693441596009485], [-77.33574357511799, 34.69310866519225], [-77.33561355872766, 34.69309804746586], [-77.3355869044822, 34.69299333935855], [-77.3353637275358, 34.69259261884813], [-77.33532838707768, 34.69252916445629], [-77.33508255821754, 34.69208776593141], [-77.33492510773786, 34.69180505407735], [-77.33378282200849, 34.692266021992225], [-77.33367500662698, 34.69237186577565], [-77.3333477300811, 34.69330043523215], [-77.33327978030607, 34.69334707323657], [-77.33253214909757, 34.693912000919724], [-77.33251579992616, 34.693916059161246], [-77.33223655726613, 34.69442755580863], [-77.33220358771378, 34.694538900167466], [-77.33216134744382, 34.69468155487304], [-77.33210153884615, 34.69480695775006], [-77.33197138572322, 34.69495128862118], [-77.33169314173941, 34.69532568219581], [-77.33160046933416, 34.69548952050788], [-77.33154788430113, 34.695592804081386], [-77.3313981511105, 34.695701960708675], [-77.33068803168058, 34.69610711667348], [-77.3306813270085, 34.69610856482704], [-77.33067487939519, 34.696108959893486], [-77.3300909281642, 34.69621601683677], [-77.33005035950053, 34.69621973356408], [-77.32988927805377, 34.696319133718454], [-77.32964702839715, 34.69646078244745], [-77.3296063899071, 34.69653673155134], [-77.32951673802317, 34.696749962313696], [-77.32930486966666, 34.697162773501475], [-77.32920308454494, 34.69734394407704], [-77.32911238030542, 34.6973871818544], [-77.32886661171928, 34.69749987346698], [-77.32842168155071, 34.697703800432585], [-77.32823383585773, 34.69776125268007], [-77.32776490632456, 34.69790369051983], [-77.32745769582087, 34.698006977567374], [-77.32718206580815, 34.698105378764616], [-77.32710105434515, 34.69812791063554], [-77.32704885450545, 34.69810980134492], [-77.32681443901832, 34.6980951547157], [-77.3265647141853, 34.69808806711383], [-77.32652249580431, 34.69805869751033], [-77.32628659234838, 34.69790787382533], [-77.32612296607147, 34.6977025697662], [-77.32605060311722, 34.69762255087562], [-77.32588818795475, 34.697426092933256], [-77.32572972134182, 34.69726910392132], [-77.32563767026804, 34.697224670991446], [-77.32556850987918, 34.697221509396485], [-77.32545997526017, 34.69721654762002], [-77.32542067360109, 34.69721520686525], [-77.3253920415643, 34.69721654022487], [-77.32526964779512, 34.6972198757052], [-77.32505906076673, 34.697275592874455], [-77.32494918163184, 34.697292556615466], [-77.324825003199, 34.69729185072715], [-77.32369999215332, 34.69753266943136], [-77.3236824086496, 34.69753134168211], [-77.32325400643715, 34.69708748508164], [-77.32279776095993, 34.69669621394306], [-77.32276783071951, 34.69667321268716], [-77.32273956553223, 34.696655918712935], [-77.32264044314823, 34.69663123901569], [-77.32219001245898, 34.69648696389569], [-77.32197781445281, 34.6964926195448], [-77.32159262258483, 34.696482542420895], [-77.32102235187276, 34.69647301280386], [-77.32097313015464, 34.69647712020245], [-77.32036525096184, 34.69658578689554], [-77.32033068634424, 34.69657711286849], [-77.32010143717378, 34.69657833383873], [-77.31982814489179, 34.69656950915052], [-77.31976833207192, 34.696579734847504], [-77.31969715117415, 34.69657455776797], [-77.31918520807537, 34.69652623794262], [-77.31891370885316, 34.69648458470861], [-77.31862024200018, 34.69641029645792], [-77.31853470749745, 34.696381971312455], [-77.31829837752838, 34.69633801462741], [-77.3181149110141, 34.696310728232454], [-77.3180527101697, 34.69630318057557], [-77.317936191138, 34.69628955749239], [-77.31776320229697, 34.69626936906802], [-77.31765275088313, 34.69627206303798], [-77.3174661736738, 34.69626141916651], [-77.31707550163631, 34.696321899398015], [-77.31685762780421, 34.696295340383884], [-77.31665336980404, 34.696252449557726], [-77.316457653055, 34.696255050904064], [-77.31626993664338, 34.69625754561848], [-77.31608188259345, 34.69629785074957], [-77.31582689252917, 34.69633404674629], [-77.31561487589128, 34.69665697285537], [-77.31561678435045, 34.6967053801358], [-77.31568474468278, 34.69684648102794], [-77.31571302994675, 34.696975562302725], [-77.31575642899764, 34.6971736125724], [-77.31535106707952, 34.69735849934979], [-77.31490474770347, 34.69743162777644], [-77.31473453397857, 34.697419840654824], [-77.31463963038863, 34.697406907730155], [-77.31445651485919, 34.69735167300716], [-77.31426526963745, 34.697300712029474], [-77.31418242295803, 34.69725967531094], [-77.31395397482751, 34.69714601939752], [-77.31353902942169, 34.696989978366545], [-77.3132527270939, 34.69689712071799], [-77.31312620550875, 34.69677431212008], [-77.31266765436347, 34.696621964873074], [-77.31261148231033, 34.69660208332044], [-77.31257814617567, 34.69660023409203], [-77.31250919313368, 34.696583597567134], [-77.31199200228947, 34.69655709138669], [-77.31180297219728, 34.69643565808222], [-77.31146126709399, 34.69632346380653], [-77.31144806790347, 34.69631449957632], [-77.31141663200017, 34.696305937345535], [-77.31105410741415, 34.696223369031905], [-77.31090955954649, 34.69616193843508], [-77.31040869293649, 34.695931535059806], [-77.3102708895453, 34.69587498719833], [-77.30983589398836, 34.69573663698646], [-77.30970187200668, 34.69568691521107], [-77.30927195323171, 34.69562731052168], [-77.30926879384127, 34.695628042810284], [-77.30925971036845, 34.69562658847457], [-77.30877178350714, 34.695613961500555], [-77.30867474115209, 34.69561209808554], [-77.30853126722997, 34.69560874472475], [-77.30806280838583, 34.69565761306558], [-77.30779423529697, 34.695593417481575], [-77.30751043953714, 34.69586610484959], [-77.30745078559298, 34.69592728646009], [-77.30730883279426, 34.69619136144867], [-77.30700987509344, 34.6968132786134], [-77.30693293728692, 34.697027785200525], [-77.30706928392526, 34.69701474836924], [-77.30747318369468, 34.69740049725235], [-77.3076487130608, 34.697380070345986], [-77.30817834207987, 34.69731843347645], [-77.3086810090338, 34.697259931694504], [-77.30892132018721, 34.69723196337806], [-77.30944459318303, 34.6970817743304], [-77.30990329247953, 34.69710823404723], [-77.31003978316465, 34.697093842591656], [-77.31038432931189, 34.697422022588086], [-77.31039612245019, 34.697517398993064], [-77.3104327319893, 34.69780114974429], [-77.31049120334522, 34.69823239193622], [-77.31051365148811, 34.698379030948416], [-77.31054516856886, 34.69867259134077], [-77.31057555483176, 34.69895563656377], [-77.31085004759768, 34.699307681953016], [-77.31100610654705, 34.69994643208222], [-77.31136070265083, 34.69992815114202], [-77.31220243720307, 34.699950217389954], [-77.31280044295048, 34.700397361808], [-77.31422381942768, 34.700795071413694], [-77.31434028527214, 34.70083387434949], [-77.31442787491514, 34.70083983174093], [-77.31552491438156, 34.700877906060335], [-77.31581376282114, 34.70057729116436], [-77.31621095832915, 34.70013929287241], [-77.31634761741833, 34.69998859536664], [-77.31671022730451, 34.69947976413291], [-77.31724386536243, 34.69908461216782], [-77.31759287031315, 34.699076634722466], [-77.31785413092962, 34.699044845547455], [-77.3181914135973, 34.69907000010478], [-77.31844675181931, 34.69906574782888], [-77.31872145851753, 34.69899690384217], [-77.31936814547521, 34.698836742264554], [-77.31971698672322, 34.69881525209357], [-77.32004354388266, 34.69876835538648], [-77.32063392843853, 34.69868246525721], [-77.32096247753182, 34.698649817510024], [-77.32119774236186, 34.69866890179274], [-77.32125851518924, 34.698661195698776], [-77.32138676484232, 34.6987117101352], [-77.3215278197365, 34.69876451638948], [-77.3216216812483, 34.698806843803624], [-77.32181497732321, 34.69898239078067], [-77.32202578271779, 34.69911095836576], [-77.32235489002372, 34.69935534708276], [-77.3229555179429, 34.69959878956507], [-77.32305910131012, 34.69967527206281], [-77.32325964800937, 34.69973434593598], [-77.32359839568652, 34.699879587234825], [-77.32367836835553, 34.69991387590182], [-77.32408976396341, 34.70024875683224], [-77.32424186711788, 34.700268694012536], [-77.32438261423077, 34.700377941215855], [-77.32476044561345, 34.700658056474296], [-77.32546312086228, 34.70120457946612], [-77.32607209535196, 34.70166756896485], [-77.32681393522182, 34.70223155480634], [-77.32771332197021, 34.702407181874364], [-77.32824900759579, 34.702417196747064], [-77.32860059806862, 34.702433840023446], [-77.33061641686612, 34.70242784086054], [-77.33064369472116, 34.70241764354435], [-77.33069205371874, 34.70240167466678], [-77.33271385335973, 34.701734044553405], [-77.33327770555631, 34.70159451846788], [-77.33496539129334, 34.701176880280414], [-77.3358580098696, 34.70095598097916], [-77.33697900086298, 34.700408761948175], [-77.33724205688281, 34.70031349616385], [-77.33831230603526, 34.69944274623987], [-77.33854512361509, 34.69924387799262], [-77.33878699064681, 34.699117156872525], [-77.33930585020269, 34.698641641837966], [-77.33960749174764, 34.6982903248295], [-77.3400166969163, 34.697995184882146], [-77.34037491996187, 34.69777264884395], [-77.34043982519147, 34.69773198854924], [-77.3410139643217, 34.69761451173965], [-77.34101963582387, 34.6976140828442], [-77.34102805689997, 34.69761517697186], [-77.34162574181805, 34.697588414269205], [-77.34214582169697, 34.69753200697272], [-77.34233171242168, 34.69749431833471], [-77.34266385128089, 34.6971334410498], [-77.34289874747972, 34.69686401657177], [-77.34296356978132, 34.69677784348885], [-77.34310216870509, 34.6966274721331], [-77.34364327138704, 34.696103793320404], [-77.34389586874349, 34.69575243639483], [-77.34410670363756, 34.69523800812616], [-77.34410689423915, 34.69523610215141], [-77.34410794762147, 34.69523401034048], [-77.34439893722259, 34.69470864741341], [-77.34457431170063, 34.694375930443286], [-77.3447554304353, 34.69417234713111], [-77.34490139347783, 34.694027594608514], [-77.34506469290211, 34.6939927810157], [-77.34540807686744, 34.69383849214867], [-77.34573784409672, 34.69373614900789], [-77.34615016996474, 34.69366261451737], [-77.34635695368137, 34.693665575800516], [-77.34660623367584, 34.6941000316017], [-77.34680026143924, 34.69420033753071], [-77.34689898233256, 34.69426894361479], [-77.34703538813233, 34.694346820174204], [-77.3471956642373, 34.6944348280524], [-77.34731145224458, 34.69450137154141], [-77.34772571982275, 34.69473944932052], [-77.34775599495703, 34.69479201570821], [-77.34798676632113, 34.694848027992315], [-77.34849606730491, 34.69454481600869], [-77.34885064968171, 34.69473804040875], [-77.34903211017156, 34.69476029136543], [-77.34919902575378, 34.69486414576066], [-77.34949958633833, 34.69498334155028], [-77.34954572645489, 34.69499153921661], [-77.34955775527602, 34.69501157839161], [-77.34966253982508, 34.69505703214354], [-77.34963326944947, 34.69496499058542], [-77.3496132738411, 34.694939560373804], [-77.34967268086491, 34.694715889959966], [-77.34965165730264, 34.69468820932262], [-77.34949272132289, 34.69463814250469], [-77.34940034661889, 34.69450958295874], [-77.34926892583412, 34.694416171994675], [-77.34900239659905, 34.694076827521286], [-77.34940357802157, 34.693550878569525], [-77.34940939656386, 34.69353357878676], [-77.34945897962962, 34.69348155354731], [-77.34989253567491, 34.69297987427355], [-77.35003101670586, 34.6928305333967], [-77.35024975242736, 34.692628499730205], [-77.35069961997633, 34.6921466865215], [-77.35102954127314, 34.69184901824565], [-77.35142130635009, 34.69150990815719], [-77.35183624530737, 34.691287722800205], [-77.35226842039269, 34.690984325785934], [-77.35277246658788, 34.69063495595371], [-77.35306197648192, 34.690411268915376], [-77.35337622992677, 34.69006467311734], [-77.3533830005012, 34.69005758790295], [-77.35340924788916, 34.689993219983094], [-77.3535771462439, 34.689591431101164], [-77.35360218137811, 34.6895462637425], [-77.35429342237848, 34.68900945441182], [-77.35438297811277, 34.68902926832094], [-77.35485257438147, 34.68914522006858], [-77.35502887484725, 34.689195025511154], [-77.3553579540799, 34.689255305153466], [-77.35541657476415, 34.68926428855337], [-77.35545101042524, 34.6892643318132], [-77.35548692623038, 34.68928744914791], [-77.35581598226563, 34.68937763243585], [-77.3559533452061, 34.68947716059995], [-77.35623094543767, 34.68967265635291], [-77.35621559423959, 34.6898584794995], [-77.35662572599641, 34.690105822994624], [-77.35670404906053, 34.6902709496618], [-77.35686872619652, 34.69044777685279], [-77.35789021545939, 34.69086174333692], [-77.35782607581011, 34.68994096365319], [-77.3573025637533, 34.689810289165784], [-77.35757219444555, 34.689303375430015], [-77.35756805504573, 34.68900163126261], [-77.35775439821138, 34.688826650541614], [-77.3578667155586, 34.68858764523093], [-77.35777462355706, 34.68848587356131], [-77.35752703221006, 34.688179903609814], [-77.35742573630796, 34.688138640969456], [-77.35734261925892, 34.68805782241044], [-77.35703275323006, 34.68782067003713], [-77.35689720192116, 34.68775702937459], [-77.35666865311003, 34.68766300160963], [-77.35660445232003, 34.687234155830076], [-77.35623768437534, 34.68748216051346], [-77.35623312689223, 34.68747974393204], [-77.35623245144359, 34.687479216825466], [-77.35610264736287, 34.68738306829147], [-77.35609906348881, 34.68735927685443], [-77.35608048290995, 34.68725639510523], [-77.35617988526022, 34.68715028861615], [-77.35621870039483, 34.68714620826692], [-77.35633470612609, 34.687132431368006], [-77.35660507624445, 34.68716959666804], [-77.35662303071203, 34.68717015349516], [-77.35663485272953, 34.68717054073497], [-77.35666699451075, 34.68717584423393], [-77.35718571672824, 34.68729370139234], [-77.35732724701448, 34.687085162351266], [-77.35744880867865, 34.68664105181911], [-77.35750397892066, 34.686573502668686], [-77.35790127615749, 34.6861957666492], [-77.35808899181943, 34.68600576405364], [-77.35812453703366, 34.685963583837605], [-77.35817965444782, 34.68593149557567], [-77.35887562178898, 34.68535292165693], [-77.35895857289447, 34.6853100103293], [-77.35931377061674, 34.685103090234485], [-77.3593225101435, 34.68510179512747], [-77.35960811156278, 34.68513426252101], [-77.36006088195276, 34.6852475115482], [-77.36011597433496, 34.6852794585962], [-77.36026772641408, 34.685310487054245], [-77.36072474029086, 34.68541139063122], [-77.36103794606004, 34.685358196852754], [-77.36184426611827, 34.68543152200556], [-77.36194009217638, 34.68534834607072], [-77.3625216844703, 34.684755570147544], [-77.36293539116832, 34.68468601251364], [-77.36336168592686, 34.684574556340735], [-77.36389645786268, 34.68469774588639], [-77.36393326704518, 34.68470629525587], [-77.36450883652448, 34.68474647110131], [-77.36481959819696, 34.684812438358094], [-77.36515530824296, 34.68503495634942], [-77.36540799745254, 34.68514793988187], [-77.36559495594267, 34.68512873302666], [-77.36580656705415, 34.68523534290077], [-77.36597037663206, 34.68525958515903], [-77.36614788572854, 34.68528585466441], [-77.3662928827153, 34.685255192165506], [-77.36665575235624, 34.68531615500096], [-77.36673042153978, 34.68534094030617], [-77.36691981094096, 34.68527986556986], [-77.36727615596291, 34.685140568072526], [-77.36740125887935, 34.68509167717181], [-77.36765654465296, 34.68499384095483], [-77.36749606858632, 34.68520066908371], [-77.36772787933877, 34.685333168133916], [-77.3677313633483, 34.685544017357685], [-77.36769568413283, 34.68566062645317], [-77.36761555515932, 34.685813888884724], [-77.36773203982733, 34.68601448810462], [-77.36781600606231, 34.68644806053136], [-77.3681913397059, 34.68649435616436], [-77.36823458782202, 34.68656134452197], [-77.36834009837706, 34.68672168944564], [-77.3682427702109, 34.68690800383328], [-77.3684414710523, 34.68702030228204], [-77.36811166592591, 34.68715739894187], [-77.36762143151373, 34.68738634948703], [-77.36729179061948, 34.68753187870661], [-77.36713815235048, 34.687686815397385], [-77.36721460996584, 34.68779788898658], [-77.36788252686011, 34.687973832330364], [-77.36766668931739, 34.68858896004307], [-77.3680358806174, 34.68909315278838], [-77.36834813591727, 34.68919237454971], [-77.36835550731179, 34.68946907615781], [-77.36889759902633, 34.690249090910946], [-77.36903678862053, 34.69023921779692], [-77.36950115703135, 34.69028640069227], [-77.36997191607068, 34.69030780500779], [-77.37008167619547, 34.69029397064262], [-77.37022665731507, 34.69067407562767], [-77.37035219588904, 34.690803550726926], [-77.37044237162995, 34.69111384450621], [-77.37045631963593, 34.69112990144938], [-77.37043404590814, 34.69114254297311], [-77.37041110069539, 34.691136116906115], [-77.37003419026776, 34.691048372957226], [-77.36989358081412, 34.69094231773114], [-77.36955678833276, 34.69099073338535], [-77.36905331733922, 34.69101499634399], [-77.3686912960367, 34.69096016195821], [-77.36847503030369, 34.690914826470106], [-77.36862173732197, 34.690558745276086], [-77.3678933471547, 34.69079288774626], [-77.3675136647054, 34.69089301894149], [-77.36646075948585, 34.690799607702104], [-77.36620990026002, 34.69171350065132], [-77.36566591427712, 34.69264787681273], [-77.36568045322784, 34.69282298817292], [-77.36594261634255, 34.69289310050755], [-77.36593955843857, 34.69272543673878], [-77.367181247306, 34.69203868864582], [-77.3673607471915, 34.69231798903215], [-77.36748602748696, 34.6925129206076], [-77.36718470152671, 34.693241998441366], [-77.36798456394513, 34.693395989477885], [-77.36800142356515, 34.69340177934134], [-77.3680238127978, 34.69341379825109], [-77.36859704624453, 34.69373175263752], [-77.36833362160662, 34.694346003183306], [-77.36864191087915, 34.69525646989411], [-77.3686470089256, 34.69527030066592], [-77.36864674266226, 34.69527775580544], [-77.36866369836714, 34.695304516474515], [-77.36899261648308, 34.69579275219829], [-77.36934436206163, 34.69615666162967], [-77.36945299481079, 34.69622685494407], [-77.36953911767114, 34.69629034710876], [-77.37023768591722, 34.697008667352286], [-77.37034117462564, 34.69712014215707], [-77.37047145921196, 34.69720319478953], [-77.37080782320739, 34.697549425060906], [-77.37115252447443, 34.697857711065254], [-77.37129572470582, 34.697962347074046], [-77.37141649023769, 34.69807236834832], [-77.37160974327473, 34.69828225950992], [-77.37165760322304, 34.698472286240374], [-77.37175631576761, 34.69874950483836], [-77.37161596697938, 34.69929285801695], [-77.37216343230253, 34.699624406971296], [-77.37276232081305, 34.69919889644431], [-77.37291493502494, 34.69909737925889], [-77.37292657907342, 34.69908184860748], [-77.37333175586403, 34.699154789336944], [-77.37348978854445, 34.69917925499564], [-77.3735675511899, 34.69923162082071], [-77.37363442214024, 34.6993160509236], [-77.37375235823436, 34.69944991236787], [-77.37396125815887, 34.69961751844458], [-77.37410026900648, 34.699745957970904], [-77.37419729742487, 34.69983560719521], [-77.37423406869635, 34.69987108552125], [-77.37432984204528, 34.699963491457694], [-77.37441283165391, 34.70009020762732], [-77.37441575103846, 34.700094490265776], [-77.3744199521812, 34.70009983918679], [-77.37450721598586, 34.70022121117387], [-77.37456969668938, 34.700312339610086], [-77.37469745493001, 34.70046902730691], [-77.374855309441, 34.70066262463797], [-77.37489495852186, 34.700711251272736], [-77.37492020763182, 34.70075154749544], [-77.37507022095105, 34.70097059841871], [-77.37510176532554, 34.70100908036365], [-77.37525605121135, 34.70119277120355], [-77.37527072750855, 34.701210511418985], [-77.3752899905525, 34.70122776066064], [-77.3756288328204, 34.701628915500066], [-77.37567561483671, 34.7016873563764], [-77.37571912151162, 34.70181204862392], [-77.37580337305218, 34.70198327705653], [-77.3758347424159, 34.702088001826354], [-77.37587725626344, 34.70232067331436], [-77.3759958383013, 34.70255324948294], [-77.37607282023225, 34.702656404992915], [-77.3761986710058, 34.70286178647679], [-77.37630439668922, 34.70299822248887], [-77.37639003755888, 34.70310874001625], [-77.37649958135364, 34.70324890574801], [-77.3765831120407, 34.70335437927496], [-77.37664969853131, 34.70343814333524], [-77.37678375931034, 34.70359418910334], [-77.37694570873649, 34.703774661015174], [-77.3769920952023, 34.70382808028195], [-77.3770326574612, 34.70387288601297], [-77.37720183341187, 34.70406089238678], [-77.37739834916621, 34.70427798009763], [-77.37742470125349, 34.70428359676275], [-77.37742099858075, 34.70430688788415], [-77.37742380026054, 34.704342449487214], [-77.37744381699457, 34.70454744880427], [-77.37734945877011, 34.70473580601822], [-77.37733454687336, 34.70480617123996], [-77.37720811936101, 34.70493380713012], [-77.37680648323857, 34.70507174785388], [-77.37653682001317, 34.705184293319384], [-77.37627215859732, 34.705170885240676], [-77.37619581041703, 34.70516884479661], [-77.37585399965444, 34.7054744786365], [-77.37583873773234, 34.70549060757566], [-77.37581092653141, 34.705525957813784], [-77.37542883411693, 34.706042972813435], [-77.37526353431048, 34.706257228039505], [-77.37521461235553, 34.706379290212595], [-77.37530805708722, 34.70654697241883], [-77.3753799695861, 34.70664627105592], [-77.37562907468603, 34.70699023441166], [-77.37564861491967, 34.70722801406803], [-77.37574543627699, 34.70791244113603], [-77.37575801611953, 34.707932355530644], [-77.37666031050603, 34.707494620740384], [-77.37690863670446, 34.70704658150295], [-77.37661647434705, 34.70685448413406], [-77.37681512244046, 34.70635558395855], [-77.37683440728303, 34.70633712625779], [-77.3774581459815, 34.706135674847495], [-77.37777568300564, 34.70608441220776], [-77.37851047745475, 34.70607766886428], [-77.37868279273542, 34.706071687138575], [-77.37875900125017, 34.70607104392606], [-77.37914188707768, 34.705986211050615], [-77.379450933708, 34.70589561884165], [-77.37948302290505, 34.70588405238151], [-77.37956186691127, 34.705886591827706], [-77.38008722060431, 34.705912040602335], [-77.38058319797798, 34.706244175127004], [-77.38061398509818, 34.70626527979993], [-77.38062236427729, 34.70627720330379], [-77.38065818221627, 34.70630995826555], [-77.38113188758591, 34.70673071912441], [-77.38138325742632, 34.706837249167116], [-77.3822152155589, 34.70736070617269], [-77.3822286417944, 34.70736985213906], [-77.38223845050821, 34.70737340970953], [-77.38225874160239, 34.70738996904881], [-77.38350014463529, 34.70863272792835], [-77.38432201883836, 34.708993556370935], [-77.3847128299806, 34.70901988807239], [-77.3851190544062, 34.70911797895404], [-77.38565050155488, 34.70883369308294], [-77.38580572591309, 34.70874448437786], [-77.38626674285187, 34.70891929134572], [-77.38655597623271, 34.7091442590233], [-77.3867767808025, 34.70937116540156], [-77.38720199532915, 34.70976759029946], [-77.38727737511601, 34.709855630581536], [-77.38738920777094, 34.709838255223616], [-77.38759202958563, 34.7098759055008], [-77.38768976821663, 34.70985030680613], [-77.38782291367268, 34.70979935385074], [-77.38795186375114, 34.709740354623605], [-77.38818181539408, 34.70963806945993], [-77.38845699727455, 34.709559679013665], [-77.38894348965461, 34.70938727951441], [-77.38927929747652, 34.70928832722401], [-77.38936917307407, 34.709274078610974], [-77.38989746100044, 34.70945108554793], [-77.3899490715071, 34.709485034853806], [-77.38997344768039, 34.7095049785048], [-77.39047725172375, 34.709707615061646], [-77.39052036492754, 34.709725680067834], [-77.39052232862741, 34.70972491004795], [-77.39052671648834, 34.70972492764941], [-77.39097968831766, 34.709724697075735], [-77.39115649890803, 34.709742666842956], [-77.39146002883625, 34.70977791222665], [-77.39146640908439, 34.709779297201656], [-77.39147203025827, 34.709781710458834], [-77.39175983359236, 34.70987279468312], [-77.39205848222092, 34.709992669726134], [-77.39233963186166, 34.71008411793429], [-77.39265307388933, 34.710173196150365], [-77.39293552871894, 34.71023991220084], [-77.39314980347791, 34.71028111585375], [-77.39355017388503, 34.710331032501756], [-77.39364345047547, 34.710340248910214], [-77.3939516013903, 34.71036439992929], [-77.39411727775962, 34.71036695701335], [-77.39417981704426, 34.71037041131014], [-77.39424090722916, 34.71040389432885], [-77.39478818358148, 34.71048319317087], [-77.39490110973986, 34.710574980569035], [-77.39504635278549, 34.710698335989996], [-77.39510721151126, 34.710768809363415], [-77.39521425784363, 34.710890748400516], [-77.39528546191721, 34.710979240440935], [-77.39550035890505, 34.71121779206998], [-77.39552858491592, 34.71124630271306], [-77.39573529378872, 34.71154775305433], [-77.39574600817002, 34.71156169996214], [-77.3957535090194, 34.711576157900296], [-77.39596340550766, 34.71190715242509], [-77.39595955345094, 34.711918991981605], [-77.39596656584553, 34.712187832908405], [-77.39564981040354, 34.71249443783823], [-77.39606890475672, 34.71269976627817], [-77.39609175871414, 34.7127907916161], [-77.39600058344661, 34.713240840298454], [-77.39599730595114, 34.71331688959671], [-77.3963674501922, 34.713881541812626], [-77.3964325724225, 34.713953385961965], [-77.39693402865328, 34.714138587411966], [-77.3969788885077, 34.71417195118001], [-77.39708842801086, 34.714257840819464], [-77.39716631978024, 34.71431697231461], [-77.3971924203142, 34.714353016455306], [-77.39725545060556, 34.714502974219165], [-77.39739305118289, 34.71476673920069], [-77.39744366726624, 34.714870828410774], [-77.39747751709601, 34.71495313142752], [-77.39761431762474, 34.71524600630451], [-77.39779326514498, 34.71559782167903], [-77.39780041074577, 34.71561474652632], [-77.39780646245931, 34.7156273744862], [-77.39789467609921, 34.71579704915221], [-77.39798384221801, 34.715969010835494], [-77.39799069623231, 34.71598173927493], [-77.39799654072083, 34.71600244036573], [-77.39808387283892, 34.716283582484806], [-77.39809698885499, 34.71638374847252], [-77.39813159411194, 34.71664245360927], [-77.39815559080473, 34.71680564017373], [-77.39817040136316, 34.7168730010194], [-77.39829277362328, 34.71719477235121], [-77.39829323815492, 34.71719555157537], [-77.39852838811098, 34.71748539303736], [-77.39856061732709, 34.71752943286374], [-77.39859338777921, 34.71758013938825], [-77.39880629320129, 34.717873335341345], [-77.39885637777611, 34.7179517244637], [-77.39889125140324, 34.71806107872228], [-77.39887405033106, 34.71814705586345], [-77.39885714327005, 34.718231562834106], [-77.39881391201428, 34.71831648303883], [-77.39869858954316, 34.71860839222337], [-77.39861613380938, 34.71870638092436], [-77.39853622307982, 34.718878572973324], [-77.39847001165779, 34.71898286441178], [-77.3983127146707, 34.719159364258395], [-77.39796385650055, 34.719433179220836], [-77.39781805430499, 34.71941323614491], [-77.39766688837852, 34.71949254766555], [-77.39754657790415, 34.71971756090727], [-77.39725445851784, 34.71966874364568], [-77.39698645004586, 34.71954981498476], [-77.3966938545653, 34.719390952503225], [-77.39649608445492, 34.719282739223175], [-77.39628400701866, 34.719149312829664], [-77.39613944221233, 34.71909181082155], [-77.39588696360238, 34.71886977107054], [-77.39573041922297, 34.71870927943469], [-77.39564253691697, 34.71859428716372], [-77.39538411320149, 34.71842585653006], [-77.39472106412268, 34.718237401839836], [-77.39446551989168, 34.7182313102262], [-77.39431464549881, 34.71817336814465], [-77.39386817819634, 34.71808030173129], [-77.39373740341637, 34.71811761509523], [-77.39352186059436, 34.71837340805162], [-77.39346028617886, 34.71876295047274], [-77.3938731635417, 34.71928342773616], [-77.39366952316279, 34.71956835979538], [-77.39350894333629, 34.71984900904557], [-77.3934274591163, 34.7202457766556], [-77.39318145750133, 34.720664427448746], [-77.39317957379403, 34.72071819416815], [-77.39313926122495, 34.720741097931885], [-77.39296424532287, 34.720754966530244], [-77.3924373630444, 34.72080429699395], [-77.39222814379275, 34.72074762730422], [-77.39124010109886, 34.720511049876094], [-77.39032922242421, 34.7200680327406], [-77.38992583316917, 34.719975415265516], [-77.38900907918071, 34.71936070770789], [-77.38854117459391, 34.71920730820792], [-77.38789106314422, 34.719426665709044], [-77.38873004860075, 34.720323029074294], [-77.38918614028512, 34.720544461638205], [-77.38962498129341, 34.72098014749031], [-77.38978140142953, 34.7211194984352], [-77.38990663347666, 34.72113678005832], [-77.39004927539975, 34.721300284648194], [-77.39049274966028, 34.721785103378956], [-77.39073021268524, 34.7222696901902], [-77.39070814053837, 34.7225879478616], [-77.39069402306777, 34.7226442325615], [-77.39074643725719, 34.72281447779497], [-77.39060044646246, 34.72271725444456], [-77.39048835094837, 34.7226795538215], [-77.38968917644428, 34.72258199003531], [-77.3894007067461, 34.722432455114806], [-77.38904718379283, 34.722387594146554], [-77.3887637292294, 34.72241803636435], [-77.38868443110269, 34.72243538736868], [-77.38821709632194, 34.7223366112909], [-77.38814980796423, 34.72232410126191], [-77.38813297224826, 34.72230717157421], [-77.38787894676832, 34.721981874487916], [-77.38769010731684, 34.721698330069266], [-77.38760487126314, 34.721563186784486], [-77.38739838910985, 34.72128955033072], [-77.38721026288391, 34.721142047503996], [-77.38701174703861, 34.72100438726472], [-77.38694020323565, 34.72096784281511], [-77.38684166943351, 34.7209179487578], [-77.38666035684932, 34.720827389293994], [-77.38642904198711, 34.72080093387723], [-77.3860733958134, 34.720640521239716], [-77.38567996721181, 34.72033033824469], [-77.38558571752348, 34.72025979535829], [-77.38555343357893, 34.72022262868161], [-77.3854364962423, 34.72011622633278], [-77.38504416200144, 34.71976788719937], [-77.3847493021559, 34.71971577433426], [-77.38421522147505, 34.719615295199915], [-77.38380523983136, 34.71961833635334], [-77.383337182909, 34.719675865600095], [-77.38318967803707, 34.72001790393543], [-77.38287193024264, 34.72041175617417], [-77.38282148977348, 34.72044821545183], [-77.38274284179866, 34.72055192820247], [-77.38240502648874, 34.72086162829114], [-77.38232638530285, 34.72101629925597], [-77.38229837023914, 34.721103888719355], [-77.38222083540272, 34.72121574729276], [-77.3821204399659, 34.72132120143357], [-77.3820778713962, 34.72135826203585], [-77.38201268519825, 34.72137759690011], [-77.38188277064653, 34.72141334331838], [-77.38175860286356, 34.72140836313302], [-77.38169347165075, 34.72137287870246], [-77.38158545058596, 34.72130119084683], [-77.38142287046686, 34.72120056214824], [-77.38117348830474, 34.72120589165077], [-77.38078489858744, 34.72118955526169], [-77.38053060139106, 34.721323898029304], [-77.37983102864499, 34.721425066302174], [-77.37940195903823, 34.72153638220453], [-77.37897750210671, 34.72152575032406], [-77.3783423930621, 34.721676306920024], [-77.37818313872383, 34.721723233200386], [-77.37807496449255, 34.72169030655063], [-77.37774878964078, 34.721761163721176], [-77.37773346739002, 34.72176238557899], [-77.37766979561515, 34.721773241127295], [-77.3773983274629, 34.72181254775348], [-77.37732653970482, 34.721818888774045], [-77.37722315523835, 34.72184370217088], [-77.37692801039972, 34.721915425409875], [-77.3766820625246, 34.722071369946974], [-77.37657902218612, 34.72209302249337], [-77.37646845277072, 34.72213870247445], [-77.37595089753503, 34.72238152934844], [-77.37585667581996, 34.72240834583784], [-77.37575386751395, 34.722447744446455], [-77.37574085111079, 34.72257693344133], [-77.3755820841712, 34.722946808154816], [-77.37554914558763, 34.7231030825607], [-77.3754344739031, 34.723214785888416], [-77.3751064137196, 34.72333948856478], [-77.37506221853856, 34.72335432254496], [-77.3750180627505, 34.72338674315744], [-77.3747608357044, 34.72360982557287], [-77.37464019821026, 34.7237354783596], [-77.37446559988881, 34.72387538940446], [-77.37417471108982, 34.724083476792536], [-77.37414794311464, 34.724104269189965], [-77.374124868788, 34.72411427468798], [-77.37392376613924, 34.72422652715571], [-77.37381565428606, 34.72428562572504], [-77.37380572441354, 34.72429296078733], [-77.3735378223847, 34.72446796284209], [-77.37350233062355, 34.724545181751644], [-77.37339308938166, 34.72456741623752], [-77.37315316283774, 34.724722506875054], [-77.37296304778893, 34.724825946380214], [-77.37281383208305, 34.72491592935833], [-77.37265878431747, 34.7249990301293], [-77.37262178384499, 34.725015768677416], [-77.37245484477802, 34.725077189761045], [-77.37242464032941, 34.72507420170853], [-77.37229102103018, 34.72505077493448], [-77.37211821000825, 34.72497872210672], [-77.37200808638804, 34.72492095945999], [-77.37175999830426, 34.72480918461168], [-77.37174346333086, 34.72480113159904], [-77.37165333319538, 34.72475492799746], [-77.37148076292833, 34.724674679528775], [-77.37143470419792, 34.724665265394144], [-77.37097700006535, 34.724347217829816], [-77.3708778573031, 34.724305284224094], [-77.37084369583971, 34.72421937539712], [-77.37066584732597, 34.7240741835075], [-77.37051719805152, 34.723868285623396], [-77.36994957655457, 34.72434223961828], [-77.36986140720772, 34.72444393556775], [-77.36973276311929, 34.72450798665019], [-77.36940168009639, 34.724674845019756], [-77.36936821570174, 34.72467855654413], [-77.36907477597742, 34.72471194941505], [-77.36877165847471, 34.724754906256905], [-77.36844660760815, 34.724813155299756], [-77.36813355719508, 34.72484018493961], [-77.36784324271989, 34.72482889293754], [-77.36770085639816, 34.72477891583079], [-77.36730721158808, 34.7247052967578], [-77.36729475241202, 34.724697177415926], [-77.3672820535693, 34.72469931590153], [-77.36726883803955, 34.724699965494224], [-77.36667499641366, 34.72472776924389], [-77.36632423092064, 34.7248403411049], [-77.36607938310617, 34.72492260162423], [-77.36600453186409, 34.724974667505265], [-77.36568380765533, 34.725210338469644], [-77.36534480485832, 34.725409203288095], [-77.36526555956819, 34.7254575610983], [-77.36524268036044, 34.72545772401536], [-77.36480791180026, 34.72542809707953], [-77.36468506867296, 34.725394461278704], [-77.36442518029145, 34.725328361988815], [-77.36413155128213, 34.72523844155444], [-77.36408527477624, 34.725195675020004], [-77.36402663464713, 34.7251559591414], [-77.36384637709742, 34.72498526293642], [-77.36378982526705, 34.72480884038706], [-77.36376512186732, 34.72470449154198], [-77.36372818994437, 34.72456516509753], [-77.36366944851466, 34.72433292857063], [-77.36363040398219, 34.724235607594686], [-77.36355219811061, 34.72414004200621], [-77.36348456490894, 34.724080955438346], [-77.36332600422284, 34.72388786088767], [-77.36323572541382, 34.72387819519025], [-77.36313295263912, 34.723816546301975], [-77.3628046587595, 34.72362105325312], [-77.36259121666407, 34.72358565812987], [-77.36167850313868, 34.723576558447405], [-77.36157191843215, 34.72374210169454], [-77.36111522288411, 34.72435390486751], [-77.36114967217286, 34.72457632570656], [-77.36117832224265, 34.72467282317932], [-77.36106699111517, 34.724949368334585], [-77.36101026374033, 34.7250828582512], [-77.36080810420242, 34.72535820357098], [-77.36044096776227, 34.72557502713374], [-77.36035385468895, 34.72559396155782], [-77.35987509865097, 34.72572613528101], [-77.35980518845302, 34.72574607098887], [-77.3597893915466, 34.725756743162954], [-77.35946611260938, 34.726083868238305], [-77.35934888977894, 34.726080431211926], [-77.35913342674525, 34.7259535593691], [-77.35902901350305, 34.72593232103887], [-77.35879509187035, 34.725874439948136], [-77.35876520881024, 34.72574106877145], [-77.35860285346803, 34.725718510434746], [-77.35842340866489, 34.725798274746374], [-77.35826393458774, 34.725947373957126], [-77.35782293409532, 34.72634219960351], [-77.35772121408169, 34.7264525733715], [-77.35720939417472, 34.72654386621684], [-77.35716671754126, 34.72653983947345], [-77.35661958237496, 34.72660342886135], [-77.35654086027729, 34.726632916501], [-77.35648961987057, 34.72663783242889], [-77.3561279862187, 34.7265874265982], [-77.35597111002454, 34.72653277458937], [-77.35575362562052, 34.72648122657712], [-77.35570885388996, 34.72629818208408], [-77.35565173841687, 34.72616540291867], [-77.35562269926137, 34.725869728368956], [-77.3556227182639, 34.72582262384419], [-77.35562731386284, 34.72578998291496], [-77.35561831386488, 34.72568554310855], [-77.35556970186265, 34.72534251828857], [-77.35560317033985, 34.725214192939106], [-77.35562380023738, 34.72500426450972], [-77.35561299934506, 34.72484919014445], [-77.35537278150824, 34.72446896678636], [-77.35514336148424, 34.72458547078671], [-77.35440978708544, 34.724795034623114], [-77.35448105450749, 34.72509501319011], [-77.35455935361648, 34.725207969540065], [-77.35466444396029, 34.72534813259077], [-77.35464921858667, 34.7254688851995], [-77.35460253066327, 34.72578997099782], [-77.35455779794486, 34.7259688185045], [-77.35448822981527, 34.726141019977405], [-77.35419126403163, 34.7264754435071], [-77.35415709934522, 34.726511208203625], [-77.35411425068055, 34.72655982519325], [-77.35387822276739, 34.72687701087484], [-77.35388638055274, 34.72703575309941], [-77.35387380914175, 34.72713900491226], [-77.3539951312363, 34.72750820628669], [-77.35368899045761, 34.72798583171886], [-77.35366944567963, 34.728040297263206], [-77.35358447809006, 34.72814999759168], [-77.35321203205044, 34.72859046678122], [-77.35310733379384, 34.72874695597139], [-77.35296895883837, 34.729017713478626], [-77.3529175690813, 34.72911826781852], [-77.35278932260015, 34.729240653590416], [-77.35266192626139, 34.72925390656665], [-77.35228326352613, 34.72929329840561], [-77.35217707943535, 34.72928674588238], [-77.3521203661715, 34.72927631207205], [-77.35198446344634, 34.72924634234074], [-77.35161297564068, 34.72916709480539], [-77.35121876758672, 34.729181477890904], [-77.35064259851688, 34.7289431273709], [-77.35053578252486, 34.72891847386256], [-77.35049051226308, 34.72890802514193], [-77.35034438977138, 34.728984053726045], [-77.35044496752852, 34.729064821084144], [-77.3507427985438, 34.72954761579378], [-77.3511151691942, 34.72985303205634], [-77.35123881677073, 34.72995444784749], [-77.35135629463693, 34.73005080151803], [-77.35148682834809, 34.730157863292916], [-77.35172177587717, 34.7302571595897], [-77.35180736726528, 34.73030548630757], [-77.35187503834828, 34.73032664186493], [-77.35206894678811, 34.73037991354965], [-77.35243345962817, 34.73046588380683], [-77.35257219337736, 34.730505537652874], [-77.35279815802029, 34.73059680439163], [-77.35291437965495, 34.73063650875309], [-77.35296992365343, 34.73068072862509], [-77.3531589823085, 34.73084254548165], [-77.35348066486846, 34.73098414616253], [-77.3534870566285, 34.73098962860499], [-77.35341667478595, 34.73143271925829], [-77.3534961331433, 34.731475764920035], [-77.35341487245631, 34.731572426665], [-77.35311926604432, 34.732228450775054], [-77.35299948649208, 34.73248088835738], [-77.35297079755843, 34.73252263692948], [-77.35287973591839, 34.732634169672174], [-77.35246140227136, 34.73328064643991], [-77.35244901625285, 34.73356901661984], [-77.35214262649355, 34.73398958391267], [-77.35214281168372, 34.73409842567233], [-77.35203341417352, 34.734177956688896], [-77.35195441086984, 34.73417701331592], [-77.35171660222642, 34.734317290342844], [-77.3512440675421, 34.73456069692176], [-77.35114616032429, 34.73466836560718], [-77.35111598414966, 34.734726732320766], [-77.35078104757147, 34.73498313560263], [-77.35072120912228, 34.735082953107884], [-77.35059648932885, 34.735285406708115], [-77.3505209739804, 34.735390971981154], [-77.35033606108772, 34.735624805892876], [-77.35021210405827, 34.73575557643998], [-77.35013777172699, 34.735835737502505], [-77.34996256854681, 34.73606068178576], [-77.34991825818324, 34.73610955134777], [-77.34990905782665, 34.73612534248461], [-77.34975598156335, 34.736375509681125], [-77.34944981460403, 34.736613925307076], [-77.34928250737802, 34.736583762234964], [-77.34900137385233, 34.73659766550273], [-77.34885000229238, 34.73661701745942], [-77.34871759368227, 34.736624078826324], [-77.34845998618198, 34.73655334562759], [-77.34828195232363, 34.73651077591403], [-77.34815674376327, 34.73648757937512], [-77.34799704406497, 34.736460696358215], [-77.34792198494421, 34.7364476430253], [-77.34771212639265, 34.73641064884755], [-77.34752404530218, 34.73635952797654], [-77.34718909827646, 34.73626848785426], [-77.34715044995687, 34.736282474062925], [-77.34661397891752, 34.73680662893728], [-77.34686745757662, 34.737256508000904], [-77.34686832323071, 34.737258044371835], [-77.34686889042398, 34.737259034228565], [-77.34687164888116, 34.737263787555655], [-77.3472046423575, 34.73778774055679], [-77.34727373765915, 34.73791956887932], [-77.34746126460041, 34.73815251651866], [-77.3476019717264, 34.73827051548244], [-77.34773470900944, 34.73839440533065], [-77.3480777171538, 34.73869298133456], [-77.3484906502963, 34.738986034611855], [-77.34857100932558, 34.739101951542985], [-77.3487105072881, 34.7391587559599], [-77.34918964644048, 34.73941452049675], [-77.34922946723921, 34.739434036540175], [-77.34949078457672, 34.739823561281746], [-77.34896315198927, 34.7403507257498], [-77.3489347657526, 34.740368289434045], [-77.3488575308485, 34.740397833685], [-77.34841517431866, 34.74054621781406], [-77.34834108298469, 34.74071238558903], [-77.34832113134311, 34.74078203593719], [-77.34831949884762, 34.74087214852646], [-77.34830899985877, 34.74096047727339], [-77.34829457573723, 34.741077646391616], [-77.34826631013223, 34.74130724386255], [-77.34832248975677, 34.741446005325585], [-77.3482224027031, 34.74165197977077], [-77.3482010858747, 34.74175159581985], [-77.34816137449258, 34.74195549091553], [-77.34815581610079, 34.74209878359511], [-77.34816065007367, 34.74217688260746], [-77.34815358431696, 34.74222928586017], [-77.34814990438932, 34.74244444349828], [-77.34814756652857, 34.742581132402876], [-77.34814572706892, 34.74268870649179], [-77.34813098993664, 34.742847544929504], [-77.34811328814651, 34.74293684667565], [-77.3480400221049, 34.74340522854297], [-77.34803204847533, 34.74345835085002], [-77.34800322185306, 34.743654763979464], [-77.347969055092, 34.74390098516246], [-77.34796460889115, 34.74393200412287], [-77.34796193660318, 34.74397432611029], [-77.34795779425508, 34.744303832573635], [-77.34799194024272, 34.744415632915604], [-77.34800140672968, 34.74464757087337], [-77.34803241573306, 34.744897458670124], [-77.34791940045201, 34.74512173333567], [-77.34786917286853, 34.745407234476204], [-77.34772757601363, 34.74568152987521], [-77.34738830205157, 34.74577116347167], [-77.34711866593122, 34.74573754564077], [-77.34706243019542, 34.7457305341669], [-77.3468135256505, 34.74568785473268], [-77.34667766430114, 34.745682511888944], [-77.34633982306173, 34.74572862682197], [-77.34619534394851, 34.74575392521518], [-77.34597127383569, 34.74583157004896], [-77.34577607782595, 34.74586746170507], [-77.34579361532705, 34.745968194636816], [-77.34595653689095, 34.74602734133842], [-77.3461082164778, 34.74605377233176], [-77.34614181118563, 34.74609460279852], [-77.3462157561972, 34.7461214473533], [-77.34637300363158, 34.74617321361019], [-77.34653162447815, 34.746189005001526], [-77.34666388891019, 34.746202838627475], [-77.34689938700257, 34.74622437034893], [-77.34727542036323, 34.746159662999915], [-77.34745558644647, 34.746266807341975], [-77.34774329616579, 34.746333735505566], [-77.34781881141262, 34.74635100250849], [-77.34785089461683, 34.74635698146332], [-77.34790804532405, 34.746376659242436], [-77.34823751489068, 34.74645383514796], [-77.34836194662299, 34.74654322705318], [-77.34879968988349, 34.74674170359816], [-77.34885653262957, 34.746766151466375], [-77.3488847349596, 34.74680548898172], [-77.349325054205, 34.74709674993108], [-77.34938649095444, 34.74714015227909], [-77.34939098778027, 34.74714350224549], [-77.34939533680334, 34.74714735638053], [-77.3498705993313, 34.747535569075346], [-77.34988719102584, 34.747550272353585], [-77.34990053687592, 34.74756541703395], [-77.34997578873003, 34.74767322034676], [-77.35019622302488, 34.748012224611415], [-77.35023563270757, 34.74807068404401], [-77.35025834180675, 34.74826269368366], [-77.35031134962146, 34.74840664781689], [-77.35027975310672, 34.748488143290906], [-77.35011170236947, 34.748767426491696], [-77.34998273997888, 34.74895590047238], [-77.34990909042322, 34.749026383210996], [-77.34991432606643, 34.74910618116402], [-77.34964519826343, 34.74954997166711], [-77.34953492468584, 34.749835726089906], [-77.3494249392615, 34.750067572580534], [-77.3490555438762, 34.75034088830066], [-77.3487755794979, 34.750439589713224], [-77.3483941193949, 34.75055568857088], [-77.34795686286853, 34.75061155125379], [-77.3477776663977, 34.75061570073555], [-77.34751795783322, 34.750602050914594], [-77.34717598974879, 34.7506248536983], [-77.34664340200094, 34.75093656166126], [-77.34655001374759, 34.75102112820629], [-77.34637458255116, 34.75143414761402], [-77.34636068227836, 34.75146272344603], [-77.3463166102751, 34.75152084849619], [-77.34584210706032, 34.75167057238639], [-77.3456856331102, 34.75163079936882], [-77.3456310662273, 34.751611716904954], [-77.34550995215585, 34.75157942208295], [-77.34512663870383, 34.75149303876353], [-77.34490167221526, 34.75147573114682], [-77.34483268678687, 34.75147390030208], [-77.34474017615257, 34.7515084266784], [-77.34450513010697, 34.75157039593468], [-77.34431356073128, 34.75159301038039], [-77.34381062037359, 34.7518989352239], [-77.34352026977993, 34.75165812608654], [-77.34328727445444, 34.75163850986395], [-77.34316652149954, 34.75153596640928], [-77.34305825178393, 34.75142832323061], [-77.34294821698707, 34.75130965681507], [-77.34282522242796, 34.75116719163242], [-77.34267566041251, 34.75099341956862], [-77.34254177913937, 34.75083384215403], [-77.34249196779174, 34.75077492493429], [-77.34237506289188, 34.75065497111468], [-77.34232998606821, 34.750602528287835], [-77.3422468768867, 34.750564850327486], [-77.34211646131575, 34.75051420628825], [-77.34195023928785, 34.75050035915516], [-77.34183468419451, 34.75045318283768], [-77.34132500291568, 34.7502219019051], [-77.34128173014557, 34.7502260602937], [-77.34067085731049, 34.75033542770298], [-77.34032727997598, 34.75061457205193], [-77.34025173388015, 34.750838456759325], [-77.3398128490449, 34.751226419415545], [-77.33969821901458, 34.75133388282306], [-77.33910834896949, 34.7515892418801], [-77.33871981574136, 34.75140758424797], [-77.33856335229467, 34.751403331179816], [-77.33813585069117, 34.75122626899268], [-77.33802403318595, 34.7511978929177], [-77.33796083743141, 34.75120282802371], [-77.33790102239243, 34.75116078103581], [-77.33748343873128, 34.75099684738609], [-77.33726377601334, 34.750950463043374], [-77.33697398298582, 34.75080050911884], [-77.336946344072, 34.75078376997985], [-77.3367570753117, 34.75055173971961], [-77.33661678923116, 34.750362107311474], [-77.33649254044877, 34.75028418872503], [-77.3363249023995, 34.750095718811394], [-77.33626162619852, 34.75004820713248], [-77.33619935589579, 34.74999517108314], [-77.33611392517658, 34.74994367584043], [-77.33605689498387, 34.74990762763132], [-77.33600842101129, 34.74988890585894], [-77.33587893771738, 34.74986485449196], [-77.33571850340925, 34.749855890072524], [-77.33559717864068, 34.74986692977245], [-77.33541538853777, 34.749868268557115], [-77.3351830739875, 34.74988661430682], [-77.33478580638076, 34.749973346485135], [-77.33453867786109, 34.749953978076206], [-77.3344065931143, 34.74999399778467], [-77.33418214515615, 34.74998925980918], [-77.333910064114, 34.75003532408655], [-77.33371756414294, 34.750129591108795], [-77.33350855361947, 34.75024568849789], [-77.33327931441296, 34.75033224887768], [-77.33296810168365, 34.750477378731716], [-77.33278022534408, 34.75045607694623], [-77.33225496498301, 34.75043659689726], [-77.33193079932096, 34.75032082782443], [-77.33164689926802, 34.75006862099596], [-77.33164495348746, 34.74975231930792], [-77.33159102711534, 34.74925707740925], [-77.33160133214714, 34.74910012848177], [-77.33161377866243, 34.74898802415103], [-77.33149670909938, 34.748923977635876], [-77.33131521509469, 34.74865197294938], [-77.3311291466688, 34.74857233849008], [-77.33084470797138, 34.748229087227216], [-77.33070528328696, 34.74810993745932], [-77.33058129038604, 34.747951943131355], [-77.33028203633086, 34.74764706458302], [-77.3301209001184, 34.747475173508235], [-77.32999498767049, 34.74737080325143], [-77.32975562285796, 34.74726350536031], [-77.32958991392884, 34.74724119223857], [-77.32936113020935, 34.74728093020215], [-77.32897077887716, 34.74731035122531], [-77.32870309476198, 34.74728440203343], [-77.32836094266291, 34.74734752553855], [-77.32812039192063, 34.747338235150025], [-77.32797964491684, 34.7473334176887], [-77.32776812399116, 34.747326177506324], [-77.32755307975788, 34.74738023197655], [-77.32736806606918, 34.747429816826205], [-77.327101737725, 34.74755779214572], [-77.32688119649046, 34.74763674091875], [-77.32603591917187, 34.74775827546912], [-77.32584539295605, 34.747758186174394], [-77.32551139575409, 34.7476995640169], [-77.32526502051844, 34.747694022775185], [-77.3249051121677, 34.74783930558994], [-77.3245850290165, 34.74797236478298], [-77.32446246610775, 34.74804676901614], [-77.32404195767357, 34.74818648535458], [-77.32391074031754, 34.748231080806086], [-77.32375725376032, 34.748225487683236], [-77.32337375414919, 34.748228215164886], [-77.32331864612893, 34.748207197584954], [-77.32311559225701, 34.74812989497603], [-77.322774991612, 34.74801678278328], [-77.32268245999603, 34.74797138154841], [-77.32247406708272, 34.74791390191561], [-77.32222393386549, 34.74785182481365], [-77.32159707726375, 34.74801746018886], [-77.32155569416814, 34.74802419336205], [-77.3208423942544, 34.748482471420665], [-77.32054904571521, 34.74840886127001], [-77.32010598886879, 34.74872562147484], [-77.31967531137785, 34.74891134457896], [-77.31982860016392, 34.74925097643872], [-77.3198973079146, 34.74932393429768], [-77.31996474890644, 34.749440134113456], [-77.32005796234286, 34.749594546791315], [-77.32019662784019, 34.74968793477829], [-77.32028717831652, 34.74981246193781], [-77.32041862363154, 34.74993918780636], [-77.3209559065418, 34.75008666115801], [-77.32097258704188, 34.75009420537746], [-77.32102166100096, 34.750104709211186], [-77.32138182272222, 34.75015339149641], [-77.3215010894873, 34.750336749209005], [-77.32152765421975, 34.75043539921863], [-77.32152081655839, 34.75048129441717], [-77.32153015554904, 34.75055541024426], [-77.32152863452276, 34.75072390551026], [-77.32141411874842, 34.75091676067324], [-77.3213788338723, 34.750988105338514], [-77.32128899927032, 34.75106582646562], [-77.32123002091458, 34.751058259803244], [-77.32076065283995, 34.751150299831934], [-77.32065344201654, 34.751191264040635], [-77.3199852942392, 34.75166633045019], [-77.3199447159499, 34.75170403788065], [-77.31987703564053, 34.75180083652356], [-77.3195956704204, 34.75220705341468], [-77.31944026749495, 34.75253386911218], [-77.31939306360462, 34.75272216300256], [-77.31933980982274, 34.75290513640295], [-77.31924252813735, 34.75323014101227], [-77.31913433773234, 34.753539664197305], [-77.3188977135228, 34.753764723048185], [-77.31847295542352, 34.7542304123519], [-77.31795251300292, 34.75475950790638], [-77.31785693435926, 34.75488197101738], [-77.31781562504702, 34.75492475825798], [-77.31776148494238, 34.75495396065046], [-77.31736750074424, 34.755436351243326], [-77.3172148873947, 34.755669270999846], [-77.31694558943917, 34.75598148214934], [-77.3167318552276, 34.75651811722267], [-77.31718857838061, 34.75692293451175], [-77.31766486172589, 34.75734507940697], [-77.31814114994133, 34.75776722221781], [-77.31861744302704, 34.75818936294419], [-77.3190937409831, 34.758611501586024], [-77.31921311475652, 34.75871729989524], [-77.31955916987496, 34.75854776329446], [-77.32014242879605, 34.75826398387393], [-77.32043330975576, 34.758125743559276], [-77.32061136720785, 34.7580411219228], [-77.32062360906046, 34.75791462820871], [-77.32052448989803, 34.75781233933205], [-77.32038671773165, 34.75761781860841], [-77.3202685129793, 34.757475896422335], [-77.32008615916597, 34.757259699425866], [-77.31998170222109, 34.75714090173734], [-77.31988887806551, 34.75704052462016], [-77.31963172069419, 34.75676244258471], [-77.3195068586516, 34.756717651343294], [-77.31948884986502, 34.75660794483254], [-77.31958450643887, 34.7564925631486], [-77.3197418297294, 34.75638398383622], [-77.32008125633023, 34.75603945305244], [-77.32025963375293, 34.755813985233154], [-77.32028184975614, 34.75572794756361], [-77.32034079510316, 34.75551654566332], [-77.32047938302614, 34.755182037644346], [-77.32055413346843, 34.75499996489145], [-77.3205958436016, 34.75483503083556], [-77.32082618992612, 34.754716019547196], [-77.32140154747108, 34.75439653947335], [-77.32149416037595, 34.75435427892949], [-77.32153486972194, 34.754339314777276], [-77.32162771468465, 34.754299463237366], [-77.32198941292387, 34.75415475640606], [-77.32221038027208, 34.75407660528864], [-77.32226816711147, 34.754034158389686], [-77.32234362198085, 34.75383023004148], [-77.3223612199971, 34.753777730530764], [-77.32239465035842, 34.753710001461975], [-77.3226424719952, 34.753251841693555], [-77.32275950839423, 34.75303546886296], [-77.32278482723544, 34.75298866044358], [-77.32280126795803, 34.75295892689495], [-77.32293751528023, 34.75272406287531], [-77.32304679573417, 34.75253808294913], [-77.3231727307759, 34.752323756280035], [-77.32321342062806, 34.75219890467359], [-77.32322344251644, 34.752056191897836], [-77.32343712407393, 34.7519188594065], [-77.32402781234342, 34.751492198741104], [-77.32416532010728, 34.75147492200169], [-77.32428510556372, 34.75146874296557], [-77.32480625489379, 34.75133096107153], [-77.32526298931593, 34.75150530213813], [-77.3253553734286, 34.75150267198195], [-77.32548269527678, 34.75150473753551], [-77.32564897387466, 34.75152306119345], [-77.3257703722546, 34.75150940412034], [-77.3259583375613, 34.75148925155785], [-77.32636937731431, 34.75144307425749], [-77.32685313296737, 34.75144242048296], [-77.32718582881961, 34.75138825549263], [-77.32755964956307, 34.751316353311196], [-77.32822984565001, 34.75138565243388], [-77.32840864698662, 34.75130330351001], [-77.32868397685881, 34.7511496936251], [-77.32886240667852, 34.75110314935083], [-77.32904554565486, 34.75115617673844], [-77.32885061913404, 34.751297372086306], [-77.3287538480408, 34.751439832054174], [-77.32850811227686, 34.75163225347312], [-77.32830764607333, 34.752317842607496], [-77.32837618948204, 34.75246631632968], [-77.32840823559027, 34.753028755519665], [-77.32858986015268, 34.7534117729893], [-77.32888987580492, 34.75376843434973], [-77.32914214247482, 34.75404109047879], [-77.32989584098273, 34.75442927348535], [-77.33025914785104, 34.75475894096179], [-77.33081897055692, 34.75505577557904], [-77.33148616952637, 34.75539221195571], [-77.33194487462877, 34.7556235065627], [-77.33272911735017, 34.75601326542287], [-77.33382284730922, 34.75634177438108], [-77.3341163523612, 34.75639679004588], [-77.3342802849414, 34.75639736191291], [-77.33486209950134, 34.756451107812545], [-77.33647778691994, 34.756516770006854], [-77.33679386807384, 34.75642072352188], [-77.33771566528426, 34.756380128064876], [-77.33815898801289, 34.75635350940637], [-77.33852045685161, 34.75629073712974], [-77.3389821277107, 34.75614512359065], [-77.33927517228105, 34.75606573542729], [-77.33977918490983, 34.75611129692284], [-77.34018476623442, 34.75612965032233], [-77.340244905512, 34.756147389683726], [-77.34027513405837, 34.75619636620861], [-77.34051648721726, 34.75633274520513], [-77.34066601514962, 34.756534986060586], [-77.34072989330608, 34.75662138255389], [-77.340876865155, 34.75684399242417], [-77.34103080962, 34.75706749373948], [-77.34109137581414, 34.757132610997175], [-77.34141073204576, 34.75722185420189], [-77.3416507705496, 34.7572691244059], [-77.34211813805109, 34.75730774388767], [-77.34225004785097, 34.75726842467505], [-77.34237226761061, 34.7572708946642], [-77.34285113691972, 34.757261489335434], [-77.34292850937297, 34.75729462803356], [-77.34323124679823, 34.7573987828364], [-77.34329830230755, 34.75771491947215], [-77.34328516686655, 34.75773309063136], [-77.34296508667708, 34.75790002177479], [-77.34276452473894, 34.75788036736758], [-77.34267487648546, 34.75786792697712], [-77.34260784878552, 34.75787810316054], [-77.34219858623797, 34.75801732429767], [-77.34201413789252, 34.758080068393376], [-77.34170419115371, 34.758217659471114], [-77.34130682110214, 34.75845243949116], [-77.34122343046457, 34.75850320448366], [-77.34084993113149, 34.758737512103515], [-77.3405800842425, 34.758891592469936], [-77.34001739676606, 34.759155951993755], [-77.33993465276886, 34.75920331275938], [-77.33986931848776, 34.759275773255204], [-77.33943810627616, 34.75972275414075], [-77.3394122248562, 34.760017146496395], [-77.33908781765142, 34.76058443488948], [-77.33900017787971, 34.76075754446173], [-77.33892457011501, 34.760861793839005], [-77.33874604438918, 34.76107891757809], [-77.33862519742651, 34.76123491229677], [-77.33821390208406, 34.76125629321771], [-77.33810759933381, 34.761214229890605], [-77.33780250114657, 34.7611444108079], [-77.33754262993251, 34.761096798845585], [-77.33713816461822, 34.761012821126954], [-77.33677509807396, 34.76078578501795], [-77.3359296926152, 34.76076190501498], [-77.33603023009277, 34.76135840631394], [-77.33615890814221, 34.76212180131199], [-77.33625578378204, 34.76276160831729], [-77.33629038838585, 34.76307852665151], [-77.33640314794283, 34.76373476806798], [-77.33645401737549, 34.76403083941603], [-77.33647753864079, 34.76416774066437], [-77.33659420502778, 34.76435894862571], [-77.33679562397157, 34.76471152308032], [-77.3370161324598, 34.76492852837431], [-77.33722368631986, 34.76517075992521], [-77.33745338946761, 34.76552523844639], [-77.33754540189827, 34.76571175865232], [-77.33760381837129, 34.765822710319064], [-77.33787104789295, 34.76624973510493], [-77.33787948805868, 34.766272292674294], [-77.33791701179712, 34.76635257270072], [-77.33811945988906, 34.76672676684011], [-77.33826061787522, 34.76687031489924], [-77.33855264567543, 34.76730239490959], [-77.33889177162922, 34.767595633153256], [-77.33898714648889, 34.76849305762419], [-77.3390083090576, 34.76852874914357], [-77.33900803009331, 34.76855444229782], [-77.33902004334465, 34.76860634514746], [-77.33929646895403, 34.76900227121939], [-77.33936294450385, 34.76904445080908], [-77.33928126817166, 34.769491728878094], [-77.33913589631979, 34.76998562488057], [-77.33906579848143, 34.77000864216543], [-77.33869103467214, 34.77034928140824], [-77.33852777949777, 34.770569773154506], [-77.33842523223436, 34.77063278020824], [-77.33833638284602, 34.771083384847685], [-77.33827230455233, 34.77113565001524], [-77.3383218554129, 34.77142138891425], [-77.33848081168759, 34.77155095806577], [-77.33839241242532, 34.77188037232252], [-77.33842424363665, 34.772130999763725], [-77.33845458299317, 34.77238571306193], [-77.3385389645444, 34.77243697418589], [-77.33851682642597, 34.77252076692026], [-77.33848129227941, 34.77259743238211], [-77.33850931284248, 34.77265684689909], [-77.33864229068004, 34.772747253815844], [-77.33864565334493, 34.77274912311271], [-77.33866415762247, 34.7727594095072], [-77.33898375768086, 34.772626523736314], [-77.33921149167334, 34.772605891225794], [-77.33937678072597, 34.772402873434345], [-77.33981293246808, 34.771861977553016], [-77.33983116422554, 34.77183781823934], [-77.3401277301199, 34.771325171764744], [-77.3404033360722, 34.77110829293583], [-77.3407340130363, 34.77035544247573], [-77.34078921126644, 34.77025973200365], [-77.34078848674102, 34.77017281118444], [-77.34096952858343, 34.769918046557905], [-77.34160537827664, 34.76917307416438], [-77.34119628380236, 34.76913802675093], [-77.34077839761945, 34.7687446574547], [-77.34072353574366, 34.76870318239734], [-77.34043603750095, 34.76835865853264], [-77.34041106311292, 34.76823871626451], [-77.3404739000094, 34.76786609327876], [-77.34050210122498, 34.76740386550334], [-77.34050410520032, 34.76737886077297], [-77.34050493355959, 34.767374464376246], [-77.34050294303532, 34.76736661276606], [-77.34040403831844, 34.76706162346131], [-77.34025044202127, 34.76692198317453], [-77.34017551469076, 34.76684313933868], [-77.33959705462632, 34.76656416360882], [-77.33955202485447, 34.76655003514599], [-77.33953733079352, 34.7665454246979], [-77.33953598458874, 34.76653256612649], [-77.33954001020464, 34.76651363219219], [-77.33943386354753, 34.76583664189393], [-77.33947240846204, 34.765566535086634], [-77.33930832985465, 34.76532737484835], [-77.33922193220573, 34.76521124645097], [-77.33905500265654, 34.765136388900586], [-77.33882210696206, 34.764938982533046], [-77.33855378104894, 34.76493657378468], [-77.3382413874466, 34.76487564059671], [-77.33807853873736, 34.76478288606588], [-77.33803907637855, 34.764543940091315], [-77.33821268709863, 34.76406115232047], [-77.33837422759194, 34.76376760165202], [-77.33865418173463, 34.76328275917002], [-77.33867940901705, 34.76323839008892], [-77.33869377611767, 34.76321067007058], [-77.33873439380007, 34.76317983840358], [-77.33891699238922, 34.76308071681157], [-77.33946760970824, 34.76271856763745], [-77.3395383301632, 34.76268218000524], [-77.33961278978441, 34.76262304567039], [-77.34033292136692, 34.76210943375795], [-77.34057923505674, 34.761802794928386], [-77.34067322165399, 34.76150289800253], [-77.34079764380843, 34.7612444732511], [-77.34114899451089, 34.76105644720907], [-77.34155641992635, 34.76064001227962], [-77.34186695655706, 34.76064753221468], [-77.34224423462788, 34.760522693241995], [-77.34252672392728, 34.76043880155525], [-77.34274681491023, 34.760417906603024], [-77.34311559448848, 34.76047398079147], [-77.34329705338256, 34.76050157153036], [-77.3436340939538, 34.76056558730188], [-77.34368549751254, 34.76057441809677], [-77.34370507139938, 34.76058203441432], [-77.3437235135598, 34.76059722976312], [-77.34392916628086, 34.76076667655923], [-77.34405171171932, 34.760709687580466], [-77.34421333696609, 34.76081958354633], [-77.34465632077934, 34.76083279557402], [-77.34437805791764, 34.76045876695761], [-77.34433501830539, 34.76040091415565], [-77.34419151438905, 34.76020802000407], [-77.34412758160528, 34.760083994177904], [-77.3441200249019, 34.76006589897908], [-77.34411947059536, 34.7600555489448], [-77.34410988657768, 34.759876605697464], [-77.34410054554905, 34.759702185780824], [-77.3440935582795, 34.75957172617609], [-77.3440896105972, 34.75949801929382], [-77.34407918940988, 34.759219853980476], [-77.34404513643173, 34.75913803857917], [-77.34406703038316, 34.759087988220394], [-77.34407907653781, 34.759044870349115], [-77.34414507400821, 34.758993163014274], [-77.34457019426364, 34.75853160106199], [-77.34474198838123, 34.75835551016484], [-77.34493869907068, 34.758056801872875], [-77.3449864605054, 34.75798713064251], [-77.34500221392395, 34.757947734331744], [-77.34513633646739, 34.75751065655971], [-77.345137731324, 34.757479005229285], [-77.34513657402688, 34.75742846382862], [-77.34528164059293, 34.75697188921916], [-77.34535273502847, 34.75689909771779], [-77.34567631860942, 34.75663001093979], [-77.34609658771967, 34.75640086908321], [-77.3461373894587, 34.75636713132096], [-77.34648119265891, 34.75606642596722], [-77.34670605931473, 34.75580174667302], [-77.34680273799142, 34.7557129798711], [-77.3469225915444, 34.755619901108645], [-77.34719230386345, 34.755419788583296], [-77.34765584978831, 34.75515804850684], [-77.34818196511729, 34.755019901518345], [-77.34831282775572, 34.75495868737077], [-77.34901006040344, 34.75451091063364], [-77.34903218351747, 34.75449649707688], [-77.34905685965836, 34.7544597027723], [-77.3493966947007, 34.75397048489177], [-77.3494662277581, 34.753604448434984], [-77.34959758001425, 34.75345554255359], [-77.35016105937859, 34.75294341132119], [-77.35076356115842, 34.75270909106131], [-77.35118423489757, 34.75257322998396], [-77.35162755797039, 34.75251897549147], [-77.35201842014034, 34.752513551028485], [-77.35226867365505, 34.75260164739446], [-77.35247322065962, 34.752657010839926], [-77.35256935957216, 34.7526790630622], [-77.3529791904632, 34.7528866612726], [-77.35309841243595, 34.75291991960526], [-77.35312373472696, 34.75294512739041], [-77.35312237720068, 34.75297187489735], [-77.35333180096178, 34.75317931489747], [-77.3533365711459, 34.7532032108586], [-77.35338060870302, 34.753423818079675], [-77.35338953535984, 34.75352911954968], [-77.35339450842292, 34.75389276226941], [-77.35338347226204, 34.75391080721714], [-77.35323107713438, 34.75438624005331], [-77.3531399145246, 34.75450950992889], [-77.35293758188959, 34.75494675986599], [-77.35285483259517, 34.75532945846824], [-77.35220302874879, 34.756022317471036], [-77.35269197008348, 34.75773815561058], [-77.35272975048022, 34.757899569106286], [-77.352744402904, 34.75796732594102], [-77.35277863390863, 34.75814467479442], [-77.3537470920543, 34.76034987274085], [-77.35379968053297, 34.761651796447026], [-77.35411891097785, 34.76177961266822], [-77.35425093441846, 34.761671797048166], [-77.3544566388407, 34.761561642715755], [-77.35554103082399, 34.761008691746675], [-77.35597452395261, 34.76064536542805], [-77.35633290456822, 34.7603449890788], [-77.3563447679376, 34.76033504579376], [-77.35636156900354, 34.76032543802566], [-77.35675305558242, 34.76005841756575], [-77.35703897870732, 34.7599766126989], [-77.35717694589124, 34.760077446362374], [-77.35748568655946, 34.76017114420148], [-77.35754733173675, 34.76018681209178], [-77.35756853352513, 34.760215926595585], [-77.35769881781682, 34.760464528178005], [-77.35777936333693, 34.76061821703739], [-77.35797967252742, 34.7608629260605], [-77.35805263387498, 34.76098086241764], [-77.358105353751, 34.76106085412583], [-77.35831013706051, 34.76143733631421], [-77.35836538953843, 34.761528777030875], [-77.35852401393207, 34.761978153484066], [-77.35859991248503, 34.762136860243544], [-77.35872399703632, 34.76242537133276], [-77.35872733515919, 34.762433089920094], [-77.3587317912066, 34.76243701789244], [-77.35890179593201, 34.762693140842515], [-77.35890915588904, 34.76290005524034], [-77.35905707088307, 34.76334120519093], [-77.35906299839088, 34.76335762089626], [-77.3590661208813, 34.763365893597694], [-77.35906720376592, 34.76338413204597], [-77.35908789826951, 34.76373269930602], [-77.3591328306172, 34.76384412070237], [-77.35916803392332, 34.76406529647544], [-77.35926326795125, 34.764313600307545], [-77.35928144386654, 34.764372306142754], [-77.35927648167551, 34.764648389960364], [-77.35929101720838, 34.764759173034875], [-77.35928677727951, 34.7647977581714], [-77.35928468118868, 34.764853085015986], [-77.35899667737195, 34.76577399883819], [-77.35900826626919, 34.765810758942784], [-77.35901117831929, 34.76588727288689], [-77.35884540425728, 34.766132493982326], [-77.35755448537404, 34.76698507579236], [-77.35859399823596, 34.76699800841563], [-77.35893225629108, 34.76740045690819], [-77.35923670973591, 34.767728938995276], [-77.35954617414654, 34.767845117851635], [-77.35997918197496, 34.76830969474518], [-77.36003595636896, 34.76836766773102], [-77.36004793123091, 34.768383482338194], [-77.36010704659176, 34.7684186150116], [-77.3605778988076, 34.76871065290849], [-77.3610071483822, 34.76887668410589], [-77.36115069414899, 34.76894742517798], [-77.36159403223138, 34.76949828398225], [-77.36160628664379, 34.76951977851576], [-77.36162025323591, 34.76953965320812], [-77.36179811730557, 34.76988617530199], [-77.36201449733699, 34.77014143017923], [-77.36207364556778, 34.77018756571686], [-77.362095856578, 34.77020848445428], [-77.36209007188546, 34.770231115918136], [-77.36253795873834, 34.770797899097175], [-77.36260932627152, 34.770887242384845], [-77.36268622526863, 34.7709989785581], [-77.36298058344633, 34.7714829320331], [-77.36308991667323, 34.77157968823315], [-77.36302903479162, 34.77180089678027], [-77.36285664790518, 34.77217706889673], [-77.36281878934047, 34.77220578445024], [-77.36275805479153, 34.772249130561185], [-77.36248588768257, 34.772410049547574], [-77.36198877368071, 34.77268877282424], [-77.36180250103328, 34.772789827898364], [-77.361667903761, 34.772879500259045], [-77.36146733036796, 34.7729903894429], [-77.36119306029345, 34.77321938809616], [-77.36116552049053, 34.773245520129244], [-77.36112244441254, 34.7732912020172], [-77.36082864840049, 34.77370424062044], [-77.36073641193443, 34.774041234567306], [-77.36055185895762, 34.77442121177724], [-77.36047484374478, 34.774698876904026], [-77.36035122626521, 34.774908806108805], [-77.35993130199913, 34.77535438685951], [-77.35979554067303, 34.775497503836945], [-77.35978864843418, 34.77557718764917], [-77.35980534905579, 34.77562444048324], [-77.35980059686699, 34.77580434946859], [-77.35981129460782, 34.77606821473587], [-77.35983606096893, 34.77615301180809], [-77.35963348358281, 34.77637964151175], [-77.35952276627819, 34.77654897038848], [-77.35950663579845, 34.77659695375715], [-77.35947022640173, 34.776656426384065], [-77.3593688255338, 34.776828339939875], [-77.3592998536227, 34.77693317901282], [-77.35928314783676, 34.776957417512435], [-77.3592333220104, 34.77706053349443], [-77.35917089427146, 34.77722726379718], [-77.35921295754069, 34.77753986934527], [-77.359223232942, 34.77761623474716], [-77.359200196317, 34.77766131534739], [-77.35898803382368, 34.778093154332865], [-77.35886859465901, 34.778245581268735], [-77.35881759089011, 34.77831312108626], [-77.35879006140358, 34.77834580483829], [-77.35861845171675, 34.77852304444204], [-77.35850749503483, 34.77863245008518], [-77.35827065268232, 34.778862253074585], [-77.35821920375996, 34.77890973403809], [-77.35816518673393, 34.778984592252755], [-77.35783101277133, 34.77936593091824], [-77.35768087007958, 34.77952687294632], [-77.35760494058013, 34.77966401164418], [-77.35752232329438, 34.77981713336041], [-77.35748031379066, 34.779947672200805], [-77.35738436945347, 34.780202056176975], [-77.35741140880718, 34.780337551961836], [-77.35739596009694, 34.78055854415052], [-77.35729879614323, 34.780857376858116], [-77.35716978891622, 34.78093745265452], [-77.35707997850997, 34.78122122757019], [-77.35723540412161, 34.78139442790564], [-77.35745551699318, 34.781668038362625], [-77.35767560201427, 34.78186582676098], [-77.35781776522873, 34.78262982388011], [-77.35784225386618, 34.78268895982642], [-77.35784236317993, 34.78272531352884], [-77.35781962141036, 34.78274919783579], [-77.35775819747097, 34.782834857308536], [-77.35752035928662, 34.78317186020867], [-77.35733834961783, 34.783459708905454], [-77.35698870895152, 34.783545039452015], [-77.35692523402089, 34.783963090237364], [-77.35691702495883, 34.78407918935119], [-77.35697845095311, 34.784368752913096], [-77.35708259043243, 34.78469636649348], [-77.35708685026303, 34.784788318548536], [-77.35692221217622, 34.78519947790892], [-77.35679561749932, 34.78556741662875], [-77.3567952450386, 34.7857142814147], [-77.35682398958544, 34.785790199053366], [-77.356708025522, 34.78624299594724], [-77.35652883793827, 34.786628786544185], [-77.3564818367287, 34.786723077106465], [-77.35588393289186, 34.78707171135408], [-77.35588150000925, 34.78707222554308], [-77.35518289469346, 34.78728126239153], [-77.35510446918374, 34.78729455628899], [-77.35490365342032, 34.78728925785043], [-77.35484900101625, 34.7873261208088], [-77.35480506834102, 34.78729972659979], [-77.35466972884169, 34.78733236248419], [-77.35463088112968, 34.78737221123506], [-77.35466786485648, 34.787486360758194], [-77.35450884066748, 34.787646115165415], [-77.35457535086455, 34.78773360476383], [-77.35456711568338, 34.787913408095804], [-77.35437903082368, 34.78783926273957], [-77.35424202515279, 34.7881761947406], [-77.35421270382884, 34.788215583602174], [-77.35416014813109, 34.78842716204303], [-77.35400627694371, 34.78849386014521], [-77.35393784098316, 34.788553078470834], [-77.3539588799523, 34.78863634642555], [-77.35378775822895, 34.78876981321008], [-77.35375532514956, 34.78883228776919], [-77.35371296871344, 34.78886977002776], [-77.3537650032859, 34.788848117828984], [-77.3541300051703, 34.78869623462076], [-77.35449500566659, 34.788544350367175], [-77.35486000477475, 34.788392465068256], [-77.3555899988267, 34.78808869133445], [-77.35631998732612, 34.78778491341953], [-77.35653201158411, 34.78769667961385], [-77.35671934402134, 34.787365429884666], [-77.35690669383357, 34.78724679567465], [-77.35713968372286, 34.787172358634706], [-77.3575233477921, 34.787087550305], [-77.35757712064229, 34.78684561441242], [-77.3580631195819, 34.786167006645115], [-77.35805990199476, 34.78615684475258], [-77.35805458607413, 34.78612885065817], [-77.35783968404048, 34.78536750179792], [-77.35798774601062, 34.78501312691909], [-77.35804976566475, 34.784623295333716], [-77.35806227596106, 34.78438237325429], [-77.35829209676633, 34.78400116664762], [-77.35843755759933, 34.783759887475426], [-77.35851567259618, 34.783520173608935], [-77.35851119601779, 34.783303047888616], [-77.35852746824017, 34.78324468553952], [-77.3585500870848, 34.7831951087667], [-77.35862962282278, 34.78300081778744], [-77.35873978498032, 34.782756544251775], [-77.35907377789961, 34.78217640998684], [-77.35911237996584, 34.78205129458335], [-77.35914716179235, 34.781925192518585], [-77.35939197272498, 34.78158990704796], [-77.35939722788862, 34.781585376471256], [-77.3594163894457, 34.78154457462979], [-77.35959612057049, 34.781161863209554], [-77.35960977249938, 34.78110689496696], [-77.35959309855457, 34.78106777045629], [-77.35963436816702, 34.780794219439315], [-77.35965488499505, 34.78059580550793], [-77.35963408967388, 34.78055617461919], [-77.35971972773791, 34.780500380504314], [-77.35993400370397, 34.780216871000846], [-77.35997964637123, 34.78011787238238], [-77.3600776968188, 34.77997357529876], [-77.36011214150699, 34.77988462461818], [-77.36016474853734, 34.779845464988384], [-77.36025217977851, 34.77977187530062], [-77.36034709565425, 34.77968723224244], [-77.36036105712772, 34.77941773743352], [-77.36036491854146, 34.779407777545025], [-77.36019864221385, 34.77907605176025], [-77.36018705221208, 34.779035559550486], [-77.36016639741644, 34.77896274639817], [-77.36011193294965, 34.778486477784384], [-77.3603883778487, 34.778198571950064], [-77.36047304169722, 34.778103287515954], [-77.3605129862576, 34.7780675998913], [-77.3605852076314, 34.77797733496026], [-77.36092591752845, 34.777652878524705], [-77.36104024340911, 34.77753340321335], [-77.36120158379363, 34.77727452499376], [-77.36123296805653, 34.77720110466668], [-77.36137888315557, 34.77699752455166], [-77.36150683595663, 34.77679897320249], [-77.36155122173588, 34.776753251562305], [-77.36173189947414, 34.776607529825924], [-77.3619916941702, 34.776348169188815], [-77.36209549803212, 34.77626421123108], [-77.36229451729848, 34.77605414930349], [-77.36241716916173, 34.77593783893978], [-77.3626242952449, 34.77563154399397], [-77.36271462647386, 34.775482708393724], [-77.36287836886154, 34.77523779240724], [-77.36302483945761, 34.775032043921314], [-77.36311343379086, 34.77493402444071], [-77.36330723857438, 34.774776415731004], [-77.36344852602782, 34.77462108868332], [-77.36366155026168, 34.7743329781092], [-77.36413597929621, 34.77382176374693], [-77.36419302782323, 34.77376317957749], [-77.36420373895585, 34.7737222486755], [-77.36425950856719, 34.77370672185262], [-77.36473888296177, 34.77339497580303], [-77.36487715805256, 34.773326162244764], [-77.36505583400339, 34.773173925019066], [-77.36529969683741, 34.77303200639484], [-77.36548705495744, 34.77282618945957], [-77.3658027482314, 34.77281123674567], [-77.36611192217447, 34.77299917762325], [-77.36630413712908, 34.773294028497936], [-77.36634650864531, 34.773398314472864], [-77.3664491860591, 34.77365102761287], [-77.36648181194782, 34.77373771243141], [-77.36655597603482, 34.774030824754625], [-77.36666412184695, 34.77426378340435], [-77.36682848665478, 34.774271356500705], [-77.3669615461838, 34.77434427598705], [-77.36729250340993, 34.774292735072635], [-77.36729753871646, 34.774291950911255], [-77.36729876774884, 34.7742917595086], [-77.36730079045904, 34.77429144449777], [-77.36771676926773, 34.774226661528274], [-77.36787787834824, 34.77404903022409], [-77.36757093424383, 34.773826758225916], [-77.36745338072913, 34.77375526897401], [-77.36723625861268, 34.77342362231238], [-77.3671307021252, 34.772657019751556], [-77.36706213297145, 34.77260358802568], [-77.36712092315318, 34.77255087055307], [-77.36702270475625, 34.77234285328349], [-77.3668572050316, 34.771796378107446], [-77.36674787296782, 34.77176594586021], [-77.36665903875159, 34.771748081944175], [-77.36615504532139, 34.771598064765186], [-77.36577308066833, 34.77135519783325], [-77.36563908892346, 34.77116548096], [-77.36551201881724, 34.77086943742452], [-77.36541984063685, 34.77060973655526], [-77.36532268758783, 34.7700457315323], [-77.36527297038043, 34.769778361849305], [-77.36528778426835, 34.769672532681724], [-77.36529969186553, 34.76952479425573], [-77.3653013013943, 34.76932030783492], [-77.36528108744, 34.76911097099213], [-77.36521021743415, 34.76891196793421], [-77.36505959680109, 34.76874243800374], [-77.36490759109472, 34.76859169889404], [-77.36459768328734, 34.768376564106354], [-77.36453468869222, 34.76834075517835], [-77.36448668649419, 34.7683206707031], [-77.36429751364486, 34.76820754077258], [-77.3639863021894, 34.76801993326964], [-77.3636674369796, 34.76776922074009], [-77.363478499933, 34.76755937427503], [-77.36298576884587, 34.76723747317607], [-77.36293959728438, 34.76720592538441], [-77.3629144345878, 34.76719019140867], [-77.36287883643527, 34.76706255725311], [-77.36271295125958, 34.76653453259908], [-77.36270286793658, 34.766385758586466], [-77.36267761790288, 34.765898961137715], [-77.36264900720352, 34.76551567315187], [-77.36263752161223, 34.765389680970145], [-77.3627042635912, 34.76527942865684], [-77.36291259737834, 34.76508984812662], [-77.36306198492571, 34.764979016328326], [-77.36332834240349, 34.764802739065395], [-77.36333075027302, 34.76478559892085], [-77.36320546598338, 34.764470009211706], [-77.3631596842406, 34.76441056183807], [-77.36312554505668, 34.764356583495946], [-77.36294137668494, 34.76405519304075], [-77.36276454004232, 34.763756460423735], [-77.36273049308177, 34.76369673355573], [-77.3626942405896, 34.763632707924714], [-77.36252128087926, 34.76333757884144], [-77.36253065538509, 34.76311537304282], [-77.3625125875299, 34.76289494382894], [-77.36269576587976, 34.76227038321278], [-77.36278941967993, 34.76208749012284], [-77.36294577805074, 34.76193058750393], [-77.36325169102926, 34.76171314729877], [-77.36326533776315, 34.761704564095936], [-77.36328841248682, 34.76167943880506], [-77.36342183632956, 34.76119039157618], [-77.36341198496754, 34.76116116549647], [-77.36330408436179, 34.76078040336506], [-77.36335421166453, 34.76035239038891], [-77.36348917559808, 34.76009551114555], [-77.36376899904334, 34.75993174101973], [-77.36402106657685, 34.75994573839478], [-77.3643690520525, 34.760074446091856], [-77.36475765959659, 34.76017521170047], [-77.36512151398392, 34.7602483822752], [-77.36541618783998, 34.760210750615286], [-77.3655486596505, 34.76019836524417], [-77.36567839937996, 34.75998364526243], [-77.36578926797638, 34.75984320874781], [-77.36589465673543, 34.759818992231914], [-77.36581608419714, 34.75973452406671], [-77.3657639247372, 34.759689098002745], [-77.36556727934482, 34.75948007554604], [-77.36527122233082, 34.75917669670435], [-77.36515738787593, 34.759116264343334], [-77.3650535499952, 34.75896538704512], [-77.36474867121161, 34.758767109204804], [-77.36463322208328, 34.758700853181836], [-77.36447591688537, 34.75860185223752], [-77.36431539240128, 34.75857432362696], [-77.3641675470525, 34.75855925004683], [-77.3640812253252, 34.75854661224098], [-77.36394986065744, 34.75857908471525], [-77.36371321962949, 34.75869336164139], [-77.36342342787229, 34.7589127003323], [-77.36339898342324, 34.7589280747091], [-77.36335840502473, 34.758931289309295], [-77.36272047342774, 34.75912437089897], [-77.36257923801642, 34.759084593793624], [-77.36217923819936, 34.758779152268666], [-77.36206983017043, 34.758679588280344], [-77.36192468692602, 34.75858697805744], [-77.36168112847362, 34.75843157304077], [-77.36135316022174, 34.758442349454526], [-77.36109282385952, 34.75839457512869], [-77.36072657169231, 34.75847172063603], [-77.36043661189805, 34.75859139944811], [-77.36015111375595, 34.7586003037013], [-77.36012964751066, 34.758594947539635], [-77.36010563429718, 34.75856002892175], [-77.35996177366688, 34.75836908786149], [-77.35994978966954, 34.75833905174651], [-77.35993280517806, 34.75826345627258], [-77.35986600361248, 34.758009263099595], [-77.35984785154517, 34.75789734193958], [-77.35979406303369, 34.757645925924464], [-77.35971654959312, 34.75733575394151], [-77.35964934752461, 34.75717683693988], [-77.35960356333503, 34.757028427505055], [-77.3595586161493, 34.75696227877752], [-77.35937320885554, 34.75681137286411], [-77.35919789275705, 34.75666867847168], [-77.35913306725661, 34.75660184867952], [-77.3590853368129, 34.7565398663433], [-77.358936196729, 34.75635904098693], [-77.35875617081003, 34.75612702723778], [-77.35873558403433, 34.75610049536024], [-77.35872164619741, 34.7557356074586], [-77.3587166960312, 34.755615703142816], [-77.35875363584543, 34.755448144844785], [-77.35883479243573, 34.75511210608309], [-77.35887871107187, 34.754920720336756], [-77.35887241388717, 34.75483119293309], [-77.35884519886302, 34.754789241812496], [-77.3588008885519, 34.75468909358667], [-77.3587486993558, 34.75463654029544], [-77.35868904047375, 34.754578008385025], [-77.35862560291307, 34.75451407904747], [-77.35832706984112, 34.75446219104327], [-77.35804077456167, 34.754246335741925], [-77.35785610498932, 34.75403598344353], [-77.35776384873824, 34.75335622087198], [-77.35775055712783, 34.753328720844735], [-77.3577421575332, 34.75331256054737], [-77.35770681362573, 34.7532446367989], [-77.3575061658634, 34.75285757111645], [-77.35759730380528, 34.75265814966364], [-77.35749020634974, 34.752372376380954], [-77.35788304905176, 34.75212431684898], [-77.35816575062083, 34.751972457189154], [-77.35844801976783, 34.75175350831183], [-77.3586867931413, 34.75155977007197], [-77.35906987963364, 34.751180751028485], [-77.35874784164803, 34.750984746481336], [-77.35851085466457, 34.75078421718065], [-77.35850271274467, 34.75077907149344], [-77.35848010643744, 34.75077433410224], [-77.3581215651646, 34.75067801646531], [-77.35766704728161, 34.750656599578946], [-77.35747766369549, 34.75091194672035], [-77.35714875535132, 34.75134920566042], [-77.35708871496455, 34.75142078679296], [-77.35658118081466, 34.751468599511114], [-77.35675036302396, 34.75112110764097], [-77.35699739292674, 34.75097787402204], [-77.3569304425886, 34.75080574450214], [-77.3570921746622, 34.75047747846574], [-77.35721231654682, 34.75025384338023], [-77.35733795873541, 34.7497038576756], [-77.35727780240458, 34.74947722854314], [-77.35703963136098, 34.74914488309979], [-77.35669141011525, 34.74879917636974], [-77.35661041362376, 34.7486865876851], [-77.35649917032782, 34.74860934422677], [-77.35634563707215, 34.74820977682297], [-77.35629983180574, 34.748137043898986], [-77.35629031295534, 34.748117855577135], [-77.35618311858475, 34.747832599441146], [-77.35610833657671, 34.747688226012], [-77.35601214119512, 34.747569893225254], [-77.35589016402844, 34.747433289705185], [-77.35581496571503, 34.747327340150434], [-77.35574175364259, 34.747251161309244], [-77.35563153754748, 34.74707421280451], [-77.35561708584717, 34.747024582145016], [-77.35547292048493, 34.74680760134989], [-77.35547048467213, 34.746803875823545], [-77.35546853222165, 34.74680128130983], [-77.35545356429803, 34.74678139117334], [-77.35531952343258, 34.746525776726166], [-77.35530820962558, 34.74633590372005], [-77.35538255350758, 34.74608026698397], [-77.35537228714936, 34.74583972525609], [-77.35538543168626, 34.74568665456035], [-77.35554928027224, 34.744951506761126], [-77.3556438687287, 34.744827680032486], [-77.35577734655782, 34.74459676944761], [-77.35618678295458, 34.74377838767558], [-77.35647202160808, 34.74327399706116], [-77.35648330089629, 34.74325030166777], [-77.35648903081662, 34.74323106148679], [-77.35662966473546, 34.74274282406135], [-77.35699853067737, 34.74240594778664], [-77.35711841435324, 34.74218834657455], [-77.35725229661298, 34.74199252281893], [-77.3572992498292, 34.74184923611408], [-77.35731305019078, 34.74167424233175], [-77.35722755901566, 34.74133239704393], [-77.35722279831576, 34.74111960711615], [-77.35696471386827, 34.740747293023], [-77.35739419837232, 34.74019931419656], [-77.3572769878904, 34.73972964972876], [-77.35727431016247, 34.738820957658895], [-77.35843317684517, 34.738677099355854], [-77.35881701507593, 34.73854345145126], [-77.35955343069443, 34.73828703984155], [-77.3601500238495, 34.73807930402408], [-77.36109826790073, 34.737749121739185], [-77.3615687214508, 34.73719083652975], [-77.36154222951214, 34.736220086426655], [-77.36149748219765, 34.735465735270054], [-77.3615970300748, 34.73523740313912], [-77.36149880645803, 34.7349047442558], [-77.36130170644097, 34.73430318438512], [-77.36141450915005, 34.73395264471518], [-77.3614861423121, 34.733790470759054], [-77.36157608217249, 34.73369682822919], [-77.36206951697827, 34.73322296770493], [-77.36228149739836, 34.73304533676245], [-77.36251668876562, 34.7328638115294], [-77.36313529532232, 34.732525291788114], [-77.36367096986132, 34.732028248240155], [-77.36385111930227, 34.73188303191566], [-77.36403321497332, 34.731765674727534], [-77.36429806952515, 34.73164077537147], [-77.36441534364397, 34.73164380079613], [-77.3646604897086, 34.73166777060359], [-77.36494001265089, 34.731571242661545], [-77.36528329272716, 34.731585261935884], [-77.36556472647814, 34.73154790322678], [-77.36591468741571, 34.7314731474205], [-77.36630263141883, 34.731501910984605], [-77.36652090180152, 34.73144777031567], [-77.36672125921186, 34.73144649228855], [-77.3676017049645, 34.731488304704634], [-77.36766432059424, 34.731509332184444], [-77.36770525264477, 34.731493736432625], [-77.36772360451445, 34.73148425472871], [-77.36776801792307, 34.73146545664128], [-77.3683831319469, 34.7312214384895], [-77.36883063666919, 34.731188516566974], [-77.36900529374773, 34.73114109219332], [-77.36913879198552, 34.731163241135334], [-77.36947773939883, 34.73123055583629], [-77.36978635546862, 34.73145345078446], [-77.36999904043576, 34.73184375713742], [-77.3702608627905, 34.73200018908746], [-77.37051535939348, 34.73227427808457], [-77.37076677386068, 34.73204796584306], [-77.37088487931211, 34.73174025982078], [-77.37081378692028, 34.731343244032445], [-77.37123577273027, 34.731317969296725], [-77.37144278638127, 34.73128824381797], [-77.37203065327874, 34.73112119531696], [-77.3722451103604, 34.731173649659766], [-77.37263761991356, 34.73159039334902], [-77.37281937551913, 34.7318269745727], [-77.373021484779, 34.73211609150638], [-77.37321651983227, 34.732554081154724], [-77.37434866291113, 34.73369907292044], [-77.37409932605343, 34.73397142481765], [-77.37447493582653, 34.73409825575783], [-77.37625597672144, 34.73436665525895], [-77.37866938058349, 34.73449603538523], [-77.37949945422616, 34.734462400855236], [-77.38201838068193, 34.734242540277506], [-77.38217074471937, 34.73423515822847], [-77.38468562056872, 34.734269106787835], [-77.38533600305864, 34.733424457518666], [-77.38543413323221, 34.73310530748785], [-77.38532006543058, 34.73286682771341], [-77.38562118649746, 34.73205242063774], [-77.38569346837261, 34.73181863779692], [-77.38579085953029, 34.73155262349357], [-77.38585964228253, 34.73128706342674], [-77.38594829596906, 34.731048542917954], [-77.38631775712076, 34.730665893544725], [-77.38631925708589, 34.730060012284774], [-77.38645890301561, 34.729714479358016], [-77.38659549093792, 34.729597507289014], [-77.38663590485717, 34.72956289721543], [-77.38673356468664, 34.72941892139483], [-77.38690313496639, 34.729251533265284], [-77.38693568875077, 34.729157384777885], [-77.38703952087657, 34.72910038466095], [-77.38714767446965, 34.729096507274136], [-77.38727449344597, 34.72927594416515], [-77.38724813822108, 34.72938558920236], [-77.38734294035288, 34.729528714928975], [-77.38764937032019, 34.72996629258856], [-77.38769441394699, 34.73009221781391], [-77.38781870846874, 34.73009923264429], [-77.38787486987951, 34.73009246345026], [-77.38809619196869, 34.730122645644286], [-77.388373661267, 34.73015983548272], [-77.38843938317257, 34.730170078178865], [-77.3888977985444, 34.73026865737715], [-77.38904487084537, 34.730293295521406], [-77.3892506203589, 34.73033630067212], [-77.38964418378174, 34.730437809576124], [-77.38994785123818, 34.73048919777118], [-77.39075959271959, 34.73060005212879], [-77.39086763400095, 34.730641236073325], [-77.39096170876863, 34.73065052697281], [-77.39116513761864, 34.730637319988034], [-77.39157417392542, 34.73026056654464], [-77.39162161971728, 34.730232994410564], [-77.39162721742106, 34.73023300934844], [-77.3916626867032, 34.730223677501165], [-77.39197678323953, 34.73013313139187], [-77.39201735101284, 34.73013180109159], [-77.39228090187419, 34.7301889726391], [-77.39228118108495, 34.73018903320775], [-77.3922814966979, 34.73018918075558], [-77.39252281024449, 34.73031151373741], [-77.39262272312044, 34.730373451906566], [-77.39283024486227, 34.730506856438595], [-77.39299111305404, 34.730562647659525], [-77.39319381142437, 34.73078795231562], [-77.39324330936539, 34.73129376804877], [-77.39324279074171, 34.73135038097244], [-77.39382168899799, 34.73151050976746], [-77.39387723817056, 34.73153226932783], [-77.39427629598262, 34.73158088644418], [-77.39443738860717, 34.73159853205544], [-77.39472132936041, 34.73162677702447], [-77.39499192848514, 34.73189751652868], [-77.39505386400688, 34.73199785302313], [-77.39527395756357, 34.7322890794503], [-77.39546551737601, 34.73247574326344], [-77.39579171835757, 34.73281512932546], [-77.39581098223498, 34.73295788633804], [-77.39553322545156, 34.73328384608102], [-77.39541181889547, 34.733437739320365], [-77.39513040550426, 34.73370207332912], [-77.39509234910818, 34.7337629266937], [-77.39489276168418, 34.73408562629162], [-77.39481849855422, 34.73415210471204], [-77.39480421122305, 34.73427013411773], [-77.3947216404186, 34.735041587922424], [-77.39470016210892, 34.73520613387389], [-77.39475963930185, 34.73524980964252], [-77.39502532786707, 34.73596324382146], [-77.39635473973759, 34.736476170421724], [-77.39687672467156, 34.736455489598306], [-77.39770431440985, 34.73663195426773], [-77.39834790692377, 34.73674194300905], [-77.39873334022569, 34.73620304859429], [-77.39926865069746, 34.73570881216459], [-77.39927198195366, 34.73525974395961], [-77.39927463479609, 34.73515177067021], [-77.39986499667057, 34.734995235817635], [-77.39997028756642, 34.73490495650543], [-77.40004225531963, 34.73486113724142], [-77.40060313174588, 34.73453101835667], [-77.4006392505751, 34.734510820829115], [-77.40064299286958, 34.734508319288004], [-77.40064898163607, 34.73450273435103], [-77.40096371317128, 34.734284444783135], [-77.40121542143685, 34.7341532189844], [-77.40131634883704, 34.73411275194923], [-77.40140313454161, 34.73411312231208], [-77.40152048366141, 34.73414862370587], [-77.40199235622495, 34.7342925497304], [-77.40249638692828, 34.734545570329594], [-77.40255356938326, 34.73456862334773], [-77.40260205778623, 34.73459042680492], [-77.40309665474352, 34.73477872345441], [-77.40313546835613, 34.73477333079916], [-77.40344402004123, 34.73465313327668], [-77.40345863772403, 34.73462231099], [-77.40351070676849, 34.73439689396159], [-77.40355084817973, 34.734194907346975], [-77.40368278827623, 34.733897954618214], [-77.40381557464141, 34.73370945557632], [-77.4040676186863, 34.73347342502835], [-77.40417231933158, 34.73340817937456], [-77.40444948669456, 34.733249424876036], [-77.40467994855877, 34.73312846233396], [-77.40476468164931, 34.73301653485183], [-77.40481796748838, 34.732773997044475], [-77.4047985256768, 34.73261081193266], [-77.40476677293827, 34.73227177217898], [-77.4047519171818, 34.73203538799336], [-77.40479932227124, 34.731889094509285], [-77.4046652242128, 34.731707289742616], [-77.40441936133335, 34.731154825910565], [-77.40424770767177, 34.73093541245942], [-77.40414166002509, 34.73070370097918], [-77.4041174241994, 34.73038803010106], [-77.40402870556551, 34.73010506908625], [-77.4041886288079, 34.7298302009534], [-77.40419142980936, 34.729602859988894], [-77.40418194203522, 34.729468462188336], [-77.40430402781028, 34.72927068005515], [-77.40443270114653, 34.72912812449776], [-77.40457733772519, 34.72896933234579], [-77.40485452850167, 34.728716542276274], [-77.40489839125107, 34.72868999734566], [-77.4052021688623, 34.7284945177512], [-77.40549963451676, 34.72838305384338], [-77.40557440169142, 34.7283549084953], [-77.40564430841053, 34.72832853277314], [-77.40594667725671, 34.72821537016122], [-77.4062646216823, 34.72809149333011], [-77.40636422927025, 34.72805675933498], [-77.4069108035864, 34.72829527037231], [-77.40693488451633, 34.72830012300749], [-77.40695990039913, 34.72831028515545], [-77.40741419981833, 34.728370092433444], [-77.40759160679922, 34.72824644635062], [-77.40773460150272, 34.728145749861284], [-77.40783523440652, 34.728081692186606], [-77.40834832032542, 34.72784764537607], [-77.40845450481054, 34.72782638339378], [-77.40870102678076, 34.7278253762501], [-77.40889914484386, 34.727805149129296], [-77.40900832381246, 34.727782619780726], [-77.40927740893899, 34.72779035106255], [-77.40936071045272, 34.72781158323907], [-77.40935602305429, 34.727757572156044], [-77.40935002584895, 34.72770971859603], [-77.40933265870544, 34.72754414120749], [-77.40931766523416, 34.727481921195064], [-77.40924859476027, 34.72735601958452], [-77.40919230578115, 34.72714758319429], [-77.4091348487451, 34.72695710172506], [-77.40909532592123, 34.7268450504478], [-77.40909966441657, 34.72652542625373], [-77.40913268146738, 34.72629900276203], [-77.40923361687737, 34.72610757657047], [-77.40943452961523, 34.72584545789549], [-77.40966980076179, 34.72539500584604], [-77.40968195264567, 34.72537287928926], [-77.40968761595497, 34.72535354418462], [-77.4097973441736, 34.72485412485452], [-77.40984947494593, 34.72442739215864], [-77.4099073397979, 34.724333483620086], [-77.40994044066211, 34.72427064038641], [-77.41000743254116, 34.72408893473169], [-77.41014042053706, 34.72387490844684], [-77.4101482882092, 34.72386232407255], [-77.41015422395576, 34.72386071812714], [-77.41017450215864, 34.723845514522246], [-77.41047777395458, 34.7236528656787], [-77.41078540344483, 34.72359077445943], [-77.41085586387945, 34.723618379679195], [-77.41109681833797, 34.72363126517384], [-77.41140493455084, 34.72367238470639], [-77.41187016082793, 34.72334261538512], [-77.41196708975485, 34.723095205152816], [-77.41246222580705, 34.7224994740268], [-77.41252862038536, 34.722454684626975], [-77.41252510845631, 34.72241895720655], [-77.41283997988653, 34.722004469549844], [-77.4130209960181, 34.72182578649911], [-77.41327385897799, 34.721597102632174], [-77.41321365261781, 34.72139266746689], [-77.41319564295556, 34.72124662343236], [-77.41315037166643, 34.72123041683735], [-77.41311184028415, 34.72098133905005], [-77.41303804506347, 34.72086599334594], [-77.41306989378282, 34.720783624367414], [-77.41309955645465, 34.72069749176025], [-77.41317502699859, 34.72058569116242], [-77.41317635422037, 34.7205836294931], [-77.4132820786703, 34.72048177261524], [-77.41340310980942, 34.72026739609221], [-77.4134214318585, 34.72023621042378], [-77.41344853881566, 34.72020100036179], [-77.41374131084213, 34.72008327416752], [-77.41377138091227, 34.72006023364031], [-77.41382815640985, 34.71999705865702], [-77.41398120927293, 34.72002630524599], [-77.41442688867508, 34.72014331799551], [-77.41482000238409, 34.72056920125712], [-77.41487811565364, 34.72103992709866], [-77.41512603023928, 34.721334286084414], [-77.41523518535479, 34.72177956725075], [-77.41530816896359, 34.72215104039208], [-77.41552595031816, 34.72238466826162], [-77.41584699516615, 34.72281903997688], [-77.4161303869227, 34.723115861089525], [-77.41617516719327, 34.723170787738574], [-77.41637654645334, 34.723490909418146], [-77.41635312718557, 34.72353248492654], [-77.41607903987358, 34.723696268034615], [-77.41619604556757, 34.72402373749166], [-77.41632459357757, 34.72440529581118], [-77.41672193262748, 34.725039257181365], [-77.41674210430213, 34.72512389422218], [-77.41666471981455, 34.72557834480442], [-77.41667935504015, 34.72564774880853], [-77.4166590237874, 34.72605126419769], [-77.4167238758863, 34.726158121505094], [-77.41705396213146, 34.726568030394866], [-77.41738735582916, 34.72664023823546], [-77.41761531291685, 34.72684353030725], [-77.41792843433436, 34.726855328897514], [-77.41826403076873, 34.72681736340616], [-77.41862935561785, 34.72701498391072], [-77.41879871994988, 34.727184941643955], [-77.41898473668087, 34.727085802964105], [-77.41987660144298, 34.72738753294048], [-77.42000778837831, 34.72743775814416], [-77.42021465739955, 34.72760000805115], [-77.42053349523009, 34.727836388383636], [-77.4206263341603, 34.72796757530717], [-77.42097521427692, 34.72820363093484], [-77.4210346467817, 34.72831983343595], [-77.42115991684918, 34.72863776852384], [-77.42159729001408, 34.728980190263684], [-77.42201446730148, 34.729364419605076], [-77.42225123102334, 34.72943243518054], [-77.42301826432072, 34.729648165206015], [-77.42320386492726, 34.72968527717616], [-77.4233240812508, 34.72968984214366], [-77.423680544539, 34.729818305467326], [-77.42359046851419, 34.73012515688108], [-77.42351903792837, 34.73021108926287], [-77.42340760420691, 34.73037852223563], [-77.4231694988017, 34.730647971273854], [-77.42309669542811, 34.73081406727281], [-77.42292954521756, 34.73112316407191], [-77.42290559858068, 34.73124969649599], [-77.42293991533793, 34.731466339084186], [-77.42316437772901, 34.73176433004915], [-77.42307691987486, 34.73227756189289], [-77.42307834565389, 34.73230134994413], [-77.42308337098416, 34.73231576019521], [-77.42308974544174, 34.73229852039217], [-77.42308991532026, 34.732297374235884], [-77.42309066733179, 34.73229621083421], [-77.42324122845179, 34.73179815698669], [-77.42327271218241, 34.73180220080879], [-77.42369834192064, 34.731797227158275], [-77.42388683582945, 34.73175524447997], [-77.42403908971038, 34.731900635074815], [-77.42424400198246, 34.73194098749], [-77.42445506592614, 34.73200714954167], [-77.42459740876514, 34.73198573151256], [-77.4247214477905, 34.731973277611], [-77.42479847318103, 34.73192831850317], [-77.4249303781665, 34.73182258823247], [-77.42502061705534, 34.73171425524998], [-77.42520265929262, 34.73163955810149], [-77.4253993822316, 34.731585297685], [-77.42565176850053, 34.73151568320799], [-77.42578192327949, 34.731462510860425], [-77.42588304990936, 34.731504061450806], [-77.42604570775302, 34.73151004266033], [-77.42627669890562, 34.73152311580152], [-77.42652581905921, 34.73149850142866], [-77.42671717566989, 34.731676341154], [-77.42676369344854, 34.73178417932604], [-77.42680102179462, 34.731864557877266], [-77.42682473472374, 34.73192568552342], [-77.42685690614684, 34.73201587697784], [-77.426873921158, 34.73205734076357], [-77.42689319442766, 34.73208938063247], [-77.42689242296666, 34.73215526675955], [-77.42690374039215, 34.73223283275663], [-77.42688591084054, 34.7324693615227], [-77.42689912268197, 34.732493210361454], [-77.42697947316557, 34.732538835682035], [-77.42694343179157, 34.732612535036544], [-77.42703374792845, 34.732837338173546], [-77.4270230022967, 34.73288791948122], [-77.42691796954745, 34.733076401629866], [-77.42699653401365, 34.733345341974335], [-77.42716500577095, 34.73372002783989], [-77.42716612537265, 34.733722202451034], [-77.42709205666743, 34.73419826201497], [-77.42730725758591, 34.73433059339821], [-77.4273337822625, 34.73454381720405], [-77.42754892698368, 34.73460863719524], [-77.42758027935005, 34.734664190731785], [-77.42759289735638, 34.73470996090961], [-77.42755845284059, 34.73473918008705], [-77.42749454806118, 34.73479647191406], [-77.42731979903385, 34.73472316734315], [-77.42715884133953, 34.73461678769211], [-77.42695663986666, 34.73443975074632], [-77.42687958473374, 34.734286887076294], [-77.42654589940068, 34.73420653615719], [-77.42640577855748, 34.73412778404936], [-77.42586727185025, 34.7338455550841], [-77.42584857384033, 34.73383773871327], [-77.42582731670288, 34.733833035006064], [-77.42576314746285, 34.73379088305076], [-77.4258261973003, 34.7337784410123], [-77.42584463088252, 34.73337943339317], [-77.42588315843861, 34.73327376512373], [-77.42576248622532, 34.73302778441213], [-77.42574549771166, 34.732974403028905], [-77.42558301283805, 34.73300715268706], [-77.4254186327542, 34.73310814782619], [-77.42541658248814, 34.73310914053098], [-77.42541484757355, 34.73311007121086], [-77.42540549457917, 34.73311621984246], [-77.42520426826638, 34.73359553217591], [-77.42488445440958, 34.73373538826117], [-77.42462213267405, 34.73364461279628], [-77.42458105394826, 34.73365722433191], [-77.42442463306112, 34.73373191498282], [-77.42425266931237, 34.73381340918284], [-77.42423942350412, 34.733817342266256], [-77.42412452356645, 34.73398941362854], [-77.42383637463537, 34.73414393756147], [-77.42366935665746, 34.734177144133554], [-77.42336742682755, 34.73424807242846], [-77.4231509526837, 34.734296712004905], [-77.42273722574193, 34.73441038180317], [-77.42257231894355, 34.73444462356215], [-77.42199514823989, 34.734538612104615], [-77.421803539539, 34.73452130760903], [-77.42163475413285, 34.734584067855785], [-77.42091717832884, 34.73473163300996], [-77.42068728563032, 34.735084059908644], [-77.42074991126955, 34.735392903847696], [-77.42085419161482, 34.735907192361076], [-77.42086848714082, 34.73599343582867], [-77.42082337999497, 34.73607422339], [-77.42040266189548, 34.73638967293546], [-77.42019891865532, 34.73654965315852], [-77.41969011594533, 34.73739088859126], [-77.41913815454244, 34.73818395300419], [-77.41891636595675, 34.73850078753002], [-77.41858082620465, 34.73910729057897], [-77.4183265828727, 34.73947365551949], [-77.41787127133031, 34.739977407312224], [-77.41823439557771, 34.74057063296538], [-77.41875574310737, 34.740617080692346], [-77.41904190418539, 34.74064257297806], [-77.41973550557525, 34.7408374017208], [-77.41994508934859, 34.74093867085053], [-77.42043264810907, 34.74143187216983], [-77.42043635712302, 34.741437876337876], [-77.42045439304914, 34.7414547511559], [-77.42102105712905, 34.74165176842709], [-77.42135809363481, 34.74143552982071], [-77.42148112766306, 34.741239287373844], [-77.42181203543923, 34.741134733069956], [-77.42202231206163, 34.7412228679821], [-77.42210197884398, 34.741240666230624], [-77.42225143006254, 34.741399371745175], [-77.42234648123662, 34.7415035163965], [-77.42236357393459, 34.741526923701294], [-77.4224415868936, 34.741575003792406], [-77.42288761499297, 34.741849217491065], [-77.4233130651161, 34.74202369834103], [-77.4234130851641, 34.74224902268425], [-77.42349645963775, 34.742393591085346], [-77.42350568290232, 34.7425060031635], [-77.42341738071416, 34.742872945195735], [-77.42345696544189, 34.74304804607637], [-77.42370293908245, 34.7434625072341], [-77.42374635614222, 34.74362850195696], [-77.42377712723258, 34.743719016486274], [-77.42411847248943, 34.74424201022154], [-77.42420623531423, 34.74432946763673], [-77.42457475525372, 34.744447454442195], [-77.42471984332505, 34.74437976588114], [-77.42500558246495, 34.7444034570426], [-77.42510194178183, 34.74418204010398], [-77.42522926394999, 34.7440210382607], [-77.42525787037721, 34.7439570035658], [-77.42533644325091, 34.743858117936554], [-77.42541051093468, 34.74373081738951], [-77.42542904499254, 34.74359957244705], [-77.42558814016981, 34.74359567980106], [-77.42582738798987, 34.74350251195786], [-77.42593813790901, 34.74349424211108], [-77.42602914641559, 34.74345820802786], [-77.42621793950434, 34.74349048204246], [-77.42625744059424, 34.74349881164345], [-77.42629871932625, 34.74352469409694], [-77.42651602369888, 34.74358935205537], [-77.4265282334474, 34.743670920491525], [-77.42666214566381, 34.74375160012696], [-77.42657355590902, 34.74397369751507], [-77.42655702207213, 34.7441315068717], [-77.42655453331592, 34.74424286327949], [-77.42656314999948, 34.74465768558366], [-77.42672229938833, 34.74506565807089], [-77.42666620819264, 34.74528778837082], [-77.42669793388916, 34.74567256481292], [-77.42677713183284, 34.74593555489194], [-77.42688118192767, 34.74597192918221], [-77.42713564941064, 34.74601090423687], [-77.42738913673993, 34.74605391255929], [-77.42745965597899, 34.74599091198378], [-77.42785502669828, 34.74606717339851], [-77.42804525138362, 34.74576971570167], [-77.42816649140421, 34.745764446424985], [-77.42818314729661, 34.74581790448852], [-77.4280869860096, 34.746282027682035], [-77.42807552945773, 34.746339354346624], [-77.42847085632806, 34.74692808678717], [-77.4285423712043, 34.74698487063225], [-77.42893899707494, 34.747090106166524], [-77.42905307720955, 34.747132052718634], [-77.42912328259274, 34.74718897347906], [-77.42932225619745, 34.74730979073769], [-77.4293659603192, 34.747349345193456], [-77.42949485633075, 34.7474803854655], [-77.42953814699464, 34.7476715921478], [-77.42958763700497, 34.74788807666552], [-77.42961165540528, 34.74799425288007], [-77.4296809322359, 34.74828591320084], [-77.42968310491119, 34.74829464755871], [-77.42969551797648, 34.74832588832555], [-77.42981396784423, 34.748623999477516], [-77.42963783952244, 34.748759915060575], [-77.42955954020964, 34.74885156038759], [-77.42951796343604, 34.74884881434576], [-77.42917625400698, 34.74896021762379], [-77.42916976352285, 34.74896266100229], [-77.42916398772105, 34.748963943937746], [-77.42913478707996, 34.74896972485338], [-77.42876216476834, 34.74904464945885], [-77.42848439843266, 34.74909622999166], [-77.4283547819488, 34.749126990856645], [-77.4281906083438, 34.74917485406934], [-77.42815999329756, 34.749182704895006], [-77.42813609237915, 34.749191766099415], [-77.42797240228214, 34.74925017584016], [-77.42781462216732, 34.74952031548255], [-77.4279189043262, 34.74963896695607], [-77.42798487708528, 34.74971403035546], [-77.42815683668174, 34.749823978317885], [-77.42825861018972, 34.74987606338898], [-77.42837110524191, 34.74990146084828], [-77.42851593958152, 34.74984759222234], [-77.42877449822366, 34.749812596311656], [-77.42893442437912, 34.7497568396631], [-77.42919122166026, 34.749745504908134], [-77.42957933537187, 34.74966011853271], [-77.42959486709564, 34.74965705405349], [-77.42960506593886, 34.749655471951044], [-77.43004177797692, 34.749639271503646], [-77.4302685372142, 34.74957885823452], [-77.43069860485113, 34.74921659652166], [-77.43101601081754, 34.749044016267284], [-77.4310716312658, 34.7490199507342], [-77.43148087867885, 34.74899883409573], [-77.43175357503286, 34.74887949464952], [-77.4321481821724, 34.74905205234518], [-77.43226770386518, 34.74931873841743], [-77.43234096969375, 34.749418034741204], [-77.43271797125497, 34.74952395145209], [-77.43290068289862, 34.74934742795776], [-77.43307510322974, 34.749204420438964], [-77.43313067270427, 34.748702552873375], [-77.43313795170384, 34.74866733568544], [-77.43312601588498, 34.74864419187551], [-77.43311510046499, 34.74860671270167], [-77.43311976262903, 34.74838145867522], [-77.43320285369902, 34.748303561342624], [-77.43328829038104, 34.74821226098065], [-77.43338900723035, 34.74819600939756], [-77.43355445023839, 34.74819660829188], [-77.43377718142327, 34.74826304872562], [-77.43385208156266, 34.748276084647955], [-77.43411560938986, 34.748231413098466], [-77.43444405640814, 34.74844639735511], [-77.43477910054327, 34.748404037187925], [-77.4351137803857, 34.748348105770745], [-77.43518514465177, 34.74826451124513], [-77.43519227188769, 34.748228703684504], [-77.4354063957065, 34.747933164140136], [-77.4355515557244, 34.74783348776434], [-77.43597946003875, 34.74757277099371], [-77.43610982483918, 34.747586642561814], [-77.43649231667081, 34.747603125469574], [-77.43656623161203, 34.74758437082526], [-77.43661061535852, 34.74760769762021], [-77.43662859700333, 34.7476295483399], [-77.43674497920384, 34.74769139703081], [-77.43688723249518, 34.747759775703415], [-77.43699318160719, 34.74792386288112], [-77.43713957724506, 34.74799572264065], [-77.43733984575732, 34.74817873600994], [-77.43737349873017, 34.74821161468662], [-77.43739014778154, 34.74823780452563], [-77.43761347906307, 34.748553846860574], [-77.4376155491647, 34.74855704550256], [-77.43761676676344, 34.74856264992277], [-77.43779870142357, 34.7488980698887], [-77.43778876241102, 34.748931192613824], [-77.4378208802394, 34.748965263877615], [-77.43794330629565, 34.749089925723325], [-77.43792305914674, 34.74922102926779], [-77.43781693859205, 34.74936584357367], [-77.43779492552781, 34.74945578205544], [-77.43770398244794, 34.749442514400215], [-77.43764943765441, 34.749557642286845], [-77.43753752225868, 34.74964537522103], [-77.43737867464482, 34.74965891104329], [-77.43733169136404, 34.749852984958494], [-77.43719308073237, 34.75002657285896], [-77.43716327163128, 34.75005480022578], [-77.43713502633457, 34.75006379685519], [-77.43707845629075, 34.75012030763158], [-77.43691722274264, 34.75026722399191], [-77.43693133969687, 34.7504048785491], [-77.43692540317356, 34.75040984026414], [-77.4369238039177, 34.750411391096655], [-77.43691954378127, 34.75041774926334], [-77.43687794381124, 34.75046313957823], [-77.43685789036208, 34.7504906642672], [-77.43685777449991, 34.750491033056356], [-77.43681601981962, 34.7504984717253], [-77.4368020814765, 34.750492980200306], [-77.43674767080965, 34.75048149476022], [-77.4367427048441, 34.750474819434736], [-77.43673010938198, 34.7504688992571], [-77.43662642850072, 34.75042046923699], [-77.4366063912668, 34.75039187153037], [-77.4365292808107, 34.75034939279617], [-77.43647811874669, 34.75028114217569], [-77.43632066187105, 34.75017404806255], [-77.4362739127566, 34.75032199939058], [-77.43617724755674, 34.75031367182811], [-77.43613979241326, 34.75034224051091], [-77.43597210435792, 34.7503524813334], [-77.4358995118136, 34.75047071774227], [-77.43593874393434, 34.75059572741007], [-77.43599882714159, 34.75064517331327], [-77.43601402532204, 34.75077676132186], [-77.43601478339362, 34.75078720957339], [-77.43601288105049, 34.75078984207536], [-77.43601135127851, 34.75079042384257], [-77.43600952679363, 34.75079230350136], [-77.435831822808, 34.750871068846045], [-77.43582038255722, 34.7508918809967], [-77.43572023883186, 34.750967123639086], [-77.4356551193595, 34.75095632794086], [-77.43564217455548, 34.750953673216024], [-77.43540249543338, 34.750917594906475], [-77.43529592647, 34.751098404735465], [-77.43528533499106, 34.75110009979466], [-77.43527867806844, 34.751101715861246], [-77.43502774245643, 34.75105325181936], [-77.43496962340956, 34.751061668628516], [-77.43467215464966, 34.75116000061363], [-77.43464487734438, 34.75117566093844], [-77.43459954551311, 34.75123244003717], [-77.43432198497902, 34.75131718233901], [-77.43435914552056, 34.7514567111143], [-77.43435946231752, 34.75147768195347], [-77.43423208567992, 34.75156529436914], [-77.43421789227394, 34.75175993132098], [-77.43418129937608, 34.75182707132017], [-77.43421745298977, 34.75197301136078], [-77.43421517983501, 34.75198426182932], [-77.43416227613443, 34.752099945309226], [-77.43407999804401, 34.752263845945784], [-77.43403936137466, 34.75233652316802], [-77.43400145044512, 34.75236795010764], [-77.43393920224912, 34.75244129109454], [-77.43392735675, 34.75244688159791], [-77.43383124335057, 34.75246382510568], [-77.43361658635901, 34.75246833940016], [-77.43360536535688, 34.752468777565156], [-77.43358846021319, 34.75246886822213], [-77.43333577621765, 34.75227510513777], [-77.43278639037405, 34.75245781113349], [-77.43292763174566, 34.752744497350804], [-77.4330936420489, 34.75284467944726], [-77.43315878138739, 34.75288652836004], [-77.43322937558717, 34.75306503779929], [-77.43325291518306, 34.753115191791224], [-77.43326076640523, 34.7531825894126], [-77.43321383152856, 34.753294719153196], [-77.43320695255686, 34.75331353348692], [-77.43313856128432, 34.753419415709274], [-77.43305885333582, 34.75358255700459], [-77.43302375903592, 34.75365882846893], [-77.43303051188205, 34.75377309680879], [-77.43284740745857, 34.754117144083324], [-77.43282581892377, 34.75414871733013], [-77.43282692839998, 34.75418833338786], [-77.43275493164278, 34.75428158187169], [-77.43251869019241, 34.75460045907447], [-77.43253019411661, 34.754695843167454], [-77.43238612423401, 34.75496387760748], [-77.43234556726962, 34.75509901945403], [-77.43228642645218, 34.75524390755918], [-77.43227211348893, 34.755352879136936], [-77.43225546549257, 34.755498224485805], [-77.43217903246513, 34.75559988177979], [-77.4321246740389, 34.75565848565372], [-77.43204637291015, 34.7556214722915], [-77.43187675847476, 34.75562745726674], [-77.43172843115264, 34.755612059806325], [-77.43160582038234, 34.755679140399515], [-77.4315075302242, 34.75577217202564], [-77.43140690610544, 34.755889167987824], [-77.43128198872219, 34.75604649693446], [-77.43124460294393, 34.75609050380327], [-77.43122732956465, 34.756105951800265], [-77.43117099055634, 34.756155512105316], [-77.43100368642007, 34.75630733956976], [-77.43084523131117, 34.75644746423427], [-77.43064345047036, 34.756604194021634], [-77.43057068444486, 34.75671510613103], [-77.43045678879604, 34.75689976399717], [-77.43074964098945, 34.7567776300764], [-77.43144810753236, 34.756486330155305], [-77.43146733513598, 34.75646932684423], [-77.43147325852769, 34.75646395140304], [-77.43148891305762, 34.75643938012209], [-77.43163469440084, 34.756248274270654], [-77.43165591548177, 34.75617646496774], [-77.43170943932918, 34.75610193628667], [-77.43176756412208, 34.75603070357704], [-77.43177466914557, 34.75602153388496], [-77.43178524621972, 34.75602134991706], [-77.43188121015801, 34.756008601688805], [-77.43193202797075, 34.75601643893588], [-77.43215624117485, 34.75608391265765], [-77.43222915503522, 34.75609775416444], [-77.4325703277529, 34.756016109311055], [-77.43257211285618, 34.75601537369755], [-77.4325759429858, 34.75600752982704], [-77.43269806921452, 34.75578121571906], [-77.4327445225623, 34.75554921618253], [-77.43276996671028, 34.75552681248269], [-77.43280517516702, 34.75547394444881], [-77.43280961539492, 34.75540090356831], [-77.43287409853734, 34.755386972013945], [-77.43303519924042, 34.755378005934226], [-77.43307887995853, 34.75537791170669], [-77.43309531870544, 34.75537440041109], [-77.43310787296518, 34.755365342909904], [-77.43347071445088, 34.75523976134292], [-77.43350873932796, 34.75518049956122], [-77.43366771776456, 34.755001888356205], [-77.43368446630664, 34.75484113208857], [-77.43371139625006, 34.754649576446894], [-77.43363110643065, 34.75457799761139], [-77.43341158371776, 34.7543954657437], [-77.4333729460576, 34.75436209345603], [-77.4333530930954, 34.75435262478896], [-77.43335253606455, 34.75433273489314], [-77.43336342384983, 34.754316811499784], [-77.43338757847906, 34.7540654565394], [-77.43338098880723, 34.75389459323008], [-77.43337429322588, 34.75378129389682], [-77.43342537827428, 34.75367026927298], [-77.43344138534218, 34.75352521296178], [-77.43349385945768, 34.753401119108304], [-77.43353795563843, 34.753279430589714], [-77.4335540823632, 34.75313274504224], [-77.43361516536328, 34.75302688438586], [-77.4337755236331, 34.752837240804475], [-77.43376723479042, 34.75280049182153], [-77.43380833506077, 34.7528002714137], [-77.43382525134363, 34.752799610855675], [-77.4341612363118, 34.75265862229121], [-77.43417534873386, 34.75265196190914], [-77.43419200580452, 34.75264035212595], [-77.43448464279466, 34.752492088671346], [-77.43450881311404, 34.752448860941804], [-77.43448877250717, 34.7520933424342], [-77.43447279205316, 34.75192890907341], [-77.43448722135889, 34.75187079034048], [-77.4345419827378, 34.7517553229221], [-77.43459235612886, 34.751691160854655], [-77.43474566042111, 34.751539792189945], [-77.43479398570577, 34.75148208359762], [-77.43481578190173, 34.751454783390926], [-77.43486381669706, 34.75142720586855], [-77.43498102186982, 34.75135080018801], [-77.43515580154258, 34.75132896933009], [-77.43519324329594, 34.7513235470097], [-77.43521334505462, 34.75132742933021], [-77.43531246654756, 34.75130336611939], [-77.43541151210371, 34.75130617023567], [-77.43542479533629, 34.751283185652674], [-77.43555056763272, 34.75127016340311], [-77.43561947265795, 34.751271958035574], [-77.43574959216882, 34.7512568964913], [-77.43583749852954, 34.75125418418327], [-77.43587631067345, 34.75125255554147], [-77.43599786179428, 34.7512406695677], [-77.43605662034804, 34.75123820000016], [-77.43608768018068, 34.75120320350476], [-77.43615858132353, 34.75112026065532], [-77.43619659305104, 34.75109295316213], [-77.43626783279672, 34.751007681321454], [-77.43633593347892, 34.75094667427754], [-77.43635486706219, 34.75090931598812], [-77.43635573159045, 34.75086818916436], [-77.43636410171128, 34.750675073220805], [-77.43636527331998, 34.75064100789529], [-77.4363620816199, 34.75063231908606], [-77.43636947057739, 34.750627603492056], [-77.43638028968913, 34.75061914373885], [-77.43644970822872, 34.75057172307426], [-77.43649052573888, 34.75058876034553], [-77.43654303561826, 34.75061076789745], [-77.43659100925953, 34.75061556835744], [-77.43670004603204, 34.75062220826287], [-77.43672451491085, 34.75061917695944], [-77.43682474361442, 34.75062345033077], [-77.43685988053072, 34.75062389103782], [-77.43701754580796, 34.75058178835464], [-77.43702451784023, 34.75057587048481], [-77.43703722123438, 34.75056508780438], [-77.43714719648196, 34.75048732308731], [-77.43718191930651, 34.75045909059703], [-77.43729113238852, 34.75039784820934], [-77.43733032103977, 34.75032761336569], [-77.43745353707632, 34.750234519934516], [-77.4374851774648, 34.750206678643536], [-77.43750899890965, 34.75019444264084], [-77.43751644183499, 34.75016080447831], [-77.43760454813594, 34.750027791667506], [-77.43762865077102, 34.74995672644247], [-77.43766987189193, 34.749873598389], [-77.43770744555403, 34.74982200272085], [-77.43785326305117, 34.74975567750634], [-77.43787179216251, 34.74971656804614], [-77.43792196238162, 34.74972388736247], [-77.43799796004899, 34.749736734378516], [-77.43811948347013, 34.749747245124624], [-77.43823331329907, 34.7497559788982], [-77.43823983747359, 34.74975688116697], [-77.43824351435998, 34.74975225059683], [-77.43828638070275, 34.74964597671672], [-77.43829614806955, 34.749630880076936], [-77.43831879270904, 34.74960289574305], [-77.43844093969052, 34.74940194646146], [-77.43851120582961, 34.74929942490995], [-77.43851644208365, 34.74927403517064], [-77.43851785273658, 34.749149300425216], [-77.4385274552286, 34.74906944283762], [-77.43848476535673, 34.74888712355978], [-77.43843194845645, 34.74883977584818], [-77.43825354581003, 34.74873730242599], [-77.43821454453172, 34.748712924991466], [-77.43798368985941, 34.74840347048273], [-77.43772250613918, 34.748197290448275], [-77.43765168273003, 34.74809556723513], [-77.43748535853136, 34.747950055402875], [-77.43747923800647, 34.747944302466244], [-77.43747583735217, 34.747941725625665], [-77.43746627290069, 34.747932797093355], [-77.4373132721563, 34.74779033475596], [-77.43722190798763, 34.74771125176724], [-77.43697958335184, 34.74749384199087], [-77.43697124912717, 34.74748660912808], [-77.43696750101691, 34.74748243277432], [-77.43690484480538, 34.747389715730094], [-77.43674290838987, 34.74715060415581], [-77.43673500505706, 34.74713875708941], [-77.4367252815339, 34.74712548092276], [-77.43672168445086, 34.74709057582714], [-77.43677045473396, 34.74705542645544], [-77.43684573750882, 34.746919341064185], [-77.43686024548363, 34.746893115511845], [-77.43692435574663, 34.746673901674285], [-77.43694364708001, 34.746642736093975], [-77.43700874942803, 34.74657815906767], [-77.4370103193156, 34.74644045975133], [-77.43699322018114, 34.746380538269214], [-77.43700136908113, 34.74625756772882], [-77.43691552019052, 34.746170647576804], [-77.43681694480307, 34.746039435526036], [-77.43687226117129, 34.745841136790645], [-77.43709162429658, 34.74594571224055], [-77.43727197416621, 34.745746285146666], [-77.43744249098663, 34.745841217178175], [-77.43756909084384, 34.745857706271444], [-77.43759451109065, 34.7458698689727], [-77.43764749728214, 34.74586529074636], [-77.43776062488969, 34.74584982170831], [-77.43779033002103, 34.74584520158343], [-77.43784332029966, 34.74583898349455], [-77.43792604392203, 34.745749088476636], [-77.43794370444701, 34.74572186013156], [-77.4379569122388, 34.745599152229474], [-77.43803729090686, 34.745500873349094], [-77.43803755420312, 34.74547936647958], [-77.43798240801057, 34.745328543667995], [-77.43803725696708, 34.745256287713026], [-77.43797597374439, 34.745105703968356], [-77.43744438873371, 34.74514057787355], [-77.43737111304502, 34.745160527064876], [-77.43730650793243, 34.74520322538702], [-77.43716438812943, 34.74517402141858], [-77.43675847453466, 34.744881156483146], [-77.43661001192336, 34.74451248387463], [-77.43630613530124, 34.74422846256112], [-77.43630076660055, 34.74418198825241], [-77.43627076630342, 34.743761202364], [-77.43605673351992, 34.743537689008306], [-77.43589771061983, 34.74342405721113], [-77.43571955899974, 34.74341988290383], [-77.43535738845986, 34.74336689436615], [-77.4352734999112, 34.743365242383625], [-77.4349992502029, 34.7433988290591], [-77.43465216826289, 34.74329647947232], [-77.43420370923285, 34.74297792040596], [-77.43402677914263, 34.74291170145186], [-77.4337822924513, 34.74274299206816], [-77.43360122531585, 34.74264282339813], [-77.43356831573104, 34.74261029097529], [-77.43349076763698, 34.74256110823342], [-77.43316574717838, 34.742378084278236], [-77.43299870711411, 34.74236285121323], [-77.4328842500848, 34.742318121001304], [-77.43232728498262, 34.74246715068917], [-77.43199278187045, 34.74235741063023], [-77.43179152724181, 34.74260641140853], [-77.43125196467153, 34.74264279207786], [-77.43096563815328, 34.74274067709252], [-77.4308198578486, 34.74282592246417], [-77.43069078626924, 34.743221628900365], [-77.43069343862038, 34.743340797372966], [-77.43067846479921, 34.74341559425075], [-77.4306602317605, 34.74379567364134], [-77.43068162326503, 34.7438957200427], [-77.43092266045677, 34.74420651889771], [-77.43089508335198, 34.74430313194141], [-77.43091792311627, 34.74453734308206], [-77.4307247468984, 34.74468036508787], [-77.43068766813997, 34.74471209037867], [-77.43066253434982, 34.744727626547494], [-77.430350706619, 34.74486487289449], [-77.43031964465659, 34.744858693955244], [-77.43031462446918, 34.74488557942908], [-77.43005432268936, 34.7450150955429], [-77.42998387523195, 34.74504952850111], [-77.42998008859867, 34.74505180161875], [-77.42979594219443, 34.74526338292373], [-77.42971512072019, 34.74536675366423], [-77.42962428881098, 34.745482926959866], [-77.42952878589011, 34.74568068184624], [-77.42955621623253, 34.7457386662226], [-77.42975595269276, 34.74603232125476], [-77.42995204522319, 34.746241938884545], [-77.43022386858233, 34.74619780536512], [-77.43040041119946, 34.746209911488606], [-77.43059914397327, 34.746221787103075], [-77.43072844021043, 34.74627424141056], [-77.43119169488496, 34.74632625835269], [-77.43120179999323, 34.74635515101235], [-77.43126858536363, 34.746337024183056], [-77.43171941604606, 34.746397427531264], [-77.43229967418081, 34.746310502210775], [-77.4323531651981, 34.74680824621642], [-77.43290280048976, 34.746834880278556], [-77.43300566741576, 34.746908809746486], [-77.43307084310487, 34.74696675587008], [-77.43337022488623, 34.74720314085225], [-77.43350621782804, 34.747255547376525], [-77.43365322132772, 34.74731285388506], [-77.43382649452046, 34.747459216503174], [-77.433804939363, 34.747502769215764], [-77.43378964121462, 34.74753567361703], [-77.43377697303019, 34.74763275858493], [-77.43371374481433, 34.747646296871515], [-77.43360918619305, 34.747614794475005], [-77.43345338758095, 34.74761484807379], [-77.43342794925626, 34.74752593948565], [-77.43330187139682, 34.74748670945653], [-77.43305239437132, 34.74733571426972], [-77.43294524651938, 34.74697815795068], [-77.43243028174697, 34.74730198563762], [-77.43227218046249, 34.7473003230577], [-77.4322082161141, 34.74730897490154], [-77.43129528382562, 34.74762222310632], [-77.43080670280617, 34.74771993698255], [-77.43073780992756, 34.747785092810005], [-77.43072112156106, 34.74782287749127], [-77.43071437775872, 34.74786451894113], [-77.43051164817831, 34.748163443347366], [-77.43040083082775, 34.7482700117358], [-77.43031550422563, 34.74830908663707], [-77.4302055014347, 34.74820175909339], [-77.4300802244479, 34.74812901643597], [-77.4300532786439, 34.74810731505271], [-77.43002427211239, 34.74799867005842], [-77.43001236500595, 34.74793412487478], [-77.42999364122392, 34.7478482036571], [-77.43004412373665, 34.74769768406826], [-77.43003878340986, 34.74758445128006], [-77.42986932059605, 34.74732420287924], [-77.42971441534937, 34.747062746165476], [-77.42959802998831, 34.74699096539179], [-77.42917956145189, 34.74673527822241], [-77.4291701578388, 34.746727654009234], [-77.42916427282054, 34.74672549012482], [-77.42914081919568, 34.74671161774422], [-77.42906312875526, 34.746545080545495], [-77.42898732927122, 34.74635290259585], [-77.42916593340169, 34.746161338657046], [-77.42903633105834, 34.74588607780145], [-77.4290322303026, 34.74574680680822], [-77.42903125533846, 34.74555522113026], [-77.42906253740718, 34.7454287604234], [-77.42908388170343, 34.74508338282541], [-77.42911099073474, 34.745024029285474], [-77.42914569000614, 34.74494769148623], [-77.42930727066727, 34.74470050668018], [-77.42938452973952, 34.74456056243886], [-77.429459554259, 34.744370394045035], [-77.4294379994212, 34.74429972050627], [-77.42927929588325, 34.74413571056797], [-77.42911464033128, 34.74406786771975], [-77.42887563969163, 34.7439953981953], [-77.42866835316306, 34.744031023582295], [-77.4284181165355, 34.74399578709385], [-77.42804525061332, 34.74396833849931], [-77.4279675701218, 34.74365352379553], [-77.42767880519776, 34.74353583227722], [-77.42754939314364, 34.74346616341087], [-77.4274397991794, 34.74342726212837], [-77.427108179941, 34.7433514405319], [-77.42695336601378, 34.74330997486999], [-77.42677728187479, 34.7432571981388], [-77.42665606077558, 34.743229436397456], [-77.42655474249004, 34.74319512218392], [-77.42636368485239, 34.74313187362247], [-77.4261687681697, 34.743064608453366], [-77.42597752929211, 34.74299995447447], [-77.4257687523467, 34.742971913909074], [-77.42547336212931, 34.74290825617346], [-77.42546728431616, 34.74290575694964], [-77.42545960109102, 34.74290163823004], [-77.42518247688038, 34.74278206101499], [-77.42489114295093, 34.74272076198463], [-77.42477342485334, 34.74275379025478], [-77.42453243334892, 34.74281243564699], [-77.42447254045081, 34.742784716038486], [-77.42436305612172, 34.74270174613763], [-77.42437364993249, 34.74262314707872], [-77.42441361595262, 34.742543802604786], [-77.42442798048495, 34.74245148059384], [-77.42447723692857, 34.74228650431229], [-77.42453598963093, 34.74214050821463], [-77.42453402490392, 34.74196087699958], [-77.42439764968859, 34.74169961958326], [-77.42434257941744, 34.74159434258984], [-77.42426345674407, 34.74152682233363], [-77.42408256074485, 34.74139967579939], [-77.42370434989428, 34.74124318413311], [-77.42332983925465, 34.74112395232548], [-77.42318662205436, 34.74081666167501], [-77.42309053569541, 34.74068368571974], [-77.4228636801254, 34.74042561210241], [-77.42273300317757, 34.74016876740283], [-77.42247881188167, 34.740275087281674], [-77.4215158297571, 34.740094970960335], [-77.42147432516343, 34.74008662496047], [-77.42144982218086, 34.740089573219], [-77.4213807812298, 34.740086059075786], [-77.42082110302096, 34.740128017443865], [-77.42056009345919, 34.73979918421631], [-77.42053137011473, 34.73961277654702], [-77.42060136283484, 34.739451100926104], [-77.4207207594089, 34.73929626768411], [-77.42092162408915, 34.73922648797085], [-77.4210796126749, 34.739235378605585], [-77.42136153137767, 34.7391973836577], [-77.42164297514657, 34.739059556095015], [-77.42172540050046, 34.73904403056738], [-77.42178722630914, 34.739006137125656], [-77.42225037700139, 34.73871279753622], [-77.42221366942607, 34.73834603515185], [-77.42246949737805, 34.73823031475867], [-77.42239236860767, 34.73794392927701], [-77.42210752549347, 34.737900076022335], [-77.42165639860207, 34.737387019328125], [-77.4216942601862, 34.737342329542585], [-77.42212825249948, 34.73699288273752], [-77.42220282206694, 34.73683248725051], [-77.42241131844115, 34.73615053429059], [-77.42241375155842, 34.735974530898424], [-77.4223924142451, 34.7356464665117], [-77.42281803741268, 34.73544642859166], [-77.42304577611677, 34.73521827982154], [-77.42313795392897, 34.73510953418051], [-77.42341068670886, 34.73506665856763], [-77.42356870061666, 34.73506837767502], [-77.42393718769668, 34.735179076866544], [-77.42403104435608, 34.73486264426533], [-77.42418140086633, 34.734830237248666], [-77.42430067456706, 34.73475484296417], [-77.42454899852409, 34.734683008921536], [-77.4249388225409, 34.73462088431515], [-77.42498378670676, 34.734610044047905], [-77.42505117126962, 34.73460314251954], [-77.42550761783718, 34.73475362155145], [-77.42556896011179, 34.73480350197019], [-77.42562502927557, 34.734810168209364], [-77.42565705586904, 34.734871933439756], [-77.42571373346895, 34.735090401411625], [-77.42583735064868, 34.735494018184546], [-77.42583829274761, 34.73561397590059], [-77.42583441610944, 34.7357725257368], [-77.42591284114667, 34.73583037375432], [-77.42606163932467, 34.73585194607817], [-77.42618808453149, 34.7358654531898], [-77.42622098620961, 34.73587338024197], [-77.4262894596317, 34.73587217569837], [-77.42654724804845, 34.73585381126441], [-77.42663847739792, 34.73585349533762], [-77.42708725514856, 34.73598579430517], [-77.42714182439448, 34.73601482476068], [-77.42722292686193, 34.73606056533026], [-77.42767136431219, 34.73640048822179], [-77.42789005806779, 34.736543703748424], [-77.42807636372741, 34.736707104163074], [-77.42822234835782, 34.73671209428324], [-77.42837159905817, 34.736659303071285], [-77.42850895829802, 34.73666605473517], [-77.42848647965201, 34.73641992417183], [-77.4285120390688, 34.73628426510193], [-77.42850533098579, 34.7361469833015], [-77.42843253701528, 34.735986049834295], [-77.42839882705044, 34.735885103156015], [-77.42837095647795, 34.735820489808376], [-77.42830639133784, 34.73570046755713], [-77.42822986095872, 34.735578728713], [-77.42818128027419, 34.735529461514254], [-77.42813274052568, 34.73545770252446], [-77.42807748626831, 34.73534956393456], [-77.42804252866217, 34.735156174485276], [-77.42804677028178, 34.7351481253411], [-77.42804420424703, 34.735140254412656], [-77.42809177038589, 34.7349483192293], [-77.42817122962389, 34.73464088489805], [-77.42817070831236, 34.734632382706124], [-77.42815572258445, 34.7345932901841], [-77.42803406332743, 34.73425171585259], [-77.4279340551497, 34.733990608627465], [-77.42791736602462, 34.73385400867497], [-77.42781102502227, 34.73370329106758], [-77.42760852642587, 34.73331776894215], [-77.4275058041269, 34.733132914650845], [-77.42755881762304, 34.733020864001276], [-77.42756562300069, 34.7328813087572], [-77.42757217700589, 34.73274600242366], [-77.4275696772085, 34.73265988850543], [-77.42753826863537, 34.732454619625855], [-77.42753553179683, 34.732440153058846], [-77.42746489133275, 34.73225721450048], [-77.42736155108784, 34.73211332055452], [-77.42732553384499, 34.73205816970687], [-77.42722447366839, 34.73191111655721], [-77.42709371925112, 34.73175155242334], [-77.42708627621465, 34.73174557140767], [-77.42708482412257, 34.73173706403104], [-77.42697593346854, 34.73156840702374], [-77.42666959630498, 34.73141725108158], [-77.4265748373654, 34.73132918564328], [-77.42644963748114, 34.73134155604603], [-77.42606193217966, 34.731172186833334], [-77.42602248120384, 34.731365731999425], [-77.42592414536362, 34.73136211602093], [-77.4256520684041, 34.73125032589887], [-77.42530189242606, 34.73139338387157], [-77.42528481634707, 34.73139809388338], [-77.42527150636609, 34.73140176506233], [-77.4249181192825, 34.731546769913145], [-77.42490405413449, 34.73156365530981], [-77.42473934952639, 34.73162859033481], [-77.42471765842863, 34.73174823081735], [-77.42468488383851, 34.73176701711787], [-77.42460656123376, 34.73177553874856], [-77.42458482377863, 34.731750027181945], [-77.42454526801671, 34.73169560814813], [-77.4245362793764, 34.73169325904831], [-77.42452810208515, 34.73168196977604], [-77.42453569883585, 34.73166975413311], [-77.42455821505308, 34.73165089119379], [-77.42468609564176, 34.73154157053206], [-77.42478199027975, 34.731491183546524], [-77.42485794517097, 34.73144844217619], [-77.42511207796552, 34.731327033052494], [-77.42520853001383, 34.73127343821026], [-77.42532990810136, 34.73120004741448], [-77.42555431755011, 34.731090597970905], [-77.42568822559696, 34.73096935938578], [-77.4254791698786, 34.730684499535734], [-77.42531731410091, 34.73047472825267], [-77.42541146537435, 34.730313548798854], [-77.4253765164923, 34.73005219360252], [-77.42536591713717, 34.73000807745835], [-77.42515323833983, 34.72966421446321], [-77.4251477963266, 34.72965268075029], [-77.42513954072535, 34.72964304481113], [-77.42509453370349, 34.72959141283153], [-77.424647336779, 34.729128605066265], [-77.42433929117814, 34.729097163042155], [-77.42401756214004, 34.72908933392068], [-77.42386129936601, 34.729071938568154], [-77.42355936890411, 34.728976098038984], [-77.42343241282755, 34.728895936309875], [-77.42312190215421, 34.72871219058755], [-77.42288345280122, 34.72857755855581], [-77.42261284819276, 34.72821707403157], [-77.42258487994758, 34.72804343458472], [-77.42251402896969, 34.727639141629496], [-77.42251322128844, 34.72762695117149], [-77.42195620976865, 34.72745445939685], [-77.42192580864327, 34.72745638864668], [-77.42180128759983, 34.72747752224302], [-77.42158716744045, 34.72751880327916], [-77.4215443980718, 34.72752937846439], [-77.42139929374694, 34.72751327373964], [-77.42126955375073, 34.7275085972096], [-77.42121255113106, 34.72744798645818], [-77.4211232770437, 34.727313941394506], [-77.42100406138562, 34.72709555495924], [-77.42099486693013, 34.72692112915544], [-77.42062461650377, 34.72677411685657], [-77.42024331658276, 34.726624404145866], [-77.41989734780557, 34.72648614557019], [-77.41967620704594, 34.7263687807487], [-77.41932068975416, 34.72613894344571], [-77.41914154566177, 34.72600111505564], [-77.41906787184007, 34.72593936481114], [-77.41880091527298, 34.72576618550472], [-77.41865598252119, 34.725664785473924], [-77.41861545670457, 34.72560386115072], [-77.41815441234176, 34.72542760782006], [-77.41830980109305, 34.725035381022096], [-77.4182480806295, 34.72494217888487], [-77.41820529318682, 34.724806322359896], [-77.4181698549636, 34.72452844042381], [-77.41795947537454, 34.72435379888073], [-77.41783877554774, 34.724220158874985], [-77.41777843668058, 34.72406645229811], [-77.41736241567824, 34.72397246765243], [-77.41754384902208, 34.72364937998704], [-77.4175162846774, 34.723461933178584], [-77.4173340321945, 34.723387201119074], [-77.417146202447, 34.72316991899564], [-77.41708450570101, 34.723141935092826], [-77.41688151606822, 34.72290015170088], [-77.41684560728244, 34.72285997498675], [-77.41683362491125, 34.722841943584136], [-77.4166983066518, 34.72246399630911], [-77.41649901371403, 34.72216584332086], [-77.41649954311512, 34.72184120809314], [-77.41649538117984, 34.72165590867125], [-77.41647714642416, 34.72159910265679], [-77.41651524404605, 34.72155343709073], [-77.41668434996897, 34.7211124658367], [-77.41668320982205, 34.72107998373221], [-77.41661542166715, 34.720713123998905], [-77.41652019074303, 34.72049596706164], [-77.41659337016469, 34.720185115056296], [-77.4167637794263, 34.72002205427188], [-77.41676234362673, 34.719759126082856], [-77.41686171339987, 34.71949720766087], [-77.41684135019389, 34.71927981467093], [-77.41688436268679, 34.71922558174873], [-77.41676495314874, 34.71896956761581], [-77.41674163974437, 34.718896125381605], [-77.41672636963776, 34.718881410052454], [-77.41671836044037, 34.71887194477652], [-77.416515522705, 34.71853750547567], [-77.41651070728645, 34.71852499763414], [-77.41642723658715, 34.71841751202843], [-77.41626703254198, 34.71821672828201], [-77.4161455570642, 34.71823093263007], [-77.41562490289296, 34.71822036212369], [-77.41536766373355, 34.71818147104358], [-77.4150019801194, 34.718157674470774], [-77.41492030082709, 34.7181981878819], [-77.41483043599385, 34.71822776181911], [-77.41449676916343, 34.7182538604561], [-77.41430670271056, 34.718344806197564], [-77.41395975375492, 34.71848236454088], [-77.41379936517463, 34.7186098654705], [-77.41353577475516, 34.7188931896318], [-77.41346630661961, 34.719032956842376], [-77.41332536316693, 34.71933109629519], [-77.41330805782962, 34.71937265304631], [-77.41328192483391, 34.71942522768622], [-77.41311187250636, 34.71973014959583], [-77.41300213943559, 34.719824767317974], [-77.41303386951884, 34.719975028711744], [-77.41292446778782, 34.720171851001965], [-77.41284025743943, 34.72032725647978], [-77.41271284110245, 34.720555260102486], [-77.41270921821769, 34.72056098037616], [-77.4127075547537, 34.72056531580107], [-77.41257743586182, 34.720794443975414], [-77.41252123380136, 34.72100879285438], [-77.41238184247668, 34.72128514400569], [-77.41230721492781, 34.721406995707504], [-77.41224107720734, 34.72151546718745], [-77.41210567095091, 34.72170116661427], [-77.41208448323623, 34.721740254436945], [-77.4120636380793, 34.72175687952023], [-77.41202326863677, 34.72180157375646], [-77.41179257760425, 34.72206183562294], [-77.41170115904498, 34.722165300572364], [-77.41155357588256, 34.72231642132316], [-77.41151509855543, 34.72235630205414], [-77.41149438716354, 34.72237253942599], [-77.41140620720981, 34.722439200993456], [-77.41124719231814, 34.72256564088544], [-77.4111386995214, 34.72264201620189], [-77.41088561842162, 34.72282341249735], [-77.41071410847508, 34.72293831098968], [-77.41034568633866, 34.72316634576953], [-77.41021461692033, 34.72322265175332], [-77.41013772711955, 34.7232958383896], [-77.4099370378654, 34.723470408650556], [-77.40991385817256, 34.72347907187351], [-77.40990381127635, 34.72351204177408], [-77.40974296912891, 34.723716885784306], [-77.40967047583663, 34.723829294853516], [-77.40959211068154, 34.723943680218625], [-77.40946381404005, 34.72414185889553], [-77.40944757655815, 34.72417268636467], [-77.40938235751571, 34.72427852997699], [-77.40919946173786, 34.7245554997469], [-77.4091432964677, 34.72462537874786], [-77.40910557376687, 34.72473758157358], [-77.40902399370714, 34.7250167604781], [-77.40894597394507, 34.72511547900577], [-77.40879291485689, 34.72538710820879], [-77.40872114339189, 34.72559595926745], [-77.40858735623219, 34.72584634988213], [-77.40847017296971, 34.7260672979133], [-77.408436521466, 34.7263007220974], [-77.40836008016109, 34.726587907835], [-77.40832134228852, 34.7268499553664], [-77.40832346404568, 34.72686402627211], [-77.40834114811442, 34.727140400957964], [-77.4082119356031, 34.727211892681375], [-77.40812768833966, 34.72729210139549], [-77.40804534508803, 34.72731650412223], [-77.40782152300724, 34.72745291486885], [-77.40776551117835, 34.7274481418979], [-77.40768219646382, 34.727469053221455], [-77.4074074280019, 34.72761087690066], [-77.40714933678774, 34.72755998473802], [-77.40697628855294, 34.72765417649055], [-77.40657066468795, 34.72757988887985], [-77.40650334003558, 34.72757665984518], [-77.40646546484501, 34.72756720181395], [-77.40641922136497, 34.727586446168594], [-77.40580625474696, 34.72776964133727], [-77.40570087578875, 34.72781350972615], [-77.4056523021764, 34.727877330090415], [-77.40543017461118, 34.72796116011614], [-77.40533561304932, 34.72796451056917], [-77.40508191630651, 34.72805665798772], [-77.4049269400023, 34.72804453875105], [-77.40484342535792, 34.728153535532414], [-77.4043621422001, 34.72850066463246], [-77.40431642578126, 34.72852833136977], [-77.40431076089405, 34.72853349758507], [-77.4042987398283, 34.7285466951518], [-77.40404628112756, 34.72884927934138], [-77.4039534781557, 34.72896050729422], [-77.40379921233992, 34.72918168655168], [-77.40379550155725, 34.729187463816906], [-77.40358128172457, 34.72938944836515], [-77.40334041823462, 34.72964106708431], [-77.40316048599027, 34.729645642424394], [-77.40305569702738, 34.72993798525293], [-77.40302728837491, 34.73031392763487], [-77.40326073640533, 34.73074517452643], [-77.40335234384492, 34.73098675095228], [-77.40341670636364, 34.731126487655494], [-77.40349745491591, 34.73131172850873], [-77.40359247684071, 34.73149954566823], [-77.40366552596572, 34.73165541609197], [-77.40374363456782, 34.73209545333937], [-77.40374525721417, 34.73224242901448], [-77.40374917530272, 34.732326890595644], [-77.40362896347935, 34.732656176960695], [-77.4034665535618, 34.732704075143715], [-77.40324617299149, 34.732778556256584], [-77.4029130776909, 34.73332815920699], [-77.40254159456279, 34.73312305327195], [-77.40272899280303, 34.73356435883109], [-77.40217830112417, 34.73365097610137], [-77.40198321576992, 34.73370658395724], [-77.40170641605093, 34.73362478670456], [-77.4015528491814, 34.733596569146556], [-77.40145205038739, 34.7335863870065], [-77.40121843598706, 34.73359514204055], [-77.4009991870167, 34.73359420638331], [-77.40090088871116, 34.73363361927792], [-77.40045656062293, 34.73388778617432], [-77.40034000187718, 34.73401293658079], [-77.4002601651558, 34.73409865755124], [-77.40009204652377, 34.734211914071366], [-77.40003194735883, 34.734257519273925], [-77.39988630059696, 34.734247452618995], [-77.39976038462684, 34.734250027737694], [-77.39950438809862, 34.73414321184951], [-77.39947395065725, 34.734132105799844], [-77.39943470772104, 34.73412540341242], [-77.39900619170594, 34.733533653924674], [-77.39849276595454, 34.73362537831113], [-77.3983295750078, 34.73365574559063], [-77.39829662138933, 34.733664993154484], [-77.39826110202519, 34.73367896584201], [-77.3981075918205, 34.73378592658778], [-77.39771704839902, 34.734047791666434], [-77.39751590638939, 34.734250605055195], [-77.39687897185864, 34.734340148500586], [-77.39616280843171, 34.73462238198461], [-77.39612512663395, 34.73462421551859], [-77.3960788596439, 34.7346315137173], [-77.3960875139975, 34.73459604252297], [-77.39610928815998, 34.734578222001595], [-77.3961027274722, 34.734042219599985], [-77.39589148220686, 34.733816972747476], [-77.39601277872434, 34.73367210358565], [-77.39626625564603, 34.73354028117248], [-77.39634779441951, 34.73347159908844], [-77.39652535293197, 34.733243646948154], [-77.39670635545008, 34.733135094548956], [-77.39696310147968, 34.73298111581262], [-77.39722320179911, 34.73304832298979], [-77.39741838269286, 34.73297726772082], [-77.39784902636909, 34.732975678742626], [-77.39787543082241, 34.73297630785435], [-77.39788526415383, 34.73297643806958], [-77.3979310291695, 34.7329668747955], [-77.39855138314948, 34.73289054884068], [-77.3986945746776, 34.73281912822658], [-77.39886795373937, 34.7327729677449], [-77.39925106233463, 34.73268887021183], [-77.39958177677501, 34.73277322613265], [-77.40040765169766, 34.73282718871267], [-77.40048766294156, 34.73284700418294], [-77.40061014850626, 34.73295813453333], [-77.4007336149446, 34.732866429145076], [-77.40112024152222, 34.73287680780623], [-77.40146404544417, 34.73285776727947], [-77.40179272870657, 34.73276891139504], [-77.40186219266722, 34.732760496062085], [-77.40220845735628, 34.73282316494334], [-77.40228009855211, 34.73269552672983], [-77.40234015277113, 34.73231009814563], [-77.40215403559858, 34.732099197045294], [-77.40229203343145, 34.73121860368463], [-77.40229967536767, 34.73117768407109], [-77.40229239887812, 34.7311488543953], [-77.40227022423804, 34.7311213606224], [-77.40223805100672, 34.73113034418625], [-77.402207135641, 34.73114531551355], [-77.4013333483826, 34.73114761554346], [-77.40100155951696, 34.73107395556364], [-77.40041092510515, 34.73107615548902], [-77.40037519109187, 34.73107748374665], [-77.40036059142128, 34.731073144061284], [-77.4003474477985, 34.73106697254093], [-77.39976237702521, 34.73092482381164], [-77.39936726362228, 34.730925960247774], [-77.39911304756833, 34.73095285405723], [-77.39866470758926, 34.73102445611097], [-77.39852113765589, 34.73103899241936], [-77.39844438163989, 34.73104758791411], [-77.39821990184781, 34.731061170962796], [-77.39780075181281, 34.73105594245757], [-77.3976402702144, 34.73109521462882], [-77.39740573994317, 34.73114318518039], [-77.39710674386377, 34.731238081293284], [-77.39679503217576, 34.73120969237246], [-77.3958604895663, 34.731151976391985], [-77.39585126719575, 34.731145123881724], [-77.39581232061857, 34.73114489906725], [-77.39481741968551, 34.730969102281605], [-77.39461089006095, 34.73100007645954], [-77.39438209569026, 34.73100556018883], [-77.39428217301219, 34.731028049925655], [-77.39421840535942, 34.73094375986935], [-77.39405398263007, 34.73070928227133], [-77.39389835986563, 34.73047529691892], [-77.39377116455663, 34.73023753443171], [-77.39357622561977, 34.73014549429789], [-77.39337460705339, 34.73010633539637], [-77.39298537238761, 34.72997181034246], [-77.39261054801153, 34.72982863380213], [-77.39241975051108, 34.729711105665515], [-77.39221924690771, 34.72971360780798], [-77.39178132998994, 34.72970149059303], [-77.39171607203056, 34.72971176970795], [-77.39130223821864, 34.72971066536243], [-77.3911040670286, 34.72982582842343], [-77.39050874510053, 34.729909724312805], [-77.39028467707317, 34.72990535954954], [-77.38979038282974, 34.72993362898551], [-77.38963027584023, 34.729969805514344], [-77.38924988486093, 34.729890302270086], [-77.38917494623789, 34.72984473046479], [-77.38910566929819, 34.72986021650343], [-77.388809536275, 34.72981309159898], [-77.38859754333535, 34.729777577687834], [-77.38855580655397, 34.72976860246863], [-77.38849406162898, 34.72975897958111], [-77.38824975711786, 34.72971839873944], [-77.38800677707624, 34.72955977083605], [-77.38797830851718, 34.72954887979614], [-77.38795569420517, 34.72951431575791], [-77.38792298758746, 34.729422725591675], [-77.38784285437313, 34.72919524648168], [-77.38782225238668, 34.729146339287745], [-77.38762366150887, 34.72883896042954], [-77.38756191500414, 34.72877362931161], [-77.38733957454511, 34.728739548864766], [-77.38700603577645, 34.728671388747124], [-77.38694666482408, 34.72868411188702], [-77.38666393456394, 34.72878270238347], [-77.3866263055652, 34.72879873849953], [-77.38630456388567, 34.72893652896121], [-77.38627742187789, 34.728976543293264], [-77.38620188315714, 34.72904123389327], [-77.38597330589401, 34.72922757564821], [-77.38569763048758, 34.72928330753531], [-77.38558333426083, 34.729338176902395], [-77.38484787157734, 34.729493213202375], [-77.38478703464567, 34.72949779188861], [-77.38476112674938, 34.72949025080347], [-77.38462265341006, 34.729466290831375], [-77.3839560079698, 34.72967027588942], [-77.38355327937225, 34.72932992759516], [-77.38352037006823, 34.72915378487286], [-77.38353499670588, 34.72908565122513], [-77.38302277963753, 34.72846853757247], [-77.38289706800077, 34.728303212549406], [-77.38275305057012, 34.72813463758787], [-77.38265152926424, 34.72801746493211], [-77.38243774468353, 34.72781972797081], [-77.38180322527747, 34.7273611986048], [-77.38170286882983, 34.72723335510266], [-77.38162176435098, 34.72714642203866], [-77.38151398202622, 34.72717258930742], [-77.38138114008964, 34.727213470084905], [-77.38068373274884, 34.7273114580929], [-77.38044989488849, 34.72744671794938], [-77.38021844730828, 34.72756318669731], [-77.3800049606138, 34.7276981383411], [-77.37980289291326, 34.727779449131845], [-77.37967566054047, 34.72790798074311], [-77.37958284434046, 34.727982024375805], [-77.37943402136625, 34.72805685261716], [-77.3792968925475, 34.728036897051716], [-77.37889856788195, 34.728022111471034], [-77.37880528263877, 34.72801382891009], [-77.37840704647999, 34.728078271653516], [-77.37803766605796, 34.72827996666363], [-77.37774310545248, 34.72848923110662], [-77.37727184657197, 34.72887894409522], [-77.37708613133015, 34.72891159461989], [-77.37697753647583, 34.729027279943566], [-77.37659968340347, 34.72935957855734], [-77.3770430239486, 34.72966763004987], [-77.3774745809114, 34.729887643596065], [-77.37804987874253, 34.73052101649135], [-77.37677270149167, 34.73059933710334], [-77.37627366655191, 34.73057679972349], [-77.37549707797797, 34.730575662960405], [-77.37455006017896, 34.730751366434006], [-77.37411624198506, 34.73091457692798], [-77.37377642673684, 34.7309829073086], [-77.37348899959717, 34.73116133901429], [-77.37340461578785, 34.731157096315265], [-77.37336516096802, 34.73111798844238], [-77.3732965517173, 34.73073565136715], [-77.3729347090276, 34.730566625641515], [-77.3726688585879, 34.730668070926555], [-77.37211160248587, 34.73067915923425], [-77.37169878335429, 34.73057818725385], [-77.37164436261294, 34.730593651474244], [-77.37141614780046, 34.73062642126757], [-77.37077605653673, 34.730565762406485], [-77.37039486027759, 34.730479919844115], [-77.36987911039478, 34.7305935525206], [-77.36963809334924, 34.73062743742955], [-77.36918482801087, 34.7305225167389], [-77.36879759818592, 34.73063727695044], [-77.36800750302388, 34.73045777382], [-77.36800638482968, 34.73045760884815], [-77.36800602004114, 34.73045751698288], [-77.36800518529897, 34.7304573806438], [-77.3680040564368, 34.73045824733253], [-77.36703043706375, 34.73087027695954], [-77.36669374067344, 34.73085233042349], [-77.36632995576352, 34.73095908938077], [-77.36605890228046, 34.73097633280592], [-77.36583806366025, 34.7310904078934], [-77.36560831544416, 34.731120118463906], [-77.36540771608563, 34.73115664150865], [-77.36515931299232, 34.7311273364911], [-77.36509822883083, 34.731118360826265], [-77.36483669516147, 34.731060783546695], [-77.36433299928564, 34.73103354898045], [-77.36424678234889, 34.73103000472332], [-77.36410270126275, 34.731095874188135], [-77.36318471309234, 34.731292716454355], [-77.36290583061387, 34.73152343803148], [-77.3620033486001, 34.73225727992185], [-77.36167693343168, 34.73250979445735], [-77.3614538362881, 34.732820133377245], [-77.36129098616003, 34.732960153791154], [-77.36088961572166, 34.73308872980854], [-77.3602727882892, 34.73346970371027], [-77.36002795422928, 34.733601812607404], [-77.35987486933189, 34.73434871463434], [-77.35989095877531, 34.734496907273716], [-77.36011891419503, 34.734949417230645], [-77.3601226682597, 34.73496210719091], [-77.35974375724903, 34.73549189138015], [-77.35957408215941, 34.73575253986969], [-77.35925031774829, 34.73586312571457], [-77.35871963670368, 34.73627203968907], [-77.35847879332067, 34.73645761777856], [-77.35829618322123, 34.736665420904764], [-77.35791012758705, 34.736831349501195], [-77.35779478611285, 34.73697795270126], [-77.35769018048624, 34.737110909979506], [-77.35752219917357, 34.73712591155384], [-77.35735629865778, 34.737074723721726], [-77.35713323287371, 34.73696643749556], [-77.35691453681679, 34.73685510835752], [-77.35687793717537, 34.736654279467245], [-77.35661894597564, 34.7366750727675], [-77.3561290053189, 34.73652993336019], [-77.35606809533618, 34.73650961820531], [-77.3560480430215, 34.73650426253518], [-77.35600994876171, 34.73649190770657], [-77.35552064405088, 34.7363324623561], [-77.35495509514361, 34.73663671080903], [-77.3548709489245, 34.7366918745017], [-77.3543882818027, 34.73720189699387], [-77.3538172346649, 34.73807323948408], [-77.35366144077912, 34.738173298022716], [-77.3531585581737, 34.73827898041438], [-77.3530449571343, 34.73826538500539], [-77.35299065961917, 34.73836849606292], [-77.35309470046818, 34.73838186338332], [-77.35311896035569, 34.73841530708983], [-77.35360365129017, 34.738384579060344], [-77.35370245531907, 34.738468410736694], [-77.35447273526015, 34.739139836330565], [-77.3544830623493, 34.739284953651854], [-77.35466858652298, 34.73926617843323], [-77.3549420431883, 34.73956280112008], [-77.35506721847483, 34.739624030530535], [-77.3550150296968, 34.74001066698503], [-77.35498790264036, 34.74004388958859], [-77.35486268202776, 34.74051393653904], [-77.35484269681199, 34.74058515791896], [-77.35489723903272, 34.74103109914671], [-77.355233951972, 34.74144385456014], [-77.35538179822312, 34.741747318016024], [-77.3557279678001, 34.74189183469288], [-77.3559592794671, 34.74209154194577], [-77.35600423964001, 34.74234129575571], [-77.35578287077429, 34.742605534308176], [-77.3557702348747, 34.742631173095276], [-77.35556286582157, 34.74288926609081], [-77.35528153547885, 34.74340129424021], [-77.3552770992535, 34.743415875386425], [-77.35528516558676, 34.743441102700025], [-77.3552480900563, 34.74345732775626], [-77.35468840862193, 34.74398406215043], [-77.35455938230493, 34.74407464009718], [-77.35436527843368, 34.74443459460544], [-77.35398851900665, 34.74505488968129], [-77.35409882498719, 34.74535192241152], [-77.35421460589674, 34.74579879210444], [-77.35417925927483, 34.746003475068086], [-77.35423816025681, 34.74634301919107], [-77.35425208226766, 34.74655838623146], [-77.35433545684523, 34.74695680136058], [-77.35431092078922, 34.747301549274006], [-77.35447959339322, 34.74742440221271], [-77.35438586416936, 34.74775031632103], [-77.3539614723943, 34.74788684522761], [-77.35387180758275, 34.74799520297719], [-77.35389550969452, 34.748113927154066], [-77.3542238596264, 34.748156930651625], [-77.35444369015258, 34.74828883650734], [-77.35453885735193, 34.74870307450415], [-77.3547158243266, 34.74885412588252], [-77.3553912067196, 34.74915111352785], [-77.35580077058144, 34.74930933296543], [-77.3559363497697, 34.74933651089272], [-77.35608798856781, 34.74964055318105], [-77.3562632751104, 34.74974202887733], [-77.35637660035482, 34.74988304618861], [-77.35646325273726, 34.75007642648611], [-77.35621648090861, 34.75043431649516], [-77.35609289244645, 34.750538775324024], [-77.35582061733514, 34.75065201969838], [-77.35551128489958, 34.750799918077334], [-77.35509992921581, 34.750935714843614], [-77.35505044624603, 34.75146329080572], [-77.3551191487853, 34.7517230654572], [-77.35562214298628, 34.7524804836739], [-77.3556780578073, 34.752557438205415], [-77.35571860814545, 34.752615554059346], [-77.35653248654111, 34.75347094346659], [-77.35653520824583, 34.75347505049792], [-77.35653675510613, 34.75347802324649], [-77.35654324551435, 34.753490510388], [-77.35677406951831, 34.75393283211026], [-77.35671265688316, 34.75412700611417], [-77.3567776726801, 34.75441972004238], [-77.35698934773714, 34.75470263571723], [-77.35729547388223, 34.754968797187225], [-77.35750565718459, 34.75509397056332], [-77.3577547851852, 34.75526036446356], [-77.35779991775966, 34.7552944562888], [-77.35801562737439, 34.75549018250674], [-77.3579840498517, 34.755716277113564], [-77.35810032823574, 34.75581926154733], [-77.35816269520201, 34.75610787771818], [-77.35816500159497, 34.75616374381633], [-77.35816557455081, 34.756178743608224], [-77.35822757323045, 34.75625864642542], [-77.3583294034746, 34.756825745965514], [-77.3585583413216, 34.75680815700996], [-77.35865533382349, 34.7569692904494], [-77.35880232513186, 34.75699937358183], [-77.35885900676743, 34.757058321886916], [-77.35893752197589, 34.757146477679655], [-77.35900199370418, 34.75726357663106], [-77.35900390174626, 34.75728212348714], [-77.35901385203637, 34.75730234369041], [-77.3590415515508, 34.757460692388534], [-77.3590545326024, 34.75751886521514], [-77.3590455602618, 34.75785183580092], [-77.35909413448667, 34.75800081353135], [-77.35916980295741, 34.758150506254374], [-77.35921533147197, 34.75840979192008], [-77.35922592218132, 34.7584701072554], [-77.35921834410765, 34.7585074004714], [-77.35925298173386, 34.75854156080878], [-77.35943000624643, 34.75892947539883], [-77.3593345072733, 34.75920651267154], [-77.35963481959985, 34.75928945375034], [-77.359872016763, 34.75935618063251], [-77.36009693266406, 34.75940857270197], [-77.3601846477182, 34.75945895821007], [-77.36037385481379, 34.75943573387944], [-77.36080349865564, 34.75939080565254], [-77.3614521509693, 34.75915468364752], [-77.36189238750548, 34.75956618605316], [-77.36193314695014, 34.75962655291862], [-77.36201777466596, 34.75966365689089], [-77.36249786502859, 34.76022355279958], [-77.3625145735918, 34.760476391205614], [-77.36234088975823, 34.76081204387816], [-77.3623218620128, 34.7609099242891], [-77.36222318184994, 34.761230417720725], [-77.36222095115548, 34.76132929062451], [-77.36213112802196, 34.76134669417282], [-77.36210175181277, 34.76184679649459], [-77.36203591998499, 34.762200883810834], [-77.36193858192199, 34.762529300758395], [-77.36146719510225, 34.762743145620355], [-77.36135536233692, 34.76307281346193], [-77.36124447099382, 34.76342287696791], [-77.36133765517556, 34.7638162632627], [-77.361589351155, 34.7641718043142], [-77.36182113021988, 34.76443012359047], [-77.36187460546049, 34.764563432767744], [-77.36185744026449, 34.76495270178802], [-77.36177554378186, 34.7650879881071], [-77.36179373557312, 34.765287544526466], [-77.36175982644824, 34.765641715421694], [-77.36186416437202, 34.76584240781157], [-77.36190659456959, 34.766220961401636], [-77.36186716411838, 34.766238511946995], [-77.36191356345871, 34.766320803605254], [-77.36193243023969, 34.76670649354563], [-77.36216612407529, 34.76739429271036], [-77.36213690221052, 34.767451373332015], [-77.3620904522904, 34.76753321523876], [-77.3621557433561, 34.767695903438806], [-77.36230547654677, 34.76762224201545], [-77.36269814472199, 34.76803731312529], [-77.3629788976303, 34.76797501187865], [-77.36305363611791, 34.76802475094354], [-77.36315125260172, 34.7680859929278], [-77.36327725527701, 34.768252332967094], [-77.3633354750458, 34.76835367551969], [-77.36377136717391, 34.768522494938125], [-77.36382759066613, 34.76856644388748], [-77.36385580307675, 34.768583315590064], [-77.36427751395468, 34.76875976254542], [-77.36429439204937, 34.769168211908536], [-77.36452639746102, 34.769008717755014], [-77.36462408778318, 34.769137514000924], [-77.36466264759665, 34.76913993180008], [-77.36463055893742, 34.76916292497971], [-77.36463257495713, 34.769182387031215], [-77.3642746624908, 34.76931798561149], [-77.36433496114915, 34.769444348589445], [-77.3641761278034, 34.7695754453961], [-77.3638332770056, 34.769485206038794], [-77.36348547826006, 34.769552403313824], [-77.36303637906333, 34.76908173911715], [-77.36285042771537, 34.76900185557725], [-77.36244343245755, 34.76891434128541], [-77.36223020638906, 34.768996695106246], [-77.36207122287487, 34.76887997974855], [-77.36184172102307, 34.76877712597344], [-77.36174584963737, 34.76871257679513], [-77.36170554656022, 34.768585953630556], [-77.36146340448293, 34.768491180624125], [-77.36132500192127, 34.76834728308811], [-77.3611843219645, 34.7683566795907], [-77.36083971108972, 34.768219746135365], [-77.36073462077935, 34.768171071563245], [-77.3606065489891, 34.76821274024538], [-77.36054182601745, 34.768177887031015], [-77.36045934816964, 34.768014392120875], [-77.36041623161258, 34.76796760012337], [-77.36041402210645, 34.76778483889822], [-77.36041079828365, 34.76751811547788], [-77.36050448911632, 34.767439259352244], [-77.36050533872357, 34.76730057562222], [-77.3605678819205, 34.766902214863286], [-77.36059696002653, 34.76636993293589], [-77.3600733499249, 34.766030132362644], [-77.36005950856074, 34.76566645133827], [-77.36000384948676, 34.76548990016706], [-77.36006395917117, 34.76495318043479], [-77.35982899071846, 34.76480878714617], [-77.35983224538656, 34.76472287936362], [-77.3598778508707, 34.76430785027006], [-77.3598677182646, 34.764230624256584], [-77.35970223418084, 34.76394645804368], [-77.35974645761932, 34.76375988527195], [-77.3596584517196, 34.76368812549757], [-77.35955419681983, 34.76369225140583], [-77.35950368365992, 34.76354952012491], [-77.35946102764684, 34.763445731916974], [-77.35945776181761, 34.76341088418813], [-77.35944118217952, 34.7633144075663], [-77.35944989668248, 34.76325717751319], [-77.35939778971655, 34.763199443881845], [-77.35936873981827, 34.76312247931119], [-77.3593106054386, 34.76296148132022], [-77.35946857820112, 34.7628232613031], [-77.35926037611263, 34.762641249746856], [-77.35925262445336, 34.762423323215216], [-77.35921746183497, 34.76237034849037], [-77.35902709880948, 34.76220254491188], [-77.35893576657654, 34.76199136160844], [-77.35895460499773, 34.76191904710395], [-77.35897580144969, 34.76184776899153], [-77.35891418547888, 34.76177057953259], [-77.35889102376503, 34.76144039009207], [-77.35901156002035, 34.76103181011656], [-77.3587310655283, 34.76097496310202], [-77.35867027500893, 34.76090006530947], [-77.35856834783866, 34.760898719705786], [-77.35850709801728, 34.76076201532553], [-77.35853383076079, 34.760610777515296], [-77.35851500087438, 34.76051723795916], [-77.35816939134637, 34.76020976335946], [-77.35812936874464, 34.760133396256734], [-77.35810462695457, 34.760086185283825], [-77.35799975732566, 34.759886081174976], [-77.35799788859954, 34.759840292865874], [-77.35797667070092, 34.75984202911645], [-77.3579071478644, 34.759804067821094], [-77.35772271692056, 34.75968511202447], [-77.35769716141974, 34.75967735634], [-77.35722594067697, 34.75933296347466], [-77.35705690329894, 34.759381326405105], [-77.35672130514746, 34.75930129392418], [-77.3561669015639, 34.758854145274796], [-77.35595551492688, 34.75865150232508], [-77.35530689029484, 34.75769021758419], [-77.35522214468544, 34.75755752374404], [-77.35516643913029, 34.756104624279956], [-77.35493093049759, 34.75564795569946], [-77.35434025333976, 34.755163191831116], [-77.35442413091651, 34.754742750887004], [-77.35392262031742, 34.7542068257667], [-77.35387141684927, 34.75394692981821], [-77.35390511266641, 34.75383921844817], [-77.35389064816171, 34.75369397552569], [-77.35410138929845, 34.752981641269926], [-77.35372981286851, 34.75288851250047], [-77.35371257882232, 34.75286779171499], [-77.35373241277614, 34.752477000891176], [-77.35334043564269, 34.75208679625461], [-77.35324812672292, 34.75206104562584], [-77.35300977413455, 34.752012563195755], [-77.35283266725976, 34.75159215288153], [-77.35228296968663, 34.75160292182114], [-77.35158261178215, 34.75164960786463], [-77.35105709554387, 34.75169874964277], [-77.34994792090217, 34.75243271398598], [-77.34969539508097, 34.75253092434491], [-77.34958924043868, 34.75262740544293], [-77.34925957753907, 34.752763261060124], [-77.3487239734458, 34.75294694708438], [-77.34858720041852, 34.753280328962596], [-77.3485241950541, 34.753602810716885], [-77.34866032197529, 34.75376276900694], [-77.3487240612262, 34.753963465564425], [-77.34872387507092, 34.75406279499325], [-77.34869324157651, 34.754184261998844], [-77.34868859087071, 34.754192139908916], [-77.34863828916806, 34.75422652036821], [-77.34850088378451, 34.754311487879605], [-77.3484552354082, 34.754343340431625], [-77.34824811399241, 34.75444022720839], [-77.34788040795645, 34.754612230176335], [-77.34782136903758, 34.75458842993752], [-77.347709211598, 34.754601127533476], [-77.34765965860811, 34.75469617430732], [-77.34712954699464, 34.75490770576625], [-77.3467087113795, 34.75499140699217], [-77.34659929730825, 34.75532901390108], [-77.34647695442175, 34.75542439003098], [-77.34633582791004, 34.7556088445626], [-77.34632332883763, 34.755620619040705], [-77.34615327116806, 34.75577594256111], [-77.3459626708621, 34.755889810162174], [-77.34594310323841, 34.75589831116209], [-77.34567647308758, 34.755912788822286], [-77.34564369641416, 34.755897891079876], [-77.3451757345032, 34.75590364369614], [-77.34505468005187, 34.755863335154714], [-77.34493674541274, 34.75597486197392], [-77.34487836469884, 34.756052449096906], [-77.34464112546846, 34.75631471832888], [-77.34436473264753, 34.75674472903001], [-77.34437106345196, 34.75709678292955], [-77.34402645871283, 34.75734001120398], [-77.34393317923346, 34.75715684032661], [-77.34382420876081, 34.7569428568009], [-77.3436058941117, 34.75672582145166], [-77.3435827095407, 34.75671753130171], [-77.34335812689207, 34.756512878116446], [-77.34271011613967, 34.75655555084189], [-77.34245872279311, 34.75655047033083], [-77.34217327666485, 34.7566355551162], [-77.34182200198815, 34.756680012581796], [-77.34156428104987, 34.75681708222964], [-77.34145181170288, 34.75679610430522], [-77.3412488658627, 34.756590788667786], [-77.34123409020893, 34.75656933691861], [-77.34122374171046, 34.75655366263869], [-77.34114172522355, 34.75644273368808], [-77.34110906021125, 34.75587713604722], [-77.34084961558497, 34.75590334171679], [-77.34076515890702, 34.75574738732878], [-77.34060450133461, 34.7557161243781], [-77.34046531222664, 34.75568291422643], [-77.34041045934121, 34.755625939652305], [-77.34034493830623, 34.755578617126936], [-77.33986668297854, 34.75531312584044], [-77.33982256142548, 34.75528962670238], [-77.33932827014038, 34.75495436057282], [-77.33916840254693, 34.754885996179766], [-77.33868283389133, 34.75458926994979], [-77.33831314835794, 34.75432482616257], [-77.33780672860837, 34.754474542539064], [-77.33765535917053, 34.75452685222966], [-77.33757110835276, 34.75455596685291], [-77.3368874767556, 34.75510755771168], [-77.33629466710283, 34.75484873573074], [-77.3349869575292, 34.754819759417614], [-77.33458133592495, 34.754797538012255], [-77.33410706018165, 34.75495396783853], [-77.33391373134049, 34.75503325448451], [-77.3337286965156, 34.75498160720739], [-77.3333689465252, 34.75484654520302], [-77.33314631885705, 34.75473681063724], [-77.33300948454023, 34.75422118514524], [-77.3323250811986, 34.75431596189465], [-77.33166242061075, 34.753965449712325], [-77.33175878410326, 34.753606126404804], [-77.33131959432023, 34.75365343303885], [-77.33073273532369, 34.753118122949566], [-77.33088558080736, 34.752700871404166], [-77.33037710528026, 34.75277430899493], [-77.33023162325692, 34.75241534074176], [-77.33000525983397, 34.75224308169056], [-77.32997744438333, 34.75221661088915], [-77.3299812420073, 34.752075549512064], [-77.32995793536469, 34.75183748136117], [-77.33000959440487, 34.75168603350778], [-77.3305385819445, 34.75119525542193], [-77.33039479011566, 34.75075058363656], [-77.33090458590611, 34.750960338016775], [-77.33099474854288, 34.75104043533423], [-77.33118153013956, 34.75110714052481], [-77.33162028568003, 34.75134780953216], [-77.3319867076853, 34.75135918738349], [-77.33226757326184, 34.75144566303297], [-77.33232512723023, 34.75159421628709], [-77.33275672664422, 34.75186598815343], [-77.33288447719573, 34.751952472921786], [-77.33300947257335, 34.75196220575352], [-77.33335964864347, 34.752101095780255], [-77.33367437974252, 34.75213348474117], [-77.33366716541074, 34.75222856839776], [-77.33405536608704, 34.752485715904214], [-77.33454600861218, 34.752251662163445], [-77.33485994694422, 34.752153759208944], [-77.33498686835266, 34.75191272699152], [-77.33512534495866, 34.75154131308461], [-77.3348911820364, 34.751198005513984], [-77.33500255922334, 34.7510033929867], [-77.33509638097144, 34.7509655528938], [-77.33522086710845, 34.75094453776938], [-77.33563176060089, 34.75118452589082], [-77.33589882911849, 34.751211593082786], [-77.33622607338808, 34.7512007915781], [-77.33628016983118, 34.75131255443667], [-77.3364961205348, 34.75130217464739], [-77.336541909311, 34.7513471180155], [-77.3366507986133, 34.75142174995348], [-77.33673942072309, 34.751495564796826], [-77.33699200471897, 34.75148946798792], [-77.33705583840509, 34.751504488006034], [-77.3372803872995, 34.751695338885945], [-77.33730121653393, 34.75170998079847], [-77.33764707153502, 34.75168297216307], [-77.33784453955823, 34.7518153594185], [-77.33799065679632, 34.751968208876995], [-77.33805856119014, 34.75211392735057], [-77.33824222251732, 34.75250805152628], [-77.33827665484384, 34.75253662649457], [-77.3387066832637, 34.75297104269452], [-77.33880266781073, 34.752920508003164], [-77.3401471444459, 34.75213722372486], [-77.34035359052378, 34.75191453970549], [-77.34085464705637, 34.751730527292324], [-77.34140289929343, 34.75156755850201], [-77.34151375199161, 34.75155739217803], [-77.34159093338937, 34.7515649705023], [-77.34179088770182, 34.75160213635445], [-77.3420717135995, 34.75169870695567], [-77.34226634549319, 34.75169422431614], [-77.3423741583791, 34.75175106948805], [-77.3424117417329, 34.751760678995986], [-77.34259796419474, 34.75194913528617], [-77.34260192059627, 34.75197010677615], [-77.34261035447777, 34.751977127970534], [-77.34260705184585, 34.75236033007468], [-77.34271880905698, 34.752449628463374], [-77.34265040906365, 34.75311532732294], [-77.3434775740878, 34.75304490778676], [-77.34379723279923, 34.753021852510486], [-77.3444680130466, 34.753006439017476], [-77.34476639523663, 34.75273266605224], [-77.34529294368068, 34.75246065318237], [-77.34549319702776, 34.75229300820534], [-77.34547922820528, 34.752516835886546], [-77.34596821191863, 34.75271977884444], [-77.34650942437939, 34.75226173804783], [-77.34662666641088, 34.75191361355893], [-77.34680763347207, 34.751495317699465], [-77.34688710267419, 34.75139050850047], [-77.34691115670643, 34.75134105882463], [-77.3470096832019, 34.75113000344608], [-77.34703552483504, 34.7511082581526], [-77.34725583119305, 34.751096235422175], [-77.34732804167403, 34.751095124422406], [-77.34733747731855, 34.75109985419545], [-77.34735990690118, 34.751100316082514], [-77.34761568423448, 34.751173169617026], [-77.34796130209946, 34.75099479714126], [-77.3479730147838, 34.75099331971931], [-77.34803999146553, 34.75098865643601], [-77.3482564561185, 34.75102947679996], [-77.34847453646081, 34.75092903888112], [-77.34858156555465, 34.75090599126505], [-77.34861687174019, 34.750892368569154], [-77.34887751684934, 34.750953611870806], [-77.34919971336323, 34.750815308724015], [-77.34938076886554, 34.75056101271429], [-77.34964332695736, 34.75037953615382], [-77.34988461693501, 34.750145499776224], [-77.34993045025395, 34.74999821254557], [-77.35004853125955, 34.749791359867146], [-77.35009075117925, 34.749689841920386], [-77.35027984308671, 34.749462891155275], [-77.3503968743276, 34.7493227594768], [-77.350587470921, 34.748933299697455], [-77.3507767137467, 34.74844294319128], [-77.35079179326341, 34.748417882571125], [-77.35079808428817, 34.748401656412966], [-77.35093167760942, 34.74792956508831], [-77.35092379266591, 34.74791238895126], [-77.3508103261839, 34.747628695836724], [-77.3505596441466, 34.74747497688036], [-77.35054611994258, 34.747437697873465], [-77.35050181285722, 34.74742465454425], [-77.35036909185288, 34.747257434024455], [-77.35036531141223, 34.747182558805], [-77.35020091246278, 34.7470368207002], [-77.35005987216265, 34.74688408979737], [-77.34990584811604, 34.74674753453804], [-77.34969508338503, 34.74661884772847], [-77.34957940192263, 34.746476161886456], [-77.3495404530874, 34.74624016541083], [-77.34904702803456, 34.74624689625924], [-77.34899948831927, 34.74622691068122], [-77.34872232404643, 34.746080986293684], [-77.34867003234537, 34.7458781980003], [-77.34877775891897, 34.74576995368095], [-77.34893263814834, 34.74547257243434], [-77.34901623810951, 34.74524985308389], [-77.34897123467421, 34.74510117392099], [-77.34892629601126, 34.74482868448816], [-77.34901937678774, 34.74476204296472], [-77.34922254172011, 34.744452864514834], [-77.34960966574826, 34.74431030774305], [-77.3504803836581, 34.74358680818966], [-77.34993840673067, 34.743178749901816], [-77.3499060001244, 34.742805476385534], [-77.3498009726926, 34.7427052771758], [-77.34976078532009, 34.74237664162651], [-77.34993170758469, 34.74199731642016], [-77.35004255271716, 34.741697367161], [-77.34999210593149, 34.74130504793], [-77.34997509290662, 34.74117556121169], [-77.35017404052753, 34.740704563196104], [-77.34999105588216, 34.74037489540477], [-77.35008809263195, 34.740228978296564], [-77.350121164423, 34.740142858835675], [-77.35015578083033, 34.739732309402264], [-77.35016330820656, 34.73945402059016], [-77.34987017646213, 34.7392902347433], [-77.34986675058889, 34.739284591226514], [-77.34986029081392, 34.739273470017295], [-77.3498319464907, 34.73892050115556], [-77.34973774740175, 34.73881491276704], [-77.3494641362161, 34.738626261761624], [-77.34937237844532, 34.73848559150522], [-77.34899138073838, 34.738191954618664], [-77.3488437927758, 34.73810376839161], [-77.34842643133283, 34.73807500584543], [-77.34837183851084, 34.738027579117706], [-77.34813237314313, 34.73786257143213], [-77.34796031472536, 34.737617874089665], [-77.3479448321534, 34.737598789472365], [-77.34790851003987, 34.73754419816177], [-77.34810232914096, 34.737129054336094], [-77.34812397759966, 34.73709682751812], [-77.34862644726687, 34.73738652964933], [-77.34909436691127, 34.73712266080798], [-77.34932858693084, 34.73703122339417], [-77.34942514648671, 34.73697313227777], [-77.34946589170309, 34.736902697158484], [-77.35011973505262, 34.73636949141887], [-77.35015047806615, 34.73633924140613], [-77.3501635943451, 34.73631957461138], [-77.35016797096218, 34.73629688480487], [-77.3502840187779, 34.736138425735206], [-77.35040902048475, 34.736042204496684], [-77.35048168448064, 34.735994425052425], [-77.3505442860213, 34.73577995148514], [-77.35061721613376, 34.73568779488286], [-77.35073816833594, 34.73558340647742], [-77.3507606306876, 34.73550657138723], [-77.35085427095456, 34.73538716428198], [-77.35086570349523, 34.73537727165039], [-77.3508794338327, 34.73536842221016], [-77.35104994118973, 34.73522899690478], [-77.35105811558898, 34.73522861797976], [-77.35109466733921, 34.73521703897508], [-77.3513770150921, 34.73513389951492], [-77.35166325626048, 34.73512650978127], [-77.35167965642157, 34.735122911988896], [-77.35169235934052, 34.73512433697486], [-77.35231394695438, 34.73500106588712], [-77.352383895139, 34.73498659714876], [-77.35277424211799, 34.734834316119304], [-77.35305378536513, 34.734515820729456], [-77.35308596804899, 34.7344722493502], [-77.3531070121812, 34.734453469541855], [-77.35334062136457, 34.73405961897926], [-77.35346278887857, 34.73391725391714], [-77.35355504405489, 34.73369150381177], [-77.35361694982565, 34.73340871028827], [-77.35381650272342, 34.733204750543806], [-77.3539138554352, 34.73288057461848], [-77.35401373479219, 34.73255024106811], [-77.35398372638211, 34.7323836002366], [-77.35409572800717, 34.73217565641441], [-77.35423793063418, 34.73186132445248], [-77.35433397356243, 34.73174849868413], [-77.35445602015815, 34.731421589213255], [-77.35449704051491, 34.73133837381895], [-77.3544382409301, 34.731202639768654], [-77.3543888679362, 34.73107904092556], [-77.35417002487985, 34.730895880199704], [-77.35416624832914, 34.73085609126253], [-77.3541189068709, 34.73084856751147], [-77.3536802751127, 34.73047572398213], [-77.35369826526053, 34.73042769029777], [-77.35367668330815, 34.730309232761414], [-77.35337814729507, 34.730263397123636], [-77.35314024619666, 34.730094302796694], [-77.35311829805411, 34.73008543797888], [-77.35307112627119, 34.730071955011475], [-77.35278383122812, 34.72994853142185], [-77.35280758825509, 34.72975786979464], [-77.3529817602375, 34.729596838942925], [-77.35320804283026, 34.729227992254565], [-77.35339113753236, 34.72905326475917], [-77.35341043211251, 34.72901551105335], [-77.353510348372, 34.728820002365275], [-77.35353119737779, 34.728790348268575], [-77.35353194147538, 34.72878172093107], [-77.35366423213688, 34.72860213986712], [-77.3537681610317, 34.728514129546795], [-77.35395463483482, 34.72832121396766], [-77.35404067180767, 34.728297432319266], [-77.35424803073049, 34.7280337307492], [-77.35433450964842, 34.72794900345923], [-77.35438088386273, 34.727884514579955], [-77.35453552797624, 34.72792140849205], [-77.35476606617853, 34.72802940606287], [-77.35493312800054, 34.728044970466655], [-77.35516459368264, 34.728117021346065], [-77.35519637587376, 34.72816953212238], [-77.35526659849504, 34.728107147703255], [-77.35541709684335, 34.727922764295414], [-77.35545726827159, 34.72779487255175], [-77.35559039264393, 34.727395231042124], [-77.35568418971103, 34.727276336094626], [-77.35548723826162, 34.727080381478544], [-77.35524064519745, 34.726986055005234], [-77.35511101747274, 34.7269756096057], [-77.35514601305519, 34.72686283527256], [-77.3549273607037, 34.72672269413826], [-77.35493457542339, 34.72653649923976], [-77.35492031022041, 34.726406436725725], [-77.35508983866958, 34.72620348559742], [-77.35514938130585, 34.726088588288185], [-77.35521474021247, 34.726107394296534], [-77.35521931025508, 34.726150547557815], [-77.35523996345711, 34.726362554135505], [-77.35513690871308, 34.72656148215582], [-77.35530696352289, 34.726757689033846], [-77.35532079172759, 34.72681422418861], [-77.35538655947857, 34.72682981241826], [-77.35553774598995, 34.72704152411963], [-77.35584916109886, 34.72695271669316], [-77.35594857345214, 34.72699634771486], [-77.3560106330709, 34.727071924728726], [-77.35608342591225, 34.72717707414954], [-77.35614989283434, 34.72721240078255], [-77.3561928694339, 34.72732593473434], [-77.35619315526131, 34.72765161745245], [-77.35594192976905, 34.72772833546734], [-77.35617605395811, 34.72773308488384], [-77.35622481825503, 34.72772125222819], [-77.35633339205935, 34.72777586623707], [-77.35649923975294, 34.72787865813616], [-77.35654622124967, 34.727889064698246], [-77.35676529125521, 34.72792224281823], [-77.35697853209533, 34.7279041304635], [-77.35716358513119, 34.72787318066189], [-77.35742667182082, 34.72770686151334], [-77.35760364062921, 34.727624839131366], [-77.35778104885864, 34.727475832759], [-77.35797551331888, 34.727316091639494], [-77.35804768463245, 34.72708156393723], [-77.35801983182334, 34.726955661664434], [-77.35812216227565, 34.72680780412845], [-77.3581247390949, 34.72669756489643], [-77.35816198695893, 34.72659940266045], [-77.35821276634434, 34.72644178518508], [-77.35844809007918, 34.72625151755761], [-77.358572688555, 34.72628341495661], [-77.35873754790238, 34.72628580039656], [-77.35892815880221, 34.7263435539668], [-77.35897870488708, 34.72636525120977], [-77.3590082766998, 34.726384586682144], [-77.35908010722844, 34.72638008932262], [-77.35959447294752, 34.72642807707405], [-77.3597994618, 34.72637919935045], [-77.36025730145582, 34.72616994132516], [-77.36026989844781, 34.726164239172086], [-77.36027649414034, 34.72616362305919], [-77.36030942156948, 34.7261538784862], [-77.3609587613039, 34.725854097666016], [-77.3611536624633, 34.725664346681434], [-77.36124337565396, 34.72553823124924], [-77.36139523626338, 34.72538198041492], [-77.361501980805, 34.72533474096794], [-77.36172509656805, 34.72527708091679], [-77.36206487329709, 34.725195232445394], [-77.36242064191329, 34.724943868911545], [-77.36292117093902, 34.72490870979028], [-77.3630313381903, 34.72490291526549], [-77.36315364119858, 34.7248834214735], [-77.36333724104406, 34.72498279352038], [-77.36337389079561, 34.725078541038684], [-77.36338788476868, 34.72524369551334], [-77.36346062490354, 34.72528209067515], [-77.36350805410954, 34.725323491743445], [-77.36369743741933, 34.72544487125556], [-77.36371828575334, 34.7254780655809], [-77.36390960662533, 34.725659422532246], [-77.36392796871228, 34.725710958383395], [-77.36399617607374, 34.72570479041241], [-77.36408375233324, 34.725707399222564], [-77.36456668184431, 34.72580229686288], [-77.36481101215747, 34.72581995287952], [-77.36516546672613, 34.725802383270775], [-77.36554529646811, 34.72572579791234], [-77.36584239634472, 34.72553324837057], [-77.36596778860277, 34.72546190360929], [-77.36607534513395, 34.7253619225477], [-77.36622119818267, 34.72525970539864], [-77.36641646962929, 34.72522120902309], [-77.36653770731156, 34.72520076602235], [-77.3667273365918, 34.72513382107647], [-77.36698449370463, 34.7250862336858], [-77.36718423901763, 34.725036322143396], [-77.36726734592926, 34.72511251854735], [-77.3675455839544, 34.72515993757202], [-77.3676881576855, 34.72518294074842], [-77.36774206981146, 34.72517747872008], [-77.36781326415706, 34.725182232663656], [-77.36823587956877, 34.72515569846917], [-77.36834829417003, 34.72515189766542], [-77.36844142292483, 34.725100521393074], [-77.36893417386763, 34.725012579454926], [-77.36899075886302, 34.72500144214595], [-77.36904338729113, 34.72499560526038], [-77.3695401350036, 34.724940511184634], [-77.36959862955504, 34.724970175143085], [-77.36967821063587, 34.724919793790654], [-77.3698471127595, 34.72484371102439], [-77.37014518525939, 34.72469530260161], [-77.37034361454681, 34.72446643105488], [-77.3704197327917, 34.72465785227874], [-77.37083578671852, 34.724833827215576], [-77.37103542304172, 34.724972549682406], [-77.37137422767987, 34.725041799365314], [-77.37142628784567, 34.725066008336285], [-77.37151532605466, 34.72510186553015], [-77.37167942164719, 34.72526546165832], [-77.37191876061503, 34.7252287820788], [-77.37211964511664, 34.72527737501311], [-77.37221404888953, 34.72531602934809], [-77.37234796884006, 34.725329277701725], [-77.3725173133529, 34.72537578988489], [-77.37262569454316, 34.725356752168025], [-77.37275855435365, 34.72531356276433], [-77.37299140853325, 34.72520649712776], [-77.37325605862199, 34.72503966326695], [-77.37343303748166, 34.72499048521451], [-77.37373670282368, 34.72492867849535], [-77.37389154268891, 34.72459179564818], [-77.37396073377323, 34.72454659784964], [-77.3740620490929, 34.72447175759561], [-77.37416243256676, 34.72440702757921], [-77.37429527427835, 34.724345341216804], [-77.37447916340096, 34.72423830681514], [-77.37462122826406, 34.72413003682948], [-77.37469835107191, 34.72403543865252], [-77.37486867757885, 34.72390160942029], [-77.37491760329631, 34.723866336529944], [-77.37494698972404, 34.72384288033971], [-77.37512679166585, 34.72372532450624], [-77.3752387291465, 34.72364313637547], [-77.37561399296696, 34.7235171801978], [-77.37561828783574, 34.72351554762654], [-77.3756233004154, 34.72351066480099], [-77.37565518989835, 34.7235051785937], [-77.37602183721664, 34.723427213151496], [-77.37634975066345, 34.72321679583575], [-77.3763505199997, 34.72321638301319], [-77.37635109730654, 34.72321601860484], [-77.37635181171086, 34.72321494061063], [-77.37658605429284, 34.72273907027676], [-77.37688991940601, 34.72260171175097], [-77.37704210226241, 34.722339519097126], [-77.37714508553748, 34.72227060277413], [-77.37729251342721, 34.722177287307375], [-77.37730910105742, 34.72216465925048], [-77.37732273291981, 34.72215815965508], [-77.37750434031278, 34.722109802987724], [-77.37763966804715, 34.72208571551853], [-77.3777139077149, 34.72207839086886], [-77.37786023980317, 34.722066721711], [-77.37793204247987, 34.722060995877186], [-77.37796980771115, 34.72205279188041], [-77.37847935808206, 34.72220789154139], [-77.3792295192451, 34.72198684718282], [-77.3792555528108, 34.721980675762225], [-77.37927295159848, 34.72198111157047], [-77.37937922726299, 34.72195353988675], [-77.37995366902564, 34.721844786220466], [-77.38008187022372, 34.72183546568287], [-77.38059770925273, 34.7218348910712], [-77.38096165495637, 34.721777730635736], [-77.38124752717184, 34.72180507658345], [-77.38187284325839, 34.72180704852655], [-77.38188754005313, 34.72180905947614], [-77.38189768323821, 34.721812009098564], [-77.38190234783141, 34.721804049490295], [-77.38230580789373, 34.72173116588245], [-77.38253480753725, 34.72153120268336], [-77.38258803004837, 34.72148486665819], [-77.3826031126643, 34.72146902406261], [-77.38263830867791, 34.721431174910585], [-77.38290761802674, 34.721218664166095], [-77.38302715013407, 34.72107938248615], [-77.383073772627, 34.72103507504676], [-77.3832472631851, 34.72102579445944], [-77.38347977364904, 34.72074054614333], [-77.38358498025778, 34.72071544786289], [-77.38392712070294, 34.7206409883318], [-77.38417719326351, 34.72054654434184], [-77.38442457158294, 34.7204501302932], [-77.38473934894056, 34.72047273766147], [-77.38483869474322, 34.720476379537686], [-77.38490043927521, 34.720545381542074], [-77.38496156190384, 34.72063807685588], [-77.38510230764692, 34.72106650277253], [-77.38513159886828, 34.72134164038547], [-77.38529540378437, 34.72138238656444], [-77.38581253856732, 34.72154004038654], [-77.38588303393435, 34.72151975895255], [-77.38620249591227, 34.721369303542076], [-77.38621262282942, 34.72135552235625], [-77.38652266233072, 34.721302217833994], [-77.38661147190768, 34.721289850783734], [-77.38672956857991, 34.72134513761162], [-77.38680129798337, 34.72144685127366], [-77.38686556695626, 34.721511609278096], [-77.38702582547911, 34.72177807710604], [-77.38714054134986, 34.72195985662769], [-77.38730794511062, 34.722219845989756], [-77.38747901851582, 34.72242627690497], [-77.3878946755645, 34.7227829461523], [-77.3879538278188, 34.72284327132922], [-77.38798806410587, 34.72288188932917], [-77.38808909309878, 34.72295845473061], [-77.38881443123844, 34.72337720754312], [-77.38909047043065, 34.723502384373276], [-77.38936621385056, 34.72355057113814], [-77.38999009095986, 34.723779834252525], [-77.39028320050963, 34.7238114127769], [-77.39044213098703, 34.72381355558504], [-77.39090767941647, 34.72386896878349], [-77.39100104676987, 34.72386999036732], [-77.39136880507542, 34.72383242285598], [-77.39163579210161, 34.723569081601376], [-77.39167570297045, 34.72354690662743], [-77.39187282038965, 34.723159999900005], [-77.39208348718071, 34.723130437473884], [-77.39320602636307, 34.72257597984352], [-77.39327926545283, 34.72246681435134], [-77.39331565017432, 34.72244327383431], [-77.3939946719756, 34.72214015752153], [-77.39417346748594, 34.72203618523292], [-77.39463676673614, 34.72178722958575], [-77.39467363480715, 34.721753902460065], [-77.39472885367718, 34.72174626691367], [-77.39501641948372, 34.72156618032233], [-77.39531179739444, 34.72156168803914], [-77.3954257013037, 34.72155409972729], [-77.39546927582676, 34.72155847823681], [-77.39556291599258, 34.7215521328893], [-77.39591924457807, 34.721546051909314], [-77.3960702251522, 34.72154242499938], [-77.39636238884853, 34.721522462261596], [-77.39658172032829, 34.721349449629], [-77.39667214331665, 34.72128072678586], [-77.39683578135501, 34.72111319009279], [-77.39697277235668, 34.72102406770287], [-77.39716519495293, 34.7207890896651], [-77.39699560472204, 34.720561801122315], [-77.3969725290215, 34.72042308551781], [-77.39690464145221, 34.72034414204076], [-77.39698734925213, 34.7202995977125], [-77.3970638196014, 34.72032645871036], [-77.3974772883602, 34.72035254494653], [-77.39772419169391, 34.720260061957745], [-77.39787646995667, 34.720125019069215], [-77.39811318196912, 34.719895888346485], [-77.39819761497463, 34.71967823621713], [-77.39856117514164, 34.71931449410847], [-77.39862127579559, 34.71926732176247], [-77.39863472331356, 34.71925223256781], [-77.39867648360715, 34.71918645477667], [-77.39887555949707, 34.718897807150725], [-77.39891649601086, 34.71881146955744], [-77.3989536963344, 34.71870453194386], [-77.39905738639447, 34.71844688202813], [-77.3991501863387, 34.71833409007358], [-77.3991080032099, 34.718193877584596], [-77.39913681946337, 34.71804984357759], [-77.39906082970701, 34.717860321610104], [-77.39901385677908, 34.7177868026353], [-77.3989558852139, 34.71770696893194], [-77.39878160650251, 34.717437303206275], [-77.39871188164224, 34.717342027208005], [-77.39866022548391, 34.71726474487911], [-77.39862036469725, 34.71716804090007], [-77.3985679185075, 34.71708006553769], [-77.39853809728103, 34.71700165221308], [-77.39848580646245, 34.71676382500484], [-77.39847150547217, 34.71669878195043], [-77.39846773344327, 34.716675509220096], [-77.39845670055823, 34.71662672874503], [-77.39841879691627, 34.71640076867095], [-77.39838955797104, 34.716261777203414], [-77.39830226164399, 34.71605359334877], [-77.39824519047261, 34.71587564104822], [-77.39818497121577, 34.71575981222284], [-77.39806299029452, 34.715505277673536], [-77.39791896051504, 34.71516413322746], [-77.3979000208764, 34.715126897416376], [-77.39788554203605, 34.715095899812574], [-77.39780752884353, 34.71490621729028], [-77.39775149820893, 34.714769425748855], [-77.39774184721936, 34.71474651810275], [-77.39772772483585, 34.71471798228274], [-77.39758887356264, 34.71443295038634], [-77.39756507910275, 34.71437389107462], [-77.39753179172348, 34.7142880454368], [-77.39737910395269, 34.71400510283058], [-77.39713848095894, 34.71381196168314], [-77.3970481650547, 34.713744790736705], [-77.39698706171167, 34.71372222360714], [-77.39690874140827, 34.713635819079094], [-77.39689761207147, 34.71341800084116], [-77.39678092784843, 34.71303194751815], [-77.39677057173418, 34.712919837807014], [-77.3966860292866, 34.71278238690885], [-77.39656649237101, 34.71239776380685], [-77.3964485087313, 34.712161466995596], [-77.39629898136035, 34.71190596487888], [-77.39626563727468, 34.711791387010514], [-77.39621825454566, 34.711716757000225], [-77.39600868029831, 34.71145219328249], [-77.39585833973396, 34.71121447742142], [-77.39578068382033, 34.71110092635321], [-77.39566519581979, 34.710964071752414], [-77.39553021150444, 34.71075902976894], [-77.39539495901897, 34.71060146627892], [-77.39524776196328, 34.710430464548715], [-77.39492987960249, 34.71014759937581], [-77.39491005316837, 34.710124936732555], [-77.3948984113295, 34.71010290532967], [-77.39485755244621, 34.7100811488109], [-77.39434507868994, 34.70980026623703], [-77.39375077587906, 34.70976744049716], [-77.39371370701112, 34.70976686836842], [-77.39362192028499, 34.70976931095999], [-77.39322024249822, 34.70964796406811], [-77.3931116820196, 34.70963222626775], [-77.39296522159952, 34.70959676045885], [-77.39268876927501, 34.70952694552999], [-77.3925259873611, 34.709441252171956], [-77.39227845544391, 34.709436741580454], [-77.39216950993561, 34.70942590283915], [-77.39191994795257, 34.709320465679234], [-77.39165125442824, 34.709326496363744], [-77.39125191055498, 34.70941354546926], [-77.39124783685754, 34.70941495349227], [-77.39124129191795, 34.709415860096236], [-77.39094050280525, 34.709382085827386], [-77.39075179200742, 34.70935187767413], [-77.39062958497401, 34.70934893578354], [-77.39048616955859, 34.70929125223304], [-77.39018780819788, 34.709047144399534], [-77.39013467323726, 34.70899146690082], [-77.39010374228289, 34.70895152443364], [-77.38979431699407, 34.70868703662454], [-77.38960326641647, 34.708466627927834], [-77.38878497645854, 34.70855613727251], [-77.38845507319603, 34.70858822226809], [-77.38826685668434, 34.7086539303619], [-77.38787218347618, 34.70859564182601], [-77.3875284488595, 34.708569130614], [-77.38703910751998, 34.708466435570685], [-77.38662964750219, 34.70822095488986], [-77.38635643766973, 34.70814854892595], [-77.38590309201386, 34.70796258295918], [-77.3856007353393, 34.70800071649776], [-77.3853809385811, 34.70804946685356], [-77.38521822537282, 34.70811367398873], [-77.38461667518851, 34.70821542004579], [-77.38457571574018, 34.70822898040101], [-77.38454434478072, 34.70822686671834], [-77.38451005678239, 34.70821181321625], [-77.38445826634421, 34.70815996621313], [-77.38306985277819, 34.70702689713802], [-77.38239869373622, 34.70678347117686], [-77.38206223199371, 34.706554273068534], [-77.3818439991601, 34.70648569739472], [-77.38163903733415, 34.70641788369528], [-77.3814765464903, 34.706352081892184], [-77.38127552563216, 34.70623544339152], [-77.38107488399274, 34.70607319337978], [-77.38073839199708, 34.705877137435465], [-77.38021812456516, 34.70558983954935], [-77.38018675967781, 34.70556883584534], [-77.38014789951302, 34.70556695341149], [-77.37957890900887, 34.70545437858783], [-77.37910090408236, 34.70525872397381], [-77.37898730956279, 34.70528389218073], [-77.37867913955296, 34.70528649318676], [-77.37835516680963, 34.70525319328779], [-77.37818475379912, 34.70525664336935], [-77.37776976026507, 34.70521918733183], [-77.3777503372322, 34.70512832658784], [-77.37768483775201, 34.7048718928488], [-77.37781543132739, 34.704740051076946], [-77.37782447015661, 34.704697399277926], [-77.37780689589616, 34.70438364085564], [-77.37779677829836, 34.704255218614875], [-77.37784352676252, 34.703961154237156], [-77.37751081585479, 34.70389024047112], [-77.37747495472642, 34.70385062527439], [-77.37744408269529, 34.7038163169782], [-77.37726472314964, 34.70361819350645], [-77.3770596099322, 34.70338198241575], [-77.37705952470016, 34.70338188743554], [-77.37705945414557, 34.70338180531052], [-77.37705886064923, 34.70338105870768], [-77.376883295265, 34.70312327925184], [-77.37684031040109, 34.70310612830278], [-77.37671057111228, 34.70294237776939], [-77.37667090025582, 34.70289251461553], [-77.37662137431985, 34.702829025951715], [-77.37653868124598, 34.702722312975155], [-77.37649194689, 34.70263600452958], [-77.37641146807142, 34.702496105109375], [-77.37634507694324, 34.702354795383094], [-77.37623083884792, 34.70211164350982], [-77.37620770638452, 34.7020662735718], [-77.37620243944046, 34.70203744842931], [-77.37618074187907, 34.70196501240091], [-77.37613015409151, 34.70180368881286], [-77.37611276370181, 34.701745088582314], [-77.37602724581255, 34.70157413913944], [-77.37594488968293, 34.70148005138857], [-77.37585848338472, 34.70133160914209], [-77.37569520746412, 34.70113239404969], [-77.37556891503073, 34.700980948025695], [-77.3754248607289, 34.70076281204306], [-77.3753920748186, 34.700722815510716], [-77.37536945408381, 34.70068978449142], [-77.37525445904588, 34.70050625859025], [-77.37522621752437, 34.70045622820512], [-77.37521666988701, 34.7004487028239], [-77.37505147617071, 34.700246105304856], [-77.37503152881666, 34.700211837431915], [-77.37499950545046, 34.7001655331912], [-77.37485601307066, 34.69995268665445], [-77.37475821346521, 34.69979902733823], [-77.37468759406501, 34.69968807300986], [-77.37457536605814, 34.69956408243088], [-77.37446954429004, 34.69946166881287], [-77.37436565873315, 34.69936559963072], [-77.374117776557, 34.69907796317247], [-77.3740468584531, 34.69899853524367], [-77.37394897941009, 34.69893548756392], [-77.37376483032301, 34.698821386592066], [-77.37361997608286, 34.69873047555495], [-77.3734251183148, 34.698688645180084], [-77.37287259656391, 34.69859606113215], [-77.37282009827202, 34.69836588114113], [-77.3726242215582, 34.69803606389309], [-77.37256528172256, 34.697773522958066], [-77.37215990268486, 34.69771924272229], [-77.37212466172957, 34.69769467945914], [-77.37196314596088, 34.697448545605866], [-77.37182528336187, 34.69727784491238], [-77.37167487580604, 34.69718173623796], [-77.37156472763783, 34.69696673783233], [-77.37140257495756, 34.696848554963466], [-77.37130046864428, 34.696775913910116], [-77.37123105778619, 34.6966482399819], [-77.37114476593345, 34.696501518301964], [-77.37108459483079, 34.69617345870396], [-77.37121025812996, 34.69590020168403], [-77.37114578428056, 34.69495140659423], [-77.37114630291111, 34.69493420700638], [-77.37114862507532, 34.6949215086293], [-77.37114133223542, 34.694894243091106], [-77.37108849581567, 34.69417927874476], [-77.37079691711028, 34.694007443008054], [-77.37104858245796, 34.69358899809098], [-77.37114975179705, 34.69347155226865], [-77.3714985901481, 34.69334962901744], [-77.37163530751798, 34.692969789316635], [-77.37165713469149, 34.69291441477385], [-77.37162861342118, 34.69282671223414], [-77.3715744105309, 34.69262241126421], [-77.37140677886643, 34.69246143478347], [-77.37141960346027, 34.69234733184346], [-77.37145955436326, 34.69196678525985], [-77.37180206429986, 34.691704145339436], [-77.37198922412495, 34.69140658267029], [-77.37206002138049, 34.69129460061098], [-77.37209512239022, 34.69103873788643], [-77.37208127403218, 34.690906534806324], [-77.37203048419718, 34.69063029325822], [-77.37201112737472, 34.690428783637806], [-77.3720592307375, 34.690277845283816], [-77.37225934056391, 34.689907267981646], [-77.37237244132828, 34.68965705763811], [-77.37241362395528, 34.689398664286976], [-77.37237349517837, 34.68924736611291], [-77.37235589327179, 34.689162903776754], [-77.3722987192104, 34.68895359726182], [-77.37230676144347, 34.68892596087997], [-77.37229437139129, 34.68891402214603], [-77.37227798269451, 34.688912767066654], [-77.37224389641958, 34.68890501492168], [-77.37187926873489, 34.68883935316974], [-77.37171236011596, 34.68879931070012], [-77.37125736103317, 34.688668900958916], [-77.37114911323322, 34.688677668051106], [-77.37108751164067, 34.688660411484605], [-77.37080737181911, 34.688270121445896], [-77.37073138093776, 34.68816773301207], [-77.37072271662062, 34.68815275191621], [-77.3707113194539, 34.68812358053479], [-77.37054799610759, 34.68770554712384], [-77.37045670626559, 34.687569038521474], [-77.37025633243175, 34.68725824388997], [-77.36987168156875, 34.68689153996395], [-77.36957634366895, 34.68666980860727], [-77.36926595178076, 34.686419588222826], [-77.3691014708691, 34.6862469052455], [-77.36891734683019, 34.68605493567651], [-77.36887035560288, 34.68598657069806], [-77.36873548245582, 34.68574017471251], [-77.36862341568111, 34.68553311762527], [-77.36856216831158, 34.68508510967844], [-77.368562650184, 34.68505407869199], [-77.36852716534656, 34.68497299983618], [-77.3683292443036, 34.684598766401166], [-77.36830666761784, 34.68449331952585], [-77.36819471838145, 34.684419739126966], [-77.3677908286294, 34.68418537476159], [-77.36774021028889, 34.684140935525164], [-77.36745343099355, 34.68402135030876], [-77.36712969721789, 34.68396477853069], [-77.36691779387334, 34.68398560846809], [-77.36678741469935, 34.68383588591616], [-77.36636489769398, 34.68362278362169], [-77.36622484469046, 34.68342580912629], [-77.3661088775725, 34.683357506265985], [-77.36570028915274, 34.683345963406914], [-77.36504456784411, 34.68316263356944], [-77.3649680176338, 34.683163981994234], [-77.36490507147127, 34.683169693160025], [-77.36432157822527, 34.68332917338857], [-77.36410922950449, 34.68322914132904], [-77.36390660832664, 34.68314988568466], [-77.36380355764467, 34.683051794168705], [-77.36361343318217, 34.68280987754104], [-77.36387558538306, 34.68238530231013], [-77.36335552157098, 34.68253324649588], [-77.36312325826802, 34.68273599769786], [-77.36295465731635, 34.682900394793336], [-77.36273662893025, 34.68303148852778], [-77.36257601420024, 34.68315699198646], [-77.36235120565246, 34.68332804881129], [-77.36211042578944, 34.68350377724234], [-77.36182225702436, 34.683691960090236], [-77.36146406778848, 34.683818091182374], [-77.36112061951789, 34.68404729515635], [-77.36071335828083, 34.68403116708468], [-77.36035035898863, 34.68410729685358], [-77.3598639829782, 34.68425264180576], [-77.3593124667406, 34.68446370778943], [-77.35919903070726, 34.684481525667564], [-77.35885696920693, 34.68467171003775], [-77.35854193198432, 34.68468333172981], [-77.35828960898196, 34.68483344623293], [-77.3580390129416, 34.68503785619551], [-77.35780688351824, 34.68515368016528], [-77.35749728286522, 34.68540754546858], [-77.35729644816233, 34.68547868009415], [-77.35712465033615, 34.68544203949994], [-77.35684683754972, 34.685469180778945], [-77.35681952970398, 34.68546220324319], [-77.3567942579811, 34.68547101273073], [-77.35650333057802, 34.68552053006229], [-77.35633685575354, 34.68565533305261], [-77.35627637946286, 34.68576733530743], [-77.35612301021699, 34.68598767125433], [-77.35606824534358, 34.68628330523143], [-77.3558118214637, 34.686466392133745], [-77.35560429010506, 34.68683440767453], [-77.35555771667987, 34.68687938235428], [-77.35543285384186, 34.687307284490615], [-77.35542394794051, 34.687346559197465], [-77.35541753329869, 34.68739336365486], [-77.35531703405249, 34.68779063128924], [-77.35534865796319, 34.687844283309744], [-77.35516270424162, 34.68807691289314], [-77.35487315181294, 34.688187284833404], [-77.3544930053908, 34.68832196754305], [-77.35417256109042, 34.68827727746372], [-77.35418911414006, 34.688003516848156], [-77.35401581814108, 34.68790388707363], [-77.35389935801837, 34.68769914905749], [-77.35377891310154, 34.687572460886315], [-77.35355260081377, 34.687437701228916], [-77.35323698833176, 34.68764687480983], [-77.35315610952065, 34.68787698427409], [-77.35314044602802, 34.68790382324468], [-77.35313596740899, 34.687923790113345], [-77.35299956845691, 34.68816685842784], [-77.352647850667, 34.68849235383442], [-77.3523446356667, 34.688498797289625], [-77.35219530003349, 34.68876467089148], [-77.3519545668126, 34.68919590575838], [-77.35189769998135, 34.68929291539704], [-77.35193722905811, 34.689414171325225], [-77.35183945050271, 34.689788294218076], [-77.35145261391112, 34.690261104762946], [-77.35082627745112, 34.69064298571818], [-77.35049966303737, 34.69069285176486], [-77.3505308179286, 34.69094272307251], [-77.34988444400236, 34.691424012063216], [-77.34920858941857, 34.69209116044127], [-77.3491992124214, 34.69209311544387], [-77.34828090335424, 34.69202301772326], [-77.34800754242025, 34.69210442378465], [-77.34778650812625, 34.69200928596116], [-77.34764589201197, 34.69199261164398], [-77.3474534758146, 34.691951078274975], [-77.34734598739571, 34.691954093883304], [-77.34696622625471, 34.692028344983356], [-77.34672489501519, 34.69239865078201], [-77.34669415064198, 34.692425439376485], [-77.34668577740545, 34.69244528628211], [-77.34669490436647, 34.692455103336904], [-77.34668973313954, 34.69251972451953], [-77.34673603259333, 34.69246257113899], [-77.34698693245086, 34.69252696450464], [-77.34711748701895, 34.69252410239231], [-77.34728334444179, 34.69253691418735], [-77.34774618416861, 34.692434493080015], [-77.34782626656268, 34.692728649856605], [-77.3478393029775, 34.69277433845379], [-77.3478212442755, 34.692786377459534], [-77.34779421408962, 34.692839021993734], [-77.34755396061128, 34.69318771965635], [-77.34717852360684, 34.69335241493995], [-77.34753970798548, 34.69338173459426], [-77.34750684859006, 34.693784258602385], [-77.34749720272349, 34.69379605484153], [-77.3475018265716, 34.69380506232436], [-77.34741655741712, 34.694023363984236], [-77.34727707536291, 34.69397800665598], [-77.34718390295333, 34.69390994805708], [-77.34709423559089, 34.6938513637747], [-77.34710310480304, 34.69371769824518], [-77.34702597539503, 34.69342313371307], [-77.34701558797876, 34.69337477860537], [-77.34693241253616, 34.69306069139713], [-77.34654831240168, 34.693006679358454], [-77.3464887312999, 34.69300792570549], [-77.34600200624698, 34.693088424840674], [-77.34591787763658, 34.69311626433668], [-77.34560246410602, 34.69329571646878], [-77.34553709033538, 34.69331455444212], [-77.34548506007657, 34.69334114791823], [-77.34523523781166, 34.69340558645749], [-77.34507827948804, 34.693396973606696], [-77.34501163315109, 34.69335617027461], [-77.34486826983455, 34.69335990281154], [-77.3446605431164, 34.69332323467404], [-77.34446484829314, 34.69338272812006], [-77.34404278170585, 34.69338915614024], [-77.34355778226706, 34.69347466581348], [-77.34337468727985, 34.69362836099461], [-77.34320328811381, 34.69356509487638], [-77.3427452367483, 34.69373450774174], [-77.34239093761552, 34.69371677910006], [-77.34227528031741, 34.69402529983883], [-77.34256383095928, 34.694359024960505], [-77.34294175049962, 34.6942051484939], [-77.34324527714233, 34.69407389033402], [-77.34343167218319, 34.694001188580295], [-77.34361506050473, 34.694036592214104], [-77.34379029577458, 34.6942584329078], [-77.34380440220146, 34.69430285558628], [-77.34379596688345, 34.694324177800944], [-77.34373521372626, 34.69455603888107], [-77.34366554652497, 34.69468792120883], [-77.34359674198184, 34.694785875757105], [-77.34349404150231, 34.69483282174194], [-77.34287942248778, 34.695333419958075], [-77.34282254062668, 34.69537613158094], [-77.34278808572826, 34.695461209702756], [-77.34261418418123, 34.69592830789857], [-77.34229698224786, 34.69618684347133], [-77.34192294892594, 34.696565296731464], [-77.34156674864099, 34.696816094296125], [-77.34063510512655, 34.69711768074013], [-77.34056161301413, 34.69713001005895], [-77.34047117662722, 34.6971214312485], [-77.34032190841992, 34.69721756491782], [-77.33944420255129, 34.697487587981925], [-77.33921891705889, 34.69763047909392], [-77.33800671222794, 34.698509916111156], [-77.33782481723813, 34.69860521614724], [-77.33770987835274, 34.69870339470701], [-77.33739404592039, 34.698822821049056], [-77.3373514796688, 34.698599792423664], [-77.336938711819, 34.69781952613561], [-77.33685050516938, 34.6976937609247], [-77.33685998518827, 34.697657106703744], [-77.33681566867578, 34.69766017348162], [-77.33675521516419, 34.697656822030815], [-77.33576016346314, 34.697172125498135], [-77.33557531788465, 34.69706883306732], [-77.33470750972849, 34.69711786469523], [-77.33458448487707, 34.697097673446], [-77.33446200485788, 34.69713700793383], [-77.33397398714581, 34.69713841760688], [-77.33347418003214, 34.69730101239118], [-77.33330247546587, 34.6973891124215], [-77.3328059814717, 34.69762264151311], [-77.33200225593679, 34.6977431651231], [-77.331225853859, 34.697860901375], [-77.33098910681997, 34.69849757101309], [-77.33073520223572, 34.69870264154723], [-77.33067156856085, 34.69926446577651], [-77.3308373332933, 34.699493121437314], [-77.33107556428718, 34.69974195785051], [-77.331240181435, 34.70036533912317], [-77.33181815781143, 34.699662977817596], [-77.33205341606248, 34.69962710851796], [-77.33229814409913, 34.699589794065844], [-77.33238448425942, 34.70016516819531], [-77.33156366476939, 34.70036827469145], [-77.33125872596268, 34.7004437300089], [-77.3312130106801, 34.700458825891516], [-77.33112613638687, 34.700491302222055], [-77.32985973972686, 34.700995183629935], [-77.32917432185896, 34.70114903561996], [-77.32862511469357, 34.701123289074026], [-77.32824135183373, 34.7011337009257], [-77.3280216593021, 34.701139661648355], [-77.3276687334824, 34.701090756925474], [-77.3274444997317, 34.70106556605131], [-77.32729676266877, 34.70095324836104], [-77.3268726672093, 34.7006099574195], [-77.32648672796655, 34.70024125479117], [-77.32631925575981, 34.70011250244861], [-77.32634751591803, 34.69943743248875], [-77.32549329584435, 34.699539667972566], [-77.32534225969225, 34.699422387052714], [-77.32490991395427, 34.699487009747614], [-77.3245509410307, 34.699380138696995], [-77.32478291029764, 34.699064383231224], [-77.32498409400738, 34.69870987774376], [-77.32519685013362, 34.698499993481335], [-77.3253205424144, 34.698369808040425], [-77.32565103137598, 34.698396702647855], [-77.32583623427652, 34.698359982764934], [-77.32600892889303, 34.69844925257329], [-77.3260131779565, 34.69851227088115], [-77.32617546789872, 34.698489566044], [-77.32638266645031, 34.698539721539305], [-77.32648183475544, 34.698545917722896], [-77.32665166398203, 34.6986048352759], [-77.32689934836995, 34.69882181039006], [-77.32710895640528, 34.69867898995759], [-77.32748490249102, 34.698562633763316], [-77.32756589634388, 34.69858833726923], [-77.3277463494866, 34.698605813816485], [-77.32819551005427, 34.698481913463624], [-77.3285501114402, 34.69834459104832], [-77.32874903874932, 34.69821815406886], [-77.32886288696045, 34.69824555834305], [-77.32939404295676, 34.697741523129466], [-77.32956142776185, 34.69766173251577], [-77.32970608812727, 34.697404246930226], [-77.33025334708253, 34.696998481067666], [-77.33044222698433, 34.69693124954414], [-77.33070212367306, 34.696758037774984], [-77.33092335802473, 34.69670606630369], [-77.33110232451111, 34.69671986331173], [-77.33133490425809, 34.69668076982922], [-77.33138017990055, 34.696494467895434], [-77.33187011349317, 34.69613790012391], [-77.33202769987172, 34.69601830698862], [-77.33223266359866, 34.695890203533864], [-77.33267501088613, 34.69542820152593], [-77.33278359085917, 34.695411801998006], [-77.3329811414286, 34.69530019377781], [-77.33374944365875, 34.69499149288954], [-77.3340060363526, 34.69496799345832], [-77.33418378004856, 34.69498624370397], [-77.3349395454168, 34.69503161787072], [-77.33510198418797, 34.695068148418216], [-77.33517907936097, 34.69505142156046], [-77.33526051612617, 34.69505466495799], [-77.33611545407966, 34.695076756879715], [-77.33633930593473, 34.69517895023565], [-77.3367926550328, 34.69513649659731], [-77.33694250908725, 34.695163247699035], [-77.33698085493879, 34.695199271638614], [-77.33746829974973, 34.69541397872768], [-77.33767187151244, 34.69545593914868], [-77.33806473164648, 34.695421580033326], [-77.33841420087995, 34.69552977197746], [-77.33844818024099, 34.69564698836327], [-77.33857394878225, 34.69572936884348], [-77.3388001933399, 34.69563983878761], [-77.33916643927338, 34.69575053816838], [-77.33939726059091, 34.6957051121539], [-77.33971073032123, 34.69593761193261], [-77.34016498596567, 34.6955732363941], [-77.34052988385166, 34.69523952754493], [-77.34036332090406, 34.69496185903702], [-77.34040922193171, 34.69476870706567], [-77.34031036891075, 34.69460844718322], [-77.34027737506985, 34.69454310808459], [-77.34023869737086, 34.69446651350622], [-77.3402597154744, 34.69438051622344], [-77.34033217255916, 34.69429190219734], [-77.34036199435253, 34.69417457449875], [-77.34027605700308, 34.69399162827066], [-77.34028987433692, 34.693810329371466], [-77.34029231230963, 34.69377106182559], [-77.34034095496803, 34.6935596333907], [-77.34032540040597, 34.69348122186838], [-77.34034983535805, 34.69339562376609], [-77.34031999052392, 34.693325232397875], [-77.34032045986578, 34.69331875732061], [-77.34032344582026, 34.69331333810792], [-77.34040591879837, 34.69323343763389], [-77.3405124740817, 34.69317780116897], [-77.34066767435816, 34.69315108060341], [-77.34097142749428, 34.693096507170566], [-77.34118202521645, 34.69293361800456], [-77.34136004526155, 34.692802732501036], [-77.34139709597719, 34.692683665376435], [-77.34153876189012, 34.69248086143314], [-77.34160787785981, 34.69238412935761], [-77.34178754102771, 34.692289446339686], [-77.34198423278325, 34.69223273410925], [-77.34213269740147, 34.69221112276846], [-77.34255467426118, 34.69203745421436], [-77.34295918824705, 34.691667254997185], [-77.34336485552276, 34.691601302710815], [-77.34386503538398, 34.691370266995506], [-77.34399100072451, 34.69130543985052], [-77.34405423579398, 34.6912887596502], [-77.34459501423547, 34.69078271244706], [-77.34453576944168, 34.69051179337058], [-77.34484865748733, 34.69061452623558], [-77.34490749025132, 34.69067712459065], [-77.345143013094, 34.690707506407975], [-77.34521289112267, 34.69083629242131], [-77.34541152459491, 34.69073753773733], [-77.34547224015158, 34.690703774126085], [-77.34593007829206, 34.69067859382591], [-77.34602516592768, 34.69068572171453], [-77.3461698728515, 34.69068398730069], [-77.34639971574421, 34.69053502898718], [-77.34649620992349, 34.6902429522868], [-77.34669293393989, 34.69000740560795], [-77.34666878879924, 34.689849701223224], [-77.34688066252517, 34.68980109232659], [-77.34706845843337, 34.68980259911179], [-77.34728539270425, 34.689758075598185], [-77.34747254535961, 34.689824167610105], [-77.34776631150194, 34.68961638559392], [-77.3475903835385, 34.689418386429026], [-77.3475786263421, 34.68941001104888], [-77.34754400705944, 34.68940320954805], [-77.34734095293605, 34.68924669336755], [-77.3472797465716, 34.689245831529355], [-77.34709279670133, 34.68907061474776], [-77.34699383648622, 34.6890716711909], [-77.34664001032833, 34.688568587963545], [-77.34663870545371, 34.68855660570704], [-77.34663586045652, 34.68855310041643], [-77.34662202751689, 34.68853161390939], [-77.3463367440879, 34.68800062513326], [-77.3459946148105, 34.687975325847454], [-77.34554268454474, 34.68822484942096], [-77.34500782260096, 34.68823490974045], [-77.34483482587989, 34.688223640622965], [-77.3443979013622, 34.68804453624055], [-77.34434869204944, 34.68795377652684], [-77.34435270752414, 34.687891694938926], [-77.3437653211318, 34.68761434616372], [-77.34371858903803, 34.687491339432256], [-77.34364879836392, 34.68730984671035], [-77.34357057667502, 34.68710265460195], [-77.34365587178883, 34.687012568267036], [-77.34419158804846, 34.68669394058577], [-77.34457384077618, 34.68688659023256], [-77.34466628508642, 34.686921055440514], [-77.34471830767824, 34.686941324587046], [-77.3448157809386, 34.686930098152196], [-77.34535574156482, 34.68680749450379], [-77.34537865310119, 34.68679085691243], [-77.34542140898374, 34.68677026745092], [-77.34588720744608, 34.686603452451365], [-77.34600821703357, 34.68662185865801], [-77.34609478549089, 34.68661013132819], [-77.3463157164461, 34.686593560549454], [-77.3466029067468, 34.6865997150855], [-77.3466134616431, 34.686598849385135], [-77.3466251888705, 34.68659613843199], [-77.3466555176539, 34.68660088341123], [-77.34689035436097, 34.68678625445591], [-77.3471732119994, 34.686732498142455], [-77.34742006731652, 34.68668593255171], [-77.34754092226581, 34.686679786587085], [-77.34780524727472, 34.686617225208465], [-77.34790193968155, 34.686599051183435], [-77.34796434669036, 34.68658464969643], [-77.3480362009485, 34.68659390827763], [-77.34803650534329, 34.68659403904824], [-77.3480365986131, 34.686594260857575], [-77.34803484559929, 34.686655242531224], [-77.34802332539564, 34.68670272637308], [-77.34805844098238, 34.68677593329229], [-77.34806103484193, 34.68689533780399], [-77.34799860858253, 34.68711592580249], [-77.34807558259178, 34.687267129980945], [-77.34801588196342, 34.68738891609955], [-77.34793972834876, 34.68755541460594], [-77.3480915806521, 34.687692449060606], [-77.34806947678945, 34.687849745934976], [-77.34813114103892, 34.687860475458365], [-77.34829705602965, 34.68801549903717], [-77.34829827698853, 34.6880678508113], [-77.34830431703743, 34.688080394107274], [-77.34831155630478, 34.68811465077975], [-77.34824133264377, 34.688332729857905], [-77.34831349755643, 34.68845031708501], [-77.34845135607564, 34.688514787788876], [-77.34846221049128, 34.68853296485917], [-77.34855969298827, 34.68853271917884], [-77.34867213638961, 34.68856850522204], [-77.3488093050315, 34.68855595298972], [-77.34904280152816, 34.688539329274285], [-77.34935822390683, 34.688404319409216], [-77.34937147556107, 34.68817759132389], [-77.34938979277103, 34.68811316022496], [-77.34940056891254, 34.68805175216477], [-77.34950390597587, 34.68798204578148], [-77.34958184611608, 34.687964284307306], [-77.34981647772258, 34.687884947287806], [-77.34982970395389, 34.68789073049303], [-77.34987763136763, 34.68786441515701], [-77.35010925481144, 34.68779358175118], [-77.35017214654758, 34.68774208749225], [-77.35029484038033, 34.68763897249958], [-77.35036269060957, 34.68755413280269], [-77.35038255901314, 34.687532788207605], [-77.35050089317181, 34.687502509221936], [-77.35054152975154, 34.687500654116015], [-77.35056867904346, 34.68750315515076], [-77.35071517276589, 34.687505740735624], [-77.35083636801838, 34.68751595423377], [-77.35088094981391, 34.68748298103499], [-77.35104630952466, 34.6873477721478], [-77.35116723803013, 34.68704250265191], [-77.351145265513, 34.68695930993951], [-77.35117740203506, 34.686825710905495], [-77.35138357120306, 34.68666205978465], [-77.35168471625254, 34.686644244420386], [-77.35169270053852, 34.686644275209325], [-77.35169395318628, 34.68664028540336], [-77.3516935542538, 34.686637442516954], [-77.35174762843147, 34.68638922405293], [-77.35186795745712, 34.68616137232684], [-77.35213625188166, 34.68613119434066], [-77.35238821915758, 34.68598433887854], [-77.35275689930918, 34.685763263074215], [-77.35282268938914, 34.68573124703772], [-77.3528778220528, 34.68563856138726], [-77.35309459788058, 34.68533403651868], [-77.35325785771394, 34.68520709169526], [-77.35344804679463, 34.684892917742445], [-77.35355208235339, 34.68467930568118], [-77.35312379705385, 34.684354088160916], [-77.35272105191953, 34.68411688697445], [-77.35245863533684, 34.68407764520369], [-77.35221431591084, 34.68388823224943], [-77.35219662665857, 34.683861625911085], [-77.35163915149629, 34.68391997635906], [-77.3520338975958, 34.683425621683796], [-77.35217984339988, 34.683246492425155], [-77.35254470160808, 34.682868099392124], [-77.35260742580196, 34.68238635435162], [-77.35261308810209, 34.68237132749621], [-77.35258763168586, 34.682331482739926], [-77.35234674071648, 34.681920516667155], [-77.35228794740861, 34.68184386104713], [-77.35219875470588, 34.681792689010415], [-77.3519409192404, 34.68148885678408], [-77.35197309959511, 34.68129780502731], [-77.3517293869161, 34.681347837158974], [-77.35139568380391, 34.68107633820738], [-77.35132476068722, 34.68100843030267], [-77.35126301031701, 34.68089269784272], [-77.3510896701084, 34.68063097223572], [-77.35116897521213, 34.680339954224266], [-77.35088729277068, 34.680171376913414], [-77.35089348239698, 34.680157804810825], [-77.35087587054952, 34.68016465529243], [-77.35064452316212, 34.67996101803827], [-77.35099877882365, 34.679741312311805], [-77.35111570920472, 34.679749877577066], [-77.35133902570371, 34.67981488440806], [-77.3515539196308, 34.679890679030045], [-77.3517354188138, 34.67990397890778], [-77.3521688181045, 34.679834211113764], [-77.35232471258237, 34.6798446020112], [-77.35246443252677, 34.67984674151789], [-77.35270738109054, 34.67988455200475], [-77.35275051267334, 34.67989211326278], [-77.35276901121571, 34.67989682279529], [-77.35278069721177, 34.679911395642684], [-77.35287539359493, 34.680033515315685], [-77.35295085295921, 34.68013172204208], [-77.35294468330213, 34.6801558032344], [-77.35304176397045, 34.680362929735686], [-77.35299773709274, 34.68050916145663], [-77.35317095662003, 34.6805054772027], [-77.35335749338117, 34.68080695739318], [-77.35347054480795, 34.68093363626267], [-77.35360173007926, 34.681083279339354], [-77.35372509979544, 34.68124386077536], [-77.35387480484704, 34.68141087296043], [-77.35400339943367, 34.681671874148144], [-77.35399150262641, 34.68169466142491], [-77.35400471365644, 34.681756831422916], [-77.35394197290199, 34.68214756985028], [-77.35436392482802, 34.68258119268393], [-77.35437948989276, 34.682599213890406], [-77.35438112423334, 34.682615924438885], [-77.35439202744146, 34.6826546839265], [-77.35450003425072, 34.68290063142083], [-77.35464034981598, 34.68306770948752], [-77.35452127921862, 34.68327847835271], [-77.35477939621468, 34.68321177062492], [-77.3549611399822, 34.68315923209141], [-77.35510786338628, 34.68311116126036], [-77.35523240527792, 34.68298640186039], [-77.35533938484308, 34.68285630576865], [-77.3555391986769, 34.6826561693157], [-77.35569180573519, 34.6825304868778], [-77.35611625322913, 34.68244501894679], [-77.35620222596675, 34.68243392958798], [-77.35629289514824, 34.68242512244734], [-77.35635514019177, 34.682344821106824], [-77.35669684190182, 34.68214498501741], [-77.3568224537435, 34.68203694467694], [-77.3569360893941, 34.68196762801209], [-77.35712096093482, 34.68188273195812], [-77.35745150126809, 34.681811437943566], [-77.35758464296981, 34.68179521429754], [-77.35773391695284, 34.68178788667854], [-77.35788870552808, 34.681778648050134], [-77.35801826254215, 34.681769382900505], [-77.35807765362333, 34.68177349363564], [-77.35820176395183, 34.68173108613306], [-77.35821168243105, 34.681724281198704], [-77.35821271703205, 34.68169334814049], [-77.35818434464312, 34.68164153948697], [-77.35822199381056, 34.681601018191465], [-77.3582269254973, 34.68158670602118], [-77.35828645611096, 34.68116872451892], [-77.35829287956835, 34.68110389455216], [-77.3582995199016, 34.68101282603791], [-77.35843648291001, 34.68084047569609], [-77.3584658010308, 34.6808213585054], [-77.35869437957881, 34.680724638898255], [-77.35901775598363, 34.680516934728395], [-77.35911331059567, 34.680457792244006], [-77.35943951749331, 34.679971608559676], [-77.35951316692484, 34.679535809774414], [-77.35954882942264, 34.67946920611679], [-77.3602185311715, 34.67890645066801], [-77.3602292718624, 34.67889419050561], [-77.36023276900119, 34.67888786070214], [-77.36023953702836, 34.67887682573535], [-77.36043500289922, 34.678438349578585], [-77.36055350439584, 34.67835640909915], [-77.36074758575126, 34.67807723432779], [-77.36092743864958, 34.677817647651594], [-77.36100437729603, 34.67766666285958], [-77.36125265404247, 34.67740525128061], [-77.3613540566752, 34.6773384375641], [-77.3618024924757, 34.677572843519734], [-77.36190179871966, 34.67759715805947], [-77.36209620590297, 34.6775918742761], [-77.36235040753492, 34.6775834815855], [-77.36240079392839, 34.67757342822358], [-77.3624782269395, 34.67754761633478], [-77.36299983072776, 34.67752097310871], [-77.36301805164031, 34.67750868061223], [-77.36302584401945, 34.6775202522818], [-77.3630352951915, 34.67752803419696], [-77.36350774066979, 34.67788357371725], [-77.36354164378369, 34.67791161122223], [-77.36359948220824, 34.67793789950916], [-77.36375703985982, 34.67805567295037], [-77.36378560778311, 34.67811802016661], [-77.36399292105344, 34.67827401862408], [-77.36401533825767, 34.67833538742534], [-77.36403586646172, 34.678365324610766], [-77.36421907207628, 34.67857276998348], [-77.36433907033526, 34.6787081426656], [-77.3644069984734, 34.67880171551687], [-77.3644069918053, 34.67882232763976], [-77.36442835374466, 34.67883593099615], [-77.36457523254633, 34.67908703620144], [-77.36491108617643, 34.679215191211476], [-77.36491596532332, 34.67921802718128], [-77.36491703932106, 34.679218120135616], [-77.36492123408532, 34.67921844029161], [-77.3653929261883, 34.67924597606198], [-77.36550614071555, 34.67924664070099], [-77.36570194169482, 34.67927802563198], [-77.36583267527503, 34.67930165329405], [-77.36608128684125, 34.67932705304011], [-77.3662868167238, 34.67934624821818], [-77.36651490486808, 34.67936045011746], [-77.36667940995542, 34.67932827003215], [-77.36693433506719, 34.679241957000016], [-77.36730636716612, 34.6792300958861], [-77.36772878882377, 34.67916006055222], [-77.36794724206524, 34.6790839388002], [-77.36820490942375, 34.67894390961794], [-77.36834351052535, 34.67894548395574], [-77.36852690531994, 34.67896658812863], [-77.36856786773915, 34.67896986601705], [-77.36857735090835, 34.678974882222306], [-77.36872819646862, 34.679043545655304], [-77.36895672800796, 34.679151203792316], [-77.36895694000964, 34.67926167387559], [-77.36940904171053, 34.67937302716934], [-77.36963372418153, 34.679459441209126], [-77.36970510248142, 34.679474126892664], [-77.36992669811394, 34.67950526526894], [-77.37048753386523, 34.679660190647716], [-77.37074953112392, 34.679739139756265], [-77.3712902228704, 34.67976404697431], [-77.37133787493401, 34.679774055661284], [-77.37138080984421, 34.67976090580513], [-77.37195082713791, 34.679724125669395], [-77.37233485728731, 34.67941361512017], [-77.37267976885401, 34.67927430048472], [-77.37306315205845, 34.679074079949956], [-77.37312793915021, 34.678840240331006], [-77.37348729544318, 34.67855349497908], [-77.37365560743032, 34.67879783009795], [-77.37451256854985, 34.67879113390948], [-77.37461399276248, 34.67879560475094], [-77.37497034786315, 34.67857397077145], [-77.37541524797743, 34.67831489424479], [-77.37546386084095, 34.67825658756158], [-77.37608922693555, 34.6778358982936], [-77.37619150977253, 34.67772662229274], [-77.37627522206907, 34.67765761727283], [-77.37687312271515, 34.67719640753099], [-77.37698994394417, 34.67715800484848], [-77.37702969953175, 34.67706646343062], [-77.37716192927401, 34.67688630091047], [-77.37747029918344, 34.67651847153277], [-77.37750793340425, 34.67634085577793], [-77.37773712310681, 34.67599437761903], [-77.37761205259963, 34.67575110320819], [-77.37732001010322, 34.67565533834489], [-77.37709071917953, 34.675595879700744], [-77.37685495609699, 34.675545592809925], [-77.37675661277157, 34.675534525133614], [-77.37656566752707, 34.67550578225776], [-77.37642515946463, 34.675482302418665], [-77.37618818735287, 34.67543105220676], [-77.37598094135625, 34.675430115320985], [-77.37558282583154, 34.6754549467918], [-77.37515155607531, 34.67552872883664], [-77.37495889420727, 34.67554286911758], [-77.37479969043622, 34.67555122916028], [-77.37465016559591, 34.67557566534991], [-77.37443395808083, 34.67553085385056], [-77.37436727625848, 34.67551936389506], [-77.37431691131692, 34.67548992530374], [-77.37407711369409, 34.67531912356345], [-77.37389613611678, 34.67508044914612], [-77.37388255088123, 34.675074682121604], [-77.37387591986368, 34.67506316716894], [-77.37379635988248, 34.674965750514986], [-77.37369962538966, 34.6748212796038], [-77.3736344156683, 34.67482221764426], [-77.37336520296962, 34.67484771201185], [-77.37299459208303, 34.674893260755866], [-77.37248744131597, 34.6749661913626], [-77.37212761884179, 34.67498809414629], [-77.37169540576346, 34.6750180212366], [-77.37085911920492, 34.67523503187953], [-77.37061855864961, 34.67533984996453], [-77.36979628586226, 34.6754613957816], [-77.36958314999526, 34.675507679518745], [-77.3694107969088, 34.67554563541994], [-77.36896571096969, 34.67557316017149], [-77.36873145248202, 34.67558163625118], [-77.36861904812456, 34.67557935008944], [-77.36838253177064, 34.675520534705754], [-77.36785830848424, 34.675445848433085], [-77.36777234795593, 34.675560995386604], [-77.36758538053468, 34.67584209378783], [-77.36741125361065, 34.675951883782204], [-77.36735373033676, 34.67597254806945], [-77.36717374139499, 34.67598452839603], [-77.36705852757291, 34.67599239767921], [-77.36704996264069, 34.67598820500519], [-77.36703422595801, 34.67599171740202], [-77.36657156818528, 34.67597308620576], [-77.36647449118556, 34.67590899454166], [-77.36627576134994, 34.67595757493584], [-77.3661376366178, 34.67591294561938], [-77.36610794981927, 34.67588731369066], [-77.36598741633621, 34.67583148548631], [-77.36592792069571, 34.67573017039449], [-77.36590758972056, 34.675695827051925], [-77.36589395602677, 34.67567302803651], [-77.36595575030194, 34.675264507203], [-77.36583074808412, 34.67519432365734], [-77.36573299009471, 34.675041780297256], [-77.36553469701477, 34.675022806132766], [-77.36551985075357, 34.67499335569716], [-77.36549023026225, 34.67494215447586], [-77.36548294235016, 34.674840063064934], [-77.3655110633563, 34.674750867911555], [-77.36534928371809, 34.674630533913486], [-77.36532124597962, 34.67457032139784], [-77.36511302119848, 34.67441353009788], [-77.36508484938223, 34.67435809440087], [-77.3650595975024, 34.674325521613135], [-77.36488123788511, 34.67412062576433], [-77.36487097446246, 34.67410774834389], [-77.36478478290236, 34.673997771967265], [-77.36478454556608, 34.67399749280964], [-77.36469243112086, 34.67388858954778], [-77.36469475888345, 34.67386996678657], [-77.36467687429048, 34.673854151878736], [-77.36449765195417, 34.673671661674284], [-77.3645067713242, 34.67362046958442], [-77.36434190098123, 34.6734493700728], [-77.36428370369555, 34.67339798215324], [-77.36420931789924, 34.673403048198445], [-77.36412551385418, 34.673322660444015], [-77.36408500186243, 34.67331587241383], [-77.36400405580983, 34.67325210231216], [-77.36399835241482, 34.6732234490698], [-77.3639692706321, 34.673199109052874], [-77.3637650233235, 34.67304125486408], [-77.36377162934775, 34.67300377677007], [-77.36373507781563, 34.67297499559316], [-77.3635471222076, 34.67278239893229], [-77.36349006213523, 34.67278818763556], [-77.36330181534521, 34.67261751738781], [-77.36327648462174, 34.67259653839417], [-77.36325244623396, 34.67257587945565], [-77.36304926843697, 34.6724591623618], [-77.362990987543, 34.672422118503405], [-77.36274415066805, 34.67226522563731], [-77.36271396860771, 34.672241171214075], [-77.36267704853762, 34.672215978417604], [-77.36257622612436, 34.67215010730321], [-77.3624948876959, 34.67209306799333], [-77.36244522826667, 34.67205385045206], [-77.36224481162182, 34.67192371501884], [-77.36216287003805, 34.67187701445629], [-77.36203813539703, 34.67181638026101], [-77.36188627176853, 34.671695744101825], [-77.36172838231818, 34.67164111489464], [-77.36166011327477, 34.671624627635715], [-77.36151827544819, 34.67158484161242], [-77.36145458400158, 34.67155352321723], [-77.3612251103953, 34.671440702770774], [-77.36122227563706, 34.67141850864634], [-77.3611994371577, 34.67140165593289], [-77.36112442051112, 34.671390897611225], [-77.36088747348805, 34.67128204935113], [-77.36081624686231, 34.671253185023154], [-77.36072304106966, 34.67121153426598], [-77.36066220575894, 34.671190760477025], [-77.36053664521224, 34.671157928103895], [-77.36038997500827, 34.67109777308154], [-77.36033897912411, 34.67107506431506], [-77.36022116319158, 34.67100659431249], [-77.36013580320818, 34.67094255409017], [-77.3599367388792, 34.6708313498527], [-77.35987618560415, 34.67080610519477], [-77.35966759589482, 34.67067991696243], [-77.35964160167241, 34.67066435334793], [-77.35962171807634, 34.67065191103518], [-77.35944896670767, 34.67054367468346], [-77.35935928492077, 34.670487486597885], [-77.35911525819373, 34.67033500091351], [-77.35907400098122, 34.67031290399044], [-77.35904102968742, 34.67027860932686], [-77.35881409304915, 34.67011878599041], [-77.35882078916006, 34.669986717562196], [-77.35883585926099, 34.66981940871874], [-77.35893623941726, 34.669630535521165], [-77.35897817526353, 34.66948802482537], [-77.3590898314848, 34.6692971301978], [-77.35891314880917, 34.668969338042906], [-77.35888683898617, 34.668880141217905], [-77.3588225758898, 34.66884645921877], [-77.35860123962632, 34.668705805460235], [-77.35841590278255, 34.66862071997479], [-77.35820898678043, 34.668613579717906], [-77.35813277719328, 34.66856530665915], [-77.35793926316396, 34.66848041980781], [-77.35790062699851, 34.66845676694973], [-77.35793529231982, 34.66824423030696], [-77.35794253952082, 34.66823627647543], [-77.35814111819073, 34.66810760753117], [-77.35829158035767, 34.667944632914526], [-77.35841040699626, 34.667670087223485], [-77.35859787567355, 34.66741516747955], [-77.35858274799462, 34.66722270304641], [-77.35855882043917, 34.666933145839195], [-77.35859873540836, 34.66673667205732], [-77.35857915372313, 34.66644296552897], [-77.35856172720045, 34.66637095394374], [-77.35859213613287, 34.665954547172], [-77.35859224128451, 34.66595378077359], [-77.3585923189355, 34.66595319002992], [-77.3585920317465, 34.665951725466755], [-77.35857002028621, 34.66546944617244], [-77.35854922162972, 34.66527825418844], [-77.35854838450143, 34.66519859196907], [-77.35854236931789, 34.665091831461474], [-77.35854508144311, 34.66498548558882], [-77.35851630732814, 34.66482907688426], [-77.35847035445477, 34.66457008096749], [-77.35848479049072, 34.664506381372675], [-77.35846013056393, 34.66447811698302], [-77.35843561896498, 34.66442866968096], [-77.35841089038622, 34.664272840589675], [-77.35840740849326, 34.66419514522537], [-77.35840221875776, 34.66415218523122], [-77.35840434790286, 34.66412685395991], [-77.35841478337093, 34.66402861223318], [-77.35838903200883, 34.66385972894585], [-77.35838371809011, 34.66378918661869], [-77.35839682393325, 34.663738435840074], [-77.35840909982514, 34.66354200574132], [-77.35797671980946, 34.66306642620113], [-77.35774746122519, 34.66309989261241], [-77.3576598935629, 34.663083316792516], [-77.35761672426503, 34.66315338652215], [-77.3574452328705, 34.663124120546044], [-77.35738332857579, 34.662935618927484], [-77.35742664910286, 34.66283296494303], [-77.35756644714856, 34.662618926655206], [-77.3577021543723, 34.66256599047806], [-77.35772394831771, 34.66199785809269], [-77.35772621726296, 34.661947801044064], [-77.35757365010495, 34.66114691454026], [-77.35754552726927, 34.661128614157484], [-77.35714312961966, 34.66085093306636], [-77.35688584050858, 34.6608278762835], [-77.35684999540663, 34.660802159174615], [-77.35665775718715, 34.66066358402448], [-77.3565014642047, 34.660508991837034], [-77.35641966197849, 34.660439270461914], [-77.3562754199381, 34.660272189773906], [-77.35610662211724, 34.66013807203771], [-77.35587547553314, 34.65991566871642], [-77.35541423009523, 34.659879773190575], [-77.35482485750012, 34.65981433135205], [-77.35478600181719, 34.65977611341798], [-77.35475226262899, 34.65977268138578], [-77.35405400780202, 34.65907620446881], [-77.35400097125228, 34.659033680143835], [-77.35395539098221, 34.6589949739531], [-77.35384235767835, 34.65896440957185], [-77.3532547980968, 34.65869581342499], [-77.35299476019034, 34.65872925353001], [-77.35255913712439, 34.65842113754792], [-77.3521783612419, 34.65804897338256], [-77.35175264969848, 34.65770426815572], [-77.35136450016361, 34.65736368831787], [-77.35101384297832, 34.657106180131564], [-77.35087192644197, 34.65698121632114], [-77.35054331718109, 34.656692924130446], [-77.35025259478032, 34.656505276186664], [-77.3501171147496, 34.65638845963081], [-77.34957886211693, 34.656314780777805], [-77.34983411258719, 34.65589100544667], [-77.34982136645822, 34.65585947912993], [-77.34983944044161, 34.65578990062502], [-77.34995508067638, 34.65541911599775], [-77.34967262810355, 34.65521356413042], [-77.34957316841044, 34.655168771088036], [-77.34933039862297, 34.65510397413741], [-77.34931974263708, 34.65509639438683], [-77.34930940623678, 34.65508577846455], [-77.34913102096317, 34.6548958978578], [-77.34894956003765, 34.654713189594275], [-77.34851514341327, 34.65423432596159], [-77.34837892512955, 34.65408840303803], [-77.34823320509221, 34.653967552113286], [-77.3479744002947, 34.653741049991595], [-77.34773376769583, 34.653533082189426], [-77.34755479588216, 34.65342355881624], [-77.34737293458429, 34.653241671609706], [-77.34695005256404, 34.65282013166454], [-77.34679384819003, 34.65263363799262], [-77.34658113674173, 34.6525777381341], [-77.34648934323235, 34.652518988640075], [-77.34633636864254, 34.65239115597385], [-77.34620073196766, 34.65227818572186], [-77.34593930998646, 34.652255862179274], [-77.3458453714162, 34.65221504027037], [-77.34578826798675, 34.652193242025085], [-77.34551831727086, 34.65206898480785], [-77.34535648110824, 34.652034755057244], [-77.34535133223889, 34.652034681784784], [-77.34532689291667, 34.65201783611986], [-77.34516657574305, 34.651911977532926], [-77.34510519197164, 34.651865020858274], [-77.3449597506229, 34.651672002818444], [-77.34480236862115, 34.65169295365706], [-77.34467944938841, 34.651652854951614], [-77.34463402505216, 34.65165188660193], [-77.3445242223186, 34.65160221638302], [-77.34445792340664, 34.651572225527005], [-77.34443535672365, 34.6515620173004], [-77.34438740077094, 34.65154156204622], [-77.3443162481899, 34.651510782168955], [-77.34428258514492, 34.651496360211965], [-77.34419608448461, 34.65146163615148], [-77.34409930253446, 34.65138097246388], [-77.34397969840026, 34.65131594374443], [-77.3437582432034, 34.651277074924785], [-77.34363070212686, 34.65122344036691], [-77.34348066392847, 34.65115575259269], [-77.34340738270365, 34.65112441303032], [-77.34330574940276, 34.65105704827882], [-77.34326669873589, 34.6510052702617], [-77.34312872199874, 34.65087034975274], [-77.34310483316618, 34.650751640259855], [-77.34300262082215, 34.650703584562365], [-77.3428454782568, 34.65048723220927], [-77.34272636559723, 34.650352755077705], [-77.34259552474953, 34.650271121422634], [-77.34237011669228, 34.65013048528877], [-77.3423170011899, 34.6500150447517], [-77.34211067988991, 34.65001649969988], [-77.34189922867877, 34.649992710098495], [-77.34167195352519, 34.650143940171816], [-77.34129313162592, 34.649856314424134], [-77.34125194441079, 34.649827310719786], [-77.34121418417031, 34.64977025857418], [-77.34105582403369, 34.649466888876844], [-77.34097837567847, 34.64922077163527], [-77.340465095302, 34.64914756905773], [-77.34044688837258, 34.64913851202754], [-77.34044062660736, 34.649137246965836], [-77.34042522039498, 34.64913144317091], [-77.3401996647489, 34.64904022516428], [-77.34010073816926, 34.649009204792705], [-77.33995619976793, 34.648984816496395], [-77.34008408401525, 34.64892633318895], [-77.34013539429137, 34.648839781103895], [-77.34015852835066, 34.64883463591235], [-77.34023000906137, 34.64885589007336], [-77.34031033386233, 34.64882113218949], [-77.34043665115702, 34.64908757236347], [-77.34047344764632, 34.64907227028378], [-77.34082007224046, 34.64881170472382], [-77.34103468220042, 34.64887711153311], [-77.34125592319639, 34.648551340854475], [-77.3413551672855, 34.64815981048248], [-77.34142160082182, 34.6480387643314], [-77.34136756465739, 34.64773611181755], [-77.34141780417363, 34.647597351553415], [-77.34149903383245, 34.647443810732135], [-77.34151502094062, 34.64729387481602], [-77.34151543222244, 34.647286612893915], [-77.34152524749264, 34.64713466218839], [-77.34152893661876, 34.646982642784415], [-77.34153397319996, 34.64686927597882], [-77.34153921813486, 34.64681408422932], [-77.34155123641061, 34.6466682566267], [-77.34156489771698, 34.64650443740288], [-77.34156821699888, 34.64644257826674], [-77.34158925113907, 34.64628915853152], [-77.34160203969061, 34.64620549129064], [-77.34162355719278, 34.646012984648436], [-77.34165457338275, 34.64558942571325], [-77.34165501388088, 34.64558770570895], [-77.3416548271964, 34.645586695065234], [-77.34165475347972, 34.64558540184404], [-77.34162136283771, 34.64522267048993], [-77.34163641500115, 34.645167224842616], [-77.34159740088742, 34.64486668000671], [-77.3415752896244, 34.64475361765571], [-77.34155118164635, 34.64464231739224], [-77.3414433683569, 34.64453849004785], [-77.34127229357439, 34.644563169781534], [-77.34110707709173, 34.644458154889655], [-77.34107469108542, 34.64443756962403], [-77.34102009203782, 34.644407827615254], [-77.34085204243951, 34.644304317569336], [-77.34074503250865, 34.644249660928466], [-77.34070996236751, 34.64423939695368], [-77.34062031943856, 34.64418903223842], [-77.340562258877, 34.64404867162332], [-77.34046728219836, 34.64381162233072], [-77.34041325967897, 34.64364712565945], [-77.34036280617991, 34.64355075404009], [-77.34023853030985, 34.643264433722415], [-77.34023235938704, 34.643249958282986], [-77.34022887288529, 34.64324186683831], [-77.34021682950505, 34.64321428764011], [-77.34009465735475, 34.6429335397768], [-77.3399545690149, 34.64266569577633], [-77.33985584090925, 34.64245764298714], [-77.3398141820408, 34.64234073749077], [-77.33970648922411, 34.642267739705076], [-77.3395541307275, 34.64207705636188], [-77.33944041911548, 34.64193263560762], [-77.33928256872636, 34.64175123009363], [-77.33923584761574, 34.64169874389292], [-77.33907701846022, 34.64150402360781], [-77.3388722932653, 34.64130260118779], [-77.33864043123448, 34.64122031058416], [-77.33819914546518, 34.6411389432022], [-77.33805913649128, 34.64122309081769], [-77.33760513524587, 34.641078552449706], [-77.3375682659089, 34.64104685164961], [-77.33753363256035, 34.64101327013704], [-77.33748937917322, 34.64103132245784], [-77.33650403274558, 34.64085768388854], [-77.33622459667995, 34.64087134847058], [-77.33594601280562, 34.64092483534129], [-77.33588039422855, 34.641315233404974], [-77.33578229352618, 34.641439257025056], [-77.33570567795105, 34.64147539202866], [-77.33561051436712, 34.641612508641956], [-77.33553691423134, 34.64162424342754], [-77.33542375615156, 34.641665607748436], [-77.33533512676668, 34.641689019130816], [-77.33519869840848, 34.64171978776412], [-77.33510021380461, 34.64164863640367], [-77.33491457347, 34.641708252767664], [-77.33471885557456, 34.64178088398206], [-77.33450328325537, 34.641864374398764], [-77.33444629190382, 34.6419340059285], [-77.3342964648267, 34.642053781212304], [-77.334063664186, 34.642244712536254], [-77.33392640457514, 34.64217995114653], [-77.33344284403402, 34.64232569111775], [-77.33274360822406, 34.641938409234626], [-77.33258533513275, 34.64187857444277], [-77.3325358904267, 34.6418251492348], [-77.33249619053724, 34.641779563523386], [-77.33250186409803, 34.6417126768776], [-77.33197868882667, 34.640632315620344], [-77.33165132371053, 34.640415960562365], [-77.33150627765276, 34.64022739579016], [-77.33123902960043, 34.639800672709875], [-77.3308808076558, 34.63976731592396], [-77.33073581234108, 34.63964888791354], [-77.33034397197994, 34.63969762424924], [-77.33023224283733, 34.63972590213433], [-77.33011403576316, 34.63973177174059], [-77.3296090851708, 34.639811008841406], [-77.32947311725067, 34.639852539223256], [-77.32915591922188, 34.639922834539576], [-77.32900121757933, 34.63997226592144], [-77.32868859944114, 34.640257516934426], [-77.3284379964838, 34.640355885428185], [-77.32827134050875, 34.64043144502791], [-77.32817773279592, 34.640683971257204], [-77.32796996590955, 34.640817350258246], [-77.32789465346103, 34.64083853083128], [-77.32741068961755, 34.640962407144904], [-77.32728647878287, 34.64099830605032], [-77.32711140849548, 34.641083556269884], [-77.32668769918975, 34.64120488530461], [-77.32619499574798, 34.641161801358514], [-77.32607840489621, 34.641359104825014], [-77.32581351119046, 34.641356776142544], [-77.32547975602385, 34.64105398235537], [-77.32536464467246, 34.64099297662718], [-77.32495083709438, 34.64076864713219], [-77.32468147644468, 34.64077920140782], [-77.32444196024021, 34.64085935372606], [-77.32432098512339, 34.6408674549596], [-77.3240334969459, 34.64074070378438], [-77.32384853945263, 34.6409725135279], [-77.32363716641292, 34.64107305190184], [-77.32345541943971, 34.641050438191535], [-77.32336444154004, 34.641187774963], [-77.32328480653442, 34.64119652787051], [-77.32314390786782, 34.64109335595025], [-77.32304623500015, 34.641094821943994], [-77.3227948210492, 34.64094907510843], [-77.32254517780885, 34.64093873459791], [-77.32219164649177, 34.64113379727677], [-77.32197623558888, 34.641226021756935], [-77.32177775583914, 34.641309751404506], [-77.32158315007725, 34.641292015735914], [-77.32114444428751, 34.64141536809021], [-77.32097433548509, 34.641448658400634], [-77.32090905162805, 34.64156408867463], [-77.32053841104582, 34.64146700318283], [-77.32034493332833, 34.641502730481285], [-77.32015681058714, 34.64152890297228], [-77.31978381680399, 34.641834940062566], [-77.31977472469157, 34.64183944344991], [-77.31977259974107, 34.641841166855684], [-77.31976741065229, 34.64184505876289], [-77.31918266536566, 34.64209191807321], [-77.3189558111786, 34.64240939813669], [-77.31870755508129, 34.64279464178741], [-77.31877598953642, 34.642241440674354], [-77.3187779803256, 34.6419728187155], [-77.31879077532038, 34.641482447875674], [-77.31886491903481, 34.64111692902341], [-77.31890271409169, 34.641024965239154], [-77.3189462707276, 34.64091395067838], [-77.31899133073328, 34.640774026883975], [-77.31907892782169, 34.64066560695544], [-77.31914374254667, 34.64058267562357], [-77.31940127963519, 34.64027443906728], [-77.31945289599871, 34.64024810603188], [-77.31946885337554, 34.64021892407589], [-77.3194692817392, 34.64019011047619], [-77.31959809537341, 34.63988498997837], [-77.31966036762776, 34.63973039024839], [-77.31979951661067, 34.63930086665532], [-77.31960818068944, 34.6390142282138], [-77.31934188155279, 34.63851962721853], [-77.31921308311034, 34.63835175718087], [-77.31906185381547, 34.638299473074], [-77.31882569777693, 34.63797077351228], [-77.31867798396266, 34.637981752053264], [-77.31852857365897, 34.63800580740212], [-77.31837335526757, 34.63805891604339], [-77.31820659373093, 34.63804830208654], [-77.3177514757703, 34.63815034854731], [-77.31752038085361, 34.63825861468667], [-77.31745294899477, 34.638257932041675], [-77.31740674548175, 34.63829277751658], [-77.31719904009715, 34.63832069956453], [-77.3171275906, 34.63823179100967], [-77.31700237987174, 34.63813608332325], [-77.31685353761624, 34.63801674113345], [-77.31664767335866, 34.63769045299089], [-77.31661158598777, 34.637627918490494], [-77.31633149718697, 34.6374549233246], [-77.3161977262567, 34.63743327414324], [-77.31581178762706, 34.63747033754197], [-77.31569581043472, 34.63747751557508], [-77.31517612167363, 34.63754398187099], [-77.31507957204651, 34.63759704993907], [-77.31485389294096, 34.63779728665713], [-77.31417843722548, 34.63794689728935], [-77.313890368768, 34.63805185375364], [-77.31354988009028, 34.63808247861548], [-77.31329545315393, 34.63766040005313], [-77.31342433940415, 34.63724243856848], [-77.31343931779939, 34.63600646786442], [-77.31338962234024, 34.635959561822624], [-77.31263513524479, 34.635302800295094], [-77.31204125240613, 34.63521672645962], [-77.31173974104688, 34.63477960903673], [-77.3115243416617, 34.63452722641878], [-77.31134616139617, 34.634410954617685], [-77.31119692824007, 34.63419897024076], [-77.31098220566115, 34.63398369452116], [-77.31097187352131, 34.633616319060614], [-77.31121278603, 34.63352751069324], [-77.3116687368066, 34.63335943159165], [-77.31191032562195, 34.63329478759243], [-77.31197319546507, 34.63328148601132], [-77.31208583936615, 34.63332209947802], [-77.31231823982571, 34.6334058910908], [-77.3124363399043, 34.633401413874346], [-77.312614842639, 34.633533831545755], [-77.31306055368546, 34.63391505408657], [-77.31336208504374, 34.63386452544583], [-77.31384235606524, 34.63362816750691], [-77.31384387970282, 34.633365406950674], [-77.31410705416835, 34.63274911854646], [-77.31418192232219, 34.63261047595472], [-77.31426310365079, 34.63246398615919], [-77.31435552172907, 34.63239206432398], [-77.31439795104222, 34.63238867260217], [-77.314503105211, 34.63232994280098], [-77.31467435454887, 34.63240305995175], [-77.31467815869483, 34.63240476372735], [-77.3146795045927, 34.63240528119849], [-77.31468142506337, 34.632406655492], [-77.31468610467279, 34.6324140371489], [-77.31486692556149, 34.632803216761644], [-77.31491563749782, 34.633085465911854], [-77.31502066998625, 34.633204130027174], [-77.31555493718201, 34.63358416905533], [-77.31576128519183, 34.633418476717864], [-77.315885407676, 34.6334614658342], [-77.31624120913368, 34.6338138713887], [-77.31633346373002, 34.633722342436855], [-77.31655549347795, 34.63378490514124], [-77.31660503779902, 34.63375870249127], [-77.31659320054514, 34.633832570129925], [-77.31671369464267, 34.634117430240096], [-77.31672693755567, 34.63432056501962], [-77.31672131036753, 34.63465898114035], [-77.31669472574693, 34.63495791282343], [-77.3167927738834, 34.63549315692151], [-77.31691585530707, 34.63601234192707], [-77.31701411518333, 34.63630678956595], [-77.31719653667592, 34.63660443486419], [-77.31748199444915, 34.63680730236668], [-77.31758700411606, 34.6369792988598], [-77.3177035991052, 34.637056254304596], [-77.31806045265753, 34.63718997253862], [-77.31820505021199, 34.63722015235965], [-77.3184408896009, 34.6372564780669], [-77.31853616794666, 34.63727501165073], [-77.318595243331, 34.63727926773652], [-77.31890074306241, 34.63749659907355], [-77.31912635486233, 34.63737584247804], [-77.31923658560167, 34.63733230257372], [-77.31927105108144, 34.6372633778789], [-77.31944944970351, 34.63704055459613], [-77.3195399803017, 34.63694827809996], [-77.31957791512659, 34.636883137547784], [-77.31968327989628, 34.63684756502887], [-77.319731773892, 34.63685226292982], [-77.31994789095172, 34.6368977173157], [-77.32006959220104, 34.636940509747866], [-77.32022324593686, 34.6369190802927], [-77.32048671999726, 34.63697901194114], [-77.32077096215659, 34.637245219327106], [-77.32090616227256, 34.63729655812758], [-77.3214124600479, 34.637251578974706], [-77.32197832124604, 34.63722358832816], [-77.32204952671343, 34.63723585727243], [-77.32208536054503, 34.637258209765186], [-77.32216343507955, 34.63728882947892], [-77.322311748107, 34.63738400495731], [-77.32244399783853, 34.637658539936325], [-77.3221646754668, 34.63767505491245], [-77.32212388279159, 34.63760633318704], [-77.32189381721449, 34.63763726250053], [-77.32176429935541, 34.63769108569399], [-77.32181749468747, 34.63778829963451], [-77.32203901455226, 34.638149864299535], [-77.32225446562983, 34.63825694586817], [-77.32234664946502, 34.6382350094601], [-77.32257499127701, 34.63825899129143], [-77.32283848369912, 34.63804024936362], [-77.32263525982256, 34.63783717979307], [-77.32283281658724, 34.63794865181981], [-77.32282182347852, 34.63734403982883], [-77.32300690505274, 34.63722113215038], [-77.32301206415941, 34.637188031343655], [-77.32310526156101, 34.637159693062486], [-77.32329369363647, 34.637117380222705], [-77.3233056446059, 34.6371146550535], [-77.32331537091989, 34.63711928723592], [-77.32333153145993, 34.63712866750634], [-77.3235388844615, 34.63725077037472], [-77.32367239030597, 34.637346987219935], [-77.32375362332924, 34.63739961963448], [-77.3238935022531, 34.63747359828221], [-77.32404539005766, 34.637610465168194], [-77.32420713261396, 34.63764976262148], [-77.32422257091402, 34.63765125106109], [-77.32438807309335, 34.63772290111617], [-77.32465924879557, 34.637725407429514], [-77.32471079249936, 34.63773588061967], [-77.32475796897702, 34.637707290079874], [-77.32498506691431, 34.63769602320512], [-77.32502303310667, 34.63769665851874], [-77.32507154190752, 34.63766054110959], [-77.32524156187932, 34.637601893140555], [-77.3253296488759, 34.63762941715848], [-77.32540125193665, 34.63758185287051], [-77.32580081805035, 34.637456843272375], [-77.32590377238265, 34.63730013253435], [-77.32603454468193, 34.63717999226246], [-77.32615403642457, 34.63711936544181], [-77.32623558786429, 34.63707828143297], [-77.32650047723963, 34.63708334735138], [-77.32665553163108, 34.636920370982565], [-77.3269908014747, 34.636731285910265], [-77.32706198511934, 34.63669126425862], [-77.32710930982222, 34.636676812839255], [-77.32719833705133, 34.63659839167428], [-77.32735210920629, 34.63654190280864], [-77.32760367025467, 34.636471156363655], [-77.32765380046116, 34.636450159722486], [-77.32774906143814, 34.63637824394894], [-77.32779336264397, 34.63634808920158], [-77.32782435114221, 34.636343580096764], [-77.32793853788247, 34.6362739767021], [-77.32808403235384, 34.63625242672791], [-77.32812547971123, 34.63604923752175], [-77.32819918188581, 34.63597779792259], [-77.32828113180769, 34.63589899915508], [-77.32833330443478, 34.63584864106358], [-77.32835860546994, 34.63584150786455], [-77.32847569859622, 34.6357606832632], [-77.32865807091663, 34.63555419454803], [-77.32869764926048, 34.63549080086213], [-77.32870994574083, 34.6353330488424], [-77.32873887947724, 34.63519563373428], [-77.32891897729085, 34.635096415474564], [-77.3289490798221, 34.63505827208884], [-77.32899088429343, 34.635068041710824], [-77.3293251478359, 34.635208484328736], [-77.32956579663795, 34.63507786179085], [-77.32964006325774, 34.63541949460374], [-77.32988486294795, 34.63559410803695], [-77.33004987872334, 34.63562940411894], [-77.33030787617403, 34.63574987860157], [-77.33035078109376, 34.635819678931995], [-77.33040623004534, 34.63580989781626], [-77.33043621474333, 34.63577977520072], [-77.33063722000719, 34.63582660488685], [-77.3307342311456, 34.6358492011496], [-77.33086005838345, 34.63588512563749], [-77.33089300946435, 34.635894199696025], [-77.33090456732513, 34.635900402572624], [-77.33092039945667, 34.63589828062279], [-77.33106863096705, 34.63592036613191], [-77.33133776583611, 34.63595438316808], [-77.331398262991, 34.63596778601095], [-77.33143335238171, 34.63597245145582], [-77.33160804405058, 34.635993508098], [-77.33169810846698, 34.636022296899576], [-77.33172850032265, 34.636018217463615], [-77.33175902807952, 34.63601412254653], [-77.3320089380355, 34.63598093876942], [-77.33204875654056, 34.63601894476291], [-77.33211470126753, 34.63601260902263], [-77.33236850924092, 34.63601716439152], [-77.33242172427693, 34.63596566331576], [-77.33259662751976, 34.635965462980195], [-77.33267821748996, 34.63596536943373], [-77.33277245818368, 34.63595953597587], [-77.33294916520298, 34.635841536605504], [-77.33296995135144, 34.6358240768244], [-77.33298284626639, 34.6358223478973], [-77.33299293862592, 34.63580350640464], [-77.33316702661803, 34.63566068588567], [-77.33322309294067, 34.635490628576676], [-77.33358899123158, 34.634877737644594], [-77.33352439221545, 34.634659787326214], [-77.33366728328143, 34.6345145989509], [-77.33376210906005, 34.63454812330324], [-77.33370644840942, 34.63443962799549], [-77.3337856082183, 34.63430683351191], [-77.33387563694177, 34.634416413613934], [-77.33387773595516, 34.634577274369136], [-77.33387361232019, 34.63465224930232], [-77.33387619504573, 34.63483833085792], [-77.33388356783072, 34.63499519872803], [-77.3339893982867, 34.63550414397639], [-77.33406091391788, 34.63565697310669], [-77.33432841008609, 34.635980949366214], [-77.33463731119812, 34.63615670188227], [-77.33488315714501, 34.63592863167359], [-77.33491199975292, 34.63593055878074], [-77.3349330200919, 34.63593196320024], [-77.33506701412615, 34.6359409155559], [-77.33507439291049, 34.635942197385496], [-77.33507557535792, 34.63594148754365], [-77.33521153415509, 34.63595456728917], [-77.33524054416728, 34.63597254518814], [-77.33539499541347, 34.636072936044116], [-77.33543203078472, 34.63609202893937], [-77.33543639287355, 34.63611159258669], [-77.33543531220326, 34.63631237197543], [-77.33542795641502, 34.63643736094374], [-77.33557235813609, 34.63696218795815], [-77.3360074692342, 34.6370778478521], [-77.33606226574848, 34.637140287171775], [-77.3361213987018, 34.63717047228744], [-77.33622033667143, 34.63717726374891], [-77.3365257807697, 34.6373706387502], [-77.33685602117724, 34.63764033987131], [-77.33693808866872, 34.637702371283545], [-77.33712775511123, 34.637768101442354], [-77.33718447428939, 34.63778859028337], [-77.33721097749084, 34.6378137578338], [-77.33741612760133, 34.63790397563605], [-77.3375463229437, 34.63788954951724], [-77.33771492985673, 34.637905547264396], [-77.33799088950508, 34.63791408938894], [-77.33823447813157, 34.638128048335176], [-77.33839770180728, 34.638256713619626], [-77.33862450216321, 34.638406678676546], [-77.33883192982688, 34.638545064059606], [-77.33897466958759, 34.63862552150453], [-77.33907168300107, 34.638505088009325], [-77.33923964182377, 34.63835103249355], [-77.33926187638275, 34.638319200105144], [-77.33938134175341, 34.63812695117425], [-77.33951215856516, 34.63811409874441], [-77.33957326663368, 34.63797251880425], [-77.33976680223334, 34.637827900379776], [-77.3397715863415, 34.63782405777514], [-77.33977833034753, 34.63781937285738], [-77.34005897548113, 34.63764912960862], [-77.34024692175409, 34.63760061298521], [-77.34035573573433, 34.63753287408599], [-77.34044045596826, 34.637447685090535], [-77.34060297114206, 34.6373347231184], [-77.34063335027368, 34.637321338818026], [-77.34065320563086, 34.637312698233146], [-77.34066978411326, 34.6372819594909], [-77.3409041029369, 34.637075659399386], [-77.341046319415, 34.63701248731742], [-77.3411780568165, 34.63684591949878], [-77.34119262704145, 34.636815466906], [-77.34121926980521, 34.63678453568655], [-77.3413519030325, 34.636630554195335], [-77.34162687896779, 34.63630658465934], [-77.34166428652763, 34.63625497201469], [-77.34169187045337, 34.636216789319846], [-77.34180856949781, 34.63605606281326], [-77.34187182494401, 34.635970484898195], [-77.3419444077874, 34.6358804932282], [-77.34197148257327, 34.635874548105676], [-77.34218955839768, 34.63550744581254], [-77.34222076651616, 34.63544005520984], [-77.34222580631314, 34.635380370126306], [-77.34227799357748, 34.63516623358505], [-77.34233564166601, 34.63494329381619], [-77.34231948475374, 34.63486498509783], [-77.34229963312367, 34.63452623873128], [-77.34216924426528, 34.63423342620527], [-77.34201053720733, 34.63390928369034], [-77.34198767518592, 34.63372506876714], [-77.3419310398352, 34.63355696238035], [-77.34186166511809, 34.633103037864586], [-77.34193473270467, 34.63288834082447], [-77.34192526118443, 34.63242026947627], [-77.34196423864783, 34.63204029446409], [-77.34138296372471, 34.6314932409765], [-77.34128917692841, 34.63138356154265], [-77.34115228879361, 34.63130776275816], [-77.34098531182796, 34.63110723611303], [-77.34087306556087, 34.63105940664516], [-77.34085005499864, 34.63092725437721], [-77.34080562547877, 34.630782482729614], [-77.34074800175158, 34.6305192659314], [-77.34067846982188, 34.63029662848624], [-77.34050422534744, 34.63030592602241], [-77.34020522421648, 34.63008561992392], [-77.34004259013889, 34.63006998634168], [-77.33982717632361, 34.63012241759081], [-77.3395818763071, 34.63030704348397], [-77.33946819706216, 34.630396917480226], [-77.3392644755578, 34.630508093404394], [-77.33911761258501, 34.630540786619605], [-77.33911278384629, 34.63054967844207], [-77.33910578662342, 34.63054047658534], [-77.33910469616956, 34.63052872542034], [-77.3391127180473, 34.630321739060584], [-77.33912820814355, 34.62992205381656], [-77.33912916034991, 34.62989748567238], [-77.33912435025002, 34.62981057936988], [-77.33909535013942, 34.62918546129207], [-77.33911525132203, 34.62905540139392], [-77.33908686482846, 34.62885586126906], [-77.33889349765218, 34.628661413280554], [-77.33874563745076, 34.62838346692716], [-77.33828322564307, 34.62842708441879], [-77.33820804608501, 34.62843598442193], [-77.3381453456971, 34.62842403460003], [-77.33788374407243, 34.62841498165131], [-77.33781015422889, 34.62839054172128], [-77.33766085100808, 34.62823531999629], [-77.3376173469293, 34.627805259435824], [-77.33765208819536, 34.627568244209456], [-77.33772674035951, 34.62724013643852], [-77.33768729945169, 34.62703493985573], [-77.33726260422685, 34.626806697114105], [-77.33723758684327, 34.626791608736085], [-77.33722860141371, 34.62679516439091], [-77.33690487873073, 34.62682680573003], [-77.33721001259467, 34.626757583325016], [-77.33693124555529, 34.62640119175267], [-77.33712305773749, 34.62622140345993], [-77.33729023872245, 34.62616521957888], [-77.33765719082933, 34.62594654583594], [-77.33770506206452, 34.62593193040622], [-77.33780513149856, 34.62597878229812], [-77.33815304623144, 34.62611273864458], [-77.33847955560917, 34.62660075421531], [-77.33849705843545, 34.62660827603914], [-77.33894713146312, 34.62683644794482], [-77.339176009399, 34.62688102446291], [-77.33940655490596, 34.62680699802273], [-77.33952982612875, 34.626830699666286], [-77.33984445859896, 34.62702186876249], [-77.34008482865752, 34.62687977891588], [-77.34044256242635, 34.62681254418079], [-77.34060149149698, 34.626588328275275], [-77.34067707695563, 34.62638664719851], [-77.34093985791132, 34.62633474623799], [-77.34086328099603, 34.626832789064416], [-77.34074909189606, 34.627143136992544], [-77.34064996843668, 34.627844928149905], [-77.34052427971801, 34.627850743067725], [-77.3406352528295, 34.628086017423165], [-77.34070299832075, 34.62810888491427], [-77.3410431221275, 34.62833523121454], [-77.34144040372945, 34.62859287165243], [-77.34151952750753, 34.628631197307165], [-77.3415584202786, 34.62872002321642], [-77.34161936785836, 34.628873314972424], [-77.34178857869728, 34.62911042435337], [-77.34171409566525, 34.6293940329373], [-77.3416958197428, 34.62954515648869], [-77.34200595958978, 34.62981459077099], [-77.34205594797857, 34.62986522359272], [-77.34228725190391, 34.62983057575779], [-77.34232518119452, 34.62981026960714], [-77.34256023547233, 34.62975184905962], [-77.34276344834988, 34.629612350768994], [-77.34291064163425, 34.62953794725486], [-77.34318620301921, 34.62976254194769], [-77.34323611383259, 34.6298245061626], [-77.34344789265356, 34.630148611430684], [-77.34380130922484, 34.630784484478845], [-77.34384989593244, 34.63090539154034], [-77.34387665620395, 34.63093374095141], [-77.34392943589201, 34.63103029025603], [-77.34409686845449, 34.63156450055618], [-77.34407878357773, 34.631749986835636], [-77.34410973864695, 34.63186586527977], [-77.34425228872, 34.63240491686456], [-77.34470887071015, 34.63242525708412], [-77.34477353989614, 34.632436731730046], [-77.3448153006616, 34.632438191307095], [-77.3453563389227, 34.63236254887988], [-77.34539493413888, 34.632343147956625], [-77.34551508679982, 34.63220060181472], [-77.34592034107375, 34.63177197651389], [-77.34603513593112, 34.631661873853645], [-77.3461016889772, 34.63147222396019], [-77.34638609915656, 34.630904056347376], [-77.34642770000309, 34.63069396814703], [-77.3466404621547, 34.63057700826576], [-77.34664803932846, 34.63056608337061], [-77.34666909345353, 34.63055030787625], [-77.34685278031704, 34.63042363472695], [-77.34692208489689, 34.63038559549042], [-77.34708774360983, 34.63023433736018], [-77.34719265324642, 34.630139189791706], [-77.34722844301275, 34.63010716445741], [-77.34728178158885, 34.63004416927808], [-77.34744994313573, 34.629826727030334], [-77.34753537477619, 34.62972652506952], [-77.34765105304893, 34.62957145591449], [-77.34782060851825, 34.62932562974033], [-77.34794944787343, 34.62912682587235], [-77.34811079611887, 34.62892936155473], [-77.3483365584473, 34.62863330941622], [-77.34840745415079, 34.62853913647212], [-77.3484630047973, 34.62849687744659], [-77.34861214092697, 34.628363492712914], [-77.34873508633873, 34.62825805002464], [-77.34880663942783, 34.62824463642216], [-77.3490173063069, 34.62806966534109], [-77.34918322491315, 34.627929037803185], [-77.34929578001089, 34.6276575630161], [-77.34917076280493, 34.62725707032152], [-77.34916776726521, 34.627247415749586], [-77.34917051728995, 34.627239481174186], [-77.3491794725671, 34.627239819228244], [-77.34945492635408, 34.62706200776395], [-77.3495129562405, 34.626902508219175], [-77.34974227838939, 34.62689918412152], [-77.34994334358706, 34.62687516215458], [-77.35005094068939, 34.62684237696742], [-77.35013852250599, 34.62681937258246], [-77.35033140165832, 34.62667131268205], [-77.35054119974284, 34.6265281410037], [-77.35060017535322, 34.62639004751882], [-77.35107874733549, 34.62577456470912], [-77.3511103948107, 34.62574366838495], [-77.35111638432377, 34.625730790959004], [-77.3511271480265, 34.62571800250015], [-77.35162193257496, 34.625103880086606], [-77.35176689736909, 34.625003774793086], [-77.3518155121917, 34.624779436071584], [-77.35187671559137, 34.62443913350634], [-77.35207474635742, 34.624172019528224], [-77.3522144392725, 34.62408726952802], [-77.35296198481976, 34.623777927686], [-77.35317780694982, 34.62365235760669], [-77.35326753948566, 34.62342760523352], [-77.35348924847519, 34.62346527295076], [-77.3542141828105, 34.622920720083066], [-77.3548448274858, 34.62275774092167], [-77.3554551736639, 34.622380118183116], [-77.35563363381041, 34.622096539076495], [-77.35600293947832, 34.62164423779335], [-77.35619577256949, 34.621372366782595], [-77.35638753161358, 34.620777753731595], [-77.35640739366868, 34.62073694699796], [-77.35641232771458, 34.62072496218282], [-77.35642281359202, 34.620693260078276], [-77.35653085838291, 34.62060287515447], [-77.3569033393515, 34.62033378862148], [-77.35721148462828, 34.62023514985609], [-77.35765376088492, 34.61970851424787], [-77.35786484435305, 34.61953229419297], [-77.35794789862854, 34.61924164007684], [-77.35800043985623, 34.61919324887276], [-77.35827186619919, 34.61906271798924], [-77.35833347146382, 34.61876160720183], [-77.35836330774711, 34.618723306253436], [-77.35839490448069, 34.618683924108204], [-77.35845932772968, 34.618600558628856], [-77.35854292903377, 34.61857210852456], [-77.35859206002559, 34.61858055635085], [-77.358647652451, 34.61856398444641], [-77.35878915468041, 34.618599615475425], [-77.35889725063949, 34.618564082384765], [-77.35943009701617, 34.6184448957428], [-77.35957767273479, 34.61838910376192], [-77.35977968335106, 34.61812894264713], [-77.35980070791703, 34.61794133613729], [-77.35978806297527, 34.61770318436768], [-77.35972881169457, 34.617549374090736], [-77.35957814096948, 34.617422285188866], [-77.35954379937506, 34.617350806502714], [-77.35949668925927, 34.617320563094054], [-77.35945879107015, 34.617030208075434], [-77.35918409872687, 34.61709493618162], [-77.35890016532602, 34.61698185352415], [-77.35884489088203, 34.61693066766349], [-77.35879000912846, 34.61686960104893], [-77.35844293250929, 34.61662309784241], [-77.35844417463433, 34.61657098975397], [-77.35839596099714, 34.61656541731143], [-77.3582123782459, 34.61642951443477], [-77.35819893001434, 34.61642924080161], [-77.35802456753255, 34.616258747907196], [-77.35802366553436, 34.61623546703135], [-77.35800193948441, 34.61621415463377], [-77.35778622845515, 34.61586849213754], [-77.3577743377272, 34.615691064711356], [-77.3576664974805, 34.61546116887493], [-77.35744268185323, 34.615247126293596], [-77.35721404631897, 34.615239817391945], [-77.35696646589031, 34.6151373464873], [-77.35721420328227, 34.61493485191832], [-77.35741408894354, 34.61486362760439], [-77.3576113513814, 34.61462000143666], [-77.35782264992332, 34.61439550668474], [-77.3580028923522, 34.61432772522089], [-77.35836335131523, 34.61405076248987], [-77.35846839467341, 34.613995494473336], [-77.35879145008771, 34.61396165271323], [-77.35883483935568, 34.614019390627185], [-77.35896982269256, 34.61423225951408], [-77.35913906698497, 34.614400161738224], [-77.35927696631853, 34.61470611025679], [-77.35957939005456, 34.614849887068786], [-77.35979994053181, 34.614542433290104], [-77.36004491040421, 34.614617649193676], [-77.36036788758382, 34.61460422163579], [-77.36074590037472, 34.6145760321885], [-77.36076208959675, 34.61457648660927], [-77.36077694787757, 34.61457299923671], [-77.36099734090915, 34.614557280804945], [-77.36115628609747, 34.61455982361495], [-77.36116863893807, 34.61454592446226], [-77.361290683192, 34.61451506172851], [-77.36153133402652, 34.614459760738455], [-77.36155052355144, 34.61445420747128], [-77.36157442510205, 34.614448483721766], [-77.3619446724783, 34.61453952495202], [-77.36230669795242, 34.614403533517354], [-77.3623389249426, 34.614397951396725], [-77.36235974378928, 34.61438360734721], [-77.36239505404063, 34.61435610931552], [-77.3627332615461, 34.61406604144174], [-77.36284191455451, 34.61398421927798], [-77.36294803697564, 34.61385195976106], [-77.362850683825, 34.613739661525074], [-77.36279248837472, 34.61344979578659], [-77.36276782149588, 34.61341643794565], [-77.362733576017, 34.613366253483505], [-77.36267752703922, 34.61325406627353], [-77.36268584827178, 34.613092129474275], [-77.36270032452593, 34.61303850780413], [-77.36270927989597, 34.613010878388565], [-77.36273375659462, 34.61296477768897], [-77.36278341719976, 34.612867710650164], [-77.36281616982939, 34.6128095560237], [-77.36286181114306, 34.61272851683686], [-77.3629462707481, 34.61257855194613], [-77.36301859814, 34.612450129138196], [-77.3630763710936, 34.61234754799417], [-77.36312825648946, 34.6122481966171], [-77.36317111769887, 34.61216775838065], [-77.36319722327882, 34.61211787490925], [-77.36330494696088, 34.61191222207753], [-77.36332052487924, 34.611882482676265], [-77.36343774530721, 34.61165869829402], [-77.36352282489048, 34.61136177022313], [-77.36356326980139, 34.611259588566064], [-77.36359080721579, 34.61121211085175], [-77.36366129383362, 34.61105296835318], [-77.36381294921608, 34.610643170812565], [-77.3640591571202, 34.610295581305884], [-77.36418192041418, 34.610138123447946], [-77.3643117656191, 34.609986760360435], [-77.36454078668095, 34.609623647027846], [-77.36471505485596, 34.60935204983009], [-77.36493670679802, 34.60914376550307], [-77.36505531761001, 34.60887851005128], [-77.36510059855706, 34.60880656530764], [-77.36525505170816, 34.60859146535619], [-77.36544118588446, 34.60845626556316], [-77.3654949166086, 34.60843146460006], [-77.36555070255086, 34.60838263557088], [-77.36576882844989, 34.608221617169235], [-77.36588923423912, 34.608049020462744], [-77.36618587410469, 34.60776146688876], [-77.36657857897913, 34.60738553590737], [-77.36663799392808, 34.607334063747544], [-77.36667784975448, 34.60730584382686], [-77.36683074807212, 34.60718458873045], [-77.36707212638737, 34.60699865353661], [-77.36713610309555, 34.60694959708403], [-77.36733247325245, 34.60685243196673], [-77.36746635805626, 34.60679722777185], [-77.36772909607373, 34.60665371151677], [-77.36818656122432, 34.60637842139724], [-77.36825482990709, 34.606357406421985], [-77.36828486450477, 34.606323077289595], [-77.36839697991442, 34.60627459566527], [-77.36864905260349, 34.60616366725953], [-77.3689494907302, 34.60609406698723], [-77.36904324015866, 34.60605765462732], [-77.3692500273655, 34.605929066586], [-77.36958189797267, 34.60583497970544], [-77.36958805711376, 34.605678521508125], [-77.36983176185609, 34.60544068095271], [-77.369937866504, 34.60531783157274], [-77.37009861934122, 34.605180437946274], [-77.37022603878222, 34.60507618607978], [-77.3704474675805, 34.60494410556782], [-77.37062034063285, 34.60463334350433], [-77.37080984600235, 34.60443294698376], [-77.37104051582523, 34.6041956723912], [-77.37114580349586, 34.60389712704247], [-77.37116801585883, 34.60358776559977], [-77.37092919774359, 34.60336258745381], [-77.37062096172937, 34.60291669582671], [-77.37037727425329, 34.60317967840917], [-77.37017434136192, 34.60310320902639], [-77.36983272856527, 34.60283513720152], [-77.36947548719058, 34.60310753734925], [-77.36939567889192, 34.6031127602308], [-77.36904437721778, 34.60306684987776], [-77.36865725509877, 34.603272853218456], [-77.3686408345998, 34.60327762890696], [-77.36825612021175, 34.60304503619478], [-77.36821218808531, 34.60295211052407], [-77.3680912914908, 34.60292215676236], [-77.36787589476512, 34.60251385874929], [-77.36746805106895, 34.60255435493385], [-77.36697382647652, 34.60255068281357], [-77.36667977357314, 34.6025939142185], [-77.36652973574519, 34.602459571997386], [-77.36636050624878, 34.60232226010606], [-77.36608482343334, 34.602153916572675], [-77.36589177171071, 34.60197409998821], [-77.36575393481209, 34.60170908049258], [-77.36569543876192, 34.601568905554146], [-77.36547519950366, 34.60120059070378], [-77.3654033891593, 34.601084459375066], [-77.3652805699248, 34.60077952631369], [-77.36549831607348, 34.60039205419455], [-77.36554391928748, 34.600366167057196], [-77.36589260454498, 34.5999936633401], [-77.36602840076179, 34.59996901317562], [-77.36726505995998, 34.5996446751846], [-77.36745220856093, 34.59959938314618], [-77.3674692400773, 34.59959327372495], [-77.36748089521438, 34.59960103816975], [-77.36793738178307, 34.59954786149318], [-77.36899829103388, 34.59944622457394], [-77.36904576578642, 34.59943666514319], [-77.36907185740145, 34.59941259013116], [-77.36955759075849, 34.59961222574849], [-77.36976328646288, 34.60005811295886], [-77.3697102279993, 34.600141675164984], [-77.36971202878733, 34.60027246535773], [-77.36983369233616, 34.60025025986379], [-77.37000736730037, 34.60094799846363], [-77.37024573648513, 34.6013184943287], [-77.37033053679656, 34.60143714351275], [-77.37047018580105, 34.60173046115305], [-77.37045131156458, 34.60191631882448], [-77.37062132501887, 34.601915144833356], [-77.37077517978193, 34.60211109426777], [-77.37078611478125, 34.60235639201579], [-77.37119353097962, 34.60224279652765], [-77.37140944347077, 34.602297741560015], [-77.37152667921315, 34.60230112958661], [-77.37180359206485, 34.60224016644845], [-77.37218074589924, 34.60233321375729], [-77.37218091159687, 34.60235125506099], [-77.37219767789196, 34.60236332647499], [-77.37222506207587, 34.60235632656451], [-77.3727058545146, 34.60255921364228], [-77.37298586989638, 34.602558663168935], [-77.37322567035243, 34.602440978264134], [-77.37330973192302, 34.60217059715526], [-77.37338014403393, 34.602119880804835], [-77.37352750123898, 34.601980542689176], [-77.37357726756791, 34.601937109917486], [-77.3735857232905, 34.601927667759895], [-77.37361320839045, 34.60191460332334], [-77.37377436158292, 34.601842437789735], [-77.37387111982522, 34.601769376234024], [-77.37401174206073, 34.601644915455246], [-77.37410642539741, 34.601564325371825], [-77.37416859774413, 34.60149877489981], [-77.37434476239781, 34.601362105419255], [-77.37453934705542, 34.60114435286611], [-77.37454961952983, 34.60112863260814], [-77.37456284261444, 34.601117269422296], [-77.37461487131065, 34.60107743957939], [-77.37495705388348, 34.60083207871995], [-77.3751135868226, 34.60080568240264], [-77.37522056911861, 34.60033795300605], [-77.37524573964627, 34.600193469904355], [-77.37499479419864, 34.599845382236765], [-77.37495454779987, 34.59896506219853], [-77.37456362036761, 34.59866595657974], [-77.37453324264958, 34.59863060596977], [-77.37451238949711, 34.59860087322391], [-77.37421770976644, 34.59816700922154], [-77.37394821077335, 34.59783302511376], [-77.37377572682885, 34.59766533079127], [-77.37355744662707, 34.597275481314774], [-77.37357075389147, 34.59703827830671], [-77.3735784772872, 34.59682437305963], [-77.37363167791845, 34.59618038207098], [-77.37377642638155, 34.59553952262699], [-77.37396691455154, 34.5954881630502], [-77.37406391311914, 34.59526899573847], [-77.37456489411463, 34.594680222712725], [-77.37484277809021, 34.59460701372302], [-77.37495901323504, 34.59459401829465], [-77.37499250986929, 34.594674546357346], [-77.3749980096606, 34.594751933124336], [-77.3747933125366, 34.59516391804698], [-77.37489864249585, 34.595637984031214], [-77.37520004531999, 34.59595444384027], [-77.37535263629246, 34.596099827109775], [-77.37549448559827, 34.59660816228705], [-77.3761407159981, 34.5964891046122], [-77.37626934968984, 34.596510927567586], [-77.37653480724533, 34.59651906350354], [-77.37683656339311, 34.596468291084435], [-77.37692893657731, 34.59641919600698], [-77.37725704923477, 34.59615381237871], [-77.37750999888893, 34.59647075858131], [-77.377080119721, 34.596695652144305], [-77.37692880296144, 34.59687794324768], [-77.37689909442503, 34.59695135983144], [-77.376864500053, 34.596988325779], [-77.37667082616792, 34.597162965910115], [-77.37637513817313, 34.5974833925762], [-77.37646322684043, 34.597818564890495], [-77.37647476309499, 34.597957826821094], [-77.37681851140712, 34.598268636734694], [-77.37687655051776, 34.59831611445081], [-77.37674623523108, 34.59870361188367], [-77.37669696943794, 34.598886153545955], [-77.37650194954976, 34.59916336834997], [-77.37692792342293, 34.599911183809496], [-77.37693542110348, 34.59994195346147], [-77.3769442056793, 34.59994877434667], [-77.37771603225053, 34.600353408708514], [-77.3779376603785, 34.600415994081544], [-77.37811013848008, 34.60039656076657], [-77.37828154757027, 34.60042055569328], [-77.37830719009816, 34.60042413165403], [-77.37837345289778, 34.60045107813668], [-77.37850422332666, 34.600520407431816], [-77.37853350408855, 34.600537361125006], [-77.37862278297831, 34.60055604457974], [-77.37882279209748, 34.60060858579606], [-77.37889830349863, 34.60066615270122], [-77.3790764432292, 34.60072332201342], [-77.37929241770368, 34.60068599784994], [-77.37942680905485, 34.60071997125214], [-77.37948947037741, 34.60071322507477], [-77.37960389317894, 34.60075022590201], [-77.37968651213667, 34.60078371515109], [-77.37971220483489, 34.60079594769072], [-77.37980541013027, 34.60081019765173], [-77.38008059398177, 34.60093520633], [-77.3801853600252, 34.600868287098365], [-77.38033234917825, 34.60088763956745], [-77.38047472012752, 34.600911770411734], [-77.38056770249722, 34.60091263136974], [-77.38065766186315, 34.60091487584245], [-77.38067177797177, 34.6009211200467], [-77.38069480480094, 34.600919120135565], [-77.38086883438882, 34.600936550392404], [-77.38098255274355, 34.60094262568724], [-77.38126294939497, 34.60095876155323], [-77.38165413098244, 34.60096518401627], [-77.38165706859834, 34.60096340123728], [-77.38167410301149, 34.60094712360503], [-77.38185417156829, 34.60077637904], [-77.38190306345138, 34.6007728586018], [-77.38205125762688, 34.60066006526739], [-77.38215707638575, 34.60058527574949], [-77.38219044134377, 34.600466492204056], [-77.38224837802315, 34.60038829428691], [-77.38234242294125, 34.60034328915061], [-77.38236314427586, 34.60044160216547], [-77.38239476189308, 34.600491610140246], [-77.38244540835359, 34.60051598164603], [-77.38252636088012, 34.60075537986255], [-77.38262395996347, 34.60082857738417], [-77.38283942438485, 34.60098498106707], [-77.38294556848919, 34.60109242170222], [-77.3832334762279, 34.60130664641591], [-77.38358959728684, 34.601154937685166], [-77.38362762961158, 34.6011529889087], [-77.38365332575624, 34.601132459415645], [-77.38390018022356, 34.601200153733956], [-77.38402174065624, 34.60120077773541], [-77.38420746555288, 34.60122498952465], [-77.38422532793635, 34.60122758408608], [-77.38441584057115, 34.601306726214], [-77.38473038107942, 34.60128837401118], [-77.3848099661728, 34.60128453180892], [-77.3849389984831, 34.60120505203785], [-77.385204108924, 34.60116994096698], [-77.38539116833869, 34.6010557791061], [-77.38540119317919, 34.60104114099438], [-77.38542650959567, 34.60103421030788], [-77.38559825282094, 34.60104285385487], [-77.38572129618159, 34.601098711653776], [-77.38585717355869, 34.60121168475803], [-77.3859488577181, 34.601245305823014], [-77.38599233676577, 34.601243032403374], [-77.3861572904333, 34.601346138663644], [-77.38619353624965, 34.60137099783944], [-77.38638641806082, 34.60146912593573], [-77.38676448948107, 34.60148817206914], [-77.38678053604534, 34.601490972165614], [-77.38679103057896, 34.60149032752315], [-77.3868413404615, 34.60149438006991], [-77.38717462844699, 34.6016690664038], [-77.3873375151644, 34.60167194831806], [-77.38772702355382, 34.60153717441228], [-77.38796289586534, 34.60152402020325], [-77.3880851233484, 34.60144672910141], [-77.3882782095327, 34.60137215587761], [-77.38835704360488, 34.60135073068517], [-77.38844571447024, 34.601358608100455], [-77.38865371202833, 34.60133808112956], [-77.38875116305695, 34.601359706819125], [-77.38897800444612, 34.601366544106035], [-77.38937477061025, 34.601376356396415], [-77.38953940293898, 34.601370695736634], [-77.38969623219347, 34.60133841724667], [-77.39010708837458, 34.601448119186955], [-77.39032762196172, 34.6015449318785], [-77.39076346723402, 34.60173307124999], [-77.39111583768535, 34.60177326504527], [-77.39185384335877, 34.601991294115415], [-77.39190405587819, 34.602015449340804], [-77.39191549907369, 34.60202416982104], [-77.3926923121935, 34.60191371163149], [-77.39271051088664, 34.60190225122226], [-77.39308645516346, 34.601695883465965], [-77.3932287952345, 34.601575868063435], [-77.39334979185047, 34.60154599728291], [-77.39348058708205, 34.60157836415083], [-77.39382477890214, 34.60139039706121], [-77.39387472437093, 34.6013831661611], [-77.39391562537236, 34.60136755168959], [-77.39397495097052, 34.601314936202236], [-77.39407179265638, 34.6012812663424], [-77.39409732783074, 34.60126978003162], [-77.39424490528178, 34.601250203567446], [-77.39426885460405, 34.60125262637911], [-77.39430612078843, 34.60122703151299], [-77.39457179893334, 34.60113062864393], [-77.39466298306488, 34.60112857283908], [-77.39486344899399, 34.60097085120026], [-77.39505711879156, 34.600883957605824], [-77.39513589904446, 34.600807791032096], [-77.39518548567611, 34.600715777286965], [-77.39525419196923, 34.600670853718576], [-77.39540761862152, 34.60063673342449], [-77.39545125337159, 34.6006209927209], [-77.3957849228275, 34.60056419774842], [-77.39584537345773, 34.600553172547365], [-77.39604500101308, 34.60037676296436], [-77.39635579072305, 34.60024767782198], [-77.39657387960933, 34.600090949782], [-77.39663362963196, 34.60006895947149], [-77.39668790977694, 34.60001602949149], [-77.39688756617151, 34.59989468322213], [-77.3970277537561, 34.599837294064535], [-77.39726402337142, 34.59973687362777], [-77.39742187269805, 34.59967412735455], [-77.39749799713647, 34.59961508245035], [-77.39770470105537, 34.5995032593431], [-77.39810926680515, 34.59933626546044], [-77.39821010622026, 34.5993334908217], [-77.39832827062729, 34.599286009777984], [-77.3987733218793, 34.59910670182237], [-77.3989983330058, 34.59899733273167], [-77.3993592953304, 34.59887570572333], [-77.39939244302869, 34.59887038079576], [-77.39941079480013, 34.59885233625582], [-77.39944491196422, 34.59882764414478], [-77.39978655587844, 34.59848407701316], [-77.39986884455693, 34.59843055919894], [-77.39998283378587, 34.59832546389015], [-77.39999589426306, 34.59809806212105], [-77.4000740640758, 34.597887728257604], [-77.40010598397954, 34.597802663941714], [-77.40009310115536, 34.597672694823785], [-77.40018067174745, 34.59751290113524], [-77.40020428773511, 34.59746980795579], [-77.40023455042083, 34.59744000020882], [-77.40037772353146, 34.597337518897504], [-77.40046032233562, 34.597284124807246], [-77.40057477415638, 34.59721059625769], [-77.40089742784315, 34.59699675682913], [-77.40096887350572, 34.59697457398162], [-77.40099982242079, 34.596938355006166], [-77.40103346186994, 34.596900159164605], [-77.40136297005768, 34.59646128433687], [-77.40137942912727, 34.59644339877504], [-77.40138483955363, 34.59642488608322], [-77.40156001658107, 34.59621114402566], [-77.40157054924461, 34.59619715043572], [-77.40157870465586, 34.5961846263329], [-77.40161651504468, 34.596118301793865], [-77.40171289334096, 34.595952976849176], [-77.40173152795418, 34.59592277922772], [-77.40175706145894, 34.5958798851086], [-77.40198594354999, 34.59548900294642], [-77.40205823699613, 34.59537847261028], [-77.40215114625448, 34.59517540005179], [-77.40227311349186, 34.59502299079681], [-77.40229098541892, 34.594869751019246], [-77.40233023787252, 34.59478312406986], [-77.40234818524833, 34.594742738929625], [-77.4023973847306, 34.59463349107621], [-77.40243373993307, 34.59457523777607], [-77.40248327244211, 34.594501344421275], [-77.4025452239957, 34.59442474386999], [-77.40271526346183, 34.59429323636624], [-77.40283029882036, 34.5942108791335], [-77.40293930458336, 34.59418310257685], [-77.40312431230043, 34.59405101165627], [-77.40324890940812, 34.59394202169137], [-77.4034443940631, 34.59358024570405], [-77.4035576714597, 34.592897648769245], [-77.40365652775311, 34.59270048155625], [-77.40352034609663, 34.592497027162324], [-77.40341101382454, 34.59231133597074], [-77.40337814363491, 34.592267812686906], [-77.40334334266255, 34.592108813756795], [-77.40334006261799, 34.59210204480802], [-77.40333333984647, 34.59206711249738], [-77.40330735414534, 34.59192971304897], [-77.40330196371535, 34.59190249720139], [-77.40330126285404, 34.59151256925917], [-77.40329163424869, 34.591434492958605], [-77.4032906267217, 34.59105498176803], [-77.40326589168357, 34.5907066131631], [-77.40325704615339, 34.59055308675521], [-77.40327143352886, 34.59020860005085], [-77.40333329649414, 34.59005217313637], [-77.40341298457332, 34.58984945963709], [-77.40351994256004, 34.58974816132272], [-77.4037273461779, 34.589470767975754], [-77.40383286373367, 34.58939211648722], [-77.40393063535029, 34.58926431569291], [-77.40383331588764, 34.589164176173824], [-77.40372733525138, 34.58903249332103], [-77.40367675864246, 34.58887637871932], [-77.4036624899624, 34.588808576661506], [-77.40362132208526, 34.588672091135585], [-77.40361401490733, 34.58858294226103], [-77.40360703978136, 34.58846186422115], [-77.40360510261871, 34.58833046241292], [-77.40368973745595, 34.588025353710265], [-77.40372730833005, 34.58792784718934], [-77.40381470917427, 34.587676919243506], [-77.40386911367288, 34.587574890352954], [-77.4039041760792, 34.587379247008094], [-77.40400055689281, 34.58713134436203], [-77.40403204524681, 34.58703059052252], [-77.40412132842864, 34.58671829194045], [-77.40412994477754, 34.586697379320455], [-77.40412980834466, 34.58668811452035], [-77.40413324630055, 34.58667477581892], [-77.40422303076109, 34.586359676567156], [-77.4042860420625, 34.58624098990826], [-77.40430520563606, 34.58604007912675], [-77.40435787624877, 34.5858060458252], [-77.40436434598597, 34.58564241544234], [-77.40435386334497, 34.58538204886494], [-77.40434900207181, 34.585137386716184], [-77.4043361261694, 34.58496003240297], [-77.40426075446423, 34.584696624072194], [-77.4042568712444, 34.584400778981944], [-77.40412125961039, 34.58415756268142], [-77.40411682594751, 34.58414253055029], [-77.40399711669095, 34.583868987682436], [-77.40372720742666, 34.58340580576281], [-77.4037036631977, 34.58337837595099], [-77.40368219750425, 34.58335610543428], [-77.40333316916404, 34.58307224684363], [-77.40326392083821, 34.583066511400965], [-77.40293913414827, 34.58274449741755], [-77.40274293231167, 34.58285391949379], [-77.40226851353808, 34.582837515490866], [-77.40215107448223, 34.583070625744625], [-77.40183085796545, 34.58311916823579], [-77.40170397092305, 34.583159830883524], [-77.40136301164625, 34.582991915345104], [-77.40113685322211, 34.58311796565922], [-77.40075769755529, 34.582928990618726], [-77.4006119812156, 34.5829101156644], [-77.40057495024159, 34.58289619559453], [-77.40040049704555, 34.58279255539593], [-77.40010932927039, 34.58267511762206], [-77.39978689053893, 34.582795519460745], [-77.39941359557218, 34.58312293448703], [-77.39909767263227, 34.583275041079865], [-77.3989988107906, 34.58328860653948], [-77.39886335560804, 34.58334827692058], [-77.39832467002444, 34.5834028086061], [-77.39821073808983, 34.583418145566526], [-77.39801236491945, 34.58353884658522], [-77.39772245841823, 34.583689969392], [-77.39742264836403, 34.583809752226514], [-77.397191020073, 34.584043182806276], [-77.39675749700696, 34.58435528938417], [-77.39667794477435, 34.58441353684235], [-77.39663453529599, 34.58444687674189], [-77.39643830623675, 34.5846127583491], [-77.39624047351599, 34.584776234788706], [-77.3961751588826, 34.58479349577988], [-77.39612125740194, 34.58487164571011], [-77.395846415924, 34.585005284557205], [-77.39560136463804, 34.58510718489835], [-77.39514740896995, 34.58534068904638], [-77.39505830311876, 34.58535349386444], [-77.3950123173421, 34.58540664047853], [-77.39494255391605, 34.58546624726098], [-77.39466423363152, 34.5856494918909], [-77.39443237039293, 34.58571459000314], [-77.39431237518234, 34.585981717620484], [-77.39427014929699, 34.58607788099053], [-77.39417478415513, 34.58632340668372], [-77.39408857335681, 34.58643856952763], [-77.39397176108326, 34.58677684865695], [-77.39396109795088, 34.58688152720546], [-77.39393465672529, 34.586948520103476], [-77.39378317125376, 34.587331760833344], [-77.39348187317574, 34.58789673477574], [-77.39336619737499, 34.5881164337023], [-77.39336008087793, 34.588241925777524], [-77.39335678180977, 34.588377127087256], [-77.39348182497498, 34.588384269147745], [-77.3937063013984, 34.5886165608419], [-77.39380207434388, 34.58868224106174], [-77.3938758491025, 34.58875034267659], [-77.39402817575092, 34.58873425471751], [-77.39426990682475, 34.58877704913867], [-77.39441776776536, 34.58877920410191], [-77.39446693721383, 34.58877334475604], [-77.39453878695119, 34.588786186645336], [-77.3946639625035, 34.588830054730956], [-77.39470880452448, 34.588848219314], [-77.39473322670358, 34.5888930124152], [-77.39477870162753, 34.58897510278764], [-77.39480283594584, 34.589032615955226], [-77.39481462939924, 34.58909355652396], [-77.39481647945323, 34.58914122176105], [-77.39483675904214, 34.589302650064354], [-77.39505796941589, 34.58950511787358], [-77.39516981255588, 34.58955867481929], [-77.395362682484, 34.58955509727228], [-77.3954520274381, 34.58957797514803], [-77.39549296704953, 34.589588458185936], [-77.39564813369708, 34.58961018588209], [-77.39576935052935, 34.5896753750607], [-77.39584608514585, 34.58966430627724], [-77.39593268058081, 34.58966243991297], [-77.39621706345443, 34.589552998933684], [-77.39624015457859, 34.58958072272718], [-77.3964548322841, 34.589687085478786], [-77.39663420426155, 34.58981264580683], [-77.39669760938708, 34.589815055720706], [-77.39665658336857, 34.58988928807423], [-77.39663419581521, 34.58995410702616], [-77.39651807006405, 34.59020874235067], [-77.39652885530293, 34.590332285641], [-77.39646947372343, 34.59051828839937], [-77.39646436781992, 34.59058322661288], [-77.39645451960445, 34.59076758084204], [-77.39653183962068, 34.590866647838624], [-77.39662913647281, 34.59116159030345], [-77.39663059895835, 34.591166753252416], [-77.39663056640164, 34.591170590666955], [-77.39663412327944, 34.59117928993021], [-77.39665154784127, 34.59118250463846], [-77.39702817971931, 34.59145009408145], [-77.39709485218081, 34.591452521638665], [-77.39740810794804, 34.591463926978435], [-77.39742225100464, 34.59146932288037], [-77.39744708208022, 34.59147354256449], [-77.39746876563136, 34.591520531870785], [-77.39742224746806, 34.591541552220505], [-77.39724172861969, 34.59173325882746], [-77.3966638103989, 34.591979071681365], [-77.39663407571678, 34.591992911664406], [-77.39661986499637, 34.59200213614085], [-77.39660024278946, 34.592020276556795], [-77.39603872613299, 34.59230901779193], [-77.39588437732772, 34.59254811128867], [-77.3958458853791, 34.59259146541782], [-77.39569835050997, 34.592840583665875], [-77.39548349361257, 34.593030507825404], [-77.39545177461855, 34.59304881889152], [-77.39543595514787, 34.593054407864585], [-77.39525472902581, 34.59312339064398], [-77.39512116277388, 34.59315115768003], [-77.39505768542499, 34.59316706461454], [-77.39498486351354, 34.59318088447269], [-77.39466360073982, 34.59321482123961], [-77.39459334833512, 34.59323458611478], [-77.3943875458502, 34.59318858354713], [-77.39433373944824, 34.593127163351866], [-77.3942695313088, 34.59307845293585], [-77.3941397271962, 34.59293961591963], [-77.39407250880907, 34.59287684191602], [-77.39403391051817, 34.592815017771095], [-77.3940298600119, 34.59276964303518], [-77.39400721543892, 34.592712725290255], [-77.39407252959407, 34.592641524295175], [-77.39408845013008, 34.59261201572818], [-77.39412923352492, 34.59258898391908], [-77.39417105573897, 34.59256674882675], [-77.3942324582855, 34.59253410364302], [-77.39426957977992, 34.59251436765558], [-77.3944022919764, 34.59248029279388], [-77.39465107715404, 34.592315002801165], [-77.39466367349875, 34.592319159206866], [-77.39468010936004, 34.592297243919006], [-77.39493476267245, 34.59212799228051], [-77.3950577717149, 34.592041116349776], [-77.39533501164752, 34.59190409757646], [-77.3955759421728, 34.5918771433019], [-77.39555768755946, 34.59174609091296], [-77.39555060156908, 34.59164074652127], [-77.39545187756667, 34.591621118651986], [-77.3953003257133, 34.59135864185683], [-77.39519170835034, 34.59123007361589], [-77.39505784097747, 34.59114582528734], [-77.39481059715756, 34.59100470890628], [-77.39481059763395, 34.590846542264046], [-77.39451102758008, 34.590883329783345], [-77.39426972750348, 34.5908119908985], [-77.39414590529508, 34.59080941576898], [-77.39374640921832, 34.59073362937793], [-77.39360843151744, 34.5906168882835], [-77.39348160488028, 34.59063516374131], [-77.39335475207139, 34.5906534479189], [-77.39308753058651, 34.59068567253984], [-77.39271031939634, 34.59088306005824], [-77.39269803942436, 34.59088978713543], [-77.39269343907951, 34.5908928053069], [-77.39264172370926, 34.59094866412549], [-77.39229932340427, 34.59130025057803], [-77.39226324501342, 34.5913332398606], [-77.39221789398695, 34.59137864680798], [-77.39210226986727, 34.59145315282994], [-77.3919759645, 34.591489746047145], [-77.3919052305645, 34.59147630129574], [-77.39154179594239, 34.59150916283473], [-77.39151115329612, 34.5915081532177], [-77.3914803014016, 34.591518254865505], [-77.39111709596357, 34.59137759271377], [-77.39083998593672, 34.59170341377137], [-77.39072295579902, 34.591895562887146], [-77.39065073283211, 34.59195141088923], [-77.39064066994936, 34.59203066579485], [-77.3906526992115, 34.59210459475892], [-77.39072289332958, 34.59237988927993], [-77.39073450128947, 34.59242919125037], [-77.39073326380016, 34.59244188272677], [-77.39074414007175, 34.592463216532664], [-77.39080504524938, 34.59276753901411], [-77.39091987821587, 34.592807926823845], [-77.39093172326425, 34.59283783355477], [-77.3909198695991, 34.59287626208746], [-77.39086239042136, 34.59299820657169], [-77.39079763613748, 34.59306945380538], [-77.39072279412038, 34.593151800234196], [-77.3906133941369, 34.593190447950036], [-77.39051601331565, 34.59332234832483], [-77.3904146826311, 34.59342962055882], [-77.39036530620452, 34.593556364642254], [-77.39032864980096, 34.593624124371374], [-77.39022774884958, 34.59367978600698], [-77.39005069298113, 34.59368889511739], [-77.3899345703731, 34.59359161475713], [-77.38981236553377, 34.59355547449198], [-77.38954053187867, 34.59327310039356], [-77.38922206552155, 34.59342743675449], [-77.38914642459055, 34.59344211129664], [-77.38898110997445, 34.593297227590526], [-77.38894940623106, 34.593286272504685], [-77.3887923052585, 34.59314632453424], [-77.38894944860988, 34.59300284620343], [-77.38898004316728, 34.59293992265865], [-77.38911510283768, 34.59292132493051], [-77.38914649652224, 34.59295312849664], [-77.3892747190028, 34.592938626778114], [-77.38941499322586, 34.5929212359116], [-77.38954057772966, 34.59295093867642], [-77.38982109262152, 34.59269580548546], [-77.38993469791427, 34.59266544230097], [-77.39003360958131, 34.59264933363925], [-77.3899984209579, 34.59254784608165], [-77.39000245167817, 34.592474297264864], [-77.39010303667393, 34.592289499899216], [-77.39025250265288, 34.59208663944975], [-77.39030029410566, 34.592048972216446], [-77.39032886482065, 34.59200996989324], [-77.3903911256067, 34.59192143145719], [-77.39043590572965, 34.5918479084628], [-77.39047357230189, 34.59178606512336], [-77.39058955416375, 34.591613467590456], [-77.39056449289572, 34.59144629285271], [-77.39078665839801, 34.59116047496812], [-77.3905725909036, 34.59092891176858], [-77.39032900664819, 34.59095300167858], [-77.39025886764239, 34.590887591526226], [-77.39014522151096, 34.590828402736435], [-77.3901389346245, 34.59082182609855], [-77.39013198901361, 34.59082151103164], [-77.39009967569832, 34.59080015307512], [-77.39002124150039, 34.59075332475999], [-77.38993497052144, 34.59070070195689], [-77.38973854303048, 34.59067541107015], [-77.38973752498121, 34.5906753532325], [-77.389737606314, 34.59067453679527], [-77.38973860984305, 34.59067402817804], [-77.38993498626898, 34.59058782049469], [-77.39002858575982, 34.59053210167392], [-77.39003351170507, 34.59052969278546], [-77.39003582947845, 34.59052824725724], [-77.39013203981355, 34.59045112096188], [-77.39030033475149, 34.59038146651629], [-77.39032361160088, 34.59037221304909], [-77.39032908526075, 34.59036956645477], [-77.39034486907454, 34.59035804072415], [-77.39072318115467, 34.590159041567205], [-77.39093779329491, 34.59009618793375], [-77.39111730848113, 34.589682942919225], [-77.3913225237845, 34.590012915817425], [-77.39151132693495, 34.59006715509263], [-77.39160250329807, 34.59009544767086], [-77.39178087205094, 34.590033797674884], [-77.39183129994794, 34.58981598078942], [-77.39183519746746, 34.58973555809838], [-77.39170841943614, 34.58956969070805], [-77.39169137919352, 34.58956237413337], [-77.3915114008811, 34.58945717943464], [-77.39136224557828, 34.58937919407164], [-77.39120754751977, 34.58930432928092], [-77.39111736334556, 34.58924798918333], [-77.39102973382236, 34.58933274354417], [-77.39072328920108, 34.58933234732051], [-77.39058165273222, 34.58933916162907], [-77.39049383597765, 34.589327072631896], [-77.39047733636413, 34.58924179865827], [-77.39040544152768, 34.58909260293879], [-77.39038901757634, 34.589030594547914], [-77.39032927430435, 34.58897428019084], [-77.3902228849999, 34.58880900858237], [-77.38993523142013, 34.588838992328945], [-77.38987327831389, 34.58881152610006], [-77.38975823702725, 34.5887613615075], [-77.38973821406506, 34.58874592599842], [-77.38971484565437, 34.588742440344895], [-77.3896171657843, 34.58869984618326], [-77.38954119509208, 34.58866698870081], [-77.38938948613335, 34.58860224989473], [-77.38937789679485, 34.5885675932313], [-77.38928709023355, 34.58855550369289], [-77.38914716105508, 34.58849027916958], [-77.38910777875584, 34.588473020117135], [-77.38903610269607, 34.588440921336996], [-77.38886307011103, 34.58834741206374], [-77.38875312890848, 34.588311735521444], [-77.38868146991452, 34.58827977223091], [-77.38860075957854, 34.58824330347173], [-77.38855611357576, 34.5882216786019], [-77.38841746650202, 34.588168447709755], [-77.38835909655405, 34.58814473317945], [-77.38830267210889, 34.588122106362384], [-77.38818400463038, 34.58790333841726], [-77.38796507721305, 34.58790817500122], [-77.38785307874494, 34.58788303765328], [-77.38776805210868, 34.58788684889416], [-77.38762612093102, 34.58785444401114], [-77.38757103213412, 34.58783587734651], [-77.38754781126849, 34.58783139687948], [-77.38745677435375, 34.58781950296754], [-77.38717700194121, 34.58768198603382], [-77.3870370256976, 34.587606282312926], [-77.38678296148117, 34.58759296384093], [-77.38653867040763, 34.587527304489996], [-77.38643957543141, 34.58748701887566], [-77.38638893269957, 34.58744478603752], [-77.38628503009771, 34.58745192561881], [-77.38599489056446, 34.5873743054115], [-77.38582732196973, 34.58738583288588], [-77.38560083272118, 34.5873878775138], [-77.38525968874299, 34.58734412392562], [-77.38517500289713, 34.58733357985251], [-77.38505045663729, 34.587317288293626], [-77.38481275371628, 34.58723160387362], [-77.38469790205201, 34.58724437043341], [-77.38458939585287, 34.58719984734584], [-77.38441872299482, 34.58711609713735], [-77.38433728437957, 34.58708328306338], [-77.38416419254618, 34.58702048318175], [-77.38413493553553, 34.586905943326116], [-77.3840247289867, 34.58683325956413], [-77.38390286184776, 34.58692687221375], [-77.38363064787234, 34.58696199250335], [-77.38344748227559, 34.58712379698167], [-77.38332237262279, 34.58723431612908], [-77.38323650522548, 34.58736189886821], [-77.38291334287463, 34.587625355508756], [-77.3832363738535, 34.58795360340759], [-77.38324969454898, 34.587987078080744], [-77.38343340278897, 34.58795485470003], [-77.38346017920921, 34.58797109772672], [-77.38355488982893, 34.58803881625081], [-77.3835604471626, 34.58809355684837], [-77.38353952888471, 34.58817194246063], [-77.38350637318163, 34.58825541195382], [-77.38327042944218, 34.58838621924596], [-77.38329912835749, 34.58820659509249], [-77.38329119407945, 34.588148628051485], [-77.38323635287816, 34.5880481707888], [-77.38322439033307, 34.58801798133236], [-77.38321805818036, 34.58800599824187], [-77.38284238025821, 34.58766724601421], [-77.38266731606939, 34.58789682200169], [-77.38264529713751, 34.58790532767783], [-77.38263058200444, 34.58789425244517], [-77.38260141394825, 34.58788259965532], [-77.38254679424058, 34.58785452432359], [-77.38251638086118, 34.58782149102922], [-77.38244830127512, 34.58776131823147], [-77.38241662932288, 34.58773108309982], [-77.38237200702407, 34.587703383366666], [-77.38238627423122, 34.587343695314296], [-77.38205432308078, 34.587424653075615], [-77.38199674522153, 34.58739495041374], [-77.38185729894735, 34.58740800094269], [-77.38170225678354, 34.587375352899386], [-77.38167720302962, 34.58736073313495], [-77.3816603130795, 34.587232959950235], [-77.38164569790041, 34.58717122260762], [-77.3816603314891, 34.58715663846467], [-77.38181373753969, 34.58709998913686], [-77.38192407361127, 34.58705924432606], [-77.38205440020828, 34.587098510111154], [-77.38228735211693, 34.587117448485515], [-77.38225927335831, 34.586649879648704], [-77.38227379961253, 34.5864438439061], [-77.38220733757966, 34.58619340821319], [-77.38215523476002, 34.58603636911326], [-77.38213681578853, 34.58595051876288], [-77.38202973859194, 34.58562989249836], [-77.38225719161636, 34.584954591187994], [-77.38230617478236, 34.58474091810021], [-77.38238288716462, 34.58465860258583], [-77.38244905691661, 34.58451213773397], [-77.38267624500091, 34.58408312460323], [-77.38283746426664, 34.58381520610887], [-77.38277668940322, 34.583471213683374], [-77.38277572044782, 34.58332664940879], [-77.38270706745362, 34.58298487252506], [-77.38264905713379, 34.58277817471235], [-77.38264361347382, 34.58256945404204], [-77.38247949094574, 34.582200754797505], [-77.3824690336943, 34.582170053996826], [-77.38245999509672, 34.58216016543713], [-77.38244961179, 34.582146382654315], [-77.38210192094441, 34.58179840597253], [-77.38208805138532, 34.581765516457764], [-77.38183184198971, 34.581412770370164], [-77.38174948745224, 34.58133010310254], [-77.38166177437793, 34.58122864855687], [-77.38134280218846, 34.58097789095619], [-77.38107781091753, 34.5806723256031], [-77.38104041501691, 34.58049830097647], [-77.38097566752998, 34.57994741684473], [-77.38097247490673, 34.57983837987588], [-77.38098167867811, 34.57972113971939], [-77.38090303838008, 34.578999259833886], [-77.38087429947589, 34.57896401290618], [-77.3807643765808, 34.5789007827892], [-77.38048035186526, 34.57870057939644], [-77.38039662614, 34.57873789285656], [-77.38008630948603, 34.5788024899833], [-77.37982870050746, 34.57887654342042], [-77.37931423644943, 34.579228251777735], [-77.37930228448235, 34.57923442002265], [-77.37929815752186, 34.57923852629396], [-77.37903018940004, 34.57969375195866], [-77.37900336765178, 34.57980470774502], [-77.37893916443116, 34.58013143300649], [-77.37896571245756, 34.58048544948787], [-77.3789536800791, 34.58055390482653], [-77.37899992757893, 34.58065087684498], [-77.37917195094792, 34.580947011277374], [-77.37922327841135, 34.58101976904773], [-77.37929764203743, 34.5811156691606], [-77.37960017431266, 34.58130985912793], [-77.37961698058085, 34.581387833986085], [-77.37966232708646, 34.581725464542565], [-77.37973989345625, 34.58208660679044], [-77.37983982320162, 34.5822844195513], [-77.37998818141976, 34.58252762935618], [-77.38002206906204, 34.58259088215695], [-77.3800852559035, 34.58278216317388], [-77.38015347592636, 34.5829283702308], [-77.38008519599902, 34.58300971966713], [-77.37988535205685, 34.583176297036275], [-77.37950478733092, 34.58344642320915], [-77.37936915109883, 34.583543734039026], [-77.37929695829183, 34.58361982045291], [-77.37880902317985, 34.58439581936048], [-77.37866838511175, 34.5845882387778], [-77.37850855371725, 34.58478242567665], [-77.37842844149542, 34.584875228143865], [-77.37850841193477, 34.585287678087184], [-77.37850845664491, 34.58528821198601], [-77.37850847767386, 34.58528825728973], [-77.37870538726538, 34.58546051617598], [-77.37871179569493, 34.5854643330729], [-77.3789023704821, 34.58560771564627], [-77.37893524220516, 34.585615899649795], [-77.3789662228512, 34.58564685488851], [-77.3791486165729, 34.58577976710181], [-77.37916770091012, 34.58590378387876], [-77.37916335599441, 34.58604300881942], [-77.37912862927125, 34.58622861334251], [-77.37912654917687, 34.58671473976498], [-77.37911804894, 34.58689866440007], [-77.37903562388895, 34.58719106650473], [-77.37908049467661, 34.587328639486245], [-77.37898203114177, 34.58742919577046], [-77.37867473592053, 34.587811675200186], [-77.37859881245691, 34.58792080739265], [-77.37850750579064, 34.58853264317824], [-77.37847638891427, 34.588655895491534], [-77.37843337530205, 34.588695582144744], [-77.3782552484276, 34.589298823770505], [-77.3782080226147, 34.589577180686206], [-77.37823781457463, 34.589863048110374], [-77.37804964877327, 34.590449127218164], [-77.37799448086939, 34.590754145759725], [-77.3778804881284, 34.59132262772478], [-77.37785238857573, 34.59147088037696], [-77.37787837082999, 34.59174749549918], [-77.37771841244871, 34.59191649147518], [-77.3775751701414, 34.591791184548335], [-77.37759997882074, 34.59149077359399], [-77.37756012357418, 34.591368790115276], [-77.37744782861671, 34.59082769749151], [-77.37700958550627, 34.590598993155346], [-77.37695542854067, 34.590580100975345], [-77.37693066107555, 34.590542978230474], [-77.37659269084497, 34.59017417680412], [-77.37653671018793, 34.5901399745622], [-77.37642635232216, 34.58983390547998], [-77.3764850155365, 34.589456807513685], [-77.37647570445132, 34.589336245446226], [-77.37663483196462, 34.58927386997003], [-77.37693104842279, 34.58923467806192], [-77.37726016945055, 34.58886463780782], [-77.37747823064166, 34.58857341251378], [-77.37766939468962, 34.58795654657756], [-77.37768413898533, 34.587916260420506], [-77.37753825587647, 34.5873218409074], [-77.37737212794514, 34.58715025652444], [-77.37714977820234, 34.586947364870156], [-77.37693175105471, 34.586871679482186], [-77.3766592306672, 34.586697531026694], [-77.37653775783821, 34.586668911614865], [-77.37629086737164, 34.58661547224645], [-77.3761437252148, 34.58660034929048], [-77.37603441346653, 34.58661165547438], [-77.37545449103504, 34.58668399748388], [-77.37535558708065, 34.586698377941126], [-77.37517165995081, 34.586816316851994], [-77.37486301853546, 34.58698117741572], [-77.37456730394713, 34.587234136381], [-77.37440610484036, 34.587403992013265], [-77.37412348271968, 34.587618326332944], [-77.37390198204027, 34.58778273175746], [-77.3737789711391, 34.587887345512236], [-77.37335787939742, 34.588124143699915], [-77.37304212169234, 34.58862323065451], [-77.37299057535195, 34.588687568062916], [-77.372456563454, 34.58898147357826], [-77.37220231462808, 34.589063189325834], [-77.37148548554521, 34.58969658287263], [-77.37147063275059, 34.58975981167103], [-77.37106669097746, 34.59060602217031], [-77.37087885353796, 34.59090617439527], [-77.3706251593386, 34.59146348551221], [-77.36993032726302, 34.591719459832944], [-77.36983679215867, 34.592021217583486], [-77.36938674105568, 34.59218189212538], [-77.36960664552001, 34.59166543270656], [-77.36904878788997, 34.59161911367011], [-77.36887614614534, 34.59158463121156], [-77.36856667692246, 34.59148554909261], [-77.3682607569443, 34.59130257182572], [-77.36814598660814, 34.59115039206262], [-77.36805733918243, 34.591039445657145], [-77.36773371213063, 34.59080496331896], [-77.36747286751304, 34.590653894004866], [-77.36722558868745, 34.59057655144797], [-77.36671225132254, 34.590413587900215], [-77.36668482072747, 34.59041014613979], [-77.36666886611818, 34.590407471386115], [-77.36663079571792, 34.59039576354826], [-77.36589692182862, 34.589831478257445], [-77.36581494277151, 34.58975248899443], [-77.36571908812127, 34.589677934120026], [-77.36510909979614, 34.58910217540445], [-77.3647933645551, 34.58930218281105], [-77.36493973994178, 34.5889410415965], [-77.36478589794713, 34.58861475346705], [-77.36476024482653, 34.58854233145204], [-77.36510941212552, 34.58839008073627], [-77.36534986035713, 34.58829188396261], [-77.36576644241251, 34.58811426064418], [-77.36589762620996, 34.58818962655417], [-77.36596727163989, 34.588018928127525], [-77.3660549112586, 34.587931352154136], [-77.36644976307917, 34.58761998310371], [-77.366686087874, 34.587390647465995], [-77.3668952740068, 34.58718650808152], [-77.3671452617952, 34.58692522376983], [-77.36747453654752, 34.5865868406473], [-77.36774005024294, 34.586276382215125], [-77.36824258942515, 34.58591807875745], [-77.36825574255451, 34.58590845181447], [-77.36826292164281, 34.58590337104825], [-77.36834026092994, 34.58582072084151], [-77.36869195658629, 34.58546630646752], [-77.3687533941965, 34.58531631901529], [-77.36877430047126, 34.584992384505895], [-77.36887752708407, 34.58479011294579], [-77.3690210087601, 34.58414082532729], [-77.36903578382176, 34.58410560869541], [-77.36902977041692, 34.58408280136313], [-77.36892157341464, 34.5834134769243], [-77.36884662051219, 34.58328373773397], [-77.36865811373542, 34.583046131644004], [-77.36855916998755, 34.583007204344895], [-77.36826411915811, 34.58293866209395], [-77.36772162267515, 34.58286121306658], [-77.3674760948351, 34.582815132174176], [-77.36731642322178, 34.58282703676834], [-77.3666879797563, 34.58291052318701], [-77.36650677224418, 34.58296682101313], [-77.36629392065576, 34.58295996607182], [-77.36614601966461, 34.582823556403035], [-77.36611906988023, 34.582591444261894], [-77.3659002442448, 34.582125595959546], [-77.36586717777465, 34.58201459846716], [-77.36587025036114, 34.58198177145729], [-77.36590032116798, 34.58194830006323], [-77.36625984732966, 34.58149610523815], [-77.36632151404339, 34.58149556036376], [-77.36668846429377, 34.58176847614972], [-77.36680347460498, 34.581755848924445], [-77.36708254749749, 34.58164750354025], [-77.3672477752904, 34.581569212791294], [-77.36747662232864, 34.581543814804746], [-77.36763369478945, 34.581590936184654], [-77.36767361340443, 34.58160318404064], [-77.36778967825995, 34.581650532189215], [-77.36787060178995, 34.581669788419376], [-77.36797440813123, 34.58171112820673], [-77.36816180096395, 34.58179488284952], [-77.3682645873927, 34.58178343234674], [-77.36839472114984, 34.581790810723874], [-77.36885680693058, 34.581795050418364], [-77.3690526704781, 34.581735978418024], [-77.36922995772753, 34.581721308823816], [-77.3695621609977, 34.58178257909593], [-77.36984070135203, 34.58182033549787], [-77.36993996344185, 34.581852585025764], [-77.37009061531808, 34.5819860991527], [-77.37060867032007, 34.5821808218517], [-77.37062046159859, 34.582187920994954], [-77.3706286241292, 34.58219469190557], [-77.37091148920427, 34.58268134516659], [-77.37102241487828, 34.5828473928432], [-77.37106679968815, 34.58291609745523], [-77.37115148017662, 34.58295174979882], [-77.37133652832827, 34.583011142607916], [-77.37141638835827, 34.58301948450611], [-77.37157319588877, 34.583059970895896], [-77.37181038659344, 34.5831275885952], [-77.37190952388501, 34.58316028282266], [-77.37211580695956, 34.58323739583352], [-77.37220437153759, 34.583275508892605], [-77.3723193427486, 34.583331973321876], [-77.37240135782923, 34.58336828791029], [-77.37243350018046, 34.58336927728519], [-77.3725983667675, 34.58339810043797], [-77.37287325563086, 34.58342446875791], [-77.3729924136912, 34.58337520977902], [-77.37307678404586, 34.5834325903747], [-77.37326296610743, 34.58349669512539], [-77.37338638961812, 34.58355834603108], [-77.37344806676202, 34.58353647473996], [-77.37345249656437, 34.58346939024631], [-77.3734181883294, 34.58308385904115], [-77.37340854490544, 34.583027486758446], [-77.37309530689046, 34.5827823699243], [-77.37299264746261, 34.582703759411466], [-77.3729811000113, 34.58270062512907], [-77.3729775322369, 34.58268869602487], [-77.37298542804078, 34.58267977081931], [-77.37293909356796, 34.58190311715225], [-77.37295245764919, 34.58184318831897], [-77.37293972529699, 34.58178765585383], [-77.37285802520319, 34.58157770865326], [-77.37268656841749, 34.581456933360165], [-77.37268358692256, 34.58136631278281], [-77.37259908415257, 34.58136796163319], [-77.37239461577661, 34.5812786467458], [-77.37220512372204, 34.58117565394906], [-77.37213790051209, 34.58118384364245], [-77.37206594322095, 34.58112178124721], [-77.37193639329033, 34.581005503501125], [-77.37181118638642, 34.58092475055463], [-77.37173669426375, 34.580824955532606], [-77.37169411987743, 34.580750785494054], [-77.37154444688751, 34.58063530996542], [-77.37141729910434, 34.58054445191965], [-77.37132236816724, 34.58048209021013], [-77.37117617077759, 34.58040083822656], [-77.37086178397003, 34.58019571085572], [-77.3706294068773, 34.58012319462044], [-77.37050657220816, 34.580072734684094], [-77.37032525140654, 34.58000207017082], [-77.3702354516942, 34.57994385238153], [-77.37000213915897, 34.57989398075279], [-77.36984145018744, 34.57988808321205], [-77.36976709224703, 34.579834835666546], [-77.3695606103007, 34.57978443489296], [-77.36947981193052, 34.57976123218179], [-77.36944748741766, 34.57973477795127], [-77.36923505563686, 34.57963570507383], [-77.36905350169332, 34.57964274617376], [-77.36875134979768, 34.57957539945412], [-77.3686008354848, 34.57956134193478], [-77.36848318181433, 34.57951506352818], [-77.36833183012696, 34.57946542409314], [-77.36826553911321, 34.579442749465244], [-77.36808613175299, 34.579341047943345], [-77.36787159659436, 34.57925188770256], [-77.36783308734208, 34.57922564284417], [-77.36775970686298, 34.57919470599724], [-77.3675707126707, 34.57912162929914], [-77.36747765280099, 34.579068303232134], [-77.36709914011676, 34.57886528482425], [-77.3670979245598, 34.57885015997336], [-77.36708372431156, 34.57885239392867], [-77.36706446447945, 34.578849524876844], [-77.36684028142409, 34.57874037024293], [-77.36668978613804, 34.57866390713524], [-77.36659694367327, 34.578613114041424], [-77.36645708345583, 34.578533194220206], [-77.366149252011, 34.57831100610601], [-77.36595034340809, 34.57818161485666], [-77.36592640380378, 34.57815873565637], [-77.36590197447234, 34.57815059219653], [-77.3658150604016, 34.5781074255449], [-77.36567837910529, 34.578037204131554], [-77.36550804271408, 34.577960822658724], [-77.36525686780651, 34.577856924184715], [-77.36516452498617, 34.57781588037001], [-77.36511410310501, 34.577792492473485], [-77.3649711594012, 34.57774401986724], [-77.36489654178168, 34.577718717692335], [-77.36472014924493, 34.57765919094793], [-77.36461621869954, 34.57763662049783], [-77.36432622422134, 34.57746535532413], [-77.36403500483922, 34.57749753838459], [-77.36378362316461, 34.57748441632913], [-77.36353819474462, 34.57747419975272], [-77.36322116846162, 34.577642461964274], [-77.36308532189162, 34.57768174433978], [-77.36305119034456, 34.57774997627309], [-77.36274990422073, 34.578031990190155], [-77.36243915060372, 34.57792776132844], [-77.36232257963532, 34.577890847333855], [-77.36196208788486, 34.57758806633536], [-77.3619067948658, 34.57754979205366], [-77.36181163454933, 34.577503894031345], [-77.36171676320494, 34.57725303699127], [-77.36161722066848, 34.57710733099263], [-77.3616128876084, 34.577059945735854], [-77.36156834278762, 34.577039095898], [-77.36138358268204, 34.576716414623505], [-77.36134316902988, 34.57654057163578], [-77.3611746052815, 34.576485665196785], [-77.36100154746846, 34.57658499568875], [-77.36078056221024, 34.57655462386947], [-77.36059936790227, 34.57659998021309], [-77.36038658369867, 34.576494205656225], [-77.35977199751383, 34.57694842851068], [-77.35979868221912, 34.57716058328569], [-77.35959802315986, 34.57755226805549], [-77.35953761692276, 34.57776630612621], [-77.35924435254444, 34.57787349242223], [-77.35887831102076, 34.57800004712981], [-77.35880967944674, 34.57815719465991], [-77.35855993665334, 34.57855224585221], [-77.35841538715125, 34.57868032209478], [-77.35828204581594, 34.5785802994496], [-77.35802147876468, 34.57847109290053], [-77.35771012124809, 34.578429850019766], [-77.35762746641097, 34.578459335830864], [-77.35735322903133, 34.57814571207558], [-77.3573580539974, 34.57801101522901], [-77.35725463119189, 34.57733296918332], [-77.35726146258507, 34.57730981700654], [-77.3572609017522, 34.5772810024237], [-77.35723408795212, 34.57727565299203], [-77.35694392874126, 34.57681933167871], [-77.35680020613106, 34.57652710449519], [-77.35670383157728, 34.57626382479605], [-77.35644667902575, 34.576155469921005], [-77.35626560273336, 34.57595018416433], [-77.35605282207095, 34.57588391532818], [-77.35577105397157, 34.57582612914513], [-77.3556885102236, 34.57580605953263], [-77.35565886601808, 34.575793537542935], [-77.3555906698192, 34.57577859913993], [-77.35534991728585, 34.575886741373154], [-77.35526479165385, 34.57591363157776], [-77.35493667587119, 34.57601727836351], [-77.35487071994197, 34.576026983628196], [-77.35478300442162, 34.57606282497883], [-77.35456302040342, 34.5759999916052], [-77.35482898745828, 34.57591667871411], [-77.3548708029947, 34.57588142533911], [-77.35497831592322, 34.575824409909515], [-77.35526481494743, 34.57587246671574], [-77.35540020754692, 34.575600675695455], [-77.3555368683684, 34.57556687622414], [-77.35565901993995, 34.57551929815159], [-77.35572859171398, 34.575482632833314], [-77.35598473323662, 34.575370823523215], [-77.35603707355752, 34.57534599812131], [-77.35607397309798, 34.57533551718519], [-77.35644721890785, 34.575176995688345], [-77.35672609887574, 34.57514004538692], [-77.3568412651002, 34.575098588038905], [-77.35720535150631, 34.57477058234721], [-77.35720857174408, 34.574741143445465], [-77.35723553526623, 34.574606222061114], [-77.35744528015539, 34.57411266343776], [-77.35751951828692, 34.57387625589468], [-77.35766833236165, 34.57347142997709], [-77.35777775870318, 34.57325559599194], [-77.35763020304591, 34.57336759929723], [-77.3576114086593, 34.57341825455441], [-77.35723614408597, 34.57348596900384], [-77.35721193902687, 34.573495978421626], [-77.35702977457102, 34.573724516436634], [-77.35674841430838, 34.573663596658506], [-77.35644807046336, 34.57363624181167], [-77.35633846337329, 34.573621704993656], [-77.35610641334553, 34.573598729126665], [-77.35571207413481, 34.57334316182622], [-77.35566026088905, 34.57331173068896], [-77.35565256415813, 34.57330417480206], [-77.35562951004783, 34.5732991946889], [-77.35557379611205, 34.5732139832418], [-77.35530766662671, 34.5729209659595], [-77.35528211100221, 34.572907817487135], [-77.35526650028551, 34.57289944789076], [-77.35522535701881, 34.572888471268854], [-77.35487243351128, 34.57302871395981], [-77.35414908069997, 34.57344235495075], [-77.35443686009901, 34.572621743981486], [-77.35426913885055, 34.57244722892193], [-77.35408503639921, 34.57201560121959], [-77.35402389854782, 34.57189803041629], [-77.35393152724444, 34.571845370070456], [-77.35329759034282, 34.57111800004677], [-77.35327117724921, 34.57111976493857], [-77.35326285350244, 34.57109250184501], [-77.3532889913218, 34.571079449615645], [-77.35329761733325, 34.57107246192134], [-77.35333144151511, 34.57104619926755], [-77.35408571812515, 34.570846470503], [-77.35426767213791, 34.57094789190319], [-77.35426235753806, 34.57113918402097], [-77.35431101350181, 34.57154754121246], [-77.354479368459, 34.571421853238064], [-77.354556506975, 34.57141399087081], [-77.35487337852818, 34.57137975030625], [-77.3549364924775, 34.57134417250784], [-77.35514955988978, 34.57137246600308], [-77.35520395817458, 34.57144996423782], [-77.35526730673708, 34.57148067517337], [-77.35538706039982, 34.57150682595611], [-77.35557161161236, 34.57151270453622], [-77.35566136246442, 34.571357187735856], [-77.35596574327238, 34.57112804400318], [-77.35601085807505, 34.571073437675146], [-77.35587212907981, 34.57071696696533], [-77.35582854543091, 34.57054357948392], [-77.3556618592562, 34.570477262417896], [-77.35560101957613, 34.57039704669957], [-77.35547551293456, 34.570349501877445], [-77.35539867241783, 34.5702197756411], [-77.3549020826395, 34.57003758533943], [-77.35487412446382, 34.57008058892998], [-77.35483510727778, 34.570017123883375], [-77.35432946528104, 34.569827874697914], [-77.35408632001395, 34.569815680790846], [-77.3534870175938, 34.56936204127955], [-77.35337114741705, 34.569300613570505], [-77.35329870588845, 34.56923824109678], [-77.35319814830285, 34.56929528921941], [-77.35254761596336, 34.56945736744609], [-77.35251062799249, 34.56944700415691], [-77.35201385361897, 34.56957404336711], [-77.35177368775032, 34.569663719589656], [-77.35172251377959, 34.56970820714305], [-77.35122890818695, 34.57021856070481], [-77.35093404835695, 34.570525927632495], [-77.35091820482053, 34.57056375598216], [-77.35090358439567, 34.57058290710717], [-77.3509008448292, 34.57061901830662], [-77.35093356779545, 34.57129948658459], [-77.35094240494982, 34.571426418542934], [-77.35093348277447, 34.57143636184405], [-77.35031389413044, 34.57169847676696], [-77.35014527353067, 34.571810404033286], [-77.35002727206998, 34.571685333577456], [-77.3496270143396, 34.5719063888708], [-77.34935692336066, 34.572393420818834], [-77.34931255150458, 34.57246225926489], [-77.3492483377532, 34.57251926368728], [-77.34922998940556, 34.572658498560074], [-77.34905524030827, 34.573071530187775], [-77.34880845685062, 34.57343164597254], [-77.34867510095387, 34.57356604287762], [-77.34856818668032, 34.57355587657059], [-77.3485119524554, 34.57353491340165], [-77.34832100840231, 34.573501775159585], [-77.34820575410221, 34.57348439453192], [-77.34817425170652, 34.57346046203278], [-77.34793437909565, 34.57339137098483], [-77.34778041565733, 34.573215934672064], [-77.34753748047581, 34.573352820609855], [-77.34744323259675, 34.57362805488941], [-77.34741157935264, 34.57366003559058], [-77.34738606143867, 34.5737573596899], [-77.34732075515133, 34.57400002451216], [-77.34730161246657, 34.57407297494545], [-77.34727302310769, 34.57419857502981], [-77.34724155069071, 34.57435087083293], [-77.34713171640914, 34.57437104144007], [-77.34699166991007, 34.5743473872044], [-77.34670290411485, 34.57427244160711], [-77.34659772871538, 34.57425784100298], [-77.3465402844712, 34.574244402595234], [-77.34644559030586, 34.574196117032734], [-77.34620383514498, 34.57409897266949], [-77.34607571336831, 34.57396293073325], [-77.34597448905711, 34.573839338119086], [-77.34581009123147, 34.57372233525036], [-77.34566913993851, 34.57361067631879], [-77.34541621542843, 34.57354327514316], [-77.34538409586983, 34.57353433360868], [-77.34528326950735, 34.57351422011415], [-77.34513291784447, 34.57341665719211], [-77.3449058276805, 34.57344302219273], [-77.34462826462224, 34.573478815320485], [-77.34438471222161, 34.57348135417309], [-77.3439826385762, 34.573430122444954], [-77.34384024795389, 34.57350918099576], [-77.34323118345993, 34.57357768715598], [-77.3430522149837, 34.57356109002225], [-77.3429435713803, 34.573543276221415], [-77.3422644122084, 34.57329329072942], [-77.34151463758094, 34.573590282092525], [-77.34143808590346, 34.57360164895265], [-77.34137954791805, 34.573651127122204], [-77.34068793579709, 34.57394943906811], [-77.3403301615197, 34.57426586482371], [-77.3402497960185, 34.574285422401026], [-77.3398996099877, 34.57438138388268], [-77.33951749725587, 34.57435622430107], [-77.3394906147254, 34.57436346765845], [-77.33911159525553, 34.57439336933169], [-77.33879393512653, 34.57452984534839], [-77.33856139959919, 34.574648994972904], [-77.33832329623331, 34.57477382247822], [-77.33818608488892, 34.574811598399414], [-77.33763812809275, 34.575038196680765], [-77.33755452087533, 34.575071192270514], [-77.33753504339171, 34.57508554932326], [-77.33750987411787, 34.5750837575553], [-77.33735471449731, 34.57507894329404], [-77.33632124256697, 34.574837436223106], [-77.33623443837008, 34.574390921383014], [-77.33619876503357, 34.57413853323278], [-77.33623811076151, 34.57396585300895], [-77.33630348737611, 34.573902066469344], [-77.33655865561313, 34.57369938253644], [-77.33674824766298, 34.57354228786569], [-77.33680014982762, 34.57351641265103], [-77.33727293047775, 34.57367615086865], [-77.33753608098543, 34.57375426773011], [-77.33755244729575, 34.57375925176138], [-77.33759276459082, 34.57377109424054], [-77.33776422895974, 34.57392500648774], [-77.33792997551433, 34.57389063697158], [-77.33810935642785, 34.573890104313165], [-77.33830571435885, 34.57366858701702], [-77.3383241581943, 34.57365451296339], [-77.33854309606463, 34.57344564977137], [-77.33871838502745, 34.573357816858106], [-77.33884742763381, 34.57330515774909], [-77.33901083242046, 34.57325216904235], [-77.33911248514876, 34.57322381844625], [-77.33920563547956, 34.57321501274673], [-77.33938077195029, 34.57308946523789], [-77.33947481239161, 34.57304166898916], [-77.3395067426756, 34.57288007933971], [-77.33956882147358, 34.57270463114085], [-77.33957476582998, 34.57256398777816], [-77.3393752388103, 34.57224117527508], [-77.3391134547401, 34.57195107166734], [-77.33900833760163, 34.571558438839425], [-77.33882999183672, 34.57147049255199], [-77.33877205362437, 34.5714225915316], [-77.33871987353139, 34.57141619074062], [-77.33859923727272, 34.57129140137191], [-77.33856244894868, 34.571254186848236], [-77.33852305227725, 34.57119112041614], [-77.33846020999766, 34.57109912063418], [-77.33843685238864, 34.57098326536097], [-77.338326375078, 34.57078095163236], [-77.33830217674634, 34.5707234243603], [-77.33828766960688, 34.57069938739529], [-77.33823793734305, 34.570611099713155], [-77.33811100538537, 34.57010833920554], [-77.3376377015237, 34.569943758131885], [-77.33758669979869, 34.5698997902647], [-77.33753910081562, 34.56988861692233], [-77.33745896250988, 34.56988309825875], [-77.33709790471313, 34.569647908594526], [-77.33675166112661, 34.56922656447546], [-77.33674899815534, 34.569225321915106], [-77.33674497728927, 34.56922302940657], [-77.33596411050668, 34.568718447435025], [-77.3357190343647, 34.568785477576114], [-77.33557006537129, 34.5688030727118], [-77.33538233111122, 34.56879208656106], [-77.33517600639922, 34.56890371525235], [-77.33511688149325, 34.568968901753685], [-77.33488678436424, 34.56906563493112], [-77.33480058917425, 34.56909819771038], [-77.33478186171129, 34.56910812433963], [-77.33474797315209, 34.56912209526022], [-77.33458480279032, 34.569193026755144], [-77.33447707411428, 34.569220743121434], [-77.33438776649876, 34.56924986153933], [-77.33411275841061, 34.569176905550165], [-77.33438797132578, 34.56900032625157], [-77.33457969254346, 34.56889173939433], [-77.33466190652132, 34.56867342275321], [-77.3347239891899, 34.56830302801925], [-77.33468823961738, 34.56814336228396], [-77.33513468891091, 34.56780186195916], [-77.33517692595187, 34.56777115036004], [-77.33518765855862, 34.567760315732514], [-77.33571615354587, 34.56794064783995], [-77.33596479226166, 34.56786887991474], [-77.33609710384174, 34.567760495483355], [-77.33622262489314, 34.56774677346884], [-77.33635881577328, 34.5678052495894], [-77.33658145689839, 34.567733060749575], [-77.33675276617875, 34.567832962971806], [-77.33685858324843, 34.56762237780751], [-77.33714694971091, 34.56756523438729], [-77.33729990203052, 34.56744507763496], [-77.33741039129168, 34.56728829875978], [-77.3374648921021, 34.567079152787954], [-77.33747158057432, 34.566995851704114], [-77.337426823713, 34.56670142674041], [-77.33741539284924, 34.56657938863381], [-77.33739269147848, 34.56642195160376], [-77.33734460084338, 34.56574048392289], [-77.33714581351055, 34.565347636470946], [-77.3371427583089, 34.56534496441306], [-77.33713989160577, 34.56533587361468], [-77.33714873954672, 34.565298556176494], [-77.33733679813739, 34.564892522868774], [-77.33714920283138, 34.56471258841718], [-77.33706881145316, 34.56459324728702], [-77.33705749329135, 34.564409052365946], [-77.33734716356295, 34.56404194880203], [-77.33729225849822, 34.56377866867037], [-77.33729151349598, 34.563473104536236], [-77.3373104644288, 34.56319814222646], [-77.33703989590296, 34.56269298474357], [-77.3368934766844, 34.562409016056996], [-77.33684090942731, 34.56232630493292], [-77.33682287695123, 34.561640331782094], [-77.33752441125912, 34.56146921255704], [-77.3375436312022, 34.561464200492445], [-77.33754571686562, 34.561465131059045], [-77.33754621028706, 34.56146554602146], [-77.33754705491138, 34.561465956672684], [-77.33796485924351, 34.561802978499536], [-77.33833316129045, 34.562030072818395], [-77.33846898175398, 34.562036096333046], [-77.33912085345635, 34.56228672985062], [-77.33956431611993, 34.56165325741919], [-77.33960739696103, 34.561169679172615], [-77.33975314675845, 34.560979963240975], [-77.33980851245681, 34.56071621430238], [-77.3397857643931, 34.56042899884275], [-77.3397891654837, 34.56029445355914], [-77.33966760382167, 34.56005022574455], [-77.33962039094058, 34.559894182191194], [-77.33962135703261, 34.55978127072266], [-77.3395292550267, 34.559482744996785], [-77.33967961538761, 34.559211666698125], [-77.33972953525276, 34.55880085038534], [-77.3397546581416, 34.55860124393128], [-77.3397103570434, 34.558390613887255], [-77.33969157207689, 34.55818577349018], [-77.33970478132534, 34.557982676107514], [-77.3396797966095, 34.55776292393071], [-77.33952302357838, 34.55757949731471], [-77.3395028037492, 34.55755649855311], [-77.33947617184965, 34.557547390088054], [-77.33920797299501, 34.557386749890156], [-77.33914776529383, 34.55734980083688], [-77.33913589949178, 34.55734025461476], [-77.33837253140474, 34.55744607581845], [-77.33836314739494, 34.55697299627549], [-77.3375908627563, 34.556234745311485], [-77.33618318876212, 34.55728646289311], [-77.33609750933206, 34.55736324728561], [-77.33599150995765, 34.55747575486214], [-77.3357049211468, 34.5575330851045], [-77.33480843679962, 34.557729425198914], [-77.3344152362221, 34.557719177287865], [-77.33411485422799, 34.55777038144002], [-77.33423739076107, 34.557566222458405], [-77.33372369620436, 34.55720142524587], [-77.33373064463942, 34.55709565812643], [-77.33387488211065, 34.55663907332682], [-77.33417305685393, 34.556426523767286], [-77.33445684855768, 34.55592425431743], [-77.33467765119626, 34.5555443955998], [-77.33464264878474, 34.55544057314231], [-77.33462513187426, 34.55465932284153], [-77.33458501904495, 34.55457844938581], [-77.3345466737743, 34.554547851685584], [-77.33460760263905, 34.55408556975854], [-77.3345032583217, 34.553922420801655], [-77.33388884399838, 34.55418890713021], [-77.3339974186843, 34.55435376939079], [-77.33365053687258, 34.55426033031451], [-77.33368168534791, 34.55420007802968], [-77.33371217587651, 34.55417249637514], [-77.3342274091269, 34.55365059884662], [-77.3342390249068, 34.55347774708704], [-77.33393988717702, 34.553076175691466], [-77.3337447518329, 34.55276795231292], [-77.33373166856205, 34.5527510106595], [-77.33369495123975, 34.55274788679432], [-77.33335377245895, 34.55269654344676], [-77.33317152233505, 34.55282313851287], [-77.33304429928491, 34.552896169972534], [-77.3329553425419, 34.55294626488611], [-77.33283703628706, 34.55294500875158], [-77.33216728829304, 34.55306603865457], [-77.33178065047417, 34.553023088018534], [-77.33154051695386, 34.55296030891752], [-77.33138564620533, 34.55290956784411], [-77.33075418952129, 34.55268100997556], [-77.33069671435463, 34.55263320325325], [-77.33060813024964, 34.55257559291514], [-77.33034464009012, 34.55241684005487], [-77.33006914634792, 34.552441470621076], [-77.32982431518633, 34.55251291175563], [-77.32954270177387, 34.55254070532081], [-77.32872192077475, 34.552779249735465], [-77.32823892909384, 34.553151042866084], [-77.327729347169, 34.553289684968405], [-77.32719220885834, 34.55368259661099], [-77.32678643542008, 34.553824297313696], [-77.326649239651, 34.55397294080748], [-77.32623600025698, 34.55430964176753], [-77.32610950827488, 34.5544884072102], [-77.32585230206865, 34.55447323827791], [-77.32571685261111, 34.55446876139331], [-77.32533477050055, 34.554439148942], [-77.32513492906975, 34.55442620150695], [-77.3250685467391, 34.55440727064346], [-77.32449712716698, 34.55442589245064], [-77.32428297239986, 34.55441938742479], [-77.32363332882785, 34.554194001983134], [-77.32356982374871, 34.55416188850749], [-77.32350586911006, 34.554068153492224], [-77.32325161840646, 34.553759220456094], [-77.32328495813758, 34.55361003258884], [-77.32323093847403, 34.55345292965628], [-77.32293985118807, 34.553314389174886], [-77.32274022563516, 34.55322587544992], [-77.32219156338832, 34.55327366984466], [-77.32195550619218, 34.55320176418549], [-77.32124539158019, 34.553023929396765], [-77.32091790742447, 34.55262562918869], [-77.32062801850192, 34.552525561762074], [-77.32040567309426, 34.552314017323766], [-77.31983779401013, 34.55215789849679], [-77.31985340238457, 34.55179930700998], [-77.3200953109706, 34.55156006221425], [-77.32025299476817, 34.55087875165732], [-77.32032978283931, 34.55075162436866], [-77.32028841542092, 34.55066037513819], [-77.32024455348528, 34.55027424406035], [-77.32011081457232, 34.55007703217033], [-77.32012478112142, 34.55001051201036], [-77.3202200924886, 34.549788134010086], [-77.3202263106617, 34.54963641295895], [-77.32007368368689, 34.54908395856039], [-77.31980505338305, 34.54886851010092], [-77.31978733777697, 34.548817893127634], [-77.31970254092371, 34.54879809786606], [-77.31955951889334, 34.548658970855826], [-77.31945853509586, 34.54858393170956], [-77.3193334762749, 34.548456339664], [-77.31943653009353, 34.54843182696205], [-77.31963676689762, 34.54835560325299], [-77.31971252672827, 34.54837068413338], [-77.31975464130609, 34.54836002383962], [-77.32029832774069, 34.54818090289437], [-77.32036557142101, 34.54789804828741], [-77.32040196838065, 34.5478035094824], [-77.32038758046704, 34.54772750611819], [-77.320288657291, 34.54747361424467], [-77.32000000044042, 34.54737163234508], [-77.31981968815757, 34.54734564924651], [-77.31973692246528, 34.547326499274966], [-77.31940760530767, 34.5472502800409], [-77.31895363410356, 34.54724350276746], [-77.31880779120601, 34.54714564194364], [-77.31826341187933, 34.54713147556924], [-77.31819725986443, 34.547124718564795], [-77.31817142657346, 34.54711433085038], [-77.318138221007, 34.54712896715338], [-77.31808909810064, 34.54715651493134], [-77.31752605355753, 34.54732770874682], [-77.31737514189429, 34.54758704581107], [-77.31721820664276, 34.547771232460754], [-77.31711773718068, 34.548122595753114], [-77.31702941634359, 34.54828797135908], [-77.31693925730153, 34.54855853811148], [-77.31694491923281, 34.54903217372075], [-77.316555337468, 34.549064440580054], [-77.31597556898414, 34.5494185780345], [-77.31586056287053, 34.5494978329123], [-77.31575544869992, 34.549689915550815], [-77.31496277057754, 34.55005365689153], [-77.31496176709584, 34.55005385984951], [-77.31496167160044, 34.550053907988364], [-77.31496113280004, 34.55005422344395], [-77.31416896839073, 34.55037175586828], [-77.31391076085121, 34.550535755254145], [-77.31380287040841, 34.55070984770886], [-77.31345157427295, 34.55119556196649], [-77.31341891257527, 34.55128997503313], [-77.31265646969659, 34.551796700960324], [-77.31256351981597, 34.5518613969471], [-77.312557222607, 34.551864074155475], [-77.31254411567193, 34.551869843331914], [-77.31252289654088, 34.55189768803088], [-77.31204181397818, 34.55260682249074], [-77.31206168768482, 34.55291835083398], [-77.31175762726866, 34.553462182779846], [-77.31175955123385, 34.55394097032487], [-77.31172874202936, 34.55442833175507], [-77.31148340971546, 34.55531617643818], [-77.31169419539677, 34.55590882921176], [-77.31184797088014, 34.556268448025605], [-77.3117980249789, 34.55646317249468], [-77.31132819303353, 34.55694061650213], [-77.31119700690229, 34.55716424070703], [-77.310857193477, 34.55764750667659], [-77.31060699529849, 34.55787067557145], [-77.31067762663979, 34.55801325768547], [-77.31070275488572, 34.55809932459231], [-77.31068673091896, 34.558501568685976], [-77.31071387293147, 34.55857347843485], [-77.31071663330589, 34.55891784665877], [-77.31070888554129, 34.558988006315985], [-77.31065722310201, 34.55909886099938], [-77.31081921459977, 34.55926600683556], [-77.31091781191903, 34.55944762912229], [-77.31081074026298, 34.55962714960955], [-77.3100708509634, 34.559597124736314], [-77.31001235640774, 34.55958634460051], [-77.30924802803528, 34.55928712175067], [-77.30776240835904, 34.559466654420035], [-77.30767323585633, 34.559461542988004], [-77.30760842321988, 34.55947332362404], [-77.3064591016167, 34.559825691379714], [-77.3060869710518, 34.56012336079459], [-77.30570887603608, 34.56045410037057], [-77.30514381099346, 34.560766062461965], [-77.30470424097518, 34.56095859957598], [-77.30449165927735, 34.56116836765008], [-77.30381679289137, 34.561520174542956], [-77.30314667358708, 34.56203189858022], [-77.30288970168255, 34.562493731925706], [-77.30230859621562, 34.562514126298], [-77.3020354198552, 34.56264016900431], [-77.30202979441941, 34.562724843866754], [-77.30246222261883, 34.56310934025918], [-77.30180165285933, 34.5637447771483], [-77.30181730368076, 34.56405092696209], [-77.30181868159897, 34.564339994181935], [-77.30181083456992, 34.564603525334704], [-77.30158828221644, 34.56493283376347], [-77.30145680246768, 34.56512255563419], [-77.30129820749026, 34.565151508829246], [-77.30110200275166, 34.565213943659884], [-77.29996847372004, 34.56543083072836], [-77.29972161369069, 34.56573809811767], [-77.29936793410928, 34.56610043768316], [-77.29906017055312, 34.566281625232946], [-77.29869210615513, 34.567046432568155], [-77.2987762632476, 34.56771644870411], [-77.29869836882963, 34.56789457854381], [-77.2986744733998, 34.568174023313865], [-77.29851874256191, 34.56876938754745], [-77.29844160745571, 34.56910381317931], [-77.29835378810733, 34.569642094002745], [-77.2981405276127, 34.56988315208932], [-77.29797388675965, 34.569696590182105], [-77.29789835020219, 34.569120359803705], [-77.29796039081504, 34.56884948443509], [-77.29763505261575, 34.56859350916981], [-77.29750552647418, 34.56822827209782], [-77.29748527743423, 34.56806859633882], [-77.29747888796027, 34.56793603287645], [-77.29750736118183, 34.567379789204985], [-77.29750763441865, 34.56721634808841], [-77.29750188633786, 34.56706010445403], [-77.29739356477792, 34.56642314883869], [-77.29738989984452, 34.566384195468416], [-77.29740566444937, 34.56632954441376], [-77.29760484418162, 34.56577057243332], [-77.29806712523525, 34.565438006379], [-77.29809648716984, 34.56538024311536], [-77.29814620417012, 34.56536446017314], [-77.29847714401987, 34.56488610350873], [-77.29881583391966, 34.56448155697486], [-77.29870041445136, 34.56424475272732], [-77.29893569078601, 34.56412298270848], [-77.29934864206777, 34.563556075405785], [-77.29953486481276, 34.563409854076184], [-77.29972920176387, 34.56329802994116], [-77.30011381817822, 34.56295668487697], [-77.30015183442754, 34.562716535918454], [-77.30035986357788, 34.56243177023502], [-77.30002609786665, 34.56230911791176], [-77.29976737319407, 34.56168037182992], [-77.29971794627394, 34.561576981783006], [-77.29955530184766, 34.561567981340936], [-77.29956735398632, 34.56143799128343], [-77.299778107103, 34.56122548477694], [-77.29999424221208, 34.56065209116794], [-77.3005172465401, 34.560450742244754], [-77.29980446171574, 34.56010861985907], [-77.29946534487314, 34.55983783987783], [-77.29908694105806, 34.559676730922035], [-77.29824637579402, 34.55957371559963], [-77.29795095720337, 34.55965675591601], [-77.29745341390068, 34.55989571005747], [-77.29740402731719, 34.55991816600013], [-77.29744293874566, 34.559918774852086], [-77.29742924709998, 34.56039646752242], [-77.29738393642697, 34.56041065800195], [-77.2973990795033, 34.560434424179846], [-77.29702383614294, 34.560951924104785], [-77.29687877757998, 34.56112216981035], [-77.29663279957703, 34.56138742994172], [-77.2959336971885, 34.56159790803295], [-77.29645945532152, 34.56162702642403], [-77.29632384707838, 34.56184570292456], [-77.29613428824442, 34.561872759565425], [-77.29584179090251, 34.561625804574966], [-77.29583305095562, 34.56161790972906], [-77.29580780281717, 34.56159431364263], [-77.29577825905494, 34.56113059257538], [-77.29634194588078, 34.56086065453867], [-77.29640992495854, 34.56055037839268], [-77.29642675372841, 34.56020424055544], [-77.2964865502988, 34.560049777613145], [-77.29588610635223, 34.55975152717683], [-77.29560302006553, 34.55986176008837], [-77.29509422469991, 34.560027345445576], [-77.2947938558411, 34.56010648642374], [-77.2942956422663, 34.56036403142666], [-77.29406298858025, 34.560744304235094], [-77.29350356677489, 34.56086952635438], [-77.29302260406244, 34.561231332165114], [-77.29236627146169, 34.56134275336446], [-77.29191966859725, 34.56142497173136], [-77.29161827809355, 34.561541047648205], [-77.29072891746091, 34.56185475347634], [-77.29033348549699, 34.56207583815231], [-77.28908253585001, 34.56279680772539], [-77.28868885404225, 34.56294344484608], [-77.28829842743231, 34.563201151228924], [-77.28786487310352, 34.56344683523224], [-77.28712140879183, 34.563627280613716], [-77.28704648684771, 34.56371421506227], [-77.28691479679304, 34.56369121339375], [-77.28561875590049, 34.564240529858054], [-77.28540878461638, 34.56428737956124], [-77.28511742443051, 34.56445435992353], [-77.28438638683238, 34.564823485135285], [-77.28434217077826, 34.564846638491595], [-77.28431690898005, 34.56486283965131], [-77.28369201388993, 34.56511868357386], [-77.28355093880852, 34.565274025745225], [-77.28344571040527, 34.56536369296111], [-77.28331136417656, 34.56528308395632], [-77.28231415645313, 34.56567170369708], [-77.28226713357816, 34.56568173553128], [-77.28183479198682, 34.56590254817139], [-77.2817562259195, 34.56607575406031], [-77.28187441416071, 34.56645862281805], [-77.28197031096084, 34.5664988778332], [-77.28239320624328, 34.56705620247309], [-77.28238373925583, 34.56706768449271], [-77.28109633816324, 34.567217226256815], [-77.28089604566918, 34.56742218438754], [-77.2808912978588, 34.56763816162777], [-77.28073474623758, 34.567880842950366], [-77.28053332204149, 34.568030807949356], [-77.28039325119732, 34.56832535232002], [-77.28023857051136, 34.56861766869733], [-77.28006570626451, 34.56877095546351], [-77.28004894119918, 34.56891432103096], [-77.27953061205447, 34.56942787170426], [-77.27919217299491, 34.5694667052872], [-77.27905425074854, 34.56963416776353], [-77.27830334912447, 34.56999058973866], [-77.2782279904332, 34.570040595485466], [-77.27770075658916, 34.57011187194219], [-77.27748348632291, 34.57038502185718], [-77.27760990878072, 34.570463371013204], [-77.27741013077879, 34.570510569744656], [-77.27709463836408, 34.57126560638547], [-77.27705507119788, 34.57136244221097], [-77.27694137377445, 34.571408006891154], [-77.27663652355818, 34.572172143417234], [-77.2767620108182, 34.57228207785468], [-77.27736653842487, 34.5726334602476], [-77.27729004408906, 34.57279489067882], [-77.27743089589853, 34.5729767808957], [-77.27741630434241, 34.57304047438136], [-77.27747055289217, 34.57319284561167], [-77.27743881902283, 34.57327790744801], [-77.27741909977023, 34.573348636681], [-77.27754002465291, 34.57336509526762], [-77.27776726655966, 34.573456686796646], [-77.27788476560083, 34.57351672876971], [-77.27803014037856, 34.57348710064798], [-77.27831773209104, 34.57349386514595], [-77.27849169315239, 34.57368157880627], [-77.27846969863444, 34.57383021194477], [-77.27865802709078, 34.57424874600436], [-77.27865775818105, 34.574316311857174], [-77.27867889011448, 34.57434630667859], [-77.27868808638073, 34.57442833194955], [-77.27865522252316, 34.574787440933605], [-77.2784667924836, 34.57516066062006], [-77.27852546654452, 34.57524857690627], [-77.27852016294504, 34.57544041325137], [-77.27858618659926, 34.57572467514657], [-77.27862421857274, 34.575836544933054], [-77.27869533677045, 34.5760809789786], [-77.27875122096273, 34.57620896560335], [-77.27875866200965, 34.57652104059055], [-77.27901608087377, 34.577113598200675], [-77.27902828681074, 34.5771548834001], [-77.27905161040772, 34.577175213492545], [-77.27987238432526, 34.577573454023856], [-77.28021522789378, 34.57807592007969], [-77.28031283867038, 34.57814328237946], [-77.28039418952693, 34.578223299492166], [-77.28057801240041, 34.578584353945956], [-77.28060397190337, 34.57871109986445], [-77.28064376934907, 34.57875415358883], [-77.28067796341092, 34.57882774815031], [-77.28084462562802, 34.579201322157836], [-77.28048977077077, 34.57954674262834], [-77.28094486072011, 34.57996693433429], [-77.28099115742278, 34.580093739520905], [-77.28244060312556, 34.58034270709245], [-77.28320718323383, 34.58072755078562], [-77.28353112937907, 34.58097167269206], [-77.28419082895935, 34.58146676573935], [-77.28471298392655, 34.5818586203586], [-77.28543335521513, 34.582399223807656], [-77.28575800402442, 34.58295297852839], [-77.28640028857558, 34.585278019663974], [-77.28596397690953, 34.585702367766224], [-77.28503236796612, 34.58666935887464], [-77.28444349398409, 34.586907073044635], [-77.2836453672461, 34.587131695169084], [-77.2820365012713, 34.58766802339906], [-77.28015302986641, 34.58744714753394], [-77.27945400543841, 34.58755167194697], [-77.27847612408442, 34.58818345584739], [-77.27830991381366, 34.58697743382618], [-77.27825242575102, 34.58653898211948], [-77.2787831905659, 34.58618823230358], [-77.27999140176394, 34.58340787742714], [-77.2802027624923, 34.58292152809396], [-77.28054228473472, 34.58249524189715], [-77.2808445301204, 34.58161844614021], [-77.28091951743465, 34.581092506085625], [-77.2807876419582, 34.58027789235706], [-77.28076423795177, 34.58017877368255], [-77.28068147380455, 34.580131164346625], [-77.28015468440569, 34.579672309014725], [-77.27962024978446, 34.579252694115944], [-77.27954623433148, 34.579165428863725], [-77.27938004026937, 34.579086315496575], [-77.27881946918174, 34.578702884095634], [-77.27841840481248, 34.57829567962806], [-77.27828997540936, 34.57816641608923], [-77.27819131714837, 34.57805030183564], [-77.27719791350022, 34.57737558381473], [-77.27697304197908, 34.57719013723387], [-77.27653883413652, 34.57697784140642], [-77.27628707355075, 34.57671230052043], [-77.2759691625113, 34.57647186286814], [-77.2757444635782, 34.57618074695793], [-77.27526428428592, 34.57593504889313], [-77.27477760129187, 34.57549463351831], [-77.2739290007234, 34.57539124590531], [-77.27421971430884, 34.57491031084909], [-77.27449109741019, 34.57448628920621], [-77.27449240450909, 34.57444528998929], [-77.27447952435553, 34.57441729251131], [-77.27450550018656, 34.57407295129387], [-77.27419346226347, 34.573965587351196], [-77.27409735176083, 34.57385844843614], [-77.27402364250669, 34.5736520427681], [-77.27379112208516, 34.57323832690156], [-77.27344815322246, 34.573123348435956], [-77.27310959131997, 34.57325775386779], [-77.27283965041964, 34.57322739880026], [-77.27255399655834, 34.57322485057495], [-77.27240401204897, 34.57328745380152], [-77.27231145549155, 34.57334635079184], [-77.27222257678802, 34.573458600926614], [-77.27212471739199, 34.57356733997783], [-77.27218957223953, 34.57375392519001], [-77.27218344749866, 34.57380762250872], [-77.2721457620924, 34.573854809515424], [-77.27204058508306, 34.57424013584346], [-77.27206842363398, 34.57425121408202], [-77.27204028718738, 34.57426770326281], [-77.27203116542188, 34.57427022857599], [-77.2720251079217, 34.5742707420882], [-77.27162083669388, 34.57447040094995], [-77.27160486460815, 34.574548294940065], [-77.27150071080685, 34.57469662490934], [-77.27159032797996, 34.57479776661007], [-77.27164202191695, 34.57502828751255], [-77.27180414511326, 34.57519180803989], [-77.27136902942995, 34.57561553250577], [-77.27138032265589, 34.575629828810555], [-77.27097246488022, 34.57649895863802], [-77.27092759004853, 34.57653690915497], [-77.27089294182039, 34.576543903800335], [-77.270752034422, 34.57699444307783], [-77.27054052973082, 34.5772063904973], [-77.27016461470053, 34.57721057442413], [-77.26982422490443, 34.577392840846514], [-77.26998441567923, 34.57760397281089], [-77.2695681869633, 34.57799455079142], [-77.26925417197836, 34.5780832718231], [-77.26877176852723, 34.578252771688284], [-77.26840697473739, 34.578276267746425], [-77.26829089323398, 34.578321296346196], [-77.26790651947272, 34.578382396858075], [-77.2674178475141, 34.57838089654162], [-77.26708886341405, 34.5784184438035], [-77.26682924257709, 34.57857137139236], [-77.26641703246585, 34.578693101177294], [-77.26615387210491, 34.57890134141336], [-77.26603952476353, 34.57898060573663], [-77.26600980480518, 34.579092904687556], [-77.26590845550132, 34.57934029706823], [-77.26578514735498, 34.57943193742866], [-77.26559545333218, 34.57971914665893], [-77.26545537238151, 34.57987733923279], [-77.26511334396912, 34.580163538572435], [-77.2648436636439, 34.580364985788414], [-77.26466587435493, 34.580757921452495], [-77.26441862024441, 34.58097752228652], [-77.26418436858248, 34.58109309113657], [-77.26405711189236, 34.581181378078256], [-77.26381916473562, 34.58138312809334], [-77.26350242094273, 34.58160908578341], [-77.26350480825909, 34.581803180118044], [-77.26282591884974, 34.58248998070923], [-77.26282096774813, 34.582498158825956], [-77.26281059415246, 34.582500244799796], [-77.26279942676344, 34.58251206094715], [-77.26233819868155, 34.5829315198837], [-77.26195163412876, 34.583050793724524], [-77.2616769871836, 34.58306451655652], [-77.2613682448127, 34.58303592984238], [-77.26120518413485, 34.58304416376371], [-77.26102907272991, 34.58316295794208], [-77.26082373347309, 34.58328371316993], [-77.26079034885126, 34.58333246503073], [-77.26057950100251, 34.583698743150464], [-77.26064497930811, 34.58374098823008], [-77.26027850519144, 34.584162575630415], [-77.26026464414286, 34.5841794171686], [-77.26026294790076, 34.58418226992344], [-77.26025092387376, 34.584189211010646], [-77.26025589972946, 34.58420725849095], [-77.2601037259328, 34.58497915861723], [-77.26004496375421, 34.58510779667348], [-77.25992620529794, 34.585192927362115], [-77.25963108158558, 34.58544228182846], [-77.25909652029833, 34.58576953687976], [-77.25909035842832, 34.5859753641538], [-77.25912399270679, 34.586080888898046], [-77.2590056310618, 34.586345965844075], [-77.25886524514569, 34.58642899054001], [-77.25862280482454, 34.58666274928442], [-77.2582837614581, 34.58685457108703], [-77.25776480216278, 34.58721418699542], [-77.25772510439256, 34.58733956474125], [-77.25733339936257, 34.58772246417132], [-77.25739977190784, 34.58818622913983], [-77.25740015751077, 34.5881960625931], [-77.25740837930286, 34.58819970693333], [-77.25744108337514, 34.588240820813354], [-77.25768478516909, 34.58869279899735], [-77.25729206476605, 34.588971347909755], [-77.2566813494472, 34.58955651015673], [-77.25635607046166, 34.58990492796452], [-77.25567548080232, 34.59042002639268], [-77.25549228932132, 34.590451258254845], [-77.25536302652749, 34.59116329913534], [-77.25525819443305, 34.591329866383354], [-77.25546224944499, 34.591493551908115], [-77.25549722963083, 34.591770227348064], [-77.25542272093494, 34.591814159031536], [-77.25539108955553, 34.59188760025375], [-77.25528609599777, 34.59227474501154], [-77.25511604703574, 34.59272538673946], [-77.25576949409754, 34.59307432389849], [-77.25592532383652, 34.593157183854615], [-77.25639103205117, 34.59330439349714], [-77.25692989155792, 34.59351584831307], [-77.25708429521731, 34.59380828024446], [-77.25714394613584, 34.59430632853149], [-77.25713387167887, 34.59490909265716], [-77.25742319762404, 34.595270983528], [-77.2575410989785, 34.595491429766625], [-77.25777296917494, 34.59577968113277], [-77.25812527005036, 34.59600750477297], [-77.25926687108594, 34.59615977154787], [-77.25978721327257, 34.596399660035715], [-77.26004166545607, 34.59675954794192], [-77.26018315105863, 34.597373485698355], [-77.26010075566688, 34.597844314652036], [-77.26005777088825, 34.59822316699362], [-77.26010888778765, 34.59831032040882], [-77.26011169058705, 34.59850296013854], [-77.2596061455101, 34.59882182719759], [-77.25932421333108, 34.59919127197089], [-77.25934936127813, 34.59922325119296], [-77.25908912525169, 34.5996441171913], [-77.25905197937092, 34.59991701575644], [-77.25902195045275, 34.60008066674142], [-77.25910138545446, 34.600116420530604], [-77.25960607434077, 34.6004882669545], [-77.25990010873583, 34.60048667005806], [-77.26042273852389, 34.60054061261452], [-77.2612702882009, 34.60070842797181], [-77.26051100604663, 34.6014870205333], [-77.26038202570751, 34.602102509010805], [-77.26004993848181, 34.60263503129478], [-77.25983943111673, 34.60300250659022], [-77.25956718222118, 34.60327678672509], [-77.25828939568368, 34.60329422266079], [-77.2574411152944, 34.60310036258896], [-77.25668714444396, 34.60275451208413], [-77.25626565339451, 34.602582300307276], [-77.25607981872776, 34.60245798828135], [-77.2548076578014, 34.60166393026035], [-77.25480423987193, 34.601659824849044], [-77.25480032761305, 34.601653994148336], [-77.25407688050271, 34.600663728197276], [-77.25399085657466, 34.60049473024507], [-77.25396843016388, 34.599965607415896], [-77.25375361468345, 34.59969559920072], [-77.25390779229805, 34.599558730297694], [-77.25415049948599, 34.599605843613176], [-77.25456956786704, 34.59948996591386], [-77.25462669098954, 34.59949793571918], [-77.25507984120574, 34.59932864337266], [-77.25506741134372, 34.59927541314937], [-77.25497862868055, 34.59902270839611], [-77.25460147626494, 34.59881965168641], [-77.25458727170557, 34.59880182819591], [-77.2545699911892, 34.59877692438478], [-77.25449399961869, 34.59876547066356], [-77.25395789556008, 34.598768992999624], [-77.2530466564725, 34.598792894029806], [-77.25287059615685, 34.5988027625638], [-77.25278967353121, 34.59867703495975], [-77.25231747952326, 34.59818199550538], [-77.25173783475532, 34.59770898027406], [-77.25171256894481, 34.597649550064794], [-77.25175403238852, 34.596923340880736], [-77.2505105918485, 34.596801925106746], [-77.25015647846368, 34.59678662162652], [-77.24924774931682, 34.59672881193442], [-77.24888960115577, 34.59667286865798], [-77.24802381516422, 34.596954858583636], [-77.24754402624492, 34.59732127313276], [-77.24738637035452, 34.59770256161717], [-77.24721215897102, 34.59788881003218], [-77.2469135560823, 34.59821430553261], [-77.24682515492974, 34.59851807429297], [-77.2465666087197, 34.598865237049104], [-77.246462955492, 34.59912150659586], [-77.24629405281004, 34.59936037903729], [-77.24619640563799, 34.59973859134169], [-77.24599103063875, 34.60002702392191], [-77.24536526605024, 34.60030401047943], [-77.2445581688255, 34.600445795640496], [-77.24394724730487, 34.60058044432948], [-77.24352922349715, 34.60059957374836], [-77.24334027853504, 34.60067723463643], [-77.24321372043241, 34.60075090345629], [-77.24307676627015, 34.60090624741607], [-77.24253473480898, 34.601275453771585], [-77.24213301298161, 34.601608438833004], [-77.24171377442912, 34.602151133779664], [-77.2414039239911, 34.602493681002144], [-77.24142700515058, 34.60291965030801], [-77.24133489331118, 34.602959593013296], [-77.24143796663144, 34.602989129616674], [-77.24140749099864, 34.60312499181216], [-77.24134023432993, 34.6034313645542], [-77.24121454495472, 34.603807511323616], [-77.24119526065176, 34.6040282839407], [-77.24123352686928, 34.60436565530625], [-77.24124984269524, 34.60452906934876], [-77.24123271058556, 34.604718981354374], [-77.24096567042777, 34.60481589576365], [-77.24082274088076, 34.6050117046717], [-77.23964440428085, 34.60518310855096], [-77.24049708424974, 34.60554554007592], [-77.2410283727945, 34.60553941097788], [-77.24131376669632, 34.60544846305919], [-77.24158921103717, 34.6053363865379], [-77.24215203455093, 34.60492619710154], [-77.2421537913315, 34.60490952825456], [-77.24217733296227, 34.60490181771886], [-77.24219737153746, 34.6048960398644], [-77.24261791110557, 34.604636318946554], [-77.2427380376949, 34.60466091760645], [-77.24275705982872, 34.60469976494397], [-77.24275244737122, 34.60475598351683], [-77.24220043889949, 34.60491320423199], [-77.24220528452318, 34.60492667961873], [-77.24227906985921, 34.60539074944649], [-77.24259973151673, 34.60549341714625], [-77.24263806055797, 34.60569122265784], [-77.24273044087766, 34.60589766608635], [-77.24275802129785, 34.6061689476994], [-77.24316536148476, 34.60631534220565], [-77.2432853605019, 34.606412738913214], [-77.2432955291644, 34.606702557362574], [-77.24376276625674, 34.606801001095306], [-77.24391333839694, 34.60693356409335], [-77.2437555283163, 34.60726517524848], [-77.24374859858776, 34.60739193344756], [-77.24372412209445, 34.60759232980741], [-77.24349108392406, 34.60809891866248], [-77.24331455586929, 34.60830043293892], [-77.24294823055278, 34.60903685024018], [-77.24289192601294, 34.609481642009406], [-77.24125253050323, 34.61002334707714], [-77.24219206205805, 34.6114886678072], [-77.23887710982413, 34.613119259010645], [-77.23821969975391, 34.61321471445439], [-77.2385074165948, 34.6135778118515], [-77.23856277720752, 34.61361699765933], [-77.23860168906417, 34.613663191071424], [-77.24053421169614, 34.615622943652326], [-77.24058824250243, 34.615798146465245], [-77.24009461906998, 34.617377067884405], [-77.24008155818811, 34.617457278909015], [-77.24006425401458, 34.617471315021945], [-77.24003567254904, 34.61749347934612], [-77.23845242204641, 34.61868089998137], [-77.23508195833465, 34.620613489318686], [-77.23486873119352, 34.62075291034196], [-77.23475753291639, 34.62082384240837], [-77.23459736114216, 34.620978667472684], [-77.23158826339086, 34.62309465559353], [-77.23042952484724, 34.62425338856491], [-77.22939639786699, 34.62517733478553], [-77.22871933227447, 34.625802558298794], [-77.22849783743501, 34.62598644651425], [-77.22773970560705, 34.626482823391164], [-77.22602001527028, 34.62767637033778], [-77.22418014686573, 34.62881339898034], [-77.22174198798018, 34.630116096651534], [-77.21751137844407, 34.63077562424456], [-77.2150058429586, 34.63418339904141], [-77.2148492676433, 34.63433631038144], [-77.21478693157978, 34.63444976521246], [-77.21452185955086, 34.634554707499035], [-77.21105688995368, 34.63780761556779], [-77.21167805908189, 34.63836620071193], [-77.2116781313399, 34.64016518721654], [-77.21168958213337, 34.6413006286873], [-77.21169900452355, 34.641629308669565], [-77.21234912663046, 34.64280228566489], [-77.21278236966737, 34.64360035561435], [-77.21241914089262, 34.643966652044796], [-77.21256249278717, 34.64546841142918], [-77.21298226356478, 34.64669489587402], [-77.2148518393809, 34.64722079392992], [-77.21514474131347, 34.64755784604583], [-77.215360791873, 34.64811140107318], [-77.21417794273995, 34.64918673118936], [-77.21540867517908, 34.649451603741596], [-77.21541130398025, 34.649464353106275], [-77.21541127974143, 34.64947141605074], [-77.21539977174766, 34.649469168632514], [-77.21389244066783, 34.64943563430496], [-77.21373770527407, 34.64941873638309], [-77.21354872164872, 34.64942192777886], [-77.21040126854231, 34.649342077984485], [-77.20948511885152, 34.64947140784381], [-77.20801839423129, 34.649471393317086], [-77.20717109531898, 34.649055743361714], [-77.20693013864486, 34.64895695019093], [-77.2064995025654, 34.64876032771997], [-77.20174566315922, 34.64644195046827], [-77.19922509637607, 34.64595892197913], [-77.19579313336112, 34.644867969925684], [-77.19031456423028, 34.644242465966386]], [[-77.35887472442256, 34.78672173144588], [-77.35809777962615, 34.786199494908935], [-77.35832517148077, 34.78695044068937], [-77.3585099195088, 34.78687355458946]], [[-77.42643584269284, 34.758576594344575], [-77.42640880431438, 34.758479237382566], [-77.42633014585168, 34.75853274913097], [-77.42615093052828, 34.75852518593694], [-77.42578060404479, 34.758433774511275], [-77.42540671399895, 34.75852008145289], [-77.42525339827458, 34.75877063388988], [-77.424919185806, 34.75919361421936], [-77.42483893440846, 34.75908834772365], [-77.42467480893698, 34.75912752368372], [-77.42373955911785, 34.75883755080493], [-77.42370447104285, 34.758822774839054], [-77.4231443454405, 34.75867817300501], [-77.42279995384425, 34.75847238367525], [-77.42263844439655, 34.7583745192163], [-77.42259832588921, 34.75834894963342], [-77.42252667217228, 34.758302767317296], [-77.42208896166218, 34.75789318204409], [-77.42192900587533, 34.75777757726642], [-77.42169732254537, 34.75769586190062], [-77.42152199849369, 34.75763629369063], [-77.42132904113916, 34.75758136195527], [-77.4212273438808, 34.757546427873876], [-77.421105737711, 34.757477349499084], [-77.42094500136504, 34.7574140558562], [-77.42082791551537, 34.75734393369987], [-77.42066191239388, 34.7571661526649], [-77.42062705279022, 34.756981312102766], [-77.42061097935635, 34.756669093259525], [-77.42061470896601, 34.756590581707826], [-77.42060633493072, 34.75654357968106], [-77.42058601749953, 34.75643915998755], [-77.42045717799517, 34.75597645247687], [-77.4204375038121, 34.75572123266118], [-77.42022011765926, 34.75548817050765], [-77.41978863353364, 34.75532563468075], [-77.41965518273625, 34.755224346965406], [-77.4193512868286, 34.75528138689578], [-77.41898947907848, 34.75530840815845], [-77.41879427662454, 34.75483620422382], [-77.4189728511625, 34.75474079276079], [-77.41904405768236, 34.75464396361505], [-77.41919040144286, 34.75461477766342], [-77.41937026963613, 34.75464213899774], [-77.41956569192129, 34.75474562447181], [-77.41969433527917, 34.75508918011024], [-77.41973569724269, 34.755121110110636], [-77.42027334241148, 34.75530441797615], [-77.42034132140624, 34.75531496569939], [-77.4205688401055, 34.75539134523406], [-77.42070971666088, 34.755334564979655], [-77.42080764353551, 34.75534371649166], [-77.42085986244845, 34.75549372474303], [-77.42087798749364, 34.75553757172345], [-77.4208874544041, 34.755567750763], [-77.4209659665916, 34.755753192341594], [-77.4210549798405, 34.75618537082157], [-77.42118496079998, 34.756302320531944], [-77.42125036991348, 34.756359778556615], [-77.4213437004147, 34.75637027746088], [-77.42157011493836, 34.75636539568934], [-77.42187464983193, 34.75641874337522], [-77.42193519130747, 34.75643587790757], [-77.42217685330738, 34.75648253270161], [-77.42238593068154, 34.75657708174826], [-77.4224575237795, 34.75662066940755], [-77.42250021117313, 34.75664665832741], [-77.4225536420229, 34.75670910189331], [-77.42275301037746, 34.75698762408585], [-77.42288141763993, 34.75737152086189], [-77.42288513748139, 34.75737890664957], [-77.42289176958333, 34.757386331401506], [-77.42337592798853, 34.757878574048384], [-77.4236026990884, 34.757972456847114], [-77.42366150783651, 34.757999780256526], [-77.42379563571663, 34.75813201569966], [-77.42391794839614, 34.758221601744296], [-77.42444034619353, 34.75843727515234], [-77.42449778653062, 34.758434059590286], [-77.42486055463458, 34.75807430184332], [-77.4249642131567, 34.75785111088793], [-77.42498443172171, 34.75783031110163], [-77.42521094020101, 34.75763767327271], [-77.42530241110077, 34.75760186762774], [-77.42539421163664, 34.75755332904635], [-77.4254801333349, 34.75751824558266], [-77.42560526217781, 34.75749592852238], [-77.42568420654243, 34.75747766614896], [-77.4259734706242, 34.757430256899234], [-77.42604981498275, 34.757504142305045], [-77.42623858614527, 34.757635366841235], [-77.42637050109846, 34.7575041188347], [-77.42648850879041, 34.757661867174946], [-77.42662791432699, 34.75772259347232], [-77.42673819493443, 34.75770359999205], [-77.42690327434754, 34.75787909705444], [-77.42704300351606, 34.75782755808191], [-77.42708496714074, 34.7578595235883], [-77.42719900280058, 34.75796526340287], [-77.42728927697492, 34.758084346998075], [-77.42726645501145, 34.75823022538552], [-77.42746719835712, 34.75814651346101], [-77.42761088020023, 34.75808659609868], [-77.42745399074946, 34.75786236995175], [-77.4273186859886, 34.757551950820634], [-77.4271335567899, 34.75739287708609], [-77.42691766133339, 34.75724891657355], [-77.42678587874148, 34.7571770934501], [-77.42669617840275, 34.757128884774076], [-77.42631959459452, 34.75701985698626], [-77.42619417392267, 34.75700563835399], [-77.42589376968849, 34.75703767860966], [-77.42587413918532, 34.75704007131719], [-77.42582476051793, 34.75704588758905], [-77.42554560484152, 34.75703054862428], [-77.42539845487205, 34.75701090533322], [-77.42518139125416, 34.757068285216356], [-77.42503039462474, 34.7571575401587], [-77.42484914205022, 34.75722083264765], [-77.4246337632665, 34.75725750377704], [-77.42423699841684, 34.75729734672024], [-77.42420416926635, 34.75730362605949], [-77.42418553245113, 34.75729766207768], [-77.42371459684634, 34.75725176929977], [-77.42357084353088, 34.75720556684762], [-77.42349757214798, 34.7571235382769], [-77.42344587585677, 34.75702089470059], [-77.42323770830035, 34.75678551886686], [-77.42309892345092, 34.75662052489316], [-77.42295796413816, 34.75645578856254], [-77.42257313517318, 34.75622149716451], [-77.42252281284676, 34.756190859680146], [-77.42229456374835, 34.75605949400255], [-77.422122586351, 34.75591136692705], [-77.42206815859969, 34.755750627824675], [-77.42191811586223, 34.75536886696304], [-77.42186342391885, 34.75512668253024], [-77.42179910948062, 34.75504774202001], [-77.42172618799776, 34.754960718981955], [-77.42165954417007, 34.75494707595111], [-77.42152318184893, 34.754951312476564], [-77.4214153073572, 34.754991446914815], [-77.42124914777514, 34.754936441505905], [-77.42102545404448, 34.75492201816906], [-77.42091265088798, 34.75491818005847], [-77.42049809513809, 34.754803228165756], [-77.42042597152792, 34.754777477695356], [-77.4203237102172, 34.75470394580863], [-77.41988023761114, 34.754447380556016], [-77.41959688161123, 34.75428625087643], [-77.41904759773301, 34.75411496735936], [-77.41868305144462, 34.754152185818725], [-77.41849377525762, 34.75417209673783], [-77.41821836254599, 34.75425606647708], [-77.41799009440872, 34.754330347392674], [-77.4177970212514, 34.75431563160466], [-77.41753842996192, 34.7542517640875], [-77.41740906925979, 34.75412210657805], [-77.41708756507656, 34.75368060265783], [-77.41701294116878, 34.753578126056304], [-77.41671692193545, 34.753298872043764], [-77.41641318650483, 34.75313205592025], [-77.41573787692512, 34.753195165984984], [-77.41526745203973, 34.75430584194508], [-77.41524791582572, 34.754714848021585], [-77.41553701649983, 34.75508618211505], [-77.41576298562643, 34.755376421208325], [-77.41581530058772, 34.755472258140145], [-77.41603434463278, 34.755771566738076], [-77.41608458816296, 34.756005631168875], [-77.41604392530863, 34.756111255738986], [-77.41613658549524, 34.75630067172959], [-77.41617175941394, 34.75660700085692], [-77.41647908986894, 34.75733228592388], [-77.41649171286605, 34.757366336175444], [-77.41650474550295, 34.75739049354939], [-77.4169267513862, 34.75800095012631], [-77.41697047273315, 34.7580594656392], [-77.41704890414577, 34.75813976589913], [-77.41727357921576, 34.75837946280069], [-77.41727361496928, 34.75869624005939], [-77.4172436668064, 34.75876691944173], [-77.41717990874486, 34.75886487808981], [-77.41698974528141, 34.75923725767177], [-77.41686368780177, 34.759443074608896], [-77.41685182456193, 34.759468596971665], [-77.41684928976392, 34.7594989357668], [-77.41682913119553, 34.759740207382976], [-77.41677946859932, 34.75992454780616], [-77.41695794279894, 34.760107207162385], [-77.41713039271013, 34.759958182619314], [-77.41724433784645, 34.759885320247406], [-77.41747252800994, 34.759769173324216], [-77.41775642578227, 34.75956496140637], [-77.41779041129973, 34.75954054436331], [-77.41789893798028, 34.75945784074208], [-77.418310438553, 34.759139747990616], [-77.41840516992781, 34.75904897112234], [-77.41856148641648, 34.758288883048806], [-77.41854124763583, 34.75810225236068], [-77.4185304102935, 34.757757682229936], [-77.41850462304987, 34.75753037232286], [-77.41890041048472, 34.757254843707315], [-77.41888849751977, 34.75710545326601], [-77.41901433125034, 34.75705238499253], [-77.41913486775135, 34.75702059893521], [-77.41920889802795, 34.75712622636822], [-77.41955843125632, 34.75733958489485], [-77.42013366800998, 34.75763339527162], [-77.42021628300088, 34.757715617017524], [-77.42034136562457, 34.757724473625274], [-77.42077058943626, 34.75801619748765], [-77.42096384798353, 34.75799346508605], [-77.42126796566866, 34.75805319956032], [-77.42138867570532, 34.75809659072895], [-77.42147798433916, 34.75808545383843], [-77.42161370211838, 34.75813223116458], [-77.42166123796704, 34.75826273818191], [-77.42168956033223, 34.75832378839577], [-77.42177103315105, 34.758564172050114], [-77.4217880622203, 34.75867784794144], [-77.42179616479494, 34.75872571256572], [-77.42191778468543, 34.758803899391005], [-77.42235956165284, 34.759173310902256], [-77.422569220544, 34.75929613189549], [-77.4234388766156, 34.75979286148067], [-77.42346027084254, 34.75980187081979], [-77.42348156511366, 34.75980847307832], [-77.4249141096414, 34.75921114221085], [-77.42564357050469, 34.75890696777626], [-77.42637302581237, 34.75860278917501]], [[-77.43655809501588, 34.75435499757169], [-77.43643542036627, 34.754306081082184], [-77.43642522004741, 34.75428809886075], [-77.43646995068748, 34.754186782290304], [-77.43647770727503, 34.75416893424149], [-77.4364793662555, 34.754167255572895], [-77.43648235327564, 34.7541633898114], [-77.43657277349331, 34.75406012743505], [-77.43671868007529, 34.75388136233269], [-77.43679197503259, 34.75393447780088], [-77.43675320539822, 34.75384364183566], [-77.43677354116352, 34.75381872649529], [-77.43699287071007, 34.75351488019582], [-77.43721184086007, 34.7534448250327], [-77.43734801573125, 34.75334718421327], [-77.43760313678041, 34.75304127278184], [-77.43763049949264, 34.75306083045941], [-77.43764525543773, 34.75303719862381], [-77.43762840905485, 34.75301572840238], [-77.43791948303188, 34.75278509362584], [-77.43801527281333, 34.75272517739738], [-77.43808243153605, 34.75267736698851], [-77.43817923207817, 34.75266470086692], [-77.43830423176225, 34.75266574736766], [-77.43835495256413, 34.75265942441553], [-77.43847855596026, 34.75266109348912], [-77.43895188782844, 34.752812713185754], [-77.43946197746965, 34.75306106258109], [-77.43955252412515, 34.752953217436435], [-77.43991957790897, 34.75271360515135], [-77.44016613850111, 34.75271567340146], [-77.44026089534248, 34.75272144578221], [-77.4408459018136, 34.752478150463816], [-77.44090527201513, 34.75242739840967], [-77.44098862023847, 34.752422776065636], [-77.44158622751375, 34.75217772278763], [-77.44165299742085, 34.75215315808816], [-77.44171600415517, 34.75212526172713], [-77.44233079110401, 34.75187877302346], [-77.44238472748644, 34.751852802725416], [-77.44244038409806, 34.75183810594373], [-77.44255203049039, 34.75185457169889], [-77.44314896447565, 34.75160553169891], [-77.44387828643991, 34.75130125314341], [-77.44533691369928, 34.75069268354396], [-77.44558957901982, 34.750587261831896], [-77.44563789099197, 34.749679775496816], [-77.44517209412106, 34.748975767967664], [-77.44468209035303, 34.748523116292816], [-77.44460529918321, 34.74820109864512], [-77.44413506117468, 34.747622780104514], [-77.44418358852042, 34.747494786313936], [-77.44424829215251, 34.74742000835272], [-77.44436717493295, 34.74739519082117], [-77.44462925524785, 34.747416585382936], [-77.44482984459971, 34.748012424449776], [-77.44550424263052, 34.74797569854726], [-77.44608027178467, 34.7481232868798], [-77.44678343922278, 34.748303441667304], [-77.44713068609423, 34.748925527604065], [-77.44786696717547, 34.748222274774314], [-77.44776664744066, 34.746727146384416], [-77.44765714248484, 34.746153181602715], [-77.44727838125476, 34.7457806833763], [-77.44684774877948, 34.74547037406972], [-77.44671064704985, 34.745460335318626], [-77.44624182211652, 34.74534834704911], [-77.4461767399059, 34.7453959073379], [-77.4458479683138, 34.745546771623445], [-77.4455368718603, 34.74556860426656], [-77.44543138679887, 34.74561408871497], [-77.44527193913484, 34.745638883237575], [-77.4450200894929, 34.74569003188966], [-77.44485651532797, 34.74570383689768], [-77.4444038881181, 34.745724944028325], [-77.44423934230275, 34.74562067246213], [-77.44407864078019, 34.745647837262055], [-77.44366938892836, 34.74563812974161], [-77.44359701106504, 34.74562446279323], [-77.44307603824176, 34.74550577085722], [-77.44299602504198, 34.74548535144142], [-77.44285474805595, 34.74547846618589], [-77.44207743626063, 34.745370222861894], [-77.4417159594787, 34.74547703070424], [-77.44168882880903, 34.74548321549534], [-77.44126519674055, 34.745357320541416], [-77.4415658581479, 34.7455698041478], [-77.44136412086927, 34.7457005592394], [-77.44131788586083, 34.745744708421256], [-77.44127612800278, 34.74569068306731], [-77.44111751370943, 34.74532914406468], [-77.44110998113416, 34.7453135897116], [-77.44111184037872, 34.745303748613814], [-77.44111287850806, 34.74529026175232], [-77.44097424373332, 34.744696657173314], [-77.44102841988148, 34.744454794638386], [-77.44076518738697, 34.74433070877217], [-77.4405948026579, 34.74400507854816], [-77.44047393195169, 34.74379331287713], [-77.44036740431517, 34.74348939639701], [-77.4403531895494, 34.74339727810268], [-77.44035456704594, 34.74336212786291], [-77.4403601273275, 34.743313302731295], [-77.44037951364572, 34.74309133004163], [-77.44039840700104, 34.74293200295977], [-77.44040848884362, 34.74282193936928], [-77.44043665868423, 34.74269065961104], [-77.44045481447054, 34.7425586106237], [-77.44050116144395, 34.742442722376225], [-77.44053060726297, 34.742305575888565], [-77.4405760433581, 34.742170668701874], [-77.4406363664481, 34.74206301065604], [-77.44065858663674, 34.74193063155381], [-77.44064694760608, 34.741787194179494], [-77.44066701608416, 34.741571613309176], [-77.4408258353535, 34.74129066416601], [-77.44088085949345, 34.74117323340059], [-77.44110136828395, 34.74095285592552], [-77.44121516096524, 34.74097158431603], [-77.44128749805627, 34.74077541112986], [-77.44158067793595, 34.740436322374364], [-77.44164994253278, 34.74018642448023], [-77.44165205019306, 34.74017689582509], [-77.44182844654291, 34.73996385776525], [-77.44183874413957, 34.7396525864206], [-77.44193883730871, 34.739443400305056], [-77.44203908708498, 34.739326740323875], [-77.4422979770284, 34.73903325656466], [-77.44233239072253, 34.739021867282055], [-77.4423348753009, 34.73899916503491], [-77.44259599891262, 34.73874106375652], [-77.44296160606044, 34.738682662095954], [-77.44306495944626, 34.738598455786224], [-77.4436088319374, 34.73889998190967], [-77.44361661398369, 34.738907908819755], [-77.44361778310147, 34.73891027668747], [-77.44361871734274, 34.738912219606895], [-77.44406312610278, 34.73958080296786], [-77.44412748072045, 34.7395904302245], [-77.44416388974771, 34.73966168457151], [-77.44456528862133, 34.74006135983667], [-77.44477092127558, 34.740214778364894], [-77.44491728968275, 34.74028922754386], [-77.44516275857224, 34.740212488382284], [-77.44557345184775, 34.740613195962325], [-77.44566548381442, 34.74069113075432], [-77.445689575497, 34.74072428643987], [-77.44659589857, 34.74078774131338], [-77.44693232265575, 34.74062873906807], [-77.44696916322535, 34.7406175187377], [-77.44734284796019, 34.74051240485467], [-77.44780160465614, 34.74037336539835], [-77.44813438693222, 34.74030988364129], [-77.44835043342673, 34.74027563703443], [-77.44852511259091, 34.74020038867222], [-77.44869960072145, 34.740176848922175], [-77.44874243625772, 34.740181500864104], [-77.44892502040886, 34.74026699712073], [-77.44898268743785, 34.740306514870106], [-77.44915652066729, 34.740567116055814], [-77.44914452306054, 34.74062182268559], [-77.44914127654289, 34.74084129288423], [-77.44897914090576, 34.74113726517717], [-77.44900413557096, 34.74135239625961], [-77.44893225541959, 34.74161270808689], [-77.4487553788159, 34.74182451551334], [-77.44842991189313, 34.74225931465598], [-77.44844296682405, 34.74230878733754], [-77.44841164773082, 34.742280708011094], [-77.44803762919727, 34.742691832042304], [-77.44812147774843, 34.743278868805], [-77.44812122135956, 34.74328098126622], [-77.44812379053474, 34.74328264522302], [-77.4487622075871, 34.743285500294064], [-77.44893739822774, 34.74311611193569], [-77.44984355987951, 34.74345510323133], [-77.44999423567732, 34.7434597012099], [-77.4502589515296, 34.74377893708755], [-77.45046817952826, 34.74403799367213], [-77.45050688591377, 34.74407114990791], [-77.45090634053635, 34.744740023075515], [-77.45097061787177, 34.744770489868586], [-77.45135382963059, 34.74496803774482], [-77.45200997422847, 34.745358218510674], [-77.4523132998684, 34.745303113572625], [-77.45304313366168, 34.74533476286116], [-77.4533633372014, 34.74511295849668], [-77.45378630820622, 34.74505319706522], [-77.45412490957584, 34.744817773752956], [-77.45392499568696, 34.74443040672894], [-77.45380104641175, 34.74414568866667], [-77.45368096839984, 34.744014649874906], [-77.45361808635016, 34.74403113206963], [-77.45314664678457, 34.743862373359434], [-77.45308691374903, 34.74385161502053], [-77.4530193595719, 34.7438010726343], [-77.45271138472688, 34.743597589976574], [-77.4526596163828, 34.743213737942426], [-77.45266344532949, 34.74318942057648], [-77.4526749288619, 34.74316636983555], [-77.45266115320632, 34.74310667143432], [-77.45267569911289, 34.74271961365574], [-77.45255098352197, 34.74259115110453], [-77.45236109739912, 34.74240447490394], [-77.45225568364768, 34.742291593407614], [-77.45184846590833, 34.74178680897649], [-77.45182526230774, 34.74173523273382], [-77.45178444298216, 34.74170395715014], [-77.4514568179647, 34.741091029609485], [-77.45146221603014, 34.74099388006807], [-77.45135894281405, 34.74095818941952], [-77.45091960268721, 34.74034440561735], [-77.45091012426582, 34.740331424719955], [-77.45090335818686, 34.740316466738115], [-77.45058924050997, 34.73967002221953], [-77.45060154425165, 34.73956734397939], [-77.4505003886631, 34.73949284868203], [-77.45019477288172, 34.73918924039715], [-77.45000201743085, 34.73899910785514], [-77.44991512819593, 34.73896094812976], [-77.44974021107714, 34.738814475968574], [-77.44925123093564, 34.738345154010155], [-77.44892047538889, 34.73830486123164], [-77.44867580813741, 34.73820392729593], [-77.44836110487478, 34.73802206039255], [-77.44806133786722, 34.73794886776261], [-77.44778662582945, 34.737791502449554], [-77.44734162249482, 34.737520282923526], [-77.44713647848154, 34.73744197414571], [-77.44673800227362, 34.736983549524204], [-77.44615275457306, 34.73644334939997], [-77.44596216136617, 34.736146332753634], [-77.44574027182439, 34.73599972616148], [-77.44541379928327, 34.735867117669386], [-77.44521171878247, 34.73611461685101], [-77.44506181856686, 34.73612864914887], [-77.44472204253267, 34.73623252508285], [-77.44468265677358, 34.736233845415946], [-77.44465097786886, 34.73611646592113], [-77.44472174227428, 34.73594344817285], [-77.44464017594655, 34.73580515378934], [-77.444883861823, 34.7354410676722], [-77.44500569159064, 34.73520062168491], [-77.44503852446388, 34.734936081777036], [-77.44492668462851, 34.73479275960029], [-77.44483780926043, 34.73468665486574], [-77.44479030733025, 34.7344032514482], [-77.44444259026977, 34.73428098016629], [-77.44431999174024, 34.73426032650231], [-77.44407929028253, 34.73425353684899], [-77.44395729386933, 34.7342359736507], [-77.44369588056406, 34.734201436481285], [-77.4434766787405, 34.73419860977943], [-77.4431541091257, 34.73427775155524], [-77.44307113949031, 34.73428386185528], [-77.44302883241124, 34.734290960607005], [-77.44288689548975, 34.73430468837585], [-77.44270499935473, 34.734302221975064], [-77.44264113212353, 34.7343291510325], [-77.44255253895278, 34.73434709234697], [-77.44233684090344, 34.7344666904936], [-77.44226227948114, 34.73445798942056], [-77.44189014005829, 34.734274193727934], [-77.44175995753835, 34.73424455152626], [-77.44162450287098, 34.734022857704716], [-77.44169965600216, 34.73390726447627], [-77.44170601113497, 34.73377182269315], [-77.44196772376542, 34.733348995856396], [-77.44146155545523, 34.73305989640055], [-77.44107354066155, 34.73282928742511], [-77.44089565211505, 34.73237063820477], [-77.44136537441072, 34.732245432137375], [-77.44166855657602, 34.73234442270555], [-77.4420553304731, 34.73241961458002], [-77.44228218393751, 34.73243950976275], [-77.44243908698286, 34.73250393362386], [-77.4426356262355, 34.73241954277784], [-77.44284355729448, 34.73241695211633], [-77.4429438934024, 34.73236839705834], [-77.44321923705564, 34.7322829450314], [-77.44360082385941, 34.73219773741804], [-77.44375446792483, 34.73171058609741], [-77.44374470696572, 34.73168898832603], [-77.44376386587628, 34.73167729019085], [-77.44378187086944, 34.73168796513751], [-77.44379294392974, 34.731694530165036], [-77.4443326992851, 34.732000113797056], [-77.44471185066413, 34.732203901433216], [-77.44510627394942, 34.732374610280644], [-77.44546018574948, 34.73253516012263], [-77.44586330895521, 34.73261622338001], [-77.44619008482022, 34.73264955206806], [-77.44641351769597, 34.732386610692984], [-77.446611559639, 34.73213153100403], [-77.44668132504749, 34.73195672379409], [-77.44695652441456, 34.73126715568485], [-77.4469428010607, 34.73112922441872], [-77.44736244512877, 34.73020490461044], [-77.44735754909507, 34.73015609316411], [-77.4475871947906, 34.72961461215304], [-77.44818792038949, 34.728436933362794], [-77.4484626166922, 34.72830609612994], [-77.44840051625721, 34.72798595511202], [-77.44820770293447, 34.72746919672627], [-77.4474928328437, 34.7273017004826], [-77.44580734193683, 34.72690222973207], [-77.44428050128147, 34.72613406088669], [-77.44495572218898, 34.72315777063624], [-77.44515035684985, 34.72267677240054], [-77.44562057526687, 34.72200342687489], [-77.4474504938199, 34.71900830562186], [-77.44892413798733, 34.717678925465165], [-77.44905806857994, 34.7169973009978], [-77.4475298632106, 34.714563946982736], [-77.447241663565, 34.71418410256743], [-77.44706926910003, 34.71367342515609], [-77.44552948392989, 34.71213360144753], [-77.44309185386108, 34.70969587425665], [-77.44121358718344, 34.70955752685238], [-77.44059172645868, 34.709475588647365], [-77.44040736779576, 34.709746299895855], [-77.44032892257111, 34.709811379775964], [-77.43988365760687, 34.710112590927544], [-77.43902272642131, 34.711590960847495], [-77.43816114503454, 34.71205755484464], [-77.43707144500284, 34.71278141319134], [-77.43690561511033, 34.7129969109091], [-77.43494195459442, 34.7121748901076], [-77.43468566128203, 34.71216551857716], [-77.43448926798918, 34.71203943923664], [-77.43353688488902, 34.71170513646329], [-77.4328080427627, 34.71127976156538], [-77.43247780463722, 34.71093481481144], [-77.43158770116901, 34.710003414883445], [-77.4315004517951, 34.709882148581286], [-77.43142319649338, 34.70893449430713], [-77.43146911549738, 34.70859947146633], [-77.43144084409668, 34.7082791371066], [-77.43147522616044, 34.70783457093837], [-77.43146923804544, 34.70777503084176], [-77.43151071484556, 34.707357203356], [-77.43152022736896, 34.70729124620017], [-77.43149105818281, 34.707139729881405], [-77.43144719457642, 34.7067066552265], [-77.43138470345859, 34.70651700721232], [-77.431426306799, 34.706286102045325], [-77.43149781438733, 34.70616529499654], [-77.43163682066768, 34.70588235151675], [-77.43181696943398, 34.70571781797349], [-77.43177425668271, 34.70546167234095], [-77.4315343914154, 34.70533490704061], [-77.43135654469097, 34.7051895906866], [-77.43115133277593, 34.705088886440706], [-77.43098883416584, 34.70500525889741], [-77.43089234982637, 34.704936904282974], [-77.4304463993158, 34.70467957616766], [-77.43044275816311, 34.70467741579108], [-77.43044178291176, 34.70467700872052], [-77.43000720650403, 34.70441348438132], [-77.42990338816895, 34.704326410690236], [-77.42946321973906, 34.70382541899953], [-77.4294186334712, 34.70378669740544], [-77.42939734370037, 34.70377519470051], [-77.4293920127073, 34.703751857106205], [-77.42921175776254, 34.70341440467614], [-77.42901263667113, 34.703060143391966], [-77.4290080643241, 34.70304486235318], [-77.42902510340923, 34.702931781807585], [-77.42906809197228, 34.702573430218386], [-77.42907668912234, 34.702523474653184], [-77.42923657866884, 34.70205674007181], [-77.42925893636661, 34.70199583904156], [-77.42930420999312, 34.701967331181805], [-77.42982683184368, 34.701667637901494], [-77.42993785897289, 34.701609882179], [-77.43006422473688, 34.70155580958659], [-77.4301703938842, 34.701508234270946], [-77.43029557899516, 34.701446750658434], [-77.43033898483444, 34.70137352695953], [-77.43019140370093, 34.70127647530272], [-77.430141742131, 34.70128793512635], [-77.43013433185011, 34.70123573429092], [-77.43011833870497, 34.70121050182578], [-77.42980461706615, 34.70092693536127], [-77.42963508529016, 34.70082396681813], [-77.42936942460135, 34.70068075571831], [-77.42935037076845, 34.70067010334617], [-77.42910399502577, 34.700576294671265], [-77.42906963841092, 34.700563168839594], [-77.42906842907271, 34.700562680273904], [-77.42882435551157, 34.700443217999904], [-77.42879733252249, 34.70039677491265], [-77.42874177034265, 34.700170102924055], [-77.42872765061085, 34.700037187934925], [-77.42868683288671, 34.699671264080166], [-77.42867872899033, 34.69961121921336], [-77.4286678606007, 34.69958519210738], [-77.42863270179181, 34.69947651793444], [-77.42855781765657, 34.69926717926023], [-77.42869202206838, 34.69915928899556], [-77.42880542128076, 34.69907422717771], [-77.4288665649839, 34.69905019360705], [-77.42896723804627, 34.69904444429193], [-77.42919449859319, 34.699024344833845], [-77.42927923019704, 34.69903764113076], [-77.42950599752879, 34.699055286304215], [-77.42985722330327, 34.69911944126702], [-77.43010191166391, 34.69921076434699], [-77.43033327982235, 34.69926489175956], [-77.43073825605387, 34.69922652417931], [-77.43119633496006, 34.69917994338314], [-77.43139558301463, 34.699169770658585], [-77.43197911166023, 34.699065818839955], [-77.43203111427125, 34.699048776935015], [-77.43208140851041, 34.6990145152857], [-77.4326350692229, 34.69854033289523], [-77.43288176325001, 34.698263311104576], [-77.43284292894035, 34.69787345213949], [-77.43288202884771, 34.69770434774853], [-77.43295470068603, 34.697567180669644], [-77.43299680054339, 34.69718542108285], [-77.43306924282093, 34.697006610344516], [-77.43309028328004, 34.69693857937706], [-77.43310079606456, 34.69687305132912], [-77.43313218643095, 34.69667370246109], [-77.43307643882343, 34.6962705821106], [-77.4330952646323, 34.69610173722901], [-77.43307193573804, 34.695992312552946], [-77.43306004153372, 34.69563218464147], [-77.43303803816346, 34.695522672209805], [-77.43307975896943, 34.6950962638895], [-77.43311217513748, 34.69498953824908], [-77.43315015060372, 34.694895487349356], [-77.43330587596617, 34.69449821097162], [-77.4334797122068, 34.69418164950017], [-77.43354967496742, 34.69405295159972], [-77.43355942260001, 34.694027809607476], [-77.43358556286688, 34.69399237959506], [-77.43390634246818, 34.69359005663236], [-77.43407199960902, 34.69341114658873], [-77.43439889411204, 34.69320322333266], [-77.43470330277695, 34.69294748171744], [-77.43487830114074, 34.692811796749154], [-77.43522474003058, 34.69258014526561], [-77.43537955314602, 34.6925572918535], [-77.43560319837925, 34.69250620166229], [-77.43609406259738, 34.69222964244258], [-77.43630390876325, 34.69196500582272], [-77.43652928242997, 34.6917119003278], [-77.43661669066073, 34.69158837527262], [-77.4367428133036, 34.69122751198742], [-77.436934366734, 34.69110077057522], [-77.437171039504, 34.69099896678585], [-77.43757520540055, 34.69095949884899], [-77.43762117802063, 34.69094180998262], [-77.43811662041895, 34.69104901086507], [-77.43821996978957, 34.69108714093673], [-77.43831023880767, 34.69112754304365], [-77.43840138586566, 34.69124835290908], [-77.43870659628459, 34.69162026611268], [-77.43878548058669, 34.691821970305966], [-77.43895499983871, 34.692000947876565], [-77.43882114720643, 34.692200484409504], [-77.4387905302003, 34.692502487846376], [-77.4385528559002, 34.6928118780668], [-77.43879261239327, 34.693538442680264], [-77.43880863421498, 34.69362690125447], [-77.43857971774389, 34.69458627578856], [-77.43885756742617, 34.69525082093472], [-77.43916574576284, 34.69598790728009], [-77.43919031446933, 34.69611701832469], [-77.43925363476755, 34.696375764216484], [-77.4397565124373, 34.69843057866042], [-77.43917779781792, 34.69969346691424], [-77.44016571504558, 34.70208521687494], [-77.44061352375462, 34.702665439368005], [-77.44302801272633, 34.70404635450906], [-77.44064268650693, 34.70414945187943], [-77.44108793374782, 34.70603870288532], [-77.44131992266776, 34.706958139287195], [-77.44279070173671, 34.70765918774486], [-77.44409824228751, 34.706216269560564], [-77.44617628200469, 34.70514666349652], [-77.44883079180835, 34.70556585060387], [-77.4493450292593, 34.70580350991388], [-77.44987823363905, 34.705940701831615], [-77.45278277587921, 34.70604164955449], [-77.45318700610287, 34.70536050091128], [-77.45479742539497, 34.704679013107054], [-77.45544478495586, 34.70441024742493], [-77.45562812533825, 34.70397744615937], [-77.45650934304932, 34.703172113283166], [-77.45651323530551, 34.703168710023185], [-77.45651411950037, 34.7031671774366], [-77.45651818815999, 34.70316040564253], [-77.45674543386505, 34.70279758044087], [-77.45681795177617, 34.702716182027615], [-77.4569680620073, 34.702712615442536], [-77.45722237215634, 34.70282918792212], [-77.45725124339332, 34.70284152607262], [-77.45726787814762, 34.70285537820332], [-77.45728066687144, 34.702877847657675], [-77.45728528904348, 34.70293195520257], [-77.45732118001925, 34.70317149739374], [-77.45724854127329, 34.70330989351777], [-77.4571999400037, 34.703408633586434], [-77.45695324947552, 34.70387250053125], [-77.45672673125813, 34.70351445537429], [-77.45694773862495, 34.70388193788963], [-77.45695386455087, 34.703885452492685], [-77.45748483565988, 34.70425066754663], [-77.45762976039613, 34.70449003421302], [-77.45801086810755, 34.704648068009426], [-77.45845274835699, 34.70483880747398], [-77.45858735585149, 34.70487091109233], [-77.45958973002274, 34.70520101890362], [-77.45977207852629, 34.70520677308964], [-77.46040771838298, 34.70504223097039], [-77.46045875840915, 34.7050483557871], [-77.4605516559507, 34.70505569958138], [-77.46077327430737, 34.70506887898687], [-77.46093021151785, 34.70527081859406], [-77.46095331731456, 34.70533441741646], [-77.46098555474413, 34.70544316185752], [-77.46105622130244, 34.705737893745024], [-77.46145233575645, 34.7060121904381], [-77.46188172097688, 34.70628606837834], [-77.4620129610525, 34.70632343345654], [-77.46226005989215, 34.70657452567517], [-77.46226064620868, 34.70657523155331], [-77.46227540462641, 34.706597741915004], [-77.46248306277761, 34.70691447379155], [-77.46249204075087, 34.706924101682155], [-77.46249214316597, 34.70695169513046], [-77.46241590421297, 34.707466738942834], [-77.462265541584, 34.70791159045711], [-77.46222966798899, 34.7080177249829], [-77.46207793320059, 34.708466633321024], [-77.4619720181744, 34.70909163821478], [-77.46167753221377, 34.70994293677609], [-77.46251089617817, 34.710853765981255], [-77.46222273697961, 34.711501066331884], [-77.46283140495666, 34.71236253830444], [-77.46487325376245, 34.71167886652646], [-77.4668568831198, 34.711089854793244], [-77.46785738089655, 34.7091479647845], [-77.46824974799446, 34.70838643885318], [-77.46842804275845, 34.707677241378875], [-77.46883500921035, 34.70516793737285], [-77.46877454569542, 34.704098046766404], [-77.46803434556081, 34.7032283158694], [-77.46624785776676, 34.70267681482741], [-77.46566858639166, 34.70254401640338], [-77.4647573697432, 34.701513502219655], [-77.46450401124412, 34.701269414373414], [-77.46370379277684, 34.70047215198735], [-77.463422085084, 34.70028535705932], [-77.46303131026181, 34.6998560458271], [-77.46176937078297, 34.698295477141464], [-77.46121695520739, 34.69763468964595], [-77.46038216468214, 34.69669461700289], [-77.45981978874065, 34.696171597139845], [-77.45828594084142, 34.69528716818881], [-77.45761311358311, 34.69493757336698], [-77.45701502814488, 34.695016239241305], [-77.45670122738294, 34.69540848567216], [-77.45559937412675, 34.695693412269904], [-77.45507068905412, 34.69595672234781], [-77.45487127393997, 34.6959988877639], [-77.45472674131247, 34.696055312769246], [-77.45450281964018, 34.696144430269094], [-77.45416491057472, 34.69619920642009], [-77.45408269879164, 34.696205567653585], [-77.45404259177545, 34.69620515246909], [-77.45396214394435, 34.696199859272156], [-77.45341992724936, 34.69614227800861], [-77.45304549118745, 34.696006057230925], [-77.45254748362919, 34.69589769249292], [-77.45225478340849, 34.69573915004157], [-77.45199166185029, 34.695439748867784], [-77.45186147741418, 34.69529127156863], [-77.45130675005613, 34.694641382685624], [-77.45130070036289, 34.694632562392265], [-77.45129500083017, 34.69462568507697], [-77.45096601025256, 34.69396329092913], [-77.45096463853099, 34.693880025638116], [-77.45066463443712, 34.69329895252836], [-77.45061368641952, 34.69313370690705], [-77.45050869518091, 34.69291223689552], [-77.45031965194491, 34.69236362591123], [-77.45015239551202, 34.69200190510928], [-77.45013662351438, 34.691982637975556], [-77.44956458444459, 34.691786045543054], [-77.44955296250077, 34.69178494785621], [-77.44954596366455, 34.69178347600289], [-77.44900106949682, 34.69157490781604], [-77.44897616236632, 34.691563532958], [-77.44871438955388, 34.69124818143588], [-77.44855394413204, 34.6908842091085], [-77.4485517114326, 34.690869682391174], [-77.44855083920326, 34.69081819611598], [-77.44854342622799, 34.69042671873108], [-77.44850099694685, 34.69030668532286], [-77.44853704260363, 34.69013491563097], [-77.44855813634626, 34.689767641231974], [-77.44896620784172, 34.68938148618792], [-77.44898916481941, 34.689378575640184], [-77.44901819369518, 34.689369428924714], [-77.44975458075756, 34.689134162709635], [-77.45113287369071, 34.68899051885359], [-77.45139571502214, 34.688825589562114], [-77.45170630737485, 34.68876943667019], [-77.45302379784036, 34.68849566638996], [-77.45447766982143, 34.688049022755365], [-77.45463262117656, 34.68797764390741], [-77.45566591600146, 34.686832656723034], [-77.45588934406994, 34.68618083836922], [-77.45632465089798, 34.68539169125961], [-77.45642001203379, 34.6852483056671], [-77.45646176336732, 34.68514313173756], [-77.45668861508729, 34.68422417643217], [-77.4569005995977, 34.6833653976357], [-77.45696245281587, 34.68320189153487], [-77.45703503124713, 34.68308997461337], [-77.45731887174254, 34.682652281080976], [-77.45755151543389, 34.682289767232035], [-77.45750252366803, 34.682167105280534], [-77.45716217915538, 34.68158850598977], [-77.45682238195093, 34.68116920858073], [-77.45668852011588, 34.68098499138425], [-77.45643901802043, 34.68072317167195], [-77.45641841839003, 34.68069271731122], [-77.45635196169158, 34.680631816234104], [-77.45607632953518, 34.68042096098702], [-77.4559977543607, 34.68034788519842], [-77.45582983763491, 34.680231616648406], [-77.45555547709773, 34.679973842268375], [-77.45543701476784, 34.679864660310145], [-77.45518857630965, 34.67960584079035], [-77.45515780820197, 34.67957498049353], [-77.45514543144694, 34.67956041754613], [-77.45510190568434, 34.67949567841042], [-77.45494425544399, 34.67926658581536], [-77.45481728642835, 34.67904691807955], [-77.4546633551239, 34.67880289868663], [-77.4548918376918, 34.67872941248115], [-77.4551591463279, 34.678629185918126], [-77.45537874898474, 34.67858623256334], [-77.45543033302394, 34.67845160798577], [-77.45545039986702, 34.67838378385131], [-77.45550160609804, 34.67821071589806], [-77.45556971887036, 34.677980507399894], [-77.45559641171826, 34.67789029081152], [-77.4556575077826, 34.67768379511418], [-77.4556890367503, 34.67757723077036], [-77.45560455248253, 34.677273771172835], [-77.45559861328941, 34.67717770016397], [-77.45537399605757, 34.67692850040835], [-77.45484056064033, 34.67638736763989], [-77.45480640703092, 34.67635175988339], [-77.45478949689101, 34.67633747600675], [-77.45475427374942, 34.67630828282043], [-77.45434358460446, 34.675967901796014], [-77.45395018598158, 34.6758572883095], [-77.45376894180065, 34.67575563207651], [-77.45346426981271, 34.675906295327245], [-77.45346908168354, 34.67599442024171], [-77.45347561570424, 34.676114061014204], [-77.45349875476032, 34.676537721295816], [-77.45350879779593, 34.67672162594374], [-77.45349308891085, 34.67700715881084], [-77.45349320492417, 34.677095334430476], [-77.45348502746432, 34.677152294501894], [-77.453421921587, 34.677484914439304], [-77.45339180364054, 34.677739079868076], [-77.45323272711074, 34.678239746411606], [-77.4532225873184, 34.67828025704177], [-77.45321930527321, 34.67829815640778], [-77.45320450137166, 34.6783323303753], [-77.45296909394474, 34.67883006901533], [-77.45285866946172, 34.6789901824325], [-77.45279237317848, 34.679141402137205], [-77.45297605496519, 34.67945187474591], [-77.452982035182, 34.67946051001784], [-77.45320216867775, 34.679763127696205], [-77.45333281046786, 34.67994635063732], [-77.45342429582755, 34.68006908107684], [-77.45345717264331, 34.68023941234186], [-77.45352948627507, 34.680408362444524], [-77.45363418175191, 34.68092065090296], [-77.45373513972784, 34.68111592969399], [-77.45380388022227, 34.68151257431836], [-77.4538117482561, 34.68154172056589], [-77.45380324621023, 34.68154683488516], [-77.45375606473868, 34.68200005611877], [-77.45374790794094, 34.682078411694825], [-77.45374194743758, 34.682194164179975], [-77.45375099861434, 34.68244860426213], [-77.45380206611698, 34.68262728801835], [-77.45381085618665, 34.682646822922656], [-77.453830971515, 34.68266644816918], [-77.45396413299726, 34.68280602753384], [-77.45404781923631, 34.68288544902268], [-77.45429738296582, 34.68338846665994], [-77.45415273520466, 34.68362012899641], [-77.45398913126539, 34.68383973399959], [-77.45390402440628, 34.683953971506305], [-77.45373392762154, 34.683971476118515], [-77.45351395692805, 34.684064111369274], [-77.45308735731165, 34.68408355973654], [-77.45307646579424, 34.6840967631478], [-77.45305881766778, 34.684090364341706], [-77.4530375904443, 34.68408582845578], [-77.45242381542855, 34.68407048240311], [-77.4521754612986, 34.68399942488555], [-77.4520839082009, 34.68396994432301], [-77.45182598269352, 34.6839220085085], [-77.45142217225877, 34.68386756459821], [-77.45120225943789, 34.68386310587834], [-77.45111873527766, 34.68388786073767], [-77.45095176365311, 34.68389612487789], [-77.45067729087256, 34.68391404497464], [-77.45055055206544, 34.68390100958833], [-77.45040050811627, 34.68384777006906], [-77.45011790046158, 34.68374749285237], [-77.44995455550136, 34.68374618794666], [-77.44982254198536, 34.68364269046255], [-77.44958129112018, 34.68341708517568], [-77.44944642757373, 34.68328741636502], [-77.44891602146888, 34.68312838001559], [-77.44880984807081, 34.683105070228414], [-77.44853944841475, 34.683052901416104], [-77.44829688941759, 34.68301437347104], [-77.44824785307506, 34.68300057508155], [-77.44807197870973, 34.68303439980741], [-77.44787574366431, 34.68307371420526], [-77.44761188537639, 34.68322651493073], [-77.44756067347541, 34.683269773365446], [-77.4475212591058, 34.683297504686905], [-77.44726548695701, 34.68357159105841], [-77.44707027837029, 34.683657365291836], [-77.44690578864828, 34.683731354825575], [-77.44672510654124, 34.6838349992634], [-77.4465747987327, 34.68393803466443], [-77.44644963671502, 34.6839994261043], [-77.44596013126004, 34.68426462274023], [-77.44588822277197, 34.68431120577911], [-77.44581744130464, 34.68433744688425], [-77.44549347534078, 34.684413694661444], [-77.44524430337958, 34.684524236152654], [-77.44512362561593, 34.68455687342526], [-77.44506443830679, 34.684633233289745], [-77.44480674769522, 34.68478662623816], [-77.44447119890597, 34.68498191554379], [-77.44446942758246, 34.684982971864166], [-77.44446805881019, 34.684983772241715], [-77.44445822224812, 34.68498969274388], [-77.44417285591717, 34.68516008530554], [-77.44413440376867, 34.68518307173907], [-77.44408331591406, 34.68521534403406], [-77.44388668526537, 34.68533955583912], [-77.44382629808256, 34.68542716617388], [-77.44365782426942, 34.68577027804194], [-77.44365868059639, 34.68581887607855], [-77.44356076347843, 34.68625721286797], [-77.44357878505615, 34.686349975122155], [-77.44353884333566, 34.68645265502185], [-77.44350930209626, 34.68660519968245], [-77.44334489326323, 34.686661005213324], [-77.44318984197241, 34.68662992236041], [-77.44287856279176, 34.68654202811479], [-77.4427910403873, 34.686360381326466], [-77.4427173058682, 34.68616294070857], [-77.44268248276225, 34.68603662749003], [-77.44250720809889, 34.68580424422753], [-77.4423839297877, 34.685552328457], [-77.44233181869959, 34.68543105772737], [-77.44232385416034, 34.68535221451143], [-77.44232377792349, 34.685214471868946], [-77.44232149292661, 34.684988959046045], [-77.44231949462531, 34.68479165616236], [-77.44236630550161, 34.68453631798004], [-77.44236878654264, 34.684522804862056], [-77.4423270966627, 34.68423527988363], [-77.4423293442619, 34.684092861646164], [-77.44221468279326, 34.68392175711391], [-77.44181270352139, 34.683496401969755], [-77.4417806001598, 34.683429141757586], [-77.44177154511706, 34.68323835045854], [-77.44167866689325, 34.68341242628857], [-77.4416761379586, 34.68344865515651], [-77.44167514597986, 34.683473168050604], [-77.44153976973897, 34.683960013360775], [-77.44153471069511, 34.683978206448195], [-77.44146893084866, 34.68421476445575], [-77.44143606433069, 34.684398441722216], [-77.44142240279248, 34.68447150129772], [-77.44142150547432, 34.68447770158999], [-77.44142161402507, 34.684487636218726], [-77.44140193147068, 34.68492645525941], [-77.44141501771166, 34.68503446942315], [-77.44144372824361, 34.68527145468739], [-77.44145037881658, 34.68532635091105], [-77.44144302488644, 34.685355707378946], [-77.44143536515735, 34.685600619522425], [-77.44129549988638, 34.685776863203245], [-77.4411924386422, 34.685906729163506], [-77.44110799983918, 34.68604520276702], [-77.44087105722897, 34.68635216621274], [-77.44079612024406, 34.68645602902147], [-77.44075906117102, 34.686482244050275], [-77.44048380747381, 34.686583336177044], [-77.44041113807131, 34.6865744910127], [-77.44017630461511, 34.68653875719659], [-77.44001373891226, 34.686221659551705], [-77.44008242736297, 34.68603723265067], [-77.44009907404649, 34.685971975820024], [-77.44009739008196, 34.68591747302323], [-77.44010003889488, 34.68569279292277], [-77.44012516543498, 34.685359391096625], [-77.44012561172092, 34.68514269436633], [-77.44014206312269, 34.685006013141134], [-77.44016074777565, 34.68487545955594], [-77.44010065356157, 34.68458469069401], [-77.44009994120609, 34.68457719285837], [-77.4400987354454, 34.68457425796087], [-77.44007997575108, 34.68453783648624], [-77.43991592561542, 34.68420760899656], [-77.4397113852927, 34.683935374605014], [-77.43966490023786, 34.68387578740638], [-77.43966060790221, 34.6838677920501], [-77.43965581666183, 34.68386035453321], [-77.43953576694727, 34.68347350459778], [-77.43943611529684, 34.68322449434093], [-77.43943406101943, 34.683069560612665], [-77.43930546388859, 34.682903029575414], [-77.43912927491436, 34.68275039568345], [-77.4387910197201, 34.68246626292992], [-77.43872236346822, 34.682415883936315], [-77.4383963059649, 34.68216358149121], [-77.43830950103259, 34.68191566986304], [-77.43827450238572, 34.681700237674576], [-77.4380998136713, 34.681394554181296], [-77.43809029135673, 34.68135630175188], [-77.4379117582206, 34.68107544187233], [-77.43788478211206, 34.681037921541126], [-77.43783492687466, 34.680987484017294], [-77.43766619352392, 34.68081678005102], [-77.43735398062324, 34.68081311075881], [-77.4373470815994, 34.680812409596136], [-77.43734361742565, 34.680812745471265], [-77.43733583754845, 34.680812962674224], [-77.43689982123058, 34.68083501958638], [-77.43669664911029, 34.680845874531244], [-77.43640528207571, 34.68077434296809], [-77.43639195752577, 34.68076831289987], [-77.43617280510799, 34.680441684866224], [-77.43616073619661, 34.6804184388776], [-77.43613482621065, 34.68039298171302], [-77.43591346340162, 34.680230674713584], [-77.4357737173435, 34.68013360216666], [-77.43563757808923, 34.68007686286806], [-77.4354926801967, 34.68003023127509], [-77.43534538676742, 34.67997942725156], [-77.4351971164184, 34.679927904828546], [-77.43505498574723, 34.67987580312307], [-77.43485917808127, 34.67974236136151], [-77.43445009405708, 34.679751839852884], [-77.43430045785009, 34.67975149057789], [-77.43421157068778, 34.679892912862016], [-77.43410042196355, 34.67996106311583], [-77.43408439641449, 34.67997130480334], [-77.43406211567213, 34.67998554400035], [-77.43381772710205, 34.68014172788662], [-77.43375036463262, 34.68017301020527], [-77.43367806033834, 34.68020567745053], [-77.4335723903298, 34.68025594855216], [-77.43338168803032, 34.68026876467197], [-77.43335472634169, 34.68027400028995], [-77.43331539294383, 34.68026700009718], [-77.43304557742984, 34.68017708223425], [-77.43278489540769, 34.68009020732014], [-77.43269871933596, 34.68007801960893], [-77.43247934467044, 34.67991947504844], [-77.43230849003534, 34.68005914870582], [-77.43216444882742, 34.680122589642856], [-77.43190544279366, 34.680148024151634], [-77.43176256517306, 34.68018226371896], [-77.4316598371837, 34.680225639320895], [-77.43153516308487, 34.68029047169414], [-77.43138386607019, 34.68040865269342], [-77.43138075834175, 34.680411946119335], [-77.43137292324367, 34.68042167512543], [-77.43124868280273, 34.68056992712971], [-77.43113925751632, 34.68072894615317], [-77.43111138208754, 34.68087241731138], [-77.43107881412632, 34.68104003719305], [-77.43098201611295, 34.681240964196846], [-77.4308979069442, 34.68135682084774], [-77.43085246119617, 34.681417802412994], [-77.43067780835145, 34.68171692715155], [-77.43062863601564, 34.68179970323927], [-77.43061954723669, 34.68181853210333], [-77.43058313830697, 34.68185383705999], [-77.43033908685146, 34.68207415243019], [-77.43007550379485, 34.68218732188141], [-77.42998115314887, 34.682236799249424], [-77.42988361877028, 34.682247181709954], [-77.42921651858687, 34.682424231473654], [-77.42918948669212, 34.682431583745654], [-77.42918616964413, 34.68243274481964], [-77.42918331527073, 34.68243434745664], [-77.42917311469702, 34.68244234693652], [-77.42886910881876, 34.682662221122264], [-77.42878288472048, 34.68272954021127], [-77.42866702565286, 34.68281284224667], [-77.42855861950801, 34.6829024444543], [-77.42851081370702, 34.68294195777431], [-77.42842608670541, 34.68300810751553], [-77.42839608960718, 34.68301064549069], [-77.4283607585613, 34.6830811371791], [-77.42824656695618, 34.683140113499974], [-77.42809622851087, 34.68317227184088], [-77.42787288633303, 34.683277021578476], [-77.42766451183692, 34.68327280070251], [-77.42755391149664, 34.68311813322057], [-77.42740628849901, 34.68293095527259], [-77.42728396046036, 34.68278441712552], [-77.42719593419628, 34.68267766793406], [-77.42713939032632, 34.68262156356204], [-77.42699577537776, 34.68259080452618], [-77.42687548688525, 34.6826778563914], [-77.42681698622808, 34.68272483436782], [-77.42683216835906, 34.682827556016896], [-77.42685904010793, 34.68296175508647], [-77.42688646467036, 34.68302867371237], [-77.42695810136141, 34.68327710013154], [-77.42697792358575, 34.68334020099365], [-77.42693991494048, 34.68337438097689], [-77.4267135757209, 34.683527277223526], [-77.42667120148575, 34.68355590173975], [-77.42659816905665, 34.683636199446596], [-77.42651082949916, 34.683735900008855], [-77.42643491104073, 34.68391745488086], [-77.42636163135354, 34.684062097059005], [-77.42625483976667, 34.68420543784375], [-77.42620454382613, 34.6842886957154], [-77.42615527066876, 34.68445014956369], [-77.42609461172196, 34.68461990898735], [-77.42609719576153, 34.68470937493094], [-77.42608907686336, 34.684847807133565], [-77.42594800780793, 34.684936731625996], [-77.42593249943404, 34.68496574965255], [-77.42592243911832, 34.68513813746026], [-77.4259674398347, 34.6852230669103], [-77.42609613157299, 34.68537106721878], [-77.4262272653549, 34.685457303420776], [-77.42623492685436, 34.685460229971405], [-77.42638614592734, 34.68547608184607], [-77.42647930833242, 34.68548584762971], [-77.42669711679804, 34.685508679436936], [-77.42682121070159, 34.68552168728188], [-77.42697528345553, 34.68554887367903], [-77.42700360334803, 34.68555677328695], [-77.42703891605767, 34.685564957198], [-77.427306140134, 34.68561851694167], [-77.42739207014748, 34.68564076393573], [-77.42745517664808, 34.685657101994394], [-77.42752650021347, 34.685702214911764], [-77.42759829239779, 34.68571614811282], [-77.4276564454077, 34.68575362047095], [-77.4276776986962, 34.68582124967746], [-77.42764579776104, 34.68589726210289], [-77.42762916943994, 34.68594404468539], [-77.42760044983794, 34.686000179509776], [-77.42756936116331, 34.686062894734526], [-77.42744450261773, 34.68624761237629], [-77.4274200934441, 34.68627612788263], [-77.42740926828199, 34.686286438380705], [-77.42714863121002, 34.68658018257725], [-77.42707083029546, 34.68672714182672], [-77.4269818639651, 34.686927902171234], [-77.4268061329276, 34.6871936371076], [-77.42671185249179, 34.68736184772821], [-77.42653755588152, 34.68765877613303], [-77.4264813379541, 34.687732861724335], [-77.42630118519601, 34.68810471893548], [-77.42628565614461, 34.68812974878275], [-77.42627463096767, 34.68814280214498], [-77.42625124258971, 34.688156645513104], [-77.4259680063081, 34.68838938270335], [-77.42577050841338, 34.68850864873245], [-77.42563966574443, 34.68860046073231], [-77.42543703560455, 34.68875573387581], [-77.4252195880929, 34.688875036990645], [-77.42504890268648, 34.68913039705608], [-77.42492630269842, 34.68933153562944], [-77.42474710339795, 34.6896459900087], [-77.42466174730694, 34.68979808360707], [-77.4245965396828, 34.689886628904624], [-77.42436962447874, 34.69022964807229], [-77.42435754610405, 34.69024380228148], [-77.42434771235952, 34.69024732622958], [-77.42434898921243, 34.690258492242506], [-77.42407365935188, 34.69052757676716], [-77.42393577957691, 34.690662327879785], [-77.42392058142727, 34.69067403918156], [-77.42378050811364, 34.69079620699268], [-77.42368784487317, 34.690855149574816], [-77.42351304230603, 34.69097501585497], [-77.42344337980421, 34.69099293607163], [-77.42338581744286, 34.691029051261175], [-77.42334160295485, 34.69112522241514], [-77.42316155773923, 34.69128009407973], [-77.42308661335451, 34.69134124427838], [-77.42300995271302, 34.69140618927305], [-77.4229645951004, 34.69144080392821], [-77.42285145587606, 34.69152101624834], [-77.42269333116681, 34.69162546569978], [-77.4226817338618, 34.69163300818164], [-77.42252252195281, 34.69173114975335], [-77.4223609712775, 34.69178875701795], [-77.4221840974171, 34.69192576767512], [-77.42213359027912, 34.691988767878634], [-77.42189358259826, 34.692141853508964], [-77.42185673793759, 34.692138479439045], [-77.42175993976286, 34.692137616367894], [-77.42139294878625, 34.692128120274674], [-77.42123513742618, 34.69220257618437], [-77.42095887273405, 34.692416505312174], [-77.42096504835928, 34.692563216227], [-77.42092214797546, 34.69285427299764], [-77.42093063154272, 34.69296571594753], [-77.42091511257681, 34.69303041824442], [-77.42073004367269, 34.69328814562313], [-77.4205783922132, 34.69336437227325], [-77.42055554257152, 34.6933768134594], [-77.4205315005129, 34.693385195643444], [-77.42037120418814, 34.693449396115724], [-77.42021770949287, 34.693503388725034], [-77.41998962507587, 34.69357346652575], [-77.41986421648639, 34.69361756502884], [-77.41979980078575, 34.69363708063928], [-77.41973118225233, 34.693664344820995], [-77.4196203910056, 34.69371772321912], [-77.4195003598808, 34.693767535359875], [-77.41942350382118, 34.69376978916452], [-77.41924688134308, 34.693726445745895], [-77.41919587867066, 34.69371240213717], [-77.4191478887703, 34.6936931249002], [-77.41890471352508, 34.69361127206456], [-77.4185532234796, 34.69346876762151], [-77.41832110556412, 34.69341343117977], [-77.41801131576852, 34.69334920950095], [-77.41772277971293, 34.69326643293108], [-77.41747707763102, 34.693205114168], [-77.4174230149342, 34.69319501460603], [-77.41735202069802, 34.69317790811669], [-77.41721774508119, 34.6931550654745], [-77.41711207932065, 34.69316218021167], [-77.4169980654823, 34.693169856906756], [-77.41686123226312, 34.69321951508666], [-77.41689524982044, 34.69336847037552], [-77.4168981951756, 34.69351199536379], [-77.41687313598926, 34.693713605188094], [-77.41687071009439, 34.693781930063025], [-77.41683432577076, 34.693840245937416], [-77.41645595666816, 34.69452750269805], [-77.41626091206844, 34.694686810682406], [-77.41611475457641, 34.69471760702638], [-77.41600575163426, 34.694769731244236], [-77.41574064545146, 34.69485389950383], [-77.4152228868697, 34.69526002850348], [-77.41505238808409, 34.69522454207961], [-77.41506539327563, 34.695386794302244], [-77.41489667556152, 34.69554129992415], [-77.41484450694007, 34.6955890741722], [-77.41483292449489, 34.69561372740852], [-77.4148031567402, 34.695854160319264], [-77.41478517542546, 34.69603416812925], [-77.41487816697502, 34.6964357749004], [-77.41487780875725, 34.69643937989599], [-77.41454367937499, 34.69649899785833], [-77.41447460612169, 34.696523920085454], [-77.41415431322989, 34.69673696895604], [-77.41414799949352, 34.69673790651077], [-77.41414696968823, 34.69674281727416], [-77.41414837858099, 34.69674616443158], [-77.41415005136474, 34.696751686900754], [-77.41419562260133, 34.69694963340983], [-77.41424545840609, 34.69705682406162], [-77.41428152386473, 34.69713697660862], [-77.41444383167008, 34.697405772345604], [-77.41449011769811, 34.697496316026985], [-77.41453668030914, 34.697629857161004], [-77.41465494847345, 34.697873911466836], [-77.41473075635203, 34.698065248648035], [-77.41478011255214, 34.69826805368457], [-77.41491104760958, 34.69855040147308], [-77.41494846772933, 34.69864418026459], [-77.41497238363279, 34.698708877250375], [-77.41510245729371, 34.69899609039677], [-77.41511856413766, 34.699019580338465], [-77.41533549643715, 34.69929801877109], [-77.41538086795538, 34.69935651638236], [-77.41544135384255, 34.6994320291823], [-77.41557110907706, 34.69959106554785], [-77.41573327309445, 34.699655866772744], [-77.4158619017794, 34.69969354976586], [-77.41595764233567, 34.69969702010327], [-77.41622748822181, 34.69970701846866], [-77.41642576679938, 34.69971441578477], [-77.41649650883454, 34.69971540553721], [-77.41654286513143, 34.69976449850457], [-77.41659927058862, 34.69983706576255], [-77.4166893590778, 34.69992656648974], [-77.41670499285247, 34.700102161518174], [-77.41670877095464, 34.70014164808479], [-77.4167077354671, 34.70017546078256], [-77.41665713840041, 34.70041640524569], [-77.41666941356789, 34.70060442510591], [-77.41660630016104, 34.70075763892346], [-77.41648610147888, 34.70091567746753], [-77.41646733982012, 34.70092293078221], [-77.4162914792635, 34.70099091875322], [-77.41625485290247, 34.70100054027504], [-77.41611428905807, 34.701035442657464], [-77.41606184926248, 34.701046828324515], [-77.41589088235783, 34.701083948416], [-77.41557475054707, 34.70115599468665], [-77.4154904627233, 34.701177268786], [-77.41542733373319, 34.701194332409536], [-77.41519058741657, 34.70122131504134], [-77.4150956426015, 34.70123306912636], [-77.41506108036819, 34.701223231784425], [-77.41479063803476, 34.701179644790145], [-77.41425463122626, 34.70116537957322], [-77.41405546149211, 34.701075024471606], [-77.41358419443503, 34.70091907880914], [-77.41348700415926, 34.70089356997585], [-77.4131672380407, 34.70072625321517], [-77.4130319010619, 34.70061293903964], [-77.41290628130074, 34.70038875199864], [-77.41256730302935, 34.700137741787394], [-77.41253613813588, 34.700111609600334], [-77.41252160850733, 34.70010285531257], [-77.4124688219782, 34.70006950282901], [-77.4120891294277, 34.69983689875333], [-77.41208966842783, 34.69944008884121], [-77.41208698221713, 34.6993914449832], [-77.41209005877147, 34.69937788911878], [-77.41209239549538, 34.69936114078736], [-77.41214881038806, 34.69891930570637], [-77.41208634381567, 34.69881747862736], [-77.41189127556544, 34.698580378659685], [-77.41175260898531, 34.6983908016802], [-77.41166197052156, 34.69822967678894], [-77.41159543628058, 34.69808662626955], [-77.4114903992612, 34.69785489357633], [-77.41137225008215, 34.69749105723664], [-77.41135482923579, 34.69744333766604], [-77.41125156265278, 34.697061819835824], [-77.4111819827876, 34.69682375285649], [-77.41111589128711, 34.696672063764474], [-77.41102431429283, 34.69647938567101], [-77.41094759863547, 34.69629591440186], [-77.41092075467029, 34.69617324556459], [-77.41085639076395, 34.69588761209048], [-77.41085246190703, 34.695869795510866], [-77.41084008447903, 34.69581694372816], [-77.41078107556038, 34.69556526219548], [-77.41076097653941, 34.69548106435612], [-77.41072002713923, 34.69531702958615], [-77.41064709133332, 34.695082221616985], [-77.41060493407255, 34.694944520320234], [-77.41062962757239, 34.6947246279734], [-77.41063922567291, 34.69463915635172], [-77.41062586917933, 34.694392729563305], [-77.4106749736869, 34.69417789871533], [-77.41071240245307, 34.69411187316276], [-77.41100653676692, 34.69396680072964], [-77.41106375367633, 34.69393836544949], [-77.41112799158788, 34.69390833737538], [-77.41135603751763, 34.69380952453487], [-77.41141773734955, 34.69376916448065], [-77.41155880554318, 34.6936009100657], [-77.41159825226504, 34.6933464236126], [-77.41160018827328, 34.69333583257473], [-77.41160263627248, 34.693323438168605], [-77.41165025071255, 34.69307379101725], [-77.41168147023954, 34.69286536185665], [-77.41169280671446, 34.6928091240813], [-77.41169136794456, 34.69272043763087], [-77.41168368547017, 34.692526376031125], [-77.41170226384669, 34.69241033929721], [-77.41158553313416, 34.6923284029862], [-77.4113650188215, 34.69210467079525], [-77.41133597713362, 34.69208361915995], [-77.41128017810854, 34.69204795029695], [-77.4110644203495, 34.69191480960125], [-77.41093577205567, 34.691837378718134], [-77.41091866157629, 34.69169959532746], [-77.41083242761603, 34.69143414149217], [-77.41085546441107, 34.69135333141567], [-77.41098544344058, 34.691163846130046], [-77.41127986252624, 34.69080115047121], [-77.41129636444276, 34.69071351875582], [-77.41131767589235, 34.69061303158486], [-77.41146750478325, 34.69049384157786], [-77.41139775611197, 34.690305624335146], [-77.41135334712963, 34.69017434169544], [-77.41126464700515, 34.689914802736354], [-77.41111270944953, 34.689535031004624], [-77.41111224476393, 34.68953203096856], [-77.41111190116791, 34.68953074737992], [-77.41090164802083, 34.6891735337645], [-77.41078033514324, 34.688855617235546], [-77.41073763066126, 34.68879560786951], [-77.41072250994087, 34.68866944505002], [-77.4106961452594, 34.688366567397885], [-77.41066556391362, 34.68825634188082], [-77.41062285042898, 34.68798034507339], [-77.41061776680486, 34.687952917339054], [-77.4106138260359, 34.687938257384715], [-77.41051716147024, 34.68764529813592], [-77.41050246146186, 34.68755467136458], [-77.41058142815262, 34.687164456807324], [-77.41060177943871, 34.68711578967757], [-77.41064120779295, 34.68705044717705], [-77.41080409060568, 34.686780511260785], [-77.41097084586953, 34.68668581270042], [-77.41100113759981, 34.68645395324806], [-77.41099482318687, 34.686344343703695], [-77.41104381443206, 34.68615222898299], [-77.41090564734321, 34.68582404669644], [-77.41086614022777, 34.685617576300444], [-77.41086217465953, 34.685529554385226], [-77.41085123997087, 34.68536135946051], [-77.41084094012464, 34.685242565848355], [-77.41084393566663, 34.68518049347974], [-77.41085418076119, 34.68496764014027], [-77.41086608757851, 34.68472490644384], [-77.41086707380171, 34.68463912226394], [-77.41087504707639, 34.684415825073415], [-77.41091449224693, 34.684258367295975], [-77.41099157979542, 34.68409463710806], [-77.41137458475933, 34.684066428893765], [-77.41141482133827, 34.68406570007323], [-77.41143560489724, 34.684072781550014], [-77.41199616530066, 34.68425346609316], [-77.4120002784299, 34.684256910458764], [-77.4120067111708, 34.684258782845845], [-77.41201889440421, 34.684256960304516], [-77.41292622383898, 34.68426651946547], [-77.41340402432826, 34.68383522108951], [-77.41356511238955, 34.683815273007305], [-77.41361961102993, 34.68369883429219], [-77.41363462294693, 34.68356991398835], [-77.41352739194531, 34.683409142836275], [-77.4133569672332, 34.68279304988645], [-77.41315054513804, 34.68249747702551], [-77.41313154433054, 34.68240983669853], [-77.41331499583276, 34.681917859581276], [-77.41331646348195, 34.6819154304586], [-77.41331729590671, 34.68191374692704], [-77.41343828553245, 34.681420071206276], [-77.41344305398718, 34.68140061470073], [-77.41344817570538, 34.68137971648798], [-77.41356013465958, 34.68092288320845], [-77.4135692564486, 34.68088566354282], [-77.41356166672777, 34.68081724605918], [-77.41362751675152, 34.68034693720995], [-77.41375615296378, 34.67994839798161], [-77.41359173607148, 34.67977530752667], [-77.41336655535596, 34.67953824818786], [-77.4132032904957, 34.67963938288521], [-77.41294091804087, 34.67980190910779], [-77.41291490100883, 34.67981802519292], [-77.4127418051261, 34.679925248165596], [-77.41262651046542, 34.67999666664809], [-77.41258864647666, 34.680011829011264], [-77.41255626018295, 34.68000265910561], [-77.41227685186, 34.67998212234188], [-77.41209396669511, 34.67981031418951], [-77.41206977374019, 34.679759274950825], [-77.412049248193, 34.679661650738694], [-77.41189601989589, 34.67918193022918], [-77.41187819260769, 34.67894650680678], [-77.41135465966227, 34.67870345498489], [-77.41109267933324, 34.67853921810448], [-77.41095646454568, 34.67843835927545], [-77.41052519228387, 34.67828609106354], [-77.41028757405877, 34.67805994100439], [-77.41014056540305, 34.67788605828096], [-77.41005255503303, 34.67770541913424], [-77.40986267642224, 34.67735212246296], [-77.40982646890204, 34.67712440854831], [-77.40945978821766, 34.67665200099727], [-77.40948157623393, 34.6763756070186], [-77.40977434182034, 34.67564384203014], [-77.4103028101481, 34.675486512834986], [-77.41054932470699, 34.675355944368775], [-77.4106482889112, 34.67530352728327], [-77.41076418321286, 34.67524781337472], [-77.41100284218038, 34.67513538555917], [-77.41122386924482, 34.67503289171382], [-77.41154380381155, 34.67462254651624], [-77.41153874336351, 34.67458396967045], [-77.41112830505786, 34.67399026788085], [-77.41104781202417, 34.67393679128104], [-77.41029465139408, 34.673976856256076], [-77.40979660234899, 34.67416364087062], [-77.40935881114551, 34.6737487715026], [-77.40946695097657, 34.673299770298115], [-77.40970370190186, 34.67301009231076], [-77.40995421489359, 34.67260767863194], [-77.41008768740535, 34.67239877711545], [-77.41015805932126, 34.6722570833675], [-77.4103977859598, 34.67194818642079], [-77.41044452062185, 34.671926014588365], [-77.41090616120239, 34.67198463974968], [-77.41106381457465, 34.67200006147968], [-77.41132053517504, 34.67203762076788], [-77.41164883112177, 34.67219249524197], [-77.4119291745059, 34.67216192751524], [-77.41290778911416, 34.67227023999878], [-77.41291349850754, 34.67226950161348], [-77.41349293751765, 34.67172756191005], [-77.41379007278786, 34.67145803750098], [-77.41409260369845, 34.67121231503991], [-77.41465926003389, 34.6706467027101], [-77.41466062126676, 34.67064530295473], [-77.41466174097397, 34.67064350373376], [-77.41523250283771, 34.66972637882027], [-77.41556053544016, 34.66912504929848], [-77.41562181611869, 34.66845746658001], [-77.41509931197311, 34.66837056367095], [-77.41465679826598, 34.66840668720966], [-77.41422566372833, 34.668437577122965], [-77.41403577061611, 34.668374006108465], [-77.41372205782008, 34.668357494753884], [-77.41326781464917, 34.66836683855535], [-77.41320601724914, 34.668458072469605], [-77.41302098321815, 34.668650030422924], [-77.4130037132699, 34.66866682850243], [-77.412998131808, 34.66867377448026], [-77.41282785886943, 34.66888484059297], [-77.4127395498194, 34.668998871899205], [-77.41249362751104, 34.66931642261591], [-77.41248857576466, 34.6693252150264], [-77.4124840377926, 34.669328995175455], [-77.41247424005061, 34.66934158842581], [-77.41222733674707, 34.66965717433228], [-77.41201084673742, 34.669717135575716], [-77.41183624172854, 34.66976549609228], [-77.41169003097149, 34.66983721851793], [-77.4114664377961, 34.669908647986176], [-77.410951934275, 34.67017354819722], [-77.41068639048072, 34.670128798355464], [-77.41003804661034, 34.66989464225446], [-77.40978625097009, 34.66977376206244], [-77.40940223032393, 34.66952420098796], [-77.40924617256736, 34.66942619521164], [-77.40918959415605, 34.66935595161067], [-77.40891082554045, 34.669191255857044], [-77.40912215258527, 34.66906597294465], [-77.40908123062965, 34.6686917746522], [-77.40906251922624, 34.66851628649077], [-77.40921023845726, 34.66817780423681], [-77.40922408347593, 34.668002537076475], [-77.40922686488796, 34.66790406155905], [-77.40918830881242, 34.66767785530446], [-77.40918204205958, 34.667608810127106], [-77.40918067695719, 34.667574305916354], [-77.40915992330632, 34.667511321066016], [-77.40872645916858, 34.66687113580158], [-77.40866297339338, 34.6668183362865], [-77.40799353766982, 34.66711409901478], [-77.40789414446924, 34.6671580112644], [-77.40722273197423, 34.66745464122903], [-77.40652414034776, 34.6677632725314], [-77.40648190269833, 34.667781932494826], [-77.40651343741827, 34.66780023206827], [-77.40652040485979, 34.667801915960894], [-77.40707455818607, 34.66807507374463], [-77.40714869985254, 34.66808171937791], [-77.40740361561711, 34.668104568081404], [-77.40729118426043, 34.6675666421439], [-77.40793002164448, 34.66733344648194], [-77.4078789392694, 34.66811741579857], [-77.40836173496851, 34.66805519237403], [-77.40868244594395, 34.66855219317947], [-77.40867361329258, 34.6686785457879], [-77.40864333532235, 34.66909763034145], [-77.40852141636636, 34.66957948031053], [-77.40850890921378, 34.66960970547032], [-77.40848862053463, 34.66964840843629], [-77.4082093808622, 34.67006399224351], [-77.40804420765463, 34.670295098490826], [-77.40789528682308, 34.67051318152095], [-77.40780546706982, 34.67065269105953], [-77.40766503465132, 34.67088469068258], [-77.4076138014454, 34.670973785120594], [-77.40758350970384, 34.671037743766654], [-77.40740510814742, 34.67135874684192], [-77.40736599857301, 34.671430075009894], [-77.40735806088547, 34.67144340039185], [-77.40731138756975, 34.67147856844909], [-77.40706055845418, 34.671678547037224], [-77.40683961825854, 34.67167538480686], [-77.40668591488183, 34.67162966758539], [-77.4064873991806, 34.671418214180584], [-77.40645787762897, 34.671388304292776], [-77.4063892875246, 34.671328474678255], [-77.40618371710357, 34.67115128088265], [-77.40611173587139, 34.67108637216058], [-77.40592323798595, 34.670941173789345], [-77.40577584369183, 34.670780163847425], [-77.40566624282043, 34.67072566151546], [-77.40550007061583, 34.67062178750143], [-77.4051247059103, 34.670383143620825], [-77.40491771059777, 34.67024548786562], [-77.40473675461902, 34.6701210752942], [-77.40458904873928, 34.67002033709952], [-77.40440460332388, 34.670013207973156], [-77.40420891429308, 34.67000564415048], [-77.40395071679004, 34.670012053133156], [-77.40340049830716, 34.670058091233884], [-77.40333426811961, 34.67007099528943], [-77.40329043975649, 34.67007953451242], [-77.40318532681894, 34.67007551170988], [-77.4028646667621, 34.67005085194823], [-77.40267423382038, 34.669994850283544], [-77.40245986663912, 34.669931809412574], [-77.40230648438353, 34.66988575835842], [-77.40208410628148, 34.66982013312672], [-77.40182115259111, 34.66975191829136], [-77.40176247599491, 34.66974385269973], [-77.40171813173124, 34.669794892512186], [-77.40158650017861, 34.66998220297869], [-77.40168038224137, 34.6701079145339], [-77.40180041535552, 34.67020689527354], [-77.40194473577539, 34.67030130017369], [-77.40224749450573, 34.67046672668561], [-77.4024823428581, 34.67065735603357], [-77.4025910941422, 34.670769724730064], [-77.40285535031839, 34.67098553563757], [-77.40293594823541, 34.67107219873799], [-77.40299385367268, 34.67110352411941], [-77.40305804942788, 34.67111555354717], [-77.40317127103215, 34.671096127613914], [-77.40349552181058, 34.67108311450239], [-77.40363673913603, 34.671096120228], [-77.40396660506325, 34.671105668751395], [-77.40426857508302, 34.671126863186714], [-77.40445119515581, 34.671332767194826], [-77.40473953404295, 34.67164510111429], [-77.40474874525994, 34.671654973607595], [-77.40475350502395, 34.67166484397901], [-77.40496248024988, 34.6720121433333], [-77.40521358523388, 34.67228864605559], [-77.40526147542182, 34.67233374726635], [-77.40538431499706, 34.67242993356378], [-77.40553965343086, 34.67266403482906], [-77.40547660356401, 34.67282808419399], [-77.40535410770555, 34.672978494173975], [-77.40519339451663, 34.6731129419898], [-77.40477810304367, 34.67387439117521], [-77.40479499054433, 34.67390105567728], [-77.40514052372183, 34.67461586957626], [-77.4056892343379, 34.67507116324445], [-77.4060265487795, 34.675138929153285], [-77.40582018029201, 34.675378162401856], [-77.40587279157705, 34.675720964487255], [-77.40590047940236, 34.67596540100944], [-77.40595042800247, 34.67606335537677], [-77.40582273884473, 34.676387297300025], [-77.40581859040086, 34.67649587141716], [-77.40578311771696, 34.67657948493682], [-77.40581316278386, 34.676855731636664], [-77.40580112845672, 34.67701830709399], [-77.40584908127306, 34.677065675467894], [-77.406025094089, 34.67723022075001], [-77.40616313070933, 34.67731363278446], [-77.4062967794137, 34.67739839455329], [-77.40668383753722, 34.677542753350835], [-77.40683457211274, 34.67775401243995], [-77.40698493264861, 34.67802235107061], [-77.40674225592265, 34.678411058487434], [-77.40679506004606, 34.678726233877846], [-77.40658308923258, 34.67899996684778], [-77.40687211448241, 34.679249562311675], [-77.40701438121923, 34.679345737730166], [-77.40722416054862, 34.679428219126], [-77.40756545083187, 34.6796555622634], [-77.40778393006751, 34.67976187133662], [-77.40784909142639, 34.67978249007798], [-77.40793494946709, 34.679842816381], [-77.40811137385857, 34.67998316967303], [-77.40819533823039, 34.680123348554886], [-77.40831462281585, 34.68043316777665], [-77.40833657290835, 34.68049982263867], [-77.40836832692207, 34.68074301337086], [-77.40841590759224, 34.68083725632603], [-77.40847806039599, 34.680929707311954], [-77.40868023250655, 34.68113173046729], [-77.40869240716964, 34.68116825266075], [-77.40890401387806, 34.681489605774516], [-77.40854890702516, 34.68159534465802], [-77.40830809166253, 34.681516614824915], [-77.40818710058747, 34.68137904518119], [-77.40774586152514, 34.68124527808269], [-77.40738858129791, 34.6811935849132], [-77.40711723125682, 34.68120322046513], [-77.40655224239393, 34.68122568994147], [-77.40651172785871, 34.68125553923468], [-77.40646378640074, 34.68124684008224], [-77.40604148434763, 34.68160606417061], [-77.40586821125274, 34.681699213498966], [-77.40566953125955, 34.681776616976], [-77.40551056746173, 34.681862348571244], [-77.40532659875419, 34.68191499653281], [-77.4051323617814, 34.68199184471138], [-77.40495971471978, 34.6820148318614], [-77.40466867169363, 34.6819540353783], [-77.40434969404805, 34.68190849410814], [-77.40415720804053, 34.68189298225705], [-77.4039114050823, 34.6818235693068], [-77.40375630858485, 34.68174472813208], [-77.40341568923357, 34.68158400426457], [-77.40319234044428, 34.681479411075834], [-77.40283570729459, 34.68122746458836], [-77.40264784967647, 34.681146864418736], [-77.40257475193569, 34.68104210199483], [-77.40237022772203, 34.680880254507244], [-77.40213116868266, 34.68071832803075], [-77.40181111461439, 34.6804679554323], [-77.40159589027246, 34.68035400591641], [-77.40135021923203, 34.68021386497788], [-77.40132033436498, 34.68019917916656], [-77.40127999122795, 34.68017869048132], [-77.40104060169854, 34.68005877200093], [-77.40086096044926, 34.67997160248132], [-77.40068706353642, 34.67973195088122], [-77.4006451523261, 34.67961528826937], [-77.40064110184551, 34.67922578120794], [-77.40061583353518, 34.67918119182816], [-77.40063328964844, 34.679153982906755], [-77.40064248472684, 34.67913561665092], [-77.40072209245318, 34.678946205206465], [-77.4010440092285, 34.67829600404745], [-77.40110607028356, 34.67820118783002], [-77.40108303764855, 34.67809367341897], [-77.40112703785586, 34.67764938408357], [-77.4014095963202, 34.67739760225014], [-77.40143604618297, 34.67719840770892], [-77.40145862544561, 34.67704436268381], [-77.40149807390816, 34.6766609770957], [-77.40141957639668, 34.67653846488386], [-77.401258988351, 34.67640288703167], [-77.40116385315507, 34.67631521869358], [-77.40113422773445, 34.67628701902687], [-77.40091229599206, 34.67607759424784], [-77.4008089572811, 34.67597636525525], [-77.40066861528135, 34.67581278552652], [-77.40066782057303, 34.67581119759889], [-77.40069845215055, 34.67557613247946], [-77.40071221192017, 34.675508219190334], [-77.40081631309778, 34.675304033082114], [-77.40091683569136, 34.67509474202837], [-77.40110849810429, 34.67484717105192], [-77.40111926874107, 34.67467768604], [-77.4011142528805, 34.67451004771652], [-77.40106975651662, 34.67427446388542], [-77.40096659773681, 34.674125311108455], [-77.4008972370716, 34.67391755623841], [-77.40083402300664, 34.67373428467108], [-77.40079081707799, 34.67361767045344], [-77.4007430138978, 34.673325921118206], [-77.40074200378146, 34.67332100960017], [-77.40073736141211, 34.67330447210487], [-77.40068496441576, 34.673021468054195], [-77.40064747010659, 34.67291944900836], [-77.40059100331064, 34.67276271670832], [-77.40042403375489, 34.67237097495774], [-77.4003525756248, 34.67214980560635], [-77.40021580930973, 34.67184596715708], [-77.40016052825726, 34.671719578465456], [-77.40002031898746, 34.67139574733171], [-77.39988466636171, 34.671063853525325], [-77.39985358232711, 34.67101897351773], [-77.39983351332354, 34.670953762818726], [-77.39974442716486, 34.670618181049896], [-77.39962765233264, 34.6704147244281], [-77.3994407219246, 34.670097817175275], [-77.39915113130752, 34.669973009013404], [-77.39874288734482, 34.6695458117639], [-77.39857551484258, 34.66932046402574], [-77.3985297256127, 34.66881893074248], [-77.39813013219185, 34.669037924409395], [-77.39788078431822, 34.66884726625251], [-77.39762134945133, 34.6688258147938], [-77.39756749885147, 34.66882282229055], [-77.39754011720174, 34.66882068963191], [-77.39731377644169, 34.668730945029274], [-77.39728400646716, 34.66869553888809], [-77.39713116375448, 34.66858395380082], [-77.39718254375063, 34.66844034902949], [-77.39716091336196, 34.66820009469337], [-77.39715564705537, 34.6681513535832], [-77.39715317308787, 34.66812845662898], [-77.39712425296656, 34.66786078258826], [-77.39702937006646, 34.66736283738795], [-77.3969995599328, 34.6672998947373], [-77.39695894418065, 34.667243744753655], [-77.39655911692496, 34.666774421165954], [-77.39605302053151, 34.66692654028663], [-77.39592409901948, 34.666924261005285], [-77.39585563473067, 34.6669910478504], [-77.39564804680839, 34.667220836636794], [-77.39554626766586, 34.667308260992804], [-77.39541338991219, 34.667411731570084], [-77.39533500267376, 34.66745687144104], [-77.39509221893812, 34.667414516510675], [-77.39480058402283, 34.667324440302494], [-77.39479814657429, 34.667323772714255], [-77.39479615476058, 34.66732333684403], [-77.39449711202388, 34.66725705807068], [-77.39426401719973, 34.667200779601174], [-77.39413013235922, 34.667157758555575], [-77.39390625933693, 34.66708492125923], [-77.39369392563849, 34.66701609654609], [-77.39361342231852, 34.66698991877813], [-77.39352958351364, 34.66696191989995], [-77.39332103194612, 34.66689337524513], [-77.39312003642178, 34.66682519087862], [-77.3929419566128, 34.66676069001913], [-77.3927411950789, 34.666683231636306], [-77.3925191051116, 34.66659001562782], [-77.39245531688042, 34.666564219659136], [-77.39236855926002, 34.666553523764264], [-77.39215411744813, 34.666498083134734], [-77.39199995643278, 34.66648869660528], [-77.39159977672043, 34.66648546889461], [-77.3915436584222, 34.666490251356244], [-77.39151172100627, 34.666503843992], [-77.39147324766753, 34.666480610780695], [-77.39096740247885, 34.66629544798427], [-77.39093289050061, 34.66629024225385], [-77.39090366009991, 34.66627185070826], [-77.39039248124428, 34.66610282236152], [-77.39035051972212, 34.66608886425596], [-77.390258911594, 34.66609443395897], [-77.38993059355064, 34.666095217806436], [-77.38968537467309, 34.66617312155996], [-77.38935109759663, 34.66625714126887], [-77.38913921468102, 34.666296730822054], [-77.3890083177011, 34.666298473691064], [-77.38887415009705, 34.666288029852055], [-77.38839919225123, 34.66633567150751], [-77.38780791032832, 34.66632664854445], [-77.38780351276594, 34.666326470086354], [-77.38780043291045, 34.66632654454359], [-77.38776482753035, 34.666328953568], [-77.38723392391606, 34.66636863800013], [-77.387193359691, 34.6663672033719], [-77.38714572294276, 34.666377873146494], [-77.38672410881199, 34.66636705530603], [-77.38659790207643, 34.6663572282294], [-77.38636980999351, 34.66632831294497], [-77.38630948724868, 34.66632010529848], [-77.38627769053727, 34.66631663485658], [-77.38601210938782, 34.66631390498751], [-77.38576888748948, 34.66631426873483], [-77.38563535702633, 34.666315489174565], [-77.38541128817099, 34.66632242975243], [-77.38491955793762, 34.66631919206138], [-77.38481120871134, 34.66632839163459], [-77.38474859778, 34.666311597208676], [-77.38465423407983, 34.66626961519963], [-77.3843696113542, 34.66620922759558], [-77.38426013737683, 34.66616527815815], [-77.38413763510346, 34.66609699857711], [-77.3840597679228, 34.6660535974781], [-77.38400257463489, 34.66602171930234], [-77.38378697324622, 34.66590154774119], [-77.38376425931716, 34.665886925510115], [-77.38374613697745, 34.665874281543935], [-77.3835500033664, 34.66574350948051], [-77.38349535894312, 34.66570732204233], [-77.38348495122877, 34.66570777453771], [-77.38322754755218, 34.665599125406494], [-77.38310998356054, 34.66550729503121], [-77.3828719511016, 34.665391362636086], [-77.3827182486179, 34.665291929479466], [-77.38258287528353, 34.665219736933054], [-77.38240345881867, 34.665117102860755], [-77.38230253119036, 34.66504138464359], [-77.38220818354202, 34.6649873876743], [-77.38203825181317, 34.66492364916958], [-77.38198220479904, 34.66489382984729], [-77.38192877386936, 34.664695010801225], [-77.38204296987631, 34.66445273183417], [-77.38205866739627, 34.66442178767157], [-77.38232403569715, 34.66415322925672], [-77.3823883138915, 34.66407587541099], [-77.38250127304053, 34.66397633392711], [-77.3828933372277, 34.66358749960955], [-77.38301898818028, 34.66335869172605], [-77.38318967393545, 34.66305932401574], [-77.38345908232569, 34.66257332098995], [-77.38349002416452, 34.66250003086448], [-77.38355739897194, 34.66239704583961], [-77.3837642450523, 34.66210500448004], [-77.38395015605491, 34.66207415131432], [-77.3840614218696, 34.66210932818219], [-77.38422393547917, 34.66216171891966], [-77.38476076825815, 34.662350138488705], [-77.38476713025133, 34.662351916020306], [-77.38477054009658, 34.66235167521617], [-77.38530834477633, 34.662548948232086], [-77.38558476391107, 34.662513051669826], [-77.38589726059647, 34.66258140930308], [-77.38594423800185, 34.66263043851442], [-77.38594046829289, 34.66268080172903], [-77.3860872644779, 34.66288769430392], [-77.38609847756152, 34.66290592656378], [-77.38633990209696, 34.6631132351724], [-77.38634133477103, 34.66311361574074], [-77.38634208899703, 34.663113527866585], [-77.38663576006257, 34.66312996268414], [-77.38683847457807, 34.66312448213269], [-77.38693523234778, 34.6631288949261], [-77.38709216494416, 34.66314021843206], [-77.38756845623801, 34.66300847757421], [-77.38770847685282, 34.66304836317957], [-77.38784929234818, 34.66307171052665], [-77.38801190078581, 34.66300913412591], [-77.3881642462241, 34.66301721801249], [-77.38830573029946, 34.662939616298296], [-77.38835590328551, 34.66283577551042], [-77.38827630579348, 34.66280544161104], [-77.3882270213702, 34.662800607935374], [-77.38804922223625, 34.66271229915141], [-77.38795902315783, 34.66269308080469], [-77.38794861461956, 34.66266357591119], [-77.38791678448109, 34.662652512144426], [-77.38768968307653, 34.66259018525878], [-77.38758500052002, 34.66254938344342], [-77.38738941595531, 34.66248139257866], [-77.38722842899895, 34.66242976556451], [-77.38714669232169, 34.66239927208793], [-77.38689017332949, 34.66229603767001], [-77.38683118991295, 34.66227089674723], [-77.3866012173938, 34.6622169362189], [-77.38649488376498, 34.6622062457275], [-77.38647635151274, 34.66211965096079], [-77.38654380505864, 34.662016206646456], [-77.38677617435526, 34.66161326848967], [-77.38678673495735, 34.66159345746477], [-77.38679161143772, 34.6615888607095], [-77.38710502355113, 34.66134190295912], [-77.38754418463063, 34.660988656415206], [-77.3875569661, 34.66098362760567], [-77.38757056393379, 34.66098326013367], [-77.38820357564067, 34.66081695623071], [-77.38869014890507, 34.660728169860256], [-77.38883144813333, 34.660714933728975], [-77.38901899310412, 34.66065601596012], [-77.38950650052702, 34.66045008886182], [-77.38973757828543, 34.66038035852327], [-77.39055790266707, 34.660259036939095], [-77.39075589156896, 34.66026791210069], [-77.39095735024526, 34.66029132416871], [-77.39152103232189, 34.66030699121765], [-77.39186751818275, 34.6602843573411], [-77.39202721274883, 34.66030256253113], [-77.39247321881551, 34.660261569552176], [-77.39274935152463, 34.660231003077364], [-77.39342268500059, 34.65990869935772], [-77.39346493337104, 34.65990550413583], [-77.39350967055617, 34.659885105764225], [-77.39364200415876, 34.65980126457561], [-77.39465611136906, 34.65904749625484], [-77.39444908613501, 34.65862414835415], [-77.3937452869273, 34.658295081629035], [-77.39289779003786, 34.6578868635959], [-77.39222025285814, 34.6576900408509], [-77.39138126894963, 34.65730746907114], [-77.39111046366807, 34.65698354971744], [-77.39008592252404, 34.65689883653857], [-77.38984138678757, 34.65583112728251], [-77.38953306592272, 34.65556072940929], [-77.3888564386633, 34.65500328819191], [-77.38805635081317, 34.65439010008564], [-77.38795569986706, 34.65432905913756], [-77.38765725049424, 34.6541262830215], [-77.38699153593072, 34.653883316588484], [-77.38637829255306, 34.65374162732434], [-77.3859839577929, 34.65341503142896], [-77.38587053808654, 34.653006798580826], [-77.38558970337262, 34.65271938196093], [-77.38547182181209, 34.65234208487284], [-77.38534866823085, 34.65223286107455], [-77.38480114463673, 34.651630712626734], [-77.38474552329633, 34.651530530453634], [-77.38401243112277, 34.6515956417336], [-77.38399722684737, 34.6515948121975], [-77.38391468437563, 34.65159033506628], [-77.38350533120975, 34.651346167231665], [-77.38341458616947, 34.651018640446566], [-77.38349019463787, 34.65080236215957], [-77.38322387302712, 34.650682175983135], [-77.38299926065599, 34.65026585962935], [-77.38257683734967, 34.65008481700873], [-77.38247638990617, 34.650055027245735], [-77.38243528473409, 34.650024380574834], [-77.38208316883166, 34.6496859654795], [-77.38193555367292, 34.64932807237364], [-77.38187033723486, 34.648728967947974], [-77.3819213083735, 34.64848099770205], [-77.3818252078012, 34.648302889740194], [-77.38164692100256, 34.64829056615559], [-77.3812874073719, 34.64811029084714], [-77.38119157457925, 34.64809583738337], [-77.38085827214356, 34.6480972556672], [-77.38057596123915, 34.648129607117916], [-77.38006960517116, 34.648002984777996], [-77.38002352644085, 34.64795486882678], [-77.3799268227196, 34.64791917713365], [-77.37944714631945, 34.647809348377095], [-77.3792809691773, 34.64777858377821], [-77.37883060253523, 34.6475921456088], [-77.37853731807961, 34.64749963696519], [-77.37842905041217, 34.64740221552484], [-77.37828979936432, 34.64730453357092], [-77.3778126914423, 34.64708120524705], [-77.3774941408433, 34.646956813473096], [-77.37712751600293, 34.64685860286107], [-77.37698743589742, 34.64681190502648], [-77.37658088015954, 34.64669558871405], [-77.37647952423394, 34.646669387597186], [-77.3764479329121, 34.646663747087], [-77.37641603871919, 34.64667360652029], [-77.37593509584265, 34.64659923698792], [-77.37577640167801, 34.646508849719545], [-77.37554396655061, 34.64652702101402], [-77.37545677664893, 34.646511543019706], [-77.37540101237809, 34.64650858548832], [-77.37512879415159, 34.64647273276779], [-77.374868533885, 34.64641475275659], [-77.37479302639431, 34.646395265443175], [-77.37462785822385, 34.646339344134674], [-77.37445194060618, 34.646291384357454], [-77.3743504662692, 34.646292362359205], [-77.37392645422302, 34.646216665989904], [-77.37382009964053, 34.64619434499772], [-77.3737869533089, 34.646168943861554], [-77.37372526810388, 34.64616426883774], [-77.37333087599885, 34.646014797762646], [-77.3731467433901, 34.645901888112604], [-77.37308629285484, 34.64586933186198], [-77.3729286704838, 34.64575457323705], [-77.37289480863933, 34.64572991977217], [-77.37271297134373, 34.64560533253143], [-77.37263055277359, 34.64555086529147], [-77.37261303122557, 34.645139308256816], [-77.37261290944782, 34.645131279070206], [-77.37261463891676, 34.645128091433776], [-77.37283186812098, 34.6446791537252], [-77.37282652924128, 34.64465878381885], [-77.37283160724566, 34.644604488021194], [-77.37298719787572, 34.64381376536029], [-77.3730787084683, 34.6435600699988], [-77.37321869204698, 34.643346863166855], [-77.3736051772438, 34.642884746833275], [-77.37357904321465, 34.64269289173752], [-77.37376168301964, 34.64263360449522], [-77.37406251270377, 34.64229457710016], [-77.37397304096848, 34.641983667335445], [-77.3737619428389, 34.64175762265508], [-77.37339706673374, 34.64167371637328], [-77.37334339978932, 34.641675887273514], [-77.37297331036767, 34.641765625549624], [-77.3727444958537, 34.64155788535084], [-77.37264040804834, 34.64132643950393], [-77.37233137746202, 34.64121317367922], [-77.37218492663847, 34.640985335952045], [-77.37201102343118, 34.640755266653514], [-77.371898500876, 34.64058414691837], [-77.37186360221801, 34.6405107494773], [-77.3717908202041, 34.64034673048347], [-77.37172969672305, 34.64024973942743], [-77.37172188226914, 34.64018501865306], [-77.37169065590125, 34.64008157370525], [-77.37173995445026, 34.639757858377735], [-77.37179102239081, 34.63971846363921], [-77.37203597105173, 34.63955436366156], [-77.37218540886595, 34.63946376415264], [-77.3725180493385, 34.639287719357434], [-77.37257977470851, 34.63926712377212], [-77.37261789466648, 34.639247926679424], [-77.3729741183485, 34.63913651217615], [-77.37318383326055, 34.63892657565009], [-77.37336851091098, 34.63884015944426], [-77.37348695975372, 34.63878470896742], [-77.37371256293596, 34.638678859015876], [-77.3737628673478, 34.638655256873086], [-77.37379775586814, 34.63864999813446], [-77.37417846895187, 34.63855760961101], [-77.37450536672091, 34.63846083517146], [-77.37455152931201, 34.6384425224386], [-77.37458687739567, 34.63846073000403], [-77.37494583467344, 34.63842028588361], [-77.374969871895, 34.63841776057808], [-77.37533348666942, 34.638384108700016], [-77.37534014385008, 34.638383454426005], [-77.37534728050252, 34.638381606234205], [-77.37608907690766, 34.63823970765688], [-77.37612878290369, 34.638228733697424], [-77.37620107764431, 34.63818849535291], [-77.3766786582141, 34.63794041944787], [-77.37691749706545, 34.637774714557864], [-77.37693816910988, 34.63775786080036], [-77.37730063157792, 34.6376954406364], [-77.3773118113118, 34.63770145301428], [-77.37735855544132, 34.63772539680948], [-77.37770605652901, 34.63789872310444], [-77.37779521103695, 34.63794071636697], [-77.37800313798553, 34.63800677644025], [-77.37831665762465, 34.63815320308193], [-77.37849455405677, 34.63828663107737], [-77.37873274435668, 34.63849428078501], [-77.37897318517781, 34.638716173169556], [-77.37928299027102, 34.638968581282505], [-77.37958930850424, 34.63914667541146], [-77.37995839984961, 34.63930158067826], [-77.38007150872818, 34.639339235051345], [-77.38011862093701, 34.63934956854208], [-77.38017404901753, 34.63939231440951], [-77.38046573767079, 34.639675343593346], [-77.38053907536333, 34.63968532470004], [-77.38086001047162, 34.639820720695354], [-77.38144124896698, 34.63983560644215], [-77.38164861052697, 34.63986283403371], [-77.38183727655448, 34.63979869849577], [-77.38251330557615, 34.639904430196495], [-77.38442107155657, 34.64004080874375], [-77.38480300399613, 34.64010382899778], [-77.38538793179566, 34.64012004381242], [-77.38686237510397, 34.639277733815334], [-77.38845246823003, 34.63618455636994], [-77.38876919772916, 34.63473301593245], [-77.3879580541566, 34.63535802504502], [-77.38735888696412, 34.635164445283465], [-77.38480399044471, 34.63421821486292], [-77.38341826911535, 34.63488550097285], [-77.38322676013203, 34.63485809117854], [-77.3824797057554, 34.63570851479111], [-77.3824380307436, 34.63571143346802], [-77.38239627361995, 34.63572062274215], [-77.38204372860382, 34.63579820579947], [-77.38173766317948, 34.63586555921551], [-77.38164942559173, 34.63588497688288], [-77.38158977438889, 34.63585609481278], [-77.3814934705635, 34.63580573126127], [-77.38134246488946, 34.63573349003115], [-77.38125518681018, 34.63566315011583], [-77.3811251988385, 34.63557421435462], [-77.38086101076495, 34.63516084192109], [-77.38080272251838, 34.635118893340874], [-77.38062862746257, 34.63508119992632], [-77.38074686715042, 34.63494120423576], [-77.38086106101765, 34.63492864874527], [-77.38094245178232, 34.6349483420678], [-77.38164488320628, 34.63492968639073], [-77.38164962335036, 34.63492804803839], [-77.38165671219507, 34.634925453189084], [-77.38243822304018, 34.634737054958784], [-77.38309057040627, 34.634579789431164], [-77.38293633739745, 34.63336349893266], [-77.38169448949914, 34.63327733251641], [-77.38164996672674, 34.633274243204745], [-77.3815820186527, 34.63331875093874], [-77.38113675709648, 34.63360630866418], [-77.38086133753644, 34.63365426753026], [-77.38071375621429, 34.63352963085712], [-77.38030806643745, 34.63342912884319], [-77.38013302913008, 34.6333895399133], [-77.3800728521786, 34.633367269197294], [-77.37993431023914, 34.633333779495], [-77.3796786117264, 34.63322257930679], [-77.3796013143534, 34.63318962477375], [-77.3792844263538, 34.63285100422981], [-77.37923507534357, 34.632787736265875], [-77.37921545038219, 34.63273740495239], [-77.37920045118453, 34.632649086924715], [-77.37916940718489, 34.63231947534763], [-77.37928460566131, 34.63209503926447], [-77.37939494787308, 34.63198121384147], [-77.37956302681671, 34.631838208984874], [-77.37969386813147, 34.6314107730896], [-77.37969966797274, 34.631393962580695], [-77.37969392498562, 34.631378761606896], [-77.37956181022946, 34.630989259225245], [-77.37948258029465, 34.630787817979616], [-77.37928492177059, 34.63076677404948], [-77.3790365714205, 34.63079749486137], [-77.37889066507748, 34.63074547629057], [-77.3788217303361, 34.63074554304605], [-77.37849636883635, 34.63088443088012], [-77.37824003850089, 34.63090364137605], [-77.37810209883433, 34.63091397914371], [-77.37798079568219, 34.63092306970229], [-77.37770783608954, 34.630913922000914], [-77.37764407597723, 34.630909611456666], [-77.37740734363146, 34.63087504983722], [-77.37733468391076, 34.63086279721158], [-77.3773135870236, 34.63086136189316], [-77.37728093551428, 34.63085809606121], [-77.37691919781147, 34.631336048307226], [-77.37690483873472, 34.63135653489713], [-77.37690291369482, 34.63137226879622], [-77.37690807052293, 34.63138349471036], [-77.37691917872384, 34.63140767598373], [-77.37703300074622, 34.631655453466266], [-77.37709891830178, 34.631768597863555], [-77.37718235107648, 34.631897607859344], [-77.3773132667857, 34.632085487932315], [-77.37736370928683, 34.632155019091826], [-77.37739445103763, 34.63223805564775], [-77.377313231436, 34.632220855666425], [-77.37712178230939, 34.632408321373305], [-77.37691889644216, 34.632468866352895], [-77.37674146836613, 34.63247814906363], [-77.37671152767923, 34.63247225654246], [-77.37652464027434, 34.63241640686791], [-77.37627404214057, 34.63231196903574], [-77.37620438518017, 34.63224235165052], [-77.37613046496033, 34.63207178317214], [-77.37606426742617, 34.63191762212781], [-77.37595250438827, 34.631700902162976], [-77.37586850803767, 34.63152125634176], [-77.37582777534595, 34.631428701204825], [-77.37573644845988, 34.63117276020218], [-77.37572139932668, 34.631134100738045], [-77.3757170814986, 34.63111850548279], [-77.37570866083355, 34.631089770161246], [-77.37569308253386, 34.630697400858026], [-77.37557053896131, 34.63046936249023], [-77.37534243976974, 34.63027817552255], [-77.37520784499316, 34.630063172025615], [-77.37510443586902, 34.629933060631565], [-77.3750312818645, 34.62985423978682], [-77.37494832692256, 34.62977147138611], [-77.3748414758638, 34.62966147024783], [-77.37473205203352, 34.62956213193289], [-77.37455418275289, 34.62938720000109], [-77.37444420472272, 34.62929748712959], [-77.37434681029822, 34.62919305419237], [-77.37416008075854, 34.628875108274336], [-77.37412555849703, 34.62883754650969], [-77.37412458850935, 34.62880049826457], [-77.37410832227238, 34.62874706191389], [-77.37401201178604, 34.62839215092493], [-77.37402379504412, 34.62811290485932], [-77.37394689816267, 34.627976969089005], [-77.37382501779446, 34.62763329388147], [-77.37388745546376, 34.62756096998163], [-77.37444751091897, 34.62736479113624], [-77.37455479057613, 34.62734053195194], [-77.37479461710682, 34.627172107002835], [-77.37494911625764, 34.62707016257238], [-77.37499795935797, 34.62702906028686], [-77.37534347269657, 34.62668441120935], [-77.37543743208427, 34.6265897730369], [-77.37555524520104, 34.62647164863834], [-77.37587975196946, 34.62615314555304], [-77.3761049780101, 34.6259679082809], [-77.3761321645661, 34.62594875488857], [-77.37638041454143, 34.625770963702465], [-77.37652648404969, 34.62565826807101], [-77.3767907789179, 34.6254445645518], [-77.37686865323793, 34.62537719123632], [-77.37692080776606, 34.625341852952495], [-77.37710902825978, 34.62519606551038], [-77.37731512575195, 34.625035709824566], [-77.37736961638166, 34.62499529474661], [-77.37770943403058, 34.624755723216495], [-77.37788588454, 34.62462768208294], [-77.37846617813298, 34.62438836199375], [-77.37849799701644, 34.624375543330764], [-77.37852809229148, 34.62437759063284], [-77.37920108132278, 34.624340183819804], [-77.37928646474592, 34.62435693313059], [-77.37947658070357, 34.62442833833561], [-77.37949294289147, 34.6244285626447], [-77.37950019744933, 34.62439950962765], [-77.37948361341059, 34.62420752394161], [-77.37953873389698, 34.62392801504471], [-77.37962835138167, 34.62370556924087], [-77.37993204779711, 34.62329379237541], [-77.3799812779958, 34.62318554778359], [-77.38007520925986, 34.62315263902661], [-77.38018932414458, 34.6231338335673], [-77.38073176122408, 34.62303649523799], [-77.3808636940529, 34.62300248544432], [-77.38113444011334, 34.623120554519424], [-77.38141745225803, 34.623332451848405], [-77.38156475893958, 34.62348311644688], [-77.38160998620299, 34.62352188049437], [-77.38165203083511, 34.623524587979816], [-77.38197475925035, 34.623501046064824], [-77.38204626724217, 34.62347986671955], [-77.38210526320614, 34.62346876941442], [-77.3824405255941, 34.62332637477236], [-77.38278332219147, 34.62336291119563], [-77.38290496910157, 34.623365633038986], [-77.38322901034346, 34.623158264817555], [-77.38334567118238, 34.62292752410452], [-77.38348204959203, 34.62278228133739], [-77.38362332597995, 34.62268558125208], [-77.38389090913297, 34.62258695572231], [-77.38401757454484, 34.622547281859255], [-77.38420736495578, 34.6224733745011], [-77.38441182653246, 34.62238272897421], [-77.38452627528956, 34.62233048298895], [-77.38472513897216, 34.62217857647568], [-77.3847758308622, 34.62213868155844], [-77.38480609784688, 34.622100688328196], [-77.38497742351893, 34.62190212852528], [-77.3851306073014, 34.62169557641134], [-77.38520041013865, 34.62156761849742], [-77.38539567425877, 34.62144308233956], [-77.3855946679725, 34.62132697658261], [-77.38585696361964, 34.621024195753435], [-77.38598894974568, 34.62092661905775], [-77.38610324872336, 34.62082934686205], [-77.38637038930202, 34.620681562243824], [-77.38638320350378, 34.62067761623813], [-77.38639278509356, 34.62067485302265], [-77.38641372776503, 34.62066151562535], [-77.38700628369608, 34.62039798586209], [-77.38717168243976, 34.62032165814911], [-77.38740252417456, 34.62027038562643], [-77.38762223916662, 34.62048732556654], [-77.38775137641468, 34.62069345421449], [-77.3877222419921, 34.62106598238769], [-77.38774507557339, 34.6213187542789], [-77.38756569336509, 34.62169003834728], [-77.38753933393134, 34.621744596657344], [-77.38751362732614, 34.62177668215351], [-77.38717140785104, 34.62214505761476], [-77.38710481668811, 34.62218846276829], [-77.38695638151128, 34.62228156738935], [-77.38659945787818, 34.62256623654594], [-77.38657789046579, 34.62297518552538], [-77.38673510991745, 34.62316259246697], [-77.38690052177105, 34.62343027905466], [-77.38703910994454, 34.623825700760094], [-77.38710115720598, 34.62395896731311], [-77.3869386879731, 34.624232676573634], [-77.38683170800385, 34.62442236976139], [-77.38680452947155, 34.62445611472507], [-77.38650575301729, 34.62489391495896], [-77.3864447635708, 34.62496973626876], [-77.38638249208759, 34.625157144864275], [-77.3861820604333, 34.62557391778862], [-77.3861056908369, 34.62580070545744], [-77.38600828116107, 34.626217559772186], [-77.38638233079197, 34.62618643158109], [-77.38681308486969, 34.6261626381767], [-77.38717082416419, 34.626076023081964], [-77.38740723357955, 34.62586768213908], [-77.38746070226986, 34.62560541140384], [-77.38761903061776, 34.62521601325189], [-77.38765346929424, 34.625153060768085], [-77.38795946561868, 34.62487647646154], [-77.3880657630539, 34.62478352947706], [-77.38827654883981, 34.62463868360849], [-77.38854473696503, 34.62438112805349], [-77.38870988369605, 34.62415165453488], [-77.38874802953117, 34.624105474461906], [-77.38878566626009, 34.624100198273794], [-77.38894515497364, 34.62401699941283], [-77.38906689053428, 34.624019013757945], [-77.38914226784522, 34.6240257403002], [-77.38919443180404, 34.624025629306274], [-77.389536445771, 34.6244421760033], [-77.389589025589, 34.624392874699105], [-77.38963387206329, 34.62444302983657], [-77.38956813808738, 34.62448664261086], [-77.38953643829396, 34.62450459151167], [-77.38938246938683, 34.62490383791879], [-77.38953635240739, 34.62522307137378], [-77.38956085723746, 34.625276293903525], [-77.38956672553329, 34.62530184521087], [-77.389553699099, 34.625322417117886], [-77.38965924607018, 34.6260051946614], [-77.38967927514045, 34.62613475674986], [-77.38967900788079, 34.62628856150391], [-77.38960620741396, 34.62691897973255], [-77.38959543574069, 34.62699597798502], [-77.38958662109242, 34.62705161756754], [-77.38959518959282, 34.62778146036308], [-77.38961427437093, 34.62784239808837], [-77.3898302682887, 34.62834347921192], [-77.39048249282203, 34.6285663767176], [-77.39060210773818, 34.629099197800734], [-77.39111278055898, 34.6303646829678], [-77.39176016266889, 34.62907921255075], [-77.391802204555, 34.62837612614608], [-77.39169279790204, 34.627767540806495], [-77.39171541075922, 34.62753950309659], [-77.39174484258051, 34.627366487631136], [-77.39212838350359, 34.62663082509235], [-77.39210145034872, 34.62600070910234], [-77.39208990940041, 34.625787235540834], [-77.39200185933008, 34.625692073350166], [-77.39121678310737, 34.62517543057397], [-77.39111329820129, 34.62510069686526], [-77.39110167400632, 34.62509308971232], [-77.39105165510381, 34.62508778106427], [-77.39099199106569, 34.62496572496672], [-77.3905364292747, 34.6243129198412], [-77.39045896661672, 34.62417973915973], [-77.3905238401428, 34.623890166648664], [-77.39032498214057, 34.623747578092306], [-77.39002481808403, 34.62386078885328], [-77.39011195107358, 34.623524975742384], [-77.38990564569728, 34.62315726479785], [-77.38990334493434, 34.62313048020408], [-77.38986658014947, 34.623066579464236], [-77.38967916089432, 34.62273822954429], [-77.38965262099948, 34.622617173439124], [-77.38953673714407, 34.6220287658877], [-77.38951416214553, 34.62193720399469], [-77.38950824603116, 34.62191373196043], [-77.3895152168599, 34.62188953175067], [-77.38953675637293, 34.62187048254746], [-77.38963922429976, 34.6217845045211], [-77.3899310186147, 34.62148947315777], [-77.39000233831767, 34.621494748195104], [-77.39032524336716, 34.621409884079064], [-77.39104349950036, 34.621692407221026], [-77.3910623133412, 34.6217449723983], [-77.39111361534222, 34.62197810798345], [-77.391157641515, 34.62205309634901], [-77.39114630359423, 34.62210215506267], [-77.39131069881977, 34.622231844420305], [-77.39138731433505, 34.62219718266668], [-77.39150781826785, 34.62213021824684], [-77.39156530284431, 34.622103654987626], [-77.39176210836979, 34.621739545182606], [-77.39162727322653, 34.62160824419383], [-77.39150787615816, 34.62153985755413], [-77.39128874100348, 34.6214684969553], [-77.39111366543507, 34.6214914397523], [-77.39094086430347, 34.62085806630498], [-77.39096405509295, 34.62069350275145], [-77.39091239089686, 34.62022994930733], [-77.39087289724046, 34.620018727552875], [-77.39069047167105, 34.61965188411693], [-77.39068665548164, 34.619585466682935], [-77.3906719116164, 34.619198566602286], [-77.39071970699939, 34.61912382520068], [-77.39089643786095, 34.618931949833765], [-77.39093969170044, 34.61892305458869], [-77.39111393619709, 34.618887220758495], [-77.3912784753428, 34.61886376000458], [-77.39133775892788, 34.61886150952926], [-77.3915081210639, 34.619070066667085], [-77.39151392517189, 34.619077172026245], [-77.39166049796901, 34.6193164676864], [-77.39190225885973, 34.61976646854391], [-77.39197595565119, 34.61985969594761], [-77.3920717535101, 34.62002845899332], [-77.39220838935923, 34.62025075327559], [-77.39221788422314, 34.62033396263631], [-77.39228876408188, 34.62066373368059], [-77.39238300954624, 34.62098138973916], [-77.39246439905071, 34.621243986807514], [-77.39249145870713, 34.62148364848514], [-77.39255808633885, 34.62161666840905], [-77.39269051386769, 34.62164816967322], [-77.39294132110291, 34.621997775638505], [-77.39319383880975, 34.62223151592426], [-77.39327345928658, 34.622441276827445], [-77.39347887936064, 34.62254237383883], [-77.39377032951849, 34.622683634005384], [-77.39402607260477, 34.62270084891267], [-77.39426730426285, 34.6227760682972], [-77.394389263291, 34.622776939196555], [-77.3949463814998, 34.62271016436895], [-77.39505575036821, 34.62269902773516], [-77.3951526096016, 34.622693898279], [-77.39526414517005, 34.622782130683404], [-77.39563951573842, 34.6229484208392], [-77.39582476848705, 34.62312585770018], [-77.39584417072523, 34.62315228776871], [-77.39599262858087, 34.62336632486253], [-77.39609345124754, 34.623511682703594], [-77.39623836819933, 34.62377605795193], [-77.39628569935056, 34.62385755195055], [-77.39631725991859, 34.62390397883738], [-77.3963804454018, 34.624047891373245], [-77.39649057835659, 34.62430355569019], [-77.3966325643652, 34.6246155593972], [-77.39678369416926, 34.624947654320295], [-77.39695040603506, 34.62508638582896], [-77.39704113580032, 34.62551334583389], [-77.39712212795436, 34.62591076368551], [-77.39742098063459, 34.62634799716238], [-77.39856064626785, 34.62570329917718], [-77.39877020863513, 34.62542782384567], [-77.39876234748938, 34.62422964509243], [-77.398795028031, 34.62397120550045], [-77.39883243659051, 34.62378756182396], [-77.39873586980151, 34.623412844994476], [-77.39859441610244, 34.623150994315026], [-77.39833749534876, 34.6230502054435], [-77.39820950839965, 34.622909660648034], [-77.39794821466663, 34.62267646554886], [-77.39781529659372, 34.62248699669929], [-77.39774553734779, 34.62242428136055], [-77.39755223236105, 34.62231091143445], [-77.39742108280169, 34.62229295368303], [-77.39721589662688, 34.622279681198144], [-77.39691420376965, 34.62224094148346], [-77.39663264957217, 34.622204786903716], [-77.39660156694993, 34.622198168227634], [-77.39656627384294, 34.62216978186083], [-77.39637392193578, 34.62205160485504], [-77.39613528317268, 34.62180736417585], [-77.39604567936104, 34.62160333621482], [-77.39584426817981, 34.62102434027223], [-77.39583687589189, 34.62100921785032], [-77.39582734365982, 34.62100263016347], [-77.39525552470295, 34.62087003962601], [-77.39505585250097, 34.6208584985231], [-77.39471507674193, 34.6207960006646], [-77.39466164491644, 34.620788711858644], [-77.39463169485902, 34.620782734137926], [-77.39426744850003, 34.620558803407974], [-77.394070311189, 34.620406856591295], [-77.39407074070809, 34.620194910755544], [-77.39402569704279, 34.619988719761714], [-77.39403295471567, 34.61981571051099], [-77.3938423454252, 34.61959058736836], [-77.39402811104473, 34.61930593639542], [-77.39426754791853, 34.61906149916129], [-77.39450420367297, 34.61890088339837], [-77.39474756485325, 34.61861091473039], [-77.39485734573113, 34.618381131230976], [-77.39505232680881, 34.617721816329045], [-77.39505298210776, 34.617717730957644], [-77.39504765284049, 34.617709473670075], [-77.39488248439422, 34.617504681175504], [-77.39482974650883, 34.61750618706065], [-77.39466184528344, 34.617562882867986], [-77.39453799862618, 34.61750081657653], [-77.39426765458651, 34.617481191433654], [-77.39390577511585, 34.61749339782443], [-77.39387345768365, 34.61749288133225], [-77.39385539448499, 34.61748531058914], [-77.39347927608117, 34.61730629778726], [-77.39337151983334, 34.617227122913114], [-77.39320322636053, 34.6171353240521], [-77.39308509997979, 34.617072833918726], [-77.3928841071704, 34.616973257497555], [-77.39269092360772, 34.61686775109613], [-77.39248430913743, 34.61681441445192], [-77.39234967247714, 34.61677681418961], [-77.39229673884496, 34.61677409353628], [-77.39221795538697, 34.61676796344566], [-77.39190255004681, 34.61673051816517], [-77.39170635350646, 34.6167133298631], [-77.39119772505356, 34.61666533878379], [-77.39111416754545, 34.61669890100412], [-77.39101321188907, 34.61671068193817], [-77.39078520383721, 34.61663482139708], [-77.39071998366224, 34.61661756476121], [-77.39069348297514, 34.616648045022664], [-77.39051751017325, 34.61687993944514], [-77.39039874270888, 34.617115106231076], [-77.39032572354583, 34.61720056819142], [-77.39016809801701, 34.6174031810421], [-77.39006992008927, 34.61743799440461], [-77.38993149365473, 34.61748707965483], [-77.38978135632784, 34.61746697293383], [-77.38971189666577, 34.617450646615204], [-77.38958487678067, 34.617283655755635], [-77.38954996042702, 34.617237470859315], [-77.3895488809217, 34.617225185009104], [-77.38953736445045, 34.616946111060834], [-77.38953196967437, 34.616821323658165], [-77.38953206996894, 34.61681548194294], [-77.38953172446756, 34.61680943872789], [-77.38944530492661, 34.61640342199199], [-77.38946479204907, 34.61605433004865], [-77.38946602449928, 34.61597586704361], [-77.38947251369719, 34.61590494191221], [-77.38953750460064, 34.615830805705464], [-77.3898338286343, 34.61549827484406], [-77.389887837338, 34.61544320140832], [-77.39002529368307, 34.61536991764501], [-77.39032595862551, 34.615179952845786], [-77.39048068130244, 34.61514709427939], [-77.39099308727057, 34.615037179114175], [-77.39111434185818, 34.61507133873204], [-77.39125268214856, 34.61501814429665], [-77.39150854356858, 34.61491001030793], [-77.39171904683712, 34.61499973577762], [-77.39190271473137, 34.615044012518766], [-77.39217379159523, 34.615028309450004], [-77.39229689883528, 34.61505143524807], [-77.3923743879457, 34.61504852349587], [-77.39261945393017, 34.61501949548469], [-77.39269108920574, 34.614988713904594], [-77.39297203279534, 34.61492383464528], [-77.39308530523843, 34.614613279820425], [-77.39308896745064, 34.61460437989171], [-77.39308759734497, 34.614602109659266], [-77.39308530666504, 34.6145963678137], [-77.39297371405637, 34.61431664925729], [-77.3929594581032, 34.61419848432162], [-77.39297349272084, 34.61407597884974], [-77.39297999676708, 34.61398323793176], [-77.39308537476481, 34.61379189690926], [-77.39310315759008, 34.61377234590645], [-77.39314080037525, 34.61374776584471], [-77.39335949804774, 34.61358690012778], [-77.3934795733004, 34.613545150232106], [-77.39362175024493, 34.61352527544296], [-77.39387376006735, 34.61342165722499], [-77.39404913395772, 34.61342788745528], [-77.39407084798506, 34.6134280231687], [-77.3941200209738, 34.61344724295124], [-77.39426793092068, 34.61350505519508], [-77.39433115393865, 34.61350801719107], [-77.39441777746808, 34.61356362393602], [-77.3946620955047, 34.613694295425724], [-77.39481927788876, 34.613760988516574], [-77.39491289262989, 34.613762363319594], [-77.39505626853196, 34.61377381823554], [-77.39517419475314, 34.61375209447127], [-77.39532889070506, 34.613725871150876], [-77.39545045211868, 34.613679089699545], [-77.39560009708546, 34.61365650773501], [-77.39584463435725, 34.61359218225329], [-77.3960587505325, 34.61355759679716], [-77.39643139538938, 34.61349037104937], [-77.39663299454006, 34.61345361105408], [-77.39683740695233, 34.61343484518774], [-77.39702717342064, 34.61338787141334], [-77.39725720180095, 34.61333093169251], [-77.39742134952722, 34.61338587811061], [-77.39807214669948, 34.61318474690308], [-77.39820970319722, 34.61330528436133], [-77.3985906726676, 34.61340058376514], [-77.39860387666172, 34.61340308183165], [-77.39861251648826, 34.613392516644836], [-77.39861375156786, 34.613383032622956], [-77.39861552028954, 34.61337023655194], [-77.39867070061568, 34.61295024516178], [-77.39871157309736, 34.61263576294919], [-77.39879526259892, 34.612301579565795], [-77.39873866052346, 34.612091295983156], [-77.39889833426108, 34.61196083042044], [-77.39899807381684, 34.61195571407609], [-77.39906561212084, 34.61197138628627], [-77.3992204248758, 34.61202180281671], [-77.39959735939269, 34.61217106222837], [-77.39978640988241, 34.61222912664171], [-77.40010461912156, 34.6122370090164], [-77.4001805797785, 34.61226161754666], [-77.40021043866712, 34.61227140170984], [-77.40034106457883, 34.61228471996183], [-77.40057475003279, 34.61231283165411], [-77.40064819628248, 34.61231952458898], [-77.40082520095959, 34.612369683460216], [-77.40096892143376, 34.61244813416642], [-77.40116161933598, 34.61259091922359], [-77.40121694349787, 34.61274036253843], [-77.40136309988938, 34.61300601774464], [-77.40150203749096, 34.61324130702795], [-77.40165252243571, 34.613369246949], [-77.40175728134874, 34.61344149060394], [-77.40195910573631, 34.613532202970504], [-77.40215146080216, 34.61361538200036], [-77.4023126287642, 34.61369858741803], [-77.40239513087293, 34.61384880362908], [-77.40248324587344, 34.61409854615483], [-77.4026027393291, 34.614444401549726], [-77.40262395906572, 34.61450282024562], [-77.40293984970364, 34.61471006761988], [-77.40307717625835, 34.614714090707714], [-77.40319114916855, 34.614845562204394], [-77.40347881430027, 34.615072701332956], [-77.40361722338835, 34.61551365539771], [-77.40363217014905, 34.61563108245574], [-77.40361263569203, 34.61575843678747], [-77.40372825867489, 34.615777330168385], [-77.40384880234366, 34.61572966497607], [-77.40436799278594, 34.61568500526122], [-77.40451662220451, 34.615620866756814], [-77.40466273419118, 34.615639760323724], [-77.40530499087663, 34.6155975730726], [-77.40565126338309, 34.61581594402121], [-77.4058397525917, 34.61588851634355], [-77.4060933777982, 34.6158359609849], [-77.40626337794077, 34.61591746867562], [-77.40640273936975, 34.61608045869151], [-77.40666962226868, 34.616270464778516], [-77.4067025715666, 34.61646176850402], [-77.40688181725204, 34.61665970878781], [-77.40703772181546, 34.61667005788404], [-77.40756801264962, 34.616761453276794], [-77.40764987588429, 34.61677153716952], [-77.40767020641412, 34.61676958502181], [-77.40770195368593, 34.61677631752053], [-77.40845857798048, 34.61668898845072], [-77.40856256359197, 34.61672991859777], [-77.40898414847571, 34.616840162061614], [-77.4092469749833, 34.61685362691827], [-77.40928345414598, 34.61689917083206], [-77.4092868871278, 34.61693796130859], [-77.40936707450294, 34.617221652420895], [-77.40938082588966, 34.61734898157584], [-77.40945077513105, 34.61755831015506], [-77.40951430981207, 34.61789105684056], [-77.40959129973314, 34.61816776051086], [-77.40965072811615, 34.61857367840509], [-77.40965255054417, 34.6185834993865], [-77.40965344679621, 34.61859637926658], [-77.40961525375582, 34.61901346027702], [-77.4095987947692, 34.61939445934667], [-77.40958888654002, 34.61949848486652], [-77.40956820935767, 34.61986940765408], [-77.40953936507445, 34.61998360935972], [-77.40964153202435, 34.61998476649407], [-77.40984353274408, 34.62003669025634], [-77.4100357343379, 34.61996474308813], [-77.41061661392706, 34.61994160411914], [-77.4108241264069, 34.61983638595262], [-77.41098623133429, 34.619839334941474], [-77.41138942126004, 34.6198468486375], [-77.41161253590079, 34.61984990536797], [-77.41205709272094, 34.61988051570809], [-77.41240095308606, 34.61991464941441], [-77.41268614115694, 34.619961366942285], [-77.41307027079695, 34.620084776343866], [-77.41318939151674, 34.62010593277795], [-77.41324249892585, 34.62013101476262], [-77.41333736282192, 34.62017451589999], [-77.41358362724067, 34.62029347100486], [-77.41390408007604, 34.620172116997985], [-77.41397782004682, 34.62021932685217], [-77.41401876408895, 34.62012026495896], [-77.41406125170185, 34.62007001404665], [-77.41437197091679, 34.619910506507736], [-77.41462321773756, 34.61983492556257], [-77.41476615460647, 34.6198004894047], [-77.4149036255869, 34.61980033675697], [-77.41496325557951, 34.61979796330085], [-77.41505911377726, 34.61981690434976], [-77.41516036419206, 34.619836910910095], [-77.41529674400377, 34.61989164566567], [-77.4153845252303, 34.62006216286268], [-77.41545032147206, 34.62060620029691], [-77.4154376037379, 34.62072047196708], [-77.41544141856865, 34.62084199267126], [-77.41555478948156, 34.621008603798714], [-77.41575745992978, 34.62130523030825], [-77.41592165659159, 34.621499748491715], [-77.41611077640665, 34.62172293331427], [-77.41634336518406, 34.62180383153495], [-77.41637801355476, 34.62182112790344], [-77.41657621673815, 34.6218298245966], [-77.41670975468273, 34.621840517798894], [-77.41677043448341, 34.621837163702736], [-77.41713176082511, 34.621668205793355], [-77.41736141393636, 34.62153924493106], [-77.41768346897499, 34.62150027894875], [-77.41792014492749, 34.62149323790722], [-77.41813351526342, 34.62141021146923], [-77.41831433908948, 34.62142141902545], [-77.41847381026287, 34.62138405899079], [-77.41870852807308, 34.62132986084399], [-77.41891208009224, 34.62128720238525], [-77.41929071303585, 34.6212353789065], [-77.41949691876394, 34.62121245942482], [-77.41972155638047, 34.62119301274228], [-77.42005203672359, 34.621154595628994], [-77.42028531601265, 34.62113196840156], [-77.42053983756415, 34.6211070294016], [-77.42080845213692, 34.62107980253099], [-77.42107377812842, 34.621311145951374], [-77.4212193461778, 34.62142716923029], [-77.42129584513607, 34.621572874110534], [-77.42136081214146, 34.621872485141765], [-77.42136795969301, 34.62209499782607], [-77.42141579916581, 34.622356716849296], [-77.42158989185131, 34.62241768082357], [-77.42170997845923, 34.62227290662785], [-77.42161826053953, 34.62202512539314], [-77.42180670968669, 34.621876120366316], [-77.42191249124747, 34.62181840262389], [-77.42193746306098, 34.621766106577084], [-77.4220303164656, 34.62154991645299], [-77.42246628687452, 34.62131897621399], [-77.42270194973702, 34.62116558994714], [-77.4228122820732, 34.62111997081256], [-77.42325547485495, 34.62109412849058], [-77.42372545071927, 34.62104251610246], [-77.42384045968682, 34.621034584429346], [-77.42415755928178, 34.62105573572042], [-77.4244450421946, 34.62107727867166], [-77.4249405142362, 34.62121197794856], [-77.42504898320466, 34.62125335292885], [-77.42514231222037, 34.62129498735401], [-77.42560452345172, 34.621488569738126], [-77.42596202120173, 34.62168745963502], [-77.42604630683911, 34.62177587255047], [-77.4261091740435, 34.62178597184259], [-77.42615268455499, 34.621799212216494], [-77.42628031335565, 34.62189381141598], [-77.42627724177748, 34.62203763147902], [-77.42628092518127, 34.62207825337061], [-77.42624591263133, 34.62214002507096], [-77.42611790879167, 34.622232326476805], [-77.42602578337706, 34.62229633691661], [-77.42591884783661, 34.622291811409795], [-77.42576436782875, 34.6223017192501], [-77.42555094804779, 34.622468083463346], [-77.425581530236, 34.6222775356895], [-77.42518108803573, 34.6220914923858], [-77.42508884401288, 34.62211868906435], [-77.42493179985787, 34.62225599726478], [-77.42493864232009, 34.62230222153829], [-77.42510883621132, 34.622412220258305], [-77.42524328527507, 34.62267477713711], [-77.42529537928168, 34.62272830046157], [-77.42531957899165, 34.62275079665481], [-77.42537754266336, 34.62280969487921], [-77.4255225793758, 34.62295977269432], [-77.42559349638273, 34.62301259000333], [-77.42575178581083, 34.623136727436076], [-77.42596329872484, 34.62327645397826], [-77.42604593542802, 34.6233310440735], [-77.4261295015454, 34.62329475337368], [-77.42645974086298, 34.62318571891234], [-77.42652810942249, 34.623171629682204], [-77.42664686650843, 34.623266297459736], [-77.42660260063934, 34.62344393648019], [-77.42658042673602, 34.62345260775776], [-77.4265843074505, 34.62346873946895], [-77.42658527684618, 34.62348935387145], [-77.42649284522025, 34.623731680194325], [-77.42638856241572, 34.62389374701643], [-77.42623852833901, 34.62403508782121], [-77.42590107236683, 34.62414398438284], [-77.42575127102835, 34.62417593841711], [-77.42566192914053, 34.62416057608948], [-77.42550371572389, 34.62414586665825], [-77.42529424120458, 34.624152826848686], [-77.42519177019122, 34.6240526913177], [-77.42505907862287, 34.62398314596041], [-77.42491921946475, 34.62394317184717], [-77.42462255926905, 34.62389393712367], [-77.4244960995184, 34.62406372679578], [-77.4243893677196, 34.62423424141526], [-77.42429422517218, 34.62446067859518], [-77.42428208777005, 34.62449393288854], [-77.4242724672928, 34.624536253227014], [-77.42421751992848, 34.62479355002308], [-77.4239267455483, 34.625194563419875], [-77.42371231865516, 34.625236158161556], [-77.4231959460781, 34.625345582601796], [-77.4229156766092, 34.62534269003997], [-77.42264917977327, 34.62548343796723], [-77.42250558926706, 34.62573852197163], [-77.42215112288447, 34.62639212491526], [-77.42206642086606, 34.62651836746692], [-77.42201388690306, 34.62661705953359], [-77.4217813762656, 34.627073883397244], [-77.42155125073691, 34.62748731370889], [-77.42178579609174, 34.62765907386126], [-77.4217895562897, 34.628157876836404], [-77.42225067061248, 34.62832852918458], [-77.42293668417338, 34.6280619796011], [-77.42298083374081, 34.62781849986236], [-77.42391541483168, 34.6271656683728], [-77.42437760190076, 34.62684281017704], [-77.42451574665515, 34.626756359290646], [-77.42516547605541, 34.626595277877655], [-77.42535406199345, 34.626568102482544], [-77.4255543983071, 34.62650048741973], [-77.4258532664357, 34.62647087289166], [-77.4260829092933, 34.62638835150798], [-77.42610065173808, 34.626381975804335], [-77.42620967237758, 34.62623346188256], [-77.42628202240194, 34.62613950047263], [-77.42628275009498, 34.62613598842461], [-77.42628457305037, 34.62612544947969], [-77.42636598775132, 34.62574634332942], [-77.42639032018856, 34.62555418007342], [-77.42660106656253, 34.62536034770973], [-77.42662509136036, 34.62532663207966], [-77.42665170070197, 34.625295701977834], [-77.42682091307793, 34.62508544884116], [-77.42699710101992, 34.624886020064466], [-77.42737697664695, 34.62480712207715], [-77.42749680659688, 34.624790660138004], [-77.42782089148477, 34.624962553808174], [-77.4279019046894, 34.625079769924916], [-77.4282112471389, 34.62548020128376], [-77.42846424779444, 34.625517700285], [-77.42833889831974, 34.62561681398593], [-77.42861672949914, 34.62603446472295], [-77.42861010330999, 34.62621460983185], [-77.42870712792293, 34.6263651636467], [-77.42881286845119, 34.626526067484654], [-77.4288514678141, 34.62666171961799], [-77.42893530272998, 34.62686041468301], [-77.4291959896969, 34.627154829471074], [-77.42919625658462, 34.627155292612066], [-77.42919652733097, 34.62715592223386], [-77.428882750805, 34.62761386114079], [-77.42886098438834, 34.627657929756346], [-77.42885112211198, 34.627818969725666], [-77.42883406077014, 34.62836620599593], [-77.42903773035816, 34.628958703852156], [-77.42901913175844, 34.62905194239974], [-77.42892177053976, 34.629318100823845], [-77.42927634960299, 34.62937310602925], [-77.42984578458768, 34.63001723534405], [-77.43043547393306, 34.6301253036282], [-77.43054115274275, 34.630152092248906], [-77.43098889261131, 34.63044865974342], [-77.4318440960532, 34.63107034639591], [-77.4319777183901, 34.63106861707305], [-77.43306671574939, 34.63036881418773], [-77.43298687400834, 34.630136719244454], [-77.43297829981535, 34.62984591548607], [-77.43298454470158, 34.62972061540287], [-77.43300172013284, 34.62953604876352], [-77.43301269162923, 34.629390882601825], [-77.4330332986565, 34.62911823478927], [-77.43305442179755, 34.628838741988986], [-77.43303781597794, 34.62864524230352], [-77.43294959574138, 34.62846949732964], [-77.43288864109857, 34.62812718176091], [-77.43281706277963, 34.6279696724492], [-77.43279076680021, 34.62779446539975], [-77.43279114563236, 34.62684509767591], [-77.43281846544414, 34.6265652718721], [-77.43282562040879, 34.62649027481832], [-77.43278988598374, 34.626419570666116], [-77.43278689847773, 34.62576283009442], [-77.43271011602194, 34.625602909828956], [-77.43269859236457, 34.62541875726421], [-77.43233588277184, 34.62515748042147], [-77.43233186896153, 34.625154029497224], [-77.43233052109969, 34.625152657153336], [-77.4323277613635, 34.625151712337704], [-77.4317638372301, 34.62493103946536], [-77.43174091008532, 34.62492859420709], [-77.43157541930792, 34.62489131371415], [-77.43117961130031, 34.62479884877308], [-77.43113601095715, 34.624784140608526], [-77.43112079033425, 34.62476068627546], [-77.43109299402911, 34.62472245903305], [-77.43081611532341, 34.62447827299403], [-77.43075629736069, 34.62433404176015], [-77.43074601663925, 34.62429128568117], [-77.43071628402421, 34.6241374847627], [-77.43068816022665, 34.62396130871028], [-77.43067587118065, 34.6237797639326], [-77.43068624675409, 34.62350552824669], [-77.43062037059138, 34.62342634241238], [-77.4305862523803, 34.623306187033656], [-77.43060646524494, 34.62270411418135], [-77.43060681479588, 34.62269173147719], [-77.43060494718446, 34.62269076478135], [-77.43060080901586, 34.62268344124996], [-77.43045734162357, 34.62241408855751], [-77.43041685593587, 34.62237662791623], [-77.43025640755496, 34.62220258268077], [-77.43005776322653, 34.62210972248354], [-77.4299642297156, 34.62184955282902], [-77.42990752024784, 34.62178330205798], [-77.42991701034148, 34.62170323347482], [-77.42985897701703, 34.62161251740762], [-77.42992507037499, 34.621526118701865], [-77.43010839911824, 34.62135681992977], [-77.43016182077196, 34.62129926420626], [-77.43021075191761, 34.621257789608734], [-77.43057703463936, 34.62082515108416], [-77.43108605940446, 34.62061364879526], [-77.43134292612476, 34.620473791078446], [-77.43175155306602, 34.62037540271897], [-77.43208359478285, 34.62041627199269], [-77.43245438351482, 34.62043059541365], [-77.43263435057972, 34.62050758968796], [-77.43287854702625, 34.62039185065572], [-77.43310129401, 34.62029259786961], [-77.43348621135127, 34.62008370121376], [-77.43356283311248, 34.62005786512151], [-77.43380339545728, 34.620096117261745], [-77.43410933872258, 34.62013364667909], [-77.43429180396537, 34.62016456073639], [-77.434278575062, 34.6202624343813], [-77.43459717381619, 34.62055423427856], [-77.43464958739546, 34.62080106898227], [-77.43485502747853, 34.620937303024355], [-77.43496957385861, 34.621013262263915], [-77.4350548489567, 34.621054802751225], [-77.43524872170622, 34.621221424778966], [-77.43539774421122, 34.6213263118153], [-77.43533773310818, 34.62147747600599], [-77.43522948102046, 34.62174351308354], [-77.43519764799036, 34.62182298838915], [-77.435140475353, 34.62198039646425], [-77.43507657051074, 34.62215633802758], [-77.4351442384716, 34.62242373405088], [-77.43517145276174, 34.622594874564804], [-77.43523964107705, 34.622848344184284], [-77.4354446225804, 34.62309178880042], [-77.43548138978895, 34.62313025630722], [-77.43550030428536, 34.62314329260625], [-77.4355618826873, 34.62318934049574], [-77.43578261049001, 34.6234320711892], [-77.43579061785327, 34.6236665073517], [-77.43584637032578, 34.62378314182745], [-77.43607192177825, 34.62398727766144], [-77.43613583490668, 34.624069880831954], [-77.43618544571896, 34.62409814556418], [-77.436252498974, 34.62412251250505], [-77.43670243851085, 34.62438047979491], [-77.43720397586871, 34.624503918171406], [-77.4373424275836, 34.624512490611835], [-77.43742643394417, 34.624569504080974], [-77.43766762790754, 34.62474100672747], [-77.43779161748215, 34.62487769671531], [-77.43779671858545, 34.62488883398571], [-77.43781968824851, 34.62490864259688], [-77.43795762081305, 34.62502759328578], [-77.43794136025677, 34.625151785422425], [-77.4380991641181, 34.625106315367816], [-77.43815054547133, 34.62512467090709], [-77.4382694787393, 34.62506604530696], [-77.43833557360375, 34.62500952379024], [-77.43844972924384, 34.62488732274691], [-77.43835907689682, 34.62478768524067], [-77.43829647775244, 34.624717756378324], [-77.43818047046526, 34.624594826866286], [-77.43809615783793, 34.62450548338083], [-77.43790588106107, 34.62430385073377], [-77.43787018961464, 34.624269744594685], [-77.43768876227524, 34.624089198663704], [-77.43759502497367, 34.6240232113457], [-77.4372977013158, 34.623796824157736], [-77.43724094417912, 34.62375489256965], [-77.43722516320449, 34.62374160926644], [-77.43719315997582, 34.6237171915105], [-77.4367519239703, 34.623405804192295], [-77.4365350036645, 34.62323356292801], [-77.43652430286062, 34.623226905694146], [-77.43650435764458, 34.62322635536837], [-77.4362490489153, 34.62310622276364], [-77.43630359609745, 34.62291433449983], [-77.43623366947085, 34.622805014065875], [-77.43610383003352, 34.622602030040674], [-77.43609256507796, 34.6224459134634], [-77.43609763932284, 34.6223770879346], [-77.43612814353858, 34.62222585682016], [-77.43614269053619, 34.622153738339996], [-77.43619659441038, 34.621997035359236], [-77.43626093731237, 34.62181876326836], [-77.4363403987253, 34.62160349619219], [-77.43641626332291, 34.621073476114184], [-77.4364245294867, 34.621033647217914], [-77.43642621877333, 34.62101409671561], [-77.4363339677776, 34.62071696549032], [-77.43631361792544, 34.620696017388475], [-77.43614849260243, 34.62048656338986], [-77.43604965856292, 34.62040201141457], [-77.4357811222738, 34.620168885000744], [-77.43574785384003, 34.62011879280253], [-77.43610763041605, 34.61975073096128], [-77.43624836618073, 34.619712979246486], [-77.43699644400671, 34.61945016513866], [-77.43707210368376, 34.619432595602696], [-77.43754352671996, 34.61954683034963], [-77.43764866901236, 34.619567174052406], [-77.43765896730535, 34.61957404675462], [-77.43772542911131, 34.619610491995545], [-77.43810189371584, 34.619817034411696], [-77.43815571301015, 34.61986163337221], [-77.43824254841688, 34.61986706223628], [-77.43831223077918, 34.619815856426754], [-77.43842671962524, 34.61972444033], [-77.43887218092559, 34.61939239129636], [-77.43882379856083, 34.619045035059656], [-77.4388444980816, 34.61886685689566], [-77.43869625329398, 34.618711393368834], [-77.43851566898647, 34.61850744822737], [-77.43806730948899, 34.618349911028595], [-77.43794932671717, 34.618285479028415], [-77.43775983159536, 34.618103280941995], [-77.43772730356933, 34.61807758777463], [-77.43774700647083, 34.61805641858712], [-77.43792609093487, 34.617822424094214], [-77.4380333367341, 34.617621105416276], [-77.43812257336192, 34.61750762898439], [-77.43824979467038, 34.61731628345716], [-77.43847273352145, 34.6171266044383], [-77.43852896750273, 34.61707149552416], [-77.43886192689821, 34.61691108749249], [-77.4391667601502, 34.616797383016895], [-77.43947434057317, 34.616683703356344], [-77.4396997248866, 34.61658486750777], [-77.44032162293983, 34.61629994677493], [-77.44040898801241, 34.61625675269412], [-77.44046201435573, 34.61623221953982], [-77.44084012219247, 34.61612325720292], [-77.44089708013355, 34.61611916590959], [-77.44121941692842, 34.616116727181705], [-77.44142646392798, 34.61613244040879], [-77.44182790903764, 34.61609080440022], [-77.44202240882433, 34.616049385767525], [-77.44205146499829, 34.61610636789389], [-77.44208232568056, 34.616179837942305], [-77.44224506577648, 34.61642042151884], [-77.44218852358162, 34.61676058165615], [-77.4421950247893, 34.61683869664853], [-77.44187383058282, 34.61726475916062], [-77.44180540795574, 34.617321771448545], [-77.44177013580774, 34.61738800427936], [-77.44164285871237, 34.617699857449495], [-77.44161795220245, 34.61787559222677], [-77.44152080271526, 34.618103902764304], [-77.44133999501875, 34.618397743286806], [-77.44111203406321, 34.6188253150805], [-77.44106825541435, 34.61892207097202], [-77.44103501065301, 34.618980893917914], [-77.4410779016244, 34.61903245782666], [-77.44115441197229, 34.61931610341732], [-77.44129468489609, 34.61949259659101], [-77.44140793923123, 34.61954328021137], [-77.44228888166442, 34.619349216929805], [-77.44229610253764, 34.619309475898945], [-77.44250993589749, 34.61880715249724], [-77.44263837276752, 34.618639131714374], [-77.44282141164445, 34.618729721175015], [-77.44322696514804, 34.61886862819296], [-77.44340792258754, 34.6189270301128], [-77.44377150419675, 34.61893719093054], [-77.44377327927573, 34.61893872445543], [-77.44400268199132, 34.6191142560253], [-77.44408579844378, 34.619358585323184], [-77.44421651730886, 34.61955085594184], [-77.44426281124908, 34.61971055049194], [-77.4443299322441, 34.61988777207171], [-77.44455601198803, 34.620142531098686], [-77.44454170959396, 34.62019664415251], [-77.44453439561026, 34.62029284651661], [-77.44467944524736, 34.6203331566588], [-77.44478027322434, 34.620221001285756], [-77.44513536592244, 34.62002738272359], [-77.44552990814934, 34.619863890051334], [-77.44559357136808, 34.6198311707059], [-77.44572417857401, 34.61975268369761], [-77.44574202172157, 34.61985441294276], [-77.44628538491712, 34.619980929162416], [-77.44658725345998, 34.620233847644194], [-77.4466679333205, 34.62032891833061], [-77.44673500030841, 34.62034559598259], [-77.44679572351683, 34.6203811941333], [-77.44704829526981, 34.6205897194071], [-77.44715938380378, 34.62074111073285], [-77.44744392639629, 34.62082829578296], [-77.44746378159378, 34.62084050491828], [-77.44749791265708, 34.62086217262954], [-77.4476762224208, 34.62102360255865], [-77.44774136959343, 34.62113060937415], [-77.44775099828445, 34.62126042134922], [-77.4476413215717, 34.62152839165084], [-77.44752845358803, 34.621801960636304], [-77.44748436882497, 34.6223116560959], [-77.4473925510823, 34.622560924027816], [-77.44729444096423, 34.622958893840796], [-77.44726870379056, 34.62311165935654], [-77.44724123638144, 34.623384035174816], [-77.4472216993258, 34.62355284727719], [-77.44721676769203, 34.62386497803181], [-77.44726843700893, 34.624188600344965], [-77.44688122895147, 34.624534082936734], [-77.44671128390374, 34.62461307813759], [-77.44643368859278, 34.624826760112384], [-77.44644426512414, 34.62513906090549], [-77.44661944469021, 34.6255123047506], [-77.4472484084758, 34.62587501612302], [-77.44804674338785, 34.626056677114974], [-77.448620470315, 34.626418786730326], [-77.4495518203138, 34.62660581758541], [-77.45059800780174, 34.62585490874706], [-77.45106774846357, 34.6255177505098], [-77.45129973421234, 34.62530821475544], [-77.45249378876912, 34.62383726343974], [-77.4525197712913, 34.62354813275809], [-77.45202639513252, 34.62302017038422], [-77.45178844720475, 34.622561368630855], [-77.45154391308948, 34.62235998540052], [-77.45122462654065, 34.62217163625767], [-77.45114109321811, 34.62200745452947], [-77.45081348717727, 34.621712448971195], [-77.45052327681111, 34.62144511633282], [-77.45041020730068, 34.621338584276124], [-77.45020115225289, 34.62116771643517], [-77.45021175152846, 34.62088254294687], [-77.45018277765877, 34.62080369738373], [-77.45022185165557, 34.62065449584915], [-77.45029188611734, 34.620291182966966], [-77.4503773130656, 34.62000970517185], [-77.45074730216963, 34.61945112526057], [-77.45106227423854, 34.61932191496816], [-77.45123000757539, 34.619293832594], [-77.4514294844403, 34.6191780299917], [-77.45167919821874, 34.619014162482095], [-77.45179701433919, 34.618959568612915], [-77.45214576778987, 34.61879796231683], [-77.4523202700162, 34.61871710000762], [-77.45223196520249, 34.61849234223929], [-77.4520676124023, 34.61839782304269], [-77.45197228631059, 34.61840149577989], [-77.45151860801533, 34.618427753711785], [-77.45128254972683, 34.618443297282134], [-77.45084254836902, 34.61839999854467], [-77.45037547374011, 34.61809329717923], [-77.45018644109868, 34.61795468984731], [-77.44996244914854, 34.61791246106899], [-77.44944597066666, 34.61794563684858], [-77.44929536160315, 34.617988959061954], [-77.44909260955035, 34.61801341073618], [-77.44901351716662, 34.61801717673829], [-77.44876988849265, 34.61799004138696], [-77.44864004389788, 34.618016604966925], [-77.44861167273449, 34.617928395179774], [-77.448575437121, 34.617832463934334], [-77.44847049917493, 34.61759939508593], [-77.44838882275221, 34.61740939943753], [-77.44833623742372, 34.61726842418717], [-77.44824698734934, 34.617125635185516], [-77.44823802060102, 34.617111803376716], [-77.44816469977381, 34.61706935280668], [-77.44803196493157, 34.61698593290388], [-77.44800556862653, 34.61696361952342], [-77.44795950230208, 34.616950549479505], [-77.4478144697455, 34.61694681085528], [-77.4474319372395, 34.61694396263203], [-77.44727094872744, 34.616947410421126], [-77.44711893433305, 34.616877027498916], [-77.44695219715496, 34.616645105137366], [-77.44685464433664, 34.616583133748684], [-77.44684062316384, 34.61655918317895], [-77.44678088669208, 34.61648634311361], [-77.44662946496261, 34.616278087497754], [-77.44646227461917, 34.616107414285615], [-77.44635215855965, 34.61598790475739], [-77.44626418708731, 34.6158924289975], [-77.44611804941596, 34.615733824174114], [-77.44610468270528, 34.61568921626139], [-77.44621183912561, 34.615499270003035], [-77.44622884369393, 34.6152845583126], [-77.44634389912707, 34.615193443580566], [-77.44641923616055, 34.61516538249906], [-77.44655353445928, 34.61508152822288], [-77.44702074127217, 34.61481087174869], [-77.44733054695985, 34.614653343366655], [-77.44758868306246, 34.61439019366925], [-77.44809359821264, 34.614014309589066], [-77.44815223912343, 34.61396798093307], [-77.44818723316956, 34.613941830469116], [-77.44830585796738, 34.613853473522056], [-77.44880358475932, 34.61357648463599], [-77.44907119080742, 34.61332996651328], [-77.44938727993394, 34.613445625434146], [-77.44963126700908, 34.613455370967515], [-77.44972722630388, 34.61348716291532], [-77.45007972004817, 34.613447922217624], [-77.45013825128801, 34.61344179298849], [-77.45015286103889, 34.61344022488363], [-77.4510089389691, 34.61329157585903], [-77.45130423965736, 34.613212635124114], [-77.45132278904937, 34.61309341218622], [-77.45137674151495, 34.61284186020144], [-77.45140775387729, 34.61262945929376], [-77.45149935709256, 34.612304536095806], [-77.4516485705723, 34.61209432208211], [-77.45185153786962, 34.611963810576], [-77.45217618713536, 34.61186434879998], [-77.45233883809561, 34.61182345856957], [-77.45255520652098, 34.611792138556595], [-77.45282764451935, 34.6116886092451], [-77.45343410860133, 34.61148024659126], [-77.45367799572516, 34.6109542131303], [-77.45368693860078, 34.6109493165689], [-77.4543532375331, 34.61103108002331], [-77.45445363781604, 34.61109267271854], [-77.4546881239761, 34.61129958864445], [-77.4547739744186, 34.611370565965125], [-77.4548078901164, 34.611389537413785], [-77.45486777964354, 34.611459302618], [-77.45504277794062, 34.61166315762419], [-77.45519085800485, 34.611835655009486], [-77.45563715470169, 34.61186288290057], [-77.45572506566424, 34.612281738393065], [-77.45581165452022, 34.61255163533956], [-77.45591295497995, 34.61278150373106], [-77.4565770593997, 34.61257979093628], [-77.45653803034443, 34.61234444298898], [-77.45638408227491, 34.612205391276945], [-77.45622392913141, 34.61169551094175], [-77.45605525393279, 34.611158489890165], [-77.45612557997792, 34.61098503358381], [-77.45599664894348, 34.61085029214214], [-77.45582964687677, 34.6103309199962], [-77.45573330353349, 34.610257896677865], [-77.45565778884357, 34.61001067793471], [-77.45557912821612, 34.609753157860034], [-77.45562962905487, 34.6096494458287], [-77.45554234594762, 34.609576982687514], [-77.45538566215788, 34.6093497727125], [-77.45536831991124, 34.60933258087322], [-77.4552763463673, 34.60902784596403], [-77.45528169257615, 34.60901016570272], [-77.4552776393027, 34.60898625866247], [-77.45529820909945, 34.608416111090975], [-77.45537215886912, 34.60824583244461], [-77.45529110655005, 34.608055362624974], [-77.45490965019292, 34.60777281576135], [-77.45485002111191, 34.60768033913891], [-77.45482405463451, 34.607663650409876], [-77.45471200154853, 34.60759163338305], [-77.45440932607076, 34.60730483834596], [-77.45408285585748, 34.60713654384665], [-77.45428613587092, 34.60682324683962], [-77.45456871154062, 34.60652781175235], [-77.45477577479878, 34.606200369037936], [-77.4551869175547, 34.60589963849219], [-77.45530242468583, 34.605680879746195], [-77.45534595067951, 34.605645588290066], [-77.45535889445404, 34.605573932122475], [-77.45548092423901, 34.605383119646845], [-77.45546901766832, 34.605264094620566], [-77.45538928352444, 34.60519203154384], [-77.45539659723292, 34.6051001213414], [-77.45540094801913, 34.605045446475835], [-77.45550074102214, 34.60488578160934], [-77.45549810426724, 34.60476974685917], [-77.45576265423074, 34.604441803869236], [-77.45572676636243, 34.60386488314473], [-77.45565439782283, 34.60373415754643], [-77.45522358251188, 34.60343492706059], [-77.45552432002879, 34.6030327364286], [-77.45528307990966, 34.60283636103734], [-77.45557060930639, 34.60250771777331], [-77.45556984468453, 34.60231731191852], [-77.45557910301217, 34.60227858174639], [-77.45552485113015, 34.602282968752725], [-77.4554326893846, 34.60200405697368], [-77.45530871364019, 34.60163287638993], [-77.4553050013649, 34.601618246457996], [-77.45530073875052, 34.601603770100304], [-77.45524315363909, 34.60131189254598], [-77.45516763276177, 34.60093781155427], [-77.45519763272884, 34.60091034803572], [-77.45597013102964, 34.60012738804595], [-77.45623287801519, 34.60007176530457], [-77.45694630291143, 34.59985295256295], [-77.45705974951895, 34.59974169752003], [-77.45708227483097, 34.5996341749739], [-77.45733437497856, 34.599218403247605], [-77.45774494841838, 34.59893027809576], [-77.457898667969, 34.59879646242716], [-77.45853375513448, 34.5986029831634], [-77.45870141415313, 34.598583947552385], [-77.45898310970216, 34.59855650688202], [-77.45941171066214, 34.598443614264504], [-77.45972936183921, 34.59849864592168], [-77.4597564445023, 34.59850196599867], [-77.46013244132253, 34.59847654330052], [-77.46049084567565, 34.59846463830524], [-77.4607670882758, 34.598449047188275], [-77.46090912377667, 34.59844103018904], [-77.46135180497316, 34.598416042103516], [-77.46169747903639, 34.598391232579495], [-77.46201526848071, 34.59837858979386], [-77.46272690660959, 34.59792767679187], [-77.46312077994978, 34.597526608529165], [-77.46312608017163, 34.59717122672437], [-77.46317963925841, 34.59657823485173], [-77.46320325374452, 34.596410664886825], [-77.46320325865531, 34.59631674091877], [-77.4632032813046, 34.595672109264235], [-77.46317766313297, 34.59506905904261], [-77.46314559635728, 34.59479084231869], [-77.46283160288056, 34.59447173894114], [-77.46273724749939, 34.59437584836309], [-77.46200235155828, 34.59465787073885], [-77.46183278678575, 34.59466323345696], [-77.46174224277232, 34.594678479282194], [-77.46151279939461, 34.59479627836423], [-77.46136646918183, 34.59487980616662], [-77.46131490596437, 34.59491850855427], [-77.46122625159468, 34.595005709312716], [-77.46114612508711, 34.59515130280402], [-77.46108830756577, 34.5952671319441], [-77.46100270655033, 34.59547084470053], [-77.46097321607286, 34.595536550074755], [-77.46094790171554, 34.5955771326187], [-77.46090565536039, 34.59570180382958], [-77.46079081672158, 34.59609210457478], [-77.46069451547831, 34.59626480900094], [-77.46064878256956, 34.596352097151026], [-77.46055742441243, 34.59642708619781], [-77.46041397261014, 34.59657963004615], [-77.46028517262555, 34.596689454738204], [-77.45992773570477, 34.59689796839042], [-77.4598580732773, 34.59662662744497], [-77.45952099966907, 34.596480996715435], [-77.45949372647296, 34.596257660550236], [-77.45953616737594, 34.595979938809755], [-77.45954717128046, 34.59591403937165], [-77.45955211889576, 34.59565871682195], [-77.45950774084078, 34.5955827439418], [-77.45941116486993, 34.59541740832792], [-77.45935196108809, 34.595316053131526], [-77.4593409001401, 34.59529711696869], [-77.4592993648068, 34.595260595293944], [-77.45913677781134, 34.59512202298786], [-77.45893355961663, 34.595044071272206], [-77.45876565518326, 34.594979665249454], [-77.45852611680904, 34.594954491272496], [-77.4579843481279, 34.59494562629917], [-77.45785308830352, 34.5948632433902], [-77.45767959605774, 34.59485258993689], [-77.45759265714644, 34.5949731167846], [-77.4572281547664, 34.595123522204084], [-77.45707778872523, 34.59520427222988], [-77.45683461004751, 34.5953272529984], [-77.45677397453052, 34.595384459995024], [-77.45657037055201, 34.59571830184075], [-77.45655975945625, 34.59585046289548], [-77.45655075446, 34.595998911509625], [-77.4565479975326, 34.59609394946643], [-77.45652642355354, 34.59640002121455], [-77.45652296888865, 34.59645697247912], [-77.45649846930071, 34.59652007611929], [-77.45659889506607, 34.59681795831187], [-77.45667794213598, 34.597130580638016], [-77.45624834875267, 34.5973041277454], [-77.45596878863384, 34.59716790609011], [-77.45528087594779, 34.59726112018874], [-77.45518870507229, 34.59727360947732], [-77.45504659573916, 34.597381359500815], [-77.4546850568251, 34.597672020467044], [-77.45437636844932, 34.59814631762758], [-77.45435852145297, 34.59817714816019], [-77.45408424396484, 34.5982738562944], [-77.45343837100944, 34.59856012347218], [-77.4533647553193, 34.59852383184472], [-77.45331041876823, 34.5984945980923], [-77.452876046044, 34.598426166465714], [-77.45271736820922, 34.59840116772388], [-77.45238391930306, 34.598415267269175], [-77.45234714455188, 34.59841428267425], [-77.45233099119206, 34.598416493123565], [-77.45224771608711, 34.598428474269056], [-77.45190729769652, 34.598477451800676], [-77.45174382619204, 34.59850097069989], [-77.45133565925678, 34.598559693739276], [-77.45093914708258, 34.59874704434116], [-77.45070623752765, 34.598757267297756], [-77.45080313074948, 34.59891337751873], [-77.4511638735225, 34.599106888296056], [-77.45134493588273, 34.59916517040933], [-77.45153925203456, 34.59930335713872], [-77.45158688272878, 34.599355491062894], [-77.45157529639629, 34.599435014746355], [-77.4515412247001, 34.59966886515019], [-77.45151469336622, 34.5997453412835], [-77.45131553683349, 34.60011548989574], [-77.45129158345748, 34.60017823914403], [-77.451277569929, 34.60019599899363], [-77.45122007288505, 34.600232231435584], [-77.45077840943493, 34.60036434889008], [-77.45043417297553, 34.600278924658774], [-77.45025203642342, 34.60036173944171], [-77.45011225180858, 34.60040760171096], [-77.4500080206366, 34.60043046161573], [-77.44989745663251, 34.600478074071994], [-77.44977290851222, 34.60053170859176], [-77.44953809903984, 34.60067837375462], [-77.44942420913027, 34.60078622159559], [-77.44943506135768, 34.60104350724211], [-77.44957658439816, 34.60103665444068], [-77.44982434047418, 34.60102465774077], [-77.44991242532429, 34.60104134482489], [-77.45023686594615, 34.60121758869524], [-77.45033240428234, 34.601317728727196], [-77.45045635919843, 34.60152424207909], [-77.45034314385879, 34.60172720084637], [-77.45023795040012, 34.601955795516204], [-77.45021937192807, 34.60199358827831], [-77.45019394881375, 34.60206969068724], [-77.45012571915748, 34.602270515088016], [-77.45009125362142, 34.60236689359816], [-77.45014267854958, 34.60246408675335], [-77.45031334522477, 34.60250581166748], [-77.45043729447674, 34.602561000552754], [-77.45054573508732, 34.602606526035395], [-77.45071402315196, 34.60267978712082], [-77.45076099730107, 34.60280252125406], [-77.45077785285817, 34.60290958033846], [-77.45072520566883, 34.60305014201198], [-77.4506979364011, 34.60309015339213], [-77.45050383181456, 34.603201594017186], [-77.45019156918681, 34.60331865677854], [-77.45001533440255, 34.60333739698438], [-77.44972758784075, 34.60336999409242], [-77.449519021909, 34.60344465753779], [-77.44933196334392, 34.60369122268642], [-77.44962091684602, 34.60381685493349], [-77.44981794256395, 34.603775529940116], [-77.44991908482393, 34.603893028619055], [-77.45044184722042, 34.603926970166526], [-77.45070480112282, 34.604038191709236], [-77.45072050764196, 34.60404340079991], [-77.45074685043532, 34.60408923865128], [-77.45087864915058, 34.60430720375458], [-77.45090539344989, 34.60435023810436], [-77.45092830215026, 34.60440955941354], [-77.45098727009298, 34.60496736827182], [-77.45099431026735, 34.60505205413784], [-77.45099303435923, 34.60506375929379], [-77.45098961723811, 34.60508587612065], [-77.45089574622085, 34.605636961305024], [-77.45048419955252, 34.605703901096405], [-77.45013999251572, 34.605712851342346], [-77.44975632298966, 34.60585765173824], [-77.4496616357436, 34.605885750048195], [-77.44951627169723, 34.60597310608012], [-77.44920657235718, 34.60614373644152], [-77.44883105464474, 34.60615327409168], [-77.44868780166867, 34.606169024907224], [-77.44860826764862, 34.60616902508985], [-77.44830194024762, 34.606200520100884], [-77.44817294447869, 34.60620860827768], [-77.44814611458351, 34.606244959624824], [-77.44810507827872, 34.606327122115424], [-77.44802693979479, 34.606463574397175], [-77.4480252875882, 34.606490710865444], [-77.4480458580664, 34.6066428068262], [-77.448085025856, 34.60680880503692], [-77.44820720444591, 34.60696604930052], [-77.44842888146087, 34.60725134722553], [-77.44843934499451, 34.607269102602984], [-77.44844620504915, 34.60728151931319], [-77.44847445050925, 34.60730994798195], [-77.44855156055672, 34.60742172845446], [-77.448549968043, 34.607585792831756], [-77.44854724283955, 34.60760246734106], [-77.44854423432119, 34.607608445962654], [-77.44834546820819, 34.60784156168724], [-77.44828050567315, 34.60805291301942], [-77.44818903789108, 34.608187667430705], [-77.44805687239688, 34.608359977786094], [-77.44785050649249, 34.60846704632229], [-77.44774255974151, 34.608477071500786], [-77.44735500892062, 34.6086157173564], [-77.44726392232812, 34.60864901218603], [-77.44721247031998, 34.60868389872239], [-77.4469031757409, 34.60871099821237], [-77.44675836859861, 34.60872263484838], [-77.44659604916627, 34.608717902309074], [-77.44653388470824, 34.6087053560071], [-77.44633929177655, 34.6086880415789], [-77.44621937313119, 34.60867409503132], [-77.44614047309574, 34.608663188370855], [-77.44585023437563, 34.60862690673461], [-77.44567914684899, 34.60862105448626], [-77.4454860480266, 34.6086991546833], [-77.44543973220954, 34.60870668018185], [-77.44539508449914, 34.60872623429657], [-77.44520162534742, 34.60879708422231], [-77.44510327029762, 34.60887490584425], [-77.44480976085993, 34.608984709318], [-77.44467712067977, 34.6088014768728], [-77.44462296084286, 34.608726659078314], [-77.44447982551166, 34.608473800267504], [-77.44439623959275, 34.608422055066114], [-77.44434781759819, 34.60830081903777], [-77.44424084730016, 34.60809711296379], [-77.44418897768726, 34.60793552273417], [-77.44438889329282, 34.607748481388946], [-77.44443887926053, 34.60771327265374], [-77.44459109641133, 34.6076279886871], [-77.4447786029496, 34.60752245759504], [-77.44484053024227, 34.60747790444628], [-77.44497963768475, 34.60728310553057], [-77.44498587578786, 34.60714616446128], [-77.44489830849852, 34.607047871345415], [-77.44486864693559, 34.60699496673728], [-77.44471206993849, 34.60687975876065], [-77.44468875045779, 34.60686163864463], [-77.44466922401486, 34.60685205901205], [-77.44432431674082, 34.60683535974322], [-77.44413769488705, 34.60683074051514], [-77.44366292034407, 34.60678489997298], [-77.44362016376714, 34.6067819850618], [-77.44358124646362, 34.60671837474679], [-77.4433795210729, 34.60649645806176], [-77.4434782564851, 34.60634208898124], [-77.44360316848233, 34.606181960193155], [-77.44386100958393, 34.60581985693146], [-77.44396765408366, 34.605690106622035], [-77.44397542670482, 34.60558803588261], [-77.4440229226474, 34.60537529208179], [-77.44407679654802, 34.60518987928256], [-77.4440911600781, 34.60511391480302], [-77.4441348962681, 34.60480405959319], [-77.44414861961639, 34.60451460791272], [-77.44416286121678, 34.6042899211293], [-77.4440441913863, 34.60409142251882], [-77.44403962789227, 34.60398345386831], [-77.4438828068852, 34.60397884430391], [-77.44365529031224, 34.60399622305287], [-77.4433689592298, 34.604022057991756], [-77.44307863266441, 34.60414011986822], [-77.44288309980276, 34.604167539208376], [-77.44276887948183, 34.60434141682457], [-77.44278342817083, 34.60445092659146], [-77.44276940031654, 34.604651309197905], [-77.44279829133518, 34.60481593850064], [-77.44274706305083, 34.605106636125605], [-77.44273791207992, 34.605202405181664], [-77.4427250216551, 34.60525519783741], [-77.44267470646514, 34.605326850645866], [-77.44240712972109, 34.60566597318936], [-77.44234376923642, 34.60574118164255], [-77.44187527531085, 34.60618687120203], [-77.44187972485679, 34.606198188942244], [-77.44187047083099, 34.60622984923647], [-77.44157260558295, 34.606710120123296], [-77.44148250068721, 34.606733065303175], [-77.44144358223987, 34.60670023160584], [-77.44140737461312, 34.60668953039223], [-77.44111056189004, 34.60665024039254], [-77.44105025338195, 34.606527294856924], [-77.44114026628986, 34.60639644016783], [-77.44100576272507, 34.60632124091616], [-77.44097463529923, 34.60607441679343], [-77.44088568550441, 34.60585026850842], [-77.44080983632341, 34.60575215633422], [-77.44076715845776, 34.60569870724149], [-77.44062296239338, 34.605448598832375], [-77.44061850612029, 34.605437460631585], [-77.44056986794376, 34.605319136102636], [-77.44049217308995, 34.60512065438396], [-77.44048282626798, 34.605106897839924], [-77.44047731950756, 34.60508790759086], [-77.44039287875813, 34.60478493056895], [-77.44038457353744, 34.60476566401196], [-77.44021785262021, 34.60454179220406], [-77.44017087227807, 34.604457346617394], [-77.43994617278821, 34.604282564711596], [-77.43981616247169, 34.604189233295116], [-77.4397769153157, 34.604166630002446], [-77.43970363869406, 34.6040746585557], [-77.43956332657729, 34.60389207376683], [-77.43947692273375, 34.6036191611486], [-77.43944148728559, 34.60355756529397], [-77.43942561671756, 34.60348092311379], [-77.43939653854598, 34.60326032577304], [-77.43938246263819, 34.6032051477148], [-77.4392725549034, 34.602954792365196], [-77.43924437640212, 34.60287527169845], [-77.43918911932496, 34.6027787081308], [-77.43911583285666, 34.602689284659746], [-77.43901843802061, 34.60257044357547], [-77.43893511822492, 34.60245310858207], [-77.43885023500312, 34.60224915451667], [-77.43881155563147, 34.602147064520075], [-77.43875915944079, 34.60200876936146], [-77.43873201263987, 34.601913615467225], [-77.43870881423943, 34.60181556578592], [-77.43865081576888, 34.601567520093404], [-77.43860622790652, 34.601335801299406], [-77.43858106830946, 34.6012181604589], [-77.43856178484756, 34.60108111045764], [-77.43851926937386, 34.60082657947724], [-77.43848911263646, 34.6004922530071], [-77.43847832166455, 34.600407906417004], [-77.43847505254315, 34.60033754428908], [-77.43845782391412, 34.59998627638144], [-77.43845732129391, 34.59961383695333], [-77.43851386923296, 34.59955357821379], [-77.43870570986603, 34.59920595125861], [-77.43877446700658, 34.59909130237359], [-77.43877829091231, 34.59906430820668], [-77.43909104838909, 34.59862092974246], [-77.43914127267641, 34.59855395112262], [-77.43919667619315, 34.598502787301335], [-77.4394348285549, 34.598314541977544], [-77.43962620480028, 34.598157294031374], [-77.4396974862865, 34.598108640881584], [-77.43998459117097, 34.59790366082318], [-77.44017364009233, 34.597818912040125], [-77.44018159642398, 34.59781427939651], [-77.4402936569423, 34.5975978329071], [-77.44027191221488, 34.59748615175994], [-77.44024333082105, 34.59732605404709], [-77.44011858582235, 34.59719855563828], [-77.43998413920107, 34.596933635944566], [-77.43992080494692, 34.5968707674377], [-77.43981149700697, 34.59681836972307], [-77.43958998093684, 34.59678502777319], [-77.43930081377442, 34.59677917218435], [-77.43919588814671, 34.59677704741973], [-77.43891119509735, 34.59652396598434], [-77.43884942122858, 34.59648144628719], [-77.43880161547679, 34.59637033312638], [-77.4386791713863, 34.596132923218406], [-77.43876545372339, 34.59573450481005], [-77.43876700176202, 34.59565868050154], [-77.43893163873861, 34.595247226472054], [-77.43902259257929, 34.59504820849307], [-77.43906352776348, 34.59452046882191], [-77.43909157894143, 34.59437490977497], [-77.43909051682309, 34.594262764570665], [-77.43919462309287, 34.59399630427659], [-77.43934122367716, 34.593647744284745], [-77.43944945088317, 34.593473968759625], [-77.43958838174966, 34.593304159805356], [-77.43990665953402, 34.593326173205824], [-77.43998247010254, 34.59333814572586], [-77.44001308830887, 34.59335947922039], [-77.44005829102407, 34.59338592116545], [-77.44056244486185, 34.593537404979784], [-77.44077073461152, 34.59359032752124], [-77.44098606051791, 34.59348380167004], [-77.44134243177774, 34.59320020415037], [-77.441460162147, 34.59307707684137], [-77.44155860801641, 34.59302168414366], [-77.44192106497104, 34.592725827954354], [-77.44196044459673, 34.592694763100546], [-77.44234638082482, 34.5922699129705], [-77.4424277272085, 34.592194041986325], [-77.44244898653, 34.59208031150055], [-77.44234617590273, 34.59185184462037], [-77.44219844785874, 34.59153701975313], [-77.4416783324691, 34.591582985911444], [-77.44155790800549, 34.591566325593746], [-77.4415065546379, 34.591533399695585], [-77.44078514636615, 34.59159896226935], [-77.44076979333178, 34.591595230778324], [-77.4407603750966, 34.59159615263909], [-77.44040046045288, 34.59166466935533], [-77.44037576332326, 34.59166894481725], [-77.44016222713546, 34.591672510282606], [-77.44000065771259, 34.59167545165691], [-77.43998170202582, 34.59167655892705], [-77.43995162639919, 34.591670564596406], [-77.43922496484485, 34.59177427682783], [-77.43919360260637, 34.591743991980515], [-77.43911975219919, 34.59174369735203], [-77.438662667681, 34.591612182902885], [-77.43840533199625, 34.5914282147172], [-77.43829231948489, 34.591215401068034], [-77.43819104134926, 34.59110838001637], [-77.43809920016089, 34.59102672605616], [-77.43801104741088, 34.590924440548775], [-77.43800951096874, 34.59092233326757], [-77.43795578427509, 34.5907772809437], [-77.43792522653753, 34.59072222403044], [-77.43795616308248, 34.590658738554986], [-77.43801090061487, 34.59058871860478], [-77.43817771000649, 34.59044092454763], [-77.43828971445112, 34.590368995171275], [-77.43840483097365, 34.590295067246736], [-77.43845130979393, 34.5902716469637], [-77.43848269444018, 34.59021701687522], [-77.43884791662288, 34.58979267577817], [-77.43887005289915, 34.58973640674269], [-77.43893884321756, 34.58957531273095], [-77.43896544148092, 34.5895103152235], [-77.43897667858006, 34.58948834854026], [-77.43909343056242, 34.589279508884694], [-77.43879834698407, 34.58907827292619], [-77.43864653033457, 34.58908312773134], [-77.4385574466686, 34.58909743824026], [-77.4384043246722, 34.58914761386394], [-77.43824448960687, 34.589230012773754], [-77.43801035498385, 34.589339284326506], [-77.43770967396321, 34.58947961217154], [-77.43763982997285, 34.58951498281464], [-77.43761637629225, 34.58951442035597], [-77.43759792428268, 34.58951565398059], [-77.43754032196136, 34.58950410083045], [-77.43728204766886, 34.58947707484859], [-77.43722229908131, 34.58946277626403], [-77.43701821460206, 34.58937486331811], [-77.43685353882523, 34.58917881528477], [-77.43684474083594, 34.589162175425834], [-77.43682810046269, 34.58912248275873], [-77.43672198018965, 34.58888748247969], [-77.43667024273105, 34.58878072566651], [-77.4364797375791, 34.58843322007904], [-77.43645113314413, 34.58836906552929], [-77.4363763784969, 34.58833683780534], [-77.43603959229708, 34.588149004503805], [-77.4359729149853, 34.588104193618264], [-77.43590706490943, 34.588041889079804], [-77.43564539923338, 34.587794979068335], [-77.43559204578398, 34.58772030090495], [-77.43555483987517, 34.5876682238906], [-77.4354214030478, 34.58750415743963], [-77.43539921795532, 34.58747842845642], [-77.43525116285781, 34.58732478880063], [-77.4352349581417, 34.587307335069724], [-77.43522161244746, 34.587291811276884], [-77.43505880405988, 34.587108172552604], [-77.43488770444515, 34.58691549637143], [-77.43487353142746, 34.58689967740036], [-77.43485694086665, 34.58687940239599], [-77.43469752777199, 34.586690091460696], [-77.43457515083088, 34.5865360933463], [-77.43462483404352, 34.58635419588019], [-77.43471363049107, 34.5859374588577], [-77.43505260928187, 34.58583118010394], [-77.4352505427899, 34.58577867499627], [-77.43548689853894, 34.58580975355168], [-77.43564457906177, 34.585774645034526], [-77.4357379732781, 34.585842767432176], [-77.43584163128467, 34.5858563972176], [-77.43589481597928, 34.585863390320554], [-77.43603650568747, 34.58589787949229], [-77.43603866753706, 34.58589827135438], [-77.43604023954293, 34.58589797487993], [-77.43604781845845, 34.58589857305056], [-77.43623569303739, 34.585913622821344], [-77.43634957367365, 34.58585494089386], [-77.43638595055107, 34.58579934419063], [-77.4364325764538, 34.58558615380389], [-77.43650702409784, 34.58540758087575], [-77.43643243818406, 34.58525248287077], [-77.43635468389087, 34.58508872655969], [-77.43631636394551, 34.58488564348251], [-77.436294376197, 34.58458914239509], [-77.43630815134554, 34.58429605769001], [-77.43637879862962, 34.58409505829364], [-77.43643191733263, 34.58399376019012], [-77.43651297339278, 34.583795779514915], [-77.43668542118345, 34.583683411684234], [-77.43677293283648, 34.58361380218201], [-77.43682579781871, 34.58363785443353], [-77.43683773726295, 34.58364852577447], [-77.43685238921229, 34.58365926791176], [-77.43694903307235, 34.58372483391244], [-77.43702286916343, 34.58377492630289], [-77.43706075078268, 34.583800626218164], [-77.43721996007018, 34.58395674032889], [-77.43729007438975, 34.58394501137182], [-77.43748333102069, 34.58427627748372], [-77.43752093039384, 34.58441178052091], [-77.43754175919369, 34.58448684459379], [-77.43761422832077, 34.58451632327237], [-77.43789471430748, 34.58490485442648], [-77.43812903166274, 34.58487840668458], [-77.43840243606743, 34.584847546589444], [-77.43854986118717, 34.584953363434494], [-77.43875427278448, 34.58508261171437], [-77.43901837001064, 34.58523008429783], [-77.43919072272345, 34.58534164537547], [-77.4392455298128, 34.58537712111354], [-77.43929993589818, 34.58542829343985], [-77.43942220232034, 34.58558589146363], [-77.43966150636976, 34.585800596444386], [-77.43975953940102, 34.5860230080323], [-77.439979175083, 34.5861777777317], [-77.44022104381557, 34.58630830270197], [-77.44073108154694, 34.58645598074524], [-77.44076738885381, 34.58646939661608], [-77.4407808643162, 34.586473378254546], [-77.44082391895887, 34.58648166951601], [-77.44116146541, 34.58654667263391], [-77.44155403158352, 34.58637606907079], [-77.44155498988489, 34.586375462509835], [-77.44155542378077, 34.586374663254055], [-77.44198965257225, 34.585931997658626], [-77.44300057087534, 34.58531763994821], [-77.44296840659828, 34.58514711538838], [-77.44266216306117, 34.58417286367413], [-77.44238506735451, 34.58370828555559], [-77.44207609396832, 34.58319026971442], [-77.44155349598046, 34.582314046510064], [-77.44080891995117, 34.58134135504264], [-77.43976444235966, 34.58069056033985], [-77.43907420699487, 34.580064200556016], [-77.43840026291245, 34.57985797568203], [-77.4371695332497, 34.578994960042515], [-77.43659749482454, 34.57920614946015], [-77.43524809929977, 34.57964213943507], [-77.43524541721479, 34.57964281266618], [-77.43518809364292, 34.57965399170199], [-77.43450162651949, 34.579797953419664], [-77.43446013397009, 34.57977854170241], [-77.43409691337757, 34.58023635638761], [-77.43408489356226, 34.58025812294013], [-77.43406632915642, 34.58031507455122], [-77.43386941858964, 34.58069383997258], [-77.43396290083604, 34.58099318179305], [-77.43399628686564, 34.58110008917768], [-77.43401342483426, 34.581154967177], [-77.4340667145994, 34.58132250018056], [-77.43412921303957, 34.581505462444035], [-77.43413794010945, 34.58158084621688], [-77.4341500442558, 34.58171474668097], [-77.43406690352965, 34.58181562302651], [-77.4339746595039, 34.581852983190174], [-77.43375723362352, 34.5818929725149], [-77.43367290042644, 34.581858870564], [-77.43349587822553, 34.58178775747797], [-77.43314546922416, 34.58164768973856], [-77.4329727634445, 34.581577823355715], [-77.43288476413487, 34.58159692943913], [-77.432818636028, 34.5816236713725], [-77.4324907546999, 34.58162236415506], [-77.43214719718101, 34.581737677750745], [-77.43209678359779, 34.58175524160995], [-77.43205853606682, 34.581763608575564], [-77.43161192385972, 34.58186939008946], [-77.4313406642067, 34.581942929224674], [-77.43130881621704, 34.58196044490051], [-77.43125160760738, 34.58192147751744], [-77.43074886682182, 34.58174828202798], [-77.43052069119321, 34.58171528444724], [-77.43021066145336, 34.58155679506545], [-77.42985814972431, 34.58140906863299], [-77.42979506941924, 34.58170743220459], [-77.42984237085994, 34.582007057019894], [-77.42985303784404, 34.5821236426455], [-77.42978382205476, 34.58218861862936], [-77.42973282112004, 34.582226589937854], [-77.42954095216149, 34.58238653224774], [-77.42953079148631, 34.58238798164462], [-77.42951448918295, 34.582384872939485], [-77.429372084698, 34.58236963864611], [-77.4293388403758, 34.582353658463255], [-77.42925538122823, 34.58229994443573], [-77.42913797799207, 34.58222699924319], [-77.42910926959387, 34.58205383376918], [-77.42894474628626, 34.58213290183641], [-77.428759490382, 34.58205671716334], [-77.42874770977792, 34.58205313607465], [-77.42870933619045, 34.582035315081164], [-77.42855067013602, 34.581962287364156], [-77.4285062231005, 34.5819416097891], [-77.42845731446984, 34.58190079082981], [-77.42829681784956, 34.581772880619], [-77.42828475770604, 34.58163929867732], [-77.42831531665604, 34.581496725214485], [-77.42826457992277, 34.58138755938161], [-77.42825936348544, 34.581080223359606], [-77.42815630729515, 34.58086807001567], [-77.42809640051094, 34.58074370129213], [-77.42804795363057, 34.58068619005232], [-77.42776212396426, 34.58032334533201], [-77.42775033832865, 34.58031731410583], [-77.42774240040538, 34.58030576324199], [-77.42760616829278, 34.58015744953088], [-77.42756951157092, 34.580118456422085], [-77.42756820569453, 34.5801152486945], [-77.42748799517543, 34.579917943412994], [-77.42776186275526, 34.57947058925043], [-77.42777076856282, 34.57946208552741], [-77.42777985587402, 34.57945117232804], [-77.42779896961363, 34.57940840228011], [-77.42804842547602, 34.57898776633613], [-77.42802795533616, 34.5788530858404], [-77.42799961405159, 34.578738374461416], [-77.4279477723529, 34.57857772521383], [-77.42795682958771, 34.5783659506417], [-77.42785947037919, 34.57816589902433], [-77.42801251918776, 34.57798979159239], [-77.42815536508706, 34.57783485847334], [-77.42845406245867, 34.577655369925225], [-77.4285125244073, 34.57760729422037], [-77.42848587863666, 34.577294416552405], [-77.42846168522166, 34.57722967900523], [-77.42837141902132, 34.57700962131079], [-77.42815511080282, 34.57701244967392], [-77.42802506363361, 34.577008341329105], [-77.42787339197646, 34.577011117561604], [-77.4277611127269, 34.57701209063293], [-77.42767749399331, 34.57700854382353], [-77.42736710886079, 34.576992451059866], [-77.42699207184867, 34.57699706698865], [-77.4269600535464, 34.5770080504035], [-77.42688044598755, 34.577033631740996], [-77.42662019161787, 34.57711547495405], [-77.42657915181499, 34.57712741888797], [-77.42652964846344, 34.57713768064239], [-77.42626583001433, 34.577209373738114], [-77.4261851829861, 34.57723246610216], [-77.42610897176529, 34.57722725397653], [-77.42586035624988, 34.577255593224805], [-77.42579119229168, 34.57726347703481], [-77.42572986223963, 34.577266008071305], [-77.4255248947016, 34.577229536973775], [-77.42542375157872, 34.5772155184859], [-77.42539717750945, 34.57720851738752], [-77.42533466792196, 34.577189670332096], [-77.42500316781903, 34.577170670563554], [-77.42478046851062, 34.577152510528734], [-77.42455547294338, 34.576945041168486], [-77.42440306769728, 34.57676446314302], [-77.42432280489354, 34.57624574314528], [-77.42428720546057, 34.57613463400061], [-77.42436939158111, 34.575956217131605], [-77.42444138573708, 34.57568776682634], [-77.42452993500427, 34.57559003741251], [-77.42451341723174, 34.575355437589224], [-77.42426875777647, 34.575288125852346], [-77.42422983211586, 34.57527741648071], [-77.42421467332844, 34.575271759793935], [-77.42416161362556, 34.57524643553841], [-77.42382063538057, 34.57508612746212], [-77.42367686914106, 34.57510400473265], [-77.42357071042528, 34.574964409536044], [-77.42349477342674, 34.574624339354465], [-77.4234747209046, 34.57455369359154], [-77.42347291921266, 34.57450392918504], [-77.42346707528588, 34.57434250514078], [-77.423465557403, 34.57430057840607], [-77.42346325250121, 34.57423691090774], [-77.42342642120519, 34.57418994796795], [-77.423364738605, 34.574211478861045], [-77.42331087533296, 34.57424054218395], [-77.42322945772041, 34.57430813077566], [-77.423182541823, 34.5743330536738], [-77.42303249903699, 34.574448135987176], [-77.42270365129869, 34.57459495088204], [-77.42263855599931, 34.574630075130074], [-77.42259087193005, 34.57463001976946], [-77.4225940756244, 34.57468094424494], [-77.42260900308277, 34.57471065615097], [-77.4226385961033, 34.57479641546455], [-77.42275121305804, 34.57508282497525], [-77.42275902273326, 34.57537665483563], [-77.42273822184023, 34.57550928832978], [-77.42272171717849, 34.57560103906369], [-77.42263879506822, 34.575620574046475], [-77.42250919286732, 34.575682062979496], [-77.422441823709, 34.57572449528014], [-77.422397824869, 34.575723350995105], [-77.42224482952713, 34.57573419201401], [-77.42200463321598, 34.57561528472397], [-77.42189330473477, 34.57558556705671], [-77.42185080187869, 34.57558546995195], [-77.42178853729877, 34.57557940958067], [-77.42145679558385, 34.57552464839581], [-77.42127134316304, 34.57549649386524], [-77.42122126273739, 34.57547465943705], [-77.42106277536026, 34.575399129558235], [-77.42102018245049, 34.575378831124475], [-77.42094628278942, 34.575343612660326], [-77.42077702739535, 34.57525138199776], [-77.42066873657656, 34.57518314410487], [-77.42053907254359, 34.57511757742686], [-77.42035381328924, 34.575004625338295], [-77.42031196012933, 34.57497051881265], [-77.42027469676273, 34.574953037345495], [-77.42007789042918, 34.57483242634244], [-77.41988065845386, 34.57471985625031], [-77.41983570569772, 34.57470333243789], [-77.41979726325074, 34.57466044629829], [-77.4197142066912, 34.574493117418314], [-77.41961893956334, 34.574261623679725], [-77.41959952437976, 34.57414268252571], [-77.41948648428405, 34.573805949859505], [-77.41936863526531, 34.57357556740969], [-77.41932368142615, 34.57345510990775], [-77.41938284721374, 34.57333497819315], [-77.4194863524223, 34.57315434260877], [-77.41969912156532, 34.57278107983463], [-77.41988020457843, 34.572529198242876], [-77.4198827793961, 34.572525168230946], [-77.41998498750183, 34.5721988135416], [-77.41995926620788, 34.57200421184557], [-77.41990159805485, 34.57167327987383], [-77.41988000663731, 34.57156834758379], [-77.41982795394061, 34.57131537584801], [-77.41981113958502, 34.57126176401843], [-77.41979941844366, 34.571176694071404], [-77.41979027028233, 34.57114910303075], [-77.41969320690502, 34.57107759606991], [-77.419682918658, 34.57107092412404], [-77.4196812678992, 34.57107001354782], [-77.4194859355145, 34.57108396587391], [-77.4193552784811, 34.57104383886817], [-77.41909194865556, 34.571006451947525], [-77.41881003564012, 34.57098180882778], [-77.418717065304, 34.57097466210146], [-77.41869797137556, 34.57097561642484], [-77.41867753450747, 34.57097892510311], [-77.41854393275753, 34.571020251013884], [-77.4180064707349, 34.571201784668055], [-77.41791010312446, 34.571384948189696], [-77.41757523091391, 34.571648415391614], [-77.41747922862129, 34.57163845712526], [-77.41712215411054, 34.571372715918876], [-77.417031430257, 34.571336508379794], [-77.41686691157992, 34.571262507135195], [-77.41643474512453, 34.57058425458579], [-77.41635970177856, 34.570486606629906], [-77.41643854035067, 34.570362600302865], [-77.41669546761514, 34.56997851907332], [-77.41685682321874, 34.56956563153908], [-77.41699951595781, 34.56941321249623], [-77.41712180187025, 34.569321407063995], [-77.41737604041442, 34.569066045832365], [-77.4174533263519, 34.568987652111744], [-77.41751568523523, 34.568863458856555], [-77.41770128988563, 34.568594477415274], [-77.41776018161178, 34.568424970834315], [-77.41790954912675, 34.56832056267403], [-77.41805022375249, 34.56839247333634], [-77.41825906900411, 34.56851389972409], [-77.41828870251761, 34.56852561580824], [-77.4183035503216, 34.5685503589398], [-77.4184324795027, 34.56877452496673], [-77.41850581929549, 34.56890283687174], [-77.41869763245883, 34.56919555572396], [-77.41874681703996, 34.56923960641192], [-77.41909067915104, 34.56924193063772], [-77.41909160429131, 34.569241901494216], [-77.4194607874555, 34.56916276837251], [-77.41948554701555, 34.56914021546082], [-77.41963213228583, 34.56900669364869], [-77.42000511827182, 34.56882167217741], [-77.42027338145924, 34.568706661043144], [-77.42036629865649, 34.568958547472775], [-77.42051819574708, 34.569036684903274], [-77.42066742910279, 34.56911710749662], [-77.42086144293737, 34.5692026008343], [-77.42106140344961, 34.56917322653683], [-77.42122980610173, 34.56911537352697], [-77.42145533803605, 34.5690491433129], [-77.42176082068688, 34.56885714049587], [-77.42181540310322, 34.56881277999024], [-77.42184922366839, 34.568714842898714], [-77.42253341704344, 34.567896330226596], [-77.42258116735309, 34.56782932746264], [-77.4226369210895, 34.56777368900263], [-77.42300909866184, 34.56742638749675], [-77.42303078742388, 34.567403649854384], [-77.42303297809651, 34.56740191729302], [-77.42305074810218, 34.567396987930266], [-77.42342471389294, 34.56729325060976], [-77.42349032625374, 34.56733346530518], [-77.4236649552015, 34.56747394143201], [-77.42381873870457, 34.567580999331604], [-77.42387842145011, 34.56763765969926], [-77.42397358945954, 34.567688214888406], [-77.42412257460239, 34.56776385964564], [-77.42421274828104, 34.5677983032848], [-77.42432558619745, 34.56775896826245], [-77.42460667801429, 34.56770047530366], [-77.42487874136636, 34.56755740465043], [-77.42496030179316, 34.5675022068216], [-77.42500056814292, 34.56745629279157], [-77.42508500249885, 34.56743658922011], [-77.42519742103762, 34.567511347831754], [-77.4256670154323, 34.56757441788262], [-77.425788516659, 34.56760930763173], [-77.42592936629651, 34.56767836841659], [-77.4260549551096, 34.567674548101884], [-77.42618248064251, 34.56764543522336], [-77.42635627646058, 34.567556154076435], [-77.42637029221946, 34.567544280739256], [-77.42642972570363, 34.56733324388098], [-77.42628463206213, 34.567039903449995], [-77.42623799597008, 34.56693636724025], [-77.42622286430947, 34.56689480496748], [-77.4261822598413, 34.56685121530447], [-77.42598011508213, 34.56654905128673], [-77.42618210455922, 34.56629165710601], [-77.42626412799981, 34.56617185285378], [-77.4265526095941, 34.566041717923774], [-77.42657597854395, 34.566030452465185], [-77.42665241718336, 34.566027291885405], [-77.42692135868828, 34.56604076617106], [-77.42686978569847, 34.566312447056845], [-77.42686624584435, 34.566420973754724], [-77.42697008898881, 34.566602677349465], [-77.42705311483702, 34.56672910782459], [-77.4270903830576, 34.56681316545132], [-77.42731795097195, 34.56715501610732], [-77.42726919064314, 34.567211908855406], [-77.42735102313407, 34.567214300142716], [-77.42736421943574, 34.567224387437946], [-77.42743660236073, 34.56726570918623], [-77.42815227313179, 34.56772175974744], [-77.42832435934415, 34.56772309656089], [-77.42851994300358, 34.56788029418115], [-77.42879459950511, 34.56799758634027], [-77.42887241201086, 34.56860518792958], [-77.42887928666497, 34.56867752949927], [-77.42889409916191, 34.56872539009308], [-77.42894053108684, 34.56884429640739], [-77.42902735523188, 34.56908071509475], [-77.42911129685737, 34.5693092845739], [-77.42918748795313, 34.56948215627632], [-77.4292498943409, 34.56980622374892], [-77.42923306264812, 34.569900158329744], [-77.42894096471474, 34.57023068815279], [-77.42885428006697, 34.57028606049834], [-77.42865311872161, 34.570408579711426], [-77.42857893519263, 34.57080966377966], [-77.42840826916392, 34.57129315089171], [-77.42866297609649, 34.57155637415071], [-77.42894136833328, 34.5715168908511], [-77.4295666326642, 34.57130095314036], [-77.42972922340455, 34.57124379573661], [-77.4298358161442, 34.57120168651305], [-77.43010877879058, 34.57104733547081], [-77.43041306516002, 34.5708912837011], [-77.43051703309146, 34.570850489091995], [-77.43107030046151, 34.5706554931519], [-77.43130489824142, 34.57064167468531], [-77.43152223312555, 34.57060875502791], [-77.43182912002652, 34.570514464498515], [-77.43209275302212, 34.570415532969896], [-77.43229561177637, 34.57030659273217], [-77.43243289228698, 34.570228804963214], [-77.43260956346897, 34.57012869596], [-77.43288052612431, 34.569975157725494], [-77.4333016169764, 34.569736547167714], [-77.43339562164616, 34.56942912634147], [-77.43366790686082, 34.56849420510255], [-77.43397467042207, 34.5679408587996], [-77.43377790643147, 34.566390332044385], [-77.4337064346146, 34.566238857666654], [-77.43322270336151, 34.565872416324424], [-77.43209086948569, 34.56502132788833], [-77.4319961982232, 34.564932199256546], [-77.43187082321239, 34.564848322788166], [-77.43051463617758, 34.56358543758831], [-77.43039338706673, 34.56349421741285], [-77.43027553362754, 34.563380603454505], [-77.42934173552477, 34.56225186965878], [-77.42901226700869, 34.561864871341484], [-77.42893835925314, 34.561830344936574], [-77.42888126687075, 34.56182227497263], [-77.42736259033178, 34.561607615061405], [-77.4268849678292, 34.56165756433097], [-77.4268737057111, 34.562174009503266], [-77.42689070515058, 34.562680493309855], [-77.42677268820603, 34.56303778820628], [-77.42682841028679, 34.56330263502753], [-77.42686391869702, 34.563562685137455], [-77.42696929730924, 34.563834183708806], [-77.42697467387687, 34.5638577701564], [-77.42696930975934, 34.56387787944342], [-77.42689057015748, 34.564209547265854], [-77.42666976726949, 34.56422479710504], [-77.4265754566944, 34.56417426344834], [-77.42642244869836, 34.56410248007283], [-77.42590124474614, 34.564135440484286], [-77.42578756948015, 34.56413057078939], [-77.42570802791495, 34.56412657747991], [-77.4254333365411, 34.5640805497754], [-77.42499962181964, 34.56385348892751], [-77.42473438220473, 34.56389567913961], [-77.42441557602984, 34.56400799852524], [-77.42421181229325, 34.56410541112609], [-77.42408372812353, 34.564137543340095], [-77.42358306544979, 34.56417646464951], [-77.42342396252263, 34.56421206140903], [-77.42323546718137, 34.564195032069435], [-77.42303000609041, 34.56413648673902], [-77.42291192830663, 34.564147622888086], [-77.4228734270753, 34.56385722993756], [-77.42298865804031, 34.56358468176307], [-77.42302986506651, 34.563543296094686], [-77.42330583511153, 34.56341173576816], [-77.42342375253381, 34.56334564715298], [-77.42403019839229, 34.5625849891819], [-77.42399085514074, 34.562352996738], [-77.42393268288224, 34.56205020481359], [-77.4238765500882, 34.56175802015346], [-77.42380053898995, 34.561362372162996], [-77.42301906081069, 34.561446242968415], [-77.4226354695183, 34.561559902233654], [-77.42192298526162, 34.56195919439981], [-77.42184771210452, 34.56198720756323], [-77.4218009703105, 34.56200758053304], [-77.4217111558622, 34.56207094332487], [-77.42145383583929, 34.562226199553976], [-77.42117460072332, 34.56214847504975], [-77.4210970686667, 34.56211959918313], [-77.42105988367373, 34.56211954359452], [-77.42069753948209, 34.5617586954816], [-77.42027196410741, 34.56181716095931], [-77.4200546810431, 34.5616952902713], [-77.41965852904796, 34.56151836256762], [-77.4195847253058, 34.56142049452619], [-77.41948402589793, 34.561390324155155], [-77.41927208315434, 34.561345767341365], [-77.4190175479676, 34.56161097257352], [-77.41878947043114, 34.56174441189267], [-77.41869632551507, 34.56221255879838], [-77.41864173970752, 34.562455555753424], [-77.41863313374283, 34.562515680924776], [-77.41848482694911, 34.562765171854494], [-77.41839047385477, 34.56307008750441], [-77.41820817584559, 34.56310338280646], [-77.41790863774905, 34.56319364736172], [-77.41756092573132, 34.563144992500405], [-77.41712078202467, 34.56327656551534], [-77.41676145783073, 34.563247967898], [-77.41650457930406, 34.56367234982228], [-77.41637504525646, 34.563736395338], [-77.41633301108504, 34.563910416661216], [-77.41588389561088, 34.56461117469928], [-77.41619980662873, 34.56470924207531], [-77.41633315269006, 34.56480772563987], [-77.4164401379667, 34.56495540834178], [-77.41633319074418, 34.565048203486626], [-77.41617442529292, 34.5652472270093], [-77.41601100684659, 34.56536469144034], [-77.41593929833512, 34.5653823889937], [-77.41584136833598, 34.56546648380241], [-77.41562544584134, 34.565583961996005], [-77.41554539291597, 34.565650384693285], [-77.41518297716172, 34.565952231341065], [-77.41499878159424, 34.56584820524726], [-77.41475750852801, 34.56571670734221], [-77.41466650629683, 34.56573426412673], [-77.41468159459123, 34.5656340041291], [-77.41458456307532, 34.565461661504], [-77.41409578963207, 34.56473332281038], [-77.41396946343073, 34.564559563371695], [-77.41372631500148, 34.564660739973846], [-77.41318158931772, 34.56464032231573], [-77.41282759422171, 34.564584968790946], [-77.41239371983161, 34.564782071240316], [-77.41205608624949, 34.564800139195725], [-77.41160583820063, 34.56483059410111], [-77.41127918455832, 34.56477911733782], [-77.41071646547348, 34.564508327329904], [-77.41028322862134, 34.56429798086205], [-77.4100300178756, 34.5642819753542], [-77.40947204450765, 34.564086663462604], [-77.40845421622016, 34.56372155384525], [-77.40776426428755, 34.56397990849455], [-77.40687847290039, 34.56401129171987], [-77.4056044436744, 34.56387328015005], [-77.40372695412195, 34.565470502580425], [-77.40070266429622, 34.56581673101221], [-77.40057535399993, 34.56586651590062], [-77.40047510123463, 34.565878738439864], [-77.39899954111186, 34.566058632173345], [-77.39758404923556, 34.566231183601126], [-77.39742372887261, 34.56611739887372], [-77.39715944747523, 34.565051853553626], [-77.39718330802438, 34.56476350863427], [-77.39663597290463, 34.564193602992816], [-77.3960043756984, 34.56493361181652], [-77.39590095889659, 34.565005593163825], [-77.3958960819205, 34.565746508194096], [-77.39600806138219, 34.56578222485281], [-77.39584792198448, 34.56607217782462], [-77.3956703857615, 34.56648879302676], [-77.39527075664981, 34.56651058063062], [-77.39505997201579, 34.56653774901133], [-77.3948754067829, 34.566595878810574], [-77.39460398413252, 34.56683393908726], [-77.39439476762378, 34.56699641488014], [-77.39427200627392, 34.567068988126955], [-77.39413071623991, 34.5671745293691], [-77.39403598799647, 34.56717022804564], [-77.3938780564678, 34.56699698437416], [-77.39382637724368, 34.56694611959771], [-77.39366068692124, 34.566779737212606], [-77.39348414525578, 34.566592473238344], [-77.39347481500349, 34.56658232089039], [-77.39344638863064, 34.56657636498957], [-77.39317215143366, 34.56652760184484], [-77.39296965303359, 34.566515222128714], [-77.39269623037124, 34.56662208435845], [-77.39265748985314, 34.56664841882916], [-77.39261469565983, 34.56669633942912], [-77.39246910439309, 34.56689717223908], [-77.39230220615435, 34.56715473966291], [-77.39228639687603, 34.56715122827991], [-77.39228942779438, 34.567167829314556], [-77.39227860859683, 34.56719481549498], [-77.39214754123667, 34.567446224004314], [-77.39204231494541, 34.56762804434936], [-77.39190815422393, 34.56785985997503], [-77.39175805531416, 34.567669046672066], [-77.39190821757067, 34.567381757996046], [-77.39201262835081, 34.56732027099824], [-77.39198014331409, 34.56721244205272], [-77.39199092478006, 34.56712179006397], [-77.39203292870546, 34.566914592787874], [-77.39204599708901, 34.566778372620554], [-77.39207031795692, 34.56652486835615], [-77.39208730049889, 34.56634784446114], [-77.3922523217257, 34.56595339794349], [-77.39228487499973, 34.56587591929713], [-77.39242046018182, 34.56545064563389], [-77.39253837219972, 34.565263326609355], [-77.39269646363834, 34.56474804811713], [-77.39274337324548, 34.56460546108846], [-77.3927623327212, 34.56455218910221], [-77.39282309697923, 34.56383063581775], [-77.39286256439755, 34.56368858845923], [-77.39288700330745, 34.563479879661756], [-77.39291742952972, 34.563256103297704], [-77.39291371148627, 34.563065981056276], [-77.3929528122042, 34.562826428267044], [-77.392963519651, 34.562687856364654], [-77.3929945575981, 34.562608120846534], [-77.39294306280868, 34.56256235547631], [-77.39276271748997, 34.56242927997772], [-77.39269676749228, 34.56233628712215], [-77.3925238708429, 34.562225521123025], [-77.39228644560802, 34.56207341311886], [-77.39190896508464, 34.561831577033836], [-77.39149069531582, 34.561789862147194], [-77.39112110261914, 34.561802260535245], [-77.39087028328365, 34.56200739585341], [-77.39049854979856, 34.56233130836222], [-77.39045903944032, 34.56305035071318], [-77.39048847641031, 34.563181900481226], [-77.39082034533027, 34.56345791326833], [-77.39084126661578, 34.56355558487675], [-77.3907769291071, 34.56361878755061], [-77.39062030116787, 34.56370232469182], [-77.39033298836713, 34.56339687942136], [-77.38992665353825, 34.564112072555105], [-77.3896985868203, 34.56431053839447], [-77.38954488786764, 34.56473248003829], [-77.38948487351759, 34.564960289098906], [-77.38945164101216, 34.565029721127445], [-77.3890352209167, 34.565389752641764], [-77.38894315603193, 34.565751373110004], [-77.38888055794382, 34.565961221713806], [-77.38893119059341, 34.566141915094434], [-77.38890786493369, 34.5666434709962], [-77.3889456293151, 34.56680097420369], [-77.38881806317923, 34.566885585650326], [-77.38875660903486, 34.566968506929086], [-77.38862960983866, 34.56713428237564], [-77.38845424422176, 34.56729640883308], [-77.38840722680075, 34.56735130093916], [-77.38836257961559, 34.56737427412714], [-77.38829131162579, 34.56739670626439], [-77.38796859996494, 34.56748206686457], [-77.38765322916737, 34.567496621945565], [-77.38737299508263, 34.567669606216185], [-77.38718062508407, 34.567762881973216], [-77.38691744380256, 34.56794259368105], [-77.38653895807097, 34.56815487363354], [-77.38639260727064, 34.56823219750432], [-77.38602172134888, 34.56852125567801], [-77.38599858105175, 34.568535341355926], [-77.38597068769899, 34.56853373986925], [-77.38560459897411, 34.568612130425755], [-77.38527712954303, 34.568532038360246], [-77.38521066417391, 34.568461729953135], [-77.38501693902818, 34.568216631435774], [-77.38497859049275, 34.56804778896215], [-77.38490140276885, 34.56747521050013], [-77.38495856153887, 34.567375915115505], [-77.38515502701327, 34.566862692696176], [-77.385233935171, 34.5664870765044], [-77.3853939167124, 34.56584254912248], [-77.38533391178049, 34.56562352751326], [-77.38529837345659, 34.56529788163233], [-77.3856053056999, 34.5652233894501], [-77.3859047286264, 34.565218525716915], [-77.38639324728767, 34.56502123071755], [-77.38673007038643, 34.564936056119606], [-77.3869433942839, 34.56479858698344], [-77.38718120838098, 34.56469538069916], [-77.38726064561087, 34.56458214951255], [-77.38726797158617, 34.56449550480207], [-77.387260348047, 34.564411371287235], [-77.38725741133024, 34.56372981934124], [-77.38732878888395, 34.563637598558735], [-77.38768341912086, 34.563278283276006], [-77.3876584657744, 34.563076027339235], [-77.38757546084031, 34.56306714698738], [-77.3874765786753, 34.56287375949265], [-77.3872374032144, 34.5628016417524], [-77.38720323620855, 34.562783223904596], [-77.38718157489711, 34.562785882056055], [-77.38715261946078, 34.562782660912944], [-77.38698461345177, 34.56274504857748], [-77.38686327800015, 34.56277407269586], [-77.38678763884167, 34.562771827492746], [-77.3864399195607, 34.56286680942547], [-77.38639367989525, 34.56287131751596], [-77.38634625316084, 34.562879037769875], [-77.38605346907292, 34.56297236983142], [-77.38599971292514, 34.563004677488934], [-77.3859888408157, 34.56299340905126], [-77.38569563357001, 34.56312084201324], [-77.38560571893606, 34.56325980262673], [-77.38525878944235, 34.56351152588609], [-77.385254613691, 34.563558363386235], [-77.38502592082763, 34.563969669578654], [-77.38481763318696, 34.56418101614575], [-77.38476233493355, 34.56406729907427], [-77.38466782405173, 34.5640213027514], [-77.38430761930162, 34.56377385862247], [-77.384029815057, 34.56385987066762], [-77.3837774053815, 34.56387765842831], [-77.38324194157795, 34.563794477377925], [-77.38296655024669, 34.563714274547436], [-77.3827936483201, 34.563442386050994], [-77.38257870826382, 34.5633391502694], [-77.38245418275466, 34.56327169777373], [-77.38217461752615, 34.5631070658702], [-77.38211292773074, 34.56305923446085], [-77.38206030018513, 34.563037239521464], [-77.38183154734168, 34.56290995324886], [-77.38166641413088, 34.56282467738998], [-77.38162941488645, 34.56280098136117], [-77.38158605109054, 34.56276735075523], [-77.3814424542205, 34.562604919355806], [-77.38141586053578, 34.56252176854858], [-77.38142841115732, 34.5623655113625], [-77.38154377728563, 34.56205670077666], [-77.38157626049701, 34.56191963218939], [-77.38156549635187, 34.56181213667023], [-77.38145070081336, 34.56132150979854], [-77.38123543643214, 34.56111963580845], [-77.38107012523952, 34.56093752345466], [-77.38087909765582, 34.56072810386148], [-77.38064506048549, 34.56060788654246], [-77.38018052498083, 34.56042257954847], [-77.38038608206075, 34.56007536765185], [-77.38009137318382, 34.5602398835021], [-77.37997324532434, 34.56032516946401], [-77.37930357905104, 34.56002412672382], [-77.3790830522971, 34.55996934451007], [-77.37880742094782, 34.5600857823711], [-77.37851562356852, 34.5603617249984], [-77.37836773486153, 34.56052454567076], [-77.37830028495388, 34.560693605257256], [-77.37801189960246, 34.56104162456262], [-77.37772745489049, 34.56137186668106], [-77.37762112697921, 34.56152607657113], [-77.37749326913313, 34.5616590486357], [-77.37733339691276, 34.56176966969471], [-77.3770747210661, 34.56186518040364], [-77.37693943406038, 34.561854741996115], [-77.37685023693301, 34.56184785949586], [-77.37654549628446, 34.56185887808821], [-77.37648946744085, 34.5618641033012], [-77.37619652026174, 34.561894407847824], [-77.37615154768238, 34.56189592943264], [-77.37611130248705, 34.56190159257733], [-77.37588784879587, 34.561890423904515], [-77.37575761342273, 34.56188824799766], [-77.3754284200767, 34.56188685679146], [-77.37536367671999, 34.56188787709803], [-77.37528067459478, 34.56188847009262], [-77.3749697412494, 34.561883655614665], [-77.37481713410241, 34.56188025239604], [-77.37474082428967, 34.5618778745618], [-77.37457581713156, 34.56184635011027], [-77.37445663318515, 34.56180057881697], [-77.37429021626052, 34.561696093603175], [-77.37422876582345, 34.56165449032556], [-77.37418198064657, 34.561558874729215], [-77.37393953970984, 34.56132206499737], [-77.37393799491582, 34.56116083087471], [-77.37378839371459, 34.56057499444262], [-77.37374206478889, 34.56050139902349], [-77.37373646802523, 34.56044619293742], [-77.37378843502051, 34.56045852560385], [-77.3739284537616, 34.56032368524614], [-77.37418248884262, 34.56010607057726], [-77.37421212135017, 34.560041015008004], [-77.37457650279649, 34.55985945765737], [-77.37472685430649, 34.55967233987148], [-77.37497054698223, 34.559517030432154], [-77.37503952629325, 34.5594653071797], [-77.37524465213964, 34.55930653005548], [-77.37536457560977, 34.559211412295426], [-77.37566277379439, 34.55895092727121], [-77.37571568936383, 34.558897048528785], [-77.37575864798697, 34.55876541170795], [-77.3758687527318, 34.558496680196946], [-77.37575881885174, 34.55825165763824], [-77.37571139163661, 34.558145951043045], [-77.37568463225956, 34.55809865332623], [-77.37557465333448, 34.55791589003729], [-77.37545980116589, 34.55770649335301], [-77.37543549542822, 34.5576341325514], [-77.3753651370278, 34.55754742156654], [-77.3751831996691, 34.55732179400344], [-77.37523909811273, 34.55702521145788], [-77.37525876989666, 34.556886341389855], [-77.37528209102629, 34.55679319792441], [-77.37536541310745, 34.55673134265866], [-77.37546595114512, 34.55674811613928], [-77.3757593036316, 34.55679705781838], [-77.37581445085527, 34.55680625818535], [-77.3760773503672, 34.55685011844358], [-77.37615319716541, 34.5568554584178], [-77.37629054349269, 34.556885685008595], [-77.37672998375545, 34.556052919067135], [-77.37688217487113, 34.55580324756933], [-77.37682338270812, 34.555684521010996], [-77.3763780340337, 34.554785180274024], [-77.3760972410511, 34.55421812644663], [-77.37536676914722, 34.552742924635105], [-77.37532458511669, 34.552676730207445], [-77.37527643157671, 34.55263817817227], [-77.3738060123188, 34.552198078122004], [-77.37350851422126, 34.55271476573185], [-77.37339662846068, 34.55290907999417], [-77.37274019682576, 34.55356942516181], [-77.37248462429788, 34.553889622333216], [-77.37221509001526, 34.55413455123136], [-77.37196843907938, 34.55422981074235], [-77.371821124711, 34.55430260999435], [-77.37174230822184, 34.55433620751662], [-77.37142715249706, 34.554484489682714], [-77.37097402668024, 34.554595624967945], [-77.37063930004989, 34.55460268887768], [-77.37025129655785, 34.55464234943187], [-77.3702415552379, 34.55464150003082], [-77.3698516093641, 34.554316311978866], [-77.36982587197392, 34.55430045400836], [-77.36979446119932, 34.5542772320351], [-77.3690639630162, 34.553935994028066], [-77.36890608748757, 34.55372635880431], [-77.36873148660908, 34.55358125577789], [-77.36867147532112, 34.553534434574715], [-77.3685275642897, 34.55345664780812], [-77.3682831319489, 34.55334624255826], [-77.36811670973663, 34.55328481440131], [-77.36797349063158, 34.55320079997533], [-77.36770469797736, 34.5528720986251], [-77.36763977937817, 34.55275922096775], [-77.36762239932888, 34.552693352132145], [-77.36751418945465, 34.5526302506007], [-77.36698037458167, 34.55236455782426], [-77.36689006991875, 34.55228203934531], [-77.36654052932332, 34.55230582106387], [-77.36594976064387, 34.55236380336069], [-77.36524552226682, 34.55266931490295], [-77.36515751549078, 34.552670332696124], [-77.3650960656611, 34.55267424119611], [-77.36476338674618, 34.552736130647716], [-77.3644317251783, 34.55273166560346], [-77.3643812197273, 34.55273246929801], [-77.36437086687941, 34.55273141372458], [-77.36434734826526, 34.55272912050015], [-77.36381843107712, 34.552675614303105], [-77.36358738053809, 34.55265394788068], [-77.3628391314535, 34.552492154888654], [-77.36280595897452, 34.552486146169485], [-77.36279604110194, 34.552483807862195], [-77.36278143114966, 34.55247969422086], [-77.36233763522294, 34.552347952154385], [-77.36229911395289, 34.552304329490795], [-77.36225794074544, 34.552209420678125], [-77.36224744895269, 34.55218935759691], [-77.36225087362705, 34.552172227083084], [-77.36225766687511, 34.55206547359647], [-77.36229395879757, 34.551898235356944], [-77.36232402194892, 34.551744840148395], [-77.36242276049268, 34.55155204806407], [-77.36245331838785, 34.55131101229111], [-77.3625608392463, 34.55104251320154], [-77.3627385484708, 34.550596228677264], [-77.36274786159638, 34.55052592952489], [-77.36277005724345, 34.55047164753427], [-77.36285766835661, 34.5502227031867], [-77.36293376942982, 34.550009505596655], [-77.36286437076146, 34.54992932555937], [-77.36270231297276, 34.54965810900348], [-77.36266656707862, 34.549558337644655], [-77.36237784237454, 34.54942090125373], [-77.3622437298858, 34.549222139331825], [-77.36218387355237, 34.54913820412633], [-77.36217122346333, 34.54909450281309], [-77.36213409951672, 34.548672075691755], [-77.36216093942406, 34.54865185746231], [-77.36213147326588, 34.548641817240124], [-77.36211259450013, 34.54846560941944], [-77.36208535423314, 34.54819395187383], [-77.3620837920213, 34.54817331849943], [-77.36208395301125, 34.54815095017596], [-77.36212248430687, 34.548032896864676], [-77.36224428506783, 34.54773222387429], [-77.36255791502558, 34.54761538649006], [-77.36279373499576, 34.54750280649481], [-77.36292253803961, 34.547383254828304], [-77.36309444526123, 34.54715237626377], [-77.36315575368107, 34.54703963495568], [-77.36332602679528, 34.54690666572246], [-77.36342367169132, 34.5468158199533], [-77.36349057681187, 34.546746586344696], [-77.36352509651849, 34.546621535579874], [-77.36358988835795, 34.546487457441174], [-77.36361133641252, 34.546410393921605], [-77.36367739677078, 34.5462300284637], [-77.36373695275111, 34.54610421146744], [-77.36384682313505, 34.54613664807721], [-77.36387073859632, 34.546202181087395], [-77.36395890205935, 34.546293207717255], [-77.36403147307526, 34.54642385485895], [-77.36415478396555, 34.546627729428536], [-77.36417110524818, 34.546648568995955], [-77.36425186903212, 34.54672201109608], [-77.36438710117142, 34.5468622833393], [-77.36444269151635, 34.546892601015884], [-77.36450349739441, 34.54692113839286], [-77.36469921374311, 34.54693963946537], [-77.36489552736649, 34.54694612272402], [-77.36506907113963, 34.54690129454826], [-77.36529028708028, 34.54685148172728], [-77.36542961545183, 34.54679824706523], [-77.36568569725523, 34.546728284579274], [-77.36579056947369, 34.54666012510839], [-77.3657807549764, 34.54647235036213], [-77.36608931605754, 34.546245141335426], [-77.36618149040468, 34.54617058093811], [-77.36672711283015, 34.54603556160894], [-77.3668850074423, 34.545784674811145], [-77.3669473150254, 34.54554970251991], [-77.36767606057198, 34.54552733346988], [-77.36864643365303, 34.545382830945286], [-77.36925315182039, 34.545232192599], [-77.36994352329539, 34.54502038516101], [-77.37020135242332, 34.54494774289688], [-77.3708347267808, 34.54473942527759], [-77.37121161376177, 34.54489979747445], [-77.3714103664056, 34.54499816028546], [-77.37138803703822, 34.54522634037514], [-77.37130162296742, 34.54537648257561], [-77.37127812372994, 34.54566957603811], [-77.37127936569348, 34.54606293671298], [-77.37162080551974, 34.54630979761896], [-77.37235827915418, 34.5467980611053], [-77.37249647185838, 34.546262197052855], [-77.37255549893706, 34.546175108927784], [-77.37286568786143, 34.54582773447452], [-77.37302802511115, 34.54561735824109], [-77.37303126983832, 34.545528932527816], [-77.37317335357578, 34.54548317501519], [-77.37355257315072, 34.54530776048551], [-77.37357016591501, 34.54529737729738], [-77.373574844515, 34.54529663391577], [-77.37396320936209, 34.545277420855186], [-77.37429550184618, 34.54522816700339], [-77.37439912878985, 34.545200868843686], [-77.37445285947548, 34.54510904314392], [-77.37459018724712, 34.544902567112814], [-77.37462117844925, 34.5448121806484], [-77.37474945483254, 34.5444016911529], [-77.374747119988, 34.54439029209687], [-77.37475458414384, 34.54438037777247], [-77.37477016217443, 34.544318486842556], [-77.37480987275292, 34.54415892461098], [-77.37483764758557, 34.544132416013895], [-77.37494284793593, 34.54397525754752], [-77.37507537758154, 34.54385332311619], [-77.37524771326514, 34.543626851453155], [-77.37558555687029, 34.542986797873795], [-77.37569734614992, 34.54285217294947], [-77.37573067522982, 34.54277955797742], [-77.37579690646288, 34.54264306967173], [-77.37592072357977, 34.54246413480066], [-77.37620899911954, 34.54233108567557], [-77.37638760134686, 34.54224244763621], [-77.37647025813462, 34.54223473626297], [-77.37704481233843, 34.54218113288293], [-77.37717391370529, 34.54219119119535], [-77.37755649922889, 34.54202671611261], [-77.37742275872804, 34.54189499164473], [-77.37747365122749, 34.54172940191994], [-77.37780938812756, 34.541500602276166], [-77.3775219237354, 34.541337081228825], [-77.37721217190442, 34.54109703465062], [-77.37719920698963, 34.54107585822745], [-77.37709324466188, 34.54069597607258], [-77.37681804465785, 34.5406641888366], [-77.3767526326846, 34.54038533910505], [-77.37669249845393, 34.54019262772566], [-77.37684711146196, 34.5399166662565], [-77.37691346308648, 34.539671117268966], [-77.3771316955646, 34.53957634554132], [-77.37723434282277, 34.539526524271174], [-77.37755795903176, 34.5392869952355], [-77.37770881412128, 34.53926425914663], [-77.378022831184, 34.53937811119897], [-77.37835949128117, 34.5394626624403], [-77.37851877060919, 34.53961668272365], [-77.3788026882088, 34.539610473917826], [-77.37980116332614, 34.53961139785221], [-77.38037554704428, 34.53949513615892], [-77.38076548904951, 34.53935702838216], [-77.38116682121537, 34.53922329263418], [-77.38136281367204, 34.53915086980855], [-77.38170180925442, 34.53913798081129], [-77.38194922795158, 34.53934319188511], [-77.38202268099492, 34.53942417005522], [-77.3820676982029, 34.53949368925926], [-77.38219909651963, 34.53972713976044], [-77.38231111217266, 34.53987224103473], [-77.38271755064909, 34.54008602139655], [-77.38290501244997, 34.54015832862001], [-77.38311471218259, 34.5402460247104], [-77.38349513405068, 34.5404197386383], [-77.38364416334569, 34.54056435458195], [-77.38371552499852, 34.54064904737596], [-77.38391236277398, 34.54084413016544], [-77.38392651306728, 34.54089434942293], [-77.38395865957978, 34.54110364816354], [-77.38366193387476, 34.54151661114544], [-77.38357829775403, 34.54164816174539], [-77.3835368773111, 34.5416981901727], [-77.38346208123582, 34.541882081584234], [-77.38335512871167, 34.5421064671772], [-77.38329748071583, 34.542178318734884], [-77.38314765624563, 34.54250223420203], [-77.38298452842346, 34.54271310842471], [-77.38286369556964, 34.54286080626997], [-77.38264772524789, 34.543174006459246], [-77.38260426287225, 34.5432313064972], [-77.38256690121901, 34.54331145813603], [-77.3824718372887, 34.54376636027882], [-77.38236058112372, 34.544106132989114], [-77.38227746454501, 34.54428404869158], [-77.38207934299999, 34.544646317934486], [-77.38213749469875, 34.544793892518626], [-77.38251874223236, 34.54517638036655], [-77.38256398884158, 34.54522205862572], [-77.38258140815496, 34.545231885676884], [-77.38260074086244, 34.545251903968584], [-77.38279027791481, 34.54555659333268], [-77.3829945199484, 34.54564964049563], [-77.38317075491041, 34.545751368502586], [-77.38337263124127, 34.54583966826322], [-77.38368906463567, 34.54574549902222], [-77.38416285967975, 34.54561621230361], [-77.38464488382462, 34.54560092630117], [-77.38494972768603, 34.545541356133825], [-77.38521836474126, 34.54549584314833], [-77.38573597391768, 34.54549396262374], [-77.38601850781077, 34.5455265642811], [-77.38651910687976, 34.545584485665586], [-77.38694839896465, 34.545343780758245], [-77.38710085819247, 34.545057456341624], [-77.38720910511594, 34.54462503175689], [-77.38712576767361, 34.54443672384023], [-77.38733050779534, 34.54442176977753], [-77.3874337058933, 34.54445495874593], [-77.38765288656978, 34.54448817093892], [-77.38811333377892, 34.544525498213076], [-77.38876674869347, 34.54441127803574], [-77.38890193020954, 34.54437324237994], [-77.38898658417892, 34.544348240100035], [-77.38911511237865, 34.544277257212116], [-77.38946428710635, 34.54408387043598], [-77.38969709333847, 34.543929336116456], [-77.38995863029044, 34.54382759063708], [-77.39048917785492, 34.5436217621353], [-77.39067290985886, 34.54356287092418], [-77.39109048239429, 34.54338464139059], [-77.39081357104048, 34.5428612789175], [-77.39050594331756, 34.542877213832384], [-77.3901291059567, 34.54289673189127], [-77.39008316357388, 34.54289485807941], [-77.3897211449752, 34.54286165576118], [-77.38950564841872, 34.54288597829297], [-77.38942018930645, 34.54276425188638], [-77.3889428354475, 34.542558167873], [-77.38871987329036, 34.54251526166603], [-77.38816738498836, 34.54212810526889], [-77.38802490460691, 34.54207578147438], [-77.38796319450546, 34.54199508678012], [-77.38802296558924, 34.541893091919256], [-77.38807638115358, 34.54148909621923], [-77.38810321082543, 34.541435463487595], [-77.38801632028623, 34.54111653302232], [-77.38800635104545, 34.541009532439745], [-77.38798933811677, 34.54088344153392], [-77.38796380956883, 34.54067342307692], [-77.38789613051087, 34.54053576524296], [-77.38793044915406, 34.54021581045604], [-77.38787454461945, 34.54004921364867], [-77.38795373907305, 34.539872831108596], [-77.38798596535813, 34.539690896424595], [-77.38795775624183, 34.539547545772855], [-77.38818654261595, 34.53905612858257], [-77.38819598369844, 34.53902351772124], [-77.3882074392593, 34.53900290051509], [-77.38823951558295, 34.538928888396356], [-77.38842220271594, 34.538610686140856], [-77.38864223547743, 34.53847801455076], [-77.38865033432512, 34.53846831270567], [-77.38879308426526, 34.53829438940102], [-77.38904455353833, 34.5380447795373], [-77.38925215523102, 34.53789183119825], [-77.38956390493996, 34.537675926838695], [-77.3898421769726, 34.537489043480534], [-77.39020191448344, 34.53726515109631], [-77.39041804215927, 34.53709797944648], [-77.39051733565033, 34.536808113330345], [-77.39041683681901, 34.536744478288945], [-77.39039859435057, 34.53641515566914], [-77.39020564731048, 34.53600141021428], [-77.3906653035575, 34.53580030400699], [-77.39104339421405, 34.535926818608274], [-77.39145146124604, 34.53575250960558], [-77.3916483680141, 34.535709678158966], [-77.39223642713038, 34.535757625215695], [-77.39248887900965, 34.535797839195], [-77.39295145061902, 34.535846671653175], [-77.39301943222179, 34.53584990825333], [-77.39317960783288, 34.535757587570515], [-77.39352770691218, 34.53563023873957], [-77.39349271350275, 34.53552044456099], [-77.39342836752802, 34.53533063350763], [-77.39330094132805, 34.53518279558636], [-77.39335564331309, 34.53504993980113], [-77.39333786793125, 34.5348540241192], [-77.39333874015014, 34.534671271509986], [-77.39329504682243, 34.53461536868327], [-77.39317586782575, 34.534465889140705], [-77.39343405626622, 34.53435047536503], [-77.39328987345657, 34.53422538668892], [-77.3930790047622, 34.5339120397587], [-77.39332725452786, 34.533546231450174], [-77.39348997080097, 34.533363068261814], [-77.39433418875787, 34.53304259102311], [-77.39465583686813, 34.53290214121267], [-77.39530415249762, 34.53252097265272], [-77.39545071842777, 34.532464577319004], [-77.3956759534437, 34.532418106241416], [-77.39623984479303, 34.53228294277086], [-77.39653445021743, 34.532125935534225], [-77.39701296987609, 34.53187531188216], [-77.39702711736005, 34.531868861912606], [-77.39703436229048, 34.53186093882334], [-77.39751012675535, 34.531607090099634], [-77.39782871346647, 34.531445977860656], [-77.3982951847747, 34.53139992121562], [-77.39861201950029, 34.53152317058044], [-77.39877068902203, 34.531621606576394], [-77.3990158047051, 34.53181988435938], [-77.39901825367487, 34.53183070799026], [-77.39908605914424, 34.53187671362376], [-77.39931109444936, 34.532033272859294], [-77.39938521685397, 34.532051361207905], [-77.39942661983316, 34.53204229540318], [-77.39977932359893, 34.5319806076974], [-77.39981631352791, 34.531960343950274], [-77.39999642883407, 34.531822720345545], [-77.40006490857164, 34.53150809114437], [-77.40003887704894, 34.53143854310734], [-77.3999866734251, 34.531321362991186], [-77.39993821422932, 34.5311211430083], [-77.3998161988012, 34.530981014781645], [-77.39993893919063, 34.53080153935083], [-77.40062625283846, 34.53037440245828], [-77.40082182639863, 34.530237572853494], [-77.40087782032316, 34.52984841362834], [-77.40100908439535, 34.52965004404578], [-77.4011512246527, 34.52940450294488], [-77.40128946908176, 34.52929931142775], [-77.40157603393999, 34.52891456364311], [-77.40171103289714, 34.528748776329884], [-77.4015721593832, 34.52861593917388], [-77.40182173949083, 34.52841564513084], [-77.40195601346761, 34.52822373337884], [-77.4018269993207, 34.52818071351402], [-77.40133223017916, 34.52813340646752], [-77.40104282745288, 34.528143527948345], [-77.4008209595847, 34.528250702184984], [-77.40025316180423, 34.528351528735776], [-77.3999438778103, 34.5285142202973], [-77.39963564883803, 34.528667614586], [-77.39945969141247, 34.52872906402859], [-77.39916973269894, 34.528805768475536], [-77.39828785864927, 34.52900551879601], [-77.3978793683979, 34.529188165257224], [-77.3971117432925, 34.529398902436526], [-77.3970776416104, 34.52941030983357], [-77.39629696053976, 34.52973927242785], [-77.39610299374732, 34.529929639803754], [-77.39594025431128, 34.530071450434036], [-77.39549625567109, 34.530437400589506], [-77.3953332141493, 34.53054858794796], [-77.39470524926271, 34.530703367638374], [-77.39405909087267, 34.53083260002989], [-77.39392784522596, 34.530858473163704], [-77.39391668624755, 34.53086041346114], [-77.39390234588225, 34.530864112558795], [-77.39324174676659, 34.531021476770725], [-77.39312720009684, 34.53105835312175], [-77.3929840980163, 34.531076726168365], [-77.3927619005495, 34.53101978592057], [-77.39273570669681, 34.53101280050305], [-77.39252709460911, 34.53093997685658], [-77.39234591266046, 34.53089173886534], [-77.39197509589188, 34.530875177911064], [-77.3919359495427, 34.53088312721253], [-77.39155463959803, 34.53116884413754], [-77.3915030438205, 34.531201425894075], [-77.39113913705486, 34.5314889244116], [-77.39106054519638, 34.5315678577545], [-77.39081101724508, 34.53179093951835], [-77.39075377827831, 34.53187147156876], [-77.3904657874507, 34.53201831725519], [-77.39011342236158, 34.53198340660706], [-77.38996743616819, 34.53192903122667], [-77.3899115008494, 34.53195523690077], [-77.38917226398362, 34.53237830289635], [-77.3889786489152, 34.532424849728294], [-77.38893251033407, 34.532551616599946], [-77.38891384250952, 34.53271082188598], [-77.38880301988614, 34.532836088601584], [-77.38876870286263, 34.53286784140243], [-77.38863951469176, 34.53300489857246], [-77.3883767666279, 34.53311757241116], [-77.38837052139385, 34.53311858286693], [-77.38827981445084, 34.533078295946126], [-77.38817137698167, 34.53303168409846], [-77.38816079903654, 34.53302041668613], [-77.38806835427951, 34.53292111049781], [-77.38805940747066, 34.532875045362616], [-77.38773235332502, 34.53272474631148], [-77.38770490585347, 34.532660647609696], [-77.38725179328529, 34.532578343385126], [-77.38681252758333, 34.53258136052992], [-77.38640698834587, 34.532677844084425], [-77.38633999679298, 34.532435919877955], [-77.38524833907307, 34.53231923845154], [-77.38429843566907, 34.53234319274497], [-77.38367613406643, 34.532412124555144], [-77.38298125804451, 34.532374949484264], [-77.3828917619519, 34.53238196117528], [-77.38260181980314, 34.53230343676579], [-77.38211147658863, 34.532171159777775], [-77.38199846917404, 34.53215347056618], [-77.38181484193095, 34.532109214359586], [-77.38132936925908, 34.53204101718582], [-77.38085320096624, 34.53205502128977], [-77.38054335443502, 34.5320835427065], [-77.38007491452709, 34.532067697094746], [-77.37918257073538, 34.53235437300438], [-77.37896919753712, 34.53226230663263], [-77.3788386442177, 34.53204868821463], [-77.37886491851228, 34.531629229787924], [-77.37885525455935, 34.531556633043614], [-77.37863066867754, 34.5308409324352], [-77.37865310639194, 34.530606457302625], [-77.37860797100237, 34.53036077674675], [-77.37886901633493, 34.5296947873078], [-77.37893859041654, 34.52958597843431], [-77.37898000438004, 34.529548387816725], [-77.3790328770127, 34.52945219979861], [-77.37940535559633, 34.529288656066925], [-77.37994925824641, 34.529026511850745], [-77.38061167635028, 34.52906607408948], [-77.38130518599674, 34.528815693501855], [-77.38155269381642, 34.528813115793845], [-77.38218619682672, 34.5288683649443], [-77.38254312689357, 34.528798205255185], [-77.38258047332405, 34.52879029784521], [-77.38284591084039, 34.528532892192395], [-77.38286075034279, 34.52845603030988], [-77.38298915280919, 34.528075297113844], [-77.38301665936004, 34.528018605211116], [-77.38309528619493, 34.52757677321329], [-77.38308792983118, 34.52751866406781], [-77.38313257409693, 34.52743183997491], [-77.38323476119507, 34.527007823417215], [-77.38351221130398, 34.5267862339115], [-77.3838101507254, 34.52648342484708], [-77.38420402196554, 34.52612940446221], [-77.38464258488604, 34.525825451755836], [-77.3849847213497, 34.525515810309145], [-77.38540657584296, 34.52531328611], [-77.38588391139022, 34.524959855308005], [-77.38687255702102, 34.524599385632634], [-77.38699267330041, 34.52459875752513], [-77.38720061935689, 34.52460697334664], [-77.387774563098, 34.52473568401938], [-77.38798986667258, 34.52471888199838], [-77.38855930806619, 34.52474608735502], [-77.39013525846678, 34.52405967473466], [-77.3901448196335, 34.52405575190291], [-77.39015708860329, 34.52405830529938], [-77.39016234759085, 34.52404985718058], [-77.39172786445417, 34.523473770522344], [-77.3921261086973, 34.52302935679489], [-77.39251207921083, 34.5227314705819], [-77.39283698375206, 34.522381802699115], [-77.39332829735866, 34.522117707584215], [-77.39387314993446, 34.52219409506709], [-77.39433444371852, 34.522116788250074], [-77.3949075849726, 34.52170016703666], [-77.39559250451953, 34.52130757374172], [-77.3961447902239, 34.52101065925052], [-77.3965019003428, 34.52061264376364], [-77.39783227599762, 34.52000494146373], [-77.39801656643012, 34.519934406207625], [-77.39808736108697, 34.519917870448054], [-77.39818865481546, 34.51989068691327], [-77.3982118676584, 34.51995014684202], [-77.39916303506638, 34.5201183252239], [-77.39945235836977, 34.52026074220496], [-77.39934549679084, 34.52058064658154], [-77.39939701512134, 34.52075840429724], [-77.39931556324059, 34.520968603571006], [-77.39936715506133, 34.5215844163178], [-77.39928980479476, 34.52175322528494], [-77.39961334095342, 34.521875075963344], [-77.399770221372, 34.52178041449257], [-77.4011575289258, 34.521504793179844], [-77.40119183773734, 34.52149093690393], [-77.40122108822436, 34.52149267915883], [-77.4012976474642, 34.52146335332058], [-77.40252044644161, 34.5211312618844], [-77.40277462436046, 34.52091440512835], [-77.40322347994497, 34.52047988641131], [-77.40401876608581, 34.52009109702612], [-77.40401777281029, 34.519872885802044], [-77.4043713957048, 34.519711457013486], [-77.40503813083768, 34.51937580118724], [-77.40595307687326, 34.519181791897864], [-77.40681466879963, 34.519150248131936], [-77.40752730677839, 34.518984928197305], [-77.40822306662074, 34.51904895636079], [-77.40838925870776, 34.51901875392286], [-77.40910422173744, 34.518667284244216], [-77.40972831699024, 34.51828711764658], [-77.4102820929335, 34.51795265702417], [-77.41069402695055, 34.517770665094595], [-77.41131855074502, 34.517463385993004], [-77.4114887564977, 34.51732953005811], [-77.41177120362295, 34.51732615151503], [-77.41227292117705, 34.51736243206041], [-77.41267498937974, 34.517129667831725], [-77.41306921198395, 34.516825101448134], [-77.41351169972702, 34.51654328287556], [-77.41385723426541, 34.51574527237365], [-77.41385936342517, 34.515731574223594], [-77.41386772160594, 34.51572321272672], [-77.41387932563532, 34.51571702835944], [-77.41390984648453, 34.51570539938137], [-77.41530854205789, 34.515430510029674], [-77.41545545042422, 34.5154307984788], [-77.4165905958721, 34.515336898174816], [-77.41690724444715, 34.51536563664112], [-77.41702682426245, 34.51535789258392], [-77.41709198440213, 34.51530435173528], [-77.41805582024412, 34.51546108950972], [-77.41859482434815, 34.51543679906875], [-77.41891316046762, 34.51549091356296], [-77.41921625662161, 34.51554754490562], [-77.41937538898756, 34.5156311296485], [-77.41974591607061, 34.515860232927324], [-77.4198378975156, 34.51604237207283], [-77.4201453074161, 34.516305704999226], [-77.42043923024211, 34.516552592653085], [-77.42043446026713, 34.51674007705833], [-77.420527694156, 34.51697442007048], [-77.4206271635343, 34.51737615955168], [-77.42061780727032, 34.5176929448068], [-77.42081119587438, 34.51810532597314], [-77.4208284942564, 34.518189572954235], [-77.42084472299948, 34.51863951526005], [-77.42087123109995, 34.51912319360605], [-77.4208708320567, 34.51912741693916], [-77.42051930860332, 34.51966592371796], [-77.42006068397933, 34.52012193019938], [-77.41949863513406, 34.520446669099705], [-77.41847349085303, 34.52090388743492], [-77.41837472608412, 34.52095525909888], [-77.41738480218531, 34.52140545006898], [-77.41688747124877, 34.5216316181641], [-77.41680411385218, 34.52167192287214], [-77.41633853730508, 34.521890013486036], [-77.41622433532451, 34.522000546508394], [-77.4161454880045, 34.52204445885436], [-77.41609093664005, 34.52215362149499], [-77.41604320860804, 34.52224302569514], [-77.41602989538777, 34.522273485006046], [-77.41608570393863, 34.522389108177364], [-77.4164582341621, 34.52246777944], [-77.41648863259091, 34.52245953688674], [-77.41687281545141, 34.52229144833155], [-77.4170345096169, 34.52222830847104], [-77.41729957253672, 34.52209000461944], [-77.41804208160063, 34.521724932433266], [-77.4184706759601, 34.52103072528133], [-77.4191179349053, 34.5214180491491], [-77.42003938336649, 34.521082535084545], [-77.42047815424485, 34.52092276586079], [-77.42106143394518, 34.52091105847635], [-77.42160189553917, 34.52141398354005], [-77.42163715335067, 34.521440721080396], [-77.42164712326259, 34.52146164552962], [-77.42169842915209, 34.521515860293434], [-77.42219346516649, 34.52198509389751], [-77.42247180599115, 34.52232180423027], [-77.42271305973118, 34.522557299321846], [-77.42313614424455, 34.52302271754205], [-77.42323847719328, 34.5231250955985], [-77.42327877416439, 34.523184524577175], [-77.42334241877823, 34.52330794608322], [-77.42358946681509, 34.5236292964109], [-77.42364946767994, 34.52377962263367], [-77.42399105114941, 34.52406092607261], [-77.42370088617638, 34.52447524201129], [-77.42370054682587, 34.524592612430425], [-77.42360354310291, 34.52478046823223], [-77.42353633276764, 34.5251060386167], [-77.42339513164406, 34.52531973561994], [-77.42326987489722, 34.52551638481819], [-77.42320147884558, 34.52564413247576], [-77.42307135705217, 34.525949522576866], [-77.42300049072841, 34.526121033704115], [-77.42297386381695, 34.52616672239789], [-77.42226123596102, 34.52675485879996], [-77.42225951874474, 34.52675967003919], [-77.42225346436858, 34.52676975045969], [-77.42190238989156, 34.5273009776202], [-77.42180968122551, 34.527528502981895], [-77.42179559968933, 34.52759977521184], [-77.42176344049771, 34.52781074797212], [-77.42172338317506, 34.528137517312906], [-77.42171887772446, 34.52830687508492], [-77.42171439737984, 34.528475289758106], [-77.4216591332017, 34.52880519654904], [-77.4214275876401, 34.52928184318607], [-77.42139555100863, 34.52931343302962], [-77.42133464115538, 34.52934178432592], [-77.42135505294536, 34.5293826869104], [-77.42108169992467, 34.530357713428565], [-77.4210395021567, 34.5305878483838], [-77.42096278653818, 34.53086458691544], [-77.4213851466957, 34.531197615364384], [-77.42147841615606, 34.53122123893828], [-77.42164058114568, 34.53125630575584], [-77.42294646029217, 34.53159203980294], [-77.4235171115874, 34.53160824050404], [-77.4252891312218, 34.53120550946525], [-77.42546443019107, 34.53070354697758], [-77.42581509435453, 34.53046802052509], [-77.42600676111645, 34.530135453880725], [-77.42603865219485, 34.530080119383], [-77.42612681590134, 34.52977015979536], [-77.42621710871678, 34.52967030211951], [-77.42621203935391, 34.52961608678303], [-77.42618047852679, 34.52958966276854], [-77.42613109280559, 34.529576609861465], [-77.4255685733613, 34.529087386514064], [-77.4253589718364, 34.528993804933705], [-77.42517838287353, 34.52878615171484], [-77.4250762587134, 34.528619393899305], [-77.42503384723085, 34.52856220390114], [-77.42503666209019, 34.52852448503522], [-77.42504289471205, 34.52831605143416], [-77.4250414799616, 34.52810595614042], [-77.42510640780758, 34.52781717972863], [-77.42509443330152, 34.52751464609548], [-77.4250907430976, 34.52732975827316], [-77.42503841494347, 34.52711139329571], [-77.42499772726623, 34.52685351668559], [-77.4250102110616, 34.52661243084644], [-77.42499114002914, 34.526364782504785], [-77.42503586431914, 34.52611707989346], [-77.42506990132684, 34.52586370639712], [-77.42511820680052, 34.52556452566232], [-77.42515363830658, 34.52536191371961], [-77.42517816856015, 34.525193160881635], [-77.425200907794, 34.52501881792456], [-77.42522130393907, 34.52486244298571], [-77.42523385388196, 34.52472368501928], [-77.4252538734217, 34.524495646534085], [-77.4252619995347, 34.52436687137425], [-77.42526971749254, 34.52424457615065], [-77.42529940622161, 34.52387177311148], [-77.42532904817496, 34.52347261460907], [-77.4253351543704, 34.523376918745925], [-77.42534283079772, 34.523287033514166], [-77.42538771425383, 34.52287962931175], [-77.42543319578897, 34.52242762195865], [-77.42543371916014, 34.52238329213039], [-77.42543191797947, 34.52233725431312], [-77.42541466333077, 34.521896356697], [-77.42540569767081, 34.52148241335782], [-77.425402751968, 34.5214083929896], [-77.42541691366331, 34.521336888460546], [-77.42560893903854, 34.520888891132635], [-77.42623645588085, 34.51988664077667], [-77.42625597926649, 34.51981596162624], [-77.42628842983176, 34.519774288626536], [-77.42634979902601, 34.51967959072477], [-77.4270092788418, 34.518727657828244], [-77.42727185644685, 34.518266085099704], [-77.4274490999186, 34.518001354724625], [-77.4276861358888, 34.51765040441881], [-77.42775693389528, 34.5175087618883], [-77.42797398863203, 34.517217382416206], [-77.42838648819357, 34.51682165227532], [-77.42851180660236, 34.516229678534046], [-77.42840576537247, 34.51558757827492], [-77.42802866092914, 34.514741412288785], [-77.42801098033686, 34.514677207456856], [-77.42800737674584, 34.5146658128265], [-77.42800197707751, 34.514648667439964], [-77.42783404196939, 34.513845271941385], [-77.42779592690039, 34.51371701024558], [-77.4278322229337, 34.51288058073053], [-77.42768857570397, 34.512753154591245], [-77.4275400284397, 34.51243802848023], [-77.42808777764418, 34.51206423120083], [-77.42887756328332, 34.51208809540948], [-77.42966453102623, 34.51174352902807], [-77.43010238144883, 34.51169723457653], [-77.43123832064346, 34.51155664945698], [-77.43190064250473, 34.511164574589756], [-77.43225907823026, 34.51075927514746], [-77.43284084282081, 34.510064889038006], [-77.43342549028299, 34.50934005772365], [-77.43455823598163, 34.508821339021395], [-77.43473237147286, 34.50798911470815], [-77.43557145744309, 34.50727547732752], [-77.43563052496798, 34.50724049103197], [-77.43563308512337, 34.50723859004864], [-77.4356361970565, 34.50723515561517], [-77.43616755525997, 34.50690420274619], [-77.43620322058933, 34.506845781432794], [-77.4364038878636, 34.50684081007269], [-77.43691709402717, 34.50699392421357], [-77.43808798390378, 34.50736572984451], [-77.4382800616534, 34.5074267223011], [-77.43838843465157, 34.507449724144095], [-77.43870013481714, 34.50754077642346], [-77.44134293467145, 34.508404346664776], [-77.44194518603611, 34.508644040442476], [-77.44626284993589, 34.50883898598559], [-77.44653548472263, 34.50769160517142], [-77.44911106047475, 34.508032912303094], [-77.44938509562202, 34.507979555196414], [-77.44936159288861, 34.50790205773591], [-77.44741069661337, 34.506489321981874], [-77.4478429577446, 34.50556381949519], [-77.44604650473477, 34.50590263675083], [-77.44519505182731, 34.50538111853489], [-77.44525087488898, 34.50502838449117], [-77.44493032539401, 34.5047365402337], [-77.44493985262926, 34.50463170904722], [-77.44518801346823, 34.504349659147366], [-77.44545254943255, 34.50372947202205], [-77.44557926306537, 34.50375421325753], [-77.44605649016083, 34.503718330564524], [-77.44553548004185, 34.50363763176919], [-77.44624851860414, 34.50289122113076], [-77.44648050824449, 34.50256302142962], [-77.446674077338, 34.50250391042464], [-77.44720678398646, 34.50242581936327], [-77.44769748406357, 34.50240707287055], [-77.44777814381456, 34.502383320844395], [-77.44844078474941, 34.50212013755195], [-77.4500553258584, 34.50257072723355], [-77.44822206018753, 34.50266194080571], [-77.44837558282137, 34.503160810597855], [-77.44852381690197, 34.50364248721281], [-77.45019322352628, 34.50361961346343], [-77.45056149958349, 34.502711990818085], [-77.45056380032155, 34.50259659121647], [-77.45058697793318, 34.50143464216527], [-77.45067564903812, 34.50125123037516], [-77.4519372200788, 34.50029373309506], [-77.45238844636793, 34.49998728602445], [-77.45243958749947, 34.4999584559185], [-77.45248814537631, 34.499906867564675], [-77.45326978195666, 34.499173666214666], [-77.45343610327068, 34.498689508174934], [-77.45348870320197, 34.498640668774584], [-77.45473369424847, 34.498696752963994], [-77.45483417622592, 34.49863615956419], [-77.455305343777, 34.49853419190529], [-77.45542466492952, 34.49879058191125], [-77.4562940070519, 34.499049891222796], [-77.45652739379142, 34.49884661820797], [-77.45642232009487, 34.49832899241862], [-77.45643656130358, 34.4979431944729], [-77.45651892423905, 34.4974951465569], [-77.45669892751248, 34.49727527683351], [-77.4570777372539, 34.49699090796387], [-77.45806124137104, 34.4967489949465], [-77.45830307118979, 34.49654710899246], [-77.45863310904228, 34.49679556984417], [-77.45897920781907, 34.49719492335899], [-77.45879637130788, 34.49761084632432], [-77.45957412020341, 34.49786971173102], [-77.46006847925433, 34.49807832152892], [-77.46086008595265, 34.49771565305422], [-77.46177370510358, 34.49736430917699], [-77.46180615287713, 34.49708817786244], [-77.4624260837529, 34.496850432958865], [-77.4632425159736, 34.49716109278437], [-77.46342087021793, 34.49742556941991], [-77.46335320151857, 34.4978422203549], [-77.46436836635215, 34.49849631959544], [-77.46435501450085, 34.498618113373375], [-77.46452976276414, 34.49925296172418], [-77.46499530542864, 34.499734576084464], [-77.46509014893007, 34.499956907494095], [-77.46508344487599, 34.50015993372394], [-77.4654195199457, 34.50064913027132], [-77.46535274068361, 34.50111366584612], [-77.46543373298428, 34.501325362849634], [-77.46533192839522, 34.50146864282104], [-77.46527504102357, 34.501937200769454], [-77.46529947341124, 34.50199406380795], [-77.46527337760728, 34.502034217900984], [-77.46522897035553, 34.5021741889618], [-77.46521950374212, 34.502327762279165], [-77.46521586774972, 34.502600297431854], [-77.46520747523303, 34.50266490696766], [-77.46518346614099, 34.50276798248096], [-77.46589654568123, 34.503375369352355], [-77.46538596198067, 34.50387092440456], [-77.46455908883559, 34.50464880906051], [-77.46455482287448, 34.50465529825093], [-77.46455096369424, 34.50465813232588], [-77.46453247208397, 34.50467400001323], [-77.46409579472481, 34.505620388356824], [-77.46391849855294, 34.50597706276294], [-77.46369731020148, 34.50642204126482], [-77.46364726990025, 34.50659059025393], [-77.4636692263418, 34.50669089788374], [-77.4636043354771, 34.50731214491679], [-77.46354727266939, 34.50773005412989], [-77.4633408124181, 34.5084283367049], [-77.46346077050765, 34.50865588038769], [-77.46327287593556, 34.50878482596282], [-77.4631032538825, 34.50917410493023], [-77.46292882990963, 34.50980577364397], [-77.46285744172341, 34.509976291475354], [-77.4627943784038, 34.51027967617464], [-77.46269525175515, 34.51064357286116], [-77.46265612317869, 34.51086136975384], [-77.4624787643102, 34.51130809303049], [-77.46249927457114, 34.51197323742779], [-77.46250007725033, 34.51199928040558], [-77.46310236504077, 34.512690761658774], [-77.46311056998519, 34.51324617015939], [-77.46437017433547, 34.51380521492623], [-77.46597077314465, 34.513659025112496], [-77.46692120955191, 34.51328288234234], [-77.46781417257627, 34.512929752602055], [-77.46870498750044, 34.51261069913831], [-77.46932554970182, 34.51222450586261], [-77.47044101305065, 34.51107763743266], [-77.47072926677856, 34.510375474456524], [-77.47125682110041, 34.509097860761436], [-77.47127568068785, 34.50905218155322], [-77.47131009722455, 34.50896191169823], [-77.47177264803564, 34.50772632943342], [-77.47194634383874, 34.50705671151082], [-77.47288031005621, 34.50552654688221], [-77.4731878855635, 34.50528364038635], [-77.47371862485868, 34.505122918813896], [-77.47553664978896, 34.504048190341145], [-77.47771413384915, 34.50350384264381], [-77.47812539161242, 34.50264409579956], [-77.47808291989247, 34.50229040554529], [-77.47800261911436, 34.50128688284465], [-77.47794399348379, 34.50046531241176], [-77.47787823274638, 34.49992956734126], [-77.47880352022989, 34.49878179397378], [-77.47892002596417, 34.49863132957554], [-77.47888111725311, 34.49854449046081], [-77.47928835211442, 34.49729894616171], [-77.47863789741095, 34.49605048359508], [-77.48066623206402, 34.49460753051757], [-77.47993270360493, 34.4919275858403], [-77.47955178388486, 34.49053573881685], [-77.47770385457736, 34.49084525887068], [-77.4760939119677, 34.49080230184988], [-77.47625583692566, 34.49014207769562], [-77.4772352789623, 34.48908895226339], [-77.47811234330129, 34.488667756410315], [-77.47890443026951, 34.488170308265424], [-77.47880791264647, 34.48781762142382], [-77.47862045940037, 34.48713262563939], [-77.47843300955776, 34.486447629365024], [-77.47837346681112, 34.486230038735165], [-77.47831396378731, 34.48638981657039], [-77.47828637622813, 34.48644020273856], [-77.47784327296239, 34.48675293693588], [-77.47783969257607, 34.48675346300707], [-77.47724218637096, 34.48701677909769], [-77.47714561287451, 34.48701036069068], [-77.4771123881353, 34.48705624306311], [-77.47600059264732, 34.48740042843784], [-77.47513492124479, 34.487221813757515], [-77.47409578401505, 34.487578900461806], [-77.47343016594637, 34.48784895653343], [-77.47301831109127, 34.4885697721778], [-77.47261743796344, 34.48885498364719], [-77.47235131467126, 34.48962667150211], [-77.47193792870267, 34.49042100169075], [-77.472580559951, 34.49155514397336], [-77.472759535124, 34.492545158592506], [-77.47321994314167, 34.49341956279736], [-77.47339448053418, 34.49429842124725], [-77.47364797609995, 34.49521266476879], [-77.47426005185233, 34.49630059019646], [-77.47389897740699, 34.497026010011226], [-77.47336721265562, 34.49746244594485], [-77.47308127541972, 34.49707479715484], [-77.47301214704943, 34.49698107555282], [-77.47289893518104, 34.49682758611286], [-77.47237177001867, 34.49587968703425], [-77.47031470481204, 34.49549332870956], [-77.47026655802215, 34.49541402998899], [-77.47011834691206, 34.4954323561945], [-77.4700738535729, 34.495455609194245], [-77.47006400080868, 34.49548061897903], [-77.46991861480171, 34.49559587231555], [-77.46917740778673, 34.49611117082952], [-77.46910197849982, 34.4961715952811], [-77.46901282714256, 34.496313927322305], [-77.46867795558657, 34.49676135128], [-77.4686136551333, 34.49712242748946], [-77.46846769305331, 34.49742619735886], [-77.46877933434811, 34.49775716654068], [-77.46928309802549, 34.49814305036941], [-77.47119380039648, 34.499363169442915], [-77.47205864192082, 34.49917518297202], [-77.4724609280403, 34.49965515846617], [-77.47200493596026, 34.49995734525264], [-77.47230759478732, 34.500998401731835], [-77.47173480003053, 34.50134037747523], [-77.47059214730453, 34.5016472254369], [-77.47032519817066, 34.50224893353221], [-77.4699015006126, 34.50249983279492], [-77.46945255090542, 34.50284378023423], [-77.46922879104599, 34.502868862116564], [-77.46835905236277, 34.502938775224756], [-77.46797417776122, 34.502875599049545], [-77.46797592001622, 34.502805333106], [-77.46795370660602, 34.502741926103184], [-77.46854024682023, 34.50215843593814], [-77.46741498455975, 34.501601921702516], [-77.46729897942693, 34.50141998155861], [-77.4671604263585, 34.50116866453048], [-77.4670109269021, 34.50072986112946], [-77.46661762167304, 34.50045270978409], [-77.46663452546184, 34.50031925237527], [-77.46652562858675, 34.500029735577186], [-77.46648294677556, 34.49974014731623], [-77.46643097877029, 34.49962638872401], [-77.46667224789049, 34.49936166116352], [-77.46656733450654, 34.49891311026327], [-77.46662495523323, 34.49853258239704], [-77.46672100581226, 34.498013114787], [-77.46672477818633, 34.49779577922109], [-77.4667416562337, 34.49740125092018], [-77.46674872929236, 34.497339010481284], [-77.46676251838903, 34.497245239344245], [-77.46677906541308, 34.49682541295482], [-77.4668458197599, 34.49666842367377], [-77.46695604486754, 34.49631736047648], [-77.46728082482045, 34.49540850289347], [-77.46730348289019, 34.49534061962277], [-77.46720909559733, 34.49525225604534], [-77.46637027145633, 34.49431846983562], [-77.46521684634632, 34.49388372346802], [-77.46490534792994, 34.49351813929244], [-77.46419622288548, 34.49347484939768], [-77.46387588954988, 34.493633253162365], [-77.46338628808552, 34.493790817825115], [-77.46174618865246, 34.49436434500187], [-77.46076031491388, 34.49411828516017], [-77.46026682417059, 34.493879027180895], [-77.45953638333788, 34.493901376132825], [-77.45888010584483, 34.493732454681094], [-77.4583490319336, 34.49381239390521], [-77.45760049793327, 34.49397760057716], [-77.45743410440275, 34.49406817052291], [-77.45726852929641, 34.49415564758423], [-77.45640534309614, 34.49453165898034], [-77.45614995551568, 34.494632400315], [-77.45582251023157, 34.49475768547179], [-77.45520907991428, 34.49508171209659], [-77.45494420342695, 34.49523471374921], [-77.45468469434687, 34.49537537490306], [-77.45414690170074, 34.49600786947796], [-77.45413604515493, 34.49602300798753], [-77.45412939298502, 34.49602695952985], [-77.45412220892352, 34.496031961161755], [-77.45200979773763, 34.49726594556368], [-77.4519066132321, 34.49732327165061], [-77.45180822378728, 34.49741966433489], [-77.45023959398088, 34.498526960158316], [-77.45003837965263, 34.49879183981196], [-77.44956444062252, 34.49906444499296], [-77.44909889290952, 34.49952351826181], [-77.44852911042993, 34.49979099505957], [-77.4479489598859, 34.50015294790957], [-77.44770715333777, 34.50042470531843], [-77.44729310011785, 34.50060869497243], [-77.44685162757835, 34.500807937107275], [-77.44624124725851, 34.5010256352253], [-77.44607637704969, 34.50108435202499], [-77.44511062405178, 34.50115016281701], [-77.44477979620186, 34.50126783351108], [-77.44338392443507, 34.502231232639325], [-77.44312775928894, 34.50256302783518], [-77.44321317945301, 34.503573597232105], [-77.44312968051491, 34.503752158221225], [-77.44311676675837, 34.50490087215344], [-77.44311494288769, 34.50491965532346], [-77.44311529954467, 34.50493336006652], [-77.443109198945, 34.50501088482548], [-77.44233201259408, 34.50574094772472], [-77.4414945372184, 34.505748077247446], [-77.44060724814005, 34.505712111874935], [-77.44011022683492, 34.50544216287599], [-77.43968372984001, 34.50512808758392], [-77.43828607108682, 34.50496312860632], [-77.43769896159051, 34.50492622932801], [-77.43735830951675, 34.505106394525285], [-77.43675165960623, 34.50527103588665], [-77.43658538345147, 34.50532489677003], [-77.43646453770559, 34.50533745019125], [-77.43604129717669, 34.505464538520044], [-77.43521718309772, 34.505701371104784], [-77.4348966913838, 34.50569247487284], [-77.43489836866857, 34.50585209969556], [-77.43404342756585, 34.50633474765832], [-77.43373382750124, 34.506315589790155], [-77.43380567724304, 34.50647192300674], [-77.43316365804895, 34.506967113689285], [-77.43297764300989, 34.50710523479432], [-77.43294878693588, 34.50712232654033], [-77.43290461194493, 34.50716975529747], [-77.43235154475168, 34.50752206466979], [-77.43131260156119, 34.5081871147475], [-77.43108627014146, 34.508203218227735], [-77.42973224797427, 34.50867435821871], [-77.42891014325664, 34.50913168467429], [-77.42814744055892, 34.50936238148758], [-77.42779723536269, 34.50958384221669], [-77.4268347090626, 34.509772548677326], [-77.42656902905081, 34.50975977464185], [-77.42621312439069, 34.50980696366213], [-77.4260426121686, 34.51005303371147], [-77.42605316833126, 34.51036503048908], [-77.42535490249637, 34.511375978432966], [-77.42528735762713, 34.51212099997406], [-77.4252110345559, 34.512299133708076], [-77.42528123449662, 34.51288231792664], [-77.4254363648022, 34.51307883064911], [-77.4258685104565, 34.51340317633301], [-77.42610493002033, 34.51372667626127], [-77.42628901577632, 34.51393491948865], [-77.42634974168817, 34.514004426393406], [-77.42646894351913, 34.51428837548347], [-77.42651619708144, 34.5143917582869], [-77.42663147990348, 34.51475690698478], [-77.42666397192708, 34.51486007782249], [-77.42671306575605, 34.515015313538825], [-77.42677095441897, 34.5156172356095], [-77.42685915662469, 34.51581123255009], [-77.42700063902265, 34.51592615277097], [-77.42707317480841, 34.51618339716938], [-77.42706764533058, 34.51627077427311], [-77.42703748186452, 34.51638125495647], [-77.42692811799809, 34.51660943302207], [-77.42675417990338, 34.51680579049752], [-77.42664040757175, 34.51696613924323], [-77.42652197040924, 34.5173290569456], [-77.42639677582014, 34.5175538874833], [-77.42627103605933, 34.517779695354115], [-77.42622541247684, 34.51786162693135], [-77.42612516309417, 34.518038891406206], [-77.42605161597466, 34.518169593242625], [-77.42589825175534, 34.51839862001436], [-77.4258073074116, 34.5185473951881], [-77.42485450996516, 34.519002066819176], [-77.42479697024855, 34.518911200180135], [-77.424033240578, 34.51817857871049], [-77.42377621402338, 34.51788732655303], [-77.4232510417476, 34.51783233734376], [-77.4225364790992, 34.517950796214], [-77.42244334516528, 34.517931596602864], [-77.42242823995154, 34.51792092691469], [-77.42200937931483, 34.51777751895114], [-77.42198520226876, 34.517682852477165], [-77.42190135914332, 34.51750740642943], [-77.42188999691987, 34.5173849965662], [-77.42182418131861, 34.51710803924934], [-77.42193090564625, 34.517013448692886], [-77.42184282053474, 34.5166205490699], [-77.42194302838273, 34.51652200927121], [-77.42197531717103, 34.515691849550684], [-77.42188548466451, 34.5154563746377], [-77.42043442416254, 34.51478133955579], [-77.42028085777248, 34.51474062131823], [-77.42017974283856, 34.51475282297985], [-77.42009096249492, 34.51477591770316], [-77.41916341683378, 34.514621596541616], [-77.4187125833345, 34.514540535651335], [-77.41864973090699, 34.51452794844585], [-77.41861532884717, 34.514512926367665], [-77.41822322579458, 34.514368218246034], [-77.41746474823388, 34.51423119907585], [-77.41705612883473, 34.51403863475553], [-77.41630269282675, 34.5138918777061], [-77.41548933596516, 34.51390660019446], [-77.41479792654741, 34.51406638513943], [-77.41463573826499, 34.514110288677074], [-77.41391111326408, 34.51428839896808], [-77.4126044035901, 34.51493353675973], [-77.41243219256879, 34.51502531662085], [-77.41232252310688, 34.515135029593935], [-77.41104520416077, 34.51613816264097], [-77.41087316121035, 34.51625368396995], [-77.41072610037908, 34.51633159347132], [-77.41015406166984, 34.51661977325427], [-77.40914119446956, 34.51700977689006], [-77.40869445517191, 34.51718077388316], [-77.4080007394553, 34.51728561174945], [-77.40756786006304, 34.517168428787144], [-77.40724539644677, 34.51746942265778], [-77.40629502082878, 34.51780366818916], [-77.40602798861309, 34.51787069465121], [-77.40598185902518, 34.51789363379841], [-77.40587417186286, 34.51793110974713], [-77.40518959214847, 34.518222932564385], [-77.40460068140189, 34.51804836332134], [-77.40457538035679, 34.51794934108468], [-77.4044132273696, 34.51784083211652], [-77.40401364053042, 34.5181331355844], [-77.40322151408901, 34.51849250178561], [-77.4030385775605, 34.51876361279222], [-77.4028171014845, 34.519016491455375], [-77.40268271389141, 34.51922372825805], [-77.40253966864245, 34.519325327116285], [-77.40210469228394, 34.519821330803005], [-77.4020333106786, 34.51990117560461], [-77.40201171489853, 34.51993064616878], [-77.40138635835704, 34.52036557269251], [-77.40121468162603, 34.520471100488564], [-77.40107350328589, 34.52002669443536], [-77.40079387602975, 34.51984860976512], [-77.40074914424956, 34.51977335063895], [-77.40076198804351, 34.51958199665128], [-77.40045382167423, 34.51939686114373], [-77.40030300186012, 34.5192546659549], [-77.39968144285221, 34.51883731685169], [-77.39962846838714, 34.5187998718404], [-77.39951414907675, 34.51878280333901], [-77.39812986327918, 34.51802362354223], [-77.39809138620593, 34.51803272852824], [-77.39655056866096, 34.51844538810426], [-77.39577257510611, 34.51884312759673], [-77.39513518884532, 34.51941489932171], [-77.39509696112125, 34.51950781961749], [-77.39497290082164, 34.5199279930486], [-77.394947061049, 34.519943702607506], [-77.39428112444689, 34.5201043188864], [-77.39398211625202, 34.5201799700644], [-77.39337817689378, 34.519900198685605], [-77.39315104497236, 34.51984373809792], [-77.3930373379332, 34.519717661446606], [-77.3920676363478, 34.51902778382903], [-77.39192707787373, 34.518898544444255], [-77.39189393215229, 34.518864460565055], [-77.39183151408986, 34.51886962838714], [-77.39177519904796, 34.51888555290918], [-77.39154000678289, 34.518954398359], [-77.39025239556867, 34.51928116961412], [-77.3896569776245, 34.51959316103711], [-77.38934328410548, 34.519689300563485], [-77.38867699506089, 34.51952707400232], [-77.38739336168183, 34.52053201465804], [-77.3880285791146, 34.52082659167122], [-77.38811856496878, 34.5209170594004], [-77.38863955473911, 34.521187399226214], [-77.38878908086708, 34.52121630466133], [-77.3899860703166, 34.521137288448614], [-77.38993733524957, 34.521964832516254], [-77.38861918297529, 34.522090813659425], [-77.38809467343083, 34.52206189975439], [-77.38778889708902, 34.5219738747589], [-77.38704907575146, 34.522099561103204], [-77.38643990752715, 34.522138554088535], [-77.38633505831687, 34.522109289643346], [-77.38642818361261, 34.52165057848207], [-77.3862867167714, 34.521180169499914], [-77.38551116973598, 34.52068259562734], [-77.3839745364253, 34.520999954961184], [-77.38380587099617, 34.520969068543344], [-77.38237370734784, 34.52058037569458], [-77.38231423558176, 34.52032599889951], [-77.38231145846882, 34.52028570976836], [-77.38226451999783, 34.52021926888493], [-77.38227163253947, 34.51939257021103], [-77.38109765002567, 34.519651614363084], [-77.38082426732942, 34.5196773489844], [-77.38008712100302, 34.52015336081628], [-77.37985977855428, 34.52025347040573], [-77.37924473521136, 34.52010356693668], [-77.37856605260598, 34.52040672164897], [-77.37845772864823, 34.520841428839965], [-77.37789512547856, 34.52107368359894], [-77.377650581511, 34.52117365543347], [-77.37730306113033, 34.52122398578157], [-77.37646969262883, 34.52137356292472], [-77.37607420530681, 34.52145875978609], [-77.3756207075744, 34.521532308417875], [-77.37556535371031, 34.52125843751756], [-77.37551237554342, 34.520907798980005], [-77.37548675461966, 34.52078011048786], [-77.37577251747939, 34.520451711309335], [-77.37576337678033, 34.52025057213179], [-77.3761069818232, 34.52001487545892], [-77.3769344361205, 34.5196129095721], [-77.37769320549785, 34.519294418319305], [-77.37810180127026, 34.51918748979982], [-77.37810693385605, 34.51893337138956], [-77.37849439368094, 34.51857749575594], [-77.378590534884, 34.518431898616896], [-77.37918829722477, 34.51834781871413], [-77.37928255762131, 34.518434654078895], [-77.37975588694661, 34.5184008030183], [-77.3803424393808, 34.518290854038526], [-77.38086313911623, 34.51796071642052], [-77.38203671779166, 34.51812175254933], [-77.38242777719923, 34.51819058095906], [-77.38261794455492, 34.51816458877217], [-77.38400737833305, 34.51775887080859], [-77.38555768468952, 34.517847909976], [-77.38557539576729, 34.51783919248551], [-77.38622311335035, 34.517178280094384], [-77.38648356435623, 34.517168169053846], [-77.38715871720946, 34.51724148497932], [-77.38752354654815, 34.51681754151366], [-77.38834271830562, 34.516477726093214], [-77.3885413725694, 34.51631932962843], [-77.3887521951024, 34.5161923261183], [-77.38909079155249, 34.51615902702538], [-77.38974471934945, 34.515911355592465], [-77.38995226453335, 34.515506464298674], [-77.38990778240792, 34.51527258065846], [-77.38941757309722, 34.51494574256912], [-77.38878592213845, 34.514696728837436], [-77.38859624724772, 34.514602147108654], [-77.38852482644579, 34.51449278914108], [-77.38800976506869, 34.51430984935341], [-77.3878158731131, 34.51422753154377], [-77.38738688105154, 34.514267774499125], [-77.38722396420687, 34.514350560431424], [-77.38682717894943, 34.51449216421369], [-77.3859524617071, 34.51467327531947], [-77.38564523368491, 34.51474741812971], [-77.38543144946732, 34.514806519791605], [-77.3850951323359, 34.514987572193874], [-77.38435175927859, 34.515274611546296], [-77.38405668579713, 34.515577801597296], [-77.38358174902297, 34.515503214019375], [-77.38291320150577, 34.51556811547171], [-77.38247927596133, 34.515914466619535], [-77.3819018826812, 34.51580984203217], [-77.3816939227038, 34.51593448905504], [-77.38164803387664, 34.51594596418076], [-77.38137909296472, 34.516013216306234], [-77.38129880176213, 34.51605245182158], [-77.38127828351314, 34.516040720844416], [-77.38097011756292, 34.516112830926794], [-77.38090348791886, 34.516178879842045], [-77.38060037414616, 34.51631272464219], [-77.38048360487734, 34.51637281588928], [-77.38024180558116, 34.516584288008396], [-77.38017227363872, 34.51667691555565], [-77.38010632789259, 34.516719917751225], [-77.38001703559988, 34.516699301728806], [-77.37947723909511, 34.516680491139184], [-77.3793234019843, 34.51663242295041], [-77.37914585630773, 34.51671533817849], [-77.37778235818094, 34.516998403636244], [-77.37774504436487, 34.51700894419806], [-77.37770587746435, 34.51700811425286], [-77.37764543050218, 34.51704127497606], [-77.37677315337703, 34.51754768246261], [-77.37615715444358, 34.51780468173072], [-77.37568196360911, 34.51801014817479], [-77.37514171906416, 34.518032476472335], [-77.37457943143545, 34.51815153423573], [-77.37419282554869, 34.51827898262026], [-77.37355904196451, 34.51860971026024], [-77.37298267186858, 34.51933495105101], [-77.37266704375962, 34.51952338053863], [-77.37267155329602, 34.519716950617344], [-77.3722829760386, 34.520197206599384], [-77.37295266729086, 34.520654532437234], [-77.37295358003253, 34.52065561399936], [-77.37295262848558, 34.520656239074015], [-77.37295237345413, 34.52065595109545], [-77.37295221632984, 34.52065581056934], [-77.37217558266089, 34.52030877879918], [-77.37143896377304, 34.520873921746265], [-77.37141623345745, 34.520901580833645], [-77.37137644806415, 34.52093223927271], [-77.37111343546859, 34.521410494012244], [-77.37103908747821, 34.52171148165953], [-77.37084436576961, 34.52193892671536], [-77.37101650187441, 34.52212176511605], [-77.37134574928793, 34.52228125361708], [-77.37141555816085, 34.52230241542731], [-77.37196204572064, 34.52216057086725], [-77.37213476263683, 34.522103292593904], [-77.37244733731362, 34.52200397674598], [-77.37292343725255, 34.52194006378991], [-77.37353769282917, 34.52193381383499], [-77.37390389044714, 34.52186669455136], [-77.37389060443951, 34.522105522958896], [-77.37370265706178, 34.52219267630814], [-77.3734853912454, 34.52240506659988], [-77.37309525080327, 34.52247899955813], [-77.37291210656781, 34.52243838836432], [-77.37274971801371, 34.522543822963755], [-77.37226277346856, 34.52262653313649], [-77.3721222793525, 34.522652082495654], [-77.37198460824158, 34.52266825352764], [-77.37148079466506, 34.522735822810674], [-77.3713400065746, 34.52253361064547], [-77.37118429364875, 34.52277555048687], [-77.37054890985874, 34.522802816508616], [-77.36990952302952, 34.523052965080396], [-77.36981693365027, 34.52310363961059], [-77.36980910508441, 34.5235187465151], [-77.36982223672472, 34.52355519890138], [-77.36980617037602, 34.52359511338621], [-77.36980668675702, 34.524003373529254], [-77.36987223045745, 34.524037648794206], [-77.36978261674498, 34.52408036360297], [-77.3697328539292, 34.5241676913789], [-77.36952338091379, 34.52457757548029], [-77.36945337048603, 34.52491358112732], [-77.36924880834428, 34.52510679551434], [-77.36933652570303, 34.52532493231014], [-77.36935129391901, 34.52558168279787], [-77.36945261809132, 34.5259066383357], [-77.36940939582601, 34.52606296350758], [-77.36956564687469, 34.526117052488786], [-77.36968778599405, 34.52614655671712], [-77.37000158225769, 34.526173747296426], [-77.3700795463589, 34.526179095485055], [-77.37041662178986, 34.52591781526728], [-77.37043898319776, 34.52588986110489], [-77.37047991506904, 34.52583350535629], [-77.37070769513454, 34.525523896915345], [-77.37069760718643, 34.525387665778126], [-77.37071024630657, 34.525250450282755], [-77.37074593616771, 34.525135873576026], [-77.37074209158072, 34.525043925847896], [-77.37079212360342, 34.52488438912062], [-77.37065031928886, 34.52450256436912], [-77.37070825574764, 34.52440682084361], [-77.37125144526074, 34.52387508202608], [-77.3712839460952, 34.52383419748853], [-77.3712944315409, 34.523822553848426], [-77.37131073596846, 34.52381988104715], [-77.37133586144893, 34.52381116608181], [-77.37210174275823, 34.523554917168994], [-77.37274805632778, 34.52362317650382], [-77.37283606892444, 34.52364086677098], [-77.372884614071, 34.52364751871324], [-77.37298960071902, 34.52365394118576], [-77.37421274163297, 34.52356408386713], [-77.37445779427094, 34.52350551740617], [-77.37459542728396, 34.5234418416509], [-77.37460019306485, 34.52335620347267], [-77.37525413551569, 34.523005008792154], [-77.37560609089793, 34.52294016846123], [-77.37569853432848, 34.522921836617456], [-77.37604080643897, 34.52293007698517], [-77.37655737884825, 34.52258439722826], [-77.3767186070475, 34.522488045532356], [-77.3768373263214, 34.5224210082539], [-77.3771380146995, 34.522314621907356], [-77.37762908523857, 34.522121409225505], [-77.37800050504987, 34.5221183231243], [-77.37841472792049, 34.52209131648951], [-77.3786743896111, 34.522116831776486], [-77.37919483084482, 34.52230562806704], [-77.37967264734107, 34.52232653225023], [-77.37997780247673, 34.52239346070482], [-77.3800865376247, 34.52249593315781], [-77.38016148175561, 34.522554403326374], [-77.38033827395239, 34.522788130762315], [-77.38075127142544, 34.52290101293262], [-77.38080604306134, 34.522916729397046], [-77.3814839197528, 34.522819577714145], [-77.38154055916672, 34.522710076903934], [-77.38167599364736, 34.52241633946903], [-77.38180873371965, 34.522316859097394], [-77.38196039808447, 34.52205801617447], [-77.3823537506095, 34.5214624403204], [-77.38277235766591, 34.52145965501238], [-77.38389833222773, 34.521057670082925], [-77.38393308379253, 34.521045290215405], [-77.38483216086216, 34.521880798937104], [-77.38458315221254, 34.52247042445803], [-77.38447910292788, 34.522911050428625], [-77.38439604888168, 34.523242815251535], [-77.38389230836088, 34.5239750140166], [-77.38387791381511, 34.52398411732025], [-77.38386659353793, 34.52398656008461], [-77.38385198647916, 34.523989894423984], [-77.38259645672159, 34.52435411337501], [-77.38228740171522, 34.524395028458784], [-77.38211376183608, 34.5243406002166], [-77.38104300386883, 34.524591790767126], [-77.38086400712761, 34.524901404230654], [-77.38081642418567, 34.52497824715994], [-77.3808236928654, 34.525317571277384], [-77.38086230398892, 34.52539131108972], [-77.3809469476897, 34.525538415388965], [-77.38099003429792, 34.52615728683528], [-77.38108971149715, 34.52633783950708], [-77.38103681836796, 34.52657548280712], [-77.38103974690122, 34.526834707281914], [-77.3809241740054, 34.52717284690461], [-77.3808536895499, 34.52735119754382], [-77.38088556897301, 34.52749525988767], [-77.38064003849733, 34.52781346687796], [-77.38041866569539, 34.52790358840689], [-77.37994008293288, 34.52802869285652], [-77.3798502993209, 34.52802212500731], [-77.37980324479153, 34.52802168433328], [-77.3792440586021, 34.52807295470702], [-77.37906655273706, 34.52796615106601], [-77.37899830909956, 34.52810838801611], [-77.37841070936193, 34.528278090404505], [-77.37831988360793, 34.52869586282314], [-77.37826353525598, 34.52876023967724], [-77.37806022127697, 34.529100960094524], [-77.37791084600158, 34.52924449445976], [-77.37745570237533, 34.52976597693996], [-77.37743317377411, 34.52978929795148], [-77.37741272578494, 34.52980596795995], [-77.37741769509992, 34.52982807962947], [-77.37722629968736, 34.53032250288315], [-77.37717016845822, 34.53065472798167], [-77.37704625991873, 34.53083811686486], [-77.37688450627225, 34.531197458477216], [-77.37685752722052, 34.53149601540649], [-77.37662337285292, 34.531850541081255], [-77.37660270844712, 34.53188137731527], [-77.37660442185387, 34.531892358761674], [-77.37662214570686, 34.53190462683821], [-77.37688195625164, 34.53216504402271], [-77.37700508672368, 34.53231302959581], [-77.3770052195878, 34.5323131265119], [-77.37700539063955, 34.53231378951682], [-77.37706602199695, 34.532508502230286], [-77.3770482848618, 34.53258218288034], [-77.37699802793026, 34.532638365491], [-77.37690827802152, 34.53276242052645], [-77.37673282854098, 34.53276078560857], [-77.3766040840866, 34.53270068501309], [-77.37649934695031, 34.53263076528506], [-77.37647054105516, 34.532476553884834], [-77.37629535661884, 34.532415341803556], [-77.37604779932002, 34.53231381252064], [-77.37582721372152, 34.53233984917919], [-77.37557275902127, 34.53227467666136], [-77.37551892867606, 34.5322314266056], [-77.37514232540016, 34.532151706557855], [-77.37504697952228, 34.532127431139074], [-77.37490233393972, 34.532215458366124], [-77.37461693304118, 34.53239281197422], [-77.37424897033475, 34.53269762330996], [-77.37423704534106, 34.53270470111094], [-77.37423312375506, 34.53271260390736], [-77.3742352323019, 34.5327205438532], [-77.37424786612281, 34.532746230758136], [-77.37437359912468, 34.53309859877996], [-77.37438723822628, 34.5331800470905], [-77.37441029344045, 34.53328567558603], [-77.37445706182584, 34.53341481175157], [-77.37434198185392, 34.533605353673295], [-77.37431591468187, 34.5336799847397], [-77.3742245324176, 34.533773384729486], [-77.37362556271762, 34.533897317025364], [-77.37343442176015, 34.53399509574943], [-77.37298261870724, 34.53415172371414], [-77.37264262419976, 34.534290802169124], [-77.37252774990554, 34.534356652341806], [-77.37239144094272, 34.53444701048845], [-77.37223256311721, 34.53471958170687], [-77.37199012703952, 34.534994502574705], [-77.37199256338312, 34.53508969388237], [-77.37212883444732, 34.53546416827087], [-77.37217960781142, 34.535677388800345], [-77.3721906090006, 34.53570009408618], [-77.37219759183257, 34.535711675589596], [-77.37233946093185, 34.53592346949907], [-77.3724060428603, 34.536036671597216], [-77.37259682941578, 34.536305060805965], [-77.37263063383439, 34.53634944980869], [-77.37265560012888, 34.53636756466106], [-77.37267658304219, 34.53641585303966], [-77.3728092354585, 34.53669704584694], [-77.37328116229043, 34.53676706413494], [-77.37333677760253, 34.53678046856876], [-77.37337121516514, 34.53677635524295], [-77.37342542015847, 34.53678013357068], [-77.37415550875137, 34.5368118660313], [-77.37482603305544, 34.53661859786972], [-77.37494552638545, 34.53659530294317], [-77.37502977215846, 34.53656718002055], [-77.37532231190256, 34.5364728681587], [-77.37573662150302, 34.53633107104114], [-77.37592039613445, 34.53627286335207], [-77.37620338029392, 34.53614468525693], [-77.37653226771648, 34.53586600892974], [-77.3765760495554, 34.53582927518297], [-77.37662536601232, 34.53579537909458], [-77.3768856215546, 34.535483172264705], [-77.37733567679659, 34.535058250669366], [-77.37757180628297, 34.53482358031148], [-77.3779336781984, 34.53462745384283], [-77.37857888672951, 34.534320079239784], [-77.3788681643912, 34.53400307190032], [-77.3789310690358, 34.53394490554683], [-77.37927751193756, 34.533666541721296], [-77.37940977341944, 34.53363084724491], [-77.37972407050592, 34.53359477631331], [-77.38026291944107, 34.533467679764144], [-77.38051272219559, 34.53343645315262], [-77.38081754367346, 34.53342226663895], [-77.38188737067648, 34.53320329456768], [-77.38208965485728, 34.533135743014434], [-77.38221738891275, 34.53310979481866], [-77.3826118296484, 34.533137552880646], [-77.3828719004706, 34.5332602621382], [-77.38304770134287, 34.53329033908979], [-77.38364943682978, 34.53359320387903], [-77.38394874432633, 34.533760133980365], [-77.38397267875722, 34.53396351620106], [-77.38410910459056, 34.53422667120957], [-77.38418236538921, 34.534362525945745], [-77.38421823279734, 34.53445576491798], [-77.38427292603748, 34.53460620712118], [-77.38429515031785, 34.53468950334859], [-77.38431124153797, 34.53474779083737], [-77.38440644692452, 34.53483486888268], [-77.38445560531213, 34.5348798990791], [-77.38471606000338, 34.534821724577725], [-77.38480011598732, 34.53478480428063], [-77.3851895957641, 34.534560504101876], [-77.38519344621217, 34.53455723737306], [-77.38519784984406, 34.53455473659103], [-77.38520606708013, 34.53455302728469], [-77.38598924443286, 34.534274722309554], [-77.38663224029064, 34.53435242672343], [-77.38672522233135, 34.53436831743607], [-77.38677159671651, 34.534395156423614], [-77.38684319952947, 34.53436625127896], [-77.38686204359607, 34.534319279962105], [-77.38696696174928, 34.53418524641798], [-77.3874251765123, 34.53365597195], [-77.38757513428719, 34.533576479463015], [-77.3877260255792, 34.533610397335785], [-77.38819831516383, 34.53353531209404], [-77.3883610139984, 34.53354024119252], [-77.38865940516875, 34.533386394649156], [-77.38878197036625, 34.53332250106332], [-77.3888070557488, 34.5333042140598], [-77.3891568832986, 34.533060725714265], [-77.38923733161089, 34.533047298482145], [-77.38958033647124, 34.532947825062706], [-77.38984541496883, 34.53284636498378], [-77.38994704404348, 34.532834181021855], [-77.39001706343791, 34.5328410497259], [-77.3906256618986, 34.53272915229267], [-77.39073480703024, 34.53271390333687], [-77.3909682431886, 34.532603536499636], [-77.39120831163135, 34.53251584703803], [-77.39131347510006, 34.532342063611026], [-77.39140103799909, 34.53219547845143], [-77.39153514411348, 34.53203491186801], [-77.39186083951948, 34.531839880580726], [-77.3919266649491, 34.53162997054673], [-77.39233422833166, 34.531411018499576], [-77.39249158652734, 34.53144976258538], [-77.3927693901013, 34.531508372916434], [-77.39297577635236, 34.53156592221346], [-77.39311481747146, 34.53160889770287], [-77.39330562860548, 34.531549176218675], [-77.39351094280995, 34.5314485955398], [-77.39356001093434, 34.5314245576125], [-77.39371186116367, 34.5313723760796], [-77.39386167763594, 34.531322931447335], [-77.39390654802173, 34.53131135713], [-77.39396218878161, 34.53130168244293], [-77.3943002421887, 34.531259077012706], [-77.3946705382529, 34.53121961793365], [-77.3946937201836, 34.531216389685845], [-77.39472156438485, 34.53120939874557], [-77.39475499871494, 34.53122184375019], [-77.39527190692006, 34.531275442433525], [-77.39543359640851, 34.53159065736032], [-77.39544017637989, 34.53161263261637], [-77.39511071171252, 34.531880442839544], [-77.3950735246927, 34.53191220215947], [-77.3950630033392, 34.53191657954808], [-77.39467410293219, 34.532089325190945], [-77.39435563873404, 34.532059757612686], [-77.39425394978159, 34.53227348784412], [-77.39388102202932, 34.53244674904458], [-77.3937347063221, 34.53243977817786], [-77.39317293155253, 34.5324779205698], [-77.39309517876113, 34.53248206014007], [-77.3930062605493, 34.532508620198655], [-77.39255791585573, 34.53267549345309], [-77.39229995343551, 34.53293428989956], [-77.39220729572196, 34.53300163418024], [-77.39209548518392, 34.533074615630305], [-77.39201867027275, 34.5332566215642], [-77.39195449415442, 34.533375342057795], [-77.3916292658972, 34.53355155092284], [-77.39149952611263, 34.53361722186884], [-77.39146527318181, 34.5336340853559], [-77.3914429128463, 34.53365843939172], [-77.39125923770469, 34.53378221513796], [-77.39125091365982, 34.533838106762744], [-77.39142300679349, 34.53390614516048], [-77.39149155555603, 34.5339713122499], [-77.39159033248218, 34.53406392649784], [-77.39188473067748, 34.533942743380834], [-77.39216928049201, 34.53404330409944], [-77.39223709782675, 34.53405696792287], [-77.39227430679276, 34.53407411008085], [-77.39248616092982, 34.534242416134774], [-77.39254557785947, 34.53430622028072], [-77.39265835622508, 34.534451203908205], [-77.39266455428786, 34.53446151007612], [-77.39275947218755, 34.53462711132049], [-77.39279149992319, 34.534688026999596], [-77.39285026349015, 34.53479979387853], [-77.39285326987563, 34.53480566009574], [-77.3928940355002, 34.53491806616182], [-77.39278655306892, 34.53508949370057], [-77.39272341395196, 34.535239152944676], [-77.39263943112672, 34.53529248208483], [-77.3925395078708, 34.53527660180396], [-77.39233322768915, 34.53524381860715], [-77.39227600866136, 34.53523472506756], [-77.39224828928816, 34.53523042351844], [-77.3920111836314, 34.53519385144156], [-77.39155897957605, 34.535110695507996], [-77.39150454738771, 34.535094674007624], [-77.39146712093057, 34.53505682204339], [-77.39116690534888, 34.53497891882587], [-77.39106654759831, 34.53494351251246], [-77.39068715775525, 34.53482982895211], [-77.39059044957266, 34.534821204067065], [-77.39033247524591, 34.53479798183348], [-77.39002065373163, 34.53476985680617], [-77.38990367438699, 34.53475926157548], [-77.38976585639733, 34.53479425839103], [-77.38955311990554, 34.534910416781976], [-77.38925700835769, 34.53504345676122], [-77.3891083994129, 34.535211923691364], [-77.38892140172928, 34.53537690085601], [-77.38872587983715, 34.53551942059033], [-77.38870861119734, 34.53553351406334], [-77.38868539850155, 34.53552526022864], [-77.38846844062321, 34.53546252013549], [-77.38831771785578, 34.535460466995715], [-77.38782473607361, 34.53546713090722], [-77.38753174300939, 34.53550012311848], [-77.38731803117257, 34.535590477703266], [-77.38707391763998, 34.5357577128245], [-77.38689197069758, 34.53587993348202], [-77.38673564582446, 34.535988293533386], [-77.38641610611919, 34.53614516738733], [-77.38564864546646, 34.536452949368346], [-77.38531503329583, 34.53660300672772], [-77.38514779982214, 34.53677082871394], [-77.3844002657242, 34.53715144946074], [-77.3843535735162, 34.53717500510616], [-77.38426177139037, 34.53719954355076], [-77.3838140169947, 34.53736299860005], [-77.38375640253977, 34.5375822265093], [-77.38375663476438, 34.537705142822], [-77.38370441723342, 34.53780635947095], [-77.38388428708313, 34.53817639657615], [-77.38391692227982, 34.53840637178342], [-77.38391972675616, 34.53841611781889], [-77.38391769039731, 34.53842580887556], [-77.38410349218944, 34.53863444757346], [-77.38431770257344, 34.538762650121555], [-77.38464174017088, 34.53884325332601], [-77.38509908871475, 34.538927673959456], [-77.38564447422038, 34.53874985265425], [-77.38588952583746, 34.53869188312902], [-77.38615138001724, 34.53866581445394], [-77.38650601185971, 34.538777613551936], [-77.38667219155633, 34.538800271686945], [-77.38705998331359, 34.53894350034861], [-77.38706150672957, 34.53894392644446], [-77.38736357358344, 34.539143587152154], [-77.38733130284889, 34.53922090898181], [-77.38721013614882, 34.53951123096851], [-77.3871673067185, 34.53966156069561], [-77.38715776634629, 34.53983519232347], [-77.38711217421582, 34.54015917752228], [-77.38736209422962, 34.540578429541355], [-77.3873606094678, 34.540613009243444], [-77.38737322867587, 34.540637775397684], [-77.38741518685727, 34.540667494792544], [-77.38746734417568, 34.54084244658238], [-77.38752187827707, 34.54090445457065], [-77.38752886375197, 34.54100279175198], [-77.38755782851212, 34.54107422777745], [-77.38751630416063, 34.54115006956282], [-77.38747652432278, 34.54128386242961], [-77.3874453180854, 34.54133528849395], [-77.38739733768469, 34.541458834526544], [-77.38732931896023, 34.54155579509381], [-77.38730154712322, 34.54160085775589], [-77.38729942507004, 34.54165940672584], [-77.3870232615653, 34.54213065898459], [-77.38735150804624, 34.542559887730036], [-77.38735130889287, 34.54257301015015], [-77.38736108797235, 34.54257845750473], [-77.38737202180671, 34.54258121778967], [-77.38745031876616, 34.54260793557081], [-77.3881507672566, 34.54286516482931], [-77.3882063622891, 34.542904123070414], [-77.38831097249046, 34.542924253961715], [-77.3886784225279, 34.543205106348395], [-77.38879930299159, 34.54334348050363], [-77.38876239607015, 34.54344881794904], [-77.38892025567321, 34.5435600894735], [-77.389249359435, 34.543482720625114], [-77.38934702914834, 34.54348897788591], [-77.38933145140906, 34.54351155209185], [-77.38932020644135, 34.543517169222106], [-77.38898013428323, 34.543807062014096], [-77.38894413817883, 34.54383095584697], [-77.38891369593634, 34.54385116286451], [-77.38872820874533, 34.54397428554694], [-77.38866770627355, 34.54400340057606], [-77.38851590581567, 34.54408233103801], [-77.38841966015504, 34.54407257977384], [-77.3882760001011, 34.54405858052993], [-77.38812562611966, 34.543980278197786], [-77.38808110069016, 34.543964728731595], [-77.38802411911368, 34.543944960665385], [-77.38734924947785, 34.543590841118274], [-77.38729501820836, 34.54359423211623], [-77.38725977581646, 34.5435655416763], [-77.38657096663418, 34.54328618872134], [-77.38628038146818, 34.543396800724935], [-77.38540871315766, 34.54360177613883], [-77.38499341006468, 34.54360707113584], [-77.38459233869153, 34.543709267296265], [-77.38420476868231, 34.543761224841646], [-77.38386171530144, 34.54384281065217], [-77.38368751557488, 34.543911527116364], [-77.38375376063951, 34.54379031274553], [-77.3837897684239, 34.543576316830226], [-77.38367381932014, 34.54343904034253], [-77.38368923924655, 34.543262273610665], [-77.3837831966594, 34.54308760187291], [-77.38393586037694, 34.542885542661566], [-77.3840848409199, 34.54255444048077], [-77.38398799766502, 34.54241423603302], [-77.38389673572472, 34.542304536202955], [-77.38384670941619, 34.54223358855187], [-77.38381855646864, 34.54210317809206], [-77.38385190371636, 34.54200372955528], [-77.38390201212673, 34.5418757590118], [-77.38394000783617, 34.54184083258056], [-77.38399249141787, 34.541749172174164], [-77.38414361783573, 34.54156663870822], [-77.38425843096886, 34.541386050029374], [-77.38444623804614, 34.541147096690395], [-77.38462754027238, 34.541007188047736], [-77.38444922428604, 34.54092047233911], [-77.3843336899443, 34.540595702778795], [-77.38433450126445, 34.54055978558597], [-77.38430804379087, 34.54054451685949], [-77.38427833554988, 34.540505054042214], [-77.38414263800712, 34.540342622914636], [-77.38408152744236, 34.540233178916395], [-77.38397577222727, 34.5401218547465], [-77.38385985806885, 34.53991817223397], [-77.38351039559055, 34.53974453374742], [-77.38347244990779, 34.53972866492401], [-77.38342736889196, 34.53971127640501], [-77.38322507968866, 34.53955989965684], [-77.3832450360763, 34.53941800917701], [-77.38330920337685, 34.539238653758545], [-77.38298406739824, 34.53913276110267], [-77.38283394262201, 34.53881752593144], [-77.38279874399723, 34.53879023716714], [-77.382748468724, 34.53871871254596], [-77.38260621195695, 34.538453170379825], [-77.38196884890365, 34.5384758465501], [-77.38151948811858, 34.53851740321937], [-77.38121161211981, 34.53854345665401], [-77.38118321992943, 34.53849868796694], [-77.38065785726296, 34.538151978568884], [-77.38088862335594, 34.537926899205694], [-77.38085498773303, 34.5378477962847], [-77.38080626566136, 34.53780943364805], [-77.38067564973454, 34.5377421660349], [-77.38057145933433, 34.53777264064259], [-77.38041150617585, 34.53790688294771], [-77.38035899303763, 34.53795023981204], [-77.38030381269758, 34.53813913886828], [-77.3801677709248, 34.538222640204474], [-77.37960997341577, 34.53863205329822], [-77.37935352838714, 34.53867029516057], [-77.37882609712472, 34.53857739756693], [-77.37866304635548, 34.53854177568391], [-77.37803955012919, 34.53864058154331], [-77.37750162303217, 34.53876290992744], [-77.37725079737965, 34.53880095786131], [-77.3768720844191, 34.53895338642863], [-77.37682240554203, 34.53896971672441], [-77.37646062446325, 34.53902377942619], [-77.3761277518849, 34.53908802239703], [-77.37567334623648, 34.5391188621837], [-77.37503171690452, 34.539452699586526], [-77.37492917566087, 34.539498394008746], [-77.3748739892035, 34.53974580440284], [-77.3748121175172, 34.539938145509836], [-77.37475360695262, 34.539982441967794], [-77.37481048317883, 34.54001010797517], [-77.37486046981445, 34.540341207469055], [-77.37487340845726, 34.54044528905945], [-77.3748774987339, 34.540454242740424], [-77.37487799249769, 34.54046687943245], [-77.37495332325545, 34.54086760798253], [-77.37498819717514, 34.540927944514436], [-77.37513304702931, 34.541214364248404], [-77.37553360486011, 34.54133898995179], [-77.37557992468759, 34.54135886915882], [-77.37562232980028, 34.54136659497186], [-77.37568414694888, 34.54135568952248], [-77.37633369454794, 34.54127102870097], [-77.37640991196209, 34.54125904550586], [-77.37665175001813, 34.54142264793626], [-77.37670656028533, 34.5414715633046], [-77.37673521382617, 34.54161857990718], [-77.37664142641448, 34.54166896522575], [-77.37651819632995, 34.54176136737173], [-77.37639825614087, 34.541772807244044], [-77.3762809665421, 34.54179377450957], [-77.37600405659674, 34.54184448953827], [-77.37575987234614, 34.54188921013386], [-77.37560837798587, 34.54198130481802], [-77.37532258349817, 34.54217320186426], [-77.37489911128603, 34.54240975674823], [-77.37485720481251, 34.54244353056502], [-77.37456063417666, 34.542948195937164], [-77.3745604920094, 34.54329258971059], [-77.37456754671305, 34.543436858616076], [-77.37463149188127, 34.54352535336671], [-77.37451055600756, 34.543764992697675], [-77.37441385696947, 34.54394866669041], [-77.3743835069383, 34.54405736741197], [-77.37432818605448, 34.544172979804955], [-77.37429345508488, 34.54426407918899], [-77.3741316520851, 34.54447899531092], [-77.37415328266025, 34.54458459897472], [-77.37410350068802, 34.54472788116898], [-77.37420044356116, 34.544817310211904], [-77.37418938465275, 34.544850505102374], [-77.37416857496744, 34.544878053221126], [-77.37409510317678, 34.54492882006466], [-77.37404731942446, 34.54493322895666], [-77.3739712563368, 34.544923159665174], [-77.37385272830963, 34.544935102775476], [-77.37372431786123, 34.54493633916707], [-77.37358001764154, 34.54486375335344], [-77.3735088707839, 34.544858028091326], [-77.37319155349778, 34.54468227072402], [-77.37279558524543, 34.54491517848394], [-77.37304707492385, 34.5446353007228], [-77.37309402295195, 34.544566065322456], [-77.37297849573571, 34.54415552753535], [-77.37274796241456, 34.54398560460644], [-77.37267867600103, 34.543867338953994], [-77.37260769658192, 34.54371930797159], [-77.37278874499724, 34.54347191964241], [-77.3728076295015, 34.543433367786555], [-77.37314992041232, 34.543151510980266], [-77.37318953354495, 34.54312243687555], [-77.37323018024213, 34.542982481651535], [-77.37335997831451, 34.54270864848327], [-77.37338079028271, 34.54262858252887], [-77.3734070161427, 34.54252105893986], [-77.37324640857706, 34.54226835216407], [-77.37322121069695, 34.54217890674956], [-77.37321090863135, 34.54216340924788], [-77.3730024531633, 34.54186169880717], [-77.37284913019394, 34.5417258902078], [-77.37247871082234, 34.54150058464783], [-77.372104839513, 34.54157559621513], [-77.37207779329529, 34.541588259796704], [-77.37168748898762, 34.54176775056915], [-77.37148538534156, 34.54179678696046], [-77.37134305952398, 34.54215227211482], [-77.37123573527312, 34.542448046387186], [-77.37117293116194, 34.54263819849652], [-77.37087791988588, 34.54284104944507], [-77.37058511405641, 34.542726034600676], [-77.37009779998905, 34.54261967061343], [-77.37001506417117, 34.54262393806806], [-77.36940245743044, 34.542655682409496], [-77.36931226716008, 34.54263616225828], [-77.36921522445957, 34.54267927575142], [-77.36783373358948, 34.542877552410815], [-77.36773645596492, 34.542877273874936], [-77.36725056461368, 34.54271693982689], [-77.36665991983526, 34.542800477267875], [-77.36672394053599, 34.542608452242426], [-77.36617365448895, 34.54254754450637], [-77.36559193520651, 34.54277152441897], [-77.3656446706336, 34.54292911591537], [-77.36559527776963, 34.54326069264525], [-77.36480397984145, 34.543513556966914], [-77.36482884346549, 34.543860748433524], [-77.36456683773798, 34.544146412876756], [-77.3642450617214, 34.544235084507015], [-77.36410887340335, 34.54424859427316], [-77.36405676849573, 34.54414347787649], [-77.3639264258994, 34.543990732561376], [-77.36391954257613, 34.54390911867074], [-77.36384993460207, 34.543546125951295], [-77.3639276341536, 34.543500907671024], [-77.36387813692181, 34.54345768251977], [-77.36412075166407, 34.54318115879546], [-77.3641868675508, 34.54297391794442], [-77.36420357796646, 34.54286195956837], [-77.36427708241463, 34.542760492709526], [-77.3645996920952, 34.542707197103255], [-77.36520023108714, 34.54271289399374], [-77.36493688910443, 34.54237623127415], [-77.365001062701, 34.54212496753172], [-77.36500356358286, 34.54212180204525], [-77.36499931846151, 34.54211842740965], [-77.36476307830512, 34.54191161697109], [-77.36461858127497, 34.54187974569416], [-77.3645085144839, 34.54187964230234], [-77.36422603786833, 34.541878292844004], [-77.36389559464251, 34.54199614358741], [-77.36383048001436, 34.54200883092065], [-77.36378163269046, 34.5420227203541], [-77.36374024612846, 34.54205894662317], [-77.36333518069499, 34.54230223408721], [-77.36303796991848, 34.542330764324674], [-77.36269954556373, 34.54248970338245], [-77.36247852450532, 34.542585924812656], [-77.36224563193966, 34.54264488469409], [-77.36147806092987, 34.542860367947924], [-77.36145548843871, 34.542862756379265], [-77.36144027185242, 34.542870473663775], [-77.36143024940607, 34.54288129643334], [-77.36120023634729, 34.54307063863226], [-77.361084745441, 34.54319422534574], [-77.36126594909436, 34.54339460681903], [-77.36118784953486, 34.5435627776139], [-77.36143348915033, 34.54382486963321], [-77.36145378499005, 34.54384427160982], [-77.36145496156635, 34.5438570358072], [-77.36145027924096, 34.543868807255876], [-77.36143048180777, 34.543956392850944], [-77.36126682088596, 34.54427627934492], [-77.36135867902071, 34.544360550836394], [-77.36139872344297, 34.54436870967303], [-77.36142070598139, 34.54438392965718], [-77.36161558957701, 34.54456837663939], [-77.36166534679953, 34.54464968447516], [-77.36167505361095, 34.544804637543244], [-77.36174993032843, 34.545008061574], [-77.36175636788272, 34.54503775173419], [-77.36175778488112, 34.54506249063974], [-77.36197694779784, 34.545118512158794], [-77.36218867468769, 34.545136878524744], [-77.36224899547685, 34.545173490618026], [-77.36227513691811, 34.5452078643428], [-77.3625775192092, 34.5453008917615], [-77.36294845529672, 34.54512687585713], [-77.36297419054932, 34.545122384728835], [-77.36298383963536, 34.54511165933484], [-77.3629883550139, 34.5451051445299], [-77.36301255279844, 34.54507836331916], [-77.36326380228996, 34.54475113898187], [-77.36352342483897, 34.54469170403187], [-77.36376913565738, 34.544694969705795], [-77.36398705639814, 34.54482357054076], [-77.3640987593972, 34.544945211242734], [-77.36425298635426, 34.545105071965295], [-77.36449080235681, 34.54534808386416], [-77.3644529775588, 34.54538384192951], [-77.3640216754535, 34.54561657622904], [-77.3637496848128, 34.54554669160763], [-77.36342321089167, 34.54573310003906], [-77.36335197811712, 34.5457705218446], [-77.36331880272259, 34.54577134959907], [-77.36333210847661, 34.545802051544804], [-77.36325130338162, 34.54604657254684], [-77.36326023264412, 34.546239580569264], [-77.36326738775456, 34.546289081579935], [-77.36328751999127, 34.546318571802075], [-77.36324646052198, 34.54648124340366], [-77.36322943745066, 34.546539372583936], [-77.36314813216327, 34.54666545363151], [-77.3631414252173, 34.54667850626541], [-77.36295557376236, 34.54682364088187], [-77.36293495520805, 34.54683974226737], [-77.36259731886652, 34.54691052146064], [-77.36253772824581, 34.547042213210936], [-77.36243232903455, 34.54714382413037], [-77.36223162147382, 34.54722933415042], [-77.36213985766418, 34.54727275691223], [-77.36166616993447, 34.547743811724054], [-77.36173385238666, 34.54797720549563], [-77.36173288980464, 34.54798015468256], [-77.36173113403119, 34.54822410596552], [-77.3617481716776, 34.5484491357118], [-77.36175188065296, 34.54848612401088], [-77.3615973400754, 34.548733022308575], [-77.3617557281822, 34.54892618427319], [-77.36176161677344, 34.54898759064706], [-77.36176982422278, 34.549197832478086], [-77.36182070022817, 34.54935978070251], [-77.36202900619332, 34.549614405417174], [-77.36199511692689, 34.54965503683206], [-77.36203157769465, 34.54968295664239], [-77.36200910491688, 34.55010145239182], [-77.36200462567932, 34.550143316967365], [-77.36199664286637, 34.55019216401724], [-77.36188003153146, 34.55053538782035], [-77.36176154396506, 34.5506679719541], [-77.36184671874267, 34.5507883940452], [-77.36182428832265, 34.55100499837262], [-77.36181752723465, 34.55114955952118], [-77.36181598032823, 34.55129442473908], [-77.36179253853852, 34.55148628165152], [-77.36179061347251, 34.55164308451646], [-77.36176360154948, 34.55181683231456], [-77.36173568781388, 34.55195535378873], [-77.36175734890077, 34.55213752402936], [-77.36178273615636, 34.552285119767916], [-77.36179844263557, 34.55237643079132], [-77.36192759076452, 34.552545440181085], [-77.3619424150332, 34.55260052232909], [-77.36194646040897, 34.5526439857957], [-77.36201631146767, 34.55267838878781], [-77.36221360429991, 34.552684579353546], [-77.3624447486414, 34.55274966135378], [-77.36279803605164, 34.55283295487467], [-77.36321014186612, 34.552907601937065], [-77.3634179160652, 34.552978724210355], [-77.3635803889614, 34.55296011506816], [-77.36386841471175, 34.552992862921755], [-77.36401674107381, 34.55300830978364], [-77.36436328148022, 34.55306372242217], [-77.36457803556438, 34.55306629569067], [-77.36506376927336, 34.55307762114309], [-77.36514834514406, 34.55307224171745], [-77.3654945207592, 34.55306823821688], [-77.36578303621259, 34.553119889358946], [-77.36593245847635, 34.55312241737877], [-77.36625988494609, 34.55316273604117], [-77.36671891903451, 34.553069659061265], [-77.36686427838985, 34.55326713853463], [-77.3669993230598, 34.55334113280773], [-77.3674906388056, 34.55366368608113], [-77.36755581951526, 34.55370932902677], [-77.3678825841666, 34.553693781895454], [-77.36790277306883, 34.55370064083337], [-77.36814810786112, 34.5538033794806], [-77.36827622178284, 34.553794704010194], [-77.36840143607546, 34.553841082918304], [-77.36844530873046, 34.55386476230034], [-77.36847312711345, 34.55390030446296], [-77.36862341085914, 34.554021383930134], [-77.36863611182568, 34.55405609250842], [-77.36866997578275, 34.5541417772325], [-77.36878354786343, 34.55442287230789], [-77.36891475333553, 34.55456450957552], [-77.36906363195163, 34.55473225600134], [-77.36932581467838, 34.55491120098606], [-77.36945745727098, 34.55492442687235], [-77.36978109688185, 34.55512827531699], [-77.36979542382083, 34.55518638785293], [-77.36985123354404, 34.555241980247125], [-77.36993744244856, 34.555198648526], [-77.37039143624558, 34.55530719132704], [-77.37063894253708, 34.55550461416257], [-77.37090804064769, 34.55525584195804], [-77.37119964078883, 34.55516882568788], [-77.37142691103585, 34.5551080847259], [-77.37162030200105, 34.555071709649255], [-77.37205896248412, 34.55480007786857], [-77.3721862612092, 34.55475091415642], [-77.37221486119988, 34.55473986850149], [-77.37233551202993, 34.55463023170658], [-77.37323127554103, 34.55463115037297], [-77.37372428061278, 34.55463149720856], [-77.37379050586178, 34.554655556075744], [-77.37440758565025, 34.5553107616381], [-77.37449207266346, 34.5553912596502], [-77.3743487084676, 34.555743807968746], [-77.37446301829905, 34.55585115025686], [-77.37457783097943, 34.55603324504015], [-77.37461551393606, 34.556089283742416], [-77.37460836554503, 34.55613095029123], [-77.37463606385442, 34.55618978159492], [-77.37465461864215, 34.55623042508303], [-77.37464869696265, 34.55626095305039], [-77.37466193138071, 34.55633551155609], [-77.37458856792884, 34.55654659958041], [-77.374586971265, 34.55655859481156], [-77.37457764121436, 34.55657803893222], [-77.37435630361949, 34.55677791303362], [-77.37411041555056, 34.55705183075173], [-77.37423072321623, 34.55740808982136], [-77.37428204785583, 34.55755799847468], [-77.37440888455933, 34.5578579423818], [-77.37448101381362, 34.55795117754988], [-77.37457711213463, 34.55810028950246], [-77.3747213758316, 34.5582374712375], [-77.37457700922532, 34.55839691967543], [-77.37431848544988, 34.55829553068882], [-77.37422810747245, 34.55826008583108], [-77.37418314548096, 34.55823524174909], [-77.37407038210978, 34.558209738766124], [-77.37378926379408, 34.55812812054965], [-77.37354860598963, 34.55824124233277], [-77.37325200825654, 34.558024650017714], [-77.37300152131976, 34.55786433386568], [-77.37282774782645, 34.557898506502355], [-77.37289190730239, 34.55807653914674], [-77.37265414547196, 34.55858580792997], [-77.37260835620111, 34.55896651698559], [-77.37244317423631, 34.559238210435396], [-77.37238138333662, 34.55966687349011], [-77.3723101853827, 34.559858600901], [-77.37229531229502, 34.55994956112753], [-77.37237059993109, 34.56052882387898], [-77.37252314077713, 34.56067703658576], [-77.37269047516874, 34.5609869265802], [-77.37300022908441, 34.56140639129814], [-77.37303446126799, 34.561452482056055], [-77.37333461215192, 34.56189778155258], [-77.3737879399554, 34.56185599276167], [-77.3739403135499, 34.562006798632225], [-77.37418182905729, 34.56199305885749], [-77.37426265384939, 34.562037501853766], [-77.37437877478193, 34.56205957138136], [-77.37448743831753, 34.56209223482074], [-77.37455160084336, 34.56210899014015], [-77.37457572128663, 34.56212471599838], [-77.37461764809076, 34.562118654944975], [-77.37487701365296, 34.56213593887068], [-77.374969627906, 34.56221751608474], [-77.37507965970906, 34.562125444403044], [-77.37523103706712, 34.56212794205177], [-77.37536359469804, 34.562132839184194], [-77.37554298163008, 34.56213345605081], [-77.37557395172124, 34.56213351252642], [-77.37575751555566, 34.56218478914838], [-77.37587465110236, 34.56219064382274], [-77.3761514644759, 34.562151691739835], [-77.37625693757336, 34.56214812320395], [-77.37634843563686, 34.562144881627326], [-77.37646294199033, 34.562143231816094], [-77.37654540757316, 34.56213554113025], [-77.37661682523606, 34.56213295886196], [-77.37693933828992, 34.56215784414964], [-77.37696465838121, 34.56215979778465], [-77.37720165570913, 34.56226745571271], [-77.37733324681238, 34.562252002903676], [-77.37742500152643, 34.56219231842416], [-77.3776048777616, 34.56206752549103], [-77.37772726561224, 34.56198882114909], [-77.37805797332535, 34.56200222060386], [-77.37810429070593, 34.562013763124455], [-77.37815128958319, 34.56202120733334], [-77.37851516059449, 34.56191709200938], [-77.3790757416833, 34.5614309584924], [-77.37918371933426, 34.56128660765661], [-77.37930321511047, 34.56128519827075], [-77.37943264680221, 34.56124003096691], [-77.3796972050264, 34.561085133357025], [-77.37986564876904, 34.561074071989886], [-77.37991061364289, 34.56108061421784], [-77.38009109951712, 34.56122036119749], [-77.380122522377, 34.561246195149735], [-77.3801631171749, 34.56127421737802], [-77.38025440412872, 34.56143712538184], [-77.38029987895625, 34.56167906723328], [-77.38009085095818, 34.56211312934704], [-77.3800794815904, 34.56212315167937], [-77.38006591009777, 34.56213735827092], [-77.38008289358737, 34.562143476986485], [-77.38009084140464, 34.562147489223214], [-77.38012293358022, 34.562163730147645], [-77.38087861328792, 34.562528755319065], [-77.38093716227795, 34.562797715017396], [-77.38096745213687, 34.562856527204666], [-77.38127241185057, 34.56306083370139], [-77.3813606629027, 34.563129276426395], [-77.38148190993735, 34.56320692863986], [-77.38158313729733, 34.56328195847172], [-77.38166627772105, 34.56335238364728], [-77.38180179248906, 34.563439305521946], [-77.38202799390191, 34.56355276852], [-77.3821358153685, 34.563880174722534], [-77.38245398335275, 34.56407379900684], [-77.38254940520174, 34.564223849984074], [-77.38278569164314, 34.56429266421043], [-77.38324168392224, 34.56487366652765], [-77.38341463937743, 34.5648647240805], [-77.38349198491557, 34.565039967805546], [-77.38353128461368, 34.5653465273609], [-77.38355069636994, 34.56588063480022], [-77.38375087427569, 34.566151821262736], [-77.38402921675167, 34.56647602254336], [-77.38409572266781, 34.566579488712186], [-77.38409336796275, 34.56665152705477], [-77.38402912904262, 34.5668613716705], [-77.38391397511828, 34.56740255615716], [-77.38382508681697, 34.567539338614075], [-77.38383053070665, 34.56775235910762], [-77.38402891724411, 34.567793863510786], [-77.38427921599467, 34.568322996284145], [-77.38438013794706, 34.56877883577914], [-77.38481657758787, 34.569018168840785], [-77.38484551272535, 34.56905928912936], [-77.3849598038186, 34.56907400228119], [-77.38545966368372, 34.56915799975064], [-77.38560447453904, 34.56921286377045], [-77.38584493773712, 34.569205515442334], [-77.38599844310997, 34.56921684054234], [-77.38622783092688, 34.5690685638411], [-77.38639245554238, 34.56899886136379], [-77.38646733586792, 34.56893731653149], [-77.38658103204894, 34.56884023905137], [-77.3867864783262, 34.56871616106294], [-77.38701726258536, 34.568601454003826], [-77.38718048537001, 34.568503023521956], [-77.38756048449338, 34.56828952444912], [-77.38796848196603, 34.56813943083534], [-77.3881617002587, 34.5679713612386], [-77.38836248854706, 34.56789475197765], [-77.38845764949735, 34.567823026434006], [-77.38867400993075, 34.567689283904315], [-77.38873539675706, 34.56765769734191], [-77.38875649571759, 34.5676330646344], [-77.3890464246839, 34.56721100668372], [-77.38909557612665, 34.56714468568086], [-77.38930767733831, 34.567004004219996], [-77.38954450555141, 34.56709161660883], [-77.3898618271786, 34.566668837635646], [-77.38972580367962, 34.56649317329115], [-77.3895758169876, 34.566285519112895], [-77.3895446421309, 34.566245642874385], [-77.3893950929002, 34.56604822032668], [-77.38934770765029, 34.565984703348875], [-77.38932061915729, 34.56589775576637], [-77.38934773274019, 34.56583210650976], [-77.38941990295581, 34.56574891641955], [-77.38954473830515, 34.56565216128985], [-77.38979785023821, 34.56555615946491], [-77.39005681492864, 34.565494286145174], [-77.39033271391729, 34.565181554583276], [-77.3906499112407, 34.56519874698146], [-77.39057470876676, 34.56486774084733], [-77.39112072442632, 34.56440594185926], [-77.39134926776255, 34.56415315113602], [-77.39170428963651, 34.563855670193206], [-77.39179573637445, 34.5637207244264], [-77.3918901784353, 34.5634042866035], [-77.39190875728701, 34.563357677063216], [-77.39200994728051, 34.56338701006221], [-77.39225855540866, 34.56339871716214], [-77.39230268800071, 34.56343271727144], [-77.39234575969732, 34.56355085442024], [-77.39232116966608, 34.56374672397082], [-77.39231852456756, 34.56376706838014], [-77.39230262189258, 34.56393892083623], [-77.39226722910537, 34.56416092509946], [-77.39223422684437, 34.56420379876046], [-77.39217104326495, 34.564354661443275], [-77.39198220373456, 34.564664722914806], [-77.39201333216256, 34.56477314244442], [-77.39190851148143, 34.56517997476842], [-77.3917519820066, 34.56554707163604], [-77.39167798705938, 34.56580609484182], [-77.39153716052084, 34.56602710967627], [-77.39125676448846, 34.56646764254023], [-77.39126033899548, 34.566617932702776], [-77.39114420159464, 34.567307269058595], [-77.39113500064697, 34.56733434551046], [-77.39112927076494, 34.56734483596903], [-77.39112030025521, 34.56736778606785], [-77.39092628318971, 34.56800459597124], [-77.39088243507119, 34.5682199136486], [-77.39084601453101, 34.568520583249935], [-77.39085361764134, 34.56864863974231], [-77.39112009980332, 34.568783315136415], [-77.39128490001701, 34.56883339441204], [-77.39139091446796, 34.56886300648035], [-77.39151405040558, 34.568898439765064], [-77.39176607196018, 34.56894160074202], [-77.39187256826352, 34.56896443291749], [-77.39190800612752, 34.56898241602045], [-77.3920113023953, 34.569017553394744], [-77.39230195613231, 34.56911727579936], [-77.39243235677405, 34.569129532847086], [-77.39256031941062, 34.56910546698491], [-77.39269593239237, 34.56904669966142], [-77.39290175586581, 34.568999589754554], [-77.39298438182242, 34.56876586558833], [-77.39299264116161, 34.56865981117156], [-77.39298146790692, 34.56845864511738], [-77.39290751222907, 34.568352383265704], [-77.39269604892206, 34.56809440107084], [-77.39263512414749, 34.56803277045712], [-77.39260293603012, 34.56797174735054], [-77.3926406402884, 34.567906570151166], [-77.39269608788669, 34.5677774101067], [-77.3929378561991, 34.567334789107306], [-77.39300892710331, 34.56706404178079], [-77.39304022826772, 34.5670057357048], [-77.39309014748557, 34.566947230113726], [-77.39313284945878, 34.56700013855632], [-77.39316876942631, 34.567040983997586], [-77.3933001343844, 34.56722026622466], [-77.3933643921308, 34.56730836507635], [-77.39344667321829, 34.56742546604222], [-77.39346419865197, 34.56744432963792], [-77.39348404622373, 34.56746088495013], [-77.39367763716757, 34.56760806720102], [-77.39387799291987, 34.56757937521763], [-77.39412573134902, 34.5675944952212], [-77.39427195008837, 34.567607280783974], [-77.39442870495112, 34.56753944128895], [-77.39466592458946, 34.567462921134585], [-77.39483707776063, 34.567409330529145], [-77.39497263880065, 34.5672993677217], [-77.3950599059546, 34.567231104722836], [-77.39510094486934, 34.56723104370523], [-77.39537633871232, 34.56723063407664], [-77.39545386209399, 34.56725407735834], [-77.39555746080345, 34.567232600018556], [-77.39584782216937, 34.56723257484768], [-77.3960085537221, 34.567229092957135], [-77.39607269325555, 34.56722884436613], [-77.39624177375029, 34.567312676251404], [-77.39632512978565, 34.5674347684532], [-77.39624175845196, 34.567502130772], [-77.3960643118719, 34.56766361993792], [-77.39604476413396, 34.567678844710954], [-77.39603729967126, 34.56768053823407], [-77.395847773561, 34.56780203631722], [-77.39548947454233, 34.567941459661185], [-77.39545379999937, 34.56794379312253], [-77.39541614444917, 34.56794990467411], [-77.3954101106549, 34.567991356075375], [-77.39538435225722, 34.56806990333428], [-77.39518908091125, 34.568447816061195], [-77.39545372211687, 34.56881440932711], [-77.395459128938, 34.56882760012217], [-77.39545912849368, 34.56883342835737], [-77.39546378080821, 34.56884360004768], [-77.39559322943829, 34.56923865336013], [-77.3956793663501, 34.56940756913351], [-77.3956933867424, 34.56948254922408], [-77.39557870471714, 34.56966532098026], [-77.39552425602767, 34.56974927831247], [-77.39545362795411, 34.56987549917222], [-77.39532256482042, 34.57012684624759], [-77.39528636133963, 34.57037643060076], [-77.39529348226272, 34.570728115383055], [-77.39553817305989, 34.570944884231544], [-77.39566236490715, 34.57112647337972], [-77.39584747569236, 34.571354503244706], [-77.39605260799156, 34.57149873412584], [-77.39641263961504, 34.57166786745452], [-77.39652068494806, 34.571775901642866], [-77.3966353524508, 34.57242891473383], [-77.39665612951363, 34.57245949048631], [-77.396674353136, 34.572479254001465], [-77.3966453907672, 34.57249425542694], [-77.39663534727225, 34.57250035730287], [-77.39661907570665, 34.572504763618504], [-77.39584735898053, 34.57277649833414], [-77.39563284910244, 34.572860669656386], [-77.3953566382585, 34.5729897073065], [-77.39532264123807, 34.573239677458105], [-77.39523883105574, 34.57353550139368], [-77.39521304178191, 34.57370489075866], [-77.39523802200142, 34.574192126341345], [-77.39523677279475, 34.57438494200724], [-77.39538594986149, 34.574715514109386], [-77.39541330765486, 34.57478404655844], [-77.39541369532671, 34.57482656026344], [-77.395618422605, 34.57517902732976], [-77.39565479472577, 34.57538105984936], [-77.39584713931308, 34.575503584494236], [-77.39642615729072, 34.57591164186627], [-77.3965118697717, 34.5760320634646], [-77.39646128907445, 34.57675571831327], [-77.39658551363618, 34.57753362393245], [-77.39659098304678, 34.57758615261308], [-77.39661826153197, 34.57760024117205], [-77.39663498776038, 34.57760346745552], [-77.39666990373219, 34.577612391948435], [-77.39702898517672, 34.5777519061696], [-77.39713673388768, 34.577815876961914], [-77.39732829721149, 34.577802312661305], [-77.39742298953755, 34.57780496307582], [-77.39756288978054, 34.57771975685062], [-77.39764375373782, 34.577672146841294], [-77.39781701360671, 34.577503742846424], [-77.39798448887743, 34.577385103308536], [-77.39802986054701, 34.57718332499476], [-77.39821104809315, 34.57693844201498], [-77.39860067591215, 34.576876341708406], [-77.39860505444332, 34.576872813812884], [-77.39860725302658, 34.57687304383063], [-77.39899905425058, 34.576952544935835], [-77.39914649331394, 34.57695174625021], [-77.3991960557175, 34.57695780848195], [-77.39924606805312, 34.576936894555985], [-77.39939305981925, 34.57689073461937], [-77.39950135204936, 34.57685835668208], [-77.39978706760498, 34.576738982971435], [-77.40003736564864, 34.57650945581582], [-77.40018107815139, 34.57642524150477], [-77.4004533201962, 34.576310929552534], [-77.4005750827035, 34.57624846601422], [-77.4006350455126, 34.57621811158924], [-77.40071073456286, 34.5761425738117], [-77.40114868492986, 34.57584833216468], [-77.40136308924218, 34.575698471073], [-77.4014049512489, 34.57566292744954], [-77.40150578801625, 34.57560326486294], [-77.40168362191939, 34.57549843271418], [-77.4017570883079, 34.57545507920405], [-77.4019666754643, 34.57531089774322], [-77.40215108501856, 34.5752163261076], [-77.4022244907857, 34.57515407154503], [-77.40232519435426, 34.57506043473552], [-77.40254507938461, 34.57478289241679], [-77.40268091377911, 34.57473089869039], [-77.4029390698122, 34.57436274752591], [-77.40320616612624, 34.57408413581797], [-77.4034259136065, 34.573727912297], [-77.40349613083936, 34.573441967470764], [-77.40346273704185, 34.5731979523263], [-77.4033750103323, 34.57283126065186], [-77.40372702893828, 34.57277510843985], [-77.40374834724905, 34.57275512712754], [-77.40403145226708, 34.57278780436912], [-77.40412101205555, 34.57279934159765], [-77.4042615054714, 34.572809487017295], [-77.40451499519466, 34.572816391975465], [-77.40500202043685, 34.57245091389094], [-77.40530294398796, 34.57229273114061], [-77.40542407946413, 34.57219624074986], [-77.40592907447878, 34.57199279648623], [-77.40609088949434, 34.57193545100476], [-77.40612147214787, 34.571932064734256], [-77.40675074819764, 34.571736143714205], [-77.40687883234247, 34.57166307674098], [-77.40702620791366, 34.57167559150248], [-77.4072728073053, 34.571629790041115], [-77.40761060768648, 34.57168950210463], [-77.40766678639592, 34.571672113605935], [-77.40770214895753, 34.57169872203234], [-77.4078100886731, 34.57172124609799], [-77.40832041390769, 34.571792336234736], [-77.4084547544467, 34.57188553258471], [-77.40868291972188, 34.5718411213165], [-77.40889517820781, 34.57193911399131], [-77.4089915960649, 34.57197524286222], [-77.40915342069366, 34.572048115867815], [-77.40924272293023, 34.57205775563854], [-77.40941923356466, 34.57210371574804], [-77.40944945528085, 34.57211092989512], [-77.40963671781466, 34.572257889197864], [-77.4097287983959, 34.57229338153542], [-77.40989577974528, 34.57241468160524], [-77.41003071936177, 34.57251210102362], [-77.41016114634745, 34.57237152528984], [-77.41042467864244, 34.57228746665111], [-77.41054689076363, 34.57217525634228], [-77.41064717816357, 34.57197600835312], [-77.41081858133147, 34.57150199008345], [-77.4109368801908, 34.57139728251947], [-77.41139148470677, 34.571204137471206], [-77.41153889425243, 34.57111000357249], [-77.41160648820777, 34.5710920755254], [-77.41166945194732, 34.571096143096085], [-77.4122238376612, 34.570900113311126], [-77.4123876553839, 34.570635702943505], [-77.41239191365425, 34.57063242849446], [-77.41239438029294, 34.57062258186796], [-77.41249905308624, 34.57030787930462], [-77.41259783780824, 34.57018076840402], [-77.41249736528448, 34.57008422389879], [-77.41239431301129, 34.570037516973144], [-77.41230274468549, 34.56989746951726], [-77.41210078313756, 34.56982796880657], [-77.41205983023909, 34.56976974302171], [-77.41192264628184, 34.5697699887179], [-77.41160635319035, 34.56981394146008], [-77.41142472812669, 34.56969674039015], [-77.41111051917453, 34.56954638843133], [-77.41094322086636, 34.569436007077655], [-77.41081837789685, 34.569388015285654], [-77.41065412838822, 34.56918771199486], [-77.41061784756995, 34.568984443179644], [-77.41057372035168, 34.56877474245236], [-77.41045419414199, 34.56839961491092], [-77.41045392817423, 34.568367460883685], [-77.41081824124791, 34.56794839854082], [-77.41086755731085, 34.56793630295201], [-77.41156189549747, 34.56783057610079], [-77.41160614486978, 34.567820375866354], [-77.41163145473176, 34.56780012084989], [-77.41170636646535, 34.56776202332352], [-77.41200007716661, 34.56758557685615], [-77.41222365722516, 34.56768732028538], [-77.41229853015325, 34.567779458046076], [-77.41239407285198, 34.567931133747365], [-77.4126212688765, 34.56823423994311], [-77.4128943318592, 34.56843962528487], [-77.41318206863549, 34.56857915308966], [-77.413563082067, 34.56875364728742], [-77.41358713645431, 34.568752204900775], [-77.41396999042595, 34.56857793576867], [-77.41418129229018, 34.56887523789081], [-77.41453404173376, 34.568810666625296], [-77.414574149918, 34.568395033037305], [-77.41429422264578, 34.568237445994484], [-77.41460838689264, 34.56803100594905], [-77.41475781594224, 34.56790034087292], [-77.41496855890631, 34.5675180691409], [-77.4150940460406, 34.56727275977442], [-77.41515166916375, 34.567186631949646], [-77.41532957425267, 34.56700592242506], [-77.41539562652937, 34.5668046168082], [-77.41554553101761, 34.56657306118043], [-77.4156304113011, 34.566437623310115], [-77.41576029952145, 34.566327359367534], [-77.41593941952087, 34.5661684046156], [-77.41617590598128, 34.56609763054832], [-77.4163333415175, 34.56599793605031], [-77.41664292946854, 34.56568441496624], [-77.4167272196344, 34.56556984999085], [-77.41682252961198, 34.565427500756186], [-77.41702559929595, 34.56529541847099], [-77.4170906703981, 34.56525320865746], [-77.41712110792996, 34.56522594672907], [-77.41742319442953, 34.56481339847352], [-77.41735714541815, 34.56465285672401], [-77.4172913962945, 34.56440785459846], [-77.41751487263087, 34.564182759072224], [-77.4176994035815, 34.56434891268349], [-77.41763700403189, 34.564650966004734], [-77.41790891321969, 34.56475479028006], [-77.41804238808137, 34.56500472150968], [-77.41830290314542, 34.56501854541072], [-77.41866553050653, 34.56502475316165], [-77.41869684720656, 34.565023268892986], [-77.41872924755228, 34.56501437830386], [-77.41909076515999, 34.564891640814636], [-77.41932239631102, 34.56478869017948], [-77.41948005582468, 34.56409650372917], [-77.41947963725123, 34.56409171832006], [-77.41947860811463, 34.56408546307778], [-77.41948454626227, 34.56406732165264], [-77.41971019443884, 34.56345257051875], [-77.41974976498389, 34.56320352012456], [-77.41964987681561, 34.56303954098246], [-77.41948428055308, 34.56270372017899], [-77.41939281948345, 34.562405922797765], [-77.41940692128045, 34.56232058640696], [-77.41946942537206, 34.56197027017388], [-77.41948413571016, 34.561957877548906], [-77.4195046859502, 34.56196517562121], [-77.41978012586495, 34.56203095446082], [-77.41987809915122, 34.56213369045657], [-77.42022415747984, 34.56228580717024], [-77.42022004897785, 34.562342470641944], [-77.42027211059536, 34.56253723758398], [-77.420520439599, 34.563092167445184], [-77.42087320981483, 34.563242651543405], [-77.4210601222569, 34.56323827598405], [-77.42129749754712, 34.56323573341777], [-77.42162068791046, 34.56317816175547], [-77.42184795872981, 34.5630951533057], [-77.42199796676282, 34.56304036377344], [-77.42218257531766, 34.56285199394836], [-77.42224182285742, 34.56279082618201], [-77.42242127227425, 34.56258637830265], [-77.42263566750563, 34.56241491191607], [-77.42266105804606, 34.5623856375517], [-77.42271954512154, 34.56234981176802], [-77.42294323454779, 34.56222445040644], [-77.42313787455875, 34.5621725923277], [-77.42316256442402, 34.56228579036374], [-77.42323154547515, 34.56248276188516], [-77.42323313051739, 34.56249494457088], [-77.42307271111731, 34.562723362018005], [-77.4230296771079, 34.562750929686075], [-77.42277640629669, 34.562917745422574], [-77.42263584160806, 34.56316463279311], [-77.42261498642156, 34.56319160950584], [-77.42260702582078, 34.56321524462219], [-77.42243892674352, 34.563390314146574], [-77.4224080909334, 34.56342304193977], [-77.42232720762522, 34.56346797319812], [-77.4222419881783, 34.56351666281421], [-77.42208802226884, 34.563548876076176], [-77.42199436797863, 34.5635706762406], [-77.4218480550719, 34.56352685459518], [-77.42159613716272, 34.56351439102544], [-77.4214541379456, 34.56361099501481], [-77.42138576352171, 34.56374258027013], [-77.42125565744033, 34.563835105133634], [-77.42113600868316, 34.56393402348581], [-77.42106028850137, 34.564015159120295], [-77.42067359065175, 34.56435152245781], [-77.42066642358104, 34.56436382293114], [-77.42054569761011, 34.564656676032754], [-77.42034493905848, 34.56481586647072], [-77.4202999749605, 34.564851884652526], [-77.42027258512346, 34.56485712432255], [-77.420232314912, 34.56487554576019], [-77.41998485418264, 34.56498233879833], [-77.41987867391454, 34.565011012629526], [-77.4196465115003, 34.565091124296984], [-77.41948476322408, 34.56517529153185], [-77.41918280506063, 34.56540835774162], [-77.41921067382282, 34.56553343306815], [-77.41934196140902, 34.56580994794009], [-77.41936143619196, 34.56594021387821], [-77.41948492167211, 34.565981570194495], [-77.41955612042577, 34.56612688650677], [-77.41961888916134, 34.566194522845464], [-77.41968194684662, 34.56623965096449], [-77.4198223350475, 34.56622611269849], [-77.41987892337046, 34.566250388041524], [-77.41996303996186, 34.56623546090775], [-77.4201303470967, 34.566120626874955], [-77.42023058686152, 34.56606061245229], [-77.42027281864239, 34.56599151722976], [-77.42047845305152, 34.565867400120325], [-77.42083296684785, 34.5658399461209], [-77.42106070336959, 34.56594500737559], [-77.42142365471884, 34.565967167074405], [-77.42184859549393, 34.5659368762213], [-77.42215516947817, 34.5659222209325], [-77.42224253546223, 34.56590728479488], [-77.42231065121564, 34.56587900983101], [-77.4226363843942, 34.56549042604593], [-77.42272054051237, 34.565412494129276], [-77.42285209501438, 34.565302761773836], [-77.42283875065662, 34.56508648009031], [-77.42288801997303, 34.56487298428112], [-77.42283522621912, 34.56467054411953], [-77.42303016094775, 34.56478667261068], [-77.42306934777226, 34.56480455006723], [-77.42342415872915, 34.56501930216973], [-77.42356230572761, 34.565051243933056], [-77.42409977451496, 34.56512245681233], [-77.42417589048966, 34.565150457205995], [-77.42421207610589, 34.565150377353255], [-77.42424785509105, 34.565139621720085], [-77.42431249406857, 34.56509171488671], [-77.42477912118963, 34.56478635937558], [-77.42499981951893, 34.56460937716881], [-77.42537308684003, 34.56453610580453], [-77.42539373726298, 34.56452615567539], [-77.42540265344415, 34.564519184691655], [-77.42571091101874, 34.564547764296975], [-77.42578767726314, 34.56452813102099], [-77.42586964639604, 34.56453042317275], [-77.42606854949042, 34.56453519503971], [-77.42618163919616, 34.56460973676282], [-77.42646610241204, 34.564780456364225], [-77.42647004046592, 34.56489372158663], [-77.4265756530848, 34.56487387303611], [-77.42672889949162, 34.56490762972183], [-77.42706770484352, 34.564693499768936], [-77.42732486746314, 34.56461473417056], [-77.4273634225954, 34.56448740597817], [-77.42761225799843, 34.56403394815128], [-77.42809762452711, 34.56369544916898], [-77.4276128149705, 34.56349641955576], [-77.42756847704553, 34.563144191148], [-77.42799912976619, 34.56302404928928], [-77.42815101848134, 34.56354559610623], [-77.4281976400135, 34.563680991573435], [-77.4283177954249, 34.56433329965652], [-77.42851749050502, 34.56448393370583], [-77.42879661744949, 34.56459727250859], [-77.42893923498353, 34.56467271689018], [-77.42927044985714, 34.564867344288956], [-77.4296587361222, 34.56516813227768], [-77.42994326914966, 34.565743576406426], [-77.43051531421001, 34.565652835563526], [-77.43080141655348, 34.5658521185655], [-77.4310873103511, 34.56604361339934], [-77.43130348793878, 34.566498510372455], [-77.43142306159787, 34.56661142553138], [-77.4313179031159, 34.567460626237015], [-77.43132044039127, 34.56749335123595], [-77.43154128785726, 34.568292696065306], [-77.43167901121652, 34.56871805339978], [-77.43180300323532, 34.569104039830336], [-77.43187462936362, 34.56932835563727], [-77.43200334206166, 34.569828117722956], [-77.43202588372004, 34.56992099882022], [-77.43176473306477, 34.57002997199364], [-77.43169865789599, 34.57004278725548], [-77.43137370787173, 34.570089649726384], [-77.43130471313702, 34.570100100340596], [-77.43052419751001, 34.57014607489804], [-77.43051679979024, 34.57014868218232], [-77.43050534098082, 34.57015317835384], [-77.43012287655706, 34.57027644963714], [-77.4298582008629, 34.57023437959941], [-77.42979037527162, 34.5701779075127], [-77.42981504638726, 34.569484545080265], [-77.42987797343167, 34.56938234097369], [-77.42979967812947, 34.56931705679524], [-77.42972859525345, 34.569297723047065], [-77.42959342371665, 34.56899888590102], [-77.42951712004066, 34.56881307616144], [-77.42950864694768, 34.56877427307872], [-77.429547059177, 34.5685809984448], [-77.42957328030565, 34.568410123540524], [-77.42972822546166, 34.568147752301265], [-77.42998023082744, 34.5679408718481], [-77.43028362621229, 34.56762533738488], [-77.43009608328131, 34.56725567135692], [-77.42972794890098, 34.567285828678], [-77.42903765112987, 34.566956278541795], [-77.42898166186944, 34.566919396080685], [-77.42893992447856, 34.56689712405714], [-77.42888679146189, 34.56692081297483], [-77.42832880872695, 34.5668682010389], [-77.42815201428095, 34.566863787991736], [-77.42776517267883, 34.56672333503784], [-77.42775661220533, 34.566718384735694], [-77.42775546057062, 34.56671703272582], [-77.42769508486215, 34.56665794782602], [-77.42756603218895, 34.56653211938759], [-77.42756584916167, 34.56652690883764], [-77.42753793151692, 34.56632388661554], [-77.42770226805882, 34.56593538307652], [-77.4277202075892, 34.565832478200605], [-77.42789062428935, 34.56542372743961], [-77.42770508243807, 34.56508249390303], [-77.42736351857485, 34.56481807433633], [-77.42712364309682, 34.565275912210964], [-77.42679436973356, 34.56534659736014], [-77.42657581288593, 34.565442165068646], [-77.42641127848987, 34.565460217786416], [-77.42614253666267, 34.56567639930208], [-77.42587919579631, 34.56581272198691], [-77.42578805792266, 34.56592848444515], [-77.42524122914483, 34.56639615931446], [-77.42500031513995, 34.566496599076125], [-77.4249040143415, 34.56660075714761], [-77.42480817309493, 34.56671842838608], [-77.42460647891002, 34.56693226194749], [-77.42446383429387, 34.56703901246202], [-77.42440955073067, 34.5671167916532], [-77.42433628968332, 34.567077865810994], [-77.42421252279358, 34.56691236808458], [-77.42419308571627, 34.56682824589931], [-77.42415537682238, 34.56681276983066], [-77.42385091131027, 34.56639718652603], [-77.42342452808333, 34.56653373404705], [-77.42319043512444, 34.566699873682744], [-77.42282351544296, 34.566803885951565], [-77.42263670879927, 34.56687253730622], [-77.42250518712173, 34.566909478263625], [-77.42184911608184, 34.56714603903203], [-77.42184892278767, 34.56714612581148], [-77.42184886820206, 34.56714620161716], [-77.42184875778926, 34.567146209804214], [-77.42145496482489, 34.56736853689755], [-77.42121590175714, 34.56740445956021], [-77.42106112584459, 34.56789740740917], [-77.42090724546402, 34.567447871128415], [-77.42066708584989, 34.56750330473591], [-77.42038952817626, 34.56748238596488], [-77.42027312904783, 34.56749227207717], [-77.42022012844413, 34.567438519296985], [-77.41993410665208, 34.56742273426701], [-77.4195761548059, 34.56737642055026], [-77.4194851980185, 34.567382001460274], [-77.41940677292648, 34.56741439301899], [-77.41919108141798, 34.56753008450775], [-77.41909128352228, 34.567587484847074], [-77.41880978237896, 34.567706343855974], [-77.41869739002837, 34.56791469332335], [-77.41859692577884, 34.56793222861366], [-77.41846866994335, 34.56788094607575], [-77.41830340014525, 34.56773524996668], [-77.41811209619394, 34.56768596402958], [-77.41800857451126, 34.56759405397476], [-77.41790941143864, 34.56755302346356], [-77.41748679720816, 34.56777629504615], [-77.41717912692151, 34.56788278641478], [-77.41716636807153, 34.56824716736789], [-77.41718241489325, 34.56860397583424], [-77.41715968672878, 34.568672715936366], [-77.41714807208915, 34.56870281974866], [-77.41712170665832, 34.56876384769048], [-77.41707859630532, 34.56885024439706], [-77.41701134367491, 34.56890643637692], [-77.41695070255956, 34.56894315917126], [-77.4168018560807, 34.56906917257614], [-77.41672779937245, 34.56908861133657], [-77.41667754845686, 34.5691127841142], [-77.41633388281797, 34.569374724599484], [-77.41618794298434, 34.569504945564894], [-77.41614382281745, 34.569668623456195], [-77.41613743942565, 34.56988134265372], [-77.41599472943157, 34.57017367669074], [-77.41594005073358, 34.57021594773007], [-77.41574680088085, 34.5703668439245], [-77.41573598311892, 34.57037206720597], [-77.4155461066602, 34.570374298672675], [-77.41530291045326, 34.57037715616768], [-77.41515216196345, 34.570538986755196], [-77.41506889899681, 34.5706730503789], [-77.41510504892771, 34.57104155733021], [-77.4151185283434, 34.571126805122724], [-77.41515224948093, 34.57112857756239], [-77.41546456379314, 34.57137702303857], [-77.41554627016343, 34.57144145600948], [-77.41555184741095, 34.57144645028313], [-77.41555833270046, 34.571451523294535], [-77.41605395430386, 34.57168201482916], [-77.41632160902999, 34.57176585777332], [-77.41633427285299, 34.57177634667001], [-77.41650088653739, 34.571985023807976], [-77.41690025329785, 34.57210685741255], [-77.41702541280935, 34.572193187514046], [-77.41712229635331, 34.57219619361858], [-77.41724313635773, 34.57218755714147], [-77.41764963816377, 34.57227948211282], [-77.41791029491165, 34.57243693256689], [-77.41821374767535, 34.57224418282785], [-77.4185149992638, 34.57187359890175], [-77.41854771459302, 34.57170679115542], [-77.41851932377543, 34.57144839043012], [-77.41869804294473, 34.571349907467116], [-77.41891037919011, 34.57139189680683], [-77.41888128933155, 34.571623255525694], [-77.41909207111303, 34.571631091140766], [-77.41921980985029, 34.57177177856971], [-77.41931954200805, 34.57193687603616], [-77.41938030120667, 34.571960884896185], [-77.41937410843285, 34.57205334680199], [-77.41909782493825, 34.57220790722646], [-77.41909218485843, 34.57221008757609], [-77.41908915798768, 34.572211975605306], [-77.4186982627715, 34.57249608683634], [-77.41860429490471, 34.572608576513765], [-77.41861441430886, 34.572708405547644], [-77.41861406118255, 34.572799260669285], [-77.41869840942243, 34.57325800188077], [-77.4187309573103, 34.57350571324295], [-77.41871238606448, 34.573543420771145], [-77.41872097419302, 34.573566433366466], [-77.41886057758911, 34.57419661309123], [-77.41892224729955, 34.5743622719676], [-77.4190926310598, 34.5744689697922], [-77.41925823751258, 34.5745598702226], [-77.41928964585031, 34.57457338584604], [-77.41944038053923, 34.57471200454642], [-77.41946686387988, 34.574729524541134], [-77.4194866753503, 34.574747745248764], [-77.41961695580011, 34.57489878746948], [-77.41963283362516, 34.57495132243845], [-77.41976813220113, 34.57496791952484], [-77.41988071868684, 34.575009304261414], [-77.41996974016033, 34.575060113241314], [-77.42015156904766, 34.57516658189238], [-77.4202747492669, 34.57519959050482], [-77.42031295950454, 34.57522282018259], [-77.42040839842491, 34.575277314969796], [-77.42047176873106, 34.575311037543855], [-77.4206264730855, 34.57538981795834], [-77.42062738377959, 34.57543430903689], [-77.42066879954196, 34.57547215011225], [-77.42072129767925, 34.57543270183894], [-77.42090463704284, 34.57552007613417], [-77.42097201709205, 34.57555218733469], [-77.42106282496097, 34.57562180579905], [-77.42115004446642, 34.57564477241689], [-77.42116132794268, 34.57564322814024], [-77.42118305834056, 34.575651258353865], [-77.4212598352866, 34.57568378884549], [-77.42142372433536, 34.575699217252456], [-77.42144743091747, 34.57570592832048], [-77.4214568382992, 34.575712430978], [-77.42150346540296, 34.57573793727949], [-77.4216844102091, 34.57584092768347], [-77.42185088346469, 34.57593653002992], [-77.42206541264419, 34.576031088686975], [-77.42217322778839, 34.576092763508356], [-77.42224493059969, 34.57616022437443], [-77.42240003332898, 34.57614988748061], [-77.42263891016421, 34.57609636092124], [-77.42271876014223, 34.57602275574891], [-77.42297620960012, 34.575960547956306], [-77.42303287057234, 34.57595764858399], [-77.42307514127633, 34.57593075170092], [-77.42311096229692, 34.575880015641374], [-77.42314039016213, 34.575759842247294], [-77.42318015339985, 34.5756042447769], [-77.42337601829814, 34.57541712921618], [-77.42334816083338, 34.57533650724299], [-77.42342671989132, 34.57538204685092], [-77.42343766138718, 34.57539643455573], [-77.42382070250444, 34.575348803556274], [-77.42382732172648, 34.57535191552827], [-77.42405571336785, 34.57549027724116], [-77.4241894180352, 34.57551188447992], [-77.42408337810404, 34.57559791883166], [-77.42392364233444, 34.575762583572974], [-77.42388914245353, 34.57584118723596], [-77.42348884200467, 34.576249999281025], [-77.42355681016586, 34.57638009804662], [-77.42373535561048, 34.57673131918], [-77.42382106730098, 34.576772507356125], [-77.42398312925837, 34.5770277479388], [-77.42404616605812, 34.57720076997463], [-77.42421521806756, 34.57735758613447], [-77.42444282065009, 34.577565281631735], [-77.4247771112293, 34.57751848015755], [-77.42500326980995, 34.577546521587955], [-77.42519495524847, 34.577495224052946], [-77.42520542647826, 34.57749357035948], [-77.42538836105169, 34.57746156194497], [-77.42539724696337, 34.57746012692557], [-77.42539771131078, 34.57746021071335], [-77.42554889110963, 34.57748724838981], [-77.42559425604776, 34.57749172581273], [-77.42565419695426, 34.577487740180175], [-77.42572412777456, 34.57748537663742], [-77.42579125840712, 34.57749891284008], [-77.42589576106815, 34.577487909638776], [-77.42609653539522, 34.577475908436114], [-77.42618525422567, 34.577481975963764], [-77.42626722342916, 34.57745850500979], [-77.42651880816211, 34.57744535777783], [-77.42657924000167, 34.57743130700343], [-77.42666472272887, 34.57736924211266], [-77.42669499483353, 34.57736025878727], [-77.42677622932435, 34.57739448882305], [-77.42690148209186, 34.57737786769876], [-77.42697322622138, 34.5773839859065], [-77.42736230564921, 34.577383275658704], [-77.4273672258577, 34.57738321510113], [-77.42737087708085, 34.57738340440875], [-77.42739192382663, 34.57738429713688], [-77.42765793054193, 34.577457189392206], [-77.42776124411516, 34.577443852841405], [-77.42783480269843, 34.57739957080045], [-77.42787871847308, 34.57739962463478], [-77.42795823109795, 34.5774014072243], [-77.42797768228567, 34.577405782966046], [-77.42803093707474, 34.5774258904124], [-77.42803062107475, 34.57747611679569], [-77.42800198130419, 34.57750841811638], [-77.42797312410623, 34.577528596170325], [-77.42795827537356, 34.577545682167724], [-77.42777803337597, 34.577753080706366], [-77.4277694009885, 34.57776301371203], [-77.42776134415672, 34.577772284402215], [-77.42744769030692, 34.578225414305884], [-77.42749667839486, 34.57835751974081], [-77.42748657692587, 34.57864438259996], [-77.42760991622902, 34.57879007253696], [-77.42763655370919, 34.57883500084658], [-77.42769353394945, 34.578900209788046], [-77.42769973997194, 34.578971382812725], [-77.42765096548263, 34.579045212243415], [-77.42756475286464, 34.57912438387329], [-77.42745192091388, 34.57916467189047], [-77.42736778024396, 34.57922864196757], [-77.4270716610604, 34.57955352630993], [-77.42704208145162, 34.57963128354251], [-77.42713355070981, 34.579969170054284], [-77.42721155007209, 34.58012654255246], [-77.4273061420063, 34.58030204468895], [-77.42733706904852, 34.58036434501129], [-77.42734102079505, 34.5803929880186], [-77.42736813656295, 34.58041037695519], [-77.42750788034401, 34.58061372502654], [-77.42773723902275, 34.580731097912775], [-77.42775131956215, 34.58074084362994], [-77.42776225298154, 34.58074389864881], [-77.42790763211643, 34.58091876540278], [-77.42793209842037, 34.58094456609369], [-77.42795934083215, 34.58100259907831], [-77.42801336813987, 34.58111577769757], [-77.42799649379268, 34.581290571412225], [-77.42799806589183, 34.581371890067615], [-77.42787823970505, 34.581559896539645], [-77.4279205014996, 34.58180820362125], [-77.4279501297568, 34.58197409505535], [-77.42815670646485, 34.58214650358659], [-77.42826481818224, 34.5822367332195], [-77.42845582839267, 34.58232559466813], [-77.42855081296962, 34.58241219995803], [-77.42870459911607, 34.5825485582872], [-77.4289449167089, 34.582661630859505], [-77.42895474170926, 34.582667488265145], [-77.42896790925633, 34.58267617016794], [-77.42913348675623, 34.58287370313017], [-77.42954672248811, 34.582816352482176], [-77.42973300804158, 34.58278979380434], [-77.43002033251761, 34.58263897315156], [-77.43012697651344, 34.58262232597589], [-77.43026627268077, 34.58263859649786], [-77.43052094331387, 34.58245459625994], [-77.43113392911803, 34.582787669371285], [-77.43121895001256, 34.58287256102793], [-77.4313092022322, 34.58306075167968], [-77.43142720850449, 34.58287250548055], [-77.43150468642898, 34.582734074092556], [-77.43170307330647, 34.582625862698116], [-77.4318641574893, 34.58243117372672], [-77.43197981023702, 34.58236708443185], [-77.43209697931312, 34.58229911464228], [-77.43216073189583, 34.582283349006296], [-77.432421412789, 34.5822519275557], [-77.43249101554127, 34.58233784937755], [-77.43280280312787, 34.582546412907895], [-77.43280958131913, 34.58262685790875], [-77.43279423598423, 34.58329860557875], [-77.43280403926373, 34.583395416811456], [-77.4327039047023, 34.58360558060524], [-77.43288548028134, 34.58353386539766], [-77.43313709188655, 34.583925478770105], [-77.43334916623215, 34.584165789792024], [-77.43367394855883, 34.584619317362254], [-77.43440388905516, 34.58407570561237], [-77.43446180619414, 34.584086650026514], [-77.43498303696809, 34.58477875045413], [-77.43504032604933, 34.58499664754083], [-77.4347348448462, 34.585663819710405], [-77.43449936983633, 34.585737647310445], [-77.43446251837129, 34.585910597583094], [-77.43407503957653, 34.58619075845509], [-77.43424884088591, 34.58658327071258], [-77.43435582934507, 34.586683088808], [-77.43446284010555, 34.5867326566938], [-77.43448562791522, 34.58676133270252], [-77.43456091738284, 34.58685607623952], [-77.43456128747546, 34.586856541960664], [-77.43456133627807, 34.586856602985165], [-77.43456139948897, 34.586856676305864], [-77.43464178580905, 34.586951051575966], [-77.43464621599003, 34.58696521309903], [-77.43465995796754, 34.58697763042216], [-77.43472817077279, 34.5870773993761], [-77.4348570681085, 34.587200131924696], [-77.43497053232086, 34.58732811318856], [-77.4350973294367, 34.587475604366205], [-77.43513536983194, 34.587516576810145], [-77.43518861104712, 34.58757638865647], [-77.43525129594819, 34.587656054406], [-77.43527483627214, 34.587683355108055], [-77.43529328674276, 34.587706040773554], [-77.43539004896509, 34.58784147860598], [-77.43542425993131, 34.58789940034309], [-77.43542362368866, 34.58792621990304], [-77.43549316347483, 34.588101734045345], [-77.43556836029404, 34.588174038125004], [-77.43564556365394, 34.58819911977989], [-77.43573071508166, 34.588279683719676], [-77.43578620703587, 34.58833247046005], [-77.43584266363057, 34.588383106697], [-77.43596063028514, 34.588458737054445], [-77.43598914837375, 34.588509127062245], [-77.43603976000034, 34.58855619336165], [-77.43616844946953, 34.58871468743467], [-77.43627409639322, 34.588838005700595], [-77.43634721509545, 34.58892090437247], [-77.43643401683755, 34.58905018486059], [-77.43649164652591, 34.58916909989901], [-77.43651794631563, 34.58922734002358], [-77.43682830065825, 34.5895968201442], [-77.43683254506891, 34.5896018731543], [-77.43684048971306, 34.58960529544821], [-77.43707204638889, 34.589733834217036], [-77.43722245433825, 34.58982635917059], [-77.43732670126616, 34.58984726771007], [-77.43761651164314, 34.58982789219353], [-77.43798487910932, 34.58983672626441], [-77.43801056639086, 34.58982371761953], [-77.43809421127575, 34.58975844251258], [-77.43807706045574, 34.58985108045391], [-77.43804103884504, 34.58988909243438], [-77.43801060409635, 34.58991007007996], [-77.43766171878704, 34.59033573409576], [-77.43763981153907, 34.59036375772679], [-77.43761676362004, 34.59041105480215], [-77.43743780976794, 34.590792704900544], [-77.4376170454493, 34.59106259119031], [-77.43766206161912, 34.59113640235393], [-77.4376932955369, 34.59118035544866], [-77.43781969633109, 34.59136846312011], [-77.43785923343597, 34.591417146489015], [-77.43796109122403, 34.59156622562007], [-77.4379615021879, 34.59161987743473], [-77.43800741849847, 34.591984119846614], [-77.43840576928754, 34.59241555756416], [-77.43861789701427, 34.59251651692936], [-77.43919399726104, 34.59261608341862], [-77.43923653927207, 34.59260972865196], [-77.43996499925518, 34.59253180088983], [-77.43998208761758, 34.59251128459008], [-77.44008807506805, 34.59222217117284], [-77.44027336551355, 34.592081032390126], [-77.44034691979022, 34.592039130709516], [-77.44037593578274, 34.59203864622247], [-77.44040219948926, 34.59203409956144], [-77.44057295318044, 34.59200484723571], [-77.4407652765184, 34.5920048160197], [-77.44076998609799, 34.5920043550441], [-77.44078250834212, 34.59200739852336], [-77.44099876866906, 34.59215428661033], [-77.44110948198151, 34.59232574195592], [-77.44109354564117, 34.59238700953249], [-77.44092351960467, 34.59257673554817], [-77.44077030779022, 34.59268639481286], [-77.44055387866152, 34.592698258625376], [-77.44037625558137, 34.59272358980122], [-77.44004751588227, 34.59260873751088], [-77.4399821116005, 34.592563166523746], [-77.43997093850072, 34.592561401991915], [-77.43922249612287, 34.5926882712625], [-77.43919404570786, 34.59272304098706], [-77.4388169460088, 34.59315891514076], [-77.43880019022555, 34.59320152956971], [-77.4385129012391, 34.593609401808386], [-77.43847459121724, 34.59368848475648], [-77.43856388089378, 34.59402662399974], [-77.43865583961635, 34.59416932355045], [-77.4386569150208, 34.59428287172669], [-77.43863351399298, 34.59444114887072], [-77.43858802072944, 34.594643025016], [-77.438406921513, 34.59500926630135], [-77.43809891701616, 34.595035775018985], [-77.43821519035475, 34.59535082739335], [-77.43826149749324, 34.59550104972226], [-77.43824979803395, 34.59602523568593], [-77.43824987294082, 34.59619500013397], [-77.43831017641286, 34.59629113002245], [-77.43840758639755, 34.59650091592888], [-77.43844657733419, 34.59659115081273], [-77.43851405837702, 34.59689146097179], [-77.43876599021215, 34.596969557378706], [-77.4387662773036, 34.59735555752498], [-77.43876354431201, 34.59743604100078], [-77.43871714852014, 34.597825807674866], [-77.43864663510358, 34.59809278593442], [-77.4386312275036, 34.59826282645391], [-77.43840851002726, 34.59856670121384], [-77.43832029257439, 34.59863730291489], [-77.43823209076572, 34.59874513437356], [-77.43832037686714, 34.598827447065084], [-77.43826564394233, 34.59916487690149], [-77.43817495199357, 34.59935057709605], [-77.4381749872373, 34.599429992906614], [-77.43815331166137, 34.59960571339164], [-77.43817555143164, 34.599775525936714], [-77.43817558630836, 34.59985405838659], [-77.43817586933436, 34.60002704561832], [-77.43818522760225, 34.60005467055311], [-77.43819163170005, 34.60021490775022], [-77.43818527323145, 34.60023798278163], [-77.43818528612883, 34.60026699799526], [-77.43816255913335, 34.600453563847225], [-77.43822094270212, 34.60064820480067], [-77.4382226928912, 34.60066825606536], [-77.43823669929769, 34.600867437633624], [-77.43825882322773, 34.601026693058074], [-77.43827887205747, 34.60114502140172], [-77.43823036850438, 34.60129294668554], [-77.43823045456331, 34.60148617273424], [-77.4382538120391, 34.60168070982975], [-77.43839452904058, 34.60174268794776], [-77.4384296941947, 34.60189343904022], [-77.43833608052512, 34.60202649956382], [-77.43838633176814, 34.60220980936564], [-77.43846374787115, 34.60235934584091], [-77.43859918203394, 34.60240669723338], [-77.43868818590781, 34.60260335832183], [-77.43870375110367, 34.6026601645094], [-77.43874253136181, 34.60268855211031], [-77.43882645198424, 34.602806616426584], [-77.43882574818974, 34.60281000483872], [-77.43884563594224, 34.602860141090936], [-77.43888432871373, 34.602972305210095], [-77.43888709387933, 34.60297713742833], [-77.4389980805299, 34.603290345443384], [-77.43900759850315, 34.60331202613332], [-77.43901392174998, 34.603336813485306], [-77.43906461216488, 34.60348039396881], [-77.43910710813466, 34.60361416235722], [-77.439114682667, 34.60365074130449], [-77.43925358777493, 34.603892193840885], [-77.43927919705271, 34.60397308254633], [-77.43935911272668, 34.60407707489421], [-77.43942620953861, 34.604300413929955], [-77.43958231348724, 34.604404536008865], [-77.43968423065645, 34.60450059234202], [-77.43967889972176, 34.60459761548135], [-77.4399124368789, 34.60489018575685], [-77.43991499866456, 34.60489954755354], [-77.4399229435358, 34.60490232848314], [-77.43993429958492, 34.60491757482295], [-77.44001161655476, 34.60505662391013], [-77.44005551959279, 34.60519736291701], [-77.44006392078329, 34.60522633470582], [-77.44021901414268, 34.60545459931135], [-77.44025308868069, 34.60554164719851], [-77.44032223522743, 34.605653052670505], [-77.44035630814537, 34.605743868561646], [-77.44044538554319, 34.60585606800661], [-77.4404495572772, 34.60585842673715], [-77.44046742450676, 34.60590525791069], [-77.44050937114277, 34.60601386047485], [-77.44051512374264, 34.60603028062189], [-77.44044918377644, 34.606224232381145], [-77.44046171982662, 34.60632130169057], [-77.44027455745324, 34.606643267342875], [-77.44056421842747, 34.60686104027247], [-77.440597680651, 34.60692038905971], [-77.44083694173597, 34.607072059611035], [-77.44097204433155, 34.607182900003146], [-77.44103070190138, 34.60720499128519], [-77.44109933747518, 34.6072538612634], [-77.44139705153718, 34.607430970755736], [-77.44149090179846, 34.607556625860944], [-77.44216432642366, 34.60758145154897], [-77.44220746263744, 34.60759485197058], [-77.4422407960816, 34.60758295958693], [-77.44227851826444, 34.607576609333776], [-77.44268856919967, 34.60743197357121], [-77.4431203091577, 34.6072518046086], [-77.44319908851668, 34.607242800006], [-77.44322602913472, 34.60726384956114], [-77.44326006401154, 34.607269021447145], [-77.44355420800562, 34.60731975806976], [-77.44361948730807, 34.60742650747886], [-77.44357051414906, 34.60754975062127], [-77.44357846001357, 34.60774724336777], [-77.44351262057829, 34.60793550934475], [-77.44352169138708, 34.6080116986936], [-77.44366645711833, 34.60855393360565], [-77.44369378454087, 34.608622354334784], [-77.44395016011059, 34.608781067736025], [-77.44408631850612, 34.60895489753827], [-77.44407237753074, 34.60925290487885], [-77.44435687616792, 34.60953840151012], [-77.44435907223185, 34.609540409291135], [-77.44491964075267, 34.609687463953776], [-77.44531868722403, 34.60926677869479], [-77.44532408565917, 34.60926188758838], [-77.44532713241817, 34.60925558522084], [-77.44538734497192, 34.60912917228826], [-77.44541091986679, 34.60908154866313], [-77.44548943463161, 34.609068029058875], [-77.44553921116092, 34.609070092222275], [-77.44567777775873, 34.60907595659303], [-77.44580974590822, 34.60909814803083], [-77.44587703147195, 34.60910756460131], [-77.44616726177628, 34.60915360382461], [-77.44635592214574, 34.60917291091575], [-77.44666415421648, 34.609111428980995], [-77.44686195743195, 34.60910103755388], [-77.44696569326206, 34.6090917188829], [-77.44742679752572, 34.60903488063653], [-77.44767436335658, 34.60913957588401], [-77.44792508346997, 34.609143786631506], [-77.4481410530176, 34.609008838893814], [-77.4483647750386, 34.60882958381966], [-77.44851912868302, 34.60872337435044], [-77.44873728033758, 34.60859807059171], [-77.44879950828945, 34.60849727952154], [-77.44889832920659, 34.608245975781195], [-77.44904953642448, 34.608087933633016], [-77.44911106488283, 34.60781604941306], [-77.44912032705008, 34.60774890442406], [-77.44913094150442, 34.607497017843635], [-77.44919886550755, 34.60742175230113], [-77.44917768301605, 34.607301461437245], [-77.4491709811645, 34.6070604476812], [-77.44905752562136, 34.60699121081302], [-77.44893438891904, 34.60680883686982], [-77.4490403157902, 34.60672845560988], [-77.4493287978804, 34.60659018459644], [-77.44968041212317, 34.606450488765354], [-77.44979224702132, 34.60636281980203], [-77.44991927020641, 34.60622437108612], [-77.4501027649257, 34.606170313336165], [-77.4502944866403, 34.606277145200146], [-77.45044572919689, 34.60632763234557], [-77.45058904282982, 34.60649006154827], [-77.4511117195079, 34.60633192976356], [-77.45132959638907, 34.6062176738869], [-77.45165738747005, 34.605903468752466], [-77.45194548086053, 34.605530621445645], [-77.45208565922727, 34.60513906723021], [-77.45238620678285, 34.604919698502805], [-77.4522995597614, 34.604691108723244], [-77.45215405965092, 34.604576333433535], [-77.45191623108687, 34.60452026804904], [-77.45160679366123, 34.604331176513554], [-77.45153799908141, 34.60416980636542], [-77.45143230811647, 34.60408735817139], [-77.45132996132413, 34.60393071197574], [-77.4513343120996, 34.603858643203004], [-77.45133697747531, 34.603746746113664], [-77.45117062188496, 34.60371701198823], [-77.45103495379739, 34.60357476744624], [-77.4509830380727, 34.60349961723866], [-77.45107245701482, 34.60335846476773], [-77.45117490962716, 34.60325705925033], [-77.45112617797979, 34.60309015172871], [-77.45127739588457, 34.602767099460394], [-77.45123078266798, 34.602657213932794], [-77.45112294648357, 34.602179736545445], [-77.45076094330923, 34.602220637552236], [-77.45072722552584, 34.60220646214318], [-77.45069818017097, 34.602193787520314], [-77.45064086861386, 34.60214108602917], [-77.45063407884813, 34.602091775788665], [-77.45067067008996, 34.602017004749065], [-77.4506928527455, 34.601971926945374], [-77.45083741864107, 34.60190016657849], [-77.45096293348404, 34.60174901498378], [-77.45099545850267, 34.60142127116348], [-77.45102915225638, 34.60136086907716], [-77.45101927007676, 34.60134440501019], [-77.45103842187731, 34.60131409345384], [-77.45132097388759, 34.600830584426845], [-77.45165293444148, 34.600444428387824], [-77.4517723877542, 34.600369153470666], [-77.45181593339387, 34.6003139665124], [-77.45194040878758, 34.60011825193138], [-77.45200449333757, 34.59997489153427], [-77.45203411054408, 34.59984134336929], [-77.45238205168096, 34.59949793548522], [-77.45215307440341, 34.59926357806174], [-77.45215099885371, 34.599194582381195], [-77.4520833719604, 34.59917650242343], [-77.4520932986331, 34.59893296304889], [-77.45210146846472, 34.59883945076212], [-77.45203859007037, 34.59877407909644], [-77.4520070240136, 34.598747923563764], [-77.45205939986336, 34.598748630304854], [-77.45216007300493, 34.598690975405376], [-77.45225212894633, 34.598678846284265], [-77.45230922133565, 34.598671711078936], [-77.4524252515642, 34.59869957321357], [-77.4524668682894, 34.598707514351936], [-77.45253064806482, 34.59871702903019], [-77.4529293743995, 34.598915836557936], [-77.452973341626, 34.59896001163364], [-77.45298809648662, 34.598984468113045], [-77.45322234508045, 34.59925824291093], [-77.45342329838059, 34.59936662934198], [-77.45366949030908, 34.599404249151576], [-77.45437657509206, 34.59966751391506], [-77.4546296434697, 34.59972011588791], [-77.45467923244462, 34.6001475325112], [-77.45447624400163, 34.600377607089314], [-77.45426382368643, 34.600621564909446], [-77.45425909722887, 34.601178075690775], [-77.4542872683472, 34.60124915769615], [-77.45435399040292, 34.601886047595876], [-77.45435497928806, 34.60188924990887], [-77.45435576232927, 34.601892512180726], [-77.45435106809491, 34.60189349030508], [-77.45434586435863, 34.6018959852747], [-77.45368612561855, 34.60227759240911], [-77.45346931267736, 34.60251285220127], [-77.4529932538731, 34.60265454024638], [-77.45284471074545, 34.6030585714323], [-77.45303942565724, 34.60329008913529], [-77.4531286762247, 34.603384504467854], [-77.45343701570087, 34.603628144556936], [-77.45381086384688, 34.60376023091242], [-77.45417233604951, 34.60393701197453], [-77.45465511422805, 34.60401921008435], [-77.45477785072308, 34.60411092865694], [-77.45502732410179, 34.60436312324457], [-77.45514521736688, 34.60457608412095], [-77.4551477752487, 34.604617203727884], [-77.4551289196416, 34.60464057762705], [-77.45513123785562, 34.604742594461], [-77.45508224903116, 34.6049339409316], [-77.45511042860676, 34.60499712048821], [-77.45515021157604, 34.60502718741467], [-77.45514360154974, 34.60511025312763], [-77.45513855021795, 34.60517373043155], [-77.45513389555299, 34.60523222345278], [-77.4551316131779, 34.60526090485316], [-77.45512445826623, 34.60527006603639], [-77.45511512346562, 34.60529870246854], [-77.45508206713701, 34.60537447400209], [-77.45506379570759, 34.605456161179625], [-77.4549424877373, 34.6055044264784], [-77.45482733452846, 34.60555251745181], [-77.45437968568164, 34.6056172061315], [-77.45432471075551, 34.60563677049076], [-77.45416464883967, 34.60577522687387], [-77.45345425494429, 34.60629753881837], [-77.45331278080772, 34.60648268760212], [-77.45332586561355, 34.60661394106841], [-77.45324821147709, 34.60689590899951], [-77.45319564838509, 34.60706109438826], [-77.45277398158366, 34.60750987647014], [-77.45277253015986, 34.60753244091122], [-77.452746643923, 34.60755306978907], [-77.45238130921486, 34.607991136032076], [-77.45277570200784, 34.60815294131015], [-77.4529023682643, 34.60821177941829], [-77.45291503379653, 34.60821772620102], [-77.45292750649077, 34.608213575187584], [-77.4529408080454, 34.60821070972586], [-77.45376152691203, 34.60809700505524], [-77.45393713338726, 34.6080609480709], [-77.45418563230854, 34.608035591852314], [-77.45419269279118, 34.608034305625125], [-77.45443866647634, 34.60814284164924], [-77.45445455501299, 34.60816394307144], [-77.45450820395232, 34.60844940949622], [-77.45448073542661, 34.60850010454546], [-77.4544419611466, 34.60873592579797], [-77.45448312884295, 34.60886868448286], [-77.4544718541115, 34.60905720218526], [-77.45446066131103, 34.609244355294074], [-77.45453887168235, 34.60938921691524], [-77.45466073000588, 34.60955655186953], [-77.45466589561804, 34.609734334825774], [-77.4548595763363, 34.609869096804154], [-77.45492119049312, 34.60987935802617], [-77.45498118248355, 34.6099537094609], [-77.4551021395074, 34.6101152948909], [-77.45511699198399, 34.61016493550206], [-77.45513727220344, 34.61021795673404], [-77.45518836883144, 34.61032920789801], [-77.45521847205679, 34.610430249703384], [-77.45523906757225, 34.610499378313946], [-77.45530494952968, 34.6107817132939], [-77.45534311480975, 34.610909353610865], [-77.45516797693026, 34.610949209847185], [-77.45512588343982, 34.6109009261818], [-77.45504390240046, 34.610804674558395], [-77.45500479382655, 34.610691545630964], [-77.45491148177331, 34.61065903871167], [-77.45485081825116, 34.61061012138148], [-77.45474871220557, 34.61054748217108], [-77.45458256826328, 34.61041785664696], [-77.4544751721641, 34.61034800507765], [-77.45431057635476, 34.61016883324308], [-77.45414469202778, 34.610073004753744], [-77.45394945357731, 34.609802386822196], [-77.45392374042729, 34.60976676527712], [-77.45390260350202, 34.6097533046092], [-77.45387361431034, 34.609748769922476], [-77.45381324831978, 34.60975473306945], [-77.45336102389182, 34.60979671877841], [-77.45297319789448, 34.6099753917745], [-77.4528153677453, 34.61002499118273], [-77.45282680253223, 34.61007963723203], [-77.45270736575699, 34.61030044929822], [-77.45259738251862, 34.610514332113134], [-77.45257030192592, 34.61055863905289], [-77.45253785324881, 34.61063034439019], [-77.45221497411886, 34.61105370930153], [-77.45190489476634, 34.6112816876839], [-77.45170677153644, 34.61143513344289], [-77.45166052919767, 34.611479113413694], [-77.45153510859004, 34.61155582142838], [-77.45125366039065, 34.61170034005591], [-77.45081968641352, 34.61175985845836], [-77.45078504137027, 34.611736598098425], [-77.45094101545429, 34.61122736634123], [-77.45106232395273, 34.610952140071795], [-77.45086876991931, 34.61071985181881], [-77.45082487128641, 34.61065060314336], [-77.45039095754949, 34.61046965813398], [-77.45030893140223, 34.61049001721856], [-77.44992388754528, 34.61068387554693], [-77.44951339918333, 34.61072784821187], [-77.44941147660234, 34.610732497874196], [-77.44936659830407, 34.610727860984824], [-77.44915548924668, 34.610757435196724], [-77.44865426077803, 34.610684480661554], [-77.44836108026949, 34.61073633074848], [-77.44823012609297, 34.610898218672666], [-77.44809994664115, 34.61105845113375], [-77.4478383558457, 34.61138053539769], [-77.44784376904586, 34.61167543637217], [-77.44780301276296, 34.61188163971362], [-77.44788877866964, 34.612017583320586], [-77.4480703915836, 34.61231269050514], [-77.44830770813027, 34.612461625107635], [-77.44832231642532, 34.61247206306656], [-77.44842644007345, 34.61279170773398], [-77.44842753795561, 34.612825504016136], [-77.44810370131191, 34.61327291667148], [-77.44805990256566, 34.61331626895351], [-77.44802516815633, 34.61334989543286], [-77.44787805205078, 34.61356234004856], [-77.44766674554205, 34.61372053086792], [-77.44761208848948, 34.61376138844729], [-77.44759425209374, 34.61377273832457], [-77.44757085463604, 34.61379412016286], [-77.44718048811401, 34.61410524605573], [-77.44705657532833, 34.614204004859424], [-77.44676685773348, 34.614392638114495], [-77.44673840012535, 34.61441080855113], [-77.44633515037593, 34.61457097472133], [-77.44626798548624, 34.61461291168748], [-77.4455011342572, 34.614898543784335], [-77.44533147172712, 34.61503290298445], [-77.44473884745672, 34.61570940748473], [-77.44562853922557, 34.61611802911701], [-77.44567526293842, 34.61615525539611], [-77.4457008743116, 34.616173610670835], [-77.44579261226966, 34.61623935766261], [-77.44595171836195, 34.616471339598206], [-77.44613026001468, 34.616513316295695], [-77.44624226625228, 34.61670640090626], [-77.44624833848296, 34.61675601627558], [-77.4462762972451, 34.61679193723719], [-77.44638385375602, 34.6170656469733], [-77.44638793219328, 34.61708546701351], [-77.44640542662796, 34.61709122966396], [-77.44642607989806, 34.61711075444697], [-77.4466113552112, 34.61729663317751], [-77.4467160388071, 34.61736116508797], [-77.44686623428387, 34.61744219381313], [-77.44707016895674, 34.61754293744387], [-77.44739267095598, 34.6175374829433], [-77.44753709836243, 34.61753635591207], [-77.44760332679306, 34.61756993824997], [-77.44784538250701, 34.6177776487825], [-77.44796581732648, 34.61792655404071], [-77.44803024639621, 34.61809419072181], [-77.44808013273997, 34.61824396567814], [-77.44809279297051, 34.61828299763637], [-77.44813110799618, 34.618434686059764], [-77.4481239513897, 34.61864756330915], [-77.44846091101948, 34.618781795890655], [-77.44880105912807, 34.61853080403701], [-77.448912890444, 34.61851229572659], [-77.4489837165142, 34.618510785522545], [-77.4491620061384, 34.618462005112264], [-77.44927061797351, 34.61847900554174], [-77.44927954543758, 34.618606285422075], [-77.44928809522142, 34.61870120414345], [-77.44925359396633, 34.61885311721544], [-77.44926003355695, 34.619087316749656], [-77.44926083340701, 34.61931106410955], [-77.4491594290767, 34.61961848276365], [-77.44917464739925, 34.61990030746419], [-77.44936495324833, 34.62029839098305], [-77.44930840957718, 34.62056650512178], [-77.44930521419622, 34.62068468425115], [-77.44920613733484, 34.620981917291466], [-77.44917000921619, 34.621092495719274], [-77.44915679248531, 34.621132858747075], [-77.44918366252739, 34.6214212696007], [-77.44889147535466, 34.62136660663122], [-77.44900893007974, 34.621138427565064], [-77.44889461171239, 34.62104113209754], [-77.448664424084, 34.620867406429554], [-77.4485860505811, 34.62082565304061], [-77.44847396339675, 34.62074964508322], [-77.44830303434124, 34.6206011990583], [-77.44820443755498, 34.62037784544425], [-77.44792299021077, 34.62034031035772], [-77.44780779266858, 34.620236944901094], [-77.4477104989983, 34.62006736389624], [-77.4476821456231, 34.620039729369445], [-77.44761173376885, 34.61997289135897], [-77.44750425667087, 34.61972119731185], [-77.4473208535241, 34.619629383800735], [-77.44718908231944, 34.61951531188316], [-77.44719708383008, 34.61943952924078], [-77.44704883791735, 34.61938533575408], [-77.44690925994523, 34.619218238832374], [-77.4467535481716, 34.619053220951855], [-77.44662183485468, 34.61886504429829], [-77.44660403621621, 34.61867705852708], [-77.44652745888556, 34.61852269977194], [-77.44626008692973, 34.61842483268292], [-77.44603185068709, 34.61846224640979], [-77.44555911521819, 34.618635291286616], [-77.44549616991074, 34.61881675135224], [-77.4453551309611, 34.618960247746095], [-77.44514402410564, 34.61910945875674], [-77.44511717532023, 34.619123274818186], [-77.44484888452114, 34.61903156940662], [-77.44483293434705, 34.61901360157732], [-77.44482756458675, 34.61899872693068], [-77.44473399811588, 34.61866481042483], [-77.44471558932023, 34.61854467752531], [-77.44471463278727, 34.61833979911184], [-77.44470406732336, 34.61825684188363], [-77.44459105441804, 34.61796706045861], [-77.44438249478239, 34.61773566064148], [-77.44397925039632, 34.61777548813782], [-77.44337975015621, 34.61757391714731], [-77.44345406215965, 34.61727928254557], [-77.44338284263635, 34.61712913455217], [-77.44328078345039, 34.616863631718005], [-77.44311589565852, 34.61654153033107], [-77.44311585944368, 34.61654140360758], [-77.44311608197556, 34.616540963228054], [-77.44306314947167, 34.6161871810226], [-77.442989652628, 34.61608105696116], [-77.4429070679001, 34.61588220268436], [-77.44290994570513, 34.615861610486334], [-77.44290192910492, 34.61584723728867], [-77.44292913526326, 34.61548688780785], [-77.4421941858551, 34.61509570002837], [-77.44183145568077, 34.61536855687517], [-77.4417298262167, 34.61543705908624], [-77.44172206801461, 34.6154617806244], [-77.44130266253009, 34.61568013633123], [-77.44091498731888, 34.615771319780556], [-77.44080342028869, 34.61577697498244], [-77.44073278003403, 34.61579735112772], [-77.44031093053317, 34.6158984874438], [-77.43991574753719, 34.61604104298175], [-77.43970767120845, 34.61613619539451], [-77.43933917251212, 34.61618983197061], [-77.43887667655304, 34.61629682063958], [-77.43879802226739, 34.61633388974502], [-77.43836373405834, 34.61646774594182], [-77.43806544227866, 34.61663233180249], [-77.43803427341642, 34.616882348045294], [-77.4379672970812, 34.61694025692443], [-77.43784084415947, 34.617173157571095], [-77.43768167094098, 34.61735210577015], [-77.43758733288178, 34.61747297315186], [-77.43719978055708, 34.61756822528097], [-77.4367876269826, 34.617877007527134], [-77.43665477137425, 34.61790763243042], [-77.43657758925778, 34.61796989714516], [-77.43658228188157, 34.61803473219634], [-77.43660607764865, 34.618098909532506], [-77.43681125839338, 34.618671115054156], [-77.43678978405443, 34.61871407250131], [-77.43641310662653, 34.61894576014426], [-77.43629313116924, 34.619109210795244], [-77.43603374907143, 34.619255530723535], [-77.43597965327083, 34.61928308169466], [-77.43592776959431, 34.619291054965444], [-77.43556045613211, 34.61937691200926], [-77.43547470740447, 34.61935916221548], [-77.4349375750986, 34.61925420651909], [-77.43491913208298, 34.61925022684075], [-77.43491107151144, 34.619249573154086], [-77.43431803627382, 34.61906706399954], [-77.43383122736404, 34.61911728556635], [-77.43355330400637, 34.61938913816404], [-77.43310875381638, 34.61963086443073], [-77.43295087883091, 34.61974288476243], [-77.43291079157976, 34.619783691562546], [-77.43248919385522, 34.619939843122495], [-77.43247999070853, 34.61994344895843], [-77.43247230756488, 34.61994465575669], [-77.43206880720356, 34.61998768245703], [-77.43195096784311, 34.61993154659723], [-77.43178502244209, 34.62000908956237], [-77.43124904235441, 34.6200753974411], [-77.43092906832749, 34.620039851145364], [-77.43022934458723, 34.62058387898681], [-77.43007315862042, 34.6206487750228], [-77.43005122009332, 34.620674687934944], [-77.4299188329912, 34.62078690075365], [-77.42962239409212, 34.62102903228813], [-77.42950994365458, 34.62107107801943], [-77.42926385496537, 34.62158731034484], [-77.42925594227258, 34.6215997464904], [-77.42925508803467, 34.621601322280256], [-77.4292547681517, 34.621607087698486], [-77.42918862283096, 34.62198816586055], [-77.42929082935828, 34.62223328888413], [-77.4293165921795, 34.62232093482183], [-77.42934118714984, 34.622406905646116], [-77.42952302489822, 34.62258760348189], [-77.42978903168483, 34.62277373163238], [-77.42982492920625, 34.62291454754706], [-77.42979212261551, 34.62302821663205], [-77.42997349458196, 34.62346241969092], [-77.43001244269644, 34.62359958472079], [-77.43015939481954, 34.62377622716618], [-77.43022803071514, 34.623907386047414], [-77.43032870175757, 34.62394245932678], [-77.43036239037752, 34.62415700765159], [-77.43027123724184, 34.62426431044417], [-77.43030948201563, 34.62444821413412], [-77.43035425789913, 34.62460988915716], [-77.4304847482687, 34.62466588072566], [-77.4306113874782, 34.624863613829795], [-77.43062505632295, 34.624901957242855], [-77.43063427942735, 34.624940209004286], [-77.43072355824899, 34.625053744461155], [-77.43080840268209, 34.62518448612705], [-77.43086377690474, 34.6252031660988], [-77.43096907515209, 34.6252985353535], [-77.43101250064674, 34.625530020798905], [-77.43144129369134, 34.62575520409373], [-77.43172967706305, 34.62588691527211], [-77.43179779434033, 34.626044708132746], [-77.43179015263854, 34.626205366468355], [-77.43183641895752, 34.626772178873104], [-77.43191709135405, 34.62748615769851], [-77.43191709034363, 34.62748868979054], [-77.4319188586319, 34.62750047168939], [-77.43184301566423, 34.62824725356826], [-77.43195594154292, 34.62835281717245], [-77.4321564356564, 34.628368666878266], [-77.43240084166747, 34.628723284196745], [-77.4324495967289, 34.62881287252529], [-77.4325651188813, 34.62895438262745], [-77.43257104899082, 34.62896288149424], [-77.43257495475194, 34.62896758797079], [-77.43257927886992, 34.62911419944509], [-77.43256546606649, 34.629149092242706], [-77.4325495837416, 34.6292586677754], [-77.43253413779998, 34.62947453880403], [-77.43252523805472, 34.629529795756454], [-77.43252252771805, 34.62955892094828], [-77.43251630710469, 34.6296837340099], [-77.43186568601237, 34.62971774825547], [-77.43157775594526, 34.62972909144767], [-77.43147813553284, 34.62973301569841], [-77.43097540640154, 34.62955101727696], [-77.43090253377119, 34.62955111998383], [-77.43060780235037, 34.62933772297815], [-77.43050947491247, 34.62920624581872], [-77.43020783832375, 34.62893397015735], [-77.43001834008578, 34.62876721911754], [-77.42993398375602, 34.62865294925325], [-77.42979242218061, 34.62825422529433], [-77.4296846155311, 34.62812384204028], [-77.42960966874654, 34.62802048812399], [-77.42962900287749, 34.62792675034127], [-77.42971270489971, 34.62774660144551], [-77.42982538132773, 34.627536204385635], [-77.4299345965782, 34.6274142590728], [-77.42990313287358, 34.6273231013889], [-77.42985468912865, 34.627264030184534], [-77.42975385189483, 34.62704126956496], [-77.42972960407532, 34.62700331320107], [-77.42972036347234, 34.62697111803484], [-77.42963449499396, 34.6268385513433], [-77.42956025255359, 34.62670971544825], [-77.4295408929016, 34.62668785103399], [-77.429525622027, 34.62665165791098], [-77.42939917331485, 34.62635899865035], [-77.42933254650279, 34.62627435000583], [-77.42933099847315, 34.6261938075061], [-77.42929554864762, 34.62611907274306], [-77.42929307418096, 34.626105670140674], [-77.42932378925047, 34.626084563642316], [-77.42941452831334, 34.62603459884903], [-77.42945303748535, 34.626006797673114], [-77.42953226146577, 34.62595183810602], [-77.42985233353099, 34.625712979105906], [-77.42997152063083, 34.62556882499839], [-77.42996905806376, 34.62545813187221], [-77.42996554819263, 34.62530034556946], [-77.4299608967626, 34.625091220271145], [-77.4295662465928, 34.62487418401667], [-77.42914373192865, 34.62465962150534], [-77.4290789875968, 34.62460405798146], [-77.42905173241296, 34.6245888134275], [-77.42902044165946, 34.62459421296337], [-77.42845391995903, 34.62441293885206], [-77.4284509748208, 34.62440883150501], [-77.42833885302574, 34.62437788253366], [-77.42787119107675, 34.62423722174606], [-77.42785361113943, 34.62422470209467], [-77.42775861332895, 34.624241830867575], [-77.42712156347383, 34.62420514745305], [-77.42716161054427, 34.62404270942993], [-77.42719340986274, 34.623976920105335], [-77.42713461875408, 34.62368116700119], [-77.42716122797195, 34.6235639931825], [-77.42720429436416, 34.62336126899912], [-77.4272828609171, 34.623269692515635], [-77.42749605012023, 34.62286594920071], [-77.42752000002294, 34.62285232356324], [-77.42753312628913, 34.62282914655471], [-77.4277050890208, 34.622607385382054], [-77.42770428916711, 34.62257901074911], [-77.42762318288976, 34.62243425072661], [-77.4273164268624, 34.62220934427463], [-77.42726449901066, 34.62220234609513], [-77.42713810776661, 34.622203238319265], [-77.42725762835101, 34.622141016010325], [-77.42701626814976, 34.62186872256437], [-77.42696239238722, 34.62165744027103], [-77.42681481544746, 34.62155689236981], [-77.42658143778502, 34.62144454252218], [-77.42647990952656, 34.62133295196571], [-77.42596490991366, 34.62111275622091], [-77.42592860721082, 34.621092559615974], [-77.42589789397786, 34.621079696361136], [-77.42554220998763, 34.620921024394434], [-77.42540600653251, 34.62085062126836], [-77.42538217818051, 34.62084621348409], [-77.42536416130362, 34.6208386367039], [-77.42485193989087, 34.620639261339534], [-77.42483521117538, 34.620600525513716], [-77.4247661513697, 34.62057451175548], [-77.42431095239803, 34.62032708887162], [-77.42365368500184, 34.62035170368506], [-77.42292240495709, 34.62045056645914], [-77.42269690033751, 34.62047124450923], [-77.42265037438762, 34.62044516591314], [-77.4226014557161, 34.6204824345096], [-77.422461752916, 34.62055531247191], [-77.42225621953907, 34.62062875362139], [-77.42217756314102, 34.620681092435106], [-77.4219137136407, 34.62069013361517], [-77.42186203062289, 34.62069079176599], [-77.4218322062535, 34.620678358704], [-77.42179122103911, 34.620652158998], [-77.42127890621286, 34.620504991653306], [-77.4210735490089, 34.62041720304005], [-77.42075296152088, 34.62045680316674], [-77.42028515487173, 34.62047882733884], [-77.41988384496273, 34.62051069846673], [-77.41949675689864, 34.62053050295798], [-77.41917757340859, 34.62068579820744], [-77.41902953874197, 34.62070509357598], [-77.41870840997538, 34.62081217799689], [-77.4185333384325, 34.62093405636701], [-77.41848521977707, 34.62094543391686], [-77.4183142187373, 34.62088263985387], [-77.41820635981927, 34.62086144498586], [-77.41791996329233, 34.62066228955082], [-77.41761188330338, 34.62073837503663], [-77.41741812533756, 34.62074315430515], [-77.41713156087566, 34.62071249545451], [-77.41681918303541, 34.62085747674989], [-77.416622769123, 34.6208504942719], [-77.41634316914804, 34.620822758079065], [-77.41626620126105, 34.62068370791409], [-77.41615898686379, 34.6206163194587], [-77.41602841974088, 34.620549532875096], [-77.41594886876807, 34.6203452617203], [-77.4159163853747, 34.620261733642046], [-77.41590211729873, 34.62017850543837], [-77.4157732127735, 34.6198228542106], [-77.41570129561747, 34.61967516838389], [-77.41555452897089, 34.619635033049576], [-77.41527512413616, 34.61959383759621], [-77.41516031086249, 34.61954775836798], [-77.41511732516805, 34.61953926461621], [-77.41492335874543, 34.61952097148968], [-77.41481217989178, 34.61948738975687], [-77.41476609946055, 34.61949361805104], [-77.41471402798118, 34.61949510830678], [-77.41437806329813, 34.61959307448814], [-77.41437191473887, 34.61958956158837], [-77.41435855964897, 34.61958812785368], [-77.41427591383783, 34.61961444321166], [-77.41397772726697, 34.619675086925085], [-77.41395921267684, 34.619680106414954], [-77.4138200783433, 34.61968025001751], [-77.41363889456741, 34.61964676414525], [-77.41350553150409, 34.61964166078605], [-77.41318929283476, 34.61949230510125], [-77.41308523579471, 34.61947382405183], [-77.41279509251115, 34.61950194207104], [-77.41241124153456, 34.619470199797775], [-77.41240088552482, 34.61946850334822], [-77.41239485637544, 34.61946790485757], [-77.41236439921529, 34.619465807703754], [-77.41185015990305, 34.619284014366684], [-77.41161243034375, 34.619104738260816], [-77.41136795793348, 34.61902378009206], [-77.41082400218426, 34.61889629534621], [-77.410784529069, 34.6188872087235], [-77.41073330497147, 34.61885208847363], [-77.41037109555603, 34.61854297300828], [-77.41036304734237, 34.618480951498306], [-77.41019532938608, 34.61833304818228], [-77.41017511862289, 34.618233852867164], [-77.4102003876055, 34.61807985007216], [-77.41014902186704, 34.617964980351346], [-77.41003548273319, 34.61790822396494], [-77.40994425987554, 34.61769223925204], [-77.40987582073274, 34.61753019753526], [-77.40986083688296, 34.61749199068377], [-77.40985332309789, 34.61747693055969], [-77.40983832804878, 34.617427521213145], [-77.40979473335125, 34.61728924222694], [-77.40979318501067, 34.617125760690556], [-77.40977995995024, 34.61701627001728], [-77.40982146244895, 34.61686080555397], [-77.40987329205021, 34.61660327003522], [-77.40989130164999, 34.6164261467342], [-77.40964107483454, 34.61607503558037], [-77.40962434679487, 34.61605811427109], [-77.40951485790761, 34.61605590131313], [-77.40924688493409, 34.616042706526585], [-77.40920585144188, 34.61605630147898], [-77.40895220926342, 34.61602992340916], [-77.40885269311656, 34.61599006090495], [-77.40852953265171, 34.61585004945329], [-77.40845849093343, 34.61583086893367], [-77.40843002070002, 34.61581855833357], [-77.40839145181181, 34.61579346069874], [-77.40796241691763, 34.61554051569445], [-77.40767007490872, 34.615336788014275], [-77.40750452179765, 34.61525061558123], [-77.4072426090182, 34.61511010346934], [-77.40688166984883, 34.614864633475754], [-77.40650375231678, 34.614774626383216], [-77.40648748190888, 34.61477667860191], [-77.40645863613186, 34.61476759279026], [-77.40609329521672, 34.614693944941315], [-77.40571737110193, 34.614481052596346], [-77.40559477992305, 34.61418650798484], [-77.4053049036836, 34.614203993519766], [-77.40503358408843, 34.61402280092908], [-77.40465106507892, 34.613785765296655], [-77.40457333663882, 34.6137357849987], [-77.40451652209579, 34.61373057812977], [-77.40434981304351, 34.61364967171402], [-77.40412233715017, 34.61354690685495], [-77.40403255865031, 34.61354713653651], [-77.40372815603138, 34.61341244354128], [-77.40337590201719, 34.61350002690132], [-77.40293980417889, 34.61335223434631], [-77.402896862308, 34.61323597089917], [-77.40279844746776, 34.613203920368136], [-77.40238859777277, 34.61300760941388], [-77.40215144420765, 34.612907594487766], [-77.40186101357173, 34.61280284714783], [-77.40175726896102, 34.6127780109853], [-77.40160976610889, 34.61252626642508], [-77.40148610092442, 34.61241161000463], [-77.40136309072173, 34.61233680320473], [-77.40112485582327, 34.61217164872437], [-77.40111277137231, 34.61201844125856], [-77.40096891799124, 34.612047236510925], [-77.40079046293805, 34.61198753575799], [-77.40077183316025, 34.611990021330364], [-77.4007409057415, 34.61198143881414], [-77.40057474863512, 34.61194029132132], [-77.40048871216875, 34.611931519284255], [-77.40029234660435, 34.611867174199276], [-77.40022085044583, 34.61183411148507], [-77.40018058026054, 34.61180064559101], [-77.39999175841811, 34.61168934972382], [-77.3997864134247, 34.611615407273675], [-77.39957480903831, 34.61154610955686], [-77.3994480535948, 34.61150428323374], [-77.39939224784399, 34.61147083783287], [-77.39927645320942, 34.611464420253895], [-77.39899808244746, 34.61139982453812], [-77.39833352714636, 34.61143391426045], [-77.3982097464088, 34.61153505251788], [-77.39800685448989, 34.61156624958784], [-77.39768770765725, 34.61168058335454], [-77.39751070679716, 34.612172210516015], [-77.39748951050663, 34.61227147356752], [-77.39750008958778, 34.612354723372135], [-77.39749557342545, 34.61269517148354], [-77.39742137096667, 34.612742714741465], [-77.39736319755411, 34.61277692301408], [-77.39722428015685, 34.61286348714139], [-77.39714456467578, 34.61287222158009], [-77.39702719256739, 34.6128851489868], [-77.39689324917254, 34.61292631610142], [-77.39663302134191, 34.61282884872148], [-77.39626915355866, 34.61290470097042], [-77.39584466437348, 34.613016998781376], [-77.39560350172198, 34.61313287494823], [-77.39545048176333, 34.61315733890295], [-77.39529294824992, 34.61318252294297], [-77.3950563025854, 34.61322022764569], [-77.39489338200859, 34.61324594840615], [-77.39482589937461, 34.613256602054676], [-77.39466212771069, 34.61320817507366], [-77.39460611992405, 34.61317222167017], [-77.39429035760097, 34.61315742821729], [-77.3942732647644, 34.61315417483794], [-77.39426795579588, 34.6131549515922], [-77.39426189874713, 34.61315500807169], [-77.39397728183296, 34.61309109769978], [-77.39387379056868, 34.613019741282386], [-77.39368358465104, 34.61304005534476], [-77.39347961170503, 34.61306856854222], [-77.39322914857851, 34.61315565400879], [-77.39294073368578, 34.613196195466905], [-77.39290220459345, 34.61335760017408], [-77.39269121000189, 34.613636023143236], [-77.39261518280347, 34.61374167780533], [-77.39255439641178, 34.6138323213042], [-77.39253277871018, 34.61400604775558], [-77.39247933661713, 34.61426771382389], [-77.3925082971668, 34.61446047230029], [-77.39251417984129, 34.61449666509248], [-77.39249403526463, 34.614569240384085], [-77.39247990632498, 34.61467699395953], [-77.39232353481863, 34.61468609594056], [-77.39229693464179, 34.6146689390764], [-77.39222284997632, 34.614649468138275], [-77.39205230861964, 34.61459277746388], [-77.3919027657269, 34.6145254648636], [-77.3915799258391, 34.61447423241479], [-77.39150859091139, 34.61445135597839], [-77.39145721591086, 34.61447042157113], [-77.39111441203951, 34.61442118756386], [-77.39088029212411, 34.6146706988975], [-77.39053372670581, 34.61474907309231], [-77.39032602469445, 34.614616977491565], [-77.38979469302971, 34.6150793481887], [-77.38960580272385, 34.61518005356143], [-77.38953757798804, 34.61524962328533], [-77.38938835248462, 34.61540179045895], [-77.38921099231523, 34.61558806483729], [-77.38917585387135, 34.61562814784585], [-77.38914329545584, 34.61598400228814], [-77.3891385420628, 34.61601796226801], [-77.38913379232655, 34.61602376190648], [-77.38913854070216, 34.61602819232879], [-77.38913021620503, 34.61643482151087], [-77.389130214343, 34.61644884554036], [-77.38913021248311, 34.61646286956941], [-77.38914320810645, 34.61665371718669], [-77.38915555963706, 34.61686975962071], [-77.38914834911422, 34.61728974071554], [-77.38914859083795, 34.61729533206455], [-77.38916497283462, 34.6173165047873], [-77.3893966835405, 34.617684135131086], [-77.38939440839927, 34.61783831192939], [-77.38953725463641, 34.617825048645855], [-77.38969708694695, 34.61781297282198], [-77.38993144525966, 34.61789049603716], [-77.39009809084413, 34.61782811001087], [-77.39032565253763, 34.61781601629842], [-77.39046249060297, 34.61767784785177], [-77.39070184939912, 34.61749597611075], [-77.39071988848696, 34.617475096952525], [-77.3910227450916, 34.6173513197063], [-77.39111409934091, 34.617340659200245], [-77.39123109698605, 34.6172936652097], [-77.39150830289321, 34.6172646954277], [-77.39168976840199, 34.61712440676804], [-77.39171524024236, 34.617127002818464], [-77.39190249913773, 34.617256233495176], [-77.39194751561442, 34.61726789435677], [-77.39229669519197, 34.617248112452415], [-77.39234323983686, 34.61725932424959], [-77.39257968182214, 34.61734500098515], [-77.39269088211731, 34.617343065051564], [-77.3928255002294, 34.61740207356351], [-77.39286574258612, 34.61742021479344], [-77.39288797150908, 34.617442262078455], [-77.39298501163563, 34.61748359464276], [-77.39308506143789, 34.617540528418154], [-77.39310566633007, 34.6175517677467], [-77.39347923577952, 34.61782625126612], [-77.39354900469202, 34.617859457640456], [-77.39368240594679, 34.617915369478055], [-77.39377391620121, 34.61800934448986], [-77.39387342147015, 34.617991578727526], [-77.39406294410318, 34.618064627581276], [-77.39407535572975, 34.618065779491474], [-77.39407671491695, 34.618077474631036], [-77.39394711569915, 34.61830176967294], [-77.39390896347909, 34.618345578840064], [-77.39358487569513, 34.61877857294325], [-77.39352659650844, 34.618838069222896], [-77.39347915238426, 34.61891076844541], [-77.39310172879382, 34.61925470349252], [-77.39269074458322, 34.61893254521557], [-77.39268347141625, 34.618908546227274], [-77.39241770072043, 34.61839185336337], [-77.39190237746767, 34.618521864798396], [-77.3917725538407, 34.61833058951901], [-77.39121856198878, 34.61838324638672], [-77.39111398926025, 34.618382321318045], [-77.39101707653535, 34.618404042261254], [-77.39038469060966, 34.61845450237201], [-77.39032556510678, 34.61857726296816], [-77.39004630031616, 34.618988032700514], [-77.39008307455545, 34.61928345659538], [-77.39001139124139, 34.61963203158984], [-77.39003246596357, 34.619824369522675], [-77.38965838535887, 34.62006305813249], [-77.38953697201391, 34.62010803875942], [-77.38946797630952, 34.62014696119404], [-77.38941982504949, 34.62022820665301], [-77.389451093774, 34.62031616267452], [-77.38953694964896, 34.62028985292124], [-77.3897513600545, 34.62041135064941], [-77.3899761643325, 34.620524073497116], [-77.38997646884492, 34.62057252985443], [-77.38998858539003, 34.62063267433904], [-77.39005083809583, 34.62077409285587], [-77.38993779428675, 34.62099543846835], [-77.38993458460727, 34.621003136130156], [-77.38993107548937, 34.62100503804201], [-77.38992924767199, 34.62100587395378], [-77.38973395860238, 34.62108957180689], [-77.389622031718, 34.62113993854598], [-77.38953684001936, 34.6211846533275], [-77.38934216745074, 34.62129818306781], [-77.38914261010919, 34.621306511889124], [-77.38903431806304, 34.62144087090245], [-77.38892068702435, 34.62157386234443], [-77.38891145354995, 34.62182407497243], [-77.38885865525589, 34.62200737165598], [-77.38889782606361, 34.62216278084513], [-77.38888812271809, 34.62242769169255], [-77.38902405594001, 34.62253560993795], [-77.38914242686056, 34.622757083526665], [-77.38916500643444, 34.62281234666528], [-77.38919267702089, 34.62286249030061], [-77.38927958524039, 34.623072639077954], [-77.38933949201339, 34.623128543065945], [-77.38938233717552, 34.62320558586466], [-77.38939097739777, 34.62336114514246], [-77.3894014009957, 34.62348184236537], [-77.38929193211044, 34.62348207530425], [-77.38914233695829, 34.62347315061087], [-77.38908645931711, 34.623460520793294], [-77.38899165153234, 34.623424193233575], [-77.38886685383133, 34.62340776508035], [-77.38874812384142, 34.62337906024081], [-77.38853284078085, 34.62332803948082], [-77.38854995726203, 34.6231144608608], [-77.38836711661082, 34.62292735986912], [-77.38820920467111, 34.62268148808764], [-77.3879597933902, 34.62252423152256], [-77.38780486346477, 34.62232615603028], [-77.3878529357713, 34.62215234131224], [-77.38791040856763, 34.62209080511561], [-77.38795987187625, 34.621964758344106], [-77.38828109980003, 34.621666057419446], [-77.38833164138637, 34.621634546545415], [-77.3887435141655, 34.62117483437523], [-77.38874534319213, 34.6211712647736], [-77.38874841510638, 34.62115373141687], [-77.38894696815171, 34.62051012176609], [-77.3889875078784, 34.6202905270826], [-77.38892036380908, 34.62011516261204], [-77.38874859500177, 34.619793169189094], [-77.38865219987323, 34.61959357427383], [-77.38851959994449, 34.61950884140218], [-77.38835443300846, 34.61945814194677], [-77.38799658191064, 34.61954506426245], [-77.3879602155186, 34.61953532973242], [-77.38793508468599, 34.61956603602226], [-77.38788737318274, 34.61959997498013], [-77.38756598235273, 34.619713625039395], [-77.38723053169788, 34.61975794223761], [-77.38717176579172, 34.61977099480048], [-77.38708241315749, 34.61981222898442], [-77.38677752722005, 34.619965178706124], [-77.3865862839641, 34.62000611451438], [-77.38638329127616, 34.62013127505526], [-77.38632822150846, 34.620189973139816], [-77.38618742524174, 34.620269566199646], [-77.38604369353465, 34.62034913832892], [-77.38598904008015, 34.62037973127602], [-77.38584671519037, 34.62047193875299], [-77.38559478873246, 34.620615091226156], [-77.38549420415633, 34.62068572691332], [-77.38527728800578, 34.62082530552619], [-77.38520053016668, 34.62087874560845], [-77.38493998039192, 34.621017899450436], [-77.38480623661444, 34.62132416529177], [-77.38463753628183, 34.621584998279836], [-77.38461035816101, 34.62177055255975], [-77.38451330907446, 34.62189373681688], [-77.38447384165157, 34.622002509153745], [-77.38441188631882, 34.622055961780845], [-77.38428920552201, 34.62210928610179], [-77.38410008421035, 34.622179867395715], [-77.38401765317879, 34.62212823662103], [-77.38364609185341, 34.62230963702573], [-77.38359855092264, 34.62231416937088], [-77.38358473406612, 34.62234291945567], [-77.3832291386739, 34.62250581100423], [-77.382942239353, 34.622551096370756], [-77.38265694511307, 34.62266824741368], [-77.38244068455236, 34.622555314660325], [-77.3821952234234, 34.62270338936255], [-77.38194672085532, 34.62268634014235], [-77.38165224546292, 34.62252918207867], [-77.381042409112, 34.62247702901307], [-77.38086382994886, 34.622399152804675], [-77.38077170486062, 34.622422900914], [-77.38046958742798, 34.62248871153608], [-77.38021842417216, 34.62255749364164], [-77.38007534336653, 34.6225810725137], [-77.37953598760909, 34.62277003545087], [-77.3792867175912, 34.62331811634556], [-77.37905219739373, 34.62342055092758], [-77.37860513279398, 34.623600124096484], [-77.3784981942299, 34.62359537608266], [-77.3782696771002, 34.62377932943071], [-77.37770962060802, 34.62404342713773], [-77.37754255252597, 34.624307303916325], [-77.37749610725271, 34.624493841640955], [-77.37731523646556, 34.62462005583002], [-77.37712114843015, 34.62476343776663], [-77.3771061742875, 34.62477511138488], [-77.37692093856083, 34.6248590500789], [-77.3767689532623, 34.625023147208964], [-77.37660690866976, 34.62513294357775], [-77.37652660958976, 34.625202414685134], [-77.37637915362711, 34.625345099839876], [-77.37615401454426, 34.62551288513814], [-77.37613228760962, 34.62550919585576], [-77.3761071339911, 34.62551595053876], [-77.3760704793005, 34.62554831641483], [-77.37548740756134, 34.625787024238456], [-77.37539245715129, 34.62607053513544], [-77.375343636234, 34.62611823327428], [-77.37505145587123, 34.62622959321675], [-77.37494929984096, 34.6264444449437], [-77.3748925595826, 34.626506010461384], [-77.37488115534498, 34.62656873721499], [-77.37475210506085, 34.62669345109678], [-77.37470123464597, 34.62675216674903], [-77.37457398787498, 34.62682525676845], [-77.37455494041332, 34.62683749790381], [-77.37436865759486, 34.62686651088498], [-77.37434479128325, 34.626872283524804], [-77.37416069576086, 34.62683923534594], [-77.3739255122342, 34.62687767404576], [-77.37376643797, 34.62688341911507], [-77.37318959191322, 34.62704032137955], [-77.37297787835607, 34.62710597903883], [-77.37239457605249, 34.62777595849694], [-77.37297747793471, 34.62837160242166], [-77.37308175609293, 34.62841380998276], [-77.3733587419874, 34.62848623085892], [-77.37337168156043, 34.628525799836005], [-77.37344979166583, 34.628813467267136], [-77.3734537131355, 34.628897113267136], [-77.37346100810504, 34.628992411374774], [-77.37351308304761, 34.62931312226258], [-77.37351304556796, 34.6295851012855], [-77.37376562231691, 34.629544122879295], [-77.37411613433864, 34.62969789222245], [-77.37415983349318, 34.62969640876041], [-77.3742552995281, 34.62973360852693], [-77.37437307679124, 34.62980872213256], [-77.37455400932569, 34.62997297803676], [-77.37457249481182, 34.62998975972899], [-77.37458946255133, 34.630007227694975], [-77.3747568768043, 34.63018914952109], [-77.37478388732644, 34.63022685225987], [-77.37487273464318, 34.63039099087774], [-77.37486818313475, 34.63047772743472], [-77.37494812109156, 34.63047880077905], [-77.37512561331215, 34.63077913098041], [-77.37518971326134, 34.63093415978352], [-77.37523227657678, 34.63106994469419], [-77.37521802275226, 34.63119038217877], [-77.37534210940024, 34.63143422203998], [-77.37537579904925, 34.63155590328054], [-77.3753891853652, 34.6315902911615], [-77.37543339093355, 34.63168229551348], [-77.3754902313179, 34.63226510136599], [-77.37573610744738, 34.63238917136056], [-77.37573621322015, 34.63238943150934], [-77.3757365270506, 34.63238983834955], [-77.37583274070892, 34.63269594008089], [-77.37603828137341, 34.63267139836144], [-77.3761302879317, 34.632715107591444], [-77.37623689751082, 34.6327418797396], [-77.37635163083364, 34.63291151010869], [-77.37670617383704, 34.63286990009263], [-77.37691877164268, 34.63293897081867], [-77.37705956709097, 34.63289634936332], [-77.37754375732263, 34.63297820740448], [-77.37756316034779, 34.63313058859542], [-77.37770726242705, 34.633150790593845], [-77.37779745608374, 34.63303875605872], [-77.37821593691119, 34.63288138450774], [-77.37845931893726, 34.63280694184233], [-77.37849591529977, 34.632719450798895], [-77.37853230999193, 34.632796600918425], [-77.37855665067143, 34.632832306133494], [-77.37879905441471, 34.63289547524798], [-77.37889011244506, 34.633025631864754], [-77.37893849893626, 34.63314972666472], [-77.3792373565749, 34.633532861968625], [-77.37922351908409, 34.6335853671224], [-77.37925505348873, 34.633612259602906], [-77.37926210952487, 34.6344052974543], [-77.37926161533628, 34.634429003976905], [-77.37926216376118, 34.6344524896853], [-77.37928402654455, 34.634542701150885], [-77.37936318679003, 34.63517809580725], [-77.37940206632453, 34.63525789595214], [-77.37955207819144, 34.63579645568238], [-77.38007230801753, 34.63577266908028], [-77.38019622844627, 34.635859159756244], [-77.38034527699331, 34.635971145279896], [-77.38060938100365, 34.63620380681337], [-77.38086073998487, 34.63641525058094], [-77.38106293085545, 34.63649914885271], [-77.38125501459221, 34.63647955557341], [-77.38161128264099, 34.63663788511362], [-77.38163123415467, 34.636654428137454], [-77.38164926242649, 34.63667671069295], [-77.38170388830885, 34.63668336479442], [-77.38191947956503, 34.636593482261766], [-77.38240370653804, 34.63648692232335], [-77.38243787967069, 34.63647940201888], [-77.38296987805028, 34.63644214392775], [-77.38301349783974, 34.63666512972361], [-77.38269164344848, 34.637604841888674], [-77.38220291732245, 34.638250899597374], [-77.38164890091286, 34.63843923313532], [-77.38156864789649, 34.63842869552], [-77.38090953921423, 34.638437235374106], [-77.38086030772217, 34.638428161109985], [-77.3808509807994, 34.638435630381494], [-77.38009230456444, 34.638532766411366], [-77.38007168796189, 34.63853581197239], [-77.3800588767613, 34.63854598819199], [-77.37977135484802, 34.63850002968094], [-77.37967739467811, 34.638513046214925], [-77.37954410359055, 34.63842165325142], [-77.37953482754584, 34.638364254704065], [-77.37940188948997, 34.63822985788078], [-77.37928318470959, 34.6381333839779], [-77.37916881626597, 34.637962059365826], [-77.3790459773427, 34.63785656366652], [-77.37875975269762, 34.637612412680724], [-77.37849472262518, 34.6375920739623], [-77.37827078173737, 34.637543664108975], [-77.37815047052388, 34.637507132726526], [-77.37810044942361, 34.63750684287355], [-77.37799253015766, 34.63746752916093], [-77.37787622611073, 34.63741739368143], [-77.37770619532074, 34.63734900165185], [-77.37761709136919, 34.63730921327987], [-77.37705675157389, 34.637293965958335], [-77.3769667541079, 34.637254036961735], [-77.37691763073614, 34.63726458034974], [-77.37687458510287, 34.63727385610771], [-77.37686420827522, 34.63732169822601], [-77.3765232610192, 34.63755184706322], [-77.3763717006077, 34.63765402849667], [-77.37622603984198, 34.63773359406551], [-77.37612890438308, 34.63778071930049], [-77.37607022034466, 34.6377974296601], [-77.37575161809099, 34.63788815153431], [-77.37573458091845, 34.6378814199146], [-77.37572065639132, 34.637895968511955], [-77.37562124778948, 34.63792527401884], [-77.37534025196143, 34.637998044017344], [-77.37531147405844, 34.63800087233686], [-77.37514309754562, 34.63801923148258], [-77.3749640010244, 34.638039371024234], [-77.37494594277207, 34.63804126819044], [-77.3749290299987, 34.638043173771656], [-77.37455170152089, 34.6378488143543], [-77.37431615834237, 34.63794225450147], [-77.37397191093574, 34.637963100632945], [-77.37376307723589, 34.63795429207181], [-77.37344347225039, 34.63831943521622], [-77.37336865224566, 34.63837507522818], [-77.37323925415706, 34.63855358775464], [-77.37303101442478, 34.63866173851864], [-77.37297427355938, 34.638633121553354], [-77.37287514003481, 34.63863854869817], [-77.37257993884198, 34.63874288008658], [-77.37228629369481, 34.63872170357416], [-77.3721856535181, 34.63869393872153], [-77.37197032317961, 34.638875571896136], [-77.37170963833432, 34.63924987363003], [-77.37139686358532, 34.639269363536], [-77.37118055092313, 34.63960561023213], [-77.37115103381873, 34.63984265106606], [-77.37107261468829, 34.64020273686435], [-77.37114749250803, 34.64026771885252], [-77.3712603348351, 34.64052947080592], [-77.37129945053958, 34.64066977202905], [-77.3713651577451, 34.64071836867884], [-77.37141158559244, 34.64073181467916], [-77.37167876035709, 34.641039621464735], [-77.37175793364463, 34.64108897783251], [-77.37181966462224, 34.64116859111839], [-77.37200029460755, 34.64141741545665], [-77.37204923302923, 34.64166068063448], [-77.37225056898272, 34.64212041080525], [-77.37228068743786, 34.64222287951959], [-77.37229176121146, 34.64232903771099], [-77.3723475605205, 34.64287790780008], [-77.37232047616331, 34.643061432445165], [-77.37216301364849, 34.643733122700404], [-77.37210523997382, 34.64393505779388], [-77.37210442722777, 34.64398506662159], [-77.37219197372502, 34.64434514250509], [-77.3723161855839, 34.64457856256769], [-77.37235957391087, 34.64474410594156], [-77.37231089707684, 34.64484470413878], [-77.37225893899733, 34.644940469644155], [-77.37219603869195, 34.645071043177076], [-77.37211624029327, 34.64519958238356], [-77.37211795136429, 34.645331689038706], [-77.3720490552886, 34.64563083378826], [-77.37226422237634, 34.645830495292856], [-77.37243856100514, 34.645832556406056], [-77.3726455526845, 34.64597081508826], [-77.37273393981336, 34.64604869375796], [-77.37282647782227, 34.646169039384255], [-77.37304612723669, 34.646337738508976], [-77.37310889985983, 34.64645466421932], [-77.373219168076, 34.64652920959819], [-77.3735122262985, 34.64680443038375], [-77.37376752464814, 34.64687068012401], [-77.37393790989292, 34.6469185807443], [-77.37407214024958, 34.6468439046116], [-77.37444050185714, 34.64683153665192], [-77.37456480791842, 34.64685185139081], [-77.37470242065785, 34.64674239661088], [-77.37470309295153, 34.646742603011205], [-77.37488620797173, 34.64685796901841], [-77.3751236584838, 34.646801886912634], [-77.37519843681511, 34.646818545807754], [-77.37524172422681, 34.64682424701114], [-77.37552275479489, 34.646839151836645], [-77.37552905372053, 34.646840270025024], [-77.37578217053434, 34.646902293939114], [-77.37587045030479, 34.64697583111008], [-77.3760356690999, 34.64698573110721], [-77.37628538589809, 34.64705412206045], [-77.37649953279877, 34.647128793331206], [-77.37654719127028, 34.64715657344271], [-77.37658281167188, 34.647162670322075], [-77.37677175617728, 34.647239335185134], [-77.37689310498108, 34.64728438907678], [-77.3771731847112, 34.647379932537945], [-77.37723679048413, 34.64740113649015], [-77.37726599331562, 34.64740895927693], [-77.37733495470484, 34.64743588821558], [-77.37774297646955, 34.64761277937557], [-77.37795946857452, 34.647809897450664], [-77.3781543593927, 34.64794660964218], [-77.37873206882382, 34.648466444291], [-77.37900783390785, 34.64855342692301], [-77.37943548526181, 34.648779507648186], [-77.37946717806314, 34.648792221647454], [-77.37950018104115, 34.64882607876058], [-77.37982184196497, 34.64923848107411], [-77.38030178907704, 34.64990105848452], [-77.38056714939567, 34.65005971544674], [-77.38086245718347, 34.650326716708946], [-77.38105180705291, 34.65044532680117], [-77.38139775804694, 34.650711913423855], [-77.38143056222714, 34.650736032022515], [-77.38166536975635, 34.65106027652709], [-77.38170435621726, 34.65125346995151], [-77.38172475923601, 34.65162563781968], [-77.38170972835911, 34.65189820672559], [-77.38176983885724, 34.65227291199762], [-77.38206924512096, 34.65231675448757], [-77.38233080760386, 34.652310334786996], [-77.38248388001917, 34.65233368411687], [-77.38273452629716, 34.65244031267254], [-77.38283458889177, 34.652461098126146], [-77.38337644021333, 34.652447897187386], [-77.38341777720088, 34.65245447790755], [-77.38359562987519, 34.65248273898065], [-77.3836861400417, 34.65249721175172], [-77.38370722838569, 34.65250047546442], [-77.38374488558176, 34.65250944909873], [-77.38395117682501, 34.65254653761423], [-77.3840698768056, 34.65271115113019], [-77.38417469998014, 34.65282507039036], [-77.38426881587085, 34.653066249888184], [-77.38434164786355, 34.65322411398226], [-77.38450499834163, 34.65355183367458], [-77.38421363740521, 34.653424529155984], [-77.38399125506916, 34.65327233258941], [-77.38370256238865, 34.6530393021487], [-77.3835393091127, 34.65291250711957], [-77.38348878204455, 34.65288838192971], [-77.38344086434691, 34.65276760405728], [-77.38332389059329, 34.6526405632376], [-77.38294638922753, 34.6527650664887], [-77.38279609959395, 34.65274588423929], [-77.3827078482035, 34.65271229778459], [-77.38229411754914, 34.65282360919957], [-77.38218550354915, 34.652893737637754], [-77.38191790620806, 34.65313561419484], [-77.3819158786359, 34.653137743680794], [-77.38177740660402, 34.65357696284094], [-77.38178031659919, 34.65367822529253], [-77.3818222421217, 34.65426911208899], [-77.38183236671449, 34.65439369420209], [-77.38181997141973, 34.65441514037745], [-77.38183938914322, 34.654433534049225], [-77.38184516968775, 34.65507255579775], [-77.38187809915027, 34.6552511764673], [-77.38191190802976, 34.655439044591574], [-77.3820139349117, 34.65589687922004], [-77.38205180937166, 34.65607130947042], [-77.38208910883499, 34.656237094169754], [-77.38223984788634, 34.6564674539689], [-77.38225576951865, 34.65648141629478], [-77.38228631843083, 34.65657219453811], [-77.38237256102055, 34.65682457424368], [-77.38238683162794, 34.65686924709095], [-77.38239528985237, 34.656919471781116], [-77.38241137997176, 34.6571928127586], [-77.38222950998554, 34.657431772778544], [-77.3822843519399, 34.6577273816584], [-77.38237721705192, 34.657964597406604], [-77.38263372666975, 34.658523343337905], [-77.383486518281, 34.65934992149826], [-77.38389818383487, 34.659547320001536], [-77.38485706615623, 34.65988225457088], [-77.38487599656143, 34.659888744531514], [-77.38488426382975, 34.65989159915643], [-77.38490258686059, 34.65989921485097], [-77.38559667351626, 34.660138051074284], [-77.38599535239126, 34.66017860750729], [-77.38614898662637, 34.6602150918031], [-77.38643865657956, 34.660278024469015], [-77.3864606136443, 34.660637665007265], [-77.38646497235024, 34.66065900817691], [-77.38644968335993, 34.66067537875732], [-77.38615643444153, 34.661034855383036], [-77.38597279401019, 34.66121414490888], [-77.38586274233272, 34.66141261692905], [-77.38577392162892, 34.66148521495873], [-77.38559148612413, 34.6615720591142], [-77.38534035478642, 34.66158769643886], [-77.38524341222924, 34.66159310024692], [-77.3849910608742, 34.661579331147834], [-77.38483935480726, 34.661510059897424], [-77.38440321206451, 34.66154321074383], [-77.38431935515071, 34.661516335169665], [-77.38413569996574, 34.66146694948627], [-77.38408373165917, 34.66130354289399], [-77.38366654566885, 34.66138034993107], [-77.3830936484226, 34.661932781562825], [-77.38296938403866, 34.66203859099765], [-77.38287930245495, 34.6621272276204], [-77.38288924607873, 34.66222367768263], [-77.38253783766113, 34.662932252608336], [-77.38246253982962, 34.663159371693645], [-77.38246544338122, 34.66333872160296], [-77.38240357667803, 34.66345133054952], [-77.38221891162061, 34.663680292070964], [-77.3820800473907, 34.66380266154367], [-77.38188536075884, 34.66403695187867], [-77.38175934655338, 34.66415650179427], [-77.38172636801087, 34.66423545789236], [-77.38167231728829, 34.664343942624285], [-77.38153340048476, 34.66459432412838], [-77.38137621473112, 34.664771031012734], [-77.38141649022964, 34.66493528804474], [-77.38159519398022, 34.6650378953066], [-77.38163708913439, 34.66515966032463], [-77.38175974413946, 34.665205666153085], [-77.38194763469984, 34.665314750289866], [-77.38210713415032, 34.6653359664588], [-77.38220370472226, 34.66538828625105], [-77.38230610571526, 34.66543292519084], [-77.38236338932121, 34.665484022087846], [-77.38257145965157, 34.665581389443155], [-77.38256056444865, 34.66563121710394], [-77.38259943869635, 34.66570178261554], [-77.38306408024712, 34.66595092525351], [-77.38311421630097, 34.66599008701194], [-77.38311694838197, 34.66599124021314], [-77.38314348848718, 34.66599008633106], [-77.38338699493963, 34.66608115148597], [-77.38338877011641, 34.66617615872135], [-77.38362146365823, 34.66630437779992], [-77.38370317741644, 34.6663282744956], [-77.38387107966517, 34.66637737609899], [-77.38415980119794, 34.666511423416594], [-77.38444262082542, 34.66654729030531], [-77.38445582894816, 34.66654628237027], [-77.38472696950518, 34.66661901168287], [-77.38521145630828, 34.666577875516346], [-77.38533700706832, 34.666578702178086], [-77.38542931805054, 34.666575842826845], [-77.38563889379827, 34.66656935129845], [-77.38591630317198, 34.666564463313925], [-77.38593949662814, 34.666564428627254], [-77.38595579644465, 34.66656459617064], [-77.38600976437023, 34.66657048648263], [-77.38617910386338, 34.666589731997576], [-77.38622420103046, 34.66661435693004], [-77.3863601753321, 34.66664740246195], [-77.38648803176045, 34.66673630332498], [-77.38676416176123, 34.666677781112455], [-77.38682715798612, 34.666681983141395], [-77.38708743155257, 34.66673268641617], [-77.38729109505205, 34.66671890674742], [-77.3876925888197, 34.66670920041111], [-77.38826586048471, 34.66673246442851], [-77.38828411515186, 34.66673274299476], [-77.38829877854177, 34.6667312721523], [-77.38835260072172, 34.666735461764134], [-77.38877471277324, 34.66675894957703], [-77.38886334180611, 34.66679872296142], [-77.38897790835117, 34.66678116475192], [-77.38922184479146, 34.66677105260608], [-77.38942730392014, 34.66676831695588], [-77.38951778740456, 34.66675141044547], [-77.38997898436885, 34.66665747614594], [-77.39018823329971, 34.666648878077574], [-77.39028153809382, 34.6666696831134], [-77.39076495236404, 34.66686977248593], [-77.39121605468736, 34.66703417735607], [-77.39134625314534, 34.66707486309713], [-77.39147172741187, 34.66712095685416], [-77.39154142627893, 34.66702420658727], [-77.39180122433508, 34.66691184611781], [-77.39187246037974, 34.66686054658289], [-77.39205354030156, 34.66684517980238], [-77.39219206060085, 34.66680313830483], [-77.39228581191465, 34.666811187991534], [-77.39238253117092, 34.66681540987057], [-77.39243938663236, 34.66683374786029], [-77.39260559011927, 34.666900975702596], [-77.3926635111567, 34.66695132946328], [-77.39276132049793, 34.66698647415774], [-77.39313838981712, 34.667125073652684], [-77.39324300922034, 34.6671626486211], [-77.39332568813437, 34.667161796493176], [-77.39346991177344, 34.66720996207867], [-77.39354261352315, 34.667234297952874], [-77.39361250744994, 34.66725704227829], [-77.39376960658521, 34.667308123846055], [-77.3938269906301, 34.667358501320365], [-77.39392497896239, 34.66739427195669], [-77.39433492083968, 34.66751865778498], [-77.39441300955943, 34.66754732789649], [-77.3944666069333, 34.667532362338356], [-77.39469458612268, 34.66759180596293], [-77.3947137572558, 34.66761503559933], [-77.39499064169458, 34.667691483540395], [-77.39500564491465, 34.667713323930585], [-77.39505776345639, 34.66769637096204], [-77.39552358653961, 34.66776552103082], [-77.39566498446149, 34.66764909172602], [-77.39587637206341, 34.66759452788895], [-77.39594360561503, 34.66744738912743], [-77.39609365126896, 34.667275273853704], [-77.39619600787212, 34.6673692819642], [-77.39634272610017, 34.6675213350085], [-77.39637191349209, 34.66756168564813], [-77.39639216755607, 34.66760445112138], [-77.39659468391217, 34.66791508497871], [-77.39661524215589, 34.66805541299479], [-77.39665225377249, 34.668254676447226], [-77.39659074482324, 34.66836304394808], [-77.39657199357903, 34.6687330004825], [-77.39655122206406, 34.66877845965924], [-77.39659834896148, 34.66885059769135], [-77.39663770478919, 34.66884054334204], [-77.39703459124058, 34.669070551052016], [-77.39715686353222, 34.66913440391258], [-77.39734582219802, 34.669251069149496], [-77.39750959642816, 34.669318745174586], [-77.39769857696356, 34.6694762138288], [-77.39785957934609, 34.669619084979466], [-77.39816825421724, 34.670066693806035], [-77.39840604320388, 34.6702837918391], [-77.39871245052102, 34.6703999657105], [-77.3989599656156, 34.67039594635622], [-77.39908347127275, 34.67044755283361], [-77.39931018775722, 34.67054842515428], [-77.3993354466349, 34.670591998934434], [-77.39937398215982, 34.670699301968064], [-77.39939332460163, 34.67075204963526], [-77.39939572992213, 34.670763627899014], [-77.39942246107766, 34.6709020377478], [-77.39946034418922, 34.671136015151184], [-77.39946747004146, 34.67118002623644], [-77.39949047101668, 34.671264089419864], [-77.3995470984063, 34.671504822753825], [-77.39955272087285, 34.671590789281424], [-77.39961491869624, 34.67170836124957], [-77.39981065840271, 34.672156241700826], [-77.39988850333285, 34.672343376261814], [-77.40000491070973, 34.672574004802286], [-77.40010949008645, 34.67282000675322], [-77.40025599528344, 34.673082738374916], [-77.4002862476841, 34.673161460228414], [-77.40033327299221, 34.67327366706581], [-77.40037804590075, 34.67346481527491], [-77.40037871801596, 34.67347340575352], [-77.40037725218308, 34.67347848493163], [-77.40038305776936, 34.67348056671669], [-77.40050077756317, 34.673795709095074], [-77.40052584935849, 34.67386282775344], [-77.4005635055391, 34.67396363480805], [-77.40061744950899, 34.67411612596951], [-77.40066152536129, 34.674252560536786], [-77.40067737084755, 34.67432875942396], [-77.40067369203808, 34.67441538791715], [-77.40061296158058, 34.674597516345244], [-77.40052754821676, 34.67464380039649], [-77.4005658532295, 34.67473879067806], [-77.40042155401525, 34.67503261786038], [-77.40038046397353, 34.675151457686084], [-77.40036508266164, 34.675268857331474], [-77.40030411029737, 34.6755887492451], [-77.40018145337388, 34.675640937132414], [-77.40025430807351, 34.67576138559918], [-77.40032674439001, 34.675886932941424], [-77.40042908493547, 34.67613481052577], [-77.40075866192578, 34.67640214303618], [-77.40077704932631, 34.6764359993941], [-77.4008051571419, 34.67644744407712], [-77.4008430384163, 34.67647058382307], [-77.40095949940019, 34.67658306180723], [-77.40104097080014, 34.67673941890297], [-77.40106109305233, 34.67676384959552], [-77.40105375278077, 34.67681536416335], [-77.40099504811909, 34.67689794673191], [-77.40093020944623, 34.67698736460271], [-77.40087750286085, 34.67700288936449], [-77.40076039468454, 34.67708365406513], [-77.40058512829906, 34.67720698569101], [-77.40039026446055, 34.677226327065235], [-77.40030844708745, 34.67752410048696], [-77.40018267925149, 34.67787795261539], [-77.40020958626853, 34.67842730011424], [-77.40020428361623, 34.67844466355871], [-77.40021081431561, 34.67845747102496], [-77.40001660256605, 34.678859838205504], [-77.39992429414579, 34.67890579860679], [-77.39985229557692, 34.6793393002744], [-77.3998281989698, 34.679431307427905], [-77.39986432937829, 34.67949463127129], [-77.39990233709993, 34.67956390780504], [-77.40001535513382, 34.67960610202577], [-77.40041673376953, 34.680000275995226], [-77.40050396965937, 34.680120497914324], [-77.40095878649237, 34.680341194246644], [-77.40099792789262, 34.68036080152541], [-77.40123916117484, 34.68047938789498], [-77.40125734164754, 34.68049071446397], [-77.40144726656655, 34.68061971417486], [-77.4014885743924, 34.68072446286324], [-77.40166922761583, 34.68091445841357], [-77.40166090839462, 34.6809769332187], [-77.40195993952744, 34.68129117226259], [-77.40196383153176, 34.681295989575], [-77.40196437524996, 34.68129668758684], [-77.40196503904293, 34.6812975707699], [-77.40247439739375, 34.68174564643928], [-77.40272896062352, 34.68180108335184], [-77.4028128853331, 34.68183543558005], [-77.40306376370224, 34.68192328700998], [-77.4033355434601, 34.682045221728316], [-77.40335650383393, 34.68205502223744], [-77.40362418905002, 34.68220084395848], [-77.403921737304, 34.68225599482177], [-77.40393569715513, 34.68225976889809], [-77.4042289603377, 34.68232531375012], [-77.40446631354965, 34.68239867478581], [-77.40460131254139, 34.68242846586598], [-77.40480742676817, 34.68254060115354], [-77.40522708100593, 34.68243929895314], [-77.40539241902344, 34.682417284968224], [-77.40549581804098, 34.6823763760411], [-77.40576310757909, 34.682275487747084], [-77.40604535667141, 34.68216654985494], [-77.40613300827026, 34.68213240178391], [-77.40622100415872, 34.68208509635595], [-77.40627957315255, 34.68217475932715], [-77.40634203468213, 34.68227038042379], [-77.40654370949416, 34.68251091618688], [-77.40669209884321, 34.682671111671034], [-77.40688674361098, 34.68281416229946], [-77.40704753646506, 34.68288026305713], [-77.40727496544903, 34.68287122272662], [-77.40758230911084, 34.68300687619016], [-77.40775429179817, 34.6827646247505], [-77.40780671729406, 34.68262578612588], [-77.40800137641662, 34.682575693982486], [-77.40824805187435, 34.68259954999775], [-77.40842391057706, 34.682439837832376], [-77.40861165059415, 34.682446155090574], [-77.40868764236026, 34.68241876543874], [-77.4089837431719, 34.68230665423099], [-77.40933670956605, 34.682200150220055], [-77.40936960032077, 34.682189670340385], [-77.4093969945161, 34.68218210322878], [-77.40979903110616, 34.682143961700234], [-77.41001000106891, 34.68187664407498], [-77.40998417912026, 34.68169866798381], [-77.40995232136837, 34.68153534282408], [-77.40982258910637, 34.68125194003048], [-77.40972026708418, 34.681065778353705], [-77.40944854535371, 34.68085281649854], [-77.40918419976457, 34.680704099588745], [-77.40901534318539, 34.68058719331225], [-77.40892697239227, 34.680485950205956], [-77.40888267612958, 34.68036389247476], [-77.4088510858121, 34.680209374322274], [-77.40873648012546, 34.68003735964893], [-77.4085230084668, 34.67967889770216], [-77.40843087717417, 34.67949198911847], [-77.40830870930839, 34.67930175837233], [-77.40800176530149, 34.678937352440094], [-77.40802297778049, 34.678769469743784], [-77.40785451661617, 34.678657418246665], [-77.40775158603137, 34.678290668841775], [-77.40782587100543, 34.67795901667206], [-77.40747235154785, 34.67776438988267], [-77.40738359632596, 34.677602750937915], [-77.40723378958984, 34.677313335636256], [-77.40701268039697, 34.67713901583552], [-77.40672693990594, 34.67711838192083], [-77.4066765932456, 34.67709943893194], [-77.40641217497027, 34.67699995062781], [-77.40639621934608, 34.67699323078473], [-77.40626786947139, 34.676945086143704], [-77.40623615508413, 34.6769215873053], [-77.40620507649554, 34.67684979900855], [-77.40627107949945, 34.67674669272038], [-77.40637034590272, 34.67668898895792], [-77.4064318906521, 34.676635677421274], [-77.40659648841833, 34.676363534554035], [-77.40675487427711, 34.67626444417542], [-77.40673682536864, 34.67618163812353], [-77.40688874348663, 34.67588668252229], [-77.40705878989485, 34.675811685257], [-77.40729367908826, 34.67550299825378], [-77.40743149646416, 34.67538300398937], [-77.40742718112433, 34.67527117269624], [-77.40740779277596, 34.6748155792286], [-77.40738927123905, 34.6745704429402], [-77.407151612442, 34.67444669333632], [-77.40678418361215, 34.674219203230926], [-77.40647828300176, 34.67405780918686], [-77.40605389423607, 34.67381203985953], [-77.40603023898791, 34.67377429069001], [-77.40619184151916, 34.673335715700226], [-77.40621150873123, 34.673282259527845], [-77.40621424030206, 34.67327956296089], [-77.4062169624274, 34.67327415277187], [-77.40662280155999, 34.67245874716842], [-77.40673178973144, 34.67234245211659], [-77.4074462031526, 34.67230949674669], [-77.40754680125661, 34.67206859098951], [-77.40783136361712, 34.67170797626652], [-77.40791275712289, 34.67163755242355], [-77.40793055119792, 34.67160553503018], [-77.40804334017321, 34.67136738991929], [-77.40815192055409, 34.67121951993012], [-77.40817430725703, 34.67116997073751], [-77.40816090905517, 34.67112415163437], [-77.4082364285095, 34.670983686441254], [-77.40826626093933, 34.67092259216625], [-77.40832868865124, 34.67083098365813], [-77.40835122255173, 34.67079740392261], [-77.40847869923536, 34.67071738463682], [-77.40860107747307, 34.67054765939734], [-77.40865109146729, 34.670539825314606], [-77.40893666187822, 34.67049509375488], [-77.40908440266526, 34.670500567660156], [-77.40933628472004, 34.67045842032869], [-77.40957638259334, 34.670498564420505], [-77.40993022680352, 34.67066630045202], [-77.4101098354384, 34.67075737783788], [-77.40991861849534, 34.671117200038765], [-77.40977783970553, 34.67117208821785], [-77.40961753447152, 34.671372788660726], [-77.40954205503633, 34.671648687600296], [-77.40954595476597, 34.67188532467439], [-77.40951337793096, 34.67195055833148], [-77.40941970672824, 34.67214604114693], [-77.40941042731913, 34.672161742478735], [-77.40927715176358, 34.672312262095666], [-77.40916414030616, 34.67249096300656], [-77.4090688022028, 34.67260129898001], [-77.40891142840218, 34.67279496932826], [-77.40866004777732, 34.67279902508068], [-77.40851425410504, 34.672966332114086], [-77.40844291626452, 34.67323819638748], [-77.40814024147816, 34.67395368018946], [-77.40825475542346, 34.674209377646235], [-77.40830433444489, 34.674891452015935], [-77.40830930692336, 34.67507930025369], [-77.40833003135931, 34.67513835927133], [-77.40831874002738, 34.675233378188075], [-77.40831790442226, 34.675693240825495], [-77.40798676429846, 34.675988082741085], [-77.4077338413469, 34.67577286890322], [-77.4077897919404, 34.676067533115805], [-77.40779717646079, 34.67618563000436], [-77.4078624314033, 34.67641742015615], [-77.40796850199926, 34.676689206458335], [-77.40823223757067, 34.67689681265233], [-77.40834397616202, 34.67696726424689], [-77.40853914894154, 34.67709031974288], [-77.40887531068257, 34.67734519162523], [-77.40897676338167, 34.67747889429583], [-77.40905506872886, 34.677628606570316], [-77.40949872923788, 34.678153823746825], [-77.40979929355011, 34.67858002252867], [-77.41009757308888, 34.67879668180758], [-77.4106338870676, 34.67929937248972], [-77.41067239899078, 34.6794495607121], [-77.41079147450274, 34.67957942575133], [-77.41107466714821, 34.67974172393346], [-77.411356061186, 34.68005703461202], [-77.4114663060657, 34.68014978961785], [-77.41180351116336, 34.68051033013327], [-77.41202808164769, 34.68066936448284], [-77.41236475066987, 34.68078509338921], [-77.41262250913375, 34.68086771815044], [-77.41265772302135, 34.68087981721311], [-77.41268302795805, 34.680876305302604], [-77.41294364844937, 34.680956912088526], [-77.4128839368501, 34.68120492572675], [-77.41288393077798, 34.68120496954886], [-77.4128839084229, 34.68120501094706], [-77.41279541769377, 34.68143419336105], [-77.41278047781098, 34.6814483257881], [-77.41266977650923, 34.68160274241946], [-77.41255119009826, 34.681647649997984], [-77.41235587677892, 34.681837420818404], [-77.41195712700082, 34.68199888754888], [-77.41219351494433, 34.682385739814954], [-77.41239652959958, 34.68288844041263], [-77.41243852399381, 34.68317622198618], [-77.41248590761732, 34.68330214605594], [-77.41252110479175, 34.68358811972891], [-77.41251600493095, 34.68359556457431], [-77.41249610739354, 34.68359854838163], [-77.41217775962991, 34.68364397783848], [-77.4120532407606, 34.6835867683942], [-77.41166405814006, 34.68349931922606], [-77.41160644078165, 34.68340395602534], [-77.41144705888337, 34.683343386485994], [-77.41104970596314, 34.68311357689249], [-77.4105225074878, 34.683327378819754], [-77.4101680845459, 34.68360932014694], [-77.41046407282445, 34.683999922128976], [-77.41034663790015, 34.684230921454684], [-77.41034549163787, 34.68453412100223], [-77.41028977796717, 34.68477014311698], [-77.41034889475989, 34.68494066116991], [-77.410347603192, 34.68528572023438], [-77.41029749417862, 34.68533196180613], [-77.41033285506856, 34.685393697405694], [-77.410354811092, 34.685513248039804], [-77.4103688572187, 34.68582502352853], [-77.41038752484245, 34.68592258346487], [-77.41040149908208, 34.68612201830034], [-77.41040454309223, 34.6862080976739], [-77.41039756032623, 34.686259395292666], [-77.41037484241693, 34.686477263440054], [-77.4103685322789, 34.686717849731394], [-77.41033865307493, 34.6867673667976], [-77.41025436493938, 34.686966573095674], [-77.41024480139698, 34.68698793088014], [-77.41024174275519, 34.68698980823957], [-77.41023814277766, 34.687022590263766], [-77.41019795811413, 34.68723535020582], [-77.41019048173524, 34.68727315538199], [-77.410033343331, 34.68747600405263], [-77.41014870229093, 34.68770224193234], [-77.41026216385627, 34.68804611139058], [-77.41027815805631, 34.688094584850475], [-77.41028244514219, 34.688122286219745], [-77.41030755221607, 34.68821278060879], [-77.41036535195107, 34.68843085478269], [-77.41038488932426, 34.688496407468065], [-77.41039599206344, 34.688690464784166], [-77.41039813652007, 34.68872188507475], [-77.41040497581079, 34.688934373749134], [-77.41045842926954, 34.68920769370831], [-77.41046973229189, 34.68930605374393], [-77.41047494189642, 34.6893515334009], [-77.41049688300572, 34.68944856101106], [-77.41054879086846, 34.6896132747707], [-77.41054543175476, 34.689768474551286], [-77.41056067867311, 34.689896992316925], [-77.41054028467538, 34.69021696678736], [-77.410625194427, 34.690478682554186], [-77.41056687071341, 34.69088132761067], [-77.410531948658, 34.69100517289569], [-77.4105815621532, 34.69109244067201], [-77.4104734692486, 34.691476702420104], [-77.4103910111044, 34.69151497650937], [-77.41048520802367, 34.691701850299864], [-77.41052339994631, 34.692009393559374], [-77.41096079087744, 34.69227265057625], [-77.41096140890994, 34.69227303195431], [-77.41096417157739, 34.69227463408791], [-77.41118325848375, 34.69240366384562], [-77.41123515145708, 34.69243178150721], [-77.4112980971453, 34.692531246623375], [-77.41128747944269, 34.69258336303952], [-77.41127679978788, 34.69266357359261], [-77.41125809779251, 34.6927599607962], [-77.41106675111209, 34.69286963898779], [-77.4111432054045, 34.69308989209454], [-77.4111297362262, 34.69317123366331], [-77.41115887161618, 34.69330653095179], [-77.41115335141464, 34.693336775039285], [-77.4111309076059, 34.69345120075212], [-77.41108993328831, 34.69348649222546], [-77.41101739835173, 34.69348849125122], [-77.41091089376472, 34.69355146105712], [-77.41082921512518, 34.69355478733685], [-77.41052772558821, 34.693768026705115], [-77.41050533536443, 34.69377322160037], [-77.41050061584143, 34.69378979101627], [-77.41049631300235, 34.69380607628774], [-77.41010348380695, 34.69420995822084], [-77.41020369250523, 34.694374480072725], [-77.41022860127116, 34.694533293015134], [-77.41024251772043, 34.69458145823872], [-77.41024207330501, 34.69475435803583], [-77.41024209486811, 34.69480480736565], [-77.41024071557722, 34.69481708976839], [-77.41025274721649, 34.694856389578156], [-77.41032818829501, 34.69512725238473], [-77.41029897616941, 34.69522742664809], [-77.41040197114174, 34.69530874263932], [-77.41044867174942, 34.69544896426814], [-77.4104959263392, 34.69559162162527], [-77.41050954483703, 34.69565043519151], [-77.41053426922319, 34.69575847013705], [-77.4105379761425, 34.69579725501673], [-77.41055930315852, 34.69587199453796], [-77.41058748168345, 34.69599977850749], [-77.41060139251637, 34.69606151185713], [-77.41063997022029, 34.696237800346914], [-77.41064558447091, 34.696356530794645], [-77.41067761864053, 34.69640852751513], [-77.41070242677664, 34.69648431419348], [-77.41078286473332, 34.69668411757202], [-77.41077647225822, 34.696813640728266], [-77.41087435916808, 34.69699716768446], [-77.41093218998078, 34.697195035370115], [-77.41096221989777, 34.697305980735365], [-77.41114969825782, 34.69781952563734], [-77.4111291304243, 34.69792348899847], [-77.41116868234482, 34.697989086342204], [-77.41122195319994, 34.698010022326805], [-77.41134384131045, 34.69827816257275], [-77.41131869710377, 34.69837286102848], [-77.41143092027934, 34.69858818289865], [-77.41152578502164, 34.6987328302119], [-77.41163492329804, 34.698797166778405], [-77.41174569343698, 34.69897786092002], [-77.41177383608466, 34.699075713601765], [-77.41175779098855, 34.699188016515066], [-77.41172947169935, 34.699251741604314], [-77.41168788593166, 34.69944775470878], [-77.4116465424581, 34.699575157949326], [-77.41161873365147, 34.699772112080815], [-77.41187224237066, 34.70019085376066], [-77.41212845544541, 34.700266845081345], [-77.41216682151426, 34.70028026680137], [-77.41220153754122, 34.700287719635966], [-77.41236891885218, 34.70038971966797], [-77.4124270903794, 34.70048815448877], [-77.41248777232559, 34.700563319239], [-77.41253716135117, 34.700652518831006], [-77.41253103838116, 34.70082653502079], [-77.4125274443408, 34.700928674295234], [-77.4125251427006, 34.70099408202748], [-77.41268527749757, 34.701078751434366], [-77.41286888876981, 34.701175833670284], [-77.41326609998956, 34.701280429062066], [-77.41345188801014, 34.701375953655244], [-77.41361685031175, 34.701431414402734], [-77.4143844146204, 34.70161291345598], [-77.4146856554878, 34.7015421850173], [-77.41488454859858, 34.70147366563852], [-77.41522048310254, 34.701483873890034], [-77.4153476902872, 34.70146937573575], [-77.41562351394401, 34.70139482122388], [-77.41599178493544, 34.701301870269546], [-77.4160201999397, 34.70129539450527], [-77.41604028049895, 34.70129103464277], [-77.41624252157365, 34.70122886315928], [-77.41639196806734, 34.701183234906736], [-77.41641024748183, 34.70118511366357], [-77.4167481767178, 34.701059816404154], [-77.41678132923047, 34.70104382319166], [-77.41679948926897, 34.70102529583279], [-77.41681126186803, 34.70099161117562], [-77.41697402793793, 34.70061086768265], [-77.41703877620587, 34.70054989676682], [-77.41702577083727, 34.70010109259343], [-77.4170286149461, 34.70000822137426], [-77.41702653847571, 34.69998651929153], [-77.41699540743699, 34.6998977964582], [-77.41691321274595, 34.69961000352094], [-77.41662280721249, 34.699288561749185], [-77.41662073544852, 34.69928636767743], [-77.41661908371128, 34.69928634456796], [-77.41606134598918, 34.69911854518067], [-77.41602568831402, 34.69912789963836], [-77.41598740213463, 34.69910349865211], [-77.41590572853275, 34.699035367599514], [-77.41560245810172, 34.69881772315783], [-77.4154911075648, 34.698760613553226], [-77.41541051093469, 34.69867461657442], [-77.4153648342558, 34.69864333538324], [-77.41532773129103, 34.698553630575816], [-77.41535474423567, 34.69847470176207], [-77.41529547639789, 34.69832949982763], [-77.41527662517292, 34.69825620200173], [-77.41535914820076, 34.69802650856383], [-77.4152573394837, 34.697969904395215], [-77.41528631457105, 34.69785124364179], [-77.41535502154048, 34.69772452342782], [-77.41521059416, 34.6975159189731], [-77.41501027014121, 34.69739985543498], [-77.41493700284909, 34.697354057406784], [-77.41494496399766, 34.697306576341724], [-77.41466029891721, 34.697202947758825], [-77.41465953227373, 34.69720167757837], [-77.41454817483412, 34.69702574334514], [-77.41454641327334, 34.6970223297961], [-77.41454123578416, 34.69700691085119], [-77.41455709622346, 34.69700600772099], [-77.4146702018119, 34.69692585792306], [-77.41471747477362, 34.69692106985826], [-77.41474313911431, 34.696916861362126], [-77.41487217883264, 34.69689058377993], [-77.41521956780912, 34.69699404200861], [-77.41523620075978, 34.6967387292609], [-77.41537739215856, 34.69661414462774], [-77.41531956777905, 34.6964095060644], [-77.4153122445005, 34.69626065105798], [-77.4152681262365, 34.69621050876072], [-77.41522589859498, 34.69600204651381], [-77.41524016375836, 34.695905633575656], [-77.41529921646347, 34.69581973015318], [-77.41535272079678, 34.695766860488234], [-77.41537260808194, 34.69574818217554], [-77.41555996787596, 34.695559808590346], [-77.41583668905936, 34.69535362646922], [-77.41597859349753, 34.695243000726975], [-77.41607039167141, 34.695179264027495], [-77.41622926435602, 34.695104528048375], [-77.41634428002675, 34.69509293133302], [-77.41656424286629, 34.69505434856924], [-77.41676746713017, 34.6950368867263], [-77.4169001457511, 34.69491042463853], [-77.41707283838316, 34.694633458758496], [-77.4172480779732, 34.69432671115733], [-77.41746123482262, 34.69398850418768], [-77.41745608313067, 34.693918811572], [-77.4175529538957, 34.69385301748298], [-77.41770930517546, 34.69379573320698], [-77.41783490185541, 34.69379022573699], [-77.41806085886978, 34.69377490172291], [-77.41821795140213, 34.69376973923872], [-77.41826893721525, 34.69375192903246], [-77.4184288238906, 34.69376787706386], [-77.41878860188896, 34.693853647411245], [-77.41882971957484, 34.69387031773521], [-77.41886974675734, 34.693883790892755], [-77.4193342020732, 34.69399776953496], [-77.41942710814057, 34.69402056881369], [-77.41972261585356, 34.69394089421259], [-77.41974994261906, 34.69392955378158], [-77.41977778192569, 34.69391614101084], [-77.42006097226853, 34.693779701707186], [-77.4201060592557, 34.693763847381334], [-77.42014584998763, 34.69375162187719], [-77.42048342074682, 34.69363287949275], [-77.42050292636395, 34.693625067274766], [-77.4208127378565, 34.69348356758927], [-77.42084090393473, 34.693469410087594], [-77.42088701346539, 34.693405197849856], [-77.42116989151066, 34.693259350021805], [-77.42121634848857, 34.693065654257936], [-77.4213102489972, 34.692865552619544], [-77.42132524490799, 34.69276539083658], [-77.42151768515356, 34.6926119676378], [-77.42165053440787, 34.692549288930266], [-77.4217747161519, 34.692552502201146], [-77.42206860523065, 34.692484892015344], [-77.42222775157467, 34.69230124547051], [-77.42235903293212, 34.69221179384526], [-77.42255665086522, 34.69206515004922], [-77.42266564767516, 34.69196516471881], [-77.42273003395336, 34.691917845247815], [-77.42296466758947, 34.6917625569433], [-77.42299230792015, 34.69175131270401], [-77.42308012971014, 34.69168069773747], [-77.42326854576285, 34.69154711628661], [-77.42330612099889, 34.69151645710972], [-77.423372973635, 34.69145895167142], [-77.42361158363434, 34.69126795060711], [-77.42378766026255, 34.69116960193186], [-77.42394486282831, 34.69106492651162], [-77.42417642246195, 34.69089718758543], [-77.4242708804653, 34.69085003184135], [-77.4243623495394, 34.69081152554449], [-77.42458533767221, 34.690606241144366], [-77.42481741266813, 34.690411608276925], [-77.42486948583189, 34.6903328912365], [-77.42505252514317, 34.69008434253547], [-77.42512220298708, 34.6899981598381], [-77.4251511759321, 34.689969265827706], [-77.4253596466347, 34.689638457477194], [-77.42546310412747, 34.689519286433416], [-77.42554618722055, 34.689312537417806], [-77.42558414386548, 34.68925759357083], [-77.42565011595474, 34.689126627488406], [-77.42569856853305, 34.689042564616436], [-77.42570476093157, 34.68902317649776], [-77.4258195897639, 34.68889463197513], [-77.42590690177553, 34.688835891756085], [-77.42609805511114, 34.68868598475388], [-77.42614045779017, 34.68867133498664], [-77.42617758274432, 34.68865102525575], [-77.42632625026822, 34.68854063635793], [-77.4264670047701, 34.68845732504884], [-77.42649383687805, 34.688425556921594], [-77.4267052707446, 34.68827650961138], [-77.42677057641974, 34.688205753340476], [-77.42698348922876, 34.68784073733086], [-77.42699441594614, 34.687823827407065], [-77.42699747253876, 34.68781963289079], [-77.42700219103608, 34.687812177529295], [-77.42730556523162, 34.68736831399722], [-77.4274934475378, 34.68714394005976], [-77.427647653467, 34.68692888572127], [-77.42780670420146, 34.68658367197062], [-77.42789750052094, 34.68645719705487], [-77.4279398724557, 34.68637805863394], [-77.42808595721256, 34.68602074912714], [-77.42810902737615, 34.68597210663702], [-77.42807230392094, 34.68584670005651], [-77.42800447705159, 34.685608373319134], [-77.42797457640481, 34.68552303353843], [-77.42790567214595, 34.685574265679676], [-77.42767481703436, 34.685451693163955], [-77.42737223873753, 34.685425850578675], [-77.42736211166309, 34.685425092309394], [-77.42735597986442, 34.68542341846928], [-77.42706191397794, 34.685355267112996], [-77.42681469201749, 34.68528630652082], [-77.42676405242794, 34.685277371079884], [-77.42670938699612, 34.68525610129507], [-77.42653851859271, 34.68520870800673], [-77.42646866250165, 34.68519093449464], [-77.42640494593014, 34.68517728882739], [-77.42637631897722, 34.685171911010244], [-77.42631963204927, 34.68515233162743], [-77.42630270671033, 34.68514683415982], [-77.42630867859711, 34.68513276831314], [-77.426290613991, 34.68509608359945], [-77.42628815767509, 34.68505570618558], [-77.42628790929234, 34.6849856180009], [-77.42630458525298, 34.684826220350224], [-77.42631466088352, 34.684785438035426], [-77.42630801900765, 34.684754037089434], [-77.42631457564566, 34.68461620833587], [-77.42631206147459, 34.68452916141479], [-77.42631973870893, 34.684507675995995], [-77.42632597491306, 34.68448724176342], [-77.42637573049126, 34.68440487838582], [-77.4264379751402, 34.68429641598848], [-77.42645410752829, 34.68427513624994], [-77.42656370172, 34.68412803371304], [-77.42662034110575, 34.684053741945], [-77.42668236635522, 34.68394810626955], [-77.426690375701, 34.683938469206424], [-77.42670063598122, 34.683920619358545], [-77.42675025493182, 34.68381964424851], [-77.42679943587335, 34.68376557077902], [-77.42690097846034, 34.683696977035225], [-77.42696127894595, 34.6836562430661], [-77.42707067373001, 34.683652179451954], [-77.42717126174774, 34.683625625350416], [-77.42727348064551, 34.68351690969888], [-77.42735922240347, 34.68364576526929], [-77.42751428903836, 34.68379195183944], [-77.4281078937695, 34.68377968968346], [-77.42815112829418, 34.683805614834085], [-77.4281836021997, 34.68378504251074], [-77.42821281035106, 34.68377211935274], [-77.42818865885022, 34.68374598249916], [-77.42843045062179, 34.68344076133518], [-77.42841786254934, 34.68328476650542], [-77.42842990927842, 34.683198914553486], [-77.42846653961047, 34.683125830559284], [-77.42850906415417, 34.68312223267009], [-77.42855968885479, 34.68309116054144], [-77.42861424122094, 34.68307391589373], [-77.42864044974554, 34.683036235711896], [-77.42870584512805, 34.68299579459859], [-77.42883014620088, 34.68297245156546], [-77.42895225675544, 34.68291260330222], [-77.42899962856566, 34.682875617967824], [-77.42907725405193, 34.682819474840976], [-77.42932121906057, 34.682653546079024], [-77.4296481561608, 34.682596925723], [-77.42979359526335, 34.682558325885395], [-77.43002334324163, 34.68253386938758], [-77.4301668368318, 34.6825403810442], [-77.43049660175656, 34.682343246354385], [-77.4305135991196, 34.68234054330307], [-77.43050992621635, 34.68233078022255], [-77.43080619125907, 34.6820899924499], [-77.43091928663432, 34.681989666122874], [-77.43095898995858, 34.68196588727341], [-77.43097373496921, 34.68194240603425], [-77.43100185007629, 34.681902265535136], [-77.43107749149418, 34.681785709530786], [-77.43113200537978, 34.68171822697024], [-77.43122699331278, 34.68158509940697], [-77.43129390287774, 34.681495316530025], [-77.43132830309027, 34.68144793176245], [-77.43144334383487, 34.681285676776696], [-77.43145133083357, 34.68127515641515], [-77.43145335818261, 34.681271552411566], [-77.43145423136743, 34.68126705818957], [-77.431465480259, 34.68120916131984], [-77.43150142320995, 34.68102416672855], [-77.43150421333588, 34.681009806585585], [-77.43150747301124, 34.68099302946621], [-77.4315550681832, 34.68074806077876], [-77.43156633977289, 34.68071535761131], [-77.43158599774208, 34.680619112248394], [-77.43166224995043, 34.680510650166696], [-77.4316655385989, 34.68050716501016], [-77.43166700339323, 34.680506020831224], [-77.43166923812176, 34.68050485873938], [-77.43184859257619, 34.68042899112133], [-77.43187041471796, 34.680423761596415], [-77.4320142370241, 34.68041976008291], [-77.4321150787861, 34.68049075971773], [-77.4322845719284, 34.68059274823138], [-77.43267289200921, 34.68065490450653], [-77.43291254497507, 34.68063694769279], [-77.43308245678712, 34.68057668131815], [-77.43342220602966, 34.68056246372542], [-77.43354448438407, 34.680584225691064], [-77.43356998770867, 34.68057927326888], [-77.43388493680548, 34.680444761151776], [-77.4339097362803, 34.68043355669242], [-77.43393605361838, 34.68042133523791], [-77.43409055712678, 34.68035527168054], [-77.43422867678854, 34.680285444239956], [-77.43426309613334, 34.6802634474939], [-77.43431094977123, 34.680232864953254], [-77.43445020431903, 34.68019544185286], [-77.43457706961523, 34.68018673533804], [-77.43464441605867, 34.68018761329566], [-77.43468220639639, 34.680200828937835], [-77.43495056373052, 34.68023680193053], [-77.4351186940085, 34.68016661815784], [-77.43527553493387, 34.680220916283844], [-77.43537481394179, 34.68021143191465], [-77.4354911818133, 34.68025154505009], [-77.43557520410525, 34.68029250290797], [-77.43569845402757, 34.680380146116164], [-77.43570352727777, 34.680386100801535], [-77.43578713178233, 34.68055091976038], [-77.43577895303254, 34.680577812702694], [-77.43590274814406, 34.68087087625504], [-77.43599922368111, 34.68104180025689], [-77.43630201156543, 34.68125225706957], [-77.43681637846777, 34.68144636231017], [-77.43693481582493, 34.68123178015674], [-77.43713889783785, 34.68122583572905], [-77.43723009537314, 34.681216881343474], [-77.4373484002685, 34.68119443394159], [-77.4375329295482, 34.68118480634555], [-77.43755885506349, 34.681187900942064], [-77.43757228322232, 34.68118653923644], [-77.43766152279619, 34.681242723814464], [-77.43768168238103, 34.68131707728449], [-77.43769132454398, 34.68134188274907], [-77.43770152252947, 34.681397801352915], [-77.43766470061442, 34.6814870068183], [-77.43764510733874, 34.68158437633666], [-77.43755021533764, 34.68189820186484], [-77.43744962602139, 34.681970847428644], [-77.43758671073513, 34.682199287019344], [-77.4377174800197, 34.682446963319826], [-77.43809027904602, 34.68267363642716], [-77.43829143730768, 34.68282424962866], [-77.43853135834618, 34.68300000542402], [-77.43860306905596, 34.683116118349346], [-77.43885441221721, 34.683282324174556], [-77.43912694638483, 34.6835202812953], [-77.43916942968201, 34.683626438862156], [-77.43919165607015, 34.683698061496564], [-77.43937721079081, 34.68398610097228], [-77.43954344397396, 34.6842957444008], [-77.43958308545193, 34.68434655911167], [-77.43966625964998, 34.684423047013496], [-77.43970712314095, 34.68451797967013], [-77.43978756674389, 34.6845594449135], [-77.43980874563599, 34.684612626335465], [-77.43979563505512, 34.6847042310739], [-77.43978969633906, 34.684745726079285], [-77.43978211675419, 34.68479868613021], [-77.43958072326453, 34.68495218082403], [-77.43972768502417, 34.68517900209957], [-77.43970639390304, 34.68542261773838], [-77.43968987354019, 34.68554938536158], [-77.43965865011606, 34.685654225862876], [-77.43958193156438, 34.6859668874588], [-77.43946522107271, 34.68602987938195], [-77.43941682314681, 34.68620158209576], [-77.43956099986131, 34.68645063300226], [-77.43974746990018, 34.68695635977254], [-77.44002317658827, 34.687068223318775], [-77.44024976001523, 34.68705841970381], [-77.44053366070743, 34.686962476907745], [-77.44064809497797, 34.68696177809815], [-77.44070030078636, 34.686942604531666], [-77.44112805580446, 34.686998544144416], [-77.44137112069973, 34.68669623128404], [-77.44145013066657, 34.68656556657859], [-77.4416511801949, 34.686358185895905], [-77.44194533493618, 34.68648522749487], [-77.442079948929, 34.6866034996344], [-77.44221667270705, 34.68681835766593], [-77.4430099028178, 34.68708349164777], [-77.44320709562696, 34.687137529597216], [-77.44366266226943, 34.68710749470995], [-77.44384499500555, 34.687147523110646], [-77.44394476862982, 34.68711605451359], [-77.44402705638595, 34.68706571658433], [-77.44406817252445, 34.686938194910624], [-77.4442806059717, 34.68659532540429], [-77.44417415700445, 34.68600919189266], [-77.44417270648002, 34.68600172562533], [-77.44417335895268, 34.685998804759436], [-77.4441732784784, 34.68599423770469], [-77.44414908600663, 34.68571080454304], [-77.44416103547617, 34.685600412770356], [-77.44416077780998, 34.68557513474959], [-77.44418801574358, 34.6855489205107], [-77.44427045305127, 34.685473719163774], [-77.44430059492322, 34.6854546784859], [-77.44434158301752, 34.68543017608118], [-77.44446901588738, 34.685356113205856], [-77.44456851639973, 34.6852984053983], [-77.4446378366341, 34.68525820144091], [-77.44495175851827, 34.68515286877746], [-77.44500902946533, 34.685117211893726], [-77.44510036139138, 34.685022061137225], [-77.44527567007646, 34.68498659073087], [-77.4453326167998, 34.68489842356478], [-77.44546166277316, 34.68488054971671], [-77.44557237635459, 34.684810801695754], [-77.44573625126237, 34.684810454342696], [-77.44580582632679, 34.684798305610535], [-77.44611257648069, 34.68467785576644], [-77.44645699423035, 34.68460157185775], [-77.44650396966755, 34.684599856173904], [-77.4465176332527, 34.684592212171346], [-77.44653131015247, 34.68458700086847], [-77.44669454769915, 34.684502384316296], [-77.44686643973826, 34.684414643499785], [-77.44692547335454, 34.68440596368195], [-77.44719064702045, 34.68444104853041], [-77.44760870106144, 34.68440460278809], [-77.44776066991327, 34.68438081969124], [-77.44789069777386, 34.684235968641524], [-77.44845340196136, 34.684017712746034], [-77.4486211379602, 34.68392575620018], [-77.4489641484455, 34.68376037674648], [-77.4492049569466, 34.68375073832466], [-77.44930719681986, 34.68376904204712], [-77.44941703994556, 34.683723531954044], [-77.44949815745578, 34.6837781448147], [-77.44959060287275, 34.68389692989028], [-77.44977970455217, 34.683942392561434], [-77.4498760105577, 34.68401789565823], [-77.44999089932452, 34.68401881346438], [-77.45034004722439, 34.684110501002365], [-77.45047587751077, 34.68415933468145], [-77.4505775549153, 34.6841248378254], [-77.45079800165651, 34.684128210572155], [-77.45080352650112, 34.68413417701581], [-77.45081416205285, 34.6841377022384], [-77.45107829184882, 34.68429196407435], [-77.45144048042856, 34.68441360557731], [-77.45169652707926, 34.68436986437185], [-77.45183618565488, 34.68431267786944], [-77.45203618644342, 34.68430315404622], [-77.45205448390769, 34.68429562231685], [-77.4521136869632, 34.684302251243395], [-77.4523068385698, 34.684334214181405], [-77.4523444719382, 34.68434498160346], [-77.45241291783377, 34.68434669293789], [-77.45295146574185, 34.68446177119464], [-77.45339920972464, 34.68462411289893], [-77.45362408863801, 34.68435149994093], [-77.45368120755992, 34.684337390642575], [-77.45369537867332, 34.68429606968698], [-77.45396350708378, 34.68428561066149], [-77.45408488484617, 34.68424948619723], [-77.45420604068414, 34.684195046783316], [-77.45425206661872, 34.68402508036602], [-77.45430730343158, 34.683950936920375], [-77.45442707542952, 34.683790167380806], [-77.4549530108406, 34.68417661137231], [-77.45495094672317, 34.68417964703325], [-77.45468539670046, 34.68448319081676], [-77.4545789413134, 34.68460487634849], [-77.45441622702526, 34.68479086979329], [-77.45425574625031, 34.68505092268548], [-77.45399927389185, 34.68546995023], [-77.45397382693326, 34.68551139537959], [-77.4539061994688, 34.685592335585206], [-77.45342358124672, 34.68615892055105], [-77.45310937245438, 34.68632727468547], [-77.4523148207465, 34.686664317519394], [-77.45198764894167, 34.68680271313737], [-77.45132618071305, 34.68682204615095], [-77.45097363905938, 34.68687063586976], [-77.45029240467264, 34.6870228034723], [-77.44997230059654, 34.68746685701906], [-77.44942708066597, 34.68778732628652], [-77.44892836415116, 34.687784103656895], [-77.44845148388706, 34.688053305405255], [-77.4484974532993, 34.688660221733755], [-77.44801701605397, 34.689019482909735], [-77.44793592587015, 34.68915266460095], [-77.44778175791006, 34.68985189350789], [-77.44774199264974, 34.690041388363085], [-77.44796375160148, 34.69066874951723], [-77.44796392641202, 34.690677981218634], [-77.44798041134761, 34.69072049916688], [-77.44809804398741, 34.69128387644818], [-77.44800035084906, 34.69154631059247], [-77.44831218518708, 34.69164365045168], [-77.44879308115843, 34.69204840069504], [-77.44882537694535, 34.69208507637831], [-77.44883738691668, 34.69208967341524], [-77.44886177119932, 34.69210983234671], [-77.44891687018571, 34.692250666575795], [-77.44900162179248, 34.69271772578241], [-77.44918303120608, 34.693064499650816], [-77.44927477766448, 34.69369274427226], [-77.45017812758962, 34.69405567425409], [-77.45024537612153, 34.69418034403927], [-77.45029828135209, 34.69428893632276], [-77.45064055127904, 34.694908198886196], [-77.45069710470459, 34.69498733116146], [-77.45086387705258, 34.695261380359355], [-77.45103754147435, 34.69551625792775], [-77.45110756184889, 34.695606061112834], [-77.45121754142295, 34.695728221429746], [-77.45147766137626, 34.69634438870471], [-77.45193625739685, 34.696840989046215], [-77.4525327773204, 34.69666341536191], [-77.45276067190173, 34.69670153891422], [-77.45326318132607, 34.69668452021533], [-77.45345688377407, 34.696678146992085], [-77.45385841223856, 34.696689607519566], [-77.4538982534722, 34.69670448583191], [-77.4539660722301, 34.69668872401625], [-77.45438108193811, 34.69669302016231], [-77.4545461006636, 34.69668025164416], [-77.45520489930918, 34.696562619175054], [-77.45521414482799, 34.69655900975857], [-77.45526714766133, 34.69654780255127], [-77.45582688717559, 34.69668334309873], [-77.45630009374358, 34.6968380967472], [-77.45655856890076, 34.696476629840596], [-77.45719724381848, 34.696376513097846], [-77.45813133965689, 34.69702617483129], [-77.45821299207662, 34.697103412713055], [-77.45826370891663, 34.697121138324626], [-77.45833630707013, 34.69717459208508], [-77.45901651337367, 34.69766074485025], [-77.45928797683374, 34.69801182613751], [-77.45954080936541, 34.69833468207628], [-77.4598789000471, 34.69875472768253], [-77.46008689087436, 34.69899952598], [-77.46026587750484, 34.69906303208567], [-77.46053223396427, 34.69926663868358], [-77.46090430603014, 34.69955105554983], [-77.46126667449677, 34.70003508012029], [-77.46166655460787, 34.70049723410635], [-77.46195178745708, 34.700899402215235], [-77.46225735338325, 34.70104221848278], [-77.46269923614963, 34.70131122015211], [-77.46286382354403, 34.70141141460757], [-77.46297854386171, 34.70151454670082], [-77.46320320940401, 34.701716129120676], [-77.46330660233882, 34.7018467363741], [-77.46346882204531, 34.70205165316837], [-77.46370683379482, 34.70232793212851], [-77.46422510571882, 34.70310380013291], [-77.4645580049681, 34.703382589304496], [-77.4647585729252, 34.70347551897619], [-77.46510883548594, 34.7039356128253], [-77.46511334192851, 34.70404357112515], [-77.46519670058957, 34.70417721248313], [-77.4658191034371, 34.70464172673631], [-77.46590175576658, 34.70533050484409], [-77.466360466547, 34.706201464933244], [-77.46616108608585, 34.706964642196596], [-77.46574144967971, 34.707510387776765], [-77.46527134998858, 34.70835495784341], [-77.46522012155754, 34.708417256028326], [-77.46517771106083, 34.708431422429506], [-77.46389688305067, 34.708675555952496], [-77.46360683893516, 34.707882734795874], [-77.4632043702992, 34.707519534329194], [-77.46303099727866, 34.707236193643766], [-77.46302900664246, 34.70669986142628], [-77.46283966300821, 34.70649681116713], [-77.46268504164676, 34.7062155360532], [-77.46258420631543, 34.705992708549154], [-77.46218038135763, 34.70574409422091], [-77.46212293444091, 34.70568747048856], [-77.46208430855258, 34.70530856581322], [-77.4619977312017, 34.70508475531], [-77.46176799900523, 34.70454775735365], [-77.46142225404287, 34.70393205133277], [-77.46091347654338, 34.70401170866139], [-77.46069319466598, 34.70401374217546], [-77.46018249172946, 34.70378669439145], [-77.45970982609617, 34.70390240824344], [-77.45916264463396, 34.703849944787194], [-77.45893626276727, 34.703663713129515], [-77.45845039611737, 34.70334016959757], [-77.45837294269872, 34.703395340502425], [-77.4583895676422, 34.70327987761048], [-77.45839284386264, 34.70326641548846], [-77.45835836336273, 34.70318984978767], [-77.45817798894957, 34.702632362950034], [-77.45818246500883, 34.70247347208732], [-77.45806667859078, 34.70223759433693], [-77.45779591269685, 34.70227116804279], [-77.45749352662882, 34.70200327697228], [-77.45732785220827, 34.70193745228787], [-77.45698204123204, 34.70155561265773], [-77.4564955790112, 34.701392102511115], [-77.45629267963757, 34.70131060723304], [-77.45578798956727, 34.70125221113967], [-77.4554164482715, 34.70137418569911], [-77.45485914718482, 34.70147277974735], [-77.45423044539265, 34.702337911061306], [-77.45421484917419, 34.70236565081667], [-77.4541968336738, 34.70237176326483], [-77.45415834768237, 34.70236801461763], [-77.4540982433563, 34.70221071146888], [-77.45373366570004, 34.70107951520568], [-77.45361589664186, 34.7008087696821], [-77.45342083821097, 34.7005729739619], [-77.45317475694614, 34.70070213858358], [-77.45305761344277, 34.700843283301126], [-77.45216657413803, 34.70141390339327], [-77.45189827250415, 34.70160682263406], [-77.45171199341353, 34.70160369961001], [-77.45060050591471, 34.701461298545084], [-77.44965371142357, 34.7009299666791], [-77.44736526881631, 34.69984702543222], [-77.44629022961925, 34.69863656608864], [-77.44425440126734, 34.69808879671207], [-77.44381101355694, 34.69775947028959], [-77.44370799507362, 34.69757571870356], [-77.44221586160174, 34.69499696390028], [-77.44218339821897, 34.69486762377159], [-77.44192620350391, 34.69471676569797], [-77.44127086147665, 34.69435573738852], [-77.44116118475765, 34.6942120013672], [-77.44089084394113, 34.69362155365288], [-77.44073881315084, 34.69318360823573], [-77.44054529521611, 34.692872987184444], [-77.44045486445947, 34.692222653139225], [-77.44044168849969, 34.69202342438597], [-77.44039288509882, 34.691944601505234], [-77.43998810520576, 34.69162079553932], [-77.43979996024083, 34.69155711431152], [-77.43963632552575, 34.69146680269188], [-77.43944527478305, 34.6912819692818], [-77.43924970684334, 34.69098589938844], [-77.43914872353083, 34.69077753611704], [-77.43902449043364, 34.690521197462594], [-77.43850224490747, 34.690183853303125], [-77.43848539167733, 34.690169503952944], [-77.43847533432398, 34.69016582397275], [-77.43737319255345, 34.689833915804186], [-77.4372246045941, 34.69009739346509], [-77.43712611520161, 34.69024343536328], [-77.43709117537082, 34.690297200603695], [-77.43684739967132, 34.690469986463306], [-77.43660283263677, 34.69061952157888], [-77.43639260079881, 34.69075830251981], [-77.43606351043891, 34.69068420694222], [-77.43574737655493, 34.69130450622047], [-77.43567135871119, 34.69141193441415], [-77.43562537525766, 34.691463576049706], [-77.43550521001964, 34.691610623372064], [-77.43525460611525, 34.69182526839954], [-77.43511509189345, 34.69201481258933], [-77.43506803310241, 34.69204811054854], [-77.43480322229443, 34.692226493599], [-77.43465601341836, 34.69233085200089], [-77.43429859798903, 34.6922859787156], [-77.43416627269877, 34.69256283451696], [-77.4338767966396, 34.69297804315603], [-77.43384096774557, 34.69300814393923], [-77.4338297930223, 34.69301525169059], [-77.43381142804955, 34.69303508589792], [-77.43322646271722, 34.69335233163066], [-77.43320905297287, 34.69349618738856], [-77.43298291939487, 34.693797506257674], [-77.4329544785064, 34.69381628588936], [-77.43292005210255, 34.693900988994656], [-77.43272206544393, 34.69419576001599], [-77.43271822674004, 34.6942927344218], [-77.43267510609986, 34.694372363749665], [-77.43246480976606, 34.69476318146439], [-77.43235824424265, 34.69509666770602], [-77.43228688498124, 34.695427166804], [-77.43238019781961, 34.6957668727834], [-77.43238418731092, 34.69585310689405], [-77.43266261112831, 34.69616314200644], [-77.43280039043661, 34.696529610423575], [-77.43280447102084, 34.6965591178162], [-77.43280262723758, 34.696570827017055], [-77.4327556200924, 34.69682156534815], [-77.43264652226459, 34.69706263842198], [-77.43264641248814, 34.69706290938546], [-77.4326463772469, 34.69706322895125], [-77.43264553898953, 34.69706481115033], [-77.4324419983098, 34.697476966090306], [-77.43232838473867, 34.697510767879145], [-77.43239288626164, 34.69761488018653], [-77.43230182018846, 34.697995642886404], [-77.43221833055736, 34.69803134517297], [-77.43182930726293, 34.698296467103916], [-77.4316468781796, 34.69842074219749], [-77.43160869742422, 34.69843325450776], [-77.43128036553287, 34.698569480398405], [-77.43116248218134, 34.69857474700685], [-77.43092281058526, 34.69858873178201], [-77.43083648429018, 34.698591757069885], [-77.43070988269136, 34.698622028892295], [-77.43025389348048, 34.69868555139032], [-77.43000509546566, 34.698728454819125], [-77.42980516193221, 34.69869478177654], [-77.4296141972619, 34.698681384208115], [-77.42949883602357, 34.69864876623164], [-77.42924444077173, 34.69866867525374], [-77.42904920301905, 34.698661636956935], [-77.42897782881116, 34.69866571305041], [-77.42834665568975, 34.698913806362256], [-77.42830676331613, 34.69894373000765], [-77.4281586441774, 34.69928175429506], [-77.4280695137262, 34.69937596286227], [-77.42809289447041, 34.69940929558115], [-77.42811642014965, 34.699427657238644], [-77.42823584957966, 34.69971366135801], [-77.42826513933883, 34.699783803207374], [-77.42829575885922, 34.6999152809209], [-77.42831398106313, 34.7000205160826], [-77.42833490688119, 34.70020107278007], [-77.42837605128459, 34.7005527039], [-77.42833279563197, 34.700586162332826], [-77.4283607605406, 34.7006366671336], [-77.42840218215132, 34.7006548674517], [-77.42845914445434, 34.70068852781682], [-77.42878095910608, 34.70090770976904], [-77.428944300866, 34.70099627555207], [-77.42920392868939, 34.701170303063165], [-77.42919862024972, 34.70117981104359], [-77.42896363663854, 34.70136581409864], [-77.4288985622312, 34.70140679009772], [-77.42855564427224, 34.70234087808834], [-77.4285555194091, 34.70234124257705], [-77.42855544911525, 34.702341651034466], [-77.42852793045985, 34.70261112887214], [-77.42850989211894, 34.70280635194028], [-77.42850610707798, 34.70288303105315], [-77.42837659918757, 34.70330835334937], [-77.42843470366714, 34.7034171298262], [-77.42859314872152, 34.704110757890945], [-77.42922591242225, 34.70445263541504], [-77.4294490233876, 34.70464639938431], [-77.42977978452072, 34.70475352633272], [-77.43017301104999, 34.70498554143511], [-77.4303249404908, 34.705084545896284], [-77.43041457813467, 34.70513626976566], [-77.43066885667619, 34.705316414147205], [-77.43076814206441, 34.70543512217147], [-77.43085129579379, 34.70548054621841], [-77.4309508547093, 34.70550903865334], [-77.43102553571497, 34.705550910466854], [-77.43103167636639, 34.705641132212435], [-77.4310458110196, 34.70572773712729], [-77.43103094917305, 34.70577184562427], [-77.43097697110164, 34.70592562855005], [-77.4309388267251, 34.70596986251494], [-77.43087911592879, 34.70613960203039], [-77.43085387538582, 34.70629212300923], [-77.43082444525933, 34.706488931248195], [-77.43086250899094, 34.706734908386466], [-77.43090837849557, 34.7069352394644], [-77.43094045406292, 34.707088549703], [-77.43095996383154, 34.70714063096794], [-77.43092372898644, 34.70733423335198], [-77.43089352602097, 34.70735167242003], [-77.43078575361518, 34.70748263898096], [-77.430661058266, 34.70754992709829], [-77.43050654967004, 34.707776214926874], [-77.43025240439606, 34.708106589607574], [-77.43002214763328, 34.708345700336245], [-77.42997289084792, 34.7083975871834], [-77.42993788017753, 34.708415211685605], [-77.42960002868317, 34.708536018402064], [-77.4293014289571, 34.70862123552836], [-77.42907359579058, 34.70867209953454], [-77.42883344928843, 34.70877880182333], [-77.42879152555591, 34.709132543832425], [-77.42885112287287, 34.709359723799125], [-77.42882662822399, 34.70942434910941], [-77.42882843188646, 34.70951844292972], [-77.42879962224222, 34.70969443911875], [-77.42878518185854, 34.709833621190484], [-77.42886761469381, 34.71012017363054], [-77.42890412210416, 34.710230378473064], [-77.42893497841415, 34.71030082634461], [-77.42914384694647, 34.710781781141506], [-77.42919412689261, 34.71100214595213], [-77.42924166652364, 34.71104251703309], [-77.42935427282985, 34.71138171179895], [-77.42967458532691, 34.71167752817672], [-77.42968752177934, 34.711689052376755], [-77.42969312300485, 34.71169743635779], [-77.4297106414545, 34.71170810565546], [-77.43020750919985, 34.712134935482396], [-77.43045752081366, 34.71226054691154], [-77.43074085127054, 34.712506951757305], [-77.43129367986221, 34.712799568033276], [-77.43130102921803, 34.712801370005295], [-77.43189251805673, 34.7129573634995], [-77.43194474262968, 34.712979166042025], [-77.43218619758069, 34.71305005715207], [-77.43225622989324, 34.713139105092125], [-77.43226964114906, 34.71328998950642], [-77.43216888815662, 34.71348202654908], [-77.43208723253768, 34.71363908189936], [-77.43223116413128, 34.71400220723273], [-77.43234488801792, 34.714151374346386], [-77.43275894963712, 34.7143934881391], [-77.4327771308968, 34.7144174090387], [-77.4328573473359, 34.71446734309142], [-77.43313130495957, 34.7147160174452], [-77.43329021392533, 34.714772761049716], [-77.4335123348587, 34.714929597291004], [-77.433855329492, 34.715035063749944], [-77.43413402451327, 34.715190402444215], [-77.43424824781118, 34.71551258553019], [-77.43446747706415, 34.715944052998836], [-77.43453605640903, 34.716602391986655], [-77.43446242030112, 34.716705544133866], [-77.4345478813557, 34.717072271626265], [-77.43530890597066, 34.717378531927864], [-77.43546207324275, 34.718343626415276], [-77.43574812177312, 34.718980846753], [-77.43598063828259, 34.71947235944534], [-77.43561507794182, 34.71986089677794], [-77.43536807539593, 34.72149444918912], [-77.43447994837769, 34.72173765445439], [-77.433760872496, 34.72159563045043], [-77.43304582797327, 34.721644958802344], [-77.43298860470932, 34.72178088884928], [-77.43171520254572, 34.72243029306132], [-77.43170186916007, 34.72244008414626], [-77.43168490486818, 34.72244331076152], [-77.43089152610494, 34.72261156868687], [-77.43040794563278, 34.72251699432039], [-77.43035520689683, 34.722537581693736], [-77.42998300851376, 34.722622634917336], [-77.42983631242853, 34.722786636126045], [-77.42978590757974, 34.72289764100001], [-77.4297014821676, 34.72291041963838], [-77.42962547155372, 34.72300548398311], [-77.42940896192417, 34.723180241076676], [-77.42937381618177, 34.7233126523876], [-77.42939244362341, 34.723418200604506], [-77.42945419266327, 34.723597229266716], [-77.42953430357039, 34.723805404836426], [-77.42964103370167, 34.72396511725954], [-77.42964907083899, 34.72420391153332], [-77.42985414136442, 34.72443035741385], [-77.43018177015804, 34.724443027055614], [-77.43046847609989, 34.724522826519404], [-77.43100745262622, 34.72452998179426], [-77.43110147948492, 34.7245507937719], [-77.43115384340392, 34.72453577563205], [-77.43125682997393, 34.72452990008152], [-77.43174882570833, 34.724529201053315], [-77.43219935942346, 34.72474850975725], [-77.43232580371166, 34.72475074236459], [-77.43317764578768, 34.724851378689], [-77.4336256500748, 34.724689734383404], [-77.43438946451678, 34.72490452444342], [-77.43469119386879, 34.72543836318137], [-77.43523166942676, 34.72521630568511], [-77.43595937742667, 34.72548677572965], [-77.43701430266847, 34.7254240373732], [-77.43707729555969, 34.72524071734197], [-77.43740321367437, 34.725432648696525], [-77.43737107969605, 34.7255487195539], [-77.43822224179372, 34.72652882626179], [-77.43829404298044, 34.726846554039135], [-77.4385748439203, 34.72708745243013], [-77.43896108557053, 34.72746103023442], [-77.439183655582, 34.727637527935926], [-77.43958790268287, 34.72800048869102], [-77.439596804946, 34.72808857728547], [-77.44004697849896, 34.72859664133088], [-77.44014962420273, 34.72873056665463], [-77.44028659626228, 34.72869356124593], [-77.44016888584507, 34.728762530597066], [-77.44015552661232, 34.72877395543587], [-77.44012610028912, 34.728811871940266], [-77.43945394900061, 34.7291232278849], [-77.43916144451963, 34.72952856535791], [-77.43902295335383, 34.72991452150227], [-77.43857081394779, 34.72975557305379], [-77.4381687136226, 34.730014438528094], [-77.43776807867289, 34.730159744638236], [-77.43752421902063, 34.73045698770658], [-77.43715845402646, 34.73020521346905], [-77.43689275731113, 34.7301096573455], [-77.43656053507087, 34.73005588860562], [-77.4363971642239, 34.73011123734156], [-77.43620145030374, 34.7301713315378], [-77.43600965189478, 34.73022589646786], [-77.43578522237307, 34.73051957005144], [-77.43572645106948, 34.73051096322274], [-77.4352786130587, 34.730054716402094], [-77.4350207223047, 34.73010576835928], [-77.4348481754362, 34.73006990693592], [-77.4346565525967, 34.7299888153785], [-77.434501777566, 34.73000570689492], [-77.43433127793325, 34.73007681771992], [-77.43417285999232, 34.730216090764785], [-77.43415045885251, 34.7302931492788], [-77.43403008808018, 34.73041121988673], [-77.43393209242429, 34.730496358655394], [-77.43393520365548, 34.73057557018516], [-77.4338534470443, 34.73054847951262], [-77.43379770798374, 34.73050816923695], [-77.43328233537677, 34.73030652232615], [-77.43325572437774, 34.73028788911326], [-77.43276927426123, 34.73016625525491], [-77.43269008634948, 34.730137605240266], [-77.43252298550195, 34.73014718848398], [-77.4323814628205, 34.730096333775094], [-77.43229070673209, 34.730132149164476], [-77.43222058774697, 34.730177740526514], [-77.43220729982204, 34.73027888851699], [-77.43205905070307, 34.73040080982655], [-77.43202770422518, 34.730450228739386], [-77.43193400630886, 34.73063663319601], [-77.43187536317592, 34.73073734261222], [-77.43180684076785, 34.7308371576469], [-77.43179756200958, 34.73086847247145], [-77.43179153139086, 34.730898731615106], [-77.43179880826717, 34.73100183717527], [-77.43180541162403, 34.73115074144633], [-77.43181145120883, 34.73133681295664], [-77.43207181677735, 34.73152337227583], [-77.43220694930096, 34.731806870013344], [-77.43264599645238, 34.73172403884789], [-77.43281305134961, 34.731733292556875], [-77.4329077982033, 34.7316006060415], [-77.43297204496116, 34.7315584622582], [-77.4330302417172, 34.731497944439475], [-77.43310105781848, 34.731456059729176], [-77.43314967588832, 34.731448117824826], [-77.43326611985844, 34.73147018136257], [-77.43346765298777, 34.73153865776566], [-77.43353782772935, 34.73163902004657], [-77.43364506374392, 34.73159705582907], [-77.4340471294198, 34.731654651563105], [-77.43416807824588, 34.731676669463226], [-77.43467423685408, 34.73178291057546], [-77.43479637944263, 34.73172105149453], [-77.43522531062402, 34.731507337392394], [-77.43540319113315, 34.731478308949846], [-77.43557537148861, 34.731070626912576], [-77.43557511299056, 34.73101144839436], [-77.43572974986395, 34.730711258959225], [-77.43570331850255, 34.7310523235906], [-77.43614889550742, 34.731201075872896], [-77.43621827519237, 34.73123862488752], [-77.43629002708724, 34.73125393682345], [-77.43666639325608, 34.73129875099034], [-77.43687734517054, 34.731176658208994], [-77.43702004426471, 34.73112876859613], [-77.43720964532238, 34.73108268035047], [-77.43762266838854, 34.73081660744037], [-77.4378124176861, 34.730927774741424], [-77.43813860937067, 34.73124926106201], [-77.43824652250458, 34.731330427682366], [-77.43863806010704, 34.73152880031128], [-77.43870442074382, 34.731509579833144], [-77.43881767245088, 34.73164457405575], [-77.43909837800646, 34.73186780531751], [-77.43905660928904, 34.73221249051914], [-77.43901727196575, 34.73227335023746], [-77.43907376993481, 34.73244888875871], [-77.43912851019438, 34.73274804527864], [-77.43949622060441, 34.73299973206642], [-77.43953057573873, 34.733026692030364], [-77.43954292658569, 34.73304328768887], [-77.43964080877396, 34.73305025213098], [-77.44007356872775, 34.73312596745378], [-77.44015007235514, 34.73316079829477], [-77.44020781959058, 34.73319051865487], [-77.44031729091336, 34.73328661657529], [-77.44064642061024, 34.733661252533], [-77.44083458329895, 34.73382181622586], [-77.44091129176249, 34.73385377836736], [-77.44110762161023, 34.73406731848074], [-77.44115511468327, 34.73411905585691], [-77.44115950970739, 34.734132648119555], [-77.44116514996404, 34.73414187965392], [-77.44127512337224, 34.73434090390087], [-77.44135588765153, 34.734488033278126], [-77.44135309655981, 34.734498282859185], [-77.44136419822757, 34.73450440800328], [-77.44142316675456, 34.73458270583477], [-77.44159345924736, 34.734820026754036], [-77.44163318737158, 34.73486442872056], [-77.44167035378013, 34.735258726158676], [-77.44203473475943, 34.735510891757876], [-77.44204912441114, 34.735547092429286], [-77.44205913115346, 34.73557226647293], [-77.44230577879362, 34.73588641264501], [-77.44250079171977, 34.73611612589485], [-77.44260788218091, 34.73620676878314], [-77.44276672782429, 34.73630500840193], [-77.4430221955916, 34.736467748315235], [-77.44303322745206, 34.73647570034474], [-77.44303651523946, 34.73648058208058], [-77.4430515574261, 34.73649467615401], [-77.44336113893998, 34.736785287459966], [-77.4435317434804, 34.7369850245306], [-77.44386772129866, 34.73702031934016], [-77.44413225231045, 34.737125571596245], [-77.44434351540217, 34.737109487588484], [-77.44473955533753, 34.737102938576705], [-77.44477290095587, 34.73712737032523], [-77.44514965720046, 34.73737822695348], [-77.44532725672966, 34.737427462754255], [-77.44570047156692, 34.737830399988674], [-77.44583834495272, 34.73798368487759], [-77.44593728540094, 34.738045119233696], [-77.44623829845513, 34.73826320789738], [-77.44627896133068, 34.73857044328592], [-77.44636954571808, 34.738654860310504], [-77.44667168501535, 34.73886066776173], [-77.44654334733312, 34.739206844265354], [-77.44622213348514, 34.73876689164587], [-77.44600929870843, 34.738805188228305], [-77.44554646809993, 34.738886105014096], [-77.44536963724052, 34.738785243500175], [-77.44517658412798, 34.73889741542085], [-77.44491250369605, 34.738861160149774], [-77.44473589524503, 34.73889013863653], [-77.4444997092296, 34.73885972108147], [-77.44434442316214, 34.738886225973644], [-77.44426775301983, 34.73887349631878], [-77.44425944155485, 34.73885653916845], [-77.4442572440781, 34.73864344968861], [-77.44422080057434, 34.73856353188846], [-77.4438613188787, 34.73806207905673], [-77.44375454123659, 34.73796037919363], [-77.44356363816178, 34.737774940651626], [-77.44343359611031, 34.73764788418475], [-77.44335627962467, 34.73759151966479], [-77.4432598663134, 34.737582478782144], [-77.44295074271268, 34.73756082629968], [-77.44278472327422, 34.737554081472794], [-77.44267831368077, 34.73771868305536], [-77.44244548017552, 34.73794333189784], [-77.44247499736039, 34.738047871379685], [-77.44228814984473, 34.738238289972045], [-77.4419889124338, 34.738342849122844], [-77.4419710058496, 34.73870457570971], [-77.44185283778796, 34.73885433327278], [-77.44179203606855, 34.738923259539064], [-77.44163611738946, 34.73910470104295], [-77.44138159924476, 34.7392487257227], [-77.44139907615488, 34.739389622562996], [-77.44128924172395, 34.73959733085679], [-77.44112683002072, 34.73971874402024], [-77.4408905648709, 34.74004820211256], [-77.44079015688432, 34.74016014914337], [-77.44075442365273, 34.7402191109203], [-77.44064020583282, 34.74033063433658], [-77.44047894860813, 34.740516832065936], [-77.4404475088074, 34.740599467005914], [-77.44036268170227, 34.740714859764424], [-77.44028513819997, 34.74082225426959], [-77.44025807769445, 34.7409037359546], [-77.44022231598835, 34.74107981961817], [-77.44018207545517, 34.74123662136133], [-77.44015335260642, 34.74161475344173], [-77.44018696094331, 34.74189701890468], [-77.44020606308581, 34.742119432447076], [-77.44018413686705, 34.74218453497141], [-77.44016924025219, 34.742253917263085], [-77.4401091152756, 34.74260628960636], [-77.44008694552659, 34.74270960716969], [-77.44007439247385, 34.74284664898964], [-77.44005018139151, 34.743077286595046], [-77.44003063094976, 34.743248960076436], [-77.44002054443817, 34.74350634243013], [-77.44001825363488, 34.74352414983351], [-77.44001654642847, 34.74353772860412], [-77.44004020458685, 34.74381133134252], [-77.44004174546485, 34.7439736239045], [-77.44005934552001, 34.74437704504289], [-77.44005797728018, 34.74441326168407], [-77.44005706168258, 34.74456188080727], [-77.44014834819654, 34.74482196748162], [-77.44012764871562, 34.744959932492705], [-77.44014728545275, 34.74520859659198], [-77.44015054707032, 34.74552695781974], [-77.44011913199694, 34.7457269752101], [-77.43996152909867, 34.7460199522957], [-77.43981918917818, 34.746168046665176], [-77.43975751475284, 34.74622819541866], [-77.43967564398737, 34.746307439604124], [-77.43961215291233, 34.746384893441125], [-77.43962090584986, 34.746459985859545], [-77.43964786810257, 34.74648159559634], [-77.43966194693796, 34.74648126686935], [-77.43970014010159, 34.7464876656341], [-77.43974716390261, 34.74642423993549], [-77.43983456445523, 34.746438743835], [-77.43995753980353, 34.746393988611956], [-77.44012739871431, 34.74653477776161], [-77.44019935691621, 34.74658632535121], [-77.44049579125118, 34.74676561483224], [-77.44053351068959, 34.74689332770346], [-77.4406612745923, 34.746905834300506], [-77.44087295124612, 34.74689736787656], [-77.441187041117, 34.7469066072654], [-77.4413054205079, 34.74689582660935], [-77.44150191464973, 34.74683756891902], [-77.441549125351, 34.74675029237133], [-77.44173510143466, 34.746639514642126], [-77.44176712811736, 34.74637865706569], [-77.44177284576338, 34.746368027170746], [-77.44180722044248, 34.746361930013116], [-77.44210136529723, 34.74636119694943], [-77.44245945098092, 34.746333521889945], [-77.4426619679606, 34.74632477625196], [-77.44275694688912, 34.74631164180923], [-77.44292215952194, 34.746343170403605], [-77.443380977467, 34.746371126605794], [-77.44361888434793, 34.74639222770782], [-77.44379838334862, 34.746424001348984], [-77.44400377353784, 34.74643487818115], [-77.44418390253604, 34.746567296395014], [-77.44432561163708, 34.746426364449974], [-77.44455174191268, 34.74642038250094], [-77.4446502310502, 34.746416844852675], [-77.44489901182592, 34.74641119480333], [-77.44488026491805, 34.74662010087603], [-77.44469680297337, 34.746657254635664], [-77.44458305077515, 34.74664904649833], [-77.44428079943799, 34.74672552222446], [-77.44401034506606, 34.74678198105342], [-77.44389979092882, 34.746794272586484], [-77.44387488240801, 34.74681025959054], [-77.44385559120052, 34.7468212033002], [-77.44382901659698, 34.746857637220664], [-77.44359869393911, 34.74710683659525], [-77.4433962339648, 34.74721976587845], [-77.44332104699396, 34.74740103367931], [-77.44322322126283, 34.74771834958894], [-77.44307683688162, 34.74806429717585], [-77.44298400718175, 34.748345836183766], [-77.44278653822373, 34.74868385026601], [-77.44244573039754, 34.74896204125398], [-77.44211314690395, 34.749359187685315], [-77.44195149345799, 34.7495102076308], [-77.44190031099225, 34.74956659420159], [-77.441776868497, 34.74969878162237], [-77.44136413345109, 34.75018624781387], [-77.44105097051863, 34.75031369198197], [-77.44100251728433, 34.75034335307732], [-77.4409254952563, 34.75042484229803], [-77.44067730226297, 34.75055990046803], [-77.4405481749751, 34.750697083147074], [-77.44046489957358, 34.750939644670396], [-77.44053757484829, 34.75125240272533], [-77.44031320499536, 34.75146057845526], [-77.43997295683971, 34.75150042273452], [-77.43958547967867, 34.75176746931068], [-77.4392737011362, 34.75192896633192], [-77.43920269715993, 34.751946076822094], [-77.43887188397112, 34.75209744077031], [-77.4387083042795, 34.752118846899336], [-77.43851499222686, 34.752106445192446], [-77.43835575009896, 34.75216733358157], [-77.4380116108461, 34.75218788447364], [-77.4378569282507, 34.752272596276235], [-77.43782426632829, 34.752277238495374], [-77.43760722621383, 34.75227516035548], [-77.43726224196598, 34.75227566201055], [-77.43719624075197, 34.75223138257764], [-77.43714227636801, 34.75226352837266], [-77.43711023426577, 34.75229126636263], [-77.43672432368822, 34.752328645504804], [-77.43652370768302, 34.75233929822708], [-77.43648921333543, 34.752353835490496], [-77.43632444263909, 34.75242327615719], [-77.43624034828471, 34.75247872667441], [-77.43617093406934, 34.752522163698906], [-77.43616236720335, 34.75253242976496], [-77.43613176279699, 34.75258561571902], [-77.43604855416628, 34.75272040218121], [-77.43600940130763, 34.752798261487534], [-77.43619369819488, 34.75308915069097], [-77.43616221958995, 34.75318091905535], [-77.43620096930842, 34.75345433611929], [-77.43623813218849, 34.753595656231525], [-77.43619868684294, 34.753649928145855], [-77.43617834193336, 34.75368004534017], [-77.43601344146617, 34.754135781381194], [-77.43600980688421, 34.75414297978354], [-77.4360185707573, 34.75416680932838], [-77.43614678406632, 34.7545265635694], [-77.43622012869743, 34.75449597032393], [-77.43640247290536, 34.754419910964174]], [[-77.45646195047158, 34.74605023354384], [-77.45633449733336, 34.74592527268683], [-77.45614821437353, 34.745734734083754], [-77.45595052602224, 34.74559670286188], [-77.45580855023374, 34.7455266638675], [-77.45565981178935, 34.74549213308026], [-77.45531840056316, 34.74531216055626], [-77.45523224907055, 34.745302196679106], [-77.45484820842344, 34.74529196834856], [-77.45459078775795, 34.74530305850135], [-77.45421952336089, 34.74540980402743], [-77.45403690266173, 34.745462310787026], [-77.4539121435421, 34.745775082980906], [-77.453942287578, 34.74587198111509], [-77.45410194443471, 34.746142308360746], [-77.4542992728293, 34.746311093399086], [-77.45453439897918, 34.74640826571022], [-77.45462981681567, 34.74643026438189], [-77.45490371037296, 34.74643828701223], [-77.45525746796756, 34.74633123934404], [-77.45542930380637, 34.74624061189766], [-77.45563318963744, 34.74613308001237], [-77.45580921066707, 34.74632266170935], [-77.45627590968232, 34.74612788090358]], [[-77.47333148797756, 34.467800215152415], [-77.47247973973165, 34.467636665765], [-77.47197812573702, 34.46777420199976], [-77.47186789453235, 34.46781526168643], [-77.47165611557196, 34.46786546602948], [-77.4713607764981, 34.46797813683899], [-77.47121346256553, 34.468091318546975], [-77.47078569397756, 34.468336631833935], [-77.47064060990363, 34.46840700747652], [-77.47045646941649, 34.46848012277037], [-77.47005435335777, 34.46871618596862], [-77.4697534816596, 34.46878221486372], [-77.46959092646884, 34.46889057085002], [-77.46933534276515, 34.46896086584309], [-77.46912833685924, 34.46908825213574], [-77.46899681322492, 34.4691795179921], [-77.46893195575903, 34.469358888008074], [-77.46846078361683, 34.46968088536751], [-77.4684347414834, 34.469711325576206], [-77.46838734812411, 34.46972616431591], [-77.46810720799628, 34.469922514129216], [-77.46799186652692, 34.47009016395562], [-77.46752533513246, 34.47035793025513], [-77.46750306747467, 34.470446689002614], [-77.46715611540345, 34.47041968387363], [-77.4660515454876, 34.470716966292756], [-77.46582010897721, 34.47081703306972], [-77.46540191772823, 34.47080295633273], [-77.46517852210633, 34.470914316394925], [-77.46515149027238, 34.47108618816401], [-77.4648325371942, 34.47118244724994], [-77.46456670200817, 34.47139607160966], [-77.46361659416718, 34.47165917546387], [-77.46314426690023, 34.47189297835357], [-77.46256935907482, 34.47213285146708], [-77.46250362295918, 34.47217572473857], [-77.46241706697046, 34.47219600115246], [-77.46192359585856, 34.472437809871025], [-77.46187136900203, 34.47246254359899], [-77.46182327079008, 34.47248625683208], [-77.46132504955918, 34.472745163404916], [-77.46129711734869, 34.47277754495147], [-77.46125077636492, 34.47285444601407], [-77.46111939046895, 34.47307247444306], [-77.46102022517245, 34.473237035019054], [-77.46083457349869, 34.47339576239052], [-77.46053044031181, 34.47388279996072], [-77.46057941481759, 34.47405831774344], [-77.46122042670657, 34.47452238051929], [-77.4602950328215, 34.47428314495911], [-77.45968360644241, 34.47468832086621], [-77.46012938577309, 34.47518031541974], [-77.45916294398171, 34.4750668561867], [-77.45872217922624, 34.47531498448086], [-77.45843319230426, 34.475544198235866], [-77.45801739821349, 34.47580140654595], [-77.45742031573894, 34.47592433789984], [-77.45816469667298, 34.47634026941291], [-77.45924268887964, 34.47601695540499], [-77.4593434625734, 34.47598651254944], [-77.45941220111388, 34.4759786743647], [-77.45954522303012, 34.475963504919264], [-77.4611161199096, 34.47565976744086], [-77.46115616257117, 34.47543865356263], [-77.46184819112047, 34.47503969512403], [-77.462003190227, 34.47490272196124], [-77.46219427226647, 34.47481586760108], [-77.46277630710668, 34.474684335955814], [-77.46302093816848, 34.47440476961991], [-77.463295411014, 34.47434252740223], [-77.46326081659439, 34.474194518292435], [-77.46330300789575, 34.473999544814234], [-77.46341632120726, 34.47380725064191], [-77.46398955011367, 34.473640710093726], [-77.46414913009203, 34.47360694434997], [-77.46419075654659, 34.47358950425825], [-77.46430602120927, 34.47357207776509], [-77.46541770742499, 34.47332261170186], [-77.46607918260595, 34.47331897324789], [-77.46672180168122, 34.4731681834789], [-77.46816901943947, 34.47241712971453], [-77.46853145986822, 34.47213434447811], [-77.46902335402035, 34.47173809450842], [-77.46947480022132, 34.47140463531093], [-77.4703511743969, 34.47117682077641], [-77.47090424067119, 34.470911083414755], [-77.47145125184349, 34.4707702248792], [-77.47310977616695, 34.46996571154019], [-77.47355117306826, 34.469820995836685], [-77.47383809409408, 34.469652423679534], [-77.47356050775576, 34.468637554335984]], [[-77.43096181872312, 34.50244857902942], [-77.43079950816191, 34.50251291843264], [-77.43068401847569, 34.502597258639156], [-77.4307071188922, 34.50277027105042], [-77.43059467689339, 34.502930468728906], [-77.43050784451097, 34.502965296023426], [-77.43046558548173, 34.50309711703966], [-77.43026487946636, 34.50325141131379], [-77.4301135155653, 34.50336777365762], [-77.42982668542534, 34.503566820434855], [-77.43022792226617, 34.5038032476571], [-77.43031982224674, 34.50406219032385], [-77.43026016176333, 34.50426447688379], [-77.4304381544661, 34.50447625745094], [-77.43091056061886, 34.50472634658438], [-77.43138967624455, 34.50476222382902], [-77.43227593399335, 34.50479452152277], [-77.43261606286259, 34.50458409393763], [-77.43257311871211, 34.50438246377631], [-77.43278167743777, 34.504180813915056], [-77.43287361321697, 34.504115135921616], [-77.432972665448, 34.50406507306273], [-77.43294158036387, 34.50395191764872], [-77.43304970231463, 34.50373123412321], [-77.43309902758327, 34.503630558720005], [-77.43317914850314, 34.50317074452791], [-77.43327793907271, 34.50312338217209], [-77.43326110029712, 34.50306647991119], [-77.43319670188741, 34.50303591761163], [-77.43312975140923, 34.5029899010392], [-77.43275126649519, 34.50270271049551], [-77.4326311973756, 34.502548411018005], [-77.43186518804995, 34.5024367460162], [-77.43162087051162, 34.502396202568804], [-77.43130416952543, 34.50245853040128]], [[-77.33567350133032, 34.57477946808181], [-77.33564103182533, 34.574982595554516], [-77.3353657067784, 34.57536489119452], [-77.33517045172994, 34.57576840000466], [-77.33510218870639, 34.57547657934103], [-77.33511472457128, 34.57540097124744], [-77.3347416055919, 34.57506821528146], [-77.3347321994569, 34.57503141980685], [-77.33470738107954, 34.574959867981065], [-77.33466840352415, 34.57482832047608], [-77.33477737429727, 34.57461941944666], [-77.33478432121103, 34.57460686153489], [-77.33482601249113, 34.57459339402381], [-77.33497443670434, 34.57454536987438], [-77.33512244768181, 34.57449795109166], [-77.3351714899327, 34.57448223921797], [-77.33524264931103, 34.57445684827549], [-77.33557498576968, 34.57448572484134]], [[-77.23810526364207, 34.593749307647855], [-77.23731466188478, 34.593510846385435], [-77.23710869639226, 34.59329539100388], [-77.23711312206129, 34.59319971984049], [-77.23716666579624, 34.593180890976484], [-77.23767114678868, 34.59300445418488], [-77.23786027183, 34.59293927472372], [-77.2381780344488, 34.592848650790536], [-77.23826866817757, 34.592819487240305], [-77.238885892676, 34.59277035869046], [-77.23922093791643, 34.59245409232773], [-77.24096059236749, 34.59208901412231], [-77.23998157437329, 34.591777959621325], [-77.24027855723726, 34.59137974614153], [-77.24037007048149, 34.59109975754883], [-77.24018607428127, 34.590966656986794], [-77.24002279971339, 34.59087013256271], [-77.23961063213271, 34.590568531167996], [-77.23953694307136, 34.590474852963055], [-77.23878808026062, 34.59005370002205], [-77.2387590424934, 34.59003552536354], [-77.23875476260154, 34.590032846543195], [-77.2387437724477, 34.59002882904578], [-77.23742876769658, 34.58933234180453], [-77.23608524769509, 34.58981916916125], [-77.23571831563483, 34.589952126936794], [-77.23508816071497, 34.59062477398545], [-77.23503328418236, 34.590678906601205], [-77.23440040209957, 34.5914092503546], [-77.23383928327385, 34.5918724439387], [-77.23328921633413, 34.59242674521554], [-77.23340758247667, 34.59315565750252], [-77.23339259680118, 34.59350909077749], [-77.2334772572982, 34.59380638645136], [-77.23444861223697, 34.59440363230317], [-77.23457716277252, 34.594535302700265], [-77.23466852763988, 34.594784230313806], [-77.23522288786374, 34.59477079819089], [-77.23612551206818, 34.59469062545955], [-77.23645711906772, 34.594582354973994], [-77.2364798574987, 34.5945742636417], [-77.23653951390295, 34.59456854716329], [-77.23715909183807, 34.594521143834], [-77.23738253263244, 34.594419935453615], [-77.23768601105361, 34.59433251087505], [-77.23839492503372, 34.59384131357728]], [[-77.2643619743025, 34.59608763156415], [-77.26569438471971, 34.59558026505324], [-77.26823192432312, 34.595103903808536], [-77.2707262219442, 34.594796630851754], [-77.27204706447871, 34.595202628612626], [-77.27174322524215, 34.59570082073165], [-77.27095476495194, 34.597277662333774], [-77.27017117311951, 34.59884469675584], [-77.26996913595151, 34.599380949075076], [-77.26947685874066, 34.60093218183394], [-77.26868440361481, 34.60234094212731], [-77.26843122327544, 34.603271150522005], [-77.26655965659728, 34.60313667686936], [-77.26451312648581, 34.6024548127835], [-77.2644979456052, 34.6024391060965], [-77.26448442232915, 34.60242511421032], [-77.26435410289594, 34.60227515828406], [-77.2635229633344, 34.6013345442653], [-77.26285010358626, 34.60041126012053], [-77.26271945838593, 34.60016576862405], [-77.26255843763812, 34.59965238895014], [-77.26158483437493, 34.59912099088154], [-77.26214072077656, 34.59847013091744], [-77.26229244732156, 34.597813135714816], [-77.26299353791056, 34.59712380647524], [-77.26276050112547, 34.59663351737372]], [[-77.42865407150556, 34.49153216545165], [-77.4293625532787, 34.49111980831051], [-77.42911348610374, 34.49069517940562], [-77.42882388051622, 34.490446487079595], [-77.42893478179381, 34.48972355931579], [-77.42987095560116, 34.48938276263344], [-77.42882425352715, 34.48888075951903], [-77.42877357491938, 34.488651211107324], [-77.4278082616479, 34.48843432989081], [-77.42745876808979, 34.488584082249794], [-77.42694481075326, 34.48875610352712], [-77.42658873723735, 34.488899345306045], [-77.42599305919998, 34.48918477412657], [-77.42611923630776, 34.48954303987975], [-77.42552197532524, 34.489923974902545], [-77.42518428422594, 34.49027680414855], [-77.4246408360516, 34.49046679191958], [-77.42451673692574, 34.4905464158269], [-77.42435129107369, 34.490568016022465], [-77.42393379011882, 34.49076844499072], [-77.4239294330215, 34.49085503772569], [-77.423281235946, 34.49107287731003], [-77.4233355443873, 34.49174667468034], [-77.42339822880933, 34.4917543988905], [-77.42575406957826, 34.49204940639853], [-77.42553724816375, 34.4925392067895], [-77.42536521482539, 34.492741425841004], [-77.42450478306691, 34.49316201001376], [-77.42444602278607, 34.493482866753226], [-77.42431087604126, 34.49436842519535], [-77.42499838712952, 34.494538307474905], [-77.42644772441999, 34.49481824788203], [-77.42606385642377, 34.49526826870729], [-77.42656754457715, 34.49553844547057], [-77.42658757545787, 34.49563278349672], [-77.42676332242004, 34.495797766749455], [-77.42690456700069, 34.495986739330974], [-77.42696825841733, 34.49611198141457], [-77.42724184443763, 34.4962233712078], [-77.42765902188052, 34.4962331913605], [-77.42832680904777, 34.496059346959704], [-77.42851802353142, 34.49605662091865], [-77.42853984611264, 34.49604537903943], [-77.42894454341021, 34.49575310921735], [-77.42890870809, 34.49565238806724], [-77.42916733729695, 34.495426709578396], [-77.42914125395104, 34.4949773713268], [-77.4288204729819, 34.49473346549742], [-77.42853316688087, 34.49451212047813], [-77.4281975830322, 34.494118391877485], [-77.42832124355624, 34.494032442466796], [-77.42820163204888, 34.493902465738245], [-77.42824325551167, 34.493352920782485], [-77.42830755289802, 34.49298354410473], [-77.42820921390742, 34.49267564241334], [-77.42854789252264, 34.492156132895786], [-77.42766237941565, 34.491972178396956], [-77.4285779580003, 34.491926697360874]], [[-77.44753280976659, 34.48212833051504], [-77.44673429357175, 34.48213597731396], [-77.4476681856247, 34.4822714326115], [-77.44777410648545, 34.48218891550581], [-77.449139291676, 34.48172090310133], [-77.44999051266073, 34.480956243759145], [-77.44999661988714, 34.48095097547215], [-77.44848838556292, 34.480345662417875], [-77.44779132691836, 34.48083873757279], [-77.44829329217586, 34.48130975545622], [-77.44760956182509, 34.48205688456746]], [[-77.46692381885117, 34.506129516979], [-77.46722282412696, 34.504834102474106], [-77.46724198825326, 34.50479464014571], [-77.4672500203702, 34.50477619856155], [-77.46727212158515, 34.504719614627945], [-77.46751713483336, 34.5046803113855], [-77.46740539530282, 34.50480292549097], [-77.46739934273172, 34.50484871236818], [-77.46848803081917, 34.50620883895122], [-77.46805281124978, 34.507532182064104], [-77.46805137442665, 34.50753772118767], [-77.46805022364846, 34.5075407951875], [-77.46804667079246, 34.50755063637919], [-77.46768333941199, 34.50855062912851], [-77.46757170418039, 34.508864413727196], [-77.46725692413082, 34.5095139385099], [-77.46725055404222, 34.50952847279489], [-77.46634772645427, 34.510153358979665], [-77.4661047652201, 34.510298831075836], [-77.46539095807921, 34.51100145486564], [-77.46504360370818, 34.511343361108004], [-77.46497518392593, 34.51139356127341], [-77.46495194247613, 34.51143358375324], [-77.4647882996475, 34.51158670954391], [-77.46457276552731, 34.51179215075114], [-77.46440340037975, 34.51178780754956], [-77.46431530611883, 34.511667123682784], [-77.46401644692614, 34.511386124622604], [-77.46391578491699, 34.51125963972098], [-77.46398672524882, 34.51091354452387], [-77.46439530400292, 34.51072983335946], [-77.46451046263057, 34.51057387097243], [-77.46584559583468, 34.51012789182948], [-77.46555466601843, 34.50989293881502], [-77.46499193851193, 34.50940907996868], [-77.46566371865534, 34.50878051646966], [-77.46568117846194, 34.508768534405576], [-77.465679641161, 34.50876561836116], [-77.46568377210818, 34.508760033755294], [-77.46599372333935, 34.50832413627674], [-77.46605257554754, 34.50811186110211], [-77.46613627475597, 34.50779935333861], [-77.46802191195421, 34.50753622720144], [-77.46803174423486, 34.507531821394444]], [[-77.33293017067624, 34.63415729406774], [-77.33286058006394, 34.634133692538164], [-77.332558565859, 34.63377562859419], [-77.33245727716508, 34.63399691254708], [-77.33243522209797, 34.63398920798032], [-77.33232017367533, 34.633868875287575], [-77.33225702673452, 34.63379450702923], [-77.33237641703705, 34.63366558957425], [-77.33253584052876, 34.63373662182698], [-77.33254991049317, 34.63373252890141], [-77.33257229189839, 34.63371786480704], [-77.33288651123355, 34.63381468345091], [-77.33300329150656, 34.6340125418583], [-77.3330337615119, 34.63410993134731], [-77.3330183153501, 34.63418718778295], [-77.3329571542724, 34.63416644539829]], [[-77.3637695801401, 34.52761002462091], [-77.36416393627458, 34.52740841336132], [-77.36424094133797, 34.52734441618098], [-77.36455299830789, 34.52725665277178], [-77.36455994613874, 34.52725508947513], [-77.36456961866473, 34.52725599307658], [-77.364573203172, 34.527249430595475], [-77.36479575302768, 34.52711767052655], [-77.36495903463417, 34.5269668520186], [-77.36496805071731, 34.52695315034377], [-77.36497293903791, 34.52694701743379], [-77.36517120688158, 34.52680364637522], [-77.36518830791522, 34.526775702528575], [-77.36517267756372, 34.52667341579786], [-77.36524793166906, 34.52659261930855], [-77.36526832855976, 34.52653722272106], [-77.3653637877298, 34.52643032841441], [-77.36538704365435, 34.526411950921535], [-77.36543481990218, 34.52639082340122], [-77.36544609312637, 34.52633915873759], [-77.36554766365767, 34.52612973986012], [-77.36553529088499, 34.52598736586563], [-77.36556875467261, 34.52576351893393], [-77.36562574643688, 34.52562883827505], [-77.36556077306061, 34.52552817241145], [-77.36546742741024, 34.52545761863438], [-77.36540815946101, 34.525415360548706], [-77.365402759286, 34.525406408236115], [-77.3653874648542, 34.52539304953618], [-77.36526442105128, 34.52535883152839], [-77.36499701195034, 34.525303431114175], [-77.36481544392306, 34.52525592595224], [-77.36451991789308, 34.52510920805726], [-77.36421658262783, 34.5251034297593], [-77.3640119550183, 34.52524607239911], [-77.3639524028886, 34.525380258161036], [-77.36381465499883, 34.52551619646324], [-77.36369178815968, 34.52558699673222], [-77.36341247012484, 34.52594004835979], [-77.36340211310967, 34.525942760186275], [-77.36340278862262, 34.52594908449505], [-77.36340487231273, 34.52595333415294], [-77.36321293405445, 34.52634742901865], [-77.36299196322904, 34.5264979144314], [-77.36292343688906, 34.52670328018792], [-77.36260851210595, 34.526769208003664], [-77.36258141535887, 34.52680187858145], [-77.36251074490765, 34.52699918027294], [-77.36250617197092, 34.5270575420289], [-77.36248914610606, 34.52712931387164], [-77.36259143544534, 34.52751625532887], [-77.3625960517338, 34.5275311538215], [-77.36259834492607, 34.52753391530872], [-77.36262961437049, 34.5275537595852], [-77.36285469880185, 34.52774181365382], [-77.36258180750568, 34.5279374475913], [-77.36249472175118, 34.527984848637075], [-77.36242787181301, 34.528048120629805], [-77.36225021916405, 34.528275711193274], [-77.36220191752263, 34.52832549282], [-77.36220677652331, 34.52834145771618], [-77.3622754143959, 34.5285597306853], [-77.36237893535883, 34.52866104107315], [-77.36256044621055, 34.52887194215969], [-77.36262498851677, 34.52895755015183], [-77.36268726254778, 34.5289900577648], [-77.36294670829119, 34.529145588304964], [-77.36300473182374, 34.52915285844457], [-77.36321206075449, 34.52907902273689], [-77.36321441602374, 34.52903653619859], [-77.36329170717411, 34.52899359773254], [-77.36329014262844, 34.528964421607526], [-77.36327210271374, 34.528950461455466], [-77.3632080516681, 34.528915040338056], [-77.36316744566187, 34.52880894694678], [-77.36315811979375, 34.52879982032165], [-77.36315568860539, 34.52879720120316], [-77.3630273247942, 34.528696248286515], [-77.36303457331377, 34.52864749980449], [-77.3630052041171, 34.528481630917916], [-77.36301148462164, 34.52845370482106], [-77.36305802608689, 34.5283883617289], [-77.36299826656818, 34.528229889364674], [-77.36299337825999, 34.5282114878058], [-77.36309181597042, 34.52812139815904], [-77.3632019145007, 34.52793662315169], [-77.36314539996084, 34.52780475738521], [-77.36336905035786, 34.527840297097384], [-77.36374865348988, 34.52762416990522], [-77.36376678176622, 34.52761177512083], [-77.36376855502148, 34.527611271171935]], [[-77.41788336856109, 34.49623385977808], [-77.41788320631674, 34.496470717262326], [-77.41775727941183, 34.49687044719336], [-77.41803353941813, 34.49702152847064], [-77.41918714866213, 34.497043355178945], [-77.41937679640655, 34.4970092942396], [-77.41947903040361, 34.49695847144549], [-77.41948703304936, 34.49688680610677], [-77.41983403869949, 34.49630107132387], [-77.41903847546583, 34.49576977274973], [-77.41795964627488, 34.4962052471993]], [[-77.30799975900474, 34.54556925267818], [-77.30790711486752, 34.54562398716422], [-77.30778861187777, 34.545697964436755], [-77.30698818437148, 34.54617015558993], [-77.30640845884707, 34.546456188136695], [-77.30602705793491, 34.546695768044586], [-77.30561136962164, 34.54696025323888], [-77.30555206725575, 34.54699825100604], [-77.30511364841925, 34.547244624591215], [-77.30481354209431, 34.54749526083277], [-77.30458258460371, 34.547627019506514], [-77.30425009755842, 34.54781776926171], [-77.30372189073738, 34.54824016380443], [-77.30346579042512, 34.5484295177238], [-77.30321796412687, 34.548560674515116], [-77.30258838685472, 34.5488924559394], [-77.30250761116636, 34.54895656450039], [-77.3024227477152, 34.548983574433315], [-77.30211134018563, 34.54915259671579], [-77.30162738561035, 34.54941229938649], [-77.30139328986326, 34.54955357147544], [-77.30050252377808, 34.54996742676775], [-77.30003442898092, 34.550363275109945], [-77.29929887124479, 34.55083332384875], [-77.29885275663982, 34.55115139037608], [-77.29843882883137, 34.551424603091725], [-77.29749917661746, 34.552070752582225], [-77.29713898978852, 34.55230417595734], [-77.29684523088406, 34.55239946556134], [-77.29627743202056, 34.55273563447364], [-77.29614359810522, 34.55281308817634], [-77.29604916493045, 34.55285528970155], [-77.29532885369152, 34.55336131638648], [-77.29529313628467, 34.55339260946312], [-77.29525013493054, 34.55343604147242], [-77.29481118021062, 34.55370527396254], [-77.29440066027183, 34.55395166081363], [-77.2936561986831, 34.55442191701946], [-77.29349992587613, 34.554506687203556], [-77.29334495139852, 34.55462509296735], [-77.29206165078912, 34.55543197841565], [-77.29167678010208, 34.55560617816248], [-77.29046512568686, 34.556523762695846], [-77.28970194212354, 34.556939127374704], [-77.28882129266148, 34.55736225055404], [-77.28770221698585, 34.55811713078903], [-77.2871714452101, 34.55845254346762], [-77.28681860094744, 34.558681588660335], [-77.28552510003898, 34.559393631372025], [-77.28456330152628, 34.560062273481044], [-77.28406246729493, 34.56043398373262], [-77.2838733461797, 34.56056048261389], [-77.28362977586139, 34.5606915015705], [-77.28222406370173, 34.561621550305716], [-77.2814592389294, 34.56219833891618], [-77.2813972341469, 34.562243288673386], [-77.28127615175146, 34.56232828768831], [-77.28057264783732, 34.56277035407981], [-77.28018796984958, 34.56308288295109], [-77.2791764629801, 34.56368512745749], [-77.27892413770387, 34.56379535943537], [-77.27868346980047, 34.56394909470944], [-77.27819642720218, 34.56423886329874], [-77.27798005144724, 34.564365164472136], [-77.27791456078849, 34.564387778006896], [-77.27784424768693, 34.56442868664947], [-77.27725426835121, 34.564779472357316], [-77.27705197669542, 34.56493494684852], [-77.27656145478788, 34.565299117739286], [-77.27621225314083, 34.565502450419636], [-77.27606789704512, 34.565628915975374], [-77.27569153172729, 34.56591244694633], [-77.27548894502944, 34.5660547548196], [-77.27543888678368, 34.56612897569581], [-77.27502001473955, 34.56648923402559], [-77.27459851451695, 34.566695913373366], [-77.27404425373413, 34.566944092494396], [-77.27339632788505, 34.56730429197893], [-77.27332884867508, 34.56753265678615], [-77.27312439626472, 34.56775425298964], [-77.27306126165658, 34.567957419781436], [-77.27273185529391, 34.56819473019585], [-77.27230754347424, 34.568601441511746], [-77.27213038506048, 34.568716576822496], [-77.27170880120482, 34.569056980412185], [-77.27161924496458, 34.56930364700403], [-77.27107395171922, 34.56948485935794], [-77.27067324487825, 34.56977667270067], [-77.27039093150451, 34.569896047751804], [-77.26997432104031, 34.56999273550069], [-77.26961362316634, 34.57014864461082], [-77.26887789812436, 34.57049422855475], [-77.26855117461406, 34.57069406596575], [-77.26839989917057, 34.570849116768066], [-77.2681267218065, 34.57113202592961], [-77.26803582494577, 34.57137415581054], [-77.26786068074924, 34.57158243986006], [-77.26733894025611, 34.571981429887515], [-77.26697789498105, 34.572455689648706], [-77.26653740153047, 34.57267028689864], [-77.26589051114821, 34.573068096530754], [-77.2655513833575, 34.57328617252053], [-77.26503008047206, 34.573581206281716], [-77.26477291194576, 34.573729796104416], [-77.26468412933912, 34.57378682862462], [-77.26419233587006, 34.57412194815063], [-77.2639462162409, 34.57430896332205], [-77.26323461382827, 34.574986185341245], [-77.26323224363371, 34.574988398943255], [-77.26322916750418, 34.57499064137052], [-77.26208694649472, 34.57584166822006], [-77.26161770467067, 34.5761813192613], [-77.26126912593405, 34.576459628399654], [-77.26097504149796, 34.576696862360144], [-77.26084861437992, 34.576811746839965], [-77.26045045761153, 34.57715751659166], [-77.26008858063321, 34.577450234835794], [-77.25994484925322, 34.5775584761645], [-77.25970454417724, 34.57778045080671], [-77.25945070188365, 34.57799093083702], [-77.25947573742266, 34.57821965345411], [-77.2594670167042, 34.578463554456704], [-77.25951475159647, 34.579007181597596], [-77.25992558346093, 34.579167305918716], [-77.2607530193692, 34.579355740224514], [-77.26099645058397, 34.579055246230055], [-77.26119441154398, 34.57901946924066], [-77.26121176980749, 34.57907218825556], [-77.26103156854222, 34.579487902233346], [-77.26102330067074, 34.57952869873993], [-77.26114588645363, 34.579705169918], [-77.26079562747523, 34.57980777991157], [-77.26031439516797, 34.579944258347666], [-77.26007591035716, 34.580068006676775], [-77.25977789959447, 34.580373380278395], [-77.25945361738904, 34.58081370912901], [-77.25944689248823, 34.5808186758594], [-77.25944501519183, 34.58082138553765], [-77.25923940458327, 34.581261344454184], [-77.25924623756171, 34.58127422614374], [-77.2592367986516, 34.58129345303129], [-77.2592138757331, 34.58163831441968], [-77.25962745104553, 34.58164091346225], [-77.25985153569155, 34.58167398733316], [-77.25996100721818, 34.581725913434134], [-77.26002744312362, 34.58174284315774], [-77.26006680824669, 34.581703059752684], [-77.2601518940929, 34.581705127373176], [-77.26015978900311, 34.581699618785585], [-77.2601961570976, 34.58165379089317], [-77.26031317826757, 34.58159460293302], [-77.26031384268981, 34.58159414852249], [-77.26031412733813, 34.58159392794856], [-77.26031506697942, 34.58159331120454], [-77.26044306028379, 34.581486237931735], [-77.26052271565575, 34.58145129590752], [-77.26057902539435, 34.58140259980408], [-77.26060533791124, 34.58138117153669], [-77.26061329488437, 34.58136754484891], [-77.26064684518396, 34.58135161203168], [-77.26071977214067, 34.5812979338158], [-77.26083013705414, 34.5812166988403], [-77.26087825778497, 34.58116697545186], [-77.26092194512046, 34.58114912282895], [-77.26098504066469, 34.58109966460129], [-77.2610328831991, 34.58106130652631], [-77.26111542312225, 34.58099257866941], [-77.26116227685313, 34.58095365212632], [-77.26126048020771, 34.58087181596461], [-77.26127647053902, 34.58084480193201], [-77.26130626831804, 34.580833693334405], [-77.26134681709952, 34.580801097984036], [-77.26142565842775, 34.580738704801554], [-77.26149265479222, 34.58067084262876], [-77.26160411368426, 34.58055940646418], [-77.26153773284584, 34.5805118526646], [-77.26174037462424, 34.580439700143884], [-77.26185981683183, 34.58034015210935], [-77.2619104440891, 34.58030550611099], [-77.26207602562188, 34.58020382681123], [-77.26208461328012, 34.58019573284374], [-77.26220442891085, 34.58009296520393], [-77.2622554803446, 34.58003481247809], [-77.26241959015915, 34.579886561345404], [-77.26240909106134, 34.579873396688924], [-77.2624596608521, 34.57985096935169], [-77.26262424478, 34.57970555006713], [-77.26269070684361, 34.57965988167288], [-77.26284191754331, 34.57957052826819], [-77.26290966185519, 34.579519296572116], [-77.26300367882578, 34.57944883302574], [-77.26302766946397, 34.57940711623619], [-77.26316139206605, 34.57929691908994], [-77.263230053912, 34.579230971613235], [-77.26325430800668, 34.579206499157856], [-77.26333897672063, 34.57912170533804], [-77.26336877661606, 34.57905325872533], [-77.26340012926168, 34.57900868117381], [-77.26349521047774, 34.57893255853046], [-77.26350007647241, 34.57884141852462], [-77.26360833569305, 34.578829945477274], [-77.26364675557451, 34.57879241237373], [-77.26371033721783, 34.57869980622727], [-77.26390444235057, 34.578595566118025], [-77.26388717330994, 34.57857565468073], [-77.26393107660712, 34.57856751383584], [-77.26395053532339, 34.57857003647703], [-77.26406593472345, 34.578471881438844], [-77.26409879851315, 34.57838806843901], [-77.26412743408451, 34.57835888436672], [-77.26421412428095, 34.57829585993906], [-77.26423638993103, 34.57818182572385], [-77.26437241780442, 34.578152589734714], [-77.26438258300573, 34.578143284863295], [-77.2644495203625, 34.57804276713431], [-77.26468506903228, 34.57795108633511], [-77.26470180667545, 34.57793853349177], [-77.26470751405624, 34.57793317350036], [-77.2647209384037, 34.57792231081048], [-77.26482153271478, 34.577824307084256], [-77.26485444838653, 34.577745677604426], [-77.26488064440274, 34.5777111219957], [-77.2650844592388, 34.577621633076696], [-77.26512714361212, 34.57758644459228], [-77.26518575526259, 34.57749945085922], [-77.26521777311548, 34.57741158824191], [-77.265428916866, 34.57731369590198], [-77.26545262395253, 34.577291848974156], [-77.26545970729276, 34.57728532849734], [-77.26547608700875, 34.57727202567322], [-77.26558351405806, 34.577079649401426], [-77.26559484572088, 34.57706028838029], [-77.26569488802247, 34.577006355108395], [-77.2659374283046, 34.57673719347562], [-77.26613736753015, 34.57674626351668], [-77.26623427735163, 34.57667259535208], [-77.2662850726864, 34.57664323460702], [-77.26635897249332, 34.576619191885264], [-77.2664428494961, 34.57655891179469], [-77.26645978808375, 34.57654455064234], [-77.26647855017816, 34.576529087518125], [-77.26656958459702, 34.5764299408427], [-77.26665155914957, 34.57638649912046], [-77.2666810244846, 34.57636138482004], [-77.26671485689056, 34.57632353099756], [-77.26674689733655, 34.5763069867096], [-77.26677946270472, 34.57627858174887], [-77.266776573588, 34.57626946732447], [-77.26680793230477, 34.57625371550456], [-77.26684006575886, 34.57622554466171], [-77.26685065466675, 34.576216375930464], [-77.26687215500866, 34.57619793093246], [-77.26695960967199, 34.57600325739756], [-77.26699749190738, 34.575992254853965], [-77.26719825802371, 34.57589860262802], [-77.26720456409038, 34.575892506586364], [-77.26721766694983, 34.57588478827927], [-77.26714067006999, 34.57576784588505], [-77.26736503793234, 34.57570662188334], [-77.26750021750205, 34.57571820208547], [-77.26754694565726, 34.575681959471396], [-77.26759531816124, 34.57558282092622], [-77.26760728891499, 34.57556887050796], [-77.26767003986946, 34.575531611639434], [-77.26772972669289, 34.575373755601206], [-77.2677960641538, 34.57534804655383], [-77.2678508402267, 34.57528016934103], [-77.26789958195513, 34.575196215704665], [-77.26797222109903, 34.57512623010537], [-77.26807604749212, 34.575024555206156], [-77.26808405698658, 34.575017190081375], [-77.26811109473171, 34.57499896098228], [-77.2682276892062, 34.57491064983206], [-77.26827020217219, 34.57486862689496], [-77.26836346675759, 34.5748446236335], [-77.2685675705447, 34.5748044929208], [-77.26859907098047, 34.57479541252977], [-77.26866839980192, 34.57472986587865], [-77.26873973089673, 34.57472560959456], [-77.26874947165192, 34.574716008444774], [-77.26877686011704, 34.574662025614664], [-77.26890290473814, 34.57461128875251], [-77.26890412501551, 34.5746103342065], [-77.26896236055619, 34.57449840171428], [-77.26896440224473, 34.57449723969161], [-77.26897355804552, 34.5744921447717], [-77.26908488931531, 34.574278774314], [-77.26908256435118, 34.57427086252585], [-77.26959181164091, 34.57408239082495], [-77.26959842524968, 34.574078291660285], [-77.2695995866622, 34.5740758438268], [-77.26960567768499, 34.57407161584117], [-77.26974690539868, 34.57388174539841], [-77.26987500812884, 34.57386182959298], [-77.26990101390605, 34.57385450291765], [-77.26991747049738, 34.573855098367765], [-77.26997780287503, 34.57381099416196], [-77.26999880205582, 34.57377717234386], [-77.27002276196731, 34.573755611851496], [-77.27011962550351, 34.57369535450833], [-77.27007221257222, 34.573641665751886], [-77.27017760228685, 34.57360759181083], [-77.27024997412337, 34.573614266559844], [-77.27034202433875, 34.573545043408906], [-77.27040493414795, 34.5734966068552], [-77.27041080560241, 34.57348639450983], [-77.27043802621714, 34.573434756888055], [-77.2705979995398, 34.573342736714835], [-77.27060893608324, 34.57333400584753], [-77.27062236880366, 34.573323287416535], [-77.27072248910206, 34.57322145202402], [-77.27080466535169, 34.57317948205645], [-77.2708472244675, 34.57314718695018], [-77.27083881892078, 34.57311276327966], [-77.27094482732716, 34.573073569691246], [-77.27100447059706, 34.573028583488494], [-77.27102800077793, 34.5730098012711], [-77.2710892110054, 34.57296466746177], [-77.27109896338234, 34.57294832324699], [-77.27111545360351, 34.57294449667041], [-77.27116546820939, 34.572902773915004], [-77.27119333650042, 34.57286795663359], [-77.2712511224223, 34.57281214846409], [-77.27122514498839, 34.572789631526774], [-77.27133199839768, 34.572724618770714], [-77.27136205862459, 34.5726894156802], [-77.27137527368397, 34.57268359926768], [-77.27138219925553, 34.57267118175645], [-77.27140688586805, 34.57257652891215], [-77.27139527092982, 34.57256733782033], [-77.27142250874189, 34.57247236554708], [-77.27143716532767, 34.57242762011639], [-77.27147051556409, 34.57233758563552], [-77.2714995782076, 34.572259776447126], [-77.27153275285067, 34.572184039174914], [-77.27160388505801, 34.57211240249099], [-77.27173953809928, 34.572039350154256], [-77.27194834800987, 34.571903812046145], [-77.2719624266242, 34.57189461069117], [-77.27215329692982, 34.57175014116506], [-77.27219541227136, 34.57168756499512], [-77.27235437540716, 34.57160037816301], [-77.27240306846531, 34.57158605360142], [-77.27253082728606, 34.57150596434782], [-77.27257012404216, 34.5714813507013], [-77.27258185589933, 34.57147409537479], [-77.27260432146998, 34.571458584920805], [-77.27274453477659, 34.57129018337704], [-77.27286445244192, 34.571268817613735], [-77.27293219675167, 34.57122686524227], [-77.27297565134424, 34.57116713488355], [-77.27297927568482, 34.571160009057614], [-77.27300053761296, 34.57114625619701], [-77.27300773292089, 34.571044412364515], [-77.27314235857236, 34.57098680614509], [-77.27327266569974, 34.57097023539332], [-77.2732986506701, 34.570949443697906], [-77.27336317275955, 34.570854596149374], [-77.27338092680345, 34.57083807684147], [-77.27343951735284, 34.5707980593623], [-77.27352607265875, 34.57067088233638], [-77.2736541676027, 34.570632451078495], [-77.27366327635094, 34.57062460092408], [-77.27374020552432, 34.57053273120363], [-77.27379792349078, 34.570480050644335], [-77.27375475540876, 34.57039612403412], [-77.27407846554328, 34.57021002193597], [-77.27409600112996, 34.57019198136962], [-77.27410041200517, 34.57018762274426], [-77.27411085265175, 34.57017908035121], [-77.27427233805055, 34.569965467811826], [-77.27447897070802, 34.569875399171366], [-77.27450813645966, 34.56984650009676], [-77.27444189391343, 34.56974312650495], [-77.27466336273498, 34.56960461915965], [-77.27473464268112, 34.56944561163152], [-77.27488994281615, 34.56943854613277], [-77.27498290969648, 34.56933781901839], [-77.27501709065882, 34.56931699561406], [-77.27510792225759, 34.56928470441505], [-77.27517711529137, 34.56922839292517], [-77.27518816117741, 34.569212605539036], [-77.27519702192662, 34.56919965238535], [-77.27522569307058, 34.56919121760624], [-77.27533656047297, 34.56910643375261], [-77.27538665583, 34.5690397173432], [-77.27545526038243, 34.56899792815845], [-77.27550315566378, 34.56897903264267], [-77.27557324115357, 34.56892055029722], [-77.27559821823142, 34.56889928379468], [-77.27560619244532, 34.56889195518536], [-77.27562027945129, 34.568878613752496], [-77.27572114329827, 34.56878315480988], [-77.27576394690834, 34.5687180905998], [-77.27581817942018, 34.56867294672255], [-77.27586667169732, 34.56864515610195], [-77.2759415102087, 34.56857452367984], [-77.27595022716048, 34.568565489631126], [-77.27595383231973, 34.56855838047564], [-77.27597426427026, 34.56854411279712], [-77.27606896238458, 34.56845698636596], [-77.2761253820021, 34.56838236471557], [-77.27626296937228, 34.56827034628294], [-77.27627945214087, 34.56823785972707], [-77.27631521125073, 34.56822260540878], [-77.27636378272791, 34.568190421656], [-77.27643153164007, 34.56813197616053], [-77.27649066433645, 34.56805006175751], [-77.27651910850729, 34.56802102441501], [-77.2766242275888, 34.56795125313002], [-77.27664492187841, 34.56791307697256], [-77.27668442427581, 34.567893798745125], [-77.27673695072335, 34.56786906238959], [-77.27680862008734, 34.56780810592965], [-77.27685697256366, 34.567718672697396], [-77.2770068129094, 34.567624165817065], [-77.27700059734332, 34.567587523865015], [-77.27703776900593, 34.56755088198285], [-77.27712213862176, 34.567523921878475], [-77.27725659150862, 34.56737197122574], [-77.2774626254762, 34.56727156160577], [-77.27746665669305, 34.56726812392211], [-77.27744960677941, 34.567151470264704], [-77.2777136226329, 34.56699185519813], [-77.27778069684751, 34.56689727989489], [-77.27787250406757, 34.566873198924654], [-77.2780246660643, 34.56672531808593], [-77.27824373818946, 34.56665191932049], [-77.2783427092212, 34.56657238333487], [-77.27832614322185, 34.56651333682971], [-77.27855738235043, 34.566351984195414], [-77.27859585750544, 34.56630791920552], [-77.27860754161493, 34.566299777889355], [-77.27886688619078, 34.56622037330762], [-77.27910000102648, 34.56611214812476], [-77.27910943325335, 34.566107499534205], [-77.2791135187452, 34.56610385952114], [-77.27912009999481, 34.56609732624276], [-77.279225607199, 34.56599483193119], [-77.27927628400417, 34.56592731147339], [-77.279312860022, 34.565883853373045], [-77.27935808603081, 34.56582441675153], [-77.27938521862674, 34.56577170501007], [-77.2794274871301, 34.56573320901148], [-77.2795212346872, 34.56567141334884], [-77.27952404733455, 34.56566477772381], [-77.27953946651535, 34.565659599418595], [-77.27964071924725, 34.56559426727797], [-77.2798023362365, 34.565474203276274], [-77.27982342724027, 34.56545262894413], [-77.27984375620731, 34.56544625974548], [-77.27986599173624, 34.56543044962661], [-77.27998145378778, 34.56534720913211], [-77.28004664755045, 34.56529812293091], [-77.28009821783365, 34.565238548137565], [-77.28024175442621, 34.56514306413445], [-77.28025242889763, 34.56513282852406], [-77.28027452524803, 34.56511351585455], [-77.28037409403143, 34.56502455237355], [-77.28041804137871, 34.56497126978819], [-77.28057305944378, 34.56486528174233], [-77.28063109987288, 34.56483217529343], [-77.28065482974027, 34.56481093767109], [-77.28068423286757, 34.564776242593176], [-77.28075309751434, 34.56470082366988], [-77.2807752542432, 34.564631807659104], [-77.28080348589685, 34.56458694909882], [-77.28086784834278, 34.56452370481153], [-77.28088656086061, 34.564402230297276], [-77.2810249911148, 34.5643880390463], [-77.28104866679162, 34.564370541446245], [-77.28112400041552, 34.5642848181075], [-77.2813289520643, 34.564203504757415], [-77.28137093300023, 34.56417584779562], [-77.28139110144541, 34.56416177117369], [-77.28153307771733, 34.5640642961593], [-77.28170081167916, 34.56393999616883], [-77.28176362973517, 34.56390709892136], [-77.28181914745261, 34.563882692996394], [-77.28215290782668, 34.56372940214445], [-77.28217412728964, 34.56371910145038], [-77.28219211416345, 34.56371091283633], [-77.28226164253385, 34.56368538254396], [-77.28258409345155, 34.56355334817445], [-77.28265962143642, 34.563523095549996], [-77.28278903919252, 34.56347201334418], [-77.28286842900377, 34.563444058622146], [-77.28299387367882, 34.56339533590961], [-77.28319835905071, 34.563319694623445], [-77.28319914865833, 34.56331936378742], [-77.28340414554549, 34.56321659070155], [-77.283614671473, 34.56310013865082], [-77.28381534133464, 34.56299892718861], [-77.28398138903603, 34.562935231981385], [-77.2840709577558, 34.562895622274226], [-77.28422547232306, 34.562825942326825], [-77.28436367399485, 34.56275316706568], [-77.28449959028192, 34.56268317864085], [-77.28463658957816, 34.56261140373556], [-77.28474102946277, 34.56257653136867], [-77.28501291983525, 34.56247738317189], [-77.285046055903, 34.562466218606424], [-77.28506571406609, 34.56245793581887], [-77.28519170339376, 34.562404033565414], [-77.28545621102873, 34.56229198945749], [-77.2855057924837, 34.5622699798747], [-77.28566137859917, 34.562201059139554], [-77.28579848463029, 34.562128829467255], [-77.28586685681721, 34.56209703650554], [-77.28594259680924, 34.56205817349328], [-77.28607249653845, 34.561986194400646], [-77.2862191910254, 34.56190440916294], [-77.28627816911775, 34.56187394551145], [-77.2866606757912, 34.56165708633991], [-77.28668968412006, 34.561642225187995], [-77.28672326022355, 34.56162726114765], [-77.28710039516878, 34.56144425800286], [-77.28717030991896, 34.561416255354075], [-77.28730531485652, 34.56136359615769], [-77.2873700013657, 34.56135379380874], [-77.2874748397756, 34.561317109989545], [-77.28750971238978, 34.56130490775426], [-77.28753198752179, 34.56129488052314], [-77.28768963032111, 34.56122604859312], [-77.2877117841769, 34.561216338418745], [-77.28771905512626, 34.561213230035136], [-77.287920041459, 34.56112287205676], [-77.28805666057774, 34.56107547125659], [-77.28825723646997, 34.56100937341177], [-77.28832925026204, 34.560987957722965], [-77.28836404167082, 34.56097592509211], [-77.28857274187274, 34.56088798314018], [-77.28871332343347, 34.56083019872589], [-77.2887392844927, 34.56081819841394], [-77.28877176483053, 34.56080365849228], [-77.28914922119169, 34.560652475986494], [-77.28931357630461, 34.56060008277538], [-77.28935376695324, 34.56058740166096], [-77.28937843187572, 34.56057561049767], [-77.28955910357784, 34.560488970818945], [-77.28975238676048, 34.56038842220632], [-77.2899704714178, 34.56026275582704], [-77.29027394289227, 34.56006707875517], [-77.29038257413477, 34.560005449180665], [-77.29044352362067, 34.55997480005907], [-77.29056708099193, 34.559919538737596], [-77.29067201592258, 34.559837650716716], [-77.29077967025015, 34.559819210626095], [-77.29094590723834, 34.55974281457612], [-77.29094781104568, 34.55972354802826], [-77.29101994641711, 34.55970647280154], [-77.29117698773892, 34.559623553556996], [-77.29121640795638, 34.559605938015046], [-77.29130487249732, 34.55956893702198], [-77.29137603618383, 34.55950925005679], [-77.29142994576154, 34.55946150233898], [-77.29157610477051, 34.55935187155652], [-77.29183376476917, 34.559332743009094], [-77.29197073185686, 34.55926959659178], [-77.29201721987047, 34.55925068117766], [-77.29216605353942, 34.55920063478177], [-77.29216874315539, 34.55919899027782], [-77.29217011666772, 34.559199192818895], [-77.29230559704088, 34.55914270753193], [-77.29236729446578, 34.559105570674724], [-77.29250188829417, 34.55903007030603], [-77.29249213555515, 34.55898511738858], [-77.29275275544843, 34.558879526166216], [-77.29276551012971, 34.558871672857045], [-77.29277120686716, 34.55886904431743], [-77.2929681712317, 34.558720099095275], [-77.29305567947694, 34.5587058441914], [-77.29316368635898, 34.55863934350978], [-77.29325150572672, 34.55860966803279], [-77.29326845662992, 34.55861043785995], [-77.29336215480949, 34.55854931656904], [-77.29354507989633, 34.55852201631981], [-77.29355928081146, 34.55851597981206], [-77.29356452650109, 34.55851369974765], [-77.29357688814696, 34.55850869011687], [-77.29380365946581, 34.55838173338531], [-77.29395510225204, 34.55838297221137], [-77.29409322758039, 34.55834902325012], [-77.2941879627469, 34.55832049265056], [-77.29427408541073, 34.558286291710886], [-77.29432981167704, 34.558265365088864], [-77.294350838839, 34.55825349331952], [-77.29445115237704, 34.55820024602632], [-77.29460500846554, 34.55811642496243], [-77.29467189729527, 34.558059320810756], [-77.2947486902226, 34.55803457006291], [-77.29490448916894, 34.55795106735044], [-77.29490884369628, 34.557926288719436], [-77.29507830323732, 34.55784582972878], [-77.29514680657533, 34.55780435360176], [-77.29515782608483, 34.55779912030071], [-77.29518024596713, 34.55778911162726], [-77.29539429859395, 34.55766585714472], [-77.29554371999579, 34.557624907282936], [-77.2955748071536, 34.557610113829895], [-77.29568366308868, 34.55755836184639], [-77.29574284333421, 34.55750696468553], [-77.29587160736426, 34.55744513778318], [-77.29587585384607, 34.55740352543389], [-77.29594380467955, 34.5573112623467], [-77.2961169308441, 34.55727250535367], [-77.29627494864043, 34.55714247550997], [-77.29634301703487, 34.557034389531864], [-77.2964026738587, 34.556914778655525], [-77.29673743618207, 34.55696020301163], [-77.29682637091365, 34.557007235101345], [-77.29693362078739, 34.5569664677285], [-77.29698643407778, 34.556950703882094], [-77.29703236325572, 34.55694208753941], [-77.29712173490694, 34.556898600487564], [-77.2971253309004, 34.5568941371372], [-77.29713183992168, 34.55688663458536], [-77.29719071920874, 34.55680175941983], [-77.2972847249408, 34.55675281597012], [-77.29735684577543, 34.55663422552604], [-77.29741494083285, 34.55661173316248], [-77.29746024402385, 34.556528174601254], [-77.29747918788738, 34.55648011383419], [-77.29749546708672, 34.556453292047216], [-77.29753679084384, 34.5563666045249], [-77.2978027640623, 34.556106066943315], [-77.29816763405236, 34.55599354199556], [-77.2983318998062, 34.555952294815796], [-77.29841360356144, 34.55590671669182], [-77.29851313489465, 34.555842169417225], [-77.29913090665943, 34.55537252269208], [-77.29934926091173, 34.55558297690869], [-77.29951878679098, 34.555574920793916], [-77.2996137060494, 34.555624361907576], [-77.2997140127345, 34.55562166210214], [-77.29975164924598, 34.55564073043825], [-77.29983883059352, 34.5556071695905], [-77.29991102012887, 34.55559291879346], [-77.29995189323373, 34.55557454336147], [-77.29997265066118, 34.55554812872227], [-77.30009630047277, 34.55549262215433], [-77.30009471013034, 34.55548335871481], [-77.30024497115771, 34.555348887459125], [-77.3002253133757, 34.55529852020681], [-77.30029190696946, 34.55509734645774], [-77.30004631104168, 34.55471439783618], [-77.30006905971217, 34.55463970991146], [-77.30018521543981, 34.554468631688906], [-77.30004082076944, 34.55371787883205], [-77.3000865276481, 34.55365797971669], [-77.30001851844926, 34.553629600853576], [-77.30046586470053, 34.55262432479859], [-77.30113141147245, 34.5522614780898], [-77.30156256586312, 34.55216129767188], [-77.30300186107395, 34.551281184364534], [-77.30310539330864, 34.55123543146225], [-77.30315554584912, 34.5512099273548], [-77.3033810075423, 34.55108798620194], [-77.3035078089213, 34.55120857041799], [-77.30511267318542, 34.55170910597583], [-77.30506375432705, 34.551964488561154], [-77.30557841596541, 34.5523221107246], [-77.30557178181178, 34.55238118776597], [-77.3057992205521, 34.552547645080566], [-77.30586163764255, 34.55259055132488], [-77.30587423543919, 34.55258418490237], [-77.30589805273941, 34.55257916479148], [-77.30626733105736, 34.55245571923745], [-77.30632765003948, 34.55247954419265], [-77.30652505473438, 34.55240429251495], [-77.30666350092639, 34.55230569588352], [-77.30688725151137, 34.55219236816237], [-77.3068776337965, 34.55207912868765], [-77.3070668929013, 34.55184845965632], [-77.30759882458717, 34.55175986465866], [-77.30785802615574, 34.551599299607325], [-77.30790044627922, 34.551583527434026], [-77.3082348121966, 34.55150931012937], [-77.30825299925051, 34.551499895701866], [-77.30825891571185, 34.55150212832794], [-77.30851007044703, 34.551383565772035], [-77.30865048701405, 34.55129341619836], [-77.30890811136614, 34.551167843504764], [-77.30892523968859, 34.551088888693], [-77.30904805483918, 34.55108344145398], [-77.30923120154806, 34.5510083667133], [-77.30925009338526, 34.550998669030335], [-77.30944530376105, 34.5508869572679], [-77.30948778882119, 34.55086599647753], [-77.30953571211326, 34.550832933384164], [-77.30984632129532, 34.55054373361638], [-77.31024497299603, 34.550273455660516], [-77.31028016308807, 34.550258151519515], [-77.31035653730068, 34.55022546848889], [-77.31073970333748, 34.54998508616006], [-77.31103877271019, 34.5499095684684], [-77.31108258747143, 34.549876414367915], [-77.31128052792602, 34.5497516110984], [-77.31143569932922, 34.54972636844428], [-77.31147099746985, 34.54969824044796], [-77.31151088894649, 34.5496153660043], [-77.31155940793921, 34.549563141151104], [-77.31166149322414, 34.549440274812596], [-77.31183621136006, 34.5493902421774], [-77.31192416966127, 34.549319769320604], [-77.3120154333855, 34.549252851851946], [-77.31203627635298, 34.54923027124404], [-77.31208937114575, 34.54915178816501], [-77.31223789785359, 34.54900389917323], [-77.31225593561642, 34.54898447098853], [-77.31227135683234, 34.54897129373953], [-77.31242118032485, 34.54883792621299], [-77.31242859690572, 34.54882012336789], [-77.31257251951271, 34.5486832387358], [-77.31257373237446, 34.54864236934843], [-77.31258888070599, 34.548558484535334], [-77.31258996796927, 34.548469029820325], [-77.31256331775789, 34.548439750342936], [-77.31258430551249, 34.54839907675926], [-77.31264683213391, 34.548308297318066], [-77.3126866391699, 34.548200476540565], [-77.31270374733646, 34.54817477538381], [-77.31278630296114, 34.54800057581529], [-77.31287091900603, 34.547905959903716], [-77.31305455938268, 34.54766390169007], [-77.31308906631709, 34.54765115394636], [-77.31310173769279, 34.547628004457344], [-77.31322386298942, 34.547507190796864], [-77.31339286676196, 34.5473413873585], [-77.31334597187362, 34.547279396982944], [-77.31345589270072, 34.54729203833485], [-77.31348504192403, 34.547309716663385], [-77.31384895734377, 34.547272870258794], [-77.31385707410803, 34.54726970941442], [-77.31407084308115, 34.54713556275776], [-77.31421209324691, 34.54710133488864], [-77.31424591062768, 34.547087717188205], [-77.31433524565999, 34.54701589826766], [-77.31434364494353, 34.54696003729212], [-77.31444774767262, 34.54685167005175], [-77.31445620055192, 34.546826368786], [-77.31452109188686, 34.546767642538796], [-77.31455902819818, 34.54668429483618], [-77.31454093172735, 34.54651135531442], [-77.3144626467228, 34.54633262918195], [-77.31462081426815, 34.54618580013311], [-77.31476438965163, 34.54598271278731], [-77.31483734109996, 34.54590989320634], [-77.3150629357297, 34.54573005135208], [-77.31523707089048, 34.545716050810896], [-77.31545714605, 34.54566160841256], [-77.31558909411976, 34.54563906173283], [-77.31554115896026, 34.54556399920173], [-77.31546445109801, 34.54534963333886], [-77.31544289613821, 34.54534678381347], [-77.31545699189144, 34.54532628500119], [-77.31526309727495, 34.545114313934576], [-77.31522513703686, 34.54502886385258], [-77.31479000736655, 34.544692636936325], [-77.31464868903396, 34.5444995894025], [-77.31454637754995, 34.543889014210045], [-77.31466584181297, 34.54373122834461], [-77.3151200334147, 34.54317465793589], [-77.31591777635188, 34.54275600317369], [-77.31604234978042, 34.54263012751345], [-77.31616586942957, 34.54253654277192], [-77.31671371196325, 34.54229669160259], [-77.31696033591336, 34.54208348407474], [-77.31748758475767, 34.54187034151098], [-77.31750883275461, 34.541871826936536], [-77.31756214711281, 34.54184635929919], [-77.31778864567849, 34.54149316321669], [-77.31830505082809, 34.541399677898006], [-77.31839876321973, 34.54129344488389], [-77.31857108712421, 34.54121180045426], [-77.31891812549006, 34.54104952377988], [-77.31909954558235, 34.54100086105801], [-77.31938702094583, 34.54091654602887], [-77.31958523981582, 34.540877561153145], [-77.31989157026435, 34.54070742571601], [-77.3201089525162, 34.540635756436956], [-77.3202497839335, 34.54048100926305], [-77.32068889916354, 34.54018662491819], [-77.32096536005386, 34.54005911829624], [-77.32147870877542, 34.5399874722205], [-77.32168176423986, 34.53991115624933], [-77.32204135838191, 34.53987437553881], [-77.32226515759419, 34.53993215694862], [-77.32289186938233, 34.54000362091536], [-77.3232852396074, 34.53989884641057], [-77.32383574735869, 34.539920315591736], [-77.32436486638511, 34.539727242641916], [-77.32530343607924, 34.53926520850885], [-77.32542292370093, 34.53919647478036], [-77.32555005687904, 34.5391511418413], [-77.32621813256567, 34.5387645016359], [-77.32645750810988, 34.53875891403808], [-77.3270021566399, 34.53881260708029], [-77.32756696369842, 34.538450254575324], [-77.32751228245607, 34.53827886099176], [-77.32800652656267, 34.53789744204662], [-77.32821118522564, 34.53762551256811], [-77.32860449982492, 34.537434546388894], [-77.32930054858767, 34.5367321726679], [-77.32992086099998, 34.536470689642925], [-77.33019302005806, 34.536114246778496], [-77.33020204771232, 34.53611077864207], [-77.33020560340888, 34.536107527565335], [-77.33082634238457, 34.53591793766226], [-77.331001330028, 34.53565087187711], [-77.33151645162003, 34.53560341518195], [-77.33177929975034, 34.53595841857272], [-77.33200299142823, 34.53549722293274], [-77.3327951527737, 34.53525049952942], [-77.33316287497884, 34.53506834016528], [-77.33337213556828, 34.5349842079854], [-77.33371794296869, 34.5349033214264], [-77.3345579546545, 34.5347539696707], [-77.33494582534206, 34.534834086264645], [-77.33522862621162, 34.53472577858935], [-77.33545764491944, 34.53469520675138], [-77.33573260059212, 34.53476191166004], [-77.33578907017782, 34.5347844440748], [-77.33612738643718, 34.534665456247474], [-77.33622818100622, 34.53457355459023], [-77.33629587085481, 34.53450228664157], [-77.33641102845394, 34.534414172988235], [-77.33645472016276, 34.534357033351945], [-77.33652907895619, 34.534270843222274], [-77.33655669926782, 34.53423669084504], [-77.3366102491069, 34.53421225719489], [-77.33672822877978, 34.53414670621805], [-77.33686594209924, 34.53413884841202], [-77.33692507513273, 34.534121988082816], [-77.33721946416367, 34.534062563899916], [-77.33732246860025, 34.53391273233919], [-77.33768750563844, 34.533830845927646], [-77.33777090850054, 34.53383423670955], [-77.33810881182653, 34.53385870496596], [-77.33839031230544, 34.53395623969649], [-77.33836803851013, 34.5342813064653], [-77.33870355951846, 34.534400819966216], [-77.33883701682453, 34.534409158691254], [-77.33887951813654, 34.53448037587177], [-77.33897636070834, 34.53442112377048], [-77.33914340300473, 34.53433755438665], [-77.3394872315189, 34.534173036415964], [-77.33967209482248, 34.53415700593533], [-77.33995006688058, 34.53390156388514], [-77.33975818170616, 34.533759488338774], [-77.33972968074593, 34.53373377873426], [-77.3397258556485, 34.53351932017134], [-77.33968809759051, 34.53346515534912], [-77.33947085396497, 34.53344693338403], [-77.33937318534134, 34.53332523112618], [-77.33930107101298, 34.53322668203693], [-77.3392411797483, 34.53313803261595], [-77.33912038306207, 34.53311677627423], [-77.33891356374357, 34.53300907475007], [-77.3387164625634, 34.533052359230865], [-77.3387486379846, 34.53292542919406], [-77.33822412996955, 34.53256447162395], [-77.33819310025311, 34.53251569946933], [-77.33816749616953, 34.53250236456012], [-77.33814887443097, 34.532128087272895], [-77.33814345418615, 34.532037887775324], [-77.33814660795419, 34.53203275140301], [-77.33775942245535, 34.531994812975775], [-77.33745952010217, 34.53207267563315], [-77.33736499449472, 34.53207645160078], [-77.3369777545687, 34.53195450500747], [-77.33696815059389, 34.53195295904351], [-77.33658276783434, 34.53195348048523], [-77.33639052382844, 34.53191612391346], [-77.33623833528927, 34.53181757335381], [-77.33619356700692, 34.53180949384651], [-77.33597042033455, 34.53185610361534], [-77.33583342455287, 34.53189727822902], [-77.33579768013803, 34.531954030376], [-77.3357613200842, 34.53190949581586], [-77.33570626940771, 34.53189409192678], [-77.33520953126474, 34.531844295923094], [-77.33501410503982, 34.531889327443515], [-77.33479235411373, 34.53188718861069], [-77.33422780551584, 34.532106703908354], [-77.33422536414065, 34.532107931322564], [-77.33422393923647, 34.53210878430233], [-77.33422041023377, 34.532109951408366], [-77.33382590037863, 34.53234584530779], [-77.33374703728097, 34.53237184477974], [-77.33342775852013, 34.53258724482025], [-77.33303037076803, 34.532768519741246], [-77.33282235175935, 34.532915236908366], [-77.33263409306561, 34.532956955385046], [-77.33223921951591, 34.53312609431417], [-77.33184147806125, 34.533281119542934], [-77.33168589928816, 34.53335551178269], [-77.33144682879924, 34.53348583398497], [-77.33090655044052, 34.533969672932066], [-77.33025469787447, 34.53399530276954], [-77.3298896466629, 34.53419933783378], [-77.3297438983154, 34.5343971846234], [-77.32945713577064, 34.53453135782536], [-77.32919786013863, 34.53462812343689], [-77.32903401175052, 34.534811970677495], [-77.32877512306865, 34.53491910369296], [-77.32866122649267, 34.53499591030153], [-77.3283127901214, 34.53519080233612], [-77.3281851414803, 34.53522754232584], [-77.32786971781115, 34.53527097020121], [-77.327617072799, 34.53534884881442], [-77.32721161946492, 34.535563558212985], [-77.32707586001436, 34.53564669513189], [-77.32681824467126, 34.535778839882475], [-77.32665791917798, 34.535875449694174], [-77.32655176908968, 34.53598039796266], [-77.32639598077819, 34.53617042005818], [-77.32627575387721, 34.53629038580962], [-77.32603012597457, 34.536563414697326], [-77.32547501513032, 34.536960693860856], [-77.3249743400171, 34.53735399379347], [-77.32436231721145, 34.53773860496254], [-77.32391296060689, 34.53799615360465], [-77.32387987779845, 34.53802773892542], [-77.32356911603885, 34.53834602320149], [-77.32243818989309, 34.53860905089224], [-77.32229664855113, 34.53858272341938], [-77.32216504898598, 34.53865594776063], [-77.32205647237342, 34.53875254957312], [-77.32125601375486, 34.53920695157227], [-77.32113787315188, 34.53937416353943], [-77.32069939105259, 34.53973739218703], [-77.32035646874904, 34.539762578043245], [-77.32028083999316, 34.53975800789676], [-77.31991170414062, 34.539845695971344], [-77.31946913733654, 34.54010353909047], [-77.31925884655814, 34.5402217337452], [-77.31911597785003, 34.54029784140039], [-77.31885937221963, 34.54043595153733], [-77.31879432323015, 34.54049236162643], [-77.31841935903641, 34.5407439741301], [-77.31841452285926, 34.54080425250122], [-77.31831509670471, 34.54097005796768], [-77.31801014045699, 34.5409925971188], [-77.3175253353085, 34.54116636475703], [-77.31623988169123, 34.54136609625696], [-77.3159481746003, 34.541457557541385], [-77.31582295980151, 34.541529520824895], [-77.31550675657489, 34.54165196756398], [-77.31467133793183, 34.541962360586226], [-77.31436336006152, 34.542074878424465], [-77.31370690035902, 34.54240008802896], [-77.31365469298507, 34.542460940886514], [-77.31356902766152, 34.542465273953646], [-77.31336354330784, 34.54257591428305], [-77.31277405664147, 34.54288257463404], [-77.31245607652626, 34.54306933443936], [-77.31170314101534, 34.54349790792337], [-77.3111818405788, 34.543813023470435], [-77.31025415621517, 34.54436474894139], [-77.30995382315683, 34.544633379718185], [-77.30959016580469, 34.54471886828323], [-77.30886844075019, 34.54505332374009], [-77.30881825219008, 34.54507402300852], [-77.30879631482993, 34.54508667776726], [-77.30863385752433, 34.54518683383262]], [[-77.36921059094757, 34.517695590029625], [-77.36948822587271, 34.517676748682966], [-77.36954951813819, 34.517509679758945], [-77.36988958144337, 34.51728624970072], [-77.37007612604404, 34.51726922638548], [-77.37097613719713, 34.51702338113805], [-77.37075564067527, 34.516606470657756], [-77.3714708980477, 34.516781854672786], [-77.3720379080137, 34.51623702167059], [-77.37233215329893, 34.51584861962632], [-77.37256200519681, 34.515498640276206], [-77.37307457096506, 34.515293369527924], [-77.37372627953323, 34.51507177199097], [-77.37386507051352, 34.51504695853335], [-77.37409617423957, 34.51496171612481], [-77.3746531394923, 34.51490730646736], [-77.3752927639255, 34.51542183537563], [-77.37568946551285, 34.5156864096814], [-77.37573665748343, 34.515847500117296], [-77.37619480960134, 34.51614592825946], [-77.37650213029687, 34.515925742309626], [-77.37692988247242, 34.51567546702279], [-77.37697391477856, 34.515658601589934], [-77.376990824463, 34.51565633319764], [-77.37700772187159, 34.51565373948582], [-77.37774681865085, 34.51553797018747], [-77.37777947217305, 34.51549111242027], [-77.37823612636345, 34.51527935271821], [-77.37857451244008, 34.51504379093559], [-77.37911206172751, 34.515025719928616], [-77.37936133839943, 34.514958525086506], [-77.37945187637594, 34.51487749366269], [-77.37964002280492, 34.51479502403974], [-77.38040273204267, 34.514346750181346], [-77.38076318850774, 34.51414339276124], [-77.3809351260363, 34.51364499468348], [-77.3808213915485, 34.51364533712286], [-77.37960294408421, 34.513688280091515], [-77.37938955889167, 34.51371334481979], [-77.37914400375762, 34.513734334085925], [-77.37850089149228, 34.513979964912885], [-77.37797480559134, 34.51415883325724], [-77.37780402836017, 34.51440850544858], [-77.37761947353154, 34.51422479576429], [-77.37738258222959, 34.51414121552251], [-77.37761799032737, 34.51398522107457], [-77.37781748352704, 34.51381531271957], [-77.37821436339479, 34.51328201636446], [-77.37888738979736, 34.512944912396904], [-77.37922175217021, 34.512778794227216], [-77.37941295828168, 34.51268089684434], [-77.38011156745996, 34.51233738541914], [-77.38099960615962, 34.51193432135457], [-77.38131335870528, 34.5118097219396], [-77.38160107717746, 34.511574241834516], [-77.38122142010047, 34.51149679162549], [-77.38100939310765, 34.511502139653714], [-77.38074676647408, 34.511534054052994], [-77.37943981274917, 34.51149601104776], [-77.37888858302803, 34.51162331921452], [-77.37865098572027, 34.51167096335804], [-77.37826306224208, 34.51180606589895], [-77.37785940802694, 34.51196701906306], [-77.37772461311155, 34.51205034484156], [-77.37737924282827, 34.51218305907588], [-77.37660852357908, 34.51250066426622], [-77.37627480283136, 34.51262220517821], [-77.37556484154544, 34.512934321135376], [-77.37550824438512, 34.5129586738713], [-77.37548188699577, 34.512976367220794], [-77.375417857442, 34.51299519102529], [-77.3746898844619, 34.51329002226695], [-77.37383579843495, 34.51367324325739], [-77.37341431167155, 34.51392656487175], [-77.3731035562572, 34.51401866574459], [-77.37231198728186, 34.514381578074705], [-77.37230980714418, 34.514382509259434], [-77.37151787606093, 34.51471756356263], [-77.37120869186582, 34.514840095781274], [-77.37060705136848, 34.51511795480164], [-77.37019565500562, 34.515340545234004], [-77.36992666591968, 34.515658032591446], [-77.36939236068872, 34.51562678518155], [-77.36904589040958, 34.515774454167286], [-77.36834596249588, 34.51613596081493], [-77.36804502531075, 34.51628081985531], [-77.36755347392356, 34.5164683064993], [-77.36713987049129, 34.516596928238144], [-77.36683797287486, 34.51668684224122], [-77.36676240515347, 34.51673812686129], [-77.36662047805613, 34.51675999630677], [-77.36569844811906, 34.517125721260484], [-77.36517914665464, 34.51732614340289], [-77.36503036480818, 34.51739053385913], [-77.36467975935935, 34.51762340532447], [-77.36438655195786, 34.51766202957243], [-77.36386619368724, 34.51787976377616], [-77.3635939860427, 34.51799636256173], [-77.36323781619697, 34.51813843586333], [-77.36243552651793, 34.51851809187207], [-77.36201016715555, 34.51860674219638], [-77.36157324680443, 34.518867875706555], [-77.36142038746314, 34.5190174962825], [-77.36121412688796, 34.51909208054333], [-77.36074291094793, 34.51927876033248], [-77.36042219717132, 34.519397412579664], [-77.36028963330773, 34.51946062726148], [-77.35963176937119, 34.51963688345159], [-77.35963115307855, 34.519637261092306], [-77.35920946115891, 34.51992837307683], [-77.35889492559599, 34.520232945145814], [-77.35886533581495, 34.520257625413265], [-77.35883195946704, 34.52028571388789], [-77.35818781191801, 34.52042460175822], [-77.35804208635385, 34.5205003849902], [-77.35777891218453, 34.52055702503345], [-77.35725155223768, 34.52074369497447], [-77.35698785211463, 34.52083403660344], [-77.35646139762231, 34.52097024023493], [-77.35575349853227, 34.521124703718634], [-77.35567244016252, 34.521144406260824], [-77.35562378995941, 34.52116358964114], [-77.35553841616093, 34.52120595533326], [-77.35511366976841, 34.52141204176942], [-77.354875829013, 34.52165185121913], [-77.3547516430061, 34.521732579380355], [-77.35408386336252, 34.52195656213207], [-77.35360256276671, 34.5221667664992], [-77.35329016215108, 34.52233655474546], [-77.3530022684638, 34.52224169728017], [-77.35250659983379, 34.522275049880236], [-77.35210054761964, 34.52242914691501], [-77.35171559426972, 34.52253731930883], [-77.35107765366783, 34.522732950069134], [-77.35092502917699, 34.52278020679236], [-77.35082870845423, 34.522803564414914], [-77.35063246811592, 34.52289155939981], [-77.35024690107934, 34.52301711247263], [-77.35013305004424, 34.5230843319531], [-77.34970459079831, 34.52324988576312], [-77.34934005693049, 34.523432240642364], [-77.34899157599847, 34.52361739531345], [-77.3487335222362, 34.52377071132078], [-77.34854381950484, 34.52392073035949], [-77.34788656983324, 34.524266080420524], [-77.34783438580489, 34.524326552747056], [-77.34774928044327, 34.52433508441949], [-77.34766993725565, 34.52434658369684], [-77.34696075342536, 34.52448822623458], [-77.34660377177202, 34.52472102143055], [-77.34631143284703, 34.52498241098175], [-77.34624604311485, 34.52504365146376], [-77.34616063366656, 34.5251440207861], [-77.3459295733866, 34.52518095438401], [-77.34576645397799, 34.525216729844345], [-77.34560945099325, 34.52523052081813], [-77.34549632272169, 34.52550882043726], [-77.34546057848779, 34.525594494627], [-77.34536146564075, 34.52575800423419], [-77.3451945630018, 34.52573717719176], [-77.34501650773583, 34.52565839624662], [-77.34464652051142, 34.52566921140709], [-77.34457909149737, 34.52564368250857], [-77.344450755174, 34.52565999332459], [-77.3443826888843, 34.52565017279628], [-77.3442839432089, 34.525702978576035], [-77.34430512398599, 34.52576076178549], [-77.34437815828284, 34.52584649324885], [-77.34445459147861, 34.52581445144173], [-77.3445740898739, 34.52586043540715], [-77.34473661044598, 34.52594349295258], [-77.34488859668107, 34.52596871550421], [-77.34512699504421, 34.52613213703202], [-77.345155031384, 34.5262497871084], [-77.34507257046855, 34.52645950846099], [-77.34470192400462, 34.526592670501756], [-77.34455680596736, 34.52660946206397], [-77.34432977447103, 34.526391595532054], [-77.34422317701146, 34.52626219182982], [-77.3440944707385, 34.52608696600313], [-77.34378204009523, 34.52616523864631], [-77.34365398859265, 34.52626566870352], [-77.3435831853751, 34.52627788076232], [-77.34346184234583, 34.52637173924276], [-77.34341851749761, 34.526399424887025], [-77.34338358281585, 34.52642288803031], [-77.34336373770984, 34.52644705980261], [-77.34336172622983, 34.52649597402669], [-77.3433502331298, 34.52651020769938], [-77.34337189695347, 34.5266251239867], [-77.34336952522472, 34.526629841545045], [-77.34337385422774, 34.52663227125545], [-77.34337861245977, 34.52663815553759], [-77.34349377174327, 34.52678287181643], [-77.34363293200536, 34.52683676061901], [-77.34367789047019, 34.52688489069219], [-77.34376379365689, 34.526955657971605], [-77.3440149420151, 34.52702661381436], [-77.34407417430563, 34.52706770532883], [-77.34410293086646, 34.52722942271325], [-77.34408586012458, 34.52726122907782], [-77.3440547573681, 34.527454365053764], [-77.34374468818804, 34.52778329419336], [-77.34372981623858, 34.527792961370295], [-77.34373057465082, 34.52780198897996], [-77.34363792075771, 34.52788051309754], [-77.34374281204902, 34.527864567551795], [-77.34380098405457, 34.52803667745286], [-77.34384098662501, 34.528209540919065], [-77.34385526878407, 34.52827368583593], [-77.34383272334158, 34.52833985205082], [-77.34372936870588, 34.52844692734451], [-77.34354726739001, 34.52843179952556], [-77.34359475994012, 34.52831116930729], [-77.3435407665046, 34.528197715889306], [-77.34354266603779, 34.52819393725695], [-77.34353514374752, 34.528194978489985], [-77.34334413506211, 34.52813138975568], [-77.34326202386673, 34.52823663435024], [-77.34323486221797, 34.52829718463024], [-77.34314436167413, 34.52828359233649], [-77.34311689130004, 34.52827477667004], [-77.34307220839028, 34.52826394498178], [-77.34304685502252, 34.528256615858254], [-77.3429980260325, 34.528244049743535], [-77.34294919675256, 34.5282362072203], [-77.34292494046869, 34.52823901735812], [-77.34287979174572, 34.528248517974916], [-77.34285062176095, 34.528255494203215], [-77.34281242786037, 34.52826381899989], [-77.34278213105831, 34.52826307118586], [-77.34275202669414, 34.528275648151904], [-77.34274619449664, 34.52828024866705], [-77.34275191852146, 34.528280331765636], [-77.34279500920381, 34.52827699952947], [-77.34284923426848, 34.52829574037909], [-77.34284969133911, 34.528295781252496], [-77.34284988454839, 34.52829581154513], [-77.34284982638869, 34.528295940856616], [-77.34292016790596, 34.528302964414976], [-77.34294757583521, 34.528306396135584], [-77.3429880769544, 34.52831191391257], [-77.34301628029604, 34.52831496720698], [-77.34304544564549, 34.528317647769924], [-77.34306951610257, 34.52831062521823], [-77.34308598042827, 34.528323168273154], [-77.34314314862146, 34.52833612526495], [-77.34317473140928, 34.52835168100142], [-77.343217655664, 34.528365427715904], [-77.3432404414506, 34.528372367244216], [-77.34328871188549, 34.52838610419646], [-77.34329431848018, 34.52838822971804], [-77.3433380635831, 34.52839435024287], [-77.34337738793673, 34.52840365014382], [-77.34342256889227, 34.5284054867941], [-77.34353053741708, 34.52844281953541], [-77.3435319842123, 34.52844336433065], [-77.34370951099585, 34.52853947788764], [-77.34370291825309, 34.52855536269806], [-77.34372646611409, 34.52857266663636], [-77.34393738712735, 34.52861928376686], [-77.34395272168207, 34.52874930284365], [-77.34400431735338, 34.52880998275947], [-77.34408270887047, 34.52895834468296], [-77.34409589994685, 34.52897352108285], [-77.34410507278204, 34.528975086059695], [-77.34410917366671, 34.528997806724874], [-77.34431135094616, 34.5291873397729], [-77.34437192163239, 34.52925585145003], [-77.34441553758354, 34.52936876995098], [-77.34442846402943, 34.52941530824447], [-77.3444724672249, 34.52942111412673], [-77.34449040487357, 34.529487097971014], [-77.34462050534128, 34.52955043870842], [-77.34463137767933, 34.52963093057283], [-77.34456286845618, 34.52968888849511], [-77.34465441354396, 34.5297661270076], [-77.34481811977406, 34.52984887981205], [-77.34465828189992, 34.52998373192368], [-77.34465578330783, 34.53000643709201], [-77.34466039345403, 34.530116394940215], [-77.34465914357631, 34.530124567691345], [-77.34466202184423, 34.53017736555094], [-77.34465511196045, 34.530187955084], [-77.34467010746445, 34.530204810632895], [-77.34471543262512, 34.53020264692429], [-77.34478186981403, 34.53022132545467], [-77.3448657632844, 34.53023115135686], [-77.3450075375273, 34.530222956616626], [-77.34523306386741, 34.53027881176678], [-77.3452556167538, 34.53034706526738], [-77.34529406910231, 34.530270033405394], [-77.34549140030447, 34.530140911302745], [-77.34555416370489, 34.529987786261536], [-77.34556655251752, 34.52979994106191], [-77.34556862037257, 34.52949606610819], [-77.34555321663692, 34.529177432190224], [-77.34580324225254, 34.52865543731594], [-77.34572312649043, 34.528494551588416], [-77.3457524403724, 34.528280846423684], [-77.3460938726918, 34.52803958366513], [-77.34660440569395, 34.528049159868466], [-77.34767544525708, 34.52754006882357], [-77.34821388842118, 34.52749196941426], [-77.34831673438063, 34.527142018104186], [-77.34841980346151, 34.527095431307465], [-77.34841288363805, 34.52688335932564], [-77.34847665274074, 34.5268374345177], [-77.34882858582107, 34.52679764776461], [-77.34897243493256, 34.52673981169271], [-77.34926487282016, 34.526698422513405], [-77.34970715400375, 34.526452251510705], [-77.3498905630907, 34.526321057212414], [-77.35005966646702, 34.52627358762213], [-77.35038706730991, 34.52615191737247], [-77.35085200435891, 34.52595516054637], [-77.35104230613756, 34.525888160293796], [-77.35141711735736, 34.52571646629946], [-77.35209566744194, 34.525407369963126], [-77.3524364909387, 34.52532570618703], [-77.35312531227767, 34.52504492300909], [-77.354013107719, 34.52503787353163], [-77.35469838381563, 34.524687205638045], [-77.35480880855323, 34.52457168740997], [-77.3549686106791, 34.524225876128625], [-77.35498286317123, 34.524121698456554], [-77.35508188986364, 34.52388035956457], [-77.35530869435348, 34.52387507324293], [-77.35560919404003, 34.52390092531922], [-77.35604293344718, 34.52380204872937], [-77.35712982722252, 34.52388364861809], [-77.35717975192001, 34.52387559967715], [-77.35783076988335, 34.52332408717278], [-77.35786580895513, 34.52324836531859], [-77.35797985195074, 34.523216132488216], [-77.35836532172195, 34.523009611001285], [-77.35877358940007, 34.522833871440696], [-77.3591801210308, 34.522894561585446], [-77.35956299838634, 34.522640317691305], [-77.35958115973695, 34.52258235275129], [-77.35956505626731, 34.522550442916994], [-77.35936761622597, 34.5222508967051], [-77.35933936416346, 34.52212752833103], [-77.35945150389118, 34.52203315742817], [-77.3595788823787, 34.52194661068435], [-77.35978929217391, 34.52170081814859], [-77.36022243427792, 34.521510693010505], [-77.36031909433319, 34.52146193269759], [-77.36037568535181, 34.52142954552618], [-77.36059764333865, 34.521319762198985], [-77.36135412426938, 34.520972199170416], [-77.36196071272374, 34.520769204526985], [-77.36244882301092, 34.52051150352378], [-77.36317332232301, 34.52010632987042], [-77.36335703507521, 34.519960046396186], [-77.3635521183341, 34.51982857972806], [-77.36403937688249, 34.519298663464376], [-77.36411169600467, 34.51899184385943], [-77.36422423596622, 34.51889190064325], [-77.36436012788431, 34.5188188711021], [-77.36497435892174, 34.51876023515849], [-77.36514706662967, 34.51873117727985], [-77.36537303481823, 34.51867002671025], [-77.36627019266078, 34.51839741704925], [-77.36673024786737, 34.518147698140055], [-77.36675179087467, 34.51813506716666], [-77.36678542728302, 34.518116961162754], [-77.36711747480265, 34.51781630535827], [-77.36794770024451, 34.51768622664511], [-77.36830831705994, 34.51778745198399], [-77.36901210176806, 34.51774487186567], [-77.36909429461826, 34.517741244881535]], [[-77.41071190565191, 34.49855784598712], [-77.41090785469247, 34.498393450595266], [-77.41112997078187, 34.49821227751589], [-77.4117111241379, 34.49805302627678], [-77.4132941185322, 34.49756751176228], [-77.41389707887251, 34.49734855624665], [-77.41400306098662, 34.497318047552454], [-77.4140643792359, 34.49728028424192], [-77.41460078434764, 34.49701449245081], [-77.41567127373823, 34.496763761461416], [-77.4152171358373, 34.49612580114199], [-77.41637389181655, 34.49587443238772], [-77.41744604877499, 34.49602121673478], [-77.41767579448717, 34.495515178330535], [-77.41856897649456, 34.495378842272444], [-77.4189438856855, 34.4954232111123], [-77.41953244881792, 34.494658935299434], [-77.4200424332014, 34.49451453344089], [-77.42056340818334, 34.49431171391201], [-77.42095687449978, 34.49416315369524], [-77.42118971989413, 34.49378449246449], [-77.42124493125607, 34.49370903404889], [-77.42135674018742, 34.49367671553411], [-77.42168668584554, 34.493329638182665], [-77.42152578660793, 34.493009808476245], [-77.42141002029344, 34.49275197637102], [-77.42084767759867, 34.49253137637644], [-77.42053164307151, 34.49276803682142], [-77.41952942239672, 34.49263496425938], [-77.41888407433814, 34.4928747737256], [-77.41855863148147, 34.492997060508316], [-77.41830010844853, 34.493064438381225], [-77.41732618096714, 34.493318515994346], [-77.41699016811856, 34.49342277379569], [-77.41693453111289, 34.493450633219894], [-77.41634959506983, 34.49370548268382], [-77.4158593588897, 34.4939890111914], [-77.41578822254885, 34.494026702845794], [-77.41572880974826, 34.494064512906476], [-77.41551729696236, 34.49426278358683], [-77.41548436829922, 34.49472755763995], [-77.41598422393506, 34.49531040665332], [-77.41597713280385, 34.495428313025975], [-77.41506759502862, 34.496022019893154], [-77.41502106528769, 34.49603045994537], [-77.41367335465442, 34.49584732154725], [-77.41349895264317, 34.49597708413679], [-77.41304335149331, 34.496257156595576], [-77.41251118084094, 34.49652309311194], [-77.41235441023456, 34.49659406665789], [-77.41223267161303, 34.497051349921676], [-77.41115411152691, 34.497129313721274], [-77.4096400752408, 34.497733349651426], [-77.40960299372904, 34.49775889185863], [-77.40957070645867, 34.49775627121452], [-77.40953855071604, 34.497767921604726], [-77.40844969668473, 34.498191210084755], [-77.4079865620115, 34.49841521711671], [-77.40786533215665, 34.498479427029594], [-77.40746784538362, 34.49870690443866], [-77.40670302448126, 34.499137007618124], [-77.406572580894, 34.4992647079753], [-77.40639718112922, 34.499307304567225], [-77.40593768053377, 34.49953116923825], [-77.40547670894391, 34.499724946850215], [-77.40480625882797, 34.500266744624724], [-77.40446368311765, 34.500439815853014], [-77.4037182838297, 34.500856163417566], [-77.40321802469313, 34.50110441834221], [-77.40226251948343, 34.50135049308784], [-77.40163834586092, 34.50155873981443], [-77.40138291406977, 34.50170676803502], [-77.40006411482496, 34.501769260390624], [-77.39973631438804, 34.501899125089416], [-77.3992723614331, 34.50208111879038], [-77.39889467519895, 34.50222337013993], [-77.39862010097136, 34.50234944795599], [-77.3984729362058, 34.50273457312363], [-77.39818728271553, 34.502506929615336], [-77.39748991943978, 34.50279297227601], [-77.39689785785941, 34.50298133688763], [-77.396829380086, 34.50301121611453], [-77.39689367361737, 34.50316764067181], [-77.39704523329269, 34.50337228930123], [-77.3973025571411, 34.50343257516125], [-77.39845457376896, 34.50355284585841], [-77.3992424576507, 34.50363902230218], [-77.40002354686662, 34.50357856960099], [-77.40140195957441, 34.50382003109423], [-77.39999707350438, 34.504759281852074], [-77.39966512792516, 34.50484423274821], [-77.3996281181995, 34.50505550856282], [-77.39928393086505, 34.50553925932841], [-77.39924090069482, 34.50560109092968], [-77.39997196207523, 34.50587926234593], [-77.40010890967235, 34.505879977497294], [-77.40105382100862, 34.505828996737236], [-77.4014925386222, 34.50579737637581], [-77.4015431592815, 34.50580760275366], [-77.40159467562849, 34.505782695406545], [-77.40162533648999, 34.50574647237622], [-77.402538473926, 34.50524847877676], [-77.40313490257563, 34.504817846759835], [-77.40336665228139, 34.50465803132157], [-77.40442480723004, 34.50436283865854], [-77.40443668391282, 34.504185204894455], [-77.4047217378413, 34.504045810568634], [-77.40478022208623, 34.50427186103302], [-77.40493472388907, 34.50428919309189], [-77.40550078827056, 34.50430193913247], [-77.40587554020232, 34.50415330612903], [-77.40613287742815, 34.50401688805476], [-77.40629297009401, 34.50397063628844], [-77.40677188342175, 34.503728383344], [-77.4071664482738, 34.50352631997501], [-77.40726644089537, 34.50335357774365], [-77.40757188686513, 34.50292891932172], [-77.40732588181005, 34.5026106554289], [-77.40723783340852, 34.50240936504724], [-77.40644290248868, 34.502112646788405], [-77.40640615433361, 34.50207377944719], [-77.40633580860501, 34.50205363630819], [-77.40592702867866, 34.50193036954079], [-77.40538218684084, 34.50188391804443], [-77.40542277692514, 34.501685137110904], [-77.4061972001651, 34.501168782973394], [-77.40635713020076, 34.501099518397744], [-77.40693920596652, 34.50043621109413], [-77.40777784327429, 34.49996109932045], [-77.40788424366022, 34.499902606333116], [-77.40795424294535, 34.49986264532237], [-77.40807238448504, 34.499845073615475], [-77.40952407649189, 34.49970688393265], [-77.40952721219135, 34.49970581887075]], [[-77.32412472781866, 34.750803805063775], [-77.32384863998502, 34.7505041077649], [-77.32334161720914, 34.75061753297041], [-77.32321301818018, 34.75062981324135], [-77.32314069601676, 34.750705953289284], [-77.32309612319939, 34.75075287855676], [-77.32286160285624, 34.75098648921585], [-77.32261870358418, 34.751305639556435], [-77.32246564419607, 34.751384555768546], [-77.32222589813269, 34.75226330674019], [-77.32228506770147, 34.75232606883878], [-77.32245002225571, 34.75248514245318], [-77.32250633138273, 34.752539443545594], [-77.32256373003887, 34.752594795516416], [-77.3224961210872, 34.75268847828587], [-77.32248787863789, 34.75278565332292], [-77.32244472416993, 34.75288331494516], [-77.32241484500376, 34.75293567133213], [-77.32221905976706, 34.753066156641665], [-77.32221216964142, 34.75307526937119], [-77.32212707772808, 34.7531274596171], [-77.32188986176833, 34.75311901946938], [-77.32152266437849, 34.75310261867102], [-77.32084095789166, 34.753498591541444], [-77.32069106459996, 34.753642491631496], [-77.32056846614884, 34.754325384049665], [-77.32031704505636, 34.75454507277482], [-77.32028649727641, 34.75456085566457], [-77.32016186496905, 34.755053688230475], [-77.32004858612228, 34.755329606216286], [-77.31982770380559, 34.7554311643445], [-77.3198153140109, 34.755588511569925], [-77.31990297874802, 34.75562503635286], [-77.31982700534766, 34.75574978164203], [-77.31967304224398, 34.75585167683694], [-77.31962187489239, 34.75588720969496], [-77.31920879497397, 34.75615893488589], [-77.31920839318235, 34.75615921218913], [-77.3192079721952, 34.75615971998703], [-77.31920526423605, 34.75616125739347], [-77.31920568282516, 34.75615936107027], [-77.31920656282642, 34.75615758991433], [-77.31921311383476, 34.756142047727195], [-77.31939824085093, 34.75568900045956], [-77.31941701391595, 34.755643057955304], [-77.31946340840433, 34.75556877418405], [-77.31963994979432, 34.755264755743525], [-77.31975184756377, 34.75510984036242], [-77.31997618052915, 34.75478059203069], [-77.32012428697425, 34.75457147119985], [-77.31987215931736, 34.75419362047591], [-77.31998988454566, 34.75398187640157], [-77.32017048289185, 34.75359041909079], [-77.3201002921253, 34.75311887673422], [-77.32009816378502, 34.75311047397986], [-77.3200958998665, 34.75310774735532], [-77.32017238319509, 34.75265933857827], [-77.32021970671991, 34.75260895211429], [-77.32037339692688, 34.752153895238614], [-77.3204011797159, 34.75210862222986], [-77.32040223169926, 34.752096590978915], [-77.32039724513153, 34.752092421798906], [-77.32053638732145, 34.75190922710471], [-77.32056048365247, 34.75183123531279], [-77.32063243103316, 34.75177830477314], [-77.32076388069639, 34.75179162874325], [-77.32077817553913, 34.75179213482752], [-77.32078654689255, 34.75179320883562], [-77.32103090004645, 34.75195304702702], [-77.32160439264958, 34.75189813295555], [-77.32165395737375, 34.75187059415716], [-77.32230743350027, 34.75134827709998], [-77.32201264474962, 34.75124492020063], [-77.32208217386881, 34.75104468009249], [-77.32213791985454, 34.75088413227671], [-77.32213828956574, 34.75075424859169], [-77.32213330461282, 34.750451540026376], [-77.32225860970193, 34.750380236348875], [-77.32216968557282, 34.75009770171446], [-77.32219589613737, 34.74992177327889], [-77.32219062141775, 34.749902185235136], [-77.32215226024172, 34.749829882109125], [-77.32229486898618, 34.74966735454339], [-77.32294650701832, 34.74931127970673], [-77.32298580007732, 34.74929176233661], [-77.32300965603694, 34.749269478379674], [-77.32312211734745, 34.74920984142567], [-77.32411131197266, 34.74901242484209], [-77.32426871145263, 34.74905989938599], [-77.32433606314251, 34.74906493720827], [-77.3253550874006, 34.748837900914886], [-77.3255114429267, 34.74890640912371], [-77.32556207268907, 34.74891074389364], [-77.32673357852438, 34.74878276453457], [-77.32674600435182, 34.748780981125684], [-77.32676703335036, 34.74877271502616], [-77.32787021111363, 34.74851326787534], [-77.32803772146667, 34.748458985063564], [-77.32823816459617, 34.748430055117346], [-77.32867883264578, 34.74852590306329], [-77.32895082487586, 34.748670445821524], [-77.32918566501294, 34.74863135567476], [-77.32941431797076, 34.74891248466804], [-77.3294667764932, 34.749062056542044], [-77.32940988384752, 34.74923936100012], [-77.32912941975853, 34.74932139805071], [-77.3289913005365, 34.74929973582967], [-77.32878248277204, 34.74932175572007], [-77.32854498420849, 34.749518980393056], [-77.3280047355625, 34.74990932402621], [-77.32795991119501, 34.7502204325675], [-77.32789104173871, 34.75058332455876], [-77.3276936533363, 34.75081922763996], [-77.32764285907251, 34.750865455739756], [-77.32762922202778, 34.750868756569915], [-77.32730436094297, 34.7509806897565], [-77.32709913904107, 34.751022016088186], [-77.3268627043394, 34.751063861240134], [-77.32671454340988, 34.750948927833996], [-77.32648180320554, 34.751113334796415], [-77.32626200364857, 34.75113149828059], [-77.32605450132056, 34.75115861655085], [-77.32592206356927, 34.751255696663335], [-77.32583083784596, 34.75126587037773], [-77.32574457991144, 34.75119434791252], [-77.32569338398051, 34.751174471771165], [-77.32549854320285, 34.75101043001279], [-77.32516110516664, 34.750957358377626], [-77.32517591382026, 34.7507840145861], [-77.32496218011326, 34.75079487742297], [-77.32480120097777, 34.75090075284258], [-77.32450798459968, 34.75090332022651], [-77.3243681465633, 34.750777604736456]], [[-77.34330792409715, 34.68561465848048], [-77.34332507721949, 34.68560829108082], [-77.34383172356954, 34.685592431523666], [-77.34389120617631, 34.68566726203781], [-77.34392828660363, 34.68591228882992], [-77.34393644480909, 34.68599930765484], [-77.34401873263992, 34.686223362593545], [-77.34405687395062, 34.68647015907338], [-77.34351626459245, 34.68695821551336], [-77.34313680398168, 34.686596421971544], [-77.34312033849551, 34.68653400410071], [-77.34304993651693, 34.68650291125959], [-77.3427396732829, 34.686365882836476], [-77.34251942252062, 34.68626860883595], [-77.34239013140348, 34.68621150600371], [-77.34257819312319, 34.686066266589], [-77.34319613251044, 34.685687357576356]], [[-77.38558908733445, 34.51011992016954], [-77.38575072319776, 34.51007746638785], [-77.38584935907964, 34.51004318400911], [-77.38600117176053, 34.50996022496066], [-77.38775482216624, 34.508983521486634], [-77.38785785315908, 34.50840130719654], [-77.38698197376668, 34.50860754159332], [-77.38578490482104, 34.50856430616886], [-77.38516614464157, 34.508717467943626], [-77.38499653570544, 34.50872093980045], [-77.3842924548525, 34.509227394319964], [-77.38434283238746, 34.509310250842766], [-77.38419187457201, 34.50959804626069], [-77.383948323228, 34.51025636090768], [-77.38365824509663, 34.51061676245911], [-77.38417149230037, 34.51049958954373]], [[-77.22696853322113, 34.599469693287496], [-77.22670608393663, 34.599684604416396], [-77.22699720871863, 34.59994211537161], [-77.22734191839581, 34.59959302216082], [-77.22775775763778, 34.59953198731087], [-77.22753102299859, 34.59888808964578]], [[-77.243777310508, 34.59256152789865], [-77.24291183223578, 34.591825261916355], [-77.24112119678196, 34.59212939827272], [-77.23978209528673, 34.59293880529135], [-77.23944494774685, 34.59326772336267], [-77.23877180614734, 34.59380186431603], [-77.23976250561196, 34.59406423904016], [-77.24002067809495, 34.59420537168606], [-77.24016449867746, 34.594648548090575], [-77.24015044936655, 34.59485326108228], [-77.2403053046508, 34.59496323157014], [-77.24038475289707, 34.595151743756894], [-77.24044373347604, 34.59527880386187], [-77.24048748056669, 34.59535118165125], [-77.24067871691588, 34.59568011742447], [-77.24072737353461, 34.59584144366263], [-77.2407012578002, 34.5959171843085], [-77.24083446101064, 34.59592897642784], [-77.2414499860103, 34.596369753923256], [-77.24144532070221, 34.59637346842433], [-77.24145297053549, 34.5963727825635], [-77.24147599940133, 34.59638937255988], [-77.24176641609877, 34.59658641056112], [-77.24193218797483, 34.59640775989878], [-77.2420822741304, 34.59627131307508], [-77.24244760449918, 34.596073601175995], [-77.24254297085149, 34.59602375200221], [-77.24259976137857, 34.595989022799884], [-77.24278712852305, 34.59587125025346], [-77.24326474327697, 34.595570078496884], [-77.24342627795028, 34.59549475218726], [-77.24364487320808, 34.59537409450934], [-77.2438710482405, 34.59523302637844], [-77.24396342948694, 34.59515378800173], [-77.2440689306788, 34.59508036773938], [-77.24417137015521, 34.59498574297557], [-77.24420166686598, 34.59493688642365], [-77.24421744746616, 34.59488379602887], [-77.24428906574563, 34.594708098161604], [-77.24457409345591, 34.59454368225892], [-77.24471318567831, 34.594415546308994], [-77.24474428613416, 34.59427261950148], [-77.24478826092498, 34.594076829083434], [-77.24485337565272, 34.59399568224517], [-77.24478606869684, 34.59380456220012], [-77.24499057973986, 34.59357693385837], [-77.2449352729947, 34.59334496796766], [-77.24464765947059, 34.59297051963876], [-77.24421578771135, 34.59258054776161]], [[-77.2240737806666, 34.60961111977783], [-77.22443814834098, 34.61008438138561], [-77.22446017103695, 34.61011298496112], [-77.22462134244756, 34.61032232047512], [-77.22465774404776, 34.6103696002741], [-77.22484656640228, 34.61061484732666], [-77.22487734090538, 34.61065481837189], [-77.22491785692715, 34.61070744135389], [-77.22497253429931, 34.61063477849437], [-77.22535135386697, 34.610684141246495], [-77.22537611639834, 34.61066509499394], [-77.22539042795883, 34.61065777714213], [-77.22550246215266, 34.6106131295883], [-77.22552403386541, 34.61059659747855], [-77.2254990412577, 34.61054851010716], [-77.22554588222118, 34.61048738575078], [-77.22554666472152, 34.610434428980206], [-77.22559021694413, 34.61038816024145], [-77.22535049005839, 34.610183263949565], [-77.22580550243237, 34.610060871802446], [-77.2259265480386, 34.60999305299214], [-77.22605569977233, 34.60995472344003], [-77.22619075193917, 34.60985950204429], [-77.22626710044733, 34.6098140579791], [-77.22630061275011, 34.60978689695518], [-77.22638078703929, 34.60972507120704], [-77.22648640560193, 34.609565880919845], [-77.2264985784192, 34.609362510049195], [-77.22656554215791, 34.609336446924765], [-77.22654302179288, 34.60929702120147], [-77.22650774171522, 34.60923368425753], [-77.22612728325267, 34.60883049631764], [-77.22605458444696, 34.608745009704606], [-77.22602469321676, 34.60852232120943], [-77.22536995872721, 34.60877071738056], [-77.2247208273717, 34.60909582556035], [-77.22436266772682, 34.60937789606304]], [[-77.44247841257057, 34.48298852849352], [-77.44222939822674, 34.48311529858777], [-77.4417735951835, 34.483234388081556], [-77.44080210821554, 34.48360976895229], [-77.43998068364795, 34.48370282978398], [-77.43963824626834, 34.48380111113879], [-77.43904377307912, 34.48394331882765], [-77.43871005470258, 34.483980339420015], [-77.43807195200534, 34.48405112123522], [-77.43740321834272, 34.484125300314965], [-77.43718642482902, 34.4842287170385], [-77.4368114738947, 34.484332541105054], [-77.43637722999154, 34.48442949036451], [-77.4361624028786, 34.48451201045067], [-77.43573884923656, 34.48471329083396], [-77.43516449927183, 34.48492408851471], [-77.4350424388544, 34.48496888745974], [-77.43495204102098, 34.485010263658346], [-77.43438144933009, 34.48524169424479], [-77.43372621988863, 34.48545194962121], [-77.43349942717342, 34.485514691791096], [-77.4329110901822, 34.48571518218221], [-77.43257657457643, 34.485805378498256], [-77.4325181934277, 34.48582125011734], [-77.43248630446452, 34.485842059304986], [-77.43225730669793, 34.48599149122394], [-77.43206490777736, 34.48611703844411], [-77.43208249264146, 34.486500643706435], [-77.43136210732791, 34.48665598968598], [-77.43122248837903, 34.48674958968029], [-77.43106237427654, 34.48692923271372], [-77.43119605918278, 34.487257997505026], [-77.43126489835831, 34.48742729222692], [-77.43126225937566, 34.487607623382516], [-77.43140488375187, 34.48810996859494], [-77.43131630141488, 34.48914495102328], [-77.43250990094204, 34.48951742749569], [-77.43357836746195, 34.4898410603914], [-77.43405583023424, 34.48959629152942], [-77.43498130070502, 34.48909805454517], [-77.43531305746448, 34.48830934039061], [-77.43543475408386, 34.48813023196401], [-77.4357698076647, 34.48800456303516], [-77.43686753496297, 34.48763843928894], [-77.43722915233627, 34.487622541842605], [-77.43843935233839, 34.48791874758554], [-77.43977200919855, 34.4871855853868], [-77.44047629001467, 34.48701604916091], [-77.44074488033465, 34.48650039312643], [-77.44155272325895, 34.48592525910014], [-77.4416417714925, 34.48531773639617], [-77.44169524812021, 34.485232097724385], [-77.44173866700368, 34.485209374389434], [-77.44222192894684, 34.485014685297514], [-77.4429608745486, 34.48475456722923], [-77.4432269382963, 34.48465949065127], [-77.44438538363498, 34.48416317239035], [-77.44529439590427, 34.48343919945101], [-77.44532692877425, 34.483415383603905], [-77.4452515959774, 34.48328254715125], [-77.44471583551473, 34.48214624755453], [-77.4435130608636, 34.482551019186374]], [[-77.3952666553546, 34.50572448832981], [-77.39542938019028, 34.50566166918441], [-77.39629071923511, 34.50518945141643], [-77.39631808609084, 34.50488905581486], [-77.3959246823137, 34.50501140613505], [-77.3952688415349, 34.50562722780753], [-77.39447797456995, 34.50531745773195], [-77.3934208210633, 34.50578000616403], [-77.39303807464266, 34.506006825527976], [-77.39285740084232, 34.50654527026761], [-77.3943030266258, 34.506209138457564]], [[-77.44570822575693, 34.49289218311456], [-77.44722068206337, 34.492670127865296], [-77.44759727186491, 34.49186687845979], [-77.44782780302756, 34.491776988141645], [-77.44898583744147, 34.492020499747014], [-77.44920632328464, 34.49185276866598], [-77.44993432626829, 34.49194564720354], [-77.45034605309996, 34.49207036315725], [-77.45114620695946, 34.49220129235291], [-77.45177699289675, 34.49237895295997], [-77.45257793432427, 34.49189066066388], [-77.4517174005668, 34.491290700735924], [-77.4528957462231, 34.49154542450497], [-77.45319590224513, 34.49124656192851], [-77.45270944447898, 34.490863863786686], [-77.45169958968371, 34.491023430568816], [-77.45142552737634, 34.49109310180237], [-77.45126158111289, 34.491069220986944], [-77.45013854453674, 34.49131113203779], [-77.44899131330884, 34.49115421492721], [-77.44876811375195, 34.491223847408286], [-77.44799083948527, 34.49139521142307], [-77.44750272989072, 34.49152092963194], [-77.44734286533465, 34.49162433688437], [-77.44586472472406, 34.492011211707265], [-77.44514642442414, 34.49275362691784], [-77.44483672086758, 34.49284781605009], [-77.44506261714027, 34.492924830836685], [-77.44526722278461, 34.493195691861125]], [[-77.4359779310739, 34.68755330981627], [-77.43566248535161, 34.68805452780787], [-77.43612961417297, 34.68846657640411], [-77.43635647958567, 34.68866784756523], [-77.43646400046083, 34.68877339741299], [-77.43678225776638, 34.688868032577076], [-77.43695781587581, 34.68880432516244], [-77.43729412628635, 34.6886250393002], [-77.43711423312983, 34.68826356776049], [-77.43689871386557, 34.688145541272235], [-77.4365424629726, 34.68802488937845]], [[-77.39983894660459, 34.51181198819746], [-77.40029895684103, 34.51111194153414], [-77.40064262591513, 34.5109718798498], [-77.40096223487123, 34.5107389605878], [-77.40065374518099, 34.5104757252644], [-77.40048353059356, 34.510425310046685], [-77.39986439774378, 34.51067679985585], [-77.39953221303347, 34.51073904801489], [-77.39839618832723, 34.51110944223905], [-77.39832596479793, 34.51114564198899], [-77.39828257296044, 34.51121787305086], [-77.3973370498545, 34.51165792778662], [-77.39749435247693, 34.512218975597165], [-77.39791644338729, 34.51237033712705], [-77.39825343197774, 34.5125165582648], [-77.39871486420077, 34.51273123244369], [-77.3990309337899, 34.512844587563215], [-77.39924288257585, 34.51258482139838], [-77.39976052093253, 34.51193896903952], [-77.39980352115623, 34.51188560736951], [-77.39979660910375, 34.51186087448863]], [[-77.33320546462818, 34.56968441427774], [-77.33338999993313, 34.56947946583884], [-77.33342358571133, 34.56946567059356], [-77.33359968913595, 34.569392028902165], [-77.33375457413848, 34.56939529652066], [-77.33390306485589, 34.56930475943771], [-77.33383779686844, 34.56947308059042], [-77.33373191296232, 34.56951360361587], [-77.3335995467315, 34.56956359493884], [-77.33343730471476, 34.56952367946914], [-77.333316608977, 34.569715890615136], [-77.33320520586703, 34.569994502639396], [-77.33309165869187, 34.569748225861446]], [[-77.21922996145432, 34.61394226951861], [-77.2184163651242, 34.6140068318317], [-77.21832695779972, 34.61457418028259], [-77.21848184094263, 34.61482591300751], [-77.21855955799475, 34.614933986734925], [-77.21860372138612, 34.61520537952312], [-77.21862045789442, 34.6153082259833], [-77.21865761891016, 34.615536585210485], [-77.2186521276502, 34.61555462778023], [-77.2186620812313, 34.61556400700338], [-77.2186882465639, 34.61572479555724], [-77.21869816226774, 34.61578572748971], [-77.21871642158388, 34.61589793394005], [-77.21890649766392, 34.61591397521776], [-77.21901584822183, 34.61585532010736], [-77.21908816502773, 34.615816529448644], [-77.21924996419803, 34.61573485281844], [-77.2194611807814, 34.615651564481965], [-77.21950662804157, 34.615634447447036], [-77.21955303337025, 34.615617560718476], [-77.2196060427801, 34.61556523483379], [-77.21966445901977, 34.615508519497816], [-77.21969720822425, 34.615475244991714], [-77.21977207476881, 34.615399177143026], [-77.21986796906542, 34.61529840869137], [-77.2199851115596, 34.615180319200384], [-77.22004220936628, 34.615124669070084], [-77.22017410368397, 34.61498543452761], [-77.2201972789114, 34.61496139245822], [-77.22020873635837, 34.61494406687281], [-77.22032646177477, 34.614776087349874], [-77.22035311339803, 34.61473801686138], [-77.2204838438551, 34.614531306638504], [-77.22050537857062, 34.614514359151386], [-77.22052534205582, 34.61448672004684], [-77.2205287645517, 34.61437677750587], [-77.22018734242184, 34.61401788033796], [-77.22047417478453, 34.61377114841741], [-77.22002920270297, 34.61369801934448]], [[-77.41945886803039, 34.50219054540712], [-77.41908977594225, 34.50211949369555], [-77.41889217554466, 34.50203977658635], [-77.41877242076703, 34.50187707187855], [-77.4186565890943, 34.501816834420865], [-77.41844153279942, 34.501644906859575], [-77.41765841427564, 34.50167588980739], [-77.41767638913541, 34.50195851798574], [-77.41760205251757, 34.50214505406787], [-77.41760778783592, 34.502276920450086], [-77.4177456621165, 34.50243818911497], [-77.41809460462125, 34.502617121289504], [-77.41863011947883, 34.50246793613806], [-77.41888241253933, 34.50247961918122], [-77.41909555337183, 34.502374610982216]], [[-77.45399209381327, 34.47729964976676], [-77.4544962922767, 34.4776963839977], [-77.45519219329739, 34.47823830738004], [-77.45636254116094, 34.47810230388096], [-77.45623741485319, 34.47789077008092], [-77.45648447340513, 34.477563016690596], [-77.45672358295312, 34.47723996363027], [-77.45683465666825, 34.477143619115594], [-77.45700430034438, 34.47702057663547], [-77.45783211662003, 34.47662078920876], [-77.4567669450632, 34.47615221614223], [-77.45619966622279, 34.47614607312044], [-77.45532950262925, 34.47641220496549], [-77.4551411014644, 34.47648398772405], [-77.45463580376145, 34.47666915805303], [-77.45431878058459, 34.47704689974707], [-77.45427097395438, 34.47708592602517], [-77.4542218568421, 34.47711276592874]], [[-77.4583425484168, 34.48191614235218], [-77.45844644592874, 34.48149107279912], [-77.45872287832405, 34.48139468956828], [-77.45870337016773, 34.481100846241205], [-77.45737879791433, 34.48097230268989], [-77.45706686782148, 34.48131052941284], [-77.45563724488724, 34.48187068955437], [-77.4553154634195, 34.482345931315365], [-77.4550363035039, 34.48255835494083], [-77.45477478993739, 34.48267726902047], [-77.45482736058679, 34.483126239818176], [-77.45578294964885, 34.48316714163214], [-77.45596170705312, 34.483057688955526], [-77.45622656250688, 34.48278863910333], [-77.45725423727782, 34.48267109198498]], [[-77.4636217348052, 34.4864503065379], [-77.46375003576004, 34.48644388007274], [-77.46371954636872, 34.486308573070716], [-77.46350425538597, 34.48602070290747], [-77.46333182797004, 34.48572827382388], [-77.46231706177473, 34.48574773982865], [-77.4620993559134, 34.48580720439142], [-77.4610603321165, 34.48624205987316], [-77.460991171611, 34.486291658668165], [-77.46089445402474, 34.48632512088427], [-77.4606503969894, 34.48634662641523], [-77.45958716116692, 34.48646858934316], [-77.45875182141558, 34.48639177303488], [-77.45883231945179, 34.48680440047517], [-77.4584885015171, 34.48737517503115], [-77.45836548126644, 34.48739215529294], [-77.45835686401048, 34.48745576312289], [-77.45842172075145, 34.487511220571115], [-77.45819370243434, 34.48790273958855], [-77.45822284130602, 34.48812447226102], [-77.4582894814578, 34.48836321802567], [-77.45841294330258, 34.48860329654525], [-77.45816759088551, 34.48879718182671], [-77.45840493161556, 34.48908578925275], [-77.45997558702723, 34.489362464936626], [-77.46042261789684, 34.48952413548239], [-77.46089174157936, 34.489352148812216], [-77.46103399529515, 34.489297730751964], [-77.46105055527606, 34.48929066404238], [-77.46105963331468, 34.489281848236], [-77.46105998122258, 34.48926423511472], [-77.46126253003806, 34.48895439371665], [-77.4613106698207, 34.48882299721088], [-77.46146344063892, 34.48840600273802], [-77.46163909819249, 34.48829800025849], [-77.4615408412515, 34.48823004499481], [-77.46162548920813, 34.48778787917787], [-77.46190254233127, 34.48763586138513], [-77.46212633317214, 34.48743716338447], [-77.46247833798608, 34.487193154305245], [-77.46264798456222, 34.487096556045664], [-77.46285193450093, 34.48700855254083], [-77.46315550469257, 34.486749083937845]], [[-77.24991370598288, 34.61130871023784], [-77.24939170564092, 34.610664451356314], [-77.24849603194076, 34.60989961854532], [-77.24771901243838, 34.608980674177566], [-77.24710107097357, 34.60859869564494], [-77.24667348708115, 34.60764263242279], [-77.24668339277403, 34.60762311543763], [-77.24669274190317, 34.6076031430987], [-77.24680711104702, 34.60745040304742], [-77.24735122522907, 34.60673301934161], [-77.24797646314308, 34.606115460521764], [-77.24942843071842, 34.605603679357515], [-77.25030339071616, 34.605555562057816], [-77.25190150845822, 34.60568571200883], [-77.25269396321485, 34.60581590962569], [-77.25334503316736, 34.607204908044864], [-77.25307125390957, 34.60801695583533], [-77.25304999828552, 34.60812438082924], [-77.25300562491078, 34.60821160103913], [-77.25258889051862, 34.60903076247959], [-77.2521733020185, 34.60984766626867], [-77.25209231788637, 34.60993437162394], [-77.2518901852389, 34.61009874824532], [-77.25110060950558, 34.61079898676154]], [[-77.39592582118861, 34.51131614709882], [-77.39598306514036, 34.511212958594584], [-77.39595319518921, 34.51120179440765], [-77.39594828070008, 34.51109556201129], [-77.39593077884928, 34.51109548429866], [-77.39591745717514, 34.51110001128406], [-77.39590924179826, 34.51121180828312], [-77.39590682458739, 34.51122396369877]], [[-77.31382179867775, 34.698413332106234], [-77.3137746152816, 34.698344721064004], [-77.31370307586654, 34.69812707202597], [-77.31362905311009, 34.698133054082405], [-77.31350836423692, 34.697968901087705], [-77.31347025873636, 34.69791203337789], [-77.3134065619376, 34.6978688025962], [-77.31323186072376, 34.69776309167942], [-77.31345792921283, 34.6976921950325], [-77.31354090714488, 34.6977207635894], [-77.31361702660041, 34.69779917775776], [-77.31370827817096, 34.69786066532694], [-77.31391172832868, 34.69782780982728], [-77.31400601138404, 34.69786622140745], [-77.314032081627, 34.69787408520061], [-77.31411656290967, 34.69788559783217], [-77.31448943071791, 34.69826258206858], [-77.31483635498836, 34.698009494853764], [-77.31487496808633, 34.69801407341451], [-77.31490247983419, 34.69802162939042], [-77.3151070242531, 34.69819761812962], [-77.31515820505929, 34.69819034127321], [-77.31524332921165, 34.69821862122695], [-77.31501012045177, 34.698530807763575], [-77.31477281088561, 34.69859166231664], [-77.31455790811886, 34.698799868317955], [-77.3143139839655, 34.69886581293051], [-77.31427429793419, 34.698838714947186], [-77.3143182713932, 34.698442145885934], [-77.31383942808596, 34.69843896761304]], [[-77.44129026071369, 34.495729134495384], [-77.4414221507785, 34.495609156582326], [-77.44165735663576, 34.49538802379129], [-77.44160681989528, 34.495288872261895], [-77.44177507114436, 34.495200051347226], [-77.44216867418012, 34.49496781576252], [-77.44289574534167, 34.49437311967713], [-77.44420113504805, 34.49416650635125], [-77.44312265159152, 34.49393814327545], [-77.44270253811597, 34.49366599938135], [-77.44146039004877, 34.49343540197685], [-77.44128309433653, 34.493399369204184], [-77.4408529384529, 34.49399598358772], [-77.4408514625583, 34.49432767373112], [-77.44063205870947, 34.494660261823356], [-77.44047755842199, 34.49474006807298], [-77.44036333842776, 34.4949617185615], [-77.4400811462493, 34.49514151856732], [-77.43967678216747, 34.49528711674936], [-77.43994665795381, 34.49559696105045], [-77.44059849530636, 34.49582244335585], [-77.44092190174149, 34.495870431264684]], [[-77.35716258422232, 34.570450168323895], [-77.35694636340448, 34.570562342880976], [-77.35717565203542, 34.570596220656796], [-77.35723770107259, 34.570628584910416], [-77.3574266375033, 34.570696845751755], [-77.35763160819863, 34.57076627234133], [-77.35771091716947, 34.57079136226109], [-77.35785585383547, 34.57085597631264], [-77.35796563119013, 34.57090470520046], [-77.35802536178865, 34.571192619331356], [-77.35804461190597, 34.57123258991714], [-77.35806094950206, 34.5712510048958], [-77.35852488493458, 34.57149487139008], [-77.35881317063928, 34.571495388932604], [-77.35900508598851, 34.571757242633176], [-77.3592069419557, 34.57190580344379], [-77.35922899501307, 34.571931962511], [-77.35937959862437, 34.572148646298835], [-77.3596006517341, 34.57244320220937], [-77.35972726375206, 34.57257283013625], [-77.36031041291004, 34.57254114973071], [-77.36038859089872, 34.572522539689764], [-77.36042873801516, 34.57256506220262], [-77.36106602828178, 34.57239740894944], [-77.36117673879018, 34.57218480828631], [-77.36141113361401, 34.57187020995039], [-77.36141079754739, 34.571617847078876], [-77.36141112324519, 34.57136566828062], [-77.3614514695353, 34.571187436952975], [-77.36117740574541, 34.570845567961705], [-77.36116112669491, 34.57082224123045], [-77.3611266020627, 34.570809657231074], [-77.36096418390316, 34.57063836712318], [-77.36090057015385, 34.57062992383937], [-77.36079949812098, 34.57044930569814], [-77.36079218933057, 34.570433251218], [-77.36078961622565, 34.57042717560607], [-77.36058646749292, 34.570038315841096], [-77.36038995037651, 34.56984501880249], [-77.36001404771119, 34.56967679094197], [-77.35996610508205, 34.56967079541603], [-77.35960214650369, 34.5695536479854], [-77.35936647928239, 34.569618771652785], [-77.35899258518806, 34.56961094670386], [-77.35881413672514, 34.56966233467497], [-77.35859891798391, 34.569707244413856], [-77.35802613355959, 34.569754325368635], [-77.35791702110089, 34.569691130497], [-77.35763219218394, 34.56968772162235], [-77.35757842574162, 34.56968019889817], [-77.35730675516265, 34.56973524939579], [-77.35723818142003, 34.569749144876916], [-77.35709438857513, 34.569904207727326], [-77.35709386054262, 34.56996116404799], [-77.357122824501, 34.570112390363306]], [[-77.34188151498013, 34.653747613512124], [-77.3419138454457, 34.65383616212189], [-77.34187807092277, 34.65386983025561], [-77.34185022305743, 34.65394358246988], [-77.34178049019462, 34.65394761200685], [-77.34172931077859, 34.653926205515454], [-77.34167475363688, 34.65394659939872], [-77.34147377242844, 34.65398073801282], [-77.34141137630257, 34.653937393008924], [-77.34132178792085, 34.65395074043218], [-77.34083817699988, 34.65409085468023], [-77.34079730253117, 34.65406820817237], [-77.34069175165631, 34.65415882394345], [-77.34025388546134, 34.65428837550889], [-77.34020728775054, 34.65431873846062], [-77.34011489491688, 34.654374547457856], [-77.33960079607685, 34.654487299048135], [-77.33940943166978, 34.654622954714476], [-77.33930969567012, 34.654632018117994], [-77.33927757131657, 34.65471150732269], [-77.33924023654102, 34.654780024626895], [-77.33908209453642, 34.65509270554205], [-77.33898411155889, 34.65510482100494], [-77.3388991185143, 34.65524883213992], [-77.33871890613152, 34.65552451192452], [-77.33873432700003, 34.65569344225149], [-77.33858625160771, 34.655811889620054], [-77.33836647610399, 34.65586278196591], [-77.33815343326938, 34.65596111944781], [-77.33793757900509, 34.65577061510506], [-77.33782109700309, 34.65602093699431], [-77.3376821418174, 34.656092836558905], [-77.33763043857857, 34.65617659082216], [-77.33742781398256, 34.65624937369354], [-77.33739562461471, 34.65626040322328], [-77.33735427407092, 34.656252424693506], [-77.33712520776821, 34.65627432946276], [-77.33712501103116, 34.65603840648731], [-77.33718538038741, 34.65590598905665], [-77.33728147386849, 34.65569235164571], [-77.33742250005399, 34.6556488460901], [-77.33754038347837, 34.65543528173196], [-77.33763302801168, 34.6551781091769], [-77.33759858231363, 34.655005300890046], [-77.33771715047317, 34.654673713166005], [-77.33779730930719, 34.65466420234739], [-77.3379905823112, 34.65452951494653], [-77.33828670042772, 34.65432130406686], [-77.33839780299581, 34.65432932852944], [-77.33875448116578, 34.6542232060566], [-77.33886614100848, 34.654018132945964], [-77.33916504210929, 34.65395864221775], [-77.33917342170497, 34.653953936522036], [-77.33917948016634, 34.65395268636468], [-77.33944512705929, 34.6537127203988], [-77.33966753144237, 34.653741023996496], [-77.33965890114605, 34.653456580366836], [-77.33957616326802, 34.65314479809685], [-77.33936549648996, 34.653316488110534], [-77.33924654858053, 34.65334803977085], [-77.33890945737056, 34.65331649765177], [-77.33863596818009, 34.65287277329777], [-77.33843422276826, 34.65325698292813], [-77.33836759891348, 34.65324104953388], [-77.33823060123228, 34.65323059231709], [-77.33832693865705, 34.65315683101559], [-77.33851414211709, 34.65276968704032], [-77.33859554504293, 34.65274032052222], [-77.33860837578754, 34.65273546961568], [-77.33863154108627, 34.65271856791526], [-77.3390433477636, 34.652491094533076], [-77.33916263969257, 34.65230707528525], [-77.33931984290287, 34.652081952041186], [-77.33961199430613, 34.65177503267985], [-77.33967709159982, 34.651680609042], [-77.33973480605167, 34.65168264916856], [-77.33975621585304, 34.651755239826066], [-77.33995230672724, 34.65240018344228], [-77.33997470469006, 34.652569247091606], [-77.34030772798808, 34.652844696386595], [-77.34054952844664, 34.65283540812095], [-77.3406735134771, 34.652895336759386], [-77.34082696380703, 34.652964919141176], [-77.34090944354637, 34.653033115803346], [-77.34118104984313, 34.6532476751355], [-77.34119649343123, 34.653381511799566], [-77.34129709721874, 34.653368822760974], [-77.34159231041104, 34.65361322601527], [-77.34163344310038, 34.65366464088312], [-77.34167777541964, 34.6536698088833], [-77.34177108716145, 34.6537029045822]], [[-77.38254882619111, 34.51338846774948], [-77.38253641608722, 34.51338906451778], [-77.38219352363397, 34.513174731333685], [-77.38198834430746, 34.513131475068015], [-77.38175670972916, 34.513160667686996], [-77.38099154263624, 34.513620799289825], [-77.38102253997457, 34.513654944999566], [-77.38120267915241, 34.513925194213314], [-77.38136742384927, 34.51382273864501], [-77.38174670627384, 34.51360259884162], [-77.38191386421627, 34.51359191473626], [-77.3821395341266, 34.51358542566963], [-77.38252462351471, 34.51340679918919], [-77.38253614846316, 34.51340089247081], [-77.38253903181393, 34.51339939205186], [-77.38254448162654, 34.513396828346416]], [[-77.42900494444069, 34.49817962187577], [-77.42821178480138, 34.49828435740937], [-77.42799106409302, 34.49840659866314], [-77.42785220250934, 34.49845867807867], [-77.42741832986746, 34.49849280464614], [-77.42688050962275, 34.49850607439645], [-77.42650343260576, 34.49845087450173], [-77.4260275714669, 34.49864412307193], [-77.42569041116768, 34.498841139081854], [-77.42535480966707, 34.49917611678906], [-77.42491394606887, 34.49926279611607], [-77.42434389232868, 34.49937487588728], [-77.42405294683141, 34.49934014493151], [-77.42349825423184, 34.49955794284692], [-77.42291247778681, 34.499836108385686], [-77.4228791143616, 34.499851116978995], [-77.42285068798296, 34.49986902702789], [-77.42184642154119, 34.50045718649469], [-77.42175502559884, 34.50049297768249], [-77.42171219553722, 34.500631536702194], [-77.42127029980392, 34.501103292128825], [-77.42149185938166, 34.50131933470226], [-77.42144992286786, 34.50145024414242], [-77.42162461655741, 34.50161792696824], [-77.42132857587569, 34.50192025228651], [-77.42150551211469, 34.502220187723736], [-77.42202965324923, 34.502108360479845], [-77.42237029134202, 34.50198043708967], [-77.42313780210449, 34.50202556533639], [-77.42343994244595, 34.50202736614128], [-77.42363690707683, 34.502002017875064], [-77.42379844336011, 34.50190799267131], [-77.42431716164093, 34.50173854274991], [-77.4245139010587, 34.501606764016486], [-77.4246547767875, 34.501544440728075], [-77.42493509319031, 34.50144476983547], [-77.42523842906081, 34.50130599199676], [-77.42540828845966, 34.50108063761007], [-77.42581687111917, 34.50086840233469], [-77.42631653323163, 34.50068550046819], [-77.42672914219966, 34.50053440370455], [-77.42706457889128, 34.50050595911406], [-77.42762269223417, 34.50037460665347], [-77.42824350297705, 34.500142725269406], [-77.42830682960928, 34.50012356326697], [-77.42831728190349, 34.50011809207081], [-77.4283287876002, 34.50011268654054], [-77.42834897014139, 34.50008765889027], [-77.42920517084261, 34.49948187540548], [-77.42933403724652, 34.49942402793547], [-77.42941974618681, 34.49926759668743], [-77.4295267623917, 34.49916051905234], [-77.42967997561837, 34.49899803694201], [-77.4299809653713, 34.49884592665107], [-77.42912987687154, 34.49820611863881]], [[-77.25833217685373, 34.58196851445831], [-77.25800916789014, 34.58198318152925], [-77.2578050592959, 34.582103487775406], [-77.2578157617621, 34.58216191143691], [-77.2574719752861, 34.58254861403955], [-77.25760042016668, 34.582791092055764], [-77.25758277574135, 34.58298397764418], [-77.25756712773823, 34.58302744524593], [-77.2575466583614, 34.58307651690344], [-77.25743334590891, 34.58312131807933], [-77.25703505638614, 34.58318908956979], [-77.25625255573117, 34.58324002375698], [-77.25563739021004, 34.58371248087857], [-77.2555321264608, 34.583809947916144], [-77.25551344538462, 34.58389718090524], [-77.2552417095168, 34.58412068250689], [-77.25431982639513, 34.58465719320477], [-77.25445121664126, 34.58489146015429], [-77.25431889388933, 34.58512846530026], [-77.25418762193684, 34.585347067998654], [-77.25391570380323, 34.58556806568424], [-77.25380740956177, 34.585666176844356], [-77.25382117018229, 34.5858621835194], [-77.25393775109754, 34.58604114517823], [-77.25404167836847, 34.58614701793742], [-77.254156973422, 34.586264469912265], [-77.2541735388659, 34.586281345203574], [-77.25441457685552, 34.586206239179106], [-77.25446488207731, 34.58617225349014], [-77.2545260881761, 34.58608746478616], [-77.25461860080935, 34.58605906353044], [-77.25470985953899, 34.58600484418772], [-77.25473477173001, 34.5859860576906], [-77.25480801693013, 34.58589889500111], [-77.2548344655658, 34.585876070149084], [-77.25491564155118, 34.58581976561684], [-77.2546065857496, 34.58562245841362], [-77.25508141409435, 34.58548477816185], [-77.25539435986597, 34.58548509384309], [-77.25543366438825, 34.58545189721362], [-77.25556013108351, 34.585253287907676], [-77.25558335991306, 34.585228009593514], [-77.25569670716814, 34.585159886637726], [-77.25581675796954, 34.58482425829279], [-77.25615203731186, 34.58482069557775], [-77.25617175718922, 34.58480298381083], [-77.2562029191077, 34.5847866259153], [-77.25633978963023, 34.5846321865111], [-77.25644692264798, 34.58465441397604], [-77.25653694289936, 34.58459605754361], [-77.25661550917012, 34.584548784151266], [-77.25663744027446, 34.58453205907089], [-77.25666459805896, 34.584488269906934], [-77.25676864900205, 34.58443507945138], [-77.256817509486, 34.584399812235056], [-77.25683658611659, 34.58438397158481], [-77.25688938472335, 34.584345860585586], [-77.25697221275014, 34.584276811163036], [-77.25701968876257, 34.584250999880226], [-77.25710128188187, 34.58417465824762], [-77.25710012313691, 34.58416904331363], [-77.2571209880185, 34.584155235681685], [-77.25719610944769, 34.5840792769623], [-77.25724674406547, 34.58402833379234], [-77.25720567779737, 34.5839416801902], [-77.2575075723594, 34.58380770021738], [-77.25757428381506, 34.583758364597934], [-77.25760503854899, 34.58373744137094], [-77.25774247057262, 34.583658988300265], [-77.25777014595714, 34.583632600589894], [-77.25779445140284, 34.58362555328871], [-77.2578162704285, 34.5836141019107], [-77.25793000414251, 34.58352734643549], [-77.25798319374533, 34.58346479125862], [-77.25814525250752, 34.58338040749676], [-77.25823851653075, 34.583315955870034], [-77.25833278223908, 34.58325421760384], [-77.25839609951923, 34.58321052225342], [-77.25840915008261, 34.58318638088374], [-77.25849027971802, 34.58310009864701], [-77.25862578356478, 34.58305042725327], [-77.25880090776592, 34.582895201150954], [-77.25880563102754, 34.582889245407735], [-77.25880727389287, 34.58288321658405], [-77.25882191791787, 34.58287604072147], [-77.25904827350833, 34.58267266953526], [-77.25909243298548, 34.58247957935305], [-77.25913011910758, 34.582443439957046], [-77.2592234288364, 34.58236955559302], [-77.25887994106085, 34.58218808171271], [-77.25901610761625, 34.58207978956548], [-77.25891795633473, 34.581853092921676]], [[-77.43781870483008, 34.58329862901395], [-77.4379473192555, 34.58350093226712], [-77.43812259380967, 34.58377663139818], [-77.43819452688967, 34.583889777368924], [-77.43827453935663, 34.58401563216441], [-77.43840216001426, 34.5842163703212], [-77.43844258756083, 34.5842349435101], [-77.43879615948413, 34.58414749692974], [-77.4390789194219, 34.58406661092801], [-77.43919013868641, 34.584034795511904], [-77.43981877544488, 34.58390774531707], [-77.4399781205133, 34.58386820906311], [-77.4401169959933, 34.58403634034674], [-77.44031787625491, 34.58437314801971], [-77.44058325213584, 34.584818095921015], [-77.44062888834125, 34.584959979250826], [-77.44076159291038, 34.5856356671101], [-77.44024870834016, 34.585424863301725], [-77.43997888444287, 34.58554226850828], [-77.43977298738318, 34.585359879165935], [-77.43966861178288, 34.58528458917351], [-77.43958470776843, 34.585231036625956], [-77.4395329682472, 34.585182294501266], [-77.43947861830831, 34.58509210720854], [-77.43931076063942, 34.58500213328452], [-77.43935825415541, 34.58481448439679], [-77.43919028605399, 34.58436477886687], [-77.43898426044358, 34.58482712357241], [-77.43876597829353, 34.584689105021624], [-77.43872796746346, 34.5846618221127], [-77.43857608701407, 34.58449650088403], [-77.43851570191171, 34.58448022211917], [-77.43840219890639, 34.584305355014266], [-77.43837313807487, 34.58431986373871], [-77.43823831145566, 34.58430803977417], [-77.4382051808713, 34.58429880956042], [-77.43818692234261, 34.58412276659258], [-77.43800802688051, 34.583977747982175], [-77.4379817491111, 34.58394885042748], [-77.43761385590298, 34.58364531342886], [-77.43758109904921, 34.58358916407173], [-77.43721983025911, 34.58364959831905], [-77.43720009445056, 34.583630246192975], [-77.43717426567191, 34.58361272325083], [-77.43702275434491, 34.58350164224841], [-77.43698218835681, 34.583471901126366], [-77.43682567008426, 34.583332006855024], [-77.43666977891999, 34.58326108025416], [-77.43670268279881, 34.58296409173572], [-77.4361901090607, 34.58307028332943], [-77.43603758615743, 34.58325436415734], [-77.43560207953101, 34.58337071518938], [-77.43554551846118, 34.583848236963355], [-77.43525006600778, 34.584586763861374], [-77.43449627068281, 34.5839999449462], [-77.4344876615221, 34.583973280962645], [-77.43446172142428, 34.58386908107201], [-77.4344049263104, 34.5832248977567], [-77.43437980445117, 34.58316759961903], [-77.43406730130444, 34.58285221906155], [-77.43403337652117, 34.58282964164161], [-77.4340183887092, 34.58274259950174], [-77.43416149325179, 34.582672997288284], [-77.43446117255162, 34.58245841547545], [-77.43457327754673, 34.58241126419536], [-77.43467434535039, 34.58227582882364], [-77.43487192700111, 34.58184096104378], [-77.43487636612907, 34.581798933961316], [-77.43498073229343, 34.58138234416211], [-77.43482579270679, 34.58101122615733], [-77.43481477351597, 34.58098174812431], [-77.43479014518508, 34.580915863922975], [-77.43485459326197, 34.58092631919856], [-77.4348989485945, 34.58092177761991], [-77.43524862130462, 34.58095889925237], [-77.43567429033831, 34.58082329602531], [-77.43638195270776, 34.581179732107], [-77.43660318990959, 34.58138661132689], [-77.43682500446988, 34.58173553338459], [-77.43695851360435, 34.58194554772763], [-77.43721093968911, 34.58234262193015], [-77.4374529116942, 34.582723241314966], [-77.43751482200923, 34.582820626329934], [-77.43761357012784, 34.582975955007385]], [[-77.4383903230447, 34.740843813892354], [-77.43837684316391, 34.74071457875888], [-77.43836530977464, 34.740655373633246], [-77.43840635722651, 34.740445374627285], [-77.4384104219665, 34.740413349987605], [-77.43842963240841, 34.740313748690106], [-77.43844438392144, 34.740184448292986], [-77.43844477423117, 34.74017928108177], [-77.43844524531852, 34.74017561873616], [-77.43846593197128, 34.74008896386812], [-77.43843748053993, 34.73989721684539], [-77.4384957376815, 34.73989449310916], [-77.43851962167857, 34.73990342963488], [-77.4386087497543, 34.739817297782736], [-77.43860399253626, 34.73969747574647], [-77.4386278964718, 34.739684229481256], [-77.43862588662992, 34.73965384796533], [-77.43859833294084, 34.73963142735726], [-77.43854566435769, 34.73960220734299], [-77.43846941161966, 34.73962885720699], [-77.4383279639996, 34.73962046541572], [-77.43826464218361, 34.73967666594258], [-77.43817251361611, 34.73974039761973], [-77.43814982052905, 34.73979671221542], [-77.43813582827511, 34.73985830347143], [-77.43806316363315, 34.74004595175969], [-77.43796877883463, 34.74015530148285], [-77.43793402759351, 34.740280349605364], [-77.43784146336453, 34.74032118987286], [-77.43777303037507, 34.7404560676964], [-77.43777537881348, 34.74050443629035], [-77.43784476556911, 34.740573657898025], [-77.43792705713703, 34.7406150103175], [-77.43798083763646, 34.74065738568311], [-77.43820054818349, 34.740724112391256]], [[-77.22941912915736, 34.59683495475752], [-77.22941579738459, 34.596831481657766], [-77.22940016173958, 34.59683345784202], [-77.22893895327212, 34.59706914466365], [-77.22870216055925, 34.59746835519225], [-77.22876078511575, 34.59772571557705], [-77.22879915900357, 34.598049129831], [-77.22874842043535, 34.59818577860524], [-77.22879408170598, 34.59819970301536], [-77.22885311413401, 34.59830772448151], [-77.22830031086848, 34.59863208985038], [-77.22917490391698, 34.598972282058114], [-77.2294845756984, 34.598869579938366], [-77.23000790549082, 34.5989925307133], [-77.23041026837681, 34.598798602325495], [-77.2306427178487, 34.59858510006263], [-77.23083540398416, 34.59836079012922], [-77.23093498548383, 34.59818767963143], [-77.2309290317086, 34.59810462643412], [-77.23078854876431, 34.59788573519664], [-77.23063536293446, 34.59775348856646], [-77.23057875487117, 34.59750095159125], [-77.23048893772679, 34.59739073543547], [-77.23012977542815, 34.59708672386417], [-77.22939400891362, 34.59720950079052]], [[-77.43120090452216, 34.50085853909677], [-77.43108579703967, 34.50086965018063], [-77.43074231444277, 34.50091138959156], [-77.43057945424871, 34.50092060845379], [-77.43060765502696, 34.501151810069096], [-77.43061755157888, 34.501236196701115], [-77.43061967727304, 34.501250373962584], [-77.43065378590413, 34.50125380868481], [-77.43070841490825, 34.5012474289431], [-77.43121711132915, 34.50123054608718], [-77.43126373665322, 34.50108859706034], [-77.4312947441947, 34.50097121022051], [-77.43131197623893, 34.5009404527302]], [[-77.45084657004259, 34.47898616498673], [-77.45080494257809, 34.47896889379946], [-77.45075352958361, 34.47899185745317], [-77.45016868416003, 34.47925079567786], [-77.4497523039908, 34.479514983477344], [-77.44968996170718, 34.47958431899598], [-77.45112315116415, 34.480133318549655], [-77.4514848818456, 34.479675645719894], [-77.45169021353468, 34.479396155432745], [-77.45178773456348, 34.47923435189524]], [[-77.4375865450095, 34.49682955171765], [-77.43814714360062, 34.49670792808856], [-77.43827015377879, 34.49663782047956], [-77.43832875704184, 34.49656949253689], [-77.4386397485757, 34.4962795186274], [-77.4386730109926, 34.49624927130742], [-77.43864316139661, 34.49622499195788], [-77.43864389439429, 34.49591001959192], [-77.43784992415956, 34.495619930700855], [-77.43693867774631, 34.49582310776311], [-77.4367038922767, 34.495876593115874], [-77.43658468555941, 34.49591784444056], [-77.43623338101392, 34.495970616422724], [-77.43530343510488, 34.49615715739802], [-77.43481078821685, 34.49614471847186], [-77.43455826628549, 34.4963772765761], [-77.43413120636166, 34.496408539816926], [-77.43403788098834, 34.496453961297505], [-77.43326681738236, 34.49658252558262], [-77.43290882610307, 34.49725056038875], [-77.43259546254613, 34.49744447413155], [-77.43238745708183, 34.497617627651586], [-77.43280630234509, 34.49776026100044], [-77.43307964900359, 34.49787600558339], [-77.43342417342382, 34.49784727437343], [-77.43446010148044, 34.49799977856732], [-77.43505103535844, 34.49775347332759], [-77.43544103298522, 34.49763929534056], [-77.43566842024079, 34.497493361822016], [-77.43661184710353, 34.497157514313216], [-77.43672403430672, 34.4970746218378], [-77.43686988759859, 34.49696190832504]], [[-77.392797964614, 34.50852185255509], [-77.39206186906483, 34.50863782511237], [-77.39132322108694, 34.50873279957292], [-77.39129350286034, 34.5091966112903], [-77.39157568075683, 34.50944785153089], [-77.39143323793766, 34.50977961333878], [-77.39135532907784, 34.510167027378905], [-77.39133367562071, 34.510227830093385], [-77.39123302192067, 34.510592225482554], [-77.3911636063819, 34.510641749707254], [-77.39114416673364, 34.510687167691025], [-77.391205229695, 34.51069426182347], [-77.3912309275756, 34.510685209904814], [-77.39127782402886, 34.510697308862866], [-77.39201115430443, 34.51089037659268], [-77.39220928125081, 34.510899389475455], [-77.3926684032678, 34.51087707311659], [-77.39279689238066, 34.51085079875686], [-77.39292375142175, 34.51084100657331], [-77.39335436339996, 34.510714090192636], [-77.39358540922727, 34.510687643025676], [-77.39369799392637, 34.510632914444514], [-77.39378331054291, 34.51061250359337], [-77.3939730629366, 34.51052373973138], [-77.39397641627758, 34.51052002061047], [-77.39398170127845, 34.51051558644195], [-77.3940045289562, 34.510505102871086], [-77.39437962173692, 34.5102710352847], [-77.39458782148631, 34.51032076938337], [-77.39479947035049, 34.51015962515281], [-77.3949299177119, 34.50980401050711], [-77.39506164379368, 34.50963211338403], [-77.39497350220829, 34.50951509128521], [-77.39481187093611, 34.50892765223408], [-77.39399422215114, 34.50880684053356], [-77.39363079197497, 34.50867023731463]], [[-77.45414201993586, 34.680049145000815], [-77.45410644570612, 34.679915506998164], [-77.45409761625507, 34.679877169178894], [-77.45406483536505, 34.67983243757876], [-77.45395542761626, 34.67954843275784], [-77.4539380547859, 34.67920680678461], [-77.45391878340985, 34.679189613656305], [-77.45392127796944, 34.679162891274764], [-77.45397923673373, 34.679156486295774], [-77.45401137580947, 34.67919438309857], [-77.45418697598393, 34.67948243504658], [-77.45441524464253, 34.679538182917206], [-77.45450051083867, 34.679675032430296], [-77.45454663574897, 34.679749185633106], [-77.45456360891306, 34.67981412632391], [-77.45469167013036, 34.679918569661424], [-77.45477490434165, 34.680013173998795], [-77.4548052115297, 34.680044747580105], [-77.45488642709714, 34.68011960069752], [-77.45477392169751, 34.68021859763704], [-77.45454450581684, 34.680294700506906], [-77.45428508560921, 34.68035479290325], [-77.45417579953137, 34.68022414884541], [-77.45416684912878, 34.680177778309414]], [[-77.30151833120078, 34.55403730851118], [-77.3011380248252, 34.55425237838926], [-77.30127813807889, 34.55446622137373], [-77.301314064096, 34.554580435824406], [-77.30142513090591, 34.55468993549489], [-77.30128900558103, 34.554822846265964], [-77.30129511671426, 34.55483601674594], [-77.30130327064677, 34.5548318092859], [-77.30131237482829, 34.55483423023628], [-77.30138822234628, 34.55481763484232], [-77.30150117518946, 34.55476490679849], [-77.30150967428933, 34.5546818824628], [-77.30157475484525, 34.55466846522534], [-77.30168785645, 34.55452022184889], [-77.3021697021557, 34.55433828464776], [-77.30193360796103, 34.55411214942524]], [[-77.41114475034965, 34.671218272381466], [-77.41097411085455, 34.67120341430478], [-77.41086071996935, 34.67116215153952], [-77.41067584294008, 34.67112710020923], [-77.41022093084003, 34.67076804582452], [-77.41076508009556, 34.67081889971102], [-77.41098329280432, 34.670839292075264], [-77.41107104790558, 34.67086861613893], [-77.41112900516278, 34.67085290907022], [-77.4112036396111, 34.67083242296118], [-77.41143318914645, 34.67072431878211], [-77.4115375202088, 34.670773078251855], [-77.41196923464514, 34.67082080705194], [-77.41203078038838, 34.67083188529701], [-77.41205724389854, 34.67029249103288], [-77.41213337092867, 34.67025158406908], [-77.41223633269232, 34.67016332359076], [-77.41230583091394, 34.67015965221829], [-77.41231748198683, 34.67010401046551], [-77.41242391550082, 34.670068671868236], [-77.41246841116426, 34.67005155811201], [-77.4125192823065, 34.670034856694706], [-77.41251662810578, 34.669976348009286], [-77.41256941927755, 34.66991262437998], [-77.41266715700411, 34.66978177007155], [-77.41287074886216, 34.67001808180417], [-77.41275235326736, 34.67010116553619], [-77.41273488409828, 34.67011342447485], [-77.4126102901139, 34.67020648599957], [-77.412579042469, 34.67023254223674], [-77.41251468691601, 34.67030840778636], [-77.41244614955552, 34.670389203164405], [-77.41242038075785, 34.6704195806238], [-77.4123132563974, 34.6705458639021], [-77.41207052454388, 34.67083200522312], [-77.41205466191826, 34.67085070472358], [-77.41204746807543, 34.67085918512677], [-77.4120283342985, 34.67088174050331], [-77.41178167811239, 34.67117250575781], [-77.41166631632643, 34.67127391024918], [-77.41159328838086, 34.67127784371179], [-77.4113686641548, 34.671244979973295], [-77.41128594386556, 34.671232877546004]], [[-77.38756259292033, 34.62431409514445], [-77.38756531494562, 34.62430764277782], [-77.38772981846081, 34.624045477999104], [-77.38780230759482, 34.62402728629488], [-77.3878249838084, 34.62413426349079], [-77.38785479637765, 34.62427490834089], [-77.3877624194566, 34.624380388047115], [-77.38771299954371, 34.624454418445566], [-77.38764301458285, 34.62451771741262], [-77.38756527470635, 34.624588030407814], [-77.38737661657774, 34.62455611467491], [-77.38744669424513, 34.624461455431685], [-77.38756081132452, 34.624317282438696]], [[-77.42441762561376, 34.52754459645645], [-77.42442153706156, 34.52780469654398], [-77.42419784695196, 34.5279485305967], [-77.42417483914082, 34.5282116303782], [-77.42418640112177, 34.52843987254097], [-77.4244049301043, 34.528520264198704], [-77.42448226288525, 34.52882728301121], [-77.42447937589509, 34.52888720662214], [-77.42446790832831, 34.52895555510424], [-77.4245734691705, 34.5290165436118], [-77.42476799335925, 34.52933516930195], [-77.4250097555902, 34.52951092908516], [-77.42514814016263, 34.52964739583987], [-77.42519039091071, 34.529763791743996], [-77.42523026764769, 34.52982682505207], [-77.42520620783831, 34.52992388083009], [-77.42502180853786, 34.530033007609376], [-77.4249901774301, 34.53006717282531], [-77.42483443187417, 34.53012683453029], [-77.42454855601393, 34.53014302131446], [-77.42414566191553, 34.5301658318659], [-77.42313710447621, 34.530159764922466], [-77.42297848711029, 34.53014512151589], [-77.42291187728466, 34.53013486761327], [-77.42285857096469, 34.530100880801406], [-77.42280844178302, 34.530000049915934], [-77.42266834458081, 34.52935340291853], [-77.42251548110687, 34.52917110133023], [-77.42243152698151, 34.528823795757376], [-77.42235202502445, 34.52862710723736], [-77.42237238754848, 34.528212413121196], [-77.42230623587572, 34.528178796665856], [-77.42232061221732, 34.52777680516503], [-77.422310944918, 34.527731608690004], [-77.42227944479373, 34.52771608756099], [-77.42230375507313, 34.52752034046627], [-77.42230213492178, 34.527488039141545], [-77.42235085633345, 34.527420458165864], [-77.42241397821579, 34.52732563394833], [-77.42258812999636, 34.527201855244], [-77.42265249461656, 34.52714085789498], [-77.42284179323443, 34.527036997553026], [-77.42305043388652, 34.526894757495995], [-77.42345455099549, 34.52658692182718], [-77.42366296592589, 34.52644298016405], [-77.42374515633527, 34.526300068597074], [-77.42385419389183, 34.526046022341475], [-77.42421657441747, 34.52623191825617], [-77.42423514340013, 34.52623383892502], [-77.42419548188592, 34.52645349550996], [-77.42417032901128, 34.52648344739943], [-77.42421059502522, 34.52670910972329], [-77.4242125243686, 34.52673400422403], [-77.42414605979836, 34.526976642645735], [-77.42413943193223, 34.52727242294422], [-77.42422251055567, 34.527455277796484]], [[-77.2403183909576, 34.601933518788336], [-77.2403067731128, 34.601942942218365], [-77.23969899529864, 34.60235930266478], [-77.23957701824574, 34.60258883143521], [-77.23922867562165, 34.60308116573646], [-77.23975474114334, 34.60305831720733], [-77.24000861524317, 34.60315667037056], [-77.240216364559, 34.60315754994233], [-77.2402980290318, 34.6030483611394], [-77.24024435001613, 34.60287364061778], [-77.24017789091255, 34.60272593826534], [-77.24033335765634, 34.602409305146836], [-77.24032633754483, 34.60194058754214], [-77.24032737272962, 34.60193523302069]], [[-77.30116797488728, 34.55923614960457], [-77.30085216203992, 34.55942346446611], [-77.3013851028507, 34.55968769612532], [-77.30157799627145, 34.55943587267878], [-77.30155185510964, 34.559323069365774], [-77.30139592424379, 34.559228739896824]], [[-77.30792728053983, 34.548652834816515], [-77.30780971006398, 34.54863263550635], [-77.30788915893957, 34.54859663750701], [-77.30792842865986, 34.54860398778254], [-77.30864984737364, 34.54797337288488], [-77.30919823295503, 34.547655438721634], [-77.30923937884596, 34.54826052937229], [-77.30819996521298, 34.54857661068935]], [[-77.39995205416227, 34.58152487565597], [-77.40018094601739, 34.58170592271366], [-77.40019840622253, 34.581717157486594], [-77.4002280941863, 34.58173168789164], [-77.40043797891266, 34.581849012837566], [-77.4005749666859, 34.58197447437691], [-77.40069909737639, 34.58195454337474], [-77.4009689937767, 34.581949665424496], [-77.40113070744194, 34.58177569023309], [-77.40120616054405, 34.581759576227945], [-77.40136302209288, 34.5817499484288], [-77.40153964448646, 34.58173274579634], [-77.40170529168658, 34.581518525554685], [-77.40173660327049, 34.58149197628291], [-77.40212903904002, 34.58103279924656], [-77.40170462120338, 34.580725968690444], [-77.40167632364091, 34.58067355569665], [-77.40150914446357, 34.58054023940135], [-77.40136303461733, 34.58041568026265], [-77.40130315538443, 34.580367354755154], [-77.40120487088633, 34.58031701473497], [-77.40096901976929, 34.58011187199102], [-77.40085803091714, 34.58006208748901], [-77.40077201143686, 34.58007409637184], [-77.40059643626404, 34.580003333643916], [-77.40057500401015, 34.57999881565206], [-77.40053446557914, 34.580032863037005], [-77.40037799191909, 34.58015168037623], [-77.40030813318698, 34.58015885216853], [-77.40018098092345, 34.58022963175155], [-77.39986324202519, 34.580428409890835], [-77.39978695675288, 34.58042084083459], [-77.39973564936335, 34.58047373769072], [-77.39970564100454, 34.58053335203984], [-77.39964963000315, 34.580689399357674], [-77.39965349061919, 34.581390024847956], [-77.3997869251106, 34.58153733290659]], [[-77.35789135665274, 34.53653583742108], [-77.357596510285, 34.53702622740834], [-77.35758379379247, 34.537118105587474], [-77.35765893951447, 34.53722075113962], [-77.35777352388646, 34.537457259022204], [-77.35786208848828, 34.53751934841644], [-77.35804296583595, 34.5375931012334], [-77.35820137496609, 34.53747049327751], [-77.35829614528836, 34.537366687010994], [-77.35844152468093, 34.53733110761522], [-77.35860141961413, 34.53731341962915], [-77.35883606212309, 34.53724461294716], [-77.3590008710067, 34.53725246914343], [-77.3590459101131, 34.5372347921468], [-77.35907991292072, 34.53719264541472], [-77.35916452148415, 34.53708697691782], [-77.35919076735333, 34.53705691083106], [-77.35921929242558, 34.536966465611485], [-77.35921743746553, 34.53695694483681], [-77.35923621497051, 34.53691280884169], [-77.35926433823087, 34.536844340861606], [-77.35926404943584, 34.53682782047283], [-77.35931094451375, 34.53677640836989], [-77.35937896643452, 34.53665175002334], [-77.35944031534132, 34.53657107890481], [-77.35944775435593, 34.53656103802744], [-77.35945715813348, 34.53655518767377], [-77.35945356062595, 34.536547777708], [-77.35944214741889, 34.53649104957084], [-77.35943474214652, 34.53644133199967], [-77.35943343198672, 34.536429883501164], [-77.35938293045822, 34.53632105277912], [-77.35934407648594, 34.53626857643659], [-77.35933128058811, 34.536083666719904], [-77.35948128605823, 34.535956429649644], [-77.35948527364386, 34.53593907866325], [-77.3594963252615, 34.53591196557695], [-77.35950437457731, 34.53581391592894], [-77.3595126352271, 34.53572331450618], [-77.35960638883016, 34.535587282656294], [-77.35956455132504, 34.53556042577413], [-77.35958090202197, 34.535508164093095], [-77.35966116786645, 34.53549743443589], [-77.35972881998542, 34.5353317737027], [-77.35974872158238, 34.535289079286414], [-77.35977541695124, 34.53510607863669], [-77.35983837144425, 34.53503134444739], [-77.35996296612156, 34.53494897383149], [-77.36000617778474, 34.534884766190835], [-77.36003392313958, 34.53485931803145], [-77.36006994227861, 34.53478840867773], [-77.36008507746274, 34.53476002589068], [-77.36009021190047, 34.53475025196896], [-77.36009374216188, 34.53473565290871], [-77.36014030779474, 34.53462062527281], [-77.36015839634375, 34.5345473347639], [-77.36017616616415, 34.534493048882986], [-77.3602281639983, 34.534392529969054], [-77.36022826664922, 34.53433296569231], [-77.36027779353236, 34.534282408886966], [-77.36029658852424, 34.53423088190068], [-77.36032397563184, 34.53413117031576], [-77.3603641270382, 34.53404823959154], [-77.36028607172014, 34.533987572014055], [-77.360225555097, 34.533834907585856], [-77.36026521480846, 34.533745751441145], [-77.36023648771715, 34.53366209182558], [-77.36026265618361, 34.533356223312744], [-77.36022965803723, 34.53326122339146], [-77.36025615019145, 34.53316445076886], [-77.36023164218818, 34.53284439253129], [-77.36029222966948, 34.53276256315964], [-77.36058795189325, 34.53252104428523], [-77.36091430697424, 34.5321972908133], [-77.36093047223642, 34.53219098625348], [-77.36093418761446, 34.53218045874235], [-77.36101090601352, 34.532110399623676], [-77.36110235477526, 34.532026260226864], [-77.36122411417882, 34.53189387701222], [-77.36125045017221, 34.53184995878307], [-77.36131699003099, 34.53175347398417], [-77.36137172120873, 34.53166060435928], [-77.36135795676451, 34.5316297752728], [-77.36143959869219, 34.53154452476684], [-77.36134712248955, 34.53140026630836], [-77.36133494852692, 34.5313882644928], [-77.36133167338876, 34.53138483687015], [-77.36098318674071, 34.53119410324505], [-77.36097030374994, 34.53117561079293], [-77.36093880432831, 34.531126458348446], [-77.36065983146548, 34.53092785873593], [-77.36032721932459, 34.53079892904634], [-77.360163165635, 34.530715055152], [-77.36008614185532, 34.530833649347066], [-77.35999440303073, 34.531238725490866], [-77.35994593003775, 34.5313434907268], [-77.359827753029, 34.53155768105131], [-77.35961248361492, 34.5318811606272], [-77.35964475877992, 34.53206205482796], [-77.35947654246453, 34.53239038420809], [-77.35932982765131, 34.53290007803866], [-77.35933030150395, 34.532901095320774], [-77.35932959693639, 34.532902168250715], [-77.35932802059772, 34.53290298722039], [-77.35882447345162, 34.53346358592563], [-77.35865688035014, 34.53356828260963], [-77.35852430338142, 34.53371702591267], [-77.35800418469692, 34.53390343787361], [-77.3576566231088, 34.53407500331908], [-77.35763074006503, 34.53418608712983], [-77.35741824393408, 34.53464537601481], [-77.35754993826892, 34.5350165783528], [-77.35758413528258, 34.535111136134816], [-77.35763062657675, 34.53515166897103], [-77.35770289271555, 34.53530255094485], [-77.35778844847488, 34.53551496864231], [-77.3578543590476, 34.53556187258815], [-77.3578857498401, 34.53592407343652], [-77.35799963364516, 34.53603060075544], [-77.35793996979561, 34.53619987357609]], [[-77.34580941861961, 34.57471093740942], [-77.34581036346587, 34.57471102077834], [-77.34581308062205, 34.57471164807975], [-77.34601819290467, 34.57488160595291], [-77.3462033399174, 34.57483214998077], [-77.3464547320427, 34.57489026965814], [-77.34659728376543, 34.574921306953094], [-77.34672331579131, 34.57486949359222], [-77.34699113049182, 34.57515760685864], [-77.34707928258531, 34.57528352233253], [-77.34710914569732, 34.57537430207782], [-77.34709956253668, 34.57549275763263], [-77.34699090009319, 34.575503826560016], [-77.34683507398826, 34.57558157611457], [-77.34659674182242, 34.57573001776215], [-77.34634043619927, 34.57563318651104], [-77.34620282870942, 34.57558957508625], [-77.34617156496353, 34.57554289441395], [-77.34613488977489, 34.57551444915254], [-77.34572205714882, 34.575243029813535], [-77.34559774688972, 34.575167168042974], [-77.34541522725024, 34.57498579491529], [-77.34528512781273, 34.57492781658729], [-77.34521825945002, 34.57493558062584], [-77.34502545596533, 34.574824940733265], [-77.34502358589324, 34.57482278436586], [-77.34502134021587, 34.574815247623725], [-77.34492618074569, 34.57462694743203], [-77.34502151919665, 34.574555660502], [-77.34519136152122, 34.574588804363586], [-77.34521176184367, 34.57459312482152], [-77.34521849121806, 34.57459824143785], [-77.34523043071997, 34.574596048082896], [-77.3454154658208, 34.57463734181519], [-77.34551038155473, 34.57465290360756]], [[-77.45161151309675, 34.609811662813954], [-77.45143179727569, 34.60985059906694], [-77.45148482207296, 34.60996657594899], [-77.45166910326614, 34.60993362986566]], [[-77.342287169533, 34.551106136977644], [-77.34242060788034, 34.551126891305124], [-77.34255376115512, 34.55114580590652], [-77.34271842134935, 34.55114658305553], [-77.34281276293875, 34.55114728293187], [-77.34286017721416, 34.55115534694886], [-77.34297154729424, 34.551145582229125], [-77.34300963690714, 34.551122976993646], [-77.34316682465713, 34.55111642615146], [-77.34320692164609, 34.55108086786586], [-77.34341939644227, 34.55099095775199], [-77.34369274269766, 34.5508204417131], [-77.343645762612, 34.550561042053886], [-77.34367904724569, 34.55033277363545], [-77.34349047955821, 34.5500319790546], [-77.34346378506964, 34.54987410230627], [-77.34339563956307, 34.549784881146074], [-77.34323691103877, 34.54978154665218], [-77.34277979229819, 34.54948285851151], [-77.34257035503143, 34.54944384321027], [-77.3424603303672, 34.54940657677132], [-77.34234513895527, 34.54937287782154], [-77.34217107637643, 34.54938981425687], [-77.34206493920716, 34.54952666038217], [-77.3419453324189, 34.54960289312784], [-77.3420267793308, 34.54981637373436], [-77.34197373815019, 34.54989518698975], [-77.34180106817976, 34.550113281279025], [-77.34188775808019, 34.550245501379976], [-77.34194608289178, 34.55039879385333], [-77.34177685712035, 34.550606400937184], [-77.34174910273035, 34.550674807854655], [-77.34183866970423, 34.55084232854626], [-77.3419295770353, 34.550893966188724], [-77.34203331459483, 34.55089599003445], [-77.34211970223397, 34.55099148154968], [-77.3422149937771, 34.55103301598971]], [[-77.32114010774286, 34.69803890040675], [-77.32096783089821, 34.69805754037562], [-77.3205519400366, 34.6980027205975], [-77.32014902739067, 34.69803390607915], [-77.32006872904806, 34.697960820886784], [-77.32046671569395, 34.69725715977839], [-77.32093820868434, 34.697292148517704], [-77.32140243307299, 34.697136678883204], [-77.3216214808343, 34.6970044272669], [-77.32182295002333, 34.69700581300425], [-77.32205036169654, 34.69696729027977], [-77.32227691503404, 34.69701127479112], [-77.32231676691744, 34.697020119974596], [-77.32232981790162, 34.69703567677347], [-77.32248006458727, 34.69722711794004], [-77.32246819069245, 34.69729775384191], [-77.32253295133722, 34.697366577928605], [-77.32261382558953, 34.6975798398349], [-77.32265575652652, 34.69769040632116], [-77.32272953187372, 34.69788494573003], [-77.32293311211879, 34.69804939974809], [-77.32298524035748, 34.69808237777936], [-77.3233879936866, 34.69854402569324], [-77.32340542522633, 34.69854740941132], [-77.32342664026194, 34.69855949314464], [-77.3234598872018, 34.698634991069966], [-77.32331555191465, 34.69879319594938], [-77.32335648825867, 34.69858504606643], [-77.32275554431212, 34.698660150652366], [-77.32274576144191, 34.698652803850564], [-77.3225005292056, 34.69845515865072], [-77.32225215903301, 34.69833235834737], [-77.32205828436093, 34.69825964890953], [-77.3220271026261, 34.698031073216946], [-77.32172642204168, 34.69808145344487], [-77.32142540502701, 34.69810749228493]], [[-77.31845718981631, 34.69802872360249], [-77.31794905480018, 34.69801457828369], [-77.31755769536684, 34.69800544459881], [-77.31738547641112, 34.697925172991965], [-77.3174901059991, 34.697579361352894], [-77.31758937660784, 34.69740987585501], [-77.31765848444522, 34.69732025218704], [-77.31779521718076, 34.69718865898932], [-77.31806809676071, 34.69713488112792], [-77.31844242588095, 34.69702179497865], [-77.31870589162736, 34.69697230722019], [-77.31875963344581, 34.69699715392499], [-77.31906117817947, 34.69695278072957], [-77.31910443140029, 34.69695862313046], [-77.31924588296677, 34.697017292706555], [-77.31934522646328, 34.69700537445535], [-77.31945830436345, 34.69700120212434], [-77.31952045769364, 34.69700317522878], [-77.31962724149378, 34.697064961067], [-77.31968740207687, 34.69707182901822], [-77.31993384026453, 34.69708866236495], [-77.32000141185084, 34.69722442364621], [-77.31989642061598, 34.69802831255078], [-77.31935063527027, 34.69801622480352], [-77.31925358450898, 34.69809662370441], [-77.31883656873823, 34.698120225536506], [-77.3187450530614, 34.698039924468624]], [[-77.43130943704313, 34.58372902414532], [-77.43101665110387, 34.58407839391242], [-77.4310603987633, 34.58422811843804], [-77.43102745308849, 34.584501422320116], [-77.43116967563306, 34.58463180576551], [-77.43130975525408, 34.584632953148315], [-77.43153375660927, 34.584669592545076], [-77.43170382666393, 34.584739765093936], [-77.43180442413427, 34.58470528536757], [-77.43209789049091, 34.58482286381752], [-77.43259078839375, 34.58427542787469], [-77.43244008573667, 34.583928129554316], [-77.43243117702549, 34.58387391157691], [-77.43209743791708, 34.58357105679947], [-77.43205231685087, 34.583552703491954], [-77.43137952285468, 34.58367689003583]], [[-77.34298474462963, 34.684180400166156], [-77.34269586734412, 34.68410150947088], [-77.34257682183407, 34.684010183789724], [-77.34234109808502, 34.68398034606604], [-77.34228399214749, 34.68398799242899], [-77.34215480024767, 34.68380691285766], [-77.3420956075493, 34.6837750928088], [-77.3420594844066, 34.68373057401758], [-77.34192267332267, 34.683726371367264], [-77.34173970479873, 34.68365480118841], [-77.34152932375216, 34.68349512119853], [-77.3414362502975, 34.68349415085878], [-77.34093505290619, 34.68348892508338], [-77.34093257106097, 34.683488937194895], [-77.34092953376951, 34.68348990790801], [-77.34030797364332, 34.683578609454585], [-77.3402827780612, 34.68357640566077], [-77.34038506859187, 34.68331319657311], [-77.34046602275674, 34.6830729913276], [-77.34076823787294, 34.68302241922693], [-77.34108401288063, 34.68296755725083], [-77.34111132483733, 34.68297534342211], [-77.34094917073799, 34.68347479751559], [-77.34163557186612, 34.68312932381205], [-77.34207311215529, 34.68333074494201], [-77.34209515568921, 34.683381282898054], [-77.34216806071542, 34.683356753467564], [-77.34227516989806, 34.68340060440674], [-77.34247451536123, 34.683483522686565], [-77.34270778228934, 34.68355928678017], [-77.34274613400058, 34.683668669086195], [-77.34305174136281, 34.68368382838326], [-77.343130501256, 34.68376705511899], [-77.34325139761373, 34.683748420760026], [-77.3433769250619, 34.68388289207748], [-77.3434399039977, 34.683923127035854], [-77.34350036323258, 34.68392163784188], [-77.34356626286458, 34.68397875312432], [-77.34359282457828, 34.68400253328666], [-77.34361646099981, 34.68403711832782], [-77.34366701537135, 34.68408677089206], [-77.3436262996448, 34.68417385494166], [-77.34367931448742, 34.68432655572385], [-77.34346969153346, 34.6842943672883], [-77.34339567819734, 34.684282080106776], [-77.34322027536615, 34.6842386792638], [-77.34311578391194, 34.684215349048266], [-77.34308856044365, 34.684193490069255]], [[-77.42478933833303, 34.51925625321415], [-77.42496452180748, 34.51988472338775], [-77.42486100885361, 34.52001765467142], [-77.42476479352777, 34.52036597630032], [-77.42446438895317, 34.520873969300844], [-77.42443028175961, 34.52105930344453], [-77.42460719439133, 34.521121620204035], [-77.42454228222982, 34.52140836584573], [-77.4242069177942, 34.52158128356382], [-77.42423297954852, 34.52175458606433], [-77.42369206523759, 34.52181526096479], [-77.42342709862703, 34.52136292756338], [-77.4233524636913, 34.52121512410448], [-77.42333349405376, 34.52112100917329], [-77.42317907009793, 34.521083555900546], [-77.42259076009768, 34.52071793954438], [-77.42240336446874, 34.520667177344336], [-77.42214334986731, 34.52041054157192], [-77.4221336725549, 34.52009836467772], [-77.42219654374833, 34.51977176456776], [-77.42291465994126, 34.51950640680869], [-77.42321481676007, 34.51946873782892], [-77.42375014382156, 34.51953375872177], [-77.42455697870642, 34.51922759438146]], [[-77.41300887128043, 34.66943946296349], [-77.41307028717816, 34.66924924249924], [-77.41318536345102, 34.66909837065098], [-77.41323314209535, 34.669058234302305], [-77.41323859031158, 34.66902858695273], [-77.413265485828, 34.668994358164156], [-77.413354724976, 34.66888307619602], [-77.41354962454534, 34.668857883288425], [-77.41356409024417, 34.668851523225754], [-77.41360290231607, 34.6688535659746], [-77.41387636710878, 34.66892463299791], [-77.41395503685744, 34.66899976482995], [-77.41382623421389, 34.669206727495194], [-77.41381217191586, 34.669229323200774], [-77.4138035258511, 34.66924321596244], [-77.41377412703491, 34.6692777964017], [-77.41353495520315, 34.66955197211834], [-77.41340236640957, 34.66964501736345], [-77.41321492880301, 34.66977655345934], [-77.41293142640752, 34.66997550137082], [-77.41281916684628, 34.66962693822542], [-77.41297641748099, 34.66949594781161]], [[-77.32400598054656, 34.69887372078595], [-77.32401683960528, 34.69912895740586], [-77.32384199819188, 34.69904168514742], [-77.32377906820845, 34.69904823733176], [-77.32352372106119, 34.69910680462238], [-77.32329698669845, 34.69906462791275], [-77.32359788583483, 34.69885170588544], [-77.32371799718307, 34.698863912562956], [-77.32388482281738, 34.69889438252342]], [[-77.454270614817, 34.68211458722051], [-77.45453949383577, 34.68200236202905], [-77.45464887173134, 34.68183430707893], [-77.45505114616057, 34.681630862386676], [-77.45517654790655, 34.68154832917679], [-77.45531880912452, 34.68150945381571], [-77.45579598311163, 34.68150892052644], [-77.45597129864757, 34.681737499712284], [-77.45610582779474, 34.681911582232686], [-77.45605070724648, 34.6822291717932], [-77.45599239252812, 34.68230387078853], [-77.45580490597389, 34.682575015301005], [-77.45536959127789, 34.68264520154662], [-77.45549607119456, 34.683059114632314], [-77.45537370038451, 34.68336539623036], [-77.45524898702934, 34.683721052710325], [-77.4549573778141, 34.68417229578865], [-77.45498124460653, 34.68362747772557], [-77.45473486632474, 34.68337701816929], [-77.45463957671541, 34.68305491787491], [-77.45459940668059, 34.68293502335378], [-77.45438595833919, 34.68262986326656], [-77.45415530472695, 34.68251355664981], [-77.45414756091624, 34.6825062074648], [-77.4541332010493, 34.68249257935779], [-77.4540459611404, 34.68233765364504], [-77.45404417575769, 34.68232616706742], [-77.45404483324923, 34.68231532964994], [-77.45420243951686, 34.68223727730265], [-77.45419799971383, 34.68219185619315]], [[-77.46619765479332, 34.476370167893016], [-77.46625512217207, 34.47638510147835], [-77.46627492615687, 34.47637409007864], [-77.46623903941274, 34.476326287760536]], [[-77.40179071168157, 34.51061933427988], [-77.40194278034073, 34.5109181341615], [-77.40210563131285, 34.51106353526323], [-77.40212246129954, 34.51111516225968], [-77.40232612055235, 34.51110455634469], [-77.40251797774692, 34.511003991903166], [-77.40283489066444, 34.51085536233978], [-77.40300202225585, 34.51044868917897], [-77.40299607577667, 34.51044527814009], [-77.40223216468122, 34.510085313376976]], [[-77.40897490858553, 34.56532087635143], [-77.40935114394345, 34.56543724451923], [-77.40958243272792, 34.56552124327357], [-77.40988706825888, 34.56563143984349], [-77.41003014331199, 34.56580033726641], [-77.41025666380298, 34.566028931300934], [-77.41085756905431, 34.5661862717638], [-77.41042302909501, 34.56667237237964], [-77.41031436220379, 34.567113873812964], [-77.41051586563898, 34.5674106028052], [-77.41066102660643, 34.56774356131953], [-77.4107598223546, 34.56789870972908], [-77.41042431757009, 34.56833696930026], [-77.41038940141112, 34.56833914816698], [-77.41003034576559, 34.56820392801012], [-77.40985230018515, 34.568221638467264], [-77.40963638806745, 34.568231725044555], [-77.40939521689171, 34.56826041402943], [-77.40924243511331, 34.56832618608453], [-77.40864920886341, 34.56820346608686], [-77.40853529960438, 34.568132834061956], [-77.4084544931367, 34.56801554951341], [-77.4082013889958, 34.56799534840722], [-77.40801449921982, 34.56792013355783], [-77.40794776790999, 34.567880162155454], [-77.40795787429289, 34.56776808041001], [-77.4079424659541, 34.56745634856375], [-77.4080097323064, 34.56707674414075], [-77.40807586136414, 34.566587930359944], [-77.4081169637475, 34.56621834768005], [-77.40845435725132, 34.56593303316731]], [[-77.34257872094578, 34.52748094703885], [-77.34277031596358, 34.52748376939897], [-77.3429272147181, 34.52745293223842], [-77.34296745899167, 34.52744541857907], [-77.34299322966694, 34.52743435552121], [-77.3430271470297, 34.52741356111757], [-77.3429969971616, 34.52740012790553], [-77.34301264701142, 34.527293237836055], [-77.3429721563021, 34.5272420170404], [-77.34290734213198, 34.527226627045], [-77.3427763506977, 34.52722248170422], [-77.34267696609614, 34.52728038082849], [-77.34263885550959, 34.52734701820222], [-77.3425743248574, 34.52747224121689], [-77.34257216061738, 34.52747775309539], [-77.34257034413457, 34.52747928491147], [-77.34257033185263, 34.527481641754584], [-77.34257412198124, 34.5274810243195]], [[-77.3353540436797, 34.6245076713779], [-77.33531080348544, 34.62431660990923], [-77.3353005148697, 34.624093022751424], [-77.33539830137519, 34.624008309857224], [-77.33563942612122, 34.623956223298094], [-77.33575689026554, 34.62396925787583], [-77.33603339968732, 34.623983254091875], [-77.33629105933234, 34.624059567344545], [-77.33636950029327, 34.62406309914753], [-77.33647337499143, 34.624067775857384], [-77.33669141028828, 34.62407228147792], [-77.33683096012342, 34.62413852643505], [-77.33715977578815, 34.624259847767256], [-77.33731320203944, 34.62433165543356], [-77.33736796716511, 34.62490324031163], [-77.33724487074849, 34.62509216030648], [-77.33722015815742, 34.625111282763264], [-77.336942803151, 34.62517346844914], [-77.33692283577844, 34.62522453831084], [-77.33688580154296, 34.625177926130945], [-77.33659660367563, 34.62519385860528], [-77.33652694203701, 34.62519069390973], [-77.33631257807963, 34.625164931383125], [-77.33624933046879, 34.6250584094506], [-77.33607563459036, 34.625030905592624], [-77.33584877821406, 34.624935279339624], [-77.3355192872728, 34.62461074474666], [-77.33545954643077, 34.62455798894787]], [[-77.23857129171228, 34.603730217325875], [-77.23868745469127, 34.60369362008075], [-77.23863688338639, 34.603600670435604], [-77.2385457556734, 34.6036824496847]], [[-77.38776648659649, 34.65990959482615], [-77.38787728110032, 34.65987835300672], [-77.38799831377662, 34.65986509959213], [-77.38819507239187, 34.659814029252345], [-77.3883961893466, 34.65990580653391], [-77.38812691031083, 34.66004923402565], [-77.38792873830867, 34.66005338880288], [-77.38782782526455, 34.660049006489736], [-77.38771058970288, 34.66008676185127], [-77.38769940817745, 34.66000170987992]], [[-77.39943346877706, 34.52989884126852], [-77.39890209478459, 34.5302974145755], [-77.39863656177596, 34.53042879731933], [-77.39833982300469, 34.530520646225355], [-77.3981516264658, 34.530542838358016], [-77.39810381533385, 34.53040589348858], [-77.39804206716047, 34.530257763095705], [-77.39825216322276, 34.53006700806048], [-77.3983464536189, 34.53002725040534], [-77.39864973932275, 34.52984119675166], [-77.39890883627449, 34.52964297732946], [-77.39921755675704, 34.529457562975594], [-77.39944470779353, 34.52939747340486], [-77.39985084840792, 34.52925563730851], [-77.39990992709582, 34.529498466711026], [-77.39971680065541, 34.52970030348407]], [[-77.45109544057314, 34.74203981081843], [-77.4512851475281, 34.74246455345174], [-77.4511034741827, 34.7426446161387], [-77.45135694041056, 34.74282354315859], [-77.45143074924444, 34.74292688851862], [-77.45164662101485, 34.74305473947542], [-77.45194574962103, 34.74336323971664], [-77.45197357000936, 34.74345907105108], [-77.45198618172944, 34.74351189162487], [-77.4521629710334, 34.74382646183915], [-77.4523787463882, 34.7440831487086], [-77.45246481242297, 34.74414692748203], [-77.45295670786736, 34.74430183515425], [-77.45307015330846, 34.74444943877231], [-77.45288491520333, 34.74455007476402], [-77.45245684464614, 34.74437757380811], [-77.45229962068241, 34.74435673755484], [-77.45213139334157, 34.744286073652766], [-77.4520137457369, 34.74423665570771], [-77.45185474970077, 34.74414201002769], [-77.45174207444116, 34.74406746529009], [-77.45149205894975, 34.74389832100038], [-77.45127466668791, 34.74375074181363], [-77.45124322501388, 34.743575258823725], [-77.45107358450991, 34.743614066578154], [-77.4508893294988, 34.74346511952721], [-77.45080120956726, 34.74337754806281], [-77.45072647483909, 34.743309866476956], [-77.45070963958472, 34.74320316917556], [-77.45067699816488, 34.743107298597884], [-77.45066247372822, 34.74304959524322], [-77.45067438219573, 34.74296227453941], [-77.45084772963493, 34.74255529762579], [-77.45092294695793, 34.74211179679912], [-77.45076295284954, 34.74196669012136], [-77.4504956304256, 34.74172618694278], [-77.45024588183763, 34.74150149176389], [-77.45024222289874, 34.741493887371654], [-77.45018599655597, 34.741206183163186], [-77.45014674282022, 34.741096434969855], [-77.4500673448814, 34.74099008318436], [-77.44991299403559, 34.740747553726976], [-77.44982240835887, 34.740520192080886], [-77.44972323936052, 34.74038031423075], [-77.44968243581273, 34.740191802997494], [-77.44967457351089, 34.74017740948682], [-77.44966639676844, 34.74015948983518], [-77.44947706689807, 34.740036618844776], [-77.44926662273184, 34.739916179311734], [-77.44913018718415, 34.739796565851734], [-77.44903000471407, 34.739776758543016], [-77.4485953605096, 34.739567585977866], [-77.4485573911647, 34.73956014364619], [-77.4483363961148, 34.73961978428358], [-77.44818421973201, 34.739643740938526], [-77.44791270538718, 34.73957226133302], [-77.4477384954069, 34.73966342264277], [-77.44745004932147, 34.73969156280302], [-77.44722738363342, 34.73972485464542], [-77.44673528521938, 34.73944189413736], [-77.44669944014339, 34.739410041608444], [-77.44683335047603, 34.738932880179625], [-77.44684248504443, 34.738920330062015], [-77.44711421186189, 34.738643987208945], [-77.4472346331078, 34.73849830047945], [-77.44758585920606, 34.73848558095199], [-77.44790484929607, 34.73844002491059], [-77.44793613781255, 34.73844754095335], [-77.44822088231122, 34.738506842376765], [-77.44839834404686, 34.73862528190096], [-77.44844085492454, 34.738683341011246], [-77.4485729406607, 34.73896576973405], [-77.44861063154566, 34.73937607872969], [-77.44863727988823, 34.739494221823584], [-77.44918944043826, 34.73959170855263], [-77.44941927087693, 34.73961431045214], [-77.44954724104464, 34.73962689514661], [-77.44979767340413, 34.739705614903976], [-77.44983654274698, 34.7397255383709], [-77.44997968304689, 34.73982686568385], [-77.45006090021398, 34.739903942480346], [-77.45015126572967, 34.74007605156368], [-77.4502083898787, 34.74017784945986], [-77.45027327133032, 34.740278105952285], [-77.45037365909614, 34.7404332267863], [-77.45038542725726, 34.74055039647433], [-77.45049483964337, 34.7406204766809], [-77.45060736574209, 34.74079435211394], [-77.45066334121012, 34.74088084553459], [-77.45071713786292, 34.7409603298009], [-77.45084105016022, 34.74115546839187], [-77.4508176019331, 34.741262898589554], [-77.45086017036158, 34.741441645249935], [-77.45106906446901, 34.74196046368062]], [[-77.34151717674433, 34.68559765259005], [-77.34096941662028, 34.685431696515764], [-77.34129391771134, 34.68508386912577], [-77.3416274636815, 34.685217959802], [-77.34171284475715, 34.685252094080774], [-77.34189998686334, 34.68530400889216]], [[-77.342978382253, 34.53819261790513], [-77.34341835621115, 34.53818312004445], [-77.34350462537799, 34.53818304759713], [-77.34355931578322, 34.53814256485856], [-77.3438989493336, 34.538106817902765], [-77.34402415604798, 34.53804216257075], [-77.3442176208757, 34.53796622200839], [-77.34429667751758, 34.53788301326877], [-77.3443860305631, 34.53779980515974], [-77.3445346657578, 34.53772389242067], [-77.3445852937781, 34.53764840682402], [-77.34472179419296, 34.53745214823047], [-77.34457827383544, 34.53730549169545], [-77.3445097500576, 34.53723783822452], [-77.34431612086325, 34.53704034014012], [-77.34430334148267, 34.5370308235627], [-77.34429214443846, 34.53702432776282], [-77.34412030744282, 34.53692796801918], [-77.34392457949826, 34.53699623414571], [-77.34387218973808, 34.53705289199865], [-77.34382533224696, 34.537091490978796], [-77.34377358492881, 34.53712909036921], [-77.34372349056848, 34.53720460762438], [-77.34371079771478, 34.53722272406792], [-77.3435233874045, 34.53737023224004], [-77.34350925981033, 34.53737301391819], [-77.34332633601163, 34.5374036259842], [-77.34332335147101, 34.537406714400696], [-77.34330733230186, 34.53741083590017], [-77.34322699126037, 34.53745579777947], [-77.34321970750776, 34.53748045978928], [-77.34312652416062, 34.53755657679943], [-77.34312368892114, 34.53755966599796], [-77.34311323963105, 34.537569271345404], [-77.34306479078961, 34.53765344415809], [-77.34302563035035, 34.537675826739516], [-77.34300986004077, 34.53769845178284], [-77.3429746255599, 34.53773375088637], [-77.34292529057973, 34.53777106937102], [-77.34292460855, 34.53777192136427], [-77.34292159178068, 34.53783213270436], [-77.34292067561263, 34.53783369193683], [-77.34290356883325, 34.537848583388644], [-77.34295477660896, 34.53795119533091], [-77.34282253486836, 34.5381512378903]], [[-77.44412151634384, 34.73051387732446], [-77.44393123005663, 34.730455462085295], [-77.44377341314888, 34.73036343292428], [-77.44357179291289, 34.730197942610275], [-77.44319880051115, 34.730156803995456], [-77.44335346311632, 34.72987523337657], [-77.44352993864265, 34.72980002450187], [-77.44370975200694, 34.729721046654745], [-77.44388846201963, 34.729638017119605], [-77.44406525383582, 34.729564901871754], [-77.44425369544231, 34.72948696886269], [-77.4449000122345, 34.72944687217388], [-77.4448159221235, 34.73032966539955], [-77.4448105803304, 34.73038431883841], [-77.44480955155512, 34.73039484448074], [-77.44476633410254, 34.73050108887212], [-77.44477879172808, 34.73039029581868]], [[-77.35179612988561, 34.684193350490965], [-77.35148681076186, 34.6842449206201], [-77.3511987209284, 34.684291477431834], [-77.35116369843499, 34.68428590314851], [-77.35115732524118, 34.68427705147852], [-77.35103287538246, 34.684189494329544], [-77.35103683377497, 34.684147948306126], [-77.35117378808897, 34.684081043326344], [-77.35120830288807, 34.68417341505025], [-77.3514037657475, 34.68410113873967], [-77.35152534311283, 34.68411220247076], [-77.35175336814322, 34.68414494183224], [-77.35192026937578, 34.68409780699855], [-77.35180632180032, 34.684191890076605]], [[-77.33651529709503, 34.53912225504903], [-77.3368053204888, 34.53929210498375], [-77.33684049058985, 34.53929828350386], [-77.336870539731, 34.539315984269926], [-77.33719458212053, 34.539435041164715], [-77.33733597382688, 34.539406107605586], [-77.33751286035145, 34.53946842593794], [-77.33758544116084, 34.53950903747286], [-77.337639870505, 34.53945015954102], [-77.33780516927365, 34.53931580655306], [-77.33767888769859, 34.53919973064471], [-77.33766546037, 34.53915684496595], [-77.33768443445852, 34.53907652426503], [-77.33766905927845, 34.53900113984385], [-77.33765128475439, 34.53895888309828], [-77.33763887060621, 34.538935627827435], [-77.33760033729692, 34.53886566129968], [-77.33745345316835, 34.538834567389], [-77.33747321383068, 34.538739675645814], [-77.33747524331471, 34.538658378601596], [-77.33744087603, 34.53860275013289], [-77.3372898649279, 34.53852122720605], [-77.3372644486029, 34.53849488915435], [-77.33721747812137, 34.53844634669305], [-77.33712345782692, 34.538360219876665], [-77.33708184607792, 34.538306326539036], [-77.3370257508269, 34.53824960614314], [-77.33694333842921, 34.53825515226587], [-77.3368307903732, 34.538192489830834], [-77.3365946228973, 34.53822965096442], [-77.33643387538294, 34.53838018306813], [-77.33627371423405, 34.53857022730109], [-77.33615434497105, 34.53868452859203], [-77.33626275619946, 34.538770020694024], [-77.33630843875585, 34.538907186136676], [-77.33641953858259, 34.53899902195269], [-77.3364637759114, 34.539100609047026]], [[-77.33565853173063, 34.533799385210116], [-77.33566826141961, 34.53385809317006], [-77.33516565233705, 34.534056221146415], [-77.33496242649662, 34.5341181083745], [-77.3346091788944, 34.53425521115384], [-77.33458863040055, 34.53427208792423], [-77.33449663374655, 34.53431423788587], [-77.33450077976302, 34.53422931317972], [-77.3343710802636, 34.534044632567664], [-77.33435809895568, 34.53393638981749], [-77.33423469010042, 34.5338194291178], [-77.33449011742387, 34.53372730244777], [-77.33490437824867, 34.53347831097265], [-77.33497842531305, 34.533428111471565], [-77.33499543311835, 34.533454232173106], [-77.33501372554797, 34.53346258657105], [-77.335366892011, 34.53360402138671], [-77.33542793906499, 34.533609682143364], [-77.33546308146308, 34.53364278310704]], [[-77.43472806782846, 34.73815517585514], [-77.43459940555798, 34.738556167569676], [-77.43468517316683, 34.738751557717436], [-77.43496735629533, 34.73868473915388], [-77.43504180891524, 34.73836514675389], [-77.43503762742196, 34.738150252602026], [-77.43496259824609, 34.738057335210854], [-77.43493427042903, 34.737890883516215], [-77.43469068026786, 34.737791578667476], [-77.43462108511847, 34.7380046998609]], [[-77.36369291851439, 34.773448455900784], [-77.36365942430963, 34.77357644871562], [-77.36365418294744, 34.77358183116573], [-77.36329477442366, 34.77373308799988], [-77.36322783240331, 34.773984636061215], [-77.36320949748556, 34.774008391063354], [-77.3629817088285, 34.77389850506325], [-77.36305040980851, 34.773827411291514], [-77.36321624958343, 34.77360465249885], [-77.36348749414861, 34.773516281824506]], [[-77.35782804669851, 34.54697490304068], [-77.35750381751285, 34.54691602083665], [-77.3574370376804, 34.546905363227], [-77.35739314858229, 34.54691735651498], [-77.35732840945712, 34.546899479952664], [-77.35713914072855, 34.546868203728124], [-77.35704577572626, 34.54684688467185], [-77.35687512532942, 34.546964741151186], [-77.35676766479276, 34.54705457642902], [-77.35666934382512, 34.54723919100911], [-77.35664304992514, 34.547288562344825], [-77.35653427463963, 34.54743776165653], [-77.35647459054411, 34.54751205241478], [-77.35639935142078, 34.54766940725816], [-77.35633365924895, 34.54777716497461], [-77.35639276719441, 34.54786565473786], [-77.35647677553797, 34.54800138389413], [-77.35654279506521, 34.54804360432081], [-77.35649399108023, 34.54816328087364], [-77.35631335906089, 34.54826973347123], [-77.35626597832818, 34.54830071030798], [-77.35622677423532, 34.54832108368312], [-77.3560307807054, 34.548434643885344], [-77.35600943424052, 34.54844721331647], [-77.35582886124226, 34.54855238713869], [-77.35580127442812, 34.54857134656881], [-77.35577418812035, 34.54859217732832], [-77.35570925123407, 34.54867436738802], [-77.35564662838011, 34.54874447430997], [-77.35562766412762, 34.54876570490609], [-77.35552801751014, 34.548872438735465], [-77.3554897388105, 34.54891651055987], [-77.35547021919908, 34.54894196498778], [-77.3554262340482, 34.548989135614505], [-77.35541322503887, 34.549003468325225], [-77.35538678717941, 34.54901518132942], [-77.35532689680818, 34.549040762999326], [-77.35524915440129, 34.54904782304376], [-77.355228531708, 34.54905000281208], [-77.35521074341929, 34.54905159346953], [-77.35503290204602, 34.54902050395007], [-77.35486394003736, 34.54907265051646], [-77.35481067312222, 34.54908284283184], [-77.35463794081309, 34.54912286192133], [-77.35463779133546, 34.54912290969689], [-77.35445469397519, 34.54914095643986], [-77.35444125565873, 34.54913935825498], [-77.35441555674801, 34.549138962030185], [-77.35424526672071, 34.549125512961055], [-77.35417455481267, 34.54911156674194], [-77.3540492840896, 34.54911139450756], [-77.35397348502913, 34.54909621650335], [-77.35389459951463, 34.549082037543656], [-77.35385419603826, 34.54905830516264], [-77.35370189244783, 34.54904007757665], [-77.35364443934932, 34.54902996232134], [-77.35357516645404, 34.54897841338042], [-77.3535532480328, 34.548911884600436], [-77.35355001139756, 34.5488600470905], [-77.35346996329665, 34.548693284806276], [-77.3530149182106, 34.54870579592607], [-77.35268417722683, 34.54871779142503], [-77.35242118426326, 34.548913640560905], [-77.35231696540818, 34.54908983080026], [-77.35231031251269, 34.549108069320795], [-77.35228164686376, 34.549149539601906], [-77.35225473990697, 34.549116045122865], [-77.35199548624644, 34.54920325169728], [-77.35188813095722, 34.549188791074315], [-77.3518182621976, 34.54920494488715], [-77.35112254220086, 34.549275225051844], [-77.3511002578148, 34.549303832616125], [-77.35100507698883, 34.54933751340805], [-77.3504467409111, 34.549443128181835], [-77.35052089936914, 34.54959314777315], [-77.35040443820445, 34.54967092541482], [-77.35043486796977, 34.54972793969293], [-77.35040687474229, 34.54979013324514], [-77.35040394272973, 34.549794875711854], [-77.35041511108952, 34.54985319357067], [-77.35043256718969, 34.54993299633976], [-77.35044259400962, 34.5499716489814], [-77.35044858548217, 34.54999993413955], [-77.35046888457622, 34.55009027585054], [-77.35053153504707, 34.5501785326105], [-77.35058299111054, 34.55031867548412], [-77.35060840783993, 34.550361729763736], [-77.35067947671094, 34.55052889577883], [-77.35068572324636, 34.55054459199372], [-77.35068899304561, 34.55054824152515], [-77.35069635485667, 34.55055812556392], [-77.35076199692251, 34.55066014571438], [-77.35081647092792, 34.55068702611583], [-77.35089488802194, 34.550763431004455], [-77.35096509480974, 34.55081593485396], [-77.35100576822644, 34.55095707221372], [-77.35101198380532, 34.550991400292375], [-77.35105605609925, 34.55122675353215], [-77.35105662163453, 34.55122940685214], [-77.3510566510957, 34.551229793285124], [-77.35105688149763, 34.551230326008856], [-77.35111255798992, 34.55146656854383], [-77.35115004642083, 34.55152404203079], [-77.35118343226591, 34.55157877918057], [-77.35120183259066, 34.55160226067496], [-77.35125950579354, 34.55169024134068], [-77.3513576822163, 34.551873459284565], [-77.35139320240636, 34.55191582132953], [-77.35140246788616, 34.55193317997726], [-77.35143187345275, 34.551958054070084], [-77.35159258630713, 34.55213194725905], [-77.35167042071963, 34.55221316608579], [-77.35181669089692, 34.55229795309338], [-77.35184786528937, 34.5523202702317], [-77.35187846478169, 34.5523356245801], [-77.35202010533132, 34.55243131194722], [-77.35220486374392, 34.55249192445639], [-77.3522842588994, 34.55252204228861], [-77.35245761309577, 34.5525830088388], [-77.35252513374115, 34.552609784702184], [-77.35259434983837, 34.552628792618336], [-77.35268020890959, 34.552641179097755], [-77.35269217371533, 34.55264332140065], [-77.3527000385794, 34.55264094619799], [-77.35279090752795, 34.55261822905349], [-77.35285506928338, 34.55260207337755], [-77.35298864090136, 34.55255646287153], [-77.35314847232692, 34.55249645870269], [-77.35326023181855, 34.55245844603979], [-77.35338447175909, 34.55241702937129], [-77.35345120615054, 34.552395383812424], [-77.35369782986595, 34.55231858323307], [-77.3537800682541, 34.55228774462376], [-77.35390770210492, 34.552209902641394], [-77.3539791849332, 34.55216563562834], [-77.35398757522732, 34.5521596118135], [-77.35417850656019, 34.552034569955396], [-77.35420611831658, 34.55201757154778], [-77.35426460983346, 34.55199217792724], [-77.35446148855118, 34.551893449983936], [-77.35473336531037, 34.551679879555415], [-77.35486236114849, 34.55159174917766], [-77.35497590878543, 34.55150498380591], [-77.35504630427374, 34.55143287403926], [-77.35516301930629, 34.55137320876488], [-77.35517538836112, 34.55136689188899], [-77.35532096653586, 34.55131813927718], [-77.35537313249465, 34.55130443906812], [-77.35548237675233, 34.551259754802416], [-77.35576831282852, 34.551192920806045], [-77.35587081626772, 34.55108892463629], [-77.35592703310748, 34.55101840171629], [-77.35601955772053, 34.55091292186914], [-77.35605013079794, 34.55087826929481], [-77.35617119546069, 34.550745381418906], [-77.3561769286626, 34.550741117989624], [-77.35618622042237, 34.550736266259634], [-77.35657057032111, 34.55045069350762], [-77.35658491516547, 34.55044287898101], [-77.35659337222138, 34.55043282821786], [-77.35663758660432, 34.55038560398028], [-77.35691280962124, 34.550105671234135], [-77.35697181969152, 34.550074082291864], [-77.35718832886798, 34.54996884537678], [-77.35736906932841, 34.549871885504764], [-77.35740647721823, 34.54984912085985], [-77.35743937615543, 34.54982138305182], [-77.35760403926666, 34.54969687251837], [-77.35763966634097, 34.54967013478643], [-77.35776809502046, 34.54959206773163], [-77.35782634177444, 34.54955666156084], [-77.35785939778955, 34.54951608695029], [-77.35796929276138, 34.54937855273281], [-77.35796971593511, 34.54937804856996], [-77.35796986205992, 34.54937777085201], [-77.35797044446873, 34.549376991125236], [-77.35807293794781, 34.5492405182264], [-77.35810765595456, 34.549196791662126], [-77.35817166904211, 34.549113533551974], [-77.35817712937767, 34.54910640827966], [-77.35818124271026, 34.549102512859406], [-77.35825201016277, 34.54901865573609], [-77.35832162686454, 34.54895988824201], [-77.3584186950574, 34.54885138481545], [-77.3585133189526, 34.548724793921764], [-77.35854788418892, 34.5486824875387], [-77.35855519214618, 34.54866942637375], [-77.35857534924683, 34.54863016258173], [-77.3586693739995, 34.548476610707276], [-77.3586926049247, 34.54841682623548], [-77.35871900531734, 34.54832776136201], [-77.35873877309469, 34.54826200653105], [-77.35880313974523, 34.5481560868927], [-77.35876475225965, 34.548051764270454], [-77.35876633263747, 34.548038974930236], [-77.35876509856739, 34.54802644526185], [-77.35877728728995, 34.547914985751504], [-77.35878806990459, 34.54779274076591], [-77.35878822458541, 34.54778932735864], [-77.35882655555778, 34.54766306785723], [-77.3588638181032, 34.54757773729999], [-77.35887884457674, 34.5475331271072], [-77.35888909098621, 34.54747491321231], [-77.35891106561688, 34.54740607576291], [-77.35888464585098, 34.54735758843232], [-77.3588809621366, 34.547349204422844], [-77.35886092504109, 34.547327960037336], [-77.35882973941757, 34.54729537395734], [-77.35882148618617, 34.54728469721676], [-77.35865408850069, 34.547198253620465], [-77.35864005440442, 34.54718062255485], [-77.35860906288536, 34.547157807623464], [-77.35846623540947, 34.547070786488774], [-77.3582194452794, 34.547027457279746], [-77.35820693888185, 34.5470256378509], [-77.35817545290121, 34.54702234639675], [-77.35793902336212, 34.54698701092543]], [[-77.36451740451118, 34.54586421316374], [-77.36444678520594, 34.54582339183401], [-77.36425299861827, 34.54565747189194], [-77.36453829839304, 34.54539661760938], [-77.36462261595936, 34.54560423304196], [-77.36453977982386, 34.54585356158548], [-77.36453771356125, 34.545861287866465], [-77.36453585449412, 34.545866723800565], [-77.36452728257915, 34.54587918342963], [-77.36452016974275, 34.54586840392076]], [[-77.34534271748146, 34.5486245144373], [-77.34523134507324, 34.54842239130991], [-77.34484505592059, 34.54869611344342], [-77.34484561637905, 34.54870438048766], [-77.34502548707052, 34.54903453776105], [-77.34515282849054, 34.54914147279381], [-77.34531876661465, 34.54929535401676], [-77.34537538105938, 34.549599093223264], [-77.34537032878711, 34.54995331432097], [-77.34533423859125, 34.55009465167304], [-77.34534608287133, 34.55024008842495], [-77.34531960467088, 34.55042540974182], [-77.34486342692792, 34.5506052378277], [-77.3447878373924, 34.55062926486904], [-77.34471293106894, 34.55062693593691], [-77.3446907882774, 34.55067686280174], [-77.3446619443845, 34.55075766563075], [-77.34410943174176, 34.55125013646793], [-77.34424160350386, 34.55139111647343], [-77.34430502617718, 34.551466817810905], [-77.3443331192513, 34.55148912779725], [-77.34437511740778, 34.551500526156936], [-77.34454938911148, 34.551676482685046], [-77.34463564890169, 34.551742953683664], [-77.34476014631677, 34.55182999457875], [-77.34485813332029, 34.55187688512489], [-77.34499494383401, 34.55195383619276], [-77.34514977318622, 34.55196017688598], [-77.34533237294355, 34.55192196651646], [-77.34554297304267, 34.551935413369684], [-77.3456824180562, 34.551916439390105], [-77.34575752224697, 34.551992311054676], [-77.34593292401972, 34.55205159886485], [-77.34607548336808, 34.55210177241734], [-77.34618700513303, 34.55217533952623], [-77.34622382028704, 34.55223090092302], [-77.34632077715351, 34.552258868135624], [-77.34645414762376, 34.552297999846026], [-77.34671313467399, 34.5522706994138], [-77.34685244769305, 34.55232441678872], [-77.34699470410642, 34.55237174777295], [-77.34710293132622, 34.552393711309605], [-77.34722570502308, 34.55243833681698], [-77.34744628926839, 34.55248379310318], [-77.34747869363846, 34.55248829048584], [-77.34749323603401, 34.552494707196715], [-77.34756937332604, 34.55251383199596], [-77.34788387217124, 34.55258134502913], [-77.34797566957606, 34.552595006495885], [-77.34811172197958, 34.55263286524723], [-77.34827422697524, 34.55268023538301], [-77.34839584094077, 34.55275983001586], [-77.34846780441367, 34.55279920645295], [-77.34849599517216, 34.55280473446229], [-77.34861253900368, 34.55277308391786], [-77.34866532448831, 34.552746890448645], [-77.34875892864055, 34.55272648392146], [-77.34886291788993, 34.5526913761967], [-77.34891731598273, 34.55267301081396], [-77.34896184430022, 34.552657977560315], [-77.34903755766139, 34.552622052460734], [-77.34905389287717, 34.55261527988166], [-77.3490610835413, 34.55261097975774], [-77.34911934547839, 34.55254907805659], [-77.3491276127634, 34.55252696135485], [-77.34913058475384, 34.55250563540346], [-77.34913081353162, 34.552486222620225], [-77.34913130222878, 34.55244475306644], [-77.34912981250386, 34.552403839610704], [-77.34912836780059, 34.552364164161304], [-77.34912029518526, 34.55227501604808], [-77.34912009850588, 34.55224294374546], [-77.34912735535465, 34.55220638127615], [-77.34912419969513, 34.55218114841844], [-77.34913295355675, 34.55215698376442], [-77.34913039708708, 34.55214374047999], [-77.34910678018844, 34.55212244990493], [-77.34909826438592, 34.552107712200254], [-77.34907321351004, 34.5520838178358], [-77.34901240625271, 34.55205199241822], [-77.34896389647201, 34.55202060034149], [-77.34894454122937, 34.551941105220656], [-77.34890251499898, 34.551893777177455], [-77.34888180807482, 34.551870503187914], [-77.34879796160685, 34.55179965755287], [-77.34874998420979, 34.55176782250271], [-77.34868901525539, 34.55171751373753], [-77.34859995973912, 34.55163997176096], [-77.34853347568443, 34.55159289569527], [-77.34849616950797, 34.55156685401158], [-77.34844754263742, 34.55151393147814], [-77.34841833166497, 34.55148705412313], [-77.34835627736226, 34.55140645194297], [-77.34833271908386, 34.55137696309337], [-77.3483251077218, 34.55136520728316], [-77.34830502865606, 34.55134216107184], [-77.34822212957445, 34.551270466014216], [-77.3481815696244, 34.55123244954156], [-77.34814312737564, 34.5511785319417], [-77.34813954438317, 34.551159939286244], [-77.34812908535827, 34.55115148024247], [-77.34811331061908, 34.551142584384564], [-77.3480221803853, 34.551111684531854], [-77.34791987909716, 34.551017468445224], [-77.34786870018615, 34.55098644909579], [-77.34786270543091, 34.55095495381048], [-77.34784513749102, 34.55090932390448], [-77.34778194806073, 34.55084416387915], [-77.3477651657106, 34.55082342600681], [-77.34772907985297, 34.55077806258498], [-77.34766895931747, 34.55073801168217], [-77.34760944322385, 34.550699887266674], [-77.34758083815746, 34.550628281243505], [-77.34753737383463, 34.55057808015327], [-77.34750001825785, 34.55054132120756], [-77.34746152378833, 34.55052303908977], [-77.34744089576441, 34.55046421288742], [-77.34738414281031, 34.55038763551671], [-77.34723832623934, 34.550310334123864], [-77.34721644908711, 34.55027315431738], [-77.34715515296006, 34.550126521633246], [-77.34711489058239, 34.55010863737756], [-77.34709534019663, 34.550086087750195], [-77.34704262666241, 34.55004263370119], [-77.34696197654783, 34.549990494159346], [-77.3469532103832, 34.549989607018695], [-77.34691315834473, 34.549958997599546], [-77.34679714585718, 34.549884173236876], [-77.3467809279276, 34.54987859807578], [-77.3467685083778, 34.54986715738587], [-77.34654022976763, 34.54981935002179], [-77.34637953853203, 34.54970880361072], [-77.34611544768157, 34.549658021774405], [-77.34582219745127, 34.54953480805703], [-77.3458688969668, 34.54936185041926], [-77.34590174879985, 34.54921838525158], [-77.34574065131571, 34.54905690141962], [-77.34569336956659, 34.54901194642357], [-77.34561300076439, 34.54889767585276], [-77.34533382088566, 34.54880126632004]], [[-77.33700990722754, 34.652484437799814], [-77.33733713453523, 34.652782584640505], [-77.33740172119809, 34.65285689111725], [-77.3376719128845, 34.652855247967025], [-77.3377185713465, 34.65287885944294], [-77.33790807784197, 34.65300261390727], [-77.33801309985323, 34.65319748635555], [-77.33784550564475, 34.65312647522555], [-77.33768706940494, 34.652930673733174], [-77.33745807344886, 34.65301298340334], [-77.3373788542638, 34.65299020611069], [-77.33734228216159, 34.65297454870702], [-77.33724696246396, 34.652943573209306], [-77.33693095079394, 34.65264072845383], [-77.33669583693472, 34.652777889776715], [-77.33642715591765, 34.65271784154227], [-77.33633021838855, 34.65268181856191], [-77.33611626509368, 34.65242760376598], [-77.3364150028513, 34.652213740155176], [-77.33652239806742, 34.65213947998117], [-77.3365747491335, 34.65217525869412], [-77.33658548676945, 34.65217653293856], [-77.33661046844603, 34.65218692012311]], [[-77.26024527264393, 34.59922501882597], [-77.26025801341935, 34.59926472875547], [-77.26022263125579, 34.59926976585357], [-77.26021214355293, 34.599267597074444], [-77.26010129831559, 34.59925240119767]], [[-77.31998239718527, 34.54454902254708], [-77.31984679210709, 34.54470071126036], [-77.31981920028089, 34.54471797777526], [-77.31979672493334, 34.54476686515165], [-77.31966638283339, 34.544891987435605], [-77.31965877504416, 34.54497253390748], [-77.31972593362389, 34.54500357995833], [-77.31979183410665, 34.54497619826835], [-77.31993560361241, 34.5450230966721], [-77.31998671244558, 34.545037115974246], [-77.31999401604422, 34.54504215112688], [-77.32000085445569, 34.54504579628227], [-77.32018092937889, 34.54512635954918], [-77.32021475828209, 34.545116520902155], [-77.32032273588888, 34.54512195923061], [-77.32026139285259, 34.54518175286539], [-77.32036029793561, 34.5452477597832], [-77.32044915537145, 34.545273190710404], [-77.32057195321138, 34.54519399897742], [-77.32071811423317, 34.545218471562265], [-77.3207346700355, 34.54530758986393], [-77.3209616237743, 34.54531961785333], [-77.32112213327477, 34.54539554249406], [-77.32132547648777, 34.54545151200019], [-77.32135137277206, 34.54544192317739], [-77.32143098887454, 34.545452360789454], [-77.32168249263643, 34.545454383895944], [-77.32174275760468, 34.54549418696813], [-77.32185403719161, 34.5454604775776], [-77.32203968846181, 34.545425561501595], [-77.32213792257751, 34.54538447673886], [-77.32247911679866, 34.54533455006282], [-77.32261851736877, 34.54533589758089], [-77.3229269902142, 34.545219026125984], [-77.32319576914809, 34.54512014172143], [-77.32336506372341, 34.544929653318604], [-77.32332930557985, 34.54469159143237], [-77.32331833649586, 34.54444674158145], [-77.3231918885122, 34.544312908641416], [-77.32294980700368, 34.54424086640723], [-77.32257933892517, 34.54429354696177], [-77.32216622275536, 34.54417173256654], [-77.32165099594775, 34.54436788812543], [-77.32137590005375, 34.54439128060336], [-77.32115080888455, 34.5444086586004], [-77.32058893700165, 34.544466780288005], [-77.32046768452778, 34.54444265849517]], [[-77.24771603907227, 34.591422360752794], [-77.24725428869749, 34.591574670991214], [-77.24713066745642, 34.591632546034326], [-77.24717245645687, 34.59173635278714], [-77.2471640028547, 34.59202856321639], [-77.2474268484256, 34.5920666350923], [-77.24755228123765, 34.59193403885949], [-77.24771075302043, 34.59192215466068], [-77.24772134973509, 34.5919147521392], [-77.24779672476433, 34.59182280456448], [-77.24788583857634, 34.59175834126281], [-77.24775781825628, 34.5916819511245], [-77.24775532672824, 34.591457308184545], [-77.24812935995519, 34.591511523899165], [-77.24815875709751, 34.59147786070853], [-77.248174257542, 34.59146667208879], [-77.24819369216117, 34.5913844143746], [-77.247825064529, 34.591413699434625]], [[-77.39057633218037, 34.62727914660396], [-77.39048443462836, 34.627544797085235], [-77.39043642092018, 34.62772388388118], [-77.3904242716199, 34.62783304203773], [-77.39028682175203, 34.62778606859356], [-77.39027033699485, 34.627747825846996], [-77.39024450501016, 34.62766534428086], [-77.3901678692389, 34.62733802881215], [-77.39016511358078, 34.62708562896736], [-77.39019296228088, 34.626909843161634], [-77.39021051170526, 34.62678439607684], [-77.39023165156395, 34.626479697965074], [-77.39023818101214, 34.62638559014816], [-77.39024652883717, 34.626265269295416], [-77.39023656659953, 34.62614935430267], [-77.39022944804678, 34.62605544739919], [-77.39021078986346, 34.62593541822976], [-77.39032474628961, 34.62588958829356], [-77.39043999846774, 34.625900974237524], [-77.39052186245337, 34.62590906167177], [-77.3906850866006, 34.625989763599904], [-77.39070120939544, 34.62600656693029], [-77.390718955332, 34.62615229701802], [-77.390759487148, 34.62635993283463], [-77.39075481946654, 34.62644293509752], [-77.3906156003767, 34.62684891692782], [-77.39057901169613, 34.62712816089288]], [[-77.39178404707917, 34.52097810302554], [-77.39149773890968, 34.52109611778967], [-77.39099223450833, 34.52128314324747], [-77.39034199952033, 34.52108593397875], [-77.39100524559849, 34.520705429460314], [-77.39118825489302, 34.52058665751492], [-77.39157576336774, 34.520554131187026], [-77.39178927400323, 34.52074592223638], [-77.3919418222913, 34.52075973071699], [-77.3920295479946, 34.52084242936636], [-77.39186770647053, 34.520917116317776]], [[-77.34127461697317, 34.75898356012593], [-77.34162907995403, 34.75878943524324], [-77.34171266200138, 34.75867980420297], [-77.34186676685655, 34.758587088295336], [-77.34203370747521, 34.758509573573036], [-77.3420501629286, 34.75850397591096], [-77.34219652935182, 34.75848311487847], [-77.34231079063147, 34.75850067287775], [-77.34246496946767, 34.758590117135356], [-77.3426359567032, 34.75864483240832], [-77.3429384774061, 34.75902216287659], [-77.34357823255996, 34.758601200531714], [-77.3436914272299, 34.758492764608164], [-77.34423635439207, 34.75809001203531], [-77.34430933505273, 34.757972248701606], [-77.34427966043486, 34.75784038445398], [-77.34442305639162, 34.75766492778148], [-77.34446195459242, 34.75757169355151], [-77.34459072350805, 34.757459773050236], [-77.3445928750986, 34.75755373716431], [-77.34459154378943, 34.75758394651021], [-77.34459295353861, 34.75779741475565], [-77.34458143724935, 34.75789414109612], [-77.34452705720923, 34.75797913851929], [-77.34446032163319, 34.75805929434487], [-77.34443914544107, 34.758087240562666], [-77.34439490096477, 34.758133565475525], [-77.34374185840329, 34.758645208902365], [-77.34368139101358, 34.758692583560034], [-77.3435511577149, 34.75915873917344], [-77.34339235398426, 34.759521770201424], [-77.34325016618419, 34.75958718813338], [-77.34311548975369, 34.759705864008424], [-77.34270955043242, 34.75980979368504], [-77.3425858509423, 34.75986587102758], [-77.34218265368415, 34.75991814364608], [-77.3420799055669, 34.75991490959815], [-77.34202118331415, 34.7599058480405], [-77.34156430926927, 34.75962765200377], [-77.3413373849438, 34.75964324697824], [-77.34095427952042, 34.759665281287226], [-77.34076052850367, 34.75969259111414], [-77.34066344655875, 34.759635305209244], [-77.34060683261555, 34.75956250397992], [-77.34049554665211, 34.75950215354656], [-77.34053927639022, 34.7594197875479], [-77.34070487260371, 34.75930537342903], [-77.34074659650179, 34.759284290210374], [-77.34091118847296, 34.759182593438304], [-77.34109421886768, 34.75918385446816], [-77.34128962584052, 34.75912703404781]], [[-77.44106019187811, 34.730015173200094], [-77.44126694776674, 34.73007012062011], [-77.44164248379998, 34.7302185124739], [-77.44190199164163, 34.730486148423836], [-77.44183544528276, 34.730725719729335], [-77.44162054172568, 34.73116696341328], [-77.4411712925211, 34.731348893179266], [-77.44079045979585, 34.73130637399538], [-77.44067621096303, 34.731342343457385], [-77.440088542055, 34.73145465393226], [-77.4399637909579, 34.73145135902999], [-77.43935716937605, 34.731469443395724], [-77.4391338591011, 34.730960187407874], [-77.43894137020908, 34.73069067737427], [-77.4388936369979, 34.73061401536929], [-77.43882449224996, 34.730528891558336], [-77.43906916673207, 34.73024900352149], [-77.43916205133631, 34.73014173979551], [-77.43974661581723, 34.73012346103041], [-77.43998411128801, 34.729989250079974], [-77.4404252082124, 34.72997015278383], [-77.44043223479923, 34.72996967391792], [-77.44087905328428, 34.72995580979068]], [[-77.33359312501267, 34.577325840336414], [-77.33358440291714, 34.5773285027992], [-77.33353309271142, 34.57732648262439], [-77.33358810055823, 34.57731315105598], [-77.3335931366127, 34.57731177284028], [-77.33377579103663, 34.577291597179524]], [[-77.45029074672937, 34.69708135642372], [-77.45035145352341, 34.69681461196308], [-77.45038445188429, 34.696555094199695], [-77.45036549354661, 34.696112633959274], [-77.4503875431553, 34.69599716451173], [-77.45035721121238, 34.69591935547747], [-77.45031404567405, 34.6958021603549], [-77.45017717448347, 34.6958049544907], [-77.44971975067665, 34.69564115542318], [-77.44925334673401, 34.695790638626974], [-77.44902212956957, 34.695837537748105], [-77.44869402814003, 34.69596430915098], [-77.44855005986838, 34.69613665670952], [-77.4482563849094, 34.69679647713977], [-77.44839743855576, 34.69697868171011], [-77.44862633082998, 34.69720647868735], [-77.4489052895801, 34.6974184039901], [-77.44917828087057, 34.69751397822415], [-77.44945374045633, 34.69761313604987], [-77.4497691198319, 34.69768698089473], [-77.45005803713516, 34.69755904006853], [-77.45021193337442, 34.697356804365114]], [[-77.37892602411553, 34.730424460411925], [-77.37811354602131, 34.73051400021554], [-77.37876760522296, 34.730165297736264], [-77.37882136567781, 34.73016868929446], [-77.37899149053976, 34.73014822034237]], [[-77.39671015576972, 34.58895063857041], [-77.39663426587103, 34.588787923182295], [-77.39656971872488, 34.58869765260996], [-77.39653427302767, 34.58863321513477], [-77.39655193655466, 34.58854194658974], [-77.39663428030872, 34.588549470289614], [-77.3966879940188, 34.588553166622056], [-77.39683130870911, 34.58856498493853], [-77.39690613400968, 34.58857957156038], [-77.39699956817569, 34.588597088511925], [-77.39702833568549, 34.588607088724885], [-77.39709330073305, 34.58862256734966], [-77.39728733651916, 34.58867009150576], [-77.39736375499099, 34.5888749620509], [-77.39729382619367, 34.588948215388875], [-77.39707290556005, 34.58902813164153], [-77.39702830364223, 34.58918277154905], [-77.39689562813426, 34.58914860906301], [-77.39686649159249, 34.58900986261334]], [[-77.31019152535023, 34.54690447592888], [-77.31025507439301, 34.54676769004808], [-77.3103808503717, 34.54676133778714], [-77.31037304877087, 34.54682515397725], [-77.31057505577627, 34.54725638489431], [-77.31030833931067, 34.54757427937282], [-77.30983387545325, 34.54736280177081]], [[-77.450223251478, 34.62398353790865], [-77.44999489523477, 34.624383646047235], [-77.44992051448521, 34.624497026216304], [-77.44988159198799, 34.62458216487139], [-77.44959342000547, 34.624837672721156], [-77.44924107114086, 34.624878727974576], [-77.4490878174853, 34.62491147622195], [-77.4490152557936, 34.62487269393695], [-77.44893678891924, 34.62485156871854], [-77.4488762203068, 34.62475108761143], [-77.44848025889611, 34.62424322895567], [-77.44831266563926, 34.62390290498491], [-77.4482947205355, 34.62355761974297], [-77.44838152838172, 34.623339222076936], [-77.44851338187601, 34.62281376574919], [-77.44853334027029, 34.62277293604049], [-77.4485766978322, 34.622738704607116], [-77.44854140636457, 34.622708925381666], [-77.44867060701061, 34.62220156004386], [-77.44872739085305, 34.621957222117956], [-77.44875740328385, 34.62178475351908], [-77.4489793693273, 34.62188537113582], [-77.44915997492605, 34.62195270764252], [-77.44933434881432, 34.621971548968425], [-77.44978285359485, 34.622105567416135], [-77.4498893590304, 34.62207823349904], [-77.45020112001555, 34.62227550065202], [-77.45024571903673, 34.62245405281813], [-77.45047835020875, 34.62283399374088], [-77.45040783105449, 34.62295507185902], [-77.4503750880115, 34.62321025966956]], [[-77.4238375238954, 34.52267104792055], [-77.42361287673438, 34.522446301736466], [-77.42428788584644, 34.52232968982006], [-77.42432299906895, 34.522543876263065], [-77.42457806177438, 34.522592768919154], [-77.42457443763205, 34.52291361176198], [-77.42456140109626, 34.5229990978464], [-77.4245426988588, 34.523102595161234], [-77.42451375919327, 34.5233806624673], [-77.42419161844475, 34.523368700215855], [-77.42411804123162, 34.52318834993138], [-77.42410353447517, 34.52306529238673], [-77.42409382075567, 34.52295980593396], [-77.42392598343406, 34.522801505865445]], [[-77.45772263575891, 34.59749611405364], [-77.45828316176716, 34.59707597168746], [-77.45763178942734, 34.59696281212269], [-77.45760008096455, 34.5968338539217], [-77.4574933483371, 34.59656277501182], [-77.45739777149066, 34.59633459264956], [-77.45723942035295, 34.59608827925169], [-77.45720952605953, 34.59590521818612], [-77.45705717276343, 34.595836736357725], [-77.45705945995098, 34.59576339940251], [-77.45705069205458, 34.59571255253938], [-77.4570353689219, 34.59567795627482], [-77.45709451970473, 34.595595283168294], [-77.45713085216565, 34.59558575559893], [-77.45731466129833, 34.59552180259684], [-77.4573382873782, 34.5955257170946], [-77.45736330197917, 34.59551224538233], [-77.45776816640539, 34.595424337886], [-77.45784391421054, 34.5954526548471], [-77.45816005179883, 34.59540223850926], [-77.45833256001643, 34.595317584295394], [-77.45844575064817, 34.5952716129363], [-77.45863355479727, 34.59528030900715], [-77.45870055022084, 34.59529518623991], [-77.45879879298731, 34.59530681397864], [-77.45886367189757, 34.59533758971265], [-77.45893529921173, 34.59536846214517], [-77.45897340650406, 34.59540196957187], [-77.45901324589101, 34.595470173953586], [-77.45902407728687, 34.59557214609889], [-77.45897385702783, 34.59573994473392], [-77.45895627176044, 34.595759927481566], [-77.45891597352417, 34.59578762335638], [-77.45868770582261, 34.59597564753028], [-77.45867724967486, 34.59622500144883], [-77.45863724682263, 34.596430203367305], [-77.45848084586717, 34.59652264671101], [-77.45829634475609, 34.59706444535138], [-77.45829131647446, 34.59707364511327], [-77.45829189566881, 34.59707591328616], [-77.45833195240323, 34.59723483402564], [-77.4584535721537, 34.597751858398915], [-77.45846254519722, 34.5977633259457], [-77.4584593829536, 34.59777948928028], [-77.45837460223953, 34.59803391676286], [-77.45823641895917, 34.59805219638323], [-77.4580323671486, 34.59806033333462], [-77.45752609961325, 34.59803049416885], [-77.4575293876773, 34.598002505269946]], [[-77.30388550045892, 34.55355880883759], [-77.30375254465093, 34.553538324746256], [-77.30349431099677, 34.55349690973502], [-77.30313436004698, 34.5537102379933], [-77.30348945203974, 34.553703186516], [-77.30364721878026, 34.55378192335392], [-77.30369634231808, 34.55375940339455], [-77.30388437709135, 34.55360650851371], [-77.30388814669607, 34.553604378703945], [-77.30389483863055, 34.55360109928521], [-77.3039145484741, 34.55357985075134]], [[-77.31853593303356, 34.64306096281966], [-77.31844789457064, 34.64321620431871], [-77.31842713361837, 34.64325044529319], [-77.31840991555744, 34.64328922917733], [-77.31833592715594, 34.64345588898669], [-77.31826130678917, 34.64342927148726], [-77.31820633590272, 34.6436077539651], [-77.31808400305171, 34.64333390149879], [-77.3180863108693, 34.64300964550029], [-77.31808638211528, 34.642932175729406], [-77.31810329332933, 34.6429092715151], [-77.31832581979307, 34.64260788627027], [-77.31867711225847, 34.64283061799822], [-77.31852605619105, 34.64300912962548]], [[-77.41887764858949, 34.568654999857166], [-77.41883640489164, 34.56858017940246], [-77.41894387821073, 34.56857403691934], [-77.41902921359736, 34.568614931035775], [-77.41907140784468, 34.56863047358923], [-77.41903686007535, 34.56876721831997], [-77.41895882571714, 34.56876810053898], [-77.41889451545006, 34.56868270339831]], [[-77.33924918328418, 34.68327061496038], [-77.33910157347091, 34.68331986377135], [-77.33854087153335, 34.68348030728956], [-77.33823171792464, 34.683645045194], [-77.33814221343985, 34.68366389483208], [-77.33787736384966, 34.683703897211245], [-77.33785364979511, 34.68366598684528], [-77.33789755213476, 34.68363440335038], [-77.3381789369213, 34.68359823715269], [-77.33843304045566, 34.68334281291787], [-77.33859831186774, 34.6832825750646], [-77.33869938916013, 34.68323517951437], [-77.33917950241616, 34.683208820578194], [-77.33922276602009, 34.68319340539464], [-77.33926606899259, 34.683193292166024], [-77.33971151591808, 34.68304225182922], [-77.33986309128312, 34.68304958890981], [-77.34041219386742, 34.68307127248684], [-77.33978110458132, 34.68333183578362]], [[-77.31384836841606, 34.54729800153668], [-77.31379749151549, 34.54740568591946], [-77.3138439151912, 34.54748803384014], [-77.31385766063374, 34.547510550444656], [-77.31394596943048, 34.547447404031466], [-77.31400195400943, 34.547401450655215], [-77.31392369428745, 34.54738756213129]], [[-77.34753551997763, 34.6563325154468], [-77.34763976898265, 34.656250364300476], [-77.34770573948111, 34.65623973963922], [-77.34786985845741, 34.65624469583476], [-77.34800413283487, 34.65647001994047], [-77.3483256681576, 34.65648472765121], [-77.34832747744196, 34.65648568043072], [-77.34832851391715, 34.65648489467877], [-77.34833731559544, 34.65648526040604], [-77.34832917025217, 34.65648799613603], [-77.34832804495201, 34.65648850260315], [-77.3483251950187, 34.656491466084326], [-77.34803801208515, 34.65663850168169], [-77.34793974103951, 34.6567917262468], [-77.34786761198674, 34.65697175325523], [-77.34779945785859, 34.65704451234693], [-77.34770962720953, 34.65724414763442], [-77.34768326931348, 34.65726288145199], [-77.34762036332516, 34.657327634698014], [-77.34761369975399, 34.65732604242261], [-77.3475402922379, 34.6573480315777], [-77.34751822360484, 34.657336224760364], [-77.34747472874427, 34.65731411701252], [-77.34744811912242, 34.657287740141335], [-77.34736151785621, 34.657252240207654], [-77.34736155864715, 34.65725110749778], [-77.34734714539228, 34.65707264028928], [-77.34735226700973, 34.657042510301466], [-77.34737161625357, 34.65692868172145], [-77.34741025833041, 34.65670135416739], [-77.34744093420768, 34.65660833632934], [-77.34743814350577, 34.65652531654262], [-77.3474515464295, 34.656336092564274]], [[-77.25319625880431, 34.58649702993576], [-77.2525619583438, 34.58653027721955], [-77.25229524192949, 34.58685450716384], [-77.25225581960217, 34.58691528008683], [-77.2521818024038, 34.587210812151746], [-77.2521615897523, 34.58731532746022], [-77.25213296882829, 34.587463318228785], [-77.25186257042336, 34.58769773688512], [-77.25184527551701, 34.58776176455648], [-77.25175913142954, 34.58778810650306], [-77.25169858823595, 34.587790664012644], [-77.2511159628375, 34.587873323922274], [-77.25082276594827, 34.587855404117036], [-77.25021884092294, 34.588105023762616], [-77.25001802246746, 34.58821133876317], [-77.24975108885295, 34.58885567389188], [-77.2496483484315, 34.589002783791514], [-77.24985010892769, 34.58937663534718], [-77.24979083685497, 34.58957558465549], [-77.24991083328666, 34.58965738924004], [-77.25012586635388, 34.58962192464655], [-77.25029642757146, 34.58972842062058], [-77.25055720584419, 34.589545710188325], [-77.25071320310003, 34.589487035930674], [-77.25087166858302, 34.58935462956287], [-77.25089590101234, 34.589336710779165], [-77.25090214645647, 34.58932643894065], [-77.25093449035339, 34.58930057000319], [-77.2510773803649, 34.5891536476776], [-77.25111033408565, 34.58911792478756], [-77.25116998434582, 34.58905924127153], [-77.25128343954079, 34.58889588408962], [-77.25142650861783, 34.58880687525736], [-77.25148211669398, 34.58875867899745], [-77.25155875600205, 34.58868189226164], [-77.25158218613088, 34.588616690098014], [-77.25176205125265, 34.58849823981934], [-77.25179041803294, 34.588473252051706], [-77.25181621391908, 34.58844989104595], [-77.25195841426341, 34.588242018638326], [-77.25210846268861, 34.58815677007652], [-77.25210998107436, 34.588100184877916], [-77.25217009784359, 34.588108391942676], [-77.25224280562402, 34.58802874025831], [-77.25228468588138, 34.58792692606547], [-77.25241870939985, 34.58785690886585], [-77.25228073385334, 34.58779605434197], [-77.25236307518517, 34.58766799595246], [-77.25255596763834, 34.58776235985927], [-77.25270173967846, 34.58759353246303], [-77.25291219641427, 34.58749912103971], [-77.2529372014132, 34.58747907414883], [-77.25303757048584, 34.58738430296833], [-77.25310690981648, 34.587343660980295], [-77.2531411466518, 34.58731086152426], [-77.25313655427274, 34.58727426054374], [-77.25327475746774, 34.58717491314275], [-77.2532803151358, 34.58716924821533], [-77.25328168537763, 34.58716785152075], [-77.25328395237389, 34.58716554074955], [-77.25309364462973, 34.58691737358908], [-77.25355229703, 34.58669766131641]], [[-77.33986965833499, 34.68509375005208], [-77.34049709978999, 34.68498813222304], [-77.34052033898247, 34.68498723015496], [-77.34059606985404, 34.684995548244686], [-77.34047467902842, 34.68506531856631], [-77.33987120906563, 34.68509896490256], [-77.33986582712734, 34.685096697987994], [-77.33986217302834, 34.68509095183962]], [[-77.34788294075821, 34.73687185949861], [-77.34808174854008, 34.737059411421264], [-77.34811038495174, 34.7370886949098], [-77.34775102514757, 34.73730750209029], [-77.34764768378423, 34.737152181298306], [-77.34760394577505, 34.73708644355753], [-77.3475426632137, 34.736993942313035], [-77.3475048000158, 34.73692809635742], [-77.34744206950532, 34.736816762890705], [-77.34743645749487, 34.73680680270354], [-77.34744839092988, 34.73681190089668], [-77.34760595162493, 34.73677610438426], [-77.34765749954596, 34.736785300332684], [-77.34772072368217, 34.73679953352868], [-77.34774283605421, 34.73682031720029], [-77.34785798416438, 34.736861149477804], [-77.34787794597574, 34.73687063829847]], [[-77.34377798312724, 34.62421655087687], [-77.34376169717319, 34.62421569237075], [-77.34374955260624, 34.624215052147136], [-77.34319635881295, 34.62434067535567], [-77.34316064273173, 34.624410208186475], [-77.34306182000654, 34.62442887583626], [-77.34284798004438, 34.62444707226561], [-77.34265796168741, 34.62450516433657], [-77.34256599288004, 34.62463661456729], [-77.34248399621362, 34.62467633799122], [-77.34232957882935, 34.62473083104696], [-77.34225983626565, 34.62470586497844], [-77.34203041359882, 34.62443524514336], [-77.3421444818041, 34.62413170921138], [-77.34217465549352, 34.62405385085269], [-77.34220026392683, 34.62398992784208], [-77.3422913376004, 34.623658430310556], [-77.34232301604769, 34.623551076461354], [-77.34233781654137, 34.62350091974603], [-77.34246523300683, 34.62353155052818], [-77.34287046071665, 34.62365969149122], [-77.34303017055004, 34.623760838018676], [-77.34354468318725, 34.62399869732324], [-77.34379783083583, 34.62411944015844], [-77.34391712279228, 34.624176200833816]], [[-77.40589343529938, 34.67201362922071], [-77.40566251300599, 34.67184475851472], [-77.40555398031037, 34.67176538935621], [-77.40553032379708, 34.671748089502316], [-77.40541960721653, 34.67160358612364], [-77.4054206595368, 34.67159783979834], [-77.40546844865342, 34.671408633364415], [-77.40548342757684, 34.671348487654015], [-77.40547857604676, 34.67134466024339], [-77.40548660554732, 34.67134593924675], [-77.40548767107013, 34.67134671738812], [-77.40549058651392, 34.67134886436941], [-77.40568822934671, 34.67148621702813], [-77.4057467186753, 34.67155400135218], [-77.40583849937606, 34.67164669550057]], [[-77.34155427936733, 34.550212505113414], [-77.34156894948671, 34.55014666936426], [-77.34153963482316, 34.55007606302368], [-77.34138932883982, 34.54968286847386], [-77.3410575767963, 34.54962288871561], [-77.34088601380765, 34.5495729460697], [-77.3406526229611, 34.549644329731635], [-77.34040619827587, 34.54982427588833], [-77.34021551699561, 34.54992837218512], [-77.34013079669414, 34.55010870508612], [-77.3401092074163, 34.550125026342855], [-77.3400847996859, 34.55035877248727], [-77.34008771000977, 34.55035972019329], [-77.34028412862834, 34.55044932583824], [-77.34028661118714, 34.55045352186104], [-77.34047248025563, 34.55047779621436], [-77.34053341036444, 34.5505020912973], [-77.34061301426838, 34.55052898463282], [-77.34066631438553, 34.550584995413274], [-77.34075899756851, 34.550572780702744], [-77.34086302524764, 34.55056773009286], [-77.34113487702447, 34.55052977679893], [-77.34125623212341, 34.55054248453951], [-77.34148376006445, 34.55054566109069]], [[-77.33839452788878, 34.54913432629579], [-77.33835979784644, 34.54925029164063], [-77.33826261035111, 34.549398115494135], [-77.33853013015727, 34.54958020579224], [-77.33855835474367, 34.54958276485474], [-77.33884287746378, 34.549508645847894], [-77.33892811728401, 34.549348172716435], [-77.33894799265799, 34.54931141039115], [-77.33894763869199, 34.54928828940396], [-77.33865392553804, 34.549097021207544], [-77.33865304162667, 34.549028466636074], [-77.3385429255936, 34.549027187070415]], [[-77.39527210907929, 34.512640136811385], [-77.39536996099079, 34.51252563101729], [-77.39533890972866, 34.51239154015988], [-77.39511790498011, 34.512342400941215], [-77.39502631762107, 34.51214546569982], [-77.39457681189204, 34.51230196031428], [-77.39447942670496, 34.512559792329455], [-77.39488007789183, 34.51259634063187], [-77.39505806279338, 34.51260431339888], [-77.3951101113231, 34.51268915134271]], [[-77.2697157221555, 34.578798315668294], [-77.26974428673428, 34.57878081815967], [-77.26974941588499, 34.57880096437133], [-77.26972721800823, 34.57881456784505]], [[-77.33844770538465, 34.76229541018985], [-77.338387009729, 34.76231392795209], [-77.33834452198573, 34.762338345095216], [-77.33804399860679, 34.76246339296788], [-77.3378790543247, 34.76237337037248], [-77.33809809499365, 34.76227731716344], [-77.33837705462011, 34.76229175404349], [-77.33839319914917, 34.762292637834086]], [[-77.3992688573023, 34.59404947356384], [-77.39926267635263, 34.59418362604322], [-77.3992312781768, 34.594361894453726], [-77.39922883474928, 34.59443671288149], [-77.39901916020044, 34.59464333175544], [-77.39902170847893, 34.594668025353734], [-77.39899844626328, 34.59468493011891], [-77.39898412166696, 34.59464838674305], [-77.3989728660668, 34.59462244958607], [-77.39885459368949, 34.59439749008614], [-77.39880141445472, 34.59429625298902], [-77.39877947390387, 34.594253337582444], [-77.39872306702702, 34.59413360262561], [-77.3986069810395, 34.59385644491677], [-77.39861028442202, 34.593853172821], [-77.39899847484583, 34.593672066265505], [-77.39913806400907, 34.59362664218201], [-77.39919551770568, 34.59360794605562], [-77.39939149134767, 34.59374046799204], [-77.39939135775818, 34.5937417777051]], [[-77.21144058576836, 34.62160881416197], [-77.21131766849545, 34.62180174907913], [-77.21129910082065, 34.62181171696522], [-77.21126290121482, 34.62199109787063], [-77.21125455722529, 34.62203244550872], [-77.21124284940714, 34.622090461814366], [-77.21122281126327, 34.62218975648721], [-77.21132334082503, 34.62216208385598], [-77.2113562065029, 34.62213988335003], [-77.21141479624009, 34.62204510961348], [-77.21152789526951, 34.62201530036432], [-77.21157959808832, 34.62196452723005], [-77.21152756336653, 34.62193617963086], [-77.2116600700009, 34.62189132025162], [-77.21170625950037, 34.62184521302207], [-77.21171862152414, 34.62183343692602], [-77.21174196295377, 34.62181198699633], [-77.21181202144572, 34.62160513414955], [-77.2119537155425, 34.62154914599097], [-77.2118259519564, 34.62156400296068], [-77.21160972401933, 34.621589146418536]], [[-77.40302106344609, 34.50990372811366], [-77.40239152953066, 34.51004290232215], [-77.40301000316364, 34.51039786949806], [-77.40307280303807, 34.509944523054926]], [[-77.25895711809477, 34.58498828937684], [-77.25894939439294, 34.58502159135924], [-77.2589157080182, 34.58505666239032], [-77.25895357547805, 34.58511516626842], [-77.25926804524039, 34.58504666546602], [-77.2590523546049, 34.58491992333676]], [[-77.35006507663662, 34.6903075740904], [-77.35006610028216, 34.69025504985718], [-77.35008744047285, 34.69009527275385], [-77.35002095633077, 34.69026845941146], [-77.3500214765716, 34.69028939072959]], [[-77.43667488184619, 34.73409189406604], [-77.43695111757614, 34.73400694651088], [-77.43691889634114, 34.73377626811715], [-77.43698383108776, 34.73364287523175], [-77.43670362379179, 34.73360266242928], [-77.43645509918449, 34.73361420245468], [-77.43626244272184, 34.73362967918174], [-77.43620418534564, 34.73396815542386], [-77.43659554879677, 34.734173817646536]], [[-77.39042734923135, 34.658833930933156], [-77.39066398767169, 34.65862861765982], [-77.39075338334321, 34.658631364911386], [-77.39111034063527, 34.65858320963821], [-77.39119751775647, 34.658607658140994], [-77.3914232779049, 34.658662800742235], [-77.39154193500516, 34.658699521523346], [-77.39191647592072, 34.65881542967465], [-77.39201522908152, 34.65885392951019], [-77.3921660486625, 34.65910477109677], [-77.39214676195634, 34.65911910599137], [-77.39188275410709, 34.659315331045946], [-77.39165482161982, 34.65937664833956], [-77.39137245160826, 34.65938176437718], [-77.39133265926964, 34.65938294910235], [-77.39131550478336, 34.65938071269931], [-77.39101934116542, 34.6593587249952], [-77.3907316394048, 34.659336538964865], [-77.39043972264952, 34.65929428135564], [-77.3902657920483, 34.65930112978837], [-77.39014649047243, 34.65927387233379], [-77.38997268645159, 34.659312670421], [-77.3898081397829, 34.65940916333646], [-77.38967847907574, 34.65935929841058], [-77.38971498226945, 34.6592368739971], [-77.38975547065952, 34.65911514862448], [-77.38978037062324, 34.65880585258381], [-77.38978105667623, 34.65880490689351], [-77.39004771210932, 34.658720804499424], [-77.39012473983344, 34.65869952526613]], [[-77.45463995327307, 34.677434676755894], [-77.45481818572284, 34.677618281536475], [-77.45485672329923, 34.677814476490994], [-77.45504948419124, 34.67784871729819], [-77.45509032162269, 34.677932524121104], [-77.45509904425971, 34.67801677496493], [-77.45509653497464, 34.67802525580293], [-77.45499581119059, 34.67814409599374], [-77.45499483044354, 34.67814545183441], [-77.45498992214242, 34.678145774604225], [-77.4548164362877, 34.67813348999776], [-77.45470958666667, 34.678064601540314], [-77.45425217788664, 34.6779867942518], [-77.45422972429694, 34.67793595208743], [-77.4541107677907, 34.67737101591703], [-77.45447491760314, 34.67720856359675]], [[-77.47357343901292, 34.48585602192516], [-77.4735368948363, 34.485851716266836], [-77.47350217379613, 34.48589327319438], [-77.47357665846458, 34.485871028980974]], [[-77.35771259328878, 34.61237185960612], [-77.35780677965606, 34.6123988506629], [-77.35784644027694, 34.612463416633645], [-77.35782163563637, 34.612663116084136], [-77.35782818164009, 34.61270153676893], [-77.35777415404657, 34.6127210567408], [-77.35760951552543, 34.612740101872014], [-77.35744559448374, 34.61269767065992], [-77.35743344385563, 34.612332982293466], [-77.35760970497726, 34.61236988248373]], [[-77.22126028953356, 34.61347713952246], [-77.22119627067835, 34.61362618946134], [-77.22123443690238, 34.61381629602835], [-77.22138301006466, 34.61368750135432], [-77.22149351284696, 34.61372112016444], [-77.2215848605696, 34.61365687309976], [-77.2216193387678, 34.61356900709866], [-77.22169763574627, 34.613497245066995], [-77.22156913708312, 34.6134199501725], [-77.22179697798211, 34.61327641187777], [-77.22120692930334, 34.61320207275996]], [[-77.4436210274676, 34.73499989533052], [-77.4435115329594, 34.7350031278025], [-77.4434677754386, 34.7349899122675], [-77.44339753108164, 34.73498444063213], [-77.44316735036054, 34.73492025496774], [-77.44302593466529, 34.7349576311196], [-77.44296531471178, 34.73494158752101], [-77.44298197585525, 34.734885835812356], [-77.44309314306975, 34.734815472917184], [-77.44320323611959, 34.73479621364083], [-77.44344427188949, 34.73489327562779], [-77.4434942982148, 34.734898233466375], [-77.44382290377628, 34.73476407306702], [-77.4438539350623, 34.734763215781186], [-77.44393907362803, 34.73475846420173], [-77.44401671149635, 34.73475461388415], [-77.44404503796142, 34.73475307106964], [-77.44412473400295, 34.73475660468206], [-77.44417567971671, 34.73475917548937], [-77.44419700490133, 34.73478185283835], [-77.44421039212784, 34.734868454713634], [-77.44421310712244, 34.73492723254704], [-77.4441137267262, 34.734973328756354], [-77.44396062617626, 34.73498900216301], [-77.4439162933146, 34.7349911783], [-77.4438093990976, 34.73491716142695]], [[-77.46163955273664, 34.59571859048435], [-77.4616816456763, 34.59578440378288], [-77.46189244321509, 34.59604615883472], [-77.46193300390664, 34.59627413635812], [-77.46193299239033, 34.59649170647346], [-77.4617466515954, 34.596826298828894], [-77.46168895200293, 34.597025695250174], [-77.46154979263625, 34.59725174098285], [-77.46150873207502, 34.59731843854753], [-77.4613752232695, 34.59753530445243], [-77.46114382648436, 34.59769670401773], [-77.46109720951112, 34.59773513150482], [-77.46107671961596, 34.59774055590814], [-77.46071758306456, 34.59776082679268], [-77.46055763700139, 34.597684300312636], [-77.46037187915981, 34.59758783368781], [-77.46048821278531, 34.597430815425454], [-77.46069736400061, 34.597328314530536], [-77.46071911591886, 34.59731426415148], [-77.46073109025609, 34.59730994959588], [-77.46076404605498, 34.59724675094578], [-77.46084215261533, 34.59708438351679], [-77.46090501561086, 34.59703339775424], [-77.4612166192006, 34.596860446749446], [-77.46117877634727, 34.59661906475485], [-77.46127526298133, 34.5964660108179], [-77.46138289500193, 34.59629925134683], [-77.46154855783071, 34.596144283042364], [-77.46157020864767, 34.59580341306888], [-77.46158821607371, 34.59575171664257], [-77.46159490361892, 34.59571386795126]], [[-77.39736971491408, 34.508197423039405], [-77.39717387316858, 34.508163910241926], [-77.39684328377696, 34.5083955937025], [-77.39682951468863, 34.50843130864056], [-77.39677133022539, 34.50861511413413], [-77.39659231496357, 34.508921493436134], [-77.3966793687376, 34.5093515403268], [-77.39669238687931, 34.50939671896234], [-77.3967413756912, 34.50939737540937], [-77.39675384587213, 34.50939364398939], [-77.39676300536067, 34.50939221979963], [-77.39681332444147, 34.50937926095537], [-77.39731581497685, 34.50916446400802], [-77.39754386128575, 34.50916269103634], [-77.39774959281377, 34.50911638886302], [-77.39811091806945, 34.50905455133264], [-77.3981621032382, 34.50880383788279], [-77.39805946100299, 34.50870969440922], [-77.39794750120134, 34.50848352724471], [-77.39768870238073, 34.50827354777333], [-77.39756523419686, 34.508210618739675]], [[-77.33957430120358, 34.64882623127924], [-77.33973483502366, 34.64878159783098], [-77.33980630115877, 34.64879439093763], [-77.33991386371044, 34.64896659801576], [-77.33975636610636, 34.64888873943381]], [[-77.37736277398136, 34.59606740982567], [-77.37771736576579, 34.59560430697607], [-77.37779190924955, 34.59566133831748], [-77.37813768085131, 34.59592741214725], [-77.37813680941157, 34.59598330155647], [-77.37795467244344, 34.59615086971144], [-77.37771714945674, 34.59637076575172]], [[-77.36825558601778, 34.60441393413866], [-77.36836513280608, 34.60427433854622], [-77.36844303168895, 34.60414517845015], [-77.36851228360165, 34.60398697920076], [-77.36876357433667, 34.60397656486144], [-77.36876651714105, 34.60409859645803], [-77.3688793180884, 34.604259661730005], [-77.36886882969485, 34.604319838822654], [-77.36879926175583, 34.60435738459557], [-77.36864971692638, 34.60443534768312], [-77.36851758211589, 34.604416660327814], [-77.36838052535639, 34.60457873647101], [-77.36828760525164, 34.60462669627036], [-77.36825549564625, 34.60464583832697], [-77.36818948165266, 34.60467734136492], [-77.3680756482963, 34.604622637701986], [-77.36817055626298, 34.60451742274876]], [[-77.38835817594382, 34.59396716082524], [-77.38847746327662, 34.59374476431803], [-77.38869227008205, 34.593649999900265], [-77.38875230769504, 34.59366389072195], [-77.3890789276918, 34.59360225817531], [-77.38894384281278, 34.593973611244], [-77.38882877782873, 34.59407265346704], [-77.38875224186258, 34.594098809228484], [-77.38868870371155, 34.59415423872663], [-77.38860811820732, 34.5941772756059], [-77.38855518425905, 34.5941924786505], [-77.38851511798569, 34.59420454696411], [-77.38837824749841, 34.59424577343436], [-77.38835814630687, 34.59415715825735], [-77.38824525324802, 34.59419595347665], [-77.38831368585096, 34.59406446875304]], [[-77.36914405535337, 34.593326938261995], [-77.36917947751724, 34.592717326141155], [-77.36966322697415, 34.59269311185793], [-77.36981693646105, 34.59331251511787]], [[-77.33364701924837, 34.65672665894942], [-77.33370222200861, 34.65673543657159], [-77.3339532092041, 34.65665697118726], [-77.33426322281638, 34.65670324053684], [-77.33428219874013, 34.65670076352392], [-77.33450433724808, 34.65629583734374], [-77.33435282429734, 34.656716613274625], [-77.33431659287558, 34.65675306427569], [-77.33429671488818, 34.65677301301673], [-77.33422874289974, 34.656841300793765], [-77.33403030650571, 34.65704070594161], [-77.33386674902945, 34.657000402694436], [-77.33371065726199, 34.657043407991736], [-77.33342818277245, 34.65684345974892], [-77.33323955967677, 34.65650318585225], [-77.33317770599021, 34.65645582732418], [-77.33324342929888, 34.65641849264382], [-77.33326662371242, 34.65642699099468], [-77.3332762720548, 34.65643052611393]], [[-77.39516751029225, 34.621522353379085], [-77.39516492232882, 34.62182977038448], [-77.39545001489822, 34.62182470086086], [-77.39549373348264, 34.62189988158248], [-77.39558198997274, 34.62202930244058], [-77.39561640083035, 34.62209447780157], [-77.39544999535643, 34.6222109215785], [-77.39530755075799, 34.62219788808386], [-77.3952092538042, 34.62220018275243], [-77.3950557848953, 34.62207182245153], [-77.39496307359194, 34.62207625341468], [-77.3947705941593, 34.62200415952488], [-77.39449074638597, 34.6218039336107], [-77.39426736693127, 34.62180577873669], [-77.39401026990264, 34.621836904740135], [-77.39381892191635, 34.621775222515254], [-77.39352650847003, 34.62175897974235], [-77.39358808236804, 34.62144305492909], [-77.39360539021831, 34.6213230354571], [-77.3935788821816, 34.62058526401209], [-77.3942674119143, 34.62111595959951], [-77.3943282045125, 34.6211533335651], [-77.39451866248227, 34.62119134699978], [-77.39459745048197, 34.621249093516134], [-77.3946616177561, 34.62123553961317], [-77.39475310330457, 34.6212560726714], [-77.39491037626824, 34.62129151456279], [-77.39505581988179, 34.62144148007954]], [[-77.24578278076389, 34.59294039844711], [-77.24580288550115, 34.59300729970878], [-77.24594952348212, 34.59321797588325], [-77.2459928560296, 34.59323402478977], [-77.24602457970026, 34.59320450546028], [-77.24608274184871, 34.59319970582185], [-77.24624084918707, 34.5931605101772], [-77.24629368430668, 34.593115205619085], [-77.24632764092168, 34.59307643322137], [-77.24620560604856, 34.592973711564035], [-77.24625130151693, 34.592748827629315], [-77.24626604625576, 34.592732099690494], [-77.2461030681313, 34.59261696800801], [-77.24601868763648, 34.59282469485365]], [[-77.41781769405837, 34.7550539637331], [-77.41844848004057, 34.75496196518006], [-77.4188057709404, 34.75539930170567], [-77.41823590775297, 34.755695788036206], [-77.41819579358986, 34.7557151039556], [-77.41815020356154, 34.75572926047061], [-77.41811891821868, 34.7557952030256], [-77.4176947201617, 34.756392373782184], [-77.41761449318481, 34.75666019131375], [-77.41766544637007, 34.756876995713036], [-77.41774766842258, 34.757226840767714], [-77.41775764913314, 34.75726930780108], [-77.41776099089647, 34.757283526728294], [-77.41775441731191, 34.75735790062859], [-77.41772967347923, 34.75753907146726], [-77.41767236897176, 34.75764112660453], [-77.41756123840894, 34.75767021944104], [-77.4175057482258, 34.75761312324658], [-77.41740429261043, 34.757459518105854], [-77.41739018061446, 34.757438122455746], [-77.41731591920593, 34.75726942444521], [-77.41724435642811, 34.75708991002006], [-77.41730583762056, 34.757026921721405], [-77.4172201588069, 34.75698815365204], [-77.41707191376597, 34.756470555301526], [-77.41693453579603, 34.75628899443754], [-77.41687799742571, 34.75595533228051], [-77.4168559489323, 34.7558359882093], [-77.41692924487265, 34.75539847354879], [-77.41686501393067, 34.7552800705953], [-77.41681845367927, 34.75496071601857], [-77.41709449144483, 34.755208017150096], [-77.41770168612645, 34.75507642735667], [-77.41777495740145, 34.755073013453064], [-77.4177958441453, 34.75506166980276]], [[-77.37443405923817, 34.55912799829096], [-77.37457679607175, 34.559011894397685], [-77.37466806041243, 34.55909427723158], [-77.37460338304014, 34.55913229747708], [-77.3745767342575, 34.55919036283055], [-77.37445532543106, 34.55933721445133], [-77.37439492167292, 34.55936231131413], [-77.37435868868437, 34.55937379443913], [-77.37430968751504, 34.55928270095508]], [[-77.30927092129679, 34.55380865258502], [-77.3089879976227, 34.5536401755908], [-77.30882626425168, 34.55387248740227], [-77.30897960959675, 34.55399727059322]], [[-77.34824501945467, 34.62564572497825], [-77.34852995062231, 34.625645016100535], [-77.34857430816024, 34.6256466479655], [-77.34881403126805, 34.625667008976144], [-77.3488907813688, 34.625847776803155], [-77.34896552791236, 34.62601491670608], [-77.3489830067708, 34.626306610100194], [-77.34894563625082, 34.62637283080474], [-77.34865692719676, 34.62627675356759], [-77.34846991227151, 34.626348588910744], [-77.34821054639175, 34.62611860909607], [-77.34809745889388, 34.6259379877181], [-77.34816168386573, 34.625640878632375]], [[-77.39776527670315, 34.592331740702456], [-77.3977111393392, 34.592171303889586], [-77.39781629753918, 34.59205216379485], [-77.3978627028321, 34.592212725698744], [-77.39821037069888, 34.59209724981403], [-77.39826257653041, 34.59214879434073], [-77.39835672827611, 34.59219145980779], [-77.39838711948791, 34.59220892982607], [-77.39840740392069, 34.59221442379865], [-77.39847106041897, 34.592281108750214], [-77.39848056282247, 34.59230705687214], [-77.39852442738682, 34.592379552888445], [-77.39853331883111, 34.59251394086988], [-77.39826354395144, 34.59257216806419], [-77.39821035265976, 34.59255942440351], [-77.39808649699586, 34.592521575863714], [-77.3979752633083, 34.59249977615107], [-77.3978162838736, 34.592363863327485]], [[-77.36350396883185, 34.77096106674482], [-77.3634827515635, 34.77104547904793], [-77.36344403698143, 34.77098601613355], [-77.36323738903046, 34.77091225550727], [-77.36315930713275, 34.770867551596], [-77.36314711685435, 34.770870880838324], [-77.3630404719124, 34.7707077616484], [-77.36303077065848, 34.77068057681109], [-77.36318303703538, 34.770613622708616], [-77.36318944902887, 34.77056573596396], [-77.36336117257027, 34.77012800043979], [-77.3633694226048, 34.77011962824605], [-77.36342813272957, 34.76994191528115], [-77.36344884191014, 34.770147422073336], [-77.3635402262075, 34.77049971614302], [-77.36353761263709, 34.770737710758176]], [[-77.34477319596431, 34.688813335569584], [-77.34477349892603, 34.688809390246455], [-77.34477314053046, 34.6888087531358], [-77.34478201766699, 34.688782960926936], [-77.34477885922313, 34.68880796830061], [-77.34477964866508, 34.68881304523873]], [[-77.37850403826707, 34.527330125930334], [-77.37845124351827, 34.527452774402924], [-77.3785014054838, 34.52755898456126], [-77.37896814509308, 34.527555894979876], [-77.37880990829446, 34.527325374930925]], [[-77.45410407548151, 34.676815439082496], [-77.45419574672023, 34.67689508708605], [-77.45423681423654, 34.67701282981689], [-77.4544402880624, 34.67717651086186], [-77.45404245330855, 34.67725032715392], [-77.45411486139409, 34.67706276235128], [-77.45408461023496, 34.67692676497384]], [[-77.42518163147616, 34.62593776402734], [-77.42494522889967, 34.625950342271835], [-77.42467017101782, 34.625990178817304], [-77.42442513615309, 34.62610517039636], [-77.42420418977888, 34.626208857338185], [-77.42404711460887, 34.626282569806804], [-77.42379617564721, 34.6264402618493], [-77.42374982295732, 34.62647000444082], [-77.42368169105748, 34.62646437861633], [-77.42353036539518, 34.62655425460686], [-77.42327772259254, 34.62666632764795], [-77.42321836406383, 34.62664314373421], [-77.42325391206779, 34.62657927798518], [-77.42337719718388, 34.62635778131357], [-77.42346260802834, 34.62620432901383], [-77.42363148526668, 34.62603737587546], [-77.4237905797354, 34.62599008454589], [-77.42387043117427, 34.625949807465744], [-77.42391195572718, 34.625925518660075], [-77.42409078523258, 34.625794271252104], [-77.42433541135773, 34.62558643186024], [-77.42445218835138, 34.6254951719413], [-77.42451788043306, 34.62543344163941], [-77.42464004589317, 34.625251202021516], [-77.42474261852463, 34.625101182175314], [-77.42478243070843, 34.6249913129587], [-77.42482610127404, 34.624638047498436], [-77.4253300062108, 34.624566149918955], [-77.42533199208059, 34.624565303711584], [-77.42533450686044, 34.624565113073125], [-77.42588355601048, 34.62465952201316], [-77.426026629518, 34.6246290030885], [-77.42638713403015, 34.624578322431475], [-77.42647185551445, 34.6245420086131], [-77.42662411321228, 34.62448358616359], [-77.42674691256443, 34.62453010655528], [-77.42666485105967, 34.62463250227742], [-77.42661837774895, 34.62470481916128], [-77.42652148556651, 34.62477895510708], [-77.42645919100568, 34.62484172700016], [-77.42629742884166, 34.62490219946996], [-77.426124026298, 34.624967023226645], [-77.4259667283768, 34.624963565780675], [-77.42591239566718, 34.62507714605667], [-77.42584666280493, 34.62515584830447], [-77.42577346833266, 34.62533824478108], [-77.42552533458633, 34.625616633609766], [-77.4257116118754, 34.62592797512666], [-77.42571052793198, 34.625933101068334], [-77.42571096009559, 34.6259358286542], [-77.4257084798515, 34.62594160175971], [-77.42570261910505, 34.62593896319422], [-77.42569271019183, 34.62593817772107]], [[-77.36983589373585, 34.594393143536394], [-77.3695342949128, 34.59422320085706], [-77.36983628542643, 34.593357621258], [-77.37011170846668, 34.59414004004084]], [[-77.33459532409918, 34.65626135110305], [-77.33482702871865, 34.6562251941355], [-77.33493596345988, 34.65599670089392], [-77.33496120231828, 34.65596557136157], [-77.33496203364803, 34.656021038668975], [-77.33483815508062, 34.65622803661774], [-77.33482942562709, 34.65623712370211]], [[-77.43818144495636, 34.74120534226723], [-77.43818442253557, 34.74117724527996], [-77.43813615707938, 34.74117635169548], [-77.438114092992, 34.74120658662675], [-77.43801752346197, 34.74142758731169], [-77.43794236958045, 34.74150143140406], [-77.43792492100775, 34.74153499192021], [-77.437919019926, 34.74156937105677], [-77.43793833405746, 34.741614716221406], [-77.43795160305953, 34.741622588953796], [-77.438024256479, 34.741615223450935], [-77.43809179132394, 34.74159329321062], [-77.4381082559885, 34.741504614652], [-77.43814289034215, 34.74147138807092], [-77.43817158979213, 34.74123422367338]], [[-77.34877302635776, 34.65617892471553], [-77.34890465825039, 34.656171349378454], [-77.34902963770402, 34.65614096616784], [-77.3490950508605, 34.656115479915286], [-77.34916227207975, 34.65626475146833], [-77.34900991827655, 34.65628404643337], [-77.34892454599019, 34.656270246359], [-77.34884476593601, 34.65630201650315], [-77.34868211397803, 34.65635893371427], [-77.34872149900711, 34.65618697302761]], [[-77.39925448856674, 34.595734405046045], [-77.3991212140585, 34.595770033330446], [-77.3991289430883, 34.59561725828695], [-77.39914938676341, 34.59547369097103], [-77.39915195194206, 34.5953079227047], [-77.39915331216919, 34.595215412076385], [-77.3991954771708, 34.59518589634868], [-77.39921840148898, 34.59522674875005], [-77.39930679459368, 34.59535862743927], [-77.39931035738192, 34.595450467726266], [-77.39937439760729, 34.59546074810011], [-77.3993925149912, 34.59549183938287], [-77.39953182158082, 34.59563080356189], [-77.39939250973646, 34.59572600063083]], [[-77.22263924309988, 34.612708171420664], [-77.22271610602719, 34.612572264437226], [-77.22272433266632, 34.61256843525395], [-77.22298808363503, 34.61248548969543], [-77.22300797473308, 34.612472988500286], [-77.223107990794, 34.612427794270985], [-77.22312922653644, 34.612410764508866], [-77.22311108691802, 34.61236328867535], [-77.2231184611912, 34.61227273138125], [-77.2232376781803, 34.61218652138419], [-77.22295186595161, 34.612124508622124], [-77.22293306231042, 34.612128173741525], [-77.22256840763562, 34.61232044345765], [-77.22259467577834, 34.61246422513294], [-77.22261972412453, 34.61260133262218]], [[-77.45064553284892, 34.61235943629029], [-77.4506433735358, 34.612362016942654], [-77.45063659420819, 34.61236596327199], [-77.45042927217202, 34.61252965026019], [-77.45026643034197, 34.612471529879116], [-77.45035846175843, 34.61227104099811], [-77.45036022679062, 34.612262947408084], [-77.45036312190467, 34.61225932551801], [-77.45055794166775, 34.612039543355415], [-77.45075286595967, 34.61209062881474], [-77.45080967370161, 34.61199887900683], [-77.45085298971865, 34.612119619554214], [-77.45084563922396, 34.61213022839879], [-77.45070193095489, 34.61229540263294]], [[-77.33286666788055, 34.57069001846919], [-77.33281058225722, 34.570757724150916], [-77.33266895217298, 34.570930146693684], [-77.33254371615524, 34.57096343927731], [-77.3325266858509, 34.57079717689389], [-77.33263647965433, 34.57066273189082], [-77.33267466360965, 34.570510560672844], [-77.33281097892805, 34.57028485359304], [-77.33310235932206, 34.570281790844035], [-77.33289450899765, 34.570625642887315]], [[-77.4418103236418, 34.685871979307294], [-77.44181076714077, 34.68587134406388], [-77.4418116029565, 34.685869570881756], [-77.44186385735556, 34.68577119714985], [-77.44196355104793, 34.68580800942432], [-77.44197279008365, 34.685866142225386], [-77.44199258707414, 34.68593519258893], [-77.4419851113883, 34.6860222127586], [-77.44198093096423, 34.68607087608201], [-77.44197501160394, 34.68613978183585], [-77.44180128999162, 34.68609895480968], [-77.44184753330842, 34.68602423854533]], [[-77.38951765936774, 34.51100692368138], [-77.38899005082374, 34.511074390987744], [-77.38904487175516, 34.511365075004946], [-77.38912067508782, 34.51146881996962], [-77.38925102034068, 34.5114742599802], [-77.38941515810782, 34.51142632904711], [-77.38949711371002, 34.51132105160367]], [[-77.37312990798135, 34.67875401147487], [-77.3731387369825, 34.67857629319997], [-77.37319804996602, 34.67851907271847], [-77.37343294849923, 34.67853584155246]], [[-77.3645687110804, 34.68264016987596], [-77.36509759196946, 34.682571446673954], [-77.36492410523172, 34.68236656787727], [-77.36474032733396, 34.682254775240494]], [[-77.34247549941892, 34.53838737445904], [-77.34248250423481, 34.5384085070798], [-77.3424722436413, 34.538510252286784], [-77.34247240364417, 34.53860705892828], [-77.34246386023193, 34.538663955997926], [-77.34266670718203, 34.538727095301724], [-77.34265428819111, 34.53876122124123], [-77.34265611596676, 34.53894488344833], [-77.34268795233798, 34.538968857914064], [-77.34268125059553, 34.53898216482686], [-77.34269929349156, 34.539057899564696], [-77.34273974467906, 34.53898559233262], [-77.34274791558403, 34.53896023139653], [-77.34276005001279, 34.53874708047258], [-77.34280485561408, 34.53870722061309], [-77.34278840214793, 34.53865975007833], [-77.34277349762424, 34.538466913103576], [-77.34271596044312, 34.53833613748833], [-77.34268138976677, 34.53825802956226], [-77.34266338809981, 34.53823793491567], [-77.34252403960727, 34.538147259553014], [-77.34249799404958, 34.53826172890901], [-77.34248224908256, 34.538363455054885]], [[-77.34387577790767, 34.53911086887255], [-77.34375850727137, 34.539233104180006], [-77.34359617229083, 34.53949665220713], [-77.34354790591065, 34.53957959732319], [-77.34353227216175, 34.53961976944352], [-77.34346971127037, 34.539695620966974], [-77.34327702044608, 34.53999231077268], [-77.34325856843556, 34.5401108617872], [-77.3433327464919, 34.54017865143156], [-77.3434296940537, 34.54033106183379], [-77.34342966485312, 34.54034666826777], [-77.3434543384695, 34.54036161691913], [-77.34373126736364, 34.540359820252455], [-77.34395346498957, 34.54032157913459], [-77.3442421618619, 34.54024574298228], [-77.34428455291297, 34.54020807273391], [-77.34424507496755, 34.540119486925406], [-77.34420767984376, 34.53999936245517], [-77.34417565048673, 34.53997892151543], [-77.3441940280489, 34.5399418876841], [-77.34425194116963, 34.53982190124172], [-77.34427195212358, 34.539731424409865], [-77.34428152955766, 34.53971886888762], [-77.34425734536131, 34.539587680462844], [-77.34424556485357, 34.539488004833146], [-77.34421848639485, 34.53948311976904], [-77.3441893546628, 34.539442825501695], [-77.34406532405873, 34.53926033637535], [-77.34416446121264, 34.539182314657616], [-77.34413599127772, 34.53908821732359], [-77.34393330114503, 34.53906979400088]], [[-77.34536254481792, 34.53074981980146], [-77.34539540920386, 34.53083936095164], [-77.34541986276916, 34.530876338178814], [-77.34555662291761, 34.53091784033238], [-77.3456329914488, 34.530715061527815], [-77.34563682077174, 34.53071035253163], [-77.34563332170929, 34.5307067849978], [-77.34550828086671, 34.53056808293544], [-77.34533232215564, 34.53056025684887], [-77.3453989941993, 34.53065078135075]], [[-77.36996326071909, 34.51664288586982], [-77.37021401011462, 34.516342901426356], [-77.37041157454783, 34.516303422514504], [-77.3706652651392, 34.516562492482365]], [[-77.44191542061779, 34.68448887683093], [-77.4419093149902, 34.68453707494098], [-77.44191167408167, 34.68464907549685], [-77.44189911250125, 34.6847188896136], [-77.44192207165129, 34.68493175836875], [-77.4417486043576, 34.68478172487628], [-77.4417409631831, 34.68463575252859], [-77.44175954940113, 34.684595889595045], [-77.44173808226395, 34.68456291356268], [-77.44175590465682, 34.684473255696076], [-77.44181654120337, 34.684476056259655], [-77.44183242787173, 34.68441140930912]], [[-77.33289298339426, 34.53444010284885], [-77.33327044809778, 34.53427655591536], [-77.33312966408164, 34.53455534672714], [-77.33289133786728, 34.5345633502086]], [[-77.30309535341502, 34.55376474430086], [-77.30293027272522, 34.553984332990865], [-77.30286114912185, 34.554097933866736], [-77.30288281732867, 34.554118458016106], [-77.3028921997558, 34.55411305932957], [-77.30309057080015, 34.5539677398803], [-77.30312425884208, 34.55395649440241]], [[-77.42420845375501, 34.52521844998983], [-77.42424689009451, 34.52512573904825], [-77.42426781051257, 34.525090828083286], [-77.42430760770287, 34.52501836622684], [-77.42445451975081, 34.52498076520615], [-77.42444231758923, 34.525083831409134], [-77.42435348305705, 34.525110329000924], [-77.42441096109013, 34.52513453582369], [-77.42434921565979, 34.52523336772507], [-77.42433943296935, 34.525282102029635], [-77.4241622274546, 34.52532306139269], [-77.42419067805474, 34.52525628726964]], [[-77.35204277726488, 34.72974913745426], [-77.35201953067435, 34.72974808038026], [-77.35188514051261, 34.72977641084417], [-77.35185479449603, 34.72975152158966], [-77.35190261633785, 34.72971624369682], [-77.35203137072179, 34.72970836506522], [-77.35205375200873, 34.72971135250637], [-77.3520662708303, 34.729712125031305], [-77.35211839652936, 34.72971534159574], [-77.35210526318222, 34.729773836878294]], [[-77.43831072069784, 34.743766150226996], [-77.43833037164055, 34.74379478896085], [-77.43835054627834, 34.743811376038], [-77.43838323730589, 34.74382289055364], [-77.43838130832042, 34.74379081131326], [-77.43837462487018, 34.74377632705114], [-77.43837048866126, 34.743742464427605], [-77.43831673466713, 34.74371427625203]], [[-77.42434598320713, 34.74332581835275], [-77.42443868701008, 34.74313618323045], [-77.42443872531871, 34.74333975456623], [-77.42466865660741, 34.743449262448344], [-77.42467281275353, 34.743472994645664], [-77.42468885615811, 34.7436818159491], [-77.4246691353639, 34.74375124292153], [-77.4246322426454, 34.74379350759841], [-77.42455369973388, 34.743846259827315], [-77.42455084912363, 34.7438474955249], [-77.42442455733939, 34.74379204093333], [-77.42441486130369, 34.74377209488994], [-77.42436264601176, 34.74364412456158], [-77.42436241667662, 34.74359476758784], [-77.42435256814817, 34.74343358883166], [-77.42434985075958, 34.743376819445274], [-77.42434610616657, 34.74335880973688]], [[-77.39624413685415, 34.62284692284469], [-77.39623840584267, 34.622838786389096], [-77.39620420944034, 34.622683403566185], [-77.39616336658368, 34.6226524575607], [-77.39623841573135, 34.622595384707125], [-77.39626108907268, 34.62261394512875], [-77.39629666216116, 34.62263323495087], [-77.39637074931565, 34.622692310161526], [-77.3964355199962, 34.622742026153404], [-77.39649204062711, 34.62275647185723], [-77.39657732679142, 34.62295777829413], [-77.39657472004484, 34.62301770708153], [-77.39643550523334, 34.62312971726541], [-77.3963781116849, 34.62304606046959], [-77.39631989727835, 34.62296668486266], [-77.3962476926376, 34.622862585459], [-77.39624138545415, 34.62285349222563]], [[-77.39639008333418, 34.530669914301576], [-77.39641601501022, 34.530578472650014], [-77.39655970337282, 34.53054143067152], [-77.39657651957266, 34.53065651676729]], [[-77.42093211074533, 34.56855229525652], [-77.42092952383211, 34.56841071602828], [-77.4209438797767, 34.568338302203685], [-77.42106118768464, 34.56818230453403], [-77.4211337448236, 34.568176775482975], [-77.42135658136289, 34.5681726028248], [-77.42137121041347, 34.56839833852219], [-77.42139234616593, 34.56848579651976], [-77.4212582584398, 34.56860057803215], [-77.42118089195463, 34.56864525086163], [-77.42113209484734, 34.56865938536259], [-77.42106128847807, 34.56864572182975], [-77.42100208603532, 34.56860598012398]], [[-77.43532521954614, 34.62073418938475], [-77.43523440697231, 34.62068958643762], [-77.43517424318003, 34.62065153060841], [-77.43512569573632, 34.62059390950725], [-77.43511155915158, 34.62055398023156], [-77.43519117903386, 34.620462082381174], [-77.43523278442304, 34.620396409918044], [-77.43528329725092, 34.62043582630676], [-77.43537186457694, 34.620521586212874], [-77.43543971246598, 34.6205758647366], [-77.43570033580355, 34.620760047677564]], [[-77.44233223925755, 34.617687942797644], [-77.44236523759582, 34.61764132780563], [-77.44249861307954, 34.61764050958743], [-77.44239570610274, 34.61775263520866]], [[-77.33953639056946, 34.76201329447914], [-77.33952326271525, 34.76203050389738], [-77.33950624081034, 34.76203647343159], [-77.33947186661248, 34.76198497292511]], [[-77.44178491366445, 34.68508142030737], [-77.44192210968663, 34.684933489400294], [-77.4419077445031, 34.685161694514896], [-77.4419077694375, 34.68520674534497], [-77.44191690092049, 34.6852971404653], [-77.44181279032881, 34.685311514876304], [-77.4418000843841, 34.685206641102354], [-77.44179533475058, 34.685167436215615]], [[-77.44195319253299, 34.685730288639974], [-77.4418600886771, 34.685701908815346], [-77.441850094443, 34.68563217133105], [-77.44184138808794, 34.685547556619014], [-77.44192688987935, 34.68560011044107]], [[-77.45594949530143, 34.598114461593774], [-77.45593595105568, 34.59812249433942], [-77.45551099378801, 34.59845063985906], [-77.45522541693421, 34.59831757894763], [-77.45507633417859, 34.59825940385463], [-77.45510475524864, 34.59812857303373], [-77.45511899798694, 34.59797889544528], [-77.45511902473964, 34.5979787195485], [-77.4551190195926, 34.597978668389224], [-77.45511913648541, 34.597978452558465], [-77.45519185859256, 34.59784935839063], [-77.45524405416278, 34.59782567607563], [-77.45533825570996, 34.5978197881992], [-77.45544616367035, 34.59780709597476], [-77.45553764982745, 34.59785924303821], [-77.45569674757002, 34.59795783556601], [-77.45594358826449, 34.59811080107492], [-77.45594486504461, 34.59811159228759]], [[-77.44510145844848, 34.74641785525574], [-77.44529206073824, 34.74641480316636], [-77.44542261646237, 34.74653003147259], [-77.44525459809259, 34.74654429273699]], [[-77.39640777966564, 34.531622324760846], [-77.39637266112733, 34.53155064364008], [-77.39653458698571, 34.53152627186178], [-77.39647527040276, 34.53160053609599]], [[-77.39584548292368, 34.62227372810659], [-77.39584421042949, 34.62227653938589], [-77.39584100704556, 34.62227437356127], [-77.39583348539364, 34.622263906785534], [-77.39584421061772, 34.622272413058774]], [[-77.44158711434368, 34.73820247714625], [-77.44158313069438, 34.73817980188759], [-77.44150176534006, 34.73800754150345], [-77.44146362755613, 34.738013089742125], [-77.44145176702227, 34.73802840313387], [-77.44156687298167, 34.73819540556882], [-77.44157492422258, 34.73820816518561]], [[-77.35665986106633, 34.57037730505588], [-77.35658519047264, 34.57033556727916], [-77.35644992481173, 34.5702914950249], [-77.35630017065876, 34.570443080704266], [-77.35636334094798, 34.57055311819574], [-77.35640547289977, 34.570640199379625], [-77.35642286144216, 34.570666635169005], [-77.35644969210912, 34.570710462918846], [-77.35646344500144, 34.570646636772224], [-77.3566157750455, 34.57060992843668], [-77.3567373148972, 34.57047768347901]], [[-77.43588998938057, 34.62100138709353], [-77.43590498270635, 34.620931470005736], [-77.43594940157783, 34.62098445279665], [-77.43595880447945, 34.621128140194855]], [[-77.38325066018231, 34.588638146805415], [-77.38327544066544, 34.58867683835212], [-77.38330590244153, 34.58873632531489], [-77.38332361829319, 34.58874572619914], [-77.38330729909636, 34.58881274430274], [-77.38326745339799, 34.58881431813106], [-77.38323619147744, 34.58877694731934], [-77.38321936726147, 34.58874879879045], [-77.38323096479355, 34.58864664809582], [-77.38323063546761, 34.58864103324096], [-77.3832362305726, 34.58860026732008]], [[-77.33289805540696, 34.577529678521124], [-77.33280490933348, 34.577541368533176], [-77.33278974083714, 34.57753946245819], [-77.33280491690488, 34.57753228943988], [-77.33289690042416, 34.57751702022025], [-77.33291198484505, 34.57751268327031], [-77.33290910122176, 34.57752842266379]], [[-77.4356738446599, 34.621801480175996], [-77.43568034163475, 34.621837065597], [-77.43572668829333, 34.621878729086916], [-77.43571116726869, 34.62193524789988], [-77.43569727276376, 34.62197942396772], [-77.43569236066342, 34.6219961313471], [-77.4356831119109, 34.62204198294542], [-77.43563655883358, 34.62202643336931], [-77.43562937689195, 34.62199877601119], [-77.43561025941855, 34.62196739719959], [-77.43556711532504, 34.62192421146146], [-77.43558496803253, 34.621860942254116], [-77.43559997711871, 34.62182253435242], [-77.43561372913007, 34.62178845150967]], [[-77.33323196099425, 34.53127063680331], [-77.33326147576244, 34.53129512280124], [-77.3333600278605, 34.53125222171173], [-77.3332644341844, 34.53116765034442]], [[-77.34097756518841, 34.62605677900585], [-77.34095900544413, 34.6261967659968], [-77.34086694357751, 34.62607196514435], [-77.34092309807389, 34.626018034581875]], [[-77.34394521178878, 34.62911126053126], [-77.34394830650466, 34.62904621938367], [-77.34400477220248, 34.62901715531514], [-77.34407828809331, 34.62897705959161], [-77.34410626528738, 34.62900322001892], [-77.34409113168121, 34.62904097416409], [-77.34406986817585, 34.62915972338728], [-77.34400420585942, 34.62922823258338], [-77.34397482001992, 34.62925860315997], [-77.34386595441946, 34.629247214744545]], [[-77.37763070467909, 34.63147971869402], [-77.37755572769737, 34.63144188834991], [-77.37751057150038, 34.63142719801641], [-77.37748914499497, 34.631393968915255], [-77.37751059343867, 34.63134259408964], [-77.37754461530005, 34.631316467412276], [-77.37765039711536, 34.631326339972], [-77.37770770877393, 34.63140910148405], [-77.3779046084075, 34.631440264594644], [-77.37770767765869, 34.631530231078486]], [[-77.34259140480201, 34.539161779508035], [-77.34259180254934, 34.539170512730635], [-77.34262765590009, 34.5391794258356], [-77.34266593425423, 34.53911442484095]], [[-77.32144388736062, 34.643404921366006], [-77.32143997927852, 34.64339476525423], [-77.32146406115645, 34.643365001674205], [-77.32150690982634, 34.64345727555698]], [[-77.37516782989664, 34.5585737055552], [-77.37518739349971, 34.55859487472681], [-77.37522555251519, 34.5586516164269], [-77.37516777742606, 34.55872823750218], [-77.3751101501437, 34.55860600641737]], [[-77.3636279181856, 34.59008837935663], [-77.36362884056203, 34.59008281926818], [-77.3636404342671, 34.5900731005914], [-77.36365125021479, 34.59010374616476]], [[-77.34269071411465, 34.52721714744677], [-77.34267834136257, 34.52721732745187], [-77.3426757300136, 34.52721930331669], [-77.34267693257584, 34.527278320967746]], [[-77.223880386818, 34.6560450579475], [-77.22417715527936, 34.65595184222736], [-77.22407752290479, 34.655804604188845], [-77.2241082201734, 34.65559550840469], [-77.22151371502652, 34.655602339395216]], [[-77.26233582493151, 34.589964877605695], [-77.26244955655633, 34.58986920862816], [-77.26353327082424, 34.58915290876084], [-77.26405757156995, 34.58886705468162], [-77.26413155878475, 34.58825728754259], [-77.26520638184485, 34.587752540221395], [-77.26568092319278, 34.587681758674734], [-77.26601366200153, 34.58746261930223], [-77.26610524201547, 34.58740187229444], [-77.26607699741353, 34.58715096657317], [-77.26594654168295, 34.58698600584479], [-77.26575377955677, 34.58667040735707], [-77.26546778629088, 34.58664430961589], [-77.26544487757533, 34.58647522139273], [-77.26520146374196, 34.586009219353386], [-77.2649683329763, 34.585495074823925], [-77.26519698616735, 34.58462253682194], [-77.26536881800381, 34.58458389637043], [-77.26648429840827, 34.58445289682192], [-77.26704642353873, 34.58411490070844], [-77.26751928066267, 34.58405885956295], [-77.26776959291564, 34.58382999147917], [-77.26980236575213, 34.58346030478877], [-77.27117849030714, 34.582611705681316], [-77.2716654164382, 34.582488246045784], [-77.27198545518986, 34.582276038759424], [-77.27398029109293, 34.58191795076491], [-77.27430733215499, 34.58151582869546], [-77.27523317891708, 34.58078151559563], [-77.27540355410557, 34.58065929484138], [-77.27545940516899, 34.58060453022107], [-77.27564063448023, 34.58045533166554], [-77.27627524904636, 34.580015657515304], [-77.27701544560226, 34.580113733114885], [-77.27742920669328, 34.580252037811334], [-77.27829573916537, 34.580886471671406], [-77.27849126592474, 34.58103049346195], [-77.27864397957617, 34.581183531566126], [-77.27870554239568, 34.5813899852091], [-77.27837469052852, 34.58180905091483], [-77.27836197989306, 34.581834331824915], [-77.27821727611217, 34.582027422425945], [-77.27770299087632, 34.5825993723438], [-77.27763542204399, 34.58271992501917], [-77.27750342553723, 34.58287037871483], [-77.27689195416689, 34.58450681102865], [-77.27680559999428, 34.584540062614664], [-77.2768029344189, 34.58460258269043], [-77.2743379916975, 34.58623151170285], [-77.27452525172782, 34.58765971220467], [-77.27417102797631, 34.58810373830046], [-77.27334734051074, 34.5888366543935], [-77.27234610241004, 34.58984566087422], [-77.27168646408549, 34.59039300492569], [-77.27050251857985, 34.590615023906544], [-77.26750081437885, 34.59192884002857], [-77.26636216166816, 34.592133819218326], [-77.26497298506632, 34.59230996416775], [-77.2639462961723, 34.59235800404123], [-77.26295867230081, 34.59219566985861], [-77.26198391702991, 34.5922808857142], [-77.26130749633666, 34.59274854481214], [-77.26110579320348, 34.59281448680461], [-77.26087367179228, 34.59350869747327], [-77.26086625210732, 34.59365651226619], [-77.26074253478141, 34.59380594311488], [-77.26042343796578, 34.59387393491048], [-77.26025016900725, 34.59374218269798], [-77.25970667747956, 34.59356529011592], [-77.25911344292005, 34.593433030710294], [-77.25954969297823, 34.59274516880417], [-77.26065867922995, 34.592697506561414], [-77.26044568367533, 34.59219931777781], [-77.26119399710643, 34.59157843090166], [-77.2615657064579, 34.590883502889696], [-77.26230633936947, 34.59003286649277], [-77.26230041954885, 34.58999861984519]], [[-77.37658136423951, 34.533702059581366], [-77.3767690548647, 34.533699009283666], [-77.37697545889557, 34.53363329849493], [-77.37710148859401, 34.53360143483722], [-77.37737117391057, 34.533493057739506], [-77.37776045092521, 34.5334311877975], [-77.37776512754348, 34.53343043505594], [-77.37776870324062, 34.53342930613094], [-77.37778345662015, 34.53342496491989], [-77.37816117910192, 34.533275239521714], [-77.37835615522162, 34.53334239989436], [-77.37815544389628, 34.53352822802102], [-77.37811944745845, 34.53359991791382], [-77.378106704376, 34.533623192918164], [-77.37806744802577, 34.53368156841247], [-77.37786046340348, 34.53397062399928], [-77.37763971796582, 34.53418017513656], [-77.37735172978876, 34.534350414909355], [-77.37707085363368, 34.534436155494944], [-77.37695636914593, 34.534474856670855], [-77.37680424584983, 34.534450217291734], [-77.3765636997856, 34.53448062351371], [-77.37621140886833, 34.53460405465758], [-77.3762640835854, 34.534378483245725], [-77.37598322616883, 34.5340508396891], [-77.37600444221596, 34.533926252641095]], [[-77.36078989468457, 34.570865119079045], [-77.36104873344465, 34.570959464089775], [-77.36117725719077, 34.57114362955356], [-77.36123711728108, 34.571218299427656], [-77.36117708788434, 34.571483481654994], [-77.36114498534373, 34.57162159932359], [-77.361118389092, 34.57165994774482], [-77.36100635370568, 34.57185985605041], [-77.36083756008559, 34.57218399543053], [-77.36071430219098, 34.57221642113683], [-77.36038892084343, 34.57187178785402], [-77.36028029907834, 34.57189764494666], [-77.36018329720567, 34.57179457567432], [-77.359974089035, 34.57142285186928], [-77.35975485486985, 34.571172611269866], [-77.3596351083666, 34.571024390776735], [-77.35960920781264, 34.57101969229293], [-77.35960139061629, 34.571013343353705], [-77.35947094834577, 34.57090740114745], [-77.35940049899173, 34.57085018381881], [-77.35935575704183, 34.57079979481258], [-77.35923009765183, 34.570658144701625], [-77.35924098108393, 34.57062062004468], [-77.35934142829859, 34.57036161806157], [-77.3594759729175, 34.5703337235354], [-77.35960176412166, 34.57029166471972], [-77.35972623398598, 34.570296296682535], [-77.35985039162799, 34.57030091696578], [-77.35999565854084, 34.57045767796414], [-77.36003773906207, 34.57049650390037], [-77.3600639259503, 34.57053810144644], [-77.36008636888484, 34.570632716101514], [-77.36013334186018, 34.57095266107508], [-77.36014881093067, 34.57111583353578], [-77.36006237098282, 34.57131506986055], [-77.36020441097513, 34.571167771586175], [-77.3603893412781, 34.57104337479013], [-77.36045445488564, 34.57097655954208], [-77.3607775432923, 34.570866239314945], [-77.36078341492394, 34.57086315327532]], [[-77.2475956502579, 34.60256098859385], [-77.2501174832414, 34.60276094148185], [-77.25075054557172, 34.60299162477794], [-77.25106062437246, 34.60306130282209], [-77.25288616608184, 34.603398052344886], [-77.25084441717922, 34.60340744318369], [-77.25055213080668, 34.6033836382019], [-77.24916409736825, 34.603771218481214], [-77.24706577161015, 34.603607783128716], [-77.24664335264809, 34.60324520518695], [-77.24636777042952, 34.602884778103736], [-77.24639707801052, 34.60208141141902]], [[-77.33175515770152, 34.684285058874764], [-77.33172267915054, 34.68428572908741], [-77.33166327802272, 34.684313230879354], [-77.33108550357561, 34.684418572294], [-77.3307577077569, 34.68422166880106], [-77.3305690963114, 34.68413582717057], [-77.33031794781584, 34.68416586695166], [-77.3301946293394, 34.68417779548997], [-77.32994179982802, 34.684234668750925], [-77.32950867917836, 34.684566820234515], [-77.32979463818482, 34.6847410595909], [-77.32995070884559, 34.68484250265982], [-77.3303198540322, 34.68492729872292], [-77.33034119312644, 34.684920074285664], [-77.33035411261172, 34.684938266328004], [-77.3306784261862, 34.68507089776379], [-77.33087934548804, 34.68512800619648], [-77.33142593083329, 34.68528407103368], [-77.33144616380687, 34.685287847535946], [-77.33199691240078, 34.685401897985216], [-77.3322870514419, 34.685409831002865], [-77.33315293129552, 34.685524774971974], [-77.3331582603828, 34.68552512890458], [-77.3331637434918, 34.68552360982308], [-77.33435948994983, 34.68531804704666], [-77.33439357308215, 34.684577428291306], [-77.33410110354556, 34.68442441170588], [-77.33407834693581, 34.684418606215345], [-77.33372228852653, 34.68430563377717], [-77.33353156783603, 34.68424036557431], [-77.3331939771675, 34.68428435358151], [-77.33291777143046, 34.68429277568075], [-77.3326975859368, 34.684305741486725], [-77.3323158780397, 34.684304212519784]], [[-77.4240212483204, 34.50100052549957], [-77.42332809296403, 34.50120842586293], [-77.42327394324957, 34.50123140096052], [-77.42322670840333, 34.501246341003245], [-77.42305225231705, 34.501287484106484], [-77.42304077586577, 34.501193749190506], [-77.42311293992474, 34.50115313042189], [-77.42319418146414, 34.50112720066949], [-77.42353485049092, 34.500764069504264], [-77.42373457602032, 34.50064026878922], [-77.42380346203758, 34.500597569227054], [-77.42393849430643, 34.50056406205214], [-77.42416868885711, 34.50047803561283], [-77.42434259756857, 34.50040105181861], [-77.42466859731778, 34.50044365078864], [-77.42461445812593, 34.500598586421354], [-77.42455031336414, 34.500663556290135], [-77.42453670093019, 34.50076350108185], [-77.42445906791747, 34.50082764161131], [-77.42435090949566, 34.50086370227781], [-77.4242330779256, 34.50091687932166]], [[-77.34619518139075, 34.629954127502685], [-77.34598665846724, 34.63011847599902], [-77.34580365420643, 34.63011132152254], [-77.3456292702927, 34.63032369425201], [-77.34538706263938, 34.63038957919923], [-77.34535326615917, 34.63073099379054], [-77.34520881041352, 34.63089036925089], [-77.34513133886539, 34.63103154814246], [-77.3450296364513, 34.63086552384189], [-77.34497204741547, 34.630783339239585], [-77.34463908437772, 34.63049074390019], [-77.34456898155422, 34.630416683886], [-77.34445192638893, 34.6302872798548], [-77.34440411873881, 34.63013904268553], [-77.34445208992673, 34.63001073451551], [-77.3445796797661, 34.62987926986786], [-77.34475764771892, 34.62980190484014], [-77.3448658236245, 34.6297103444079], [-77.34534440303617, 34.62968252833657], [-77.34546469726484, 34.62950480147876], [-77.345861982743, 34.62921714985112], [-77.34603034001117, 34.62913392314248], [-77.34619649704777, 34.6291436788765], [-77.34635178550883, 34.628905880291306], [-77.34607179841576, 34.628801622574635], [-77.3459678491549, 34.62882298160164], [-77.34583340919467, 34.628804671163], [-77.34552898736511, 34.62872839639034], [-77.34520948154164, 34.628234847929306], [-77.34520262815941, 34.62822650633807], [-77.34520226815066, 34.62821973044901], [-77.34520173803126, 34.62821488368102], [-77.34519758014163, 34.628175625050595], [-77.3451428793903, 34.62749270454769], [-77.34522248272455, 34.62737295512251], [-77.34517655086455, 34.626856920125604], [-77.34542050424098, 34.626501762883166], [-77.34503538423174, 34.62626129820843], [-77.34481739906727, 34.62628375162812], [-77.34445670957132, 34.62618478072841], [-77.34396155418676, 34.62609154856425], [-77.3437247120527, 34.62589061584433], [-77.34353210428768, 34.62579385365533], [-77.3433004032256, 34.625105794043975], [-77.34329997627506, 34.62510539239118], [-77.34330013726967, 34.625104913783126], [-77.34330017892067, 34.62510485981982], [-77.34330021417455, 34.62510485316035], [-77.34330224317735, 34.6251009030543], [-77.34353125816904, 34.62466177257929], [-77.34353414093327, 34.62465609149392], [-77.3438048821751, 34.62467956184962], [-77.34385025709676, 34.62465643964315], [-77.34388289202856, 34.624648129504614], [-77.3441124746723, 34.62464448676856], [-77.34418380466511, 34.62472351002485], [-77.34431037234229, 34.62471368090381], [-77.34449464097143, 34.624677551433805], [-77.34466627961834, 34.62469589297632], [-77.34497902129816, 34.62467080990119], [-77.34513045175119, 34.624655999405206], [-77.34525482076248, 34.6245947262899], [-77.34529952061615, 34.624589976120795], [-77.34543437536242, 34.62457564524603], [-77.34557559577931, 34.62456063771272], [-77.34560583614645, 34.62455742404636], [-77.34576892100202, 34.62464767446138], [-77.34585397872816, 34.624640083466545], [-77.34615458953739, 34.624712958510415], [-77.34602557035898, 34.624980793274794], [-77.34599095654349, 34.62557942987044], [-77.34623705554446, 34.62617785550171], [-77.34671649289014, 34.62617741268012], [-77.34683996507897, 34.62630683884566], [-77.34708219840466, 34.62680052274689], [-77.34742574007372, 34.62707039451686], [-77.34749495971919, 34.627131295140984], [-77.3475798570541, 34.62728799405061], [-77.34759434696949, 34.62711277367517], [-77.34804440108998, 34.62719136316158], [-77.34820069433565, 34.62719183772715], [-77.34843502489481, 34.62723048480856], [-77.34858624639291, 34.62726647548973], [-77.34862232319928, 34.62740535662673], [-77.34860198207946, 34.62759584756323], [-77.34860575387884, 34.62772348455292], [-77.34856416413275, 34.62775804763576], [-77.34841534960873, 34.627879311605255], [-77.34835052723486, 34.627937287597355], [-77.34818334127313, 34.628064470920485], [-77.34787968909725, 34.62804638928587], [-77.34782651536428, 34.62828135676973], [-77.34778729523076, 34.628320078645096], [-77.34755897822015, 34.62841415723768], [-77.34741835613153, 34.628759411289536], [-77.34733104449779, 34.628868548979334], [-77.34733442272106, 34.629192938940655], [-77.34732521762521, 34.62920617680506], [-77.34706965783818, 34.62929170917984], [-77.34705165322109, 34.6294376592977], [-77.3469895649723, 34.62966229829179], [-77.34688548907747, 34.62978696615458], [-77.34685053021227, 34.629892391708275], [-77.34682764724886, 34.62991572726188], [-77.34672873459739, 34.629974215792004], [-77.34660599044915, 34.630040173481646], [-77.34651967761059, 34.62997604209048], [-77.34639466003024, 34.629995909273966]], [[-77.38453897265502, 34.6582165564868], [-77.38452829402247, 34.65824185516861], [-77.38388709190495, 34.658159744965076], [-77.38363894419031, 34.65807934451582], [-77.38350193671499, 34.65803406898779], [-77.38314074146858, 34.65763415264839], [-77.38312495477703, 34.65761171877721], [-77.38309931228362, 34.65757607207435], [-77.38277783510739, 34.657170623770824], [-77.38271937517061, 34.6568234903704], [-77.38259712596287, 34.65644080026934], [-77.3825906956916, 34.656419179225466], [-77.38258500923831, 34.6564035252704], [-77.38242316826938, 34.65602021259002], [-77.38233288271184, 34.65575396153858], [-77.3822704878395, 34.655469240982356], [-77.3822680763682, 34.655197518326105], [-77.38230202658512, 34.6550610897085], [-77.38235563944204, 34.654881742896094], [-77.38244501452601, 34.65438247617361], [-77.38244533064747, 34.65432909432297], [-77.38244563210631, 34.6542987610734], [-77.38245225166277, 34.65421755208533], [-77.38264788222921, 34.653980403371456], [-77.38309079736506, 34.6542335786945], [-77.38309693278606, 34.654238801009775], [-77.38309720948155, 34.65423911433221], [-77.38309792148344, 34.654239297825576], [-77.38367484919301, 34.65424351279613], [-77.38375034553297, 34.654303372930606], [-77.38415076858357, 34.65444951970407], [-77.38448919300735, 34.654791871366136], [-77.38484833756499, 34.6548424588538], [-77.38497595614126, 34.655112576627545], [-77.38507109339663, 34.655655840830796], [-77.38533014842382, 34.65578695358924], [-77.38585783667247, 34.65566328342259], [-77.38603297483897, 34.65564375924957], [-77.38649419662943, 34.655207562577516], [-77.38780434531738, 34.655961942754644], [-77.38795556787935, 34.65546049972626], [-77.38811345852417, 34.65591010268715], [-77.38819863995606, 34.65606786139019], [-77.38800952487055, 34.656153287581446], [-77.38797689582607, 34.65620907462545], [-77.38794057750238, 34.65742273270385], [-77.38730686571392, 34.657388589752166], [-77.38692267806445, 34.65733336792894], [-77.38643897336449, 34.657155664924], [-77.38634565474041, 34.65699508217105], [-77.38609531410577, 34.65703566990123], [-77.38595021755225, 34.657222930168984], [-77.38571826419934, 34.657350928493294], [-77.38567759053876, 34.65751081332197], [-77.38530020574885, 34.65762794173144], [-77.38460653267146, 34.65814341464145]], [[-77.35600383401497, 34.550762522645286], [-77.3559145975874, 34.550861852825484], [-77.3557721469879, 34.551025710521735], [-77.35575792781395, 34.5510339979909], [-77.35573679321259, 34.55104578845292], [-77.35537567695518, 34.551193496123226], [-77.35518466188886, 34.55124366190955], [-77.35517455166482, 34.55124689943047], [-77.3549795445672, 34.55134648960455], [-77.35484872350352, 34.55141845181281], [-77.35471546841897, 34.551520276273976], [-77.35441472183489, 34.55172574732211], [-77.35430077917502, 34.551815253989645], [-77.35418217470253, 34.551874730076094], [-77.35388738188291, 34.55204647698667], [-77.3538301642324, 34.55208302012827], [-77.35378412286823, 34.55211110006971], [-77.35365558653166, 34.552159299967045], [-77.35338773057971, 34.55227508354517], [-77.35329213973321, 34.55231798584965], [-77.35300524983543, 34.55241827037305], [-77.35299496877363, 34.552421767262054], [-77.35299170576967, 34.552422992264205], [-77.35298512225397, 34.55242524032773], [-77.35279383953525, 34.552490557419326], [-77.35271440787612, 34.55250939114748], [-77.35263475549841, 34.55249487287685], [-77.35259767357631, 34.55248407823942], [-77.35259156524383, 34.552481655930286], [-77.35258381023363, 34.55247892858806], [-77.35220843344764, 34.55233653280851], [-77.35216444370967, 34.5523221013769], [-77.35213072004547, 34.55229931885703], [-77.35197730090404, 34.55222233552264], [-77.35182099933945, 34.55211044228715], [-77.35181261192348, 34.5521055804355], [-77.35180814874714, 34.55210092319027], [-77.35179426298534, 34.552085898633536], [-77.35159914612773, 34.55188618166358], [-77.35156044723067, 34.551813648797825], [-77.35152304723661, 34.551705545294055], [-77.35151848679534, 34.5516529688334], [-77.35144236021748, 34.55150174708713], [-77.35140701745695, 34.551447012533345], [-77.35139340857414, 34.55142614876472], [-77.3513848722879, 34.551389928201644], [-77.35130043967106, 34.55119470735302], [-77.35128964338661, 34.551053095910035], [-77.35126862100506, 34.55095446527068], [-77.3512179769932, 34.55081195351684], [-77.35119525993625, 34.550720201999766], [-77.35115513041649, 34.5506721483101], [-77.35107233674069, 34.55051848876751], [-77.35105940584685, 34.55050321483671], [-77.35105383442134, 34.55049573458691], [-77.3509311994713, 34.55035885765096], [-77.3508972118393, 34.55027345396067], [-77.35085413999364, 34.550138142258696], [-77.35108168271475, 34.550111907843714], [-77.3512184241088, 34.55006702732695], [-77.3512793110197, 34.55005452455207], [-77.35143355328847, 34.549978759435234], [-77.35147783809822, 34.549958020890905], [-77.35149001979161, 34.54995080823516], [-77.35150723863121, 34.54994083735679], [-77.35170633589999, 34.54980768931443], [-77.35175391171877, 34.54978292432969], [-77.35186824714013, 34.54964985051515], [-77.35187061821485, 34.54964371645426], [-77.35187349484723, 34.549640650082765], [-77.3518777712569, 34.54963965418494], [-77.35188118341024, 34.54964006229245], [-77.35227367198549, 34.549496684098045], [-77.35246231447431, 34.54943041413896], [-77.35247156701288, 34.54942758442803], [-77.35248689959842, 34.5494231078066], [-77.35266914428595, 34.54937230419745], [-77.35300411376821, 34.54927311467004], [-77.35310446138445, 34.549246125907885], [-77.3534584411262, 34.54919514877485], [-77.35370142311395, 34.549228210445875], [-77.35385027969679, 34.54922892209669], [-77.35397824928879, 34.549260108548026], [-77.35416621742388, 34.549313295701594], [-77.35421054026808, 34.54932570507157], [-77.35424047756705, 34.54933419712048], [-77.35438065859174, 34.54937035758006], [-77.35446504091338, 34.549374495635256], [-77.35463274101492, 34.549349486127035], [-77.35473294983261, 34.549293400028034], [-77.35497567880395, 34.54922946740608], [-77.35502842715934, 34.54921557394172], [-77.35507037547013, 34.54920920859683], [-77.35522519747525, 34.54919536416341], [-77.35539283407331, 34.54915517477683], [-77.35542261497882, 34.549146931008025], [-77.35546038090351, 34.54912699826592], [-77.35565422869098, 34.54899654696441], [-77.35577539166792, 34.548865689222296], [-77.35580577104855, 34.54883245344443], [-77.35581233648438, 34.54882510339905], [-77.35582287832456, 34.54881330170175], [-77.35597373073901, 34.548655258798384], [-77.3561819534845, 34.54853347429682], [-77.35620545560556, 34.54851963555144], [-77.35622244797149, 34.54850979004016], [-77.3564512796591, 34.548390872001924], [-77.35662031667732, 34.548280358047826], [-77.35666556369794, 34.548246762522716], [-77.35670577853172, 34.548213237786875], [-77.35679480522481, 34.548061273889225], [-77.35682577137666, 34.547951139262025], [-77.3569127239762, 34.54776366504923], [-77.35686528912271, 34.54770062672734], [-77.35691662106466, 34.54762379987219], [-77.35694471355714, 34.54744436874387], [-77.35703654164988, 34.54724982528873], [-77.35705860883935, 34.54719614149705], [-77.35714168130937, 34.547171187442245], [-77.35743276961985, 34.54709164363555], [-77.35755674147148, 34.54711142870468], [-77.35773796899016, 34.54713916104163], [-77.35782413917127, 34.54714548297103], [-77.35800227565682, 34.54715855179397], [-77.35802778126006, 34.54716121807661], [-77.35821575550546, 34.547188564541734], [-77.35829274182201, 34.547202081112275], [-77.35835673190775, 34.547241068637845], [-77.35847908111087, 34.547302442342584], [-77.3585442170838, 34.547336485484045], [-77.3586035718809, 34.54739761180149], [-77.35864337969734, 34.54741948325211], [-77.35865809763756, 34.54744250007868], [-77.35864149608429, 34.5474695670166], [-77.35862115201799, 34.54767768160586], [-77.35861418004555, 34.547693647297066], [-77.35861127057011, 34.54770323090254], [-77.35860079197246, 34.547934466568485], [-77.3586002620003, 34.54794047498495], [-77.35859966291706, 34.54794595328865], [-77.35861102724803, 34.54806133676615], [-77.35859647383086, 34.54817911151504], [-77.35859882655062, 34.548185505314756], [-77.35859488160116, 34.54819199699354], [-77.35858459903953, 34.54822620054059], [-77.35852923421088, 34.548408426616405], [-77.35850364332586, 34.5484440338076], [-77.35849536180527, 34.548497006136664], [-77.3584364938078, 34.54861167445371], [-77.35838364093684, 34.54870613587988], [-77.35837712180282, 34.54871411502337], [-77.35830352208647, 34.54879534812295], [-77.35817578616765, 34.54893376437474], [-77.35814903355742, 34.5489685530888], [-77.35813716079375, 34.548986448020834], [-77.35809604131418, 34.549040570016075], [-77.35803395961369, 34.549123718653235], [-77.35801313556466, 34.54915080328598], [-77.35792499098989, 34.549261819435145], [-77.3578730302668, 34.54933100657337], [-77.3578209553842, 34.54939921008786], [-77.35777118173617, 34.54945731729437], [-77.35772155132254, 34.54950567627832], [-77.35765632563528, 34.54954532457597], [-77.35757167981956, 34.54959677766122], [-77.35748816400024, 34.54964049371749], [-77.35737236459822, 34.54972805992382], [-77.357258382856, 34.549777065744266], [-77.35700395825806, 34.549884070918594], [-77.35697586107038, 34.54989772789796], [-77.35674234625921, 34.55002273174651], [-77.35657651351099, 34.55019140229278], [-77.35637532943953, 34.55034090395252], [-77.35631786021497, 34.550472492017775], [-77.35617500796326, 34.55057908209473], [-77.35607106435519, 34.550689609024175]], [[-77.40136300368388, 34.58404208505791], [-77.40171953446382, 34.58402350811521], [-77.40175704003948, 34.58402607859092], [-77.40178624660268, 34.58402282349579], [-77.40206512999825, 34.583921441549236], [-77.40215107597412, 34.58388986390622], [-77.40238785447525, 34.58379803135091], [-77.40254511040106, 34.58373107462246], [-77.40285594319057, 34.58356499808071], [-77.40293914280794, 34.58353260457943], [-77.40299568550417, 34.583516108196775], [-77.40323442607274, 34.583527132601446], [-77.40333317740593, 34.583590739865215], [-77.40343954279844, 34.583701093265034], [-77.40372722062449, 34.58403624752507], [-77.40378253715953, 34.58413117431076], [-77.40380707096463, 34.58418723553443], [-77.40384208230161, 34.58430593987053], [-77.40394538854284, 34.58459184922985], [-77.40398844764229, 34.58472875488753], [-77.40407035368082, 34.5849983901222], [-77.40407913682944, 34.58504253451093], [-77.40410345068854, 34.585398965502904], [-77.40410369497032, 34.585418154485936], [-77.40410229954773, 34.58543882146057], [-77.40408622985146, 34.58584525072802], [-77.404014291724, 34.58616489609787], [-77.40399409214376, 34.58628312499244], [-77.40391032062064, 34.58652256395551], [-77.40384786251283, 34.58672880511709], [-77.4038185415301, 34.58683136532098], [-77.40372728928234, 34.58712334674138], [-77.40371534758467, 34.587159638044284], [-77.40371042688699, 34.587173215871616], [-77.40358774919396, 34.5874651381712], [-77.40348113664692, 34.58763088216199], [-77.4033332551342, 34.587987895537964], [-77.40330177226704, 34.58804742044427], [-77.4032993162934, 34.58808169744435], [-77.40330238754328, 34.588114515021125], [-77.40330814418122, 34.58850499926505], [-77.4033302807068, 34.58892315595568], [-77.40333035349325, 34.58892636999884], [-77.40332846793122, 34.58893181995551], [-77.40325705478007, 34.58936152356672], [-77.40314404507197, 34.58959851171926], [-77.40293923294361, 34.59010795931687], [-77.40289347699263, 34.59021384207548], [-77.40282120147151, 34.59027357222535], [-77.40286355538895, 34.59034900032963], [-77.40292604873542, 34.59110759339512], [-77.40293214018565, 34.59111437398705], [-77.40293925049035, 34.59117325495871], [-77.40302301843406, 34.5918525112897], [-77.40302318059011, 34.59194272767668], [-77.40304514702922, 34.592053634461536], [-77.40307561928054, 34.592212831702895], [-77.40310036974165, 34.59235616431963], [-77.4031274455712, 34.59257409800137], [-77.40325119231863, 34.59275897473256], [-77.40293928956662, 34.59338105952065], [-77.40285889032776, 34.593578112856605], [-77.4028099001382, 34.593671806753], [-77.40250369651099, 34.59409583222442], [-77.40247135144187, 34.594145235196265], [-77.40231233618465, 34.5943418510261], [-77.40216984038072, 34.59459317089025], [-77.4021569650216, 34.59461517560437], [-77.40215499377065, 34.594619611308374], [-77.402151140693, 34.59462811473511], [-77.40195343422994, 34.59506911886312], [-77.40188559743754, 34.59521739031891], [-77.40175705868836, 34.59541391478846], [-77.40171392839451, 34.59548178565123], [-77.40167755899982, 34.5955335004111], [-77.4015478512476, 34.59575139841704], [-77.40139516960086, 34.595998820915966], [-77.40138207097442, 34.59602128997565], [-77.40136296936407, 34.5960445981441], [-77.40118477984626, 34.596261779813474], [-77.4009886252417, 34.59648205398177], [-77.40096887476354, 34.59650784618669], [-77.40079420186706, 34.59674649958217], [-77.40070560664475, 34.59680651545523], [-77.40057477640333, 34.59689710038461], [-77.40053067685214, 34.59692519196442], [-77.40042803424302, 34.59698751072449], [-77.40025731809406, 34.597094709373636], [-77.40018067604848, 34.59714723907919], [-77.39982386246828, 34.59749925189616], [-77.39980929472266, 34.59752583424085], [-77.39978657050221, 34.59756729968766], [-77.39950181355341, 34.597970287798276], [-77.39947342435012, 34.59806160797946], [-77.39915431626065, 34.598444993573864], [-77.39906772681539, 34.59853223170851], [-77.39899834395409, 34.598555610408376], [-77.39887853968202, 34.59861384257006], [-77.39860423163448, 34.59878425957257], [-77.39846176331879, 34.59881599532951], [-77.39821012044423, 34.59891711094148], [-77.39792880164637, 34.598924851546016], [-77.3978160117697, 34.59894882956236], [-77.39773042637829, 34.59898277617184], [-77.39742189407613, 34.59918124926496], [-77.3971430262861, 34.59928386259042], [-77.39702777887439, 34.59931324843721], [-77.39670236604313, 34.59957382294444], [-77.39663365259838, 34.599631245259914], [-77.39661969981218, 34.599644738086575], [-77.3965911566523, 34.599663885675085], [-77.39623952630357, 34.599897262462335], [-77.3960606523188, 34.599972283350546], [-77.39584539755135, 34.60016250260007], [-77.39546906995501, 34.60023113856622], [-77.39544064890153, 34.600242952573424], [-77.39541744059028, 34.60025775091428], [-77.39515742958034, 34.60040327832227], [-77.39505714791704, 34.60047248315847], [-77.39490658170705, 34.6005938106528], [-77.39466301343421, 34.60072540082346], [-77.39462007966338, 34.60075107470038], [-77.39449386623009, 34.60081552689062], [-77.39432654707085, 34.60090177827004], [-77.39426888023304, 34.600932058841906], [-77.39418536983581, 34.600949980423934], [-77.39396784757642, 34.600991672844415], [-77.3938747543309, 34.601029054524616], [-77.39363529302764, 34.60110596363504], [-77.39348062392781, 34.601165286281514], [-77.39327391277935, 34.60121414328107], [-77.39308649644734, 34.601256005432404], [-77.39291216062311, 34.60128040172941], [-77.39269236097246, 34.601418817929215], [-77.39237409638449, 34.60146407325419], [-77.39199579247497, 34.60117578037575], [-77.39194617772249, 34.60113766068013], [-77.39190415709065, 34.6010782626191], [-77.39156944076127, 34.60081269105112], [-77.39152870774444, 34.600798486703965], [-77.3914640428756, 34.60077830327364], [-77.39111596645802, 34.60067860404964], [-77.39094939864523, 34.60065696949215], [-77.39036335670232, 34.60060039792853], [-77.39032774109016, 34.60060857186799], [-77.39030236685473, 34.600598161793684], [-77.39007017636214, 34.600604304075844], [-77.38958471530403, 34.60062559643288], [-77.38953950343048, 34.60063569982966], [-77.3887980462403, 34.600737313103025], [-77.38875125232465, 34.6007490378506], [-77.38871554421698, 34.600761150780826], [-77.38863935843142, 34.60081059970133], [-77.38813673382882, 34.60107025568327], [-77.38796295704373, 34.60113045098191], [-77.38776783819715, 34.60114643628668], [-77.38756882928065, 34.60117972853776], [-77.38737495275168, 34.60120860493317], [-77.3871747013772, 34.60122657468358], [-77.38701738736654, 34.601213902771995], [-77.38678058058494, 34.601228448983576], [-77.38641849348599, 34.60116526543904], [-77.38638647131968, 34.60116365225588], [-77.38637013447668, 34.60115534093148], [-77.38634892921726, 34.601140797314464], [-77.3859924031045, 34.600873067817545], [-77.38594268626575, 34.60082835797344], [-77.3858913503474, 34.60078219185874], [-77.38579537599917, 34.6006948469393], [-77.38574298451826, 34.60064774392649], [-77.3856897867719, 34.60059896404117], [-77.38559834563667, 34.60053892188628], [-77.38544011703405, 34.60059311240601], [-77.38536882519959, 34.60061027469093], [-77.38520419091105, 34.600735738303825], [-77.3851392893263, 34.600820701059796], [-77.38504160662444, 34.60090467973038], [-77.38481001204879, 34.601047334572506], [-77.38448873577042, 34.60106284512091], [-77.38441588804136, 34.60106709549967], [-77.38437176522591, 34.60104876614578], [-77.38420750502759, 34.60102490689003], [-77.38406141805791, 34.60100326395772], [-77.38402178363317, 34.60098899569043], [-77.38377560397855, 34.60092780305354], [-77.3836276892387, 34.600865950928394], [-77.3833231568666, 34.60082430288337], [-77.38323357053434, 34.60086246695262], [-77.3831716306871, 34.60081637911177], [-77.38311391859772, 34.60075796207977], [-77.38296786954767, 34.60064072435696], [-77.38283953600288, 34.60047144189201], [-77.38278957537965, 34.60043397234133], [-77.3827722190433, 34.60038264502468], [-77.38275587970278, 34.60029483923758], [-77.38272675568601, 34.60008621642535], [-77.38262261038676, 34.59997964244461], [-77.38252599571143, 34.59990689889832], [-77.38244555708852, 34.59984757996085], [-77.38232267299236, 34.599890502056084], [-77.382051418046, 34.59995373202854], [-77.38194855678313, 34.60007678782895], [-77.38183438532897, 34.60028408723275], [-77.38170537366588, 34.60053639898496], [-77.38167787520945, 34.6005626759435], [-77.38165715679366, 34.60058247391072], [-77.38140685027584, 34.600734379814945], [-77.38126300295554, 34.600732018113554], [-77.38115989404598, 34.6007260845493], [-77.38086888883647, 34.60071053787304], [-77.38082833647287, 34.6007064762757], [-77.38048552946091, 34.60072378570483], [-77.38047476633426, 34.60072368604508], [-77.38046761703211, 34.60072247429017], [-77.38043968769259, 34.600718797136665], [-77.38015079407295, 34.60068487229081], [-77.38008065934913, 34.60067414965943], [-77.37984185763503, 34.60063763976909], [-77.37968656829992, 34.6005637050297], [-77.37958763455246, 34.60052360264883], [-77.37941420155863, 34.6004420067823], [-77.37934834881776, 34.60039132647553], [-77.37929249813138, 34.60037671506075], [-77.37915686943853, 34.60033296861479], [-77.37889840256085, 34.600292100522026], [-77.37875837489523, 34.60026279683602], [-77.37854975448879, 34.600142004679796], [-77.3785043345105, 34.60010811979967], [-77.37828875725148, 34.59998731420398], [-77.37792661290598, 34.59980722836342], [-77.3777162538887, 34.59956010699405], [-77.37743012487576, 34.59933793882198], [-77.37735754916899, 34.59904009614655], [-77.37746050495048, 34.5987495081775], [-77.3776219255339, 34.598254891341895], [-77.37766265249977, 34.598147012526894], [-77.37762292211612, 34.59805173739216], [-77.37752413752628, 34.59774240810114], [-77.37755503244436, 34.597563672818346], [-77.37771684025684, 34.59746894886821], [-77.3778382028934, 34.59740331557893], [-77.3781109992411, 34.5972717750516], [-77.37816713450627, 34.59722519858289], [-77.37835000634331, 34.59703169388276], [-77.37850520807436, 34.59688457227251], [-77.37876203130767, 34.59656693276432], [-77.37929357812192, 34.596249125517964], [-77.3793453750099, 34.59620629395532], [-77.37978779472873, 34.595825716654474], [-77.3799147490194, 34.59569968180741], [-77.380012807318, 34.59561107693161], [-77.38008201167906, 34.595316700569], [-77.38010055791204, 34.59526830887138], [-77.38010163426605, 34.59524818689229], [-77.38009375908746, 34.59523668798092], [-77.38008203511205, 34.59522456092128], [-77.37991281461865, 34.59503319074846], [-77.37969206212837, 34.594882645795195], [-77.3796898549268, 34.59488099858191], [-77.37968292726708, 34.5948784634122], [-77.37929393381492, 34.59490001316931], [-77.37901794680727, 34.594852563665114], [-77.37893511944756, 34.5945671594206], [-77.37891911247257, 34.594165451733005], [-77.37891043460725, 34.594134963877686], [-77.37890005158205, 34.59411991759703], [-77.37869475333656, 34.59375267075289], [-77.37862395285602, 34.59363590101434], [-77.37850618299944, 34.59331872114747], [-77.37835580589984, 34.593114454049754], [-77.37799755177787, 34.59300400907054], [-77.37832175697625, 34.592758435243034], [-77.3785064067552, 34.592504974695714], [-77.37871044181227, 34.592271906994625], [-77.37915162561384, 34.591988582795274], [-77.37923351962142, 34.59191083960029], [-77.3792947415703, 34.59185383768143], [-77.379428974971, 34.59180401138043], [-77.37968885444485, 34.59171900534732], [-77.37979193341042, 34.59158276169649], [-77.3797542891109, 34.591477171567306], [-77.3797635241045, 34.59139548497108], [-77.37983943245445, 34.59104033799485], [-77.37986092379975, 34.5907977999931], [-77.37999121582783, 34.59059390066182], [-77.38004028445246, 34.590540555714], [-77.38008325533406, 34.59046012492292], [-77.3801741189613, 34.59024081167145], [-77.38018549112783, 34.59014133917178], [-77.38017610979298, 34.59004276714545], [-77.38012109152228, 34.589938338440035], [-77.3800833976276, 34.58990857965808], [-77.3799855159593, 34.58985106730139], [-77.37986414308813, 34.58976308648459], [-77.37980728065483, 34.58964427600925], [-77.37957072187407, 34.58938080825946], [-77.37970851302448, 34.58895678653296], [-77.37971660557758, 34.58893522181552], [-77.37970956278177, 34.58891471905247], [-77.37958637295411, 34.58852942603867], [-77.37949103761558, 34.58833268936196], [-77.37954140420135, 34.58795141141363], [-77.37967695333063, 34.58766724535266], [-77.37983134092622, 34.58737271745808], [-77.37989117222024, 34.58721181008704], [-77.37990747838224, 34.586975254792975], [-77.37988054912567, 34.58678877716093], [-77.37986880698917, 34.58655832681343], [-77.38006152624529, 34.5859382438025], [-77.38007071033606, 34.58591224465299], [-77.38004539324109, 34.58587381705621], [-77.38008446168864, 34.58581098639625], [-77.3802167260616, 34.585748709572385], [-77.38087264195923, 34.58548330406521], [-77.38095985374098, 34.585690075635554], [-77.38107758877172, 34.58576712892969], [-77.38126659217005, 34.58587569187154], [-77.38131591620669, 34.58610413867804], [-77.38135884697931, 34.586250653653806], [-77.38144507274197, 34.586563292163746], [-77.38126635971955, 34.58681840728201], [-77.38119394564491, 34.58694606433688], [-77.38112296082194, 34.58703428214889], [-77.38096945810415, 34.58737614552536], [-77.38091761091054, 34.587488442688006], [-77.38100958543936, 34.587623311159], [-77.38102013845217, 34.587685947952515], [-77.38105746551217, 34.587693120327664], [-77.38107608136103, 34.58768538790732], [-77.38126616619695, 34.58760521531502], [-77.38143542483448, 34.58765599948069], [-77.38166022009389, 34.587618718322254], [-77.38179173092699, 34.58764532206898], [-77.38198594833688, 34.58775902812541], [-77.38203363617825, 34.58777435411073], [-77.38205423672478, 34.587790198773924], [-77.38219740841951, 34.587882828402435], [-77.38226037112291, 34.58792191312306], [-77.38226932981848, 34.587930465401065], [-77.38244822746002, 34.58808048419324], [-77.38246564282376, 34.58809568455049], [-77.38248568154133, 34.588111563564226], [-77.38264521722738, 34.588254598405435], [-77.38269853863454, 34.58823572052907], [-77.38272363382673, 34.58837406414841], [-77.38275844533489, 34.588496812670265], [-77.38278082363027, 34.58855969067732], [-77.38284213639106, 34.58874473033289], [-77.38287854828108, 34.588864806533785], [-77.38289418536331, 34.58890181227429], [-77.38303909081088, 34.58908790667551], [-77.38304120622367, 34.58909062338698], [-77.38304342494465, 34.589092583387185], [-77.38323608815227, 34.58924441062832], [-77.3832687234431, 34.58923723135736], [-77.38357591138485, 34.5891696545296], [-77.3836301826317, 34.58910584754949], [-77.38382953903043, 34.588766986427984], [-77.38386600195854, 34.58859111841934], [-77.38387092104102, 34.58833645568179], [-77.3838954301019, 34.58819392597601], [-77.38389156433479, 34.588052108801804], [-77.38388137419437, 34.58791038325282], [-77.38381466245076, 34.58772156061099], [-77.38379102594767, 34.58767180255605], [-77.38378947856077, 34.587499064486636], [-77.3838275685369, 34.5874551973781], [-77.38391442831863, 34.58736233350912], [-77.38402461896968, 34.58734970285904], [-77.38409640006275, 34.587377476171646], [-77.38422163063183, 34.587425929775364], [-77.38424025390111, 34.58743408463979], [-77.38435254981388, 34.58748910960258], [-77.3844186317132, 34.58755482985816], [-77.38466178270905, 34.58763531328144], [-77.38481265758124, 34.58770460200262], [-77.38486555037082, 34.58771152076515], [-77.38507766870215, 34.5877379312139], [-77.38535328601728, 34.58796478729177], [-77.3856007291208, 34.58792307305865], [-77.38573186342768, 34.58778487923234], [-77.38599481643232, 34.58776656600364], [-77.38617666785049, 34.58777542792552], [-77.38619974498485, 34.58777993688195], [-77.38638886380969, 34.5878187682206], [-77.38672512210316, 34.587924990312466], [-77.38676885080147, 34.587933823095796], [-77.38678289984325, 34.58793650733603], [-77.38680479993714, 34.58793709860268], [-77.38717694751848, 34.58799365144099], [-77.38734365557143, 34.58801543177888], [-77.38739196578615, 34.58802174347607], [-77.38757099471756, 34.58805628711613], [-77.38768090377357, 34.58809332993969], [-77.3878909714224, 34.588181467393575], [-77.38793967343814, 34.58820176377198], [-77.38796502717108, 34.588211399870985], [-77.38804087798323, 34.588241581746466], [-77.3883590606247, 34.588369176451266], [-77.38846309725513, 34.5884114444318], [-77.3886544446353, 34.58849595296771], [-77.38871896477362, 34.58852342354426], [-77.38875309375084, 34.58853817513705], [-77.38897358953233, 34.58863692004065], [-77.389147127561, 34.58871297202323], [-77.3892280065927, 34.58875067178211], [-77.38938136828283, 34.58881570456471], [-77.38948630465012, 34.58885968287645], [-77.38954116361904, 34.58888318160197], [-77.3897232098785, 34.58896256432863], [-77.3897381821166, 34.588969093101035], [-77.38974267294736, 34.58897105136055], [-77.38993520082403, 34.58905640647909], [-77.39002828171158, 34.58904670413593], [-77.39008735461417, 34.58913847157134], [-77.39011026487071, 34.58932382409512], [-77.39013891296582, 34.58955560568418], [-77.39016092587956, 34.58973370017769], [-77.39018099156972, 34.58981446901383], [-77.39003005713953, 34.58999587155249], [-77.38996496479868, 34.5900374739209], [-77.38993505945062, 34.590064126034555], [-77.38984464128437, 34.590120015947164], [-77.38954095173466, 34.5903447905751], [-77.38943650869265, 34.590393508273706], [-77.38914685952186, 34.59050336804517], [-77.3891039621877, 34.590507761522154], [-77.38894982178063, 34.59052354831368], [-77.3887791762101, 34.59057236916239], [-77.38875277872997, 34.59057754379131], [-77.38872733406541, 34.59058087036808], [-77.38870264120537, 34.59061184418197], [-77.38870589349486, 34.590661874787365], [-77.38875272462658, 34.590929815558724], [-77.38875949999851, 34.591020899267654], [-77.38876966665337, 34.5910267481538], [-77.38894973941888, 34.591068227820195], [-77.38905983981078, 34.59107857006357], [-77.38914677475515, 34.59107286691398], [-77.38924295888069, 34.59106213032871], [-77.38934381336284, 34.59105505277724], [-77.3894278775745, 34.59105355524411], [-77.38954085029033, 34.59104831635229], [-77.38967660727326, 34.59104223750599], [-77.38978682039944, 34.591039647571336], [-77.38993492362366, 34.59103736034337], [-77.39007432674339, 34.59111299160404], [-77.39021380111467, 34.591243082363505], [-77.39027139318588, 34.591296799771584], [-77.39029868869294, 34.591622843516355], [-77.39028233929466, 34.591657768223854], [-77.3901318450373, 34.591875267870016], [-77.39012429218153, 34.59188470688583], [-77.38993478521577, 34.59203406844995], [-77.38987762522918, 34.59207911945952], [-77.38978200391217, 34.59215448356356], [-77.3896798254405, 34.5923191411401], [-77.38954065332936, 34.59242141322626], [-77.38932762278952, 34.59244950955689], [-77.38896224404358, 34.59249867303113], [-77.38875248022495, 34.59252825091819], [-77.38858458097171, 34.5925708248264], [-77.38841486427305, 34.592776177158285], [-77.38838596095265, 34.592810083979], [-77.38835835341254, 34.5928326180258], [-77.38799992345675, 34.59326057109048], [-77.38798911619634, 34.593288973664606], [-77.38796419520357, 34.593313807053676], [-77.38787316342308, 34.593376909466734], [-77.3877490950793, 34.593489593871915], [-77.38766697952171, 34.59362872476228], [-77.38761964898896, 34.59373996506432], [-77.3876046478134, 34.59377941771268], [-77.38757001360955, 34.59390935961585], [-77.38752100703677, 34.594178754043824], [-77.38750323280965, 34.5945340493949], [-77.38752443801117, 34.594651794677745], [-77.3875698787092, 34.59472583088616], [-77.387668973444, 34.59489976692417], [-77.38783497826934, 34.59498262262484], [-77.38788717057088, 34.595057776952935], [-77.3879638946114, 34.59518622061909], [-77.38803772696971, 34.59503290681147], [-77.38808969289256, 34.594945898835284], [-77.38848174721431, 34.59459803935142], [-77.38875217856226, 34.59451793960082], [-77.38910409977713, 34.59442051645421], [-77.38920854273582, 34.59442709154323], [-77.3895403816406, 34.59433155221127], [-77.38989331788116, 34.59430561365358], [-77.38993447151431, 34.59431253142245], [-77.38997920133362, 34.594297079458926], [-77.39032856483547, 34.59426592305328], [-77.39038717204048, 34.594253203514754], [-77.39052561116964, 34.59424359886937], [-77.3906118555905, 34.594157666130386], [-77.39066656633457, 34.59408932892829], [-77.39072269457034, 34.59392988473411], [-77.39080175348002, 34.593705713728724], [-77.39093812739522, 34.59349351722405], [-77.39110903106074, 34.59323683439202], [-77.39111316314907, 34.59323224953609], [-77.39111686779111, 34.59321534813433], [-77.3912058647912, 34.59289414050239], [-77.39119567659263, 34.592799770262644], [-77.39118758457488, 34.59272481429635], [-77.39111695305601, 34.592526234657], [-77.39108454365868, 34.592426157248546], [-77.39106795522474, 34.592393619036635], [-77.39110909933689, 34.59197165213625], [-77.39110715566484, 34.591963396864635], [-77.39111128440395, 34.591956617982], [-77.39111702461359, 34.591949868745246], [-77.39112454825099, 34.591952782498495], [-77.3915111151807, 34.59182621124444], [-77.39189506027948, 34.59183886150674], [-77.39190518892057, 34.59183794568112], [-77.39191253292367, 34.59183934159237], [-77.39193551783364, 34.591843939334645], [-77.39229925532605, 34.59191669886583], [-77.39255300207353, 34.59175488842727], [-77.39262654640895, 34.59167230153233], [-77.39269336415073, 34.59160013033646], [-77.39293124921889, 34.591444059878405], [-77.39308746675204, 34.5913149580172], [-77.3931363895531, 34.591298888670664], [-77.39332695923254, 34.59121869664398], [-77.39343928217748, 34.59115695300436], [-77.39348155438717, 34.5911568172595], [-77.39369434048879, 34.5911657103543], [-77.3938471282152, 34.59117437540566], [-77.39387562462515, 34.59117106039574], [-77.39390563596078, 34.59116756905252], [-77.3942696953527, 34.59118043784524], [-77.39436635246341, 34.59117292240445], [-77.39451828589284, 34.591203609515205], [-77.39466376141065, 34.59124662232803], [-77.39492004838276, 34.591413493158285], [-77.3949296801469, 34.59155014953782], [-77.39491728192124, 34.591687071781855], [-77.39468516060705, 34.59187194413653], [-77.39467106317903, 34.59188190053611], [-77.39466370883183, 34.591886788496545], [-77.39463721386282, 34.591907403119265], [-77.39426960484352, 34.59222392455177], [-77.39420156990627, 34.59229297206692], [-77.39407255437806, 34.592361564328485], [-77.39402511559993, 34.59239171540214], [-77.39392236679514, 34.59245702035017], [-77.39387550372142, 34.59249424828554], [-77.39368323509703, 34.5926481547455], [-77.39367728789443, 34.592652915341596], [-77.39366534464432, 34.592670007532504], [-77.39352454751857, 34.59288848171884], [-77.39348137664695, 34.59300992617811], [-77.39339271631778, 34.5932365686577], [-77.39336149417515, 34.59333656818074], [-77.39336729549673, 34.59345859217662], [-77.39341697869253, 34.594108439799285], [-77.39341224230304, 34.5941783903828], [-77.393432787874, 34.5942276499386], [-77.39348125853145, 34.594256021952276], [-77.39362628424061, 34.59430376899255], [-77.39387532836722, 34.59443860505005], [-77.3942047778214, 34.59413375150105], [-77.3942694458947, 34.594078761930696], [-77.39428373650856, 34.594068093251366], [-77.39429553737571, 34.594050996066564], [-77.39447539151595, 34.593803202087216], [-77.39463992117373, 34.593576753959965], [-77.39465236188389, 34.59356288154631], [-77.39466357286761, 34.59355972743799], [-77.39467577326278, 34.593558438642646], [-77.39505766114888, 34.593485965450014], [-77.39508910894753, 34.59347808487399], [-77.395379110221, 34.593391875673206], [-77.3954517519447, 34.59336621156306], [-77.39559679128783, 34.59328248176384], [-77.39584584648233, 34.59317239427483], [-77.39600183980157, 34.593123798818354], [-77.39621639094639, 34.59292479140976], [-77.39623994412574, 34.59289809867696], [-77.39630914222514, 34.592911412155715], [-77.39656957321503, 34.59294327905222], [-77.39663402118566, 34.59293609197956], [-77.39673898826678, 34.592962497139574], [-77.39720433134804, 34.59301697911217], [-77.39742216988586, 34.59314381459303], [-77.39770705817627, 34.5932519642099], [-77.39777604393149, 34.593548950158045], [-77.3978162311447, 34.59358231537874], [-77.39800142609701, 34.59374147849124], [-77.39809668425885, 34.593927266993845], [-77.39821029131178, 34.59416314973015], [-77.39827178596269, 34.59426032299589], [-77.39829490617424, 34.59432324394871], [-77.3983309555726, 34.59444805345056], [-77.39832041399545, 34.595050032945], [-77.39834578741132, 34.59516504950642], [-77.39834854196567, 34.595313642474075], [-77.39821024553822, 34.59539345476851], [-77.3980062242874, 34.59543383508745], [-77.3978161483885, 34.59554751602584], [-77.39770438724486, 34.595561746247924], [-77.39761910069153, 34.59559165347784], [-77.39755711598039, 34.59570339584943], [-77.39754059372706, 34.59583349805101], [-77.39742202987757, 34.5961348124947], [-77.39741904056568, 34.59614466648847], [-77.39741289898447, 34.596148772431846], [-77.39696973765274, 34.59657459684369], [-77.39686912877686, 34.596651784213066], [-77.39697424387869, 34.596694434495596], [-77.39707219907376, 34.596670206812675], [-77.39742200853348, 34.59660362988359], [-77.39774294439962, 34.59652573431037], [-77.39780774335497, 34.59650737416765], [-77.39781610918567, 34.59650213529687], [-77.39782801688682, 34.5965006335567], [-77.39821020682149, 34.59645580416853], [-77.39821151492797, 34.596456729983544], [-77.39822544193044, 34.59645613015618], [-77.39856942092068, 34.59644408644737], [-77.39864368908844, 34.59643822474716], [-77.39899840046984, 34.59636643409912], [-77.39921685059062, 34.5963131048681], [-77.39937908138465, 34.59627524621855], [-77.39939249763701, 34.59627194358171], [-77.39940822443114, 34.59626855244941], [-77.39978659434396, 34.596148834659644], [-77.39987249053408, 34.596125975395275], [-77.40006099079594, 34.59606236226307], [-77.40018069112851, 34.59592271786784], [-77.40027079220403, 34.59573647511581], [-77.40018069650313, 34.595506421544954], [-77.40012420831508, 34.59539390912005], [-77.4000676372615, 34.595341211846275], [-77.39978661416481, 34.59503080416901], [-77.39975270747645, 34.59499860490864], [-77.3997309529414, 34.59496521351162], [-77.39973561113428, 34.594909590402445], [-77.39965310377391, 34.59455187133884], [-77.39961497288837, 34.594317732690634], [-77.39962003939713, 34.59413206792757], [-77.39966122180624, 34.59399101136671], [-77.39975543717864, 34.59368795962655], [-77.39976714030833, 34.593665263110225], [-77.39978664032989, 34.593627445334874], [-77.39993575040408, 34.593398013600336], [-77.39998368604023, 34.59334872891648], [-77.40011073739576, 34.593212123541804], [-77.39998369151147, 34.593028796357004], [-77.39998087621329, 34.59302160621229], [-77.39997635839335, 34.593019224754556], [-77.3997866537969, 34.592933401649105], [-77.39969779856212, 34.59294285866649], [-77.3994539885305, 34.59294847005263], [-77.39939257411422, 34.592970380230696], [-77.39930770194755, 34.59299484785428], [-77.39899849282449, 34.5930478798454], [-77.3989059331719, 34.59306109466961], [-77.39888002997526, 34.5929651102996], [-77.39885105343197, 34.59270357647454], [-77.39891282289429, 34.59253580587527], [-77.39890482300378, 34.592436021968936], [-77.39885129915231, 34.59227871780662], [-77.39873823561919, 34.59213642025906], [-77.39868011870949, 34.592063276511], [-77.39860444978846, 34.59198069088339], [-77.39849408025049, 34.591865986856995], [-77.39838776330454, 34.59176240920208], [-77.39835075892452, 34.59161651356068], [-77.39824870177165, 34.59135789820177], [-77.39826292998217, 34.591299251902484], [-77.39831192784754, 34.591033576417836], [-77.39835489005355, 34.59091800558862], [-77.39837222409604, 34.59087754823007], [-77.39835138279201, 34.590766640749436], [-77.39826213802789, 34.59077481823404], [-77.39821042150083, 34.59081558169741], [-77.39814190115013, 34.59087491109439], [-77.39804679823294, 34.59096245291821], [-77.39781633606543, 34.591181610353374], [-77.39768073627953, 34.591293745005025], [-77.3974222618125, 34.59124982098726], [-77.39729921404782, 34.59120287543016], [-77.39722523004588, 34.591174648706414], [-77.39704706833008, 34.59110667538194], [-77.39703457362283, 34.5911016092622], [-77.39702819932717, 34.59108660465328], [-77.39685239707933, 34.59089960574161], [-77.39679470534396, 34.590718507745706], [-77.39680826039368, 34.59047955209368], [-77.39681124057506, 34.590291550096296], [-77.39700432230144, 34.58986492157874], [-77.39701369949158, 34.589837771687606], [-77.39701942276213, 34.58982741601924], [-77.39702826864469, 34.58981601173114], [-77.39738964644674, 34.58935896492838], [-77.39739765593, 34.5893311951415], [-77.39742235807954, 34.58932225933867], [-77.39756797449265, 34.589176354897184], [-77.39781643877302, 34.58891874706418], [-77.39784545286953, 34.58889989522945], [-77.39790316533706, 34.588860309501484], [-77.39821051452117, 34.58854345250547], [-77.39837636816695, 34.58854616490218], [-77.39833690887451, 34.5883731606006], [-77.39830637239265, 34.58827429660127], [-77.39821960238547, 34.58796551149584], [-77.39821053952475, 34.58794750228022], [-77.39809193824443, 34.5876871549742], [-77.39801352645054, 34.58761891075], [-77.39799704870309, 34.587590801528805], [-77.39796597895815, 34.58757752864443], [-77.39786613585045, 34.58753845612062], [-77.39781650417439, 34.58751903321468], [-77.39775171545742, 34.58753863438881], [-77.39761947421593, 34.58758300158136], [-77.3975392280264, 34.58763909482491], [-77.39747124553796, 34.58770148642739], [-77.39742243718294, 34.587777697755016], [-77.39720844205745, 34.58791737444151], [-77.39702836587792, 34.5880689014106], [-77.39696560334116, 34.58807879749564], [-77.39663430920673, 34.58807451286072], [-77.39636822225826, 34.58809471518902], [-77.39624025092962, 34.58810253556883], [-77.39611355983195, 34.588132832877996], [-77.3960432188141, 34.588158239450394], [-77.39587323422793, 34.58830400007237], [-77.39586284026045, 34.58832345111627], [-77.39590249820999, 34.58866364438969], [-77.3959452433817, 34.58871818451995], [-77.39599694751561, 34.58887320988363], [-77.39595241003099, 34.589141722649906], [-77.39584611602156, 34.589219911635794], [-77.39567251306256, 34.589419640795434], [-77.39563541648765, 34.58941444623126], [-77.39545204305739, 34.589367491447064], [-77.39534810668516, 34.589340877259005], [-77.39525501553172, 34.58931704002248], [-77.39516698173733, 34.58925501822507], [-77.39512771286324, 34.589185566317], [-77.39505800960168, 34.588996811133626], [-77.39501526832274, 34.58889838923365], [-77.394997911617, 34.588854833923975], [-77.39494320076619, 34.58873900507377], [-77.39489284954855, 34.58862339716738], [-77.39476294083235, 34.58857077378299], [-77.39466398770791, 34.58853068990169], [-77.3946307455655, 34.58851904010967], [-77.39455271540086, 34.588494477953404], [-77.39426994162875, 34.5883859748073], [-77.39406237006932, 34.58836427855898], [-77.39386852352645, 34.58816859178248], [-77.39427001511373, 34.58756484296159], [-77.39436224900007, 34.58734759290483], [-77.39442648399516, 34.587238971914736], [-77.39444884817335, 34.587043112317026], [-77.39448455857753, 34.58680602404197], [-77.39449163620307, 34.58661912663069], [-77.39450131657418, 34.58637903564601], [-77.39466419463395, 34.58610174798873], [-77.39473909773601, 34.58600086225091], [-77.3949012529067, 34.585896776185464], [-77.39505826765998, 34.58578735556898], [-77.3952933189647, 34.5856688999011], [-77.39574308451128, 34.58546207160101], [-77.39584638582662, 34.585420215530064], [-77.39592328296986, 34.585407630150854], [-77.39656777581477, 34.58523180376175], [-77.39662632007744, 34.585214559017246], [-77.39663448707547, 34.585207655071606], [-77.39666650453717, 34.58518306461357], [-77.39708986507588, 34.58479797503411], [-77.39722265818475, 34.58471275582066], [-77.39742260813964, 34.58454849995012], [-77.39758210463815, 34.58440817362469], [-77.39806464010216, 34.58416670972214], [-77.39816642202398, 34.58410430847084], [-77.3982107079857, 34.58408345933503], [-77.39826805135118, 34.58407557571474], [-77.39885992882337, 34.5839023458677], [-77.39899879095707, 34.58384117466493], [-77.39961386416968, 34.583756776572734], [-77.39978686708206, 34.583673481312324], [-77.39998929269127, 34.58367089963795], [-77.40049997852704, 34.58381532787061], [-77.40055933421381, 34.583823572359606], [-77.40057493429966, 34.58382377298604], [-77.40060565218228, 34.583833178464005], [-77.40114210094114, 34.58396069411344]], [[-77.30666360813595, 34.56351925151653], [-77.30602778342146, 34.56344881308511], [-77.30602504493788, 34.56344709962275], [-77.30602778981441, 34.56344332408182], [-77.30659732753954, 34.563129247404206], [-77.30714246510803, 34.56293523243585], [-77.3075041888134, 34.56323479991064], [-77.30695914307577, 34.56346762872277]], [[-77.40372695533198, 34.565620212845076], [-77.40435618333618, 34.568145112122465], [-77.40530282337053, 34.568264793153446], [-77.40544587205616, 34.568511771337604], [-77.40578923093895, 34.5686163639904], [-77.40609076734295, 34.56884237888452], [-77.406254158743, 34.56872534006327], [-77.40659537746683, 34.56880531828288], [-77.40687870755164, 34.569113801080746], [-77.4071833123119, 34.56926426417422], [-77.40687873186667, 34.56961791825668], [-77.40651232538752, 34.56981540138678], [-77.40576917525652, 34.57031756733856], [-77.40559176252053, 34.57065448727243], [-77.40530288977182, 34.57053189264207], [-77.40510138707229, 34.57063112375118], [-77.40438163749133, 34.57051785867584], [-77.40372700004025, 34.57036309444695], [-77.40355692473645, 34.570636900034614], [-77.40293301953223, 34.57156959470722], [-77.40215110496305, 34.5716379630655], [-77.40074051903419, 34.57274167740302], [-77.40169643146908, 34.57309368881488], [-77.40197282906017, 34.57341298633483], [-77.40206803688284, 34.57348875072777], [-77.40215109242553, 34.57367091950337], [-77.40235038755603, 34.57399287804384], [-77.40232853797687, 34.57421080080087], [-77.40224617828841, 34.574325158122605], [-77.4021510880249, 34.57454023737837], [-77.40211106384237, 34.57466676285083], [-77.40202793382906, 34.57481147240711], [-77.40196841717717, 34.574915076809035], [-77.4018545784142, 34.575023300619726], [-77.40175709125168, 34.575122010469265], [-77.40174542415012, 34.5751315341182], [-77.401717101957, 34.57514819402806], [-77.40146668850146, 34.57529596639719], [-77.40136309383068, 34.5753570349097], [-77.4011025005192, 34.57551770473036], [-77.40096909412401, 34.575592599421825], [-77.40091350962011, 34.57562883967772], [-77.40077781102141, 34.57570831973693], [-77.40057509188743, 34.57584022996641], [-77.40032416666162, 34.57592796114771], [-77.4001810902524, 34.57597873766192], [-77.39999328539037, 34.57604372738952], [-77.39996461953963, 34.57605893369734], [-77.39978708628851, 34.576146754917104], [-77.39962338414247, 34.5761230743002], [-77.39954989433835, 34.57614110935946], [-77.39942412878932, 34.57593710115852], [-77.39941201947197, 34.5759054058993], [-77.39943078864957, 34.57586208095], [-77.3995910792538, 34.57545499363098], [-77.39963210770767, 34.57528203648586], [-77.39951961755315, 34.57490442908524], [-77.39948956590554, 34.574620494032544], [-77.39939315234255, 34.57438737556136], [-77.39929263881596, 34.57433265357628], [-77.39922770444178, 34.574055400742495], [-77.39910950428467, 34.57382618763482], [-77.39909659396567, 34.573083839103326], [-77.39972129981484, 34.57288875820546], [-77.39978719565536, 34.5728396799767], [-77.40035593638251, 34.572560918519784], [-77.40031447650276, 34.57138583140032], [-77.40010773475989, 34.571134694433], [-77.39911884696447, 34.57114856632005], [-77.3989993074082, 34.57104861403982], [-77.39825253795514, 34.57059760715301], [-77.39821138169185, 34.57058230189372], [-77.39819783310146, 34.57057574851012], [-77.39815970789434, 34.57056664841153], [-77.39789162927346, 34.570525347339796], [-77.39781740973189, 34.570556681758234], [-77.39748038495178, 34.570603291815296], [-77.39742343227212, 34.57061933419115], [-77.39679350683299, 34.57059347655573], [-77.39663551072064, 34.57026549418883], [-77.39635340182842, 34.57028214305909], [-77.39624155478161, 34.57005697913963], [-77.39619809873386, 34.57004736331637], [-77.39621986414534, 34.56999739095913], [-77.39624156353094, 34.56994597391617], [-77.39637899340805, 34.56969794336932], [-77.39627014698212, 34.569534794878365], [-77.39624159847487, 34.56950386306532], [-77.3960204992192, 34.56917700959026], [-77.39594182519684, 34.569086884516445], [-77.39584768117389, 34.568892078714086], [-77.39579846391923, 34.56878447148587], [-77.39579849224226, 34.568412949122894], [-77.3957779599789, 34.568362857420084], [-77.39579628678096, 34.568304772150555], [-77.39584773198807, 34.5682912227333], [-77.39602141986563, 34.5681405621483], [-77.3962417228434, 34.56794457999438], [-77.3962957320889, 34.56792178616674], [-77.3966357056643, 34.567661459464084], [-77.39691926501415, 34.56765463765924], [-77.39712337735722, 34.56731959386742], [-77.39742370012756, 34.56654246397407], [-77.39760553602068, 34.566596848411486], [-77.39884702670108, 34.56638608307261], [-77.3989995278042, 34.56633269320083], [-77.4004809810773, 34.56608763614261], [-77.40057534362768, 34.56622024614313], [-77.40084543796873, 34.56622441747186]], [[-77.44706477139263, 34.734078028622775], [-77.4469858862792, 34.73437985916696], [-77.44728493990883, 34.73443758289085], [-77.44746168573616, 34.73418129744766]], [[-77.37224995676794, 34.701389547077106], [-77.37237800227858, 34.70158841457737], [-77.37243693455295, 34.701814979884205], [-77.37247646727712, 34.702062273867966], [-77.37248417877309, 34.70251860852573], [-77.37247677091716, 34.702549626303785], [-77.37247571868289, 34.702573655799256], [-77.37248620658178, 34.702638623718514], [-77.37254323792789, 34.702570935206325], [-77.37257801763528, 34.70253570907962], [-77.37341648522712, 34.70206839097677], [-77.37349446588925, 34.7019223380426], [-77.37365154818823, 34.70166848261688], [-77.37366003306678, 34.70165588106767], [-77.37366269214384, 34.701648413331974], [-77.37377574981778, 34.70139627589844], [-77.3735869260796, 34.700943168642155], [-77.37358407445689, 34.700935230896675], [-77.37358289100844, 34.70093279854699], [-77.37358073781806, 34.70092923412319], [-77.37325560245793, 34.70049299001906], [-77.37321945657027, 34.700424045566045], [-77.37316904726883, 34.700284885655265], [-77.37302920473203, 34.70003671727121], [-77.372989831228, 34.69981228461266], [-77.37272179212546, 34.699763150987714], [-77.37218888910952, 34.69970447367938], [-77.37214056437197, 34.69970323159534], [-77.37204618393984, 34.69975019981274], [-77.3712554652365, 34.70015367380114], [-77.37109501379717, 34.70030258342749], [-77.37088916946487, 34.70046725006085], [-77.37077000655407, 34.70059095134783], [-77.37072078413036, 34.700637119169095], [-77.37067968678772, 34.70080213873817], [-77.37070288026297, 34.70084387399655], [-77.37085721283884, 34.70103172271743], [-77.37088397009688, 34.70103914247258], [-77.37115665775987, 34.701031261822216], [-77.3713604647491, 34.70106659802548], [-77.37173833749327, 34.70108965686094], [-77.37211712227966, 34.70127264535189]], [[-77.37968754264165, 34.72939330406898], [-77.37967196021584, 34.72939905531226], [-77.37963853657897, 34.729399490681786], [-77.37936518421465, 34.729399314280386], [-77.37921448170498, 34.729399216686154], [-77.3790404834538, 34.7294133968405], [-77.37875850003185, 34.72935272379201], [-77.37852419935331, 34.729009459123134], [-77.37852835303175, 34.72900232852018], [-77.37881858595172, 34.72875154754942], [-77.37923596919242, 34.728707506204096], [-77.37924573008159, 34.72870590732645], [-77.37924796823265, 34.72870542927419], [-77.37925020507957, 34.72870438132534], [-77.37962647094747, 34.72857607216757], [-77.37992719086287, 34.72838214383239], [-77.37995682543257, 34.72836795205702], [-77.3799927833553, 34.72834109743951], [-77.38031002354069, 34.72819720105432], [-77.38049733975802, 34.728022511213936], [-77.38076373295314, 34.72789388189907], [-77.3810539295213, 34.72791706909801], [-77.38142326618707, 34.72783073310383], [-77.38145966103241, 34.72783226426037], [-77.38197686936257, 34.72801176624255], [-77.38201039787013, 34.72801718082247], [-77.38204514862625, 34.72804151488004], [-77.38235636458265, 34.728299929636165], [-77.38250383781497, 34.72852664170301], [-77.38259514782217, 34.728646724691664], [-77.38272383388838, 34.72880176428965], [-77.38266823092789, 34.729060773407845], [-77.38262331459765, 34.72932576687117], [-77.38260026822064, 34.72953717542073], [-77.38256633402655, 34.72964260989329], [-77.38233662312938, 34.72964702974467], [-77.38218362260612, 34.72963058675134], [-77.3821205986622, 34.72966199312142], [-77.38197960541794, 34.72965966399156], [-77.38154319727249, 34.72962782247207], [-77.38136584181595, 34.729605233504486], [-77.38122643102446, 34.729614558344544], [-77.38118157590725, 34.729622968761696], [-77.38092470070725, 34.729549460266576], [-77.38089969381213, 34.729536118769516], [-77.38078000005288, 34.729519409027716], [-77.3806619198988, 34.72952142274718], [-77.38053538527804, 34.729504962732385], [-77.38028942102153, 34.729528951980484], [-77.38015137543275, 34.729434777076726]], [[-77.37456555697064, 34.59261970651067], [-77.3745451528344, 34.59263032688402], [-77.3738459646989, 34.59267913453708], [-77.37377740746888, 34.5925744675984], [-77.3734463619225, 34.59231821504936], [-77.37319222978707, 34.591998083859], [-77.37336442647957, 34.591527977576405], [-77.37347570899207, 34.59110812881533], [-77.37328701983857, 34.59081514336881], [-77.37312570303007, 34.59030942973643], [-77.3731828670764, 34.59009350448349], [-77.37304544144271, 34.58989643225283], [-77.37333197754786, 34.58979882414802], [-77.3734504802967, 34.58976675330187], [-77.3737783290947, 34.589806266073424], [-77.37412148062965, 34.58979627827246], [-77.3743284084523, 34.58987971393468], [-77.37456647973471, 34.58976700380683], [-77.3745907037307, 34.58967381833837], [-77.37457522162293, 34.58966666557786], [-77.3745665146791, 34.58965929985902], [-77.37421096697815, 34.589687014717875], [-77.3741251735705, 34.58931632472891], [-77.37411701117978, 34.58895291644866], [-77.37412700335283, 34.588842251078155], [-77.37417279972547, 34.58858768593166], [-77.37449672135837, 34.58848928029847], [-77.3745669174947, 34.58841987937964], [-77.37458290562472, 34.58841848461064], [-77.37533985271416, 34.58830860619586], [-77.37535506883896, 34.58833509563655], [-77.37550482745574, 34.58911755633844], [-77.37559128643223, 34.58935994512674], [-77.37535466366582, 34.58961909575189], [-77.37521655665658, 34.58985949954344], [-77.37481209023808, 34.59006648350765], [-77.37513372716947, 34.590257956655584], [-77.37503471528731, 34.590883531438095], [-77.37535417068398, 34.5911862111915], [-77.37554773976174, 34.59145010809867], [-77.37592254445352, 34.59160474033642], [-77.37614211981779, 34.59184748411531], [-77.37638260165498, 34.59212840120796], [-77.37671171591921, 34.59234015915689], [-77.37692998715309, 34.59282950794451], [-77.37699057790174, 34.593083745524936], [-77.3771913615385, 34.593120173119566], [-77.37705858326632, 34.59327798720891], [-77.3769297714233, 34.59356452219396], [-77.37678899447229, 34.59332988476394], [-77.37614154850394, 34.593730407291076], [-77.37560392953174, 34.59334888996477], [-77.37549008713668, 34.59321817799615], [-77.3753536265017, 34.59292259140929], [-77.37463407511663, 34.592639494675616], [-77.37459531139514, 34.59261302558915]], [[-77.37389966636695, 34.67624429932239], [-77.37416069169979, 34.67623167530946], [-77.37446345927877, 34.6762044175571], [-77.37448188940084, 34.67621145763392], [-77.37473852448471, 34.67630273241975], [-77.37480915841043, 34.67633247707103], [-77.37478564533653, 34.67640026351147], [-77.37475562833596, 34.676454066245185], [-77.37480434201315, 34.676885088352975], [-77.37452485853963, 34.677339941404234], [-77.37456794552998, 34.67740499006878], [-77.37448295927497, 34.6774886497338], [-77.37435233876522, 34.67747279012608], [-77.37386882713064, 34.677501119555764], [-77.37380114364689, 34.677502966286], [-77.37379335768453, 34.677498230598445], [-77.37318422566257, 34.67758374741971], [-77.3731509115451, 34.67758433829971], [-77.37251713205958, 34.67777171095493], [-77.37192143098741, 34.67777092202327], [-77.37191907124877, 34.677770354544144], [-77.3719163795773, 34.677771485577374], [-77.37191771959544, 34.677769376404115], [-77.37191100646326, 34.677761682631726], [-77.37162050492525, 34.67732284244634], [-77.37155381674194, 34.67726214190337], [-77.37155486301333, 34.67696276748143], [-77.37156766820235, 34.676355318128095], [-77.37164566012979, 34.67625021770252], [-77.3717869838286, 34.67616250387033], [-77.37185942646265, 34.676238301420085], [-77.37250058167518, 34.67622705688247], [-77.37287012712724, 34.67624855838448], [-77.3729411337784, 34.67630985191687], [-77.37306812403203, 34.67623469977438]], [[-77.39502887108574, 34.720246973495136], [-77.39528001462881, 34.71978966845028], [-77.39524391550071, 34.71976306734282], [-77.39526256964638, 34.719723743285726], [-77.39530712379916, 34.71975140547686], [-77.39530546673129, 34.719779058754504], [-77.39532741334108, 34.71979228355825], [-77.39586405697321, 34.72004186076294], [-77.39592208882608, 34.72005405190102], [-77.39626351295252, 34.72027232793057], [-77.39636445071726, 34.720527382799034], [-77.39641490481756, 34.72065553805427], [-77.39644078774694, 34.72074099324855], [-77.39638275299968, 34.720807449175254], [-77.39629995863163, 34.72097129298034], [-77.39622003647098, 34.721025597640704], [-77.39610357383988, 34.721099188286374], [-77.39591791819623, 34.72111719594295], [-77.39587161546197, 34.72112168706797], [-77.39565415676344, 34.72111251312383], [-77.3955520634529, 34.721118180585194], [-77.39504107891199, 34.72085817128929], [-77.39498268201544, 34.72087064488334], [-77.39475742799252, 34.72090013891818], [-77.39484549510408, 34.72074196088], [-77.39486344284262, 34.7205676462482]], [[-77.31992647338043, 34.747725155160325], [-77.31987121315217, 34.74770246595114], [-77.31952057030391, 34.74724895750942], [-77.31942204998104, 34.74718726822107], [-77.31892370682526, 34.746938093266216], [-77.31890911470477, 34.746930752496745], [-77.31890114608176, 34.746918685419075], [-77.31882109195047, 34.746952146265066], [-77.31882670570103, 34.747174558988156], [-77.31878193847629, 34.747816672765055], [-77.31916579205134, 34.747879662254746], [-77.31969799150394, 34.74829790059438], [-77.32007230119872, 34.7479862814273], [-77.31999892665976, 34.747765559764446]], [[-77.29265393788482, 34.56358301971447], [-77.2925979049066, 34.56358013744671], [-77.29250411581226, 34.56355861446409], [-77.29250075991996, 34.563461816977224], [-77.2923643252876, 34.56333385833964], [-77.292664826307, 34.56312323056301], [-77.29302464226711, 34.563220095417954], [-77.29306860414951, 34.563224454967845], [-77.29306998698357, 34.56324218604982], [-77.29279998096219, 34.563516184712824]], [[-77.26579943258503, 34.58414642321108], [-77.26515829743097, 34.58451462735649], [-77.26511444144806, 34.584092556615374], [-77.26492349107455, 34.58390883216816], [-77.26499129971685, 34.58378239901205], [-77.26550495617215, 34.58365193068525], [-77.26554500136254, 34.58361759010556], [-77.2656287694617, 34.58358453556609], [-77.26624476032568, 34.58371010330989], [-77.26573631682261, 34.58378772652147]], [[-77.23690032010039, 34.59231865175822], [-77.2363491389113, 34.59240268068173], [-77.23586306734046, 34.59242492572792], [-77.23552009440748, 34.59166001409958], [-77.23575309333677, 34.59129793704624], [-77.23579509651988, 34.591210351738404], [-77.23592425115679, 34.591092189158054], [-77.23623518088064, 34.59077370530721], [-77.23641998784285, 34.59057643658203], [-77.23688405945441, 34.59040828030504], [-77.2374694279859, 34.59051390452992], [-77.23766778337315, 34.59052564555493], [-77.23825100714167, 34.59089068977158], [-77.23830804473648, 34.59092639008225], [-77.23831645162493, 34.590931651930575], [-77.23832578444724, 34.59093857679395], [-77.23817797776111, 34.591718232152914], [-77.23808662070422, 34.59186242394681], [-77.23796357083107, 34.59194978751325], [-77.23775320773265, 34.59202234222456]], [[-77.3999466980003, 34.73203203946409], [-77.39943991545763, 34.732037330985946], [-77.39916125939845, 34.732085656530614], [-77.39877610669633, 34.732181701729694], [-77.39875554975774, 34.732186201618894], [-77.39869826075739, 34.73220074934549], [-77.39836739832234, 34.732284165259244], [-77.39830735898884, 34.73229729896859], [-77.39806760696581, 34.73234739878579], [-77.39795324578054, 34.73235525997431], [-77.397635005718, 34.73234167020488], [-77.39748609684715, 34.732339698319585], [-77.39742901477776, 34.732338338283874], [-77.39733017406347, 34.732324676581285], [-77.39733452102844, 34.73223655514026], [-77.39738071431792, 34.732167382534094], [-77.39747236462934, 34.73172563397493], [-77.39762095638544, 34.73167619445441], [-77.3979419411367, 34.73158849165008], [-77.39804069737698, 34.73158219270677], [-77.3982946485738, 34.73156414711773], [-77.39837910127737, 34.73155502306467], [-77.398534908937, 34.73153818960202], [-77.39880774982736, 34.73150763561334], [-77.39895660857691, 34.73149256381775], [-77.39923759163594, 34.73146220066705], [-77.39941096985248, 34.73145734079338], [-77.39960642654842, 34.731462863853054], [-77.39977004459885, 34.73158453999131], [-77.3999588029612, 34.73167530655098], [-77.39998787875511, 34.73194071068967]], [[-77.42214773124027, 34.7442951743331], [-77.42189078089869, 34.74473692582092], [-77.42191215486548, 34.74521759187092], [-77.42194137853686, 34.7452739722089], [-77.42196651766551, 34.74532247158898], [-77.42230106408415, 34.7459678943148], [-77.4223204216452, 34.74600523984794], [-77.42232187621225, 34.746008046127585], [-77.4223244286396, 34.74600833388731], [-77.42232567664637, 34.74600810736504], [-77.42232672603082, 34.746007443319314], [-77.42312992141453, 34.74582630133426], [-77.42328301446112, 34.74578260095713], [-77.42349321714423, 34.745671965422375], [-77.42355350119797, 34.745494433038054], [-77.42338805174313, 34.74526024163742], [-77.42322764554349, 34.745103815200856], [-77.42288626072218, 34.7448799386456], [-77.42269923264101, 34.74471410715512], [-77.42220108437249, 34.74427292512715], [-77.422173582888, 34.7442638021752]], [[-77.33024314025323, 34.65669386922664], [-77.33029655057516, 34.65667017964153], [-77.33039171306616, 34.65662697821256], [-77.3304168477668, 34.65661566196251], [-77.33035453086474, 34.656473427073465], [-77.3302886585635, 34.65649598084282], [-77.3302619805331, 34.656611962391565], [-77.33024559696766, 34.65662260789231]], [[-77.43251028042005, 34.50364148301845], [-77.43248983847427, 34.503702680690246], [-77.4324249116526, 34.50389705783462], [-77.43229734502704, 34.50403063061903], [-77.43211176721286, 34.50419348973865], [-77.4319114991998, 34.50424166192618], [-77.4309928338061, 34.5041866475391], [-77.43083326902163, 34.50371760673978], [-77.43075968999355, 34.503614425189056], [-77.43079388938821, 34.50350774372543], [-77.43082338566884, 34.503415733919965], [-77.430866227655, 34.5032820917752], [-77.43090578094271, 34.503158710933874], [-77.43137552252234, 34.5029703039377], [-77.43146837466304, 34.502838016202354], [-77.43172760746776, 34.50278699830368], [-77.43206654545281, 34.50284324360831], [-77.43228183362032, 34.50301653418745], [-77.4326102744052, 34.50334212229388], [-77.43260209877268, 34.5033890422727], [-77.43257854222337, 34.50343712239807]], [[-77.36925513899304, 34.7220272376317], [-77.36972524252239, 34.72203824142757], [-77.36982538762625, 34.722125534379586], [-77.37005693471166, 34.722064610840185], [-77.37006233213391, 34.72188978522663], [-77.37006507632489, 34.72177670506392], [-77.37007087485235, 34.72140121942168], [-77.37006584735761, 34.7212969404882], [-77.37005146686842, 34.720998659417084], [-77.36986899988975, 34.72094156736769], [-77.36961175913758, 34.72079839290659], [-77.36910548018125, 34.721046482584796], [-77.36897806894221, 34.7211089172741], [-77.36890556224853, 34.72116857099077], [-77.3681689696099, 34.72166255292155], [-77.36816561378689, 34.721665487225955], [-77.36816185259053, 34.72166797762887], [-77.36791229575414, 34.72194151447513], [-77.3680593037537, 34.72202131897873], [-77.36818631409764, 34.72203980894437], [-77.36858906481481, 34.72204060062661], [-77.36866849863114, 34.72198542199099], [-77.36868550706649, 34.72204989642754], [-77.36899659843183, 34.72203622663669]], [[-77.37411717390184, 34.60120516788565], [-77.3739314486778, 34.60140098446238], [-77.37377446177965, 34.601534604459935], [-77.37369355291086, 34.601603617302246], [-77.37338575014888, 34.60173508751478], [-77.37338159446843, 34.60173711249031], [-77.37338026993321, 34.601738364945135], [-77.37337530102887, 34.60174194394156], [-77.37298607152296, 34.60195592143437], [-77.37279664017811, 34.60204047482211], [-77.3724503487135, 34.602022326794476], [-77.37219783913815, 34.601894825220455], [-77.3719170600778, 34.601824559767515], [-77.37157229344626, 34.60174694583777], [-77.3714096398916, 34.60174224526986], [-77.37130997466622, 34.60171688263797], [-77.37122541149463, 34.60162169144571], [-77.37072361924483, 34.60095466164566], [-77.37065103384563, 34.60085529865709], [-77.3706604283254, 34.600812253870515], [-77.37074330830089, 34.59999289186592], [-77.37062211123819, 34.59975468833481], [-77.37042328934942, 34.59940418038343], [-77.37030907297792, 34.5992063143284], [-77.36983434499899, 34.598506954480115], [-77.36979503783073, 34.59847358627604], [-77.3697007197503, 34.59844481261741], [-77.36957411399554, 34.59818257696175], [-77.36969283481862, 34.597596829993805], [-77.37062311315, 34.59701489335194], [-77.37129613877057, 34.59639247553971], [-77.37217279614057, 34.59554141034581], [-77.37220005209716, 34.59550799367348], [-77.37221228028746, 34.59553572309529], [-77.3722163597458, 34.595552720394316], [-77.372680271425, 34.59664878635928], [-77.37266336791791, 34.59716898460641], [-77.37268715881959, 34.59769112044585], [-77.37272596107243, 34.59800908768872], [-77.37281430652166, 34.59818276430709], [-77.37298730325885, 34.59829045439588], [-77.3731833586084, 34.59858101308409], [-77.37333469894091, 34.59877052149726], [-77.37353194699237, 34.599004248516806], [-77.37377519213021, 34.599296851046354], [-77.37389004348917, 34.59941587903923], [-77.37397297529515, 34.59952769886064], [-77.37416917046473, 34.59971734035588], [-77.37427654337358, 34.599792835590804], [-77.37456314898313, 34.60015013004938], [-77.37465567540434, 34.60027847390441], [-77.3746407284616, 34.60036427189314], [-77.37456301208182, 34.60058201447228], [-77.37454339691078, 34.600698118451426], [-77.37451908033248, 34.60072271188272], [-77.37430856988144, 34.600903612893866], [-77.37416872008622, 34.60111762898855]], [[-77.40931868155464, 34.57057229376362], [-77.4093608139452, 34.570648195977114], [-77.40984795643226, 34.570774655243994], [-77.41003060815412, 34.57124603260457], [-77.41008104574516, 34.571339013948105], [-77.41005807531145, 34.5713966783754], [-77.41005467144582, 34.57142308574309], [-77.41003104709607, 34.57182516072385], [-77.41003094133181, 34.57182548041019], [-77.41003065886062, 34.57182550840766], [-77.41002996568857, 34.571825316868406], [-77.4099896295767, 34.57145074219097], [-77.40963667404426, 34.571731610046854], [-77.4095061796794, 34.57176031211986], [-77.40940636703452, 34.57173897458157], [-77.40924269268834, 34.57167171241028], [-77.40914417748125, 34.571634797638396], [-77.40896900292354, 34.57155392537837], [-77.4089439343908, 34.57123561530509], [-77.40898629219872, 34.57112685049216], [-77.40917804313978, 34.57074417955241], [-77.40917843517768, 34.570674528986316], [-77.40913867648256, 34.57056826390558]], [[-77.2685611362051, 34.582546247624286], [-77.26854439680805, 34.582476906866724], [-77.26815584141532, 34.58233064755701], [-77.2680478072685, 34.58213509671767], [-77.26790089227993, 34.58205872721338], [-77.26784923572733, 34.58195091855653], [-77.26800740311279, 34.58186412884079], [-77.26823978374486, 34.58175553470201], [-77.26847225917528, 34.581620316615144], [-77.26911840165752, 34.58160264710854], [-77.26915555997215, 34.58161150907118], [-77.26961514528135, 34.58208974570992], [-77.26917909060424, 34.58231475939667], [-77.2688381176601, 34.58260285733435]], [[-77.37332963563216, 34.53582024938896], [-77.37330254026091, 34.53578467011979], [-77.37327918336172, 34.535715601427874], [-77.37340317298107, 34.53537011841069], [-77.37398918021493, 34.53532091110907], [-77.37372056392277, 34.53572442137659], [-77.3735316208571, 34.53583840290682], [-77.37339191641004, 34.53586543859785]], [[-77.33636612852126, 34.55867881636446], [-77.33637718064902, 34.55867428639767], [-77.3367060307598, 34.558673325373064], [-77.33675994338377, 34.558821904072246], [-77.33688742338269, 34.558876121136116], [-77.33684012397202, 34.55902035575409], [-77.33681148702509, 34.55908024468913], [-77.33675960568277, 34.55924435776793], [-77.33650709554999, 34.55964553914746], [-77.336365248416, 34.55977343572297], [-77.33624180210785, 34.55966405868222], [-77.3359717970731, 34.55917588266491], [-77.33596373873804, 34.55915506881131], [-77.33595412210671, 34.55914774888209], [-77.33594527476666, 34.55912038934143], [-77.33597183664186, 34.55912695632569], [-77.33615418066057, 34.55892264837079]], [[-77.28869252125915, 34.56977475051196], [-77.2889614625604, 34.569257107395515], [-77.28852637997062, 34.56894436362816], [-77.2882702015284, 34.56935174495317]], [[-77.33387008297403, 34.69128626027729], [-77.33381668074118, 34.69149941256191], [-77.33390999748272, 34.69127383683211], [-77.33391449819246, 34.69116278164656], [-77.33387218053505, 34.69127902331218]], [[-77.2564698144656, 34.60462277431263], [-77.25668274722818, 34.60459894536202], [-77.25700880190917, 34.60466518188894], [-77.25660912114391, 34.60474443136337]], [[-77.36378841303899, 34.58034466640677], [-77.36353698526456, 34.58007759877896], [-77.36342920551668, 34.57993452394527], [-77.36291194612198, 34.579892799145], [-77.36297495453306, 34.579640414506684], [-77.36347316834856, 34.57889352661493], [-77.36353757230127, 34.578812717562265], [-77.36374649159524, 34.578698470198255], [-77.36432584234612, 34.578303215412475], [-77.36451395381795, 34.578166529267705], [-77.36471989482881, 34.578223293511535], [-77.36480260318277, 34.578257759258385], [-77.36511379914911, 34.57847389040734], [-77.36529411567344, 34.57850636397494], [-77.36550780747521, 34.578493813549684], [-77.36577688658208, 34.57863115051754], [-77.365804127187, 34.57873238440897], [-77.36590168710049, 34.57880911137772], [-77.36607777281824, 34.57877753789996], [-77.36633969270068, 34.57892720583671], [-77.36640835301168, 34.57896476913952], [-77.36657786192127, 34.579060773448845], [-77.36668956068841, 34.57919227430616], [-77.36676948958662, 34.57925116621967], [-77.3669512887706, 34.5793111349324], [-77.36704006315257, 34.57967623645488], [-77.36668921965318, 34.5799924867807], [-77.36660106870355, 34.58011576036697], [-77.36598277515749, 34.58029972621795], [-77.36590102741488, 34.58032313845236], [-77.36522953031331, 34.58053388213169], [-77.36511282400767, 34.580664551106075], [-77.36444373782635, 34.5812419913375], [-77.3643244709966, 34.58132102150089]], [[-77.36646148000294, 34.545094522977465], [-77.36676289170313, 34.54545998549111], [-77.3667046709738, 34.54554914216883], [-77.36609793966397, 34.54586705741552], [-77.36594900962602, 34.546057484710076], [-77.36538722341677, 34.546177711237256], [-77.36530549975774, 34.54618478627516], [-77.36522101296227, 34.5460076901298], [-77.36525002767348, 34.545798770663076], [-77.36526444714976, 34.545756607944874], [-77.36527205553125, 34.54572815827324], [-77.36532165350228, 34.54547685245069], [-77.36543360489715, 34.54531003051568], [-77.36562003653276, 34.5452157345711], [-77.36594076739836, 34.54506003924633], [-77.36611768460736, 34.54500138587506], [-77.36624004842828, 34.5450494295536]], [[-77.43259322086212, 34.73047228567627], [-77.43271131595635, 34.7305150122251], [-77.4328727616586, 34.73061404692878], [-77.43300039649984, 34.73072979833066], [-77.43306627907762, 34.73081331876338], [-77.43289525882493, 34.73111984014011], [-77.43281886141511, 34.73122540349371], [-77.43267371081066, 34.73130178847049], [-77.43256981809255, 34.7313359142873], [-77.43239512057308, 34.731356837788844], [-77.43233529241915, 34.73136344415138], [-77.43219363284663, 34.731286420591545], [-77.43208015049665, 34.731224717654335], [-77.4320689889403, 34.73117594114211], [-77.4320584824178, 34.73095966189316], [-77.43214097361849, 34.73075295111713], [-77.43216225493086, 34.730716404151856], [-77.43217504729313, 34.73069095477761], [-77.43223815875362, 34.73059145716336], [-77.4322935699897, 34.73051071040062], [-77.43235900835258, 34.730505642346074], [-77.43250209650164, 34.73047751166386]], [[-77.2820375638839, 34.56292443605592], [-77.28219312352203, 34.56292117255017], [-77.28237501543964, 34.562762453428874], [-77.28289080381151, 34.56246261614587], [-77.28291111839245, 34.562804551933105], [-77.28251023603377, 34.5628819774221], [-77.2821908850074, 34.56301520025327], [-77.2818870733083, 34.56321633037431], [-77.2816987319602, 34.56329779902297], [-77.28136825257741, 34.56346014720371], [-77.2812599570932, 34.56347855228246], [-77.2810735438605, 34.56350830785911], [-77.28103198275453, 34.56339527309958], [-77.28118792540963, 34.56327341861768], [-77.28132715769799, 34.5631723575741], [-77.28137587778363, 34.56313998450665], [-77.28142655514645, 34.563119326420654], [-77.28169322670476, 34.56301062096395], [-77.28177108062336, 34.562978884760675], [-77.28178511489287, 34.5630048075716]], [[-77.22477600862938, 34.65779928749761], [-77.22475270754853, 34.65774328590481], [-77.22475678142757, 34.657645891223936], [-77.22455533035202, 34.65772771784001], [-77.22462797171542, 34.65777020572562], [-77.2246575149873, 34.65784175958089]], [[-77.35739970996767, 34.73825065428778], [-77.35729475879765, 34.73847252782527], [-77.35731611126236, 34.738262131315985], [-77.35736337404828, 34.738236257590835]], [[-77.41826875158588, 34.5638786618115], [-77.41821320573804, 34.56375367290977], [-77.41838592442204, 34.56373541712691], [-77.418457285659, 34.56381483887773], [-77.41862105716014, 34.56387263356282], [-77.41865250361874, 34.564163599081716], [-77.41839229996262, 34.56415229085581], [-77.41830271374678, 34.5639753296754]], [[-77.38758579172062, 34.53661382979611], [-77.38777404417074, 34.536636054042084], [-77.38815130469848, 34.5366684405377], [-77.38813499659162, 34.53698107337283], [-77.38779776944712, 34.537122296929795], [-77.38749214756176, 34.5372555139078], [-77.38713210353227, 34.537218314416975], [-77.38710465945996, 34.53697818723399], [-77.38710562466004, 34.53697714328757], [-77.38741173256378, 34.5366883158251], [-77.38745217945448, 34.53664902092445], [-77.38750685633067, 34.53660342495896]], [[-77.39372215565812, 34.53675724768642], [-77.3937321479137, 34.53678779008526], [-77.3937800326366, 34.53693884359992], [-77.39379843681279, 34.536979032770816], [-77.39391241088512, 34.536974628916894], [-77.39411708746148, 34.536979139523794], [-77.39422499914588, 34.53696255066606], [-77.39426911010473, 34.53686399860756], [-77.39431655143508, 34.536671477169655], [-77.39418228356658, 34.536507039930804], [-77.39408736561558, 34.5365187514762], [-77.39378763551167, 34.53660065560573], [-77.39370694895065, 34.53671065910888]], [[-77.33694930405841, 34.533075984037964], [-77.33700506418887, 34.533176206188585], [-77.33702370742469, 34.53322203797338], [-77.336944144536, 34.53329872882752], [-77.3367696077726, 34.53334672702768], [-77.33655042363088, 34.53334954291518], [-77.33645639070353, 34.53331427075653], [-77.33623690933153, 34.533286680861146], [-77.3361746793564, 34.533286070386694], [-77.33615978758594, 34.533267207469095], [-77.33604629200832, 34.53324296033779], [-77.33595740853444, 34.53320911700727], [-77.33595342829915, 34.5331977457263], [-77.33601459043297, 34.53307383637368], [-77.3360398775558, 34.53299142976077], [-77.33609231976178, 34.532817840855316], [-77.33617149973904, 34.53276178088103], [-77.33629055343036, 34.53278933181248], [-77.33634726294748, 34.532914172044755], [-77.33656094680319, 34.532895333185], [-77.33680293375387, 34.53296045941282], [-77.3368597321357, 34.53300912005983]], [[-77.29375939495363, 34.55603447497759], [-77.29361505016291, 34.55616012656106], [-77.29344358970242, 34.556079769753325], [-77.29362212393337, 34.5558613128535]], [[-77.45412853037159, 34.60307617675221], [-77.45411353202046, 34.603065910233255], [-77.45409984603236, 34.60304174318576], [-77.4540420937318, 34.60290165692097], [-77.4540851644686, 34.60284218463981], [-77.45422290736077, 34.602775107984215], [-77.45443214316671, 34.602704880267744], [-77.45459745417196, 34.60279329230052], [-77.45502401014187, 34.60280619231714], [-77.45465630176156, 34.60300820054312], [-77.45447778063803, 34.603106273855225], [-77.45442783106765, 34.60313371444248], [-77.45432544013167, 34.60312067771543], [-77.45415226917812, 34.60308725282222]], [[-77.43472651222203, 34.74395900182084], [-77.43478404490264, 34.74392583743544], [-77.43480673628514, 34.743925536372906], [-77.43510937297202, 34.74393231037622], [-77.43524260866533, 34.74409179723928], [-77.43526562451952, 34.7441805086866], [-77.4353057976993, 34.744393394316276], [-77.43529942446467, 34.74461280849795], [-77.4353338097734, 34.744823795062814], [-77.43533618557686, 34.74496305083646], [-77.43510530628251, 34.74505411205749], [-77.43488676318114, 34.744806025950695], [-77.43491494823036, 34.74477319311782], [-77.43486359732465, 34.74478146570312], [-77.43482142991931, 34.74473461484098], [-77.43457893210883, 34.744466962888616], [-77.43452844009425, 34.74425605617786], [-77.43448013569326, 34.744104910051796]], [[-77.34252439451706, 34.62605541792904], [-77.34227068242784, 34.62635291930269], [-77.3420005919885, 34.62656029989744], [-77.34197603571504, 34.626579082025955], [-77.34196517126122, 34.62655419280027], [-77.34197977067817, 34.626540857267926], [-77.34182785108428, 34.626151047130506], [-77.34188641625072, 34.62603343161079], [-77.34209259819431, 34.62597896657311], [-77.34219160069449, 34.625959316647055]], [[-77.33914718046555, 34.63323746339422], [-77.33917532376164, 34.63325098297273], [-77.33918638807454, 34.63325102908185], [-77.33931459111284, 34.63324800627551], [-77.3394943073213, 34.63324541521889], [-77.33965199686739, 34.63320169411381], [-77.33977914569724, 34.63316029705896], [-77.33977312784651, 34.63303993967576], [-77.3401778000098, 34.63286527586267], [-77.34028833684009, 34.63241781461709], [-77.34063572427995, 34.632222667724236], [-77.34027709057943, 34.632239490460584], [-77.34025233086741, 34.63223860356434], [-77.3402296899315, 34.632246471513234], [-77.33974159747012, 34.632151710434584], [-77.33957518745852, 34.63205470019101], [-77.3393905427983, 34.63213017424603], [-77.33926109003829, 34.63208456828932], [-77.33919394133466, 34.63208801348317], [-77.33892598273258, 34.632009851971425], [-77.33881807147753, 34.632262885350485], [-77.33867542993485, 34.63235603128908], [-77.33844085391692, 34.63252393818108], [-77.33842720837002, 34.6325651781081], [-77.33869126206245, 34.63308330809865]], [[-77.24167400357724, 34.59555310847129], [-77.24155784832507, 34.5954355528719], [-77.24145975454775, 34.59506014486816], [-77.2426964969822, 34.59505394482973], [-77.24153785340012, 34.5948692993976], [-77.24197629005876, 34.59420487875296], [-77.24300609656112, 34.594319748023246], [-77.24310588711236, 34.594614859849585], [-77.24302391769838, 34.594935125430666], [-77.24300372305106, 34.59505540965767], [-77.24299289137257, 34.59507730510138], [-77.24297052043856, 34.595089328395936], [-77.24291852148178, 34.595143332568135], [-77.24253931091259, 34.595512908090384], [-77.24205616406053, 34.595590702277136], [-77.24181433412856, 34.59565895345269]], [[-77.36740093557734, 34.72106720454778], [-77.36718706867542, 34.721066374099394], [-77.36713932234095, 34.72106495054849], [-77.36712927323791, 34.721074314666545], [-77.36702378748099, 34.72129212972056], [-77.36699412205492, 34.721336578046056], [-77.36704790799698, 34.72137991469963], [-77.36725827153478, 34.72149985349371], [-77.36730814449604, 34.721514808124546], [-77.36748534127693, 34.72139649934425], [-77.36765218217076, 34.72136096383182], [-77.36810597137621, 34.721612652340255], [-77.36770894460531, 34.72122442108171], [-77.36769262158415, 34.72122162844176], [-77.3676228976154, 34.72118471529295], [-77.3674316975508, 34.721089106200424]], [[-77.43208483818583, 34.67869709155635], [-77.43212914327816, 34.67864420300893], [-77.43218782825332, 34.67850571640496], [-77.43206309149372, 34.678409954520205], [-77.43196843907793, 34.67836319679241], [-77.4318426256887, 34.67833284735517], [-77.43168655128271, 34.678294498173045], [-77.43161463960938, 34.67847874417612], [-77.43159468970856, 34.67852566394799], [-77.43159937298502, 34.6785315156566], [-77.43160535275275, 34.67853565586599], [-77.4317327520121, 34.67862417967979], [-77.43180555672153, 34.67866528172236], [-77.43187084618393, 34.67870054572803], [-77.43196650747068, 34.67875221374678]], [[-77.33872813438151, 34.56070179602618], [-77.33850742305589, 34.560665429314696], [-77.3383342298235, 34.56065833141664], [-77.33820040460098, 34.560667138781525], [-77.33807035401179, 34.56054162542402], [-77.33814187483254, 34.56032376014453], [-77.33833472170255, 34.56002751128319], [-77.33872798945235, 34.56002323839239], [-77.33872866054828, 34.560022797326184], [-77.33872892739329, 34.56002266811882], [-77.33912247696524, 34.56017698259106], [-77.33919419725147, 34.56030261804278], [-77.33923636940608, 34.560373950601054], [-77.33927871852934, 34.560536539121074], [-77.33926011240774, 34.56058280767974], [-77.33912205042772, 34.56073076032272], [-77.33903942474757, 34.560737776161645], [-77.33882256348552, 34.56075618990044]], [[-77.34854832518982, 34.55216175073391], [-77.34858852322006, 34.55231943623237], [-77.34843774698979, 34.55243963981982], [-77.34828033887905, 34.552414723524], [-77.34823180903408, 34.552401219320565], [-77.34812776866184, 34.552385735831805], [-77.34798434167006, 34.55234709009406], [-77.34788919335925, 34.55235023059335], [-77.34773561211706, 34.55231975318495], [-77.3477097881256, 34.55231345305225], [-77.34769404969083, 34.552299357585206], [-77.34755863947811, 34.55222280721797], [-77.34754630412485, 34.552195784328745], [-77.34750125584097, 34.55214645559896], [-77.34739864317892, 34.552066144391446], [-77.34728808096696, 34.55188016908187], [-77.34726531523202, 34.551775371907866], [-77.34731705776326, 34.55164516039429], [-77.34730689840586, 34.551392551889485], [-77.3475200175607, 34.55133175100184], [-77.347606669654, 34.55142604949583], [-77.34791118371767, 34.55139513036777], [-77.34794550107377, 34.55141105391766], [-77.34795467373831, 34.551431361123086], [-77.34811454723518, 34.5515245131217], [-77.34813106149176, 34.55152839058958], [-77.34819847401843, 34.55157804472012], [-77.34827015243073, 34.551630786553766], [-77.34828158929318, 34.55163948862438], [-77.34829787648275, 34.55165286183745], [-77.348430478576, 34.55176819821467], [-77.34849033678299, 34.55182026225668], [-77.34850446555981, 34.55184189071319], [-77.34851875613305, 34.55185809809744], [-77.34852156537156, 34.551940640339026], [-77.3485363574102, 34.55195971188141], [-77.34855577939886, 34.5520003074153], [-77.34859973840652, 34.55207300183318]], [[-77.44330678374602, 34.74975402183433], [-77.44321353942237, 34.74995103545585], [-77.44351025304725, 34.75056196661741], [-77.44383493107297, 34.75123046014349], [-77.44339493893698, 34.750755433752225], [-77.44338620545972, 34.75061372063062], [-77.44300258806214, 34.75043637020566], [-77.44287986416172, 34.750319285246775], [-77.44284358506044, 34.750359299657134], [-77.44243788201697, 34.7501165361591], [-77.44259287961954, 34.7499499200006], [-77.44292634238172, 34.749850720929224], [-77.44297367698601, 34.749824140790146], [-77.44303824077049, 34.74977193040998]], [[-77.38127190343768, 34.58361118268499], [-77.38127721535062, 34.58362638115437], [-77.3812596849179, 34.583626104840526], [-77.38126135399507, 34.58361157322848]], [[-77.37550586703067, 34.53350846323387], [-77.3753630586576, 34.53331508492432], [-77.3753515697104, 34.533246879545366], [-77.37569886326753, 34.532990985685935], [-77.37576214077332, 34.532949914194816], [-77.37581323865747, 34.53295554066208], [-77.37582935520753, 34.53296203157084], [-77.375847149396, 34.532969610632115], [-77.37603532302732, 34.53304749465804], [-77.3761011123411, 34.533114808115975], [-77.37612670040139, 34.533174142128374], [-77.37608811970698, 34.533248931179074], [-77.37602030700084, 34.533434307553904], [-77.37579364871787, 34.53381860860763]], [[-77.43381428136682, 34.67902240748661], [-77.43373537469022, 34.67890003085033], [-77.43365971874718, 34.67878409582992], [-77.43345862774555, 34.67874922134524], [-77.43332312402966, 34.678726730093175], [-77.43330421845819, 34.678729252031424], [-77.4331685546291, 34.67879657818219], [-77.43315102437397, 34.678819267792356], [-77.43309480697258, 34.678899417920526], [-77.43302817829132, 34.678992330400256], [-77.43297531069075, 34.6790697853555], [-77.43316779959414, 34.67922059578241], [-77.43329372940926, 34.67931925873051], [-77.43345175924168, 34.67931729528705], [-77.43369024809783, 34.67932693230535], [-77.43376263696489, 34.67918752649088]], [[-77.2894107275259, 34.56030080085806], [-77.28941875978231, 34.56032659686572], [-77.28948877265071, 34.56033439417925], [-77.28946664867867, 34.56036599975838], [-77.28945500069904, 34.56037161486769], [-77.28935905029856, 34.56036468338707], [-77.28935159462723, 34.560365972271626], [-77.28930951607083, 34.560353668829116]], [[-77.38850187787332, 34.5631931864086], [-77.3883983790998, 34.56302102719949], [-77.38832548898287, 34.563028490862195], [-77.38831182142219, 34.56312677742908]], [[-77.42810011077741, 34.736009703470245], [-77.42795064426572, 34.735989504519], [-77.42786307174693, 34.73592251187132], [-77.42783206672524, 34.73589831689321], [-77.427821689528, 34.735881240097164], [-77.42775811705062, 34.7358132334544], [-77.42768969532503, 34.73573451021156], [-77.42768838830688, 34.735699307969085], [-77.42774855273554, 34.73570995990258], [-77.42787278370733, 34.73570475074533], [-77.42793571483523, 34.73572948458853], [-77.42803831945429, 34.73581228549058], [-77.42805739533392, 34.73585066403007], [-77.42807929319035, 34.735906790738724], [-77.42810696570118, 34.73600323924408], [-77.42810788945572, 34.73600645885227], [-77.42810850120416, 34.73600829077442], [-77.42811022749605, 34.736014607699495], [-77.42810459190788, 34.73601143886342]], [[-77.42955254342954, 34.709959828491705], [-77.42955173699629, 34.70995739411334], [-77.42932488999894, 34.709608431138086], [-77.42932426329867, 34.709598333946246], [-77.4293268345493, 34.709585182288116], [-77.42933348772335, 34.70946179332247], [-77.42940137491816, 34.709383286656724], [-77.42942948113318, 34.70937902800235], [-77.42952110324188, 34.709387621800275], [-77.4296746989426, 34.70940588648319], [-77.42971641348477, 34.70940213091022], [-77.42993841896462, 34.709533522165586], [-77.430026789759, 34.709761948389136], [-77.42995746356287, 34.70986801989634], [-77.42957096230059, 34.70996411555488], [-77.42955921998143, 34.70996498180822], [-77.4295540294196, 34.709963221147426]], [[-77.40039672843588, 34.580433631298064], [-77.40050506452721, 34.58034264261859], [-77.40057499845845, 34.58028390656445], [-77.40066155124144, 34.58030215218486], [-77.4008218213315, 34.58037229025696], [-77.40093956512165, 34.58038703398802], [-77.40096901544655, 34.58040527771775], [-77.40118258887753, 34.58051466720475], [-77.40136303222067, 34.58066029392218], [-77.40139122020216, 34.58068432427186], [-77.40142347294677, 34.580710044080355], [-77.40154040113713, 34.580926619501724], [-77.40176078140264, 34.58108594221059], [-77.40155700792374, 34.58132437129733], [-77.40136302444745, 34.58148885100066], [-77.40100758910951, 34.58157762516337], [-77.40096899849596, 34.58160200885632], [-77.40094805822436, 34.58160523434712], [-77.40059270332087, 34.581659970283255], [-77.40057497246724, 34.58165788094241], [-77.40034074875604, 34.581543243056736], [-77.4001809521851, 34.581440421917236], [-77.40004569025942, 34.581333433515894], [-77.400032500671, 34.58107073328202], [-77.40003219273561, 34.58075049450164], [-77.40018097029659, 34.580672194520304]], [[-77.41331504029267, 34.76161162066622], [-77.41335940397562, 34.76160249014403], [-77.41334220059377, 34.76151788657811], [-77.41329022869829, 34.7615783118124]], [[-77.44287717687266, 34.73592324508785], [-77.44276640869238, 34.73581936570132], [-77.44268160643277, 34.735729592343006], [-77.44263999572337, 34.73563497672889], [-77.44256761974796, 34.73547040512956], [-77.44270828975195, 34.735398920976564], [-77.44284383461991, 34.735407819015876], [-77.44320915282344, 34.73550946174569], [-77.4433049656603, 34.735552677192715], [-77.44351059650072, 34.73574919027159], [-77.44361327300527, 34.73578724715837], [-77.4435817072539, 34.73586532829089], [-77.44349556852052, 34.73607410354649], [-77.44329024046252, 34.73613689734768], [-77.44315501323571, 34.73607099308029], [-77.44306272752198, 34.73601697597905]], [[-77.35687264116856, 34.737863758738094], [-77.356845453196, 34.737839361280855], [-77.35679491448212, 34.73775806798582], [-77.35688504019991, 34.7378210644361], [-77.35690264559472, 34.73783150974064]], [[-77.37132338635783, 34.678792401434414], [-77.37134998043545, 34.67882221630394], [-77.37130358451303, 34.678860668236794], [-77.37110874636896, 34.67896505967005], [-77.37098259299823, 34.678935681666296], [-77.37076438266696, 34.678902719541206], [-77.37106803864094, 34.6786411113031], [-77.37117972664831, 34.67873296331603]], [[-77.38451563835716, 34.6268789859912], [-77.38472004027068, 34.62675773943208], [-77.38468912690455, 34.62655454007448], [-77.38451179748779, 34.62656345146746], [-77.3844110671553, 34.62656934085661], [-77.38423283214952, 34.62670745747287], [-77.38427543201811, 34.626767571902334], [-77.38430391236209, 34.62690949690645], [-77.38441100255122, 34.626928764100306]], [[-77.4223199652504, 34.56402197914493], [-77.42229646034315, 34.56416784513537], [-77.42224216223885, 34.564278946873], [-77.42212440809996, 34.56443179120346], [-77.42193946623263, 34.5644871769984], [-77.42196725121957, 34.56428515339864], [-77.4220944316134, 34.5641384892102], [-77.42219934176495, 34.56407722718467], [-77.42224211388974, 34.564067417163486]], [[-77.33646330242969, 34.62612377932058], [-77.33637500353358, 34.626189303606566], [-77.33615996041814, 34.626207085704415], [-77.33591276443914, 34.626118974683216], [-77.33611321174607, 34.625974322166826], [-77.33623591898098, 34.62584789054686], [-77.3362569670739, 34.625849026230156], [-77.33631822746221, 34.62585233155255], [-77.33641432647612, 34.62587993095707], [-77.33652497076906, 34.625892372157026], [-77.33655120852737, 34.62603135428941], [-77.33648920197928, 34.626084430706825]], [[-77.36984108269591, 34.5808355629271], [-77.36954104819067, 34.580636368609944], [-77.36956915173036, 34.58033911043032], [-77.36984119959101, 34.58053392326084], [-77.3698882589139, 34.58053565041281], [-77.37023526544267, 34.5804297866805], [-77.37042976926023, 34.58050835653812], [-77.37038714280627, 34.58077526640951], [-77.37062919003151, 34.58069628007148], [-77.37093574198532, 34.58076580645815], [-77.37104175985594, 34.58082472790882], [-77.37106676949193, 34.58084115715415], [-77.37126570172897, 34.5809756733062], [-77.37132103774772, 34.58112559943913], [-77.37121476685294, 34.58124439704122], [-77.37102292605667, 34.5814748430784], [-77.37081645896372, 34.58150387944819], [-77.37062890372981, 34.58145383789838], [-77.37052669199664, 34.58145364365605], [-77.37026381055067, 34.58141254132966], [-77.37023489457998, 34.581398670842965], [-77.37019912129577, 34.58139069731085], [-77.37008180538405, 34.5811480903807]], [[-77.39532882721805, 34.61823324817843], [-77.39547113143999, 34.61850657168253], [-77.39572790132051, 34.61859499891258], [-77.39584438359928, 34.61859204779725], [-77.39601705730487, 34.618613821373756], [-77.39604148280719, 34.618618619817994], [-77.39605610783067, 34.61861874550403], [-77.39615670721804, 34.61861998937948], [-77.39623858308171, 34.61862346301087], [-77.3963243179902, 34.61871575839146], [-77.3963999649013, 34.618797193320724], [-77.39663276761456, 34.61904780788039], [-77.39688042926772, 34.61872790113448], [-77.39663279283168, 34.61839720750444], [-77.39660325240119, 34.61837512131142], [-77.39659650521216, 34.61834427710891], [-77.39652163481097, 34.61823534530336], [-77.39645222582254, 34.61813500397406], [-77.39627250239778, 34.61800293611125], [-77.39623861134835, 34.617978236631345], [-77.39623353947516, 34.617977514416296], [-77.39622462386936, 34.61797333749018], [-77.39584442084721, 34.61782582660263], [-77.39555197064195, 34.61796074815662], [-77.39506413873512, 34.617724853411026]], [[-77.42805754034198, 34.569748248910514], [-77.42808184662091, 34.56964197791167], [-77.42794776483242, 34.5694403909586], [-77.42780067171961, 34.56921286432512], [-77.42772302382356, 34.569230731254486], [-77.42751254703168, 34.5692996775679], [-77.4273858129881, 34.56934060003665], [-77.42736484404406, 34.569356458963526], [-77.42716545725443, 34.56955948317865], [-77.42693078032778, 34.56980835350301], [-77.42675665221608, 34.57002701844263], [-77.42657716043975, 34.570201039943655], [-77.42621110191976, 34.57030691443997], [-77.42616559941989, 34.570324535963174], [-77.42617177042908, 34.5703550021948], [-77.42618324028433, 34.57036500242014], [-77.42632510650371, 34.570592246612335], [-77.42650121464011, 34.57071961743459], [-77.42653847612826, 34.57075609324056], [-77.42657733935542, 34.57082836805646], [-77.42693881193165, 34.57111607036396], [-77.42697139912889, 34.57114124663248], [-77.42707739843281, 34.57117515424316], [-77.42736531028068, 34.57094026102633], [-77.42768079805178, 34.57088914685603], [-77.42761045375806, 34.5705592920232], [-77.42794780043454, 34.57028932670181]], [[-77.3808794204916, 34.55953253412848], [-77.38090686228156, 34.55949831115778], [-77.38092556481324, 34.55946604878735], [-77.38090753469217, 34.55943837441995], [-77.38087947483115, 34.559331648416915], [-77.38081791227482, 34.5594152411958], [-77.38075519657643, 34.55949060886162], [-77.38062802686748, 34.55977981509741]], [[-77.39151416409157, 34.568066161906486], [-77.391600709079, 34.56811631248936], [-77.39158250315506, 34.56819260538597], [-77.39164016876364, 34.56832290595085], [-77.39151411229926, 34.568444835803646], [-77.3914199894521, 34.56846551756704], [-77.39141366162886, 34.56846382842761], [-77.39140924411814, 34.56845548586773], [-77.39139838808126, 34.56835778002227], [-77.39145528964923, 34.56820071601509], [-77.39148412625295, 34.5681331283383]], [[-77.37179158784727, 34.68978045940596], [-77.37163536076753, 34.689815661204], [-77.37156219682672, 34.68975940544602], [-77.37149767911843, 34.68972453213573], [-77.37145174809099, 34.68969769142293], [-77.37131145725488, 34.689670773503124], [-77.37106232989211, 34.68958442106919], [-77.37130900239909, 34.68935280399625], [-77.37142172862357, 34.68929132094259], [-77.37158225249671, 34.689247819782814], [-77.37186890074022, 34.68922985038148], [-77.37188590136974, 34.68922850839217], [-77.37188712599449, 34.68922849907339], [-77.37197829667312, 34.68933666049941], [-77.37197564133332, 34.68935654759748], [-77.37198428413214, 34.68945768584213], [-77.37185503563619, 34.689646533155646]], [[-77.38201154961398, 34.58270785897407], [-77.38196852492602, 34.58266676330848], [-77.38176494468767, 34.58258458469927], [-77.38174551321517, 34.582364870974935], [-77.38179955642767, 34.58226655374118], [-77.38185854436236, 34.582231336269714], [-77.38188232130507, 34.58225462407858], [-77.38198577356465, 34.582314885055816], [-77.38205551944544, 34.582401104221574], [-77.38208318568897, 34.5824379537536], [-77.3820722095809, 34.58263377472041], [-77.38207657777325, 34.582651188604466], [-77.3820774038994, 34.58267472028679]], [[-77.38568480893001, 34.51588184073918], [-77.38563454667364, 34.51589864732258], [-77.38561917673385, 34.5159009688765], [-77.38559689122398, 34.51590832265494], [-77.38522455682815, 34.515997053663725], [-77.38516217189638, 34.51595723221134], [-77.3852265463367, 34.51590899523889], [-77.38560254824596, 34.51588308143737], [-77.38561963664141, 34.515880608508034], [-77.3856382456474, 34.515876999212885]], [[-77.37648172129028, 34.595287645742566], [-77.3765899664887, 34.59527060828272], [-77.37660543035012, 34.59532740540575], [-77.37659543531768, 34.59539380122341], [-77.3766320434925, 34.5955358519046], [-77.37653506059121, 34.595664120093474], [-77.37638441685803, 34.595571529421875], [-77.37641755118582, 34.59548112673937], [-77.3764682585014, 34.59534716890041]], [[-77.33339885568837, 34.56226407083394], [-77.3333222738809, 34.56207336486912], [-77.33321200341267, 34.56187499358447], [-77.33303460388198, 34.562114718341896], [-77.33306079347346, 34.56227354520554], [-77.33304085839143, 34.562326089116105], [-77.33321160886396, 34.562344782140876], [-77.33340359731321, 34.56227394418348]], [[-77.42694334117567, 34.49964740939447], [-77.42707828236763, 34.49951581358133], [-77.42729194811744, 34.49946539925517], [-77.42721316994471, 34.49958138354769]], [[-77.3349260765333, 34.69795006935501], [-77.33433990130735, 34.69801920438216], [-77.33431552745192, 34.69802323963893], [-77.33425860037497, 34.697996594344126], [-77.33380524801248, 34.69803635596982], [-77.33403531488395, 34.697798598654636], [-77.33421208064007, 34.697723398548476], [-77.33443251408711, 34.697620654594004], [-77.33454040250373, 34.697608080853094], [-77.33481804233553, 34.697651388158796]], [[-77.39676677984701, 34.61916886353332], [-77.396887292494, 34.61930191208749], [-77.39692661357022, 34.619358098278305], [-77.39702695802116, 34.61941763705243], [-77.3971043371619, 34.61946141111996], [-77.39715796716033, 34.61946583508007], [-77.39722405929568, 34.619449927701794], [-77.39733320664016, 34.619417012654594], [-77.39731047114725, 34.619209676458155], [-77.39722620310278, 34.61910260485128], [-77.39722407023143, 34.61910007511948], [-77.39713661164095, 34.618997439729625], [-77.39702697654641, 34.618868778743604]], [[-77.34162214239261, 34.68420591908971], [-77.34174857241962, 34.68435003286036], [-77.34154729175955, 34.68446361663617], [-77.34132931937857, 34.684407561486715], [-77.34129947729053, 34.68438770578174], [-77.34126821293975, 34.68439407619674], [-77.34121917561598, 34.68437923611215], [-77.34110088780811, 34.68434343884729], [-77.34099531145449, 34.68430326937996], [-77.3409101470543, 34.684293132070096], [-77.34087851015674, 34.68407714136043], [-77.34108087669358, 34.684008689925086], [-77.34115012392087, 34.683998824933326], [-77.34126251386675, 34.6840219937128], [-77.34136986114382, 34.684044122862005], [-77.34155076699444, 34.68413348685619], [-77.3415873146529, 34.6841662198654]], [[-77.4457596976653, 34.605537548267144], [-77.44588013916578, 34.605514363553894], [-77.44597391718389, 34.60538740157466], [-77.44595207611181, 34.60530233222191], [-77.4459462012146, 34.60521067870559], [-77.4457770872294, 34.60513788481277], [-77.44567519853585, 34.60518371359305], [-77.44546838924656, 34.60528620674854], [-77.44548684883395, 34.60541400275284], [-77.44550291368365, 34.60552171586769], [-77.44563491022393, 34.60557871497022]], [[-77.44945624385079, 34.611779437674016], [-77.44931682435316, 34.61170306865308], [-77.44930269339778, 34.611583221429605], [-77.44944547973384, 34.61154576385259], [-77.44961134850283, 34.61146250172131], [-77.44986186130141, 34.61146917490551], [-77.44988283665931, 34.61146818792288], [-77.44988539547852, 34.61147740947289], [-77.44978628855485, 34.61168531450302], [-77.44969556005454, 34.61177006785524]], [[-77.44640669092338, 34.607848764914685], [-77.44635542623917, 34.6080092375172], [-77.4465487907162, 34.607957048751736], [-77.44675471135858, 34.607978204722045], [-77.44688895644856, 34.60795128070378], [-77.4468494415461, 34.607862381415075], [-77.44688384141676, 34.607712697479144], [-77.4467110383889, 34.60758954263265], [-77.4466875772912, 34.60760313062285], [-77.44648769811036, 34.60773387514841], [-77.44643834709271, 34.60779359152899]], [[-77.39408667766122, 34.53425630291694], [-77.39423037330104, 34.53436750694023], [-77.39440761835746, 34.53420998996935], [-77.39423667452478, 34.5340871655666]], [[-77.37672821326902, 34.67666428297903], [-77.3765042348471, 34.67665133003439], [-77.37676210110521, 34.67654742440114], [-77.37677492782602, 34.67661410376907]], [[-77.3850368193637, 34.589684028436956], [-77.38514844107591, 34.58963827744739], [-77.38518263125363, 34.58960780668573], [-77.38520634026882, 34.58959789566172], [-77.38525287883343, 34.58951708028725], [-77.38520637272934, 34.58943315322869], [-77.38519539141474, 34.58943105776408], [-77.3850103868452, 34.589447026604056], [-77.38500933702841, 34.58944900629663], [-77.38487978639789, 34.5895374470207], [-77.38496513094299, 34.58971227383108]], [[-77.41621023478294, 34.718873496494915], [-77.41623754501849, 34.718855446322415], [-77.416244063654, 34.7188593874671], [-77.41624663045336, 34.71886279449654], [-77.41631528738756, 34.718941271895424], [-77.41631617641819, 34.718983983404925], [-77.41625214745694, 34.71900449753541], [-77.41619441779011, 34.71902087814436], [-77.41612877373079, 34.71896135348488]], [[-77.26290736514676, 34.586201110709105], [-77.26278547503175, 34.58617927661648], [-77.26281047370462, 34.58611494313837], [-77.26290999121008, 34.5861326417731]], [[-77.43045437036102, 34.74561432835749], [-77.43032222709819, 34.745610693765414], [-77.43027609422357, 34.74559217929429], [-77.43028592439461, 34.74555139277879], [-77.43030801211306, 34.74544232081935], [-77.43035224207861, 34.745413337036624], [-77.43042696610804, 34.74540789619249], [-77.43052325899947, 34.74537636775763], [-77.43073662512629, 34.74559209283908]], [[-77.38249949583322, 34.65369987236502], [-77.38250047711273, 34.65368299810413], [-77.38250147790957, 34.65366732204957], [-77.38251231482201, 34.65367446572893], [-77.38257158875052, 34.653749323036365]], [[-77.27444066109894, 34.567667195227486], [-77.27435351050424, 34.56779234407275], [-77.27410916379284, 34.567791412164], [-77.27420022843545, 34.567656024713806]], [[-77.37198114368404, 34.58198311629292], [-77.37196755341013, 34.58181624321976], [-77.37199992634956, 34.58175954103337], [-77.3720155491677, 34.58175763773126], [-77.3722049232009, 34.58173456648341], [-77.37223906511056, 34.58173368109111], [-77.37238118206278, 34.581735572310365], [-77.37240194059916, 34.58172951281304], [-77.37247861432166, 34.58180531160558], [-77.37246639549909, 34.58184371931206], [-77.37245008879104, 34.581915560927605], [-77.37240182766541, 34.58204667691224], [-77.37231600326086, 34.58205468657745], [-77.37220479333962, 34.5820969149805], [-77.37207932327377, 34.58210415999117]], [[-77.3950454717321, 34.535374966456715], [-77.39506294811017, 34.535538389585014], [-77.39528741712151, 34.5354926064571], [-77.39524797279351, 34.53539824838415]], [[-77.43482998178536, 34.73052389537746], [-77.43483890782639, 34.73053374101759], [-77.43499123779252, 34.73067981637172], [-77.43497619811286, 34.73078075654656], [-77.43492761062605, 34.73084426097692], [-77.43470083375723, 34.73094350007762], [-77.43453832257204, 34.73070821842114], [-77.43456106182254, 34.73063609133605], [-77.43462090296984, 34.73057418683993], [-77.43481006673359, 34.730523662064115], [-77.43481698766463, 34.730520660319044]], [[-77.43160830314162, 34.58420516283526], [-77.43170360355644, 34.58411472447857], [-77.43187442102659, 34.5841666931665], [-77.43170365666559, 34.58426359010783]], [[-77.35071542084333, 34.52336113781077], [-77.35075815052053, 34.52336311117651], [-77.35071386784779, 34.52342865119938], [-77.35069124804028, 34.52337274177302]], [[-77.3497906893352, 34.626112580520115], [-77.34986573478265, 34.625921016458626], [-77.35003599295499, 34.62607888663946], [-77.34993089190641, 34.62624516230316], [-77.34991527222647, 34.62627734644882], [-77.34980058099012, 34.626296681265416], [-77.34977362795756, 34.626145101333826]], [[-77.36307964532914, 34.54297580285191], [-77.36308521983645, 34.54292571101858], [-77.36316698447158, 34.5429096980624], [-77.363177561056, 34.54297063775]], [[-77.4331217138971, 34.754811136050094], [-77.43317725389983, 34.75476048716531], [-77.433246097264, 34.75480028117093], [-77.43332061485673, 34.75481256748312], [-77.43327273478393, 34.75486389724736], [-77.4332490449988, 34.75487773569719], [-77.43322168239706, 34.75488461959074], [-77.43318168802072, 34.75487051188121]], [[-77.35855852615359, 34.53505281270255], [-77.35854283232926, 34.53500301369269], [-77.35861580636424, 34.535009458926034], [-77.3586250614685, 34.53504302899987]]]]}, "type": "Feature", "id": "demo10", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.19835926696558, 34.65140069128217], [-77.1991502846017, 34.65156006769236], [-77.19954319081246, 34.65171732302783], [-77.20138770684795, 34.6521271665776], [-77.20519020379145, 34.65296259091954], [-77.20864696715039, 34.6541926197802], [-77.21106465001917, 34.65469155315262], [-77.21517957925552, 34.65584079681624], [-77.21707663048826, 34.65614938474752], [-77.21781827441427, 34.65664231774214], [-77.2187917158065, 34.65727298084161], [-77.219545053076, 34.65793891101572], [-77.2205237132689, 34.658569833686336], [-77.22090120560313, 34.659324878215656], [-77.22155513270386, 34.66063285186786], [-77.22176165396189, 34.66104591183017], [-77.22188256927717, 34.66128773890881], [-77.22234502409917, 34.662212646103], [-77.22299971111103, 34.663521951967994], [-77.22323146410943, 34.66398548696296], [-77.22451961043821, 34.66526658647842], [-77.22458855830297, 34.66586688194054], [-77.22526364030007, 34.66663629794627], [-77.22712317066133, 34.66646076199313], [-77.2288315938136, 34.66560652585078], [-77.22662415672106, 34.665105860860905], [-77.2290231210635, 34.661850816447206], [-77.22862562167545, 34.66141865685824], [-77.22832904797235, 34.660587803698654], [-77.22786635183745, 34.65987422811021], [-77.22740816127614, 34.658934937414216], [-77.227417099409, 34.65889610656121], [-77.22737752505562, 34.6587974060125], [-77.22699607910522, 34.657920193736224], [-77.22687186350257, 34.65680255536443], [-77.22680720294329, 34.65622070849828], [-77.22666364803021, 34.65600856115247], [-77.22672542687584, 34.65558775185051], [-77.22665013249781, 34.65412204659442], [-77.2266078552488, 34.653356311840305], [-77.22642921505705, 34.65221923072948], [-77.22642748248693, 34.65101895713522], [-77.22638901373901, 34.650499249028684], [-77.22639368252598, 34.65033101014953], [-77.22642609538698, 34.650061853777885], [-77.22658394075023, 34.64895690606212], [-77.22636222745322, 34.64844309689374], [-77.22640032793258, 34.64755609030814], [-77.22472756280746, 34.64642869819477], [-77.2270927245515, 34.64539486975282], [-77.22799952221163, 34.644019175425825], [-77.22831991856282, 34.64294122557009], [-77.22889830942867, 34.6417408010922], [-77.22909616330708, 34.64067014516799], [-77.22869886086131, 34.63987565060896], [-77.22847712240166, 34.63943219868956], [-77.22834729505074, 34.639172543857974], [-77.22785813377729, 34.63819420287664], [-77.22702269920332, 34.63652334632514], [-77.22600949003397, 34.63594659389334], [-77.22638441844526, 34.635246844321614], [-77.22567883571978, 34.63361782791816], [-77.22597515750252, 34.63302058322514], [-77.22839998826554, 34.63163498789801], [-77.23005293457732, 34.63054205498193], [-77.23226338615528, 34.62895461642316], [-77.23326571518001, 34.62824784600524], [-77.23924305468358, 34.6257209307533], [-77.24024724080738, 34.62553615640829], [-77.24145178520342, 34.62512218827993], [-77.24387625615586, 34.62338496767126], [-77.24632025813395, 34.621734862207035], [-77.24709622970569, 34.621108684958244], [-77.2492799529403, 34.61819715368432], [-77.24943161846028, 34.617926703085494], [-77.25016334901929, 34.61747935834052], [-77.25233257802435, 34.615247683679186], [-77.25306187612577, 34.61472409174872], [-77.25417942444855, 34.613650617466796], [-77.25534430021129, 34.61266726141223], [-77.25753421862146, 34.61130522966503], [-77.25687909303979, 34.609700752609676], [-77.25704168465596, 34.60938116086189], [-77.25720381361062, 34.60906246433592], [-77.25915862446449, 34.608847313300025], [-77.26107545820082, 34.60924875659545], [-77.2629894478854, 34.610352295541176], [-77.26520984525317, 34.61190880201306], [-77.26576570579786, 34.61225209574837], [-77.26615423965347, 34.61254351000113], [-77.26656986052907, 34.61271908870578], [-77.26690024376109, 34.61244714966378], [-77.26801223051979, 34.61178781959953], [-77.26866650673335, 34.611427906102556], [-77.26883642698861, 34.611251866516575], [-77.27000484397135, 34.61000838151014], [-77.27092988920577, 34.608919403701904], [-77.27181202028278, 34.60789268277601], [-77.27269739199772, 34.607184345787296], [-77.2729554309658, 34.606247824358135], [-77.27382780373291, 34.602899282620896], [-77.27406814086807, 34.60083276789571], [-77.27430833924507, 34.60021395801607], [-77.27500898989335, 34.59866184603944], [-77.27605759116014, 34.5975513016033], [-77.27630040358625, 34.59737657785782], [-77.27665495929655, 34.597103269211644], [-77.27798642781481, 34.5961046418113], [-77.27946875299864, 34.595391666491224], [-77.28088597572533, 34.59471000819444], [-77.28528003414519, 34.59307085167018], [-77.28565318397756, 34.59295260693954], [-77.28595016565343, 34.592869433812865], [-77.2870892711119, 34.592299883969694], [-77.28987791882483, 34.59120127206523], [-77.2902444409458, 34.59031690634274], [-77.29148156668509, 34.587359666249284], [-77.29256279569606, 34.58479902157457], [-77.29190029964106, 34.582409984853804], [-77.29356660581806, 34.5813432159073], [-77.29514274941802, 34.580101190971824], [-77.29848618472394, 34.58035147490134], [-77.30204255539367, 34.5782553033215], [-77.30304745931518, 34.577571287363426], [-77.30353035416343, 34.5772634760065], [-77.30630504658771, 34.57614262694393], [-77.30815377604577, 34.57478592900129], [-77.3091666933677, 34.57480278221977], [-77.31114312507921, 34.573320449616304], [-77.31265044647397, 34.57218995978875], [-77.31547580185058, 34.57007099387626], [-77.31642407087553, 34.568918039191274], [-77.31712009720309, 34.567797605945486], [-77.31788205873124, 34.56688123480322], [-77.31863303484167, 34.564787193556846], [-77.31879587720987, 34.564335669798226], [-77.31926116436193, 34.56409385327153], [-77.31901709271436, 34.5637161975015], [-77.32003237396613, 34.56058681478452], [-77.32088159533845, 34.5598926379095], [-77.32084197558194, 34.55949127716597], [-77.32103633541685, 34.55897427224937], [-77.32103643833715, 34.558973720208016], [-77.32103689165875, 34.558972792560766], [-77.32129377639347, 34.55844712708343], [-77.32143021300135, 34.55817233660434], [-77.32184635996921, 34.55739553172863], [-77.32184611816034, 34.557388528655295], [-77.32181813367056, 34.55736750495622], [-77.32185884993176, 34.55734402963608], [-77.32244924387868, 34.55668108084374], [-77.3226589864421, 34.55670883119578], [-77.32343525809782, 34.55618096483667], [-77.32344435668202, 34.55617188703556], [-77.32345686033338, 34.55617014932958], [-77.32501013926047, 34.55594053215519], [-77.32503282524615, 34.555940610656144], [-77.32504609423871, 34.55594122934426], [-77.32517043506752, 34.55593164373496], [-77.32639761486843, 34.555884441772065], [-77.32660511894053, 34.55586834438645], [-77.32674077008605, 34.55578941853754], [-77.3272844536579, 34.55562785468286], [-77.32739682689564, 34.55559314023981], [-77.32742838533639, 34.55558757449948], [-77.32743392875479, 34.55560637349581], [-77.32757049229366, 34.55596273455027], [-77.32762896487091, 34.55606797207546], [-77.32797119279934, 34.556388434761125], [-77.32805297350893, 34.556496663884715], [-77.32811617724519, 34.55651532715956], [-77.32816017203174, 34.55653714229507], [-77.32839670772161, 34.556595587203034], [-77.3286260609727, 34.55661236417038], [-77.3289447194163, 34.556569940188474], [-77.32905256781572, 34.55653113668819], [-77.3289940919025, 34.556606220615656], [-77.3290828732249, 34.55674953479863], [-77.3290565819044, 34.556842053585655], [-77.32906268051833, 34.556919794858246], [-77.32911744969451, 34.557322934455996], [-77.32891956269808, 34.557651987504556], [-77.328777518372, 34.557774636066725], [-77.32868840579023, 34.55787422688479], [-77.32838970102205, 34.55808267390648], [-77.32839699760059, 34.55816092268448], [-77.32844506350818, 34.55819713541828], [-77.32867052331027, 34.55836642591706], [-77.32887138233585, 34.55881399220457], [-77.32888171240408, 34.55882570326521], [-77.32888505333986, 34.558829668080364], [-77.32889195762831, 34.55883935208211], [-77.3291497578218, 34.55911212451913], [-77.32936425609682, 34.5592459793397], [-77.32946832147795, 34.55944690292414], [-77.32965715948015, 34.56004115133089], [-77.32892953013977, 34.56010435517042], [-77.32888019108981, 34.56009650898348], [-77.32885643354707, 34.56014248125486], [-77.32814277832938, 34.56021610519133], [-77.32809220311538, 34.56022163394808], [-77.32802171562979, 34.5602120298226], [-77.32769822984253, 34.5602602586842], [-77.32750827859164, 34.56014207234086], [-77.32748789474206, 34.56013792495555], [-77.32730443058739, 34.56010757739888], [-77.32718961578453, 34.5601067787824], [-77.3269495130955, 34.560059552763434], [-77.32691026925772, 34.560351402240634], [-77.32670954310153, 34.56047656930236], [-77.32691016482629, 34.56046533860369], [-77.32726834764127, 34.56043483117898], [-77.3273041357135, 34.56043095532506], [-77.32734734039937, 34.560431476514495], [-77.32769804471096, 34.56046435605282], [-77.32796916760486, 34.56042794422606], [-77.32809200120965, 34.56044540460625], [-77.32838268192356, 34.56054948498312], [-77.32866292917235, 34.56042966588521], [-77.3288799338607, 34.56038458605686], [-77.32935350471496, 34.56094567480338], [-77.32953937530601, 34.56105673100903], [-77.3293782154975, 34.56179119841807], [-77.32918168792953, 34.562146323388525], [-77.32904933211324, 34.562502951948446], [-77.3289990428177, 34.56269476821321], [-77.32926316279374, 34.5630723755635], [-77.32926901069963, 34.5630831655147], [-77.32928095673151, 34.56308900955871], [-77.32966525622098, 34.56327991051852], [-77.32997916724929, 34.56340297847039], [-77.32988562413249, 34.563654254193715], [-77.32966469097121, 34.56392133369988], [-77.3295315099104, 34.564173111260594], [-77.329597911894, 34.564306849047426], [-77.32960633661183, 34.56436809760695], [-77.32966417262259, 34.564509777541915], [-77.32978955362827, 34.56499281035488], [-77.33015876140936, 34.56507531782991], [-77.33038093055323, 34.5651194954612], [-77.33045154553085, 34.565133379281555], [-77.33068528781786, 34.56525163699173], [-77.33084534885256, 34.565315315119065], [-77.33089836366827, 34.56533640621362], [-77.33091824516073, 34.56539069806301], [-77.3309617610708, 34.56551007189859], [-77.33105964103952, 34.5657949131088], [-77.33107553108516, 34.56596851100427], [-77.33123839299404, 34.566381190005146], [-77.33129103234954, 34.566553847628896], [-77.33132160289132, 34.566606337987], [-77.33148251215478, 34.5671684943447], [-77.33169425845102, 34.567401851765666], [-77.33202501972491, 34.56791723920236], [-77.3321994200468, 34.56799032191399], [-77.33241715165397, 34.568147023096756], [-77.33254379896204, 34.56841841398372], [-77.33245159667904, 34.56860236779647], [-77.33233001994833, 34.56867926779465], [-77.33202425964078, 34.568811743284876], [-77.33193251263825, 34.56896704029633], [-77.33164048080603, 34.56909648407914], [-77.33163003854595, 34.569096360940385], [-77.3316028220222, 34.56911314915984], [-77.33131748014938, 34.56924203206762], [-77.33123590449122, 34.56927646040014], [-77.33109582017993, 34.56933691283301], [-77.33070016552827, 34.569514891760754], [-77.33044762716217, 34.56964118959156], [-77.33036189830952, 34.56971603981444], [-77.33044742576857, 34.569873321234425], [-77.33051746402477, 34.57004259166349], [-77.3305467530783, 34.57011401031257], [-77.33060932393349, 34.57027985014867], [-77.3307223174301, 34.570640928334264], [-77.33082611757732, 34.5709229351081], [-77.33077525150722, 34.571424626800514], [-77.33078377401525, 34.57177809698438], [-77.33087822057269, 34.572147283922995], [-77.33088415584382, 34.57218820867176], [-77.33095253896828, 34.572300379417676], [-77.3311114325057, 34.572580081894024], [-77.33115747267816, 34.57265485482125], [-77.33123295909675, 34.57271206806426], [-77.33155385938804, 34.57301951272377], [-77.331626639082, 34.57308386330875], [-77.33182668551188, 34.573117403441074], [-77.33202062513836, 34.57309823745867], [-77.33228031245791, 34.572981445668965], [-77.33280897717833, 34.572673295406425], [-77.33298947453085, 34.572504487019856], [-77.33324015062658, 34.57227411681808], [-77.33359750265173, 34.572028995442146], [-77.33406216992776, 34.57180737206923], [-77.3343859760511, 34.571433392935624], [-77.33447863808412, 34.571346779619084], [-77.33459348468841, 34.571230499169516], [-77.33486425251388, 34.5708573502269], [-77.33517457593436, 34.57066775751182], [-77.33532506935563, 34.570438212289794], [-77.33570906484228, 34.57022104343313], [-77.3358870813223, 34.570113652883734], [-77.33596302739802, 34.57006932356545], [-77.3360215453179, 34.57011302523397], [-77.33614194212194, 34.57015881034077], [-77.33656411351834, 34.57029929243429], [-77.33675080541516, 34.570306952615624], [-77.33700251413096, 34.57045962588687], [-77.3370058930775, 34.5706085524012], [-77.33720921758302, 34.570854447853485], [-77.33738648503422, 34.57099248173018], [-77.33753823407616, 34.57099677233332], [-77.3376780347996, 34.57121158425372], [-77.33769085175446, 34.571469431868344], [-77.33793178957954, 34.57155245481944], [-77.33796320254321, 34.571595124459634], [-77.33805351663874, 34.57171343971773], [-77.33809024337212, 34.571830426839895], [-77.33812855214622, 34.57185252382749], [-77.3381954440562, 34.571986274086335], [-77.33812834889551, 34.5721151235794], [-77.33807280015863, 34.57215635756526], [-77.33793123420827, 34.57226777499302], [-77.33765333188201, 34.572488761085616], [-77.33757442792898, 34.572540405131335], [-77.33753701384725, 34.57255871030724], [-77.33750549408373, 34.5725439926474], [-77.33714298076242, 34.572607652348175], [-77.33704607543581, 34.57257606970802], [-77.33683792694876, 34.5725102416625], [-77.33674911083763, 34.57244943029858], [-77.33654232649232, 34.57242565673804], [-77.33625790654236, 34.572369658108556], [-77.33596138368863, 34.57212251372612], [-77.33560294231017, 34.57232052086249], [-77.33517312017884, 34.57246564653063], [-77.33496213215068, 34.572648479517675], [-77.33469483985877, 34.57291408928496], [-77.33454092504476, 34.57310464967426], [-77.33440631042647, 34.57338010633223], [-77.33438436335153, 34.57340350944189], [-77.33409745048431, 34.573540011862534], [-77.33385956984326, 34.57359945669484], [-77.33359618671109, 34.573618833051206], [-77.33335204930484, 34.57369319607216], [-77.33320205210856, 34.57378009592891], [-77.3330614575867, 34.57399795967649], [-77.33301626441514, 34.574229210333385], [-77.33312638704521, 34.5744940550114], [-77.33332617332584, 34.57480898806075], [-77.33343157270558, 34.57497000456711], [-77.33359068161016, 34.57561589406796], [-77.33359108797666, 34.57561998881937], [-77.33359092286199, 34.575623898606615], [-77.33358100358514, 34.57645668412378], [-77.33348183137619, 34.576484771777146], [-77.33287128243661, 34.57664323691018], [-77.33280564623718, 34.57665805129182], [-77.33272958632257, 34.576674832395824], [-77.3321359093303, 34.57680581492743], [-77.33201742387061, 34.57688613252227], [-77.33167120728193, 34.5771178372978], [-77.33160067712724, 34.57715544320042], [-77.3312290033769, 34.5773410829256], [-77.33100433073233, 34.577447955340254], [-77.33083475734138, 34.577606400410595], [-77.33075002197317, 34.57772648023277], [-77.33063122916607, 34.577949115088614], [-77.33044013347701, 34.57830725149084], [-77.33032864900807, 34.57851618684022], [-77.33022586128881, 34.57888121239509], [-77.33060754496007, 34.57877684167244], [-77.33122786251577, 34.57867930611455], [-77.33137221575923, 34.57864163469148], [-77.33162197433906, 34.57857645565171], [-77.33189093272335, 34.57854636560795], [-77.33201603338114, 34.57853505997069], [-77.33211955331713, 34.578490225555214], [-77.33262043862567, 34.57850463047137], [-77.33280405151577, 34.578570513783205], [-77.33330221904463, 34.57852111721952], [-77.33359217638574, 34.578476822921004], [-77.33389851918979, 34.57845308115134], [-77.3343802751614, 34.57841280825155], [-77.33491248892904, 34.578253066237465], [-77.3351684846916, 34.57820897819099], [-77.33545966005107, 34.57821235687165], [-77.33595662930936, 34.57808171690411], [-77.33658512588732, 34.577908881515924], [-77.33674474272163, 34.5779907108068], [-77.33701564454998, 34.57796680393696], [-77.33753306056057, 34.577633978044894], [-77.33831046415618, 34.57750034916767], [-77.33833451751096, 34.57749967162721], [-77.33910916386162, 34.57759524641721], [-77.33955682705852, 34.57767624839132], [-77.33989722744525, 34.57755821928432], [-77.34026070843422, 34.57760003580174], [-77.34068525183346, 34.577573253644644], [-77.3409177385642, 34.57771236013317], [-77.34124303867986, 34.57791619087298], [-77.34184494707462, 34.57827771566399], [-77.34226050887702, 34.57870238228989], [-77.34259181520656, 34.57906315430518], [-77.34328902632929, 34.579320134342495], [-77.3438359962285, 34.57956282208721], [-77.34491778681011, 34.579618430431005], [-77.34641443608245, 34.57995085042744], [-77.34698784143355, 34.58011264617508], [-77.34777674485838, 34.57952322127725], [-77.3493753209489, 34.57931832227051], [-77.35014047944736, 34.57945173351758], [-77.35055674503589, 34.57952430776856], [-77.35195541212798, 34.57977162269295], [-77.35329240064824, 34.57991914399364], [-77.35455165687978, 34.58143668372271], [-77.35519965028193, 34.581360644838526], [-77.3564437932799, 34.58140615049137], [-77.35737948663972, 34.581379288014375], [-77.35801997950742, 34.58130047542625], [-77.35854227260765, 34.58108449806953], [-77.35880817497218, 34.58104652131719], [-77.35909244153598, 34.580985527997925], [-77.3595962965218, 34.58092784976208], [-77.36016293758554, 34.58089909420142], [-77.36038439457596, 34.580851002590066], [-77.36054311976501, 34.58091189692745], [-77.36079071270356, 34.581047307010365], [-77.36103949357661, 34.58115458974341], [-77.36117205939412, 34.58165252760439], [-77.36125055139658, 34.581745592602715], [-77.36125049043136, 34.58183022331006], [-77.3612433157367, 34.58190816681448], [-77.36134536728306, 34.58247850472728], [-77.36145297913973, 34.58265017923043], [-77.36148188312914, 34.58316051059737], [-77.3615704800622, 34.5834823709414], [-77.36165863344107, 34.58399516378055], [-77.36169692950489, 34.58431327458955], [-77.36178455195692, 34.584488356606656], [-77.36248149525069, 34.58504942869449], [-77.36260483011617, 34.585184338721575], [-77.36274646321243, 34.585322621939035], [-77.3634062839335, 34.58590331162121], [-77.36353423976104, 34.586025708761966], [-77.36377900532227, 34.585975414246334], [-77.36398400323918, 34.58604673320768], [-77.36417553485856, 34.58607918886296], [-77.36432226978445, 34.58619493203071], [-77.36452453901009, 34.58623554624276], [-77.36448733873183, 34.58645884845046], [-77.36441177746981, 34.58656634336888], [-77.36432191245734, 34.586989759187304], [-77.36423649234678, 34.58725217389634], [-77.36424818561333, 34.587342394300606], [-77.36392760569292, 34.587538574413905], [-77.36370352065235, 34.58760397692191], [-77.3635334363305, 34.58777664717325], [-77.36309698677822, 34.58835725213019], [-77.36304275422631, 34.58868597224715], [-77.36303066715683, 34.588791355575225], [-77.36295151008895, 34.589004538360555], [-77.36290773044446, 34.589233609285095], [-77.36281344625418, 34.58932136485584], [-77.36274457831247, 34.58934986884672], [-77.36262965358539, 34.589397434993586], [-77.36205935660139, 34.589466685026544], [-77.3619563795974, 34.58947691237821], [-77.36186301361244, 34.58948459760705], [-77.36122506883254, 34.58953710773656], [-77.36116819754027, 34.589564055960956], [-77.36064171180053, 34.58984186814805], [-77.35969508893659, 34.59043357064962], [-77.35959143950494, 34.590508593949565], [-77.35946307493954, 34.59057859276217], [-77.3595912948802, 34.59079602409774], [-77.36003871533686, 34.59171143001822], [-77.36031828215049, 34.592153702057985], [-77.36116660556556, 34.59285249359482], [-77.36229199515375, 34.592355640521696], [-77.36240134936122, 34.59355205370531], [-77.36274250702981, 34.59380436752269], [-77.36358228315078, 34.59417537166139], [-77.36547590481332, 34.59480761691674], [-77.36549565163381, 34.59523457017793], [-77.36456024358984, 34.59689918216078], [-77.3643173033992, 34.59733148720484], [-77.3636817772459, 34.59846237253832], [-77.36330781490595, 34.59912781998574], [-77.36320759094161, 34.601422294241345], [-77.3633817765169, 34.60190199898436], [-77.36355813483878, 34.60269183912438], [-77.36356629925035, 34.60272454696147], [-77.36356853482036, 34.60276934792381], [-77.3635266302231, 34.602803081963664], [-77.36339528280575, 34.602890607989764], [-77.36273813859515, 34.60329906994867], [-77.36256547681221, 34.603717727886675], [-77.36247128463182, 34.60514296170782], [-77.36253874067094, 34.60541979279344], [-77.36259390980314, 34.60556609301673], [-77.36273688078396, 34.60605893637054], [-77.36296841288294, 34.60680639993905], [-77.36303714924301, 34.607046264922964], [-77.3633636116925, 34.607675127272536], [-77.36344107672947, 34.6078372284058], [-77.36344162629445, 34.607926247605405], [-77.3634560951898, 34.608684175516885], [-77.36342515125861, 34.60879505807043], [-77.36324760917111, 34.609265861290595], [-77.36312950666559, 34.609449452579035], [-77.36308532970756, 34.60953911600495], [-77.3628930540892, 34.60961433299124], [-77.36276901041396, 34.6096685586603], [-77.36273523878198, 34.60967896545938], [-77.3626880585248, 34.60969465080693], [-77.36234098992693, 34.60986202251278], [-77.36216265281512, 34.60995198111407], [-77.36214385768812, 34.609969066876054], [-77.36198403753757, 34.61016973185338], [-77.36197470667756, 34.610201275872754], [-77.36195908056187, 34.610584317215704], [-77.3619684780521, 34.61059652510587], [-77.36209087989062, 34.61073450022219], [-77.36232041529038, 34.610992026747056], [-77.36234046816487, 34.61100510036022], [-77.36248183297721, 34.61109949434257], [-77.36273452771721, 34.611253233255454], [-77.36277129406467, 34.61129045772127], [-77.36276469659879, 34.61133102581622], [-77.36275971794133, 34.61135892555215], [-77.36275544392629, 34.61175691179916], [-77.36273428226166, 34.611797511716816], [-77.36259859472214, 34.612058024722344], [-77.36251701615669, 34.612215784984535], [-77.36233976463073, 34.61254965864547], [-77.3622989374719, 34.612627793735555], [-77.36226154675393, 34.61267711051691], [-77.3622102244294, 34.612823884601006], [-77.3620854388417, 34.613127012308865], [-77.36204945739813, 34.61324440964772], [-77.36194858269397, 34.61357126424244], [-77.3619491448305, 34.613575524140316], [-77.36194511149363, 34.61358214348538], [-77.36192757863411, 34.613593165565035], [-77.36168381662445, 34.61375258433425], [-77.36155086082218, 34.613726297924536], [-77.36143698614283, 34.61376752487234], [-77.36115660970981, 34.61386833432407], [-77.36102587562071, 34.613987875662374], [-77.36087834086825, 34.61402492838214], [-77.36076233502854, 34.61405720771266], [-77.36064507646603, 34.61405713460931], [-77.360509160802, 34.614051115338086], [-77.36036825620464, 34.61383213819144], [-77.36033641083546, 34.613803296612595], [-77.36024588001898, 34.613523735309734], [-77.36018001273334, 34.61340125195855], [-77.36001180648225, 34.61304113919212], [-77.35998600713523, 34.61299220119016], [-77.35990514109018, 34.61294155427869], [-77.3595804122295, 34.61275174935401], [-77.35953329978952, 34.61269599077362], [-77.35948447725704, 34.61265224521297], [-77.35910352230624, 34.612371800806514], [-77.35879245669088, 34.61193735905685], [-77.35877735112105, 34.61192118195353], [-77.35876803740342, 34.61190624403127], [-77.35868561186177, 34.61180295406651], [-77.3584030026847, 34.61110967053646], [-77.3587930701886, 34.61070654032826], [-77.3591201878801, 34.61050958339045], [-77.3591873361823, 34.61051374974613], [-77.3595536780168, 34.61009497222911], [-77.35918766694839, 34.60984483974987], [-77.3590533755416, 34.60988704110663], [-77.3587934555969, 34.60993433574718], [-77.35848141182497, 34.60991317245087], [-77.35800476762526, 34.610629701684665], [-77.35734676558494, 34.610552903528486], [-77.35721649238504, 34.6105016381524], [-77.3571729363033, 34.61048449764998], [-77.35642835318778, 34.610120436228236], [-77.3559030215871, 34.61033689012389], [-77.35381185773568, 34.61065061692851], [-77.35355335908586, 34.613203974866295], [-77.35352237046438, 34.61351011139085], [-77.35371112470885, 34.61395499653409], [-77.354366705276, 34.61560593221296], [-77.35484854575046, 34.61587360798573], [-77.35506007480677, 34.616457128698265], [-77.3560526066305, 34.61654248608068], [-77.35599509111219, 34.61701347929016], [-77.35594706641447, 34.61740677308525], [-77.35581596867213, 34.617619448307344], [-77.35487247412618, 34.61841047705944], [-77.35485725873829, 34.618423537428036], [-77.35484715211837, 34.61844620115547], [-77.35428462887575, 34.619588096473784], [-77.35405795791385, 34.61986092889961], [-77.35371362000177, 34.62027538763718], [-77.35348423500193, 34.62054002062786], [-77.35326919937103, 34.62044867931536], [-77.35321067379955, 34.62041078856298], [-77.35301883413005, 34.620375332741474], [-77.35169270587178, 34.619792553145345], [-77.35036987883261, 34.62075635024962], [-77.3502826908411, 34.620949312318245], [-77.35016572915299, 34.62104412235806], [-77.34998237024996, 34.62105618040488], [-77.34900823209328, 34.62109371975529], [-77.34889632913024, 34.62109803189635], [-77.34853959295576, 34.621009399771076], [-77.34780005669383, 34.620785634029446], [-77.34753734113532, 34.620706138863675], [-77.3458577285791, 34.620039725364684], [-77.34478457295813, 34.61974897806094], [-77.34226399697941, 34.618799282551294], [-77.34201190590129, 34.61869245096342], [-77.34115157265366, 34.62042943922552], [-77.34110324616115, 34.62054194384804], [-77.34086948568196, 34.62073363361566], [-77.33993072755591, 34.62107805176597], [-77.33930273665548, 34.62137188236214], [-77.3387573166807, 34.62160983799499], [-77.33812766530323, 34.62157091011897], [-77.33749197408375, 34.62168392457571], [-77.33611950840161, 34.62095534746932], [-77.3359220766721, 34.62088371186521], [-77.33461618036355, 34.62011355845563], [-77.33404141240902, 34.62047826586288], [-77.33320103944648, 34.62101151067274], [-77.332379049835, 34.62172359333814], [-77.33031561306407, 34.62351104038217], [-77.3303277510851, 34.62366641385739], [-77.33033461976818, 34.6268843475352], [-77.33094605759538, 34.62958258270008], [-77.33101713913811, 34.63016667330207], [-77.33110448151146, 34.6308842088241], [-77.33120368790512, 34.63182905338148], [-77.33123411050003, 34.63252094545485], [-77.3312503830355, 34.632891083996306], [-77.33098509403551, 34.63354701394999], [-77.33098305694497, 34.63362114304514], [-77.33108828360422, 34.63437684281832], [-77.33109861130534, 34.634396388374434], [-77.33131622526298, 34.6350564493319], [-77.33143499495668, 34.635173263195455], [-77.33151539321585, 34.635236122439025], [-77.33158739730331, 34.63531557254116], [-77.33163054450056, 34.63535743218269], [-77.33159966719165, 34.63537667301637], [-77.33155957964134, 34.635494203486886], [-77.33153052253806, 34.635493138543126], [-77.33145167167777, 34.63543671981547], [-77.33141841868675, 34.63542808445725], [-77.33125825873023, 34.63527059781304], [-77.33121986355462, 34.63524719783254], [-77.33093675129086, 34.63526362351161], [-77.33086005754367, 34.63525213710544], [-77.33071698286271, 34.63509479928642], [-77.33058050141909, 34.63508363012638], [-77.33056990681249, 34.63509897309786], [-77.3305770707154, 34.63507996209006], [-77.33057262283634, 34.6350443944167], [-77.33060436521603, 34.63493581085537], [-77.3305960315707, 34.63486636479514], [-77.33075184930206, 34.63473987929589], [-77.33104537587188, 34.63438272914923], [-77.33079193127342, 34.63379860115947], [-77.33016130962747, 34.63418837140781], [-77.32971343961356, 34.63395384463631], [-77.32950721019517, 34.634046024378705], [-77.32941736977244, 34.63407353386985], [-77.32936323688973, 34.634110377108954], [-77.32917706188044, 34.63412562695138], [-77.32910915514015, 34.634132737885736], [-77.32902630617465, 34.634129379083944], [-77.32889119730248, 34.634117572162296], [-77.32878374345647, 34.63410629021695], [-77.3286671495929, 34.6341276223214], [-77.3284697033693, 34.63413647910994], [-77.32806174759429, 34.634611577840765], [-77.32793122107748, 34.63464314097591], [-77.3278627059225, 34.634711018188455], [-77.32760342419198, 34.63485486900415], [-77.32758753796031, 34.63512137997125], [-77.32739918451172, 34.63518193820506], [-77.32721408674925, 34.63514160598274], [-77.32679743412554, 34.63505081692888], [-77.32672696083793, 34.635022473729464], [-77.32670158890755, 34.635008239361035], [-77.32599963002285, 34.63458847222792], [-77.32571785614397, 34.63537725185889], [-77.32564122110058, 34.63596796325142], [-77.32563722520472, 34.635972358593094], [-77.3256250190235, 34.63599128473193], [-77.32538390115276, 34.63630504363264], [-77.32531015391415, 34.636331211012696], [-77.32525983317947, 34.63644225553923], [-77.32512130558135, 34.63659155161895], [-77.32501631213381, 34.636724143856846], [-77.32501589800323, 34.63686378406116], [-77.32487392805346, 34.63690395451697], [-77.324864444929, 34.63690663777406], [-77.3247181251895, 34.636638464754405], [-77.32447972921292, 34.63658478943936], [-77.32427958233703, 34.63670342809368], [-77.32413562361593, 34.63664361902038], [-77.32380436491206, 34.63640969560858], [-77.32370244659009, 34.636353248532124], [-77.32349401764449, 34.63626240961767], [-77.32324943896907, 34.636102127976656], [-77.32309959949512, 34.636088101778064], [-77.32278484731606, 34.63597472025774], [-77.32273814117093, 34.6359663687491], [-77.32269270845886, 34.635888659893986], [-77.32283235411046, 34.63577991918569], [-77.3229932828961, 34.635558402501296], [-77.32302966968845, 34.63553599942485], [-77.32325437749151, 34.63545129180419], [-77.3230545229574, 34.635340238828974], [-77.3228128210395, 34.63533345483732], [-77.32227935332341, 34.63519108829723], [-77.32202117749644, 34.63509001097346], [-77.32116024418221, 34.63512466185983], [-77.32097819574592, 34.6350877140641], [-77.3207219297914, 34.635365987515115], [-77.32042221279957, 34.635507403768074], [-77.32037757857435, 34.63572841467809], [-77.32017961603515, 34.63587286262727], [-77.31990911983958, 34.63595825114769], [-77.31987465991743, 34.635969129153615], [-77.31983013811652, 34.635983183272145], [-77.3195736236836, 34.636064156877595], [-77.31948400964615, 34.63609434576147], [-77.31942372120801, 34.63611474020546], [-77.31937479786104, 34.63612656624908], [-77.31927218017374, 34.6361571579493], [-77.31913857129283, 34.636204139125105], [-77.3186347628405, 34.63610272472814], [-77.31862300127725, 34.636112468931586], [-77.31860817170585, 34.63610617073613], [-77.31859183419874, 34.63609052691367], [-77.31818839747592, 34.635789300370746], [-77.31813454157604, 34.63573122553517], [-77.31815258757388, 34.635652319862245], [-77.31814112539371, 34.63530833657853], [-77.31815856161603, 34.63499046969655], [-77.31819756903563, 34.6344566272834], [-77.31818073278743, 34.63434375313428], [-77.31799092045367, 34.63388506636265], [-77.31784070316988, 34.633661573148125], [-77.31764511393345, 34.63342185509111], [-77.31740581644351, 34.63323681924197], [-77.3172606330218, 34.63303517832773], [-77.31707617886917, 34.632922397630544], [-77.31659080720135, 34.63236542569581], [-77.3164563658593, 34.63233170218208], [-77.31624031459134, 34.63219299676233], [-77.31586323157971, 34.631929780029964], [-77.31563451105792, 34.63166304658852], [-77.31514472837297, 34.6315393209132], [-77.31512450954745, 34.63152476583322], [-77.31507850544051, 34.631508264863236], [-77.31466521983283, 34.63128614215158], [-77.31442821955963, 34.63115876327708], [-77.31411554477543, 34.63079627139711], [-77.3140914703074, 34.63052358515919], [-77.31402291811442, 34.63026225199442], [-77.31393503018339, 34.62997704212259], [-77.31364268330296, 34.629436831251276], [-77.31354723322528, 34.62918622030003], [-77.31346531732203, 34.6290707972369], [-77.31326002194588, 34.628411847940534], [-77.31327422533506, 34.628379666902276], [-77.31322085736726, 34.62770778392521], [-77.31341901311906, 34.627515855267006], [-77.31301400107716, 34.627299536769726], [-77.3119971665513, 34.627386322402], [-77.31149397603892, 34.627429265470184], [-77.31045530379863, 34.62730877359982], [-77.30936310984706, 34.62800869812481], [-77.30929117179633, 34.62804103105213], [-77.3082503023241, 34.629082008789965], [-77.30784599378175, 34.62936068921581], [-77.30728859426274, 34.63004375222668], [-77.30574258785828, 34.632735446162954], [-77.3055480987507, 34.63555572996119], [-77.30607305225735, 34.63696194669251], [-77.30621826974648, 34.638520078868964], [-77.30536440546022, 34.64023191666046], [-77.30510557510095, 34.64047031645375], [-77.30543757526708, 34.6405968403872], [-77.3066203695536, 34.642612248854874], [-77.30819820189875, 34.64303992228581], [-77.30850563772506, 34.64312549388208], [-77.30876341318421, 34.642962153502474], [-77.30938259789006, 34.64326030249809], [-77.3108225262134, 34.643478069997144], [-77.3111932570844, 34.64375650410806], [-77.31191997459328, 34.643846721279786], [-77.31386247759994, 34.64429563455851], [-77.3150778442299, 34.64423874835983], [-77.31584250690118, 34.64575103352513], [-77.31623801539503, 34.64653322180887], [-77.31692368133298, 34.64678795403458], [-77.31714850570505, 34.64606074394813], [-77.31814766192878, 34.64650591883793], [-77.31866374183826, 34.645364366299425], [-77.31883482850625, 34.644966071833586], [-77.31892618226996, 34.644484422166784], [-77.31895770370582, 34.64441342016576], [-77.31899254227166, 34.64433494538174], [-77.31925130060979, 34.64402021886398], [-77.31932513457332, 34.64358576276901], [-77.31938057282184, 34.643473545124], [-77.3194412434298, 34.643380382976915], [-77.319652318888, 34.643059941329625], [-77.3197994913969, 34.64292913425065], [-77.31996269073201, 34.64278834202712], [-77.32017451579804, 34.642880258355305], [-77.32014728911975, 34.64262908739946], [-77.32023729366054, 34.64256148930673], [-77.32031185922315, 34.64248908102941], [-77.3203760043879, 34.642455087319114], [-77.32040415338808, 34.64242732989856], [-77.32050600189622, 34.64239181424661], [-77.32051510515089, 34.642530957609964], [-77.32050480883784, 34.64258007617656], [-77.32046863362842, 34.642752650129594], [-77.32045660682249, 34.64281002430675], [-77.32041373390156, 34.64301454849853], [-77.32039810838279, 34.64308909088612], [-77.32032578960859, 34.643448591237046], [-77.32087863408626, 34.64416188375271], [-77.32090084290766, 34.644192579461716], [-77.32091587951601, 34.64421167164175], [-77.32100048621727, 34.6443190967823], [-77.32134216550196, 34.64499720506351], [-77.32141412212644, 34.64547211430479], [-77.32186591480004, 34.64589062563968], [-77.32293753739927, 34.64704812498245], [-77.32370066324447, 34.646840825793205], [-77.32346713621874, 34.64600014661262], [-77.32295185275674, 34.6449210406762], [-77.32278714845006, 34.644799100110205], [-77.32289793688116, 34.644756405558475], [-77.32264204733127, 34.64397501822508], [-77.3224756978975, 34.64337148148112], [-77.32241420610282, 34.64316227994505], [-77.32239859768663, 34.642955278825], [-77.32253020437045, 34.6428204964084], [-77.32270686352923, 34.64257579220345], [-77.32292110259161, 34.64249008651706], [-77.32309195970231, 34.64242937739478], [-77.32325978503806, 34.64242479996726], [-77.32370992889645, 34.64231831658904], [-77.32418945334013, 34.64227542545272], [-77.32434051858236, 34.64227012894683], [-77.32465680566834, 34.64239475175397], [-77.32503158116629, 34.64252316841109], [-77.32517542868675, 34.64261956693968], [-77.32562507544127, 34.642631651406624], [-77.32569792712712, 34.64265307419438], [-77.32573981305572, 34.642650343342325], [-77.32625681784403, 34.64255426213985], [-77.32631358521317, 34.64253050188441], [-77.32640221853046, 34.64248712592021], [-77.32678028977129, 34.64237576007982], [-77.32691120938647, 34.6423181157025], [-77.32710974810472, 34.64223459358085], [-77.32747083928984, 34.64235328578579], [-77.32756412167561, 34.64238110230835], [-77.32762841919842, 34.6423558291185], [-77.32817653777045, 34.642242400988586], [-77.3283337644244, 34.642107603122604], [-77.32848719430268, 34.642329490894454], [-77.32851479521595, 34.642897092843654], [-77.32849998282896, 34.643314344232145], [-77.32833017273889, 34.644038990087545], [-77.3280969026238, 34.64503444892844], [-77.32804215361969, 34.64555619147984], [-77.32792148218255, 34.6457830055949], [-77.32780349669297, 34.64660040144133], [-77.3288915557133, 34.64634935465594], [-77.32958237283808, 34.64605470664071], [-77.33005087973672, 34.64674375633557], [-77.33166556662039, 34.64627029586772], [-77.33213258021138, 34.6460000368444], [-77.33277409980842, 34.6459452332141], [-77.33384105971315, 34.64563235223761], [-77.33410827577576, 34.64493433896369], [-77.33430738284859, 34.64473316768738], [-77.33440204214975, 34.64454781104941], [-77.33462416694323, 34.64401957017024], [-77.33480266959276, 34.643861026894214], [-77.33488109163025, 34.643745166747735], [-77.33527379875176, 34.643293072072794], [-77.3354345041128, 34.64331273558665], [-77.33547182789498, 34.643151238073834], [-77.33562339051697, 34.64303847740962], [-77.33593467874906, 34.64291611355442], [-77.33599475227304, 34.64291436406887], [-77.336319287434, 34.64294298747282], [-77.33659910839101, 34.64296547429834], [-77.33666020222995, 34.64303966335899], [-77.33677410802918, 34.64303259308222], [-77.33733441470885, 34.64320856350436], [-77.33747061920792, 34.643015629467314], [-77.33776670249215, 34.642950068918125], [-77.3379192156379, 34.64293243613906], [-77.33804969392783, 34.642889016633006], [-77.33825388645948, 34.64267750289064], [-77.33846782497972, 34.64247619675366], [-77.33871559576501, 34.64221956298313], [-77.33886289683932, 34.642593921864716], [-77.3390615270321, 34.64268276364625], [-77.3391482107086, 34.64267581990593], [-77.33936425943992, 34.64294710882829], [-77.33944267813177, 34.643076243888494], [-77.33953420422706, 34.6432741183127], [-77.33954926360639, 34.64334371393092], [-77.33962781128815, 34.64346940786676], [-77.33972333304979, 34.643668691443125], [-77.33980744102566, 34.64386284439391], [-77.33992656402805, 34.644135922792486], [-77.33998237389153, 34.64430393786201], [-77.34015144913488, 34.64448209076239], [-77.34032990335135, 34.64476400246699], [-77.3405310551499, 34.644777980094275], [-77.34083401127633, 34.64485536593322], [-77.34085560479896, 34.64487132553625], [-77.3408698778642, 34.64487091140315], [-77.34088965201943, 34.644873190164816], [-77.3409783033453, 34.644915433871404], [-77.34102253190345, 34.64499724352155], [-77.34103331685694, 34.645039008230526], [-77.34104505850281, 34.64507030113932], [-77.34107491036147, 34.64524429766622], [-77.3411233414811, 34.645489377651586], [-77.34115610102079, 34.64565515056665], [-77.34114943666171, 34.64578296140593], [-77.34114002435032, 34.646079354687956], [-77.34112626445665, 34.646146697831036], [-77.341059190435, 34.64636595497993], [-77.34103856775275, 34.646515277506], [-77.34099970505827, 34.64688228441304], [-77.3409937612155, 34.64694342471033], [-77.34099202319534, 34.64697049525525], [-77.34098220799399, 34.6470229485129], [-77.34090858207057, 34.64737711305006], [-77.34088036187373, 34.64753349861421], [-77.34087269664865, 34.647593037100854], [-77.34080314652206, 34.64772503028586], [-77.34075523648843, 34.64775031109669], [-77.3406207128777, 34.64783862110487], [-77.34054377531548, 34.64788652568067], [-77.34047272413301, 34.647925585637616], [-77.34022933325257, 34.64805596021391], [-77.3400901073743, 34.64813025292297], [-77.33993422706591, 34.648180630980235], [-77.33978599733612, 34.648179976149905], [-77.33976557000904, 34.6481774482559], [-77.33960610647038, 34.64814101820237], [-77.33926386284963, 34.6480261585051], [-77.33926281628482, 34.64802591450871], [-77.33926226085356, 34.64802575281137], [-77.33926108220804, 34.64802522529624], [-77.33891103706156, 34.647868558669025], [-77.3387751077145, 34.64784207470897], [-77.33832870949597, 34.64782037996998], [-77.33827357995997, 34.64788279132824], [-77.33819062445606, 34.647851076539624], [-77.337650414261, 34.647854394624034], [-77.33765200646593, 34.64797607480139], [-77.33758685486174, 34.64789825414457], [-77.33741710431212, 34.64797021129486], [-77.33736703633579, 34.64815120567749], [-77.33732844178022, 34.64822107141838], [-77.33734490916001, 34.64837720333358], [-77.33744491018741, 34.64832980641001], [-77.33771967359266, 34.648312843005755], [-77.33787503652701, 34.648475815860806], [-77.33797513952695, 34.64862369688271], [-77.33805122518108, 34.64870105954367], [-77.33813874815806, 34.64880510852629], [-77.33823239673634, 34.64891643997461], [-77.33828769504356, 34.64900280060897], [-77.33832500419217, 34.64915144883556], [-77.33836816459342, 34.64941375344826], [-77.33829027786838, 34.64955920983685], [-77.3381121116899, 34.6496199630378], [-77.33799857584607, 34.64970085776214], [-77.33784454432089, 34.649684225318126], [-77.33766789534909, 34.64964852844857], [-77.33733596279252, 34.6495553992041], [-77.33733060194616, 34.64955355928562], [-77.33732605986249, 34.64954067887503], [-77.33732206404133, 34.649557306411644], [-77.33705357954354, 34.6499662797909], [-77.33706046417763, 34.650015198513785], [-77.33705972384722, 34.65008976867672], [-77.33704754694013, 34.65043896582404], [-77.3369727235779, 34.65055806727982], [-77.33691016026802, 34.65065765226768], [-77.33683487548343, 34.65076301244871], [-77.33671653527853, 34.65076910879291], [-77.33661303768613, 34.650772351981985], [-77.33649158221634, 34.65077615776141], [-77.33642189043277, 34.65077834151559], [-77.33642273411061, 34.65071188212129], [-77.33640326499858, 34.65052737198445], [-77.33640343958407, 34.65052592242582], [-77.33642137846982, 34.65037697759601], [-77.33642910444428, 34.65031282904176], [-77.3364485198564, 34.6501516235367], [-77.33643492197393, 34.65010103337003], [-77.33640843202545, 34.65003125150884], [-77.33644655114884, 34.64967744250684], [-77.33597499944017, 34.649190263250695], [-77.33563460753145, 34.64946672820797], [-77.3353992748182, 34.649511805684014], [-77.33518191412587, 34.64955343882408], [-77.33416607259038, 34.64974801233782], [-77.33306623632869, 34.64995866194417], [-77.3328285570224, 34.64946493301943], [-77.33058246554721, 34.65028303657908], [-77.3304018311207, 34.65013496665655], [-77.33004429058862, 34.65009504481543], [-77.32995187209175, 34.650568422223586], [-77.33039702943744, 34.65065004642973], [-77.32993132940372, 34.65265889467425], [-77.32983737249356, 34.65370095940783], [-77.32924295884654, 34.65404158626679], [-77.32889127111768, 34.654357137721384], [-77.32867887141293, 34.65430946061076], [-77.32856890946302, 34.65426797403819], [-77.32830296331733, 34.654170500209446], [-77.3259352898937, 34.6534023498987], [-77.32452978337275, 34.653078767865594], [-77.32313465061875, 34.65221060767264], [-77.32097471503782, 34.652303806855706], [-77.32060604467794, 34.65237387177437], [-77.32026935286521, 34.65527195445711], [-77.32167996598066, 34.658301537785434], [-77.32174196569746, 34.65844599644013], [-77.32174027846881, 34.65859817498134], [-77.3219996047138, 34.65931552640856], [-77.32259260822197, 34.66150243483918], [-77.32341903505491, 34.66159199119212], [-77.32477973151568, 34.66176587884505], [-77.3250826190897, 34.6619121795784], [-77.32628965451568, 34.66336928114818], [-77.32750952107912, 34.66374447702441], [-77.3280447465179, 34.6639059546549], [-77.32830953401958, 34.663963719608866], [-77.32912891593531, 34.664185011879916], [-77.32939616949358, 34.66425718918526], [-77.33044100683753, 34.66433734165467], [-77.33072318691532, 34.6644868501155], [-77.33119573298002, 34.66451644762567], [-77.33204210178911, 34.66467616323294], [-77.33244711396206, 34.66372991995463], [-77.33277702534909, 34.66332337908235], [-77.3327823884629, 34.66199970258482], [-77.33278240365, 34.66199596042175], [-77.33278254262456, 34.66199393224245], [-77.33278262048118, 34.66198673176731], [-77.3327942313949, 34.661337543135616], [-77.33279311486623, 34.661150505558396], [-77.33290636273925, 34.6610088627491], [-77.33303785225424, 34.66092016178603], [-77.33304757607911, 34.66091484115525], [-77.33305847817697, 34.660916924786825], [-77.33321481034436, 34.66095033149416], [-77.33331591334836, 34.660943828564726], [-77.33365909664302, 34.66103171504069], [-77.3337197383006, 34.66129257340149], [-77.33379148503992, 34.661601195297386], [-77.3338492364486, 34.6618496185125], [-77.33390251447665, 34.66207879906696], [-77.33415848845084, 34.66245963161971], [-77.33474572192483, 34.66249195411852], [-77.33549890952297, 34.662756054810885], [-77.33576087283382, 34.66158736625644], [-77.33549218702969, 34.66122857747875], [-77.33507601293563, 34.6606515087999], [-77.33482035597248, 34.66026227060435], [-77.33477232789143, 34.66003501161807], [-77.33453527812269, 34.65967851264138], [-77.33446364227048, 34.6595594979993], [-77.33429022746019, 34.65925716234766], [-77.33432005961375, 34.659091816753424], [-77.33443255988524, 34.65904276612792], [-77.33453475093336, 34.65895859085546], [-77.33471527925764, 34.658856225414496], [-77.33495187095346, 34.65868069174002], [-77.33509183330378, 34.658303203012125], [-77.33522105839172, 34.65818625341541], [-77.33533624931528, 34.658093221770116], [-77.33549748975256, 34.65796844273205], [-77.33560955426105, 34.657960085191576], [-77.33580047460052, 34.65788278404314], [-77.33604741088529, 34.657833640807155], [-77.3368866707498, 34.65781772373411], [-77.33707335352065, 34.6578434345709], [-77.33722366717083, 34.65780150125997], [-77.33806825230539, 34.657894819920436], [-77.33830898452408, 34.657949354083875], [-77.33840886112887, 34.658115708663324], [-77.3385005387146, 34.65798970094122], [-77.33902883770998, 34.658014108299476], [-77.33926054876721, 34.65773120923369], [-77.3394902312038, 34.65757902428133], [-77.33957230686737, 34.65753184958312], [-77.33964585426702, 34.65759925914456], [-77.33979125630698, 34.65752638978325], [-77.33984809862996, 34.65731091690916], [-77.33989786913241, 34.657292282612985], [-77.33990993637792, 34.657076505425735], [-77.33968572815111, 34.656828869061464], [-77.33960659444305, 34.65652886731629], [-77.33964900411326, 34.65639273179294], [-77.33970977779751, 34.65632461361842], [-77.33997956552321, 34.656371909859146], [-77.34019358042286, 34.65591518051529], [-77.3404012745497, 34.655760446879135], [-77.34048213223424, 34.655686221169546], [-77.34074575684596, 34.6554219437172], [-77.34102501045459, 34.655201130514385], [-77.34113324000796, 34.65510921654408], [-77.34123873168558, 34.65492774662398], [-77.34128534748133, 34.65490336308578], [-77.34157178582205, 34.6548513373333], [-77.34159444823108, 34.654848207940375], [-77.34161687567624, 34.65484559506875], [-77.34191495373295, 34.65483493355673], [-77.34217124285014, 34.65489628936016], [-77.34224615348012, 34.65490458023457], [-77.34260424070649, 34.65514782685405], [-77.34296995616648, 34.65531960726633], [-77.34310124219269, 34.65535152419986], [-77.3431638018936, 34.65550751266237], [-77.34375709510938, 34.65604965346107], [-77.34392463711652, 34.656017823766824], [-77.34440593339428, 34.656091695283294], [-77.34533137030326, 34.656897957229056], [-77.34551647545585, 34.65745927087182], [-77.34597654169073, 34.65753324510631], [-77.34629009252828, 34.65725366446758], [-77.34659988144935, 34.657448416878495], [-77.34664969921334, 34.657512219842914], [-77.34681826215703, 34.65753782629291], [-77.34709938303723, 34.65777019346188], [-77.34730549172107, 34.65777272996201], [-77.34739558607299, 34.65775789292254], [-77.34762867744256, 34.65784855967101], [-77.347633425723, 34.657861146890454], [-77.34765921914236, 34.657864288249186], [-77.34802690521887, 34.658175599463306], [-77.34805679293497, 34.65817123196593], [-77.34827866234265, 34.658181315392085], [-77.3484342264162, 34.65857226669907], [-77.34875283761842, 34.65860089327587], [-77.34903360897985, 34.65847978510283], [-77.34936961100118, 34.65848337575171], [-77.34957126812162, 34.658617650387846], [-77.35016587438177, 34.65925831668277], [-77.35029918928024, 34.65947311140373], [-77.35046932610126, 34.65956851222475], [-77.35054968285746, 34.65989463449576], [-77.35079335423791, 34.66079144661576], [-77.35076809967016, 34.66121549047051], [-77.3507512431791, 34.66141705321144], [-77.35077160014225, 34.66226994182596], [-77.35064329117176, 34.662920635295436], [-77.35095323340343, 34.66317296381893], [-77.35147856330255, 34.66280593306709], [-77.35200458893688, 34.66258663531562], [-77.35210649763637, 34.66253850203602], [-77.35240752027092, 34.66218900630821], [-77.35263524162208, 34.661983239359245], [-77.3528960690705, 34.66208422084166], [-77.35286708764372, 34.66177124019594], [-77.35308462334966, 34.66159302767598], [-77.35316483418089, 34.661432228717885], [-77.35334694136557, 34.66147728951951], [-77.35351191513712, 34.66168267843612], [-77.35362585782696, 34.662073468348666], [-77.35409437550402, 34.662446684447524], [-77.35362198158842, 34.662761589865774], [-77.3538801409681, 34.663866932581676], [-77.35394907260105, 34.66415465525833], [-77.35420511066496, 34.664572674719956], [-77.35422103928181, 34.66458807259381], [-77.35474261248692, 34.664782466259645], [-77.35488577459728, 34.66486472049754], [-77.35548033728607, 34.664919102622235], [-77.3557062275388, 34.66502148773912], [-77.35587643248088, 34.66499941586504], [-77.3560496411846, 34.66497658411906], [-77.35694793964318, 34.66485393220701], [-77.35710748833942, 34.66488131523204], [-77.35761621360723, 34.66512785057161], [-77.35743738693914, 34.665625045186815], [-77.35745343926452, 34.665647376871455], [-77.35746357895343, 34.66571624410201], [-77.3575196792797, 34.66599058728818], [-77.35749232926082, 34.66610488384123], [-77.3574740665558, 34.66623965180161], [-77.35735249911882, 34.66661147896404], [-77.35714796039241, 34.66706517967836], [-77.35714111344763, 34.667127903379686], [-77.35711459128247, 34.66719740511794], [-77.3567906966338, 34.66766342377012], [-77.3566962911418, 34.66810300464055], [-77.35670541129558, 34.668162526400025], [-77.35671572574772, 34.66818635351795], [-77.35666110176325, 34.66848136342164], [-77.35662555209186, 34.66866088209597], [-77.35651867717473, 34.669126461285906], [-77.35652437362833, 34.66922707450072], [-77.35601680805678, 34.66971926895998], [-77.3555806440601, 34.67014222062983], [-77.35507613994021, 34.67049597599273], [-77.3539380830681, 34.67167772888726], [-77.35358718561912, 34.67172879292647], [-77.35302423730336, 34.67207980029412], [-77.35361811768716, 34.672780006355744], [-77.35509125967883, 34.67416731434237], [-77.35553101344497, 34.67443688621167], [-77.35621920981359, 34.67406251959252], [-77.3564196340487, 34.673563019062534], [-77.35765292421195, 34.67278069815058], [-77.35786302716002, 34.672389983238546], [-77.35821333654906, 34.67176391369243], [-77.35847727731519, 34.671330829459336], [-77.35866248267148, 34.6711228328585], [-77.35885642551929, 34.671226912187045], [-77.3588864375676, 34.671245730486326], [-77.35892423336304, 34.67126942913505], [-77.35936440325966, 34.67153860836619], [-77.35945915802287, 34.67159324238345], [-77.35965821969512, 34.67165597981607], [-77.35988516445461, 34.67180626373106], [-77.36005795067884, 34.671920682856836], [-77.360463706872, 34.67187480946451], [-77.36058795283434, 34.67190686602634], [-77.36074389304903, 34.671940390972836], [-77.36083321645097, 34.671981935763434], [-77.36094591279502, 34.67202549904988], [-77.36101339320393, 34.672042798469185], [-77.3611771010709, 34.67207582222712], [-77.36134510015903, 34.67211239069563], [-77.36157698629577, 34.67216286504276], [-77.36171456660358, 34.67222216357217], [-77.36185010161194, 34.672252818039915], [-77.36195720590709, 34.67231488942359], [-77.36204210929569, 34.67236421357063], [-77.3621028681257, 34.6724129002193], [-77.36223709423753, 34.67252012596606], [-77.36226069641438, 34.672590148080246], [-77.3624484892107, 34.672734773257865], [-77.36249076305334, 34.67280724517992], [-77.36258743804925, 34.672805319670715], [-77.36277325575034, 34.67293384247587], [-77.36279561312068, 34.67296676684026], [-77.36283230123051, 34.6729926489277], [-77.36301680781608, 34.673144070542996], [-77.36301444896974, 34.67319251120706], [-77.36306799595837, 34.67321157967322], [-77.3631957517168, 34.67344715210991], [-77.36358225441504, 34.673501705168796], [-77.36360885116333, 34.67352333308772], [-77.36363944593253, 34.67354590107279], [-77.3638254829744, 34.67369468082675], [-77.36385839829524, 34.67372543369266], [-77.36405498809296, 34.673934958326235], [-77.36407453143309, 34.673953260801504], [-77.36409289606065, 34.673970978759705], [-77.36428192175512, 34.674187819698055], [-77.36428260546047, 34.67418860400326], [-77.36428984080801, 34.67419713981242], [-77.3644639458814, 34.67440737894624], [-77.36448154684734, 34.67442835752996], [-77.36449974233979, 34.674464660834374], [-77.36461785783902, 34.67462992302943], [-77.36457552507918, 34.674750235183936], [-77.36458548805643, 34.67487806622194], [-77.36470001493063, 34.67519894319268], [-77.36449551186767, 34.67537782013563], [-77.3645617937731, 34.675549273715276], [-77.36475816485208, 34.67563659830165], [-77.3647884741663, 34.67582495201119], [-77.36496206563235, 34.67602957008942], [-77.36501079954567, 34.676112632721846], [-77.36509036123338, 34.67627085595342], [-77.36507619886729, 34.67633593277779], [-77.3650254706401, 34.67676382774312], [-77.3649799206568, 34.67677342358717], [-77.36502249016343, 34.67677151968999], [-77.36502641007394, 34.676774709238494], [-77.36504014817022, 34.67677683846442], [-77.36554481794673, 34.67705062242861], [-77.36564099453477, 34.67708379865289], [-77.36575136205181, 34.6771547972939], [-77.36594776844257, 34.67724184725988], [-77.36603206932858, 34.67743393544819], [-77.36610456613944, 34.67751536460454], [-77.36615447901215, 34.677586787464826], [-77.36619165444486, 34.677797563542754], [-77.36615650456908, 34.67786961662037], [-77.36620881797768, 34.67785610667073], [-77.36636184778934, 34.67804567945559], [-77.36607650027979, 34.678312171345524], [-77.36605214476445, 34.67831208212503], [-77.36580686388503, 34.67821015451972], [-77.36574363199617, 34.678187491986364], [-77.36555915798391, 34.67815599308986], [-77.3655640957516, 34.6779314787943], [-77.36527148338746, 34.677992710821925], [-77.36503640440846, 34.677943514254935], [-77.36499070055298, 34.67774672268245], [-77.36504606540981, 34.677541839011795], [-77.36477934710896, 34.677626231247814], [-77.36470882254102, 34.677407248156555], [-77.364559016146, 34.677354292988255], [-77.3645356453146, 34.67732186689952], [-77.36450407715446, 34.67717064679645], [-77.36439084703127, 34.67690258248211], [-77.36437065039586, 34.676857150165944], [-77.36436779690108, 34.67681902584075], [-77.36432618220928, 34.67661956587237], [-77.36430812945937, 34.67653303941451], [-77.3642475246243, 34.676386679937465], [-77.3642449892058, 34.6763845348976], [-77.36424256497916, 34.676382337928345], [-77.36411803120396, 34.67628516297944], [-77.36401703388536, 34.67612833746408], [-77.36389984771918, 34.67605890985833], [-77.36353846597252, 34.67608385269636], [-77.36340994396892, 34.67615808663025], [-77.36310314102907, 34.676336148145786], [-77.36276529235253, 34.67653815875841], [-77.36268785350916, 34.676584155426], [-77.36266257159556, 34.676583795307664], [-77.36263498299115, 34.67660826082723], [-77.36232494963556, 34.67680358345963], [-77.36218455657702, 34.676788136622655], [-77.3620908902062, 34.676683020123185], [-77.36208038019416, 34.67667122537622], [-77.36206700805198, 34.67666128744895], [-77.36186368061601, 34.67651379183425], [-77.36157998893815, 34.67627723405946], [-77.36156672401468, 34.67627822033914], [-77.36147416400085, 34.67628036765761], [-77.36098759455764, 34.67625632036106], [-77.3607263041944, 34.67613677457636], [-77.36035333127114, 34.67594696951502], [-77.3605491771625, 34.67548469593066], [-77.36058946926025, 34.67542714087731], [-77.36059770790168, 34.67539148327899], [-77.36054914445687, 34.67509050136878], [-77.36042876404517, 34.67496183159633], [-77.36035693855325, 34.674844251267984], [-77.36023937388768, 34.674710114109786], [-77.359847867763, 34.67472671360315], [-77.35962218770636, 34.67477466308217], [-77.35891882658392, 34.67516926849778], [-77.35892045470136, 34.67518096460918], [-77.3587520909344, 34.676079719940745], [-77.35928465273378, 34.675937747390996], [-77.35934999433829, 34.6760848105509], [-77.35922099564704, 34.67615709511627], [-77.35864041522449, 34.67620916015665], [-77.35860679103892, 34.6762113237957], [-77.35858199534464, 34.6762106630622], [-77.35848830399742, 34.67620318371694], [-77.35803857363848, 34.67610709305728], [-77.3577732288352, 34.67630141094473], [-77.35756103961619, 34.67652869590246], [-77.35758143811042, 34.67698089380635], [-77.35778039125155, 34.67699667221439], [-77.35792778464713, 34.67710848986398], [-77.3580836226033, 34.67723354675763], [-77.35820839916224, 34.67728668516732], [-77.35828268963667, 34.677328053488836], [-77.35844501223957, 34.67749875300007], [-77.35851195538486, 34.67756915041737], [-77.35858844362676, 34.677651588028226], [-77.35864560067466, 34.67773855306202], [-77.35872209588752, 34.677876149041566], [-77.3587990777815, 34.67801462011921], [-77.35887805455522, 34.678099190813526], [-77.3589665203397, 34.67827993723172], [-77.35901755813461, 34.67832372081813], [-77.35908761840975, 34.67838382334382], [-77.35914127073836, 34.67849397462484], [-77.35916254499975, 34.678523252325206], [-77.35919857046275, 34.67854254830601], [-77.35915252351096, 34.67857786498447], [-77.35910800677902, 34.67860859087784], [-77.35876601943347, 34.67887345057431], [-77.35842452073544, 34.67913626562702], [-77.35829568046726, 34.67934539256185], [-77.35813621646614, 34.67959158148815], [-77.35807416187879, 34.67967177864092], [-77.35803404745661, 34.6797861713164], [-77.3578931080115, 34.68001429656825], [-77.35748695965282, 34.680239822629716], [-77.35744828784972, 34.680258189260805], [-77.35742869608774, 34.6802704574735], [-77.3573427908513, 34.68031827811447], [-77.35716799036257, 34.68028363364751], [-77.35629153842078, 34.68033906611408], [-77.35622358110378, 34.68029841947521], [-77.35577876373794, 34.679987056503826], [-77.35576258953907, 34.6799578101985], [-77.35557629427181, 34.679875062408925], [-77.35519666567235, 34.67971246501436], [-77.3551383927614, 34.6796498702501], [-77.35505927916755, 34.679598485013315], [-77.35470007086218, 34.67936141159939], [-77.35462165655436, 34.6792592152342], [-77.35426576345554, 34.678795794969616], [-77.35424064231114, 34.6787640938783], [-77.35418552905628, 34.67874371103256], [-77.35368433106109, 34.67840390355266], [-77.35328513559445, 34.678050481810956], [-77.35301790606891, 34.67792928719766], [-77.35282203113178, 34.67749084478061], [-77.35238328742815, 34.67703384002234], [-77.35168762915907, 34.67678722190487], [-77.34837848247928, 34.677322789990335], [-77.34775327033631, 34.678652110894504], [-77.34743745484776, 34.67904160577294], [-77.34677525242446, 34.6798582594367], [-77.3459771162083, 34.6802999435381], [-77.34590267028018, 34.68085565743428], [-77.34586436044228, 34.68126905721462], [-77.3462455581481, 34.681682359728725], [-77.3465602712647, 34.68231018582262], [-77.34722285803304, 34.68243914777653], [-77.34779861808808, 34.682544933600454], [-77.34815345168498, 34.682660796710714], [-77.34827369314428, 34.68294272637466], [-77.34853464216798, 34.68394414690135], [-77.34896200306235, 34.6843347534377], [-77.34897026984885, 34.68439725648483], [-77.34894062278518, 34.684768509247576], [-77.34887352982602, 34.685260069418895], [-77.34895312806219, 34.68531073417545], [-77.34933261132399, 34.68547988607439], [-77.34939337046524, 34.685648368742434], [-77.34963780080214, 34.68570412281732], [-77.34981607761625, 34.68587623360513], [-77.34993688320272, 34.686018452171695], [-77.34988548024809, 34.686157501882235], [-77.34982587833001, 34.68626576021124], [-77.34978400797684, 34.68665881395705], [-77.3497686944149, 34.686853354641045], [-77.34976530445358, 34.68690507270702], [-77.3497690668392, 34.686935972267804], [-77.34970869383177, 34.68711930534508], [-77.34964898490693, 34.6871647320725], [-77.34948623196135, 34.68724121945906], [-77.3494145209162, 34.687259180109386], [-77.34921273560184, 34.687364114400836], [-77.34907900634201, 34.68738396349542], [-77.3489819201408, 34.687432395188345], [-77.34891160271769, 34.68744513560248], [-77.34890020787874, 34.68740753666485], [-77.34888582696257, 34.68734719887809], [-77.34896801055788, 34.68725821562612], [-77.34898441759168, 34.687145639993574], [-77.34885473035493, 34.68712565719675], [-77.34884727583761, 34.68703109914195], [-77.34883913204905, 34.68698664923233], [-77.34887448966933, 34.686836056429954], [-77.34889029175208, 34.686781503574814], [-77.34883136298876, 34.686660611071616], [-77.34883968916918, 34.68646865652015], [-77.34874300609383, 34.68647974758635], [-77.34871164047742, 34.68631864706698], [-77.34867909122421, 34.686206454479965], [-77.34868222929725, 34.6861956535267], [-77.34866310540177, 34.68619228112456], [-77.34854511400005, 34.68613059185491], [-77.34849873660048, 34.68610418290126], [-77.34852640632266, 34.68592139075303], [-77.34837154047865, 34.68587795279113], [-77.34867338871057, 34.685414095237256], [-77.34809792323202, 34.68560932884823], [-77.3478242623131, 34.68576768977826], [-77.34773259750399, 34.685743926800946], [-77.34748711209278, 34.685651542572884], [-77.3473285549045, 34.68566068579386], [-77.34713665081634, 34.68556008296186], [-77.34694201495859, 34.68546745862262], [-77.3466779149943, 34.685623049394906], [-77.34640887988121, 34.68578936273503], [-77.34622771616243, 34.68586602569276], [-77.34617288492376, 34.685899273356], [-77.34599286918495, 34.68590021686508], [-77.34593536695547, 34.6858421640753], [-77.34577337808307, 34.68574720181297], [-77.34577597700472, 34.68567295254189], [-77.34571482188574, 34.68557105159103], [-77.34565052968182, 34.685375318034076], [-77.34553180585173, 34.68501168076564], [-77.34563296572055, 34.684791713946616], [-77.34555717899659, 34.684658815269486], [-77.34539082989326, 34.684625628736114], [-77.34527547438823, 34.68435340127502], [-77.34514552173059, 34.68418726601582], [-77.34505086375147, 34.68394690389705], [-77.34504130495375, 34.68389816186355], [-77.34505146145463, 34.68386548148334], [-77.3450222097711, 34.68383390331262], [-77.3449886633462, 34.683519638848615], [-77.34451126827142, 34.68353225837639], [-77.34448582930199, 34.683512423999666], [-77.34445480876377, 34.68349127654281], [-77.34452876939135, 34.683085213399025], [-77.3440287570502, 34.683132731565635], [-77.34396238886735, 34.68307147812596], [-77.34396974543944, 34.682727073348765], [-77.34359412541886, 34.68256835823313], [-77.34341766070467, 34.682363594413005], [-77.34316176506938, 34.68220659641149], [-77.34311037410887, 34.68217313447272], [-77.34276910061936, 34.68207435663727], [-77.34254353014381, 34.682064013871496], [-77.34207161765065, 34.681943400251335], [-77.34196009268321, 34.681908586412554], [-77.34191931180831, 34.681889718324236], [-77.3416247466936, 34.68177248192572], [-77.34146403634732, 34.681659195167015], [-77.34133548299457, 34.68160091604465], [-77.34110677961684, 34.681513835589584], [-77.34113267558743, 34.68111074623328], [-77.34113529070524, 34.68102254793404], [-77.34113698638366, 34.68096535250328], [-77.34114980253091, 34.68053317843727], [-77.34127125108239, 34.680073720845165], [-77.3398089175093, 34.67993679359342], [-77.33934901727402, 34.68078026637834], [-77.3392983778585, 34.68087259662106], [-77.33890931659548, 34.68169246659688], [-77.33879917921472, 34.68183045424627], [-77.3376970784982, 34.6822640997874], [-77.33731889757276, 34.68232667173955], [-77.33705727353399, 34.68240612057355], [-77.33687570366341, 34.68244245829943], [-77.33642217278629, 34.6825319358693], [-77.3361561108263, 34.682680419090225], [-77.33594372815864, 34.682892689929204], [-77.33563868660018, 34.68316848119862], [-77.33558970352308, 34.68321710612077], [-77.3355565286706, 34.68325003813989], [-77.33543301057738, 34.68338356905474], [-77.33528255461317, 34.68358309662636], [-77.33511537546113, 34.68362795588599], [-77.33491430172404, 34.68360156313184], [-77.33463898143245, 34.68360035384735], [-77.33384848518222, 34.68358802587668], [-77.33373263155198, 34.68354837858818], [-77.33367167027923, 34.683556321831745], [-77.33276109261034, 34.68363344707014], [-77.33253002376586, 34.68364640731141], [-77.3325064764764, 34.68364827959183], [-77.33247839003775, 34.683649681096654], [-77.3313700303719, 34.68343943734129], [-77.33087040197422, 34.68334673438853], [-77.33079982863413, 34.68334183151438], [-77.33069426211046, 34.68334409031258], [-77.33018860256877, 34.683385392854674], [-77.32932858151865, 34.68340962362339], [-77.32894855324845, 34.68353305372041], [-77.32870587511812, 34.68343546960443], [-77.32828108340894, 34.68327302647849], [-77.32806345162012, 34.683141460397565], [-77.32792072038433, 34.682950493971326], [-77.32675446648746, 34.683360216971785], [-77.32660987875192, 34.68334170306626], [-77.326459884826, 34.683418834434214], [-77.3263386185579, 34.68353933140227], [-77.3264400624745, 34.683602074892065], [-77.32653357731802, 34.683604226322224], [-77.32714039557641, 34.68463975452027], [-77.32805548576779, 34.68525343188713], [-77.3281932115251, 34.68540629183744], [-77.32840763709021, 34.685394278498194], [-77.32874143055349, 34.68544259580017], [-77.32953122104047, 34.68564747529739], [-77.32984350489781, 34.68571320411053], [-77.33058936222206, 34.68588074917167], [-77.3306357479515, 34.68589196800989], [-77.3306558259277, 34.68589717327849], [-77.3307014973099, 34.68590422811825], [-77.33142863753011, 34.68607022896332], [-77.331779412521, 34.686150381158036], [-77.332690694614, 34.686391642010854], [-77.33289508517763, 34.68643083964629], [-77.33300075556204, 34.686437255303055], [-77.3332796470225, 34.686486563227916], [-77.33342043928289, 34.6865085045858], [-77.33343884138169, 34.686619530670164], [-77.33348588000052, 34.686852285666276], [-77.33345341245902, 34.68706808961781], [-77.333221128978, 34.687469331530465], [-77.3328608344791, 34.68781936657122], [-77.33276634688053, 34.688194095942016], [-77.3327379717404, 34.68851033710384], [-77.33276069523701, 34.68895332347592], [-77.33276535852063, 34.688983109508925], [-77.33276210923624, 34.689008636644836], [-77.3327573497807, 34.6894824219335], [-77.33268249361232, 34.689835103979405], [-77.33295621145663, 34.690429889118136], [-77.33292170040689, 34.69122759025484], [-77.33285204579634, 34.69141892334002], [-77.3328005998622, 34.69159642112232], [-77.33279898707973, 34.691913571821395], [-77.33272504914856, 34.692167127175786], [-77.33270227630567, 34.69241420483542], [-77.33217951584112, 34.693013272063226], [-77.33180051048342, 34.69326316547051], [-77.33183032776937, 34.69350851763336], [-77.33189540191658, 34.693593600344066], [-77.33193859705625, 34.69384229665826], [-77.33197108125009, 34.69397658823918], [-77.33183710480493, 34.69442669325794], [-77.33180427264226, 34.694486832855276], [-77.33179102105356, 34.69453158595445], [-77.33171092453192, 34.694625723369384], [-77.33137988601196, 34.695032395764485], [-77.33119311852471, 34.69527819174394], [-77.33085785412449, 34.69550116760496], [-77.33037251206575, 34.695657891416246], [-77.33023181067992, 34.695702527547354], [-77.33019897309055, 34.69570839713424], [-77.33011126671879, 34.69575426054127], [-77.32925727304895, 34.69611513112058], [-77.32897455312289, 34.696628618912094], [-77.3288458503333, 34.69684193970208], [-77.32879738915457, 34.69698415828583], [-77.32860891859829, 34.69705962612979], [-77.32824592261797, 34.69718906602954], [-77.32792953506157, 34.69733731601869], [-77.3277939607455, 34.697371149403324], [-77.327273224365, 34.69753561062206], [-77.3272596973472, 34.69753577919573], [-77.32720295875038, 34.69755452912521], [-77.32694822069159, 34.69762390977813], [-77.32690636435345, 34.697595186033276], [-77.32682373467131, 34.69749473707192], [-77.32670704703729, 34.6974238183203], [-77.3264773857612, 34.69716662036571], [-77.32639201033726, 34.69703858287707], [-77.32621767689257, 34.69704780626498], [-77.32600174076663, 34.69694465184673], [-77.32586738033152, 34.696939414363186], [-77.32565335852769, 34.69692963057707], [-77.32551298579759, 34.69692646719554], [-77.32512985665183, 34.696923763890155], [-77.32505293987083, 34.69693563872293], [-77.32462463502857, 34.696933204037805], [-77.324476200239, 34.69693568265688], [-77.32445718966525, 34.696925584651154], [-77.3243888358136, 34.69690500700417], [-77.32387576058834, 34.69686626414296], [-77.32373340795195, 34.696718776208904], [-77.32358180335085, 34.6965887617587], [-77.3232295814437, 34.69631808079824], [-77.32289695403975, 34.696114563669774], [-77.32257394783669, 34.69603414091377], [-77.32191712419618, 34.695989679002196], [-77.32173728903881, 34.69598497427888], [-77.32161569263836, 34.695982942319134], [-77.32127626618977, 34.69592998606546], [-77.32115950481455, 34.69591313473467], [-77.32085262046076, 34.69598803828288], [-77.3205579791666, 34.69606111715314], [-77.32051558989575, 34.69606873541143], [-77.32048076280596, 34.69606761083445], [-77.31988776406335, 34.696168990864095], [-77.31965537561913, 34.69615208894943], [-77.31936656777877, 34.696136320021296], [-77.31930525381738, 34.696113393772485], [-77.31918364421139, 34.69611906847251], [-77.31872757712259, 34.696041173321845], [-77.31850790724744, 34.69600850251542], [-77.31815099383316, 34.695965193457276], [-77.31806488225256, 34.69595512552924], [-77.31777409601818, 34.69592248048657], [-77.3176181335355, 34.695904609811286], [-77.31757142126713, 34.69589949341234], [-77.31748589929622, 34.695890125864636], [-77.31698332341126, 34.695863108829286], [-77.31663622623799, 34.69587156044267], [-77.31599432899056, 34.69584404632991], [-77.31578273014655, 34.69587422780463], [-77.31518982946152, 34.696276503410985], [-77.31513475545611, 34.69635859376036], [-77.31500318218652, 34.69649612611707], [-77.31483829920286, 34.69646600807904], [-77.31434284949063, 34.69670808278815], [-77.31385117936317, 34.69649700911127], [-77.3137962377727, 34.696479189672154], [-77.31378558472512, 34.69646884925605], [-77.31330014465732, 34.69617628414866], [-77.31321834857904, 34.696135437747614], [-77.31301335356174, 34.696087257299986], [-77.3127515864646, 34.69600393409761], [-77.3124432310376, 34.69594334243309], [-77.31218673993317, 34.69588758639323], [-77.31164561358608, 34.69581747447492], [-77.3116103458994, 34.6958109448195], [-77.31159501671505, 34.69580745345657], [-77.31107674164484, 34.69558719460811], [-77.3109389524544, 34.69552381027799], [-77.31070658100107, 34.69542845624759], [-77.31003779592987, 34.69504255882713], [-77.3094873697896, 34.69506375228734], [-77.30937033879866, 34.69507602155156], [-77.30883368741394, 34.69506571672905], [-77.30847087672595, 34.6950572368944], [-77.30774396846591, 34.694859416040124], [-77.3077171123737, 34.6948487101018], [-77.30770195209766, 34.69484008744324], [-77.30765834178406, 34.69483425876013], [-77.30762796768101, 34.69487529864828], [-77.30676867220149, 34.69532208562968], [-77.30617295806107, 34.695979903444176], [-77.30611430432444, 34.6960186899422], [-77.30608137455641, 34.69606175765646], [-77.30601755842342, 34.69615542044699], [-77.30517209778425, 34.6981356581091], [-77.3055049440679, 34.698275873690264], [-77.30570522196724, 34.698210133917414], [-77.30675265180037, 34.69810306339673], [-77.30771196037355, 34.69800499057856], [-77.30797171617783, 34.69802867344956], [-77.30826057729874, 34.6979229184801], [-77.30893702928384, 34.69785117368634], [-77.30921592082414, 34.697867844134535], [-77.30950129869292, 34.69774651136144], [-77.30959828324004, 34.69773679971056], [-77.30969920195375, 34.69792208570686], [-77.30970210610367, 34.69800280180133], [-77.30972480933463, 34.69803356353191], [-77.30948341191142, 34.69852010471388], [-77.30982143480855, 34.69930766919481], [-77.30980367021185, 34.69945096826272], [-77.30984495421241, 34.699517375839044], [-77.30992457827779, 34.69954798723028], [-77.3102390604197, 34.70079055437425], [-77.31116391597429, 34.70121413292065], [-77.3113243786977, 34.70153228500398], [-77.31162469088255, 34.701936376318564], [-77.31328242001935, 34.70237791054976], [-77.31383740781452, 34.70256281588305], [-77.31406407936274, 34.70257823290147], [-77.31622973610757, 34.70243813081896], [-77.31630245363901, 34.702321696672584], [-77.31680153235229, 34.7014167062186], [-77.31675405057713, 34.701297962027766], [-77.31705489496957, 34.70061596270681], [-77.31723874472874, 34.70038208797272], [-77.3172091158362, 34.70015988614556], [-77.31722306890121, 34.70012661643266], [-77.31725746444445, 34.70006722045959], [-77.31729000852529, 34.70009768141979], [-77.31755719563935, 34.70006592288975], [-77.31787344516486, 34.70006498690095], [-77.31813393338525, 34.70014147039184], [-77.31922848001547, 34.699989868770416], [-77.31938873930375, 34.69994409710512], [-77.31968941924208, 34.69982885179847], [-77.32026425042456, 34.69963156558062], [-77.32069202147656, 34.69957997140103], [-77.32094183779718, 34.69965387650124], [-77.32129151874886, 34.69982681462068], [-77.32144805065064, 34.70005275044288], [-77.32172917245252, 34.70013109949638], [-77.32261748026846, 34.700729767205026], [-77.32360588740484, 34.70145912398451], [-77.32363694122112, 34.70152211878936], [-77.3245506734674, 34.70215626345474], [-77.32568034849372, 34.70301512976692], [-77.32573806173237, 34.703059006418435], [-77.32591066345984, 34.70309271109041], [-77.32786574919373, 34.703735659475946], [-77.32894679356085, 34.70374400814895], [-77.33024011538072, 34.70380612658309], [-77.33196377939413, 34.703622574017196], [-77.33276090839558, 34.70337277985455], [-77.33389282490884, 34.70309267402645], [-77.33534126600784, 34.70273425060213], [-77.33626383741901, 34.702328168879795], [-77.33734412194525, 34.70152504194768], [-77.33790062707153, 34.70122591709336], [-77.33829218236214, 34.70082021092792], [-77.33927967508255, 34.70028479676051], [-77.33958722714253, 34.700167839157224], [-77.33958392882496, 34.69975568476434], [-77.339621632905, 34.699474000036126], [-77.3395928872147, 34.699267079448255], [-77.33979833433328, 34.699078293553875], [-77.34006894204941, 34.69871439748099], [-77.340117099683, 34.69866010834702], [-77.34039650279955, 34.69833193188937], [-77.34054790837341, 34.69820753150012], [-77.34057942349574, 34.698174936725025], [-77.34073065799228, 34.698136240272305], [-77.34085295407296, 34.69809827809593], [-77.34087955911657, 34.69809626614531], [-77.34095273005562, 34.6981057730477], [-77.34129757404956, 34.69818462537707], [-77.34143369576444, 34.69824950676893], [-77.34185816578486, 34.69835115754829], [-77.34228978797513, 34.69820956173368], [-77.34267916818402, 34.698083689649394], [-77.34282167751635, 34.69792871696183], [-77.3428909266548, 34.69783984433167], [-77.34326773538103, 34.69745714052327], [-77.3434831639702, 34.69723850969019], [-77.34381778491657, 34.69703392948154], [-77.34425284001813, 34.69678792688029], [-77.34435718908159, 34.696736739674535], [-77.34450637228582, 34.69664341663952], [-77.34483560246953, 34.696250798256116], [-77.34500694558797, 34.69608734542441], [-77.34501746173231, 34.69604546829204], [-77.34509088533892, 34.695588446033334], [-77.34516295855455, 34.69521057868077], [-77.34516427631928, 34.69509099689115], [-77.34523908184549, 34.69496530647886], [-77.3456696286271, 34.69453426365369], [-77.34593226015961, 34.69430322237429], [-77.34617077226446, 34.69430663802949], [-77.34622190865625, 34.69439576071304], [-77.34631776140353, 34.6944453134095], [-77.34654430679672, 34.69454185859625], [-77.34668193354302, 34.69460777293378], [-77.34672720407517, 34.69463280865571], [-77.34683276035662, 34.69471407570419], [-77.34704902635947, 34.69483232814581], [-77.34716698822034, 34.69499880931033], [-77.34726533618374, 34.695169569813785], [-77.34758232833921, 34.6952465094061], [-77.34792467837322, 34.695450572939336], [-77.34822877468429, 34.695465238727216], [-77.34869443640011, 34.69547539138322], [-77.34882436926283, 34.69547566324005], [-77.34889929332924, 34.6954889749207], [-77.34893486846521, 34.69554824060991], [-77.34912960989345, 34.695705929324724], [-77.34920119697841, 34.695924636177], [-77.34921889397143, 34.695996634279894], [-77.34921098931099, 34.69603749125726], [-77.34924784822492, 34.69607878397298], [-77.34988867004803, 34.69687945495787], [-77.34985687178715, 34.69711721952317], [-77.35084469351693, 34.697381547098864], [-77.35156810230836, 34.69580039218446], [-77.35168411414404, 34.6956582118553], [-77.35147006405064, 34.69538279636655], [-77.35101146633598, 34.69465198220749], [-77.35085801796738, 34.69465675114173], [-77.35051286397318, 34.69424729996037], [-77.3503876557137, 34.69421508248883], [-77.35016520396238, 34.69391720590569], [-77.35014571382504, 34.69374146121491], [-77.35018869708001, 34.6936086067826], [-77.35039080634485, 34.693398853665876], [-77.35052557435456, 34.69326896385975], [-77.35093767892225, 34.692836393981594], [-77.35118220616607, 34.69257450255102], [-77.35156216337944, 34.692231689856946], [-77.35193588857629, 34.6919660857906], [-77.35213886402872, 34.69169671732223], [-77.35236159553945, 34.69153996471871], [-77.35265793326843, 34.69132962726574], [-77.35302768257715, 34.691087298072816], [-77.35310768599807, 34.69103191448771], [-77.35352090582556, 34.690818103239415], [-77.35393226081672, 34.69047570528589], [-77.3540442074566, 34.69000547451946], [-77.35408661951116, 34.689967127124966], [-77.35467991182809, 34.689739981433306], [-77.35520610134162, 34.68975894552965], [-77.3552699647218, 34.68976932045676], [-77.35529732623993, 34.6897768193366], [-77.35532523213092, 34.689797038924844], [-77.35561936153854, 34.68992316927917], [-77.35558378670407, 34.69009374741326], [-77.3554461148043, 34.6901934870875], [-77.35540257575244, 34.690252238073015], [-77.35531950866951, 34.69028520955445], [-77.35521475913194, 34.690404873153234], [-77.35498801858898, 34.69074053256917], [-77.3549207432061, 34.690782494789836], [-77.35489972768252, 34.690871234275846], [-77.35527000542217, 34.69126677600816], [-77.35525994190155, 34.6913824060689], [-77.35538891997905, 34.69142146072773], [-77.3561608739651, 34.692265837448886], [-77.3568363697884, 34.69300120295373], [-77.35722334265753, 34.69335026937539], [-77.35858959428242, 34.69355023527181], [-77.36096032254589, 34.69438430407966], [-77.36131386293839, 34.6946071895337], [-77.36162336695836, 34.69468946916763], [-77.36245961706247, 34.69491176253035], [-77.36384625520668, 34.69528036417892], [-77.36437576600217, 34.69540422256219], [-77.3654488057245, 34.695717208283874], [-77.36606942453028, 34.69587034900319], [-77.3669024733679, 34.69661322053886], [-77.36724053491358, 34.696595995722234], [-77.36822542531891, 34.69669188310052], [-77.36856831624979, 34.69690788152988], [-77.36874536135716, 34.6969629887176], [-77.36902571349054, 34.69717524058047], [-77.36910740211604, 34.697281400589596], [-77.36922505875133, 34.6973727855359], [-77.36955345981825, 34.697726528909314], [-77.37000636983194, 34.69801524586325], [-77.37018378121549, 34.69819474196545], [-77.37062657090641, 34.69847747401572], [-77.37068354830568, 34.69853540901421], [-77.37081757306399, 34.69872469769259], [-77.37081323738647, 34.698879133207114], [-77.37080573821348, 34.699128066255874], [-77.37067171369327, 34.69963643272546], [-77.37059151086844, 34.699884393816426], [-77.37038430683977, 34.7002410013663], [-77.37025589069538, 34.70041791608743], [-77.3702125124674, 34.70050582711856], [-77.37015413919872, 34.700812440173266], [-77.37013325004747, 34.70092216450116], [-77.37006619050231, 34.70127439756314], [-77.37003796640045, 34.70142265273525], [-77.37005761906141, 34.70164486284435], [-77.37005152432351, 34.70190818127556], [-77.37001732625865, 34.702100523316496], [-77.37015455819318, 34.7024218806111], [-77.37066774535813, 34.70218546548581], [-77.37127997027163, 34.7019170850927], [-77.37153081395235, 34.70180495115187], [-77.37173519031876, 34.7018549928053], [-77.37181576462912, 34.70189889674087], [-77.37182062996528, 34.701930694588704], [-77.37173218201275, 34.7021645788584], [-77.37171565838618, 34.702370219741425], [-77.37164552402456, 34.702663882588254], [-77.37162917164184, 34.70303731606806], [-77.37157958003061, 34.703263497378934], [-77.37168007110782, 34.70363392096035], [-77.37164739390303, 34.70399981602117], [-77.37270862087377, 34.70399370459501], [-77.37314523733255, 34.70343252684533], [-77.37332610231044, 34.703264546892214], [-77.37343101363766, 34.702905849694844], [-77.37367536848883, 34.702666542579294], [-77.3738467785976, 34.70244962629904], [-77.37401132557555, 34.70233868109315], [-77.37410522348372, 34.70210776824602], [-77.37429588006904, 34.701812168010434], [-77.37428299584775, 34.70157664273177], [-77.3742889369744, 34.7015651466465], [-77.37430091665763, 34.70154196568558], [-77.37446651212932, 34.70130131572841], [-77.3744521847723, 34.701249257810474], [-77.37442992925243, 34.70109723127795], [-77.37443099804833, 34.701068432314464], [-77.37442024431493, 34.70104337242807], [-77.37444722112231, 34.70103762214467], [-77.37445324156512, 34.70105130822206], [-77.37460433041406, 34.70101192248755], [-77.37462346730698, 34.701036040654124], [-77.37466437978206, 34.70108590001641], [-77.3746922405973, 34.70112482997852], [-77.37469475435329, 34.701148089158906], [-77.37471227328776, 34.701155712714595], [-77.3747432251943, 34.70122233730274], [-77.3747788378044, 34.701258378337805], [-77.37493991207957, 34.70140278034799], [-77.37497145473347, 34.70144090804924], [-77.37517522988794, 34.70162338008702], [-77.37522661407812, 34.70168421375068], [-77.37539937125423, 34.70190002490123], [-77.37540484044136, 34.70191569985767], [-77.37521386779382, 34.70217336150145], [-77.37552786179319, 34.70247139366391], [-77.37554680614234, 34.702575073056906], [-77.37556582252336, 34.70261237008027], [-77.37575094322337, 34.702860431150974], [-77.37557756129343, 34.70309815073347], [-77.37571790178478, 34.70323190732448], [-77.37590198057347, 34.70324535891659], [-77.37597509737465, 34.70342818382685], [-77.37615134625399, 34.70341755571041], [-77.37621031256545, 34.70349855438063], [-77.37629446307747, 34.7035765980981], [-77.37638064411615, 34.70365893774278], [-77.37642663780379, 34.70371251036866], [-77.37636511079837, 34.70391648864401], [-77.37639711773141, 34.70396026697223], [-77.37659629163447, 34.70413279301873], [-77.37675899881182, 34.70415421040003], [-77.37682051539997, 34.704206266641215], [-77.3768816294367, 34.70430740486845], [-77.37694415149754, 34.704295980373736], [-77.37700374358997, 34.704364258258565], [-77.3770319078576, 34.704388852610684], [-77.37705085097132, 34.70444408418827], [-77.37706466074545, 34.70447773172482], [-77.37703044812385, 34.70451442336524], [-77.37692012936755, 34.70453433668183], [-77.37682155729337, 34.70455079225618], [-77.37672856354226, 34.70452326888149], [-77.37661191247821, 34.704515047267584], [-77.37619859363267, 34.704533214610535], [-77.37612760082972, 34.70453128187431], [-77.37596664502982, 34.704617523795875], [-77.37555778058919, 34.70443193139593], [-77.37494468836093, 34.70513473922032], [-77.37451252698159, 34.70559189075283], [-77.37397117910015, 34.70624335826865], [-77.3739122041689, 34.706336265791556], [-77.37373791284796, 34.70712177843636], [-77.37382250402317, 34.70723858462155], [-77.37384860033748, 34.70755613755622], [-77.37388146231655, 34.70820526566881], [-77.37408414707285, 34.70951168515371], [-77.37468647819514, 34.70954576478705], [-77.37558561819691, 34.70909495779988], [-77.37569752147046, 34.70893040763107], [-77.37685115536051, 34.70822823970063], [-77.37715849640925, 34.708068852578165], [-77.37736716946105, 34.70791415671013], [-77.37768365906209, 34.707486471196546], [-77.37770118759593, 34.70745973126429], [-77.3777260343303, 34.707422195631956], [-77.37801214125281, 34.70702158304098], [-77.37809814043304, 34.70686746407851], [-77.37819405199706, 34.70676907795249], [-77.37840758991686, 34.70673850605498], [-77.37856453164004, 34.70674151719815], [-77.37866891908602, 34.70669234171627], [-77.37902541092856, 34.706632372165814], [-77.37929142499529, 34.70644557513528], [-77.379351447375, 34.70641732487809], [-77.37938120257184, 34.70638253257871], [-77.37965871322243, 34.70628435076017], [-77.37971397083442, 34.70626198727492], [-77.37981432041316, 34.70625457776387], [-77.37998768105211, 34.70625524531715], [-77.38015020296669, 34.70637217512579], [-77.38022004572927, 34.70642945716123], [-77.38023986592319, 34.7064908814327], [-77.38043973735924, 34.70675314042586], [-77.38043702267642, 34.706785316549926], [-77.38042144402651, 34.70696997049974], [-77.38039826094972, 34.70724775657844], [-77.38040074494548, 34.70738583391009], [-77.38041020415264, 34.70786118319944], [-77.3801755577227, 34.70823313707867], [-77.38059044797845, 34.7085975959812], [-77.38120204922227, 34.70869704799361], [-77.38180021465249, 34.70884713088201], [-77.38227370360092, 34.709143876541695], [-77.382441840209, 34.70922861698321], [-77.38287552325005, 34.70956032221309], [-77.38318519800441, 34.70965657603729], [-77.38347964856551, 34.70968772601491], [-77.38370419302375, 34.709797056328334], [-77.38404624494436, 34.709944544297386], [-77.38442138470144, 34.71003394576456], [-77.38450866787234, 34.710414332529005], [-77.38450303064836, 34.711104085427614], [-77.38447375038515, 34.71152047101515], [-77.38439794761796, 34.71182889149658], [-77.3845554844383, 34.71266743573443], [-77.38446245986222, 34.71403171537003], [-77.38385751923317, 34.7146598274333], [-77.38425614004106, 34.715458339289526], [-77.38438580306114, 34.717081485683096], [-77.38439321508767, 34.7171864007998], [-77.38415165943637, 34.718117891612884], [-77.38405289978373, 34.71822081543506], [-77.38381068826156, 34.71855772597527], [-77.38356372534378, 34.718549457791084], [-77.38314827056395, 34.71859780761234], [-77.38283080691195, 34.718556857613706], [-77.38263004546994, 34.71870365519452], [-77.38255264555808, 34.718846021223165], [-77.38237842385077, 34.71960437119178], [-77.38239151299048, 34.719738530619196], [-77.38225655843098, 34.71986198907153], [-77.38213114869819, 34.719948354937685], [-77.38182667616223, 34.72004112706591], [-77.38175419734375, 34.7200582556897], [-77.38174171661919, 34.72005976519912], [-77.38118108715932, 34.720310148359836], [-77.38102402403163, 34.72037823878356], [-77.38102207715372, 34.72037948370959], [-77.38101989495482, 34.720379391969516], [-77.37974955548368, 34.72105050011695], [-77.37961406622918, 34.72107009381031], [-77.379530966478, 34.721091652838595], [-77.37931837023383, 34.72108632768618], [-77.37845696325988, 34.720674071611846], [-77.37835115960723, 34.72073822236598], [-77.37798567510728, 34.72099224043481], [-77.37780976071889, 34.721112323330935], [-77.37755003230615, 34.72128961786094], [-77.37748234696792, 34.72132521419693], [-77.37739594020472, 34.721344991578434], [-77.37728520653903, 34.721376956460226], [-77.37720826035243, 34.721362646419735], [-77.37704952202776, 34.72136563214414], [-77.37689176527351, 34.7213485432614], [-77.37636306189526, 34.72142513721765], [-77.37616857913129, 34.72142144306934], [-77.37615210769665, 34.72146875860069], [-77.37598922962438, 34.7215808929929], [-77.375577402195, 34.72182676641522], [-77.37551252581179, 34.721845230915065], [-77.3754594065213, 34.72186558750119], [-77.37512794269331, 34.721964586270346], [-77.37499622955355, 34.72199461527792], [-77.37477071725694, 34.72202933213933], [-77.3746767598963, 34.72197496456289], [-77.37417530718083, 34.72187157660138], [-77.37413616254841, 34.72188140815649], [-77.37414052487989, 34.72199145364419], [-77.37411739836656, 34.72236075994797], [-77.37415438884457, 34.722446994084166], [-77.37450945942248, 34.722929772606534], [-77.37460557140636, 34.723049925804524], [-77.37467521088803, 34.72318853248218], [-77.37449986830579, 34.7231828142237], [-77.37436514756003, 34.72359636667579], [-77.37433437748801, 34.72362841595968], [-77.37432114352374, 34.7236390207453], [-77.37429909513325, 34.72365479306794], [-77.37401032961833, 34.7238790957022], [-77.3737614101629, 34.72398703224821], [-77.3736550438068, 34.72404640434513], [-77.37351873998237, 34.72413438406473], [-77.37330700713758, 34.72422557617836], [-77.37318653820213, 34.724344981665865], [-77.37312599765806, 34.7243830056253], [-77.37297204390866, 34.724426141799434], [-77.37275693302638, 34.72455001851519], [-77.37261702553131, 34.72459389267512], [-77.37247837811867, 34.72465626609927], [-77.37244089811291, 34.72468003001609], [-77.37239807214547, 34.72468186254081], [-77.37219839351641, 34.72465755199047], [-77.37209956547713, 34.72460571416395], [-77.37205214253211, 34.72458434799269], [-77.37198224623111, 34.72455030646252], [-77.37189589706378, 34.724507462560695], [-77.37183908207847, 34.72447162379627], [-77.3717518539755, 34.72442118568467], [-77.37159211214525, 34.724290967089985], [-77.3713916219604, 34.72414407939063], [-77.3712433993061, 34.724023963932666], [-77.37113370579979, 34.72393582652538], [-77.37110783535827, 34.72389636586415], [-77.37103815519446, 34.72378765605869], [-77.3709871928759, 34.72371226366956], [-77.37114781205949, 34.723308998720135], [-77.37110391690433, 34.72320883073655], [-77.37110292321931, 34.72299114863115], [-77.37122759572006, 34.72245906704953], [-77.37123083308292, 34.72221660411351], [-77.37121912373769, 34.721817832773276], [-77.37176672851149, 34.7216257739385], [-77.37227439985867, 34.721476346683914], [-77.37288465106354, 34.72101453121055], [-77.37305529972792, 34.72089182975363], [-77.37298589610675, 34.72031727611601], [-77.37289653371207, 34.720038109957294], [-77.37254660898844, 34.71986683908221], [-77.37229295956368, 34.719812266609665], [-77.37217518439776, 34.719758441607475], [-77.37190510030257, 34.71968697616114], [-77.37181549109562, 34.71964101319248], [-77.37160566051683, 34.71960774244407], [-77.371151205843, 34.719620118779936], [-77.37091291857932, 34.71954714179964], [-77.37018659472912, 34.7194357479941], [-77.37006677046742, 34.71940984076329], [-77.36992557039937, 34.71939571492319], [-77.36934936439081, 34.719550794334836], [-77.36872533306432, 34.71972640278363], [-77.36860846026627, 34.719743658720176], [-77.3676042782752, 34.71989192225277], [-77.36748280087893, 34.71988148865317], [-77.36724525814901, 34.720004256531055], [-77.366652757381, 34.720325283673134], [-77.36641004160191, 34.72064701137776], [-77.36617234498082, 34.72096208760884], [-77.36607561330469, 34.721090308711524], [-77.36582986513112, 34.72145051078667], [-77.36493494931631, 34.722106854023295], [-77.36548575591148, 34.72263604113158], [-77.36596836624952, 34.722563888688114], [-77.36621178899573, 34.72248726334369], [-77.36674202823596, 34.72243379468288], [-77.36688933888149, 34.72264365738668], [-77.3672687713943, 34.72276101426582], [-77.36762055755345, 34.72286944744413], [-77.36781572859606, 34.72286056806878], [-77.36807963422147, 34.722865610817706], [-77.36865613394048, 34.72286101102276], [-77.36899695347964, 34.722916873745945], [-77.36906646890847, 34.72300140942897], [-77.36923227713176, 34.7232061394611], [-77.36935372980096, 34.72335610067087], [-77.36942749763142, 34.72343919405615], [-77.36942651514474, 34.72345091580468], [-77.36943558763741, 34.72346870425528], [-77.36951775069222, 34.72377496004668], [-77.36951872237601, 34.723914050587354], [-77.36954006856082, 34.724152044790245], [-77.36953818825641, 34.72415762990712], [-77.36953328335916, 34.72416370299561], [-77.36941066251333, 34.72436373446148], [-77.36920075431365, 34.72441317159792], [-77.36916335948874, 34.724406721764325], [-77.36910158813899, 34.72440902308557], [-77.36859912516557, 34.7244819067447], [-77.36854676419675, 34.724468060274475], [-77.36842859373219, 34.724451015635175], [-77.36798138757666, 34.724352918700724], [-77.3678518243178, 34.724268485477545], [-77.36738424516655, 34.724347225824786], [-77.36689764128243, 34.724371144224946], [-77.36677686587709, 34.72437679894666], [-77.36662173531562, 34.7244265853035], [-77.36617608000022, 34.724383651405994], [-77.36574336315884, 34.72462493516394], [-77.3654261469785, 34.7249043269289], [-77.3653807565838, 34.724941877455194], [-77.3648947088482, 34.724967064482506], [-77.36481234460476, 34.72495599948677], [-77.36461484147486, 34.72490154017613], [-77.36450528725426, 34.724872480536625], [-77.36444487923384, 34.72485481454326], [-77.36429281267559, 34.724682912559764], [-77.36428518804327, 34.724647604058646], [-77.36428185235287, 34.72463351387494], [-77.3642725115744, 34.72459827559459], [-77.36421281264184, 34.72415560816776], [-77.36411829699132, 34.72398754455622], [-77.36400468418351, 34.72372283641251], [-77.36401543156092, 34.72369533222489], [-77.36399477794367, 34.723646803106675], [-77.36396492063179, 34.7233170868567], [-77.36382455706834, 34.72323416097577], [-77.36414328373644, 34.72239135393286], [-77.36312729957842, 34.72250962777293], [-77.36195881684856, 34.72254852403528], [-77.3619193376215, 34.72254538776493], [-77.36181488604325, 34.72260608987176], [-77.36067263380045, 34.72271456145623], [-77.35995441424497, 34.72332546813496], [-77.35955964305694, 34.723819908465615], [-77.35979945426598, 34.724156861400196], [-77.36024670456987, 34.72418163313394], [-77.36033598385386, 34.7245324918538], [-77.36034990057033, 34.724686159719674], [-77.36047686696267, 34.72481832026885], [-77.36052891899335, 34.724905268916515], [-77.36053533051259, 34.72497045070844], [-77.36050033857336, 34.72508554083015], [-77.36031443972648, 34.72517841636656], [-77.36024951801515, 34.72520318887907], [-77.36018678986929, 34.72519594612294], [-77.36001226771806, 34.7251757953763], [-77.35997140423072, 34.72512984981165], [-77.35970672318295, 34.725018177926515], [-77.35970633881374, 34.72501695765568], [-77.35963314680194, 34.724784588200855], [-77.35954972864943, 34.72451975137941], [-77.35926277139295, 34.72456979582793], [-77.3589681926057, 34.72446025408888], [-77.35867793419226, 34.72474735697488], [-77.35865060494622, 34.72491950880982], [-77.35816227187756, 34.725173543061466], [-77.35779952290909, 34.72524552014257], [-77.35752253441905, 34.7253144664746], [-77.35721804716972, 34.72535455978227], [-77.35720358518297, 34.72535573885006], [-77.3568560608013, 34.72563306212419], [-77.35682527619875, 34.72565752204923], [-77.35682484254613, 34.72565839269984], [-77.35682225693937, 34.72566386492835], [-77.35662379145383, 34.72611848396841], [-77.35637042088828, 34.72618876822591], [-77.35635761119005, 34.72620175911135], [-77.35616189861057, 34.726167123569056], [-77.35610284405102, 34.72607913336289], [-77.35606422397952, 34.72600570206052], [-77.35608931895027, 34.725828750169455], [-77.35608934726555, 34.725758560637644], [-77.35614051271689, 34.7253951503623], [-77.35612935603791, 34.72526568351161], [-77.35615294284713, 34.725063077875774], [-77.35615818659439, 34.72501803354829], [-77.35616078217424, 34.724985344300926], [-77.35617695329711, 34.7247717645662], [-77.35627148608941, 34.72450595822069], [-77.35618082035477, 34.72428384831462], [-77.35611033968148, 34.72384151558737], [-77.35564044977757, 34.723547219159805], [-77.35544798260453, 34.72356268917528], [-77.35471633524556, 34.72351013721696], [-77.35459541458083, 34.72343020201725], [-77.35424292724241, 34.723370699621526], [-77.35318282166624, 34.723762004274626], [-77.35250486386934, 34.72478847350681], [-77.3527449825915, 34.724853799400634], [-77.35286441159772, 34.72485837344005], [-77.35312151972933, 34.724930029176946], [-77.35354549285529, 34.72502635829203], [-77.35385391379653, 34.7255750835081], [-77.353854397636, 34.725577120083386], [-77.35385495158339, 34.725577919222445], [-77.35385828079347, 34.725582852934714], [-77.35387154849424, 34.72595812994436], [-77.35377581036364, 34.7260761657287], [-77.35367733160206, 34.72618310673617], [-77.35342455382316, 34.72647503622409], [-77.35339818529576, 34.72661538456532], [-77.35337914180612, 34.726731148142946], [-77.35331808534892, 34.72711376225336], [-77.35325007151388, 34.72759693141087], [-77.35324541286457, 34.7276111203097], [-77.35323980509548, 34.72762674716306], [-77.35306145598732, 34.728123753228886], [-77.35303778632486, 34.72817636120389], [-77.35282416979011, 34.72849606110084], [-77.35259350013791, 34.72867536697434], [-77.35230040561986, 34.728862139148234], [-77.3518885504921, 34.728772124996546], [-77.35178137843397, 34.72874868612036], [-77.3517376168944, 34.72873797120005], [-77.35162889595993, 34.72871349297841], [-77.35099303295722, 34.72856673355088], [-77.35061499099768, 34.72847947859218], [-77.34939475433652, 34.72911437650945], [-77.3502346569766, 34.72978884688178], [-77.35029726512586, 34.72989033692711], [-77.350375542525, 34.729954539599], [-77.35079328326009, 34.730297170715055], [-77.35088459020474, 34.730372059368975], [-77.35119017877899, 34.73062269947629], [-77.35130829864625, 34.73068939246522], [-77.35155703082323, 34.730767151939496], [-77.35170558555356, 34.7309100395445], [-77.35190598203987, 34.73087377716263], [-77.35204266263108, 34.730912883315625], [-77.35211061796802, 34.73093486359718], [-77.3522519588455, 34.73109077563854], [-77.3522807715569, 34.731123917494635], [-77.35231609372545, 34.731150352388184], [-77.3522472046049, 34.73154393807271], [-77.3522159046131, 34.73165148490876], [-77.35217075899628, 34.731746630116355], [-77.35198143983385, 34.73202213023758], [-77.35155104429202, 34.732717498370306], [-77.35132173992862, 34.73354741053588], [-77.35136497432387, 34.73371779817749], [-77.35109230535511, 34.73400911207531], [-77.35078433572117, 34.734347786652876], [-77.35060787108446, 34.7346891042995], [-77.35056245007262, 34.73478945672083], [-77.35055519293948, 34.734803693286125], [-77.350542800405, 34.734825989190114], [-77.35030861402996, 34.735202819618195], [-77.35020563217827, 34.73533904476928], [-77.35008455147931, 34.73545976678163], [-77.34997470857097, 34.735545242078835], [-77.34966180238015, 34.735884198229584], [-77.34964898101423, 34.735894911938594], [-77.34963927662626, 34.7359041446634], [-77.34964025862587, 34.735914401604596], [-77.34941658875455, 34.7363272795051], [-77.34907916082835, 34.73634597782289], [-77.34894361782932, 34.73629477320184], [-77.3485468982366, 34.736194989313454], [-77.34838494440164, 34.73615626449769], [-77.34831714944056, 34.73614370458606], [-77.3481402228272, 34.73610984183683], [-77.34781830057474, 34.73604519325886], [-77.34752416888836, 34.735965247215255], [-77.34727526189731, 34.735852873564205], [-77.34624498380595, 34.73616073601961], [-77.34522924430652, 34.73580850079743], [-77.34560614786055, 34.73665207105534], [-77.34581637415316, 34.73675138657667], [-77.34603842063544, 34.73710796822731], [-77.3461904538338, 34.73735211189246], [-77.34625378304335, 34.73773068717652], [-77.34663388880878, 34.73806041232932], [-77.34670487975882, 34.738172113981065], [-77.34674604067698, 34.73825064572871], [-77.34706246518522, 34.738646744261985], [-77.34708654522875, 34.738666938123274], [-77.34753415239754, 34.739084710605354], [-77.34755021561607, 34.73909869304767], [-77.34756955345223, 34.73911241685834], [-77.34791309128161, 34.73960796603636], [-77.3485094502431, 34.73985080702461], [-77.34857612373781, 34.739886397344065], [-77.34867602529727, 34.73993535877212], [-77.34854065640832, 34.74001911684299], [-77.34845053662428, 34.74005358987751], [-77.34799516227238, 34.740516158300835], [-77.34794851898367, 34.74076328414363], [-77.3479472341355, 34.74076642424353], [-77.34794714669593, 34.74076983119565], [-77.34794413219521, 34.741010538991574], [-77.34793071462289, 34.741171163791314], [-77.34790602910971, 34.741371680735305], [-77.34788331168109, 34.741506262935324], [-77.3477954530923, 34.74191199208266], [-77.34777096687019, 34.742009055965596], [-77.34775186716995, 34.7420970871876], [-77.34772572876778, 34.742488498550216], [-77.34772495202022, 34.74250274842429], [-77.34772243575635, 34.742513908955], [-77.34770505491731, 34.74261947693466], [-77.34765257729441, 34.74296182178898], [-77.34764478624886, 34.7430011259479], [-77.34763737573296, 34.74304850057326], [-77.34751632333078, 34.74385498184146], [-77.34749557468189, 34.74399635487586], [-77.3474930844038, 34.744197224929025], [-77.34748186669296, 34.74448561424309], [-77.34748870297712, 34.74466459602179], [-77.34751086627844, 34.744851259820415], [-77.34750345218089, 34.74497003183296], [-77.34724767341046, 34.74522441513159], [-77.34721841259748, 34.74523044325288], [-77.34695452754758, 34.745202581892855], [-77.3467535086645, 34.74523000006241], [-77.34632335365187, 34.7453133787506], [-77.34594855361804, 34.745381976939335], [-77.34569153436699, 34.74542638702695], [-77.34540968776864, 34.745475086201864], [-77.34514351574313, 34.745293781741644], [-77.34513484226696, 34.745292270853774], [-77.34513225386112, 34.74528975616094], [-77.34468853132815, 34.74524131436942], [-77.34457979023642, 34.745129667044], [-77.3440399051793, 34.74496753585649], [-77.34427428037723, 34.74541301545456], [-77.34436792017738, 34.745487868414266], [-77.34444361054037, 34.745598296328666], [-77.34454035098871, 34.74574944344786], [-77.34460769388451, 34.745854658913714], [-77.34470942388846, 34.74601360082638], [-77.34475107775174, 34.74607867964902], [-77.34486679976916, 34.74620326506443], [-77.34494838488943, 34.74622401402274], [-77.34520815206037, 34.746259669602914], [-77.34538780532516, 34.74628027105488], [-77.34544288357817, 34.74628209160756], [-77.34555649865412, 34.746311215189486], [-77.3459879011347, 34.74646783088929], [-77.34611835563342, 34.746506821665974], [-77.34653173337499, 34.74656547814821], [-77.34655042982772, 34.74656872603928], [-77.34655734925977, 34.74656949851443], [-77.34700978110871, 34.74660965066353], [-77.34714017618445, 34.74662512206649], [-77.34741429317069, 34.746680542189004], [-77.34770695815112, 34.74673596715333], [-77.34783243985342, 34.7467653603507], [-77.34795989504354, 34.74685692431164], [-77.34812393792521, 34.74693537148277], [-77.34821935673187, 34.74703398866047], [-77.34840464444693, 34.747113680264974], [-77.34868256294305, 34.747501329905816], [-77.3488132798721, 34.74758779611698], [-77.3489914167437, 34.74769015644469], [-77.34916992303943, 34.74788555568144], [-77.34926283359272, 34.74803044523107], [-77.34938060513134, 34.74812413675858], [-77.34944884649624, 34.748482945221056], [-77.34939718039338, 34.7486092418438], [-77.34944039343877, 34.748682276550895], [-77.34912272199442, 34.74913427923123], [-77.34921773864569, 34.749247703553706], [-77.34918981324213, 34.749530008111854], [-77.34918600070985, 34.74961297697305], [-77.34916000226457, 34.74968629801412], [-77.34901598030197, 34.75001428320489], [-77.34850161967123, 34.75019262040278], [-77.34849937729085, 34.75019342571964], [-77.34849776364497, 34.75019348453614], [-77.34796254829389, 34.75021299193179], [-77.34789878297184, 34.750198868413285], [-77.34750691812782, 34.75016919225489], [-77.3473185857082, 34.750134110669364], [-77.34710758903711, 34.75008209729992], [-77.34685364791125, 34.75001354881749], [-77.3467620218243, 34.74998802101304], [-77.34672818421065, 34.74997967878713], [-77.34663273170267, 34.74996326948871], [-77.34647678857704, 34.74993889941414], [-77.34637333528384, 34.74999885393232], [-77.34628447488778, 34.75014760313779], [-77.34623106294866, 34.750361965313026], [-77.3461682889693, 34.75051435969223], [-77.34613034545227, 34.750649345923605], [-77.34605634461724, 34.75101709366502], [-77.34600080657171, 34.75117287561323], [-77.345808902449, 34.75120660071001], [-77.34531412784091, 34.7511189062737], [-77.34535923309278, 34.75103238995235], [-77.34523892829945, 34.75110663379616], [-77.34520343125442, 34.75110476843538], [-77.34464531558942, 34.75108800962543], [-77.34418957804243, 34.75114346148769], [-77.34402567899947, 34.75115893101096], [-77.34383783243908, 34.751171549838446], [-77.34364242369458, 34.75117002438914], [-77.34346585843588, 34.75102402451951], [-77.34340501380467, 34.750958406964926], [-77.3433548238194, 34.750900271666325], [-77.3430199757573, 34.75049708004007], [-77.34300421831547, 34.75047825431481], [-77.34298946990779, 34.750463005036764], [-77.34250526360074, 34.75020698058417], [-77.34239005726404, 34.75016216831075], [-77.34222124753877, 34.75008098938242], [-77.34197471532283, 34.749971378976326], [-77.34175537625767, 34.749861861429004], [-77.3415768943511, 34.7498067543832], [-77.34143798447049, 34.74975705738983], [-77.34138487367576, 34.74975258561268], [-77.34127723258113, 34.749723077844976], [-77.34103385047237, 34.74962833021361], [-77.3409770887992, 34.7492818228591], [-77.34055695708825, 34.74954141162653], [-77.34029509877426, 34.74956728458111], [-77.34013162030807, 34.74953374502033], [-77.33978483332554, 34.7494956260405], [-77.33983049143643, 34.74976528478861], [-77.33987567037735, 34.74991527646469], [-77.33979695004422, 34.75014469392], [-77.33978907136316, 34.750414525573724], [-77.33978396635925, 34.750589377664994], [-77.33973893685211, 34.75073162667044], [-77.3395284252567, 34.75093764025968], [-77.33939362700615, 34.75106401097851], [-77.33924193346502, 34.751129680222014], [-77.33914201657363, 34.75108296435685], [-77.33866028442617, 34.75106986967116], [-77.3386363561738, 34.7510599590915], [-77.33834606076509, 34.75090664329643], [-77.33814279303883, 34.750789348196164], [-77.3379140798932, 34.750671617538046], [-77.33777759251556, 34.750555411006815], [-77.33734828226373, 34.750261818217794], [-77.33724463384483, 34.75017687892812], [-77.33713511004869, 34.75013442326994], [-77.33665842918695, 34.74983928682669], [-77.33662399211019, 34.749832009813574], [-77.33637362583845, 34.74966411034817], [-77.33637216245849, 34.74966353614566], [-77.33610404318107, 34.749559982262674], [-77.33601735589218, 34.74954388020245], [-77.33578709651513, 34.749501109381654], [-77.33553570451238, 34.74945441329081], [-77.3350487943269, 34.749500257081465], [-77.33493155218721, 34.74947203286784], [-77.3346639899253, 34.74942664844902], [-77.33434669931749, 34.749423266170275], [-77.33413742465198, 34.74941265683971], [-77.33377928411446, 34.749314519660004], [-77.33299944880494, 34.74949926192117], [-77.33303060918212, 34.7489042265435], [-77.33275793573338, 34.748706733620836], [-77.33239659971103, 34.74838619715469], [-77.33209529978353, 34.74805768509104], [-77.33194747345524, 34.74794321845172], [-77.33182388324911, 34.747798758358634], [-77.3316327933289, 34.74763370771238], [-77.33144585437962, 34.74754059793237], [-77.33114547863963, 34.747213127151724], [-77.33101595850343, 34.747082838566065], [-77.33089935938524, 34.746858074469024], [-77.33085503082249, 34.746812430637576], [-77.33081796263455, 34.746770646597625], [-77.33065428026366, 34.74667088313835], [-77.33053897475344, 34.74666128285505], [-77.33036638217423, 34.746630951839265], [-77.3299786764697, 34.74655140896626], [-77.32979758395005, 34.74652702440559], [-77.32965638246722, 34.746551550011674], [-77.32880357976643, 34.74678680389049], [-77.32850730548267, 34.74684421877675], [-77.32827219104985, 34.74682741959886], [-77.32755708988078, 34.746958920532904], [-77.3272517180381, 34.747042075153274], [-77.32676571076946, 34.747197273292294], [-77.32659234089911, 34.74724958915267], [-77.32643440269719, 34.74724075523812], [-77.32599593986448, 34.7472405497419], [-77.32574201253263, 34.74719598120075], [-77.32545168852351, 34.74705220491017], [-77.32497223829252, 34.7472217046614], [-77.32477851641931, 34.7473071207656], [-77.32453032878419, 34.747468474191045], [-77.32420739764363, 34.747676455581306], [-77.32411081102941, 34.74773509039208], [-77.32404903484189, 34.7477556158846], [-77.32396929981164, 34.74777043735659], [-77.32373609253034, 34.74780176724983], [-77.32361890932467, 34.74775707483793], [-77.32352997789813, 34.74771402835912], [-77.32347094052746, 34.74768361355685], [-77.32321916628146, 34.747558835430304], [-77.32253610492175, 34.74741803903028], [-77.32236537979028, 34.74736555911762], [-77.32227714053985, 34.74738673420791], [-77.32115157884081, 34.74757169481663], [-77.32110643000088, 34.747574822097434], [-77.32093957245229, 34.7474780778203], [-77.32053874473782, 34.74725455053111], [-77.32005883866007, 34.74705750665838], [-77.31995104348495, 34.746918088380944], [-77.31979288182791, 34.74681905419406], [-77.319649584011, 34.74675570696735], [-77.3195700122261, 34.746678660097004], [-77.31936879580064, 34.74657743537146], [-77.31911307840923, 34.74619019636863], [-77.31853015086585, 34.746433847113835], [-77.31847711255837, 34.74529530607589], [-77.318320640711, 34.745071234523444], [-77.31832787897515, 34.74501297952702], [-77.31827311919143, 34.74495927731999], [-77.31796021626576, 34.74512059163909], [-77.31701420161373, 34.746552455114475], [-77.31654408537946, 34.74726394505752], [-77.31683634127087, 34.74773567051464], [-77.3173217275926, 34.748229366417036], [-77.31753069797762, 34.7487783496729], [-77.31808214225379, 34.749002790832776], [-77.31829137495947, 34.74901461995523], [-77.3183552807821, 34.74901823246253], [-77.3191244148581, 34.74912979671339], [-77.31925407371119, 34.74932966059611], [-77.31932776548325, 34.749367593080926], [-77.31937148162035, 34.74942023504785], [-77.31953966219677, 34.74959881889973], [-77.31963595129747, 34.749764723573705], [-77.31977672522139, 34.750086443214364], [-77.31983193137205, 34.75016236402018], [-77.32023941265116, 34.7505552149864], [-77.32031816476248, 34.7505768308569], [-77.3204355780046, 34.75062993425665], [-77.32028966003944, 34.75073283507095], [-77.3201622492468, 34.75082045601054], [-77.31945597953154, 34.751270839267654], [-77.31901364417041, 34.75179939817187], [-77.3189030610528, 34.75205771187352], [-77.31883209784462, 34.75250716611072], [-77.31875933232818, 34.75280895038276], [-77.31876694544057, 34.75295132790946], [-77.3187061674424, 34.753160156087155], [-77.31854281108667, 34.75332596339283], [-77.31811819968691, 34.75372795403737], [-77.31800055591731, 34.75381169917319], [-77.31791275740277, 34.753899603432515], [-77.31730341076845, 34.75447075007435], [-77.31708038278964, 34.75498830337217], [-77.31681263981548, 34.75531273556303], [-77.31629219658512, 34.755885600177635], [-77.31604881258342, 34.755912696262676], [-77.31623602630016, 34.756078638468544], [-77.3167318552276, 34.75651811722267], [-77.31694558943917, 34.75598148214934], [-77.3172148873947, 34.755669270999846], [-77.31736750074424, 34.75543635124333], [-77.3177614849424, 34.75495396065046], [-77.31781562504702, 34.75492475825798], [-77.31785693435926, 34.75488197101738], [-77.31795251300292, 34.75475950790638], [-77.31847295542352, 34.7542304123519], [-77.3188977135228, 34.75376472304819], [-77.31913433773234, 34.753539664197305], [-77.31924252813735, 34.75323014101227], [-77.31933980982274, 34.75290513640295], [-77.31939306360462, 34.75272216300256], [-77.31944026749495, 34.75253386911218], [-77.3195956704204, 34.75220705341468], [-77.31987703564053, 34.75180083652355], [-77.31994471594992, 34.75170403788065], [-77.3199852942392, 34.75166633045019], [-77.32065344201654, 34.751191264040635], [-77.32076065283995, 34.751150299831934], [-77.32123002091458, 34.751058259803244], [-77.32128899927032, 34.75106582646562], [-77.3213788338723, 34.750988105338514], [-77.32141411874842, 34.750916760673235], [-77.32152863452276, 34.75072390551026], [-77.32153015554903, 34.75055541024426], [-77.32152081655839, 34.75048129441717], [-77.32152765421975, 34.75043539921863], [-77.3215010894873, 34.750336749209005], [-77.32138182272222, 34.75015339149641], [-77.32102166100096, 34.750104709211186], [-77.32097258704188, 34.75009420537746], [-77.3209559065418, 34.75008666115801], [-77.32041862363154, 34.74993918780636], [-77.32028717831652, 34.74981246193781], [-77.32019662784019, 34.74968793477829], [-77.32005796234287, 34.749594546791315], [-77.31996474890644, 34.749440134113456], [-77.3198973079146, 34.74932393429768], [-77.31982860016392, 34.74925097643872], [-77.31967531137785, 34.74891134457896], [-77.32010598886879, 34.74872562147485], [-77.32054904571521, 34.748408861270015], [-77.32084239425441, 34.74848247142067], [-77.32155569416814, 34.74802419336205], [-77.32159707726373, 34.748017460188855], [-77.32222393386549, 34.74785182481365], [-77.32247406708272, 34.74791390191561], [-77.32268245999605, 34.74797138154841], [-77.322774991612, 34.74801678278328], [-77.32311559225701, 34.74812989497603], [-77.32331864612893, 34.74820719758495], [-77.32337375414919, 34.748228215164886], [-77.32375725376032, 34.748225487683236], [-77.32391074031754, 34.748231080806086], [-77.32404195767357, 34.74818648535458], [-77.32446246610775, 34.74804676901614], [-77.32458502901652, 34.74797236478298], [-77.3249051121677, 34.74783930558994], [-77.32526502051844, 34.747694022775185], [-77.32551139575409, 34.7476995640169], [-77.32584539295607, 34.747758186174394], [-77.32603591917187, 34.74775827546912], [-77.32688119649046, 34.74763674091875], [-77.327101737725, 34.74755779214571], [-77.32736806606918, 34.747429816826205], [-77.32755307975788, 34.74738023197655], [-77.32776812399116, 34.747326177506324], [-77.32797964491682, 34.7473334176887], [-77.32812039192063, 34.74733823515003], [-77.32836094266291, 34.74734752553855], [-77.32870309476198, 34.74728440203343], [-77.32897077887716, 34.74731035122531], [-77.32936113020934, 34.74728093020215], [-77.32958991392884, 34.74724119223857], [-77.32975562285796, 34.74726350536031], [-77.32999498767049, 34.74737080325143], [-77.3301209001184, 34.747475173508235], [-77.33028203633086, 34.74764706458302], [-77.33058129038604, 34.747951943131355], [-77.33070528328696, 34.74810993745932], [-77.33084470797138, 34.748229087227216], [-77.3311291466688, 34.74857233849008], [-77.3313152150947, 34.74865197294939], [-77.33149670909938, 34.748923977635876], [-77.33161377866243, 34.74898802415103], [-77.33160133214714, 34.74910012848177], [-77.33159102711534, 34.74925707740925], [-77.33164495348744, 34.749752319307916], [-77.33164689926802, 34.75006862099596], [-77.33193079932096, 34.75032082782443], [-77.33225496498301, 34.75043659689726], [-77.33278022534408, 34.75045607694623], [-77.33296810168365, 34.750477378731716], [-77.33327931441296, 34.75033224887768], [-77.33350855361947, 34.75024568849789], [-77.33371756414294, 34.750129591108795], [-77.333910064114, 34.75003532408655], [-77.33418214515615, 34.749989259809176], [-77.33440659311431, 34.74999399778467], [-77.3345386778611, 34.749953978076206], [-77.33478580638076, 34.749973346485135], [-77.3351830739875, 34.74988661430682], [-77.33541538853777, 34.749868268557115], [-77.33559717864067, 34.749866929772445], [-77.33571850340925, 34.74985589007252], [-77.33587893771738, 34.74986485449196], [-77.33600842101129, 34.74988890585894], [-77.33605689498388, 34.74990762763133], [-77.33611392517658, 34.74994367584043], [-77.3361993558958, 34.74999517108314], [-77.33626162619852, 34.75004820713248], [-77.3363249023995, 34.75009571881139], [-77.33649254044876, 34.75028418872503], [-77.33661678923116, 34.750362107311474], [-77.33675707531171, 34.75055173971961], [-77.336946344072, 34.75078376997985], [-77.33697398298582, 34.75080050911884], [-77.33726377601334, 34.750950463043374], [-77.33748343873128, 34.75099684738609], [-77.33790102239243, 34.75116078103581], [-77.33796083743141, 34.75120282802371], [-77.33802403318595, 34.7511978929177], [-77.33813585069116, 34.75122626899268], [-77.33856335229467, 34.751403331179816], [-77.33871981574137, 34.75140758424797], [-77.33910834896949, 34.7515892418801], [-77.33969821901458, 34.75133388282306], [-77.3398128490449, 34.751226419415545], [-77.34025173388015, 34.750838456759325], [-77.34032727997597, 34.75061457205192], [-77.3406708573105, 34.75033542770298], [-77.34128173014557, 34.7502260602937], [-77.34132500291568, 34.7502219019051], [-77.34183468419451, 34.750453182837674], [-77.34195023928785, 34.75050035915516], [-77.34211646131575, 34.75051420628825], [-77.3422468768867, 34.750564850327486], [-77.34232998606821, 34.750602528287835], [-77.34237506289188, 34.75065497111467], [-77.34249196779176, 34.75077492493429], [-77.34254177913937, 34.75083384215403], [-77.34267566041251, 34.75099341956862], [-77.34282522242796, 34.75116719163242], [-77.34294821698705, 34.75130965681507], [-77.34305825178393, 34.75142832323061], [-77.34316652149954, 34.75153596640928], [-77.34328727445444, 34.75163850986395], [-77.34352026977993, 34.75165812608654], [-77.34381062037359, 34.7518989352239], [-77.34431356073128, 34.75159301038039], [-77.34450513010697, 34.75157039593468], [-77.34474017615257, 34.7515084266784], [-77.34483268678687, 34.75147390030208], [-77.34490167221526, 34.75147573114682], [-77.34512663870383, 34.75149303876353], [-77.34550995215584, 34.75157942208295], [-77.3456310662273, 34.751611716904954], [-77.3456856331102, 34.75163079936882], [-77.34584210706032, 34.75167057238639], [-77.3463166102751, 34.75152084849619], [-77.34636068227836, 34.75146272344603], [-77.34637458255116, 34.75143414761402], [-77.34655001374759, 34.75102112820629], [-77.34664340200094, 34.75093656166126], [-77.34717598974879, 34.7506248536983], [-77.34751795783322, 34.750602050914594], [-77.34777766639769, 34.750615700735544], [-77.34795686286854, 34.75061155125379], [-77.3483941193949, 34.75055568857088], [-77.3487755794979, 34.750439589713224], [-77.3490555438762, 34.75034088830066], [-77.3494249392615, 34.750067572580534], [-77.34953492468584, 34.749835726089906], [-77.34964519826343, 34.74954997166711], [-77.34991432606643, 34.74910618116402], [-77.34990909042322, 34.749026383210996], [-77.34998273997888, 34.74895590047238], [-77.35011170236947, 34.748767426491696], [-77.35027975310672, 34.748488143290906], [-77.35031134962146, 34.74840664781689], [-77.35025834180675, 34.74826269368366], [-77.35023563270755, 34.74807068404401], [-77.35019622302488, 34.748012224611415], [-77.34997578873003, 34.74767322034676], [-77.34990053687592, 34.74756541703395], [-77.34988719102583, 34.747550272353585], [-77.34987059933128, 34.747535569075346], [-77.34939533680334, 34.74714735638053], [-77.34939098778027, 34.74714350224549], [-77.34938649095444, 34.74714015227909], [-77.349325054205, 34.74709674993108], [-77.34888473495961, 34.74680548898172], [-77.34885653262957, 34.746766151466375], [-77.34879968988349, 34.74674170359816], [-77.34836194662299, 34.74654322705318], [-77.34823751489068, 34.74645383514796], [-77.34790804532406, 34.746376659242436], [-77.34785089461684, 34.74635698146332], [-77.34781881141262, 34.74635100250849], [-77.34774329616579, 34.746333735505566], [-77.34745558644647, 34.746266807341975], [-77.34727542036322, 34.74615966299991], [-77.34689938700257, 34.74622437034893], [-77.34666388891019, 34.74620283862747], [-77.34653162447815, 34.746189005001526], [-77.34637300363158, 34.74617321361019], [-77.3462157561972, 34.7461214473533], [-77.34614181118562, 34.74609460279852], [-77.3461082164778, 34.74605377233176], [-77.34595653689095, 34.74602734133842], [-77.34579361532705, 34.745968194636816], [-77.34577607782595, 34.74586746170507], [-77.34597127383569, 34.74583157004896], [-77.3461953439485, 34.74575392521518], [-77.34633982306173, 34.74572862682197], [-77.34667766430114, 34.745682511888944], [-77.3468135256505, 34.74568785473268], [-77.34706243019542, 34.74573053416691], [-77.34711866593122, 34.74573754564077], [-77.34738830205157, 34.74577116347167], [-77.34772757601363, 34.74568152987521], [-77.34786917286853, 34.745407234476204], [-77.34791940045201, 34.74512173333567], [-77.34803241573306, 34.744897458670124], [-77.34800140672968, 34.74464757087337], [-77.34799194024272, 34.744415632915604], [-77.34795779425508, 34.744303832573635], [-77.34796193660318, 34.74397432611029], [-77.34796460889115, 34.74393200412287], [-77.347969055092, 34.743900985162455], [-77.34800322185308, 34.743654763979464], [-77.34803204847535, 34.74345835085002], [-77.3480400221049, 34.74340522854296], [-77.34811328814651, 34.74293684667565], [-77.34813098993664, 34.742847544929504], [-77.34814572706892, 34.74268870649179], [-77.34814756652857, 34.742581132402876], [-77.34814990438932, 34.74244444349828], [-77.34815358431696, 34.74222928586017], [-77.34816065007367, 34.74217688260746], [-77.34815581610079, 34.74209878359511], [-77.34816137449258, 34.74195549091553], [-77.3482010858747, 34.74175159581985], [-77.3482224027031, 34.74165197977077], [-77.34832248975677, 34.741446005325585], [-77.34826631013223, 34.74130724386255], [-77.34829457573724, 34.741077646391616], [-77.34830899985877, 34.74096047727339], [-77.34831949884763, 34.74087214852646], [-77.34832113134311, 34.74078203593719], [-77.34834108298469, 34.74071238558903], [-77.34841517431866, 34.74054621781406], [-77.3488575308485, 34.740397833685], [-77.3489347657526, 34.740368289434045], [-77.34896315198927, 34.740350725749806], [-77.34949078457672, 34.739823561281746], [-77.34922946723921, 34.739434036540175], [-77.34918964644048, 34.73941452049675], [-77.3487105072881, 34.7391587559599], [-77.34857100932558, 34.739101951542985], [-77.3484906502963, 34.738986034611855], [-77.3480777171538, 34.73869298133456], [-77.34773470900944, 34.73839440533065], [-77.34760197172639, 34.738270515482434], [-77.34746126460041, 34.73815251651866], [-77.34727373765915, 34.73791956887932], [-77.34720464235748, 34.73778774055679], [-77.34687164888118, 34.737263787555655], [-77.34686889042396, 34.737259034228565], [-77.3468683232307, 34.737258044371835], [-77.34686745757662, 34.737256508000904], [-77.34661397891752, 34.73680662893728], [-77.34715044995689, 34.736282474062925], [-77.34718909827646, 34.73626848785426], [-77.34752404530218, 34.73635952797654], [-77.34771212639265, 34.73641064884755], [-77.34792198494421, 34.7364476430253], [-77.34799704406497, 34.736460696358215], [-77.34815674376327, 34.73648757937512], [-77.34828195232363, 34.73651077591403], [-77.34845998618198, 34.73655334562759], [-77.34871759368227, 34.736624078826324], [-77.34885000229238, 34.73661701745942], [-77.34900137385233, 34.73659766550273], [-77.34928250737802, 34.736583762234964], [-77.34944981460403, 34.736613925307076], [-77.34975598156335, 34.736375509681125], [-77.34990905782665, 34.73612534248461], [-77.34991825818325, 34.73610955134777], [-77.34996256854681, 34.73606068178576], [-77.35013777172699, 34.735835737502505], [-77.35021210405827, 34.73575557643998], [-77.35033606108772, 34.735624805892876], [-77.3505209739804, 34.735390971981154], [-77.35059648932885, 34.735285406708115], [-77.35072120912228, 34.73508295310789], [-77.35078104757147, 34.73498313560263], [-77.35111598414966, 34.734726732320766], [-77.3511461603243, 34.73466836560718], [-77.3512440675421, 34.73456069692176], [-77.35171660222642, 34.73431729034284], [-77.35195441086984, 34.73417701331592], [-77.35203341417352, 34.734177956688896], [-77.35214281168372, 34.73409842567232], [-77.35214262649355, 34.73398958391267], [-77.35244901625283, 34.73356901661983], [-77.35246140227136, 34.73328064643991], [-77.35287973591839, 34.73263416967217], [-77.35297079755843, 34.732522636929474], [-77.35299948649208, 34.73248088835738], [-77.35311926604432, 34.732228450775054], [-77.35341487245631, 34.731572426665], [-77.35349613314328, 34.731475764920035], [-77.35341667478593, 34.73143271925829], [-77.3534870566285, 34.73098962860499], [-77.35348066486846, 34.73098414616252], [-77.35315898230849, 34.73084254548165], [-77.35296992365343, 34.73068072862509], [-77.35291437965495, 34.73063650875309], [-77.3527981580203, 34.73059680439163], [-77.35257219337736, 34.730505537652874], [-77.35243345962817, 34.73046588380683], [-77.35206894678811, 34.73037991354965], [-77.35187503834828, 34.730326641864934], [-77.35180736726528, 34.73030548630757], [-77.35172177587717, 34.7302571595897], [-77.3514868283481, 34.730157863292916], [-77.35135629463693, 34.73005080151803], [-77.35123881677075, 34.72995444784749], [-77.3511151691942, 34.72985303205634], [-77.35074279854382, 34.72954761579378], [-77.35044496752852, 34.729064821084144], [-77.35034438977138, 34.728984053726045], [-77.35049051226306, 34.728908025141926], [-77.35053578252486, 34.72891847386256], [-77.35064259851688, 34.7289431273709], [-77.35121876758672, 34.729181477890904], [-77.35161297564068, 34.72916709480539], [-77.35198446344634, 34.72924634234074], [-77.35212036617152, 34.72927631207205], [-77.35217707943535, 34.72928674588238], [-77.35228326352613, 34.72929329840561], [-77.35266192626139, 34.72925390656664], [-77.35278932260015, 34.729240653590416], [-77.3529175690813, 34.72911826781852], [-77.35296895883837, 34.729017713478626], [-77.35310733379384, 34.72874695597139], [-77.35321203205044, 34.72859046678122], [-77.35358447809007, 34.72814999759168], [-77.35366944567963, 34.7280402972632], [-77.35368899045761, 34.72798583171886], [-77.35399513123629, 34.72750820628669], [-77.35387380914175, 34.72713900491227], [-77.35388638055272, 34.72703575309941], [-77.35387822276739, 34.726877010874844], [-77.35411425068057, 34.72655982519325], [-77.35415709934522, 34.726511208203625], [-77.35419126403163, 34.72647544350709], [-77.35448822981527, 34.726141019977405], [-77.35455779794486, 34.7259688185045], [-77.35460253066327, 34.72578997099782], [-77.35464921858669, 34.725468885199504], [-77.35466444396029, 34.72534813259077], [-77.35455935361648, 34.725207969540065], [-77.35448105450749, 34.72509501319011], [-77.35440978708544, 34.724795034623114], [-77.35514336148424, 34.72458547078671], [-77.35537278150824, 34.72446896678636], [-77.35561299934506, 34.72484919014445], [-77.35562380023737, 34.72500426450972], [-77.35560317033985, 34.725214192939106], [-77.35556970186263, 34.72534251828857], [-77.35561831386488, 34.72568554310855], [-77.35562731386284, 34.72578998291496], [-77.3556227182639, 34.72582262384419], [-77.35562269926137, 34.725869728368956], [-77.35565173841687, 34.72616540291867], [-77.35570885388995, 34.72629818208408], [-77.35575362562051, 34.72648122657712], [-77.35597111002454, 34.72653277458938], [-77.3561279862187, 34.7265874265982], [-77.35648961987057, 34.72663783242889], [-77.35654086027729, 34.726632916501], [-77.35661958237495, 34.726603428861345], [-77.35716671754126, 34.726539839473446], [-77.3572093941747, 34.72654386621684], [-77.35772121408169, 34.7264525733715], [-77.35782293409532, 34.72634219960351], [-77.35826393458774, 34.725947373957126], [-77.35842340866489, 34.725798274746374], [-77.35860285346803, 34.725718510434746], [-77.35876520881024, 34.72574106877144], [-77.35879509187035, 34.725874439948136], [-77.35902901350306, 34.725932321038876], [-77.35913342674525, 34.7259535593691], [-77.35934888977894, 34.726080431211926], [-77.35946611260938, 34.726083868238305], [-77.3597893915466, 34.725756743162954], [-77.35980518845304, 34.72574607098887], [-77.35987509865097, 34.725726135281015], [-77.36035385468895, 34.72559396155782], [-77.36044096776227, 34.72557502713374], [-77.36080810420243, 34.72535820357098], [-77.36101026374034, 34.7250828582512], [-77.36106699111517, 34.724949368334585], [-77.36117832224265, 34.72467282317932], [-77.36114967217286, 34.72457632570655], [-77.36111522288411, 34.72435390486751], [-77.36157191843215, 34.72374210169454], [-77.36167850313868, 34.723576558447405], [-77.36259121666407, 34.72358565812987], [-77.3628046587595, 34.72362105325312], [-77.36313295263912, 34.723816546301975], [-77.36323572541382, 34.72387819519025], [-77.36332600422284, 34.72388786088767], [-77.36348456490894, 34.724080955438346], [-77.36355219811061, 34.72414004200621], [-77.36363040398219, 34.724235607594686], [-77.36366944851466, 34.72433292857063], [-77.36372818994437, 34.72456516509753], [-77.36376512186732, 34.724704491541985], [-77.36378982526705, 34.72480884038706], [-77.36384637709742, 34.72498526293642], [-77.36402663464713, 34.7251559591414], [-77.36408527477624, 34.72519567502], [-77.36413155128213, 34.72523844155443], [-77.36442518029145, 34.725328361988815], [-77.36468506867296, 34.725394461278704], [-77.36480791180026, 34.72542809707953], [-77.36524268036044, 34.72545772401536], [-77.36526555956819, 34.7254575610983], [-77.36534480485832, 34.725409203288095], [-77.36568380765533, 34.72521033846965], [-77.36600453186409, 34.724974667505265], [-77.36607938310617, 34.72492260162423], [-77.36632423092064, 34.724840341104894], [-77.36667499641366, 34.72472776924389], [-77.36726883803955, 34.724699965494224], [-77.3672820535693, 34.72469931590153], [-77.36729475241202, 34.724697177415926], [-77.36730721158808, 34.7247052967578], [-77.36770085639816, 34.72477891583079], [-77.36784324271989, 34.72482889293754], [-77.36813355719508, 34.72484018493961], [-77.36844660760816, 34.724813155299756], [-77.36877165847471, 34.724754906256905], [-77.36907477597742, 34.724711949415045], [-77.36936821570174, 34.72467855654413], [-77.3694016800964, 34.72467484501976], [-77.36973276311929, 34.72450798665019], [-77.36986140720772, 34.72444393556775], [-77.36994957655457, 34.72434223961828], [-77.37051719805152, 34.723868285623396], [-77.37066584732595, 34.7240741835075], [-77.37084369583971, 34.72421937539712], [-77.3708778573031, 34.724305284224094], [-77.37097700006535, 34.724347217829816], [-77.37143470419794, 34.724665265394144], [-77.37148076292833, 34.724674679528775], [-77.37165333319538, 34.72475492799746], [-77.37174346333086, 34.72480113159904], [-77.37175999830426, 34.724809184611686], [-77.37200808638804, 34.72492095945999], [-77.37211821000825, 34.72497872210673], [-77.37229102103018, 34.72505077493448], [-77.37242464032941, 34.72507420170854], [-77.37245484477802, 34.725077189761045], [-77.37262178384499, 34.725015768677416], [-77.37265878431747, 34.7249990301293], [-77.37281383208305, 34.72491592935833], [-77.37296304778893, 34.724825946380214], [-77.37315316283772, 34.724722506875054], [-77.37339308938166, 34.72456741623752], [-77.37350233062355, 34.724545181751644], [-77.3735378223847, 34.72446796284209], [-77.37380572441354, 34.72429296078733], [-77.37381565428606, 34.72428562572504], [-77.37392376613924, 34.72422652715571], [-77.37412486878802, 34.72411427468798], [-77.37414794311464, 34.724104269189965], [-77.37417471108981, 34.724083476792536], [-77.37446559988881, 34.72387538940446], [-77.37464019821026, 34.7237354783596], [-77.3747608357044, 34.72360982557287], [-77.37501806275051, 34.72338674315745], [-77.37506221853856, 34.723354322544964], [-77.3751064137196, 34.72333948856478], [-77.3754344739031, 34.723214785888416], [-77.37554914558763, 34.7231030825607], [-77.3755820841712, 34.722946808154816], [-77.37574085111079, 34.72257693344133], [-77.37575386751394, 34.722447744446455], [-77.37585667581996, 34.72240834583784], [-77.37595089753503, 34.72238152934844], [-77.37646845277072, 34.722138702474446], [-77.3765790221861, 34.72209302249337], [-77.3766820625246, 34.722071369946974], [-77.37692801039972, 34.721915425409875], [-77.37722315523837, 34.72184370217088], [-77.37732653970484, 34.721818888774045], [-77.3773983274629, 34.72181254775349], [-77.37766979561515, 34.721773241127295], [-77.37773346739002, 34.721762385579], [-77.37774878964078, 34.721761163721176], [-77.37807496449255, 34.72169030655063], [-77.37818313872383, 34.72172323320039], [-77.3783423930621, 34.721676306920024], [-77.37897750210671, 34.72152575032407], [-77.37940195903823, 34.72153638220454], [-77.37983102864499, 34.721425066302174], [-77.38053060139106, 34.721323898029304], [-77.38078489858744, 34.72118955526169], [-77.38117348830474, 34.72120589165077], [-77.38142287046686, 34.72120056214824], [-77.38158545058596, 34.72130119084683], [-77.38169347165075, 34.72137287870246], [-77.38175860286356, 34.72140836313302], [-77.38188277064653, 34.72141334331838], [-77.38201268519823, 34.72137759690011], [-77.3820778713962, 34.72135826203585], [-77.3821204399659, 34.72132120143357], [-77.38222083540272, 34.72121574729276], [-77.38229837023914, 34.721103888719355], [-77.38232638530285, 34.721016299255965], [-77.38240502648875, 34.72086162829114], [-77.38274284179866, 34.72055192820247], [-77.38282148977348, 34.72044821545183], [-77.38287193024264, 34.72041175617417], [-77.38318967803706, 34.72001790393543], [-77.383337182909, 34.719675865600095], [-77.38380523983136, 34.71961833635334], [-77.38421522147505, 34.719615295199915], [-77.38474930215588, 34.719715774334254], [-77.38504416200144, 34.71976788719937], [-77.3854364962423, 34.72011622633278], [-77.38555343357893, 34.72022262868161], [-77.38558571752347, 34.72025979535829], [-77.38567996721183, 34.72033033824469], [-77.38607339581338, 34.720640521239716], [-77.38642904198711, 34.72080093387723], [-77.38666035684932, 34.72082738929399], [-77.38684166943351, 34.7209179487578], [-77.38694020323567, 34.72096784281511], [-77.38701174703861, 34.72100438726472], [-77.38721026288391, 34.72114204750399], [-77.38739838910985, 34.72128955033072], [-77.38760487126315, 34.721563186784486], [-77.38769010731683, 34.721698330069266], [-77.38787894676832, 34.721981874487916], [-77.38813297224826, 34.72230717157421], [-77.38814980796423, 34.72232410126191], [-77.38821709632194, 34.7223366112909], [-77.38868443110269, 34.72243538736868], [-77.3887637292294, 34.72241803636435], [-77.38904718379283, 34.722387594146554], [-77.3894007067461, 34.722432455114806], [-77.38968917644426, 34.7225819900353], [-77.39048835094837, 34.7226795538215], [-77.39060044646246, 34.72271725444456], [-77.39074643725719, 34.72281447779497], [-77.39069402306777, 34.72264423256151], [-77.39070814053837, 34.7225879478616], [-77.39073021268524, 34.7222696901902], [-77.39049274966028, 34.721785103378956], [-77.39004927539975, 34.721300284648194], [-77.38990663347666, 34.72113678005832], [-77.38978140142953, 34.7211194984352], [-77.38962498129341, 34.72098014749031], [-77.38918614028512, 34.720544461638205], [-77.38873004860075, 34.720323029074294], [-77.38789106314422, 34.719426665709044], [-77.38854117459391, 34.71920730820792], [-77.38900907918071, 34.71936070770789], [-77.38992583316916, 34.719975415265516], [-77.39032922242423, 34.7200680327406], [-77.39124010109886, 34.720511049876094], [-77.39222814379276, 34.72074762730422], [-77.3924373630444, 34.720804296993954], [-77.39296424532287, 34.720754966530244], [-77.39313926122495, 34.72074109793189], [-77.39317957379403, 34.72071819416815], [-77.39318145750133, 34.720664427448746], [-77.3934274591163, 34.7202457766556], [-77.39350894333627, 34.71984900904557], [-77.39366952316277, 34.71956835979538], [-77.3938731635417, 34.71928342773616], [-77.39346028617886, 34.71876295047274], [-77.39352186059436, 34.71837340805162], [-77.39373740341635, 34.71811761509523], [-77.39386817819636, 34.71808030173129], [-77.39431464549881, 34.71817336814465], [-77.39446551989168, 34.7182313102262], [-77.39472106412268, 34.718237401839836], [-77.39538411320149, 34.71842585653006], [-77.39564253691697, 34.71859428716372], [-77.39573041922297, 34.71870927943469], [-77.39588696360238, 34.71886977107054], [-77.39613944221233, 34.71909181082155], [-77.39628400701865, 34.71914931282966], [-77.39649608445492, 34.719282739223175], [-77.3966938545653, 34.71939095250322], [-77.39698645004587, 34.71954981498477], [-77.39725445851785, 34.719668743645684], [-77.39754657790417, 34.71971756090727], [-77.39766688837855, 34.71949254766555], [-77.39781805430499, 34.71941323614491], [-77.39796385650055, 34.719433179220836], [-77.3983127146707, 34.719159364258395], [-77.39847001165779, 34.71898286441178], [-77.39853622307982, 34.718878572973324], [-77.3986161338094, 34.71870638092437], [-77.39869858954316, 34.71860839222337], [-77.39881391201426, 34.71831648303883], [-77.39885714327005, 34.718231562834106], [-77.39887405033105, 34.71814705586344], [-77.39889125140326, 34.71806107872228], [-77.39885637777613, 34.7179517244637], [-77.39880629320129, 34.717873335341345], [-77.39859338777921, 34.71758013938825], [-77.39856061732709, 34.71752943286374], [-77.39852838811098, 34.71748539303736], [-77.39829323815492, 34.71719555157537], [-77.39829277362328, 34.71719477235121], [-77.39817040136316, 34.7168730010194], [-77.39815559080473, 34.71680564017373], [-77.39813159411194, 34.71664245360927], [-77.39809698885497, 34.71638374847252], [-77.39808387283892, 34.716283582484806], [-77.39799654072083, 34.71600244036573], [-77.39799069623231, 34.71598173927493], [-77.397983842218, 34.715969010835494], [-77.39789467609923, 34.715797049152215], [-77.39780646245931, 34.7156273744862], [-77.39780041074577, 34.71561474652632], [-77.39779326514498, 34.71559782167904], [-77.39761431762474, 34.71524600630451], [-77.39747751709601, 34.714953131427514], [-77.39744366726624, 34.714870828410774], [-77.39739305118289, 34.71476673920069], [-77.39725545060556, 34.714502974219165], [-77.3971924203142, 34.714353016455306], [-77.39716631978024, 34.71431697231461], [-77.39708842801086, 34.714257840819464], [-77.3969788885077, 34.71417195118001], [-77.39693402865328, 34.714138587411966], [-77.3964325724225, 34.713953385961965], [-77.3963674501922, 34.713881541812626], [-77.39599730595114, 34.71331688959671], [-77.39600058344661, 34.713240840298454], [-77.39609175871412, 34.712790791616094], [-77.39606890475672, 34.71269976627817], [-77.39564981040354, 34.71249443783823], [-77.39596656584553, 34.712187832908405], [-77.39595955345094, 34.711918991981605], [-77.39596340550766, 34.71190715242509], [-77.3957535090194, 34.711576157900296], [-77.39574600817002, 34.71156169996214], [-77.39573529378872, 34.71154775305433], [-77.39552858491592, 34.71124630271306], [-77.39550035890505, 34.71121779206998], [-77.39528546191721, 34.710979240440935], [-77.39521425784363, 34.710890748400516], [-77.39510721151126, 34.710768809363415], [-77.39504635278549, 34.710698335989996], [-77.39490110973986, 34.710574980569035], [-77.39478818358148, 34.71048319317087], [-77.39424090722916, 34.71040389432885], [-77.39417981704426, 34.71037041131014], [-77.39411727775962, 34.71036695701335], [-77.3939516013903, 34.71036439992928], [-77.39364345047547, 34.710340248910214], [-77.39355017388503, 34.710331032501756], [-77.39314980347791, 34.71028111585375], [-77.39293552871894, 34.71023991220084], [-77.39265307388933, 34.710173196150365], [-77.39233963186167, 34.71008411793429], [-77.39205848222092, 34.709992669726134], [-77.39175983359235, 34.70987279468312], [-77.39147203025827, 34.709781710458834], [-77.39146640908439, 34.709779297201656], [-77.39146002883625, 34.70977791222665], [-77.39115649890803, 34.709742666842956], [-77.39097968831766, 34.709724697075735], [-77.39052671648834, 34.70972492764941], [-77.39052232862741, 34.709724910047946], [-77.39052036492754, 34.709725680067834], [-77.39047725172375, 34.709707615061646], [-77.38997344768039, 34.7095049785048], [-77.3899490715071, 34.709485034853806], [-77.38989746100044, 34.70945108554793], [-77.38936917307407, 34.709274078610974], [-77.38927929747652, 34.70928832722401], [-77.38894348965461, 34.70938727951441], [-77.38845699727455, 34.709559679013665], [-77.38818181539409, 34.70963806945993], [-77.38795186375114, 34.709740354623605], [-77.38782291367268, 34.70979935385074], [-77.38768976821663, 34.70985030680613], [-77.38759202958563, 34.7098759055008], [-77.38738920777094, 34.709838255223616], [-77.38727737511601, 34.709855630581536], [-77.38720199532915, 34.70976759029946], [-77.3867767808025, 34.70937116540156], [-77.38655597623273, 34.7091442590233], [-77.38626674285189, 34.70891929134572], [-77.3858057259131, 34.70874448437786], [-77.38565050155489, 34.70883369308294], [-77.3851190544062, 34.70911797895404], [-77.3847128299806, 34.70901988807239], [-77.38432201883836, 34.708993556370935], [-77.38350014463529, 34.70863272792834], [-77.38225874160239, 34.70738996904881], [-77.38223845050821, 34.70737340970953], [-77.3822286417944, 34.70736985213906], [-77.3822152155589, 34.70736070617269], [-77.38138325742634, 34.70683724916712], [-77.38113188758591, 34.70673071912441], [-77.38065818221627, 34.70630995826555], [-77.38062236427729, 34.70627720330379], [-77.38061398509818, 34.70626527979993], [-77.38058319797797, 34.706244175127], [-77.38008722060431, 34.705912040602335], [-77.37956186691127, 34.705886591827706], [-77.37948302290505, 34.70588405238151], [-77.379450933708, 34.70589561884166], [-77.37914188707768, 34.70598621105061], [-77.37875900125017, 34.70607104392606], [-77.37868279273542, 34.706071687138575], [-77.37851047745475, 34.70607766886428], [-77.37777568300564, 34.70608441220776], [-77.3774581459815, 34.7061356748475], [-77.37683440728304, 34.7063371262578], [-77.37681512244046, 34.70635558395854], [-77.37661647434705, 34.70685448413406], [-77.37690863670446, 34.70704658150295], [-77.37666031050603, 34.707494620740384], [-77.37575801611953, 34.707932355530644], [-77.37574543627697, 34.70791244113603], [-77.37564861491967, 34.70722801406803], [-77.37562907468603, 34.70699023441166], [-77.3753799695861, 34.70664627105592], [-77.37530805708722, 34.70654697241883], [-77.37521461235553, 34.706379290212595], [-77.37526353431048, 34.706257228039505], [-77.37542883411693, 34.706042972813435], [-77.37581092653141, 34.705525957813784], [-77.37583873773234, 34.70549060757566], [-77.37585399965442, 34.7054744786365], [-77.37619581041702, 34.70516884479661], [-77.37627215859732, 34.705170885240676], [-77.37653682001316, 34.705184293319384], [-77.37680648323857, 34.70507174785387], [-77.37720811936101, 34.70493380713012], [-77.37733454687336, 34.70480617123996], [-77.37734945877011, 34.70473580601822], [-77.37744381699457, 34.70454744880427], [-77.37742380026054, 34.704342449487214], [-77.37742099858075, 34.70430688788415], [-77.37742470125349, 34.70428359676275], [-77.37739834916621, 34.70427798009763], [-77.37720183341187, 34.70406089238678], [-77.37703265746121, 34.703872886012974], [-77.37699209520228, 34.70382808028195], [-77.37694570873649, 34.703774661015174], [-77.37678375931034, 34.70359418910334], [-77.37664969853131, 34.70343814333524], [-77.37658311204069, 34.703354379274955], [-77.37649958135364, 34.70324890574801], [-77.37639003755888, 34.70310874001625], [-77.37630439668922, 34.70299822248887], [-77.3761986710058, 34.70286178647679], [-77.37607282023225, 34.702656404992915], [-77.3759958383013, 34.70255324948294], [-77.37587725626344, 34.70232067331436], [-77.3758347424159, 34.702088001826354], [-77.37580337305216, 34.70198327705652], [-77.37571912151162, 34.70181204862392], [-77.37567561483671, 34.7016873563764], [-77.3756288328204, 34.701628915500066], [-77.3752899905525, 34.70122776066064], [-77.37527072750855, 34.701210511418985], [-77.37525605121134, 34.70119277120355], [-77.37510176532554, 34.70100908036365], [-77.37507022095105, 34.70097059841871], [-77.37492020763182, 34.70075154749544], [-77.37489495852186, 34.700711251272736], [-77.374855309441, 34.70066262463797], [-77.37469745493001, 34.70046902730691], [-77.37456969668938, 34.700312339610086], [-77.37450721598586, 34.700221211173876], [-77.3744199521812, 34.70009983918679], [-77.37441575103846, 34.700094490265776], [-77.37441283165391, 34.70009020762732], [-77.3743298420453, 34.699963491457694], [-77.37423406869635, 34.69987108552125], [-77.37419729742487, 34.69983560719521], [-77.37410026900648, 34.699745957970904], [-77.37396125815887, 34.69961751844458], [-77.37375235823436, 34.69944991236787], [-77.37363442214024, 34.6993160509236], [-77.3735675511899, 34.69923162082071], [-77.37348978854445, 34.69917925499564], [-77.37333175586403, 34.699154789336944], [-77.37292657907342, 34.69908184860748], [-77.37291493502494, 34.69909737925889], [-77.37276232081305, 34.69919889644431], [-77.37216343230253, 34.699624406971296], [-77.37161596697939, 34.69929285801696], [-77.37175631576761, 34.69874950483836], [-77.37165760322306, 34.698472286240374], [-77.37160974327473, 34.69828225950991], [-77.37141649023769, 34.69807236834832], [-77.37129572470582, 34.697962347074046], [-77.37115252447443, 34.697857711065254], [-77.37080782320739, 34.697549425060906], [-77.37047145921196, 34.69720319478953], [-77.37034117462564, 34.69712014215706], [-77.37023768591722, 34.697008667352286], [-77.36953911767114, 34.69629034710875], [-77.36945299481077, 34.69622685494407], [-77.36934436206163, 34.69615666162967], [-77.36899261648307, 34.69579275219829], [-77.36866369836714, 34.695304516474515], [-77.36864674266226, 34.69527775580544], [-77.3686470089256, 34.69527030066592], [-77.36864191087915, 34.695256469894105], [-77.36833362160662, 34.694346003183306], [-77.36859704624453, 34.69373175263752], [-77.3680238127978, 34.69341379825109], [-77.36800142356515, 34.69340177934135], [-77.36798456394513, 34.693395989477885], [-77.36718470152671, 34.693241998441366], [-77.36748602748696, 34.6925129206076], [-77.3673607471915, 34.692317989032155], [-77.36718124730601, 34.69203868864582], [-77.36593955843857, 34.69272543673878], [-77.36594261634255, 34.69289310050755], [-77.36568045322784, 34.692822988172914], [-77.36566591427713, 34.69264787681273], [-77.36620990026002, 34.69171350065132], [-77.36646075948585, 34.690799607702104], [-77.36751366470538, 34.69089301894149], [-77.3678933471547, 34.69079288774626], [-77.36862173732197, 34.69055874527608], [-77.36847503030369, 34.690914826470106], [-77.3686912960367, 34.69096016195821], [-77.36905331733922, 34.69101499634398], [-77.36955678833276, 34.69099073338535], [-77.36989358081412, 34.69094231773114], [-77.37003419026776, 34.691048372957226], [-77.37041110069539, 34.691136116906115], [-77.37043404590814, 34.69114254297311], [-77.37045631963593, 34.69112990144938], [-77.37044237162995, 34.69111384450622], [-77.37035219588904, 34.690803550726926], [-77.37022665731507, 34.69067407562767], [-77.37008167619547, 34.690293970642614], [-77.36997191607068, 34.69030780500779], [-77.36950115703135, 34.69028640069227], [-77.36903678862053, 34.69023921779692], [-77.36889759902633, 34.690249090910946], [-77.36835550731179, 34.68946907615782], [-77.36834813591727, 34.68919237454971], [-77.3680358806174, 34.68909315278838], [-77.36766668931739, 34.68858896004307], [-77.36788252686011, 34.68797383233037], [-77.36721460996584, 34.68779788898659], [-77.36713815235048, 34.687686815397385], [-77.36729179061948, 34.68753187870661], [-77.36762143151373, 34.68738634948703], [-77.36811166592591, 34.68715739894187], [-77.36844147105228, 34.687020302282036], [-77.3682427702109, 34.68690800383328], [-77.36834009837706, 34.68672168944564], [-77.36823458782202, 34.68656134452197], [-77.3681913397059, 34.68649435616436], [-77.3678160060623, 34.686448060531355], [-77.36773203982733, 34.68601448810462], [-77.36761555515932, 34.685813888884724], [-77.36769568413283, 34.68566062645317], [-77.3677313633483, 34.685544017357685], [-77.36772787933877, 34.685333168133916], [-77.36749606858632, 34.68520066908372], [-77.36765654465296, 34.68499384095483], [-77.36740125887935, 34.68509167717181], [-77.3672761559629, 34.685140568072526], [-77.36691981094096, 34.68527986556986], [-77.36673042153978, 34.68534094030617], [-77.36665575235624, 34.68531615500096], [-77.3662928827153, 34.685255192165506], [-77.36614788572854, 34.68528585466441], [-77.36597037663208, 34.68525958515903], [-77.36580656705415, 34.68523534290077], [-77.36559495594267, 34.68512873302666], [-77.36540799745254, 34.68514793988187], [-77.36515530824296, 34.68503495634942], [-77.36481959819696, 34.684812438358094], [-77.36450883652448, 34.68474647110131], [-77.36393326704518, 34.68470629525587], [-77.36389645786268, 34.68469774588639], [-77.36336168592686, 34.68457455634074], [-77.36293539116832, 34.684686012513644], [-77.3625216844703, 34.684755570147544], [-77.36194009217638, 34.68534834607072], [-77.36184426611827, 34.68543152200555], [-77.36103794606004, 34.685358196852754], [-77.36072474029086, 34.68541139063122], [-77.36026772641408, 34.685310487054245], [-77.36011597433496, 34.6852794585962], [-77.36006088195276, 34.6852475115482], [-77.35960811156279, 34.68513426252101], [-77.35932251014351, 34.68510179512748], [-77.35931377061674, 34.685103090234485], [-77.35895857289447, 34.6853100103293], [-77.35887562178898, 34.68535292165693], [-77.35817965444782, 34.68593149557567], [-77.35812453703366, 34.685963583837605], [-77.35808899181943, 34.68600576405365], [-77.35790127615749, 34.6861957666492], [-77.35750397892066, 34.686573502668686], [-77.35744880867865, 34.68664105181911], [-77.35732724701448, 34.687085162351266], [-77.35718571672824, 34.68729370139234], [-77.35666699451075, 34.68717584423393], [-77.35663485272953, 34.68717054073497], [-77.35662303071204, 34.68717015349517], [-77.35660507624445, 34.68716959666804], [-77.35633470612608, 34.687132431368006], [-77.35621870039483, 34.68714620826692], [-77.35617988526022, 34.68715028861615], [-77.35608048290993, 34.68725639510522], [-77.35609906348881, 34.68735927685443], [-77.35610264736286, 34.68738306829147], [-77.35623245144359, 34.687479216825466], [-77.35623312689223, 34.68747974393203], [-77.35623768437534, 34.68748216051346], [-77.35660445232003, 34.687234155830076], [-77.35666865311003, 34.68766300160963], [-77.35689720192116, 34.68775702937459], [-77.35703275323007, 34.68782067003713], [-77.35734261925892, 34.68805782241044], [-77.35742573630796, 34.688138640969456], [-77.35752703221006, 34.688179903609814], [-77.35777462355706, 34.68848587356131], [-77.3578667155586, 34.68858764523093], [-77.35775439821138, 34.68882665054162], [-77.35756805504573, 34.68900163126261], [-77.35757219444555, 34.68930337543002], [-77.3573025637533, 34.689810289165784], [-77.35782607581011, 34.68994096365319], [-77.35789021545938, 34.69086174333692], [-77.35686872619652, 34.69044777685279], [-77.35670404906053, 34.6902709496618], [-77.35662572599641, 34.69010582299462], [-77.35621559423959, 34.6898584794995], [-77.35623094543769, 34.68967265635291], [-77.3559533452061, 34.68947716059995], [-77.35581598226563, 34.68937763243585], [-77.35548692623037, 34.68928744914791], [-77.35545101042524, 34.6892643318132], [-77.35541657476415, 34.68926428855337], [-77.3553579540799, 34.689255305153466], [-77.35502887484725, 34.689195025511154], [-77.35485257438147, 34.68914522006858], [-77.35438297811277, 34.68902926832094], [-77.35429342237848, 34.68900945441182], [-77.35360218137811, 34.68954626374249], [-77.3535771462439, 34.68959143110116], [-77.35340924788916, 34.689993219983094], [-77.3533830005012, 34.69005758790295], [-77.35337622992677, 34.69006467311734], [-77.35306197648194, 34.690411268915376], [-77.35277246658788, 34.69063495595371], [-77.35226842039269, 34.690984325785934], [-77.35183624530737, 34.69128772280021], [-77.35142130635009, 34.69150990815719], [-77.35102954127314, 34.69184901824565], [-77.35069961997631, 34.6921466865215], [-77.35024975242737, 34.692628499730205], [-77.35003101670587, 34.6928305333967], [-77.34989253567491, 34.69297987427355], [-77.34945897962962, 34.69348155354731], [-77.34940939656386, 34.69353357878676], [-77.34940357802157, 34.69355087856953], [-77.34900239659905, 34.694076827521286], [-77.34926892583412, 34.694416171994675], [-77.34940034661889, 34.69450958295874], [-77.34949272132289, 34.69463814250469], [-77.34965165730264, 34.69468820932262], [-77.34967268086491, 34.694715889959966], [-77.3496132738411, 34.694939560373804], [-77.34963326944947, 34.69496499058542], [-77.34966253982506, 34.69505703214354], [-77.34955775527602, 34.69501157839161], [-77.34954572645489, 34.69499153921661], [-77.34949958633833, 34.69498334155028], [-77.34919902575378, 34.69486414576066], [-77.34903211017156, 34.69476029136543], [-77.34885064968171, 34.69473804040875], [-77.34849606730491, 34.69454481600869], [-77.34798676632113, 34.694848027992315], [-77.34775599495701, 34.6947920157082], [-77.34772571982273, 34.69473944932052], [-77.34731145224458, 34.69450137154141], [-77.34719566423729, 34.6944348280524], [-77.34703538813233, 34.694346820174204], [-77.34689898233256, 34.69426894361479], [-77.34680026143924, 34.69420033753071], [-77.34660623367584, 34.6941000316017], [-77.34635695368137, 34.69366557580051], [-77.34615016996474, 34.69366261451737], [-77.34573784409673, 34.6937361490079], [-77.34540807686744, 34.69383849214867], [-77.34506469290211, 34.6939927810157], [-77.34490139347781, 34.694027594608514], [-77.34475543043528, 34.69417234713111], [-77.34457431170063, 34.694375930443286], [-77.34439893722259, 34.69470864741341], [-77.34410794762145, 34.69523401034048], [-77.34410689423913, 34.69523610215141], [-77.34410670363756, 34.69523800812616], [-77.34389586874347, 34.69575243639483], [-77.34364327138704, 34.696103793320404], [-77.34310216870509, 34.6966274721331], [-77.34296356978133, 34.69677784348886], [-77.34289874747972, 34.69686401657177], [-77.34266385128089, 34.6971334410498], [-77.34233171242168, 34.69749431833471], [-77.34214582169697, 34.69753200697272], [-77.34162574181806, 34.697588414269205], [-77.34102805689997, 34.69761517697186], [-77.34101963582387, 34.69761408284419], [-77.3410139643217, 34.69761451173965], [-77.34043982519147, 34.69773198854925], [-77.34037491996187, 34.69777264884395], [-77.3400166969163, 34.69799518488214], [-77.33960749174764, 34.6982903248295], [-77.33930585020269, 34.698641641837966], [-77.33878699064681, 34.699117156872525], [-77.33854512361509, 34.69924387799262], [-77.33831230603526, 34.69944274623987], [-77.33724205688281, 34.70031349616385], [-77.33697900086298, 34.70040876194818], [-77.33585800986958, 34.70095598097916], [-77.33496539129334, 34.701176880280414], [-77.33327770555631, 34.70159451846788], [-77.33271385335973, 34.701734044553405], [-77.33069205371874, 34.70240167466678], [-77.33064369472116, 34.70241764354435], [-77.33061641686612, 34.70242784086054], [-77.32860059806862, 34.702433840023446], [-77.32824900759579, 34.702417196747064], [-77.32771332197021, 34.702407181874364], [-77.32681393522182, 34.70223155480634], [-77.32607209535196, 34.70166756896485], [-77.32546312086228, 34.70120457946612], [-77.32476044561345, 34.700658056474296], [-77.32438261423077, 34.700377941215855], [-77.32424186711788, 34.700268694012536], [-77.32408976396341, 34.70024875683224], [-77.32367836835553, 34.69991387590182], [-77.32359839568652, 34.699879587234825], [-77.32325964800935, 34.69973434593598], [-77.32305910131012, 34.69967527206281], [-77.3229555179429, 34.69959878956507], [-77.32235489002372, 34.69935534708276], [-77.32202578271779, 34.69911095836576], [-77.32181497732321, 34.69898239078067], [-77.32162168124832, 34.69880684380363], [-77.32152781973652, 34.69876451638948], [-77.32138676484232, 34.6987117101352], [-77.32125851518924, 34.69866119569878], [-77.32119774236186, 34.69866890179275], [-77.32096247753182, 34.698649817510024], [-77.32063392843853, 34.69868246525721], [-77.32004354388266, 34.69876835538648], [-77.31971698672322, 34.69881525209357], [-77.31936814547521, 34.698836742264554], [-77.31872145851753, 34.69899690384217], [-77.31844675181931, 34.69906574782888], [-77.3181914135973, 34.69907000010478], [-77.31785413092962, 34.699044845547455], [-77.31759287031313, 34.699076634722466], [-77.31724386536243, 34.69908461216782], [-77.31671022730451, 34.69947976413291], [-77.31634761741834, 34.69998859536664], [-77.31621095832915, 34.70013929287241], [-77.31581376282114, 34.70057729116436], [-77.31552491438154, 34.700877906060335], [-77.31442787491514, 34.70083983174093], [-77.31434028527212, 34.70083387434949], [-77.31422381942768, 34.700795071413694], [-77.31280044295048, 34.700397361808], [-77.31220243720307, 34.699950217389954], [-77.31136070265083, 34.69992815114202], [-77.31100610654707, 34.69994643208223], [-77.3108500475977, 34.699307681953016], [-77.31057555483176, 34.69895563656377], [-77.31054516856886, 34.69867259134077], [-77.31051365148812, 34.698379030948416], [-77.31049120334522, 34.69823239193622], [-77.3104327319893, 34.69780114974429], [-77.31039612245019, 34.697517398993064], [-77.31038432931189, 34.697422022588086], [-77.31003978316465, 34.697093842591656], [-77.30990329247953, 34.69710823404722], [-77.30944459318303, 34.6970817743304], [-77.30892132018721, 34.69723196337806], [-77.30868100903379, 34.6972599316945], [-77.30817834207987, 34.69731843347645], [-77.3076487130608, 34.697380070345986], [-77.30747318369468, 34.69740049725235], [-77.30706928392526, 34.69701474836924], [-77.30693293728693, 34.69702778520053], [-77.30700987509344, 34.6968132786134], [-77.30730883279426, 34.69619136144867], [-77.30745078559298, 34.69592728646009], [-77.30751043953714, 34.69586610484959], [-77.30779423529697, 34.695593417481575], [-77.30806280838581, 34.69565761306558], [-77.30853126722997, 34.69560874472475], [-77.30867474115209, 34.69561209808554], [-77.30877178350713, 34.69561396150055], [-77.30925971036845, 34.695626588474575], [-77.30926879384128, 34.695628042810284], [-77.30927195323173, 34.69562731052168], [-77.30970187200668, 34.69568691521107], [-77.30983589398836, 34.69573663698646], [-77.31027088954531, 34.69587498719833], [-77.31040869293649, 34.695931535059806], [-77.31090955954649, 34.69616193843508], [-77.31105410741415, 34.696223369031905], [-77.31141663200016, 34.69630593734553], [-77.31144806790347, 34.696314499576324], [-77.31146126709399, 34.69632346380653], [-77.31180297219728, 34.69643565808222], [-77.31199200228947, 34.69655709138669], [-77.31250919313368, 34.696583597567134], [-77.31257814617567, 34.69660023409203], [-77.31261148231033, 34.69660208332044], [-77.31266765436347, 34.696621964873074], [-77.31312620550875, 34.69677431212008], [-77.3132527270939, 34.69689712071799], [-77.31353902942169, 34.696989978366545], [-77.31395397482751, 34.69714601939752], [-77.31418242295803, 34.69725967531094], [-77.31426526963745, 34.697300712029474], [-77.31445651485919, 34.69735167300716], [-77.31463963038863, 34.697406907730155], [-77.31473453397857, 34.69741984065483], [-77.31490474770347, 34.69743162777643], [-77.31535106707952, 34.69735849934979], [-77.31575642899764, 34.6971736125724], [-77.31571302994674, 34.696975562302725], [-77.31568474468278, 34.69684648102794], [-77.31561678435044, 34.6967053801358], [-77.31561487589128, 34.69665697285537], [-77.31582689252917, 34.69633404674628], [-77.31608188259345, 34.69629785074957], [-77.31626993664338, 34.69625754561848], [-77.316457653055, 34.696255050904064], [-77.31665336980404, 34.696252449557726], [-77.31685762780421, 34.696295340383884], [-77.31707550163631, 34.696321899398015], [-77.3174661736738, 34.69626141916651], [-77.31765275088311, 34.69627206303798], [-77.31776320229697, 34.69626936906802], [-77.317936191138, 34.696289557492385], [-77.3180527101697, 34.69630318057557], [-77.3181149110141, 34.696310728232454], [-77.31829837752838, 34.69633801462741], [-77.31853470749745, 34.69638197131246], [-77.31862024200018, 34.69641029645792], [-77.31891370885316, 34.69648458470861], [-77.31918520807537, 34.69652623794262], [-77.31969715117415, 34.69657455776797], [-77.31976833207192, 34.696579734847504], [-77.31982814489177, 34.69656950915052], [-77.32010143717378, 34.69657833383873], [-77.32033068634424, 34.696577112868496], [-77.32036525096184, 34.69658578689554], [-77.32097313015464, 34.69647712020246], [-77.32102235187276, 34.69647301280386], [-77.32159262258483, 34.696482542420895], [-77.32197781445281, 34.6964926195448], [-77.32219001245898, 34.69648696389569], [-77.32264044314823, 34.69663123901569], [-77.32273956553223, 34.696655918712935], [-77.32276783071951, 34.69667321268716], [-77.32279776095992, 34.69669621394306], [-77.32325400643715, 34.69708748508164], [-77.3236824086496, 34.69753134168211], [-77.32369999215332, 34.69753266943136], [-77.324825003199, 34.69729185072715], [-77.32494918163182, 34.69729255661546], [-77.32505906076673, 34.69727559287445], [-77.32526964779512, 34.69721987570521], [-77.3253920415643, 34.69721654022487], [-77.32542067360109, 34.69721520686525], [-77.32545997526017, 34.69721654762002], [-77.32556850987918, 34.697221509396485], [-77.32563767026804, 34.697224670991446], [-77.32572972134182, 34.697269103921315], [-77.32588818795476, 34.697426092933256], [-77.32605060311722, 34.69762255087562], [-77.32612296607147, 34.6977025697662], [-77.32628659234838, 34.69790787382533], [-77.32652249580431, 34.69805869751032], [-77.32656471418528, 34.69808806711383], [-77.32681443901832, 34.6980951547157], [-77.32704885450545, 34.69810980134491], [-77.32710105434515, 34.69812791063555], [-77.32718206580815, 34.698105378764616], [-77.32745769582087, 34.698006977567374], [-77.32776490632457, 34.69790369051983], [-77.32823383585773, 34.69776125268006], [-77.32842168155072, 34.697703800432585], [-77.32886661171928, 34.69749987346698], [-77.32911238030542, 34.6973871818544], [-77.32920308454493, 34.69734394407704], [-77.32930486966666, 34.69716277350148], [-77.32951673802317, 34.696749962313696], [-77.3296063899071, 34.69653673155134], [-77.32964702839715, 34.69646078244745], [-77.32988927805377, 34.696319133718454], [-77.33005035950053, 34.69621973356408], [-77.3300909281642, 34.69621601683677], [-77.33067487939519, 34.696108959893486], [-77.3306813270085, 34.69610856482704], [-77.33068803168058, 34.69610711667348], [-77.3313981511105, 34.695701960708675], [-77.33154788430113, 34.695592804081386], [-77.33160046933416, 34.69548952050787], [-77.33169314173941, 34.69532568219581], [-77.33197138572322, 34.69495128862118], [-77.33210153884615, 34.69480695775006], [-77.33216134744382, 34.69468155487305], [-77.33220358771376, 34.69453890016746], [-77.33223655726613, 34.69442755580863], [-77.33251579992616, 34.693916059161246], [-77.33253214909757, 34.693912000919724], [-77.33327978030607, 34.69334707323657], [-77.3333477300811, 34.69330043523215], [-77.33367500662698, 34.69237186577565], [-77.33378282200849, 34.692266021992225], [-77.33492510773786, 34.69180505407735], [-77.33508255821752, 34.69208776593141], [-77.33532838707768, 34.69252916445629], [-77.3353637275358, 34.69259261884813], [-77.3355869044822, 34.69299333935855], [-77.33561355872764, 34.69309804746586], [-77.335743575118, 34.69310866519225], [-77.33587209985147, 34.693441596009485], [-77.3360134010228, 34.693578716117074], [-77.33620905071045, 34.693566934224776], [-77.33637196655428, 34.69361672116523], [-77.33641779946693, 34.69366174185377], [-77.33648171861142, 34.693658645507334], [-77.33659680802958, 34.693686067986185], [-77.33662832892134, 34.69369684566966], [-77.33674769636009, 34.6937733840249], [-77.33677140494481, 34.69378384307919], [-77.3368059941962, 34.69380087498962], [-77.33723544866189, 34.69415500707641], [-77.33727316321962, 34.69418610669526], [-77.33772338967557, 34.69453599329945], [-77.3378363166716, 34.69454113780462], [-77.33805431256862, 34.69460438970976], [-77.33854065110611, 34.69478755241592], [-77.33881942776478, 34.69488442324595], [-77.33925468658026, 34.695026503454066], [-77.3393671660564, 34.69505961492097], [-77.33954617044496, 34.69502455272011], [-77.3395814700667, 34.694882267720516], [-77.33957570858232, 34.69477952210842], [-77.33968971230614, 34.69451346714706], [-77.33975045407166, 34.694371709386715], [-77.33986116072768, 34.694027126174475], [-77.33987332810395, 34.69386747656694], [-77.33988018958269, 34.69375696120768], [-77.33991663959155, 34.69343795897995], [-77.33992315733171, 34.693373264926144], [-77.33995060473566, 34.693308633795404], [-77.34008193191805, 34.69294616250639], [-77.34020014587172, 34.692847887604955], [-77.34066530578416, 34.69236459477898], [-77.3407439274545, 34.692285905862065], [-77.34075564527102, 34.692266823618745], [-77.34078653580839, 34.692234369103865], [-77.34144563818232, 34.69160192539366], [-77.34202309071671, 34.691135641496246], [-77.34217385653024, 34.69097092730536], [-77.34242871725623, 34.690702515477795], [-77.34249382139635, 34.69061628938618], [-77.34307710688482, 34.69050888661337], [-77.34308343667477, 34.690509298313316], [-77.34309418431766, 34.690510273493636], [-77.34336874203463, 34.69055747251865], [-77.34350687954705, 34.69057235724407], [-77.34352365499218, 34.69057190068782], [-77.34369689046281, 34.69045814139463], [-77.34373068664702, 34.69043629937985], [-77.34373513731934, 34.69041333694081], [-77.34373991868227, 34.69039304200158], [-77.34379500456913, 34.69016143248417], [-77.34383369098818, 34.68998714282991], [-77.34384729408603, 34.68991625570684], [-77.34384734127099, 34.68991056131646], [-77.34384421208846, 34.6898986236734], [-77.34371488224053, 34.68944136019431], [-77.34364217318846, 34.68928576112362], [-77.34350879028318, 34.68898226272785], [-77.34331754876877, 34.688747224836845], [-77.34313718330282, 34.68826338269922], [-77.34293450778215, 34.68825363885624], [-77.34282150738366, 34.68810182046135], [-77.34244971350691, 34.68783835533537], [-77.34210739069827, 34.68768716909756], [-77.34157578214376, 34.68772249166304], [-77.34027853234059, 34.68747599296836], [-77.33995436989309, 34.687393468177405], [-77.33980913132083, 34.687356492306975], [-77.33950843072037, 34.6873307193668], [-77.33848333059018, 34.68694872785896], [-77.337625176322, 34.68663236882077], [-77.33721651745942, 34.686346848562806], [-77.33658691224998, 34.68608547027737], [-77.33655674687023, 34.68606620005443], [-77.33654175195153, 34.68603913730268], [-77.33609536494376, 34.68571708451586], [-77.3360399171259, 34.68567556849602], [-77.33598696045225, 34.68562786442146], [-77.33561901258352, 34.68529641206507], [-77.33547608283513, 34.68532110180688], [-77.3347728476952, 34.685307022062304], [-77.33483446177257, 34.68502647998058], [-77.33558532607026, 34.68422083379136], [-77.33586993387459, 34.68410403080184], [-77.33600612535565, 34.683963991607996], [-77.33629734146612, 34.68363579381182], [-77.33632924156278, 34.683482276635836], [-77.33639880465836, 34.68329628764947], [-77.33646258679252, 34.68312575266716], [-77.3365919005781, 34.682977855220834], [-77.33668178947549, 34.68290886949929], [-77.33690878867513, 34.68291723294003], [-77.3373174864796, 34.682834260657195], [-77.33754224752926, 34.6827970728016], [-77.33793064404504, 34.682644249729506], [-77.33884463244722, 34.682434628575905], [-77.33938424024115, 34.68231406765171], [-77.33948416367815, 34.682293533277424], [-77.33956823958692, 34.68227682379654], [-77.34021096287918, 34.681851986302014], [-77.34046356509792, 34.681794087953314], [-77.34087892322401, 34.68195223854557], [-77.34101479442892, 34.68201383518546], [-77.34132388227384, 34.682141728243984], [-77.34153198946777, 34.68223801320416], [-77.34195975289492, 34.68237154462167], [-77.34219243361996, 34.68251811084353], [-77.3424054784551, 34.68253932934029], [-77.34262059861557, 34.682582792218575], [-77.34268903444476, 34.6825934339747], [-77.34294431029583, 34.682723816089805], [-77.3429458532399, 34.68272666316846], [-77.34294910435247, 34.68272840324447], [-77.34331836703758, 34.68315986113274], [-77.3433372720622, 34.68321377985296], [-77.34340569013416, 34.683217173651684], [-77.3438013428318, 34.68358095796818], [-77.34383818984095, 34.68361663768263], [-77.34387904788161, 34.683648212268224], [-77.34408146372081, 34.683786204044864], [-77.34410516511885, 34.68380535719875], [-77.34434813141154, 34.68399329575891], [-77.34435267895876, 34.68400905310304], [-77.34436270632334, 34.684043797617456], [-77.34448962894658, 34.6844612546473], [-77.34454122671309, 34.684652291468], [-77.34463711246762, 34.68485668578806], [-77.34466761820983, 34.684924205984565], [-77.34467293656392, 34.68494510361944], [-77.3446862276635, 34.68499079545293], [-77.34476402484349, 34.68526917442904], [-77.3448812590899, 34.685711499591804], [-77.34489589694911, 34.685867633108415], [-77.3449212087638, 34.68593655261972], [-77.34499609760667, 34.685984824164755], [-77.34520793032333, 34.68600115501235], [-77.34554536231201, 34.68615456613339], [-77.34560962877302, 34.68619513342847], [-77.34584144496154, 34.686225238520656], [-77.34611147097898, 34.68626631092475], [-77.34621158683613, 34.686252748344174], [-77.34667599710028, 34.68616286537797], [-77.34674163474553, 34.68615748185435], [-77.34680701066786, 34.686142369069685], [-77.34726007009168, 34.686107565569], [-77.34734677700592, 34.686134807934266], [-77.34761987671831, 34.68622484827522], [-77.34792782144183, 34.68619511553881], [-77.34807460841795, 34.686269081947216], [-77.34819386234419, 34.686309577586925], [-77.34830543995756, 34.68637440757013], [-77.3483759790785, 34.68643133572013], [-77.34840881351161, 34.686599983154316], [-77.3484095577126, 34.68660380557894], [-77.34843681701386, 34.686778696197365], [-77.34844996695998, 34.68684194878787], [-77.34846732317266, 34.68697614978973], [-77.34848795857258, 34.68713351932919], [-77.34850965482622, 34.68732113574514], [-77.34855429890479, 34.687476646242146], [-77.3485678918463, 34.687556832120634], [-77.34868742619275, 34.68770182042937], [-77.34873932064933, 34.68772844095206], [-77.34896487045812, 34.687746027811436], [-77.3489724124074, 34.68775105613357], [-77.34897674198147, 34.687746953469876], [-77.34927994219255, 34.687706577070934], [-77.34928441008284, 34.68770726806034], [-77.3492894315083, 34.68770503338065], [-77.34931440727604, 34.68769804434681], [-77.34982910897686, 34.68754521014233], [-77.34993564242774, 34.68752588198778], [-77.35008822089026, 34.68745578844704], [-77.35011045168199, 34.687439201381785], [-77.35021077883867, 34.687331297422304], [-77.35023857269834, 34.6872699422491], [-77.35035256534846, 34.68707819489923], [-77.35035515706757, 34.687067785228706], [-77.35042129241423, 34.68688401903628], [-77.35044724462064, 34.68681665776577], [-77.35044785594366, 34.68681136780035], [-77.3504607891302, 34.686797812720705], [-77.35068144466638, 34.68653560704462], [-77.35075267749455, 34.68644916116725], [-77.35093127924544, 34.686158308420765], [-77.35101051506936, 34.686039469442996], [-77.35104974414611, 34.68599765994092], [-77.35129297652972, 34.685763162795], [-77.35105077727536, 34.685746732859656], [-77.35102158625804, 34.685183652630755], [-77.35088326023836, 34.68504575167243], [-77.35042950923375, 34.68485095108187], [-77.35037548480267, 34.68462808473498], [-77.35039269400141, 34.68448509956481], [-77.35041723292835, 34.68423689314622], [-77.35039723632144, 34.68413771669786], [-77.35046804106125, 34.68403292390355], [-77.3506768831692, 34.683190524790746], [-77.35073543640236, 34.68311651937784], [-77.35078921023755, 34.68299736840917], [-77.35087243958816, 34.6822379584083], [-77.35088901918873, 34.68213217726096], [-77.3508836510486, 34.682121405981], [-77.35081775307154, 34.68203884703011], [-77.35046804850003, 34.68166780121159], [-77.34995558421026, 34.68127441124596], [-77.34995522451837, 34.68127416874014], [-77.34995518910495, 34.68127414880451], [-77.34883479385945, 34.681010320390186], [-77.34841239405041, 34.68088479564979], [-77.34819812861049, 34.680540564183055], [-77.34858703402139, 34.680060949190505], [-77.34908751279339, 34.67944371057774], [-77.34940243380007, 34.67905531662048], [-77.34979137641069, 34.6785756272468], [-77.35134722846625, 34.678625998493175], [-77.35183567552563, 34.67892016643463], [-77.35211295436653, 34.67902831893613], [-77.3527634522531, 34.679112712815225], [-77.35296500820913, 34.67915324319796], [-77.35348845673427, 34.67932682229056], [-77.35350431375602, 34.67933085931996], [-77.3535099168162, 34.67933784653273], [-77.35384880125795, 34.67976472168651], [-77.35389049047413, 34.67982200823748], [-77.35394552850224, 34.679898964820914], [-77.35426711119769, 34.680320514810816], [-77.35457351614085, 34.68063996480816], [-77.3546868507551, 34.68078583466276], [-77.35477828220077, 34.68115378464741], [-77.35486569063286, 34.681436581026276], [-77.35493903224521, 34.68156453759768], [-77.3551796899585, 34.681832796243526], [-77.35530026749719, 34.681890485344525], [-77.35548006754297, 34.68197761907366], [-77.35550279760191, 34.68212879864396], [-77.35572558417546, 34.68201406959007], [-77.35634949475364, 34.681871280534516], [-77.35636659889309, 34.68186764615899], [-77.35637717569483, 34.68186159133337], [-77.35639444964175, 34.681852036994385], [-77.35684631791517, 34.681639253929156], [-77.3570490352665, 34.68157850294106], [-77.35737731393806, 34.68147334819327], [-77.35737849725865, 34.68147280130288], [-77.35737900706657, 34.68147267100619], [-77.35738126220468, 34.68147129473527], [-77.35761205544215, 34.681360734986605], [-77.35761752828844, 34.68128942798307], [-77.3576061304635, 34.68119822595665], [-77.35758338161179, 34.68101619483066], [-77.35766109024439, 34.68086168469158], [-77.35774666417038, 34.680691536280904], [-77.35785826955949, 34.68062164983313], [-77.35793597515774, 34.68058474464789], [-77.35857656416658, 34.680090153322666], [-77.35861941796685, 34.680019951265855], [-77.3587577732909, 34.67981535788612], [-77.35911803058336, 34.67918551606227], [-77.35938271357762, 34.67900463877969], [-77.35952384953976, 34.67890705272065], [-77.35963730774083, 34.67884697441398], [-77.35983498704931, 34.67869881393805], [-77.35991651560646, 34.67861693001379], [-77.35994568854588, 34.67851170663418], [-77.35995062631828, 34.67843923385098], [-77.35999544068825, 34.67827629709259], [-77.35983292469221, 34.678172925417], [-77.35971710707044, 34.67809634494915], [-77.35960253569041, 34.677999666124734], [-77.3594347038038, 34.67791952593778], [-77.35932340894622, 34.6778663819501], [-77.3591864126893, 34.677716447248315], [-77.35910075260904, 34.67760250287219], [-77.35908975579501, 34.67758272243024], [-77.35900045820138, 34.677465381600726], [-77.35890442922438, 34.67724789253009], [-77.35885069360266, 34.67718645730409], [-77.35880378083698, 34.67713462016384], [-77.35878398722025, 34.676974679335814], [-77.3589880195515, 34.67695986660464], [-77.35948634849572, 34.67695912210577], [-77.35960166792964, 34.67690756970065], [-77.35968411457426, 34.676939090644], [-77.35979692733417, 34.67699818619691], [-77.36005214397237, 34.67704998997212], [-77.36014528723034, 34.67709657910639], [-77.36077823424074, 34.67686337076759], [-77.36080831589169, 34.67685463415282], [-77.36081437307635, 34.67685324158908], [-77.36081996743566, 34.676853111804405], [-77.36089175489201, 34.67684777423049], [-77.36139244988246, 34.676806609634625], [-77.36142653882253, 34.67680603672505], [-77.36163708209068, 34.67701250234871], [-77.36182537569813, 34.67711804730963], [-77.36191831738054, 34.67717369799304], [-77.36193005022027, 34.67718118380253], [-77.36195626542455, 34.677188906074676], [-77.36218997744484, 34.677268722829936], [-77.36241887533987, 34.67719908204644], [-77.36251498390098, 34.677179905953814], [-77.36258773041574, 34.67715565628402], [-77.36275349439347, 34.67707936563151], [-77.36303657577241, 34.676915342855864], [-77.36322033587939, 34.6768115451809], [-77.36347956489661, 34.676669838946154], [-77.36357658294651, 34.676615048416906], [-77.36371859771789, 34.676562634533774], [-77.36375083520204, 34.67656786548817], [-77.36376686533757, 34.67660542219403], [-77.36373047791751, 34.676701425028305], [-77.36372711926138, 34.67688928787664], [-77.36374605091791, 34.67694297999979], [-77.36374699472414, 34.67696505339355], [-77.36376896281138, 34.67698330243492], [-77.36395871570714, 34.67740114632967], [-77.36407524343363, 34.677500802465865], [-77.36418214224554, 34.67762188014501], [-77.3642728377969, 34.67774290984072], [-77.3643265753157, 34.677837986628916], [-77.36440007103946, 34.6780391867615], [-77.36457308600507, 34.67829150211726], [-77.36457766917214, 34.67829669167873], [-77.36458305268465, 34.67830276493794], [-77.3647988101511, 34.67852067235668], [-77.3650211829856, 34.678717314781736], [-77.36503370206599, 34.67873406682813], [-77.3650507995887, 34.67875331613815], [-77.36514670317035, 34.67884418634089], [-77.36521856111685, 34.67884955350711], [-77.36532666179323, 34.678833879689925], [-77.36539830190054, 34.67884760007533], [-77.36562143760943, 34.67884925556813], [-77.36577506694806, 34.6789517670158], [-77.36612090167688, 34.67901120928989], [-77.36617128027356, 34.67901687320831], [-77.36619793342055, 34.67902044003989], [-77.36642863507035, 34.67901128300241], [-77.36647237059451, 34.67901048540861], [-77.3665056948768, 34.6790006924105], [-77.36673029224814, 34.6789131896489], [-77.36682573093725, 34.67882393102789], [-77.36713950703839, 34.678637735974434], [-77.36756251954398, 34.67834715903068], [-77.36795999262164, 34.67845227497513], [-77.36814667835387, 34.6783964809626], [-77.36832437682496, 34.67841163506873], [-77.36883231222937, 34.67809599927306], [-77.36923315842829, 34.678260498205915], [-77.36920864965887, 34.67862918319367], [-77.3692504687155, 34.67864142165137], [-77.36926998697543, 34.678650272390854], [-77.36981455868752, 34.67860134501543], [-77.36987303534073, 34.678634474887126], [-77.37007330045876, 34.678796375733285], [-77.37022782527957, 34.678822432009206], [-77.37051882360983, 34.67847133281609], [-77.37056302686936, 34.67844300652163], [-77.37053558285263, 34.678413557101294], [-77.37029619136419, 34.67823050063498], [-77.37006791562831, 34.677962659512986], [-77.36991126339049, 34.677738379083934], [-77.36991273056822, 34.67755761274691], [-77.36974104859627, 34.67708093069536], [-77.36941292966917, 34.676651531064614], [-77.36933545369699, 34.6766047325573], [-77.3692668360594, 34.676598109664624], [-77.36916499133093, 34.676604078571806], [-77.36841640601995, 34.67652387191241], [-77.36811221594243, 34.676452347852326], [-77.36801481934883, 34.676438831990886], [-77.36767418932145, 34.676558985431086], [-77.36744957502725, 34.676673602065904], [-77.36707096885823, 34.6767713024159], [-77.36681042178779, 34.67681388109011], [-77.3664462128903, 34.67657191089942], [-77.36634539524724, 34.67654146497365], [-77.36629102455467, 34.67654137451596], [-77.36613253127844, 34.67646879265094], [-77.36575173565438, 34.67633743676397], [-77.36565468175567, 34.67628478490653], [-77.36567019774168, 34.67619117018558], [-77.36555641767458, 34.675966204014415], [-77.36554899380192, 34.67595152536786], [-77.3654212981278, 34.67573798561244], [-77.36543191055631, 34.67566782703993], [-77.36535937279744, 34.67562710010564], [-77.36519360639315, 34.675281885996704], [-77.36511099181688, 34.675126437739166], [-77.36506134631338, 34.6748810601587], [-77.36504696640989, 34.67481464809689], [-77.36503560350378, 34.67479024565935], [-77.36500943950156, 34.67477054441199], [-77.36487999135421, 34.67451582003741], [-77.36476396017494, 34.674366149636676], [-77.36468305719961, 34.67427320996765], [-77.36458938844792, 34.67415568466065], [-77.3645823737888, 34.67414740920586], [-77.36448278682532, 34.6740331690955], [-77.36439266361037, 34.67392978419563], [-77.36426499947271, 34.67380661546556], [-77.36412914135869, 34.67367938338779], [-77.36404067450252, 34.67358509576027], [-77.363952656638, 34.67350286045109], [-77.36392501142863, 34.67347703155543], [-77.36389543661458, 34.673453582596025], [-77.36379534330665, 34.67337974957368], [-77.36365156332377, 34.673262830701496], [-77.36346868440236, 34.67323701819201], [-77.3633904335233, 34.673092729194934], [-77.3632797660855, 34.67298824061968], [-77.36316332204302, 34.67288304292562], [-77.36303857376986, 34.67277970897031], [-77.36288463463815, 34.67267484291477], [-77.36276308359191, 34.67259758398072], [-77.3626656785889, 34.67253567203947], [-77.36250145345957, 34.67240478830522], [-77.36242047265247, 34.67234953020343], [-77.36231546515842, 34.67226566284563], [-77.36224371316564, 34.672208998144065], [-77.36217498265044, 34.672164369738184], [-77.36195355082523, 34.672038170190554], [-77.36173428689132, 34.67193158478591], [-77.36165412287505, 34.6718970332694], [-77.36163128151561, 34.67189206142106], [-77.36157557987568, 34.67187993680962], [-77.36123209462409, 34.67180517053518], [-77.36110104395107, 34.67174073810808], [-77.36091896084399, 34.67165202801785], [-77.36056850420499, 34.67153091746095], [-77.36056582179485, 34.67152968522062], [-77.36056406311117, 34.671528972520534], [-77.36055871055699, 34.67152757289989], [-77.36018383778386, 34.67142954855913], [-77.3600158674347, 34.67135585884101], [-77.35983964185715, 34.67130031856462], [-77.35962023318405, 34.67117381118044], [-77.35954716647122, 34.67113127235946], [-77.35949222762504, 34.67109813244226], [-77.35926401975544, 34.67095504197213], [-77.35898592570487, 34.67078067009929], [-77.35897538729724, 34.67077501466831], [-77.35867955797738, 34.67061657163917], [-77.35849179622899, 34.670421273691964], [-77.35840099736528, 34.670366535902346], [-77.35830806415998, 34.67011414647831], [-77.35835376036954, 34.66988563812215], [-77.35850244399447, 34.669704460934064], [-77.35855344465487, 34.6695310258893], [-77.35853500662175, 34.66937335257775], [-77.35853261675405, 34.66924957311143], [-77.35854221365088, 34.66914546053234], [-77.35849338961832, 34.669135376342275], [-77.35829030623198, 34.669053509553194], [-77.35803241338688, 34.669143728724116], [-77.35791290650712, 34.669181747690914], [-77.35762294019753, 34.669291088636726], [-77.35732791243169, 34.6692918849977], [-77.35727594793664, 34.66861697728445], [-77.35726338444634, 34.66857326597044], [-77.35726620859653, 34.66855097412883], [-77.35735371315803, 34.66815678925195], [-77.357372234567, 34.66807092714605], [-77.35738180327172, 34.66805999830296], [-77.35774915083006, 34.66776006104521], [-77.3577697369297, 34.66775425886129], [-77.35812019478404, 34.667480790959075], [-77.35812754742076, 34.66745733178267], [-77.35810261736641, 34.66711862906973], [-77.35802081583722, 34.66700705619196], [-77.35806791886836, 34.66676621597611], [-77.35806033247803, 34.66651424082086], [-77.35806880775326, 34.66635623743278], [-77.35813578405444, 34.66601648874706], [-77.3581444633111, 34.66555759965999], [-77.35814311669758, 34.66552809485586], [-77.35814136148208, 34.66551196000937], [-77.35814568529273, 34.66542777701005], [-77.35813619654066, 34.66504165853168], [-77.35817309506116, 34.664944743276266], [-77.35814942462497, 34.66471733183531], [-77.35814445915105, 34.66455313645222], [-77.35811959759513, 34.66434608609163], [-77.35812804625843, 34.66426655365632], [-77.35814944945739, 34.66406506435982], [-77.35813086740407, 34.66394319932217], [-77.35807787369438, 34.66359943561998], [-77.35807713702745, 34.663590357682345], [-77.3580701398164, 34.663588573212266], [-77.35759086620686, 34.663410009751765], [-77.35739915457208, 34.66337893872817], [-77.35710346034097, 34.66334159787482], [-77.35703635035142, 34.66335955893909], [-77.35699508006925, 34.6632404740065], [-77.35695271280296, 34.662898071250055], [-77.35711982741766, 34.662689759308954], [-77.35723033006485, 34.66253993678292], [-77.35730282413905, 34.66242797071061], [-77.35732807057735, 34.662216952276275], [-77.35733785212403, 34.66200115361097], [-77.35728428688532, 34.66171996808376], [-77.35703235253845, 34.661556026757445], [-77.35687464786585, 34.661382630276194], [-77.35671264260915, 34.66124303193154], [-77.35645760632605, 34.661059955435775], [-77.35625753465226, 34.660888138594174], [-77.35604717753723, 34.660724189953655], [-77.35579687464624, 34.66052482109821], [-77.35564275603248, 34.66037653211652], [-77.35551212718012, 34.66036636618108], [-77.35532216672648, 34.660345273647366], [-77.35442397308412, 34.660493027644954], [-77.35421597642916, 34.6602903209662], [-77.3535839444854, 34.66005754639253], [-77.3535265742064, 34.660046854927955], [-77.35348880580045, 34.66004788914414], [-77.35292851499462, 34.66025745207707], [-77.3527498392203, 34.660362710205156], [-77.3526400505485, 34.66041527973881], [-77.3525889232065, 34.66046332026748], [-77.35249097996696, 34.66055688677834], [-77.35236824803857, 34.6606559439006], [-77.35221163637381, 34.6605952507245], [-77.35226979498047, 34.660166495191405], [-77.35226983730496, 34.6601655593067], [-77.35226984876472, 34.66016525385717], [-77.35226970070958, 34.66016500280679], [-77.35226902654344, 34.660162674937226], [-77.35203617061241, 34.659353341318734], [-77.351722743946, 34.658951168511756], [-77.35132005549264, 34.65862864447622], [-77.35085938183921, 34.65836388681818], [-77.35054594096488, 34.65786998447423], [-77.35013301767563, 34.65750535601694], [-77.34976659037733, 34.65727296863808], [-77.34967894947127, 34.65725606257946], [-77.34924669467372, 34.65734430235689], [-77.34914273964301, 34.65735525286716], [-77.34904476256335, 34.65736341042904], [-77.34853666766128, 34.65752595031316], [-77.34832407304626, 34.65764202665206], [-77.34821067765593, 34.6577117717996], [-77.34794164659009, 34.657751615728294], [-77.34789662728996, 34.657752265624495], [-77.34773112421875, 34.65766770980051], [-77.34759008449383, 34.65759565185121], [-77.34751128697458, 34.65752881336991], [-77.34741076217554, 34.65745647907521], [-77.34740469257221, 34.6574527839799], [-77.34740077725642, 34.657450400378856], [-77.34729379643821, 34.65738527168597], [-77.34720697360393, 34.657282782609784], [-77.34686863672798, 34.657126437098015], [-77.34684626570541, 34.65712303870892], [-77.34679594814784, 34.65705859564528], [-77.34660786891992, 34.656722712351865], [-77.3466052888128, 34.656451853571255], [-77.34655006860584, 34.656161915909735], [-77.3465247642335, 34.65589012290133], [-77.34659418233768, 34.65582759993765], [-77.3466660186109, 34.65575746766095], [-77.34675971465047, 34.65569039063439], [-77.34689003157175, 34.65570653053701], [-77.34697045089732, 34.655728860385864], [-77.34727655153635, 34.65578690547387], [-77.34750301257482, 34.65582272048011], [-77.34755286374012, 34.65581816849036], [-77.34761395563235, 34.655820482935674], [-77.34787882208596, 34.65584684092217], [-77.3480695789512, 34.65584925066309], [-77.34821488709163, 34.655925770763155], [-77.34834000087614, 34.65583092199108], [-77.34851120242918, 34.65580702832504], [-77.3487063600367, 34.65573675136498], [-77.34881382480634, 34.655719652034755], [-77.34890008127715, 34.65568646373431], [-77.3490863448772, 34.65553840924745], [-77.34887252350171, 34.655407740046876], [-77.34871951957201, 34.65525068280241], [-77.3485203206794, 34.654956772067436], [-77.34835705405091, 34.654794547944384], [-77.34829416717733, 34.654727713042604], [-77.34813571244543, 34.65456997441796], [-77.34790342687828, 34.654376844439106], [-77.34769726973109, 34.65428977558193], [-77.34738716976578, 34.654083717385674], [-77.34726052593189, 34.65400621657928], [-77.34717040886014, 34.65391608666911], [-77.3466964910566, 34.65333454713103], [-77.34653591398279, 34.653144343615736], [-77.34633840718412, 34.652962963004526], [-77.34633788165999, 34.6529623003576], [-77.3463371414189, 34.65296188494186], [-77.34611427894444, 34.65283088549221], [-77.34571114390413, 34.652625829613086], [-77.34565107917783, 34.65259972790877], [-77.34562285245339, 34.652588952845534], [-77.34555108105458, 34.65256069620049], [-77.3451640029483, 34.652415845943246], [-77.34490986340957, 34.652227667644034], [-77.3447636197103, 34.652060323596075], [-77.34457503486756, 34.651937802341365], [-77.34454287627838, 34.651923255243034], [-77.34452705054115, 34.65191609634113], [-77.3444805557582, 34.65189506403966], [-77.34430683297757, 34.651816479140784], [-77.34417621039844, 34.65176355759817], [-77.34384280392729, 34.651633375632166], [-77.34382876029238, 34.6516278769336], [-77.34382282068978, 34.651626540296796], [-77.34348166945975, 34.65149397466508], [-77.34334417469861, 34.65142597864672], [-77.34313895663801, 34.651290942994635], [-77.34312644336939, 34.65128295195184], [-77.34311730070516, 34.65127411355089], [-77.34292515839618, 34.65110736440251], [-77.34271049143696, 34.65084309327822], [-77.34254061989432, 34.6507204958064], [-77.34233807037292, 34.650583143772984], [-77.34232299283978, 34.65057726745749], [-77.34203529144013, 34.65059844192568], [-77.34202193932093, 34.650599205584705], [-77.34202110944875, 34.65059911221883], [-77.34202047836072, 34.650599532148085], [-77.34201623341521, 34.65060105784635], [-77.34150532236008, 34.65078587562701], [-77.34143556218199, 34.65087173448005], [-77.34084574579862, 34.65076171357123], [-77.3407887155166, 34.650744377107806], [-77.34061312620685, 34.64995300602332], [-77.34061256725276, 34.64994972365101], [-77.3406112684676, 34.64994754474268], [-77.34060908838335, 34.64994559562617], [-77.34043908400082, 34.64971435951453], [-77.34034115889546, 34.64969911811342], [-77.34030386494771, 34.64998205266664], [-77.34047682018691, 34.649968354688994], [-77.34060499144663, 34.64995997138533], [-77.34071599295727, 34.65071627807074], [-77.34074319389705, 34.650775788910835], [-77.34075605307014, 34.65080903897329], [-77.34074824021008, 34.651413624609354], [-77.340686678119, 34.65162753909408], [-77.34058598368938, 34.651929402870536], [-77.34063126523135, 34.65220420609059], [-77.34076862713947, 34.65233248216436], [-77.34081495941064, 34.6524146177351], [-77.34086009274296, 34.65244773235021], [-77.34103153396894, 34.65255993743675], [-77.34115404456132, 34.65265708172788], [-77.34145131996571, 34.652877036002025], [-77.34184705746071, 34.65315626338976], [-77.34187733233432, 34.65318181297744], [-77.34190145148702, 34.65318967941999], [-77.34194219279102, 34.653195389565184], [-77.34237416454357, 34.653346389340804], [-77.34257491734144, 34.653354373148694], [-77.34284747938793, 34.65344094299327], [-77.34289678056979, 34.65345992240943], [-77.34291641546822, 34.65346042053487], [-77.34294910040646, 34.653468050988764], [-77.34316478293971, 34.65350343535738], [-77.34327705860903, 34.65366170257924], [-77.34336234303532, 34.65368640875385], [-77.34345074424381, 34.65378013269364], [-77.34333916454571, 34.65397065794703], [-77.34320939876707, 34.65398920423212], [-77.34303558150836, 34.6540532441247], [-77.34292390019826, 34.65411175316877], [-77.34273801045423, 34.654165738770565], [-77.34247998535358, 34.65428506991282], [-77.34242717501873, 34.654315323715224], [-77.34213898683328, 34.654371433203096], [-77.34213184294524, 34.65437326610061], [-77.34184807982825, 34.65438788600305], [-77.34182237503344, 34.654389210325625], [-77.341796104804, 34.654393491254986], [-77.34150975632099, 34.65442685180157], [-77.34122882840474, 34.654465644404354], [-77.34117064480537, 34.65447689375355], [-77.34090281466533, 34.654593169453044], [-77.3406580015038, 34.6546656023759], [-77.34032111983893, 34.65488511362557], [-77.33996000165932, 34.65510324356798], [-77.33982751379203, 34.655224864735075], [-77.33975925075394, 34.65527572119529], [-77.33943480580837, 34.65572082235203], [-77.33925739317094, 34.65596495597122], [-77.33923460620002, 34.656005906535235], [-77.33916889538537, 34.65605580287057], [-77.33871774698017, 34.65646619676803], [-77.33844369494068, 34.65660212178982], [-77.33812358219286, 34.656696184112356], [-77.33790662844477, 34.656768043305235], [-77.33772029770458, 34.65681848032341], [-77.33751995300314, 34.656879089327575], [-77.33736197544823, 34.6569268807129], [-77.33704954487958, 34.656998113302095], [-77.33689932917761, 34.65697743370005], [-77.33649937459113, 34.65693906204406], [-77.33617654825814, 34.65656738928717], [-77.33590740453283, 34.65690357289128], [-77.33561537049658, 34.65696157463293], [-77.33509118264362, 34.657459304595385], [-77.33508102587824, 34.65746669347657], [-77.3350771119106, 34.65746985451425], [-77.33506619782798, 34.65747973183436], [-77.33453054159381, 34.65793679252557], [-77.33434731653874, 34.6581163267352], [-77.33399784358032, 34.65844625488445], [-77.3339933519446, 34.658450452468045], [-77.33399073879102, 34.658450740469554], [-77.33398379218693, 34.658455213595545], [-77.33352320763976, 34.65868157533199], [-77.33347018047044, 34.65903391073297], [-77.33323163896978, 34.658814734532456], [-77.33301470543412, 34.65887416306932], [-77.33308225883661, 34.65911037441119], [-77.33318477173906, 34.65920708045411], [-77.33337146601534, 34.659383199195986], [-77.33347919457786, 34.65947273475908], [-77.33360584662844, 34.65970915100639], [-77.33379754128107, 34.65999063707712], [-77.33387330187887, 34.660158344052526], [-77.3339207497344, 34.66038727903048], [-77.33373560914224, 34.66035499631876], [-77.3336310201253, 34.660320202957045], [-77.33341409752774, 34.660348494878804], [-77.33318813768035, 34.66037066665829], [-77.33309973920187, 34.66037759544424], [-77.33301056360463, 34.66040019986173], [-77.33279821623836, 34.66047058268158], [-77.33263743937597, 34.66052387190341], [-77.33251637829918, 34.660661552172655], [-77.33213404055485, 34.661240908962434], [-77.33213246023763, 34.66138706265275], [-77.33210429681465, 34.66179807655174], [-77.3320845086245, 34.6620096048214], [-77.33203497628766, 34.662098481821666], [-77.33197359543686, 34.662573368387726], [-77.33167941373591, 34.66287092443238], [-77.3313253022077, 34.66258742163312], [-77.33091623548323, 34.66225991409569], [-77.33090763746159, 34.662253105607995], [-77.33048898644373, 34.661946659778344], [-77.33015392021981, 34.66165312830054], [-77.33003961752681, 34.66152817106908], [-77.32976221231422, 34.66108914800108], [-77.32956035014058, 34.66074991747864], [-77.32925334353769, 34.66035796061098], [-77.32903492874244, 34.660232669835196], [-77.3285731454464, 34.66015984643738], [-77.32831129491223, 34.66048899490073], [-77.32805135672356, 34.6607504236667], [-77.32797053202816, 34.66083819126837], [-77.32786043661876, 34.660983037220774], [-77.3277905271689, 34.66133747257979], [-77.32762731839466, 34.66182770656653], [-77.32711714893831, 34.66204347907439], [-77.32698054276192, 34.66200224760261], [-77.32685382360056, 34.66179763167289], [-77.32659772913551, 34.661156184084604], [-77.32679461474284, 34.66087029973813], [-77.32690933647362, 34.66051476806851], [-77.32709219051644, 34.66024440352487], [-77.32719285171395, 34.66011212449109], [-77.32719687048473, 34.65968451926312], [-77.32724529333372, 34.65949374103586], [-77.3272645757277, 34.659376784981234], [-77.32718742305745, 34.65929733300184], [-77.32710505449253, 34.65922735252238], [-77.32681597682772, 34.65888456743209], [-77.3266413676036, 34.658929880908346], [-77.32641663050615, 34.65898820285821], [-77.32614837721205, 34.659057816890936], [-77.32608206324078, 34.65907502588364], [-77.32582073890443, 34.65920980795504], [-77.32562513702615, 34.65931575860958], [-77.32536096957224, 34.65946811735738], [-77.32523716175382, 34.65949275063219], [-77.32471988683275, 34.65958887496461], [-77.32456764797666, 34.65934774554278], [-77.32437235443672, 34.65948076712463], [-77.32364077242846, 34.65942861883825], [-77.32359785619448, 34.658757606091605], [-77.32374588034304, 34.65817128115354], [-77.32324389558772, 34.65709234150483], [-77.32406534701344, 34.65684621398514], [-77.3244700138487, 34.65690248346504], [-77.32487359166572, 34.65698932177066], [-77.32536714864617, 34.65695103296926], [-77.32593878536107, 34.65717705313761], [-77.3260476563522, 34.657150874955896], [-77.32615118862222, 34.65713750345649], [-77.32664623234663, 34.656942703255964], [-77.32710536921564, 34.657164150725684], [-77.32733271000957, 34.657172250627916], [-77.3276461822625, 34.65719865882253], [-77.32796696701317, 34.657141752677205], [-77.32877220585786, 34.65748207580462], [-77.3291851846454, 34.65763967497105], [-77.32943219480515, 34.658060134289656], [-77.32993396109126, 34.658453575254214], [-77.33029137589133, 34.658333651703785], [-77.33073557448026, 34.6581726406751], [-77.33121710730686, 34.65820998634193], [-77.33158147259815, 34.658203447829784], [-77.33159152253606, 34.65793938421334], [-77.3318814497804, 34.657816193081544], [-77.33193656780007, 34.65777546971628], [-77.33206442209983, 34.657681005436785], [-77.33230252856075, 34.65754199670205], [-77.33233092271621, 34.6571535769096], [-77.33234856331863, 34.656991557991994], [-77.33233590749352, 34.65690585250794], [-77.33223099021686, 34.65620344520574], [-77.33222343640493, 34.65616473667899], [-77.33222195644933, 34.65613216182611], [-77.33223527007394, 34.65607463374555], [-77.33232451517571, 34.65556060299208], [-77.33240660512304, 34.65529562528247], [-77.33237615327363, 34.65494150583275], [-77.33242770414202, 34.6548707386411], [-77.33258337632745, 34.65461977688564], [-77.33269688998011, 34.654573643115015], [-77.33275292479433, 34.65459650308361], [-77.33289211130928, 34.65475590300373], [-77.33293279080794, 34.65480145255284], [-77.33293585113623, 34.65480841946669], [-77.33294668988748, 34.654834473528666], [-77.33309739316155, 34.65520086543725], [-77.3331984737022, 34.6554365683819], [-77.33343854061087, 34.65568896202346], [-77.33355380666757, 34.65588123391077], [-77.33409453523653, 34.65587846820492], [-77.3341166275001, 34.65587667255568], [-77.33415725565565, 34.655834829970125], [-77.33447994268326, 34.65557097912765], [-77.33460242565579, 34.6551073096703], [-77.33462302034165, 34.655037261895785], [-77.33463513590937, 34.654989907883916], [-77.33467829183452, 34.654803565703446], [-77.33475153128555, 34.65448994662948], [-77.33486224026636, 34.65443947857845], [-77.3350958843954, 34.65437611767272], [-77.3352686129592, 34.65448100328683], [-77.33532712935336, 34.65466730076201], [-77.33537367639317, 34.65488858259066], [-77.33548207284849, 34.65517194986355], [-77.33571869854092, 34.65568523382214], [-77.33577755885949, 34.65607174601465], [-77.33613262587933, 34.656348802872124], [-77.33625486158866, 34.655893377712076], [-77.33663448943487, 34.655659467095994], [-77.33666312678848, 34.65560723032787], [-77.33668786725458, 34.655552258668244], [-77.33682459776361, 34.65509069252382], [-77.33697000587632, 34.65466955616872], [-77.33691088174639, 34.65384810305694], [-77.33691052270441, 34.65383636407575], [-77.3369125952211, 34.65383344397178], [-77.336909125823, 34.65383195863834], [-77.33690753370735, 34.6538314412576], [-77.336902561681, 34.653828932091564], [-77.33619799890971, 34.65348717619855], [-77.3360003839033, 34.65333469276587], [-77.33560127636127, 34.65328138698992], [-77.33551244471491, 34.65326223661156], [-77.3354646476648, 34.65324711689946], [-77.33526428027209, 34.653215615306436], [-77.33517990281157, 34.65320070064685], [-77.33515055929635, 34.653194251027166], [-77.33494051706751, 34.65313656903088], [-77.33484136971198, 34.65310934085649], [-77.33461990939098, 34.65303248711539], [-77.33444037416194, 34.65297854205101], [-77.33414889009866, 34.652849886267155], [-77.33396592991232, 34.65276965151478], [-77.33358538044047, 34.652601962244475], [-77.33332562667673, 34.65193939080167], [-77.33328185644766, 34.65182774314635], [-77.33297559018513, 34.65184162885589], [-77.33328898509463, 34.65175699376907], [-77.33332066735092, 34.65175092580818], [-77.33390560327426, 34.651638895811324], [-77.3344458688006, 34.65153541832833], [-77.33452221985465, 34.65152079476037], [-77.33460488289803, 34.65150496176025], [-77.33513883402492, 34.65140269071561], [-77.33530230939581, 34.65100041941982], [-77.33566717175849, 34.650845221583296], [-77.33576976902599, 34.650769557883606], [-77.33616055275441, 34.65072164301921], [-77.33613654634429, 34.650985963568964], [-77.3363863835473, 34.65123777752408], [-77.33648127197735, 34.651234804252546], [-77.33696657077107, 34.651219596686516], [-77.33702252103785, 34.651216853416344], [-77.33710613240466, 34.651145931961814], [-77.3374746359984, 34.65102663849736], [-77.33759074388988, 34.650857940681654], [-77.3378274141391, 34.6506887113436], [-77.33785624092877, 34.65058585935324], [-77.33798992668409, 34.65054448336558], [-77.33816327744164, 34.650520504784346], [-77.33873411022736, 34.65021937834402], [-77.33874326089112, 34.65022016451461], [-77.33874614078515, 34.65021186795731], [-77.33874864931632, 34.65020553044558], [-77.3387491151651, 34.65018967459223], [-77.33891117795568, 34.64969867917891], [-77.33876916626528, 34.64935872282674], [-77.33870955852959, 34.64911990894039], [-77.33866732553378, 34.6489507029222], [-77.338596195478, 34.648770291175296], [-77.33849056010791, 34.64863874459471], [-77.3384269429549, 34.64856169565463], [-77.33866365686572, 34.64823074444748], [-77.33874814899796, 34.64821196137751], [-77.33886961829552, 34.64822901323671], [-77.33899426423963, 34.64828273465433], [-77.3391069697395, 34.64833317718065], [-77.33933808136013, 34.64840045847558], [-77.33943580663825, 34.64842324217135], [-77.33961175736354, 34.64848194973281], [-77.33967129220085, 34.6484653971766], [-77.3397493239233, 34.6484793655848], [-77.34000152282117, 34.64851550268254], [-77.34011367809369, 34.64848588299094], [-77.34020454043126, 34.64845651769765], [-77.3403034091865, 34.648424564833206], [-77.34038954482735, 34.648409791980555], [-77.3406296871454, 34.64825938597143], [-77.34082699112194, 34.64815091930612], [-77.34088187007644, 34.64811674935116], [-77.34106020700477, 34.64777829884382], [-77.34108736975982, 34.647726748997854], [-77.34110784115386, 34.647648082566015], [-77.34122176849883, 34.64733412623152], [-77.34124552805353, 34.64720715318223], [-77.34126484924097, 34.646906215895434], [-77.34126943151307, 34.64685908115612], [-77.34129534320091, 34.64658641592509], [-77.34130421098729, 34.6464788157957], [-77.3413583312141, 34.646172271409284], [-77.34138416345239, 34.64604584426093], [-77.34138551283196, 34.64600335235596], [-77.34140545353583, 34.64562092426847], [-77.34134094778206, 34.64529450616426], [-77.34133354553116, 34.64520879742929], [-77.34131795410227, 34.64510407571307], [-77.34122373844616, 34.64480187236378], [-77.34116918264243, 34.64476719560673], [-77.34105730309747, 34.644696082480635], [-77.34098566753576, 34.644650549352214], [-77.34097104547011, 34.64464277201839], [-77.34080677884958, 34.644556921526316], [-77.34050166845599, 34.64447898501082], [-77.34047717601086, 34.64447243114503], [-77.34046511224633, 34.64444983198575], [-77.34024418573034, 34.64409232862305], [-77.34017570487067, 34.643921180677665], [-77.339924344732, 34.6433519196599], [-77.33990541103796, 34.643308213548465], [-77.33989939320972, 34.643295658772324], [-77.33988816449875, 34.64327095434995], [-77.33962240547979, 34.64272041961554], [-77.33945825152321, 34.64251221187264], [-77.33926776913397, 34.6422744483171], [-77.33900962399, 34.64198609111364], [-77.33889756768451, 34.64185929910526], [-77.3384889184507, 34.641801255408694], [-77.33836856684624, 34.64175854118703], [-77.33832190432462, 34.64174993722224], [-77.33828365896315, 34.641772923291505], [-77.33822095103119, 34.64183803130151], [-77.33778617484853, 34.642270261379764], [-77.33760939625172, 34.6424779276264], [-77.33740395438696, 34.642520167625676], [-77.33715953129617, 34.64233810064664], [-77.33694651533011, 34.642277728006334], [-77.3364842210564, 34.64216369821185], [-77.3359083149304, 34.64222421124169], [-77.33585516465035, 34.64221952348481], [-77.3358155277213, 34.64222067780754], [-77.33528503968833, 34.64230954296957], [-77.33523379585569, 34.64231361995927], [-77.33517417451705, 34.642342317485785], [-77.3347825289348, 34.64250763281183], [-77.33466777389987, 34.642683246857345], [-77.33417504595738, 34.6432372039963], [-77.33415936710752, 34.64326036781477], [-77.3341458395798, 34.643272382754404], [-77.33409917511656, 34.643322356616096], [-77.33388424218806, 34.643563824854404], [-77.3337887184207, 34.64358158461543], [-77.33358460363871, 34.64366588870747], [-77.33320420565732, 34.643703109812634], [-77.33299604491232, 34.64392338606963], [-77.33166225674059, 34.643597941690324], [-77.33165032126969, 34.64359896131177], [-77.33163538178526, 34.643607606735685], [-77.33159861277642, 34.643590669749805], [-77.33071157074019, 34.643140406305804], [-77.33069620446699, 34.64269586001751], [-77.33045638628867, 34.642059387517364], [-77.33049921259308, 34.64184458172076], [-77.33058351032311, 34.64147509206198], [-77.33062366309731, 34.641293466105125], [-77.33065982629371, 34.641187496652], [-77.33058721772275, 34.641090852331075], [-77.33046416911463, 34.640880823625345], [-77.33006148696941, 34.64076849227685], [-77.3297690506639, 34.64060762194433], [-77.3296929873664, 34.64056516340023], [-77.32945369781304, 34.64063139801763], [-77.32933566417279, 34.64075802905551], [-77.32917529761795, 34.640839197086166], [-77.32895553668357, 34.640876976111485], [-77.32884101250791, 34.64096344043678], [-77.32859258113866, 34.64112575125342], [-77.32842365956688, 34.64124103754662], [-77.32830442740519, 34.64128499604441], [-77.32814674068715, 34.641329980173495], [-77.32800153073066, 34.64137081844326], [-77.32788104491347, 34.64140165822412], [-77.32739563227786, 34.64154195019089], [-77.32712899881278, 34.641671786965475], [-77.3268702245275, 34.641792390667405], [-77.32681068420607, 34.641817438345825], [-77.3267205453033, 34.64185712682884], [-77.32640705992051, 34.64202720907322], [-77.32623211125481, 34.642124697659334], [-77.32619140355294, 34.64215949212723], [-77.32595707586657, 34.64225449517134], [-77.32594240387905, 34.6422606362023], [-77.32593614142242, 34.64226180002975], [-77.32587450333233, 34.64226581867064], [-77.32563868106902, 34.64227663157908], [-77.3256189111082, 34.6422594984211], [-77.32542951185134, 34.642116730776564], [-77.32516152228283, 34.64194160077114], [-77.32487186931624, 34.64172761100658], [-77.32455508494053, 34.64155184943407], [-77.32447632082004, 34.64155882058767], [-77.32420860963619, 34.64161303358237], [-77.32393177068901, 34.641717625290056], [-77.32359603543328, 34.641750942936596], [-77.32329189210446, 34.64178740270094], [-77.32327420946503, 34.64179132220781], [-77.32297603961568, 34.6418518870427], [-77.32267313169132, 34.6418768968355], [-77.3223713285928, 34.64202898560584], [-77.32221426535148, 34.64211572849737], [-77.32208170559926, 34.6421809748555], [-77.32199455632549, 34.642244226215766], [-77.3219405618825, 34.642383242015484], [-77.32189824528845, 34.64248797272487], [-77.32194339948003, 34.64308684301993], [-77.32194708657957, 34.643200983985366], [-77.32195384614471, 34.64322539650823], [-77.32195938455807, 34.643245559418034], [-77.32200860082295, 34.64341167763021], [-77.32217290512574, 34.643970658104095], [-77.32219114598561, 34.64403683824626], [-77.32221920526612, 34.64412252039457], [-77.32206640252566, 34.64418140600602], [-77.32153961757764, 34.644265052691566], [-77.32144088884277, 34.64413969680295], [-77.32121249915338, 34.64384970740067], [-77.32114092759569, 34.64375883219174], [-77.32112820757551, 34.643742681356514], [-77.32110787936998, 34.64370903774052], [-77.32087601554736, 34.64337316196286], [-77.32096002549052, 34.64297238390098], [-77.3209645620854, 34.64295074153913], [-77.32097685621443, 34.64293735031855], [-77.3212233747731, 34.642689470643006], [-77.32131587623316, 34.64261145733671], [-77.32156512992297, 34.6424347131518], [-77.32128481922337, 34.64228518682944], [-77.32114180080694, 34.64228304087587], [-77.32083569551635, 34.642026320837445], [-77.32066558268598, 34.64200409548714], [-77.3204350796006, 34.6419518963988], [-77.32024615540162, 34.64204530791241], [-77.32008212278275, 34.64212655442426], [-77.31986518524184, 34.64230249801185], [-77.31933542788049, 34.64269982528314], [-77.31930706589182, 34.64271179873742], [-77.31929606274905, 34.64272719752072], [-77.31928293118489, 34.64274757507347], [-77.31902757271912, 34.643143842468284], [-77.31898465042157, 34.643210448787165], [-77.31882985800846, 34.6435243043326], [-77.3187971417929, 34.64359603697506], [-77.31876778590068, 34.643662161545144], [-77.31860911458224, 34.64401957254931], [-77.31858769117515, 34.644067829138706], [-77.31838863987974, 34.644516191664664], [-77.31829708352771, 34.644463821235426], [-77.3181805753163, 34.64498484845778], [-77.31797712788881, 34.64545847966128], [-77.3179496541788, 34.64551925064427], [-77.3178518096883, 34.64547565594983], [-77.31731964643737, 34.64439323105421], [-77.31715971581824, 34.643882571278255], [-77.31722498470617, 34.643462457293765], [-77.31722458442998, 34.643029710599265], [-77.31732816928503, 34.642422203020544], [-77.31734163212116, 34.642236549638554], [-77.31739563755781, 34.6421622947915], [-77.31780215152656, 34.641593581193504], [-77.317914340271, 34.6414366278241], [-77.31796007246908, 34.6412409584711], [-77.31823460588748, 34.64055805488843], [-77.3182806132136, 34.640443894681766], [-77.31834277224, 34.64034452956811], [-77.31848392905769, 34.63979455833093], [-77.31856022376576, 34.63947075025714], [-77.3185363793896, 34.639347946688744], [-77.31835323659642, 34.63890564793416], [-77.3180088215673, 34.63885516973349], [-77.3178804918781, 34.63879332517438], [-77.31783394239002, 34.63878566956608], [-77.31730435126752, 34.63886456464846], [-77.31726902533892, 34.63893668130337], [-77.31669119616947, 34.63895925311371], [-77.31663849144157, 34.6389850154006], [-77.31659314093685, 34.63894581670716], [-77.31638604858657, 34.638924786072955], [-77.3159540375433, 34.63876460111511], [-77.31545898255034, 34.639051844434306], [-77.31538846135102, 34.63907723673642], [-77.31537589849752, 34.63907408594705], [-77.31536747145933, 34.63907600137343], [-77.31475987944903, 34.639194773351484], [-77.31426314802978, 34.639360946630354], [-77.31417030045019, 34.63944726059523], [-77.3132091803765, 34.63971129867889], [-77.31317110677996, 34.64084937538632], [-77.31225364603203, 34.64064691300994], [-77.31047242421837, 34.640162799978675], [-77.31025454615586, 34.640012444750504], [-77.30993975378095, 34.63980812051248], [-77.30940761034277, 34.63709874116901], [-77.30935298682218, 34.63651265015798], [-77.30912145934744, 34.63589244702641], [-77.30898656837121, 34.63318700292351], [-77.30905253028672, 34.63308280143605], [-77.30941473778846, 34.630826481090466], [-77.30997222576542, 34.629676098278566], [-77.31048850753277, 34.629159766456986], [-77.31077478002757, 34.62890190646665], [-77.31135044087499, 34.62866591895802], [-77.31136540238562, 34.62865495256833], [-77.31137706282615, 34.6286550055047], [-77.31201994995635, 34.62872674302742], [-77.31245031533928, 34.62878439227465], [-77.3126886413435, 34.62886906215744], [-77.31295382470981, 34.62926754274217], [-77.31322659464867, 34.62954314192813], [-77.31349561629555, 34.62996689928683], [-77.3135401668685, 34.630031157008766], [-77.3135490264864, 34.63005253636475], [-77.3136369208075, 34.630432649957974], [-77.31363731179178, 34.63043982785157], [-77.31365265123532, 34.630781079277455], [-77.31361992996497, 34.63086419373596], [-77.31366147599493, 34.63097741346111], [-77.31381229942201, 34.63127965678387], [-77.31404262318685, 34.63165023368495], [-77.31441457930009, 34.631782072712454], [-77.31456415953994, 34.63183645930829], [-77.31489230226317, 34.631955769673596], [-77.3149043450384, 34.63196039988271], [-77.31494978659089, 34.631992917968645], [-77.3152839816925, 34.63223349754253], [-77.3153391696807, 34.632247438768545], [-77.31539216765536, 34.632309244906715], [-77.31603661376029, 34.63279404389748], [-77.31617188755462, 34.632894607511595], [-77.31638079021931, 34.632914097348376], [-77.3165264638136, 34.63299774658374], [-77.31666672970718, 34.63306290198788], [-77.31673968573378, 34.63310750955373], [-77.31708025708197, 34.633315744606755], [-77.31710973586684, 34.633333768803354], [-77.31713065906538, 34.63336282840834], [-77.3173557769677, 34.633728044432345], [-77.31739371853166, 34.63391930947597], [-77.31755929867563, 34.6341221330227], [-77.31757864593794, 34.63444875255575], [-77.31758735279904, 34.63454027327925], [-77.31759178179458, 34.63467487133502], [-77.3175464033477, 34.63538985783345], [-77.31752904412521, 34.63573728503575], [-77.31756438128143, 34.63587657654403], [-77.31777511373507, 34.63620247975772], [-77.31788698617535, 34.63638571686314], [-77.31806061231887, 34.63650031421594], [-77.31829589833926, 34.63672408655544], [-77.31843332690302, 34.63676249398084], [-77.31854171221725, 34.63681143591714], [-77.31869026418347, 34.636821992555454], [-77.31876375798778, 34.636813939359634], [-77.31885479898082, 34.63676566670453], [-77.31914205986484, 34.636576587783836], [-77.31933866221577, 34.6364884642172], [-77.31936654723702, 34.63645256886973], [-77.31959593240988, 34.63637486767878], [-77.3196286958362, 34.636363728509494], [-77.31963341929197, 34.63636213728716], [-77.31963962547992, 34.636360178187196], [-77.31993445659259, 34.63626710936879], [-77.3201626561933, 34.636195073320735], [-77.32032959739331, 34.63614237438337], [-77.32057766948938, 34.6362820535884], [-77.32098239124448, 34.63629334750781], [-77.32117760862953, 34.636081365328835], [-77.32148836211772, 34.63614443456821], [-77.32184006872878, 34.636192220510154], [-77.32221033011146, 34.636438423206485], [-77.32242685653975, 34.63658240007584], [-77.32256176283173, 34.636598185970385], [-77.32277604738144, 34.63663389270714], [-77.32296484234706, 34.63666535206216], [-77.32320449358033, 34.636610704599285], [-77.32350100196422, 34.63675191749056], [-77.32355979667089, 34.63678604445951], [-77.32381226909231, 34.636934343059224], [-77.32392185693764, 34.63699503787211], [-77.32394853616461, 34.63701387781722], [-77.3240031613409, 34.63703657238651], [-77.3244150823713, 34.63723821498981], [-77.32462004480288, 34.637283806674674], [-77.3246711140885, 34.63730534399246], [-77.3249098107832, 34.637292049183344], [-77.32494199363487, 34.63729295555825], [-77.32497098618236, 34.63728570795399], [-77.32517877220768, 34.63720956361519], [-77.3252348065007, 34.63715696196306], [-77.3253930302622, 34.637075986675725], [-77.32567092470309, 34.63680786909263], [-77.32573057892267, 34.63672387479228], [-77.32577443742635, 34.63665587054788], [-77.32598757455156, 34.63642142737956], [-77.32631546050376, 34.636161743770145], [-77.32664084405563, 34.63623929229175], [-77.32665732222527, 34.63624358342637], [-77.32694615026098, 34.63611428588162], [-77.32723640261102, 34.63624518132464], [-77.32728868201885, 34.63622597625825], [-77.32732900428849, 34.636214636437366], [-77.3275283623547, 34.63613113688541], [-77.32757599323328, 34.636111630897666], [-77.32758351940527, 34.63610010072132], [-77.32772716620953, 34.63591913896272], [-77.3278530188835, 34.635848025390146], [-77.32807093946808, 34.63563472727561], [-77.32810301431365, 34.63560280418845], [-77.32811931905682, 34.63558002347014], [-77.3283524148602, 34.6351741285299], [-77.32835108179964, 34.63516713231207], [-77.32833273665527, 34.634754836095574], [-77.32854436963804, 34.63450837172938], [-77.32869722601508, 34.63450151509479], [-77.32912175833577, 34.634552196409146], [-77.32919479885216, 34.63455928875955], [-77.32925022820324, 34.63455469861816], [-77.32979718322092, 34.634515648280995], [-77.32982385007395, 34.634503728819354], [-77.32989432450445, 34.634540632698034], [-77.32990899338623, 34.63462006895098], [-77.3301357523618, 34.635097490431406], [-77.33019713670964, 34.63534307761592], [-77.33032974362187, 34.63542899092066], [-77.33047647634129, 34.63548370875242], [-77.33050306994286, 34.635495089713544], [-77.33051338458652, 34.63549781456484], [-77.33067141094538, 34.63553635928409], [-77.33099134919593, 34.635630874543], [-77.33101109193261, 34.63563383140846], [-77.33102494979423, 34.63563302739953], [-77.33104970273662, 34.63564811310652], [-77.33134730851839, 34.63571404618287], [-77.33145270603703, 34.63572805971525], [-77.33151185197703, 34.635736400800944], [-77.33155166208307, 34.63573825742199], [-77.33167450830382, 34.63574935677257], [-77.33181296228447, 34.635730828013365], [-77.33198353509444, 34.635694172139644], [-77.3321745392712, 34.63565312505506], [-77.33229397681968, 34.63564603461334], [-77.33243342681115, 34.63564293274194], [-77.33260517532958, 34.63560166663213], [-77.33270891172074, 34.63556653625404], [-77.33275334538723, 34.635542491046394], [-77.3328601275285, 34.635443846003554], [-77.33288835218328, 34.63541777218454], [-77.33289822735554, 34.63540967066523], [-77.33293737751703, 34.635290922532754], [-77.3328076683824, 34.63501602086918], [-77.33280001192435, 34.63498890349306], [-77.33279421732006, 34.634986784474386], [-77.332554499683, 34.63490097070778], [-77.33245751157075, 34.63486638499672], [-77.33219023556065, 34.634748508480826], [-77.33210629960531, 34.63471149035759], [-77.332076903497, 34.63469852579274], [-77.33192147284949, 34.63449751888552], [-77.33175719764901, 34.63428507421492], [-77.33172560856373, 34.634246064599694], [-77.3316706462388, 34.63359595352521], [-77.33177893357015, 34.63343810616048], [-77.33189853447101, 34.63314145127717], [-77.33208257892798, 34.632999366607294], [-77.33223112249584, 34.63278473218668], [-77.33242431917454, 34.632505574725634], [-77.33244146375247, 34.632313847312815], [-77.33306409726049, 34.63157380804238], [-77.33306151673932, 34.631558276964334], [-77.33310297865862, 34.63151940447911], [-77.33415004194106, 34.630543014031744], [-77.3350382792446, 34.6313029174718], [-77.33492322962078, 34.63250749314782], [-77.33487514596646, 34.633013281644025], [-77.33483904323086, 34.63321824091595], [-77.33477880680337, 34.63367369209637], [-77.33475229757072, 34.63387412848748], [-77.33479704376924, 34.63390526146205], [-77.3347334501802, 34.63445423563862], [-77.33463494153008, 34.63455115784063], [-77.33444920836993, 34.634759706099395], [-77.33441105414605, 34.63482047607688], [-77.33458505344417, 34.63547288097654], [-77.334827923041, 34.63551196841322], [-77.33484821510366, 34.63552587621784], [-77.33493805182798, 34.6355366170925], [-77.33512311645516, 34.63555562986121], [-77.33515765758345, 34.63555988860956], [-77.33521624529456, 34.63557237264581], [-77.33567941579403, 34.63560227417793], [-77.3358909720674, 34.6360233489462], [-77.33609233084206, 34.63593278382753], [-77.33603108919844, 34.63623061687918], [-77.33605361894348, 34.63635430066272], [-77.3360551659541, 34.63664930787282], [-77.33626716304167, 34.6367346445659], [-77.33671577699353, 34.63698064785105], [-77.33672107581398, 34.636984002505535], [-77.33672477988519, 34.63698702755072], [-77.33675862546609, 34.63701261002124], [-77.33710296201303, 34.63727607526283], [-77.33714064257863, 34.63730136101817], [-77.33721924942031, 34.63733354974913], [-77.33745054847557, 34.63741281157991], [-77.33766899036502, 34.63740335880807], [-77.33789373184914, 34.63740522509191], [-77.33807638518154, 34.637341139517275], [-77.33829266196852, 34.63731662928075], [-77.33847774789376, 34.63758282788628], [-77.33866265511895, 34.63773214730466], [-77.33882557480398, 34.63788344279863], [-77.33885843880529, 34.637918551296615], [-77.33898941829402, 34.63793459871982], [-77.33912543417162, 34.63796396579523], [-77.3391584213312, 34.637946785386504], [-77.33916866082045, 34.63792837257138], [-77.33920403010232, 34.63790514316207], [-77.33927354582167, 34.63785948751023], [-77.33929758372956, 34.63784277431767], [-77.33937735226047, 34.63778959535684], [-77.33943617301927, 34.63773591192377], [-77.33956573007416, 34.63763185145437], [-77.33992156392208, 34.6373846612376], [-77.33995762493576, 34.63733050141176], [-77.33999442238107, 34.637327852028356], [-77.34004250596801, 34.637296323358036], [-77.34028048900424, 34.637158380378004], [-77.34039774702856, 34.63707418120518], [-77.34055951566296, 34.63695387783718], [-77.34066906288736, 34.636860061255874], [-77.34078325702033, 34.636766872655556], [-77.34083282007572, 34.63672090295563], [-77.34100634676875, 34.636536042048334], [-77.34109751167561, 34.6364450719534], [-77.3411223543448, 34.63641623067943], [-77.34116115616872, 34.63637051537391], [-77.34141416048172, 34.6360214356223], [-77.34150048848377, 34.63590193719445], [-77.34159047790513, 34.63571220087915], [-77.34165483332383, 34.63557890065386], [-77.34172757358735, 34.63544876624016], [-77.34184711172611, 34.63509118277094], [-77.34187008045566, 34.63500720584165], [-77.34186821597675, 34.634829495566436], [-77.34179572940624, 34.634709586040984], [-77.34171745924057, 34.63460615952034], [-77.34167784118083, 34.63455390103], [-77.34150492430322, 34.63440071556796], [-77.34122661887241, 34.63390136776762], [-77.34119708956098, 34.63386213396079], [-77.34117058896445, 34.63383723576416], [-77.34095877963313, 34.63359449864303], [-77.34058392713926, 34.633073772491784], [-77.34089004037705, 34.63222622120543], [-77.34089396868065, 34.632199480450325], [-77.34089737303889, 34.63218675117015], [-77.34089310452765, 34.6321678310269], [-77.34087611042892, 34.632156890572105], [-77.34067753284657, 34.631794931634815], [-77.3405455245348, 34.631707971133025], [-77.34032977318947, 34.63142067110144], [-77.34020800245975, 34.63122820264974], [-77.34002098607684, 34.63108711296434], [-77.33999005438496, 34.63108571541153], [-77.33980121568888, 34.63117912044204], [-77.33972696407754, 34.63121688711288], [-77.33960786235879, 34.63126843971905], [-77.33943349173887, 34.63134940151423], [-77.33930304520449, 34.631381206419206], [-77.3389553609596, 34.63141234808079], [-77.33878631120965, 34.63131459925508], [-77.3382514571312, 34.6308619482722], [-77.33825111468144, 34.630510666922035], [-77.33823943944736, 34.63001960538719], [-77.33777819101387, 34.62948298334014], [-77.33761772879268, 34.62946871293543], [-77.33724201891201, 34.62931250737612], [-77.33663924324317, 34.62911006353505], [-77.33638728907525, 34.62893255674606], [-77.33573784119997, 34.628598807456704], [-77.33497824565879, 34.62800983444405], [-77.33540691102918, 34.629254004522195], [-77.33530059776177, 34.629578943402336], [-77.33529843634443, 34.62964345504224], [-77.33528111150133, 34.62979970909899], [-77.33510480700843, 34.629605810827414], [-77.33489056409054, 34.627980405152904], [-77.3348607980015, 34.62790014977457], [-77.3340342655694, 34.62637675893333], [-77.33354644401854, 34.626049859190054], [-77.33320179682568, 34.62368148985375], [-77.33367628806468, 34.62304992903185], [-77.3338886518973, 34.62286596226011], [-77.33456200000788, 34.62228264265831], [-77.33499640317753, 34.62200700089287], [-77.33545252143298, 34.62227599700483], [-77.33637819034172, 34.62251271444661], [-77.33656415271423, 34.62265361353973], [-77.33731073441407, 34.623188543311], [-77.33757686732297, 34.62335860906284], [-77.33775902866105, 34.623448881634964], [-77.33785612405856, 34.623496997939164], [-77.33820767017957, 34.62370853504841], [-77.33822122967528, 34.62372124452043], [-77.33855782860056, 34.624067956298695], [-77.33857814688548, 34.6241229687352], [-77.33869332708946, 34.62480640930417], [-77.33865368542034, 34.6248987914643], [-77.33853927786127, 34.62532982278267], [-77.33854284059217, 34.62534091133409], [-77.3389191026278, 34.625706352768816], [-77.33894317579933, 34.62572195062893], [-77.3389626701885, 34.62572521111779], [-77.33927125212172, 34.62576179242627], [-77.33951347288289, 34.62571502182764], [-77.33958194631637, 34.62571510328904], [-77.33966841112199, 34.625716994918704], [-77.34017116782641, 34.62556073869793], [-77.34018839732884, 34.62554737462041], [-77.34019396068965, 34.62554050791841], [-77.34020530687398, 34.62552979664372], [-77.3405556823208, 34.62521103322736], [-77.34070538334342, 34.6249343229057], [-77.34093989260201, 34.62458495878971], [-77.34097467499394, 34.62426778380411], [-77.34117511881783, 34.62408611218086], [-77.3413284015825, 34.62368762730522], [-77.34139234958843, 34.62332331222718], [-77.3415704267619, 34.62286746762946], [-77.34173522457375, 34.62230899690857], [-77.34220694386569, 34.62187901802294], [-77.34234919808873, 34.62154784857879], [-77.34251734947036, 34.62120835574045], [-77.34363668005864, 34.6216827075699], [-77.34478293450738, 34.622168461073485], [-77.34531612855935, 34.622394404395365], [-77.34664517813874, 34.62295758544291], [-77.34669219603879, 34.62297993731902], [-77.34671978448637, 34.62300849073866], [-77.3467913241836, 34.62302694773789], [-77.3476340816758, 34.62341092755253], [-77.3480251377999, 34.6236120669969], [-77.3478254137305, 34.62399250012204], [-77.3477718903213, 34.624490850342156], [-77.34788768282993, 34.62471784546315], [-77.34804400099017, 34.62489558181052], [-77.34808150192558, 34.62489881376309], [-77.34839583747782, 34.62497775798375], [-77.34859783507, 34.624946918339994], [-77.34886145682889, 34.62495984717914], [-77.34899334054643, 34.6247655933611], [-77.34925256503554, 34.62479840678398], [-77.34964370596796, 34.624816435735326], [-77.34997036918627, 34.624660820679395], [-77.35022828015205, 34.62453997065755], [-77.35065923156799, 34.6243088161495], [-77.3508061813717, 34.624230326286195], [-77.35086655714704, 34.624163186199155], [-77.35090547040501, 34.62406044323339], [-77.35129706026471, 34.62348780336599], [-77.35140825829728, 34.62333458928871], [-77.35174355803355, 34.622524541711456], [-77.35185714168082, 34.62241934138938], [-77.35187439721904, 34.62223814598432], [-77.35201764003281, 34.621866323296985], [-77.35222982423085, 34.62106805886655], [-77.35261378135395, 34.621139021849636], [-77.35279535633057, 34.6212565775147], [-77.35307401611166, 34.621426103792174], [-77.35326860630227, 34.62151179184281], [-77.35357147853715, 34.621667767370596], [-77.35387833229267, 34.62175756726326], [-77.35405690182138, 34.62178618700418], [-77.3545951548406, 34.62157720548204], [-77.35484561458448, 34.62129526431116], [-77.35542137046124, 34.62064938682107], [-77.35563458286884, 34.620303590999825], [-77.35573217978815, 34.62008997668276], [-77.35580432641657, 34.619974611783306], [-77.35604963004997, 34.61953676632477], [-77.35642354264235, 34.61929324363981], [-77.35656811136536, 34.61917124690304], [-77.3571051591506, 34.618938348815696], [-77.357182573194, 34.61889533553271], [-77.35721217531108, 34.618884851449295], [-77.35728283882102, 34.61883670734395], [-77.35769122730018, 34.61852064346763], [-77.35777554583541, 34.618417337341626], [-77.35800096266914, 34.61815326393327], [-77.35809265418933, 34.61804584784076], [-77.35839524886568, 34.617992685395144], [-77.3586087161911, 34.61806750770951], [-77.35878940211596, 34.61809819732099], [-77.35893320655343, 34.61809588123969], [-77.35902860403432, 34.6180700758373], [-77.35918364211396, 34.61802813715564], [-77.35935221100978, 34.61797818275013], [-77.35937531457438, 34.617968978777256], [-77.35935135541285, 34.617766029654774], [-77.3593057095431, 34.61764133698719], [-77.35924470085757, 34.61756910182139], [-77.35918388573968, 34.617530060194724], [-77.35909417899259, 34.61747512843201], [-77.35889760902063, 34.617406773312496], [-77.3587897670296, 34.617359340294136], [-77.35854193962464, 34.617300340920096], [-77.35814088651303, 34.617091112745], [-77.35806569330805, 34.61703282573051], [-77.3580015558585, 34.61697508558639], [-77.35775674905828, 34.61672183675091], [-77.35768564016908, 34.616647934978786], [-77.35740097453771, 34.61634847816842], [-77.35731898457993, 34.61624669923444], [-77.35721359582718, 34.61611587223891], [-77.35688765685481, 34.61592438061024], [-77.35668264654875, 34.61587987064861], [-77.35642534810532, 34.615837229476654], [-77.355814812195, 34.6157276002195], [-77.3558039565115, 34.61554946565514], [-77.35593750132283, 34.61486084527047], [-77.35571226420807, 34.613964109364446], [-77.3554047404503, 34.61323928989667], [-77.35550659633739, 34.61223305580888], [-77.35642756428952, 34.6116169306671], [-77.35649962907891, 34.61146109052498], [-77.35721594356603, 34.61156215485093], [-77.3575715102014, 34.61161231962347], [-77.35763252680931, 34.611620928063985], [-77.35800419762833, 34.61175150413092], [-77.3581936415302, 34.611988902072824], [-77.3584218800457, 34.61235496526424], [-77.35879205154656, 34.61275139536832], [-77.35879224131084, 34.612751660397706], [-77.35879247371082, 34.612751831481646], [-77.35919326291994, 34.61311094330499], [-77.35925542865515, 34.6131845177822], [-77.35948769081409, 34.61350088739373], [-77.35952700407645, 34.613552331883064], [-77.35957999636454, 34.61360457092033], [-77.3598261741115, 34.61403591132591], [-77.36008161951129, 34.61426451753519], [-77.36028349432397, 34.614326501469364], [-77.36036802181276, 34.61432298729616], [-77.36046695286412, 34.61431560973719], [-77.36076220896851, 34.61432389738107], [-77.36103319160786, 34.61426029531061], [-77.36115643035166, 34.61425150592299], [-77.36127827108245, 34.61422350721251], [-77.36155066692751, 34.614144678429], [-77.36188995010943, 34.61406342964382], [-77.36194488451211, 34.614076937627736], [-77.36200646951819, 34.61405380380448], [-77.36222270027335, 34.6139563631515], [-77.36231507005988, 34.613917140328496], [-77.36230310827237, 34.613559222150904], [-77.36229805954434, 34.61352096264456], [-77.36230871287883, 34.61348644367022], [-77.36233938421391, 34.61338637172311], [-77.36239868031032, 34.61314567294504], [-77.36241658592192, 34.61307934855004], [-77.36246107207909, 34.61294209832828], [-77.3625024823117, 34.61281781835835], [-77.36260997491661, 34.61262695857141], [-77.36273401320953, 34.61239471241913], [-77.36281069290526, 34.612256034808986], [-77.36285695713858, 34.61216685380632], [-77.36304740025055, 34.61180218832814], [-77.36309659485634, 34.61170780553836], [-77.36309696038066, 34.611673768771155], [-77.3631684944979, 34.611272901066556], [-77.36322241046685, 34.610941369508225], [-77.36329596716222, 34.61065012681107], [-77.3630879848609, 34.61043538152114], [-77.36331304464602, 34.610176468132124], [-77.36352342179558, 34.61001163226954], [-77.36374374160681, 34.60972904710578], [-77.36397585949155, 34.609458462760955], [-77.36415031800304, 34.609259112990664], [-77.3643120979381, 34.60921984883364], [-77.36460607559138, 34.60894318399107], [-77.36466604619544, 34.60889108332356], [-77.36470642888926, 34.608827616987725], [-77.36492601831277, 34.608472569112905], [-77.36500505160782, 34.608358070678], [-77.36510084139377, 34.60823476601616], [-77.365392263903, 34.607980890182276], [-77.3654457971809, 34.607920043875154], [-77.36549516671737, 34.607836294984914], [-77.36571565893777, 34.60750977532891], [-77.36573070290773, 34.60733653113733], [-77.36588961792226, 34.60712630685023], [-77.36609641793092, 34.60703040026444], [-77.36611365466564, 34.606844554846376], [-77.36633374087154, 34.606942487430565], [-77.36667809679358, 34.60669866619581], [-77.36678040607208, 34.60661753043435], [-77.36707231077203, 34.60654027362169], [-77.36737476757904, 34.60642178559462], [-77.36745045847464, 34.60639358804008], [-77.36746652537705, 34.60637646069187], [-77.36750667313973, 34.60635955476246], [-77.3679970540279, 34.60605439123783], [-77.36825501309994, 34.605885884057074], [-77.36831889236547, 34.60586128288819], [-77.36858994661756, 34.60575841777086], [-77.36864921818409, 34.60573237764997], [-77.36874270585551, 34.60569956666738], [-77.3690434185619, 34.60558728269919], [-77.36923199035319, 34.605508329830506], [-77.36924052260463, 34.60550304465886], [-77.36930604020961, 34.6054363085511], [-77.36943766995313, 34.605302230807546], [-77.36946934227561, 34.605271059573056], [-77.36965877490042, 34.60505729020346], [-77.36983193849163, 34.60496361563307], [-77.37008283390813, 34.60475815317212], [-77.37017082750921, 34.60468585502885], [-77.37022622831583, 34.604558064008515], [-77.37037259419176, 34.604291865620965], [-77.3702601483469, 34.603919787679864], [-77.37028318850432, 34.60388018325462], [-77.37024923540736, 34.60386056512196], [-77.37012421329491, 34.603792886438285], [-77.3698324312109, 34.60363515296874], [-77.3697797946279, 34.60358484002666], [-77.36945462306707, 34.60359251841731], [-77.36943823438213, 34.60379891700728], [-77.36942008642451, 34.603985006224256], [-77.36942041083783, 34.604004432886335], [-77.3694135034109, 34.60403197283156], [-77.36943812555077, 34.60408844044164], [-77.3695083364837, 34.60441632860477], [-77.36947797405807, 34.60446377681145], [-77.36943797631616, 34.604485719064655], [-77.36919505959213, 34.60462439194041], [-77.3690437523083, 34.60470843797668], [-77.36872108969592, 34.6048771886278], [-77.36864953221989, 34.604915335116715], [-77.36861556491735, 34.60493286700628], [-77.3685346593492, 34.60498109864745], [-77.3682552786727, 34.60520309801255], [-77.36810861648041, 34.60530906932931], [-77.36786107457031, 34.6053583003968], [-77.36762826556796, 34.60536238525252], [-77.36746692803055, 34.60536521605361], [-77.3671819850839, 34.60529346971361], [-77.36707281033965, 34.6053002297036], [-77.36699138486851, 34.60529103020402], [-77.36672323887137, 34.60524192673512], [-77.36667869578505, 34.60522886981384], [-77.36660632928961, 34.605258759641465], [-77.36636381217627, 34.6053791194616], [-77.36593284061243, 34.60578028378278], [-77.36589008447456, 34.606006487036026], [-77.36549936434388, 34.60627105813245], [-77.36510165122455, 34.6063318573304], [-77.36490322456288, 34.60614233817569], [-77.36431332381966, 34.606399506128255], [-77.36405693067327, 34.60662339738666], [-77.36385207164183, 34.60657659467084], [-77.36378338918243, 34.60636801210744], [-77.36395954816282, 34.60606437261362], [-77.36409949539173, 34.605425897634994], [-77.36419369191974, 34.60518155537282], [-77.36413587715398, 34.60499808078206], [-77.36379428821883, 34.60438994418956], [-77.36400121128734, 34.604022839255435], [-77.36404492449579, 34.6039293080438], [-77.36431454318343, 34.60360667706393], [-77.3643855600146, 34.60353217645685], [-77.36451130306374, 34.603437610784766], [-77.36488156355199, 34.60314576307145], [-77.36510310265369, 34.60293594303475], [-77.36511230654786, 34.60292652980836], [-77.36510311811509, 34.602899878228015], [-77.3650003897403, 34.602628870039844], [-77.36497210199599, 34.602522159529805], [-77.36493110982939, 34.60234251584875], [-77.3646715460573, 34.60171631984749], [-77.3645379094804, 34.60149594250769], [-77.36431598629409, 34.60031794924082], [-77.36425345320231, 34.60014573394302], [-77.36425911692987, 34.60001607156967], [-77.3643161637727, 34.59991455954056], [-77.36488533408101, 34.59890174877305], [-77.3652599239616, 34.59823516267271], [-77.36551153848643, 34.59778742190179], [-77.365893824258, 34.597107122560416], [-77.36726245186526, 34.596472717543506], [-77.36747052832058, 34.59640271604722], [-77.36805053735327, 34.59676008824951], [-77.3676869665741, 34.59618746661645], [-77.36761935387723, 34.59603703444742], [-77.36780965940812, 34.59483623072197], [-77.36767382631183, 34.59449113169654], [-77.36767884051784, 34.59426692479796], [-77.36747190027745, 34.59302408590284], [-77.36743976606657, 34.59286129990001], [-77.36739944061515, 34.59283241671433], [-77.3672857984192, 34.59264812304212], [-77.36694935643783, 34.59204811641925], [-77.36711420529387, 34.59163841080194], [-77.36711531554779, 34.59159966174844], [-77.36712149298077, 34.59155236970776], [-77.3670784245919, 34.59154547625087], [-77.36703566754812, 34.59156507598518], [-77.36668425549473, 34.5917622177527], [-77.36645866634828, 34.59187579019851], [-77.36589606882436, 34.591826139548786], [-77.3652109521046, 34.59218725319367], [-77.36510772115865, 34.592254827771846], [-77.3650719635336, 34.59227993793231], [-77.36494378437564, 34.59233690435133], [-77.36431940550911, 34.592593505974435], [-77.36408987480313, 34.59245985046269], [-77.36387686044245, 34.59211840036509], [-77.3638852936048, 34.591640194991385], [-77.36353193520627, 34.59106075952256], [-77.36347279535104, 34.59091426039015], [-77.36334300192829, 34.59086916130735], [-77.36293012005608, 34.59072801963288], [-77.36274401917672, 34.59054939633186], [-77.36238357570043, 34.590619001995115], [-77.3622954004056, 34.59065413754677], [-77.36195579660023, 34.59070289735321], [-77.36177443337493, 34.59067042755728], [-77.36160948416351, 34.590642747233424], [-77.36163372823057, 34.59034352032839], [-77.36189081727673, 34.59022911898456], [-77.36194635872593, 34.59021070333162], [-77.36195603089352, 34.59020990718705], [-77.36196478677275, 34.59020903758071], [-77.3623501734848, 34.590062578720435], [-77.36259080413086, 34.58996298476343], [-77.3627443220168, 34.5898994453103], [-77.36300050703835, 34.589793412004624], [-77.36313846887933, 34.58973631069956], [-77.3632211416977, 34.589702092764014], [-77.36335260746367, 34.589594114269325], [-77.36353267961921, 34.58942998619388], [-77.36368270129057, 34.58928358923021], [-77.36379540021312, 34.58910580727921], [-77.36371867619437, 34.588916719691696], [-77.36363264311832, 34.58870468615316], [-77.36362559824147, 34.58860599846647], [-77.36367737014288, 34.58842908406532], [-77.36375807700223, 34.588262071333446], [-77.3639273620048, 34.58807593244822], [-77.36408688956502, 34.58796198991615], [-77.3641947474349, 34.587911203262124], [-77.36432151479569, 34.58787524871421], [-77.36466069555938, 34.587766733651], [-77.36476911827307, 34.5877495673646], [-77.36510980291982, 34.58750043120034], [-77.3653870657512, 34.58747711653269], [-77.3656858109644, 34.58736397945141], [-77.3658980273337, 34.58725652536389], [-77.3659692371247, 34.58717125827006], [-77.36606702731186, 34.58708049485358], [-77.36636741672378, 34.586693585443136], [-77.36668653199905, 34.586335867382736], [-77.36693582691123, 34.586106270716286], [-77.36722490826135, 34.58579533548862], [-77.36742640000682, 34.58523897114608], [-77.36740791007948, 34.58518917200622], [-77.36721823750989, 34.584644378317165], [-77.36675782904835, 34.58443367494912], [-77.36612798126212, 34.584278001293924], [-77.36589927749701, 34.58435784328918], [-77.365412666796, 34.58410297381409], [-77.36511129210001, 34.58412150379228], [-77.36486351640852, 34.58443965099768], [-77.36459431429479, 34.58474522287929], [-77.36445869347193, 34.58491111306109], [-77.36432284740013, 34.58491240564025], [-77.36424375681412, 34.58488092788332], [-77.36417793975961, 34.584805176331855], [-77.36387343210482, 34.584484330378935], [-77.3637305478969, 34.58423110209705], [-77.36364361643129, 34.58403300080287], [-77.36384283370252, 34.583672992678544], [-77.36390278810367, 34.58354242999839], [-77.36397540423047, 34.58351114775044], [-77.36432355741209, 34.58333934101642], [-77.36454876024231, 34.583296182111354], [-77.36459834118779, 34.58304642068234], [-77.36488488142109, 34.58276056577742], [-77.36485169535638, 34.58244133228729], [-77.36472268728774, 34.582179404925085], [-77.36471812018445, 34.58217204725433], [-77.36450080619693, 34.5820210179097], [-77.36432440471901, 34.58146719726059], [-77.36425571380336, 34.581471543770334], [-77.3635361769841, 34.5818231336498], [-77.36298598506403, 34.58158035792041], [-77.3629011695045, 34.58142785332895], [-77.36274832136397, 34.581375751150226], [-77.36249688814846, 34.58080166839977], [-77.3626804987777, 34.57999990094476], [-77.36260835556102, 34.57993651048003], [-77.36196109098222, 34.579649557245475], [-77.36154409974179, 34.57968990613404], [-77.36152061371553, 34.579244009780474], [-77.36151397503087, 34.57887802419988], [-77.36142029859825, 34.57867524305148], [-77.36126651650264, 34.57843148489316], [-77.3611967563898, 34.578416632768345], [-77.36117365762121, 34.57840440425325], [-77.36114235904549, 34.57841564135461], [-77.36092770921334, 34.57848026212126], [-77.36038549735392, 34.578652864012525], [-77.35991524415249, 34.578968602094264], [-77.35959692649385, 34.5796948016191], [-77.35924364112157, 34.580040444845515], [-77.35880862874362, 34.580173879368395], [-77.35830912323266, 34.58024448860736], [-77.35802054916712, 34.580223954174535], [-77.35753086772107, 34.58013978748539], [-77.35704775816598, 34.58008701338062], [-77.35659424033022, 34.57926489663221], [-77.35649230409817, 34.57911873117698], [-77.35646854312648, 34.57909684811091], [-77.35644512239081, 34.57898321928182], [-77.35629892295457, 34.578455301961746], [-77.35628919219131, 34.57829886203626], [-77.35605164975908, 34.577993747976365], [-77.3559893066553, 34.5779846520683], [-77.35565779350226, 34.57770711038327], [-77.35540803657389, 34.57757657979755], [-77.35507155119123, 34.577407761053436], [-77.35486991973528, 34.57743102376975], [-77.35414486572805, 34.57697684238322], [-77.35405122057762, 34.57695609091081], [-77.35403009984121, 34.576925786848555], [-77.35344539356825, 34.576847024730654], [-77.35329421780034, 34.576826660330454], [-77.35264878048457, 34.57697083386006], [-77.35250622306737, 34.576778480527395], [-77.3521830921744, 34.57634247792557], [-77.35250677564136, 34.57585535744697], [-77.35260346161422, 34.57553686459779], [-77.35290096146765, 34.575554769318174], [-77.35310371501825, 34.57556697120498], [-77.35329487765392, 34.57570673209604], [-77.35353840861859, 34.5755606627568], [-77.35368898014116, 34.57554234029336], [-77.35396837523564, 34.575360078161914], [-77.35408311876806, 34.57531300245896], [-77.35414429599473, 34.57527704920186], [-77.35422357066902, 34.5751997426809], [-77.35426354042946, 34.57499977448133], [-77.3540832591416, 34.57507120097249], [-77.35385195988093, 34.57465361597215], [-77.35336466004517, 34.57454870660547], [-77.35329557058336, 34.574532142724955], [-77.3532560829792, 34.574532423979974], [-77.35301961880707, 34.57452390329027], [-77.3525818292981, 34.57450690081907], [-77.35250762652323, 34.57443578356888], [-77.35195118762678, 34.57442813791664], [-77.3517198270172, 34.574105013894204], [-77.35113941467371, 34.574169085501026], [-77.3509317818047, 34.574180222348794], [-77.35073276602608, 34.5742182933691], [-77.35014360728914, 34.57445880657614], [-77.34967656275278, 34.574501712426326], [-77.34935559779842, 34.57446987172056], [-77.34916949398512, 34.57442935772197], [-77.34880272228864, 34.57428156601229], [-77.34856773125249, 34.57425922109102], [-77.34846766167325, 34.57422191684263], [-77.34841010420621, 34.57433805175397], [-77.34836591084434, 34.57456166481241], [-77.34829137751018, 34.574906901170124], [-77.34836788495105, 34.57519321984728], [-77.34841095123771, 34.57535519278632], [-77.34842605877664, 34.57588242289877], [-77.34834580113863, 34.576045491348054], [-77.34820218560118, 34.57652294624192], [-77.34777815658205, 34.57665840826873], [-77.34727220036551, 34.57704903213275], [-77.34719957872815, 34.57728560263419], [-77.3470223227174, 34.57793407117948], [-77.34698925329347, 34.577982332560836], [-77.34662499843523, 34.57799122524438], [-77.34622696569727, 34.57802070871601], [-77.34620119364229, 34.57801607835397], [-77.34616643068334, 34.57801973462585], [-77.34541319677675, 34.57795677478531], [-77.34495699905867, 34.5778736599749], [-77.34462540879123, 34.57759622540411], [-77.3441612587726, 34.5774965109048], [-77.34396666559243, 34.577385348127194], [-77.34421334511674, 34.57619488457652], [-77.34462655922022, 34.57593557051649], [-77.34476614709897, 34.57586168002839], [-77.34502073856635, 34.57568836910718], [-77.34503481223118, 34.57568784995338], [-77.34502749566973, 34.575673738310094], [-77.34502075104653, 34.57567024807471], [-77.3446854723868, 34.57565965971823], [-77.34462676579862, 34.57563763295608], [-77.34404563061128, 34.575592079472855], [-77.34383898974349, 34.575296834547785], [-77.34353130793154, 34.57503984500883], [-77.34324777329046, 34.574868901918975], [-77.34314211462487, 34.574671275953264], [-77.34305145451036, 34.574626884329696], [-77.34279106968037, 34.574577824693165], [-77.3424388640885, 34.57453681558507], [-77.34226335253332, 34.57475873389029], [-77.34211976008582, 34.574548650104845], [-77.3416383855917, 34.57463857539579], [-77.3414752928197, 34.57482895395389], [-77.34116071453795, 34.57504197686325], [-77.34068691414377, 34.575327310095005], [-77.3405570789591, 34.575327677075066], [-77.34033105901904, 34.57550007539058], [-77.34006287338264, 34.57571563316297], [-77.33979624010428, 34.575687302998105], [-77.33911049131783, 34.57584584631951], [-77.33900144146178, 34.575808793437275], [-77.33845504804925, 34.57591273042469], [-77.33832235026611, 34.57600353726187], [-77.3379681588952, 34.576221282120045], [-77.33753396040925, 34.57647679390218], [-77.33723437513174, 34.57647160756592], [-77.33709458068368, 34.5768145086869], [-77.33674550798618, 34.577017958149035], [-77.33645770212267, 34.57721600369711], [-77.33635127386611, 34.57729361123679], [-77.33631632023747, 34.577313291769734], [-77.33595717536033, 34.57739573977076], [-77.3355887502474, 34.57748318089325], [-77.33553347682235, 34.57749536975257], [-77.33516899325349, 34.5775775046869], [-77.33485863838831, 34.577650691188424], [-77.3343807791976, 34.57779411887522], [-77.33386256252825, 34.57783743974558], [-77.33359266156876, 34.577888036242406], [-77.33336745603482, 34.57795678134507], [-77.33303963629645, 34.57799317416312], [-77.33280451088392, 34.57801927622918], [-77.33251668605874, 34.578011526802605], [-77.33233200933894, 34.57800822373433], [-77.33201677870848, 34.5776509157458], [-77.3318210410203, 34.57778333276629], [-77.331895255163, 34.57756188932888], [-77.33197386139202, 34.57750421684485], [-77.33201692672748, 34.577475395453234], [-77.33214408051279, 34.57738920187102], [-77.33241117336485, 34.5772038360162], [-77.33250114550958, 34.57714715881512], [-77.33273181957742, 34.57709626517332], [-77.33280529411996, 34.577080054449304], [-77.33286894788924, 34.5770659760271], [-77.3331578031295, 34.57700068007161], [-77.33319938516156, 34.57699060244055], [-77.33323399216025, 34.57698221517225], [-77.33359348963428, 34.57688383159338], [-77.33399107212108, 34.576839915387005], [-77.33420191978155, 34.57638126539343], [-77.33418833633525, 34.57574329247417], [-77.33419172430412, 34.57553365136587], [-77.33407215684662, 34.57521603514247], [-77.3340487429523, 34.57512966483956], [-77.33402961629368, 34.575088627486835], [-77.33387724540633, 34.574729776363384], [-77.33398406950812, 34.574295873705736], [-77.3339715742855, 34.57429167806623], [-77.33398629645104, 34.57428596081673], [-77.33399355456116, 34.57428430037375], [-77.33438372533729, 34.57418391623948], [-77.33465696305456, 34.57406292339094], [-77.33509463451064, 34.573789113762224], [-77.3351720770666, 34.57375553921998], [-77.33521481616815, 34.57373445485493], [-77.3352527750231, 34.57368296447656], [-77.33559502019116, 34.57323996097868], [-77.3359606883566, 34.5729921436123], [-77.33609369060082, 34.572856188712095], [-77.33651214192169, 34.572907782735214], [-77.33674868448671, 34.572989161242894], [-77.33705770683991, 34.57309041455715], [-77.33736411396617, 34.57319365688675], [-77.33753648131434, 34.573241059955095], [-77.33763282429365, 34.57323698450317], [-77.33773345020502, 34.57327963514035], [-77.3378327718764, 34.573206734372164], [-77.33793055000012, 34.57314964777739], [-77.33810746019397, 34.57303854048374], [-77.33832470256777, 34.572948214500435], [-77.33864022517139, 34.57277140542445], [-77.33868582557189, 34.57272924587896], [-77.33866119815474, 34.57234384705602], [-77.33870369661025, 34.57193020105264], [-77.33870795221377, 34.57191258283727], [-77.33861129148573, 34.57180980451517], [-77.33835283959388, 34.57153910106948], [-77.33833991629363, 34.57152574819981], [-77.3383258155138, 34.5715055672962], [-77.33806912267231, 34.57115535300742], [-77.33802811573356, 34.57105786623212], [-77.3378497620201, 34.5707623509112], [-77.33773786027373, 34.57056369625418], [-77.33753866717777, 34.570442958169295], [-77.33732295092409, 34.570221646394124], [-77.33702907581441, 34.570031265132364], [-77.3368691327336, 34.56992707970885], [-77.33675121988516, 34.56978359146188], [-77.33641866947204, 34.56962842119663], [-77.33605582078926, 34.569421541961276], [-77.33596358704105, 34.56937109584519], [-77.33591503880939, 34.5693946438592], [-77.33534875730086, 34.56961052966565], [-77.33517534948913, 34.569713508221504], [-77.33482055796884, 34.56988185806538], [-77.3347812137887, 34.569902298629096], [-77.33476012595419, 34.569910207107974], [-77.33438708744241, 34.57007757484876], [-77.33412673559428, 34.5701680517824], [-77.33399298045693, 34.57022718292169], [-77.33375876892123, 34.57050141082415], [-77.33371613219302, 34.570634122992104], [-77.33359843100381, 34.57090871206521], [-77.33346004119655, 34.57124460987829], [-77.33320436339682, 34.57143018222426], [-77.33280980250561, 34.57168794928394], [-77.33222752351344, 34.571792337629326], [-77.33202166825811, 34.57186648946306], [-77.33183230161161, 34.57183147688622], [-77.33171123321141, 34.57164479847681], [-77.33169412095569, 34.57129379049527], [-77.3316710575373, 34.571179919087925], [-77.33165759907038, 34.57080342961273], [-77.33164067338265, 34.57036869151386], [-77.33148113143113, 34.569979716262], [-77.33179903329568, 34.56969213512444], [-77.3320235967679, 34.569592463685794], [-77.33245356828118, 34.56937681775036], [-77.33281188888903, 34.56920064328808], [-77.33297223052257, 34.56908899183344], [-77.33320604014092, 34.56899505762743], [-77.33359054252507, 34.56883778659772], [-77.33360015256783, 34.56883386290547], [-77.33360592586799, 34.56883144229079], [-77.33361528749127, 34.56882387756996], [-77.33363879125896, 34.5687789118498], [-77.33391626928903, 34.56835607163516], [-77.3336389793556, 34.568012496263606], [-77.33361358134675, 34.56797504358158], [-77.33360855072974, 34.56796749258242], [-77.33360087374157, 34.5679657853454], [-77.33353022260987, 34.5679108442818], [-77.33320715755701, 34.56765769733092], [-77.33318074163645, 34.567641204053466], [-77.33309089255606, 34.56750021116671], [-77.33293351640296, 34.56722372199853], [-77.33298048018519, 34.567037256609325], [-77.33281396563886, 34.56672983815216], [-77.33260418550945, 34.566421982501716], [-77.33260908567121, 34.56579382745631], [-77.33248216844683, 34.565590443248965], [-77.3324967617708, 34.56524517471616], [-77.33281504785572, 34.56544418723348], [-77.33284397373558, 34.56550720797611], [-77.33287039575363, 34.56553463810596], [-77.33360237917046, 34.56615573897442], [-77.33366540340879, 34.566201478650946], [-77.33378176425829, 34.56625270814048], [-77.33389115136546, 34.56635016631522], [-77.33399618600818, 34.56634694986041], [-77.33410033638184, 34.566419182030884], [-77.33412899913296, 34.566484089203264], [-77.33432880574783, 34.56659860801285], [-77.33438991509547, 34.566634849734186], [-77.33451231564095, 34.566704187422474], [-77.33459619613701, 34.56676230693141], [-77.33478367185634, 34.566892205167065], [-77.33486549549912, 34.56694599395402], [-77.33504613027007, 34.56706159190078], [-77.3351774342764, 34.56714555586733], [-77.33540774038428, 34.56729257930176], [-77.33548696296779, 34.56737198519794], [-77.33568884610162, 34.56737892381038], [-77.33596514144077, 34.5674340126924], [-77.33616295397056, 34.56739541483887], [-77.33635916052697, 34.567373377210764], [-77.33654225155368, 34.567326727917845], [-77.33675326976308, 34.56719835225222], [-77.3368520809004, 34.56719139671677], [-77.33687933986809, 34.567081004547624], [-77.33684337053482, 34.56675835115894], [-77.33683443183627, 34.56666291988907], [-77.33675413730145, 34.56610606659451], [-77.3367204296167, 34.565866757115124], [-77.33670230298743, 34.56583283459012], [-77.3364675702361, 34.56555730311017], [-77.33637816495263, 34.56545489718143], [-77.33637027160562, 34.565445718430155], [-77.33636072199016, 34.56541933402155], [-77.33619261778807, 34.565057033101894], [-77.33617803409751, 34.564831964333344], [-77.33611004914806, 34.564373327238684], [-77.33610624971152, 34.56422036839147], [-77.33608443445695, 34.56409784127288], [-77.33596820758791, 34.56362242173379], [-77.33593656342309, 34.56342995155216], [-77.33592513399638, 34.56339732660421], [-77.33580921591646, 34.56324232400299], [-77.33541859507619, 34.56262107125986], [-77.33529976997838, 34.56251038646771], [-77.33518122730271, 34.56248782286957], [-77.33486969121384, 34.56236414854431], [-77.33476091555559, 34.5623196453446], [-77.33439369286084, 34.562050873331685], [-77.33427705833749, 34.562061788609554], [-77.33380493096779, 34.56200397935952], [-77.33360596142975, 34.56185939631267], [-77.33324737427205, 34.561621703641336], [-77.33310908083709, 34.56156827852202], [-77.33281804950278, 34.56188553743366], [-77.33257136045879, 34.561915488074256], [-77.33203021558163, 34.56181941424427], [-77.33185472478469, 34.56162454179145], [-77.33124286473674, 34.56119533738152], [-77.33100195152969, 34.5609685780163], [-77.33109728838325, 34.56069504067386], [-77.33109795503077, 34.56053816685097], [-77.33103867328224, 34.5592271998537], [-77.33095598307817, 34.55901719712455], [-77.3307765699503, 34.55874776843722], [-77.33068809206762, 34.558566073916595], [-77.33105348973352, 34.55815506906054], [-77.33113007759246, 34.5580129132683], [-77.3312058269367, 34.557963076101736], [-77.33121458752355, 34.55755059437338], [-77.33118205516699, 34.55751581154881], [-77.33078564806121, 34.55739234561545], [-77.33050190328382, 34.55714829127307], [-77.33047836529435, 34.55712732941155], [-77.3302687486081, 34.55681798006633], [-77.33025214331096, 34.55667021511549], [-77.32990906771367, 34.5563381668103], [-77.32986786931548, 34.556235818715066], [-77.32979748365277, 34.55620910687375], [-77.32973891082712, 34.556187769447384], [-77.32951174971458, 34.555942560465546], [-77.32927510897804, 34.55583138653433], [-77.32923308063106, 34.55567067090599], [-77.32896662561427, 34.555627711371926], [-77.32877717883783, 34.5555328174081], [-77.32873712236224, 34.555419080098154], [-77.32860007494939, 34.55518411973605], [-77.32836407509328, 34.55498306663313], [-77.32819901008075, 34.55486732099294], [-77.32783938319305, 34.55479413286854], [-77.3277129739851, 34.55458701336814], [-77.32742292475362, 34.55447153526991], [-77.32718586947311, 34.55466276582733], [-77.32705543416614, 34.554948935819006], [-77.32680182209756, 34.555207585358254], [-77.3266185569796, 34.555291050524175], [-77.32630677031527, 34.555278727027826], [-77.32605134176094, 34.55518105531308], [-77.32583499435023, 34.555216468391855], [-77.32553743113016, 34.55520356556177], [-77.32505052469948, 34.555180862766264], [-77.32361494305304, 34.555175895182636], [-77.32350417466557, 34.55517675195453], [-77.32348021265497, 34.55516856039765], [-77.32327948864908, 34.555097915836484], [-77.3219210611943, 34.55467791463771], [-77.32168975259054, 34.55461832623623], [-77.32165596820774, 34.554478096045145], [-77.32099628653863, 34.55417749110417], [-77.32093613919946, 34.55409188498175], [-77.32051406139658, 34.55375140467965], [-77.32042023042938, 34.553676375519224], [-77.32040948631118, 34.55365600105997], [-77.32037492600955, 34.553630622525134], [-77.32017354690817, 34.553585597272914], [-77.31959464052929, 34.55341653488157], [-77.31942657512758, 34.55343402488243], [-77.31881701964572, 34.55308859480383], [-77.31870523163447, 34.55301426880466], [-77.3186617799244, 34.55294972783249], [-77.31833874909074, 34.552692147881075], [-77.31815539325008, 34.55253284253485], [-77.31824367821055, 34.55239808082356], [-77.31803400931781, 34.552060652848766], [-77.3182592496498, 34.551659703753366], [-77.31886567456847, 34.55100685516457], [-77.31887798508546, 34.55096727820457], [-77.31889987662836, 34.55095703447573], [-77.31888110871205, 34.55095092209498], [-77.31900385275507, 34.55003484343977], [-77.31897214264444, 34.5499674070182], [-77.3189739447337, 34.54991554278934], [-77.31889393646777, 34.54979765966229], [-77.31863055631356, 34.55001647361615], [-77.31855030717568, 34.55023587442469], [-77.31881027589158, 34.550934305912186], [-77.31808408729347, 34.5508496391015], [-77.31779762342067, 34.55111536358068], [-77.31786569438744, 34.551468053943296], [-77.31727947731373, 34.55167677952441], [-77.31667929273692, 34.55188403963268], [-77.31648955945825, 34.55187538355787], [-77.31627085028742, 34.55195941564523], [-77.31569824396178, 34.55213351458603], [-77.31524464898645, 34.55217912710846], [-77.31538058449375, 34.552441755681755], [-77.31497216161178, 34.552941330205286], [-77.31494744370994, 34.55302814085298], [-77.31514812393942, 34.55345438135621], [-77.3149251583763, 34.55394201066542], [-77.31504515998351, 34.554448409578896], [-77.31506481155401, 34.554801580482724], [-77.31563828189194, 34.55469493527866], [-77.31601674367353, 34.55504701771768], [-77.316359427973, 34.55523890361059], [-77.31683611537913, 34.55539267737349], [-77.31719062954343, 34.55547517733104], [-77.31749648091085, 34.55556521906913], [-77.31718119974344, 34.55609693664621], [-77.31717952499693, 34.55610036533632], [-77.31717752648684, 34.55610161861833], [-77.31717587024235, 34.55610617157316], [-77.3171688503455, 34.556106273689835], [-77.31638173107015, 34.55648339951667], [-77.31616734773317, 34.55660344592887], [-77.31585374928616, 34.55710056744845], [-77.31595756079962, 34.55725510485186], [-77.31591125665052, 34.55747248133754], [-77.31573286755923, 34.559122272885396], [-77.31572095864227, 34.55924756789465], [-77.31550270998582, 34.560486352189415], [-77.31537889744826, 34.56118822820419], [-77.31536000858303, 34.56125788726172], [-77.31322874019341, 34.56399218093951], [-77.31252068973927, 34.565061817680025], [-77.31238061778937, 34.565137272154296], [-77.31232907986053, 34.56530177819004], [-77.3119510127552, 34.56813576577997], [-77.31128469796595, 34.56863548488572], [-77.30993314465988, 34.56964913018453], [-77.30917182993952, 34.570220119622185], [-77.30813654975202, 34.570202894323714], [-77.30601997079539, 34.57017074401669], [-77.30423494255416, 34.56964733346348], [-77.30326296707027, 34.569362327465385], [-77.3028693266871, 34.569107820141156], [-77.30193885681061, 34.56897403455139], [-77.30225310251855, 34.56993171305055], [-77.30165651424777, 34.57132119323055], [-77.30039419918184, 34.574330686044284], [-77.29891429041842, 34.57527069702414], [-77.29807969481871, 34.57391606861903], [-77.29751360674639, 34.5734550706643], [-77.29703247443808, 34.57309076826612], [-77.29591842214779, 34.572024410842914], [-77.2954333112862, 34.57149341569726], [-77.29504777197351, 34.57095553701478], [-77.29517660944985, 34.57021095814585], [-77.295197096972, 34.56946990636648], [-77.29537407702915, 34.569220453891504], [-77.29525370754625, 34.56895336813874], [-77.29498982041076, 34.568945944288274], [-77.29402165997126, 34.56837040999347], [-77.29347982649334, 34.56812532446191], [-77.29333280359332, 34.56796668645957], [-77.29284939782107, 34.567880798753876], [-77.29213290928621, 34.56778759249534], [-77.29096375972846, 34.56806756119519], [-77.29090150990979, 34.56802709603323], [-77.29082497031594, 34.56805077774489], [-77.28988711175268, 34.56790453358771], [-77.28956170675863, 34.56772483703398], [-77.28936483433131, 34.56751398755141], [-77.28910764620568, 34.56715350632099], [-77.28877932584413, 34.56688624330748], [-77.28873550009453, 34.56662362848177], [-77.2887876653387, 34.566515665789666], [-77.28857815192202, 34.566533793202865], [-77.28820729440434, 34.56658217836487], [-77.28793733779763, 34.56672912754321], [-77.28785583533373, 34.56723241947432], [-77.28815226510147, 34.56752050339012], [-77.28786110004559, 34.567975465577945], [-77.28769684079074, 34.56842740932776], [-77.28787640926122, 34.56869451212379], [-77.28771462287776, 34.56915936320043], [-77.2874386731021, 34.56934979710576], [-77.28699856853851, 34.56965899601668], [-77.28691201988474, 34.56975991259514], [-77.28685927190614, 34.56977564937363], [-77.28673310175955, 34.56985796791319], [-77.2864607359611, 34.57021569411173], [-77.28648192792257, 34.57068111688368], [-77.28648068367185, 34.57068748071057], [-77.28713233062228, 34.57106166043941], [-77.28766173133381, 34.571017132983684], [-77.28776125277254, 34.57096398066653], [-77.28790588559065, 34.57108951136695], [-77.28770570995516, 34.57123694780516], [-77.28720047891825, 34.5713370438796], [-77.2868997530354, 34.57152178846704], [-77.28555728257089, 34.57118371555242], [-77.28520439310671, 34.57116585286624], [-77.28353941877258, 34.571500559125596], [-77.28307983571207, 34.57160932280116], [-77.28292423008973, 34.571823382412134], [-77.28280953085786, 34.57206343411374], [-77.28230271740074, 34.572717236804166], [-77.28192682025856, 34.573212531258164], [-77.2814996291005, 34.57359683241061], [-77.28110744994751, 34.57417109154985], [-77.28116862844962, 34.574513494948036], [-77.28144109283366, 34.57478094406689], [-77.28125222650135, 34.575241152992575], [-77.28111873974184, 34.57545223164233], [-77.28125228587214, 34.5755865828519], [-77.28075501497665, 34.5763663250035], [-77.28076763129691, 34.576503090628336], [-77.28093649997265, 34.57664930956264], [-77.28103669414688, 34.57713714321013], [-77.2812795221568, 34.577350163864516], [-77.28138536853662, 34.577428559671084], [-77.28169499435367, 34.57762533143998], [-77.28198707578495, 34.57790551113256], [-77.28237636512259, 34.57810487296216], [-77.2828115043553, 34.57841308948953], [-77.28323043489533, 34.57878043823306], [-77.28384350090279, 34.57924104213064], [-77.28425077356732, 34.5795482845711], [-77.28501252737036, 34.57984139522097], [-77.28568390304078, 34.58031614220101], [-77.2870182825101, 34.58045994301181], [-77.28890842146133, 34.58495313405212], [-77.2890158607232, 34.585284638086435], [-77.28771490081643, 34.588254813064644], [-77.28743905728305, 34.5889203842586], [-77.2873633570309, 34.588950207028184], [-77.28503997861522, 34.58988809864595], [-77.28328934265039, 34.590380791787084], [-77.28173145929743, 34.590916984331024], [-77.28017377586458, 34.5911499031533], [-77.27912496612915, 34.59182751205005], [-77.27588498392583, 34.59330730326859], [-77.27504575406783, 34.59337964260534], [-77.2744532884824, 34.5937818510597], [-77.27521490503841, 34.59401595513215], [-77.27332804121832, 34.59710976452784], [-77.27315755356784, 34.59745072275143], [-77.27298811861709, 34.597789560382374], [-77.27178150808477, 34.60099217751849], [-77.27174401544372, 34.60111032195367], [-77.27168366075955, 34.60121761545184], [-77.27145023087554, 34.60207525881468], [-77.2705865325633, 34.60520994805869], [-77.2702430482679, 34.605484750864534], [-77.26937360900521, 34.60618032839395], [-77.26868697780166, 34.60652609827644], [-77.26864129509319, 34.606766190204425], [-77.26749078533612, 34.60769262278476], [-77.26672059834686, 34.608256902220276], [-77.26660902823532, 34.608311506607215], [-77.26648598916881, 34.60823846279], [-77.26604900544899, 34.607736972439795], [-77.26532538634103, 34.60751545237979], [-77.26435017605685, 34.60690343456918], [-77.26332031559683, 34.60610426515395], [-77.2629176534528, 34.60560813534343], [-77.26201857019561, 34.6048372010177], [-77.26186828634856, 34.60434920536878], [-77.26128669456376, 34.60480569653964], [-77.25991303023704, 34.60488056848067], [-77.25856468376325, 34.60501440973235], [-77.25747651346548, 34.60564465047513], [-77.2569086752643, 34.60675041238126], [-77.2569646746592, 34.607489716642675], [-77.25560351971376, 34.60763952852649], [-77.25480695682575, 34.60920533042575], [-77.25400812081513, 34.6107755306786], [-77.25411455361245, 34.61103619670362], [-77.25375877580609, 34.61125747465853], [-77.25298006675376, 34.611914839405785], [-77.25018069581319, 34.61333424170995], [-77.2467925840569, 34.61423052692949], [-77.24596706997812, 34.614845908017834], [-77.2458893361991, 34.6160448004684], [-77.24549166573536, 34.616902303318284], [-77.24495645571989, 34.617856692089184], [-77.24434937586092, 34.61866610418277], [-77.24175570897118, 34.62075908703993], [-77.24124550484878, 34.621164879320396], [-77.2409843895848, 34.621314600436115], [-77.23769614955725, 34.62326745366923], [-77.23463576329372, 34.624585040189565], [-77.23255924512041, 34.62559425588084], [-77.2304914332546, 34.6273787070522], [-77.2296499703405, 34.62796272236608], [-77.2265986517688, 34.629848420606805], [-77.22437671966043, 34.631317568588955], [-77.22359492994609, 34.63176429839439], [-77.2215353577668, 34.63468085907367], [-77.22161759013477, 34.63487071331967], [-77.21979626934083, 34.63826994476541], [-77.22026105267044, 34.638534514928935], [-77.22024530107669, 34.639305108275934], [-77.21914308835272, 34.63875399820001], [-77.21839369405147, 34.638794355131886], [-77.21433774093087, 34.63931068466408], [-77.21434778807885, 34.64030694300144], [-77.21438169615041, 34.64148975374804], [-77.21439071135173, 34.6417602912183], [-77.2143949851133, 34.64184227156524], [-77.21456883723823, 34.64214651954458], [-77.21504747122309, 34.64298415783976], [-77.21552328959608, 34.643816825209676], [-77.21608179973467, 34.64479421259827], [-77.21707321521683, 34.64516562818895], [-77.21822744583906, 34.64591574713975], [-77.21911343206625, 34.64734171125109], [-77.21943876792588, 34.64789683907007], [-77.22014407024739, 34.648425829187055], [-77.22075799968462, 34.64888627187387], [-77.22197104209911, 34.64921219205378], [-77.22218001886871, 34.64999860578518], [-77.22276903743207, 34.65157792809977], [-77.22285048285298, 34.651822275469364], [-77.22278798213121, 34.65193201515613], [-77.22300204450099, 34.652276950166296], [-77.22116703849757, 34.653689515223746], [-77.22064335481151, 34.655439522972664], [-77.21824460449486, 34.65384519564731], [-77.21363020580472, 34.653094584529725], [-77.21240464412014, 34.652788300925884], [-77.21202955285223, 34.652788307035216], [-77.21174739417134, 34.65278830433852], [-77.20774491978939, 34.65159111202921], [-77.20612335101106, 34.651122226886166], [-77.20413293251328, 34.650458755606365], [-77.20355047897954, 34.65021994739885], [-77.20230841254785, 34.649652837064764], [-77.20048712386405, 34.64892389118626], [-77.19526628858908, 34.647871982927434], [-77.19449881438611, 34.64772490810792], [-77.19436568185941, 34.647682587953895], [-77.19415315749714, 34.64765832343758], [-77.19430807349613, 34.64779617887987]], [[-77.32430491264118, 34.763229650904606], [-77.32600725062969, 34.761563463685924], [-77.32703198764644, 34.76053880562962], [-77.32641862318438, 34.759287494225404], [-77.3245667414354, 34.75786189110317], [-77.32459276913553, 34.757537967882385], [-77.32412362503423, 34.75779698848338], [-77.32398635977572, 34.757839891453486], [-77.32293809020476, 34.757753385466685], [-77.3224063313957, 34.75771653159911], [-77.32230535715962, 34.75771963326028], [-77.322193114282, 34.75769966807573], [-77.32176533838056, 34.75766583444637], [-77.3214197956158, 34.75761204128087], [-77.32118217112367, 34.757350765026736], [-77.3209287936713, 34.757201208638236], [-77.32074918451394, 34.757040007398466], [-77.32050550041848, 34.756738340196975], [-77.32028921203687, 34.75649833467083], [-77.32060934531309, 34.7561239312081], [-77.32061683959144, 34.75596610307965], [-77.3206333251637, 34.75585191249618], [-77.32073381992718, 34.75546271876878], [-77.32077285324306, 34.75535058314756], [-77.32088061049735, 34.75508741983542], [-77.32103328805036, 34.754934340509244], [-77.32143540500434, 34.75468122082408], [-77.32172826490627, 34.75456176321141], [-77.32186668095812, 34.75450989514959], [-77.32210882176608, 34.754425720002104], [-77.32250431659739, 34.75424549399607], [-77.32267610252839, 34.754124900469805], [-77.32277606003757, 34.75381094960461], [-77.32280769490312, 34.753716574480826], [-77.32306540975897, 34.753194450683566], [-77.32306572628089, 34.753193865514305], [-77.32306592878867, 34.75319349112496], [-77.32306679030998, 34.753191994276854], [-77.323404464591, 34.75266009958893], [-77.32358756708533, 34.75237890950605], [-77.32397870207707, 34.75209407077895], [-77.32437579204473, 34.75180060475661], [-77.3246941334321, 34.751716441395416], [-77.32489069318154, 34.751791470634956], [-77.32527455344038, 34.75178054221448], [-77.32541467725854, 34.75178281545553], [-77.32575526239651, 34.75174630062437], [-77.32588770559357, 34.75173210082414], [-77.32601145970554, 34.75171819795767], [-77.32672936884047, 34.751717227735], [-77.32674005337142, 34.75261905521689], [-77.32675526605843, 34.75268841398677], [-77.32673374942422, 34.75273944624154], [-77.32658385024622, 34.75368662653738], [-77.32746645106218, 34.75454302648112], [-77.32787635578325, 34.75501408461661], [-77.32851722256703, 34.75537119159231], [-77.32948064117578, 34.755857015066894], [-77.33032659255097, 34.75628358769147], [-77.33155717850462, 34.75690409069661], [-77.33155399589646, 34.756967730710365], [-77.33159994026124, 34.756925652168555], [-77.33285477578858, 34.757493214222436], [-77.33362712826874, 34.75807934456536], [-77.33534180449496, 34.75768760587847], [-77.33612809842872, 34.757719561183976], [-77.33701087540362, 34.75745131480354], [-77.33778737428224, 34.75730095295921], [-77.33873187087299, 34.757006013244784], [-77.33881272286429, 34.756932695639726], [-77.33910947005157, 34.75684357165309], [-77.33940224306505, 34.7567607532831], [-77.33946708603551, 34.756745413243394], [-77.33992111020696, 34.75663800363432], [-77.34003735063688, 34.75663679204816], [-77.34011671735003, 34.75664010968139], [-77.34018862257908, 34.75663161889293], [-77.34023604411311, 34.75668910078124], [-77.34024577570808, 34.756737964373784], [-77.34029546298203, 34.75677930021163], [-77.34034686201255, 34.756857325270616], [-77.34050347605336, 34.75709416516932], [-77.34051964010108, 34.75711864792974], [-77.34053155986129, 34.75713595340473], [-77.34075809468507, 34.757379510502936], [-77.34092055286496, 34.75756998759331], [-77.34093654164583, 34.75758644089912], [-77.3409582115935, 34.75759073903733], [-77.34100633668562, 34.75759943176352], [-77.34135127410903, 34.75766173677498], [-77.34152740548664, 34.75769355052645], [-77.3416631414724, 34.75771184489891], [-77.34149064517891, 34.757820019942734], [-77.34135835249442, 34.75791128376844], [-77.34126013559134, 34.75801079622563], [-77.34074623075784, 34.75832001092414], [-77.34051663119433, 34.75844224141228], [-77.34017400773261, 34.758566873286476], [-77.34006480901039, 34.75860326462511], [-77.33980349215881, 34.758697907443945], [-77.33950230621215, 34.75882029028908], [-77.33936083093147, 34.75896409028013], [-77.33898673800962, 34.75908551039046], [-77.33870051398586, 34.7591747032516], [-77.33843937213604, 34.759155275032555], [-77.33809333792206, 34.75920250307683], [-77.3371611944593, 34.75906017479658], [-77.33703418059295, 34.75901000804594], [-77.33684682406775, 34.759021043324125], [-77.33574909027905, 34.75902316521379], [-77.33399017774974, 34.76046958821815], [-77.33443019082115, 34.761986831308775], [-77.33438826967628, 34.76262061911358], [-77.33466255155267, 34.76276012851537], [-77.33484864163835, 34.76384330867594], [-77.33491705897023, 34.764241512678325], [-77.33506502391302, 34.76510271572678], [-77.33508791583297, 34.76523596460917], [-77.3356800473464, 34.766086417126985], [-77.33588459859429, 34.76620014142467], [-77.33603894078476, 34.76626869260691], [-77.33688428249503, 34.76700828066629], [-77.33700603527197, 34.76706389247493], [-77.33771085575287, 34.767757526829485], [-77.3378646007872, 34.767831313556655], [-77.33795259204047, 34.76792978414953], [-77.33837954111658, 34.768640602616166], [-77.33863725139346, 34.76881398972533], [-77.33866065478657, 34.76908943852262], [-77.33869425404662, 34.76916433065449], [-77.33874672042052, 34.76932003015335], [-77.33888791350998, 34.76940961898107], [-77.33886243429282, 34.76954914893721], [-77.3388170850358, 34.769703221520544], [-77.33861612910964, 34.76976920728995], [-77.3383811122953, 34.76995536612402], [-77.33807174693281, 34.77014491745967], [-77.33796253580249, 34.770222921026985], [-77.33787260016506, 34.77026572226192], [-77.33767584089318, 34.77034134974394], [-77.33739269926858, 34.77035648791232], [-77.33741726570346, 34.77054011447158], [-77.33749237102137, 34.77071171297319], [-77.33763371161058, 34.77108735184916], [-77.33765399219689, 34.77114645616078], [-77.33766397923543, 34.77117556130206], [-77.33767164907995, 34.771241923738856], [-77.33771897279206, 34.77165539484359], [-77.33771871372733, 34.77188501594422], [-77.33778443119334, 34.77261849924324], [-77.3377842529939, 34.77262119142194], [-77.33778379508516, 34.77262330319909], [-77.33778632858628, 34.77262325381076], [-77.3378272435463, 34.77265642176249], [-77.33803294857829, 34.77282594118934], [-77.33803648749043, 34.77283030080971], [-77.33828513278515, 34.772968522660626], [-77.33832871420847, 34.77299274946328], [-77.33838813559422, 34.77302578138318], [-77.33880095635455, 34.7732552656727], [-77.33905516061792, 34.773222657529416], [-77.33936056331866, 34.77337984310567], [-77.33984153080586, 34.77379807337016], [-77.34082339866285, 34.77344005804511], [-77.3410682090128, 34.77370076055537], [-77.34177295312438, 34.77359802895705], [-77.34326796777346, 34.772844094421636], [-77.34381667333146, 34.77249084678273], [-77.3453465402037, 34.77165673507075], [-77.34598251949497, 34.77052229498054], [-77.3470155730763, 34.76867960404103], [-77.34716649151568, 34.76841041347323], [-77.34519245644003, 34.76775756342429], [-77.34438039154804, 34.767552170161544], [-77.34366240718583, 34.76761194458035], [-77.3428163595536, 34.76768709795677], [-77.34244378615031, 34.767809151433134], [-77.34192771971716, 34.76786109394499], [-77.34155715318636, 34.767896634659294], [-77.34142252362216, 34.76785530922709], [-77.34145868017207, 34.767731066205855], [-77.34142179688715, 34.76746169852423], [-77.34144593013536, 34.76724543883799], [-77.34113524517132, 34.76689365819839], [-77.34109909758955, 34.76680562192159], [-77.34079717755729, 34.766388818066844], [-77.34078422158056, 34.76637518487192], [-77.34076200123503, 34.76636446859695], [-77.34068373224163, 34.766250119112016], [-77.34039202674931, 34.76588836406928], [-77.34015245296413, 34.7654732955396], [-77.34004764180865, 34.7653647900141], [-77.33993346076201, 34.76523795418463], [-77.33979959755564, 34.76503430197307], [-77.33972314835886, 34.76482592654486], [-77.33945110771157, 34.76459470704373], [-77.33942165500872, 34.76426938407855], [-77.33920215062236, 34.764141467862046], [-77.33942351610816, 34.7638571261016], [-77.33958978081006, 34.76360094700069], [-77.34003975625185, 34.763126376783354], [-77.34070215516726, 34.76259364690583], [-77.34078384592945, 34.76250889019367], [-77.34084442147845, 34.762454172004595], [-77.34117016268476, 34.76213681175627], [-77.34147203205218, 34.76184188704632], [-77.34182235896672, 34.76134532282982], [-77.34207968947146, 34.76110355343575], [-77.34235748467218, 34.76102105576944], [-77.34265857251616, 34.76099247115397], [-77.34299768359237, 34.760879655456414], [-77.34350894354456, 34.76109302634153], [-77.34353275109446, 34.76109995694799], [-77.34353824049658, 34.761104479919624], [-77.3435439997774, 34.761109225221254], [-77.34401610056244, 34.761498207966845], [-77.34405620570162, 34.761494584878456], [-77.34451327629245, 34.761848900076345], [-77.34470716847449, 34.76192445078309], [-77.34524941071882, 34.76215386913867], [-77.34655166138194, 34.762646214635865], [-77.34654376016027, 34.76273539208306], [-77.34654074855962, 34.76311837138846], [-77.34764134815265, 34.763476785963675], [-77.35097006761598, 34.7643694235892], [-77.35255950062863, 34.762726711219116], [-77.35370993834114, 34.76318733332923], [-77.35488170797346, 34.76223041939866], [-77.35524219901431, 34.76203737712222], [-77.35569577963331, 34.76167493385296], [-77.356027287322, 34.761346084988745], [-77.35604686646549, 34.76132967498727], [-77.35640668904249, 34.76102809221037], [-77.35672266036447, 34.76076326011343], [-77.35677693357187, 34.760717771010746], [-77.35683873808742, 34.76066596902777], [-77.35696651922868, 34.76056656376555], [-77.3570529084028, 34.76056706362731], [-77.35715267589956, 34.7606163894163], [-77.35721581232147, 34.76069557148003], [-77.35725896358386, 34.76080281289914], [-77.3573784963303, 34.76087016781594], [-77.3575968622548, 34.76113065185487], [-77.35760982865949, 34.76132141490078], [-77.35782370068117, 34.76139989612035], [-77.35804873099934, 34.76177231260448], [-77.35813999724687, 34.76203086617033], [-77.35830072720087, 34.76236695861422], [-77.35835320902216, 34.76248898498465], [-77.35843129723845, 34.76266076707056], [-77.35853477580719, 34.76291265218833], [-77.35855029697343, 34.76294931608253], [-77.35855466484979, 34.76296011458924], [-77.35856085025745, 34.762987054265274], [-77.35869105887723, 34.76341737812148], [-77.35868144658161, 34.763651062559354], [-77.35870429539679, 34.76390294583439], [-77.35872628866719, 34.76401080448711], [-77.35875796811455, 34.76437095934741], [-77.3587593449821, 34.7643796099482], [-77.35876049791375, 34.76438261598872], [-77.35876318591447, 34.764391297880366], [-77.35881930662225, 34.76461823565475], [-77.35873136821756, 34.7647953534521], [-77.35869694777347, 34.764878723794745], [-77.35856316228396, 34.765041625561985], [-77.35816035809208, 34.765133868651716], [-77.3579213686417, 34.76518859704632], [-77.35759635500223, 34.765274010034446], [-77.35663305934196, 34.765498761712976], [-77.35588498542282, 34.76567175824538], [-77.35495394200885, 34.767306068666606], [-77.35495786468644, 34.76734144600634], [-77.3561526459046, 34.76796111933452], [-77.35718586416876, 34.76772057679007], [-77.35820380232724, 34.767960664843464], [-77.35830942416639, 34.76797768937166], [-77.35854717083963, 34.76802915628947], [-77.359399746999, 34.76834922967997], [-77.35960393407215, 34.76856830330849], [-77.36036075016915, 34.76906664308311], [-77.36042693284055, 34.76911821359065], [-77.36045534979837, 34.769132575526584], [-77.36049082564168, 34.769146658230454], [-77.36092935062999, 34.76935532078194], [-77.36100367461471, 34.76945360779666], [-77.36114974854222, 34.76970982497175], [-77.3613288613857, 34.76996470552014], [-77.36145544445955, 34.77010709133309], [-77.36168937620306, 34.77037769382889], [-77.36193540565348, 34.77066353408986], [-77.36201263946516, 34.7707632424305], [-77.36216413530916, 34.771072567180425], [-77.3623661802833, 34.771389351009084], [-77.36241009377393, 34.7714615662493], [-77.36246564112713, 34.77162815286485], [-77.36232284011622, 34.771899009452184], [-77.36222685050086, 34.77195666226753], [-77.3622135182599, 34.77196454496396], [-77.36219632093511, 34.77197418720839], [-77.3615261308443, 34.77233777311454], [-77.36143065375364, 34.77240138254707], [-77.36111290556701, 34.77268526631736], [-77.36092943702184, 34.77285935638281], [-77.36053432954536, 34.77327836517649], [-77.36037220643297, 34.7734455018631], [-77.36030351995285, 34.77352045823305], [-77.36018142050482, 34.773682906345456], [-77.35993088441774, 34.77422125093021], [-77.35962909882733, 34.774402884501555], [-77.35932337602463, 34.774725171596934], [-77.35926551698732, 34.775394102080156], [-77.35940571553667, 34.77579078065576], [-77.35940017688128, 34.776000463796116], [-77.35929023106155, 34.77616861277892], [-77.35918417418735, 34.77648410036417], [-77.35910468461398, 34.77661394194808], [-77.35891790006545, 34.77688631794381], [-77.35888245847556, 34.77693774028494], [-77.35886849719932, 34.77697643945301], [-77.3587441487182, 34.77723234707456], [-77.35863636123759, 34.77741084539742], [-77.35844835965675, 34.77778688640913], [-77.35813212040247, 34.77810586265372], [-77.35794632537556, 34.778287817071345], [-77.3578777052694, 34.77835114490419], [-77.35770995110559, 34.77858362303434], [-77.3573833598661, 34.77904023284599], [-77.35734138001872, 34.779194570494354], [-77.35724937085092, 34.77936575257527], [-77.3570834852033, 34.77966354926617], [-77.35699445970056, 34.7799018109847], [-77.35688492310703, 34.78015329282716], [-77.35677083602894, 34.78045739984801], [-77.35671084064447, 34.780651606494615], [-77.35665191156899, 34.78083921935499], [-77.35651138317633, 34.7811410374753], [-77.35643992253583, 34.78148760457062], [-77.3567141577106, 34.782011153041466], [-77.35686953507292, 34.782201296370694], [-77.356913320813, 34.78240018115143], [-77.35678474359851, 34.78255420852527], [-77.35649259935197, 34.78277372258121], [-77.35624853673644, 34.78317487558723], [-77.35617772156697, 34.78326122019345], [-77.35602771679804, 34.78344412056106], [-77.35599953688003, 34.78347848037349], [-77.35599202575824, 34.78350417538551], [-77.35573638586126, 34.78366600402455], [-77.35574906880515, 34.78385564550743], [-77.35546485882446, 34.7841302151596], [-77.35555886747662, 34.784531717398764], [-77.35588092507156, 34.784878944464495], [-77.35598561850085, 34.78524660662238], [-77.35598515141866, 34.78543078155364], [-77.35621689570308, 34.78604284473729], [-77.35621024926078, 34.786068796642944], [-77.3561999791831, 34.78609090810465], [-77.35597353139181, 34.78654519193627], [-77.3556701710778, 34.786722079569884], [-77.35532412611859, 34.78679521606766], [-77.35526471005876, 34.78680777354745], [-77.35519364750814, 34.78683150423272], [-77.35486738730803, 34.78690677729748], [-77.3546276638397, 34.78698362618075], [-77.35436448854574, 34.78710056710207], [-77.35418739421971, 34.78729231952651], [-77.35415516939929, 34.78734704838824], [-77.35404244946393, 34.78754710582204], [-77.35383736652673, 34.78792553061887], [-77.35379854948549, 34.7880209916556], [-77.35375387060677, 34.78808101112038], [-77.35363347651948, 34.788196565889805], [-77.35318748370192, 34.788541774500565], [-77.3530318890642, 34.78867410283081], [-77.3534000000134, 34.78899999999183], [-77.35371296871344, 34.78886977002776], [-77.35375532514956, 34.78883228776919], [-77.35378775822895, 34.78876981321008], [-77.3539588799523, 34.78863634642555], [-77.35393784098316, 34.788553078470834], [-77.35400627694372, 34.78849386014521], [-77.35416014813109, 34.78842716204303], [-77.35421270382885, 34.788215583602174], [-77.35424202515279, 34.7881761947406], [-77.35437903082368, 34.78783926273957], [-77.35456711568338, 34.787913408095804], [-77.35457535086455, 34.78773360476383], [-77.35450884066749, 34.787646115165415], [-77.35466786485648, 34.787486360758194], [-77.35463088112968, 34.78737221123506], [-77.35466972884169, 34.78733236248419], [-77.35480506834102, 34.78729972659979], [-77.35484900101625, 34.7873261208088], [-77.35490365342032, 34.78728925785043], [-77.35510446918374, 34.78729455628899], [-77.35518289469346, 34.78728126239153], [-77.35588150000925, 34.78707222554308], [-77.35588393289186, 34.78707171135408], [-77.3564818367287, 34.786723077106465], [-77.35652883793827, 34.786628786544185], [-77.356708025522, 34.78624299594724], [-77.35682398958544, 34.785790199053366], [-77.3567952450386, 34.7857142814147], [-77.3567956174993, 34.78556741662875], [-77.35692221217623, 34.78519947790892], [-77.35708685026303, 34.784788318548536], [-77.35708259043243, 34.78469636649347], [-77.35697845095311, 34.784368752913096], [-77.35691702495885, 34.78407918935119], [-77.35692523402089, 34.783963090237364], [-77.35698870895152, 34.783545039452015], [-77.35733834961783, 34.783459708905454], [-77.35752035928662, 34.78317186020867], [-77.35775819747099, 34.782834857308536], [-77.35781962141036, 34.78274919783579], [-77.35784236317993, 34.78272531352884], [-77.35784225386618, 34.78268895982642], [-77.35781776522873, 34.78262982388011], [-77.35767560201428, 34.78186582676098], [-77.3574555169932, 34.78166803836263], [-77.35723540412162, 34.78139442790564], [-77.35707997850997, 34.78122122757019], [-77.35716978891622, 34.78093745265451], [-77.35729879614323, 34.780857376858116], [-77.35739596009694, 34.78055854415052], [-77.35741140880718, 34.780337551961836], [-77.35738436945347, 34.780202056176975], [-77.35748031379066, 34.779947672200805], [-77.35752232329438, 34.77981713336041], [-77.35760494058013, 34.77966401164418], [-77.35768087007958, 34.77952687294632], [-77.35783101277133, 34.77936593091824], [-77.35816518673393, 34.778984592252755], [-77.35821920375994, 34.77890973403809], [-77.35827065268232, 34.778862253074585], [-77.35850749503483, 34.77863245008518], [-77.35861845171675, 34.77852304444204], [-77.35879006140358, 34.77834580483829], [-77.35881759089011, 34.77831312108626], [-77.35886859465901, 34.77824558126874], [-77.35898803382368, 34.778093154332865], [-77.359200196317, 34.77766131534739], [-77.35922323294201, 34.77761623474716], [-77.3592129575407, 34.77753986934527], [-77.35917089427146, 34.77722726379718], [-77.3592333220104, 34.77706053349443], [-77.35928314783678, 34.77695741751244], [-77.3592998536227, 34.77693317901282], [-77.35936882553379, 34.776828339939875], [-77.35947022640173, 34.77665642638407], [-77.35950663579845, 34.776596953757156], [-77.35952276627819, 34.776548970388475], [-77.35963348358283, 34.77637964151175], [-77.35983606096893, 34.77615301180809], [-77.35981129460782, 34.77606821473587], [-77.35980059686699, 34.77580434946859], [-77.35980534905579, 34.77562444048324], [-77.35978864843418, 34.77557718764917], [-77.35979554067303, 34.775497503836945], [-77.35993130199913, 34.77535438685951], [-77.36035122626521, 34.7749088061088], [-77.36047484374478, 34.774698876904026], [-77.36055185895762, 34.77442121177724], [-77.36073641193444, 34.774041234567306], [-77.36082864840049, 34.77370424062044], [-77.36112244441254, 34.7732912020172], [-77.36116552049053, 34.773245520129244], [-77.36119306029345, 34.77321938809616], [-77.36146733036796, 34.7729903894429], [-77.361667903761, 34.772879500259045], [-77.36180250103328, 34.772789827898364], [-77.36198877368071, 34.77268877282424], [-77.36248588768257, 34.772410049547574], [-77.36275805479153, 34.772249130561185], [-77.36281878934047, 34.772205784450236], [-77.36285664790516, 34.772177068896724], [-77.36302903479162, 34.77180089678027], [-77.36308991667323, 34.77157968823315], [-77.36298058344633, 34.7714829320331], [-77.36268622526863, 34.7709989785581], [-77.36260932627154, 34.770887242384845], [-77.36253795873836, 34.770797899097175], [-77.36209007188546, 34.770231115918136], [-77.362095856578, 34.77020848445428], [-77.36207364556776, 34.77018756571686], [-77.36201449733699, 34.77014143017923], [-77.36179811730557, 34.76988617530199], [-77.36162025323591, 34.76953965320812], [-77.36160628664378, 34.76951977851576], [-77.36159403223138, 34.76949828398225], [-77.36115069414899, 34.76894742517798], [-77.36100714838219, 34.76887668410589], [-77.3605778988076, 34.76871065290849], [-77.36010704659176, 34.7684186150116], [-77.36004793123091, 34.768383482338194], [-77.36003595636896, 34.76836766773102], [-77.35997918197498, 34.76830969474518], [-77.35954617414654, 34.767845117851635], [-77.35923670973591, 34.767728938995276], [-77.35893225629108, 34.76740045690819], [-77.35859399823596, 34.76699800841563], [-77.35755448537404, 34.76698507579236], [-77.35884540425728, 34.766132493982326], [-77.35901117831929, 34.76588727288689], [-77.35900826626919, 34.765810758942784], [-77.35899667737195, 34.76577399883819], [-77.35928468118868, 34.764853085015986], [-77.35928677727952, 34.7647977581714], [-77.35929101720839, 34.764759173034875], [-77.35927648167551, 34.764648389960364], [-77.35928144386654, 34.764372306142754], [-77.35926326795125, 34.764313600307545], [-77.35916803392332, 34.76406529647544], [-77.35913283061721, 34.76384412070237], [-77.35908789826951, 34.76373269930602], [-77.35906720376592, 34.76338413204597], [-77.3590661208813, 34.76336589359769], [-77.35906299839088, 34.763357620896265], [-77.35905707088307, 34.76334120519093], [-77.35890915588905, 34.76290005524034], [-77.35890179593201, 34.762693140842515], [-77.3587317912066, 34.762437017892445], [-77.35872733515919, 34.762433089920094], [-77.35872399703632, 34.76242537133276], [-77.35859991248502, 34.76213686024354], [-77.35852401393207, 34.761978153484066], [-77.35836538953842, 34.761528777030875], [-77.35831013706051, 34.76143733631421], [-77.35810535375101, 34.76106085412584], [-77.35805263387498, 34.76098086241764], [-77.35797967252742, 34.7608629260605], [-77.35777936333693, 34.76061821703739], [-77.35769881781684, 34.76046452817801], [-77.35756853352513, 34.760215926595585], [-77.35754733173675, 34.76018681209178], [-77.35748568655947, 34.760171144201486], [-77.35717694589124, 34.760077446362374], [-77.35703897870732, 34.7599766126989], [-77.35675305558242, 34.76005841756576], [-77.35636156900354, 34.76032543802566], [-77.35634476793761, 34.76033504579376], [-77.35633290456822, 34.7603449890788], [-77.35597452395261, 34.76064536542805], [-77.35554103082399, 34.761008691746675], [-77.3544566388407, 34.761561642715755], [-77.35425093441846, 34.761671797048166], [-77.35411891097785, 34.76177961266822], [-77.35379968053297, 34.761651796447026], [-77.35374709205429, 34.76034987274085], [-77.35277863390863, 34.75814467479442], [-77.352744402904, 34.75796732594102], [-77.35272975048022, 34.757899569106286], [-77.35269197008348, 34.75773815561058], [-77.35220302874879, 34.756022317471036], [-77.35285483259517, 34.75532945846824], [-77.35293758188959, 34.75494675986599], [-77.3531399145246, 34.75450950992889], [-77.35323107713437, 34.75438624005331], [-77.35338347226204, 34.75391080721714], [-77.35339450842292, 34.75389276226941], [-77.35338953535984, 34.75352911954968], [-77.35338060870302, 34.753423818079675], [-77.3533365711459, 34.7532032108586], [-77.35333180096178, 34.753179314897466], [-77.35312237720068, 34.75297187489735], [-77.35312373472696, 34.75294512739041], [-77.35309841243595, 34.75291991960526], [-77.3529791904632, 34.7528866612726], [-77.35256935957214, 34.7526790630622], [-77.3524732206596, 34.752657010839926], [-77.35226867365503, 34.75260164739445], [-77.35201842014034, 34.752513551028485], [-77.35162755797039, 34.75251897549147], [-77.35118423489757, 34.75257322998395], [-77.35076356115842, 34.75270909106131], [-77.35016105937859, 34.7529434113212], [-77.34959758001425, 34.75345554255359], [-77.3494662277581, 34.753604448434984], [-77.3493966947007, 34.75397048489177], [-77.34905685965836, 34.75445970277231], [-77.34903218351745, 34.75449649707688], [-77.34901006040343, 34.75451091063364], [-77.34831282775572, 34.75495868737077], [-77.34818196511729, 34.755019901518345], [-77.34765584978832, 34.75515804850684], [-77.34719230386345, 34.755419788583296], [-77.3469225915444, 34.755619901108645], [-77.34680273799142, 34.7557129798711], [-77.34670605931473, 34.75580174667302], [-77.34648119265893, 34.75606642596722], [-77.3461373894587, 34.75636713132095], [-77.34609658771969, 34.75640086908321], [-77.34567631860942, 34.75663001093979], [-77.34535273502847, 34.75689909771779], [-77.34528164059293, 34.75697188921916], [-77.34513657402687, 34.75742846382862], [-77.345137731324, 34.757479005229285], [-77.34513633646739, 34.75751065655971], [-77.34500221392393, 34.757947734331744], [-77.34498646050541, 34.75798713064251], [-77.34493869907067, 34.75805680187287], [-77.34474198838123, 34.75835551016484], [-77.34457019426364, 34.75853160106199], [-77.3441450740082, 34.758993163014274], [-77.34407907653781, 34.759044870349115], [-77.34406703038316, 34.759087988220394], [-77.34404513643175, 34.75913803857917], [-77.34407918940988, 34.759219853980476], [-77.3440896105972, 34.75949801929382], [-77.3440935582795, 34.75957172617609], [-77.34410054554905, 34.759702185780824], [-77.34410988657768, 34.759876605697464], [-77.34411947059536, 34.7600555489448], [-77.3441200249019, 34.76006589897908], [-77.34412758160528, 34.760083994177904], [-77.34419151438905, 34.76020802000407], [-77.34433501830539, 34.76040091415565], [-77.34437805791764, 34.76045876695761], [-77.34465632077934, 34.76083279557402], [-77.34421333696609, 34.76081958354633], [-77.34405171171932, 34.760709687580466], [-77.34392916628084, 34.76076667655923], [-77.3437235135598, 34.76059722976313], [-77.34370507139938, 34.76058203441433], [-77.34368549751254, 34.76057441809678], [-77.3436340939538, 34.76056558730188], [-77.34329705338256, 34.76050157153036], [-77.3431155944885, 34.76047398079147], [-77.34274681491023, 34.760417906603024], [-77.34252672392728, 34.76043880155525], [-77.34224423462788, 34.760522693241995], [-77.34186695655706, 34.76064753221468], [-77.34155641992635, 34.76064001227962], [-77.34114899451089, 34.76105644720907], [-77.34079764380843, 34.7612444732511], [-77.34067322165399, 34.76150289800253], [-77.34057923505674, 34.761802794928386], [-77.34033292136691, 34.762109433757956], [-77.33961278978441, 34.762623045670395], [-77.3395383301632, 34.76268218000524], [-77.33946760970824, 34.76271856763745], [-77.33891699238922, 34.76308071681157], [-77.33873439380007, 34.76317983840358], [-77.33869377611767, 34.76321067007058], [-77.33867940901705, 34.76323839008892], [-77.33865418173463, 34.76328275917002], [-77.33837422759194, 34.76376760165202], [-77.33821268709863, 34.76406115232047], [-77.33803907637855, 34.76454394009132], [-77.33807853873736, 34.76478288606588], [-77.3382413874466, 34.76487564059671], [-77.33855378104894, 34.76493657378468], [-77.33882210696206, 34.764938982533046], [-77.33905500265655, 34.765136388900586], [-77.33922193220573, 34.76521124645097], [-77.33930832985465, 34.76532737484835], [-77.33947240846204, 34.765566535086634], [-77.33943386354753, 34.76583664189393], [-77.33954001020464, 34.76651363219219], [-77.33953598458874, 34.76653256612649], [-77.3395373307935, 34.7665454246979], [-77.33955202485447, 34.76655003514599], [-77.33959705462632, 34.76656416360882], [-77.34017551469076, 34.76684313933868], [-77.34025044202127, 34.76692198317453], [-77.34040403831844, 34.767061623461316], [-77.34050294303532, 34.76736661276606], [-77.34050493355959, 34.767374464376246], [-77.34050410520032, 34.76737886077297], [-77.34050210122498, 34.76740386550334], [-77.34047390000941, 34.76786609327876], [-77.34041106311292, 34.76823871626451], [-77.34043603750095, 34.76835865853264], [-77.34072353574365, 34.76870318239733], [-77.34077839761945, 34.7687446574547], [-77.34119628380236, 34.76913802675093], [-77.34160537827664, 34.76917307416438], [-77.34096952858343, 34.769918046557905], [-77.34078848674102, 34.77017281118444], [-77.34078921126644, 34.77025973200365], [-77.3407340130363, 34.77035544247573], [-77.3404033360722, 34.77110829293583], [-77.3401277301199, 34.771325171764744], [-77.33983116422554, 34.77183781823934], [-77.33981293246808, 34.771861977553016], [-77.33937678072597, 34.772402873434345], [-77.33921149167334, 34.772605891225794], [-77.33898375768085, 34.772626523736314], [-77.33866415762247, 34.7727594095072], [-77.33864565334491, 34.77274912311271], [-77.33864229068004, 34.772747253815844], [-77.33850931284248, 34.77265684689908], [-77.33848129227941, 34.77259743238211], [-77.33851682642597, 34.77252076692026], [-77.3385389645444, 34.77243697418589], [-77.33845458299318, 34.77238571306193], [-77.33842424363665, 34.772130999763725], [-77.33839241242532, 34.77188037232252], [-77.33848081168759, 34.77155095806577], [-77.3383218554129, 34.77142138891424], [-77.33827230455233, 34.77113565001524], [-77.33833638284602, 34.771083384847685], [-77.33842523223436, 34.77063278020824], [-77.33852777949777, 34.770569773154506], [-77.33869103467214, 34.770349281408244], [-77.33906579848144, 34.77000864216543], [-77.33913589631979, 34.76998562488057], [-77.33928126817166, 34.769491728878094], [-77.33936294450385, 34.76904445080908], [-77.33929646895403, 34.76900227121939], [-77.33902004334465, 34.76860634514747], [-77.33900803009331, 34.76855444229782], [-77.33900830905762, 34.76852874914357], [-77.33898714648889, 34.76849305762419], [-77.33889177162922, 34.767595633153256], [-77.33855264567543, 34.76730239490959], [-77.33826061787522, 34.76687031489924], [-77.33811945988906, 34.7667267668401], [-77.33791701179712, 34.76635257270072], [-77.33787948805868, 34.766272292674294], [-77.33787104789295, 34.76624973510493], [-77.33760381837129, 34.765822710319064], [-77.33754540189827, 34.76571175865232], [-77.33745338946761, 34.76552523844639], [-77.33722368631986, 34.76517075992521], [-77.33701613245981, 34.76492852837431], [-77.33679562397157, 34.76471152308032], [-77.33659420502778, 34.76435894862571], [-77.33647753864078, 34.76416774066436], [-77.33645401737549, 34.76403083941603], [-77.33640314794283, 34.76373476806798], [-77.33629038838583, 34.76307852665151], [-77.33625578378204, 34.76276160831729], [-77.33615890814221, 34.76212180131199], [-77.33603023009277, 34.76135840631394], [-77.3359296926152, 34.76076190501498], [-77.33677509807396, 34.76078578501795], [-77.33713816461822, 34.761012821126954], [-77.33754262993251, 34.761096798845585], [-77.33780250114657, 34.7611444108079], [-77.33810759933381, 34.761214229890605], [-77.33821390208406, 34.76125629321771], [-77.33862519742651, 34.76123491229677], [-77.33874604438918, 34.76107891757809], [-77.33892457011501, 34.760861793839005], [-77.33900017787971, 34.760757544461725], [-77.33908781765142, 34.76058443488948], [-77.3394122248562, 34.760017146496395], [-77.33943810627616, 34.75972275414075], [-77.33986931848776, 34.759275773255204], [-77.33993465276886, 34.75920331275938], [-77.34001739676606, 34.759155951993755], [-77.3405800842425, 34.758891592469936], [-77.3408499311315, 34.75873751210352], [-77.34122343046457, 34.75850320448366], [-77.34130682110214, 34.75845243949116], [-77.34170419115371, 34.75821765947112], [-77.34201413789252, 34.758080068393376], [-77.34219858623797, 34.75801732429767], [-77.34260784878552, 34.75787810316054], [-77.34267487648546, 34.75786792697712], [-77.34276452473893, 34.75788036736758], [-77.34296508667708, 34.75790002177479], [-77.34328516686655, 34.75773309063136], [-77.34329830230755, 34.75771491947215], [-77.34323124679823, 34.7573987828364], [-77.34292850937295, 34.75729462803356], [-77.34285113691972, 34.757261489335434], [-77.34237226761061, 34.7572708946642], [-77.34225004785097, 34.75726842467505], [-77.34211813805109, 34.75730774388767], [-77.3416507705496, 34.757269124405894], [-77.34141073204576, 34.75722185420189], [-77.34109137581413, 34.757132610997175], [-77.34103080962, 34.75706749373948], [-77.340876865155, 34.75684399242417], [-77.34072989330608, 34.75662138255389], [-77.34066601514962, 34.756534986060586], [-77.34051648721726, 34.75633274520513], [-77.34027513405837, 34.75619636620861], [-77.34024490551198, 34.756147389683726], [-77.34018476623442, 34.75612965032233], [-77.33977918490982, 34.75611129692283], [-77.33927517228105, 34.75606573542729], [-77.3389821277107, 34.75614512359065], [-77.33852045685161, 34.75629073712974], [-77.33815898801289, 34.75635350940637], [-77.33771566528428, 34.756380128064876], [-77.33679386807384, 34.75642072352188], [-77.33647778691994, 34.756516770006854], [-77.33486209950134, 34.756451107812545], [-77.33428028494139, 34.75639736191291], [-77.3341163523612, 34.75639679004588], [-77.33382284730922, 34.75634177438108], [-77.33272911735017, 34.75601326542287], [-77.33194487462876, 34.7556235065627], [-77.33148616952637, 34.75539221195571], [-77.33081897055692, 34.75505577557904], [-77.33025914785104, 34.75475894096179], [-77.32989584098273, 34.75442927348535], [-77.32914214247482, 34.75404109047879], [-77.32888987580492, 34.75376843434972], [-77.32858986015268, 34.753411772989296], [-77.32840823559027, 34.753028755519665], [-77.32837618948204, 34.75246631632968], [-77.32830764607333, 34.752317842607496], [-77.32850811227686, 34.75163225347312], [-77.3287538480408, 34.751439832054174], [-77.32885061913406, 34.751297372086306], [-77.32904554565486, 34.75115617673844], [-77.32886240667852, 34.75110314935083], [-77.32868397685881, 34.7511496936251], [-77.32840864698662, 34.751303303510014], [-77.32822984565001, 34.75138565243388], [-77.32755964956309, 34.7513163533112], [-77.32718582881961, 34.751388255492635], [-77.32685313296737, 34.75144242048296], [-77.32636937731431, 34.75144307425749], [-77.3259583375613, 34.75148925155785], [-77.3257703722546, 34.75150940412034], [-77.32564897387466, 34.75152306119345], [-77.32548269527678, 34.75150473753551], [-77.3253553734286, 34.75150267198195], [-77.32526298931593, 34.75150530213812], [-77.32480625489379, 34.75133096107153], [-77.32428510556372, 34.75146874296557], [-77.32416532010727, 34.75147492200169], [-77.32402781234343, 34.751492198741104], [-77.32343712407393, 34.7519188594065], [-77.32322344251644, 34.752056191897836], [-77.32321342062806, 34.7521989046736], [-77.3231727307759, 34.752323756280035], [-77.32304679573417, 34.75253808294913], [-77.32293751528023, 34.75272406287531], [-77.32280126795804, 34.75295892689495], [-77.32278482723544, 34.75298866044358], [-77.32275950839423, 34.75303546886296], [-77.32264247199518, 34.75325184169355], [-77.32239465035842, 34.753710001461975], [-77.3223612199971, 34.753777730530764], [-77.32234362198083, 34.75383023004147], [-77.32226816711149, 34.754034158389686], [-77.32221038027208, 34.75407660528864], [-77.32198941292387, 34.75415475640606], [-77.32162771468465, 34.754299463237366], [-77.32153486972194, 34.754339314777276], [-77.32149416037595, 34.75435427892949], [-77.32140154747108, 34.75439653947335], [-77.32082618992612, 34.754716019547196], [-77.32059584360158, 34.75483503083555], [-77.32055413346843, 34.75499996489145], [-77.32047938302614, 34.755182037644346], [-77.32034079510316, 34.75551654566332], [-77.32028184975614, 34.75572794756361], [-77.32025963375293, 34.75581398523315], [-77.32008125633023, 34.75603945305244], [-77.3197418297294, 34.75638398383622], [-77.31958450643887, 34.7564925631486], [-77.31948884986502, 34.75660794483254], [-77.3195068586516, 34.756717651343294], [-77.31963172069419, 34.7567624425847], [-77.31988887806551, 34.75704052462016], [-77.31998170222107, 34.75714090173733], [-77.32008615916598, 34.75725969942587], [-77.3202685129793, 34.757475896422335], [-77.32038671773165, 34.75761781860841], [-77.32052448989803, 34.75781233933204], [-77.32062360906046, 34.75791462820871], [-77.32061136720785, 34.7580411219228], [-77.32043330975576, 34.75812574355927], [-77.32014242879605, 34.75826398387393], [-77.31955916987496, 34.75854776329446], [-77.31921311475652, 34.75871729989524], [-77.31957004380969, 34.75903363814322], [-77.32004635150685, 34.75945577261571], [-77.32099898151336, 34.76030003530617], [-77.32290429997806, 34.76198853566663]], [[-77.35832517148077, 34.78695044068937], [-77.35809777962615, 34.786199494908935], [-77.35887472442256, 34.78672173144588], [-77.35923988579776, 34.786569759951504], [-77.36069980171754, 34.785962158134595], [-77.3621596954263, 34.785354539597385], [-77.36312708552114, 34.78495187889233], [-77.36228552069983, 34.784921364872645], [-77.36185437012384, 34.78485520609404], [-77.36050354206384, 34.78477502334855], [-77.3599511595247, 34.78473778353402], [-77.3597731212825, 34.78473426628885], [-77.35947372733379, 34.7846874428849], [-77.35918001123646, 34.78456704697264], [-77.35917354858003, 34.784309624605996], [-77.35917714885368, 34.783918379506176], [-77.35922586295142, 34.783768700515445], [-77.35923193082283, 34.783561477950315], [-77.35922706956825, 34.78320989188872], [-77.35927272484655, 34.78298610468031], [-77.35951678490103, 34.78252973507537], [-77.35973203129188, 34.78226813904092], [-77.35991124367067, 34.78204995307037], [-77.36006355220843, 34.781926375784536], [-77.36013395078024, 34.78184955795731], [-77.36011481644121, 34.78174312465524], [-77.36021981097963, 34.78132037375305], [-77.36003395774098, 34.7808842791695], [-77.36006092280905, 34.78070554422729], [-77.36015592706443, 34.78057984366572], [-77.36031483592853, 34.78023517147724], [-77.3603612524145, 34.78016686211484], [-77.3604934177358, 34.78004585570484], [-77.36064314915602, 34.77987912008992], [-77.36073157762814, 34.779821780122916], [-77.36104145202806, 34.77957243594882], [-77.3611188747483, 34.77939808505487], [-77.36105830824253, 34.77906054177297], [-77.36101180707175, 34.77880139042322], [-77.36101191488409, 34.778692227581224], [-77.36097314357814, 34.77850824693055], [-77.36112061703344, 34.77841365804868], [-77.3612389098626, 34.77832163732106], [-77.36141431403593, 34.77814522706936], [-77.36157893990608, 34.77756370443937], [-77.36170232489647, 34.777365355723134], [-77.36177970711321, 34.77724527751143], [-77.36202063318105, 34.77699710038865], [-77.36206375349092, 34.77696107348748], [-77.3621007213646, 34.77694554808771], [-77.36242152141185, 34.77679744551416], [-77.36280963155212, 34.776634400329534], [-77.3630526117042, 34.77633208287972], [-77.36321727234186, 34.77598922835955], [-77.36338278181934, 34.775716524193854], [-77.36349199038547, 34.77555317660813], [-77.3639179138782, 34.77488291680148], [-77.363998100686, 34.77481340685768], [-77.36397498220153, 34.77478129961261], [-77.36446424282616, 34.774148314212155], [-77.36516612552484, 34.77410369915359], [-77.36529036042845, 34.77400196393772], [-77.3655443929848, 34.773676850127885], [-77.36555283738609, 34.77367181342644], [-77.36555749642025, 34.77367625126765], [-77.36555835600649, 34.7736817361692], [-77.36562024077026, 34.77409639045996], [-77.36569974445473, 34.774290426158515], [-77.36588350939735, 34.77487931042303], [-77.36629577797429, 34.775532208884464], [-77.36690016038807, 34.7751372850409], [-77.36708020112847, 34.77504039696114], [-77.3673807766704, 34.77487864307349], [-77.36763355770933, 34.77483927636378], [-77.36778714923102, 34.774815356480254], [-77.36841641522271, 34.77471735415122], [-77.36847509259051, 34.77471811815311], [-77.36909623059371, 34.77472620284624], [-77.36959266986963, 34.77453415337159], [-77.36930665751147, 34.77400148795016], [-77.36893871586047, 34.77360736638438], [-77.36827318406615, 34.773141521451], [-77.36811919704145, 34.7730560309541], [-77.3677386600654, 34.77277282008783], [-77.36773721122084, 34.77276651863692], [-77.36774637546414, 34.77274624930228], [-77.36805380676999, 34.772531763352426], [-77.3683962754521, 34.77271760335178], [-77.36900640806235, 34.77265140755706], [-77.36904031355833, 34.772647729009115], [-77.36905872503101, 34.7726457314208], [-77.36912089341492, 34.7726389861221], [-77.36971827599919, 34.77258383207079], [-77.37000772650481, 34.77244255630248], [-77.36980714847957, 34.772277741215035], [-77.36965036097521, 34.77214803350476], [-77.36927368387816, 34.771905394347485], [-77.36915433548641, 34.77173252749408], [-77.36880598126079, 34.771515817246396], [-77.36875230978258, 34.77149142149681], [-77.36869449302324, 34.77147771477303], [-77.36826222942682, 34.77137523662473], [-77.36812379781868, 34.771446442322976], [-77.36797695676489, 34.771330189145026], [-77.36760224587043, 34.77103310306744], [-77.36712033533237, 34.77100510331207], [-77.36697900781331, 34.770969971402614], [-77.36667603243775, 34.77102715768684], [-77.3665984416371, 34.77101158307009], [-77.3663398614646, 34.770961620634594], [-77.36620560046359, 34.77083254042142], [-77.36617393842714, 34.77074205225424], [-77.36615673750305, 34.7705358334897], [-77.36612063488954, 34.770317981770646], [-77.36614764730834, 34.76997343565608], [-77.36582072512701, 34.76955031949101], [-77.36581736743011, 34.76929864178632], [-77.36566438264165, 34.76886906490385], [-77.36561904712028, 34.76874176270768], [-77.36552655024556, 34.768637653540026], [-77.36519192268685, 34.768286760963875], [-77.36496455857457, 34.768121722701984], [-77.36467104780284, 34.76787119810807], [-77.36443095271676, 34.76769501928787], [-77.36432201611444, 34.767496710014825], [-77.3637596447513, 34.76700578778133], [-77.3636686258559, 34.76690469594256], [-77.36364199764367, 34.766887299738016], [-77.3636276365766, 34.76685465858856], [-77.36361461758099, 34.766768562250334], [-77.36350819741267, 34.76625363363937], [-77.36363728313847, 34.76599674965503], [-77.36369878650626, 34.765761112623984], [-77.36385117032982, 34.76565796604192], [-77.36406181214964, 34.76555076563526], [-77.36424701309684, 34.76539376091948], [-77.3644696091203, 34.76520397605271], [-77.36447867734509, 34.765195228369414], [-77.36442820156599, 34.765104319858025], [-77.36431223855084, 34.76485736721918], [-77.3643380323545, 34.764812497699495], [-77.3642761148597, 34.7648128013434], [-77.36422713780317, 34.764775429401375], [-77.36379255041169, 34.764268846733515], [-77.36372154447139, 34.764176645860275], [-77.36365231018898, 34.764067177754896], [-77.36349410677052, 34.76382507866768], [-77.36335393559473, 34.7635701290355], [-77.36329268500813, 34.763462680216534], [-77.36323577259682, 34.76336216704271], [-77.36314385251936, 34.76300338989057], [-77.36304679044682, 34.762736797913576], [-77.36303400699124, 34.76267786520286], [-77.36319211559282, 34.7623335622813], [-77.36331220243204, 34.762270468101846], [-77.36352822106927, 34.76213460176257], [-77.36388298535988, 34.76174831085287], [-77.36417608072944, 34.76169685413164], [-77.36449463410243, 34.76156587183415], [-77.36452373387384, 34.761165122789855], [-77.36409359669017, 34.76102303887579], [-77.36402876046715, 34.76084359488635], [-77.36405631179143, 34.760752165285595], [-77.36416430431876, 34.76077954325142], [-77.36463570057644, 34.76095118885611], [-77.36495037286184, 34.76098749089862], [-77.36533723301913, 34.76115859226353], [-77.36557905636651, 34.76099683267133], [-77.36568926755123, 34.7608655445358], [-77.36628402300364, 34.76065252172513], [-77.36685731594554, 34.76034203956848], [-77.36697118713445, 34.76027909659938], [-77.36708429761961, 34.76023534829405], [-77.36734087927815, 34.76013509608741], [-77.36759397519704, 34.7600142517415], [-77.36769753695273, 34.75996977486453], [-77.3681896220069, 34.759638752193226], [-77.36754071031345, 34.759276651923564], [-77.36720817013754, 34.75913363713127], [-77.36640609001205, 34.758879552208505], [-77.36605342621293, 34.758777839172126], [-77.36603354410838, 34.7587605236985], [-77.36602741691256, 34.75875401085064], [-77.36597074773526, 34.75872718648112], [-77.36500119230281, 34.75828878192055], [-77.36489646509257, 34.75825812444845], [-77.36480602474909, 34.75823477639287], [-77.36429511598057, 34.75811992864981], [-77.3641997961767, 34.7581073427439], [-77.36377466280618, 34.758045101716476], [-77.36366768758457, 34.75807154528148], [-77.36297942029123, 34.758239409768386], [-77.36297841125555, 34.75824004440305], [-77.36297725144831, 34.75824013628239], [-77.36297561416188, 34.75823963241687], [-77.36241336754358, 34.757972924681724], [-77.36214958384872, 34.75782976575833], [-77.36143929182761, 34.75767884974053], [-77.36135780599683, 34.757650305571346], [-77.36131387799031, 34.75763340993035], [-77.36114663131775, 34.75756734910894], [-77.36075516490575, 34.757494539170075], [-77.36068580337069, 34.75737871498758], [-77.36031215042058, 34.75695729383843], [-77.36029545558178, 34.75689048902084], [-77.36028371783976, 34.756862732036424], [-77.35984441702027, 34.75650517995527], [-77.35980889432884, 34.756476267477844], [-77.35977132815465, 34.75644569137873], [-77.35955986632746, 34.75627357813863], [-77.3593643732243, 34.75609546739774], [-77.35933119050159, 34.75605523490289], [-77.35930559224053, 34.75602224438377], [-77.35926849356304, 34.755904109981785], [-77.3592323803288, 34.75578860263842], [-77.3592514332468, 34.755722351958134], [-77.35929865109387, 34.75553581191426], [-77.35938990407594, 34.755221617059476], [-77.35943576648127, 34.755029602929895], [-77.3593627963416, 34.75471124345353], [-77.35931966354806, 34.75455815700731], [-77.35930645550161, 34.754497346363664], [-77.35923529162795, 34.75447736278902], [-77.3590502591883, 34.754300175164246], [-77.35888237130656, 34.75413080461567], [-77.35882752640387, 34.75407726509268], [-77.35877241128622, 34.7540086036697], [-77.35847280322288, 34.753699645130084], [-77.35849277420499, 34.75354628950113], [-77.35845240123567, 34.75321505985251], [-77.35859575696658, 34.752755537748186], [-77.35914950636082, 34.75271020296135], [-77.35943817885061, 34.75281911484261], [-77.3596923012317, 34.7529037729946], [-77.35979855777352, 34.752936148800245], [-77.36005441876866, 34.75299512707505], [-77.36019090128232, 34.75302859451699], [-77.36025119787429, 34.753041904905174], [-77.36039652833452, 34.753073985804065], [-77.36062233077891, 34.75291715461737], [-77.36126179382887, 34.7525639148249], [-77.36170970634544, 34.752144896951215], [-77.3622196992469, 34.751723055032386], [-77.3619705255563, 34.75124672493216], [-77.36172887990257, 34.751057097914966], [-77.36143411112573, 34.750856150145154], [-77.36092668314322, 34.750715895990986], [-77.36033501310517, 34.75055235130684], [-77.35981009365197, 34.750435598204874], [-77.3595958809199, 34.75033244152221], [-77.3592588963649, 34.75027101809272], [-77.35914756943961, 34.75019531618645], [-77.35891370370008, 34.750068716886204], [-77.35879826217071, 34.749794609440556], [-77.35876027706384, 34.74976110137539], [-77.35887700069281, 34.74952349096661], [-77.35902318000704, 34.749304914537014], [-77.35921021704853, 34.749211944055006], [-77.35904343338456, 34.74918047630836], [-77.35936704315007, 34.74870302860472], [-77.35913472546079, 34.748636063821145], [-77.3588881019699, 34.74854708044441], [-77.35884684473638, 34.74854324155806], [-77.35884313130208, 34.74853126406614], [-77.35858931935567, 34.74845158352821], [-77.35846040140183, 34.74844626942193], [-77.3582952028967, 34.74836279376625], [-77.35812496595932, 34.74831006149846], [-77.35803909520668, 34.74828369679703], [-77.3572211894511, 34.74821678905855], [-77.35696627921084, 34.74785279894602], [-77.35686939061068, 34.74769895220002], [-77.35681588851695, 34.74759110142503], [-77.3565318855292, 34.74728612864824], [-77.356473860802, 34.74721475071351], [-77.35642288733841, 34.747157664992095], [-77.35608132289964, 34.74677514484509], [-77.35606047061509, 34.74674428931331], [-77.35604589219778, 34.746722030677084], [-77.35603444722123, 34.746657702970715], [-77.35594163599899, 34.74604726217296], [-77.35592882397647, 34.74576333294732], [-77.35591153446606, 34.745676201872215], [-77.3559560315794, 34.74531180575834], [-77.35598714684085, 34.74526794378257], [-77.35607430538997, 34.745156784565964], [-77.35640557019204, 34.74472312238051], [-77.35695172197678, 34.74377830458646], [-77.35701086935485, 34.74369330469415], [-77.35701742785443, 34.743664362832384], [-77.3570288649491, 34.74363409933286], [-77.35741614950122, 34.74277587469487], [-77.35745253993497, 34.74262986171127], [-77.35751960910918, 34.742468165810855], [-77.3577042360418, 34.7421079232178], [-77.357794834607, 34.74183489338583], [-77.35808712768505, 34.741567971063844], [-77.35797028767666, 34.741333042094055], [-77.35796982789886, 34.7407134871918], [-77.3586975542478, 34.74050939409316], [-77.35902386559039, 34.74037074674485], [-77.35931987177878, 34.74029484962271], [-77.36043076335747, 34.74004794998224], [-77.36151769198631, 34.74002693613566], [-77.36278107384486, 34.737632058019955], [-77.36336020206325, 34.73694480904786], [-77.36334925983893, 34.73654385064552], [-77.36318375638227, 34.735019487139915], [-77.36288852348622, 34.734395506097705], [-77.36272908727003, 34.73410716023558], [-77.36263058435796, 34.73380549159295], [-77.362623312788, 34.73363430061626], [-77.36280075934405, 34.73350530760244], [-77.36349185473851, 34.73314283260406], [-77.36363450671307, 34.73313906251756], [-77.36371171860345, 34.73303589145566], [-77.36382214522598, 34.73298226173038], [-77.3644608655762, 34.7324231463145], [-77.36447615735027, 34.73240504459499], [-77.36452616097397, 34.73234701939601], [-77.36476354116542, 34.732121876454016], [-77.36481073584604, 34.73209489395667], [-77.3648809704362, 34.73207401720659], [-77.3651326940705, 34.73210404763932], [-77.365326901814, 34.731913945276844], [-77.36570894456611, 34.73183118204851], [-77.36581849172177, 34.73180453535884], [-77.36594630312425, 34.731824439984415], [-77.36619849738592, 34.731848740427694], [-77.36636507980455, 34.731984579323765], [-77.36657556662996, 34.73211666275664], [-77.36659468976808, 34.732332383183675], [-77.36726078371842, 34.73250992092737], [-77.36729454349674, 34.732582372735266], [-77.36734709082614, 34.73272766099338], [-77.36776940833865, 34.73280110899872], [-77.36756568599327, 34.73246803423286], [-77.36756912350258, 34.732371090636974], [-77.36773616601624, 34.731957222935335], [-77.36807238684065, 34.73179318538192], [-77.36824721152095, 34.73168972646625], [-77.36828553625317, 34.73166290971233], [-77.3685713421545, 34.731599897358485], [-77.36857249808874, 34.73160061765968], [-77.36879576032408, 34.73181164902697], [-77.36878798034168, 34.731827451507336], [-77.36877840113029, 34.73192282603659], [-77.36872405258525, 34.73227090072323], [-77.36874343962711, 34.73230622819178], [-77.36857743650322, 34.732615214406515], [-77.36796955632022, 34.73297838558782], [-77.36792044668046, 34.73339407669009], [-77.36804375660249, 34.73358288611345], [-77.36897956963448, 34.73422334821356], [-77.36919155716777, 34.734625887502304], [-77.3701306314878, 34.73562455968249], [-77.37229098694414, 34.73603914647013], [-77.37376707123558, 34.73653757109024], [-77.37578098724467, 34.73684106443151], [-77.37849481190109, 34.73792513693898], [-77.38106248076166, 34.738410480427326], [-77.38348673889504, 34.7384022903868], [-77.38481629080503, 34.73736248070137], [-77.38492665914747, 34.73660112167115], [-77.38623744135126, 34.73489881380215], [-77.38665729469099, 34.73353331936298], [-77.3861692516586, 34.73251297540429], [-77.38625724258486, 34.73227499659501], [-77.38632656841469, 34.7320507745559], [-77.38654223401959, 34.73146495402101], [-77.38661083412897, 34.73128038715599], [-77.38693115408951, 34.73094863310943], [-77.38739484004837, 34.73080421840389], [-77.3876375671472, 34.73072385850452], [-77.38796741664322, 34.73063675141994], [-77.38820796297642, 34.73063725865278], [-77.3883043678405, 34.73063566236144], [-77.38848032280013, 34.73065731284662], [-77.38870734846058, 34.73070559515721], [-77.38889549787451, 34.73080840297354], [-77.38928916500416, 34.73090874363052], [-77.38949387099838, 34.73095617085619], [-77.38975873095093, 34.73092830393524], [-77.38991078108894, 34.730953795635784], [-77.3900976728055, 34.73108522112511], [-77.39035422921793, 34.73115381645008], [-77.39068250076535, 34.731279709422154], [-77.39090826185317, 34.73131150980053], [-77.39115676519756, 34.73132714611613], [-77.39128342420135, 34.731418694007324], [-77.39151830336166, 34.73187920256661], [-77.39143106516066, 34.73210544858669], [-77.39149271370077, 34.73290835724753], [-77.39151642236395, 34.7329624964478], [-77.39242882724865, 34.73304982758604], [-77.39271040741913, 34.733131754374746], [-77.39293126524304, 34.73326546913501], [-77.39325674978596, 34.73360573397556], [-77.3936757699467, 34.73422547319987], [-77.39379019989966, 34.73469274889333], [-77.3937279623704, 34.734888890548895], [-77.39373634976697, 34.735187984740506], [-77.39334917548007, 34.73587467087448], [-77.39345230240967, 34.73661882047983], [-77.39405003070658, 34.737358001653824], [-77.39533935556474, 34.737809139625625], [-77.39636574780911, 34.7382180522009], [-77.39763368081336, 34.73844667601803], [-77.39876845299278, 34.738778088508695], [-77.3995599464695, 34.73872355709456], [-77.3999813880047, 34.73819464334843], [-77.4001221277455, 34.73740948374233], [-77.4003444833096, 34.73701323702334], [-77.40077983525495, 34.736237390241214], [-77.40078168186027, 34.73623154507842], [-77.40079956835937, 34.73619551813373], [-77.401218980066, 34.735450022112445], [-77.4013992689382, 34.73533578484341], [-77.40147344173161, 34.735117817633345], [-77.40173725151223, 34.73517273300865], [-77.4019978707887, 34.73522698306598], [-77.40227691141905, 34.73552319105101], [-77.40243832928475, 34.73555134307203], [-77.4032704480174, 34.73581104806531], [-77.40348788868691, 34.735769864480815], [-77.40435134570862, 34.7352500248155], [-77.40437106761128, 34.73474564982431], [-77.4044002356013, 34.73470800263264], [-77.4044066443302, 34.734675754652386], [-77.40457818177383, 34.734211115179185], [-77.40457896021984, 34.734209275808325], [-77.40458189676772, 34.73420749912175], [-77.40499933866947, 34.73414833110535], [-77.40514757252603, 34.73385113121482], [-77.40536118218685, 34.733731057107406], [-77.40557568502408, 34.73359419437257], [-77.40563300319329, 34.73346178351238], [-77.40566863755402, 34.73331203321195], [-77.40563975824034, 34.73295077384149], [-77.40568716612665, 34.732921606370105], [-77.4056364732115, 34.73278106002438], [-77.40566675053992, 34.73242014203399], [-77.40566258687592, 34.73235388998375], [-77.40597156121179, 34.73140038620145], [-77.40591522536546, 34.73132400832159], [-77.40558972663777, 34.73062446916571], [-77.40620633263427, 34.73081446898617], [-77.40723659264462, 34.73032416781116], [-77.40753001239743, 34.729652289991606], [-77.40771991320746, 34.72961801530174], [-77.40803388794069, 34.72893289255957], [-77.40813269396803, 34.72879655215784], [-77.40816570666311, 34.72875638491869], [-77.40817871240279, 34.728694799622524], [-77.40836802615826, 34.72854758568266], [-77.40840419932235, 34.72849227418328], [-77.40847024530139, 34.728533314502464], [-77.40852832207054, 34.72854903108839], [-77.40872512290913, 34.72876010396298], [-77.40922862483522, 34.7290918883492], [-77.40926110574013, 34.72912317023325], [-77.40928800968379, 34.72912496860713], [-77.40949257937076, 34.7292204242108], [-77.4096993544517, 34.729846146204224], [-77.41033574617848, 34.729840107388114], [-77.4104804359814, 34.72964201609634], [-77.41064007867611, 34.729621717100805], [-77.41141299388653, 34.729670245011874], [-77.41172314241535, 34.72947749397132], [-77.41218467765171, 34.729435497125124], [-77.41238170509729, 34.729112547614356], [-77.41266883099718, 34.72873076726871], [-77.41269381142902, 34.72866258698676], [-77.41329024791642, 34.72849443078802], [-77.41340280684564, 34.72843440127381], [-77.41362708693762, 34.72842983819726], [-77.4139509416004, 34.728426994009766], [-77.41444783445924, 34.728646467774624], [-77.41453067807784, 34.72863904723283], [-77.41460777800327, 34.72869212391237], [-77.4148602241514, 34.728861033066394], [-77.41480968779234, 34.72923792394603], [-77.41486846157711, 34.72942301120671], [-77.41483107796671, 34.72949171937938], [-77.41499494932732, 34.729540734598366], [-77.4155346000662, 34.72960021917694], [-77.41598568225177, 34.72966401092029], [-77.41676090960078, 34.72979363308755], [-77.417899899048, 34.72999738743725], [-77.41806082253395, 34.730063641350334], [-77.4191082701772, 34.730543927612985], [-77.41968810333651, 34.731037082923756], [-77.42027973949983, 34.73187404879333], [-77.42069265778302, 34.7324035970361], [-77.41981030478055, 34.733946263575504], [-77.41906987136363, 34.73470460166205], [-77.41886500673195, 34.73495127923393], [-77.41834140896502, 34.735669078253686], [-77.4172182126067, 34.73706990192625], [-77.41699879519808, 34.73730380318542], [-77.4166384233334, 34.737665234286034], [-77.4152446189561, 34.73905913276704], [-77.41616186549835, 34.74071682869545], [-77.416512006065, 34.741288843011574], [-77.41813861411562, 34.742158371428296], [-77.41835158314326, 34.74201248381985], [-77.41883682469785, 34.74210488767689], [-77.41899133588896, 34.74260529298001], [-77.41929768599478, 34.74317398380748], [-77.41959436918249, 34.743574460832356], [-77.4199875238402, 34.74407167442809], [-77.42013169239914, 34.74472260907517], [-77.42003200746707, 34.74517744370583], [-77.4200238922594, 34.745202546523096], [-77.42002351444155, 34.745238320389674], [-77.41993425969301, 34.745404284123616], [-77.41877369362649, 34.74618793013428], [-77.41886435787548, 34.74744979574771], [-77.41926795093639, 34.74770476982579], [-77.41990352217009, 34.74803398661969], [-77.42070933102937, 34.74767843093609], [-77.4215768260408, 34.74777623825004], [-77.4218049799432, 34.7478019602373], [-77.42268449813773, 34.74764232131867], [-77.42401690460812, 34.74877117006099], [-77.4240768001158, 34.748814934243235], [-77.42537452160869, 34.74799762445764], [-77.42580123799159, 34.74728903338544], [-77.42586353709319, 34.74810209382426], [-77.42570378863466, 34.74830582597504], [-77.42569610891026, 34.74852298416607], [-77.4253914879533, 34.749314814880194], [-77.42595091454514, 34.74985117943852], [-77.42616541542941, 34.75046073855473], [-77.42620596624637, 34.750637577577095], [-77.42706423707057, 34.75075793644112], [-77.42735832284917, 34.7507705293019], [-77.42752649037209, 34.75076521635822], [-77.42784389088565, 34.750847263581356], [-77.42794838023215, 34.75094752135344], [-77.42828208730481, 34.75144304466583], [-77.42826549966728, 34.751564202534084], [-77.42834046965062, 34.75180825274515], [-77.428781554851, 34.752241751558145], [-77.42947894073899, 34.752979347441425], [-77.42998653195592, 34.753524762810876], [-77.43034716347344, 34.753737484090784], [-77.43087167741652, 34.75398589429885], [-77.4309368758814, 34.75402119377623], [-77.43091970679798, 34.75406434093367], [-77.43096257462429, 34.75461583213276], [-77.43070899697585, 34.75470285028935], [-77.43034808241595, 34.75462623734146], [-77.43007618177575, 34.75467344358383], [-77.42975899256604, 34.754754360764345], [-77.42964990879665, 34.7549814492491], [-77.4294973590915, 34.75522199717271], [-77.42944852202803, 34.755534698713824], [-77.42977673595108, 34.755707691966066], [-77.43008045468707, 34.75598477850693], [-77.43023497277966, 34.75609949127724], [-77.43028710192132, 34.756160056739176], [-77.4303164866264, 34.75628869117817], [-77.43027253695669, 34.75633141466772], [-77.43019078973927, 34.75649270793501], [-77.43012731229075, 34.75650897260059], [-77.43011086768126, 34.75655445469923], [-77.43011956617758, 34.75659401148633], [-77.42995473161672, 34.75677942823164], [-77.42988190154168, 34.756855923017675], [-77.42976593225946, 34.75699298939189], [-77.42976322251215, 34.75718901113529], [-77.43002021901593, 34.75708183367435], [-77.43038493069716, 34.75692973239609], [-77.43045678879604, 34.75689976399717], [-77.43057068444485, 34.75671510613103], [-77.43064345047037, 34.756604194021634], [-77.43084523131117, 34.75644746423427], [-77.43100368642006, 34.75630733956975], [-77.43117099055634, 34.756155512105316], [-77.43122732956465, 34.75610595180026], [-77.43124460294395, 34.75609050380327], [-77.43128198872219, 34.75604649693446], [-77.43140690610544, 34.755889167987824], [-77.43150753022421, 34.75577217202564], [-77.43160582038234, 34.755679140399515], [-77.43172843115264, 34.755612059806325], [-77.43187675847476, 34.75562745726674], [-77.43204637291015, 34.7556214722915], [-77.4321246740389, 34.75565848565372], [-77.43217903246514, 34.755599881779794], [-77.43225546549257, 34.755498224485805], [-77.43227211348893, 34.755352879136936], [-77.43228642645218, 34.75524390755918], [-77.43234556726962, 34.75509901945403], [-77.43238612423401, 34.75496387760748], [-77.43253019411661, 34.754695843167454], [-77.43251869019241, 34.75460045907447], [-77.43275493164278, 34.75428158187169], [-77.43282692839998, 34.75418833338786], [-77.43282581892377, 34.75414871733013], [-77.43284740745857, 34.754117144083324], [-77.43303051188205, 34.753773096808786], [-77.43302375903592, 34.75365882846893], [-77.43305885333584, 34.7535825570046], [-77.43313856128432, 34.753419415709274], [-77.43320695255686, 34.753313533486924], [-77.43321383152856, 34.753294719153196], [-77.43326076640523, 34.7531825894126], [-77.43325291518306, 34.753115191791224], [-77.43322937558717, 34.75306503779929], [-77.43315878138738, 34.75288652836004], [-77.4330936420489, 34.75284467944726], [-77.43292763174566, 34.752744497350804], [-77.43278639037405, 34.75245781113349], [-77.43333577621765, 34.75227510513777], [-77.43358846021319, 34.75246886822213], [-77.43360536535687, 34.752468777565156], [-77.43361658635901, 34.75246833940016], [-77.43383124335057, 34.75246382510568], [-77.43392735675, 34.75244688159791], [-77.43393920224912, 34.75244129109454], [-77.43400145044512, 34.75236795010764], [-77.43403936137466, 34.75233652316802], [-77.43407999804401, 34.752263845945784], [-77.43416227613443, 34.752099945309226], [-77.43421517983501, 34.75198426182932], [-77.43421745298977, 34.75197301136078], [-77.43418129937609, 34.75182707132018], [-77.43421789227392, 34.75175993132098], [-77.43423208567992, 34.751565294369136], [-77.43435946231752, 34.75147768195347], [-77.43435914552057, 34.7514567111143], [-77.43432198497901, 34.75131718233901], [-77.43459954551311, 34.75123244003717], [-77.43464487734438, 34.75117566093844], [-77.43467215464966, 34.75116000061363], [-77.43496962340956, 34.751061668628516], [-77.43502774245643, 34.75105325181936], [-77.43527867806844, 34.75110171586124], [-77.43528533499106, 34.75110009979466], [-77.43529592647002, 34.751098404735465], [-77.43540249543338, 34.75091759490647], [-77.43564217455548, 34.750953673216024], [-77.4356551193595, 34.75095632794086], [-77.43572023883185, 34.750967123639086], [-77.43582038255722, 34.7508918809967], [-77.435831822808, 34.750871068846045], [-77.43600952679363, 34.75079230350136], [-77.43601135127851, 34.75079042384256], [-77.43601288105049, 34.75078984207536], [-77.43601478339362, 34.75078720957339], [-77.43601402532204, 34.75077676132186], [-77.43599882714159, 34.750645173313266], [-77.43593874393436, 34.75059572741008], [-77.4358995118136, 34.75047071774227], [-77.43597210435792, 34.750352481333394], [-77.43613979241324, 34.7503422405109], [-77.43617724755674, 34.75031367182812], [-77.4362739127566, 34.75032199939058], [-77.43632066187105, 34.750174048062554], [-77.43647811874669, 34.75028114217568], [-77.4365292808107, 34.75034939279617], [-77.4366063912668, 34.75039187153037], [-77.43662642850072, 34.75042046923699], [-77.43673010938198, 34.7504688992571], [-77.43674270484411, 34.75047481943474], [-77.43674767080964, 34.75048149476022], [-77.43680208147651, 34.750492980200306], [-77.4368160198196, 34.750498471725294], [-77.43685777449991, 34.750491033056356], [-77.43685789036208, 34.7504906642672], [-77.43687794381124, 34.75046313957823], [-77.43691954378127, 34.75041774926334], [-77.43692380391768, 34.750411391096655], [-77.43692540317356, 34.75040984026413], [-77.43693133969686, 34.7504048785491], [-77.43691722274264, 34.75026722399191], [-77.43707845629075, 34.75012030763158], [-77.43713502633457, 34.75006379685519], [-77.43716327163128, 34.75005480022578], [-77.43719308073237, 34.75002657285896], [-77.43733169136402, 34.749852984958494], [-77.43737867464482, 34.74965891104329], [-77.43753752225868, 34.74964537522103], [-77.43764943765441, 34.749557642286845], [-77.43770398244794, 34.749442514400215], [-77.43779492552781, 34.74945578205544], [-77.43781693859206, 34.74936584357367], [-77.43792305914674, 34.749221029267794], [-77.43794330629565, 34.749089925723325], [-77.4378208802394, 34.748965263877615], [-77.437788762411, 34.74893119261382], [-77.43779870142357, 34.7488980698887], [-77.43761676676344, 34.74856264992277], [-77.4376155491647, 34.74855704550256], [-77.43761347906307, 34.748553846860574], [-77.43739014778154, 34.74823780452563], [-77.43737349873015, 34.74821161468662], [-77.43733984575732, 34.74817873600994], [-77.43713957724508, 34.74799572264065], [-77.43699318160719, 34.74792386288112], [-77.43688723249518, 34.747759775703415], [-77.43674497920384, 34.74769139703081], [-77.43662859700333, 34.7476295483399], [-77.43661061535852, 34.74760769762022], [-77.43656623161203, 34.74758437082526], [-77.43649231667081, 34.747603125469574], [-77.43610982483918, 34.747586642561814], [-77.43597946003875, 34.74757277099371], [-77.4355515557244, 34.747833487764346], [-77.4354063957065, 34.747933164140136], [-77.43519227188769, 34.748228703684504], [-77.43518514465177, 34.74826451124514], [-77.4351137803857, 34.748348105770745], [-77.43477910054327, 34.748404037187925], [-77.43444405640815, 34.74844639735511], [-77.43411560938986, 34.748231413098466], [-77.43385208156266, 34.74827608464796], [-77.43377718142327, 34.74826304872562], [-77.4335544502384, 34.74819660829188], [-77.43338900723035, 34.74819600939756], [-77.43328829038106, 34.74821226098065], [-77.43320285369902, 34.748303561342624], [-77.43311976262903, 34.74838145867522], [-77.43311510046497, 34.74860671270167], [-77.43312601588498, 34.74864419187551], [-77.43313795170384, 34.74866733568544], [-77.43313067270428, 34.748702552873375], [-77.43307510322975, 34.749204420438964], [-77.43290068289863, 34.74934742795776], [-77.43271797125497, 34.74952395145209], [-77.43234096969375, 34.749418034741204], [-77.4322677038652, 34.749318738417436], [-77.4321481821724, 34.74905205234518], [-77.43175357503286, 34.74887949464953], [-77.43148087867885, 34.74899883409573], [-77.4310716312658, 34.74901995073421], [-77.43101601081754, 34.749044016267284], [-77.43069860485113, 34.74921659652166], [-77.4302685372142, 34.74957885823452], [-77.43004177797692, 34.749639271503646], [-77.42960506593886, 34.749655471951044], [-77.42959486709564, 34.74965705405349], [-77.42957933537188, 34.74966011853271], [-77.42919122166026, 34.749745504908134], [-77.42893442437912, 34.7497568396631], [-77.42877449822366, 34.749812596311656], [-77.42851593958152, 34.74984759222234], [-77.42837110524191, 34.749901460848285], [-77.42825861018972, 34.74987606338898], [-77.42815683668174, 34.749823978317885], [-77.42798487708527, 34.74971403035546], [-77.4279189043262, 34.74963896695607], [-77.42781462216732, 34.74952031548255], [-77.42797240228214, 34.74925017584016], [-77.42813609237913, 34.749191766099415], [-77.42815999329756, 34.749182704895006], [-77.4281906083438, 34.74917485406934], [-77.4283547819488, 34.749126990856645], [-77.42848439843266, 34.74909622999166], [-77.42876216476834, 34.749044649458845], [-77.42913478707995, 34.74896972485338], [-77.42916398772105, 34.748963943937746], [-77.42916976352285, 34.74896266100229], [-77.42917625400698, 34.74896021762379], [-77.42951796343603, 34.74884881434576], [-77.42955954020964, 34.74885156038759], [-77.42963783952244, 34.748759915060575], [-77.42981396784423, 34.748623999477516], [-77.42969551797648, 34.74832588832555], [-77.42968310491119, 34.74829464755871], [-77.4296809322359, 34.74828591320084], [-77.42961165540528, 34.74799425288006], [-77.42958763700497, 34.74788807666552], [-77.42953814699464, 34.7476715921478], [-77.42949485633075, 34.7474803854655], [-77.4293659603192, 34.747349345193456], [-77.42932225619745, 34.74730979073769], [-77.42912328259273, 34.74718897347906], [-77.42905307720955, 34.747132052718634], [-77.42893899707494, 34.747090106166524], [-77.4285423712043, 34.74698487063225], [-77.42847085632806, 34.74692808678717], [-77.42807552945773, 34.746339354346624], [-77.4280869860096, 34.746282027682035], [-77.42818314729661, 34.74581790448852], [-77.42816649140421, 34.745764446424985], [-77.42804525138362, 34.74576971570167], [-77.42785502669828, 34.74606717339851], [-77.42745965597899, 34.74599091198378], [-77.42738913673993, 34.74605391255929], [-77.42713564941064, 34.74601090423687], [-77.42688118192767, 34.74597192918221], [-77.42677713183284, 34.745935554891936], [-77.42669793388916, 34.745672564812914], [-77.42666620819264, 34.74528778837082], [-77.42672229938832, 34.74506565807089], [-77.42656314999948, 34.74465768558366], [-77.42655453331592, 34.74424286327948], [-77.42655702207213, 34.7441315068717], [-77.42657355590902, 34.74397369751507], [-77.42666214566381, 34.74375160012696], [-77.42652823344741, 34.743670920491525], [-77.42651602369887, 34.74358935205537], [-77.42629871932624, 34.74352469409694], [-77.42625744059423, 34.74349881164345], [-77.42621793950434, 34.74349048204246], [-77.42602914641559, 34.74345820802786], [-77.42593813790901, 34.74349424211108], [-77.42582738798987, 34.74350251195786], [-77.42558814016981, 34.74359567980106], [-77.42542904499254, 34.74359957244705], [-77.42541051093468, 34.74373081738951], [-77.42533644325091, 34.743858117936554], [-77.42525787037721, 34.7439570035658], [-77.42522926394999, 34.7440210382607], [-77.42510194178185, 34.74418204010398], [-77.42500558246495, 34.7444034570426], [-77.42471984332505, 34.74437976588114], [-77.42457475525372, 34.744447454442195], [-77.42420623531423, 34.74432946763673], [-77.42411847248943, 34.74424201022154], [-77.42377712723258, 34.74371901648627], [-77.42374635614222, 34.74362850195696], [-77.42370293908245, 34.7434625072341], [-77.42345696544189, 34.74304804607637], [-77.42341738071416, 34.742872945195735], [-77.42350568290232, 34.7425060031635], [-77.42349645963775, 34.742393591085346], [-77.4234130851641, 34.74224902268425], [-77.4233130651161, 34.74202369834103], [-77.42288761499297, 34.741849217491065], [-77.4224415868936, 34.74157500379241], [-77.42236357393459, 34.741526923701294], [-77.42234648123663, 34.7415035163965], [-77.42225143006254, 34.741399371745175], [-77.42210197884398, 34.741240666230624], [-77.42202231206164, 34.7412228679821], [-77.42181203543923, 34.74113473306995], [-77.42148112766307, 34.74123928737385], [-77.42135809363481, 34.74143552982071], [-77.42102105712905, 34.74165176842709], [-77.42045439304914, 34.7414547511559], [-77.42043635712302, 34.741437876337876], [-77.42043264810907, 34.74143187216983], [-77.41994508934859, 34.74093867085053], [-77.41973550557523, 34.7408374017208], [-77.41904190418538, 34.74064257297806], [-77.41875574310737, 34.740617080692346], [-77.41823439557771, 34.74057063296538], [-77.41787127133031, 34.739977407312224], [-77.4183265828727, 34.73947365551949], [-77.41858082620465, 34.73910729057897], [-77.41891636595675, 34.73850078753002], [-77.41913815454242, 34.73818395300419], [-77.41969011594533, 34.73739088859126], [-77.4201989186553, 34.73654965315852], [-77.42040266189548, 34.73638967293546], [-77.42082337999497, 34.73607422339], [-77.42086848714082, 34.73599343582867], [-77.42085419161482, 34.735907192361076], [-77.42074991126955, 34.735392903847696], [-77.42068728563032, 34.735084059908644], [-77.42091717832882, 34.73473163300996], [-77.42163475413284, 34.734584067855785], [-77.421803539539, 34.73452130760903], [-77.42199514823989, 34.734538612104615], [-77.42257231894355, 34.73444462356215], [-77.42273722574193, 34.73441038180317], [-77.4231509526837, 34.734296712004905], [-77.42336742682755, 34.73424807242846], [-77.42366935665746, 34.734177144133554], [-77.42383637463539, 34.73414393756147], [-77.42412452356645, 34.73398941362854], [-77.42423942350412, 34.733817342266256], [-77.42425266931237, 34.73381340918284], [-77.42442463306112, 34.73373191498282], [-77.42458105394826, 34.73365722433191], [-77.42462213267405, 34.73364461279628], [-77.42488445440958, 34.73373538826117], [-77.42520426826638, 34.73359553217591], [-77.42540549457917, 34.73311621984246], [-77.42541484757355, 34.73311007121085], [-77.42541658248813, 34.73310914053098], [-77.4254186327542, 34.73310814782619], [-77.42558301283805, 34.73300715268706], [-77.42574549771166, 34.73297440302891], [-77.42576248622532, 34.73302778441213], [-77.42588315843861, 34.73327376512373], [-77.42584463088252, 34.73337943339317], [-77.4258261973003, 34.7337784410123], [-77.42576314746286, 34.733790883050766], [-77.42582731670288, 34.733833035006064], [-77.42584857384033, 34.73383773871327], [-77.42586727185025, 34.7338455550841], [-77.42640577855748, 34.73412778404936], [-77.42654589940068, 34.73420653615719], [-77.42687958473374, 34.734286887076294], [-77.42695663986666, 34.73443975074631], [-77.42715884133953, 34.73461678769211], [-77.42731979903385, 34.73472316734315], [-77.42749454806118, 34.73479647191406], [-77.42755845284059, 34.73473918008704], [-77.42759289735638, 34.73470996090962], [-77.42758027935005, 34.734664190731785], [-77.42754892698368, 34.73460863719524], [-77.4273337822625, 34.73454381720405], [-77.42730725758591, 34.73433059339821], [-77.42709205666743, 34.73419826201497], [-77.42716612537265, 34.733722202451034], [-77.42716500577096, 34.73372002783989], [-77.42699653401365, 34.733345341974335], [-77.42691796954745, 34.733076401629866], [-77.4270230022967, 34.73288791948122], [-77.42703374792845, 34.732837338173546], [-77.42694343179157, 34.732612535036544], [-77.42697947316557, 34.732538835682035], [-77.42689912268197, 34.732493210361454], [-77.42688591084055, 34.7324693615227], [-77.42690374039216, 34.73223283275664], [-77.42689242296666, 34.73215526675955], [-77.42689319442766, 34.73208938063247], [-77.42687392115802, 34.732057340763575], [-77.42685690614685, 34.73201587697784], [-77.42682473472374, 34.73192568552342], [-77.42680102179462, 34.731864557877266], [-77.42676369344855, 34.73178417932604], [-77.42671717566989, 34.731676341154], [-77.42652581905921, 34.73149850142866], [-77.42627669890562, 34.73152311580152], [-77.42604570775302, 34.73151004266033], [-77.42588304990936, 34.731504061450806], [-77.42578192327949, 34.731462510860425], [-77.42565176850053, 34.73151568320799], [-77.42539938223162, 34.731585297685], [-77.42520265929261, 34.73163955810149], [-77.42502061705534, 34.73171425524998], [-77.4249303781665, 34.73182258823247], [-77.42479847318103, 34.731928318503165], [-77.4247214477905, 34.731973277611], [-77.42459740876514, 34.73198573151255], [-77.42445506592614, 34.73200714954167], [-77.42424400198246, 34.73194098749], [-77.42403908971038, 34.731900635074815], [-77.42388683582945, 34.73175524447997], [-77.42369834192064, 34.731797227158275], [-77.42327271218241, 34.73180220080879], [-77.42324122845179, 34.731798156986684], [-77.42309066733179, 34.73229621083421], [-77.42308991532026, 34.732297374235884], [-77.42308974544174, 34.73229852039217], [-77.42308337098416, 34.73231576019521], [-77.42307834565389, 34.73230134994413], [-77.42307691987486, 34.73227756189289], [-77.42316437772901, 34.73176433004915], [-77.42293991533793, 34.731466339084186], [-77.42290559858067, 34.73124969649599], [-77.42292954521756, 34.73112316407192], [-77.42309669542811, 34.73081406727281], [-77.42316949880168, 34.730647971273854], [-77.42340760420691, 34.73037852223563], [-77.42351903792837, 34.73021108926287], [-77.42359046851419, 34.73012515688109], [-77.42368054453898, 34.729818305467326], [-77.4233240812508, 34.72968984214366], [-77.42320386492726, 34.72968527717616], [-77.42301826432072, 34.729648165206015], [-77.42225123102334, 34.72943243518054], [-77.42201446730148, 34.729364419605076], [-77.42159729001408, 34.728980190263684], [-77.42115991684918, 34.72863776852384], [-77.42103464678172, 34.72831983343595], [-77.42097521427692, 34.72820363093484], [-77.4206263341603, 34.72796757530717], [-77.4205334952301, 34.727836388383636], [-77.42021465739957, 34.72760000805115], [-77.42000778837833, 34.72743775814416], [-77.41987660144298, 34.72738753294048], [-77.41898473668087, 34.7270858029641], [-77.41879871994988, 34.727184941643955], [-77.41862935561785, 34.72701498391072], [-77.41826403076873, 34.72681736340616], [-77.41792843433436, 34.726855328897514], [-77.41761531291685, 34.72684353030725], [-77.41738735582916, 34.72664023823546], [-77.41705396213146, 34.726568030394866], [-77.4167238758863, 34.726158121505094], [-77.4166590237874, 34.72605126419769], [-77.41667935504015, 34.72564774880853], [-77.41666471981455, 34.72557834480441], [-77.41674210430213, 34.72512389422218], [-77.41672193262748, 34.725039257181365], [-77.41632459357756, 34.72440529581118], [-77.41619604556757, 34.72402373749166], [-77.41607903987358, 34.723696268034615], [-77.41635312718557, 34.72353248492654], [-77.41637654645334, 34.723490909418146], [-77.41617516719326, 34.723170787738574], [-77.41613038692272, 34.72311586108952], [-77.41584699516615, 34.72281903997688], [-77.41552595031814, 34.72238466826162], [-77.41530816896359, 34.72215104039207], [-77.41523518535479, 34.72177956725075], [-77.41512603023928, 34.721334286084414], [-77.41487811565364, 34.721039927098666], [-77.41482000238409, 34.72056920125712], [-77.41442688867508, 34.72014331799551], [-77.41398120927293, 34.72002630524599], [-77.41382815640983, 34.71999705865702], [-77.41377138091227, 34.72006023364031], [-77.41374131084214, 34.72008327416753], [-77.41344853881566, 34.72020100036179], [-77.4134214318585, 34.72023621042378], [-77.41340310980944, 34.72026739609221], [-77.4132820786703, 34.72048177261524], [-77.41317635422035, 34.7205836294931], [-77.41317502699859, 34.72058569116242], [-77.41309955645465, 34.72069749176025], [-77.41306989378282, 34.720783624367414], [-77.41303804506347, 34.72086599334594], [-77.41311184028415, 34.72098133905004], [-77.41315037166643, 34.721230416837344], [-77.41319564295556, 34.72124662343236], [-77.41321365261783, 34.72139266746689], [-77.41327385897799, 34.721597102632174], [-77.4130209960181, 34.72182578649911], [-77.41283997988653, 34.722004469549844], [-77.41252510845631, 34.72241895720655], [-77.41252862038537, 34.722454684626975], [-77.41246222580705, 34.7224994740268], [-77.41196708975485, 34.723095205152816], [-77.41187016082793, 34.72334261538512], [-77.41140493455084, 34.72367238470639], [-77.41109681833797, 34.72363126517384], [-77.41085586387945, 34.723618379679195], [-77.41078540344483, 34.72359077445943], [-77.41047777395458, 34.7236528656787], [-77.41017450215864, 34.72384551452225], [-77.41015422395576, 34.72386071812714], [-77.4101482882092, 34.72386232407255], [-77.41014042053706, 34.72387490844684], [-77.41000743254116, 34.72408893473169], [-77.40994044066211, 34.72427064038641], [-77.4099073397979, 34.724333483620086], [-77.40984947494593, 34.72442739215863], [-77.4097973441736, 34.72485412485452], [-77.40968761595495, 34.72535354418462], [-77.40968195264567, 34.72537287928926], [-77.40966980076179, 34.72539500584604], [-77.40943452961523, 34.72584545789549], [-77.40923361687737, 34.72610757657047], [-77.40913268146738, 34.72629900276203], [-77.40909966441659, 34.72652542625374], [-77.40909532592121, 34.72684505044779], [-77.40913484874508, 34.72695710172506], [-77.40919230578115, 34.72714758319429], [-77.40924859476027, 34.72735601958452], [-77.40931766523416, 34.727481921195064], [-77.40933265870544, 34.72754414120749], [-77.40935002584895, 34.72770971859603], [-77.40935602305429, 34.727757572156044], [-77.40936071045272, 34.72781158323907], [-77.40927740893898, 34.72779035106255], [-77.40900832381246, 34.727782619780726], [-77.40889914484384, 34.727805149129296], [-77.40870102678076, 34.7278253762501], [-77.40845450481052, 34.72782638339378], [-77.40834832032542, 34.72784764537607], [-77.40783523440652, 34.728081692186606], [-77.40773460150272, 34.72814574986128], [-77.40759160679922, 34.72824644635062], [-77.40741419981833, 34.72837009243344], [-77.40695990039913, 34.72831028515545], [-77.40693488451633, 34.72830012300749], [-77.4069108035864, 34.72829527037231], [-77.40636422927025, 34.72805675933498], [-77.4062646216823, 34.72809149333011], [-77.40594667725671, 34.72821537016122], [-77.40564430841053, 34.72832853277314], [-77.40557440169142, 34.7283549084953], [-77.40549963451676, 34.72838305384338], [-77.4052021688623, 34.7284945177512], [-77.40489839125107, 34.72868999734566], [-77.40485452850167, 34.728716542276274], [-77.40457733772519, 34.72896933234579], [-77.40443270114653, 34.72912812449776], [-77.40430402781028, 34.72927068005515], [-77.40418194203521, 34.729468462188336], [-77.40419142980936, 34.729602859988894], [-77.4041886288079, 34.7298302009534], [-77.40402870556551, 34.73010506908625], [-77.40411742419941, 34.73038803010106], [-77.40414166002509, 34.73070370097918], [-77.40424770767177, 34.73093541245942], [-77.40441936133335, 34.731154825910565], [-77.40466522421282, 34.731707289742616], [-77.40479932227123, 34.731889094509285], [-77.4047519171818, 34.73203538799336], [-77.40476677293827, 34.73227177217898], [-77.40479852567678, 34.73261081193266], [-77.40481796748838, 34.732773997044475], [-77.40476468164931, 34.73301653485183], [-77.40467994855875, 34.73312846233396], [-77.40444948669456, 34.733249424876036], [-77.40417231933158, 34.73340817937456], [-77.4040676186863, 34.73347342502835], [-77.40381557464141, 34.73370945557632], [-77.40368278827623, 34.733897954618214], [-77.40355084817973, 34.734194907346975], [-77.4035107067685, 34.734396893961595], [-77.40345863772403, 34.73462231099], [-77.40344402004123, 34.73465313327668], [-77.40313546835613, 34.73477333079916], [-77.40309665474352, 34.73477872345441], [-77.40260205778623, 34.73459042680492], [-77.40255356938327, 34.73456862334773], [-77.40249638692828, 34.73454557032959], [-77.40199235622495, 34.7342925497304], [-77.40152048366141, 34.73414862370587], [-77.40140313454161, 34.73411312231209], [-77.40131634883704, 34.73411275194923], [-77.40121542143685, 34.7341532189844], [-77.40096371317128, 34.734284444783135], [-77.40064898163607, 34.73450273435103], [-77.40064299286956, 34.734508319288004], [-77.4006392505751, 34.734510820829115], [-77.40060313174588, 34.73453101835667], [-77.40004225531963, 34.73486113724142], [-77.39997028756642, 34.73490495650543], [-77.39986499667057, 34.734995235817635], [-77.39927463479609, 34.735151770670214], [-77.39927198195366, 34.73525974395962], [-77.39926865069746, 34.73570881216459], [-77.3987333402257, 34.73620304859429], [-77.39834790692377, 34.73674194300905], [-77.39770431440985, 34.736631954267736], [-77.39687672467156, 34.736455489598306], [-77.39635473973759, 34.736476170421724], [-77.39502532786707, 34.73596324382146], [-77.39475963930185, 34.73524980964252], [-77.39470016210892, 34.73520613387389], [-77.3947216404186, 34.735041587922424], [-77.39480421122305, 34.73427013411773], [-77.39481849855422, 34.73415210471204], [-77.39489276168416, 34.73408562629162], [-77.39509234910818, 34.7337629266937], [-77.39513040550426, 34.73370207332911], [-77.39541181889547, 34.733437739320365], [-77.39553322545156, 34.733283846081015], [-77.39581098223498, 34.73295788633804], [-77.39579171835757, 34.73281512932546], [-77.39546551737601, 34.73247574326344], [-77.39527395756357, 34.7322890794503], [-77.39505386400688, 34.73199785302313], [-77.39499192848514, 34.73189751652868], [-77.39472132936041, 34.73162677702447], [-77.39443738860717, 34.73159853205544], [-77.39427629598262, 34.73158088644418], [-77.39387723817056, 34.73153226932783], [-77.39382168899799, 34.73151050976746], [-77.39324279074171, 34.73135038097244], [-77.39324330936539, 34.73129376804877], [-77.39319381142437, 34.73078795231562], [-77.39299111305402, 34.730562647659525], [-77.39283024486227, 34.730506856438595], [-77.39262272312044, 34.730373451906566], [-77.39252281024449, 34.73031151373741], [-77.3922814966979, 34.73018918075558], [-77.39228118108497, 34.73018903320775], [-77.39228090187419, 34.7301889726391], [-77.39201735101284, 34.73013180109159], [-77.39197678323953, 34.73013313139187], [-77.3916626867032, 34.730223677501165], [-77.39162721742106, 34.73023300934844], [-77.39162161971728, 34.730232994410564], [-77.39157417392542, 34.73026056654464], [-77.39116513761864, 34.730637319988034], [-77.39096170876863, 34.73065052697281], [-77.39086763400095, 34.730641236073325], [-77.39075959271959, 34.73060005212879], [-77.38994785123818, 34.73048919777118], [-77.38964418378174, 34.730437809576124], [-77.3892506203589, 34.73033630067212], [-77.38904487084537, 34.730293295521406], [-77.3888977985444, 34.73026865737715], [-77.38843938317257, 34.730170078178865], [-77.388373661267, 34.73015983548273], [-77.38809619196869, 34.730122645644286], [-77.38787486987952, 34.73009246345026], [-77.38781870846874, 34.73009923264429], [-77.38769441394699, 34.73009221781391], [-77.38764937032019, 34.72996629258856], [-77.38734294035288, 34.729528714928975], [-77.38724813822108, 34.72938558920236], [-77.38727449344597, 34.72927594416515], [-77.38714767446965, 34.729096507274136], [-77.38703952087657, 34.72910038466095], [-77.38693568875077, 34.729157384777885], [-77.38690313496639, 34.729251533265284], [-77.38673356468664, 34.72941892139484], [-77.38663590485717, 34.72956289721543], [-77.38659549093794, 34.729597507289014], [-77.38645890301561, 34.729714479358016], [-77.38631925708589, 34.730060012284774], [-77.38631775712078, 34.73066589354473], [-77.38594829596906, 34.731048542917954], [-77.38585964228253, 34.73128706342674], [-77.38579085953029, 34.73155262349357], [-77.38569346837261, 34.73181863779692], [-77.38562118649745, 34.73205242063774], [-77.38532006543058, 34.73286682771341], [-77.38543413323221, 34.733105307487854], [-77.38533600305864, 34.733424457518666], [-77.38468562056872, 34.734269106787835], [-77.38217074471937, 34.73423515822847], [-77.38201838068193, 34.7342425402775], [-77.37949945422616, 34.734462400855236], [-77.37866938058349, 34.73449603538523], [-77.37625597672144, 34.73436665525895], [-77.37447493582651, 34.73409825575783], [-77.37409932605343, 34.73397142481765], [-77.37434866291113, 34.73369907292044], [-77.37321651983227, 34.732554081154724], [-77.373021484779, 34.73211609150638], [-77.37281937551913, 34.7318269745727], [-77.37263761991356, 34.731590393349016], [-77.3722451103604, 34.731173649659766], [-77.37203065327874, 34.73112119531696], [-77.37144278638127, 34.73128824381797], [-77.37123577273027, 34.731317969296725], [-77.37081378692028, 34.731343244032445], [-77.37088487931211, 34.73174025982078], [-77.37076677386068, 34.732047965843066], [-77.37051535939348, 34.73227427808457], [-77.3702608627905, 34.73200018908746], [-77.36999904043576, 34.73184375713742], [-77.36978635546862, 34.73145345078446], [-77.36947773939883, 34.73123055583629], [-77.36913879198553, 34.731163241135334], [-77.36900529374773, 34.73114109219332], [-77.36883063666919, 34.731188516566974], [-77.3683831319469, 34.7312214384895], [-77.36776801792307, 34.731465456641274], [-77.36772360451445, 34.73148425472871], [-77.36770525264477, 34.73149373643262], [-77.36766432059424, 34.731509332184444], [-77.3676017049645, 34.731488304704634], [-77.36672125921186, 34.73144649228855], [-77.36652090180152, 34.73144777031567], [-77.36630263141883, 34.731501910984605], [-77.3659146874157, 34.7314731474205], [-77.36556472647814, 34.73154790322678], [-77.36528329272716, 34.731585261935884], [-77.36494001265089, 34.731571242661545], [-77.3646604897086, 34.73166777060359], [-77.36441534364397, 34.73164380079612], [-77.36429806952515, 34.73164077537147], [-77.36403321497332, 34.731765674727534], [-77.36385111930227, 34.73188303191565], [-77.36367096986132, 34.732028248240155], [-77.36313529532232, 34.732525291788114], [-77.36251668876564, 34.7328638115294], [-77.36228149739836, 34.73304533676245], [-77.36206951697827, 34.73322296770493], [-77.36157608217249, 34.73369682822919], [-77.3614861423121, 34.733790470759054], [-77.36141450915005, 34.73395264471518], [-77.36130170644097, 34.73430318438512], [-77.36149880645803, 34.7349047442558], [-77.36159703007482, 34.735237403139124], [-77.36149748219765, 34.735465735270054], [-77.36154222951214, 34.73622008642666], [-77.3615687214508, 34.73719083652975], [-77.36109826790073, 34.737749121739185], [-77.3601500238495, 34.73807930402408], [-77.35955343069443, 34.73828703984155], [-77.35881701507593, 34.73854345145126], [-77.35843317684517, 34.738677099355854], [-77.35727431016247, 34.738820957658895], [-77.3572769878904, 34.73972964972876], [-77.35739419837232, 34.74019931419656], [-77.35696471386828, 34.740747293023], [-77.35722279831575, 34.74111960711615], [-77.35722755901566, 34.74133239704392], [-77.35731305019078, 34.74167424233175], [-77.3572992498292, 34.74184923611408], [-77.35725229661298, 34.74199252281893], [-77.35711841435324, 34.74218834657455], [-77.35699853067737, 34.74240594778664], [-77.35662966473545, 34.74274282406135], [-77.35648903081662, 34.74323106148679], [-77.35648330089629, 34.74325030166777], [-77.35647202160808, 34.74327399706116], [-77.35618678295458, 34.74377838767558], [-77.35577734655782, 34.74459676944761], [-77.3556438687287, 34.744827680032486], [-77.35554928027223, 34.744951506761126], [-77.35538543168626, 34.74568665456035], [-77.35537228714936, 34.74583972525609], [-77.35538255350758, 34.74608026698397], [-77.35530820962558, 34.74633590372005], [-77.35531952343258, 34.746525776726166], [-77.35545356429803, 34.74678139117334], [-77.35546853222165, 34.74680128130983], [-77.35547048467214, 34.746803875823545], [-77.35547292048494, 34.74680760134989], [-77.35561708584717, 34.747024582145016], [-77.35563153754748, 34.74707421280451], [-77.35574175364259, 34.747251161309244], [-77.35581496571503, 34.747327340150434], [-77.35589016402844, 34.747433289705185], [-77.35601214119512, 34.747569893225254], [-77.35610833657672, 34.747688226012], [-77.35618311858475, 34.747832599441146], [-77.35629031295534, 34.748117855577135], [-77.35629983180574, 34.748137043898986], [-77.35634563707217, 34.74820977682297], [-77.35649917032782, 34.74860934422677], [-77.35661041362376, 34.7486865876851], [-77.35669141011525, 34.74879917636974], [-77.35703963136098, 34.74914488309979], [-77.35727780240458, 34.74947722854314], [-77.35733795873541, 34.7497038576756], [-77.35721231654682, 34.75025384338023], [-77.3570921746622, 34.75047747846574], [-77.35693044258862, 34.750805744502145], [-77.35699739292674, 34.75097787402204], [-77.35675036302396, 34.75112110764097], [-77.35658118081464, 34.751468599511114], [-77.35708871496455, 34.75142078679296], [-77.35714875535132, 34.75134920566042], [-77.35747766369549, 34.75091194672035], [-77.35766704728161, 34.750656599578946], [-77.3581215651646, 34.75067801646531], [-77.35848010643744, 34.75077433410224], [-77.35850271274467, 34.75077907149344], [-77.35851085466459, 34.75078421718066], [-77.35874784164803, 34.750984746481336], [-77.35906987963364, 34.751180751028485], [-77.35868679314129, 34.75155977007197], [-77.35844801976783, 34.75175350831183], [-77.35816575062083, 34.751972457189154], [-77.35788304905176, 34.75212431684898], [-77.35749020634974, 34.752372376380954], [-77.35759730380528, 34.75265814966364], [-77.3575061658634, 34.75285757111645], [-77.35770681362573, 34.7532446367989], [-77.3577421575332, 34.75331256054737], [-77.35775055712783, 34.753328720844735], [-77.35776384873824, 34.75335622087198], [-77.35785610498932, 34.75403598344353], [-77.35804077456167, 34.754246335741925], [-77.35832706984112, 34.75446219104327], [-77.35862560291307, 34.75451407904747], [-77.35868904047375, 34.754578008385025], [-77.3587486993558, 34.75463654029544], [-77.3588008885519, 34.75468909358667], [-77.35884519886302, 34.754789241812496], [-77.35887241388717, 34.75483119293309], [-77.35887871107188, 34.754920720336756], [-77.35883479243573, 34.75511210608309], [-77.35875363584543, 34.755448144844785], [-77.3587166960312, 34.75561570314282], [-77.35872164619741, 34.7557356074586], [-77.35873558403433, 34.75610049536024], [-77.35875617081003, 34.75612702723778], [-77.358936196729, 34.75635904098693], [-77.35908533681291, 34.7565398663433], [-77.3591330672566, 34.75660184867952], [-77.35919789275705, 34.75666867847168], [-77.35937320885554, 34.75681137286411], [-77.3595586161493, 34.75696227877752], [-77.35960356333501, 34.75702842750505], [-77.3596493475246, 34.75717683693988], [-77.35971654959312, 34.75733575394151], [-77.35979406303369, 34.757645925924464], [-77.35984785154517, 34.75789734193958], [-77.35986600361248, 34.758009263099595], [-77.35993280517808, 34.75826345627259], [-77.35994978966953, 34.75833905174651], [-77.35996177366687, 34.75836908786148], [-77.36010563429718, 34.75856002892175], [-77.36012964751066, 34.758594947539635], [-77.36015111375595, 34.7586003037013], [-77.36043661189805, 34.75859139944811], [-77.36072657169231, 34.75847172063603], [-77.36109282385952, 34.75839457512869], [-77.36135316022174, 34.758442349454526], [-77.36168112847363, 34.75843157304077], [-77.36192468692603, 34.75858697805744], [-77.36206983017041, 34.758679588280344], [-77.36217923819936, 34.758779152268666], [-77.36257923801642, 34.759084593793624], [-77.36272047342774, 34.759124370898974], [-77.36335840502473, 34.758931289309295], [-77.36339898342324, 34.7589280747091], [-77.36342342787229, 34.7589127003323], [-77.36371321962949, 34.75869336164139], [-77.36394986065744, 34.75857908471525], [-77.3640812253252, 34.75854661224098], [-77.3641675470525, 34.75855925004683], [-77.36431539240128, 34.75857432362696], [-77.36447591688537, 34.75860185223752], [-77.36463322208328, 34.758700853181836], [-77.36474867121161, 34.758767109204804], [-77.3650535499952, 34.75896538704512], [-77.36515738787593, 34.759116264343334], [-77.36527122233082, 34.75917669670435], [-77.36556727934482, 34.75948007554604], [-77.3657639247372, 34.759689098002745], [-77.36581608419714, 34.75973452406671], [-77.36589465673543, 34.759818992231914], [-77.36578926797638, 34.75984320874781], [-77.36567839937996, 34.75998364526243], [-77.3655486596505, 34.76019836524417], [-77.36541618783998, 34.760210750615286], [-77.36512151398392, 34.7602483822752], [-77.36475765959659, 34.76017521170047], [-77.3643690520525, 34.760074446091856], [-77.36402106657685, 34.759945738394784], [-77.36376899904334, 34.75993174101973], [-77.36348917559809, 34.76009551114556], [-77.36335421166453, 34.76035239038891], [-77.36330408436179, 34.76078040336506], [-77.36341198496754, 34.76116116549647], [-77.36342183632956, 34.76119039157618], [-77.36328841248682, 34.76167943880506], [-77.36326533776315, 34.761704564095936], [-77.36325169102926, 34.76171314729877], [-77.36294577805073, 34.76193058750393], [-77.36278941967993, 34.76208749012284], [-77.36269576587976, 34.76227038321278], [-77.3625125875299, 34.76289494382894], [-77.36253065538509, 34.76311537304282], [-77.36252128087926, 34.76333757884144], [-77.3626942405896, 34.763632707924714], [-77.36273049308177, 34.76369673355573], [-77.36276454004232, 34.763756460423735], [-77.36294137668494, 34.76405519304075], [-77.36312554505668, 34.764356583495946], [-77.3631596842406, 34.76441056183807], [-77.36320546598338, 34.764470009211706], [-77.36333075027302, 34.76478559892085], [-77.36332834240349, 34.764802739065395], [-77.36306198492571, 34.764979016328326], [-77.36291259737834, 34.76508984812662], [-77.3627042635912, 34.76527942865684], [-77.36263752161223, 34.765389680970145], [-77.36264900720352, 34.76551567315187], [-77.36267761790286, 34.765898961137715], [-77.36270286793658, 34.766385758586466], [-77.36271295125958, 34.76653453259908], [-77.36287883643527, 34.76706255725311], [-77.3629144345878, 34.76719019140867], [-77.36293959728438, 34.76720592538441], [-77.36298576884587, 34.76723747317607], [-77.363478499933, 34.76755937427503], [-77.3636674369796, 34.76776922074009], [-77.3639863021894, 34.76801993326964], [-77.36429751364484, 34.76820754077258], [-77.36448668649419, 34.7683206707031], [-77.36453468869222, 34.76834075517835], [-77.36459768328734, 34.768376564106354], [-77.36490759109472, 34.76859169889404], [-77.3650595968011, 34.76874243800374], [-77.36521021743415, 34.76891196793421], [-77.36528108744, 34.76911097099213], [-77.36530130139431, 34.76932030783492], [-77.36529969186553, 34.76952479425572], [-77.36528778426835, 34.769672532681724], [-77.36527297038043, 34.769778361849305], [-77.36532268758783, 34.7700457315323], [-77.36541984063685, 34.77060973655526], [-77.36551201881724, 34.77086943742453], [-77.36563908892346, 34.77116548096], [-77.36577308066833, 34.771355197833245], [-77.36615504532139, 34.771598064765186], [-77.36665903875159, 34.771748081944175], [-77.3667478729678, 34.77176594586021], [-77.3668572050316, 34.771796378107446], [-77.36702270475625, 34.77234285328349], [-77.36712092315318, 34.772550870553076], [-77.36706213297145, 34.77260358802568], [-77.36713070212518, 34.77265701975155], [-77.36723625861268, 34.77342362231238], [-77.36745338072913, 34.77375526897401], [-77.36757093424383, 34.77382675822591], [-77.36787787834824, 34.77404903022409], [-77.36771676926773, 34.774226661528274], [-77.36730079045904, 34.77429144449777], [-77.36729876774884, 34.7742917595086], [-77.36729753871646, 34.774291950911255], [-77.36729250340993, 34.774292735072635], [-77.3669615461838, 34.77434427598705], [-77.36682848665478, 34.774271356500705], [-77.36666412184697, 34.77426378340435], [-77.36655597603482, 34.774030824754625], [-77.36648181194782, 34.77373771243141], [-77.3664491860591, 34.77365102761287], [-77.36634650864531, 34.773398314472864], [-77.36630413712908, 34.77329402849794], [-77.36611192217447, 34.77299917762325], [-77.36580274823142, 34.77281123674567], [-77.36548705495744, 34.77282618945957], [-77.36529969683741, 34.77303200639484], [-77.36505583400339, 34.773173925019066], [-77.36487715805256, 34.773326162244764], [-77.36473888296177, 34.77339497580303], [-77.36425950856719, 34.77370672185261], [-77.36420373895585, 34.7737222486755], [-77.36419302782323, 34.77376317957749], [-77.36413597929621, 34.77382176374693], [-77.36366155026168, 34.7743329781092], [-77.36344852602782, 34.77462108868332], [-77.36330723857438, 34.774776415731], [-77.36311343379086, 34.77493402444071], [-77.36302483945761, 34.775032043921314], [-77.36287836886153, 34.77523779240723], [-77.36271462647386, 34.775482708393724], [-77.3626242952449, 34.77563154399397], [-77.36241716916172, 34.77593783893978], [-77.36229451729848, 34.77605414930349], [-77.3620954980321, 34.77626421123108], [-77.3619916941702, 34.77634816918881], [-77.36173189947414, 34.776607529825924], [-77.36155122173588, 34.776753251562305], [-77.36150683595663, 34.77679897320249], [-77.36137888315557, 34.77699752455166], [-77.36123296805653, 34.77720110466668], [-77.36120158379363, 34.77727452499376], [-77.36104024340911, 34.77753340321335], [-77.36092591752845, 34.777652878524705], [-77.3605852076314, 34.77797733496026], [-77.3605129862576, 34.7780675998913], [-77.36047304169722, 34.778103287515954], [-77.3603883778487, 34.778198571950064], [-77.36011193294965, 34.778486477784384], [-77.36016639741644, 34.77896274639817], [-77.36018705221208, 34.779035559550486], [-77.36019864221386, 34.77907605176025], [-77.36036491854146, 34.77940777754503], [-77.36036105712772, 34.77941773743352], [-77.36034709565425, 34.77968723224244], [-77.36025217977851, 34.77977187530062], [-77.36016474853734, 34.779845464988384], [-77.36011214150699, 34.77988462461818], [-77.3600776968188, 34.77997357529876], [-77.35997964637123, 34.78011787238238], [-77.35993400370397, 34.780216871000846], [-77.35971972773791, 34.780500380504314], [-77.35963408967388, 34.78055617461919], [-77.35965488499505, 34.78059580550793], [-77.35963436816702, 34.780794219439315], [-77.35959309855457, 34.78106777045629], [-77.35960977249938, 34.78110689496696], [-77.35959612057049, 34.78116186320955], [-77.3594163894457, 34.78154457462979], [-77.35939722788862, 34.781585376471256], [-77.35939197272498, 34.78158990704796], [-77.35914716179235, 34.781925192518585], [-77.35911237996582, 34.78205129458334], [-77.35907377789961, 34.78217640998684], [-77.35873978498032, 34.782756544251775], [-77.35862962282278, 34.78300081778744], [-77.3585500870848, 34.7831951087667], [-77.35852746824017, 34.78324468553952], [-77.35851119601779, 34.783303047888616], [-77.35851567259618, 34.783520173608935], [-77.35843755759933, 34.783759887475426], [-77.35829209676635, 34.78400116664762], [-77.35806227596106, 34.784382373254296], [-77.35804976566475, 34.784623295333716], [-77.35798774601064, 34.78501312691909], [-77.35783968404048, 34.78536750179792], [-77.35805458607413, 34.78612885065818], [-77.35805990199476, 34.78615684475258], [-77.35806311958191, 34.78616700664512], [-77.35757712064229, 34.78684561441242], [-77.3575233477921, 34.787087550305], [-77.35713968372286, 34.787172358634706], [-77.35690669383357, 34.78724679567465], [-77.35671934402134, 34.787365429884666], [-77.35653201158411, 34.78769667961385], [-77.35704997027294, 34.787481131323624], [-77.3577799476672, 34.787177345046885]], [[-77.41482409729377, 34.76341786321861], [-77.41524226253635, 34.762857315477994], [-77.41570634206138, 34.76270230780954], [-77.41598423352367, 34.76257351654298], [-77.41641406429746, 34.761984494256815], [-77.41655710795727, 34.761881474107625], [-77.41655112932457, 34.76180519236581], [-77.41709212582364, 34.76139159634044], [-77.41728364979856, 34.76119689687342], [-77.41751987502465, 34.761099782629756], [-77.41778744849888, 34.76103161386858], [-77.41788547950746, 34.760668473836226], [-77.41813184958264, 34.76048305776802], [-77.41831421445858, 34.7603962746625], [-77.41848767904096, 34.7603198505967], [-77.4188808372644, 34.760111647656124], [-77.4190813933629, 34.76015369493335], [-77.41963302867183, 34.759729149094746], [-77.41975940954846, 34.759765460361734], [-77.41988416230059, 34.75968972819936], [-77.42062002022425, 34.75967552074117], [-77.4208949872583, 34.7598010059848], [-77.42126691024532, 34.75983912795982], [-77.42186076882994, 34.76020654947769], [-77.42202609417195, 34.76032462491256], [-77.42207020495833, 34.76039694636676], [-77.42272569371842, 34.76012364051326], [-77.42345517124825, 34.759819478579516], [-77.42348156511366, 34.75980847307832], [-77.42346027084254, 34.75980187081979], [-77.4234388766156, 34.75979286148067], [-77.422569220544, 34.75929613189549], [-77.42235956165284, 34.759173310902256], [-77.42191778468543, 34.758803899391005], [-77.42179616479494, 34.75872571256572], [-77.4217880622203, 34.75867784794145], [-77.42177103315105, 34.758564172050114], [-77.42168956033223, 34.75832378839577], [-77.42166123796704, 34.75826273818191], [-77.42161370211838, 34.75813223116458], [-77.42147798433916, 34.75808545383843], [-77.42138867570532, 34.75809659072895], [-77.42126796566866, 34.75805319956032], [-77.42096384798353, 34.75799346508605], [-77.42077058943624, 34.75801619748764], [-77.42034136562457, 34.757724473625274], [-77.42021628300088, 34.757715617017524], [-77.42013366800998, 34.75763339527162], [-77.41955843125632, 34.75733958489485], [-77.41920889802795, 34.75712622636822], [-77.41913486775134, 34.75702059893521], [-77.41901433125034, 34.75705238499253], [-77.41888849751977, 34.75710545326601], [-77.41890041048472, 34.757254843707315], [-77.41850462304987, 34.75753037232286], [-77.4185304102935, 34.757757682229936], [-77.41854124763582, 34.75810225236067], [-77.41856148641648, 34.758288883048806], [-77.41840516992781, 34.75904897112234], [-77.418310438553, 34.759139747990616], [-77.41789893798027, 34.75945784074208], [-77.41779041129973, 34.75954054436331], [-77.41775642578229, 34.75956496140637], [-77.41747252800995, 34.759769173324216], [-77.41724433784645, 34.759885320247406], [-77.41713039271013, 34.759958182619314], [-77.41695794279894, 34.760107207162385], [-77.41677946859932, 34.75992454780616], [-77.41682913119551, 34.759740207382976], [-77.41684928976392, 34.7594989357668], [-77.41685182456195, 34.759468596971665], [-77.41686368780177, 34.759443074608896], [-77.41698974528141, 34.75923725767177], [-77.41717990874486, 34.75886487808981], [-77.4172436668064, 34.75876691944173], [-77.41727361496929, 34.75869624005939], [-77.41727357921576, 34.75837946280069], [-77.41704890414577, 34.75813976589913], [-77.41697047273315, 34.75805946563919], [-77.4169267513862, 34.75800095012631], [-77.41650474550295, 34.75739049354939], [-77.41649171286605, 34.757366336175444], [-77.41647908986894, 34.75733228592388], [-77.41617175941394, 34.75660700085691], [-77.41613658549524, 34.75630067172959], [-77.41604392530863, 34.756111255738986], [-77.41608458816295, 34.75600563116887], [-77.41603434463278, 34.755771566738076], [-77.41581530058772, 34.755472258140145], [-77.41576298562643, 34.755376421208325], [-77.41553701649983, 34.75508618211505], [-77.41524791582572, 34.754714848021585], [-77.41526745203973, 34.75430584194508], [-77.41573787692512, 34.753195165984984], [-77.41641318650483, 34.75313205592025], [-77.41671692193545, 34.75329887204376], [-77.41701294116878, 34.7535781260563], [-77.41708756507656, 34.75368060265783], [-77.41740906925979, 34.75412210657805], [-77.41753842996192, 34.754251764087506], [-77.4177970212514, 34.75431563160467], [-77.41799009440872, 34.754330347392674], [-77.41821836254599, 34.75425606647708], [-77.41849377525762, 34.75417209673783], [-77.41868305144462, 34.754152185818725], [-77.41904759773303, 34.75411496735936], [-77.41959688161123, 34.75428625087643], [-77.41988023761114, 34.754447380556016], [-77.4203237102172, 34.75470394580863], [-77.42042597152792, 34.754777477695356], [-77.42049809513809, 34.754803228165756], [-77.42091265088798, 34.75491818005847], [-77.42102545404448, 34.75492201816907], [-77.42124914777514, 34.754936441505905], [-77.4214153073572, 34.754991446914815], [-77.42152318184893, 34.754951312476564], [-77.42165954417007, 34.75494707595111], [-77.42172618799776, 34.754960718981955], [-77.42179910948063, 34.75504774202002], [-77.42186342391886, 34.75512668253024], [-77.42191811586223, 34.75536886696304], [-77.42206815859969, 34.755750627824675], [-77.422122586351, 34.75591136692705], [-77.42229456374837, 34.75605949400255], [-77.42252281284676, 34.756190859680146], [-77.42257313517318, 34.75622149716451], [-77.42295796413816, 34.75645578856254], [-77.42309892345091, 34.75662052489315], [-77.42323770830035, 34.75678551886686], [-77.42344587585679, 34.75702089470059], [-77.42349757214798, 34.75712353827689], [-77.42357084353088, 34.75720556684762], [-77.42371459684634, 34.75725176929977], [-77.42418553245113, 34.75729766207768], [-77.42420416926635, 34.75730362605949], [-77.42423699841684, 34.757297346720236], [-77.4246337632665, 34.75725750377704], [-77.42484914205022, 34.75722083264765], [-77.42503039462474, 34.7571575401587], [-77.42518139125416, 34.757068285216356], [-77.42539845487205, 34.75701090533322], [-77.42554560484152, 34.75703054862428], [-77.42582476051793, 34.75704588758905], [-77.42587413918532, 34.75704007131719], [-77.42589376968849, 34.75703767860966], [-77.42619417392268, 34.75700563835399], [-77.42631959459452, 34.75701985698626], [-77.42669617840275, 34.75712888477408], [-77.42678587874148, 34.7571770934501], [-77.42691766133339, 34.75724891657355], [-77.42713355678991, 34.75739287708609], [-77.4273186859886, 34.757551950820634], [-77.42745399074946, 34.75786236995175], [-77.42761088020023, 34.75808659609868], [-77.42781528084907, 34.75800135813492], [-77.42780347088289, 34.757984479350554], [-77.42774819983106, 34.75785767529885], [-77.42774754823733, 34.75713683243059], [-77.42710697411715, 34.75662300447833], [-77.42715204313694, 34.75649239959785], [-77.42702001691629, 34.75636852808069], [-77.42688083619814, 34.75644094456351], [-77.42683902976074, 34.75652938125984], [-77.42653228440314, 34.75661944025209], [-77.42631441018334, 34.7565904310388], [-77.42604043035752, 34.75650957129808], [-77.42598823774681, 34.756478608457826], [-77.42576408883501, 34.75627608495397], [-77.42554210848374, 34.75627099086717], [-77.42480294460594, 34.756038151213204], [-77.42457039826898, 34.75596872522278], [-77.42401251828129, 34.75601606149701], [-77.42387042505347, 34.75601058337643], [-77.42375171332735, 34.756009634771054], [-77.42341087226433, 34.756007752335975], [-77.4233019023711, 34.75591967651986], [-77.42318266013996, 34.75581077795686], [-77.4229321749896, 34.75557379161428], [-77.42285492603517, 34.755248540991786], [-77.42282371497836, 34.75512627268249], [-77.42276226415476, 34.75475188974068], [-77.42248291697582, 34.75444810563508], [-77.42245517878943, 34.75441435917192], [-77.42201723388585, 34.75416980132004], [-77.4217505703504, 34.75404334589806], [-77.4217366628428, 34.75418730972814], [-77.42117044851955, 34.75442141773813], [-77.42108883678489, 34.75445810006283], [-77.42099310133483, 34.754486523453764], [-77.42083206369313, 34.754482571272916], [-77.42061513759305, 34.75443213379059], [-77.42053435410465, 34.75440329146251], [-77.42032574933712, 34.75425329238632], [-77.42015446351527, 34.7540537669575], [-77.42006062041555, 34.75382462791481], [-77.41965738265685, 34.75361534018509], [-77.41925440472917, 34.75353630960991], [-77.41892520161916, 34.753316225214306], [-77.41841671999796, 34.75308423893294], [-77.41835991351014, 34.753053681945495], [-77.41833171628357, 34.753028286087805], [-77.41782781474353, 34.75267656953542], [-77.41736426390167, 34.75210006071218], [-77.41716332613365, 34.75172997063601], [-77.41654404243036, 34.751520436018296], [-77.41560432449577, 34.75149651377578], [-77.41467429292813, 34.7514572780229], [-77.41310647086215, 34.75172989496498], [-77.41269902911515, 34.7535911653154], [-77.41258866712485, 34.753785299845894], [-77.41255309089507, 34.75397540499916], [-77.41240655980653, 34.755498507064345], [-77.41241675985786, 34.75596159070565], [-77.4124889046298, 34.75686268354682], [-77.41253934852628, 34.75722857113041], [-77.4132614731316, 34.75849324311872], [-77.41323431072774, 34.758724287396106], [-77.41286288250875, 34.759472110811075], [-77.41243368270871, 34.75976460395755], [-77.41213176382209, 34.76033474763748], [-77.4120256900423, 34.76059406202447], [-77.41179494363757, 34.76110970689791], [-77.41166299318964, 34.76128908798151], [-77.41166106390695, 34.761494381024576], [-77.41154661416572, 34.7623665979752], [-77.41209633309586, 34.76360382549778], [-77.4130201410286, 34.76371492026305], [-77.41334577365491, 34.76371916687287], [-77.41444245210666, 34.763576952701705], [-77.41470107423694, 34.76346914671277]], [[-77.44255203049039, 34.75185457169889], [-77.44244038409806, 34.75183810594373], [-77.44238472748644, 34.751852802725416], [-77.44233079110401, 34.75187877302346], [-77.44171600415517, 34.75212526172713], [-77.44165299742085, 34.75215315808816], [-77.44158622751374, 34.75217772278763], [-77.44098862023847, 34.752422776065636], [-77.44090527201513, 34.75242739840967], [-77.4408459018136, 34.752478150463816], [-77.44026089534248, 34.75272144578221], [-77.44016613850113, 34.75271567340146], [-77.43991957790897, 34.75271360515135], [-77.43955252412515, 34.752953217436435], [-77.43946197746965, 34.75306106258109], [-77.43895188782844, 34.752812713185754], [-77.43847855596026, 34.75266109348911], [-77.43835495256413, 34.75265942441554], [-77.43830423176225, 34.752665747367665], [-77.43817923207817, 34.75266470086692], [-77.43808243153606, 34.752677366988515], [-77.43801527281333, 34.75272517739738], [-77.43791948303188, 34.75278509362584], [-77.43762840905485, 34.75301572840238], [-77.43764525543773, 34.75303719862381], [-77.43763049949264, 34.75306083045941], [-77.43760313678041, 34.75304127278184], [-77.43734801573125, 34.75334718421327], [-77.43721184086007, 34.7534448250327], [-77.43699287071007, 34.75351488019582], [-77.43677354116352, 34.75381872649529], [-77.43675320539822, 34.753843641835665], [-77.43679197503259, 34.75393447780088], [-77.43671868007527, 34.75388136233269], [-77.43657277349331, 34.75406012743505], [-77.43648235327564, 34.7541633898114], [-77.4364793662555, 34.754167255572895], [-77.43647770727505, 34.75416893424149], [-77.43646995068747, 34.754186782290304], [-77.43642522004741, 34.75428809886075], [-77.43643542036627, 34.75430608108219], [-77.43655809501588, 34.75435499757169], [-77.43658481676601, 34.754343851344146], [-77.43676716027944, 34.75426779146383], [-77.43694950344562, 34.75419173132327], [-77.43731418873617, 34.7540396102613], [-77.43767887263772, 34.753887488158284], [-77.43804355515023, 34.75373536501423], [-77.43877291600819, 34.75343111560307], [-77.43950227131, 34.75312686202799], [-77.44023162105562, 34.75282260428913], [-77.44096096524503, 34.752518342386644], [-77.44169030387819, 34.75221407632067], [-77.44241963695508, 34.751909806091376]], [[-77.45580921066707, 34.74632266170935], [-77.45563318963744, 34.74613308001237], [-77.45542930380637, 34.74624061189766], [-77.45525746796756, 34.74633123934404], [-77.45490371037296, 34.74643828701224], [-77.45462981681567, 34.74643026438189], [-77.45453439897918, 34.74640826571022], [-77.4542992728293, 34.746311093399086], [-77.45410194443471, 34.746142308360746], [-77.453942287578, 34.74587198111509], [-77.4539121435421, 34.745775082980906], [-77.45403690266173, 34.745462310787026], [-77.45421952336089, 34.74540980402743], [-77.45459078775795, 34.74530305850135], [-77.45484820842344, 34.74529196834856], [-77.45523224907055, 34.745302196679106], [-77.45531840056316, 34.74531216055626], [-77.45565981178935, 34.74549213308026], [-77.45580855023374, 34.7455266638675], [-77.45595052602224, 34.74559670286188], [-77.45614821437353, 34.745734734083754], [-77.45633449733336, 34.74592527268683], [-77.45646195047158, 34.74605023354384], [-77.45685907862845, 34.7458844851992], [-77.45668172641388, 34.74571060101687], [-77.456537333332, 34.74557232913025], [-77.45645403901975, 34.74551187158369], [-77.45614113519962, 34.745291246222315], [-77.45591894753957, 34.74514489283506], [-77.45555678038761, 34.744953914610186], [-77.4553591069004, 34.74486351295173], [-77.45522686866681, 34.74477994494187], [-77.45493847990898, 34.74454289047118], [-77.4548366671975, 34.74445281027724], [-77.45456439183451, 34.74416355464354], [-77.45435643260286, 34.74389617872534], [-77.4542389326688, 34.7437396150127], [-77.45407682182702, 34.7434741675009], [-77.45399329267269, 34.74293466073904], [-77.45381045707003, 34.74269246107792], [-77.4533712361708, 34.742318615069976], [-77.45304005497067, 34.742121116660236], [-77.45298352861222, 34.74199196850898], [-77.45279203022768, 34.74177819425287], [-77.45272000830673, 34.7415321931852], [-77.45279301925463, 34.74133134607885], [-77.45293513994719, 34.74104833196342], [-77.45310631527197, 34.74095327998849], [-77.45320661063903, 34.74071229836174], [-77.4532447202954, 34.74059745676588], [-77.45329184794078, 34.74050875869335], [-77.45348756546613, 34.74024906562774], [-77.45354289041137, 34.74017119807372], [-77.45356509979403, 34.74015035296672], [-77.45358903074826, 34.74010625570172], [-77.45404308514782, 34.73919929967525], [-77.45425994388603, 34.738352205174394], [-77.45502461477929, 34.737721326123875], [-77.4548152326424, 34.73723299763423], [-77.45585172364467, 34.73650784222403], [-77.45712137923003, 34.73704470254328], [-77.45910563895666, 34.73649533728585], [-77.45842094470225, 34.73318733781528], [-77.45745143095097, 34.73144583201337], [-77.45743329038554, 34.73135861577187], [-77.4574081529335, 34.73112470500704], [-77.45406799576911, 34.726079810078645], [-77.45383250383077, 34.725753383635855], [-77.45382627620276, 34.72572127888213], [-77.45382047340102, 34.72570572681128], [-77.4538290977354, 34.72568971550631], [-77.45452180094992, 34.72147874579491], [-77.4557575165573, 34.717772058644364], [-77.45582386939073, 34.71746165149529], [-77.45572972068949, 34.71683456824291], [-77.45562204019559, 34.71515518123172], [-77.45628196290733, 34.71398159156437], [-77.4561971659554, 34.71312011440062], [-77.45784401373402, 34.711877461339455], [-77.45808750709766, 34.71322774801282], [-77.4587745907696, 34.71402047876948], [-77.46060115431139, 34.715749775658665], [-77.46183258296807, 34.71581863830246], [-77.46247326265998, 34.71588877116356], [-77.46664553379631, 34.71690812030814], [-77.46731700077217, 34.71700405425317], [-77.46966496231134, 34.71567464027087], [-77.47163296651212, 34.717393820383606], [-77.47282054471711, 34.71779031679297], [-77.4740322972966, 34.71796340306703], [-77.47480297641783, 34.71808484755347], [-77.47525339382598, 34.71817402850846], [-77.47591008442343, 34.71828580991252], [-77.47646776238037, 34.71840794135224], [-77.47752400901095, 34.718332188336674], [-77.47788342137603, 34.71713606709653], [-77.47863154783548, 34.716483092859995], [-77.47884290295681, 34.71527476802668], [-77.47735574530664, 34.7153334648265], [-77.47652440129856, 34.71491776184203], [-77.47509871271232, 34.71427151276511], [-77.47323141374598, 34.71459771041406], [-77.47274178514849, 34.71472013202435], [-77.47237916851928, 34.71481079182904], [-77.46994614798314, 34.71541905341736], [-77.47158710272, 34.714023536748556], [-77.46955984902581, 34.71200861639129], [-77.47102764954386, 34.70935655125972], [-77.47151545235356, 34.70762010547607], [-77.47159793783933, 34.70687519348986], [-77.47151514246232, 34.70505518059943], [-77.47190760118373, 34.70388450465571], [-77.47065756211236, 34.703021405402026], [-77.46887860456037, 34.70157801930223], [-77.46852443595058, 34.70153189590649], [-77.46832247341126, 34.70152689550964], [-77.46673345253336, 34.70114927939005], [-77.46611267994822, 34.70100696678057], [-77.46607424492976, 34.70096349980512], [-77.46600181532, 34.70089372047064], [-77.46483536366853, 34.69969510159417], [-77.4641995666781, 34.69875632903951], [-77.46339820212292, 34.697748313608955], [-77.46285006005675, 34.69695263263605], [-77.46232331056484, 34.696378455778984], [-77.46076989918805, 34.69517058136972], [-77.46024904779556, 34.69468618009318], [-77.4600289373301, 34.69455926264056], [-77.45802357797828, 34.693517296464776], [-77.45624098636665, 34.69375175983528], [-77.45530570426446, 34.694920848986506], [-77.45515095424729, 34.69496086556371], [-77.45502494916177, 34.69502362203368], [-77.4544091842838, 34.69524399460457], [-77.45429470059034, 34.69533297710419], [-77.45391608051898, 34.69532622569147], [-77.45368789925521, 34.69521524702509], [-77.45348789334543, 34.69523384252267], [-77.45316095332139, 34.6952893699658], [-77.45303331307888, 34.69526282783702], [-77.45301477812058, 34.69525614196604], [-77.45274247729436, 34.69516049743829], [-77.45271383325903, 34.69513311899083], [-77.45265905437728, 34.69495824449727], [-77.4525666514897, 34.694660314712074], [-77.45241710217542, 34.6944704160862], [-77.45239495444231, 34.69417565821405], [-77.45245669748505, 34.69392524721334], [-77.45177722576301, 34.692957578956744], [-77.45169262924878, 34.69268319725928], [-77.45161138214011, 34.69251181345305], [-77.4509010579928, 34.69155501207604], [-77.45068745165585, 34.69131719972229], [-77.44995444118855, 34.69095581903649], [-77.44978166968488, 34.69099385461373], [-77.44958969398158, 34.69110738351205], [-77.44942717949917, 34.69111175894512], [-77.44937303393496, 34.691127143308236], [-77.44919698733125, 34.69104668193112], [-77.44915872312087, 34.69093207554346], [-77.44913344046849, 34.69080724827663], [-77.44923727128842, 34.690660383443905], [-77.44930701746338, 34.69064549946114], [-77.44941244107582, 34.69062525675001], [-77.44971500096905, 34.690564584490005], [-77.44992222882829, 34.69050765553986], [-77.45061143630245, 34.6905342312774], [-77.4511800217216, 34.6905900152857], [-77.45311877000074, 34.690301958188606], [-77.45379835102062, 34.690399275457025], [-77.45417824155477, 34.690381848030455], [-77.45432418703562, 34.69010584947946], [-77.45691436961263, 34.68887234987093], [-77.45695134926962, 34.68870147179672], [-77.45759155758752, 34.68677571086538], [-77.45807994979718, 34.684797154828395], [-77.45811807689066, 34.684642675684806], [-77.45880747292756, 34.68272868794926], [-77.45870331907004, 34.68252878734816], [-77.45822524845799, 34.68128547716735], [-77.45822299541302, 34.68128365375579], [-77.45734304819442, 34.68053297111929], [-77.45687901561408, 34.680220053422424], [-77.45686163130395, 34.680206754824724], [-77.45685244938048, 34.68019973076496], [-77.4564359717427, 34.67981240191694], [-77.45619812336881, 34.679647711440595], [-77.45597256322445, 34.67946418479041], [-77.45584789327978, 34.67937827782436], [-77.45574286336655, 34.6792876274676], [-77.45567797864933, 34.67924207827414], [-77.45571631235364, 34.6791709271041], [-77.45574233101588, 34.679039101968584], [-77.45577106698315, 34.678795923322745], [-77.45584717318752, 34.67859730053607], [-77.45595270800538, 34.67824060229273], [-77.45601324956665, 34.67803598258358], [-77.4561518185684, 34.67756763045067], [-77.45619937322097, 34.677431758798534], [-77.4561596566622, 34.67684842656962], [-77.45614496762323, 34.676510059060064], [-77.45573833327032, 34.676086111568814], [-77.45529893320855, 34.67571495341733], [-77.45508156470845, 34.675534796882744], [-77.45445159907955, 34.675012673794654], [-77.45441852847944, 34.67498526465888], [-77.45438368442375, 34.67495638504875], [-77.45433421243848, 34.67500929807812], [-77.45291122917345, 34.67571297709341], [-77.45293491028207, 34.67614667445172], [-77.45294570902772, 34.676344404200705], [-77.45295476662972, 34.67651027823445], [-77.45296706399569, 34.67673547304841], [-77.4529746224633, 34.6768738811333], [-77.45296922451406, 34.67697199706656], [-77.45291301766736, 34.67726896679598], [-77.45283839043626, 34.67754563701065], [-77.45278667191862, 34.67766597639354], [-77.45261702673758, 34.678087631495316], [-77.45244097599344, 34.67850303070284], [-77.45237745816887, 34.67862326620685], [-77.4522889587843, 34.6788313117692], [-77.45202853980388, 34.67912067572204], [-77.45216347143698, 34.67954624456337], [-77.45250930065012, 34.67996060650848], [-77.45264021756122, 34.68011274292459], [-77.45290004897507, 34.68047512991864], [-77.45294301625073, 34.68057551660172], [-77.45296580722385, 34.68068703576986], [-77.45328477979041, 34.68130401106668], [-77.45329465351865, 34.6813609841982], [-77.45329532653284, 34.68146438236088], [-77.45342882545276, 34.68196688586881], [-77.45342052591883, 34.68214018405334], [-77.45346625144319, 34.6824911732386], [-77.4534756783418, 34.68254226755056], [-77.45349088874154, 34.68259548958276], [-77.45362891690382, 34.68294602025685], [-77.45392796717331, 34.68324560553529], [-77.45394033316954, 34.683257341345644], [-77.45394413494954, 34.683265004167474], [-77.45393293314756, 34.68328294454622], [-77.45372316507914, 34.68365845653535], [-77.45367095952146, 34.68372853062539], [-77.4534578664304, 34.68381816606986], [-77.45337559304168, 34.68383803024186], [-77.45312849589197, 34.68384929513977], [-77.45292822651322, 34.68385454312386], [-77.45259779292986, 34.68382305908408], [-77.45250491884505, 34.68378989358554], [-77.45199788625918, 34.68362715031961], [-77.45193606839372, 34.6835411594797], [-77.4518448789721, 34.68357936403102], [-77.45171547400932, 34.68360405610963], [-77.45127969482314, 34.683595220711545], [-77.45099185551899, 34.68368053041672], [-77.45060880562771, 34.683699489195035], [-77.45053477613725, 34.68368116469932], [-77.45009991812069, 34.68352686474202], [-77.45003024140944, 34.683484369477], [-77.4498108184747, 34.683245685168416], [-77.44953512078428, 34.68298060692776], [-77.44938075296518, 34.682934321460465], [-77.44860054504176, 34.68276303109032], [-77.44833153075702, 34.682711129560815], [-77.44781963611226, 34.6828012787267], [-77.44772111427412, 34.682821016927555], [-77.44764652731196, 34.682864210347844], [-77.44706396410903, 34.68309613626332], [-77.44700996191423, 34.68315400521308], [-77.44690919245525, 34.683198283096765], [-77.44648512177164, 34.68345280754179], [-77.44633912616825, 34.683552886943446], [-77.44613729083996, 34.68365188631763], [-77.44578998612064, 34.68376882371794], [-77.44563452590414, 34.68389659697463], [-77.44558495888839, 34.683976661972665], [-77.44538064808735, 34.684052682228135], [-77.44526922432956, 34.684047205596414], [-77.44517632674828, 34.68411332150644], [-77.44489824159935, 34.68418852956909], [-77.4446624693426, 34.684492708587165], [-77.44463639963551, 34.68450822684454], [-77.44460245327402, 34.684527983617855], [-77.4443010200178, 34.68470774191347], [-77.44421565895843, 34.68475765604158], [-77.44413317989442, 34.68480725475358], [-77.44407260187933, 34.68484552218104], [-77.4439682138384, 34.684911464684355], [-77.44382455823558, 34.68500221202126], [-77.44363828015352, 34.68511988400152], [-77.44350291858913, 34.68520539132383], [-77.44341720158025, 34.68530297648974], [-77.44333340363252, 34.685369257496774], [-77.44331138907886, 34.68541794777607], [-77.44322966513496, 34.6855026226136], [-77.44313725158986, 34.685636584376404], [-77.4431435466577, 34.685806613652744], [-77.44297748395391, 34.6857156375837], [-77.4429156880123, 34.68563370705359], [-77.44283928949267, 34.68553241565353], [-77.4427876535952, 34.68546395549247], [-77.4427543492715, 34.68537931929418], [-77.44271696437698, 34.68527026251768], [-77.44271834070436, 34.68511167753328], [-77.44273047417042, 34.68493534015605], [-77.44275376408925, 34.68480848833805], [-77.44280835722977, 34.68451114347281], [-77.44292371911037, 34.68444386754568], [-77.44286472135245, 34.68388969304413], [-77.44286504464168, 34.68386920794914], [-77.44286076855809, 34.683862826927744], [-77.4428266905946, 34.68379345253222], [-77.44251286016072, 34.683123424988594], [-77.44206618398363, 34.68246695458398], [-77.44206034215125, 34.68241953312015], [-77.44202396473158, 34.682365464355705], [-77.44195700787706, 34.682372020114315], [-77.44194269579104, 34.682423779712], [-77.44171029659168, 34.68256567595036], [-77.44133311595112, 34.682769687325965], [-77.44130317099201, 34.682798692223955], [-77.44129124178076, 34.683187036496946], [-77.4412825846145, 34.68331105683541], [-77.44126916542531, 34.68364265987698], [-77.44121271595338, 34.6838456656665], [-77.44115525826483, 34.684052292211135], [-77.44114259505754, 34.68410066832632], [-77.4411387242512, 34.68414352498536], [-77.44110902669236, 34.684368450112714], [-77.44108557245013, 34.68461212200341], [-77.44108197704337, 34.684680197708616], [-77.44106267570531, 34.684911282271614], [-77.44105525744504, 34.68507118478875], [-77.4410700614245, 34.68519338315422], [-77.4410642319167, 34.685290641816046], [-77.44104470188502, 34.68536695401677], [-77.44098439211157, 34.685442949707536], [-77.4408606968707, 34.685598816003214], [-77.44078639225818, 34.68569244625313], [-77.44064894957981, 34.685687214658046], [-77.44050299738247, 34.685409140919], [-77.44050327418535, 34.685274737673815], [-77.44050780337544, 34.685237108342264], [-77.4405287601212, 34.68500412897478], [-77.44047441263322, 34.68486726687205], [-77.44042828846035, 34.6846894809774], [-77.44022751220425, 34.68414604368783], [-77.44019932249111, 34.684089298728935], [-77.44015966985347, 34.68403652276996], [-77.43997240982195, 34.6837376237102], [-77.43993527303489, 34.68355362240011], [-77.43991243253396, 34.68339103778115], [-77.43994347110986, 34.68330329981731], [-77.43994529694086, 34.68290624921563], [-77.43994607806503, 34.682855807286494], [-77.43993310172515, 34.682839224087786], [-77.43991984676583, 34.68242035310077], [-77.43989131837526, 34.682265573279274], [-77.43990925658699, 34.682015698831464], [-77.43990359729519, 34.68198073301039], [-77.43990019538965, 34.681954395590395], [-77.43980815631542, 34.681677454549444], [-77.43982856460771, 34.68156565332058], [-77.43969493045384, 34.68155636054732], [-77.43963823535911, 34.68157269787781], [-77.43955036802674, 34.681587317156236], [-77.43902090420002, 34.681671403822534], [-77.43870551659612, 34.68154350687622], [-77.43846524785955, 34.68137716308441], [-77.43840209804945, 34.68126836070656], [-77.43833448043624, 34.68116216462553], [-77.43800897002093, 34.68073932784183], [-77.43786927053321, 34.680597996614864], [-77.43757112167346, 34.68043690304271], [-77.43745898527683, 34.68042550637896], [-77.43712645325476, 34.68045774761204], [-77.43680632508305, 34.68046668512912], [-77.43665849998118, 34.680440529722155], [-77.43651510594813, 34.680365882329376], [-77.43643277458601, 34.680304876327014], [-77.4362509391382, 34.6801715522233], [-77.43604482810224, 34.6800204277866], [-77.43590824682106, 34.67996181954084], [-77.43569639360416, 34.67987352463281], [-77.43548802587875, 34.679806466935915], [-77.43540283095518, 34.67978083251482], [-77.43532083343962, 34.679749299646154], [-77.43511355623855, 34.679673316780566], [-77.43460490592275, 34.67932667461098], [-77.43457286402588, 34.67932741702286], [-77.43449731439246, 34.67932724067786], [-77.43452582786097, 34.67927125039965], [-77.43428943453625, 34.6788109288872], [-77.4341705804015, 34.67858795670856], [-77.43417667828737, 34.678568299998624], [-77.43415522329491, 34.67855613823086], [-77.4341362173438, 34.67856044230261], [-77.434076746284, 34.6785551404768], [-77.43362682078646, 34.67847543864035], [-77.4335420628149, 34.67846079177461], [-77.43341512702833, 34.67843980419166], [-77.43310179564469, 34.67836488010197], [-77.43286981474164, 34.678569702923625], [-77.43273386202665, 34.67827779073804], [-77.43233974636593, 34.678187123589254], [-77.43210746522757, 34.678092872618336], [-77.4320515759578, 34.67807581573703], [-77.43200384370915, 34.67806543308501], [-77.43175088030311, 34.67800780441663], [-77.4311795734553, 34.678100943658535], [-77.43116964243939, 34.67819719561293], [-77.43119712738073, 34.67847285792517], [-77.43147111172861, 34.67876197443052], [-77.43150625081478, 34.67879021483155], [-77.43152146745642, 34.67880080675828], [-77.43154837944395, 34.67881642134966], [-77.43179466244442, 34.67896388805066], [-77.43195374852212, 34.67904981271907], [-77.43204588276421, 34.67920293159831], [-77.43235221225618, 34.67932987700547], [-77.43224852757845, 34.67959293321015], [-77.43209839691927, 34.67971566501804], [-77.43186822332731, 34.67981704175992], [-77.43176282657687, 34.67991485793884], [-77.431686264843, 34.67995535031679], [-77.431403323198, 34.68007492245114], [-77.43113822109021, 34.680282992181375], [-77.43110315965286, 34.68031047735687], [-77.43109554755812, 34.68031956061748], [-77.43107231995324, 34.68035331543929], [-77.4308487404403, 34.68066388012916], [-77.43075926887147, 34.68074926761675], [-77.43064091828518, 34.680936948448256], [-77.43051604683208, 34.68122326719762], [-77.43039780711426, 34.681422310442095], [-77.43026620218339, 34.68169495117438], [-77.43016636467826, 34.68179176145743], [-77.43005585705832, 34.6819009172942], [-77.4299736418096, 34.68193603749377], [-77.42981975103149, 34.681972914272706], [-77.42963877334654, 34.68203457587745], [-77.42927579083283, 34.682133301704695], [-77.42905112140896, 34.6822119432635], [-77.428857789739, 34.68232049265245], [-77.42872418322327, 34.682425269370285], [-77.42850167127561, 34.68259413885221], [-77.4283930486031, 34.68263173635516], [-77.42826544338834, 34.68267238486427], [-77.4280145662205, 34.68276079092769], [-77.42779833357818, 34.682810324509305], [-77.42764939149164, 34.68263190503805], [-77.427448771039, 34.682386740667084], [-77.42737815452034, 34.6822987263537], [-77.42733919390987, 34.68218258173089], [-77.4272110182287, 34.68219484497975], [-77.42713323762705, 34.68227637574822], [-77.42681682320489, 34.682298205475945], [-77.4266167219833, 34.68246488407335], [-77.42647155454092, 34.68248156373784], [-77.42643314011028, 34.68259057340688], [-77.42646791216565, 34.682678610390155], [-77.42648859386581, 34.68290766207009], [-77.42651057720495, 34.68310718213272], [-77.42653512345537, 34.68318532117179], [-77.42647669181471, 34.68323786691458], [-77.42642459067446, 34.68342619779063], [-77.42628719206358, 34.683646785888264], [-77.42627988871655, 34.68365512286437], [-77.42627768786548, 34.68366038608024], [-77.42626156209289, 34.68369221573128], [-77.42606769927488, 34.68406494688573], [-77.42604477394048, 34.684131962171456], [-77.42603112227718, 34.684200028230734], [-77.42599430991454, 34.68431890482033], [-77.42593839192257, 34.68437429091825], [-77.42588205279796, 34.684509311679506], [-77.42573258568747, 34.68458184324152], [-77.42554462704803, 34.68470551044325], [-77.42548637716246, 34.68487373871175], [-77.4255015003776, 34.68506009308774], [-77.4257492045265, 34.68546271777462], [-77.42588307106372, 34.68560094285485], [-77.42600749941077, 34.68567734233501], [-77.42618692430042, 34.68575569606768], [-77.42629316908366, 34.68579737407428], [-77.42644409013471, 34.68581319442845], [-77.42666500401212, 34.686026126862004], [-77.426647020979, 34.686174884238994], [-77.42653807472158, 34.6863298298657], [-77.42631014758584, 34.68646108728809], [-77.4262326122277, 34.68657829847384], [-77.42598203687231, 34.68687251068762], [-77.42594276666149, 34.68689166780389], [-77.42596804575388, 34.68692085731758], [-77.42602286791607, 34.68698327114003], [-77.42621596357826, 34.68724752846935], [-77.42620039635668, 34.68727352926851], [-77.42597931169459, 34.68746352622744], [-77.42601105722694, 34.687711865654045], [-77.4260164630857, 34.68777715967377], [-77.42591111966442, 34.68799875228405], [-77.4258715592366, 34.68806081779741], [-77.42580762450068, 34.688127162398786], [-77.42569222802813, 34.688201731389825], [-77.42557750201497, 34.68827036748511], [-77.42542723674796, 34.68825314187447], [-77.42505835749934, 34.68825956609551], [-77.42489823166719, 34.68840318523128], [-77.42467671438303, 34.68852186717996], [-77.4246283688974, 34.68866824970124], [-77.4246229966075, 34.68880503061099], [-77.4244961395242, 34.688974550000125], [-77.424450521257, 34.68916512473544], [-77.42431134654407, 34.689381452759996], [-77.4242997050129, 34.689401303963834], [-77.42401362510758, 34.68957139302169], [-77.42397651037318, 34.6896208049791], [-77.42389693009211, 34.689648659584854], [-77.42353208732226, 34.689642093877026], [-77.42324462262995, 34.68968826211315], [-77.42267174635089, 34.689619248526505], [-77.42259821041107, 34.689611043950805], [-77.42248672508651, 34.68959640254775], [-77.42193594483297, 34.68978148482636], [-77.42184234498997, 34.68987105319589], [-77.4217911062214, 34.68991217043256], [-77.4217807497381, 34.689991028104366], [-77.42185518120947, 34.690060506437746], [-77.42208152895978, 34.69075826304999], [-77.42225655699622, 34.69088785821461], [-77.42252727541069, 34.69099096871218], [-77.42256620065581, 34.69100239967999], [-77.4228425821733, 34.69107729584728], [-77.42284187027009, 34.69111833647434], [-77.42283710815762, 34.691123583345565], [-77.42281476418172, 34.691173404320644], [-77.42276169059433, 34.69123006279486], [-77.42276846773979, 34.69125277920095], [-77.42271416728931, 34.691296545398615], [-77.42264732427385, 34.691329831562264], [-77.42260040576936, 34.69136046408781], [-77.4225116860676, 34.69133945626062], [-77.4224214901144, 34.69142507151662], [-77.42233220556217, 34.69141997434879], [-77.42209355002602, 34.6914510148618], [-77.42189171423993, 34.691447703544085], [-77.42145425007405, 34.691445618527304], [-77.42141207504962, 34.69145685271471], [-77.420991971175, 34.69147248638119], [-77.42040102775357, 34.6916622866757], [-77.42041388702702, 34.692023216953864], [-77.42039330065288, 34.69221867495739], [-77.42049407128931, 34.69231335821759], [-77.4205368107089, 34.692401063549084], [-77.42056063658339, 34.69273195101155], [-77.42059429476853, 34.69284807057144], [-77.42062374201862, 34.692928804637575], [-77.42059216495367, 34.69306270342006], [-77.42058305552531, 34.69312368407209], [-77.42046948186345, 34.69318712551906], [-77.42044835188851, 34.693201547891256], [-77.42042635193437, 34.693208643830964], [-77.4202892590668, 34.69325622592325], [-77.42025292137083, 34.693255993592366], [-77.42020258457131, 34.69327014535619], [-77.41994389021261, 34.69334234168254], [-77.41981933812679, 34.69329502974582], [-77.4197588335742, 34.69339447121462], [-77.41966711204235, 34.69342012019895], [-77.41958689021553, 34.69347409980383], [-77.41958510172108, 34.6934748100405], [-77.41957290934486, 34.6934788304298], [-77.41948832052758, 34.693501773389656], [-77.41941756269856, 34.69350009061884], [-77.41932148097334, 34.6934721397869], [-77.41927970222713, 34.69342285238557], [-77.41910771588657, 34.693338144041086], [-77.41901217151793, 34.69324008664782], [-77.41869403591602, 34.69306437340606], [-77.4184628877926, 34.69292369258096], [-77.41824555117533, 34.692965672729024], [-77.41799834287238, 34.6929082614116], [-77.41784905635065, 34.69283026436176], [-77.41774069912348, 34.692888163145675], [-77.4172742337648, 34.69276400098397], [-77.41722961454947, 34.69275621574887], [-77.41719435037915, 34.69274279371841], [-77.41713871840098, 34.69275748669059], [-77.41675804114742, 34.69277736045994], [-77.41656219003453, 34.69284789339653], [-77.41622580466355, 34.69265505883247], [-77.416111535653, 34.693249068040316], [-77.4163547452053, 34.69356438051726], [-77.41636135757973, 34.69359120436216], [-77.41636091767433, 34.69360359421552], [-77.41632821614094, 34.69365600740679], [-77.41609999812744, 34.69394542925576], [-77.41597622883468, 34.694028121173794], [-77.41582479376532, 34.694243452147276], [-77.41582115163781, 34.694253422434535], [-77.41578013422546, 34.69428003679615], [-77.41553866190816, 34.694434150866144], [-77.41549285109583, 34.6944486952887], [-77.41544751037617, 34.69448426047635], [-77.41534282238632, 34.694462471450876], [-77.41523138349055, 34.69432665559951], [-77.41500492684918, 34.69415707621294], [-77.41492687058954, 34.69406893984956], [-77.41458251142146, 34.69388693894186], [-77.41436813056566, 34.69378521483468], [-77.41407761759324, 34.69363050264796], [-77.41388722811068, 34.69385641667218], [-77.41406582045877, 34.6941024831693], [-77.41412828749603, 34.69449985799729], [-77.41414974462435, 34.69453941128998], [-77.41424795159219, 34.694657131497145], [-77.41440237907122, 34.69485479223136], [-77.41444155692498, 34.69497373378175], [-77.41452662961179, 34.69519831849019], [-77.4145085037335, 34.69525687526716], [-77.41439400707658, 34.69564404832187], [-77.41433248478673, 34.69568950507063], [-77.41429480498041, 34.69579237500609], [-77.41430561387449, 34.69595965764215], [-77.41417549700266, 34.69603479723342], [-77.41411447685559, 34.69617234415476], [-77.413828149187, 34.69621486222044], [-77.41374679256897, 34.69660282206593], [-77.41385809783333, 34.69686725400289], [-77.41387641370022, 34.696927721358826], [-77.41401053130454, 34.69723350267001], [-77.41401678903465, 34.697247409965954], [-77.41402365749303, 34.69725878472598], [-77.41409802167148, 34.6974042542503], [-77.41419788052623, 34.697599285416885], [-77.41419030762245, 34.69762138097375], [-77.41422931131426, 34.69788983286138], [-77.41436353659141, 34.698227792553276], [-77.41441082495446, 34.69842210083018], [-77.41446082790614, 34.69852992697773], [-77.4147351890171, 34.699157717507525], [-77.41474312994946, 34.699176191290505], [-77.4147553566759, 34.69919206180286], [-77.41499197316699, 34.69951874282288], [-77.4151983409433, 34.699771681961856], [-77.4152636748298, 34.699851759298305], [-77.41566681548328, 34.70006999713243], [-77.41571923784772, 34.70018624582936], [-77.41580790718369, 34.70020023032588], [-77.41612518886852, 34.7003850928585], [-77.41622531697506, 34.700544908436], [-77.41623439899011, 34.700562714656336], [-77.41624652446447, 34.70057875798756], [-77.41625201523911, 34.70069402206397], [-77.41624691939472, 34.70073105001861], [-77.41620615158782, 34.70071818917208], [-77.41611974590835, 34.70071011973448], [-77.41603502510698, 34.700757895590186], [-77.41587326482266, 34.70076106490597], [-77.41566597392837, 34.700716200031515], [-77.41560473197578, 34.70088693185782], [-77.41551093724608, 34.70090561150166], [-77.41535804027795, 34.70096074329259], [-77.41526631972528, 34.700966546160046], [-77.41519170429507, 34.70090132884543], [-77.41498419346551, 34.70086105431473], [-77.41490774026477, 34.70077524810698], [-77.41476772438286, 34.7007435537759], [-77.41405167666716, 34.700357330179], [-77.4137783487862, 34.70024862443163], [-77.41355850782924, 34.70026241270282], [-77.41339582459008, 34.700184552517285], [-77.41318418055397, 34.70008709994168], [-77.41296138453671, 34.69996226074803], [-77.41294002315655, 34.69992832642393], [-77.41271993354128, 34.699598240283805], [-77.41269328832277, 34.69956895990554], [-77.41260413483168, 34.699449875891915], [-77.41245875368855, 34.6992722190966], [-77.41246358804482, 34.69923435600644], [-77.4124650997426, 34.6992225165131], [-77.4126580533038, 34.69901748345964], [-77.41234334255176, 34.698564143825465], [-77.41223462334256, 34.69843716169677], [-77.412098407337, 34.698303331042716], [-77.4120585838513, 34.698248656713545], [-77.41194720357066, 34.69811070108826], [-77.41187294438595, 34.69797528451565], [-77.4118338657696, 34.69789048471864], [-77.4118061372078, 34.697723193519586], [-77.41176880454621, 34.69758816706555], [-77.41167900235891, 34.69732987541447], [-77.41161106847068, 34.697077800436254], [-77.41160288823085, 34.69697100944006], [-77.41157374884362, 34.69692743049569], [-77.41154727263724, 34.69688670866544], [-77.41143648402232, 34.69663323580998], [-77.41142753456215, 34.69654207129131], [-77.41132824595121, 34.69631581104383], [-77.41121979464133, 34.69618237622312], [-77.4111690507082, 34.695979617746765], [-77.41112253898818, 34.69577659618661], [-77.41109907514506, 34.69567651951797], [-77.41102696818427, 34.69537445255124], [-77.41102692671583, 34.69537172061483], [-77.41102648716587, 34.69537031448128], [-77.41102575926608, 34.69536787091487], [-77.41096915313395, 34.69507195026614], [-77.41102393564088, 34.69492503149689], [-77.4110424355329, 34.694651624487534], [-77.41109093255577, 34.694555442913774], [-77.41106687484798, 34.694460773493816], [-77.4111029158267, 34.69437647484135], [-77.41120565620297, 34.69431602428389], [-77.41127905449395, 34.69429047722534], [-77.4115322680298, 34.69415073862435], [-77.41162617438314, 34.69411004877752], [-77.41174750498666, 34.693982187282494], [-77.41209767913722, 34.693789444219675], [-77.41212218064626, 34.69342500241116], [-77.412377350534, 34.69332817851039], [-77.41233824248908, 34.69303774186912], [-77.41206740893973, 34.692877505423795], [-77.41207312087444, 34.69270198763912], [-77.41207154085838, 34.69266207596129], [-77.41214115883082, 34.69222725636694], [-77.4118572941064, 34.69202800436342], [-77.41173905397417, 34.691798268604096], [-77.41161589339053, 34.691848885064374], [-77.41144395685387, 34.69171075007889], [-77.41135916688518, 34.691660764365864], [-77.41130437934886, 34.69163946606687], [-77.41120771749274, 34.691521174517845], [-77.41123166771743, 34.69149077596395], [-77.4113274340031, 34.69137711440149], [-77.41145872431568, 34.69132944033015], [-77.41157067590028, 34.6912731676376], [-77.41172227863795, 34.69127475851218], [-77.41190818521032, 34.69121422152284], [-77.41229904476833, 34.6910643373962], [-77.41238228211238, 34.69085795158177], [-77.41250266702787, 34.69029105359911], [-77.41241325096189, 34.68998607076358], [-77.41261051148857, 34.68973500250465], [-77.41278254353952, 34.68928159919487], [-77.41278739982818, 34.688998756721915], [-77.41260756219376, 34.688799040034894], [-77.41212279486899, 34.688664124982566], [-77.41202067272825, 34.68861266366383], [-77.41190170321575, 34.68857574135804], [-77.41183624518642, 34.688665961067294], [-77.41155036553359, 34.688749234354], [-77.41140116582898, 34.68879328706291], [-77.41132038747034, 34.68881787669455], [-77.41124113955951, 34.6887372944977], [-77.41109195635353, 34.68864780061357], [-77.41106203600744, 34.68860350485819], [-77.41103249138382, 34.68838473107737], [-77.41107155229605, 34.688209965369715], [-77.4109457758334, 34.68789846932984], [-77.4109316024823, 34.68782199968936], [-77.41092220065272, 34.687787024182406], [-77.41090781882608, 34.687698304158154], [-77.41090494770742, 34.68760994574185], [-77.4108831629288, 34.6875614351075], [-77.41087287480302, 34.68749020673322], [-77.4109198118045, 34.68738057193761], [-77.41092873100551, 34.68735844184419], [-77.41108139447616, 34.68728361094277], [-77.41109857424073, 34.68726217155854], [-77.41113712607537, 34.68723769333579], [-77.41125432574242, 34.68724102593869], [-77.41174810704501, 34.68734083791136], [-77.41210449211809, 34.68741117945203], [-77.41246817152674, 34.687067268094694], [-77.41289319582683, 34.68679932794077], [-77.41303710244408, 34.68594407429375], [-77.41395726000518, 34.68635096942454], [-77.41518988759451, 34.686472585034466], [-77.41653666765296, 34.686295477864306], [-77.4174790155991, 34.686167340565056], [-77.41809470521665, 34.68523875478709], [-77.41883219270633, 34.68440435483318], [-77.41836995886413, 34.68337961827547], [-77.41756428232375, 34.68274584520047], [-77.4170610888217, 34.682140311388245], [-77.4155989997396, 34.68115716442888], [-77.4154834948841, 34.68107949573605], [-77.41542258101947, 34.68103853447684], [-77.41522572928947, 34.68090616079152], [-77.41441142467457, 34.680355817583894], [-77.41448002791716, 34.67964638008564], [-77.41433927429526, 34.6794777711936], [-77.41372141832939, 34.67831258873364], [-77.41354095420893, 34.678252777397994], [-77.41338781841452, 34.67802661673837], [-77.4127700892895, 34.677172052853244], [-77.41237566273173, 34.67695356184534], [-77.41168455840524, 34.67649509673639], [-77.41156695772787, 34.676398273158], [-77.41114745043893, 34.676137099440524], [-77.41114298563355, 34.676122823616055], [-77.41115313487023, 34.676117467587076], [-77.41165873100387, 34.676208320217654], [-77.41178782753775, 34.676138435555664], [-77.41255118051367, 34.676171935020015], [-77.41266163662164, 34.675536041650666], [-77.4132723490676, 34.67479404302885], [-77.41337063937334, 34.67466593268969], [-77.41255553334885, 34.673486918283615], [-77.41245938669928, 34.67334784354834], [-77.4123508338985, 34.67319081965425], [-77.41254517347215, 34.67316962950204], [-77.41264422264416, 34.67318059220557], [-77.41295726999427, 34.67314010636984], [-77.41432100335754, 34.67308212622757], [-77.41547655363642, 34.672088919849465], [-77.41550668213657, 34.6720587603093], [-77.4155177469709, 34.67204738234331], [-77.41555042140314, 34.67199487886392], [-77.41644055540628, 34.67056456557542], [-77.41699813152216, 34.6696685534178], [-77.41668494151126, 34.66807559388085], [-77.41669083689571, 34.66801137042775], [-77.41467476623015, 34.66767605747914], [-77.41422724399999, 34.667712589876544], [-77.41332763816713, 34.667941521205975], [-77.41301180287425, 34.66794801795147], [-77.41277758814088, 34.66829379830621], [-77.41276550479914, 34.668303902810266], [-77.4124348123523, 34.668500334784135], [-77.41237943008475, 34.66872789927446], [-77.41224751609184, 34.66894205694424], [-77.41224159347126, 34.668959217616916], [-77.41222135250419, 34.66898368218547], [-77.41206660527885, 34.669177532839456], [-77.41199224618347, 34.669272576859456], [-77.41184141378946, 34.669314352911435], [-77.41160115262316, 34.669380897800394], [-77.41124725272749, 34.66944988856583], [-77.4111960224645, 34.66946625467556], [-77.41114983588464, 34.66949003456092], [-77.41104865667829, 34.66947298368807], [-77.41054109801642, 34.669379593777435], [-77.41013203786105, 34.669221867233574], [-77.40996874962164, 34.66914347702113], [-77.40986322136362, 34.669074898037884], [-77.40985349719662, 34.66896207628797], [-77.40972815798587, 34.66868490785779], [-77.40973050697878, 34.66856494144673], [-77.40973954735244, 34.66836306944805], [-77.40977108872268, 34.66822065269339], [-77.40980420920359, 34.667826578358195], [-77.40979603944908, 34.667527160787756], [-77.40978788150016, 34.667320961171335], [-77.40967457427047, 34.66697708726933], [-77.40955757242367, 34.666622003244335], [-77.40953069524056, 34.66653558349887], [-77.40948297569982, 34.66639561191972], [-77.4089700948929, 34.66587679929812], [-77.40748881034652, 34.664779608403705], [-77.40744560195687, 34.66468877133772], [-77.40729276772265, 34.66471098340706], [-77.40591733208775, 34.66531865482541], [-77.40448617644785, 34.665950911430755], [-77.40446283895696, 34.665956870845896], [-77.40289401406511, 34.66635747906986], [-77.40164381180023, 34.667206541295094], [-77.40163062825451, 34.66728322244073], [-77.40154368490332, 34.667261769200216], [-77.4013885296643, 34.6672544261402], [-77.40144460381474, 34.66713679892287], [-77.40055838720349, 34.66581540724071], [-77.3997231414817, 34.664699129283164], [-77.39887825115682, 34.66577221173893], [-77.39875560746538, 34.66619534898792], [-77.39850110728871, 34.66665167375953], [-77.39849749647499, 34.6666641324504], [-77.39849080580942, 34.66667787811461], [-77.39828395497389, 34.667044631599936], [-77.39820131704217, 34.66711958543539], [-77.39798974653038, 34.667311483366014], [-77.39761986587152, 34.66753621430119], [-77.39758135309184, 34.667057224526246], [-77.39747532308289, 34.66686539146795], [-77.39739662938001, 34.66668795726946], [-77.3972618792965, 34.66656026205316], [-77.39706299999108, 34.66638079921044], [-77.39684811537232, 34.66577686826673], [-77.39623716498413, 34.665939890469716], [-77.39590209219737, 34.666314530712995], [-77.39560441177797, 34.666401034387405], [-77.39554713966098, 34.666749404648655], [-77.39545119416901, 34.66689865224179], [-77.39541913825278, 34.666984165346825], [-77.39532724172795, 34.667069975245184], [-77.39530957329971, 34.66708559106231], [-77.395172666844, 34.6671368525903], [-77.39513414053499, 34.66712812344476], [-77.39489235454919, 34.66706300825613], [-77.39487596833662, 34.66705517543016], [-77.39476805793625, 34.667035765152896], [-77.39459767309101, 34.66699847969738], [-77.39457357930918, 34.66699313963688], [-77.39454270327717, 34.666985684920405], [-77.39427275775346, 34.666925694648285], [-77.39406032078443, 34.66686738250845], [-77.39397713222797, 34.666840317034115], [-77.39388936071731, 34.666811867244526], [-77.39368422010926, 34.66674557634441], [-77.39349037683715, 34.66668293553738], [-77.39339143023464, 34.66665041475226], [-77.39328937427929, 34.66661579397805], [-77.39309896102108, 34.66655414844937], [-77.39290751506067, 34.66647733804082], [-77.3928115797144, 34.666440323994195], [-77.39272605364486, 34.6664044268354], [-77.39228885262929, 34.666213133785725], [-77.39224032165879, 34.666200586850344], [-77.39215686510177, 34.66619550536181], [-77.39192831424695, 34.66617175410231], [-77.39176722998721, 34.666107759834006], [-77.39163276390227, 34.66608612751933], [-77.39148137841767, 34.66603091367439], [-77.39055726413324, 34.66562409343549], [-77.39049145013996, 34.66560253903823], [-77.39036576837066, 34.665603566727484], [-77.38936550573573, 34.66517019802228], [-77.3893169604194, 34.665233462455134], [-77.38910911357549, 34.665565634254165], [-77.38869767878128, 34.66563534553475], [-77.3886136935125, 34.66559552993959], [-77.38851739892355, 34.665679309269315], [-77.38795323762938, 34.665809855785774], [-77.38793516303569, 34.665818106856484], [-77.38744324165604, 34.66600349027354], [-77.38730023960291, 34.665998432743606], [-77.38716261660007, 34.666029257820355], [-77.38697746612416, 34.66607986218655], [-77.38682059059634, 34.666089747398416], [-77.38667863133364, 34.66607869375262], [-77.38659958262659, 34.66606867273032], [-77.38614819588958, 34.6660640336689], [-77.38612615764755, 34.66603905665446], [-77.38609006320524, 34.66604495367235], [-77.38606736039928, 34.66606028414837], [-77.38560354975407, 34.666047325250695], [-77.38548649371474, 34.66606296715928], [-77.38534601328891, 34.6660590708278], [-77.38508148317888, 34.66605517447877], [-77.38489703311618, 34.666032300348974], [-77.38460303676118, 34.66603868527531], [-77.38459360723225, 34.66603668463865], [-77.38458910378115, 34.66603487668257], [-77.38441395614623, 34.665977918799996], [-77.38432828719753, 34.66593016929575], [-77.38426546237424, 34.66589515240733], [-77.38417992914778, 34.66584747822518], [-77.38411892355536, 34.6658108805686], [-77.38407302939439, 34.665778661085724], [-77.38398139277803, 34.66571966945215], [-77.38382299013642, 34.665609151843725], [-77.38371042186228, 34.665534096959426], [-77.38355651667216, 34.66544585563969], [-77.38331913961196, 34.665283155724985], [-77.38313123752863, 34.66519163905257], [-77.38290858969523, 34.665047603794605], [-77.38284404723814, 34.66485796386485], [-77.38267538100088, 34.66475418714154], [-77.38257979690565, 34.6647374944544], [-77.38250592813112, 34.66468756625275], [-77.38244587779103, 34.66468344884689], [-77.38238746635594, 34.66463190297581], [-77.38249510622754, 34.66451362780522], [-77.38251320579472, 34.66450560117409], [-77.38268764039593, 34.66436546904359], [-77.38270442577249, 34.66435603998829], [-77.38307740358887, 34.66405294749919], [-77.38308312716303, 34.6640487875982], [-77.3834934462783, 34.66377919302405], [-77.38368989412257, 34.66318411845265], [-77.38380968638178, 34.66297401343057], [-77.38388056200543, 34.66284615636006], [-77.3840484770416, 34.662767046402905], [-77.38417444594505, 34.66281086135503], [-77.38434429085969, 34.66290045081678], [-77.38509219162282, 34.66329470215782], [-77.38538469761147, 34.66345577905019], [-77.3861022555736, 34.663633342075485], [-77.38615631839926, 34.663649981875054], [-77.38617968149347, 34.66367136220636], [-77.38624713582517, 34.66366742246856], [-77.38678996274786, 34.66363012719333], [-77.38709360867009, 34.6637165552335], [-77.3873093665357, 34.66390244946747], [-77.38765370802616, 34.664073699044394], [-77.38815591877555, 34.664325511517276], [-77.38827123598375, 34.664386602948014], [-77.38835596421748, 34.6644202482604], [-77.38884270708758, 34.664718389386046], [-77.38884995508603, 34.6647294045328], [-77.38885975363388, 34.66474647929888], [-77.38905079083156, 34.664875926634814], [-77.38936224454531, 34.66507720144312], [-77.38948432464042, 34.66507855818895], [-77.39027482599454, 34.665161762827196], [-77.39030707754945, 34.66473543664771], [-77.39038541013196, 34.66438266776437], [-77.38985496493869, 34.66337694653742], [-77.38978757598294, 34.663218435181264], [-77.38978761244655, 34.663126114998136], [-77.38948840861117, 34.662711636299555], [-77.38946784782758, 34.66267611837077], [-77.38946040578956, 34.66267381152129], [-77.38936942474696, 34.66260619503666], [-77.38897253342853, 34.662292694953734], [-77.38895202046089, 34.662284877643415], [-77.38887330041959, 34.66227715700629], [-77.38850995311363, 34.662231128517455], [-77.38839295963166, 34.662228020399496], [-77.38814976978637, 34.662163372498284], [-77.38810392050537, 34.66214961795323], [-77.38784081658699, 34.662068694130745], [-77.38772705855065, 34.66204563339513], [-77.38755139015433, 34.66203511447152], [-77.3874188589941, 34.66198993717189], [-77.38736255279761, 34.66193212999576], [-77.38738774323352, 34.66180706987114], [-77.38763689076417, 34.661720785714714], [-77.38764159440417, 34.66172386308117], [-77.3876483871008, 34.66171904006118], [-77.38795482873866, 34.66167528763347], [-77.38826420206932, 34.66162675156317], [-77.38827286102423, 34.66162515453237], [-77.38858219398548, 34.66157503767753], [-77.3892014365486, 34.661257182206], [-77.38925835092928, 34.66123171476553], [-77.38928438890318, 34.661216557996475], [-77.38963186109969, 34.66092469489315], [-77.38973144110929, 34.660895769532864], [-77.3900017345648, 34.660805768558546], [-77.3902357479328, 34.66082183374382], [-77.39033609265186, 34.66082424957927], [-77.39058082632147, 34.66087206709854], [-77.3909206568596, 34.660909109497965], [-77.39118616034867, 34.66099407045119], [-77.39136892434442, 34.66096507191992], [-77.39180451197332, 34.66096544701017], [-77.39183489214922, 34.660966303171776], [-77.39229224411072, 34.660979617626424], [-77.39309527017484, 34.660858317415034], [-77.39313021443364, 34.66085444926479], [-77.39315163967595, 34.66084419366999], [-77.39399923071886, 34.660780090808096], [-77.39489675261181, 34.66037085663217], [-77.39556488686566, 34.65994755394186], [-77.39721602276299, 34.65890141734117], [-77.39748872994616, 34.65880035981377], [-77.3974550517583, 34.65860963548182], [-77.39629016252044, 34.6575709306065], [-77.39491056200141, 34.65541930898788], [-77.39464498694691, 34.654730319373826], [-77.39426562325677, 34.65470289247444], [-77.39273388083059, 34.653765152589756], [-77.39268020831582, 34.653732294155766], [-77.39111072208195, 34.653705326555176], [-77.39042145071892, 34.65309308685373], [-77.38948141206706, 34.65248645740899], [-77.38869949532713, 34.651798692681055], [-77.38795606190055, 34.65127798889757], [-77.38703974664102, 34.65042841162523], [-77.38559790111839, 34.64964955145288], [-77.38557467022734, 34.64882057042375], [-77.38480165705576, 34.6483940746638], [-77.38446831869007, 34.64847292009577], [-77.3844625704645, 34.6481148800664], [-77.38430769865508, 34.646970992260094], [-77.3832243757275, 34.647855403298344], [-77.38259268408456, 34.64736622375035], [-77.3824357726835, 34.64742415273907], [-77.38223895668904, 34.647374198386714], [-77.38164713592053, 34.647204276171095], [-77.38136800919014, 34.647162977594846], [-77.3802044403734, 34.647175038299174], [-77.38006978643241, 34.647167354602914], [-77.37998846219843, 34.64714873425909], [-77.37972245984625, 34.64709948888418], [-77.37939469670016, 34.64702443963045], [-77.3792811544741, 34.64696064629338], [-77.37893239205695, 34.64673970947902], [-77.37849256566611, 34.64658680566012], [-77.37795002043767, 34.64650565642126], [-77.37775655398602, 34.6464768511801], [-77.3777039148502, 34.646492629450144], [-77.37763534059448, 34.64647714415558], [-77.37721799091292, 34.64635499082152], [-77.37701817181696, 34.64631571595129], [-77.37668718320191, 34.646259588365346], [-77.37668640924585, 34.646259388293046], [-77.37635456062947, 34.64620013798661], [-77.37609617922642, 34.64628001127927], [-77.37595099983525, 34.64623977230039], [-77.37569256606596, 34.64609257645034], [-77.37560758315264, 34.64609922023763], [-77.37538586139928, 34.64615941629991], [-77.3751242907304, 34.64613549894413], [-77.37505915148807, 34.64612691972782], [-77.37501836542934, 34.646117833530475], [-77.37488857591323, 34.646084336867354], [-77.37476461869228, 34.64604616313446], [-77.37471006054201, 34.645983284257284], [-77.37455948082766, 34.6458781654967], [-77.37430604330714, 34.645566885302784], [-77.37404653360895, 34.64574563478868], [-77.37395245000714, 34.64570922968915], [-77.37364729041013, 34.64547537574223], [-77.37360471739376, 34.64547214920086], [-77.37332920897549, 34.64548571004454], [-77.37327236295667, 34.64546259875585], [-77.3731116247614, 34.64530027769986], [-77.3730420823088, 34.645283262671654], [-77.37310644170114, 34.645253433530804], [-77.37315286630795, 34.64521855304762], [-77.3732989423179, 34.645335400321265], [-77.37346087064736, 34.64525060722776], [-77.3736046083498, 34.645263412510566], [-77.37391464343067, 34.64453023704469], [-77.37393987802017, 34.64436352381947], [-77.3740154502587, 34.64412381220882], [-77.3743524553538, 34.64399037966293], [-77.3745780627993, 34.643737952853854], [-77.37463623704437, 34.64367923139066], [-77.37532989075937, 34.643496021662145], [-77.37533872005828, 34.64349509581584], [-77.37535584217922, 34.64348277839457], [-77.3758079078268, 34.643073598292524], [-77.37612761465762, 34.64256443590531], [-77.37614485056213, 34.642538581184986], [-77.37620868259907, 34.64251083779166], [-77.37615084615305, 34.64249417426866], [-77.37612763370632, 34.6424933259964], [-77.3760429035716, 34.6424434695035], [-77.3756565654253, 34.64224849893193], [-77.37556547487517, 34.64217890866083], [-77.37533909733585, 34.64213409589601], [-77.37509597028448, 34.64208375112089], [-77.37494480506867, 34.64204849448575], [-77.37472777880993, 34.641874984027055], [-77.37464295149093, 34.64178772517294], [-77.37455060059727, 34.64166008218046], [-77.37405227867417, 34.64112313826042], [-77.37394272314566, 34.640944525900046], [-77.373762211674, 34.64085302629605], [-77.37370618550537, 34.64080875478252], [-77.37343520466517, 34.64078743692614], [-77.3733808152391, 34.64078138710263], [-77.373350381277, 34.64078076387758], [-77.3729735858476, 34.64086743454992], [-77.37261556916467, 34.64094456208828], [-77.37256629902282, 34.64092650360638], [-77.37252147378427, 34.640856767703085], [-77.37237254588779, 34.64051589157733], [-77.37229405085246, 34.6404098941282], [-77.37218516654451, 34.640227623101495], [-77.37215269056598, 34.64015798052168], [-77.3721374001438, 34.64012519095333], [-77.37209490066918, 34.6400340531142], [-77.37209149412094, 34.64002566116753], [-77.37210054173858, 34.64000941056051], [-77.37213417278352, 34.63991337642668], [-77.37218527690919, 34.63987952481717], [-77.37233778494945, 34.63983597374437], [-77.37244236145098, 34.63980449702065], [-77.37257960880012, 34.63979769440611], [-77.37295784294135, 34.63959986768134], [-77.3729739783075, 34.639590848385176], [-77.37298219438475, 34.63958783640288], [-77.37298983983219, 34.6395778900514], [-77.37336839340816, 34.63922719672594], [-77.37343106151596, 34.639157251055224], [-77.37356558980345, 34.63907807396077], [-77.37356956492184, 34.63907413175774], [-77.37358273125733, 34.63906795693942], [-77.37372102960974, 34.63900310572164], [-77.37376276919714, 34.63898352207747], [-77.3741006355565, 34.63893259555904], [-77.37422493533624, 34.638902431444365], [-77.37455132329573, 34.63915414243704], [-77.37489772991245, 34.63882691918822], [-77.37494572032702, 34.6388216072955], [-77.37498999961613, 34.638817626773076], [-77.37507706646574, 34.6389942425575], [-77.374964935669, 34.639293471988914], [-77.37498127692153, 34.639677132095215], [-77.37498569722898, 34.63971504266166], [-77.37533971149716, 34.63992866055506], [-77.37544805539764, 34.63995635192731], [-77.3759569264583, 34.639815150688804], [-77.37612839722942, 34.63965459961964], [-77.37622880777747, 34.63953601555618], [-77.37633036895416, 34.639314199003834], [-77.37648461839755, 34.63907461195996], [-77.37670653540997, 34.63881579057538], [-77.37691729684171, 34.63854040307672], [-77.377254756002, 34.638600316233216], [-77.3776708849101, 34.63890375619273], [-77.37770579507253, 34.63893660786036], [-77.37806671533093, 34.639307144726345], [-77.37849429233168, 34.63936821890246], [-77.37907784229603, 34.63977090973837], [-77.37928280023239, 34.63978675129208], [-77.37965703701332, 34.639912930114704], [-77.3796770757024, 34.639914224878304], [-77.37972948956768, 34.639937358092055], [-77.38007133809292, 34.6401060642942], [-77.38014036918061, 34.640171947199065], [-77.38022672330078, 34.64023385153594], [-77.38020759094078, 34.64038338152793], [-77.3802909500064, 34.64064916240015], [-77.38032534817454, 34.64079510542972], [-77.3806214941485, 34.641026108296515], [-77.38069397540974, 34.64119412445324], [-77.38140079965609, 34.64149650152909], [-77.38164827748254, 34.641504376863054], [-77.38291582409754, 34.641544700488346], [-77.38317526708704, 34.641561424147255], [-77.38322551463713, 34.641564080049775], [-77.38329825592784, 34.64156792398741], [-77.38480272220174, 34.64181616644322], [-77.3872799124004, 34.641884836764504], [-77.38952547266729, 34.64060200828869], [-77.39111173676949, 34.6416773536629], [-77.39391587814606, 34.64128036349124], [-77.39729771706523, 34.6377734502682], [-77.39735250177142, 34.637692052624224], [-77.39742076192456, 34.63745897360649], [-77.39774886446962, 34.637355076346374], [-77.40171118703468, 34.6349637804576], [-77.40094387462061, 34.63345377371959], [-77.39900958913134, 34.630733391868176], [-77.40087879794947, 34.627394508767004], [-77.40086616053833, 34.62706905292792], [-77.40070316182434, 34.6269544131967], [-77.40077640388574, 34.62368541073532], [-77.4006604590808, 34.623609925330406], [-77.40057484058956, 34.62360851864892], [-77.39986300601446, 34.62288550403633], [-77.3997863912277, 34.622890554762186], [-77.39967657211542, 34.62287663525911], [-77.39925562575672, 34.62277811140529], [-77.39899795145064, 34.62271499405704], [-77.39870582729218, 34.62260039504604], [-77.39845258531926, 34.622322305431986], [-77.39833342157067, 34.622206050525456], [-77.39820952239324, 34.62209065010849], [-77.39794193463294, 34.621835008753465], [-77.39755696495686, 34.62174866321537], [-77.39742109793707, 34.62173005952215], [-77.39733700888856, 34.62172462021502], [-77.39702688276918, 34.621719249646205], [-77.39691729873388, 34.62169458665438], [-77.39671134529308, 34.621639555081664], [-77.39663267746026, 34.62144135272291], [-77.3965793449498, 34.62131875357157], [-77.39652832610363, 34.621013943835294], [-77.39650113434772, 34.62090546083103], [-77.39632113819098, 34.62059585174377], [-77.39628437527874, 34.620512149426354], [-77.39625895907935, 34.62049378295408], [-77.39623850339328, 34.62048102321605], [-77.39616738996084, 34.62045242816926], [-77.3958443013748, 34.62031614069411], [-77.39569411267559, 34.62033445544553], [-77.39545008773808, 34.6204031964873], [-77.39526131256848, 34.62045637316375], [-77.39505587591145, 34.62044273951249], [-77.39491254986075, 34.620439771691466], [-77.39485877106011, 34.62044137445647], [-77.39472978965094, 34.620385127830126], [-77.39466167125887, 34.62035754411625], [-77.39461839337244, 34.620327824782635], [-77.39459164709636, 34.62025625749176], [-77.39453410714265, 34.62012769357408], [-77.39455288975236, 34.62002988137898], [-77.39455214255304, 34.61991280747492], [-77.39455804320798, 34.61980030941007], [-77.39498644831627, 34.6195004417379], [-77.39505593217903, 34.61945221880289], [-77.39507881329267, 34.6194369321348], [-77.39516750700236, 34.61939949908671], [-77.39570920566453, 34.61917582031958], [-77.3958443557664, 34.61917041580177], [-77.39594471657631, 34.61917932529454], [-77.39613993270338, 34.619259265616506], [-77.39621478872718, 34.61927406729477], [-77.39623855403576, 34.619293896222], [-77.39641176273655, 34.61945807535163], [-77.39661523193489, 34.61961529145722], [-77.39663274547375, 34.619625199106395], [-77.39686337863628, 34.61975567091968], [-77.39702694366123, 34.61984820069113], [-77.397122713462, 34.61986352678426], [-77.39733694524247, 34.61984508580545], [-77.39742115104656, 34.61981986165085], [-77.39759001205405, 34.61971741249994], [-77.39796504423674, 34.61958182761009], [-77.3979162667056, 34.61931898082858], [-77.39781537226727, 34.61920108985251], [-77.39770093336897, 34.61903413636512], [-77.39758532034965, 34.61887402232336], [-77.39742118399921, 34.618680136775986], [-77.39740863650388, 34.618665235993255], [-77.39739838074144, 34.61865320046888], [-77.39726652415231, 34.61841422920539], [-77.39715155329336, 34.61826422652044], [-77.39698321322132, 34.617911104269844], [-77.39694385469012, 34.617869610089336], [-77.39663282254119, 34.617641052596106], [-77.39655554964207, 34.61758426956214], [-77.39642644899567, 34.61751965864185], [-77.39622048546698, 34.61714435054708], [-77.39584445706305, 34.61708999501677], [-77.39562262096442, 34.61702537517628], [-77.39509549223905, 34.6169049079028], [-77.39505608086645, 34.61689317952495], [-77.39503553338635, 34.616893236148144], [-77.394740430534, 34.61691366054583], [-77.3943043020941, 34.6169371205014], [-77.39426769301654, 34.61691766548995], [-77.39421209684023, 34.61692996871913], [-77.39387349761668, 34.616945906398314], [-77.39379706090934, 34.616967371005785], [-77.39363576988018, 34.61690443416951], [-77.39347931955457, 34.616747493840855], [-77.39334297059678, 34.616690603906015], [-77.39325902267824, 34.61651543161687], [-77.39295143030967, 34.61632249069501], [-77.39281906906014, 34.61620361711139], [-77.39269100234286, 34.61597134101808], [-77.39248916815964, 34.61617177374087], [-77.39229679182056, 34.616201200008035], [-77.39218226991294, 34.616132179433315], [-77.39190262820499, 34.615927742210076], [-77.39173539052132, 34.616317741548], [-77.39136192735684, 34.6162848659453], [-77.39111424851644, 34.615940752266994], [-77.39097726351523, 34.615905539571614], [-77.39072006206798, 34.6159147707412], [-77.3903844245688, 34.61590652800902], [-77.39032586706388, 34.615963951662515], [-77.39020907881337, 34.616167549948266], [-77.39013073574262, 34.61630460732041], [-77.39005622292675, 34.61644955587334], [-77.39002113794665, 34.61653269195043], [-77.38993158301211, 34.616744898092115], [-77.38986181233, 34.61655566118184], [-77.38978885762175, 34.616507649037224], [-77.38976356304313, 34.616388811261196], [-77.38975710534255, 34.616358472132575], [-77.38975932047747, 34.6163314597364], [-77.38976917518218, 34.616181735296905], [-77.38980636958553, 34.616139085868795], [-77.38993167365943, 34.615995404307036], [-77.39002301081221, 34.61599394533202], [-77.39017753453673, 34.61587329208745], [-77.39025879813904, 34.615789316694546], [-77.39022987803278, 34.6156534617185], [-77.39032591332857, 34.61556724343904], [-77.39044252260774, 34.615536113168424], [-77.39061757994276, 34.615495713341744], [-77.39072009722855, 34.61560063047822], [-77.39090376953385, 34.61554184211151], [-77.39111428490122, 34.61560114811093], [-77.39127813328878, 34.615538145333936], [-77.3917629136699, 34.615494190983995], [-77.39190266725365, 34.61552788132098], [-77.39198578105325, 34.615523066665496], [-77.39261351046214, 34.615438560729594], [-77.39269105008651, 34.61542998158936], [-77.39277279573838, 34.6154110639322], [-77.39311632954116, 34.61544957365683], [-77.39335034951395, 34.61555484079213], [-77.39347941575303, 34.61552228620652], [-77.39357907192957, 34.615490183354666], [-77.39380379692004, 34.615350443288456], [-77.39398087258321, 34.61501583718921], [-77.39393610202555, 34.61490679507641], [-77.39391717712174, 34.61486264308764], [-77.39375233538686, 34.614508723486736], [-77.39378826750715, 34.614170994613474], [-77.39367430696922, 34.61409540535328], [-77.39382361810415, 34.6140199153599], [-77.39387371791078, 34.613979633864666], [-77.3940214818275, 34.61388619322933], [-77.39410564462916, 34.6138584339829], [-77.39426790017916, 34.61393927854249], [-77.39437419738502, 34.61399447912851], [-77.39455035927892, 34.614089398229936], [-77.3946620685736, 34.61410274088822], [-77.39480006835163, 34.61408170282728], [-77.39505624965437, 34.6140825742202], [-77.39528256657343, 34.614044290083164], [-77.39561070859465, 34.61398879127251], [-77.39584461699323, 34.61392726171381], [-77.39610857118888, 34.61388462609209], [-77.39623879906162, 34.613856505910164], [-77.39634897920286, 34.61382836120107], [-77.39652834285842, 34.61379652369023], [-77.3966329809237, 34.61377387422516], [-77.3967347648515, 34.61376367888458], [-77.39691788574677, 34.61374533613087], [-77.39702715789437, 34.61379904816631], [-77.3973869160603, 34.61398456021091], [-77.39739288428916, 34.614014336932016], [-77.39742132649889, 34.61408449065722], [-77.39762898538633, 34.614575103575305], [-77.3979604838631, 34.61475097673823], [-77.39801463923266, 34.61495322645305], [-77.39805562691541, 34.615161826662685], [-77.39820965795971, 34.61526505745873], [-77.39847778178456, 34.61523671512159], [-77.39841024083739, 34.61553525085594], [-77.39860383531774, 34.61568297958655], [-77.39872304390018, 34.61578630544778], [-77.39897416554291, 34.615878483138886], [-77.39899801929629, 34.615887898129955], [-77.39901541318791, 34.61589126818599], [-77.39919511243866, 34.61594696723778], [-77.39938416528072, 34.615819343045665], [-77.39938844292463, 34.61581467144541], [-77.3993922074913, 34.61579144397825], [-77.39949737488847, 34.615378439545985], [-77.39939221184422, 34.615246294477686], [-77.39928032054577, 34.61510569440942], [-77.3991355732664, 34.61500605486966], [-77.39899803578027, 34.61460942920057], [-77.39898971205663, 34.61461148703757], [-77.39898574276917, 34.6146030941552], [-77.39899516036951, 34.614598638483805], [-77.39899803595111, 34.614596607738584], [-77.39919850727463, 34.61414783063984], [-77.3992480910056, 34.613985432402764], [-77.39932547544353, 34.613704942142434], [-77.39933937909333, 34.613335288908814], [-77.39934642680113, 34.613277347288104], [-77.39935248014007, 34.61323365891314], [-77.3993922322554, 34.61297545064312], [-77.39941357024381, 34.61286607114163], [-77.3997147485489, 34.61287682747678], [-77.39978640622633, 34.61289993616975], [-77.39989608847651, 34.612891625352596], [-77.4004960508423, 34.61277170630372], [-77.40057475189242, 34.612769400739445], [-77.40065214557076, 34.61274778040786], [-77.40077183799522, 34.612755851388044], [-77.40081068982363, 34.612811984656005], [-77.4008609730341, 34.61294258694996], [-77.4008321654038, 34.613063021507635], [-77.40088305374114, 34.61314817667764], [-77.40097364826202, 34.613467184436786], [-77.40136311206882, 34.61386481124582], [-77.40158588002615, 34.61398806496987], [-77.40175729459332, 34.614132443255244], [-77.40179285733903, 34.6141598455479], [-77.40180546397721, 34.61419633133803], [-77.4019058487758, 34.614446420481926], [-77.40215148626808, 34.61466728874633], [-77.40225862596708, 34.61486470698339], [-77.40240568366495, 34.614958886084885], [-77.4027148416366, 34.61515665512415], [-77.40293986916208, 34.61527855368308], [-77.4029685015513, 34.615302261116], [-77.4030170885037, 34.615636666572286], [-77.40302608770936, 34.615718527802656], [-77.40301970109952, 34.61580541570059], [-77.40293990727359, 34.616370697837574], [-77.40289223920406, 34.61653564026473], [-77.40287686813579, 34.61658920665333], [-77.40293991743816, 34.61665892555158], [-77.40332451572912, 34.61695954136539], [-77.40333411990996, 34.61696081780804], [-77.40334108460617, 34.61695430828995], [-77.40372829515402, 34.61659511010746], [-77.40378410019707, 34.616518422920194], [-77.40389341926512, 34.61644253966647], [-77.40412247157943, 34.61632413338612], [-77.40440647301048, 34.61624983608113], [-77.40451665352148, 34.616202289550586], [-77.40506608942638, 34.61627333645283], [-77.40525186406272, 34.61630380090859], [-77.40530503807977, 34.61634289838604], [-77.40540651010039, 34.61633351074129], [-77.40581518584696, 34.616464931050004], [-77.40609344717807, 34.61678558389991], [-77.40618790696797, 34.616858878031], [-77.40626837459004, 34.61694900193192], [-77.40688188796176, 34.617510156415406], [-77.4070302381003, 34.61752843014828], [-77.40767027101856, 34.61746697386524], [-77.40803189738872, 34.61754366231547], [-77.40836951719221, 34.617590962305826], [-77.40845868507262, 34.6177371400221], [-77.4089180291232, 34.61826493135554], [-77.40896938905817, 34.61855670081856], [-77.40893153638567, 34.619112138273486], [-77.40888672557662, 34.61957942198238], [-77.40845888864887, 34.61970892203898], [-77.40788355278603, 34.61988306369092], [-77.40751647963177, 34.61999961219203], [-77.40736443113894, 34.62051715905462], [-77.4077826832204, 34.620976246348555], [-77.40810575862696, 34.62131012823747], [-77.40845909469581, 34.62167526691708], [-77.40893547021952, 34.62199516168965], [-77.40937365894156, 34.621731646432465], [-77.4094633695803, 34.62158285201976], [-77.41003582768798, 34.620721609272984], [-77.41006476648268, 34.62067807143121], [-77.41009888162581, 34.62064197340871], [-77.41082418449076, 34.620274212213445], [-77.41103641405209, 34.620278073062224], [-77.41121838935001, 34.620267015227356], [-77.411462750928, 34.620283724544464], [-77.41161259781583, 34.620285777487055], [-77.41171932906644, 34.620293126558614], [-77.41219120416676, 34.62033996779921], [-77.4123455079863, 34.62037748694684], [-77.412401026422, 34.620398562545134], [-77.41260198818414, 34.62049710050276], [-77.41284034283561, 34.620622295782596], [-77.41318951161767, 34.62085020680662], [-77.41331053365617, 34.620897211101635], [-77.41345831652372, 34.621006215674804], [-77.41325476110399, 34.621814653146345], [-77.41326741935613, 34.62188293430819], [-77.41397819629645, 34.62241410506441], [-77.41421224087053, 34.622343613266615], [-77.41476663603106, 34.62246252025177], [-77.41550254237585, 34.62235287447306], [-77.41555504888349, 34.62236960078242], [-77.41556823363908, 34.622385741411065], [-77.41561269901425, 34.62239351871969], [-77.416343574713, 34.622848223339844], [-77.41667584083407, 34.62259793713845], [-77.4167841923975, 34.62259893008493], [-77.41713200616584, 34.62283664786183], [-77.41743823059447, 34.622459840042914], [-77.4179203012582, 34.6222066511944], [-77.4180117034508, 34.62214559508978], [-77.41811008518478, 34.62203293094157], [-77.41855085176744, 34.62179934505506], [-77.41870862697658, 34.621762913546355], [-77.41889005073162, 34.62172489251466], [-77.41910281586762, 34.62166659945319], [-77.41930053808696, 34.621649404131375], [-77.41949701746434, 34.62162756572014], [-77.41967772599472, 34.62161192194027], [-77.420134911303, 34.62157842272121], [-77.4202854227466, 34.62156374892533], [-77.42042414864433, 34.621549346298494], [-77.42048252479961, 34.621551689829154], [-77.42066508524718, 34.621663969568594], [-77.42066659937862, 34.62167781954203], [-77.4206797264893, 34.62193488324674], [-77.42068741192037, 34.62207709048142], [-77.42068785054597, 34.62209397278421], [-77.42057216161125, 34.62252655723405], [-77.42064737079951, 34.62297540866781], [-77.42120530152867, 34.62315514042563], [-77.42128444863373, 34.62322331220258], [-77.42131879662608, 34.623122806815864], [-77.42197365301847, 34.62276903158177], [-77.42215272552312, 34.622553186762204], [-77.42237416431017, 34.62228977908285], [-77.42253650116763, 34.62203743002771], [-77.42253711820322, 34.622036257989805], [-77.42269360307026, 34.62178214309219], [-77.4227897801694, 34.621728776103495], [-77.42296425494567, 34.6216756266142], [-77.42322438270693, 34.62165475953373], [-77.42346426476638, 34.62158144527692], [-77.42379171487183, 34.62154712479864], [-77.42397714898435, 34.62153433620662], [-77.42406612946762, 34.62154027141477], [-77.42418366957071, 34.62156813002388], [-77.42438068600823, 34.621612932587716], [-77.42444337237805, 34.62177526884802], [-77.42441587322591, 34.62187120063594], [-77.42442786159319, 34.622012305278076], [-77.42436700234182, 34.622254355615546], [-77.42438543690682, 34.622374455722344], [-77.42449808748006, 34.62284053211611], [-77.42458566683834, 34.62293051441378], [-77.42481604550858, 34.6231446757856], [-77.42482419937669, 34.6232317828684], [-77.42450013519226, 34.62344637021192], [-77.4243125167697, 34.62358786701655], [-77.42411841501445, 34.62380210349806], [-77.42392739245818, 34.62407251037369], [-77.42375316721625, 34.62455997369327], [-77.42366837801524, 34.624601303978814], [-77.42299852036916, 34.62467278201237], [-77.42273690767098, 34.62468909313213], [-77.42223613846937, 34.62469025649948], [-77.42214970513737, 34.62468909826849], [-77.42172157148964, 34.62482159429411], [-77.42129848754684, 34.625010557887975], [-77.42104826202487, 34.62541523721477], [-77.4207944599033, 34.62607305200334], [-77.42051810570766, 34.62678928486311], [-77.42035880205076, 34.62708855806151], [-77.42032816184981, 34.6271487582103], [-77.4202804830379, 34.627242431340775], [-77.41936136672287, 34.6288495905571], [-77.42021549485574, 34.62958722873575], [-77.41969171256727, 34.630232379290874], [-77.42018320555152, 34.63085433830345], [-77.42119564507968, 34.630588457322574], [-77.42185762258741, 34.63016211696255], [-77.42337978194846, 34.62918174555829], [-77.42468580471564, 34.62867429228849], [-77.42476265975137, 34.628250445689076], [-77.42508939607788, 34.62851632789637], [-77.42513718974278, 34.628681076305185], [-77.42521882478803, 34.62886087968594], [-77.42556358352306, 34.629765055919506], [-77.42644698503132, 34.62929079090734], [-77.42652148813984, 34.629025132923815], [-77.42691596752631, 34.62843340426939], [-77.427119533524, 34.6282872863964], [-77.42762660000965, 34.62815841198933], [-77.42795648050223, 34.62839276086922], [-77.42809033748122, 34.628505854141004], [-77.42808806413292, 34.628578770952565], [-77.42810663754281, 34.62863280310163], [-77.42807101492006, 34.62881138652481], [-77.42802298437479, 34.629222980232626], [-77.4279496564777, 34.62935667691676], [-77.42778986542206, 34.62976083965589], [-77.42749068025046, 34.630534038116714], [-77.42688781908146, 34.63113615448935], [-77.4277935523462, 34.631641018520526], [-77.42844291855359, 34.63173138849042], [-77.4294771714938, 34.63187531320425], [-77.42998016828358, 34.631945308744825], [-77.43081712118986, 34.632486794348566], [-77.4336194449179, 34.631801127988574], [-77.43349616648291, 34.63073006076616], [-77.4337086968441, 34.6305934861834], [-77.43350115029337, 34.62999016135251], [-77.43349850627146, 34.62990048626558], [-77.43348295257093, 34.62937309106523], [-77.43435372581675, 34.62974718835268], [-77.43434104603115, 34.63000891496788], [-77.43490225854896, 34.62977230335033], [-77.43549563963019, 34.6290419557585], [-77.43554404161739, 34.628669466155436], [-77.4355205381033, 34.62856749248088], [-77.43555409408835, 34.62792811577124], [-77.4350931659578, 34.627571397110295], [-77.43435887939856, 34.62826875401734], [-77.43458452296264, 34.62842223269641], [-77.43433221236921, 34.628633548387846], [-77.43432369664832, 34.62895039335516], [-77.43353347546544, 34.629167476990396], [-77.43369832978439, 34.62873153550436], [-77.43360974980547, 34.628482249848446], [-77.43357787139047, 34.628199066117155], [-77.43355253746013, 34.62806107070392], [-77.43380764683494, 34.62791826752551], [-77.43421530793574, 34.628206383354346], [-77.43465994919069, 34.627444465865096], [-77.43427684009161, 34.62707567464541], [-77.4339630998727, 34.62690458438664], [-77.43394924945696, 34.6268310591204], [-77.43396056331817, 34.6263455460447], [-77.43417154061811, 34.62610669620658], [-77.43426187489764, 34.625831558264295], [-77.43419133865096, 34.62562104217344], [-77.43384224473547, 34.62546206325773], [-77.43364478440331, 34.62537482391649], [-77.43340814280171, 34.6252568837872], [-77.4332045036694, 34.62499873227972], [-77.43312291803682, 34.624928587998674], [-77.43279067692075, 34.624590312187266], [-77.43230367780842, 34.624423584520564], [-77.43221383391014, 34.624381117902225], [-77.43207388111524, 34.62422389814546], [-77.43175599681757, 34.62433506947138], [-77.43157221282095, 34.62431206896802], [-77.43152308373216, 34.624311122170596], [-77.43132332101666, 34.624333731698876], [-77.43131519851032, 34.62433356815038], [-77.43131147029129, 34.62433434206428], [-77.4311510051743, 34.6243087558392], [-77.43112572830768, 34.62426932936589], [-77.43109015999246, 34.62421555842539], [-77.43109484374985, 34.62414885666016], [-77.4310898735229, 34.6241019170808], [-77.43114987729803, 34.62401392133414], [-77.43119296530239, 34.62388683987317], [-77.43123340871567, 34.62384243204676], [-77.43137391858254, 34.62358736472623], [-77.43138173587778, 34.623584624547604], [-77.43137702214833, 34.62357549047442], [-77.43145186799207, 34.6231893826433], [-77.43133147379531, 34.62271702571283], [-77.43133807059036, 34.622483336859226], [-77.43094231126828, 34.62227848756012], [-77.43091719693733, 34.62223404142735], [-77.43085574465084, 34.622161614255475], [-77.43066217663674, 34.62193747957824], [-77.43056637128205, 34.6218237921757], [-77.43048367235826, 34.62172165109646], [-77.43047800948563, 34.621620726177426], [-77.43062412972579, 34.621461089785235], [-77.43099371252538, 34.62110452209815], [-77.43108091065828, 34.62100152714552], [-77.43118082541982, 34.620960012071585], [-77.43134740176707, 34.620869315279194], [-77.43163356719478, 34.62069309808071], [-77.43214054261912, 34.62077768669239], [-77.43215293240628, 34.620799004705184], [-77.43219443860484, 34.62082138096646], [-77.43270360653426, 34.621040153362365], [-77.43293025380002, 34.621029394555364], [-77.4332836470189, 34.620959022255974], [-77.4335390470816, 34.62093327851498], [-77.4337750714559, 34.621050318419584], [-77.43406406220332, 34.62120578372581], [-77.43442343251697, 34.62128146972656], [-77.43461447645305, 34.621447252906485], [-77.43483897840825, 34.62148557235561], [-77.43488799155818, 34.62157005521197], [-77.43483720171363, 34.62169683526954], [-77.43470371110928, 34.6218933678368], [-77.43465319448794, 34.622121089759844], [-77.43457365181224, 34.62222403421063], [-77.43452799520279, 34.62231269076029], [-77.43451866210795, 34.62247851726514], [-77.43450975859139, 34.62305637105941], [-77.43466142805757, 34.6232182040727], [-77.43476337718107, 34.62352931568013], [-77.4347671021826, 34.623721508529144], [-77.43478503039913, 34.62398131102656], [-77.43476313766782, 34.62446112196117], [-77.43492847777135, 34.62472017248868], [-77.43520123235783, 34.62492143346882], [-77.4352725510456, 34.62505441804616], [-77.43529176593952, 34.62519035885706], [-77.43546580998115, 34.62509047285233], [-77.43560809439214, 34.62506382339249], [-77.43652631068804, 34.62512297205518], [-77.4368335767058, 34.625134401235606], [-77.43706563768494, 34.62517238269582], [-77.43719167858661, 34.62524591279028], [-77.43721133520059, 34.62558691331212], [-77.43721174131362, 34.62560943894797], [-77.43772275584902, 34.625652145716735], [-77.43802980436095, 34.625500794232266], [-77.43830732251985, 34.62538900250492], [-77.4386288319504, 34.62520551672365], [-77.43864510801366, 34.62519749377254], [-77.43864884781071, 34.62519355370412], [-77.4389701417105, 34.625001521647974], [-77.43905358230879, 34.62471519593137], [-77.43885594917816, 34.6244910633247], [-77.43879296097154, 34.62442024010073], [-77.43865614340119, 34.62427221337036], [-77.43852588523941, 34.62412712302463], [-77.43847069142767, 34.6240477188519], [-77.43830260960732, 34.62392857854727], [-77.43802669662861, 34.623676168012175], [-77.43788483132712, 34.62357135938838], [-77.43757668071486, 34.62331198009714], [-77.43748720251203, 34.62324371020657], [-77.43720994908082, 34.62302523821263], [-77.43715140903187, 34.62291755125499], [-77.43693301330869, 34.62276667090073], [-77.4369086402439, 34.62274187794561], [-77.43671135505721, 34.622541193312124], [-77.43665013426204, 34.62244631671344], [-77.43661651865082, 34.622319566883334], [-77.43660038305504, 34.622275875780836], [-77.43663505344139, 34.622177353755085], [-77.43666811875926, 34.62207194681818], [-77.43671193561465, 34.62195887995259], [-77.43688995096315, 34.621795826540165], [-77.43711737090769, 34.62157464810498], [-77.43724550736574, 34.62130082843099], [-77.43717059634075, 34.62106570158359], [-77.43698446474633, 34.62103351875304], [-77.43687586993806, 34.62090499820148], [-77.43677890509598, 34.620630245338816], [-77.43675935124327, 34.620568966642736], [-77.4367020272191, 34.62049118938144], [-77.43669750758903, 34.6202173507335], [-77.43674261578022, 34.62014981071458], [-77.43702191178483, 34.620124881834364], [-77.43721100579681, 34.620102113271216], [-77.43726135594024, 34.62012411591673], [-77.43756637570004, 34.620338929301795], [-77.43763893506576, 34.62049327490206], [-77.43805557638117, 34.62056872706205], [-77.4384811965093, 34.620739016838115], [-77.43866747013885, 34.620559607178436], [-77.43928759289292, 34.62030658059268], [-77.43942026165645, 34.620328029682966], [-77.43971126132593, 34.62030546261899], [-77.44015516001363, 34.62016036956603], [-77.44015480221924, 34.62046068012192], [-77.44026882097444, 34.62067630923907], [-77.44039140729133, 34.62078583510659], [-77.44058395648953, 34.621324968994074], [-77.44076603875455, 34.6219134236248], [-77.44079061425636, 34.62200455293633], [-77.4408187077723, 34.62209202295721], [-77.44095342846116, 34.62208750524814], [-77.44132979540124, 34.62238155814251], [-77.4418900124841, 34.62230673490596], [-77.44204845847314, 34.62224623844707], [-77.44224121990428, 34.621960264715476], [-77.44227564398456, 34.62182225729988], [-77.44233997337119, 34.6215628606092], [-77.4423508877878, 34.621229167393466], [-77.44265048743004, 34.62073583677907], [-77.44266369724564, 34.62071921094862], [-77.44267572726764, 34.620696264994955], [-77.44294715167007, 34.620198981025965], [-77.4431802989974, 34.619846287189674], [-77.44327203392581, 34.61969324841719], [-77.44343494586184, 34.61962837257758], [-77.44358235042398, 34.61962808451714], [-77.44365915077266, 34.619709766006565], [-77.44370354741699, 34.61984424366986], [-77.4436653246167, 34.61998379554229], [-77.44361591741115, 34.62009134328939], [-77.44358719136218, 34.62018450794909], [-77.44333245215998, 34.62033380533105], [-77.44348273246743, 34.62049856574158], [-77.44353453866297, 34.620600810827675], [-77.44370310963504, 34.620607938198305], [-77.44393089828064, 34.62074004358189], [-77.4440920952705, 34.62083352895007], [-77.44430333312111, 34.62098323531873], [-77.44432375814094, 34.620997288821464], [-77.44432622932894, 34.621004462595415], [-77.44435002182408, 34.62105039261709], [-77.44446780451472, 34.62128854318785], [-77.44452889334373, 34.62137186532955], [-77.44455035895004, 34.621671186353446], [-77.44517482610692, 34.62221728535907], [-77.44518726126161, 34.6222281055523], [-77.44518925503043, 34.622235217322114], [-77.44521727132863, 34.62229760141608], [-77.44567289474602, 34.622828150492246], [-77.44581226874064, 34.62305972571346], [-77.44585553041115, 34.623249354289925], [-77.44586322533465, 34.6235123917593], [-77.44588374851662, 34.623704142009544], [-77.44561713646371, 34.62375806532437], [-77.44535809421396, 34.62385743172526], [-77.44471080937863, 34.624288689596376], [-77.44448347347037, 34.624453027806254], [-77.44429415139209, 34.6246982471434], [-77.4443027803573, 34.62562862223324], [-77.44448027283923, 34.62612218630057], [-77.44550395985678, 34.627185485943215], [-77.44650049255685, 34.627946842820535], [-77.44790686495868, 34.62809926551699], [-77.44994614811614, 34.628045667266804], [-77.45116629657261, 34.62716988436246], [-77.45268157676409, 34.62608227588599], [-77.45337929328633, 34.62522160126477], [-77.45463585628558, 34.623226361884626], [-77.45393445463057, 34.62251611910582], [-77.45309435930614, 34.62218894770895], [-77.45294210575196, 34.62190060255024], [-77.45245842455549, 34.62185944040303], [-77.45230197170514, 34.62167640345441], [-77.4520822799372, 34.62153692506906], [-77.45223284190759, 34.62103576839975], [-77.45226096054931, 34.62098004350259], [-77.45229793285495, 34.620939033560596], [-77.45223250436256, 34.620939393426276], [-77.45221025410129, 34.62095329274515], [-77.4522010058082, 34.62095906986967], [-77.45137314939109, 34.621075671586716], [-77.45112709874758, 34.62083799844829], [-77.45095913081616, 34.62066747414879], [-77.45093080276366, 34.62059038602506], [-77.45094895886074, 34.620521058140405], [-77.45097342142424, 34.62027683481235], [-77.45097731532323, 34.62022128223573], [-77.45098043972898, 34.620206972282915], [-77.45109302982203, 34.61995206749494], [-77.45135884775013, 34.61976430489077], [-77.45138715036424, 34.61974526802459], [-77.45147421634628, 34.61969690022928], [-77.45172137377709, 34.61955249737779], [-77.4518105917886, 34.619493950614974], [-77.45198511297326, 34.619413080639895], [-77.45246186802056, 34.61919216028061], [-77.45274373347755, 34.619061547338006], [-77.45326782023994, 34.61885471907853], [-77.4534212203274, 34.6176957054742], [-77.45348022479872, 34.61764776410266], [-77.45340763490297, 34.61764610062174], [-77.45339541575511, 34.61766058457377], [-77.45240121602691, 34.61781086606833], [-77.45219075022459, 34.61785853354451], [-77.45172490236246, 34.617902453854], [-77.45135435366439, 34.61782795350304], [-77.45092603687651, 34.61763767144002], [-77.45064673707435, 34.61739191823983], [-77.45024425511265, 34.61717754182956], [-77.45014706100781, 34.617121299786106], [-77.4501303331336, 34.61710892484989], [-77.45010392148973, 34.617101622727134], [-77.4500650693026, 34.6171148507331], [-77.44960962265233, 34.61721653585762], [-77.44935135962356, 34.617348208713196], [-77.44920397514807, 34.6174329757652], [-77.44915169648367, 34.617464288238544], [-77.44909984772418, 34.61745445423676], [-77.44909822488334, 34.61742039367256], [-77.44908453167432, 34.61739118529031], [-77.44876022346486, 34.61695532902986], [-77.44863458100039, 34.61681409282276], [-77.44838888680422, 34.61659855683673], [-77.44833879944603, 34.61655621688507], [-77.4478104947111, 34.61640632504617], [-77.44771553202625, 34.616403877114465], [-77.44755169349446, 34.61638437179219], [-77.44722685216252, 34.61612180216153], [-77.4472313461534, 34.6160815008728], [-77.4471113147937, 34.615771435579404], [-77.4474542961739, 34.61558198007714], [-77.4475691925334, 34.61552499357636], [-77.44784445217385, 34.61533192833248], [-77.4481330627566, 34.615480079150224], [-77.4485968108221, 34.61543775034638], [-77.44867784684031, 34.61539069268864], [-77.44906905890103, 34.61524234049593], [-77.44909397875982, 34.61520606193042], [-77.44903684011318, 34.6151246705088], [-77.44891179821256, 34.614941319907174], [-77.44883587176383, 34.614910408621085], [-77.44884198799319, 34.61482872340256], [-77.44868956043565, 34.61458287499844], [-77.44879886383589, 34.614255519300514], [-77.44881081320848, 34.61419841514923], [-77.44889645117314, 34.61415461968801], [-77.44925033877212, 34.61398426565359], [-77.44957908078982, 34.61395995201087], [-77.44972313498765, 34.61394934344479], [-77.44976563755517, 34.613946116982696], [-77.44983624687941, 34.613937805088135], [-77.45027617716694, 34.613890586157126], [-77.45055922484485, 34.61384143787313], [-77.45200036258547, 34.61345618827203], [-77.45209088803955, 34.612874351919565], [-77.45209206151846, 34.61286888060428], [-77.4520945058461, 34.612851099592035], [-77.45217418109495, 34.61278118898983], [-77.4525855952234, 34.61242216120551], [-77.45302209491757, 34.612398689815414], [-77.45331696224076, 34.61229823482934], [-77.4540312244327, 34.6122440620368], [-77.45414823757481, 34.61219616973577], [-77.45416677487133, 34.61228228126262], [-77.45449795348058, 34.61268294910563], [-77.45456949359736, 34.61290593922202], [-77.45500430922644, 34.61389261163706], [-77.45785486865915, 34.61302679250872], [-77.45768734283291, 34.612016599998014], [-77.45716846186757, 34.611547927108546], [-77.45715246855252, 34.61126575079201], [-77.45741546015537, 34.61061709278843], [-77.45709684337592, 34.61028411722213], [-77.45705554437006, 34.60955537935822], [-77.45703810934447, 34.609247674166554], [-77.4570150000647, 34.60901672975534], [-77.45681644523377, 34.60801888629164], [-77.45679005398888, 34.607841373241676], [-77.45668041722269, 34.60766091984483], [-77.45629097712163, 34.60683261373702], [-77.45602807864222, 34.60658167410268], [-77.45624673923317, 34.60627043425603], [-77.45647316239042, 34.60580351908276], [-77.45655614187963, 34.60569250976747], [-77.45688357322118, 34.6052544765698], [-77.45725781045296, 34.60475381057002], [-77.45761757549947, 34.604272516619865], [-77.45793045054846, 34.60344660429411], [-77.45801801797617, 34.60317386013967], [-77.45818486957894, 34.60268752050902], [-77.45848122713558, 34.60145065931409], [-77.45856726921103, 34.600888518001675], [-77.45848206340689, 34.600495124886244], [-77.45830686206399, 34.60002334180649], [-77.45816589453794, 34.5999673647798], [-77.45804405835091, 34.59972905297437], [-77.45803723520936, 34.59966749675374], [-77.45811002358369, 34.599489789488025], [-77.45824295391041, 34.599303042146545], [-77.45834588584484, 34.59920517208329], [-77.45871633107355, 34.59916798718602], [-77.45882799093768, 34.59915756731333], [-77.45885974355652, 34.59916208310385], [-77.45892253105232, 34.5991546875594], [-77.45959474826813, 34.59913421023536], [-77.45990525360735, 34.59914087726996], [-77.4605510527435, 34.5991050713749], [-77.4609426797262, 34.59909015312566], [-77.46113750886624, 34.59907616995844], [-77.46170584938871, 34.59905355936667], [-77.46305645734373, 34.599130799681134], [-77.46407531690258, 34.598377448345445], [-77.46445315096007, 34.59799271235658], [-77.46447112699552, 34.59678741263652], [-77.4644735020006, 34.59676111721596], [-77.46447350589285, 34.596628004983515], [-77.46447353679041, 34.59552240641543], [-77.46447354225516, 34.59499543413146], [-77.46436662793752, 34.59386304473082], [-77.46366742826052, 34.59368518927283], [-77.46337377571847, 34.593898941254075], [-77.46269003038678, 34.59395484974779], [-77.46221249245893, 34.594112024453864], [-77.46220267964664, 34.59411525417144], [-77.46173952274498, 34.59432270633505], [-77.46147097706229, 34.59447196135513], [-77.46128199430855, 34.59457136550569], [-77.4608810587809, 34.59481740262101], [-77.46083167801132, 34.59484636641638], [-77.46080893847946, 34.59485970391517], [-77.46079512138326, 34.59488218761536], [-77.46072719930136, 34.595005603750295], [-77.46055403617257, 34.59532024615058], [-77.46052701978287, 34.59538043920767], [-77.46047510439774, 34.595463667012844], [-77.46016400173042, 34.59569450050759], [-77.4600223261121, 34.59572970200573], [-77.45975781103286, 34.59527686619708], [-77.45970839259206, 34.59519226307918], [-77.45950337352278, 34.59502228709974], [-77.45940363697773, 34.594909949014536], [-77.45933874974745, 34.59487497844182], [-77.45886965253402, 34.594693037483324], [-77.45878101881132, 34.59464270844971], [-77.45865081705655, 34.59456030944313], [-77.4582581615739, 34.59436778379743], [-77.45774276671997, 34.594276019641576], [-77.45786606698084, 34.5939329207481], [-77.45788959673017, 34.59383825788493], [-77.45767529154978, 34.593556739758945], [-77.45767840316228, 34.59345466970941], [-77.45773179866934, 34.593182703611646], [-77.45771960733482, 34.59317483037325], [-77.45721764213741, 34.593165554444184], [-77.45691047614498, 34.59327285061423], [-77.45630000715208, 34.59328203682169], [-77.45665447442136, 34.59358597102489], [-77.45685397924542, 34.59375703213677], [-77.4568742331332, 34.593774398423065], [-77.45688214767475, 34.59378302869741], [-77.45706956906983, 34.593992697288925], [-77.45725204890556, 34.594234554916284], [-77.45733708314876, 34.59439176381096], [-77.45705335508052, 34.59478441174534], [-77.456662655658, 34.59497792032136], [-77.45645288468353, 34.595193682752466], [-77.4562646173433, 34.595436265569234], [-77.45612112014287, 34.595696977662655], [-77.45607953418349, 34.59611803220325], [-77.45607277066291, 34.596229526880535], [-77.45606861764374, 34.596297990740574], [-77.45601245664236, 34.59644264475008], [-77.45580179401402, 34.596457723149236], [-77.45503461692786, 34.59671084964658], [-77.4548086190027, 34.59675799790901], [-77.45453589294016, 34.596809151719754], [-77.45437229798895, 34.596943190837244], [-77.45418734635531, 34.59745595541936], [-77.45417650836946, 34.59749406885388], [-77.45417150372386, 34.597510440926946], [-77.45411560278892, 34.597605562345116], [-77.45388137723128, 34.598010184980325], [-77.4537456131209, 34.59805805436215], [-77.45332957906005, 34.59816277200273], [-77.45323269357465, 34.5981475084974], [-77.45295992219494, 34.598104535542966], [-77.45279341084334, 34.598124341372696], [-77.45253409728916, 34.598158122530506], [-77.45228257984414, 34.59817845413612], [-77.45213435195868, 34.598199780351585], [-77.45136877791937, 34.59830992467754], [-77.45130373273237, 34.59830119155613], [-77.45123771770673, 34.59832386039622], [-77.45024859529693, 34.59842902840322], [-77.44934442074668, 34.598887328724516], [-77.4493681855247, 34.598908407244366], [-77.45013672257251, 34.599399861436936], [-77.45030765919525, 34.5995192787923], [-77.45054870148127, 34.59952527879845], [-77.45075688799689, 34.599592232861205], [-77.45091029337372, 34.59969669126441], [-77.45098555732554, 34.59971163905338], [-77.45092156634506, 34.59976171964124], [-77.45084374834295, 34.599778067890874], [-77.4506064467089, 34.59973621095888], [-77.45036307605523, 34.5998759768759], [-77.45015407052915, 34.60000388579185], [-77.44975762182784, 34.600246505125455], [-77.44971022997791, 34.60026691370642], [-77.44970145416346, 34.60027069286096], [-77.44968455035529, 34.60028125120749], [-77.44923695102825, 34.60049408636114], [-77.44900339782745, 34.60063895565202], [-77.4488177459779, 34.60088296234116], [-77.44839815268259, 34.60104654846195], [-77.44834674766194, 34.6010826483298], [-77.44800364911913, 34.601485265299075], [-77.44809455892829, 34.60155970748024], [-77.44839223356243, 34.601861514178594], [-77.44877275394742, 34.60179704797059], [-77.4490383883952, 34.60168896880529], [-77.44918196426015, 34.60163055127096], [-77.44934796680874, 34.60160717987317], [-77.44952477473467, 34.601545486843094], [-77.44978045169303, 34.60153239493782], [-77.44978307297302, 34.60153229572792], [-77.44978442466955, 34.601533861442825], [-77.44988974186671, 34.60168585250328], [-77.44985135400569, 34.60177834236373], [-77.4497780069419, 34.60183913569724], [-77.44977258377102, 34.60200229632329], [-77.44973887319614, 34.602098139779514], [-77.4497276377303, 34.6021312097936], [-77.44970355667414, 34.60219854941981], [-77.44930927615425, 34.602589922330864], [-77.44933136635598, 34.60261193824038], [-77.44929089125796, 34.60261133821894], [-77.44924286515794, 34.602650041078185], [-77.4491309545293, 34.6026407801624], [-77.44827569900251, 34.6027433937514], [-77.44803284015143, 34.60277692033906], [-77.4480251265085, 34.602956161623226], [-77.44783337859201, 34.603326522093056], [-77.44817434945658, 34.60365211554254], [-77.44830183307668, 34.6038007134871], [-77.44867587780425, 34.60420522725746], [-77.44869593313017, 34.604233159275125], [-77.44870779881924, 34.60423849156726], [-77.44875316126416, 34.604267806940456], [-77.44910664194481, 34.604493998695844], [-77.44918030979352, 34.60455521861059], [-77.44931335449235, 34.604613589373415], [-77.44982266471804, 34.604659044509724], [-77.44980488486203, 34.60470584810054], [-77.44985891667261, 34.60468619568368], [-77.45003756081597, 34.60496701240365], [-77.45005688860553, 34.60503372809198], [-77.45011196917113, 34.60513041968441], [-77.45000988638752, 34.60523763105914], [-77.44983874040952, 34.60526709190182], [-77.44961939778962, 34.605389833063], [-77.44951353713873, 34.605344798332986], [-77.44933469910616, 34.60528077975687], [-77.44895237882923, 34.60521523576567], [-77.44853752588102, 34.60534118781052], [-77.4484489096317, 34.605400144132126], [-77.44797689205652, 34.60549244956977], [-77.44767794141917, 34.605749753405206], [-77.44763130680779, 34.60602251884778], [-77.44760602290603, 34.60605800331337], [-77.44731183230913, 34.606241041196384], [-77.44725345517178, 34.60669042609019], [-77.44682512771055, 34.60652063731347], [-77.44658479819279, 34.606606023521856], [-77.44621718724702, 34.60674567051106], [-77.44587551916344, 34.60697721749081], [-77.44566612953874, 34.607023398563165], [-77.44567003123034, 34.606951072528624], [-77.44556806622953, 34.6068696212012], [-77.44562601052955, 34.60659437132273], [-77.44532941822013, 34.60652078040872], [-77.44509664825283, 34.60649304418283], [-77.44496209680399, 34.60641444036906], [-77.44476164241743, 34.606300675546485], [-77.44471968742592, 34.60626300995405], [-77.4447097637242, 34.60611714210383], [-77.44482387492491, 34.60598976515951], [-77.44481258276564, 34.605455237413736], [-77.44504436931544, 34.605955002101695], [-77.44515960272034, 34.60598886746702], [-77.44550245945544, 34.606055082676484], [-77.44571208846413, 34.606052907372025], [-77.44600319203501, 34.60596390660086], [-77.44626412051335, 34.60587439035087], [-77.44646183927951, 34.60561751352567], [-77.44662333161455, 34.60538068972018], [-77.44654358355248, 34.60503625571779], [-77.44645632219283, 34.60488057973531], [-77.44615528236623, 34.60459906856584], [-77.4461541178299, 34.604598147727735], [-77.44562339172842, 34.60457638158918], [-77.4453186153035, 34.604705401403976], [-77.44514215719242, 34.60473876344689], [-77.44494233466413, 34.60479239446306], [-77.44485468409847, 34.60481548818816], [-77.44486114290576, 34.60476397913746], [-77.44488418311411, 34.60459039622854], [-77.44489901019222, 34.604304148429854], [-77.44490947235978, 34.60416147855826], [-77.44493571954682, 34.60383719447922], [-77.44490265886908, 34.60353967909418], [-77.44489251687126, 34.603397800743544], [-77.44475223063898, 34.603151014347254], [-77.44504136049713, 34.60244994459271], [-77.44506339174637, 34.602357103874155], [-77.44507990289102, 34.60231906974367], [-77.44517378226998, 34.60213961299631], [-77.4453069522051, 34.60188506933066], [-77.4453344342095, 34.60183255126686], [-77.44537617639419, 34.60175266538725], [-77.44553372189127, 34.601451147609325], [-77.44522378630515, 34.601195894170836], [-77.44520802557578, 34.60118345506151], [-77.44520053331753, 34.60117691201396], [-77.44517434094423, 34.60115710564111], [-77.4448648017929, 34.60090340013419], [-77.4447361743297, 34.60084610523127], [-77.44456046100167, 34.60069289603807], [-77.44451793048798, 34.600655812593146], [-77.44449818216857, 34.60063869774306], [-77.444296901022, 34.600468925494226], [-77.44408675418008, 34.6003867717196], [-77.44393598289794, 34.600331808390294], [-77.44371394577249, 34.60049308302861], [-77.44356089025433, 34.600592394002376], [-77.44352767336635, 34.60076057157556], [-77.44349492438562, 34.60092479015996], [-77.44361518838156, 34.60108034399869], [-77.44369967906937, 34.60119914090541], [-77.44373570424395, 34.60122538043088], [-77.44386896218883, 34.60131964044281], [-77.44418242114651, 34.60152317565591], [-77.44428733162817, 34.601615573729916], [-77.44439892003426, 34.6017156051484], [-77.44444898302527, 34.601760482907196], [-77.4444779020603, 34.6018424790274], [-77.44453070555386, 34.60201161300344], [-77.44456897643168, 34.60209551680397], [-77.44483273585676, 34.60227637640922], [-77.44481156596011, 34.602395590117474], [-77.44410859960945, 34.60288317275421], [-77.44361427900762, 34.60273700841056], [-77.44326724780382, 34.60264212297895], [-77.44316775841142, 34.60249508515425], [-77.44302920904256, 34.602264560321586], [-77.4429775403817, 34.60218007571142], [-77.44295598570847, 34.602108422646246], [-77.44281352710622, 34.60199257485245], [-77.44248721506743, 34.60207485602362], [-77.44232613280661, 34.60213240641576], [-77.44209985235312, 34.60243034456258], [-77.44211770842386, 34.60256494578546], [-77.44228023679305, 34.602934611448106], [-77.44232735037743, 34.60310397362568], [-77.44214099799683, 34.603376719950965], [-77.44123079485814, 34.60349335867938], [-77.44132946649742, 34.60412700429598], [-77.44133120914108, 34.60414793149945], [-77.44163924999387, 34.60463252652016], [-77.44166055089465, 34.604771098976954], [-77.44212271181038, 34.604955705643505], [-77.44213022184655, 34.60500643028107], [-77.44214805480657, 34.60505325935563], [-77.44214565783801, 34.60518665373246], [-77.44211957773047, 34.605219257022355], [-77.4419177095432, 34.60528234901015], [-77.44182975843567, 34.605313863655184], [-77.44161769081182, 34.60530620180068], [-77.44145819738024, 34.605431228596096], [-77.44130193529722, 34.60550203745522], [-77.44116020081475, 34.60555537916848], [-77.44110418639028, 34.60548360691963], [-77.44105301550486, 34.605349234801956], [-77.44104020846396, 34.605317224332765], [-77.44102470170398, 34.605279500260835], [-77.44137931021893, 34.60485128910698], [-77.44129423216724, 34.60475441384806], [-77.44127990644976, 34.60415760783151], [-77.44128128579993, 34.6041407420855], [-77.44126817572953, 34.60412586879117], [-77.44104951603532, 34.60352503781654], [-77.44065649370654, 34.60371475245893], [-77.44051466034757, 34.6038621226178], [-77.44034493732981, 34.60403847007989], [-77.4402369979112, 34.6041027490051], [-77.44020359491168, 34.60407876975988], [-77.44013358784977, 34.60403845116688], [-77.44002813643334, 34.6039441726288], [-77.43996363245503, 34.603938361812176], [-77.43991660667922, 34.603892422831755], [-77.43984576674195, 34.603811545917345], [-77.43981514202713, 34.60366278608601], [-77.43979876313644, 34.603611537658836], [-77.43991409578614, 34.60342281704578], [-77.43990439813962, 34.603096555692034], [-77.43990247934823, 34.60305688233434], [-77.43981804081145, 34.602998855634134], [-77.43971901605255, 34.60286608408403], [-77.43973310088737, 34.60273592842428], [-77.43958028476044, 34.60257857989606], [-77.43937910347694, 34.60246761275954], [-77.4393025467745, 34.60246101992594], [-77.43923709748348, 34.60236969312041], [-77.43912847413401, 34.602216724430484], [-77.43911102559886, 34.60217479977679], [-77.43909230410917, 34.60212538643995], [-77.43905277028621, 34.602006786295824], [-77.43902429012807, 34.6018869886939], [-77.43900932938118, 34.60183454887485], [-77.43893842342219, 34.60153485982075], [-77.43892760760146, 34.60148860312267], [-77.43891929265244, 34.60144539113948], [-77.43885404983511, 34.60114032982035], [-77.4388046535495, 34.600789264174175], [-77.43880415572673, 34.60078565400352], [-77.43880463522856, 34.60078517309189], [-77.43880442537856, 34.600784472147375], [-77.43880361207394, 34.600781592481496], [-77.43875076418803, 34.600368512084025], [-77.43873458362226, 34.600020253668085], [-77.4387309798992, 34.59994677874129], [-77.43873087476584, 34.599868875354396], [-77.43910727818432, 34.59946777151336], [-77.43914252962172, 34.59940389375371], [-77.43919705397838, 34.59932831656313], [-77.43958897221191, 34.59897569829903], [-77.43959162794762, 34.59897382420278], [-77.43959202748198, 34.59897308038113], [-77.43998491953099, 34.59860744989104], [-77.44004559127933, 34.59854829272341], [-77.44034562690838, 34.598475414273075], [-77.44037896925681, 34.59850588682946], [-77.4406053868023, 34.59858263622134], [-77.44079685013119, 34.59874015005381], [-77.44089406940786, 34.598820130564675], [-77.440989778683, 34.598685138140425], [-77.44124865042164, 34.59854419945622], [-77.44128027458792, 34.598310577855095], [-77.44128139549112, 34.59823273743434], [-77.44125329645917, 34.59821198781209], [-77.44105264598439, 34.59803580150784], [-77.44098461030359, 34.59792250410267], [-77.44077264632533, 34.59762332066058], [-77.44070994181513, 34.597605179372394], [-77.44071713752218, 34.5975365906286], [-77.44070466269976, 34.597465229845916], [-77.44063119765791, 34.597124423863356], [-77.44076992203787, 34.59668222000101], [-77.44076902818452, 34.59667989593623], [-77.44076638490077, 34.59667401808668], [-77.44053670795049, 34.59611773657801], [-77.44012381695589, 34.596074935860116], [-77.43998373009948, 34.59605426945809], [-77.43987022843685, 34.59608298946011], [-77.43958968148985, 34.59613473134962], [-77.43942324072901, 34.59620468682371], [-77.43928373190664, 34.596140457355695], [-77.43919558726735, 34.59611688400224], [-77.4391059750128, 34.59618691886406], [-77.43909543083616, 34.59618067165174], [-77.43909485633274, 34.59617655235171], [-77.43917937369666, 34.596060591647856], [-77.43918524384766, 34.59604863209357], [-77.43919554944037, 34.59603383280999], [-77.43951729707203, 34.595587130386356], [-77.43954331065612, 34.595533705270945], [-77.43965584067837, 34.595142500235085], [-77.43955610000283, 34.594767834446216], [-77.43956141436273, 34.59470181503899], [-77.43958894140572, 34.5945245803397], [-77.43971391791433, 34.59428491264896], [-77.43989419501267, 34.59416331860543], [-77.43998281041443, 34.59407293068986], [-77.44008916667718, 34.594116074107575], [-77.44060866786927, 34.593980698726234], [-77.44077093858783, 34.59402192869], [-77.44128857117289, 34.59376584593315], [-77.44155886294175, 34.59355074981324], [-77.44178214170981, 34.59337727166711], [-77.44222072203203, 34.59307317486188], [-77.44229958926493, 34.59301095997239], [-77.44234671900166, 34.59295907815015], [-77.44267740929644, 34.59265064651507], [-77.44313455312961, 34.59234587697465], [-77.44331294295978, 34.59225825773791], [-77.44346670554263, 34.59204375869651], [-77.44357819350697, 34.59154918681505], [-77.44374732004783, 34.591153975555926], [-77.44332247512392, 34.59101222726757], [-77.44313383355811, 34.59090510797542], [-77.44309268067363, 34.59086839433853], [-77.44300330012757, 34.590837000772375], [-77.44282463491867, 34.59077133407034], [-77.44259409572784, 34.590739311699146], [-77.44234566229221, 34.59080307962368], [-77.4418686491668, 34.59091167836256], [-77.44155761150209, 34.590948812442626], [-77.44122380934728, 34.59102949580548], [-77.44116359621943, 34.5910454825902], [-77.4411235037688, 34.5910656808333], [-77.44076958093838, 34.591144002492015], [-77.44045243312755, 34.591288745956874], [-77.44037559285431, 34.59130327920206], [-77.44030397463797, 34.591304583013], [-77.43998153905831, 34.591323417639906], [-77.43983798815756, 34.59129480671274], [-77.4396830290562, 34.59121420566112], [-77.43939176373233, 34.59093474321806], [-77.4393132423691, 34.59081673691337], [-77.43919287466552, 34.59013215645158], [-77.43918088874813, 34.59012896335146], [-77.43918897941906, 34.59011488022093], [-77.43919097849785, 34.590112557549084], [-77.43919286366074, 34.59010776558245], [-77.43937759963146, 34.589663008088934], [-77.4394576630512, 34.58951244546319], [-77.43995688222894, 34.58918014210155], [-77.43998054510347, 34.58916522232629], [-77.43999464414476, 34.58916436893357], [-77.44032207000322, 34.58910182250992], [-77.44000219128837, 34.5891247409479], [-77.43998050998398, 34.58908879164062], [-77.43984144283067, 34.5884716840747], [-77.43929575390446, 34.58851270007493], [-77.43919217995321, 34.58858973821126], [-77.4390892824181, 34.588541769497866], [-77.43858072384347, 34.588694750811754], [-77.43840413762717, 34.58872314485504], [-77.43814760125319, 34.58884357439322], [-77.43801015695824, 34.58888515688659], [-77.43788731026306, 34.58889695743807], [-77.43773462194825, 34.589051410836916], [-77.43761620340379, 34.58911373201209], [-77.4375684074286, 34.589126952359784], [-77.43741921064156, 34.58919268130693], [-77.43726574133402, 34.589166157227105], [-77.43722216804068, 34.58915572959283], [-77.43720388413522, 34.589147853481926], [-77.43718913085095, 34.58913028956075], [-77.4371520345976, 34.589060128481556], [-77.43708600052688, 34.58893290533487], [-77.437098828387, 34.588851512955365], [-77.43708201083196, 34.588721185403585], [-77.43713662736567, 34.58838050902702], [-77.43682772088323, 34.58822191983721], [-77.4367373168013, 34.58801915990942], [-77.43656827346317, 34.58794628307514], [-77.43618710239555, 34.587842317004814], [-77.43603945800052, 34.587822706456265], [-77.43583261922286, 34.58762806028939], [-77.43574372953447, 34.58753484581182], [-77.43564525159164, 34.58743184288228], [-77.43556262720057, 34.587331490895615], [-77.43548736272986, 34.587253387506884], [-77.43540401825864, 34.58710063480365], [-77.43525103573252, 34.587008145749536], [-77.43513678188214, 34.58687948388429], [-77.4350077969884, 34.58673551960315], [-77.43485681067274, 34.58655100213887], [-77.43483371900417, 34.586523579640215], [-77.43481599218086, 34.58650127235471], [-77.434856731871, 34.58635211842498], [-77.43492789162005, 34.58613727020951], [-77.43520774688923, 34.58606627680062], [-77.43525065539296, 34.58605980577753], [-77.43530801878771, 34.58606734854018], [-77.43553037799487, 34.58609658669481], [-77.43564472317041, 34.586130174214716], [-77.43582010952433, 34.586167121348836], [-77.43589962350198, 34.58619463745804], [-77.43603880885746, 34.586242803091125], [-77.43609493299786, 34.5862558833078], [-77.43632776896565, 34.58628268675748], [-77.43643287441847, 34.58630454208959], [-77.43679489669896, 34.58624961702044], [-77.43682690030205, 34.58627051052527], [-77.43688086228626, 34.586260860955434], [-77.43692232399522, 34.58619671538115], [-77.43761465391272, 34.58551002714863], [-77.43772707703528, 34.58535237199851], [-77.43827276767095, 34.58529217893381], [-77.43840261970756, 34.585267058441204], [-77.43871135417285, 34.58542142372666], [-77.43881469537045, 34.58547912972232], [-77.43883911616027, 34.585494936898115], [-77.43918154773905, 34.58585987305275], [-77.43919010145378, 34.585868772499076], [-77.43919023405941, 34.58586953447585], [-77.439190959703, 34.58587110228297], [-77.43943358984062, 34.58642156729961], [-77.43974111881553, 34.58663827237493], [-77.43997949648812, 34.58687992682407], [-77.44030372052868, 34.587056817793766], [-77.4407676683369, 34.58706724377811], [-77.44100605195477, 34.587047640318275], [-77.4413538449617, 34.587036665694896], [-77.44155573365411, 34.58702447718057], [-77.44186646530625, 34.58684514911032], [-77.44260655439416, 34.5865072073106], [-77.44313146797555, 34.58614552962308], [-77.4436926473805, 34.58582239503889], [-77.44466800264344, 34.58341922247739], [-77.44465312023843, 34.58338019316244], [-77.44457629546343, 34.583251391138774], [-77.44350070559146, 34.58144811547918], [-77.44278803306226, 34.58025321630107], [-77.44155154485355, 34.578179985729406], [-77.4410139527973, 34.57769214337689], [-77.43972894427117, 34.57729893461035], [-77.43839898774317, 34.57691196899935], [-77.43791887882884, 34.57704326663131], [-77.4372156678627, 34.577662415145355], [-77.43558697262112, 34.5782637090173], [-77.43524759780641, 34.57837336109057], [-77.43480866504463, 34.57848353775979], [-77.43445968472321, 34.57861486252868], [-77.43424244026201, 34.57870739060188], [-77.43406574561362, 34.57878604599455], [-77.43392557675915, 34.57898735277178], [-77.43385807412534, 34.57919774291055], [-77.43378286020628, 34.579737812131725], [-77.43376377122783, 34.57985993072297], [-77.43371897700224, 34.57991685088909], [-77.4336721967778, 34.57999707832554], [-77.43337711781531, 34.5804468537214], [-77.43290033815575, 34.58083394678652], [-77.4328944759001, 34.58084555829211], [-77.43288448786622, 34.58084772685696], [-77.43287044205634, 34.58085340692447], [-77.43232455111249, 34.58116285893132], [-77.43209659924563, 34.58124227630733], [-77.43161299897572, 34.58134806788995], [-77.43130862707633, 34.58142015933705], [-77.4310813031492, 34.581341845661385], [-77.43052053635401, 34.58126075046418], [-77.43047277751083, 34.581236335807915], [-77.43038148256133, 34.5811980770038], [-77.42994361991, 34.581033788018516], [-77.4297324040543, 34.58096733139395], [-77.42963909409175, 34.58098135338259], [-77.4294478828044, 34.581026407105654], [-77.42933843017373, 34.58109753090386], [-77.42899587181137, 34.58134299396111], [-77.42894450265078, 34.581375987408926], [-77.42892731698969, 34.58138974553511], [-77.42889908017717, 34.58141235066918], [-77.42874754552535, 34.581539092268414], [-77.42867558514826, 34.58152219163719], [-77.42867846318673, 34.581444238040596], [-77.42862366409145, 34.58137329974161], [-77.42855042450824, 34.58118744023183], [-77.42850616562401, 34.581092212225435], [-77.42850535866387, 34.581044668681024], [-77.4284622833028, 34.58095599296085], [-77.42832706539839, 34.58064584912124], [-77.42829462152648, 34.58050136753552], [-77.42815615539402, 34.580380552740536], [-77.42806284860238, 34.58025944838873], [-77.42795134140614, 34.580071580475874], [-77.42794331983359, 34.58006442982857], [-77.42789639898734, 34.580003717748866], [-77.42786807950155, 34.579969157239866], [-77.42788478904244, 34.579940578527896], [-77.42791125965093, 34.57985676911912], [-77.42795897291978, 34.57981215309398], [-77.42804072267293, 34.57971388979076], [-77.42815590492859, 34.57957543992943], [-77.42832481537631, 34.57937240726355], [-77.4283986617114, 34.57919886869577], [-77.42836896377514, 34.57894143716455], [-77.4283274255639, 34.57876233483906], [-77.42830899071367, 34.57869078097246], [-77.42826994071183, 34.5785311607093], [-77.42824836327645, 34.57843426219665], [-77.4282556386695, 34.578216568944356], [-77.42842239279756, 34.57808453651312], [-77.42854941592161, 34.577990986791974], [-77.42879296481155, 34.577868881972734], [-77.42894333662755, 34.57773475626491], [-77.42906455720505, 34.5776977722514], [-77.4291159670097, 34.57755969689569], [-77.42894315638912, 34.57716919570017], [-77.42894025894624, 34.57716362569819], [-77.42893992651788, 34.577160553273444], [-77.42893761669163, 34.57715492220482], [-77.42875578466112, 34.57653969554095], [-77.42832746025962, 34.57658577524849], [-77.42815497925683, 34.57658636465449], [-77.42802244142734, 34.5765868171442], [-77.4274384402141, 34.57660539145317], [-77.42736699186388, 34.5766016870186], [-77.4273149500911, 34.57660232754503], [-77.4267374733781, 34.576800422567295], [-77.42657907176743, 34.57685132382745], [-77.42636623073034, 34.57691274496049], [-77.42618511219263, 34.57698435320449], [-77.4260611576006, 34.57701844903866], [-77.4259191165532, 34.5770346400562], [-77.42579113054235, 34.5770434142545], [-77.42558760415854, 34.577015205394986], [-77.42539711034294, 34.57696501865348], [-77.42507962984303, 34.57686929617607], [-77.42503547804955, 34.57684076130635], [-77.42500307270177, 34.57681981785421], [-77.42470818813187, 34.57649838598664], [-77.42466191213344, 34.57644802704924], [-77.42460892729923, 34.57626447559211], [-77.42455493029952, 34.57609594592885], [-77.42460885141166, 34.5759788892295], [-77.42471766930504, 34.57576517047006], [-77.42492861457896, 34.57561735758082], [-77.42487812287206, 34.57533428664061], [-77.4248471514127, 34.57520454259598], [-77.42460862724047, 34.5751338992281], [-77.424456501717, 34.575097066262806], [-77.42439189593354, 34.57507929168084], [-77.42421460602878, 34.575013133786356], [-77.42398660136057, 34.57490431205974], [-77.42391928028123, 34.57480765755879], [-77.42385919488311, 34.57453984072105], [-77.42385741258963, 34.574498393699], [-77.42383774545013, 34.57409536033214], [-77.42383047026769, 34.574066821116986], [-77.42382037240708, 34.574055376001546], [-77.42365533877839, 34.573856218592695], [-77.42355426151077, 34.573830893613504], [-77.42342632555291, 34.57380724874202], [-77.42323012125269, 34.57395134824512], [-77.42322914953627, 34.573952061908955], [-77.42303239606476, 34.574028566494455], [-77.42292043399068, 34.5740885263902], [-77.4226384482775, 34.57418275942763], [-77.42258543805822, 34.57420047409617], [-77.42244147112504, 34.57424858406425], [-77.4222811364598, 34.574301575495454], [-77.42224990266322, 34.574311918260456], [-77.42224449349045, 34.57431373024534], [-77.42223521752382, 34.574318207908846], [-77.4220846829901, 34.574370017415355], [-77.4220780116481, 34.574510386524125], [-77.42208401308226, 34.57454235082954], [-77.42209945411635, 34.57459603723841], [-77.42214095794502, 34.57474641574376], [-77.42224467861395, 34.57509704990259], [-77.42226303605959, 34.57513358892258], [-77.42226953537012, 34.57515242364779], [-77.42227818149972, 34.57518725589535], [-77.42233706487929, 34.57535495928326], [-77.42230476366355, 34.575424293815644], [-77.42224475704847, 34.57542838758421], [-77.42206267640933, 34.575394605446334], [-77.42209914298883, 34.575333940738666], [-77.42204387628026, 34.57539314411513], [-77.42185075713142, 34.575392702902704], [-77.42155785032298, 34.575364193531684], [-77.42145675529277, 34.5753475055983], [-77.4214002404885, 34.575338925781566], [-77.42129532336527, 34.57529318325116], [-77.42113572744547, 34.575237586011355], [-77.42106272863259, 34.57518915100354], [-77.42090032860168, 34.57510065596601], [-77.42067442355868, 34.57495830517116], [-77.42066868648989, 34.57495314043573], [-77.42046317701829, 34.57478566887373], [-77.42027464233078, 34.57469722106964], [-77.4201350139225, 34.574611651047206], [-77.42008875224974, 34.574394006227536], [-77.42001096492774, 34.57420498742965], [-77.419956282204, 34.57386999053184], [-77.41994761728425, 34.57378955511778], [-77.41993581320293, 34.57373160065684], [-77.4198982696699, 34.57339137599912], [-77.41991100443092, 34.57337025994414], [-77.4200864566823, 34.57314246322379], [-77.42027424927079, 34.57284303257583], [-77.42047246744175, 34.57265363205628], [-77.42089587700002, 34.5725579833866], [-77.42106213730847, 34.57251978152809], [-77.42123381079331, 34.57256955963393], [-77.42128698566391, 34.572564595392095], [-77.42145612189726, 34.572548805200036], [-77.4216528331418, 34.57248172257753], [-77.42165306177723, 34.57248165300465], [-77.42165309567758, 34.57248163700361], [-77.42165316120486, 34.5724816045503], [-77.42185006164084, 34.57238184025193], [-77.42194675735549, 34.57233118107115], [-77.4222439935999, 34.572188756928], [-77.42225936992973, 34.57218179067014], [-77.42255236069029, 34.57204723066578], [-77.4226379251646, 34.57200174927857], [-77.42297751539536, 34.571711969124486], [-77.42305328070198, 34.571665616282296], [-77.42304809387709, 34.571625685535054], [-77.42297504194836, 34.57159262266314], [-77.42263778116805, 34.57139880183733], [-77.42252067351455, 34.57142107442865], [-77.4223820223218, 34.57146383293981], [-77.42224384139212, 34.57153883599497], [-77.422085696551, 34.57161184744711], [-77.42184991761557, 34.571754710135764], [-77.42165048434777, 34.57184518326211], [-77.4215046862164, 34.57191873982547], [-77.42145598318625, 34.57193245034707], [-77.42139278749724, 34.571950527369964], [-77.42111860121813, 34.571983011571135], [-77.42106203284074, 34.572045716395735], [-77.42089753700068, 34.57220124545906], [-77.4204705929233, 34.57222850520472], [-77.42036166984633, 34.57170128255489], [-77.4203203826067, 34.57161277551371], [-77.42030549115344, 34.571580970627245], [-77.42027396021612, 34.571472188193496], [-77.42019656577135, 34.57120607926364], [-77.42015687857538, 34.571085721241445], [-77.42011071071786, 34.5709697196036], [-77.42000808891636, 34.570808724848845], [-77.41987982774066, 34.570697126647595], [-77.4196591692993, 34.57067234969491], [-77.41948584911604, 34.5706528880216], [-77.41920410977147, 34.57062125139688], [-77.41909187073134, 34.57060816798124], [-77.41902335655712, 34.57060024330997], [-77.41889488162559, 34.57058561555375], [-77.41872966166821, 34.57060306551667], [-77.41869790055199, 34.57060465295195], [-77.41833872899197, 34.570662801937054], [-77.41825659490908, 34.570688207785274], [-77.41790997695034, 34.570690698121744], [-77.4179057721867, 34.570692388677074], [-77.41790177612015, 34.57068843411954], [-77.41765419471331, 34.57057525039825], [-77.41751597769468, 34.570525670586754], [-77.41728162250737, 34.57035343536073], [-77.4171935949262, 34.57028895746631], [-77.4171412990955, 34.56994912227884], [-77.41715586381524, 34.569910417865984], [-77.41726631431351, 34.569662160672905], [-77.41745117365771, 34.56947977595628], [-77.4175157820757, 34.56941519194417], [-77.41776831402458, 34.569281563397894], [-77.41790967568527, 34.56902427531366], [-77.41807537002387, 34.56921106787119], [-77.41816632237432, 34.56937646557781], [-77.41839459837722, 34.569670171021606], [-77.41869777763725, 34.56995936931363], [-77.41888534501153, 34.56991960714306], [-77.4190917494503, 34.569987100563566], [-77.41926411048536, 34.56982824598201], [-77.4194856792567, 34.56980320219982], [-77.41969367156358, 34.56978081771625], [-77.41987962189043, 34.569691252821535], [-77.42001207931675, 34.56967714884995], [-77.42027355657027, 34.56954619011961], [-77.42047557255981, 34.56967432418888], [-77.42066755002205, 34.56968343729582], [-77.42094903915984, 34.569702382984396], [-77.42106151531439, 34.569685860182034], [-77.42119977186547, 34.56963836355706], [-77.42165297426612, 34.56951019614857], [-77.42184938387295, 34.56941916099906], [-77.42215136252824, 34.56932440553872], [-77.42224331534146, 34.56928252749321], [-77.42229556782377, 34.569260777389346], [-77.42263722286884, 34.56905011551901], [-77.42294806903087, 34.56902060244712], [-77.42327080279075, 34.56880522383014], [-77.42342506141698, 34.56870860304033], [-77.4235004491145, 34.5686870161363], [-77.42359869966303, 34.568591564180046], [-77.42390388125624, 34.56821446684856], [-77.42421288451463, 34.568332496820204], [-77.42440780002354, 34.56826454974936], [-77.42479156575166, 34.56819371519326], [-77.42500074115426, 34.568111046393646], [-77.42520503003954, 34.56813925829043], [-77.42564663619055, 34.56814253076852], [-77.42578867114185, 34.5681735910422], [-77.42587214564162, 34.56817304270079], [-77.42618262670076, 34.56816985174384], [-77.42651887073677, 34.56810735493936], [-77.42657655446988, 34.568068412748524], [-77.42672047876212, 34.56798525498533], [-77.42693864233985, 34.568108863159736], [-77.42714442891202, 34.568316343179056], [-77.42736457074662, 34.568424988549445], [-77.42747118640521, 34.568456478354136], [-77.42736459247638, 34.5684991382224], [-77.42723385782124, 34.56877438478987], [-77.42699251721369, 34.568950253876515], [-77.4269707691095, 34.56896539435596], [-77.42669682670223, 34.56912229160918], [-77.4265768883601, 34.56924481351777], [-77.42630364337364, 34.56960439986382], [-77.42601467850469, 34.56969763460718], [-77.42578907798233, 34.56965533272981], [-77.42557290050087, 34.56977159229401], [-77.4253951528857, 34.569798189663835], [-77.42521777623264, 34.56982251578663], [-77.4251781184311, 34.56982775025302], [-77.42500120234033, 34.56985044744603], [-77.42476910417359, 34.56987062860614], [-77.42460729569257, 34.57007299636984], [-77.42456505465925, 34.57015026230943], [-77.42460733968615, 34.57024135749441], [-77.42469497222832, 34.57046169291981], [-77.42492121562327, 34.570523378355425], [-77.42500138525953, 34.570538057541114], [-77.42525001561216, 34.57063252050568], [-77.42539538183061, 34.570643684283866], [-77.4257854747448, 34.57081883334599], [-77.4257893969735, 34.570813351023844], [-77.42579088195228, 34.57082068235424], [-77.42579245439084, 34.57082205331661], [-77.42618345213828, 34.571119946928455], [-77.42621534173625, 34.57115116411397], [-77.42628946167837, 34.57128900663412], [-77.42627571960612, 34.57160138397403], [-77.42617590079287, 34.57203198467064], [-77.42618061107926, 34.572043060051975], [-77.42630161629678, 34.57214926319762], [-77.42657777353764, 34.57234672771216], [-77.42659042470898, 34.57239145647769], [-77.42659804971555, 34.57240397484098], [-77.42687199700661, 34.57268136077617], [-77.42696908543111, 34.57277794365284], [-77.4273006643005, 34.57315160098913], [-77.42736598453257, 34.57322000607279], [-77.4277351412995, 34.57354024774746], [-77.42776006812701, 34.573563259769735], [-77.42793687413953, 34.573718331928404], [-77.42798749550988, 34.57372196044364], [-77.42815409491669, 34.57371053949863], [-77.4282217323881, 34.57365535461848], [-77.42825100097826, 34.57354331911107], [-77.42829312540606, 34.573432740623915], [-77.42832446439533, 34.57318739979804], [-77.4283819286741, 34.57299531512894], [-77.42894164816269, 34.57240641580938], [-77.42911664750937, 34.572228591528464], [-77.4297294737782, 34.57201713830256], [-77.42977332325032, 34.57199227491469], [-77.4300006317892, 34.5719121494531], [-77.43041988692381, 34.5717465236492], [-77.43051731309053, 34.57169143248352], [-77.43069567389915, 34.571619422454205], [-77.4316067020426, 34.57115585453218], [-77.43209294646309, 34.570965886137415], [-77.43220149480699, 34.57086181639124], [-77.43249675869438, 34.570702101472065], [-77.43278309155949, 34.57055546871654], [-77.43288071538937, 34.570500151165604], [-77.4331039741373, 34.57037364190019], [-77.43366856904207, 34.570287058446056], [-77.43415387129082, 34.570136400741625], [-77.43524375299295, 34.56854529947644], [-77.43640802626729, 34.56758896710363], [-77.435242830882, 34.56615993393698], [-77.4347042903303, 34.565018573628286], [-77.43406140777633, 34.564531570267505], [-77.43209001806588, 34.56256003568997], [-77.43156049998774, 34.562067004433985], [-77.43112800197085, 34.56155898622705], [-77.42893796339621, 34.56053589794606], [-77.4274295868903, 34.56032269009746], [-77.42724620297514, 34.56029676664613], [-77.42701132682443, 34.56045576106361], [-77.4259820205974, 34.560815093780825], [-77.42578694937217, 34.56183422612742], [-77.42536773550606, 34.56193980532686], [-77.4249990982926, 34.56184451650047], [-77.42485071056664, 34.56177714863975], [-77.42489012401893, 34.56161153429178], [-77.42483909061104, 34.561446557912696], [-77.4251376409429, 34.5607265830215], [-77.42465786641812, 34.56031411176379], [-77.42421086850992, 34.56033976930909], [-77.42378891288658, 34.5604666663682], [-77.42263523877776, 34.5605600764936], [-77.42221945741665, 34.560700135713475], [-77.42184746111575, 34.56085524943351], [-77.4213138506785, 34.561005189375564], [-77.42105966220832, 34.56107661469282], [-77.42086261182946, 34.56113198314184], [-77.42027184037039, 34.561207559137074], [-77.42002578007481, 34.56088126891806], [-77.41948389637564, 34.56071891610381], [-77.41887401275908, 34.560590700009776], [-77.41844029685804, 34.56056957058413], [-77.41816295780008, 34.56145999751287], [-77.4180478891194, 34.56175106428422], [-77.41801594459422, 34.56187158670464], [-77.4179084246008, 34.56197885084632], [-77.4177507321399, 34.56196395503184], [-77.41714502074998, 34.56190786901121], [-77.41712055446672, 34.561905967704625], [-77.41710494657414, 34.56190411051363], [-77.4164124241511, 34.562073232874695], [-77.41633273071524, 34.562123138186394], [-77.41588643010822, 34.56254440613897], [-77.41542734695335, 34.562852008077115], [-77.41475712922353, 34.56298539097381], [-77.41423325317973, 34.56286671833449], [-77.41353881899511, 34.56278766475495], [-77.41318136759608, 34.5627869807926], [-77.41289091196604, 34.562809034808296], [-77.41182858751542, 34.562889692714336], [-77.41160564874016, 34.56295266202408], [-77.41144691545624, 34.56287559335959], [-77.41002989632958, 34.56278602326378], [-77.40902798855973, 34.56243531745419], [-77.40716980925569, 34.56193790049073], [-77.40687838250288, 34.56194822562099], [-77.40576102747139, 34.56182718607275], [-77.4040755812112, 34.5616947228743], [-77.40372693097106, 34.56166731797203], [-77.40309733567842, 34.56153311551092], [-77.40057545808283, 34.56251929936339], [-77.39883521043316, 34.561305871944924], [-77.3974240365562, 34.561676606116734], [-77.39677182162069, 34.56242169936273], [-77.39669020205059, 34.56313636495669], [-77.39626321783783, 34.56364533300453], [-77.3960224911329, 34.56408185320994], [-77.3958480771619, 34.564289384350936], [-77.39553078209646, 34.564660014038424], [-77.39518554406054, 34.565051750497275], [-77.39515077165092, 34.56515448199417], [-77.395132472287, 34.5654839795466], [-77.39514350986265, 34.565572318562445], [-77.39506004175712, 34.56580951001015], [-77.39502510597578, 34.56588639810194], [-77.3948910290616, 34.565943384386884], [-77.39435555120617, 34.56611056633787], [-77.39427209927175, 34.56618255609327], [-77.3941368303955, 34.56619796994961], [-77.39387813546357, 34.566276306085456], [-77.39357544416322, 34.56623152622909], [-77.39348419218278, 34.56618265881656], [-77.39345824692809, 34.56617804539349], [-77.39332210481594, 34.56616972236131], [-77.39289894256517, 34.566012379641045], [-77.39282482557749, 34.56581688655983], [-77.39293227801474, 34.56563107676905], [-77.39290574597135, 34.565380642752224], [-77.39305166298622, 34.56497675244716], [-77.39307267127803, 34.564912895380544], [-77.39322478938246, 34.56448547672768], [-77.39324663601815, 34.56422605593909], [-77.39341824209336, 34.56360842776057], [-77.39342577960551, 34.5635440572504], [-77.39348451841926, 34.563362678225666], [-77.39369060767898, 34.56294205381325], [-77.39365705540285, 34.56272483352496], [-77.3935856225449, 34.56262626479608], [-77.39348462576423, 34.56244503672043], [-77.39344618168661, 34.56237212691571], [-77.39342277945373, 34.562334060011985], [-77.39329715001026, 34.56212970750153], [-77.3931444371235, 34.56194964235526], [-77.39301296559725, 34.561627912025344], [-77.39269690734304, 34.561239368901674], [-77.39222534723389, 34.56089223006362], [-77.39119925118386, 34.560531959047005], [-77.39117963197135, 34.560471915428316], [-77.39112129750082, 34.56047202753858], [-77.39106003147113, 34.56048601035187], [-77.39093645729393, 34.56056986496123], [-77.38998496713545, 34.56118078452508], [-77.38954543915366, 34.56137454507089], [-77.3887721030149, 34.561715454780476], [-77.38874922341705, 34.56172554079617], [-77.38871909695033, 34.561738821146236], [-77.38796959521679, 34.56200735718286], [-77.38772846137743, 34.56214154651312], [-77.38748262313322, 34.56224148628642], [-77.38718167463182, 34.56226869645807], [-77.38700222165227, 34.56217984602183], [-77.38660181948552, 34.56226835376155], [-77.38639379776296, 34.56228863463386], [-77.3861912973943, 34.562321598199276], [-77.38585118968875, 34.562416768067145], [-77.38560587048539, 34.56254326298791], [-77.38515455726832, 34.562739208796316], [-77.38481791050174, 34.562922875867386], [-77.38458938772428, 34.562937192088114], [-77.38402999177819, 34.56309115378797], [-77.38386311446496, 34.56310834929799], [-77.38343195950894, 34.56314573583351], [-77.38324209618958, 34.56314831387617], [-77.38292456700304, 34.563081280712424], [-77.38282783580242, 34.563034820684095], [-77.38279586303328, 34.563017501798306], [-77.38258366136563, 34.56290864798005], [-77.38245430700965, 34.56277290196959], [-77.38238886241015, 34.562722159259074], [-77.38226335928567, 34.56266970700079], [-77.38229686932556, 34.562495123152004], [-77.38245443093886, 34.56227611029452], [-77.38248105396066, 34.562242440946164], [-77.38251594651628, 34.56220872658794], [-77.38269156077938, 34.56201433895975], [-77.38273524202253, 34.56175254449787], [-77.38296770642971, 34.561422856280586], [-77.38324257798644, 34.561143530801054], [-77.38338652732898, 34.56096461107174], [-77.3836583377277, 34.560770323795325], [-77.3839013507041, 34.56059601848476], [-77.38403058845364, 34.56050924742866], [-77.38429561404976, 34.5603928293756], [-77.38448311488213, 34.560289938912874], [-77.38481855589689, 34.560014478602454], [-77.38507870953843, 34.55999677539579], [-77.38539359392706, 34.55990037915696], [-77.3856064589418, 34.55977636263337], [-77.38634562397532, 34.55958621455896], [-77.38639433292839, 34.55965741344859], [-77.3865590266081, 34.55968043440311], [-77.38652531983465, 34.55936667146638], [-77.38639439935082, 34.55933267220704], [-77.38625962217239, 34.55940085549531], [-77.38560655597385, 34.55932273130247], [-77.38521033410632, 34.55927533019502], [-77.38481881043998, 34.558875772807234], [-77.38422498526616, 34.55919954698078], [-77.38403089766214, 34.55917948735067], [-77.38388178037785, 34.559200554477], [-77.38327886180029, 34.55912677369593], [-77.38324307632956, 34.55908202079519], [-77.3829082471449, 34.55869205347045], [-77.38250819966485, 34.55838875189845], [-77.38208328930298, 34.5580020491503], [-77.38166775144728, 34.557692662392206], [-77.38121979845167, 34.55735914206015], [-77.38088604139958, 34.556924356065444], [-77.38050277971934, 34.556537298548434], [-77.38003830769208, 34.55534829966001], [-77.37895747438944, 34.55258132039276], [-77.37880043467158, 34.552130236142084], [-77.378733467725, 34.5520078887077], [-77.3785333905315, 34.551495646547096], [-77.37805802882158, 34.55027861792506], [-77.37817006625791, 34.55001498384662], [-77.37857138091123, 34.549818913836326], [-77.37972598479529, 34.548784930730456], [-77.38117989175043, 34.54786992396759], [-77.38147305258472, 34.54764786304068], [-77.38176397208454, 34.54753272866513], [-77.382223660503, 34.54743415408613], [-77.38334823678612, 34.5469189873834], [-77.38372569505165, 34.54675663511355], [-77.38433314489927, 34.54643593432193], [-77.38479074575682, 34.54628122113688], [-77.38493364995583, 34.54625329593278], [-77.38509478626162, 34.546225995922576], [-77.38572401134019, 34.546023899181264], [-77.38648578033644, 34.54611213771414], [-77.38650714504456, 34.5461146096993], [-77.38654631422038, 34.5460926474662], [-77.38729613003083, 34.54594595173151], [-77.38754172858852, 34.54563228624213], [-77.38752016064576, 34.54548664481924], [-77.3877047664223, 34.54523434258721], [-77.38771529075416, 34.54522003025057], [-77.38772763021753, 34.54521188832461], [-77.388102391528, 34.54501083753232], [-77.38823480487792, 34.54497599066444], [-77.388765499467, 34.5448173534075], [-77.38889272838793, 34.54478155535179], [-77.38950552847245, 34.54460056680099], [-77.38968419542115, 34.54450189354469], [-77.39014332990094, 34.54433461071467], [-77.39077273384191, 34.544223425674424], [-77.3912627422755, 34.54413673220643], [-77.39209446511023, 34.5438228124858], [-77.39344958782083, 34.54353837526373], [-77.39345151573642, 34.54279509364582], [-77.39186748664083, 34.54241119185403], [-77.39147720547092, 34.54235870780089], [-77.39130186489788, 34.54239858312338], [-77.3912021624862, 34.54244566444426], [-77.39051485915499, 34.54248126630355], [-77.39027908331461, 34.54249347820439], [-77.3900248732548, 34.54249278173561], [-77.38973005261434, 34.54246623761108], [-77.38932678443005, 34.54228805969552], [-77.38915431985858, 34.54218626996389], [-77.38895514722256, 34.54201186670571], [-77.38875616742476, 34.54188070554329], [-77.38858064951967, 34.54165493580194], [-77.38860424153569, 34.54141295469646], [-77.38848953369786, 34.54124105955209], [-77.3884577325083, 34.541111205624766], [-77.38841828053673, 34.54095011391945], [-77.38840073571481, 34.54082542718794], [-77.38837073521907, 34.54057225359673], [-77.38841546309666, 34.5404608544752], [-77.38845587789609, 34.54011700664503], [-77.3884739406449, 34.53996275366433], [-77.38856199259703, 34.539737556618164], [-77.38862090788453, 34.53945188814666], [-77.38871150712029, 34.53924801528727], [-77.38894857201768, 34.53891495680637], [-77.38897631352746, 34.53888013656707], [-77.38902710797232, 34.538818854454576], [-77.38925552647069, 34.5385192628784], [-77.38952835463046, 34.53834165327436], [-77.38982796289362, 34.53811999459126], [-77.3901186250959, 34.53794566985681], [-77.39051355424836, 34.53770985888316], [-77.39062385195034, 34.5376410583417], [-77.39106010628626, 34.53741019027272], [-77.39119190360644, 34.537122325400404], [-77.39143144267979, 34.53664184768812], [-77.39146548537545, 34.53661402940874], [-77.39152739250723, 34.536584255292645], [-77.39199481341524, 34.53637477949443], [-77.39222396866398, 34.536311331263164], [-77.39239392452447, 34.53635264717994], [-77.39283500401227, 34.53639558837308], [-77.392961013954, 34.53640604163124], [-77.39300546612857, 34.53647087996758], [-77.39312696978557, 34.53684312902642], [-77.39315893299545, 34.536940827999196], [-77.39323635307173, 34.537163295654686], [-77.39333782205374, 34.53730237298524], [-77.39376409202298, 34.537647910971415], [-77.39385351272296, 34.537661665931736], [-77.39415790587307, 34.53759162839085], [-77.39423507053698, 34.53761412971064], [-77.39444947493512, 34.53756832654325], [-77.3945513301837, 34.537552652362734], [-77.39468165050091, 34.53751734433798], [-77.39480210382206, 34.53749146613969], [-77.39494848469404, 34.5373476250519], [-77.3949911424676, 34.53733506519237], [-77.39509223575486, 34.53720636705743], [-77.39520529716725, 34.53703289602004], [-77.39535202737815, 34.53685811306457], [-77.39552526844207, 34.536601508720516], [-77.39560301166192, 34.53648583173144], [-77.39598328631126, 34.53604856610609], [-77.39606295828982, 34.53592978490983], [-77.39609779467017, 34.53588662653822], [-77.39616115556956, 34.53578748402638], [-77.39623948930353, 34.53565947337981], [-77.39618176853676, 34.53543083049474], [-77.39618293399383, 34.53542280027731], [-77.39617053272713, 34.53536985308904], [-77.39610053326342, 34.53499394674535], [-77.39608476710175, 34.534947297074424], [-77.39600310572484, 34.53484733569014], [-77.3961747443888, 34.53445482940218], [-77.3961378141593, 34.53444997133042], [-77.39617605458253, 34.534434801425384], [-77.396191587077, 34.53443215954926], [-77.39677182030766, 34.534227848183875], [-77.39698443968305, 34.53408522816076], [-77.39715417881445, 34.5338136144442], [-77.3971176442133, 34.53340274717388], [-77.3977316873036, 34.532792594646935], [-77.39764013549792, 34.53276413346848], [-77.39778164045404, 34.53273234931658], [-77.39779994114708, 34.532728448715865], [-77.39780735633036, 34.53273527728138], [-77.39784491452625, 34.53273457680281], [-77.3988043373565, 34.53294590112107], [-77.39935881313376, 34.53322924970812], [-77.39987504611737, 34.53275693272051], [-77.40016017869667, 34.53250123081082], [-77.40031087248997, 34.532378624028034], [-77.40085339060433, 34.53223936624102], [-77.40095727891728, 34.531963026158216], [-77.40173996604895, 34.53167717807784], [-77.40254378122289, 34.53122920105592], [-77.40291403028206, 34.53102345977554], [-77.4037112687233, 34.53064914427593], [-77.40413589530036, 34.53024310065784], [-77.40442050672279, 34.529826593208625], [-77.40507151196566, 34.52932403865773], [-77.40514614150734, 34.52923213804838], [-77.4057362549378, 34.52888620585962], [-77.40601528879989, 34.528789663113415], [-77.40653473612673, 34.52854193510682], [-77.40665853458617, 34.52810918594734], [-77.40666330048151, 34.527958022436884], [-77.40654094978116, 34.52800470629302], [-77.40612617131225, 34.527621586243896], [-77.40610091086518, 34.52741822132974], [-77.40578122822048, 34.52687324670312], [-77.40558183701546, 34.52684560591299], [-77.40522284713182, 34.526772680193], [-77.40489857717411, 34.526397381949806], [-77.40422907627257, 34.52607591163418], [-77.40309610463058, 34.525831237885036], [-77.40231105310767, 34.52523441880376], [-77.40265529292179, 34.524176462037715], [-77.40429369921773, 34.52318596152907], [-77.40440721389544, 34.52304186029663], [-77.40488096616028, 34.52290464319276], [-77.40444094189452, 34.5228805924468], [-77.40478888507702, 34.5222342268449], [-77.4053452479936, 34.52219542407532], [-77.405876250621, 34.52262025246772], [-77.40701602394752, 34.52232384856425], [-77.40745789497562, 34.52209415253208], [-77.40895544835783, 34.52128038136765], [-77.40904607987476, 34.521273862806886], [-77.40915041809747, 34.52124399226856], [-77.41061408414359, 34.52135762199137], [-77.41142294068956, 34.52049362259483], [-77.41164643794399, 34.519968741037246], [-77.41222494351719, 34.51951693672809], [-77.41325702069034, 34.51939892470768], [-77.41381117915763, 34.51877979445168], [-77.4145057355017, 34.51911762306092], [-77.41534261641667, 34.51943469323258], [-77.41577358296729, 34.52008871576282], [-77.4158436078803, 34.52034167206423], [-77.41616894094324, 34.520755068642764], [-77.41612790941518, 34.5207944986957], [-77.41561647080864, 34.521353859173466], [-77.41543508395277, 34.52145085596019], [-77.41531490190235, 34.521753004673414], [-77.4151831438992, 34.52190615743172], [-77.41522216523028, 34.52195556344504], [-77.41505676101252, 34.52226009377114], [-77.41477183919702, 34.522455270033326], [-77.41450794373324, 34.522743173106896], [-77.4140013318351, 34.522740194130385], [-77.41370711290352, 34.52345709346119], [-77.41359956433362, 34.52353804073158], [-77.41213225459107, 34.523679379032465], [-77.41068176775538, 34.52402553736854], [-77.41056603247016, 34.52404970856433], [-77.41055390321188, 34.524057950576676], [-77.40975609919983, 34.525138606769055], [-77.40976952398947, 34.52560447608819], [-77.41052181527888, 34.52549777060882], [-77.41184210626031, 34.52483727387261], [-77.41196902711042, 34.52473173234982], [-77.41211941646253, 34.524255921871934], [-77.41328100111946, 34.52390957233289], [-77.41370223249336, 34.52367645039416], [-77.41380559627449, 34.5236381926509], [-77.41526322573783, 34.52407761109559], [-77.41577098171773, 34.52395457326368], [-77.41683609259684, 34.52394479743252], [-77.41740432413158, 34.523401184070835], [-77.41842718722499, 34.52299032390691], [-77.41871198407974, 34.52286525232235], [-77.41957720088152, 34.52247107838403], [-77.42001357321996, 34.52224652000515], [-77.42053310910704, 34.52194258105115], [-77.42080815448043, 34.52181148282118], [-77.42093116907212, 34.521975804569294], [-77.42157927364902, 34.52243505204481], [-77.42158839423827, 34.52244369724809], [-77.42159268395575, 34.522448886541476], [-77.42161038831996, 34.52246616830825], [-77.42206523131816, 34.52304831061033], [-77.42225169919324, 34.52333299442557], [-77.42268760966182, 34.52354261828684], [-77.42287453896793, 34.523732647589455], [-77.42295980541405, 34.52381932867604], [-77.42310547252562, 34.52418587946415], [-77.42310717788337, 34.52418870471644], [-77.42310731379541, 34.524190543764], [-77.42310652077136, 34.52436096796172], [-77.42310560235343, 34.52467861917388], [-77.42309921551399, 34.52469098782128], [-77.42284204281678, 34.52505094223862], [-77.42261821988964, 34.52523875800518], [-77.42240081285543, 34.52569204606964], [-77.42234897701024, 34.52576736625238], [-77.42233623110995, 34.52579821396126], [-77.42204305438781, 34.526301271234644], [-77.42177800836237, 34.52652001544244], [-77.42166162541851, 34.52684609328617], [-77.42147465223123, 34.527157400067104], [-77.42137524107399, 34.52731737076863], [-77.42131178990986, 34.52738634515415], [-77.42126971618141, 34.52751532094758], [-77.42115997647389, 34.527897973567974], [-77.42123558874331, 34.528024195817196], [-77.42120994201859, 34.52823013423094], [-77.42117940758365, 34.52838485097951], [-77.42112159907488, 34.52859359481467], [-77.4211076596868, 34.52867697536036], [-77.4207713683824, 34.52885902171023], [-77.42065110149852, 34.52889748983882], [-77.42048868047655, 34.52887270936361], [-77.42017843235686, 34.52882537484386], [-77.41986874671731, 34.52877812522219], [-77.4193764316945, 34.52895016146344], [-77.4187261273976, 34.52900921702833], [-77.41887832567039, 34.529327642741876], [-77.41904337068019, 34.52967293659473], [-77.4193444579076, 34.53030283321764], [-77.41948125010508, 34.53058902124512], [-77.41955623831905, 34.53074590669087], [-77.4193977895427, 34.53158045389319], [-77.41979904875164, 34.531921608050865], [-77.42025664958395, 34.53214713479552], [-77.42094465852713, 34.53233625352441], [-77.4229083454824, 34.53331403021808], [-77.4244627471375, 34.53282362837378], [-77.42540349913207, 34.53365047912173], [-77.42536889527751, 34.53521653563747], [-77.4253769117062, 34.53599502389177], [-77.42787800802748, 34.53721021365484], [-77.42530700774677, 34.53915873278374], [-77.42527638385633, 34.53954510897459], [-77.42491406100928, 34.54021002797934], [-77.42489779856588, 34.540946052566376], [-77.4246087572291, 34.54160037298779], [-77.42547852161509, 34.54171438048709], [-77.42586078562654, 34.541809955141765], [-77.42838309098961, 34.54144529134487], [-77.42901075307803, 34.54137960776549], [-77.43034036321686, 34.54160409651256], [-77.43215203058674, 34.541342124383156], [-77.43314408594902, 34.541701333408554], [-77.43451227715013, 34.541644676375526], [-77.4350445925556, 34.54026082719875], [-77.43488295186756, 34.54011476780186], [-77.43488896615345, 34.539841638632645], [-77.43484868196275, 34.536544767123615], [-77.43430525396964, 34.53628075965633], [-77.43486381827397, 34.53585739483114], [-77.43300566148393, 34.53407727341755], [-77.43336035091092, 34.53249990027308], [-77.43236412640383, 34.53171040405111], [-77.4305739522323, 34.532056044617136], [-77.43151973321262, 34.530807340137535], [-77.43063209502517, 34.52982940817293], [-77.43003056749966, 34.5290639254745], [-77.42972005458418, 34.528838926519725], [-77.42928936723668, 34.528748888034556], [-77.4278940238689, 34.52829087314201], [-77.42772852707009, 34.528334412528736], [-77.42761611896876, 34.528363983825216], [-77.42642256389755, 34.52844011348223], [-77.42615725460323, 34.52839267369743], [-77.42598690183176, 34.52828729247027], [-77.42595446164114, 34.52818426167836], [-77.4257554241366, 34.52797970913484], [-77.42581500029696, 34.52771473515397], [-77.4258058810797, 34.52748433985262], [-77.42577592294421, 34.527230697848864], [-77.425777567349, 34.526996869226195], [-77.42573806135123, 34.52674648204555], [-77.42575261686406, 34.526465387400634], [-77.42581478216292, 34.526002605674776], [-77.42584856433035, 34.52575112922433], [-77.42588332542269, 34.525535835835], [-77.42596310390815, 34.524924126420004], [-77.42598556091089, 34.524751946500515], [-77.42599900581315, 34.52459898232987], [-77.42603750703866, 34.524254747517716], [-77.42607362703426, 34.52387429550451], [-77.42608284836005, 34.523758502798245], [-77.42609086480203, 34.523650553401666], [-77.42618166197614, 34.522826349119896], [-77.426188548194, 34.52276384336966], [-77.42619419731585, 34.522707700924094], [-77.42626375457587, 34.52179806541749], [-77.42626280220827, 34.521773730143536], [-77.42626223838269, 34.52174769839113], [-77.42630695976803, 34.521618106383876], [-77.4265552454376, 34.520897023457586], [-77.42689888791105, 34.52070237672889], [-77.42738221840534, 34.52030584160954], [-77.42768335403427, 34.519609565217856], [-77.42792913539233, 34.51924871402397], [-77.42905902893604, 34.51913459703367], [-77.42951527234021, 34.51850878054128], [-77.4304957098096, 34.517846651809755], [-77.43116907946659, 34.517146664062935], [-77.43279319323139, 34.51499097257141], [-77.435923520275, 34.51263858061311], [-77.43598976337337, 34.51257221166351], [-77.44138705966824, 34.51226448857979], [-77.44220818489077, 34.51236684218639], [-77.44366617660181, 34.512330057607514], [-77.44765635908905, 34.51190590731264], [-77.45189474620123, 34.51157491060497], [-77.45295528371511, 34.51146765985247], [-77.45468963994516, 34.5113819888386], [-77.45825801019201, 34.511157066237274], [-77.46059671330548, 34.51104924992261], [-77.46091351055748, 34.51101690754675], [-77.46108637790094, 34.51117201113335], [-77.46106091790053, 34.511236138599365], [-77.46106212512444, 34.51127528867242], [-77.461072022462, 34.51159640842967], [-77.46054418200632, 34.51256092984163], [-77.46032198671722, 34.51329192017503], [-77.46115959606244, 34.51426541693896], [-77.46372075344654, 34.515424168563555], [-77.46423811793923, 34.51578880430792], [-77.4652379581799, 34.51697698864197], [-77.46943399977414, 34.51571388752299], [-77.47008106833272, 34.5156548271861], [-77.47024637181987, 34.51558945665409], [-77.4730235522099, 34.51319374586744], [-77.47359315076885, 34.512608110664196], [-77.47432828632878, 34.51081737936528], [-77.47500352723442, 34.510592036761714], [-77.47542222742065, 34.50994486218623], [-77.4762278997491, 34.50930304671311], [-77.47596391804547, 34.50900740553462], [-77.47649731186424, 34.50889981778697], [-77.47789837820272, 34.50803661800305], [-77.47853182985276, 34.50787826196182], [-77.47888720254505, 34.50778942261112], [-77.48140810100158, 34.50689874346678], [-77.48066503009824, 34.504072725696645], [-77.48127222667209, 34.50280336281812], [-77.48118014374333, 34.50203652703822], [-77.48097087869925, 34.50078087766715], [-77.48088506660233, 34.50008177650545], [-77.48121202426981, 34.499676201687116], [-77.48184029599537, 34.49889680190411], [-77.48143261554532, 34.49740751094908], [-77.48066623206402, 34.49460753051757], [-77.47863789741095, 34.49605048359508], [-77.47928835211442, 34.49729894616171], [-77.47888111725311, 34.49854449046081], [-77.47892002596419, 34.49863132957554], [-77.47880352022989, 34.49878179397378], [-77.47787823274638, 34.49992956734126], [-77.47794399348379, 34.50046531241176], [-77.47800261911435, 34.50128688284465], [-77.47808291989247, 34.50229040554529], [-77.47812539161242, 34.50264409579956], [-77.47771413384915, 34.50350384264381], [-77.47553664978896, 34.504048190341145], [-77.47371862485868, 34.505122918813896], [-77.4731878855635, 34.505283640386345], [-77.47288031005621, 34.50552654688221], [-77.47194634383874, 34.50705671151082], [-77.47177264803565, 34.507726329433424], [-77.47131009722455, 34.50896191169823], [-77.47127568068785, 34.50905218155322], [-77.47125682110041, 34.509097860761436], [-77.47072926677856, 34.510375474456524], [-77.47044101305065, 34.51107763743266], [-77.46932554970181, 34.51222450586261], [-77.46870498750046, 34.51261069913831], [-77.46781417257625, 34.51292975260205], [-77.46692120955191, 34.51328288234234], [-77.46597077314465, 34.513659025112496], [-77.46437017433547, 34.513805214926236], [-77.46311056998519, 34.51324617015939], [-77.46310236504077, 34.512690761658774], [-77.46250007725033, 34.51199928040558], [-77.46249927457114, 34.51197323742779], [-77.46247876431022, 34.51130809303049], [-77.46265612317869, 34.51086136975384], [-77.46269525175514, 34.51064357286116], [-77.4627943784038, 34.51027967617464], [-77.46285744172341, 34.509976291475354], [-77.46292882990963, 34.50980577364397], [-77.4631032538825, 34.50917410493023], [-77.46327287593556, 34.50878482596282], [-77.46346077050765, 34.50865588038769], [-77.4633408124181, 34.5084283367049], [-77.46354727266939, 34.50773005412989], [-77.4636043354771, 34.507312144916796], [-77.46366922634182, 34.50669089788374], [-77.46364726990025, 34.50659059025393], [-77.46369731020148, 34.50642204126482], [-77.46391849855294, 34.50597706276294], [-77.46409579472481, 34.505620388356824], [-77.46453247208397, 34.50467400001323], [-77.46455096369424, 34.50465813232587], [-77.46455482287448, 34.50465529825093], [-77.46455908883559, 34.50464880906051], [-77.46538596198067, 34.50387092440455], [-77.46589654568123, 34.503375369352355], [-77.46518346614099, 34.50276798248096], [-77.46520747523303, 34.50266490696766], [-77.46521586774972, 34.502600297431854], [-77.46521950374212, 34.502327762279165], [-77.46522897035553, 34.5021741889618], [-77.46527337760728, 34.502034217900984], [-77.46529947341124, 34.50199406380795], [-77.46527504102357, 34.501937200769454], [-77.46533192839522, 34.50146864282104], [-77.46543373298428, 34.501325362849634], [-77.46535274068361, 34.50111366584612], [-77.4654195199457, 34.50064913027132], [-77.46508344487599, 34.50015993372394], [-77.46509014893007, 34.499956907494095], [-77.46499530542864, 34.499734576084464], [-77.46452976276414, 34.49925296172418], [-77.46435501450084, 34.498618113373375], [-77.46436836635215, 34.498496319595446], [-77.46335320151857, 34.4978422203549], [-77.46342087021794, 34.49742556941991], [-77.4632425159736, 34.49716109278437], [-77.4624260837529, 34.496850432958865], [-77.46180615287713, 34.49708817786244], [-77.46177370510358, 34.497364309176994], [-77.46086008595265, 34.49771565305422], [-77.46006847925433, 34.49807832152892], [-77.45957412020341, 34.49786971173102], [-77.45879637130788, 34.49761084632432], [-77.45897920781908, 34.497194923359], [-77.45863310904228, 34.49679556984417], [-77.45830307118977, 34.49654710899246], [-77.45806124137104, 34.49674899494649], [-77.4570777372539, 34.49699090796387], [-77.45669892751248, 34.49727527683351], [-77.45651892423905, 34.4974951465569], [-77.45643656130358, 34.4979431944729], [-77.45642232009487, 34.49832899241862], [-77.45652739379142, 34.49884661820797], [-77.4562940070519, 34.499049891222796], [-77.45542466492952, 34.49879058191125], [-77.455305343777, 34.49853419190529], [-77.45483417622592, 34.49863615956419], [-77.45473369424847, 34.498696752963994], [-77.45348870320197, 34.498640668774584], [-77.45343610327068, 34.498689508174934], [-77.45326978195666, 34.499173666214666], [-77.45248814537632, 34.499906867564675], [-77.45243958749947, 34.4999584559185], [-77.45238844636793, 34.49998728602445], [-77.4519372200788, 34.50029373309506], [-77.45067564903812, 34.50125123037516], [-77.45058697793318, 34.50143464216527], [-77.45056380032155, 34.50259659121647], [-77.45056149958349, 34.502711990818085], [-77.45019322352628, 34.50361961346343], [-77.44852381690197, 34.50364248721281], [-77.44837558282137, 34.503160810597855], [-77.44822206018753, 34.50266194080571], [-77.4500553258584, 34.50257072723355], [-77.44844078474941, 34.50212013755195], [-77.44777814381457, 34.502383320844395], [-77.44769748406357, 34.502407072870554], [-77.44720678398646, 34.50242581936327], [-77.446674077338, 34.50250391042464], [-77.44648050824449, 34.50256302142962], [-77.44624851860414, 34.50289122113076], [-77.44553548004185, 34.50363763176919], [-77.44605649016083, 34.503718330564524], [-77.44557926306537, 34.50375421325753], [-77.44545254943255, 34.50372947202205], [-77.44518801346823, 34.504349659147366], [-77.44493985262926, 34.50463170904722], [-77.44493032539401, 34.504736540233694], [-77.44525087488898, 34.50502838449117], [-77.44519505182731, 34.50538111853489], [-77.44604650473477, 34.50590263675083], [-77.4478429577446, 34.50556381949519], [-77.44741069661337, 34.506489321981874], [-77.44936159288861, 34.50790205773591], [-77.44938509562202, 34.507979555196414], [-77.44911106047475, 34.508032912303094], [-77.44653548472263, 34.507691605171416], [-77.44626284993589, 34.50883898598559], [-77.44194518603612, 34.508644040442476], [-77.44134293467145, 34.508404346664776], [-77.43870013481714, 34.507540776423454], [-77.43838843465157, 34.507449724144095], [-77.4382800616534, 34.5074267223011], [-77.43808798390378, 34.50736572984451], [-77.43691709402717, 34.50699392421357], [-77.4364038878636, 34.50684081007269], [-77.43620322058933, 34.506845781432794], [-77.43616755525997, 34.50690420274619], [-77.4356361970565, 34.50723515561517], [-77.43563308512337, 34.50723859004864], [-77.43563052496798, 34.50724049103197], [-77.43557145744309, 34.50727547732752], [-77.43473237147286, 34.50798911470815], [-77.43455823598163, 34.508821339021395], [-77.43342549028299, 34.50934005772365], [-77.43284084282081, 34.510064889038006], [-77.43225907823026, 34.510759275147464], [-77.43190064250473, 34.511164574589756], [-77.43123832064346, 34.51155664945698], [-77.43010238144883, 34.51169723457653], [-77.42966453102623, 34.51174352902807], [-77.42887756328332, 34.51208809540948], [-77.42808777764418, 34.51206423120083], [-77.4275400284397, 34.51243802848023], [-77.42768857570397, 34.512753154591245], [-77.4278322229337, 34.51288058073053], [-77.42779592690039, 34.51371701024558], [-77.42783404196939, 34.513845271941385], [-77.42800197707751, 34.51464866743997], [-77.42800737674582, 34.5146658128265], [-77.42801098033686, 34.514677207456856], [-77.42802866092914, 34.514741412288785], [-77.42840576537247, 34.51558757827492], [-77.42851180660236, 34.516229678534046], [-77.42838648819357, 34.51682165227532], [-77.42797398863203, 34.5172173824162], [-77.42775693389528, 34.517508761888294], [-77.42768613588879, 34.51765040441881], [-77.4274490999186, 34.51800135472463], [-77.42727185644685, 34.518266085099704], [-77.4270092788418, 34.51872765782824], [-77.42634979902601, 34.51967959072477], [-77.42628842983177, 34.519774288626536], [-77.42625597926649, 34.51981596162624], [-77.42623645588085, 34.519886640776676], [-77.42560893903854, 34.520888891132635], [-77.42541691366331, 34.52133688846054], [-77.425402751968, 34.5214083929896], [-77.42540569767081, 34.52148241335782], [-77.42541466333077, 34.521896356697], [-77.42543191797947, 34.52233725431312], [-77.42543371916014, 34.52238329213039], [-77.42543319578895, 34.52242762195865], [-77.42538771425383, 34.52287962931175], [-77.4253428307977, 34.523287033514166], [-77.4253351543704, 34.523376918745925], [-77.42532904817494, 34.52347261460907], [-77.4252994062216, 34.52387177311148], [-77.42526971749254, 34.52424457615065], [-77.4252619995347, 34.52436687137425], [-77.4252538734217, 34.524495646534085], [-77.42523385388196, 34.52472368501928], [-77.42522130393907, 34.52486244298571], [-77.425200907794, 34.52501881792456], [-77.42517816856015, 34.525193160881635], [-77.42515363830658, 34.52536191371961], [-77.42511820680053, 34.52556452566232], [-77.42506990132684, 34.525863706397125], [-77.42503586431914, 34.52611707989346], [-77.42499114002914, 34.526364782504785], [-77.42501021106162, 34.52661243084644], [-77.42499772726623, 34.52685351668559], [-77.42503841494347, 34.52711139329571], [-77.4250907430976, 34.52732975827317], [-77.42509443330152, 34.52751464609548], [-77.42510640780759, 34.52781717972863], [-77.4250414799616, 34.52810595614042], [-77.42504289471205, 34.52831605143416], [-77.42503666209018, 34.52852448503522], [-77.42503384723085, 34.52856220390114], [-77.4250762587134, 34.528619393899305], [-77.42517838287353, 34.52878615171485], [-77.4253589718364, 34.528993804933705], [-77.42556857336132, 34.529087386514064], [-77.42613109280559, 34.529576609861465], [-77.42618047852679, 34.52958966276854], [-77.42621203935393, 34.52961608678303], [-77.42621710871678, 34.529670302119506], [-77.42612681590134, 34.52977015979536], [-77.42603865219485, 34.530080119383], [-77.42600676111644, 34.530135453880725], [-77.42581509435453, 34.53046802052509], [-77.42546443019107, 34.53070354697758], [-77.4252891312218, 34.53120550946525], [-77.4235171115874, 34.53160824050404], [-77.42294646029217, 34.53159203980294], [-77.42164058114568, 34.53125630575584], [-77.42147841615606, 34.53122123893827], [-77.4213851466957, 34.531197615364384], [-77.42096278653818, 34.53086458691544], [-77.4210395021567, 34.5305878483838], [-77.42108169992468, 34.530357713428565], [-77.42135505294536, 34.5293826869104], [-77.42133464115538, 34.52934178432592], [-77.42139555100863, 34.52931343302962], [-77.4214275876401, 34.52928184318607], [-77.4216591332017, 34.52880519654904], [-77.42171439737984, 34.528475289758106], [-77.42171887772446, 34.52830687508492], [-77.42172338317505, 34.528137517312906], [-77.42176344049771, 34.52781074797212], [-77.42179559968933, 34.52759977521184], [-77.42180968122551, 34.527528502981895], [-77.42190238989156, 34.5273009776202], [-77.42225346436858, 34.52676975045969], [-77.42225951874474, 34.52675967003919], [-77.42226123596103, 34.52675485879997], [-77.42297386381695, 34.52616672239788], [-77.4230004907284, 34.526121033704115], [-77.42307135705217, 34.525949522576866], [-77.42320147884558, 34.52564413247576], [-77.42326987489722, 34.52551638481819], [-77.42339513164407, 34.52531973561994], [-77.42353633276765, 34.5251060386167], [-77.42360354310291, 34.52478046823223], [-77.42370054682588, 34.52459261243043], [-77.42370088617638, 34.52447524201129], [-77.42399105114943, 34.52406092607261], [-77.42364946767995, 34.523779622633676], [-77.4235894668151, 34.5236292964109], [-77.42334241877823, 34.52330794608322], [-77.42327877416439, 34.523184524577175], [-77.42323847719328, 34.5231250955985], [-77.42313614424455, 34.52302271754205], [-77.4227130597312, 34.522557299321846], [-77.42247180599115, 34.52232180423027], [-77.42219346516649, 34.52198509389751], [-77.42169842915209, 34.521515860293434], [-77.42164712326259, 34.52146164552962], [-77.42163715335069, 34.5214407210804], [-77.42160189553917, 34.52141398354005], [-77.4210614339452, 34.52091105847636], [-77.42047815424485, 34.520922765860796], [-77.42003938336649, 34.521082535084545], [-77.4191179349053, 34.5214180491491], [-77.4184706759601, 34.52103072528133], [-77.41804208160065, 34.52172493243327], [-77.41729957253672, 34.52209000461944], [-77.41703450961688, 34.52222830847104], [-77.41687281545141, 34.52229144833155], [-77.41648863259091, 34.52245953688674], [-77.41645823416209, 34.52246777944], [-77.41608570393863, 34.522389108177364], [-77.41602989538777, 34.522273485006046], [-77.41604320860804, 34.52224302569515], [-77.41609093664005, 34.52215362149499], [-77.4161454880045, 34.52204445885436], [-77.41622433532451, 34.522000546508394], [-77.41633853730507, 34.52189001348603], [-77.41680411385218, 34.52167192287214], [-77.41688747124877, 34.5216316181641], [-77.4173848021853, 34.52140545006898], [-77.41837472608412, 34.52095525909888], [-77.41847349085303, 34.52090388743492], [-77.41949863513406, 34.520446669099705], [-77.42006068397933, 34.52012193019938], [-77.4205193086033, 34.51966592371796], [-77.4208708320567, 34.51912741693916], [-77.42087123109995, 34.51912319360605], [-77.42084472299948, 34.51863951526004], [-77.4208284942564, 34.518189572954235], [-77.42081119587438, 34.51810532597314], [-77.42061780727032, 34.517692944806804], [-77.4206271635343, 34.51737615955168], [-77.420527694156, 34.51697442007048], [-77.42043446026713, 34.51674007705833], [-77.42043923024211, 34.516552592653085], [-77.4201453074161, 34.516305704999226], [-77.4198378975156, 34.51604237207283], [-77.41974591607061, 34.515860232927324], [-77.41937538898756, 34.5156311296485], [-77.4192162566216, 34.515547544905615], [-77.41891316046762, 34.51549091356296], [-77.41859482434815, 34.51543679906875], [-77.41805582024412, 34.51546108950972], [-77.41709198440215, 34.51530435173528], [-77.41702682426245, 34.51535789258392], [-77.41690724444715, 34.51536563664112], [-77.4165905958721, 34.515336898174816], [-77.41545545042422, 34.5154307984788], [-77.41530854205789, 34.515430510029674], [-77.41390984648453, 34.51570539938137], [-77.41387932563532, 34.51571702835944], [-77.41386772160594, 34.51572321272672], [-77.41385936342516, 34.515731574223594], [-77.41385723426542, 34.51574527237365], [-77.41351169972702, 34.51654328287556], [-77.41306921198395, 34.516825101448134], [-77.41267498937974, 34.517129667831725], [-77.41227292117705, 34.51736243206041], [-77.41177120362295, 34.517326151515036], [-77.4114887564977, 34.517329530058106], [-77.41131855074504, 34.517463385993004], [-77.41069402695055, 34.517770665094595], [-77.4102820929335, 34.51795265702417], [-77.40972831699025, 34.51828711764658], [-77.40910422173744, 34.518667284244216], [-77.40838925870776, 34.51901875392286], [-77.40822306662075, 34.51904895636079], [-77.40752730677839, 34.518984928197305], [-77.40681466879963, 34.51915024813194], [-77.40595307687326, 34.519181791897864], [-77.40503813083768, 34.51937580118723], [-77.4043713957048, 34.519711457013486], [-77.40401777281029, 34.519872885802044], [-77.40401876608581, 34.52009109702612], [-77.40322347994497, 34.52047988641131], [-77.40277462436046, 34.52091440512835], [-77.40252044644161, 34.5211312618844], [-77.4012976474642, 34.52146335332058], [-77.40122108822436, 34.52149267915883], [-77.40119183773734, 34.52149093690393], [-77.40115752892581, 34.521504793179844], [-77.399770221372, 34.52178041449257], [-77.39961334095342, 34.521875075963344], [-77.39928980479476, 34.52175322528494], [-77.39936715506134, 34.52158441631781], [-77.39931556324058, 34.520968603571006], [-77.39939701512135, 34.52075840429724], [-77.39934549679084, 34.52058064658154], [-77.39945235836977, 34.52026074220496], [-77.39916303506638, 34.5201183252239], [-77.3982118676584, 34.51995014684202], [-77.39818865481546, 34.51989068691327], [-77.39808736108698, 34.519917870448054], [-77.39801656643012, 34.519934406207625], [-77.39783227599762, 34.52000494146373], [-77.3965019003428, 34.52061264376364], [-77.3961447902239, 34.52101065925052], [-77.39559250451953, 34.52130757374172], [-77.3949075849726, 34.52170016703666], [-77.39433444371852, 34.52211678825008], [-77.39387314993446, 34.52219409506709], [-77.39332829735868, 34.522117707584215], [-77.39283698375206, 34.522381802699115], [-77.39251207921083, 34.5227314705819], [-77.39212610869731, 34.52302935679489], [-77.39172786445417, 34.523473770522344], [-77.39016234759085, 34.52404985718058], [-77.39015708860329, 34.52405830529938], [-77.3901448196335, 34.52405575190291], [-77.39013525846678, 34.52405967473466], [-77.3885593080662, 34.52474608735502], [-77.38798986667257, 34.52471888199838], [-77.387774563098, 34.52473568401938], [-77.38720061935689, 34.52460697334664], [-77.38699267330041, 34.52459875752513], [-77.38687255702102, 34.524599385632634], [-77.38588391139022, 34.524959855308005], [-77.38540657584298, 34.525313286110006], [-77.38498472134971, 34.525515810309145], [-77.38464258488604, 34.525825451755836], [-77.38420402196554, 34.52612940446221], [-77.3838101507254, 34.52648342484708], [-77.38351221130398, 34.5267862339115], [-77.38323476119507, 34.52700782341721], [-77.38313257409693, 34.52743183997491], [-77.38308792983118, 34.52751866406782], [-77.38309528619493, 34.52757677321329], [-77.38301665936004, 34.528018605211116], [-77.38298915280919, 34.528075297113844], [-77.38286075034279, 34.52845603030988], [-77.38284591084039, 34.528532892192395], [-77.38258047332405, 34.52879029784522], [-77.38254312689357, 34.528798205255185], [-77.38218619682672, 34.5288683649443], [-77.38155269381642, 34.528813115793845], [-77.38130518599675, 34.528815693501855], [-77.38061167635028, 34.52906607408948], [-77.3799492582464, 34.529026511850745], [-77.37940535559633, 34.529288656066925], [-77.37903287701272, 34.52945219979861], [-77.37898000438004, 34.529548387816725], [-77.37893859041654, 34.52958597843431], [-77.37886901633493, 34.5296947873078], [-77.37860797100238, 34.53036077674675], [-77.37865310639194, 34.53060645730263], [-77.37863066867754, 34.5308409324352], [-77.37885525455935, 34.531556633043614], [-77.37886491851228, 34.531629229787924], [-77.3788386442177, 34.53204868821464], [-77.37896919753712, 34.53226230663263], [-77.37918257073537, 34.53235437300438], [-77.38007491452709, 34.532067697094746], [-77.38054335443502, 34.5320835427065], [-77.38085320096624, 34.53205502128977], [-77.38132936925908, 34.53204101718582], [-77.38181484193095, 34.532109214359586], [-77.38199846917404, 34.53215347056618], [-77.38211147658863, 34.532171159777775], [-77.38260181980314, 34.53230343676579], [-77.3828917619519, 34.53238196117528], [-77.3829812580445, 34.532374949484264], [-77.38367613406643, 34.532412124555144], [-77.38429843566907, 34.53234319274497], [-77.38524833907307, 34.53231923845154], [-77.386339996793, 34.532435919877955], [-77.38640698834587, 34.532677844084425], [-77.38681252758333, 34.53258136052992], [-77.38725179328529, 34.532578343385126], [-77.38770490585347, 34.532660647609696], [-77.38773235332502, 34.53272474631148], [-77.38805940747066, 34.532875045362616], [-77.3880683542795, 34.53292111049781], [-77.38816079903654, 34.53302041668613], [-77.38817137698169, 34.53303168409846], [-77.38827981445084, 34.533078295946126], [-77.38837052139385, 34.53311858286693], [-77.3883767666279, 34.53311757241116], [-77.38863951469176, 34.53300489857246], [-77.38876870286263, 34.53286784140243], [-77.38880301988614, 34.53283608860158], [-77.38891384250952, 34.53271082188598], [-77.38893251033407, 34.532551616599946], [-77.3889786489152, 34.532424849728294], [-77.38917226398362, 34.53237830289635], [-77.3899115008494, 34.53195523690077], [-77.38996743616819, 34.53192903122667], [-77.3901134223616, 34.53198340660706], [-77.3904657874507, 34.53201831725519], [-77.39075377827831, 34.53187147156876], [-77.39081101724508, 34.53179093951836], [-77.39106054519638, 34.53156785775451], [-77.39113913705486, 34.5314889244116], [-77.3915030438205, 34.531201425894075], [-77.39155463959803, 34.53116884413754], [-77.3919359495427, 34.530883127212526], [-77.39197509589188, 34.530875177911064], [-77.39234591266046, 34.530891738865336], [-77.39252709460911, 34.53093997685658], [-77.39273570669681, 34.53101280050305], [-77.3927619005495, 34.53101978592057], [-77.3929840980163, 34.531076726168365], [-77.39312720009684, 34.53105835312175], [-77.39324174676659, 34.531021476770725], [-77.39390234588225, 34.530864112558795], [-77.39391668624755, 34.53086041346114], [-77.39392784522596, 34.530858473163704], [-77.39405909087267, 34.53083260002989], [-77.39470524926271, 34.530703367638374], [-77.3953332141493, 34.53054858794796], [-77.39549625567109, 34.530437400589506], [-77.39594025431128, 34.53007145043404], [-77.39610299374732, 34.529929639803754], [-77.39629696053977, 34.529739272427854], [-77.3970776416104, 34.52941030983357], [-77.39711174329251, 34.52939890243653], [-77.3978793683979, 34.529188165257224], [-77.39828785864927, 34.52900551879601], [-77.39916973269894, 34.528805768475536], [-77.39945969141247, 34.52872906402859], [-77.39963564883803, 34.528667614586], [-77.3999438778103, 34.5285142202973], [-77.40025316180423, 34.528351528735776], [-77.4008209595847, 34.528250702184984], [-77.40104282745288, 34.528143527948345], [-77.40133223017916, 34.52813340646752], [-77.4018269993207, 34.52818071351402], [-77.40195601346761, 34.52822373337884], [-77.40182173949083, 34.52841564513084], [-77.4015721593832, 34.52861593917388], [-77.40171103289714, 34.528748776329884], [-77.40157603394, 34.52891456364311], [-77.40128946908177, 34.52929931142775], [-77.4011512246527, 34.52940450294488], [-77.40100908439535, 34.52965004404577], [-77.40087782032316, 34.529848413628336], [-77.40082182639863, 34.530237572853494], [-77.40062625283846, 34.53037440245828], [-77.39993893919063, 34.53080153935083], [-77.39981619880122, 34.530981014781645], [-77.39993821422932, 34.53112114300829], [-77.39998667342508, 34.53132136299118], [-77.40003887704894, 34.53143854310734], [-77.40006490857164, 34.53150809114437], [-77.39999642883407, 34.531822720345545], [-77.3998163135279, 34.531960343950274], [-77.39977932359893, 34.5319806076974], [-77.39942661983316, 34.53204229540317], [-77.39938521685397, 34.532051361207905], [-77.39931109444936, 34.532033272859294], [-77.39908605914424, 34.53187671362376], [-77.39901825367487, 34.53183070799026], [-77.39901580470509, 34.53181988435938], [-77.39877068902203, 34.531621606576394], [-77.39861201950029, 34.53152317058044], [-77.39829518477468, 34.53139992121562], [-77.39782871346647, 34.53144597786065], [-77.39751012675535, 34.53160709009964], [-77.39703436229048, 34.53186093882334], [-77.39702711736005, 34.531868861912606], [-77.39701296987609, 34.53187531188216], [-77.39653445021743, 34.532125935534225], [-77.39623984479303, 34.53228294277086], [-77.3956759534437, 34.532418106241416], [-77.39545071842777, 34.532464577319004], [-77.39530415249762, 34.53252097265272], [-77.39465583686811, 34.53290214121267], [-77.39433418875785, 34.53304259102311], [-77.39348997080099, 34.533363068261814], [-77.39332725452786, 34.533546231450174], [-77.39307900476219, 34.5339120397587], [-77.39328987345655, 34.53422538668892], [-77.39343405626622, 34.53435047536503], [-77.39317586782575, 34.534465889140705], [-77.39329504682243, 34.53461536868327], [-77.39333874015014, 34.534671271509986], [-77.39333786793125, 34.5348540241192], [-77.39335564331309, 34.53504993980113], [-77.39330094132805, 34.53518279558636], [-77.393428367528, 34.53533063350763], [-77.39349271350275, 34.53552044456099], [-77.39352770691218, 34.53563023873957], [-77.39317960783288, 34.535757587570515], [-77.39301943222179, 34.53584990825333], [-77.39295145061902, 34.535846671653175], [-77.39248887900965, 34.535797839195], [-77.39223642713038, 34.535757625215695], [-77.3916483680141, 34.535709678158966], [-77.39145146124604, 34.53575250960558], [-77.39104339421405, 34.53592681860827], [-77.3906653035575, 34.53580030400699], [-77.39020564731048, 34.53600141021428], [-77.39039859435057, 34.53641515566914], [-77.39041683681901, 34.536744478288945], [-77.39051733565032, 34.536808113330345], [-77.39041804215924, 34.53709797944647], [-77.39020191448344, 34.53726515109631], [-77.3898421769726, 34.537489043480534], [-77.38956390493996, 34.537675926838695], [-77.38925215523102, 34.53789183119825], [-77.38904455353833, 34.5380447795373], [-77.38879308426526, 34.53829438940102], [-77.38865033432512, 34.53846831270567], [-77.38864223547743, 34.53847801455076], [-77.38842220271594, 34.538610686140856], [-77.38823951558294, 34.538928888396356], [-77.3882074392593, 34.53900290051509], [-77.38819598369842, 34.53902351772124], [-77.38818654261595, 34.53905612858257], [-77.38795775624183, 34.539547545772855], [-77.38798596535814, 34.5396908964246], [-77.38795373907305, 34.539872831108596], [-77.38787454461945, 34.54004921364867], [-77.38793044915406, 34.54021581045604], [-77.38789613051085, 34.54053576524295], [-77.38796380956883, 34.54067342307692], [-77.38798933811675, 34.54088344153392], [-77.38800635104545, 34.541009532439745], [-77.38801632028621, 34.54111653302231], [-77.38810321082543, 34.541435463487595], [-77.38807638115358, 34.54148909621923], [-77.38802296558924, 34.541893091919256], [-77.38796319450546, 34.54199508678012], [-77.38802490460691, 34.54207578147438], [-77.38816738498838, 34.542128105268894], [-77.38871987329034, 34.54251526166603], [-77.3889428354475, 34.542558167873], [-77.38942018930645, 34.54276425188638], [-77.38950564841872, 34.54288597829297], [-77.3897211449752, 34.54286165576118], [-77.39008316357388, 34.54289485807941], [-77.3901291059567, 34.54289673189127], [-77.39050594331758, 34.542877213832384], [-77.39081357104048, 34.5428612789175], [-77.39109048239429, 34.54338464139059], [-77.39067290985886, 34.54356287092418], [-77.39048917785492, 34.5436217621353], [-77.38995863029044, 34.54382759063708], [-77.38969709333847, 34.543929336116456], [-77.38946428710636, 34.54408387043598], [-77.38911511237866, 34.544277257212116], [-77.38898658417892, 34.544348240100035], [-77.38890193020954, 34.54437324237994], [-77.38876674869346, 34.54441127803574], [-77.38811333377892, 34.544525498213076], [-77.38765288656978, 34.54448817093892], [-77.3874337058933, 34.54445495874593], [-77.38733050779535, 34.54442176977753], [-77.38712576767361, 34.54443672384023], [-77.38720910511596, 34.54462503175689], [-77.38710085819247, 34.54505745634162], [-77.38694839896465, 34.545343780758245], [-77.38651910687975, 34.545584485665586], [-77.38601850781077, 34.5455265642811], [-77.38573597391768, 34.54549396262374], [-77.38521836474126, 34.54549584314833], [-77.38494972768603, 34.545541356133825], [-77.38464488382462, 34.54560092630117], [-77.38416285967975, 34.54561621230361], [-77.38368906463567, 34.54574549902222], [-77.38337263124127, 34.54583966826322], [-77.38317075491041, 34.54575136850258], [-77.3829945199484, 34.54564964049563], [-77.38279027791481, 34.54555659333268], [-77.38260074086244, 34.54525190396859], [-77.38258140815498, 34.545231885676884], [-77.3825639888416, 34.545222058625725], [-77.38251874223235, 34.54517638036655], [-77.38213749469875, 34.544793892518626], [-77.38207934299999, 34.544646317934486], [-77.38227746454501, 34.54428404869158], [-77.38236058112372, 34.544106132989114], [-77.3824718372887, 34.54376636027882], [-77.38256690121901, 34.54331145813603], [-77.38260426287225, 34.5432313064972], [-77.38264772524788, 34.54317400645924], [-77.38286369556964, 34.54286080626997], [-77.38298452842346, 34.54271310842471], [-77.38314765624563, 34.54250223420203], [-77.38329748071583, 34.542178318734884], [-77.38335512871167, 34.5421064671772], [-77.38346208123582, 34.541882081584234], [-77.3835368773111, 34.54169819017271], [-77.38357829775403, 34.54164816174539], [-77.38366193387476, 34.54151661114544], [-77.38395865957978, 34.54110364816354], [-77.38392651306728, 34.54089434942293], [-77.38391236277398, 34.54084413016544], [-77.38371552499852, 34.54064904737596], [-77.3836441633457, 34.54056435458196], [-77.38349513405069, 34.540419738638306], [-77.38311471218259, 34.5402460247104], [-77.38290501244997, 34.54015832862001], [-77.38271755064909, 34.54008602139655], [-77.38231111217266, 34.53987224103473], [-77.38219909651963, 34.53972713976044], [-77.3820676982029, 34.53949368925926], [-77.38202268099492, 34.53942417005522], [-77.38194922795158, 34.53934319188511], [-77.38170180925442, 34.53913798081129], [-77.38136281367203, 34.53915086980855], [-77.38116682121537, 34.539223292634176], [-77.38076548904954, 34.53935702838217], [-77.38037554704428, 34.53949513615892], [-77.37980116332614, 34.53961139785221], [-77.3788026882088, 34.539610473917826], [-77.3785187706092, 34.53961668272365], [-77.37835949128119, 34.53946266244031], [-77.378022831184, 34.53937811119897], [-77.37770881412128, 34.53926425914663], [-77.37755795903176, 34.5392869952355], [-77.37723434282277, 34.53952652427118], [-77.3771316955646, 34.53957634554132], [-77.37691346308648, 34.539671117268966], [-77.37684711146196, 34.5399166662565], [-77.37669249845393, 34.54019262772566], [-77.3767526326846, 34.54038533910505], [-77.37681804465785, 34.5406641888366], [-77.37709324466188, 34.54069597607258], [-77.37719920698963, 34.54107585822745], [-77.37721217190442, 34.54109703465061], [-77.3775219237354, 34.541337081228825], [-77.37780938812755, 34.541500602276166], [-77.37747365122749, 34.54172940191994], [-77.37742275872804, 34.54189499164473], [-77.37755649922889, 34.54202671611261], [-77.37717391370529, 34.54219119119535], [-77.37704481233843, 34.54218113288293], [-77.37647025813462, 34.54223473626297], [-77.37638760134685, 34.54224244763621], [-77.37620899911954, 34.54233108567557], [-77.37592072357977, 34.54246413480066], [-77.37579690646288, 34.54264306967173], [-77.37573067522982, 34.54277955797742], [-77.37569734614992, 34.542852172949466], [-77.3755855568703, 34.5429867978738], [-77.37524771326514, 34.543626851453155], [-77.37507537758154, 34.54385332311619], [-77.37494284793593, 34.54397525754752], [-77.37483764758557, 34.544132416013895], [-77.37480987275292, 34.54415892461099], [-77.37477016217443, 34.544318486842556], [-77.37475458414384, 34.54438037777247], [-77.374747119988, 34.54439029209687], [-77.37474945483254, 34.5444016911529], [-77.37462117844925, 34.5448121806484], [-77.37459018724712, 34.544902567112814], [-77.3744528594755, 34.54510904314392], [-77.37439912878983, 34.545200868843686], [-77.37429550184618, 34.54522816700339], [-77.37396320936209, 34.545277420855186], [-77.37357484451502, 34.545296633915775], [-77.37357016591501, 34.54529737729737], [-77.37355257315072, 34.54530776048551], [-77.37317335357578, 34.54548317501519], [-77.37303126983832, 34.545528932527816], [-77.37302802511115, 34.54561735824109], [-77.37286568786143, 34.54582773447452], [-77.37255549893706, 34.546175108927784], [-77.3724964718584, 34.546262197052855], [-77.37235827915418, 34.5467980611053], [-77.37162080551974, 34.54630979761896], [-77.37127936569348, 34.54606293671298], [-77.37127812372994, 34.54566957603811], [-77.37130162296742, 34.54537648257561], [-77.37138803703822, 34.54522634037514], [-77.3714103664056, 34.54499816028546], [-77.37121161376177, 34.54489979747445], [-77.3708347267808, 34.54473942527759], [-77.37020135242331, 34.54494774289687], [-77.36994352329539, 34.54502038516101], [-77.3692531518204, 34.545232192599], [-77.36864643365304, 34.54538283094529], [-77.36767606057198, 34.54552733346988], [-77.3669473150254, 34.54554970251991], [-77.3668850074423, 34.545784674811145], [-77.36672711283015, 34.54603556160894], [-77.36618149040468, 34.54617058093811], [-77.36608931605754, 34.54624514133542], [-77.3657807549764, 34.54647235036213], [-77.36579056947369, 34.54666012510838], [-77.36568569725523, 34.546728284579274], [-77.36542961545183, 34.54679824706523], [-77.36529028708028, 34.54685148172728], [-77.36506907113963, 34.54690129454826], [-77.36489552736649, 34.54694612272402], [-77.36469921374311, 34.54693963946537], [-77.36450349739441, 34.54692113839287], [-77.36444269151635, 34.546892601015884], [-77.36438710117142, 34.5468622833393], [-77.36425186903212, 34.54672201109609], [-77.36417110524818, 34.546648568995955], [-77.36415478396555, 34.546627729428536], [-77.36403147307526, 34.54642385485895], [-77.36395890205935, 34.546293207717255], [-77.36387073859632, 34.546202181087395], [-77.36384682313505, 34.54613664807721], [-77.36373695275111, 34.54610421146744], [-77.36367739677078, 34.5462300284637], [-77.36361133641253, 34.546410393921605], [-77.36358988835795, 34.546487457441174], [-77.36352509651849, 34.546621535579874], [-77.36349057681187, 34.546746586344696], [-77.36342367169132, 34.54681581995331], [-77.36332602679528, 34.54690666572246], [-77.36315575368107, 34.54703963495568], [-77.36309444526123, 34.54715237626377], [-77.36292253803961, 34.547383254828304], [-77.36279373499576, 34.54750280649481], [-77.36255791502558, 34.54761538649006], [-77.36224428506783, 34.54773222387429], [-77.36212248430687, 34.548032896864676], [-77.36208395301125, 34.54815095017596], [-77.3620837920213, 34.54817331849943], [-77.36208535423314, 34.54819395187383], [-77.36211259450013, 34.54846560941944], [-77.36213147326589, 34.54864181724013], [-77.36216093942406, 34.54865185746231], [-77.36213409951671, 34.548672075691755], [-77.36217122346332, 34.549094502813084], [-77.36218387355237, 34.54913820412633], [-77.36224372988579, 34.549222139331825], [-77.36237784237454, 34.54942090125374], [-77.3626665670786, 34.54955833764465], [-77.36270231297276, 34.54965810900349], [-77.36286437076146, 34.54992932555937], [-77.36293376942982, 34.550009505596655], [-77.36285766835661, 34.5502227031867], [-77.36277005724345, 34.55047164753427], [-77.36274786159638, 34.55052592952489], [-77.3627385484708, 34.550596228677264], [-77.3625608392463, 34.55104251320154], [-77.36245331838785, 34.55131101229111], [-77.36242276049268, 34.55155204806407], [-77.36232402194892, 34.551744840148395], [-77.36229395879755, 34.551898235356944], [-77.3622576668751, 34.55206547359647], [-77.36225087362705, 34.55217222708309], [-77.36224744895269, 34.55218935759691], [-77.36225794074544, 34.552209420678125], [-77.36229911395287, 34.552304329490795], [-77.36233763522296, 34.552347952154385], [-77.36278143114966, 34.55247969422086], [-77.36279604110194, 34.552483807862195], [-77.36280595897452, 34.552486146169485], [-77.3628391314535, 34.552492154888654], [-77.36358738053809, 34.55265394788067], [-77.3638184310771, 34.552675614303105], [-77.36434734826527, 34.55272912050016], [-77.36437086687941, 34.55273141372458], [-77.3643812197273, 34.55273246929801], [-77.36443172517829, 34.55273166560346], [-77.36476338674618, 34.552736130647716], [-77.3650960656611, 34.55267424119611], [-77.36515751549078, 34.552670332696124], [-77.3652455222668, 34.55266931490295], [-77.36594976064387, 34.55236380336069], [-77.36654052932332, 34.55230582106387], [-77.36689006991875, 34.5522820393453], [-77.36698037458167, 34.55236455782426], [-77.36751418945465, 34.5526302506007], [-77.36762239932888, 34.552693352132145], [-77.36763977937817, 34.55275922096775], [-77.36770469797736, 34.5528720986251], [-77.36797349063158, 34.55320079997533], [-77.36811670973663, 34.55328481440131], [-77.3682831319489, 34.55334624255826], [-77.36852756428969, 34.55345664780812], [-77.36867147532111, 34.553534434574715], [-77.36873148660908, 34.55358125577789], [-77.36890608748757, 34.55372635880431], [-77.3690639630162, 34.553935994028066], [-77.36979446119932, 34.5542772320351], [-77.36982587197392, 34.55430045400836], [-77.3698516093641, 34.554316311978866], [-77.3702415552379, 34.55464150003082], [-77.37025129655785, 34.55464234943188], [-77.37063930004989, 34.55460268887768], [-77.37097402668024, 34.554595624967945], [-77.37142715249706, 34.55448448968272], [-77.37174230822185, 34.55433620751663], [-77.371821124711, 34.55430260999435], [-77.37196843907938, 34.55422981074235], [-77.37221509001526, 34.55413455123136], [-77.37248462429787, 34.553889622333216], [-77.37274019682576, 34.55356942516181], [-77.37339662846068, 34.55290907999417], [-77.37350851422126, 34.55271476573185], [-77.3738060123188, 34.552198078122004], [-77.37527643157671, 34.55263817817227], [-77.37532458511669, 34.552676730207445], [-77.37536676914722, 34.552742924635105], [-77.3760972410511, 34.55421812644663], [-77.3763780340337, 34.554785180274024], [-77.37682338270812, 34.555684521010996], [-77.37688217487113, 34.55580324756933], [-77.37672998375545, 34.556052919067135], [-77.3762905434927, 34.5568856850086], [-77.37615319716541, 34.55685545841781], [-77.3760773503672, 34.55685011844358], [-77.37581445085527, 34.55680625818535], [-77.3757593036316, 34.55679705781838], [-77.37546595114512, 34.55674811613928], [-77.37536541310745, 34.55673134265866], [-77.37528209102629, 34.55679319792441], [-77.37525876989666, 34.556886341389855], [-77.37523909811273, 34.55702521145788], [-77.3751831996691, 34.55732179400344], [-77.3753651370278, 34.55754742156654], [-77.37543549542822, 34.55763413255141], [-77.37545980116589, 34.55770649335301], [-77.37557465333448, 34.55791589003729], [-77.37568463225956, 34.55809865332623], [-77.37571139163661, 34.558145951043045], [-77.37575881885174, 34.55825165763824], [-77.3758687527318, 34.55849668019695], [-77.37575864798697, 34.55876541170795], [-77.37571568936383, 34.55889704852878], [-77.37566277379439, 34.55895092727121], [-77.37536457560975, 34.559211412295426], [-77.37524465213966, 34.55930653005548], [-77.37503952629325, 34.5594653071797], [-77.37497054698223, 34.559517030432154], [-77.37472685430649, 34.55967233987148], [-77.37457650279649, 34.55985945765737], [-77.37421212135017, 34.560041015008004], [-77.37418248884262, 34.56010607057726], [-77.3739284537616, 34.56032368524614], [-77.37378843502051, 34.56045852560385], [-77.37373646802523, 34.56044619293742], [-77.37374206478889, 34.56050139902349], [-77.37378839371459, 34.56057499444262], [-77.37393799491582, 34.56116083087471], [-77.37393953970984, 34.56132206499737], [-77.37418198064657, 34.561558874729215], [-77.37422876582346, 34.561654490325566], [-77.37429021626053, 34.561696093603175], [-77.37445663318516, 34.56180057881697], [-77.37457581713156, 34.56184635011027], [-77.37474082428967, 34.5618778745618], [-77.37481713410241, 34.56188025239604], [-77.3749697412494, 34.561883655614665], [-77.37528067459478, 34.56188847009261], [-77.37536367671999, 34.56188787709803], [-77.3754284200767, 34.56188685679146], [-77.37575761342273, 34.56188824799766], [-77.37588784879588, 34.561890423904515], [-77.37611130248703, 34.56190159257733], [-77.37615154768238, 34.561895929432644], [-77.37619652026174, 34.561894407847824], [-77.37648946744085, 34.5618641033012], [-77.37654549628445, 34.56185887808821], [-77.37685023693301, 34.56184785949586], [-77.37693943406038, 34.561854741996115], [-77.37707472106611, 34.56186518040364], [-77.37733339691276, 34.56176966969471], [-77.37749326913314, 34.5616590486357], [-77.37762112697921, 34.56152607657112], [-77.3777274548905, 34.561371866681064], [-77.37801189960247, 34.56104162456262], [-77.37830028495388, 34.560693605257256], [-77.37836773486153, 34.56052454567076], [-77.37851562356853, 34.56036172499841], [-77.37880742094782, 34.5600857823711], [-77.37908305229712, 34.55996934451007], [-77.37930357905104, 34.56002412672382], [-77.37997324532434, 34.56032516946401], [-77.38009137318382, 34.5602398835021], [-77.38038608206075, 34.56007536765185], [-77.38018052498083, 34.56042257954847], [-77.38064506048549, 34.56060788654246], [-77.38087909765582, 34.56072810386148], [-77.38107012523952, 34.56093752345466], [-77.38123543643214, 34.56111963580845], [-77.38145070081336, 34.56132150979854], [-77.38156549635187, 34.56181213667023], [-77.38157626049701, 34.56191963218939], [-77.38154377728563, 34.56205670077666], [-77.38142841115732, 34.5623655113625], [-77.38141586053578, 34.56252176854858], [-77.3814424542205, 34.562604919355806], [-77.38158605109054, 34.56276735075523], [-77.38162941488645, 34.56280098136117], [-77.38166641413088, 34.56282467738998], [-77.38183154734168, 34.56290995324886], [-77.38206030018513, 34.56303723952146], [-77.38211292773074, 34.56305923446085], [-77.38217461752613, 34.56310706587019], [-77.38245418275466, 34.56327169777373], [-77.38257870826382, 34.5633391502694], [-77.38279364832009, 34.563442386050994], [-77.38296655024669, 34.563714274547436], [-77.38324194157795, 34.563794477377925], [-77.3837774053815, 34.56387765842831], [-77.384029815057, 34.56385987066762], [-77.38430761930162, 34.56377385862247], [-77.38466782405173, 34.5640213027514], [-77.38476233493355, 34.56406729907427], [-77.38481763318696, 34.56418101614575], [-77.38502592082763, 34.563969669578654], [-77.385254613691, 34.563558363386235], [-77.38525878944236, 34.5635115258861], [-77.38560571893606, 34.56325980262673], [-77.38569563357001, 34.56312084201324], [-77.3859888408157, 34.56299340905126], [-77.38599971292514, 34.563004677488934], [-77.38605346907292, 34.56297236983142], [-77.38634625316084, 34.562879037769875], [-77.38639367989525, 34.56287131751597], [-77.3864399195607, 34.56286680942547], [-77.38678763884167, 34.562771827492746], [-77.38686327800015, 34.56277407269586], [-77.38698461345177, 34.56274504857748], [-77.38715261946078, 34.562782660912944], [-77.38718157489711, 34.562785882056055], [-77.38720323620855, 34.562783223904596], [-77.3872374032144, 34.5628016417524], [-77.3874765786753, 34.56287375949265], [-77.38757546084031, 34.56306714698738], [-77.3876584657744, 34.56307602733924], [-77.38768341912086, 34.563278283276006], [-77.38732878888395, 34.563637598558735], [-77.38725741133024, 34.56372981934124], [-77.387260348047, 34.564411371287235], [-77.38726797158617, 34.56449550480207], [-77.38726064561087, 34.56458214951255], [-77.38718120838098, 34.56469538069916], [-77.3869433942839, 34.564798586983436], [-77.38673007038643, 34.564936056119606], [-77.38639324728767, 34.56502123071755], [-77.38590472862639, 34.56521852571691], [-77.3856053056999, 34.5652233894501], [-77.38529837345659, 34.56529788163233], [-77.38533391178049, 34.56562352751326], [-77.3853939167124, 34.56584254912248], [-77.385233935171, 34.5664870765044], [-77.38515502701327, 34.566862692696176], [-77.38495856153887, 34.567375915115505], [-77.38490140276885, 34.56747521050013], [-77.38497859049275, 34.56804778896215], [-77.38501693902818, 34.568216631435774], [-77.38521066417391, 34.568461729953135], [-77.38527712954303, 34.568532038360246], [-77.38560459897411, 34.568612130425755], [-77.38597068769899, 34.56853373986925], [-77.38599858105175, 34.568535341355926], [-77.38602172134887, 34.56852125567801], [-77.38639260727065, 34.56823219750433], [-77.38653895807097, 34.56815487363354], [-77.38691744380256, 34.56794259368105], [-77.38718062508407, 34.567762881973216], [-77.38737299508264, 34.567669606216185], [-77.38765322916737, 34.567496621945565], [-77.38796859996494, 34.56748206686457], [-77.38829131162579, 34.56739670626438], [-77.38836257961559, 34.56737427412714], [-77.38840722680075, 34.56735130093916], [-77.38845424422176, 34.56729640883308], [-77.38862960983866, 34.56713428237564], [-77.38875660903486, 34.566968506929086], [-77.38881806317923, 34.56688558565032], [-77.38894562931512, 34.56680097420369], [-77.38890786493369, 34.5666434709962], [-77.38893119059341, 34.566141915094434], [-77.38888055794382, 34.565961221713806], [-77.38894315603193, 34.565751373110004], [-77.3890352209167, 34.565389752641764], [-77.38945164101216, 34.565029721127445], [-77.38948487351759, 34.564960289098906], [-77.38954488786764, 34.56473248003829], [-77.38969858682032, 34.56431053839447], [-77.38992665353825, 34.564112072555105], [-77.39033298836713, 34.56339687942136], [-77.39062030116789, 34.56370232469182], [-77.3907769291071, 34.56361878755061], [-77.3908412666158, 34.56355558487675], [-77.39082034533027, 34.56345791326833], [-77.39048847641031, 34.563181900481226], [-77.39045903944032, 34.56305035071318], [-77.39049854979856, 34.56233130836222], [-77.39087028328365, 34.56200739585341], [-77.39112110261914, 34.561802260535245], [-77.39149069531582, 34.561789862147194], [-77.39190896508462, 34.561831577033836], [-77.39228644560802, 34.56207341311887], [-77.3925238708429, 34.56222552112303], [-77.39269676749228, 34.56233628712215], [-77.39276271748997, 34.56242927997772], [-77.39294306280868, 34.56256235547631], [-77.3929945575981, 34.562608120846534], [-77.392963519651, 34.562687856364654], [-77.39295281220421, 34.56282642826705], [-77.39291371148627, 34.563065981056276], [-77.39291742952972, 34.563256103297704], [-77.39288700330745, 34.563479879661756], [-77.39286256439755, 34.56368858845923], [-77.39282309697923, 34.56383063581775], [-77.39276233272119, 34.56455218910221], [-77.39274337324548, 34.56460546108846], [-77.39269646363834, 34.564748048117124], [-77.39253837219972, 34.565263326609355], [-77.39242046018182, 34.56545064563389], [-77.39228487499973, 34.56587591929713], [-77.3922523217257, 34.56595339794349], [-77.3920873004989, 34.56634784446115], [-77.39207031795691, 34.56652486835615], [-77.39204599708901, 34.566778372620554], [-77.39203292870548, 34.56691459278788], [-77.39199092478006, 34.56712179006398], [-77.39198014331409, 34.56721244205272], [-77.39201262835081, 34.567320270998245], [-77.39190821757066, 34.567381757996046], [-77.39175805531414, 34.567669046672066], [-77.39190815422393, 34.56785985997502], [-77.39204231494541, 34.56762804434936], [-77.39214754123667, 34.567446224004314], [-77.39227860859683, 34.56719481549498], [-77.39228942779438, 34.567167829314556], [-77.39228639687602, 34.56715122827991], [-77.39230220615435, 34.56715473966291], [-77.39246910439309, 34.56689717223908], [-77.39261469565983, 34.56669633942912], [-77.39265748985314, 34.56664841882916], [-77.39269623037124, 34.56662208435845], [-77.3929696530336, 34.566515222128714], [-77.39317215143366, 34.56652760184485], [-77.39344638863064, 34.56657636498957], [-77.39347481500349, 34.56658232089039], [-77.3934841452558, 34.566592473238344], [-77.39366068692124, 34.566779737212606], [-77.39382637724368, 34.5669461195977], [-77.3938780564678, 34.56699698437416], [-77.39403598799647, 34.56717022804565], [-77.39413071623991, 34.5671745293691], [-77.39427200627392, 34.567068988126955], [-77.39439476762377, 34.56699641488014], [-77.39460398413252, 34.56683393908726], [-77.3948754067829, 34.566595878810574], [-77.39505997201579, 34.56653774901133], [-77.39527075664981, 34.56651058063062], [-77.3956703857615, 34.56648879302676], [-77.39584792198448, 34.56607217782462], [-77.39600806138219, 34.56578222485281], [-77.3958960819205, 34.565746508194096], [-77.39590095889659, 34.565005593163825], [-77.3960043756984, 34.56493361181652], [-77.39663597290463, 34.56419360299282], [-77.39718330802438, 34.56476350863427], [-77.39715944747523, 34.565051853553626], [-77.39742372887261, 34.56611739887372], [-77.39758404923556, 34.566231183601126], [-77.39899954111186, 34.566058632173345], [-77.40047510123463, 34.565878738439864], [-77.40057535399993, 34.56586651590063], [-77.4007026642962, 34.56581673101221], [-77.40372695412195, 34.565470502580425], [-77.4056044436744, 34.56387328015005], [-77.4068784729004, 34.56401129171987], [-77.40776426428755, 34.56397990849455], [-77.40845421622018, 34.56372155384525], [-77.40947204450765, 34.564086663462604], [-77.4100300178756, 34.5642819753542], [-77.41028322862132, 34.56429798086205], [-77.41071646547347, 34.564508327329904], [-77.41127918455832, 34.56477911733782], [-77.41160583820063, 34.56483059410112], [-77.41205608624949, 34.564800139195725], [-77.41239371983161, 34.56478207124032], [-77.41282759422171, 34.564584968790946], [-77.41318158931772, 34.56464032231573], [-77.4137263150015, 34.564660739973846], [-77.41396946343073, 34.564559563371695], [-77.41409578963207, 34.56473332281038], [-77.41458456307532, 34.565461661504], [-77.41468159459123, 34.5656340041291], [-77.41466650629683, 34.56573426412673], [-77.41475750852801, 34.56571670734221], [-77.41499878159422, 34.56584820524726], [-77.41518297716172, 34.565952231341065], [-77.41554539291597, 34.565650384693285], [-77.41562544584134, 34.565583961996005], [-77.41584136833598, 34.56546648380241], [-77.41593929833512, 34.5653823889937], [-77.41601100684659, 34.56536469144033], [-77.41617442529292, 34.5652472270093], [-77.41633319074418, 34.565048203486626], [-77.41644013796669, 34.56495540834178], [-77.41633315269006, 34.56480772563986], [-77.41619980662873, 34.56470924207531], [-77.41588389561088, 34.56461117469929], [-77.41633301108504, 34.563910416661216], [-77.41637504525646, 34.563736395338], [-77.41650457930406, 34.56367234982228], [-77.41676145783073, 34.563247967898], [-77.41712078202467, 34.56327656551534], [-77.41756092573132, 34.563144992500405], [-77.41790863774905, 34.56319364736172], [-77.41820817584559, 34.56310338280646], [-77.41839047385477, 34.56307008750441], [-77.41848482694911, 34.562765171854494], [-77.41863313374283, 34.562515680924776], [-77.41864173970752, 34.562455555753424], [-77.41869632551506, 34.56221255879838], [-77.41878947043114, 34.561744411892676], [-77.4190175479676, 34.56161097257352], [-77.41927208315434, 34.561345767341365], [-77.41948402589793, 34.561390324155155], [-77.41958472530578, 34.56142049452619], [-77.41965852904796, 34.56151836256762], [-77.4200546810431, 34.5616952902713], [-77.42027196410741, 34.56181716095931], [-77.42069753948209, 34.5617586954816], [-77.42105988367373, 34.56211954359451], [-77.4210970686667, 34.56211959918312], [-77.42117460072332, 34.56214847504975], [-77.42145383583929, 34.562226199553976], [-77.4217111558622, 34.56207094332487], [-77.4218009703105, 34.562007580533034], [-77.42184771210452, 34.56198720756323], [-77.42192298526162, 34.56195919439981], [-77.4226354695183, 34.561559902233654], [-77.42301906081069, 34.561446242968415], [-77.42380053898995, 34.561362372162996], [-77.42387655008818, 34.56175802015346], [-77.42393268288224, 34.56205020481359], [-77.42399085514073, 34.562352996738], [-77.42403019839229, 34.5625849891819], [-77.42342375253381, 34.56334564715298], [-77.42330583511153, 34.56341173576816], [-77.42302986506651, 34.563543296094686], [-77.42298865804031, 34.56358468176307], [-77.42287342707529, 34.563857229937554], [-77.42291192830663, 34.564147622888086], [-77.4230300060904, 34.56413648673902], [-77.42323546718137, 34.564195032069435], [-77.42342396252263, 34.56421206140903], [-77.42358306544978, 34.564176464649506], [-77.42408372812353, 34.564137543340095], [-77.42421181229325, 34.56410541112609], [-77.42441557602984, 34.56400799852524], [-77.42473438220473, 34.56389567913961], [-77.42499962181964, 34.56385348892751], [-77.42543333654109, 34.5640805497754], [-77.42570802791495, 34.56412657747991], [-77.42578756948016, 34.56413057078939], [-77.42590124474614, 34.564135440484286], [-77.42642244869836, 34.56410248007283], [-77.4265754566944, 34.56417426344834], [-77.42666976726949, 34.56422479710504], [-77.4268905701575, 34.564209547265854], [-77.42696930975936, 34.563877879443424], [-77.42697467387687, 34.5638577701564], [-77.42696929730923, 34.563834183708806], [-77.42686391869702, 34.563562685137455], [-77.42682841028679, 34.56330263502753], [-77.42677268820603, 34.56303778820628], [-77.42689070515058, 34.56268049330986], [-77.4268737057111, 34.562174009503266], [-77.4268849678292, 34.56165756433097], [-77.42736259033178, 34.561607615061405], [-77.42888126687075, 34.56182227497263], [-77.42893835925314, 34.561830344936574], [-77.42901226700869, 34.561864871341484], [-77.42934173552476, 34.56225186965878], [-77.43027553362754, 34.563380603454505], [-77.43039338706673, 34.56349421741285], [-77.43051463617758, 34.56358543758831], [-77.43187082321239, 34.564848322788166], [-77.4319961982232, 34.564932199256546], [-77.43209086948569, 34.56502132788833], [-77.43322270336151, 34.565872416324424], [-77.43370643461462, 34.566238857666654], [-77.43377790643147, 34.566390332044385], [-77.43397467042207, 34.5679408587996], [-77.43366790686082, 34.56849420510255], [-77.43339562164616, 34.56942912634147], [-77.4333016169764, 34.56973654716772], [-77.43288052612431, 34.569975157725494], [-77.43260956346897, 34.57012869596], [-77.432432892287, 34.570228804963214], [-77.43229561177637, 34.57030659273217], [-77.43209275302212, 34.57041553296989], [-77.43182912002652, 34.570514464498515], [-77.43152223312555, 34.57060875502791], [-77.43130489824142, 34.57064167468531], [-77.43107030046151, 34.57065549315189], [-77.43051703309146, 34.570850489091995], [-77.43041306516002, 34.5708912837011], [-77.43010877879058, 34.57104733547081], [-77.4298358161442, 34.57120168651305], [-77.42972922340455, 34.571243795736606], [-77.42956663266422, 34.571300953140366], [-77.42894136833328, 34.5715168908511], [-77.42866297609649, 34.57155637415071], [-77.42840826916392, 34.57129315089171], [-77.42857893519263, 34.57080966377966], [-77.42865311872163, 34.570408579711426], [-77.42885428006697, 34.57028606049834], [-77.42894096471474, 34.57023068815279], [-77.42923306264812, 34.569900158329744], [-77.4292498943409, 34.56980622374892], [-77.42918748795312, 34.56948215627632], [-77.42911129685737, 34.5693092845739], [-77.42902735523188, 34.56908071509475], [-77.42894053108685, 34.56884429640739], [-77.42889409916191, 34.568725390093086], [-77.42887928666497, 34.56867752949927], [-77.42887241201086, 34.56860518792958], [-77.42879459950511, 34.56799758634027], [-77.42851994300358, 34.56788029418115], [-77.42832435934416, 34.5677230965609], [-77.42815227313179, 34.56772175974744], [-77.42743660236073, 34.56726570918623], [-77.42736421943574, 34.56722438743795], [-77.42735102313407, 34.567214300142716], [-77.42726919064314, 34.5672119088554], [-77.42731795097195, 34.56715501610732], [-77.4270903830576, 34.56681316545132], [-77.42705311483701, 34.56672910782459], [-77.42697008898881, 34.566602677349465], [-77.42686624584435, 34.566420973754724], [-77.42686978569847, 34.566312447056845], [-77.42692135868828, 34.56604076617106], [-77.42665241718338, 34.566027291885405], [-77.42657597854395, 34.566030452465185], [-77.4265526095941, 34.566041717923774], [-77.42626412799981, 34.56617185285378], [-77.42618210455922, 34.56629165710601], [-77.42598011508211, 34.56654905128672], [-77.4261822598413, 34.56685121530447], [-77.42622286430947, 34.56689480496748], [-77.42623799597007, 34.56693636724025], [-77.42628463206213, 34.567039903449995], [-77.42642972570363, 34.567333243880974], [-77.42637029221946, 34.567544280739256], [-77.42635627646058, 34.567556154076435], [-77.42618248064251, 34.56764543522336], [-77.4260549551096, 34.567674548101884], [-77.42592936629651, 34.56767836841659], [-77.425788516659, 34.56760930763173], [-77.42566701543228, 34.56757441788261], [-77.42519742103761, 34.567511347831754], [-77.42508500249885, 34.56743658922011], [-77.42500056814292, 34.56745629279157], [-77.42496030179318, 34.5675022068216], [-77.42487874136634, 34.56755740465042], [-77.42460667801429, 34.56770047530366], [-77.42432558619745, 34.56775896826245], [-77.42421274828104, 34.5677983032848], [-77.42412257460239, 34.56776385964564], [-77.42397358945954, 34.567688214888406], [-77.42387842145011, 34.56763765969926], [-77.42381873870457, 34.5675809993316], [-77.4236649552015, 34.56747394143201], [-77.42349032625373, 34.56733346530518], [-77.42342471389294, 34.56729325060976], [-77.42305074810218, 34.567396987930266], [-77.42303297809651, 34.56740191729302], [-77.42303078742388, 34.567403649854384], [-77.42300909866182, 34.56742638749675], [-77.4226369210895, 34.56777368900263], [-77.42258116735307, 34.56782932746264], [-77.42253341704344, 34.567896330226596], [-77.42184922366839, 34.568714842898714], [-77.42181540310322, 34.56881277999024], [-77.42176082068688, 34.56885714049587], [-77.42145533803605, 34.5690491433129], [-77.42122980610173, 34.56911537352697], [-77.42106140344961, 34.56917322653683], [-77.42086144293737, 34.5692026008343], [-77.42066742910279, 34.56911710749662], [-77.42051819574708, 34.569036684903274], [-77.42036629865648, 34.568958547472775], [-77.42027338145924, 34.568706661043144], [-77.42000511827182, 34.56882167217741], [-77.41963213228583, 34.56900669364869], [-77.41948554701555, 34.56914021546082], [-77.4194607874555, 34.56916276837251], [-77.41909160429131, 34.569241901494216], [-77.41909067915104, 34.56924193063772], [-77.41874681703996, 34.56923960641191], [-77.41869763245883, 34.56919555572396], [-77.41850581929549, 34.56890283687174], [-77.41843247950271, 34.568774524966734], [-77.41830355032158, 34.5685503589398], [-77.4182887025176, 34.56852561580824], [-77.4182590690041, 34.56851389972408], [-77.41805022375249, 34.56839247333634], [-77.41790954912675, 34.56832056267403], [-77.41776018161178, 34.568424970834315], [-77.41770128988563, 34.568594477415274], [-77.41751568523523, 34.568863458856555], [-77.41745332635189, 34.568987652111744], [-77.41737604041442, 34.56906604583237], [-77.41712180187025, 34.569321407063995], [-77.41699951595781, 34.56941321249623], [-77.41685682321874, 34.56956563153908], [-77.41669546761516, 34.56997851907332], [-77.41643854035067, 34.57036260030286], [-77.41635970177856, 34.570486606629906], [-77.41643474512455, 34.57058425458579], [-77.41686691157992, 34.571262507135195], [-77.417031430257, 34.5713365083798], [-77.41712215411054, 34.571372715918876], [-77.41747922862129, 34.57163845712526], [-77.41757523091391, 34.571648415391614], [-77.41791010312446, 34.571384948189696], [-77.4180064707349, 34.57120178466805], [-77.41854393275753, 34.571020251013884], [-77.41867753450747, 34.57097892510311], [-77.41869797137556, 34.57097561642484], [-77.418717065304, 34.57097466210146], [-77.41881003564012, 34.57098180882778], [-77.41909194865556, 34.571006451947525], [-77.4193552784811, 34.57104383886817], [-77.4194859355145, 34.57108396587391], [-77.4196812678992, 34.57107001354782], [-77.419682918658, 34.57107092412404], [-77.41969320690502, 34.57107759606991], [-77.41979027028233, 34.57114910303075], [-77.41979941844366, 34.571176694071404], [-77.41981113958502, 34.57126176401843], [-77.4198279539406, 34.571315375848], [-77.41988000663731, 34.57156834758379], [-77.41990159805485, 34.57167327987383], [-77.41995926620788, 34.57200421184557], [-77.41998498750183, 34.572198813541604], [-77.4198827793961, 34.572525168230946], [-77.41988020457842, 34.572529198242876], [-77.41969912156532, 34.57278107983463], [-77.4194863524223, 34.57315434260877], [-77.41938284721374, 34.57333497819315], [-77.41932368142615, 34.57345510990775], [-77.41936863526531, 34.57357556740969], [-77.41948648428405, 34.573805949859505], [-77.41959952437978, 34.57414268252571], [-77.41961893956335, 34.574261623679725], [-77.4197142066912, 34.574493117418314], [-77.41979726325074, 34.57466044629829], [-77.41983570569774, 34.57470333243789], [-77.41988065845386, 34.57471985625031], [-77.42007789042918, 34.57483242634244], [-77.42027469676273, 34.574953037345495], [-77.42031196012934, 34.57497051881265], [-77.42035381328924, 34.575004625338295], [-77.42053907254359, 34.57511757742686], [-77.42066873657656, 34.57518314410486], [-77.42077702739535, 34.57525138199776], [-77.42094628278942, 34.575343612660326], [-77.42102018245049, 34.575378831124475], [-77.42106277536027, 34.57539912955824], [-77.42122126273739, 34.57547465943705], [-77.42127134316306, 34.575496493865245], [-77.42145679558386, 34.57552464839582], [-77.42178853729877, 34.57557940958067], [-77.42185080187869, 34.57558546995195], [-77.42189330473477, 34.57558556705671], [-77.42200463321598, 34.57561528472397], [-77.42224482952713, 34.57573419201401], [-77.422397824869, 34.5757233509951], [-77.422441823709, 34.57572449528014], [-77.42250919286732, 34.575682062979496], [-77.42263879506822, 34.575620574046475], [-77.42272171717849, 34.57560103906369], [-77.42273822184023, 34.57550928832978], [-77.42275902273326, 34.57537665483563], [-77.42275121305804, 34.57508282497525], [-77.4226385961033, 34.57479641546455], [-77.42260900308278, 34.57471065615097], [-77.4225940756244, 34.57468094424494], [-77.42259087193004, 34.57463001976946], [-77.4226385559993, 34.574630075130074], [-77.42270365129869, 34.57459495088204], [-77.42303249903699, 34.574448135987176], [-77.423182541823, 34.5743330536738], [-77.42322945772041, 34.57430813077567], [-77.42331087533296, 34.57424054218395], [-77.423364738605, 34.574211478861045], [-77.42342642120519, 34.57418994796795], [-77.42346325250121, 34.57423691090774], [-77.423465557403, 34.57430057840607], [-77.42346707528588, 34.57434250514078], [-77.42347291921266, 34.57450392918504], [-77.4234747209046, 34.57455369359154], [-77.42349477342674, 34.574624339354465], [-77.42357071042528, 34.574964409536044], [-77.42367686914106, 34.57510400473265], [-77.42382063538057, 34.57508612746212], [-77.42416161362556, 34.57524643553841], [-77.42421467332844, 34.575271759793935], [-77.42422983211586, 34.57527741648071], [-77.42426875777647, 34.575288125852346], [-77.42451341723174, 34.575355437589224], [-77.42452993500427, 34.57559003741251], [-77.42444138573708, 34.57568776682634], [-77.42436939158111, 34.575956217131605], [-77.42428720546057, 34.57613463400061], [-77.42432280489355, 34.57624574314528], [-77.42440306769728, 34.57676446314302], [-77.42455547294337, 34.576945041168486], [-77.42478046851062, 34.577152510528734], [-77.42500316781904, 34.577170670563554], [-77.42533466792196, 34.577189670332096], [-77.42539717750945, 34.57720851738752], [-77.42542375157872, 34.5772155184859], [-77.4255248947016, 34.577229536973775], [-77.42572986223963, 34.577266008071305], [-77.4257911922917, 34.57726347703481], [-77.4258603562499, 34.577255593224805], [-77.42610897176529, 34.57722725397653], [-77.4261851829861, 34.57723246610216], [-77.42626583001432, 34.577209373738114], [-77.42652964846343, 34.57713768064238], [-77.42657915181499, 34.57712741888797], [-77.42662019161787, 34.57711547495405], [-77.42688044598754, 34.577033631740996], [-77.42696005354638, 34.5770080504035], [-77.42699207184867, 34.576997066988646], [-77.42736710886079, 34.576992451059866], [-77.42767749399331, 34.57700854382353], [-77.4277611127269, 34.57701209063293], [-77.42787339197646, 34.577011117561604], [-77.42802506363361, 34.577008341329105], [-77.42815511080282, 34.577012449673916], [-77.42837141902132, 34.57700962131079], [-77.42846168522166, 34.57722967900523], [-77.42848587863666, 34.57729441655241], [-77.4285125244073, 34.57760729422037], [-77.42845406245867, 34.577655369925225], [-77.42815536508706, 34.57783485847334], [-77.42801251918776, 34.57798979159239], [-77.42785947037919, 34.57816589902433], [-77.42795682958773, 34.5783659506417], [-77.4279477723529, 34.57857772521383], [-77.42799961405159, 34.578738374461416], [-77.42802795533616, 34.5788530858404], [-77.42804842547602, 34.57898776633613], [-77.42779896961363, 34.57940840228011], [-77.42777985587402, 34.57945117232804], [-77.42777076856282, 34.5794620855274], [-77.42776186275526, 34.57947058925043], [-77.42748799517543, 34.579917943412994], [-77.42756820569453, 34.5801152486945], [-77.42756951157092, 34.580118456422085], [-77.42760616829278, 34.58015744953089], [-77.42774240040538, 34.58030576324199], [-77.42775033832865, 34.58031731410583], [-77.42776212396426, 34.58032334533201], [-77.42804795363057, 34.58068619005231], [-77.42809640051094, 34.58074370129213], [-77.42815630729515, 34.58086807001567], [-77.42825936348545, 34.58108022335961], [-77.42826457992277, 34.58138755938161], [-77.42831531665604, 34.581496725214485], [-77.42828475770604, 34.58163929867732], [-77.42829681784954, 34.581772880619], [-77.42845731446984, 34.58190079082981], [-77.42850622310051, 34.5819416097891], [-77.42855067013602, 34.581962287364156], [-77.42870933619045, 34.582035315081164], [-77.42874770977792, 34.58205313607465], [-77.428759490382, 34.58205671716334], [-77.42894474628626, 34.58213290183641], [-77.42910926959385, 34.58205383376918], [-77.42913797799207, 34.58222699924319], [-77.42925538122823, 34.58229994443573], [-77.4293388403758, 34.582353658463255], [-77.429372084698, 34.58236963864611], [-77.42951448918295, 34.582384872939485], [-77.4295307914863, 34.58238798164462], [-77.42954095216149, 34.58238653224774], [-77.42973282112004, 34.582226589937854], [-77.42978382205474, 34.58218861862936], [-77.42985303784404, 34.5821236426455], [-77.42984237085994, 34.582007057019894], [-77.42979506941924, 34.58170743220459], [-77.42985814972431, 34.58140906863299], [-77.43021066145336, 34.58155679506545], [-77.43052069119321, 34.58171528444724], [-77.43074886682182, 34.58174828202798], [-77.43125160760736, 34.58192147751744], [-77.43130881621705, 34.58196044490051], [-77.4313406642067, 34.581942929224674], [-77.43161192385972, 34.58186939008945], [-77.43205853606683, 34.58176360857557], [-77.43209678359779, 34.58175524160995], [-77.432147197181, 34.581737677750745], [-77.4324907546999, 34.58162236415506], [-77.43281863602802, 34.5816236713725], [-77.43288476413487, 34.58159692943913], [-77.4329727634445, 34.581577823355715], [-77.43314546922416, 34.58164768973856], [-77.43349587822553, 34.58178775747797], [-77.43367290042644, 34.581858870564005], [-77.43375723362352, 34.5818929725149], [-77.4339746595039, 34.581852983190174], [-77.43406690352965, 34.58181562302651], [-77.4341500442558, 34.58171474668097], [-77.43413794010945, 34.58158084621688], [-77.43412921303957, 34.581505462444035], [-77.4340667145994, 34.58132250018057], [-77.43401342483426, 34.58115496717701], [-77.43399628686564, 34.58110008917768], [-77.43396290083604, 34.58099318179305], [-77.43386941858964, 34.58069383997258], [-77.43406632915642, 34.58031507455122], [-77.43408489356227, 34.58025812294014], [-77.43409691337757, 34.58023635638761], [-77.43446013397009, 34.57977854170241], [-77.43450162651949, 34.579797953419664], [-77.43518809364292, 34.57965399170199], [-77.43524541721479, 34.57964281266618], [-77.43524809929977, 34.57964213943507], [-77.43659749482453, 34.57920614946015], [-77.4371695332497, 34.578994960042515], [-77.43840026291245, 34.57985797568203], [-77.43907420699487, 34.580064200556016], [-77.43976444235966, 34.58069056033985], [-77.44080891995117, 34.58134135504264], [-77.44155349598046, 34.582314046510064], [-77.44207609396832, 34.58319026971443], [-77.44238506735451, 34.58370828555559], [-77.44266216306119, 34.58417286367413], [-77.44296840659828, 34.58514711538838], [-77.44300057087534, 34.58531763994821], [-77.44198965257226, 34.58593199765863], [-77.44155542378076, 34.58637466325405], [-77.44155498988489, 34.586375462509835], [-77.44155403158352, 34.58637606907079], [-77.44116146541, 34.58654667263391], [-77.44082391895886, 34.58648166951601], [-77.4407808643162, 34.586473378254546], [-77.44076738885381, 34.586469396616074], [-77.44073108154694, 34.58645598074524], [-77.44022104381558, 34.58630830270197], [-77.43997917508298, 34.58617777773169], [-77.43975953940102, 34.5860230080323], [-77.43966150636976, 34.585800596444386], [-77.43942220232034, 34.58558589146363], [-77.43929993589818, 34.58542829343985], [-77.4392455298128, 34.58537712111354], [-77.43919072272345, 34.58534164537547], [-77.43901837001064, 34.58523008429782], [-77.43875427278448, 34.58508261171437], [-77.43854986118717, 34.58495336343449], [-77.43840243606743, 34.584847546589444], [-77.43812903166274, 34.58487840668458], [-77.43789471430748, 34.58490485442648], [-77.43761422832077, 34.58451632327237], [-77.43754175919369, 34.58448684459378], [-77.43752093039386, 34.58441178052091], [-77.43748333102069, 34.58427627748372], [-77.43729007438974, 34.58394501137182], [-77.4372199600702, 34.58395674032889], [-77.43706075078268, 34.583800626218164], [-77.43702286916343, 34.58377492630289], [-77.43694903307235, 34.58372483391244], [-77.43685238921228, 34.58365926791176], [-77.43683773726295, 34.58364852577447], [-77.43682579781871, 34.583637854433526], [-77.43677293283648, 34.58361380218201], [-77.43668542118345, 34.583683411684234], [-77.43651297339278, 34.583795779514915], [-77.43643191733263, 34.58399376019012], [-77.43637879862962, 34.58409505829364], [-77.43630815134554, 34.58429605769001], [-77.436294376197, 34.58458914239509], [-77.43631636394552, 34.58488564348251], [-77.43635468389088, 34.58508872655969], [-77.43643243818406, 34.58525248287077], [-77.43650702409782, 34.58540758087575], [-77.4364325764538, 34.58558615380389], [-77.43638595055106, 34.58579934419063], [-77.43634957367365, 34.58585494089386], [-77.43623569303739, 34.585913622821344], [-77.43604781845845, 34.58589857305056], [-77.43604023954293, 34.58589797487993], [-77.43603866753706, 34.58589827135438], [-77.43603650568745, 34.585897879492286], [-77.43589481597928, 34.585863390320554], [-77.43584163128467, 34.5858563972176], [-77.4357379732781, 34.585842767432176], [-77.43564457906177, 34.585774645034526], [-77.43548689853894, 34.58580975355168], [-77.4352505427899, 34.58577867499628], [-77.43505260928187, 34.58583118010394], [-77.43471363049106, 34.58593745885769], [-77.43462483404352, 34.58635419588019], [-77.43457515083088, 34.5865360933463], [-77.43469752777199, 34.586690091460696], [-77.43485694086665, 34.58687940239599], [-77.43487353142746, 34.58689967740036], [-77.43488770444515, 34.58691549637143], [-77.43505880405988, 34.587108172552604], [-77.43522161244746, 34.587291811276884], [-77.4352349581417, 34.587307335069724], [-77.43525116285781, 34.587324788800636], [-77.43539921795532, 34.58747842845642], [-77.4354214030478, 34.58750415743963], [-77.43555483987517, 34.5876682238906], [-77.43559204578398, 34.58772030090495], [-77.43564539923338, 34.587794979068335], [-77.43590706490944, 34.588041889079804], [-77.4359729149853, 34.588104193618264], [-77.43603959229708, 34.588149004503805], [-77.4363763784969, 34.58833683780534], [-77.43645113314413, 34.58836906552929], [-77.4364797375791, 34.58843322007904], [-77.43667024273105, 34.58878072566651], [-77.43672198018965, 34.58888748247969], [-77.43682810046269, 34.58912248275873], [-77.43684474083594, 34.589162175425834], [-77.43685353882523, 34.58917881528477], [-77.43701821460206, 34.58937486331811], [-77.43722229908131, 34.58946277626403], [-77.43728204766886, 34.58947707484859], [-77.43754032196136, 34.58950410083046], [-77.43759792428267, 34.58951565398059], [-77.43761637629225, 34.58951442035597], [-77.43763982997285, 34.58951498281464], [-77.43770967396321, 34.589479612171544], [-77.43801035498385, 34.589339284326506], [-77.43824448960687, 34.589230012773754], [-77.4384043246722, 34.58914761386394], [-77.4385574466686, 34.58909743824025], [-77.43864653033458, 34.58908312773134], [-77.43879834698407, 34.58907827292619], [-77.43909343056242, 34.589279508884694], [-77.43897667858006, 34.58948834854026], [-77.43896544148092, 34.5895103152235], [-77.43893884321757, 34.58957531273095], [-77.43887005289915, 34.58973640674269], [-77.43884791662288, 34.58979267577817], [-77.43848269444018, 34.59021701687522], [-77.43845130979393, 34.5902716469637], [-77.43840483097365, 34.59029506724673], [-77.4382897144511, 34.590368995171275], [-77.43817771000647, 34.59044092454763], [-77.43801090061487, 34.59058871860478], [-77.43795616308248, 34.59065873855499], [-77.43792522653752, 34.59072222403044], [-77.43795578427509, 34.5907772809437], [-77.43800951096874, 34.59092233326757], [-77.43801104741088, 34.590924440548775], [-77.43809920016089, 34.59102672605616], [-77.43819104134926, 34.59110838001637], [-77.43829231948489, 34.591215401068034], [-77.43840533199625, 34.5914282147172], [-77.438662667681, 34.591612182902885], [-77.43911975219919, 34.59174369735203], [-77.43919360260635, 34.591743991980515], [-77.43922496484485, 34.59177427682783], [-77.43995162639919, 34.591670564596406], [-77.43998170202582, 34.59167655892705], [-77.44000065771259, 34.59167545165691], [-77.44016222713546, 34.59167251028261], [-77.44037576332326, 34.59166894481725], [-77.44040046045288, 34.59166466935533], [-77.4407603750966, 34.59159615263909], [-77.44076979333178, 34.591595230778324], [-77.44078514636615, 34.59159896226935], [-77.4415065546379, 34.591533399695585], [-77.44155790800549, 34.59156632559374], [-77.4416783324691, 34.591582985911444], [-77.44219844785874, 34.59153701975314], [-77.44234617590273, 34.59185184462037], [-77.44244898653, 34.59208031150055], [-77.4424277272085, 34.592194041986325], [-77.44234638082483, 34.5922699129705], [-77.44196044459673, 34.592694763100546], [-77.44192106497104, 34.592725827954354], [-77.44155860801642, 34.593021684143665], [-77.441460162147, 34.59307707684137], [-77.44134243177774, 34.59320020415037], [-77.44098606051791, 34.59348380167004], [-77.44077073461152, 34.59359032752124], [-77.44056244486185, 34.593537404979784], [-77.44005829102409, 34.59338592116545], [-77.44001308830886, 34.59335947922039], [-77.43998247010252, 34.59333814572586], [-77.43990665953402, 34.59332617320583], [-77.43958838174966, 34.593304159805356], [-77.43944945088317, 34.593473968759625], [-77.43934122367716, 34.59364774428475], [-77.43919462309287, 34.593996304276594], [-77.43909051682309, 34.594262764570665], [-77.43909157894143, 34.59437490977498], [-77.43906352776348, 34.59452046882191], [-77.43902259257929, 34.59504820849307], [-77.43893163873861, 34.595247226472054], [-77.438767001762, 34.59565868050154], [-77.43876545372339, 34.595734504810046], [-77.4386791713863, 34.596132923218406], [-77.43880161547679, 34.59637033312638], [-77.43884942122858, 34.59648144628719], [-77.43891119509735, 34.59652396598434], [-77.43919588814671, 34.59677704741973], [-77.43930081377442, 34.59677917218435], [-77.43958998093683, 34.59678502777319], [-77.43981149700699, 34.596818369723074], [-77.43992080494692, 34.5968707674377], [-77.43998413920107, 34.596933635944566], [-77.44011858582235, 34.59719855563827], [-77.44024333082105, 34.59732605404709], [-77.44027191221488, 34.59748615175994], [-77.4402936569423, 34.5975978329071], [-77.44018159642398, 34.59781427939651], [-77.44017364009233, 34.59781891204012], [-77.43998459117097, 34.59790366082318], [-77.4396974862865, 34.598108640881584], [-77.43962620480028, 34.598157294031374], [-77.43943482855491, 34.598314541977544], [-77.43919667619315, 34.598502787301335], [-77.43914127267641, 34.59855395112262], [-77.43909104838909, 34.59862092974246], [-77.43877829091231, 34.599064308206685], [-77.43877446700658, 34.59909130237359], [-77.43870570986601, 34.599205951258604], [-77.43851386923296, 34.59955357821379], [-77.43845732129391, 34.59961383695333], [-77.43845782391412, 34.59998627638144], [-77.43847505254315, 34.60033754428909], [-77.43847832166455, 34.600407906417004], [-77.43848911263646, 34.6004922530071], [-77.43851926937387, 34.60082657947725], [-77.43856178484756, 34.60108111045764], [-77.43858106830946, 34.6012181604589], [-77.43860622790652, 34.601335801299406], [-77.43865081576888, 34.601567520093404], [-77.43870881423943, 34.60181556578592], [-77.43873201263987, 34.601913615467225], [-77.43875915944079, 34.60200876936146], [-77.43881155563147, 34.602147064520075], [-77.43885023500312, 34.60224915451667], [-77.43893511822492, 34.60245310858207], [-77.43901843802061, 34.60257044357547], [-77.43911583285666, 34.602689284659746], [-77.43918911932496, 34.6027787081308], [-77.43924437640212, 34.60287527169845], [-77.4392725549034, 34.602954792365196], [-77.43938246263819, 34.6032051477148], [-77.43939653854596, 34.603260325773036], [-77.43942561671754, 34.60348092311379], [-77.43944148728559, 34.603557565293976], [-77.43947692273375, 34.6036191611486], [-77.43956332657729, 34.60389207376683], [-77.43970363869406, 34.6040746585557], [-77.4397769153157, 34.604166630002446], [-77.43981616247169, 34.604189233295116], [-77.43994617278821, 34.60428256471159], [-77.44017087227807, 34.604457346617394], [-77.44021785262021, 34.60454179220407], [-77.44038457353744, 34.60476566401196], [-77.44039287875813, 34.60478493056895], [-77.44047731950756, 34.60508790759086], [-77.44048282626798, 34.60510689783992], [-77.44049217308996, 34.60512065438396], [-77.44056986794376, 34.605319136102636], [-77.44061850612027, 34.60543746063158], [-77.44062296239338, 34.605448598832375], [-77.44076715845776, 34.60569870724149], [-77.44080983632341, 34.60575215633421], [-77.4408856855044, 34.60585026850842], [-77.44097463529923, 34.60607441679344], [-77.44100576272507, 34.60632124091617], [-77.44114026628988, 34.60639644016783], [-77.44105025338193, 34.60652729485692], [-77.44111056189004, 34.60665024039254], [-77.44140737461312, 34.606689530392224], [-77.44144358223987, 34.60670023160584], [-77.44148250068723, 34.606733065303175], [-77.44157260558293, 34.606710120123296], [-77.44187047083099, 34.60622984923647], [-77.44187972485679, 34.606198188942244], [-77.44187527531085, 34.60618687120203], [-77.44234376923642, 34.60574118164255], [-77.44240712972109, 34.60566597318936], [-77.44267470646514, 34.605326850645866], [-77.44272502165508, 34.60525519783741], [-77.44273791207992, 34.60520240518167], [-77.44274706305083, 34.605106636125605], [-77.44279829133518, 34.60481593850064], [-77.44276940031654, 34.604651309197905], [-77.44278342817083, 34.60445092659146], [-77.44276887948183, 34.60434141682457], [-77.44288309980276, 34.604167539208376], [-77.44307863266442, 34.60414011986822], [-77.4433689592298, 34.604022057991756], [-77.44365529031222, 34.60399622305287], [-77.44388280688518, 34.6039788443039], [-77.44403962789227, 34.60398345386831], [-77.44404419138628, 34.60409142251881], [-77.44416286121678, 34.60428992112929], [-77.4441486196164, 34.60451460791272], [-77.4441348962681, 34.60480405959319], [-77.4440911600781, 34.60511391480302], [-77.44407679654803, 34.60518987928256], [-77.4440229226474, 34.60537529208178], [-77.44397542670482, 34.605588035882604], [-77.44396765408366, 34.605690106622035], [-77.44386100958393, 34.60581985693146], [-77.44360316848233, 34.606181960193155], [-77.44347825648508, 34.60634208898124], [-77.4433795210729, 34.60649645806176], [-77.44358124646362, 34.60671837474679], [-77.44362016376714, 34.6067819850618], [-77.44366292034407, 34.60678489997298], [-77.44413769488705, 34.60683074051514], [-77.44432431674083, 34.60683535974322], [-77.44466922401486, 34.60685205901205], [-77.44468875045779, 34.60686163864463], [-77.44471206993849, 34.60687975876065], [-77.44486864693559, 34.60699496673729], [-77.44489830849854, 34.607047871345415], [-77.44498587578786, 34.60714616446128], [-77.44497963768475, 34.60728310553057], [-77.44484053024227, 34.60747790444628], [-77.44477860294961, 34.60752245759504], [-77.44459109641133, 34.60762798868709], [-77.44443887926053, 34.60771327265374], [-77.44438889329282, 34.607748481388946], [-77.44418897768726, 34.607935522734174], [-77.44424084730016, 34.60809711296379], [-77.44434781759819, 34.60830081903777], [-77.44439623959275, 34.608422055066114], [-77.44447982551166, 34.608473800267504], [-77.44462296084286, 34.60872665907831], [-77.44467712067977, 34.6088014768728], [-77.44480976085993, 34.608984709318], [-77.44510327029762, 34.60887490584425], [-77.44520162534742, 34.60879708422231], [-77.44539508449913, 34.60872623429657], [-77.44543973220954, 34.608706680181854], [-77.4454860480266, 34.6086991546833], [-77.44567914684899, 34.60862105448626], [-77.44585023437563, 34.60862690673461], [-77.44614047309574, 34.608663188370855], [-77.44621937313119, 34.60867409503132], [-77.44633929177655, 34.6086880415789], [-77.44653388470824, 34.6087053560071], [-77.44659604916629, 34.608717902309074], [-77.44675836859861, 34.60872263484838], [-77.4469031757409, 34.60871099821237], [-77.44721247031998, 34.60868389872239], [-77.44726392232812, 34.60864901218602], [-77.44735500892062, 34.6086157173564], [-77.44774255974153, 34.60847707150079], [-77.44785050649249, 34.60846704632229], [-77.44805687239688, 34.608359977786094], [-77.44818903789108, 34.608187667430705], [-77.44828050567315, 34.60805291301942], [-77.44834546820819, 34.60784156168724], [-77.44854423432119, 34.607608445962654], [-77.44854724283955, 34.60760246734106], [-77.44854996804298, 34.607585792831756], [-77.44855156055672, 34.60742172845446], [-77.44847445050925, 34.60730994798195], [-77.44844620504914, 34.60728151931319], [-77.44843934499451, 34.607269102602984], [-77.44842888146087, 34.60725134722553], [-77.44820720444591, 34.60696604930052], [-77.448085025856, 34.60680880503692], [-77.4480458580664, 34.6066428068262], [-77.44802528758818, 34.606490710865444], [-77.44802693979479, 34.606463574397175], [-77.44810507827872, 34.606327122115424], [-77.44814611458351, 34.606244959624824], [-77.4481729444787, 34.60620860827768], [-77.44830194024762, 34.60620052010088], [-77.44860826764862, 34.60616902508985], [-77.44868780166867, 34.606169024907224], [-77.44883105464474, 34.60615327409168], [-77.44920657235718, 34.60614373644151], [-77.44951627169723, 34.60597310608012], [-77.4496616357436, 34.605885750048195], [-77.44975632298966, 34.60585765173824], [-77.45013999251572, 34.60571285134235], [-77.45048419955252, 34.605703901096405], [-77.45089574622085, 34.605636961305024], [-77.45098961723811, 34.60508587612065], [-77.45099303435923, 34.60506375929379], [-77.45099431026735, 34.60505205413785], [-77.45098727009298, 34.60496736827182], [-77.45092830215026, 34.60440955941354], [-77.45090539344989, 34.60435023810436], [-77.45087864915058, 34.60430720375458], [-77.45074685043534, 34.60408923865128], [-77.45072050764196, 34.60404340079991], [-77.45070480112282, 34.604038191709236], [-77.45044184722042, 34.603926970166526], [-77.44991908482393, 34.603893028619055], [-77.44981794256395, 34.603775529940116], [-77.44962091684602, 34.60381685493349], [-77.44933196334392, 34.60369122268642], [-77.449519021909, 34.60344465753779], [-77.44972758784075, 34.60336999409242], [-77.45001533440255, 34.60333739698438], [-77.45019156918681, 34.60331865677854], [-77.45050383181456, 34.603201594017186], [-77.4506979364011, 34.60309015339213], [-77.45072520566883, 34.60305014201198], [-77.45077785285817, 34.60290958033846], [-77.45076099730107, 34.60280252125407], [-77.45071402315196, 34.60267978712082], [-77.45054573508732, 34.602606526035395], [-77.45043729447674, 34.602561000552754], [-77.45031334522476, 34.60250581166748], [-77.45014267854958, 34.60246408675334], [-77.45009125362141, 34.60236689359815], [-77.45012571915748, 34.602270515088016], [-77.45019394881375, 34.60206969068724], [-77.45021937192807, 34.60199358827831], [-77.45023795040012, 34.601955795516204], [-77.45034314385879, 34.60172720084637], [-77.45045635919843, 34.60152424207909], [-77.45033240428234, 34.601317728727196], [-77.45023686594615, 34.60121758869524], [-77.44991242532427, 34.601041344824885], [-77.44982434047418, 34.60102465774077], [-77.44957658439816, 34.60103665444068], [-77.44943506135768, 34.60104350724211], [-77.44942420913027, 34.6007862215956], [-77.44953809903984, 34.60067837375462], [-77.44977290851222, 34.60053170859175], [-77.44989745663251, 34.600478074071994], [-77.4500080206366, 34.60043046161573], [-77.45011225180858, 34.60040760171096], [-77.45025203642341, 34.60036173944171], [-77.45043417297553, 34.600278924658774], [-77.45077840943495, 34.60036434889008], [-77.45122007288505, 34.600232231435584], [-77.451277569929, 34.60019599899363], [-77.45129158345748, 34.60017823914403], [-77.45131553683349, 34.60011548989574], [-77.45151469336622, 34.5997453412835], [-77.4515412247001, 34.59966886515019], [-77.45157529639629, 34.59943501474636], [-77.45158688272878, 34.599355491062894], [-77.45153925203456, 34.59930335713872], [-77.45134493588273, 34.59916517040932], [-77.4511638735225, 34.599106888296056], [-77.45080313074948, 34.59891337751873], [-77.45070623752765, 34.598757267297756], [-77.45093914708258, 34.59874704434117], [-77.45133565925678, 34.598559693739276], [-77.45174382619206, 34.59850097069989], [-77.45190729769652, 34.598477451800676], [-77.4522477160871, 34.598428474269056], [-77.45233099119206, 34.598416493123565], [-77.45234714455188, 34.598414282674256], [-77.45238391930306, 34.598415267269175], [-77.45271736820922, 34.59840116772388], [-77.452876046044, 34.598426166465714], [-77.45331041876823, 34.5984945980923], [-77.4533647553193, 34.59852383184472], [-77.45343837100943, 34.59856012347218], [-77.45408424396484, 34.5982738562944], [-77.45435852145297, 34.59817714816019], [-77.45437636844932, 34.59814631762758], [-77.4546850568251, 34.597672020467044], [-77.45504659573916, 34.597381359500815], [-77.45518870507229, 34.59727360947732], [-77.45528087594778, 34.59726112018873], [-77.45596878863384, 34.59716790609011], [-77.45624834875267, 34.5973041277454], [-77.45667794213598, 34.597130580638016], [-77.45659889506607, 34.59681795831187], [-77.45649846930071, 34.59652007611929], [-77.45652296888865, 34.59645697247912], [-77.45652642355353, 34.59640002121455], [-77.4565479975326, 34.59609394946643], [-77.45655075446, 34.595998911509625], [-77.45655975945625, 34.59585046289548], [-77.45657037055201, 34.59571830184075], [-77.45677397453053, 34.59538445999503], [-77.45683461004751, 34.5953272529984], [-77.45707778872523, 34.59520427222988], [-77.45722815476641, 34.595123522204084], [-77.45759265714642, 34.5949731167846], [-77.45767959605774, 34.59485258993689], [-77.45785308830352, 34.5948632433902], [-77.4579843481279, 34.59494562629917], [-77.45852611680904, 34.594954491272496], [-77.45876565518326, 34.594979665249454], [-77.45893355961663, 34.595044071272206], [-77.45913677781135, 34.59512202298786], [-77.4592993648068, 34.595260595293944], [-77.4593409001401, 34.59529711696869], [-77.45935196108809, 34.595316053131526], [-77.45941116486993, 34.59541740832792], [-77.45950774084078, 34.5955827439418], [-77.45955211889574, 34.59565871682195], [-77.45954717128046, 34.59591403937165], [-77.45953616737594, 34.595979938809755], [-77.45949372647296, 34.596257660550236], [-77.45952099966905, 34.59648099671543], [-77.4598580732773, 34.59662662744497], [-77.45992773570477, 34.59689796839042], [-77.46028517262555, 34.596689454738204], [-77.46041397261014, 34.59657963004615], [-77.46055742441243, 34.59642708619781], [-77.46064878256956, 34.596352097151026], [-77.4606945154783, 34.59626480900094], [-77.46079081672158, 34.59609210457478], [-77.46090565536039, 34.59570180382958], [-77.46094790171554, 34.5955771326187], [-77.46097321607286, 34.595536550074755], [-77.46100270655033, 34.59547084470053], [-77.46108830756577, 34.5952671319441], [-77.46114612508711, 34.59515130280401], [-77.46122625159468, 34.595005709312716], [-77.46131490596437, 34.59491850855427], [-77.46136646918184, 34.59487980616662], [-77.4615127993946, 34.59479627836423], [-77.46174224277232, 34.594678479282194], [-77.46183278678575, 34.594663233456956], [-77.46200235155828, 34.59465787073885], [-77.46273724749938, 34.59437584836309], [-77.46283160288056, 34.59447173894114], [-77.46314559635728, 34.594790842318695], [-77.46317766313297, 34.595069059042615], [-77.4632032813046, 34.595672109264235], [-77.4632032586553, 34.596316740918766], [-77.46320325374452, 34.596410664886825], [-77.46317963925841, 34.59657823485173], [-77.46312608017163, 34.59717122672437], [-77.46312077994978, 34.597526608529165], [-77.46272690660959, 34.59792767679187], [-77.46201526848071, 34.59837858979386], [-77.46169747903639, 34.598391232579495], [-77.46135180497318, 34.598416042103516], [-77.46090912377669, 34.59844103018904], [-77.4607670882758, 34.59844904718827], [-77.46049084567565, 34.59846463830524], [-77.46013244132253, 34.598476543300514], [-77.4597564445023, 34.59850196599867], [-77.45972936183921, 34.59849864592168], [-77.45941171066214, 34.598443614264504], [-77.45898310970216, 34.59855650688202], [-77.45870141415311, 34.598583947552385], [-77.45853375513448, 34.5986029831634], [-77.457898667969, 34.59879646242716], [-77.45774494841838, 34.598930278095764], [-77.45733437497856, 34.599218403247605], [-77.45708227483097, 34.5996341749739], [-77.45705974951895, 34.59974169752003], [-77.45694630291143, 34.599852952562955], [-77.45623287801519, 34.60007176530458], [-77.45597013102964, 34.60012738804595], [-77.45519763272884, 34.60091034803572], [-77.45516763276177, 34.60093781155427], [-77.45524315363909, 34.60131189254598], [-77.45530073875052, 34.601603770100304], [-77.4553050013649, 34.601618246457996], [-77.45530871364019, 34.60163287638992], [-77.45543268938458, 34.60200405697368], [-77.45552485113015, 34.60228296875272], [-77.45557910301217, 34.60227858174639], [-77.45556984468453, 34.60231731191852], [-77.4555706093064, 34.60250771777331], [-77.45528307990966, 34.60283636103735], [-77.45552432002879, 34.6030327364286], [-77.45522358251188, 34.60343492706059], [-77.45565439782283, 34.60373415754643], [-77.45572676636243, 34.60386488314473], [-77.45576265423074, 34.604441803869236], [-77.45549810426724, 34.604769746859176], [-77.45550074102214, 34.60488578160934], [-77.45540094801913, 34.605045446475835], [-77.4553965972329, 34.605100121341394], [-77.45538928352444, 34.605192031543844], [-77.45546901766832, 34.605264094620566], [-77.45548092423901, 34.605383119646845], [-77.45535889445405, 34.60557393212248], [-77.45534595067951, 34.605645588290066], [-77.45530242468583, 34.605680879746195], [-77.45518691755468, 34.60589963849219], [-77.45477577479878, 34.606200369037936], [-77.45456871154062, 34.60652781175235], [-77.45428613587092, 34.60682324683962], [-77.45408285585748, 34.60713654384665], [-77.45440932607076, 34.60730483834596], [-77.45471200154853, 34.60759163338305], [-77.45482405463451, 34.607663650409876], [-77.45485002111192, 34.60768033913891], [-77.45490965019292, 34.60777281576136], [-77.45529110655005, 34.608055362624974], [-77.45537215886912, 34.60824583244461], [-77.45529820909945, 34.608416111090975], [-77.4552776393027, 34.60898625866247], [-77.45528169257616, 34.60901016570272], [-77.4552763463673, 34.60902784596403], [-77.45536831991124, 34.609332580873215], [-77.45538566215788, 34.6093497727125], [-77.45554234594763, 34.609576982687514], [-77.45562962905487, 34.6096494458287], [-77.45557912821612, 34.60975315786003], [-77.45565778884357, 34.61001067793471], [-77.45573330353349, 34.610257896677865], [-77.45582964687677, 34.6103309199962], [-77.45599664894348, 34.61085029214213], [-77.45612557997792, 34.61098503358381], [-77.45605525393279, 34.61115848989017], [-77.45622392913143, 34.61169551094175], [-77.45638408227491, 34.612205391276945], [-77.45653803034443, 34.61234444298898], [-77.4565770593997, 34.61257979093629], [-77.45591295497995, 34.61278150373106], [-77.4558116545202, 34.61255163533956], [-77.45572506566424, 34.612281738393065], [-77.45563715470169, 34.61186288290057], [-77.45519085800485, 34.611835655009486], [-77.45504277794062, 34.611663157624186], [-77.45486777964354, 34.611459302618], [-77.4548078901164, 34.611389537413785], [-77.4547739744186, 34.611370565965125], [-77.4546881239761, 34.61129958864445], [-77.45445363781604, 34.61109267271854], [-77.4543532375331, 34.61103108002331], [-77.45368693860078, 34.6109493165689], [-77.45367799572514, 34.6109542131303], [-77.45343410860131, 34.61148024659126], [-77.45282764451935, 34.61168860924511], [-77.45255520652098, 34.61179213855659], [-77.45233883809561, 34.611823458569575], [-77.45217618713536, 34.61186434879998], [-77.45185153786962, 34.611963810576], [-77.4516485705723, 34.61209432208211], [-77.45149935709256, 34.612304536095806], [-77.45140775387729, 34.61262945929376], [-77.45137674151495, 34.61284186020144], [-77.45132278904937, 34.61309341218622], [-77.45130423965736, 34.613212635124114], [-77.4510089389691, 34.61329157585903], [-77.45015286103889, 34.61344022488363], [-77.45013825128801, 34.61344179298849], [-77.45007972004815, 34.613447922217624], [-77.44972722630389, 34.61348716291532], [-77.44963126700908, 34.613455370967515], [-77.44938727993394, 34.613445625434146], [-77.44907119080742, 34.61332996651328], [-77.44880358475932, 34.61357648463599], [-77.4483058579674, 34.61385347352206], [-77.44818723316956, 34.61394183046912], [-77.44815223912343, 34.61396798093307], [-77.44809359821265, 34.614014309589066], [-77.44758868306246, 34.61439019366925], [-77.44733054695985, 34.61465334336665], [-77.44702074127217, 34.61481087174869], [-77.44655353445928, 34.61508152822288], [-77.44641923616055, 34.61516538249906], [-77.44634389912707, 34.615193443580566], [-77.44622884369393, 34.6152845583126], [-77.44621183912561, 34.615499270003035], [-77.44610468270528, 34.61568921626139], [-77.44611804941596, 34.615733824174114], [-77.44626418708731, 34.6158924289975], [-77.44635215855965, 34.61598790475739], [-77.44646227461917, 34.616107414285615], [-77.44662946496261, 34.616278087497754], [-77.44678088669208, 34.61648634311361], [-77.44684062316384, 34.61655918317895], [-77.44685464433664, 34.616583133748684], [-77.44695219715496, 34.616645105137366], [-77.44711893433305, 34.616877027498916], [-77.44727094872744, 34.616947410421126], [-77.44743193723951, 34.616943962632035], [-77.4478144697455, 34.61694681085528], [-77.44795950230207, 34.616950549479505], [-77.44800556862653, 34.61696361952342], [-77.44803196493157, 34.61698593290388], [-77.44816469977381, 34.61706935280668], [-77.44823802060102, 34.617111803376716], [-77.44824698734934, 34.617125635185516], [-77.44833623742372, 34.61726842418717], [-77.4483888227522, 34.61740939943753], [-77.44847049917493, 34.61759939508593], [-77.44857543712101, 34.61783246393434], [-77.44861167273449, 34.617928395179774], [-77.44864004389788, 34.618016604966925], [-77.44876988849265, 34.61799004138696], [-77.44901351716662, 34.61801717673829], [-77.44909260955035, 34.61801341073618], [-77.44929536160316, 34.61798895906196], [-77.44944597066666, 34.61794563684858], [-77.44996244914854, 34.61791246106898], [-77.45018644109868, 34.61795468984731], [-77.45037547374011, 34.61809329717923], [-77.45084254836902, 34.61839999854467], [-77.45128254972683, 34.618443297282134], [-77.45151860801533, 34.618427753711785], [-77.45197228631059, 34.61840149577989], [-77.4520676124023, 34.61839782304269], [-77.45223196520249, 34.61849234223929], [-77.4523202700162, 34.61871710000762], [-77.45214576778987, 34.61879796231683], [-77.45179701433919, 34.618959568612915], [-77.45167919821874, 34.619014162482095], [-77.4514294844403, 34.6191780299917], [-77.45123000757539, 34.619293832594], [-77.45106227423854, 34.61932191496816], [-77.45074730216963, 34.61945112526057], [-77.4503773130656, 34.62000970517185], [-77.45029188611736, 34.620291182966966], [-77.45022185165557, 34.62065449584915], [-77.45018277765877, 34.62080369738373], [-77.45021175152846, 34.62088254294687], [-77.45020115225289, 34.62116771643517], [-77.45041020730069, 34.62133858427613], [-77.45052327681111, 34.62144511633282], [-77.45081348717727, 34.621712448971195], [-77.45114109321811, 34.62200745452947], [-77.45122462654065, 34.62217163625767], [-77.4515439130895, 34.62235998540052], [-77.45178844720475, 34.622561368630855], [-77.45202639513252, 34.62302017038422], [-77.4525197712913, 34.62354813275809], [-77.45249378876912, 34.62383726343974], [-77.45129973421234, 34.62530821475544], [-77.45106774846357, 34.6255177505098], [-77.45059800780174, 34.62585490874706], [-77.4495518203138, 34.62660581758541], [-77.44862047031499, 34.626418786730326], [-77.44804674338785, 34.626056677114974], [-77.4472484084758, 34.62587501612302], [-77.44661944469021, 34.6255123047506], [-77.44644426512414, 34.6251390609055], [-77.44643368859278, 34.624826760112384], [-77.44671128390374, 34.62461307813759], [-77.44688122895147, 34.624534082936734], [-77.44726843700893, 34.624188600344965], [-77.44721676769203, 34.62386497803181], [-77.4472216993258, 34.62355284727719], [-77.44724123638144, 34.623384035174816], [-77.44726870379057, 34.62311165935654], [-77.44729444096423, 34.622958893840796], [-77.4473925510823, 34.62256092402782], [-77.44748436882497, 34.6223116560959], [-77.44752845358803, 34.621801960636304], [-77.4476413215717, 34.62152839165084], [-77.44775099828445, 34.62126042134922], [-77.44774136959343, 34.62113060937415], [-77.4476762224208, 34.621023602558644], [-77.44749791265708, 34.62086217262954], [-77.44746378159378, 34.62084050491828], [-77.4474439263963, 34.62082829578296], [-77.44715938380378, 34.62074111073285], [-77.44704829526981, 34.62058971940709], [-77.44679572351683, 34.6203811941333], [-77.4467350003084, 34.620345595982585], [-77.44666793332051, 34.62032891833061], [-77.44658725346, 34.620233847644194], [-77.44628538491712, 34.619980929162416], [-77.44574202172157, 34.61985441294276], [-77.44572417857401, 34.61975268369761], [-77.44559357136808, 34.61983117070589], [-77.44552990814935, 34.619863890051334], [-77.44513536592245, 34.62002738272359], [-77.44478027322434, 34.620221001285756], [-77.44467944524736, 34.6203331566588], [-77.44453439561025, 34.620292846516605], [-77.44454170959396, 34.62019664415251], [-77.44455601198803, 34.620142531098686], [-77.4443299322441, 34.61988777207171], [-77.44426281124908, 34.61971055049194], [-77.44421651730886, 34.61955085594183], [-77.44408579844378, 34.619358585323184], [-77.44400268199132, 34.61911425602529], [-77.44377327927573, 34.61893872445543], [-77.44377150419675, 34.61893719093054], [-77.44340792258754, 34.6189270301128], [-77.44322696514804, 34.61886862819296], [-77.44282141164445, 34.618729721175015], [-77.44263837276752, 34.618639131714374], [-77.44250993589749, 34.61880715249724], [-77.44229610253764, 34.619309475898945], [-77.44228888166442, 34.619349216929805], [-77.44140793923123, 34.619543280211374], [-77.44129468489608, 34.61949259659101], [-77.44115441197229, 34.61931610341731], [-77.4410779016244, 34.61903245782667], [-77.44103501065301, 34.618980893917914], [-77.44106825541435, 34.61892207097202], [-77.44111203406321, 34.6188253150805], [-77.44133999501875, 34.618397743286806], [-77.44152080271526, 34.618103902764304], [-77.44161795220245, 34.61787559222677], [-77.44164285871237, 34.617699857449495], [-77.44177013580776, 34.61738800427936], [-77.44180540795574, 34.617321771448545], [-77.44187383058282, 34.61726475916062], [-77.4421950247893, 34.61683869664853], [-77.44218852358162, 34.61676058165616], [-77.44224506577648, 34.61642042151884], [-77.44208232568057, 34.616179837942305], [-77.44205146499829, 34.61610636789389], [-77.44202240882433, 34.616049385767525], [-77.44182790903764, 34.61609080440022], [-77.44142646392798, 34.61613244040879], [-77.44121941692842, 34.6161167271817], [-77.44089708013355, 34.61611916590959], [-77.44084012219247, 34.61612325720292], [-77.44046201435573, 34.61623221953982], [-77.44040898801241, 34.61625675269412], [-77.44032162293982, 34.61629994677492], [-77.4396997248866, 34.61658486750777], [-77.43947434057317, 34.616683703356344], [-77.4391667601502, 34.616797383016895], [-77.43886192689823, 34.61691108749249], [-77.43852896750273, 34.61707149552416], [-77.43847273352145, 34.6171266044383], [-77.43824979467038, 34.61731628345716], [-77.43812257336194, 34.61750762898439], [-77.4380333367341, 34.617621105416276], [-77.43792609093487, 34.617822424094214], [-77.43774700647081, 34.61805641858712], [-77.43772730356933, 34.61807758777463], [-77.43775983159536, 34.618103280941995], [-77.43794932671717, 34.618285479028415], [-77.43806730948899, 34.618349911028595], [-77.43851566898647, 34.61850744822737], [-77.43869625329398, 34.618711393368834], [-77.43884449808161, 34.61886685689566], [-77.43882379856085, 34.61904503505966], [-77.43887218092559, 34.61939239129636], [-77.43842671962524, 34.61972444033], [-77.43831223077916, 34.61981585642675], [-77.43824254841688, 34.61986706223628], [-77.43815571301015, 34.61986163337221], [-77.43810189371584, 34.619817034411696], [-77.43772542911131, 34.619610491995545], [-77.43765896730535, 34.61957404675462], [-77.43764866901236, 34.619567174052406], [-77.43754352671996, 34.61954683034963], [-77.43707210368376, 34.619432595602696], [-77.43699644400671, 34.61945016513866], [-77.43624836618073, 34.61971297924649], [-77.43610763041605, 34.61975073096128], [-77.43574785384003, 34.62011879280253], [-77.4357811222738, 34.620168885000744], [-77.43604965856292, 34.62040201141457], [-77.43614849260243, 34.62048656338986], [-77.43631361792544, 34.620696017388475], [-77.4363339677776, 34.62071696549032], [-77.43642621877333, 34.62101409671561], [-77.4364245294867, 34.62103364721791], [-77.43641626332291, 34.621073476114184], [-77.4363403987253, 34.62160349619219], [-77.43626093731237, 34.62181876326836], [-77.43619659441038, 34.621997035359236], [-77.43614269053619, 34.622153738339996], [-77.43612814353858, 34.62222585682016], [-77.43609763932284, 34.6223770879346], [-77.43609256507796, 34.62244591346341], [-77.43610383003352, 34.622602030040674], [-77.43623366947085, 34.622805014065875], [-77.43630359609745, 34.62291433449983], [-77.43624904891531, 34.62310622276364], [-77.43650435764458, 34.62322635536837], [-77.43652430286062, 34.62322690569414], [-77.43653500366449, 34.62323356292801], [-77.4367519239703, 34.623405804192295], [-77.43719315997582, 34.6237171915105], [-77.43722516320449, 34.62374160926644], [-77.43724094417912, 34.62375489256965], [-77.43729770131581, 34.62379682415774], [-77.43759502497367, 34.6240232113457], [-77.43768876227524, 34.6240891986637], [-77.43787018961464, 34.624269744594685], [-77.43790588106107, 34.62430385073377], [-77.43809615783793, 34.62450548338083], [-77.43818047046527, 34.624594826866286], [-77.43829647775244, 34.624717756378324], [-77.43835907689682, 34.62478768524067], [-77.43844972924384, 34.62488732274691], [-77.43833557360375, 34.62500952379024], [-77.4382694787393, 34.62506604530696], [-77.43815054547134, 34.6251246709071], [-77.43809916411811, 34.62510631536782], [-77.43794136025677, 34.625151785422425], [-77.43795762081305, 34.62502759328578], [-77.43781968824851, 34.62490864259688], [-77.43779671858545, 34.62488883398571], [-77.43779161748216, 34.62487769671531], [-77.43766762790754, 34.62474100672747], [-77.43742643394417, 34.62456950408097], [-77.4373424275836, 34.624512490611835], [-77.43720397586871, 34.624503918171406], [-77.43670243851085, 34.62438047979491], [-77.436252498974, 34.62412251250505], [-77.43618544571896, 34.624098145564176], [-77.43613583490668, 34.624069880831954], [-77.43607192177825, 34.62398727766144], [-77.43584637032578, 34.62378314182745], [-77.43579061785329, 34.6236665073517], [-77.43578261049002, 34.6234320711892], [-77.4355618826873, 34.62318934049574], [-77.43550030428536, 34.62314329260625], [-77.43548138978896, 34.62313025630723], [-77.4354446225804, 34.62309178880043], [-77.43523964107705, 34.622848344184284], [-77.43517145276174, 34.622594874564804], [-77.4351442384716, 34.62242373405088], [-77.43507657051074, 34.62215633802758], [-77.435140475353, 34.621980396464245], [-77.43519764799036, 34.62182298838915], [-77.43522948102044, 34.62174351308354], [-77.43533773310818, 34.62147747600599], [-77.43539774421122, 34.6213263118153], [-77.43524872170623, 34.621221424778966], [-77.4350548489567, 34.621054802751225], [-77.43496957385861, 34.621013262263915], [-77.43485502747853, 34.620937303024355], [-77.43464958739546, 34.62080106898227], [-77.43459717381619, 34.62055423427856], [-77.434278575062, 34.6202624343813], [-77.43429180396537, 34.62016456073639], [-77.43410933872258, 34.62013364667909], [-77.43380339545728, 34.620096117261745], [-77.43356283311248, 34.62005786512151], [-77.43348621135127, 34.62008370121376], [-77.43310129401, 34.62029259786961], [-77.43287854702625, 34.62039185065572], [-77.43263435057972, 34.62050758968796], [-77.43245438351482, 34.62043059541365], [-77.43208359478285, 34.62041627199269], [-77.43175155306602, 34.62037540271897], [-77.43134292612476, 34.620473791078446], [-77.43108605940446, 34.62061364879526], [-77.43057703463936, 34.62082515108416], [-77.43021075191761, 34.621257789608734], [-77.43016182077196, 34.62129926420626], [-77.43010839911824, 34.62135681992977], [-77.42992507037499, 34.621526118701865], [-77.42985897701703, 34.62161251740762], [-77.42991701034148, 34.62170323347482], [-77.42990752024784, 34.62178330205798], [-77.42996422971561, 34.62184955282902], [-77.43005776322653, 34.62210972248354], [-77.43025640755496, 34.62220258268077], [-77.43041685593587, 34.62237662791623], [-77.43045734162357, 34.62241408855751], [-77.43060080901584, 34.62268344124996], [-77.43060494718446, 34.622690764781346], [-77.43060681479588, 34.62269173147719], [-77.43060646524492, 34.622704114181346], [-77.43058625238028, 34.62330618703365], [-77.43062037059138, 34.62342634241237], [-77.43068624675409, 34.62350552824669], [-77.43067587118065, 34.6237797639326], [-77.43068816022665, 34.62396130871028], [-77.43071628402421, 34.6241374847627], [-77.43074601663925, 34.62429128568117], [-77.43075629736069, 34.62433404176015], [-77.43081611532341, 34.62447827299403], [-77.43109299402911, 34.62472245903305], [-77.43112079033426, 34.62476068627546], [-77.43113601095715, 34.62478414060853], [-77.43117961130031, 34.62479884877308], [-77.43157541930792, 34.62489131371415], [-77.43174091008534, 34.62492859420709], [-77.4317638372301, 34.62493103946536], [-77.4323277613635, 34.625151712337704], [-77.43233052109969, 34.625152657153336], [-77.43233186896153, 34.625154029497224], [-77.43233588277184, 34.62515748042147], [-77.43269859236457, 34.62541875726421], [-77.43271011602194, 34.625602909828956], [-77.43278689847773, 34.62576283009442], [-77.43278988598374, 34.626419570666116], [-77.43282562040879, 34.626490274818316], [-77.43281846544414, 34.6265652718721], [-77.43279114563238, 34.62684509767591], [-77.43279076680021, 34.62779446539975], [-77.43281706277963, 34.6279696724492], [-77.43288864109857, 34.6281271817609], [-77.43294959574138, 34.62846949732965], [-77.43303781597797, 34.62864524230353], [-77.43305442179755, 34.628838741988986], [-77.4330332986565, 34.62911823478927], [-77.43301269162924, 34.629390882601825], [-77.43300172013284, 34.62953604876351], [-77.4329845447016, 34.62972061540287], [-77.43297829981535, 34.62984591548607], [-77.43298687400834, 34.630136719244454], [-77.43306671574939, 34.63036881418773], [-77.4319777183901, 34.63106861707304], [-77.4318440960532, 34.63107034639591], [-77.43098889261132, 34.63044865974342], [-77.43054115274276, 34.63015209224891], [-77.43043547393306, 34.6301253036282], [-77.42984578458768, 34.63001723534405], [-77.42927634960299, 34.62937310602925], [-77.42892177053976, 34.629318100823845], [-77.42901913175844, 34.62905194239974], [-77.42903773035816, 34.628958703852156], [-77.42883406077014, 34.628366205995924], [-77.42885112211198, 34.627818969725666], [-77.42886098438834, 34.62765792975635], [-77.428882750805, 34.62761386114079], [-77.42919652733097, 34.62715592223386], [-77.42919625658462, 34.627155292612066], [-77.4291959896969, 34.627154829471074], [-77.42893530272998, 34.62686041468301], [-77.4288514678141, 34.62666171961799], [-77.42881286845119, 34.626526067484654], [-77.42870712792293, 34.6263651636467], [-77.42861010331, 34.62621460983185], [-77.42861672949914, 34.62603446472295], [-77.42833889831972, 34.62561681398593], [-77.42846424779444, 34.625517700285], [-77.4282112471389, 34.62548020128376], [-77.4279019046894, 34.625079769924916], [-77.42782089148477, 34.624962553808174], [-77.42749680659688, 34.624790660138004], [-77.42737697664695, 34.624807122077144], [-77.42699710101992, 34.624886020064466], [-77.42682091307793, 34.62508544884116], [-77.42665170070197, 34.625295701977834], [-77.42662509136036, 34.62532663207966], [-77.42660106656253, 34.62536034770973], [-77.42639032018856, 34.62555418007342], [-77.42636598775132, 34.62574634332942], [-77.42628457305037, 34.626125449479694], [-77.42628275009498, 34.62613598842461], [-77.42628202240194, 34.62613950047263], [-77.42620967237758, 34.62623346188256], [-77.42610065173808, 34.626381975804335], [-77.4260829092933, 34.62638835150798], [-77.4258532664357, 34.62647087289166], [-77.4255543983071, 34.62650048741973], [-77.42535406199343, 34.626568102482544], [-77.42516547605541, 34.626595277877655], [-77.42451574665515, 34.626756359290646], [-77.42437760190076, 34.62684281017703], [-77.42391541483168, 34.6271656683728], [-77.42298083374081, 34.62781849986236], [-77.42293668417338, 34.6280619796011], [-77.42225067061248, 34.62832852918458], [-77.4217895562897, 34.62815787683641], [-77.42178579609174, 34.62765907386127], [-77.42155125073691, 34.62748731370889], [-77.42178137626559, 34.627073883397244], [-77.42201388690306, 34.62661705953359], [-77.42206642086605, 34.626518367466915], [-77.42215112288449, 34.62639212491526], [-77.42250558926706, 34.62573852197163], [-77.42264917977327, 34.62548343796723], [-77.4229156766092, 34.62534269003997], [-77.4231959460781, 34.625345582601796], [-77.42371231865516, 34.625236158161556], [-77.4239267455483, 34.625194563419875], [-77.42421751992848, 34.624793550023085], [-77.4242724672928, 34.624536253227014], [-77.42428208777005, 34.62449393288854], [-77.42429422517218, 34.62446067859518], [-77.42438936771961, 34.62423424141526], [-77.4244960995184, 34.62406372679578], [-77.42462255926905, 34.62389393712367], [-77.42491921946475, 34.62394317184717], [-77.42505907862285, 34.62398314596041], [-77.42519177019122, 34.6240526913177], [-77.42529424120458, 34.624152826848686], [-77.42550371572389, 34.62414586665825], [-77.42566192914053, 34.62416057608948], [-77.42575127102835, 34.62417593841711], [-77.42590107236684, 34.62414398438284], [-77.42623852833901, 34.62403508782121], [-77.42638856241572, 34.62389374701643], [-77.42649284522027, 34.623731680194325], [-77.42658527684618, 34.62348935387145], [-77.4265843074505, 34.62346873946895], [-77.42658042673601, 34.623452607757756], [-77.42660260063934, 34.62344393648019], [-77.42664686650843, 34.623266297459736], [-77.42652810942249, 34.623171629682204], [-77.42645974086298, 34.62318571891234], [-77.4261295015454, 34.62329475337368], [-77.42604593542802, 34.6233310440735], [-77.42596329872484, 34.62327645397826], [-77.42575178581083, 34.623136727436076], [-77.42559349638273, 34.62301259000333], [-77.42552257937578, 34.62295977269432], [-77.42537754266336, 34.62280969487921], [-77.42531957899165, 34.62275079665481], [-77.42529537928168, 34.62272830046157], [-77.42524328527507, 34.62267477713711], [-77.42510883621132, 34.622412220258305], [-77.42493864232009, 34.62230222153829], [-77.42493179985787, 34.62225599726478], [-77.42508884401288, 34.62211868906435], [-77.42518108803573, 34.6220914923858], [-77.425581530236, 34.6222775356895], [-77.42555094804779, 34.622468083463346], [-77.42576436782873, 34.6223017192501], [-77.4259188478366, 34.622291811409795], [-77.42602578337706, 34.62229633691661], [-77.42611790879167, 34.622232326476805], [-77.42624591263133, 34.62214002507096], [-77.42628092518127, 34.62207825337061], [-77.42627724177748, 34.62203763147901], [-77.42628031335565, 34.62189381141598], [-77.42615268455499, 34.621799212216494], [-77.4261091740435, 34.6217859718426], [-77.42604630683911, 34.62177587255047], [-77.42596202120173, 34.62168745963502], [-77.42560452345172, 34.621488569738126], [-77.42514231222037, 34.62129498735401], [-77.42504898320466, 34.62125335292885], [-77.4249405142362, 34.62121197794857], [-77.4244450421946, 34.62107727867166], [-77.42415755928178, 34.62105573572042], [-77.42384045968683, 34.62103458442935], [-77.42372545071927, 34.62104251610246], [-77.42325547485495, 34.62109412849058], [-77.4228122820732, 34.62111997081256], [-77.42270194973702, 34.62116558994714], [-77.42246628687452, 34.62131897621399], [-77.4220303164656, 34.62154991645299], [-77.42193746306098, 34.621766106577084], [-77.42191249124748, 34.62181840262389], [-77.42180670968669, 34.621876120366316], [-77.42161826053953, 34.62202512539314], [-77.42170997845923, 34.62227290662785], [-77.42158989185131, 34.62241768082357], [-77.4214157991658, 34.622356716849296], [-77.421367959693, 34.62209499782606], [-77.42136081214147, 34.621872485141765], [-77.42129584513609, 34.621572874110534], [-77.4212193461778, 34.62142716923029], [-77.42107377812842, 34.621311145951374], [-77.42080845213692, 34.62107980253099], [-77.42053983756415, 34.6211070294016], [-77.42028531601265, 34.62113196840156], [-77.42005203672359, 34.621154595628994], [-77.41972155638047, 34.62119301274228], [-77.41949691876394, 34.62121245942482], [-77.41929071303585, 34.6212353789065], [-77.41891208009224, 34.62128720238525], [-77.4187085280731, 34.621329860844], [-77.41847381026287, 34.62138405899079], [-77.41831433908948, 34.62142141902545], [-77.41813351526342, 34.62141021146924], [-77.41792014492749, 34.62149323790722], [-77.41768346897499, 34.62150027894875], [-77.41736141393636, 34.62153924493106], [-77.41713176082511, 34.621668205793355], [-77.4167704344834, 34.621837163702736], [-77.41670975468273, 34.621840517798894], [-77.41657621673815, 34.6218298245966], [-77.41637801355476, 34.62182112790344], [-77.41634336518405, 34.62180383153495], [-77.41611077640665, 34.62172293331427], [-77.41592165659159, 34.621499748491715], [-77.41575745992978, 34.62130523030825], [-77.41555478948158, 34.621008603798714], [-77.41544141856865, 34.62084199267126], [-77.4154376037379, 34.62072047196708], [-77.41545032147206, 34.620606200296905], [-77.4153845252303, 34.62006216286268], [-77.41529674400377, 34.61989164566567], [-77.41516036419206, 34.619836910910095], [-77.41505911377726, 34.619816904349754], [-77.41496325557951, 34.61979796330084], [-77.41490362558692, 34.61980033675697], [-77.41476615460647, 34.6198004894047], [-77.41462321773756, 34.61983492556257], [-77.41437197091679, 34.619910506507736], [-77.41406125170185, 34.62007001404665], [-77.41401876408895, 34.62012026495896], [-77.41397782004681, 34.620219326852165], [-77.41390408007605, 34.620172116997985], [-77.41358362724067, 34.62029347100486], [-77.41333736282192, 34.62017451589999], [-77.41324249892585, 34.62013101476261], [-77.41318939151674, 34.620105932777946], [-77.41307027079694, 34.620084776343866], [-77.41268614115694, 34.619961366942285], [-77.41240095308606, 34.61991464941441], [-77.41205709272094, 34.61988051570809], [-77.41161253590079, 34.61984990536797], [-77.41138942126004, 34.6198468486375], [-77.41098623133429, 34.619839334941474], [-77.4108241264069, 34.619836385952624], [-77.41061661392706, 34.619941604119134], [-77.4100357343379, 34.61996474308813], [-77.40984353274408, 34.62003669025634], [-77.40964153202435, 34.61998476649407], [-77.40953936507445, 34.61998360935972], [-77.40956820935767, 34.61986940765408], [-77.40958888654, 34.61949848486652], [-77.40959879476921, 34.61939445934668], [-77.40961525375583, 34.61901346027702], [-77.40965344679621, 34.61859637926658], [-77.40965255054418, 34.6185834993865], [-77.40965072811615, 34.61857367840509], [-77.40959129973314, 34.61816776051086], [-77.40951430981207, 34.61789105684056], [-77.40945077513106, 34.61755831015506], [-77.40938082588967, 34.61734898157584], [-77.40936707450294, 34.617221652420895], [-77.4092868871278, 34.61693796130859], [-77.40928345414596, 34.61689917083206], [-77.4092469749833, 34.61685362691827], [-77.40898414847571, 34.616840162061614], [-77.40856256359197, 34.61672991859777], [-77.40845857798048, 34.61668898845072], [-77.40770195368593, 34.61677631752053], [-77.40767020641414, 34.61676958502181], [-77.40764987588427, 34.61677153716952], [-77.40756801264962, 34.616761453276794], [-77.40703772181546, 34.61667005788404], [-77.40688181725204, 34.61665970878781], [-77.4067025715666, 34.61646176850402], [-77.4066696222687, 34.616270464778516], [-77.40640273936975, 34.61608045869151], [-77.40626337794077, 34.61591746867562], [-77.4060933777982, 34.6158359609849], [-77.4058397525917, 34.615888516343546], [-77.40565126338309, 34.61581594402121], [-77.40530499087663, 34.61559757307259], [-77.40466273419118, 34.615639760323724], [-77.40451662220451, 34.615620866756814], [-77.40436799278594, 34.61568500526122], [-77.40384880234366, 34.61572966497607], [-77.40372825867487, 34.615777330168385], [-77.40361263569203, 34.61575843678748], [-77.40363217014904, 34.615631082455735], [-77.40361722338834, 34.615513655397706], [-77.40347881430027, 34.61507270133295], [-77.40319114916855, 34.614845562204394], [-77.40307717625835, 34.614714090707714], [-77.40293984970364, 34.61471006761989], [-77.40262395906572, 34.61450282024561], [-77.40260273932908, 34.614444401549726], [-77.40248324587344, 34.61409854615483], [-77.40239513087293, 34.61384880362908], [-77.4023126287642, 34.61369858741803], [-77.40215146080216, 34.61361538200036], [-77.40195910573631, 34.613532202970504], [-77.40175728134874, 34.61344149060394], [-77.40165252243571, 34.613369246949], [-77.40150203749096, 34.61324130702795], [-77.40136309988938, 34.61300601774464], [-77.40121694349787, 34.61274036253843], [-77.401161619336, 34.61259091922359], [-77.40096892143377, 34.61244813416643], [-77.40082520095959, 34.612369683460216], [-77.40064819628248, 34.61231952458898], [-77.40057475003279, 34.61231283165411], [-77.40034106457883, 34.61228471996183], [-77.40021043866713, 34.61227140170984], [-77.4001805797785, 34.61226161754666], [-77.40010461912158, 34.6122370090164], [-77.39978640988241, 34.61222912664171], [-77.39959735939267, 34.61217106222837], [-77.39922042487581, 34.61202180281672], [-77.39906561212084, 34.61197138628627], [-77.39899807381683, 34.61195571407609], [-77.39889833426108, 34.61196083042045], [-77.39873866052346, 34.612091295983156], [-77.39879526259892, 34.612301579565795], [-77.39871157309736, 34.61263576294919], [-77.39867070061568, 34.61295024516178], [-77.39861552028954, 34.61337023655194], [-77.39861375156786, 34.613383032622956], [-77.39861251648826, 34.613392516644836], [-77.39860387666172, 34.61340308183165], [-77.39859067266758, 34.61340058376514], [-77.39820970319721, 34.61330528436133], [-77.39807214669948, 34.61318474690308], [-77.39742134952722, 34.61338587811062], [-77.39725720180095, 34.61333093169251], [-77.39702717342064, 34.61338787141334], [-77.39683740695233, 34.61343484518774], [-77.39663299454006, 34.61345361105408], [-77.39643139538938, 34.61349037104937], [-77.39605875053249, 34.61355759679716], [-77.39584463435725, 34.61359218225329], [-77.39560009708546, 34.61365650773501], [-77.39545045211868, 34.613679089699545], [-77.39532889070506, 34.61372587115087], [-77.39517419475314, 34.61375209447127], [-77.39505626853196, 34.61377381823554], [-77.39491289262989, 34.613762363319594], [-77.39481927788876, 34.613760988516574], [-77.39466209550469, 34.613694295425724], [-77.39441777746808, 34.61356362393602], [-77.39433115393865, 34.61350801719107], [-77.39426793092068, 34.61350505519508], [-77.3941200209738, 34.61344724295124], [-77.39407084798506, 34.6134280231687], [-77.39404913395772, 34.61342788745528], [-77.39387376006735, 34.61342165722499], [-77.39362175024493, 34.61352527544295], [-77.3934795733004, 34.613545150232106], [-77.39335949804774, 34.61358690012778], [-77.39314080037525, 34.613747765844714], [-77.39310315759008, 34.61377234590645], [-77.39308537476481, 34.613791896909255], [-77.39297999676708, 34.61398323793176], [-77.39297349272084, 34.61407597884974], [-77.3929594581032, 34.61419848432162], [-77.39297371405637, 34.61431664925729], [-77.39308530666504, 34.61459636781369], [-77.39308759734497, 34.614602109659266], [-77.39308896745064, 34.61460437989171], [-77.39308530523843, 34.614613279820425], [-77.39297203279534, 34.61492383464529], [-77.39269108920574, 34.614988713904594], [-77.39261945393017, 34.61501949548469], [-77.3923743879457, 34.61504852349587], [-77.39229689883528, 34.61505143524807], [-77.39217379159521, 34.615028309450004], [-77.39190271473137, 34.615044012518766], [-77.39171904683712, 34.61499973577763], [-77.39150854356858, 34.61491001030794], [-77.39125268214856, 34.615018144296656], [-77.39111434185818, 34.61507133873204], [-77.39099308727057, 34.615037179114175], [-77.39048068130244, 34.61514709427939], [-77.39032595862551, 34.615179952845786], [-77.39002529368307, 34.61536991764501], [-77.389887837338, 34.61544320140832], [-77.3898338286343, 34.61549827484406], [-77.38953750460064, 34.615830805705464], [-77.38947251369719, 34.61590494191221], [-77.3894660244993, 34.61597586704361], [-77.38946479204907, 34.61605433004865], [-77.38944530492661, 34.61640342199199], [-77.38953172446756, 34.61680943872789], [-77.38953206996892, 34.61681548194294], [-77.38953196967437, 34.616821323658165], [-77.38953736445046, 34.616946111060834], [-77.38954888092168, 34.617225185009104], [-77.38954996042702, 34.617237470859315], [-77.38958487678067, 34.617283655755635], [-77.38971189666576, 34.617450646615204], [-77.38978135632784, 34.61746697293383], [-77.38993149365471, 34.61748707965482], [-77.39006992008927, 34.61743799440462], [-77.390168098017, 34.61740318104209], [-77.39032572354583, 34.61720056819142], [-77.3903987427089, 34.617115106231076], [-77.39051751017325, 34.61687993944514], [-77.39069348297514, 34.616648045022664], [-77.39071998366224, 34.61661756476121], [-77.39078520383723, 34.61663482139708], [-77.39101321188909, 34.61671068193818], [-77.39111416754545, 34.61669890100412], [-77.39119772505356, 34.61666533878379], [-77.39170635350646, 34.6167133298631], [-77.39190255004681, 34.61673051816517], [-77.39221795538697, 34.61676796344565], [-77.39229673884496, 34.61677409353628], [-77.39234967247714, 34.61677681418961], [-77.39248430913743, 34.61681441445192], [-77.3926909236077, 34.61686775109613], [-77.3928841071704, 34.616973257497555], [-77.39308509997979, 34.617072833918726], [-77.39320322636053, 34.6171353240521], [-77.39337151983334, 34.61722712291311], [-77.39347927608117, 34.61730629778726], [-77.39385539448499, 34.61748531058914], [-77.39387345768364, 34.61749288133225], [-77.39390577511585, 34.61749339782443], [-77.39426765458651, 34.617481191433654], [-77.39453799862618, 34.61750081657653], [-77.39466184528344, 34.617562882867986], [-77.39482974650883, 34.61750618706065], [-77.39488248439422, 34.617504681175504], [-77.39504765284049, 34.617709473670075], [-77.39505298210776, 34.617717730957644], [-77.39505232680881, 34.617721816329045], [-77.39485734573114, 34.618381131230976], [-77.39474756485325, 34.61861091473039], [-77.39450420367297, 34.61890088339837], [-77.39426754791853, 34.61906149916129], [-77.39402811104472, 34.61930593639542], [-77.39384234542521, 34.61959058736836], [-77.39403295471567, 34.61981571051099], [-77.39402569704279, 34.619988719761714], [-77.39407074070809, 34.620194910755544], [-77.394070311189, 34.620406856591295], [-77.39426744850003, 34.620558803407974], [-77.39463169485902, 34.620782734137926], [-77.39466164491644, 34.620788711858644], [-77.39471507674193, 34.6207960006646], [-77.39505585250097, 34.6208584985231], [-77.39525552470295, 34.62087003962601], [-77.39582734365982, 34.621002630163474], [-77.39583687589189, 34.62100921785032], [-77.39584426817981, 34.62102434027223], [-77.39604567936104, 34.62160333621482], [-77.39613528317268, 34.62180736417585], [-77.39637392193578, 34.62205160485504], [-77.39656627384294, 34.62216978186083], [-77.39660156694993, 34.622198168227634], [-77.39663264957217, 34.622204786903716], [-77.39691420376964, 34.622240941483454], [-77.39721589662688, 34.622279681198144], [-77.39742108280169, 34.62229295368303], [-77.39755223236105, 34.622310911434454], [-77.39774553734779, 34.62242428136055], [-77.39781529659372, 34.62248699669929], [-77.39794821466663, 34.62267646554886], [-77.39820950839963, 34.62290966064803], [-77.39833749534876, 34.6230502054435], [-77.39859441610244, 34.62315099431502], [-77.39873586980151, 34.62341284499448], [-77.39883243659051, 34.62378756182396], [-77.398795028031, 34.62397120550045], [-77.39876234748938, 34.62422964509243], [-77.39877020863513, 34.62542782384567], [-77.39856064626785, 34.62570329917718], [-77.39742098063459, 34.62634799716238], [-77.39712212795436, 34.62591076368551], [-77.39704113580032, 34.625513345833895], [-77.39695040603506, 34.62508638582895], [-77.39678369416926, 34.624947654320295], [-77.3966325643652, 34.6246155593972], [-77.39649057835659, 34.62430355569019], [-77.3963804454018, 34.624047891373245], [-77.39631725991859, 34.62390397883738], [-77.39628569935056, 34.62385755195055], [-77.39623836819933, 34.62377605795193], [-77.39609345124754, 34.623511682703594], [-77.39599262858087, 34.62336632486254], [-77.39584417072521, 34.62315228776871], [-77.39582476848705, 34.62312585770018], [-77.39563951573842, 34.6229484208392], [-77.39526414517005, 34.622782130683404], [-77.39515260960158, 34.622693898279], [-77.39505575036821, 34.62269902773516], [-77.3949463814998, 34.622710164368954], [-77.394389263291, 34.622776939196555], [-77.39426730426285, 34.6227760682972], [-77.39402607260477, 34.62270084891267], [-77.39377032951849, 34.622683634005384], [-77.39347887936064, 34.62254237383883], [-77.39327345928658, 34.622441276827445], [-77.39319383880975, 34.62223151592427], [-77.39294132110291, 34.621997775638505], [-77.39269051386769, 34.62164816967322], [-77.39255808633885, 34.62161666840905], [-77.39249145870713, 34.62148364848514], [-77.39246439905072, 34.621243986807514], [-77.39238300954624, 34.62098138973916], [-77.39228876408188, 34.62066373368059], [-77.39221788422314, 34.62033396263631], [-77.39220838935923, 34.62025075327559], [-77.3920717535101, 34.62002845899332], [-77.39197595565119, 34.61985969594761], [-77.39190225885973, 34.61976646854391], [-77.39166049796903, 34.6193164676864], [-77.39151392517189, 34.619077172026245], [-77.39150812106391, 34.61907006666709], [-77.39133775892788, 34.61886150952926], [-77.3912784753428, 34.61886376000458], [-77.39111393619709, 34.618887220758495], [-77.39093969170044, 34.61892305458869], [-77.39089643786095, 34.618931949833765], [-77.39071970699939, 34.61912382520068], [-77.3906719116164, 34.619198566602286], [-77.39068665548164, 34.619585466682935], [-77.39069047167104, 34.61965188411692], [-77.39087289724044, 34.620018727552875], [-77.39091239089686, 34.62022994930733], [-77.39096405509295, 34.62069350275145], [-77.39094086430347, 34.62085806630498], [-77.39111366543507, 34.6214914397523], [-77.39128874100348, 34.6214684969553], [-77.39150787615816, 34.62153985755413], [-77.39162727322653, 34.62160824419383], [-77.39176210836979, 34.621739545182606], [-77.39156530284431, 34.622103654987626], [-77.39150781826785, 34.62213021824684], [-77.39138731433505, 34.62219718266668], [-77.39131069881975, 34.6222318444203], [-77.39114630359423, 34.62210215506267], [-77.39115764151501, 34.62205309634901], [-77.39111361534222, 34.62197810798345], [-77.3910623133412, 34.62174497239829], [-77.39104349950034, 34.621692407221026], [-77.39032524336717, 34.621409884079064], [-77.39000233831767, 34.621494748195104], [-77.38993101861469, 34.62148947315777], [-77.38963922429976, 34.6217845045211], [-77.38953675637293, 34.62187048254746], [-77.3895152168599, 34.62188953175067], [-77.38950824603116, 34.62191373196043], [-77.38951416214553, 34.62193720399469], [-77.38953673714407, 34.6220287658877], [-77.38965262099948, 34.622617173439124], [-77.38967916089432, 34.62273822954429], [-77.38986658014949, 34.623066579464236], [-77.38990334493435, 34.62313048020409], [-77.38990564569728, 34.62315726479785], [-77.39011195107358, 34.623524975742384], [-77.39002481808403, 34.62386078885328], [-77.39032498214058, 34.623747578092306], [-77.3905238401428, 34.623890166648664], [-77.39045896661672, 34.62417973915973], [-77.3905364292747, 34.62431291984121], [-77.39099199106569, 34.62496572496672], [-77.39105165510381, 34.625087781064266], [-77.39110167400632, 34.62509308971232], [-77.39111329820129, 34.62510069686526], [-77.39121678310737, 34.62517543057397], [-77.39200185933008, 34.625692073350166], [-77.39208990940041, 34.625787235540834], [-77.39210145034872, 34.62600070910234], [-77.39212838350359, 34.62663082509235], [-77.39174484258051, 34.627366487631136], [-77.39171541075922, 34.62753950309659], [-77.39169279790204, 34.627767540806495], [-77.391802204555, 34.62837612614608], [-77.39176016266889, 34.62907921255075], [-77.39111278055898, 34.6303646829678], [-77.39060210773818, 34.629099197800734], [-77.39048249282204, 34.6285663767176], [-77.3898302682887, 34.62834347921192], [-77.38961427437093, 34.62784239808837], [-77.38959518959284, 34.62778146036308], [-77.38958662109243, 34.627051617567545], [-77.38959543574069, 34.62699597798502], [-77.38960620741396, 34.62691897973255], [-77.38967900788079, 34.62628856150391], [-77.38967927514045, 34.62613475674987], [-77.38965924607018, 34.626005194661396], [-77.38955369909901, 34.625322417117886], [-77.38956672553329, 34.62530184521087], [-77.38956085723746, 34.625276293903525], [-77.38953635240739, 34.62522307137379], [-77.38938246938685, 34.62490383791879], [-77.38953643829396, 34.62450459151167], [-77.38956813808738, 34.62448664261086], [-77.38963387206329, 34.62444302983657], [-77.38958902558902, 34.624392874699105], [-77.38953644577101, 34.6244421760033], [-77.38919443180404, 34.624025629306274], [-77.38914226784522, 34.624025740300205], [-77.3890668905343, 34.624019013757945], [-77.38894515497363, 34.62401699941283], [-77.38878566626009, 34.62410019827379], [-77.38874802953117, 34.624105474461906], [-77.38870988369605, 34.62415165453488], [-77.38854473696503, 34.6243811280535], [-77.3882765488398, 34.62463868360848], [-77.3880657630539, 34.62478352947705], [-77.38795946561868, 34.62487647646154], [-77.38765346929424, 34.625153060768085], [-77.38761903061776, 34.62521601325189], [-77.38746070226986, 34.625605411403846], [-77.38740723357955, 34.62586768213908], [-77.38717082416419, 34.626076023081964], [-77.38681308486969, 34.6261626381767], [-77.38638233079197, 34.62618643158109], [-77.38600828116107, 34.626217559772186], [-77.3861056908369, 34.62580070545744], [-77.3861820604333, 34.62557391778862], [-77.38638249208759, 34.625157144864275], [-77.3864447635708, 34.62496973626876], [-77.38650575301729, 34.62489391495896], [-77.38680452947155, 34.62445611472507], [-77.38683170800385, 34.62442236976139], [-77.3869386879731, 34.624232676573634], [-77.38710115720598, 34.62395896731311], [-77.38703910994454, 34.623825700760094], [-77.38690052177105, 34.62343027905466], [-77.38673510991745, 34.62316259246697], [-77.38657789046579, 34.62297518552538], [-77.38659945787818, 34.62256623654594], [-77.38695638151128, 34.62228156738935], [-77.38710481668811, 34.62218846276829], [-77.38717140785104, 34.62214505761476], [-77.38751362732614, 34.62177668215351], [-77.38753933393134, 34.621744596657344], [-77.38756569336509, 34.62169003834728], [-77.3877450755734, 34.6213187542789], [-77.38772224199208, 34.62106598238769], [-77.38775137641468, 34.62069345421449], [-77.38762223916662, 34.62048732556654], [-77.38740252417456, 34.62027038562643], [-77.38717168243976, 34.62032165814911], [-77.38700628369608, 34.62039798586209], [-77.38641372776503, 34.62066151562535], [-77.38639278509356, 34.62067485302265], [-77.38638320350378, 34.62067761623813], [-77.38637038930202, 34.62068156224383], [-77.38610324872336, 34.62082934686205], [-77.38598894974568, 34.62092661905775], [-77.38585696361964, 34.621024195753435], [-77.3855946679725, 34.62132697658261], [-77.38539567425877, 34.62144308233956], [-77.38520041013865, 34.62156761849742], [-77.3851306073014, 34.62169557641134], [-77.38497742351893, 34.62190212852528], [-77.38480609784689, 34.622100688328196], [-77.3847758308622, 34.62213868155843], [-77.38472513897216, 34.62217857647568], [-77.38452627528956, 34.62233048298895], [-77.38441182653246, 34.62238272897421], [-77.38420736495578, 34.6224733745011], [-77.38401757454484, 34.62254728185926], [-77.38389090913297, 34.62258695572231], [-77.38362332597995, 34.62268558125208], [-77.38348204959203, 34.62278228133739], [-77.38334567118238, 34.62292752410452], [-77.38322901034346, 34.623158264817555], [-77.38290496910157, 34.623365633038986], [-77.38278332219147, 34.623362911195635], [-77.3824405255941, 34.62332637477236], [-77.38210526320614, 34.62346876941442], [-77.38204626724217, 34.62347986671955], [-77.38197475925035, 34.623501046064824], [-77.38165203083511, 34.623524587979816], [-77.38160998620299, 34.62352188049438], [-77.38156475893958, 34.623483116446884], [-77.38141745225803, 34.623332451848405], [-77.38113444011333, 34.62312055451942], [-77.3808636940529, 34.62300248544432], [-77.38073176122408, 34.62303649523799], [-77.38018932414458, 34.6231338335673], [-77.38007520925986, 34.6231526390266], [-77.3799812779958, 34.62318554778359], [-77.37993204779711, 34.62329379237541], [-77.37962835138167, 34.62370556924087], [-77.37953873389698, 34.62392801504471], [-77.37948361341059, 34.62420752394161], [-77.37950019744935, 34.62439950962766], [-77.37949294289147, 34.6244285626447], [-77.37947658070357, 34.624428338335605], [-77.37928646474592, 34.62435693313059], [-77.37920108132278, 34.624340183819804], [-77.37852809229148, 34.62437759063284], [-77.37849799701644, 34.624375543330764], [-77.37846617813298, 34.62438836199375], [-77.37788588454, 34.62462768208294], [-77.37770943403058, 34.624755723216495], [-77.37736961638166, 34.624995294746604], [-77.37731512575195, 34.625035709824566], [-77.37710902825978, 34.62519606551037], [-77.37692080776606, 34.625341852952495], [-77.37686865323793, 34.62537719123632], [-77.3767907789179, 34.6254445645518], [-77.37652648404969, 34.62565826807101], [-77.37638041454143, 34.625770963702465], [-77.3761321645661, 34.625948754888576], [-77.37610497801009, 34.6259679082809], [-77.37587975196946, 34.62615314555304], [-77.37555524520104, 34.62647164863834], [-77.37543743208427, 34.6265897730369], [-77.37534347269657, 34.62668441120935], [-77.37499795935796, 34.62702906028686], [-77.37494911625764, 34.62707016257238], [-77.37479461710682, 34.627172107002835], [-77.37455479057613, 34.62734053195194], [-77.37444751091897, 34.62736479113624], [-77.37388745546376, 34.62756096998163], [-77.37382501779446, 34.62763329388147], [-77.37394689816267, 34.627976969089005], [-77.37402379504412, 34.62811290485932], [-77.37401201178604, 34.62839215092493], [-77.37410832227238, 34.62874706191389], [-77.37412458850936, 34.62880049826457], [-77.37412555849703, 34.62883754650969], [-77.37416008075854, 34.62887510827433], [-77.37434681029822, 34.62919305419236], [-77.37444420472272, 34.62929748712959], [-77.37455418275289, 34.62938720000109], [-77.37473205203352, 34.62956213193289], [-77.3748414758638, 34.62966147024783], [-77.37494832692256, 34.62977147138611], [-77.3750312818645, 34.629854239786816], [-77.375104435869, 34.62993306063156], [-77.37520784499316, 34.630063172025615], [-77.37534243976974, 34.63027817552255], [-77.37557053896131, 34.63046936249024], [-77.37569308253384, 34.630697400858026], [-77.37570866083355, 34.631089770161246], [-77.3757170814986, 34.63111850548279], [-77.37572139932668, 34.631134100738045], [-77.37573644845988, 34.63117276020218], [-77.37582777534595, 34.631428701204825], [-77.37586850803766, 34.63152125634176], [-77.37595250438827, 34.631700902162976], [-77.37606426742617, 34.63191762212781], [-77.37613046496033, 34.63207178317214], [-77.37620438518017, 34.63224235165052], [-77.37627404214057, 34.63231196903574], [-77.37652464027433, 34.63241640686791], [-77.37671152767923, 34.63247225654246], [-77.37674146836613, 34.63247814906363], [-77.37691889644216, 34.632468866352895], [-77.37712178230939, 34.6324083213733], [-77.37731323143602, 34.63222085566642], [-77.37739445103763, 34.63223805564775], [-77.37736370928684, 34.632155019091826], [-77.3773132667857, 34.632085487932315], [-77.37718235107648, 34.631897607859344], [-77.37709891830178, 34.631768597863555], [-77.37703300074622, 34.631655453466266], [-77.37691917872385, 34.63140767598373], [-77.37690807052293, 34.63138349471036], [-77.3769029136948, 34.63137226879622], [-77.37690483873472, 34.63135653489713], [-77.37691919781147, 34.631336048307226], [-77.37728093551428, 34.63085809606121], [-77.37731358702358, 34.63086136189316], [-77.37733468391076, 34.63086279721158], [-77.37740734363146, 34.63087504983722], [-77.37764407597723, 34.63090961145666], [-77.37770783608954, 34.630913922000914], [-77.37798079568219, 34.63092306970229], [-77.37810209883435, 34.63091397914371], [-77.37824003850089, 34.63090364137605], [-77.37849636883635, 34.63088443088012], [-77.37882173033611, 34.63074554304605], [-77.37889066507748, 34.63074547629057], [-77.3790365714205, 34.630797494861376], [-77.37928492177059, 34.630766774049484], [-77.37948258029465, 34.63078781797962], [-77.37956181022946, 34.630989259225245], [-77.37969392498562, 34.631378761606896], [-77.37969966797274, 34.631393962580695], [-77.37969386813147, 34.631410773089605], [-77.37956302681671, 34.63183820898487], [-77.37939494787308, 34.63198121384147], [-77.3792846056613, 34.63209503926447], [-77.37916940718489, 34.63231947534763], [-77.37920045118453, 34.632649086924715], [-77.37921545038219, 34.63273740495239], [-77.37923507534357, 34.632787736265875], [-77.3792844263538, 34.63285100422981], [-77.3796013143534, 34.63318962477375], [-77.37967861172639, 34.63322257930679], [-77.37993431023914, 34.633333779495], [-77.3800728521786, 34.633367269197294], [-77.38013302913008, 34.6333895399133], [-77.38030806643745, 34.6334291288432], [-77.38071375621429, 34.63352963085712], [-77.38086133753646, 34.63365426753026], [-77.38113675709648, 34.63360630866417], [-77.38158201865268, 34.633318750938734], [-77.38164996672674, 34.633274243204745], [-77.38169448949915, 34.63327733251641], [-77.38293633739747, 34.63336349893266], [-77.38309057040627, 34.634579789431164], [-77.38243822304017, 34.634737054958784], [-77.38165671219507, 34.634925453189084], [-77.38164962335036, 34.63492804803839], [-77.38164488320628, 34.634929686390734], [-77.38094245178232, 34.6349483420678], [-77.38086106101765, 34.63492864874527], [-77.38074686715042, 34.63494120423576], [-77.38062862746257, 34.63508119992632], [-77.38080272251838, 34.635118893340874], [-77.38086101076495, 34.63516084192109], [-77.3811251988385, 34.63557421435462], [-77.38125518681018, 34.63566315011583], [-77.38134246488946, 34.63573349003115], [-77.3814934705635, 34.63580573126127], [-77.38158977438889, 34.63585609481278], [-77.38164942559175, 34.63588497688288], [-77.38173766317948, 34.6358655592155], [-77.38204372860382, 34.63579820579947], [-77.38239627361996, 34.63572062274215], [-77.3824380307436, 34.63571143346802], [-77.3824797057554, 34.63570851479111], [-77.38322676013203, 34.63485809117854], [-77.38341826911535, 34.63488550097285], [-77.38480399044471, 34.63421821486292], [-77.38735888696412, 34.635164445283465], [-77.3879580541566, 34.63535802504502], [-77.38876919772918, 34.63473301593245], [-77.38845246823004, 34.63618455636994], [-77.38686237510397, 34.639277733815334], [-77.38538793179566, 34.64012004381242], [-77.38480300399611, 34.64010382899777], [-77.38442107155657, 34.64004080874375], [-77.38251330557615, 34.639904430196495], [-77.38183727655448, 34.63979869849577], [-77.38164861052697, 34.63986283403371], [-77.38144124896698, 34.63983560644215], [-77.38086001047162, 34.639820720695354], [-77.38053907536333, 34.63968532470004], [-77.38046573767078, 34.639675343593346], [-77.38017404901753, 34.63939231440951], [-77.38011862093701, 34.63934956854208], [-77.38007150872818, 34.639339235051345], [-77.37995839984961, 34.63930158067826], [-77.37958930850424, 34.63914667541146], [-77.37928299027102, 34.638968581282505], [-77.37897318517781, 34.638716173169556], [-77.37873274435667, 34.63849428078501], [-77.37849455405677, 34.63828663107737], [-77.37831665762464, 34.63815320308193], [-77.37800313798553, 34.63800677644025], [-77.37779521103694, 34.63794071636697], [-77.37770605652901, 34.63789872310444], [-77.37735855544132, 34.63772539680948], [-77.3773118113118, 34.63770145301428], [-77.37730063157792, 34.637695440636406], [-77.37693816910986, 34.63775786080036], [-77.37691749706545, 34.637774714557864], [-77.3766786582141, 34.63794041944787], [-77.37620107764431, 34.63818849535291], [-77.37612878290369, 34.638228733697424], [-77.37608907690766, 34.63823970765688], [-77.37534728050252, 34.638381606234205], [-77.37534014385008, 34.638383454426005], [-77.37533348666942, 34.638384108700016], [-77.374969871895, 34.63841776057808], [-77.37494583467344, 34.63842028588361], [-77.37458687739567, 34.63846073000402], [-77.374551529312, 34.6384425224386], [-77.3745053667209, 34.63846083517146], [-77.37417846895187, 34.63855760961101], [-77.37379775586814, 34.63864999813446], [-77.3737628673478, 34.638655256873086], [-77.37371256293596, 34.63867885901587], [-77.37348695975372, 34.63878470896742], [-77.37336851091098, 34.638840159444264], [-77.37318383326055, 34.63892657565009], [-77.3729741183485, 34.63913651217615], [-77.37261789466648, 34.639247926679424], [-77.37257977470851, 34.63926712377212], [-77.37251804933848, 34.63928771935743], [-77.37218540886595, 34.63946376415264], [-77.37203597105173, 34.63955436366156], [-77.37179102239082, 34.63971846363921], [-77.37173995445026, 34.639757858377735], [-77.37169065590125, 34.64008157370525], [-77.37172188226914, 34.640185018653064], [-77.37172969672305, 34.64024973942743], [-77.37179082020411, 34.64034673048347], [-77.37186360221803, 34.6405107494773], [-77.371898500876, 34.64058414691837], [-77.37201102343118, 34.640755266653514], [-77.37218492663847, 34.640985335952045], [-77.37233137746202, 34.64121317367922], [-77.37264040804834, 34.64132643950393], [-77.3727444958537, 34.64155788535084], [-77.37297331036767, 34.641765625549624], [-77.37334339978932, 34.641675887273514], [-77.37339706673374, 34.64167371637328], [-77.3737619428389, 34.64175762265508], [-77.37397304096847, 34.64198366733544], [-77.37406251270377, 34.64229457710016], [-77.37376168301964, 34.64263360449522], [-77.37357904321465, 34.64269289173752], [-77.3736051772438, 34.642884746833275], [-77.37321869204698, 34.643346863166855], [-77.3730787084683, 34.6435600699988], [-77.37298719787572, 34.64381376536029], [-77.37283160724566, 34.644604488021194], [-77.37282652924128, 34.64465878381885], [-77.37283186812098, 34.64467915372519], [-77.37261463891676, 34.645128091433776], [-77.37261290944782, 34.645131279070206], [-77.37261303122557, 34.645139308256816], [-77.37263055277359, 34.64555086529147], [-77.37271297134373, 34.64560533253143], [-77.37289480863933, 34.64572991977217], [-77.3729286704838, 34.64575457323705], [-77.37308629285484, 34.64586933186198], [-77.3731467433901, 34.645901888112604], [-77.37333087599885, 34.646014797762646], [-77.37372526810388, 34.64616426883774], [-77.3737869533089, 34.646168943861554], [-77.37382009964053, 34.64619434499772], [-77.37392645422302, 34.646216665989904], [-77.3743504662692, 34.646292362359205], [-77.37445194060619, 34.646291384357454], [-77.37462785822385, 34.646339344134674], [-77.37479302639431, 34.646395265443175], [-77.374868533885, 34.64641475275659], [-77.37512879415158, 34.64647273276778], [-77.37540101237809, 34.64650858548832], [-77.37545677664893, 34.646511543019706], [-77.37554396655061, 34.646527021014016], [-77.37577640167801, 34.646508849719545], [-77.37593509584265, 34.64659923698792], [-77.37641603871917, 34.64667360652029], [-77.3764479329121, 34.646663747087], [-77.37647952423394, 34.64666938759718], [-77.37658088015954, 34.64669558871405], [-77.37698743589742, 34.64681190502648], [-77.37712751600293, 34.64685860286107], [-77.3774941408433, 34.646956813473096], [-77.3778126914423, 34.64708120524705], [-77.37828979936432, 34.64730453357092], [-77.37842905041217, 34.64740221552485], [-77.37853731807961, 34.64749963696519], [-77.37883060253523, 34.6475921456088], [-77.3792809691773, 34.64777858377821], [-77.37944714631945, 34.647809348377095], [-77.3799268227196, 34.64791917713365], [-77.38002352644085, 34.64795486882678], [-77.38006960517116, 34.648002984777996], [-77.38057596123915, 34.648129607117916], [-77.38085827214354, 34.648097255667196], [-77.38119157457923, 34.648095837383366], [-77.38128740737191, 34.64811029084714], [-77.38164692100256, 34.64829056615559], [-77.3818252078012, 34.648302889740194], [-77.3819213083735, 34.64848099770205], [-77.38187033723487, 34.648728967947974], [-77.38193555367292, 34.64932807237364], [-77.38208316883166, 34.6496859654795], [-77.3824352847341, 34.65002438057484], [-77.38247638990617, 34.650055027245735], [-77.38257683734967, 34.65008481700873], [-77.38299926065599, 34.65026585962935], [-77.38322387302712, 34.650682175983135], [-77.38349019463787, 34.65080236215957], [-77.38341458616947, 34.651018640446566], [-77.38350533120975, 34.651346167231665], [-77.38391468437563, 34.65159033506628], [-77.38399722684737, 34.6515948121975], [-77.38401243112278, 34.6515956417336], [-77.38474552329633, 34.651530530453634], [-77.38480114463673, 34.651630712626734], [-77.38534866823085, 34.652232861074545], [-77.38547182181208, 34.65234208487284], [-77.38558970337262, 34.65271938196093], [-77.38587053808654, 34.653006798580826], [-77.3859839577929, 34.65341503142896], [-77.38637829255306, 34.65374162732434], [-77.38699153593072, 34.653883316588484], [-77.38765725049424, 34.6541262830215], [-77.38795569986706, 34.65432905913756], [-77.38805635081319, 34.65439010008564], [-77.3888564386633, 34.65500328819191], [-77.3895330659227, 34.65556072940929], [-77.38984138678758, 34.65583112728251], [-77.39008592252404, 34.65689883653857], [-77.39111046366807, 34.65698354971744], [-77.39138126894963, 34.65730746907114], [-77.39222025285814, 34.6576900408509], [-77.39289779003786, 34.6578868635959], [-77.3937452869273, 34.658295081629035], [-77.39444908613501, 34.65862414835415], [-77.39465611136906, 34.65904749625484], [-77.39364200415876, 34.65980126457561], [-77.39350967055617, 34.659885105764225], [-77.39346493337104, 34.65990550413583], [-77.39342268500059, 34.65990869935772], [-77.39274935152463, 34.660231003077364], [-77.39247321881551, 34.66026156955218], [-77.39202721274883, 34.66030256253113], [-77.39186751818275, 34.6602843573411], [-77.39152103232189, 34.660306991217645], [-77.39095735024526, 34.66029132416871], [-77.39075589156897, 34.66026791210069], [-77.39055790266707, 34.660259036939095], [-77.38973757828543, 34.66038035852327], [-77.38950650052702, 34.66045008886182], [-77.38901899310412, 34.66065601596012], [-77.38883144813333, 34.660714933728975], [-77.38869014890507, 34.660728169860256], [-77.38820357564067, 34.66081695623071], [-77.38757056393379, 34.66098326013367], [-77.38755696610001, 34.66098362760567], [-77.38754418463063, 34.660988656415206], [-77.38710502355113, 34.66134190295912], [-77.3867916114377, 34.6615888607095], [-77.38678673495735, 34.66159345746477], [-77.38677617435526, 34.66161326848967], [-77.38654380505864, 34.662016206646456], [-77.38647635151274, 34.66211965096079], [-77.386494883765, 34.6622062457275], [-77.3866012173938, 34.6622169362189], [-77.38683118991295, 34.66227089674723], [-77.38689017332949, 34.66229603767002], [-77.3871466923217, 34.66239927208793], [-77.38722842899895, 34.66242976556451], [-77.38738941595531, 34.66248139257866], [-77.38758500052002, 34.66254938344342], [-77.38768968307652, 34.66259018525878], [-77.3879167844811, 34.66265251214443], [-77.38794861461956, 34.66266357591119], [-77.38795902315783, 34.66269308080469], [-77.38804922223625, 34.66271229915141], [-77.3882270213702, 34.662800607935374], [-77.38827630579348, 34.66280544161104], [-77.38835590328551, 34.66283577551042], [-77.38830573029945, 34.66293961629829], [-77.38816424622411, 34.66301721801249], [-77.38801190078581, 34.66300913412591], [-77.38784929234819, 34.66307171052666], [-77.38770847685282, 34.66304836317957], [-77.38756845623801, 34.66300847757421], [-77.38709216494416, 34.66314021843206], [-77.38693523234778, 34.6631288949261], [-77.38683847457807, 34.66312448213269], [-77.38663576006257, 34.66312996268414], [-77.38634208899703, 34.663113527866585], [-77.38634133477103, 34.66311361574074], [-77.38633990209696, 34.6631132351724], [-77.38609847756152, 34.66290592656378], [-77.38608726447788, 34.66288769430392], [-77.38594046829289, 34.66268080172903], [-77.38594423800185, 34.66263043851442], [-77.38589726059647, 34.66258140930307], [-77.38558476391107, 34.662513051669826], [-77.38530834477633, 34.662548948232086], [-77.38477054009658, 34.66235167521617], [-77.38476713025133, 34.662351916020306], [-77.38476076825815, 34.662350138488705], [-77.38422393547917, 34.66216171891966], [-77.38406142186959, 34.66210932818218], [-77.38395015605491, 34.66207415131432], [-77.3837642450523, 34.66210500448004], [-77.38355739897194, 34.66239704583961], [-77.38349002416452, 34.66250003086448], [-77.38345908232569, 34.66257332098995], [-77.38318967393543, 34.663059324015734], [-77.38301898818028, 34.66335869172605], [-77.3828933372277, 34.66358749960955], [-77.38250127304053, 34.66397633392711], [-77.3823883138915, 34.66407587541099], [-77.38232403569715, 34.66415322925672], [-77.38205866739627, 34.66442178767157], [-77.38204296987631, 34.66445273183417], [-77.38192877386936, 34.664695010801225], [-77.38198220479904, 34.66489382984729], [-77.38203825181317, 34.66492364916958], [-77.38220818354202, 34.6649873876743], [-77.38230253119038, 34.66504138464359], [-77.38240345881867, 34.665117102860755], [-77.38258287528353, 34.665219736933054], [-77.3827182486179, 34.665291929479466], [-77.3828719511016, 34.665391362636086], [-77.38310998356056, 34.66550729503121], [-77.38322754755218, 34.665599125406494], [-77.38348495122877, 34.66570777453771], [-77.38349535894312, 34.66570732204234], [-77.3835500033664, 34.66574350948051], [-77.38374613697745, 34.665874281543935], [-77.38376425931716, 34.665886925510115], [-77.38378697324623, 34.66590154774119], [-77.38400257463489, 34.66602171930234], [-77.3840597679228, 34.6660535974781], [-77.38413763510346, 34.66609699857712], [-77.38426013737683, 34.66616527815815], [-77.3843696113542, 34.66620922759558], [-77.38465423407983, 34.66626961519963], [-77.38474859778, 34.666311597208676], [-77.38481120871134, 34.666328391634586], [-77.38491955793762, 34.66631919206138], [-77.38541128817099, 34.66632242975242], [-77.38563535702633, 34.666315489174565], [-77.38576888748948, 34.66631426873483], [-77.38601210938782, 34.66631390498751], [-77.38627769053727, 34.66631663485658], [-77.3863094872487, 34.666320105298475], [-77.38636980999351, 34.66632831294497], [-77.38659790207643, 34.6663572282294], [-77.38672410881199, 34.66636705530604], [-77.38714572294278, 34.6663778731465], [-77.38719335969098, 34.6663672033719], [-77.38723392391607, 34.66636863800013], [-77.38776482753035, 34.666328953568005], [-77.38780043291045, 34.66632654454359], [-77.38780351276594, 34.666326470086354], [-77.38780791032832, 34.66632664854445], [-77.38839919225123, 34.66633567150751], [-77.38887415009705, 34.666288029852055], [-77.3890083177011, 34.66629847369106], [-77.38913921468102, 34.666296730822054], [-77.38935109759663, 34.66625714126887], [-77.38968537467309, 34.66617312155996], [-77.38993059355064, 34.666095217806436], [-77.390258911594, 34.66609443395897], [-77.39035051972212, 34.66608886425596], [-77.39039248124428, 34.66610282236152], [-77.39090366009992, 34.66627185070826], [-77.39093289050061, 34.66629024225385], [-77.39096740247885, 34.66629544798427], [-77.39147324766753, 34.6664806107807], [-77.39151172100627, 34.66650384399199], [-77.3915436584222, 34.666490251356244], [-77.39159977672043, 34.66648546889461], [-77.39199995643278, 34.66648869660528], [-77.39215411744814, 34.666498083134734], [-77.39236855926002, 34.666553523764264], [-77.39245531688042, 34.666564219659136], [-77.3925191051116, 34.66659001562782], [-77.3927411950789, 34.666683231636306], [-77.3929419566128, 34.66676069001913], [-77.39312003642178, 34.66682519087862], [-77.39332103194612, 34.66689337524513], [-77.39352958351363, 34.66696191989995], [-77.39361342231852, 34.66698991877813], [-77.39369392563849, 34.66701609654609], [-77.39390625933694, 34.66708492125924], [-77.39413013235922, 34.667157758555575], [-77.39426401719973, 34.66720077960118], [-77.39449711202388, 34.66725705807069], [-77.39479615476058, 34.66732333684403], [-77.39479814657429, 34.667323772714255], [-77.39480058402283, 34.667324440302494], [-77.39509221893812, 34.667414516510675], [-77.39533500267376, 34.66745687144105], [-77.3954133899122, 34.667411731570084], [-77.39554626766586, 34.667308260992804], [-77.39564804680839, 34.6672208366368], [-77.39585563473067, 34.6669910478504], [-77.39592409901948, 34.666924261005285], [-77.39605302053151, 34.666926540286624], [-77.39655911692498, 34.666774421165954], [-77.39695894418064, 34.667243744753655], [-77.3969995599328, 34.6672998947373], [-77.39702937006646, 34.66736283738794], [-77.39712425296656, 34.66786078258826], [-77.39715317308787, 34.66812845662898], [-77.39715564705537, 34.6681513535832], [-77.39716091336197, 34.66820009469337], [-77.39718254375063, 34.66844034902949], [-77.39713116375447, 34.66858395380082], [-77.39728400646715, 34.66869553888809], [-77.39731377644169, 34.668730945029274], [-77.39754011720174, 34.66882068963191], [-77.39756749885147, 34.66882282229055], [-77.39762134945134, 34.6688258147938], [-77.39788078431822, 34.66884726625251], [-77.39813013219185, 34.669037924409395], [-77.3985297256127, 34.66881893074248], [-77.39857551484258, 34.66932046402574], [-77.39874288734484, 34.6695458117639], [-77.39915113130752, 34.669973009013404], [-77.3994407219246, 34.670097817175275], [-77.39962765233264, 34.6704147244281], [-77.39974442716485, 34.670618181049896], [-77.39983351332354, 34.670953762818726], [-77.39985358232711, 34.67101897351773], [-77.39988466636171, 34.671063853525325], [-77.40002031898746, 34.671395747331715], [-77.40016052825726, 34.671719578465456], [-77.40021580930973, 34.67184596715708], [-77.4003525756248, 34.67214980560635], [-77.40042403375489, 34.67237097495773], [-77.40059100331064, 34.67276271670832], [-77.40064747010659, 34.67291944900836], [-77.40068496441577, 34.673021468054195], [-77.40073736141211, 34.673304472104874], [-77.40074200378146, 34.67332100960017], [-77.40074301389781, 34.673325921118206], [-77.40079081707799, 34.67361767045344], [-77.40083402300664, 34.67373428467108], [-77.40089723707162, 34.67391755623841], [-77.40096659773681, 34.674125311108455], [-77.4010697565166, 34.67427446388541], [-77.40111425288052, 34.674510047716524], [-77.40111926874107, 34.67467768604], [-77.40110849810429, 34.674847171051915], [-77.40091683569136, 34.67509474202837], [-77.40081631309778, 34.675304033082114], [-77.40071221192017, 34.67550821919034], [-77.40069845215054, 34.67557613247946], [-77.40066782057303, 34.67581119759889], [-77.40066861528135, 34.67581278552652], [-77.4008089572811, 34.67597636525525], [-77.40091229599206, 34.67607759424784], [-77.40113422773445, 34.67628701902688], [-77.40116385315508, 34.67631521869359], [-77.401258988351, 34.67640288703167], [-77.40141957639668, 34.67653846488386], [-77.40149807390814, 34.6766609770957], [-77.4014586254456, 34.6770443626838], [-77.40143604618297, 34.67719840770892], [-77.4014095963202, 34.67739760225013], [-77.40112703785586, 34.677649384083566], [-77.40108303764855, 34.67809367341897], [-77.40110607028356, 34.67820118783002], [-77.4010440092285, 34.67829600404745], [-77.40072209245318, 34.678946205206465], [-77.40064248472684, 34.67913561665092], [-77.40063328964845, 34.679153982906755], [-77.40061583353518, 34.67918119182816], [-77.40064110184551, 34.67922578120794], [-77.40064515232612, 34.67961528826937], [-77.40068706353642, 34.67973195088122], [-77.40086096044926, 34.67997160248132], [-77.40104060169854, 34.68005877200093], [-77.40127999122795, 34.68017869048131], [-77.40132033436498, 34.680199179166564], [-77.40135021923203, 34.68021386497788], [-77.40159589027246, 34.68035400591641], [-77.40181111461439, 34.6804679554323], [-77.40213116868266, 34.68071832803075], [-77.40237022772203, 34.680880254507244], [-77.40257475193569, 34.68104210199483], [-77.40264784967647, 34.681146864418736], [-77.40283570729459, 34.68122746458836], [-77.40319234044428, 34.681479411075834], [-77.40341568923357, 34.68158400426457], [-77.40375630858486, 34.68174472813209], [-77.4039114050823, 34.6818235693068], [-77.40415720804053, 34.68189298225705], [-77.40434969404804, 34.68190849410814], [-77.40466867169363, 34.6819540353783], [-77.40495971471978, 34.6820148318614], [-77.4051323617814, 34.68199184471138], [-77.40532659875419, 34.68191499653281], [-77.40551056746173, 34.681862348571244], [-77.40566953125955, 34.681776616976], [-77.40586821125274, 34.681699213498966], [-77.40604148434763, 34.68160606417061], [-77.40646378640072, 34.68124684008224], [-77.40651172785871, 34.68125553923468], [-77.40655224239391, 34.68122568994147], [-77.40711723125682, 34.68120322046513], [-77.40738858129791, 34.6811935849132], [-77.40774586152514, 34.68124527808269], [-77.40818710058748, 34.68137904518119], [-77.40830809166255, 34.681516614824915], [-77.40854890702516, 34.68159534465802], [-77.40890401387806, 34.681489605774516], [-77.40869240716964, 34.68116825266075], [-77.40868023250655, 34.681131730467285], [-77.40847806039599, 34.680929707311954], [-77.40841590759224, 34.68083725632603], [-77.40836832692207, 34.68074301337086], [-77.40833657290837, 34.68049982263868], [-77.40831462281585, 34.68043316777665], [-77.40819533823039, 34.680123348554886], [-77.40811137385856, 34.67998316967303], [-77.40793494946709, 34.679842816381], [-77.40784909142637, 34.67978249007798], [-77.40778393006751, 34.67976187133662], [-77.40756545083187, 34.6796555622634], [-77.40722416054862, 34.679428219126], [-77.40701438121923, 34.679345737730166], [-77.40687211448241, 34.679249562311675], [-77.40658308923258, 34.67899996684779], [-77.40679506004606, 34.678726233877846], [-77.40674225592264, 34.678411058487434], [-77.40698493264861, 34.67802235107061], [-77.40683457211273, 34.67775401243995], [-77.40668383753722, 34.677542753350835], [-77.4062967794137, 34.67739839455329], [-77.40616313070932, 34.67731363278446], [-77.406025094089, 34.67723022075002], [-77.40584908127308, 34.6770656754679], [-77.40580112845672, 34.67701830709399], [-77.40581316278386, 34.676855731636664], [-77.40578311771696, 34.67657948493682], [-77.40581859040086, 34.67649587141716], [-77.40582273884473, 34.676387297300025], [-77.40595042800247, 34.67606335537677], [-77.40590047940236, 34.67596540100944], [-77.40587279157705, 34.675720964487255], [-77.40582018029201, 34.675378162401856], [-77.4060265487795, 34.67513892915328], [-77.4056892343379, 34.67507116324445], [-77.40514052372183, 34.67461586957626], [-77.40479499054433, 34.67390105567727], [-77.40477810304367, 34.67387439117521], [-77.40519339451663, 34.6731129419898], [-77.40535410770555, 34.672978494173975], [-77.40547660356401, 34.67282808419398], [-77.40553965343086, 34.67266403482906], [-77.40538431499706, 34.67242993356378], [-77.40526147542182, 34.67233374726635], [-77.40521358523388, 34.67228864605559], [-77.40496248024988, 34.6720121433333], [-77.40475350502395, 34.67166484397901], [-77.40474874525994, 34.671654973607595], [-77.40473953404295, 34.67164510111429], [-77.40445119515583, 34.671332767194826], [-77.40426857508302, 34.67112686318671], [-77.40396660506323, 34.671105668751395], [-77.40363673913603, 34.671096120228], [-77.40349552181058, 34.67108311450239], [-77.40317127103215, 34.671096127613914], [-77.40305804942788, 34.67111555354717], [-77.40299385367268, 34.67110352411941], [-77.40293594823541, 34.67107219873799], [-77.40285535031839, 34.67098553563757], [-77.4025910941422, 34.670769724730064], [-77.4024823428581, 34.67065735603357], [-77.40224749450572, 34.67046672668561], [-77.40194473577539, 34.67030130017368], [-77.40180041535552, 34.67020689527354], [-77.40168038224137, 34.6701079145339], [-77.40158650017861, 34.66998220297869], [-77.40171813173123, 34.669794892512186], [-77.40176247599491, 34.66974385269973], [-77.40182115259111, 34.66975191829136], [-77.40208410628148, 34.66982013312672], [-77.40230648438353, 34.66988575835841], [-77.40245986663912, 34.669931809412574], [-77.40267423382036, 34.669994850283544], [-77.4028646667621, 34.67005085194823], [-77.40318532681894, 34.67007551170988], [-77.40329043975649, 34.67007953451242], [-77.40333426811961, 34.67007099528943], [-77.40340049830716, 34.670058091233884], [-77.40395071679004, 34.670012053133156], [-77.40420891429308, 34.670005644150486], [-77.40440460332388, 34.670013207973156], [-77.40458904873928, 34.67002033709952], [-77.40473675461902, 34.6701210752942], [-77.40491771059776, 34.67024548786562], [-77.4051247059103, 34.670383143620825], [-77.40550007061584, 34.67062178750144], [-77.40566624282043, 34.67072566151546], [-77.40577584369183, 34.67078016384743], [-77.40592323798595, 34.670941173789345], [-77.40611173587139, 34.67108637216058], [-77.40618371710357, 34.67115128088265], [-77.4063892875246, 34.67132847467826], [-77.40645787762897, 34.671388304292776], [-77.40648739918062, 34.67141821418059], [-77.40668591488182, 34.67162966758539], [-77.40683961825854, 34.67167538480686], [-77.40706055845418, 34.671678547037224], [-77.40731138756975, 34.67147856844909], [-77.40735806088547, 34.67144340039185], [-77.40736599857301, 34.671430075009894], [-77.40740510814742, 34.67135874684192], [-77.40758350970385, 34.671037743766654], [-77.4076138014454, 34.670973785120594], [-77.40766503465132, 34.67088469068258], [-77.40780546706984, 34.67065269105953], [-77.40789528682308, 34.67051318152095], [-77.40804420765463, 34.670295098490826], [-77.40820938086222, 34.67006399224351], [-77.40848862053463, 34.66964840843629], [-77.40850890921378, 34.66960970547032], [-77.40852141636636, 34.669579480310524], [-77.40864333532235, 34.66909763034145], [-77.40867361329258, 34.6686785457879], [-77.40868244594395, 34.66855219317947], [-77.40836173496851, 34.66805519237403], [-77.4078789392694, 34.66811741579857], [-77.40793002164448, 34.66733344648194], [-77.40729118426043, 34.6675666421439], [-77.40740361561711, 34.668104568081404], [-77.40714869985253, 34.66808171937791], [-77.40707455818607, 34.66807507374463], [-77.40652040485979, 34.667801915960894], [-77.40651343741827, 34.66780023206827], [-77.40648190269833, 34.667781932494826], [-77.40652414034776, 34.6677632725314], [-77.40722273197423, 34.667454641229035], [-77.40789414446924, 34.6671580112644], [-77.40799353766982, 34.66711409901478], [-77.40866297339338, 34.6668183362865], [-77.40872645916858, 34.66687113580158], [-77.40915992330632, 34.667511321066016], [-77.40918067695718, 34.667574305916354], [-77.40918204205958, 34.667608810127106], [-77.40918830881242, 34.66767785530446], [-77.40922686488796, 34.66790406155905], [-77.40922408347593, 34.668002537076475], [-77.40921023845726, 34.66817780423681], [-77.40906251922624, 34.66851628649077], [-77.40908123062965, 34.6686917746522], [-77.40912215258527, 34.66906597294465], [-77.40891082554045, 34.669191255857044], [-77.40918959415605, 34.66935595161067], [-77.40924617256736, 34.66942619521164], [-77.40940223032393, 34.66952420098796], [-77.40978625097009, 34.66977376206244], [-77.41003804661034, 34.66989464225446], [-77.41068639048072, 34.670128798355464], [-77.410951934275, 34.67017354819722], [-77.4114664377961, 34.669908647986176], [-77.41169003097149, 34.66983721851793], [-77.41183624172854, 34.66976549609228], [-77.41201084673742, 34.669717135575716], [-77.41222733674707, 34.669657174332286], [-77.41247424005061, 34.66934158842581], [-77.4124840377926, 34.669328995175455], [-77.41248857576466, 34.6693252150264], [-77.41249362751104, 34.66931642261591], [-77.4127395498194, 34.668998871899205], [-77.41282785886943, 34.66888484059297], [-77.412998131808, 34.66867377448026], [-77.4130037132699, 34.66866682850243], [-77.41302098321815, 34.66865003042292], [-77.41320601724914, 34.668458072469605], [-77.41326781464917, 34.66836683855535], [-77.41372205782008, 34.668357494753884], [-77.41403577061611, 34.668374006108465], [-77.41422566372833, 34.66843757712297], [-77.41465679826598, 34.66840668720966], [-77.41509931197311, 34.66837056367094], [-77.41562181611869, 34.66845746658], [-77.41556053544018, 34.669125049298486], [-77.41523250283771, 34.66972637882027], [-77.41466174097397, 34.67064350373376], [-77.41466062126676, 34.67064530295473], [-77.4146592600339, 34.67064670271011], [-77.41409260369845, 34.67121231503991], [-77.41379007278786, 34.67145803750098], [-77.41349293751765, 34.67172756191005], [-77.41291349850755, 34.67226950161348], [-77.41290778911416, 34.67227023999878], [-77.4119291745059, 34.67216192751524], [-77.41164883112177, 34.67219249524197], [-77.41132053517504, 34.67203762076788], [-77.41106381457465, 34.67200006147968], [-77.41090616120239, 34.67198463974968], [-77.41044452062187, 34.67192601458837], [-77.4103977859598, 34.67194818642079], [-77.41015805932126, 34.6722570833675], [-77.41008768740535, 34.67239877711545], [-77.40995421489359, 34.672607678631934], [-77.40970370190188, 34.67301009231077], [-77.40946695097657, 34.673299770298115], [-77.40935881114551, 34.6737487715026], [-77.40979660234899, 34.67416364087062], [-77.41029465139408, 34.673976856256076], [-77.41104781202415, 34.67393679128104], [-77.41112830505786, 34.67399026788086], [-77.41153874336351, 34.67458396967045], [-77.41154380381155, 34.67462254651625], [-77.41122386924482, 34.67503289171382], [-77.41100284218038, 34.67513538555917], [-77.41076418321286, 34.67524781337472], [-77.4106482889112, 34.67530352728327], [-77.41054932470699, 34.675355944368775], [-77.4103028101481, 34.675486512834986], [-77.40977434182034, 34.67564384203014], [-77.40948157623393, 34.6763756070186], [-77.40945978821766, 34.67665200099727], [-77.40982646890204, 34.67712440854831], [-77.40986267642224, 34.67735212246296], [-77.41005255503302, 34.67770541913424], [-77.41014056540305, 34.67788605828096], [-77.41028757405877, 34.67805994100439], [-77.41052519228387, 34.67828609106354], [-77.41095646454568, 34.67843835927545], [-77.41109267933324, 34.67853921810448], [-77.41135465966227, 34.67870345498489], [-77.4118781926077, 34.67894650680678], [-77.41189601989589, 34.67918193022918], [-77.412049248193, 34.679661650738694], [-77.41206977374019, 34.679759274950825], [-77.41209396669512, 34.67981031418951], [-77.41227685186, 34.67998212234188], [-77.41255626018295, 34.68000265910561], [-77.41258864647666, 34.680011829011264], [-77.41262651046542, 34.67999666664809], [-77.41274180512612, 34.679925248165596], [-77.41291490100883, 34.67981802519292], [-77.41294091804089, 34.67980190910779], [-77.4132032904957, 34.67963938288521], [-77.41336655535596, 34.67953824818786], [-77.41359173607148, 34.67977530752667], [-77.41375615296378, 34.67994839798161], [-77.41362751675152, 34.68034693720995], [-77.41356166672779, 34.68081724605918], [-77.4135692564486, 34.68088566354282], [-77.41356013465958, 34.68092288320845], [-77.41344817570538, 34.68137971648798], [-77.41344305398718, 34.68140061470073], [-77.41343828553245, 34.681420071206276], [-77.41331729590671, 34.68191374692704], [-77.41331646348195, 34.6819154304586], [-77.41331499583276, 34.681917859581276], [-77.41313154433053, 34.68240983669853], [-77.41315054513804, 34.68249747702551], [-77.4133569672332, 34.68279304988645], [-77.41352739194532, 34.683409142836275], [-77.41363462294693, 34.68356991398835], [-77.41361961102993, 34.68369883429219], [-77.41356511238955, 34.683815273007305], [-77.41340402432826, 34.68383522108951], [-77.41292622383898, 34.68426651946547], [-77.41201889440421, 34.68425696030452], [-77.4120067111708, 34.684258782845845], [-77.4120002784299, 34.684256910458764], [-77.41199616530066, 34.68425346609316], [-77.41143560489722, 34.684072781550014], [-77.41141482133827, 34.68406570007323], [-77.41137458475933, 34.684066428893765], [-77.41099157979542, 34.68409463710806], [-77.41091449224693, 34.684258367295975], [-77.41087504707639, 34.684415825073415], [-77.41086707380171, 34.68463912226394], [-77.41086608757851, 34.68472490644385], [-77.41085418076119, 34.68496764014027], [-77.41084393566663, 34.68518049347974], [-77.41084094012464, 34.685242565848355], [-77.41085123997087, 34.68536135946051], [-77.41086217465953, 34.685529554385226], [-77.41086614022777, 34.685617576300444], [-77.41090564734321, 34.685824046696446], [-77.41104381443206, 34.68615222898299], [-77.41099482318687, 34.686344343703695], [-77.41100113759983, 34.68645395324807], [-77.41097084586951, 34.68668581270042], [-77.41080409060568, 34.686780511260785], [-77.41064120779295, 34.68705044717704], [-77.41060177943871, 34.68711578967757], [-77.41058142815262, 34.687164456807324], [-77.41050246146187, 34.68755467136458], [-77.41051716147024, 34.68764529813592], [-77.4106138260359, 34.687938257384715], [-77.41061776680488, 34.68795291733906], [-77.41062285042898, 34.68798034507339], [-77.41066556391362, 34.68825634188082], [-77.4106961452594, 34.688366567397885], [-77.41072250994087, 34.68866944505002], [-77.41073763066126, 34.68879560786951], [-77.41078033514326, 34.688855617235546], [-77.41090164802084, 34.6891735337645], [-77.41111190116791, 34.68953074737992], [-77.41111224476394, 34.68953203096856], [-77.41111270944953, 34.689535031004624], [-77.41126464700515, 34.689914802736354], [-77.41135334712965, 34.69017434169544], [-77.41139775611197, 34.690305624335146], [-77.41146750478325, 34.69049384157786], [-77.41131767589235, 34.69061303158486], [-77.41129636444276, 34.69071351875582], [-77.41127986252624, 34.69080115047121], [-77.41098544344058, 34.691163846130046], [-77.41085546441109, 34.69135333141568], [-77.41083242761603, 34.69143414149217], [-77.41091866157629, 34.69169959532746], [-77.41093577205567, 34.691837378718134], [-77.4110644203495, 34.69191480960124], [-77.41128017810854, 34.69204795029695], [-77.41133597713362, 34.69208361915996], [-77.4113650188215, 34.69210467079525], [-77.41158553313416, 34.69232840298619], [-77.41170226384669, 34.69241033929721], [-77.41168368547017, 34.692526376031125], [-77.41169136794456, 34.69272043763087], [-77.41169280671446, 34.69280912408129], [-77.41168147023956, 34.69286536185665], [-77.41165025071255, 34.69307379101724], [-77.41160263627248, 34.693323438168605], [-77.41160018827328, 34.69333583257474], [-77.41159825226504, 34.6933464236126], [-77.41155880554318, 34.6936009100657], [-77.41141773734955, 34.69376916448065], [-77.41135603751762, 34.69380952453487], [-77.41112799158786, 34.69390833737538], [-77.41106375367633, 34.69393836544949], [-77.41100653676692, 34.69396680072964], [-77.41071240245307, 34.69411187316276], [-77.4106749736869, 34.69417789871533], [-77.41062586917933, 34.69439272956331], [-77.41063922567291, 34.69463915635172], [-77.41062962757239, 34.6947246279734], [-77.41060493407255, 34.694944520320234], [-77.41064709133332, 34.695082221616985], [-77.41072002713923, 34.69531702958615], [-77.41076097653941, 34.695481064356116], [-77.41078107556038, 34.69556526219548], [-77.41084008447903, 34.69581694372816], [-77.41085246190703, 34.695869795510866], [-77.41085639076395, 34.69588761209048], [-77.41092075467029, 34.69617324556459], [-77.41094759863547, 34.69629591440186], [-77.41102431429285, 34.69647938567101], [-77.41111589128712, 34.69667206376448], [-77.4111819827876, 34.69682375285649], [-77.41125156265278, 34.69706181983582], [-77.41135482923579, 34.69744333766603], [-77.41137225008215, 34.69749105723665], [-77.4114903992612, 34.69785489357633], [-77.41159543628058, 34.69808662626955], [-77.41166197052156, 34.69822967678894], [-77.4117526089853, 34.6983908016802], [-77.41189127556544, 34.69858037865968], [-77.41208634381567, 34.69881747862736], [-77.41214881038806, 34.69891930570637], [-77.41209239549536, 34.69936114078736], [-77.41209005877147, 34.69937788911878], [-77.41208698221713, 34.6993914449832], [-77.41208966842783, 34.69944008884121], [-77.4120891294277, 34.699836898753325], [-77.41246882197821, 34.70006950282901], [-77.41252160850733, 34.70010285531258], [-77.41253613813588, 34.700111609600334], [-77.41256730302933, 34.700137741787394], [-77.41290628130074, 34.70038875199864], [-77.4130319010619, 34.700612939039644], [-77.4131672380407, 34.70072625321517], [-77.41348700415926, 34.70089356997585], [-77.41358419443503, 34.70091907880914], [-77.41405546149211, 34.701075024471606], [-77.41425463122627, 34.70116537957322], [-77.41479063803476, 34.701179644790145], [-77.41506108036819, 34.701223231784425], [-77.41509564260149, 34.70123306912636], [-77.41519058741657, 34.70122131504133], [-77.41542733373319, 34.701194332409536], [-77.4154904627233, 34.701177268786], [-77.41557475054707, 34.70115599468665], [-77.41589088235783, 34.701083948416], [-77.41606184926248, 34.701046828324515], [-77.41611428905807, 34.70103544265747], [-77.41625485290247, 34.70100054027504], [-77.4162914792635, 34.70099091875321], [-77.41646733982012, 34.70092293078222], [-77.41648610147888, 34.70091567746752], [-77.41660630016104, 34.70075763892346], [-77.41666941356789, 34.70060442510591], [-77.41665713840041, 34.70041640524569], [-77.4167077354671, 34.70017546078256], [-77.41670877095464, 34.70014164808479], [-77.41670499285247, 34.700102161518174], [-77.4166893590778, 34.69992656648974], [-77.41659927058862, 34.69983706576255], [-77.41654286513143, 34.69976449850457], [-77.41649650883454, 34.69971540553721], [-77.41642576679938, 34.69971441578477], [-77.41622748822181, 34.69970701846866], [-77.41595764233567, 34.69969702010327], [-77.4158619017794, 34.69969354976586], [-77.41573327309445, 34.699655866772744], [-77.41557110907706, 34.69959106554784], [-77.41544135384255, 34.6994320291823], [-77.41538086795538, 34.69935651638236], [-77.41533549643715, 34.69929801877109], [-77.41511856413766, 34.69901958033846], [-77.41510245729371, 34.69899609039677], [-77.41497238363279, 34.698708877250375], [-77.41494846772933, 34.69864418026459], [-77.41491104760958, 34.69855040147308], [-77.41478011255214, 34.69826805368457], [-77.41473075635203, 34.698065248648035], [-77.41465494847345, 34.69787391146683], [-77.41453668030914, 34.697629857161004], [-77.41449011769811, 34.697496316026985], [-77.41444383167008, 34.697405772345604], [-77.41428152386473, 34.69713697660862], [-77.4142454584061, 34.69705682406162], [-77.41419562260133, 34.69694963340983], [-77.41415005136473, 34.69675168690075], [-77.41414837858099, 34.69674616443158], [-77.41414696968822, 34.696742817274156], [-77.41414799949352, 34.69673790651076], [-77.41415431322989, 34.69673696895604], [-77.41447460612169, 34.696523920085454], [-77.41454367937499, 34.69649899785833], [-77.41487780875725, 34.69643937989599], [-77.41487816697502, 34.6964357749004], [-77.41478517542546, 34.69603416812925], [-77.4148031567402, 34.695854160319264], [-77.4148329244949, 34.69561372740853], [-77.41484450694007, 34.695589074172204], [-77.41489667556152, 34.69554129992415], [-77.41506539327563, 34.695386794302244], [-77.41505238808409, 34.69522454207961], [-77.4152228868697, 34.69526002850348], [-77.41574064545146, 34.69485389950384], [-77.41600575163426, 34.694769731244236], [-77.41611475457641, 34.69471760702638], [-77.41626091206844, 34.694686810682406], [-77.41645595666816, 34.69452750269805], [-77.41683432577076, 34.693840245937416], [-77.41687071009439, 34.693781930063025], [-77.41687313598926, 34.693713605188094], [-77.4168981951756, 34.69351199536379], [-77.41689524982044, 34.69336847037552], [-77.41686123226312, 34.69321951508666], [-77.4169980654823, 34.693169856906756], [-77.41711207932065, 34.69316218021167], [-77.41721774508119, 34.69315506547451], [-77.417352020698, 34.69317790811669], [-77.4174230149342, 34.69319501460603], [-77.41747707763102, 34.693205114168], [-77.41772277971293, 34.69326643293108], [-77.41801131576852, 34.69334920950095], [-77.41832110556413, 34.69341343117977], [-77.4185532234796, 34.69346876762151], [-77.41890471352508, 34.69361127206456], [-77.4191478887703, 34.6936931249002], [-77.41919587867066, 34.69371240213717], [-77.4192468813431, 34.693726445745895], [-77.41942350382118, 34.69376978916452], [-77.4195003598808, 34.693767535359875], [-77.4196203910056, 34.69371772321912], [-77.41973118225233, 34.693664344820995], [-77.41979980078575, 34.69363708063928], [-77.41986421648639, 34.69361756502883], [-77.41998962507586, 34.69357346652575], [-77.42021770949287, 34.693503388725034], [-77.42037120418814, 34.693449396115724], [-77.4205315005129, 34.693385195643444], [-77.42055554257152, 34.6933768134594], [-77.4205783922132, 34.69336437227325], [-77.42073004367269, 34.69328814562313], [-77.4209151125768, 34.69303041824442], [-77.42093063154272, 34.69296571594753], [-77.42092214797546, 34.69285427299764], [-77.42096504835928, 34.692563216227], [-77.42095887273405, 34.69241650531217], [-77.42123513742618, 34.69220257618438], [-77.42139294878625, 34.692128120274674], [-77.42175993976286, 34.692137616367894], [-77.42185673793759, 34.692138479439045], [-77.42189358259826, 34.69214185350896], [-77.42213359027912, 34.691988767878634], [-77.4221840974171, 34.69192576767512], [-77.42236097127751, 34.69178875701795], [-77.42252252195281, 34.69173114975335], [-77.4226817338618, 34.69163300818163], [-77.42269333116681, 34.69162546569978], [-77.42285145587606, 34.691521016248345], [-77.4229645951004, 34.69144080392821], [-77.42300995271302, 34.691406189273046], [-77.42308661335451, 34.69134124427838], [-77.42316155773923, 34.69128009407974], [-77.42334160295485, 34.69112522241513], [-77.42338581744286, 34.691029051261175], [-77.42344337980421, 34.69099293607163], [-77.42351304230603, 34.690975015854974], [-77.42368784487317, 34.690855149574816], [-77.42378050811364, 34.69079620699268], [-77.42392058142727, 34.69067403918156], [-77.42393577957691, 34.690662327879785], [-77.42407365935188, 34.69052757676715], [-77.42434898921243, 34.690258492242506], [-77.42434771235952, 34.69024732622958], [-77.42435754610405, 34.69024380228148], [-77.42436962447874, 34.69022964807228], [-77.4245965396828, 34.689886628904624], [-77.42466174730694, 34.689798083607066], [-77.42474710339793, 34.68964599000869], [-77.42492630269842, 34.68933153562944], [-77.42504890268648, 34.68913039705608], [-77.4252195880929, 34.688875036990645], [-77.42543703560455, 34.68875573387581], [-77.42563966574443, 34.68860046073231], [-77.4257705084134, 34.68850864873245], [-77.42596800630808, 34.68838938270335], [-77.42625124258971, 34.688156645513104], [-77.42627463096767, 34.688142802144974], [-77.42628565614461, 34.68812974878275], [-77.42630118519601, 34.68810471893548], [-77.4264813379541, 34.687732861724335], [-77.42653755588152, 34.68765877613303], [-77.42671185249179, 34.68736184772822], [-77.4268061329276, 34.6871936371076], [-77.4269818639651, 34.686927902171234], [-77.42707083029546, 34.686727141826715], [-77.42714863121002, 34.68658018257725], [-77.42740926828199, 34.686286438380705], [-77.4274200934441, 34.68627612788263], [-77.42744450261773, 34.68624761237629], [-77.42756936116331, 34.686062894734526], [-77.42760044983794, 34.686000179509776], [-77.42762916943994, 34.68594404468539], [-77.42764579776104, 34.685897262102884], [-77.4276776986962, 34.68582124967746], [-77.4276564454077, 34.68575362047095], [-77.42759829239779, 34.68571614811282], [-77.42752650021347, 34.68570221491176], [-77.42745517664808, 34.685657101994394], [-77.42739207014748, 34.68564076393572], [-77.427306140134, 34.68561851694167], [-77.42703891605767, 34.685564957198], [-77.42700360334803, 34.68555677328695], [-77.42697528345553, 34.68554887367903], [-77.42682121070159, 34.68552168728188], [-77.42669711679804, 34.685508679436936], [-77.42647930833242, 34.68548584762971], [-77.42638614592734, 34.68547608184607], [-77.42623492685436, 34.685460229971405], [-77.4262272653549, 34.685457303420776], [-77.42609613157299, 34.685371067218774], [-77.42596743983468, 34.6852230669103], [-77.42592243911832, 34.68513813746026], [-77.42593249943404, 34.68496574965255], [-77.42594800780793, 34.684936731625996], [-77.42608907686336, 34.684847807133565], [-77.42609719576153, 34.68470937493095], [-77.42609461172196, 34.68461990898735], [-77.42615527066876, 34.68445014956369], [-77.42620454382613, 34.6842886957154], [-77.42625483976667, 34.68420543784375], [-77.42636163135354, 34.684062097059005], [-77.42643491104073, 34.68391745488087], [-77.42651082949916, 34.683735900008855], [-77.42659816905666, 34.683636199446596], [-77.42667120148575, 34.68355590173975], [-77.4267135757209, 34.683527277223526], [-77.42693991494048, 34.68337438097689], [-77.42697792358575, 34.68334020099365], [-77.42695810136141, 34.68327710013154], [-77.42688646467036, 34.68302867371237], [-77.42685904010794, 34.682961755086474], [-77.42683216835906, 34.682827556016896], [-77.42681698622808, 34.68272483436782], [-77.42687548688527, 34.6826778563914], [-77.42699577537778, 34.68259080452618], [-77.42713939032632, 34.68262156356204], [-77.42719593419628, 34.68267766793406], [-77.42728396046034, 34.68278441712552], [-77.42740628849901, 34.68293095527259], [-77.42755391149664, 34.68311813322057], [-77.42766451183692, 34.68327280070252], [-77.42787288633303, 34.683277021578476], [-77.42809622851085, 34.68317227184088], [-77.42824656695618, 34.683140113499974], [-77.4283607585613, 34.6830811371791], [-77.42839608960718, 34.68301064549069], [-77.42842608670541, 34.68300810751553], [-77.42851081370702, 34.68294195777432], [-77.42855861950801, 34.6829024444543], [-77.42866702565286, 34.682812842246676], [-77.42878288472048, 34.68272954021126], [-77.42886910881876, 34.682662221122264], [-77.42917311469702, 34.68244234693652], [-77.42918331527073, 34.68243434745664], [-77.42918616964413, 34.68243274481964], [-77.42918948669212, 34.682431583745654], [-77.42921651858687, 34.682424231473654], [-77.42988361877028, 34.682247181709954], [-77.42998115314887, 34.682236799249424], [-77.43007550379485, 34.6821873218814], [-77.43033908685145, 34.68207415243019], [-77.43058313830697, 34.68185383705999], [-77.43061954723669, 34.68181853210333], [-77.43062863601564, 34.68179970323927], [-77.43067780835143, 34.68171692715155], [-77.43085246119617, 34.681417802412994], [-77.43089790694418, 34.68135682084773], [-77.43098201611295, 34.681240964196846], [-77.43107881412632, 34.68104003719305], [-77.43111138208754, 34.68087241731138], [-77.4311392575163, 34.68072894615317], [-77.43124868280273, 34.68056992712971], [-77.43137292324367, 34.68042167512543], [-77.43138075834175, 34.680411946119335], [-77.43138386607019, 34.68040865269342], [-77.43153516308487, 34.680290471694136], [-77.4316598371837, 34.680225639320895], [-77.43176256517306, 34.68018226371896], [-77.43190544279366, 34.68014802415163], [-77.43216444882742, 34.680122589642856], [-77.43230849003534, 34.68005914870582], [-77.43247934467044, 34.67991947504845], [-77.43269871933596, 34.68007801960893], [-77.43278489540768, 34.68009020732014], [-77.43304557742985, 34.68017708223425], [-77.43331539294383, 34.68026700009718], [-77.43335472634169, 34.68027400028995], [-77.43338168803032, 34.68026876467197], [-77.4335723903298, 34.68025594855216], [-77.43367806033834, 34.68020567745053], [-77.43375036463262, 34.68017301020527], [-77.43381772710205, 34.68014172788662], [-77.43406211567213, 34.67998554400035], [-77.43408439641449, 34.67997130480334], [-77.43410042196355, 34.67996106311583], [-77.43421157068778, 34.679892912862016], [-77.43430045785009, 34.67975149057789], [-77.43445009405708, 34.679751839852884], [-77.43485917808125, 34.67974236136151], [-77.43505498574723, 34.67987580312307], [-77.43519711641838, 34.679927904828546], [-77.43534538676742, 34.67997942725156], [-77.4354926801967, 34.6800302312751], [-77.43563757808923, 34.68007686286806], [-77.43577371734348, 34.68013360216666], [-77.43591346340162, 34.680230674713584], [-77.43613482621065, 34.68039298171302], [-77.43616073619661, 34.6804184388776], [-77.43617280510799, 34.680441684866224], [-77.43639195752577, 34.68076831289988], [-77.43640528207571, 34.68077434296809], [-77.43669664911029, 34.680845874531244], [-77.43689982123058, 34.68083501958638], [-77.43733583754845, 34.680812962674224], [-77.43734361742565, 34.68081274547127], [-77.4373470815994, 34.68081240959614], [-77.43735398062324, 34.68081311075881], [-77.43766619352394, 34.68081678005102], [-77.43783492687466, 34.680987484017294], [-77.43788478211206, 34.681037921541126], [-77.4379117582206, 34.68107544187233], [-77.43809029135673, 34.68135630175188], [-77.4380998136713, 34.681394554181296], [-77.43827450238574, 34.681700237674576], [-77.43830950103259, 34.68191566986304], [-77.43839630596489, 34.68216358149121], [-77.43872236346822, 34.682415883936315], [-77.4387910197201, 34.68246626292992], [-77.43912927491436, 34.68275039568345], [-77.43930546388859, 34.682903029575414], [-77.43943406101943, 34.68306956061266], [-77.43943611529684, 34.68322449434093], [-77.43953576694726, 34.68347350459777], [-77.43965581666183, 34.68386035453321], [-77.43966060790221, 34.6838677920501], [-77.43966490023786, 34.68387578740638], [-77.4397113852927, 34.683935374605014], [-77.43991592561542, 34.68420760899656], [-77.44007997575108, 34.68453783648624], [-77.4400987354454, 34.68457425796087], [-77.44009994120607, 34.68457719285837], [-77.44010065356157, 34.68458469069401], [-77.44016074777565, 34.68487545955593], [-77.44014206312269, 34.685006013141134], [-77.44012561172092, 34.68514269436633], [-77.44012516543498, 34.685359391096625], [-77.44010003889488, 34.68569279292277], [-77.44009739008195, 34.685917473023224], [-77.44009907404649, 34.68597197582002], [-77.44008242736297, 34.68603723265067], [-77.44001373891224, 34.686221659551705], [-77.44017630461512, 34.68653875719659], [-77.44041113807131, 34.6865744910127], [-77.4404838074738, 34.686583336177044], [-77.44075906117102, 34.686482244050275], [-77.44079612024406, 34.68645602902148], [-77.44087105722897, 34.68635216621274], [-77.44110799983918, 34.68604520276702], [-77.4411924386422, 34.685906729163506], [-77.44129549988638, 34.685776863203245], [-77.44143536515736, 34.68560061952243], [-77.44144302488644, 34.685355707378946], [-77.44145037881658, 34.68532635091104], [-77.44144372824361, 34.68527145468739], [-77.44141501771168, 34.68503446942315], [-77.4414019314707, 34.68492645525941], [-77.44142161402507, 34.684487636218726], [-77.44142150547432, 34.68447770159], [-77.44142240279248, 34.68447150129772], [-77.44143606433069, 34.684398441722216], [-77.44146893084866, 34.68421476445575], [-77.44153471069511, 34.683978206448195], [-77.44153976973897, 34.68396001336077], [-77.44167514597986, 34.683473168050604], [-77.4416761379586, 34.68344865515651], [-77.44167866689325, 34.68341242628857], [-77.44177154511706, 34.68323835045854], [-77.44178060015982, 34.683429141757586], [-77.44181270352139, 34.683496401969755], [-77.44221468279326, 34.68392175711391], [-77.4423293442619, 34.684092861646164], [-77.4423270966627, 34.68423527988363], [-77.44236878654264, 34.684522804862056], [-77.44236630550161, 34.68453631798004], [-77.44231949462531, 34.68479165616236], [-77.44232149292661, 34.684988959046045], [-77.44232377792349, 34.685214471868946], [-77.44232385416034, 34.68535221451143], [-77.44233181869959, 34.68543105772737], [-77.44238392978771, 34.685552328457], [-77.44250720809887, 34.68580424422753], [-77.44268248276225, 34.68603662749003], [-77.4427173058682, 34.68616294070857], [-77.4427910403873, 34.686360381326466], [-77.44287856279176, 34.68654202811479], [-77.44318984197241, 34.68662992236041], [-77.44334489326322, 34.68666100521332], [-77.44350930209626, 34.68660519968245], [-77.44353884333566, 34.68645265502185], [-77.44357878505615, 34.686349975122155], [-77.44356076347843, 34.68625721286797], [-77.44365868059637, 34.68581887607855], [-77.44365782426944, 34.68577027804194], [-77.44382629808257, 34.68542716617389], [-77.44388668526537, 34.68533955583912], [-77.44408331591406, 34.68521534403406], [-77.44413440376867, 34.68518307173906], [-77.44417285591717, 34.68516008530554], [-77.44445822224812, 34.68498969274388], [-77.44446805881017, 34.684983772241715], [-77.44446942758248, 34.684982971864166], [-77.44447119890596, 34.68498191554379], [-77.44480674769522, 34.68478662623816], [-77.44506443830679, 34.684633233289745], [-77.44512362561593, 34.68455687342526], [-77.44524430337958, 34.68452423615266], [-77.4454934753408, 34.684413694661444], [-77.44581744130464, 34.68433744688425], [-77.44588822277197, 34.68431120577911], [-77.44596013126004, 34.68426462274023], [-77.44644963671502, 34.6839994261043], [-77.44657479873268, 34.68393803466443], [-77.44672510654124, 34.6838349992634], [-77.44690578864828, 34.683731354825575], [-77.44707027837029, 34.683657365291836], [-77.44726548695701, 34.68357159105841], [-77.44752125910581, 34.68329750468691], [-77.44756067347542, 34.683269773365446], [-77.44761188537639, 34.68322651493073], [-77.44787574366431, 34.683073714205264], [-77.44807197870973, 34.68303439980741], [-77.44824785307506, 34.68300057508155], [-77.44829688941759, 34.68301437347104], [-77.44853944841475, 34.683052901416104], [-77.44880984807082, 34.683105070228414], [-77.44891602146888, 34.683128380015596], [-77.44944642757373, 34.68328741636501], [-77.44958129112017, 34.68341708517568], [-77.44982254198536, 34.68364269046255], [-77.44995455550136, 34.68374618794665], [-77.45011790046158, 34.683747492852376], [-77.45040050811627, 34.68384777006906], [-77.45055055206544, 34.68390100958833], [-77.45067729087256, 34.68391404497464], [-77.45095176365312, 34.68389612487789], [-77.45111873527766, 34.68388786073767], [-77.45120225943789, 34.68386310587834], [-77.45142217225876, 34.6838675645982], [-77.45182598269352, 34.6839220085085], [-77.4520839082009, 34.68396994432301], [-77.4521754612986, 34.68399942488555], [-77.45242381542855, 34.68407048240311], [-77.4530375904443, 34.684085828455785], [-77.45305881766778, 34.6840903643417], [-77.45307646579424, 34.6840967631478], [-77.45308735731165, 34.68408355973654], [-77.45351395692805, 34.684064111369274], [-77.45373392762154, 34.683971476118515], [-77.45390402440628, 34.683953971506305], [-77.45398913126539, 34.68383973399959], [-77.45415273520466, 34.68362012899641], [-77.45429738296582, 34.68338846665994], [-77.45404781923631, 34.68288544902268], [-77.45396413299724, 34.68280602753384], [-77.453830971515, 34.68266644816918], [-77.45381085618665, 34.682646822922656], [-77.45380206611698, 34.68262728801835], [-77.45375099861434, 34.68244860426213], [-77.45374194743756, 34.682194164179975], [-77.45374790794094, 34.682078411694825], [-77.45375606473868, 34.68200005611877], [-77.45380324621023, 34.68154683488516], [-77.4538117482561, 34.68154172056589], [-77.45380388022225, 34.681512574318354], [-77.45373513972784, 34.68111592969399], [-77.45363418175191, 34.68092065090296], [-77.45352948627507, 34.680408362444524], [-77.45345717264331, 34.68023941234186], [-77.45342429582756, 34.68006908107684], [-77.45333281046786, 34.67994635063732], [-77.45320216867775, 34.679763127696205], [-77.452982035182, 34.67946051001784], [-77.45297605496519, 34.67945187474591], [-77.45279237317848, 34.679141402137205], [-77.45285866946172, 34.6789901824325], [-77.45296909394474, 34.67883006901534], [-77.45320450137166, 34.6783323303753], [-77.45321930527321, 34.67829815640778], [-77.4532225873184, 34.67828025704177], [-77.45323272711074, 34.678239746411606], [-77.45339180364053, 34.677739079868076], [-77.453421921587, 34.677484914439304], [-77.45348502746432, 34.677152294501894], [-77.45349320492417, 34.677095334430476], [-77.45349308891085, 34.67700715881084], [-77.45350879779593, 34.67672162594374], [-77.45349875476033, 34.676537721295816], [-77.45347561570424, 34.676114061014204], [-77.45346908168354, 34.67599442024171], [-77.4534642698127, 34.675906295327245], [-77.45376894180065, 34.67575563207651], [-77.45395018598158, 34.6758572883095], [-77.45434358460446, 34.675967901796014], [-77.45475427374942, 34.67630828282043], [-77.454789496891, 34.67633747600675], [-77.45480640703092, 34.67635175988339], [-77.45484056064032, 34.67638736763989], [-77.45537399605757, 34.67692850040835], [-77.45559861328941, 34.67717770016397], [-77.45560455248254, 34.677273771172835], [-77.45568903675029, 34.67757723077036], [-77.4556575077826, 34.67768379511418], [-77.45559641171826, 34.67789029081152], [-77.45556971887036, 34.677980507399894], [-77.45550160609804, 34.67821071589806], [-77.45545039986702, 34.67838378385131], [-77.45543033302394, 34.678451607985764], [-77.45537874898474, 34.67858623256335], [-77.4551591463279, 34.678629185918126], [-77.4548918376918, 34.67872941248115], [-77.45466335512391, 34.678802898686634], [-77.45481728642835, 34.67904691807955], [-77.45494425544399, 34.67926658581536], [-77.45510190568434, 34.67949567841042], [-77.45514543144694, 34.67956041754613], [-77.45515780820197, 34.67957498049352], [-77.45518857630965, 34.67960584079035], [-77.45543701476784, 34.679864660310145], [-77.45555547709773, 34.679973842268375], [-77.45582983763491, 34.680231616648406], [-77.4559977543607, 34.68034788519843], [-77.45607632953518, 34.68042096098702], [-77.45635196169158, 34.680631816234104], [-77.45641841839003, 34.68069271731122], [-77.45643901802043, 34.68072317167195], [-77.45668852011589, 34.68098499138425], [-77.45682238195093, 34.68116920858073], [-77.45716217915538, 34.68158850598977], [-77.45750252366803, 34.682167105280534], [-77.45755151543389, 34.682289767232035], [-77.45731887174254, 34.682652281080976], [-77.45703503124713, 34.68308997461337], [-77.45696245281587, 34.68320189153487], [-77.4569005995977, 34.6833653976357], [-77.45668861508729, 34.68422417643217], [-77.45646176336732, 34.68514313173756], [-77.45642001203379, 34.6852483056671], [-77.456324650898, 34.68539169125961], [-77.45588934406994, 34.68618083836922], [-77.45566591600146, 34.686832656723034], [-77.45463262117656, 34.68797764390741], [-77.45447766982144, 34.688049022755365], [-77.45302379784036, 34.68849566638996], [-77.45170630737483, 34.68876943667019], [-77.45139571502214, 34.688825589562114], [-77.45113287369071, 34.68899051885359], [-77.44975458075756, 34.689134162709635], [-77.44901819369518, 34.689369428924714], [-77.44898916481941, 34.689378575640184], [-77.44896620784172, 34.68938148618792], [-77.44855813634626, 34.68976764123198], [-77.44853704260363, 34.69013491563097], [-77.44850099694685, 34.69030668532286], [-77.44854342622799, 34.69042671873108], [-77.44855083920326, 34.69081819611598], [-77.4485517114326, 34.690869682391174], [-77.44855394413204, 34.6908842091085], [-77.44871438955388, 34.69124818143588], [-77.44897616236632, 34.691563532958], [-77.44900106949682, 34.69157490781604], [-77.44954596366455, 34.69178347600289], [-77.44955296250077, 34.69178494785621], [-77.44956458444459, 34.691786045543054], [-77.45013662351438, 34.69198263797556], [-77.450152395512, 34.69200190510928], [-77.45031965194491, 34.69236362591123], [-77.45050869518091, 34.69291223689552], [-77.45061368641952, 34.693133706907055], [-77.45066463443712, 34.69329895252836], [-77.45096463853099, 34.69388002563811], [-77.45096601025254, 34.693963290929126], [-77.45129500083017, 34.69462568507697], [-77.45130070036289, 34.694632562392265], [-77.45130675005613, 34.69464138268562], [-77.45186147741418, 34.69529127156863], [-77.45199166185029, 34.695439748867784], [-77.45225478340849, 34.69573915004157], [-77.45254748362919, 34.69589769249292], [-77.45304549118745, 34.696006057230925], [-77.45341992724936, 34.69614227800861], [-77.45396214394435, 34.696199859272156], [-77.45404259177545, 34.69620515246908], [-77.45408269879164, 34.696205567653585], [-77.4541649105747, 34.69619920642009], [-77.4545028196402, 34.6961444302691], [-77.45472674131247, 34.696055312769246], [-77.45487127393997, 34.6959988877639], [-77.45507068905412, 34.69595672234781], [-77.45559937412675, 34.695693412269904], [-77.45670122738294, 34.69540848567216], [-77.45701502814488, 34.695016239241305], [-77.45761311358311, 34.69493757336698], [-77.45828594084142, 34.69528716818881], [-77.45981978874065, 34.696171597139845], [-77.46038216468214, 34.69669461700289], [-77.46121695520739, 34.69763468964595], [-77.46176937078297, 34.698295477141464], [-77.46303131026181, 34.6998560458271], [-77.46342208508402, 34.70028535705933], [-77.46370379277684, 34.70047215198735], [-77.46450401124412, 34.701269414373414], [-77.4647573697432, 34.701513502219655], [-77.46566858639164, 34.70254401640338], [-77.46624785776676, 34.70267681482741], [-77.46803434556081, 34.7032283158694], [-77.46877454569542, 34.704098046766404], [-77.46883500921035, 34.705167937372856], [-77.46842804275846, 34.70767724137888], [-77.46824974799446, 34.70838643885318], [-77.46785738089655, 34.7091479647845], [-77.4668568831198, 34.711089854793244], [-77.46487325376245, 34.71167886652646], [-77.46283140495666, 34.71236253830444], [-77.46222273697961, 34.711501066331884], [-77.46251089617817, 34.710853765981255], [-77.46167753221377, 34.70994293677609], [-77.4619720181744, 34.70909163821478], [-77.46207793320059, 34.708466633321024], [-77.46222966798899, 34.7080177249829], [-77.462265541584, 34.70791159045711], [-77.46241590421297, 34.707466738942834], [-77.46249214316597, 34.70695169513046], [-77.46249204075087, 34.706924101682155], [-77.46248306277761, 34.70691447379155], [-77.46227540462641, 34.706597741915004], [-77.46226064620868, 34.70657523155331], [-77.46226005989215, 34.70657452567517], [-77.4620129610525, 34.70632343345654], [-77.46188172097689, 34.70628606837835], [-77.46145233575645, 34.7060121904381], [-77.46105622130244, 34.705737893745024], [-77.46098555474413, 34.70544316185751], [-77.46095331731456, 34.70533441741646], [-77.46093021151785, 34.70527081859406], [-77.46077327430737, 34.70506887898687], [-77.4605516559507, 34.70505569958138], [-77.46045875840915, 34.705048355787106], [-77.46040771838298, 34.70504223097039], [-77.45977207852629, 34.70520677308964], [-77.45958973002276, 34.70520101890362], [-77.45858735585149, 34.70487091109233], [-77.45845274835699, 34.70483880747398], [-77.45801086810755, 34.704648068009426], [-77.45762976039613, 34.70449003421302], [-77.4574848356599, 34.70425066754663], [-77.45695386455085, 34.703885452492685], [-77.45694773862495, 34.70388193788963], [-77.45672673125813, 34.70351445537429], [-77.45695324947552, 34.70387250053124], [-77.4571999400037, 34.703408633586434], [-77.45724854127329, 34.70330989351777], [-77.45732118001924, 34.70317149739374], [-77.45728528904348, 34.70293195520257], [-77.45728066687144, 34.702877847657675], [-77.45726787814762, 34.70285537820332], [-77.45725124339332, 34.70284152607262], [-77.45722237215634, 34.70282918792212], [-77.4569680620073, 34.702712615442536], [-77.45681795177617, 34.702716182027615], [-77.45674543386505, 34.70279758044087], [-77.45651818815999, 34.70316040564253], [-77.45651411950037, 34.7031671774366], [-77.45651323530551, 34.703168710023185], [-77.45650934304932, 34.703172113283166], [-77.45562812533825, 34.70397744615937], [-77.45544478495586, 34.70441024742494], [-77.45479742539497, 34.70467901310705], [-77.45318700610287, 34.70536050091128], [-77.45278277587921, 34.70604164955449], [-77.44987823363905, 34.705940701831615], [-77.4493450292593, 34.70580350991387], [-77.44883079180835, 34.70556585060387], [-77.44617628200469, 34.70514666349652], [-77.44409824228751, 34.706216269560564], [-77.4427907017367, 34.70765918774486], [-77.44131992266776, 34.706958139287195], [-77.44108793374782, 34.70603870288532], [-77.44064268650693, 34.70414945187943], [-77.44302801272633, 34.70404635450906], [-77.44061352375462, 34.70266543936801], [-77.44016571504558, 34.70208521687494], [-77.4391777978179, 34.69969346691424], [-77.4397565124373, 34.69843057866042], [-77.43925363476755, 34.696375764216484], [-77.43919031446933, 34.69611701832469], [-77.43916574576284, 34.69598790728009], [-77.43885756742617, 34.69525082093472], [-77.43857971774389, 34.69458627578856], [-77.43880863421498, 34.69362690125447], [-77.43879261239329, 34.693538442680264], [-77.4385528559002, 34.6928118780668], [-77.4387905302003, 34.692502487846376], [-77.43882114720643, 34.692200484409504], [-77.4389549998387, 34.692000947876565], [-77.43878548058669, 34.691821970305966], [-77.43870659628459, 34.69162026611268], [-77.43840138586566, 34.691248352909085], [-77.43831023880767, 34.69112754304365], [-77.43821996978957, 34.69108714093672], [-77.43811662041895, 34.691049010865065], [-77.43762117802063, 34.69094180998262], [-77.43757520540053, 34.690959498849], [-77.437171039504, 34.69099896678585], [-77.436934366734, 34.69110077057522], [-77.4367428133036, 34.69122751198742], [-77.43661669066073, 34.69158837527262], [-77.43652928242997, 34.6917119003278], [-77.43630390876324, 34.691965005822716], [-77.43609406259736, 34.69222964244258], [-77.43560319837925, 34.69250620166229], [-77.43537955314602, 34.6925572918535], [-77.43522474003058, 34.69258014526561], [-77.43487830114074, 34.692811796749154], [-77.43470330277695, 34.69294748171744], [-77.43439889411204, 34.69320322333266], [-77.43407199960902, 34.69341114658873], [-77.43390634246818, 34.69359005663236], [-77.43358556286687, 34.69399237959506], [-77.43355942260001, 34.694027809607476], [-77.43354967496744, 34.69405295159972], [-77.4334797122068, 34.69418164950017], [-77.43330587596617, 34.69449821097162], [-77.43315015060372, 34.694895487349356], [-77.43311217513747, 34.69498953824908], [-77.43307975896944, 34.6950962638895], [-77.43303803816346, 34.695522672209805], [-77.43306004153372, 34.69563218464147], [-77.43307193573803, 34.695992312552946], [-77.4330952646323, 34.69610173722901], [-77.43307643882342, 34.6962705821106], [-77.43313218643097, 34.69667370246109], [-77.43310079606456, 34.69687305132913], [-77.43309028328004, 34.69693857937706], [-77.43306924282093, 34.697006610344516], [-77.43299680054339, 34.69718542108285], [-77.43295470068603, 34.697567180669644], [-77.43288202884773, 34.69770434774853], [-77.43284292894035, 34.69787345213949], [-77.43288176325001, 34.69826331110458], [-77.43263506922288, 34.69854033289522], [-77.43208140851043, 34.6990145152857], [-77.43203111427125, 34.699048776935015], [-77.43197911166023, 34.699065818839955], [-77.43139558301463, 34.69916977065858], [-77.43119633496006, 34.69917994338314], [-77.43073825605387, 34.69922652417931], [-77.43033327982235, 34.69926489175956], [-77.43010191166391, 34.69921076434699], [-77.42985722330329, 34.69911944126703], [-77.42950599752879, 34.69905528630421], [-77.42927923019704, 34.69903764113076], [-77.42919449859319, 34.699024344833845], [-77.42896723804628, 34.69904444429193], [-77.4288665649839, 34.69905019360705], [-77.42880542128076, 34.69907422717771], [-77.42869202206838, 34.69915928899556], [-77.42855781765655, 34.69926717926023], [-77.4286327017918, 34.69947651793444], [-77.4286678606007, 34.69958519210738], [-77.42867872899033, 34.69961121921336], [-77.42868683288671, 34.69967126408017], [-77.42872765061085, 34.700037187934925], [-77.42874177034265, 34.700170102924055], [-77.42879733252249, 34.70039677491265], [-77.42882435551158, 34.70044321799991], [-77.42906842907271, 34.700562680273904], [-77.42906963841092, 34.70056316883959], [-77.42910399502577, 34.700576294671265], [-77.42935037076845, 34.70067010334617], [-77.42936942460135, 34.70068075571831], [-77.42963508529014, 34.70082396681813], [-77.42980461706615, 34.70092693536127], [-77.43011833870497, 34.70121050182578], [-77.43013433185011, 34.701235734290925], [-77.430141742131, 34.70128793512636], [-77.43019140370095, 34.70127647530272], [-77.43033898483444, 34.70137352695953], [-77.43029557899516, 34.701446750658434], [-77.4301703938842, 34.701508234270946], [-77.43006422473688, 34.70155580958659], [-77.42993785897289, 34.701609882179], [-77.42982683184368, 34.701667637901494], [-77.42930420999312, 34.701967331181805], [-77.42925893636661, 34.70199583904156], [-77.42923657866882, 34.70205674007181], [-77.42907668912233, 34.702523474653184], [-77.42906809197228, 34.702573430218386], [-77.42902510340923, 34.702931781807585], [-77.4290080643241, 34.70304486235318], [-77.42901263667113, 34.703060143391966], [-77.42921175776254, 34.70341440467614], [-77.42939201270731, 34.703751857106205], [-77.42939734370037, 34.70377519470051], [-77.4294186334712, 34.70378669740544], [-77.42946321973906, 34.703825418999536], [-77.42990338816895, 34.704326410690236], [-77.43000720650403, 34.70441348438132], [-77.43044178291176, 34.70467700872053], [-77.4304427581631, 34.70467741579108], [-77.4304463993158, 34.70467957616766], [-77.43089234982637, 34.704936904282974], [-77.43098883416584, 34.70500525889741], [-77.43115133277593, 34.705088886440706], [-77.43135654469097, 34.7051895906866], [-77.4315343914154, 34.70533490704061], [-77.43177425668271, 34.70546167234095], [-77.43181696943398, 34.70571781797349], [-77.43163682066766, 34.70588235151675], [-77.43149781438733, 34.70616529499654], [-77.431426306799, 34.706286102045325], [-77.43138470345859, 34.70651700721232], [-77.43144719457642, 34.7067066552265], [-77.43149105818283, 34.70713972988141], [-77.43152022736896, 34.70729124620017], [-77.43151071484556, 34.707357203356], [-77.43146923804544, 34.70777503084176], [-77.43147522616044, 34.70783457093837], [-77.43144084409668, 34.7082791371066], [-77.43146911549738, 34.70859947146633], [-77.43142319649338, 34.70893449430713], [-77.4315004517951, 34.709882148581286], [-77.43158770116901, 34.710003414883445], [-77.43247780463722, 34.71093481481144], [-77.4328080427627, 34.71127976156538], [-77.43353688488902, 34.71170513646329], [-77.43448926798919, 34.71203943923665], [-77.43468566128203, 34.71216551857716], [-77.43494195459442, 34.7121748901076], [-77.43690561511033, 34.7129969109091], [-77.43707144500284, 34.71278141319134], [-77.43816114503454, 34.71205755484464], [-77.43902272642131, 34.711590960847495], [-77.43988365760688, 34.710112590927544], [-77.44032892257111, 34.70981137977596], [-77.44040736779574, 34.709746299895855], [-77.44059172645868, 34.709475588647365], [-77.44121358718344, 34.70955752685238], [-77.44309185386108, 34.70969587425665], [-77.44552948392989, 34.71213360144753], [-77.44706926910003, 34.71367342515609], [-77.447241663565, 34.71418410256743], [-77.4475298632106, 34.714563946982736], [-77.44905806857994, 34.7169973009978], [-77.44892413798733, 34.717678925465165], [-77.4474504938199, 34.719008305621855], [-77.44562057526687, 34.72200342687489], [-77.44515035684985, 34.72267677240054], [-77.44495572218898, 34.72315777063624], [-77.44428050128147, 34.72613406088669], [-77.44580734193683, 34.72690222973207], [-77.4474928328437, 34.7273017004826], [-77.44820770293447, 34.72746919672627], [-77.44840051625721, 34.72798595511202], [-77.4484626166922, 34.72830609612994], [-77.44818792038949, 34.728436933362794], [-77.4475871947906, 34.72961461215305], [-77.44735754909507, 34.73015609316411], [-77.44736244512877, 34.73020490461044], [-77.4469428010607, 34.73112922441872], [-77.44695652441456, 34.73126715568485], [-77.44668132504748, 34.731956723794084], [-77.446611559639, 34.73213153100403], [-77.44641351769599, 34.73238661069299], [-77.44619008482023, 34.73264955206806], [-77.44586330895521, 34.732616223380006], [-77.44546018574948, 34.73253516012263], [-77.44510627394942, 34.73237461028065], [-77.44471185066413, 34.732203901433216], [-77.4443326992851, 34.732000113797056], [-77.44379294392974, 34.731694530165036], [-77.44378187086944, 34.73168796513751], [-77.44376386587629, 34.73167729019085], [-77.44374470696572, 34.73168898832603], [-77.44375446792483, 34.7317105860974], [-77.44360082385941, 34.73219773741804], [-77.44321923705564, 34.7322829450314], [-77.4429438934024, 34.73236839705834], [-77.44284355729448, 34.73241695211633], [-77.4426356262355, 34.73241954277784], [-77.44243908698286, 34.73250393362386], [-77.44228218393751, 34.73243950976275], [-77.4420553304731, 34.73241961458002], [-77.44166855657602, 34.73234442270555], [-77.44136537441072, 34.732245432137375], [-77.44089565211505, 34.73237063820477], [-77.44107354066155, 34.73282928742511], [-77.44146155545525, 34.73305989640055], [-77.44196772376543, 34.733348995856396], [-77.44170601113498, 34.73377182269316], [-77.44169965600216, 34.73390726447627], [-77.44162450287098, 34.734022857704716], [-77.44175995753835, 34.73424455152626], [-77.44189014005829, 34.734274193727934], [-77.44226227948114, 34.73445798942056], [-77.44233684090344, 34.7344666904936], [-77.44255253895278, 34.73434709234697], [-77.44264113212353, 34.7343291510325], [-77.44270499935473, 34.734302221975064], [-77.44288689548975, 34.73430468837585], [-77.44302883241126, 34.73429096060701], [-77.44307113949031, 34.73428386185528], [-77.4431541091257, 34.73427775155524], [-77.4434766787405, 34.73419860977944], [-77.44369588056406, 34.734201436481285], [-77.44395729386935, 34.734235973650705], [-77.44407929028253, 34.73425353684899], [-77.44431999174024, 34.73426032650231], [-77.44444259026977, 34.73428098016629], [-77.44479030733025, 34.7344032514482], [-77.44483780926043, 34.73468665486574], [-77.44492668462851, 34.73479275960029], [-77.44503852446388, 34.734936081777036], [-77.44500569159065, 34.73520062168491], [-77.444883861823, 34.7354410676722], [-77.44464017594653, 34.73580515378934], [-77.44472174227428, 34.73594344817285], [-77.44465097786886, 34.73611646592113], [-77.44468265677358, 34.736233845415946], [-77.44472204253267, 34.73623252508285], [-77.44506181856686, 34.73612864914887], [-77.44521171878247, 34.73611461685101], [-77.44541379928327, 34.735867117669386], [-77.44574027182439, 34.73599972616148], [-77.44596216136617, 34.736146332753634], [-77.44615275457306, 34.73644334939997], [-77.44673800227362, 34.736983549524204], [-77.44713647848154, 34.73744197414571], [-77.44734162249482, 34.737520282923526], [-77.44778662582945, 34.73779150244956], [-77.44806133786722, 34.73794886776261], [-77.44836110487478, 34.73802206039255], [-77.44867580813741, 34.73820392729592], [-77.44892047538889, 34.73830486123164], [-77.44925123093564, 34.738345154010155], [-77.44974021107714, 34.738814475968574], [-77.44991512819594, 34.73896094812976], [-77.45000201743085, 34.73899910785515], [-77.45019477288172, 34.73918924039715], [-77.4505003886631, 34.73949284868203], [-77.45060154425165, 34.73956734397939], [-77.45058924050997, 34.73967002221953], [-77.45090335818686, 34.74031646673812], [-77.45091012426582, 34.74033142471996], [-77.45091960268721, 34.74034440561735], [-77.45135894281405, 34.74095818941952], [-77.45146221603014, 34.74099388006807], [-77.4514568179647, 34.741091029609485], [-77.45178444298216, 34.74170395715014], [-77.45182526230774, 34.74173523273382], [-77.45184846590833, 34.74178680897649], [-77.45225568364768, 34.742291593407614], [-77.45236109739913, 34.74240447490395], [-77.45255098352197, 34.74259115110453], [-77.45267569911289, 34.74271961365574], [-77.45266115320634, 34.743106671434326], [-77.4526749288619, 34.74316636983555], [-77.45266344532949, 34.74318942057648], [-77.45265961638279, 34.743213737942426], [-77.45271138472688, 34.743597589976574], [-77.4530193595719, 34.7438010726343], [-77.45308691374905, 34.74385161502054], [-77.45314664678457, 34.743862373359434], [-77.45361808635018, 34.74403113206963], [-77.45368096839984, 34.744014649874906], [-77.45380104641175, 34.74414568866667], [-77.45392499568696, 34.74443040672894], [-77.45412490957584, 34.744817773752956], [-77.45378630820622, 34.74505319706522], [-77.45336333720141, 34.74511295849668], [-77.45304313366167, 34.74533476286116], [-77.45231329986841, 34.74530311357263], [-77.45200997422847, 34.745358218510674], [-77.45135382963059, 34.74496803774482], [-77.45097061787177, 34.744770489868586], [-77.45090634053635, 34.744740023075515], [-77.45050688591375, 34.74407114990791], [-77.45046817952826, 34.74403799367213], [-77.4502589515296, 34.74377893708754], [-77.44999423567732, 34.7434597012099], [-77.44984355987951, 34.74345510323133], [-77.44893739822774, 34.74311611193569], [-77.4487622075871, 34.743285500294064], [-77.44812379053474, 34.74328264522302], [-77.44812122135957, 34.74328098126622], [-77.44812147774843, 34.743278868805], [-77.44803762919726, 34.7426918320423], [-77.44841164773082, 34.742280708011094], [-77.44844296682405, 34.74230878733754], [-77.44842991189313, 34.74225931465598], [-77.4487553788159, 34.74182451551334], [-77.44893225541959, 34.74161270808689], [-77.44900413557096, 34.74135239625961], [-77.44897914090576, 34.74113726517717], [-77.44914127654289, 34.74084129288423], [-77.44914452306055, 34.7406218226856], [-77.4491565206673, 34.740567116055814], [-77.44898268743785, 34.740306514870106], [-77.44892502040886, 34.74026699712073], [-77.44874243625772, 34.740181500864104], [-77.44869960072145, 34.740176848922175], [-77.44852511259091, 34.74020038867222], [-77.44835043342673, 34.74027563703443], [-77.44813438693222, 34.74030988364129], [-77.44780160465612, 34.74037336539834], [-77.44734284796019, 34.74051240485467], [-77.44696916322535, 34.7406175187377], [-77.44693232265575, 34.740628739068065], [-77.44659589857, 34.74078774131338], [-77.445689575497, 34.74072428643988], [-77.44566548381442, 34.74069113075432], [-77.44557345184775, 34.740613195962325], [-77.44516275857224, 34.740212488382284], [-77.44491728968276, 34.74028922754386], [-77.44477092127558, 34.740214778364894], [-77.44456528862133, 34.74006135983667], [-77.44416388974771, 34.73966168457151], [-77.44412748072045, 34.7395904302245], [-77.44406312610279, 34.73958080296786], [-77.44361871734273, 34.738912219606895], [-77.44361778310147, 34.73891027668747], [-77.44361661398368, 34.738907908819755], [-77.4436088319374, 34.73889998190967], [-77.44306495944626, 34.738598455786224], [-77.44296160606044, 34.738682662095954], [-77.44259599891264, 34.73874106375652], [-77.4423348753009, 34.73899916503491], [-77.44233239072253, 34.739021867282055], [-77.4422979770284, 34.73903325656466], [-77.44203908708498, 34.739326740323875], [-77.44193883730873, 34.73944340030506], [-77.44183874413957, 34.7396525864206], [-77.44182844654291, 34.73996385776525], [-77.44165205019306, 34.74017689582509], [-77.44164994253278, 34.740186424480235], [-77.44158067793595, 34.740436322374364], [-77.44128749805627, 34.74077541112986], [-77.44121516096524, 34.74097158431603], [-77.44110136828395, 34.74095285592552], [-77.44088085949345, 34.74117323340059], [-77.44082583535348, 34.741290664166], [-77.44066701608416, 34.741571613309176], [-77.44064694760607, 34.741787194179494], [-77.44065858663674, 34.74193063155381], [-77.4406363664481, 34.74206301065604], [-77.4405760433581, 34.742170668701874], [-77.44053060726297, 34.742305575888565], [-77.44050116144395, 34.74244272237622], [-77.44045481447054, 34.742558610623696], [-77.44043665868423, 34.74269065961105], [-77.44040848884363, 34.74282193936928], [-77.44039840700106, 34.74293200295977], [-77.44037951364572, 34.74309133004163], [-77.4403601273275, 34.743313302731295], [-77.44035456704594, 34.74336212786291], [-77.44035318954941, 34.74339727810268], [-77.44036740431517, 34.74348939639701], [-77.44047393195169, 34.74379331287714], [-77.4405948026579, 34.74400507854816], [-77.44076518738697, 34.74433070877217], [-77.44102841988148, 34.744454794638386], [-77.44097424373332, 34.744696657173314], [-77.44111287850806, 34.74529026175232], [-77.44111184037871, 34.745303748613814], [-77.44110998113416, 34.7453135897116], [-77.44111751370943, 34.74532914406468], [-77.44127612800278, 34.74569068306731], [-77.44131788586083, 34.745744708421256], [-77.44136412086928, 34.74570055923941], [-77.4415658581479, 34.7455698041478], [-77.44126519674055, 34.745357320541416], [-77.44168882880903, 34.74548321549534], [-77.44171595947871, 34.74547703070424], [-77.44207743626063, 34.745370222861894], [-77.44285474805595, 34.74547846618589], [-77.44299602504198, 34.74548535144142], [-77.44307603824177, 34.74550577085722], [-77.44359701106502, 34.74562446279323], [-77.44366938892836, 34.74563812974161], [-77.44407864078019, 34.74564783726205], [-77.44423934230275, 34.74562067246213], [-77.4444038881181, 34.745724944028325], [-77.44485651532797, 34.74570383689768], [-77.4450200894929, 34.745690031889666], [-77.44527193913484, 34.745638883237575], [-77.44543138679886, 34.74561408871497], [-77.4455368718603, 34.74556860426656], [-77.4458479683138, 34.745546771623445], [-77.4461767399059, 34.7453959073379], [-77.44624182211652, 34.74534834704911], [-77.44671064704985, 34.745460335318626], [-77.44684774877948, 34.745470374069725], [-77.44727838125476, 34.7457806833763], [-77.44765714248484, 34.746153181602715], [-77.44776664744066, 34.746727146384416], [-77.44786696717547, 34.748222274774314], [-77.44713068609423, 34.74892552760406], [-77.44678343922278, 34.7483034416673], [-77.44608027178467, 34.7481232868798], [-77.4455042426305, 34.74797569854726], [-77.44482984459972, 34.748012424449776], [-77.44462925524785, 34.747416585382936], [-77.44436717493295, 34.74739519082117], [-77.44424829215252, 34.74742000835272], [-77.44418358852042, 34.747494786313936], [-77.44413506117468, 34.747622780104514], [-77.44460529918321, 34.74820109864512], [-77.44468209035303, 34.748523116292816], [-77.44517209412106, 34.748975767967664], [-77.44563789099197, 34.749679775496816], [-77.44558957901982, 34.750587261831896], [-77.44679551873291, 34.75008409729423], [-77.44971266212202, 34.7488668748487], [-77.45262971660524, 34.74764958581654], [-77.45408821050653, 34.74704091633349], [-77.45481744912198, 34.74673657535074], [-77.45554668218058, 34.74643223020739]], [[-77.52010028734605, 34.719465124951896], [-77.51984787061338, 34.71911171960701], [-77.5191178758376, 34.718089641152474], [-77.51826814866496, 34.71689987891108], [-77.51815187911566, 34.71670729289191], [-77.51804635470461, 34.716468514343205], [-77.51747479085645, 34.715204149573154], [-77.5169016885227, 34.71418802765875], [-77.51668672948601, 34.71374740806569], [-77.51494144222183, 34.71126902087712], [-77.51460738550014, 34.7106142104129], [-77.51281704008038, 34.708220498189135], [-77.51251481318918, 34.707920405323726], [-77.51076274264092, 34.70616838305584], [-77.51016396700832, 34.705757352533006], [-77.50726861337304, 34.70533586995103], [-77.50669567572001, 34.706157219024746], [-77.5062208192924, 34.70661327922176], [-77.50540733740027, 34.70696193874768], [-77.50477091325439, 34.707234710638154], [-77.50414528828739, 34.70750283431332], [-77.50373859277235, 34.708443541588146], [-77.50492777652447, 34.708624517340645], [-77.50607394882383, 34.70936036889256], [-77.50705120165566, 34.71014983007525], [-77.50765233013664, 34.71037977942709], [-77.50908894167357, 34.71129180681865], [-77.50925072838106, 34.71141148317492], [-77.50941424203945, 34.711576468107225], [-77.51068178516013, 34.712685639766455], [-77.51303939085051, 34.714748540889865], [-77.51378432551284, 34.71346868568526], [-77.51415222243709, 34.71480712093832], [-77.51366234900351, 34.715293608259245], [-77.5148259357621, 34.71631167868054], [-77.51536127880924, 34.71689013535818], [-77.5154343671174, 34.71695041280403], [-77.51550940802542, 34.7170554686832], [-77.51592560289593, 34.71763814210689], [-77.51702847231978, 34.71870288387345], [-77.51730039410148, 34.71905588166918], [-77.5189455908693, 34.71994793867728], [-77.51969742712268, 34.71963358238522]], [[-77.47890443026951, 34.488170308265424], [-77.47811234330129, 34.488667756410315], [-77.4772352789623, 34.48908895226339], [-77.47625583692566, 34.49014207769562], [-77.4760939119677, 34.49080230184988], [-77.47770385457736, 34.49084525887068], [-77.47955178388486, 34.49053573881685], [-77.47918282934974, 34.48918761152276]], [[-77.22151371502652, 34.655602339395216], [-77.2241082201734, 34.65559550840469], [-77.22407752290479, 34.655804604188845], [-77.22417715527936, 34.65595184222736], [-77.223880386818, 34.6560450579475]], [[-77.26230041954885, 34.58999861984519], [-77.26230633936949, 34.59003286649277], [-77.2615657064579, 34.59088350288969], [-77.26119399710643, 34.59157843090166], [-77.26044568367533, 34.59219931777781], [-77.26065867922996, 34.592697506561414], [-77.25954969297821, 34.59274516880417], [-77.25911344292005, 34.593433030710294], [-77.25970667747956, 34.59356529011592], [-77.26025016900725, 34.59374218269798], [-77.26042343796578, 34.59387393491048], [-77.26074253478141, 34.59380594311488], [-77.26086625210732, 34.59365651226619], [-77.26087367179228, 34.593508697473276], [-77.26110579320348, 34.59281448680461], [-77.26130749633667, 34.59274854481214], [-77.26198391702991, 34.5922808857142], [-77.26295867230081, 34.59219566985862], [-77.2639462961723, 34.59235800404123], [-77.26497298506632, 34.59230996416775], [-77.26636216166817, 34.592133819218326], [-77.26750081437885, 34.59192884002857], [-77.27050251857985, 34.590615023906544], [-77.27168646408549, 34.590393004925694], [-77.27234610241004, 34.58984566087422], [-77.27334734051074, 34.5888366543935], [-77.27417102797631, 34.58810373830046], [-77.27452525172784, 34.58765971220467], [-77.2743379916975, 34.58623151170285], [-77.2768029344189, 34.58460258269043], [-77.27680559999428, 34.584540062614664], [-77.27689195416689, 34.58450681102865], [-77.27750342553723, 34.58287037871483], [-77.27763542204399, 34.58271992501917], [-77.27770299087632, 34.5825993723438], [-77.27821727611217, 34.582027422425945], [-77.27836197989308, 34.581834331824915], [-77.27837469052852, 34.58180905091483], [-77.27870554239568, 34.5813899852091], [-77.27864397957617, 34.581183531566126], [-77.27849126592474, 34.58103049346195], [-77.27829573916537, 34.580886471671406], [-77.27742920669327, 34.580252037811334], [-77.27701544560225, 34.580113733114885], [-77.27627524904636, 34.580015657515304], [-77.27564063448023, 34.58045533166554], [-77.27545940516899, 34.58060453022107], [-77.27540355410557, 34.58065929484138], [-77.27523317891708, 34.58078151559563], [-77.27430733215499, 34.58151582869546], [-77.27398029109294, 34.58191795076492], [-77.27198545518986, 34.582276038759424], [-77.2716654164382, 34.582488246045784], [-77.27117849030712, 34.582611705681316], [-77.26980236575213, 34.58346030478877], [-77.26776959291564, 34.58382999147917], [-77.26751928066267, 34.58405885956295], [-77.26704642353873, 34.58411490070844], [-77.26648429840827, 34.58445289682192], [-77.26536881800381, 34.58458389637043], [-77.26519698616735, 34.58462253682194], [-77.2649683329763, 34.585495074823925], [-77.26520146374196, 34.586009219353386], [-77.26544487757532, 34.58647522139273], [-77.26546778629088, 34.58664430961589], [-77.26575377955677, 34.58667040735706], [-77.26594654168295, 34.58698600584479], [-77.26607699741353, 34.58715096657317], [-77.26610524201547, 34.58740187229444], [-77.26601366200153, 34.58746261930223], [-77.26568092319278, 34.587681758674734], [-77.26520638184485, 34.587752540221395], [-77.26413155878475, 34.58825728754259], [-77.26405757156995, 34.58886705468162], [-77.26353327082425, 34.58915290876084], [-77.26244955655633, 34.58986920862815], [-77.26233582493151, 34.589964877605695]], [[-77.37600444221596, 34.533926252641095], [-77.37598322616883, 34.534050839689094], [-77.3762640835854, 34.534378483245725], [-77.37621140886833, 34.53460405465758], [-77.37656369978559, 34.53448062351371], [-77.37680424584983, 34.534450217291734], [-77.37695636914593, 34.53447485667086], [-77.37707085363367, 34.534436155494944], [-77.37735172978876, 34.534350414909355], [-77.37763971796582, 34.53418017513657], [-77.37786046340348, 34.533970623999274], [-77.37806744802577, 34.53368156841247], [-77.378106704376, 34.533623192918164], [-77.37811944745843, 34.53359991791381], [-77.37815544389628, 34.53352822802102], [-77.37835615522162, 34.53334239989436], [-77.37816117910192, 34.53327523952171], [-77.37778345662015, 34.53342496491989], [-77.37776870324062, 34.53342930613094], [-77.37776512754348, 34.53343043505594], [-77.37776045092522, 34.5334311877975], [-77.37737117391057, 34.533493057739506], [-77.37710148859401, 34.53360143483722], [-77.37697545889557, 34.53363329849493], [-77.3767690548647, 34.533699009283666], [-77.37658136423951, 34.533702059581366]], [[-77.36078341492394, 34.57086315327532], [-77.3607775432923, 34.570866239314945], [-77.36045445488563, 34.57097655954208], [-77.3603893412781, 34.57104337479013], [-77.36020441097514, 34.571167771586175], [-77.36006237098283, 34.57131506986056], [-77.36014881093067, 34.57111583353578], [-77.36013334186018, 34.570952661075076], [-77.36008636888484, 34.570632716101514], [-77.3600639259503, 34.57053810144644], [-77.36003773906207, 34.57049650390037], [-77.35999565854084, 34.57045767796414], [-77.35985039162799, 34.57030091696578], [-77.35972623398598, 34.57029629668253], [-77.35960176412166, 34.57029166471972], [-77.3594759729175, 34.5703337235354], [-77.35934142829858, 34.57036161806156], [-77.35924098108393, 34.57062062004468], [-77.35923009765185, 34.57065814470163], [-77.35935575704183, 34.57079979481258], [-77.35940049899173, 34.57085018381882], [-77.35947094834577, 34.57090740114745], [-77.35960139061629, 34.571013343353705], [-77.35960920781264, 34.571019692292936], [-77.3596351083666, 34.571024390776735], [-77.35975485486985, 34.571172611269866], [-77.359974089035, 34.57142285186928], [-77.36018329720567, 34.57179457567432], [-77.36028029907834, 34.57189764494666], [-77.36038892084343, 34.57187178785402], [-77.36071430219097, 34.57221642113683], [-77.36083756008559, 34.57218399543053], [-77.36100635370568, 34.57185985605041], [-77.361118389092, 34.57165994774482], [-77.36114498534373, 34.57162159932359], [-77.36117708788434, 34.571483481654994], [-77.36123711728108, 34.571218299427656], [-77.36117725719077, 34.57114362955356], [-77.36104873344466, 34.570959464089775], [-77.36078989468457, 34.570865119079045]], [[-77.24639707801052, 34.60208141141902], [-77.24636777042952, 34.602884778103736], [-77.24664335264809, 34.60324520518695], [-77.24706577161015, 34.603607783128716], [-77.24916409736825, 34.603771218481214], [-77.25055213080668, 34.6033836382019], [-77.25084441717922, 34.60340744318369], [-77.25288616608184, 34.603398052344886], [-77.25106062437247, 34.6030613028221], [-77.25075054557172, 34.60299162477794], [-77.2501174832414, 34.60276094148185], [-77.2475956502579, 34.60256098859385]], [[-77.3323158780397, 34.684304212519784], [-77.3326975859368, 34.684305741486725], [-77.33291777143046, 34.68429277568075], [-77.3331939771675, 34.6842843535815], [-77.33353156783605, 34.68424036557431], [-77.33372228852653, 34.684305633777164], [-77.33407834693581, 34.684418606215345], [-77.33410110354555, 34.68442441170588], [-77.33439357308215, 34.684577428291306], [-77.33435948994983, 34.68531804704666], [-77.3331637434918, 34.68552360982308], [-77.3331582603828, 34.68552512890458], [-77.3331529312955, 34.685524774971974], [-77.3322870514419, 34.685409831002865], [-77.33199691240078, 34.68540189798522], [-77.33144616380687, 34.685287847535946], [-77.33142593083329, 34.68528407103368], [-77.33087934548803, 34.68512800619647], [-77.3306784261862, 34.68507089776379], [-77.3303541126117, 34.684938266328004], [-77.33034119312644, 34.684920074285664], [-77.3303198540322, 34.68492729872292], [-77.3299507088456, 34.68484250265982], [-77.32979463818482, 34.6847410595909], [-77.32950867917836, 34.684566820234515], [-77.32994179982802, 34.684234668750925], [-77.3301946293394, 34.68417779548997], [-77.33031794781584, 34.68416586695166], [-77.3305690963114, 34.68413582717057], [-77.3307577077569, 34.68422166880106], [-77.33108550357561, 34.684418572294], [-77.33166327802272, 34.684313230879354], [-77.33172267915054, 34.68428572908741], [-77.33175515770152, 34.684285058874764]], [[-77.4242330779256, 34.50091687932166], [-77.42435090949566, 34.50086370227781], [-77.42445906791747, 34.50082764161131], [-77.42453670093018, 34.50076350108185], [-77.42455031336412, 34.50066355629013], [-77.42461445812593, 34.500598586421354], [-77.42466859731778, 34.50044365078864], [-77.42434259756857, 34.500401051818606], [-77.42416868885711, 34.50047803561283], [-77.42393849430643, 34.50056406205214], [-77.42380346203758, 34.500597569227054], [-77.42373457602031, 34.50064026878922], [-77.42353485049092, 34.500764069504264], [-77.42319418146414, 34.50112720066948], [-77.42311293992472, 34.50115313042188], [-77.42304077586577, 34.501193749190506], [-77.42305225231706, 34.501287484106484], [-77.42322670840333, 34.501246341003245], [-77.42327394324957, 34.50123140096052], [-77.42332809296403, 34.50120842586293], [-77.4240212483204, 34.50100052549957]], [[-77.34639466003024, 34.629995909273966], [-77.34651967761059, 34.62997604209048], [-77.34660599044915, 34.630040173481646], [-77.34672873459738, 34.629974215792], [-77.34682764724886, 34.629915727261874], [-77.34685053021228, 34.629892391708275], [-77.34688548907747, 34.62978696615458], [-77.3469895649723, 34.62966229829179], [-77.34705165322109, 34.6294376592977], [-77.34706965783818, 34.62929170917984], [-77.34732521762521, 34.62920617680506], [-77.34733442272106, 34.629192938940655], [-77.34733104449779, 34.628868548979334], [-77.34741835613153, 34.628759411289536], [-77.34755897822015, 34.62841415723768], [-77.34778729523076, 34.6283200786451], [-77.34782651536428, 34.62828135676973], [-77.34787968909725, 34.62804638928587], [-77.34818334127313, 34.628064470920485], [-77.34835052723486, 34.627937287597355], [-77.34841534960873, 34.627879311605255], [-77.34856416413275, 34.62775804763576], [-77.34860575387886, 34.62772348455292], [-77.34860198207946, 34.62759584756323], [-77.3486223231993, 34.62740535662673], [-77.34858624639291, 34.62726647548973], [-77.34843502489481, 34.62723048480856], [-77.34820069433565, 34.62719183772715], [-77.34804440108998, 34.62719136316158], [-77.34759434696949, 34.62711277367517], [-77.3475798570541, 34.62728799405061], [-77.34749495971919, 34.627131295140984], [-77.34742574007372, 34.62707039451686], [-77.34708219840468, 34.62680052274689], [-77.34683996507897, 34.62630683884566], [-77.34671649289014, 34.62617741268012], [-77.34623705554446, 34.6261778555017], [-77.34599095654349, 34.62557942987044], [-77.34602557035898, 34.624980793274794], [-77.3461545895374, 34.624712958510415], [-77.34585397872816, 34.624640083466545], [-77.34576892100202, 34.62464767446138], [-77.34560583614645, 34.62455742404636], [-77.34557559577931, 34.624560637712726], [-77.34543437536242, 34.62457564524603], [-77.34529952061615, 34.624589976120795], [-77.34525482076248, 34.6245947262899], [-77.3451304517512, 34.624655999405206], [-77.34497902129816, 34.62467080990118], [-77.34466627961834, 34.62469589297632], [-77.34449464097142, 34.624677551433805], [-77.34431037234229, 34.62471368090381], [-77.34418380466511, 34.62472351002485], [-77.3441124746723, 34.62464448676856], [-77.34388289202856, 34.62464812950462], [-77.34385025709676, 34.62465643964315], [-77.3438048821751, 34.62467956184962], [-77.34353414093327, 34.62465609149392], [-77.34353125816904, 34.62466177257929], [-77.34330224317735, 34.6251009030543], [-77.34330021417455, 34.62510485316035], [-77.34330017892067, 34.62510485981982], [-77.34330013726967, 34.625104913783126], [-77.34329997627508, 34.62510539239118], [-77.3433004032256, 34.625105794043975], [-77.34353210428766, 34.625793853655324], [-77.3437247120527, 34.62589061584433], [-77.34396155418676, 34.62609154856425], [-77.34445670957132, 34.62618478072841], [-77.34481739906727, 34.62628375162812], [-77.34503538423174, 34.62626129820843], [-77.34542050424098, 34.626501762883166], [-77.34517655086455, 34.626856920125604], [-77.34522248272455, 34.62737295512251], [-77.3451428793903, 34.627492704547684], [-77.34519758014163, 34.628175625050595], [-77.34520173803126, 34.62821488368102], [-77.34520226815064, 34.62821973044901], [-77.34520262815941, 34.62822650633807], [-77.34520948154164, 34.628234847929306], [-77.34552898736511, 34.62872839639034], [-77.34583340919467, 34.62880467116301], [-77.3459678491549, 34.62882298160164], [-77.34607179841576, 34.628801622574635], [-77.34635178550883, 34.628905880291306], [-77.34619649704777, 34.6291436788765], [-77.34603034001117, 34.629133923142476], [-77.345861982743, 34.629217149851115], [-77.34546469726484, 34.62950480147876], [-77.34534440303617, 34.62968252833657], [-77.3448658236245, 34.6297103444079], [-77.34475764771892, 34.62980190484014], [-77.3445796797661, 34.62987926986786], [-77.34445208992673, 34.63001073451551], [-77.34440411873881, 34.63013904268553], [-77.34445192638893, 34.6302872798548], [-77.34456898155422, 34.630416683886], [-77.34463908437772, 34.63049074390019], [-77.34497204741547, 34.630783339239585], [-77.3450296364513, 34.63086552384189], [-77.34513133886539, 34.63103154814247], [-77.34520881041352, 34.63089036925089], [-77.34535326615915, 34.630730993790536], [-77.34538706263938, 34.63038957919923], [-77.34562927029269, 34.630323694252006], [-77.34580365420643, 34.63011132152254], [-77.34598665846724, 34.63011847599902], [-77.34619518139075, 34.629954127502685]], [[-77.38460653267146, 34.65814341464145], [-77.38530020574885, 34.65762794173145], [-77.38567759053876, 34.65751081332197], [-77.38571826419934, 34.657350928493294], [-77.38595021755226, 34.657222930168984], [-77.38609531410577, 34.65703566990123], [-77.38634565474041, 34.65699508217105], [-77.38643897336449, 34.657155664924], [-77.38692267806444, 34.65733336792894], [-77.38730686571392, 34.657388589752166], [-77.38794057750238, 34.65742273270385], [-77.38797689582607, 34.65620907462545], [-77.38800952487057, 34.656153287581446], [-77.38819863995606, 34.65606786139019], [-77.38811345852417, 34.65591010268715], [-77.38795556787935, 34.65546049972626], [-77.38780434531738, 34.655961942754644], [-77.38649419662941, 34.65520756257751], [-77.38603297483897, 34.65564375924957], [-77.38585783667247, 34.65566328342259], [-77.38533014842382, 34.655786953589235], [-77.38507109339663, 34.655655840830796], [-77.38497595614126, 34.655112576627545], [-77.38484833756499, 34.6548424588538], [-77.38448919300735, 34.654791871366136], [-77.38415076858357, 34.65444951970407], [-77.38375034553297, 34.654303372930606], [-77.38367484919301, 34.65424351279613], [-77.38309792148344, 34.654239297825576], [-77.38309720948155, 34.65423911433221], [-77.38309693278606, 34.654238801009775], [-77.38309079736504, 34.6542335786945], [-77.38264788222921, 34.653980403371456], [-77.38245225166277, 34.65421755208533], [-77.38244563210631, 34.6542987610734], [-77.38244533064747, 34.65432909432297], [-77.38244501452601, 34.65438247617361], [-77.38235563944204, 34.654881742896094], [-77.38230202658512, 34.6550610897085], [-77.3822680763682, 34.655197518326105], [-77.3822704878395, 34.655469240982356], [-77.38233288271184, 34.65575396153858], [-77.38242316826938, 34.65602021259002], [-77.38258500923831, 34.656403525270406], [-77.3825906956916, 34.656419179225466], [-77.38259712596287, 34.65644080026934], [-77.38271937517061, 34.6568234903704], [-77.38277783510739, 34.657170623770824], [-77.38309931228362, 34.65757607207435], [-77.38312495477703, 34.65761171877721], [-77.38314074146858, 34.65763415264839], [-77.38350193671499, 34.65803406898779], [-77.3836389441903, 34.65807934451582], [-77.38388709190495, 34.65815974496507], [-77.38452829402247, 34.65824185516861], [-77.38453897265502, 34.6582165564868]], [[-77.35607106435519, 34.550689609024175], [-77.35617500796326, 34.55057908209473], [-77.35631786021497, 34.55047249201778], [-77.35637532943954, 34.55034090395252], [-77.35657651351099, 34.550191402292775], [-77.35674234625921, 34.55002273174651], [-77.35697586107038, 34.54989772789796], [-77.35700395825806, 34.549884070918594], [-77.357258382856, 34.549777065744266], [-77.35737236459822, 34.54972805992382], [-77.35748816400024, 34.54964049371749], [-77.35757167981956, 34.54959677766123], [-77.35765632563528, 34.54954532457597], [-77.35772155132254, 34.54950567627832], [-77.35777118173617, 34.54945731729437], [-77.3578209553842, 34.54939921008786], [-77.3578730302668, 34.54933100657337], [-77.35792499098989, 34.549261819435145], [-77.35801313556466, 34.54915080328598], [-77.35803395961369, 34.549123718653235], [-77.35809604131418, 34.549040570016075], [-77.35813716079375, 34.548986448020834], [-77.35814903355742, 34.5489685530888], [-77.35817578616765, 34.54893376437474], [-77.35830352208647, 34.54879534812295], [-77.35837712180282, 34.54871411502337], [-77.35838364093684, 34.54870613587988], [-77.3584364938078, 34.54861167445371], [-77.35849536180527, 34.548497006136664], [-77.35850364332586, 34.5484440338076], [-77.35852923421088, 34.548408426616405], [-77.35858459903953, 34.5482262005406], [-77.35859488160116, 34.54819199699354], [-77.35859882655062, 34.548185505314756], [-77.35859647383086, 34.54817911151504], [-77.35861102724803, 34.548061336766146], [-77.35859966291706, 34.54794595328865], [-77.3586002620003, 34.54794047498495], [-77.35860079197245, 34.54793446656848], [-77.35861127057011, 34.54770323090254], [-77.35861418004555, 34.547693647297066], [-77.35862115201799, 34.54767768160586], [-77.35864149608427, 34.54746956701659], [-77.35865809763756, 34.54744250007868], [-77.35864337969734, 34.54741948325211], [-77.35860357188089, 34.547397611801486], [-77.3585442170838, 34.547336485484045], [-77.35847908111089, 34.547302442342584], [-77.35835673190773, 34.547241068637845], [-77.35829274182201, 34.547202081112275], [-77.35821575550546, 34.547188564541734], [-77.35802778126006, 34.54716121807662], [-77.35800227565682, 34.54715855179398], [-77.35782413917127, 34.54714548297103], [-77.35773796899016, 34.54713916104163], [-77.35755674147148, 34.54711142870469], [-77.35743276961983, 34.54709164363555], [-77.35714168130937, 34.547171187442245], [-77.35705860883935, 34.547196141497054], [-77.35703654164988, 34.54724982528873], [-77.35694471355714, 34.54744436874387], [-77.35691662106466, 34.547623799872184], [-77.35686528912271, 34.54770062672734], [-77.3569127239762, 34.54776366504923], [-77.35682577137666, 34.547951139262025], [-77.35679480522481, 34.548061273889225], [-77.35670577853172, 34.548213237786875], [-77.35666556369794, 34.548246762522716], [-77.35662031667732, 34.548280358047826], [-77.3564512796591, 34.548390872001924], [-77.35622244797149, 34.54850979004016], [-77.35620545560558, 34.54851963555144], [-77.3561819534845, 34.54853347429682], [-77.35597373073901, 34.548655258798384], [-77.35582287832456, 34.54881330170175], [-77.35581233648438, 34.54882510339905], [-77.35580577104854, 34.54883245344443], [-77.35577539166792, 34.548865689222296], [-77.35565422869098, 34.54899654696441], [-77.35546038090351, 34.54912699826592], [-77.35542261497882, 34.549146931008025], [-77.35539283407331, 34.54915517477683], [-77.35522519747525, 34.54919536416341], [-77.35507037547013, 34.54920920859683], [-77.35502842715934, 34.54921557394172], [-77.35497567880394, 34.54922946740608], [-77.35473294983262, 34.549293400028034], [-77.35463274101492, 34.54934948612703], [-77.35446504091338, 34.549374495635256], [-77.35438065859174, 34.54937035758006], [-77.35424047756703, 34.54933419712048], [-77.35421054026808, 34.54932570507157], [-77.35416621742387, 34.549313295701594], [-77.3539782492888, 34.549260108548026], [-77.35385027969679, 34.54922892209669], [-77.35370142311395, 34.549228210445875], [-77.3534584411262, 34.54919514877485], [-77.35310446138445, 34.549246125907885], [-77.35300411376821, 34.54927311467004], [-77.35266914428595, 34.54937230419745], [-77.35248689959842, 34.5494231078066], [-77.35247156701287, 34.54942758442803], [-77.35246231447431, 34.54943041413896], [-77.35227367198549, 34.549496684098045], [-77.35188118341026, 34.549640062292454], [-77.3518777712569, 34.54963965418494], [-77.35187349484723, 34.549640650082765], [-77.35187061821485, 34.54964371645426], [-77.35186824714013, 34.54964985051515], [-77.35175391171877, 34.54978292432969], [-77.3517063359, 34.549807689314434], [-77.35150723863121, 34.54994083735679], [-77.3514900197916, 34.54995080823516], [-77.3514778380982, 34.549958020890905], [-77.35143355328847, 34.54997875943523], [-77.35127931101971, 34.55005452455207], [-77.3512184241088, 34.550067027326946], [-77.35108168271475, 34.550111907843714], [-77.35085413999364, 34.550138142258696], [-77.3508972118393, 34.55027345396067], [-77.3509311994713, 34.55035885765096], [-77.35105383442134, 34.55049573458691], [-77.35105940584685, 34.55050321483671], [-77.35107233674069, 34.55051848876751], [-77.35115513041649, 34.5506721483101], [-77.35119525993625, 34.55072020199976], [-77.35121797699321, 34.55081195351684], [-77.35126862100506, 34.55095446527068], [-77.35128964338661, 34.551053095910035], [-77.35130043967106, 34.55119470735302], [-77.3513848722879, 34.551389928201644], [-77.35139340857413, 34.55142614876471], [-77.35140701745695, 34.551447012533345], [-77.35144236021749, 34.55150174708714], [-77.35151848679534, 34.5516529688334], [-77.35152304723661, 34.551705545294055], [-77.35156044723067, 34.55181364879783], [-77.35159914612773, 34.55188618166358], [-77.35179426298534, 34.552085898633536], [-77.35180814874712, 34.552100923190274], [-77.35181261192348, 34.5521055804355], [-77.35182099933945, 34.55211044228715], [-77.35197730090404, 34.55222233552265], [-77.35213072004547, 34.55229931885703], [-77.35216444370968, 34.55232210137691], [-77.35220843344764, 34.55233653280851], [-77.35258381023363, 34.55247892858806], [-77.35259156524383, 34.552481655930286], [-77.3525976735763, 34.55248407823942], [-77.35263475549841, 34.55249487287685], [-77.35271440787612, 34.55250939114748], [-77.35279383953525, 34.552490557419326], [-77.35298512225397, 34.55242524032773], [-77.35299170576965, 34.552422992264205], [-77.35299496877363, 34.55242176726206], [-77.35300524983543, 34.55241827037305], [-77.35329213973321, 34.55231798584965], [-77.35338773057971, 34.55227508354517], [-77.35365558653164, 34.552159299967045], [-77.35378412286823, 34.55211110006971], [-77.3538301642324, 34.55208302012827], [-77.35388738188291, 34.55204647698667], [-77.35418217470253, 34.551874730076094], [-77.35430077917502, 34.551815253989645], [-77.35441472183487, 34.55172574732211], [-77.35471546841899, 34.551520276273976], [-77.35484872350352, 34.55141845181281], [-77.3549795445672, 34.55134648960455], [-77.35517455166482, 34.55124689943047], [-77.35518466188886, 34.55124366190955], [-77.35537567695518, 34.551193496123226], [-77.35573679321259, 34.551045788452925], [-77.35575792781395, 34.5510339979909], [-77.3557721469879, 34.551025710521735], [-77.3559145975874, 34.550861852825484], [-77.35600383401497, 34.550762522645286]], [[-77.40114210094114, 34.58396069411344], [-77.40060565218228, 34.583833178464005], [-77.40057493429964, 34.58382377298604], [-77.40055933421381, 34.5838235723596], [-77.40049997852704, 34.58381532787061], [-77.39998929269126, 34.58367089963795], [-77.39978686708206, 34.583673481312324], [-77.39961386416968, 34.583756776572734], [-77.39899879095708, 34.58384117466493], [-77.39885992882337, 34.5839023458677], [-77.39826805135118, 34.58407557571474], [-77.3982107079857, 34.58408345933503], [-77.39816642202398, 34.58410430847084], [-77.39806464010216, 34.58416670972213], [-77.39758210463815, 34.58440817362469], [-77.39742260813965, 34.584548499950124], [-77.39722265818475, 34.58471275582066], [-77.39708986507588, 34.58479797503411], [-77.39666650453717, 34.58518306461357], [-77.39663448707547, 34.585207655071606], [-77.39662632007744, 34.585214559017246], [-77.39656777581477, 34.58523180376175], [-77.39592328296986, 34.585407630150854], [-77.39584638582662, 34.585420215530064], [-77.39574308451128, 34.585462071601015], [-77.3952933189647, 34.5856688999011], [-77.39505826765998, 34.58578735556898], [-77.3949012529067, 34.585896776185464], [-77.39473909773601, 34.58600086225092], [-77.39466419463395, 34.58610174798873], [-77.39450131657418, 34.58637903564601], [-77.39449163620307, 34.58661912663069], [-77.39448455857752, 34.58680602404196], [-77.39444884817335, 34.587043112317026], [-77.39442648399516, 34.587238971914736], [-77.39436224900007, 34.58734759290483], [-77.39427001511373, 34.5875648429616], [-77.39386852352645, 34.58816859178248], [-77.39406237006932, 34.58836427855898], [-77.39426994162875, 34.5883859748073], [-77.39455271540086, 34.588494477953404], [-77.3946307455655, 34.58851904010967], [-77.39466398770791, 34.58853068990169], [-77.39476294083235, 34.58857077378299], [-77.39489284954855, 34.58862339716738], [-77.39494320076619, 34.58873900507377], [-77.394997911617, 34.588854833923975], [-77.39501526832274, 34.58889838923365], [-77.39505800960168, 34.58899681113363], [-77.39512771286324, 34.589185566317], [-77.39516698173733, 34.589255018225074], [-77.39525501553172, 34.58931704002248], [-77.39534810668516, 34.589340877259005], [-77.39545204305739, 34.589367491447064], [-77.39563541648765, 34.58941444623126], [-77.39567251306256, 34.58941964079543], [-77.39584611602157, 34.5892199116358], [-77.39595241003099, 34.589141722649906], [-77.39599694751561, 34.58887320988363], [-77.3959452433817, 34.58871818451995], [-77.39590249820999, 34.58866364438969], [-77.39586284026045, 34.58832345111627], [-77.39587323422793, 34.58830400007237], [-77.3960432188141, 34.588158239450394], [-77.39611355983195, 34.588132832877996], [-77.39624025092962, 34.58810253556883], [-77.39636822225825, 34.588094715189015], [-77.39663430920675, 34.58807451286072], [-77.39696560334116, 34.58807879749564], [-77.39702836587793, 34.58806890141061], [-77.39720844205745, 34.5879173744415], [-77.39742243718294, 34.587777697755016], [-77.39747124553796, 34.58770148642739], [-77.3975392280264, 34.58763909482491], [-77.39761947421593, 34.58758300158135], [-77.39775171545743, 34.58753863438881], [-77.39781650417439, 34.58751903321468], [-77.39786613585045, 34.58753845612062], [-77.39796597895815, 34.58757752864443], [-77.39799704870309, 34.587590801528805], [-77.39801352645054, 34.58761891075], [-77.39809193824443, 34.5876871549742], [-77.39821053952475, 34.58794750228022], [-77.39821960238547, 34.58796551149584], [-77.39830637239265, 34.58827429660127], [-77.39833690887451, 34.5883731606006], [-77.39837636816695, 34.58854616490218], [-77.39821051452118, 34.58854345250547], [-77.39790316533706, 34.588860309501484], [-77.39784545286953, 34.58889989522945], [-77.39781643877302, 34.58891874706417], [-77.39756797449265, 34.589176354897184], [-77.39742235807952, 34.58932225933867], [-77.39739765593, 34.5893311951415], [-77.39738964644674, 34.58935896492838], [-77.39702826864469, 34.58981601173114], [-77.39701942276213, 34.58982741601924], [-77.39701369949158, 34.589837771687606], [-77.39700432230144, 34.58986492157874], [-77.39681124057506, 34.590291550096296], [-77.39680826039367, 34.59047955209368], [-77.39679470534396, 34.590718507745706], [-77.39685239707933, 34.59089960574161], [-77.39702819932717, 34.59108660465328], [-77.39703457362283, 34.5911016092622], [-77.39704706833008, 34.59110667538194], [-77.39722523004588, 34.591174648706414], [-77.39729921404782, 34.59120287543016], [-77.3974222618125, 34.59124982098726], [-77.39768073627954, 34.59129374500503], [-77.39781633606543, 34.591181610353374], [-77.39804679823294, 34.59096245291821], [-77.39814190115013, 34.59087491109439], [-77.39821042150083, 34.59081558169741], [-77.39826213802789, 34.59077481823404], [-77.39835138279201, 34.590766640749436], [-77.39837222409602, 34.59087754823007], [-77.39835489005355, 34.59091800558862], [-77.39831192784754, 34.59103357641784], [-77.39826292998217, 34.591299251902484], [-77.39824870177165, 34.59135789820177], [-77.39835075892454, 34.59161651356068], [-77.39838776330454, 34.59176240920208], [-77.39849408025049, 34.591865986856995], [-77.39860444978846, 34.59198069088339], [-77.39868011870949, 34.592063276511], [-77.39873823561919, 34.59213642025906], [-77.39885129915231, 34.59227871780662], [-77.39890482300378, 34.592436021968936], [-77.39891282289429, 34.59253580587527], [-77.39885105343197, 34.59270357647454], [-77.39888002997526, 34.5929651102996], [-77.3989059331719, 34.59306109466961], [-77.39899849282449, 34.5930478798454], [-77.39930770194755, 34.59299484785428], [-77.39939257411422, 34.592970380230696], [-77.3994539885305, 34.59294847005263], [-77.39969779856213, 34.59294285866649], [-77.39978665379691, 34.592933401649105], [-77.39997635839335, 34.59301922475455], [-77.39998087621329, 34.59302160621229], [-77.39998369151147, 34.593028796357004], [-77.40011073739576, 34.593212123541804], [-77.39998368604023, 34.59334872891648], [-77.39993575040407, 34.593398013600336], [-77.3997866403299, 34.593627445334874], [-77.39976714030833, 34.59366526311023], [-77.39975543717864, 34.59368795962655], [-77.39966122180624, 34.59399101136671], [-77.39962003939713, 34.59413206792756], [-77.39961497288837, 34.594317732690634], [-77.39965310377391, 34.59455187133884], [-77.39973561113428, 34.59490959040245], [-77.3997309529414, 34.59496521351162], [-77.39975270747645, 34.59499860490864], [-77.39978661416481, 34.595030804169006], [-77.4000676372615, 34.595341211846275], [-77.40012420831508, 34.595393909120055], [-77.40018069650313, 34.595506421544954], [-77.40027079220403, 34.59573647511581], [-77.40018069112851, 34.59592271786784], [-77.40006099079594, 34.59606236226307], [-77.39987249053408, 34.59612597539527], [-77.39978659434396, 34.596148834659644], [-77.39940822443114, 34.596268552449416], [-77.39939249763701, 34.59627194358171], [-77.39937908138467, 34.59627524621855], [-77.39921685059062, 34.5963131048681], [-77.39899840046984, 34.59636643409912], [-77.39864368908844, 34.59643822474716], [-77.39856942092067, 34.59644408644737], [-77.39822544193044, 34.59645613015618], [-77.39821151492797, 34.596456729983544], [-77.39821020682149, 34.59645580416853], [-77.3978280168868, 34.596500633556694], [-77.39781610918567, 34.59650213529687], [-77.39780774335497, 34.59650737416766], [-77.39774294439962, 34.59652573431037], [-77.39742200853348, 34.59660362988359], [-77.39707219907376, 34.596670206812675], [-77.39697424387867, 34.596694434495596], [-77.39686912877686, 34.596651784213066], [-77.39696973765274, 34.59657459684369], [-77.39741289898448, 34.596148772431846], [-77.39741904056568, 34.59614466648847], [-77.39742202987757, 34.5961348124947], [-77.39754059372706, 34.59583349805101], [-77.39755711598039, 34.59570339584943], [-77.39761910069151, 34.59559165347783], [-77.39770438724486, 34.595561746247924], [-77.3978161483885, 34.59554751602584], [-77.3980062242874, 34.59543383508745], [-77.39821024553822, 34.59539345476851], [-77.39834854196567, 34.595313642474075], [-77.39834578741132, 34.59516504950642], [-77.39832041399545, 34.595050032945], [-77.3983309555726, 34.59444805345056], [-77.39829490617424, 34.59432324394871], [-77.39827178596269, 34.5942603229959], [-77.39821029131178, 34.59416314973015], [-77.39809668425885, 34.593927266993845], [-77.39800142609701, 34.59374147849124], [-77.3978162311447, 34.59358231537874], [-77.39777604393149, 34.593548950158045], [-77.39770705817627, 34.5932519642099], [-77.39742216988586, 34.593143814593034], [-77.39720433134804, 34.59301697911217], [-77.39673898826678, 34.592962497139574], [-77.39663402118566, 34.59293609197956], [-77.39656957321503, 34.59294327905222], [-77.39630914222514, 34.592911412155715], [-77.39623994412574, 34.59289809867696], [-77.39621639094639, 34.59292479140976], [-77.39600183980157, 34.593123798818354], [-77.39584584648233, 34.59317239427483], [-77.39559679128783, 34.59328248176384], [-77.3954517519447, 34.59336621156306], [-77.395379110221, 34.593391875673206], [-77.39508910894753, 34.59347808487399], [-77.39505766114888, 34.593485965450014], [-77.39467577326278, 34.593558438642646], [-77.39466357286761, 34.59355972743799], [-77.39465236188389, 34.59356288154631], [-77.39463992117372, 34.593576753959965], [-77.39447539151595, 34.593803202087216], [-77.39429553737571, 34.594050996066564], [-77.39428373650856, 34.594068093251366], [-77.3942694458947, 34.594078761930696], [-77.3942047778214, 34.594133751501055], [-77.39387532836722, 34.59443860505005], [-77.39362628424061, 34.59430376899256], [-77.39348125853145, 34.594256021952276], [-77.393432787874, 34.5942276499386], [-77.39341224230304, 34.5941783903828], [-77.39341697869253, 34.594108439799285], [-77.39336729549673, 34.59345859217662], [-77.39336149417515, 34.59333656818074], [-77.39339271631778, 34.593236568657694], [-77.39348137664693, 34.593009926178105], [-77.39352454751857, 34.59288848171884], [-77.39366534464432, 34.592670007532504], [-77.39367728789443, 34.592652915341596], [-77.39368323509703, 34.5926481547455], [-77.39387550372142, 34.59249424828554], [-77.39392236679512, 34.59245702035017], [-77.39402511559993, 34.592391715402144], [-77.39407255437806, 34.59236156432848], [-77.39420156990627, 34.59229297206692], [-77.39426960484352, 34.59222392455177], [-77.39463721386282, 34.591907403119265], [-77.39466370883183, 34.591886788496545], [-77.39467106317903, 34.59188190053611], [-77.39468516060705, 34.59187194413653], [-77.39491728192124, 34.591687071781855], [-77.3949296801469, 34.59155014953782], [-77.39492004838277, 34.59141349315829], [-77.39466376141065, 34.59124662232803], [-77.39451828589284, 34.591203609515205], [-77.39436635246341, 34.59117292240445], [-77.3942696953527, 34.59118043784524], [-77.39390563596078, 34.59116756905252], [-77.39387562462515, 34.59117106039574], [-77.3938471282152, 34.59117437540566], [-77.39369434048879, 34.591165710354296], [-77.39348155438717, 34.5911568172595], [-77.39343928217748, 34.59115695300436], [-77.39332695923254, 34.591218696643985], [-77.3931363895531, 34.591298888670664], [-77.39308746675204, 34.5913149580172], [-77.39293124921889, 34.591444059878405], [-77.39269336415073, 34.59160013033646], [-77.39262654640895, 34.591672301532334], [-77.39255300207353, 34.59175488842727], [-77.39229925532605, 34.59191669886584], [-77.39193551783366, 34.591843939334645], [-77.39191253292367, 34.59183934159237], [-77.39190518892057, 34.59183794568112], [-77.39189506027948, 34.59183886150674], [-77.3915111151807, 34.59182621124443], [-77.39112454825099, 34.591952782498495], [-77.39111702461359, 34.59194986874524], [-77.39111128440395, 34.59195661798201], [-77.39110715566484, 34.591963396864635], [-77.3911090993369, 34.59197165213625], [-77.39106795522474, 34.592393619036635], [-77.39108454365868, 34.592426157248546], [-77.39111695305601, 34.592526234657], [-77.39118758457488, 34.59272481429635], [-77.39119567659263, 34.592799770262644], [-77.3912058647912, 34.59289414050239], [-77.39111686779111, 34.59321534813433], [-77.39111316314906, 34.59323224953609], [-77.39110903106074, 34.59323683439202], [-77.39093812739522, 34.59349351722405], [-77.39080175348002, 34.593705713728724], [-77.39072269457034, 34.59392988473411], [-77.39066656633457, 34.59408932892829], [-77.39061185559049, 34.594157666130386], [-77.39052561116964, 34.59424359886937], [-77.39038717204048, 34.594253203514754], [-77.39032856483547, 34.59426592305328], [-77.38997920133362, 34.594297079458926], [-77.38993447151431, 34.59431253142245], [-77.38989331788116, 34.59430561365358], [-77.38954038164061, 34.59433155221127], [-77.38920854273582, 34.59442709154323], [-77.38910409977713, 34.59442051645421], [-77.38875217856226, 34.59451793960082], [-77.38848174721431, 34.59459803935142], [-77.38808969289256, 34.594945898835284], [-77.38803772696971, 34.59503290681147], [-77.3879638946114, 34.59518622061909], [-77.38788717057088, 34.595057776952935], [-77.38783497826932, 34.59498262262484], [-77.387668973444, 34.59489976692417], [-77.38756987870919, 34.59472583088616], [-77.38752443801117, 34.594651794677745], [-77.38750323280965, 34.5945340493949], [-77.38752100703677, 34.594178754043824], [-77.38757001360955, 34.59390935961585], [-77.3876046478134, 34.59377941771268], [-77.38761964898896, 34.59373996506432], [-77.38766697952171, 34.59362872476228], [-77.3877490950793, 34.593489593871915], [-77.38787316342308, 34.59337690946674], [-77.38796419520357, 34.593313807053676], [-77.38798911619635, 34.593288973664606], [-77.38799992345673, 34.593260571090475], [-77.38835835341254, 34.5928326180258], [-77.38838596095265, 34.592810083978996], [-77.38841486427305, 34.592776177158285], [-77.38858458097171, 34.5925708248264], [-77.38875248022495, 34.59252825091819], [-77.38896224404358, 34.59249867303113], [-77.38932762278952, 34.59244950955689], [-77.38954065332936, 34.59242141322626], [-77.3896798254405, 34.5923191411401], [-77.38978200391217, 34.59215448356356], [-77.38987762522916, 34.59207911945951], [-77.38993478521577, 34.59203406844995], [-77.39012429218153, 34.59188470688583], [-77.3901318450373, 34.591875267870016], [-77.39028233929466, 34.591657768223854], [-77.39029868869294, 34.591622843516355], [-77.39027139318587, 34.59129679977158], [-77.39021380111467, 34.591243082363505], [-77.3900743267434, 34.59111299160404], [-77.38993492362366, 34.591037360343364], [-77.38978682039945, 34.591039647571336], [-77.38967660727327, 34.59104223750599], [-77.38954085029033, 34.59104831635229], [-77.3894278775745, 34.59105355524411], [-77.38934381336284, 34.59105505277724], [-77.38924295888069, 34.59106213032871], [-77.38914677475515, 34.59107286691398], [-77.38905983981078, 34.59107857006357], [-77.38894973941888, 34.591068227820195], [-77.38876966665337, 34.5910267481538], [-77.38875949999851, 34.591020899267654], [-77.38875272462658, 34.590929815558724], [-77.38870589349486, 34.590661874787365], [-77.38870264120537, 34.59061184418197], [-77.3887273340654, 34.59058087036807], [-77.38875277872997, 34.59057754379131], [-77.38877917621011, 34.59057236916239], [-77.38894982178061, 34.59052354831368], [-77.3891039621877, 34.590507761522154], [-77.38914685952184, 34.59050336804517], [-77.38943650869265, 34.590393508273706], [-77.38954095173466, 34.5903447905751], [-77.38984464128438, 34.590120015947164], [-77.38993505945062, 34.590064126034555], [-77.38996496479868, 34.5900374739209], [-77.39003005713954, 34.58999587155249], [-77.39018099156972, 34.58981446901383], [-77.39016092587956, 34.58973370017769], [-77.39013891296582, 34.58955560568418], [-77.39011026487071, 34.58932382409512], [-77.39008735461417, 34.58913847157134], [-77.39002828171158, 34.589046704135924], [-77.38993520082403, 34.58905640647909], [-77.38974267294736, 34.58897105136055], [-77.38973818211662, 34.588969093101035], [-77.3897232098785, 34.58896256432863], [-77.38954116361904, 34.58888318160197], [-77.38948630465012, 34.58885968287645], [-77.38938136828283, 34.58881570456471], [-77.3892280065927, 34.58875067178211], [-77.38914712756102, 34.58871297202323], [-77.38897358953233, 34.58863692004064], [-77.38875309375084, 34.58853817513706], [-77.38871896477362, 34.58852342354426], [-77.3886544446353, 34.58849595296771], [-77.38846309725513, 34.5884114444318], [-77.3883590606247, 34.588369176451266], [-77.38804087798322, 34.588241581746466], [-77.38796502717108, 34.588211399870985], [-77.38793967343814, 34.58820176377198], [-77.3878909714224, 34.58818146739358], [-77.38768090377356, 34.58809332993969], [-77.38757099471756, 34.58805628711613], [-77.38739196578615, 34.58802174347607], [-77.38734365557144, 34.58801543177888], [-77.38717694751848, 34.58799365144099], [-77.38680479993714, 34.58793709860268], [-77.38678289984324, 34.58793650733603], [-77.38676885080149, 34.5879338230958], [-77.38672512210317, 34.58792499031246], [-77.38638886380969, 34.5878187682206], [-77.38619974498486, 34.58777993688195], [-77.38617666785048, 34.587775427925514], [-77.3859948164323, 34.58776656600364], [-77.38573186342768, 34.58778487923234], [-77.38560072912078, 34.58792307305865], [-77.38535328601728, 34.58796478729177], [-77.38507766870215, 34.5877379312139], [-77.38486555037082, 34.58771152076515], [-77.38481265758124, 34.58770460200262], [-77.38466178270905, 34.58763531328144], [-77.3844186317132, 34.58755482985816], [-77.38435254981388, 34.58748910960258], [-77.38424025390111, 34.587434084639796], [-77.38422163063183, 34.58742592977537], [-77.38409640006275, 34.587377476171646], [-77.38402461896968, 34.58734970285904], [-77.38391442831863, 34.58736233350912], [-77.3838275685369, 34.5874551973781], [-77.38378947856077, 34.587499064486636], [-77.38379102594769, 34.58767180255606], [-77.38381466245076, 34.58772156061099], [-77.38388137419437, 34.58791038325282], [-77.38389156433479, 34.588052108801804], [-77.3838954301019, 34.58819392597601], [-77.38387092104102, 34.58833645568179], [-77.38386600195854, 34.58859111841934], [-77.38382953903043, 34.588766986427984], [-77.3836301826317, 34.58910584754949], [-77.38357591138485, 34.5891696545296], [-77.3832687234431, 34.58923723135736], [-77.38323608815227, 34.589244410628325], [-77.38304342494466, 34.589092583387185], [-77.38304120622367, 34.58909062338698], [-77.38303909081088, 34.58908790667551], [-77.38289418536331, 34.58890181227429], [-77.38287854828108, 34.588864806533785], [-77.38284213639106, 34.58874473033289], [-77.38278082363026, 34.58855969067732], [-77.38275844533489, 34.588496812670265], [-77.38272363382673, 34.58837406414841], [-77.38269853863456, 34.58823572052908], [-77.38264521722736, 34.588254598405435], [-77.38248568154133, 34.58811156356423], [-77.38246564282376, 34.58809568455049], [-77.38244822746002, 34.58808048419324], [-77.38226932981848, 34.587930465401065], [-77.38226037112291, 34.58792191312307], [-77.3821974084195, 34.587882828402435], [-77.38205423672478, 34.587790198773924], [-77.38203363617825, 34.58777435411073], [-77.38198594833688, 34.58775902812541], [-77.38179173092699, 34.58764532206898], [-77.38166022009389, 34.587618718322254], [-77.38143542483448, 34.58765599948069], [-77.38126616619695, 34.58760521531502], [-77.38107608136104, 34.58768538790732], [-77.38105746551217, 34.587693120327664], [-77.38102013845217, 34.587685947952515], [-77.38100958543936, 34.587623311159], [-77.38091761091054, 34.587488442688006], [-77.38096945810415, 34.587376145525354], [-77.38112296082195, 34.58703428214889], [-77.38119394564491, 34.586946064336885], [-77.38126635971955, 34.58681840728201], [-77.38144507274197, 34.586563292163746], [-77.38135884697931, 34.5862506536538], [-77.38131591620669, 34.58610413867804], [-77.38126659217005, 34.58587569187154], [-77.38107758877172, 34.58576712892969], [-77.38095985374098, 34.585690075635554], [-77.38087264195923, 34.58548330406521], [-77.3802167260616, 34.585748709572385], [-77.38008446168863, 34.58581098639625], [-77.38004539324109, 34.58587381705621], [-77.38007071033604, 34.58591224465299], [-77.38006152624529, 34.5859382438025], [-77.37986880698917, 34.58655832681343], [-77.37988054912566, 34.586788777160926], [-77.37990747838224, 34.586975254792975], [-77.37989117222024, 34.58721181008704], [-77.37983134092622, 34.58737271745808], [-77.37967695333063, 34.58766724535266], [-77.37954140420135, 34.587951411413634], [-77.37949103761558, 34.58833268936196], [-77.3795863729541, 34.58852942603867], [-77.37970956278177, 34.58891471905247], [-77.37971660557758, 34.58893522181551], [-77.37970851302448, 34.58895678653296], [-77.37957072187407, 34.58938080825946], [-77.37980728065483, 34.58964427600926], [-77.37986414308813, 34.58976308648459], [-77.3799855159593, 34.58985106730139], [-77.38008339762759, 34.58990857965808], [-77.38012109152228, 34.589938338440035], [-77.38017610979298, 34.59004276714545], [-77.38018549112783, 34.59014133917178], [-77.38017411896129, 34.59024081167145], [-77.38008325533406, 34.59046012492292], [-77.38004028445245, 34.59054055571399], [-77.37999121582783, 34.59059390066182], [-77.37986092379975, 34.5907977999931], [-77.37983943245445, 34.59104033799485], [-77.37976352410452, 34.59139548497109], [-77.3797542891109, 34.591477171567306], [-77.37979193341043, 34.59158276169649], [-77.37968885444485, 34.59171900534732], [-77.379428974971, 34.59180401138043], [-77.3792947415703, 34.59185383768143], [-77.37923351962142, 34.59191083960029], [-77.37915162561384, 34.591988582795274], [-77.37871044181227, 34.592271906994625], [-77.3785064067552, 34.592504974695714], [-77.37832175697625, 34.592758435243034], [-77.37799755177787, 34.59300400907054], [-77.37835580589984, 34.593114454049754], [-77.37850618299944, 34.59331872114747], [-77.37862395285602, 34.59363590101434], [-77.37869475333656, 34.59375267075289], [-77.37890005158205, 34.59411991759703], [-77.37891043460726, 34.59413496387769], [-77.37891911247257, 34.594165451733005], [-77.37893511944756, 34.594567159420606], [-77.37901794680727, 34.594852563665114], [-77.37929393381492, 34.59490001316931], [-77.37968292726708, 34.5948784634122], [-77.3796898549268, 34.59488099858191], [-77.37969206212838, 34.594882645795195], [-77.37991281461865, 34.59503319074846], [-77.38008203511205, 34.59522456092128], [-77.38009375908746, 34.59523668798093], [-77.38010163426605, 34.59524818689229], [-77.38010055791204, 34.59526830887138], [-77.38008201167906, 34.595316700569], [-77.380012807318, 34.59561107693161], [-77.3799147490194, 34.59569968180741], [-77.37978779472873, 34.595825716654474], [-77.3793453750099, 34.59620629395532], [-77.37929357812192, 34.596249125517964], [-77.37876203130767, 34.59656693276432], [-77.37850520807436, 34.596884572272515], [-77.37835000634331, 34.59703169388276], [-77.37816713450627, 34.5972251985829], [-77.3781109992411, 34.597271775051595], [-77.3778382028934, 34.59740331557893], [-77.37771684025682, 34.59746894886821], [-77.37755503244438, 34.597563672818346], [-77.37752413752628, 34.59774240810114], [-77.37762292211612, 34.59805173739216], [-77.37766265249977, 34.598147012526894], [-77.3776219255339, 34.598254891341895], [-77.37746050495048, 34.5987495081775], [-77.37735754916899, 34.59904009614655], [-77.37743012487576, 34.59933793882198], [-77.3777162538887, 34.59956010699405], [-77.37792661290598, 34.59980722836342], [-77.37828875725148, 34.59998731420398], [-77.37850433451051, 34.60010811979967], [-77.37854975448879, 34.600142004679796], [-77.37875837489523, 34.60026279683602], [-77.37889840256085, 34.600292100522026], [-77.37915686943853, 34.60033296861479], [-77.37929249813138, 34.60037671506075], [-77.37934834881776, 34.60039132647553], [-77.37941420155863, 34.6004420067823], [-77.37958763455246, 34.60052360264883], [-77.37968656829992, 34.6005637050297], [-77.37984185763501, 34.60063763976909], [-77.38008065934913, 34.60067414965943], [-77.38015079407295, 34.60068487229081], [-77.38043968769259, 34.600718797136665], [-77.38046761703211, 34.60072247429017], [-77.38047476633426, 34.60072368604508], [-77.38048552946091, 34.60072378570483], [-77.38082833647287, 34.6007064762757], [-77.38086888883647, 34.60071053787304], [-77.38115989404598, 34.6007260845493], [-77.38126300295554, 34.600732018113554], [-77.38140685027584, 34.600734379814945], [-77.38165715679365, 34.60058247391071], [-77.38167787520945, 34.6005626759435], [-77.38170537366588, 34.60053639898496], [-77.38183438532897, 34.60028408723275], [-77.38194855678314, 34.60007678782895], [-77.382051418046, 34.59995373202854], [-77.38232267299236, 34.59989050205608], [-77.38244555708852, 34.59984757996085], [-77.38252599571143, 34.59990689889832], [-77.38262261038676, 34.59997964244461], [-77.38272675568601, 34.60008621642535], [-77.38275587970278, 34.60029483923758], [-77.38277221904332, 34.60038264502468], [-77.38278957537963, 34.60043397234133], [-77.38283953600288, 34.60047144189201], [-77.38296786954767, 34.60064072435696], [-77.3831139185977, 34.60075796207976], [-77.3831716306871, 34.60081637911177], [-77.38323357053434, 34.60086246695262], [-77.3833231568666, 34.60082430288337], [-77.3836276892387, 34.600865950928394], [-77.38377560397855, 34.60092780305354], [-77.38402178363317, 34.60098899569043], [-77.38406141805791, 34.60100326395772], [-77.38420750502759, 34.60102490689003], [-77.38437176522591, 34.60104876614578], [-77.38441588804136, 34.60106709549967], [-77.38448873577042, 34.60106284512091], [-77.38481001204879, 34.601047334572506], [-77.38504160662444, 34.60090467973038], [-77.3851392893263, 34.600820701059796], [-77.38520419091107, 34.60073573830383], [-77.38536882519959, 34.600610274690936], [-77.38544011703404, 34.60059311240601], [-77.38559834563667, 34.60053892188628], [-77.38568978677189, 34.60059896404117], [-77.38574298451826, 34.60064774392649], [-77.38579537599915, 34.6006948469393], [-77.3858913503474, 34.60078219185874], [-77.38594268626575, 34.60082835797344], [-77.3859924031045, 34.600873067817545], [-77.38634892921726, 34.601140797314464], [-77.38637013447668, 34.60115534093148], [-77.38638647131968, 34.60116365225587], [-77.38641849348598, 34.60116526543904], [-77.38678058058493, 34.601228448983576], [-77.38701738736654, 34.601213902771995], [-77.3871747013772, 34.60122657468358], [-77.38737495275168, 34.60120860493317], [-77.38756882928065, 34.60117972853776], [-77.38776783819715, 34.60114643628668], [-77.38796295704373, 34.60113045098191], [-77.38813673382882, 34.60107025568327], [-77.38863935843142, 34.60081059970133], [-77.38871554421696, 34.600761150780826], [-77.38875125232465, 34.6007490378506], [-77.3887980462403, 34.600737313103025], [-77.38953950343048, 34.60063569982966], [-77.38958471530401, 34.60062559643288], [-77.39007017636214, 34.600604304075844], [-77.39030236685473, 34.60059816179368], [-77.39032774109016, 34.60060857186798], [-77.39036335670232, 34.600600397928524], [-77.39094939864523, 34.60065696949215], [-77.39111596645802, 34.600678604049634], [-77.3914640428756, 34.600778303273636], [-77.39152870774444, 34.600798486703965], [-77.39156944076127, 34.60081269105112], [-77.39190415709065, 34.6010782626191], [-77.39194617772249, 34.60113766068013], [-77.39199579247497, 34.60117578037575], [-77.39237409638447, 34.60146407325419], [-77.39269236097246, 34.601418817929215], [-77.39291216062311, 34.60128040172941], [-77.39308649644734, 34.601256005432404], [-77.39327391277935, 34.60121414328107], [-77.39348062392783, 34.601165286281514], [-77.39363529302764, 34.60110596363505], [-77.3938747543309, 34.601029054524616], [-77.39396784757642, 34.60099167284443], [-77.39418536983581, 34.600949980423934], [-77.39426888023304, 34.600932058841906], [-77.39432654707085, 34.60090177827004], [-77.39449386623009, 34.60081552689062], [-77.39462007966338, 34.60075107470038], [-77.39466301343421, 34.60072540082346], [-77.39490658170705, 34.6005938106528], [-77.39505714791704, 34.60047248315847], [-77.39515742958034, 34.600403278322275], [-77.39541744059028, 34.60025775091428], [-77.39544064890153, 34.600242952573424], [-77.39546906995501, 34.60023113856623], [-77.39584539755137, 34.60016250260007], [-77.3960606523188, 34.599972283350546], [-77.39623952630357, 34.599897262462335], [-77.3965911566523, 34.599663885675085], [-77.39661969981218, 34.599644738086575], [-77.39663365259838, 34.599631245259914], [-77.39670236604313, 34.59957382294444], [-77.39702777887439, 34.59931324843721], [-77.39714302628612, 34.599283862590426], [-77.39742189407613, 34.59918124926496], [-77.39773042637827, 34.59898277617184], [-77.39781601176969, 34.59894882956236], [-77.39792880164637, 34.598924851546016], [-77.39821012044423, 34.59891711094148], [-77.39846176331879, 34.59881599532951], [-77.39860423163447, 34.59878425957257], [-77.39887853968202, 34.59861384257006], [-77.3989983439541, 34.598555610408376], [-77.39906772681539, 34.59853223170851], [-77.39915431626065, 34.598444993573864], [-77.39947342435012, 34.59806160797946], [-77.3995018135534, 34.597970287798276], [-77.39978657050221, 34.59756729968766], [-77.39980929472266, 34.59752583424085], [-77.3998238624683, 34.59749925189617], [-77.40018067604848, 34.5971472390792], [-77.40025731809406, 34.597094709373636], [-77.40042803424302, 34.59698751072449], [-77.40053067685214, 34.59692519196442], [-77.40057477640333, 34.59689710038461], [-77.40070560664475, 34.59680651545523], [-77.40079420186706, 34.59674649958217], [-77.40096887476354, 34.59650784618669], [-77.4009886252417, 34.59648205398177], [-77.40118477984626, 34.596261779813474], [-77.40136296936407, 34.5960445981441], [-77.40138207097444, 34.59602128997565], [-77.40139516960086, 34.595998820915966], [-77.4015478512476, 34.59575139841704], [-77.40167755899981, 34.5955335004111], [-77.40171392839451, 34.59548178565123], [-77.40175705868836, 34.59541391478846], [-77.40188559743754, 34.59521739031891], [-77.40195343422994, 34.59506911886312], [-77.402151140693, 34.59462811473511], [-77.40215499377065, 34.594619611308374], [-77.4021569650216, 34.59461517560437], [-77.40216984038072, 34.59459317089025], [-77.40231233618465, 34.5943418510261], [-77.40247135144187, 34.594145235196265], [-77.40250369651099, 34.59409583222442], [-77.4028099001382, 34.593671806753], [-77.40285889032776, 34.593578112856605], [-77.40293928956662, 34.59338105952065], [-77.40325119231863, 34.59275897473256], [-77.4031274455712, 34.59257409800137], [-77.40310036974165, 34.59235616431963], [-77.40307561928054, 34.592212831702895], [-77.40304514702922, 34.592053634461536], [-77.4030231805901, 34.591942727676674], [-77.40302301843406, 34.5918525112897], [-77.40293925049035, 34.591173254958704], [-77.40293214018564, 34.59111437398705], [-77.40292604873542, 34.59110759339512], [-77.40286355538895, 34.59034900032964], [-77.40282120147151, 34.59027357222535], [-77.40289347699263, 34.59021384207548], [-77.40293923294361, 34.59010795931687], [-77.40314404507197, 34.58959851171926], [-77.40325705478007, 34.58936152356672], [-77.40332846793122, 34.58893181995551], [-77.40333035349325, 34.58892636999884], [-77.4033302807068, 34.58892315595568], [-77.40330814418122, 34.58850499926505], [-77.40330238754329, 34.588114515021125], [-77.4032993162934, 34.58808169744435], [-77.40330177226704, 34.58804742044427], [-77.4033332551342, 34.587987895537964], [-77.40348113664692, 34.58763088216199], [-77.40358774919397, 34.587465138171204], [-77.40371042688699, 34.587173215871616], [-77.40371534758467, 34.587159638044284], [-77.40372728928234, 34.587123346741386], [-77.4038185415301, 34.58683136532098], [-77.40384786251283, 34.58672880511709], [-77.40391032062064, 34.58652256395551], [-77.40399409214376, 34.58628312499244], [-77.404014291724, 34.58616489609787], [-77.40408622985147, 34.58584525072802], [-77.40410229954773, 34.58543882146056], [-77.40410369497033, 34.585418154485936], [-77.40410345068855, 34.585398965502904], [-77.40407913682944, 34.58504253451093], [-77.40407035368082, 34.5849983901222], [-77.40398844764229, 34.58472875488753], [-77.40394538854284, 34.58459184922985], [-77.40384208230161, 34.58430593987053], [-77.40380707096463, 34.58418723553443], [-77.40378253715954, 34.58413117431077], [-77.40372722062449, 34.58403624752507], [-77.40343954279845, 34.583701093265034], [-77.40333317740593, 34.583590739865215], [-77.40323442607273, 34.583527132601446], [-77.40299568550417, 34.583516108196775], [-77.40293914280794, 34.583532604579425], [-77.40285594319057, 34.58356499808071], [-77.40254511040106, 34.58373107462246], [-77.40238785447525, 34.58379803135091], [-77.40215107597412, 34.58388986390622], [-77.40206512999825, 34.583921441549236], [-77.40178624660268, 34.58402282349579], [-77.4017570400395, 34.58402607859092], [-77.40171953446382, 34.58402350811521], [-77.40136300368388, 34.58404208505791]], [[-77.30695914307577, 34.56346762872277], [-77.3075041888134, 34.56323479991064], [-77.30714246510803, 34.56293523243585], [-77.30659732753954, 34.563129247404206], [-77.30602778981441, 34.56344332408182], [-77.30602504493788, 34.56344709962275], [-77.30602778342146, 34.56344881308511], [-77.30666360813595, 34.56351925151653]], [[-77.40084543796873, 34.56622441747186], [-77.40057534362768, 34.56622024614313], [-77.4004809810773, 34.56608763614261], [-77.3989995278042, 34.56633269320082], [-77.39884702670108, 34.56638608307261], [-77.39760553602068, 34.566596848411486], [-77.39742370012756, 34.56654246397407], [-77.39712337735723, 34.56731959386742], [-77.39691926501415, 34.56765463765924], [-77.3966357056643, 34.567661459464084], [-77.3962957320889, 34.56792178616674], [-77.3962417228434, 34.56794457999438], [-77.39602141986563, 34.5681405621483], [-77.39584773198807, 34.5682912227333], [-77.39579628678096, 34.568304772150555], [-77.3957779599789, 34.568362857420084], [-77.39579849224226, 34.5684129491229], [-77.39579846391923, 34.56878447148587], [-77.39584768117389, 34.568892078714086], [-77.39594182519684, 34.569086884516445], [-77.39602049921922, 34.56917700959026], [-77.39624159847487, 34.569503863065314], [-77.39627014698212, 34.569534794878365], [-77.39637899340805, 34.56969794336931], [-77.39624156353094, 34.56994597391617], [-77.39621986414534, 34.56999739095914], [-77.39619809873386, 34.57004736331637], [-77.39624155478161, 34.57005697913963], [-77.39635340182843, 34.570282143059096], [-77.39663551072064, 34.57026549418883], [-77.39679350683299, 34.57059347655573], [-77.39742343227212, 34.57061933419115], [-77.39748038495178, 34.570603291815296], [-77.39781740973189, 34.570556681758234], [-77.39789162927346, 34.570525347339796], [-77.39815970789434, 34.57056664841153], [-77.39819783310148, 34.57057574851012], [-77.39821138169185, 34.57058230189372], [-77.39825253795514, 34.57059760715301], [-77.39899930740819, 34.57104861403982], [-77.39911884696447, 34.571148566320055], [-77.40010773475989, 34.571134694433], [-77.40031447650276, 34.57138583140032], [-77.40035593638251, 34.57256091851978], [-77.39978719565536, 34.5728396799767], [-77.39972129981484, 34.57288875820546], [-77.39909659396567, 34.573083839103326], [-77.39910950428467, 34.573826187634815], [-77.39922770444178, 34.574055400742495], [-77.39929263881596, 34.57433265357627], [-77.39939315234255, 34.57438737556136], [-77.39948956590555, 34.574620494032544], [-77.39951961755317, 34.57490442908524], [-77.39963210770767, 34.57528203648586], [-77.3995910792538, 34.575454993630984], [-77.39943078864957, 34.57586208095], [-77.39941201947197, 34.5759054058993], [-77.39942412878932, 34.57593710115852], [-77.39954989433835, 34.57614110935946], [-77.39962338414247, 34.5761230743002], [-77.39978708628851, 34.576146754917104], [-77.39996461953965, 34.57605893369734], [-77.39999328539037, 34.57604372738952], [-77.4001810902524, 34.57597873766192], [-77.40032416666162, 34.57592796114771], [-77.40057509188743, 34.57584022996641], [-77.40077781102141, 34.57570831973693], [-77.40091350962011, 34.57562883967771], [-77.40096909412401, 34.575592599421825], [-77.40110250051922, 34.57551770473036], [-77.40136309383068, 34.5753570349097], [-77.40146668850144, 34.57529596639719], [-77.401717101957, 34.57514819402806], [-77.40174542415012, 34.5751315341182], [-77.40175709125168, 34.575122010469265], [-77.4018545784142, 34.575023300619726], [-77.40196841717717, 34.574915076809035], [-77.40202793382906, 34.57481147240711], [-77.40211106384237, 34.57466676285083], [-77.4021510880249, 34.57454023737837], [-77.40224617828841, 34.574325158122605], [-77.40232853797687, 34.57421080080087], [-77.40235038755603, 34.57399287804384], [-77.40215109242553, 34.57367091950337], [-77.40206803688284, 34.57348875072777], [-77.40197282906017, 34.57341298633483], [-77.40169643146908, 34.57309368881488], [-77.40074051903419, 34.57274167740302], [-77.40215110496305, 34.571637963065506], [-77.40293301953223, 34.57156959470723], [-77.40355692473645, 34.570636900034614], [-77.40372700004025, 34.57036309444695], [-77.40438163749133, 34.570517858675835], [-77.40510138707229, 34.57063112375118], [-77.40530288977182, 34.57053189264207], [-77.40559176252053, 34.570654487272435], [-77.40576917525652, 34.57031756733856], [-77.40651232538752, 34.56981540138678], [-77.40687873186668, 34.56961791825668], [-77.4071833123119, 34.56926426417422], [-77.40687870755164, 34.569113801080746], [-77.40659537746683, 34.56880531828288], [-77.406254158743, 34.56872534006327], [-77.40609076734295, 34.56884237888452], [-77.40578923093895, 34.5686163639904], [-77.40544587205616, 34.568511771337604], [-77.40530282337053, 34.568264793153446], [-77.40435618333618, 34.568145112122465], [-77.40372695533198, 34.565620212845076]], [[-77.44746168573616, 34.73418129744766], [-77.44728493990883, 34.73443758289085], [-77.4469858862792, 34.73437985916696], [-77.44706477139263, 34.734078028622775]], [[-77.37211712227966, 34.70127264535189], [-77.37173833749327, 34.70108965686094], [-77.3713604647491, 34.70106659802548], [-77.37115665775987, 34.701031261822216], [-77.37088397009688, 34.70103914247258], [-77.37085721283884, 34.70103172271743], [-77.37070288026297, 34.70084387399655], [-77.37067968678772, 34.700802138738176], [-77.37072078413036, 34.70063711916909], [-77.37077000655407, 34.70059095134783], [-77.37088916946487, 34.70046725006085], [-77.37109501379717, 34.70030258342749], [-77.3712554652365, 34.70015367380114], [-77.37204618393983, 34.69975019981274], [-77.37214056437197, 34.69970323159534], [-77.37218888910952, 34.69970447367938], [-77.37272179212547, 34.699763150987714], [-77.372989831228, 34.69981228461267], [-77.37302920473203, 34.70003671727121], [-77.37316904726882, 34.70028488565526], [-77.37321945657027, 34.70042404556604], [-77.37325560245793, 34.70049299001905], [-77.37358073781806, 34.70092923412319], [-77.37358289100844, 34.70093279854699], [-77.37358407445689, 34.700935230896675], [-77.3735869260796, 34.700943168642155], [-77.37377574981778, 34.70139627589844], [-77.37366269214384, 34.701648413331974], [-77.37366003306678, 34.70165588106767], [-77.37365154818823, 34.70166848261688], [-77.37349446588925, 34.7019223380426], [-77.37341648522714, 34.70206839097678], [-77.37257801763526, 34.70253570907961], [-77.37254323792789, 34.702570935206325], [-77.37248620658178, 34.702638623718514], [-77.37247571868289, 34.702573655799256], [-77.37247677091716, 34.702549626303785], [-77.37248417877309, 34.70251860852573], [-77.37247646727712, 34.702062273867966], [-77.37243693455295, 34.701814979884205], [-77.37237800227858, 34.70158841457738], [-77.37224995676794, 34.701389547077106]], [[-77.38015137543275, 34.729434777076726], [-77.38028942102153, 34.729528951980484], [-77.38053538527804, 34.729504962732385], [-77.3806619198988, 34.729521422747176], [-77.38078000005288, 34.729519409027716], [-77.38089969381213, 34.72953611876952], [-77.38092470070725, 34.729549460266576], [-77.38118157590725, 34.729622968761696], [-77.38122643102446, 34.729614558344544], [-77.38136584181595, 34.729605233504486], [-77.38154319727249, 34.72962782247207], [-77.38197960541794, 34.72965966399156], [-77.3821205986622, 34.72966199312142], [-77.38218362260614, 34.72963058675134], [-77.38233662312936, 34.729647029744655], [-77.38256633402655, 34.72964260989329], [-77.38260026822066, 34.72953717542073], [-77.38262331459765, 34.72932576687117], [-77.38266823092789, 34.72906077340785], [-77.38272383388838, 34.72880176428965], [-77.38259514782217, 34.728646724691664], [-77.38250383781497, 34.72852664170302], [-77.38235636458265, 34.728299929636165], [-77.38204514862625, 34.72804151488004], [-77.38201039787013, 34.72801718082247], [-77.38197686936257, 34.72801176624255], [-77.3814596610324, 34.72783226426037], [-77.38142326618707, 34.72783073310383], [-77.3810539295213, 34.72791706909801], [-77.38076373295313, 34.72789388189907], [-77.38049733975802, 34.728022511213936], [-77.38031002354069, 34.72819720105432], [-77.3799927833553, 34.72834109743951], [-77.37995682543257, 34.72836795205702], [-77.37992719086287, 34.72838214383239], [-77.37962647094747, 34.72857607216757], [-77.37925020507957, 34.72870438132534], [-77.37924796823265, 34.72870542927419], [-77.37924573008159, 34.72870590732645], [-77.37923596919242, 34.728707506204096], [-77.37881858595172, 34.72875154754942], [-77.37852835303175, 34.72900232852018], [-77.37852419935331, 34.729009459123134], [-77.37875850003184, 34.72935272379201], [-77.3790404834538, 34.7294133968405], [-77.37921448170496, 34.72939921668615], [-77.37936518421465, 34.729399314280386], [-77.37963853657897, 34.729399490681786], [-77.37967196021584, 34.729399055312264], [-77.37968754264165, 34.72939330406898]], [[-77.37459531139514, 34.59261302558915], [-77.37463407511663, 34.592639494675616], [-77.3753536265017, 34.59292259140929], [-77.37549008713668, 34.59321817799615], [-77.37560392953174, 34.59334888996477], [-77.37614154850394, 34.593730407291076], [-77.37678899447229, 34.59332988476394], [-77.3769297714233, 34.59356452219396], [-77.3770585832663, 34.59327798720891], [-77.3771913615385, 34.593120173119566], [-77.37699057790172, 34.593083745524936], [-77.37692998715308, 34.59282950794451], [-77.37671171591921, 34.5923401591569], [-77.37638260165498, 34.59212840120796], [-77.37614211981779, 34.59184748411531], [-77.37592254445352, 34.59160474033642], [-77.37554773976174, 34.59145010809867], [-77.37535417068398, 34.59118621119149], [-77.37503471528731, 34.590883531438095], [-77.37513372716947, 34.59025795665558], [-77.37481209023808, 34.590066483507655], [-77.37521655665658, 34.58985949954344], [-77.37535466366582, 34.58961909575189], [-77.37559128643223, 34.589359945126745], [-77.37550482745574, 34.58911755633844], [-77.37535506883896, 34.58833509563655], [-77.37533985271416, 34.58830860619586], [-77.37458290562472, 34.58841848461064], [-77.3745669174947, 34.58841987937964], [-77.37449672135837, 34.58848928029847], [-77.37417279972547, 34.58858768593166], [-77.37412700335283, 34.588842251078155], [-77.37411701117978, 34.58895291644867], [-77.3741251735705, 34.58931632472892], [-77.37421096697815, 34.589687014717875], [-77.3745665146791, 34.58965929985902], [-77.37457522162293, 34.58966666557786], [-77.3745907037307, 34.58967381833837], [-77.37456647973471, 34.58976700380683], [-77.3743284084523, 34.58987971393468], [-77.37412148062965, 34.58979627827246], [-77.3737783290947, 34.589806266073424], [-77.3734504802967, 34.58976675330187], [-77.37333197754786, 34.58979882414802], [-77.37304544144273, 34.58989643225283], [-77.3731828670764, 34.59009350448349], [-77.37312570303006, 34.59030942973643], [-77.37328701983857, 34.59081514336881], [-77.37347570899207, 34.59110812881533], [-77.37336442647957, 34.591527977576405], [-77.37319222978707, 34.59199808385901], [-77.3734463619225, 34.59231821504936], [-77.37377740746888, 34.5925744675984], [-77.37384596469892, 34.59267913453708], [-77.37454515283439, 34.59263032688402], [-77.37456555697064, 34.59261970651067]], [[-77.37306812403203, 34.67623469977438], [-77.3729411337784, 34.67630985191687], [-77.37287012712724, 34.67624855838448], [-77.37250058167518, 34.67622705688247], [-77.37185942646265, 34.676238301420085], [-77.3717869838286, 34.67616250387033], [-77.37164566012979, 34.67625021770252], [-77.37156766820235, 34.676355318128095], [-77.37155486301333, 34.67696276748143], [-77.37155381674194, 34.67726214190337], [-77.37162050492525, 34.67732284244634], [-77.37191100646326, 34.677761682631726], [-77.37191771959544, 34.677769376404115], [-77.3719163795773, 34.677771485577374], [-77.37191907124877, 34.677770354544144], [-77.37192143098741, 34.67777092202327], [-77.37251713205958, 34.67777171095493], [-77.3731509115451, 34.67758433829971], [-77.37318422566257, 34.67758374741971], [-77.37379335768453, 34.677498230598445], [-77.37380114364689, 34.677502966286], [-77.37386882713064, 34.677501119555764], [-77.37435233876522, 34.67747279012608], [-77.37448295927497, 34.6774886497338], [-77.37456794552999, 34.67740499006879], [-77.37452485853963, 34.677339941404234], [-77.37480434201315, 34.676885088352975], [-77.37475562833596, 34.676454066245185], [-77.37478564533653, 34.67640026351147], [-77.37480915841043, 34.67633247707103], [-77.37473852448471, 34.67630273241975], [-77.37448188940084, 34.67621145763392], [-77.37446345927877, 34.67620441755711], [-77.37416069169979, 34.67623167530946], [-77.37389966636695, 34.67624429932239]], [[-77.39486344284262, 34.7205676462482], [-77.39484549510408, 34.72074196088], [-77.39475742799252, 34.72090013891818], [-77.39498268201544, 34.72087064488334], [-77.39504107891199, 34.72085817128929], [-77.3955520634529, 34.721118180585194], [-77.39565415676344, 34.72111251312383], [-77.39587161546197, 34.72112168706797], [-77.39591791819623, 34.72111719594295], [-77.39610357383988, 34.721099188286374], [-77.39622003647098, 34.721025597640704], [-77.39629995863163, 34.72097129298034], [-77.39638275299968, 34.720807449175254], [-77.39644078774694, 34.72074099324855], [-77.39641490481756, 34.72065553805427], [-77.39636445071727, 34.720527382799034], [-77.39626351295252, 34.72027232793058], [-77.39592208882608, 34.72005405190102], [-77.39586405697321, 34.72004186076294], [-77.39532741334108, 34.71979228355825], [-77.3953054667313, 34.71977905875451], [-77.39530712379916, 34.71975140547686], [-77.39526256964638, 34.719723743285726], [-77.39524391550071, 34.71976306734282], [-77.39528001462881, 34.71978966845028], [-77.39502887108574, 34.720246973495136]], [[-77.31999892665976, 34.747765559764446], [-77.32007230119872, 34.7479862814273], [-77.31969799150394, 34.74829790059438], [-77.31916579205132, 34.747879662254746], [-77.31878193847629, 34.747816672765055], [-77.31882670570103, 34.74717455898816], [-77.31882109195047, 34.746952146265066], [-77.31890114608176, 34.746918685419075], [-77.31890911470477, 34.746930752496745], [-77.31892370682526, 34.74693809326621], [-77.31942204998104, 34.747187268221076], [-77.31952057030391, 34.74724895750942], [-77.31987121315215, 34.74770246595114], [-77.31992647338043, 34.747725155160325]], [[-77.29279998096219, 34.563516184712824], [-77.29306998698357, 34.56324218604982], [-77.29306860414951, 34.56322445496784], [-77.29302464226711, 34.563220095417954], [-77.292664826307, 34.56312323056301], [-77.29236432528761, 34.56333385833964], [-77.29250075991996, 34.563461816977224], [-77.29250411581226, 34.56355861446409], [-77.2925979049066, 34.56358013744671], [-77.29265393788482, 34.56358301971447]], [[-77.26573631682261, 34.58378772652147], [-77.26624476032566, 34.58371010330989], [-77.26562876946171, 34.5835845355661], [-77.26554500136254, 34.58361759010557], [-77.26550495617215, 34.58365193068525], [-77.26499129971685, 34.58378239901205], [-77.26492349107455, 34.58390883216816], [-77.26511444144805, 34.584092556615374], [-77.26515829743097, 34.58451462735649], [-77.26579943258503, 34.58414642321108]], [[-77.23775320773265, 34.59202234222456], [-77.23796357083107, 34.591949787513244], [-77.23808662070422, 34.59186242394681], [-77.23817797776111, 34.591718232152914], [-77.23832578444723, 34.59093857679395], [-77.23831645162493, 34.590931651930575], [-77.23830804473648, 34.59092639008225], [-77.23825100714167, 34.590890689771584], [-77.23766778337315, 34.59052564555493], [-77.2374694279859, 34.59051390452992], [-77.23688405945441, 34.59040828030504], [-77.23641998784285, 34.59057643658203], [-77.23623518088064, 34.59077370530721], [-77.23592425115679, 34.591092189158054], [-77.23579509651988, 34.591210351738404], [-77.23575309333677, 34.59129793704624], [-77.23552009440748, 34.59166001409958], [-77.23586306734046, 34.59242492572792], [-77.23634913891131, 34.59240268068173], [-77.23690032010039, 34.59231865175822]], [[-77.39998787875511, 34.73194071068967], [-77.3999588029612, 34.73167530655098], [-77.39977004459885, 34.73158453999131], [-77.39960642654842, 34.731462863853054], [-77.39941096985248, 34.73145734079338], [-77.39923759163594, 34.73146220066705], [-77.39895660857691, 34.73149256381775], [-77.39880774982736, 34.73150763561334], [-77.398534908937, 34.73153818960202], [-77.39837910127736, 34.73155502306467], [-77.3982946485738, 34.73156414711773], [-77.39804069737697, 34.73158219270677], [-77.3979419411367, 34.73158849165008], [-77.39762095638542, 34.73167619445441], [-77.39747236462934, 34.73172563397494], [-77.39738071431792, 34.732167382534094], [-77.39733452102844, 34.73223655514026], [-77.39733017406347, 34.732324676581285], [-77.39742901477776, 34.732338338283874], [-77.39748609684715, 34.732339698319585], [-77.397635005718, 34.73234167020488], [-77.39795324578053, 34.73235525997431], [-77.39806760696581, 34.73234739878579], [-77.39830735898884, 34.73229729896859], [-77.39836739832234, 34.732284165259244], [-77.3986982607574, 34.73220074934549], [-77.39875554975774, 34.732186201618894], [-77.39877610669632, 34.732181701729694], [-77.39916125939845, 34.73208565653062], [-77.39943991545765, 34.73203733098595], [-77.3999466980003, 34.73203203946409]], [[-77.422173582888, 34.7442638021752], [-77.42220108437249, 34.74427292512715], [-77.42269923264101, 34.74471410715512], [-77.42288626072217, 34.744879938645596], [-77.42322764554349, 34.745103815200856], [-77.42338805174312, 34.74526024163742], [-77.42355350119797, 34.745494433038054], [-77.42349321714423, 34.745671965422375], [-77.42328301446112, 34.74578260095713], [-77.42312992141453, 34.745826301334255], [-77.42232672603082, 34.746007443319314], [-77.42232567664637, 34.74600810736504], [-77.4223244286396, 34.74600833388731], [-77.42232187621225, 34.74600804612758], [-77.4223204216452, 34.74600523984794], [-77.42230106408415, 34.7459678943148], [-77.42196651766551, 34.74532247158898], [-77.42194137853686, 34.7452739722089], [-77.42191215486548, 34.74521759187092], [-77.42189078089869, 34.74473692582092], [-77.42214773124027, 34.7442951743331]], [[-77.33024559696766, 34.65662260789231], [-77.3302619805331, 34.65661196239157], [-77.33028865856349, 34.65649598084282], [-77.33035453086474, 34.656473427073465], [-77.3304168477668, 34.65661566196251], [-77.33039171306616, 34.656626978212564], [-77.33029655057516, 34.65667017964153], [-77.33024314025323, 34.65669386922664]], [[-77.43257854222337, 34.50343712239807], [-77.43260209877268, 34.5033890422727], [-77.4326102744052, 34.50334212229388], [-77.43228183362032, 34.50301653418745], [-77.43206654545281, 34.50284324360831], [-77.43172760746776, 34.50278699830368], [-77.43146837466304, 34.502838016202354], [-77.43137552252234, 34.5029703039377], [-77.43090578094271, 34.503158710933874], [-77.430866227655, 34.5032820917752], [-77.43082338566884, 34.50341573391997], [-77.43079388938823, 34.50350774372543], [-77.43075968999355, 34.503614425189056], [-77.43083326902163, 34.50371760673978], [-77.43099283380612, 34.5041866475391], [-77.4319114991998, 34.50424166192618], [-77.43211176721286, 34.50419348973865], [-77.43229734502704, 34.50403063061903], [-77.43242491165262, 34.50389705783462], [-77.43248983847427, 34.50370268069024], [-77.43251028042005, 34.50364148301845]], [[-77.36899659843183, 34.72203622663669], [-77.36868550706649, 34.72204989642754], [-77.36866849863114, 34.72198542199099], [-77.36858906481481, 34.72204060062661], [-77.36818631409764, 34.72203980894437], [-77.3680593037537, 34.72202131897873], [-77.36791229575414, 34.72194151447513], [-77.36816185259053, 34.72166797762886], [-77.36816561378689, 34.72166548722595], [-77.36816896960991, 34.72166255292155], [-77.36890556224853, 34.72116857099077], [-77.36897806894221, 34.7211089172741], [-77.36910548018125, 34.721046482584796], [-77.36961175913758, 34.72079839290658], [-77.36986899988975, 34.72094156736769], [-77.37005146686842, 34.720998659417084], [-77.37006584735761, 34.7212969404882], [-77.37007087485236, 34.72140121942168], [-77.37006507632489, 34.72177670506392], [-77.37006233213393, 34.72188978522663], [-77.37005693471167, 34.72206461084019], [-77.36982538762625, 34.722125534379586], [-77.36972524252239, 34.72203824142757], [-77.36925513899304, 34.7220272376317]], [[-77.37416872008622, 34.60111762898855], [-77.37430856988144, 34.600903612893866], [-77.37451908033248, 34.60072271188272], [-77.37454339691078, 34.600698118451426], [-77.37456301208182, 34.60058201447228], [-77.3746407284616, 34.60036427189314], [-77.37465567540434, 34.60027847390441], [-77.37456314898313, 34.60015013004938], [-77.37427654337358, 34.59979283559081], [-77.37416917046474, 34.59971734035588], [-77.37397297529515, 34.59952769886064], [-77.37389004348917, 34.59941587903923], [-77.37377519213021, 34.599296851046354], [-77.37353194699237, 34.599004248516806], [-77.37333469894091, 34.59877052149725], [-77.3731833586084, 34.5985810130841], [-77.37298730325885, 34.59829045439589], [-77.37281430652165, 34.59818276430709], [-77.37272596107242, 34.59800908768872], [-77.37268715881957, 34.59769112044585], [-77.3726633679179, 34.597168984606405], [-77.372680271425, 34.59664878635928], [-77.3722163597458, 34.595552720394316], [-77.37221228028747, 34.595535723095296], [-77.37220005209716, 34.59550799367348], [-77.37217279614059, 34.59554141034581], [-77.37129613877057, 34.59639247553971], [-77.37062311315002, 34.59701489335195], [-77.36969283481862, 34.597596829993805], [-77.36957411399554, 34.59818257696175], [-77.3697007197503, 34.5984448126174], [-77.36979503783073, 34.59847358627604], [-77.36983434499899, 34.598506954480115], [-77.37030907297792, 34.5992063143284], [-77.37042328934942, 34.59940418038343], [-77.37062211123819, 34.59975468833481], [-77.37074330830089, 34.59999289186592], [-77.37066042832538, 34.600812253870515], [-77.37065103384563, 34.60085529865709], [-77.37072361924484, 34.60095466164566], [-77.37122541149463, 34.60162169144571], [-77.37130997466622, 34.601716882637966], [-77.3714096398916, 34.60174224526986], [-77.37157229344626, 34.60174694583777], [-77.37191706007779, 34.60182455976751], [-77.37219783913815, 34.601894825220455], [-77.3724503487135, 34.602022326794476], [-77.37279664017811, 34.60204047482211], [-77.37298607152296, 34.60195592143437], [-77.37337530102887, 34.601741943941555], [-77.37338026993321, 34.601738364945135], [-77.37338159446843, 34.601737112490305], [-77.37338575014888, 34.60173508751478], [-77.37369355291086, 34.60160361730224], [-77.37377446177965, 34.601534604459935], [-77.37393144867781, 34.60140098446238], [-77.37411717390184, 34.60120516788565]], [[-77.40913867648256, 34.57056826390558], [-77.40917843517768, 34.570674528986316], [-77.40917804313976, 34.570744179552406], [-77.40898629219872, 34.57112685049216], [-77.4089439343908, 34.57123561530509], [-77.40896900292354, 34.57155392537837], [-77.40914417748125, 34.571634797638396], [-77.40924269268834, 34.57167171241028], [-77.40940636703452, 34.57173897458157], [-77.4095061796794, 34.57176031211986], [-77.40963667404426, 34.571731610046854], [-77.4099896295767, 34.57145074219096], [-77.41002996568857, 34.571825316868406], [-77.41003065886062, 34.57182550840766], [-77.41003094133181, 34.57182548041019], [-77.41003104709607, 34.57182516072385], [-77.41005467144583, 34.57142308574309], [-77.41005807531145, 34.57139667837539], [-77.41008104574516, 34.571339013948105], [-77.41003060815412, 34.57124603260457], [-77.40984795643226, 34.570774655243994], [-77.40936081394518, 34.570648195977114], [-77.40931868155464, 34.57057229376362]], [[-77.2688381176601, 34.58260285733435], [-77.26917909060424, 34.58231475939667], [-77.26961514528135, 34.58208974570992], [-77.26915555997215, 34.58161150907117], [-77.26911840165752, 34.58160264710854], [-77.26847225917528, 34.581620316615144], [-77.26823978374486, 34.58175553470201], [-77.26800740311279, 34.58186412884079], [-77.26784923572733, 34.58195091855653], [-77.26790089227993, 34.582058727213386], [-77.2680478072685, 34.58213509671767], [-77.26815584141532, 34.58233064755701], [-77.26854439680805, 34.582476906866724], [-77.2685611362051, 34.582546247624286]], [[-77.37339191641004, 34.53586543859785], [-77.3735316208571, 34.53583840290682], [-77.37372056392277, 34.53572442137659], [-77.37398918021492, 34.53532091110907], [-77.37340317298107, 34.53537011841069], [-77.37327918336172, 34.535715601427874], [-77.37330254026091, 34.53578467011979], [-77.37332963563216, 34.53582024938896]], [[-77.33615418066057, 34.55892264837079], [-77.33597183664186, 34.55912695632569], [-77.33594527476664, 34.55912038934143], [-77.33595412210671, 34.55914774888209], [-77.33596373873804, 34.55915506881131], [-77.3359717970731, 34.55917588266491], [-77.33624180210785, 34.55966405868222], [-77.33636524841602, 34.55977343572297], [-77.33650709554999, 34.55964553914745], [-77.33675960568277, 34.55924435776793], [-77.33681148702509, 34.55908024468913], [-77.33684012397202, 34.55902035575409], [-77.33688742338269, 34.558876121136116], [-77.33675994338378, 34.558821904072246], [-77.3367060307598, 34.558673325373064], [-77.33637718064901, 34.55867428639767], [-77.33636612852126, 34.55867881636446]], [[-77.2882702015284, 34.56935174495317], [-77.28852637997063, 34.56894436362816], [-77.2889614625604, 34.569257107395515], [-77.28869252125915, 34.56977475051196]], [[-77.33387218053505, 34.69127902331218], [-77.33391449819246, 34.69116278164656], [-77.3339099974827, 34.69127383683211], [-77.33381668074117, 34.69149941256191], [-77.33387008297403, 34.69128626027729]], [[-77.25660912114391, 34.60474443136337], [-77.25700880190917, 34.60466518188894], [-77.25668274722818, 34.60459894536202], [-77.2564698144656, 34.60462277431263]], [[-77.3643244709966, 34.58132102150089], [-77.36444373782635, 34.5812419913375], [-77.36511282400767, 34.580664551106075], [-77.36522953031331, 34.58053388213169], [-77.36590102741488, 34.58032313845236], [-77.36598277515749, 34.58029972621795], [-77.36660106870355, 34.58011576036697], [-77.36668921965318, 34.579992486780704], [-77.36704006315257, 34.57967623645488], [-77.3669512887706, 34.5793111349324], [-77.36676948958662, 34.57925116621967], [-77.36668956068843, 34.57919227430616], [-77.36657786192126, 34.579060773448845], [-77.36640835301168, 34.57896476913952], [-77.36633969270068, 34.57892720583671], [-77.36607777281824, 34.57877753789996], [-77.36590168710049, 34.57880911137772], [-77.365804127187, 34.57873238440897], [-77.36577688658208, 34.57863115051754], [-77.36550780747521, 34.578493813549684], [-77.36529411567344, 34.57850636397494], [-77.36511379914911, 34.57847389040734], [-77.36480260318277, 34.578257759258385], [-77.36471989482881, 34.578223293511535], [-77.36451395381796, 34.578166529267705], [-77.36432584234612, 34.578303215412475], [-77.36374649159524, 34.57869847019825], [-77.36353757230127, 34.57881271756227], [-77.36347316834856, 34.57889352661493], [-77.36297495453306, 34.579640414506684], [-77.36291194612198, 34.579892799145], [-77.36342920551668, 34.579934523945276], [-77.36353698526456, 34.58007759877896], [-77.36378841303899, 34.58034466640677]], [[-77.36624004842828, 34.5450494295536], [-77.36611768460737, 34.545001385875054], [-77.36594076739837, 34.54506003924633], [-77.36562003653275, 34.5452157345711], [-77.36543360489716, 34.54531003051568], [-77.36532165350228, 34.54547685245069], [-77.36527205553124, 34.54572815827324], [-77.36526444714976, 34.545756607944874], [-77.36525002767348, 34.545798770663076], [-77.36522101296227, 34.5460076901298], [-77.36530549975774, 34.54618478627516], [-77.36538722341677, 34.546177711237256], [-77.36594900962602, 34.546057484710076], [-77.36609793966397, 34.54586705741552], [-77.3667046709738, 34.54554914216883], [-77.36676289170313, 34.54545998549111], [-77.36646148000294, 34.545094522977465]], [[-77.43250209650164, 34.73047751166386], [-77.43235900835258, 34.730505642346074], [-77.4322935699897, 34.73051071040062], [-77.43223815875362, 34.73059145716336], [-77.43217504729311, 34.73069095477761], [-77.43216225493086, 34.730716404151856], [-77.43214097361849, 34.73075295111713], [-77.4320584824178, 34.73095966189316], [-77.4320689889403, 34.73117594114211], [-77.43208015049666, 34.73122471765434], [-77.43219363284663, 34.731286420591545], [-77.43233529241915, 34.73136344415138], [-77.43239512057308, 34.731356837788844], [-77.43256981809255, 34.7313359142873], [-77.43267371081066, 34.73130178847048], [-77.43281886141511, 34.73122540349371], [-77.43289525882491, 34.73111984014011], [-77.43306627907764, 34.73081331876338], [-77.43300039649982, 34.73072979833066], [-77.4328727616586, 34.73061404692878], [-77.43271131595634, 34.7305150122251], [-77.43259322086212, 34.73047228567627]], [[-77.28178511489287, 34.5630048075716], [-77.28177108062336, 34.56297888476067], [-77.28169322670476, 34.56301062096395], [-77.28142655514645, 34.563119326420654], [-77.28137587778363, 34.56313998450665], [-77.281327157698, 34.56317235757411], [-77.28118792540963, 34.56327341861768], [-77.28103198275451, 34.56339527309958], [-77.2810735438605, 34.56350830785911], [-77.2812599570932, 34.56347855228246], [-77.28136825257741, 34.56346014720371], [-77.2816987319602, 34.56329779902297], [-77.2818870733083, 34.56321633037431], [-77.2821908850074, 34.56301520025327], [-77.28251023603377, 34.5628819774221], [-77.28291111839243, 34.5628045519331], [-77.28289080381151, 34.56246261614587], [-77.28237501543965, 34.562762453428874], [-77.28219312352203, 34.56292117255017], [-77.2820375638839, 34.56292443605592]], [[-77.2246575149873, 34.65784175958089], [-77.22462797171542, 34.65777020572562], [-77.22455533035202, 34.65772771784001], [-77.22475678142757, 34.657645891223936], [-77.22475270754853, 34.65774328590481], [-77.22477600862938, 34.65779928749761]], [[-77.35736337404828, 34.738236257590835], [-77.35731611126236, 34.738262131315985], [-77.35729475879765, 34.73847252782527], [-77.35739970996767, 34.73825065428778]], [[-77.41830271374678, 34.5639753296754], [-77.4183922999626, 34.56415229085581], [-77.41865250361874, 34.56416359908172], [-77.41862105716014, 34.56387263356282], [-77.418457285659, 34.56381483887773], [-77.41838592442205, 34.56373541712691], [-77.41821320573804, 34.56375367290977], [-77.41826875158588, 34.5638786618115]], [[-77.38750685633067, 34.53660342495896], [-77.38745217945448, 34.53664902092445], [-77.38741173256378, 34.5366883158251], [-77.38710562466004, 34.53697714328757], [-77.38710465945996, 34.53697818723399], [-77.38713210353228, 34.537218314416975], [-77.38749214756177, 34.5372555139078], [-77.38779776944712, 34.53712229692979], [-77.3881349965916, 34.53698107337283], [-77.38815130469848, 34.5366684405377], [-77.38777404417074, 34.536636054042084], [-77.38758579172062, 34.53661382979611]], [[-77.39370694895065, 34.53671065910888], [-77.39378763551169, 34.53660065560574], [-77.39408736561558, 34.53651875147621], [-77.39418228356658, 34.5365070399308], [-77.39431655143508, 34.536671477169655], [-77.39426911010474, 34.53686399860756], [-77.39422499914588, 34.53696255066606], [-77.39411708746148, 34.536979139523794], [-77.39391241088512, 34.536974628916894], [-77.39379843681279, 34.536979032770816], [-77.39378003263658, 34.53693884359991], [-77.3937321479137, 34.53678779008526], [-77.39372215565812, 34.53675724768642]], [[-77.3368597321357, 34.53300912005983], [-77.33680293375387, 34.53296045941282], [-77.33656094680319, 34.532895333185], [-77.33634726294748, 34.532914172044755], [-77.33629055343036, 34.53278933181248], [-77.33617149973904, 34.53276178088103], [-77.33609231976178, 34.532817840855316], [-77.3360398775558, 34.53299142976077], [-77.33601459043298, 34.53307383637368], [-77.33595342829915, 34.5331977457263], [-77.33595740853445, 34.53320911700727], [-77.33604629200832, 34.53324296033779], [-77.33615978758594, 34.533267207469095], [-77.3361746793564, 34.533286070386694], [-77.33623690933153, 34.53328668086115], [-77.33645639070355, 34.53331427075653], [-77.33655042363088, 34.53334954291518], [-77.3367696077726, 34.53334672702768], [-77.336944144536, 34.53329872882752], [-77.33702370742469, 34.53322203797339], [-77.33700506418887, 34.533176206188585], [-77.33694930405841, 34.533075984037964]], [[-77.29362212393337, 34.5558613128535], [-77.29344358970242, 34.556079769753325], [-77.29361505016291, 34.55616012656106], [-77.29375939495363, 34.55603447497759]], [[-77.45415226917812, 34.60308725282222], [-77.45432544013165, 34.603120677715424], [-77.45442783106765, 34.60313371444248], [-77.45447778063803, 34.603106273855225], [-77.45465630176156, 34.603008200543115], [-77.45502401014187, 34.60280619231714], [-77.45459745417196, 34.60279329230052], [-77.45443214316671, 34.602704880267744], [-77.45422290736077, 34.602775107984215], [-77.4540851644686, 34.60284218463981], [-77.4540420937318, 34.60290165692097], [-77.45409984603236, 34.60304174318576], [-77.45411353202046, 34.603065910233255], [-77.45412853037159, 34.60307617675221]], [[-77.43448013569326, 34.744104910051796], [-77.43452844009424, 34.74425605617786], [-77.43457893210883, 34.744466962888616], [-77.43482142991931, 34.74473461484098], [-77.43486359732465, 34.74478146570312], [-77.43491494823037, 34.74477319311782], [-77.43488676318114, 34.74480602595069], [-77.43510530628251, 34.74505411205749], [-77.43533618557687, 34.74496305083646], [-77.4353338097734, 34.744823795062814], [-77.43529942446467, 34.744612808497955], [-77.4353057976993, 34.744393394316276], [-77.43526562451952, 34.7441805086866], [-77.43524260866533, 34.74409179723928], [-77.43510937297202, 34.74393231037622], [-77.43480673628514, 34.743925536372906], [-77.43478404490263, 34.74392583743544], [-77.43472651222203, 34.74395900182084]], [[-77.34219160069449, 34.625959316647055], [-77.34209259819431, 34.62597896657311], [-77.34188641625072, 34.62603343161079], [-77.34182785108428, 34.626151047130506], [-77.34197977067817, 34.626540857267926], [-77.34196517126122, 34.62655419280027], [-77.34197603571502, 34.62657908202596], [-77.3420005919885, 34.62656029989744], [-77.34227068242784, 34.62635291930269], [-77.34252439451706, 34.62605541792904]], [[-77.33869126206245, 34.63308330809865], [-77.33842720837002, 34.6325651781081], [-77.33844085391692, 34.63252393818108], [-77.33867542993485, 34.63235603128908], [-77.33881807147753, 34.632262885350485], [-77.33892598273258, 34.632009851971425], [-77.33919394133466, 34.63208801348317], [-77.33926109003829, 34.63208456828932], [-77.3393905427983, 34.63213017424603], [-77.33957518745851, 34.632054700191006], [-77.33974159747011, 34.632151710434584], [-77.3402296899315, 34.632246471513234], [-77.34025233086741, 34.63223860356434], [-77.34027709057943, 34.632239490460584], [-77.34063572427995, 34.63222266772423], [-77.34028833684009, 34.63241781461709], [-77.34017780000978, 34.63286527586267], [-77.33977312784651, 34.63303993967576], [-77.33977914569724, 34.633160297058964], [-77.33965199686739, 34.63320169411381], [-77.33949430732129, 34.63324541521889], [-77.33931459111284, 34.6332480062755], [-77.33918638807454, 34.63325102908185], [-77.33917532376164, 34.63325098297273], [-77.33914718046555, 34.63323746339422]], [[-77.24181433412856, 34.59565895345269], [-77.24205616406053, 34.595590702277136], [-77.24253931091259, 34.595512908090384], [-77.24291852148178, 34.595143332568135], [-77.24297052043855, 34.595089328395936], [-77.24299289137257, 34.59507730510138], [-77.24300372305106, 34.59505540965767], [-77.24302391769838, 34.594935125430666], [-77.24310588711235, 34.594614859849585], [-77.24300609656112, 34.594319748023246], [-77.24197629005876, 34.59420487875296], [-77.24153785340012, 34.5948692993976], [-77.2426964969822, 34.59505394482973], [-77.24145975454775, 34.59506014486816], [-77.24155784832507, 34.5954355528719], [-77.24167400357724, 34.59555310847129]], [[-77.3674316975508, 34.721089106200424], [-77.3676228976154, 34.72118471529295], [-77.36769262158415, 34.72122162844176], [-77.36770894460531, 34.72122442108171], [-77.36810597137621, 34.721612652340255], [-77.36765218217076, 34.72136096383182], [-77.36748534127693, 34.72139649934425], [-77.36730814449604, 34.72151480812455], [-77.36725827153478, 34.72149985349371], [-77.36704790799698, 34.72137991469963], [-77.36699412205492, 34.721336578046056], [-77.36702378748099, 34.72129212972056], [-77.36712927323791, 34.721074314666545], [-77.36713932234093, 34.72106495054849], [-77.3671870686754, 34.72106637409939], [-77.36740093557734, 34.72106720454778]], [[-77.43196650747068, 34.67875221374678], [-77.43187084618393, 34.67870054572803], [-77.43180555672153, 34.67866528172236], [-77.4317327520121, 34.67862417967979], [-77.43160535275275, 34.67853565586599], [-77.43159937298502, 34.6785315156566], [-77.43159468970856, 34.67852566394799], [-77.43161463960938, 34.67847874417611], [-77.43168655128272, 34.678294498173045], [-77.4318426256887, 34.67833284735517], [-77.43196843907793, 34.67836319679241], [-77.43206309149372, 34.6784099545202], [-77.43218782825332, 34.67850571640496], [-77.43212914327816, 34.67864420300893], [-77.43208483818583, 34.67869709155635]], [[-77.33882256348552, 34.56075618990044], [-77.33903942474757, 34.560737776161645], [-77.33912205042772, 34.56073076032272], [-77.33926011240774, 34.56058280767974], [-77.33927871852936, 34.560536539121074], [-77.33923636940608, 34.560373950601054], [-77.33919419725147, 34.56030261804278], [-77.33912247696524, 34.56017698259106], [-77.33872892739329, 34.56002266811882], [-77.3387286605483, 34.560022797326184], [-77.33872798945235, 34.56002323839239], [-77.33833472170255, 34.56002751128319], [-77.33814187483254, 34.56032376014453], [-77.33807035401179, 34.56054162542402], [-77.33820040460098, 34.560667138781525], [-77.3383342298235, 34.56065833141663], [-77.33850742305589, 34.560665429314696], [-77.33872813438151, 34.56070179602618]], [[-77.34859973840652, 34.55207300183318], [-77.34855577939886, 34.5520003074153], [-77.34853635741021, 34.55195971188141], [-77.34852156537157, 34.551940640339026], [-77.34851875613306, 34.55185809809745], [-77.34850446555981, 34.55184189071319], [-77.34849033678299, 34.55182026225668], [-77.348430478576, 34.551768198214674], [-77.34829787648275, 34.55165286183745], [-77.34828158929318, 34.55163948862438], [-77.34827015243073, 34.551630786553766], [-77.34819847401843, 34.55157804472012], [-77.34813106149176, 34.55152839058958], [-77.3481145472352, 34.5515245131217], [-77.34795467373831, 34.55143136112309], [-77.34794550107375, 34.551411053917654], [-77.34791118371767, 34.55139513036777], [-77.347606669654, 34.55142604949583], [-77.3475200175607, 34.55133175100184], [-77.34730689840586, 34.55139255188949], [-77.34731705776326, 34.55164516039429], [-77.34726531523202, 34.551775371907866], [-77.34728808096696, 34.55188016908187], [-77.34739864317892, 34.552066144391446], [-77.34750125584097, 34.55214645559896], [-77.34754630412485, 34.552195784328745], [-77.34755863947811, 34.55222280721797], [-77.34769404969083, 34.552299357585206], [-77.3477097881256, 34.55231345305225], [-77.34773561211706, 34.55231975318495], [-77.34788919335924, 34.55235023059335], [-77.34798434167006, 34.55234709009406], [-77.34812776866184, 34.55238573583181], [-77.34823180903408, 34.552401219320565], [-77.34828033887905, 34.552414723523995], [-77.34843774698979, 34.55243963981982], [-77.34858852322006, 34.55231943623237], [-77.34854832518982, 34.55216175073391]], [[-77.44303824077049, 34.74977193040998], [-77.44297367698601, 34.749824140790146], [-77.44292634238172, 34.749850720929224], [-77.44259287961954, 34.7499499200006], [-77.44243788201697, 34.7501165361591], [-77.44284358506044, 34.750359299657134], [-77.44287986416172, 34.750319285246775], [-77.44300258806214, 34.75043637020566], [-77.44338620545972, 34.75061372063062], [-77.44339493893698, 34.750755433752225], [-77.44383493107297, 34.75123046014349], [-77.44351025304726, 34.75056196661741], [-77.44321353942237, 34.74995103545585], [-77.44330678374602, 34.74975402183433]], [[-77.38126135399507, 34.58361157322848], [-77.3812596849179, 34.583626104840526], [-77.38127721535062, 34.58362638115437], [-77.38127190343768, 34.58361118268499]], [[-77.37579364871787, 34.53381860860763], [-77.37602030700084, 34.533434307553904], [-77.37608811970698, 34.533248931179074], [-77.3761267004014, 34.533174142128374], [-77.3761011123411, 34.53311480811597], [-77.37603532302734, 34.53304749465804], [-77.375847149396, 34.532969610632115], [-77.37582935520753, 34.53296203157084], [-77.37581323865747, 34.53295554066208], [-77.37576214077332, 34.532949914194816], [-77.37569886326753, 34.532990985685935], [-77.37535156971039, 34.533246879545366], [-77.3753630586576, 34.53331508492432], [-77.37550586703067, 34.53350846323387]], [[-77.43376263696489, 34.67918752649088], [-77.43369024809783, 34.67932693230535], [-77.43345175924168, 34.67931729528705], [-77.43329372940926, 34.67931925873051], [-77.43316779959414, 34.67922059578242], [-77.43297531069076, 34.67906978535551], [-77.43302817829132, 34.678992330400256], [-77.43309480697256, 34.678899417920526], [-77.43315102437397, 34.678819267792356], [-77.4331685546291, 34.67879657818219], [-77.43330421845819, 34.678729252031424], [-77.43332312402967, 34.678726730093175], [-77.43345862774558, 34.67874922134524], [-77.4336597187472, 34.67878409582992], [-77.43373537469022, 34.67890003085033], [-77.43381428136682, 34.67902240748661]], [[-77.28930951607083, 34.560353668829116], [-77.28935159462725, 34.56036597227163], [-77.28935905029856, 34.56036468338707], [-77.28945500069904, 34.56037161486769], [-77.28946664867867, 34.56036599975838], [-77.28948877265071, 34.56033439417925], [-77.28941875978231, 34.56032659686572], [-77.2894107275259, 34.56030080085806]], [[-77.38831182142219, 34.56312677742908], [-77.38832548898287, 34.563028490862195], [-77.38839837909981, 34.56302102719949], [-77.38850187787332, 34.5631931864086]], [[-77.42810459190788, 34.73601143886342], [-77.42811022749605, 34.736014607699495], [-77.42810850120416, 34.736008290774414], [-77.42810788945572, 34.73600645885227], [-77.42810696570119, 34.73600323924408], [-77.42807929319035, 34.73590679073873], [-77.42805739533392, 34.73585066403007], [-77.42803831945429, 34.73581228549058], [-77.42793571483523, 34.73572948458853], [-77.42787278370733, 34.73570475074533], [-77.42774855273554, 34.73570995990258], [-77.42768838830688, 34.735699307969085], [-77.42768969532503, 34.73573451021156], [-77.42775811705062, 34.7358132334544], [-77.42782168952799, 34.735881240097164], [-77.42783206672524, 34.73589831689321], [-77.42786307174693, 34.73592251187132], [-77.42795064426572, 34.735989504519], [-77.42810011077741, 34.736009703470245]], [[-77.4295540294196, 34.709963221147426], [-77.42955921998143, 34.70996498180822], [-77.42957096230059, 34.70996411555488], [-77.42995746356287, 34.70986801989634], [-77.43002678975898, 34.70976194838913], [-77.42993841896462, 34.709533522165586], [-77.42971641348477, 34.70940213091022], [-77.42967469894262, 34.70940588648319], [-77.42952110324188, 34.709387621800275], [-77.42942948113318, 34.70937902800235], [-77.42940137491816, 34.709383286656724], [-77.42933348772335, 34.70946179332247], [-77.4293268345493, 34.70958518228812], [-77.42932426329867, 34.709598333946246], [-77.42932488999894, 34.70960843113809], [-77.42955173699629, 34.70995739411334], [-77.42955254342954, 34.709959828491705]], [[-77.40018097029659, 34.580672194520304], [-77.40003219273561, 34.58075049450164], [-77.400032500671, 34.58107073328202], [-77.40004569025942, 34.581333433515894], [-77.4001809521851, 34.581440421917236], [-77.40034074875605, 34.581543243056736], [-77.40057497246724, 34.58165788094241], [-77.40059270332087, 34.581659970283255], [-77.40094805822436, 34.58160523434712], [-77.40096899849596, 34.58160200885632], [-77.40100758910951, 34.58157762516337], [-77.40136302444745, 34.58148885100066], [-77.40155700792374, 34.58132437129733], [-77.40176078140264, 34.58108594221059], [-77.40154040113713, 34.580926619501724], [-77.40142347294677, 34.580710044080355], [-77.40139122020216, 34.58068432427186], [-77.40136303222067, 34.58066029392218], [-77.40118258887753, 34.58051466720475], [-77.40096901544653, 34.58040527771775], [-77.40093956512165, 34.58038703398802], [-77.40082182133149, 34.58037229025696], [-77.40066155124144, 34.58030215218486], [-77.40057499845845, 34.58028390656445], [-77.4005050645272, 34.58034264261859], [-77.40039672843588, 34.580433631298064]], [[-77.41329022869829, 34.7615783118124], [-77.41334220059379, 34.76151788657812], [-77.41335940397562, 34.76160249014403], [-77.41331504029267, 34.76161162066622]], [[-77.44306272752198, 34.73601697597905], [-77.4431550132357, 34.73607099308029], [-77.44329024046252, 34.73613689734768], [-77.44349556852052, 34.73607410354649], [-77.4435817072539, 34.73586532829089], [-77.44361327300525, 34.73578724715837], [-77.44351059650072, 34.7357491902716], [-77.4433049656603, 34.735552677192715], [-77.44320915282344, 34.73550946174569], [-77.44284383461991, 34.73540781901588], [-77.44270828975193, 34.735398920976564], [-77.44256761974795, 34.73547040512956], [-77.44263999572337, 34.73563497672888], [-77.44268160643279, 34.735729592343006], [-77.44276640869236, 34.73581936570131], [-77.44287717687266, 34.73592324508785]], [[-77.35690264559472, 34.73783150974064], [-77.35688504019991, 34.7378210644361], [-77.35679491448212, 34.73775806798582], [-77.356845453196, 34.737839361280855], [-77.35687264116856, 34.737863758738094]], [[-77.37117972664831, 34.67873296331603], [-77.37106803864094, 34.6786411113031], [-77.37076438266696, 34.678902719541206], [-77.37098259299823, 34.678935681666296], [-77.37110874636898, 34.67896505967005], [-77.37130358451303, 34.678860668236794], [-77.37134998043545, 34.67882221630394], [-77.37132338635783, 34.678792401434414]], [[-77.38441100255122, 34.626928764100306], [-77.38430391236209, 34.62690949690645], [-77.38427543201811, 34.626767571902334], [-77.38423283214952, 34.62670745747287], [-77.3844110671553, 34.62656934085661], [-77.38451179748779, 34.62656345146746], [-77.38468912690455, 34.62655454007448], [-77.38472004027068, 34.62675773943208], [-77.38451563835716, 34.6268789859912]], [[-77.42224211388974, 34.564067417163486], [-77.42219934176495, 34.56407722718467], [-77.4220944316134, 34.5641384892102], [-77.42196725121957, 34.564285153398636], [-77.42193946623263, 34.56448717699839], [-77.42212440809996, 34.56443179120346], [-77.42224216223885, 34.564278946873], [-77.42229646034315, 34.56416784513537], [-77.4223199652504, 34.56402197914493]], [[-77.33648920197928, 34.626084430706825], [-77.33655120852738, 34.62603135428941], [-77.33652497076906, 34.625892372157026], [-77.33641432647612, 34.62587993095707], [-77.33631822746221, 34.62585233155255], [-77.3362569670739, 34.625849026230156], [-77.33623591898098, 34.62584789054686], [-77.33611321174607, 34.625974322166826], [-77.33591276443914, 34.626118974683216], [-77.33615996041814, 34.62620708570441], [-77.33637500353358, 34.626189303606566], [-77.33646330242969, 34.62612377932058]], [[-77.37008180538405, 34.5811480903807], [-77.37019912129577, 34.58139069731085], [-77.37023489457998, 34.58139867084297], [-77.37026381055067, 34.581412541329655], [-77.37052669199664, 34.58145364365605], [-77.37062890372982, 34.58145383789838], [-77.37081645896372, 34.58150387944819], [-77.37102292605667, 34.5814748430784], [-77.37121476685294, 34.581244397041225], [-77.37132103774772, 34.58112559943913], [-77.37126570172897, 34.5809756733062], [-77.37106676949193, 34.58084115715415], [-77.37104175985594, 34.58082472790882], [-77.37093574198532, 34.58076580645815], [-77.37062919003151, 34.58069628007148], [-77.37038714280627, 34.58077526640951], [-77.37042976926021, 34.58050835653812], [-77.37023526544267, 34.5804297866805], [-77.3698882589139, 34.58053565041281], [-77.36984119959101, 34.58053392326084], [-77.36956915173036, 34.580339110430316], [-77.36954104819067, 34.580636368609944], [-77.36984108269591, 34.5808355629271]], [[-77.39506413873512, 34.617724853411026], [-77.39555197064195, 34.61796074815662], [-77.39584442084721, 34.61782582660263], [-77.39622462386936, 34.617973337490184], [-77.39623353947515, 34.617977514416296], [-77.39623861134835, 34.617978236631345], [-77.39627250239778, 34.61800293611125], [-77.39645222582254, 34.61813500397406], [-77.39652163481097, 34.61823534530336], [-77.39659650521216, 34.61834427710891], [-77.39660325240119, 34.61837512131142], [-77.39663279283168, 34.61839720750444], [-77.39688042926772, 34.618727901134484], [-77.39663276761456, 34.61904780788039], [-77.3963999649013, 34.618797193320724], [-77.39632431799019, 34.61871575839145], [-77.39623858308171, 34.61862346301087], [-77.39615670721804, 34.61861998937948], [-77.39605610783067, 34.61861874550404], [-77.39604148280719, 34.618618619817994], [-77.39601705730487, 34.618613821373756], [-77.39584438359928, 34.61859204779725], [-77.39572790132051, 34.61859499891258], [-77.39547113143999, 34.61850657168254], [-77.39532882721805, 34.61823324817843]], [[-77.42794780043454, 34.57028932670181], [-77.42761045375805, 34.57055929202319], [-77.4276807980518, 34.57088914685603], [-77.42736531028068, 34.57094026102633], [-77.4270773984328, 34.57117515424315], [-77.42697139912889, 34.57114124663248], [-77.42693881193165, 34.57111607036396], [-77.42657733935542, 34.57082836805645], [-77.42653847612826, 34.57075609324056], [-77.42650121464011, 34.57071961743459], [-77.4263251065037, 34.570592246612335], [-77.42618324028433, 34.57036500242014], [-77.42617177042908, 34.570355002194795], [-77.42616559941989, 34.570324535963174], [-77.42621110191976, 34.57030691443997], [-77.42657716043975, 34.570201039943655], [-77.42675665221608, 34.57002701844263], [-77.42693078032778, 34.56980835350301], [-77.42716545725443, 34.56955948317865], [-77.42736484404406, 34.569356458963526], [-77.4273858129881, 34.56934060003665], [-77.42751254703168, 34.5692996775679], [-77.42772302382356, 34.569230731254486], [-77.42780067171961, 34.56921286432512], [-77.42794776483242, 34.56944039095859], [-77.42808184662091, 34.56964197791167], [-77.42805754034198, 34.569748248910514]], [[-77.38062802686748, 34.55977981509741], [-77.38075519657643, 34.55949060886162], [-77.38081791227484, 34.5594152411958], [-77.38087947483115, 34.55933164841691], [-77.38090753469217, 34.55943837441995], [-77.38092556481324, 34.55946604878735], [-77.38090686228156, 34.55949831115778], [-77.3808794204916, 34.55953253412848]], [[-77.39148412625295, 34.5681331283383], [-77.39145528964922, 34.56820071601509], [-77.39139838808126, 34.56835778002227], [-77.39140924411814, 34.56845548586773], [-77.39141366162885, 34.5684638284276], [-77.39141998945212, 34.56846551756704], [-77.39151411229926, 34.568444835803646], [-77.39164016876364, 34.56832290595085], [-77.39158250315506, 34.568192605385974], [-77.391600709079, 34.56811631248936], [-77.39151416409157, 34.568066161906486]], [[-77.37185503563619, 34.689646533155646], [-77.37198428413214, 34.68945768584213], [-77.37197564133332, 34.68935654759748], [-77.37197829667312, 34.68933666049941], [-77.37188712599449, 34.68922849907339], [-77.37188590136974, 34.68922850839217], [-77.37186890074022, 34.68922985038148], [-77.37158225249671, 34.689247819782814], [-77.37142172862357, 34.68929132094259], [-77.37130900239909, 34.68935280399625], [-77.37106232989211, 34.6895844210692], [-77.37131145725488, 34.689670773503124], [-77.37145174809099, 34.68969769142293], [-77.37149767911843, 34.68972453213572], [-77.37156219682672, 34.68975940544602], [-77.37163536076753, 34.689815661204], [-77.37179158784727, 34.68978045940596]], [[-77.3820774038994, 34.58267472028679], [-77.38207657777325, 34.582651188604466], [-77.3820722095809, 34.58263377472041], [-77.38208318568897, 34.5824379537536], [-77.38205551944544, 34.582401104221574], [-77.38198577356465, 34.582314885055816], [-77.38188232130507, 34.58225462407858], [-77.38185854436236, 34.582231336269714], [-77.38179955642767, 34.58226655374118], [-77.38174551321517, 34.582364870974935], [-77.38176494468767, 34.58258458469927], [-77.38196852492604, 34.58266676330848], [-77.38201154961398, 34.58270785897407]], [[-77.3856382456474, 34.515876999212885], [-77.38561963664141, 34.515880608508034], [-77.38560254824596, 34.51588308143737], [-77.38522654633671, 34.515908995238895], [-77.38516217189638, 34.51595723221134], [-77.38522455682815, 34.515997053663725], [-77.38559689122398, 34.51590832265494], [-77.38561917673385, 34.5159009688765], [-77.38563454667364, 34.51589864732258], [-77.38568480893001, 34.51588184073918]], [[-77.3764682585014, 34.59534716890041], [-77.37641755118584, 34.59548112673937], [-77.37638441685804, 34.595571529421875], [-77.37653506059121, 34.595664120093474], [-77.3766320434925, 34.5955358519046], [-77.37659543531768, 34.59539380122341], [-77.37660543035012, 34.59532740540575], [-77.3765899664887, 34.59527060828272], [-77.37648172129028, 34.595287645742566]], [[-77.33340359731321, 34.56227394418348], [-77.33321160886396, 34.562344782140876], [-77.33304085839141, 34.562326089116105], [-77.33306079347346, 34.562273545205535], [-77.33303460388197, 34.562114718341896], [-77.33321200341267, 34.56187499358447], [-77.3333222738809, 34.56207336486912], [-77.33339885568837, 34.56226407083394]], [[-77.42721316994471, 34.49958138354769], [-77.42729194811744, 34.49946539925517], [-77.42707828236763, 34.49951581358133], [-77.42694334117567, 34.49964740939447]], [[-77.33481804233553, 34.697651388158796], [-77.33454040250373, 34.697608080853094], [-77.33443251408711, 34.697620654594004], [-77.33421208064007, 34.697723398548476], [-77.33403531488395, 34.697798598654636], [-77.33380524801248, 34.69803635596982], [-77.33425860037497, 34.697996594344126], [-77.33431552745192, 34.69802323963893], [-77.33433990130736, 34.69801920438216], [-77.3349260765333, 34.69795006935501]], [[-77.39702697654641, 34.618868778743604], [-77.39713661164095, 34.618997439729625], [-77.39722407023143, 34.61910007511948], [-77.39722620310276, 34.61910260485128], [-77.39731047114725, 34.619209676458155], [-77.39733320664016, 34.619417012654594], [-77.39722405929568, 34.619449927701794], [-77.39715796716033, 34.61946583508007], [-77.39710433716192, 34.61946141111996], [-77.39702695802116, 34.61941763705243], [-77.39692661357022, 34.61935809827831], [-77.396887292494, 34.61930191208749], [-77.39676677984701, 34.61916886353332]], [[-77.3415873146529, 34.6841662198654], [-77.34155076699444, 34.68413348685619], [-77.34136986114382, 34.684044122862005], [-77.34126251386675, 34.6840219937128], [-77.34115012392087, 34.683998824933326], [-77.34108087669358, 34.684008689925086], [-77.34087851015674, 34.68407714136043], [-77.3409101470543, 34.684293132070096], [-77.3409953114545, 34.68430326937997], [-77.34110088780811, 34.68434343884729], [-77.34121917561598, 34.68437923611215], [-77.34126821293975, 34.684394076196746], [-77.34129947729053, 34.68438770578174], [-77.34132931937857, 34.684407561486715], [-77.34154729175955, 34.68446361663617], [-77.3417485724196, 34.68435003286036], [-77.34162214239261, 34.68420591908971]], [[-77.44563491022393, 34.60557871497022], [-77.44550291368365, 34.605521715867695], [-77.44548684883395, 34.60541400275284], [-77.44546838924656, 34.60528620674854], [-77.44567519853585, 34.60518371359305], [-77.4457770872294, 34.60513788481277], [-77.4459462012146, 34.60521067870559], [-77.44595207611182, 34.60530233222192], [-77.44597391718389, 34.60538740157466], [-77.44588013916578, 34.605514363553894], [-77.4457596976653, 34.605537548267144]], [[-77.44969556005454, 34.61177006785524], [-77.44978628855485, 34.61168531450302], [-77.44988539547852, 34.61147740947289], [-77.44988283665931, 34.61146818792288], [-77.44986186130141, 34.61146917490551], [-77.44961134850283, 34.61146250172131], [-77.44944547973384, 34.61154576385259], [-77.44930269339778, 34.611583221429605], [-77.44931682435316, 34.61170306865307], [-77.44945624385079, 34.611779437674016]], [[-77.44643834709271, 34.60779359152899], [-77.44648769811036, 34.60773387514841], [-77.44668757729119, 34.60760313062284], [-77.4467110383889, 34.60758954263265], [-77.44688384141676, 34.607712697479144], [-77.4468494415461, 34.607862381415075], [-77.44688895644856, 34.60795128070378], [-77.44675471135858, 34.607978204722045], [-77.4465487907162, 34.607957048751736], [-77.44635542623917, 34.6080092375172], [-77.44640669092338, 34.607848764914685]], [[-77.39423667452478, 34.5340871655666], [-77.39440761835746, 34.53420998996935], [-77.39423037330104, 34.53436750694023], [-77.39408667766122, 34.53425630291694]], [[-77.37677492782602, 34.67661410376907], [-77.37676210110521, 34.67654742440114], [-77.3765042348471, 34.67665133003439], [-77.37672821326902, 34.67666428297903]], [[-77.38496513094299, 34.58971227383108], [-77.38487978639789, 34.5895374470207], [-77.38500933702841, 34.58944900629663], [-77.3850103868452, 34.589447026604056], [-77.38519539141474, 34.58943105776409], [-77.38520637272934, 34.58943315322869], [-77.38525287883343, 34.58951708028725], [-77.38520634026882, 34.58959789566172], [-77.38518263125363, 34.58960780668573], [-77.38514844107591, 34.58963827744739], [-77.3850368193637, 34.589684028436956]], [[-77.41612877373079, 34.71896135348488], [-77.41619441779011, 34.71902087814436], [-77.41625214745694, 34.71900449753541], [-77.41631617641819, 34.718983983404925], [-77.41631528738756, 34.71894127189543], [-77.41624663045336, 34.71886279449653], [-77.416244063654, 34.718859387467106], [-77.41623754501849, 34.718855446322415], [-77.41621023478294, 34.718873496494915]], [[-77.26290999121008, 34.5861326417731], [-77.26281047370462, 34.58611494313837], [-77.26278547503175, 34.586179276616484], [-77.26290736514676, 34.586201110709105]], [[-77.43073662512629, 34.74559209283908], [-77.43052325899947, 34.74537636775763], [-77.43042696610803, 34.74540789619249], [-77.43035224207861, 34.745413337036624], [-77.43030801211306, 34.74544232081935], [-77.43028592439461, 34.74555139277879], [-77.43027609422357, 34.74559217929429], [-77.43032222709819, 34.745610693765414], [-77.43045437036102, 34.74561432835749]], [[-77.38257158875052, 34.653749323036365], [-77.38251231482201, 34.65367446572893], [-77.38250147790957, 34.653667322049564], [-77.38250047711273, 34.65368299810413], [-77.38249949583322, 34.65369987236502]], [[-77.27420022843545, 34.567656024713806], [-77.27410916379284, 34.567791412164], [-77.27435351050424, 34.56779234407275], [-77.27444066109894, 34.567667195227486]], [[-77.37207932327377, 34.58210415999117], [-77.37220479333962, 34.5820969149805], [-77.37231600326086, 34.58205468657745], [-77.37240182766541, 34.58204667691224], [-77.37245008879104, 34.581915560927605], [-77.37246639549909, 34.58184371931206], [-77.37247861432166, 34.58180531160558], [-77.37240194059916, 34.58172951281304], [-77.37238118206278, 34.581735572310365], [-77.37223906511056, 34.58173368109111], [-77.3722049232009, 34.58173456648341], [-77.3720155491677, 34.581757637731265], [-77.37199992634956, 34.58175954103337], [-77.37196755341013, 34.58181624321976], [-77.37198114368404, 34.58198311629292]], [[-77.39524797279351, 34.53539824838415], [-77.39528741712151, 34.5354926064571], [-77.39506294811017, 34.535538389585014], [-77.3950454717321, 34.535374966456715]], [[-77.43481698766463, 34.730520660319044], [-77.43481006673359, 34.73052366206411], [-77.43462090296983, 34.73057418683993], [-77.43456106182254, 34.73063609133605], [-77.43453832257204, 34.73070821842114], [-77.43470083375723, 34.730943500077615], [-77.43492761062605, 34.73084426097692], [-77.43497619811288, 34.73078075654656], [-77.43499123779252, 34.73067981637172], [-77.43483890782638, 34.73053374101759], [-77.43482998178536, 34.73052389537746]], [[-77.43170365666559, 34.58426359010783], [-77.4318744210266, 34.5841666931665], [-77.43170360355644, 34.58411472447857], [-77.43160830314162, 34.58420516283526]], [[-77.35069124804028, 34.52337274177302], [-77.35071386784779, 34.52342865119938], [-77.35075815052052, 34.5233631111765], [-77.35071542084333, 34.52336113781077]], [[-77.34977362795756, 34.626145101333826], [-77.34980058099012, 34.626296681265416], [-77.34991527222647, 34.626277346448816], [-77.34993089190641, 34.62624516230316], [-77.35003599295499, 34.62607888663946], [-77.34986573478265, 34.62592101645862], [-77.3497906893352, 34.626112580520115]], [[-77.363177561056, 34.54297063775], [-77.36316698447158, 34.5429096980624], [-77.36308521983644, 34.54292571101858], [-77.36307964532914, 34.54297580285191]], [[-77.43318168802072, 34.75487051188121], [-77.43322168239706, 34.75488461959074], [-77.43324904499879, 34.75487773569719], [-77.43327273478393, 34.75486389724736], [-77.43332061485673, 34.75481256748312], [-77.433246097264, 34.75480028117093], [-77.43317725389983, 34.75476048716531], [-77.4331217138971, 34.754811136050094]], [[-77.3586250614685, 34.53504302899987], [-77.35861580636426, 34.53500945892604], [-77.35854283232925, 34.53500301369269], [-77.35855852615359, 34.53505281270255]], [[-77.35875653122957, 34.68869117571832], [-77.35857321055089, 34.68869989098343], [-77.35847291415857, 34.68812105000731], [-77.35831053676867, 34.6879248775982], [-77.35809412015945, 34.687624183761315], [-77.3579799113873, 34.68748290499755], [-77.35791320160982, 34.68736922642947], [-77.35795283819782, 34.68708785011815], [-77.35796983897865, 34.68699690261995], [-77.35811368340795, 34.68682069992748], [-77.35821362538941, 34.68668078991284], [-77.35842607629506, 34.686580244712026], [-77.35861370648551, 34.68649820258656], [-77.35872052058812, 34.68649189150558], [-77.35931393982527, 34.6861478235803], [-77.35975874659925, 34.68634286910116], [-77.36044243458555, 34.686384113243555], [-77.36140634056162, 34.68631976363133], [-77.36165509294642, 34.686330403783664], [-77.36183548631104, 34.686321168348904], [-77.36226527313995, 34.68629027214513], [-77.36282091413017, 34.68633049413132], [-77.36283934929675, 34.686336865720406], [-77.36284540089629, 34.686353693840935], [-77.36328956316049, 34.68677874778676], [-77.36334192095184, 34.6880353965776], [-77.36319295463895, 34.6882289309178], [-77.36259863081621, 34.68992937991317], [-77.36082692567632, 34.68918399415629], [-77.36031341240063, 34.68906968230726], [-77.35907680736986, 34.6887943950382]], [[-77.43564095362264, 34.70370036941556], [-77.43630231946872, 34.70446482054162], [-77.43644182255413, 34.70609579081234], [-77.43646315353598, 34.706223982983325], [-77.43615713500046, 34.708096599098546], [-77.43600665819949, 34.70830058670871], [-77.43589954757056, 34.708362048207434], [-77.43576992951151, 34.70841811638896], [-77.43519375432041, 34.708704168154], [-77.43486935553454, 34.708634016076324], [-77.43442407550884, 34.7086390318249], [-77.43428696390072, 34.70843065691907], [-77.43394055850793, 34.70815173689292], [-77.43392680654698, 34.708142398406906], [-77.43391704951736, 34.7081386287875], [-77.43338118869345, 34.70781287218161], [-77.43298455905818, 34.7076349657241], [-77.43285962726014, 34.707200448459155], [-77.43272845745122, 34.70684905365154], [-77.4326106144973, 34.706045703465264], [-77.43259944075876, 34.70601010937581], [-77.43261427103282, 34.70599656458397], [-77.43261144633702, 34.705979625064224], [-77.43275654509748, 34.70505176610609], [-77.43197813487261, 34.70465605077185], [-77.43185913428357, 34.70453347380858], [-77.43177687698622, 34.70449692754767], [-77.43170599029155, 34.704499798184244], [-77.4315872073011, 34.704519374583356], [-77.4306709282738, 34.70430370964698], [-77.43056849046843, 34.704242931027075], [-77.4304922222405, 34.7042110966188], [-77.43027435734206, 34.704151914947566], [-77.43010642019075, 34.70400164553425], [-77.4300552628304, 34.703947045522], [-77.43002650762269, 34.70390096449921], [-77.42986145725045, 34.70363646508139], [-77.42987367606268, 34.703576432074065], [-77.42969778792968, 34.70329970712852], [-77.42966123806951, 34.7032186926729], [-77.42959227510042, 34.70318667702737], [-77.42950949077087, 34.7029543376964], [-77.42962385125742, 34.70278790821224], [-77.42965704000137, 34.702726396555725], [-77.42967480235474, 34.702675579006375], [-77.42975372005318, 34.702628794050334], [-77.43029890029267, 34.70220000328582], [-77.4305488766841, 34.702095841671934], [-77.43084461979174, 34.702023505600145], [-77.43104514074695, 34.70192407543648], [-77.43134376516397, 34.701177424944454], [-77.43119516080739, 34.70102794976604], [-77.43094851235026, 34.700714793443176], [-77.43061847663301, 34.70058731463796], [-77.43035602378944, 34.700547439773985], [-77.430220980206, 34.7005769905035], [-77.42995612931246, 34.700417325263885], [-77.42982397067284, 34.700171246447916], [-77.42956135221814, 34.70013567810853], [-77.42936078585242, 34.69982748818005], [-77.4296936210293, 34.699714997440864], [-77.42991945634783, 34.6998412784529], [-77.43017681443112, 34.69987884740641], [-77.43053121093794, 34.699942035002785], [-77.43084917432245, 34.70010813747771], [-77.43100450445019, 34.6998431671195], [-77.4312057057765, 34.69982597050745], [-77.43146123749281, 34.699789237054944], [-77.431579915202, 34.69980690797337], [-77.4318557641067, 34.69979434683448], [-77.43211681018234, 34.69967302186979], [-77.43240722201013, 34.69966351417713], [-77.4325719464745, 34.69953418637359], [-77.43297733176196, 34.6994148363958], [-77.43313016087956, 34.69934953861025], [-77.4333076936573, 34.6992063835976], [-77.43364650600112, 34.69932365823428], [-77.43392796017332, 34.69974720231084], [-77.43397657293075, 34.700078693724535], [-77.43416078863628, 34.70094670253674], [-77.43395553094011, 34.701873051952646], [-77.43488306259681, 34.70262215160015]], [[-77.39614236456399, 34.58773511227264], [-77.39595898754365, 34.5878670580142], [-77.39586843595156, 34.587904069314504], [-77.39584620692243, 34.58792313057111], [-77.39573689530128, 34.58801686401692], [-77.39545212731996, 34.58823882729378], [-77.39538571276427, 34.588302771964564], [-77.39534503772936, 34.58838019146438], [-77.39535483958213, 34.58848357863432], [-77.39545209878057, 34.588619740067436], [-77.39549942115522, 34.58873149821315], [-77.39552090802198, 34.58877939446619], [-77.39556093636828, 34.588868621648984], [-77.3955853696855, 34.58891370947423], [-77.39561934448648, 34.58897748117208], [-77.3956031032753, 34.58902938061105], [-77.39556739544228, 34.589109237544854], [-77.39552850670822, 34.589120506019995], [-77.39545205868765, 34.589157007743836], [-77.39536000001944, 34.589127987906075], [-77.39535073387111, 34.58912539965127], [-77.39534491951969, 34.58911391394517], [-77.39530387734708, 34.589022986098314], [-77.39529296584949, 34.58898369889006], [-77.3952550514928, 34.58884888992413], [-77.39524661023911, 34.58881896079098], [-77.39520429919224, 34.588667475116836], [-77.39511322097039, 34.58847307149679], [-77.39512148941972, 34.588412437193625], [-77.39509127764234, 34.58838100358527], [-77.39505805822637, 34.58838479714731], [-77.3949933336306, 34.588361184255035], [-77.39482119463052, 34.58828639451876], [-77.3946640150503, 34.58820692312544], [-77.39438072296346, 34.58809471474516], [-77.3943770050267, 34.58797993543168], [-77.39456509374546, 34.58753690644907], [-77.39466408610224, 34.587369510969516], [-77.39472672876838, 34.587263148802414], [-77.3947705275011, 34.5871893467319], [-77.3948024790659, 34.58690923568092], [-77.39481056796038, 34.5867589997925], [-77.39481966032366, 34.58659013560133], [-77.3948231331754, 34.58650390277903], [-77.39484468668425, 34.58632950713354], [-77.39486120112244, 34.5863076295641], [-77.39497872822975, 34.58622450989576], [-77.3950582358403, 34.58617815993928], [-77.3952255222499, 34.58609433470639], [-77.3954522952799, 34.586025050880444], [-77.3956206301857, 34.58597437768452], [-77.39584635422055, 34.58585783814476], [-77.39615801900113, 34.58580425353284], [-77.39630012678444, 34.58575933302939], [-77.3966344573038, 34.58568183050048], [-77.39689298549042, 34.58546343104809], [-77.39730521899698, 34.58512541758431], [-77.39737383928451, 34.585063000435696], [-77.39742258207166, 34.585031720032525], [-77.39756550208226, 34.58493387852285], [-77.39789576409926, 34.58470090209751], [-77.39821068901944, 34.58450763730757], [-77.39861276121633, 34.584520856293956], [-77.3989987711302, 34.58439988194649], [-77.39944240367683, 34.58433906152882], [-77.39978684840378, 34.58438860352983], [-77.40009670685481, 34.58438879449524], [-77.40031148583904, 34.58440782069807], [-77.40057492427377, 34.58442803835915], [-77.40070678184273, 34.584492558521454], [-77.40100310509868, 34.58459187692726], [-77.40136299902527, 34.584706092785865], [-77.40187942927318, 34.58446542142478], [-77.40210347771777, 34.584381801763186], [-77.40215107705424, 34.58436371531415], [-77.40222763172807, 34.58433268556817], [-77.4025451137893, 34.58422198421469], [-77.40284779635984, 34.58422724171931], [-77.40293915030834, 34.58418190898787], [-77.40302336607078, 34.584209596479226], [-77.40333318784482, 34.58423160016667], [-77.40335133311476, 34.58425300802704], [-77.40357674633351, 34.58438262047086], [-77.40363018380467, 34.58453277174837], [-77.4035917360937, 34.584642889011754], [-77.40372723762533, 34.5848312429286], [-77.40377646626783, 34.584987764541076], [-77.40379190139735, 34.58503857709222], [-77.40380892317549, 34.58512412909911], [-77.40384224340147, 34.585243599764496], [-77.40383920619621, 34.58533569293533], [-77.40384073907754, 34.58545610483759], [-77.40381849254935, 34.58578558813123], [-77.40381458345418, 34.58588445563084], [-77.40379708387094, 34.58596221218287], [-77.40373588880617, 34.58632038917371], [-77.40372727130506, 34.586345020044135], [-77.40358862924734, 34.58661682725683], [-77.4035657625676, 34.58676951738451], [-77.40349710118375, 34.58695598633984], [-77.40348243444416, 34.58699383114284], [-77.40344127690256, 34.58709565061867], [-77.40339676161221, 34.587218482981996], [-77.40337610178496, 34.58726764484783], [-77.40333324268875, 34.58733427525712], [-77.40320543971076, 34.5875329626497], [-77.4030592914088, 34.587691760284635], [-77.40301234137334, 34.587777345201914], [-77.40297890761423, 34.58808515515891], [-77.4029758102847, 34.58812838329539], [-77.40300815530534, 34.58847400323449], [-77.40300924815546, 34.58854813343907], [-77.40301345059177, 34.588627517028826], [-77.40302122878896, 34.588970980127584], [-77.4029392187278, 34.58920801888588], [-77.4028620751553, 34.589335403429885], [-77.402829399088, 34.589423238435174], [-77.40274233104813, 34.58964794268948], [-77.40261149014039, 34.58995071852414], [-77.40224995927295, 34.590249495932625], [-77.40215110373194, 34.59018449722461], [-77.40203447288357, 34.590261438495304], [-77.40208608347805, 34.59037965256435], [-77.40215110576173, 34.59048056692705], [-77.40239717583894, 34.59091879320149], [-77.40241875985834, 34.591180796892466], [-77.4026589410959, 34.59144815046172], [-77.40269230016558, 34.591724399444274], [-77.4027443971619, 34.591982957532764], [-77.40277776153992, 34.592152148484615], [-77.4028236896159, 34.592396090777704], [-77.40286585447795, 34.59273547587201], [-77.40285171574352, 34.59281662198133], [-77.40279866293156, 34.59297577849652], [-77.40263727446114, 34.59337133120242], [-77.40245325403522, 34.59372327086366], [-77.402312824055, 34.59391773586432], [-77.40215113616692, 34.59416469351197], [-77.40214115493674, 34.59418212817394], [-77.40213389296734, 34.594193929717676], [-77.4019777410771, 34.59445422286412], [-77.40189206782671, 34.594653398711785], [-77.40175705611658, 34.59495570843862], [-77.40171295817254, 34.59505630790679], [-77.40168461521625, 34.59510790752452], [-77.4015600132433, 34.59530133025491], [-77.40154436848368, 34.59532357612867], [-77.40137605717926, 34.59556290307404], [-77.40136502049891, 34.59557859646897], [-77.40136417454102, 34.595580017606366], [-77.40136296873574, 34.595581971628754], [-77.40119359349113, 34.595845429191975], [-77.40102355448109, 34.596052439765664], [-77.40099617965713, 34.5960858048594], [-77.40096887594906, 34.5961164658862], [-77.40078870186491, 34.59631679115433], [-77.40059241031894, 34.59653922063179], [-77.40058418006186, 34.59655053623722], [-77.40057477892664, 34.59655782478855], [-77.40052419494384, 34.5966035583437], [-77.40047625419808, 34.59664877388977], [-77.40046447232596, 34.59665113001398], [-77.40037772973582, 34.59669125214293], [-77.40026080303703, 34.59667338193803], [-77.40018068160889, 34.59668500973474], [-77.39997027936705, 34.59662898000228], [-77.40018068367922, 34.596516185792346], [-77.40032136147094, 34.59642677067611], [-77.40037773268678, 34.596394302994966], [-77.40039556687327, 34.59637454729408], [-77.40040548588024, 34.59635390292606], [-77.40044026476181, 34.59628151775799], [-77.40050700563151, 34.596126968565486], [-77.40057478364155, 34.59595423988354], [-77.40065250903177, 34.59576513661868], [-77.4006670223701, 34.595679306950785], [-77.40067286262021, 34.595572801691155], [-77.40057479055744, 34.595126991070146], [-77.40052810876725, 34.5949004960663], [-77.40048896029376, 34.59485584943997], [-77.40039298747493, 34.59467382423638], [-77.4002734333415, 34.59436247646955], [-77.40018071245028, 34.59432433206655], [-77.40004927575822, 34.594211746315736], [-77.39998367335525, 34.59410730548476], [-77.3999774020678, 34.59408050904769], [-77.39998367477278, 34.59402134772445], [-77.39999959687499, 34.59388217136911], [-77.40001166902412, 34.59386327807812], [-77.40018072136061, 34.59369384752692], [-77.40023255680725, 34.593674967251275], [-77.40027273362843, 34.59361332459591], [-77.40042144415365, 34.59333252362501], [-77.40054071705406, 34.59315008515463], [-77.40043154063216, 34.59301148059639], [-77.40024041593135, 34.59276883927163], [-77.4002146056713, 34.59273607188204], [-77.40018073577214, 34.592716158370145], [-77.40008337390908, 34.59268660025028], [-77.39978666099802, 34.59257015465133], [-77.39965187631353, 34.59257439420116], [-77.39939258596878, 34.592486977210356], [-77.39937169680398, 34.59246960286466], [-77.39923133153789, 34.59223902037139], [-77.39911987688035, 34.59208136025882], [-77.39899852429265, 34.59197837842627], [-77.3988770145451, 34.59182274420933], [-77.39880149482877, 34.59173812416034], [-77.3987731064328, 34.591706816222086], [-77.39870629988039, 34.59160673507383], [-77.39866247261229, 34.591360694679096], [-77.39873443451202, 34.59128782198024], [-77.39899855327644, 34.59101746049256], [-77.3991357581724, 34.59095317149459], [-77.39925913515734, 34.59078754763578], [-77.39899856438024, 34.59065590122442], [-77.39869028137335, 34.59053746659124], [-77.39860450167114, 34.59050115992934], [-77.39858598794909, 34.590480039682305], [-77.39833925127925, 34.59049568850605], [-77.39821043410285, 34.59050222809612], [-77.39816071282334, 34.59052144594337], [-77.39788452986812, 34.59063473596353], [-77.39781635769398, 34.59069820200059], [-77.3976476656953, 34.59083829034081], [-77.39751839228633, 34.59093512773871], [-77.39742227358596, 34.59101090350698], [-77.39738197488468, 34.591014944521405], [-77.39730372504326, 34.59098509030442], [-77.3972252417011, 34.59094941894556], [-77.39717562548424, 34.59092930149181], [-77.39710036680191, 34.590752148256875], [-77.39709033017292, 34.59067586204197], [-77.39708465026325, 34.590615888091776], [-77.39708925514404, 34.59031718174816], [-77.39709203431559, 34.59025104365412], [-77.39716159376465, 34.59009734585633], [-77.39720526633714, 34.590000847577635], [-77.39735969068182, 34.58978785901945], [-77.39742233854183, 34.5897091741148], [-77.39759591352592, 34.589516210999605], [-77.39778866477054, 34.589301401055806], [-77.39781642246177, 34.589272621874045], [-77.39806899960917, 34.589108510521044], [-77.3982104950581, 34.58901145696238], [-77.39850200374445, 34.58888441256783], [-77.39866616636756, 34.58881660487336], [-77.39873230982725, 34.588603056687454], [-77.39879995663276, 34.58830635517131], [-77.39872388905312, 34.58802129187917], [-77.39880727086629, 34.58788072646804], [-77.39899866051246, 34.587638514140224], [-77.39911620036577, 34.58770950913565], [-77.39928402281214, 34.58769483371742], [-77.39939271417629, 34.587644540368075], [-77.39970084914113, 34.58732722739657], [-77.39946074769671, 34.587010579879674], [-77.39943695398632, 34.58694072922636], [-77.39960580174638, 34.58672135916907], [-77.39959576660776, 34.58669906276532], [-77.39958305959796, 34.586700136076374], [-77.39939273461606, 34.58692678805321], [-77.39938236155491, 34.58693742971436], [-77.3989986740487, 34.58723063748463], [-77.39886893725676, 34.587307472947316], [-77.39860461570342, 34.587397392385036], [-77.39845284212711, 34.58724624959544], [-77.39821056565265, 34.58733183279824], [-77.39807572049692, 34.58728241469266], [-77.39783928973155, 34.58719576685164], [-77.39781651989507, 34.587186856082816], [-77.39780309668919, 34.587190917138635], [-77.39750789820569, 34.587311095803514], [-77.3974224583967, 34.58736910860535], [-77.3972414707107, 34.587487051565], [-77.3970283895732, 34.58764903484547], [-77.39697832859923, 34.587666074821534], [-77.39668160411016, 34.58771188322443], [-77.39663433120317, 34.58771462812854], [-77.39656537144496, 34.587705283301105], [-77.39624027610157, 34.58772024232564]], [[-77.37545197556122, 34.54887251226139], [-77.37502043967527, 34.549024758927644], [-77.37362656618525, 34.54895868560962], [-77.37312788420437, 34.5485261318657], [-77.37360881768659, 34.547981939411834], [-77.3738273397539, 34.54790290967205], [-77.37341615782017, 34.54734228796933], [-77.3732092729764, 34.54706020713739], [-77.37318846494377, 34.54703183628165], [-77.3731399252585, 34.54695423139517], [-77.3728950448347, 34.546771137649266], [-77.37296724239685, 34.546491180190955], [-77.37315680296805, 34.54621150389487], [-77.3732222946703, 34.54611854261001], [-77.37329473369958, 34.54606857872405], [-77.37358437184827, 34.54579796161748], [-77.37395437669258, 34.54566627284923], [-77.37472786645665, 34.54538367513914], [-77.37475413445726, 34.54537353937696], [-77.37475834017671, 34.54536798931251], [-77.37475904837322, 34.54536006960543], [-77.37498394051009, 34.544988623739236], [-77.37523737918686, 34.54480928863815], [-77.37521629805431, 34.54460495007228], [-77.37555433477164, 34.544362447889455], [-77.37570535420186, 34.54425218092139], [-77.3759828299608, 34.5439844020414], [-77.37624952150756, 34.54368408596062], [-77.37654896216767, 34.54326638636764], [-77.37668201789634, 34.54313208876094], [-77.37715886842847, 34.542854632438235], [-77.37778646388573, 34.54297288408756], [-77.37788707796048, 34.542991953036136], [-77.37794055283656, 34.54300775054013], [-77.3782316833611, 34.54309144863832], [-77.37833067122246, 34.543116288090175], [-77.37850442215874, 34.54286938566737], [-77.37853988516798, 34.54274466679611], [-77.37873532173657, 34.542583519394945], [-77.37887360143495, 34.54241029441511], [-77.37898973055626, 34.542309762390275], [-77.379031244879, 34.54212569399094], [-77.37904420912999, 34.54199659391535], [-77.37899892874749, 34.54181877655819], [-77.37893781274, 34.541713595964794], [-77.37876287498425, 34.54136751922101], [-77.37876164883643, 34.541364137314], [-77.37876062963258, 34.541363471755574], [-77.37876001963478, 34.541361696650796], [-77.3786478505737, 34.541134900463874], [-77.3787734697441, 34.540872350984934], [-77.37877329513259, 34.5408719861864], [-77.3787741278848, 34.54087090132374], [-77.37927148862691, 34.54061710185648], [-77.3799614135911, 34.540455750425295], [-77.38035659612115, 34.54033217282763], [-77.38091270702706, 34.540563538015654], [-77.38100075031156, 34.540634497969094], [-77.38131892381956, 34.54061953575422], [-77.3819198131377, 34.540643486444864], [-77.38221096053667, 34.54068385624791], [-77.38270346431015, 34.54070897488728], [-77.38284570062785, 34.540774478871185], [-77.38295114884934, 34.54108910133982], [-77.38337510988197, 34.54118779974638], [-77.38336213898448, 34.541260759026464], [-77.38312622382276, 34.54149848303267], [-77.38307570233351, 34.541608157484866], [-77.38299157413587, 34.54173276861947], [-77.38289381647331, 34.54188212394126], [-77.38266873017876, 34.54224506841908], [-77.38265406892795, 34.54226219613729], [-77.38263485954698, 34.54229429729618], [-77.3822088469299, 34.542824957615984], [-77.38209023939021, 34.54298132772753], [-77.3818555383003, 34.5434848299915], [-77.38165983667125, 34.543765350764886], [-77.38158498883678, 34.543894232699145], [-77.38102171983753, 34.54444836113093], [-77.38100647124485, 34.544467306995045], [-77.38096343367238, 34.54452551975733], [-77.3807480032357, 34.544811917473574], [-77.38064512704437, 34.5449282730271], [-77.38056199805493, 34.54502105062219], [-77.38064201139534, 34.545065921169645], [-77.38072451434599, 34.54518925764774], [-77.38080344260928, 34.54523107050359], [-77.38102816710446, 34.54535011997645], [-77.381134615738, 34.5453616061404], [-77.38125722759155, 34.545410474604836], [-77.381466594382, 34.545658049309424], [-77.38114739113485, 34.54591596973856], [-77.3802185219266, 34.546430893361254], [-77.37963534904567, 34.546754169052264], [-77.37862346760261, 34.54752006811983], [-77.37783296522122, 34.54786432586696], [-77.37611562618537, 34.54859996055596], [-77.37587144460198, 34.54889708673056]], [[-77.36080774503839, 34.571067842355184], [-77.36093634000787, 34.571096686902095], [-77.3609802512476, 34.571172110949895], [-77.36103126551737, 34.57124793762808], [-77.36098012308932, 34.571428136582064], [-77.36097004047438, 34.57145818089512], [-77.36095703548271, 34.57147090201705], [-77.3608719015688, 34.5715996847134], [-77.36079812731234, 34.571706057832884], [-77.36078297741373, 34.57173309027914], [-77.36076190152421, 34.571711273414095], [-77.36071478552853, 34.57164452617347], [-77.36061969091972, 34.571519471144875], [-77.36060542176867, 34.571500706363494], [-77.36058611449984, 34.57147531600258], [-77.36047420013668, 34.57132814100167], [-77.36058624818529, 34.571210728233496], [-77.36063032188548, 34.57114084225016], [-77.36075467770887, 34.57107548273832], [-77.36078331566173, 34.57106043106912]], [[-77.34547622205632, 34.6550447946584], [-77.34558261412104, 34.655031805759194], [-77.34601813176802, 34.65455503821432], [-77.34610550396216, 34.65441258753574], [-77.34641293791574, 34.654536116047424], [-77.34666047209221, 34.65460549206852], [-77.34666678504296, 34.654607657917076], [-77.34666913889943, 34.654607921098766], [-77.34668030049993, 34.65461547789798], [-77.34688311127995, 34.6547534893516], [-77.34702860642619, 34.65480327699924], [-77.34733205660395, 34.65493528493722], [-77.34709277045997, 34.65512239238241], [-77.34683900470723, 34.655097200384766], [-77.34676251914442, 34.65507235172], [-77.34671977607863, 34.655076884601655], [-77.3464587912126, 34.65515422494578], [-77.34620045066326, 34.65516840627754], [-77.34614953663777, 34.65520861229785], [-77.3455168281031, 34.65519754501231], [-77.34552597785152, 34.65529227525129], [-77.34543644883978, 34.65519553673237]], [[-77.3758964359561, 34.62837387116239], [-77.37558251838155, 34.628423925020954], [-77.3753428351088, 34.62889885600422], [-77.37528375747142, 34.6289945239924], [-77.37514670517369, 34.62907785240111], [-77.37515247612876, 34.62928189400134], [-77.37514902391824, 34.6292934922638], [-77.37514559440424, 34.629292148118914], [-77.37514490390224, 34.62929113600271], [-77.37494850968365, 34.62914439667091], [-77.3749148765947, 34.62911124130693], [-77.37474248888445, 34.62893343266516], [-77.37464082966622, 34.628819276095804], [-77.37456689364076, 34.62873679830796], [-77.37456381206968, 34.62872708329554], [-77.37455439758718, 34.62866263935719], [-77.37451309961585, 34.62836455359909], [-77.37450146031296, 34.62832166194046], [-77.37450377985799, 34.62826669209937], [-77.37455453321495, 34.62820594145399], [-77.3748356014948, 34.627726942836965], [-77.37494894986524, 34.62763813686852], [-77.37505937407389, 34.6275110638853], [-77.37521499867294, 34.62736977530139], [-77.37529286251446, 34.627304251576966], [-77.37534330836905, 34.62725393190678], [-77.37573085650413, 34.62686358403269], [-77.37579812628972, 34.626796136509185], [-77.37613197373251, 34.62663165457172], [-77.37622353231146, 34.626473944960246], [-77.37625139783634, 34.62637137915081], [-77.37640972575214, 34.62622300329181], [-77.37647673924634, 34.62612664097149], [-77.37652636525037, 34.626090088058234], [-77.37664043630161, 34.626013603050296], [-77.3768040750031, 34.62586721052524], [-77.37692069114757, 34.62577285735546], [-77.37716989752471, 34.625658295190064], [-77.37731500278025, 34.625497942185724], [-77.37737256978085, 34.62542273371106], [-77.37745727962374, 34.62534855783723], [-77.3776193625726, 34.625228342764494], [-77.37770932699327, 34.62516491782472], [-77.37800689189768, 34.62494899015303], [-77.37810363143863, 34.6248963805146], [-77.37813276734298, 34.624858057564246], [-77.37825553126507, 34.624809005942], [-77.37849791227548, 34.62471135950855], [-77.37879368587424, 34.62473148020531], [-77.37887480297063, 34.62473846392358], [-77.37889213642451, 34.624748025817354], [-77.37892230183702, 34.624745436963345], [-77.37928635825472, 34.624795419214195], [-77.37951888506375, 34.62480115002363], [-77.37986322025279, 34.62477406995554], [-77.38005279968972, 34.62414940388445], [-77.38005909248585, 34.62412461490526], [-77.38006112871172, 34.624109398769036], [-77.38007499637, 34.6240619869014], [-77.38014078079702, 34.623759052807586], [-77.38024929378798, 34.6236726488469], [-77.38037823886438, 34.62355595712562], [-77.38056506758944, 34.62352406940045], [-77.38072782278655, 34.62360370404817], [-77.38081986327848, 34.62363749268929], [-77.38086354137573, 34.62368150996946], [-77.38101630085852, 34.62382215502023], [-77.3811682160304, 34.62396481549425], [-77.38125768704016, 34.62405578085561], [-77.38146565442767, 34.624122537490656], [-77.38165190947524, 34.62408921953703], [-77.38177081194453, 34.62400602276692], [-77.38204617323413, 34.62392680247033], [-77.3821202334892, 34.62390739775985], [-77.38237555928492, 34.62386069982249], [-77.38244041566696, 34.623860546266165], [-77.38256747842624, 34.623900047148936], [-77.38301412149309, 34.62393009981254], [-77.38322881685853, 34.624144551923834], [-77.38352130562342, 34.62394070659728], [-77.3835535552002, 34.62362110673874], [-77.38362318989115, 34.6233948519181], [-77.38367999350507, 34.62323946489556], [-77.38369028768881, 34.62317683838847], [-77.3838203775119, 34.62300083129115], [-77.38383925580474, 34.62296341251698], [-77.38388946565274, 34.62293585335971], [-77.38401751195079, 34.622881261597115], [-77.38414359101922, 34.62282272048753], [-77.38434130830265, 34.622734333045294], [-77.38441175784732, 34.62275855844654], [-77.38458420007677, 34.622623452955], [-77.38475614433494, 34.62254496020937], [-77.38480602546686, 34.6225068573807], [-77.3850809195016, 34.62225586198231], [-77.38520030293364, 34.622184500966924], [-77.38529242254086, 34.622196033968294], [-77.3855945346771, 34.622114673143095], [-77.38563106985083, 34.62208735808261], [-77.38598035427748, 34.62200674104539], [-77.38598877155638, 34.622009058369116], [-77.38599643323207, 34.622003608546386], [-77.38600879278923, 34.62199357670669], [-77.38618591022731, 34.621828876571904], [-77.38625623722103, 34.621821369895834], [-77.3863830287411, 34.621769658116555], [-77.38653811575398, 34.62191728652643], [-77.38638299216353, 34.621998834834216], [-77.38628972054873, 34.6220535296637], [-77.38618587096887, 34.6220713798494], [-77.38614247957062, 34.622139872358396], [-77.38611283193303, 34.62219086503082], [-77.38611349293411, 34.622268684725555], [-77.38608224272679, 34.62240755669836], [-77.38598863805052, 34.622823521225115], [-77.3859774243327, 34.62283515497287], [-77.38597913849641, 34.62285720747428], [-77.3858866408578, 34.623284879223306], [-77.3862925899813, 34.62397848352846], [-77.38631855062135, 34.62407176328429], [-77.3863109456798, 34.62415008202431], [-77.38614377465524, 34.62452151894166], [-77.38606980954924, 34.624619911455184], [-77.38587097304973, 34.62498540118712], [-77.3857673508692, 34.62518700275728], [-77.38567600028321, 34.62543806692073], [-77.38559394207658, 34.62565049313561], [-77.38546573268614, 34.62575488152614], [-77.38488503918023, 34.62589088455044], [-77.38480542691096, 34.62589160913575], [-77.38471678409601, 34.62590540872449], [-77.3843761692308, 34.62604995352055], [-77.38404847124288, 34.62613116902439], [-77.38401690304232, 34.62615349404367], [-77.3838838967362, 34.62626410730518], [-77.38355072904406, 34.626516072876775], [-77.38327448474188, 34.627008056567654], [-77.38324481299088, 34.62706211340063], [-77.38322824088455, 34.62710161611265], [-77.38294114192723, 34.62764593343985], [-77.38274962954645, 34.62798259403917], [-77.38278680016697, 34.628351243128094], [-77.38261558218082, 34.62842647353602], [-77.38279237876307, 34.62844553087912], [-77.38285823151327, 34.62841788866304], [-77.38322801332203, 34.62827928070747], [-77.38342753822556, 34.628099742454154], [-77.38399506667929, 34.627826315994234], [-77.38401659674022, 34.62781533153055], [-77.38402820657723, 34.6278108587958], [-77.38409081338513, 34.62778933512833], [-77.38468444854094, 34.62757382422173], [-77.38480514304625, 34.627513376762074], [-77.38504990426676, 34.62738755993314], [-77.3860576754862, 34.62715642546828], [-77.38638218352693, 34.62712942009929], [-77.38666499440029, 34.6271137985792], [-77.38717067841688, 34.627069310505235], [-77.38737605818835, 34.627094697063384], [-77.38791136756218, 34.627187268050875], [-77.38795915082986, 34.62716334985236], [-77.38804995591217, 34.627120963900374], [-77.38852386187884, 34.626909416616044], [-77.38852531830551, 34.62672566254706], [-77.38853010483447, 34.62653475680712], [-77.38853851579533, 34.626299192572176], [-77.38848226332803, 34.626021354423145], [-77.3885502902716, 34.625872928403545], [-77.38874781657543, 34.62575676545741], [-77.38883752917621, 34.62583152491808], [-77.3889971496553, 34.62596453984487], [-77.38910651993659, 34.62617910849755], [-77.38912846442761, 34.626214155600465], [-77.3891276239982, 34.62622975257382], [-77.38907792632159, 34.62657705747058], [-77.38897149217945, 34.626661349877736], [-77.3889728991423, 34.62684316764888], [-77.38887139780189, 34.62710034519027], [-77.38882148124108, 34.627877052901695], [-77.38882299114925, 34.62795645769076], [-77.38891136248685, 34.62812016653091], [-77.38858492446731, 34.62883990505444], [-77.38905147012738, 34.62994935856579], [-77.38795848295317, 34.63211064976696], [-77.38790657280842, 34.632278341203865], [-77.38561522085217, 34.63179130004342], [-77.38480436841718, 34.63199614767285], [-77.38399861879209, 34.632029727417645], [-77.38322730544303, 34.631976219424395], [-77.38271120372976, 34.63194041083896], [-77.38219391874033, 34.63204464974237], [-77.381650201116, 34.63215090656246], [-77.38151195776047, 34.632257717857364], [-77.38089647930637, 34.63245767159254], [-77.38086163265898, 34.632299830437184], [-77.38076670564817, 34.631767149423936], [-77.38070879120014, 34.631673146372975], [-77.38073125987799, 34.63152933635276], [-77.38066177253965, 34.63104630899629], [-77.3805992207429, 34.63083980567115], [-77.38040671069253, 34.63037719708897], [-77.38028372320335, 34.630036132765824], [-77.38018483906359, 34.629930628555485], [-77.38007366671785, 34.62980071442682], [-77.37982975463443, 34.62951514060887], [-77.37928628607501, 34.62933180183999], [-77.3792852645004, 34.629332204907236], [-77.37892068045488, 34.62984001730148], [-77.37869573085476, 34.630264898982084], [-77.37855259115707, 34.630345918491166], [-77.37849649341997, 34.630382060512076], [-77.37830355823253, 34.630538232869306], [-77.37829561101786, 34.63053881666231], [-77.37820951974894, 34.63054721958006], [-77.37810683338127, 34.63055701009552], [-77.37810219045252, 34.63055132079432], [-77.3779756518326, 34.63050490309494], [-77.37781456392399, 34.630506648339015], [-77.37770794786744, 34.63047970885048], [-77.3776557587856, 34.630470908193445], [-77.37739075101217, 34.63045287849377], [-77.37755787996585, 34.630267143672235], [-77.37770802749841, 34.630170860607265], [-77.37804657867133, 34.62987377715831], [-77.37830857519695, 34.629471545585005], [-77.37842090264257, 34.62937369343517], [-77.37849677013133, 34.62926901392663], [-77.37887018664516, 34.62894355590856], [-77.3790106821769, 34.62852127967603], [-77.3787705851621, 34.62826127034133], [-77.37849707880818, 34.628031493140526], [-77.37831764033497, 34.62796524478347], [-77.37784549378527, 34.62798743299562], [-77.37770856460752, 34.62809344406715], [-77.37720949083217, 34.62878074165457], [-77.3771410075926, 34.629028802976705], [-77.37691978079762, 34.6291546012669], [-77.3766144996396, 34.62919517779649], [-77.37648522803181, 34.62888506392497], [-77.37613143590669, 34.62856224234598]], [[-77.45438890777898, 34.503281653031316], [-77.45582454421576, 34.50225835183089], [-77.45652270616682, 34.50194201368994], [-77.45835913638378, 34.50167711639599], [-77.45837382159043, 34.5016531445336], [-77.45838556932553, 34.50164308711972], [-77.45900166862415, 34.50077003475783], [-77.46071728252417, 34.5004507745286], [-77.4607604335427, 34.500436290342414], [-77.4609093646692, 34.50042022075378], [-77.46200486945138, 34.50023444853534], [-77.4627305869281, 34.50020518470088], [-77.46333265134434, 34.5001650946847], [-77.46392588321926, 34.500191731825566], [-77.46405809963626, 34.500224299270776], [-77.46409941428931, 34.500276015600626], [-77.46440597680919, 34.50059770456658], [-77.46442069547741, 34.500817760209166], [-77.46439270333732, 34.50101247859691], [-77.46446257437727, 34.501276087177985], [-77.4645040999379, 34.50155710595838], [-77.46450243181775, 34.5019536214306], [-77.46449738329379, 34.502251348374145], [-77.46448706377384, 34.502348938658216], [-77.46445100655612, 34.50262652405753], [-77.46431199068184, 34.503223345152406], [-77.46440141993979, 34.50329951920332], [-77.46433738623965, 34.50336166811952], [-77.46423368581408, 34.503459224764505], [-77.4637154027239, 34.50424761396383], [-77.46324654053592, 34.50459193335149], [-77.46278813171973, 34.50498529486386], [-77.46233507767246, 34.50522119333928], [-77.4622403855056, 34.505313287792035], [-77.46206876832409, 34.50539219156244], [-77.46188966997883, 34.50553634305445], [-77.46194283264799, 34.505762792717], [-77.46197046120186, 34.5058781998935], [-77.46199954531028, 34.50599742442578], [-77.46225243700464, 34.50710120170808], [-77.46228664680446, 34.50724527415109], [-77.46228377461537, 34.50741476162521], [-77.4621279847645, 34.50822879905499], [-77.46200451551626, 34.50858198010593], [-77.46177442421485, 34.50924016034571], [-77.4617697858873, 34.509242881239665], [-77.46047715250886, 34.50942157932146], [-77.4587851063763, 34.50924260033155], [-77.45764907974358, 34.5089305481716], [-77.45510468852014, 34.50823158102486], [-77.4548913694912, 34.508145098057696], [-77.45399838269498, 34.506824297257154], [-77.45392745939749, 34.50551708706319], [-77.45393678535413, 34.505438242914316], [-77.45409184272623, 34.50412697035499]], [[-77.33923065757585, 34.636607568461805], [-77.33921243174198, 34.63662230850857], [-77.33888624993102, 34.63633015324761], [-77.33881683414899, 34.63627883840836], [-77.33853504081006, 34.636437339250556], [-77.33811693290652, 34.63627908732746], [-77.3378620913241, 34.63627446232029], [-77.33772704518525, 34.63658230988847], [-77.3376018796324, 34.636572641374904], [-77.3375092864808, 34.63657151949978], [-77.33724062547503, 34.636367850504534], [-77.33704862255372, 34.6366161136296], [-77.33696269894841, 34.636577857743035], [-77.33693446520769, 34.63656153932086], [-77.33679818495646, 34.636555671344176], [-77.33678810850978, 34.63654872637584], [-77.33668641016483, 34.63647863293055], [-77.3366427921469, 34.63640398757941], [-77.33665233633572, 34.63635636107851], [-77.33669741446171, 34.636288170846946], [-77.33683665086072, 34.636181189119334], [-77.33690127586189, 34.63627209422748], [-77.33695151961152, 34.636104305430244], [-77.33710993506807, 34.63600608413759], [-77.33714636009009, 34.63589860479092], [-77.33769149082168, 34.63588183502875], [-77.3375824762035, 34.634882585181934], [-77.33756595872192, 34.634430064880966], [-77.33859930129202, 34.63441343026836], [-77.3387434866695, 34.63428816367036], [-77.33889912803971, 34.634340376181356], [-77.3394032628584, 34.63438554065473], [-77.3396351508388, 34.634658623615294], [-77.33988580834222, 34.63485758785762], [-77.340197298038, 34.635151133199365], [-77.34048772054541, 34.63526671329213], [-77.34064863903774, 34.6355968728528], [-77.34075119377542, 34.63589313783442], [-77.34079424194596, 34.635998883937525], [-77.34082597952465, 34.63613951069174], [-77.34084470336445, 34.636202955938906], [-77.34074739173697, 34.63629574366172], [-77.3407246481029, 34.63637852478637], [-77.34067974155617, 34.63643659832174], [-77.34062568799132, 34.636486623752845], [-77.3405170635366, 34.63651833200097], [-77.34047682819138, 34.6365423536368], [-77.34038187079388, 34.636624394722574], [-77.33992650844348, 34.636634190254966], [-77.33998894517786, 34.63695341584936], [-77.33992730940552, 34.63699383076158], [-77.33962068954605, 34.63701590711931], [-77.33955270494543, 34.63711801279386], [-77.33946136397965, 34.637025830120265], [-77.33931527101574, 34.63673073638942], [-77.3392807039575, 34.636628629895554]], [[-77.39034890998362, 34.710317089667555], [-77.39014238456157, 34.71032716954827], [-77.39023617880075, 34.71018240549737], [-77.39036475379517, 34.7102155489965], [-77.39037687540876, 34.71022062811393], [-77.39073274454701, 34.7100810821904], [-77.39048063763136, 34.71026796491529], [-77.39041264536579, 34.71029389534152]], [[-77.40617751067595, 34.6697199248456], [-77.4059857896733, 34.669622262014414], [-77.40511352340498, 34.66927113108018], [-77.40522282763146, 34.66845945491425], [-77.40585247608678, 34.66820547329392], [-77.406317873777, 34.668475543211265], [-77.40676280213088, 34.66858307358306], [-77.40690976487699, 34.6686441453061], [-77.40699971517222, 34.668586163081144], [-77.40710275134722, 34.668558385505726], [-77.4074272882986, 34.66853753890077], [-77.40758427096421, 34.66852745475158], [-77.4076472961921, 34.66852340610112], [-77.40777759043625, 34.668515036018405], [-77.4078673042244, 34.6685092728474], [-77.4080354114005, 34.66849847331525], [-77.40809565434527, 34.66888288546413], [-77.4081071829851, 34.668909966235105], [-77.40810439551578, 34.66891603185694], [-77.40792687947453, 34.669354943053314], [-77.40786416953668, 34.66938403363995], [-77.40766371751909, 34.669672572880486], [-77.4075433758014, 34.66983087666526], [-77.40757068692773, 34.67003137541183], [-77.4074939481437, 34.670143010640814], [-77.40715241348431, 34.67025315981906], [-77.4071237167874, 34.67028546752277], [-77.40704448167537, 34.670391486107285], [-77.4069529314143, 34.67028910028992], [-77.40667480669813, 34.6700859820546]], [[-77.39382148529947, 34.623470242727066], [-77.394267268089, 34.623341799843345], [-77.39457265033165, 34.623210725858975], [-77.39474644901199, 34.623189865493174], [-77.39505572575774, 34.62314924366993], [-77.39519594924626, 34.623216535941424], [-77.39534121230075, 34.62331268653023], [-77.39544993200451, 34.62347860975569], [-77.39553412363674, 34.623592341297716], [-77.39562028683065, 34.62382100054435], [-77.3958441178502, 34.62433826635793], [-77.39586160088798, 34.62437542929367], [-77.39586923811734, 34.624393158474085], [-77.39589063361356, 34.62444017348775], [-77.3962318624643, 34.62519000760351], [-77.39615139483357, 34.625719764637346], [-77.39621692314276, 34.62604130343541], [-77.39697422866712, 34.62714927184045], [-77.39584399162263, 34.627271769729774], [-77.395313335677, 34.626743108670425], [-77.39516050663612, 34.62619364246911], [-77.39505557106831, 34.626044091145786], [-77.39479693394605, 34.62567548631874], [-77.39447395009047, 34.62544349904344], [-77.39426713858093, 34.62539411470317], [-77.39415777351309, 34.62537130656357], [-77.3937089008825, 34.625305871636144], [-77.39347868040394, 34.62527203802268], [-77.3928894084334, 34.62482282812757], [-77.3927896456348, 34.624730175935866], [-77.39269029490266, 34.624285296135845], [-77.3924054770239, 34.62404346143751], [-77.39248820457239, 34.62340011781476], [-77.39190188568304, 34.62376340171032], [-77.39167272431327, 34.62354678839442], [-77.39150768357433, 34.62351395529583], [-77.39129218536574, 34.62335482977351], [-77.39150772131958, 34.6231247714077], [-77.39161964554224, 34.62300357819343], [-77.39182988517017, 34.62293036586062], [-77.39190196175753, 34.62293798599932], [-77.39216317048565, 34.62280468879789], [-77.39227282743863, 34.6227637077844], [-77.39233393968554, 34.62273942419007], [-77.3926903987586, 34.62302670752727], [-77.39272321477202, 34.6231131616266], [-77.39277876808065, 34.623140502058156], [-77.39347881374023, 34.62343456911019]], [[-77.39859128417643, 34.527730125584], [-77.39823979689295, 34.527988908452414], [-77.3980596270882, 34.52829654201564], [-77.39789797540769, 34.528358815425335], [-77.3971743052312, 34.528464064035624], [-77.39696560695172, 34.52854378066109], [-77.39632301630257, 34.52857888736096], [-77.39609156220052, 34.52893082697582], [-77.39595624990257, 34.529089800132425], [-77.39547831978942, 34.52962588911668], [-77.39547858757675, 34.529648409287184], [-77.39544681418933, 34.52969424768134], [-77.39520755587996, 34.5299908566496], [-77.39482756534179, 34.53016330660336], [-77.39471639819132, 34.53020726359466], [-77.39466611727242, 34.53022420556444], [-77.39433869727806, 34.53030258116161], [-77.39392703977933, 34.53039989490889], [-77.39385600377345, 34.530416316778364], [-77.393657484858, 34.5304008845541], [-77.39321602227257, 34.53041816654588], [-77.39314210363362, 34.53039572971159], [-77.39246892687031, 34.53008272365639], [-77.39244064094994, 34.53003967646001], [-77.392367586732, 34.529928496856854], [-77.39209583197673, 34.52996759680323], [-77.39157643423769, 34.530200646071094], [-77.39154355675016, 34.5302162453748], [-77.39107665295202, 34.53046525362815], [-77.3907836988665, 34.53054283826259], [-77.39005705177989, 34.53092038408856], [-77.39000736664653, 34.53093854007218], [-77.38998961939163, 34.53094438716224], [-77.38994981888088, 34.53096045443982], [-77.38973834523082, 34.53096636299179], [-77.38866230493227, 34.53096981915099], [-77.38841743020247, 34.5310381725674], [-77.3882232747406, 34.53106419459075], [-77.38722677734197, 34.531091266585555], [-77.38684671157219, 34.53106656274073], [-77.38639124940448, 34.53095953543941], [-77.38685642593056, 34.530636093104405], [-77.38710884587633, 34.53052220462491], [-77.38759812993878, 34.530295779761644], [-77.3881292202776, 34.53002514917392], [-77.38845218106319, 34.52949699141788], [-77.38902796234314, 34.52972713059793], [-77.38932320819578, 34.5296125257646], [-77.39002656840222, 34.52930435407657], [-77.39139235456823, 34.52890211199506], [-77.39160526132054, 34.528920053333955], [-77.3917783520384, 34.52881992609584], [-77.39191862188952, 34.52869312304547], [-77.3927504775908, 34.52829939436705], [-77.39300584674075, 34.52768000041655], [-77.39257956016547, 34.52761841634982], [-77.39254420407026, 34.52720580673443], [-77.39253938468333, 34.5270675391199], [-77.39297026424613, 34.52658270197285], [-77.39305247618663, 34.52645970724196], [-77.3932060335723, 34.52559679572164], [-77.39320149512525, 34.52556999832365], [-77.39321151634115, 34.52554377616037], [-77.39325222662517, 34.52549968255245], [-77.39469481574521, 34.52437515431294], [-77.39476940689211, 34.52431485008875], [-77.39485136150677, 34.52420183896797], [-77.39496239813879, 34.52426636673847], [-77.39494808682213, 34.52433860233356], [-77.39498849231101, 34.52442139101787], [-77.39549469452717, 34.525239051825416], [-77.39616159938974, 34.52528956611359], [-77.39639112092603, 34.52554592104302], [-77.39650338184184, 34.52558314123594], [-77.39690976221836, 34.52568862989239], [-77.39760924886085, 34.52591319218623], [-77.3977119874761, 34.526046737986675], [-77.39793831624554, 34.52656077271355], [-77.39892441945005, 34.52705992713127]], [[-77.36362456870421, 34.55102545653891], [-77.36368941668904, 34.551369626080294], [-77.36366893327082, 34.55140565443048], [-77.36367382025975, 34.55161669763473], [-77.36363482290797, 34.55184901790881], [-77.3636384840906, 34.55186661200581], [-77.36365346109228, 34.55189485090307], [-77.36360268719986, 34.5519836579105], [-77.36355795407663, 34.55190719278626], [-77.36356064530158, 34.551877822545116], [-77.36310435117872, 34.55176770664318], [-77.36313890802884, 34.551644536987816], [-77.36315986913817, 34.55144589275319], [-77.36322497920054, 34.5513305993459], [-77.36352619540766, 34.551336216796344]], [[-77.35582897865572, 34.55078769481123], [-77.35580866231233, 34.550810309186375], [-77.35577623076647, 34.5508476144586], [-77.35559361492216, 34.55095404983817], [-77.35537841518926, 34.55107410435144], [-77.35535649980143, 34.55108705365746], [-77.35530363839136, 34.55110814351536], [-77.35505380172867, 34.55118814682885], [-77.35498233968487, 34.55122464251269], [-77.35464711734434, 34.55140904202149], [-77.35458471869646, 34.55144247276918], [-77.35457024685667, 34.55144961644362], [-77.35455295426996, 34.55146102740143], [-77.35418586712163, 34.55171383246295], [-77.35414419982675, 34.55173906736524], [-77.35405322037083, 34.55177778369605], [-77.35378844727747, 34.55192270177942], [-77.35362479272777, 34.55198309153729], [-77.35341492680881, 34.55211448163541], [-77.35339118207168, 34.55212474555005], [-77.35313307353213, 34.5522405877207], [-77.3529947842805, 34.552288927769624], [-77.35282998515564, 34.552341489428485], [-77.35279699764435, 34.55235304051057], [-77.35276357039719, 34.55235151007304], [-77.35260162810067, 34.55231189988372], [-77.35244439381938, 34.55225417270502], [-77.35230606702441, 34.55221494448513], [-77.35221208578672, 34.55217754412876], [-77.35219296362293, 34.55216794965348], [-77.35210804734186, 34.55212340861246], [-77.352032040431, 34.552068699647975], [-77.3519548026416, 34.55199799458386], [-77.3518262862468, 34.55188034738707], [-77.35180328308243, 34.55185680189568], [-77.3517925499221, 34.551836684865584], [-77.35174268612998, 34.55174311242061], [-77.35174769172102, 34.55167197414609], [-77.35174323749476, 34.551620622217946], [-77.3517056916966, 34.551546039315056], [-77.35172267005893, 34.55137876078358], [-77.35162701324705, 34.551280557093], [-77.35161205259217, 34.55125209414918], [-77.35161070071067, 34.551150054190096], [-77.35158727485772, 34.550991656384205], [-77.35152484229302, 34.55087513708025], [-77.35147809845111, 34.55067949576247], [-77.3514726251034, 34.550673283950815], [-77.35146172433765, 34.55065916652988], [-77.35134965355142, 34.550524965701804], [-77.35131374817492, 34.55045832771676], [-77.35124950681218, 34.55035937824719], [-77.35122659151186, 34.550319383047054], [-77.35138063075271, 34.55020388048179], [-77.3514463743068, 34.55017795081165], [-77.35147307097311, 34.55016544878216], [-77.35167969761845, 34.55004310726427], [-77.35187104694151, 34.54993230300161], [-77.35190892817288, 34.54990627256756], [-77.35196050838817, 34.54987560035528], [-77.35213260395349, 34.54976673460948], [-77.35226917885433, 34.549692269347446], [-77.35257629371256, 34.54959683122773], [-77.35266459819289, 34.54957023520686], [-77.3527199741801, 34.54955579198834], [-77.35302342200558, 34.54947779086849], [-77.35338223171591, 34.549381288028755], [-77.35345440624488, 34.54937089407076], [-77.35350394894027, 34.549377635164255], [-77.35371232238086, 34.549378631352155], [-77.35384681417088, 34.549379899174944], [-77.3540600291571, 34.54943959443353], [-77.35423690733299, 34.54948976790187], [-77.35429343345861, 34.54950434912415], [-77.35437295441574, 34.54952835889296], [-77.35443177091078, 34.54955269252506], [-77.35450718219795, 34.54958397651533], [-77.3546008209651, 34.54960167282312], [-77.35462697902149, 34.54960061305302], [-77.35476229551355, 34.54955605495408], [-77.35483050508938, 34.549462494379384], [-77.35494675217484, 34.54939743177798], [-77.35502472649813, 34.54937689401007], [-77.35511866502375, 34.54936263953586], [-77.35522188012158, 34.549339989787875], [-77.35529230970643, 34.549317196420176], [-77.3554195175258, 34.54928198352671], [-77.35580796944484, 34.549076959765614], [-77.3558128049777, 34.54907370565803], [-77.35581701129671, 34.54906916277355], [-77.35597624865244, 34.54890485820941], [-77.35609940947892, 34.54879018048966], [-77.35614749212726, 34.54873980594727], [-77.35621812171456, 34.548698496391665], [-77.35638814954469, 34.548608528587145], [-77.35653170507729, 34.54853474224156], [-77.3566154568649, 34.548492380587014], [-77.3566372484263, 34.54848135837548], [-77.35665825662929, 34.54846490262592], [-77.3568150558173, 34.54834865134813], [-77.35684681333244, 34.54833495223494], [-77.35701503425473, 34.54818833217443], [-77.3570322970804, 34.54817682917553], [-77.35703421295742, 34.54816595295084], [-77.35705557232912, 34.548138313712315], [-77.35713087513771, 34.547976421120175], [-77.35738139410813, 34.54789175010034], [-77.35741451480388, 34.54788838167565], [-77.35747848677518, 34.547897183266954], [-77.35773686513184, 34.54781996446732], [-77.35752857284956, 34.547780372467194], [-77.35761062186596, 34.54759331782657], [-77.35749652262054, 34.54756325190927], [-77.35742276173443, 34.54752844088118], [-77.35734605031612, 34.54743574735189], [-77.35734411372849, 34.5473868655871], [-77.3573500761896, 34.54733795979471], [-77.35734929980666, 34.547324913128975], [-77.3574285015642, 34.54727792404018], [-77.3574990427181, 34.54728625554209], [-77.35753691396336, 34.54729131088646], [-77.3576240858127, 34.54730924866007], [-77.35780510289227, 34.547310986818424], [-77.35782032234928, 34.547312103403435], [-77.35782768446431, 34.54731264351838], [-77.35784884284433, 34.54731419577966], [-77.3580151492501, 34.547376500557064], [-77.35810565287508, 34.54733303625485], [-77.35811792316359, 34.547334377996876], [-77.35814643786702, 34.54735288042596], [-77.35814892523497, 34.54739340126298], [-77.35821017815334, 34.54743208973367], [-77.35822979663047, 34.54749109243128], [-77.35823724308538, 34.54750309677504], [-77.35825274532618, 34.54752879013494], [-77.35824811911732, 34.54771860297151], [-77.35829196579706, 34.54774004119281], [-77.35834667289444, 34.547822861314565], [-77.35838386033986, 34.54785725571263], [-77.35829920045737, 34.54798382300753], [-77.35844540013817, 34.548052061396376], [-77.35844882383999, 34.54808469158473], [-77.35844715421251, 34.54812012078092], [-77.35844670334347, 34.548146202830395], [-77.35843559650328, 34.54818016887231], [-77.35842766400323, 34.54821015007593], [-77.35838586653944, 34.54833224903677], [-77.3583803715492, 34.548335998191746], [-77.35838028478875, 34.54834271494329], [-77.3582848232857, 34.54847554020461], [-77.3582757662326, 34.54853347318823], [-77.35827456579142, 34.54859942896428], [-77.35825692719956, 34.54864849242769], [-77.358256090109, 34.54866329505093], [-77.35822167378049, 34.54870412131018], [-77.35819911348156, 34.54873270451177], [-77.35819166555127, 34.548740924903], [-77.35817991091992, 34.54875366236973], [-77.3580512468192, 34.54892097533737], [-77.3579941459065, 34.549007039288426], [-77.35797729409367, 34.54902921986425], [-77.35791861526772, 34.549104814838415], [-77.35788678114343, 34.54914490921733], [-77.35777933327992, 34.54928023738651], [-77.35777704403195, 34.549283120643885], [-77.3577763926621, 34.54928398796081], [-77.35777511381147, 34.549285662897056], [-77.35770634239077, 34.549374090798096], [-77.35767392665126, 34.549418099561784], [-77.35767261311196, 34.5494197727468], [-77.35767090779915, 34.549420813456436], [-77.35761676102567, 34.549454690876644], [-77.35757434423896, 34.5494804744812], [-77.35738096273138, 34.549581699338596], [-77.35737566919627, 34.54958382727445], [-77.35737329970694, 34.54958460670263], [-77.35736672853149, 34.54958701917419], [-77.35707876734637, 34.54968967366588], [-77.35697984463052, 34.549723896836205], [-77.35680467870644, 34.54980468741204], [-77.35664704845018, 34.549895697615035], [-77.35658247447417, 34.54993133573361], [-77.35657115832927, 34.54993943967246], [-77.35655653798865, 34.54994848503265], [-77.35618310130936, 34.550226055183145], [-77.35616314620465, 34.55023766493347], [-77.35615876114223, 34.55025057354027], [-77.35616220336419, 34.5502625869701], [-77.35609891622687, 34.55045478689007], [-77.35609210302046, 34.55050499263898], [-77.35597760539177, 34.55062674194596], [-77.35596638266624, 34.550638675431756], [-77.35595840460793, 34.55064665139584], [-77.35592531782495, 34.550683211661806]], [[-77.33925963399217, 34.689248070434914], [-77.3395334532187, 34.68929392917483], [-77.34030080719964, 34.68942243892577], [-77.34097184908467, 34.68976380485731], [-77.3410732413337, 34.69029121641703], [-77.34120372427115, 34.690373708801204], [-77.34130925302782, 34.69043490893329], [-77.34157933400344, 34.6904437728071], [-77.34181753635562, 34.69018909314991], [-77.34205210044854, 34.68993830222831], [-77.34223208391538, 34.68974586660951], [-77.34274898982103, 34.689578874610994], [-77.34258631310867, 34.68983991646882], [-77.34240393964907, 34.68989824933007], [-77.34203807142177, 34.69015883299501], [-77.34197501054247, 34.690203700082876], [-77.34160545914112, 34.690466937871825], [-77.34138785261068, 34.690735426936506], [-77.34113824029647, 34.69102363012914], [-77.3409264561298, 34.69114157128207], [-77.34094270109155, 34.69128388093995], [-77.34071264491668, 34.691539863189504], [-77.34035708623507, 34.691913423687396], [-77.34007172492458, 34.69237812920284], [-77.33977558347652, 34.692674523946145], [-77.33966324722496, 34.6929215464614], [-77.3396135587451, 34.693173798436064], [-77.33952219185502, 34.69342827341676], [-77.33947889781076, 34.693671555074054], [-77.33947730947281, 34.69368677046918], [-77.33944422627066, 34.69392634524545], [-77.33934577696422, 34.69416812394675], [-77.33933574383298, 34.69419960874827], [-77.33928799344824, 34.694212580595135], [-77.33903372934071, 34.694146780865715], [-77.33846459787179, 34.69406553182446], [-77.33845727417979, 34.69406340684193], [-77.33786848524073, 34.69403658395771], [-77.33766901022165, 34.693881564997525], [-77.33746202929363, 34.693710887456604], [-77.33741292861473, 34.693684437542906], [-77.3373881898253, 34.69362929282486], [-77.33719823148057, 34.6935809925643], [-77.33709874840378, 34.69353200662832], [-77.33707285466603, 34.69352058359266], [-77.33685913445805, 34.69338983666994], [-77.33681016809918, 34.693359880570256], [-77.33668909662894, 34.693329535200846], [-77.33701004832484, 34.69287041637323], [-77.33705549414798, 34.692816041543665], [-77.33708403082137, 34.6927879891753], [-77.33708154952684, 34.69275695451381], [-77.33668299262247, 34.691868246178245], [-77.3380960496217, 34.690399841886375], [-77.33634739036674, 34.69103048383447], [-77.33607042456373, 34.690381737809744], [-77.33591759189957, 34.690023736648115], [-77.33724805927365, 34.68789915098873], [-77.33723255679902, 34.68789387299889], [-77.33723130293687, 34.68786489361298], [-77.33726106508817, 34.687885687722435], [-77.33726410283305, 34.68788680758874], [-77.3372694738397, 34.6878888090312]], [[-77.39692866675068, 34.71811596396403], [-77.39676436703816, 34.71738561848825], [-77.39605274593893, 34.71717909546044], [-77.39562144658052, 34.716969435566014], [-77.39534559945386, 34.71686619075621], [-77.39488736247998, 34.7167760528339], [-77.39437160590364, 34.716769826558405], [-77.39406909721774, 34.71672391578183], [-77.39365845930797, 34.71659215833851], [-77.39351250468893, 34.71636145122558], [-77.39374352491431, 34.71596700372238], [-77.39350361258924, 34.71579918276605], [-77.39339514776395, 34.71521959625459], [-77.39378987201235, 34.714321588277954], [-77.39426824605842, 34.71448856452342], [-77.39507175313179, 34.71452068282377], [-77.39551847239005, 34.714598787171624], [-77.39568298487933, 34.71442466705069], [-77.39616087352903, 34.714594253833795], [-77.39634699237988, 34.71488170041977], [-77.3966953636843, 34.714962024559405], [-77.39683690218311, 34.71512378373092], [-77.39695596308289, 34.71532978316364], [-77.39695820872433, 34.71551953192102], [-77.39711144246661, 34.71573835259842], [-77.397222111659, 34.71585583478635], [-77.39748899717098, 34.71607543877276], [-77.3975785919306, 34.71615354283279], [-77.39761963187762, 34.7161969038051], [-77.39773004715992, 34.7163135632874], [-77.39765400712224, 34.7164127477629], [-77.39767725632416, 34.71655873195631], [-77.39762311414943, 34.716681510577395], [-77.3978048099051, 34.716951877916124], [-77.3979677988826, 34.717207594931324], [-77.39800733054061, 34.71731377117949], [-77.39808286730171, 34.71740151714612], [-77.39825247143747, 34.71765789672696], [-77.398446569701, 34.717767693954926], [-77.39848671971323, 34.71782238958865], [-77.39859639999156, 34.717960838830294], [-77.39863107350114, 34.71801268133218], [-77.39864776416265, 34.71805100636568], [-77.3986343151782, 34.718129134712505], [-77.3986224441891, 34.71814944756106], [-77.39860853916237, 34.718178939882335], [-77.39852601562288, 34.71832616457025], [-77.39843478079337, 34.7183633593349], [-77.39838299280773, 34.71849612961105], [-77.39829933883033, 34.718595542280184], [-77.3982707908684, 34.71865705757463], [-77.39820552246564, 34.71884228947893], [-77.39810389940628, 34.71895000164757], [-77.39794768810883, 34.71887694454182], [-77.39761025496448, 34.718913588860524], [-77.39750362011992, 34.71889900316246], [-77.3974728918825, 34.71891512520328], [-77.39741072288692, 34.718901452515155], [-77.39720780508554, 34.71877277761286], [-77.39699866815232, 34.71833933209057], [-77.3969906471346, 34.71818393059529]], [[-77.38935385727873, 34.547506684098494], [-77.3890396300306, 34.54710191670266], [-77.38884605624312, 34.5468525623579], [-77.38880354884354, 34.54679780604496], [-77.3887845052354, 34.54677327459315], [-77.38873454885484, 34.54670892215224], [-77.38856746831647, 34.546493694390726], [-77.38841934436417, 34.54633627964647], [-77.38808217349516, 34.54590760571288], [-77.38772177687963, 34.546168318052324], [-77.38728594599003, 34.54639747778562], [-77.38695128770564, 34.54633848873169], [-77.38727021539485, 34.54650202437749], [-77.38727574468956, 34.546506061390964], [-77.38728335213611, 34.54651248063933], [-77.38751252050785, 34.54680964532927], [-77.3876146047591, 34.54694201756358], [-77.38766509428173, 34.54699363748661], [-77.38776857931565, 34.54709862917222], [-77.38784922472618, 34.5471530100382], [-77.38805102761383, 34.547289089882966], [-77.3881154839217, 34.54731882407291], [-77.38825272337769, 34.54733964351216], [-77.3886080664889, 34.54742870776259]], [[-77.39131342422604, 34.71503272705462], [-77.39061230529961, 34.715111004772645], [-77.39046869892275, 34.715296265442184], [-77.39009449393006, 34.715617132150626], [-77.38997855856334, 34.71557114903275], [-77.38949601382829, 34.71505964875334], [-77.38954689837736, 34.71486502452031], [-77.38965021955607, 34.714450653066514], [-77.38992400509608, 34.71399393172868], [-77.389928995117, 34.713993228105224], [-77.39063894709682, 34.71373920413503], [-77.39090150183843, 34.71377024288402], [-77.39162380245793, 34.71377198570265], [-77.39221900137858, 34.71392462585863], [-77.39213724490341, 34.714611858583076], [-77.39167442512218, 34.71459017320992]], [[-77.42550586922624, 34.731759300161784], [-77.42552655480026, 34.731751448969696], [-77.42584195715155, 34.73164599723926], [-77.42588881840499, 34.73163717871591], [-77.42606749073835, 34.73166099771539], [-77.42637161647245, 34.73167820997057], [-77.42647680075304, 34.73166781721404], [-77.42655759593214, 34.73174290525208], [-77.42660300977954, 34.7318481842751], [-77.42666850246943, 34.732112983424216], [-77.42667681898163, 34.73213955623368], [-77.42667896523623, 34.732154265973], [-77.42667721062149, 34.732177542882575], [-77.42667985545296, 34.73243410897835], [-77.42655282934473, 34.73263765568742], [-77.42655357085106, 34.73266950074637], [-77.42653058370817, 34.73268581099465], [-77.4264998215578, 34.73269562681966], [-77.42636522668926, 34.73271590750347], [-77.42615592862359, 34.732776136025755], [-77.42612938210726, 34.732778116522596], [-77.42608935642497, 34.73278677313459], [-77.42570378094328, 34.732830553604124], [-77.42552607225998, 34.73286941534232], [-77.42550172144877, 34.73287432337299], [-77.4254830008301, 34.73288582532288], [-77.42532633696607, 34.732961679364344], [-77.42519376957642, 34.73303279399041], [-77.42470653651033, 34.733353099606965], [-77.42465838170678, 34.7333659836687], [-77.42458679208224, 34.73337969500183], [-77.42426737774166, 34.73347495574137], [-77.42400595472435, 34.73355826481459], [-77.42388051876222, 34.73359070153592], [-77.42372799876327, 34.733638570795975], [-77.42330067454458, 34.733779639869425], [-77.42305559218737, 34.73340352323172], [-77.42305662299137, 34.73320315799835], [-77.4231096482991, 34.73307894628679], [-77.42312663992716, 34.73286928574528], [-77.42313852569734, 34.73272262391967], [-77.42321790413018, 34.732507943920254], [-77.42324127186463, 34.7323502837723], [-77.42334471521544, 34.73219025142552], [-77.4233898351622, 34.73204099534217], [-77.42362893736492, 34.732071706021955], [-77.42378177666833, 34.732118088852616], [-77.42392045169825, 34.7321601727067], [-77.42433736320226, 34.73222260315852], [-77.4243937657114, 34.73221886805066], [-77.42441297529085, 34.732217100046334], [-77.42443455523603, 34.73220833994161], [-77.42482006117466, 34.73213441571615], [-77.42509447730859, 34.73190681090841], [-77.42511781209905, 34.73188810658346], [-77.42512311482818, 34.73188174058683], [-77.42513381221914, 34.73187735114065], [-77.42522619978035, 34.73185186866476]], [[-77.43461170988036, 34.699129586978245], [-77.43452281205559, 34.69895793783826], [-77.43459322894348, 34.69886169255786], [-77.43403211982184, 34.69826993847957], [-77.43389439897453, 34.69805831069323], [-77.43370606424719, 34.69782950414328], [-77.43347527365927, 34.697609549925645], [-77.43345420522608, 34.697592452866836], [-77.43342579985618, 34.697335417890535], [-77.43338952059389, 34.69719894603889], [-77.43339835324122, 34.69717064301128], [-77.43347968312807, 34.69707473035007], [-77.43349162625184, 34.69694920358735], [-77.4336636100464, 34.69685951111592], [-77.43352754042836, 34.6966949512054], [-77.43355712150131, 34.69630847248565], [-77.43356258416014, 34.696265134292226], [-77.43354762817673, 34.69624017511653], [-77.43354203458847, 34.69618133391703], [-77.43350418622863, 34.69596518837048], [-77.43352912811234, 34.69580150337061], [-77.43354462583176, 34.69569980034718], [-77.43356285096297, 34.69557005392923], [-77.43369801122225, 34.69519437660003], [-77.43369649775035, 34.695040719580234], [-77.43375119754941, 34.69481603581596], [-77.43384220684948, 34.69468574008141], [-77.43388671935409, 34.69460385843701], [-77.43404432183235, 34.694197355601176], [-77.4341622851442, 34.69403747040852], [-77.4343234781654, 34.693822195148826], [-77.43447854123052, 34.69379012620683], [-77.43485733510578, 34.69346158100834], [-77.4349568204785, 34.69339830272609], [-77.43497154726043, 34.6933859303746], [-77.43499744043866, 34.693365854100804], [-77.43517766005621, 34.69332788402708], [-77.43589553041357, 34.69340064480923], [-77.43625977339877, 34.69329481538728], [-77.43630008206969, 34.69329346967943], [-77.43638782624615, 34.69326917376006], [-77.43633626314147, 34.693321558632114], [-77.4365935794317, 34.69362969145628], [-77.43657420705553, 34.693963796524876], [-77.43644447028181, 34.694297847610656], [-77.43629035048168, 34.694982647935845], [-77.43604073417184, 34.69564603207598], [-77.4361578809673, 34.69682041318907], [-77.4361162192743, 34.69715795906889], [-77.43605209208698, 34.697426882780604], [-77.43593331460063, 34.698212109023146], [-77.43557894122765, 34.69851715674165], [-77.43543169800718, 34.6986245577044], [-77.43478540612827, 34.698928881518924]], [[-77.31482557223723, 34.639886327172846], [-77.31489402581883, 34.63986342715955], [-77.31497775688084, 34.63984705942645], [-77.31550685158805, 34.639726798673564], [-77.3159257073257, 34.63983184854979], [-77.31609389410504, 34.63993361936181], [-77.31619785759285, 34.639979835217616], [-77.31686148969482, 34.64054756390601], [-77.31691283467381, 34.64060820945816], [-77.31705327696915, 34.64129977657312], [-77.31703844192964, 34.64136728163538], [-77.31680262342596, 34.641733082499], [-77.31656175573353, 34.64179347754121], [-77.31632188775083, 34.64177743700449], [-77.31623982544265, 34.64178449054006], [-77.31613752291122, 34.64177927065688], [-77.31593142710337, 34.641842942171905], [-77.31543424991483, 34.64178979658399], [-77.31511672630404, 34.641866961237696], [-77.3146250723841, 34.64171409452025], [-77.31393052036945, 34.641918959220874], [-77.31398027844283, 34.64043161603707], [-77.31434753753032, 34.640330722935026]], [[-77.43266080806563, 34.701442114479036], [-77.43244791941903, 34.70146595964169], [-77.43258833363699, 34.701692588970594], [-77.43318667400271, 34.70172424612562]], [[-77.39988232320438, 34.66857336326168], [-77.40012018533756, 34.668909711013555], [-77.39994079458575, 34.66900773879049], [-77.3997970643374, 34.66935573631354], [-77.39965821741478, 34.66934700756134], [-77.39961659703009, 34.66929255437627], [-77.39933962745172, 34.66900174171383], [-77.39932070898828, 34.66874130863795], [-77.39962754993064, 34.66873723864101], [-77.3997390565537, 34.66867760202211]], [[-77.33360298342375, 34.56287979977695], [-77.33360511005186, 34.562879064314366], [-77.33360804916377, 34.5628781960808], [-77.33365005397036, 34.562875324066475], [-77.33435012426294, 34.56282094901674], [-77.33439305636223, 34.562821963382554], [-77.33445207503136, 34.56282362865274], [-77.33492875440501, 34.56296315498739], [-77.33518048212551, 34.5634014484132], [-77.3352499905261, 34.56349439321442], [-77.33528908504404, 34.56360598731675], [-77.33549319638303, 34.56397101517294], [-77.33561968455285, 34.56429032317785], [-77.33566883579957, 34.56460501622375], [-77.33568703100383, 34.56482776466766], [-77.33561559149292, 34.565139993149906], [-77.33562540332726, 34.56550636082925], [-77.33587668982184, 34.56585485233231], [-77.3359377192392, 34.56594276280605], [-77.3359487586915, 34.56596010619446], [-77.33596630341307, 34.56598804885468], [-77.33614494558033, 34.56633751020185], [-77.3362276448429, 34.56646812175623], [-77.33625208447796, 34.56663062249958], [-77.3362691647677, 34.56674419194921], [-77.33628025136487, 34.56682809986451], [-77.33623939488294, 34.567043669774684], [-77.33607649188357, 34.56707675184576], [-77.3359653980809, 34.56711448220754], [-77.33579353168771, 34.56705185784295], [-77.33575710143616, 34.567042334871864], [-77.33557158268019, 34.56692411790365], [-77.33546976988276, 34.5668591209799], [-77.33534785339984, 34.56669339960147], [-77.33517781831225, 34.56667313488897], [-77.33493443811169, 34.566511542238345], [-77.33484898354745, 34.5664538334177], [-77.33478406585948, 34.56641043173637], [-77.33441831283665, 34.56616120062618], [-77.33440237455409, 34.56615049486884], [-77.33439032023816, 34.56614239792426], [-77.33428621401366, 34.566067938595396], [-77.33399658689503, 34.565862574212645], [-77.33395730483608, 34.56584527973743], [-77.33360285179484, 34.565588036367544], [-77.33344292678339, 34.56545233716833], [-77.33314359826545, 34.56514158800093], [-77.33311312975856, 34.565075206340595], [-77.33301667570038, 34.564881299352436], [-77.33292081290821, 34.564678312195426], [-77.33289749722161, 34.56459358605689], [-77.3328159118468, 34.564418848111266], [-77.33246475918386, 34.56427333428621], [-77.33236047452262, 34.56426792838887], [-77.33202818198923, 34.56420244901189], [-77.3318216400078, 34.564209801387705], [-77.33146818801936, 34.564038037257646], [-77.33176600071839, 34.563712244128844], [-77.33202861769472, 34.56369148937375], [-77.33249332088897, 34.56354224894163], [-77.33281675666122, 34.5634170538678], [-77.33306633742131, 34.56322802254899], [-77.33359771350918, 34.56288284844395]], [[-77.37196714230478, 34.733900761138216], [-77.37178978029287, 34.7331484009423], [-77.37186193807466, 34.732828594791066], [-77.37176973527839, 34.73226421269448], [-77.37178665713712, 34.73221932906267], [-77.37185458004424, 34.73170760241556], [-77.37197309273711, 34.73167057182787], [-77.37206324516185, 34.7317806495586], [-77.37184083968286, 34.73223459390892], [-77.37233630928958, 34.73262868450213], [-77.37244601317411, 34.73287504619456], [-77.37268495070724, 34.733116695428706]], [[-77.3674847438822, 34.550866370684105], [-77.36748067452861, 34.55082353033788], [-77.36600027130213, 34.550149183976686], [-77.36575481427792, 34.550244538597745], [-77.36442457796026, 34.55037841012688], [-77.36384358978586, 34.55072546647936], [-77.364275091419, 34.55030597160395], [-77.3643405123683, 34.55024218877653], [-77.3640531385039, 34.54984828858564], [-77.3641819037376, 34.54950386644484], [-77.36420525743648, 34.54933672749286], [-77.36412978216055, 34.54914622962105], [-77.3644676759024, 34.54849038178925], [-77.36468142438945, 34.54828884180169], [-77.36561504711611, 34.547881891048775], [-77.36567330071242, 34.547656320068626], [-77.36606384569727, 34.54736184218778], [-77.36619519178859, 34.54717067967145], [-77.3662901129131, 34.547077817783695], [-77.36646549534451, 34.54696507467287], [-77.36670884738865, 34.54692383997257], [-77.36685960915517, 34.54689867124283], [-77.36715716172912, 34.546952914257716], [-77.36737951041688, 34.54708369242196], [-77.36763815616249, 34.54719054845812], [-77.36825497393177, 34.54738663035217], [-77.36859858818883, 34.547724559518926], [-77.36894555956327, 34.54782950405699], [-77.36918891991633, 34.54805297146491], [-77.36975646237613, 34.547909623251535], [-77.36997736095147, 34.547910947657854], [-77.37029513988502, 34.54777356255751], [-77.37076194849554, 34.54793815926204], [-77.37096961816978, 34.54822862550999], [-77.37121175738729, 34.5483273600576], [-77.37172819297622, 34.548868689374665], [-77.37198933698399, 34.54919462384651], [-77.37212536540405, 34.54928501110361], [-77.37229601031203, 34.54953719004292], [-77.3730973041489, 34.55048053855643], [-77.37344728891773, 34.55094314671928], [-77.37270591267202, 34.551331022839506], [-77.372701706768, 34.55202990752917], [-77.37268782200451, 34.55231561641836], [-77.37273986407168, 34.55251406645392], [-77.37266732538842, 34.5527372723523], [-77.37249346022338, 34.55303922749939], [-77.37233897474913, 34.55319463398952], [-77.37221538713135, 34.55334947224996], [-77.3719653820725, 34.55369511729637], [-77.37182132941086, 34.55376809042641], [-77.37167446116761, 34.55384809380193], [-77.37154145819035, 34.553902565067716], [-77.37142736833069, 34.55392744011637], [-77.37127403970995, 34.553898780768506], [-77.37084865637253, 34.553899995167626], [-77.37063961323418, 34.553813778210674], [-77.37036972124821, 34.55363620619634], [-77.36973455174807, 34.55343674311939], [-77.36936115969145, 34.55330851637348], [-77.36907018402962, 34.553267477780935], [-77.368939497398, 34.55314486657434], [-77.36870641231434, 34.5530952148233], [-77.36868237500114, 34.55305584436754], [-77.36862795468139, 34.55289786875343], [-77.36858283819734, 34.552802525919844], [-77.36851541567046, 34.55263307682384], [-77.36842163794799, 34.55222740869637], [-77.36839450687941, 34.55216084244779], [-77.368382036798, 34.55211840597705], [-77.36831677301984, 34.551869421281964], [-77.36825639254042, 34.551730708216766], [-77.36819159264357, 34.551700421589416], [-77.36801063777601, 34.55143391894858], [-77.36755419792603, 34.55087464088516]], [[-77.32035316084102, 34.55562897984439], [-77.32039185408033, 34.55563894777572], [-77.3205215663488, 34.55574248938198], [-77.32032232854532, 34.555882897212356], [-77.32024466147831, 34.55571101797236], [-77.32026612906388, 34.55565700853577], [-77.320166184769, 34.555569448702606], [-77.32033045880081, 34.55553474957662]], [[-77.41391207577007, 34.72630410549909], [-77.41353806684577, 34.726162307184886], [-77.41391161900475, 34.72627389879732], [-77.41394463587578, 34.726235280299015], [-77.41448188301874, 34.725709964971294], [-77.41477667927934, 34.725943548633495], [-77.41530655092087, 34.72596033791659], [-77.41538508136361, 34.726249081405726], [-77.41554746741224, 34.726514824303116], [-77.4155770163901, 34.7267520020458], [-77.41560324924205, 34.726884464156086], [-77.41556529252958, 34.726953749130075], [-77.41538488606352, 34.72718598312444], [-77.4150495852171, 34.727249959213424], [-77.41491896033111, 34.727298518748526], [-77.41442284972854, 34.72710955109572], [-77.41425605408335, 34.727053372245415], [-77.41392464635074, 34.72630429262843]], [[-77.39198198191548, 34.600328632673005], [-77.39193212613118, 34.6003057820986], [-77.39190424149712, 34.600301040470086], [-77.39184061795625, 34.600280475232104], [-77.39136256462405, 34.60015236540685], [-77.39111604244128, 34.60003676778325], [-77.3907885223228, 34.60000441890392], [-77.3903278112264, 34.60006010024588], [-77.3900443510569, 34.60006425367427], [-77.38983282347527, 34.600105296938544], [-77.3895395672565, 34.60017083025328], [-77.38922679989194, 34.6002136935718], [-77.38875131337187, 34.60033283212527], [-77.38838847295493, 34.60045591511507], [-77.38827065373975, 34.6005323865062], [-77.38796301613232, 34.600750997641434], [-77.387873234951, 34.60082434708723], [-77.38765427773006, 34.60086062362323], [-77.38756888180768, 34.60085222784578], [-77.38727787350226, 34.6008957978665], [-77.38717475809548, 34.60088315220215], [-77.38709066061051, 34.600943287245954], [-77.38678062594997, 34.60096127180461], [-77.38664803972694, 34.60095484855876], [-77.3865467317964, 34.600939683795445], [-77.38638652683812, 34.600845725814864], [-77.38623942550255, 34.60073201596122], [-77.38612888862473, 34.600600972063404], [-77.38599246902858, 34.600505925785946], [-77.385916056753, 34.60043639315209], [-77.3858080265605, 34.60036963649206], [-77.38570188969068, 34.60027344435856], [-77.38559841118985, 34.600183898762964], [-77.38546348227804, 34.60027396609315], [-77.38520426637334, 34.60033671356577], [-77.38505759409927, 34.60047780925356], [-77.38493868371009, 34.60063347501141], [-77.38481007076683, 34.60074404468023], [-77.38471297658418, 34.600847475744786], [-77.38452570277191, 34.60086078855451], [-77.3844159295657, 34.6008576381059], [-77.38423609219207, 34.60082704987597], [-77.38420900913952, 34.600823037494344], [-77.38402183102278, 34.60075565396549], [-77.38393438215986, 34.60073391688684], [-77.38376683848699, 34.60066385671412], [-77.38367468399991, 34.60062656749406], [-77.38362774165034, 34.60061378174599], [-77.38351702760967, 34.600580587852896], [-77.38338260186971, 34.60055876216593], [-77.38329578252485, 34.60051946796878], [-77.38325568820504, 34.60050150302246], [-77.38323365864338, 34.60044805963999], [-77.38319215204996, 34.60036685331161], [-77.38316295718622, 34.60032632931486], [-77.38315391399297, 34.59998907834635], [-77.38313956861852, 34.599905135241094], [-77.3828397305513, 34.59957843977226], [-77.38281205020203, 34.59955759856195], [-77.38244568195404, 34.599287422688676], [-77.38229498461573, 34.59934005965073], [-77.38188893949948, 34.59948566779861], [-77.38165734802286, 34.59975827152516], [-77.38149045025989, 34.59996306729952], [-77.38149588201311, 34.60014202558092], [-77.38149309434925, 34.60031922990933], [-77.38147625856756, 34.60037449283356], [-77.38142854436978, 34.60039804921245], [-77.38126305697894, 34.60050340873294], [-77.38116098659489, 34.60050489730825], [-77.38099940701954, 34.600497592079776], [-77.3808689479678, 34.600465325117725], [-77.38067395518192, 34.600470527994844], [-77.38047481541456, 34.600524080762504], [-77.38028118241543, 34.600525665337074], [-77.38027775573926, 34.60052585047534], [-77.38027301674666, 34.60052542818622], [-77.38008070398455, 34.600496026218885], [-77.37997151043514, 34.60047933184745], [-77.37978184473765, 34.60038903019276], [-77.37972362097783, 34.600357561905916], [-77.37968663272429, 34.60031144202712], [-77.37951926528469, 34.60018263595056], [-77.37929256408015, 34.60012332736286], [-77.379103218941, 34.60006225491039], [-77.37902584516637, 34.599936217038795], [-77.37868153120303, 34.59969845391686], [-77.37858516641349, 34.59962540278204], [-77.37850450804207, 34.59946572459241], [-77.37806783177929, 34.59893775597887], [-77.37818657330327, 34.598414328156935], [-77.37831539648687, 34.59805296008006], [-77.37836267518759, 34.59789289521181], [-77.37850496454388, 34.59778051145327], [-77.37913669007366, 34.597085491144924], [-77.37921448058931, 34.59698927967367], [-77.37929339597495, 34.59694209684662], [-77.37959982717095, 34.59668870465499], [-77.38008175616159, 34.59632292562941], [-77.38021839833061, 34.596227665953165], [-77.38041279994954, 34.596052471555446], [-77.38065818010693, 34.595788823554294], [-77.38077439019507, 34.59557579883291], [-77.38067973468132, 34.59537005195551], [-77.38069079511561, 34.5951632818567], [-77.38044626923367, 34.59480623834256], [-77.38041887788059, 34.59477790524214], [-77.3800822246371, 34.594480386170154], [-77.3800423200827, 34.594450605785404], [-77.37995801888968, 34.59441975585342], [-77.37984229980738, 34.594177868919786], [-77.38008231810366, 34.594114136095094], [-77.38033443010899, 34.59378790338067], [-77.38048767332636, 34.593494299222435], [-77.38062270134488, 34.593207639811176], [-77.38046556571543, 34.59264835776927], [-77.38047537527673, 34.59222400306041], [-77.3804756672459, 34.5922223389041], [-77.38047564488069, 34.59222100967992], [-77.38040429104439, 34.59180806093106], [-77.38034789039456, 34.59153078349082], [-77.38034289145678, 34.591392346340136], [-77.38035388919798, 34.59125799117416], [-77.38041752054701, 34.590957027433255], [-77.38047724060405, 34.590798538950224], [-77.38058639187982, 34.59062567595757], [-77.38057071451783, 34.59040978420001], [-77.38060815422028, 34.59008042602447], [-77.38048127681795, 34.589678190667414], [-77.38048061552384, 34.589674243078235], [-77.38048165667, 34.5896696431765], [-77.3804077748081, 34.589260176346954], [-77.38056465253216, 34.588906664468574], [-77.3807107600498, 34.58854096806734], [-77.38047782746878, 34.58848504033931], [-77.3804445310229, 34.58840575207314], [-77.38037550083668, 34.588305403882515], [-77.38047786751144, 34.588327732229175], [-77.38072673955679, 34.588208619689276], [-77.3808719410142, 34.58827657473143], [-77.38098063158469, 34.58821140072457], [-77.38126604845209, 34.588084821128284], [-77.38135508933846, 34.58794585160417], [-77.38157712652333, 34.5879074036401], [-77.38166015929684, 34.58787109343612], [-77.38174631260412, 34.58788639428594], [-77.3819011467531, 34.587936155101815], [-77.38205417451032, 34.58805385456523], [-77.38211833931118, 34.588095368089796], [-77.38218841394213, 34.58815441049337], [-77.38223671353154, 34.58837526194217], [-77.38236522755022, 34.58855349018609], [-77.38244806731427, 34.58877409106698], [-77.38249569202154, 34.58890790584727], [-77.38251192950293, 34.58895690996854], [-77.38266526010493, 34.58916891042036], [-77.38244794528578, 34.589303544774026], [-77.38226461969919, 34.58941712081579], [-77.38218968305237, 34.589574303410735], [-77.38221176225979, 34.58963702186256], [-77.38223854254362, 34.58964640361512], [-77.38229769161984, 34.58967512874425], [-77.38244788846795, 34.58955039342845], [-77.38258379871755, 34.58964922676], [-77.38257215189496, 34.58979735924808], [-77.38300238249687, 34.589986961911364], [-77.38323581911513, 34.59046501290631], [-77.38326801886184, 34.59051148562131], [-77.38328520393588, 34.59054371116032], [-77.38337716545534, 34.59068279004813], [-77.38323578485034, 34.590620788447296], [-77.38319594073167, 34.59059950988355], [-77.38258973030256, 34.59079708106282], [-77.38244756026002, 34.5909799169963], [-77.38238147540979, 34.59109853711118], [-77.38244752137962, 34.59114966828938], [-77.38266001548165, 34.59125399299276], [-77.38282811293706, 34.59145872547532], [-77.38302831346085, 34.59165314799955], [-77.38323552000847, 34.591827846219104], [-77.38341556826896, 34.59202915564687], [-77.38373008310595, 34.59217784628021], [-77.38393349530227, 34.59224558587214], [-77.38402357949026, 34.59227598497355], [-77.38429741477137, 34.59239111361603], [-77.38441762706442, 34.5924281445856], [-77.38445517097763, 34.592457439162835], [-77.38451578014049, 34.592489157214516], [-77.38481165575824, 34.59268189363466], [-77.3850026834787, 34.592637739573405], [-77.3850122154166, 34.59263365997993], [-77.38520578489856, 34.59243198165106], [-77.38522736478498, 34.59240982531514], [-77.38523231475395, 34.59235730032294], [-77.38520581894332, 34.59225744101204], [-77.38515645708479, 34.59202546569525], [-77.38509490258903, 34.591981109473494], [-77.38493329141632, 34.59187353327796], [-77.38481183391727, 34.591790263969614], [-77.38442845709287, 34.59165261318472], [-77.38442309595528, 34.59164766603854], [-77.384232032283, 34.5912563613357], [-77.38419917982034, 34.59107218060142], [-77.38430914702063, 34.590703424047895], [-77.3846091320452, 34.590352870482974], [-77.38473565956437, 34.59025222924882], [-77.38481214848997, 34.590222833021926], [-77.38493436476924, 34.59017432238649], [-77.38520624806401, 34.590066463708766], [-77.38535435165824, 34.5899804240361], [-77.38560036002761, 34.58983750637354], [-77.38568978790872, 34.589772519782684], [-77.38578566053647, 34.58953371153575], [-77.38578379525485, 34.589334400760194], [-77.38575850768821, 34.589167795224604], [-77.38560770530054, 34.58893522009862], [-77.3857241261603, 34.5886269655411], [-77.38591815320879, 34.58846589782331], [-77.38599469865585, 34.58839094217846], [-77.38612888595, 34.588290961508484], [-77.38620563038184, 34.58822711480236], [-77.38622717489301, 34.588209063597084], [-77.38633169790458, 34.58813246502683], [-77.38638880364452, 34.58814575158472], [-77.38656641775732, 34.58813923507135], [-77.38659580709832, 34.588145171440175], [-77.38678285606343, 34.58818090941906], [-77.3870744339492, 34.58818878154422], [-77.38717691076249, 34.5882043542765], [-77.38723611952376, 34.58821208987656], [-77.38737393641837, 34.58822621007607], [-77.38745145191835, 34.5882448379478], [-77.38753946345062, 34.58826608247867], [-77.3875709568716, 34.5882792961299], [-77.38767051718423, 34.588320528794604], [-77.38779869891196, 34.58837394803834], [-77.38796498997478, 34.58843714966426], [-77.38825684477455, 34.58855328191093], [-77.38832519650646, 34.58857987604321], [-77.388359024801, 34.58859303778979], [-77.38846688275268, 34.58863921324593], [-77.38858350936651, 34.58868886906513], [-77.3887530590139, 34.58876215363329], [-77.38883940030881, 34.588800819964156], [-77.38899913045078, 34.58887082072461], [-77.38909630643232, 34.58891153202302], [-77.38914709451555, 34.58893280924944], [-77.38930909302205, 34.58900067691219], [-77.38935508809072, 34.58901995321764], [-77.38937574191453, 34.589028800240214], [-77.38948401022165, 34.58907473630734], [-77.38954113214041, 34.58909964479112], [-77.38961206686714, 34.58913057644169], [-77.38974215410911, 34.58918824915881], [-77.38978846059263, 34.589339628562655], [-77.38980361601554, 34.58946224591477], [-77.38975218714103, 34.58961137109307], [-77.389665208376, 34.589757696123584], [-77.38954102092674, 34.58986635841729], [-77.38943010291366, 34.5899628945148], [-77.38919063835992, 34.590069814205435], [-77.38914692267099, 34.59008014969998], [-77.38910761850893, 34.59008653725952], [-77.38875284931862, 34.590118900345935], [-77.38842002405532, 34.590162035447406], [-77.3883061234174, 34.59018772604272], [-77.387964644009, 34.59054725778674], [-77.38785003811034, 34.59061131087117], [-77.38778125065767, 34.590744693000374], [-77.38772200240999, 34.590916448985524], [-77.38773078345663, 34.59100384716092], [-77.38779848851732, 34.59116677528281], [-77.3879645243008, 34.59128174458023], [-77.38812955807404, 34.591296848915256], [-77.38816155753092, 34.59130280340963], [-77.38817694380836, 34.59130791568624], [-77.388358590661, 34.59132517733312], [-77.38863530127594, 34.591344247938316], [-77.3887526569395, 34.59137128102801], [-77.388809468315, 34.591384367474404], [-77.38912880935534, 34.59138022570559], [-77.38914672926597, 34.591379050114675], [-77.38916285472277, 34.59137725010515], [-77.38953596143764, 34.59133560168764], [-77.38954080898743, 34.59133537689187], [-77.38954484406158, 34.59133519621169], [-77.38960374129128, 34.59133105089433], [-77.38973784746322, 34.59132204688459], [-77.38974819431992, 34.59132136905175], [-77.38990512061598, 34.5913196604844], [-77.38993488315126, 34.59132819295452], [-77.39009032028319, 34.591473172630714], [-77.39007184122381, 34.591540533530605], [-77.39004763513937, 34.59160084554753], [-77.38996141051365, 34.591704045429864], [-77.38994829100507, 34.5917204412479], [-77.3899348272087, 34.59173105285616], [-77.38988134399384, 34.591773205994535], [-77.3897377689296, 34.59187834122326], [-77.38966971607778, 34.591885072884], [-77.38954072033053, 34.59195325987706], [-77.3893077891349, 34.59197190957799], [-77.38898871015121, 34.592014444804], [-77.3887525541616, 34.5920434223101], [-77.3885433145563, 34.59210766985933], [-77.3883584587652, 34.5921619732399], [-77.38814638513361, 34.59239031883115], [-77.388068576054, 34.592513854321936], [-77.38796429209178, 34.59271367453239], [-77.38792480387878, 34.59280430662027], [-77.38787909306394, 34.59285342441009], [-77.38770998584243, 34.593028448331374], [-77.38757013879966, 34.5931542370167], [-77.38736809237146, 34.593351665278554], [-77.38727731602722, 34.59347390336359], [-77.38717593889331, 34.59384458255276], [-77.3870412359178, 34.5941028475827], [-77.38699851981767, 34.59425408082413], [-77.38700990541497, 34.594431204630176], [-77.38717578000654, 34.594779434764824], [-77.3872197973391, 34.59502384806439], [-77.38724656207549, 34.595067455660406], [-77.38729930173156, 34.595193001118936], [-77.38747004735968, 34.59556720428253], [-77.38756973075542, 34.59562468911483], [-77.38768845310716, 34.59572496233731], [-77.38793516519362, 34.59578646584994], [-77.38796379763211, 34.595793579346356], [-77.38798602382141, 34.59578603745263], [-77.38832369469749, 34.595724443586086], [-77.38835791247554, 34.595662500072265], [-77.3884725350333, 34.5954387180927], [-77.38875210825152, 34.59498457838139], [-77.38883009112924, 34.59492315235884], [-77.3893597316299, 34.59495730740207], [-77.38954029185396, 34.594966696741906], [-77.38986849913778, 34.59504302481075], [-77.3899343710206, 34.59504825135302], [-77.38999463711201, 34.595030879254594], [-77.39032848146871, 34.59489816606214], [-77.39051206537837, 34.594794392099665], [-77.39072259781656, 34.59468928860263], [-77.39085891777478, 34.59454660884903], [-77.39098259433274, 34.59438426990292], [-77.3911167640762, 34.594057953716], [-77.39125075270749, 34.59378528377055], [-77.39128441014054, 34.59363611312014], [-77.39148734170894, 34.59320771484606], [-77.39150138477099, 34.59318025470141], [-77.39150365458545, 34.59317206249576], [-77.39145935685751, 34.59276174587549], [-77.39145267595143, 34.59269986096784], [-77.39142417258503, 34.59243584129344], [-77.3913965707824, 34.592346230654236], [-77.39138354851545, 34.59227320352044], [-77.39138258486732, 34.59220982137212], [-77.39146840416907, 34.59216955857162], [-77.39151107712337, 34.59214426925912], [-77.39154223910359, 34.59214651283101], [-77.39165631706163, 34.592152293568624], [-77.39170811274059, 34.592167285438805], [-77.39181205962734, 34.59218602074692], [-77.39190514662764, 34.592206179405096], [-77.39210384961768, 34.59224423334226], [-77.39222446357813, 34.59230737133523], [-77.3922992109612, 34.59231972430993], [-77.39251315461156, 34.59241571400572], [-77.39269327443593, 34.59245118748636], [-77.39306624244036, 34.59208265589573], [-77.39308739358228, 34.5920398448372], [-77.39319719762068, 34.5919682585561], [-77.39348149964356, 34.59172486225275], [-77.39355000953921, 34.591684905166005], [-77.39379865384531, 34.59165811540637], [-77.39387558069566, 34.5916502982659], [-77.39417934531002, 34.59161762959321], [-77.39418764447537, 34.59194370275345], [-77.39400916622324, 34.59211341320714], [-77.39389774781426, 34.59219780018491], [-77.39387552952894, 34.59221060349032], [-77.39375860988521, 34.592304195325724], [-77.39356667379198, 34.5924578353936], [-77.3935136953919, 34.59250024335943], [-77.3934814208684, 34.59254643198578], [-77.3931985055155, 34.592815711188294], [-77.392952965981, 34.592826172708214], [-77.39304178055696, 34.59295810776364], [-77.39303372193746, 34.59301698824231], [-77.39291378171305, 34.59340113757437], [-77.39292560723825, 34.59364987362803], [-77.39287396809033, 34.59406116694595], [-77.39285977883765, 34.59425806662067], [-77.39283928791745, 34.59441855090749], [-77.39283079242816, 34.59453842751942], [-77.39298122956862, 34.59466512151652], [-77.39304383650315, 34.594702732298835], [-77.39325649683416, 34.594807902300985], [-77.39348119422101, 34.59493942759211], [-77.39353159239266, 34.59495602026072], [-77.39411825527199, 34.594762884010265], [-77.39426939881928, 34.59463436125855], [-77.39461447678875, 34.594376742779815], [-77.39489943440663, 34.59396389404742], [-77.39497318856115, 34.5938622792866], [-77.3950576338649, 34.59384570890269], [-77.39516433157718, 34.593810736658426], [-77.39545172448004, 34.59375192591699], [-77.39562690194096, 34.59362311447463], [-77.39568434376616, 34.59360007538205], [-77.39584582000506, 34.59356962655877], [-77.39599323675141, 34.59354037250701], [-77.3961159607458, 34.593497385796276], [-77.39623990697004, 34.593497394313694], [-77.39636969494353, 34.59346707680983], [-77.39663399233575, 34.59343970197764], [-77.39678853948315, 34.59343333538717], [-77.39685217829, 34.59344715569083], [-77.39702806953679, 34.59352602962415], [-77.39718254376263, 34.5936345669326], [-77.3972916385544, 34.59375942744759], [-77.3974221373422, 34.59382609811123], [-77.3976251306427, 34.59399529343272], [-77.3977216776718, 34.594083211187964], [-77.39781620147045, 34.594279472849514], [-77.39786701254306, 34.59438497264004], [-77.39781827260609, 34.594814321063815], [-77.39781821698901, 34.59481878064936], [-77.39781617869268, 34.59481988908086], [-77.39781231793316, 34.59482159503261], [-77.39742208096368, 34.59502796380656], [-77.39724022656836, 34.59512861970231], [-77.39703696444565, 34.595353856436475], [-77.39698720746861, 34.595741707336146], [-77.39663385538924, 34.59587599590806], [-77.39640649777485, 34.59604901305422], [-77.39614287512596, 34.5963319706448], [-77.39595863584657, 34.59648029089567], [-77.39584562085464, 34.59661623884047], [-77.39571197904274, 34.59681869565536], [-77.39564918508043, 34.59704072881924], [-77.39554186152768, 34.59726780411613], [-77.39563559358999, 34.59748049060112], [-77.39584556726604, 34.597454032604475], [-77.39598636582485, 34.59747657545223], [-77.39610039233742, 34.59746177078282], [-77.39623966873145, 34.597443687638645], [-77.39642210315516, 34.597368874134474], [-77.39663377629532, 34.59731836679691], [-77.39676484498585, 34.597232596994026], [-77.39734549138342, 34.59709005090051], [-77.3974219877685, 34.59706316298498], [-77.39749891478593, 34.59706838483206], [-77.39810313154915, 34.59701368049161], [-77.3982101853266, 34.59705749295227], [-77.39839241472679, 34.597052935553634], [-77.39878313214007, 34.59703214448044], [-77.39899838296091, 34.597030623629294], [-77.3992764592117, 34.59702865799929], [-77.39958925208771, 34.59689654066406], [-77.3996623938917, 34.59709797346103], [-77.39944510432059, 34.5971860177815], [-77.39918954764318, 34.59759076391856], [-77.39910410745946, 34.59771700839066], [-77.39899836197203, 34.597844177483324], [-77.39869800894898, 34.59818725734204], [-77.39860424604052, 34.598300352966206], [-77.39838200951564, 34.598371250322515], [-77.39821013499196, 34.59849245552405], [-77.39815077943524, 34.598525822505785], [-77.3978567284159, 34.598588334846646], [-77.397816025498, 34.5985971716975], [-77.3976533083304, 34.59866152804192], [-77.39746583447798, 34.59873588771417], [-77.3974219122356, 34.598764142076014], [-77.39734079995586, 34.59879398848014], [-77.39688585210081, 34.59904389349859], [-77.39670424624728, 34.599223001137226], [-77.39663367102509, 34.59928197929919], [-77.39643589861436, 34.59947323205812], [-77.39623954303943, 34.5996049531348], [-77.39616494320514, 34.599644999780836], [-77.39584645680698, 34.59977130071005], [-77.39584563226722, 34.599771646527266], [-77.39584542164499, 34.599771832652785], [-77.39584505341638, 34.59977189981163], [-77.39521604112993, 34.60003336639256], [-77.39505717192044, 34.600134666340224], [-77.39481491190372, 34.600344653061], [-77.39472082046119, 34.60042047272173], [-77.394663034122, 34.60045169236354], [-77.39452648294062, 34.60053334832244], [-77.39446596711132, 34.60057145520427], [-77.39443970316691, 34.600582760581375], [-77.39426890167128, 34.60066474618725], [-77.39410599210309, 34.600695971132474], [-77.39387477882633, 34.60074028769307], [-77.39359459046581, 34.6008224798056], [-77.39348065539853, 34.60081354203149], [-77.39337300865111, 34.60086121547376], [-77.3931810841596, 34.600902992732294], [-77.3930865337052, 34.60086028646723], [-77.39284077466215, 34.60089410348567], [-77.39269242076098, 34.60081385414152], [-77.39239871326137, 34.6005849645113]], [[-77.35018146212926, 34.758067532463066], [-77.35024028684602, 34.75824115892468], [-77.35028721199518, 34.758472216637024], [-77.35054395559736, 34.75965946961998], [-77.35084245548066, 34.76120598023574], [-77.34714391655056, 34.762273921859645], [-77.34671197553511, 34.76252919905802], [-77.3461843624473, 34.76143499355247], [-77.34587324862713, 34.76078975389706], [-77.34543943086894, 34.76043104063061], [-77.34497275442632, 34.76026794420203], [-77.34484666503171, 34.76009846042141], [-77.34475036745974, 34.75996901956289], [-77.34466012161671, 34.759847714446735], [-77.34456564527687, 34.75960738408225], [-77.34454505039535, 34.75954201395629], [-77.344543337809, 34.75951003818435], [-77.3445403065677, 34.75945344210362], [-77.3445303806009, 34.75926812701587], [-77.34472559119689, 34.759009019010655], [-77.34473080432761, 34.75899694960567], [-77.34474908101701, 34.7589762175686], [-77.34503018566087, 34.75861080332468], [-77.34514318550902, 34.758453010915304], [-77.3452686324758, 34.75819729011906], [-77.34543739869608, 34.75792527903057], [-77.3454929731531, 34.75774417332099], [-77.34584189328628, 34.75727729194935], [-77.34609956566304, 34.75700493660845], [-77.34638479729593, 34.75682057022469], [-77.346862099077, 34.75640384236922], [-77.34692093166345, 34.756259649115805], [-77.34709076866245, 34.75600781627138], [-77.34710968240717, 34.75598487877881], [-77.34745282222191, 34.75569930616823], [-77.34748276772694, 34.7556770881596], [-77.34750939642147, 34.75566205233214], [-77.34755650079056, 34.755649683700454], [-77.34816463813988, 34.755468679413326], [-77.34861050912572, 34.75539950828383], [-77.3488210647745, 34.75527121262246], [-77.3493743720034, 34.75479960650672], [-77.34962583290702, 34.75456318802812], [-77.34972391736682, 34.75447097089821], [-77.34978107791306, 34.75440512624872], [-77.34996674054909, 34.75404780222296], [-77.35012524294743, 34.753870524730516], [-77.35055674039673, 34.753420953924824], [-77.35062546295455, 34.7533547808849], [-77.35068822697988, 34.75330589752115], [-77.35126973549797, 34.75302869028502], [-77.35150971402737, 34.753003806502605], [-77.35157903370536, 34.75299501212256], [-77.3516833143858, 34.75301530572508], [-77.35186615186379, 34.75303767731381], [-77.35194906745735, 34.75306011955369], [-77.35214755745193, 34.75310564893784], [-77.3524089199386, 34.75323132832354], [-77.35265825158427, 34.75324062730014], [-77.3527122626269, 34.75326158063955], [-77.35272800838985, 34.75326968585895], [-77.35286766242105, 34.753339169754994], [-77.35294375204202, 34.75345230346703], [-77.3529542848407, 34.753469653740694], [-77.35295674671873, 34.75348198657892], [-77.35295885777704, 34.753506889243944], [-77.35290736231251, 34.753732454485146], [-77.35283324714518, 34.753832687537006], [-77.35269659849628, 34.75391283204474], [-77.35249129494645, 34.7540332415178], [-77.35210591707096, 34.75427430624618], [-77.35183131618462, 34.754422890973586], [-77.35131602895049, 34.75493121552564], [-77.35115573333694, 34.75510098302717], [-77.35001382909462, 34.75533678697287], [-77.34999923075094, 34.75533980153378], [-77.34998201535744, 34.755337848570555], [-77.3499469708631, 34.75535712464557], [-77.34995992228167, 34.75537824145456], [-77.34979745456434, 34.75635239192692], [-77.34989270384742, 34.75700671121892]], [[-77.29161093806087, 34.64188685022381], [-77.29201037593296, 34.641682655052165], [-77.29227255365919, 34.64151078821777], [-77.29221458422494, 34.64127889396432], [-77.29201009230147, 34.641265509493664], [-77.29147777367913, 34.641222159636584], [-77.2911937122984, 34.641530925598396]], [[-77.36370759614495, 34.547389706495736], [-77.363734763754, 34.54742839933805], [-77.36376401840235, 34.547441678340306], [-77.36420872798833, 34.54755245573686], [-77.36448908644388, 34.547552441031776], [-77.36464182505208, 34.547560070160245], [-77.36473324656993, 34.54763824886702], [-77.36486900562248, 34.54777217254957], [-77.36447345895387, 34.54823704028895], [-77.36433928672251, 34.548254705304444], [-77.3636887710106, 34.5482140459318], [-77.36330731763768, 34.548234682427434], [-77.36329566498821, 34.548235911629185], [-77.36328402541103, 34.54823805832857], [-77.36290045865704, 34.548349697660754], [-77.36267287256078, 34.548437461008184], [-77.36248574403257, 34.548373699319654], [-77.36248266099112, 34.548344923285256], [-77.36246234015563, 34.548118801341104], [-77.3625148193947, 34.548044754175294], [-77.3628063698987, 34.54800568038675], [-77.36290876181403, 34.547986256954005], [-77.36315275711718, 34.54786888530189], [-77.36330446066152, 34.54785083402389], [-77.36336666860029, 34.54778153848392], [-77.3634471451068, 34.547732142284346], [-77.3636013931672, 34.547529340034885], [-77.36367875526155, 34.54745395883952], [-77.36368460605358, 34.547439488623354]], [[-77.38840543702489, 34.565651035397714], [-77.3883813970996, 34.56603320928541], [-77.38836279482908, 34.56614879828906], [-77.38800958112506, 34.566086830024126], [-77.38798658749363, 34.56607103475848], [-77.38817733408672, 34.565438059688546], [-77.38813198135033, 34.56522004176361], [-77.3883630316603, 34.56480722187433], [-77.38837928955155, 34.5647773238356], [-77.3887300927326, 34.56473820551166], [-77.38864459407361, 34.56502503452864], [-77.38850605896553, 34.565166094049616], [-77.38846686616391, 34.5654842809632]], [[-77.39565766795864, 34.52325209950463], [-77.39566936573269, 34.52324792514513], [-77.395661276469, 34.52325633143917], [-77.39565747768492, 34.52326056932489], [-77.39565111241059, 34.523257798400415]], [[-77.40393827773562, 34.67669186993453], [-77.40452905582852, 34.67651542092402], [-77.40464310421223, 34.67660870329131], [-77.40520893490978, 34.676729525241775], [-77.4052381084683, 34.6768068350423], [-77.40524696447117, 34.676854928963735], [-77.40544515194271, 34.67716680208568], [-77.40565597773993, 34.6773984549813], [-77.40575559263706, 34.6774836374743], [-77.40611537551553, 34.677718010583966], [-77.40593126814798, 34.67785669023648], [-77.40584000199873, 34.67791198066533], [-77.40555330071507, 34.67801435777581], [-77.40546849959802, 34.67804576525383], [-77.40546503613919, 34.67804674884404], [-77.40545398666691, 34.67804565497859], [-77.40483326067078, 34.678026596762116], [-77.40438010843819, 34.67766978567454], [-77.40434276281144, 34.67762665209808], [-77.40433397445764, 34.67753804626887], [-77.40410464012032, 34.67731751826735], [-77.4037659213989, 34.6772869271698], [-77.40339887031993, 34.67765930101759], [-77.40337223814198, 34.67787614620458], [-77.40327474198328, 34.678072150912925], [-77.40352341743085, 34.67812415625105], [-77.40376199527606, 34.678761569085054], [-77.40394517354301, 34.678880376959924], [-77.40403591539598, 34.67909364298241], [-77.4043305461153, 34.6793298447009], [-77.40440764135354, 34.67938491943497], [-77.40443480011932, 34.67940230122615], [-77.40448116047153, 34.67943001759034], [-77.4050154326388, 34.679610040358995], [-77.40505418577064, 34.679619268954184], [-77.40553290688528, 34.67980820446537], [-77.40557088815548, 34.67990471329748], [-77.40570762564514, 34.68037095622897], [-77.40572116146588, 34.68062234665294], [-77.40567068307136, 34.68091715824155], [-77.40566525123509, 34.68109200456159], [-77.40558899655757, 34.681242434951905], [-77.40545932424924, 34.68139613690003], [-77.40545666737738, 34.681400060807256], [-77.40545420439295, 34.68140052535362], [-77.40526343329373, 34.68145804850579], [-77.40510880270472, 34.6815001043867], [-77.40482508400393, 34.681489147568854], [-77.40448217630859, 34.68145111019635], [-77.40433899734398, 34.68144215016417], [-77.40399813265628, 34.68134106240049], [-77.40388770076214, 34.68129111883601], [-77.40376470903479, 34.68125084787013], [-77.40331793367369, 34.68104583138472], [-77.40311126641593, 34.68093003915286], [-77.40300587585024, 34.680862279463724], [-77.40277524384038, 34.6807070763311], [-77.40235852205844, 34.68044674932575], [-77.40223422714678, 34.68036255825251], [-77.40217496227572, 34.680316196399204], [-77.40182143023912, 34.68012902052468], [-77.40174582084232, 34.680048862357836], [-77.40171937579034, 34.67992772794782], [-77.40160360702713, 34.67995989061561], [-77.40142703281575, 34.679830854919395], [-77.40131053649635, 34.67985452464767], [-77.40123733052012, 34.679814623450355], [-77.40123487888573, 34.67973073654173], [-77.40131346812588, 34.679671645744236], [-77.40138366183557, 34.67960002657709], [-77.40160014037887, 34.679492419587994], [-77.40169797958563, 34.679366016591764], [-77.4020677431248, 34.67872512397529], [-77.40213661608773, 34.67858714024164], [-77.40217469529135, 34.67857525015061], [-77.4022708945831, 34.67849086960331], [-77.40242291120121, 34.67755901958475], [-77.40242324047196, 34.677543967792516], [-77.40243033215599, 34.67753171018336], [-77.40242744063303, 34.67748337520795], [-77.40214440945648, 34.676758315554125], [-77.40182567067345, 34.676581820126856], [-77.40153736187946, 34.67613185238414], [-77.401527068445, 34.67612316206271], [-77.40148989165107, 34.67609896955582], [-77.40131174185916, 34.67580468918312], [-77.40114349663591, 34.675839769041666], [-77.40114131415702, 34.675837737502896], [-77.40114035963673, 34.67583682816845], [-77.40114062799421, 34.67583507521038], [-77.40127459794118, 34.6757440330397], [-77.40130443295618, 34.67572895607696], [-77.40145704016078, 34.675706044955945], [-77.4015969894019, 34.67592600740573], [-77.40195776771989, 34.67594351101577], [-77.40240000662217, 34.676024998291616], [-77.4028226274931, 34.67611906719955], [-77.40356869281281, 34.67644063755304]], [[-77.38864623962125, 34.710950809611894], [-77.38847998273975, 34.71162277145673], [-77.38847708768446, 34.71180339268723], [-77.38839419225557, 34.711948473213226], [-77.38819142893412, 34.71264760728715], [-77.38737422060089, 34.71237360659011], [-77.38732374103567, 34.71190669333422], [-77.38726677617156, 34.71137976791931], [-77.38735294018733, 34.71127585017379], [-77.38751306761998, 34.711253734426144], [-77.38801509306091, 34.71086221893506], [-77.38832929729317, 34.71064963032895]], [[-77.4114200520323, 34.727098946382434], [-77.4110998539004, 34.727202537595794], [-77.41089907492713, 34.72691675451463], [-77.41120476941481, 34.72684037480822]], [[-77.38323523249646, 34.65492510500713], [-77.38335245505036, 34.65488249476836], [-77.3835431806562, 34.654864295277704], [-77.38371181540657, 34.65499885835617], [-77.3836262801423, 34.65527665848528], [-77.38351844792749, 34.65529934087371], [-77.38337277232995, 34.65560762547136], [-77.38331584236074, 34.65577728897359], [-77.38332852687333, 34.655895636429506], [-77.38336470688438, 34.65600748835516], [-77.38346671887783, 34.65629863853281], [-77.38348770367035, 34.656338354528906], [-77.3835581837335, 34.65652768312301], [-77.38361472689762, 34.65666124187338], [-77.38363660388123, 34.65669727940471], [-77.38360615823375, 34.65676574019033], [-77.3835564638372, 34.656776716202685], [-77.38332755032894, 34.656972178298915], [-77.38314128537561, 34.65676543645191], [-77.38303293850008, 34.65666503251143], [-77.38296628376656, 34.656451639150376], [-77.38293673915551, 34.656371564480786], [-77.38291732478008, 34.656319536047874], [-77.38282709125255, 34.6560777179018], [-77.3827945705738, 34.65598819333911], [-77.38278695534814, 34.655970157037316], [-77.38277742078695, 34.6559420397281], [-77.38264059131701, 34.65556827897727], [-77.38263164831298, 34.655472626631074], [-77.3826502753719, 34.65535593784815], [-77.38266901287942, 34.655293255953694], [-77.38272195238537, 34.65522339318578], [-77.38287135398764, 34.655114508889284], [-77.38294126460544, 34.655055295127525], [-77.38313919137897, 34.65494562472831]], [[-77.39261622899934, 34.71063486713026], [-77.39275563986355, 34.71086047695357], [-77.3929767296234, 34.71074638123235], [-77.39330795267735, 34.7107928214747], [-77.39340353700274, 34.710836901644576], [-77.39346954823773, 34.710804154451225], [-77.39361970607162, 34.71080740629174], [-77.39373014406804, 34.71081594043241], [-77.39396446222035, 34.710865351688696], [-77.39403422389144, 34.710872693600194], [-77.39421498110354, 34.71086101678264], [-77.39448654129751, 34.710970980971084], [-77.3945954321446, 34.71086928955306], [-77.3946736314228, 34.71087839793849], [-77.39468992749781, 34.71088617748817], [-77.39471838309024, 34.71091231626711], [-77.39473317053988, 34.71109130757105], [-77.39505403328378, 34.711309352261424], [-77.39509459513496, 34.711386950565476], [-77.39514135717877, 34.71147640916897], [-77.39519037344432, 34.71157018000078], [-77.39520056225531, 34.71164020540323], [-77.39508682761858, 34.71166453741627], [-77.39491965665997, 34.711679437121646], [-77.39484940304996, 34.711796895869206], [-77.3943579224862, 34.71196757304038], [-77.39421100982794, 34.712017003311956], [-77.39381952449469, 34.71199564611609], [-77.39370174308057, 34.71201969838117], [-77.39314883533342, 34.711776288857436], [-77.39305454706044, 34.71179108219376], [-77.39247689174064, 34.71182205930504], [-77.39226671596883, 34.71183009101223], [-77.3916172158846, 34.71149762261395], [-77.39144073284385, 34.71097353959318], [-77.39137506276688, 34.71070594715564], [-77.39130628610087, 34.71055693251064], [-77.39123959062964, 34.710316111050616], [-77.39119175307131, 34.710237266537305], [-77.39125465505126, 34.71017451480154], [-77.39132577370631, 34.710264420246276], [-77.39134297942597, 34.710273013270985], [-77.39155737827764, 34.710571173334635], [-77.39184501294153, 34.71039186225647], [-77.39198892663137, 34.71045005522075], [-77.39220641889537, 34.710543654375186], [-77.3924238269242, 34.710590318246744]], [[-77.4309690356714, 34.67628076778966], [-77.43092945113247, 34.676308800695956], [-77.43092093995956, 34.67635620951029], [-77.43094103905794, 34.6763775418098], [-77.43107926814879, 34.67655375604279], [-77.43140815291959, 34.67697767874557], [-77.43145320429738, 34.67702680825286], [-77.43185831704548, 34.677079675309884], [-77.432017162045, 34.67708734256606], [-77.43213515221774, 34.67703750108069], [-77.43225004991123, 34.67697232657762], [-77.43236677084855, 34.67683897827282], [-77.43231516179699, 34.67666700975205], [-77.43230195612715, 34.67653677849624], [-77.4322793569216, 34.67627242188549], [-77.43227732314828, 34.67624863189213], [-77.43227332343012, 34.67620184561925], [-77.43187002928443, 34.67596004201467], [-77.43156775311962, 34.67585677069586]], [[-77.39899935092649, 34.57008954930736], [-77.39862039448043, 34.57005942117718], [-77.3985824985821, 34.57005640824437], [-77.3982114160082, 34.56995883797485], [-77.3980329564416, 34.56992811389246], [-77.39747608654301, 34.569872833491466], [-77.3974234794568, 34.56988765180475], [-77.39737286976363, 34.56988557434143], [-77.39734830390233, 34.569834578344036], [-77.39696766015054, 34.56953160635837], [-77.39663558703565, 34.569237950097474], [-77.39658057566987, 34.56915549427743], [-77.39653228352682, 34.569103170577], [-77.39637077838307, 34.568987300967144], [-77.39624164950592, 34.568861450497366], [-77.39618212955216, 34.568793267378396], [-77.39615314861089, 34.56873329909427], [-77.39610737141211, 34.56859517036219], [-77.39609032983631, 34.56853007628246], [-77.39624169069106, 34.56834550580648], [-77.39627243261356, 34.568324645278814], [-77.3964089333052, 34.568271822323844], [-77.39658920411081, 34.56819574161519], [-77.39663566791391, 34.56816016305988], [-77.39670156998172, 34.56815857760326], [-77.39740069655865, 34.56810404780948], [-77.39742359755579, 34.56808179737515], [-77.3974582370155, 34.56808309298561], [-77.39750468517163, 34.56811372212494], [-77.39796804321786, 34.56830924502051], [-77.39821150188024, 34.56842111422705], [-77.39858559050575, 34.56840374437343], [-77.3989994204315, 34.568591089301975], [-77.39986563280885, 34.56947133358469], [-77.39987821898399, 34.57022067286773], [-77.3998490112471, 34.570389407170204], [-77.39973886730006, 34.57039095224377], [-77.39968565229891, 34.57034645684096]], [[-77.38608271380973, 34.53013451955053], [-77.38651739411696, 34.53045167550434], [-77.38606722022004, 34.53082079485244], [-77.38573530623711, 34.53084749345115], [-77.38528189561512, 34.53083348568911], [-77.3848362420844, 34.530970204392446], [-77.38431275164338, 34.53076965717194], [-77.38529630609294, 34.53019545171085], [-77.38587981041937, 34.53017989808091]], [[-77.43981722087668, 34.6196592052686], [-77.44007032787762, 34.61925590445931], [-77.44006840392947, 34.61919159517415], [-77.43985346242519, 34.6185792323765], [-77.43957537275057, 34.61839962857559], [-77.43947544862641, 34.61824850850569], [-77.43930094162496, 34.61799824623559], [-77.43897486014944, 34.61794617039506], [-77.43876449446716, 34.617932072226125], [-77.43858779834034, 34.6178322948897], [-77.43856038204663, 34.6177346981068], [-77.43849711753953, 34.61767352204206], [-77.43859159015204, 34.61750043450727], [-77.43861722346095, 34.61745466119441], [-77.43862250102738, 34.61744672354039], [-77.43862993095941, 34.61744040206609], [-77.43864945019881, 34.617429710806505], [-77.43885933632724, 34.617318098544686], [-77.43900286806435, 34.617270128292716], [-77.43910018383748, 34.61723760403467], [-77.43945554121737, 34.61711883741562], [-77.43958076659314, 34.61707255495696], [-77.43975043412581, 34.61699815211005], [-77.44005721312584, 34.61689240008578], [-77.44055889826565, 34.616885549823174], [-77.44057540092425, 34.616864755107024], [-77.44060805038976, 34.61686406093014], [-77.44061765543108, 34.61688438650526], [-77.44062602955755, 34.616909043120984], [-77.4408822848329, 34.61744308273494], [-77.4408854780595, 34.61754653014386], [-77.44085177871096, 34.617607469344975], [-77.44085018784503, 34.61786868777685], [-77.44084683375925, 34.61791545060623], [-77.44084983913666, 34.61792593875383], [-77.44083315951582, 34.61796025518388], [-77.44072635741233, 34.61818300102595], [-77.44066455458076, 34.61834800819922], [-77.44053588525227, 34.61864124962922], [-77.4402765589458, 34.618645015488], [-77.44032438161193, 34.61903928600395], [-77.44022723624326, 34.61921117404087], [-77.4402694835677, 34.619261964151505], [-77.44026407132215, 34.61956906010907]], [[-77.40335162294292, 34.66892270028387], [-77.40363124437089, 34.66890284688408], [-77.4039859946364, 34.66914477173039], [-77.40365072805898, 34.669092292650575], [-77.40357795300055, 34.66908684685567], [-77.40342457918346, 34.669083045796135]], [[-77.35630571164596, 34.6617209367967], [-77.35627787901137, 34.66157060919051], [-77.35641700873687, 34.661680742922954], [-77.35644239189821, 34.66170216128466], [-77.35652035696226, 34.6620842526403], [-77.35679889743753, 34.66198723704168], [-77.35686979982172, 34.66206545235114], [-77.35702150085407, 34.662240385352085], [-77.35702187513388, 34.66226480991975], [-77.3569861253197, 34.66231044161383], [-77.35685359849867, 34.66225909479221], [-77.35657937132967, 34.66218548155835], [-77.35651440219942, 34.66216478902042], [-77.35638190724202, 34.66213247411508], [-77.35635253414938, 34.66197382601991]], [[-77.42818610606085, 34.748472614692716], [-77.4280745155946, 34.74829699682702], [-77.42799790827519, 34.74810471929386], [-77.42772625119882, 34.747894470499915], [-77.42754186743254, 34.74740214710169], [-77.42767611517766, 34.74727054276852], [-77.42775222624843, 34.747314414856284], [-77.4283173126337, 34.74745841214996], [-77.42844022326263, 34.74747385959586], [-77.42884519890039, 34.74768468480082], [-77.42889257889765, 34.747686411908816], [-77.42905156803869, 34.74764789385347], [-77.4290634436031, 34.74764998913371], [-77.42906723235468, 34.74765873813608], [-77.42908759877723, 34.7477067506334], [-77.42902464676378, 34.74778913189171], [-77.42896911530238, 34.747887104681936], [-77.42881996851767, 34.74820825200054], [-77.42877640226725, 34.748261440921254], [-77.42872509563033, 34.748264889411836], [-77.42840126826995, 34.748455120382985]], [[-77.41033616854219, 34.72790998512599], [-77.41022812877735, 34.72784028120883], [-77.4102196613253, 34.72779736923749], [-77.41004464615659, 34.7274704404562], [-77.40983087103629, 34.7271565303168], [-77.40981267341196, 34.72712081871158], [-77.40980615820598, 34.72709364910724], [-77.40961913422024, 34.72675517179076], [-77.40962092794447, 34.72674074967938], [-77.40963818252156, 34.726715091346186], [-77.40974942101221, 34.72657675055068], [-77.40992038522097, 34.72657448714853], [-77.40996897257497, 34.72656161147263], [-77.41001733759197, 34.72651289106088], [-77.41014491370971, 34.72665301002141], [-77.41038685496687, 34.72688140104526], [-77.41052672526973, 34.7269677202534], [-77.41078984116945, 34.72743766135173], [-77.41063669586624, 34.727653163601424], [-77.41063389870017, 34.72766268042324], [-77.41060109150628, 34.727684766445755], [-77.41036420854773, 34.72784791970014]], [[-77.34214340976055, 34.651506885520234], [-77.3421928633303, 34.651453631129506], [-77.34225942324967, 34.6514898142724], [-77.34252251057367, 34.65150076187216], [-77.34267314704053, 34.65160629706923], [-77.34283487863684, 34.65146192573212], [-77.34312946891916, 34.6516347388751], [-77.34320031961359, 34.65168712408473], [-77.34320929019545, 34.651693026822386], [-77.343556164005, 34.651864568179505], [-77.3436785703651, 34.65191213323284], [-77.34389572461427, 34.65196100120971], [-77.34402819938985, 34.65201287089035], [-77.34417735332103, 34.65207283197584], [-77.34426211983472, 34.65219091698795], [-77.34456502439288, 34.65236117533856], [-77.34449351874218, 34.65259509192214], [-77.34450853635491, 34.65279092851851], [-77.34461942179122, 34.653025501732664], [-77.34433007643315, 34.652918684731304], [-77.34386749832832, 34.653413342969586], [-77.34362441537556, 34.65316755845494], [-77.34350725611957, 34.65321405946542], [-77.34338752605323, 34.65321006613592], [-77.34318491397606, 34.65320330863548], [-77.34303467592184, 34.65318692070091], [-77.3428518393514, 34.65313916440101], [-77.34262510013541, 34.65304946968746], [-77.34254483712465, 34.65300850138679], [-77.3424795866282, 34.65288010536405], [-77.34225318632033, 34.652818455021226], [-77.34210083676086, 34.65273933584947], [-77.34206230767211, 34.652704721317726], [-77.34198990869405, 34.65257269675617], [-77.34186583728771, 34.65230969072788], [-77.3418699326557, 34.652048301501594], [-77.34178694903085, 34.65171600606807]], [[-77.33236197446452, 34.653517645143005], [-77.33244648718447, 34.653481126448135], [-77.33290642321832, 34.65304022759433], [-77.33328353443237, 34.65311943109863], [-77.33358980042502, 34.65325438855615], [-77.3336971284297, 34.653301682628054], [-77.33392026597748, 34.65340000705158], [-77.3339343164771, 34.65340619833691], [-77.3339417449149, 34.65341251197501], [-77.33415791093357, 34.65353761911362], [-77.33423839710163, 34.65401089461738], [-77.33415116475521, 34.654212317232854], [-77.334124126862, 34.65432031799876], [-77.33404485462054, 34.654497499711155], [-77.33397077119594, 34.65505597110848], [-77.33396538881755, 34.65508179070247], [-77.3339637115606, 34.65508904097471], [-77.33396107356268, 34.65510242285608], [-77.33393405841599, 34.65512863436617], [-77.33394098972992, 34.65508513793672], [-77.33392752169323, 34.65505525469875], [-77.33363247917865, 34.65457758176039], [-77.33352854349775, 34.65429773259531], [-77.33332386524292, 34.654040460096084], [-77.33308803233213, 34.653944250039594], [-77.33284299159949, 34.65384428347385], [-77.33246544842348, 34.65369025909675], [-77.33239050769544, 34.65365968594346], [-77.33235333922799, 34.65366548376633], [-77.33229781635163, 34.653622577522036]], [[-77.44217255935375, 34.74389899844201], [-77.44223438076864, 34.74395164364229], [-77.44270844418116, 34.74418442192342], [-77.44272536852141, 34.74419320338395], [-77.44249626451358, 34.74455898783357], [-77.4421033791097, 34.74445271458038], [-77.44208570817347, 34.74419916445777], [-77.4420917914109, 34.74401113586875], [-77.44204663264895, 34.74395323350907], [-77.44203055602294, 34.743798455733604]], [[-77.42701851030773, 34.625774080010785], [-77.42702454558132, 34.625558698840294], [-77.42707578088286, 34.62548439723959], [-77.42713226672902, 34.62538010101369], [-77.42714544469612, 34.625353917858014], [-77.42723386180876, 34.62531444024079], [-77.4273321016093, 34.62526439178791], [-77.42738516712424, 34.6252541516975], [-77.42740933455065, 34.62529142705887], [-77.42746832257465, 34.62543225011251], [-77.4274879985478, 34.62558553696114], [-77.42750415347176, 34.625634348244134], [-77.42751639019352, 34.625787787516686], [-77.4275419287132, 34.62595730082847], [-77.4276288787955, 34.62632746893826], [-77.42774079732874, 34.62646231270614], [-77.42803613818299, 34.626743911758105], [-77.42803891464695, 34.62674660241733], [-77.4280402631713, 34.62675119696263], [-77.42786618149381, 34.627165054765044], [-77.42779406328158, 34.62728447606901], [-77.42770997460354, 34.62749176012125], [-77.4273050996863, 34.627637171560124], [-77.42723613459029, 34.627344577308286], [-77.4267938985522, 34.62734773330757], [-77.42660429372016, 34.627294151611935], [-77.42614447539654, 34.62722718445683], [-77.42562517686048, 34.62714472953076], [-77.42551067284613, 34.62714060236246], [-77.42540259587268, 34.62712853238901], [-77.42547397359324, 34.62709179997169], [-77.42549643696695, 34.62708856298031], [-77.42551495825369, 34.627082311902086], [-77.42622383824461, 34.62673482915629], [-77.42643092147924, 34.626660414272195], [-77.4266939894643, 34.62639135189304], [-77.42674117661842, 34.626296461374075], [-77.42702617183573, 34.62592746836778]], [[-77.35770524508477, 34.66412608840495], [-77.35720224774668, 34.664554792372], [-77.35699310662795, 34.66422391769052], [-77.35727388365153, 34.66381457794409], [-77.35716583291523, 34.66371280369735], [-77.35742652764766, 34.66364303234323], [-77.35745296829644, 34.663646371320745], [-77.35747011093727, 34.66364914965706], [-77.35751296704957, 34.6636651166028], [-77.35786381921442, 34.663754592993776], [-77.35788809865784, 34.664053788279155]], [[-77.38721996802472, 34.56624278810058], [-77.3879435340534, 34.56612363233131], [-77.38766512346457, 34.56665842303722], [-77.38750333986863, 34.56666140502196]], [[-77.38784627923374, 34.52869060499545], [-77.38811527927113, 34.528752183892095], [-77.38804475457665, 34.52899076555765], [-77.38724128010318, 34.529148805640396], [-77.38755331191626, 34.5287517529925]], [[-77.33086354202955, 34.56368232669692], [-77.33090310403803, 34.56375550344779], [-77.33081966766477, 34.56373586322179], [-77.33079653270008, 34.563655883185824]], [[-77.35765181923595, 34.665067594505615], [-77.35741701210945, 34.66465307105854], [-77.3578563646763, 34.664362748242205], [-77.35783484589857, 34.66456531765925], [-77.35783843143709, 34.66459517850336], [-77.3578400726613, 34.6646494495444]], [[-77.40127594534277, 34.58082517126483], [-77.40136302800276, 34.581102908084674], [-77.40137618107089, 34.581127270313], [-77.40139252376527, 34.58113908517461], [-77.40137741257696, 34.58115676631175], [-77.40136302738391, 34.58116896359955], [-77.40133666943807, 34.581175546807025], [-77.40096900118749, 34.581407860027966], [-77.40077452791594, 34.58143781531033], [-77.40077198864792, 34.581438206441874], [-77.40076781675154, 34.58143702449246], [-77.40057497698488, 34.581414300938945], [-77.40048309128957, 34.58136932862688], [-77.40035740325686, 34.58128845463399], [-77.40029997856237, 34.58116849234161], [-77.40029263777635, 34.58099356006955], [-77.40030978550647, 34.58087075138676], [-77.4005749929565, 34.58056899746661], [-77.40068194808026, 34.58050772202367], [-77.40082602307965, 34.58052576291602], [-77.40096901241907, 34.580614341187136], [-77.40106202237062, 34.580661979654344], [-77.40116737075094, 34.58074700101641]], [[-77.43488857332571, 34.67754707934919], [-77.43483438110064, 34.6776241575422], [-77.43483226156967, 34.67770124937983], [-77.43481754269872, 34.6778543834848], [-77.43495380368262, 34.67801046060505], [-77.4351692888328, 34.67800600481368], [-77.43527609909232, 34.67800379611265], [-77.43553289287671, 34.677946272728065], [-77.43536880057387, 34.67768330518015], [-77.43535875927041, 34.6776284532342], [-77.43533035722868, 34.67759591591518], [-77.43513203288802, 34.67739428732715], [-77.43498527493381, 34.67747523384644]], [[-77.40136311060061, 34.57415774916851], [-77.4014184447653, 34.57428251265656], [-77.40144772057303, 34.574337919614955], [-77.4015117634876, 34.574488874544016], [-77.40152269465148, 34.57457969662284], [-77.4015601001418, 34.5746028083805], [-77.40160939963296, 34.57473916204356], [-77.40159497161082, 34.574778824716205], [-77.40160817746829, 34.57484548223174], [-77.40156009670352, 34.574898332512056], [-77.40151093702708, 34.574912683976166], [-77.40143952850411, 34.574975964534566], [-77.40136309844625, 34.57501840435058], [-77.40117987667556, 34.575028280163345], [-77.40109298308221, 34.57510476744588], [-77.40096910504889, 34.57499636555896], [-77.40089051681231, 34.57492759533393], [-77.4008074378057, 34.574854894908576], [-77.4005751233305, 34.57448077437741], [-77.40057278738749, 34.57446669996074], [-77.40057223105607, 34.57446426262834], [-77.40055781647649, 34.57444769153874], [-77.4005751238917, 34.57445701642736], [-77.40090378723485, 34.57392143056385], [-77.40100571288858, 34.57393770385442], [-77.40110949265735, 34.573962155513236]], [[-77.37173487356277, 34.599350404278844], [-77.3719049642885, 34.59897646168737], [-77.37180440266461, 34.59856689933332], [-77.37180459008381, 34.59856605034757], [-77.37180487817037, 34.598565692039955], [-77.3718060962936, 34.59856483169862], [-77.37180557491554, 34.59856621870637], [-77.37219892988429, 34.59873628372047], [-77.37226112388771, 34.59885811771571], [-77.37235275098615, 34.59891196422655], [-77.37270281989589, 34.59916768177281], [-77.37298700790022, 34.59916669325456], [-77.37304659404673, 34.59923658208275], [-77.37316820677395, 34.59944832503656], [-77.37330974518082, 34.59962323573992], [-77.3735500091475, 34.59983101536213], [-77.3737130380699, 34.59998970304139], [-77.37377494375585, 34.600056535229584], [-77.37393624206341, 34.600208300230214], [-77.37397194505513, 34.60023372983132], [-77.37410251661764, 34.60035815882518], [-77.37413563018201, 34.600389286629934], [-77.37416221445295, 34.60055463644075], [-77.374160183853, 34.600562131929266], [-77.37405687673603, 34.60066865647876], [-77.3739826576815, 34.600799984679696], [-77.37377457793966, 34.60117793029636], [-77.37374639810257, 34.6012282393485], [-77.37373247077811, 34.60126058400405], [-77.37357744505468, 34.601395724926576], [-77.37350930137217, 34.6014316173617], [-77.37343404589117, 34.601458021829565], [-77.37338035737442, 34.60147359262168], [-77.37319072717152, 34.601542868600276], [-77.37317258778342, 34.60154200236944], [-77.37298621583759, 34.60152496999935], [-77.37280047158238, 34.601594893691015], [-77.37231023371439, 34.6014654443279], [-77.37222852303832, 34.601444327287844], [-77.37219799810629, 34.60143306304518], [-77.37204664770678, 34.601340336934776], [-77.37175420011191, 34.601174579144015], [-77.3714099854918, 34.60076627026454], [-77.37139658141474, 34.600747921269146], [-77.37141001382656, 34.600686374987106], [-77.37153963922484, 34.600017580446405], [-77.37158848893954, 34.59987116303459], [-77.3717495592526, 34.59948264994257]], [[-77.37967873564646, 34.63268869069838], [-77.37966339027761, 34.63267287641156], [-77.37965710488868, 34.63265047963111], [-77.37967875754654, 34.63259444218998], [-77.3797626220099, 34.63256827968528], [-77.3800199667962, 34.63256436270819], [-77.38007302955872, 34.6325870561318], [-77.38008928963632, 34.63259401009059], [-77.38031335295577, 34.63257924149681], [-77.38009513869878, 34.63263449799087], [-77.38007302062226, 34.632626312375145], [-77.38006451063556, 34.632624255258555]], [[-77.3943674311039, 34.52761444500708], [-77.39439516015187, 34.52760928557951], [-77.39444722946556, 34.52755399974127], [-77.39468005966887, 34.52731530225626], [-77.39452070104048, 34.527173701461905], [-77.39447217346552, 34.527052206523784], [-77.39431555484326, 34.52707394133725], [-77.39399897952653, 34.5272001082618], [-77.39355950767276, 34.5274770098203], [-77.39399160128121, 34.52752827912583]], [[-77.3829259166112, 34.530871611415535], [-77.38320658716339, 34.530929189380814], [-77.38317184155346, 34.53109068400971], [-77.38321630197319, 34.53117262014037], [-77.3829160471127, 34.53130804759033], [-77.38272919154593, 34.53124286738167], [-77.38278637758782, 34.53107397098806], [-77.38276936444332, 34.5309922426323]], [[-77.44078461894918, 34.59666425064369], [-77.44077672961076, 34.59667878216091], [-77.44116630821375, 34.596725452683565], [-77.44129302510414, 34.596740632711644], [-77.44140597958705, 34.59675416404305], [-77.44156041957035, 34.59677266488417], [-77.44172242459497, 34.59679207173161], [-77.44184330824282, 34.5968292866008], [-77.44195454779667, 34.5968536444247], [-77.44200258902163, 34.59687433861343], [-77.44214403311524, 34.596879008330255], [-77.44251656940173, 34.59706587893326], [-77.4426855874685, 34.59672457841683], [-77.44274609593012, 34.59659066780943], [-77.44284439765038, 34.59634306096602], [-77.4428591799048, 34.596305826408106], [-77.44281628433858, 34.59624032653553], [-77.44268503404942, 34.596039912524866], [-77.44234823443155, 34.596038576766354], [-77.44233971418716, 34.59603731626532], [-77.44226968864518, 34.59603826500213], [-77.4419937503692, 34.596035505704805], [-77.44191095177126, 34.596043604943326], [-77.44156010601401, 34.59612487851567], [-77.44122936208699, 34.59612047783483], [-77.4411660196078, 34.5961234110216], [-77.44107267491421, 34.59611082159101]], [[-77.32611283866612, 34.56013777887711], [-77.32580359690058, 34.56026310812517], [-77.32582713416024, 34.560496876119984], [-77.32606896373403, 34.56051120189758], [-77.32612257426044, 34.560153548021084], [-77.32616725993918, 34.560178139522904], [-77.32612382603209, 34.560134869682784], [-77.32612125801177, 34.56013513219771]], [[-77.43133267238767, 34.50380640875102], [-77.43121223172031, 34.503637512053785], [-77.43122132451596, 34.50360914802107], [-77.43125235611267, 34.50351234638], [-77.43126252123811, 34.5034806367565], [-77.4312679583805, 34.503471470845874], [-77.43131198015695, 34.50335614095037], [-77.43164141205955, 34.503321636940555], [-77.43185511812209, 34.50325384901062], [-77.43197038982728, 34.50333841805775], [-77.43197695731766, 34.503382274029065], [-77.43206396027654, 34.50351207499513], [-77.43201730877102, 34.50365173608371], [-77.43200849244327, 34.50367812979091], [-77.43200373963741, 34.50369235868445], [-77.43198130572534, 34.50371584884174], [-77.43180311708682, 34.50389191818266], [-77.43149261294232, 34.5039256987839]], [[-77.37563182188153, 34.5616384184172], [-77.37536375887093, 34.561642642888486], [-77.37502009736347, 34.56164509811976], [-77.37496982254457, 34.561644319666726], [-77.3749327210952, 34.561643492285135], [-77.37477285547236, 34.56164186065772], [-77.37473631722096, 34.56163180920958], [-77.37462312096903, 34.56159723236518], [-77.37457592101649, 34.56154473820577], [-77.3744438938364, 34.56146166789171], [-77.37444549810154, 34.5613897761846], [-77.37444641428738, 34.561249023977425], [-77.37444503856543, 34.56110800118525], [-77.37457616424646, 34.560839549637414], [-77.37468564158542, 34.560483284889365], [-77.3748017394062, 34.56034869721323], [-77.37497033506133, 34.560138380794825], [-77.37515070369349, 34.56006821541442], [-77.37536431969247, 34.559971998017545], [-77.37560060688192, 34.5596389904727], [-77.37592052327132, 34.5593383427144], [-77.37606126889958, 34.55921981706857], [-77.37615248593644, 34.55902216474222], [-77.37635212992592, 34.5586420541663], [-77.37646261248621, 34.55841109257121], [-77.3765466876526, 34.55815983099913], [-77.37670002622653, 34.558117564858705], [-77.3769406074062, 34.55815756925598], [-77.37757935231254, 34.5582501383966], [-77.37766472668336, 34.55830645807126], [-77.37772837184124, 34.55839473378076], [-77.37781256324408, 34.558307236405504], [-77.37823968266736, 34.55845298201356], [-77.37831120480479, 34.55877294693148], [-77.37812811328831, 34.55902016854071], [-77.37795116501468, 34.559654257628736], [-77.37780984680927, 34.5599151684481], [-77.37776643171354, 34.55996296706113], [-77.37772785825715, 34.56005964936675], [-77.37752568389693, 34.56058753008115], [-77.37745251906138, 34.56081579633196], [-77.37733363897519, 34.560992981168226], [-77.37717320783977, 34.56110774834074], [-77.37712254984075, 34.56128791655101], [-77.37704922895992, 34.561416666098125], [-77.37700223397465, 34.56151753847732], [-77.37693953013388, 34.56155081585031], [-77.37675228947704, 34.56156404889708], [-77.37673468899288, 34.561564578963335], [-77.37654560956143, 34.561505875913745], [-77.37642667120717, 34.561516389652006], [-77.37615164778549, 34.56158847534016], [-77.37592600977112, 34.56164176247905], [-77.37575769576821, 34.56163895037368]], [[-77.38047925946066, 34.72887453908541], [-77.38066647650696, 34.72878032826108], [-77.38093972649187, 34.72873653323881], [-77.38117123709287, 34.72869957220582], [-77.38162615418743, 34.728976777965556], [-77.38169212664755, 34.729022991765085], [-77.38140898488402, 34.7292464390416], [-77.38133179731602, 34.72925132529464], [-77.38122467637803, 34.729319205309515], [-77.38099426358431, 34.72931376732909], [-77.38099311201063, 34.7293136268823], [-77.38099261988883, 34.729313862178145], [-77.38099107793872, 34.729313692141055], [-77.38083782581822, 34.72929632004931], [-77.38074461123746, 34.72928242249369], [-77.3806788662769, 34.72929167606512], [-77.38044751403413, 34.72917067818177], [-77.38039177598903, 34.72917611439357], [-77.38017450847728, 34.72902789417741]], [[-77.3474299659354, 34.65498157284575], [-77.34773370922181, 34.655125171174454], [-77.34784770325832, 34.655140237896944], [-77.3478946238154, 34.65512924720014], [-77.34797548750903, 34.65515712706449], [-77.34806664487023, 34.65518855598372], [-77.34809911645598, 34.655216601254956], [-77.34813351416051, 34.655247242278634], [-77.34820127312202, 34.65530141242416], [-77.34826544798555, 34.655427750851615], [-77.34818806885983, 34.65545075177309], [-77.34812198943072, 34.65546378955156], [-77.34810192974427, 34.65546257925306], [-77.34798173433511, 34.65544901902238], [-77.34795358234207, 34.65542245632264], [-77.34790465773406, 34.655424613210215], [-77.34778481951955, 34.65537935280902], [-77.34773122193563, 34.65537087037951]], [[-77.44394200182201, 34.73346341129448], [-77.4439100768981, 34.73346102670836], [-77.44387446258779, 34.73344617674139], [-77.4438402237101, 34.73339941638226], [-77.44388318549046, 34.73336735005553], [-77.44394433847171, 34.733342593720266], [-77.44405298664688, 34.73337167967577], [-77.44399388404273, 34.7334530996748]], [[-77.4007488282007, 34.670645547214114], [-77.40078080676035, 34.67038235653226], [-77.40093885401005, 34.67056628225651], [-77.40098656004436, 34.67071904802214]], [[-77.39076116099392, 34.622961724921836], [-77.3908643565039, 34.623148191407935], [-77.39068474529185, 34.62305502852317], [-77.39061715770492, 34.623027576944956], [-77.39059080171707, 34.62289298734436], [-77.39071929314795, 34.62295212880511]], [[-77.46172558118695, 34.70722559957337], [-77.46173493762413, 34.7072097881193], [-77.46177769587977, 34.707137530386596], [-77.46175418214868, 34.70723222954734], [-77.46175300855391, 34.707235180507794], [-77.46175210771244, 34.70723782874964], [-77.46170540646905, 34.70738767180601], [-77.46171098278468, 34.70725026912947]], [[-77.44029049288861, 34.60257700411922], [-77.44024740291111, 34.6026772128727], [-77.44073532399885, 34.60270050562922], [-77.44048971023591, 34.60238097542061], [-77.44031592001457, 34.60255370152678]], [[-77.37805830867038, 34.62743289644808], [-77.37813265529243, 34.62740602548264], [-77.37824436164914, 34.62735798653404], [-77.37844727326642, 34.62727491716926], [-77.37838623780314, 34.627032620608745], [-77.37820899621272, 34.627052581096734], [-77.37810301139746, 34.62731866702151], [-77.37807995056102, 34.62735684671899]], [[-77.42451706193788, 34.68377325941435], [-77.42424086959304, 34.68405438353968], [-77.42472689066409, 34.684116355637286], [-77.42473007962253, 34.6838502300545]], [[-77.43256102096485, 34.730855768115084], [-77.43259597633323, 34.73089792566884], [-77.4325654755832, 34.73095493930403], [-77.43254088411419, 34.730988492907755], [-77.43242659648143, 34.731047985248956], [-77.43238725198101, 34.73103764739416], [-77.43233372121946, 34.73100733454833], [-77.4323287446469, 34.73094206054038], [-77.43232168273107, 34.73091188500305], [-77.4323287654757, 34.73089780384379], [-77.43237225803753, 34.73082620975413], [-77.4324499600372, 34.730816953842634], [-77.43247417075686, 34.730805769612246], [-77.43249678688646, 34.730805473256574], [-77.4325195902759, 34.73081819459611]], [[-77.33144885917163, 34.65694158540054], [-77.33149692874377, 34.65678989550124], [-77.33168415250067, 34.656711739508324], [-77.33172076148877, 34.656998865943656], [-77.33173589079566, 34.65707559771822], [-77.33165551703684, 34.65717337227231], [-77.33154598796656, 34.65716935361625], [-77.3314983749565, 34.65718807684163], [-77.33135395157335, 34.65712798617281]], [[-77.40125246348309, 34.673797272029844], [-77.4012474467521, 34.673777522683636], [-77.40127161253191, 34.67373116563439], [-77.40138115752936, 34.673824330114506]], [[-77.39490674075489, 34.73298599307717], [-77.39474284033415, 34.732956762375785], [-77.3947814286797, 34.73278107865329], [-77.3948927588847, 34.73289427817883]], [[-77.43818719354381, 34.67756366926927], [-77.43815874762552, 34.677606676865786], [-77.4381856152101, 34.6776362020272], [-77.43823276636635, 34.677632560459884], [-77.43822848542797, 34.67758589253771], [-77.43823965073558, 34.67754176932036], [-77.43820562514698, 34.6775485224217]], [[-77.3868092496589, 34.621488061327156], [-77.38682530012682, 34.62145132794089], [-77.38697441573865, 34.62137409506131], [-77.38715982226364, 34.621390512220685], [-77.38717152141781, 34.62138881434389], [-77.38717567544035, 34.621396351742725], [-77.3871761507627, 34.621400758323894], [-77.38717465886407, 34.62140435487783], [-77.38717151747048, 34.62141504548309], [-77.38712787603248, 34.62157302402738], [-77.3870515610811, 34.6216309993886], [-77.38700073942351, 34.6216667228979], [-77.38690483136068, 34.621727031295144]], [[-77.42922274142398, 34.69949968590538], [-77.42934598059277, 34.69952067260378], [-77.42936667436777, 34.699536737358166], [-77.42945181757354, 34.699579786774606], [-77.42933301212771, 34.69965306095099]], [[-77.42524718030447, 34.57541020844774], [-77.42532081135164, 34.57534838613829], [-77.42525764008451, 34.57529502769743], [-77.42511534218698, 34.57528722045749], [-77.4250817615778, 34.57551004448659]], [[-77.3802809230663, 34.58799341417739], [-77.38028875244811, 34.58800363908176], [-77.38028091049173, 34.58804231085119], [-77.38026958083482, 34.588006402074164]], [[-77.37622476124768, 34.631156394685796], [-77.37621899247577, 34.6311412697338], [-77.37628046443419, 34.6310884081124], [-77.37623909814124, 34.63116003009539]], [[-77.39030714804059, 34.62285998440238], [-77.39032508772702, 34.62279814674264], [-77.39041678966532, 34.6228441783242], [-77.39032507780848, 34.62288706332807]], [[-77.41466178146155, 34.620195607697255], [-77.41476621460421, 34.620134072411524], [-77.41483586258146, 34.62009545304056], [-77.41486475616784, 34.62008134119766], [-77.41490516677078, 34.62009784601369], [-77.41496331525268, 34.6201253794354], [-77.41498102041452, 34.62013045024944], [-77.41499675935799, 34.620183256338045], [-77.41497852585066, 34.6203621696064], [-77.41496336707137, 34.620409334500344], [-77.41480852584243, 34.620386712760435], [-77.4147727249484, 34.620384918036194], [-77.41476625882059, 34.620379577967]], [[-77.38574394778234, 34.56789952300881], [-77.3856047303527, 34.567978877370834], [-77.38557661428926, 34.567923650752185], [-77.38560475225104, 34.56787350670065]], [[-77.45605819284728, 34.60140425774103], [-77.45605856903191, 34.60140327727398], [-77.456069287354, 34.60125329375676], [-77.45624108949646, 34.60111688078349], [-77.45644309563787, 34.60107439284592], [-77.45652759873002, 34.60105661923807], [-77.4565101752064, 34.60109786298363], [-77.45650817378007, 34.60113240112996], [-77.4564687332089, 34.60128626784348], [-77.4563876681248, 34.601364690643884], [-77.45638414923833, 34.6014027138235], [-77.45633396911316, 34.60145605468489], [-77.45626903808963, 34.60147802941752], [-77.45610635033374, 34.60157180677243]], [[-77.38698661024165, 34.59659973745775], [-77.3870179297155, 34.59675609607525], [-77.38712620465226, 34.59673002314992], [-77.38713582741602, 34.59661211306308]]]]}, "type": "Feature", "id": "demo11", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.20203171647525, 34.65466781624104], [-77.20409560766348, 34.655121261691065], [-77.20515414884336, 34.655497925079985], [-77.2101347417707, 34.65652576212924], [-77.21045273066655, 34.656614572094774], [-77.21443563656702, 34.657906685222244], [-77.21573736478598, 34.65879138570572], [-77.21589380281844, 34.65892969576174], [-77.21642471404421, 34.66010201089861], [-77.21677302804268, 34.66088451051831], [-77.21723226889378, 34.66273889109321], [-77.21895886229015, 34.66482792581185], [-77.21926760984368, 34.665145694244124], [-77.22064420122221, 34.66734130719468], [-77.22321513801822, 34.66893454762147], [-77.22390809884605, 34.669310684866076], [-77.22835530691684, 34.67033647034867], [-77.22957530367506, 34.67145057560633], [-77.23371658400892, 34.6723216748089], [-77.23683658270456, 34.670444925066406], [-77.23723088447242, 34.670194510997995], [-77.2372308880662, 34.67000009709456], [-77.23718991507133, 34.66974760353058], [-77.23694492769744, 34.66712486018237], [-77.23683113153773, 34.66623683034738], [-77.23321904070211, 34.66426035578315], [-77.23052172400651, 34.663648582047614], [-77.2316916726957, 34.66206113246462], [-77.23046733229603, 34.66073003495915], [-77.23022831371637, 34.660060422852446], [-77.22933830898091, 34.658596188900766], [-77.22913860635327, 34.658287925161076], [-77.22904908837786, 34.658082060432704], [-77.22899626410819, 34.657606770456965], [-77.22892556111576, 34.65542862495063], [-77.22886742220429, 34.65429687367853], [-77.2287708401003, 34.6525475575477], [-77.22874798484004, 34.652402079173164], [-77.22874758642173, 34.652126066700504], [-77.22897503509691, 34.65053452914984], [-77.22912625875071, 34.64947569891706], [-77.22924133456614, 34.6486701381551], [-77.22941426468779, 34.64745923264564], [-77.230043586526, 34.646847955877575], [-77.23110803590814, 34.645795584512726], [-77.23290903187963, 34.643303012431026], [-77.23387449771786, 34.64182202327741], [-77.23372783661014, 34.640775834534125], [-77.23311405145537, 34.63954837662839], [-77.2328877772646, 34.63925207645882], [-77.23267953731681, 34.638679324457264], [-77.23171558348596, 34.636751529004485], [-77.23115124159793, 34.63562278254417], [-77.23047767934156, 34.63427557108058], [-77.23105139076571, 34.633136308655786], [-77.23209202815019, 34.63192613108996], [-77.23403539700038, 34.630530498325385], [-77.23686969799586, 34.62853195288804], [-77.23807817337031, 34.62802107093906], [-77.24219075005334, 34.62726434004532], [-77.24584526932418, 34.62600838426026], [-77.24719167654787, 34.62557424250927], [-77.24997403610135, 34.62366744608849], [-77.25093305813927, 34.62209798895861], [-77.25168982786661, 34.620460841245446], [-77.25309799232497, 34.61849763141419], [-77.25398517092688, 34.61671708517373], [-77.25399873000556, 34.61668318946636], [-77.25406343511352, 34.61663328270703], [-77.25560242755304, 34.61552587984106], [-77.25609473188322, 34.614962731574394], [-77.25692988203792, 34.61407702361939], [-77.25941395734566, 34.61253203466211], [-77.26160200286218, 34.613811109551236], [-77.26202962117111, 34.61402880907225], [-77.26411578017874, 34.61559349814398], [-77.26432962120904, 34.61572918394797], [-77.26450754540994, 34.61579788579719], [-77.2646389091382, 34.615865423518805], [-77.26540463377083, 34.61639100469779], [-77.26629135746651, 34.61685687855149], [-77.26740730897397, 34.61690729864359], [-77.26928185680717, 34.6155309772736], [-77.26965917462155, 34.615366071750046], [-77.27010286642412, 34.61487774822363], [-77.27269591669345, 34.612525331342184], [-77.27392443521666, 34.611092471622534], [-77.27594566197284, 34.60732744326129], [-77.27629688966209, 34.60520865880018], [-77.27656515680786, 34.60386701234898], [-77.27674685299414, 34.60295844776735], [-77.27723312933196, 34.602039563313355], [-77.2777097618019, 34.60118797254289], [-77.27873178956966, 34.600194917539255], [-77.28070333288942, 34.59864580720088], [-77.28158825929181, 34.59822017373277], [-77.2829292772148, 34.59771992133109], [-77.28638792901944, 34.59662393436952], [-77.28914059328478, 34.59585301915072], [-77.29115138955221, 34.59484762611161], [-77.2928623225207, 34.59399214417397], [-77.2933745607627, 34.59316796536332], [-77.29406978249322, 34.59134429747327], [-77.29433331693428, 34.59002654289663], [-77.29498194389187, 34.58841299892151], [-77.29817347077679, 34.58591176390061], [-77.29931533746496, 34.58449227059324], [-77.29956102204639, 34.584233139348314], [-77.30039137437812, 34.58372686762867], [-77.3038137872866, 34.58139730656876], [-77.30627412367416, 34.57982901590526], [-77.30916238075831, 34.57866229190482], [-77.31518489624592, 34.574867986052155], [-77.31536791789571, 34.574730719962766], [-77.31547100901332, 34.574653403471586], [-77.31855190913726, 34.57090748523697], [-77.31862697133995, 34.57078665333151], [-77.32016194010271, 34.56736072543893], [-77.32063335028307, 34.56605361538617], [-77.321784073908, 34.56545556751627], [-77.32285047773311, 34.564726649754675], [-77.32483882814391, 34.56339914388302], [-77.32493778467196, 34.5633206418291], [-77.32496318530691, 34.56330207370142], [-77.32500743481435, 34.56326836196555], [-77.32581344041381, 34.56239711575442], [-77.32582788626915, 34.5623014031697], [-77.32651502735605, 34.56176638306448], [-77.32679646971108, 34.56161629843805], [-77.32701740348344, 34.56158926186204], [-77.32730311772528, 34.561547972497905], [-77.32773682618787, 34.56155968719787], [-77.32809085038255, 34.561721447286885], [-77.32823988234156, 34.5617941201803], [-77.32848464854442, 34.56188541069578], [-77.32850837428141, 34.56191621066099], [-77.32848450985723, 34.56204010771008], [-77.3284415271723, 34.562304289518856], [-77.32839958706953, 34.56235638179871], [-77.32808991734368, 34.56275685352677], [-77.32805523180303, 34.56279306282994], [-77.32802860678797, 34.562834232465796], [-77.32801076730826, 34.56292193007129], [-77.32792467178668, 34.56369824202923], [-77.32801809850234, 34.56376123532078], [-77.32808897002165, 34.56380902009273], [-77.3285183150325, 34.56399914356216], [-77.32873282222067, 34.56443117458064], [-77.32884254092276, 34.565228840756575], [-77.32885056442663, 34.565263330355954], [-77.32885144720912, 34.56528919018778], [-77.32887552143124, 34.565335524968845], [-77.32912234964495, 34.56580691029996], [-77.32954877259607, 34.566012061673334], [-77.32960888763326, 34.566061524954776], [-77.32966276808834, 34.56610566005186], [-77.33032671420804, 34.56688220684326], [-77.33044973677423, 34.567212294994555], [-77.33056513902187, 34.56756413957227], [-77.33069482840332, 34.56812960970444], [-77.33079135793608, 34.56838070215772], [-77.33085895601793, 34.56877763633692], [-77.33085044551648, 34.56880549276534], [-77.33082759849829, 34.568815897468006], [-77.33044819580854, 34.56898601161593], [-77.33023822478226, 34.56908310963791], [-77.32966102350186, 34.56939100003446], [-77.32965988185333, 34.569391248832616], [-77.32965908118291, 34.56939164674383], [-77.32965710082358, 34.56939279374233], [-77.32941111739032, 34.56958480771137], [-77.32943382534259, 34.56966820763017], [-77.3295342146493, 34.56983499150825], [-77.32965931852402, 34.570033537630145], [-77.32973219577188, 34.57015243501284], [-77.32977621922073, 34.57022474947196], [-77.32992439263194, 34.57048951436209], [-77.329998038231, 34.57061740861551], [-77.32999101892271, 34.570684918398314], [-77.32999422057739, 34.57104249436953], [-77.32995835423522, 34.57137113129402], [-77.32979621115626, 34.571920026543374], [-77.3296573688582, 34.57225896193374], [-77.32942852748175, 34.5725756596214], [-77.32926303633994, 34.57264276497834], [-77.32910705190983, 34.57286813983371], [-77.3290036885609, 34.57302844667418], [-77.32898613484593, 34.57318336722746], [-77.32917439288676, 34.573282999786656], [-77.32922813272371, 34.57331225126356], [-77.32932483539966, 34.57332861897394], [-77.32965654331838, 34.57320241819198], [-77.33003227231669, 34.573139967662044], [-77.33044460886916, 34.5731245704786], [-77.33058526456401, 34.57335300659149], [-77.33075359234971, 34.57348058687266], [-77.3310497820863, 34.57363454187652], [-77.33123206224828, 34.57376008254064], [-77.3314933476079, 34.57394164166758], [-77.33184468613567, 34.57417284861132], [-77.33201962251157, 34.574283327850786], [-77.33238933664123, 34.57454504037547], [-77.33241340686351, 34.57454426887895], [-77.33252549810476, 34.574620381243626], [-77.33280724280363, 34.57474647371777], [-77.33284502920577, 34.57483734993009], [-77.33286874697414, 34.57487473742785], [-77.33298078052422, 34.57504588882243], [-77.3331311165738, 34.575261564836474], [-77.33314369756773, 34.5753212523107], [-77.33317189891112, 34.57564942672489], [-77.33316751000135, 34.5756808730593], [-77.33315016935822, 34.57605403813171], [-77.33280607335118, 34.57614642610632], [-77.3324473795633, 34.57624706450142], [-77.33236983917709, 34.576265448088016], [-77.33201791196547, 34.57630786227827], [-77.3316568278629, 34.57635806554416], [-77.33122963457735, 34.576601281574284], [-77.33067163162907, 34.576888669710854], [-77.33049553864718, 34.57697243375881], [-77.33044121526216, 34.57705251385623], [-77.3300035712738, 34.57783375215637], [-77.32986877231674, 34.57808638167019], [-77.32965160789625, 34.578857588227436], [-77.3293100130335, 34.57963156657289], [-77.32965065689152, 34.57995005063309], [-77.3311054412649, 34.57950469271661], [-77.33122713401517, 34.579534663875194], [-77.3314240085796, 34.579539892229164], [-77.33201528939318, 34.57941825004448], [-77.3325695542606, 34.579415025076884], [-77.3328033031547, 34.579469120508], [-77.33298686944237, 34.57930077875743], [-77.33359158031611, 34.57920054811701], [-77.3336881082467, 34.579106277923394], [-77.33424025434289, 34.57907327785901], [-77.33437969731783, 34.57912233004411], [-77.33456395203531, 34.57907494538142], [-77.33516787702084, 34.57896395535185], [-77.33528618632471, 34.578900061688515], [-77.3357746758719, 34.578897768915105], [-77.33595591034319, 34.57898556421546], [-77.33651438733108, 34.57919799240565], [-77.33674374499364, 34.57926015024081], [-77.33683931609106, 34.57929545177045], [-77.33699160533217, 34.579376560499874], [-77.33753147945691, 34.57967029399769], [-77.33792772144328, 34.57966413570021], [-77.33872932511164, 34.5799758087866], [-77.33894144414634, 34.580123950929355], [-77.3394443250751, 34.580236271042516], [-77.3406836293608, 34.579769531426194], [-77.34133412439886, 34.58059790594326], [-77.34278786641174, 34.581090378439406], [-77.34350777125866, 34.58133914683459], [-77.34383467981102, 34.58144498132786], [-77.34453611162122, 34.5815947872729], [-77.34698647991203, 34.58217255669122], [-77.34856272602073, 34.58195793921488], [-77.35013857911903, 34.58249959903703], [-77.35254102991733, 34.58227567005416], [-77.35329097202978, 34.58235841753792], [-77.35354534960656, 34.582664969984734], [-77.35625554388753, 34.58234694182521], [-77.35644327434476, 34.582353808236086], [-77.3565844624096, 34.58234975491979], [-77.35801951797585, 34.58217317146508], [-77.35817076861805, 34.582110626671955], [-77.35880766047265, 34.58203716054952], [-77.35902711865893, 34.58191390478351], [-77.35935728212914, 34.581845742941276], [-77.35959579826104, 34.58190483787346], [-77.35988430094301, 34.581716154686504], [-77.36036165803783, 34.581958181634704], [-77.36010609502311, 34.582545137317], [-77.3602853223899, 34.58292390318464], [-77.36031013359514, 34.58366380984778], [-77.36042465466399, 34.584451117438746], [-77.36042957695797, 34.58449572453774], [-77.36042944515007, 34.58454627099308], [-77.36058158837398, 34.58510819807757], [-77.36076514846573, 34.585296523230355], [-77.360925608254, 34.58553690091388], [-77.36117002893684, 34.58580132752605], [-77.3616677299409, 34.58632830084532], [-77.36195775785038, 34.58658734381873], [-77.36217005636558, 34.586792484921695], [-77.36254384717834, 34.58695614176284], [-77.36274564372667, 34.587070331047315], [-77.36280259196603, 34.58712597364886], [-77.36282695631611, 34.58745921887646], [-77.362856811661, 34.58754272185868], [-77.36274535027572, 34.587697457960175], [-77.36265861256929, 34.58766472278735], [-77.36235125890295, 34.58776112075337], [-77.36207525075, 34.58778244167135], [-77.36195717588193, 34.58780590461118], [-77.36177315344256, 34.58789694803589], [-77.36145730132542, 34.58805488733763], [-77.36116877625379, 34.588372768018736], [-77.36107050163174, 34.58854320597419], [-77.36091138375852, 34.588671900292155], [-77.36038028489395, 34.589103009908314], [-77.36004033493273, 34.58928024015532], [-77.35959189513376, 34.589604828848216], [-77.35849224802463, 34.59020448025279], [-77.35801515708066, 34.59047297056068], [-77.3577947500014, 34.59058132437188], [-77.35756177051844, 34.591340197585744], [-77.35825929822069, 34.59245005680321], [-77.35958940875922, 34.594554315145004], [-77.3601512451265, 34.59496868007238], [-77.36089923133869, 34.59546649560461], [-77.36095825007516, 34.59693385209893], [-77.36209467995647, 34.59869084495411], [-77.36152324277612, 34.600083396218736], [-77.36144335865207, 34.60078504315065], [-77.36185034045022, 34.602122446713025], [-77.36140705627903, 34.603619905016785], [-77.3612910562019, 34.60390117370442], [-77.3612823523165, 34.60403287329812], [-77.36165142829995, 34.60554751463369], [-77.36195327824528, 34.606347975192875], [-77.36195741842661, 34.6063622470461], [-77.36198074456017, 34.607198327140324], [-77.36224472840739, 34.60768963848828], [-77.36242989619632, 34.6079827851455], [-77.36255584809649, 34.60815862106357], [-77.36255798918378, 34.60862202240864], [-77.3625113165805, 34.60882017329509], [-77.3624297268909, 34.60916123760836], [-77.36240580753375, 34.60925991492563], [-77.36236898341481, 34.609295088119794], [-77.3623412428881, 34.60930852765538], [-77.36227722623796, 34.60934735591934], [-77.36194702129181, 34.60943431174158], [-77.36182567393713, 34.60963737036185], [-77.36171466341611, 34.60978395031796], [-77.36146473023535, 34.61014991689103], [-77.36137621910878, 34.61044696233257], [-77.3613484779381, 34.61068576344536], [-77.36136340941106, 34.61090485591072], [-77.36140037902635, 34.611266157034066], [-77.3616901817787, 34.611485688164045], [-77.3618352719079, 34.61158409896303], [-77.36194580610503, 34.61207054740002], [-77.36215580311656, 34.612041610179574], [-77.36200231083367, 34.612289869997596], [-77.36199394158929, 34.61234305448712], [-77.36194564670237, 34.612417069676326], [-77.36159445692306, 34.612773126931415], [-77.36156730788296, 34.612794283168576], [-77.36152444540403, 34.61281211114449], [-77.36115703117763, 34.61296888221671], [-77.36085504305584, 34.61278034750925], [-77.3607629607261, 34.61273519826214], [-77.36038761285697, 34.61252226932877], [-77.36037650288942, 34.612515664113744], [-77.36036889000066, 34.612506696511396], [-77.36033457633417, 34.61249293737475], [-77.359907027295, 34.61223991956358], [-77.3597777257985, 34.612185490304476], [-77.35958078811274, 34.611981794151546], [-77.35947396150723, 34.61191974546304], [-77.35945192983691, 34.61180782469337], [-77.35941841811794, 34.61163758283614], [-77.35950033220874, 34.61103890711698], [-77.35952673369452, 34.61094795461372], [-77.35955924070215, 34.61091950892669], [-77.35958131965226, 34.610894483307355], [-77.35984020408905, 34.610624143934444], [-77.35997569034232, 34.61048349401007], [-77.35998819011827, 34.610470447078654], [-77.36002095757358, 34.61040355966299], [-77.36022308449242, 34.60999863136192], [-77.35958210457227, 34.60929197379722], [-77.35955447055719, 34.609275526314384], [-77.35938124056108, 34.60927068354681], [-77.35879383332187, 34.60917832531356], [-77.35830613142033, 34.609101640918276], [-77.35800563023643, 34.608934819225965], [-77.35711395142428, 34.60885920951605], [-77.35642923460482, 34.608453214118576], [-77.35441790410398, 34.6087546537011], [-77.3532761719194, 34.60806125995098], [-77.352128589804, 34.609078775397876], [-77.35198897124211, 34.61033430339626], [-77.3518290328027, 34.61191355671498], [-77.35163998025223, 34.61378089132788], [-77.35148838735546, 34.61527802807508], [-77.35146548142953, 34.61550419362433], [-77.35145099348905, 34.61576910853694], [-77.35169478255654, 34.61620532202209], [-77.35236136862888, 34.61707351735101], [-77.35169393078868, 34.61767470741508], [-77.35096130334387, 34.61818439226495], [-77.35011661345598, 34.618505650773365], [-77.34928487461204, 34.61841181789885], [-77.34853993939761, 34.618238283173895], [-77.34716197180629, 34.617821319180855], [-77.34703339683371, 34.61776442987935], [-77.34696343931607, 34.61771227722667], [-77.34669160951438, 34.617596116223396], [-77.34410362726584, 34.616359821845165], [-77.34305001992863, 34.61641522122669], [-77.34197510140555, 34.615860481315025], [-77.34137675473657, 34.61553064033227], [-77.34107863168967, 34.61572709471085], [-77.33973642835207, 34.61643875196943], [-77.33902048826606, 34.61654634437637], [-77.33806286143613, 34.61710716061557], [-77.3366378248688, 34.617430792915876], [-77.33614129416648, 34.61841924011192], [-77.33417151436184, 34.617899046865176], [-77.3322979671166, 34.6193386229363], [-77.331915011393, 34.61941237722796], [-77.33153462550207, 34.61945499517195], [-77.33102194867692, 34.6200381755567], [-77.32812672276319, 34.62161046699587], [-77.32772725757437, 34.62406036008521], [-77.32407405189358, 34.62774307782328], [-77.32492442677686, 34.62929713841628], [-77.3234868843035, 34.628448583268806], [-77.32284716687465, 34.62886483867736], [-77.31920450834502, 34.62929325094356], [-77.3187562307362, 34.630395248781184], [-77.31778324688052, 34.63063527386901], [-77.31813030450984, 34.63193392956746], [-77.31873745489807, 34.63240779952978], [-77.31931058872303, 34.633158107738474], [-77.31943196322123, 34.633443438009536], [-77.31946580454863, 34.63354189834212], [-77.31937769137905, 34.63349252623601], [-77.31918932924418, 34.633808640420995], [-77.31888788914279, 34.63424202407614], [-77.31862788257143, 34.63355366684693], [-77.31829739941112, 34.633278603094766], [-77.31804320084467, 34.63322284798485], [-77.31803508310253, 34.633212942337565], [-77.31801215829373, 34.633185135940124], [-77.31788025241377, 34.63295656435544], [-77.3177222844324, 34.632833833883666], [-77.31762000524719, 34.63270897319394], [-77.31752759636386, 34.632506915539885], [-77.31738122210686, 34.63226202189345], [-77.3177030192154, 34.63199250257191], [-77.31704378269538, 34.63143231942526], [-77.316986696654, 34.63128230092053], [-77.31651497153122, 34.630785336510705], [-77.31697258428446, 34.63040468229546], [-77.31618486045832, 34.630341910694774], [-77.31614248674619, 34.63043735742441], [-77.31514020345014, 34.63034629603296], [-77.31491257779354, 34.63038201955799], [-77.31476871945011, 34.63048884513249], [-77.31460638670026, 34.630451270820316], [-77.31453912194786, 34.63038824879722], [-77.31449218893337, 34.63023049700965], [-77.31459226698448, 34.62988696737623], [-77.31441247908151, 34.629491437533915], [-77.31414918332031, 34.62910372419625], [-77.31406078486702, 34.62903994342804], [-77.31399245818145, 34.628986300502106], [-77.31382011427175, 34.62872683889509], [-77.31390384121562, 34.628544489169784], [-77.31401096574388, 34.6284459801078], [-77.31410563847845, 34.6282657232974], [-77.31440638289203, 34.627858444178955], [-77.31480050019626, 34.627848701265734], [-77.31510353132317, 34.62728498568355], [-77.31524949306944, 34.62567896962853], [-77.31541838263185, 34.62575614860955], [-77.31541600748164, 34.62555421667753], [-77.31536025806042, 34.62532119906748], [-77.31513185723324, 34.62548844858514], [-77.3126474083235, 34.62547163442682], [-77.31065225588027, 34.62545809279456], [-77.31011737883229, 34.625623549483656], [-77.30992246235365, 34.62596089377423], [-77.3092610656752, 34.62639767995822], [-77.30809387730862, 34.62692227877977], [-77.30786347260913, 34.627152707444715], [-77.30649356392644, 34.62809695347238], [-77.30460494085553, 34.63041135905976], [-77.30413359912092, 34.631231994527575], [-77.30398681183385, 34.63336055490123], [-77.29993938805053, 34.63747246744491], [-77.29973518002012, 34.63770055609329], [-77.29957697218266, 34.63765502941717], [-77.29431294668747, 34.63620026900248], [-77.2918198041534, 34.63517862495332], [-77.29153415568801, 34.63511204306059], [-77.29128427349828, 34.635246085924926], [-77.28926934869898, 34.6365893620539], [-77.28794873304857, 34.6374697378523], [-77.28710273384158, 34.638557575533795], [-77.28632544396045, 34.63966518194043], [-77.28635346746952, 34.64132007237883], [-77.28674654552304, 34.64298333680633], [-77.2874650504568, 34.64378844659495], [-77.29039246605585, 34.64586027733081], [-77.29088779850788, 34.64619570907511], [-77.2912168589723, 34.64631129187835], [-77.29145317257723, 34.64608609458194], [-77.29288366923578, 34.64551938534391], [-77.29348216798947, 34.645311650762316], [-77.29356847781793, 34.645265974585136], [-77.2953536352603, 34.64438997535797], [-77.29593458116204, 34.644293160073275], [-77.2965893945444, 34.64409728278252], [-77.30039713668461, 34.64376192019141], [-77.30091320205757, 34.64357754855805], [-77.30143709487304, 34.64368679262679], [-77.30245385237589, 34.644209276499026], [-77.3054331384837, 34.64496047860503], [-77.30635094069868, 34.64515175682862], [-77.30803687264182, 34.64555918986087], [-77.30904727272721, 34.64582605217663], [-77.3095937747521, 34.645908702387246], [-77.31198531125818, 34.647704844529315], [-77.31324664217021, 34.64786143041875], [-77.31401327372093, 34.64937757782228], [-77.31512247579502, 34.650575460513565], [-77.31597379475252, 34.65164581252418], [-77.316374239411, 34.6524299200691], [-77.3178017347013, 34.65467991441314], [-77.31838436574068, 34.65553032081188], [-77.31853484963762, 34.65575920377682], [-77.31893027119943, 34.65678598578589], [-77.31975935968123, 34.658717752782046], [-77.31973626105207, 34.6608011192994], [-77.3197362992786, 34.66182576914317], [-77.31954056064102, 34.66212362697769], [-77.32009214345268, 34.66257383725024], [-77.32061232583189, 34.66264374441823], [-77.3228905099585, 34.663752627698734], [-77.32372187385364, 34.66385887028893], [-77.32544334737938, 34.664690376302566], [-77.32559911866926, 34.66473558577433], [-77.32566305978175, 34.664802444839275], [-77.32735828267346, 34.665845915938476], [-77.32849229304631, 34.66613398524972], [-77.32955632470615, 34.66608795626333], [-77.3303196224049, 34.66636784552975], [-77.33119417721306, 34.666831213972735], [-77.33149163869719, 34.66684984521307], [-77.33248852441244, 34.66710017506164], [-77.33288816292233, 34.668691068968855], [-77.33301849777357, 34.66908209594567], [-77.33404912325607, 34.67078508491513], [-77.33436122227342, 34.671201863634955], [-77.33455638917764, 34.672472793590984], [-77.33555853161343, 34.6744770144458], [-77.33636912692467, 34.675962970108536], [-77.33737289467113, 34.677776315917185], [-77.33755983483279, 34.67810148319974], [-77.33759476673444, 34.67817299369472], [-77.3376564402809, 34.67828325266418], [-77.33753916714691, 34.680053815483355], [-77.33774228803219, 34.68065747071714], [-77.33775463491577, 34.68099900773785], [-77.3378620127858, 34.68112049142817], [-77.33766945157066, 34.681498069562274], [-77.33758422053312, 34.681728381767385], [-77.33755452720602, 34.68176771794896], [-77.3375073099093, 34.6817875602192], [-77.33719036264347, 34.68194799871279], [-77.33708291598714, 34.68198784342338], [-77.33660550792808, 34.68208729866639], [-77.33655949408823, 34.68205925919135], [-77.33648841350939, 34.68209897942374], [-77.33600218327189, 34.682214160156676], [-77.33590853079112, 34.68223967744497], [-77.33550233051558, 34.682501218633064], [-77.33519022970692, 34.68265185262832], [-77.33497541666792, 34.682553239330886], [-77.33471404397787, 34.68239085064351], [-77.33468729320875, 34.682380789924146], [-77.33467214887997, 34.68237487794974], [-77.33411260895333, 34.68242881551431], [-77.33407625144773, 34.682365737582835], [-77.33366623985273, 34.6821495675056], [-77.33291966869191, 34.682226262784084], [-77.33251144860048, 34.68208420051933], [-77.33192582613962, 34.68179851043139], [-77.3319074019254, 34.681590136272845], [-77.33164540942175, 34.681836965617684], [-77.33094565208313, 34.68229020670388], [-77.33082562373812, 34.682436756500984], [-77.33052972509189, 34.682559718439016], [-77.33044186623309, 34.68251387209155], [-77.32988467702968, 34.6826260023153], [-77.32975454337068, 34.6826287238972], [-77.32931571271335, 34.68264379904907], [-77.32921452682824, 34.682617846398784], [-77.32917721427162, 34.68228464383033], [-77.32909815785531, 34.682186258355806], [-77.32923366367228, 34.68145298734339], [-77.3287920335633, 34.68125348767222], [-77.32735448833256, 34.68077972008825], [-77.32510011942497, 34.681480020432005], [-77.32434324976163, 34.681541215265234], [-77.32202179513935, 34.683847935582435], [-77.32169129361147, 34.68417634044451], [-77.32390974661749, 34.68554846297466], [-77.32561692239614, 34.68558773876575], [-77.32555921060907, 34.68695647818781], [-77.32553846884981, 34.68744843000663], [-77.32553424898485, 34.687548544295886], [-77.32552787415423, 34.68769981842059], [-77.32548348096003, 34.69064351087824], [-77.3254380892862, 34.691460661204076], [-77.32540614533595, 34.69227942146412], [-77.32539030630485, 34.692685516377665], [-77.32554442761192, 34.693395560399246], [-77.32595503130361, 34.69343364538126], [-77.3260276611768, 34.693582553722045], [-77.32649942355027, 34.69423939012593], [-77.32666639821727, 34.69446290256573], [-77.32663514739522, 34.694708154627335], [-77.32686112314695, 34.694834241179755], [-77.32718213144355, 34.69463317334639], [-77.32729679464302, 34.694376435318], [-77.32739428245884, 34.69411672123299], [-77.3285305802689, 34.69320980755011], [-77.32874223899799, 34.69310461419059], [-77.3298238355944, 34.69287957458762], [-77.3300213156761, 34.69296213191045], [-77.33059600378076, 34.69301667605968], [-77.33053534542073, 34.69319871345533], [-77.33090118647091, 34.693292204573424], [-77.3310802025847, 34.69343244884289], [-77.33112574392473, 34.693605130957124], [-77.3312651989491, 34.69368426333011], [-77.33135265424232, 34.69379860861425], [-77.33145497954114, 34.69393239621147], [-77.33147448222557, 34.69404468305145], [-77.3314483646335, 34.6942277098598], [-77.33144719952375, 34.69429210981002], [-77.3313895469106, 34.69437685291837], [-77.33129330962495, 34.69455689623527], [-77.33105363932123, 34.69482749739454], [-77.33082044474344, 34.69494769537323], [-77.33052283334632, 34.69504355795285], [-77.33037870531173, 34.695089982515306], [-77.32994945484211, 34.695228525699655], [-77.32976463929981, 34.69528822132247], [-77.32960382212072, 34.69535635764853], [-77.32905944079818, 34.69550960014974], [-77.32874092358108, 34.695657205084814], [-77.32835833071238, 34.69593403576016], [-77.3281147999443, 34.6963788017618], [-77.3280578532106, 34.696462598743395], [-77.32801033273918, 34.69658205396533], [-77.32785245762655, 34.696784583947135], [-77.32768513486414, 34.696832186101304], [-77.32747851654199, 34.69682935236039], [-77.32696310020667, 34.696612672280786], [-77.32696028207582, 34.69660149788913], [-77.3269445183426, 34.69660687529078], [-77.32693256861789, 34.69660720815539], [-77.32635272213354, 34.696583236752275], [-77.32609692819099, 34.69647733394748], [-77.32576291572079, 34.69655275120089], [-77.3255157841488, 34.69662758347206], [-77.32539178538687, 34.696625584542936], [-77.32514264780235, 34.69662705038775], [-77.32507793003707, 34.69662739150689], [-77.32489361722503, 34.69661463889918], [-77.32467495990363, 34.69652030893319], [-77.32458837776576, 34.69647431837367], [-77.32453471106228, 34.69645816223247], [-77.32427056449089, 34.69630564277343], [-77.32406097208828, 34.69622918226361], [-77.32384597089703, 34.6960651915691], [-77.3237259018799, 34.69593635751358], [-77.32324372814364, 34.69566036292618], [-77.32312724835622, 34.69560859844691], [-77.3230499062415, 34.69558846604083], [-77.32289966437716, 34.69558419611613], [-77.32218908953104, 34.69554195042406], [-77.3218705057761, 34.69552678077007], [-77.32145129943625, 34.69541863553714], [-77.32135854846922, 34.69539253158619], [-77.32132143168636, 34.69535620606863], [-77.32116161908824, 34.69531955541987], [-77.32074576073049, 34.695277109302125], [-77.32037970940377, 34.69535715740254], [-77.31977476243793, 34.69536639463344], [-77.3194897121403, 34.69547902296075], [-77.3192571673401, 34.69543229170858], [-77.31864817855626, 34.69564409351754], [-77.318265022713, 34.69557305686878], [-77.31804355112885, 34.69557745362566], [-77.31796003035626, 34.69559250424114], [-77.31785842466236, 34.695582059185085], [-77.31766973967008, 34.69556139250093], [-77.31721553156135, 34.69551164135416], [-77.31716336463222, 34.69546618684221], [-77.31710635882423, 34.695440020528636], [-77.3169276518762, 34.69539492318509], [-77.31600068339824, 34.69512477564588], [-77.31544833451146, 34.695359699724406], [-77.31532323154264, 34.69539565041057], [-77.31472598788734, 34.69585267840649], [-77.31467360764545, 34.69594951023429], [-77.31462277123217, 34.69611049749605], [-77.3144844038545, 34.69622137312345], [-77.31429865510086, 34.69615489314745], [-77.3143171139458, 34.696078656035624], [-77.31398271037692, 34.695954488245924], [-77.31396545099373, 34.69594722898357], [-77.31391724472583, 34.69559801581492], [-77.31346692273561, 34.69560286953724], [-77.31331175519776, 34.695559026703926], [-77.31313603075822, 34.69541061653761], [-77.31260177252668, 34.695388620800216], [-77.31234792192348, 34.69533343875255], [-77.31223114883294, 34.69531830885649], [-77.31175843824391, 34.695301811354724], [-77.31172988614611, 34.69528831803756], [-77.3115840859291, 34.69502774964403], [-77.3112814322162, 34.69488349195129], [-77.31053323035793, 34.694477477679676], [-77.31036116683893, 34.69439187974211], [-77.31025229953455, 34.69430515138843], [-77.30980513611101, 34.69418462468292], [-77.30907625873807, 34.694231861802834], [-77.30859401395004, 34.69417447250195], [-77.30820452777401, 34.69404168307594], [-77.30797259751927, 34.69390976889492], [-77.3077642542493, 34.69388192303005], [-77.307366218829, 34.69354234056224], [-77.30695763072166, 34.693282811847205], [-77.30541568144467, 34.69420346171764], [-77.30498892859022, 34.69502017387123], [-77.30491232199516, 34.69542903318041], [-77.30423531137538, 34.69631447215217], [-77.30326746415614, 34.69773497927338], [-77.30280822454276, 34.698194177722065], [-77.3025132558623, 34.69849959948204], [-77.30295643566744, 34.69880384383987], [-77.30354957501768, 34.69885195830292], [-77.30514212328842, 34.699522838803226], [-77.30618147086494, 34.69918168047362], [-77.30742712355452, 34.69977636871882], [-77.3074588506988, 34.699791515675734], [-77.3081151943587, 34.7008472804056], [-77.30940261431947, 34.70134222770469], [-77.30942198677214, 34.7014187712345], [-77.30947895891168, 34.70144486414807], [-77.31002638351144, 34.702530251914084], [-77.31105090979463, 34.703908824591046], [-77.31200351391671, 34.70416254959312], [-77.3155736557636, 34.704509072786266], [-77.31563933662308, 34.704519531397644], [-77.31569317356097, 34.70451630546526], [-77.31575448769162, 34.704484303618635], [-77.31900578757563, 34.70234636145496], [-77.32033547464975, 34.70190726826165], [-77.32107063583317, 34.70162377025328], [-77.32127833220585, 34.70168165553327], [-77.32133236752027, 34.7017180721867], [-77.32139249182563, 34.7017624385901], [-77.3219235660375, 34.70283975920104], [-77.32288541459442, 34.70350729734886], [-77.32376476163967, 34.70457650788913], [-77.32528688985364, 34.70436849442074], [-77.32729941375696, 34.705011039150776], [-77.32786056742168, 34.70509151784837], [-77.32983888202763, 34.705186536585146], [-77.33138462763853, 34.705021930507115], [-77.33337263710082, 34.70487179064575], [-77.3348245066199, 34.704512518843075], [-77.33743267028619, 34.703364501918934], [-77.33758605885895, 34.703250466689454], [-77.33778673833984, 34.70325046572369], [-77.33897777783167, 34.703250455149494], [-77.33998084074899, 34.70325044734914], [-77.34018764612271, 34.70308449234792], [-77.34011152850759, 34.702800620655154], [-77.33991942449452, 34.7016098105552], [-77.34025453793491, 34.70112581336804], [-77.34036105812243, 34.70085392036917], [-77.34045651897841, 34.70040830987831], [-77.34043971267819, 34.70012565914133], [-77.34039762918675, 34.70005946266468], [-77.34041427492697, 34.6996978675822], [-77.34041643988697, 34.699650837030205], [-77.3404168736196, 34.699641416836386], [-77.34041752454299, 34.69962727772916], [-77.34043301742304, 34.69939551410513], [-77.34055176890617, 34.69922459178745], [-77.34062822052675, 34.69917572953516], [-77.34102816500729, 34.699180210060135], [-77.34115077787015, 34.699223396085934], [-77.34147485567405, 34.69928800660797], [-77.34182033602727, 34.699359063525364], [-77.34225664374955, 34.69953822030409], [-77.34341775519863, 34.69891836983886], [-77.3436045111521, 34.69901994257451], [-77.34450906849369, 34.69965538677156], [-77.34497203750385, 34.699835124530445], [-77.34483673105355, 34.699403281542814], [-77.34467576174175, 34.69945394264792], [-77.34389519385695, 34.69867679715066], [-77.34403953037604, 34.698439980881794], [-77.34406044807756, 34.698166743410226], [-77.34434908706504, 34.698006209412064], [-77.34494950947872, 34.697739831641854], [-77.34520158230868, 34.69764361568744], [-77.34539177873988, 34.69765396063361], [-77.34654809214885, 34.697129801766295], [-77.3473895240923, 34.696871770669524], [-77.34783496636464, 34.696821278999565], [-77.34806715326616, 34.69691766030982], [-77.34812886498703, 34.69712101466364], [-77.34837116138658, 34.69774199434168], [-77.34830661967531, 34.69807137516638], [-77.34745780823262, 34.698963223170054], [-77.34685337053646, 34.70022033746573], [-77.35023845079081, 34.70091341407341], [-77.35146967912502, 34.70048864883152], [-77.3522913877707, 34.69947387580212], [-77.35480946968498, 34.69834288409773], [-77.35640538491187, 34.696167922244], [-77.3584258102852, 34.696830038097666], [-77.35863725177296, 34.69672804139093], [-77.35880025157739, 34.69677418693541], [-77.3608594081985, 34.69732160035193], [-77.36162152312986, 34.697524186982456], [-77.36344518385684, 34.697942034828515], [-77.36474978058192, 34.698270228752506], [-77.36533220632862, 34.69841082943673], [-77.3663724787466, 34.698379420178085], [-77.36664845173225, 34.69838573685382], [-77.36686176500389, 34.69844740121955], [-77.36762760829629, 34.69875217648814], [-77.36798974755652, 34.69893024832626], [-77.36819924924939, 34.69923838341177], [-77.36909665297529, 34.69965518933638], [-77.3697314406477, 34.69975379099773], [-77.36978959668994, 34.69991028910151], [-77.3697610543314, 34.69999853280582], [-77.36971991021576, 34.70006934369867], [-77.36964024457228, 34.70081376818327], [-77.36960580740302, 34.700994654320766], [-77.3695651021822, 34.701208460580844], [-77.36946434210438, 34.70173768301366], [-77.36945850937352, 34.701989681633606], [-77.36934706927005, 34.70261646028384], [-77.36949362051028, 34.70295964068306], [-77.3697942574631, 34.70366365623674], [-77.37012775409117, 34.70359254805493], [-77.37008814256838, 34.70385271888049], [-77.3700873752686, 34.704223787602444], [-77.37017809380784, 34.70481513881034], [-77.37056518799983, 34.70513311329034], [-77.37219475637305, 34.705155507580926], [-77.3724377348966, 34.70645414230361], [-77.37205888199762, 34.70823833114198], [-77.37201180956566, 34.70845047500018], [-77.37201240213084, 34.708462180037984], [-77.37201594237685, 34.708484998953715], [-77.37082265009933, 34.71251990107143], [-77.37086893479858, 34.712518481508724], [-77.37086185367482, 34.712567571502575], [-77.37385563849568, 34.71600711927575], [-77.37368416423308, 34.71662564223599], [-77.37331253192193, 34.7180313543601], [-77.37225555963732, 34.71890719412957], [-77.37142940860312, 34.7186613864978], [-77.37112481232916, 34.71859552966829], [-77.37001514954216, 34.71848451754688], [-77.36916996741076, 34.7181942686584], [-77.36718464744807, 34.718873444200355], [-77.3666319407815, 34.71903052870038], [-77.36649743461929, 34.719150502019964], [-77.3653067838973, 34.72010621700636], [-77.36512735860009, 34.72025023791514], [-77.36470235755625, 34.720384171944254], [-77.36377981912982, 34.72026175117675], [-77.36199109912451, 34.720024360964906], [-77.36146707587153, 34.719978076066944], [-77.36018125966736, 34.720709255165936], [-77.35869637581638, 34.72127169236099], [-77.3567785674567, 34.720511587184674], [-77.35655384058104, 34.720401710248886], [-77.35650165321927, 34.72038673954385], [-77.35419469580589, 34.720277678296206], [-77.34986920683238, 34.72320067894698], [-77.35004342674642, 34.724755537557456], [-77.34799671883565, 34.725123635541195], [-77.34640050449136, 34.72757571130669], [-77.34662676772592, 34.72798347096168], [-77.3469806683185, 34.72862120182655], [-77.34784246154011, 34.73020182046101], [-77.34889112764463, 34.73029074353806], [-77.34934609301507, 34.73062199336924], [-77.34992466437676, 34.73085602330948], [-77.34999656773878, 34.73091002625138], [-77.35007681737629, 34.730970296766216], [-77.3502015401539, 34.73154073763205], [-77.35053959170502, 34.731881548640544], [-77.35027727974295, 34.73262199076846], [-77.35039664620956, 34.73287592788177], [-77.35034307425667, 34.733008644733346], [-77.35047849813466, 34.733072764945966], [-77.3506664928754, 34.7338136560891], [-77.35044661954744, 34.73404856421409], [-77.35035828514819, 34.73434333454172], [-77.35028535675207, 34.73454394804113], [-77.35026672143105, 34.734599590649566], [-77.35023145103465, 34.73467128232434], [-77.35013452684551, 34.73486142180809], [-77.35006482718362, 34.734986821254964], [-77.34986295645896, 34.735191751891165], [-77.34972500596515, 34.73532400177817], [-77.34958892199069, 34.7354236740712], [-77.34934611513957, 34.735626566802345], [-77.3490581465113, 34.73590053926738], [-77.34885877652819, 34.73572710844444], [-77.34856048181697, 34.735552034222366], [-77.34797736080844, 34.735690358362774], [-77.34792447394585, 34.73567973759819], [-77.34790297386034, 34.7356738937981], [-77.34739401806186, 34.73544411631754], [-77.34703865214195, 34.735550304953], [-77.34649300122825, 34.73536108569854], [-77.34564050588929, 34.735048932487956], [-77.34518082714025, 34.734816165353415], [-77.34417889727334, 34.73487777089874], [-77.34215944115343, 34.73595554393464], [-77.34286282376546, 34.73718519345413], [-77.34463426532169, 34.73669722505898], [-77.34486780527645, 34.737219924719845], [-77.34538230021144, 34.73746298343555], [-77.34554973529814, 34.737669076171215], [-77.34563912237364, 34.73820342260852], [-77.34583728486614, 34.73837531991727], [-77.34608657731948, 34.73864764963562], [-77.3464174168628, 34.73878311021593], [-77.34642222479714, 34.73878891529524], [-77.34654798772856, 34.73908114388907], [-77.34663319728102, 34.739093494551646], [-77.34677019049116, 34.73922208959179], [-77.34678359070794, 34.739294124213075], [-77.34684404629849, 34.739398503426], [-77.34692034023968, 34.739583132282334], [-77.3472410343404, 34.74009358534088], [-77.34725517323763, 34.74011398052973], [-77.34728516433994, 34.74012619308859], [-77.3472763723752, 34.74017552826829], [-77.34738174616494, 34.74060032067392], [-77.34752236289316, 34.740696854781376], [-77.34757546864759, 34.74100399065683], [-77.34757585521692, 34.74104989961955], [-77.34757571510951, 34.74106108719222], [-77.34757431971691, 34.74107779175343], [-77.34756167979363, 34.74130670224642], [-77.34752154825256, 34.7414858517985], [-77.34750944422714, 34.7415575582577], [-77.34749108724702, 34.74164233041253], [-77.34738522258162, 34.742061980101106], [-77.34736250404147, 34.74216669068953], [-77.34728609438423, 34.7423192697978], [-77.34730115546984, 34.74243147877835], [-77.34729542075529, 34.74244813329101], [-77.34723258976841, 34.74257029977933], [-77.34721309210809, 34.74267259813175], [-77.34705216794829, 34.743029396934226], [-77.34701528559714, 34.74308749143076], [-77.34685853432435, 34.743471505131104], [-77.34679510146347, 34.74357883869847], [-77.3467914694246, 34.74362407484059], [-77.34679577757981, 34.743687492341294], [-77.34678273265153, 34.74409415264728], [-77.3467481691517, 34.74444574026862], [-77.34679486075183, 34.74457986694422], [-77.34672684541286, 34.74479493809874], [-77.34648310715016, 34.74476358035392], [-77.34628202445968, 34.74480422822242], [-77.34581851894407, 34.7449893773367], [-77.34554973634701, 34.74497320620006], [-77.34552625328756, 34.744964516110876], [-77.3453362877037, 34.74477996044685], [-77.34531779084381, 34.74475740071286], [-77.34529503621316, 34.74472956259841], [-77.34491085504864, 34.74435094220068], [-77.34494519196039, 34.74425558416149], [-77.34487313132583, 34.74412019151129], [-77.34448475717888, 34.74382131343306], [-77.34335758919232, 34.7435892426043], [-77.34371043588139, 34.74284009030234], [-77.34394909745475, 34.74233385565749], [-77.34441834623355, 34.741494232437724], [-77.34442053930326, 34.74071730337265], [-77.34366695332074, 34.74002615945754], [-77.3435207874869, 34.73983256399781], [-77.34314847300489, 34.73971891535672], [-77.34149658440451, 34.73925045587108], [-77.3395411895883, 34.739739598560575], [-77.33898220441714, 34.73965845423883], [-77.33814060124003, 34.74040570701348], [-77.33819287878356, 34.740776409937446], [-77.33834724127836, 34.741843071365174], [-77.33839759503866, 34.74219562005735], [-77.33843725481942, 34.74231453323401], [-77.33952822669019, 34.74290282177094], [-77.34031951596668, 34.743300556591876], [-77.34075793431478, 34.74353388020096], [-77.34142203972854, 34.74385471044765], [-77.34201715486316, 34.74414221670765], [-77.34241496862612, 34.74433439795746], [-77.34260121544482, 34.74526976437371], [-77.34332996355803, 34.74530811775199], [-77.34344499741232, 34.74552676390407], [-77.34387272374464, 34.745868676017], [-77.34392710406797, 34.745948013801254], [-77.3442184593753, 34.74637308668187], [-77.34422620927951, 34.74638519507885], [-77.34423362076086, 34.74639334727211], [-77.34471153020317, 34.74673758645234], [-77.34478253672864, 34.746745729012545], [-77.34513325116772, 34.74675732150281], [-77.34529476069865, 34.746791832299046], [-77.3453510778967, 34.74676751488102], [-77.34569348832466, 34.7468335540434], [-77.3458751115921, 34.746855987358245], [-77.34601895059913, 34.74687951246432], [-77.34612520165857, 34.746895738457916], [-77.34616040654339, 34.746904860645536], [-77.34622939595384, 34.746907370632236], [-77.34645195378181, 34.7469322166589], [-77.34657602104281, 34.746943227305415], [-77.34698078267812, 34.74699125235793], [-77.34702721432419, 34.74701389051459], [-77.34705373501232, 34.74699939630245], [-77.34744488930531, 34.74706340552641], [-77.34759639763608, 34.74711648036745], [-77.34765165233921, 34.74714290379329], [-77.34773829638138, 34.74723194899376], [-77.34785505605134, 34.747358686792765], [-77.3477118156857, 34.7476464994862], [-77.34778493854424, 34.74785568435317], [-77.34779009682163, 34.74829002819657], [-77.34779408650296, 34.74837160542313], [-77.34780885029734, 34.748446827472804], [-77.34784741468778, 34.748821871766395], [-77.34796607195042, 34.74902771659265], [-77.34820541899835, 34.749143537960556], [-77.34829527649457, 34.74924780589832], [-77.34848447327116, 34.74941742647314], [-77.3486732482178, 34.74959501168555], [-77.34870919910998, 34.74963879378844], [-77.34870941222677, 34.74967836620748], [-77.34871920041938, 34.74975137761252], [-77.34866933100153, 34.74980571022797], [-77.34860463418276, 34.74983116277929], [-77.34850798442406, 34.74982784689057], [-77.34848733998264, 34.7498094119453], [-77.34843284832141, 34.74981684274543], [-77.34831723441661, 34.74978950086858], [-77.34813086707521, 34.749757741500055], [-77.34814714776223, 34.749676841392926], [-77.34806961917836, 34.749610914807036], [-77.3479704405269, 34.74972634378227], [-77.34746708365202, 34.749623050263], [-77.34726659684341, 34.74956563129758], [-77.34690191205864, 34.749506595323574], [-77.3468401669359, 34.74949937880572], [-77.34655605071275, 34.74948641041471], [-77.34640967247816, 34.749436249153185], [-77.34623417626166, 34.749464756285086], [-77.3459992847204, 34.7497518373624], [-77.34564002184598, 34.750099447774204], [-77.34561670058159, 34.75019430414745], [-77.345520187088, 34.75060326335473], [-77.34535570973327, 34.75070476746523], [-77.34493960783107, 34.75068290141506], [-77.34480290951507, 34.750671832465905], [-77.34476785722245, 34.75066633281814], [-77.34468135223842, 34.750642248606354], [-77.34416785278727, 34.75066971113737], [-77.3439910425634, 34.750507777206984], [-77.3437776485531, 34.750354902408766], [-77.34372683666255, 34.75012601525536], [-77.34360020500185, 34.7500199690174], [-77.34329166778701, 34.75004937177292], [-77.34316527751531, 34.749997115569165], [-77.34308994015932, 34.74996184919331], [-77.34297671846065, 34.749711056966476], [-77.3426248951667, 34.74979535242545], [-77.34218340281289, 34.74959880422962], [-77.3421270937792, 34.74957603473168], [-77.34210235294569, 34.74953221297482], [-77.34190853761613, 34.749462267467514], [-77.3415697068979, 34.749303845781206], [-77.34149411724033, 34.74927441904541], [-77.3414597543997, 34.74906464762154], [-77.34180264213423, 34.74867627111021], [-77.34145488133844, 34.74778368696827], [-77.34159831324692, 34.74772954361765], [-77.34146797277174, 34.74771786087006], [-77.34144325810969, 34.74767790143552], [-77.34138447012403, 34.747721300826505], [-77.33906065206017, 34.74763169837807], [-77.33840700351817, 34.74763645907498], [-77.33792561642097, 34.74823316944297], [-77.33781403082507, 34.7483877356276], [-77.33802790592304, 34.748706518374895], [-77.33802414824972, 34.74878922839927], [-77.33813107301191, 34.74876893169865], [-77.3385363820047, 34.7491241728774], [-77.33857798892672, 34.749151697831735], [-77.3386057000709, 34.74919687160185], [-77.33904644741914, 34.749541607809924], [-77.33894141623891, 34.74966057387092], [-77.33907745687327, 34.74963470082865], [-77.33918284931801, 34.750010278023865], [-77.33925868525728, 34.75020494459121], [-77.3392578175732, 34.75030534572103], [-77.33926885354404, 34.75048585927747], [-77.33926570423313, 34.750593705983285], [-77.33925694499952, 34.75062374089593], [-77.33906771654631, 34.750757125955694], [-77.33905684888342, 34.75076561955417], [-77.33904237483682, 34.75076542048048], [-77.33903071518598, 34.75076219949721], [-77.33884008470329, 34.75072387887954], [-77.33877312392391, 34.750681680485755], [-77.33869757345845, 34.75063637428924], [-77.33859597833818, 34.75057812165546], [-77.33844428044041, 34.750436969700736], [-77.33828760318036, 34.750291183428494], [-77.33820866398453, 34.750223973915915], [-77.33811107289222, 34.750157234207606], [-77.33770403046002, 34.749823665249956], [-77.337273914566, 34.74965693569874], [-77.33706435452238, 34.749527186822945], [-77.33673296272418, 34.74945715932091], [-77.3366848014069, 34.749424861602186], [-77.33659636847892, 34.749390162199795], [-77.33638053015153, 34.74926465369768], [-77.33620692796768, 34.74920607371794], [-77.33580039173907, 34.74915689356088], [-77.33563132820596, 34.7491254899919], [-77.33552297213258, 34.74913569198252], [-77.33529602638498, 34.74908105833904], [-77.3350801651722, 34.74896085135904], [-77.33485000372147, 34.748864807474334], [-77.33433423371781, 34.74872553246609], [-77.33407150465075, 34.7486750581693], [-77.33397383126581, 34.74864537239702], [-77.33303569011379, 34.74792879042175], [-77.33302358584926, 34.74790416669819], [-77.33299957327611, 34.7478756488108], [-77.33250761426666, 34.747512581739834], [-77.33250615398747, 34.74751244197499], [-77.33249775291254, 34.74750704188668], [-77.33200483932475, 34.747176401254], [-77.33195309831234, 34.747150630304176], [-77.33191382923853, 34.747107819009706], [-77.33151080516124, 34.746702403770385], [-77.33149786620717, 34.74667746179508], [-77.33131597650235, 34.746459756144745], [-77.33113240911891, 34.74624018098551], [-77.33112616407723, 34.74620985600578], [-77.33109283581832, 34.7461926769718], [-77.33097997165099, 34.746161983229776], [-77.33054314351031, 34.74602305345091], [-77.33038086102624, 34.74599458406336], [-77.33000811878858, 34.745802990587606], [-77.3295806940155, 34.745821489371], [-77.32917376017832, 34.74583805494287], [-77.32875399173528, 34.74599590877533], [-77.32830245449642, 34.74634267669603], [-77.32772371123079, 34.74646082516105], [-77.32744968520308, 34.74636134111063], [-77.32719305989104, 34.7466362889118], [-77.32673066417621, 34.746773965185], [-77.32664848786959, 34.74679206853003], [-77.32626816402258, 34.746791522478645], [-77.32614210914707, 34.7467379619134], [-77.3257382578474, 34.74649199127646], [-77.32574273836403, 34.74640720270962], [-77.32553423118021, 34.74603257753171], [-77.32560357874905, 34.74572595191988], [-77.3253924564519, 34.74519622013206], [-77.32453715205867, 34.74555918907998], [-77.32406306526664, 34.74623413207526], [-77.32396987617221, 34.74633328164359], [-77.32383627810874, 34.74642756675582], [-77.32320940441699, 34.746936137275576], [-77.32254931078721, 34.74673322833214], [-77.32210310930292, 34.746840304907195], [-77.32168244897649, 34.746859617320624], [-77.32130896157184, 34.74687858557675], [-77.32110767810507, 34.74681724932312], [-77.32087655239931, 34.74678374919162], [-77.32074973499003, 34.74674173728508], [-77.32066470635105, 34.746699646243954], [-77.32053465984364, 34.74646950413299], [-77.32022079254804, 34.74650078847924], [-77.32005796000178, 34.74644181985893], [-77.31994638636712, 34.746414469240335], [-77.31985162653514, 34.7463236459438], [-77.31981199276396, 34.74623678632448], [-77.31972254741851, 34.74615432674542], [-77.31951983572742, 34.745881724786976], [-77.3195517098209, 34.745648666303154], [-77.3193307531914, 34.74544195735986], [-77.31900629895001, 34.74497733086776], [-77.31907303415457, 34.74444023260559], [-77.31856816098517, 34.74394511006095], [-77.31582906116981, 34.74535722859809], [-77.3157028106446, 34.74538993999184], [-77.31563373437946, 34.745507350143725], [-77.31426706499634, 34.747575714200664], [-77.31516295382369, 34.74902175371267], [-77.31549288798848, 34.749357336191885], [-77.31651047928383, 34.74956244593382], [-77.3169499412191, 34.749507204278025], [-77.31742018080695, 34.74946632013529], [-77.31814798587261, 34.74950746712145], [-77.31859980045095, 34.7495330075714], [-77.31873735281235, 34.74954078331708], [-77.31897368527359, 34.7496397347248], [-77.31900415596262, 34.74965327190907], [-77.3191517762377, 34.74983103303707], [-77.31917598022555, 34.7498783419194], [-77.31920632786995, 34.74998791705879], [-77.31932223568168, 34.750295050567075], [-77.31896145023873, 34.750829621052084], [-77.31895958374922, 34.750830851106166], [-77.31895546600343, 34.750832642322656], [-77.31895556795286, 34.750835922314415], [-77.3179899535811, 34.751939584988506], [-77.31799357502302, 34.75236344241214], [-77.31797492244115, 34.752512004955285], [-77.31771393541365, 34.75295210517385], [-77.3174300482336, 34.75330601869562], [-77.31685671930532, 34.753945498527834], [-77.3167312585821, 34.75396361171524], [-77.31551983805184, 34.754422116465065], [-77.31459071766257, 34.7546202444029], [-77.31528349369911, 34.75523433408888], [-77.31604881258342, 34.755912696262676], [-77.31629219658512, 34.755885600177635], [-77.31681263981548, 34.75531273556303], [-77.31708038278964, 34.75498830337217], [-77.31730341076845, 34.75447075007435], [-77.31791275740277, 34.753899603432515], [-77.31800055591731, 34.75381169917319], [-77.31811819968692, 34.75372795403737], [-77.31854281108666, 34.75332596339283], [-77.3187061674424, 34.75316015608715], [-77.31876694544057, 34.75295132790946], [-77.31875933232817, 34.75280895038276], [-77.31883209784462, 34.75250716611072], [-77.3189030610528, 34.75205771187352], [-77.31901364417041, 34.75179939817187], [-77.31945597953154, 34.751270839267654], [-77.3201622492468, 34.75082045601054], [-77.32028966003944, 34.75073283507095], [-77.3204355780046, 34.75062993425665], [-77.32031816476248, 34.7505768308569], [-77.32023941265116, 34.750555214986406], [-77.31983193137205, 34.75016236402018], [-77.31977672522139, 34.750086443214364], [-77.31963595129747, 34.749764723573705], [-77.31953966219677, 34.74959881889973], [-77.31937148162035, 34.74942023504785], [-77.31932776548325, 34.749367593080926], [-77.31925407371119, 34.74932966059611], [-77.3191244148581, 34.74912979671339], [-77.3183552807821, 34.74901823246253], [-77.31829137495947, 34.74901461995523], [-77.31808214225379, 34.749002790832776], [-77.31753069797762, 34.7487783496729], [-77.3173217275926, 34.748229366417036], [-77.31683634127089, 34.74773567051464], [-77.31654408537946, 34.74726394505752], [-77.31701420161373, 34.746552455114475], [-77.31796021626576, 34.745120591639086], [-77.31827311919143, 34.74495927731999], [-77.31832787897515, 34.74501297952702], [-77.318320640711, 34.745071234523444], [-77.31847711255837, 34.74529530607589], [-77.31853015086585, 34.74643384711384], [-77.31911307840923, 34.74619019636862], [-77.31936879580064, 34.74657743537146], [-77.3195700122261, 34.746678660097004], [-77.319649584011, 34.74675570696735], [-77.31979288182791, 34.74681905419406], [-77.31995104348495, 34.746918088380944], [-77.32005883866007, 34.74705750665838], [-77.32053874473782, 34.74725455053111], [-77.32093957245229, 34.7474780778203], [-77.32110643000088, 34.747574822097434], [-77.32115157884083, 34.74757169481663], [-77.32227714053985, 34.74738673420791], [-77.32236537979028, 34.74736555911761], [-77.32253610492175, 34.74741803903028], [-77.32321916628148, 34.74755883543031], [-77.32347094052746, 34.74768361355685], [-77.32352997789813, 34.74771402835912], [-77.32361890932467, 34.747757074837935], [-77.32373609253034, 34.747801767249825], [-77.32396929981164, 34.74777043735659], [-77.32404903484189, 34.7477556158846], [-77.32411081102941, 34.74773509039207], [-77.32420739764362, 34.7476764555813], [-77.32453032878419, 34.747468474191045], [-77.32477851641931, 34.7473071207656], [-77.32497223829252, 34.7472217046614], [-77.32545168852351, 34.747052204910176], [-77.32574201253263, 34.74719598120075], [-77.32599593986448, 34.7472405497419], [-77.32643440269719, 34.74724075523812], [-77.32659234089911, 34.74724958915267], [-77.32676571076946, 34.747197273292294], [-77.3272517180381, 34.747042075153274], [-77.32755708988078, 34.746958920532904], [-77.32827219104985, 34.74682741959886], [-77.32850730548267, 34.74684421877675], [-77.32880357976643, 34.74678680389049], [-77.3296563824672, 34.746551550011674], [-77.32979758395005, 34.746527024405594], [-77.3299786764697, 34.74655140896626], [-77.33036638217423, 34.746630951839265], [-77.33053897475344, 34.74666128285505], [-77.33065428026366, 34.74667088313836], [-77.33081796263455, 34.74677064659763], [-77.33085503082249, 34.746812430637576], [-77.33089935938524, 34.746858074469024], [-77.33101595850343, 34.747082838566065], [-77.33114547863963, 34.747213127151724], [-77.33144585437962, 34.747540597932364], [-77.3316327933289, 34.74763370771239], [-77.33182388324911, 34.747798758358634], [-77.33194747345524, 34.74794321845172], [-77.33209529978353, 34.74805768509104], [-77.33239659971102, 34.74838619715469], [-77.33275793573338, 34.748706733620836], [-77.33303060918212, 34.7489042265435], [-77.33299944880494, 34.74949926192117], [-77.33377928411446, 34.749314519660004], [-77.33413742465198, 34.749412656839716], [-77.33434669931749, 34.749423266170275], [-77.3346639899253, 34.74942664844902], [-77.33493155218721, 34.74947203286784], [-77.3350487943269, 34.74950025708146], [-77.33553570451238, 34.74945441329081], [-77.33578709651513, 34.749501109381654], [-77.33601735589218, 34.749543880202445], [-77.33610404318107, 34.74955998226268], [-77.33637216245847, 34.74966353614566], [-77.33637362583845, 34.74966411034817], [-77.33662399211019, 34.74983200981357], [-77.33665842918695, 34.749839286826685], [-77.33713511004869, 34.75013442326994], [-77.33724463384483, 34.75017687892812], [-77.33734828226373, 34.750261818217794], [-77.33777759251556, 34.750555411006815], [-77.33791407989318, 34.750671617538046], [-77.33814279303883, 34.750789348196164], [-77.33834606076509, 34.75090664329643], [-77.3386363561738, 34.7510599590915], [-77.33866028442617, 34.75106986967116], [-77.33914201657363, 34.75108296435685], [-77.33924193346502, 34.751129680222014], [-77.33939362700616, 34.75106401097852], [-77.33952842525669, 34.75093764025968], [-77.33973893685211, 34.75073162667044], [-77.33978396635925, 34.750589377664994], [-77.33978907136317, 34.75041452557373], [-77.33979695004422, 34.75014469392], [-77.33987567037735, 34.74991527646469], [-77.33983049143643, 34.74976528478861], [-77.33978483332552, 34.7494956260405], [-77.34013162030807, 34.74953374502033], [-77.34029509877426, 34.74956728458111], [-77.34055695708825, 34.74954141162653], [-77.3409770887992, 34.7492818228591], [-77.34103385047237, 34.74962833021361], [-77.34127723258113, 34.749723077844976], [-77.34138487367576, 34.74975258561268], [-77.34143798447049, 34.74975705738983], [-77.3415768943511, 34.7498067543832], [-77.34175537625767, 34.749861861429004], [-77.34197471532283, 34.749971378976326], [-77.34222124753877, 34.75008098938242], [-77.34239005726403, 34.750162168310744], [-77.34250526360074, 34.75020698058417], [-77.34298946990779, 34.750463005036764], [-77.34300421831546, 34.75047825431481], [-77.3430199757573, 34.75049708004008], [-77.3433548238194, 34.750900271666325], [-77.34340501380467, 34.750958406964926], [-77.34346585843588, 34.75102402451951], [-77.34364242369458, 34.75117002438914], [-77.34383783243908, 34.751171549838446], [-77.34402567899949, 34.75115893101096], [-77.34418957804243, 34.75114346148769], [-77.34464531558942, 34.75108800962543], [-77.3452034312544, 34.75110476843538], [-77.34523892829945, 34.75110663379616], [-77.34535923309278, 34.75103238995235], [-77.34531412784091, 34.7511189062737], [-77.345808902449, 34.75120660071001], [-77.34600080657171, 34.75117287561323], [-77.34605634461724, 34.75101709366502], [-77.34613034545227, 34.750649345923605], [-77.3461682889693, 34.75051435969223], [-77.34623106294865, 34.75036196531302], [-77.34628447488778, 34.75014760313779], [-77.34637333528384, 34.74999885393232], [-77.34647678857704, 34.74993889941414], [-77.34663273170268, 34.74996326948872], [-77.34672818421065, 34.74997967878713], [-77.3467620218243, 34.74998802101304], [-77.34685364791125, 34.75001354881749], [-77.34710758903711, 34.75008209729992], [-77.3473185857082, 34.750134110669364], [-77.34750691812782, 34.750169192254894], [-77.34789878297184, 34.750198868413285], [-77.34796254829388, 34.75021299193179], [-77.34849776364499, 34.75019348453614], [-77.34849937729085, 34.750193425719644], [-77.34850161967123, 34.75019262040277], [-77.34901598030197, 34.75001428320489], [-77.34916000226457, 34.74968629801412], [-77.34918600070985, 34.74961297697305], [-77.34918981324213, 34.749530008111854], [-77.34921773864569, 34.749247703553706], [-77.34912272199442, 34.74913427923123], [-77.34944039343877, 34.748682276550895], [-77.34939718039338, 34.7486092418438], [-77.34944884649624, 34.748482945221056], [-77.34938060513133, 34.74812413675857], [-77.34926283359272, 34.74803044523107], [-77.34916992303943, 34.74788555568145], [-77.3489914167437, 34.74769015644469], [-77.3488132798721, 34.74758779611698], [-77.34868256294305, 34.74750132990581], [-77.34840464444693, 34.74711368026497], [-77.34821935673187, 34.74703398866046], [-77.34812393792521, 34.74693537148278], [-77.34795989504354, 34.74685692431164], [-77.34783243985342, 34.7467653603507], [-77.34770695815112, 34.74673596715332], [-77.34741429317069, 34.746680542189004], [-77.34714017618445, 34.74662512206649], [-77.34700978110871, 34.74660965066354], [-77.34655734925977, 34.74656949851443], [-77.34655042982772, 34.74656872603928], [-77.34653173337499, 34.74656547814822], [-77.34611835563342, 34.746506821665974], [-77.34598790113469, 34.74646783088929], [-77.34555649865412, 34.746311215189486], [-77.34544288357819, 34.74628209160756], [-77.34538780532516, 34.74628027105488], [-77.34520815206037, 34.746259669602914], [-77.34494838488943, 34.74622401402274], [-77.34486679976916, 34.74620326506443], [-77.34475107775174, 34.74607867964902], [-77.34470942388846, 34.74601360082639], [-77.34460769388453, 34.745854658913714], [-77.34454035098871, 34.74574944344786], [-77.34444361054038, 34.74559829632867], [-77.34436792017738, 34.745487868414266], [-77.34427428037723, 34.74541301545456], [-77.3440399051793, 34.74496753585649], [-77.34457979023642, 34.745129667044], [-77.34468853132815, 34.74524131436942], [-77.34513225386111, 34.74528975616094], [-77.34513484226696, 34.745292270853774], [-77.34514351574313, 34.74529378174164], [-77.34540968776864, 34.74547508620187], [-77.345691534367, 34.74542638702696], [-77.34594855361804, 34.74538197693933], [-77.34632335365187, 34.7453133787506], [-77.3467535086645, 34.74523000006241], [-77.34695452754758, 34.74520258189285], [-77.34721841259748, 34.745230443252886], [-77.34724767341048, 34.745224415131595], [-77.3475034521809, 34.74497003183297], [-77.34751086627844, 34.744851259820415], [-77.34748870297712, 34.74466459602179], [-77.34748186669296, 34.744485614243075], [-77.3474930844038, 34.744197224929025], [-77.34749557468189, 34.74399635487586], [-77.34751632333078, 34.743854981841466], [-77.34763737573296, 34.74304850057326], [-77.34764478624886, 34.7430011259479], [-77.3476525772944, 34.74296182178898], [-77.34770505491731, 34.74261947693466], [-77.34772243575635, 34.742513908955], [-77.34772495202022, 34.74250274842429], [-77.34772572876778, 34.742488498550216], [-77.34775186716993, 34.7420970871876], [-77.34777096687019, 34.742009055965596], [-77.34779545309232, 34.74191199208266], [-77.34788331168109, 34.741506262935324], [-77.34790602910971, 34.741371680735305], [-77.3479307146229, 34.74117116379132], [-77.34794413219521, 34.741010538991574], [-77.34794714669593, 34.74076983119565], [-77.3479472341355, 34.74076642424353], [-77.34794851898369, 34.74076328414363], [-77.34799516227238, 34.74051615830083], [-77.34845053662428, 34.74005358987751], [-77.34854065640832, 34.74001911684298], [-77.34867602529727, 34.73993535877212], [-77.34857612373781, 34.739886397344065], [-77.3485094502431, 34.73985080702461], [-77.34791309128161, 34.73960796603636], [-77.34756955345223, 34.73911241685834], [-77.34755021561607, 34.73909869304767], [-77.34753415239754, 34.739084710605354], [-77.34708654522875, 34.738666938123274], [-77.34706246518522, 34.738646744261985], [-77.34674604067698, 34.73825064572872], [-77.34670487975883, 34.738172113981065], [-77.34663388880878, 34.73806041232932], [-77.34625378304334, 34.73773068717652], [-77.3461904538338, 34.73735211189246], [-77.34603842063544, 34.73710796822731], [-77.34581637415316, 34.73675138657667], [-77.34560614786055, 34.73665207105534], [-77.34522924430652, 34.73580850079744], [-77.34624498380595, 34.73616073601961], [-77.34727526189731, 34.735852873564205], [-77.34752416888836, 34.73596524721526], [-77.34781830057474, 34.73604519325886], [-77.3481402228272, 34.73610984183683], [-77.34831714944056, 34.73614370458606], [-77.34838494440164, 34.73615626449769], [-77.3485468982366, 34.736194989313454], [-77.34894361782932, 34.73629477320184], [-77.34907916082835, 34.73634597782289], [-77.34941658875454, 34.73632727950509], [-77.34964025862587, 34.735914401604596], [-77.34963927662626, 34.7359041446634], [-77.34964898101423, 34.735894911938594], [-77.34966180238015, 34.73588419822959], [-77.34997470857098, 34.73554524207884], [-77.35008455147931, 34.73545976678163], [-77.35020563217827, 34.73533904476928], [-77.35030861402996, 34.735202819618195], [-77.350542800405, 34.734825989190114], [-77.35055519293948, 34.734803693286125], [-77.35056245007262, 34.734789456720826], [-77.35060787108446, 34.7346891042995], [-77.35078433572117, 34.734347786652876], [-77.35109230535511, 34.73400911207531], [-77.35136497432387, 34.73371779817749], [-77.35132173992862, 34.73354741053588], [-77.35155104429202, 34.732717498370306], [-77.35198143983385, 34.73202213023758], [-77.35217075899628, 34.73174663011636], [-77.3522159046131, 34.73165148490876], [-77.3522472046049, 34.73154393807271], [-77.35231609372545, 34.731150352388184], [-77.3522807715569, 34.731123917494635], [-77.3522519588455, 34.73109077563854], [-77.35211061796802, 34.73093486359718], [-77.35204266263108, 34.730912883315625], [-77.35190598203987, 34.73087377716263], [-77.35170558555356, 34.7309100395445], [-77.35155703082323, 34.730767151939496], [-77.35130829864625, 34.73068939246522], [-77.35119017877899, 34.73062269947629], [-77.35088459020474, 34.730372059368975], [-77.35079328326009, 34.730297170715055], [-77.350375542525, 34.729954539599], [-77.35029726512585, 34.72989033692711], [-77.3502346569766, 34.72978884688178], [-77.34939475433653, 34.72911437650945], [-77.35061499099768, 34.72847947859218], [-77.35099303295722, 34.72856673355088], [-77.35162889595993, 34.72871349297841], [-77.3517376168944, 34.72873797120005], [-77.35178137843396, 34.72874868612036], [-77.3518885504921, 34.728772124996546], [-77.35230040561986, 34.728862139148234], [-77.35259350013791, 34.72867536697434], [-77.3528241697901, 34.72849606110084], [-77.35303778632486, 34.72817636120389], [-77.35306145598732, 34.728123753228886], [-77.35323980509548, 34.72762674716306], [-77.35324541286458, 34.7276111203097], [-77.35325007151388, 34.72759693141087], [-77.35331808534892, 34.72711376225336], [-77.35337914180612, 34.726731148142946], [-77.35339818529576, 34.72661538456532], [-77.35342455382316, 34.72647503622409], [-77.35367733160206, 34.72618310673617], [-77.35377581036364, 34.7260761657287], [-77.35387154849424, 34.72595812994436], [-77.35385828079347, 34.725582852934714], [-77.35385495158339, 34.725577919222445], [-77.353854397636, 34.725577120083386], [-77.35385391379653, 34.7255750835081], [-77.35354549285529, 34.725026358292034], [-77.35312151972934, 34.724930029176946], [-77.35286441159774, 34.72485837344006], [-77.3527449825915, 34.724853799400634], [-77.35250486386934, 34.72478847350681], [-77.35318282166624, 34.723762004274626], [-77.35424292724241, 34.723370699621526], [-77.35459541458083, 34.72343020201725], [-77.35471633524557, 34.72351013721696], [-77.35544798260453, 34.72356268917528], [-77.35564044977757, 34.723547219159805], [-77.35611033968148, 34.72384151558737], [-77.35618082035477, 34.72428384831462], [-77.35627148608941, 34.72450595822069], [-77.35617695329711, 34.7247717645662], [-77.35616078217424, 34.724985344300926], [-77.35615818659439, 34.72501803354829], [-77.35615294284713, 34.725063077875774], [-77.35612935603791, 34.72526568351161], [-77.35614051271688, 34.7253951503623], [-77.35608934726555, 34.725758560637644], [-77.35608931895027, 34.725828750169455], [-77.35606422397953, 34.72600570206052], [-77.35610284405102, 34.72607913336289], [-77.35616189861057, 34.726167123569056], [-77.35635761119005, 34.72620175911135], [-77.35637042088828, 34.72618876822592], [-77.35662379145383, 34.72611848396841], [-77.35682225693937, 34.72566386492835], [-77.35682484254613, 34.72565839269984], [-77.35682527619875, 34.72565752204923], [-77.3568560608013, 34.72563306212419], [-77.35720358518297, 34.72535573885006], [-77.35721804716972, 34.72535455978227], [-77.35752253441905, 34.72531446647459], [-77.35779952290909, 34.72524552014257], [-77.35816227187756, 34.72517354306147], [-77.35865060494622, 34.72491950880982], [-77.35867793419226, 34.72474735697488], [-77.3589681926057, 34.72446025408889], [-77.35926277139295, 34.72456979582793], [-77.35954972864941, 34.724519751379404], [-77.35963314680194, 34.724784588200855], [-77.35970633881374, 34.72501695765568], [-77.35970672318295, 34.725018177926515], [-77.35997140423072, 34.72512984981165], [-77.36001226771806, 34.7251757953763], [-77.36018678986929, 34.72519594612294], [-77.36024951801515, 34.725203188879064], [-77.36031443972647, 34.72517841636656], [-77.36050033857336, 34.72508554083015], [-77.36053533051258, 34.72497045070844], [-77.36052891899335, 34.724905268916515], [-77.36047686696267, 34.72481832026886], [-77.36034990057033, 34.724686159719674], [-77.36033598385387, 34.7245324918538], [-77.36024670456987, 34.72418163313394], [-77.35979945426598, 34.724156861400196], [-77.35955964305694, 34.723819908465615], [-77.35995441424497, 34.72332546813496], [-77.36067263380045, 34.72271456145623], [-77.36181488604325, 34.72260608987176], [-77.3619193376215, 34.72254538776493], [-77.36195881684856, 34.72254852403528], [-77.36312729957842, 34.72250962777293], [-77.36414328373644, 34.72239135393286], [-77.36382455706836, 34.72323416097577], [-77.36396492063179, 34.7233170868567], [-77.36399477794367, 34.723646803106675], [-77.36401543156092, 34.72369533222489], [-77.36400468418351, 34.72372283641251], [-77.36411829699132, 34.72398754455622], [-77.36421281264184, 34.72415560816776], [-77.36427251157438, 34.72459827559459], [-77.36428185235287, 34.72463351387495], [-77.36428518804327, 34.724647604058646], [-77.36429281267559, 34.724682912559764], [-77.36444487923386, 34.72485481454326], [-77.36450528725426, 34.72487248053662], [-77.36461484147486, 34.72490154017613], [-77.36481234460476, 34.72495599948677], [-77.3648947088482, 34.724967064482506], [-77.3653807565838, 34.724941877455194], [-77.3654261469785, 34.7249043269289], [-77.36574336315886, 34.724624935163945], [-77.36617608000022, 34.724383651405994], [-77.36662173531562, 34.7244265853035], [-77.36677686587709, 34.72437679894666], [-77.36689764128242, 34.72437114422494], [-77.36738424516655, 34.724347225824786], [-77.3678518243178, 34.724268485477545], [-77.36798138757666, 34.724352918700724], [-77.36842859373219, 34.724451015635175], [-77.36854676419675, 34.724468060274475], [-77.36859912516557, 34.7244819067447], [-77.36910158813899, 34.72440902308557], [-77.36916335948874, 34.72440672176433], [-77.36920075431365, 34.72441317159791], [-77.36941066251333, 34.72436373446148], [-77.36953328335916, 34.72416370299561], [-77.36953818825641, 34.72415762990712], [-77.36954006856082, 34.724152044790245], [-77.36951872237601, 34.723914050587354], [-77.36951775069222, 34.72377496004668], [-77.36943558763741, 34.72346870425529], [-77.36942651514474, 34.72345091580468], [-77.3694274976314, 34.72343919405615], [-77.36935372980096, 34.72335610067087], [-77.36923227713176, 34.723206139461105], [-77.36906646890847, 34.72300140942897], [-77.36899695347964, 34.722916873745945], [-77.36865613394048, 34.72286101102276], [-77.36807963422149, 34.722865610817706], [-77.36781572859606, 34.72286056806878], [-77.36762055755345, 34.72286944744414], [-77.3672687713943, 34.72276101426583], [-77.36688933888149, 34.72264365738668], [-77.36674202823596, 34.72243379468288], [-77.36621178899573, 34.72248726334369], [-77.36596836624952, 34.722563888688114], [-77.36548575591148, 34.72263604113158], [-77.36493494931631, 34.722106854023295], [-77.3658298651311, 34.72145051078667], [-77.36607561330469, 34.721090308711524], [-77.36617234498082, 34.72096208760884], [-77.36641004160191, 34.72064701137776], [-77.36665275738099, 34.720325283673134], [-77.36724525814901, 34.720004256531055], [-77.36748280087893, 34.71988148865317], [-77.3676042782752, 34.71989192225277], [-77.36860846026629, 34.71974365872018], [-77.36872533306432, 34.71972640278363], [-77.36934936439081, 34.719550794334836], [-77.36992557039937, 34.71939571492319], [-77.37006677046742, 34.71940984076329], [-77.37018659472912, 34.7194357479941], [-77.37091291857931, 34.71954714179964], [-77.371151205843, 34.71962011877993], [-77.37160566051683, 34.71960774244407], [-77.3718154910956, 34.71964101319248], [-77.37190510030257, 34.719686976161135], [-77.37217518439776, 34.719758441607475], [-77.37229295956368, 34.719812266609665], [-77.37254660898844, 34.71986683908221], [-77.37289653371208, 34.7200381099573], [-77.37298589610675, 34.72031727611602], [-77.37305529972792, 34.72089182975363], [-77.37288465106354, 34.72101453121055], [-77.37227439985867, 34.721476346683914], [-77.37176672851149, 34.72162577393849], [-77.37121912373769, 34.721817832773276], [-77.37123083308292, 34.72221660411351], [-77.37122759572006, 34.72245906704953], [-77.37110292321931, 34.72299114863115], [-77.37110391690433, 34.723208830736546], [-77.37114781205949, 34.723308998720135], [-77.3709871928759, 34.72371226366956], [-77.37103815519446, 34.72378765605869], [-77.37110783535827, 34.72389636586415], [-77.37113370579979, 34.72393582652538], [-77.3712433993061, 34.724023963932666], [-77.3713916219604, 34.72414407939063], [-77.37159211214525, 34.724290967089985], [-77.37175185397548, 34.72442118568467], [-77.37183908207848, 34.724471623796276], [-77.37189589706378, 34.724507462560695], [-77.37198224623111, 34.72455030646252], [-77.37205214253211, 34.72458434799269], [-77.37209956547713, 34.72460571416395], [-77.37219839351641, 34.72465755199047], [-77.37239807214547, 34.72468186254082], [-77.3724408981129, 34.72468003001609], [-77.37247837811867, 34.72465626609927], [-77.37261702553131, 34.72459389267512], [-77.37275693302638, 34.72455001851519], [-77.37297204390866, 34.724426141799434], [-77.37312599765806, 34.7243830056253], [-77.37318653820212, 34.724344981665865], [-77.37330700713758, 34.72422557617837], [-77.37351873998239, 34.72413438406473], [-77.37365504380679, 34.72404640434513], [-77.3737614101629, 34.72398703224821], [-77.37401032961833, 34.7238790957022], [-77.37429909513325, 34.72365479306794], [-77.37432114352374, 34.7236390207453], [-77.374334377488, 34.72362841595968], [-77.37436514756003, 34.72359636667579], [-77.37449986830579, 34.7231828142237], [-77.37467521088803, 34.72318853248218], [-77.37460557140636, 34.723049925804524], [-77.37450945942248, 34.72292977260653], [-77.37415438884457, 34.722446994084166], [-77.37411739836656, 34.72236075994797], [-77.37414052487989, 34.72199145364419], [-77.3741361625484, 34.72188140815649], [-77.37417530718083, 34.72187157660137], [-77.3746767598963, 34.72197496456289], [-77.37477071725694, 34.72202933213933], [-77.37499622955355, 34.721994615277914], [-77.37512794269331, 34.721964586270346], [-77.3754594065213, 34.72186558750119], [-77.37551252581179, 34.72184523091507], [-77.375577402195, 34.72182676641522], [-77.37598922962438, 34.7215808929929], [-77.37615210769667, 34.72146875860069], [-77.37616857913129, 34.721421443069346], [-77.37636306189525, 34.72142513721765], [-77.37689176527351, 34.7213485432614], [-77.37704952202776, 34.72136563214414], [-77.37720826035243, 34.721362646419735], [-77.37728520653903, 34.721376956460226], [-77.37739594020472, 34.721344991578434], [-77.37748234696792, 34.72132521419693], [-77.37755003230615, 34.72128961786094], [-77.37780976071889, 34.721112323330935], [-77.37798567510728, 34.72099224043481], [-77.37835115960723, 34.72073822236598], [-77.37845696325988, 34.720674071611846], [-77.37931837023383, 34.72108632768618], [-77.37953096647799, 34.721091652838595], [-77.37961406622918, 34.721070093810305], [-77.37974955548368, 34.72105050011695], [-77.38101989495482, 34.720379391969516], [-77.38102207715372, 34.72037948370959], [-77.38102402403163, 34.72037823878356], [-77.38118108715932, 34.72031014835983], [-77.38174171661919, 34.720059765199125], [-77.38175419734375, 34.7200582556897], [-77.38182667616223, 34.72004112706591], [-77.38213114869819, 34.719948354937685], [-77.38225655843098, 34.71986198907153], [-77.38239151299048, 34.719738530619196], [-77.38237842385075, 34.71960437119178], [-77.38255264555806, 34.718846021223165], [-77.38263004546994, 34.71870365519452], [-77.38283080691195, 34.718556857613706], [-77.38314827056395, 34.71859780761234], [-77.38356372534378, 34.718549457791084], [-77.38381068826156, 34.71855772597527], [-77.38405289978373, 34.71822081543506], [-77.38415165943637, 34.718117891612884], [-77.38439321508768, 34.7171864007998], [-77.38438580306114, 34.717081485683096], [-77.38425614004106, 34.715458339289526], [-77.38385751923317, 34.7146598274333], [-77.38446245986222, 34.71403171537003], [-77.3845554844383, 34.71266743573443], [-77.38439794761796, 34.71182889149658], [-77.38447375038515, 34.71152047101515], [-77.38450303064836, 34.711104085427614], [-77.38450866787232, 34.710414332529], [-77.38442138470144, 34.71003394576456], [-77.38404624494436, 34.709944544297386], [-77.38370419302375, 34.709797056328334], [-77.38347964856551, 34.70968772601491], [-77.38318519800441, 34.70965657603729], [-77.38287552325005, 34.70956032221309], [-77.382441840209, 34.70922861698321], [-77.3822737036009, 34.70914387654169], [-77.38180021465249, 34.70884713088201], [-77.38120204922227, 34.70869704799361], [-77.38059044797845, 34.7085975959812], [-77.3801755577227, 34.70823313707867], [-77.38041020415264, 34.70786118319944], [-77.38040074494549, 34.70738583391009], [-77.38039826094972, 34.70724775657844], [-77.38042144402651, 34.70696997049974], [-77.38043702267642, 34.706785316549926], [-77.38043973735924, 34.70675314042586], [-77.38023986592319, 34.7064908814327], [-77.38022004572926, 34.70642945716123], [-77.38015020296669, 34.70637217512579], [-77.37998768105211, 34.706255245317145], [-77.37981432041316, 34.70625457776387], [-77.37971397083442, 34.70626198727492], [-77.37965871322243, 34.70628435076017], [-77.37938120257184, 34.70638253257871], [-77.379351447375, 34.70641732487809], [-77.37929142499529, 34.70644557513528], [-77.37902541092856, 34.706632372165814], [-77.37866891908602, 34.70669234171627], [-77.37856453164004, 34.70674151719815], [-77.37840758991686, 34.70673850605498], [-77.37819405199706, 34.70676907795249], [-77.37809814043304, 34.70686746407851], [-77.37801214125281, 34.70702158304098], [-77.3777260343303, 34.707422195631956], [-77.37770118759593, 34.70745973126429], [-77.37768365906209, 34.707486471196546], [-77.37736716946104, 34.70791415671013], [-77.37715849640925, 34.708068852578165], [-77.37685115536051, 34.70822823970063], [-77.37569752147046, 34.70893040763107], [-77.37558561819691, 34.70909495779988], [-77.37468647819514, 34.70954576478705], [-77.37408414707285, 34.70951168515371], [-77.37388146231655, 34.70820526566881], [-77.37384860033748, 34.70755613755622], [-77.37382250402317, 34.70723858462155], [-77.37373791284796, 34.70712177843636], [-77.3739122041689, 34.70633626579156], [-77.37397117910015, 34.70624335826865], [-77.37451252698159, 34.70559189075283], [-77.37494468836093, 34.70513473922032], [-77.37555778058919, 34.70443193139593], [-77.37596664502982, 34.704617523795875], [-77.37612760082972, 34.70453128187431], [-77.37619859363267, 34.704533214610535], [-77.37661191247821, 34.704515047267584], [-77.37672856354226, 34.704523268881495], [-77.37682155729337, 34.70455079225618], [-77.37692012936755, 34.70453433668184], [-77.37703044812385, 34.70451442336524], [-77.37706466074545, 34.70447773172482], [-77.37705085097132, 34.70444408418827], [-77.3770319078576, 34.704388852610684], [-77.37700374358997, 34.704364258258565], [-77.37694415149754, 34.704295980373736], [-77.3768816294367, 34.70430740486845], [-77.37682051539997, 34.704206266641215], [-77.37675899881182, 34.70415421040002], [-77.37659629163447, 34.70413279301873], [-77.3763971177314, 34.70396026697223], [-77.37636511079837, 34.70391648864401], [-77.37642663780379, 34.70371251036866], [-77.37638064411615, 34.70365893774278], [-77.37629446307747, 34.7035765980981], [-77.37621031256545, 34.70349855438062], [-77.37615134625399, 34.70341755571041], [-77.37597509737463, 34.70342818382685], [-77.37590198057349, 34.70324535891659], [-77.37571790178478, 34.70323190732448], [-77.37557756129343, 34.70309815073347], [-77.37575094322337, 34.702860431150974], [-77.37556582252337, 34.70261237008027], [-77.37554680614235, 34.702575073056906], [-77.37552786179319, 34.70247139366391], [-77.37521386779382, 34.70217336150145], [-77.37540484044136, 34.70191569985767], [-77.37539937125423, 34.70190002490123], [-77.37522661407812, 34.70168421375068], [-77.37517522988794, 34.70162338008702], [-77.37497145473345, 34.70144090804924], [-77.37493991207957, 34.70140278034799], [-77.3747788378044, 34.7012583783378], [-77.37474322519428, 34.70122233730274], [-77.37471227328777, 34.701155712714595], [-77.3746947543533, 34.701148089158906], [-77.37469224059728, 34.70112482997852], [-77.37466437978206, 34.70108590001641], [-77.37462346730698, 34.701036040654124], [-77.37460433041406, 34.70101192248755], [-77.37445324156512, 34.70105130822206], [-77.37444722112231, 34.70103762214467], [-77.37442024431493, 34.70104337242807], [-77.37443099804831, 34.701068432314464], [-77.37442992925241, 34.70109723127795], [-77.3744521847723, 34.701249257810474], [-77.37446651212932, 34.70130131572841], [-77.37430091665765, 34.70154196568558], [-77.3742889369744, 34.7015651466465], [-77.37428299584776, 34.70157664273177], [-77.37429588006904, 34.701812168010434], [-77.37410522348372, 34.70210776824602], [-77.37401132557555, 34.70233868109315], [-77.3738467785976, 34.70244962629904], [-77.37367536848885, 34.7026665425793], [-77.37343101363766, 34.702905849694844], [-77.37332610231044, 34.703264546892214], [-77.37314523733255, 34.70343252684533], [-77.37270862087377, 34.70399370459501], [-77.37164739390303, 34.70399981602117], [-77.37168007110782, 34.70363392096035], [-77.37157958003061, 34.703263497378934], [-77.37162917164184, 34.70303731606806], [-77.37164552402456, 34.702663882588254], [-77.37171565838617, 34.70237021974142], [-77.37173218201275, 34.7021645788584], [-77.37182062996528, 34.701930694588704], [-77.37181576462912, 34.70189889674087], [-77.37173519031876, 34.7018549928053], [-77.37153081395235, 34.70180495115187], [-77.37127997027162, 34.7019170850927], [-77.37066774535813, 34.70218546548581], [-77.37015455819318, 34.7024218806111], [-77.37001732625865, 34.702100523316496], [-77.37005152432351, 34.70190818127556], [-77.37005761906141, 34.70164486284435], [-77.37003796640045, 34.70142265273525], [-77.3700661905023, 34.70127439756314], [-77.37013325004747, 34.70092216450116], [-77.37015413919872, 34.700812440173266], [-77.37021251246739, 34.70050582711856], [-77.37025589069538, 34.70041791608743], [-77.37038430683977, 34.7002410013663], [-77.37059151086842, 34.69988439381642], [-77.37067171369327, 34.69963643272546], [-77.37080573821349, 34.69912806625588], [-77.37081323738647, 34.69887913320712], [-77.37081757306399, 34.69872469769259], [-77.37068354830568, 34.69853540901421], [-77.37062657090641, 34.69847747401572], [-77.37018378121549, 34.69819474196545], [-77.37000636983194, 34.69801524586325], [-77.36955345981825, 34.697726528909314], [-77.36922505875133, 34.6973727855359], [-77.36910740211604, 34.69728140058959], [-77.36902571349054, 34.69717524058047], [-77.36874536135716, 34.696962988717594], [-77.36856831624979, 34.69690788152988], [-77.3682254253189, 34.69669188310051], [-77.36724053491358, 34.696595995722234], [-77.3669024733679, 34.69661322053886], [-77.36606942453028, 34.69587034900319], [-77.3654488057245, 34.695717208283874], [-77.36437576600217, 34.69540422256219], [-77.36384625520668, 34.69528036417892], [-77.36245961706247, 34.69491176253035], [-77.36162336695836, 34.69468946916763], [-77.36131386293839, 34.6946071895337], [-77.36096032254589, 34.69438430407966], [-77.35858959428242, 34.69355023527181], [-77.35722334265752, 34.69335026937539], [-77.3568363697884, 34.693001202953724], [-77.3561608739651, 34.692265837448886], [-77.35538891997905, 34.691421460727724], [-77.35525994190155, 34.6913824060689], [-77.35527000542217, 34.69126677600816], [-77.35489972768252, 34.69087123427585], [-77.3549207432061, 34.690782494789836], [-77.35498801858898, 34.69074053256917], [-77.35521475913194, 34.690404873153234], [-77.35531950866951, 34.69028520955445], [-77.35540257575244, 34.690252238073015], [-77.3554461148043, 34.6901934870875], [-77.35558378670407, 34.690093747413265], [-77.35561936153854, 34.68992316927917], [-77.35532523213092, 34.689797038924844], [-77.35529732623993, 34.6897768193366], [-77.35526996472181, 34.68976932045676], [-77.35520610134162, 34.68975894552965], [-77.35467991182809, 34.689739981433306], [-77.35408661951116, 34.68996712712497], [-77.3540442074566, 34.69000547451946], [-77.35393226081672, 34.69047570528589], [-77.35352090582556, 34.69081810323941], [-77.35310768599807, 34.69103191448771], [-77.35302768257714, 34.691087298072816], [-77.35265793326843, 34.69132962726574], [-77.35236159553945, 34.69153996471871], [-77.35213886402872, 34.69169671732223], [-77.35193588857629, 34.6919660857906], [-77.35156216337944, 34.692231689856946], [-77.35118220616609, 34.69257450255102], [-77.35093767892225, 34.692836393981594], [-77.35052557435456, 34.69326896385975], [-77.35039080634485, 34.693398853665876], [-77.35018869708001, 34.69360860678259], [-77.35014571382504, 34.69374146121491], [-77.35016520396236, 34.693917205905684], [-77.3503876557137, 34.69421508248883], [-77.35051286397318, 34.69424729996037], [-77.35085801796738, 34.69465675114173], [-77.35101146633596, 34.69465198220749], [-77.35147006405066, 34.69538279636656], [-77.35168411414404, 34.6956582118553], [-77.35156810230836, 34.69580039218446], [-77.35084469351693, 34.697381547098864], [-77.34985687178717, 34.69711721952317], [-77.34988867004803, 34.69687945495787], [-77.34924784822492, 34.69607878397298], [-77.34921098931099, 34.69603749125726], [-77.34921889397143, 34.695996634279894], [-77.34920119697841, 34.695924636177], [-77.34912960989345, 34.695705929324724], [-77.3489348684652, 34.69554824060991], [-77.34889929332924, 34.6954889749207], [-77.34882436926283, 34.695475663240046], [-77.34869443640011, 34.69547539138322], [-77.34822877468429, 34.69546523872721], [-77.34792467837322, 34.69545057293933], [-77.34758232833921, 34.6952465094061], [-77.34726533618374, 34.695169569813785], [-77.34716698822035, 34.694998809310334], [-77.34704902635947, 34.69483232814581], [-77.34683276035662, 34.69471407570419], [-77.34672720407517, 34.69463280865571], [-77.34668193354302, 34.69460777293378], [-77.34654430679672, 34.69454185859625], [-77.34631776140353, 34.6944453134095], [-77.34622190865625, 34.694395760713036], [-77.34617077226446, 34.69430663802949], [-77.34593226015961, 34.69430322237429], [-77.3456696286271, 34.69453426365369], [-77.34523908184549, 34.69496530647886], [-77.34516427631928, 34.69509099689115], [-77.34516295855455, 34.69521057868077], [-77.34509088533892, 34.695588446033334], [-77.3450174617323, 34.69604546829204], [-77.34500694558798, 34.69608734542441], [-77.34483560246953, 34.696250798256116], [-77.34450637228582, 34.69664341663952], [-77.34435718908159, 34.696736739674535], [-77.34425284001813, 34.69678792688029], [-77.34381778491657, 34.69703392948154], [-77.3434831639702, 34.69723850969019], [-77.34326773538103, 34.69745714052327], [-77.3428909266548, 34.69783984433167], [-77.34282167751635, 34.69792871696183], [-77.34267916818402, 34.698083689649394], [-77.34228978797513, 34.69820956173368], [-77.34185816578486, 34.69835115754829], [-77.34143369576444, 34.69824950676893], [-77.34129757404956, 34.69818462537707], [-77.34095273005562, 34.6981057730477], [-77.34087955911656, 34.69809626614531], [-77.34085295407296, 34.69809827809593], [-77.34073065799228, 34.6981362402723], [-77.34057942349574, 34.698174936725025], [-77.34054790837341, 34.69820753150012], [-77.34039650279955, 34.69833193188937], [-77.340117099683, 34.69866010834701], [-77.34006894204941, 34.69871439748099], [-77.33979833433328, 34.69907829355388], [-77.3395928872147, 34.699267079448255], [-77.339621632905, 34.699474000036126], [-77.33958392882496, 34.69975568476434], [-77.33958722714253, 34.700167839157224], [-77.33927967508257, 34.70028479676051], [-77.33829218236214, 34.70082021092792], [-77.33790062707153, 34.70122591709337], [-77.33734412194525, 34.70152504194768], [-77.33626383741901, 34.702328168879795], [-77.33534126600784, 34.70273425060213], [-77.33389282490884, 34.70309267402645], [-77.33276090839557, 34.70337277985455], [-77.33196377939413, 34.703622574017196], [-77.33024011538072, 34.70380612658309], [-77.32894679356086, 34.70374400814895], [-77.32786574919373, 34.703735659475946], [-77.32591066345984, 34.70309271109041], [-77.32573806173237, 34.70305900641844], [-77.32568034849372, 34.70301512976692], [-77.3245506734674, 34.70215626345474], [-77.32363694122112, 34.70152211878936], [-77.32360588740484, 34.70145912398451], [-77.32261748026846, 34.700729767205026], [-77.32172917245252, 34.70013109949638], [-77.32144805065064, 34.70005275044288], [-77.32129151874886, 34.69982681462068], [-77.32094183779718, 34.69965387650124], [-77.32069202147656, 34.69957997140103], [-77.32026425042457, 34.699631565580624], [-77.31968941924208, 34.69982885179847], [-77.31938873930375, 34.69994409710512], [-77.31922848001547, 34.699989868770416], [-77.31813393338527, 34.70014147039184], [-77.31787344516486, 34.70006498690095], [-77.31755719563935, 34.70006592288975], [-77.31729000852529, 34.7000976814198], [-77.31725746444445, 34.70006722045959], [-77.31722306890121, 34.70012661643267], [-77.3172091158362, 34.70015988614556], [-77.31723874472874, 34.70038208797272], [-77.31705489496957, 34.70061596270681], [-77.31675405057713, 34.701297962027766], [-77.31680153235229, 34.70141670621861], [-77.31630245363901, 34.702321696672584], [-77.31622973610757, 34.70243813081896], [-77.31406407936274, 34.70257823290147], [-77.31383740781452, 34.70256281588305], [-77.31328242001936, 34.702377910549764], [-77.31162469088255, 34.70193637631857], [-77.31132437869769, 34.70153228500398], [-77.31116391597429, 34.70121413292065], [-77.31023906041972, 34.70079055437425], [-77.30992457827779, 34.69954798723028], [-77.30984495421241, 34.699517375839044], [-77.30980367021185, 34.69945096826272], [-77.30982143480855, 34.69930766919481], [-77.30948341191142, 34.69852010471388], [-77.30972480933463, 34.69803356353191], [-77.30970210610367, 34.69800280180132], [-77.30969920195375, 34.69792208570686], [-77.30959828324004, 34.69773679971056], [-77.30950129869292, 34.69774651136144], [-77.30921592082413, 34.697867844134535], [-77.30893702928384, 34.69785117368634], [-77.30826057729874, 34.6979229184801], [-77.30797171617783, 34.69802867344956], [-77.30771196037357, 34.69800499057857], [-77.30675265180038, 34.69810306339673], [-77.30570522196724, 34.698210133917414], [-77.3055049440679, 34.698275873690264], [-77.30517209778425, 34.6981356581091], [-77.30601755842342, 34.69615542044699], [-77.30608137455641, 34.69606175765646], [-77.30611430432444, 34.6960186899422], [-77.30617295806107, 34.695979903444176], [-77.3067686722015, 34.695322085629684], [-77.30762796768101, 34.69487529864828], [-77.30765834178406, 34.69483425876013], [-77.30770195209766, 34.69484008744324], [-77.3077171123737, 34.6948487101018], [-77.30774396846591, 34.69485941604012], [-77.30847087672595, 34.6950572368944], [-77.30883368741394, 34.69506571672905], [-77.30937033879866, 34.69507602155156], [-77.30948736978958, 34.69506375228734], [-77.31003779592987, 34.69504255882713], [-77.31070658100109, 34.69542845624759], [-77.3109389524544, 34.69552381027799], [-77.31107674164484, 34.69558719460811], [-77.31159501671505, 34.69580745345657], [-77.3116103458994, 34.6958109448195], [-77.31164561358608, 34.69581747447492], [-77.31218673993317, 34.69588758639323], [-77.3124432310376, 34.69594334243309], [-77.3127515864646, 34.69600393409761], [-77.31301335356174, 34.69608725729998], [-77.31321834857904, 34.69613543774761], [-77.31330014465732, 34.69617628414867], [-77.31378558472512, 34.69646884925605], [-77.31379623777269, 34.69647918967215], [-77.31385117936317, 34.69649700911127], [-77.31434284949063, 34.69670808278815], [-77.31483829920285, 34.69646600807904], [-77.31500318218652, 34.69649612611707], [-77.31513475545611, 34.69635859376036], [-77.31518982946152, 34.69627650341099], [-77.31578273014655, 34.69587422780463], [-77.31599432899056, 34.69584404632991], [-77.31663622623799, 34.69587156044267], [-77.31698332341126, 34.695863108829286], [-77.31748589929622, 34.695890125864636], [-77.31757142126713, 34.69589949341234], [-77.3176181335355, 34.69590460981129], [-77.31777409601818, 34.69592248048657], [-77.31806488225256, 34.69595512552924], [-77.31815099383316, 34.69596519345727], [-77.31850790724744, 34.69600850251542], [-77.31872757712259, 34.69604117332184], [-77.31918364421139, 34.69611906847251], [-77.31930525381738, 34.69611339377249], [-77.31936656777877, 34.69613632002129], [-77.31965537561913, 34.69615208894943], [-77.31988776406337, 34.696168990864095], [-77.32048076280596, 34.69606761083444], [-77.32051558989575, 34.69606873541143], [-77.3205579791666, 34.69606111715314], [-77.32085262046076, 34.69598803828288], [-77.32115950481455, 34.69591313473467], [-77.32127626618977, 34.69592998606546], [-77.32161569263836, 34.695982942319134], [-77.32173728903881, 34.69598497427888], [-77.32191712419618, 34.695989679002196], [-77.32257394783669, 34.69603414091377], [-77.32289695403975, 34.696114563669774], [-77.3232295814437, 34.69631808079824], [-77.32358180335085, 34.6965887617587], [-77.32373340795195, 34.696718776208904], [-77.32387576058834, 34.696866264142955], [-77.3243888358136, 34.69690500700417], [-77.32445718966525, 34.696925584651154], [-77.324476200239, 34.69693568265688], [-77.32462463502857, 34.696933204037805], [-77.32505293987082, 34.69693563872292], [-77.32512985665183, 34.696923763890155], [-77.32551298579759, 34.69692646719554], [-77.32565335852769, 34.69692963057707], [-77.32586738033152, 34.696939414363186], [-77.32600174076664, 34.69694465184673], [-77.32621767689257, 34.697047806264976], [-77.32639201033726, 34.69703858287707], [-77.3264773857612, 34.69716662036571], [-77.32670704703729, 34.697423818320296], [-77.32682373467131, 34.69749473707192], [-77.32690636435343, 34.697595186033276], [-77.32694822069159, 34.69762390977813], [-77.32720295875038, 34.69755452912521], [-77.3272596973472, 34.697535779195725], [-77.327273224365, 34.69753561062206], [-77.3277939607455, 34.697371149403324], [-77.32792953506157, 34.69733731601869], [-77.32824592261797, 34.69718906602954], [-77.3286089185983, 34.69705962612979], [-77.32879738915459, 34.69698415828583], [-77.3288458503333, 34.69684193970208], [-77.32897455312289, 34.696628618912094], [-77.32925727304895, 34.69611513112057], [-77.33011126671879, 34.69575426054127], [-77.33019897309055, 34.69570839713424], [-77.33023181067992, 34.695702527547354], [-77.33037251206575, 34.695657891416246], [-77.33085785412449, 34.69550116760496], [-77.33119311852471, 34.69527819174394], [-77.33137988601196, 34.695032395764485], [-77.33171092453192, 34.694625723369384], [-77.33179102105356, 34.69453158595445], [-77.33180427264226, 34.694486832855276], [-77.33183710480493, 34.69442669325794], [-77.3319710812501, 34.69397658823918], [-77.33193859705625, 34.69384229665826], [-77.33189540191658, 34.693593600344066], [-77.33183032776937, 34.69350851763336], [-77.33180051048342, 34.693263165470505], [-77.33217951584112, 34.693013272063226], [-77.33270227630567, 34.69241420483542], [-77.33272504914856, 34.692167127175786], [-77.33279898707973, 34.691913571821395], [-77.3328005998622, 34.69159642112232], [-77.33285204579634, 34.69141892334002], [-77.33292170040689, 34.69122759025484], [-77.33295621145663, 34.690429889118136], [-77.33268249361234, 34.689835103979405], [-77.3327573497807, 34.6894824219335], [-77.33276210923624, 34.689008636644836], [-77.33276535852063, 34.688983109508925], [-77.33276069523701, 34.68895332347592], [-77.3327379717404, 34.68851033710384], [-77.33276634688053, 34.688194095942016], [-77.3328608344791, 34.68781936657122], [-77.333221128978, 34.687469331530465], [-77.33345341245902, 34.68706808961781], [-77.33348588000052, 34.686852285666276], [-77.33343884138169, 34.68661953067016], [-77.33342043928289, 34.6865085045858], [-77.3332796470225, 34.68648656322791], [-77.33300075556204, 34.686437255303055], [-77.33289508517763, 34.68643083964629], [-77.332690694614, 34.68639164201086], [-77.331779412521, 34.686150381158036], [-77.33142863753012, 34.68607022896332], [-77.3307014973099, 34.68590422811825], [-77.3306558259277, 34.68589717327849], [-77.3306357479515, 34.68589196800989], [-77.33058936222206, 34.68588074917167], [-77.32984350489781, 34.68571320411053], [-77.32953122104047, 34.68564747529739], [-77.32874143055349, 34.68544259580017], [-77.32840763709021, 34.685394278498194], [-77.32819321152512, 34.68540629183744], [-77.32805548576779, 34.68525343188714], [-77.32714039557642, 34.68463975452027], [-77.32653357731802, 34.683604226322224], [-77.3264400624745, 34.683602074892065], [-77.32633861855788, 34.68353933140227], [-77.326459884826, 34.683418834434214], [-77.32660987875192, 34.68334170306627], [-77.32675446648746, 34.683360216971785], [-77.32792072038434, 34.682950493971326], [-77.32806345162012, 34.683141460397565], [-77.32828108340894, 34.68327302647849], [-77.32870587511812, 34.68343546960443], [-77.32894855324845, 34.68353305372041], [-77.32932858151867, 34.6834096236234], [-77.33018860256877, 34.683385392854674], [-77.33069426211046, 34.68334409031258], [-77.33079982863413, 34.68334183151438], [-77.33087040197422, 34.68334673438853], [-77.3313700303719, 34.6834394373413], [-77.33247839003776, 34.683649681096654], [-77.3325064764764, 34.68364827959183], [-77.33253002376586, 34.68364640731141], [-77.33276109261035, 34.68363344707014], [-77.33367167027924, 34.683556321831745], [-77.33373263155198, 34.68354837858818], [-77.33384848518222, 34.68358802587668], [-77.33463898143245, 34.68360035384735], [-77.33491430172404, 34.68360156313184], [-77.33511537546113, 34.68362795588599], [-77.33528255461316, 34.68358309662636], [-77.33543301057738, 34.68338356905474], [-77.3355565286706, 34.68325003813989], [-77.33558970352308, 34.68321710612077], [-77.33563868660018, 34.68316848119862], [-77.33594372815864, 34.682892689929204], [-77.3361561108263, 34.68268041909022], [-77.33642217278629, 34.6825319358693], [-77.33687570366341, 34.68244245829943], [-77.33705727353399, 34.68240612057356], [-77.33731889757276, 34.68232667173955], [-77.3376970784982, 34.6822640997874], [-77.33879917921472, 34.681830454246274], [-77.33890931659548, 34.68169246659688], [-77.3392983778585, 34.68087259662106], [-77.339349017274, 34.68078026637834], [-77.3398089175093, 34.67993679359342], [-77.34127125108239, 34.680073720845165], [-77.34114980253091, 34.68053317843727], [-77.34113698638366, 34.68096535250328], [-77.34113529070524, 34.68102254793404], [-77.34113267558745, 34.68111074623328], [-77.34110677961685, 34.681513835589584], [-77.34133548299457, 34.68160091604465], [-77.34146403634732, 34.681659195167015], [-77.3416247466936, 34.68177248192572], [-77.34191931180831, 34.68188971832423], [-77.34196009268321, 34.681908586412554], [-77.34207161765065, 34.681943400251335], [-77.34254353014381, 34.682064013871496], [-77.34276910061936, 34.68207435663727], [-77.34311037410887, 34.68217313447272], [-77.34316176506938, 34.68220659641149], [-77.34341766070467, 34.682363594413], [-77.34359412541886, 34.68256835823313], [-77.34396974543944, 34.682727073348765], [-77.34396238886737, 34.68307147812597], [-77.3440287570502, 34.683132731565635], [-77.34452876939135, 34.683085213399025], [-77.34445480876377, 34.68349127654281], [-77.34448582930199, 34.683512423999666], [-77.3445112682714, 34.68353225837639], [-77.34498866334619, 34.683519638848615], [-77.3450222097711, 34.68383390331262], [-77.34505146145463, 34.68386548148334], [-77.34504130495375, 34.68389816186356], [-77.34505086375147, 34.68394690389705], [-77.34514552173059, 34.68418726601582], [-77.34527547438823, 34.68435340127502], [-77.34539082989326, 34.684625628736114], [-77.34555717899659, 34.684658815269486], [-77.34563296572055, 34.68479171394661], [-77.34553180585173, 34.68501168076564], [-77.34565052968183, 34.685375318034076], [-77.34571482188574, 34.68557105159103], [-77.34577597700473, 34.68567295254189], [-77.34577337808307, 34.68574720181297], [-77.34593536695547, 34.6858421640753], [-77.34599286918495, 34.68590021686508], [-77.34617288492377, 34.685899273356], [-77.34622771616242, 34.68586602569276], [-77.34640887988121, 34.68578936273503], [-77.3466779149943, 34.685623049394906], [-77.34694201495859, 34.685467458622625], [-77.34713665081634, 34.68556008296186], [-77.3473285549045, 34.68566068579386], [-77.34748711209278, 34.685651542572884], [-77.34773259750399, 34.685743926800946], [-77.34782426231311, 34.68576768977826], [-77.34809792323202, 34.68560932884823], [-77.34867338871055, 34.685414095237256], [-77.34837154047865, 34.685877952791124], [-77.34852640632266, 34.68592139075303], [-77.34849873660048, 34.68610418290126], [-77.34854511400005, 34.68613059185491], [-77.34866310540177, 34.68619228112456], [-77.34868222929725, 34.6861956535267], [-77.34867909122421, 34.68620645447996], [-77.3487116404774, 34.68631864706698], [-77.34874300609383, 34.68647974758635], [-77.3488396891692, 34.68646865652015], [-77.34883136298876, 34.686660611071616], [-77.34889029175208, 34.686781503574814], [-77.34887448966933, 34.686836056429954], [-77.34883913204905, 34.68698664923233], [-77.34884727583763, 34.68703109914195], [-77.34885473035493, 34.68712565719676], [-77.34898441759168, 34.68714563999358], [-77.34896801055788, 34.68725821562612], [-77.34888582696257, 34.68734719887809], [-77.34890020787874, 34.68740753666485], [-77.34891160271769, 34.68744513560248], [-77.3489819201408, 34.687432395188345], [-77.34907900634201, 34.68738396349542], [-77.34921273560184, 34.687364114400836], [-77.3494145209162, 34.687259180109386], [-77.34948623196135, 34.68724121945906], [-77.34964898490693, 34.68716473207251], [-77.34970869383177, 34.68711930534508], [-77.3497690668392, 34.686935972267804], [-77.34976530445358, 34.68690507270702], [-77.3497686944149, 34.686853354641045], [-77.34978400797684, 34.68665881395705], [-77.34982587833001, 34.68626576021124], [-77.34988548024809, 34.686157501882235], [-77.34993688320272, 34.686018452171695], [-77.34981607761625, 34.68587623360513], [-77.34963780080213, 34.68570412281732], [-77.34939337046524, 34.68564836874243], [-77.34933261132399, 34.68547988607438], [-77.34895312806219, 34.68531073417545], [-77.34887352982602, 34.685260069418895], [-77.34894062278518, 34.684768509247576], [-77.34897026984886, 34.68439725648483], [-77.34896200306235, 34.6843347534377], [-77.34853464216799, 34.683944146901354], [-77.34827369314428, 34.68294272637466], [-77.34815345168498, 34.682660796710714], [-77.34779861808808, 34.68254493360045], [-77.34722285803302, 34.68243914777653], [-77.34656027126468, 34.682310185822615], [-77.3462455581481, 34.681682359728725], [-77.34586436044228, 34.68126905721462], [-77.34590267028018, 34.68085565743428], [-77.3459771162083, 34.6802999435381], [-77.34677525242446, 34.6798582594367], [-77.34743745484776, 34.67904160577294], [-77.34775327033631, 34.678652110894504], [-77.34837848247928, 34.67732278999034], [-77.35168762915907, 34.676787221904874], [-77.35238328742817, 34.67703384002235], [-77.35282203113178, 34.67749084478061], [-77.35301790606891, 34.67792928719766], [-77.35328513559445, 34.678050481810956], [-77.35368433106109, 34.67840390355266], [-77.35418552905628, 34.67874371103256], [-77.35424064231114, 34.6787640938783], [-77.35426576345554, 34.678795794969616], [-77.35462165655436, 34.6792592152342], [-77.35470007086218, 34.67936141159939], [-77.35505927916755, 34.679598485013315], [-77.3551383927614, 34.6796498702501], [-77.35519666567235, 34.67971246501436], [-77.35557629427181, 34.679875062408925], [-77.35576258953907, 34.6799578101985], [-77.35577876373794, 34.679987056503826], [-77.35622358110378, 34.68029841947521], [-77.35629153842078, 34.68033906611408], [-77.35716799036256, 34.680283633647505], [-77.3573427908513, 34.68031827811447], [-77.35742869608774, 34.6802704574735], [-77.35744828784972, 34.680258189260805], [-77.35748695965282, 34.68023982262971], [-77.3578931080115, 34.68001429656825], [-77.35803404745661, 34.6797861713164], [-77.35807416187879, 34.67967177864092], [-77.35813621646614, 34.67959158148815], [-77.35829568046728, 34.67934539256185], [-77.35842452073544, 34.67913626562702], [-77.35876601943347, 34.67887345057431], [-77.35910800677902, 34.67860859087784], [-77.35915252351096, 34.67857786498447], [-77.35919857046275, 34.67854254830601], [-77.35916254499975, 34.678523252325206], [-77.35914127073836, 34.67849397462484], [-77.35908761840975, 34.67838382334383], [-77.35901755813461, 34.67832372081813], [-77.3589665203397, 34.67827993723172], [-77.35887805455522, 34.678099190813526], [-77.3587990777815, 34.67801462011921], [-77.35872209588752, 34.677876149041566], [-77.35864560067466, 34.67773855306202], [-77.35858844362676, 34.677651588028226], [-77.35851195538486, 34.67756915041737], [-77.35844501223959, 34.67749875300007], [-77.35828268963667, 34.677328053488836], [-77.35820839916224, 34.67728668516732], [-77.3580836226033, 34.67723354675762], [-77.35792778464713, 34.67710848986398], [-77.35778039125155, 34.676996672214386], [-77.35758143811042, 34.67698089380635], [-77.35756103961619, 34.67652869590246], [-77.3577732288352, 34.67630141094473], [-77.35803857363848, 34.67610709305728], [-77.35848830399743, 34.67620318371694], [-77.35858199534464, 34.6762106630622], [-77.35860679103892, 34.676211323795705], [-77.35864041522447, 34.67620916015665], [-77.35922099564704, 34.67615709511627], [-77.35934999433829, 34.6760848105509], [-77.35928465273378, 34.67593774739099], [-77.3587520909344, 34.676079719940745], [-77.35892045470136, 34.67518096460918], [-77.35891882658392, 34.67516926849778], [-77.35962218770636, 34.67477466308217], [-77.359847867763, 34.67472671360315], [-77.36023937388768, 34.674710114109786], [-77.36035693855325, 34.674844251267984], [-77.36042876404518, 34.674961831596335], [-77.36054914445685, 34.67509050136878], [-77.36059770790168, 34.67539148327899], [-77.36058946926025, 34.67542714087731], [-77.3605491771625, 34.67548469593066], [-77.36035333127114, 34.675946969515024], [-77.36072630419442, 34.67613677457636], [-77.36098759455766, 34.67625632036107], [-77.36147416400087, 34.67628036765761], [-77.36156672401468, 34.67627822033914], [-77.36157998893815, 34.67627723405946], [-77.36186368061601, 34.67651379183426], [-77.36206700805198, 34.67666128744895], [-77.36208038019416, 34.67667122537622], [-77.3620908902062, 34.676683020123185], [-77.36218455657702, 34.67678813662266], [-77.36232494963556, 34.67680358345963], [-77.36263498299114, 34.67660826082722], [-77.36266257159556, 34.676583795307664], [-77.36268785350916, 34.676584155426], [-77.36276529235253, 34.676538158758405], [-77.36310314102907, 34.676336148145786], [-77.36340994396892, 34.67615808663025], [-77.36353846597252, 34.67608385269636], [-77.36389984771918, 34.67605890985833], [-77.36401703388536, 34.67612833746408], [-77.36411803120396, 34.67628516297944], [-77.36424256497916, 34.676382337928345], [-77.3642449892058, 34.6763845348976], [-77.3642475246243, 34.676386679937465], [-77.36430812945936, 34.67653303941451], [-77.36432618220928, 34.67661956587237], [-77.36436779690106, 34.67681902584075], [-77.36437065039586, 34.676857150165944], [-77.36439084703126, 34.67690258248211], [-77.36450407715446, 34.67717064679645], [-77.3645356453146, 34.67732186689952], [-77.364559016146, 34.677354292988255], [-77.36470882254102, 34.67740724815656], [-77.36477934710896, 34.67762623124781], [-77.36504606540981, 34.677541839011795], [-77.36499070055298, 34.67774672268245], [-77.36503640440846, 34.677943514254935], [-77.36527148338746, 34.677992710821925], [-77.36556409575158, 34.67793147879429], [-77.36555915798391, 34.67815599308986], [-77.36574363199617, 34.678187491986364], [-77.36580686388503, 34.67821015451972], [-77.36605214476445, 34.678312082125025], [-77.36607650027979, 34.67831217134552], [-77.36636184778934, 34.67804567945559], [-77.36620881797766, 34.67785610667073], [-77.36615650456908, 34.67786961662037], [-77.36619165444486, 34.677797563542754], [-77.36615447901215, 34.677586787464826], [-77.36610456613944, 34.67751536460454], [-77.36603206932858, 34.67743393544819], [-77.36594776844257, 34.67724184725988], [-77.36575136205181, 34.6771547972939], [-77.36564099453477, 34.67708379865289], [-77.36554481794673, 34.67705062242861], [-77.36504014817022, 34.67677683846442], [-77.36502641007394, 34.676774709238494], [-77.36502249016343, 34.67677151968999], [-77.3649799206568, 34.67677342358717], [-77.3650254706401, 34.67676382774312], [-77.36507619886729, 34.67633593277779], [-77.36509036123338, 34.67627085595342], [-77.36501079954567, 34.676112632721846], [-77.36496206563237, 34.67602957008942], [-77.3647884741663, 34.67582495201119], [-77.36475816485208, 34.67563659830165], [-77.3645617937731, 34.675549273715276], [-77.36449551186767, 34.67537782013563], [-77.36470001493062, 34.67519894319268], [-77.36458548805643, 34.67487806622195], [-77.36457552507918, 34.674750235183936], [-77.36461785783902, 34.67462992302942], [-77.3644997423398, 34.674464660834374], [-77.36448154684734, 34.67442835752996], [-77.3644639458814, 34.674407378946235], [-77.36428984080801, 34.67419713981242], [-77.36428260546047, 34.67418860400326], [-77.36428192175512, 34.674187819698055], [-77.36409289606065, 34.67397097875971], [-77.36407453143309, 34.673953260801504], [-77.36405498809296, 34.673934958326235], [-77.36385839829524, 34.67372543369267], [-77.3638254829744, 34.67369468082675], [-77.36363944593255, 34.67354590107279], [-77.36360885116332, 34.67352333308772], [-77.36358225441504, 34.673501705168796], [-77.3631957517168, 34.67344715210991], [-77.36306799595837, 34.67321157967322], [-77.36301444896974, 34.67319251120706], [-77.3630168078161, 34.673144070543], [-77.36283230123053, 34.6729926489277], [-77.36279561312068, 34.67296676684026], [-77.36277325575034, 34.67293384247587], [-77.36258743804923, 34.67280531967071], [-77.36249076305333, 34.67280724517992], [-77.3624484892107, 34.67273477325787], [-77.36226069641438, 34.672590148080246], [-77.36223709423751, 34.67252012596606], [-77.3621028681257, 34.6724129002193], [-77.36204210929569, 34.67236421357063], [-77.36195720590709, 34.67231488942359], [-77.36185010161194, 34.672252818039915], [-77.36171456660358, 34.67222216357217], [-77.36157698629577, 34.672162865042765], [-77.36134510015901, 34.67211239069563], [-77.3611771010709, 34.67207582222712], [-77.36101339320393, 34.672042798469185], [-77.36094591279502, 34.67202549904987], [-77.36083321645097, 34.671981935763434], [-77.36074389304903, 34.671940390972836], [-77.36058795283435, 34.67190686602635], [-77.360463706872, 34.671874809464505], [-77.36005795067884, 34.671920682856836], [-77.35988516445461, 34.67180626373106], [-77.35965821969512, 34.67165597981608], [-77.35945915802289, 34.67159324238346], [-77.35936440325966, 34.67153860836619], [-77.35892423336304, 34.67126942913505], [-77.3588864375676, 34.67124573048633], [-77.35885642551929, 34.67122691218705], [-77.35866248267148, 34.6711228328585], [-77.35847727731519, 34.671330829459336], [-77.35821333654906, 34.67176391369243], [-77.35786302716002, 34.67238998323855], [-77.35765292421195, 34.67278069815058], [-77.3564196340487, 34.673563019062534], [-77.35621920981359, 34.67406251959252], [-77.35553101344497, 34.67443688621167], [-77.35509125967883, 34.67416731434237], [-77.35361811768716, 34.672780006355744], [-77.35302423730336, 34.67207980029412], [-77.35358718561913, 34.67172879292647], [-77.35393808306809, 34.67167772888726], [-77.35507613994021, 34.67049597599273], [-77.3555806440601, 34.67014222062983], [-77.35601680805678, 34.66971926895998], [-77.35652437362833, 34.66922707450072], [-77.35651867717473, 34.669126461285906], [-77.35662555209186, 34.66866088209597], [-77.35666110176325, 34.66848136342164], [-77.35671572574772, 34.66818635351795], [-77.35670541129558, 34.668162526400025], [-77.3566962911418, 34.66810300464055], [-77.3567906966338, 34.66766342377012], [-77.35711459128247, 34.66719740511794], [-77.35714111344763, 34.667127903379686], [-77.35714796039241, 34.66706517967836], [-77.35735249911882, 34.66661147896404], [-77.3574740665558, 34.666239651801604], [-77.35749232926082, 34.66610488384123], [-77.3575196792797, 34.66599058728818], [-77.35746357895343, 34.66571624410201], [-77.35745343926452, 34.665647376871455], [-77.35743738693914, 34.665625045186815], [-77.35761621360723, 34.66512785057161], [-77.35710748833942, 34.66488131523204], [-77.35694793964318, 34.66485393220701], [-77.3560496411846, 34.66497658411906], [-77.35587643248088, 34.66499941586504], [-77.3557062275388, 34.66502148773912], [-77.35548033728605, 34.664919102622235], [-77.35488577459728, 34.66486472049754], [-77.35474261248692, 34.664782466259645], [-77.3542210392818, 34.66458807259381], [-77.35420511066496, 34.664572674719956], [-77.35394907260105, 34.66415465525833], [-77.3538801409681, 34.663866932581676], [-77.35362198158842, 34.662761589865774], [-77.35409437550402, 34.662446684447524], [-77.35362585782696, 34.662073468348666], [-77.35351191513712, 34.66168267843612], [-77.35334694136557, 34.66147728951951], [-77.35316483418089, 34.661432228717885], [-77.35308462334966, 34.66159302767598], [-77.35286708764372, 34.66177124019594], [-77.3528960690705, 34.66208422084166], [-77.35263524162208, 34.66198323935924], [-77.35240752027092, 34.66218900630821], [-77.35210649763637, 34.66253850203602], [-77.35200458893688, 34.66258663531562], [-77.35147856330254, 34.66280593306709], [-77.35095323340343, 34.66317296381893], [-77.35064329117176, 34.66292063529543], [-77.35077160014225, 34.66226994182596], [-77.3507512431791, 34.66141705321144], [-77.35076809967016, 34.66121549047051], [-77.35079335423791, 34.66079144661576], [-77.35054968285746, 34.65989463449576], [-77.35046932610126, 34.65956851222475], [-77.35029918928024, 34.65947311140373], [-77.35016587438177, 34.65925831668277], [-77.34957126812162, 34.658617650387846], [-77.34936961100117, 34.65848337575171], [-77.34903360897985, 34.65847978510283], [-77.34875283761842, 34.65860089327587], [-77.34843422641622, 34.658572266699075], [-77.34827866234264, 34.658181315392085], [-77.34805679293497, 34.65817123196592], [-77.34802690521887, 34.65817559946331], [-77.34765921914236, 34.657864288249186], [-77.34763342572302, 34.65786114689046], [-77.34762867744256, 34.65784855967102], [-77.34739558607298, 34.65775789292253], [-77.34730549172107, 34.65777272996201], [-77.34709938303723, 34.65777019346188], [-77.34681826215703, 34.65753782629291], [-77.34664969921334, 34.65751221984291], [-77.34659988144935, 34.657448416878495], [-77.34629009252829, 34.65725366446758], [-77.34597654169073, 34.65753324510631], [-77.34551647545585, 34.65745927087181], [-77.34533137030326, 34.65689795722906], [-77.34440593339428, 34.656091695283294], [-77.34392463711652, 34.656017823766824], [-77.34375709510938, 34.65604965346107], [-77.3431638018936, 34.65550751266237], [-77.34310124219269, 34.65535152419986], [-77.34296995616648, 34.65531960726633], [-77.34260424070649, 34.65514782685405], [-77.34224615348012, 34.65490458023457], [-77.34217124285014, 34.65489628936016], [-77.34191495373295, 34.65483493355673], [-77.34161687567624, 34.65484559506875], [-77.34159444823108, 34.65484820794038], [-77.34157178582207, 34.6548513373333], [-77.34128534748133, 34.65490336308578], [-77.34123873168558, 34.65492774662399], [-77.34113324000796, 34.65510921654408], [-77.34102501045459, 34.65520113051438], [-77.34074575684596, 34.6554219437172], [-77.34048213223424, 34.655686221169546], [-77.3404012745497, 34.655760446879135], [-77.34019358042286, 34.65591518051529], [-77.33997956552321, 34.656371909859146], [-77.33970977779751, 34.65632461361842], [-77.33964900411326, 34.65639273179294], [-77.33960659444305, 34.65652886731629], [-77.33968572815111, 34.656828869061464], [-77.33990993637792, 34.657076505425735], [-77.33989786913241, 34.657292282612985], [-77.33984809862996, 34.65731091690917], [-77.33979125630698, 34.65752638978325], [-77.33964585426702, 34.65759925914456], [-77.33957230686737, 34.65753184958313], [-77.3394902312038, 34.657579024281326], [-77.33926054876721, 34.65773120923369], [-77.33902883770998, 34.65801410829947], [-77.33850053871461, 34.65798970094122], [-77.33840886112887, 34.658115708663324], [-77.33830898452408, 34.657949354083875], [-77.33806825230539, 34.657894819920436], [-77.33722366717083, 34.65780150125997], [-77.33707335352065, 34.65784343457089], [-77.33688667074982, 34.65781772373411], [-77.33604741088529, 34.657833640807155], [-77.33580047460052, 34.65788278404314], [-77.33560955426105, 34.657960085191576], [-77.33549748975256, 34.65796844273205], [-77.33533624931528, 34.65809322177011], [-77.33522105839172, 34.65818625341541], [-77.33509183330378, 34.658303203012125], [-77.33495187095346, 34.65868069174002], [-77.33471527925762, 34.658856225414496], [-77.33453475093336, 34.65895859085547], [-77.33443255988524, 34.65904276612792], [-77.33432005961376, 34.65909181675343], [-77.33429022746019, 34.65925716234765], [-77.33446364227048, 34.6595594979993], [-77.33453527812269, 34.65967851264138], [-77.33477232789143, 34.66003501161807], [-77.33482035597248, 34.66026227060435], [-77.33507601293562, 34.6606515087999], [-77.33549218702969, 34.66122857747875], [-77.33576087283382, 34.66158736625644], [-77.33549890952297, 34.662756054810885], [-77.33474572192483, 34.66249195411852], [-77.33415848845084, 34.66245963161971], [-77.33390251447665, 34.66207879906696], [-77.3338492364486, 34.6618496185125], [-77.33379148503992, 34.661601195297386], [-77.3337197383006, 34.66129257340149], [-77.33365909664302, 34.66103171504069], [-77.33331591334834, 34.660943828564726], [-77.33321481034436, 34.66095033149416], [-77.33305847817697, 34.660916924786825], [-77.3330475760791, 34.66091484115525], [-77.33303785225424, 34.66092016178603], [-77.33290636273925, 34.6610088627491], [-77.33279311486623, 34.66115050555839], [-77.3327942313949, 34.661337543135616], [-77.33278262048118, 34.66198673176731], [-77.33278254262456, 34.66199393224245], [-77.33278240365, 34.66199596042175], [-77.3327823884629, 34.66199970258482], [-77.33277702534909, 34.66332337908235], [-77.33244711396206, 34.66372991995463], [-77.33204210178911, 34.66467616323294], [-77.33119573298002, 34.66451644762567], [-77.33072318691532, 34.6644868501155], [-77.33044100683755, 34.66433734165467], [-77.32939616949358, 34.66425718918526], [-77.32912891593531, 34.664185011879916], [-77.32830953401958, 34.663963719608866], [-77.3280447465179, 34.6639059546549], [-77.32750952107912, 34.66374447702441], [-77.32628965451568, 34.66336928114818], [-77.32508261908968, 34.6619121795784], [-77.32477973151568, 34.66176587884505], [-77.3234190350549, 34.66159199119212], [-77.32259260822197, 34.66150243483918], [-77.3219996047138, 34.65931552640856], [-77.3217402784688, 34.65859817498134], [-77.32174196569746, 34.65844599644013], [-77.32167996598066, 34.658301537785434], [-77.32026935286521, 34.655271954457106], [-77.32060604467794, 34.65237387177437], [-77.32097471503782, 34.652303806855706], [-77.32313465061874, 34.65221060767264], [-77.32452978337275, 34.653078767865594], [-77.3259352898937, 34.6534023498987], [-77.32830296331733, 34.654170500209446], [-77.32856890946302, 34.65426797403819], [-77.32867887141295, 34.65430946061076], [-77.32889127111768, 34.654357137721384], [-77.32924295884654, 34.65404158626679], [-77.32983737249357, 34.653700959407836], [-77.32993132940373, 34.65265889467425], [-77.33039702943744, 34.65065004642973], [-77.32995187209175, 34.650568422223586], [-77.3300442905886, 34.65009504481543], [-77.3304018311207, 34.65013496665655], [-77.33058246554721, 34.65028303657908], [-77.3328285570224, 34.64946493301943], [-77.3330662363287, 34.64995866194417], [-77.33416607259038, 34.64974801233782], [-77.33518191412587, 34.64955343882408], [-77.3353992748182, 34.64951180568402], [-77.33563460753145, 34.64946672820797], [-77.33597499944017, 34.649190263250695], [-77.33644655114884, 34.64967744250684], [-77.33640843202545, 34.65003125150884], [-77.33643492197393, 34.65010103337003], [-77.33644851985642, 34.6501516235367], [-77.33642910444428, 34.65031282904176], [-77.33642137846982, 34.65037697759601], [-77.33640343958407, 34.65052592242583], [-77.33640326499858, 34.65052737198445], [-77.33642273411061, 34.65071188212129], [-77.33642189043277, 34.65077834151559], [-77.33649158221634, 34.65077615776141], [-77.33661303768613, 34.650772351981985], [-77.33671653527851, 34.65076910879291], [-77.33683487548343, 34.65076301244871], [-77.33691016026802, 34.65065765226768], [-77.3369727235779, 34.65055806727982], [-77.33704754694013, 34.65043896582404], [-77.3370597238472, 34.65008976867672], [-77.33706046417763, 34.650015198513785], [-77.33705357954354, 34.6499662797909], [-77.33732206404133, 34.64955730641164], [-77.33732605986249, 34.64954067887503], [-77.33733060194616, 34.64955355928562], [-77.33733596279251, 34.6495553992041], [-77.33766789534909, 34.64964852844857], [-77.3378445443209, 34.64968422531813], [-77.33799857584607, 34.64970085776214], [-77.3381121116899, 34.6496199630378], [-77.33829027786838, 34.64955920983685], [-77.33836816459342, 34.64941375344826], [-77.33832500419217, 34.64915144883556], [-77.33828769504356, 34.64900280060897], [-77.33823239673634, 34.64891643997461], [-77.33813874815806, 34.64880510852629], [-77.33805122518108, 34.64870105954367], [-77.33797513952695, 34.6486236968827], [-77.33787503652701, 34.648475815860806], [-77.33771967359266, 34.648312843005755], [-77.33744491018741, 34.64832980641001], [-77.33734490916001, 34.64837720333358], [-77.33732844178022, 34.64822107141838], [-77.33736703633579, 34.64815120567749], [-77.33741710431212, 34.64797021129487], [-77.33758685486173, 34.64789825414457], [-77.33765200646593, 34.64797607480139], [-77.33765041426102, 34.647854394624034], [-77.33819062445605, 34.647851076539624], [-77.33827357995997, 34.647882791328236], [-77.33832870949597, 34.64782037996998], [-77.3387751077145, 34.64784207470897], [-77.33891103706156, 34.647868558669025], [-77.33926108220804, 34.64802522529624], [-77.33926226085356, 34.64802575281137], [-77.33926281628482, 34.648025914508715], [-77.33926386284965, 34.6480261585051], [-77.33960610647038, 34.64814101820237], [-77.33976557000904, 34.6481774482559], [-77.33978599733612, 34.648179976149905], [-77.33993422706591, 34.648180630980235], [-77.3400901073743, 34.64813025292297], [-77.34022933325257, 34.64805596021391], [-77.34047272413301, 34.64792558563762], [-77.34054377531548, 34.64788652568067], [-77.3406207128777, 34.64783862110487], [-77.34075523648843, 34.64775031109669], [-77.34080314652206, 34.64772503028586], [-77.34087269664863, 34.647593037100854], [-77.34088036187373, 34.64753349861421], [-77.34090858207057, 34.647377113050055], [-77.34098220799399, 34.6470229485129], [-77.34099202319534, 34.64697049525525], [-77.3409937612155, 34.64694342471033], [-77.34099970505827, 34.64688228441304], [-77.34103856775275, 34.646515277506], [-77.341059190435, 34.64636595497993], [-77.34112626445665, 34.646146697831036], [-77.34114002435032, 34.646079354687956], [-77.34114943666171, 34.645782961405935], [-77.34115610102079, 34.645655150566654], [-77.3411233414811, 34.645489377651586], [-77.34107491036147, 34.64524429766622], [-77.34104505850281, 34.64507030113932], [-77.34103331685692, 34.645039008230526], [-77.34102253190345, 34.64499724352155], [-77.3409783033453, 34.644915433871404], [-77.34088965201943, 34.644873190164816], [-77.34086987786418, 34.64487091140315], [-77.34085560479896, 34.64487132553625], [-77.34083401127633, 34.64485536593321], [-77.3405310551499, 34.644777980094275], [-77.34032990335136, 34.64476400246699], [-77.34015144913486, 34.64448209076239], [-77.33998237389153, 34.64430393786201], [-77.33992656402805, 34.644135922792486], [-77.33980744102566, 34.64386284439391], [-77.33972333304979, 34.64366869144313], [-77.33962781128815, 34.64346940786676], [-77.33954926360639, 34.64334371393092], [-77.33953420422708, 34.6432741183127], [-77.33944267813177, 34.6430762438885], [-77.33936425943992, 34.64294710882829], [-77.3391482107086, 34.64267581990593], [-77.3390615270321, 34.64268276364625], [-77.33886289683933, 34.642593921864716], [-77.33871559576501, 34.64221956298313], [-77.33846782497972, 34.64247619675366], [-77.33825388645948, 34.64267750289064], [-77.33804969392783, 34.642889016633006], [-77.3379192156379, 34.64293243613906], [-77.33776670249213, 34.642950068918125], [-77.33747061920792, 34.643015629467314], [-77.33733441470885, 34.64320856350436], [-77.33677410802918, 34.64303259308222], [-77.33666020222995, 34.64303966335899], [-77.33659910839101, 34.64296547429834], [-77.33631928743401, 34.64294298747283], [-77.33599475227304, 34.64291436406887], [-77.33593467874906, 34.64291611355442], [-77.33562339051697, 34.64303847740962], [-77.33547182789498, 34.643151238073834], [-77.33543450411281, 34.64331273558665], [-77.33527379875176, 34.643293072072794], [-77.33488109163025, 34.643745166747735], [-77.33480266959276, 34.643861026894214], [-77.33462416694323, 34.64401957017023], [-77.33440204214975, 34.644547811049414], [-77.33430738284859, 34.64473316768738], [-77.33410827577575, 34.64493433896368], [-77.33384105971314, 34.64563235223761], [-77.33277409980842, 34.6459452332141], [-77.33213258021138, 34.6460000368444], [-77.33166556662039, 34.646270295867716], [-77.33005087973672, 34.64674375633557], [-77.32958237283808, 34.64605470664071], [-77.3288915557133, 34.64634935465594], [-77.32780349669297, 34.64660040144133], [-77.32792148218255, 34.64578300559491], [-77.32804215361969, 34.64555619147984], [-77.3280969026238, 34.64503444892844], [-77.32833017273887, 34.644038990087545], [-77.32849998282894, 34.643314344232145], [-77.32851479521597, 34.642897092843654], [-77.32848719430268, 34.642329490894454], [-77.3283337644244, 34.642107603122604], [-77.32817653777045, 34.642242400988586], [-77.32762841919842, 34.6423558291185], [-77.32756412167561, 34.64238110230835], [-77.32747083928983, 34.64235328578578], [-77.32710974810472, 34.64223459358085], [-77.32691120938647, 34.6423181157025], [-77.32678028977128, 34.642375760079815], [-77.32640221853046, 34.64248712592021], [-77.32631358521317, 34.64253050188441], [-77.32625681784404, 34.64255426213985], [-77.32573981305572, 34.642650343342325], [-77.32569792712712, 34.64265307419438], [-77.32562507544127, 34.642631651406624], [-77.32517542868675, 34.642619566939686], [-77.32503158116629, 34.64252316841109], [-77.32465680566834, 34.64239475175397], [-77.32434051858236, 34.64227012894683], [-77.32418945334013, 34.64227542545273], [-77.32370992889645, 34.64231831658904], [-77.32325978503806, 34.64242479996725], [-77.3230919597023, 34.64242937739478], [-77.32292110259161, 34.64249008651706], [-77.32270686352923, 34.64257579220345], [-77.32253020437045, 34.6428204964084], [-77.32239859768663, 34.642955278825], [-77.32241420610282, 34.64316227994506], [-77.3224756978975, 34.64337148148112], [-77.32264204733127, 34.64397501822508], [-77.32289793688116, 34.644756405558475], [-77.32278714845005, 34.644799100110205], [-77.32295185275674, 34.64492104067621], [-77.32346713621872, 34.64600014661262], [-77.32370066324447, 34.646840825793205], [-77.32293753739927, 34.64704812498245], [-77.32186591480004, 34.64589062563968], [-77.32141412212644, 34.645472114304795], [-77.32134216550197, 34.64499720506351], [-77.32100048621729, 34.6443190967823], [-77.32091587951601, 34.64421167164175], [-77.32090084290766, 34.644192579461716], [-77.32087863408626, 34.64416188375271], [-77.3203257896086, 34.643448591237046], [-77.32039810838279, 34.64308909088612], [-77.32041373390156, 34.64301454849853], [-77.32045660682249, 34.64281002430675], [-77.32046863362842, 34.642752650129594], [-77.32050480883784, 34.64258007617656], [-77.32051510515089, 34.642530957609964], [-77.32050600189622, 34.64239181424661], [-77.32040415338807, 34.64242732989856], [-77.3203760043879, 34.642455087319114], [-77.32031185922315, 34.64248908102941], [-77.32023729366054, 34.64256148930673], [-77.32014728911975, 34.64262908739946], [-77.32017451579804, 34.64288025835531], [-77.31996269073201, 34.64278834202712], [-77.3197994913969, 34.64292913425065], [-77.319652318888, 34.643059941329625], [-77.3194412434298, 34.643380382976915], [-77.31938057282184, 34.643473545124], [-77.31932513457332, 34.64358576276901], [-77.31925130060979, 34.64402021886398], [-77.31899254227164, 34.64433494538174], [-77.31895770370582, 34.64441342016576], [-77.31892618226998, 34.644484422166784], [-77.31883482850625, 34.644966071833586], [-77.31866374183826, 34.645364366299425], [-77.31814766192878, 34.64650591883793], [-77.31714850570505, 34.64606074394813], [-77.31692368133298, 34.64678795403458], [-77.31623801539503, 34.64653322180888], [-77.31584250690118, 34.64575103352513], [-77.3150778442299, 34.64423874835983], [-77.31386247759994, 34.64429563455851], [-77.31191997459328, 34.643846721279786], [-77.3111932570844, 34.64375650410806], [-77.3108225262134, 34.643478069997144], [-77.30938259789006, 34.64326030249809], [-77.3087634131842, 34.64296215350247], [-77.30850563772506, 34.64312549388208], [-77.30819820189875, 34.64303992228581], [-77.3066203695536, 34.642612248854874], [-77.30543757526708, 34.6405968403872], [-77.30510557510094, 34.64047031645375], [-77.30536440546022, 34.64023191666046], [-77.30621826974648, 34.638520078868964], [-77.30607305225735, 34.63696194669251], [-77.3055480987507, 34.63555572996119], [-77.30574258785828, 34.632735446162954], [-77.30728859426274, 34.63004375222668], [-77.30784599378177, 34.62936068921581], [-77.3082503023241, 34.629082008789965], [-77.30929117179635, 34.628041031052135], [-77.30936310984706, 34.62800869812481], [-77.31045530379863, 34.62730877359982], [-77.31149397603892, 34.62742926547018], [-77.3119971665513, 34.627386322402], [-77.31301400107716, 34.627299536769726], [-77.31341901311906, 34.627515855267006], [-77.31322085736726, 34.62770778392521], [-77.31327422533506, 34.628379666902276], [-77.31326002194588, 34.628411847940534], [-77.31346531732204, 34.6290707972369], [-77.31354723322528, 34.62918622030003], [-77.31364268330296, 34.62943683125127], [-77.31393503018339, 34.62997704212259], [-77.31402291811442, 34.63026225199442], [-77.3140914703074, 34.63052358515918], [-77.31411554477543, 34.63079627139711], [-77.31442821955963, 34.63115876327708], [-77.31466521983282, 34.63128614215158], [-77.31507850544051, 34.63150826486323], [-77.31512450954745, 34.63152476583322], [-77.31514472837297, 34.63153932091319], [-77.31563451105792, 34.63166304658852], [-77.31586323157971, 34.631929780029964], [-77.31624031459134, 34.63219299676233], [-77.3164563658593, 34.63233170218208], [-77.31659080720135, 34.63236542569581], [-77.31707617886917, 34.632922397630544], [-77.3172606330218, 34.63303517832773], [-77.31740581644351, 34.63323681924197], [-77.31764511393345, 34.63342185509111], [-77.31784070316988, 34.633661573148125], [-77.31799092045367, 34.63388506636265], [-77.31818073278743, 34.63434375313428], [-77.31819756903563, 34.6344566272834], [-77.31815856161603, 34.63499046969655], [-77.31814112539371, 34.63530833657853], [-77.31815258757388, 34.635652319862245], [-77.31813454157604, 34.63573122553517], [-77.31818839747592, 34.635789300370746], [-77.31859183419876, 34.63609052691367], [-77.31860817170585, 34.63610617073613], [-77.31862300127726, 34.636112468931586], [-77.3186347628405, 34.63610272472814], [-77.31913857129283, 34.636204139125105], [-77.31927218017375, 34.636157157949306], [-77.31937479786104, 34.63612656624908], [-77.31942372120801, 34.63611474020546], [-77.31948400964615, 34.63609434576147], [-77.3195736236836, 34.636064156877595], [-77.31983013811652, 34.635983183272145], [-77.31987465991743, 34.635969129153615], [-77.31990911983958, 34.63595825114769], [-77.32017961603515, 34.63587286262727], [-77.32037757857435, 34.63572841467809], [-77.32042221279957, 34.635507403768074], [-77.3207219297914, 34.635365987515115], [-77.32097819574591, 34.63508771406409], [-77.32116024418221, 34.63512466185983], [-77.32202117749644, 34.63509001097346], [-77.32227935332341, 34.63519108829723], [-77.3228128210395, 34.63533345483732], [-77.32305452295739, 34.635340238828974], [-77.32325437749151, 34.63545129180419], [-77.32302966968845, 34.63553599942486], [-77.3229932828961, 34.635558402501296], [-77.32283235411045, 34.63577991918568], [-77.32269270845886, 34.63588865989398], [-77.32273814117093, 34.63596636874911], [-77.32278484731607, 34.63597472025774], [-77.32309959949512, 34.636088101778064], [-77.32324943896907, 34.636102127976656], [-77.32349401764449, 34.63626240961767], [-77.32370244659009, 34.636353248532124], [-77.32380436491206, 34.63640969560858], [-77.32413562361593, 34.63664361902038], [-77.32427958233703, 34.63670342809368], [-77.32447972921292, 34.63658478943936], [-77.3247181251895, 34.636638464754405], [-77.324864444929, 34.63690663777406], [-77.32487392805346, 34.63690395451697], [-77.32501589800323, 34.63686378406116], [-77.32501631213381, 34.636724143856846], [-77.32512130558135, 34.63659155161895], [-77.32525983317947, 34.63644225553923], [-77.32531015391415, 34.636331211012696], [-77.32538390115275, 34.63630504363264], [-77.32562501902352, 34.63599128473193], [-77.32563722520472, 34.635972358593094], [-77.32564122110057, 34.63596796325142], [-77.32571785614397, 34.63537725185889], [-77.32599963002286, 34.63458847222792], [-77.32670158890755, 34.635008239361035], [-77.32672696083793, 34.635022473729464], [-77.32679743412554, 34.63505081692888], [-77.32721408674925, 34.63514160598274], [-77.32739918451172, 34.63518193820506], [-77.32758753796031, 34.63512137997125], [-77.32760342419198, 34.63485486900415], [-77.3278627059225, 34.634711018188455], [-77.32793122107748, 34.63464314097591], [-77.32806174759429, 34.634611577840765], [-77.3284697033693, 34.63413647910994], [-77.32866714959292, 34.6341276223214], [-77.32878374345647, 34.63410629021695], [-77.32889119730248, 34.634117572162296], [-77.32902630617465, 34.634129379083944], [-77.32910915514016, 34.634132737885736], [-77.32917706188044, 34.63412562695139], [-77.32936323688973, 34.634110377108954], [-77.32941736977246, 34.63407353386985], [-77.32950721019517, 34.634046024378705], [-77.32971343961356, 34.63395384463631], [-77.33016130962748, 34.63418837140781], [-77.33079193127342, 34.63379860115947], [-77.33104537587188, 34.63438272914923], [-77.33075184930206, 34.63473987929589], [-77.33059603157072, 34.634866364795144], [-77.33060436521603, 34.63493581085537], [-77.33057262283634, 34.6350443944167], [-77.3305770707154, 34.63507996209006], [-77.33056990681247, 34.635098973097854], [-77.33058050141909, 34.63508363012638], [-77.33071698286271, 34.63509479928642], [-77.33086005754367, 34.63525213710545], [-77.33093675129086, 34.63526362351161], [-77.33121986355462, 34.63524719783254], [-77.33125825873024, 34.63527059781304], [-77.33141841868675, 34.63542808445725], [-77.33145167167777, 34.63543671981547], [-77.33153052253806, 34.635493138543126], [-77.33155957964135, 34.635494203486886], [-77.33159966719165, 34.63537667301637], [-77.33163054450056, 34.63535743218269], [-77.33158739730331, 34.63531557254116], [-77.33151539321585, 34.635236122439025], [-77.3314349949567, 34.635173263195455], [-77.33131622526298, 34.6350564493319], [-77.33109861130534, 34.63439638837443], [-77.33108828360422, 34.63437684281832], [-77.33098305694497, 34.63362114304514], [-77.33098509403551, 34.63354701394999], [-77.3312503830355, 34.632891083996306], [-77.33123411050003, 34.63252094545485], [-77.33120368790512, 34.63182905338148], [-77.33110448151146, 34.6308842088241], [-77.33101713913811, 34.63016667330207], [-77.33094605759538, 34.62958258270008], [-77.33033461976817, 34.626884347535196], [-77.3303277510851, 34.6236664138574], [-77.33031561306407, 34.62351104038217], [-77.33237904983498, 34.62172359333814], [-77.3332010394465, 34.621011510672744], [-77.33404141240904, 34.62047826586288], [-77.33461618036355, 34.62011355845563], [-77.3359220766721, 34.62088371186521], [-77.33611950840161, 34.62095534746931], [-77.33749197408376, 34.62168392457572], [-77.33812766530323, 34.621570910118976], [-77.3387573166807, 34.62160983799499], [-77.33930273665547, 34.62137188236214], [-77.3399307275559, 34.62107805176597], [-77.34086948568196, 34.62073363361566], [-77.34110324616115, 34.62054194384804], [-77.34115157265367, 34.62042943922552], [-77.34201190590129, 34.61869245096342], [-77.34226399697941, 34.618799282551294], [-77.34478457295813, 34.61974897806094], [-77.3458577285791, 34.620039725364684], [-77.34753734113531, 34.620706138863675], [-77.34780005669383, 34.620785634029446], [-77.34853959295576, 34.621009399771076], [-77.34889632913024, 34.62109803189635], [-77.34900823209328, 34.62109371975529], [-77.34998237024995, 34.62105618040487], [-77.35016572915299, 34.62104412235806], [-77.3502826908411, 34.620949312318245], [-77.35036987883261, 34.62075635024962], [-77.35169270587178, 34.619792553145345], [-77.35301883413005, 34.620375332741474], [-77.35321067379957, 34.620410788562985], [-77.35326919937103, 34.62044867931536], [-77.35348423500193, 34.62054002062786], [-77.35371362000177, 34.62027538763718], [-77.35405795791385, 34.61986092889961], [-77.35428462887575, 34.619588096473784], [-77.35484715211837, 34.61844620115548], [-77.35485725873829, 34.618423537428036], [-77.35487247412618, 34.61841047705944], [-77.35581596867213, 34.617619448307344], [-77.35594706641447, 34.61740677308525], [-77.35599509111219, 34.61701347929016], [-77.3560526066305, 34.61654248608068], [-77.35506007480677, 34.616457128698265], [-77.35484854575046, 34.61587360798573], [-77.354366705276, 34.61560593221296], [-77.35371112470885, 34.61395499653409], [-77.35352237046438, 34.61351011139086], [-77.35355335908586, 34.613203974866295], [-77.35381185773568, 34.61065061692851], [-77.3559030215871, 34.61033689012389], [-77.35642835318778, 34.610120436228236], [-77.3571729363033, 34.61048449764998], [-77.35721649238504, 34.61050163815239], [-77.35734676558494, 34.610552903528486], [-77.35800476762526, 34.610629701684665], [-77.35848141182498, 34.609913172450874], [-77.35879345559688, 34.60993433574717], [-77.3590533755416, 34.60988704110663], [-77.35918766694839, 34.60984483974987], [-77.3595536780168, 34.61009497222911], [-77.3591873361823, 34.61051374974613], [-77.3591201878801, 34.61050958339045], [-77.3587930701886, 34.61070654032826], [-77.3584030026847, 34.61110967053646], [-77.35868561186177, 34.61180295406651], [-77.35876803740342, 34.61190624403127], [-77.35877735112105, 34.61192118195353], [-77.35879245669089, 34.61193735905685], [-77.35910352230624, 34.612371800806514], [-77.35948447725704, 34.61265224521297], [-77.3595332997895, 34.61269599077362], [-77.3595804122295, 34.61275174935401], [-77.35990514109018, 34.6129415542787], [-77.35998600713523, 34.61299220119016], [-77.36001180648225, 34.61304113919212], [-77.36018001273334, 34.61340125195855], [-77.36024588001898, 34.613523735309734], [-77.36033641083546, 34.613803296612595], [-77.36036825620464, 34.61383213819144], [-77.360509160802, 34.614051115338086], [-77.36064507646603, 34.61405713460931], [-77.36076233502854, 34.61405720771266], [-77.36087834086825, 34.61402492838214], [-77.36102587562071, 34.613987875662374], [-77.36115660970981, 34.61386833432407], [-77.36143698614283, 34.61376752487234], [-77.36155086082218, 34.613726297924536], [-77.36168381662445, 34.61375258433425], [-77.36192757863411, 34.613593165565035], [-77.36194511149363, 34.61358214348538], [-77.3619491448305, 34.613575524140316], [-77.36194858269397, 34.61357126424244], [-77.36204945739811, 34.61324440964772], [-77.3620854388417, 34.613127012308865], [-77.3622102244294, 34.61282388460101], [-77.36226154675393, 34.61267711051691], [-77.3622989374719, 34.612627793735555], [-77.36233976463073, 34.61254965864547], [-77.36251701615669, 34.612215784984535], [-77.36259859472214, 34.612058024722344], [-77.36273428226166, 34.611797511716816], [-77.36275544392629, 34.61175691179916], [-77.36275971794134, 34.61135892555216], [-77.36276469659879, 34.61133102581622], [-77.36277129406467, 34.61129045772127], [-77.36273452771721, 34.611253233255454], [-77.36248183297721, 34.61109949434257], [-77.36234046816487, 34.61100510036022], [-77.36232041529038, 34.610992026747056], [-77.36209087989062, 34.61073450022219], [-77.3619684780521, 34.61059652510587], [-77.36195908056187, 34.610584317215704], [-77.36197470667756, 34.610201275872754], [-77.36198403753757, 34.61016973185338], [-77.36214385768811, 34.609969066876054], [-77.36216265281512, 34.60995198111407], [-77.36234098992693, 34.60986202251278], [-77.3626880585248, 34.60969465080693], [-77.36273523878198, 34.60967896545938], [-77.36276901041396, 34.6096685586603], [-77.3628930540892, 34.60961433299124], [-77.36308532970756, 34.60953911600495], [-77.36312950666559, 34.609449452579035], [-77.36324760917111, 34.609265861290595], [-77.36342515125861, 34.60879505807043], [-77.3634560951898, 34.608684175516885], [-77.36344162629445, 34.607926247605405], [-77.36344107672947, 34.6078372284058], [-77.36336361169252, 34.60767512727254], [-77.36303714924301, 34.607046264922964], [-77.36296841288292, 34.60680639993905], [-77.36273688078397, 34.60605893637054], [-77.36259390980314, 34.60556609301673], [-77.36253874067096, 34.60541979279344], [-77.36247128463182, 34.60514296170782], [-77.36256547681221, 34.603717727886675], [-77.36273813859515, 34.60329906994867], [-77.36339528280575, 34.602890607989764], [-77.3635266302231, 34.60280308196367], [-77.36356853482036, 34.60276934792381], [-77.36356629925035, 34.602724546961475], [-77.36355813483878, 34.60269183912438], [-77.3633817765169, 34.60190199898435], [-77.36320759094161, 34.601422294241345], [-77.36330781490595, 34.599127819985746], [-77.3636817772459, 34.59846237253832], [-77.3643173033992, 34.59733148720484], [-77.36456024358984, 34.59689918216078], [-77.36549565163381, 34.59523457017792], [-77.36547590481332, 34.59480761691674], [-77.36358228315076, 34.594175371661386], [-77.36274250702981, 34.59380436752269], [-77.36240134936122, 34.5935520537053], [-77.36229199515375, 34.592355640521696], [-77.36116660556556, 34.59285249359482], [-77.3603182821505, 34.592153702057985], [-77.36003871533686, 34.59171143001822], [-77.3595912948802, 34.59079602409774], [-77.35946307493954, 34.59057859276217], [-77.35959143950494, 34.590508593949565], [-77.35969508893659, 34.59043357064962], [-77.36064171180053, 34.58984186814805], [-77.36116819754025, 34.589564055960956], [-77.36122506883254, 34.589537107736554], [-77.36186301361244, 34.58948459760705], [-77.3619563795974, 34.58947691237821], [-77.36205935660138, 34.589466685026544], [-77.36262965358539, 34.589397434993586], [-77.36274457831246, 34.58934986884672], [-77.3628134462542, 34.58932136485585], [-77.36290773044446, 34.589233609285095], [-77.36295151008895, 34.58900453836055], [-77.36303066715683, 34.58879135557522], [-77.36304275422631, 34.58868597224715], [-77.36309698677823, 34.58835725213019], [-77.3635334363305, 34.58777664717324], [-77.36370352065235, 34.58760397692191], [-77.36392760569292, 34.587538574413905], [-77.36424818561335, 34.587342394300606], [-77.36423649234678, 34.58725217389634], [-77.36432191245734, 34.586989759187304], [-77.36441177746983, 34.58656634336888], [-77.36448733873183, 34.58645884845046], [-77.36452453901009, 34.58623554624276], [-77.36432226978445, 34.58619493203071], [-77.36417553485856, 34.58607918886296], [-77.3639840032392, 34.58604673320768], [-77.36377900532226, 34.58597541424633], [-77.36353423976104, 34.586025708761966], [-77.36340628393349, 34.5859033116212], [-77.36274646321243, 34.585322621939035], [-77.36260483011615, 34.585184338721575], [-77.36248149525068, 34.58504942869448], [-77.36178455195692, 34.584488356606656], [-77.36169692950489, 34.58431327458955], [-77.36165863344108, 34.58399516378055], [-77.3615704800622, 34.58348237094138], [-77.36148188312914, 34.583160510597374], [-77.36145297913973, 34.58265017923043], [-77.36134536728306, 34.58247850472728], [-77.3612433157367, 34.58190816681447], [-77.36125049043136, 34.58183022331006], [-77.36125055139657, 34.581745592602715], [-77.36117205939412, 34.58165252760439], [-77.36103949357661, 34.58115458974341], [-77.36079071270356, 34.581047307010365], [-77.36054311976501, 34.58091189692745], [-77.36038439457596, 34.580851002590066], [-77.36016293758554, 34.58089909420142], [-77.3595962965218, 34.58092784976208], [-77.35909244153598, 34.580985527997925], [-77.35880817497218, 34.58104652131719], [-77.35854227260765, 34.58108449806953], [-77.35801997950742, 34.58130047542624], [-77.35737948663972, 34.581379288014375], [-77.3564437932799, 34.58140615049137], [-77.35519965028192, 34.58136064483852], [-77.35455165687978, 34.58143668372271], [-77.35329240064824, 34.57991914399364], [-77.35195541212798, 34.57977162269295], [-77.3505567450359, 34.57952430776856], [-77.35014047944736, 34.57945173351758], [-77.3493753209489, 34.57931832227051], [-77.34777674485838, 34.57952322127725], [-77.34698784143355, 34.58011264617508], [-77.34641443608244, 34.57995085042744], [-77.34491778681011, 34.579618430431005], [-77.34383599622852, 34.57956282208722], [-77.34328902632929, 34.579320134342495], [-77.34259181520656, 34.579063154305175], [-77.34226050887702, 34.57870238228989], [-77.34184494707462, 34.57827771566399], [-77.34124303867986, 34.577916190872976], [-77.3409177385642, 34.57771236013316], [-77.34068525183346, 34.577573253644644], [-77.34026070843422, 34.57760003580174], [-77.33989722744525, 34.57755821928432], [-77.33955682705852, 34.57767624839132], [-77.33910916386161, 34.577595246417204], [-77.33833451751096, 34.57749967162721], [-77.33831046415618, 34.57750034916767], [-77.33753306056057, 34.577633978044894], [-77.33701564454998, 34.57796680393696], [-77.33674474272163, 34.5779907108068], [-77.33658512588731, 34.577908881515924], [-77.33595662930936, 34.57808171690411], [-77.33545966005107, 34.57821235687165], [-77.3351684846916, 34.57820897819099], [-77.33491248892904, 34.578253066237465], [-77.3343802751614, 34.57841280825155], [-77.33389851918977, 34.57845308115134], [-77.33359217638574, 34.578476822921004], [-77.33330221904464, 34.57852111721953], [-77.33280405151578, 34.578570513783205], [-77.33262043862567, 34.57850463047137], [-77.33211955331713, 34.57849022555521], [-77.33201603338115, 34.57853505997069], [-77.33189093272335, 34.57854636560795], [-77.33162197433906, 34.57857645565171], [-77.33137221575923, 34.57864163469148], [-77.33122786251579, 34.57867930611455], [-77.33060754496009, 34.57877684167244], [-77.33022586128881, 34.57888121239509], [-77.33032864900807, 34.57851618684022], [-77.33044013347701, 34.57830725149084], [-77.33063122916606, 34.577949115088614], [-77.33075002197317, 34.57772648023277], [-77.33083475734139, 34.577606400410595], [-77.33100433073233, 34.577447955340254], [-77.3312290033769, 34.57734108292559], [-77.33160067712724, 34.57715544320042], [-77.33167120728194, 34.5771178372978], [-77.33201742387061, 34.57688613252227], [-77.3321359093303, 34.57680581492743], [-77.33272958632257, 34.576674832395824], [-77.33280564623716, 34.57665805129182], [-77.33287128243661, 34.57664323691018], [-77.33348183137619, 34.57648477177715], [-77.33358100358514, 34.57645668412378], [-77.33359092286199, 34.575623898606615], [-77.33359108797666, 34.57561998881937], [-77.33359068161016, 34.57561589406796], [-77.33343157270558, 34.57497000456711], [-77.33332617332584, 34.57480898806075], [-77.33312638704521, 34.5744940550114], [-77.33301626441514, 34.574229210333385], [-77.3330614575867, 34.57399795967649], [-77.33320205210856, 34.57378009592891], [-77.33335204930484, 34.57369319607216], [-77.33359618671109, 34.57361883305121], [-77.33385956984326, 34.57359945669484], [-77.33409745048431, 34.573540011862534], [-77.33438436335153, 34.57340350944189], [-77.33440631042647, 34.57338010633223], [-77.33454092504476, 34.57310464967426], [-77.33469483985877, 34.57291408928496], [-77.33496213215068, 34.57264847951767], [-77.33517312017884, 34.57246564653063], [-77.33560294231017, 34.57232052086249], [-77.33596138368863, 34.57212251372613], [-77.33625790654237, 34.57236965810856], [-77.33654232649232, 34.57242565673804], [-77.33674911083763, 34.572449430298576], [-77.33683792694876, 34.5725102416625], [-77.33704607543581, 34.57257606970802], [-77.33714298076242, 34.572607652348175], [-77.33750549408373, 34.5725439926474], [-77.33753701384725, 34.57255871030724], [-77.33757442792898, 34.572540405131335], [-77.33765333188201, 34.572488761085616], [-77.33793123420827, 34.57226777499302], [-77.33807280015863, 34.57215635756526], [-77.33812834889551, 34.5721151235794], [-77.3381954440562, 34.571986274086335], [-77.33812855214622, 34.57185252382749], [-77.33809024337212, 34.571830426839895], [-77.33805351663875, 34.57171343971773], [-77.33796320254321, 34.571595124459634], [-77.33793178957954, 34.57155245481944], [-77.33769085175445, 34.571469431868344], [-77.3376780347996, 34.57121158425372], [-77.33753823407613, 34.57099677233332], [-77.33738648503422, 34.57099248173018], [-77.33720921758302, 34.570854447853485], [-77.3370058930775, 34.5706085524012], [-77.33700251413096, 34.57045962588686], [-77.33675080541516, 34.570306952615624], [-77.33656411351835, 34.5702992924343], [-77.33614194212194, 34.57015881034077], [-77.3360215453179, 34.57011302523397], [-77.33596302739801, 34.57006932356545], [-77.3358870813223, 34.570113652883734], [-77.33570906484228, 34.57022104343313], [-77.33532506935562, 34.57043821228979], [-77.33517457593436, 34.57066775751182], [-77.33486425251388, 34.5708573502269], [-77.33459348468841, 34.571230499169516], [-77.33447863808414, 34.571346779619084], [-77.33438597605111, 34.571433392935624], [-77.33406216992776, 34.57180737206923], [-77.33359750265174, 34.572028995442146], [-77.33324015062658, 34.57227411681808], [-77.33298947453085, 34.572504487019856], [-77.33280897717833, 34.572673295406425], [-77.33228031245791, 34.572981445668965], [-77.33202062513836, 34.57309823745867], [-77.33182668551188, 34.573117403441074], [-77.331626639082, 34.57308386330875], [-77.33155385938805, 34.57301951272377], [-77.33123295909675, 34.57271206806426], [-77.33115747267816, 34.57265485482125], [-77.33111143250571, 34.57258008189403], [-77.33095253896826, 34.57230037941767], [-77.33088415584382, 34.57218820867176], [-77.33087822057269, 34.572147283922995], [-77.33078377401525, 34.571778096984374], [-77.33077525150722, 34.571424626800514], [-77.33082611757732, 34.5709229351081], [-77.3307223174301, 34.57064092833427], [-77.33060932393349, 34.57027985014867], [-77.3305467530783, 34.57011401031257], [-77.33051746402477, 34.57004259166349], [-77.33044742576857, 34.569873321234425], [-77.33036189830952, 34.56971603981444], [-77.33044762716217, 34.56964118959156], [-77.33070016552827, 34.569514891760754], [-77.33109582017993, 34.56933691283301], [-77.33123590449122, 34.56927646040015], [-77.33131748014938, 34.56924203206762], [-77.3316028220222, 34.56911314915984], [-77.33163003854595, 34.569096360940385], [-77.33164048080603, 34.56909648407914], [-77.33193251263825, 34.56896704029633], [-77.33202425964078, 34.568811743284876], [-77.33233001994833, 34.56867926779465], [-77.33245159667904, 34.56860236779647], [-77.33254379896204, 34.56841841398372], [-77.33241715165397, 34.568147023096756], [-77.3321994200468, 34.56799032191399], [-77.33202501972491, 34.56791723920236], [-77.33169425845102, 34.567401851765666], [-77.33148251215478, 34.5671684943447], [-77.33132160289132, 34.566606337987], [-77.33129103234954, 34.566553847628896], [-77.33123839299404, 34.566381190005146], [-77.33107553108516, 34.56596851100427], [-77.33105964103952, 34.56579491310881], [-77.3309617610708, 34.56551007189859], [-77.33091824516073, 34.56539069806301], [-77.33089836366827, 34.56533640621362], [-77.33084534885256, 34.565315315119065], [-77.33068528781786, 34.56525163699173], [-77.33045154553083, 34.565133379281555], [-77.33038093055323, 34.5651194954612], [-77.33015876140936, 34.56507531782991], [-77.32978955362827, 34.56499281035488], [-77.32966417262257, 34.564509777541915], [-77.32960633661183, 34.56436809760695], [-77.329597911894, 34.564306849047426], [-77.3295315099104, 34.564173111260594], [-77.32966469097123, 34.56392133369989], [-77.32988562413249, 34.563654254193715], [-77.32997916724929, 34.56340297847039], [-77.32966525622098, 34.56327991051852], [-77.3292809567315, 34.56308900955871], [-77.32926901069963, 34.5630831655147], [-77.32926316279374, 34.5630723755635], [-77.32899904281771, 34.56269476821322], [-77.32904933211324, 34.56250295194845], [-77.32918168792953, 34.562146323388525], [-77.3293782154975, 34.56179119841807], [-77.32953937530601, 34.56105673100903], [-77.32935350471496, 34.56094567480338], [-77.3288799338607, 34.56038458605686], [-77.32866292917234, 34.56042966588521], [-77.32838268192356, 34.56054948498312], [-77.32809200120965, 34.56044540460625], [-77.32796916760488, 34.56042794422606], [-77.32769804471096, 34.56046435605282], [-77.32734734039937, 34.560431476514495], [-77.3273041357135, 34.56043095532506], [-77.32726834764127, 34.56043483117898], [-77.32691016482629, 34.56046533860369], [-77.32670954310153, 34.56047656930236], [-77.32691026925772, 34.56035140224063], [-77.3269495130955, 34.560059552763434], [-77.32718961578453, 34.5601067787824], [-77.32730443058739, 34.56010757739888], [-77.32748789474206, 34.56013792495555], [-77.32750827859164, 34.56014207234087], [-77.32769822984253, 34.5602602586842], [-77.32802171562979, 34.5602120298226], [-77.32809220311538, 34.56022163394809], [-77.32814277832938, 34.56021610519133], [-77.32885643354707, 34.56014248125486], [-77.32888019108981, 34.56009650898348], [-77.32892953013977, 34.56010435517042], [-77.32965715948015, 34.56004115133089], [-77.32946832147793, 34.55944690292414], [-77.32936425609682, 34.55924597933971], [-77.3291497578218, 34.55911212451913], [-77.32889195762831, 34.55883935208211], [-77.32888505333986, 34.558829668080364], [-77.32888171240408, 34.55882570326521], [-77.32887138233583, 34.55881399220456], [-77.32867052331027, 34.55836642591706], [-77.32844506350818, 34.55819713541828], [-77.32839699760059, 34.558160922684486], [-77.32838970102205, 34.55808267390648], [-77.32868840579023, 34.55787422688479], [-77.328777518372, 34.557774636066725], [-77.32891956269808, 34.557651987504556], [-77.32911744969451, 34.557322934455996], [-77.32906268051833, 34.556919794858246], [-77.3290565819044, 34.55684205358565], [-77.3290828732249, 34.55674953479863], [-77.32899409190249, 34.556606220615656], [-77.32905256781572, 34.55653113668819], [-77.3289447194163, 34.55656994018847], [-77.3286260609727, 34.55661236417038], [-77.32839670772161, 34.556595587203034], [-77.32816017203174, 34.55653714229507], [-77.32811617724519, 34.55651532715956], [-77.32805297350892, 34.55649666388471], [-77.32797119279934, 34.556388434761125], [-77.32762896487091, 34.55606797207546], [-77.32757049229366, 34.55596273455028], [-77.32743392875479, 34.55560637349581], [-77.32742838533639, 34.55558757449947], [-77.32739682689564, 34.55559314023981], [-77.3272844536579, 34.55562785468286], [-77.32674077008605, 34.55578941853754], [-77.32660511894053, 34.55586834438645], [-77.32639761486843, 34.555884441772065], [-77.32517043506752, 34.55593164373496], [-77.3250460942387, 34.55594122934426], [-77.32503282524615, 34.555940610656144], [-77.32501013926047, 34.55594053215519], [-77.32345686033338, 34.55617014932958], [-77.32344435668202, 34.55617188703556], [-77.32343525809783, 34.55618096483667], [-77.3226589864421, 34.55670883119578], [-77.32244924387868, 34.55668108084374], [-77.32185884993176, 34.55734402963607], [-77.32181813367058, 34.55736750495622], [-77.32184611816032, 34.5573885286553], [-77.32184635996921, 34.55739553172863], [-77.32143021300135, 34.55817233660434], [-77.32129377639347, 34.55844712708343], [-77.32103689165875, 34.558972792560766], [-77.32103643833715, 34.55897372020801], [-77.32103633541686, 34.55897427224937], [-77.32084197558194, 34.55949127716597], [-77.32088159533845, 34.5598926379095], [-77.32003237396613, 34.56058681478452], [-77.31901709271436, 34.5637161975015], [-77.31926116436193, 34.56409385327153], [-77.31879587720988, 34.56433566979823], [-77.31863303484167, 34.564787193556846], [-77.31788205873124, 34.56688123480321], [-77.31712009720307, 34.567797605945486], [-77.31642407087553, 34.568918039191274], [-77.31547580185058, 34.57007099387626], [-77.31265044647397, 34.57218995978875], [-77.31114312507921, 34.5733204496163], [-77.3091666933677, 34.57480278221977], [-77.30815377604577, 34.57478592900128], [-77.30630504658771, 34.57614262694393], [-77.30353035416343, 34.5772634760065], [-77.3030474593152, 34.577571287363426], [-77.30204255539367, 34.5782553033215], [-77.29848618472394, 34.580351474901335], [-77.29514274941802, 34.580101190971824], [-77.29356660581806, 34.5813432159073], [-77.29190029964104, 34.582409984853804], [-77.29256279569606, 34.584799021574575], [-77.29148156668509, 34.587359666249284], [-77.2902444409458, 34.590316906342736], [-77.28987791882481, 34.59120127206523], [-77.2870892711119, 34.592299883969694], [-77.28595016565343, 34.592869433812865], [-77.28565318397756, 34.59295260693954], [-77.28528003414519, 34.59307085167017], [-77.28088597572531, 34.59471000819443], [-77.27946875299864, 34.595391666491224], [-77.27798642781481, 34.59610464181131], [-77.27665495929655, 34.597103269211644], [-77.27630040358625, 34.59737657785782], [-77.27605759116014, 34.5975513016033], [-77.27500898989334, 34.59866184603944], [-77.27430833924507, 34.60021395801607], [-77.27406814086807, 34.60083276789571], [-77.27382780373291, 34.602899282620896], [-77.2729554309658, 34.606247824358135], [-77.27269739199772, 34.607184345787296], [-77.27181202028278, 34.60789268277601], [-77.27092988920577, 34.60891940370191], [-77.27000484397135, 34.61000838151014], [-77.26883642698861, 34.61125186651658], [-77.26866650673334, 34.611427906102556], [-77.26801223051977, 34.61178781959953], [-77.26690024376109, 34.61244714966378], [-77.26656986052907, 34.61271908870578], [-77.26615423965347, 34.61254351000113], [-77.26576570579786, 34.61225209574837], [-77.26520984525317, 34.611908802013055], [-77.26298944788539, 34.61035229554117], [-77.26107545820084, 34.60924875659545], [-77.2591586244645, 34.60884731330003], [-77.25720381361062, 34.60906246433592], [-77.25704168465596, 34.60938116086189], [-77.25687909303977, 34.609700752609676], [-77.25753421862146, 34.61130522966502], [-77.25534430021129, 34.61266726141223], [-77.25417942444855, 34.613650617466796], [-77.25306187612577, 34.61472409174872], [-77.25233257802435, 34.615247683679186], [-77.25016334901929, 34.61747935834052], [-77.24943161846028, 34.617926703085494], [-77.2492799529403, 34.61819715368433], [-77.24709622970569, 34.621108684958244], [-77.24632025813395, 34.621734862207035], [-77.24387625615586, 34.62338496767126], [-77.24145178520342, 34.62512218827994], [-77.24024724080738, 34.62553615640828], [-77.23924305468358, 34.6257209307533], [-77.23326571518001, 34.62824784600524], [-77.23226338615528, 34.62895461642316], [-77.23005293457732, 34.63054205498193], [-77.22839998826552, 34.63163498789801], [-77.22597515750252, 34.63302058322515], [-77.22567883571979, 34.63361782791816], [-77.22638441844526, 34.63524684432161], [-77.22600949003399, 34.63594659389334], [-77.22702269920332, 34.636523346325134], [-77.22785813377729, 34.63819420287664], [-77.22834729505074, 34.639172543857974], [-77.22847712240166, 34.63943219868956], [-77.22869886086131, 34.63987565060896], [-77.22909616330708, 34.64067014516799], [-77.22889830942867, 34.6417408010922], [-77.22831991856282, 34.64294122557009], [-77.22799952221163, 34.644019175425825], [-77.2270927245515, 34.64539486975282], [-77.22472756280746, 34.64642869819477], [-77.22640032793258, 34.64755609030814], [-77.22636222745322, 34.648443096893736], [-77.2265839407502, 34.64895690606211], [-77.22642609538698, 34.65006185377789], [-77.22639368252598, 34.65033101014952], [-77.22638901373901, 34.650499249028684], [-77.22642748248693, 34.65101895713522], [-77.22642921505705, 34.65221923072948], [-77.2266078552488, 34.65335631184031], [-77.22665013249781, 34.654122046594416], [-77.22672542687584, 34.65558775185051], [-77.22666364803021, 34.65600856115247], [-77.22680720294329, 34.65622070849829], [-77.22687186350258, 34.656802555364436], [-77.22699607910522, 34.657920193736224], [-77.22737752505562, 34.6587974060125], [-77.22741709940898, 34.6588961065612], [-77.22740816127614, 34.658934937414216], [-77.22786635183745, 34.65987422811021], [-77.22832904797235, 34.66058780369865], [-77.22862562167545, 34.66141865685824], [-77.22902312106352, 34.661850816447206], [-77.22662415672106, 34.665105860860905], [-77.2288315938136, 34.66560652585078], [-77.22712317066133, 34.66646076199313], [-77.22526364030007, 34.66663629794627], [-77.22458855830297, 34.66586688194054], [-77.2245196104382, 34.66526658647841], [-77.22323146410943, 34.66398548696296], [-77.22299971111103, 34.663521951967994], [-77.22234502409917, 34.662212646103], [-77.22188256927718, 34.66128773890881], [-77.22176165396189, 34.66104591183017], [-77.22155513270386, 34.66063285186786], [-77.22090120560313, 34.659324878215656], [-77.2205237132689, 34.658569833686336], [-77.219545053076, 34.65793891101572], [-77.2187917158065, 34.65727298084161], [-77.21781827441427, 34.65664231774214], [-77.21707663048826, 34.65614938474752], [-77.21517957925553, 34.65584079681625], [-77.21106465001917, 34.65469155315262], [-77.20864696715039, 34.6541926197802], [-77.20519020379145, 34.65296259091954], [-77.20138770684795, 34.6521271665776], [-77.19954319081246, 34.65171732302783], [-77.1991502846017, 34.65156006769235], [-77.19835926696558, 34.65140069128217], [-77.1989600387444, 34.65193522248736]], [[-77.23280407263046, 34.68202913774992], [-77.23228906837524, 34.680800424463136], [-77.23248446054203, 34.6790330548086], [-77.23123473109601, 34.68063449304128], [-77.23153680700483, 34.680902984516564]], [[-77.3300290939397, 34.76830163721684], [-77.33080252210647, 34.766754883867016], [-77.3312388250761, 34.766292395277375], [-77.3323036043069, 34.765209713532734], [-77.33284617517862, 34.765382577293785], [-77.33367365669689, 34.76616099148987], [-77.33369825504478, 34.76630417311784], [-77.33373249899832, 34.766353356206146], [-77.33486568288826, 34.76698337212324], [-77.33572071596961, 34.76736313561113], [-77.33604900593217, 34.76765035595453], [-77.33661309651147, 34.76790801001501], [-77.33672783883583, 34.76802070943899], [-77.3369071545929, 34.768011346695985], [-77.33735241312306, 34.76822503925413], [-77.33774048375618, 34.76865932725326], [-77.33777871091993, 34.76872297084787], [-77.33829968687314, 34.76907348273108], [-77.33830518305876, 34.769138170689246], [-77.33838827267932, 34.76932337592327], [-77.33840948513654, 34.76936755855186], [-77.33841368150341, 34.76938001192686], [-77.33840776735462, 34.76945544524012], [-77.33842079442255, 34.76960969457064], [-77.33834566313578, 34.76966905379468], [-77.33818480435879, 34.76978147435989], [-77.33797623849351, 34.76990926482664], [-77.33768798552629, 34.76993785888769], [-77.3376676799877, 34.76994012631293], [-77.33764183291045, 34.76993883699779], [-77.33736771298604, 34.76994143556945], [-77.33712117936615, 34.769979404447874], [-77.33682668322277, 34.76985509454891], [-77.33679578245162, 34.76984774189027], [-77.3364271103691, 34.77012667794986], [-77.33645871580752, 34.770167480076736], [-77.33660178091262, 34.770346421054775], [-77.33659380967158, 34.770384784623936], [-77.33663771683688, 34.770391368444294], [-77.33681488587109, 34.77080458137367], [-77.33692040375571, 34.77092204399537], [-77.33701906606437, 34.77114053900238], [-77.33706664486513, 34.77125744348303], [-77.33709218242447, 34.771366965881796], [-77.33712167595496, 34.77149358614226], [-77.3371139373462, 34.771561586235244], [-77.33710564308242, 34.771739469602586], [-77.33710929957041, 34.77202046900933], [-77.33674482117438, 34.772633619799784], [-77.33679836446152, 34.772756333699725], [-77.33678275022692, 34.77300789418837], [-77.33659838092626, 34.77353448676039], [-77.33675963424045, 34.773736385031995], [-77.33727504088375, 34.77438170201086], [-77.33735528880284, 34.774529301880094], [-77.33800966050835, 34.77537133614773], [-77.3381496541475, 34.7754953369365], [-77.34005567432644, 34.7771835368103], [-77.34196177250737, 34.77887170326892], [-77.34419187645452, 34.780846650737715], [-77.34661814921319, 34.77934444785901], [-77.34757222082175, 34.77810231197007], [-77.34908658961021, 34.77496894267614], [-77.349007150387, 34.77400645765628], [-77.34962049624599, 34.772983815759474], [-77.35165708586572, 34.76974386943916], [-77.3526785481643, 34.76793801624066], [-77.35449436610207, 34.76873597186025], [-77.3548829457497, 34.76893750871055], [-77.35697375239383, 34.76845075003856], [-77.35742738498637, 34.76855774255593], [-77.35810901457187, 34.76866761019494], [-77.3586486464733, 34.768784428614914], [-77.35906476079433, 34.768875472305545], [-77.35923600725235, 34.768912939479755], [-77.35954255424386, 34.7690930869356], [-77.35987151316118, 34.76934941654528], [-77.36032569442709, 34.769578959844175], [-77.36035968948738, 34.76959245472753], [-77.3603953010256, 34.7696379671611], [-77.36050140868181, 34.769979710615836], [-77.36112120290414, 34.77045125560615], [-77.36120313437975, 34.770580104740915], [-77.36129768848073, 34.770650239991426], [-77.36143371829729, 34.770689018766326], [-77.36158920059663, 34.77086564765524], [-77.36164082738085, 34.77102779356994], [-77.3615627120552, 34.77116500476053], [-77.36106961229085, 34.77143548737952], [-77.36097389948048, 34.77143447716311], [-77.3609488444553, 34.77150939108705], [-77.3609729365834, 34.771568431627344], [-77.36063985581072, 34.7723856824227], [-77.36064298094577, 34.77252080317057], [-77.36051875765565, 34.77264998936215], [-77.36013054447778, 34.77305020783374], [-77.3598793895339, 34.77332428888805], [-77.359799174112, 34.773343946391634], [-77.35947210532754, 34.773470808252874], [-77.35912558755474, 34.77371053638414], [-77.35878597265241, 34.77384611298051], [-77.35851089197408, 34.774011525745415], [-77.35870729236703, 34.77429649619982], [-77.3587647183693, 34.77495281812611], [-77.35874238554045, 34.77521101651115], [-77.35879388450002, 34.77535672796124], [-77.35895752649228, 34.775845545776704], [-77.35900870762404, 34.77595602716187], [-77.35890068018651, 34.77628025014259], [-77.35885824331154, 34.77637003219978], [-77.35876705159164, 34.776502857135284], [-77.35866779848142, 34.776648154451955], [-77.35845274761994, 34.77678735020287], [-77.35812036637282, 34.77717089572939], [-77.35808321415092, 34.777189613187375], [-77.35804926374632, 34.77720537291442], [-77.35736030602408, 34.77750481930029], [-77.3573349588331, 34.77751461270159], [-77.35724814078668, 34.777581289122786], [-77.35685450942965, 34.77790569690305], [-77.35691982566911, 34.778282013952094], [-77.35698692600928, 34.77851128021968], [-77.35701135801177, 34.77857232505008], [-77.35689803447514, 34.77899522968602], [-77.35689534049254, 34.779038464619376], [-77.35687454964948, 34.77907550689669], [-77.3566935334238, 34.77940957991515], [-77.3566334695387, 34.77950605145912], [-77.35657900939164, 34.77964474930593], [-77.35642727048733, 34.77999312219212], [-77.35631599044314, 34.780289746869364], [-77.35607085251527, 34.780748717808656], [-77.35597550857302, 34.780953491583446], [-77.35593278908246, 34.78116067094339], [-77.35574399943032, 34.78143170784807], [-77.35581333905941, 34.78174837021279], [-77.35598465528548, 34.78207517160993], [-77.3561786524231, 34.78248882206742], [-77.35600430413776, 34.78277538926089], [-77.35576601644702, 34.78306593233201], [-77.35574200098151, 34.783095214353565], [-77.35573338860908, 34.783105715316644], [-77.35543315050745, 34.78333890196832], [-77.3551909524511, 34.783475114611385], [-77.35497192297944, 34.783590458869845], [-77.35461850887904, 34.78369665855746], [-77.35431330719202, 34.78379479699882], [-77.3537862685816, 34.78397247439706], [-77.35365688772575, 34.78399156126562], [-77.35347886096577, 34.78396408003788], [-77.35345013954013, 34.78423089644652], [-77.35360136319395, 34.78418264026676], [-77.35377852542389, 34.784229395141054], [-77.35416719736457, 34.784297624460066], [-77.35426913215393, 34.78438966493543], [-77.3543622014941, 34.78448155335903], [-77.35463913207194, 34.78473576426116], [-77.35477102851578, 34.78485957436774], [-77.35492068709507, 34.78505825132834], [-77.35532342503586, 34.785522177711705], [-77.3555204634026, 34.78582739772275], [-77.35555490198635, 34.785872091078915], [-77.35549074615312, 34.786221788016334], [-77.35547255735517, 34.78635259922067], [-77.3554652260549, 34.78636730676608], [-77.35545640926374, 34.786372447785695], [-77.35544635189632, 34.78637457340727], [-77.35539230249607, 34.786385996652996], [-77.35510450308621, 34.786446822619645], [-77.35505403660672, 34.78646318844091], [-77.35474861877444, 34.786567370615344], [-77.35465287281457, 34.786555906038245], [-77.35402565391793, 34.78684698193568], [-77.35393856550343, 34.786923945435326], [-77.35390163242137, 34.786981652728855], [-77.35384155734359, 34.78708367961255], [-77.35358943647316, 34.78751186666669], [-77.35345051105173, 34.78776828512056], [-77.35323482926239, 34.788047898237345], [-77.3530319003476, 34.788204482354566], [-77.35264313547326, 34.78832992649228], [-77.35292335111282, 34.78857801166512], [-77.3530318890642, 34.78867410283081], [-77.35318748370192, 34.78854177450056], [-77.35363347651948, 34.788196565889805], [-77.35375387060677, 34.78808101112038], [-77.35379854948549, 34.7880209916556], [-77.35383736652673, 34.78792553061887], [-77.35404244946392, 34.78754710582204], [-77.35415516939929, 34.78734704838824], [-77.35418739421971, 34.78729231952651], [-77.35436448854574, 34.78710056710207], [-77.3546276638397, 34.78698362618075], [-77.35486738730803, 34.78690677729748], [-77.35519364750814, 34.78683150423272], [-77.35526471005876, 34.78680777354745], [-77.35532412611859, 34.78679521606766], [-77.3556701710778, 34.786722079569884], [-77.35597353139181, 34.78654519193628], [-77.3561999791831, 34.78609090810465], [-77.35621024926078, 34.786068796642944], [-77.35621689570308, 34.78604284473729], [-77.35598515141866, 34.78543078155364], [-77.35598561850084, 34.78524660662238], [-77.35588092507157, 34.784878944464495], [-77.35555886747662, 34.784531717398764], [-77.35546485882446, 34.7841302151596], [-77.35574906880515, 34.78385564550743], [-77.35573638586126, 34.78366600402455], [-77.35599202575824, 34.78350417538551], [-77.35599953688003, 34.78347848037349], [-77.35602771679804, 34.78344412056106], [-77.35617772156697, 34.78326122019345], [-77.35624853673644, 34.783174875587235], [-77.35649259935195, 34.78277372258121], [-77.35678474359851, 34.78255420852527], [-77.356913320813, 34.78240018115143], [-77.35686953507292, 34.782201296370694], [-77.3567141577106, 34.782011153041466], [-77.35643992253581, 34.781487604570614], [-77.35651138317633, 34.7811410374753], [-77.35665191156899, 34.78083921935499], [-77.35671084064447, 34.780651606494615], [-77.35677083602894, 34.78045739984801], [-77.35688492310703, 34.78015329282716], [-77.35699445970054, 34.7799018109847], [-77.3570834852033, 34.779663549266175], [-77.35724937085092, 34.77936575257527], [-77.35734138001872, 34.779194570494354], [-77.3573833598661, 34.77904023284599], [-77.35770995110559, 34.77858362303434], [-77.3578777052694, 34.77835114490419], [-77.35794632537556, 34.778287817071345], [-77.35813212040247, 34.77810586265372], [-77.35844835965675, 34.77778688640914], [-77.35863636123759, 34.77741084539741], [-77.3587441487182, 34.77723234707456], [-77.35886849719932, 34.776976439453], [-77.35888245847556, 34.77693774028495], [-77.35891790006545, 34.77688631794382], [-77.35910468461398, 34.77661394194808], [-77.35918417418736, 34.77648410036417], [-77.35929023106155, 34.77616861277892], [-77.35940017688128, 34.77600046379612], [-77.35940571553667, 34.77579078065577], [-77.35926551698732, 34.775394102080156], [-77.35932337602465, 34.774725171596934], [-77.35962909882733, 34.774402884501555], [-77.35993088441774, 34.77422125093021], [-77.36018142050482, 34.773682906345456], [-77.36030351995285, 34.77352045823305], [-77.36037220643297, 34.7734455018631], [-77.36053432954536, 34.77327836517649], [-77.36092943702184, 34.77285935638281], [-77.36111290556701, 34.77268526631736], [-77.36143065375364, 34.77240138254707], [-77.3615261308443, 34.77233777311454], [-77.36219632093511, 34.77197418720839], [-77.3622135182599, 34.77196454496396], [-77.36222685050086, 34.77195666226753], [-77.36232284011622, 34.771899009452184], [-77.36246564112713, 34.77162815286485], [-77.36241009377393, 34.7714615662493], [-77.3623661802833, 34.771389351009084], [-77.36216413530916, 34.771072567180425], [-77.36201263946516, 34.7707632424305], [-77.36193540565348, 34.77066353408986], [-77.36168937620306, 34.77037769382889], [-77.36145544445955, 34.77010709133309], [-77.3613288613857, 34.76996470552014], [-77.36114974854222, 34.76970982497175], [-77.36100367461471, 34.76945360779666], [-77.36092935062999, 34.76935532078194], [-77.36049082564168, 34.769146658230454], [-77.36045534979837, 34.769132575526584], [-77.36042693284055, 34.76911821359066], [-77.36036075016915, 34.76906664308311], [-77.35960393407217, 34.76856830330849], [-77.359399746999, 34.76834922967997], [-77.35854717083963, 34.76802915628947], [-77.3583094241664, 34.76797768937166], [-77.35820380232722, 34.767960664843464], [-77.35718586416876, 34.76772057679007], [-77.3561526459046, 34.76796111933452], [-77.35495786468644, 34.76734144600634], [-77.35495394200885, 34.767306068666606], [-77.35588498542282, 34.76567175824539], [-77.35663305934196, 34.765498761712976], [-77.35759635500223, 34.765274010034446], [-77.3579213686417, 34.765188597046325], [-77.35816035809208, 34.765133868651716], [-77.35856316228396, 34.765041625561985], [-77.35869694777348, 34.764878723794745], [-77.35873136821755, 34.7647953534521], [-77.35881930662225, 34.76461823565475], [-77.35876318591447, 34.76439129788036], [-77.35876049791375, 34.764382615988715], [-77.3587593449821, 34.7643796099482], [-77.35875796811455, 34.76437095934741], [-77.35872628866719, 34.7640108044871], [-77.35870429539679, 34.76390294583439], [-77.35868144658161, 34.763651062559354], [-77.35869105887723, 34.76341737812148], [-77.35856085025745, 34.762987054265274], [-77.35855466484979, 34.76296011458924], [-77.35855029697343, 34.76294931608253], [-77.35853477580719, 34.76291265218833], [-77.35843129723845, 34.76266076707056], [-77.35835320902216, 34.76248898498466], [-77.35830072720087, 34.76236695861422], [-77.35813999724687, 34.76203086617033], [-77.35804873099934, 34.76177231260448], [-77.35782370068117, 34.761399896120345], [-77.35760982865949, 34.761321414900785], [-77.3575968622548, 34.76113065185487], [-77.3573784963303, 34.76087016781594], [-77.35725896358386, 34.76080281289914], [-77.35721581232147, 34.76069557148002], [-77.35715267589956, 34.7606163894163], [-77.3570529084028, 34.76056706362732], [-77.35696651922868, 34.76056656376555], [-77.35683873808742, 34.76066596902778], [-77.35677693357187, 34.760717771010746], [-77.35672266036448, 34.760763260113436], [-77.35640668904249, 34.76102809221037], [-77.35604686646549, 34.76132967498727], [-77.35602728732201, 34.761346084988745], [-77.35569577963331, 34.76167493385296], [-77.3552421990143, 34.76203737712222], [-77.35488170797346, 34.76223041939866], [-77.35370993834114, 34.76318733332923], [-77.35255950062862, 34.762726711219116], [-77.35097006761598, 34.764369423589194], [-77.34764134815264, 34.76347678596367], [-77.34654074855962, 34.76311837138846], [-77.34654376016027, 34.76273539208306], [-77.34655166138194, 34.762646214635865], [-77.34524941071882, 34.76215386913867], [-77.34470716847449, 34.76192445078309], [-77.34451327629245, 34.761848900076345], [-77.34405620570162, 34.761494584878456], [-77.34401610056246, 34.76149820796685], [-77.3435439997774, 34.761109225221254], [-77.34353824049657, 34.76110447991962], [-77.34353275109446, 34.76109995694799], [-77.34350894354458, 34.76109302634153], [-77.34299768359237, 34.760879655456414], [-77.34265857251616, 34.76099247115397], [-77.34235748467219, 34.76102105576945], [-77.34207968947146, 34.76110355343575], [-77.34182235896672, 34.76134532282982], [-77.34147203205218, 34.76184188704632], [-77.34117016268476, 34.76213681175627], [-77.34084442147844, 34.762454172004595], [-77.34078384592945, 34.76250889019367], [-77.34070215516726, 34.76259364690582], [-77.34003975625185, 34.763126376783354], [-77.33958978081006, 34.76360094700069], [-77.33942351610816, 34.7638571261016], [-77.33920215062236, 34.764141467862046], [-77.33942165500872, 34.76426938407855], [-77.33945110771157, 34.76459470704373], [-77.33972314835886, 34.76482592654486], [-77.33979959755564, 34.76503430197307], [-77.33993346076201, 34.76523795418463], [-77.34004764180865, 34.7653647900141], [-77.34015245296415, 34.7654732955396], [-77.34039202674931, 34.76588836406928], [-77.34068373224163, 34.766250119112016], [-77.34076200123503, 34.76636446859695], [-77.34078422158056, 34.76637518487192], [-77.34079717755729, 34.766388818066844], [-77.34109909758955, 34.766805621921584], [-77.34113524517132, 34.76689365819839], [-77.34144593013536, 34.76724543883799], [-77.34142179688715, 34.76746169852423], [-77.34145868017207, 34.767731066205855], [-77.34142252362216, 34.76785530922709], [-77.34155715318636, 34.767896634659294], [-77.34192771971716, 34.76786109394499], [-77.34244378615031, 34.767809151433134], [-77.34281635955361, 34.767687097956774], [-77.34366240718583, 34.76761194458035], [-77.34438039154804, 34.767552170161544], [-77.34519245644003, 34.76775756342429], [-77.34716649151568, 34.76841041347323], [-77.3470155730763, 34.76867960404103], [-77.34598251949497, 34.77052229498054], [-77.3453465402037, 34.77165673507075], [-77.34381667333146, 34.77249084678273], [-77.34326796777346, 34.772844094421636], [-77.34177295312438, 34.77359802895705], [-77.3410682090128, 34.77370076055537], [-77.34082339866285, 34.77344005804511], [-77.33984153080584, 34.77379807337016], [-77.33936056331866, 34.77337984310567], [-77.33905516061792, 34.773222657529416], [-77.33880095635455, 34.7732552656727], [-77.33838813559422, 34.77302578138318], [-77.33832871420847, 34.77299274946328], [-77.33828513278515, 34.772968522660626], [-77.33803648749043, 34.77283030080971], [-77.33803294857829, 34.77282594118934], [-77.3378272435463, 34.77265642176249], [-77.33778632858629, 34.77262325381076], [-77.33778379508514, 34.77262330319908], [-77.33778425299388, 34.77262119142194], [-77.33778443119334, 34.77261849924324], [-77.33771871372733, 34.77188501594422], [-77.33771897279206, 34.77165539484359], [-77.33767164907995, 34.771241923738856], [-77.33766397923543, 34.77117556130206], [-77.3376539921969, 34.77114645616078], [-77.3376337116106, 34.77108735184916], [-77.33749237102137, 34.77071171297319], [-77.33741726570346, 34.770540114471586], [-77.33739269926858, 34.77035648791232], [-77.33767584089318, 34.77034134974394], [-77.33787260016506, 34.77026572226192], [-77.33796253580249, 34.770222921026985], [-77.33807174693281, 34.77014491745967], [-77.3383811122953, 34.76995536612402], [-77.33861612910965, 34.76976920728995], [-77.3388170850358, 34.769703221520544], [-77.33886243429282, 34.76954914893721], [-77.33888791350998, 34.76940961898107], [-77.33874672042052, 34.76932003015335], [-77.3386942540466, 34.76916433065449], [-77.33866065478657, 34.76908943852262], [-77.33863725139346, 34.76881398972533], [-77.33837954111658, 34.768640602616166], [-77.33795259204045, 34.76792978414953], [-77.33786460078719, 34.767831313556655], [-77.33771085575287, 34.767757526829485], [-77.33700603527197, 34.76706389247493], [-77.33688428249503, 34.76700828066629], [-77.33603894078476, 34.76626869260691], [-77.33588459859429, 34.76620014142467], [-77.3356800473464, 34.766086417126985], [-77.33508791583297, 34.76523596460917], [-77.33506502391302, 34.76510271572678], [-77.33491705897023, 34.764241512678325], [-77.33484864163835, 34.76384330867594], [-77.33466255155267, 34.76276012851537], [-77.33438826967628, 34.76262061911358], [-77.33443019082115, 34.761986831308775], [-77.33399017774974, 34.76046958821814], [-77.33574909027905, 34.75902316521379], [-77.33684682406775, 34.759021043324125], [-77.33703418059295, 34.75901000804594], [-77.33716119445928, 34.75906017479658], [-77.33809333792206, 34.75920250307683], [-77.33843937213604, 34.759155275032555], [-77.33870051398586, 34.7591747032516], [-77.33898673800962, 34.75908551039046], [-77.33936083093148, 34.75896409028013], [-77.33950230621215, 34.75882029028908], [-77.33980349215881, 34.758697907443945], [-77.3400648090104, 34.75860326462511], [-77.34017400773263, 34.758566873286476], [-77.34051663119435, 34.75844224141228], [-77.34074623075786, 34.75832001092414], [-77.34126013559134, 34.75801079622563], [-77.34135835249442, 34.75791128376844], [-77.34149064517891, 34.757820019942734], [-77.34166314147241, 34.75771184489891], [-77.34152740548663, 34.75769355052645], [-77.34135127410903, 34.757661736774985], [-77.34100633668562, 34.75759943176352], [-77.3409582115935, 34.75759073903733], [-77.34093654164582, 34.75758644089911], [-77.34092055286496, 34.75756998759331], [-77.34075809468507, 34.757379510502936], [-77.34053155986129, 34.75713595340473], [-77.34051964010106, 34.75711864792973], [-77.34050347605336, 34.75709416516932], [-77.34034686201255, 34.75685732527062], [-77.34029546298203, 34.75677930021163], [-77.34024577570808, 34.756737964373784], [-77.34023604411311, 34.75668910078124], [-77.34018862257909, 34.75663161889294], [-77.34011671735003, 34.75664010968139], [-77.34003735063688, 34.75663679204817], [-77.33992111020697, 34.75663800363432], [-77.33946708603551, 34.7567454132434], [-77.33940224306505, 34.7567607532831], [-77.33910947005157, 34.7568435716531], [-77.33881272286429, 34.756932695639726], [-77.33873187087299, 34.757006013244784], [-77.33778737428224, 34.75730095295921], [-77.33701087540362, 34.75745131480354], [-77.33612809842872, 34.757719561183976], [-77.33534180449496, 34.75768760587847], [-77.33362712826876, 34.75807934456536], [-77.33285477578858, 34.757493214222436], [-77.33159994026124, 34.756925652168555], [-77.33155399589646, 34.756967730710365], [-77.33155717850461, 34.75690409069661], [-77.33032659255097, 34.75628358769147], [-77.32948064117578, 34.75585701506689], [-77.32851722256703, 34.75537119159231], [-77.32787635578325, 34.75501408461661], [-77.32746645106216, 34.754543026481116], [-77.32658385024622, 34.75368662653738], [-77.32673374942422, 34.75273944624154], [-77.32675526605843, 34.75268841398677], [-77.32674005337142, 34.7526190552169], [-77.32672936884047, 34.751717227735], [-77.32601145970554, 34.75171819795767], [-77.32588770559357, 34.75173210082414], [-77.32575526239653, 34.75174630062437], [-77.32541467725854, 34.75178281545553], [-77.32527455344038, 34.75178054221448], [-77.32489069318154, 34.751791470634956], [-77.3246941334321, 34.751716441395416], [-77.32437579204473, 34.75180060475661], [-77.32397870207706, 34.75209407077895], [-77.32358756708534, 34.75237890950605], [-77.323404464591, 34.75266009958893], [-77.32306679030998, 34.753191994276854], [-77.32306592878867, 34.75319349112496], [-77.32306572628089, 34.753193865514305], [-77.32306540975897, 34.753194450683566], [-77.32280769490312, 34.753716574480826], [-77.32277606003757, 34.75381094960461], [-77.32267610252839, 34.754124900469805], [-77.32250431659739, 34.75424549399607], [-77.32210882176608, 34.75442572000211], [-77.32186668095814, 34.75450989514959], [-77.32172826490627, 34.75456176321141], [-77.32143540500434, 34.75468122082408], [-77.32103328805036, 34.754934340509244], [-77.32088061049735, 34.75508741983542], [-77.32077285324306, 34.75535058314756], [-77.32073381992718, 34.75546271876878], [-77.3206333251637, 34.755851912496176], [-77.32061683959144, 34.75596610307965], [-77.32060934531309, 34.7561239312081], [-77.32028921203687, 34.75649833467083], [-77.32050550041848, 34.756738340196975], [-77.32074918451394, 34.757040007398466], [-77.3209287936713, 34.757201208638236], [-77.32118217112367, 34.757350765026736], [-77.32141979561578, 34.75761204128087], [-77.32176533838056, 34.75766583444637], [-77.32219311428202, 34.75769966807573], [-77.32230535715962, 34.75771963326028], [-77.3224063313957, 34.757716531599115], [-77.32293809020476, 34.75775338546669], [-77.32398635977572, 34.757839891453486], [-77.32412362503423, 34.75779698848338], [-77.32459276913553, 34.757537967882385], [-77.3245667414354, 34.757861891103175], [-77.32641862318438, 34.759287494225404], [-77.32703198764645, 34.76053880562962], [-77.32600725062969, 34.76156346368593], [-77.32430491264118, 34.763229650904606], [-77.32671517073796, 34.765365436286366], [-77.32862072304664, 34.76705383653454]], [[-77.35193115976388, 34.78769958085425], [-77.35177243684541, 34.787273759041035], [-77.3516855814026, 34.78716431650797], [-77.35158374754388, 34.787001268629744], [-77.35067581386294, 34.78644943264289], [-77.35068505990876, 34.78635665886083], [-77.35017618507152, 34.78614575390189], [-77.35054017977754, 34.786468038671515], [-77.35149343367858, 34.78731203414063]], [[-77.36771722939639, 34.783041163945086], [-77.36800645057693, 34.78068962700168], [-77.36879211462333, 34.77902360516294], [-77.3689634250661, 34.77878764086259], [-77.36902418075799, 34.77861076394013], [-77.36964927623954, 34.776790779520525], [-77.36968281628809, 34.776693126799344], [-77.36981826388335, 34.776658885284775], [-77.37095203937227, 34.77577397341051], [-77.37113467914958, 34.77447815206664], [-77.37160253491888, 34.77300054472667], [-77.37114226925215, 34.772098720689215], [-77.37060863812998, 34.77221781959275], [-77.36997557804148, 34.77169763372629], [-77.36972869431233, 34.77149339089877], [-77.36906451869298, 34.77099411725121], [-77.36901524596837, 34.77089790244864], [-77.36893283460827, 34.770869680771895], [-77.36878141647577, 34.77072695556671], [-77.36828090871852, 34.77031110999027], [-77.36793284673992, 34.769894536082724], [-77.36764640014391, 34.76968275411154], [-77.3670935075948, 34.769463799820414], [-77.36677736321778, 34.769454967963625], [-77.36656887834297, 34.76923884133549], [-77.36625295895749, 34.7690515160635], [-77.3661983493496, 34.76887274871709], [-77.3660278750089, 34.768571556128194], [-77.36583072120459, 34.76829624677268], [-77.36564245739542, 34.768118998137595], [-77.36599330046036, 34.76773636746382], [-77.36601789630305, 34.76770455457273], [-77.36604418884541, 34.76770036863927], [-77.36668289918468, 34.767570884715845], [-77.36685235211374, 34.767571941997765], [-77.36712954881136, 34.76752097177243], [-77.36725785483277, 34.767486459745754], [-77.3673499454905, 34.76748305873825], [-77.36755316499007, 34.76738960598266], [-77.36742389635023, 34.767228373601355], [-77.36730480792951, 34.76714739173941], [-77.36692913955282, 34.76689162605132], [-77.36688822576728, 34.76686376283713], [-77.366460131032, 34.766606545365], [-77.3663333783776, 34.76656520706514], [-77.36621765038399, 34.76653381529423], [-77.36572060885754, 34.76646613302343], [-77.36571854391427, 34.76646618709994], [-77.36571419434664, 34.7664664511997], [-77.36529685408252, 34.76652518163005], [-77.36505137207403, 34.766561513073206], [-77.36485729162305, 34.76655494466484], [-77.36453544388183, 34.766515340423], [-77.36450040450633, 34.76632127412532], [-77.36467041700803, 34.7662492737855], [-77.36475169484719, 34.766129608262986], [-77.36495371198495, 34.765963907735866], [-77.36497945233515, 34.76565009708226], [-77.36526889503116, 34.765317463939205], [-77.36535228570551, 34.7652213591243], [-77.36537610108948, 34.76515731794535], [-77.36547665723455, 34.76509695564189], [-77.36582065611638, 34.764826055936076], [-77.36601406072059, 34.76470334706973], [-77.36613609891694, 34.76451014869652], [-77.36614568362401, 34.76438058782843], [-77.36608785845283, 34.76408397212751], [-77.36589450638455, 34.76365795658172], [-77.365699552095, 34.76335312322017], [-77.36548353565254, 34.76303041641248], [-77.36539821876792, 34.762586062142375], [-77.36568898155707, 34.761983881200166], [-77.3660464157235, 34.76176132505027], [-77.36660205880514, 34.76119231200269], [-77.36660679832318, 34.76118666609218], [-77.36660988857642, 34.76118555926008], [-77.3666128673139, 34.76118394604496], [-77.36729414286349, 34.76080736697984], [-77.36737250046052, 34.760777060222026], [-77.36797424333032, 34.76054680526297], [-77.36803448879337, 34.76052093152193], [-77.36810142852995, 34.760475901561705], [-77.36883992892734, 34.760340966504955], [-77.36960723174997, 34.75970834980516], [-77.37071785529929, 34.759270108352105], [-77.37009850488214, 34.75801609366199], [-77.36760523542965, 34.75809702922423], [-77.36752240240895, 34.75805133627922], [-77.36744223416406, 34.758054728057104], [-77.3674017085988, 34.7581095756595], [-77.36627458111653, 34.757930368980986], [-77.36587172082727, 34.75792631786063], [-77.3656597644566, 34.75783856525858], [-77.3655074389405, 34.75788469124481], [-77.3651220700157, 34.75779219415274], [-77.3650548669938, 34.75771260035968], [-77.36464059115991, 34.75770240460417], [-77.3644506123964, 34.757653359735926], [-77.36443182200875, 34.75764913582405], [-77.36440300570618, 34.75764533095604], [-77.36389520795314, 34.757288019367614], [-77.36329404105888, 34.75725883104807], [-77.36326051086353, 34.75726468987337], [-77.363216191053, 34.75724695930445], [-77.362722215727, 34.756909382398746], [-77.36240441004352, 34.756845279983224], [-77.36212966540714, 34.75688704993807], [-77.3616330387282, 34.75667747602154], [-77.36166341170515, 34.75662676941891], [-77.36159661772204, 34.75665981942422], [-77.36152259124216, 34.75662393147876], [-77.36107151167083, 34.75640524904031], [-77.36100681525396, 34.75634333626463], [-77.36057626210699, 34.75604788085761], [-77.36047138007359, 34.755966709522234], [-77.36028888662926, 34.75588725070857], [-77.36011634487602, 34.755568869143566], [-77.36005858088956, 34.755495757926], [-77.36008635334912, 34.755427671178346], [-77.36010382743846, 34.75536750664069], [-77.36011191957374, 34.75493677535709], [-77.36012376548233, 34.75474697870561], [-77.36018204211781, 34.75461233318107], [-77.36005321284387, 34.754457449586525], [-77.35986761956204, 34.75436268790304], [-77.35981235095487, 34.7541082278975], [-77.35956098480928, 34.75403764160312], [-77.35946696231579, 34.75397966214892], [-77.35937792845857, 34.75398623746461], [-77.3592278559473, 34.75383968313456], [-77.35918730009367, 34.75380054118941], [-77.35915202619395, 34.75373279179501], [-77.35906480712617, 34.753618374564056], [-77.35918789362984, 34.753405856888385], [-77.3591909514015, 34.753282669728314], [-77.35930200287545, 34.75331808757398], [-77.35935021721139, 34.75333549951294], [-77.35947639249109, 34.753381066056654], [-77.35954729393873, 34.75340307302682], [-77.35966881969387, 34.75343017005446], [-77.35982868347894, 34.75346546012976], [-77.35996287084734, 34.75349508177631], [-77.36004037690944, 34.75353860625669], [-77.36008836819045, 34.75360258432415], [-77.36026879584465, 34.75375714031136], [-77.36060715229776, 34.75387885642206], [-77.36062889959184, 34.753874387419906], [-77.36063042196498, 34.75389081697011], [-77.36071923620433, 34.75419913319601], [-77.36098223558857, 34.754649962091975], [-77.36101197864465, 34.75476242792672], [-77.36103136415372, 34.75481054032729], [-77.36158447537133, 34.75511053985278], [-77.36173475401594, 34.75520135034172], [-77.36187887428622, 34.75527832776368], [-77.36198005936065, 34.75533943517964], [-77.36217976509774, 34.75544112035157], [-77.36246424080042, 34.75558857220366], [-77.36259992487557, 34.75590641215694], [-77.36294976418955, 34.756125785674456], [-77.36347992136147, 34.756065360278235], [-77.36370364492514, 34.75569677879136], [-77.36381887356646, 34.75512231631483], [-77.36471853877802, 34.75493356809914], [-77.3644525676343, 34.75316393005532], [-77.36477456399089, 34.752716277919454], [-77.36445087015788, 34.75227031197691], [-77.36456192938975, 34.75057366263263], [-77.36457858137264, 34.75044192630178], [-77.36457671452368, 34.75042460833328], [-77.36376179728688, 34.74949325488292], [-77.36240636655383, 34.74974578926691], [-77.36163870838038, 34.74954951717031], [-77.36150978597225, 34.74889620811774], [-77.36101892880505, 34.74844933778352], [-77.36035603143907, 34.74855568103092], [-77.3600891373297, 34.748376105212756], [-77.35950307458288, 34.74819696638366], [-77.35958327070715, 34.74797676881133], [-77.35931238563258, 34.748024312336064], [-77.35906068851159, 34.74806174303756], [-77.35873177746814, 34.74796105836338], [-77.35862263782872, 34.747927251477634], [-77.35818191469298, 34.747791937257965], [-77.35781278373, 34.74776174096974], [-77.35761632857223, 34.74748121973642], [-77.35742557871107, 34.74727113863166], [-77.35722105254325, 34.746975593476485], [-77.35704395373865, 34.746776242390574], [-77.35689377025508, 34.74660564247419], [-77.3568373724965, 34.74654092544702], [-77.35678390778193, 34.7464184076353], [-77.35669430595975, 34.74625675208182], [-77.35657774904746, 34.74586251073012], [-77.35659080334669, 34.74567246360566], [-77.35663862710052, 34.74551114539046], [-77.35660685226875, 34.74542656884945], [-77.356712102067, 34.74534330303289], [-77.3569023453009, 34.74514231311022], [-77.35705926520639, 34.74501259785835], [-77.35737539437721, 34.744589988648315], [-77.35762241517648, 34.744234998418335], [-77.35777530383008, 34.74356031936638], [-77.35790733314208, 34.74321095887455], [-77.3581187035112, 34.742795760886075], [-77.35817539525407, 34.74253062379492], [-77.35810130831968, 34.742414921108185], [-77.3581944302817, 34.742188853056895], [-77.3585500270588, 34.74199180542221], [-77.35871795302168, 34.74182129953249], [-77.35918012177598, 34.74178555555146], [-77.35946007317597, 34.741763903127804], [-77.35993326265198, 34.741761232470715], [-77.36052503557742, 34.74170044072558], [-77.36161863848744, 34.74168025954586], [-77.36229866497787, 34.741865643514245], [-77.3635426638963, 34.741820505768615], [-77.36734182450493, 34.740297027928996], [-77.36746429470342, 34.74018856222371], [-77.36758430311698, 34.74016307495936], [-77.36778112930601, 34.74017324927599], [-77.37265709372602, 34.74036234631845], [-77.37494014195532, 34.740761598367556], [-77.37509608256195, 34.74079764406035], [-77.37524732375874, 34.74087561906292], [-77.37726775190097, 34.74215416567235], [-77.37957486581078, 34.74240112854336], [-77.38450790146366, 34.74620129279445], [-77.38541529438169, 34.747108673343135], [-77.38597391645936, 34.747515237249154], [-77.38790094117158, 34.749594236303274], [-77.38805590421663, 34.749578936190915], [-77.38795827545776, 34.749645155800145], [-77.39012102375239, 34.75090716803852], [-77.39241319573811, 34.75120349186791], [-77.39255762840635, 34.7512209879612], [-77.39271440511533, 34.75081098458155], [-77.39265650773939, 34.751232505920626], [-77.39514818965438, 34.75126509096553], [-77.39615774126604, 34.75112002725767], [-77.39775572380498, 34.75112001513014], [-77.39862103866527, 34.751138086737406], [-77.399840237236, 34.75115369788632], [-77.40039579167204, 34.75086257536901], [-77.4029075234432, 34.7504005488807], [-77.40125576781807, 34.7478959707569], [-77.39927738647954, 34.74913108881621], [-77.39871192084163, 34.74930927888698], [-77.3980488110065, 34.75010910548359], [-77.39757247865738, 34.749183944767765], [-77.39577533617279, 34.749102192802354], [-77.39499450994052, 34.749218361300834], [-77.39319314942911, 34.749160075836706], [-77.390959147333, 34.74836926757124], [-77.3908625978342, 34.74835017675012], [-77.39071525328796, 34.74820872382311], [-77.38679816646928, 34.746532534483954], [-77.3863185072159, 34.74632727044599], [-77.38458109373019, 34.741753561695184], [-77.3853106403396, 34.74001147275593], [-77.38749798164076, 34.73830080719018], [-77.38765505144045, 34.7372172853421], [-77.38944325513, 34.735553260292065], [-77.39015157187755, 34.73531276364784], [-77.39183426464265, 34.73615341391941], [-77.39198358768654, 34.73723090827123], [-77.39353176637707, 34.739145464680774], [-77.3948501661069, 34.739606776022434], [-77.39689487508885, 34.740352480387614], [-77.39820143672932, 34.740734064334895], [-77.40068503789894, 34.740562952016305], [-77.40089113658587, 34.74030429590516], [-77.40171847136946, 34.740314717701835], [-77.40324633103498, 34.74102844817601], [-77.40500830215899, 34.74164458968219], [-77.40578706940246, 34.74022505751899], [-77.40753279429083, 34.73978599795054], [-77.40896938758439, 34.73898227683108], [-77.41048232889193, 34.74186686286509], [-77.41027490824371, 34.74388926630268], [-77.41212761072929, 34.74578817839537], [-77.41289501960355, 34.74718321054502], [-77.41330675832228, 34.749222646567965], [-77.41161849255339, 34.74754536126317], [-77.40960368383188, 34.74915558554882], [-77.40932417203288, 34.75040764761227], [-77.40917079800269, 34.751491151011685], [-77.40970534096351, 34.75414781422994], [-77.40972796626613, 34.75482968862073], [-77.40970999477956, 34.7550153780436], [-77.40976313606824, 34.75540086335978], [-77.41010923371543, 34.75824154650098], [-77.40988440164841, 34.759549169576026], [-77.40974793779823, 34.761360659683326], [-77.4095830319943, 34.76203167749381], [-77.41005383640575, 34.76408118891606], [-77.4099379832733, 34.76545448855], [-77.41178286413357, 34.764685569364914], [-77.41324198029534, 34.76407736637727], [-77.41444245210666, 34.763576952701705], [-77.41334577365491, 34.76371916687287], [-77.4130201410286, 34.76371492026305], [-77.41209633309586, 34.76360382549778], [-77.41154661416572, 34.7623665979752], [-77.41166106390695, 34.761494381024576], [-77.41166299318964, 34.76128908798151], [-77.41179494363757, 34.76110970689791], [-77.4120256900423, 34.76059406202447], [-77.41213176382209, 34.76033474763748], [-77.41243368270871, 34.75976460395755], [-77.41286288250875, 34.759472110811075], [-77.41323431072774, 34.758724287396106], [-77.4132614731316, 34.75849324311872], [-77.41253934852628, 34.75722857113041], [-77.4124889046298, 34.75686268354682], [-77.41241675985788, 34.75596159070566], [-77.41240655980653, 34.755498507064345], [-77.41255309089507, 34.75397540499916], [-77.41258866712485, 34.753785299845894], [-77.41269902911515, 34.7535911653154], [-77.41310647086215, 34.75172989496498], [-77.41467429292813, 34.7514572780229], [-77.41560432449577, 34.75149651377578], [-77.41654404243036, 34.751520436018296], [-77.41716332613363, 34.751729970636006], [-77.41736426390167, 34.75210006071218], [-77.41782781474353, 34.75267656953542], [-77.41833171628357, 34.753028286087805], [-77.41835991351014, 34.7530536819455], [-77.41841671999796, 34.75308423893294], [-77.41892520161915, 34.753316225214306], [-77.41925440472917, 34.75353630960991], [-77.41965738265685, 34.753615340185085], [-77.42006062041555, 34.75382462791481], [-77.42015446351527, 34.7540537669575], [-77.42032574933712, 34.75425329238632], [-77.42053435410465, 34.75440329146251], [-77.42061513759305, 34.75443213379059], [-77.42083206369313, 34.75448257127292], [-77.42099310133483, 34.754486523453764], [-77.42108883678489, 34.754458100062834], [-77.42117044851955, 34.75442141773812], [-77.4217366628428, 34.754187309728145], [-77.4217505703504, 34.75404334589806], [-77.42201723388585, 34.75416980132004], [-77.42245517878943, 34.75441435917192], [-77.42248291697582, 34.75444810563508], [-77.42276226415476, 34.75475188974068], [-77.42282371497836, 34.75512627268249], [-77.42285492603517, 34.755248540991786], [-77.4229321749896, 34.75557379161428], [-77.42318266013996, 34.75581077795686], [-77.4233019023711, 34.75591967651986], [-77.42341087226433, 34.756007752335975], [-77.42375171332733, 34.75600963477105], [-77.42387042505347, 34.75601058337642], [-77.42401251828129, 34.756016061497014], [-77.42457039826898, 34.75596872522278], [-77.42480294460594, 34.756038151213204], [-77.42554210848374, 34.75627099086717], [-77.42576408883501, 34.75627608495397], [-77.42598823774681, 34.756478608457826], [-77.42604043035752, 34.75650957129808], [-77.42631441018334, 34.75659043103881], [-77.42653228440314, 34.75661944025208], [-77.42683902976076, 34.75652938125984], [-77.42688083619814, 34.75644094456351], [-77.42702001691629, 34.75636852808069], [-77.42715204313694, 34.75649239959785], [-77.42710697411717, 34.75662300447832], [-77.42774754823733, 34.75713683243059], [-77.42774819983106, 34.75785767529885], [-77.4278034708829, 34.757984479350554], [-77.42781528084907, 34.75800135813492], [-77.42783191976086, 34.757994419473185], [-77.42929079148664, 34.75738603310657], [-77.42976322251215, 34.75718901113529], [-77.42976593225946, 34.75699298939189], [-77.42988190154168, 34.756855923017675], [-77.42995473161672, 34.75677942823164], [-77.43011956617758, 34.75659401148633], [-77.43011086768126, 34.75655445469922], [-77.43012731229075, 34.75650897260059], [-77.43019078973927, 34.75649270793501], [-77.43027253695669, 34.75633141466772], [-77.4303164866264, 34.75628869117817], [-77.43028710192131, 34.756160056739176], [-77.43023497277966, 34.75609949127725], [-77.43008045468707, 34.75598477850693], [-77.42977673595108, 34.755707691966066], [-77.42944852202804, 34.755534698713824], [-77.4294973590915, 34.75522199717271], [-77.42964990879665, 34.7549814492491], [-77.42975899256604, 34.754754360764345], [-77.43007618177573, 34.754673443583826], [-77.43034808241595, 34.75462623734146], [-77.43070899697585, 34.75470285028935], [-77.43096257462429, 34.75461583213276], [-77.43091970679798, 34.75406434093367], [-77.4309368758814, 34.75402119377623], [-77.43087167741652, 34.75398589429885], [-77.43034716347346, 34.753737484090784], [-77.42998653195592, 34.753524762810876], [-77.42947894073899, 34.752979347441425], [-77.428781554851, 34.752241751558145], [-77.42834046965062, 34.75180825274515], [-77.42826549966728, 34.751564202534084], [-77.42828208730481, 34.75144304466583], [-77.42794838023215, 34.750947521353446], [-77.42784389088565, 34.750847263581356], [-77.42752649037207, 34.75076521635822], [-77.42735832284917, 34.7507705293019], [-77.42706423707057, 34.75075793644112], [-77.42620596624637, 34.7506375775771], [-77.42616541542941, 34.75046073855473], [-77.42595091454513, 34.749851179438515], [-77.4253914879533, 34.749314814880194], [-77.42569610891026, 34.74852298416607], [-77.42570378863466, 34.74830582597504], [-77.42586353709319, 34.74810209382426], [-77.42580123799158, 34.74728903338544], [-77.42537452160869, 34.747997624457646], [-77.4240768001158, 34.748814934243235], [-77.42401690460812, 34.74877117006099], [-77.42268449813773, 34.74764232131867], [-77.4218049799432, 34.7478019602373], [-77.4215768260408, 34.74777623825004], [-77.42070933102937, 34.74767843093609], [-77.41990352217009, 34.74803398661969], [-77.41926795093639, 34.74770476982579], [-77.41886435787548, 34.747449795747706], [-77.41877369362648, 34.746187930134276], [-77.41993425969301, 34.745404284123616], [-77.42002351444155, 34.745238320389674], [-77.42002389225938, 34.745202546523096], [-77.42003200746707, 34.74517744370583], [-77.42013169239914, 34.74472260907517], [-77.4199875238402, 34.74407167442809], [-77.41959436918249, 34.743574460832356], [-77.41929768599478, 34.74317398380748], [-77.41899133588896, 34.742605292980016], [-77.41883682469785, 34.74210488767688], [-77.41835158314325, 34.74201248381985], [-77.41813861411562, 34.7421583714283], [-77.416512006065, 34.741288843011574], [-77.41616186549835, 34.74071682869545], [-77.41524461895611, 34.73905913276704], [-77.4166384233334, 34.737665234286034], [-77.41699879519808, 34.73730380318541], [-77.4172182126067, 34.73706990192625], [-77.41834140896502, 34.73566907825368], [-77.41886500673195, 34.734951279233925], [-77.41906987136365, 34.73470460166205], [-77.41981030478055, 34.733946263575504], [-77.42069265778302, 34.7324035970361], [-77.42027973949983, 34.73187404879333], [-77.41968810333651, 34.731037082923756], [-77.41910827017722, 34.730543927612985], [-77.41806082253395, 34.730063641350334], [-77.41789989904798, 34.72999738743725], [-77.41676090960078, 34.72979363308755], [-77.41598568225176, 34.72966401092028], [-77.4155346000662, 34.72960021917694], [-77.41499494932732, 34.729540734598366], [-77.41483107796671, 34.72949171937938], [-77.41486846157711, 34.72942301120671], [-77.41480968779234, 34.72923792394603], [-77.4148602241514, 34.728861033066394], [-77.41460777800327, 34.72869212391237], [-77.41453067807784, 34.72863904723283], [-77.41444783445922, 34.728646467774624], [-77.4139509416004, 34.72842699400976], [-77.41362708693762, 34.72842983819726], [-77.41340280684564, 34.72843440127381], [-77.41329024791642, 34.72849443078802], [-77.41269381142902, 34.72866258698676], [-77.41266883099716, 34.72873076726871], [-77.41238170509729, 34.729112547614356], [-77.41218467765171, 34.72943549712513], [-77.41172314241534, 34.72947749397132], [-77.41141299388653, 34.729670245011874], [-77.41064007867611, 34.729621717100805], [-77.41048043598138, 34.729642016096335], [-77.41033574617848, 34.729840107388114], [-77.4096993544517, 34.729846146204224], [-77.40949257937076, 34.7292204242108], [-77.40928800968379, 34.72912496860713], [-77.40926110574013, 34.72912317023325], [-77.40922862483522, 34.7290918883492], [-77.40872512290915, 34.72876010396299], [-77.40852832207054, 34.72854903108839], [-77.40847024530139, 34.72853331450246], [-77.40840419932236, 34.72849227418328], [-77.40836802615826, 34.72854758568267], [-77.40817871240279, 34.728694799622524], [-77.40816570666311, 34.72875638491869], [-77.40813269396803, 34.72879655215784], [-77.40803388794069, 34.72893289255957], [-77.40771991320747, 34.72961801530174], [-77.40753001239743, 34.729652289991606], [-77.40723659264462, 34.73032416781116], [-77.40620633263428, 34.73081446898617], [-77.40558972663777, 34.73062446916571], [-77.40591522536546, 34.73132400832159], [-77.40597156121179, 34.73140038620145], [-77.40566258687592, 34.73235388998374], [-77.40566675053992, 34.73242014203399], [-77.40563647321152, 34.73278106002439], [-77.40568716612665, 34.732921606370105], [-77.40563975824034, 34.73295077384149], [-77.40566863755402, 34.73331203321196], [-77.40563300319329, 34.73346178351238], [-77.40557568502408, 34.73359419437257], [-77.40536118218685, 34.733731057107406], [-77.40514757252603, 34.73385113121482], [-77.40499933866947, 34.73414833110535], [-77.40458189676772, 34.734207499121744], [-77.40457896021982, 34.734209275808325], [-77.40457818177381, 34.734211115179185], [-77.4044066443302, 34.734675754652386], [-77.4044002356013, 34.73470800263264], [-77.40437106761128, 34.73474564982431], [-77.40435134570862, 34.7352500248155], [-77.40348788868691, 34.735769864480815], [-77.4032704480174, 34.73581104806531], [-77.40243832928476, 34.73555134307204], [-77.40227691141905, 34.73552319105101], [-77.4019978707887, 34.73522698306598], [-77.40173725151223, 34.73517273300866], [-77.40147344173161, 34.735117817633345], [-77.4013992689382, 34.73533578484341], [-77.401218980066, 34.735450022112445], [-77.40079956835937, 34.73619551813373], [-77.40078168186025, 34.73623154507842], [-77.40077983525495, 34.736237390241214], [-77.4003444833096, 34.73701323702335], [-77.4001221277455, 34.73740948374233], [-77.3999813880047, 34.73819464334842], [-77.39955994646948, 34.73872355709456], [-77.39876845299278, 34.738778088508695], [-77.39763368081336, 34.73844667601802], [-77.39636574780911, 34.73821805220091], [-77.39533935556474, 34.737809139625625], [-77.39405003070658, 34.73735800165382], [-77.39345230240968, 34.73661882047983], [-77.39334917548007, 34.73587467087447], [-77.39373634976697, 34.735187984740506], [-77.3937279623704, 34.734888890548895], [-77.39379019989966, 34.73469274889333], [-77.3936757699467, 34.73422547319987], [-77.39325674978596, 34.73360573397556], [-77.39293126524304, 34.73326546913501], [-77.39271040741913, 34.733131754374746], [-77.39242882724864, 34.733049827586036], [-77.39151642236395, 34.7329624964478], [-77.39149271370077, 34.732908357247524], [-77.39143106516067, 34.73210544858669], [-77.39151830336166, 34.73187920256661], [-77.39128342420135, 34.731418694007324], [-77.39115676519755, 34.73132714611613], [-77.39090826185316, 34.73131150980053], [-77.39068250076535, 34.731279709422154], [-77.39035422921793, 34.73115381645008], [-77.3900976728055, 34.73108522112512], [-77.38991078108894, 34.730953795635784], [-77.38975873095093, 34.73092830393524], [-77.38949387099838, 34.73095617085619], [-77.38928916500414, 34.730908743630515], [-77.38889549787451, 34.73080840297354], [-77.38870734846058, 34.73070559515721], [-77.38848032280013, 34.73065731284662], [-77.3883043678405, 34.73063566236144], [-77.38820796297642, 34.73063725865278], [-77.38796741664322, 34.73063675141994], [-77.3876375671472, 34.73072385850452], [-77.38739484004837, 34.73080421840389], [-77.38693115408952, 34.730948633109435], [-77.38661083412897, 34.73128038715599], [-77.38654223401959, 34.73146495402101], [-77.38632656841469, 34.7320507745559], [-77.38625724258486, 34.73227499659501], [-77.3861692516586, 34.73251297540429], [-77.38665729469099, 34.73353331936298], [-77.38623744135126, 34.73489881380215], [-77.38492665914747, 34.73660112167115], [-77.38481629080503, 34.73736248070138], [-77.38348673889506, 34.7384022903868], [-77.38106248076166, 34.73841048042732], [-77.37849481190109, 34.73792513693898], [-77.37578098724467, 34.736841064431516], [-77.37376707123559, 34.73653757109024], [-77.37229098694414, 34.73603914647013], [-77.3701306314878, 34.73562455968249], [-77.36919155716775, 34.7346258875023], [-77.36897956963448, 34.73422334821356], [-77.36804375660249, 34.73358288611345], [-77.36792044668046, 34.73339407669009], [-77.36796955632022, 34.73297838558782], [-77.3685774365032, 34.732615214406515], [-77.36874343962711, 34.73230622819178], [-77.36872405258525, 34.73227090072323], [-77.36877840113029, 34.73192282603659], [-77.36878798034166, 34.731827451507336], [-77.36879576032408, 34.73181164902697], [-77.36857249808874, 34.73160061765968], [-77.3685713421545, 34.73159989735848], [-77.36828553625317, 34.73166290971233], [-77.36824721152095, 34.73168972646625], [-77.36807238684065, 34.73179318538192], [-77.36773616601624, 34.731957222935335], [-77.36756912350258, 34.732371090636974], [-77.36756568599327, 34.73246803423286], [-77.36776940833865, 34.732801108998714], [-77.36734709082614, 34.732727660993376], [-77.36729454349674, 34.732582372735266], [-77.36726078371842, 34.73250992092737], [-77.36659468976808, 34.732332383183675], [-77.36657556662996, 34.73211666275664], [-77.36636507980455, 34.731984579323765], [-77.36619849738592, 34.731848740427694], [-77.36594630312425, 34.731824439984415], [-77.36581849172177, 34.73180453535885], [-77.36570894456611, 34.73183118204851], [-77.365326901814, 34.731913945276844], [-77.3651326940705, 34.73210404763932], [-77.36488097043619, 34.73207401720659], [-77.36481073584604, 34.73209489395667], [-77.36476354116542, 34.732121876454016], [-77.36452616097397, 34.732347019396], [-77.36447615735028, 34.732405044595], [-77.3644608655762, 34.7324231463145], [-77.36382214522598, 34.73298226173038], [-77.36371171860345, 34.73303589145566], [-77.36363450671307, 34.73313906251756], [-77.36349185473851, 34.73314283260406], [-77.36280075934405, 34.73350530760244], [-77.36262331278802, 34.73363430061626], [-77.36263058435796, 34.73380549159295], [-77.36272908727003, 34.73410716023558], [-77.36288852348622, 34.734395506097705], [-77.36318375638227, 34.735019487139915], [-77.36334925983893, 34.73654385064552], [-77.36336020206325, 34.73694480904786], [-77.36278107384486, 34.737632058019955], [-77.36151769198631, 34.74002693613566], [-77.36043076335747, 34.74004794998224], [-77.35931987177878, 34.74029484962271], [-77.35902386559039, 34.74037074674486], [-77.35869755424781, 34.740509394093166], [-77.35796982789886, 34.7407134871918], [-77.35797028767666, 34.741333042094055], [-77.35808712768505, 34.741567971063844], [-77.357794834607, 34.74183489338583], [-77.3577042360418, 34.7421079232178], [-77.35751960910918, 34.742468165810855], [-77.35745253993495, 34.742629861711265], [-77.35741614950122, 34.74277587469487], [-77.3570288649491, 34.74363409933286], [-77.35701742785443, 34.743664362832384], [-77.35701086935484, 34.74369330469415], [-77.35695172197678, 34.74377830458647], [-77.35640557019204, 34.74472312238051], [-77.35607430538997, 34.745156784565964], [-77.35598714684086, 34.74526794378257], [-77.3559560315794, 34.74531180575834], [-77.35591153446606, 34.745676201872215], [-77.35592882397647, 34.74576333294732], [-77.35594163599902, 34.746047262172965], [-77.35603444722123, 34.746657702970715], [-77.35604589219778, 34.746722030677084], [-77.35606047061509, 34.74674428931331], [-77.35608132289966, 34.74677514484509], [-77.35642288733841, 34.747157664992095], [-77.356473860802, 34.74721475071351], [-77.3565318855292, 34.74728612864824], [-77.35681588851695, 34.74759110142503], [-77.35686939061068, 34.74769895220002], [-77.35696627921082, 34.74785279894602], [-77.3572211894511, 34.74821678905855], [-77.35803909520668, 34.74828369679703], [-77.35812496595932, 34.748310061498465], [-77.3582952028967, 34.74836279376625], [-77.35846040140183, 34.74844626942194], [-77.35858931935567, 34.74845158352821], [-77.35884313130208, 34.748531264066145], [-77.35884684473636, 34.74854324155806], [-77.3588881019699, 34.74854708044441], [-77.35913472546079, 34.748636063821145], [-77.35936704315007, 34.74870302860472], [-77.35904343338454, 34.74918047630836], [-77.35921021704853, 34.749211944055006], [-77.35902318000704, 34.749304914537014], [-77.35887700069281, 34.74952349096661], [-77.35876027706384, 34.74976110137539], [-77.35879826217071, 34.749794609440556], [-77.35891370370008, 34.75006871688621], [-77.35914756943961, 34.75019531618645], [-77.3592588963649, 34.75027101809272], [-77.3595958809199, 34.75033244152221], [-77.35981009365197, 34.750435598204874], [-77.36033501310517, 34.75055235130684], [-77.36092668314322, 34.750715895990986], [-77.36143411112573, 34.750856150145154], [-77.36172887990257, 34.751057097914966], [-77.3619705255563, 34.75124672493216], [-77.3622196992469, 34.75172305503238], [-77.36170970634544, 34.752144896951215], [-77.36126179382887, 34.7525639148249], [-77.36062233077891, 34.75291715461737], [-77.36039652833452, 34.753073985804065], [-77.36025119787429, 34.753041904905174], [-77.36019090128232, 34.75302859451699], [-77.36005441876866, 34.75299512707505], [-77.35979855777352, 34.752936148800245], [-77.35969230123169, 34.7529037729946], [-77.35943817885061, 34.75281911484261], [-77.35914950636082, 34.75271020296135], [-77.35859575696658, 34.752755537748186], [-77.35845240123567, 34.75321505985251], [-77.35849277420499, 34.75354628950113], [-77.35847280322288, 34.753699645130084], [-77.35877241128624, 34.7540086036697], [-77.35882752640387, 34.754077265092675], [-77.35888237130656, 34.75413080461566], [-77.3590502591883, 34.754300175164246], [-77.35923529162795, 34.75447736278902], [-77.35930645550161, 34.754497346363664], [-77.35931966354806, 34.75455815700732], [-77.3593627963416, 34.75471124345353], [-77.35943576648127, 34.755029602929895], [-77.35938990407593, 34.755221617059476], [-77.35929865109387, 34.75553581191426], [-77.35925143324678, 34.75572235195813], [-77.3592323803288, 34.75578860263842], [-77.35926849356304, 34.755904109981785], [-77.35930559224052, 34.75602224438377], [-77.35933119050159, 34.75605523490289], [-77.35936437322431, 34.75609546739775], [-77.35955986632746, 34.75627357813863], [-77.35977132815465, 34.75644569137873], [-77.35980889432885, 34.756476267477844], [-77.35984441702027, 34.75650517995526], [-77.36028371783976, 34.756862732036424], [-77.36029545558178, 34.75689048902084], [-77.36031215042058, 34.75695729383843], [-77.36068580337069, 34.75737871498759], [-77.36075516490575, 34.75749453917008], [-77.36114663131775, 34.75756734910894], [-77.36131387799031, 34.75763340993035], [-77.36135780599685, 34.757650305571346], [-77.3614392918276, 34.75767884974053], [-77.36214958384872, 34.75782976575833], [-77.36241336754357, 34.757972924681724], [-77.36297561416188, 34.75823963241687], [-77.36297725144831, 34.75824013628239], [-77.36297841125555, 34.758240044403045], [-77.36297942029123, 34.758239409768386], [-77.36366768758458, 34.75807154528148], [-77.36377466280618, 34.758045101716476], [-77.3641997961767, 34.7581073427439], [-77.36429511598057, 34.75811992864981], [-77.36480602474909, 34.75823477639287], [-77.36489646509257, 34.75825812444845], [-77.36500119230283, 34.758288781920555], [-77.36597074773526, 34.75872718648112], [-77.36602741691256, 34.75875401085064], [-77.36603354410838, 34.7587605236985], [-77.36605342621293, 34.758777839172126], [-77.36640609001205, 34.758879552208505], [-77.36720817013754, 34.75913363713127], [-77.36754071031345, 34.759276651923564], [-77.3681896220069, 34.759638752193226], [-77.36769753695273, 34.75996977486453], [-77.36759397519705, 34.7600142517415], [-77.36734087927815, 34.76013509608741], [-77.36708429761961, 34.76023534829405], [-77.36697118713444, 34.76027909659938], [-77.36685731594554, 34.76034203956848], [-77.36628402300364, 34.76065252172513], [-77.36568926755123, 34.7608655445358], [-77.36557905636651, 34.76099683267133], [-77.36533723301913, 34.76115859226353], [-77.36495037286184, 34.76098749089862], [-77.36463570057644, 34.76095118885611], [-77.36416430431876, 34.760779543251424], [-77.36405631179143, 34.760752165285595], [-77.36402876046714, 34.76084359488635], [-77.36409359669017, 34.76102303887579], [-77.36452373387385, 34.761165122789855], [-77.36449463410241, 34.76156587183415], [-77.36417608072944, 34.761696854131635], [-77.36388298535988, 34.76174831085288], [-77.36352822106929, 34.76213460176257], [-77.36331220243206, 34.762270468101846], [-77.36319211559282, 34.7623335622813], [-77.36303400699126, 34.76267786520286], [-77.36304679044682, 34.76273679791358], [-77.36314385251936, 34.76300338989057], [-77.36323577259682, 34.76336216704271], [-77.36329268500812, 34.763462680216534], [-77.36335393559473, 34.76357012903551], [-77.36349410677052, 34.76382507866768], [-77.36365231018898, 34.764067177754896], [-77.36372154447139, 34.764176645860275], [-77.36379255041169, 34.764268846733515], [-77.36422713780318, 34.76477542940138], [-77.3642761148597, 34.7648128013434], [-77.3643380323545, 34.764812497699495], [-77.36431223855082, 34.76485736721918], [-77.36442820156599, 34.765104319858025], [-77.36447867734509, 34.765195228369414], [-77.36446960912032, 34.76520397605271], [-77.36424701309684, 34.76539376091948], [-77.36406181214964, 34.765550765635254], [-77.36385117032982, 34.76565796604193], [-77.36369878650626, 34.765761112623984], [-77.36363728313847, 34.76599674965504], [-77.36350819741267, 34.76625363363937], [-77.36361461758099, 34.766768562250334], [-77.3636276365766, 34.76685465858856], [-77.36364199764367, 34.766887299738016], [-77.3636686258559, 34.76690469594256], [-77.3637596447513, 34.76700578778133], [-77.36432201611444, 34.767496710014825], [-77.36443095271676, 34.76769501928787], [-77.36467104780284, 34.76787119810807], [-77.36496455857457, 34.768121722701984], [-77.36519192268685, 34.768286760963875], [-77.36552655024556, 34.76863765354002], [-77.36561904712028, 34.76874176270768], [-77.36566438264165, 34.76886906490385], [-77.3658173674301, 34.76929864178632], [-77.36582072512701, 34.76955031949101], [-77.36614764730834, 34.76997343565608], [-77.36612063488954, 34.770317981770646], [-77.36615673750305, 34.77053583348971], [-77.36617393842714, 34.77074205225425], [-77.36620560046359, 34.77083254042142], [-77.3663398614646, 34.770961620634594], [-77.3665984416371, 34.77101158307009], [-77.36667603243775, 34.77102715768684], [-77.36697900781331, 34.770969971402614], [-77.36712033533236, 34.77100510331207], [-77.36760224587043, 34.77103310306744], [-77.36797695676489, 34.771330189145026], [-77.36812379781868, 34.771446442322976], [-77.36826222942682, 34.77137523662473], [-77.36869449302324, 34.77147771477303], [-77.36875230978258, 34.77149142149681], [-77.36880598126079, 34.771515817246396], [-77.36915433548641, 34.77173252749407], [-77.36927368387816, 34.771905394347485], [-77.36965036097521, 34.77214803350476], [-77.36980714847957, 34.772277741215035], [-77.37000772650481, 34.77244255630248], [-77.36971827599919, 34.77258383207079], [-77.36912089341492, 34.7726389861221], [-77.36905872503101, 34.7726457314208], [-77.36904031355833, 34.772647729009115], [-77.36900640806235, 34.77265140755706], [-77.3683962754521, 34.77271760335178], [-77.36805380676999, 34.77253176335243], [-77.36774637546414, 34.77274624930229], [-77.36773721122084, 34.77276651863692], [-77.3677386600654, 34.77277282008782], [-77.36811919704145, 34.7730560309541], [-77.36827318406615, 34.773141521451], [-77.36893871586048, 34.77360736638438], [-77.36930665751147, 34.77400148795016], [-77.36959266986963, 34.77453415337159], [-77.36909623059371, 34.77472620284623], [-77.36847509259051, 34.77471811815311], [-77.36841641522271, 34.77471735415122], [-77.36778714923103, 34.774815356480254], [-77.36763355770933, 34.77483927636378], [-77.3673807766704, 34.77487864307349], [-77.36708020112847, 34.77504039696114], [-77.36690016038807, 34.7751372850409], [-77.36629577797429, 34.77553220888446], [-77.36588350939735, 34.77487931042303], [-77.36569974445473, 34.774290426158515], [-77.36562024077026, 34.77409639045996], [-77.36555835600649, 34.7736817361692], [-77.36555749642025, 34.77367625126765], [-77.36555283738609, 34.77367181342644], [-77.3655443929848, 34.773676850127885], [-77.36529036042845, 34.77400196393773], [-77.36516612552484, 34.7741036991536], [-77.36446424282616, 34.774148314212155], [-77.36397498220153, 34.77478129961261], [-77.363998100686, 34.77481340685768], [-77.3639179138782, 34.77488291680149], [-77.36349199038547, 34.77555317660813], [-77.36338278181935, 34.775716524193854], [-77.36321727234186, 34.77598922835955], [-77.3630526117042, 34.77633208287972], [-77.36280963155212, 34.776634400329534], [-77.36242152141185, 34.77679744551417], [-77.3621007213646, 34.77694554808771], [-77.36206375349092, 34.77696107348748], [-77.36202063318105, 34.77699710038865], [-77.36177970711321, 34.77724527751143], [-77.36170232489647, 34.777365355723134], [-77.36157893990608, 34.77756370443937], [-77.36141431403593, 34.77814522706936], [-77.3612389098626, 34.77832163732106], [-77.36112061703344, 34.77841365804868], [-77.36097314357814, 34.77850824693055], [-77.36101191488409, 34.778692227581224], [-77.36101180707175, 34.77880139042322], [-77.36105830824252, 34.77906054177297], [-77.3611188747483, 34.779398085054865], [-77.36104145202806, 34.77957243594882], [-77.36073157762814, 34.779821780122916], [-77.36064314915602, 34.77987912008992], [-77.36049341773578, 34.780045855704834], [-77.3603612524145, 34.78016686211484], [-77.36031483592853, 34.78023517147724], [-77.36015592706443, 34.78057984366572], [-77.36006092280905, 34.78070554422729], [-77.36003395774097, 34.78088427916949], [-77.36021981097963, 34.78132037375305], [-77.36011481644123, 34.78174312465524], [-77.36013395078024, 34.78184955795731], [-77.36006355220843, 34.781926375784536], [-77.35991124367067, 34.78204995307037], [-77.35973203129188, 34.78226813904092], [-77.35951678490103, 34.78252973507537], [-77.35927272484655, 34.78298610468031], [-77.35922706956825, 34.78320989188872], [-77.35923193082284, 34.783561477950315], [-77.35922586295142, 34.783768700515445], [-77.35917714885369, 34.783918379506176], [-77.35917354858003, 34.784309624605996], [-77.35918001123648, 34.78456704697265], [-77.35947372733379, 34.7846874428849], [-77.3597731212825, 34.78473426628885], [-77.3599511595247, 34.78473778353402], [-77.36050354206384, 34.78477502334856], [-77.36185437012382, 34.78485520609404], [-77.36228552069983, 34.784921364872645], [-77.36312708552114, 34.78495187889233], [-77.36507941620965, 34.78413925236685]], [[-77.42207020495833, 34.76039694636676], [-77.42202609417195, 34.76032462491256], [-77.42186076882996, 34.76020654947769], [-77.42126691024532, 34.75983912795982], [-77.4208949872583, 34.759801005984805], [-77.42062002022425, 34.75967552074117], [-77.41988416230059, 34.75968972819936], [-77.41975940954846, 34.759765460361734], [-77.41963302867183, 34.759729149094746], [-77.4190813933629, 34.76015369493335], [-77.4188808372644, 34.760111647656124], [-77.41848767904096, 34.760319850596694], [-77.41831421445858, 34.7603962746625], [-77.41813184958264, 34.76048305776802], [-77.41788547950748, 34.76066847383623], [-77.4177874484989, 34.76103161386858], [-77.41751987502467, 34.761099782629756], [-77.41728364979856, 34.76119689687342], [-77.41709212582364, 34.76139159634044], [-77.41655112932457, 34.76180519236581], [-77.41655710795727, 34.761881474107625], [-77.41641406429746, 34.761984494256815], [-77.41598423352367, 34.76257351654297], [-77.41570634206138, 34.76270230780954], [-77.41524226253634, 34.762857315477994], [-77.41482409729377, 34.76341786321861], [-77.41543061287508, 34.763165030627086], [-77.41616014595809, 34.76286091037264], [-77.41761919545853, 34.76225265735805], [-77.4183487118759, 34.761948524598225], [-77.41907822273801, 34.761644387670245], [-77.42053722779629, 34.76103610131041], [-77.42199621063314, 34.76042779827977]], [[-77.46839465212695, 34.74106905951217], [-77.46567318853303, 34.73904782164934], [-77.46538020674454, 34.73903237555048], [-77.46516930264475, 34.73861258680779], [-77.46275654991736, 34.73627955792292], [-77.4614574496156, 34.73485904636604], [-77.46006548288625, 34.73235870211408], [-77.45966378914787, 34.73042743827372], [-77.4593644571647, 34.72764207351032], [-77.45944103406718, 34.724092702046335], [-77.45919713184442, 34.72347913902539], [-77.45926004888535, 34.72313377724699], [-77.45941162588626, 34.72284709126525], [-77.46005125953901, 34.719550962871594], [-77.46020667083485, 34.7189925687969], [-77.4605037283494, 34.718651484559906], [-77.46100570999369, 34.71867955584359], [-77.46441076869401, 34.719052295157624], [-77.46591942388787, 34.719420882512345], [-77.46815227614044, 34.719739894962615], [-77.4708440666532, 34.720124459691654], [-77.47253909298244, 34.720366594890265], [-77.47330641729664, 34.72047619909775], [-77.47440916466664, 34.72069861276892], [-77.47573796895809, 34.72093452069745], [-77.47671677980297, 34.72120865206854], [-77.48014204655678, 34.72187591008059], [-77.48055420946463, 34.72201359389828], [-77.48091707250212, 34.72208734685235], [-77.48159567247443, 34.72198923264971], [-77.48618560263387, 34.72026955377959], [-77.4871079298756, 34.720238191453824], [-77.48769056450801, 34.719645214586194], [-77.48833070434344, 34.71845491933948], [-77.49058136796161, 34.71395524020342], [-77.49331394509105, 34.713337917865395], [-77.49416741683903, 34.71296320710554], [-77.49684826704504, 34.71223112843899], [-77.49876043306716, 34.712231107150856], [-77.501819905026, 34.71116242709587], [-77.5034781745181, 34.71109943015865], [-77.50418293883, 34.711206684610666], [-77.5047710423454, 34.711584251652496], [-77.50833285785453, 34.713045074431776], [-77.50871846815363, 34.71325701137488], [-77.50891135420837, 34.71342579754229], [-77.50931167972968, 34.71377608171875], [-77.51167404632201, 34.7158432069248], [-77.51277150523785, 34.716981096813484], [-77.5129244481885, 34.71710667068655], [-77.5130880378102, 34.71732866129891], [-77.51391075738962, 34.71848052660187], [-77.51527396143919, 34.72032633368782], [-77.5156632697304, 34.721320276684885], [-77.51678241802259, 34.72085240024337], [-77.5189455908693, 34.71994793867728], [-77.51730039410148, 34.71905588166918], [-77.51702847231978, 34.71870288387345], [-77.51592560289593, 34.71763814210689], [-77.51550940802542, 34.7170554686832], [-77.5154343671174, 34.71695041280403], [-77.51536127880924, 34.71689013535818], [-77.5148259357621, 34.71631167868054], [-77.51366234900351, 34.715293608259245], [-77.51415222243709, 34.71480712093832], [-77.51378432551284, 34.71346868568526], [-77.51303939085051, 34.71474854088986], [-77.51068178516013, 34.71268563976646], [-77.50941424203945, 34.71157646810722], [-77.50925072838108, 34.71141148317492], [-77.50908894167355, 34.71129180681865], [-77.50765233013664, 34.71037977942709], [-77.50705120165566, 34.71014983007525], [-77.50607394882383, 34.70936036889256], [-77.50492777652447, 34.708624517340645], [-77.50373859277235, 34.70844354158815], [-77.5041452882874, 34.70750283431332], [-77.50477091325439, 34.707234710638154], [-77.50540733740027, 34.70696193874768], [-77.5062208192924, 34.70661327922176], [-77.50669567572001, 34.706157219024746], [-77.50726861337304, 34.70533586995103], [-77.51016396700834, 34.70575735253301], [-77.51076274264092, 34.70616838305584], [-77.5125148131892, 34.70792040532373], [-77.51281704008038, 34.70822049818913], [-77.51460738550014, 34.71061421041289], [-77.51494144222183, 34.71126902087712], [-77.51668672948601, 34.71374740806569], [-77.5169016885227, 34.71418802765875], [-77.51747479085647, 34.715204149573154], [-77.51804635470461, 34.71646851434321], [-77.51815187911568, 34.71670729289191], [-77.51826814866496, 34.71689987891108], [-77.5191178758376, 34.718089641152474], [-77.51984787061339, 34.71911171960701], [-77.52010028734605, 34.719465124951896], [-77.52211507590297, 34.71862263396047], [-77.52175238999824, 34.71811484219923], [-77.52065785647677, 34.71630195848938], [-77.52034812970058, 34.71578893468197], [-77.52013965778896, 34.715317208566645], [-77.51908659271085, 34.71286020248846], [-77.51903947622883, 34.712763623877684], [-77.51897846028945, 34.71267697847232], [-77.51840921049875, 34.711561147849835], [-77.51614709108209, 34.706828069758636], [-77.51582757346402, 34.70638207085827], [-77.5142799759112, 34.70482681853558], [-77.51189530400879, 34.70224067085137], [-77.51131591856853, 34.70170331330872], [-77.51008751240865, 34.70063431634408], [-77.50986551404111, 34.70048864082279], [-77.50979754817385, 34.70045237529919], [-77.50887296976934, 34.699872218951754], [-77.50797215526644, 34.69989628285119], [-77.50766702857766, 34.70001256735976], [-77.50719244451987, 34.70077259085805], [-77.50665790782553, 34.70167316665665], [-77.50580637087432, 34.70295041912604], [-77.50540890950572, 34.70347280821423], [-77.50391117793446, 34.70479911929058], [-77.50365518575559, 34.705096381672796], [-77.50350075788575, 34.70516256957951], [-77.500779984371, 34.70632860967153], [-77.5006864638492, 34.706544927363616], [-77.50042036854767, 34.70647779847534], [-77.49984525681985, 34.70649872980725], [-77.49709723455643, 34.70666294261119], [-77.49516179021404, 34.70693481082753], [-77.49353878545145, 34.70683111635973], [-77.49267688273778, 34.70666290728248], [-77.49153563252202, 34.70639955436018], [-77.49025252656105, 34.70618115429024], [-77.48535057010152, 34.70541211189803], [-77.48534806575334, 34.70541094246235], [-77.4853449970079, 34.70540964062011], [-77.48529571750902, 34.705395440310376], [-77.4809558222307, 34.704221396988515], [-77.48042174595446, 34.7047164432889], [-77.47871877014941, 34.70461101730427], [-77.4774866228233, 34.70453473242417], [-77.4774105015742, 34.705157580490535], [-77.47748665626354, 34.70600344525822], [-77.47748669802564, 34.707140467607715], [-77.47748668273474, 34.708697606443806], [-77.4772995188231, 34.71020615276259], [-77.47642362846372, 34.709684284744725], [-77.47522908187734, 34.709640695467264], [-77.47515180317474, 34.709649749091184], [-77.47485702981426, 34.70920738906919], [-77.47419816566165, 34.708513584771524], [-77.47424142721566, 34.70824305258165], [-77.47427645672494, 34.70646680815869], [-77.474255779109, 34.70601227157815], [-77.4754676396275, 34.70239737941557], [-77.47419731744239, 34.70152027552736], [-77.47239125938319, 34.70011073244993], [-77.47156947535755, 34.69986445692836], [-77.47094170825892, 34.69982604819106], [-77.46935923305945, 34.69983058862157], [-77.46902836671815, 34.69978749988142], [-77.46889753374411, 34.699784260583705], [-77.46702343718937, 34.699405544496194], [-77.46660361687704, 34.6993077188029], [-77.46642257645748, 34.699032174330284], [-77.46621552625494, 34.698732496857154], [-77.46478935542044, 34.696715054193525], [-77.46448314561074, 34.69627056117914], [-77.46286434977387, 34.694506012527285], [-77.46191811227494, 34.69377025374689], [-77.45910018867272, 34.69244314301986], [-77.45843404237345, 34.692097019562574], [-77.45688472289999, 34.69230080076707], [-77.45746501118613, 34.691203413405795], [-77.45814349251911, 34.690880306275794], [-77.4587803187745, 34.68793761688903], [-77.45900265835706, 34.68726881445456], [-77.45917227333548, 34.686581676672944], [-77.45982700602679, 34.68392890311369], [-77.46009699779334, 34.68317931811139], [-77.45934774412852, 34.681741289203416], [-77.45907890539705, 34.68104212484693], [-77.45789378790609, 34.68008299755138], [-77.45778631214706, 34.679991310022366], [-77.45772608444652, 34.67995069581952], [-77.4575653196875, 34.679817157545216], [-77.45710864837937, 34.678990405059565], [-77.4569460268579, 34.67869598714275], [-77.45682029883349, 34.67831805341009], [-77.45656517147034, 34.67782554360883], [-77.45675880939957, 34.67727228743016], [-77.45674385266051, 34.67705261210572], [-77.45669131626326, 34.67584241653432], [-77.4566702595097, 34.67582046325424], [-77.45660503741365, 34.675765370606975], [-77.455808363826, 34.67509242940443], [-77.45535647396298, 34.67471790004688], [-77.45404685565234, 34.673632456189054], [-77.45403954310044, 34.673616236149016], [-77.45401310839843, 34.67360448537429], [-77.45398252664089, 34.67363248808811], [-77.45222141355295, 34.67547184407987], [-77.4521709326312, 34.67562590088659], [-77.45217814886001, 34.67587058057319], [-77.45205576516517, 34.6763972504823], [-77.45220273447687, 34.67670406755156], [-77.45218361329452, 34.67677833776064], [-77.45208931166458, 34.67712621342573], [-77.45200672146139, 34.677254924611695], [-77.45200172225906, 34.67778340811141], [-77.45199036995498, 34.67786858444462], [-77.4519751786725, 34.67789726641579], [-77.45187647069625, 34.67806805936978], [-77.45165915358805, 34.6783721819978], [-77.4514699079019, 34.678564821935545], [-77.45121905976427, 34.67876718645031], [-77.45115805823382, 34.678816397081114], [-77.4510578528222, 34.678897231948284], [-77.45008671292172, 34.6796806529816], [-77.44961258859914, 34.67993153291734], [-77.44901051221112, 34.68036243317266], [-77.44888740787229, 34.68037944707801], [-77.44895397660919, 34.680433995006005], [-77.44898755244913, 34.680441856667784], [-77.44909533645186, 34.680452133040916], [-77.44988137461635, 34.680370781555844], [-77.45021619306374, 34.680624558800375], [-77.45079205799475, 34.68055928048242], [-77.45090236595183, 34.68054416104237], [-77.45126034132778, 34.68036372424983], [-77.45143190967836, 34.68015087643237], [-77.45144528771294, 34.67959253200232], [-77.45163524688375, 34.680191655442556], [-77.45164742565385, 34.68020624767097], [-77.45167199390778, 34.68023479803983], [-77.45241036044982, 34.68077632245157], [-77.45264745536416, 34.68107999176067], [-77.45285774406494, 34.68148234850652], [-77.4530858237161, 34.68178011737068], [-77.45310541086593, 34.681853845394144], [-77.45310329170542, 34.681898094465694], [-77.45310046648142, 34.682131620365794], [-77.45311134601505, 34.682269302754044], [-77.45314006548388, 34.682424963864065], [-77.45329058055816, 34.682951624455775], [-77.45329038757168, 34.68303651044857], [-77.45331407974376, 34.68307750114154], [-77.45334117890403, 34.6831134597058], [-77.45349006467342, 34.68338580340122], [-77.45347127437788, 34.68345828637432], [-77.45341673019068, 34.68353149963711], [-77.45329647675905, 34.68359764430392], [-77.4532372299226, 34.68361194892134], [-77.4531965621052, 34.68361380292416], [-77.45309233843692, 34.68361653406636], [-77.45287974823613, 34.68360149160792], [-77.45273974726624, 34.68354656960311], [-77.45259064092761, 34.683493323468134], [-77.45243668469878, 34.683443907828604], [-77.45209968106728, 34.68297512384338], [-77.45160255671625, 34.68318339814144], [-77.45138683792351, 34.68322455997384], [-77.45125353240417, 34.68336059890575], [-77.45112262866546, 34.68339683702423], [-77.45086497576033, 34.68347320009578], [-77.45067144990355, 34.68348277851859], [-77.45037890587622, 34.68341036519063], [-77.45037232373092, 34.6834092750556], [-77.45036481007384, 34.6834034249217], [-77.45010027867241, 34.68324208935048], [-77.44982582990886, 34.68294354893835], [-77.44971276385706, 34.682795682286795], [-77.44966725527752, 34.68252352075142], [-77.44924574607384, 34.68232227508719], [-77.44861443718894, 34.68236146677698], [-77.44841857827929, 34.68241002676251], [-77.44839440366664, 34.68242615833574], [-77.44835654185468, 34.682429945511], [-77.44774818369193, 34.682512584690826], [-77.44756648588267, 34.68256831939861], [-77.44734637111029, 34.68263583744246], [-77.4470359745246, 34.682759763962146], [-77.44677715227154, 34.68277353568348], [-77.44647362146843, 34.68288976394172], [-77.44633119614808, 34.68298122279164], [-77.44602854111288, 34.68304530707377], [-77.44567367778357, 34.6830392086948], [-77.44555007833203, 34.6830109718434], [-77.44537558040415, 34.68296215244889], [-77.44516702818488, 34.68299201738354], [-77.4451104916112, 34.683040168911106], [-77.44501773615278, 34.68309173388066], [-77.44455178083138, 34.683335955388316], [-77.44445158433753, 34.68345854960132], [-77.44421849117386, 34.68363985508152], [-77.44408035809289, 34.68336180234836], [-77.4436560868018, 34.683022814393034], [-77.44323020748855, 34.68282392810719], [-77.44319061341422, 34.68276268332698], [-77.4429779230115, 34.682226687061245], [-77.44299491428553, 34.68202934319432], [-77.44272672221541, 34.681579826613074], [-77.44321261132173, 34.68143359287387], [-77.44358356419562, 34.68140373202236], [-77.44363417040132, 34.68137495209279], [-77.44373373771968, 34.681372870667374], [-77.4436732491851, 34.68109356612207], [-77.44359923770486, 34.6808842053745], [-77.44281865503658, 34.68078969263844], [-77.44241401644642, 34.68101660084911], [-77.44200270751305, 34.68132668916583], [-77.4415313765293, 34.68167633534336], [-77.44139252946039, 34.68180552704942], [-77.44106775885344, 34.682117870765545], [-77.44095682747746, 34.68223259580542], [-77.44062211987321, 34.68301997862857], [-77.44063446370933, 34.6830844506325], [-77.44087598076933, 34.683360402338195], [-77.44086837826788, 34.68358339640243], [-77.44087297106684, 34.68372688026147], [-77.44086318432164, 34.683812151291626], [-77.44083819135159, 34.68390789928685], [-77.44081146750686, 34.68398489563634], [-77.44079512735723, 34.684211354779706], [-77.44046730087148, 34.68397742428822], [-77.44037206337747, 34.68383126417618], [-77.44036106337711, 34.68379857331628], [-77.44035132344621, 34.68371793029071], [-77.44032978701196, 34.68358842764814], [-77.4403221835612, 34.683534304310406], [-77.4404836887725, 34.683077771174425], [-77.44048390013532, 34.68303180759499], [-77.44049048197431, 34.682965727720116], [-77.44061555365381, 34.682129907648], [-77.4405925384564, 34.68195171337586], [-77.4404277197495, 34.68136775746409], [-77.44041460768972, 34.681320989325556], [-77.44039422011548, 34.68131300104502], [-77.43983220667221, 34.681081687007214], [-77.43971163992926, 34.68108466520853], [-77.43934973069118, 34.681101112853526], [-77.43917521255943, 34.681137852707145], [-77.43893767509013, 34.68117527918787], [-77.43877363335017, 34.68111325590194], [-77.43858501429577, 34.68096305677196], [-77.43827211213572, 34.680581310536496], [-77.4381706753857, 34.680472170082545], [-77.43811170199285, 34.68038412563737], [-77.43790997161543, 34.68024307668066], [-77.43757789171865, 34.68001438801912], [-77.43692105866607, 34.680101040014385], [-77.43691166315004, 34.68010249087851], [-77.43690941801093, 34.68010296047366], [-77.43685405239331, 34.680085439857834], [-77.4363515571118, 34.67993876148905], [-77.43632409603576, 34.67991862667269], [-77.43631125191624, 34.67990920912588], [-77.43614019869844, 34.679835808664706], [-77.43578971254286, 34.67968052914076], [-77.43575520905193, 34.67967018639172], [-77.43572415860453, 34.67966087862733], [-77.43546039775346, 34.67958181307962], [-77.43544331215679, 34.679575640900964], [-77.43519778286205, 34.67948123199209], [-77.4351732134962, 34.67946707310064], [-77.43509705083059, 34.67938346078918], [-77.43486704155313, 34.679172902601834], [-77.43472638128377, 34.678796693471334], [-77.43471697186499, 34.67877904125743], [-77.4347204587253, 34.67876780126322], [-77.43473512884383, 34.67876645211912], [-77.43506149219556, 34.67857755113996], [-77.43542398568094, 34.67860010452781], [-77.43552928520205, 34.67859453348599], [-77.43579368415445, 34.67859652705938], [-77.43598367991639, 34.67858960922252], [-77.43607019856753, 34.67858117792226], [-77.4362524817642, 34.678477445787294], [-77.43626790052761, 34.67830648711167], [-77.43629261755939, 34.678211955561885], [-77.43623388376122, 34.67801526079481], [-77.43609943443957, 34.67776564952072], [-77.43595695151005, 34.677535518134825], [-77.43579108724836, 34.677330933005024], [-77.43555015088208, 34.677102159977466], [-77.43528458336797, 34.676866882957675], [-77.43494026091707, 34.67688379881912], [-77.43476580469986, 34.67711895196055], [-77.43466257164052, 34.67717759734137], [-77.43451457843355, 34.67731381688233], [-77.43435136499201, 34.677416599483884], [-77.4342939226155, 34.677512978541536], [-77.4341324761342, 34.677693965735074], [-77.4341253491545, 34.67801308076176], [-77.4338408259691, 34.67807751364375], [-77.43365765769435, 34.67806118425113], [-77.43338263967001, 34.67800697369962], [-77.43305019393398, 34.677946156373366], [-77.4328264342477, 34.677914686818355], [-77.43262726398011, 34.677875898126025], [-77.43243850252419, 34.677845745294384], [-77.4323212589217, 34.677836571217554], [-77.43224303300556, 34.677813089949275], [-77.43213756861434, 34.67777856127052], [-77.43201661457984, 34.67771240120684], [-77.43196445645043, 34.67770617870632], [-77.43198867893732, 34.677666727346505], [-77.43205953660117, 34.67766649055686], [-77.43216933752602, 34.67766874379633], [-77.43223422436989, 34.67769427367074], [-77.43224581661892, 34.67763526837087], [-77.43235035707599, 34.677545096096935], [-77.43247400984474, 34.6774355470643], [-77.43252117082952, 34.677415599414616], [-77.43258355363415, 34.67734432975393], [-77.43286824327285, 34.67701436688616], [-77.43277456717574, 34.67668402208583], [-77.43271944849886, 34.67649824924281], [-77.43271107820144, 34.676400337976254], [-77.43269419554105, 34.67620285487305], [-77.43266180997168, 34.67582404481466], [-77.43264575284535, 34.67563623267636], [-77.43259812037738, 34.67507906235184], [-77.4318591746638, 34.67442518897735], [-77.43167014977456, 34.674257926355295], [-77.43144573913744, 34.67416160180349], [-77.43079228117482, 34.67462436772254], [-77.4302763964375, 34.67498970853965], [-77.4301691523457, 34.67506565646422], [-77.42985779584794, 34.67679997000074], [-77.43025071410202, 34.677216996163935], [-77.43045028947137, 34.67744543318738], [-77.4305785699201, 34.67763044164346], [-77.43062098199766, 34.67782057139921], [-77.43060401060654, 34.67789963556929], [-77.43060416178224, 34.67827397707964], [-77.43068747603255, 34.678487894572775], [-77.43090522576964, 34.678716098199885], [-77.43108476589845, 34.67880626043154], [-77.43121570286279, 34.67891149118128], [-77.43144356133104, 34.67907009780801], [-77.43163669297313, 34.67918215462542], [-77.43171315444741, 34.679245632879336], [-77.43183586871908, 34.679448610219694], [-77.43171081700036, 34.6795976024337], [-77.43162021116169, 34.679681691524614], [-77.43133504294099, 34.67983251281336], [-77.43127148406032, 34.67985937301988], [-77.43119869273718, 34.67991650448177], [-77.43082247703646, 34.68021230901168], [-77.43068734816659, 34.6804000107157], [-77.43043882235709, 34.68063719214386], [-77.43027364291528, 34.68089913436111], [-77.43013671455022, 34.68099543632941], [-77.4299590796754, 34.68102846805671], [-77.42996487821159, 34.681219118032374], [-77.42988469297495, 34.68133123959461], [-77.42979259330662, 34.681454446153005], [-77.42967765226328, 34.68148910610954], [-77.42953346938253, 34.68150485236626], [-77.42945554715227, 34.68151202807013], [-77.42920003235007, 34.681707547478155], [-77.42915872027524, 34.681866675802155], [-77.42901957447017, 34.68191151354683], [-77.42890233708837, 34.68196868258375], [-77.42877842705704, 34.68201320011805], [-77.42864470197475, 34.68209981616043], [-77.4284681047033, 34.68200658015563], [-77.42815706512249, 34.68207540639961], [-77.4280654160346, 34.68209605233693], [-77.42801553323275, 34.682305439777515], [-77.42793774273488, 34.68232853425276], [-77.42787621104401, 34.68225670955053], [-77.42794434233002, 34.6820624262659], [-77.42795182453625, 34.68200362024579], [-77.42756920576916, 34.68138768139959], [-77.42722803481321, 34.6814686201582], [-77.42695846612901, 34.681283880330675], [-77.42673510573107, 34.68141668840858], [-77.42657470536366, 34.68152193646271], [-77.42644218882822, 34.68179659045505], [-77.42620051121418, 34.68195012727468], [-77.42615007926862, 34.6819559218793], [-77.4259998765173, 34.68238215628995], [-77.42545475958414, 34.682208680777435], [-77.42540837010422, 34.68221186740668], [-77.42539217484844, 34.68221248450664], [-77.42528756844207, 34.68218986806284], [-77.42443468141485, 34.68214268821578], [-77.42414402624331, 34.68215233365046], [-77.42348157323266, 34.682080049255134], [-77.4229774267278, 34.68175506050081], [-77.4227642510277, 34.681545982220904], [-77.42082406642032, 34.680339228234644], [-77.41923556776656, 34.67944753716152], [-77.41767816095091, 34.67857325639975], [-77.41644843499661, 34.67774634681576], [-77.41605403435071, 34.677204212649826], [-77.4155152741612, 34.67653461611111], [-77.41496577115694, 34.67587287957613], [-77.41512158324387, 34.67439167899351], [-77.41516150119423, 34.6741743989387], [-77.41528324749278, 34.67395499262619], [-77.41693034685545, 34.67255693377463], [-77.41729771339223, 34.67196663025018], [-77.41883783963432, 34.66949168235001], [-77.41927686345015, 34.66921957404868], [-77.41929935596728, 34.66891308420908], [-77.41930418552107, 34.668742255397746], [-77.41921005139064, 34.668602655381406], [-77.41894101251505, 34.66848586471676], [-77.41751615274195, 34.66701517158492], [-77.41533242379238, 34.66691930944786], [-77.41497352870778, 34.666464100320695], [-77.41438150555913, 34.665713167123016], [-77.4139241304546, 34.66553106130763], [-77.412458043902, 34.66626076368415], [-77.41213917312572, 34.66640734297787], [-77.41209171701965, 34.66644276852992], [-77.4119710776895, 34.666653506477495], [-77.41165924896349, 34.666540138003626], [-77.41076721926049, 34.666385739280756], [-77.41024266707, 34.666410210574185], [-77.41015222305758, 34.66629699385694], [-77.41014651476632, 34.666278639661265], [-77.41012666790598, 34.66622042459169], [-77.41066641279434, 34.66589186897163], [-77.41069526343252, 34.66528571421449], [-77.41026883902899, 34.66489726422155], [-77.40911528918598, 34.662870924751836], [-77.4090888383064, 34.662789285344935], [-77.40893534513746, 34.66267747840994], [-77.40629379097388, 34.66243960946706], [-77.40462316091995, 34.66229692723656], [-77.4030887298728, 34.661543430658455], [-77.40221145108171, 34.66011311636133], [-77.40101428261976, 34.659180169844596], [-77.40097388820703, 34.65754256216181], [-77.40092733729104, 34.65625122477697], [-77.40020298868144, 34.655255013695296], [-77.39878173991997, 34.651818671088165], [-77.39875746553724, 34.65096154457092], [-77.40015002146056, 34.64800978444758], [-77.4003903993836, 34.647318079488024], [-77.40084036352023, 34.64716693437122], [-77.40433853009974, 34.64586580068806], [-77.40809692592093, 34.64561665718239], [-77.40879196065232, 34.64541152771485], [-77.41210288551201, 34.64348812472033], [-77.41357567919658, 34.64213033696533], [-77.41374422846252, 34.64078759372536], [-77.4155935448146, 34.637880851647665], [-77.41841411325159, 34.63579908290283], [-77.42050138452551, 34.63464312479836], [-77.422182826922, 34.63419747090531], [-77.42371532541256, 34.63385124120902], [-77.42513317204087, 34.634589911133915], [-77.4266065498835, 34.63499030713274], [-77.42850514573578, 34.63531169406991], [-77.42964144668257, 34.63625932874636], [-77.43174232057, 34.638384527507974], [-77.43282310700796, 34.63734872546483], [-77.43501576277956, 34.63497362513889], [-77.43508808531256, 34.634792821988114], [-77.43512670398172, 34.63469628502628], [-77.43575373353873, 34.633767588964815], [-77.4375184584903, 34.63106067895349], [-77.43775434308377, 34.630770352549284], [-77.43689999777061, 34.62871000968077], [-77.43695761810494, 34.62826657798094], [-77.4368942532189, 34.62799165950512], [-77.43698945195888, 34.62681514790331], [-77.43702387742827, 34.62679815838765], [-77.43715549167007, 34.626733204462894], [-77.43775826916199, 34.626435724022116], [-77.43794267277896, 34.62645561322071], [-77.43876077413155, 34.626167109748735], [-77.43884240072136, 34.6259006741739], [-77.43943990771022, 34.62560577867036], [-77.4399613006842, 34.62534835901268], [-77.44070358693942, 34.625016414889004], [-77.44140758641362, 34.62502923575788], [-77.44133175187369, 34.62554277424652], [-77.44200294437331, 34.62613004190773], [-77.44223074000524, 34.626763486983315], [-77.44312763136259, 34.62769508447688], [-77.44415771369094, 34.62916815404141], [-77.44484372144183, 34.62997197371867], [-77.44622851359779, 34.62983156862441], [-77.44839168365465, 34.629536735173694], [-77.45034049014451, 34.62948551491159], [-77.45248415262822, 34.62794686365492], [-77.45451493057541, 34.626723553396964], [-77.45514882359002, 34.62603417571315], [-77.45641789235874, 34.62313737245699], [-77.45673973127916, 34.62262633903611], [-77.45661962368702, 34.62250471749533], [-77.45678903954264, 34.62231290622541], [-77.45825264794405, 34.619240664735756], [-77.45898956533742, 34.618378681035246], [-77.45970191007143, 34.617591289372875], [-77.46041794905591, 34.61714594583946], [-77.4608757673237, 34.61656095122546], [-77.46029416482754, 34.61570417042649], [-77.45987393135954, 34.61525342045907], [-77.45974847164015, 34.61438277469848], [-77.45970835449091, 34.61367514493614], [-77.45966604060753, 34.61292920482563], [-77.45960880407307, 34.611919709431675], [-77.45958363104234, 34.61147565294325], [-77.4595650335395, 34.61114753498691], [-77.45950120599187, 34.610022078916955], [-77.45939770663102, 34.608611523409984], [-77.45939147050541, 34.608527588457406], [-77.45922620408037, 34.607146388322], [-77.45927752277574, 34.60609198689249], [-77.46019969985913, 34.60405451543804], [-77.46025078146212, 34.603954984602325], [-77.46031229529919, 34.60388240157761], [-77.46065974567989, 34.60331849323028], [-77.46152039903033, 34.60192166403298], [-77.46167944244522, 34.60178003918341], [-77.46330437365448, 34.6000745302441], [-77.46330794167318, 34.60006953972936], [-77.46331368649568, 34.6000698682717], [-77.46331881725257, 34.60006607455694], [-77.46591911442664, 34.598505523643965], [-77.46574375067077, 34.59709975567869], [-77.46574376329787, 34.596424237153215], [-77.46574377608253, 34.595966767203855], [-77.46574380073234, 34.593589756142016], [-77.46577034820653, 34.593462457434235], [-77.46566880062707, 34.593315959008116], [-77.46552658240375, 34.59341336456066], [-77.46344816804442, 34.59288467819263], [-77.46285669792752, 34.59331521391506], [-77.46250642503335, 34.593284485809065], [-77.46239621592238, 34.59355693545557], [-77.46217836877081, 34.59374894806644], [-77.46211500294841, 34.59377448627945], [-77.46176539065885, 34.593955598787055], [-77.46165279200096, 34.59400603274393], [-77.46145407517344, 34.59411647758066], [-77.46101573561165, 34.59431268576597], [-77.46074215719389, 34.59451949379323], [-77.46073688790423, 34.59452480995335], [-77.46072401577095, 34.59453320743157], [-77.4604070772561, 34.59471910250998], [-77.46031308135207, 34.59487205619095], [-77.46019219945369, 34.594953607943054], [-77.46000787999553, 34.59497098814528], [-77.45991934877586, 34.59485814305337], [-77.45986698676391, 34.59477774423341], [-77.45981815819869, 34.594745814666915], [-77.45974159609368, 34.59470462176527], [-77.45955863784297, 34.594606017544045], [-77.45939588365266, 34.594542892774726], [-77.4590316931215, 34.59433609386198], [-77.45868458746581, 34.594116425845556], [-77.45856769625243, 34.59404065748133], [-77.45854251101632, 34.594019982348755], [-77.4584762878148, 34.59392297182174], [-77.4583474464167, 34.59373423164569], [-77.45827735064252, 34.5934298598819], [-77.4582474312615, 34.593393501052695], [-77.45825650914358, 34.593347263329335], [-77.4581779236428, 34.59283339147555], [-77.45817199320442, 34.59269831197732], [-77.45824297355801, 34.59265624005759], [-77.4581777990528, 34.59263717549482], [-77.45812677963347, 34.59264661893994], [-77.45754458946125, 34.592497240694186], [-77.45703718486301, 34.59250650533711], [-77.4565255892884, 34.59274158781096], [-77.45606123040938, 34.59278142657723], [-77.45540934588973, 34.59346468374207], [-77.4556557836063, 34.59367598992111], [-77.45602693109083, 34.594027019034485], [-77.4561937625013, 34.5941494689649], [-77.45637427265528, 34.594297189467916], [-77.45641938129823, 34.594330730442735], [-77.45650528545082, 34.59459263558406], [-77.45647955407378, 34.59463641761286], [-77.45613395417531, 34.59496670158589], [-77.45600085409372, 34.59503551026535], [-77.4560156248694, 34.59513803759068], [-77.45574962205207, 34.59548274364817], [-77.45570212180351, 34.59555036372084], [-77.4556374231606, 34.59561519777578], [-77.4553693562697, 34.59601365276033], [-77.45522653135393, 34.59600333100302], [-77.45484071729925, 34.59600267951013], [-77.45467381871254, 34.596008452969286], [-77.45441049564936, 34.59596521374422], [-77.45372616538685, 34.59577153560093], [-77.4535338602089, 34.5962152904976], [-77.45357714130031, 34.59666494092196], [-77.45360304397312, 34.59693407764263], [-77.45363610770502, 34.59727758117606], [-77.45362902472417, 34.59730248956132], [-77.45362409825943, 34.597318605875515], [-77.45354659921895, 34.59758334189681], [-77.45350756143837, 34.59769983915032], [-77.4534780949354, 34.597745275017964], [-77.45330741205268, 34.59780933887238], [-77.4532337695056, 34.59781283328649], [-77.45320247521495, 34.597807903120696], [-77.45307598967374, 34.59782294804747], [-77.45280811875676, 34.597832991862106], [-77.45270356729523, 34.59779618493384], [-77.45247353059554, 34.597784984919954], [-77.45214817966968, 34.59768753966767], [-77.45183942069824, 34.59764608495432], [-77.45055817414918, 34.59808605105065], [-77.45016611606304, 34.59812773645495], [-77.44979729967073, 34.59831467897733], [-77.44832711736998, 34.5985440644737], [-77.4485659836439, 34.599820389885984], [-77.448619794448, 34.59983251472372], [-77.44865052335868, 34.59989605879297], [-77.44877671628349, 34.600157015632746], [-77.44883079799237, 34.6002688509172], [-77.44885517777931, 34.600319266089635], [-77.44868697945888, 34.60040526624413], [-77.44850848637195, 34.60046575606514], [-77.44836907091567, 34.60051834260839], [-77.44817928255051, 34.60047087586956], [-77.44800260880123, 34.60050928811789], [-77.44764553853942, 34.60044132931132], [-77.44738963070955, 34.60069359744706], [-77.4469778932069, 34.600847970563436], [-77.44668057162157, 34.600756781565266], [-77.44642848602295, 34.600605453104315], [-77.4461443931717, 34.600538489151354], [-77.44545729630336, 34.60012850147564], [-77.44536991250784, 34.60007122220802], [-77.44535763332007, 34.60002435275483], [-77.44440552398738, 34.59964918644117], [-77.44528860713808, 34.59951216625275], [-77.44525798210235, 34.59931426608351], [-77.44522824533277, 34.59929162251361], [-77.44427343023462, 34.599583347554585], [-77.4442547951204, 34.59957604879871], [-77.4435671499009, 34.599057939525096], [-77.4434074564539, 34.59881363359081], [-77.44303607168567, 34.59847087894045], [-77.44322630032926, 34.597997597663074], [-77.4430751676295, 34.59772123346731], [-77.44310720292525, 34.59735223410881], [-77.44311381180351, 34.59733880377741], [-77.4433217196775, 34.59691242488823], [-77.44337176787663, 34.59680967486525], [-77.44344632415604, 34.59662187631451], [-77.44373601665066, 34.596317752649405], [-77.44419225197947, 34.59592567028232], [-77.44417208019196, 34.59585096832919], [-77.44381087245286, 34.59557757294232], [-77.44348805280671, 34.59538798904071], [-77.44330224723302, 34.59528522832583], [-77.44313593481388, 34.59510379430845], [-77.44255495097089, 34.59494651995249], [-77.44234770711427, 34.59496857874524], [-77.44203479761553, 34.595135677516154], [-77.44182252620537, 34.594829150828964], [-77.44189946063833, 34.59445151762704], [-77.44192068800243, 34.59435519035679], [-77.44195331349768, 34.59432538811219], [-77.44223361054267, 34.59392050300828], [-77.44229183752975, 34.593852476361874], [-77.44234715913134, 34.59385498563139], [-77.44239989339108, 34.59383962551472], [-77.44287450300871, 34.593546965013175], [-77.44313512716559, 34.59349307170808], [-77.44349992017159, 34.5933442095723], [-77.44422290125625, 34.59310661898782], [-77.4447108666463, 34.59243115472802], [-77.44519487750242, 34.5917937682282], [-77.44471041359691, 34.59155769681843], [-77.44423743281155, 34.59074306140343], [-77.44392185373866, 34.5907064797745], [-77.44365909972831, 34.59060060103185], [-77.4431422063088, 34.59039231204552], [-77.44314046139786, 34.59038514348461], [-77.44313357335896, 34.5903833322143], [-77.44312465349557, 34.59038523884453], [-77.44256830073468, 34.590235132018506], [-77.44234535087747, 34.59016646160905], [-77.44205880270457, 34.590240224546534], [-77.441826446068, 34.59029261799514], [-77.44155732240858, 34.59034633297627], [-77.4413895806668, 34.59040198550662], [-77.44130989346968, 34.59039071099301], [-77.44116327160444, 34.59036217830027], [-77.44094608472282, 34.59051945612216], [-77.44093550385581, 34.590041633955025], [-77.44138939900233, 34.589977392760524], [-77.44155710288797, 34.58988839188255], [-77.44167743681204, 34.58988464790145], [-77.44168227921907, 34.58975428579117], [-77.44181664960459, 34.589165694673135], [-77.44177838604713, 34.58889119331254], [-77.4416877776605, 34.588762913779924], [-77.44155637267137, 34.58836260337267], [-77.44113384869097, 34.588135224811055], [-77.44155617547334, 34.58795001271052], [-77.44215132060631, 34.58778024024602], [-77.44298110310788, 34.5871814179358], [-77.44313194072186, 34.58709976745417], [-77.44324250391008, 34.586981030337725], [-77.44428901095878, 34.58637843762487], [-77.44470721079271, 34.585348037314006], [-77.44692114772633, 34.58305204910124], [-77.44556486308343, 34.58077822557444], [-77.44509146233825, 34.57950266566362], [-77.44404217464046, 34.57667498028544], [-77.44306954966967, 34.57517821295778], [-77.44154927019838, 34.57331829484268], [-77.4384865780989, 34.5739861124502], [-77.43839773259558, 34.573997873505235], [-77.43831412793216, 34.57401670246284], [-77.43632822634098, 34.57322721959232], [-77.43524563495036, 34.57337967335086], [-77.43501058291378, 34.57313939008734], [-77.4344575949435, 34.57316760399017], [-77.43431899327098, 34.57313553717771], [-77.433921717501, 34.57304362212809], [-77.43382092720017, 34.57289503902612], [-77.43366943210428, 34.57261426175129], [-77.43348798749776, 34.572910671225685], [-77.43318929136402, 34.57314952200594], [-77.43292669706497, 34.57323597719715], [-77.43288181153311, 34.57352937605413], [-77.432782197936, 34.57395004605546], [-77.4327791303342, 34.574058007547805], [-77.43280383282678, 34.57413871104369], [-77.43288215621446, 34.57447803492231], [-77.43296752850614, 34.57478806902942], [-77.43299802245872, 34.57487554298204], [-77.43288252200338, 34.5754828079843], [-77.43282834231908, 34.57569078863902], [-77.43256580258705, 34.57612878319493], [-77.43223886334022, 34.576683664452005], [-77.43241575659448, 34.57700366317542], [-77.43262761793272, 34.57747664359416], [-77.43275929370398, 34.577591231381845], [-77.43317618108509, 34.57824651545172], [-77.43337524088619, 34.57853715147654], [-77.43315948884921, 34.57909811362343], [-77.43333073953701, 34.579441090333425], [-77.43332192964587, 34.579546540345184], [-77.43327805707592, 34.579651459096084], [-77.4332058403416, 34.57986268928827], [-77.43309720047009, 34.57995630256461], [-77.4329815224017, 34.58007789744198], [-77.43288423354556, 34.580156876258314], [-77.43251683435815, 34.580436230316316], [-77.4324809890226, 34.58045991357234], [-77.43246700224724, 34.58047200339474], [-77.43209640218899, 34.580693621194044], [-77.43188149915562, 34.58074963673404], [-77.43149312307006, 34.58083835036699], [-77.43130842576079, 34.58084460806339], [-77.43114505456666, 34.58091162556563], [-77.43077521630362, 34.58086657431933], [-77.43052039320403, 34.580840059593704], [-77.4303459979632, 34.58077861649936], [-77.43023955182554, 34.58067198570873], [-77.43012632642576, 34.58068735892545], [-77.42996420917366, 34.58065911636925], [-77.4297322781654, 34.58058652145984], [-77.42958542322101, 34.580622229143586], [-77.42933829789051, 34.5806916936991], [-77.42913907959655, 34.58073837808255], [-77.42894433375776, 34.58085044890867], [-77.42883966734709, 34.58088354937752], [-77.428702008362, 34.58085278558195], [-77.42863097162872, 34.58068889117338], [-77.42859730974538, 34.580606789350654], [-77.42860063232551, 34.58055198843351], [-77.42855017662558, 34.58040406025252], [-77.42851227538168, 34.58023527547144], [-77.42847217468973, 34.580200286721556], [-77.42844264144367, 34.58008878240904], [-77.42847999718418, 34.57985000408203], [-77.42850059673933, 34.57977158962472], [-77.42854995814385, 34.57971243062741], [-77.4287384357304, 34.579515795557555], [-77.42880066950711, 34.57903322586874], [-77.42877079661169, 34.57888335683492], [-77.42867810111863, 34.57875834129873], [-77.42861484328166, 34.578551625143646], [-77.42865735653231, 34.578475164344056], [-77.4286293965707, 34.57839315276428], [-77.42860298564239, 34.57837687582216], [-77.42863884048822, 34.57836178666466], [-77.4286654072868, 34.57834912671544], [-77.42874653743587, 34.57837065106326], [-77.42889371321922, 34.57838730120524], [-77.42894354815908, 34.5783976418285], [-77.4290659671273, 34.57841610302026], [-77.4292521578677, 34.57848124239964], [-77.42944389972796, 34.57847604968117], [-77.42973160108312, 34.57853267802769], [-77.42984938562991, 34.57860054814507], [-77.43012565279047, 34.57867352305026], [-77.4301345683657, 34.57867662246286], [-77.43019389288659, 34.57867765343898], [-77.43047076256039, 34.57869032786155], [-77.43051966574433, 34.57869595611386], [-77.43055488763554, 34.57866343796564], [-77.43060477388056, 34.57861825864958], [-77.43094875209123, 34.57818193806988], [-77.43100034728467, 34.57804283802031], [-77.43080603914395, 34.57773998329084], [-77.43060865232398, 34.577672248789966], [-77.4305193178424, 34.57766699872362], [-77.43034875876299, 34.57762230155352], [-77.43012527955865, 34.577553780224676], [-77.4300408877189, 34.57751693107456], [-77.42988443474565, 34.577448616317305], [-77.4297929728323, 34.57739529783174], [-77.42973117083105, 34.57722275708786], [-77.42967978456312, 34.577108944512936], [-77.4296651468943, 34.57705572467171], [-77.42973105552755, 34.576870935828744], [-77.42997393785741, 34.576423809152175], [-77.43040089539579, 34.57610018935075], [-77.42994241731631, 34.57593835750553], [-77.42973074905916, 34.57593463399611], [-77.42949791863, 34.5759797886935], [-77.42894277356939, 34.575965186632025], [-77.4284947572583, 34.576009361697274], [-77.42815481057572, 34.576039191075395], [-77.42783521959413, 34.57612661122086], [-77.42770213189814, 34.576128967268055], [-77.42736683866822, 34.57608907310267], [-77.42707187916716, 34.576263456325634], [-77.42677823023604, 34.57640905481565], [-77.42657896831565, 34.5764942790825], [-77.42648250871676, 34.57656258458936], [-77.4262950821338, 34.57669364286456], [-77.42618504168937, 34.576737149195246], [-77.42615589932768, 34.57674516530111], [-77.42598806096271, 34.576800072532315], [-77.42584487601215, 34.576816693582614], [-77.42579106797724, 34.576820382441774], [-77.42575145673835, 34.57681489230408], [-77.4256468299937, 34.57678732775888], [-77.42549374211062, 34.57670523970957], [-77.42539702150003, 34.57664273011334], [-77.42526647763492, 34.57655836089771], [-77.42508861671536, 34.57644341006663], [-77.42504045701244, 34.576409963086455], [-77.42500295577608, 34.57638804771611], [-77.42488571651246, 34.57626043786322], [-77.42484843904539, 34.57621999666518], [-77.42482290145507, 34.57607557110895], [-77.42482695924654, 34.576056635291934], [-77.42490493434326, 34.575939864703145], [-77.4250028160312, 34.575871277394086], [-77.42518022596816, 34.57577221178452], [-77.42524042318871, 34.575740788342586], [-77.42539676140761, 34.575697620530306], [-77.42551907352137, 34.575663847682684], [-77.42579070213434, 34.57551343483338], [-77.4258170017314, 34.575488971782356], [-77.42580140188585, 34.57507830014411], [-77.42580467203209, 34.575066165866275], [-77.42579863455538, 34.57505835293972], [-77.42579057484491, 34.575057637026575], [-77.4257724857414, 34.57505132529597], [-77.42539653403608, 34.574869423367765], [-77.4252709921303, 34.57485399141058], [-77.42500254858521, 34.574880317438144], [-77.42470992391368, 34.574909013914066], [-77.42460855971551, 34.57487899302237], [-77.42456446917316, 34.57486831772358], [-77.42441444655275, 34.574842485768926], [-77.4244123617472, 34.57484191838826], [-77.42441155570333, 34.57484195025732], [-77.42440927335934, 34.574840774071], [-77.42428740298521, 34.57478232913666], [-77.42424967615791, 34.57469188675068], [-77.42424801148677, 34.57465424340562], [-77.42423877070385, 34.574469479062316], [-77.42424536907583, 34.57444233173264], [-77.42423671238488, 34.574419592938796], [-77.42421443991333, 34.574374034505034], [-77.42406350245972, 34.57378193437469], [-77.42393634676971, 34.57363781359455], [-77.42382019713462, 34.57336658249336], [-77.4237618819908, 34.573301264926876], [-77.42342614379687, 34.57307877819895], [-77.42322122489276, 34.57352019488617], [-77.42303231881947, 34.57371350788692], [-77.42295755033908, 34.57377925134395], [-77.42272335944818, 34.57390466936179], [-77.42263838821313, 34.57393306476339], [-77.42251711972371, 34.5739735896117], [-77.4223876205801, 34.574015922916715], [-77.42224443421287, 34.57406242137788], [-77.42204822859594, 34.57412376814123], [-77.42204745599034, 34.57412400970789], [-77.4220449757895, 34.57412607881082], [-77.42185049567153, 34.57426423012755], [-77.42176236717594, 34.5743765317756], [-77.42177271034049, 34.57445891221614], [-77.42182174649501, 34.57476143216805], [-77.42182584667623, 34.57479194564666], [-77.42183155974327, 34.57481166315838], [-77.42183419142016, 34.575197522350656], [-77.42154192447292, 34.57516572618016], [-77.4214567150251, 34.575170362796044], [-77.42128234865753, 34.57510716671164], [-77.42125127219964, 34.575096340837874], [-77.42106268015051, 34.574971209249945], [-77.421023629808, 34.57494992993425], [-77.42096930919455, 34.5749157005855], [-77.4206686194837, 34.57464500785672], [-77.42061439390723, 34.5746008189348], [-77.42051917671287, 34.57455614942669], [-77.42046273170722, 34.574342497126324], [-77.42044108793398, 34.574142846046904], [-77.42044567539473, 34.57395769676213], [-77.42040870562721, 34.57372293979609], [-77.42048981336646, 34.57351878990366], [-77.42096089250091, 34.57321857530156], [-77.42101938876506, 34.573163901290826], [-77.4210622772401, 34.57315365653902], [-77.4211058584643, 34.57315066300659], [-77.42165503120748, 34.572907971318095], [-77.42185015950527, 34.57280726955625], [-77.42217145347635, 34.57261907986642], [-77.42222517484406, 34.5725909350775], [-77.4222440858302, 34.57258187366238], [-77.42227880969578, 34.57256614198882], [-77.4226380206388, 34.572400897179435], [-77.42286630174522, 34.57234012354734], [-77.42332512177413, 34.57213640919343], [-77.42342591607053, 34.57216416801574], [-77.4235859052234, 34.57216252708037], [-77.42382657075063, 34.57195532907417], [-77.42357883961152, 34.57182623117053], [-77.42342574525006, 34.57147617169769], [-77.42339075183031, 34.57120677501999], [-77.42332771247189, 34.57117824377831], [-77.42289018810312, 34.57096933426942], [-77.42263768129541, 34.57097994572446], [-77.42240347536156, 34.57105936929732], [-77.42224374129087, 34.57111072344104], [-77.42198991931619, 34.57122053909255], [-77.42184979790348, 34.5712324242585], [-77.42176411591387, 34.571311819525725], [-77.42146203597228, 34.57144118429602], [-77.42145587325255, 34.57144309270196], [-77.42144921381629, 34.571442502237566], [-77.42107814676574, 34.57148579417328], [-77.42106190838236, 34.571479976965435], [-77.42102321951154, 34.571469536325765], [-77.42066791683008, 34.57139470955039], [-77.420591451187, 34.57123139566464], [-77.42056853589904, 34.57115233741247], [-77.42048749689002, 34.57096970410011], [-77.42041001365601, 34.570750655595745], [-77.42048119740866, 34.57051681198194], [-77.42027376928814, 34.57056291088909], [-77.42005058234874, 34.5703780006606], [-77.42000009915382, 34.570255578469805], [-77.42001345828473, 34.57010292648939], [-77.42013587599588, 34.57008959587149], [-77.42027366629496, 34.5700712700471], [-77.42044578306228, 34.570081808544984], [-77.42048807207549, 34.570083726496186], [-77.42066764890407, 34.57014575405622], [-77.4207746955999, 34.57015801683569], [-77.42106166102172, 34.57035201404106], [-77.42145133963902, 34.57017103613358], [-77.42146131190812, 34.57016800496533], [-77.42184958334843, 34.570294025364646], [-77.42212451421278, 34.56995014413313], [-77.42224345469847, 34.56988180463631], [-77.42237626219487, 34.56976054434672], [-77.42254859353855, 34.56968816336875], [-77.42263736463848, 34.569648346821616], [-77.42269961791382, 34.569637754058434], [-77.42296773831785, 34.56960043620477], [-77.42303133252145, 34.569663548956385], [-77.42323464425994, 34.56969882668446], [-77.42342537824099, 34.56999360871121], [-77.42383059815404, 34.569819634001234], [-77.42359366344924, 34.570290638949515], [-77.42389379394658, 34.5705917806022], [-77.42421357387335, 34.5710232070114], [-77.42422240179125, 34.57103944508452], [-77.42425547277136, 34.57104417534746], [-77.4250017094581, 34.57175341943171], [-77.42508926470208, 34.57167847371946], [-77.42501971832519, 34.57178290534723], [-77.42504850902311, 34.57182915865361], [-77.42529515060627, 34.572276184341824], [-77.4255910572789, 34.572335306528004], [-77.42578983390429, 34.57239328188704], [-77.42582552019255, 34.5724771917004], [-77.42586311960898, 34.57251019173446], [-77.42641225816485, 34.573101394403054], [-77.4265544337366, 34.5732594550917], [-77.42655213581463, 34.57328770723321], [-77.42657804692887, 34.57329971694455], [-77.4272032427111, 34.574014858640254], [-77.42726804378961, 34.574111325603], [-77.42736626276101, 34.57415682575922], [-77.42771904614052, 34.57440937948775], [-77.42779804137521, 34.57439413067706], [-77.42815429168597, 34.57435195909073], [-77.42847141298782, 34.5741733736874], [-77.42854820662305, 34.5741262221971], [-77.42875803705763, 34.57398854113057], [-77.42894211823015, 34.57389658638155], [-77.42904679993462, 34.573861214411906], [-77.42912005803538, 34.573737799614364], [-77.42956157413408, 34.5730060872465], [-77.42967335265814, 34.57280864038066], [-77.4297045165852, 34.57277697338859], [-77.42972971739805, 34.57276827795004], [-77.42977886676181, 34.5727404094345], [-77.43012361896731, 34.57253756707141], [-77.43028998514916, 34.57247422683409], [-77.43051755139777, 34.57240585694256], [-77.43109567605553, 34.5723769043686], [-77.43192748081862, 34.57181223407579], [-77.4320932336442, 34.57178178000009], [-77.43223980137414, 34.571746406548925], [-77.43248793602419, 34.57155255977911], [-77.43277883449224, 34.57140035157334], [-77.43288104413823, 34.57141070856293], [-77.43344896385555, 34.571176578964014], [-77.43366888584545, 34.57114285282628], [-77.4348423303679, 34.57077856756181], [-77.43524439220522, 34.57019160376859], [-77.43764228356845, 34.56822197929324], [-77.43839521590735, 34.56810583430661], [-77.4391347915928, 34.56799172946848], [-77.43870360505, 34.566924030658605], [-77.43659378800824, 34.56416533470113], [-77.43592874371828, 34.56352111325062], [-77.43524169381124, 34.56320448789519], [-77.43328451734828, 34.56124717273582], [-77.43270490779071, 34.56066750965421], [-77.43208923250472, 34.56027973634542], [-77.43057396251734, 34.56000590165724], [-77.4289375675393, 34.55924145095555], [-77.4283784366089, 34.559162418232425], [-77.42627067487948, 34.558864461573854], [-77.42600197893826, 34.55867060920935], [-77.42578608851655, 34.55862337506069], [-77.42557169889749, 34.558734378913734], [-77.42453480009517, 34.55876578191135], [-77.4242104265504, 34.558562138008256], [-77.42276546991899, 34.55923036466471], [-77.42263492384696, 34.55919118242778], [-77.42258839165302, 34.55934646558304], [-77.42232291069695, 34.55943502329564], [-77.42120140449697, 34.55975016688169], [-77.42105938994514, 34.55979007205289], [-77.4208761944831, 34.55984154746065], [-77.41980290758944, 34.560143125242504], [-77.41948376685333, 34.560047508052456], [-77.41934259183077, 34.56001782876697], [-77.41855500861348, 34.559979459915404], [-77.41790806158963, 34.55989460867303], [-77.4177836569469, 34.559956801101805], [-77.4175106166535, 34.56013034669313], [-77.416902133665, 34.56083218878834], [-77.41633255587354, 34.56099939733001], [-77.41547282655712, 34.56135140799238], [-77.41380848059913, 34.561341220724714], [-77.41318118757745, 34.56126565825346], [-77.41273373572677, 34.56130262331482], [-77.41012081387525, 34.5612958257747], [-77.41002977478354, 34.56129007117336], [-77.40997938669713, 34.56127243342748], [-77.40984760095007, 34.56123715563379], [-77.40774744569215, 34.5606036400474], [-77.40687831676408, 34.56039387375459], [-77.4057731664783, 34.560127130780096], [-77.40543017595091, 34.560039156268274], [-77.4050403481983, 34.559950249099955], [-77.40372692386038, 34.55984701020471], [-77.40058623061397, 34.55917755036569], [-77.40058083986129, 34.559172648692375], [-77.4005755704007, 34.55916942505692], [-77.40055950762886, 34.559164093948155], [-77.40054598532818, 34.55918335856299], [-77.39742415527157, 34.56000350489612], [-77.39596594993787, 34.561669365161265], [-77.39584821762222, 34.56270023600757], [-77.3955355930906, 34.562966046721826], [-77.39506028838915, 34.56326593523636], [-77.39469622052337, 34.56296732268831], [-77.39427243567783, 34.56301968881331], [-77.3942144705745, 34.56264441780588], [-77.3940743670798, 34.56245109188028], [-77.39404743716577, 34.562061980373564], [-77.39407374625631, 34.56181557654271], [-77.39348476095255, 34.56129746351572], [-77.39341770575851, 34.56113336950757], [-77.39292867052079, 34.560532178820985], [-77.393096591314, 34.56025825935014], [-77.39269707116935, 34.559960082344126], [-77.3923836237215, 34.55900079210679], [-77.39112151438782, 34.559003217695015], [-77.38979597860794, 34.55930574618317], [-77.38954575436571, 34.559475542628974], [-77.3889797995996, 34.55976372701904], [-77.3886910601516, 34.558274027306425], [-77.38916284587296, 34.557429122165885], [-77.38797069031222, 34.55612103526943], [-77.38719566230725, 34.555151849114715], [-77.38659661166245, 34.55440268525768], [-77.38482032087553, 34.552199760794025], [-77.38439368344822, 34.551783780241266], [-77.38424120854377, 34.551345808058514], [-77.38396879864302, 34.55084811995768], [-77.38314893286886, 34.54954466220669], [-77.38293723242805, 34.54882530596959], [-77.38317695934523, 34.54847644728058], [-77.38331440455487, 34.54841589021473], [-77.38380121812621, 34.54817115238715], [-77.38490215999698, 34.5476477189502], [-77.38518547471469, 34.54746647786076], [-77.38592338128404, 34.547185931343535], [-77.386048023407, 34.54689258429593], [-77.38648734515196, 34.54699210697749], [-77.3865619299736, 34.54704656237293], [-77.38660978204888, 34.54708694048851], [-77.38694584204458, 34.54723873670284], [-77.38717155620448, 34.547438894972714], [-77.38718327551405, 34.54749389266546], [-77.38719562003575, 34.54753247687349], [-77.38748416788093, 34.547940157847066], [-77.38802359133982, 34.54850604687738], [-77.3882160413725, 34.548691308148285], [-77.38851254453654, 34.54877115840888], [-77.38865374819596, 34.54915286005146], [-77.38903552058524, 34.550002305833104], [-77.38931117288455, 34.55061462220437], [-77.38896659098535, 34.552988017032426], [-77.3901464144592, 34.55389070054814], [-77.39112216884202, 34.55463724858825], [-77.39268482090284, 34.55523662835657], [-77.39427322607997, 34.55584666787599], [-77.39700610309916, 34.55584667046462], [-77.39735421385063, 34.54953045375396], [-77.39736852056416, 34.549452145873204], [-77.39735773822834, 34.5494113265242], [-77.39742893885906, 34.549266394602995], [-77.39865789532855, 34.54607037863585], [-77.39899033738125, 34.545300684353414], [-77.40089449663982, 34.54318476625565], [-77.40089400498462, 34.542953195987735], [-77.40111927592545, 34.54107603646634], [-77.40111725916054, 34.539320184188924], [-77.40128325980513, 34.538794911419096], [-77.40126055533219, 34.537138255585795], [-77.40123680759616, 34.53540542867834], [-77.40401781337391, 34.53552411609499], [-77.40470966424809, 34.53468158913438], [-77.40559197917614, 34.533549822438026], [-77.40564831669775, 34.53258734425957], [-77.40579717970633, 34.53166320747919], [-77.40580153406722, 34.5315858768694], [-77.40584958797007, 34.53147220612493], [-77.40618208148308, 34.53085713026149], [-77.40647867244141, 34.53079338784628], [-77.40720025834662, 34.530404532741976], [-77.40725036611653, 34.53038326924667], [-77.40727334192547, 34.53036139848603], [-77.40774051901035, 34.529836830398956], [-77.40784522663054, 34.52967926269265], [-77.40870699891886, 34.52920756601403], [-77.4087363744646, 34.529119289745864], [-77.40887234172554, 34.529063133223396], [-77.40902197187307, 34.52906865914281], [-77.4101588899273, 34.52881761915775], [-77.41045017160351, 34.52871256156532], [-77.41078076713714, 34.528418349930675], [-77.41091061250316, 34.52818986861378], [-77.41119812620529, 34.52786838241418], [-77.41125503406221, 34.52782112084878], [-77.41185388527138, 34.527655231034416], [-77.41204563110668, 34.52756957457129], [-77.41332542343297, 34.52737737075528], [-77.41362296357785, 34.52723935968726], [-77.41408404345583, 34.5267529745082], [-77.41437419858157, 34.526430177261695], [-77.41442672710225, 34.52639513996477], [-77.41492557600512, 34.526350510620226], [-77.41517217868753, 34.52634029887391], [-77.41521198244058, 34.526382791534225], [-77.41556890018467, 34.526481573769956], [-77.41676981223058, 34.526928946595305], [-77.41694224406723, 34.52693088046015], [-77.418345999712, 34.52664871874401], [-77.41900376591134, 34.52674055526825], [-77.41893951984422, 34.527126704578734], [-77.41833816069607, 34.527001959319776], [-77.41691591863939, 34.52713629322915], [-77.41675851132872, 34.527437758505414], [-77.41623144642014, 34.528789863859906], [-77.41560369569874, 34.52919061202407], [-77.4167064091747, 34.52978363049658], [-77.41712391073102, 34.53065714908345], [-77.41724575967653, 34.53091207377954], [-77.41746804454424, 34.531377123668136], [-77.41780180867265, 34.532075424250095], [-77.41827335380447, 34.532722309957705], [-77.41823206870586, 34.5336813469242], [-77.41977839675579, 34.53446351458288], [-77.41913353202187, 34.5368621660981], [-77.41914427806054, 34.53847262886677], [-77.41886654696461, 34.54000164561834], [-77.41881551272454, 34.54096724936334], [-77.41886331029845, 34.54243070245792], [-77.42092924373233, 34.54322964540707], [-77.42208608593273, 34.54392373855716], [-77.42266582302247, 34.54427157449622], [-77.42392275517982, 34.54482542667243], [-77.42682708009761, 34.54519716271597], [-77.42829600900532, 34.54567204276475], [-77.42893349579661, 34.54567205272487], [-77.42976845544506, 34.54567204355267], [-77.4336935469507, 34.54586623221272], [-77.43523524496375, 34.546100763413776], [-77.43996039487043, 34.5449966807096], [-77.44153662510779, 34.54560775124497], [-77.4435400617648, 34.54493994940801], [-77.44386451940179, 34.54273288387662], [-77.44418198515912, 34.54106366120531], [-77.44434405271186, 34.54070472734461], [-77.44427741808342, 34.54042975208705], [-77.44398628082246, 34.5387976718971], [-77.44324688296402, 34.5359574056883], [-77.44324878719827, 34.534986818526114], [-77.44300301169653, 34.53422780177208], [-77.4417781147443, 34.53199508094334], [-77.44126351770342, 34.53135654231898], [-77.43913661903318, 34.529429513025775], [-77.43578854860797, 34.52823111955177], [-77.43558396731609, 34.52808240481928], [-77.43348630336317, 34.525983968148616], [-77.42999908219717, 34.525549679110085], [-77.4293633851451, 34.525393602384014], [-77.4281096768133, 34.526617698157814], [-77.42776419592958, 34.526718888138404], [-77.42698923270575, 34.52706630739684], [-77.42695751432026, 34.52706858067601], [-77.42695420463272, 34.5270603380268], [-77.42648097052276, 34.52694675165185], [-77.42648164231997, 34.52681965228832], [-77.42680608134748, 34.52659206561782], [-77.42694284211116, 34.52611363552027], [-77.42695707166908, 34.526057617403126], [-77.42740095982103, 34.52576639008068], [-77.42778858527957, 34.52561425181292], [-77.42836796949467, 34.52538684280039], [-77.42908486796527, 34.52510545926582], [-77.42935269709, 34.523320877736374], [-77.42933954091379, 34.5232875868879], [-77.42929796092469, 34.52322290956978], [-77.4294107428955, 34.523246896246405], [-77.42960814924628, 34.52324874007605], [-77.43027760465876, 34.52455192004604], [-77.43327224310322, 34.523167959696124], [-77.43575084133323, 34.52049222021367], [-77.43587750530494, 34.5203831428752], [-77.43602934708787, 34.520191538832464], [-77.43846306150911, 34.51774597975534], [-77.43896317284052, 34.51718100616815], [-77.43974224909118, 34.51638151181582], [-77.44167615594634, 34.51591001067004], [-77.44213167068463, 34.515858638641596], [-77.4426444601605, 34.51580557593437], [-77.44687956573301, 34.51582895385879], [-77.44840042976796, 34.516324178075976], [-77.45018739883443, 34.515498074402046], [-77.45372664140828, 34.514916738966306], [-77.45389208409259, 34.51489361626814], [-77.45398996911547, 34.51487903190939], [-77.45646192137369, 34.514439814491325], [-77.45854162061956, 34.51480339203119], [-77.45927023825917, 34.51485796275605], [-77.45950439256113, 34.51513010448481], [-77.45970379791234, 34.5152203220076], [-77.46037677093517, 34.51569462981685], [-77.46160053039925, 34.516667622292154], [-77.46176369518807, 34.51708149970853], [-77.46200304324022, 34.5180390510872], [-77.46195039258097, 34.52011563002339], [-77.46238970224262, 34.5214242495392], [-77.46099834256371, 34.52458147739372], [-77.46176242179065, 34.52773238232436], [-77.46300606519645, 34.52966621347114], [-77.4630000486637, 34.53212678827651], [-77.46477357212606, 34.53317944515308], [-77.46536247321907, 34.533743356370614], [-77.46685447982986, 34.53403243507948], [-77.46761192577269, 34.53341738022873], [-77.46817286102308, 34.532174630885095], [-77.46872261333876, 34.531297526015834], [-77.47326620889936, 34.527923351717966], [-77.47471425592181, 34.52740768599018], [-77.47635005491998, 34.52687222726418], [-77.47779356942658, 34.52652653135136], [-77.47843053998895, 34.52580258736996], [-77.4795492483645, 34.52500283302042], [-77.4815272571804, 34.524432105373634], [-77.4788828917056, 34.51992765753232], [-77.4810867721252, 34.51900583965803], [-77.48460598430349, 34.517954080689194], [-77.48670313911046, 34.516656691433724], [-77.48593365953197, 34.51384709796], [-77.48443309342818, 34.508367267020574], [-77.48293274545952, 34.50288740467971], [-77.48218265325066, 34.50014746173739], [-77.48184029599537, 34.49889680190411], [-77.48121202426981, 34.499676201687116], [-77.48088506660231, 34.50008177650545], [-77.48097087869925, 34.50078087766715], [-77.48118014374333, 34.50203652703822], [-77.48127222667208, 34.50280336281811], [-77.48066503009824, 34.504072725696645], [-77.48140810100158, 34.50689874346678], [-77.47888720254505, 34.50778942261112], [-77.47853182985276, 34.50787826196182], [-77.47789837820272, 34.508036618003054], [-77.47649731186425, 34.508899817786975], [-77.47596391804547, 34.50900740553462], [-77.4762278997491, 34.50930304671311], [-77.47542222742065, 34.50994486218623], [-77.4750035272344, 34.510592036761714], [-77.47432828632878, 34.51081737936528], [-77.47359315076885, 34.512608110664196], [-77.4730235522099, 34.51319374586744], [-77.47024637181987, 34.51558945665409], [-77.47008106833272, 34.5156548271861], [-77.46943399977414, 34.51571388752299], [-77.4652379581799, 34.51697698864197], [-77.46423811793923, 34.51578880430792], [-77.46372075344654, 34.515424168563555], [-77.46115959606244, 34.51426541693896], [-77.46032198671722, 34.51329192017503], [-77.46054418200632, 34.51256092984163], [-77.461072022462, 34.51159640842967], [-77.46106212512443, 34.51127528867242], [-77.46106091790053, 34.511236138599365], [-77.46108637790095, 34.51117201113335], [-77.46091351055748, 34.511016907546754], [-77.46059671330548, 34.51104924992261], [-77.45825801019203, 34.511157066237274], [-77.45468963994516, 34.51138198883861], [-77.45295528371511, 34.51146765985247], [-77.45189474620123, 34.51157491060497], [-77.44765635908905, 34.51190590731264], [-77.44366617660181, 34.512330057607514], [-77.44220818489077, 34.51236684218639], [-77.44138705966824, 34.51226448857979], [-77.43598976337337, 34.51257221166351], [-77.435923520275, 34.51263858061311], [-77.43279319323138, 34.51499097257141], [-77.43116907946659, 34.51714666406293], [-77.4304957098096, 34.517846651809755], [-77.4295152723402, 34.51850878054128], [-77.42905902893605, 34.51913459703367], [-77.42792913539233, 34.51924871402397], [-77.42768335403426, 34.519609565217856], [-77.42738221840534, 34.52030584160954], [-77.42689888791105, 34.52070237672889], [-77.4265552454376, 34.520897023457586], [-77.42630695976803, 34.521618106383876], [-77.42626223838269, 34.52174769839113], [-77.42626280220827, 34.521773730143536], [-77.42626375457586, 34.52179806541749], [-77.42619419731585, 34.522707700924094], [-77.426188548194, 34.52276384336965], [-77.42618166197614, 34.522826349119896], [-77.42609086480203, 34.523650553401666], [-77.42608284836005, 34.523758502798245], [-77.42607362703424, 34.523874295504505], [-77.42603750703864, 34.524254747517716], [-77.42599900581315, 34.52459898232987], [-77.42598556091089, 34.52475194650052], [-77.42596310390815, 34.524924126420004], [-77.42588332542269, 34.525535835835], [-77.42584856433035, 34.52575112922433], [-77.42581478216292, 34.526002605674776], [-77.42575261686406, 34.526465387400634], [-77.42573806135123, 34.52674648204555], [-77.425777567349, 34.526996869226195], [-77.42577592294421, 34.527230697848864], [-77.4258058810797, 34.52748433985262], [-77.42581500029696, 34.52771473515397], [-77.4257554241366, 34.52797970913484], [-77.42595446164114, 34.52818426167836], [-77.42598690183176, 34.52828729247027], [-77.42615725460323, 34.52839267369743], [-77.42642256389755, 34.52844011348223], [-77.42761611896874, 34.528363983825216], [-77.4277285270701, 34.528334412528736], [-77.4278940238689, 34.52829087314201], [-77.42928936723668, 34.528748888034556], [-77.42972005458417, 34.528838926519725], [-77.43003056749966, 34.5290639254745], [-77.43063209502517, 34.52982940817293], [-77.43151973321264, 34.53080734013754], [-77.4305739522323, 34.532056044617136], [-77.43236412640383, 34.53171040405111], [-77.43336035091092, 34.53249990027308], [-77.43300566148393, 34.53407727341755], [-77.43486381827397, 34.53585739483114], [-77.43430525396965, 34.53628075965633], [-77.43484868196276, 34.536544767123615], [-77.43488896615345, 34.539841638632645], [-77.43488295186756, 34.54011476780186], [-77.4350445925556, 34.54026082719875], [-77.43451227715013, 34.541644676375526], [-77.43314408594902, 34.541701333408554], [-77.43215203058675, 34.54134212438316], [-77.43034036321686, 34.54160409651256], [-77.42901075307803, 34.54137960776549], [-77.42838309098961, 34.54144529134487], [-77.42586078562654, 34.541809955141765], [-77.4254785216151, 34.54171438048709], [-77.4246087572291, 34.54160037298779], [-77.42489779856588, 34.540946052566376], [-77.42491406100928, 34.54021002797934], [-77.42527638385633, 34.53954510897459], [-77.42530700774677, 34.53915873278374], [-77.42787800802748, 34.53721021365484], [-77.42537691170618, 34.53599502389177], [-77.42536889527751, 34.53521653563747], [-77.42540349913207, 34.53365047912173], [-77.42446274713751, 34.53282362837378], [-77.4229083454824, 34.53331403021808], [-77.42094465852713, 34.53233625352441], [-77.42025664958395, 34.532147134795515], [-77.41979904875163, 34.53192160805086], [-77.4193977895427, 34.53158045389319], [-77.41955623831903, 34.53074590669087], [-77.41948125010508, 34.53058902124512], [-77.4193444579076, 34.53030283321764], [-77.41904337068019, 34.52967293659473], [-77.41887832567039, 34.529327642741876], [-77.4187261273976, 34.52900921702833], [-77.41937643169449, 34.52895016146344], [-77.41986874671731, 34.52877812522219], [-77.42017843235685, 34.52882537484386], [-77.42048868047655, 34.52887270936361], [-77.42065110149852, 34.52889748983881], [-77.4207713683824, 34.52885902171023], [-77.4211076596868, 34.52867697536037], [-77.42112159907488, 34.52859359481467], [-77.42117940758365, 34.52838485097951], [-77.42120994201858, 34.52823013423094], [-77.42123558874331, 34.528024195817196], [-77.4211599764739, 34.527897973567974], [-77.42126971618141, 34.527515320947586], [-77.42131178990986, 34.52738634515415], [-77.42137524107399, 34.52731737076863], [-77.42147465223123, 34.527157400067104], [-77.4216616254185, 34.52684609328616], [-77.42177800836235, 34.52652001544244], [-77.42204305438781, 34.526301271234644], [-77.42233623110995, 34.52579821396126], [-77.42234897701024, 34.52576736625238], [-77.42240081285543, 34.52569204606964], [-77.42261821988964, 34.52523875800518], [-77.42284204281678, 34.52505094223862], [-77.42309921551399, 34.52469098782128], [-77.42310560235343, 34.52467861917388], [-77.42310652077137, 34.52436096796173], [-77.42310731379541, 34.524190543764], [-77.42310717788337, 34.52418870471644], [-77.42310547252562, 34.52418587946415], [-77.42295980541405, 34.52381932867604], [-77.42287453896792, 34.523732647589455], [-77.4226876096618, 34.52354261828684], [-77.42225169919324, 34.52333299442557], [-77.42206523131816, 34.52304831061033], [-77.42161038831996, 34.52246616830825], [-77.42159268395577, 34.52244888654148], [-77.42158839423827, 34.52244369724809], [-77.42157927364902, 34.52243505204481], [-77.42093116907212, 34.521975804569294], [-77.42080815448043, 34.52181148282118], [-77.42053310910703, 34.52194258105114], [-77.42001357321996, 34.52224652000515], [-77.4195772008815, 34.52247107838402], [-77.41871198407974, 34.52286525232235], [-77.41842718722499, 34.52299032390691], [-77.4174043241316, 34.523401184070835], [-77.41683609259684, 34.52394479743253], [-77.41577098171773, 34.52395457326369], [-77.41526322573782, 34.52407761109559], [-77.41380559627449, 34.5236381926509], [-77.41370223249336, 34.52367645039416], [-77.41328100111946, 34.52390957233289], [-77.41211941646253, 34.52425592187194], [-77.41196902711042, 34.52473173234982], [-77.41184210626031, 34.52483727387261], [-77.41052181527888, 34.52549777060882], [-77.40976952398947, 34.52560447608819], [-77.40975609919983, 34.525138606769055], [-77.41055390321186, 34.524057950576676], [-77.41056603247016, 34.52404970856432], [-77.41068176775538, 34.52402553736854], [-77.41213225459107, 34.523679379032465], [-77.41359956433362, 34.52353804073158], [-77.41370711290352, 34.52345709346119], [-77.4140013318351, 34.522740194130385], [-77.41450794373324, 34.52274317310689], [-77.41477183919702, 34.52245527003333], [-77.41505676101252, 34.52226009377114], [-77.41522216523028, 34.52195556344504], [-77.4151831438992, 34.52190615743172], [-77.41531490190235, 34.521753004673414], [-77.41543508395277, 34.52145085596019], [-77.41561647080864, 34.521353859173466], [-77.41612790941518, 34.5207944986957], [-77.41616894094324, 34.520755068642764], [-77.4158436078803, 34.52034167206423], [-77.41577358296729, 34.52008871576282], [-77.41534261641667, 34.51943469323258], [-77.4145057355017, 34.51911762306092], [-77.41381117915763, 34.51877979445168], [-77.41325702069034, 34.51939892470768], [-77.4122249435172, 34.519516936728095], [-77.41164643794399, 34.519968741037246], [-77.41142294068956, 34.52049362259483], [-77.41061408414359, 34.52135762199136], [-77.40915041809745, 34.52124399226856], [-77.40904607987476, 34.521273862806886], [-77.40895544835783, 34.52128038136765], [-77.40745789497562, 34.52209415253208], [-77.40701602394752, 34.52232384856425], [-77.405876250621, 34.52262025246772], [-77.40534524799358, 34.52219542407532], [-77.40478888507702, 34.5222342268449], [-77.40444094189453, 34.5228805924468], [-77.40488096616028, 34.52290464319276], [-77.40440721389544, 34.52304186029663], [-77.40429369921773, 34.52318596152907], [-77.40265529292179, 34.524176462037715], [-77.40231105310767, 34.52523441880376], [-77.40309610463058, 34.52583123788503], [-77.40422907627257, 34.52607591163418], [-77.40489857717411, 34.526397381949806], [-77.40522284713182, 34.526772680193], [-77.40558183701546, 34.52684560591299], [-77.40578122822048, 34.52687324670312], [-77.40610091086518, 34.52741822132974], [-77.40612617131225, 34.527621586243896], [-77.40654094978116, 34.52800470629302], [-77.40666330048151, 34.52795802243689], [-77.40665853458619, 34.52810918594734], [-77.40653473612673, 34.52854193510682], [-77.40601528879989, 34.528789663113415], [-77.4057362549378, 34.52888620585962], [-77.40514614150733, 34.52923213804838], [-77.40507151196566, 34.52932403865773], [-77.40442050672279, 34.529826593208625], [-77.40413589530036, 34.53024310065784], [-77.4037112687233, 34.53064914427593], [-77.40291403028206, 34.53102345977554], [-77.40254378122289, 34.53122920105592], [-77.40173996604895, 34.53167717807785], [-77.40095727891728, 34.531963026158216], [-77.40085339060433, 34.53223936624102], [-77.40031087248997, 34.532378624028034], [-77.40016017869668, 34.53250123081082], [-77.39987504611737, 34.53275693272051], [-77.39935881313376, 34.53322924970812], [-77.3988043373565, 34.53294590112107], [-77.39784491452623, 34.53273457680281], [-77.39780735633036, 34.532735277281375], [-77.39779994114708, 34.532728448715865], [-77.39778164045404, 34.53273234931658], [-77.39764013549792, 34.53276413346848], [-77.3977316873036, 34.532792594646935], [-77.3971176442133, 34.53340274717388], [-77.39715417881445, 34.5338136144442], [-77.39698443968305, 34.53408522816076], [-77.39677182030766, 34.534227848183875], [-77.396191587077, 34.53443215954926], [-77.39617605458253, 34.534434801425384], [-77.3961378141593, 34.53444997133042], [-77.3961747443888, 34.53445482940218], [-77.39600310572484, 34.53484733569014], [-77.39608476710175, 34.534947297074424], [-77.39610053326342, 34.53499394674535], [-77.39617053272713, 34.53536985308904], [-77.39618293399383, 34.53542280027732], [-77.39618176853676, 34.53543083049474], [-77.39623948930353, 34.53565947337981], [-77.39616115556956, 34.53578748402638], [-77.39609779467017, 34.535886626538215], [-77.3960629582898, 34.53592978490983], [-77.39598328631126, 34.53604856610609], [-77.39560301166192, 34.53648583173144], [-77.39552526844207, 34.536601508720516], [-77.39535202737815, 34.53685811306457], [-77.39520529716725, 34.53703289602004], [-77.39509223575486, 34.53720636705743], [-77.3949911424676, 34.53733506519237], [-77.39494848469404, 34.5373476250519], [-77.39480210382206, 34.53749146613969], [-77.39468165050091, 34.53751734433798], [-77.3945513301837, 34.537552652362734], [-77.39444947493512, 34.53756832654325], [-77.39423507053698, 34.53761412971064], [-77.39415790587307, 34.53759162839085], [-77.39385351272296, 34.537661665931736], [-77.39376409202298, 34.537647910971415], [-77.39333782205374, 34.53730237298524], [-77.39323635307173, 34.537163295654686], [-77.39315893299545, 34.536940827999196], [-77.39312696978558, 34.53684312902642], [-77.39300546612859, 34.53647087996758], [-77.392961013954, 34.53640604163124], [-77.39283500401227, 34.53639558837308], [-77.39239392452447, 34.53635264717994], [-77.39222396866398, 34.536311331263164], [-77.39199481341524, 34.53637477949443], [-77.39152739250723, 34.536584255292645], [-77.39146548537545, 34.53661402940874], [-77.39143144267979, 34.53664184768812], [-77.39119190360644, 34.537122325400404], [-77.39106010628626, 34.53741019027272], [-77.39062385195034, 34.5376410583417], [-77.39051355424836, 34.53770985888316], [-77.39011862509591, 34.53794566985681], [-77.38982796289362, 34.53811999459126], [-77.38952835463046, 34.53834165327436], [-77.38925552647069, 34.5385192628784], [-77.38902710797232, 34.538818854454576], [-77.38897631352745, 34.53888013656707], [-77.3889485720177, 34.53891495680637], [-77.38871150712029, 34.53924801528727], [-77.38862090788453, 34.53945188814666], [-77.38856199259703, 34.539737556618164], [-77.3884739406449, 34.53996275366433], [-77.38845587789609, 34.54011700664503], [-77.38841546309666, 34.5404608544752], [-77.38837073521907, 34.54057225359673], [-77.3884007357148, 34.54082542718793], [-77.38841828053673, 34.54095011391945], [-77.3884577325083, 34.54111120562476], [-77.38848953369786, 34.54124105955209], [-77.38860424153569, 34.541412954696455], [-77.38858064951967, 34.54165493580194], [-77.38875616742476, 34.54188070554329], [-77.38895514722257, 34.54201186670571], [-77.38915431985858, 34.54218626996389], [-77.38932678443005, 34.54228805969552], [-77.38973005261434, 34.54246623761108], [-77.3900248732548, 34.54249278173562], [-77.39027908331461, 34.54249347820439], [-77.39051485915499, 34.54248126630355], [-77.3912021624862, 34.54244566444426], [-77.39130186489788, 34.54239858312338], [-77.39147720547092, 34.542358707800894], [-77.39186748664083, 34.54241119185403], [-77.39345151573643, 34.54279509364582], [-77.39344958782083, 34.54353837526373], [-77.39209446511023, 34.5438228124858], [-77.3912627422755, 34.54413673220643], [-77.39077273384191, 34.54422342567443], [-77.39014332990094, 34.54433461071467], [-77.38968419542115, 34.54450189354469], [-77.38950552847245, 34.54460056680098], [-77.38889272838793, 34.54478155535179], [-77.388765499467, 34.5448173534075], [-77.38823480487792, 34.54497599066444], [-77.38810239152801, 34.54501083753232], [-77.38772763021753, 34.54521188832461], [-77.38771529075416, 34.54522003025057], [-77.38770476642229, 34.5452343425872], [-77.38752016064576, 34.54548664481924], [-77.38754172858852, 34.54563228624213], [-77.38729613003083, 34.54594595173151], [-77.38654631422038, 34.546092647466196], [-77.38650714504456, 34.5461146096993], [-77.38648578033644, 34.54611213771414], [-77.38572401134019, 34.546023899181264], [-77.38509478626162, 34.54622599592258], [-77.38493364995583, 34.54625329593278], [-77.38479074575682, 34.54628122113688], [-77.38433314489927, 34.54643593432193], [-77.38372569505165, 34.54675663511355], [-77.38334823678612, 34.54691898738341], [-77.382223660503, 34.54743415408613], [-77.38176397208454, 34.547532728665125], [-77.38147305258471, 34.54764786304068], [-77.38117989175043, 34.54786992396759], [-77.37972598479529, 34.548784930730456], [-77.37857138091124, 34.549818913836326], [-77.37817006625791, 34.550014983846616], [-77.37805802882158, 34.55027861792506], [-77.3785333905315, 34.551495646547096], [-77.37873346772501, 34.5520078887077], [-77.37880043467158, 34.552130236142084], [-77.37895747438945, 34.55258132039276], [-77.38003830769208, 34.55534829966001], [-77.38050277971934, 34.556537298548434], [-77.38088604139958, 34.556924356065444], [-77.38121979845167, 34.55735914206015], [-77.38166775144728, 34.557692662392206], [-77.38208328930298, 34.5580020491503], [-77.38250819966485, 34.55838875189845], [-77.3829082471449, 34.55869205347045], [-77.38324307632956, 34.55908202079519], [-77.38327886180028, 34.55912677369593], [-77.38388178037785, 34.559200554477], [-77.38403089766214, 34.55917948735067], [-77.38422498526616, 34.55919954698078], [-77.38481881043998, 34.558875772807234], [-77.38521033410632, 34.559275330195014], [-77.38560655597385, 34.559322731302466], [-77.38625962217239, 34.55940085549531], [-77.38639439935082, 34.55933267220704], [-77.38652531983465, 34.55936667146638], [-77.3865590266081, 34.55968043440311], [-77.38639433292839, 34.55965741344859], [-77.38634562397532, 34.55958621455896], [-77.3856064589418, 34.55977636263337], [-77.38539359392706, 34.55990037915696], [-77.38507870953843, 34.55999677539579], [-77.38481855589689, 34.560014478602454], [-77.38448311488213, 34.560289938912874], [-77.38429561404976, 34.5603928293756], [-77.38403058845364, 34.56050924742866], [-77.3839013507041, 34.56059601848476], [-77.3836583377277, 34.560770323795325], [-77.38338652732898, 34.56096461107174], [-77.38324257798644, 34.561143530801054], [-77.38296770642971, 34.561422856280586], [-77.38273524202253, 34.56175254449787], [-77.38269156077938, 34.56201433895975], [-77.38251594651626, 34.56220872658794], [-77.38248105396066, 34.562242440946164], [-77.38245443093886, 34.56227611029452], [-77.38229686932556, 34.562495123152004], [-77.38226335928567, 34.56266970700079], [-77.38238886241014, 34.562722159259074], [-77.38245430700965, 34.56277290196959], [-77.38258366136563, 34.56290864798005], [-77.3827958630333, 34.563017501798306], [-77.38282783580242, 34.563034820684095], [-77.38292456700304, 34.563081280712424], [-77.38324209618958, 34.56314831387617], [-77.38343195950895, 34.563145735833515], [-77.38386311446496, 34.56310834929799], [-77.38402999177819, 34.563091153787965], [-77.38458938772428, 34.562937192088114], [-77.38481791050174, 34.56292287586739], [-77.38515455726832, 34.562739208796316], [-77.38560587048539, 34.5625432629879], [-77.38585118968874, 34.562416768067145], [-77.3861912973943, 34.562321598199276], [-77.38639379776296, 34.56228863463386], [-77.38660181948552, 34.56226835376155], [-77.38700222165227, 34.56217984602183], [-77.38718167463182, 34.56226869645807], [-77.38748262313321, 34.56224148628642], [-77.38772846137743, 34.56214154651312], [-77.38796959521679, 34.56200735718286], [-77.38871909695033, 34.561738821146236], [-77.38874922341705, 34.56172554079617], [-77.38877210301492, 34.561715454780476], [-77.38954543915366, 34.56137454507089], [-77.38998496713545, 34.56118078452508], [-77.39093645729393, 34.56056986496123], [-77.39106003147113, 34.56048601035187], [-77.39112129750082, 34.56047202753858], [-77.39117963197135, 34.560471915428316], [-77.39119925118386, 34.560531959047005], [-77.39222534723388, 34.560892230063615], [-77.39269690734304, 34.561239368901674], [-77.39301296559725, 34.561627912025344], [-77.39314443712351, 34.56194964235526], [-77.39329715001026, 34.56212970750153], [-77.39342277945373, 34.562334060011985], [-77.39344618168661, 34.56237212691571], [-77.39348462576423, 34.56244503672043], [-77.3935856225449, 34.56262626479609], [-77.39365705540285, 34.56272483352496], [-77.39369060767898, 34.56294205381325], [-77.39348451841926, 34.563362678225666], [-77.39342577960551, 34.5635440572504], [-77.39341824209336, 34.56360842776057], [-77.39324663601815, 34.56422605593909], [-77.39322478938246, 34.56448547672768], [-77.39307267127803, 34.564912895380544], [-77.39305166298622, 34.56497675244716], [-77.39290574597135, 34.565380642752224], [-77.39293227801474, 34.56563107676905], [-77.39282482557749, 34.56581688655983], [-77.39289894256517, 34.56601237964104], [-77.39332210481594, 34.56616972236131], [-77.39345824692809, 34.56617804539349], [-77.39348419218278, 34.56618265881656], [-77.39357544416323, 34.56623152622909], [-77.39387813546357, 34.566276306085456], [-77.3941368303955, 34.56619796994961], [-77.39427209927175, 34.56618255609327], [-77.39435555120619, 34.56611056633787], [-77.3948910290616, 34.565943384386884], [-77.39502510597578, 34.56588639810194], [-77.39506004175712, 34.56580951001015], [-77.39514350986265, 34.56557231856245], [-77.395132472287, 34.56548397954659], [-77.39515077165092, 34.56515448199417], [-77.39518554406054, 34.565051750497275], [-77.39553078209646, 34.564660014038424], [-77.3958480771619, 34.564289384350936], [-77.3960224911329, 34.56408185320995], [-77.39626321783783, 34.56364533300453], [-77.39669020205059, 34.56313636495669], [-77.39677182162069, 34.56242169936273], [-77.3974240365562, 34.56167660611674], [-77.39883521043316, 34.561305871944924], [-77.40057545808284, 34.56251929936339], [-77.40309733567841, 34.56153311551091], [-77.40372693097106, 34.56166731797203], [-77.4040755812112, 34.56169472287429], [-77.40576102747139, 34.56182718607275], [-77.40687838250288, 34.56194822562099], [-77.40716980925569, 34.56193790049073], [-77.40902798855973, 34.56243531745419], [-77.41002989632958, 34.56278602326378], [-77.41144691545624, 34.562875593359585], [-77.41160564874016, 34.56295266202408], [-77.41182858751542, 34.562889692714336], [-77.41289091196604, 34.562809034808296], [-77.41318136759608, 34.5627869807926], [-77.41353881899512, 34.56278766475495], [-77.41423325317973, 34.56286671833449], [-77.41475712922355, 34.56298539097381], [-77.41542734695336, 34.562852008077115], [-77.41588643010822, 34.56254440613897], [-77.41633273071523, 34.562123138186394], [-77.4164124241511, 34.562073232874695], [-77.41710494657414, 34.56190411051363], [-77.41712055446672, 34.561905967704625], [-77.41714502074998, 34.5619078690112], [-77.4177507321399, 34.56196395503184], [-77.4179084246008, 34.56197885084632], [-77.41801594459422, 34.56187158670464], [-77.4180478891194, 34.56175106428422], [-77.41816295780008, 34.56145999751287], [-77.41844029685804, 34.56056957058413], [-77.41887401275908, 34.560590700009776], [-77.41948389637562, 34.56071891610381], [-77.42002578007481, 34.56088126891806], [-77.42027184037038, 34.561207559137074], [-77.42086261182946, 34.56113198314184], [-77.42105966220832, 34.56107661469282], [-77.4213138506785, 34.561005189375564], [-77.42184746111575, 34.56085524943351], [-77.42221945741665, 34.560700135713475], [-77.42263523877776, 34.5605600764936], [-77.4237889128866, 34.5604666663682], [-77.42421086850992, 34.56033976930909], [-77.42465786641812, 34.56031411176379], [-77.4251376409429, 34.5607265830215], [-77.42483909061104, 34.561446557912696], [-77.42489012401893, 34.56161153429178], [-77.42485071056664, 34.56177714863975], [-77.4249990982926, 34.56184451650047], [-77.42536773550606, 34.56193980532686], [-77.42578694937217, 34.56183422612742], [-77.4259820205974, 34.560815093780825], [-77.42701132682443, 34.56045576106361], [-77.42724620297514, 34.56029676664614], [-77.4274295868903, 34.56032269009746], [-77.42893796339621, 34.56053589794606], [-77.43112800197085, 34.56155898622705], [-77.43156049998775, 34.562067004433985], [-77.43209001806588, 34.56256003568997], [-77.43406140777633, 34.564531570267505], [-77.4347042903303, 34.56501857362829], [-77.435242830882, 34.56615993393698], [-77.43640802626729, 34.56758896710363], [-77.43524375299295, 34.56854529947644], [-77.43415387129082, 34.570136400741625], [-77.43366856904207, 34.570287058446056], [-77.43310397413731, 34.57037364190019], [-77.43288071538939, 34.570500151165604], [-77.43278309155949, 34.570555468716535], [-77.43249675869438, 34.570702101472065], [-77.432201494807, 34.57086181639124], [-77.43209294646309, 34.570965886137415], [-77.43160670204261, 34.571155854532186], [-77.43069567389915, 34.571619422454205], [-77.43051731309053, 34.57169143248352], [-77.4304198869238, 34.5717465236492], [-77.4300006317892, 34.5719121494531], [-77.42977332325032, 34.57199227491469], [-77.4297294737782, 34.57201713830256], [-77.42911664750936, 34.572228591528464], [-77.42894164816269, 34.57240641580938], [-77.4283819286741, 34.57299531512895], [-77.42832446439533, 34.57318739979804], [-77.42829312540606, 34.573432740623915], [-77.42825100097826, 34.57354331911107], [-77.4282217323881, 34.57365535461848], [-77.42815409491669, 34.57371053949863], [-77.42798749550988, 34.57372196044364], [-77.42793687413953, 34.573718331928404], [-77.42776006812701, 34.57356325976974], [-77.4277351412995, 34.57354024774746], [-77.42736598453257, 34.57322000607279], [-77.4273006643005, 34.57315160098913], [-77.42696908543111, 34.57277794365284], [-77.42687199700661, 34.57268136077617], [-77.42659804971555, 34.572403974840974], [-77.42659042470898, 34.57239145647769], [-77.42657777353764, 34.57234672771216], [-77.42630161629678, 34.57214926319762], [-77.42618061107925, 34.572043060051975], [-77.42617590079287, 34.57203198467064], [-77.42627571960612, 34.57160138397403], [-77.42628946167837, 34.57128900663412], [-77.42621534173625, 34.57115116411397], [-77.42618345213828, 34.571119946928455], [-77.42579245439083, 34.57082205331661], [-77.42579088195228, 34.57082068235424], [-77.4257893969735, 34.570813351023844], [-77.4257854747448, 34.57081883334599], [-77.42539538183061, 34.570643684283866], [-77.42525001561216, 34.57063252050568], [-77.42500138525953, 34.570538057541114], [-77.42492121562329, 34.570523378355425], [-77.42469497222832, 34.57046169291981], [-77.42460733968615, 34.57024135749441], [-77.42456505465925, 34.57015026230943], [-77.42460729569257, 34.57007299636984], [-77.42476910417359, 34.56987062860614], [-77.42500120234033, 34.56985044744603], [-77.4251781184311, 34.56982775025302], [-77.42521777623263, 34.56982251578663], [-77.4253951528857, 34.569798189663835], [-77.42557290050087, 34.56977159229401], [-77.42578907798233, 34.5696553327298], [-77.42601467850469, 34.56969763460718], [-77.42630364337364, 34.56960439986382], [-77.4265768883601, 34.56924481351777], [-77.42669682670223, 34.56912229160918], [-77.42697076910949, 34.568965394355956], [-77.42699251721369, 34.568950253876515], [-77.42723385782124, 34.56877438478987], [-77.42736459247638, 34.5684991382224], [-77.42747118640521, 34.568456478354136], [-77.42736457074662, 34.568424988549445], [-77.42714442891202, 34.56831634317906], [-77.42693864233985, 34.56810886315973], [-77.42672047876212, 34.56798525498533], [-77.42657655446988, 34.56806841274852], [-77.42651887073677, 34.56810735493936], [-77.42618262670078, 34.56816985174384], [-77.42587214564162, 34.56817304270079], [-77.42578867114185, 34.5681735910422], [-77.42564663619055, 34.56814253076852], [-77.42520503003954, 34.56813925829043], [-77.42500074115428, 34.568111046393646], [-77.42479156575166, 34.56819371519326], [-77.42440780002356, 34.56826454974936], [-77.42421288451463, 34.568332496820204], [-77.42390388125624, 34.56821446684856], [-77.42359869966302, 34.568591564180046], [-77.4235004491145, 34.5686870161363], [-77.42342506141698, 34.56870860304033], [-77.42327080279074, 34.56880522383014], [-77.42294806903087, 34.56902060244712], [-77.42263722286884, 34.56905011551901], [-77.42229556782378, 34.569260777389346], [-77.42224331534146, 34.56928252749321], [-77.42215136252824, 34.56932440553872], [-77.42184938387297, 34.56941916099907], [-77.42165297426612, 34.56951019614857], [-77.42119977186547, 34.56963836355706], [-77.42106151531439, 34.569685860182034], [-77.42094903915984, 34.569702382984396], [-77.42066755002205, 34.56968343729582], [-77.42047557255981, 34.56967432418888], [-77.42027355657027, 34.56954619011961], [-77.42001207931675, 34.56967714884995], [-77.41987962189043, 34.569691252821535], [-77.41969367156358, 34.56978081771625], [-77.4194856792567, 34.56980320219982], [-77.41926411048536, 34.56982824598201], [-77.4190917494503, 34.569987100563566], [-77.41888534501153, 34.56991960714306], [-77.41869777763725, 34.56995936931363], [-77.41839459837722, 34.569670171021606], [-77.41816632237432, 34.56937646557781], [-77.41807537002387, 34.56921106787119], [-77.41790967568527, 34.56902427531365], [-77.41776831402458, 34.569281563397894], [-77.41751578207571, 34.56941519194417], [-77.41745117365771, 34.56947977595628], [-77.41726631431351, 34.56966216067291], [-77.41715586381524, 34.569910417865984], [-77.4171412990955, 34.56994912227884], [-77.4171935949262, 34.57028895746631], [-77.41728162250737, 34.57035343536073], [-77.41751597769466, 34.57052567058675], [-77.41765419471331, 34.57057525039825], [-77.41790177612015, 34.57068843411954], [-77.41790577218671, 34.570692388677074], [-77.41790997695034, 34.570690698121744], [-77.41825659490908, 34.57068820778528], [-77.41833872899198, 34.570662801937054], [-77.41869790055199, 34.57060465295195], [-77.41872966166821, 34.57060306551667], [-77.41889488162559, 34.57058561555376], [-77.41902335655712, 34.57060024330997], [-77.41909187073132, 34.57060816798124], [-77.41920410977147, 34.57062125139688], [-77.41948584911604, 34.5706528880216], [-77.4196591692993, 34.5706723496949], [-77.41987982774064, 34.570697126647595], [-77.42000808891635, 34.570808724848845], [-77.42011071071786, 34.57096971960361], [-77.42015687857538, 34.571085721241445], [-77.42019656577136, 34.571206079263646], [-77.42027396021612, 34.571472188193496], [-77.42030549115344, 34.571580970627245], [-77.4203203826067, 34.571612775513714], [-77.42036166984634, 34.57170128255489], [-77.4204705929233, 34.57222850520472], [-77.42089753700068, 34.57220124545906], [-77.42106203284075, 34.57204571639574], [-77.42111860121811, 34.571983011571135], [-77.42139278749724, 34.571950527369964], [-77.42145598318625, 34.57193245034707], [-77.4215046862164, 34.57191873982547], [-77.42165048434777, 34.57184518326211], [-77.42184991761557, 34.571754710135764], [-77.422085696551, 34.57161184744711], [-77.42224384139212, 34.57153883599497], [-77.4223820223218, 34.57146383293981], [-77.42252067351455, 34.57142107442865], [-77.42263778116805, 34.57139880183733], [-77.42297504194838, 34.57159262266314], [-77.42304809387707, 34.57162568553505], [-77.42305328070198, 34.571665616282296], [-77.42297751539536, 34.571711969124486], [-77.4226379251646, 34.57200174927857], [-77.42255236069029, 34.57204723066578], [-77.42225936992973, 34.57218179067014], [-77.4222439935999, 34.572188756928], [-77.42194675735549, 34.57233118107115], [-77.42185006164084, 34.572381840251936], [-77.42165316120486, 34.5724816045503], [-77.42165309567758, 34.57248163700361], [-77.42165306177723, 34.57248165300465], [-77.4216528331418, 34.57248172257753], [-77.42145612189725, 34.572548805200036], [-77.42128698566391, 34.57256459539209], [-77.42123381079331, 34.57256955963393], [-77.42106213730847, 34.57251978152809], [-77.42089587700004, 34.5725579833866], [-77.42047246744175, 34.57265363205628], [-77.42027424927079, 34.57284303257583], [-77.4200864566823, 34.57314246322379], [-77.41991100443092, 34.57337025994414], [-77.4198982696699, 34.57339137599912], [-77.41993581320293, 34.57373160065684], [-77.41994761728424, 34.57378955511778], [-77.419956282204, 34.57386999053184], [-77.42001096492774, 34.57420498742965], [-77.42008875224974, 34.574394006227536], [-77.4201350139225, 34.574611651047206], [-77.42027464233078, 34.57469722106964], [-77.42046317701829, 34.57478566887373], [-77.4206686864899, 34.57495314043573], [-77.42067442355868, 34.57495830517116], [-77.42090032860166, 34.575100655966004], [-77.42106272863259, 34.57518915100354], [-77.42113572744546, 34.575237586011355], [-77.42129532336526, 34.57529318325116], [-77.4214002404885, 34.575338925781566], [-77.42145675529277, 34.5753475055983], [-77.42155785032298, 34.575364193531684], [-77.42185075713142, 34.575392702902704], [-77.42204387628026, 34.57539314411513], [-77.42209914298883, 34.575333940738666], [-77.42206267640933, 34.575394605446334], [-77.42224475704847, 34.57542838758421], [-77.42230476366353, 34.575424293815644], [-77.42233706487929, 34.57535495928326], [-77.42227818149972, 34.57518725589535], [-77.42226953537012, 34.57515242364779], [-77.42226303605959, 34.57513358892258], [-77.42224467861395, 34.57509704990258], [-77.42214095794502, 34.57474641574376], [-77.42209945411635, 34.57459603723841], [-77.42208401308226, 34.57454235082954], [-77.4220780116481, 34.574510386524125], [-77.42208468299012, 34.574370017415355], [-77.42223521752382, 34.574318207908846], [-77.42224449349045, 34.57431373024535], [-77.42224990266322, 34.574311918260456], [-77.4222811364598, 34.57430157549546], [-77.42244147112504, 34.57424858406425], [-77.4225854380582, 34.57420047409617], [-77.4226384482775, 34.57418275942763], [-77.42292043399068, 34.5740885263902], [-77.42303239606476, 34.574028566494455], [-77.42322914953627, 34.573952061908955], [-77.42323012125269, 34.57395134824512], [-77.42342632555291, 34.57380724874202], [-77.42355426151077, 34.573830893613504], [-77.42365533877839, 34.573856218592695], [-77.42382037240708, 34.574055376001546], [-77.42383047026769, 34.574066821116986], [-77.42383774545013, 34.57409536033214], [-77.42385741258963, 34.574498393699], [-77.42385919488311, 34.574539840721044], [-77.42391928028123, 34.57480765755879], [-77.42398660136057, 34.57490431205974], [-77.42421460602878, 34.575013133786356], [-77.42439189593354, 34.57507929168084], [-77.424456501717, 34.575097066262806], [-77.42460862724047, 34.5751338992281], [-77.4248471514127, 34.57520454259598], [-77.42487812287206, 34.57533428664061], [-77.42492861457896, 34.57561735758082], [-77.42471766930504, 34.57576517047006], [-77.42460885141166, 34.5759788892295], [-77.42455493029952, 34.57609594592885], [-77.42460892729923, 34.57626447559211], [-77.42466191213343, 34.57644802704923], [-77.42470818813187, 34.57649838598664], [-77.42500307270177, 34.57681981785421], [-77.42503547804955, 34.57684076130635], [-77.42507962984303, 34.57686929617607], [-77.42539711034294, 34.57696501865348], [-77.42558760415854, 34.577015205394986], [-77.42579113054234, 34.5770434142545], [-77.4259191165532, 34.5770346400562], [-77.4260611576006, 34.57701844903866], [-77.42618511219263, 34.57698435320449], [-77.42636623073034, 34.57691274496048], [-77.42657907176743, 34.57685132382745], [-77.4267374733781, 34.576800422567295], [-77.4273149500911, 34.576602327545025], [-77.42736699186386, 34.5766016870186], [-77.42743844021412, 34.57660539145317], [-77.42802244142734, 34.5765868171442], [-77.42815497925683, 34.57658636465449], [-77.42832746025962, 34.57658577524849], [-77.42875578466112, 34.57653969554095], [-77.42893761669163, 34.57715492220483], [-77.42893992651788, 34.577160553273444], [-77.42894025894624, 34.57716362569819], [-77.42894315638912, 34.57716919570017], [-77.4291159670097, 34.57755969689569], [-77.42906455720505, 34.5776977722514], [-77.42894333662755, 34.57773475626491], [-77.42879296481155, 34.577868881972734], [-77.42854941592161, 34.577990986791974], [-77.42842239279756, 34.57808453651312], [-77.4282556386695, 34.578216568944356], [-77.42824836327645, 34.57843426219665], [-77.42826994071183, 34.5785311607093], [-77.42830899071367, 34.57869078097246], [-77.4283274255639, 34.57876233483906], [-77.42836896377514, 34.57894143716455], [-77.4283986617114, 34.57919886869577], [-77.42832481537631, 34.57937240726355], [-77.42815590492859, 34.57957543992943], [-77.42804072267292, 34.57971388979076], [-77.42795897291978, 34.57981215309398], [-77.42791125965093, 34.57985676911912], [-77.42788478904244, 34.579940578527896], [-77.42786807950155, 34.579969157239866], [-77.42789639898734, 34.580003717748866], [-77.42794331983359, 34.58006442982857], [-77.42795134140614, 34.58007158047588], [-77.42806284860238, 34.58025944838873], [-77.428156155394, 34.580380552740536], [-77.42829462152648, 34.58050136753552], [-77.42832706539839, 34.58064584912124], [-77.4284622833028, 34.58095599296085], [-77.42850535866387, 34.581044668681024], [-77.42850616562401, 34.58109221222544], [-77.42855042450826, 34.58118744023183], [-77.42862366409145, 34.58137329974161], [-77.42867846318673, 34.581444238040596], [-77.42867558514826, 34.58152219163719], [-77.42874754552535, 34.581539092268414], [-77.42889908017717, 34.58141235066918], [-77.42892731698969, 34.58138974553511], [-77.42894450265078, 34.58137598740892], [-77.42899587181135, 34.5813429939611], [-77.42933843017371, 34.58109753090386], [-77.4294478828044, 34.581026407105654], [-77.42963909409175, 34.58098135338259], [-77.4297324040543, 34.58096733139395], [-77.42994361991, 34.581033788018516], [-77.43038148256134, 34.5811980770038], [-77.43047277751083, 34.581236335807915], [-77.43052053635401, 34.58126075046418], [-77.4310813031492, 34.581341845661385], [-77.43130862707633, 34.58142015933705], [-77.43161299897572, 34.58134806788995], [-77.43209659924563, 34.58124227630733], [-77.43232455111249, 34.58116285893132], [-77.43287044205634, 34.58085340692447], [-77.43288448786622, 34.58084772685696], [-77.4328944759001, 34.58084555829211], [-77.43290033815573, 34.58083394678652], [-77.43337711781531, 34.5804468537214], [-77.4336721967778, 34.57999707832555], [-77.43371897700224, 34.57991685088909], [-77.43376377122782, 34.57985993072297], [-77.43378286020628, 34.579737812131725], [-77.43385807412534, 34.57919774291056], [-77.43392557675915, 34.57898735277178], [-77.43406574561362, 34.57878604599455], [-77.434242440262, 34.57870739060188], [-77.43445968472321, 34.57861486252868], [-77.43480866504463, 34.57848353775979], [-77.43524759780641, 34.57837336109057], [-77.43558697262112, 34.5782637090173], [-77.4372156678627, 34.577662415145355], [-77.43791887882884, 34.57704326663131], [-77.43839898774317, 34.57691196899935], [-77.43972894427117, 34.57729893461034], [-77.4410139527973, 34.57769214337689], [-77.44155154485355, 34.578179985729406], [-77.44278803306226, 34.58025321630107], [-77.44350070559146, 34.58144811547918], [-77.44457629546343, 34.583251391138774], [-77.44465312023843, 34.58338019316244], [-77.44466800264344, 34.58341922247739], [-77.44369264738052, 34.58582239503889], [-77.44313146797555, 34.58614552962308], [-77.44260655439417, 34.5865072073106], [-77.44186646530625, 34.58684514911032], [-77.44155573365411, 34.58702447718057], [-77.4413538449617, 34.587036665694896], [-77.44100605195477, 34.587047640318275], [-77.44076766833692, 34.587067243778115], [-77.44030372052868, 34.587056817793766], [-77.4399794964881, 34.58687992682407], [-77.43974111881553, 34.58663827237493], [-77.43943358984062, 34.58642156729961], [-77.439190959703, 34.58587110228297], [-77.43919023405941, 34.58586953447585], [-77.43919010145378, 34.585868772499076], [-77.43918154773905, 34.58585987305275], [-77.43883911616027, 34.585494936898115], [-77.43881469537045, 34.58547912972232], [-77.43871135417285, 34.58542142372666], [-77.43840261970756, 34.585267058441204], [-77.43827276767095, 34.58529217893381], [-77.43772707703528, 34.58535237199851], [-77.43761465391272, 34.58551002714863], [-77.43692232399522, 34.58619671538115], [-77.43688086228626, 34.586260860955434], [-77.43682690030205, 34.58627051052527], [-77.43679489669896, 34.58624961702044], [-77.43643287441847, 34.58630454208959], [-77.43632776896565, 34.586282686757485], [-77.43609493299786, 34.5862558833078], [-77.43603880885746, 34.586242803091125], [-77.43589962350198, 34.58619463745804], [-77.43582010952431, 34.586167121348836], [-77.43564472317041, 34.58613017421471], [-77.43553037799488, 34.58609658669481], [-77.43530801878771, 34.58606734854018], [-77.43525065539296, 34.58605980577753], [-77.43520774688922, 34.58606627680062], [-77.43492789162005, 34.58613727020951], [-77.434856731871, 34.58635211842498], [-77.43481599218086, 34.58650127235471], [-77.43483371900417, 34.586523579640215], [-77.43485681067274, 34.58655100213887], [-77.43500779698842, 34.58673551960315], [-77.43513678188214, 34.58687948388429], [-77.43525103573252, 34.587008145749536], [-77.43540401825864, 34.58710063480365], [-77.43548736272986, 34.587253387506884], [-77.43556262720057, 34.587331490895615], [-77.43564525159164, 34.58743184288229], [-77.43574372953447, 34.58753484581182], [-77.43583261922288, 34.58762806028939], [-77.43603945800052, 34.587822706456265], [-77.43618710239555, 34.58784231700481], [-77.43656827346317, 34.58794628307514], [-77.4367373168013, 34.58801915990942], [-77.43682772088323, 34.58822191983721], [-77.43713662736567, 34.58838050902702], [-77.43708201083196, 34.588721185403585], [-77.437098828387, 34.588851512955365], [-77.43708600052688, 34.58893290533487], [-77.4371520345976, 34.589060128481556], [-77.43718913085095, 34.58913028956075], [-77.43720388413522, 34.589147853481926], [-77.43722216804068, 34.58915572959283], [-77.43726574133402, 34.589166157227105], [-77.43741921064156, 34.58919268130693], [-77.4375684074286, 34.589126952359784], [-77.43761620340379, 34.58911373201209], [-77.43773462194825, 34.589051410836916], [-77.43788731026306, 34.58889695743807], [-77.43801015695824, 34.58888515688659], [-77.43814760125319, 34.58884357439322], [-77.43840413762717, 34.58872314485504], [-77.43858072384347, 34.588694750811754], [-77.43908928241811, 34.588541769497866], [-77.43919217995321, 34.58858973821126], [-77.43929575390446, 34.58851270007493], [-77.43984144283067, 34.58847168407469], [-77.43998050998397, 34.58908879164062], [-77.44000219128837, 34.5891247409479], [-77.44032207000322, 34.589101822509924], [-77.43999464414476, 34.58916436893357], [-77.43998054510347, 34.58916522232629], [-77.43995688222894, 34.58918014210155], [-77.4394576630512, 34.58951244546319], [-77.43937759963146, 34.589663008088934], [-77.43919286366074, 34.59010776558246], [-77.43919097849785, 34.590112557549084], [-77.43918897941906, 34.59011488022092], [-77.43918088874811, 34.59012896335146], [-77.43919287466552, 34.59013215645158], [-77.4393132423691, 34.59081673691337], [-77.43939176373233, 34.59093474321806], [-77.43968302905621, 34.59121420566112], [-77.43983798815756, 34.59129480671274], [-77.43998153905831, 34.591323417639906], [-77.44030397463797, 34.591304583013], [-77.44037559285431, 34.59130327920206], [-77.44045243312755, 34.591288745956874], [-77.44076958093838, 34.591144002492015], [-77.4411235037688, 34.5910656808333], [-77.44116359621941, 34.5910454825902], [-77.44122380934728, 34.59102949580547], [-77.44155761150209, 34.590948812442626], [-77.4418686491668, 34.59091167836256], [-77.44234566229221, 34.59080307962368], [-77.44259409572784, 34.590739311699146], [-77.44282463491867, 34.59077133407034], [-77.44300330012757, 34.590837000772375], [-77.44309268067363, 34.59086839433853], [-77.44313383355811, 34.59090510797543], [-77.44332247512392, 34.59101222726757], [-77.44374732004782, 34.59115397555592], [-77.44357819350698, 34.59154918681505], [-77.44346670554263, 34.59204375869651], [-77.44331294295978, 34.59225825773791], [-77.44313455312961, 34.59234587697465], [-77.44267740929644, 34.59265064651507], [-77.44234671900166, 34.59295907815015], [-77.44229958926492, 34.59301095997238], [-77.44222072203203, 34.59307317486188], [-77.44178214170981, 34.59337727166711], [-77.44155886294175, 34.59355074981324], [-77.44128857117289, 34.59376584593315], [-77.44077093858785, 34.59402192869], [-77.44060866786927, 34.593980698726234], [-77.44008916667718, 34.594116074107575], [-77.43998281041443, 34.59407293068986], [-77.43989419501266, 34.594163318605425], [-77.43971391791432, 34.59428491264895], [-77.43958894140572, 34.59452458033971], [-77.43956141436273, 34.59470181503899], [-77.43955610000283, 34.594767834446216], [-77.43965584067837, 34.595142500235085], [-77.43954331065612, 34.595533705270945], [-77.43951729707203, 34.595587130386356], [-77.43919554944037, 34.59603383280999], [-77.43918524384766, 34.59604863209357], [-77.43917937369666, 34.596060591647856], [-77.43909485633274, 34.59617655235171], [-77.43909543083616, 34.59618067165174], [-77.4391059750128, 34.59618691886406], [-77.43919558726735, 34.59611688400224], [-77.43928373190664, 34.596140457355695], [-77.43942324072901, 34.59620468682371], [-77.43958968148985, 34.59613473134962], [-77.43987022843685, 34.59608298946011], [-77.43998373009948, 34.59605426945809], [-77.44012381695588, 34.59607493586011], [-77.44053670795049, 34.59611773657801], [-77.44076638490077, 34.59667401808668], [-77.44076902818452, 34.59667989593623], [-77.44076992203787, 34.596682220001014], [-77.44063119765791, 34.597124423863356], [-77.44070466269976, 34.597465229845916], [-77.44071713752218, 34.5975365906286], [-77.44070994181513, 34.597605179372394], [-77.44077264632531, 34.59762332066058], [-77.44098461030359, 34.59792250410267], [-77.44105264598439, 34.59803580150784], [-77.44125329645917, 34.59821198781209], [-77.4412813954911, 34.59823273743434], [-77.44128027458794, 34.598310577855095], [-77.44124865042164, 34.59854419945622], [-77.440989778683, 34.598685138140425], [-77.44089406940786, 34.598820130564675], [-77.44079685013118, 34.59874015005381], [-77.4406053868023, 34.598582636221344], [-77.44037896925681, 34.59850588682946], [-77.44034562690838, 34.598475414273075], [-77.44004559127931, 34.59854829272341], [-77.43998491953099, 34.59860744989104], [-77.43959202748198, 34.598973080381136], [-77.43959162794762, 34.59897382420278], [-77.43958897221191, 34.59897569829902], [-77.43919705397838, 34.59932831656313], [-77.43914252962172, 34.59940389375371], [-77.43910727818431, 34.59946777151336], [-77.43873087476582, 34.599868875354396], [-77.4387309798992, 34.59994677874129], [-77.43873458362226, 34.600020253668085], [-77.43875076418803, 34.60036851208403], [-77.43880361207394, 34.600781592481496], [-77.43880442537856, 34.600784472147375], [-77.43880463522856, 34.60078517309189], [-77.43880415572673, 34.60078565400352], [-77.4388046535495, 34.600789264174175], [-77.43885404983513, 34.60114032982036], [-77.43891929265244, 34.60144539113948], [-77.43892760760146, 34.60148860312266], [-77.43893842342219, 34.60153485982075], [-77.43900932938118, 34.60183454887485], [-77.43902429012807, 34.6018869886939], [-77.43905277028621, 34.602006786295824], [-77.43909230410917, 34.602125386439944], [-77.43911102559886, 34.60217479977679], [-77.43912847413401, 34.602216724430484], [-77.43923709748348, 34.60236969312041], [-77.4393025467745, 34.60246101992594], [-77.43937910347694, 34.60246761275954], [-77.43958028476044, 34.60257857989606], [-77.43973310088737, 34.60273592842427], [-77.43971901605255, 34.60286608408402], [-77.43981804081146, 34.60299885563414], [-77.43990247934823, 34.60305688233434], [-77.43990439813962, 34.603096555692034], [-77.43991409578614, 34.60342281704578], [-77.43979876313644, 34.603611537658836], [-77.43981514202713, 34.60366278608601], [-77.43984576674197, 34.603811545917345], [-77.43991660667922, 34.603892422831755], [-77.43996363245503, 34.603938361812176], [-77.44002813643334, 34.6039441726288], [-77.44013358784977, 34.60403845116688], [-77.44020359491168, 34.60407876975988], [-77.4402369979112, 34.604102749005094], [-77.44034493732981, 34.60403847007989], [-77.44051466034757, 34.6038621226178], [-77.44065649370654, 34.60371475245892], [-77.44104951603532, 34.60352503781654], [-77.44126817572953, 34.60412586879117], [-77.44128128579993, 34.6041407420855], [-77.44127990644976, 34.60415760783151], [-77.44129423216724, 34.60475441384806], [-77.44137931021892, 34.60485128910698], [-77.44102470170398, 34.605279500260835], [-77.44104020846396, 34.605317224332765], [-77.44105301550486, 34.605349234801956], [-77.44110418639028, 34.60548360691963], [-77.44116020081475, 34.60555537916848], [-77.44130193529722, 34.60550203745521], [-77.44145819738024, 34.605431228596096], [-77.44161769081181, 34.60530620180068], [-77.44182975843567, 34.605313863655184], [-77.4419177095432, 34.60528234901015], [-77.44211957773048, 34.605219257022355], [-77.44214565783801, 34.60518665373246], [-77.44214805480657, 34.60505325935563], [-77.44213022184655, 34.60500643028107], [-77.44212271181038, 34.6049557056435], [-77.44166055089467, 34.604771098976954], [-77.44163924999387, 34.60463252652016], [-77.44133120914108, 34.60414793149945], [-77.44132946649742, 34.60412700429598], [-77.44123079485814, 34.60349335867938], [-77.44214099799683, 34.60337671995097], [-77.44232735037741, 34.60310397362567], [-77.44228023679305, 34.602934611448106], [-77.44211770842388, 34.60256494578546], [-77.44209985235312, 34.60243034456258], [-77.44232613280661, 34.60213240641576], [-77.44248721506743, 34.60207485602362], [-77.44281352710622, 34.60199257485246], [-77.44295598570847, 34.602108422646246], [-77.4429775403817, 34.60218007571142], [-77.44302920904256, 34.602264560321586], [-77.44316775841142, 34.60249508515425], [-77.44326724780382, 34.60264212297895], [-77.44361427900762, 34.60273700841056], [-77.44410859960945, 34.60288317275421], [-77.44481156596011, 34.602395590117474], [-77.44483273585676, 34.60227637640922], [-77.44456897643168, 34.60209551680397], [-77.44453070555386, 34.60201161300344], [-77.4444779020603, 34.6018424790274], [-77.44444898302527, 34.601760482907196], [-77.44439892003426, 34.6017156051484], [-77.44428733162817, 34.601615573729916], [-77.44418242114651, 34.60152317565591], [-77.44386896218883, 34.60131964044281], [-77.44373570424393, 34.60122538043088], [-77.44369967906935, 34.60119914090541], [-77.44361518838156, 34.60108034399868], [-77.44349492438562, 34.60092479015996], [-77.44352767336636, 34.60076057157557], [-77.44356089025433, 34.60059239400238], [-77.44371394577249, 34.60049308302861], [-77.44393598289794, 34.600331808390294], [-77.44408675418008, 34.6003867717196], [-77.444296901022, 34.600468925494226], [-77.44449818216857, 34.60063869774306], [-77.44451793048798, 34.600655812593146], [-77.44456046100167, 34.60069289603807], [-77.44473617432969, 34.60084610523127], [-77.4448648017929, 34.600903400134186], [-77.44517434094425, 34.60115710564111], [-77.44520053331753, 34.60117691201396], [-77.44520802557578, 34.60118345506151], [-77.44522378630515, 34.60119589417084], [-77.44553372189127, 34.601451147609325], [-77.44537617639419, 34.60175266538725], [-77.4453344342095, 34.60183255126686], [-77.4453069522051, 34.60188506933066], [-77.44517378226998, 34.60213961299631], [-77.44507990289102, 34.60231906974367], [-77.44506339174637, 34.602357103874155], [-77.44504136049713, 34.60244994459272], [-77.44475223063898, 34.603151014347254], [-77.44489251687126, 34.603397800743544], [-77.4449026588691, 34.60353967909418], [-77.44493571954682, 34.60383719447922], [-77.44490947235978, 34.60416147855826], [-77.44489901019222, 34.604304148429854], [-77.44488418311413, 34.60459039622854], [-77.44486114290576, 34.60476397913746], [-77.44485468409847, 34.60481548818816], [-77.44494233466413, 34.60479239446306], [-77.44514215719242, 34.60473876344689], [-77.4453186153035, 34.60470540140397], [-77.44562339172842, 34.60457638158918], [-77.4461541178299, 34.604598147727735], [-77.44615528236623, 34.60459906856584], [-77.44645632219283, 34.60488057973531], [-77.44654358355248, 34.60503625571779], [-77.44662333161455, 34.60538068972018], [-77.44646183927951, 34.605617513525665], [-77.44626412051336, 34.60587439035087], [-77.446003192035, 34.60596390660086], [-77.44571208846412, 34.606052907372025], [-77.44550245945544, 34.60605508267648], [-77.44515960272034, 34.60598886746702], [-77.44504436931544, 34.605955002101695], [-77.44481258276564, 34.605455237413736], [-77.44482387492492, 34.60598976515951], [-77.4447097637242, 34.60611714210383], [-77.44471968742592, 34.60626300995405], [-77.44476164241743, 34.606300675546485], [-77.44496209680399, 34.60641444036906], [-77.44509664825283, 34.60649304418283], [-77.44532941822013, 34.60652078040872], [-77.44562601052955, 34.60659437132273], [-77.44556806622953, 34.6068696212012], [-77.44567003123034, 34.606951072528624], [-77.44566612953875, 34.60702339856317], [-77.44587551916342, 34.60697721749081], [-77.44621718724703, 34.60674567051107], [-77.44658479819279, 34.606606023521856], [-77.44682512771055, 34.60652063731347], [-77.44725345517178, 34.60669042609019], [-77.44731183230913, 34.606241041196384], [-77.44760602290603, 34.60605800331337], [-77.44763130680779, 34.60602251884778], [-77.44767794141917, 34.605749753405206], [-77.44797689205652, 34.60549244956977], [-77.4484489096317, 34.60540014413212], [-77.44853752588102, 34.60534118781052], [-77.44895237882923, 34.60521523576567], [-77.44933469910616, 34.60528077975687], [-77.44951353713873, 34.605344798332986], [-77.44961939778962, 34.605389833063], [-77.44983874040952, 34.60526709190182], [-77.45000988638752, 34.60523763105914], [-77.45011196917113, 34.60513041968441], [-77.45005688860553, 34.60503372809198], [-77.45003756081597, 34.604967012403655], [-77.44985891667261, 34.60468619568368], [-77.44980488486203, 34.60470584810054], [-77.44982266471804, 34.604659044509724], [-77.44931335449235, 34.604613589373415], [-77.44918030979352, 34.60455521861059], [-77.44910664194481, 34.604493998695844], [-77.44875316126416, 34.604267806940456], [-77.44870779881924, 34.60423849156726], [-77.44869593313017, 34.604233159275125], [-77.44867587780425, 34.60420522725746], [-77.44830183307668, 34.6038007134871], [-77.44817434945658, 34.60365211554254], [-77.44783337859201, 34.603326522093056], [-77.44802512650848, 34.602956161623226], [-77.44803284015143, 34.60277692033906], [-77.44827569900252, 34.6027433937514], [-77.4491309545293, 34.6026407801624], [-77.44924286515794, 34.602650041078185], [-77.44929089125795, 34.60261133821894], [-77.44933136635598, 34.60261193824038], [-77.44930927615425, 34.602589922330864], [-77.44970355667414, 34.60219854941981], [-77.4497276377303, 34.6021312097936], [-77.44973887319614, 34.602098139779514], [-77.44977258377102, 34.60200229632329], [-77.4497780069419, 34.60183913569724], [-77.44985135400567, 34.60177834236372], [-77.44988974186671, 34.60168585250328], [-77.44978442466955, 34.601533861442825], [-77.44978307297302, 34.60153229572792], [-77.44978045169303, 34.60153239493782], [-77.44952477473467, 34.601545486843094], [-77.44934796680874, 34.60160717987317], [-77.44918196426015, 34.60163055127096], [-77.4490383883952, 34.60168896880529], [-77.44877275394742, 34.60179704797059], [-77.44839223356243, 34.601861514178594], [-77.44809455892828, 34.60155970748024], [-77.44800364911912, 34.601485265299075], [-77.44834674766194, 34.6010826483298], [-77.44839815268259, 34.60104654846195], [-77.4488177459779, 34.60088296234116], [-77.44900339782745, 34.600638955652016], [-77.44923695102825, 34.60049408636114], [-77.44968455035529, 34.60028125120749], [-77.44970145416346, 34.60027069286096], [-77.44971022997791, 34.60026691370643], [-77.44975762182784, 34.600246505125455], [-77.45015407052915, 34.60000388579185], [-77.45036307605523, 34.59987597687591], [-77.45060644670892, 34.59973621095888], [-77.45084374834295, 34.599778067890874], [-77.45092156634506, 34.59976171964124], [-77.45098555732554, 34.59971163905338], [-77.45091029337372, 34.59969669126441], [-77.4507568879969, 34.59959223286121], [-77.45054870148127, 34.59952527879845], [-77.45030765919525, 34.5995192787923], [-77.45013672257251, 34.599399861436936], [-77.4493681855247, 34.598908407244366], [-77.44934442074668, 34.598887328724516], [-77.45024859529693, 34.598429028403224], [-77.45123771770673, 34.59832386039622], [-77.45130373273237, 34.59830119155613], [-77.45136877791937, 34.59830992467754], [-77.45213435195868, 34.598199780351585], [-77.45228257984414, 34.59817845413612], [-77.45253409728916, 34.59815812253051], [-77.45279341084334, 34.598124341372696], [-77.45295992219495, 34.598104535542966], [-77.45323269357465, 34.59814750849739], [-77.45332957906005, 34.59816277200273], [-77.4537456131209, 34.598058054362156], [-77.45388137723127, 34.59801018498032], [-77.45411560278892, 34.597605562345116], [-77.45417150372387, 34.59751044092695], [-77.45417650836946, 34.597494068853884], [-77.45418734635531, 34.59745595541936], [-77.45437229798894, 34.59694319083724], [-77.45453589294016, 34.596809151719754], [-77.4548086190027, 34.59675799790901], [-77.45503461692786, 34.59671084964657], [-77.45580179401402, 34.59645772314924], [-77.45601245664236, 34.59644264475008], [-77.45606861764374, 34.596297990740574], [-77.45607277066291, 34.596229526880535], [-77.45607953418349, 34.59611803220325], [-77.45612112014287, 34.595696977662655], [-77.4562646173433, 34.595436265569234], [-77.45645288468353, 34.595193682752466], [-77.456662655658, 34.59497792032136], [-77.45705335508052, 34.59478441174534], [-77.45733708314874, 34.59439176381096], [-77.45725204890556, 34.59423455491629], [-77.45706956906983, 34.593992697288925], [-77.45688214767475, 34.59378302869741], [-77.4568742331332, 34.593774398423065], [-77.45685397924542, 34.59375703213677], [-77.45665447442136, 34.59358597102489], [-77.45630000715208, 34.59328203682169], [-77.45691047614498, 34.59327285061423], [-77.45721764213741, 34.593165554444184], [-77.45771960733482, 34.59317483037325], [-77.45773179866934, 34.593182703611646], [-77.45767840316228, 34.59345466970941], [-77.45767529154978, 34.593556739758945], [-77.45788959673017, 34.59383825788493], [-77.45786606698084, 34.5939329207481], [-77.45774276671997, 34.594276019641576], [-77.4582581615739, 34.59436778379743], [-77.45865081705655, 34.59456030944313], [-77.45878101881132, 34.59464270844971], [-77.45886965253402, 34.594693037483324], [-77.45933874974745, 34.59487497844182], [-77.45940363697773, 34.594909949014536], [-77.45950337352278, 34.59502228709974], [-77.45970839259206, 34.595192263079184], [-77.45975781103286, 34.59527686619708], [-77.4600223261121, 34.59572970200573], [-77.46016400173042, 34.59569450050759], [-77.46047510439774, 34.595463667012844], [-77.46052701978287, 34.59538043920767], [-77.46055403617257, 34.59532024615058], [-77.46072719930136, 34.595005603750295], [-77.46079512138326, 34.59488218761536], [-77.46080893847946, 34.59485970391517], [-77.46083167801132, 34.594846366416384], [-77.4608810587809, 34.59481740262101], [-77.46128199430854, 34.594571365505686], [-77.46147097706229, 34.59447196135513], [-77.46173952274498, 34.59432270633505], [-77.46220267964664, 34.59411525417144], [-77.46221249245893, 34.594112024453864], [-77.46269003038677, 34.59395484974779], [-77.46337377571847, 34.593898941254075], [-77.46366742826052, 34.59368518927283], [-77.46436662793752, 34.59386304473082], [-77.46447354225515, 34.59499543413146], [-77.46447353679041, 34.59552240641543], [-77.46447350589284, 34.59662800498351], [-77.46447350200062, 34.59676111721596], [-77.46447112699552, 34.59678741263652], [-77.46445315096007, 34.59799271235658], [-77.46407531690258, 34.598377448345445], [-77.46305645734374, 34.599130799681134], [-77.4617058493887, 34.599053559366666], [-77.46113750886623, 34.59907616995844], [-77.4609426797262, 34.59909015312566], [-77.4605510527435, 34.5991050713749], [-77.45990525360735, 34.59914087726996], [-77.45959474826813, 34.59913421023536], [-77.45892253105232, 34.5991546875594], [-77.45885974355652, 34.59916208310385], [-77.45882799093768, 34.59915756731333], [-77.45871633107355, 34.59916798718602], [-77.45834588584484, 34.59920517208329], [-77.45824295391041, 34.599303042146545], [-77.45811002358369, 34.599489789488025], [-77.45803723520936, 34.59966749675374], [-77.45804405835091, 34.59972905297437], [-77.45816589453794, 34.5999673647798], [-77.45830686206399, 34.60002334180649], [-77.45848206340688, 34.600495124886244], [-77.45856726921103, 34.600888518001675], [-77.45848122713558, 34.6014506593141], [-77.45818486957896, 34.60268752050902], [-77.45801801797617, 34.60317386013967], [-77.45793045054846, 34.60344660429412], [-77.45761757549948, 34.604272516619865], [-77.45725781045296, 34.60475381057002], [-77.45688357322118, 34.6052544765698], [-77.45655614187963, 34.60569250976747], [-77.45647316239041, 34.60580351908276], [-77.45624673923317, 34.60627043425603], [-77.45602807864222, 34.60658167410268], [-77.45629097712163, 34.60683261373702], [-77.45668041722269, 34.60766091984483], [-77.45679005398888, 34.607841373241676], [-77.45681644523376, 34.60801888629164], [-77.45701500006471, 34.60901672975534], [-77.45703810934447, 34.609247674166554], [-77.45705554437006, 34.60955537935822], [-77.45709684337592, 34.61028411722213], [-77.45741546015537, 34.61061709278843], [-77.45715246855252, 34.61126575079201], [-77.45716846186755, 34.611547927108546], [-77.45768734283291, 34.612016599998014], [-77.45785486865915, 34.61302679250872], [-77.45500430922645, 34.61389261163706], [-77.45456949359736, 34.612905939222024], [-77.45449795348058, 34.61268294910563], [-77.45416677487134, 34.612282281262615], [-77.45414823757483, 34.61219616973577], [-77.4540312244327, 34.6122440620368], [-77.45331696224076, 34.61229823482934], [-77.45302209491757, 34.612398689815414], [-77.4525855952234, 34.61242216120551], [-77.45217418109493, 34.61278118898983], [-77.4520945058461, 34.612851099592035], [-77.45209206151847, 34.61286888060428], [-77.45209088803955, 34.61287435191956], [-77.45200036258547, 34.61345618827203], [-77.45055922484485, 34.61384143787313], [-77.45027617716696, 34.613890586157126], [-77.44983624687941, 34.613937805088135], [-77.44976563755517, 34.613946116982696], [-77.44972313498765, 34.61394934344479], [-77.44957908078982, 34.61395995201087], [-77.44925033877212, 34.61398426565359], [-77.44889645117314, 34.61415461968801], [-77.44881081320848, 34.61419841514923], [-77.44879886383589, 34.61425551930051], [-77.44868956043564, 34.61458287499844], [-77.44884198799319, 34.61482872340256], [-77.44883587176383, 34.614910408621085], [-77.44891179821256, 34.614941319907174], [-77.44903684011318, 34.6151246705088], [-77.44909397875982, 34.61520606193043], [-77.44906905890103, 34.61524234049593], [-77.44867784684031, 34.61539069268864], [-77.4485968108221, 34.61543775034638], [-77.4481330627566, 34.615480079150224], [-77.44784445217385, 34.61533192833248], [-77.4475691925334, 34.61552499357636], [-77.4474542961739, 34.61558198007714], [-77.4471113147937, 34.615771435579404], [-77.4472313461534, 34.6160815008728], [-77.44722685216252, 34.61612180216153], [-77.44755169349446, 34.61638437179219], [-77.44771553202625, 34.616403877114465], [-77.44781049471109, 34.616406325046164], [-77.44833879944603, 34.61655621688507], [-77.44838888680422, 34.61659855683673], [-77.44863458100039, 34.61681409282276], [-77.44876022346486, 34.61695532902986], [-77.4490845316743, 34.61739118529031], [-77.44909822488334, 34.61742039367256], [-77.44909984772418, 34.61745445423676], [-77.44915169648365, 34.617464288238544], [-77.44920397514807, 34.6174329757652], [-77.44935135962356, 34.617348208713196], [-77.44960962265233, 34.61721653585762], [-77.4500650693026, 34.6171148507331], [-77.45010392148973, 34.617101622727134], [-77.45013033313361, 34.61710892484989], [-77.45014706100781, 34.617121299786106], [-77.45024425511265, 34.61717754182956], [-77.45064673707435, 34.61739191823983], [-77.45092603687652, 34.61763767144002], [-77.45135435366439, 34.61782795350304], [-77.45172490236246, 34.617902453854], [-77.45219075022462, 34.61785853354452], [-77.45240121602691, 34.61781086606833], [-77.45339541575511, 34.61766058457377], [-77.45340763490297, 34.61764610062174], [-77.45348022479872, 34.61764776410266], [-77.4534212203274, 34.6176957054742], [-77.45326782023994, 34.61885471907852], [-77.45274373347755, 34.619061547338006], [-77.45246186802055, 34.61919216028061], [-77.45198511297326, 34.6194130806399], [-77.4518105917886, 34.619493950614974], [-77.45172137377709, 34.61955249737779], [-77.45147421634628, 34.61969690022928], [-77.45138715036424, 34.61974526802459], [-77.45135884775013, 34.619764304890765], [-77.45109302982203, 34.61995206749494], [-77.45098043972898, 34.620206972282915], [-77.45097731532323, 34.62022128223573], [-77.45097342142424, 34.62027683481235], [-77.45094895886074, 34.620521058140405], [-77.45093080276366, 34.62059038602506], [-77.45095913081616, 34.62066747414879], [-77.45112709874758, 34.62083799844829], [-77.45137314939109, 34.621075671586716], [-77.4522010058082, 34.62095906986967], [-77.45221025410129, 34.62095329274514], [-77.45223250436256, 34.62093939342628], [-77.45229793285493, 34.620939033560596], [-77.45226096054931, 34.6209800435026], [-77.45223284190759, 34.62103576839975], [-77.4520822799372, 34.62153692506906], [-77.45230197170515, 34.62167640345441], [-77.45245842455549, 34.62185944040303], [-77.45294210575196, 34.62190060255024], [-77.45309435930614, 34.62218894770895], [-77.45393445463057, 34.62251611910582], [-77.45463585628558, 34.62322636188462], [-77.45337929328633, 34.62522160126477], [-77.45268157676409, 34.626082275886], [-77.45116629657261, 34.62716988436246], [-77.44994614811614, 34.628045667266804], [-77.44790686495868, 34.62809926551699], [-77.44650049255686, 34.627946842820535], [-77.44550395985678, 34.627185485943215], [-77.44448027283923, 34.62612218630057], [-77.44430278035732, 34.62562862223324], [-77.44429415139209, 34.6246982471434], [-77.44448347347037, 34.624453027806254], [-77.44471080937865, 34.624288689596376], [-77.44535809421396, 34.62385743172527], [-77.44561713646371, 34.62375806532437], [-77.44588374851662, 34.623704142009544], [-77.44586322533466, 34.623512391759306], [-77.44585553041115, 34.623249354289925], [-77.44581226874064, 34.62305972571345], [-77.44567289474602, 34.622828150492246], [-77.44521727132863, 34.62229760141608], [-77.44518925503043, 34.622235217322114], [-77.44518726126161, 34.6222281055523], [-77.44517482610692, 34.62221728535907], [-77.44455035895004, 34.621671186353446], [-77.44452889334373, 34.62137186532955], [-77.4444678045147, 34.62128854318786], [-77.44435002182408, 34.62105039261709], [-77.44432622932894, 34.621004462595415], [-77.44432375814094, 34.620997288821464], [-77.44430333312111, 34.62098323531873], [-77.4440920952705, 34.62083352895007], [-77.44393089828064, 34.62074004358189], [-77.44370310963504, 34.620607938198305], [-77.44353453866297, 34.620600810827675], [-77.44348273246743, 34.62049856574158], [-77.44333245215998, 34.62033380533105], [-77.44358719136218, 34.62018450794909], [-77.44361591741114, 34.62009134328938], [-77.4436653246167, 34.61998379554229], [-77.44370354741699, 34.61984424366986], [-77.44365915077266, 34.619709766006565], [-77.44358235042398, 34.61962808451713], [-77.44343494586184, 34.61962837257758], [-77.44327203392581, 34.61969324841719], [-77.4431802989974, 34.619846287189674], [-77.44294715167007, 34.620198981025965], [-77.44267572726764, 34.620696264994955], [-77.44266369724564, 34.62071921094862], [-77.44265048743004, 34.62073583677907], [-77.4423508877878, 34.621229167393466], [-77.44233997337119, 34.6215628606092], [-77.44227564398456, 34.62182225729988], [-77.44224121990428, 34.621960264715476], [-77.44204845847312, 34.62224623844707], [-77.4418900124841, 34.62230673490596], [-77.44132979540124, 34.62238155814251], [-77.44095342846116, 34.62208750524814], [-77.44081870777228, 34.622092022957204], [-77.44079061425636, 34.62200455293633], [-77.44076603875455, 34.6219134236248], [-77.44058395648952, 34.621324968994074], [-77.44039140729133, 34.62078583510659], [-77.44026882097444, 34.62067630923907], [-77.44015480221924, 34.62046068012192], [-77.44015516001363, 34.62016036956602], [-77.43971126132593, 34.62030546261899], [-77.43942026165644, 34.62032802968296], [-77.43928759289292, 34.62030658059268], [-77.43866747013885, 34.620559607178436], [-77.4384811965093, 34.620739016838115], [-77.43805557638119, 34.62056872706205], [-77.43763893506576, 34.62049327490206], [-77.43756637570003, 34.620338929301795], [-77.43726135594024, 34.62012411591673], [-77.43721100579683, 34.620102113271216], [-77.43702191178483, 34.620124881834364], [-77.43674261578023, 34.62014981071458], [-77.43669750758903, 34.6202173507335], [-77.4367020272191, 34.62049118938144], [-77.43675935124327, 34.620568966642736], [-77.43677890509599, 34.62063024533882], [-77.43687586993806, 34.62090499820148], [-77.43698446474633, 34.62103351875304], [-77.43717059634075, 34.62106570158359], [-77.43724550736574, 34.62130082843099], [-77.43711737090769, 34.62157464810498], [-77.43688995096315, 34.621795826540165], [-77.43671193561465, 34.62195887995259], [-77.43666811875926, 34.62207194681818], [-77.43663505344139, 34.622177353755085], [-77.43660038305504, 34.622275875780836], [-77.43661651865082, 34.622319566883334], [-77.43665013426202, 34.62244631671344], [-77.43671135505721, 34.622541193312124], [-77.4369086402439, 34.62274187794561], [-77.4369330133087, 34.62276667090073], [-77.43715140903187, 34.62291755125499], [-77.43720994908082, 34.62302523821263], [-77.43748720251203, 34.62324371020657], [-77.43757668071486, 34.62331198009714], [-77.43788483132712, 34.62357135938838], [-77.43802669662861, 34.623676168012175], [-77.43830260960732, 34.623928578547265], [-77.43847069142768, 34.6240477188519], [-77.4385258852394, 34.62412712302463], [-77.43865614340119, 34.62427221337036], [-77.43879296097154, 34.62442024010073], [-77.43885594917816, 34.6244910633247], [-77.43905358230879, 34.62471519593137], [-77.4389701417105, 34.625001521647974], [-77.43864884781071, 34.62519355370412], [-77.43864510801367, 34.62519749377254], [-77.4386288319504, 34.62520551672365], [-77.43830732251985, 34.62538900250492], [-77.43802980436095, 34.62550079423227], [-77.43772275584902, 34.62565214571673], [-77.43721174131363, 34.62560943894797], [-77.4372113352006, 34.62558691331213], [-77.43719167858661, 34.62524591279028], [-77.43706563768492, 34.625172382695816], [-77.4368335767058, 34.625134401235606], [-77.43652631068804, 34.62512297205518], [-77.43560809439214, 34.62506382339249], [-77.43546580998115, 34.62509047285233], [-77.43529176593952, 34.62519035885707], [-77.4352725510456, 34.62505441804616], [-77.43520123235783, 34.62492143346882], [-77.43492847777135, 34.62472017248868], [-77.43476313766783, 34.62446112196117], [-77.43478503039913, 34.62398131102656], [-77.4347671021826, 34.623721508529144], [-77.43476337718108, 34.62352931568013], [-77.43466142805758, 34.6232182040727], [-77.43450975859139, 34.62305637105941], [-77.43451866210795, 34.62247851726514], [-77.43452799520279, 34.62231269076028], [-77.43457365181223, 34.622224034210625], [-77.43465319448794, 34.622121089759844], [-77.43470371110928, 34.6218933678368], [-77.43483720171363, 34.62169683526954], [-77.43488799155818, 34.62157005521197], [-77.43483897840825, 34.62148557235561], [-77.43461447645305, 34.621447252906485], [-77.43442343251697, 34.62128146972656], [-77.43406406220332, 34.62120578372581], [-77.4337750714559, 34.62105031841959], [-77.4335390470816, 34.62093327851498], [-77.43328364701888, 34.62095902225597], [-77.43293025380002, 34.621029394555364], [-77.43270360653426, 34.621040153362365], [-77.43219443860484, 34.62082138096646], [-77.4321529324063, 34.62079900470519], [-77.43214054261914, 34.62077768669239], [-77.43163356719478, 34.62069309808071], [-77.43134740176708, 34.6208693152792], [-77.43118082541983, 34.620960012071585], [-77.43108091065828, 34.62100152714552], [-77.43099371252538, 34.62110452209815], [-77.4306241297258, 34.621461089785235], [-77.43047800948563, 34.621620726177426], [-77.43048367235826, 34.62172165109646], [-77.43056637128205, 34.6218237921757], [-77.43066217663674, 34.62193747957825], [-77.43085574465084, 34.622161614255475], [-77.43091719693733, 34.62223404142735], [-77.43094231126828, 34.62227848756012], [-77.43133807059036, 34.622483336859226], [-77.43133147379531, 34.62271702571283], [-77.43145186799207, 34.6231893826433], [-77.43137702214831, 34.62357549047442], [-77.43138173587778, 34.623584624547604], [-77.43137391858254, 34.62358736472623], [-77.43123340871567, 34.62384243204676], [-77.43119296530239, 34.62388683987317], [-77.43114987729801, 34.62401392133414], [-77.4310898735229, 34.6241019170808], [-77.43109484374986, 34.62414885666016], [-77.43109015999246, 34.624215558425384], [-77.43112572830768, 34.62426932936589], [-77.4311510051743, 34.6243087558392], [-77.43131147029129, 34.62433434206428], [-77.4313151985103, 34.62433356815038], [-77.43132332101666, 34.624333731698876], [-77.43152308373216, 34.624311122170596], [-77.43157221282095, 34.624312068968024], [-77.43175599681757, 34.62433506947138], [-77.43207388111524, 34.62422389814546], [-77.43221383391014, 34.624381117902225], [-77.43230367780842, 34.624423584520564], [-77.43279067692075, 34.624590312187266], [-77.43312291803682, 34.624928587998674], [-77.43320450366942, 34.62499873227972], [-77.43340814280171, 34.6252568837872], [-77.43364478440331, 34.62537482391649], [-77.43384224473547, 34.62546206325773], [-77.43419133865096, 34.625621042173435], [-77.43426187489764, 34.625831558264295], [-77.43417154061811, 34.62610669620658], [-77.43396056331817, 34.6263455460447], [-77.43394924945696, 34.6268310591204], [-77.43396309987271, 34.62690458438664], [-77.43427684009161, 34.62707567464541], [-77.43465994919069, 34.6274444658651], [-77.43421530793574, 34.62820638335435], [-77.43380764683494, 34.62791826752551], [-77.43355253746013, 34.62806107070392], [-77.43357787139047, 34.628199066117155], [-77.43360974980547, 34.628482249848446], [-77.43369832978439, 34.62873153550436], [-77.43353347546544, 34.6291674769904], [-77.43432369664832, 34.62895039335516], [-77.43433221236921, 34.628633548387846], [-77.43458452296264, 34.62842223269641], [-77.43435887939856, 34.62826875401734], [-77.4350931659578, 34.627571397110295], [-77.43555409408835, 34.62792811577124], [-77.4355205381033, 34.62856749248088], [-77.43554404161739, 34.628669466155436], [-77.43549563963019, 34.6290419557585], [-77.43490225854896, 34.62977230335033], [-77.43434104603115, 34.63000891496788], [-77.43435372581675, 34.62974718835268], [-77.43348295257093, 34.62937309106523], [-77.43349850627146, 34.62990048626558], [-77.43350115029337, 34.62999016135251], [-77.4337086968441, 34.63059348618339], [-77.43349616648291, 34.63073006076616], [-77.4336194449179, 34.631801127988574], [-77.43081712118986, 34.632486794348566], [-77.42998016828358, 34.63194530874483], [-77.4294771714938, 34.63187531320425], [-77.42844291855357, 34.63173138849042], [-77.4277935523462, 34.631641018520526], [-77.42688781908146, 34.63113615448935], [-77.42749068025046, 34.630534038116714], [-77.42778986542206, 34.62976083965589], [-77.42794965647771, 34.629356676916764], [-77.42802298437479, 34.629222980232626], [-77.42807101492006, 34.62881138652481], [-77.4281066375428, 34.62863280310163], [-77.42808806413291, 34.62857877095256], [-77.42809033748122, 34.628505854141004], [-77.42795648050225, 34.628392760869225], [-77.42762660000963, 34.62815841198933], [-77.42711953352399, 34.6282872863964], [-77.42691596752631, 34.62843340426939], [-77.42652148813984, 34.629025132923815], [-77.42644698503132, 34.62929079090734], [-77.42556358352306, 34.629765055919506], [-77.42521882478803, 34.62886087968594], [-77.42513718974277, 34.628681076305185], [-77.42508939607788, 34.62851632789637], [-77.42476265975135, 34.628250445689076], [-77.42468580471564, 34.62867429228849], [-77.42337978194844, 34.62918174555829], [-77.42185762258741, 34.63016211696255], [-77.42119564507968, 34.630588457322574], [-77.42018320555152, 34.63085433830345], [-77.41969171256726, 34.630232379290874], [-77.42021549485574, 34.62958722873575], [-77.41936136672287, 34.6288495905571], [-77.42028048303789, 34.627242431340775], [-77.42032816184982, 34.62714875821031], [-77.42035880205076, 34.627088558061516], [-77.42051810570767, 34.626789284863115], [-77.4207944599033, 34.62607305200334], [-77.42104826202487, 34.62541523721477], [-77.42129848754684, 34.625010557887975], [-77.42172157148964, 34.62482159429411], [-77.42214970513737, 34.62468909826849], [-77.42223613846937, 34.62469025649947], [-77.42273690767098, 34.62468909313213], [-77.42299852036916, 34.62467278201237], [-77.42366837801524, 34.624601303978814], [-77.42375316721625, 34.62455997369327], [-77.42392739245818, 34.62407251037369], [-77.42411841501445, 34.62380210349806], [-77.4243125167697, 34.62358786701655], [-77.42450013519226, 34.62344637021192], [-77.42482419937667, 34.6232317828684], [-77.42481604550858, 34.6231446757856], [-77.42458566683834, 34.62293051441378], [-77.42449808748006, 34.62284053211611], [-77.42438543690682, 34.622374455722344], [-77.42436700234184, 34.622254355615546], [-77.42442786159319, 34.622012305278076], [-77.42441587322591, 34.62187120063594], [-77.42444337237805, 34.62177526884802], [-77.42438068600823, 34.621612932587716], [-77.42418366957071, 34.62156813002388], [-77.42406612946763, 34.62154027141477], [-77.42397714898435, 34.62153433620662], [-77.42379171487183, 34.62154712479864], [-77.42346426476638, 34.62158144527692], [-77.4232243827069, 34.62165475953373], [-77.42296425494565, 34.6216756266142], [-77.4227897801694, 34.621728776103495], [-77.42269360307026, 34.62178214309219], [-77.42253711820322, 34.622036257989805], [-77.42253650116763, 34.62203743002771], [-77.42237416431016, 34.62228977908285], [-77.42215272552312, 34.622553186762204], [-77.42197365301847, 34.62276903158177], [-77.42131879662608, 34.623122806815864], [-77.42128444863373, 34.62322331220258], [-77.42120530152867, 34.62315514042563], [-77.42064737079951, 34.62297540866781], [-77.42057216161125, 34.62252655723405], [-77.42068785054597, 34.62209397278421], [-77.42068741192035, 34.62207709048142], [-77.4206797264893, 34.62193488324674], [-77.42066659937862, 34.62167781954202], [-77.42066508524718, 34.62166396956859], [-77.42048252479961, 34.621551689829154], [-77.42042414864433, 34.621549346298494], [-77.4202854227466, 34.62156374892533], [-77.420134911303, 34.62157842272121], [-77.41967772599472, 34.62161192194027], [-77.41949701746434, 34.62162756572014], [-77.41930053808696, 34.621649404131375], [-77.4191028158676, 34.621666599453185], [-77.41889005073162, 34.62172489251466], [-77.4187086269766, 34.621762913546355], [-77.41855085176744, 34.62179934505506], [-77.41811008518478, 34.62203293094157], [-77.4180117034508, 34.62214559508978], [-77.4179203012582, 34.6222066511944], [-77.41743823059447, 34.622459840042914], [-77.41713200616584, 34.622836647861824], [-77.4167841923975, 34.62259893008493], [-77.41667584083407, 34.62259793713845], [-77.416343574713, 34.622848223339844], [-77.41561269901423, 34.62239351871968], [-77.41556823363908, 34.622385741411065], [-77.41555504888349, 34.62236960078242], [-77.41550254237585, 34.62235287447306], [-77.41476663603106, 34.62246252025177], [-77.41421224087053, 34.622343613266615], [-77.41397819629645, 34.62241410506441], [-77.41326741935613, 34.62188293430819], [-77.41325476110399, 34.621814653146345], [-77.41345831652372, 34.621006215674804], [-77.41331053365617, 34.62089721110163], [-77.41318951161767, 34.62085020680662], [-77.41284034283561, 34.620622295782596], [-77.41260198818414, 34.62049710050276], [-77.412401026422, 34.620398562545134], [-77.4123455079863, 34.62037748694684], [-77.41219120416676, 34.62033996779921], [-77.41171932906643, 34.620293126558614], [-77.41161259781583, 34.620285777487055], [-77.41146275092798, 34.620283724544464], [-77.41121838935001, 34.620267015227356], [-77.41103641405209, 34.620278073062224], [-77.41082418449076, 34.620274212213445], [-77.41009888162581, 34.62064197340871], [-77.41006476648266, 34.62067807143121], [-77.41003582768798, 34.620721609272984], [-77.4094633695803, 34.62158285201976], [-77.40937365894156, 34.621731646432465], [-77.40893547021952, 34.62199516168965], [-77.40845909469581, 34.62167526691708], [-77.40810575862696, 34.62131012823747], [-77.4077826832204, 34.620976246348555], [-77.40736443113894, 34.62051715905462], [-77.40751647963175, 34.619999612192025], [-77.40788355278605, 34.61988306369092], [-77.40845888864888, 34.61970892203898], [-77.40888672557662, 34.61957942198238], [-77.40893153638567, 34.619112138273486], [-77.40896938905817, 34.61855670081856], [-77.4089180291232, 34.61826493135554], [-77.40845868507262, 34.61773714002209], [-77.40836951719221, 34.617590962305826], [-77.40803189738872, 34.61754366231547], [-77.40767027101857, 34.61746697386525], [-77.40703023810029, 34.61752843014828], [-77.40688188796176, 34.617510156415406], [-77.40626837459006, 34.61694900193192], [-77.40618790696797, 34.616858878031], [-77.40609344717807, 34.61678558389991], [-77.40581518584696, 34.616464931050004], [-77.40540651010039, 34.61633351074129], [-77.40530503807977, 34.61634289838604], [-77.40525186406272, 34.61630380090859], [-77.40506608942638, 34.61627333645283], [-77.40451665352148, 34.616202289550586], [-77.40440647301048, 34.61624983608113], [-77.40412247157943, 34.616324133386115], [-77.40389341926512, 34.61644253966647], [-77.40378410019707, 34.616518422920194], [-77.40372829515402, 34.61659511010746], [-77.40334108460617, 34.61695430828995], [-77.40333411990996, 34.61696081780804], [-77.40332451572912, 34.61695954136539], [-77.40293991743818, 34.61665892555158], [-77.40287686813579, 34.61658920665333], [-77.40289223920408, 34.61653564026473], [-77.40293990727359, 34.616370697837574], [-77.40301970109952, 34.61580541570059], [-77.40302608770936, 34.615718527802656], [-77.4030170885037, 34.615636666572286], [-77.40296850155129, 34.61530226111601], [-77.40293986916208, 34.61527855368308], [-77.4027148416366, 34.61515665512416], [-77.40240568366495, 34.61495888608489], [-77.40225862596708, 34.61486470698339], [-77.4021514862681, 34.61466728874633], [-77.40190584877578, 34.614446420481926], [-77.40180546397721, 34.61419633133803], [-77.40179285733903, 34.6141598455479], [-77.40175729459332, 34.614132443255244], [-77.40158588002615, 34.61398806496987], [-77.40136311206882, 34.61386481124582], [-77.40097364826202, 34.613467184436786], [-77.40088305374115, 34.61314817667764], [-77.4008321654038, 34.613063021507635], [-77.4008609730341, 34.61294258694996], [-77.40081068982363, 34.612811984656005], [-77.40077183799522, 34.612755851388044], [-77.40065214557076, 34.61274778040786], [-77.40057475189242, 34.612769400739445], [-77.4004960508423, 34.61277170630372], [-77.39989608847651, 34.61289162535259], [-77.39978640622634, 34.612899936169754], [-77.39971474854889, 34.61287682747678], [-77.39941357024381, 34.61286607114163], [-77.3993922322554, 34.61297545064312], [-77.39935248014007, 34.61323365891314], [-77.39934642680113, 34.613277347288104], [-77.39933937909333, 34.613335288908814], [-77.39932547544353, 34.613704942142434], [-77.39924809100559, 34.61398543240276], [-77.39919850727463, 34.61414783063984], [-77.39899803595111, 34.614596607738584], [-77.39899516036951, 34.614598638483805], [-77.39898574276917, 34.6146030941552], [-77.39898971205663, 34.61461148703757], [-77.39899803578027, 34.61460942920057], [-77.3991355732664, 34.61500605486966], [-77.39928032054577, 34.61510569440942], [-77.39939221184422, 34.615246294477686], [-77.39949737488847, 34.615378439545985], [-77.3993922074913, 34.61579144397825], [-77.39938844292463, 34.61581467144542], [-77.39938416528072, 34.615819343045665], [-77.39919511243866, 34.61594696723778], [-77.39901541318791, 34.61589126818599], [-77.39899801929629, 34.615887898129955], [-77.39897416554292, 34.615878483138886], [-77.39872304390018, 34.61578630544778], [-77.39860383531774, 34.61568297958655], [-77.39841024083739, 34.61553525085594], [-77.39847778178456, 34.61523671512158], [-77.39820965795971, 34.61526505745873], [-77.39805562691541, 34.615161826662685], [-77.39801463923266, 34.61495322645305], [-77.3979604838631, 34.61475097673823], [-77.39762898538633, 34.614575103575305], [-77.39742132649889, 34.61408449065722], [-77.39739288428916, 34.614014336932016], [-77.3973869160603, 34.61398456021091], [-77.39702715789437, 34.61379904816631], [-77.39691788574677, 34.61374533613087], [-77.3967347648515, 34.61376367888458], [-77.3966329809237, 34.61377387422516], [-77.39652834285842, 34.613796523690226], [-77.39634897920286, 34.61382836120107], [-77.39623879906162, 34.613856505910164], [-77.39610857118888, 34.61388462609209], [-77.39584461699323, 34.61392726171381], [-77.39561070859465, 34.61398879127251], [-77.39528256657343, 34.61404429008317], [-77.39505624965437, 34.6140825742202], [-77.39480006835163, 34.61408170282728], [-77.3946620685736, 34.61410274088822], [-77.39455035927892, 34.614089398229936], [-77.39437419738502, 34.61399447912851], [-77.39426790017916, 34.61393927854249], [-77.39410564462916, 34.6138584339829], [-77.3940214818275, 34.61388619322933], [-77.39387371791078, 34.613979633864666], [-77.39382361810415, 34.6140199153599], [-77.39367430696922, 34.61409540535329], [-77.39378826750715, 34.614170994613474], [-77.39375233538688, 34.61450872348674], [-77.39391717712174, 34.61486264308764], [-77.39393610202555, 34.61490679507641], [-77.39398087258321, 34.61501583718921], [-77.39380379692004, 34.615350443288456], [-77.39357907192957, 34.61549018335466], [-77.39347941575303, 34.61552228620652], [-77.39335034951395, 34.61555484079213], [-77.39311632954116, 34.61544957365683], [-77.39277279573838, 34.6154110639322], [-77.39269105008651, 34.61542998158936], [-77.39261351046214, 34.615438560729594], [-77.39198578105325, 34.615523066665496], [-77.39190266725365, 34.615527881320986], [-77.3917629136699, 34.615494190983995], [-77.39127813328878, 34.615538145333936], [-77.39111428490122, 34.61560114811093], [-77.39090376953385, 34.61554184211151], [-77.39072009722855, 34.61560063047822], [-77.39061757994276, 34.615495713341744], [-77.39044252260774, 34.615536113168424], [-77.39032591332857, 34.61556724343904], [-77.39022987803278, 34.6156534617185], [-77.39025879813904, 34.615789316694546], [-77.39017753453673, 34.61587329208745], [-77.39002301081221, 34.61599394533202], [-77.38993167365943, 34.615995404307036], [-77.38980636958553, 34.616139085868795], [-77.38976917518218, 34.616181735296905], [-77.38975932047747, 34.6163314597364], [-77.38975710534255, 34.616358472132575], [-77.38976356304313, 34.616388811261196], [-77.38978885762177, 34.616507649037224], [-77.38986181233, 34.61655566118184], [-77.38993158301211, 34.616744898092115], [-77.39002113794665, 34.61653269195043], [-77.39005622292675, 34.616449555873345], [-77.39013073574262, 34.6163046073204], [-77.39020907881336, 34.616167549948266], [-77.3903258670639, 34.615963951662515], [-77.3903844245688, 34.61590652800902], [-77.39072006206798, 34.6159147707412], [-77.39097726351523, 34.615905539571614], [-77.39111424851644, 34.615940752266994], [-77.39136192735684, 34.6162848659453], [-77.39173539052132, 34.616317741548], [-77.391902628205, 34.615927742210076], [-77.39218226991295, 34.616132179433315], [-77.39229679182054, 34.616201200008035], [-77.39248916815964, 34.61617177374087], [-77.39269100234287, 34.61597134101808], [-77.39281906906014, 34.61620361711139], [-77.39295143030967, 34.61632249069501], [-77.39325902267824, 34.61651543161687], [-77.39334297059678, 34.616690603906015], [-77.39347931955457, 34.616747493840855], [-77.39363576988018, 34.61690443416951], [-77.39379706090934, 34.616967371005785], [-77.39387349761668, 34.616945906398314], [-77.39421209684025, 34.61692996871913], [-77.39426769301654, 34.61691766548995], [-77.39430430209408, 34.6169371205014], [-77.394740430534, 34.61691366054583], [-77.39503553338635, 34.616893236148144], [-77.39505608086645, 34.61689317952495], [-77.39509549223905, 34.6169049079028], [-77.3956226209644, 34.61702537517628], [-77.39584445706305, 34.61708999501677], [-77.39622048546698, 34.61714435054708], [-77.39642644899567, 34.61751965864185], [-77.39655554964207, 34.61758426956213], [-77.39663282254119, 34.617641052596106], [-77.39694385469014, 34.617869610089336], [-77.39698321322132, 34.617911104269844], [-77.39715155329336, 34.61826422652044], [-77.39726652415231, 34.618414229205385], [-77.39739838074144, 34.61865320046888], [-77.39740863650388, 34.618665235993255], [-77.39742118399921, 34.618680136775986], [-77.39758532034966, 34.61887402232336], [-77.39770093336895, 34.61903413636512], [-77.39781537226727, 34.61920108985251], [-77.3979162667056, 34.619318980828574], [-77.39796504423674, 34.61958182761009], [-77.39759001205407, 34.61971741249994], [-77.39742115104657, 34.61981986165085], [-77.39733694524247, 34.61984508580545], [-77.397122713462, 34.61986352678426], [-77.39702694366123, 34.61984820069113], [-77.39686337863628, 34.61975567091968], [-77.39663274547375, 34.61962519910639], [-77.3966152319349, 34.61961529145722], [-77.39641176273655, 34.61945807535163], [-77.39623855403576, 34.619293896222], [-77.39621478872718, 34.61927406729477], [-77.39613993270338, 34.61925926561651], [-77.39594471657631, 34.61917932529454], [-77.3958443557664, 34.61917041580177], [-77.39570920566453, 34.61917582031958], [-77.39516750700236, 34.61939949908671], [-77.39507881329267, 34.619436932134796], [-77.39505593217903, 34.61945221880289], [-77.39498644831627, 34.61950044173789], [-77.39455804320798, 34.61980030941007], [-77.39455214255302, 34.61991280747492], [-77.39455288975236, 34.62002988137898], [-77.39453410714265, 34.62012769357408], [-77.39459164709636, 34.62025625749176], [-77.39461839337244, 34.620327824782635], [-77.39466167125887, 34.620357544116246], [-77.39472978965094, 34.620385127830126], [-77.39485877106011, 34.62044137445647], [-77.39491254986075, 34.620439771691466], [-77.39505587591145, 34.62044273951249], [-77.3952613125685, 34.62045637316375], [-77.39545008773807, 34.6204031964873], [-77.39569411267559, 34.62033445544553], [-77.3958443013748, 34.62031614069411], [-77.39616738996084, 34.62045242816926], [-77.39623850339328, 34.62048102321605], [-77.39625895907935, 34.62049378295408], [-77.39628437527874, 34.620512149426354], [-77.39632113819098, 34.62059585174377], [-77.39650113434772, 34.620905460831025], [-77.39652832610363, 34.621013943835294], [-77.3965793449498, 34.62131875357157], [-77.39663267746025, 34.621441352722904], [-77.39671134529308, 34.621639555081664], [-77.39691729873388, 34.62169458665438], [-77.39702688276917, 34.621719249646205], [-77.39733700888856, 34.62172462021501], [-77.39742109793706, 34.62173005952216], [-77.39755696495685, 34.62174866321537], [-77.39794193463294, 34.62183500875346], [-77.39820952239324, 34.62209065010849], [-77.39833342157067, 34.622206050525456], [-77.39845258531926, 34.622322305431986], [-77.39870582729218, 34.62260039504604], [-77.39899795145064, 34.62271499405704], [-77.39925562575672, 34.62277811140529], [-77.39967657211542, 34.62287663525911], [-77.3997863912277, 34.622890554762186], [-77.39986300601446, 34.62288550403633], [-77.40057484058956, 34.62360851864892], [-77.4006604590808, 34.623609925330406], [-77.40077640388574, 34.62368541073532], [-77.40070316182434, 34.6269544131967], [-77.40086616053833, 34.62706905292792], [-77.40087879794947, 34.627394508767004], [-77.39900958913134, 34.630733391868176], [-77.40094387462061, 34.63345377371959], [-77.40171118703468, 34.6349637804576], [-77.39774886446962, 34.637355076346374], [-77.39742076192456, 34.63745897360649], [-77.39735250177142, 34.637692052624224], [-77.39729771706523, 34.6377734502682], [-77.39391587814607, 34.64128036349124], [-77.39111173676949, 34.64167735366291], [-77.38952547266729, 34.64060200828868], [-77.3872799124004, 34.641884836764504], [-77.38480272220175, 34.64181616644322], [-77.38329825592784, 34.64156792398741], [-77.38322551463713, 34.641564080049775], [-77.38317526708704, 34.641561424147255], [-77.38291582409754, 34.641544700488346], [-77.38164827748254, 34.641504376863054], [-77.38140079965609, 34.64149650152909], [-77.38069397540974, 34.64119412445324], [-77.3806214941485, 34.641026108296515], [-77.38032534817454, 34.64079510542972], [-77.3802909500064, 34.64064916240015], [-77.38020759094078, 34.64038338152793], [-77.38022672330078, 34.64023385153594], [-77.38014036918061, 34.640171947199065], [-77.38007133809292, 34.6401060642942], [-77.37972948956768, 34.63993735809205], [-77.3796770757024, 34.639914224878304], [-77.37965703701332, 34.63991293011471], [-77.37928280023239, 34.63978675129208], [-77.37907784229603, 34.63977090973837], [-77.37849429233168, 34.63936821890246], [-77.37806671533093, 34.639307144726345], [-77.37770579507253, 34.63893660786036], [-77.3776708849101, 34.63890375619273], [-77.377254756002, 34.638600316233216], [-77.37691729684173, 34.63854040307672], [-77.37670653540997, 34.63881579057538], [-77.37648461839755, 34.63907461195996], [-77.37633036895416, 34.639314199003834], [-77.37622880777747, 34.63953601555618], [-77.37612839722942, 34.63965459961964], [-77.37595692645831, 34.639815150688804], [-77.37544805539764, 34.63995635192731], [-77.37533971149718, 34.63992866055506], [-77.37498569722898, 34.63971504266166], [-77.37498127692153, 34.639677132095215], [-77.374964935669, 34.639293471988914], [-77.37507706646574, 34.6389942425575], [-77.37498999961613, 34.638817626773076], [-77.37494572032702, 34.6388216072955], [-77.37489772991245, 34.63882691918822], [-77.37455132329573, 34.63915414243704], [-77.37422493533624, 34.638902431444365], [-77.3741006355565, 34.63893259555904], [-77.37376276919714, 34.63898352207747], [-77.37372102960974, 34.63900310572164], [-77.37358273125733, 34.63906795693942], [-77.37356956492184, 34.63907413175774], [-77.37356558980345, 34.63907807396077], [-77.37343106151596, 34.639157251055224], [-77.37336839340816, 34.63922719672594], [-77.37298983983219, 34.6395778900514], [-77.37298219438475, 34.63958783640288], [-77.3729739783075, 34.639590848385176], [-77.37295784294135, 34.63959986768134], [-77.37257960880012, 34.63979769440611], [-77.37244236145098, 34.63980449702065], [-77.37233778494945, 34.63983597374437], [-77.37218527690919, 34.63987952481717], [-77.37213417278352, 34.63991337642668], [-77.37210054173858, 34.64000941056051], [-77.37209149412094, 34.64002566116753], [-77.37209490066918, 34.6400340531142], [-77.3721374001438, 34.64012519095333], [-77.37215269056598, 34.64015798052168], [-77.37218516654451, 34.640227623101495], [-77.37229405085246, 34.6404098941282], [-77.37237254588779, 34.64051589157732], [-77.37252147378427, 34.640856767703085], [-77.37256629902282, 34.64092650360638], [-77.37261556916467, 34.64094456208828], [-77.3729735858476, 34.64086743454992], [-77.373350381277, 34.640780763877586], [-77.3733808152391, 34.640781387102635], [-77.37343520466517, 34.64078743692614], [-77.37370618550537, 34.64080875478252], [-77.373762211674, 34.64085302629605], [-77.37394272314565, 34.64094452590004], [-77.37405227867417, 34.64112313826042], [-77.37455060059727, 34.64166008218046], [-77.37464295149093, 34.64178772517294], [-77.37472777880994, 34.641874984027055], [-77.37494480506867, 34.64204849448575], [-77.37509597028448, 34.64208375112089], [-77.37533909733584, 34.64213409589601], [-77.37556547487517, 34.64217890866084], [-77.3756565654253, 34.64224849893193], [-77.3760429035716, 34.642443469503505], [-77.37612763370632, 34.6424933259964], [-77.37615084615305, 34.64249417426866], [-77.37620868259907, 34.64251083779166], [-77.37614485056213, 34.642538581184986], [-77.37612761465762, 34.64256443590531], [-77.3758079078268, 34.643073598292524], [-77.37535584217922, 34.64348277839457], [-77.37533872005828, 34.64349509581584], [-77.37532989075937, 34.643496021662145], [-77.37463623704437, 34.64367923139066], [-77.3745780627993, 34.643737952853854], [-77.3743524553538, 34.64399037966293], [-77.3740154502587, 34.64412381220881], [-77.37393987802017, 34.64436352381947], [-77.37391464343067, 34.64453023704469], [-77.3736046083498, 34.645263412510566], [-77.37346087064736, 34.64525060722776], [-77.3732989423179, 34.645335400321265], [-77.37315286630795, 34.64521855304762], [-77.37310644170114, 34.645253433530804], [-77.3730420823088, 34.645283262671654], [-77.37311162476139, 34.64530027769986], [-77.37327236295667, 34.64546259875585], [-77.3733292089755, 34.64548571004454], [-77.37360471739376, 34.64547214920086], [-77.37364729041013, 34.64547537574223], [-77.37395245000714, 34.64570922968915], [-77.37404653360895, 34.64574563478868], [-77.37430604330714, 34.645566885302784], [-77.37455948082767, 34.6458781654967], [-77.374710060542, 34.645983284257284], [-77.37476461869228, 34.64604616313446], [-77.37488857591323, 34.646084336867354], [-77.37501836542934, 34.646117833530475], [-77.37505915148807, 34.64612691972782], [-77.3751242907304, 34.64613549894413], [-77.37538586139928, 34.64615941629991], [-77.37560758315264, 34.64609922023763], [-77.37569256606596, 34.64609257645034], [-77.37595099983525, 34.64623977230039], [-77.37609617922642, 34.64628001127927], [-77.37635456062947, 34.64620013798661], [-77.37668640924583, 34.646259388293046], [-77.37668718320191, 34.646259588365346], [-77.37701817181696, 34.64631571595129], [-77.37721799091291, 34.64635499082152], [-77.37763534059448, 34.64647714415558], [-77.3777039148502, 34.646492629450144], [-77.37775655398602, 34.6464768511801], [-77.37795002043767, 34.64650565642126], [-77.37849256566612, 34.64658680566012], [-77.37893239205695, 34.64673970947902], [-77.3792811544741, 34.64696064629338], [-77.37939469670016, 34.64702443963045], [-77.37972245984625, 34.64709948888419], [-77.37998846219844, 34.64714873425909], [-77.38006978643241, 34.647167354602914], [-77.38020444037342, 34.647175038299174], [-77.38136800919014, 34.647162977594846], [-77.38164713592052, 34.64720427617109], [-77.38223895668904, 34.647374198386714], [-77.38243577268348, 34.64742415273907], [-77.38259268408456, 34.64736622375035], [-77.3832243757275, 34.647855403298344], [-77.38430769865508, 34.64697099226009], [-77.38446257046449, 34.6481148800664], [-77.38446831869007, 34.64847292009577], [-77.38480165705576, 34.6483940746638], [-77.38557467022734, 34.64882057042375], [-77.38559790111839, 34.64964955145288], [-77.38703974664102, 34.65042841162523], [-77.38795606190055, 34.65127798889757], [-77.38869949532713, 34.65179869268106], [-77.38948141206706, 34.65248645740898], [-77.39042145071892, 34.65309308685374], [-77.39111072208195, 34.653705326555176], [-77.39268020831581, 34.65373229415576], [-77.39273388083058, 34.653765152589756], [-77.39426562325677, 34.65470289247444], [-77.39464498694691, 34.654730319373826], [-77.39491056200141, 34.65541930898788], [-77.39629016252044, 34.65757093060649], [-77.3974550517583, 34.65860963548182], [-77.39748872994616, 34.65880035981377], [-77.39721602276299, 34.65890141734117], [-77.39556488686566, 34.65994755394186], [-77.39489675261181, 34.66037085663217], [-77.39399923071886, 34.660780090808096], [-77.39315163967595, 34.66084419366999], [-77.39313021443364, 34.66085444926479], [-77.39309527017484, 34.660858317415034], [-77.39229224411072, 34.660979617626424], [-77.39183489214922, 34.660966303171776], [-77.3918045119733, 34.66096544701017], [-77.39136892434442, 34.660965071919925], [-77.39118616034867, 34.66099407045119], [-77.3909206568596, 34.66090910949797], [-77.39058082632147, 34.66087206709854], [-77.39033609265186, 34.66082424957927], [-77.3902357479328, 34.66082183374382], [-77.3900017345648, 34.66080576855855], [-77.38973144110929, 34.660895769532864], [-77.38963186109969, 34.66092469489315], [-77.38928438890318, 34.66121655799648], [-77.38925835092928, 34.66123171476553], [-77.3892014365486, 34.661257182206], [-77.38858219398551, 34.66157503767753], [-77.38827286102423, 34.66162515453237], [-77.38826420206932, 34.66162675156317], [-77.38795482873866, 34.66167528763347], [-77.3876483871008, 34.66171904006118], [-77.38764159440417, 34.66172386308117], [-77.38763689076417, 34.661720785714714], [-77.38738774323352, 34.66180706987114], [-77.38736255279761, 34.66193212999576], [-77.3874188589941, 34.66198993717189], [-77.38755139015433, 34.66203511447152], [-77.38772705855065, 34.66204563339513], [-77.38784081658699, 34.662068694130745], [-77.38810392050537, 34.66214961795323], [-77.38814976978637, 34.662163372498284], [-77.38839295963166, 34.662228020399496], [-77.38850995311363, 34.66223112851746], [-77.38887330041959, 34.66227715700629], [-77.38895202046089, 34.66228487764341], [-77.38897253342853, 34.662292694953734], [-77.38936942474696, 34.66260619503666], [-77.38946040578956, 34.66267381152129], [-77.38946784782758, 34.66267611837077], [-77.38948840861116, 34.662711636299555], [-77.38978761244655, 34.66312611499813], [-77.38978757598294, 34.66321843518127], [-77.38985496493869, 34.66337694653742], [-77.39038541013196, 34.66438266776437], [-77.39030707754945, 34.66473543664771], [-77.39027482599454, 34.665161762827196], [-77.38948432464042, 34.66507855818896], [-77.38936224454531, 34.66507720144312], [-77.38905079083156, 34.664875926634814], [-77.38885975363388, 34.66474647929888], [-77.38884995508603, 34.66472940453281], [-77.38884270708756, 34.664718389386046], [-77.3883559642175, 34.6644202482604], [-77.38827123598374, 34.664386602948014], [-77.38815591877555, 34.664325511517276], [-77.38765370802616, 34.664073699044394], [-77.3873093665357, 34.66390244946747], [-77.38709360867009, 34.663716555233506], [-77.38678996274786, 34.66363012719333], [-77.38624713582517, 34.66366742246856], [-77.38617968149347, 34.66367136220636], [-77.38615631839926, 34.663649981875054], [-77.3861022555736, 34.663633342075485], [-77.38538469761147, 34.66345577905019], [-77.38509219162282, 34.66329470215782], [-77.38434429085969, 34.66290045081678], [-77.38417444594506, 34.66281086135503], [-77.3840484770416, 34.662767046402905], [-77.38388056200543, 34.66284615636006], [-77.38380968638178, 34.66297401343057], [-77.38368989412255, 34.66318411845265], [-77.3834934462783, 34.66377919302405], [-77.38308312716303, 34.6640487875982], [-77.38307740358887, 34.66405294749919], [-77.38270442577249, 34.66435603998829], [-77.38268764039591, 34.66436546904359], [-77.38251320579472, 34.66450560117409], [-77.38249510622754, 34.66451362780522], [-77.38238746635594, 34.66463190297581], [-77.38244587779101, 34.66468344884689], [-77.38250592813111, 34.66468756625275], [-77.38257979690565, 34.6647374944544], [-77.38267538100088, 34.66475418714154], [-77.38284404723815, 34.664857963864854], [-77.38290858969522, 34.665047603794605], [-77.38313123752863, 34.66519163905257], [-77.38331913961196, 34.665283155724985], [-77.38355651667214, 34.66544585563969], [-77.38371042186228, 34.665534096959426], [-77.38382299013642, 34.665609151843725], [-77.38398139277803, 34.66571966945215], [-77.38407302939437, 34.665778661085724], [-77.38411892355536, 34.6658108805686], [-77.38417992914778, 34.66584747822518], [-77.38426546237424, 34.66589515240733], [-77.38432828719753, 34.66593016929575], [-77.38441395614623, 34.665977918799996], [-77.38458910378114, 34.666034876682566], [-77.38459360723225, 34.66603668463865], [-77.38460303676118, 34.66603868527531], [-77.38489703311618, 34.666032300348974], [-77.38508148317888, 34.66605517447878], [-77.38534601328892, 34.6660590708278], [-77.38548649371474, 34.66606296715928], [-77.38560354975407, 34.666047325250695], [-77.38606736039928, 34.66606028414837], [-77.38609006320524, 34.66604495367235], [-77.38612615764755, 34.66603905665446], [-77.38614819588958, 34.6660640336689], [-77.38659958262659, 34.66606867273032], [-77.38667863133364, 34.66607869375262], [-77.38682059059634, 34.666089747398416], [-77.38697746612416, 34.66607986218655], [-77.38716261660007, 34.666029257820355], [-77.38730023960291, 34.665998432743606], [-77.38744324165604, 34.66600349027354], [-77.38793516303569, 34.665818106856484], [-77.38795323762938, 34.665809855785774], [-77.38851739892355, 34.665679309269315], [-77.3886136935125, 34.665595529939594], [-77.38869767878128, 34.66563534553475], [-77.38910911357547, 34.665565634254165], [-77.38931696041938, 34.665233462455134], [-77.38936550573573, 34.66517019802228], [-77.39036576837066, 34.665603566727484], [-77.39049145013996, 34.66560253903823], [-77.39055726413324, 34.66562409343549], [-77.39148137841767, 34.66603091367439], [-77.39163276390228, 34.66608612751933], [-77.39176722998721, 34.666107759834006], [-77.39192831424695, 34.66617175410231], [-77.39215686510177, 34.66619550536181], [-77.39224032165879, 34.666200586850344], [-77.39228885262929, 34.666213133785725], [-77.39272605364486, 34.6664044268354], [-77.3928115797144, 34.666440323994195], [-77.39290751506067, 34.66647733804083], [-77.39309896102108, 34.66655414844937], [-77.39328937427929, 34.66661579397805], [-77.39339143023464, 34.66665041475226], [-77.39349037683715, 34.66668293553738], [-77.39368422010926, 34.66674557634441], [-77.39388936071731, 34.66681186724452], [-77.39397713222797, 34.666840317034115], [-77.39406032078443, 34.66686738250845], [-77.39427275775344, 34.666925694648285], [-77.39454270327717, 34.666985684920405], [-77.39457357930918, 34.66699313963689], [-77.39459767309101, 34.66699847969738], [-77.39476805793626, 34.6670357651529], [-77.39487596833663, 34.66705517543016], [-77.39489235454919, 34.66706300825613], [-77.39513414053499, 34.66712812344476], [-77.395172666844, 34.6671368525903], [-77.39530957329971, 34.66708559106232], [-77.39532724172795, 34.667069975245184], [-77.39541913825278, 34.666984165346825], [-77.39545119416901, 34.66689865224179], [-77.39554713966098, 34.666749404648655], [-77.39560441177798, 34.66640103438741], [-77.39590209219736, 34.666314530712995], [-77.39623716498413, 34.665939890469716], [-77.39684811537232, 34.66577686826673], [-77.39706299999108, 34.66638079921044], [-77.3972618792965, 34.66656026205316], [-77.39739662938001, 34.66668795726946], [-77.39747532308289, 34.66686539146795], [-77.39758135309184, 34.667057224526246], [-77.39761986587152, 34.66753621430118], [-77.39798974653038, 34.66731148336601], [-77.39820131704217, 34.66711958543539], [-77.39828395497389, 34.667044631599936], [-77.39849080580942, 34.66667787811461], [-77.39849749647497, 34.66666413245039], [-77.39850110728871, 34.66665167375953], [-77.39875560746538, 34.66619534898792], [-77.39887825115682, 34.66577221173893], [-77.3997231414817, 34.664699129283164], [-77.40055838720349, 34.66581540724071], [-77.40144460381474, 34.66713679892287], [-77.4013885296643, 34.6672544261402], [-77.40154368490332, 34.667261769200216], [-77.40163062825451, 34.66728322244073], [-77.40164381180023, 34.667206541295094], [-77.40289401406511, 34.66635747906985], [-77.40446283895696, 34.665956870845896], [-77.40448617644785, 34.665950911430755], [-77.40591733208775, 34.66531865482542], [-77.40729276772265, 34.66471098340706], [-77.40744560195687, 34.66468877133772], [-77.40748881034652, 34.664779608403705], [-77.4089700948929, 34.66587679929812], [-77.40948297569982, 34.66639561191972], [-77.40953069524056, 34.66653558349887], [-77.40955757242367, 34.666622003244335], [-77.40967457427047, 34.66697708726933], [-77.40978788150016, 34.667320961171335], [-77.40979603944908, 34.667527160787756], [-77.40980420920357, 34.667826578358195], [-77.40977108872268, 34.66822065269339], [-77.40973954735244, 34.66836306944805], [-77.40973050697878, 34.66856494144673], [-77.40972815798585, 34.66868490785779], [-77.40985349719661, 34.66896207628797], [-77.40986322136362, 34.669074898037884], [-77.40996874962164, 34.66914347702112], [-77.41013203786105, 34.669221867233574], [-77.41054109801642, 34.669379593777435], [-77.41104865667829, 34.66947298368807], [-77.41114983588464, 34.66949003456092], [-77.4111960224645, 34.66946625467556], [-77.41124725272749, 34.66944988856583], [-77.41160115262315, 34.669380897800394], [-77.41184141378946, 34.669314352911435], [-77.41199224618349, 34.669272576859456], [-77.41206660527885, 34.669177532839456], [-77.41222135250419, 34.66898368218547], [-77.41224159347126, 34.668959217616916], [-77.41224751609184, 34.66894205694423], [-77.41237943008475, 34.66872789927446], [-77.4124348123523, 34.668500334784135], [-77.41276550479914, 34.668303902810266], [-77.41277758814088, 34.66829379830621], [-77.41301180287425, 34.66794801795147], [-77.41332763816713, 34.667941521205975], [-77.41422724399999, 34.667712589876544], [-77.41467476623015, 34.66767605747914], [-77.41669083689571, 34.66801137042775], [-77.41668494151126, 34.66807559388085], [-77.41699813152216, 34.6696685534178], [-77.41644055540628, 34.67056456557542], [-77.41555042140314, 34.67199487886392], [-77.4155177469709, 34.67204738234331], [-77.41550668213657, 34.67205876030929], [-77.41547655363644, 34.672088919849465], [-77.41432100335754, 34.67308212622757], [-77.41295726999428, 34.67314010636984], [-77.41264422264415, 34.67318059220556], [-77.41254517347215, 34.67316962950204], [-77.4123508338985, 34.67319081965425], [-77.41245938669928, 34.67334784354834], [-77.41255553334885, 34.673486918283615], [-77.41337063937334, 34.67466593268969], [-77.4132723490676, 34.674794043028854], [-77.41266163662164, 34.675536041650666], [-77.41255118051366, 34.67617193502001], [-77.41178782753775, 34.676138435555664], [-77.41165873100387, 34.676208320217654], [-77.41115313487023, 34.676117467587076], [-77.41114298563355, 34.676122823616055], [-77.41114745043893, 34.676137099440524], [-77.41156695772787, 34.676398273158], [-77.41168455840524, 34.67649509673639], [-77.41237566273173, 34.67695356184534], [-77.4127700892895, 34.677172052853244], [-77.41338781841452, 34.67802661673837], [-77.41354095420893, 34.67825277739799], [-77.41372141832939, 34.67831258873364], [-77.41433927429526, 34.6794777711936], [-77.41448002791716, 34.67964638008565], [-77.41441142467455, 34.680355817583894], [-77.41522572928947, 34.68090616079152], [-77.41542258101947, 34.68103853447684], [-77.4154834948841, 34.68107949573605], [-77.4155989997396, 34.68115716442888], [-77.4170610888217, 34.682140311388245], [-77.41756428232375, 34.68274584520047], [-77.41836995886413, 34.68337961827547], [-77.41883219270633, 34.68440435483318], [-77.41809470521665, 34.68523875478709], [-77.4174790155991, 34.686167340565056], [-77.41653666765298, 34.686295477864306], [-77.41518988759451, 34.68647258503446], [-77.41395726000518, 34.68635096942454], [-77.41303710244408, 34.68594407429375], [-77.41289319582683, 34.68679932794077], [-77.41246817152674, 34.687067268094694], [-77.41210449211809, 34.68741117945202], [-77.41174810704501, 34.68734083791136], [-77.41125432574242, 34.68724102593869], [-77.41113712607537, 34.68723769333578], [-77.41109857424073, 34.68726217155854], [-77.41108139447616, 34.68728361094277], [-77.41092873100551, 34.68735844184419], [-77.4109198118045, 34.68738057193761], [-77.41087287480302, 34.68749020673322], [-77.41088316292883, 34.6875614351075], [-77.41090494770742, 34.68760994574185], [-77.41090781882608, 34.68769830415816], [-77.41092220065272, 34.687787024182406], [-77.4109316024823, 34.68782199968936], [-77.4109457758334, 34.68789846932984], [-77.41107155229605, 34.688209965369715], [-77.41103249138382, 34.68838473107737], [-77.41106203600744, 34.68860350485819], [-77.41109195635353, 34.68864780061357], [-77.41124113955951, 34.6887372944977], [-77.41132038747034, 34.68881787669456], [-77.41140116582898, 34.68879328706291], [-77.41155036553359, 34.688749234354], [-77.41183624518642, 34.688665961067294], [-77.41190170321575, 34.688575741358044], [-77.41202067272825, 34.68861266366384], [-77.41212279486899, 34.688664124982566], [-77.41260756219376, 34.688799040034894], [-77.41278739982818, 34.688998756721915], [-77.41278254353952, 34.68928159919487], [-77.41261051148857, 34.68973500250465], [-77.41241325096189, 34.68998607076359], [-77.41250266702787, 34.69029105359911], [-77.41238228211238, 34.69085795158177], [-77.41229904476833, 34.6910643373962], [-77.41190818521032, 34.69121422152284], [-77.41172227863795, 34.69127475851218], [-77.41157067590028, 34.6912731676376], [-77.41145872431568, 34.69132944033015], [-77.4113274340031, 34.69137711440149], [-77.41123166771743, 34.69149077596395], [-77.41120771749274, 34.691521174517845], [-77.41130437934886, 34.69163946606687], [-77.41135916688518, 34.691660764365864], [-77.41144395685387, 34.69171075007889], [-77.41161589339053, 34.691848885064374], [-77.41173905397417, 34.691798268604096], [-77.41185729410638, 34.69202800436342], [-77.41214115883082, 34.69222725636694], [-77.41207154085838, 34.69266207596129], [-77.41207312087444, 34.69270198763912], [-77.41206740893973, 34.692877505423795], [-77.41233824248908, 34.69303774186912], [-77.412377350534, 34.69332817851039], [-77.41212218064626, 34.69342500241116], [-77.41209767913722, 34.693789444219675], [-77.41174750498666, 34.693982187282494], [-77.41162617438314, 34.69411004877752], [-77.4115322680298, 34.69415073862435], [-77.41127905449395, 34.69429047722534], [-77.41120565620295, 34.69431602428389], [-77.4111029158267, 34.69437647484135], [-77.41106687484798, 34.694460773493816], [-77.41109093255577, 34.69455544291378], [-77.4110424355329, 34.694651624487534], [-77.41102393564088, 34.69492503149689], [-77.41096915313395, 34.69507195026614], [-77.41102575926608, 34.69536787091487], [-77.41102648716587, 34.69537031448128], [-77.41102692671583, 34.69537172061483], [-77.41102696818427, 34.69537445255124], [-77.41109907514505, 34.69567651951797], [-77.41112253898817, 34.69577659618661], [-77.4111690507082, 34.695979617746765], [-77.41121979464134, 34.69618237622312], [-77.41132824595121, 34.69631581104383], [-77.41142753456215, 34.69654207129132], [-77.41143648402232, 34.69663323580998], [-77.41154727263724, 34.69688670866544], [-77.41157374884362, 34.69692743049569], [-77.41160288823086, 34.69697100944006], [-77.41161106847068, 34.697077800436254], [-77.41167900235891, 34.69732987541447], [-77.41176880454621, 34.69758816706555], [-77.4118061372078, 34.697723193519586], [-77.41183386576958, 34.69789048471864], [-77.41187294438595, 34.69797528451564], [-77.41194720357066, 34.69811070108826], [-77.4120585838513, 34.698248656713545], [-77.41209840733701, 34.698303331042716], [-77.41223462334254, 34.69843716169677], [-77.41234334255176, 34.698564143825465], [-77.4126580533038, 34.69901748345964], [-77.4124650997426, 34.69922251651311], [-77.41246358804482, 34.69923435600644], [-77.41245875368857, 34.699272219096606], [-77.41260413483168, 34.699449875891915], [-77.41269328832277, 34.69956895990554], [-77.4127199335413, 34.699598240283805], [-77.41294002315655, 34.69992832642393], [-77.41296138453671, 34.69996226074803], [-77.41318418055396, 34.70008709994168], [-77.41339582459008, 34.700184552517285], [-77.41355850782924, 34.70026241270282], [-77.4137783487862, 34.70024862443163], [-77.41405167666716, 34.700357330179], [-77.41476772438287, 34.7007435537759], [-77.41490774026475, 34.70077524810698], [-77.41498419346551, 34.70086105431473], [-77.41519170429507, 34.70090132884543], [-77.41526631972528, 34.700966546160046], [-77.41535804027797, 34.70096074329259], [-77.41551093724608, 34.70090561150166], [-77.41560473197578, 34.70088693185782], [-77.41566597392837, 34.700716200031515], [-77.41587326482266, 34.70076106490597], [-77.41603502510698, 34.700757895590186], [-77.41611974590835, 34.70071011973448], [-77.41620615158782, 34.70071818917208], [-77.41624691939474, 34.70073105001862], [-77.41625201523911, 34.70069402206397], [-77.41624652446447, 34.70057875798755], [-77.41623439899011, 34.700562714656336], [-77.41622531697506, 34.700544908436], [-77.41612518886852, 34.7003850928585], [-77.41580790718369, 34.70020023032588], [-77.41571923784772, 34.70018624582936], [-77.41566681548328, 34.70006999713243], [-77.41526367482982, 34.69985175929831], [-77.41519834094332, 34.69977168196186], [-77.41499197316699, 34.69951874282288], [-77.4147553566759, 34.69919206180286], [-77.41474312994946, 34.699176191290505], [-77.4147351890171, 34.699157717507525], [-77.41446082790614, 34.69852992697773], [-77.41441082495446, 34.69842210083018], [-77.41436353659142, 34.698227792553276], [-77.41422931131426, 34.69788983286138], [-77.41419030762245, 34.69762138097375], [-77.41419788052625, 34.697599285416885], [-77.41409802167148, 34.6974042542503], [-77.41402365749303, 34.69725878472598], [-77.41401678903465, 34.69724740996596], [-77.41401053130454, 34.69723350267001], [-77.41387641370022, 34.696927721358826], [-77.41385809783333, 34.69686725400289], [-77.41374679256896, 34.69660282206593], [-77.413828149187, 34.69621486222044], [-77.41411447685559, 34.69617234415475], [-77.41417549700265, 34.69603479723342], [-77.41430561387449, 34.69595965764215], [-77.41429480498041, 34.69579237500609], [-77.41433248478674, 34.69568950507063], [-77.41439400707658, 34.69564404832187], [-77.4145085037335, 34.69525687526716], [-77.41452662961179, 34.69519831849019], [-77.41444155692498, 34.69497373378175], [-77.41440237907122, 34.69485479223136], [-77.41424795159219, 34.69465713149715], [-77.41414974462435, 34.69453941128999], [-77.41412828749603, 34.694499857997286], [-77.41406582045877, 34.6941024831693], [-77.41388722811068, 34.69385641667218], [-77.41407761759324, 34.69363050264796], [-77.41436813056566, 34.69378521483468], [-77.41458251142146, 34.69388693894186], [-77.41492687058953, 34.69406893984956], [-77.41500492684919, 34.69415707621294], [-77.41523138349055, 34.69432665559951], [-77.41534282238632, 34.694462471450876], [-77.41544751037617, 34.69448426047635], [-77.41549285109583, 34.6944486952887], [-77.41553866190816, 34.69443415086614], [-77.41578013422546, 34.69428003679615], [-77.41582115163781, 34.694253422434535], [-77.41582479376532, 34.69424345214728], [-77.41597622883468, 34.694028121173794], [-77.41609999812744, 34.69394542925576], [-77.41632821614094, 34.69365600740679], [-77.41636091767433, 34.69360359421552], [-77.41636135757973, 34.69359120436216], [-77.4163547452053, 34.69356438051725], [-77.41611153565302, 34.69324906804032], [-77.41622580466355, 34.69265505883247], [-77.41656219003451, 34.69284789339653], [-77.41675804114742, 34.69277736045994], [-77.41713871840099, 34.69275748669059], [-77.41719435037915, 34.69274279371841], [-77.41722961454948, 34.69275621574887], [-77.4172742337648, 34.69276400098397], [-77.41774069912348, 34.692888163145675], [-77.41784905635065, 34.69283026436176], [-77.41799834287238, 34.6929082614116], [-77.41824555117533, 34.692965672729024], [-77.4184628877926, 34.69292369258096], [-77.41869403591602, 34.69306437340606], [-77.41901217151793, 34.69324008664782], [-77.41910771588657, 34.69333814404109], [-77.41927970222713, 34.69342285238557], [-77.41932148097334, 34.6934721397869], [-77.41941756269856, 34.69350009061884], [-77.41948832052758, 34.693501773389656], [-77.41957290934485, 34.6934788304298], [-77.41958510172108, 34.6934748100405], [-77.41958689021553, 34.69347409980383], [-77.41966711204236, 34.69342012019895], [-77.41975883357419, 34.69339447121462], [-77.41981933812679, 34.69329502974582], [-77.41994389021261, 34.69334234168253], [-77.42020258457131, 34.69327014535619], [-77.42025292137083, 34.69325599359237], [-77.4202892590668, 34.69325622592325], [-77.42042635193437, 34.693208643830964], [-77.42044835188851, 34.693201547891256], [-77.42046948186345, 34.69318712551906], [-77.42058305552533, 34.69312368407209], [-77.42059216495367, 34.69306270342006], [-77.42062374201862, 34.692928804637575], [-77.42059429476853, 34.69284807057144], [-77.42056063658339, 34.69273195101155], [-77.4205368107089, 34.692401063549084], [-77.42049407128931, 34.69231335821759], [-77.42039330065288, 34.69221867495739], [-77.42041388702702, 34.69202321695386], [-77.42040102775357, 34.69166228667571], [-77.420991971175, 34.69147248638119], [-77.42141207504962, 34.69145685271471], [-77.42145425007406, 34.69144561852731], [-77.42189171423993, 34.691447703544085], [-77.42209355002602, 34.6914510148618], [-77.42233220556217, 34.69141997434879], [-77.4224214901144, 34.69142507151662], [-77.4225116860676, 34.69133945626063], [-77.42260040576936, 34.69136046408781], [-77.42264732427385, 34.691329831562264], [-77.42271416728931, 34.691296545398615], [-77.42276846773979, 34.69125277920095], [-77.42276169059433, 34.69123006279486], [-77.42281476418174, 34.691173404320644], [-77.42283710815762, 34.691123583345565], [-77.42284187027009, 34.69111833647433], [-77.4228425821733, 34.69107729584728], [-77.42256620065581, 34.69100239967999], [-77.42252727541069, 34.69099096871218], [-77.42225655699622, 34.69088785821461], [-77.42208152895978, 34.69075826304999], [-77.42185518120947, 34.690060506437746], [-77.4217807497381, 34.689991028104366], [-77.4217911062214, 34.68991217043256], [-77.42184234498997, 34.68987105319589], [-77.42193594483297, 34.689781484826355], [-77.42248672508651, 34.68959640254775], [-77.42259821041108, 34.689611043950805], [-77.42267174635089, 34.689619248526505], [-77.42324462262995, 34.68968826211315], [-77.42353208732226, 34.689642093877026], [-77.42389693009211, 34.689648659584854], [-77.42397651037318, 34.6896208049791], [-77.42401362510758, 34.68957139302169], [-77.4242997050129, 34.689401303963834], [-77.42431134654407, 34.689381452759996], [-77.424450521257, 34.68916512473544], [-77.4244961395242, 34.688974550000125], [-77.4246229966075, 34.68880503061099], [-77.4246283688974, 34.68866824970124], [-77.42467671438303, 34.68852186717996], [-77.42489823166719, 34.68840318523128], [-77.42505835749934, 34.68825956609551], [-77.42542723674796, 34.68825314187447], [-77.42557750201497, 34.68827036748511], [-77.42569222802811, 34.688201731389825], [-77.42580762450068, 34.68812716239878], [-77.4258715592366, 34.68806081779741], [-77.42591111966442, 34.68799875228405], [-77.4260164630857, 34.68777715967377], [-77.42601105722694, 34.68771186565405], [-77.4259793116946, 34.68746352622744], [-77.42620039635668, 34.68727352926851], [-77.42621596357826, 34.68724752846935], [-77.42602286791607, 34.68698327114003], [-77.42596804575388, 34.68692085731758], [-77.42594276666149, 34.68689166780389], [-77.42598203687231, 34.68687251068762], [-77.4262326122277, 34.68657829847384], [-77.42631014758584, 34.68646108728809], [-77.42653807472158, 34.6863298298657], [-77.426647020979, 34.686174884238994], [-77.42666500401214, 34.68602612686201], [-77.42644409013471, 34.68581319442845], [-77.42629316908366, 34.68579737407428], [-77.42618692430042, 34.68575569606768], [-77.42600749941077, 34.68567734233501], [-77.42588307106372, 34.685600942854855], [-77.4257492045265, 34.68546271777462], [-77.4255015003776, 34.68506009308774], [-77.42548637716246, 34.68487373871175], [-77.42554462704803, 34.68470551044325], [-77.42573258568747, 34.68458184324152], [-77.42588205279796, 34.684509311679506], [-77.42593839192257, 34.68437429091825], [-77.42599430991454, 34.68431890482033], [-77.42603112227718, 34.684200028230734], [-77.42604477394048, 34.684131962171456], [-77.42606769927488, 34.68406494688573], [-77.42626156209289, 34.68369221573128], [-77.42627768786548, 34.68366038608024], [-77.42627988871655, 34.68365512286438], [-77.42628719206357, 34.683646785888264], [-77.42642459067446, 34.68342619779063], [-77.4264766918147, 34.683237866914574], [-77.42653512345537, 34.68318532117179], [-77.42651057720495, 34.68310718213272], [-77.42648859386581, 34.68290766207009], [-77.42646791216566, 34.682678610390155], [-77.42643314011028, 34.68259057340688], [-77.42647155454092, 34.68248156373783], [-77.4266167219833, 34.68246488407335], [-77.42681682320489, 34.682298205475945], [-77.42713323762705, 34.68227637574823], [-77.4272110182287, 34.68219484497975], [-77.42733919390987, 34.68218258173089], [-77.42737815452034, 34.6822987263537], [-77.427448771039, 34.682386740667084], [-77.42764939149164, 34.68263190503805], [-77.4277983335782, 34.682810324509305], [-77.4280145662205, 34.68276079092769], [-77.42826544338834, 34.68267238486427], [-77.4283930486031, 34.68263173635516], [-77.4285016712756, 34.68259413885221], [-77.42872418322327, 34.682425269370285], [-77.428857789739, 34.68232049265246], [-77.42905112140896, 34.6822119432635], [-77.42927579083283, 34.682133301704695], [-77.42963877334654, 34.68203457587745], [-77.42981975103149, 34.681972914272706], [-77.4299736418096, 34.68193603749377], [-77.43005585705832, 34.6819009172942], [-77.43016636467826, 34.68179176145743], [-77.43026620218339, 34.68169495117437], [-77.43039780711426, 34.681422310442095], [-77.43051604683208, 34.68122326719762], [-77.43064091828518, 34.680936948448256], [-77.43075926887147, 34.68074926761675], [-77.4308487404403, 34.68066388012916], [-77.43107231995324, 34.68035331543929], [-77.43109554755812, 34.68031956061748], [-77.43110315965286, 34.68031047735687], [-77.43113822109021, 34.680282992181375], [-77.431403323198, 34.68007492245114], [-77.431686264843, 34.67995535031679], [-77.43176282657687, 34.67991485793884], [-77.4318682233273, 34.67981704175992], [-77.43209839691927, 34.67971566501804], [-77.43224852757845, 34.679592933210145], [-77.43235221225618, 34.67932987700547], [-77.43204588276421, 34.67920293159831], [-77.43195374852212, 34.67904981271907], [-77.43179466244442, 34.67896388805066], [-77.43154837944397, 34.678816421349666], [-77.43152146745642, 34.67880080675828], [-77.43150625081478, 34.67879021483155], [-77.43147111172861, 34.67876197443052], [-77.43119712738073, 34.67847285792517], [-77.43116964243939, 34.67819719561293], [-77.4311795734553, 34.678100943658535], [-77.43175088030311, 34.67800780441663], [-77.43200384370915, 34.67806543308501], [-77.4320515759578, 34.67807581573703], [-77.43210746522757, 34.67809287261834], [-77.43233974636593, 34.678187123589254], [-77.43273386202665, 34.67827779073804], [-77.43286981474164, 34.678569702923625], [-77.43310179564467, 34.67836488010196], [-77.43341512702831, 34.678439804191655], [-77.4335420628149, 34.67846079177461], [-77.43362682078646, 34.67847543864035], [-77.434076746284, 34.6785551404768], [-77.4341362173438, 34.678560442302604], [-77.43415522329491, 34.67855613823086], [-77.43417667828737, 34.678568299998624], [-77.4341705804015, 34.67858795670856], [-77.43428943453625, 34.6788109288872], [-77.43452582786097, 34.67927125039965], [-77.43449731439246, 34.67932724067786], [-77.43457286402588, 34.67932741702286], [-77.43460490592275, 34.67932667461098], [-77.43511355623855, 34.679673316780566], [-77.43532083343962, 34.679749299646154], [-77.43540283095518, 34.67978083251482], [-77.43548802587875, 34.679806466935915], [-77.43569639360416, 34.67987352463281], [-77.43590824682107, 34.67996181954084], [-77.43604482810224, 34.6800204277866], [-77.4362509391382, 34.6801715522233], [-77.43643277458601, 34.680304876327014], [-77.43651510594813, 34.680365882329376], [-77.43665849998118, 34.680440529722155], [-77.43680632508305, 34.68046668512911], [-77.43712645325475, 34.68045774761204], [-77.43745898527683, 34.68042550637896], [-77.43757112167346, 34.68043690304271], [-77.43786927053323, 34.680597996614864], [-77.43800897002093, 34.68073932784183], [-77.43833448043624, 34.68116216462553], [-77.43840209804945, 34.68126836070656], [-77.43846524785955, 34.68137716308441], [-77.43870551659612, 34.68154350687621], [-77.43902090420002, 34.681671403822534], [-77.43955036802674, 34.68158731715624], [-77.43963823535911, 34.68157269787781], [-77.43969493045384, 34.68155636054732], [-77.43982856460771, 34.68156565332058], [-77.43980815631541, 34.681677454549444], [-77.43990019538965, 34.681954395590395], [-77.43990359729519, 34.68198073301039], [-77.43990925658697, 34.682015698831464], [-77.43989131837526, 34.68226557327928], [-77.43991984676583, 34.68242035310077], [-77.43993310172515, 34.682839224087786], [-77.43994607806503, 34.682855807286494], [-77.43994529694086, 34.68290624921563], [-77.43994347110986, 34.68330329981731], [-77.43991243253396, 34.68339103778115], [-77.4399352730349, 34.68355362240011], [-77.43997240982193, 34.6837376237102], [-77.44015966985347, 34.68403652276996], [-77.44019932249111, 34.684089298728935], [-77.44022751220425, 34.68414604368783], [-77.44042828846035, 34.6846894809774], [-77.44047441263322, 34.68486726687205], [-77.4405287601212, 34.68500412897478], [-77.44050780337544, 34.685237108342264], [-77.44050327418535, 34.685274737673815], [-77.44050299738245, 34.685409140919], [-77.44064894957981, 34.685687214658046], [-77.44078639225818, 34.68569244625313], [-77.4408606968707, 34.685598816003214], [-77.44098439211159, 34.685442949707536], [-77.44104470188502, 34.68536695401677], [-77.4410642319167, 34.685290641816046], [-77.4410700614245, 34.68519338315422], [-77.44105525744504, 34.68507118478875], [-77.44106267570531, 34.68491128227162], [-77.44108197704338, 34.684680197708616], [-77.44108557245013, 34.68461212200341], [-77.44110902669236, 34.684368450112714], [-77.4411387242512, 34.68414352498536], [-77.44114259505754, 34.68410066832632], [-77.44115525826483, 34.68405229221114], [-77.44121271595338, 34.6838456656665], [-77.44126916542533, 34.68364265987698], [-77.4412825846145, 34.68331105683541], [-77.44129124178076, 34.683187036496946], [-77.441303170992, 34.682798692223955], [-77.44133311595112, 34.682769687325965], [-77.44171029659168, 34.68256567595036], [-77.44194269579104, 34.68242377971201], [-77.44195700787705, 34.682372020114315], [-77.44202396473158, 34.682365464355705], [-77.44206034215125, 34.68241953312015], [-77.44206618398363, 34.68246695458398], [-77.44251286016072, 34.683123424988594], [-77.4428266905946, 34.68379345253222], [-77.44286076855808, 34.68386282692774], [-77.44286504464168, 34.68386920794914], [-77.44286472135245, 34.68388969304414], [-77.44292371911037, 34.68444386754568], [-77.44280835722978, 34.68451114347282], [-77.44275376408925, 34.68480848833805], [-77.44273047417039, 34.684935340156045], [-77.44271834070436, 34.68511167753328], [-77.44271696437698, 34.68527026251768], [-77.4427543492715, 34.68537931929418], [-77.4427876535952, 34.68546395549247], [-77.44283928949267, 34.68553241565353], [-77.4429156880123, 34.68563370705359], [-77.44297748395391, 34.6857156375837], [-77.4431435466577, 34.685806613652744], [-77.44313725158986, 34.685636584376404], [-77.44322966513496, 34.6855026226136], [-77.44331138907886, 34.68541794777607], [-77.44333340363252, 34.685369257496774], [-77.44341720158025, 34.68530297648974], [-77.44350291858913, 34.68520539132383], [-77.44363828015352, 34.68511988400152], [-77.44382455823559, 34.68500221202126], [-77.4439682138384, 34.684911464684355], [-77.44407260187933, 34.68484552218104], [-77.44413317989442, 34.684807254753586], [-77.44421565895843, 34.68475765604158], [-77.4443010200178, 34.68470774191347], [-77.44460245327402, 34.684527983617855], [-77.44463639963551, 34.68450822684455], [-77.4446624693426, 34.684492708587165], [-77.44489824159936, 34.6841885295691], [-77.44517632674828, 34.68411332150644], [-77.44526922432956, 34.684047205596414], [-77.44538064808735, 34.684052682228135], [-77.44558495888839, 34.683976661972665], [-77.44563452590414, 34.68389659697463], [-77.44578998612064, 34.68376882371794], [-77.44613729083996, 34.68365188631763], [-77.44633912616827, 34.68355288694345], [-77.44648512177164, 34.68345280754179], [-77.44690919245525, 34.683198283096765], [-77.44700996191423, 34.68315400521308], [-77.44706396410903, 34.68309613626332], [-77.44764652731196, 34.68286421034784], [-77.44772111427412, 34.682821016927555], [-77.44781963611226, 34.6828012787267], [-77.448331530757, 34.682711129560815], [-77.44860054504174, 34.68276303109032], [-77.44938075296518, 34.682934321460465], [-77.44953512078428, 34.68298060692776], [-77.4498108184747, 34.683245685168416], [-77.45003024140945, 34.683484369477], [-77.45009991812069, 34.68352686474202], [-77.45053477613725, 34.68368116469932], [-77.45060880562771, 34.68369948919503], [-77.45099185551899, 34.68368053041672], [-77.45127969482314, 34.683595220711545], [-77.45171547400932, 34.68360405610963], [-77.4518448789721, 34.68357936403102], [-77.45193606839372, 34.683541159479695], [-77.45199788625918, 34.68362715031961], [-77.45250491884505, 34.68378989358554], [-77.45259779292988, 34.68382305908408], [-77.45292822651322, 34.68385454312385], [-77.45312849589197, 34.68384929513977], [-77.45337559304168, 34.68383803024185], [-77.4534578664304, 34.68381816606987], [-77.45367095952146, 34.68372853062539], [-77.45372316507914, 34.68365845653535], [-77.45393293314756, 34.68328294454622], [-77.45394413494954, 34.683265004167474], [-77.45394033316954, 34.68325734134565], [-77.45392796717331, 34.68324560553529], [-77.45362891690382, 34.68294602025684], [-77.45349088874154, 34.68259548958276], [-77.4534756783418, 34.68254226755056], [-77.45346625144319, 34.6824911732386], [-77.45342052591883, 34.68214018405334], [-77.45342882545276, 34.68196688586881], [-77.45329532653284, 34.68146438236088], [-77.45329465351865, 34.6813609841982], [-77.45328477979041, 34.68130401106668], [-77.45296580722385, 34.68068703576986], [-77.45294301625073, 34.68057551660172], [-77.45290004897507, 34.68047512991864], [-77.45264021756122, 34.68011274292459], [-77.45250930065012, 34.67996060650848], [-77.45216347143698, 34.67954624456337], [-77.45202853980388, 34.67912067572204], [-77.4522889587843, 34.6788313117692], [-77.45237745816887, 34.67862326620685], [-77.45244097599344, 34.67850303070284], [-77.45261702673758, 34.678087631495316], [-77.45278667191862, 34.67766597639354], [-77.45283839043626, 34.67754563701065], [-77.45291301766736, 34.67726896679598], [-77.45296922451405, 34.67697199706655], [-77.4529746224633, 34.6768738811333], [-77.45296706399569, 34.67673547304841], [-77.45295476662972, 34.67651027823445], [-77.45294570902772, 34.676344404200705], [-77.45293491028207, 34.67614667445172], [-77.45291122917345, 34.67571297709341], [-77.4543342124385, 34.67500929807812], [-77.45438368442375, 34.67495638504875], [-77.45441852847945, 34.67498526465888], [-77.45445159907955, 34.675012673794654], [-77.45508156470845, 34.675534796882744], [-77.45529893320855, 34.675714953417334], [-77.45573833327032, 34.676086111568814], [-77.45614496762323, 34.676510059060064], [-77.4561596566622, 34.67684842656962], [-77.45619937322097, 34.677431758798534], [-77.4561518185684, 34.67756763045067], [-77.45601324956665, 34.67803598258358], [-77.45595270800538, 34.67824060229273], [-77.45584717318752, 34.67859730053607], [-77.45577106698315, 34.678795923322745], [-77.45574233101587, 34.679039101968584], [-77.45571631235364, 34.6791709271041], [-77.45567797864933, 34.67924207827414], [-77.45574286336657, 34.6792876274676], [-77.45584789327977, 34.679378277824355], [-77.45597256322445, 34.67946418479041], [-77.45619812336881, 34.67964771144059], [-77.4564359717427, 34.67981240191694], [-77.45685244938048, 34.680199730764954], [-77.45686163130394, 34.680206754824724], [-77.45687901561408, 34.680220053422424], [-77.45734304819442, 34.68053297111929], [-77.45822299541302, 34.68128365375579], [-77.45822524845799, 34.68128547716735], [-77.45870331907004, 34.682528787348154], [-77.45880747292755, 34.68272868794926], [-77.45811807689066, 34.684642675684806], [-77.45807994979718, 34.684797154828395], [-77.45759155758752, 34.68677571086538], [-77.45695134926962, 34.68870147179672], [-77.45691436961263, 34.68887234987093], [-77.45432418703562, 34.69010584947946], [-77.45417824155477, 34.69038184803045], [-77.45379835102062, 34.690399275457025], [-77.45311877000074, 34.69030195818861], [-77.4511800217216, 34.6905900152857], [-77.45061143630245, 34.6905342312774], [-77.44992222882829, 34.690507655539854], [-77.44971500096905, 34.690564584490005], [-77.44941244107582, 34.69062525675001], [-77.44930701746338, 34.69064549946114], [-77.44923727128842, 34.690660383443905], [-77.44913344046849, 34.69080724827663], [-77.44915872312087, 34.69093207554346], [-77.44919698733125, 34.69104668193112], [-77.44937303393496, 34.69112714330823], [-77.44942717949917, 34.69111175894512], [-77.44958969398158, 34.69110738351205], [-77.44978166968488, 34.69099385461373], [-77.44995444118855, 34.69095581903649], [-77.45068745165585, 34.69131719972229], [-77.4509010579928, 34.69155501207604], [-77.45161138214011, 34.69251181345305], [-77.45169262924878, 34.69268319725928], [-77.45177722576301, 34.692957578956744], [-77.45245669748505, 34.69392524721334], [-77.4523949544423, 34.69417565821405], [-77.4524171021754, 34.6944704160862], [-77.45256665148972, 34.69466031471208], [-77.45265905437728, 34.69495824449727], [-77.45271383325903, 34.69513311899083], [-77.45274247729438, 34.69516049743829], [-77.45301477812058, 34.69525614196604], [-77.45303331307888, 34.69526282783702], [-77.45316095332139, 34.6952893699658], [-77.45348789334541, 34.69523384252266], [-77.4536878992552, 34.69521524702509], [-77.45391608051898, 34.69532622569146], [-77.45429470059034, 34.69533297710419], [-77.45440918428379, 34.69524399460456], [-77.45502494916177, 34.69502362203368], [-77.45515095424727, 34.69496086556371], [-77.45530570426446, 34.694920848986506], [-77.45624098636665, 34.69375175983528], [-77.45802357797828, 34.693517296464776], [-77.4600289373301, 34.69455926264056], [-77.46024904779556, 34.69468618009318], [-77.46076989918805, 34.69517058136972], [-77.46232331056484, 34.696378455778984], [-77.46285006005675, 34.69695263263605], [-77.46339820212292, 34.697748313608955], [-77.4641995666781, 34.69875632903951], [-77.46483536366853, 34.69969510159417], [-77.46600181532, 34.70089372047064], [-77.46607424492976, 34.70096349980512], [-77.46611267994822, 34.701006966780575], [-77.46673345253336, 34.70114927939005], [-77.46832247341126, 34.70152689550964], [-77.46852443595058, 34.70153189590649], [-77.46887860456037, 34.70157801930224], [-77.47065756211236, 34.703021405402026], [-77.47190760118373, 34.70388450465571], [-77.47151514246232, 34.70505518059942], [-77.47159793783933, 34.70687519348985], [-77.47151545235356, 34.70762010547607], [-77.47102764954387, 34.70935655125972], [-77.46955984902581, 34.71200861639129], [-77.47158710272, 34.714023536748556], [-77.46994614798314, 34.71541905341736], [-77.47237916851927, 34.71481079182904], [-77.47274178514849, 34.71472013202435], [-77.47323141374599, 34.71459771041407], [-77.47509871271232, 34.71427151276511], [-77.47652440129856, 34.714917761842024], [-77.47735574530664, 34.7153334648265], [-77.47884290295681, 34.71527476802668], [-77.47863154783548, 34.716483092859995], [-77.47788342137605, 34.71713606709653], [-77.47752400901095, 34.718332188336674], [-77.47646776238037, 34.71840794135224], [-77.47591008442343, 34.71828580991252], [-77.47525339382598, 34.71817402850846], [-77.47480297641783, 34.71808484755347], [-77.4740322972966, 34.71796340306704], [-77.47282054471711, 34.71779031679297], [-77.47163296651212, 34.717393820383606], [-77.46966496231134, 34.71567464027087], [-77.46731700077217, 34.71700405425316], [-77.4666455337963, 34.71690812030814], [-77.46247326265998, 34.71588877116356], [-77.46183258296807, 34.71581863830246], [-77.46060115431138, 34.715749775658665], [-77.4587745907696, 34.71402047876948], [-77.45808750709766, 34.71322774801282], [-77.45784401373402, 34.711877461339455], [-77.4561971659554, 34.71312011440062], [-77.45628196290733, 34.71398159156437], [-77.45562204019558, 34.71515518123172], [-77.45572972068949, 34.71683456824291], [-77.45582386939073, 34.71746165149529], [-77.4557575165573, 34.717772058644364], [-77.45452180094992, 34.72147874579491], [-77.4538290977354, 34.72568971550631], [-77.45382047340104, 34.72570572681128], [-77.45382627620276, 34.72572127888213], [-77.45383250383077, 34.725753383635855], [-77.45406799576911, 34.726079810078645], [-77.45740815293351, 34.73112470500704], [-77.45743329038554, 34.73135861577187], [-77.45745143095098, 34.73144583201337], [-77.45842094470225, 34.73318733781528], [-77.45910563895666, 34.73649533728586], [-77.45712137923003, 34.73704470254328], [-77.45585172364468, 34.73650784222403], [-77.4548152326424, 34.73723299763423], [-77.45502461477929, 34.737721326123875], [-77.45425994388603, 34.738352205174394], [-77.45404308514783, 34.739199299675256], [-77.45358903074828, 34.74010625570172], [-77.45356509979403, 34.74015035296672], [-77.45354289041137, 34.74017119807372], [-77.45348756546613, 34.74024906562774], [-77.45329184794078, 34.74050875869335], [-77.4532447202954, 34.74059745676589], [-77.45320661063903, 34.74071229836174], [-77.45310631527198, 34.74095327998849], [-77.45293513994719, 34.74104833196342], [-77.45279301925463, 34.74133134607885], [-77.45272000830673, 34.7415321931852], [-77.45279203022768, 34.74177819425287], [-77.45298352861221, 34.74199196850898], [-77.45304005497067, 34.742121116660236], [-77.45337123617081, 34.742318615069976], [-77.45381045707003, 34.74269246107792], [-77.45399329267269, 34.74293466073904], [-77.45407682182702, 34.74347416750089], [-77.4542389326688, 34.7437396150127], [-77.45435643260286, 34.74389617872534], [-77.45456439183452, 34.74416355464354], [-77.4548366671975, 34.74445281027724], [-77.45493847990898, 34.74454289047118], [-77.45522686866681, 34.74477994494187], [-77.45535910690039, 34.74486351295173], [-77.45555678038761, 34.744953914610186], [-77.45591894753956, 34.74514489283506], [-77.45614113519962, 34.745291246222315], [-77.45645403901975, 34.74551187158369], [-77.456537333332, 34.74557232913025], [-77.45668172641388, 34.74571060101687], [-77.45685907862845, 34.7458844851992], [-77.45700513162717, 34.74582352743947], [-77.45736974051574, 34.74567134914734], [-77.45773434801508, 34.745519169815196], [-77.45846355884603, 34.74521480803091], [-77.45919276411999, 34.74491044208678], [-77.45992196383695, 34.744606071982936], [-77.46138034659963, 34.74399731929676], [-77.46429704543934, 34.74277976401462], [-77.4672136553632, 34.741562142194134]], [[-77.35907680736986, 34.6887943950382], [-77.36031341240061, 34.68906968230726], [-77.36082692567632, 34.68918399415629], [-77.36259863081621, 34.68992937991317], [-77.36319295463895, 34.6882289309178], [-77.36334192095184, 34.6880353965776], [-77.36328956316049, 34.68677874778676], [-77.36284540089629, 34.686353693840935], [-77.36283934929675, 34.686336865720406], [-77.36282091413017, 34.68633049413132], [-77.36226527313995, 34.68629027214513], [-77.36183548631104, 34.686321168348904], [-77.36165509294642, 34.686330403783664], [-77.36140634056162, 34.686319763631325], [-77.36044243458555, 34.68638411324355], [-77.35975874659924, 34.68634286910116], [-77.35931393982527, 34.6861478235803], [-77.35872052058812, 34.68649189150558], [-77.35861370648551, 34.68649820258656], [-77.35842607629506, 34.686580244712026], [-77.35821362538941, 34.68668078991285], [-77.35811368340796, 34.68682069992748], [-77.35796983897865, 34.68699690261995], [-77.35795283819782, 34.68708785011815], [-77.35791320160982, 34.68736922642947], [-77.3579799113873, 34.68748290499755], [-77.35809412015945, 34.687624183761315], [-77.35831053676866, 34.68792487759819], [-77.35847291415857, 34.68812105000731], [-77.35857321055089, 34.68869989098343], [-77.35875653122957, 34.68869117571832]], [[-77.43488306259681, 34.70262215160015], [-77.43395553094011, 34.701873051952646], [-77.43416078863628, 34.70094670253675], [-77.43397657293075, 34.700078693724535], [-77.43392796017332, 34.69974720231084], [-77.43364650600114, 34.69932365823428], [-77.4333076936573, 34.6992063835976], [-77.43313016087956, 34.69934953861025], [-77.43297733176196, 34.6994148363958], [-77.4325719464745, 34.6995341863736], [-77.43240722201011, 34.69966351417713], [-77.43211681018234, 34.699673021869785], [-77.4318557641067, 34.69979434683448], [-77.431579915202, 34.69980690797337], [-77.43146123749281, 34.699789237054944], [-77.4312057057765, 34.69982597050745], [-77.43100450445019, 34.6998431671195], [-77.43084917432245, 34.70010813747771], [-77.43053121093794, 34.699942035002785], [-77.43017681443112, 34.69987884740641], [-77.42991945634783, 34.6998412784529], [-77.4296936210293, 34.699714997440864], [-77.42936078585242, 34.69982748818005], [-77.42956135221816, 34.70013567810853], [-77.42982397067284, 34.700171246447916], [-77.42995612931246, 34.70041732526389], [-77.430220980206, 34.70057699050349], [-77.43035602378944, 34.700547439773985], [-77.43061847663301, 34.70058731463796], [-77.43094851235026, 34.700714793443176], [-77.43119516080739, 34.70102794976604], [-77.43134376516397, 34.701177424944454], [-77.43104514074695, 34.70192407543648], [-77.43084461979174, 34.702023505600145], [-77.4305488766841, 34.702095841671934], [-77.43029890029267, 34.70220000328582], [-77.42975372005318, 34.702628794050334], [-77.42967480235474, 34.702675579006375], [-77.42965704000137, 34.702726396555725], [-77.42962385125742, 34.70278790821224], [-77.42950949077087, 34.702954337696404], [-77.42959227510042, 34.70318667702737], [-77.4296612380695, 34.7032186926729], [-77.42969778792968, 34.70329970712852], [-77.4298736760627, 34.70357643207407], [-77.42986145725045, 34.70363646508139], [-77.43002650762269, 34.70390096449921], [-77.4300552628304, 34.703947045522], [-77.43010642019074, 34.70400164553425], [-77.43027435734206, 34.704151914947566], [-77.4304922222405, 34.70421109661879], [-77.43056849046843, 34.704242931027075], [-77.4306709282738, 34.70430370964698], [-77.43158720730112, 34.704519374583356], [-77.43170599029155, 34.704499798184244], [-77.43177687698622, 34.70449692754767], [-77.43185913428357, 34.70453347380858], [-77.43197813487261, 34.70465605077185], [-77.43275654509748, 34.70505176610609], [-77.43261144633702, 34.705979625064224], [-77.43261427103282, 34.70599656458397], [-77.43259944075876, 34.70601010937581], [-77.4326106144973, 34.706045703465264], [-77.43272845745122, 34.70684905365154], [-77.43285962726014, 34.707200448459155], [-77.43298455905818, 34.7076349657241], [-77.43338118869345, 34.70781287218161], [-77.43391704951736, 34.7081386287875], [-77.43392680654698, 34.708142398406906], [-77.43394055850793, 34.70815173689292], [-77.43428696390072, 34.70843065691907], [-77.43442407550884, 34.7086390318249], [-77.43486935553456, 34.70863401607633], [-77.43519375432042, 34.708704168154], [-77.43576992951151, 34.70841811638896], [-77.43589954757056, 34.708362048207434], [-77.43600665819949, 34.70830058670871], [-77.43615713500046, 34.708096599098546], [-77.43646315353598, 34.706223982983325], [-77.43644182255413, 34.70609579081234], [-77.43630231946872, 34.70446482054162], [-77.43564095362264, 34.70370036941556]], [[-77.39624027610157, 34.58772024232564], [-77.39656537144496, 34.587705283301105], [-77.39663433120317, 34.58771462812854], [-77.39668160411016, 34.58771188322443], [-77.39697832859923, 34.587666074821534], [-77.3970283895732, 34.58764903484547], [-77.3972414707107, 34.587487051565006], [-77.3974224583967, 34.58736910860535], [-77.39750789820569, 34.587311095803514], [-77.39780309668919, 34.587190917138635], [-77.39781651989509, 34.587186856082816], [-77.39783928973155, 34.58719576685164], [-77.39807572049692, 34.58728241469266], [-77.39821056565265, 34.58733183279824], [-77.39845284212711, 34.58724624959544], [-77.39860461570342, 34.587397392385036], [-77.39886893725676, 34.587307472947316], [-77.3989986740487, 34.58723063748463], [-77.39938236155491, 34.586937429714354], [-77.39939273461607, 34.58692678805321], [-77.39958305959796, 34.586700136076374], [-77.39959576660776, 34.58669906276532], [-77.39960580174638, 34.58672135916906], [-77.39943695398632, 34.58694072922636], [-77.3994607476967, 34.587010579879674], [-77.39970084914113, 34.58732722739657], [-77.39939271417629, 34.587644540368075], [-77.39928402281214, 34.58769483371742], [-77.39911620036575, 34.58770950913564], [-77.39899866051246, 34.587638514140224], [-77.39880727086629, 34.58788072646804], [-77.39872388905312, 34.58802129187917], [-77.39879995663276, 34.588306355171305], [-77.39873230982725, 34.588603056687454], [-77.39866616636756, 34.58881660487336], [-77.39850200374445, 34.58888441256783], [-77.3982104950581, 34.58901145696238], [-77.39806899960917, 34.58910851052104], [-77.39781642246177, 34.589272621874045], [-77.39778866477054, 34.589301401055806], [-77.39759591352592, 34.589516210999605], [-77.39742233854183, 34.5897091741148], [-77.39735969068182, 34.58978785901946], [-77.39720526633714, 34.590000847577635], [-77.39716159376465, 34.59009734585633], [-77.39709203431559, 34.59025104365412], [-77.39708925514404, 34.59031718174816], [-77.39708465026325, 34.590615888091776], [-77.3970903301729, 34.59067586204197], [-77.39710036680191, 34.590752148256875], [-77.39717562548424, 34.59092930149181], [-77.3972252417011, 34.59094941894556], [-77.39730372504326, 34.590985090304414], [-77.39738197488467, 34.591014944521405], [-77.39742227358596, 34.59101090350698], [-77.39751839228633, 34.59093512773871], [-77.3976476656953, 34.59083829034081], [-77.39781635769398, 34.59069820200059], [-77.39788452986812, 34.59063473596353], [-77.39816071282334, 34.59052144594337], [-77.39821043410285, 34.59050222809611], [-77.39833925127925, 34.59049568850605], [-77.39858598794909, 34.5904800396823], [-77.39860450167114, 34.59050115992934], [-77.39869028137335, 34.59053746659125], [-77.39899856438024, 34.59065590122442], [-77.39925913515734, 34.59078754763578], [-77.3991357581724, 34.59095317149459], [-77.39899855327644, 34.59101746049256], [-77.39873443451202, 34.59128782198024], [-77.39866247261227, 34.591360694679096], [-77.39870629988039, 34.591606735073825], [-77.3987731064328, 34.591706816222086], [-77.39880149482877, 34.59173812416034], [-77.3988770145451, 34.59182274420933], [-77.39899852429265, 34.59197837842627], [-77.39911987688035, 34.59208136025882], [-77.39923133153789, 34.59223902037139], [-77.39937169680398, 34.59246960286466], [-77.39939258596878, 34.592486977210356], [-77.39965187631353, 34.59257439420115], [-77.39978666099802, 34.59257015465133], [-77.40008337390908, 34.59268660025028], [-77.40018073577214, 34.592716158370145], [-77.4002146056713, 34.59273607188204], [-77.40024041593136, 34.59276883927163], [-77.40043154063216, 34.59301148059639], [-77.40054071705406, 34.593150085154626], [-77.40042144415365, 34.59333252362501], [-77.40027273362843, 34.59361332459591], [-77.40023255680725, 34.593674967251275], [-77.40018072136061, 34.59369384752692], [-77.40001166902412, 34.59386327807812], [-77.39999959687499, 34.59388217136911], [-77.39998367477277, 34.59402134772445], [-77.3999774020678, 34.59408050904769], [-77.39998367335525, 34.59410730548476], [-77.40004927575822, 34.594211746315736], [-77.40018071245026, 34.59432433206655], [-77.40027343334151, 34.59436247646955], [-77.40039298747493, 34.594673824236374], [-77.40048896029376, 34.59485584943997], [-77.40052810876725, 34.5949004960663], [-77.40057479055744, 34.595126991070146], [-77.40067286262021, 34.595572801691155], [-77.4006670223701, 34.595679306950785], [-77.40065250903177, 34.595765136618674], [-77.40057478364155, 34.59595423988354], [-77.40050700563151, 34.596126968565486], [-77.40044026476181, 34.59628151775799], [-77.40040548588023, 34.59635390292606], [-77.40039556687327, 34.59637454729408], [-77.40037773268678, 34.596394302994966], [-77.40032136147094, 34.59642677067611], [-77.40018068367922, 34.596516185792346], [-77.39997027936707, 34.59662898000228], [-77.40018068160889, 34.59668500973474], [-77.40026080303703, 34.59667338193803], [-77.40037772973582, 34.59669125214293], [-77.40046447232596, 34.59665113001398], [-77.40047625419808, 34.596648773889775], [-77.40052419494384, 34.5966035583437], [-77.40057477892664, 34.59655782478854], [-77.40058418006187, 34.59655053623722], [-77.40059241031894, 34.59653922063179], [-77.40078870186491, 34.59631679115434], [-77.40096887594905, 34.59611646588619], [-77.40099617965713, 34.5960858048594], [-77.40102355448109, 34.596052439765664], [-77.40119359349113, 34.595845429191975], [-77.40136296873574, 34.595581971628754], [-77.40136417454102, 34.595580017606366], [-77.40136502049891, 34.595578596468975], [-77.40137605717926, 34.59556290307404], [-77.40154436848368, 34.59532357612867], [-77.4015600132433, 34.59530133025491], [-77.40168461521625, 34.59510790752452], [-77.40171295817254, 34.59505630790679], [-77.4017570561166, 34.59495570843862], [-77.40189206782671, 34.594653398711785], [-77.4019777410771, 34.594454222864115], [-77.40213389296734, 34.594193929717676], [-77.40214115493674, 34.59418212817394], [-77.40215113616692, 34.59416469351197], [-77.40231282405499, 34.59391773586432], [-77.40245325403521, 34.59372327086366], [-77.40263727446114, 34.59337133120242], [-77.40279866293156, 34.59297577849652], [-77.40285171574352, 34.59281662198133], [-77.40286585447795, 34.59273547587201], [-77.40282368961591, 34.592396090777704], [-77.40277776153992, 34.59215214848461], [-77.4027443971619, 34.591982957532764], [-77.40269230016558, 34.591724399444274], [-77.4026589410959, 34.59144815046172], [-77.40241875985834, 34.591180796892466], [-77.40239717583894, 34.59091879320149], [-77.40215110576172, 34.59048056692705], [-77.40208608347805, 34.59037965256435], [-77.40203447288357, 34.590261438495304], [-77.40215110373194, 34.59018449722461], [-77.40224995927295, 34.590249495932625], [-77.40261149014039, 34.58995071852414], [-77.40274233104813, 34.58964794268948], [-77.402829399088, 34.589423238435174], [-77.4028620751553, 34.589335403429885], [-77.4029392187278, 34.589208018885884], [-77.40302122878896, 34.588970980127584], [-77.40301345059177, 34.588627517028826], [-77.40300924815546, 34.58854813343907], [-77.40300815530534, 34.58847400323449], [-77.40297581028472, 34.58812838329539], [-77.40297890761423, 34.58808515515891], [-77.40301234137334, 34.587777345201914], [-77.4030592914088, 34.587691760284635], [-77.40320543971075, 34.587532962649696], [-77.40333324268875, 34.58733427525712], [-77.40337610178496, 34.587267644847834], [-77.40339676161221, 34.587218482981996], [-77.40344127690256, 34.58709565061867], [-77.40348243444416, 34.58699383114285], [-77.40349710118375, 34.58695598633984], [-77.4035657625676, 34.58676951738451], [-77.40358862924734, 34.58661682725683], [-77.40372727130506, 34.586345020044135], [-77.40373588880617, 34.58632038917371], [-77.40379708387096, 34.58596221218288], [-77.40381458345416, 34.58588445563084], [-77.40381849254935, 34.58578558813122], [-77.40384073907754, 34.58545610483759], [-77.40383920619622, 34.58533569293533], [-77.40384224340147, 34.585243599764496], [-77.40380892317549, 34.58512412909911], [-77.40379190139735, 34.58503857709222], [-77.40377646626783, 34.584987764541076], [-77.40372723762533, 34.5848312429286], [-77.4035917360937, 34.584642889011754], [-77.40363018380467, 34.58453277174837], [-77.40357674633351, 34.58438262047086], [-77.40335133311476, 34.58425300802704], [-77.40333318784481, 34.58423160016667], [-77.4030233660708, 34.584209596479226], [-77.40293915030834, 34.58418190898787], [-77.40284779635984, 34.58422724171931], [-77.40254511378932, 34.58422198421469], [-77.40222763172807, 34.58433268556818], [-77.40215107705424, 34.58436371531415], [-77.40210347771779, 34.584381801763186], [-77.40187942927318, 34.584465421424774], [-77.40136299902527, 34.584706092785865], [-77.40100310509868, 34.58459187692726], [-77.40070678184273, 34.58449255852145], [-77.40057492427377, 34.58442803835915], [-77.40031148583904, 34.58440782069807], [-77.40009670685481, 34.58438879449524], [-77.39978684840378, 34.58438860352983], [-77.39944240367684, 34.58433906152883], [-77.39899877113021, 34.58439988194649], [-77.39861276121633, 34.58452085629395], [-77.39821068901944, 34.584507637307574], [-77.39789576409926, 34.58470090209751], [-77.39756550208226, 34.58493387852285], [-77.39742258207166, 34.585031720032525], [-77.39737383928451, 34.585063000435696], [-77.39730521899699, 34.585125417584315], [-77.39689298549041, 34.58546343104809], [-77.3966344573038, 34.58568183050048], [-77.39630012678444, 34.58575933302939], [-77.39615801900113, 34.58580425353285], [-77.39584635422055, 34.58585783814476], [-77.3956206301857, 34.58597437768452], [-77.39545229527988, 34.586025050880444], [-77.3952255222499, 34.58609433470639], [-77.3950582358403, 34.58617815993928], [-77.39497872822975, 34.58622450989576], [-77.39486120112244, 34.5863076295641], [-77.39484468668425, 34.58632950713354], [-77.3948231331754, 34.58650390277903], [-77.39481966032366, 34.58659013560133], [-77.39481056796038, 34.5867589997925], [-77.3948024790659, 34.58690923568092], [-77.3947705275011, 34.5871893467319], [-77.39472672876836, 34.587263148802414], [-77.39466408610224, 34.587369510969516], [-77.39456509374546, 34.58753690644907], [-77.3943770050267, 34.58797993543168], [-77.39438072296346, 34.58809471474516], [-77.3946640150503, 34.58820692312544], [-77.39482119463054, 34.58828639451876], [-77.3949933336306, 34.588361184255035], [-77.39505805822637, 34.58838479714731], [-77.39509127764234, 34.58838100358527], [-77.39512148941972, 34.588412437193625], [-77.39511322097039, 34.58847307149679], [-77.39520429919224, 34.588667475116836], [-77.39524661023911, 34.58881896079098], [-77.3952550514928, 34.58884888992413], [-77.39529296584948, 34.588983698890054], [-77.39530387734708, 34.589022986098314], [-77.39534491951969, 34.58911391394517], [-77.39535073387111, 34.58912539965127], [-77.39536000001944, 34.58912798790608], [-77.39545205868765, 34.589157007743836], [-77.3955285067082, 34.58912050601999], [-77.39556739544228, 34.58910923754485], [-77.3956031032753, 34.58902938061106], [-77.39561934448648, 34.58897748117208], [-77.3955853696855, 34.58891370947423], [-77.39556093636828, 34.588868621648984], [-77.39552090802198, 34.58877939446619], [-77.39549942115522, 34.58873149821315], [-77.39545209878057, 34.588619740067436], [-77.39535483958213, 34.58848357863431], [-77.39534503772936, 34.58838019146439], [-77.39538571276425, 34.58830277196456], [-77.39545212731996, 34.58823882729378], [-77.39573689530128, 34.58801686401692], [-77.39584620692243, 34.58792313057111], [-77.39586843595156, 34.587904069314504], [-77.39595898754366, 34.5878670580142], [-77.39614236456399, 34.58773511227264]], [[-77.37587144460198, 34.54889708673056], [-77.37611562618537, 34.54859996055596], [-77.37783296522122, 34.54786432586696], [-77.37862346760261, 34.54752006811983], [-77.37963534904567, 34.546754169052264], [-77.3802185219266, 34.546430893361254], [-77.38114739113485, 34.54591596973856], [-77.381466594382, 34.545658049309424], [-77.38125722759155, 34.545410474604836], [-77.381134615738, 34.54536160614041], [-77.38102816710446, 34.54535011997644], [-77.38080344260928, 34.54523107050359], [-77.38072451434597, 34.54518925764774], [-77.38064201139534, 34.545065921169645], [-77.38056199805493, 34.54502105062219], [-77.38064512704437, 34.5449282730271], [-77.38074800323571, 34.544811917473574], [-77.38096343367238, 34.54452551975733], [-77.38100647124485, 34.544467306995045], [-77.38102171983753, 34.54444836113094], [-77.38158498883678, 34.543894232699145], [-77.38165983667125, 34.543765350764886], [-77.3818555383003, 34.5434848299915], [-77.38209023939021, 34.54298132772753], [-77.3822088469299, 34.54282495761599], [-77.38263485954698, 34.54229429729618], [-77.38265406892795, 34.54226219613729], [-77.38266873017876, 34.54224506841908], [-77.38289381647331, 34.541882123941264], [-77.38299157413586, 34.54173276861947], [-77.38307570233353, 34.54160815748487], [-77.38312622382276, 34.54149848303267], [-77.3833621389845, 34.54126075902647], [-77.38337510988197, 34.541187799746375], [-77.38295114884934, 34.54108910133982], [-77.38284570062785, 34.540774478871185], [-77.38270346431015, 34.54070897488728], [-77.38221096053665, 34.54068385624791], [-77.3819198131377, 34.540643486444864], [-77.38131892381956, 34.54061953575422], [-77.38100075031156, 34.540634497969094], [-77.38091270702706, 34.540563538015654], [-77.38035659612115, 34.54033217282763], [-77.3799614135911, 34.540455750425295], [-77.37927148862691, 34.54061710185649], [-77.3787741278848, 34.54087090132374], [-77.37877329513259, 34.5408719861864], [-77.3787734697441, 34.540872350984934], [-77.3786478505737, 34.541134900463874], [-77.37876001963478, 34.541361696650796], [-77.37876062963258, 34.541363471755574], [-77.37876164883644, 34.541364137314], [-77.37876287498425, 34.54136751922101], [-77.37893781274, 34.541713595964794], [-77.37899892874749, 34.54181877655819], [-77.37904420912999, 34.54199659391535], [-77.379031244879, 34.54212569399094], [-77.37898973055626, 34.542309762390275], [-77.37887360143495, 34.542410294415106], [-77.37873532173657, 34.542583519394945], [-77.37853988516798, 34.54274466679611], [-77.37850442215874, 34.54286938566737], [-77.37833067122246, 34.543116288090175], [-77.3782316833611, 34.54309144863832], [-77.37794055283656, 34.54300775054013], [-77.37788707796048, 34.542991953036136], [-77.37778646388574, 34.54297288408756], [-77.37715886842847, 34.54285463243824], [-77.37668201789634, 34.54313208876094], [-77.37654896216767, 34.543266386367634], [-77.37624952150756, 34.54368408596062], [-77.3759828299608, 34.5439844020414], [-77.37570535420186, 34.54425218092139], [-77.37555433477164, 34.544362447889455], [-77.37521629805431, 34.54460495007228], [-77.37523737918686, 34.54480928863815], [-77.3749839405101, 34.544988623739236], [-77.3747590483732, 34.54536006960542], [-77.37475834017671, 34.54536798931251], [-77.37475413445726, 34.54537353937696], [-77.37472786645665, 34.54538367513914], [-77.37395437669258, 34.54566627284923], [-77.37358437184827, 34.54579796161748], [-77.37329473369957, 34.54606857872405], [-77.3732222946703, 34.54611854261001], [-77.37315680296805, 34.54621150389487], [-77.37296724239685, 34.546491180190955], [-77.3728950448347, 34.546771137649266], [-77.3731399252585, 34.54695423139516], [-77.37318846494377, 34.54703183628165], [-77.3732092729764, 34.5470602071374], [-77.37341615782017, 34.54734228796933], [-77.3738273397539, 34.54790290967205], [-77.3736088176866, 34.54798193941184], [-77.37312788420437, 34.5485261318657], [-77.37362656618527, 34.54895868560962], [-77.37502043967527, 34.549024758927644], [-77.37545197556122, 34.54887251226139]], [[-77.36078331566173, 34.57106043106912], [-77.36075467770887, 34.57107548273832], [-77.36063032188548, 34.57114084225016], [-77.36058624818531, 34.571210728233496], [-77.36047420013668, 34.57132814100167], [-77.36058611449984, 34.57147531600258], [-77.36060542176867, 34.571500706363494], [-77.36061969091972, 34.571519471144875], [-77.36071478552853, 34.57164452617347], [-77.36076190152421, 34.571711273414095], [-77.36078297741375, 34.57173309027914], [-77.36079812731234, 34.571706057832884], [-77.3608719015688, 34.5715996847134], [-77.36095703548273, 34.571470902017055], [-77.36097004047438, 34.57145818089512], [-77.36098012308932, 34.57142813658206], [-77.36103126551737, 34.57124793762808], [-77.3609802512476, 34.571172110949895], [-77.36093634000787, 34.571096686902095], [-77.36080774503839, 34.571067842355184]], [[-77.34543644883978, 34.65519553673237], [-77.34552597785152, 34.65529227525129], [-77.3455168281031, 34.65519754501231], [-77.34614953663777, 34.65520861229785], [-77.34620045066326, 34.65516840627754], [-77.3464587912126, 34.65515422494578], [-77.34671977607863, 34.655076884601655], [-77.3467625191444, 34.65507235172], [-77.34683900470723, 34.655097200384766], [-77.34709277045997, 34.65512239238241], [-77.34733205660395, 34.65493528493722], [-77.34702860642619, 34.65480327699924], [-77.34688311127995, 34.6547534893516], [-77.34668030049993, 34.65461547789798], [-77.34666913889943, 34.654607921098766], [-77.34666678504296, 34.65460765791707], [-77.34666047209221, 34.65460549206852], [-77.34641293791574, 34.654536116047424], [-77.34610550396216, 34.65441258753574], [-77.34601813176802, 34.65455503821432], [-77.34558261412103, 34.655031805759194], [-77.34547622205632, 34.6550447946584]], [[-77.37613143590669, 34.62856224234598], [-77.37648522803181, 34.62888506392497], [-77.3766144996396, 34.62919517779649], [-77.37691978079764, 34.6291546012669], [-77.3771410075926, 34.629028802976705], [-77.37720949083217, 34.62878074165457], [-77.37770856460752, 34.62809344406715], [-77.37784549378526, 34.62798743299561], [-77.37831764033497, 34.62796524478347], [-77.37849707880818, 34.628031493140526], [-77.3787705851621, 34.62826127034133], [-77.3790106821769, 34.62852127967603], [-77.37887018664516, 34.62894355590856], [-77.37849677013133, 34.629269013926624], [-77.37842090264259, 34.62937369343517], [-77.37830857519695, 34.62947154558501], [-77.37804657867133, 34.62987377715831], [-77.37770802749841, 34.630170860607265], [-77.37755787996585, 34.630267143672235], [-77.37739075101217, 34.63045287849377], [-77.3776557587856, 34.630470908193445], [-77.37770794786744, 34.63047970885049], [-77.377814563924, 34.630506648339015], [-77.3779756518326, 34.63050490309494], [-77.37810219045252, 34.63055132079432], [-77.37810683338127, 34.630557010095515], [-77.37820951974894, 34.63054721958006], [-77.37829561101786, 34.63053881666231], [-77.37830355823253, 34.630538232869306], [-77.37849649341997, 34.630382060512076], [-77.37855259115707, 34.630345918491166], [-77.37869573085474, 34.63026489898208], [-77.37892068045488, 34.62984001730148], [-77.37928526450038, 34.629332204907236], [-77.37928628607501, 34.62933180183999], [-77.37982975463443, 34.629515140608866], [-77.38007366671785, 34.62980071442682], [-77.38018483906359, 34.629930628555485], [-77.38028372320335, 34.630036132765824], [-77.38040671069253, 34.63037719708897], [-77.38059922074288, 34.63083980567115], [-77.38066177253964, 34.63104630899629], [-77.38073125987799, 34.63152933635276], [-77.38070879120014, 34.631673146372975], [-77.38076670564817, 34.631767149423936], [-77.38086163265898, 34.632299830437184], [-77.38089647930637, 34.63245767159254], [-77.38151195776047, 34.632257717857364], [-77.381650201116, 34.63215090656246], [-77.38219391874033, 34.63204464974237], [-77.38271120372976, 34.63194041083896], [-77.38322730544303, 34.631976219424395], [-77.38399861879208, 34.632029727417645], [-77.38480436841718, 34.63199614767285], [-77.38561522085217, 34.63179130004342], [-77.38790657280842, 34.632278341203865], [-77.38795848295317, 34.63211064976696], [-77.38905147012738, 34.62994935856579], [-77.38858492446731, 34.628839905054434], [-77.38891136248685, 34.62812016653091], [-77.38882299114924, 34.62795645769076], [-77.38882148124108, 34.627877052901695], [-77.38887139780189, 34.62710034519027], [-77.3889728991423, 34.62684316764888], [-77.38897149217945, 34.626661349877736], [-77.38907792632159, 34.62657705747057], [-77.3891276239982, 34.62622975257382], [-77.38912846442761, 34.626214155600465], [-77.38910651993659, 34.62617910849755], [-77.3889971496553, 34.62596453984487], [-77.38883752917621, 34.62583152491808], [-77.38874781657543, 34.62575676545741], [-77.3885502902716, 34.625872928403545], [-77.38848226332803, 34.626021354423145], [-77.38853851579533, 34.626299192572176], [-77.38853010483447, 34.62653475680712], [-77.38852531830551, 34.62672566254706], [-77.38852386187884, 34.626909416616044], [-77.38804995591217, 34.627120963900374], [-77.38795915082987, 34.62716334985236], [-77.38791136756218, 34.627187268050875], [-77.38737605818835, 34.627094697063384], [-77.38717067841688, 34.627069310505235], [-77.38666499440029, 34.6271137985792], [-77.38638218352693, 34.62712942009929], [-77.3860576754862, 34.62715642546828], [-77.38504990426676, 34.62738755993313], [-77.38480514304625, 34.627513376762074], [-77.38468444854094, 34.62757382422173], [-77.38409081338513, 34.62778933512833], [-77.38402820657723, 34.6278108587958], [-77.38401659674022, 34.62781533153055], [-77.38399506667929, 34.627826315994234], [-77.38342753822556, 34.628099742454154], [-77.38322801332203, 34.628279280707474], [-77.38285823151327, 34.62841788866304], [-77.38279237876307, 34.62844553087912], [-77.38261558218082, 34.62842647353602], [-77.38278680016698, 34.628351243128094], [-77.38274962954644, 34.62798259403916], [-77.38294114192725, 34.62764593343985], [-77.38322824088455, 34.62710161611265], [-77.38324481299088, 34.62706211340064], [-77.38327448474186, 34.627008056567654], [-77.38355072904406, 34.626516072876775], [-77.3838838967362, 34.62626410730518], [-77.38401690304232, 34.62615349404367], [-77.38404847124288, 34.6261311690244], [-77.38437616923079, 34.62604995352054], [-77.38471678409601, 34.625905408724485], [-77.38480542691096, 34.62589160913575], [-77.38488503918023, 34.62589088455043], [-77.38546573268614, 34.62575488152614], [-77.38559394207658, 34.62565049313561], [-77.38567600028323, 34.62543806692073], [-77.38576735086919, 34.62518700275728], [-77.38587097304973, 34.62498540118712], [-77.38606980954924, 34.624619911455184], [-77.38614377465524, 34.62452151894166], [-77.3863109456798, 34.62415008202431], [-77.38631855062135, 34.62407176328429], [-77.3862925899813, 34.62397848352846], [-77.3858866408578, 34.623284879223306], [-77.38597913849641, 34.62285720747428], [-77.3859774243327, 34.62283515497287], [-77.38598863805052, 34.622823521225115], [-77.38608224272679, 34.62240755669836], [-77.38611349293411, 34.622268684725555], [-77.38611283193303, 34.62219086503082], [-77.38614247957062, 34.622139872358396], [-77.38618587096887, 34.6220713798494], [-77.38628972054875, 34.62205352966371], [-77.38638299216353, 34.62199883483421], [-77.38653811575398, 34.62191728652643], [-77.3863830287411, 34.621769658116555], [-77.38625623722103, 34.621821369895834], [-77.38618591022731, 34.621828876571904], [-77.38600879278923, 34.62199357670669], [-77.38599643323207, 34.622003608546386], [-77.38598877155637, 34.622009058369116], [-77.38598035427749, 34.622006741045396], [-77.38563106985083, 34.62208735808261], [-77.3855945346771, 34.622114673143095], [-77.38529242254086, 34.622196033968294], [-77.38520030293364, 34.622184500966924], [-77.3850809195016, 34.62225586198231], [-77.38480602546686, 34.6225068573807], [-77.38475614433494, 34.62254496020937], [-77.38458420007677, 34.622623452955], [-77.38441175784732, 34.62275855844654], [-77.38434130830265, 34.622734333045294], [-77.38414359101922, 34.62282272048753], [-77.38401751195079, 34.62288126159711], [-77.38388946565274, 34.62293585335971], [-77.38383925580474, 34.62296341251698], [-77.3838203775119, 34.62300083129115], [-77.38369028768881, 34.62317683838847], [-77.38367999350507, 34.62323946489556], [-77.38362318989115, 34.6233948519181], [-77.38355355520021, 34.62362110673874], [-77.38352130562342, 34.62394070659728], [-77.38322881685853, 34.624144551923834], [-77.38301412149309, 34.62393009981254], [-77.38256747842624, 34.62390004714893], [-77.38244041566696, 34.62386054626617], [-77.38237555928492, 34.62386069982249], [-77.3821202334892, 34.62390739775985], [-77.38204617323413, 34.623926802470336], [-77.38177081194453, 34.62400602276692], [-77.38165190947524, 34.62408921953703], [-77.38146565442766, 34.62412253749065], [-77.38125768704016, 34.62405578085561], [-77.3811682160304, 34.62396481549424], [-77.38101630085852, 34.62382215502023], [-77.38086354137573, 34.62368150996946], [-77.38081986327848, 34.62363749268929], [-77.38072782278654, 34.623603704048165], [-77.38056506758944, 34.62352406940046], [-77.38037823886437, 34.62355595712562], [-77.38024929378798, 34.6236726488469], [-77.38014078079702, 34.623759052807586], [-77.38007499637, 34.6240619869014], [-77.38006112871172, 34.62410939876903], [-77.38005909248587, 34.62412461490526], [-77.38005279968972, 34.62414940388445], [-77.37986322025279, 34.624774069955535], [-77.37951888506375, 34.62480115002362], [-77.37928635825472, 34.624795419214195], [-77.37892230183702, 34.624745436963345], [-77.37889213642451, 34.624748025817354], [-77.37887480297063, 34.62473846392358], [-77.37879368587424, 34.62473148020531], [-77.37849791227548, 34.62471135950855], [-77.37825553126507, 34.624809005942], [-77.37813276734298, 34.624858057564246], [-77.37810363143865, 34.624896380514606], [-77.37800689189768, 34.62494899015303], [-77.37770932699327, 34.62516491782472], [-77.3776193625726, 34.625228342764494], [-77.37745727962373, 34.62534855783723], [-77.37737256978085, 34.62542273371106], [-77.37731500278025, 34.625497942185724], [-77.37716989752471, 34.625658295190064], [-77.37692069114757, 34.62577285735546], [-77.3768040750031, 34.62586721052524], [-77.37664043630161, 34.626013603050296], [-77.37652636525037, 34.626090088058234], [-77.37647673924634, 34.62612664097149], [-77.37640972575214, 34.62622300329181], [-77.37625139783634, 34.62637137915082], [-77.37622353231146, 34.62647394496024], [-77.37613197373251, 34.62663165457172], [-77.37579812628972, 34.626796136509185], [-77.37573085650413, 34.62686358403269], [-77.37534330836905, 34.62725393190677], [-77.37529286251447, 34.627304251576966], [-77.37521499867293, 34.62736977530139], [-77.37505937407389, 34.6275110638853], [-77.37494894986524, 34.62763813686852], [-77.3748356014948, 34.627726942836965], [-77.37455453321495, 34.62820594145399], [-77.37450377985799, 34.62826669209937], [-77.37450146031296, 34.62832166194046], [-77.37451309961585, 34.62836455359909], [-77.37455439758718, 34.62866263935719], [-77.37456381206968, 34.62872708329554], [-77.37456689364078, 34.62873679830797], [-77.37464082966622, 34.628819276095804], [-77.37474248888445, 34.62893343266516], [-77.3749148765947, 34.62911124130693], [-77.37494850968366, 34.62914439667091], [-77.37514490390224, 34.62929113600271], [-77.37514559440424, 34.629292148118914], [-77.37514902391824, 34.6292934922638], [-77.37515247612876, 34.62928189400134], [-77.37514670517369, 34.62907785240111], [-77.37528375747142, 34.6289945239924], [-77.3753428351088, 34.62889885600422], [-77.37558251838155, 34.628423925020954], [-77.3758964359561, 34.62837387116239]], [[-77.45409184272623, 34.50412697035499], [-77.45393678535413, 34.505438242914316], [-77.45392745939749, 34.50551708706319], [-77.45399838269496, 34.506824297257154], [-77.4548913694912, 34.508145098057696], [-77.45510468852014, 34.50823158102486], [-77.45764907974358, 34.5089305481716], [-77.4587851063763, 34.50924260033155], [-77.46047715250886, 34.50942157932146], [-77.46176978588728, 34.509242881239665], [-77.46177442421484, 34.50924016034571], [-77.46200451551626, 34.50858198010593], [-77.4621279847645, 34.50822879905499], [-77.46228377461537, 34.50741476162521], [-77.46228664680446, 34.507245274151096], [-77.46225243700464, 34.50710120170808], [-77.46199954531028, 34.50599742442578], [-77.46197046120186, 34.5058781998935], [-77.46194283264799, 34.50576279271701], [-77.46188966997885, 34.50553634305446], [-77.46206876832409, 34.50539219156244], [-77.4622403855056, 34.505313287792035], [-77.46233507767246, 34.50522119333928], [-77.46278813171973, 34.50498529486386], [-77.46324654053592, 34.50459193335149], [-77.46371540272392, 34.50424761396383], [-77.46423368581408, 34.50345922476451], [-77.46433738623965, 34.50336166811952], [-77.46440141993979, 34.50329951920332], [-77.46431199068184, 34.503223345152406], [-77.4644510065561, 34.50262652405753], [-77.46448706377383, 34.502348938658216], [-77.4644973832938, 34.502251348374145], [-77.46450243181775, 34.501953621430594], [-77.4645040999379, 34.50155710595839], [-77.46446257437728, 34.501276087177985], [-77.46439270333732, 34.50101247859691], [-77.46442069547741, 34.500817760209166], [-77.46440597680919, 34.50059770456658], [-77.46409941428931, 34.500276015600626], [-77.46405809963626, 34.500224299270776], [-77.46392588321926, 34.500191731825566], [-77.46333265134434, 34.5001650946847], [-77.46273058692812, 34.50020518470088], [-77.46200486945138, 34.50023444853534], [-77.4609093646692, 34.50042022075378], [-77.4607604335427, 34.500436290342414], [-77.46071728252417, 34.5004507745286], [-77.45900166862414, 34.50077003475783], [-77.45838556932553, 34.50164308711972], [-77.45837382159041, 34.5016531445336], [-77.45835913638378, 34.501677116395996], [-77.45652270616682, 34.50194201368994], [-77.45582454421576, 34.50225835183089], [-77.45438890777898, 34.503281653031316]], [[-77.3392807039575, 34.636628629895554], [-77.33931527101572, 34.63673073638941], [-77.33946136397965, 34.637025830120265], [-77.33955270494543, 34.63711801279386], [-77.33962068954605, 34.63701590711931], [-77.33992730940554, 34.63699383076158], [-77.33998894517786, 34.63695341584936], [-77.33992650844348, 34.636634190254966], [-77.34038187079388, 34.636624394722574], [-77.34047682819138, 34.63654235363679], [-77.3405170635366, 34.636518332000975], [-77.34062568799132, 34.636486623752845], [-77.34067974155619, 34.63643659832174], [-77.3407246481029, 34.636378524786366], [-77.34074739173697, 34.63629574366172], [-77.34084470336447, 34.636202955938906], [-77.34082597952465, 34.63613951069175], [-77.34079424194596, 34.635998883937525], [-77.34075119377542, 34.63589313783442], [-77.34064863903774, 34.6355968728528], [-77.34048772054541, 34.63526671329213], [-77.34019729803802, 34.63515113319937], [-77.3398858083422, 34.63485758785761], [-77.3396351508388, 34.634658623615294], [-77.3394032628584, 34.63438554065473], [-77.3388991280397, 34.634340376181356], [-77.3387434866695, 34.63428816367036], [-77.33859930129202, 34.63441343026836], [-77.33756595872192, 34.634430064880966], [-77.3375824762035, 34.634882585181934], [-77.33769149082168, 34.63588183502875], [-77.33714636009009, 34.63589860479092], [-77.33710993506807, 34.63600608413759], [-77.33695151961152, 34.63610430543025], [-77.33690127586189, 34.63627209422748], [-77.33683665086072, 34.636181189119334], [-77.33669741446171, 34.636288170846946], [-77.33665233633572, 34.636356361078505], [-77.3366427921469, 34.63640398757941], [-77.33668641016483, 34.63647863293055], [-77.33678810850978, 34.63654872637584], [-77.33679818495646, 34.636555671344176], [-77.33693446520769, 34.63656153932086], [-77.33696269894841, 34.636577857743035], [-77.33704862255371, 34.6366161136296], [-77.33724062547503, 34.63636785050454], [-77.3375092864808, 34.63657151949978], [-77.3376018796324, 34.636572641374904], [-77.33772704518526, 34.63658230988847], [-77.3378620913241, 34.63627446232029], [-77.33811693290652, 34.63627908732746], [-77.33853504081006, 34.636437339250556], [-77.33881683414899, 34.63627883840835], [-77.33888624993104, 34.63633015324761], [-77.33921243174197, 34.636622308508564], [-77.33923065757585, 34.636607568461805]], [[-77.39041264536579, 34.71029389534152], [-77.39048063763136, 34.71026796491529], [-77.390732744547, 34.7100810821904], [-77.39037687540876, 34.71022062811393], [-77.39036475379517, 34.7102155489965], [-77.39023617880075, 34.71018240549737], [-77.39014238456156, 34.71032716954827], [-77.39034890998362, 34.710317089667555]], [[-77.40667480669813, 34.6700859820546], [-77.4069529314143, 34.67028910028992], [-77.40704448167537, 34.67039148610729], [-77.4071237167874, 34.67028546752277], [-77.40715241348433, 34.67025315981906], [-77.4074939481437, 34.67014301064082], [-77.40757068692774, 34.67003137541183], [-77.4075433758014, 34.669830876665266], [-77.40766371751909, 34.669672572880486], [-77.40786416953668, 34.66938403363995], [-77.40792687947453, 34.669354943053314], [-77.40810439551579, 34.668916031856945], [-77.4081071829851, 34.668909966235105], [-77.40809565434527, 34.66888288546413], [-77.4080354114005, 34.66849847331525], [-77.4078673042244, 34.6685092728474], [-77.40777759043625, 34.668515036018405], [-77.4076472961921, 34.66852340610112], [-77.4075842709642, 34.66852745475158], [-77.4074272882986, 34.66853753890077], [-77.40710275134722, 34.66855838550572], [-77.40699971517222, 34.668586163081144], [-77.40690976487699, 34.6686441453061], [-77.40676280213088, 34.66858307358306], [-77.406317873777, 34.668475543211265], [-77.40585247608678, 34.66820547329393], [-77.40522282763146, 34.66845945491425], [-77.40511352340498, 34.66927113108018], [-77.40598578967331, 34.669622262014414], [-77.40617751067595, 34.6697199248456]], [[-77.39347881374023, 34.62343456911019], [-77.39277876808065, 34.623140502058156], [-77.39272321477202, 34.6231131616266], [-77.3926903987586, 34.62302670752727], [-77.39233393968553, 34.62273942419007], [-77.39227282743862, 34.6227637077844], [-77.39216317048565, 34.62280468879789], [-77.39190196175753, 34.62293798599932], [-77.39182988517017, 34.62293036586061], [-77.39161964554224, 34.62300357819343], [-77.39150772131958, 34.6231247714077], [-77.39129218536576, 34.62335482977352], [-77.39150768357433, 34.62351395529583], [-77.39167272431328, 34.62354678839443], [-77.39190188568304, 34.62376340171032], [-77.39248820457239, 34.62340011781476], [-77.3924054770239, 34.62404346143751], [-77.39269029490265, 34.62428529613584], [-77.3927896456348, 34.624730175935866], [-77.3928894084334, 34.62482282812757], [-77.39347868040394, 34.62527203802268], [-77.3937089008825, 34.625305871636144], [-77.39415777351309, 34.62537130656357], [-77.39426713858093, 34.62539411470317], [-77.39447395009047, 34.62544349904344], [-77.39479693394605, 34.62567548631874], [-77.39505557106831, 34.626044091145786], [-77.39516050663612, 34.62619364246911], [-77.395313335677, 34.626743108670425], [-77.39584399162263, 34.627271769729774], [-77.39697422866712, 34.62714927184045], [-77.39621692314276, 34.62604130343541], [-77.39615139483357, 34.625719764637346], [-77.3962318624643, 34.62519000760351], [-77.39589063361356, 34.62444017348775], [-77.39586923811734, 34.624393158474085], [-77.39586160088798, 34.62437542929367], [-77.3958441178502, 34.62433826635793], [-77.39562028683065, 34.62382100054435], [-77.39553412363672, 34.623592341297716], [-77.39544993200451, 34.62347860975569], [-77.39534121230075, 34.623312686530234], [-77.39519594924626, 34.623216535941424], [-77.39505572575774, 34.62314924366993], [-77.39474644901199, 34.623189865493174], [-77.39457265033165, 34.623210725858975], [-77.39426726808901, 34.623341799843345], [-77.39382148529947, 34.623470242727066]], [[-77.39892441945005, 34.52705992713127], [-77.39793831624553, 34.52656077271355], [-77.3977119874761, 34.526046737986675], [-77.39760924886085, 34.52591319218623], [-77.39690976221837, 34.52568862989239], [-77.39650338184185, 34.52558314123595], [-77.39639112092603, 34.52554592104302], [-77.39616159938974, 34.525289566113585], [-77.39549469452717, 34.52523905182542], [-77.39498849231101, 34.52442139101787], [-77.39494808682213, 34.52433860233356], [-77.3949623981388, 34.52426636673847], [-77.39485136150677, 34.52420183896797], [-77.39476940689211, 34.52431485008875], [-77.3946948157452, 34.52437515431294], [-77.39325222662517, 34.52549968255245], [-77.39321151634115, 34.525543776160376], [-77.39320149512525, 34.525569998323654], [-77.3932060335723, 34.52559679572165], [-77.39305247618663, 34.52645970724196], [-77.39297026424613, 34.52658270197285], [-77.39253938468333, 34.5270675391199], [-77.39254420407026, 34.52720580673443], [-77.39257956016549, 34.527618416349824], [-77.39300584674075, 34.52768000041655], [-77.3927504775908, 34.52829939436705], [-77.39191862188952, 34.52869312304547], [-77.3917783520384, 34.52881992609584], [-77.39160526132054, 34.528920053333955], [-77.39139235456823, 34.52890211199506], [-77.39002656840222, 34.52930435407658], [-77.38932320819578, 34.5296125257646], [-77.38902796234314, 34.52972713059793], [-77.38845218106319, 34.52949699141788], [-77.38812922027759, 34.53002514917392], [-77.38759812993878, 34.530295779761644], [-77.38710884587633, 34.53052220462491], [-77.38685642593056, 34.530636093104405], [-77.38639124940448, 34.53095953543941], [-77.38684671157219, 34.53106656274073], [-77.38722677734197, 34.531091266585555], [-77.3882232747406, 34.53106419459075], [-77.38841743020245, 34.5310381725674], [-77.38866230493227, 34.53096981915099], [-77.38973834523081, 34.5309663629918], [-77.38994981888088, 34.53096045443982], [-77.38998961939163, 34.53094438716224], [-77.39000736664653, 34.53093854007218], [-77.3900570517799, 34.53092038408857], [-77.3907836988665, 34.53054283826259], [-77.39107665295202, 34.53046525362815], [-77.39154355675016, 34.5302162453748], [-77.3915764342377, 34.530200646071094], [-77.39209583197673, 34.52996759680323], [-77.392367586732, 34.529928496856854], [-77.39244064094994, 34.53003967646001], [-77.39246892687031, 34.53008272365639], [-77.39314210363362, 34.53039572971159], [-77.39321602227257, 34.53041816654588], [-77.39365748485798, 34.5304008845541], [-77.39385600377345, 34.530416316778364], [-77.39392703977933, 34.53039989490889], [-77.39433869727804, 34.53030258116161], [-77.39466611727242, 34.53022420556444], [-77.39471639819132, 34.53020726359466], [-77.39482756534179, 34.53016330660337], [-77.39520755587995, 34.52999085664959], [-77.39544681418933, 34.52969424768134], [-77.39547858757675, 34.529648409287184], [-77.39547831978942, 34.52962588911668], [-77.39595624990257, 34.529089800132425], [-77.39609156220052, 34.52893082697582], [-77.39632301630259, 34.52857888736096], [-77.39696560695172, 34.52854378066109], [-77.3971743052312, 34.528464064035624], [-77.39789797540769, 34.528358815425335], [-77.3980596270882, 34.52829654201564], [-77.39823979689295, 34.527988908452414], [-77.39859128417643, 34.527730125584]], [[-77.36352619540766, 34.551336216796344], [-77.36322497920054, 34.5513305993459], [-77.36315986913816, 34.55144589275319], [-77.36313890802884, 34.551644536987816], [-77.36310435117872, 34.55176770664318], [-77.36356064530158, 34.551877822545116], [-77.36355795407663, 34.55190719278626], [-77.36360268719986, 34.5519836579105], [-77.36365346109228, 34.55189485090307], [-77.3636384840906, 34.55186661200581], [-77.36363482290797, 34.55184901790881], [-77.36367382025975, 34.55161669763472], [-77.36366893327082, 34.551405654430475], [-77.36368941668904, 34.5513696260803], [-77.36362456870421, 34.55102545653891]], [[-77.35592531782495, 34.550683211661806], [-77.35595840460793, 34.55064665139584], [-77.35596638266624, 34.550638675431756], [-77.35597760539177, 34.55062674194596], [-77.35609210302046, 34.55050499263898], [-77.35609891622687, 34.55045478689007], [-77.35616220336419, 34.5502625869701], [-77.35615876114223, 34.55025057354027], [-77.35616314620465, 34.55023766493347], [-77.35618310130936, 34.550226055183145], [-77.35655653798865, 34.549948485032644], [-77.35657115832927, 34.549939439672464], [-77.35658247447417, 34.54993133573361], [-77.35664704845018, 34.549895697615035], [-77.35680467870644, 34.54980468741205], [-77.35697984463052, 34.549723896836205], [-77.35707876734637, 34.54968967366588], [-77.35736672853149, 34.54958701917419], [-77.35737329970694, 34.54958460670263], [-77.35737566919627, 34.54958382727445], [-77.35738096273138, 34.549581699338596], [-77.35757434423897, 34.5494804744812], [-77.35761676102567, 34.54945469087665], [-77.35767090779915, 34.549420813456436], [-77.35767261311196, 34.5494197727468], [-77.35767392665127, 34.549418099561784], [-77.35770634239077, 34.549374090798096], [-77.35777511381147, 34.54928566289706], [-77.35777639266212, 34.54928398796081], [-77.35777704403195, 34.54928312064389], [-77.35777933327992, 34.54928023738651], [-77.35788678114343, 34.54914490921733], [-77.35791861526772, 34.549104814838415], [-77.35797729409367, 34.54902921986425], [-77.3579941459065, 34.549007039288426], [-77.3580512468192, 34.54892097533737], [-77.35817991091992, 34.54875366236973], [-77.35819166555129, 34.548740924903], [-77.35819911348156, 34.54873270451177], [-77.35822167378049, 34.54870412131018], [-77.358256090109, 34.54866329505093], [-77.35825692719956, 34.54864849242769], [-77.35827456579142, 34.54859942896428], [-77.3582757662326, 34.54853347318823], [-77.35828482328571, 34.54847554020462], [-77.35838028478874, 34.54834271494329], [-77.3583803715492, 34.54833599819175], [-77.35838586653945, 34.54833224903677], [-77.35842766400323, 34.54821015007593], [-77.35843559650328, 34.54818016887231], [-77.35844670334347, 34.548146202830395], [-77.35844715421251, 34.54812012078092], [-77.35844882383999, 34.54808469158473], [-77.35844540013817, 34.548052061396376], [-77.35829920045737, 34.54798382300752], [-77.35838386033986, 34.54785725571263], [-77.35834667289444, 34.547822861314565], [-77.35829196579706, 34.54774004119281], [-77.35824811911732, 34.54771860297151], [-77.35825274532618, 34.54752879013494], [-77.35823724308538, 34.54750309677504], [-77.35822979663047, 34.54749109243128], [-77.35821017815334, 34.54743208973367], [-77.35814892523497, 34.54739340126297], [-77.35814643786702, 34.54735288042596], [-77.35811792316359, 34.547334377996876], [-77.35810565287508, 34.54733303625485], [-77.3580151492501, 34.547376500557064], [-77.35784884284433, 34.54731419577966], [-77.35782768446431, 34.54731264351838], [-77.35782032234928, 34.547312103403435], [-77.35780510289227, 34.547310986818424], [-77.3576240858127, 34.54730924866007], [-77.35753691396336, 34.54729131088646], [-77.3574990427181, 34.54728625554209], [-77.3574285015642, 34.54727792404018], [-77.35734929980666, 34.547324913128975], [-77.35735007618962, 34.54733795979471], [-77.35734411372849, 34.5473868655871], [-77.35734605031612, 34.54743574735189], [-77.35742276173443, 34.54752844088118], [-77.35749652262054, 34.54756325190927], [-77.35761062186596, 34.54759331782657], [-77.35752857284956, 34.5477803724672], [-77.35773686513184, 34.54781996446732], [-77.3574784867752, 34.547897183266954], [-77.35741451480388, 34.54788838167565], [-77.35738139410813, 34.54789175010034], [-77.35713087513771, 34.547976421120175], [-77.35705557232912, 34.548138313712315], [-77.35703421295743, 34.54816595295084], [-77.3570322970804, 34.54817682917553], [-77.35701503425472, 34.54818833217443], [-77.35684681333244, 34.54833495223494], [-77.3568150558173, 34.54834865134813], [-77.35665825662929, 34.54846490262592], [-77.35663724842631, 34.54848135837548], [-77.3566154568649, 34.548492380587014], [-77.35653170507729, 34.54853474224156], [-77.35638814954469, 34.548608528587145], [-77.35621812171456, 34.548698496391665], [-77.35614749212726, 34.54873980594727], [-77.35609940947892, 34.54879018048966], [-77.35597624865244, 34.54890485820941], [-77.35581701129671, 34.54906916277355], [-77.3558128049777, 34.54907370565803], [-77.35580796944485, 34.549076959765614], [-77.3554195175258, 34.54928198352671], [-77.35529230970643, 34.549317196420176], [-77.35522188012158, 34.549339989787875], [-77.35511866502375, 34.54936263953586], [-77.35502472649813, 34.54937689401007], [-77.35494675217484, 34.54939743177798], [-77.35483050508938, 34.549462494379384], [-77.35476229551355, 34.54955605495408], [-77.35462697902149, 34.54960061305302], [-77.3546008209651, 34.54960167282312], [-77.35450718219795, 34.54958397651533], [-77.35443177091078, 34.54955269252506], [-77.35437295441574, 34.54952835889296], [-77.35429343345861, 34.54950434912415], [-77.35423690733299, 34.54948976790187], [-77.3540600291571, 34.54943959443353], [-77.35384681417088, 34.549379899174944], [-77.35371232238086, 34.549378631352155], [-77.35350394894027, 34.549377635164255], [-77.35345440624488, 34.54937089407076], [-77.35338223171591, 34.549381288028755], [-77.35302342200558, 34.54947779086849], [-77.3527199741801, 34.54955579198834], [-77.35266459819289, 34.54957023520686], [-77.35257629371256, 34.54959683122773], [-77.35226917885433, 34.549692269347446], [-77.35213260395349, 34.54976673460948], [-77.35196050838817, 34.549875600355286], [-77.35190892817288, 34.54990627256757], [-77.35187104694151, 34.54993230300161], [-77.35167969761845, 34.55004310726427], [-77.35147307097311, 34.55016544878216], [-77.3514463743068, 34.55017795081165], [-77.35138063075273, 34.55020388048179], [-77.35122659151185, 34.550319383047054], [-77.35124950681218, 34.55035937824719], [-77.35131374817493, 34.55045832771677], [-77.35134965355142, 34.550524965701804], [-77.35146172433765, 34.55065916652988], [-77.3514726251034, 34.550673283950815], [-77.3514780984511, 34.550679495762466], [-77.35152484229302, 34.55087513708025], [-77.35158727485772, 34.550991656384205], [-77.35161070071067, 34.551150054190096], [-77.35161205259219, 34.55125209414918], [-77.35162701324707, 34.551280557093], [-77.35172267005895, 34.55137876078358], [-77.3517056916966, 34.551546039315056], [-77.35174323749477, 34.551620622217946], [-77.35174769172102, 34.55167197414609], [-77.35174268612998, 34.55174311242061], [-77.3517925499221, 34.55183668486558], [-77.35180328308243, 34.55185680189568], [-77.3518262862468, 34.55188034738707], [-77.3519548026416, 34.55199799458386], [-77.352032040431, 34.552068699647975], [-77.35210804734186, 34.55212340861246], [-77.35219296362293, 34.55216794965348], [-77.35221208578672, 34.55217754412875], [-77.35230606702441, 34.55221494448513], [-77.35244439381938, 34.55225417270502], [-77.35260162810067, 34.55231189988372], [-77.35276357039719, 34.55235151007304], [-77.35279699764435, 34.55235304051057], [-77.35282998515564, 34.552341489428485], [-77.3529947842805, 34.552288927769624], [-77.35313307353215, 34.5522405877207], [-77.35339118207166, 34.55212474555005], [-77.35341492680882, 34.55211448163541], [-77.35362479272777, 34.55198309153729], [-77.35378844727747, 34.55192270177942], [-77.35405322037084, 34.55177778369605], [-77.35414419982675, 34.55173906736524], [-77.35418586712163, 34.55171383246295], [-77.35455295426996, 34.55146102740142], [-77.35457024685667, 34.55144961644362], [-77.35458471869647, 34.55144247276918], [-77.35464711734434, 34.55140904202149], [-77.35498233968488, 34.55122464251269], [-77.35505380172867, 34.55118814682885], [-77.35530363839136, 34.55110814351536], [-77.35535649980143, 34.55108705365746], [-77.35537841518926, 34.55107410435144], [-77.35559361492216, 34.550954049838175], [-77.35577623076645, 34.5508476144586], [-77.35580866231233, 34.550810309186375], [-77.35582897865572, 34.55078769481123]], [[-77.3372694738397, 34.6878888090312], [-77.33726410283303, 34.68788680758874], [-77.33726106508817, 34.687885687722435], [-77.33723130293687, 34.68786489361298], [-77.33723255679901, 34.68789387299889], [-77.33724805927365, 34.68789915098872], [-77.33591759189956, 34.690023736648115], [-77.33607042456373, 34.690381737809744], [-77.33634739036674, 34.691030483834474], [-77.3380960496217, 34.690399841886375], [-77.33668299262246, 34.691868246178245], [-77.33708154952684, 34.69275695451382], [-77.33708403082137, 34.6927879891753], [-77.33705549414798, 34.692816041543665], [-77.33701004832484, 34.69287041637323], [-77.33668909662896, 34.693329535200846], [-77.33681016809918, 34.693359880570256], [-77.33685913445805, 34.69338983666994], [-77.33707285466605, 34.69352058359266], [-77.33709874840378, 34.69353200662832], [-77.33719823148057, 34.6935809925643], [-77.3373881898253, 34.69362929282486], [-77.33741292861473, 34.693684437542906], [-77.33746202929363, 34.693710887456604], [-77.33766901022165, 34.693881564997525], [-77.33786848524073, 34.69403658395771], [-77.33845727417979, 34.69406340684193], [-77.33846459787179, 34.69406553182446], [-77.33903372934071, 34.694146780865715], [-77.33928799344824, 34.694212580595135], [-77.33933574383298, 34.69419960874827], [-77.33934577696422, 34.69416812394675], [-77.33944422627066, 34.69392634524545], [-77.33947730947281, 34.69368677046918], [-77.33947889781076, 34.69367155507405], [-77.33952219185502, 34.69342827341676], [-77.3396135587451, 34.693173798436064], [-77.33966324722496, 34.6929215464614], [-77.33977558347652, 34.69267452394614], [-77.34007172492457, 34.69237812920284], [-77.34035708623507, 34.691913423687396], [-77.34071264491666, 34.691539863189504], [-77.34094270109155, 34.69128388093995], [-77.3409264561298, 34.69114157128207], [-77.34113824029647, 34.69102363012914], [-77.34138785261068, 34.690735426936506], [-77.34160545914112, 34.690466937871825], [-77.34197501054247, 34.690203700082876], [-77.34203807142177, 34.69015883299501], [-77.34240393964909, 34.68989824933007], [-77.34258631310867, 34.68983991646882], [-77.34274898982103, 34.689578874610994], [-77.34223208391538, 34.68974586660952], [-77.34205210044854, 34.68993830222831], [-77.34181753635562, 34.69018909314991], [-77.34157933400344, 34.6904437728071], [-77.34130925302782, 34.69043490893329], [-77.34120372427115, 34.690373708801204], [-77.3410732413337, 34.69029121641703], [-77.34097184908467, 34.68976380485731], [-77.34030080719964, 34.68942243892577], [-77.3395334532187, 34.68929392917483], [-77.33925963399217, 34.689248070434914]], [[-77.3969906471346, 34.71818393059529], [-77.3969986681523, 34.718339332090565], [-77.39720780508554, 34.71877277761286], [-77.39741072288692, 34.718901452515155], [-77.3974728918825, 34.71891512520329], [-77.39750362011993, 34.71889900316246], [-77.39761025496448, 34.71891358886053], [-77.39794768810883, 34.71887694454182], [-77.39810389940627, 34.71895000164756], [-77.39820552246563, 34.71884228947893], [-77.3982707908684, 34.71865705757463], [-77.39829933883033, 34.718595542280184], [-77.39838299280773, 34.71849612961105], [-77.39843478079337, 34.7183633593349], [-77.39852601562288, 34.71832616457025], [-77.39860853916237, 34.718178939882335], [-77.3986224441891, 34.71814944756106], [-77.39863431517819, 34.718129134712505], [-77.39864776416265, 34.71805100636568], [-77.39863107350114, 34.71801268133218], [-77.39859639999156, 34.717960838830294], [-77.39848671971323, 34.71782238958865], [-77.39844656970101, 34.717767693954926], [-77.39825247143747, 34.71765789672696], [-77.39808286730172, 34.71740151714612], [-77.39800733054061, 34.71731377117949], [-77.3979677988826, 34.717207594931324], [-77.3978048099051, 34.716951877916124], [-77.39762311414943, 34.716681510577395], [-77.39767725632416, 34.71655873195631], [-77.39765400712226, 34.7164127477629], [-77.39773004715992, 34.7163135632874], [-77.39761963187762, 34.7161969038051], [-77.3975785919306, 34.71615354283279], [-77.39748899717098, 34.71607543877276], [-77.397222111659, 34.71585583478635], [-77.39711144246661, 34.71573835259842], [-77.39695820872433, 34.71551953192102], [-77.39695596308289, 34.71532978316364], [-77.39683690218311, 34.71512378373092], [-77.3966953636843, 34.714962024559405], [-77.39634699237988, 34.71488170041977], [-77.39616087352903, 34.714594253833795], [-77.39568298487933, 34.7144246670507], [-77.39551847239005, 34.714598787171624], [-77.39507175313179, 34.71452068282377], [-77.39426824605842, 34.71448856452342], [-77.39378987201235, 34.714321588277954], [-77.39339514776395, 34.7152195962546], [-77.39350361258924, 34.71579918276605], [-77.39374352491431, 34.71596700372238], [-77.39351250468893, 34.71636145122558], [-77.39365845930796, 34.71659215833851], [-77.39406909721774, 34.71672391578183], [-77.39437160590366, 34.716769826558405], [-77.39488736247998, 34.7167760528339], [-77.39534559945386, 34.71686619075621], [-77.39562144658052, 34.716969435566014], [-77.39605274593893, 34.71717909546044], [-77.39676436703816, 34.71738561848825], [-77.39692866675068, 34.71811596396403]], [[-77.3886080664889, 34.54742870776259], [-77.38825272337769, 34.54733964351216], [-77.3881154839217, 34.54731882407291], [-77.38805102761384, 34.547289089882966], [-77.38784922472618, 34.547153010038194], [-77.38776857931563, 34.54709862917222], [-77.38766509428173, 34.54699363748661], [-77.3876146047591, 34.54694201756358], [-77.38751252050785, 34.54680964532927], [-77.38728335213611, 34.54651248063933], [-77.38727574468956, 34.54650606139096], [-77.38727021539485, 34.54650202437749], [-77.38695128770564, 34.54633848873169], [-77.38728594599002, 34.54639747778562], [-77.38772177687963, 34.546168318052324], [-77.38808217349516, 34.54590760571288], [-77.38841934436417, 34.54633627964647], [-77.38856746831647, 34.546493694390726], [-77.38873454885484, 34.54670892215224], [-77.3887845052354, 34.54677327459314], [-77.38880354884354, 34.54679780604496], [-77.38884605624312, 34.54685256235789], [-77.3890396300306, 34.54710191670266], [-77.38935385727873, 34.547506684098494]], [[-77.39167442512218, 34.71459017320992], [-77.39213724490341, 34.714611858583076], [-77.39221900137858, 34.71392462585863], [-77.39162380245793, 34.71377198570265], [-77.39090150183843, 34.71377024288402], [-77.39063894709682, 34.71373920413503], [-77.389928995117, 34.71399322810523], [-77.38992400509608, 34.71399393172868], [-77.38965021955607, 34.714450653066514], [-77.38954689837736, 34.71486502452031], [-77.38949601382829, 34.71505964875334], [-77.38997855856333, 34.71557114903275], [-77.39009449393006, 34.715617132150626], [-77.39046869892275, 34.715296265442184], [-77.39061230529961, 34.715111004772645], [-77.39131342422604, 34.71503272705462]], [[-77.42522619978035, 34.73185186866476], [-77.42513381221916, 34.73187735114065], [-77.42512311482818, 34.73188174058683], [-77.42511781209905, 34.73188810658346], [-77.42509447730859, 34.73190681090841], [-77.42482006117466, 34.73213441571615], [-77.42443455523603, 34.7322083399416], [-77.42441297529085, 34.732217100046334], [-77.4243937657114, 34.73221886805065], [-77.42433736320226, 34.73222260315852], [-77.42392045169825, 34.7321601727067], [-77.42378177666833, 34.732118088852616], [-77.42362893736492, 34.732071706021955], [-77.42338983516218, 34.73204099534217], [-77.42334471521544, 34.73219025142552], [-77.42324127186463, 34.7323502837723], [-77.42321790413018, 34.73250794392026], [-77.42313852569734, 34.73272262391967], [-77.42312663992716, 34.73286928574528], [-77.42310964829912, 34.733078946286795], [-77.42305662299137, 34.73320315799835], [-77.42305559218735, 34.73340352323172], [-77.42330067454458, 34.733779639869425], [-77.42372799876327, 34.733638570795975], [-77.42388051876222, 34.73359070153592], [-77.42400595472435, 34.73355826481459], [-77.42426737774166, 34.73347495574137], [-77.42458679208222, 34.73337969500183], [-77.42465838170678, 34.7333659836687], [-77.42470653651033, 34.733353099606965], [-77.42519376957642, 34.73303279399041], [-77.42532633696607, 34.73296167936434], [-77.4254830008301, 34.73288582532288], [-77.42550172144877, 34.73287432337299], [-77.42552607225998, 34.73286941534232], [-77.42570378094328, 34.73283055360412], [-77.42608935642497, 34.732786773134585], [-77.42612938210726, 34.7327781165226], [-77.42615592862359, 34.732776136025755], [-77.42636522668926, 34.73271590750347], [-77.4264998215578, 34.73269562681966], [-77.42653058370817, 34.73268581099465], [-77.42655357085106, 34.73266950074637], [-77.42655282934474, 34.73263765568743], [-77.42667985545296, 34.73243410897835], [-77.42667721062149, 34.732177542882575], [-77.42667896523623, 34.732154265973], [-77.42667681898163, 34.73213955623368], [-77.42666850246943, 34.732112983424216], [-77.42660300977954, 34.73184818427511], [-77.42655759593214, 34.73174290525208], [-77.42647680075304, 34.73166781721404], [-77.42637161647245, 34.73167820997057], [-77.42606749073835, 34.73166099771539], [-77.42588881840499, 34.73163717871591], [-77.42584195715155, 34.73164599723926], [-77.42552655480026, 34.731751448969696], [-77.42550586922624, 34.731759300161784]], [[-77.43478540612827, 34.698928881518924], [-77.43543169800718, 34.6986245577044], [-77.43557894122765, 34.69851715674165], [-77.43593331460063, 34.698212109023146], [-77.43605209208698, 34.697426882780604], [-77.4361162192743, 34.69715795906889], [-77.4361578809673, 34.69682041318907], [-77.43604073417183, 34.69564603207598], [-77.43629035048167, 34.694982647935845], [-77.43644447028181, 34.694297847610656], [-77.43657420705554, 34.693963796524876], [-77.4365935794317, 34.69362969145628], [-77.43633626314147, 34.693321558632114], [-77.43638782624615, 34.69326917376005], [-77.43630008206969, 34.69329346967943], [-77.43625977339877, 34.69329481538728], [-77.43589553041357, 34.69340064480923], [-77.43517766005621, 34.69332788402708], [-77.43499744043866, 34.69336585410081], [-77.43497154726043, 34.6933859303746], [-77.4349568204785, 34.69339830272609], [-77.43485733510578, 34.69346158100834], [-77.43447854123053, 34.69379012620683], [-77.4343234781654, 34.693822195148826], [-77.4341622851442, 34.69403747040852], [-77.43404432183233, 34.694197355601176], [-77.43388671935409, 34.69460385843701], [-77.43384220684949, 34.69468574008141], [-77.43375119754941, 34.69481603581596], [-77.43369649775035, 34.695040719580234], [-77.43369801122225, 34.69519437660003], [-77.43356285096296, 34.69557005392923], [-77.43354462583176, 34.69569980034717], [-77.43352912811234, 34.69580150337061], [-77.43350418622862, 34.69596518837048], [-77.43354203458847, 34.69618133391704], [-77.43354762817673, 34.69624017511653], [-77.43356258416014, 34.696265134292226], [-77.43355712150131, 34.69630847248565], [-77.43352754042836, 34.6966949512054], [-77.4336636100464, 34.69685951111592], [-77.43349162625184, 34.69694920358735], [-77.43347968312807, 34.69707473035007], [-77.43339835324122, 34.69717064301128], [-77.43338952059389, 34.69719894603889], [-77.43342579985618, 34.697335417890535], [-77.43345420522608, 34.697592452866836], [-77.43347527365927, 34.697609549925645], [-77.4337060642472, 34.69782950414328], [-77.43389439897453, 34.69805831069323], [-77.43403211982184, 34.69826993847957], [-77.43459322894348, 34.69886169255786], [-77.43452281205559, 34.69895793783826], [-77.43461170988036, 34.699129586978245]], [[-77.31434753753032, 34.640330722935026], [-77.31398027844283, 34.64043161603707], [-77.31393052036947, 34.641918959220874], [-77.31462507238412, 34.64171409452025], [-77.31511672630404, 34.641866961237696], [-77.31543424991484, 34.64178979658399], [-77.31593142710337, 34.641842942171905], [-77.31613752291122, 34.64177927065688], [-77.31623982544264, 34.641784490540054], [-77.31632188775085, 34.64177743700449], [-77.31656175573355, 34.64179347754121], [-77.31680262342596, 34.641733082499], [-77.31703844192964, 34.64136728163538], [-77.31705327696915, 34.64129977657312], [-77.31691283467381, 34.64060820945816], [-77.31686148969482, 34.64054756390601], [-77.31619785759285, 34.639979835217616], [-77.31609389410505, 34.63993361936181], [-77.3159257073257, 34.63983184854979], [-77.31550685158805, 34.639726798673564], [-77.31497775688084, 34.63984705942645], [-77.31489402581883, 34.63986342715955], [-77.31482557223723, 34.639886327172846]], [[-77.43318667400271, 34.70172424612562], [-77.43258833363699, 34.7016925889706], [-77.43244791941903, 34.70146595964169], [-77.43266080806563, 34.701442114479036]], [[-77.3997390565537, 34.66867760202211], [-77.39962754993064, 34.66873723864101], [-77.39932070898828, 34.66874130863795], [-77.39933962745174, 34.669001741713835], [-77.39961659703009, 34.66929255437627], [-77.39965821741478, 34.66934700756134], [-77.3997970643374, 34.66935573631355], [-77.39994079458575, 34.66900773879049], [-77.40012018533756, 34.668909711013555], [-77.39988232320438, 34.66857336326168]], [[-77.33359771350918, 34.56288284844395], [-77.33306633742131, 34.56322802254899], [-77.3328167566612, 34.5634170538678], [-77.33249332088897, 34.56354224894162], [-77.3320286176947, 34.563691489373745], [-77.33176600071839, 34.56371224412884], [-77.33146818801934, 34.564038037257646], [-77.33182164000779, 34.564209801387705], [-77.33202818198923, 34.56420244901189], [-77.33236047452263, 34.56426792838887], [-77.33246475918386, 34.56427333428621], [-77.3328159118468, 34.564418848111266], [-77.33289749722161, 34.56459358605689], [-77.33292081290823, 34.564678312195426], [-77.33301667570036, 34.564881299352436], [-77.33311312975857, 34.565075206340595], [-77.33314359826545, 34.565141588000934], [-77.33344292678339, 34.56545233716834], [-77.33360285179484, 34.565588036367544], [-77.33395730483608, 34.56584527973743], [-77.33399658689503, 34.565862574212645], [-77.33428621401366, 34.566067938595396], [-77.33439032023816, 34.56614239792426], [-77.33440237455409, 34.56615049486885], [-77.33441831283665, 34.56616120062619], [-77.33478406585948, 34.56641043173637], [-77.33484898354745, 34.5664538334177], [-77.33493443811169, 34.56651154223835], [-77.33517781831225, 34.56667313488897], [-77.33534785339984, 34.56669339960147], [-77.33546976988275, 34.5668591209799], [-77.33557158268019, 34.56692411790365], [-77.33575710143616, 34.567042334871864], [-77.33579353168773, 34.56705185784295], [-77.3359653980809, 34.56711448220755], [-77.33607649188357, 34.567076751845754], [-77.33623939488294, 34.56704366977468], [-77.33628025136487, 34.566828099864516], [-77.33626916476771, 34.56674419194921], [-77.33625208447796, 34.56663062249958], [-77.3362276448429, 34.56646812175623], [-77.33614494558033, 34.56633751020185], [-77.33596630341307, 34.56598804885468], [-77.33594875869149, 34.56596010619445], [-77.3359377192392, 34.56594276280605], [-77.33587668982183, 34.56585485233231], [-77.33562540332726, 34.56550636082925], [-77.33561559149294, 34.56513999314991], [-77.33568703100383, 34.56482776466766], [-77.33566883579957, 34.56460501622375], [-77.33561968455285, 34.56429032317785], [-77.33549319638303, 34.56397101517294], [-77.33528908504404, 34.56360598731675], [-77.3352499905261, 34.56349439321442], [-77.33518048212551, 34.5634014484132], [-77.334928754405, 34.56296315498739], [-77.33445207503136, 34.56282362865274], [-77.33439305636223, 34.562821963382554], [-77.33435012426294, 34.56282094901674], [-77.33365005397036, 34.562875324066475], [-77.33360804916377, 34.5628781960808], [-77.33360511005186, 34.562879064314366], [-77.33360298342375, 34.56287979977695]], [[-77.37268495070724, 34.733116695428706], [-77.37244601317411, 34.73287504619456], [-77.37233630928958, 34.73262868450213], [-77.37184083968285, 34.73223459390892], [-77.37206324516185, 34.7317806495586], [-77.37197309273711, 34.73167057182788], [-77.37185458004424, 34.73170760241556], [-77.37178665713712, 34.73221932906267], [-77.37176973527839, 34.732264212694474], [-77.37186193807466, 34.732828594791066], [-77.37178978029286, 34.7331484009423], [-77.37196714230478, 34.733900761138216]], [[-77.36755419792603, 34.55087464088516], [-77.36801063777601, 34.55143391894858], [-77.36819159264357, 34.551700421589416], [-77.36825639254042, 34.551730708216766], [-77.36831677301984, 34.551869421281964], [-77.368382036798, 34.55211840597705], [-77.3683945068794, 34.55216084244779], [-77.36842163794799, 34.55222740869637], [-77.36851541567046, 34.55263307682383], [-77.36858283819734, 34.552802525919844], [-77.36862795468139, 34.55289786875343], [-77.36868237500114, 34.55305584436754], [-77.36870641231432, 34.553095214823294], [-77.368939497398, 34.55314486657434], [-77.36907018402962, 34.553267477780935], [-77.36936115969145, 34.55330851637348], [-77.36973455174805, 34.55343674311939], [-77.37036972124821, 34.55363620619634], [-77.37063961323418, 34.553813778210674], [-77.37084865637253, 34.553899995167626], [-77.37127403970995, 34.553898780768506], [-77.37142736833069, 34.55392744011637], [-77.37154145819035, 34.553902565067716], [-77.37167446116761, 34.55384809380193], [-77.37182132941086, 34.55376809042641], [-77.3719653820725, 34.55369511729637], [-77.37221538713135, 34.55334947224997], [-77.37233897474914, 34.55319463398952], [-77.37249346022337, 34.55303922749939], [-77.37266732538842, 34.552737272352296], [-77.37273986407166, 34.55251406645392], [-77.3726878220045, 34.55231561641836], [-77.372701706768, 34.55202990752917], [-77.37270591267202, 34.551331022839506], [-77.37344728891773, 34.55094314671928], [-77.3730973041489, 34.55048053855643], [-77.37229601031203, 34.54953719004292], [-77.37212536540405, 34.54928501110361], [-77.37198933698399, 34.54919462384651], [-77.37172819297622, 34.548868689374665], [-77.37121175738729, 34.5483273600576], [-77.37096961816978, 34.54822862550999], [-77.37076194849554, 34.54793815926204], [-77.37029513988502, 34.54777356255751], [-77.36997736095148, 34.547910947657854], [-77.36975646237613, 34.547909623251535], [-77.36918891991633, 34.548052971464905], [-77.36894555956327, 34.54782950405699], [-77.36859858818882, 34.54772455951892], [-77.36825497393177, 34.54738663035217], [-77.36763815616249, 34.54719054845812], [-77.36737951041688, 34.54708369242195], [-77.36715716172914, 34.54695291425772], [-77.36685960915517, 34.54689867124283], [-77.36670884738865, 34.54692383997257], [-77.36646549534451, 34.54696507467287], [-77.3662901129131, 34.547077817783695], [-77.36619519178859, 34.54717067967145], [-77.36606384569727, 34.54736184218778], [-77.36567330071242, 34.547656320068626], [-77.36561504711611, 34.547881891048775], [-77.36468142438943, 34.54828884180169], [-77.3644676759024, 34.54849038178925], [-77.36412978216055, 34.54914622962105], [-77.36420525743648, 34.54933672749285], [-77.36418190373762, 34.54950386644484], [-77.3640531385039, 34.54984828858564], [-77.3643405123683, 34.55024218877653], [-77.364275091419, 34.55030597160395], [-77.36384358978584, 34.55072546647936], [-77.36442457796025, 34.55037841012688], [-77.36575481427792, 34.550244538597745], [-77.36600027130213, 34.550149183976686], [-77.36748067452861, 34.55082353033788], [-77.3674847438822, 34.550866370684105]], [[-77.32033045880081, 34.55553474957662], [-77.320166184769, 34.555569448702606], [-77.32026612906388, 34.55565700853577], [-77.32024466147831, 34.55571101797235], [-77.32032232854532, 34.555882897212356], [-77.32052156634879, 34.55574248938197], [-77.32039185408033, 34.55563894777572], [-77.32035316084102, 34.55562897984439]], [[-77.41392464635074, 34.72630429262843], [-77.41425605408335, 34.727053372245415], [-77.41442284972855, 34.72710955109572], [-77.41491896033111, 34.727298518748526], [-77.4150495852171, 34.727249959213424], [-77.41538488606352, 34.72718598312444], [-77.41556529252958, 34.726953749130075], [-77.41560324924205, 34.726884464156086], [-77.4155770163901, 34.7267520020458], [-77.41554746741222, 34.72651482430311], [-77.41538508136361, 34.726249081405726], [-77.41530655092086, 34.72596033791659], [-77.41477667927936, 34.725943548633495], [-77.41448188301874, 34.725709964971294], [-77.41394463587578, 34.726235280299015], [-77.41391161900475, 34.72627389879732], [-77.41353806684577, 34.72616230718489], [-77.41391207577007, 34.72630410549909]], [[-77.39239871326137, 34.6005849645113], [-77.39269242076098, 34.60081385414152], [-77.39284077466215, 34.60089410348567], [-77.3930865337052, 34.60086028646723], [-77.3931810841596, 34.600902992732294], [-77.39337300865111, 34.60086121547376], [-77.39348065539853, 34.60081354203149], [-77.39359459046581, 34.6008224798056], [-77.39387477882633, 34.60074028769307], [-77.39410599210309, 34.600695971132474], [-77.39426890167128, 34.60066474618725], [-77.39443970316691, 34.600582760581375], [-77.39446596711132, 34.60057145520427], [-77.39452648294062, 34.60053334832244], [-77.394663034122, 34.60045169236354], [-77.3947208204612, 34.60042047272173], [-77.39481491190372, 34.600344653061], [-77.39505717192044, 34.600134666340224], [-77.39521604112993, 34.60003336639256], [-77.39584505341638, 34.59977189981163], [-77.39584542164499, 34.599771832652785], [-77.39584563226722, 34.599771646527266], [-77.39584645680698, 34.59977130071005], [-77.39616494320514, 34.599644999780836], [-77.39623954303943, 34.5996049531348], [-77.39643589861436, 34.59947323205812], [-77.39663367102509, 34.59928197929919], [-77.39670424624728, 34.599223001137226], [-77.39688585210081, 34.59904389349859], [-77.39734079995586, 34.59879398848014], [-77.39742191223559, 34.598764142076014], [-77.39746583447798, 34.59873588771418], [-77.3976533083304, 34.59866152804192], [-77.397816025498, 34.5985971716975], [-77.3978567284159, 34.598588334846646], [-77.39815077943524, 34.598525822505785], [-77.39821013499196, 34.59849245552405], [-77.39838200951564, 34.598371250322515], [-77.39860424604052, 34.598300352966206], [-77.39869800894898, 34.59818725734204], [-77.39899836197203, 34.597844177483324], [-77.39910410745946, 34.59771700839066], [-77.39918954764318, 34.59759076391856], [-77.39944510432059, 34.5971860177815], [-77.3996623938917, 34.59709797346103], [-77.39958925208771, 34.59689654066406], [-77.3992764592117, 34.59702865799929], [-77.39899838296091, 34.597030623629294], [-77.39878313214007, 34.59703214448044], [-77.39839241472679, 34.597052935553634], [-77.3982101853266, 34.59705749295227], [-77.39810313154915, 34.59701368049161], [-77.39749891478593, 34.59706838483207], [-77.3974219877685, 34.59706316298498], [-77.39734549138342, 34.597090050900505], [-77.39676484498585, 34.597232596994026], [-77.39663377629532, 34.59731836679691], [-77.39642210315516, 34.597368874134474], [-77.39623966873145, 34.597443687638645], [-77.39610039233742, 34.59746177078282], [-77.39598636582485, 34.59747657545223], [-77.39584556726604, 34.597454032604475], [-77.39563559358999, 34.59748049060113], [-77.39554186152768, 34.59726780411613], [-77.39564918508043, 34.59704072881924], [-77.39571197904276, 34.59681869565536], [-77.39584562085464, 34.59661623884047], [-77.39595863584657, 34.59648029089567], [-77.39614287512596, 34.5963319706448], [-77.39640649777485, 34.59604901305423], [-77.39663385538924, 34.59587599590806], [-77.39698720746861, 34.595741707336146], [-77.39703696444565, 34.595353856436475], [-77.39724022656836, 34.59512861970231], [-77.39742208096368, 34.59502796380656], [-77.39781231793316, 34.59482159503261], [-77.39781617869268, 34.59481988908086], [-77.39781821698901, 34.59481878064936], [-77.3978182726061, 34.59481432106382], [-77.39786701254306, 34.59438497264005], [-77.39781620147045, 34.59427947284951], [-77.3977216776718, 34.594083211187964], [-77.39762513064271, 34.59399529343273], [-77.3974221373422, 34.593826098111236], [-77.3972916385544, 34.593759427447594], [-77.39718254376263, 34.59363456693259], [-77.39702806953679, 34.59352602962415], [-77.39685217829, 34.59344715569084], [-77.39678853948315, 34.59343333538717], [-77.39663399233575, 34.59343970197764], [-77.39636969494353, 34.59346707680983], [-77.39623990697004, 34.593497394313694], [-77.39611596074579, 34.593497385796276], [-77.39599323675141, 34.59354037250701], [-77.39584582000506, 34.59356962655877], [-77.39568434376615, 34.59360007538205], [-77.39562690194096, 34.59362311447463], [-77.39545172448004, 34.59375192591699], [-77.39516433157718, 34.593810736658426], [-77.3950576338649, 34.59384570890269], [-77.39497318856115, 34.5938622792866], [-77.39489943440663, 34.59396389404741], [-77.39461447678875, 34.59437674277981], [-77.39426939881928, 34.59463436125855], [-77.39411825527198, 34.59476288401026], [-77.39353159239266, 34.59495602026072], [-77.393481194221, 34.59493942759211], [-77.39325649683416, 34.594807902300985], [-77.39304383650315, 34.594702732298835], [-77.39298122956862, 34.59466512151652], [-77.39283079242816, 34.59453842751942], [-77.39283928791745, 34.59441855090749], [-77.39285977883765, 34.594258066620675], [-77.39287396809033, 34.59406116694595], [-77.39292560723825, 34.59364987362803], [-77.39291378171306, 34.59340113757437], [-77.39303372193746, 34.59301698824231], [-77.39304178055696, 34.59295810776364], [-77.39295296598098, 34.592826172708214], [-77.3931985055155, 34.592815711188294], [-77.3934814208684, 34.59254643198578], [-77.3935136953919, 34.59250024335943], [-77.39356667379198, 34.59245783539361], [-77.39375860988521, 34.592304195325724], [-77.39387552952894, 34.59221060349033], [-77.39389774781428, 34.59219780018491], [-77.39400916622324, 34.59211341320713], [-77.39418764447537, 34.59194370275345], [-77.39417934531002, 34.59161762959321], [-77.39387558069566, 34.591650298265904], [-77.39379865384531, 34.59165811540637], [-77.39355000953921, 34.591684905166005], [-77.39348149964357, 34.59172486225275], [-77.39319719762068, 34.5919682585561], [-77.39308739358228, 34.5920398448372], [-77.39306624244036, 34.59208265589573], [-77.39269327443594, 34.59245118748636], [-77.39251315461156, 34.59241571400572], [-77.3922992109612, 34.59231972430993], [-77.39222446357813, 34.59230737133523], [-77.39210384961768, 34.59224423334226], [-77.39190514662762, 34.592206179405096], [-77.39181205962734, 34.59218602074692], [-77.39170811274059, 34.592167285438805], [-77.39165631706163, 34.592152293568624], [-77.39154223910359, 34.59214651283101], [-77.39151107712337, 34.59214426925912], [-77.39146840416907, 34.59216955857162], [-77.39138258486732, 34.59220982137212], [-77.39138354851545, 34.59227320352044], [-77.3913965707824, 34.592346230654236], [-77.39142417258503, 34.59243584129344], [-77.39145267595143, 34.59269986096784], [-77.39145935685751, 34.59276174587549], [-77.39150365458545, 34.59317206249576], [-77.39150138477099, 34.59318025470141], [-77.39148734170894, 34.59320771484606], [-77.39128441014054, 34.59363611312014], [-77.39125075270749, 34.59378528377055], [-77.3911167640762, 34.594057953716], [-77.39098259433274, 34.594384269902925], [-77.39085891777476, 34.59454660884903], [-77.39072259781656, 34.59468928860262], [-77.39051206537839, 34.59479439209967], [-77.39032848146871, 34.59489816606213], [-77.38999463711201, 34.595030879254594], [-77.3899343710206, 34.59504825135303], [-77.38986849913778, 34.59504302481075], [-77.38954029185398, 34.594966696741906], [-77.3893597316299, 34.59495730740207], [-77.38883009112924, 34.59492315235884], [-77.38875210825152, 34.594984578381386], [-77.3884725350333, 34.5954387180927], [-77.38835791247556, 34.595662500072265], [-77.38832369469749, 34.595724443586086], [-77.38798602382141, 34.59578603745263], [-77.38796379763211, 34.595793579346356], [-77.38793516519362, 34.59578646584994], [-77.38768845310717, 34.595724962337314], [-77.38756973075542, 34.59562468911483], [-77.38747004735968, 34.59556720428253], [-77.38729930173156, 34.595193001118936], [-77.38724656207549, 34.5950674556604], [-77.3872197973391, 34.5950238480644], [-77.38717578000654, 34.594779434764824], [-77.38700990541498, 34.59443120463018], [-77.38699851981767, 34.59425408082413], [-77.3870412359178, 34.5941028475827], [-77.3871759388933, 34.59384458255276], [-77.38727731602722, 34.59347390336359], [-77.38736809237147, 34.59335166527856], [-77.38757013879966, 34.5931542370167], [-77.38770998584243, 34.593028448331374], [-77.38787909306396, 34.59285342441009], [-77.38792480387876, 34.59280430662027], [-77.38796429209178, 34.59271367453239], [-77.388068576054, 34.592513854321936], [-77.38814638513361, 34.59239031883115], [-77.3883584587652, 34.5921619732399], [-77.3885433145563, 34.59210766985933], [-77.38875255416158, 34.5920434223101], [-77.38898871015121, 34.592014444804], [-77.3893077891349, 34.59197190957799], [-77.38954072033053, 34.59195325987706], [-77.38966971607778, 34.591885072884], [-77.3897377689296, 34.59187834122326], [-77.38988134399384, 34.591773205994535], [-77.3899348272087, 34.59173105285616], [-77.38994829100507, 34.5917204412479], [-77.38996141051365, 34.591704045429864], [-77.39004763513937, 34.59160084554753], [-77.3900718412238, 34.5915405335306], [-77.39009032028319, 34.591473172630714], [-77.38993488315126, 34.59132819295452], [-77.38990512061598, 34.5913196604844], [-77.38974819431992, 34.59132136905175], [-77.38973784746322, 34.59132204688459], [-77.38960374129128, 34.591331050894325], [-77.38954484406158, 34.59133519621169], [-77.38954080898743, 34.59133537689187], [-77.38953596143764, 34.59133560168764], [-77.38916285472277, 34.59137725010515], [-77.38914672926597, 34.591379050114675], [-77.38912880935533, 34.59138022570559], [-77.388809468315, 34.591384367474404], [-77.3887526569395, 34.59137128102801], [-77.38863530127594, 34.591344247938316], [-77.388358590661, 34.59132517733312], [-77.38817694380836, 34.59130791568624], [-77.38816155753094, 34.59130280340964], [-77.38812955807404, 34.591296848915256], [-77.3879645243008, 34.59128174458023], [-77.38779848851732, 34.59116677528281], [-77.38773078345663, 34.59100384716092], [-77.38772200240999, 34.590916448985524], [-77.38778125065767, 34.590744693000374], [-77.38785003811034, 34.59061131087117], [-77.387964644009, 34.59054725778674], [-77.3883061234174, 34.59018772604272], [-77.38842002405532, 34.590162035447406], [-77.38875284931862, 34.590118900345935], [-77.38910761850894, 34.59008653725952], [-77.38914692267099, 34.59008014969998], [-77.38919063835992, 34.590069814205435], [-77.38943010291366, 34.5899628945148], [-77.38954102092674, 34.58986635841729], [-77.389665208376, 34.589757696123584], [-77.38975218714103, 34.58961137109307], [-77.38980361601554, 34.58946224591477], [-77.38978846059263, 34.589339628562655], [-77.38974215410911, 34.589188249158816], [-77.38961206686714, 34.58913057644169], [-77.38954113214041, 34.58909964479112], [-77.38948401022165, 34.58907473630734], [-77.38937574191453, 34.589028800240214], [-77.38935508809072, 34.58901995321764], [-77.38930909302205, 34.58900067691219], [-77.38914709451555, 34.58893280924944], [-77.38909630643232, 34.588911532023026], [-77.38899913045078, 34.588870820724615], [-77.38883940030881, 34.588800819964156], [-77.38875305901388, 34.58876215363328], [-77.38858350936651, 34.58868886906513], [-77.38846688275268, 34.58863921324593], [-77.388359024801, 34.58859303778979], [-77.38832519650646, 34.58857987604321], [-77.38825684477455, 34.58855328191093], [-77.38796498997478, 34.58843714966426], [-77.38779869891196, 34.58837394803834], [-77.38767051718425, 34.58832052879461], [-77.3875709568716, 34.5882792961299], [-77.38753946345062, 34.58826608247867], [-77.38745145191837, 34.5882448379478], [-77.38737393641837, 34.58822621007607], [-77.38723611952376, 34.58821208987656], [-77.38717691076249, 34.5882043542765], [-77.3870744339492, 34.58818878154422], [-77.38678285606343, 34.58818090941906], [-77.3865958070983, 34.588145171440175], [-77.38656641775732, 34.58813923507135], [-77.38638880364452, 34.58814575158472], [-77.38633169790458, 34.58813246502683], [-77.38622717489301, 34.588209063597084], [-77.38620563038182, 34.58822711480235], [-77.38612888595, 34.588290961508484], [-77.38599469865585, 34.58839094217846], [-77.38591815320879, 34.58846589782331], [-77.3857241261603, 34.5886269655411], [-77.38560770530054, 34.58893522009863], [-77.38575850768821, 34.589167795224604], [-77.38578379525485, 34.589334400760194], [-77.38578566053648, 34.58953371153575], [-77.38568978790872, 34.589772519782684], [-77.38560036002761, 34.58983750637354], [-77.38535435165824, 34.5899804240361], [-77.38520624806402, 34.590066463708766], [-77.38493436476924, 34.590174322386495], [-77.38481214848997, 34.590222833021926], [-77.38473565956437, 34.59025222924882], [-77.3846091320452, 34.590352870482974], [-77.38430914702063, 34.59070342404789], [-77.38419917982034, 34.59107218060142], [-77.38423203228301, 34.5912563613357], [-77.3844230959553, 34.59164766603854], [-77.38442845709288, 34.59165261318472], [-77.38481183391727, 34.591790263969614], [-77.38493329141632, 34.59187353327796], [-77.38509490258903, 34.591981109473494], [-77.38515645708479, 34.59202546569525], [-77.38520581894332, 34.59225744101204], [-77.38523231475395, 34.59235730032294], [-77.38522736478498, 34.59240982531514], [-77.38520578489856, 34.59243198165105], [-77.3850122154166, 34.59263365997993], [-77.3850026834787, 34.592637739573405], [-77.38481165575824, 34.59268189363466], [-77.38451578014049, 34.59248915721451], [-77.38445517097763, 34.592457439162835], [-77.38441762706442, 34.5924281445856], [-77.38429741477137, 34.59239111361603], [-77.38402357949026, 34.59227598497355], [-77.38393349530227, 34.59224558587214], [-77.38373008310595, 34.59217784628021], [-77.38341556826897, 34.59202915564688], [-77.38323552000847, 34.591827846219104], [-77.38302831346085, 34.59165314799955], [-77.38282811293709, 34.59145872547532], [-77.38266001548165, 34.59125399299276], [-77.38244752137962, 34.59114966828938], [-77.38238147540977, 34.59109853711117], [-77.38244756026002, 34.5909799169963], [-77.38258973030256, 34.59079708106282], [-77.38319594073167, 34.59059950988355], [-77.38323578485034, 34.590620788447296], [-77.38337716545536, 34.59068279004813], [-77.38328520393588, 34.59054371116032], [-77.38326801886184, 34.590511485621306], [-77.38323581911514, 34.590465012906314], [-77.38300238249687, 34.589986961911364], [-77.38257215189498, 34.58979735924808], [-77.38258379871755, 34.589649226759995], [-77.38244788846795, 34.58955039342845], [-77.38229769161984, 34.58967512874425], [-77.38223854254362, 34.58964640361512], [-77.38221176225979, 34.58963702186256], [-77.38218968305237, 34.589574303410735], [-77.38226461969919, 34.58941712081579], [-77.38244794528578, 34.589303544774026], [-77.38266526010494, 34.58916891042037], [-77.38251192950294, 34.58895690996854], [-77.38249569202154, 34.58890790584727], [-77.38244806731429, 34.58877409106698], [-77.38236522755022, 34.58855349018609], [-77.38223671353154, 34.58837526194217], [-77.38218841394213, 34.58815441049337], [-77.38211833931118, 34.588095368089796], [-77.38205417451032, 34.58805385456523], [-77.3819011467531, 34.587936155101815], [-77.38174631260412, 34.58788639428594], [-77.38166015929684, 34.58787109343612], [-77.38157712652333, 34.5879074036401], [-77.38135508933846, 34.58794585160417], [-77.38126604845209, 34.58808482112828], [-77.38098063158469, 34.58821140072457], [-77.3808719410142, 34.58827657473143], [-77.38072673955678, 34.588208619689276], [-77.38047786751144, 34.588327732229175], [-77.38037550083668, 34.588305403882515], [-77.38044453102292, 34.58840575207314], [-77.38047782746877, 34.58848504033931], [-77.3807107600498, 34.58854096806734], [-77.38056465253216, 34.588906664468574], [-77.3804077748081, 34.589260176346954], [-77.38048165667, 34.58966964317649], [-77.38048061552384, 34.589674243078235], [-77.38048127681795, 34.58967819066742], [-77.38060815422028, 34.59008042602447], [-77.38057071451783, 34.59040978420002], [-77.38058639187982, 34.59062567595757], [-77.38047724060405, 34.590798538950224], [-77.38041752054701, 34.590957027433255], [-77.38035388919798, 34.59125799117415], [-77.38034289145676, 34.591392346340136], [-77.38034789039456, 34.59153078349082], [-77.38040429104439, 34.59180806093106], [-77.38047564488069, 34.59222100967992], [-77.3804756672459, 34.5922223389041], [-77.38047537527673, 34.59222400306041], [-77.38046556571541, 34.592648357769264], [-77.38062270134486, 34.593207639811176], [-77.38048767332636, 34.59349429922243], [-77.380334430109, 34.59378790338067], [-77.38008231810366, 34.594114136095094], [-77.3798422998074, 34.59417786891979], [-77.37995801888968, 34.59441975585342], [-77.3800423200827, 34.5944506057854], [-77.38008222463712, 34.594480386170154], [-77.38041887788059, 34.59477790524214], [-77.38044626923367, 34.59480623834256], [-77.38069079511561, 34.5951632818567], [-77.38067973468131, 34.59537005195551], [-77.38077439019507, 34.59557579883291], [-77.38065818010693, 34.595788823554294], [-77.38041279994954, 34.596052471555446], [-77.38021839833061, 34.59622766595316], [-77.38008175616159, 34.59632292562941], [-77.37959982717096, 34.596688704654994], [-77.37929339597495, 34.59694209684662], [-77.37921448058931, 34.59698927967367], [-77.37913669007366, 34.597085491144924], [-77.37850496454388, 34.59778051145327], [-77.37836267518757, 34.5978928952118], [-77.37831539648687, 34.59805296008006], [-77.37818657330325, 34.59841432815693], [-77.37806783177928, 34.59893775597887], [-77.37850450804206, 34.599465724592406], [-77.37858516641349, 34.59962540278204], [-77.37868153120303, 34.599698453916865], [-77.37902584516637, 34.599936217038795], [-77.379103218941, 34.600062254910384], [-77.37929256408015, 34.60012332736286], [-77.37951926528469, 34.60018263595056], [-77.37968663272429, 34.60031144202712], [-77.37972362097783, 34.600357561905916], [-77.37978184473765, 34.60038903019276], [-77.37997151043515, 34.60047933184745], [-77.38008070398455, 34.600496026218885], [-77.38027301674666, 34.60052542818622], [-77.38027775573926, 34.60052585047534], [-77.38028118241543, 34.600525665337074], [-77.38047481541457, 34.60052408076251], [-77.38067395518192, 34.600470527994844], [-77.38086894796781, 34.60046532511773], [-77.38099940701954, 34.600497592079776], [-77.38116098659489, 34.60050489730825], [-77.38126305697894, 34.60050340873294], [-77.38142854436978, 34.600398049212444], [-77.38147625856756, 34.60037449283356], [-77.38149309434925, 34.60031922990933], [-77.38149588201311, 34.60014202558092], [-77.38149045025989, 34.59996306729952], [-77.38165734802286, 34.59975827152516], [-77.38188893949948, 34.599485667798604], [-77.38229498461573, 34.59934005965073], [-77.38244568195404, 34.599287422688676], [-77.38281205020203, 34.59955759856196], [-77.3828397305513, 34.59957843977226], [-77.38313956861852, 34.5999051352411], [-77.38315391399297, 34.599989078346354], [-77.38316295718622, 34.60032632931487], [-77.38319215204996, 34.60036685331161], [-77.38323365864338, 34.60044805963999], [-77.38325568820504, 34.60050150302246], [-77.38329578252485, 34.60051946796878], [-77.38338260186971, 34.60055876216593], [-77.38351702760967, 34.600580587852896], [-77.38362774165034, 34.600613781746], [-77.38367468399991, 34.600626567494054], [-77.38376683848699, 34.60066385671412], [-77.38393438215985, 34.60073391688684], [-77.38402183102278, 34.60075565396549], [-77.38420900913954, 34.600823037494344], [-77.38423609219207, 34.60082704987597], [-77.3844159295657, 34.6008576381059], [-77.38452570277191, 34.60086078855451], [-77.38471297658418, 34.600847475744786], [-77.38481007076683, 34.60074404468023], [-77.3849386837101, 34.60063347501142], [-77.38505759409927, 34.60047780925356], [-77.38520426637334, 34.60033671356577], [-77.38546348227804, 34.60027396609315], [-77.38559841118985, 34.600183898762964], [-77.3857018896907, 34.60027344435856], [-77.3858080265605, 34.60036963649206], [-77.38591605675299, 34.60043639315208], [-77.38599246902858, 34.600505925785946], [-77.38612888862473, 34.600600972063404], [-77.38623942550255, 34.60073201596123], [-77.38638652683812, 34.600845725814864], [-77.3865467317964, 34.600939683795445], [-77.38664803972694, 34.60095484855875], [-77.38678062594997, 34.60096127180461], [-77.38709066061053, 34.60094328724596], [-77.38717475809548, 34.60088315220215], [-77.38727787350224, 34.60089579786649], [-77.3875688818077, 34.60085222784578], [-77.38765427773006, 34.60086062362323], [-77.387873234951, 34.60082434708723], [-77.38796301613232, 34.600750997641434], [-77.38827065373975, 34.6005323865062], [-77.38838847295493, 34.60045591511507], [-77.38875131337187, 34.60033283212527], [-77.38922679989193, 34.6002136935718], [-77.3895395672565, 34.60017083025328], [-77.38983282347527, 34.600105296938544], [-77.3900443510569, 34.60006425367427], [-77.3903278112264, 34.60006010024588], [-77.3907885223228, 34.60000441890392], [-77.39111604244128, 34.60003676778325], [-77.39136256462403, 34.60015236540684], [-77.39184061795625, 34.600280475232104], [-77.39190424149712, 34.600301040470086], [-77.39193212613118, 34.6003057820986], [-77.39198198191548, 34.600328632673005]], [[-77.34989270384742, 34.75700671121892], [-77.34979745456434, 34.756352391926924], [-77.34995992228168, 34.75537824145456], [-77.34994697086309, 34.75535712464557], [-77.34998201535744, 34.75533784857056], [-77.34999923075094, 34.75533980153378], [-77.3500138290946, 34.75533678697287], [-77.35115573333694, 34.75510098302717], [-77.35131602895049, 34.75493121552564], [-77.35183131618462, 34.754422890973586], [-77.35210591707096, 34.75427430624618], [-77.35249129494645, 34.7540332415178], [-77.3526965984963, 34.75391283204474], [-77.35283324714518, 34.753832687537006], [-77.35290736231252, 34.753732454485146], [-77.35295885777704, 34.753506889243944], [-77.35295674671873, 34.753481986578926], [-77.3529542848407, 34.753469653740694], [-77.35294375204202, 34.75345230346703], [-77.35286766242105, 34.753339169754994], [-77.35272800838985, 34.75326968585895], [-77.3527122626269, 34.75326158063955], [-77.35265825158427, 34.75324062730014], [-77.3524089199386, 34.75323132832354], [-77.35214755745193, 34.75310564893784], [-77.35194906745735, 34.75306011955369], [-77.35186615186377, 34.753037677313806], [-77.3516833143858, 34.75301530572508], [-77.35157903370536, 34.75299501212256], [-77.35150971402737, 34.753003806502605], [-77.35126973549797, 34.75302869028502], [-77.35068822697988, 34.75330589752115], [-77.35062546295457, 34.7533547808849], [-77.35055674039673, 34.753420953924824], [-77.35012524294743, 34.753870524730516], [-77.34996674054909, 34.75404780222297], [-77.34978107791306, 34.75440512624872], [-77.34972391736682, 34.75447097089821], [-77.34962583290702, 34.75456318802812], [-77.3493743720034, 34.75479960650672], [-77.34882106477448, 34.75527121262245], [-77.34861050912572, 34.75539950828383], [-77.34816463813988, 34.755468679413326], [-77.34755650079056, 34.755649683700454], [-77.34750939642147, 34.75566205233214], [-77.34748276772694, 34.7556770881596], [-77.34745282222191, 34.75569930616823], [-77.34710968240717, 34.75598487877881], [-77.34709076866245, 34.75600781627138], [-77.34692093166346, 34.75625964911581], [-77.34686209907699, 34.75640384236922], [-77.34638479729593, 34.75682057022469], [-77.34609956566304, 34.75700493660845], [-77.34584189328628, 34.75727729194935], [-77.3454929731531, 34.75774417332099], [-77.34543739869608, 34.75792527903057], [-77.3452686324758, 34.75819729011906], [-77.34514318550902, 34.758453010915304], [-77.34503018566087, 34.75861080332467], [-77.34474908101703, 34.7589762175686], [-77.34473080432761, 34.75899694960567], [-77.34472559119689, 34.759009019010655], [-77.34453038060092, 34.75926812701587], [-77.3445403065677, 34.75945344210362], [-77.344543337809, 34.75951003818435], [-77.34454505039535, 34.75954201395629], [-77.34456564527687, 34.75960738408225], [-77.34466012161671, 34.759847714446735], [-77.34475036745974, 34.75996901956289], [-77.34484666503171, 34.76009846042141], [-77.34497275442632, 34.76026794420203], [-77.34543943086894, 34.76043104063061], [-77.34587324862713, 34.76078975389706], [-77.3461843624473, 34.76143499355247], [-77.34671197553511, 34.762529199058015], [-77.34714391655056, 34.76227392185965], [-77.35084245548066, 34.76120598023573], [-77.35054395559736, 34.75965946961998], [-77.35028721199518, 34.75847221663702], [-77.35024028684602, 34.75824115892469], [-77.35018146212926, 34.758067532463066]], [[-77.2911937122984, 34.641530925598396], [-77.29147777367913, 34.641222159636584], [-77.29201009230147, 34.64126550949367], [-77.29221458422492, 34.64127889396432], [-77.29227255365919, 34.64151078821777], [-77.29201037593296, 34.641682655052165], [-77.29161093806087, 34.64188685022381]], [[-77.36368460605358, 34.547439488623354], [-77.36367875526155, 34.54745395883952], [-77.3636013931672, 34.547529340034885], [-77.3634471451068, 34.547732142284346], [-77.36336666860029, 34.54778153848392], [-77.36330446066152, 34.54785083402389], [-77.36315275711718, 34.54786888530189], [-77.36290876181403, 34.547986256954005], [-77.36280636989872, 34.54800568038675], [-77.3625148193947, 34.548044754175294], [-77.36246234015562, 34.548118801341104], [-77.36248266099112, 34.548344923285256], [-77.36248574403255, 34.54837369931965], [-77.36267287256078, 34.548437461008184], [-77.36290045865704, 34.548349697660754], [-77.36328402541103, 34.54823805832858], [-77.36329566498821, 34.548235911629185], [-77.36330731763768, 34.548234682427434], [-77.3636887710106, 34.5482140459318], [-77.36433928672251, 34.548254705304444], [-77.36447345895387, 34.54823704028895], [-77.36486900562248, 34.54777217254957], [-77.36473324656993, 34.54763824886702], [-77.36464182505208, 34.547560070160245], [-77.36448908644388, 34.547552441031776], [-77.36420872798833, 34.547552455736856], [-77.36376401840235, 34.54744167834031], [-77.363734763754, 34.54742839933805], [-77.36370759614495, 34.547389706495736]], [[-77.38846686616391, 34.5654842809632], [-77.38850605896553, 34.565166094049616], [-77.38864459407364, 34.56502503452864], [-77.3887300927326, 34.56473820551166], [-77.38837928955155, 34.5647773238356], [-77.3883630316603, 34.56480722187433], [-77.38813198135033, 34.56522004176361], [-77.38817733408672, 34.565438059688546], [-77.38798658749363, 34.56607103475848], [-77.38800958112508, 34.566086830024126], [-77.38836279482908, 34.56614879828906], [-77.3883813970996, 34.5660332092854], [-77.38840543702489, 34.565651035397714]], [[-77.39565111241059, 34.523257798400415], [-77.39565747768492, 34.52326056932489], [-77.395661276469, 34.52325633143917], [-77.39566936573269, 34.52324792514513], [-77.39565766795864, 34.52325209950463]], [[-77.40356869281281, 34.67644063755304], [-77.4028226274931, 34.67611906719955], [-77.40240000662217, 34.676024998291616], [-77.40195776771989, 34.67594351101577], [-77.4015969894019, 34.67592600740573], [-77.40145704016078, 34.675706044955945], [-77.4013044329562, 34.67572895607696], [-77.40127459794118, 34.6757440330397], [-77.40114062799421, 34.67583507521038], [-77.40114035963673, 34.67583682816846], [-77.40114131415702, 34.675837737502896], [-77.40114349663591, 34.675839769041666], [-77.40131174185916, 34.67580468918312], [-77.40148989165105, 34.67609896955582], [-77.40152706844502, 34.676123162062716], [-77.40153736187946, 34.67613185238414], [-77.40182567067345, 34.67658182012685], [-77.40214440945648, 34.676758315554125], [-77.40242744063303, 34.67748337520795], [-77.40243033215599, 34.67753171018336], [-77.40242324047196, 34.67754396779251], [-77.40242291120121, 34.67755901958475], [-77.4022708945831, 34.67849086960331], [-77.40217469529135, 34.67857525015061], [-77.40213661608773, 34.678587140241646], [-77.4020677431248, 34.67872512397529], [-77.40169797958563, 34.679366016591764], [-77.40160014037887, 34.679492419587994], [-77.40138366183557, 34.67960002657709], [-77.40131346812586, 34.67967164574423], [-77.40123487888573, 34.67973073654173], [-77.40123733052012, 34.679814623450355], [-77.40131053649635, 34.67985452464768], [-77.40142703281575, 34.679830854919395], [-77.40160360702713, 34.67995989061561], [-77.40171937579035, 34.67992772794782], [-77.40174582084232, 34.68004886235783], [-77.40182143023912, 34.68012902052468], [-77.40217496227572, 34.680316196399204], [-77.40223422714678, 34.68036255825251], [-77.40235852205844, 34.68044674932575], [-77.40277524384038, 34.6807070763311], [-77.40300587585024, 34.680862279463724], [-77.40311126641593, 34.68093003915286], [-77.40331793367369, 34.68104583138472], [-77.40376470903479, 34.68125084787013], [-77.40388770076214, 34.68129111883601], [-77.40399813265628, 34.6813410624005], [-77.40433899734398, 34.68144215016417], [-77.4044821763086, 34.68145111019635], [-77.40482508400393, 34.681489147568854], [-77.40510880270472, 34.6815001043867], [-77.40526343329373, 34.68145804850579], [-77.40545420439297, 34.68140052535362], [-77.4054566673774, 34.681400060807256], [-77.40545932424922, 34.68139613690003], [-77.40558899655757, 34.681242434951905], [-77.40566525123509, 34.68109200456159], [-77.40567068307136, 34.680917158241556], [-77.40572116146589, 34.680622346652946], [-77.40570762564512, 34.68037095622897], [-77.40557088815548, 34.67990471329748], [-77.40553290688528, 34.67980820446537], [-77.40505418577064, 34.679619268954184], [-77.4050154326388, 34.679610040358995], [-77.40448116047153, 34.67943001759034], [-77.40443480011932, 34.67940230122615], [-77.40440764135354, 34.67938491943497], [-77.4043305461153, 34.6793298447009], [-77.404035915396, 34.67909364298241], [-77.40394517354301, 34.678880376959924], [-77.40376199527606, 34.678761569085054], [-77.40352341743085, 34.67812415625105], [-77.40327474198328, 34.678072150912925], [-77.40337223814198, 34.67787614620458], [-77.40339887031993, 34.67765930101759], [-77.4037659213989, 34.6772869271698], [-77.40410464012032, 34.67731751826735], [-77.40433397445764, 34.67753804626887], [-77.40434276281144, 34.67762665209808], [-77.40438010843819, 34.67766978567454], [-77.40483326067077, 34.67802659676211], [-77.40545398666691, 34.67804565497859], [-77.40546503613919, 34.67804674884404], [-77.40546849959802, 34.67804576525383], [-77.40555330071507, 34.67801435777581], [-77.40584000199873, 34.67791198066533], [-77.40593126814798, 34.67785669023648], [-77.40611537551553, 34.677718010583966], [-77.40575559263706, 34.6774836374743], [-77.40565597773993, 34.6773984549813], [-77.40544515194271, 34.67716680208568], [-77.40524696447117, 34.676854928963735], [-77.4052381084683, 34.6768068350423], [-77.40520893490978, 34.676729525241775], [-77.40464310421223, 34.6766087032913], [-77.40452905582852, 34.67651542092402], [-77.40393827773562, 34.67669186993453]], [[-77.38832929729317, 34.71064963032895], [-77.38801509306091, 34.71086221893507], [-77.38751306761998, 34.711253734426144], [-77.38735294018733, 34.71127585017379], [-77.38726677617156, 34.71137976791932], [-77.38732374103567, 34.71190669333422], [-77.38737422060089, 34.71237360659011], [-77.38819142893414, 34.71264760728716], [-77.38839419225557, 34.711948473213226], [-77.38847708768446, 34.71180339268723], [-77.38847998273977, 34.71162277145673], [-77.38864623962125, 34.710950809611894]], [[-77.41120476941481, 34.72684037480822], [-77.41089907492716, 34.72691675451463], [-77.4110998539004, 34.727202537595794], [-77.4114200520323, 34.727098946382434]], [[-77.38313919137897, 34.65494562472831], [-77.38294126460544, 34.655055295127525], [-77.38287135398764, 34.655114508889284], [-77.38272195238537, 34.65522339318578], [-77.38266901287942, 34.655293255953694], [-77.3826502753719, 34.65535593784815], [-77.38263164831297, 34.655472626631074], [-77.38264059131701, 34.65556827897727], [-77.38277742078695, 34.6559420397281], [-77.38278695534814, 34.655970157037316], [-77.3827945705738, 34.65598819333911], [-77.38282709125255, 34.6560777179018], [-77.38291732478008, 34.656319536047874], [-77.38293673915551, 34.656371564480786], [-77.38296628376656, 34.656451639150376], [-77.38303293850008, 34.65666503251143], [-77.38314128537561, 34.65676543645191], [-77.38332755032894, 34.656972178298915], [-77.3835564638372, 34.656776716202685], [-77.38360615823375, 34.65676574019032], [-77.38363660388123, 34.65669727940471], [-77.38361472689762, 34.65666124187338], [-77.3835581837335, 34.65652768312301], [-77.38348770367035, 34.656338354528906], [-77.38346671887784, 34.65629863853281], [-77.38336470688438, 34.65600748835516], [-77.38332852687333, 34.655895636429506], [-77.38331584236074, 34.65577728897359], [-77.38337277232996, 34.65560762547136], [-77.38351844792749, 34.65529934087371], [-77.3836262801423, 34.655276658485285], [-77.38371181540657, 34.65499885835618], [-77.3835431806562, 34.654864295277704], [-77.38335245505036, 34.65488249476836], [-77.38323523249646, 34.65492510500713]], [[-77.3924238269242, 34.710590318246744], [-77.39220641889537, 34.710543654375186], [-77.39198892663137, 34.71045005522075], [-77.39184501294153, 34.71039186225647], [-77.39155737827764, 34.710571173334635], [-77.39134297942597, 34.710273013270985], [-77.39132577370631, 34.710264420246276], [-77.39125465505126, 34.71017451480154], [-77.39119175307131, 34.710237266537305], [-77.39123959062964, 34.71031611105061], [-77.39130628610087, 34.71055693251064], [-77.39137506276688, 34.71070594715563], [-77.39144073284385, 34.71097353959318], [-77.3916172158846, 34.71149762261395], [-77.39226671596883, 34.71183009101223], [-77.39247689174064, 34.71182205930504], [-77.39305454706044, 34.711791082193756], [-77.39314883533342, 34.711776288857436], [-77.39370174308057, 34.71201969838117], [-77.39381952449469, 34.71199564611609], [-77.39421100982794, 34.712017003311956], [-77.3943579224862, 34.71196757304038], [-77.39484940304996, 34.7117968958692], [-77.39491965665997, 34.711679437121646], [-77.39508682761858, 34.71166453741627], [-77.39520056225531, 34.71164020540323], [-77.39519037344432, 34.711570180000784], [-77.39514135717877, 34.71147640916897], [-77.39509459513496, 34.711386950565476], [-77.39505403328378, 34.711309352261424], [-77.39473317053988, 34.71109130757105], [-77.39471838309024, 34.71091231626711], [-77.39468992749781, 34.71088617748817], [-77.3946736314228, 34.71087839793849], [-77.39459543214458, 34.71086928955306], [-77.39448654129751, 34.710970980971084], [-77.39421498110354, 34.71086101678264], [-77.39403422389144, 34.710872693600194], [-77.39396446222035, 34.710865351688696], [-77.39373014406804, 34.71081594043241], [-77.3936197060716, 34.71080740629174], [-77.39346954823773, 34.71080415445123], [-77.39340353700274, 34.71083690164458], [-77.39330795267735, 34.7107928214747], [-77.3929767296234, 34.71074638123235], [-77.39275563986355, 34.71086047695357], [-77.39261622899934, 34.71063486713026]], [[-77.43156775311962, 34.67585677069586], [-77.43187002928443, 34.67596004201467], [-77.43227332343012, 34.67620184561925], [-77.43227732314828, 34.67624863189213], [-77.4322793569216, 34.67627242188549], [-77.43230195612716, 34.67653677849624], [-77.43231516179699, 34.67666700975205], [-77.43236677084855, 34.67683897827282], [-77.43225004991123, 34.67697232657762], [-77.43213515221774, 34.67703750108069], [-77.432017162045, 34.67708734256606], [-77.43185831704548, 34.677079675309884], [-77.43145320429738, 34.67702680825286], [-77.43140815291959, 34.67697767874557], [-77.4310792681488, 34.67655375604279], [-77.43094103905794, 34.67637754180979], [-77.43092093995958, 34.67635620951029], [-77.43092945113247, 34.676308800695956], [-77.4309690356714, 34.67628076778966]], [[-77.39968565229891, 34.57034645684096], [-77.39973886730006, 34.57039095224377], [-77.3998490112471, 34.570389407170204], [-77.399878218984, 34.57022067286773], [-77.39986563280885, 34.56947133358469], [-77.3989994204315, 34.568591089301975], [-77.39858559050575, 34.56840374437343], [-77.39821150188024, 34.56842111422705], [-77.39796804321786, 34.56830924502051], [-77.39750468517163, 34.568113722124934], [-77.3974582370155, 34.56808309298561], [-77.39742359755579, 34.56808179737515], [-77.39740069655865, 34.56810404780948], [-77.39670156998172, 34.56815857760327], [-77.39663566791391, 34.56816016305988], [-77.3965892041108, 34.56819574161519], [-77.3964089333052, 34.568271822323844], [-77.39627243261356, 34.568324645278814], [-77.39624169069106, 34.56834550580648], [-77.39609032983631, 34.56853007628246], [-77.39610737141211, 34.56859517036219], [-77.39615314861089, 34.56873329909427], [-77.39618212955216, 34.568793267378396], [-77.39624164950592, 34.568861450497366], [-77.39637077838307, 34.568987300967144], [-77.39653228352682, 34.569103170577], [-77.39658057566987, 34.56915549427743], [-77.39663558703565, 34.569237950097474], [-77.39696766015054, 34.56953160635837], [-77.39734830390233, 34.569834578344036], [-77.39737286976363, 34.56988557434143], [-77.3974234794568, 34.56988765180475], [-77.39747608654301, 34.569872833491466], [-77.3980329564416, 34.56992811389246], [-77.3982114160082, 34.56995883797485], [-77.3985824985821, 34.57005640824437], [-77.39862039448043, 34.57005942117718], [-77.39899935092649, 34.57008954930736]], [[-77.38587981041937, 34.53017989808091], [-77.38529630609295, 34.53019545171085], [-77.38431275164339, 34.530769657171945], [-77.3848362420844, 34.530970204392446], [-77.38528189561512, 34.53083348568911], [-77.38573530623711, 34.53084749345115], [-77.38606722022004, 34.53082079485244], [-77.38651739411696, 34.530451675504345], [-77.38608271380973, 34.53013451955053]], [[-77.44026407132215, 34.61956906010907], [-77.4402694835677, 34.619261964151505], [-77.44022723624326, 34.61921117404087], [-77.44032438161193, 34.61903928600395], [-77.4402765589458, 34.618645015488], [-77.44053588525227, 34.61864124962923], [-77.44066455458076, 34.61834800819922], [-77.44072635741233, 34.61818300102595], [-77.44083315951582, 34.61796025518388], [-77.44084983913666, 34.61792593875383], [-77.44084683375925, 34.61791545060623], [-77.44085018784503, 34.61786868777685], [-77.44085177871096, 34.617607469344975], [-77.4408854780595, 34.61754653014386], [-77.4408822848329, 34.61744308273494], [-77.44062602955755, 34.616909043120984], [-77.44061765543108, 34.61688438650526], [-77.44060805038976, 34.61686406093014], [-77.44057540092425, 34.616864755107024], [-77.44055889826565, 34.616885549823174], [-77.44005721312583, 34.61689240008578], [-77.43975043412581, 34.61699815211005], [-77.43958076659314, 34.61707255495697], [-77.43945554121737, 34.61711883741562], [-77.43910018383748, 34.61723760403467], [-77.43900286806435, 34.617270128292716], [-77.43885933632723, 34.617318098544686], [-77.43864945019881, 34.617429710806505], [-77.43862993095941, 34.61744040206609], [-77.43862250102738, 34.6174467235404], [-77.43861722346095, 34.61745466119441], [-77.43859159015204, 34.61750043450727], [-77.43849711753953, 34.61767352204206], [-77.43856038204662, 34.6177346981068], [-77.43858779834034, 34.6178322948897], [-77.43876449446716, 34.617932072226125], [-77.43897486014944, 34.61794617039506], [-77.43930094162498, 34.61799824623559], [-77.43947544862641, 34.61824850850569], [-77.43957537275057, 34.61839962857559], [-77.43985346242519, 34.6185792323765], [-77.44006840392947, 34.61919159517415], [-77.44007032787762, 34.61925590445931], [-77.43981722087668, 34.6196592052686]], [[-77.40342457918346, 34.669083045796135], [-77.40357795300055, 34.66908684685567], [-77.40365072805898, 34.669092292650575], [-77.4039859946364, 34.66914477173039], [-77.40363124437089, 34.66890284688408], [-77.40335162294292, 34.66892270028387]], [[-77.35635253414938, 34.66197382601991], [-77.35638190724202, 34.66213247411508], [-77.35651440219942, 34.66216478902042], [-77.35657937132967, 34.66218548155835], [-77.35685359849867, 34.66225909479222], [-77.35698612531971, 34.66231044161383], [-77.35702187513388, 34.66226480991975], [-77.35702150085407, 34.66224038535209], [-77.35686979982171, 34.66206545235114], [-77.35679889743753, 34.66198723704168], [-77.35652035696226, 34.6620842526403], [-77.35644239189821, 34.66170216128466], [-77.35641700873687, 34.66168074292295], [-77.35627787901137, 34.66157060919051], [-77.35630571164596, 34.6617209367967]], [[-77.42840126826995, 34.748455120382985], [-77.42872509563033, 34.748264889411836], [-77.42877640226725, 34.748261440921254], [-77.42881996851767, 34.74820825200054], [-77.42896911530238, 34.747887104681936], [-77.42902464676378, 34.74778913189171], [-77.42908759877723, 34.7477067506334], [-77.42906723235468, 34.74765873813608], [-77.4290634436031, 34.74764998913371], [-77.42905156803869, 34.74764789385347], [-77.42889257889766, 34.74768641190882], [-77.42884519890039, 34.74768468480082], [-77.42844022326263, 34.74747385959586], [-77.4283173126337, 34.74745841214996], [-77.42775222624843, 34.747314414856284], [-77.42767611517766, 34.74727054276852], [-77.42754186743252, 34.74740214710169], [-77.42772625119882, 34.747894470499915], [-77.42799790827519, 34.74810471929386], [-77.4280745155946, 34.74829699682702], [-77.42818610606085, 34.748472614692716]], [[-77.41036420854773, 34.72784791970014], [-77.41060109150627, 34.727684766445755], [-77.41063389870017, 34.72766268042324], [-77.41063669586624, 34.727653163601424], [-77.41078984116945, 34.727437661351736], [-77.41052672526973, 34.7269677202534], [-77.41038685496687, 34.72688140104526], [-77.41014491370971, 34.72665301002141], [-77.41001733759197, 34.72651289106088], [-77.40996897257497, 34.72656161147263], [-77.40992038522097, 34.72657448714854], [-77.40974942101221, 34.72657675055068], [-77.40963818252156, 34.726715091346186], [-77.40962092794447, 34.72674074967938], [-77.40961913422024, 34.726755171790764], [-77.40980615820598, 34.72709364910724], [-77.40981267341195, 34.72712081871158], [-77.40983087103629, 34.7271565303168], [-77.41004464615659, 34.7274704404562], [-77.4102196613253, 34.727797369237486], [-77.41022812877735, 34.72784028120883], [-77.41033616854219, 34.72790998512599]], [[-77.34178694903085, 34.65171600606807], [-77.3418699326557, 34.652048301501594], [-77.34186583728771, 34.65230969072788], [-77.34198990869406, 34.652572696756174], [-77.34206230767211, 34.65270472131772], [-77.34210083676088, 34.65273933584947], [-77.34225318632033, 34.65281845502123], [-77.3424795866282, 34.65288010536405], [-77.34254483712465, 34.65300850138679], [-77.34262510013541, 34.65304946968746], [-77.3428518393514, 34.65313916440101], [-77.34303467592184, 34.65318692070091], [-77.34318491397606, 34.65320330863548], [-77.34338752605323, 34.65321006613592], [-77.34350725611957, 34.65321405946542], [-77.34362441537556, 34.65316755845494], [-77.34386749832832, 34.653413342969586], [-77.34433007643315, 34.652918684731304], [-77.34461942179122, 34.653025501732664], [-77.3445085363549, 34.65279092851851], [-77.34449351874218, 34.65259509192214], [-77.34456502439288, 34.65236117533856], [-77.34426211983472, 34.65219091698795], [-77.34417735332103, 34.65207283197584], [-77.34402819938985, 34.65201287089035], [-77.34389572461427, 34.65196100120971], [-77.3436785703651, 34.65191213323284], [-77.343556164005, 34.651864568179505], [-77.34320929019546, 34.651693026822386], [-77.34320031961359, 34.65168712408473], [-77.34312946891916, 34.6516347388751], [-77.34283487863684, 34.65146192573212], [-77.34267314704053, 34.65160629706923], [-77.34252251057367, 34.65150076187216], [-77.34225942324967, 34.6514898142724], [-77.3421928633303, 34.651453631129506], [-77.34214340976055, 34.651506885520234]], [[-77.33229781635163, 34.653622577522036], [-77.33235333922799, 34.65366548376633], [-77.33239050769544, 34.65365968594346], [-77.33246544842348, 34.65369025909675], [-77.33284299159949, 34.65384428347385], [-77.33308803233213, 34.653944250039594], [-77.33332386524292, 34.654040460096084], [-77.33352854349775, 34.65429773259531], [-77.33363247917865, 34.65457758176039], [-77.33392752169321, 34.65505525469875], [-77.33394098972992, 34.65508513793672], [-77.33393405841599, 34.65512863436617], [-77.33396107356268, 34.65510242285608], [-77.3339637115606, 34.65508904097471], [-77.33396538881756, 34.65508179070247], [-77.33397077119595, 34.65505597110849], [-77.33404485462053, 34.654497499711155], [-77.334124126862, 34.65432031799876], [-77.33415116475521, 34.65421231723286], [-77.33423839710163, 34.65401089461738], [-77.33415791093357, 34.65353761911362], [-77.3339417449149, 34.65341251197501], [-77.33393431647711, 34.65340619833691], [-77.33392026597748, 34.65340000705158], [-77.3336971284297, 34.653301682628054], [-77.33358980042502, 34.65325438855615], [-77.33328353443237, 34.65311943109864], [-77.33290642321832, 34.65304022759433], [-77.33244648718447, 34.653481126448135], [-77.33236197446452, 34.653517645143005]], [[-77.44203055602294, 34.743798455733604], [-77.44204663264895, 34.74395323350907], [-77.44209179141089, 34.744011135868746], [-77.44208570817347, 34.74419916445777], [-77.4421033791097, 34.744452714580376], [-77.44249626451358, 34.74455898783357], [-77.44272536852141, 34.74419320338395], [-77.44270844418116, 34.74418442192342], [-77.44223438076864, 34.74395164364229], [-77.44217255935375, 34.74389899844201]], [[-77.42702617183573, 34.62592746836778], [-77.42674117661842, 34.626296461374075], [-77.4266939894643, 34.62639135189304], [-77.42643092147924, 34.626660414272195], [-77.42622383824461, 34.62673482915629], [-77.42551495825369, 34.627082311902086], [-77.42549643696695, 34.627088562980305], [-77.42547397359324, 34.62709179997169], [-77.42540259587268, 34.62712853238901], [-77.42551067284613, 34.62714060236246], [-77.42562517686048, 34.62714472953076], [-77.42614447539654, 34.62722718445683], [-77.42660429372016, 34.627294151611935], [-77.4267938985522, 34.62734773330757], [-77.42723613459029, 34.627344577308286], [-77.4273050996863, 34.627637171560124], [-77.42770997460354, 34.62749176012125], [-77.42779406328158, 34.62728447606901], [-77.42786618149381, 34.627165054765044], [-77.4280402631713, 34.62675119696263], [-77.42803891464695, 34.62674660241733], [-77.42803613818299, 34.62674391175811], [-77.42774079732874, 34.62646231270614], [-77.4276288787955, 34.62632746893826], [-77.4275419287132, 34.625957300828475], [-77.42751639019352, 34.625787787516686], [-77.42750415347176, 34.625634348244134], [-77.4274879985478, 34.62558553696114], [-77.42746832257465, 34.62543225011251], [-77.42740933455066, 34.625291427058876], [-77.42738516712424, 34.6252541516975], [-77.42733210160928, 34.62526439178791], [-77.42723386180876, 34.62531444024079], [-77.42714544469612, 34.625353917858014], [-77.42713226672902, 34.62538010101369], [-77.42707578088286, 34.62548439723959], [-77.42702454558132, 34.625558698840294], [-77.42701851030773, 34.625774080010785]], [[-77.35788809865784, 34.664053788279155], [-77.35786381921442, 34.663754592993776], [-77.35751296704957, 34.6636651166028], [-77.35747011093727, 34.66364914965706], [-77.35745296829644, 34.663646371320745], [-77.35742652764766, 34.66364303234323], [-77.35716583291523, 34.66371280369735], [-77.35727388365153, 34.66381457794409], [-77.35699310662795, 34.66422391769052], [-77.35720224774668, 34.664554792372], [-77.35770524508477, 34.66412608840495]], [[-77.38750333986863, 34.56666140502196], [-77.38766512346457, 34.56665842303722], [-77.3879435340534, 34.56612363233131], [-77.38721996802472, 34.56624278810058]], [[-77.38755331191626, 34.5287517529925], [-77.38724128010318, 34.529148805640396], [-77.38804475457665, 34.52899076555765], [-77.38811527927113, 34.528752183892095], [-77.38784627923374, 34.52869060499545]], [[-77.33079653270008, 34.563655883185824], [-77.33081966766477, 34.56373586322179], [-77.33090310403803, 34.563755503447794], [-77.33086354202955, 34.56368232669692]], [[-77.3578400726613, 34.6646494495444], [-77.35783843143709, 34.664595178503355], [-77.35783484589857, 34.66456531765926], [-77.3578563646763, 34.66436274824221], [-77.35741701210944, 34.66465307105854], [-77.35765181923595, 34.665067594505615]], [[-77.40116737075094, 34.58074700101641], [-77.40106202237062, 34.580661979654344], [-77.40096901241907, 34.580614341187136], [-77.40082602307965, 34.58052576291601], [-77.40068194808028, 34.58050772202367], [-77.4005749929565, 34.58056899746661], [-77.40030978550647, 34.58087075138676], [-77.40029263777635, 34.58099356006956], [-77.40029997856237, 34.58116849234161], [-77.40035740325686, 34.58128845463399], [-77.40048309128956, 34.58136932862688], [-77.40057497698488, 34.581414300938945], [-77.40076781675154, 34.58143702449246], [-77.40077198864792, 34.58143820644187], [-77.40077452791594, 34.58143781531033], [-77.40096900118749, 34.581407860027966], [-77.40133666943807, 34.581175546807025], [-77.40136302738391, 34.58116896359955], [-77.40137741257698, 34.58115676631175], [-77.40139252376527, 34.58113908517461], [-77.40137618107089, 34.581127270313], [-77.40136302800276, 34.581102908084674], [-77.40127594534277, 34.58082517126483]], [[-77.43498527493381, 34.67747523384644], [-77.43513203288802, 34.67739428732715], [-77.43533035722868, 34.67759591591518], [-77.43535875927041, 34.6776284532342], [-77.43536880057387, 34.67768330518015], [-77.43553289287671, 34.677946272728065], [-77.43527609909232, 34.67800379611265], [-77.4351692888328, 34.67800600481368], [-77.43495380368262, 34.67801046060505], [-77.43481754269872, 34.6778543834848], [-77.43483226156967, 34.67770124937983], [-77.43483438110064, 34.6776241575422], [-77.43488857332571, 34.67754707934919]], [[-77.40110949265735, 34.573962155513236], [-77.40100571288856, 34.57393770385442], [-77.40090378723485, 34.57392143056385], [-77.4005751238917, 34.57445701642736], [-77.40055781647649, 34.57444769153874], [-77.40057223105607, 34.57446426262834], [-77.40057278738749, 34.57446669996074], [-77.4005751233305, 34.57448077437741], [-77.40080743780571, 34.574854894908576], [-77.40089051681232, 34.57492759533393], [-77.40096910504889, 34.57499636555896], [-77.40109298308221, 34.57510476744588], [-77.40117987667556, 34.575028280163345], [-77.40136309844625, 34.57501840435058], [-77.40143952850411, 34.574975964534566], [-77.40151093702708, 34.574912683976166], [-77.4015600967035, 34.574898332512056], [-77.4016081774683, 34.57484548223174], [-77.40159497161082, 34.574778824716205], [-77.40160939963296, 34.57473916204356], [-77.4015601001418, 34.5746028083805], [-77.40152269465148, 34.57457969662284], [-77.4015117634876, 34.574488874544016], [-77.40144772057303, 34.574337919614955], [-77.4014184447653, 34.57428251265656], [-77.40136311060061, 34.57415774916851]], [[-77.3717495592526, 34.59948264994257], [-77.37158848893952, 34.59987116303459], [-77.37153963922484, 34.600017580446405], [-77.37141001382656, 34.600686374987106], [-77.37139658141474, 34.600747921269146], [-77.3714099854918, 34.60076627026454], [-77.37175420011192, 34.601174579144015], [-77.37204664770678, 34.60134033693478], [-77.3721979981063, 34.60143306304518], [-77.37222852303832, 34.601444327287844], [-77.37231023371439, 34.6014654443279], [-77.37280047158238, 34.601594893691015], [-77.37298621583759, 34.60152496999935], [-77.37317258778342, 34.60154200236944], [-77.3731907271715, 34.601542868600276], [-77.37338035737442, 34.60147359262168], [-77.37343404589117, 34.601458021829565], [-77.37350930137217, 34.6014316173617], [-77.37357744505468, 34.601395724926576], [-77.3737324707781, 34.60126058400405], [-77.37374639810257, 34.6012282393485], [-77.37377457793966, 34.60117793029636], [-77.3739826576815, 34.600799984679696], [-77.37405687673603, 34.60066865647876], [-77.374160183853, 34.600562131929266], [-77.37416221445295, 34.60055463644074], [-77.37413563018201, 34.600389286629934], [-77.37410251661764, 34.60035815882517], [-77.37397194505515, 34.600233729831324], [-77.3739362420634, 34.600208300230214], [-77.37377494375585, 34.60005653522958], [-77.37371303806988, 34.59998970304139], [-77.3735500091475, 34.59983101536213], [-77.37330974518082, 34.59962323573993], [-77.37316820677395, 34.59944832503656], [-77.37304659404673, 34.599236582082746], [-77.37298700790022, 34.59916669325456], [-77.37270281989589, 34.59916768177281], [-77.37235275098614, 34.59891196422655], [-77.37226112388771, 34.59885811771571], [-77.37219892988429, 34.59873628372047], [-77.37180557491554, 34.59856621870637], [-77.3718060962936, 34.59856483169862], [-77.37180487817037, 34.59856569203996], [-77.37180459008383, 34.59856605034757], [-77.37180440266461, 34.59856689933332], [-77.3719049642885, 34.59897646168737], [-77.37173487356277, 34.599350404278844]], [[-77.38006451063556, 34.632624255258555], [-77.38007302062226, 34.632626312375145], [-77.38009513869878, 34.63263449799087], [-77.38031335295577, 34.63257924149681], [-77.38008928963632, 34.63259401009059], [-77.38007302955872, 34.6325870561318], [-77.3800199667962, 34.63256436270819], [-77.3797626220099, 34.63256827968528], [-77.37967875754654, 34.63259444218998], [-77.37965710488868, 34.63265047963111], [-77.37966339027761, 34.63267287641156], [-77.37967873564646, 34.63268869069838]], [[-77.39399160128121, 34.52752827912583], [-77.39355950767276, 34.5274770098203], [-77.39399897952653, 34.5272001082618], [-77.39431555484325, 34.52707394133725], [-77.39447217346552, 34.527052206523784], [-77.39452070104048, 34.527173701461905], [-77.39468005966889, 34.52731530225627], [-77.39444722946557, 34.52755399974127], [-77.39439516015187, 34.52760928557951], [-77.3943674311039, 34.52761444500708]], [[-77.38276936444332, 34.5309922426323], [-77.38278637758782, 34.53107397098806], [-77.38272919154593, 34.531242867381664], [-77.3829160471127, 34.53130804759033], [-77.38321630197319, 34.53117262014037], [-77.38317184155346, 34.53109068400971], [-77.38320658716337, 34.530929189380814], [-77.3829259166112, 34.530871611415535]], [[-77.44107267491421, 34.59611082159101], [-77.4411660196078, 34.59612341102161], [-77.44122936208697, 34.59612047783483], [-77.44156010601401, 34.59612487851567], [-77.44191095177126, 34.596043604943326], [-77.4419937503692, 34.596035505704805], [-77.44226968864518, 34.59603826500213], [-77.44233971418716, 34.59603731626532], [-77.44234823443155, 34.596038576766354], [-77.44268503404942, 34.596039912524866], [-77.44281628433858, 34.59624032653553], [-77.4428591799048, 34.596305826408106], [-77.44284439765038, 34.59634306096602], [-77.44274609593012, 34.59659066780943], [-77.4426855874685, 34.59672457841683], [-77.44251656940173, 34.59706587893326], [-77.44214403311524, 34.596879008330255], [-77.44200258902163, 34.59687433861343], [-77.44195454779667, 34.5968536444247], [-77.44184330824282, 34.5968292866008], [-77.44172242459497, 34.59679207173161], [-77.44156041957035, 34.59677266488416], [-77.44140597958705, 34.59675416404305], [-77.44129302510413, 34.59674063271164], [-77.44116630821375, 34.596725452683565], [-77.44077672961076, 34.59667878216091], [-77.44078461894918, 34.59666425064369]], [[-77.32612125801177, 34.56013513219771], [-77.32612382603209, 34.560134869682784], [-77.32616725993918, 34.56017813952291], [-77.32612257426044, 34.56015354802108], [-77.32606896373403, 34.56051120189758], [-77.32582713416024, 34.560496876119984], [-77.32580359690058, 34.56026310812517], [-77.32611283866612, 34.56013777887711]], [[-77.43149261294232, 34.5039256987839], [-77.43180311708683, 34.50389191818266], [-77.43198130572534, 34.503715848841736], [-77.43200373963741, 34.50369235868445], [-77.43200849244327, 34.50367812979091], [-77.43201730877102, 34.50365173608371], [-77.43206396027654, 34.503512074995136], [-77.43197695731766, 34.503382274029065], [-77.4319703898273, 34.50333841805775], [-77.43185511812209, 34.50325384901062], [-77.43164141205955, 34.503321636940555], [-77.43131198015695, 34.503356140950366], [-77.4312679583805, 34.503471470845874], [-77.43126252123811, 34.5034806367565], [-77.43125235611267, 34.50351234638], [-77.43122132451596, 34.50360914802108], [-77.43121223172031, 34.503637512053785], [-77.43133267238767, 34.50380640875102]], [[-77.37575769576821, 34.56163895037368], [-77.37592600977112, 34.561641762479056], [-77.37615164778549, 34.56158847534016], [-77.37642667120717, 34.561516389652006], [-77.37654560956145, 34.561505875913745], [-77.37673468899288, 34.561564578963335], [-77.37675228947704, 34.56156404889709], [-77.37693953013388, 34.56155081585031], [-77.37700223397465, 34.56151753847732], [-77.37704922895992, 34.561416666098125], [-77.37712254984075, 34.56128791655101], [-77.37717320783977, 34.56110774834074], [-77.37733363897519, 34.560992981168226], [-77.37745251906138, 34.56081579633196], [-77.37752568389695, 34.56058753008115], [-77.37772785825715, 34.56005964936675], [-77.37776643171354, 34.55996296706113], [-77.37780984680927, 34.5599151684481], [-77.37795116501468, 34.559654257628736], [-77.37812811328831, 34.55902016854071], [-77.37831120480479, 34.55877294693147], [-77.37823968266736, 34.55845298201356], [-77.37781256324408, 34.558307236405504], [-77.37772837184124, 34.55839473378076], [-77.37766472668336, 34.55830645807126], [-77.37757935231254, 34.558250138396595], [-77.3769406074062, 34.55815756925598], [-77.37670002622654, 34.558117564858705], [-77.3765466876526, 34.55815983099913], [-77.37646261248622, 34.55841109257122], [-77.37635212992593, 34.5586420541663], [-77.37615248593644, 34.559022164742224], [-77.37606126889958, 34.55921981706857], [-77.37592052327132, 34.5593383427144], [-77.37560060688192, 34.559638990472706], [-77.37536431969247, 34.559971998017545], [-77.37515070369349, 34.56006821541442], [-77.37497033506133, 34.560138380794825], [-77.3748017394062, 34.56034869721323], [-77.3746856415854, 34.560483284889365], [-77.37457616424646, 34.560839549637414], [-77.37444503856543, 34.56110800118525], [-77.37444641428738, 34.561249023977425], [-77.37444549810154, 34.5613897761846], [-77.3744438938364, 34.56146166789171], [-77.37457592101649, 34.56154473820577], [-77.37462312096903, 34.56159723236518], [-77.37473631722096, 34.56163180920958], [-77.37477285547237, 34.56164186065772], [-77.3749327210952, 34.561643492285135], [-77.37496982254456, 34.56164431966672], [-77.37502009736346, 34.56164509811976], [-77.37536375887093, 34.561642642888486], [-77.37563182188153, 34.5616384184172]], [[-77.38017450847728, 34.72902789417741], [-77.38039177598903, 34.72917611439357], [-77.38044751403413, 34.729170678181774], [-77.3806788662769, 34.72929167606512], [-77.38074461123745, 34.72928242249369], [-77.38083782581822, 34.72929632004931], [-77.38099107793872, 34.729313692141055], [-77.38099261988883, 34.729313862178145], [-77.38099311201063, 34.72931362688231], [-77.38099426358431, 34.72931376732909], [-77.38122467637803, 34.72931920530951], [-77.38133179731602, 34.72925132529464], [-77.38140898488402, 34.7292464390416], [-77.38169212664755, 34.729022991765085], [-77.38162615418743, 34.728976777965556], [-77.38117123709287, 34.72869957220582], [-77.38093972649187, 34.72873653323881], [-77.38066647650696, 34.72878032826108], [-77.38047925946066, 34.72887453908541]], [[-77.34773122193563, 34.65537087037951], [-77.34778481951955, 34.65537935280902], [-77.34790465773406, 34.655424613210215], [-77.34795358234207, 34.65542245632264], [-77.34798173433511, 34.655449019022385], [-77.34810192974427, 34.65546257925306], [-77.34812198943072, 34.65546378955156], [-77.34818806885983, 34.65545075177309], [-77.34826544798555, 34.65542775085161], [-77.34820127312202, 34.65530141242416], [-77.34813351416051, 34.655247242278634], [-77.34809911645598, 34.65521660125496], [-77.34806664487023, 34.65518855598372], [-77.34797548750905, 34.6551571270645], [-77.3478946238154, 34.65512924720014], [-77.34784770325832, 34.65514023789694], [-77.34773370922181, 34.655125171174454], [-77.3474299659354, 34.65498157284575]], [[-77.44399388404273, 34.7334530996748], [-77.44405298664688, 34.73337167967577], [-77.4439443384717, 34.73334259372026], [-77.44388318549046, 34.73336735005553], [-77.4438402237101, 34.73339941638226], [-77.44387446258779, 34.73344617674139], [-77.44391007689812, 34.73346102670836], [-77.44394200182201, 34.73346341129448]], [[-77.40098656004436, 34.67071904802214], [-77.40093885401005, 34.67056628225651], [-77.40078080676035, 34.67038235653226], [-77.4007488282007, 34.670645547214114]], [[-77.39071929314795, 34.62295212880511], [-77.39059080171707, 34.62289298734436], [-77.39061715770492, 34.62302757694495], [-77.39068474529185, 34.62305502852317], [-77.3908643565039, 34.623148191407935], [-77.39076116099392, 34.622961724921836]], [[-77.46171098278468, 34.70725026912947], [-77.46170540646905, 34.70738767180601], [-77.46175210771246, 34.70723782874964], [-77.46175300855391, 34.707235180507794], [-77.46175418214868, 34.70723222954734], [-77.46177769587977, 34.707137530386596], [-77.46173493762413, 34.7072097881193], [-77.46172558118695, 34.70722559957337]], [[-77.44031592001457, 34.60255370152678], [-77.44048971023591, 34.60238097542061], [-77.44073532399885, 34.60270050562922], [-77.4402474029111, 34.60267721287269], [-77.44029049288861, 34.60257700411922]], [[-77.37807995056102, 34.62735684671899], [-77.37810301139746, 34.62731866702151], [-77.37820899621272, 34.627052581096734], [-77.37838623780314, 34.627032620608745], [-77.37844727326642, 34.62727491716926], [-77.37824436164914, 34.62735798653404], [-77.37813265529245, 34.62740602548264], [-77.37805830867038, 34.62743289644808]], [[-77.42473007962253, 34.6838502300545], [-77.42472689066409, 34.684116355637286], [-77.42424086959304, 34.68405438353968], [-77.42451706193788, 34.68377325941435]], [[-77.4325195902759, 34.73081819459611], [-77.43249678688646, 34.730805473256574], [-77.43247417075686, 34.730805769612246], [-77.4324499600372, 34.730816953842634], [-77.43237225803755, 34.73082620975413], [-77.4323287654757, 34.73089780384379], [-77.43232168273107, 34.73091188500305], [-77.4323287446469, 34.73094206054038], [-77.43233372121946, 34.73100733454833], [-77.43238725198101, 34.73103764739416], [-77.43242659648143, 34.731047985248956], [-77.43254088411419, 34.730988492907755], [-77.4325654755832, 34.73095493930403], [-77.43259597633323, 34.73089792566884], [-77.43256102096485, 34.730855768115084]], [[-77.33135395157335, 34.65712798617281], [-77.3314983749565, 34.65718807684163], [-77.33154598796656, 34.657169353616254], [-77.33165551703684, 34.65717337227231], [-77.33173589079566, 34.65707559771822], [-77.33172076148877, 34.656998865943656], [-77.33168415250067, 34.656711739508324], [-77.33149692874377, 34.65678989550124], [-77.33144885917163, 34.65694158540054]], [[-77.40138115752936, 34.673824330114506], [-77.40127161253191, 34.67373116563439], [-77.4012474467521, 34.673777522683636], [-77.40125246348309, 34.673797272029844]], [[-77.3948927588847, 34.73289427817883], [-77.3947814286797, 34.73278107865329], [-77.39474284033415, 34.732956762375785], [-77.39490674075489, 34.73298599307717]], [[-77.43820562514698, 34.6775485224217], [-77.43823965073558, 34.67754176932036], [-77.43822848542797, 34.67758589253771], [-77.43823276636635, 34.677632560459884], [-77.4381856152101, 34.6776362020272], [-77.43815874762552, 34.67760667686579], [-77.43818719354381, 34.67756366926927]], [[-77.38690483136068, 34.621727031295144], [-77.38700073942351, 34.6216667228979], [-77.3870515610811, 34.6216309993886], [-77.38712787603247, 34.62157302402738], [-77.38717151747048, 34.62141504548309], [-77.38717465886405, 34.62140435487783], [-77.3871761507627, 34.621400758323894], [-77.38717567544036, 34.621396351742725], [-77.38717152141781, 34.621388814343895], [-77.38715982226364, 34.621390512220685], [-77.38697441573865, 34.62137409506131], [-77.38682530012682, 34.62145132794089], [-77.3868092496589, 34.621488061327156]], [[-77.42933301212771, 34.69965306095099], [-77.42945181757354, 34.699579786774606], [-77.42936667436777, 34.699536737358166], [-77.42934598059277, 34.69952067260378], [-77.42922274142398, 34.69949968590538]], [[-77.4250817615778, 34.57551004448659], [-77.42511534218697, 34.57528722045749], [-77.42525764008451, 34.57529502769743], [-77.42532081135164, 34.57534838613829], [-77.42524718030447, 34.57541020844774]], [[-77.38026958083482, 34.588006402074164], [-77.38028091049172, 34.588042310851186], [-77.38028875244811, 34.588003639081755], [-77.3802809230663, 34.58799341417739]], [[-77.37623909814124, 34.63116003009539], [-77.37628046443419, 34.6310884081124], [-77.37621899247577, 34.6311412697338], [-77.37622476124768, 34.631156394685796]], [[-77.39032507780848, 34.62288706332807], [-77.39041678966532, 34.6228441783242], [-77.39032508772702, 34.62279814674264], [-77.39030714804059, 34.62285998440238]], [[-77.41476625882059, 34.620379577967], [-77.4147727249484, 34.620384918036194], [-77.41480852584243, 34.620386712760435], [-77.41496336707137, 34.620409334500344], [-77.41497852585066, 34.6203621696064], [-77.41499675935799, 34.62018325633805], [-77.41498102041453, 34.62013045024944], [-77.41496331525269, 34.62012537943541], [-77.41490516677078, 34.620097846013685], [-77.41486475616784, 34.62008134119766], [-77.41483586258146, 34.62009545304057], [-77.41476621460421, 34.62013407241153], [-77.41466178146155, 34.620195607697255]], [[-77.38560475225104, 34.56787350670065], [-77.38557661428926, 34.567923650752185], [-77.3856047303527, 34.56797887737084], [-77.38574394778234, 34.56789952300881]], [[-77.45610635033374, 34.60157180677243], [-77.45626903808963, 34.60147802941752], [-77.45633396911317, 34.601456054684895], [-77.45638414923833, 34.6014027138235], [-77.4563876681248, 34.601364690643884], [-77.4564687332089, 34.60128626784348], [-77.45650817378007, 34.60113240112996], [-77.4565101752064, 34.60109786298363], [-77.45652759873002, 34.60105661923807], [-77.45644309563787, 34.60107439284592], [-77.45624108949647, 34.60111688078349], [-77.45606928735401, 34.60125329375676], [-77.45605856903191, 34.60140327727398], [-77.45605819284728, 34.60140425774103]], [[-77.38713582741602, 34.59661211306308], [-77.38712620465226, 34.59673002314992], [-77.3870179297155, 34.59675609607525], [-77.38698661024165, 34.59659973745775]], [[-77.40328251947602, 34.623323878606904], [-77.40172497861484, 34.62230984781337], [-77.40057482532735, 34.62229095120233], [-77.40045199833537, 34.62216619509587], [-77.39978638994293, 34.6222100744259], [-77.39972693021569, 34.62220253794305], [-77.39939271442216, 34.62218670725515], [-77.39939217269588, 34.622186506280244], [-77.39939203511642, 34.62218665706459], [-77.39909086057786, 34.6221301868764], [-77.39899795667978, 34.62203078112253], [-77.39881130035326, 34.62184599497378], [-77.39883838191835, 34.621589382857486], [-77.39867820362367, 34.6214406187232], [-77.39848243435111, 34.62117494226124], [-77.39820953793325, 34.621210631391534], [-77.39791501679105, 34.621126121207716], [-77.39820954428598, 34.620860842267035], [-77.39839287155726, 34.620830073871105], [-77.39895521579324, 34.620597564590824], [-77.39899796874813, 34.62060771386075], [-77.39903470447094, 34.62057961827421], [-77.39907103217968, 34.620534813434794], [-77.39907167905305, 34.620455333133634], [-77.39952127727582, 34.619620723764164], [-77.39899798334085, 34.61908351946706], [-77.39887028552478, 34.61900301257284], [-77.39852064856203, 34.61891590720573], [-77.39849834068498, 34.61860812362744], [-77.39820958410613, 34.618769576317], [-77.39808786303813, 34.61868485812945], [-77.39801248474683, 34.61871083737975], [-77.39793596108422, 34.618575666285096], [-77.39798454731269, 34.61838647018793], [-77.3978655428409, 34.61821526048915], [-77.39805788143133, 34.61829691068495], [-77.39820959262863, 34.618342519238105], [-77.39852470831914, 34.618405573314284], [-77.39863916744504, 34.618436137329], [-77.39899798833127, 34.61859831451736], [-77.39968445177253, 34.61789889398009], [-77.39899800398425, 34.6171680890051], [-77.39895388280704, 34.61720264806366], [-77.39884406578376, 34.61717096735541], [-77.39820962173185, 34.616933575677194], [-77.39799943043577, 34.616670044357406], [-77.39769440050344, 34.616487644363716], [-77.39758560784065, 34.61632631501768], [-77.39767509283097, 34.61591467460024], [-77.39782831596136, 34.616029902900664], [-77.39786491980114, 34.61603847820149], [-77.39820963425548, 34.616344478920446], [-77.39822929783767, 34.61638931460692], [-77.39830288821604, 34.6163998803318], [-77.39899800440317, 34.61713164151493], [-77.3990075986397, 34.61713704591783], [-77.39910591961251, 34.617133197413736], [-77.39978639042315, 34.617457244668174], [-77.39997002132102, 34.61700855419468], [-77.40036423461179, 34.616724919875146], [-77.40050404679555, 34.61608237271246], [-77.40050663587981, 34.616008613488454], [-77.40057476811985, 34.61580180222876], [-77.40118937417601, 34.61598350839507], [-77.40130713941669, 34.61602684188563], [-77.40088948714369, 34.616875916779726], [-77.40164764275386, 34.61730929090269], [-77.40215155629689, 34.61740977005183], [-77.40225723138282, 34.617527752150686], [-77.40248847762146, 34.61798066798508], [-77.40293996794219, 34.618062001075], [-77.40310163591111, 34.618080952169066], [-77.40351107368032, 34.61796197761626], [-77.40372834747612, 34.61774929737667], [-77.40434815031708, 34.61722607992645], [-77.40441899997654, 34.61711062360108], [-77.40451669642698, 34.616992101251896], [-77.40461124620896, 34.61708628630595], [-77.40476206336405, 34.617166357079284], [-77.40530511060383, 34.61747470156294], [-77.40548680330707, 34.61771525366124], [-77.40567473775505, 34.61788381541702], [-77.40631495317936, 34.61840213802648], [-77.40688196814635, 34.61846762818067], [-77.40724689284448, 34.618506103788974], [-77.40700930327493, 34.61925246746768], [-77.40697372827358, 34.619394677980814], [-77.40689474890037, 34.61941975452879], [-77.40688205224471, 34.61946297175634], [-77.40547576983171, 34.62130913724121], [-77.40688233620267, 34.622762760396334], [-77.40690084109171, 34.62278188425158], [-77.40691776260395, 34.622799370999125], [-77.40729618550215, 34.62319043380581], [-77.40816614303839, 34.62431753087719], [-77.40829127821407, 34.624480529908745], [-77.40845938406537, 34.62439701251067], [-77.40863625513421, 34.62444017169508], [-77.4095648963481, 34.62462338117827], [-77.41003641127905, 34.62537600005906], [-77.41030922654353, 34.62541274017411], [-77.41048554936741, 34.625681106425446], [-77.41003656939657, 34.62661113477412], [-77.40884826709187, 34.62719722469544], [-77.40845971946983, 34.62748673648665], [-77.40784542713216, 34.627098905817654], [-77.40688266922398, 34.62651616757688], [-77.4067053245133, 34.626417613549485], [-77.40669795038912, 34.62622770287642], [-77.40670779229748, 34.626037991431], [-77.40620983806195, 34.62459982731855], [-77.40679244803644, 34.62291427580354], [-77.4043784266068, 34.623865576340656], [-77.40372865531776, 34.62413939735655], [-77.40327145228879, 34.62381783879289]], [[-77.34427818403218, 34.76560418072703], [-77.34340400178235, 34.76566540853717], [-77.3425023320639, 34.76584264828143], [-77.34211018068044, 34.76599414931502], [-77.34188274508472, 34.76603557913755], [-77.3415079898027, 34.766004657122565], [-77.34143262576097, 34.76587670180963], [-77.34105537585944, 34.76550060886851], [-77.3409945395696, 34.765425163478525], [-77.34095852809095, 34.76536277254754], [-77.3405714761898, 34.764962077891184], [-77.34054454513144, 34.764932162040644], [-77.3403748354876, 34.7647190880882], [-77.34036324018435, 34.76468958052145], [-77.34043409904132, 34.764459931256724], [-77.34055224981715, 34.76418852821094], [-77.34077058113314, 34.763773777566826], [-77.34103445159718, 34.763402863056996], [-77.34136081820606, 34.763019998434814], [-77.34150241031693, 34.76285132222394], [-77.34194603579928, 34.76243658430891], [-77.34203460000997, 34.76234023350485], [-77.34212265053705, 34.762278895546714], [-77.34215552611832, 34.7621675760919], [-77.34242997452884, 34.761749376244055], [-77.34254935401992, 34.761519602417565], [-77.34256061013366, 34.76148777430792], [-77.34287366712977, 34.76130633292999], [-77.34309926809283, 34.76141390431941], [-77.34309153013507, 34.76144793673075], [-77.343333963585, 34.761625405969234], [-77.34336782885691, 34.76166738074016], [-77.3433922963053, 34.76200503796294], [-77.3434999001926, 34.76209002410825], [-77.3442199367488, 34.762858181957434], [-77.34429311260264, 34.76288914207578], [-77.34442285942956, 34.76293819581621], [-77.34428709917833, 34.764470459200595]], [[-77.45859901910215, 34.507774016625], [-77.45838653106888, 34.5075996747082], [-77.45799444528333, 34.50702735054888], [-77.45774052681645, 34.50665670511647], [-77.45747083016704, 34.50596682322434], [-77.45734434925447, 34.50564329372564], [-77.45730275964104, 34.50531960647232], [-77.45741953062387, 34.504753827301684], [-77.45776975387955, 34.50431386658988], [-77.45892842378045, 34.5037588567561], [-77.4592249178352, 34.503254623062794], [-77.45930000433877, 34.50304056004909], [-77.45985954379294, 34.50241802867643], [-77.45987994375955, 34.50238472814451], [-77.46061404555988, 34.501756252479446], [-77.46072073984219, 34.501605059813954], [-77.4610178448611, 34.501549771257224], [-77.46222124028776, 34.50114583633229], [-77.46225319236794, 34.50114238871999], [-77.46230581597489, 34.50113989167593], [-77.46353170184855, 34.50118831284195], [-77.46361214579059, 34.50118694403132], [-77.4636536232797, 34.501218572571446], [-77.46365804692948, 34.50123526206173], [-77.46369645268048, 34.50149516794002], [-77.46372675367994, 34.501877065418306], [-77.46376295862692, 34.50191609873468], [-77.46376537798537, 34.50194310428002], [-77.46373297323578, 34.502474102206875], [-77.46370907625504, 34.50258887635329], [-77.46364517204466, 34.502788838114945], [-77.46359502645669, 34.503001120338034], [-77.46334485761834, 34.50324590379556], [-77.46296575805113, 34.5037476036366], [-77.46288028019444, 34.50384201479427], [-77.46281559011034, 34.50389455615192], [-77.4622448308696, 34.50430342998391], [-77.46194211737762, 34.50452573437712], [-77.4619059017425, 34.504556811085294], [-77.46184845827429, 34.50458672104119], [-77.46067279769638, 34.50512477457673], [-77.46065146681805, 34.50513453688401], [-77.46065027390458, 34.505135006358955], [-77.46064813677485, 34.50513556056347], [-77.46064834928545, 34.50513754803892], [-77.46056759167911, 34.505806984417646], [-77.46068879569582, 34.50634176737766], [-77.46071112138873, 34.50667057541348], [-77.46081425533265, 34.507170534970506], [-77.4610243583197, 34.507289839096515], [-77.4610305762169, 34.507695819650124], [-77.46100601331727, 34.50785578456196], [-77.46090911218558, 34.50813296363645], [-77.46087985801779, 34.50821664468136], [-77.46070597111157, 34.50823909355479], [-77.46011949292989, 34.50811392684543], [-77.45886911151847, 34.50783406850342]], [[-77.39724334858491, 34.53967679105695], [-77.39608588579881, 34.53886829976523], [-77.39608535336585, 34.53886457425479], [-77.39604956099913, 34.538842925958214], [-77.39537875373388, 34.538438069846606], [-77.39531737018919, 34.538401022181674], [-77.39477587427457, 34.53807420315296], [-77.39466909392159, 34.53800975593498], [-77.3948634047745, 34.537769585937504], [-77.39493947745477, 34.537748535681374], [-77.39505688057852, 34.53771604835617], [-77.39533005234647, 34.53783642089857], [-77.39569777789501, 34.537678637382925], [-77.39568626066529, 34.53745315765363], [-77.39593993016814, 34.53704721831657], [-77.39604151779119, 34.53691221949295], [-77.39607186471913, 34.5368672696793], [-77.39613915928301, 34.536767139628786], [-77.39630626004573, 34.536484609222285], [-77.39640479115604, 34.536370122221825], [-77.39660845275546, 34.536134911993955], [-77.39688677263678, 34.535810891692364], [-77.39690739112201, 34.53578363477283], [-77.39694767550836, 34.5357232727842], [-77.3971775924121, 34.53541838493073], [-77.39745184837814, 34.53523966479483], [-77.3977500621229, 34.53495174342069], [-77.39800311265216, 34.53482651097814], [-77.39853826444076, 34.53481206887689], [-77.39885345205606, 34.534743323063196], [-77.39893221505632, 34.53474889504507], [-77.39900655075121, 34.53472440611749], [-77.39932387955997, 34.53478767727374], [-77.40007595547648, 34.53484106744561], [-77.40008067633315, 34.53437054527505], [-77.40010585771297, 34.53435899212094], [-77.40011887506999, 34.53434459842571], [-77.4002578400776, 34.534344970783124], [-77.40022946319773, 34.53476390179791], [-77.4003607894012, 34.53497954529335], [-77.40067148720141, 34.53526460342267], [-77.40064518883746, 34.535414836216056], [-77.40056894818743, 34.53706718969465], [-77.40056369226288, 34.53723885373937], [-77.40048230480885, 34.53901150833219], [-77.39952836178092, 34.53934698463221], [-77.39762372641046, 34.54058318603258]], [[-77.33746402547669, 34.65978746222743], [-77.33741753431705, 34.659713866866404], [-77.3373159242048, 34.65968603172825], [-77.33726943014287, 34.65950955765569], [-77.33742153688374, 34.659576043294905], [-77.33745521823018, 34.65963927854273], [-77.33746919466662, 34.65966500179942], [-77.33750439264625, 34.65972888561089]], [[-77.39619221162849, 34.61463157933643], [-77.3961893467786, 34.61452862155859], [-77.39623877014913, 34.61447411394031], [-77.39638528559038, 34.61439578583159], [-77.39663296028607, 34.614263377721656], [-77.39669854018469, 34.614437771424555], [-77.39669324738017, 34.614509178777745], [-77.39674931745401, 34.61480031153327], [-77.39677515125983, 34.614921937725235], [-77.39722916577767, 34.61549867483005], [-77.39667389225835, 34.6157856830988], [-77.39597345512176, 34.61602558538916], [-77.39584451257657, 34.615974987590114], [-77.39577849164465, 34.615985928382635], [-77.39562457332185, 34.61593701660737], [-77.39576177484058, 34.6158281067971], [-77.39584452548094, 34.615719056183295], [-77.39628603911777, 34.614992478685345]], [[-77.38638753006842, 34.595169734488465], [-77.38638881506972, 34.595189725035816], [-77.38638943384811, 34.59519102407312], [-77.38641189155425, 34.59521404012181], [-77.3869080076264, 34.59596539791528], [-77.38645439900706, 34.596103010382514], [-77.38638731423514, 34.596380164806334], [-77.38612292629362, 34.59664293115329], [-77.38593112697168, 34.596955357475494], [-77.38617323257608, 34.59715093920811], [-77.38638717965017, 34.597137703388704], [-77.38669861995645, 34.59735829465365], [-77.3869123141995, 34.59737968573428], [-77.38717533346843, 34.59742667250807], [-77.38751343220916, 34.59715181776934], [-77.38754989316496, 34.59712545479225], [-77.38756948960099, 34.59709732599923], [-77.38781436423858, 34.59668386475915], [-77.38779781220072, 34.59650755508218], [-77.38789368752691, 34.59632330088496], [-77.38783582558106, 34.596256203219866], [-77.38795074165044, 34.59622564409278], [-77.38796372853584, 34.596227399383245], [-77.38805822231829, 34.596224139382755], [-77.38826035641274, 34.59629998886101], [-77.38842795291465, 34.5962463859558], [-77.38875194090573, 34.59609926301209], [-77.38894806417801, 34.595882528299654], [-77.38895246800774, 34.59567064021829], [-77.38914612685656, 34.59547853742856], [-77.38942540390713, 34.59547875513375], [-77.38954021882569, 34.59548472564189], [-77.38960979319933, 34.595500905897], [-77.39031586363593, 34.59546054011968], [-77.39032840811703, 34.5954555533104], [-77.39035384577008, 34.595441174239504], [-77.39096075853118, 34.595213143174384], [-77.39111663961512, 34.59507398458442], [-77.39159405523561, 34.59495492145336], [-77.39166736967049, 34.59443002654019], [-77.39171187547021, 34.594215634280985], [-77.39176406572209, 34.59371875132149], [-77.39181561956617, 34.59355950883377], [-77.39181602346879, 34.593463587522194], [-77.39181820237906, 34.593346851604586], [-77.39187808646258, 34.593154967542446], [-77.39189438847575, 34.593123579946635], [-77.39190504676733, 34.59307887444518], [-77.39221083774935, 34.59298281154313], [-77.39229913540674, 34.59300853844576], [-77.39233943215183, 34.59301598350216], [-77.39241210591896, 34.59304891826569], [-77.39237502887175, 34.593136045378], [-77.39229911485867, 34.59319648324592], [-77.39215240288671, 34.59335289720679], [-77.39209292335988, 34.59351951855593], [-77.39209844340446, 34.593727159151754], [-77.39215107562086, 34.59409508668286], [-77.39210599081916, 34.594366773364925], [-77.39210647138714, 34.59458389244108], [-77.39214620817906, 34.594950070751494], [-77.39233739250267, 34.5951825421252], [-77.39269296865547, 34.59539031269255], [-77.39303717162773, 34.59555992008021], [-77.39348113675356, 34.59555361462674], [-77.39383232847887, 34.59543774521392], [-77.3939352421229, 34.595441316742615], [-77.39426933355716, 34.59540826520151], [-77.39491370699557, 34.59496594485322], [-77.39505754827591, 34.59498249868868], [-77.39514240044124, 34.594869398712845], [-77.39532793148194, 34.59475123168991], [-77.39570269065793, 34.59454304491754], [-77.39584575754638, 34.5945146220572], [-77.396095757572, 34.59437115004012], [-77.39649125225148, 34.594583431096254], [-77.3961366817915, 34.59494803456847], [-77.39616205580205, 34.595055488760934], [-77.39584569705482, 34.595438316311245], [-77.39581153671307, 34.595493821978], [-77.39577199797458, 34.59553632355147], [-77.39545156717797, 34.59599058635033], [-77.39543754544674, 34.595994030434625], [-77.39532519613036, 34.596161471492536], [-77.39507838932347, 34.59648551077064], [-77.39506962585618, 34.596499907881494], [-77.39505743349676, 34.59652580959894], [-77.39502245149338, 34.59653126502383], [-77.39426920070366, 34.59699972245893], [-77.39382411094294, 34.59703605183889], [-77.3934809851485, 34.59718703200218], [-77.39286260890584, 34.59747123320518], [-77.39269275778639, 34.597452825830835], [-77.39252549034701, 34.59752264378491], [-77.39240735630203, 34.59771987112387], [-77.39255070470695, 34.597852189457164], [-77.39269271383468, 34.59788652891062], [-77.39289917245802, 34.59827562607849], [-77.39344300478163, 34.59837886002387], [-77.39348087451192, 34.59839168628207], [-77.39349863643594, 34.59839250035238], [-77.3935101630664, 34.59840997306821], [-77.39398096331506, 34.59865244473833], [-77.39423804578274, 34.598729567883105], [-77.39426905719041, 34.59874331718604], [-77.39453804497576, 34.59882108423172], [-77.39479583816032, 34.59879205229973], [-77.39505727860762, 34.598647683198266], [-77.39537491900194, 34.59848320860623], [-77.39563404248938, 34.59833146814935], [-77.39584551122523, 34.59833943267272], [-77.39609059967205, 34.598301831378336], [-77.39660018968974, 34.59800043768392], [-77.39663373883383, 34.59801083217742], [-77.39668554087287, 34.598007789496755], [-77.39672984031206, 34.59794559269791], [-77.39736168957654, 34.597789524198504], [-77.39742195806718, 34.59772640904401], [-77.39748158028654, 34.597772920560224], [-77.39781605873374, 34.59775557404274], [-77.39792887380747, 34.59777263109362], [-77.39813648691754, 34.59782204879838], [-77.3980765816156, 34.59803199999493], [-77.3980130950952, 34.59814693037799], [-77.39800219170014, 34.598174882229365], [-77.39796845014457, 34.59819149487718], [-77.3978450997506, 34.59824059570726], [-77.39781603926744, 34.598246904914774], [-77.39777557593123, 34.59826290858815], [-77.39742193085652, 34.598340201541866], [-77.39705374282926, 34.598351364098406], [-77.39674557035354, 34.598792467994635], [-77.39666426493312, 34.598837129448384], [-77.39663369301661, 34.59886728081008], [-77.39646546776521, 34.599076226608155], [-77.39626851216774, 34.59928585239773], [-77.39625209741651, 34.59930172602968], [-77.39623955997556, 34.59931013651266], [-77.39621019138444, 34.599325902145175], [-77.39604249883455, 34.59941586726326], [-77.39592852258146, 34.599424392697244], [-77.39584544221181, 34.59944082399601], [-77.39551261629654, 34.59946090285451], [-77.39529924077802, 34.599589490834944], [-77.39505721290416, 34.59956117374332], [-77.39489871814263, 34.59973726382512], [-77.39480757223848, 34.599921140523335], [-77.39466306641698, 34.60002580256289], [-77.3945211347927, 34.60023414033332], [-77.39446598992043, 34.60027927472644], [-77.39440865743873, 34.60034148745485], [-77.39429946997431, 34.60038608607834], [-77.3942689246702, 34.60037836203439], [-77.39421385988369, 34.60037201871102], [-77.39389711370377, 34.60045298594908], [-77.39387480451992, 34.60043802042427], [-77.39375004584032, 34.600363823576046], [-77.39348071011857, 34.600204296847615], [-77.39342953949102, 34.600175009571686], [-77.39333042136224, 34.600134176032775], [-77.39269251066023, 34.59990937746672], [-77.39230710459036, 34.59984780589746], [-77.39228177982125, 34.59984292166901], [-77.39190430599831, 34.599709948887195], [-77.39178356089661, 34.59963819071003], [-77.39154583340601, 34.599542386400884], [-77.39126278018394, 34.599425202303394], [-77.39111613143497, 34.59928769250215], [-77.3908272502126, 34.599334801449295], [-77.39032789760067, 34.599386478539635], [-77.38979707302931, 34.59951723341861], [-77.38953965503073, 34.599532869468256], [-77.38939667421279, 34.5996982701061], [-77.388801316313, 34.59988431762603], [-77.38875137709486, 34.59989852987734], [-77.3887112801118, 34.59990790086125], [-77.38856746306493, 34.59997182927735], [-77.38804205413939, 34.60013261979604], [-77.3879631009489, 34.60020749287523], [-77.38771927823538, 34.600356748747394], [-77.38749060796283, 34.60046725836218], [-77.3871748333029, 34.60042853301081], [-77.38681488715856, 34.600685917368594], [-77.38678067241332, 34.600687902105044], [-77.38675396886228, 34.60068660843011], [-77.38659988546694, 34.60068005392351], [-77.38658361565712, 34.600674916712904], [-77.38651543492985, 34.600553415384326], [-77.3863865971413, 34.60044366442853], [-77.38632119611279, 34.600366130071976], [-77.38623739250039, 34.60030774240906], [-77.38599254236352, 34.60009812702555], [-77.38590811361126, 34.60002160901796], [-77.38559849069267, 34.599753675404386], [-77.38523196721644, 34.59999833602244], [-77.38518759437366, 34.600016478949044], [-77.3851046996487, 34.600046453265676], [-77.38481017914509, 34.60018508522438], [-77.38471482539805, 34.600424546273125], [-77.38467145195231, 34.60053346879682], [-77.3846130405146, 34.60059577897608], [-77.384525362773, 34.60067237392232], [-77.38450642872702, 34.60067208714538], [-77.38441596996937, 34.60065401350128], [-77.38435659944142, 34.600642810834934], [-77.38422972938898, 34.600597137997354], [-77.38413634603913, 34.60048729465345], [-77.38402191553566, 34.60033995188388], [-77.3838551215531, 34.60040623226094], [-77.38379460130687, 34.60023528983005], [-77.3837721749733, 34.60008304830202], [-77.38375018981445, 34.59981712570897], [-77.38369363161281, 34.599471436888834], [-77.38366926619197, 34.599359772486494], [-77.38323583961441, 34.599042129800395], [-77.38323551658817, 34.599040498307474], [-77.38323395898651, 34.59904020300426], [-77.3832309517592, 34.599039594514444], [-77.38244584872423, 34.598540957611746], [-77.38214030238817, 34.598680016833285], [-77.38165766287537, 34.598406226737666], [-77.38124955403367, 34.59888887188221], [-77.38086921914494, 34.599342869647046], [-77.38084181361148, 34.59938715680607], [-77.38083587746031, 34.59942390875], [-77.38075223891981, 34.599824629059455], [-77.38077503531699, 34.6001446562305], [-77.38075262284221, 34.600249137481974], [-77.38047486465528, 34.60032383235508], [-77.3804462882797, 34.60032406620674], [-77.38027780358561, 34.6003331691866], [-77.38021088026281, 34.60032720568471], [-77.38010602039682, 34.600315092998706], [-77.38008075609862, 34.600288110778195], [-77.37998338453374, 34.600255085639915], [-77.3798614993941, 34.600189210187196], [-77.37970871688766, 34.59999870887929], [-77.37970212089448, 34.599975955233326], [-77.37969972102083, 34.59996229767631], [-77.37949864150218, 34.59958071270981], [-77.37929276773593, 34.59934212077018], [-77.37897608221161, 34.599148094052154], [-77.37890779930709, 34.59881672469339], [-77.37898639381523, 34.59847510591959], [-77.37922973554154, 34.59792120965635], [-77.37929315720939, 34.597852295370856], [-77.37975047014531, 34.597489597841474], [-77.38008153792153, 34.597184486969454], [-77.38081836726708, 34.596898574093245], [-77.38093738121064, 34.59689879189665], [-77.38165825037271, 34.595895698911875], [-77.38166690262901, 34.595881053800944], [-77.38166814270944, 34.59587155766819], [-77.38167265235239, 34.595855402299605], [-77.38175871180354, 34.59500937572384], [-77.38196268324855, 34.59445845774298], [-77.38211835794165, 34.59410841086583], [-77.38192795520624, 34.59384580947461], [-77.38193677656352, 34.59328545412767], [-77.38165902640813, 34.59261011041959], [-77.38162110756514, 34.5925226956636], [-77.38160258798116, 34.59248449085231], [-77.38121256396765, 34.59217268587218], [-77.3811868529006, 34.59211984374359], [-77.38103032491054, 34.59197077665843], [-77.38101272173418, 34.59187301081076], [-77.38115740435526, 34.5916995237665], [-77.3812651932644, 34.59158854263038], [-77.38152442190218, 34.5916466278985], [-77.38153155043153, 34.591783149688744], [-77.38165916144703, 34.592041815919], [-77.38184292797854, 34.59225181473041], [-77.38223048308237, 34.592160413972096], [-77.38244728514994, 34.59218314174511], [-77.3824825879498, 34.59231959034526], [-77.38268556071411, 34.59232840269248], [-77.38284132307245, 34.592364984426986], [-77.38295952237911, 34.59258608371681], [-77.38323531867559, 34.59274848846582], [-77.3835778508683, 34.59267990726995], [-77.38362941257238, 34.592688233488865], [-77.38368969162919, 34.592673172948516], [-77.38387090578328, 34.59274649155247], [-77.38402345185196, 34.59288662296824], [-77.38407441892755, 34.59292242602344], [-77.3841467828039, 34.59296691278233], [-77.38481148862726, 34.59352109531682], [-77.38511124364564, 34.593354112622364], [-77.38525657748416, 34.59328640242422], [-77.38559979808443, 34.592779235547766], [-77.38561090096727, 34.59276781708354], [-77.38562257304862, 34.59275417498452], [-77.38561956971287, 34.59273331609988], [-77.38578758677295, 34.59208342814058], [-77.38575301431652, 34.59188623758813], [-77.38569577792681, 34.59179128534997], [-77.38560001233338, 34.59165385965286], [-77.38546847354493, 34.59150269041209], [-77.38546642059633, 34.59122243702239], [-77.38541221407824, 34.591086233984406], [-77.38521401224584, 34.59069873932707], [-77.38560017371246, 34.59080929655888], [-77.38573920133838, 34.59088929263226], [-77.385991856182, 34.59100267193607], [-77.38623812080435, 34.59112892463275], [-77.38638825502844, 34.59114774883231], [-77.38691638961616, 34.591149512964805], [-77.38717638403268, 34.59124486332968], [-77.3872802891084, 34.59155405190042], [-77.38751918811089, 34.59163161166922], [-77.38757037465234, 34.59173827514552], [-77.3877486897289, 34.59183096153398], [-77.38764459339498, 34.59203809869301], [-77.38762033144913, 34.59209548282182], [-77.38757027840877, 34.592315043444216], [-77.38749790593765, 34.592483814897015], [-77.38747475851656, 34.592590012470154], [-77.38743690112116, 34.5927048939846], [-77.38739543052151, 34.59273485733075], [-77.38724125052184, 34.592945385087965], [-77.38717608167649, 34.59300725805614], [-77.38697120544515, 34.59318819294478], [-77.38662827900308, 34.593458323152724], [-77.38653739144247, 34.593632581208105], [-77.38638771055349, 34.594162515494084], [-77.38631968413358, 34.59427868030088], [-77.386269043826, 34.594359245829516]], [[-77.47593149554271, 34.57283641500396], [-77.4753036158695, 34.572059909954696], [-77.4753672547823, 34.57069070800556], [-77.47407513200804, 34.57163012750071], [-77.47368232775125, 34.57275283812426], [-77.47349536937016, 34.57353199148718], [-77.47358495796306, 34.57393599438083], [-77.47304586211656, 34.57419962816053], [-77.47148997070974, 34.57558166254157], [-77.47157583075513, 34.575710454391704], [-77.47231722303032, 34.576822596579746], [-77.4737297512698, 34.57894133865888], [-77.47377306293939, 34.57936122281737], [-77.47368960002582, 34.580061039654176], [-77.47467034390897, 34.580129169051155], [-77.47474415078183, 34.579296202079625], [-77.47486124937531, 34.57905054352429], [-77.47635463004458, 34.57738224032217], [-77.47625983270285, 34.57691564011432], [-77.4763729296328, 34.5756646517618], [-77.47630043950701, 34.575036601404925], [-77.4762957396929, 34.57494812535172], [-77.47628601025377, 34.574880918595895], [-77.47621399259914, 34.57423289207313], [-77.47612400707396, 34.57342317841635]], [[-77.33872879127743, 34.69158761609733], [-77.33932032763524, 34.69182280665546], [-77.33964015141358, 34.691949964128014], [-77.33965808235993, 34.69195709325177], [-77.33942198418671, 34.69236098617604], [-77.33940430982452, 34.692469694914124], [-77.33935623777583, 34.692583477536175], [-77.33923211327946, 34.69283099053291], [-77.33899467839447, 34.693013266192544], [-77.33897577625311, 34.69324205985599], [-77.33861851016512, 34.69351547509714], [-77.33858935628344, 34.69353778648339], [-77.33816239032302, 34.693501984740294], [-77.33801234267005, 34.69354143481004], [-77.33776194960987, 34.69342605950572], [-77.33779021359186, 34.693394175128695], [-77.33795010755287, 34.6931565612738], [-77.33819076356085, 34.692927308856284], [-77.33849724354707, 34.692817737971446], [-77.3385739167392, 34.69258361272472], [-77.33868921858887, 34.692308368793206], [-77.33851851129373, 34.69179917680615], [-77.33850738189669, 34.69165997645497], [-77.33848964350717, 34.6916204231203], [-77.33860538407525, 34.69150014917028], [-77.33866549222302, 34.691538329640295]], [[-77.32968522643225, 34.688928942977896], [-77.3297572660097, 34.688897351633386], [-77.32965026467994, 34.68795899606188], [-77.32984562908806, 34.68769885359085], [-77.32986201351451, 34.68744259342737], [-77.33005441656847, 34.687127415648234], [-77.33004983901338, 34.68692946849325], [-77.33022022499613, 34.68675422970965], [-77.33039369130213, 34.68679920130966], [-77.33046645393041, 34.68681044092313], [-77.3306624981012, 34.68684546181167], [-77.33087816448005, 34.68688783254049], [-77.33094663770315, 34.686956269892825], [-77.33119553164644, 34.687037800277004], [-77.33140250224392, 34.68744741854557], [-77.33151708436534, 34.68757867109268], [-77.3315331821865, 34.68770081016049], [-77.33167805584914, 34.688047207540315], [-77.33164809671392, 34.6882661268971], [-77.33132374104028, 34.688704272006866], [-77.33117300413565, 34.68941984919746], [-77.33150953954515, 34.68965353589284], [-77.33156881709544, 34.69050400926915], [-77.3298590197187, 34.69043065335374], [-77.32975733951211, 34.68898886825342]], [[-77.45350998103484, 34.741612337658765], [-77.45347147420463, 34.74151513532076], [-77.45347922700442, 34.741491392343434], [-77.45355339709752, 34.74126424912007], [-77.45376373694525, 34.74092621301613], [-77.45381883876377, 34.74079795858644], [-77.45387680472467, 34.74071637391297], [-77.45423180000877, 34.740383185242685], [-77.45461431293273, 34.739678333542905], [-77.45473343468562, 34.7394403924685], [-77.45479032785316, 34.73921815614196], [-77.45515502501485, 34.73891726879144], [-77.4558344954052, 34.73916904302419], [-77.45571963316048, 34.739784790714765], [-77.45575773911446, 34.74079758362413], [-77.45578208561322, 34.7409245782364], [-77.45577686852964, 34.7409788690503], [-77.45574483734387, 34.74131222509549], [-77.45568749050271, 34.74190905469735], [-77.45567815146495, 34.74200625506622], [-77.45566517781776, 34.74214127516636], [-77.45565216751595, 34.74227667438267], [-77.45546932669683, 34.74226500619425], [-77.45532252305962, 34.742329271035544], [-77.45529388075317, 34.742317393897885], [-77.4552688380215, 34.742307009355784], [-77.45516642606951, 34.74220381980423], [-77.45502590043412, 34.74218518392471], [-77.45489170476165, 34.74204518645735], [-77.4546966237845, 34.74205484255329], [-77.45440080451297, 34.74211917581296], [-77.45428769970073, 34.74213464729119], [-77.45422204962264, 34.74214362729931], [-77.45373108457618, 34.74197332340454], [-77.45359237599268, 34.74189060516858], [-77.45356460465128, 34.74182715481557]], [[-77.32105076311392, 34.7559066741269], [-77.32111175363691, 34.75548421118179], [-77.32113136215969, 34.7554082717616], [-77.32115759524918, 34.75533290886408], [-77.32121191771273, 34.75515355718836], [-77.3213289705254, 34.75504708341762], [-77.32146563565237, 34.754967458909], [-77.32158914590755, 34.754920252932095], [-77.32167353946257, 34.75489232063993], [-77.32188333771234, 34.75481791437102], [-77.32197954647691, 34.75478446964062], [-77.32200726273284, 34.75477483466852], [-77.32207472946857, 34.754744090245694], [-77.3226351214102, 34.75467593603923], [-77.32305263335525, 34.75445860744405], [-77.32311383973511, 34.7541620036437], [-77.32318373926552, 34.753891704501854], [-77.32325918883296, 34.753654729119035], [-77.32333717066487, 34.753433885794465], [-77.32334830042336, 34.7533988405082], [-77.3233726443293, 34.753352407377484], [-77.32349222503078, 34.753135442629485], [-77.3237963748755, 34.752743327130275], [-77.32389926628244, 34.75265516116296], [-77.32411083279793, 34.75256333669781], [-77.32453385040432, 34.75226749964299], [-77.3247236103264, 34.75231400861219], [-77.324832965753, 34.75246440987583], [-77.3249074292678, 34.75256682377298], [-77.32515522634627, 34.752907625817144], [-77.32513959775694, 34.753176585381446], [-77.32497181425879, 34.75360571140867], [-77.32457782962769, 34.75396145711882], [-77.32465433156034, 34.75433779295797], [-77.32506635959359, 34.75455597224011], [-77.32621545471797, 34.755686565037706], [-77.32445473824382, 34.75665867965675], [-77.3231587261701, 34.757063754967575], [-77.32313611613269, 34.75707265315091], [-77.32311944087515, 34.75707161241838], [-77.3222679012427, 34.756960219018524], [-77.32199026365346, 34.75689266648276], [-77.32159064710666, 34.75669253728208], [-77.32123216341962, 34.75636919173887], [-77.32114580993125, 34.756246228303056], [-77.32104527489997, 34.756022254906426]], [[-77.41990072633058, 34.52563155403907], [-77.41908713093112, 34.525305393825036], [-77.41864101081214, 34.52483423700977], [-77.4191850689999, 34.52426670871065], [-77.41997895576515, 34.523807715152024], [-77.42008728800361, 34.523712109597554], [-77.42118742970911, 34.52371361189609], [-77.4215477000096, 34.52386018646292], [-77.42199029190508, 34.52407113282593], [-77.42232514192233, 34.5241993686183], [-77.42237880202968, 34.524259687619896], [-77.42241230803381, 34.524289152847594], [-77.42254825205876, 34.52437276474785], [-77.42255123045868, 34.52441306582222], [-77.42245220391672, 34.524528228862536], [-77.42231386807963, 34.52470845575593], [-77.42222424179997, 34.52475069608328], [-77.42214568962439, 34.52481737908403], [-77.42162071244157, 34.52531726418444], [-77.42152614340507, 34.52539661957626], [-77.42152307217168, 34.52540302301875], [-77.42151302559262, 34.5254252993532], [-77.42087889586178, 34.52608304977914], [-77.42079980257982, 34.526480976678094], [-77.4208670007605, 34.52657381928327], [-77.42071111695265, 34.526972654318875], [-77.42070782945308, 34.526983955702924], [-77.42093413743726, 34.52704513637819], [-77.42090353697711, 34.52708812599378], [-77.42077867488615, 34.527162957589034], [-77.42069275672725, 34.527018020883226], [-77.42066678998702, 34.52700624853078], [-77.42005490934412, 34.52717224310378], [-77.41990437780994, 34.52717114416639], [-77.41943633550284, 34.527167725013456], [-77.41990860305219, 34.52698058513892], [-77.42066583276666, 34.52697260205409], [-77.42041691642952, 34.52653631715481], [-77.42029475087367, 34.52632219299683], [-77.4199371014384, 34.525695312059405]], [[-77.32485737181351, 34.648033920538104], [-77.32463303322442, 34.64792191659708], [-77.32480755246308, 34.647874509348455], [-77.3239961095974, 34.64495337796656], [-77.32385267859583, 34.64465300495506], [-77.32325120739495, 34.64413213604554], [-77.32316929945473, 34.643902728068184], [-77.32297063659541, 34.6435397053623], [-77.32295242843631, 34.64347252296861], [-77.32290445447977, 34.643095064280885], [-77.32290521327732, 34.64309387787086], [-77.32317595223799, 34.64301389250155], [-77.32320707203418, 34.643002834983925], [-77.32366900098971, 34.642990235895084], [-77.32382407250556, 34.64299849555864], [-77.32385236385437, 34.64302786024013], [-77.32386642683662, 34.64299136141597], [-77.32441442224844, 34.64297789800221], [-77.32448044952719, 34.642967172907646], [-77.32455305142823, 34.64296523110886], [-77.32494772800305, 34.643070186268076], [-77.32518535621651, 34.64328913651369], [-77.32556324481581, 34.6432412732981], [-77.32581990205806, 34.64326061641705], [-77.3260202922414, 34.643000738226526], [-77.32615604043058, 34.64297432927535], [-77.3263927744973, 34.642924922168746], [-77.32668078319497, 34.642950192121404], [-77.32676134129206, 34.64292412842364], [-77.32684659569006, 34.64310503821865], [-77.32681796699812, 34.64340240413224], [-77.3266178695851, 34.64404603440816], [-77.32657447102221, 34.644185627588946], [-77.32653078357008, 34.64428576862977], [-77.32636753930765, 34.6448512223348], [-77.32626234513629, 34.645228867038185], [-77.32601953326606, 34.646043837316846], [-77.32601258296174, 34.646330345664566], [-77.32488580919633, 34.64788725777737]], [[-77.3832277451154, 34.629673481490606], [-77.38308963008652, 34.62978056948132], [-77.38311911529388, 34.62962761181953], [-77.38320576360562, 34.62959143866108], [-77.38322776373835, 34.629576296217365], [-77.38388079024332, 34.6286687291928], [-77.38396275425336, 34.62859909068025], [-77.38401645938325, 34.62856413356982], [-77.38419678657384, 34.62839278879822], [-77.38423969366596, 34.62837664858473], [-77.38441073898761, 34.62840052534206], [-77.38469522031946, 34.628433165038274], [-77.38480498019918, 34.628448503885], [-77.38511430450792, 34.62849097420076], [-77.38480486543347, 34.62910997318494], [-77.38466873602711, 34.62925774674934], [-77.38407729741073, 34.62942385775935], [-77.38401630957907, 34.6293833676225], [-77.38368036529263, 34.62954673921657], [-77.38329793119057, 34.629677428307524]], [[-77.46242729191702, 34.58985160484234], [-77.46063405927087, 34.59028619033328], [-77.46040901247682, 34.59056113021381], [-77.45966471369096, 34.591362489664924], [-77.45952233796919, 34.591552669987934], [-77.45928499427089, 34.591849001604785], [-77.45907912246514, 34.592285495247225], [-77.45901826758688, 34.592375049881895], [-77.45895667854924, 34.592452604709926], [-77.45907455819433, 34.59245473637424], [-77.45912572061546, 34.592455661488486], [-77.4592510038326, 34.59245648434732], [-77.45965301280404, 34.5924617825997], [-77.45982410222805, 34.59245236062209], [-77.46018090799802, 34.592470102343896], [-77.46077045853372, 34.5922092304303], [-77.4608371095374, 34.59265459059327], [-77.4613596202423, 34.592935572458245], [-77.46199338185728, 34.592542271937326], [-77.46230144082543, 34.592536050645876], [-77.46251097173328, 34.59235835077385], [-77.46266655225708, 34.591718795314854], [-77.46257086573783, 34.591421318503855], [-77.46265021227013, 34.59116833399217], [-77.4628252351545, 34.59061026915538], [-77.46300029304025, 34.590052083772946], [-77.46329060676638, 34.58912634393033]], [[-77.32877826578843, 34.75697892954206], [-77.32910626880522, 34.75714433175024], [-77.32916701557558, 34.757174963427225], [-77.3292553825013, 34.75721952101607], [-77.32924665757754, 34.75739398618392], [-77.32897942545955, 34.75758047224856], [-77.32888638890526, 34.75739067041198], [-77.32875340746138, 34.757288299533435]], [[-77.39319361959248, 34.65079709036931], [-77.3926883732515, 34.65079708103691], [-77.39230246482151, 34.650797070095216], [-77.3918996647731, 34.650797058459624], [-77.39129526210732, 34.65052677415174], [-77.39116988394795, 34.65048143038364], [-77.39111098991506, 34.650384816143955], [-77.39071302532466, 34.65018221542687], [-77.39026742690073, 34.649884891114304], [-77.39017570457412, 34.649681117112586], [-77.39101058455992, 34.64886953282048], [-77.39107292487296, 34.64881942540933], [-77.39111112200284, 34.648788722689524], [-77.39118184267575, 34.64876870777125], [-77.39268852976382, 34.64834221176677], [-77.3942036548888, 34.64834224230235], [-77.39426589887633, 34.6483422435928], [-77.39432916661244, 34.64832304407384], [-77.39441958259127, 34.648543596896666], [-77.394265892056, 34.64849251897099]], [[-77.39424493697771, 34.529638821474855], [-77.39426062616948, 34.52982417830354], [-77.39401421572325, 34.529907205392604], [-77.39393770487357, 34.52992552004546], [-77.39383429536207, 34.52994986287167], [-77.39354304410212, 34.53002104737077], [-77.39334082310529, 34.5299569112647], [-77.39325726539946, 34.52990403356617], [-77.39318461629139, 34.52975210589645], [-77.39320928249455, 34.529731058460754], [-77.39335569475436, 34.52958698048943], [-77.39390947267603, 34.5294100234508], [-77.39394834319957, 34.5294523376515]], [[-77.3478753612086, 34.76051512140311], [-77.34717740684778, 34.76092761252445], [-77.34708729149432, 34.76074072421901], [-77.34703415382104, 34.76063051846224], [-77.34614075705196, 34.75989179058116], [-77.34590757276914, 34.75981029616607], [-77.3456108494009, 34.759510878895114], [-77.3452626327478, 34.75941138190687], [-77.34524821727216, 34.75939552944829], [-77.34523160898254, 34.75937726540964], [-77.34514274246669, 34.75927953945583], [-77.34519756586974, 34.75917661796563], [-77.34518881425086, 34.75904702438007], [-77.34527515782406, 34.75892228678089], [-77.34531838408375, 34.75886609599447], [-77.34542236102678, 34.758720903123596], [-77.34561230787986, 34.75848817080188], [-77.34566551180717, 34.75838136767711], [-77.34573771237382, 34.7582307882989], [-77.3458297293724, 34.75804248019793], [-77.34608115589704, 34.75783697741683], [-77.34636162026838, 34.75755031320905], [-77.34668184593531, 34.7575207304177], [-77.34701824780058, 34.75735223616814], [-77.34740439436766, 34.75734339253897], [-77.34744892969321, 34.75764935217332], [-77.34751780983206, 34.75804456137937], [-77.3477301572196, 34.75844931873659], [-77.34779721883068, 34.75857633154421], [-77.34773814910838, 34.75866350715611], [-77.34780494735978, 34.758768112009555]], [[-77.45309261957902, 34.6162301576621], [-77.45312021460838, 34.61632553348975], [-77.45304550646355, 34.61632382146671], [-77.45225449574562, 34.617261445056236], [-77.45225090132651, 34.617261988382346], [-77.45224823268279, 34.61726259279176], [-77.45176536518724, 34.617408898853775], [-77.45174471395546, 34.61740420024273], [-77.4514642116362, 34.61730680804924], [-77.45144082196597, 34.617286476451085], [-77.45149874604135, 34.61710508671566], [-77.45134735402715, 34.61694407946313], [-77.45150297878496, 34.61673461899994], [-77.45136958742626, 34.616508118505706], [-77.451211945598, 34.616079098578034], [-77.45096623222548, 34.615571951642266], [-77.45218376567738, 34.61551263226787], [-77.45300515886889, 34.61617649132841]], [[-77.38392651530253, 34.64404033938134], [-77.38357457267955, 34.645222838608206], [-77.38322479760188, 34.645507157825406], [-77.38265274924387, 34.64606157439468], [-77.38243600757355, 34.6461816933576], [-77.38225716494865, 34.646077805009796], [-77.38164735330108, 34.6461096545344], [-77.38120762975177, 34.64603642800796], [-77.3809997171121, 34.64591457753804], [-77.38085871758904, 34.64595383879729], [-77.38069147402044, 34.645930711076076], [-77.38007005841283, 34.64591790461679], [-77.37980496174106, 34.64595307060212], [-77.37960693706776, 34.64591650358574], [-77.37928147611925, 34.6455457587956], [-77.37912747134396, 34.64548694230545], [-77.37927936290893, 34.64461844330177], [-77.37849291119903, 34.6451296383502], [-77.37817377007235, 34.64528073674588], [-77.3777041980178, 34.64534431828545], [-77.37734853932479, 34.64536024290111], [-77.37730985552719, 34.64538894092833], [-77.37721663924876, 34.64543794643926], [-77.37691550217079, 34.64547442150581], [-77.3767886340138, 34.64568726519414], [-77.3765479977522, 34.645570913395154], [-77.37642738454481, 34.64568373938236], [-77.37639698860681, 34.64568387765487], [-77.37622175466545, 34.64554072793178], [-77.37611730128039, 34.64549331322165], [-77.37616061207213, 34.645237136571126], [-77.37621950967099, 34.64515632623948], [-77.37635775960975, 34.64503673128429], [-77.37691582834472, 34.64420412383445], [-77.37694904680804, 34.644138201457004], [-77.3776873793319, 34.64401457886308], [-77.3777045295187, 34.644004327945304], [-77.3777173203885, 34.64400557607583], [-77.37837426559557, 34.6440252095598], [-77.37849313984498, 34.64416881071259], [-77.37927665122206, 34.64461090633803], [-77.37928691066321, 34.644609231867854], [-77.38007048670406, 34.64396095616916], [-77.3802810865246, 34.64384924395293], [-77.38161504208763, 34.64346571621205], [-77.38164788287352, 34.64346117915563], [-77.3817005248597, 34.64347472512625], [-77.3827743155255, 34.64374871572552], [-77.3832250954893, 34.64386207238445]], [[-77.32953627506103, 34.69225538547453], [-77.3298297528639, 34.69151537309954], [-77.33127157405796, 34.69092050528486], [-77.33151329294594, 34.69118594570925], [-77.33141825735689, 34.6916155382877], [-77.33150113291074, 34.691720825089604], [-77.33135342933095, 34.69173604717309], [-77.33044785761038, 34.6920635586108], [-77.32996478765178, 34.69239458671514]], [[-77.38100596494405, 34.624991015774874], [-77.38098644723651, 34.624840131710215], [-77.38125754171224, 34.624718391893495], [-77.38157625443426, 34.62467381039994], [-77.3816517869006, 34.62466029888847], [-77.3818129062703, 34.62454756270024], [-77.38204604401858, 34.62454224189984], [-77.38218521251488, 34.62439268691], [-77.38224319812883, 34.62435787959106], [-77.38229308346516, 34.62438585319261], [-77.38244026785922, 34.62458070880027], [-77.38246049509891, 34.62460595346003], [-77.3824793929868, 34.62462501955874], [-77.38250441850688, 34.624690523951166], [-77.38249518650188, 34.62541254504639], [-77.38257707667474, 34.625460072242106], [-77.38249912376983, 34.625534898199284], [-77.38244006279636, 34.62558297520728], [-77.38223904335396, 34.625725229070255], [-77.38165154742944, 34.62577946758593], [-77.38132060753682, 34.626133924091306], [-77.38086294179575, 34.626363107832844], [-77.3807688553705, 34.6264684371679], [-77.38034621355537, 34.62633797752675], [-77.38007453570992, 34.626038793655425], [-77.3797878703333, 34.62586194061602], [-77.37985629946098, 34.62561695321733], [-77.3800746213142, 34.625670517122806], [-77.38068205047932, 34.62553810917186], [-77.380863208155, 34.6251691133501]], [[-77.37355969927467, 34.54653100142193], [-77.3735686281499, 34.54651876364613], [-77.37372729830915, 34.54636417314451], [-77.37394184733742, 34.546217870527016], [-77.37451111808655, 34.546248719952715], [-77.37466957186373, 34.545870437506686], [-77.37528640654591, 34.545632425876576], [-77.37553289377585, 34.54530714977808], [-77.37557383307816, 34.54527553656148], [-77.37562449398294, 34.545243151157266], [-77.37601250209599, 34.54499220666262], [-77.3769016296853, 34.54456940753755], [-77.37701599041739, 34.54448690460523], [-77.3771247986037, 34.54435699881067], [-77.37740579689867, 34.54432198810293], [-77.37857506327636, 34.54425181130125], [-77.37869860643501, 34.54420388368501], [-77.37896520900111, 34.54344820309986], [-77.3789367875357, 34.54329671439129], [-77.37898965158789, 34.543122860360896], [-77.37906032805307, 34.54299778807194], [-77.37929378059525, 34.542755588645065], [-77.37937482255818, 34.542654066204975], [-77.37952175682194, 34.54252686642177], [-77.38003580089989, 34.5421589510648], [-77.37999677414896, 34.54196320199976], [-77.38032451055099, 34.54174936255271], [-77.38086090913225, 34.54155032820207], [-77.38105189781541, 34.54148301189734], [-77.38116089808345, 34.54147893292222], [-77.38190469866159, 34.54131163340733], [-77.38202970568709, 34.54138180358215], [-77.3819033123998, 34.54188250092393], [-77.38190421855866, 34.541889559573825], [-77.3818994037697, 34.54189518435644], [-77.38189118733261, 34.541908914999425], [-77.38147781627733, 34.54268349114126], [-77.38130445860062, 34.54295535922321], [-77.38107542115596, 34.54326203211296], [-77.38096080251347, 34.54342539371581], [-77.38090566216108, 34.54350251944596], [-77.38077928558451, 34.5436992515332], [-77.38058207446963, 34.544038833167356], [-77.38044894314106, 34.54416980407898], [-77.38026452437322, 34.544398938202065], [-77.38015824888456, 34.54452510390433], [-77.37999859994066, 34.544612616243384], [-77.37973642818234, 34.54481663185749], [-77.37961694818381, 34.54515729880379], [-77.37945631775538, 34.54541611479215], [-77.3791401155732, 34.5455199748381], [-77.37866346029313, 34.54575501540075], [-77.37807175503535, 34.54599374067828], [-77.3770794731387, 34.54635572801379], [-77.37693923819069, 34.54643630742485], [-77.37568878942191, 34.54670285628279], [-77.37553170451025, 34.54674510828771], [-77.3754999759818, 34.546757538986384], [-77.37546679363892, 34.546755574291474], [-77.37537863778005, 34.54674755927062], [-77.37471637641275, 34.54668734728092], [-77.37460505153504, 34.546791098320945], [-77.37450745639545, 34.54687311819575], [-77.37424051218719, 34.54711048401124], [-77.37392130058156, 34.5471224349373], [-77.37384464752141, 34.54701792312495], [-77.37381195828797, 34.546973352406305], [-77.37373065485698, 34.54686249868198], [-77.37368606937045, 34.546746666800495], [-77.37361695331406, 34.54670747194373]], [[-77.35553017677456, 34.76336383856087], [-77.35585042899402, 34.76308831347255], [-77.35626795580359, 34.76263090007933], [-77.35665512337289, 34.76223467947673], [-77.3572270716567, 34.76175460940274], [-77.35767312352996, 34.76191828997551], [-77.35773207246028, 34.76201584817809], [-77.35775598056168, 34.76208357885658], [-77.35787162998544, 34.762325406198045], [-77.35777295843967, 34.76277285123428], [-77.35804308149807, 34.76270709944474], [-77.35812429141458, 34.76289687758983], [-77.35817904756692, 34.76300027615498], [-77.35820174183074, 34.76303442572482], [-77.35822892565506, 34.763098534605994], [-77.3582635094886, 34.76318403468169], [-77.3582999940251, 34.76334293796624], [-77.35830311947149, 34.76347062975542], [-77.35822194801196, 34.76361022407731], [-77.35829869010897, 34.76388960645161], [-77.35829631884627, 34.763947254198946], [-77.35829736653972, 34.76395880387687], [-77.35830234370027, 34.76398321269929], [-77.35825930483666, 34.7640251986272], [-77.35816852130493, 34.764045538090166], [-77.35761850679876, 34.764168766420035], [-77.35718115073443, 34.76426675174607], [-77.35697987627748, 34.76430486006512], [-77.3567218534424, 34.76436964880901], [-77.35569609789786, 34.76459945002891], [-77.35458233927412, 34.764518179148425], [-77.3544211499444, 34.76456206987111], [-77.3544951643866, 34.76444097827633]], [[-77.38359717825672, 34.56209498780954], [-77.38361276519858, 34.562025226536676], [-77.38363638094057, 34.56168893579277], [-77.38364823848724, 34.56162091260773], [-77.38368439969574, 34.56156397780845], [-77.38382634655888, 34.56137532478946], [-77.38385630262935, 34.561353975338115], [-77.38403040040352, 34.56132070277173], [-77.38418688956463, 34.5611186820545], [-77.38434247279089, 34.56100794622753], [-77.38462272083362, 34.56084214023754], [-77.38481839415384, 34.56074061229228], [-77.384893618646, 34.56067327205299], [-77.3852005648989, 34.560560669256304], [-77.38521236088165, 34.560569925835395], [-77.38525767355264, 34.560539718858195], [-77.38554662497606, 34.560433716366234], [-77.3856063260391, 34.56039893414379], [-77.38570014950524, 34.56037479832755], [-77.38608329531905, 34.560934850531176], [-77.38577534388298, 34.56131420601507], [-77.38560611562355, 34.561387312674206], [-77.38515884502516, 34.56177027160784], [-77.3850423166279, 34.5622690386045], [-77.38481802795854, 34.56239140556912], [-77.38405602290942, 34.56243914274698], [-77.38403014033652, 34.562446266368354], [-77.3840021790093, 34.56244914758254], [-77.383791592785, 34.562449375676714], [-77.3836362495195, 34.56224652435854]], [[-77.42557373800302, 34.73187019846898], [-77.42571398907313, 34.73181696629416], [-77.42580086829906, 34.731787919063926], [-77.42596246060727, 34.731757510027904], [-77.42638692437086, 34.73181409574531], [-77.4264206203283, 34.73186187131847], [-77.42649437304877, 34.7320897439985], [-77.42647574429806, 34.732223428055114], [-77.42647718585548, 34.7323632686306], [-77.42640448322985, 34.732479767359806], [-77.42630062717072, 34.73258108764151], [-77.42620437955875, 34.732608784273225], [-77.4260335499566, 34.73262152897706], [-77.42577598051491, 34.73267723517837], [-77.42562073795449, 34.73269486231628], [-77.42553271627534, 34.732714111096854], [-77.42529146242705, 34.732787408487184], [-77.425236091444, 34.7328142181977], [-77.42497269157931, 34.73295551676998], [-77.42478614312327, 34.73307815318853], [-77.42452499389594, 34.733148024987784], [-77.42413675484681, 34.73322238317824], [-77.42411650387334, 34.73322842274023], [-77.4240999295687, 34.733233704562664], [-77.42397805209194, 34.733265221088566], [-77.42375394914454, 34.73332139956493], [-77.42372187302907, 34.73333146691554], [-77.42368354567645, 34.73334349618816], [-77.42340131315524, 34.73343207647193], [-77.42333499245711, 34.73322165530589], [-77.42326484493775, 34.73311631309737], [-77.42328634695713, 34.73299373612868], [-77.42329768880498, 34.7329290787692], [-77.42330708586887, 34.732875507953366], [-77.42333732953992, 34.732703096048816], [-77.42334389058357, 34.732665692725845], [-77.4233549720615, 34.73263234817522], [-77.42338968095575, 34.73241469326388], [-77.42342962208448, 34.73241612498131], [-77.42358049178966, 34.7323525453734], [-77.4237031159085, 34.73238975866614], [-77.42383826585531, 34.73243077275961], [-77.42400564604624, 34.732452116754125], [-77.42409343015422, 34.732442831124246], [-77.42433352328746, 34.73242693158779], [-77.42453030397468, 34.73240882035813], [-77.42475136641141, 34.732319082868926], [-77.42491398988277, 34.73228789835798], [-77.42504685274568, 34.732177699930745], [-77.42521749308328, 34.73203595684157], [-77.42531324443772, 34.731956419898346]], [[-77.32464572447147, 34.55913967649093], [-77.3249581065207, 34.55914794844749], [-77.32554760094267, 34.55918324925817], [-77.32566492888084, 34.55879834839268], [-77.32553872624891, 34.55846441482475], [-77.32565048024233, 34.55831079976987], [-77.32562363970288, 34.55822658611736], [-77.3256674242296, 34.557818735570834], [-77.32568003827872, 34.55739231811974], [-77.32567539671496, 34.55725810179476], [-77.32578880017601, 34.5572001608098], [-77.32589407069287, 34.55723046815206], [-77.32657783669941, 34.55704038695633], [-77.32693487664451, 34.55714697591845], [-77.32712539218949, 34.55726458229683], [-77.32735653736536, 34.557324675013845], [-77.32757608202495, 34.55740639064538], [-77.3275952153158, 34.557541707374675], [-77.32775439333068, 34.557754174852406], [-77.32766239372185, 34.55802168131152], [-77.32767619534509, 34.5582321606954], [-77.32768851544373, 34.55828662270143], [-77.32785135603277, 34.558484153567264], [-77.32796631778051, 34.55855917295132], [-77.32810976730978, 34.558704292760574], [-77.32829166170906, 34.5589105040157], [-77.32846040454453, 34.55911075753667], [-77.32847581103204, 34.55912885354315], [-77.32848069769815, 34.55913545128783], [-77.32849202546016, 34.55915183804675], [-77.32863004799275, 34.55935150125857], [-77.32848670700758, 34.55959160964255], [-77.32837568058441, 34.55969304205381], [-77.32809265235754, 34.559723981996456], [-77.3278752022166, 34.55969435378058], [-77.32769877986958, 34.55965408943675], [-77.32734621525796, 34.559536004452305], [-77.32732504362521, 34.55952673766524], [-77.32730569121394, 34.55950993104816], [-77.32689485628381, 34.55936941588222], [-77.32652724267334, 34.55921392411189], [-77.3258338569671, 34.559322609296714], [-77.325739149926, 34.5593322927803], [-77.3250504511726, 34.55986589926308], [-77.32499424655092, 34.559931391902566], [-77.32494049824665, 34.560431133355], [-77.32487685347552, 34.560671569403425], [-77.32428012955927, 34.56068797508175], [-77.32415246632266, 34.56059142647813], [-77.3236436646707, 34.56006802790707], [-77.32362822824692, 34.559909056894654], [-77.32337255415578, 34.55978612154209], [-77.32266117911273, 34.559675050321246], [-77.32256114087558, 34.55924430223312], [-77.32267637272618, 34.558779068951644], [-77.32270755563817, 34.55873364421212], [-77.3234087238805, 34.55823475755652], [-77.32354215706799, 34.55852630599704], [-77.32357970229808, 34.55860834030414], [-77.32363669425906, 34.558937432096606], [-77.3240487701703, 34.55903057156541], [-77.32417407269253, 34.55909204989108]], [[-77.4171867108557, 34.732751031362355], [-77.41744740492662, 34.7331201808359], [-77.41696541825696, 34.73395798992459], [-77.4168491373686, 34.734067252828545], [-77.41602501585672, 34.73485923620449], [-77.41570908058151, 34.73519602652188], [-77.41498607733686, 34.735921154879726], [-77.41256748813413, 34.736045730963106], [-77.41187281911071, 34.73608149786493], [-77.41231709145711, 34.735636468737084], [-77.4125794912703, 34.73537482560096], [-77.41385407263147, 34.73410018920091], [-77.41458754834598, 34.73336303199697], [-77.41467999538371, 34.733270784717355], [-77.41516234566106, 34.73292443770449], [-77.41562341192997, 34.73248245310192], [-77.41587648791835, 34.732477598156315], [-77.41598021955191, 34.732489046898735], [-77.4161417333516, 34.73251603128045]], [[-77.37991069567715, 34.64215010162133], [-77.37928226462421, 34.642103734409964], [-77.37921712976251, 34.642077531585564], [-77.37869608816672, 34.64193464122684], [-77.37849377357202, 34.64152012039875], [-77.37821848562233, 34.64192507476866], [-77.37802368390379, 34.641906358477804], [-77.37770505431915, 34.64189390043748], [-77.37765792433515, 34.6418775523308], [-77.37768524912107, 34.64147049359913], [-77.37696813245437, 34.64160793443342], [-77.37691650528144, 34.641582173482625], [-77.37690334264714, 34.641575845355604], [-77.37686922242828, 34.64156658534627], [-77.37644185756221, 34.6412901539212], [-77.37643621481388, 34.64111168059799], [-77.37666856005069, 34.64101348848648], [-77.37691653927263, 34.641451105627674], [-77.37766633939135, 34.641409963719795], [-77.37772680626405, 34.64141977644281], [-77.37849385183202, 34.641194445773294], [-77.37893668229404, 34.64126880328314], [-77.37920782299713, 34.6413100972116], [-77.37928232944975, 34.64182258074932], [-77.37951637154825, 34.6414372023863], [-77.38007097145581, 34.64176001978291], [-77.38012592976416, 34.641887416624414], [-77.38022946162513, 34.641931707212265], [-77.3815142547657, 34.64330096347732], [-77.3800707177461, 34.642910673017894]], [[-77.4832949610473, 34.6882758228051], [-77.48301241512235, 34.68898835391048], [-77.48236021416625, 34.69020129881663], [-77.48227481053665, 34.69067594785247], [-77.48201838355126, 34.690837031354675], [-77.48202798962421, 34.69103059692078], [-77.48212346740455, 34.692472762273255], [-77.48294263007344, 34.69339546989642], [-77.48343579570606, 34.69427691158373], [-77.48429592273808, 34.69386800185117], [-77.48501382319415, 34.69305090950235], [-77.4850533625934, 34.69301463693417], [-77.48506015684029, 34.69299268602681], [-77.48521001612772, 34.69195148826104], [-77.48511962888662, 34.691341590328506], [-77.48485449744466, 34.69081134952628], [-77.48447323085055, 34.69004881327645], [-77.48396943779997, 34.68904120016097], [-77.48382684535042, 34.68875602233106]], [[-77.39991293799287, 34.58814577396278], [-77.40037230966709, 34.58786124012434], [-77.40057487908464, 34.58737935989321], [-77.40065518423353, 34.587189527970274], [-77.40057488488517, 34.586976882008685], [-77.40043133309467, 34.58652735808511], [-77.40036032964791, 34.5863829240067], [-77.39982655543176, 34.58565361170725], [-77.39989399005624, 34.58560106371363], [-77.4005749084255, 34.58541688659999], [-77.40134798949994, 34.58537509246733], [-77.40136299461051, 34.58537985448597], [-77.40137522150016, 34.585374156403454], [-77.40143556165432, 34.585378623487756], [-77.4021510800738, 34.58541539220323], [-77.40277257871841, 34.585365174982286], [-77.40293916633058, 34.58548534811907], [-77.40319641025185, 34.58569649543489], [-77.4033332166099, 34.58590835023574], [-77.40334398126733, 34.585952372532994], [-77.40345991555185, 34.58607215344338], [-77.40349831001502, 34.586176796749434], [-77.40335432291018, 34.586375455902484], [-77.40334646705121, 34.5863908572833], [-77.40333322687664, 34.58647926731787], [-77.4030509465044, 34.58684381320614], [-77.40300638143745, 34.58692264613758], [-77.40293918567886, 34.58694795283499], [-77.40273919245013, 34.587104290187455], [-77.40249979171821, 34.58729906601255], [-77.40242597588687, 34.587486972985886], [-77.4022888265703, 34.587802944816865], [-77.40232506028191, 34.58798515976359], [-77.40238832414695, 34.588382132753445], [-77.40254515000348, 34.58842521191613], [-77.40261305321187, 34.58860530786949], [-77.40269653831258, 34.58875636894474], [-77.40254515555948, 34.58896301668649], [-77.40250360556061, 34.58900090910207], [-77.40215109644423, 34.5890158692632], [-77.40178798601266, 34.589115596914866], [-77.40173941993308, 34.589136970068296], [-77.40151534247097, 34.589188284919906], [-77.40137265235343, 34.589219300396785], [-77.4013629759505, 34.58922782524655], [-77.40115478545019, 34.58944057574644], [-77.40108681029963, 34.58967469470972], [-77.40112173839083, 34.58992956710859], [-77.4011447479441, 34.59009090930991], [-77.40122688171348, 34.59035700538481], [-77.40113766187035, 34.59051650601606], [-77.40111668067638, 34.590784888234126], [-77.40115212292466, 34.59136356668223], [-77.4017688858543, 34.5916863852017], [-77.40215111603833, 34.5918627886597], [-77.40223215809152, 34.59196956032877], [-77.40228751346362, 34.59204888681245], [-77.40242566439215, 34.59215773134721], [-77.40254519642745, 34.59242675207921], [-77.4025467102975, 34.5924344289229], [-77.4025470092397, 34.59243601672387], [-77.40254728368743, 34.59243822575445], [-77.40254519673465, 34.59245020335391], [-77.40248050841834, 34.59280048851242], [-77.4024449400798, 34.592875320577456], [-77.40245222537692, 34.59297444292514], [-77.40240137182984, 34.59315121780367], [-77.40233687725775, 34.59331548918916], [-77.40215113151888, 34.59367057430544], [-77.40204126754598, 34.59366435474755], [-77.40206385524564, 34.59377946074878], [-77.40201439132035, 34.593933921170645], [-77.40196590738972, 34.59401861022468], [-77.40183114510069, 34.59423761459677], [-77.40180044322652, 34.59428879225087], [-77.40175705314809, 34.59438966686007], [-77.40165293259486, 34.59457572723642], [-77.40162717047356, 34.594691621495755], [-77.4015600118052, 34.5948477255752], [-77.40153605821826, 34.59489124873923], [-77.40152980160187, 34.5949179583279], [-77.40147644788662, 34.59501568564248], [-77.40146495223614, 34.595037188866186], [-77.4013847939342, 34.595151168734624], [-77.40137480925597, 34.59516536632517], [-77.40136296832642, 34.595182203301825], [-77.40118804839587, 34.5953680075841], [-77.40129417857614, 34.59516424338423], [-77.40125666582526, 34.59505513017484], [-77.40120609536628, 34.59496466547436], [-77.40120682978917, 34.594920489334285], [-77.40119879859454, 34.59475343088827], [-77.4011872160337, 34.594565752804364], [-77.40120836908548, 34.594327475413436], [-77.40123135062876, 34.59404138487326], [-77.40120772002662, 34.59390299421799], [-77.40125198641505, 34.59377703844346], [-77.40122993510425, 34.5931939666394], [-77.40123111977907, 34.59305046873298], [-77.4009083290787, 34.59273771766982], [-77.40078378621993, 34.592690439418554], [-77.40057481622658, 34.59244451489046], [-77.4005253694466, 34.59235642552559], [-77.40041026526889, 34.59231975868988], [-77.40018074584628, 34.59205940084339], [-77.40014078088267, 34.59197712590961], [-77.39978668053156, 34.59160665141418], [-77.39976152288104, 34.591591317381386], [-77.39972884559835, 34.59156892695027], [-77.39976099213774, 34.59153661055917], [-77.39978668274406, 34.59149977751573], [-77.40004679830761, 34.59095414277031], [-77.400237998677, 34.59064631686463], [-77.40016737859077, 34.59024636331468], [-77.39921801597876, 34.59018075690413], [-77.3989985825213, 34.590069894022555], [-77.39894010871679, 34.590047429847], [-77.39831604081013, 34.59018823227969], [-77.39821044659728, 34.59019359292246], [-77.39808604361681, 34.59024167610733], [-77.39781637467198, 34.59032145414325], [-77.39763232548722, 34.5903993806601], [-77.39755744546896, 34.59046286950691], [-77.39742229706883, 34.5905374318515], [-77.39737609543707, 34.590422351486446], [-77.3973704662218, 34.59026673489611], [-77.39737282771895, 34.590210536522385], [-77.39738979334358, 34.59017304946381], [-77.39742231806545, 34.59011681405268], [-77.39746992405168, 34.59003553006445], [-77.39752391670396, 34.58997645386802], [-77.39757464056092, 34.589920954323915], [-77.39774740133092, 34.589731926743355], [-77.39778375805875, 34.5896915090098], [-77.39781640494115, 34.58965512597639], [-77.39800234581875, 34.589470902323946], [-77.39803932834194, 34.589449638486585], [-77.3982104715895, 34.58958075814386], [-77.39847864333106, 34.589490789543916], [-77.39871914286442, 34.58916716088764], [-77.39894281585029, 34.58907477232075], [-77.39899861971534, 34.58889460614551], [-77.39941950329647, 34.58867043426899], [-77.39978675360815, 34.588261576552476]], [[-77.36522846300926, 34.78050711662775], [-77.36433429007414, 34.78292070497419], [-77.36285705712211, 34.78295373750666], [-77.3622692993944, 34.781738882609595], [-77.36193202641417, 34.781720207229064], [-77.36175407456633, 34.781696062459446], [-77.36087903398666, 34.781425044987046], [-77.36074963571372, 34.78137273460639], [-77.36052564202156, 34.780868169920645], [-77.36047297277388, 34.78070155415344], [-77.36056377241722, 34.78049809619812], [-77.36065002653216, 34.7803524694572], [-77.36081295296677, 34.780156844441066], [-77.360835991638, 34.780137933148126], [-77.36098123592748, 34.7800437518314], [-77.36111606040217, 34.779956327150806], [-77.36117480659811, 34.779909056315546], [-77.36148548507596, 34.77975921102136], [-77.36164468741923, 34.77958208776432], [-77.36192638343027, 34.779204095955436], [-77.36190194939516, 34.77911288828589], [-77.36195418199512, 34.77902820993178], [-77.36246593932594, 34.77875102277724], [-77.36255258051591, 34.77850934900748], [-77.36284826415942, 34.777927855056795], [-77.36286360669342, 34.77777173507106], [-77.3629784164019, 34.77770827071382], [-77.36311416700414, 34.7776502942689], [-77.36362989310396, 34.77727624082886], [-77.36370026804015, 34.77694606639428], [-77.3639777311948, 34.77656518447148], [-77.36404164488417, 34.776452151646815], [-77.36444996821028, 34.77608996718422], [-77.36497553885994, 34.77565968875476], [-77.36511448137345, 34.77632249560962], [-77.36484875554318, 34.77709511124538], [-77.36516970208612, 34.77746024681077], [-77.36563342855044, 34.77855350690954], [-77.36559063984389, 34.778985442516884], [-77.36424466977142, 34.77937343876368]], [[-77.44482570294745, 34.681079475039695], [-77.44440027569647, 34.681046870769265], [-77.44476464925611, 34.68129043941805], [-77.44490096102325, 34.681279539709585], [-77.44494591313898, 34.68127594508159], [-77.44505717885988, 34.68127653127997], [-77.44511937616986, 34.6811423273798]], [[-77.43804739594802, 34.67728333667732], [-77.43794186618001, 34.67730428111976], [-77.43772673838984, 34.67753269967655], [-77.437714770388, 34.67759118316121], [-77.43788839914477, 34.6778330917454], [-77.4379391541953, 34.6778904209049], [-77.43811810226312, 34.67796624561366], [-77.43816638927412, 34.677979607278246], [-77.43839340862422, 34.67804242600772], [-77.43851282338818, 34.67788946589355], [-77.43852295786502, 34.67787379826593], [-77.43862460650023, 34.6776726395285], [-77.43865964764603, 34.67758962755944], [-77.43848229445422, 34.677300532737064], [-77.43838726625367, 34.67721588210111], [-77.43834974965007, 34.67722332814353], [-77.43829346099078, 34.67723449983754], [-77.43814580793233, 34.677263804821536]], [[-77.42844666760843, 34.68056966961225], [-77.4289162538551, 34.680495700562], [-77.42894326614872, 34.680114106964545], [-77.42879612295944, 34.67992139750824], [-77.42870789525274, 34.67966683145987], [-77.42842423707337, 34.67918385001067], [-77.42777620783711, 34.6786316432507], [-77.42748014658677, 34.67948099497139], [-77.42744459101957, 34.6795851909548], [-77.42743867582121, 34.679595192440466], [-77.42744261501595, 34.679610704443604], [-77.42746039276027, 34.67961102823228]], [[-77.45630044142948, 34.74334152906218], [-77.45640708105725, 34.74335246086564], [-77.45643110210676, 34.74337374351018], [-77.45643932433761, 34.74338102333093], [-77.456537318557, 34.743424245070244], [-77.45699925848393, 34.7436263354455], [-77.45746244234608, 34.74384687935526], [-77.45753523144751, 34.743990239520656], [-77.4578326527797, 34.744585248208104], [-77.45791311147644, 34.74490092419904], [-77.45792898495847, 34.74502815184127], [-77.45779482268557, 34.745310021233294], [-77.45771683283914, 34.74549057776025], [-77.45770553482402, 34.745509109052605], [-77.45738754777025, 34.74560976491366], [-77.45732551393426, 34.745599152464294], [-77.45708173124603, 34.745558620826756], [-77.45692645071452, 34.745409922996885], [-77.45682623857877, 34.745333443699025], [-77.45661191605586, 34.74518162418209], [-77.45656035623801, 34.74514420049728], [-77.4565354796188, 34.74512666024128], [-77.45645112532218, 34.74507109668282], [-77.45612244531648, 34.74485260557959], [-77.45602202040325, 34.74478844862983], [-77.45586134529381, 34.74470372144895], [-77.45566172011739, 34.744598455032275], [-77.45548081601757, 34.74444262991888], [-77.4550242755557, 34.74401386363058], [-77.45499455791035, 34.743984022710485], [-77.45497724097169, 34.743966700511706], [-77.45487440530964, 34.7438399149143], [-77.4547204113407, 34.743652001035464], [-77.45459615500795, 34.74338565146087], [-77.45455533917665, 34.74329111965372], [-77.45463408715811, 34.743241590354195], [-77.45487164071679, 34.74308798966541], [-77.45517243007754, 34.74301690640088], [-77.45525744333301, 34.742997733399015], [-77.45527931436446, 34.74300613622802], [-77.45579405702995, 34.743203899423776], [-77.45583594309828, 34.74321454113579]], [[-77.38547377795352, 34.66553424712252], [-77.38498680836516, 34.665722577632124], [-77.38497293185951, 34.66572844032774], [-77.38468595189093, 34.665728382694404], [-77.38464160559434, 34.665753838196885], [-77.38453208768902, 34.66574313875857], [-77.38448342684731, 34.66572725510918], [-77.38441366897787, 34.665693465413135], [-77.38440002831302, 34.665682669730465], [-77.38437098546018, 34.66561671811116], [-77.38431999829255, 34.66558450402429], [-77.38432410840244, 34.66545567681446], [-77.38413355494285, 34.66536645739894], [-77.38417849566586, 34.66517354083638], [-77.38351769830675, 34.665076815218626], [-77.38340194974664, 34.6649974803375], [-77.38339052395565, 34.664991915469066], [-77.38337698537448, 34.664983157094895], [-77.38336185383453, 34.664938697303626], [-77.38343412643155, 34.66488647681339], [-77.3841412529841, 34.66435331952873], [-77.3843107029661, 34.66428310098127], [-77.38482265811326, 34.664224608425364], [-77.38525411940236, 34.66406347859652], [-77.38551522113274, 34.66414384214408], [-77.38593215243718, 34.664525389611335], [-77.38605279369916, 34.664518343437614], [-77.38615025104012, 34.66460154187774], [-77.3862729750106, 34.66496641053925], [-77.38630550976288, 34.665067579292426], [-77.38565321460793, 34.665487765575534]], [[-77.40440115751997, 34.67991369450264], [-77.40466730408114, 34.680169273315755], [-77.40481117540295, 34.68031524857878], [-77.4048694498866, 34.68030812001359], [-77.40483487285822, 34.68034506356324], [-77.40477173719434, 34.68045140951782], [-77.40470595825434, 34.6805460281239], [-77.40468789753398, 34.68057318914096], [-77.40465967856547, 34.680618787395375], [-77.40441692761596, 34.680821406839655], [-77.40433835583994, 34.68084145454344], [-77.40423721145375, 34.6807950068625], [-77.4040579701551, 34.680703285339376], [-77.40389249277636, 34.68071166057808], [-77.40359091713762, 34.68061825390154], [-77.40345556686674, 34.680570682181894], [-77.40335280177446, 34.680576950434485], [-77.40326812752805, 34.680529727526206], [-77.40318501492925, 34.68039857051206], [-77.4031428981775, 34.680358796528296], [-77.40296491988701, 34.68005227224778], [-77.40290977491459, 34.6800097041229], [-77.40288735253701, 34.67994297982776], [-77.40271668335417, 34.67964391457808], [-77.40272522071547, 34.67955017467921], [-77.40283328664798, 34.67936491662409], [-77.40284450148188, 34.6793618727771], [-77.40308562500563, 34.67939157142949], [-77.40315333250308, 34.67940182004544], [-77.40357663743357, 34.67944665379892], [-77.40375491109485, 34.67953724152499], [-77.40386900410769, 34.679609596916464], [-77.4040314751216, 34.679688589939005], [-77.40427108084153, 34.679834558700044], [-77.40430357447289, 34.679855354840754]], [[-77.47446311038499, 34.56813870476462], [-77.47488216026463, 34.56819645499207], [-77.47550092601597, 34.56781553898538], [-77.47553767191381, 34.56718712321536], [-77.4760363237211, 34.56689792316637], [-77.47563578891021, 34.56670341456108], [-77.47567182060742, 34.56626344269832], [-77.47501626089988, 34.56604629867472], [-77.47482124016184, 34.5665063260157], [-77.47460510603646, 34.56686084915198], [-77.4745807441412, 34.567080084878995], [-77.47496596572749, 34.56720356759508], [-77.47448486850219, 34.567942906334565], [-77.47447261588792, 34.56805316982146]], [[-77.39310792185611, 34.541385728701485], [-77.3928141389675, 34.541346221500206], [-77.39131789295448, 34.541686492387086], [-77.39071136762252, 34.541972904854845], [-77.39052512332027, 34.54202544185822], [-77.39046709573925, 34.542088254441246], [-77.39013074589928, 34.5421056755524], [-77.39000555795755, 34.54211215931333], [-77.38989650346954, 34.54210711142841], [-77.38973920256612, 34.542060064063264], [-77.3896330945037, 34.54199904082927], [-77.3895559066498, 34.541882157390816], [-77.38945077441747, 34.54178050775883], [-77.38925871363159, 34.54150068715262], [-77.38923143536812, 34.541322482131946], [-77.38920943712284, 34.541178770623276], [-77.38897792989509, 34.5410009546189], [-77.38893548432867, 34.54090335214832], [-77.38892605350885, 34.54087686857998], [-77.38887008504487, 34.5408150692204], [-77.3888831154647, 34.54070157098127], [-77.38893340487542, 34.54063097524369], [-77.3889658781359, 34.540397457034985], [-77.38897269682116, 34.54038047443738], [-77.3889740483512, 34.540368975662666], [-77.3889964923652, 34.54017730737917], [-77.38907760498626, 34.53987567515718], [-77.38936434650941, 34.53956546949982], [-77.38947231145052, 34.539329070290734], [-77.38981088253615, 34.53887818158188], [-77.38987628743534, 34.5388211177809], [-77.39000857898279, 34.53876204232267], [-77.39036293831091, 34.53856111309829], [-77.39060468072867, 34.538492410145395], [-77.39078001340087, 34.53865075086511], [-77.39100733441389, 34.53885144678063], [-77.39114687761791, 34.539087490252655], [-77.39114891957095, 34.53922710862128], [-77.39108348542368, 34.53940812155541], [-77.39101552931398, 34.539596106977385], [-77.39089009112828, 34.53990601091361], [-77.39111385735595, 34.54041616918347], [-77.39090522952492, 34.54059135385768], [-77.39090356033307, 34.54086158340945], [-77.39133513110251, 34.540920644702204], [-77.39247109202691, 34.541076091937704], [-77.39306373801156, 34.54115718951185]], [[-77.41161295984602, 34.62281260347015], [-77.4105469631739, 34.62282582720144], [-77.41003611288627, 34.623010815268245], [-77.40882772836027, 34.62382527542819], [-77.40976034903937, 34.622389146386354], [-77.40995388874956, 34.62227275665759], [-77.4100360034008, 34.62213656097913], [-77.41066088605567, 34.62141001536175], [-77.41072764695332, 34.62129625856189], [-77.41076839216854, 34.62096991975066], [-77.41082426892903, 34.6209093819589], [-77.41099713788591, 34.62069854179667], [-77.41104191782674, 34.62069599180609], [-77.41121846750637, 34.62083457090777], [-77.41126666733658, 34.62084608782227], [-77.41161271394816, 34.62110035758787], [-77.41175715610291, 34.62109620958345], [-77.41200691515189, 34.62104333727481], [-77.41236617677458, 34.62116387090544], [-77.41238625924142, 34.621177004353186], [-77.41240114451264, 34.621175139578234], [-77.41255837259627, 34.62130544675305], [-77.41260109445605, 34.621339213711224], [-77.41260215796083, 34.62134627811347], [-77.41245098828745, 34.62157620833551], [-77.41240121252658, 34.6216209725793], [-77.4121653998083, 34.62178800651155], [-77.4118886027117, 34.622081966126935], [-77.41176861779589, 34.62226701662373]], [[-77.33366323812521, 34.5637859644701], [-77.33373605835668, 34.563712039951184], [-77.33399850343741, 34.56354956160901], [-77.33431093405682, 34.56354153768868], [-77.33439246118968, 34.563543463947546], [-77.33445184765068, 34.563545139595334], [-77.3344734786923, 34.56360602893365], [-77.33475472138872, 34.563956348725895], [-77.33477979349964, 34.563986532570354], [-77.33478095015013, 34.563991857938454], [-77.3347860465104, 34.56399146961359], [-77.33484776829656, 34.56404331936353], [-77.33517974116003, 34.56431057753814], [-77.33519401932304, 34.5643361122647], [-77.33519979446707, 34.56435069109622], [-77.3352037565836, 34.56437605872373], [-77.33527613372785, 34.56476425648565], [-77.3351791674489, 34.56501499162054], [-77.33510678198914, 34.56513524540468], [-77.33502320490305, 34.56522515959818], [-77.33486909593964, 34.56558095645239], [-77.33487027548163, 34.56576401631564], [-77.3347846173356, 34.56573641822936], [-77.33475166733116, 34.565724255335326], [-77.33458758093875, 34.56580333200938], [-77.33447598156724, 34.56572837010397], [-77.3344274290622, 34.56569575709507], [-77.33439070970869, 34.565669190302], [-77.33423175477228, 34.5655512098304], [-77.33422047728905, 34.56552413494639], [-77.33399724414707, 34.56537292381708], [-77.33399699245774, 34.56537273217235], [-77.33399694393228, 34.56537269557944], [-77.33378280565633, 34.56520989649644], [-77.33360328785035, 34.565064451148885], [-77.33355163731468, 34.56501217053266], [-77.33347641858866, 34.56488610594999], [-77.3334363406399, 34.56481647494642], [-77.33343708197414, 34.56478345832745], [-77.33341135821381, 34.564607796275126], [-77.33331319098284, 34.56430861166152], [-77.33360426573273, 34.56389121731182]], [[-77.35034978403924, 34.72526918001366], [-77.35051404886867, 34.725172577353234], [-77.35185602740113, 34.72553767152967], [-77.35265819952835, 34.725568394107434], [-77.35279233137716, 34.72560577649752], [-77.35294043587896, 34.72570345302472], [-77.3530696367894, 34.72578664557478], [-77.35298824467202, 34.72608843869493], [-77.35287902382638, 34.726199265029145], [-77.35286461526043, 34.72633857053748], [-77.35283485638779, 34.726692709974124], [-77.35287171159867, 34.726727313868395], [-77.35282126745652, 34.727068791884726], [-77.35280402891215, 34.7271735833702], [-77.35280227660041, 34.72718456434141], [-77.3528003246129, 34.72719843122834], [-77.3526555466319, 34.727639383099806], [-77.35263732358771, 34.72769225456757], [-77.35263111242593, 34.72769544060616], [-77.3523983644818, 34.72811877563368], [-77.35211117352992, 34.728254187467726], [-77.3518977854323, 34.728313488418515], [-77.35186335739085, 34.72830505878545], [-77.35181684129203, 34.72829458581277], [-77.35173360857793, 34.72799703683172], [-77.35093105014468, 34.7280951502583], [-77.3507394697323, 34.72805093204244], [-77.35042800867384, 34.72821298747285], [-77.34954777378397, 34.72803024304338], [-77.34825478653595, 34.727321285609015]], [[-77.42574101415853, 34.68318709683007], [-77.42582955304292, 34.682945019774195], [-77.42582701075563, 34.68293763800098], [-77.42572849411786, 34.68276240583293], [-77.4258651941486, 34.68284757163003], [-77.4258405950964, 34.682940411599866], [-77.42614732163499, 34.682979809964785], [-77.42615350692219, 34.68305184043695], [-77.42615623630009, 34.683087850883055], [-77.42612950389797, 34.683183213950905], [-77.42616974971193, 34.6832494214389], [-77.42615978470668, 34.68328062960186], [-77.42609038393522, 34.68330929987778], [-77.42607693590392, 34.683332142053146], [-77.42599215221102, 34.68354672673698], [-77.42598686924892, 34.68355263124512], [-77.4259589456919, 34.683630770990575], [-77.42589650498586, 34.68352102356797], [-77.4258240579529, 34.68339368900912], [-77.42575568057211, 34.68322600933906]], [[-77.43788718315348, 34.586350465037654], [-77.4380089418975, 34.58609093062331], [-77.43803623350885, 34.58603563878167], [-77.43815581986527, 34.58585996945652], [-77.43820100412427, 34.58579431197739], [-77.43821136137724, 34.585792057181905], [-77.43840280346944, 34.58568657026868], [-77.43856991494016, 34.585713925631644], [-77.43861101915404, 34.58572817475238], [-77.43876142997209, 34.58589251134631], [-77.4387907986025, 34.585926518878075], [-77.43879090998036, 34.585933010610624], [-77.4387969587852, 34.58595396786571], [-77.43885384607039, 34.58628085284153], [-77.43895337073394, 34.58649588330474], [-77.4389610029219, 34.58675109280241], [-77.43901557111198, 34.586932701002766], [-77.43919163372647, 34.58737425825758], [-77.43933765412837, 34.58754581156331], [-77.43967603700747, 34.5878243256072], [-77.43963573667214, 34.58798093996239], [-77.43954233382212, 34.58798781038398], [-77.43919191530145, 34.58800123363116], [-77.43883686618292, 34.5880848101214], [-77.43874139735455, 34.58811753780386], [-77.43840382637048, 34.588016007599464], [-77.43804113875042, 34.588124158441275], [-77.43790465400528, 34.588064339411744], [-77.43761569260339, 34.587928215695854], [-77.4375817661933, 34.58783624668638], [-77.43753311264692, 34.58780676847715], [-77.43713463485719, 34.587533369467565], [-77.43682725514664, 34.587115242023756], [-77.43647158534912, 34.58757681311167], [-77.43641653636868, 34.58756179826228], [-77.43635104831488, 34.587553099952686], [-77.43613343718741, 34.58748314970493], [-77.4360393273685, 34.587505163299845], [-77.4359391491136, 34.58740036086729], [-77.43595007377976, 34.587282558938426], [-77.43587766597585, 34.587196954183824], [-77.43564508146096, 34.587013097480714], [-77.43557726868538, 34.58688881107477], [-77.43547980557292, 34.586829887540745], [-77.43535920626357, 34.5867306475426], [-77.43525090865695, 34.58669150268849], [-77.43521857078144, 34.58665536233829], [-77.43514206217517, 34.58657136171228], [-77.43506772336508, 34.58647987583953], [-77.43505780042574, 34.58646631105093], [-77.43507455960491, 34.58644150563853], [-77.43514215399475, 34.58633708104796], [-77.4351624542555, 34.58633404170863], [-77.43525076807029, 34.58634093654395], [-77.43532278147674, 34.58635040564833], [-77.43544780628807, 34.58638539528461], [-77.43550302411921, 34.586401937915824], [-77.43558324331528, 34.586456728359536], [-77.43564488374099, 34.58652604409261], [-77.43577842184504, 34.58664286999142], [-77.43603909618112, 34.58694256311165], [-77.43633194490513, 34.58681565887599], [-77.43643310828762, 34.586867698655965], [-77.43669814263386, 34.586939275250565], [-77.43682721659445, 34.58702354099436], [-77.43755850820112, 34.58689277023916], [-77.43761520961226, 34.58680504726124]], [[-77.4432604491998, 34.62276441634801], [-77.44373099028397, 34.62263035436913], [-77.44376327351033, 34.6226340917129], [-77.44410703532864, 34.62264384391842], [-77.44426935946595, 34.6228295840621], [-77.44429192793444, 34.62285262411869], [-77.44427474546802, 34.6228959804987], [-77.44418566237992, 34.62311000469715], [-77.44405450744003, 34.62316519855523], [-77.4438957110503, 34.62323202460943], [-77.44376848131978, 34.6232737401832], [-77.44349248163147, 34.623395066201915], [-77.44337032234064, 34.62323351943063], [-77.44327463662572, 34.62314265081546], [-77.44322691328026, 34.622805409782174], [-77.44319576892522, 34.622795884341954], [-77.44322851208992, 34.62277509608019], [-77.44323959781451, 34.622756015507775]], [[-77.35458770718337, 34.55131222282388], [-77.354438870231, 34.55138569259324], [-77.3542610230506, 34.55150304962643], [-77.35418957516417, 34.551552254256464], [-77.35399831770432, 34.55166808522955], [-77.3539696759591, 34.55168027373158], [-77.35379287798338, 34.551729672776034], [-77.35367952328126, 34.5517613449603], [-77.35341261641763, 34.55186999215105], [-77.35340109263277, 34.55187424451421], [-77.35339687247985, 34.55187688661212], [-77.35320442200634, 34.55202692659048], [-77.35315713703591, 34.55205371981764], [-77.35299801243352, 34.552148346621955], [-77.3529741929475, 34.55216327982849], [-77.35281811783237, 34.552189554485295], [-77.3528008848893, 34.5521837742441], [-77.35270242602633, 34.55215640898662], [-77.35260665188869, 34.5520931664787], [-77.35248697805514, 34.552078060506965], [-77.35241059947089, 34.55208178449239], [-77.3523469347501, 34.552063340304606], [-77.3523128817852, 34.55206266307522], [-77.352259814485, 34.55203591719663], [-77.35225723647379, 34.55201052705421], [-77.35221708465298, 34.55195994058248], [-77.35218955001584, 34.55192361927945], [-77.35220981361037, 34.55180504460549], [-77.35219892600416, 34.551799858989405], [-77.35220299632576, 34.551788025820514], [-77.3522223248085, 34.55173183395003], [-77.35232898495298, 34.55153631811893], [-77.3524013593194, 34.55138778854507], [-77.35233087741678, 34.55123071382613], [-77.35218282822424, 34.55106771020709], [-77.3520980244499, 34.55092417085129], [-77.35184994138808, 34.55085084138479], [-77.35176542374575, 34.55069310420221], [-77.35175272859139, 34.55063997000043], [-77.35165829699314, 34.55053279769311], [-77.35165416253622, 34.550527443218925], [-77.3515698843483, 34.550421464190634], [-77.35154092046703, 34.55038024646184], [-77.35153079195142, 34.5503432197611], [-77.35161960762464, 34.550291897098894], [-77.35165156789229, 34.55027779999377], [-77.35183155512665, 34.55016034007124], [-77.35186633976724, 34.550137164157285], [-77.35186928490015, 34.55013536222137], [-77.35187220964661, 34.5501331306217], [-77.35206579805295, 34.550000104601864], [-77.35208070569243, 34.54998986065171], [-77.35226485803042, 34.54988035432174], [-77.35232473939874, 34.54986022864516], [-77.35257968050675, 34.54978648304148], [-77.35266018832843, 34.54976223526041], [-77.35297531903313, 34.54968004256542], [-77.35317065099788, 34.54962983257637], [-77.35344986868371, 34.54956853460324], [-77.35369511643857, 34.54953353536045], [-77.35384325555849, 34.54953493183344], [-77.3539095180461, 34.549553483795485], [-77.35400676832379, 34.549581069921956], [-77.35423266974988, 34.54967441823088], [-77.35433286725382, 34.549715878481635], [-77.35448156821732, 34.549757546386644], [-77.35462227810933, 34.54980549487843], [-77.35491034914646, 34.5497616413396], [-77.3550139548897, 34.549846453567], [-77.35521148073332, 34.54977461720361], [-77.35531557861094, 34.54963748880847], [-77.35519080328538, 34.54954942264927], [-77.35519373708307, 34.54953261733471], [-77.3551973871721, 34.54951938474943], [-77.35521806536536, 34.5495063006838], [-77.35529358123658, 34.549457038588386], [-77.35531288007068, 34.549451392998414], [-77.35532579503527, 34.549447274158574], [-77.35541485309034, 34.54948535842422], [-77.35558100155757, 34.54945766588078], [-77.35575568006887, 34.54932931008622], [-77.35581149078651, 34.549309912644425], [-77.3561575781896, 34.54927145219776], [-77.35617646981534, 34.549286302206184], [-77.35652143775982, 34.54946389205446], [-77.35655836281346, 34.54948006151566], [-77.35659245345076, 34.549495971596876], [-77.35667110365358, 34.54949132285395], [-77.35683089501269, 34.54951520334362], [-77.35688200769292, 34.549534393363274], [-77.35682869277235, 34.54956799895847], [-77.35678736928102, 34.549556680780626], [-77.35662632013499, 34.5496936157352], [-77.35659640047514, 34.5497033484328], [-77.3565875886954, 34.549708211618714], [-77.35638868373567, 34.54985065532619], [-77.35638273280742, 34.54985433706596], [-77.35619163828333, 34.549853678511695], [-77.35600804250346, 34.55002744823812], [-77.35586598738453, 34.55009307907997], [-77.35588723031694, 34.550229289025054], [-77.35586566659599, 34.55029276761846], [-77.35588182443314, 34.55034915882284], [-77.35589304333911, 34.550411237941674], [-77.35591139829594, 34.55045237284916], [-77.35590597037607, 34.550485094331215], [-77.35590670839245, 34.550531682166806], [-77.35588096188394, 34.55056082245315], [-77.3558617011474, 34.5505877417086], [-77.35584534970582, 34.55060172102393], [-77.3557803334357, 34.55066869472752], [-77.35577593959255, 34.55067020061893], [-77.35577135395044, 34.55067357905508], [-77.35565628647714, 34.5507361691938], [-77.35549508440133, 34.55083576124654], [-77.35542930203036, 34.55087410168545], [-77.35538240215507, 34.55090026594516], [-77.35519734241024, 34.55100961355451], [-77.35515005093521, 34.5510284812027], [-77.35498521310369, 34.55109938212301], [-77.35491320240644, 34.55111973603023], [-77.35484553625099, 34.551174088123844]], [[-77.33968769467069, 34.64775757020637], [-77.33963257776108, 34.64770312273184], [-77.33971281036094, 34.64770784841748], [-77.33970370615772, 34.64775348036006], [-77.33973308016127, 34.64779694822929], [-77.33968933119759, 34.647758569638235]], [[-77.34268879750954, 34.65272349407499], [-77.34252864203397, 34.65240834971279], [-77.34267171635298, 34.65224306657077], [-77.3426826727603, 34.6522185162916], [-77.34297032536684, 34.65216613095185], [-77.34297621312396, 34.65216505870956], [-77.34298358804607, 34.65216579214463], [-77.34324876527634, 34.65218897127427], [-77.34330606714028, 34.65221319984701], [-77.34349494577248, 34.65227567874531], [-77.34362275038997, 34.65276240972743], [-77.34344579726212, 34.65290832195587], [-77.34343889149909, 34.652924401647425], [-77.34317177604821, 34.65291549259883], [-77.34312675694754, 34.65291399103013], [-77.34305377149627, 34.652898529464615], [-77.34290680485444, 34.65286598221639], [-77.34277737358143, 34.65276870557542]], [[-77.38668081459116, 34.58889031583408], [-77.38666584098121, 34.58878267116907], [-77.38674090651463, 34.58872675692042], [-77.38678276526392, 34.588688392226736], [-77.38695990124097, 34.588506522619845], [-77.38699140451766, 34.58851097637036], [-77.38717686846968, 34.58844701029168], [-77.38722210000005, 34.588441456983446], [-77.38727538729222, 34.58842490647704], [-77.38733123363615, 34.5884284832971], [-77.38737390087017, 34.58843301229671], [-77.38739802250556, 34.58843883486126], [-77.38744412510708, 34.58845817806625], [-77.38752557036975, 34.588495296109826], [-77.38757091204513, 34.58854380609811], [-77.38762827762133, 34.58858209699672], [-77.387774945958, 34.58862276384838], [-77.38796491859873, 34.58887085283483], [-77.38808701844991, 34.588709292074896], [-77.3881872951689, 34.58874830750662], [-77.3882384643162, 34.58876821614696], [-77.3883162169484, 34.58880309098791], [-77.38835898930962, 34.588815109414654], [-77.38843089972809, 34.58884661163939], [-77.38844148969791, 34.58886233140618], [-77.3884875464656, 34.588870820860265], [-77.38855600679385, 34.58889943438308], [-77.38861675721628, 34.588925955263825], [-77.38864735132063, 34.589035389003016], [-77.38875299846592, 34.58915304446004], [-77.38890221741264, 34.58904554737041], [-77.38896503714206, 34.58907186532172], [-77.38899372600343, 34.589083884271055], [-77.38914705779717, 34.589177430572526], [-77.38921297073705, 34.58919353703569], [-77.38924557178088, 34.58918939269097], [-77.38931494240694, 34.58921845469674], [-77.38934408146496, 34.58923066216918], [-77.38935319227073, 34.589234519312335], [-77.38937022528441, 34.58924187996222], [-77.38941743205604, 34.589262181333005], [-77.38944258566453, 34.589310035748056], [-77.38945527655304, 34.58932208292893], [-77.38946730331259, 34.5893606629623], [-77.38939747753136, 34.58945023455725], [-77.38936642722746, 34.58947882676928], [-77.38930185223238, 34.58950947684755], [-77.3891470033828, 34.58954046611342], [-77.38900287002139, 34.58956413165504], [-77.38889506066133, 34.589581832958324], [-77.38875293844256, 34.58954124678809], [-77.38851881222025, 34.58953696349295], [-77.38812209416236, 34.58967692967373], [-77.38796482180753, 34.58946023276065], [-77.38795579333217, 34.58944582446198], [-77.38778585198423, 34.589238621258104], [-77.38760121380304, 34.589072380385424], [-77.3875708247743, 34.58905960352205], [-77.38753736877919, 34.58904553707273], [-77.3873195044105, 34.5889592230512], [-77.38717678582964, 34.58892201883421], [-77.38690339309778, 34.58887842462748]], [[-77.41880080499102, 34.623206941349224], [-77.41870896732758, 34.62324860314787], [-77.41869697752092, 34.62323484409623], [-77.41865959228628, 34.623227332624225], [-77.4185118234414, 34.623096137514366], [-77.4184380684218, 34.62317986391279], [-77.41840719939374, 34.62316418579475], [-77.41837364410898, 34.623119794603355], [-77.41842516309984, 34.62304889240184], [-77.41848361019836, 34.62301008731134], [-77.41869372766735, 34.62281412643515], [-77.41870887202845, 34.62283336783803]], [[-77.43942623256079, 34.60210037112182], [-77.43941796901034, 34.602087285401474], [-77.43941511541384, 34.6020835273883], [-77.43937068516314, 34.6019206108455], [-77.43937100419839, 34.60191605273723], [-77.43937030282171, 34.60191298311431], [-77.43938668673066, 34.60190104808319], [-77.43939120446828, 34.60192029962814], [-77.43943583422744, 34.60208219170083]], [[-77.39550410744938, 34.586603085924835], [-77.39584631081993, 34.58646195085658], [-77.39606126135038, 34.58638561123715], [-77.39650987329394, 34.58622349908681], [-77.39663442274232, 34.58623365368363], [-77.39672974603963, 34.586160285296216], [-77.39679812184553, 34.58604771868497], [-77.39702849110851, 34.58587504757559], [-77.3971568753378, 34.58570971146919], [-77.39734691304409, 34.58554397548407], [-77.3974225579802, 34.58548114914352], [-77.39769068644655, 34.58535870207132], [-77.39805720033303, 34.58501692930119], [-77.39815811353053, 34.58494574219879], [-77.39821067090013, 34.58491348851435], [-77.39866958807804, 34.58492857640149], [-77.39889996791784, 34.585001773490845], [-77.3989987447083, 34.58515364620724], [-77.39912218298954, 34.584996273072605], [-77.39955199957416, 34.58505428770526], [-77.39977175307138, 34.58560246963001], [-77.39975563598202, 34.585621026656796], [-77.3992187497789, 34.585935569083276], [-77.39899871201055, 34.58610369745587], [-77.39875177123409, 34.5863489516002], [-77.39839393876014, 34.58666663954129], [-77.39827326607569, 34.586751580022096], [-77.39821058874738, 34.586792577066326], [-77.39816777439215, 34.58674540204091], [-77.397562236071, 34.58693720958246], [-77.39742247746497, 34.58700383885823], [-77.3972882695361, 34.587106129317846], [-77.39705588697908, 34.58725464759212], [-77.3970284109883, 34.587271388400964], [-77.39701805477621, 34.58727855056836], [-77.39696486413213, 34.587297381769], [-77.39683138000822, 34.58735093373776], [-77.39665181856643, 34.587361359992975], [-77.3966343528251, 34.587362374142266], [-77.39657246964248, 34.58735398827089], [-77.3963810624816, 34.58722994391677], [-77.39624030888567, 34.58722484098485], [-77.39602192090106, 34.58719810312602], [-77.39584625861934, 34.58719343444587], [-77.39551989115517, 34.5875058259345], [-77.39548182766467, 34.58754326052349], [-77.39545217673142, 34.58758260916594], [-77.395317872922, 34.58781485258454], [-77.39512421487089, 34.58798747249671], [-77.3950851651539, 34.58802228009305], [-77.39505808691386, 34.58802537235041], [-77.39504021068699, 34.588018850727295], [-77.3950044578191, 34.58800474680055], [-77.3949070757899, 34.5879692178237], [-77.3948610650223, 34.58794818065977], [-77.39478063574427, 34.587911406552415], [-77.39477859211274, 34.58773616191723], [-77.39483161798829, 34.58760510634929], [-77.39486109738425, 34.58755594658274], [-77.39493349892888, 34.58745612472015], [-77.39505814981996, 34.587241410990494], [-77.39511118120822, 34.58719734428221], [-77.39511269211238, 34.58713999161976], [-77.39514877873745, 34.5870371556055], [-77.39516654617321, 34.58682440757324], [-77.39536526220613, 34.58667898749438], [-77.3954149160657, 34.58663160051568], [-77.39545224965863, 34.58662162557384]], [[-77.36368195363569, 34.67429645082139], [-77.36283649245397, 34.674512202994585], [-77.36277071737378, 34.67423611939174], [-77.36275376953348, 34.67415499309134], [-77.36281641462391, 34.67407863015329], [-77.36301553427555, 34.673705667350006], [-77.3632511562548, 34.67379872590368], [-77.36351234596951, 34.673742644366236], [-77.3635810108659, 34.673797625811545], [-77.36349810442044, 34.67400282824517], [-77.36353076569755, 34.674048224922196]], [[-77.3160494783499, 34.641168951846694], [-77.31590429963025, 34.64089397773088], [-77.31615047390065, 34.64096912804273], [-77.3162562554794, 34.64105250101028], [-77.31627948933384, 34.641244438511265], [-77.3161178983224, 34.641176812453764]], [[-77.40114313920354, 34.61490408037115], [-77.40074516712005, 34.61501489936376], [-77.40065295270922, 34.614446818249505], [-77.40102164606257, 34.61467721577181]], [[-77.42487348556187, 34.56896931998154], [-77.425000950466, 34.568901576020814], [-77.42512688548129, 34.56893102199395], [-77.42524735963583, 34.56893692595367], [-77.42527098499234, 34.56906545960474], [-77.42510315980681, 34.569113226766696], [-77.42500102274695, 34.56917414888109], [-77.42489716961386, 34.569141174036126], [-77.42473107555656, 34.56914343112967], [-77.42475603720885, 34.56900950377943]], [[-77.34051065978392, 34.64585386672031], [-77.34074308415532, 34.64583306900918], [-77.34081815140355, 34.645807308179485], [-77.3409260882822, 34.64587990447385], [-77.34092607645549, 34.64590806338038], [-77.34083738714799, 34.64612089379933], [-77.34082834594729, 34.64615044842927], [-77.34081959665629, 34.6462137993658], [-77.34073369084257, 34.64639570514978], [-77.34077224948389, 34.646551831354344], [-77.34075203354561, 34.646674150102236], [-77.34072825723558, 34.64672425581285], [-77.34068035323303, 34.64677544300191], [-77.340634394873, 34.646885326885965], [-77.34053313143329, 34.646875717961215], [-77.340428131063, 34.64686575444219], [-77.34028198585683, 34.64672482834902], [-77.34006340819758, 34.64664912098646], [-77.34009230384692, 34.646382502821226], [-77.34010250078734, 34.64614007012892], [-77.34025198976359, 34.64606636247033], [-77.3404367445332, 34.645901798795535]], [[-77.39756416746232, 34.56895428586737], [-77.39772699443132, 34.56902833019427], [-77.39779204776218, 34.569318566155246], [-77.39751639858711, 34.569285655952456], [-77.39742352927786, 34.569121445944546], [-77.39738098516237, 34.56902657269652], [-77.39733632839163, 34.56898716015625], [-77.39731826928377, 34.568876310670646], [-77.39742354428506, 34.56889206255463], [-77.39747154717455, 34.56891591573832]], [[-77.39702801857659, 34.594506350678074], [-77.39702335187725, 34.59450667598095], [-77.39702801864186, 34.59450508798075], [-77.39703000016989, 34.594503582216205], [-77.39703074393735, 34.59450560966046]], [[-77.44061959522966, 34.59059584346464], [-77.44040607597557, 34.590788054286335], [-77.44037535698114, 34.590797004530074], [-77.44036724694939, 34.590802411065155], [-77.44036224972564, 34.59079439262949], [-77.44021801217968, 34.59056007539955], [-77.43998116191607, 34.590505403067084], [-77.43993443353699, 34.590431669202744], [-77.43985653081724, 34.59030874403214], [-77.43980387630931, 34.59021683633937], [-77.4397839896473, 34.59019427899986], [-77.43971260740697, 34.590039154823764], [-77.43978049875885, 34.58982061605987], [-77.43978269155731, 34.58981551016242], [-77.43978644120715, 34.5898133501039], [-77.43998079900103, 34.58971723760845], [-77.44014687230995, 34.58973069333628], [-77.44020368758976, 34.58972797702671], [-77.44037489596938, 34.589806226594774], [-77.44062477060731, 34.58990723498648], [-77.44062913405271, 34.59005738371505]], [[-77.44597891639908, 34.60203426453889], [-77.44602495425958, 34.60201317079528], [-77.44610918603725, 34.60202554475764], [-77.44635873114885, 34.60206220403373], [-77.44634760903394, 34.6021871448993], [-77.44610881896887, 34.602394903154355], [-77.44608578264648, 34.602424692919264], [-77.44599469552789, 34.602683044611105], [-77.44576227414717, 34.602791503090195], [-77.44577859738675, 34.602607414770645], [-77.44577115876145, 34.602491195918155], [-77.44580682161887, 34.60236577221494], [-77.44582073149805, 34.602312454709214], [-77.44585462435361, 34.60228276695449], [-77.44590737696413, 34.60215693507458], [-77.44596114634068, 34.602067762665925], [-77.44596852559465, 34.602054473663074]], [[-77.43300500196995, 34.62378365994175], [-77.43287800385917, 34.62379860997203], [-77.43272872383193, 34.623751883477254], [-77.4327216873862, 34.62374389879049], [-77.43286277291234, 34.62352576876922], [-77.43287492133037, 34.62348780858432], [-77.43290505777709, 34.62341841727148], [-77.4329801204091, 34.62349232512187], [-77.43301262354952, 34.62353600472665]], [[-77.44211383946612, 34.600949358429034], [-77.4416701714975, 34.60093774524547], [-77.44152830481961, 34.60050036728358], [-77.44152229134495, 34.60037953776005], [-77.44163384713757, 34.60006791405681], [-77.44167612087071, 34.59993268257801], [-77.44191060987123, 34.59972953267658], [-77.44215091838376, 34.59957133284414], [-77.44289368780059, 34.59944181202245], [-77.44292763432468, 34.599978804861706], [-77.4428175862076, 34.60033222570182], [-77.44282751385421, 34.60037660571152], [-77.44277877460695, 34.60049657195419], [-77.44266695772095, 34.600791638062674], [-77.44265939374719, 34.60089627705447], [-77.44253667260497, 34.60098093915279]], [[-77.36976339083216, 34.551072868421855], [-77.36990371224057, 34.5511466772392], [-77.37016126881943, 34.55141664916763], [-77.37016884187584, 34.55173158273684], [-77.37006812215974, 34.55203485012759], [-77.36991041668594, 34.55243210003046], [-77.36987397639614, 34.55245313282657], [-77.36984098861782, 34.552442102908515], [-77.36941608815164, 34.552301343394134], [-77.36913712943476, 34.552078721979115], [-77.36910965328988, 34.55205781425062], [-77.3691024521744, 34.552055932606926], [-77.36909805122184, 34.552043619876464], [-77.36903266632534, 34.551824078835416], [-77.36898626873591, 34.551661072124745], [-77.36896738718573, 34.5515886564656], [-77.36894307073565, 34.551487623580016], [-77.36912920227361, 34.55067555674002]], [[-77.42271509332978, 34.623648090933116], [-77.42304414006455, 34.62336971557603], [-77.4226183642305, 34.6233092370061], [-77.42271317192595, 34.623027943827815], [-77.42273667678141, 34.622765897395716], [-77.42313166271431, 34.6226820687287], [-77.42327186562629, 34.62280031034324], [-77.4235550262774, 34.62307880096238], [-77.42384260977882, 34.623142224918105], [-77.42349293213715, 34.62330093800296], [-77.42342550206858, 34.62336202276165], [-77.42313152860663, 34.62379388473169], [-77.4230374490489, 34.623865573367794], [-77.42286644801956, 34.62401081773511], [-77.42277688986721, 34.624029559896755], [-77.42251849607594, 34.62389054556304], [-77.42251596209256, 34.62388942475156], [-77.42251686146994, 34.62388456909428]], [[-77.38916813635772, 34.54592645171425], [-77.38926361439842, 34.545744551437174], [-77.38931814637017, 34.54592525361988], [-77.38935085820339, 34.54601529499837], [-77.38922435096357, 34.54599627967376]], [[-77.44582160608986, 34.60324187933174], [-77.44581238202477, 34.60334633614677], [-77.4457619766138, 34.60324901570828], [-77.44576100193976, 34.603220669327435], [-77.44575867602694, 34.60315012595339], [-77.44582028542044, 34.60317772130439]], [[-77.35783938428386, 34.67824186896639], [-77.35771274046995, 34.678062450794954], [-77.35773381306487, 34.6779583554269], [-77.35777546207336, 34.67776326339482], [-77.35786785200398, 34.6777263541693], [-77.35791011970227, 34.677744766545395], [-77.35804527758171, 34.67780646765489], [-77.35814422477678, 34.677805142729], [-77.35816643321088, 34.677831404977795], [-77.35815432402774, 34.677919630459286], [-77.35816694351354, 34.677953181451876], [-77.35807202900111, 34.67818008635139], [-77.35807427201497, 34.67820960438758], [-77.3580816481658, 34.678266729466955], [-77.35795240405565, 34.67846606311461], [-77.35780907238376, 34.67838250571755]], [[-77.44206141563451, 34.59771665730438], [-77.44169583236284, 34.597908306883646], [-77.44153259109567, 34.59779186100588], [-77.44134754617839, 34.597675241328], [-77.44116668499774, 34.59751060398018], [-77.4411406174282, 34.597475346978726], [-77.44112190222965, 34.59742984627975], [-77.44105369063465, 34.597275620787926], [-77.44116646890768, 34.597060446371856], [-77.44117411458114, 34.59705414792661], [-77.44132005407255, 34.59707163066327], [-77.4413635218587, 34.59707683782952], [-77.44147827703355, 34.59709058467091], [-77.44156058771377, 34.597119740141636], [-77.44171968815562, 34.59717930139381], [-77.44173792616226, 34.59719793677838], [-77.44195683782456, 34.597301637419605], [-77.44210612327477, 34.59748680237409], [-77.44216828884667, 34.59758598604132], [-77.44228174007844, 34.597666972127406]], [[-77.35995054319947, 34.78301910034919], [-77.35996409316454, 34.782908576291995], [-77.3599927368236, 34.782873855674694], [-77.3602076492275, 34.782910857791826], [-77.36030699105578, 34.78289651673326], [-77.36052832891738, 34.783106020947024], [-77.36024565713008, 34.783107651700746], [-77.36005017567365, 34.78310877870999]], [[-77.39396506081522, 34.624144007541815], [-77.39426721910517, 34.62411177066971], [-77.39447345785888, 34.62416985896753], [-77.3942672020481, 34.624381872281084], [-77.39419239577138, 34.624554404669645], [-77.39397674428186, 34.62455428137042], [-77.39387296121527, 34.624561358590526], [-77.39371508696979, 34.624491494325625], [-77.39373197727664, 34.624428617973805], [-77.39370902070971, 34.624280083829674], [-77.39381397496551, 34.62420139805775]], [[-77.37533940776653, 34.64101782512955], [-77.37525905909241, 34.6410358622818], [-77.37524714374982, 34.640951071436206], [-77.3752723285973, 34.640875176571775], [-77.37533944451366, 34.64088583892478], [-77.37536635735364, 34.64090492022133], [-77.37544891537996, 34.6409220139462], [-77.3754409666987, 34.641032512215496]], [[-77.40096900387901, 34.58121371119962], [-77.40095635149677, 34.58121566008277], [-77.40077199180911, 34.581244057592215], [-77.40073591362852, 34.58123383620121], [-77.40062543346632, 34.58119541410743], [-77.40057498258359, 34.5811142169176], [-77.40053404426124, 34.58105067861206], [-77.40057498667926, 34.58089732511154], [-77.4005871724108, 34.58084385456667], [-77.40060604817825, 34.58082800124991], [-77.40077200062092, 34.58071154240382], [-77.40089793014816, 34.58078588235937], [-77.40094306114644, 34.58080733044214], [-77.40096900936946, 34.58082573301421], [-77.4011560413837, 34.58096092345891], [-77.40109472867974, 34.58104658737553], [-77.40099671422729, 34.581196202262554]], [[-77.33921400384641, 34.63537179533321], [-77.33899142122075, 34.63552226167607], [-77.33875712965008, 34.635434502571194], [-77.33894513072858, 34.6352918534301]], [[-77.4177128470786, 34.56988048586289], [-77.41769381983752, 34.56986930769212], [-77.41769135422602, 34.56984650720009], [-77.41771284043661, 34.569843257911714], [-77.41772783471059, 34.56986439397685]], [[-77.36147711215841, 34.67279920098707], [-77.36150956976257, 34.672620089573414], [-77.36151862280701, 34.67257013122253], [-77.361605382522, 34.672455519653255], [-77.36165135173383, 34.672467944429336], [-77.36169030777566, 34.67247340905649], [-77.36177434672057, 34.67251389018815], [-77.3618271390617, 34.67252971867029], [-77.36188323038732, 34.67256874834942], [-77.36189796654696, 34.67260345575268], [-77.36189638697141, 34.67267351707126], [-77.36194728890374, 34.67275863650719], [-77.36179923539898, 34.672823983701136], [-77.36166481678259, 34.67289135749843], [-77.36158662110795, 34.67285319702594]], [[-77.3972240293062, 34.62042397004099], [-77.39720440654999, 34.62037946440864], [-77.39721311675231, 34.62036645325695], [-77.39722403101368, 34.620367831830826], [-77.39727820954995, 34.620368820352326]], [[-77.38185710344645, 34.58822793049944], [-77.38182133459793, 34.58824585214198], [-77.38175857157951, 34.58829838463106], [-77.38166187554374, 34.58823224480671], [-77.381660072652, 34.58823115323003], [-77.38165967522528, 34.58823104742236], [-77.3816598413571, 34.58823059525987], [-77.38165994135014, 34.58823043919686], [-77.38166007284694, 34.58823034253318], [-77.38166486025197, 34.58822471533229], [-77.38175861415078, 34.58812051051303], [-77.38179707625268, 34.5881461204131], [-77.38185711055993, 34.588198055009954], [-77.38186176056708, 34.58820149237156]], [[-77.44387978387911, 34.60210742261041], [-77.44389112376854, 34.602088570356635], [-77.44390303523434, 34.60210079229298], [-77.44389822001256, 34.60211449859019]]]]}, "type": "Feature", "id": "demo12", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.20552945414678, 34.657779248117535], [-77.20639641817989, 34.65797242556882], [-77.209229211185, 34.65831177098198], [-77.2095027096556, 34.658424996049014], [-77.20945450711379, 34.65976831281712], [-77.20975523560644, 34.66033038088443], [-77.21163943593564, 34.66321343727479], [-77.21291872188065, 34.66435116612528], [-77.21757254571986, 34.66848941800602], [-77.21917078926155, 34.66991039080176], [-77.22264751818585, 34.671797549765614], [-77.22376029265216, 34.67205422043961], [-77.22459225164008, 34.67281396826381], [-77.2266467006502, 34.67391418790389], [-77.22722861663091, 34.676080653111825], [-77.22812411197542, 34.676300799059376], [-77.22740119510517, 34.677227164937], [-77.23123473109601, 34.68063449304128], [-77.23248446054203, 34.6790330548086], [-77.23228906837524, 34.680800424463136], [-77.23280407263046, 34.68202913774992], [-77.23914392414142, 34.68766303496428], [-77.24294794854808, 34.69104286148149], [-77.24307414487699, 34.69115497173724], [-77.24312035180773, 34.69101934594042], [-77.24305151378192, 34.69096332512738], [-77.24303206655924, 34.69075451044116], [-77.24219032380906, 34.687247596276436], [-77.24126695694125, 34.686032644264856], [-77.24162108559554, 34.67963896327428], [-77.24164918678746, 34.67952429774041], [-77.2417476837022, 34.67907956351722], [-77.2427386279852, 34.67262452492794], [-77.24291872569944, 34.67016929686169], [-77.24302271976545, 34.66921021040876], [-77.24313652445308, 34.66770099594534], [-77.24303908809844, 34.66736637375238], [-77.24183899356417, 34.665996090042704], [-77.24133531374602, 34.66583354538095], [-77.23953691257631, 34.66511530484794], [-77.2344881035174, 34.66228151303588], [-77.23436662688437, 34.662210984586544], [-77.23428229581123, 34.66216201937328], [-77.23237937912087, 34.660015091609395], [-77.23209768906807, 34.65981186862403], [-77.23111436303478, 34.658244852296406], [-77.23124987109463, 34.65749846270372], [-77.2311080027893, 34.65510372749842], [-77.23109225070797, 34.65461845348167], [-77.23108471191077, 34.65447170076265], [-77.23106917075603, 34.654190215978716], [-77.231446841725, 34.651546871086374], [-77.23156236608234, 34.650738506946254], [-77.23173589211197, 34.649523521051336], [-77.23222541073498, 34.64890538444932], [-77.2334497173594, 34.64785886838446], [-77.23415667806448, 34.647172178953525], [-77.23609958852754, 34.64525131416647], [-77.23751418058032, 34.64414239976441], [-77.2379407704778, 34.643699543956146], [-77.23797099572433, 34.643228793417556], [-77.23784556105134, 34.64180454522388], [-77.23804895398243, 34.64026059412352], [-77.2378806505347, 34.63992401804985], [-77.23637216962575, 34.637948701520926], [-77.23565562078772, 34.63597787514712], [-77.2353280939345, 34.63540031122531], [-77.23563167534331, 34.632851417398506], [-77.23550504830479, 34.632395119937264], [-77.23566603061126, 34.632207910464786], [-77.2358074078455, 34.63210638022761], [-77.2361210756817, 34.63188520420436], [-77.2391499515306, 34.629819499532026], [-77.24370896770763, 34.6290707790709], [-77.24413425929929, 34.628992523682356], [-77.24437638308618, 34.62890931252699], [-77.24759851946135, 34.627870352022896], [-77.25241309714103, 34.62636345256875], [-77.2529966873747, 34.626354824685706], [-77.25313753366073, 34.626042225760045], [-77.25317889813965, 34.625782016181745], [-77.25495632277367, 34.622838742688465], [-77.25535992285592, 34.62244634323704], [-77.2553618074109, 34.62202573298677], [-77.25670916955478, 34.619138923132674], [-77.25696642357575, 34.61880201886045], [-77.25693978933495, 34.61849581352514], [-77.25746470649683, 34.61718158826584], [-77.25765153347972, 34.616970559632044], [-77.25769219656272, 34.61674452296152], [-77.25805128094864, 34.61638856808382], [-77.25881490859351, 34.616324222275225], [-77.25915411478334, 34.616378133469304], [-77.26006749896987, 34.61686654207628], [-77.26048507029681, 34.61708091973195], [-77.26057197665729, 34.617136063309275], [-77.26329776946827, 34.61818857334332], [-77.26482656109667, 34.61897456735223], [-77.26530121053143, 34.619177976008636], [-77.26709747204268, 34.619848146154915], [-77.26805789931784, 34.620160672317894], [-77.27004110250509, 34.62072734811906], [-77.27067595778936, 34.620449886681925], [-77.27238284641149, 34.61857129918876], [-77.27496699334814, 34.61630419778146], [-77.27589652218388, 34.61551849382907], [-77.27666225779032, 34.613980904424], [-77.27884689900588, 34.610105795828204], [-77.27938272980896, 34.608094635494936], [-77.27963710051935, 34.606822584861604], [-77.28037111939204, 34.604930028471834], [-77.28086440434316, 34.60413836570835], [-77.28246187978064, 34.602586198095764], [-77.28431342545471, 34.602022057849254], [-77.28566778078877, 34.601476590453444], [-77.2873222786954, 34.601292225993], [-77.29118785263859, 34.5997318874872], [-77.29208412719406, 34.59950668633343], [-77.2927542071247, 34.59923218422233], [-77.29371543480266, 34.59814439876], [-77.29605299492734, 34.59697561553314], [-77.29646538019011, 34.59582145523613], [-77.29741923999978, 34.59291213801832], [-77.29830931661687, 34.590763698969276], [-77.300120424564, 34.58851224909641], [-77.3020081259416, 34.586521231161235], [-77.30453193428254, 34.58498244727397], [-77.30543985727323, 34.58438950623875], [-77.3087175673015, 34.58258599234145], [-77.30901789318489, 34.58239455580402], [-77.30915827774746, 34.58233784684991], [-77.30947636968128, 34.58213744253569], [-77.31546623651116, 34.579235756296825], [-77.31835051747858, 34.577519092711164], [-77.31909923623115, 34.574305843683206], [-77.32044114546042, 34.57267367457371], [-77.32146761088015, 34.570569448484406], [-77.32177986936216, 34.56977666060772], [-77.32239766709282, 34.56770311948482], [-77.32300015890678, 34.56695301872888], [-77.32420626231439, 34.56599416045262], [-77.32493584635652, 34.56538854347174], [-77.3251539053271, 34.565180227358105], [-77.32558289919366, 34.564883816047065], [-77.32618220949482, 34.564441703397655], [-77.3265126099212, 34.56439575061614], [-77.32680315198385, 34.56439538352073], [-77.32730065562195, 34.56425334866344], [-77.3275039562433, 34.564388560531555], [-77.32769445104122, 34.56443233221957], [-77.32786445358803, 34.564555969443894], [-77.32796252823427, 34.564677288817514], [-77.32808421947396, 34.56536985514653], [-77.32808009707821, 34.56537405384259], [-77.32808747106868, 34.56547554031003], [-77.32811191273046, 34.56619152331925], [-77.32812498191169, 34.56621667709774], [-77.32818720568706, 34.5663160216712], [-77.32869497854463, 34.56717662278566], [-77.32936169988054, 34.56773709555466], [-77.32910197414026, 34.56837656476462], [-77.32913576970611, 34.568618640267644], [-77.3289309564713, 34.568711040518146], [-77.32887244826429, 34.56879496643535], [-77.32858574202791, 34.569546757894344], [-77.32866926549707, 34.56975277945624], [-77.32887122765204, 34.57017156961699], [-77.32892587836784, 34.57028795274458], [-77.32895951234413, 34.570342119204724], [-77.32903296155276, 34.570506158313236], [-77.32904669265127, 34.57098881446127], [-77.32900386097839, 34.571184820166245], [-77.3288700129444, 34.57154297949886], [-77.3287068478165, 34.571901102709276], [-77.32810092349416, 34.5729909680861], [-77.32808570899655, 34.57301490802097], [-77.32808372595936, 34.57301844229575], [-77.32808068303143, 34.57304904445245], [-77.32785020516208, 34.57389782133256], [-77.32807977391911, 34.57406673321981], [-77.32841035602425, 34.574309967262415], [-77.32908488957699, 34.57456947089841], [-77.32910391540132, 34.57516033016033], [-77.32888688088683, 34.57629607297143], [-77.32876201929406, 34.57705196779753], [-77.32860655944492, 34.57916017474238], [-77.32833678945991, 34.57977141381366], [-77.32964974461267, 34.58099895770763], [-77.32995797139768, 34.58090459922998], [-77.33080928326812, 34.581114264990795], [-77.33122566734366, 34.58125841278708], [-77.33217880607302, 34.58158836932294], [-77.33369596097342, 34.5816631001866], [-77.33437814706207, 34.581028649593065], [-77.33546660636239, 34.580970346697924], [-77.33699914916087, 34.581350577032154], [-77.33752994847679, 34.581645566936054], [-77.33763454627756, 34.58171861715692], [-77.33794167793133, 34.58178721602423], [-77.34068110916792, 34.583191617417405], [-77.34195308661941, 34.58323631069129], [-77.34266166928555, 34.58324243004999], [-77.34383316019328, 34.58362169252479], [-77.34583294232226, 34.58404878928222], [-77.34653576734567, 34.58443167009532], [-77.34698495779328, 34.58447976538052], [-77.34773690677338, 34.58458512542727], [-77.35013687187784, 34.585246176262814], [-77.35154630478564, 34.58510480504984], [-77.35328938749915, 34.58507668510682], [-77.35595542615796, 34.58546502353006], [-77.35644159159492, 34.58543628420431], [-77.35706763702873, 34.58515439773405], [-77.35801810019083, 34.584861763985714], [-77.35867369142318, 34.58460557322688], [-77.35887557114336, 34.584644797628], [-77.35894804052387, 34.58470899037628], [-77.35938367359296, 34.5848732020492], [-77.35959401578923, 34.58541081631492], [-77.35960453189695, 34.585452244609236], [-77.35960821121245, 34.585463067871565], [-77.35962518678765, 34.58549425336111], [-77.35995048250315, 34.58626290386897], [-77.36006072137194, 34.5865926689631], [-77.36038139494886, 34.586864539761585], [-77.36053002465167, 34.58702858472068], [-77.36079678247872, 34.587391477895544], [-77.36080074090029, 34.587414167790776], [-77.36079132841435, 34.58743292814629], [-77.36070879482844, 34.58785195672873], [-77.36058320814284, 34.58808811774493], [-77.36040434565828, 34.588320336874844], [-77.36038066275705, 34.5883401279826], [-77.36009489625096, 34.58848163474633], [-77.35977320276612, 34.588640930121386], [-77.35959237316762, 34.58865698607277], [-77.35943150789274, 34.588711644260385], [-77.3592185488329, 34.58891557784541], [-77.35801561744854, 34.58959254608773], [-77.35717731097472, 34.59000466398202], [-77.3564378062534, 34.5924134182526], [-77.35623399949384, 34.59252203750212], [-77.35620030459363, 34.59274639163175], [-77.35620945767101, 34.59299072740634], [-77.35643742409965, 34.593121545145095], [-77.35816811476104, 34.59585959647214], [-77.35871389722566, 34.59672302507168], [-77.35958792703289, 34.59751980606295], [-77.36049435550878, 34.59892120212096], [-77.36020429767362, 34.599628052180876], [-77.36002386656887, 34.600687140644176], [-77.36008369696515, 34.60184037640942], [-77.36024006619118, 34.60235422926701], [-77.36007646222009, 34.60290689985844], [-77.359782302231, 34.60560284967002], [-77.3599377038775, 34.605794175533816], [-77.3600714290037, 34.606300408188645], [-77.35958338796371, 34.606680165624546], [-77.35868167223904, 34.606946051460184], [-77.35749740529727, 34.60729525006921], [-77.35643018215026, 34.606662451701396], [-77.35609077262804, 34.6067133192563], [-77.35327790740484, 34.60500501743908], [-77.35045062981136, 34.607511852100764], [-77.35012143518877, 34.610472153796856], [-77.34951564087541, 34.61069007458025], [-77.34742786648425, 34.611486260176655], [-77.34696742766761, 34.611462216553456], [-77.34681822588406, 34.6112388625904], [-77.34650294530523, 34.61112334873869], [-77.34285270997958, 34.6092888038723], [-77.3406620393611, 34.609441658490105], [-77.33796042193511, 34.609441694626], [-77.33717524910651, 34.6096809994365], [-77.33501203705495, 34.60933411862029], [-77.33229101420737, 34.610169454223545], [-77.33001704126976, 34.60995746935497], [-77.32850541004625, 34.60848270778244], [-77.32587631958998, 34.60724036160473], [-77.32473614731714, 34.606763645801784], [-77.32394190054858, 34.60702279411064], [-77.32376240318733, 34.607530329928956], [-77.32058918522685, 34.61400716961104], [-77.32021390064055, 34.61421812012531], [-77.31795821334907, 34.61365415738399], [-77.3165317040544, 34.6138235448011], [-77.31550764435819, 34.61420047313151], [-77.31493786553986, 34.61462778234241], [-77.3131855240359, 34.615387610567915], [-77.31188687063266, 34.615910280094155], [-77.31126185761946, 34.61653253429923], [-77.31100888952744, 34.61730049791781], [-77.30923241235256, 34.619089284271794], [-77.30877564315004, 34.619549221959204], [-77.30674603535134, 34.621578818849116], [-77.30601517693545, 34.622309648184434], [-77.3063890081477, 34.62341530147438], [-77.3049022443241, 34.626609960356326], [-77.30283761338283, 34.627627515622265], [-77.30192511610858, 34.629168227129675], [-77.2995050785618, 34.631109770140796], [-77.29861381779031, 34.6321052572641], [-77.29655703230709, 34.63151338641836], [-77.29407700667825, 34.630715086481366], [-77.29326681929875, 34.630978648059646], [-77.29234543720979, 34.63089678757376], [-77.29064338613325, 34.630665010063154], [-77.28914462795188, 34.6312941283759], [-77.28824709756435, 34.63148536751706], [-77.28747183772578, 34.63168265146505], [-77.28544458767288, 34.63303414394049], [-77.28413636747725, 34.633906266864464], [-77.28372617306636, 34.63448356852955], [-77.28189519880866, 34.63715291681426], [-77.28174498021777, 34.637378236131], [-77.28031405766953, 34.640487408364244], [-77.28039162347528, 34.64108914163105], [-77.28193645640454, 34.645544020961516], [-77.28358874972875, 34.646791021766816], [-77.28477306449163, 34.649109891189994], [-77.28665809759114, 34.65228749911037], [-77.28361124318094, 34.65140632580479], [-77.28193852796952, 34.651135028440564], [-77.28027388461742, 34.651662472949056], [-77.27723879249399, 34.65324628183508], [-77.27643915941351, 34.65342029122737], [-77.27584117931836, 34.654601857414946], [-77.27666237265481, 34.65596722718218], [-77.27766786669466, 34.65538944777196], [-77.27975071949174, 34.65903604852715], [-77.28113353038731, 34.65990540293164], [-77.28145659747818, 34.660251066916906], [-77.28220011544141, 34.66048393581742], [-77.28344702256788, 34.66090375283798], [-77.28391778590814, 34.661017582586716], [-77.28455151617146, 34.66100172170564], [-77.28643699454294, 34.66080643028397], [-77.28837272001117, 34.660341681124116], [-77.28888757653475, 34.66025274406039], [-77.28936735136519, 34.66016032147252], [-77.29133211586776, 34.65966909569557], [-77.2929301262451, 34.6590161733182], [-77.29346370892011, 34.658646654508324], [-77.29355486696834, 34.65797891488138], [-77.29417080132974, 34.65547060577413], [-77.29417078605695, 34.65396639369813], [-77.29366251599845, 34.65216436161954], [-77.29484245089094, 34.6492531465336], [-77.29523909275463, 34.64857281267918], [-77.29660839191547, 34.64765527938003], [-77.29812599365279, 34.64698043864117], [-77.29985675016873, 34.646812071187256], [-77.30158575987029, 34.64693242474319], [-77.30412699376402, 34.64735600625182], [-77.30420610535923, 34.647387352503586], [-77.30427808676025, 34.64738787284488], [-77.30694721752486, 34.648125073450274], [-77.30806868113496, 34.64825894078911], [-77.30836705904339, 34.648335195353525], [-77.30972070360124, 34.649183481962666], [-77.3105875630983, 34.649846938478454], [-77.31140145265778, 34.65151149584046], [-77.31303662324477, 34.65294495148268], [-77.31449779801665, 34.654565660778616], [-77.31609708502536, 34.655432167540866], [-77.3163548873645, 34.65580845500924], [-77.31667849854477, 34.656300661072116], [-77.31738452899049, 34.65735529198368], [-77.31751914039178, 34.65776859864893], [-77.31786055827004, 34.658977990511744], [-77.31786059916766, 34.66007423769187], [-77.3162142810506, 34.66257945973356], [-77.32085353259095, 34.6663660873373], [-77.322352750613, 34.66656756683818], [-77.32348243756618, 34.66670038401041], [-77.32440270578284, 34.666182753718], [-77.32480820123321, 34.666300440585246], [-77.32627115725842, 34.66783015860421], [-77.32633544699577, 34.667869731266435], [-77.32652526970928, 34.66791795137064], [-77.32663681821242, 34.66825265735447], [-77.32759463234649, 34.6701024884856], [-77.32835264470566, 34.67156632257415], [-77.32874481343313, 34.672370400508335], [-77.32929130688731, 34.67411499778686], [-77.32976061988688, 34.67474172091088], [-77.32984040500304, 34.67526128284467], [-77.32956967366646, 34.67596215801732], [-77.32819160470945, 34.67789924793569], [-77.32607304809798, 34.67796796720577], [-77.32565393524456, 34.67790119866552], [-77.32300712702741, 34.67926225714183], [-77.32185349836236, 34.67933242674765], [-77.31955250116968, 34.68057050395852], [-77.31817208867177, 34.68117438636845], [-77.3175232632604, 34.68165412072956], [-77.31519858185824, 34.683116533247066], [-77.3149992336383, 34.68346757981205], [-77.31466073845638, 34.68513963980703], [-77.31391364814365, 34.686931336113076], [-77.31400333075266, 34.68912858844916], [-77.31201691565371, 34.691038400516845], [-77.31106076938794, 34.691481072404386], [-77.3116792019346, 34.69180217728409], [-77.31158842755792, 34.693212494398686], [-77.3106050176799, 34.69309256959149], [-77.3105822565206, 34.69264567742932], [-77.30977260808098, 34.6918380280696], [-77.30967603189535, 34.691766313472606], [-77.3095486483119, 34.69168815353046], [-77.30917448686246, 34.6905757631483], [-77.30579047893636, 34.69062253849492], [-77.30527039375778, 34.69085115572896], [-77.3022814152821, 34.69261767801978], [-77.30113857588417, 34.694788902187426], [-77.30124709503558, 34.6966707436459], [-77.30123695240849, 34.696724876792416], [-77.30119715945993, 34.69676466617406], [-77.29906597625613, 34.69897137409945], [-77.3022680021644, 34.701169575156655], [-77.30346896501094, 34.70126699523589], [-77.30519294086348, 34.70203163048191], [-77.30663818655324, 34.702612159278715], [-77.30867757925301, 34.70356727675824], [-77.30948822269829, 34.70534244231095], [-77.31045867835047, 34.705944628792366], [-77.31321494701858, 34.706383519864815], [-77.31750836283953, 34.70612625654957], [-77.32042922821329, 34.70460176154768], [-77.32170877909428, 34.70615758560617], [-77.32489327350225, 34.70572239379985], [-77.32593993287612, 34.70605656397478], [-77.32925939362438, 34.7065326294352], [-77.329368648686, 34.70657250305433], [-77.329423835273, 34.706614460572766], [-77.32952940942114, 34.7065713524298], [-77.3338460441611, 34.706281724780226], [-77.33430956277321, 34.706284507943195], [-77.33493813486109, 34.70625983716647], [-77.33872649459343, 34.70568071067851], [-77.33923203071208, 34.70582772152187], [-77.33995860892136, 34.705603939406785], [-77.34428471654986, 34.70455801516392], [-77.34438724880314, 34.704569297248966], [-77.34712350454454, 34.70552722425256], [-77.34818716446614, 34.70797648444905], [-77.35306130104729, 34.7072656227355], [-77.3534759084633, 34.70737297728482], [-77.35359578298602, 34.707092936959796], [-77.35722497091558, 34.70558967802859], [-77.35713066932848, 34.70413419008601], [-77.35718387724313, 34.70270118757785], [-77.35721793813313, 34.70249019651107], [-77.35722501301336, 34.70159291540255], [-77.35722502005318, 34.700907892370594], [-77.35722502825195, 34.700745995251914], [-77.35728584275066, 34.70053778411292], [-77.35767810383322, 34.70003217333928], [-77.35782821667645, 34.699742028552045], [-77.35884376907708, 34.6996621070939], [-77.35897573718626, 34.69968644717554], [-77.35927297095989, 34.69974604165775], [-77.36008630789993, 34.699985115650094], [-77.3610219085655, 34.700224503316605], [-77.36146919947717, 34.70079524332681], [-77.36354847868144, 34.70098228698631], [-77.36450507030075, 34.701261007822836], [-77.36484146388568, 34.70135357421902], [-77.3654801024561, 34.701561588318114], [-77.36670572120553, 34.70192914046871], [-77.36777477686182, 34.70224972204005], [-77.3682179526567, 34.703134947076165], [-77.36855921989329, 34.70379373815973], [-77.36854953221479, 34.7048073721609], [-77.36858432466732, 34.70503416768704], [-77.37020711696894, 34.70636719346971], [-77.3706134055274, 34.70637277687707], [-77.37067398561456, 34.70669655612936], [-77.37056684263305, 34.70720114065858], [-77.37014332446385, 34.7087190571074], [-77.3696993341292, 34.71023041830037], [-77.3693946386299, 34.71126770627556], [-77.36834664534419, 34.712865070455365], [-77.36850202429699, 34.71430599554068], [-77.36938129849372, 34.71636101036463], [-77.3693614532815, 34.71662478113817], [-77.36695810879547, 34.71756324167756], [-77.36509027633352, 34.71766470647501], [-77.36445924973646, 34.717921060049974], [-77.3639009349671, 34.71784696332086], [-77.36215031505247, 34.7176154439978], [-77.36087883044728, 34.717018673214106], [-77.36020662773757, 34.71606978118666], [-77.35850858951657, 34.716938741498396], [-77.35687320027972, 34.716947135504746], [-77.35551207621437, 34.715741003238485], [-77.35194729649552, 34.71623037885072], [-77.35093966429918, 34.719154633435735], [-77.34668391981083, 34.72177834722502], [-77.34565901895755, 34.72557434725209], [-77.34415572479254, 34.72788368070947], [-77.34493371039608, 34.72928572528768], [-77.3461505654747, 34.73147850500608], [-77.34616005415802, 34.73149590824074], [-77.34621337243586, 34.73150042943705], [-77.34832727278493, 34.73223171910422], [-77.34861996663483, 34.73275728279975], [-77.34938146501011, 34.73272597112498], [-77.34950920061216, 34.73299771251913], [-77.34912730357375, 34.73394380781403], [-77.34926005330166, 34.734006661875696], [-77.34933802694397, 34.73434285624657], [-77.34891703762948, 34.73432468764844], [-77.34849880925697, 34.734427228985986], [-77.34812439575771, 34.73454407598475], [-77.347662015084, 34.734521657824565], [-77.34661770175158, 34.734485611827004], [-77.34645187616995, 34.73442489244786], [-77.34544295238004, 34.73391400457227], [-77.34324387121588, 34.73404921922034], [-77.34192502918503, 34.734753078227435], [-77.3403015272614, 34.735118975264356], [-77.33870396638028, 34.7344799760329], [-77.33840620744792, 34.73430592687689], [-77.337361602832, 34.73394303590454], [-77.33587182980952, 34.733874656450055], [-77.33476545843516, 34.733952424591955], [-77.33507449892326, 34.733028153655], [-77.3338631008714, 34.73254357106386], [-77.33237436971203, 34.73263795917977], [-77.3315060499595, 34.732410761148884], [-77.3277878990138, 34.73301143803684], [-77.32244383000878, 34.73093446968894], [-77.32232917330396, 34.73101521584717], [-77.31714497635312, 34.73645237941026], [-77.31557999645236, 34.73774484521111], [-77.31468190361026, 34.73972117354894], [-77.31473524957558, 34.73989273200691], [-77.31473019099812, 34.74066565595279], [-77.31525932954133, 34.7426424905032], [-77.31712758130712, 34.74328514790679], [-77.31418780032598, 34.74404684242696], [-77.31331436885688, 34.74553142937229], [-77.31158072442453, 34.74794348120808], [-77.31202661717083, 34.74995661047684], [-77.31235817315775, 34.7511772213517], [-77.31410181059064, 34.75106008296444], [-77.31537880739874, 34.750210773299486], [-77.31560703957821, 34.7502567766838], [-77.3167745487313, 34.75011001735471], [-77.31770578179433, 34.75002905295603], [-77.31687857135049, 34.750263216422724], [-77.31671295289068, 34.75032171471392], [-77.31570247441307, 34.75049768588225], [-77.3147324760632, 34.75141088963693], [-77.31443887830437, 34.7519316124271], [-77.31381099090528, 34.75205946327932], [-77.31211591595341, 34.75242646583507], [-77.31337848693181, 34.75354570032298], [-77.31459071766257, 34.7546202444029], [-77.31551983805184, 34.754422116465065], [-77.31673125858208, 34.75396361171524], [-77.31685671930532, 34.753945498527834], [-77.31743004823359, 34.75330601869561], [-77.31771393541365, 34.75295210517385], [-77.31797492244115, 34.752512004955285], [-77.31799357502302, 34.75236344241214], [-77.31798995358112, 34.751939584988506], [-77.31895556795286, 34.75083592231441], [-77.31895546600343, 34.750832642322656], [-77.31895958374922, 34.75083085110616], [-77.31896145023873, 34.750829621052084], [-77.31932223568168, 34.750295050567075], [-77.31920632786995, 34.74998791705879], [-77.31917598022555, 34.7498783419194], [-77.3191517762377, 34.74983103303707], [-77.31900415596262, 34.74965327190907], [-77.31897368527359, 34.7496397347248], [-77.31873735281235, 34.74954078331708], [-77.31859980045095, 34.7495330075714], [-77.31814798587261, 34.74950746712145], [-77.31742018080695, 34.74946632013529], [-77.3169499412191, 34.74950720427803], [-77.31651047928383, 34.749562445933826], [-77.31549288798848, 34.749357336191885], [-77.31516295382367, 34.74902175371267], [-77.31426706499634, 34.747575714200664], [-77.31563373437946, 34.745507350143725], [-77.3157028106446, 34.74538993999184], [-77.31582906116981, 34.74535722859809], [-77.31856816098517, 34.74394511006095], [-77.31907303415457, 34.744440232605584], [-77.31900629895001, 34.74497733086776], [-77.3193307531914, 34.74544195735986], [-77.31955170982091, 34.745648666303154], [-77.31951983572742, 34.745881724786976], [-77.3197225474185, 34.74615432674542], [-77.31981199276396, 34.74623678632448], [-77.31985162653514, 34.7463236459438], [-77.31994638636712, 34.74641446924034], [-77.32005796000178, 34.74644181985893], [-77.32022079254804, 34.74650078847924], [-77.32053465984364, 34.74646950413299], [-77.32066470635105, 34.746699646243954], [-77.32074973499003, 34.74674173728508], [-77.32087655239931, 34.74678374919162], [-77.32110767810507, 34.74681724932312], [-77.32130896157182, 34.74687858557675], [-77.32168244897649, 34.746859617320624], [-77.32210310930292, 34.746840304907195], [-77.32254931078721, 34.74673322833214], [-77.32320940441699, 34.746936137275576], [-77.32383627810874, 34.74642756675582], [-77.32396987617221, 34.74633328164359], [-77.32406306526664, 34.74623413207526], [-77.32453715205867, 34.745559189079984], [-77.3253924564519, 34.74519622013206], [-77.32560357874905, 34.74572595191988], [-77.32553423118021, 34.74603257753171], [-77.32574273836403, 34.74640720270962], [-77.3257382578474, 34.74649199127646], [-77.32614210914706, 34.7467379619134], [-77.32626816402257, 34.746791522478645], [-77.32664848786959, 34.74679206853003], [-77.32673066417621, 34.746773965185], [-77.32719305989104, 34.7466362889118], [-77.32744968520308, 34.74636134111063], [-77.32772371123079, 34.74646082516105], [-77.32830245449642, 34.74634267669603], [-77.32875399173528, 34.74599590877533], [-77.32917376017832, 34.74583805494287], [-77.3295806940155, 34.745821489371], [-77.33000811878858, 34.745802990587606], [-77.33038086102624, 34.74599458406336], [-77.33054314351031, 34.74602305345091], [-77.33097997165099, 34.746161983229776], [-77.33109283581832, 34.746192676971795], [-77.33112616407723, 34.74620985600578], [-77.33113240911891, 34.74624018098551], [-77.33131597650235, 34.74645975614474], [-77.33149786620719, 34.74667746179508], [-77.33151080516124, 34.746702403770385], [-77.33191382923853, 34.747107819009706], [-77.33195309831235, 34.747150630304176], [-77.33200483932475, 34.747176401254], [-77.33249775291254, 34.74750704188668], [-77.33250615398747, 34.74751244197499], [-77.33250761426666, 34.74751258173984], [-77.33299957327611, 34.7478756488108], [-77.33302358584925, 34.74790416669819], [-77.33303569011379, 34.74792879042175], [-77.3339738312658, 34.74864537239702], [-77.33407150465074, 34.7486750581693], [-77.33433423371781, 34.74872553246609], [-77.33485000372147, 34.748864807474334], [-77.3350801651722, 34.74896085135904], [-77.33529602638498, 34.749081058339044], [-77.33552297213258, 34.74913569198252], [-77.33563132820596, 34.7491254899919], [-77.33580039173907, 34.74915689356088], [-77.33620692796768, 34.74920607371794], [-77.33638053015153, 34.74926465369768], [-77.33659636847892, 34.749390162199795], [-77.3366848014069, 34.749424861602186], [-77.33673296272418, 34.74945715932091], [-77.33706435452237, 34.749527186822945], [-77.337273914566, 34.74965693569874], [-77.33770403046002, 34.749823665249956], [-77.33811107289222, 34.750157234207606], [-77.33820866398453, 34.75022397391591], [-77.33828760318036, 34.750291183428494], [-77.33844428044041, 34.750436969700736], [-77.33859597833819, 34.75057812165546], [-77.33869757345845, 34.75063637428924], [-77.33877312392391, 34.750681680485755], [-77.33884008470329, 34.75072387887954], [-77.33903071518598, 34.75076219949721], [-77.33904237483684, 34.75076542048048], [-77.33905684888342, 34.75076561955417], [-77.33906771654631, 34.750757125955694], [-77.33925694499952, 34.75062374089593], [-77.33926570423313, 34.750593705983285], [-77.33926885354404, 34.75048585927747], [-77.3392578175732, 34.75030534572103], [-77.33925868525728, 34.75020494459121], [-77.33918284931801, 34.750010278023865], [-77.33907745687327, 34.74963470082865], [-77.33894141623891, 34.74966057387092], [-77.33904644741914, 34.749541607809924], [-77.3386057000709, 34.74919687160185], [-77.33857798892672, 34.74915169783173], [-77.33853638200469, 34.7491241728774], [-77.33813107301191, 34.74876893169865], [-77.33802414824972, 34.74878922839927], [-77.33802790592304, 34.748706518374895], [-77.33781403082507, 34.7483877356276], [-77.33792561642097, 34.74823316944297], [-77.33840700351817, 34.74763645907498], [-77.33906065206017, 34.74763169837807], [-77.34138447012403, 34.747721300826505], [-77.34144325810969, 34.74767790143552], [-77.34146797277174, 34.74771786087007], [-77.34159831324692, 34.74772954361765], [-77.34145488133844, 34.74778368696827], [-77.34180264213423, 34.74867627111021], [-77.3414597543997, 34.74906464762154], [-77.34149411724033, 34.74927441904541], [-77.3415697068979, 34.749303845781206], [-77.34190853761613, 34.749462267467514], [-77.34210235294569, 34.74953221297481], [-77.34212709377918, 34.74957603473168], [-77.34218340281289, 34.74959880422962], [-77.3426248951667, 34.74979535242545], [-77.34297671846065, 34.749711056966476], [-77.34308994015932, 34.74996184919331], [-77.34316527751531, 34.749997115569165], [-77.34329166778701, 34.75004937177292], [-77.34360020500185, 34.75001996901741], [-77.34372683666257, 34.75012601525536], [-77.3437776485531, 34.750354902408766], [-77.3439910425634, 34.750507777206984], [-77.34416785278727, 34.75066971113737], [-77.34468135223842, 34.750642248606354], [-77.34476785722245, 34.75066633281814], [-77.34480290951507, 34.750671832465905], [-77.34493960783107, 34.75068290141506], [-77.34535570973327, 34.75070476746523], [-77.345520187088, 34.75060326335473], [-77.34561670058159, 34.75019430414745], [-77.34564002184598, 34.750099447774204], [-77.3459992847204, 34.7497518373624], [-77.34623417626167, 34.749464756285086], [-77.34640967247816, 34.749436249153185], [-77.34655605071276, 34.74948641041472], [-77.3468401669359, 34.74949937880572], [-77.34690191205864, 34.74950659532358], [-77.34726659684341, 34.74956563129758], [-77.34746708365202, 34.749623050263], [-77.3479704405269, 34.74972634378227], [-77.34806961917836, 34.74961091480703], [-77.34814714776223, 34.74967684139292], [-77.3481308670752, 34.749757741500055], [-77.34831723441661, 34.74978950086858], [-77.34843284832141, 34.74981684274543], [-77.34848733998264, 34.7498094119453], [-77.34850798442406, 34.74982784689057], [-77.34860463418276, 34.74983116277929], [-77.34866933100153, 34.74980571022797], [-77.34871920041938, 34.74975137761251], [-77.34870941222677, 34.74967836620748], [-77.34870919910998, 34.74963879378844], [-77.3486732482178, 34.74959501168555], [-77.34848447327117, 34.749417426473144], [-77.34829527649458, 34.74924780589832], [-77.34820541899836, 34.749143537960556], [-77.34796607195042, 34.74902771659265], [-77.34784741468778, 34.748821871766395], [-77.34780885029733, 34.748446827472804], [-77.34779408650296, 34.74837160542313], [-77.34779009682163, 34.74829002819657], [-77.34778493854424, 34.74785568435317], [-77.3477118156857, 34.74764649948621], [-77.34785505605134, 34.747358686792765], [-77.34773829638138, 34.74723194899376], [-77.34765165233921, 34.74714290379329], [-77.34759639763608, 34.74711648036745], [-77.34744488930531, 34.74706340552641], [-77.34705373501232, 34.74699939630244], [-77.34702721432419, 34.74701389051459], [-77.34698078267812, 34.74699125235793], [-77.34657602104281, 34.74694322730541], [-77.34645195378181, 34.74693221665889], [-77.34622939595384, 34.74690737063224], [-77.34616040654339, 34.746904860645536], [-77.34612520165857, 34.746895738457916], [-77.34601895059913, 34.74687951246432], [-77.3458751115921, 34.746855987358245], [-77.34569348832466, 34.7468335540434], [-77.3453510778967, 34.74676751488102], [-77.34529476069865, 34.746791832299046], [-77.34513325116772, 34.74675732150281], [-77.34478253672864, 34.746745729012545], [-77.34471153020316, 34.74673758645234], [-77.34423362076086, 34.74639334727212], [-77.34422620927951, 34.74638519507885], [-77.3442184593753, 34.74637308668187], [-77.34392710406797, 34.745948013801254], [-77.34387272374464, 34.745868676017], [-77.34344499741233, 34.74552676390407], [-77.34332996355803, 34.74530811775198], [-77.34260121544482, 34.74526976437371], [-77.34241496862612, 34.74433439795745], [-77.34201715486316, 34.74414221670765], [-77.34142203972853, 34.74385471044765], [-77.34075793431478, 34.74353388020096], [-77.34031951596668, 34.743300556591876], [-77.33952822669019, 34.74290282177094], [-77.33843725481942, 34.74231453323401], [-77.33839759503866, 34.74219562005735], [-77.33834724127836, 34.741843071365174], [-77.33819287878356, 34.740776409937446], [-77.33814060124003, 34.74040570701348], [-77.33898220441714, 34.73965845423883], [-77.33954118958832, 34.73973959856058], [-77.34149658440451, 34.73925045587108], [-77.34314847300489, 34.73971891535672], [-77.3435207874869, 34.73983256399781], [-77.34366695332074, 34.740026159457535], [-77.34442053930326, 34.74071730337265], [-77.34441834623355, 34.74149423243772], [-77.34394909745475, 34.74233385565749], [-77.34371043588139, 34.74284009030234], [-77.34335758919232, 34.7435892426043], [-77.34448475717888, 34.74382131343306], [-77.34487313132583, 34.74412019151129], [-77.34494519196038, 34.744255584161486], [-77.34491085504864, 34.74435094220068], [-77.34529503621316, 34.74472956259841], [-77.34531779084381, 34.74475740071286], [-77.34533628770372, 34.74477996044685], [-77.34552625328756, 34.744964516110876], [-77.34554973634701, 34.74497320620006], [-77.34581851894407, 34.7449893773367], [-77.34628202445968, 34.74480422822242], [-77.34648310715016, 34.74476358035392], [-77.34672684541286, 34.74479493809874], [-77.34679486075183, 34.74457986694422], [-77.3467481691517, 34.74444574026862], [-77.34678273265153, 34.74409415264728], [-77.34679577757981, 34.743687492341294], [-77.34679146942462, 34.7436240748406], [-77.34679510146347, 34.74357883869847], [-77.34685853432435, 34.743471505131104], [-77.34701528559714, 34.74308749143076], [-77.34705216794828, 34.743029396934226], [-77.34721309210809, 34.74267259813175], [-77.34723258976842, 34.74257029977933], [-77.34729542075529, 34.74244813329101], [-77.34730115546984, 34.74243147877835], [-77.34728609438424, 34.742319269797804], [-77.34736250404146, 34.74216669068953], [-77.34738522258162, 34.742061980101106], [-77.34749108724702, 34.74164233041253], [-77.34750944422714, 34.7415575582577], [-77.34752154825256, 34.7414858517985], [-77.34756167979361, 34.74130670224642], [-77.34757431971691, 34.74107779175343], [-77.34757571510951, 34.74106108719222], [-77.34757585521692, 34.74104989961955], [-77.34757546864759, 34.74100399065683], [-77.34752236289316, 34.740696854781376], [-77.34738174616494, 34.74060032067392], [-77.3472763723752, 34.74017552826829], [-77.34728516433994, 34.740126193088585], [-77.34725517323764, 34.74011398052973], [-77.34724103434039, 34.74009358534088], [-77.34692034023968, 34.739583132282334], [-77.34684404629849, 34.739398503426], [-77.34678359070794, 34.739294124213075], [-77.34677019049116, 34.73922208959179], [-77.34663319728102, 34.739093494551646], [-77.34654798772856, 34.73908114388907], [-77.34642222479715, 34.73878891529524], [-77.34641741686282, 34.738783110215934], [-77.34608657731948, 34.73864764963562], [-77.34583728486614, 34.73837531991726], [-77.34563912237364, 34.73820342260852], [-77.34554973529814, 34.737669076171215], [-77.34538230021144, 34.73746298343555], [-77.34486780527645, 34.737219924719845], [-77.34463426532169, 34.73669722505898], [-77.34286282376546, 34.73718519345413], [-77.34215944115341, 34.73595554393464], [-77.34417889727334, 34.73487777089874], [-77.34518082714025, 34.734816165353415], [-77.34564050588929, 34.735048932487956], [-77.34649300122825, 34.73536108569854], [-77.34703865214195, 34.73555030495301], [-77.34739401806186, 34.73544411631753], [-77.34790297386034, 34.7356738937981], [-77.34792447394585, 34.73567973759819], [-77.34797736080844, 34.735690358362774], [-77.34856048181697, 34.735552034222366], [-77.3488587765282, 34.73572710844445], [-77.3490581465113, 34.73590053926738], [-77.34934611513955, 34.73562656680234], [-77.34958892199069, 34.7354236740712], [-77.34972500596515, 34.73532400177817], [-77.34986295645896, 34.735191751891165], [-77.35006482718362, 34.734986821254964], [-77.35013452684551, 34.73486142180809], [-77.35023145103465, 34.73467128232434], [-77.35026672143105, 34.734599590649566], [-77.35028535675207, 34.73454394804112], [-77.35035828514818, 34.73434333454172], [-77.35044661954744, 34.73404856421409], [-77.35066649287539, 34.73381365608909], [-77.35047849813466, 34.733072764945966], [-77.35034307425667, 34.733008644733346], [-77.35039664620956, 34.732875927881764], [-77.35027727974295, 34.732621990768465], [-77.35053959170502, 34.731881548640544], [-77.3502015401539, 34.73154073763205], [-77.35007681737629, 34.730970296766216], [-77.34999656773878, 34.73091002625138], [-77.34992466437676, 34.73085602330948], [-77.34934609301507, 34.73062199336924], [-77.34889112764463, 34.73029074353806], [-77.34784246154011, 34.73020182046101], [-77.3469806683185, 34.728621201826556], [-77.34662676772592, 34.72798347096168], [-77.34640050449136, 34.72757571130669], [-77.34799671883565, 34.725123635541195], [-77.35004342674642, 34.724755537557456], [-77.34986920683238, 34.72320067894698], [-77.35419469580589, 34.720277678296206], [-77.35650165321927, 34.72038673954385], [-77.35655384058104, 34.720401710248886], [-77.35677856745671, 34.720511587184674], [-77.35869637581638, 34.72127169236099], [-77.36018125966734, 34.720709255165936], [-77.36146707587153, 34.719978076066944], [-77.36199109912451, 34.72002436096491], [-77.36377981912982, 34.72026175117675], [-77.36470235755624, 34.720384171944254], [-77.36512735860009, 34.72025023791514], [-77.3653067838973, 34.72010621700636], [-77.36649743461929, 34.719150502019964], [-77.36663194078149, 34.71903052870037], [-77.36718464744807, 34.718873444200355], [-77.36916996741074, 34.718194268658394], [-77.37001514954216, 34.71848451754688], [-77.37112481232916, 34.71859552966829], [-77.37142940860312, 34.7186613864978], [-77.37225555963732, 34.71890719412957], [-77.37331253192193, 34.7180313543601], [-77.37368416423308, 34.71662564223599], [-77.3738556384957, 34.71600711927575], [-77.37086185367482, 34.712567571502575], [-77.37086893479858, 34.712518481508724], [-77.37082265009933, 34.71251990107143], [-77.37201594237685, 34.708484998953715], [-77.37201240213084, 34.708462180037984], [-77.37201180956566, 34.70845047500018], [-77.37205888199762, 34.70823833114198], [-77.3724377348966, 34.70645414230361], [-77.37219475637305, 34.705155507580926], [-77.37056518799983, 34.70513311329034], [-77.37017809380785, 34.704815138810346], [-77.37008737526861, 34.70422378760245], [-77.37008814256838, 34.70385271888049], [-77.37012775409117, 34.70359254805493], [-77.3697942574631, 34.70366365623674], [-77.36949362051028, 34.70295964068306], [-77.36934706927005, 34.70261646028385], [-77.36945850937352, 34.701989681633606], [-77.36946434210438, 34.70173768301366], [-77.36956510218221, 34.70120846058085], [-77.36960580740302, 34.700994654320766], [-77.36964024457228, 34.70081376818327], [-77.36971991021576, 34.70006934369867], [-77.3697610543314, 34.69999853280582], [-77.36978959668994, 34.69991028910151], [-77.36973144064771, 34.69975379099773], [-77.36909665297529, 34.69965518933638], [-77.36819924924939, 34.69923838341177], [-77.36798974755654, 34.69893024832626], [-77.36762760829626, 34.69875217648814], [-77.36686176500389, 34.69844740121955], [-77.36664845173225, 34.698385736853815], [-77.3663724787466, 34.698379420178085], [-77.36533220632862, 34.69841082943673], [-77.36474978058192, 34.698270228752506], [-77.36344518385684, 34.697942034828515], [-77.36162152312986, 34.69752418698246], [-77.3608594081985, 34.69732160035193], [-77.35880025157739, 34.69677418693541], [-77.35863725177295, 34.69672804139093], [-77.3584258102852, 34.696830038097666], [-77.35640538491185, 34.696167922244], [-77.354809469685, 34.69834288409773], [-77.3522913877707, 34.69947387580212], [-77.35146967912502, 34.70048864883152], [-77.35023845079081, 34.70091341407341], [-77.34685337053646, 34.70022033746572], [-77.34745780823262, 34.698963223170054], [-77.3483066196753, 34.69807137516637], [-77.34837116138658, 34.69774199434168], [-77.34812886498703, 34.69712101466364], [-77.34806715326616, 34.69691766030982], [-77.34783496636464, 34.696821278999565], [-77.3473895240923, 34.696871770669524], [-77.34654809214884, 34.697129801766295], [-77.34539177873988, 34.69765396063361], [-77.34520158230868, 34.69764361568744], [-77.34494950947872, 34.697739831641854], [-77.34434908706504, 34.698006209412064], [-77.34406044807757, 34.69816674341023], [-77.34403953037605, 34.6984399808818], [-77.34389519385695, 34.69867679715066], [-77.34467576174174, 34.699453942647914], [-77.34483673105355, 34.699403281542814], [-77.34497203750385, 34.699835124530445], [-77.34450906849369, 34.69965538677156], [-77.3436045111521, 34.69901994257451], [-77.34341775519863, 34.69891836983886], [-77.34225664374955, 34.69953822030409], [-77.34182033602727, 34.699359063525364], [-77.34147485567405, 34.69928800660797], [-77.34115077787015, 34.699223396085934], [-77.34102816500729, 34.699180210060135], [-77.34062822052675, 34.69917572953516], [-77.34055176890617, 34.69922459178745], [-77.34043301742304, 34.69939551410513], [-77.34041752454299, 34.69962727772916], [-77.3404168736196, 34.699641416836386], [-77.34041643988697, 34.699650837030205], [-77.34041427492699, 34.6996978675822], [-77.34039762918677, 34.70005946266469], [-77.34043971267819, 34.70012565914133], [-77.34045651897841, 34.70040830987831], [-77.34036105812241, 34.70085392036917], [-77.34025453793491, 34.70112581336804], [-77.33991942449452, 34.7016098105552], [-77.34011152850759, 34.70280062065515], [-77.34018764612271, 34.70308449234792], [-77.33998084074899, 34.70325044734914], [-77.33897777783167, 34.703250455149494], [-77.33778673833984, 34.70325046572369], [-77.33758605885895, 34.703250466689454], [-77.33743267028618, 34.70336450191893], [-77.3348245066199, 34.70451251884308], [-77.33337263710082, 34.70487179064575], [-77.33138462763853, 34.705021930507115], [-77.32983888202764, 34.70518653658515], [-77.3278605674217, 34.70509151784837], [-77.32729941375696, 34.705011039150776], [-77.32528688985364, 34.70436849442074], [-77.32376476163967, 34.70457650788913], [-77.32288541459442, 34.70350729734886], [-77.3219235660375, 34.70283975920104], [-77.32139249182563, 34.7017624385901], [-77.32133236752027, 34.7017180721867], [-77.32127833220584, 34.70168165553327], [-77.32107063583317, 34.70162377025328], [-77.32033547464975, 34.70190726826165], [-77.31900578757563, 34.70234636145496], [-77.31575448769162, 34.704484303618635], [-77.31569317356097, 34.70451630546526], [-77.31563933662308, 34.704519531397644], [-77.3155736557636, 34.704509072786266], [-77.31200351391672, 34.70416254959312], [-77.31105090979463, 34.703908824591046], [-77.31002638351144, 34.702530251914084], [-77.30947895891168, 34.70144486414807], [-77.30942198677214, 34.7014187712345], [-77.30940261431947, 34.70134222770469], [-77.3081151943587, 34.7008472804056], [-77.3074588506988, 34.699791515675734], [-77.30742712355452, 34.69977636871882], [-77.30618147086494, 34.69918168047362], [-77.30514212328842, 34.699522838803226], [-77.30354957501768, 34.69885195830292], [-77.30295643566745, 34.69880384383987], [-77.3025132558623, 34.69849959948204], [-77.30280822454276, 34.698194177722065], [-77.30326746415614, 34.69773497927338], [-77.30423531137538, 34.69631447215217], [-77.30491232199516, 34.69542903318042], [-77.30498892859022, 34.69502017387123], [-77.30541568144466, 34.694203461717635], [-77.30695763072166, 34.6932828118472], [-77.307366218829, 34.693542340562246], [-77.3077642542493, 34.69388192303005], [-77.30797259751927, 34.69390976889492], [-77.30820452777401, 34.69404168307594], [-77.30859401395004, 34.69417447250195], [-77.30907625873807, 34.694231861802834], [-77.30980513611101, 34.69418462468292], [-77.31025229953455, 34.69430515138843], [-77.31036116683892, 34.69439187974211], [-77.31053323035795, 34.69447747767968], [-77.3112814322162, 34.69488349195129], [-77.3115840859291, 34.69502774964403], [-77.31172988614611, 34.69528831803756], [-77.31175843824391, 34.695301811354724], [-77.31223114883294, 34.69531830885649], [-77.31234792192348, 34.69533343875255], [-77.31260177252668, 34.69538862080021], [-77.31313603075822, 34.69541061653761], [-77.31331175519776, 34.695559026703926], [-77.31346692273561, 34.69560286953725], [-77.31391724472583, 34.69559801581492], [-77.31396545099373, 34.69594722898357], [-77.31398271037692, 34.695954488245924], [-77.3143171139458, 34.696078656035624], [-77.31429865510086, 34.69615489314745], [-77.3144844038545, 34.69622137312345], [-77.31462277123217, 34.69611049749605], [-77.31467360764545, 34.69594951023429], [-77.31472598788734, 34.69585267840649], [-77.31532323154264, 34.69539565041057], [-77.31544833451146, 34.695359699724406], [-77.31600068339824, 34.69512477564588], [-77.3169276518762, 34.69539492318509], [-77.31710635882423, 34.69544002052863], [-77.31716336463222, 34.69546618684221], [-77.31721553156135, 34.69551164135416], [-77.31766973967008, 34.69556139250093], [-77.31785842466236, 34.695582059185085], [-77.31796003035626, 34.69559250424114], [-77.31804355112885, 34.69557745362567], [-77.318265022713, 34.69557305686878], [-77.31864817855626, 34.69564409351754], [-77.3192571673401, 34.695432291708585], [-77.3194897121403, 34.69547902296075], [-77.31977476243793, 34.69536639463344], [-77.32037970940377, 34.69535715740254], [-77.32074576073049, 34.695277109302125], [-77.32116161908824, 34.69531955541987], [-77.32132143168636, 34.69535620606863], [-77.32135854846923, 34.69539253158619], [-77.32145129943625, 34.695418635537145], [-77.3218705057761, 34.69552678077007], [-77.32218908953104, 34.69554195042405], [-77.32289966437718, 34.69558419611613], [-77.3230499062415, 34.69558846604083], [-77.32312724835622, 34.69560859844691], [-77.32324372814364, 34.69566036292618], [-77.3237259018799, 34.69593635751358], [-77.32384597089703, 34.6960651915691], [-77.32406097208828, 34.69622918226361], [-77.32427056449089, 34.69630564277343], [-77.32453471106228, 34.69645816223247], [-77.32458837776576, 34.696474318373674], [-77.32467495990363, 34.69652030893319], [-77.32489361722503, 34.69661463889918], [-77.32507793003708, 34.69662739150689], [-77.32514264780235, 34.69662705038775], [-77.32539178538687, 34.696625584542936], [-77.3255157841488, 34.69662758347206], [-77.32576291572079, 34.69655275120089], [-77.32609692819099, 34.69647733394748], [-77.32635272213354, 34.696583236752275], [-77.32693256861789, 34.6966072081554], [-77.3269445183426, 34.69660687529078], [-77.32696028207582, 34.69660149788913], [-77.32696310020667, 34.696612672280786], [-77.32747851654199, 34.69682935236039], [-77.32768513486414, 34.696832186101304], [-77.32785245762655, 34.696784583947135], [-77.32801033273918, 34.69658205396533], [-77.3280578532106, 34.696462598743395], [-77.3281147999443, 34.6963788017618], [-77.32835833071238, 34.69593403576017], [-77.32874092358108, 34.695657205084814], [-77.32905944079818, 34.69550960014974], [-77.32960382212072, 34.69535635764853], [-77.32976463929981, 34.69528822132247], [-77.32994945484211, 34.695228525699655], [-77.33037870531173, 34.6950899825153], [-77.33052283334632, 34.69504355795285], [-77.33082044474344, 34.69494769537323], [-77.33105363932123, 34.69482749739454], [-77.33129330962495, 34.69455689623527], [-77.3313895469106, 34.69437685291836], [-77.33144719952375, 34.69429210981002], [-77.3314483646335, 34.6942277098598], [-77.33147448222557, 34.69404468305145], [-77.33145497954115, 34.69393239621148], [-77.33135265424232, 34.69379860861425], [-77.3312651989491, 34.69368426333011], [-77.33112574392473, 34.693605130957124], [-77.3310802025847, 34.69343244884289], [-77.33090118647091, 34.693292204573424], [-77.33053534542074, 34.69319871345533], [-77.33059600378076, 34.69301667605968], [-77.33002131567609, 34.69296213191045], [-77.3298238355944, 34.69287957458762], [-77.32874223899799, 34.69310461419059], [-77.3285305802689, 34.69320980755012], [-77.32739428245883, 34.69411672123299], [-77.32729679464302, 34.694376435318], [-77.32718213144355, 34.69463317334639], [-77.32686112314695, 34.694834241179755], [-77.32663514739522, 34.694708154627335], [-77.32666639821727, 34.69446290256573], [-77.32649942355027, 34.69423939012592], [-77.3260276611768, 34.693582553722045], [-77.32595503130361, 34.69343364538126], [-77.32554442761192, 34.693395560399246], [-77.32539030630485, 34.692685516377665], [-77.32540614533596, 34.69227942146412], [-77.3254380892862, 34.691460661204076], [-77.32548348096002, 34.69064351087823], [-77.32552787415423, 34.68769981842059], [-77.32553424898485, 34.687548544295886], [-77.32553846884981, 34.68744843000663], [-77.32555921060907, 34.68695647818781], [-77.32561692239614, 34.68558773876575], [-77.3239097466175, 34.68554846297466], [-77.32169129361147, 34.684176340444516], [-77.32202179513934, 34.683847935582435], [-77.32434324976163, 34.68154121526524], [-77.32510011942497, 34.681480020432005], [-77.32735448833256, 34.68077972008825], [-77.3287920335633, 34.68125348767222], [-77.32923366367228, 34.68145298734339], [-77.32909815785531, 34.682186258355806], [-77.32917721427162, 34.68228464383033], [-77.32921452682822, 34.68261784639878], [-77.32931571271335, 34.68264379904907], [-77.32975454337068, 34.6826287238972], [-77.32988467702968, 34.6826260023153], [-77.3304418662331, 34.68251387209155], [-77.33052972509188, 34.682559718439016], [-77.33082562373812, 34.682436756500984], [-77.33094565208313, 34.68229020670388], [-77.33164540942177, 34.681836965617684], [-77.3319074019254, 34.681590136272845], [-77.33192582613962, 34.68179851043139], [-77.33251144860048, 34.68208420051933], [-77.33291966869191, 34.682226262784084], [-77.33366623985273, 34.6821495675056], [-77.33407625144773, 34.682365737582835], [-77.33411260895333, 34.68242881551431], [-77.33467214887997, 34.68237487794974], [-77.33468729320875, 34.682380789924146], [-77.33471404397787, 34.682390850643515], [-77.33497541666792, 34.682553239330886], [-77.33519022970692, 34.68265185262832], [-77.33550233051558, 34.682501218633064], [-77.33590853079112, 34.68223967744497], [-77.33600218327189, 34.682214160156676], [-77.33648841350939, 34.68209897942375], [-77.33655949408823, 34.68205925919135], [-77.33660550792808, 34.68208729866639], [-77.33708291598714, 34.68198784342338], [-77.33719036264347, 34.6819479987128], [-77.3375073099093, 34.6817875602192], [-77.33755452720602, 34.68176771794896], [-77.33758422053313, 34.681728381767385], [-77.33766945157066, 34.681498069562274], [-77.33786201278579, 34.68112049142817], [-77.33775463491578, 34.68099900773785], [-77.33774228803219, 34.68065747071714], [-77.33753916714691, 34.680053815483355], [-77.3376564402809, 34.67828325266418], [-77.33759476673444, 34.67817299369472], [-77.33755983483279, 34.67810148319974], [-77.33737289467113, 34.677776315917185], [-77.33636912692467, 34.675962970108536], [-77.33555853161343, 34.67447701444579], [-77.33455638917764, 34.672472793590984], [-77.3343612222734, 34.67120186363495], [-77.33404912325607, 34.67078508491513], [-77.33301849777357, 34.66908209594567], [-77.33288816292233, 34.668691068968855], [-77.33248852441244, 34.66710017506164], [-77.33149163869719, 34.66684984521307], [-77.33119417721306, 34.666831213972735], [-77.3303196224049, 34.66636784552975], [-77.32955632470615, 34.66608795626333], [-77.32849229304631, 34.66613398524972], [-77.32735828267346, 34.665845915938476], [-77.32566305978173, 34.664802444839275], [-77.32559911866927, 34.66473558577433], [-77.32544334737939, 34.66469037630257], [-77.32372187385364, 34.66385887028893], [-77.3228905099585, 34.663752627698734], [-77.32061232583187, 34.66264374441823], [-77.32009214345268, 34.66257383725024], [-77.31954056064102, 34.66212362697769], [-77.3197362992786, 34.66182576914317], [-77.31973626105207, 34.6608011192994], [-77.31975935968123, 34.658717752782046], [-77.31893027119943, 34.65678598578589], [-77.31853484963762, 34.655759203776825], [-77.31838436574068, 34.65553032081188], [-77.3178017347013, 34.65467991441314], [-77.316374239411, 34.6524299200691], [-77.31597379475252, 34.65164581252418], [-77.31512247579502, 34.650575460513565], [-77.31401327372093, 34.64937757782228], [-77.31324664217021, 34.64786143041875], [-77.31198531125818, 34.647704844529315], [-77.3095937747521, 34.645908702387246], [-77.3090472727272, 34.64582605217663], [-77.30803687264182, 34.64555918986087], [-77.30635094069868, 34.64515175682862], [-77.30543313848372, 34.64496047860503], [-77.30245385237589, 34.644209276499026], [-77.30143709487304, 34.64368679262679], [-77.30091320205757, 34.64357754855805], [-77.30039713668461, 34.64376192019141], [-77.2965893945444, 34.64409728278252], [-77.29593458116206, 34.644293160073275], [-77.2953536352603, 34.64438997535797], [-77.29356847781793, 34.645265974585136], [-77.29348216798947, 34.645311650762316], [-77.29288366923576, 34.6455193853439], [-77.29145317257723, 34.64608609458194], [-77.29121685897229, 34.64631129187835], [-77.29088779850788, 34.64619570907511], [-77.29039246605585, 34.64586027733081], [-77.2874650504568, 34.643788446594954], [-77.28674654552304, 34.64298333680634], [-77.28635346746952, 34.64132007237883], [-77.28632544396045, 34.63966518194043], [-77.28710273384158, 34.638557575533795], [-77.28794873304857, 34.6374697378523], [-77.28926934869898, 34.6365893620539], [-77.29128427349826, 34.635246085924926], [-77.29153415568801, 34.63511204306059], [-77.29181980415339, 34.63517862495332], [-77.29431294668746, 34.63620026900248], [-77.29957697218266, 34.63765502941717], [-77.29973518002012, 34.63770055609329], [-77.29993938805053, 34.63747246744491], [-77.30398681183385, 34.63336055490123], [-77.3041335991209, 34.631231994527575], [-77.30460494085553, 34.630411359059764], [-77.30649356392644, 34.62809695347238], [-77.30786347260913, 34.62715270744471], [-77.30809387730862, 34.62692227877977], [-77.3092610656752, 34.62639767995822], [-77.30992246235365, 34.62596089377423], [-77.31011737883229, 34.625623549483656], [-77.31065225588027, 34.62545809279456], [-77.3126474083235, 34.62547163442682], [-77.31513185723324, 34.62548844858514], [-77.31536025806041, 34.62532119906748], [-77.31541600748164, 34.62555421667752], [-77.31541838263186, 34.62575614860955], [-77.31524949306944, 34.62567896962853], [-77.31510353132317, 34.62728498568355], [-77.31480050019627, 34.627848701265734], [-77.31440638289205, 34.627858444178955], [-77.31410563847845, 34.6282657232974], [-77.31401096574388, 34.6284459801078], [-77.31390384121562, 34.62854448916978], [-77.31382011427173, 34.62872683889509], [-77.31399245818145, 34.628986300502106], [-77.31406078486702, 34.62903994342804], [-77.31414918332031, 34.62910372419625], [-77.31441247908151, 34.629491437533915], [-77.31459226698449, 34.62988696737623], [-77.31449218893337, 34.63023049700965], [-77.31453912194786, 34.63038824879722], [-77.31460638670026, 34.630451270820316], [-77.31476871945011, 34.63048884513249], [-77.31491257779354, 34.63038201955799], [-77.31514020345014, 34.63034629603297], [-77.31614248674619, 34.63043735742441], [-77.31618486045832, 34.630341910694774], [-77.31697258428446, 34.63040468229546], [-77.31651497153122, 34.630785336510705], [-77.316986696654, 34.63128230092053], [-77.31704378269538, 34.63143231942525], [-77.3177030192154, 34.63199250257191], [-77.31738122210686, 34.63226202189345], [-77.31752759636386, 34.632506915539885], [-77.31762000524719, 34.63270897319394], [-77.3177222844324, 34.632833833883666], [-77.31788025241377, 34.63295656435544], [-77.31801215829373, 34.633185135940124], [-77.31803508310252, 34.633212942337565], [-77.31804320084467, 34.63322284798485], [-77.31829739941112, 34.633278603094766], [-77.31862788257143, 34.63355366684693], [-77.31888788914279, 34.63424202407614], [-77.31918932924418, 34.633808640420995], [-77.31937769137905, 34.633492526236004], [-77.31946580454861, 34.633541898342116], [-77.31943196322125, 34.63344343800954], [-77.31931058872303, 34.633158107738474], [-77.31873745489807, 34.63240779952978], [-77.31813030450984, 34.63193392956746], [-77.31778324688052, 34.63063527386901], [-77.3187562307362, 34.630395248781184], [-77.31920450834502, 34.62929325094356], [-77.32284716687465, 34.62886483867736], [-77.3234868843035, 34.628448583268806], [-77.32492442677686, 34.62929713841628], [-77.32407405189358, 34.62774307782328], [-77.32772725757438, 34.62406036008521], [-77.32812672276319, 34.62161046699587], [-77.33102194867692, 34.6200381755567], [-77.33153462550207, 34.61945499517195], [-77.331915011393, 34.61941237722796], [-77.3322979671166, 34.6193386229363], [-77.33417151436186, 34.617899046865176], [-77.33614129416648, 34.61841924011192], [-77.3366378248688, 34.617430792915876], [-77.33806286143613, 34.61710716061557], [-77.33902048826606, 34.61654634437637], [-77.33973642835207, 34.61643875196943], [-77.34107863168967, 34.61572709471084], [-77.34137675473656, 34.61553064033227], [-77.34197510140555, 34.615860481315025], [-77.34305001992861, 34.61641522122669], [-77.34410362726584, 34.616359821845165], [-77.34669160951438, 34.617596116223396], [-77.34696343931606, 34.61771227722667], [-77.34703339683371, 34.61776442987936], [-77.34716197180629, 34.617821319180855], [-77.34853993939761, 34.618238283173895], [-77.34928487461204, 34.61841181789885], [-77.35011661345598, 34.618505650773365], [-77.35096130334387, 34.61818439226495], [-77.35169393078868, 34.61767470741508], [-77.35236136862888, 34.61707351735101], [-77.35169478255654, 34.61620532202209], [-77.35145099348905, 34.61576910853694], [-77.35146548142954, 34.61550419362433], [-77.35148838735547, 34.61527802807508], [-77.35163998025223, 34.61378089132788], [-77.35182903280271, 34.61191355671498], [-77.35198897124211, 34.61033430339626], [-77.352128589804, 34.609078775397876], [-77.3532761719194, 34.60806125995098], [-77.35441790410398, 34.6087546537011], [-77.35642923460482, 34.608453214118576], [-77.35711395142428, 34.60885920951605], [-77.35800563023643, 34.608934819225965], [-77.35830613142032, 34.60910164091827], [-77.35879383332187, 34.60917832531356], [-77.35938124056108, 34.60927068354681], [-77.35955447055719, 34.609275526314384], [-77.35958210457227, 34.60929197379722], [-77.36022308449242, 34.60999863136192], [-77.36002095757358, 34.61040355966299], [-77.35998819011827, 34.610470447078654], [-77.35997569034232, 34.61048349401007], [-77.35984020408905, 34.610624143934444], [-77.35958131965226, 34.610894483307355], [-77.35955924070215, 34.61091950892669], [-77.35952673369452, 34.610947954613714], [-77.35950033220873, 34.61103890711697], [-77.35941841811794, 34.61163758283614], [-77.35945192983691, 34.61180782469337], [-77.35947396150723, 34.61191974546304], [-77.35958078811274, 34.611981794151546], [-77.3597777257985, 34.612185490304476], [-77.359907027295, 34.61223991956358], [-77.36033457633417, 34.61249293737475], [-77.36036889000064, 34.61250669651139], [-77.36037650288942, 34.612515664113744], [-77.36038761285697, 34.612522269328764], [-77.3607629607261, 34.61273519826214], [-77.36085504305584, 34.61278034750925], [-77.36115703117763, 34.61296888221671], [-77.36152444540403, 34.612812111144486], [-77.36156730788296, 34.612794283168576], [-77.36159445692306, 34.612773126931415], [-77.36194564670237, 34.612417069676326], [-77.36199394158929, 34.61234305448712], [-77.36200231083366, 34.612289869997596], [-77.36215580311656, 34.612041610179574], [-77.36194580610503, 34.61207054740002], [-77.3618352719079, 34.611584098963036], [-77.3616901817787, 34.61148568816405], [-77.36140037902635, 34.611266157034066], [-77.36136340941106, 34.61090485591072], [-77.3613484779381, 34.61068576344536], [-77.36137621910876, 34.61044696233256], [-77.36146473023534, 34.61014991689103], [-77.36171466341611, 34.60978395031796], [-77.36182567393715, 34.60963737036185], [-77.36194702129181, 34.60943431174158], [-77.36227722623796, 34.60934735591934], [-77.3623412428881, 34.60930852765538], [-77.36236898341481, 34.60929508811979], [-77.36240580753375, 34.60925991492563], [-77.3624297268909, 34.60916123760837], [-77.3625113165805, 34.60882017329509], [-77.36255798918378, 34.60862202240864], [-77.36255584809649, 34.60815862106357], [-77.36242989619632, 34.6079827851455], [-77.36224472840738, 34.60768963848828], [-77.36198074456017, 34.607198327140324], [-77.36195741842661, 34.6063622470461], [-77.36195327824528, 34.606347975192875], [-77.36165142829995, 34.60554751463369], [-77.36128235231648, 34.60403287329812], [-77.3612910562019, 34.60390117370442], [-77.36140705627903, 34.603619905016785], [-77.36185034045022, 34.60212244671302], [-77.36144335865207, 34.60078504315065], [-77.36152324277612, 34.600083396218736], [-77.36209467995647, 34.59869084495411], [-77.36095825007516, 34.59693385209893], [-77.36089923133869, 34.59546649560461], [-77.3601512451265, 34.59496868007238], [-77.35958940875922, 34.594554315145004], [-77.35825929822069, 34.5924500568032], [-77.35756177051844, 34.591340197585744], [-77.3577947500014, 34.59058132437188], [-77.35801515708066, 34.59047297056068], [-77.35849224802463, 34.59020448025279], [-77.35959189513375, 34.58960482884821], [-77.36004033493273, 34.58928024015532], [-77.36038028489396, 34.589103009908314], [-77.36091138375852, 34.588671900292155], [-77.36107050163174, 34.58854320597419], [-77.36116877625379, 34.58837276801874], [-77.36145730132543, 34.588054887337634], [-77.36177315344256, 34.58789694803589], [-77.36195717588193, 34.58780590461118], [-77.36207525074998, 34.58778244167135], [-77.36235125890295, 34.58776112075337], [-77.36265861256929, 34.58766472278735], [-77.3627453502757, 34.58769745796017], [-77.36285681166102, 34.58754272185868], [-77.36282695631611, 34.58745921887646], [-77.36280259196602, 34.58712597364886], [-77.36274564372667, 34.587070331047315], [-77.36254384717834, 34.58695614176284], [-77.36217005636558, 34.5867924849217], [-77.36195775785038, 34.58658734381873], [-77.3616677299409, 34.586328300845324], [-77.36117002893684, 34.58580132752605], [-77.36092560825399, 34.58553690091388], [-77.36076514846573, 34.585296523230355], [-77.36058158837396, 34.58510819807756], [-77.36042944515009, 34.58454627099308], [-77.36042957695796, 34.584495724537746], [-77.36042465466399, 34.584451117438746], [-77.36031013359514, 34.58366380984778], [-77.3602853223899, 34.58292390318464], [-77.36010609502311, 34.582545137317], [-77.36036165803783, 34.581958181634704], [-77.35988430094301, 34.581716154686504], [-77.35959579826104, 34.58190483787345], [-77.35935728212914, 34.581845742941276], [-77.35902711865893, 34.58191390478351], [-77.35880766047265, 34.58203716054952], [-77.35817076861804, 34.58211062667195], [-77.35801951797585, 34.58217317146508], [-77.3565844624096, 34.58234975491979], [-77.35644327434476, 34.582353808236086], [-77.35625554388753, 34.58234694182521], [-77.35354534960656, 34.582664969984734], [-77.35329097202978, 34.58235841753792], [-77.35254102991733, 34.58227567005416], [-77.35013857911903, 34.58249959903703], [-77.34856272602073, 34.58195793921488], [-77.34698647991203, 34.58217255669122], [-77.34453611162122, 34.5815947872729], [-77.34383467981102, 34.58144498132786], [-77.34350777125866, 34.58133914683459], [-77.34278786641174, 34.58109037843941], [-77.34133412439887, 34.58059790594326], [-77.3406836293608, 34.579769531426194], [-77.33944432507509, 34.580236271042516], [-77.33894144414634, 34.580123950929355], [-77.33872932511164, 34.5799758087866], [-77.33792772144326, 34.57966413570021], [-77.33753147945691, 34.57967029399769], [-77.33699160533219, 34.579376560499874], [-77.33683931609107, 34.57929545177045], [-77.33674374499364, 34.57926015024081], [-77.33651438733108, 34.57919799240565], [-77.33595591034317, 34.57898556421545], [-77.3357746758719, 34.578897768915105], [-77.33528618632471, 34.57890006168852], [-77.33516787702084, 34.57896395535185], [-77.33456395203531, 34.57907494538142], [-77.33437969731783, 34.57912233004411], [-77.33424025434289, 34.57907327785902], [-77.3336881082467, 34.579106277923394], [-77.33359158031612, 34.579200548117015], [-77.33298686944237, 34.57930077875743], [-77.3328033031547, 34.579469120508], [-77.33256955426062, 34.579415025076884], [-77.33201528939318, 34.57941825004448], [-77.3314240085796, 34.579539892229164], [-77.33122713401517, 34.579534663875194], [-77.3311054412649, 34.57950469271661], [-77.32965065689152, 34.57995005063309], [-77.32931001303352, 34.5796315665729], [-77.32965160789625, 34.578857588227436], [-77.32986877231676, 34.57808638167019], [-77.3300035712738, 34.57783375215637], [-77.33044121526216, 34.57705251385623], [-77.33049553864718, 34.57697243375881], [-77.33067163162907, 34.57688866971085], [-77.33122963457735, 34.576601281574284], [-77.3316568278629, 34.57635806554416], [-77.33201791196547, 34.57630786227827], [-77.33236983917709, 34.576265448088016], [-77.33244737956332, 34.57624706450142], [-77.33280607335118, 34.57614642610632], [-77.33315016935822, 34.57605403813171], [-77.33316751000135, 34.5756808730593], [-77.33317189891113, 34.57564942672489], [-77.33314369756773, 34.5753212523107], [-77.3331311165738, 34.575261564836474], [-77.33298078052422, 34.57504588882243], [-77.33286874697414, 34.57487473742785], [-77.33284502920577, 34.57483734993009], [-77.33280724280363, 34.57474647371777], [-77.33252549810476, 34.574620381243626], [-77.33241340686351, 34.57454426887895], [-77.33238933664123, 34.57454504037547], [-77.33201962251155, 34.574283327850786], [-77.33184468613567, 34.57417284861132], [-77.3314933476079, 34.57394164166758], [-77.33123206224826, 34.57376008254064], [-77.3310497820863, 34.57363454187652], [-77.33075359234971, 34.57348058687266], [-77.33058526456401, 34.57335300659149], [-77.33044460886916, 34.5731245704786], [-77.33003227231669, 34.573139967662044], [-77.32965654331838, 34.57320241819198], [-77.32932483539966, 34.57332861897393], [-77.32922813272373, 34.57331225126356], [-77.32917439288677, 34.573282999786656], [-77.32898613484593, 34.57318336722746], [-77.3290036885609, 34.57302844667418], [-77.32910705190983, 34.572868139833716], [-77.32926303633994, 34.57264276497834], [-77.32942852748175, 34.57257565962139], [-77.3296573688582, 34.57225896193374], [-77.32979621115626, 34.57192002654338], [-77.32995835423522, 34.57137113129402], [-77.32999422057739, 34.57104249436953], [-77.32999101892271, 34.570684918398314], [-77.329998038231, 34.57061740861551], [-77.32992439263194, 34.570489514362094], [-77.32977621922073, 34.57022474947196], [-77.32973219577188, 34.57015243501284], [-77.32965931852402, 34.57003353763014], [-77.3295342146493, 34.56983499150825], [-77.32943382534259, 34.56966820763017], [-77.32941111739032, 34.56958480771137], [-77.32965710082358, 34.56939279374233], [-77.32965908118291, 34.56939164674383], [-77.32965988185333, 34.56939124883262], [-77.32966102350186, 34.56939100003446], [-77.33023822478226, 34.56908310963791], [-77.33044819580854, 34.56898601161593], [-77.33082759849829, 34.568815897468006], [-77.33085044551648, 34.56880549276534], [-77.33085895601793, 34.56877763633692], [-77.33079135793608, 34.56838070215772], [-77.33069482840332, 34.56812960970444], [-77.33056513902187, 34.56756413957227], [-77.33044973677423, 34.567212294994555], [-77.33032671420804, 34.56688220684326], [-77.32966276808833, 34.56610566005186], [-77.32960888763324, 34.566061524954776], [-77.32954877259607, 34.566012061673334], [-77.32912234964495, 34.56580691029996], [-77.32887552143123, 34.565335524968845], [-77.32885144720912, 34.56528919018778], [-77.32885056442663, 34.565263330355954], [-77.32884254092275, 34.56522884075657], [-77.32873282222067, 34.56443117458064], [-77.3285183150325, 34.56399914356215], [-77.32808897002165, 34.56380902009273], [-77.32801809850235, 34.56376123532078], [-77.32792467178668, 34.56369824202923], [-77.32801076730826, 34.56292193007129], [-77.32802860678797, 34.562834232465796], [-77.32805523180305, 34.56279306282994], [-77.32808991734368, 34.56275685352677], [-77.32839958706953, 34.56235638179871], [-77.3284415271723, 34.562304289518856], [-77.32848450985723, 34.56204010771008], [-77.32850837428141, 34.56191621066099], [-77.32848464854442, 34.56188541069578], [-77.32823988234156, 34.5617941201803], [-77.32809085038255, 34.56172144728688], [-77.32773682618787, 34.56155968719787], [-77.32730311772528, 34.561547972497905], [-77.32701740348344, 34.56158926186204], [-77.32679646971108, 34.56161629843805], [-77.32651502735605, 34.56176638306448], [-77.32582788626917, 34.5623014031697], [-77.32581344041381, 34.562397115754415], [-77.32500743481435, 34.56326836196555], [-77.32496318530691, 34.56330207370142], [-77.32493778467196, 34.5633206418291], [-77.32483882814391, 34.56339914388302], [-77.32285047773313, 34.564726649754675], [-77.321784073908, 34.56545556751627], [-77.32063335028309, 34.566053615386174], [-77.32016194010271, 34.56736072543893], [-77.31862697133995, 34.5707866533315], [-77.31855190913726, 34.57090748523697], [-77.31547100901332, 34.574653403471586], [-77.31536791789571, 34.574730719962766], [-77.31518489624592, 34.574867986052155], [-77.30916238075831, 34.57866229190482], [-77.30627412367414, 34.57982901590526], [-77.3038137872866, 34.58139730656876], [-77.30039137437812, 34.58372686762867], [-77.29956102204639, 34.58423313934832], [-77.29931533746496, 34.58449227059324], [-77.29817347077679, 34.58591176390061], [-77.29498194389187, 34.58841299892152], [-77.29433331693428, 34.59002654289663], [-77.29406978249322, 34.59134429747327], [-77.2933745607627, 34.59316796536332], [-77.2928623225207, 34.59399214417397], [-77.29115138955221, 34.59484762611161], [-77.28914059328478, 34.59585301915072], [-77.28638792901944, 34.59662393436952], [-77.2829292772148, 34.5977199213311], [-77.28158825929182, 34.59822017373277], [-77.28070333288942, 34.59864580720088], [-77.27873178956966, 34.600194917539255], [-77.2777097618019, 34.60118797254289], [-77.27723312933196, 34.602039563313355], [-77.27674685299414, 34.60295844776735], [-77.27656515680785, 34.60386701234898], [-77.27629688966209, 34.60520865880018], [-77.27594566197284, 34.60732744326128], [-77.27392443521666, 34.611092471622534], [-77.27269591669345, 34.612525331342184], [-77.27010286642414, 34.61487774822363], [-77.26965917462155, 34.615366071750046], [-77.26928185680715, 34.6155309772736], [-77.26740730897399, 34.616907298643596], [-77.26629135746651, 34.61685687855149], [-77.26540463377083, 34.61639100469779], [-77.2646389091382, 34.615865423518805], [-77.26450754540994, 34.61579788579719], [-77.26432962120904, 34.61572918394797], [-77.26411578017874, 34.61559349814398], [-77.2620296211711, 34.61402880907225], [-77.26160200286218, 34.613811109551236], [-77.25941395734566, 34.61253203466211], [-77.25692988203792, 34.61407702361939], [-77.25609473188322, 34.614962731574394], [-77.25560242755304, 34.61552587984106], [-77.25406343511352, 34.61663328270703], [-77.25399873000558, 34.61668318946636], [-77.25398517092687, 34.61671708517373], [-77.25309799232497, 34.61849763141419], [-77.25168982786661, 34.620460841245446], [-77.25093305813927, 34.62209798895861], [-77.24997403610135, 34.6236674460885], [-77.24719167654787, 34.62557424250927], [-77.24584526932418, 34.62600838426026], [-77.24219075005334, 34.62726434004532], [-77.2380781733703, 34.62802107093906], [-77.23686969799586, 34.62853195288804], [-77.23403539700038, 34.630530498325385], [-77.23209202815019, 34.63192613108996], [-77.23105139076571, 34.633136308655786], [-77.23047767934158, 34.63427557108058], [-77.23115124159793, 34.63562278254417], [-77.23171558348596, 34.636751529004485], [-77.23267953731681, 34.638679324457264], [-77.2328877772646, 34.63925207645882], [-77.23311405145537, 34.63954837662839], [-77.23372783661014, 34.640775834534125], [-77.23387449771786, 34.64182202327741], [-77.23290903187963, 34.643303012431026], [-77.23110803590814, 34.645795584512726], [-77.230043586526, 34.646847955877575], [-77.22941426468779, 34.64745923264563], [-77.22924133456614, 34.6486701381551], [-77.22912625875071, 34.64947569891705], [-77.22897503509691, 34.65053452914984], [-77.22874758642173, 34.652126066700504], [-77.22874798484004, 34.652402079173164], [-77.2287708401003, 34.6525475575477], [-77.22886742220427, 34.65429687367853], [-77.22892556111576, 34.65542862495063], [-77.22899626410819, 34.657606770456965], [-77.22904908837788, 34.658082060432704], [-77.22913860635327, 34.658287925161076], [-77.22933830898091, 34.658596188900766], [-77.23022831371637, 34.660060422852446], [-77.23046733229603, 34.66073003495915], [-77.2316916726957, 34.66206113246462], [-77.23052172400651, 34.66364858204761], [-77.23321904070211, 34.664260355783156], [-77.23683113153773, 34.66623683034738], [-77.23694492769744, 34.66712486018236], [-77.23718991507133, 34.66974760353058], [-77.2372308880662, 34.670000097094565], [-77.23723088447244, 34.670194510998], [-77.23683658270457, 34.670444925066406], [-77.23371658400892, 34.6723216748089], [-77.22957530367506, 34.67145057560633], [-77.22835530691684, 34.67033647034867], [-77.22390809884605, 34.669310684866076], [-77.2232151380182, 34.66893454762146], [-77.22064420122221, 34.66734130719468], [-77.21926760984368, 34.665145694244124], [-77.21895886229015, 34.66482792581185], [-77.21723226889377, 34.66273889109321], [-77.21677302804268, 34.66088451051831], [-77.21642471404422, 34.66010201089861], [-77.21589380281846, 34.65892969576174], [-77.21573736478597, 34.65879138570571], [-77.21443563656702, 34.657906685222244], [-77.21045273066655, 34.656614572094774], [-77.2101347417707, 34.65652576212924], [-77.20515414884336, 34.65549792507998], [-77.20409560766348, 34.655121261691065], [-77.20203171647525, 34.65466781624104], [-77.20361246849191, 34.65607406828482]], [[-77.33800966050835, 34.77537133614773], [-77.33735528880284, 34.774529301880094], [-77.33727504088375, 34.77438170201086], [-77.33675963424045, 34.773736385031995], [-77.33659838092626, 34.77353448676038], [-77.33678275022692, 34.77300789418837], [-77.33679836446152, 34.772756333699725], [-77.33674482117438, 34.772633619799784], [-77.33710929957041, 34.77202046900933], [-77.33710564308242, 34.771739469602586], [-77.3371139373462, 34.771561586235244], [-77.33712167595496, 34.77149358614226], [-77.33709218242447, 34.771366965881796], [-77.33706664486515, 34.77125744348303], [-77.33701906606437, 34.77114053900238], [-77.33692040375571, 34.77092204399537], [-77.33681488587109, 34.77080458137367], [-77.33663771683688, 34.770391368444294], [-77.33659380967158, 34.770384784623936], [-77.33660178091262, 34.770346421054775], [-77.33645871580754, 34.770167480076736], [-77.33642711036912, 34.77012667794986], [-77.33679578245162, 34.76984774189027], [-77.33682668322277, 34.76985509454891], [-77.33712117936615, 34.76997940444788], [-77.33736771298604, 34.76994143556945], [-77.33764183291044, 34.76993883699779], [-77.33766767998772, 34.76994012631294], [-77.33768798552629, 34.76993785888769], [-77.33797623849351, 34.76990926482664], [-77.33818480435879, 34.76978147435989], [-77.33834566313578, 34.76966905379468], [-77.33842079442255, 34.76960969457063], [-77.33840776735462, 34.76945544524012], [-77.33841368150341, 34.76938001192686], [-77.33840948513654, 34.76936755855186], [-77.33838827267932, 34.769323375923264], [-77.33830518305875, 34.769138170689246], [-77.33829968687314, 34.76907348273108], [-77.33777871091993, 34.76872297084787], [-77.33774048375619, 34.76865932725327], [-77.33735241312306, 34.76822503925413], [-77.3369071545929, 34.768011346695985], [-77.33672783883583, 34.76802070943899], [-77.33661309651147, 34.76790801001501], [-77.33604900593217, 34.76765035595453], [-77.33572071596961, 34.767363135611134], [-77.33486568288826, 34.76698337212325], [-77.33373249899833, 34.766353356206146], [-77.33369825504478, 34.766304173117845], [-77.33367365669689, 34.76616099148986], [-77.3328461751786, 34.765382577293785], [-77.3323036043069, 34.765209713532734], [-77.3312388250761, 34.766292395277375], [-77.33080252210647, 34.766754883867016], [-77.3300290939397, 34.76830163721684], [-77.33052635331681, 34.76874220340085], [-77.33243206155524, 34.77043053687976], [-77.33338494491466, 34.77127469109719], [-77.33433784776865, 34.77211883696569], [-77.33529077011809, 34.77296297448457], [-77.33624371196382, 34.77380710365313], [-77.33719667330668, 34.774651224470674]], [[-77.35017618507152, 34.78614575390189], [-77.35068505990876, 34.78635665886083], [-77.35067581386295, 34.7864494326429], [-77.35158374754388, 34.78700126862974], [-77.3516855814026, 34.78716431650797], [-77.35177243684541, 34.787273759041035], [-77.35193115976388, 34.78769958085425], [-77.35197006794553, 34.78773402873944], [-77.35220838690816, 34.787945025254864], [-77.35244670709024, 34.78815602124763], [-77.35264313547326, 34.78832992649228], [-77.3530319003476, 34.788204482354566], [-77.35323482926239, 34.78804789823735], [-77.35345051105173, 34.78776828512056], [-77.35358943647316, 34.78751186666669], [-77.35384155734359, 34.78708367961255], [-77.35390163242137, 34.786981652728855], [-77.35393856550343, 34.786923945435326], [-77.35402565391793, 34.78684698193568], [-77.35465287281458, 34.786555906038245], [-77.35474861877444, 34.786567370615344], [-77.35505403660672, 34.78646318844091], [-77.35510450308621, 34.78644682261965], [-77.35539230249609, 34.786385996652996], [-77.35544635189632, 34.78637457340727], [-77.35545640926375, 34.786372447785695], [-77.3554652260549, 34.78636730676608], [-77.35547255735517, 34.78635259922067], [-77.35549074615312, 34.786221788016334], [-77.35555490198635, 34.78587209107892], [-77.3555204634026, 34.78582739772274], [-77.35532342503586, 34.785522177711705], [-77.35492068709507, 34.78505825132834], [-77.35477102851578, 34.78485957436774], [-77.35463913207194, 34.78473576426116], [-77.3543622014941, 34.78448155335903], [-77.35426913215393, 34.78438966493543], [-77.35416719736457, 34.784297624460066], [-77.35377852542389, 34.784229395141054], [-77.35360136319395, 34.78418264026676], [-77.35345013954013, 34.78423089644652], [-77.35347886096577, 34.78396408003788], [-77.35365688772575, 34.78399156126562], [-77.3537862685816, 34.78397247439706], [-77.35431330719202, 34.78379479699882], [-77.35461850887904, 34.78369665855746], [-77.35497192297944, 34.783590458869845], [-77.35519095245111, 34.783475114611385], [-77.35543315050745, 34.783338901968314], [-77.35573338860908, 34.783105715316644], [-77.35574200098151, 34.783095214353565], [-77.35576601644702, 34.78306593233201], [-77.35600430413776, 34.78277538926089], [-77.3561786524231, 34.78248882206742], [-77.35598465528548, 34.78207517160993], [-77.35581333905941, 34.78174837021278], [-77.35574399943032, 34.78143170784807], [-77.35593278908246, 34.781160670943386], [-77.35597550857302, 34.780953491583446], [-77.35607085251527, 34.780748717808656], [-77.35631599044315, 34.780289746869364], [-77.35642727048732, 34.77999312219212], [-77.35657900939164, 34.77964474930593], [-77.3566334695387, 34.77950605145912], [-77.3566935334238, 34.77940957991515], [-77.35687454964948, 34.77907550689669], [-77.35689534049254, 34.77903846461938], [-77.35689803447514, 34.77899522968602], [-77.35701135801176, 34.77857232505008], [-77.35698692600928, 34.77851128021968], [-77.35691982566911, 34.778282013952094], [-77.35685450942965, 34.77790569690305], [-77.35724814078668, 34.777581289122786], [-77.3573349588331, 34.77751461270159], [-77.35736030602408, 34.77750481930029], [-77.35804926374632, 34.77720537291442], [-77.35808321415092, 34.77718961318738], [-77.35812036637282, 34.77717089572939], [-77.35845274761994, 34.77678735020287], [-77.35866779848142, 34.776648154451955], [-77.35876705159164, 34.776502857135284], [-77.35885824331153, 34.77637003219978], [-77.35890068018651, 34.77628025014259], [-77.35900870762404, 34.77595602716187], [-77.35895752649228, 34.775845545776704], [-77.35879388450002, 34.77535672796124], [-77.35874238554045, 34.77521101651115], [-77.3587647183693, 34.77495281812611], [-77.35870729236703, 34.774296496199824], [-77.35851089197408, 34.774011525745415], [-77.35878597265241, 34.77384611298051], [-77.35912558755474, 34.77371053638414], [-77.35947210532754, 34.773470808252874], [-77.359799174112, 34.773343946391634], [-77.3598793895339, 34.773324288888055], [-77.36013054447778, 34.77305020783374], [-77.36051875765565, 34.77264998936215], [-77.36064298094577, 34.77252080317057], [-77.36063985581073, 34.77238568242271], [-77.3609729365834, 34.771568431627344], [-77.3609488444553, 34.77150939108705], [-77.36097389948048, 34.77143447716311], [-77.36106961229085, 34.77143548737952], [-77.3615627120552, 34.77116500476053], [-77.36164082738085, 34.77102779356995], [-77.36158920059663, 34.77086564765524], [-77.36143371829729, 34.77068901876633], [-77.36129768848073, 34.770650239991426], [-77.36120313437975, 34.770580104740915], [-77.36112120290414, 34.77045125560615], [-77.36050140868181, 34.769979710615836], [-77.3603953010256, 34.7696379671611], [-77.36035968948738, 34.76959245472753], [-77.36032569442709, 34.769578959844175], [-77.35987151316118, 34.76934941654528], [-77.35954255424386, 34.7690930869356], [-77.35923600725235, 34.768912939479755], [-77.35906476079433, 34.768875472305545], [-77.35864864647331, 34.768784428614914], [-77.35810901457187, 34.76866761019494], [-77.35742738498635, 34.76855774255593], [-77.35697375239381, 34.768450750038554], [-77.35488294574971, 34.76893750871055], [-77.35449436610207, 34.76873597186025], [-77.3526785481643, 34.767938016240656], [-77.35165708586572, 34.76974386943916], [-77.34962049624599, 34.772983815759474], [-77.349007150387, 34.77400645765628], [-77.34908658961021, 34.77496894267614], [-77.34757222082175, 34.77810231197007], [-77.34661814921319, 34.77934444785901], [-77.34419187645452, 34.780846650737715], [-77.34577420290229, 34.782247935918555], [-77.34768053512978, 34.78393600209844], [-77.34958694538629, 34.785624034840986]], [[-77.37302898118118, 34.780829798426446], [-77.37369217831503, 34.77820516083543], [-77.37339474058413, 34.773779267061144], [-77.37341856009925, 34.77352721435996], [-77.37345771988105, 34.77296274207713], [-77.37345777161964, 34.769940669979704], [-77.37345780189888, 34.76917606213168], [-77.37229493117151, 34.768128328056605], [-77.37191502690149, 34.768365025120985], [-77.3715996241254, 34.76852591898513], [-77.37040625341841, 34.76889220160915], [-77.3700137873576, 34.769089445020526], [-77.36937320595659, 34.769352971404935], [-77.36876943948813, 34.76920998628495], [-77.36826102039166, 34.76876429987132], [-77.36790525580408, 34.76868245117586], [-77.36797381969357, 34.76837562358496], [-77.36818847428887, 34.76825982484178], [-77.36836860337533, 34.7675970035205], [-77.36841287480306, 34.76741084203815], [-77.36818594607956, 34.766813328507105], [-77.36816880984371, 34.76678765930531], [-77.36768955373893, 34.7663134414576], [-77.36747836022246, 34.7661826046045], [-77.36677819772815, 34.765720373905175], [-77.36672279943834, 34.76560465930865], [-77.36724368178136, 34.7647648427218], [-77.36728907522897, 34.76379394724797], [-77.36747534858898, 34.7637274887152], [-77.36859826796085, 34.763183667616886], [-77.36880699036996, 34.7632818745481], [-77.3692695512322, 34.763236942353466], [-77.36928073054797, 34.76275454881874], [-77.36993243308605, 34.762350500861054], [-77.36993147443886, 34.762126332312235], [-77.37132022264308, 34.76190529883698], [-77.37151349485042, 34.76198075222712], [-77.37353275855203, 34.762769033581016], [-77.37403219733335, 34.76284386906368], [-77.37432456871552, 34.76243929161748], [-77.37558730769277, 34.76097400849712], [-77.37735003612653, 34.75955280014056], [-77.37853666344925, 34.758232926412575], [-77.38319248794099, 34.7571029293741], [-77.3855978297088, 34.75780322540848], [-77.39023817018497, 34.759381048893935], [-77.39256515801414, 34.76017225545523], [-77.39450196711664, 34.76038604585279], [-77.39593088475354, 34.759143480154094], [-77.39823795956526, 34.75830542788306], [-77.40008213459572, 34.75753491910898], [-77.40202801662863, 34.758038994098804], [-77.40283693012047, 34.76014175900829], [-77.4038097411161, 34.76086711260704], [-77.4037773911122, 34.761887084119174], [-77.40600988406415, 34.766898426705374], [-77.40599298841354, 34.767098704335424], [-77.4099379832733, 34.76545448855], [-77.41005383640575, 34.76408118891606], [-77.40958303199432, 34.76203167749381], [-77.40974793779823, 34.761360659683326], [-77.40988440164841, 34.759549169576026], [-77.41010923371543, 34.75824154650098], [-77.40976313606824, 34.75540086335978], [-77.40970999477956, 34.7550153780436], [-77.40972796626613, 34.75482968862073], [-77.40970534096351, 34.75414781422994], [-77.40917079800269, 34.751491151011685], [-77.40932417203288, 34.75040764761227], [-77.40960368383186, 34.74915558554882], [-77.41161849255337, 34.74754536126317], [-77.41330675832229, 34.749222646567965], [-77.41289501960355, 34.74718321054502], [-77.41212761072929, 34.74578817839537], [-77.4102749082437, 34.74388926630267], [-77.41048232889193, 34.74186686286509], [-77.40896938758439, 34.73898227683108], [-77.40753279429083, 34.73978599795054], [-77.40578706940246, 34.74022505751899], [-77.40500830215899, 34.74164458968219], [-77.40324633103498, 34.74102844817601], [-77.40171847136946, 34.740314717701835], [-77.40089113658587, 34.74030429590516], [-77.40068503789894, 34.7405629520163], [-77.39820143672932, 34.740734064334895], [-77.39689487508886, 34.740352480387614], [-77.3948501661069, 34.73960677602243], [-77.39353176637707, 34.739145464680774], [-77.39198358768654, 34.73723090827123], [-77.39183426464265, 34.73615341391941], [-77.39015157187757, 34.73531276364784], [-77.38944325513, 34.735553260292065], [-77.38765505144045, 34.7372172853421], [-77.38749798164076, 34.73830080719018], [-77.3853106403396, 34.74001147275593], [-77.38458109373019, 34.741753561695184], [-77.38631850721589, 34.74632727044599], [-77.38679816646928, 34.746532534483954], [-77.39071525328796, 34.74820872382311], [-77.3908625978342, 34.74835017675013], [-77.39095914733299, 34.74836926757124], [-77.39319314942911, 34.749160075836706], [-77.39499450994052, 34.749218361300834], [-77.39577533617279, 34.749102192802354], [-77.39757247865738, 34.749183944767765], [-77.3980488110065, 34.75010910548359], [-77.39871192084165, 34.74930927888698], [-77.39927738647954, 34.74913108881621], [-77.40125576781807, 34.7478959707569], [-77.4029075234432, 34.750400548880705], [-77.40039579167203, 34.75086257536901], [-77.39984023723602, 34.75115369788633], [-77.39862103866527, 34.751138086737406], [-77.39775572380498, 34.75112001513014], [-77.39615774126605, 34.75112002725767], [-77.39514818965438, 34.75126509096553], [-77.39265650773939, 34.751232505920626], [-77.39271440511533, 34.75081098458155], [-77.39255762840635, 34.751220987961204], [-77.39241319573811, 34.75120349186791], [-77.39012102375239, 34.75090716803852], [-77.38795827545776, 34.749645155800145], [-77.38805590421663, 34.749578936190915], [-77.38790094117158, 34.749594236303274], [-77.38597391645936, 34.747515237249154], [-77.38541529438169, 34.747108673343135], [-77.38450790146368, 34.74620129279445], [-77.37957486581078, 34.74240112854336], [-77.37726775190097, 34.74215416567236], [-77.37524732375873, 34.74087561906292], [-77.37509608256195, 34.74079764406035], [-77.37494014195534, 34.740761598367556], [-77.37265709372602, 34.74036234631845], [-77.36778112930601, 34.74017324927599], [-77.36758430311698, 34.74016307495936], [-77.36746429470341, 34.7401885622237], [-77.36734182450493, 34.740297027928996], [-77.3635426638963, 34.74182050576861], [-77.36229866497787, 34.741865643514245], [-77.36161863848744, 34.74168025954586], [-77.36052503557742, 34.74170044072558], [-77.35993326265199, 34.741761232470715], [-77.35946007317597, 34.741763903127804], [-77.35918012177598, 34.74178555555146], [-77.35871795302168, 34.74182129953249], [-77.3585500270588, 34.74199180542221], [-77.3581944302817, 34.742188853056895], [-77.35810130831968, 34.742414921108185], [-77.35817539525405, 34.74253062379492], [-77.3581187035112, 34.742795760886075], [-77.3579073331421, 34.743210958874556], [-77.35777530383007, 34.74356031936638], [-77.35762241517648, 34.744234998418335], [-77.35737539437721, 34.744589988648315], [-77.35705926520639, 34.74501259785835], [-77.35690234530088, 34.74514231311022], [-77.356712102067, 34.74534330303289], [-77.35660685226875, 34.74542656884945], [-77.35663862710052, 34.74551114539046], [-77.35659080334669, 34.74567246360566], [-77.35657774904746, 34.74586251073012], [-77.35669430595975, 34.74625675208182], [-77.35678390778193, 34.7464184076353], [-77.3568373724965, 34.74654092544702], [-77.35689377025508, 34.74660564247419], [-77.35704395373865, 34.746776242390574], [-77.35722105254325, 34.74697559347649], [-77.35742557871109, 34.74727113863166], [-77.35761632857223, 34.74748121973642], [-77.35781278373001, 34.74776174096974], [-77.35818191469298, 34.747791937257965], [-77.35862263782872, 34.747927251477634], [-77.35873177746814, 34.74796105836338], [-77.3590606885116, 34.74806174303757], [-77.35931238563258, 34.748024312336064], [-77.35958327070715, 34.74797676881132], [-77.35950307458288, 34.74819696638366], [-77.36008913732971, 34.748376105212756], [-77.36035603143907, 34.74855568103092], [-77.36101892880505, 34.748449337783526], [-77.36150978597225, 34.74889620811774], [-77.36163870838038, 34.74954951717031], [-77.36240636655384, 34.74974578926691], [-77.36376179728688, 34.74949325488292], [-77.36457671452368, 34.75042460833328], [-77.36457858137264, 34.75044192630178], [-77.36456192938975, 34.75057366263263], [-77.3644508701579, 34.752270311976915], [-77.36477456399088, 34.752716277919454], [-77.3644525676343, 34.75316393005532], [-77.36471853877802, 34.75493356809913], [-77.36381887356647, 34.75512231631484], [-77.36370364492514, 34.75569677879136], [-77.36347992136147, 34.756065360278235], [-77.36294976418955, 34.756125785674456], [-77.36259992487557, 34.75590641215694], [-77.36246424080042, 34.75558857220366], [-77.36217976509774, 34.75544112035157], [-77.36198005936065, 34.755339435179636], [-77.36187887428623, 34.75527832776369], [-77.36173475401594, 34.75520135034172], [-77.36158447537133, 34.75511053985278], [-77.36103136415372, 34.75481054032729], [-77.36101197864465, 34.75476242792672], [-77.36098223558857, 34.754649962091975], [-77.36071923620433, 34.75419913319601], [-77.36063042196498, 34.75389081697011], [-77.36062889959184, 34.753874387419906], [-77.36060715229777, 34.75387885642206], [-77.36026879584465, 34.75375714031136], [-77.36008836819045, 34.75360258432415], [-77.36004037690944, 34.75353860625669], [-77.35996287084734, 34.75349508177631], [-77.35982868347894, 34.75346546012976], [-77.35966881969388, 34.75343017005446], [-77.35954729393873, 34.75340307302682], [-77.35947639249109, 34.753381066056654], [-77.35935021721139, 34.75333549951294], [-77.35930200287547, 34.75331808757398], [-77.3591909514015, 34.753282669728314], [-77.35918789362984, 34.753405856888385], [-77.35906480712617, 34.753618374564056], [-77.35915202619395, 34.753732791795], [-77.35918730009365, 34.75380054118941], [-77.35922785594731, 34.75383968313456], [-77.35937792845857, 34.753986237464616], [-77.35946696231579, 34.75397966214892], [-77.35956098480928, 34.75403764160312], [-77.35981235095488, 34.7541082278975], [-77.35986761956204, 34.75436268790304], [-77.36005321284387, 34.754457449586525], [-77.36018204211783, 34.75461233318107], [-77.36012376548233, 34.75474697870561], [-77.36011191957374, 34.75493677535709], [-77.36010382743846, 34.75536750664069], [-77.36008635334912, 34.755427671178346], [-77.36005858088956, 34.755495757926], [-77.36011634487602, 34.755568869143566], [-77.36028888662926, 34.75588725070857], [-77.36047138007359, 34.755966709522234], [-77.36057626210699, 34.75604788085761], [-77.36100681525396, 34.75634333626463], [-77.36107151167083, 34.75640524904031], [-77.36152259124216, 34.75662393147876], [-77.36159661772206, 34.75665981942422], [-77.36166341170515, 34.75662676941891], [-77.3616330387282, 34.75667747602154], [-77.36212966540714, 34.75688704993807], [-77.36240441004352, 34.756845279983224], [-77.362722215727, 34.756909382398746], [-77.363216191053, 34.75724695930445], [-77.36326051086353, 34.75726468987337], [-77.36329404105888, 34.75725883104806], [-77.36389520795312, 34.757288019367614], [-77.36440300570618, 34.75764533095604], [-77.36443182200874, 34.757649135824046], [-77.3644506123964, 34.757653359735926], [-77.36464059115991, 34.757702404604174], [-77.3650548669938, 34.75771260035968], [-77.3651220700157, 34.75779219415274], [-77.3655074389405, 34.75788469124481], [-77.3656597644566, 34.75783856525858], [-77.36587172082726, 34.75792631786063], [-77.36627458111653, 34.757930368980986], [-77.3674017085988, 34.7581095756595], [-77.36744223416405, 34.758054728057104], [-77.36752240240895, 34.75805133627922], [-77.36760523542965, 34.75809702922423], [-77.37009850488214, 34.75801609366199], [-77.37071785529929, 34.759270108352105], [-77.36960723174997, 34.75970834980516], [-77.36883992892736, 34.760340966504955], [-77.36810142852995, 34.760475901561705], [-77.36803448879337, 34.76052093152193], [-77.36797424333032, 34.76054680526297], [-77.36737250046052, 34.76077706022203], [-77.36729414286349, 34.76080736697984], [-77.3666128673139, 34.76118394604495], [-77.36660988857642, 34.76118555926008], [-77.36660679832318, 34.76118666609218], [-77.36660205880514, 34.76119231200269], [-77.3660464157235, 34.76176132505027], [-77.36568898155707, 34.761983881200166], [-77.36539821876792, 34.762586062142375], [-77.36548353565254, 34.76303041641248], [-77.365699552095, 34.76335312322017], [-77.36589450638455, 34.76365795658172], [-77.36608785845283, 34.76408397212751], [-77.36614568362401, 34.76438058782843], [-77.36613609891694, 34.76451014869652], [-77.36601406072059, 34.76470334706973], [-77.36582065611638, 34.764826055936076], [-77.36547665723455, 34.76509695564189], [-77.36537610108948, 34.76515731794535], [-77.36535228570551, 34.7652213591243], [-77.36526889503116, 34.765317463939205], [-77.36497945233515, 34.765650097082265], [-77.36495371198494, 34.76596390773586], [-77.36475169484719, 34.76612960826299], [-77.36467041700806, 34.766249273785505], [-77.36450040450633, 34.76632127412532], [-77.36453544388183, 34.766515340423], [-77.36485729162305, 34.76655494466484], [-77.36505137207403, 34.766561513073206], [-77.36529685408252, 34.76652518163005], [-77.36571419434664, 34.7664664511997], [-77.36571854391428, 34.76646618709994], [-77.36572060885754, 34.76646613302343], [-77.36621765038399, 34.76653381529423], [-77.3663333783776, 34.76656520706514], [-77.366460131032, 34.766606545365], [-77.36688822576728, 34.76686376283713], [-77.36692913955282, 34.76689162605132], [-77.36730480792951, 34.767147391739414], [-77.36742389635023, 34.767228373601355], [-77.36755316499007, 34.76738960598266], [-77.36734994549049, 34.76748305873824], [-77.36725785483277, 34.767486459745754], [-77.36712954881136, 34.76752097177243], [-77.36685235211374, 34.767571941997765], [-77.36668289918468, 34.767570884715845], [-77.36604418884541, 34.76770036863927], [-77.36601789630305, 34.767704554572724], [-77.36599330046036, 34.76773636746382], [-77.36564245739541, 34.768118998137595], [-77.36583072120459, 34.76829624677268], [-77.36602787500891, 34.7685715561282], [-77.3661983493496, 34.76887274871709], [-77.36625295895749, 34.7690515160635], [-77.36656887834297, 34.76923884133549], [-77.36677736321778, 34.769454967963625], [-77.3670935075948, 34.769463799820414], [-77.36764640014391, 34.76968275411154], [-77.36793284673992, 34.769894536082724], [-77.36828090871852, 34.77031110999027], [-77.36878141647577, 34.77072695556671], [-77.36893283460827, 34.7708696807719], [-77.36901524596837, 34.77089790244864], [-77.36906451869297, 34.77099411725121], [-77.36972869431233, 34.77149339089877], [-77.36997557804148, 34.77169763372629], [-77.37060863812998, 34.77221781959274], [-77.37114226925215, 34.772098720689215], [-77.37160253491888, 34.77300054472666], [-77.37113467914958, 34.77447815206665], [-77.37095203937227, 34.77577397341051], [-77.36981826388335, 34.776658885284775], [-77.36968281628809, 34.776693126799344], [-77.36964927623954, 34.77679077952053], [-77.36902418075798, 34.77861076394013], [-77.3689634250661, 34.77878764086259], [-77.36879211462333, 34.779023605162934], [-77.36800645057693, 34.78068962700168], [-77.36771722939639, 34.783041163945086], [-77.37091859123268, 34.781708477315135]], [[-77.47154034353706, 34.739755614140186], [-77.47035782088606, 34.739556656423716], [-77.46951450988566, 34.73933963040967], [-77.46730053387739, 34.73795414695256], [-77.46593941849795, 34.73709753710473], [-77.46454762385025, 34.73553181303677], [-77.46400418422078, 34.73492044332289], [-77.46268122807402, 34.73327213587556], [-77.46248015142808, 34.73282332009455], [-77.46236016886141, 34.73173612400711], [-77.4618942879102, 34.72949626077558], [-77.46178590218253, 34.7284877023732], [-77.46182266701493, 34.72678363701194], [-77.46279471101903, 34.724368220910314], [-77.46309255830504, 34.722878517969356], [-77.46335142249393, 34.72232677772744], [-77.46519329309683, 34.721933643260705], [-77.46626971343903, 34.722087392566515], [-77.46985674645596, 34.722599873351605], [-77.4701012869791, 34.722695377114704], [-77.47029371624518, 34.72267875178677], [-77.47100702531431, 34.72276419164126], [-77.47429572548569, 34.72323395854121], [-77.47503580276138, 34.72336534741328], [-77.47595789185581, 34.72362359296608], [-77.47740983390085, 34.72402313350351], [-77.47899034215946, 34.724919336840074], [-77.4796512568804, 34.725140116682724], [-77.48047692452496, 34.725307936001784], [-77.48305167515298, 34.72696878150011], [-77.4836486266496, 34.72755500027458], [-77.48375616780893, 34.72868335665512], [-77.4844286486692, 34.727817737035615], [-77.48475193949325, 34.7275621914842], [-77.48946576840703, 34.72666954115624], [-77.49104334859099, 34.7266594124847], [-77.49206846902311, 34.72653555164002], [-77.49286752220945, 34.725923004329736], [-77.49318883663746, 34.7241847768833], [-77.49328666449833, 34.723528362888416], [-77.49361800111897, 34.7217137187388], [-77.49432247762468, 34.72005941253338], [-77.49681216113824, 34.718982763573706], [-77.50018732904564, 34.71767863162961], [-77.502634313422, 34.71657491113449], [-77.50306509100247, 34.71639928359788], [-77.50329512167332, 34.71614809146488], [-77.50476664571872, 34.715158389720045], [-77.505632963863, 34.714614453304584], [-77.50585001284355, 34.71470554267443], [-77.50816503917878, 34.71517586070639], [-77.50905655989791, 34.71592250151216], [-77.5098704128599, 34.71659724162949], [-77.51017732142624, 34.717087260888064], [-77.5116999281268, 34.71907989090923], [-77.51178433930836, 34.71936952135924], [-77.51197664680274, 34.719737388412696], [-77.51302813186287, 34.72242193491638], [-77.5156632697304, 34.721320276684885], [-77.51527396143919, 34.72032633368782], [-77.51391075738962, 34.71848052660187], [-77.5130880378102, 34.717328661298914], [-77.5129244481885, 34.71710667068655], [-77.51277150523785, 34.716981096813484], [-77.51167404632201, 34.715843206924795], [-77.50931167972968, 34.71377608171875], [-77.50891135420837, 34.71342579754229], [-77.50871846815363, 34.71325701137488], [-77.50833285785453, 34.713045074431776], [-77.5047710423454, 34.71158425165249], [-77.50418293883, 34.711206684610666], [-77.5034781745181, 34.71109943015865], [-77.501819905026, 34.711162427095864], [-77.49876043306715, 34.712231107150856], [-77.49684826704504, 34.71223112843899], [-77.49416741683903, 34.71296320710554], [-77.49331394509105, 34.713337917865395], [-77.4905813679616, 34.71395524020342], [-77.48833070434344, 34.71845491933948], [-77.48769056450801, 34.719645214586194], [-77.4871079298756, 34.720238191453824], [-77.48618560263387, 34.72026955377959], [-77.48159567247441, 34.72198923264971], [-77.48091707250212, 34.72208734685235], [-77.48055420946464, 34.722013593898275], [-77.48014204655676, 34.72187591008059], [-77.47671677980297, 34.72120865206854], [-77.47573796895809, 34.72093452069745], [-77.47440916466664, 34.72069861276892], [-77.47330641729664, 34.72047619909775], [-77.47253909298244, 34.720366594890265], [-77.4708440666532, 34.720124459691654], [-77.46815227614044, 34.719739894962615], [-77.46591942388787, 34.719420882512345], [-77.46441076869402, 34.719052295157624], [-77.46100570999369, 34.71867955584359], [-77.4605037283494, 34.718651484559906], [-77.46020667083485, 34.7189925687969], [-77.46005125953901, 34.719550962871594], [-77.45941162588625, 34.72284709126525], [-77.45926004888535, 34.72313377724699], [-77.45919713184442, 34.72347913902539], [-77.4594410340672, 34.724092702046335], [-77.4593644571647, 34.72764207351032], [-77.45966378914787, 34.73042743827372], [-77.46006548288625, 34.73235870211408], [-77.4614574496156, 34.73485904636604], [-77.46275654991737, 34.73627955792292], [-77.46516930264475, 34.73861258680779], [-77.46538020674456, 34.73903237555048], [-77.46567318853303, 34.73904782164935], [-77.46839465212695, 34.74106905951217], [-77.47013017636921, 34.740344453844955]], [[-77.52419267323305, 34.717753823120376], [-77.52339695123831, 34.7156925980422], [-77.52283002725552, 34.714751064034246], [-77.52248886998241, 34.71390109682453], [-77.52265753988331, 34.71125056828241], [-77.52070430918944, 34.70724803443764], [-77.51977791144142, 34.705309713740405], [-77.51854098149815, 34.703583144176406], [-77.51741693974058, 34.70223484825681], [-77.51615531212191, 34.70060324720765], [-77.5158549576605, 34.70029661232955], [-77.51340061770591, 34.69982554478818], [-77.51139998795522, 34.698613957856104], [-77.51139724501186, 34.69861304355641], [-77.51130565188798, 34.69858251038737], [-77.50907947062102, 34.697840398626745], [-77.50903940775761, 34.697838281552684], [-77.50683068777275, 34.69731854135069], [-77.50491580472891, 34.698829822874934], [-77.50426153511552, 34.700430051994914], [-77.504181446187, 34.70080906861225], [-77.50380767825945, 34.70127010378213], [-77.50281925525226, 34.70256920209525], [-77.5022306862156, 34.70309040739498], [-77.50128004715347, 34.70349782208295], [-77.49912714703586, 34.70400072267902], [-77.49716584439763, 34.704046473687946], [-77.49599524180067, 34.704046490434486], [-77.49549377026219, 34.70404648928667], [-77.49400444496209, 34.703964041832876], [-77.49174578659111, 34.70390512207086], [-77.49094859616136, 34.70376943066975], [-77.48973658436354, 34.7035792844577], [-77.48633530912446, 34.70199101783584], [-77.48216749888662, 34.70022292351422], [-77.4817536141319, 34.70010365907672], [-77.48126621616305, 34.69997478411085], [-77.47716374725428, 34.69824511094974], [-77.47704708003026, 34.698165713309976], [-77.47307392664291, 34.697330116063355], [-77.47236302651291, 34.69711707067085], [-77.47118055788523, 34.69704472357432], [-77.46908262411733, 34.69679021418101], [-77.46741139378975, 34.69651163433258], [-77.46657915751912, 34.69539508791307], [-77.46488366562268, 34.69379544763987], [-77.46383668976588, 34.692968933111025], [-77.46344111250488, 34.69250987235529], [-77.46087296635812, 34.68792234169738], [-77.46055313795031, 34.68719718435271], [-77.461316285262, 34.684105136430134], [-77.46142982042181, 34.68364506554827], [-77.46140141448346, 34.68333419375325], [-77.46129946309091, 34.683014383509544], [-77.46050962485391, 34.6819469342925], [-77.45999216918699, 34.68095379105866], [-77.4599325623361, 34.680798772526515], [-77.45959696964684, 34.6805271740471], [-77.45869055134543, 34.67888630268364], [-77.45836240482056, 34.678292225949505], [-77.45790110696078, 34.67745707439816], [-77.45749172168254, 34.67669327956845], [-77.45758766972502, 34.675558935827404], [-77.456366053532, 34.67451067279105], [-77.45631778857549, 34.67446990392613], [-77.45629441944651, 34.67445053543488], [-77.45622669356526, 34.67439440255919], [-77.45566674677748, 34.67315237933042], [-77.45364255239332, 34.67225258283571], [-77.45130080396652, 34.67439684517693], [-77.45076050624412, 34.674961147299165], [-77.45044216105957, 34.67593266764547], [-77.45034214570062, 34.67614712852661], [-77.45005165379894, 34.67719086850313], [-77.44953002386899, 34.67785561554971], [-77.44927754839475, 34.67815902782106], [-77.44900746041915, 34.67837690535403], [-77.44807528426858, 34.67897749974355], [-77.4473169249155, 34.67917010988292], [-77.44657849967494, 34.6799096357546], [-77.44406052165559, 34.67981002838965], [-77.44404726158159, 34.67980719045069], [-77.44404524556315, 34.67980703594528], [-77.44403905953571, 34.67980774358556], [-77.4423576354674, 34.680036162085486], [-77.44208663309382, 34.6802379607826], [-77.44171679675199, 34.68077732741692], [-77.44130956665808, 34.68108434067168], [-77.4412130125543, 34.681155967139], [-77.4410477564405, 34.68130973141683], [-77.44098423783308, 34.681083173035795], [-77.44002325874722, 34.68070664121144], [-77.43994945419657, 34.68067626466294], [-77.43981225398315, 34.680679653738956], [-77.43930538811232, 34.68068774052123], [-77.43910024647049, 34.68069330506155], [-77.4389808574992, 34.68070211325963], [-77.43887745423118, 34.68070298313203], [-77.43878952394076, 34.68066022000288], [-77.43870569595148, 34.68054578279857], [-77.43855917910471, 34.68040216793534], [-77.43850888083304, 34.68033097919023], [-77.43829688126254, 34.68003092617986], [-77.43823755021629, 34.67994899378783], [-77.4379387011928, 34.67967621038443], [-77.43771397905152, 34.679543860967925], [-77.4374746136318, 34.67953140212631], [-77.43727350519626, 34.67967306886429], [-77.43702475601259, 34.67971148093934], [-77.43671018892128, 34.679777276052654], [-77.43666303730414, 34.67976235478193], [-77.43639725236991, 34.679665701073084], [-77.43612127836971, 34.67956231339814], [-77.43609780773639, 34.67955191495953], [-77.43581402408167, 34.67946684811426], [-77.43555864095342, 34.67939029379106], [-77.43551921344714, 34.67937847491284], [-77.43547886092759, 34.67936389754891], [-77.4353735502379, 34.6793282660541], [-77.43526167795201, 34.6792490599974], [-77.43525363378457, 34.679234719986894], [-77.43532788891181, 34.6790130618099], [-77.43538282163544, 34.67901189820553], [-77.43562814184322, 34.6790018842299], [-77.43578570638269, 34.6790137293935], [-77.43594243645327, 34.679022890612494], [-77.43624424802393, 34.6790443862158], [-77.43625634063741, 34.67904524747711], [-77.43626267163629, 34.67904569836851], [-77.4362671798978, 34.67904163729782], [-77.43627870548168, 34.67903000174701], [-77.43647729533691, 34.678835588985386], [-77.43655994113558, 34.67878390634778], [-77.43674298155764, 34.67847038131656], [-77.43679841094024, 34.678425993901236], [-77.43679719628986, 34.67838840816346], [-77.43688629381299, 34.67832995974395], [-77.43686086304626, 34.67806281018116], [-77.43692580936938, 34.677420666979685], [-77.4364484772972, 34.67727332560291], [-77.43628603314676, 34.67709154959756], [-77.4362188185141, 34.6768230174145], [-77.43608422800317, 34.676317436664775], [-77.43597836640679, 34.67603060520326], [-77.43583305729541, 34.675815030481616], [-77.43521382443934, 34.674896364772756], [-77.43464165596542, 34.675398363816214], [-77.43457127467632, 34.675725219431484], [-77.43450697911325, 34.67591032053848], [-77.43448283391771, 34.676135958689606], [-77.43444931181108, 34.676449209060834], [-77.43428785791275, 34.676736317525766], [-77.4341460546415, 34.6769022075016], [-77.43406713120599, 34.676951909020964], [-77.43389498465092, 34.67724074321904], [-77.43383395324767, 34.677318482249326], [-77.43381699973311, 34.67734618424387], [-77.43370671504549, 34.67742530308892], [-77.4335256687937, 34.677562265613005], [-77.43342201286504, 34.67754414770358], [-77.43342088314871, 34.67739095005224], [-77.43336934781914, 34.677189624200906], [-77.43337436263194, 34.67711764747672], [-77.43331498218288, 34.6770308039415], [-77.43317683758283, 34.67656323538341], [-77.4331257347815, 34.676328652070794], [-77.43310903195535, 34.67613328683422], [-77.4331009037769, 34.675977617854386], [-77.43306907442641, 34.67566593216954], [-77.43305203547483, 34.67546663611474], [-77.43303470866883, 34.675263959609886], [-77.43322838031261, 34.674904080367924], [-77.43292291023883, 34.67395627846766], [-77.4327529808445, 34.67380591289318], [-77.4306854522275, 34.67291846045363], [-77.43065382698853, 34.672940856818215], [-77.4294088893537, 34.673822503237815], [-77.42800710033444, 34.67578689993975], [-77.42798745452485, 34.67642534448271], [-77.4283167941087, 34.67744316925659], [-77.42923403996922, 34.67784834974538], [-77.42930174178304, 34.67792483232563], [-77.4293499759493, 34.678020082317566], [-77.42983259635801, 34.678596025394846], [-77.42996915784894, 34.678795721987434], [-77.43008407964021, 34.678937442972966], [-77.43018116485989, 34.679004060421036], [-77.43065628008331, 34.67914499420645], [-77.43076099010072, 34.67921465132767], [-77.4308589843273, 34.6791849507113], [-77.43108205910616, 34.67921225643374], [-77.43110358001009, 34.67921093969689], [-77.43129837926813, 34.67932336861995], [-77.43136437274865, 34.67934382142594], [-77.43143560325696, 34.679448385570666], [-77.43131504097238, 34.67951434063145], [-77.43128062049699, 34.67950039423839], [-77.43125333116181, 34.67952440245434], [-77.43108353679436, 34.679552087507666], [-77.43084906088865, 34.67966254130641], [-77.43061930023238, 34.68005320068809], [-77.43054179447857, 34.68011414060374], [-77.43052595589289, 34.68013614130224], [-77.43048235139884, 34.680177755395334], [-77.43028766128081, 34.68019162348887], [-77.42986749797748, 34.680088210778315], [-77.42963431162121, 34.67979674182365], [-77.42947012405354, 34.679640084226975], [-77.42940774420585, 34.67946260189367], [-77.42928739680272, 34.67911633388355], [-77.42939048662886, 34.678780556835], [-77.42915055402325, 34.6781369018094], [-77.42826603586293, 34.67793679562336], [-77.42799513755855, 34.67770115541321], [-77.42752574955854, 34.67777333125247], [-77.42684183096817, 34.67725813572085], [-77.42541303926195, 34.67776111195589], [-77.42485495388408, 34.67834229985617], [-77.4240001616661, 34.67822113031792], [-77.42322744128523, 34.67778171724281], [-77.42184185519235, 34.67682268012729], [-77.41960735682389, 34.67572150155804], [-77.4193860969164, 34.67341619639322], [-77.42116761610036, 34.6723120053643], [-77.42136403815161, 34.66963549910274], [-77.42140621354963, 34.668143689835034], [-77.42058416153674, 34.66692459455167], [-77.41849663524285, 34.666018392491516], [-77.41814314866257, 34.66557005576044], [-77.4169475463701, 34.66405363074214], [-77.41617253340507, 34.66372633505813], [-77.41291078216823, 34.66182670306392], [-77.41280774612346, 34.66179724777431], [-77.41278797064432, 34.66173621167965], [-77.41263536554862, 34.66162505163175], [-77.41011858923576, 34.659542402799424], [-77.40912859952869, 34.65897850675353], [-77.40789806075786, 34.65888458119216], [-77.40751533302362, 34.658806631894166], [-77.40715151222032, 34.65773711420701], [-77.40702079064738, 34.65747055132365], [-77.40715918213093, 34.65618255738836], [-77.40773146169431, 34.6549523825836], [-77.40870195749022, 34.65403821221629], [-77.41396122363689, 34.65028322700915], [-77.41599822736747, 34.64793434948154], [-77.41627566900297, 34.64597422928658], [-77.41832909034034, 34.64379437919394], [-77.41902910868816, 34.64223632946918], [-77.4197412319524, 34.64065110290568], [-77.42020372910784, 34.639494763645104], [-77.42126451227324, 34.63864580536702], [-77.42302473476289, 34.63727510463043], [-77.42450644368849, 34.63772230759808], [-77.42628863602897, 34.63801981281934], [-77.4277742363343, 34.63925784873136], [-77.42830578695046, 34.639593779625685], [-77.4300720794503, 34.64071006632247], [-77.43085165242229, 34.64182230507874], [-77.431626218037, 34.642467779929746], [-77.43217244718147, 34.64292294263654], [-77.43322443529149, 34.643799558966776], [-77.43387994630105, 34.64337072469524], [-77.43517568528455, 34.64225668880064], [-77.43648317751729, 34.64033441809108], [-77.43655891439992, 34.640262938959815], [-77.43663464939607, 34.64017443656126], [-77.43669684875925, 34.639928700651836], [-77.43792747623556, 34.63685201999451], [-77.43830142012098, 34.63591717673215], [-77.43900175003074, 34.63416652806331], [-77.43917088586403, 34.63374371733406], [-77.4392875709552, 34.63351041921352], [-77.43933858787877, 34.63304346755867], [-77.43996184177121, 34.631542774867725], [-77.44124112074851, 34.630718232845666], [-77.44234439131081, 34.6310098852651], [-77.44318691017295, 34.63199709457721], [-77.44537448938031, 34.63177529431393], [-77.44644952799354, 34.63166644776441], [-77.4467392041773, 34.631696518408845], [-77.4496568068904, 34.631403268796554], [-77.45076172758789, 34.6310235097703], [-77.45162098645258, 34.63066637388651], [-77.45347861774624, 34.629464535346166], [-77.45673803654348, 34.627501110218816], [-77.45787239020498, 34.626267466556925], [-77.45869972941307, 34.62502142263263], [-77.45913244582555, 34.62338358597941], [-77.4603613237002, 34.621593259985744], [-77.46153963899934, 34.619270579157366], [-77.46395001100636, 34.61774410384671], [-77.46406718207226, 34.61767714827087], [-77.46439981963061, 34.617487066178896], [-77.46435619913602, 34.617087952433174], [-77.46453054704958, 34.61536177680306], [-77.4638431005622, 34.61469170675177], [-77.46356554111844, 34.614396753914626], [-77.46274955890507, 34.61336269120867], [-77.46206518282605, 34.6125736187055], [-77.46204682615891, 34.612250013939956], [-77.46203326906317, 34.612010903975836], [-77.46194293145395, 34.610418378245186], [-77.46188988427078, 34.609483298433], [-77.46188136470984, 34.60934305592923], [-77.46198990862415, 34.609007615830855], [-77.4620274254151, 34.606347206147845], [-77.46279788852407, 34.60484598393422], [-77.46417644977416, 34.6032193556818], [-77.46541599943012, 34.60242614802909], [-77.46700061049253, 34.60136122289591], [-77.46749282711436, 34.59997414406811], [-77.46791875162478, 34.598757732982506], [-77.46824454984333, 34.59684152843744], [-77.46787455064543, 34.59581609868408], [-77.4677645414931, 34.59462759003782], [-77.46814910599261, 34.59278355156183], [-77.46729792148196, 34.59155558343298], [-77.46754975700017, 34.590000348352504], [-77.46832815381671, 34.58696120309813], [-77.46900973419085, 34.58662947528667], [-77.47184493919096, 34.58516286978619], [-77.47244765596326, 34.58523936471944], [-77.47412692796493, 34.585168717254795], [-77.47553108187662, 34.585124837735194], [-77.47646473934816, 34.584852691307795], [-77.47675847156097, 34.58441742151519], [-77.47785093460664, 34.582860243179624], [-77.47831395160759, 34.58171923421018], [-77.47863011556801, 34.58092872873397], [-77.47865359984024, 34.580663690772354], [-77.47888704187753, 34.58017395787353], [-77.47897330262542, 34.577876424683346], [-77.47847817975259, 34.575647736712355], [-77.47837327865768, 34.575093457217136], [-77.47829033034293, 34.574430531040335], [-77.47818639807932, 34.57366967965784], [-77.47811687039871, 34.57304406176097], [-77.47828451030445, 34.572164500075395], [-77.47816020496248, 34.57058189378201], [-77.47980134426732, 34.56877704255222], [-77.479801425025, 34.56867875594966], [-77.47991087848918, 34.56856790385499], [-77.48007468241764, 34.56858767090395], [-77.48342770469887, 34.56746996302024], [-77.48374023528315, 34.567201312683515], [-77.48404881827784, 34.56608676322463], [-77.48382242034586, 34.565130782941665], [-77.48377777237775, 34.56468700243915], [-77.48277593409975, 34.56228745965279], [-77.48282021893137, 34.56200617280274], [-77.48405048403579, 34.560256073875436], [-77.4840746720965, 34.56003206110216], [-77.48413079229513, 34.55867747899224], [-77.48332170209324, 34.557523874133324], [-77.48322433965576, 34.557414079937345], [-77.48301666944259, 34.55741716205], [-77.481997399513, 34.5589161651957], [-77.48170038778674, 34.559371706587136], [-77.48201532611293, 34.55954411726935], [-77.48166382523625, 34.55962367595635], [-77.48166378556392, 34.561898397537924], [-77.48050872413697, 34.56266637218636], [-77.47859641336785, 34.5637703330524], [-77.47817106208706, 34.563600189358965], [-77.47761560081207, 34.56349263832994], [-77.47585985687381, 34.562770472609074], [-77.47417873128487, 34.562988659535044], [-77.47335692928303, 34.563946744550066], [-77.47328734486162, 34.56472860411387], [-77.47259162249695, 34.5661563546822], [-77.47254356620743, 34.56682949432197], [-77.472452212678, 34.567921321841226], [-77.47238122275174, 34.568560108804164], [-77.47212716381146, 34.570845838252374], [-77.47201993800357, 34.570998991256296], [-77.47022385373728, 34.572760018091934], [-77.46863410796857, 34.573441357409], [-77.46704140142683, 34.5741239149972], [-77.46678344826613, 34.574359182077444], [-77.46608253517098, 34.57502711420451], [-77.46617202505786, 34.575622633659435], [-77.46625252655738, 34.57632530984668], [-77.46566961783991, 34.57796769629234], [-77.46558269034068, 34.57874504261945], [-77.46533513171404, 34.58095917637771], [-77.46532356066638, 34.58177318242938], [-77.46520672193328, 34.58312405628972], [-77.46522018978524, 34.58327979574408], [-77.46514758030251, 34.58337102171866], [-77.46506974658294, 34.58345319810395], [-77.46410208743066, 34.584475515246154], [-77.46343245873373, 34.585151019839046], [-77.4633859816259, 34.58523210840549], [-77.46332334294574, 34.58529824058515], [-77.46017763166226, 34.588619436831785], [-77.45977606764238, 34.588923941359745], [-77.45928145746075, 34.58940578235787], [-77.45812122638661, 34.590822404264756], [-77.45728013283104, 34.59145388624009], [-77.45701417552459, 34.59167379043149], [-77.45681019679527, 34.59167751485594], [-77.45666499851669, 34.591744234687425], [-77.45533424642854, 34.59232469999559], [-77.4549677384304, 34.59262705903332], [-77.45406370452747, 34.59384856812308], [-77.45447500045766, 34.594422802382205], [-77.45456624894541, 34.59444373196794], [-77.45454890539624, 34.594527434654566], [-77.45446839116096, 34.59464281184031], [-77.45437339717417, 34.5945470674863], [-77.45341920448482, 34.59465034264565], [-77.45180575158732, 34.59596972398767], [-77.4518390032408, 34.59605669149946], [-77.4517155720434, 34.59610734151091], [-77.45149441066506, 34.596239268162876], [-77.44966012623736, 34.59627930635248], [-77.44893720044574, 34.59570910682641], [-77.44838649211894, 34.59546797904328], [-77.44727721787791, 34.59525491961794], [-77.44641582100982, 34.59513511416986], [-77.44512128920793, 34.59492221920041], [-77.44509721277491, 34.59491894815031], [-77.44505863702469, 34.59483072096904], [-77.4449964682373, 34.59490069067047], [-77.44446924945554, 34.59477253332472], [-77.44440110651388, 34.59475835464539], [-77.4444373022667, 34.59470496669595], [-77.44477991944058, 34.59428107004128], [-77.44488246496643, 34.594186983148134], [-77.44523938272593, 34.59374688239686], [-77.44559317177789, 34.593310625890666], [-77.44643959607569, 34.59219445377621], [-77.44674324989873, 34.59179561424155], [-77.44668455559642, 34.591522343342874], [-77.44668228836044, 34.591152062550414], [-77.44538307378835, 34.59079336055318], [-77.44470984789996, 34.59046530848829], [-77.44460801009176, 34.59028990879403], [-77.44418728476771, 34.59024113871068], [-77.44392136342285, 34.58974092594413], [-77.44386308569918, 34.58950150546592], [-77.44370935282598, 34.58946108005719], [-77.44367439534632, 34.589200319344215], [-77.44405658083167, 34.58856165557834], [-77.44470855706875, 34.587965973752105], [-77.4453566320604, 34.58737384438567], [-77.44614346954414, 34.58656135179266], [-77.44785930583213, 34.585031092153955], [-77.44894288646645, 34.58392779712551], [-77.44939689845702, 34.582693808052255], [-77.44919111508595, 34.58128613417334], [-77.44785499656089, 34.57716777290027], [-77.44758823532102, 34.576448995106155], [-77.44748714461028, 34.57617656960721], [-77.44683474278943, 34.57517259195983], [-77.44560618480048, 34.57305194827767], [-77.44511354400477, 34.57267834590442], [-77.44289288820713, 34.57004770866316], [-77.44232797624747, 34.56928813248811], [-77.44154667801598, 34.56773988657446], [-77.44038614815082, 34.56486619680722], [-77.43952580104293, 34.56374124803605], [-77.43741813702964, 34.56169957594241], [-77.4356836436037, 34.56090023867177], [-77.43524060527875, 34.5603597801913], [-77.43402998533884, 34.55904700892664], [-77.43263624457273, 34.558534445127705], [-77.43208851505587, 34.558189466383375], [-77.43157797157384, 34.5580972026176], [-77.43112219718105, 34.5558070761975], [-77.42893642856579, 34.55549234644494], [-77.4287039280452, 34.55536658257474], [-77.4284850070558, 34.55514765639134], [-77.42783341957197, 34.55303328899206], [-77.42578445439344, 34.552446981728295], [-77.42500781662123, 34.55225358696313], [-77.42339747864652, 34.55166248512329], [-77.42263303131026, 34.55083070908914], [-77.4213260388555, 34.55137664966491], [-77.41948217934163, 34.55165807328644], [-77.41900753644418, 34.553120722722255], [-77.41919777328792, 34.55340015330735], [-77.41948261166361, 34.55396981762542], [-77.42177090225825, 34.55365137529886], [-77.42063860994458, 34.55628171746166], [-77.4213062897723, 34.55761696083047], [-77.42118144409906, 34.55803358485813], [-77.42105902880941, 34.5580744194935], [-77.42088453495357, 34.55813262363951], [-77.41948326011435, 34.557396841222314], [-77.41874323351826, 34.55915425491577], [-77.41790791460068, 34.55904469749403], [-77.41719055997676, 34.559403317762374], [-77.41693187778483, 34.5595677372823], [-77.41633236973738, 34.55979822577991], [-77.41576272661396, 34.5597688606156], [-77.41396274688942, 34.55980025519866], [-77.41318095502758, 34.559272340250374], [-77.41197681762728, 34.55963175894139], [-77.41132736343849, 34.559624729059536], [-77.41023040190322, 34.55948355912067], [-77.41002962814898, 34.55944368289119], [-77.40997538260525, 34.55946191681787], [-77.4087902244292, 34.55932906825456], [-77.40845394500087, 34.55930315178476], [-77.40781875980025, 34.55914717734294], [-77.40759390889548, 34.55909290947076], [-77.40687825456254, 34.55887910036269], [-77.40646584044455, 34.55877331921773], [-77.40527232783435, 34.558501117390584], [-77.40444715617961, 34.5559999372511], [-77.40464107847859, 34.55519563239475], [-77.40540761146477, 34.553273290865036], [-77.4062336213502, 34.55087452190736], [-77.40806657625318, 34.54790776615575], [-77.40812687995775, 34.54520138356389], [-77.40857064457592, 34.54391756068227], [-77.40751539228698, 34.54243024248], [-77.40800346799699, 34.541431279271215], [-77.4094121856783, 34.539878616364014], [-77.41024843412066, 34.537765417388286], [-77.41097910607321, 34.539652303850794], [-77.41168620054492, 34.54250495473171], [-77.41161994621041, 34.54347716309525], [-77.41361867638486, 34.54539638033706], [-77.41358046215456, 34.5471114047851], [-77.41517690615053, 34.548124470807444], [-77.41633061074144, 34.54806836798159], [-77.4178875180782, 34.54816749907329], [-77.42011133352896, 34.548885742242746], [-77.42263256159265, 34.54872297151901], [-77.42379497808113, 34.54903218638303], [-77.4248415123601, 34.54989667965421], [-77.42578369577912, 34.54954338387273], [-77.42652453459948, 34.54943629047739], [-77.4279715149186, 34.5494666794389], [-77.42893488895956, 34.5503656228486], [-77.42990211791741, 34.55050339879628], [-77.43405248929591, 34.54966942922942], [-77.43523663863996, 34.54984956824857], [-77.43617183102737, 34.549631050368625], [-77.43806598205737, 34.55036537195218], [-77.44060313941604, 34.551007236318306], [-77.4415391490506, 34.55124400308201], [-77.44229266969934, 34.55056653813865], [-77.44752187904328, 34.54934024611735], [-77.44784009151371, 34.549294914304156], [-77.44824705058612, 34.5493309251034], [-77.44883144844532, 34.5488076369676], [-77.44883114252964, 34.54773835339173], [-77.44957856854269, 34.543783229076915], [-77.44943043657987, 34.541927300345804], [-77.44889159803107, 34.53869878689779], [-77.44895738261638, 34.53807817248585], [-77.44889159442607, 34.5374930067977], [-77.44889166678121, 34.53472716610298], [-77.44935433635821, 34.53410310353659], [-77.4488094060517, 34.53369033707372], [-77.44830795324106, 34.532457853104276], [-77.45093172553284, 34.53208105934446], [-77.45119529358476, 34.53213351243554], [-77.4524619078381, 34.533653180577076], [-77.45293567914865, 34.53442655398028], [-77.45428640625451, 34.53438301266076], [-77.45677663867994, 34.53537907413834], [-77.45965243212463, 34.53652945398443], [-77.4601134682899, 34.53671385548216], [-77.46051266879881, 34.53687353704146], [-77.46332504075022, 34.53776371615491], [-77.46675391629977, 34.53868667327317], [-77.47201972295053, 34.53473734477655], [-77.47255319865697, 34.53430090112864], [-77.47314532189841, 34.533537384514126], [-77.47672795222994, 34.53184241900772], [-77.47949612174241, 34.53024333385159], [-77.4800857499602, 34.5300148367168], [-77.48083305793725, 34.529801019043084], [-77.48536797308327, 34.52782680127433], [-77.48945686519528, 34.526709941209816], [-77.48893544646768, 34.52480666558805], [-77.48743444385157, 34.51932689748639], [-77.48670313911046, 34.516656691433724], [-77.48460598430349, 34.51795408068919], [-77.4810867721252, 34.51900583965803], [-77.47888289170558, 34.51992765753232], [-77.4815272571804, 34.52443210537363], [-77.4795492483645, 34.52500283302042], [-77.47843053998895, 34.52580258736996], [-77.47779356942658, 34.52652653135136], [-77.47635005491998, 34.52687222726418], [-77.47471425592181, 34.52740768599018], [-77.47326620889936, 34.527923351717966], [-77.46872261333876, 34.531297526015834], [-77.46817286102308, 34.532174630885095], [-77.46761192577267, 34.53341738022873], [-77.46685447982986, 34.53403243507948], [-77.46536247321907, 34.533743356370614], [-77.46477357212606, 34.53317944515308], [-77.4630000486637, 34.53212678827651], [-77.46300606519645, 34.52966621347114], [-77.46176242179065, 34.52773238232436], [-77.46099834256371, 34.52458147739372], [-77.46238970224262, 34.5214242495392], [-77.46195039258097, 34.52011563002339], [-77.46200304324022, 34.5180390510872], [-77.46176369518807, 34.51708149970853], [-77.46160053039924, 34.51666762229215], [-77.46037677093517, 34.51569462981685], [-77.45970379791234, 34.5152203220076], [-77.45950439256113, 34.51513010448481], [-77.45927023825915, 34.51485796275605], [-77.45854162061956, 34.51480339203119], [-77.45646192137369, 34.514439814491325], [-77.45398996911547, 34.51487903190939], [-77.45389208409259, 34.51489361626814], [-77.45372664140828, 34.514916738966306], [-77.45018739883443, 34.515498074402046], [-77.44840042976796, 34.516324178075976], [-77.44687956573301, 34.51582895385879], [-77.4426444601605, 34.51580557593438], [-77.44213167068465, 34.515858638641596], [-77.44167615594634, 34.51591001067004], [-77.43974224909118, 34.51638151181582], [-77.43896317284052, 34.51718100616815], [-77.43846306150911, 34.51774597975534], [-77.43602934708787, 34.520191538832464], [-77.43587750530494, 34.52038314287519], [-77.43575084133323, 34.52049222021367], [-77.43327224310322, 34.52316795969613], [-77.43027760465876, 34.52455192004604], [-77.42960814924628, 34.52324874007605], [-77.4294107428955, 34.523246896246405], [-77.42929796092469, 34.52322290956979], [-77.42933954091379, 34.52328758688791], [-77.42935269709001, 34.523320877736374], [-77.42908486796527, 34.525105459265816], [-77.42836796949466, 34.52538684280039], [-77.42778858527957, 34.52561425181292], [-77.42740095982103, 34.52576639008068], [-77.42695707166908, 34.526057617403126], [-77.42694284211116, 34.52611363552026], [-77.42680608134748, 34.52659206561782], [-77.42648164231997, 34.52681965228832], [-77.42648097052276, 34.52694675165185], [-77.42695420463272, 34.5270603380268], [-77.42695751432026, 34.52706858067601], [-77.42698923270576, 34.52706630739684], [-77.42776419592958, 34.526718888138404], [-77.4281096768133, 34.526617698157814], [-77.42936338514511, 34.525393602384014], [-77.42999908219717, 34.525549679110085], [-77.43348630336317, 34.525983968148616], [-77.43558396731609, 34.52808240481929], [-77.43578854860797, 34.52823111955177], [-77.43913661903318, 34.529429513025775], [-77.44126351770343, 34.53135654231898], [-77.4417781147443, 34.53199508094334], [-77.44300301169653, 34.53422780177208], [-77.44324878719827, 34.53498681852611], [-77.44324688296402, 34.5359574056883], [-77.44398628082246, 34.5387976718971], [-77.44427741808343, 34.54042975208705], [-77.44434405271186, 34.54070472734461], [-77.44418198515912, 34.5410636612053], [-77.44386451940179, 34.54273288387662], [-77.4435400617648, 34.54493994940801], [-77.44153662510779, 34.54560775124497], [-77.43996039487043, 34.54499668070961], [-77.43523524496375, 34.546100763413776], [-77.4336935469507, 34.54586623221272], [-77.42976845544506, 34.54567204355267], [-77.42893349579661, 34.54567205272487], [-77.42829600900532, 34.54567204276475], [-77.42682708009761, 34.54519716271597], [-77.42392275517983, 34.54482542667243], [-77.42266582302248, 34.54427157449622], [-77.42208608593273, 34.54392373855716], [-77.42092924373233, 34.54322964540707], [-77.41886331029845, 34.54243070245792], [-77.41881551272454, 34.54096724936334], [-77.41886654696461, 34.54000164561834], [-77.41914427806054, 34.53847262886677], [-77.41913353202187, 34.5368621660981], [-77.41977839675579, 34.53446351458288], [-77.41823206870586, 34.5336813469242], [-77.41827335380447, 34.532722309957705], [-77.41780180867265, 34.53207542425009], [-77.41746804454422, 34.531377123668136], [-77.41724575967653, 34.53091207377954], [-77.41712391073104, 34.53065714908346], [-77.4167064091747, 34.52978363049658], [-77.41560369569874, 34.52919061202407], [-77.41623144642014, 34.528789863859906], [-77.41675851132872, 34.527437758505414], [-77.41691591863939, 34.52713629322915], [-77.41833816069607, 34.527001959319776], [-77.41893951984422, 34.52712670457873], [-77.41900376591134, 34.52674055526825], [-77.418345999712, 34.526648718744006], [-77.41694224406723, 34.52693088046015], [-77.41676981223058, 34.526928946595305], [-77.41556890018467, 34.526481573769956], [-77.41521198244057, 34.52638279153422], [-77.41517217868754, 34.52634029887392], [-77.41492557600512, 34.526350510620226], [-77.41442672710225, 34.52639513996477], [-77.41437419858157, 34.526430177261695], [-77.41408404345583, 34.526752974508206], [-77.41362296357785, 34.52723935968726], [-77.41332542343297, 34.52737737075528], [-77.41204563110668, 34.52756957457129], [-77.4118538852714, 34.52765523103442], [-77.41125503406221, 34.52782112084878], [-77.4111981262053, 34.52786838241418], [-77.41091061250316, 34.52818986861378], [-77.41078076713714, 34.528418349930675], [-77.41045017160351, 34.52871256156532], [-77.41015888992732, 34.52881761915775], [-77.40902197187307, 34.52906865914281], [-77.40887234172553, 34.529063133223396], [-77.4087363744646, 34.529119289745864], [-77.40870699891886, 34.52920756601403], [-77.40784522663054, 34.52967926269265], [-77.40774051901035, 34.529836830398956], [-77.40727334192547, 34.53036139848603], [-77.40725036611653, 34.53038326924667], [-77.40720025834662, 34.530404532741976], [-77.40647867244141, 34.53079338784628], [-77.40618208148308, 34.53085713026149], [-77.40584958797007, 34.53147220612493], [-77.40580153406722, 34.5315858768694], [-77.40579717970633, 34.53166320747919], [-77.40564831669776, 34.53258734425957], [-77.40559197917612, 34.533549822438026], [-77.40470966424809, 34.53468158913438], [-77.40401781337391, 34.53552411609499], [-77.40123680759616, 34.53540542867834], [-77.40126055533219, 34.537138255585795], [-77.40128325980513, 34.538794911419096], [-77.40111725916054, 34.53932018418892], [-77.40111927592545, 34.541076036466336], [-77.40089400498462, 34.542953195987735], [-77.40089449663982, 34.54318476625565], [-77.39899033738125, 34.54530068435341], [-77.39865789532855, 34.54607037863585], [-77.39742893885905, 34.549266394602995], [-77.39735773822835, 34.5494113265242], [-77.39736852056416, 34.549452145873204], [-77.39735421385063, 34.54953045375396], [-77.39700610309914, 34.55584667046462], [-77.39427322607997, 34.55584666787599], [-77.39268482090284, 34.55523662835657], [-77.39112216884202, 34.55463724858825], [-77.3901464144592, 34.55389070054814], [-77.38896659098535, 34.55298801703242], [-77.38931117288455, 34.55061462220437], [-77.38903552058524, 34.550002305833104], [-77.38865374819596, 34.54915286005146], [-77.38851254453654, 34.54877115840888], [-77.38821604137252, 34.548691308148285], [-77.38802359133982, 34.54850604687738], [-77.38748416788093, 34.547940157847066], [-77.38719562003575, 34.54753247687349], [-77.38718327551405, 34.54749389266546], [-77.38717155620449, 34.54743889497272], [-77.38694584204458, 34.54723873670284], [-77.38660978204888, 34.54708694048851], [-77.3865619299736, 34.54704656237293], [-77.38648734515195, 34.54699210697749], [-77.386048023407, 34.54689258429594], [-77.38592338128404, 34.547185931343535], [-77.3851854747147, 34.54746647786076], [-77.38490215999698, 34.5476477189502], [-77.38380121812621, 34.54817115238715], [-77.38331440455487, 34.54841589021473], [-77.38317695934523, 34.54847644728058], [-77.38293723242805, 34.548825305969594], [-77.38314893286886, 34.54954466220669], [-77.38396879864302, 34.55084811995768], [-77.38424120854378, 34.55134580805852], [-77.38439368344822, 34.551783780241266], [-77.38482032087553, 34.552199760794025], [-77.38659661166247, 34.554402685257685], [-77.38719566230725, 34.555151849114715], [-77.38797069031222, 34.55612103526943], [-77.38916284587297, 34.55742912216589], [-77.3886910601516, 34.558274027306425], [-77.3889797995996, 34.55976372701904], [-77.38954575436571, 34.559475542628974], [-77.38979597860794, 34.55930574618317], [-77.39112151438782, 34.559003217695015], [-77.3923836237215, 34.55900079210679], [-77.39269707116935, 34.55996008234412], [-77.39309659131402, 34.56025825935014], [-77.39292867052079, 34.560532178820985], [-77.39341770575851, 34.56113336950757], [-77.39348476095255, 34.56129746351572], [-77.39407374625631, 34.56181557654271], [-77.39404743716577, 34.56206198037356], [-77.3940743670798, 34.56245109188028], [-77.3942144705745, 34.56264441780588], [-77.39427243567783, 34.56301968881331], [-77.39469622052339, 34.56296732268831], [-77.39506028838915, 34.56326593523636], [-77.39553559309061, 34.562966046721826], [-77.39584821762222, 34.56270023600757], [-77.39596594993787, 34.561669365161265], [-77.39742415527157, 34.56000350489612], [-77.4005459853282, 34.55918335856299], [-77.40055950762884, 34.559164093948155], [-77.40057557040072, 34.55916942505693], [-77.40058083986129, 34.559172648692375], [-77.40058623061397, 34.55917755036569], [-77.40372692386038, 34.55984701020471], [-77.4050403481983, 34.559950249099955], [-77.40543017595091, 34.560039156268274], [-77.4057731664783, 34.560127130780096], [-77.40687831676408, 34.56039387375459], [-77.40774744569217, 34.5606036400474], [-77.40984760095009, 34.56123715563379], [-77.40997938669713, 34.56127243342748], [-77.41002977478354, 34.56129007117336], [-77.41012081387525, 34.5612958257747], [-77.41273373572676, 34.56130262331482], [-77.41318118757744, 34.56126565825346], [-77.41380848059913, 34.561341220724714], [-77.41547282655712, 34.56135140799238], [-77.41633255587354, 34.560999397330015], [-77.41690213366502, 34.56083218878834], [-77.41751061665349, 34.56013034669313], [-77.4177836569469, 34.55995680110181], [-77.41790806158963, 34.55989460867303], [-77.41855500861348, 34.559979459915404], [-77.41934259183077, 34.56001782876697], [-77.41948376685333, 34.560047508052456], [-77.41980290758943, 34.560143125242504], [-77.4208761944831, 34.55984154746065], [-77.42105938994514, 34.55979007205289], [-77.42120140449697, 34.55975016688169], [-77.42232291069693, 34.55943502329564], [-77.42258839165302, 34.55934646558304], [-77.42263492384697, 34.55919118242779], [-77.42276546991899, 34.55923036466471], [-77.42421042655039, 34.558562138008256], [-77.42453480009516, 34.55876578191134], [-77.4255716988975, 34.558734378913734], [-77.42578608851655, 34.55862337506069], [-77.42600197893825, 34.55867060920935], [-77.42627067487948, 34.55886446157385], [-77.4283784366089, 34.55916241823242], [-77.4289375675393, 34.55924145095555], [-77.43057396251734, 34.56000590165724], [-77.43208923250472, 34.56027973634542], [-77.43270490779071, 34.5606675096542], [-77.43328451734828, 34.56124717273582], [-77.43524169381125, 34.56320448789519], [-77.43592874371828, 34.563521113250616], [-77.43659378800824, 34.56416533470113], [-77.43870360505, 34.566924030658605], [-77.4391347915928, 34.56799172946848], [-77.43839521590735, 34.56810583430661], [-77.43764228356847, 34.56822197929324], [-77.43524439220522, 34.57019160376859], [-77.4348423303679, 34.5707785675618], [-77.43366888584545, 34.57114285282628], [-77.43344896385555, 34.571176578964014], [-77.43288104413823, 34.57141070856293], [-77.43277883449224, 34.57140035157334], [-77.43248793602419, 34.57155255977911], [-77.43223980137414, 34.571746406548925], [-77.4320932336442, 34.57178178000009], [-77.43192748081863, 34.57181223407579], [-77.43109567605553, 34.5723769043686], [-77.43051755139777, 34.57240585694256], [-77.43028998514916, 34.57247422683409], [-77.43012361896731, 34.57253756707141], [-77.42977886676181, 34.57274040943451], [-77.42972971739803, 34.57276827795004], [-77.4297045165852, 34.57277697338859], [-77.42967335265814, 34.57280864038066], [-77.42956157413408, 34.5730060872465], [-77.42912005803538, 34.573737799614364], [-77.42904679993462, 34.5738612144119], [-77.42894211823015, 34.57389658638155], [-77.42875803705765, 34.573988541130575], [-77.42854820662305, 34.5741262221971], [-77.42847141298782, 34.5741733736874], [-77.42815429168598, 34.57435195909073], [-77.42779804137521, 34.57439413067705], [-77.42771904614052, 34.57440937948775], [-77.42736626276101, 34.57415682575922], [-77.42726804378961, 34.574111325603], [-77.4272032427111, 34.574014858640254], [-77.42657804692887, 34.57329971694455], [-77.42655213581462, 34.573287707233206], [-77.4265544337366, 34.5732594550917], [-77.42641225816485, 34.57310139440306], [-77.42586311960898, 34.57251019173445], [-77.42582552019255, 34.5724771917004], [-77.42578983390429, 34.57239328188704], [-77.4255910572789, 34.572335306528004], [-77.42529515060627, 34.572276184341824], [-77.42504850902313, 34.57182915865361], [-77.42501971832519, 34.57178290534723], [-77.42508926470208, 34.57167847371946], [-77.4250017094581, 34.57175341943171], [-77.42425547277138, 34.57104417534747], [-77.42422240179125, 34.571039445084516], [-77.42421357387335, 34.5710232070114], [-77.42389379394658, 34.5705917806022], [-77.42359366344924, 34.570290638949515], [-77.42383059815404, 34.569819634001234], [-77.423425378241, 34.56999360871121], [-77.42323464425994, 34.56969882668446], [-77.42303133252145, 34.56966354895638], [-77.42296773831785, 34.56960043620477], [-77.42269961791382, 34.569637754058434], [-77.42263736463848, 34.56964834682162], [-77.42254859353855, 34.56968816336875], [-77.42237626219487, 34.56976054434672], [-77.42224345469847, 34.56988180463631], [-77.42212451421278, 34.569950144133124], [-77.42184958334843, 34.57029402536464], [-77.42146131190812, 34.57016800496533], [-77.42145133963902, 34.57017103613358], [-77.42106166102171, 34.57035201404106], [-77.4207746955999, 34.57015801683569], [-77.42066764890407, 34.57014575405622], [-77.42048807207549, 34.570083726496186], [-77.42044578306228, 34.570081808544984], [-77.42027366629496, 34.5700712700471], [-77.42013587599588, 34.57008959587149], [-77.42001345828473, 34.57010292648939], [-77.42000009915382, 34.570255578469805], [-77.42005058234872, 34.5703780006606], [-77.42027376928814, 34.57056291088909], [-77.42048119740868, 34.57051681198194], [-77.42041001365602, 34.570750655595745], [-77.42048749689002, 34.57096970410011], [-77.42056853589904, 34.57115233741247], [-77.420591451187, 34.57123139566464], [-77.42066791683008, 34.5713947095504], [-77.42102321951154, 34.571469536325765], [-77.42106190838236, 34.571479976965435], [-77.42107814676575, 34.57148579417328], [-77.42144921381629, 34.571442502237566], [-77.42145587325255, 34.571443092701955], [-77.42146203597228, 34.57144118429602], [-77.42176411591387, 34.571311819525725], [-77.42184979790348, 34.5712324242585], [-77.42198991931619, 34.57122053909255], [-77.42224374129086, 34.57111072344104], [-77.42240347536156, 34.57105936929732], [-77.42263768129541, 34.57097994572446], [-77.42289018810312, 34.57096933426942], [-77.42332771247189, 34.57117824377832], [-77.42339075183031, 34.57120677501999], [-77.42342574525004, 34.57147617169769], [-77.42357883961152, 34.57182623117053], [-77.42382657075063, 34.57195532907417], [-77.4235859052234, 34.57216252708037], [-77.42342591607053, 34.57216416801574], [-77.42332512177414, 34.57213640919343], [-77.42286630174522, 34.57234012354734], [-77.4226380206388, 34.572400897179435], [-77.42227880969578, 34.57256614198883], [-77.4222440858302, 34.57258187366238], [-77.42222517484404, 34.5725909350775], [-77.42217145347635, 34.57261907986642], [-77.42185015950525, 34.57280726955625], [-77.42165503120748, 34.5729079713181], [-77.4211058584643, 34.57315066300659], [-77.4210622772401, 34.57315365653902], [-77.42101938876506, 34.573163901290826], [-77.42096089250091, 34.57321857530156], [-77.42048981336646, 34.57351878990366], [-77.42040870562721, 34.573722939796085], [-77.42044567539473, 34.573957696762136], [-77.42044108793397, 34.574142846046904], [-77.42046273170722, 34.574342497126324], [-77.42051917671287, 34.574556149426684], [-77.42061439390724, 34.574600818934805], [-77.4206686194837, 34.57464500785672], [-77.42096930919455, 34.5749157005855], [-77.421023629808, 34.574949929934256], [-77.42106268015051, 34.574971209249945], [-77.42125127219964, 34.575096340837874], [-77.42128234865753, 34.57510716671164], [-77.4214567150251, 34.575170362796044], [-77.42154192447292, 34.57516572618016], [-77.42183419142015, 34.575197522350656], [-77.42183155974327, 34.57481166315838], [-77.42182584667623, 34.574791945646666], [-77.42182174649501, 34.57476143216805], [-77.42177271034049, 34.57445891221614], [-77.42176236717593, 34.5743765317756], [-77.42185049567153, 34.57426423012754], [-77.42204497578949, 34.57412607881082], [-77.42204745599034, 34.57412400970789], [-77.42204822859594, 34.57412376814123], [-77.42224443421287, 34.57406242137788], [-77.4223876205801, 34.574015922916715], [-77.4225171197237, 34.57397358961169], [-77.42263838821313, 34.57393306476339], [-77.42272335944817, 34.57390466936178], [-77.42295755033908, 34.57377925134395], [-77.42303231881947, 34.57371350788692], [-77.42322122489276, 34.57352019488617], [-77.42342614379687, 34.57307877819895], [-77.4237618819908, 34.573301264926876], [-77.42382019713463, 34.57336658249336], [-77.42393634676971, 34.57363781359455], [-77.42406350245973, 34.57378193437469], [-77.42421443991333, 34.574374034505034], [-77.42423671238488, 34.574419592938796], [-77.42424536907583, 34.57444233173264], [-77.42423877070385, 34.574469479062316], [-77.42424801148678, 34.57465424340562], [-77.42424967615791, 34.57469188675068], [-77.42428740298521, 34.57478232913666], [-77.42440927335936, 34.574840774071006], [-77.42441155570333, 34.574841950257316], [-77.4244123617472, 34.57484191838826], [-77.42441444655275, 34.574842485768926], [-77.42456446917316, 34.574868317723585], [-77.42460855971551, 34.57487899302237], [-77.42470992391368, 34.574909013914066], [-77.42500254858521, 34.574880317438144], [-77.4252709921303, 34.57485399141058], [-77.42539653403608, 34.574869423367765], [-77.42577248574139, 34.57505132529597], [-77.42579057484491, 34.575057637026575], [-77.42579863455538, 34.57505835293973], [-77.42580467203209, 34.575066165866275], [-77.42580140188585, 34.57507830014411], [-77.4258170017314, 34.575488971782356], [-77.42579070213434, 34.57551343483338], [-77.42551907352137, 34.575663847682684], [-77.42539676140761, 34.575697620530306], [-77.42524042318871, 34.575740788342586], [-77.42518022596816, 34.57577221178452], [-77.4250028160312, 34.575871277394086], [-77.42490493434326, 34.575939864703145], [-77.42482695924654, 34.576056635291934], [-77.42482290145507, 34.57607557110895], [-77.4248484390454, 34.57621999666519], [-77.42488571651246, 34.57626043786322], [-77.42500295577608, 34.57638804771611], [-77.42504045701243, 34.576409963086455], [-77.42508861671536, 34.57644341006663], [-77.42526647763492, 34.57655836089771], [-77.42539702150003, 34.57664273011334], [-77.42549374211062, 34.576705239709575], [-77.4256468299937, 34.57678732775888], [-77.42575145673835, 34.57681489230408], [-77.42579106797726, 34.57682038244178], [-77.42584487601215, 34.576816693582614], [-77.42598806096271, 34.576800072532315], [-77.42615589932768, 34.57674516530111], [-77.42618504168937, 34.576737149195246], [-77.4262950821338, 34.57669364286456], [-77.42648250871676, 34.57656258458936], [-77.42657896831565, 34.57649427908251], [-77.42677823023604, 34.57640905481565], [-77.42707187916716, 34.576263456325634], [-77.42736683866822, 34.576089073102665], [-77.42770213189814, 34.576128967268055], [-77.42783521959413, 34.57612661122086], [-77.42815481057572, 34.576039191075395], [-77.4284947572583, 34.576009361697274], [-77.42894277356939, 34.575965186632025], [-77.42949791863, 34.5759797886935], [-77.42973074905916, 34.57593463399611], [-77.42994241731631, 34.575938357505535], [-77.43040089539579, 34.57610018935075], [-77.42997393785741, 34.576423809152175], [-77.42973105552755, 34.576870935828744], [-77.4296651468943, 34.577055724671716], [-77.42967978456312, 34.577108944512936], [-77.42973117083105, 34.57722275708786], [-77.4297929728323, 34.57739529783174], [-77.42988443474565, 34.577448616317305], [-77.43004088771889, 34.57751693107456], [-77.43012527955867, 34.577553780224676], [-77.43034875876299, 34.57762230155352], [-77.4305193178424, 34.57766699872362], [-77.43060865232398, 34.577672248789966], [-77.43080603914395, 34.57773998329084], [-77.43100034728467, 34.57804283802031], [-77.43094875209121, 34.57818193806988], [-77.43060477388056, 34.57861825864958], [-77.43055488763554, 34.578663437965645], [-77.43051966574433, 34.57869595611386], [-77.43047076256039, 34.57869032786155], [-77.43019389288658, 34.57867765343898], [-77.4301345683657, 34.57867662246286], [-77.43012565279048, 34.57867352305026], [-77.4298493856299, 34.57860054814507], [-77.42973160108312, 34.57853267802769], [-77.42944389972796, 34.57847604968117], [-77.4292521578677, 34.57848124239964], [-77.4290659671273, 34.57841610302026], [-77.42894354815908, 34.5783976418285], [-77.42889371321922, 34.57838730120524], [-77.42874653743587, 34.57837065106326], [-77.4286654072868, 34.57834912671544], [-77.42863884048822, 34.57836178666466], [-77.4286029856424, 34.578376875822165], [-77.4286293965707, 34.57839315276428], [-77.42865735653231, 34.578475164344056], [-77.42861484328166, 34.578551625143646], [-77.42867810111863, 34.57875834129873], [-77.42877079661169, 34.578883356834915], [-77.42880066950711, 34.57903322586874], [-77.4287384357304, 34.579515795557555], [-77.42854995814385, 34.57971243062741], [-77.42850059673933, 34.57977158962472], [-77.4284799971842, 34.57985000408203], [-77.42844264144365, 34.58008878240904], [-77.42847217468973, 34.580200286721556], [-77.42851227538168, 34.58023527547144], [-77.42855017662556, 34.58040406025252], [-77.42860063232551, 34.58055198843351], [-77.42859730974538, 34.580606789350654], [-77.42863097162872, 34.58068889117338], [-77.42870200836198, 34.580852785581946], [-77.42883966734709, 34.58088354937752], [-77.42894433375776, 34.58085044890866], [-77.42913907959655, 34.58073837808254], [-77.42933829789051, 34.5806916936991], [-77.429585423221, 34.580622229143586], [-77.4297322781654, 34.58058652145984], [-77.42996420917366, 34.58065911636925], [-77.43012632642575, 34.580687358925445], [-77.43023955182554, 34.58067198570873], [-77.4303459979632, 34.58077861649935], [-77.43052039320403, 34.580840059593704], [-77.43077521630362, 34.58086657431933], [-77.43114505456666, 34.58091162556563], [-77.43130842576079, 34.58084460806339], [-77.43149312307006, 34.58083835036699], [-77.43188149915561, 34.58074963673404], [-77.43209640218899, 34.580693621194044], [-77.43246700224724, 34.58047200339474], [-77.4324809890226, 34.58045991357234], [-77.43251683435815, 34.580436230316316], [-77.43288423354556, 34.580156876258314], [-77.4329815224017, 34.58007789744198], [-77.43309720047009, 34.57995630256461], [-77.4332058403416, 34.57986268928827], [-77.43327805707591, 34.579651459096084], [-77.43332192964587, 34.579546540345184], [-77.43333073953701, 34.579441090333425], [-77.43315948884921, 34.57909811362343], [-77.43337524088619, 34.57853715147654], [-77.43317618108509, 34.57824651545172], [-77.43275929370398, 34.577591231381845], [-77.43262761793272, 34.57747664359416], [-77.43241575659448, 34.57700366317542], [-77.43223886334022, 34.576683664452005], [-77.43256580258705, 34.57612878319493], [-77.43282834231908, 34.57569078863902], [-77.43288252200338, 34.5754828079843], [-77.43299802245872, 34.57487554298204], [-77.43296752850614, 34.57478806902942], [-77.43288215621446, 34.57447803492231], [-77.43280383282678, 34.57413871104369], [-77.4327791303342, 34.574058007547805], [-77.432782197936, 34.573950046055465], [-77.43288181153311, 34.57352937605413], [-77.43292669706497, 34.57323597719715], [-77.43318929136402, 34.573149522005934], [-77.43348798749776, 34.572910671225685], [-77.43366943210428, 34.57261426175129], [-77.43382092720017, 34.57289503902612], [-77.433921717501, 34.57304362212809], [-77.43431899327098, 34.57313553717771], [-77.43445759494351, 34.57316760399018], [-77.43501058291378, 34.57313939008734], [-77.43524563495036, 34.57337967335086], [-77.43632822634098, 34.57322721959232], [-77.43831412793216, 34.57401670246284], [-77.43839773259558, 34.57399787350524], [-77.4384865780989, 34.5739861124502], [-77.44154927019838, 34.57331829484268], [-77.44306954966967, 34.57517821295778], [-77.44404217464046, 34.57667498028544], [-77.44509146233825, 34.57950266566362], [-77.44556486308343, 34.58077822557444], [-77.44692114772633, 34.58305204910124], [-77.44470721079273, 34.585348037314006], [-77.44428901095878, 34.58637843762487], [-77.44324250391007, 34.586981030337725], [-77.44313194072186, 34.58709976745417], [-77.44298110310788, 34.5871814179358], [-77.44215132060631, 34.58778024024602], [-77.44155617547334, 34.58795001271052], [-77.44113384869098, 34.588135224811055], [-77.44155637267137, 34.58836260337267], [-77.4416877776605, 34.588762913779924], [-77.44177838604713, 34.58889119331254], [-77.44181664960459, 34.589165694673135], [-77.44168227921907, 34.58975428579117], [-77.44167743681204, 34.58988464790145], [-77.44155710288797, 34.58988839188255], [-77.44138939900233, 34.58997739276052], [-77.44093550385581, 34.590041633955025], [-77.44094608472282, 34.59051945612216], [-77.44116327160445, 34.59036217830027], [-77.44130989346968, 34.590390710993006], [-77.4413895806668, 34.59040198550662], [-77.44155732240858, 34.59034633297627], [-77.44182644606802, 34.590292617995146], [-77.44205880270457, 34.590240224546534], [-77.44234535087747, 34.59016646160905], [-77.44256830073468, 34.590235132018506], [-77.44312465349557, 34.59038523884453], [-77.44313357335895, 34.590383332214294], [-77.44314046139786, 34.59038514348461], [-77.4431422063088, 34.59039231204552], [-77.44365909972831, 34.59060060103185], [-77.44392185373866, 34.5907064797745], [-77.44423743281153, 34.59074306140343], [-77.44471041359691, 34.59155769681843], [-77.44519487750243, 34.59179376822821], [-77.4447108666463, 34.59243115472802], [-77.44422290125625, 34.59310661898782], [-77.44349992017159, 34.5933442095723], [-77.44313512716559, 34.59349307170808], [-77.44287450300871, 34.593546965013175], [-77.44239989339108, 34.59383962551472], [-77.44234715913133, 34.59385498563138], [-77.44229183752975, 34.593852476361874], [-77.44223361054267, 34.59392050300828], [-77.44195331349769, 34.594325388112196], [-77.44192068800243, 34.59435519035679], [-77.44189946063833, 34.59445151762704], [-77.44182252620537, 34.594829150828964], [-77.44203479761553, 34.595135677516154], [-77.44234770711427, 34.59496857874524], [-77.44255495097089, 34.59494651995249], [-77.44313593481388, 34.59510379430844], [-77.44330224723302, 34.59528522832583], [-77.44348805280671, 34.59538798904071], [-77.44381087245286, 34.59557757294232], [-77.44417208019196, 34.59585096832919], [-77.44419225197947, 34.59592567028232], [-77.44373601665067, 34.596317752649405], [-77.44344632415604, 34.59662187631451], [-77.44337176787664, 34.59680967486525], [-77.4433217196775, 34.59691242488823], [-77.44311381180351, 34.59733880377741], [-77.44310720292526, 34.59735223410881], [-77.44307516762949, 34.597721233467304], [-77.44322630032926, 34.597997597663074], [-77.44303607168567, 34.59847087894045], [-77.4434074564539, 34.59881363359081], [-77.4435671499009, 34.599057939525096], [-77.4442547951204, 34.59957604879871], [-77.44427343023463, 34.599583347554585], [-77.44522824533277, 34.59929162251362], [-77.44525798210235, 34.59931426608351], [-77.44528860713808, 34.59951216625275], [-77.44440552398737, 34.59964918644117], [-77.44535763332007, 34.60002435275483], [-77.44536991250784, 34.60007122220802], [-77.44545729630336, 34.60012850147564], [-77.44614439317169, 34.600538489151354], [-77.44642848602295, 34.600605453104315], [-77.44668057162157, 34.600756781565266], [-77.4469778932069, 34.600847970563436], [-77.44738963070955, 34.60069359744706], [-77.44764553853942, 34.60044132931132], [-77.44800260880123, 34.60050928811789], [-77.44817928255051, 34.60047087586956], [-77.44836907091567, 34.60051834260839], [-77.44850848637195, 34.60046575606514], [-77.44868697945888, 34.60040526624413], [-77.44885517777931, 34.60031926608963], [-77.44883079799237, 34.6002688509172], [-77.44877671628349, 34.600157015632746], [-77.44865052335868, 34.59989605879297], [-77.44861979444799, 34.59983251472372], [-77.44856598364389, 34.599820389885984], [-77.44832711736998, 34.5985440644737], [-77.44979729967073, 34.59831467897733], [-77.45016611606304, 34.59812773645495], [-77.45055817414918, 34.59808605105065], [-77.45183942069824, 34.59764608495431], [-77.45214817966968, 34.59768753966767], [-77.45247353059554, 34.597784984919954], [-77.45270356729525, 34.59779618493384], [-77.45280811875676, 34.597832991862106], [-77.45307598967374, 34.59782294804747], [-77.45320247521494, 34.597807903120696], [-77.4532337695056, 34.59781283328649], [-77.45330741205268, 34.59780933887238], [-77.45347809493542, 34.59774527501797], [-77.45350756143837, 34.59769983915032], [-77.45354659921895, 34.5975833418968], [-77.45362409825943, 34.597318605875515], [-77.45362902472417, 34.59730248956132], [-77.45363610770502, 34.59727758117606], [-77.45360304397312, 34.59693407764263], [-77.45357714130031, 34.59666494092196], [-77.4535338602089, 34.5962152904976], [-77.45372616538685, 34.59577153560093], [-77.45441049564936, 34.595965213744215], [-77.45467381871254, 34.596008452969286], [-77.45484071729925, 34.59600267951013], [-77.45522653135393, 34.59600333100302], [-77.4553693562697, 34.59601365276033], [-77.4556374231606, 34.59561519777578], [-77.45570212180351, 34.59555036372084], [-77.45574962205205, 34.59548274364817], [-77.4560156248694, 34.59513803759068], [-77.45600085409372, 34.59503551026535], [-77.45613395417533, 34.59496670158589], [-77.45647955407378, 34.594636417612854], [-77.45650528545082, 34.59459263558406], [-77.45641938129823, 34.594330730442735], [-77.45637427265528, 34.594297189467916], [-77.4561937625013, 34.5941494689649], [-77.45602693109083, 34.594027019034485], [-77.4556557836063, 34.59367598992111], [-77.45540934588972, 34.59346468374206], [-77.45606123040938, 34.59278142657723], [-77.4565255892884, 34.59274158781096], [-77.45703718486301, 34.59250650533711], [-77.45754458946125, 34.592497240694186], [-77.45812677963347, 34.59264661893993], [-77.4581777990528, 34.59263717549482], [-77.45824297355801, 34.59265624005759], [-77.45817199320443, 34.59269831197733], [-77.4581779236428, 34.59283339147555], [-77.45825650914358, 34.593347263329335], [-77.4582474312615, 34.593393501052695], [-77.45827735064252, 34.5934298598819], [-77.4583474464167, 34.59373423164569], [-77.4584762878148, 34.59392297182174], [-77.45854251101632, 34.594019982348755], [-77.45856769625242, 34.59404065748133], [-77.45868458746581, 34.594116425845556], [-77.4590316931215, 34.59433609386198], [-77.45939588365266, 34.594542892774726], [-77.45955863784297, 34.594606017544045], [-77.45974159609368, 34.59470462176527], [-77.45981815819869, 34.594745814666915], [-77.45986698676391, 34.59477774423341], [-77.45991934877586, 34.59485814305337], [-77.46000787999553, 34.59497098814528], [-77.46019219945369, 34.59495360794306], [-77.46031308135207, 34.59487205619095], [-77.4604070772561, 34.59471910250998], [-77.46072401577095, 34.59453320743157], [-77.46073688790423, 34.59452480995335], [-77.46074215719389, 34.59451949379322], [-77.46101573561167, 34.59431268576597], [-77.46145407517344, 34.59411647758067], [-77.46165279200095, 34.59400603274392], [-77.46176539065885, 34.593955598787055], [-77.46211500294841, 34.59377448627945], [-77.46217836877081, 34.593748948066434], [-77.46239621592238, 34.59355693545557], [-77.46250642503335, 34.593284485809065], [-77.46285669792752, 34.59331521391506], [-77.46344816804442, 34.59288467819263], [-77.46552658240375, 34.59341336456066], [-77.46566880062707, 34.59331595900812], [-77.46577034820653, 34.593462457434235], [-77.46574380073234, 34.593589756142016], [-77.46574377608255, 34.595966767203855], [-77.46574376329787, 34.596424237153215], [-77.46574375067077, 34.59709975567869], [-77.46591911442664, 34.598505523643965], [-77.46331881725257, 34.60006607455694], [-77.46331368649568, 34.6000698682717], [-77.46330794167318, 34.60006953972936], [-77.46330437365448, 34.6000745302441], [-77.46167944244522, 34.60178003918341], [-77.46152039903032, 34.60192166403298], [-77.46065974567989, 34.60331849323028], [-77.46031229529919, 34.60388240157761], [-77.46025078146212, 34.60395498460232], [-77.46019969985913, 34.60405451543804], [-77.45927752277572, 34.60609198689248], [-77.45922620408037, 34.607146388322], [-77.45939147050541, 34.608527588457406], [-77.45939770663102, 34.60861152340999], [-77.45950120599187, 34.610022078916955], [-77.4595650335395, 34.61114753498691], [-77.45958363104234, 34.61147565294325], [-77.45960880407307, 34.611919709431675], [-77.45966604060753, 34.61292920482563], [-77.45970835449091, 34.61367514493614], [-77.45974847164015, 34.614382774698484], [-77.45987393135954, 34.61525342045907], [-77.46029416482754, 34.61570417042649], [-77.4608757673237, 34.616560951225466], [-77.46041794905591, 34.61714594583947], [-77.45970191007143, 34.617591289372875], [-77.45898956533742, 34.618378681035246], [-77.45825264794405, 34.619240664735756], [-77.45678903954263, 34.62231290622541], [-77.45661962368702, 34.62250471749533], [-77.45673973127914, 34.62262633903611], [-77.45641789235874, 34.62313737245699], [-77.45514882359002, 34.62603417571315], [-77.45451493057541, 34.62672355339697], [-77.45248415262822, 34.62794686365492], [-77.45034049014451, 34.62948551491159], [-77.44839168365465, 34.629536735173694], [-77.44622851359779, 34.62983156862441], [-77.44484372144181, 34.62997197371866], [-77.44415771369094, 34.62916815404141], [-77.44312763136259, 34.62769508447688], [-77.44223074000524, 34.626763486983315], [-77.44200294437331, 34.62613004190773], [-77.44133175187369, 34.62554277424652], [-77.44140758641362, 34.62502923575788], [-77.44070358693942, 34.625016414889004], [-77.4399613006842, 34.62534835901268], [-77.43943990771022, 34.62560577867036], [-77.43884240072136, 34.6259006741739], [-77.43876077413155, 34.626167109748735], [-77.43794267277897, 34.62645561322072], [-77.43775826916198, 34.626435724022116], [-77.43715549167007, 34.626733204462894], [-77.43702387742827, 34.62679815838765], [-77.43698945195888, 34.626815147903315], [-77.4368942532189, 34.62799165950512], [-77.43695761810494, 34.62826657798094], [-77.43689999777061, 34.62871000968077], [-77.43775434308377, 34.630770352549284], [-77.4375184584903, 34.63106067895349], [-77.43575373353875, 34.633767588964815], [-77.43512670398172, 34.63469628502628], [-77.43508808531256, 34.634792821988114], [-77.43501576277956, 34.63497362513888], [-77.43282310700796, 34.63734872546483], [-77.43174232057001, 34.638384527507974], [-77.42964144668257, 34.63625932874636], [-77.42850514573578, 34.63531169406991], [-77.4266065498835, 34.63499030713274], [-77.42513317204087, 34.634589911133915], [-77.42371532541256, 34.63385124120902], [-77.42218282692198, 34.63419747090531], [-77.42050138452551, 34.63464312479836], [-77.41841411325159, 34.63579908290283], [-77.4155935448146, 34.637880851647665], [-77.41374422846252, 34.64078759372536], [-77.41357567919658, 34.64213033696533], [-77.41210288551201, 34.64348812472033], [-77.40879196065234, 34.645411527714856], [-77.40809692592093, 34.64561665718239], [-77.40433853009974, 34.64586580068806], [-77.40084036352023, 34.64716693437122], [-77.40039039938361, 34.647318079488024], [-77.40015002146058, 34.64800978444758], [-77.39875746553724, 34.65096154457092], [-77.39878173991997, 34.651818671088165], [-77.40020298868144, 34.655255013695296], [-77.40092733729104, 34.65625122477697], [-77.40097388820703, 34.65754256216181], [-77.40101428261976, 34.659180169844596], [-77.40221145108171, 34.66011311636133], [-77.4030887298728, 34.661543430658455], [-77.40462316091995, 34.66229692723656], [-77.40629379097386, 34.66243960946706], [-77.40893534513745, 34.66267747840994], [-77.40908883830642, 34.662789285344935], [-77.40911528918598, 34.662870924751836], [-77.41026883902899, 34.66489726422155], [-77.41069526343252, 34.66528571421449], [-77.41066641279434, 34.66589186897163], [-77.41012666790597, 34.66622042459169], [-77.41014651476632, 34.66627863966127], [-77.4101522230576, 34.66629699385694], [-77.41024266707, 34.666410210574185], [-77.41076721926049, 34.666385739280756], [-77.4116592489635, 34.666540138003626], [-77.4119710776895, 34.666653506477495], [-77.41209171701965, 34.66644276852992], [-77.41213917312572, 34.66640734297786], [-77.412458043902, 34.66626076368415], [-77.4139241304546, 34.66553106130764], [-77.41438150555913, 34.665713167123016], [-77.41497352870778, 34.666464100320695], [-77.41533242379238, 34.66691930944786], [-77.41751615274195, 34.66701517158492], [-77.41894101251505, 34.66848586471676], [-77.41921005139064, 34.6686026553814], [-77.41930418552109, 34.668742255397746], [-77.41929935596728, 34.66891308420907], [-77.41927686345015, 34.66921957404868], [-77.41883783963432, 34.66949168235001], [-77.41729771339223, 34.67196663025018], [-77.41693034685547, 34.67255693377463], [-77.41528324749277, 34.67395499262619], [-77.41516150119423, 34.6741743989387], [-77.41512158324387, 34.67439167899351], [-77.41496577115694, 34.67587287957613], [-77.41551527416118, 34.67653461611111], [-77.41605403435071, 34.677204212649826], [-77.41644843499661, 34.67774634681576], [-77.41767816095091, 34.67857325639975], [-77.41923556776656, 34.67944753716152], [-77.42082406642032, 34.680339228234644], [-77.4227642510277, 34.681545982220904], [-77.4229774267278, 34.68175506050081], [-77.42348157323266, 34.682080049255134], [-77.42414402624331, 34.68215233365045], [-77.42443468141485, 34.68214268821578], [-77.42528756844207, 34.68218986806284], [-77.42539217484844, 34.68221248450664], [-77.42540837010422, 34.68221186740668], [-77.42545475958414, 34.682208680777435], [-77.4259998765173, 34.68238215628995], [-77.42615007926862, 34.6819559218793], [-77.42620051121418, 34.68195012727468], [-77.42644218882822, 34.68179659045505], [-77.42657470536366, 34.68152193646271], [-77.42673510573108, 34.68141668840858], [-77.42695846612901, 34.681283880330675], [-77.42722803481321, 34.6814686201582], [-77.42756920576916, 34.68138768139959], [-77.42795182453625, 34.68200362024579], [-77.42794434233002, 34.6820624262659], [-77.42787621104401, 34.68225670955053], [-77.42793774273488, 34.682328534252754], [-77.42801553323275, 34.682305439777515], [-77.4280654160346, 34.68209605233693], [-77.42815706512249, 34.682075406399605], [-77.4284681047033, 34.68200658015563], [-77.42864470197475, 34.68209981616043], [-77.42877842705704, 34.68201320011805], [-77.42890233708837, 34.68196868258375], [-77.42901957447017, 34.68191151354683], [-77.42915872027524, 34.681866675802155], [-77.42920003235007, 34.681707547478155], [-77.42945554715227, 34.681512028070124], [-77.42953346938253, 34.68150485236626], [-77.42967765226328, 34.68148910610954], [-77.42979259330662, 34.681454446153005], [-77.42988469297495, 34.68133123959461], [-77.42996487821159, 34.681219118032374], [-77.4299590796754, 34.68102846805671], [-77.43013671455022, 34.68099543632941], [-77.43027364291528, 34.68089913436111], [-77.43043882235709, 34.68063719214386], [-77.43068734816659, 34.6804000107157], [-77.43082247703646, 34.68021230901168], [-77.43119869273718, 34.67991650448177], [-77.43127148406032, 34.67985937301989], [-77.43133504294099, 34.67983251281336], [-77.43162021116169, 34.679681691524614], [-77.43171081700036, 34.6795976024337], [-77.43183586871908, 34.679448610219694], [-77.43171315444741, 34.679245632879336], [-77.43163669297313, 34.67918215462542], [-77.43144356133104, 34.67907009780801], [-77.43121570286279, 34.678911491181275], [-77.43108476589843, 34.67880626043154], [-77.43090522576964, 34.678716098199885], [-77.43068747603255, 34.678487894572775], [-77.43060416178224, 34.67827397707964], [-77.43060401060656, 34.67789963556929], [-77.43062098199766, 34.67782057139922], [-77.4305785699201, 34.67763044164346], [-77.43045028947137, 34.67744543318739], [-77.43025071410202, 34.677216996163935], [-77.42985779584794, 34.67679997000074], [-77.43016915234571, 34.67506565646423], [-77.4302763964375, 34.67498970853965], [-77.43079228117482, 34.674624367722544], [-77.43144573913744, 34.6741616018035], [-77.43167014977456, 34.674257926355295], [-77.4318591746638, 34.67442518897735], [-77.43259812037736, 34.67507906235184], [-77.43264575284535, 34.67563623267636], [-77.43266180997168, 34.67582404481466], [-77.43269419554103, 34.67620285487305], [-77.43271107820144, 34.676400337976254], [-77.43271944849886, 34.67649824924281], [-77.43277456717576, 34.67668402208583], [-77.43286824327286, 34.67701436688616], [-77.43258355363415, 34.677344329753936], [-77.43252117082952, 34.677415599414616], [-77.43247400984474, 34.6774355470643], [-77.43235035707599, 34.677545096096935], [-77.43224581661892, 34.67763526837087], [-77.43223422436989, 34.67769427367074], [-77.43216933752602, 34.67766874379633], [-77.43205953660116, 34.67766649055685], [-77.43198867893733, 34.677666727346505], [-77.43196445645043, 34.677706178706316], [-77.43201661457984, 34.67771240120684], [-77.43213756861434, 34.67777856127052], [-77.43224303300556, 34.677813089949275], [-77.4323212589217, 34.677836571217554], [-77.43243850252419, 34.677845745294384], [-77.43262726398011, 34.677875898126025], [-77.4328264342477, 34.677914686818355], [-77.43305019393398, 34.677946156373366], [-77.43338263967001, 34.67800697369962], [-77.43365765769435, 34.67806118425113], [-77.4338408259691, 34.67807751364375], [-77.4341253491545, 34.67801308076176], [-77.4341324761342, 34.677693965735074], [-77.4342939226155, 34.677512978541536], [-77.43435136499201, 34.677416599483884], [-77.43451457843355, 34.67731381688233], [-77.43466257164052, 34.67717759734137], [-77.43476580469986, 34.67711895196055], [-77.43494026091707, 34.67688379881912], [-77.43528458336797, 34.676866882957675], [-77.43555015088208, 34.677102159977466], [-77.43579108724838, 34.677330933005024], [-77.43595695151005, 34.677535518134825], [-77.43609943443957, 34.67776564952072], [-77.43623388376122, 34.67801526079481], [-77.43629261755939, 34.67821195556189], [-77.43626790052762, 34.67830648711167], [-77.4362524817642, 34.678477445787294], [-77.43607019856753, 34.67858117792226], [-77.43598367991639, 34.67858960922253], [-77.43579368415445, 34.67859652705938], [-77.43552928520205, 34.67859453348599], [-77.43542398568094, 34.67860010452781], [-77.43506149219556, 34.67857755113996], [-77.43473512884383, 34.67876645211912], [-77.43472045872531, 34.67876780126322], [-77.43471697186499, 34.67877904125743], [-77.43472638128377, 34.678796693471334], [-77.43486704155313, 34.679172902601834], [-77.43509705083059, 34.67938346078918], [-77.4351732134962, 34.67946707310064], [-77.43519778286205, 34.67948123199209], [-77.43544331215679, 34.67957564090096], [-77.43546039775347, 34.67958181307963], [-77.43572415860453, 34.679660878627324], [-77.43575520905193, 34.67967018639172], [-77.43578971254286, 34.67968052914076], [-77.43614019869844, 34.679835808664706], [-77.43631125191622, 34.67990920912588], [-77.43632409603576, 34.67991862667269], [-77.43635155711179, 34.67993876148905], [-77.43685405239331, 34.680085439857834], [-77.43690941801093, 34.68010296047366], [-77.43691166315003, 34.68010249087851], [-77.43692105866607, 34.680101040014385], [-77.43757789171863, 34.68001438801912], [-77.43790997161543, 34.68024307668066], [-77.43811170199285, 34.68038412563737], [-77.43817067538572, 34.680472170082545], [-77.43827211213573, 34.6805813105365], [-77.43858501429578, 34.68096305677196], [-77.43877363335017, 34.68111325590194], [-77.43893767509013, 34.68117527918787], [-77.43917521255943, 34.681137852707145], [-77.43934973069118, 34.681101112853526], [-77.43971163992926, 34.68108466520854], [-77.43983220667221, 34.68108168700722], [-77.4403942201155, 34.68131300104502], [-77.44041460768972, 34.68132098932555], [-77.4404277197495, 34.68136775746409], [-77.4405925384564, 34.68195171337586], [-77.4406155536538, 34.68212990764799], [-77.44049048197431, 34.682965727720116], [-77.44048390013532, 34.68303180759499], [-77.4404836887725, 34.683077771174425], [-77.4403221835612, 34.6835343043104], [-77.44032978701196, 34.68358842764814], [-77.44035132344621, 34.683717930290705], [-77.44036106337711, 34.683798573316274], [-77.44037206337747, 34.68383126417618], [-77.44046730087149, 34.68397742428822], [-77.44079512735723, 34.684211354779706], [-77.44081146750688, 34.68398489563635], [-77.44083819135159, 34.68390789928685], [-77.44086318432164, 34.683812151291626], [-77.44087297106684, 34.68372688026147], [-77.44086837826788, 34.68358339640243], [-77.44087598076933, 34.683360402338195], [-77.44063446370933, 34.6830844506325], [-77.44062211987323, 34.68301997862858], [-77.44095682747746, 34.68223259580542], [-77.44106775885344, 34.682117870765545], [-77.44139252946039, 34.68180552704941], [-77.4415313765293, 34.68167633534336], [-77.44200270751305, 34.68132668916583], [-77.44241401644642, 34.68101660084911], [-77.44281865503658, 34.68078969263844], [-77.44359923770487, 34.6808842053745], [-77.44367324918511, 34.68109356612207], [-77.44373373771968, 34.681372870667374], [-77.44363417040132, 34.681374952092796], [-77.44358356419562, 34.68140373202236], [-77.44321261132173, 34.68143359287387], [-77.44272672221541, 34.681579826613074], [-77.44299491428553, 34.68202934319432], [-77.4429779230115, 34.682226687061245], [-77.44319061341422, 34.68276268332698], [-77.44323020748855, 34.68282392810719], [-77.44365608680178, 34.68302281439303], [-77.44408035809289, 34.68336180234836], [-77.44421849117386, 34.68363985508152], [-77.44445158433753, 34.68345854960131], [-77.44455178083138, 34.68333595538832], [-77.44501773615278, 34.68309173388066], [-77.4451104916112, 34.683040168911106], [-77.44516702818488, 34.68299201738354], [-77.44537558040415, 34.68296215244889], [-77.44555007833202, 34.6830109718434], [-77.44567367778359, 34.6830392086948], [-77.44602854111287, 34.68304530707377], [-77.44633119614808, 34.68298122279164], [-77.44647362146843, 34.68288976394172], [-77.44677715227154, 34.68277353568348], [-77.4470359745246, 34.682759763962146], [-77.44734637111029, 34.68263583744246], [-77.44756648588267, 34.68256831939861], [-77.44774818369193, 34.682512584690826], [-77.44835654185466, 34.682429945511], [-77.44839440366664, 34.682426158335744], [-77.44841857827929, 34.68241002676251], [-77.44861443718894, 34.68236146677698], [-77.44924574607384, 34.68232227508719], [-77.44966725527752, 34.68252352075142], [-77.44971276385706, 34.6827956822868], [-77.44982582990886, 34.68294354893835], [-77.45010027867241, 34.68324208935048], [-77.45036481007384, 34.6834034249217], [-77.45037232373092, 34.6834092750556], [-77.45037890587622, 34.68341036519063], [-77.45067144990355, 34.68348277851859], [-77.45086497576033, 34.68347320009578], [-77.45112262866546, 34.68339683702423], [-77.45125353240417, 34.68336059890575], [-77.45138683792351, 34.68322455997384], [-77.45160255671625, 34.68318339814144], [-77.45209968106728, 34.68297512384338], [-77.45243668469878, 34.683443907828604], [-77.45259064092762, 34.683493323468134], [-77.45273974726624, 34.68354656960311], [-77.45287974823611, 34.68360149160791], [-77.45309233843692, 34.68361653406636], [-77.4531965621052, 34.68361380292416], [-77.45323722992259, 34.68361194892134], [-77.45329647675904, 34.68359764430392], [-77.45341673019068, 34.68353149963711], [-77.45347127437788, 34.68345828637432], [-77.45349006467342, 34.683385803401215], [-77.45334117890403, 34.6831134597058], [-77.45331407974376, 34.68307750114154], [-77.45329038757168, 34.68303651044857], [-77.45329058055816, 34.682951624455775], [-77.4531400654839, 34.682424963864065], [-77.45311134601505, 34.682269302754044], [-77.45310046648142, 34.682131620365794], [-77.45310329170542, 34.681898094465694], [-77.45310541086593, 34.68185384539415], [-77.4530858237161, 34.68178011737068], [-77.45285774406494, 34.68148234850652], [-77.45264745536416, 34.68107999176067], [-77.45241036044982, 34.68077632245157], [-77.45167199390778, 34.68023479803982], [-77.45164742565385, 34.68020624767097], [-77.45163524688377, 34.680191655442556], [-77.45144528771293, 34.67959253200232], [-77.45143190967836, 34.68015087643237], [-77.45126034132778, 34.68036372424983], [-77.45090236595182, 34.68054416104237], [-77.45079205799475, 34.68055928048243], [-77.45021619306374, 34.680624558800375], [-77.44988137461634, 34.680370781555844], [-77.44909533645186, 34.680452133040916], [-77.44898755244913, 34.680441856667784], [-77.44895397660919, 34.680433995006005], [-77.44888740787229, 34.68037944707801], [-77.44901051221112, 34.680362433172654], [-77.44961258859914, 34.67993153291734], [-77.45008671292172, 34.6796806529816], [-77.4510578528222, 34.678897231948284], [-77.45115805823382, 34.678816397081114], [-77.45121905976427, 34.678767186450315], [-77.4514699079019, 34.678564821935545], [-77.45165915358804, 34.6783721819978], [-77.45187647069626, 34.67806805936978], [-77.4519751786725, 34.67789726641579], [-77.45199036995498, 34.67786858444461], [-77.45200172225906, 34.67778340811141], [-77.45200672146139, 34.677254924611695], [-77.4520893116646, 34.67712621342574], [-77.45218361329452, 34.67677833776064], [-77.45220273447687, 34.67670406755156], [-77.45205576516517, 34.6763972504823], [-77.45217814886001, 34.67587058057319], [-77.4521709326312, 34.67562590088659], [-77.45222141355295, 34.67547184407987], [-77.45398252664089, 34.67363248808811], [-77.45401310839843, 34.67360448537429], [-77.45403954310044, 34.673616236149016], [-77.45404685565234, 34.673632456189054], [-77.45535647396298, 34.67471790004688], [-77.455808363826, 34.67509242940443], [-77.45660503741365, 34.675765370606975], [-77.4566702595097, 34.67582046325424], [-77.45669131626326, 34.67584241653432], [-77.45674385266051, 34.67705261210571], [-77.45675880939957, 34.67727228743016], [-77.45656517147034, 34.67782554360883], [-77.45682029883349, 34.67831805341009], [-77.4569460268579, 34.67869598714275], [-77.45710864837937, 34.678990405059565], [-77.45756531968752, 34.67981715754522], [-77.45772608444652, 34.67995069581952], [-77.45778631214708, 34.679991310022366], [-77.45789378790609, 34.68008299755138], [-77.45907890539705, 34.68104212484693], [-77.45934774412851, 34.68174128920341], [-77.46009699779333, 34.68317931811139], [-77.45982700602679, 34.68392890311369], [-77.45917227333548, 34.686581676672944], [-77.45900265835706, 34.68726881445456], [-77.4587803187745, 34.68793761688903], [-77.45814349251911, 34.690880306275794], [-77.45746501118613, 34.691203413405795], [-77.45688472289999, 34.69230080076707], [-77.45843404237345, 34.69209701956258], [-77.45910018867272, 34.69244314301986], [-77.46191811227496, 34.69377025374689], [-77.46286434977388, 34.69450601252729], [-77.46448314561074, 34.69627056117914], [-77.46478935542044, 34.696715054193525], [-77.46621552625494, 34.698732496857154], [-77.46642257645746, 34.699032174330284], [-77.46660361687704, 34.6993077188029], [-77.46702343718937, 34.699405544496194], [-77.46889753374411, 34.699784260583705], [-77.46902836671815, 34.69978749988142], [-77.46935923305945, 34.69983058862157], [-77.47094170825892, 34.69982604819106], [-77.47156947535757, 34.69986445692836], [-77.47239125938319, 34.70011073244993], [-77.47419731744239, 34.70152027552736], [-77.4754676396275, 34.70239737941557], [-77.474255779109, 34.70601227157815], [-77.47427645672494, 34.70646680815869], [-77.47424142721566, 34.70824305258165], [-77.47419816566165, 34.708513584771524], [-77.47485702981426, 34.70920738906919], [-77.47515180317474, 34.709649749091184], [-77.47522908187734, 34.709640695467264], [-77.47642362846372, 34.709684284744725], [-77.47729951882312, 34.71020615276259], [-77.47748668273474, 34.708697606443806], [-77.47748669802566, 34.707140467607715], [-77.47748665626355, 34.70600344525822], [-77.4774105015742, 34.705157580490535], [-77.4774866228233, 34.70453473242418], [-77.47871877014941, 34.70461101730427], [-77.48042174595446, 34.7047164432889], [-77.4809558222307, 34.704221396988515], [-77.48529571750902, 34.705395440310376], [-77.4853449970079, 34.70540964062011], [-77.48534806575336, 34.70541094246236], [-77.4853505701015, 34.70541211189803], [-77.49025252656104, 34.70618115429024], [-77.49153563252202, 34.70639955436018], [-77.49267688273778, 34.70666290728248], [-77.49353878545145, 34.70683111635973], [-77.49516179021404, 34.706934810827526], [-77.49709723455643, 34.70666294261119], [-77.49984525681987, 34.70649872980725], [-77.50042036854767, 34.70647779847534], [-77.50068646384919, 34.706544927363616], [-77.50077998437098, 34.70632860967153], [-77.50350075788575, 34.70516256957951], [-77.50365518575559, 34.705096381672796], [-77.50391117793446, 34.70479911929058], [-77.50540890950572, 34.70347280821423], [-77.50580637087432, 34.70295041912604], [-77.50665790782553, 34.70167316665665], [-77.50719244451986, 34.70077259085805], [-77.50766702857766, 34.70001256735976], [-77.50797215526644, 34.69989628285119], [-77.50887296976934, 34.699872218951754], [-77.50979754817385, 34.70045237529919], [-77.50986551404111, 34.70048864082279], [-77.51008751240865, 34.70063431634408], [-77.51131591856853, 34.70170331330872], [-77.51189530400879, 34.702240670851374], [-77.5142799759112, 34.70482681853558], [-77.51582757346402, 34.70638207085827], [-77.51614709108209, 34.706828069758636], [-77.51840921049875, 34.711561147849835], [-77.51897846028945, 34.71267697847232], [-77.51903947622883, 34.712763623877684], [-77.51908659271085, 34.71286020248846], [-77.52013965778895, 34.71531720856664], [-77.52034812970058, 34.71578893468197], [-77.52065785647677, 34.71630195848938], [-77.52175238999824, 34.71811484219923], [-77.52211507590297, 34.71862263396047], [-77.52261234726942, 34.71841469817233]], [[-77.40327145228879, 34.62381783879289], [-77.40372865531776, 34.62413939735656], [-77.4043784266068, 34.623865576340656], [-77.40679244803644, 34.62291427580354], [-77.40620983806195, 34.62459982731855], [-77.40670779229748, 34.626037991431], [-77.40669795038912, 34.62622770287642], [-77.40670532451331, 34.626417613549485], [-77.40688266922398, 34.62651616757689], [-77.40784542713217, 34.627098905817654], [-77.40845971946983, 34.62748673648665], [-77.40884826709187, 34.62719722469544], [-77.41003656939658, 34.62661113477412], [-77.41048554936741, 34.62568110642544], [-77.41030922654353, 34.62541274017411], [-77.41003641127907, 34.62537600005906], [-77.4095648963481, 34.62462338117827], [-77.40863625513421, 34.62444017169508], [-77.40845938406537, 34.62439701251066], [-77.40829127821407, 34.624480529908745], [-77.40816614303839, 34.62431753087719], [-77.40729618550215, 34.62319043380581], [-77.40691776260395, 34.62279937099912], [-77.40690084109171, 34.62278188425158], [-77.40688233620267, 34.62276276039633], [-77.40547576983171, 34.62130913724121], [-77.4068820522447, 34.61946297175634], [-77.40689474890038, 34.61941975452879], [-77.40697372827358, 34.619394677980814], [-77.40700930327493, 34.61925246746768], [-77.40724689284448, 34.618506103788974], [-77.40688196814635, 34.61846762818067], [-77.40631495317936, 34.618402138026475], [-77.40567473775505, 34.61788381541702], [-77.40548680330707, 34.61771525366124], [-77.40530511060383, 34.61747470156294], [-77.40476206336405, 34.617166357079284], [-77.40461124620896, 34.61708628630595], [-77.40451669642698, 34.616992101251896], [-77.40441899997654, 34.61711062360108], [-77.40434815031708, 34.61722607992645], [-77.40372834747612, 34.61774929737667], [-77.40351107368032, 34.61796197761626], [-77.40310163591111, 34.618080952169066], [-77.40293996794219, 34.618062001075], [-77.40248847762146, 34.61798066798509], [-77.40225723138282, 34.617527752150686], [-77.40215155629689, 34.61740977005183], [-77.40164764275386, 34.61730929090269], [-77.40088948714369, 34.616875916779726], [-77.4013071394167, 34.61602684188563], [-77.40118937417601, 34.61598350839507], [-77.40057476811985, 34.61580180222876], [-77.40050663587981, 34.616008613488454], [-77.40050404679555, 34.61608237271246], [-77.40036423461179, 34.616724919875146], [-77.39997002132102, 34.61700855419468], [-77.39978639042315, 34.617457244668174], [-77.39910591961251, 34.617133197413736], [-77.3990075986397, 34.61713704591783], [-77.39899800440315, 34.61713164151493], [-77.39830288821604, 34.616399880331805], [-77.39822929783767, 34.61638931460692], [-77.39820963425548, 34.616344478920446], [-77.39786491980115, 34.61603847820149], [-77.39782831596136, 34.61602990290067], [-77.39767509283097, 34.61591467460024], [-77.39758560784064, 34.61632631501768], [-77.39769440050344, 34.616487644363716], [-77.39799943043576, 34.616670044357406], [-77.39820962173185, 34.616933575677194], [-77.39884406578378, 34.61717096735541], [-77.39895388280704, 34.61720264806366], [-77.39899800398423, 34.6171680890051], [-77.39968445177253, 34.61789889398008], [-77.39899798833127, 34.61859831451736], [-77.39863916744504, 34.618436137329], [-77.39852470831914, 34.618405573314284], [-77.39820959262863, 34.618342519238105], [-77.39805788143133, 34.61829691068494], [-77.3978655428409, 34.61821526048915], [-77.39798454731269, 34.61838647018793], [-77.39793596108422, 34.618575666285096], [-77.39801248474683, 34.61871083737975], [-77.39808786303813, 34.61868485812945], [-77.3982095841061, 34.618769576317], [-77.39849834068498, 34.61860812362744], [-77.39852064856203, 34.61891590720573], [-77.39887028552478, 34.61900301257284], [-77.39899798334085, 34.61908351946706], [-77.39952127727582, 34.61962072376417], [-77.39907167905305, 34.620455333133634], [-77.39907103217969, 34.620534813434794], [-77.39903470447094, 34.62057961827421], [-77.39899796874812, 34.62060771386076], [-77.39895521579324, 34.620597564590824], [-77.39839287155726, 34.620830073871105], [-77.39820954428598, 34.620860842267035], [-77.39791501679105, 34.621126121207716], [-77.39820953793324, 34.621210631391534], [-77.39848243435112, 34.62117494226124], [-77.39867820362369, 34.6214406187232], [-77.39883838191835, 34.621589382857486], [-77.39881130035326, 34.62184599497378], [-77.39899795667978, 34.62203078112253], [-77.39909086057786, 34.62213018687639], [-77.39939203511642, 34.62218665706459], [-77.39939217269588, 34.622186506280244], [-77.39939271442216, 34.62218670725515], [-77.39972693021569, 34.62220253794305], [-77.39978638994292, 34.6222100744259], [-77.40045199833537, 34.62216619509587], [-77.40057482532737, 34.62229095120233], [-77.40172497861484, 34.62230984781336], [-77.40328251947602, 34.623323878606904]], [[-77.34428709917833, 34.764470459200595], [-77.34442285942956, 34.76293819581621], [-77.34429311260264, 34.76288914207578], [-77.3442199367488, 34.762858181957434], [-77.3434999001926, 34.76209002410825], [-77.3433922963053, 34.76200503796294], [-77.34336782885691, 34.76166738074016], [-77.343333963585, 34.76162540596924], [-77.34309153013508, 34.76144793673075], [-77.34309926809283, 34.76141390431941], [-77.34287366712974, 34.76130633292999], [-77.34256061013366, 34.76148777430792], [-77.34254935401992, 34.761519602417565], [-77.34242997452884, 34.761749376244055], [-77.34215552611832, 34.7621675760919], [-77.34212265053705, 34.762278895546714], [-77.34203460000997, 34.76234023350485], [-77.34194603579928, 34.76243658430891], [-77.34150241031693, 34.762851322223945], [-77.34136081820606, 34.763019998434814], [-77.34103445159718, 34.763402863056996], [-77.34077058113314, 34.763773777566826], [-77.34055224981715, 34.76418852821094], [-77.34043409904132, 34.764459931256724], [-77.34036324018435, 34.76468958052145], [-77.34037483548758, 34.7647190880882], [-77.34054454513144, 34.764932162040644], [-77.3405714761898, 34.764962077891184], [-77.34095852809095, 34.76536277254754], [-77.3409945395696, 34.765425163478525], [-77.34105537585944, 34.76550060886851], [-77.34143262576097, 34.76587670180963], [-77.3415079898027, 34.766004657122565], [-77.34188274508472, 34.76603557913756], [-77.34211018068044, 34.76599414931501], [-77.3425023320639, 34.76584264828143], [-77.34340400178235, 34.76566540853717], [-77.34427818403218, 34.76560418072703]], [[-77.45886911151847, 34.50783406850342], [-77.46011949292989, 34.50811392684543], [-77.46070597111157, 34.50823909355479], [-77.4608798580178, 34.50821664468137], [-77.46090911218558, 34.50813296363645], [-77.46100601331729, 34.50785578456196], [-77.4610305762169, 34.507695819650124], [-77.4610243583197, 34.507289839096515], [-77.46081425533265, 34.507170534970506], [-77.46071112138873, 34.50667057541348], [-77.46068879569582, 34.50634176737766], [-77.46056759167912, 34.505806984417646], [-77.46064834928545, 34.50513754803892], [-77.46064813677485, 34.50513556056347], [-77.46065027390456, 34.505135006358955], [-77.46065146681805, 34.50513453688401], [-77.46067279769638, 34.50512477457673], [-77.46184845827429, 34.50458672104119], [-77.4619059017425, 34.504556811085294], [-77.46194211737762, 34.50452573437712], [-77.4622448308696, 34.50430342998391], [-77.46281559011034, 34.50389455615191], [-77.46288028019444, 34.50384201479427], [-77.46296575805113, 34.5037476036366], [-77.46334485761834, 34.50324590379556], [-77.46359502645669, 34.503001120338034], [-77.46364517204466, 34.50278883811494], [-77.46370907625504, 34.50258887635329], [-77.46373297323578, 34.502474102206875], [-77.46376537798537, 34.50194310428002], [-77.46376295862692, 34.50191609873468], [-77.46372675367994, 34.5018770654183], [-77.46369645268048, 34.50149516794003], [-77.46365804692948, 34.50123526206173], [-77.4636536232797, 34.501218572571446], [-77.46361214579059, 34.50118694403132], [-77.46353170184855, 34.50118831284195], [-77.46230581597489, 34.50113989167593], [-77.46225319236794, 34.50114238872], [-77.46222124028776, 34.50114583633229], [-77.4610178448611, 34.501549771257224], [-77.4607207398422, 34.50160505981396], [-77.46061404555988, 34.501756252479446], [-77.45987994375956, 34.50238472814451], [-77.45985954379294, 34.50241802867643], [-77.45930000433877, 34.50304056004909], [-77.4592249178352, 34.503254623062794], [-77.45892842378045, 34.5037588567561], [-77.45776975387955, 34.50431386658988], [-77.45741953062387, 34.504753827301684], [-77.45730275964104, 34.50531960647231], [-77.45734434925446, 34.50564329372564], [-77.45747083016704, 34.50596682322434], [-77.45774052681645, 34.50665670511647], [-77.45799444528333, 34.50702735054888], [-77.45838653106887, 34.5075996747082], [-77.45859901910215, 34.507774016625]], [[-77.39762372641046, 34.54058318603258], [-77.39952836178092, 34.53934698463221], [-77.40048230480885, 34.53901150833219], [-77.40056369226288, 34.53723885373937], [-77.40056894818743, 34.53706718969466], [-77.40064518883746, 34.535414836216056], [-77.40067148720141, 34.53526460342267], [-77.4003607894012, 34.53497954529335], [-77.40022946319773, 34.53476390179791], [-77.4002578400776, 34.534344970783124], [-77.40011887506999, 34.53434459842571], [-77.40010585771297, 34.53435899212094], [-77.40008067633315, 34.53437054527505], [-77.40007595547648, 34.53484106744561], [-77.39932387955997, 34.53478767727374], [-77.39900655075121, 34.53472440611749], [-77.39893221505632, 34.53474889504507], [-77.39885345205606, 34.534743323063196], [-77.39853826444077, 34.534812068876896], [-77.39800311265216, 34.53482651097815], [-77.3977500621229, 34.53495174342069], [-77.39745184837814, 34.53523966479483], [-77.3971775924121, 34.53541838493073], [-77.39694767550836, 34.5357232727842], [-77.39690739112201, 34.53578363477283], [-77.39688677263678, 34.535810891692364], [-77.39660845275546, 34.536134911993955], [-77.39640479115604, 34.536370122221825], [-77.39630626004573, 34.536484609222285], [-77.39613915928301, 34.536767139628786], [-77.39607186471913, 34.5368672696793], [-77.39604151779119, 34.53691221949295], [-77.39593993016813, 34.53704721831657], [-77.39568626066529, 34.53745315765364], [-77.39569777789502, 34.537678637382925], [-77.39533005234647, 34.53783642089857], [-77.39505688057852, 34.53771604835617], [-77.39493947745478, 34.537748535681374], [-77.3948634047745, 34.537769585937504], [-77.39466909392159, 34.53800975593498], [-77.39477587427457, 34.53807420315296], [-77.39531737018919, 34.538401022181674], [-77.39537875373388, 34.538438069846606], [-77.39604956099913, 34.538842925958214], [-77.39608535336583, 34.53886457425479], [-77.39608588579881, 34.538868299765234], [-77.39724334858491, 34.53967679105695]], [[-77.33750439264625, 34.65972888561089], [-77.33746919466662, 34.65966500179942], [-77.33745521823018, 34.65963927854273], [-77.33742153688374, 34.659576043294905], [-77.33726943014287, 34.65950955765569], [-77.3373159242048, 34.65968603172825], [-77.33741753431707, 34.659713866866404], [-77.33746402547669, 34.65978746222743]], [[-77.39628603911777, 34.614992478685345], [-77.39584452548094, 34.615719056183295], [-77.39576177484057, 34.615828106797096], [-77.39562457332185, 34.61593701660737], [-77.39577849164465, 34.61598592838263], [-77.39584451257659, 34.615974987590114], [-77.39597345512178, 34.61602558538916], [-77.39667389225835, 34.61578568309879], [-77.39722916577767, 34.61549867483005], [-77.39677515125983, 34.614921937725235], [-77.39674931745401, 34.61480031153327], [-77.39669324738017, 34.614509178777745], [-77.39669854018469, 34.614437771424555], [-77.39663296028607, 34.614263377721656], [-77.39638528559038, 34.61439578583159], [-77.39623877014913, 34.61447411394031], [-77.3961893467786, 34.61452862155859], [-77.39619221162849, 34.61463157933643]], [[-77.386269043826, 34.594359245829516], [-77.38631968413358, 34.59427868030088], [-77.38638771055349, 34.594162515494084], [-77.38653739144247, 34.593632581208105], [-77.38662827900308, 34.593458323152724], [-77.38697120544515, 34.59318819294478], [-77.38717608167649, 34.59300725805614], [-77.38724125052184, 34.592945385087965], [-77.38739543052151, 34.59273485733075], [-77.38743690112116, 34.5927048939846], [-77.38747475851656, 34.592590012470154], [-77.38749790593765, 34.592483814897015], [-77.38757027840877, 34.592315043444216], [-77.38762033144913, 34.59209548282182], [-77.38764459339498, 34.59203809869301], [-77.3877486897289, 34.59183096153399], [-77.38757037465234, 34.59173827514552], [-77.38751918811089, 34.59163161166922], [-77.3872802891084, 34.59155405190041], [-77.38717638403267, 34.59124486332968], [-77.38691638961616, 34.591149512964805], [-77.38638825502844, 34.59114774883231], [-77.38623812080436, 34.59112892463275], [-77.385991856182, 34.59100267193607], [-77.38573920133838, 34.59088929263226], [-77.38560017371246, 34.59080929655888], [-77.38521401224584, 34.59069873932707], [-77.38541221407826, 34.591086233984406], [-77.38546642059632, 34.59122243702239], [-77.38546847354493, 34.59150269041209], [-77.38560001233337, 34.59165385965286], [-77.38569577792681, 34.59179128534996], [-77.38575301431652, 34.59188623758813], [-77.38578758677295, 34.59208342814058], [-77.38561956971287, 34.59273331609988], [-77.38562257304862, 34.59275417498452], [-77.38561090096727, 34.59276781708354], [-77.38559979808441, 34.59277923554776], [-77.38525657748416, 34.59328640242422], [-77.38511124364564, 34.593354112622364], [-77.38481148862725, 34.59352109531681], [-77.3841467828039, 34.59296691278233], [-77.38407441892755, 34.59292242602344], [-77.38402345185196, 34.59288662296824], [-77.38387090578328, 34.59274649155247], [-77.38368969162919, 34.592673172948516], [-77.38362941257239, 34.592688233488865], [-77.3835778508683, 34.59267990726995], [-77.38323531867559, 34.59274848846582], [-77.38295952237911, 34.59258608371681], [-77.38284132307245, 34.592364984426986], [-77.3826855607141, 34.59232840269247], [-77.3824825879498, 34.59231959034526], [-77.38244728514994, 34.59218314174511], [-77.38223048308237, 34.592160413972096], [-77.38184292797854, 34.59225181473041], [-77.38165916144703, 34.592041815919], [-77.38153155043153, 34.591783149688744], [-77.38152442190218, 34.5916466278985], [-77.3812651932644, 34.59158854263038], [-77.38115740435526, 34.5916995237665], [-77.38101272173418, 34.59187301081076], [-77.38103032491053, 34.59197077665843], [-77.3811868529006, 34.59211984374359], [-77.38121256396764, 34.59217268587218], [-77.38160258798116, 34.59248449085231], [-77.38162110756514, 34.59252269566359], [-77.38165902640813, 34.59261011041959], [-77.38193677656352, 34.59328545412767], [-77.38192795520624, 34.59384580947461], [-77.38211835794164, 34.59410841086582], [-77.38196268324855, 34.59445845774298], [-77.38175871180354, 34.59500937572384], [-77.38167265235239, 34.595855402299605], [-77.38166814270944, 34.59587155766819], [-77.38166690262901, 34.59588105380094], [-77.38165825037271, 34.595895698911875], [-77.38093738121064, 34.596898791896656], [-77.38081836726708, 34.59689857409325], [-77.38008153792151, 34.59718448696945], [-77.37975047014531, 34.597489597841474], [-77.37929315720939, 34.597852295370856], [-77.37922973554154, 34.59792120965635], [-77.37898639381523, 34.59847510591959], [-77.37890779930709, 34.59881672469339], [-77.37897608221161, 34.59914809405215], [-77.37929276773595, 34.59934212077019], [-77.37949864150218, 34.59958071270981], [-77.37969972102083, 34.59996229767631], [-77.37970212089446, 34.59997595523333], [-77.37970871688768, 34.59999870887929], [-77.3798614993941, 34.600189210187196], [-77.37998338453374, 34.600255085639915], [-77.38008075609862, 34.600288110778195], [-77.38010602039682, 34.600315092998706], [-77.3802108802628, 34.60032720568471], [-77.38027780358561, 34.6003331691866], [-77.38044628827971, 34.60032406620674], [-77.38047486465528, 34.60032383235508], [-77.38075262284221, 34.600249137481974], [-77.38077503531699, 34.6001446562305], [-77.38075223891981, 34.599824629059455], [-77.3808358774603, 34.59942390874999], [-77.38084181361148, 34.59938715680606], [-77.38086921914494, 34.599342869647046], [-77.38124955403367, 34.59888887188221], [-77.38165766287537, 34.598406226737666], [-77.38214030238815, 34.59868001683328], [-77.38244584872423, 34.598540957611746], [-77.3832309517592, 34.599039594514444], [-77.3832339589865, 34.59904020300426], [-77.38323551658817, 34.599040498307474], [-77.38323583961443, 34.599042129800395], [-77.38366926619199, 34.599359772486494], [-77.38369363161283, 34.599471436888834], [-77.38375018981446, 34.59981712570897], [-77.3837721749733, 34.60008304830202], [-77.38379460130687, 34.60023528983006], [-77.3838551215531, 34.60040623226094], [-77.38402191553564, 34.60033995188388], [-77.38413634603913, 34.60048729465345], [-77.38422972938898, 34.600597137997354], [-77.38435659944142, 34.60064281083493], [-77.38441596996937, 34.60065401350128], [-77.38450642872702, 34.60067208714538], [-77.384525362773, 34.60067237392232], [-77.3846130405146, 34.60059577897608], [-77.38467145195231, 34.60053346879682], [-77.38471482539805, 34.600424546273125], [-77.38481017914509, 34.60018508522438], [-77.3851046996487, 34.600046453265676], [-77.38518759437366, 34.600016478949044], [-77.38523196721644, 34.59999833602244], [-77.38559849069267, 34.599753675404386], [-77.38590811361126, 34.60002160901796], [-77.38599254236354, 34.60009812702555], [-77.38623739250039, 34.60030774240906], [-77.38632119611279, 34.600366130071976], [-77.3863865971413, 34.60044366442853], [-77.38651543492985, 34.600553415384326], [-77.38658361565712, 34.600674916712904], [-77.38659988546694, 34.60068005392351], [-77.38675396886228, 34.60068660843011], [-77.38678067241332, 34.600687902105044], [-77.38681488715856, 34.600685917368594], [-77.3871748333029, 34.60042853301081], [-77.38749060796283, 34.60046725836218], [-77.38771927823538, 34.600356748747394], [-77.3879631009489, 34.60020749287523], [-77.38804205413939, 34.60013261979605], [-77.38856746306492, 34.599971829277344], [-77.3887112801118, 34.59990790086125], [-77.38875137709486, 34.59989852987734], [-77.388801316313, 34.59988431762603], [-77.38939667421278, 34.599698270106096], [-77.38953965503073, 34.59953286946826], [-77.38979707302931, 34.59951723341861], [-77.39032789760067, 34.59938647853964], [-77.3908272502126, 34.599334801449295], [-77.39111613143497, 34.59928769250215], [-77.39126278018394, 34.599425202303394], [-77.39154583340601, 34.599542386400884], [-77.39178356089661, 34.59963819071004], [-77.39190430599831, 34.599709948887195], [-77.39228177982125, 34.599842921669], [-77.39230710459036, 34.59984780589746], [-77.39269251066023, 34.59990937746672], [-77.39333042136224, 34.600134176032775], [-77.39342953949104, 34.60017500957169], [-77.39348071011858, 34.600204296847615], [-77.39375004584033, 34.600363823576046], [-77.39387480451992, 34.60043802042427], [-77.39389711370379, 34.60045298594908], [-77.39421385988369, 34.60037201871102], [-77.3942689246702, 34.60037836203439], [-77.3942994699743, 34.60038608607834], [-77.39440865743873, 34.60034148745485], [-77.39446598992043, 34.60027927472644], [-77.3945211347927, 34.60023414033333], [-77.39466306641698, 34.60002580256289], [-77.39480757223848, 34.599921140523335], [-77.39489871814263, 34.59973726382512], [-77.39505721290416, 34.59956117374332], [-77.39529924077802, 34.599589490834944], [-77.39551261629654, 34.59946090285451], [-77.39584544221181, 34.59944082399601], [-77.39592852258144, 34.59942439269724], [-77.39604249883455, 34.59941586726326], [-77.39621019138444, 34.599325902145175], [-77.39623955997557, 34.59931013651266], [-77.39625209741651, 34.59930172602968], [-77.39626851216772, 34.59928585239773], [-77.39646546776521, 34.599076226608155], [-77.39663369301662, 34.59886728081008], [-77.39666426493312, 34.598837129448384], [-77.39674557035354, 34.598792467994635], [-77.39705374282926, 34.598351364098406], [-77.39742193085652, 34.598340201541866], [-77.39777557593123, 34.59826290858814], [-77.39781603926744, 34.598246904914774], [-77.39784509975061, 34.59824059570726], [-77.39796845014457, 34.59819149487718], [-77.39800219170014, 34.598174882229365], [-77.3980130950952, 34.59814693037799], [-77.3980765816156, 34.59803199999493], [-77.39813648691754, 34.59782204879838], [-77.39792887380749, 34.59777263109362], [-77.39781605873372, 34.59775557404274], [-77.39748158028654, 34.597772920560224], [-77.39742195806718, 34.59772640904401], [-77.39736168957654, 34.597789524198504], [-77.39672984031206, 34.59794559269791], [-77.39668554087285, 34.598007789496755], [-77.39663373883383, 34.59801083217742], [-77.39660018968974, 34.59800043768392], [-77.39609059967205, 34.598301831378336], [-77.39584551122523, 34.59833943267272], [-77.39563404248938, 34.59833146814935], [-77.39537491900194, 34.59848320860623], [-77.39505727860762, 34.598647683198266], [-77.39479583816032, 34.598792052299736], [-77.39453804497576, 34.59882108423172], [-77.39426905719041, 34.59874331718605], [-77.39423804578274, 34.5987295678831], [-77.39398096331506, 34.59865244473833], [-77.3935101630664, 34.59840997306821], [-77.39349863643594, 34.59839250035238], [-77.39348087451192, 34.59839168628207], [-77.39344300478162, 34.598378860023864], [-77.392899172458, 34.59827562607849], [-77.39269271383468, 34.59788652891062], [-77.39255070470695, 34.597852189457164], [-77.39240735630203, 34.59771987112387], [-77.39252549034701, 34.59752264378491], [-77.39269275778639, 34.597452825830835], [-77.39286260890584, 34.59747123320518], [-77.3934809851485, 34.59718703200218], [-77.39382411094294, 34.59703605183889], [-77.39426920070366, 34.59699972245893], [-77.39502245149338, 34.59653126502383], [-77.39505743349676, 34.59652580959894], [-77.39506962585617, 34.59649990788149], [-77.39507838932347, 34.59648551077064], [-77.39532519613036, 34.596161471492536], [-77.39543754544674, 34.595994030434625], [-77.39545156717797, 34.59599058635033], [-77.39577199797458, 34.59553632355147], [-77.39581153671305, 34.595493821978], [-77.39584569705482, 34.595438316311245], [-77.39616205580205, 34.595055488760934], [-77.3961366817915, 34.59494803456847], [-77.39649125225148, 34.594583431096254], [-77.396095757572, 34.59437115004012], [-77.39584575754638, 34.5945146220572], [-77.39570269065793, 34.59454304491754], [-77.39532793148194, 34.59475123168991], [-77.39514240044124, 34.594869398712845], [-77.39505754827591, 34.59498249868868], [-77.39491370699557, 34.59496594485322], [-77.39426933355716, 34.595408265201506], [-77.39393524212291, 34.59544131674262], [-77.39383232847888, 34.59543774521392], [-77.39348113675356, 34.59555361462674], [-77.39303717162773, 34.59555992008021], [-77.39269296865547, 34.59539031269255], [-77.39233739250267, 34.5951825421252], [-77.39214620817907, 34.594950070751494], [-77.39210647138714, 34.59458389244108], [-77.39210599081915, 34.594366773364925], [-77.39215107562086, 34.59409508668286], [-77.39209844340448, 34.593727159151754], [-77.3920929233599, 34.59351951855593], [-77.39215240288671, 34.59335289720679], [-77.39229911485867, 34.59319648324592], [-77.39237502887175, 34.593136045378], [-77.39241210591896, 34.59304891826569], [-77.39233943215183, 34.59301598350216], [-77.39229913540676, 34.59300853844576], [-77.39221083774936, 34.59298281154314], [-77.39190504676733, 34.59307887444518], [-77.39189438847575, 34.593123579946635], [-77.39187808646258, 34.59315496754244], [-77.39181820237906, 34.593346851604586], [-77.39181602346879, 34.593463587522194], [-77.39181561956617, 34.59355950883378], [-77.39176406572209, 34.5937187513215], [-77.39171187547021, 34.594215634280985], [-77.39166736967049, 34.59443002654019], [-77.39159405523561, 34.59495492145336], [-77.39111663961512, 34.59507398458442], [-77.39096075853118, 34.595213143174384], [-77.3903538457701, 34.595441174239504], [-77.39032840811703, 34.5954555533104], [-77.39031586363593, 34.59546054011968], [-77.38960979319933, 34.595500905897], [-77.38954021882569, 34.59548472564189], [-77.38942540390713, 34.59547875513375], [-77.38914612685656, 34.59547853742856], [-77.38895246800774, 34.59567064021829], [-77.38894806417801, 34.595882528299654], [-77.38875194090573, 34.59609926301209], [-77.38842795291465, 34.59624638595581], [-77.38826035641274, 34.59629998886101], [-77.3880582223183, 34.596224139382755], [-77.38796372853584, 34.596227399383245], [-77.38795074165044, 34.596225644092776], [-77.38783582558106, 34.596256203219866], [-77.38789368752691, 34.59632330088497], [-77.38779781220072, 34.59650755508218], [-77.38781436423858, 34.59668386475914], [-77.38756948960099, 34.59709732599923], [-77.38754989316496, 34.59712545479225], [-77.38751343220918, 34.59715181776933], [-77.38717533346843, 34.59742667250807], [-77.3869123141995, 34.59737968573428], [-77.38669861995645, 34.59735829465365], [-77.38638717965017, 34.597137703388704], [-77.38617323257608, 34.59715093920811], [-77.38593112697167, 34.59695535747549], [-77.38612292629362, 34.59664293115329], [-77.38638731423514, 34.596380164806334], [-77.38645439900708, 34.59610301038252], [-77.38690800762642, 34.59596539791528], [-77.38641189155425, 34.59521404012181], [-77.38638943384811, 34.59519102407312], [-77.38638881506972, 34.595189725035816], [-77.38638753006842, 34.595169734488465]], [[-77.47612400707396, 34.57342317841635], [-77.47621399259916, 34.574232892073134], [-77.47628601025377, 34.574880918595895], [-77.4762957396929, 34.57494812535172], [-77.47630043950701, 34.575036601404925], [-77.4763729296328, 34.5756646517618], [-77.47625983270285, 34.57691564011432], [-77.47635463004457, 34.57738224032217], [-77.47486124937531, 34.57905054352429], [-77.47474415078183, 34.579296202079625], [-77.47467034390897, 34.580129169051155], [-77.47368960002582, 34.580061039654176], [-77.47377306293939, 34.57936122281737], [-77.4737297512698, 34.57894133865888], [-77.47231722303032, 34.576822596579746], [-77.47157583075514, 34.575710454391704], [-77.47148997070974, 34.57558166254157], [-77.47304586211656, 34.57419962816052], [-77.47358495796306, 34.57393599438084], [-77.47349536937016, 34.57353199148718], [-77.47368232775125, 34.57275283812425], [-77.47407513200804, 34.57163012750071], [-77.4753672547823, 34.57069070800556], [-77.4753036158695, 34.572059909954696], [-77.47593149554271, 34.57283641500396]], [[-77.33866549222302, 34.691538329640295], [-77.33860538407524, 34.69150014917028], [-77.33848964350717, 34.6916204231203], [-77.33850738189669, 34.69165997645497], [-77.33851851129373, 34.69179917680615], [-77.33868921858887, 34.692308368793206], [-77.3385739167392, 34.69258361272472], [-77.33849724354707, 34.692817737971446], [-77.33819076356085, 34.692927308856284], [-77.33795010755287, 34.6931565612738], [-77.33779021359186, 34.693394175128695], [-77.33776194960987, 34.69342605950572], [-77.33801234267007, 34.69354143481004], [-77.33816239032302, 34.693501984740294], [-77.33858935628344, 34.69353778648339], [-77.33861851016512, 34.69351547509714], [-77.33897577625311, 34.69324205985599], [-77.33899467839449, 34.69301326619255], [-77.33923211327946, 34.69283099053291], [-77.33935623777583, 34.692583477536175], [-77.33940430982452, 34.692469694914124], [-77.33942198418669, 34.69236098617604], [-77.33965808235993, 34.69195709325177], [-77.33964015141358, 34.69194996412801], [-77.33932032763524, 34.69182280665546], [-77.33872879127743, 34.69158761609733]], [[-77.32975733951211, 34.68898886825342], [-77.3298590197187, 34.69043065335373], [-77.33156881709544, 34.69050400926915], [-77.33150953954515, 34.68965353589284], [-77.33117300413565, 34.68941984919746], [-77.33132374104028, 34.68870427200686], [-77.33164809671392, 34.6882661268971], [-77.33167805584912, 34.688047207540315], [-77.3315331821865, 34.68770081016049], [-77.33151708436534, 34.68757867109268], [-77.33140250224392, 34.68744741854557], [-77.33119553164644, 34.687037800277004], [-77.33094663770315, 34.686956269892825], [-77.33087816448005, 34.68688783254049], [-77.3306624981012, 34.68684546181167], [-77.33046645393041, 34.68681044092313], [-77.33039369130213, 34.68679920130966], [-77.33022022499613, 34.68675422970965], [-77.33004983901338, 34.68692946849325], [-77.33005441656847, 34.687127415648234], [-77.32986201351451, 34.68744259342736], [-77.32984562908804, 34.68769885359085], [-77.32965026467994, 34.68795899606188], [-77.3297572660097, 34.688897351633386], [-77.32968522643225, 34.688928942977896]], [[-77.45356460465128, 34.74182715481557], [-77.45359237599268, 34.74189060516858], [-77.45373108457618, 34.74197332340454], [-77.45422204962264, 34.74214362729931], [-77.45428769970073, 34.74213464729119], [-77.45440080451297, 34.74211917581296], [-77.4546966237845, 34.74205484255329], [-77.45489170476165, 34.74204518645735], [-77.45502590043412, 34.74218518392471], [-77.45516642606951, 34.742203819804224], [-77.4552688380215, 34.742307009355784], [-77.45529388075317, 34.742317393897885], [-77.4553225230596, 34.742329271035544], [-77.45546932669683, 34.74226500619425], [-77.45565216751596, 34.74227667438267], [-77.45566517781778, 34.74214127516636], [-77.45567815146495, 34.74200625506622], [-77.4556874905027, 34.74190905469735], [-77.45574483734387, 34.74131222509549], [-77.45577686852964, 34.7409788690503], [-77.45578208561322, 34.7409245782364], [-77.45575773911446, 34.74079758362413], [-77.45571963316048, 34.739784790714765], [-77.45583449540521, 34.7391690430242], [-77.45515502501485, 34.73891726879144], [-77.45479032785316, 34.73921815614196], [-77.45473343468562, 34.7394403924685], [-77.45461431293273, 34.739678333542905], [-77.45423180000877, 34.740383185242685], [-77.45387680472466, 34.74071637391296], [-77.45381883876377, 34.74079795858644], [-77.45376373694525, 34.74092621301613], [-77.45355339709752, 34.74126424912007], [-77.45347922700442, 34.741491392343434], [-77.45347147420463, 34.74151513532076], [-77.45350998103484, 34.741612337658765]], [[-77.32104527489997, 34.756022254906426], [-77.32114580993125, 34.756246228303056], [-77.32123216341962, 34.75636919173887], [-77.32159064710666, 34.75669253728208], [-77.32199026365346, 34.75689266648276], [-77.3222679012427, 34.756960219018524], [-77.32311944087515, 34.75707161241838], [-77.32313611613269, 34.75707265315091], [-77.3231587261701, 34.757063754967575], [-77.32445473824382, 34.75665867965675], [-77.32621545471797, 34.755686565037706], [-77.32506635959359, 34.75455597224011], [-77.32465433156034, 34.75433779295797], [-77.32457782962769, 34.75396145711883], [-77.32497181425879, 34.75360571140867], [-77.32513959775694, 34.753176585381446], [-77.32515522634627, 34.752907625817144], [-77.3249074292678, 34.75256682377299], [-77.32483296575299, 34.75246440987582], [-77.3247236103264, 34.75231400861219], [-77.32453385040432, 34.75226749964299], [-77.32411083279793, 34.75256333669781], [-77.32389926628244, 34.75265516116296], [-77.3237963748755, 34.752743327130275], [-77.32349222503078, 34.753135442629485], [-77.3233726443293, 34.75335240737748], [-77.32334830042336, 34.7533988405082], [-77.32333717066487, 34.753433885794465], [-77.32325918883296, 34.753654729119035], [-77.32318373926552, 34.753891704501854], [-77.32311383973513, 34.75416200364371], [-77.32305263335525, 34.75445860744405], [-77.3226351214102, 34.75467593603922], [-77.32207472946857, 34.754744090245694], [-77.32200726273284, 34.75477483466852], [-77.32197954647691, 34.75478446964062], [-77.32188333771234, 34.75481791437102], [-77.32167353946257, 34.75489232063993], [-77.32158914590755, 34.754920252932095], [-77.32146563565237, 34.75496745890901], [-77.3213289705254, 34.75504708341762], [-77.32121191771273, 34.75515355718836], [-77.32115759524918, 34.75533290886408], [-77.32113136215969, 34.7554082717616], [-77.32111175363691, 34.75548421118179], [-77.32105076311392, 34.7559066741269]], [[-77.4199371014384, 34.525695312059405], [-77.42029475087365, 34.52632219299683], [-77.42041691642952, 34.52653631715481], [-77.42066583276666, 34.52697260205409], [-77.41990860305219, 34.52698058513892], [-77.41943633550284, 34.52716772501346], [-77.41990437780994, 34.52717114416639], [-77.42005490934412, 34.52717224310378], [-77.42066678998702, 34.52700624853078], [-77.42069275672725, 34.527018020883226], [-77.42077867488615, 34.527162957589034], [-77.42090353697711, 34.52708812599378], [-77.42093413743727, 34.52704513637819], [-77.42070782945306, 34.526983955702924], [-77.42071111695265, 34.526972654318875], [-77.4208670007605, 34.526573819283264], [-77.42079980257982, 34.526480976678094], [-77.42087889586178, 34.52608304977914], [-77.42151302559262, 34.525425299353195], [-77.42152307217168, 34.52540302301875], [-77.42152614340507, 34.52539661957626], [-77.42162071244157, 34.52531726418444], [-77.42214568962439, 34.52481737908403], [-77.42222424179997, 34.52475069608328], [-77.42231386807963, 34.52470845575593], [-77.42245220391672, 34.524528228862536], [-77.42255123045868, 34.52441306582222], [-77.42254825205876, 34.52437276474785], [-77.42241230803383, 34.524289152847594], [-77.42237880202967, 34.524259687619896], [-77.42232514192233, 34.5241993686183], [-77.42199029190508, 34.52407113282593], [-77.4215477000096, 34.52386018646292], [-77.42118742970911, 34.523713611896085], [-77.4200872880036, 34.523712109597554], [-77.41997895576516, 34.523807715152024], [-77.4191850689999, 34.52426670871065], [-77.41864101081214, 34.52483423700977], [-77.4190871309311, 34.52530539382503], [-77.41990072633058, 34.52563155403907]], [[-77.32488580919633, 34.64788725777737], [-77.32601258296172, 34.646330345664566], [-77.32601953326608, 34.646043837316846], [-77.32626234513629, 34.645228867038185], [-77.32636753930765, 34.6448512223348], [-77.32653078357008, 34.64428576862977], [-77.32657447102221, 34.644185627588946], [-77.3266178695851, 34.64404603440816], [-77.32681796699812, 34.64340240413224], [-77.32684659569006, 34.64310503821865], [-77.32676134129206, 34.64292412842364], [-77.32668078319497, 34.642950192121404], [-77.3263927744973, 34.64292492216875], [-77.32615604043059, 34.642974329275354], [-77.3260202922414, 34.64300073822653], [-77.32581990205806, 34.64326061641705], [-77.32556324481581, 34.64324127329811], [-77.32518535621651, 34.64328913651369], [-77.32494772800305, 34.643070186268076], [-77.32455305142823, 34.64296523110886], [-77.32448044952719, 34.642967172907646], [-77.32441442224844, 34.64297789800221], [-77.32386642683662, 34.64299136141597], [-77.32385236385437, 34.64302786024013], [-77.32382407250556, 34.64299849555864], [-77.32366900098971, 34.642990235895084], [-77.32320707203418, 34.643002834983925], [-77.32317595223799, 34.64301389250155], [-77.32290521327732, 34.64309387787086], [-77.32290445447977, 34.643095064280885], [-77.32295242843631, 34.64347252296861], [-77.32297063659541, 34.6435397053623], [-77.32316929945473, 34.643902728068184], [-77.32325120739495, 34.64413213604554], [-77.32385267859584, 34.64465300495506], [-77.3239961095974, 34.64495337796656], [-77.32480755246308, 34.647874509348455], [-77.32463303322442, 34.64792191659708], [-77.32485737181351, 34.648033920538104]], [[-77.38329793119057, 34.629677428307524], [-77.38368036529263, 34.62954673921658], [-77.38401630957905, 34.629383367622495], [-77.38407729741073, 34.62942385775935], [-77.38466873602711, 34.62925774674933], [-77.38480486543347, 34.62910997318494], [-77.38511430450791, 34.62849097420076], [-77.38480498019918, 34.628448503885], [-77.38469522031946, 34.628433165038274], [-77.38441073898761, 34.62840052534205], [-77.38423969366598, 34.62837664858473], [-77.38419678657384, 34.628392788798216], [-77.38401645938325, 34.62856413356981], [-77.38396275425336, 34.62859909068025], [-77.38388079024334, 34.6286687291928], [-77.38322776373835, 34.629576296217365], [-77.38320576360562, 34.62959143866108], [-77.38311911529388, 34.62962761181953], [-77.38308963008652, 34.62978056948132], [-77.3832277451154, 34.629673481490606]], [[-77.46329060676638, 34.58912634393033], [-77.46300029304025, 34.590052083772946], [-77.4628252351545, 34.59061026915538], [-77.46265021227013, 34.59116833399217], [-77.46257086573782, 34.59142131850385], [-77.46266655225708, 34.59171879531485], [-77.46251097173328, 34.59235835077385], [-77.46230144082543, 34.592536050645876], [-77.46199338185728, 34.592542271937326], [-77.46135962024229, 34.592935572458245], [-77.46083710953738, 34.59265459059327], [-77.46077045853372, 34.5922092304303], [-77.46018090799802, 34.592470102343896], [-77.45982410222804, 34.59245236062208], [-77.45965301280404, 34.5924617825997], [-77.4592510038326, 34.59245648434732], [-77.45912572061546, 34.592455661488486], [-77.45907455819433, 34.59245473637424], [-77.45895667854924, 34.592452604709926], [-77.45901826758688, 34.592375049881895], [-77.45907912246514, 34.592285495247225], [-77.45928499427089, 34.591849001604785], [-77.45952233796919, 34.591552669987934], [-77.45966471369096, 34.591362489664924], [-77.46040901247682, 34.59056113021381], [-77.46063405927087, 34.59028619033328], [-77.46242729191702, 34.58985160484234]], [[-77.32875340746138, 34.757288299533435], [-77.32888638890526, 34.75739067041198], [-77.32897942545955, 34.75758047224856], [-77.32924665757756, 34.75739398618392], [-77.32925538250129, 34.75721952101607], [-77.32916701557558, 34.757174963427225], [-77.32910626880522, 34.75714433175024], [-77.32877826578843, 34.75697892954206]], [[-77.394265892056, 34.64849251897099], [-77.39441958259127, 34.648543596896666], [-77.39432916661244, 34.64832304407384], [-77.39426589887633, 34.6483422435928], [-77.3942036548888, 34.64834224230234], [-77.39268852976382, 34.64834221176677], [-77.39118184267575, 34.64876870777125], [-77.39111112200285, 34.648788722689524], [-77.39107292487297, 34.64881942540933], [-77.39101058455992, 34.64886953282048], [-77.39017570457413, 34.649681117112586], [-77.39026742690073, 34.64988489111431], [-77.39071302532466, 34.65018221542687], [-77.39111098991506, 34.65038481614395], [-77.39116988394795, 34.65048143038364], [-77.39129526210732, 34.65052677415174], [-77.39189966477312, 34.650797058459624], [-77.39230246482151, 34.650797070095216], [-77.3926883732515, 34.65079708103691], [-77.39319361959248, 34.65079709036931]], [[-77.39394834319957, 34.5294523376515], [-77.39390947267603, 34.5294100234508], [-77.39335569475436, 34.52958698048943], [-77.39320928249455, 34.529731058460754], [-77.39318461629139, 34.52975210589645], [-77.39325726539946, 34.52990403356617], [-77.39334082310529, 34.5299569112647], [-77.3935430441021, 34.53002104737077], [-77.39383429536207, 34.52994986287167], [-77.39393770487355, 34.52992552004545], [-77.39401421572325, 34.529907205392604], [-77.39426062616948, 34.52982417830354], [-77.39424493697771, 34.529638821474855]], [[-77.34780494735978, 34.758768112009555], [-77.34773814910838, 34.75866350715611], [-77.34779721883068, 34.75857633154421], [-77.34773015721962, 34.758449318736595], [-77.34751780983204, 34.75804456137937], [-77.34744892969321, 34.75764935217332], [-77.34740439436766, 34.75734339253897], [-77.34701824780058, 34.75735223616814], [-77.3466818459353, 34.757520730417696], [-77.34636162026838, 34.75755031320905], [-77.34608115589704, 34.75783697741684], [-77.3458297293724, 34.75804248019793], [-77.34573771237382, 34.7582307882989], [-77.34566551180717, 34.75838136767711], [-77.34561230787986, 34.75848817080188], [-77.34542236102678, 34.758720903123596], [-77.34531838408377, 34.75886609599448], [-77.34527515782406, 34.75892228678089], [-77.34518881425086, 34.75904702438007], [-77.34519756586974, 34.75917661796563], [-77.34514274246669, 34.75927953945583], [-77.34523160898254, 34.75937726540964], [-77.34524821727216, 34.75939552944829], [-77.3452626327478, 34.75941138190687], [-77.34561084940088, 34.759510878895114], [-77.34590757276914, 34.759810296166066], [-77.34614075705194, 34.75989179058116], [-77.34703415382106, 34.76063051846224], [-77.34708729149432, 34.76074072421901], [-77.34717740684779, 34.76092761252444], [-77.3478753612086, 34.76051512140311]], [[-77.45300515886889, 34.61617649132841], [-77.45218376567738, 34.61551263226788], [-77.45096623222548, 34.615571951642266], [-77.451211945598, 34.616079098578034], [-77.45136958742626, 34.616508118505706], [-77.45150297878496, 34.61673461899994], [-77.45134735402713, 34.61694407946313], [-77.45149874604135, 34.61710508671566], [-77.45144082196597, 34.61728647645108], [-77.4514642116362, 34.61730680804924], [-77.45174471395546, 34.61740420024273], [-77.45176536518724, 34.61740889885377], [-77.45224823268279, 34.61726259279176], [-77.45225090132651, 34.617261988382346], [-77.45225449574562, 34.617261445056236], [-77.45304550646357, 34.616323821466715], [-77.45312021460838, 34.61632553348975], [-77.45309261957902, 34.6162301576621]], [[-77.3832250954893, 34.64386207238445], [-77.3827743155255, 34.64374871572552], [-77.3817005248597, 34.64347472512625], [-77.38164788287354, 34.64346117915563], [-77.38161504208763, 34.64346571621205], [-77.3802810865246, 34.64384924395293], [-77.38007048670406, 34.64396095616916], [-77.37928691066321, 34.644609231867854], [-77.37927665122204, 34.64461090633803], [-77.37849313984498, 34.64416881071259], [-77.37837426559558, 34.6440252095598], [-77.3777173203885, 34.64400557607583], [-77.3777045295187, 34.6440043279453], [-77.3776873793319, 34.64401457886308], [-77.37694904680805, 34.644138201457004], [-77.37691582834472, 34.644204123834456], [-77.37635775960975, 34.64503673128429], [-77.37621950967099, 34.64515632623948], [-77.37616061207213, 34.645237136571126], [-77.37611730128037, 34.64549331322165], [-77.37622175466545, 34.64554072793179], [-77.37639698860681, 34.64568387765487], [-77.37642738454481, 34.64568373938236], [-77.3765479977522, 34.64557091339515], [-77.3767886340138, 34.64568726519414], [-77.37691550217079, 34.64547442150581], [-77.37721663924877, 34.64543794643926], [-77.37730985552719, 34.64538894092833], [-77.37734853932479, 34.64536024290111], [-77.37770419801781, 34.64534431828545], [-77.37817377007235, 34.64528073674588], [-77.37849291119903, 34.645129638350205], [-77.37927936290893, 34.64461844330177], [-77.37912747134398, 34.64548694230546], [-77.37928147611925, 34.64554575879559], [-77.37960693706776, 34.645916503585745], [-77.37980496174106, 34.64595307060212], [-77.38007005841283, 34.64591790461679], [-77.38069147402044, 34.64593071107608], [-77.38085871758904, 34.64595383879729], [-77.3809997171121, 34.645914577538036], [-77.38120762975177, 34.64603642800796], [-77.38164735330108, 34.6461096545344], [-77.38225716494865, 34.646077805009796], [-77.38243600757355, 34.646181693357605], [-77.38265274924387, 34.64606157439468], [-77.38322479760188, 34.645507157825406], [-77.38357457267955, 34.645222838608206], [-77.38392651530253, 34.64404033938134]], [[-77.32996478765178, 34.69239458671514], [-77.33044785761038, 34.6920635586108], [-77.33135342933095, 34.69173604717309], [-77.33150113291074, 34.691720825089604], [-77.33141825735689, 34.6916155382877], [-77.33151329294594, 34.69118594570925], [-77.33127157405796, 34.69092050528485], [-77.3298297528639, 34.69151537309954], [-77.32953627506103, 34.69225538547453]], [[-77.380863208155, 34.6251691133501], [-77.38068205047932, 34.62553810917186], [-77.3800746213142, 34.625670517122806], [-77.37985629946098, 34.62561695321733], [-77.3797878703333, 34.62586194061602], [-77.38007453570992, 34.626038793655425], [-77.38034621355536, 34.62633797752675], [-77.3807688553705, 34.6264684371679], [-77.38086294179575, 34.626363107832844], [-77.38132060753682, 34.626133924091306], [-77.38165154742944, 34.62577946758593], [-77.38223904335395, 34.62572522907025], [-77.38244006279636, 34.62558297520728], [-77.38249912376983, 34.62553489819929], [-77.38257707667474, 34.625460072242106], [-77.38249518650188, 34.62541254504639], [-77.38250441850688, 34.624690523951166], [-77.38247939298678, 34.62462501955874], [-77.38246049509891, 34.62460595346004], [-77.38244026785922, 34.62458070880027], [-77.38229308346516, 34.62438585319261], [-77.38224319812883, 34.62435787959106], [-77.38218521251488, 34.62439268691], [-77.38204604401858, 34.62454224189984], [-77.3818129062703, 34.62454756270024], [-77.3816517869006, 34.62466029888847], [-77.38157625443426, 34.62467381039994], [-77.38125754171224, 34.624718391893495], [-77.3809864472365, 34.624840131710215], [-77.38100596494405, 34.624991015774874]], [[-77.37361695331406, 34.54670747194373], [-77.37368606937045, 34.546746666800495], [-77.37373065485698, 34.54686249868198], [-77.37381195828797, 34.546973352406305], [-77.37384464752141, 34.54701792312495], [-77.37392130058156, 34.5471224349373], [-77.37424051218719, 34.54711048401124], [-77.37450745639545, 34.54687311819575], [-77.37460505153504, 34.546791098320945], [-77.37471637641275, 34.546687347280916], [-77.37537863778006, 34.54674755927062], [-77.3754667936389, 34.54675557429147], [-77.3754999759818, 34.546757538986384], [-77.37553170451025, 34.54674510828771], [-77.37568878942191, 34.54670285628279], [-77.37693923819069, 34.54643630742485], [-77.3770794731387, 34.54635572801379], [-77.37807175503534, 34.54599374067828], [-77.37866346029313, 34.54575501540076], [-77.3791401155732, 34.5455199748381], [-77.37945631775538, 34.54541611479215], [-77.37961694818381, 34.54515729880379], [-77.37973642818234, 34.544816631857486], [-77.37999859994066, 34.544612616243384], [-77.38015824888456, 34.54452510390433], [-77.38026452437322, 34.544398938202065], [-77.38044894314106, 34.54416980407898], [-77.38058207446963, 34.544038833167356], [-77.38077928558451, 34.5436992515332], [-77.38090566216108, 34.54350251944596], [-77.38096080251347, 34.54342539371581], [-77.38107542115596, 34.54326203211296], [-77.38130445860062, 34.54295535922321], [-77.38147781627733, 34.54268349114126], [-77.38189118733261, 34.541908914999425], [-77.3818994037697, 34.54189518435644], [-77.38190421855866, 34.541889559573825], [-77.3819033123998, 34.54188250092393], [-77.3820297056871, 34.54138180358215], [-77.38190469866159, 34.54131163340733], [-77.38116089808345, 34.54147893292222], [-77.38105189781541, 34.54148301189735], [-77.38086090913225, 34.54155032820207], [-77.38032451055099, 34.54174936255271], [-77.37999677414896, 34.541963201999764], [-77.38003580089989, 34.5421589510648], [-77.37952175682194, 34.54252686642177], [-77.37937482255818, 34.542654066204975], [-77.37929378059525, 34.54275558864507], [-77.37906032805307, 34.54299778807194], [-77.37898965158789, 34.54312286036089], [-77.3789367875357, 34.54329671439129], [-77.37896520900111, 34.54344820309986], [-77.378698606435, 34.54420388368501], [-77.37857506327636, 34.54425181130125], [-77.37740579689867, 34.54432198810293], [-77.3771247986037, 34.54435699881067], [-77.37701599041739, 34.54448690460523], [-77.3769016296853, 34.54456940753755], [-77.37601250209599, 34.54499220666262], [-77.37562449398294, 34.545243151157266], [-77.37557383307816, 34.54527553656148], [-77.37553289377585, 34.54530714977808], [-77.37528640654592, 34.54563242587658], [-77.37466957186373, 34.545870437506686], [-77.37451111808655, 34.546248719952715], [-77.37394184733742, 34.546217870527016], [-77.37372729830915, 34.54636417314451], [-77.3735686281499, 34.54651876364613], [-77.37355969927467, 34.54653100142193]], [[-77.3544951643866, 34.76444097827633], [-77.3544211499444, 34.76456206987111], [-77.35458233927412, 34.764518179148425], [-77.35569609789786, 34.76459945002891], [-77.35672185344238, 34.76436964880901], [-77.35697987627748, 34.76430486006512], [-77.35718115073443, 34.76426675174607], [-77.35761850679876, 34.764168766420035], [-77.35816852130493, 34.764045538090166], [-77.35825930483666, 34.76402519862721], [-77.35830234370027, 34.763983212699294], [-77.35829736653972, 34.76395880387687], [-77.35829631884627, 34.763947254198946], [-77.35829869010897, 34.76388960645161], [-77.35822194801196, 34.76361022407731], [-77.35830311947149, 34.76347062975542], [-77.35829999402512, 34.76334293796624], [-77.3582635094886, 34.76318403468169], [-77.35822892565506, 34.763098534605994], [-77.35820174183073, 34.76303442572481], [-77.35817904756692, 34.76300027615498], [-77.35812429141458, 34.76289687758983], [-77.35804308149807, 34.76270709944475], [-77.35777295843967, 34.76277285123428], [-77.35787162998544, 34.762325406198045], [-77.35775598056168, 34.76208357885658], [-77.35773207246028, 34.76201584817809], [-77.35767312352996, 34.76191828997552], [-77.3572270716567, 34.76175460940274], [-77.35665512337289, 34.76223467947673], [-77.35626795580359, 34.76263090007933], [-77.35585042899402, 34.76308831347255], [-77.35553017677456, 34.76336383856087]], [[-77.3836362495195, 34.56224652435854], [-77.383791592785, 34.562449375676714], [-77.3840021790093, 34.56244914758254], [-77.38403014033652, 34.562446266368354], [-77.38405602290942, 34.56243914274698], [-77.38481802795854, 34.56239140556912], [-77.3850423166279, 34.5622690386045], [-77.38515884502515, 34.561770271607834], [-77.38560611562355, 34.561387312674206], [-77.38577534388298, 34.56131420601507], [-77.38608329531907, 34.56093485053118], [-77.38570014950524, 34.56037479832755], [-77.3856063260391, 34.5603989341438], [-77.38554662497606, 34.560433716366234], [-77.38525767355264, 34.560539718858195], [-77.38521236088165, 34.5605699258354], [-77.3852005648989, 34.560560669256304], [-77.384893618646, 34.56067327205299], [-77.38481839415384, 34.56074061229228], [-77.38462272083362, 34.56084214023754], [-77.38434247279089, 34.56100794622753], [-77.38418688956463, 34.5611186820545], [-77.38403040040352, 34.56132070277173], [-77.38385630262935, 34.561353975338115], [-77.38382634655888, 34.56137532478946], [-77.38368439969574, 34.56156397780845], [-77.38364823848724, 34.56162091260773], [-77.38363638094057, 34.56168893579277], [-77.38361276519856, 34.56202522653667], [-77.38359717825672, 34.56209498780954]], [[-77.42531324443772, 34.731956419898346], [-77.42521749308328, 34.73203595684157], [-77.42504685274568, 34.732177699930745], [-77.42491398988278, 34.73228789835799], [-77.42475136641141, 34.732319082868926], [-77.42453030397468, 34.73240882035813], [-77.42433352328746, 34.73242693158779], [-77.42409343015422, 34.73244283112424], [-77.42400564604624, 34.732452116754125], [-77.42383826585531, 34.73243077275961], [-77.4237031159085, 34.73238975866614], [-77.42358049178966, 34.7323525453734], [-77.42342962208448, 34.73241612498131], [-77.42338968095575, 34.73241469326387], [-77.4233549720615, 34.73263234817522], [-77.42334389058355, 34.732665692725845], [-77.42333732953992, 34.732703096048816], [-77.42330708586886, 34.732875507953366], [-77.423297688805, 34.73292907876921], [-77.42328634695713, 34.73299373612868], [-77.42326484493775, 34.73311631309737], [-77.42333499245711, 34.73322165530588], [-77.42340131315524, 34.73343207647193], [-77.42368354567645, 34.73334349618816], [-77.42372187302907, 34.73333146691554], [-77.42375394914455, 34.733321399564936], [-77.42397805209194, 34.73326522108857], [-77.4240999295687, 34.73323370456267], [-77.42411650387332, 34.73322842274023], [-77.42413675484681, 34.733222383178244], [-77.42452499389594, 34.733148024987784], [-77.42478614312327, 34.73307815318853], [-77.42497269157931, 34.73295551676998], [-77.425236091444, 34.73281421819771], [-77.42529146242705, 34.73278740848718], [-77.42553271627534, 34.732714111096854], [-77.42562073795449, 34.73269486231628], [-77.42577598051493, 34.73267723517837], [-77.42603354995659, 34.73262152897706], [-77.42620437955875, 34.732608784273225], [-77.42630062717072, 34.73258108764152], [-77.42640448322985, 34.732479767359806], [-77.42647718585546, 34.7323632686306], [-77.42647574429806, 34.732223428055114], [-77.42649437304877, 34.73208974399851], [-77.4264206203283, 34.73186187131847], [-77.42638692437086, 34.73181409574531], [-77.42596246060725, 34.731757510027904], [-77.42580086829906, 34.73178791906393], [-77.42571398907313, 34.73181696629416], [-77.42557373800302, 34.73187019846898]], [[-77.32417407269253, 34.55909204989108], [-77.3240487701703, 34.55903057156541], [-77.32363669425906, 34.558937432096606], [-77.32357970229808, 34.55860834030414], [-77.32354215706799, 34.55852630599704], [-77.3234087238805, 34.55823475755652], [-77.32270755563817, 34.55873364421212], [-77.32267637272618, 34.558779068951644], [-77.32256114087558, 34.55924430223312], [-77.32266117911273, 34.559675050321246], [-77.32337255415578, 34.55978612154209], [-77.3236282282469, 34.559909056894654], [-77.3236436646707, 34.560068027907064], [-77.32415246632266, 34.56059142647813], [-77.32428012955927, 34.56068797508174], [-77.32487685347552, 34.560671569403425], [-77.32494049824663, 34.560431133354996], [-77.32499424655092, 34.559931391902566], [-77.3250504511726, 34.55986589926308], [-77.325739149926, 34.5593322927803], [-77.3258338569671, 34.559322609296714], [-77.32652724267334, 34.55921392411189], [-77.32689485628381, 34.55936941588222], [-77.32730569121394, 34.55950993104816], [-77.32732504362522, 34.55952673766524], [-77.32734621525796, 34.559536004452305], [-77.32769877986959, 34.55965408943675], [-77.3278752022166, 34.55969435378058], [-77.32809265235754, 34.559723981996456], [-77.32837568058441, 34.55969304205381], [-77.32848670700758, 34.55959160964255], [-77.32863004799275, 34.55935150125857], [-77.32849202546016, 34.55915183804675], [-77.32848069769815, 34.55913545128784], [-77.32847581103204, 34.55912885354315], [-77.32846040454453, 34.55911075753667], [-77.32829166170906, 34.5589105040157], [-77.32810976730978, 34.558704292760574], [-77.32796631778052, 34.55855917295132], [-77.32785135603277, 34.558484153567264], [-77.32768851544373, 34.55828662270143], [-77.32767619534509, 34.5582321606954], [-77.32766239372184, 34.55802168131152], [-77.32775439333068, 34.5577541748524], [-77.3275952153158, 34.557541707374675], [-77.32757608202496, 34.55740639064539], [-77.32735653736536, 34.557324675013845], [-77.32712539218949, 34.55726458229683], [-77.32693487664451, 34.55714697591845], [-77.32657783669941, 34.55704038695633], [-77.32589407069287, 34.55723046815206], [-77.32578880017601, 34.5572001608098], [-77.32567539671496, 34.55725810179476], [-77.32568003827872, 34.55739231811974], [-77.32566742422961, 34.557818735570834], [-77.32562363970288, 34.55822658611736], [-77.32565048024233, 34.55831079976987], [-77.32553872624891, 34.55846441482475], [-77.32566492888085, 34.558798348392685], [-77.32554760094267, 34.55918324925817], [-77.3249581065207, 34.55914794844749], [-77.32464572447147, 34.55913967649093]], [[-77.4161417333516, 34.73251603128045], [-77.41598021955191, 34.73248904689874], [-77.41587648791837, 34.732477598156315], [-77.41562341192997, 34.73248245310192], [-77.41516234566106, 34.73292443770449], [-77.41467999538371, 34.733270784717355], [-77.41458754834598, 34.73336303199697], [-77.41385407263147, 34.73410018920091], [-77.4125794912703, 34.73537482560096], [-77.41231709145711, 34.735636468737084], [-77.41187281911071, 34.73608149786493], [-77.41256748813413, 34.736045730963106], [-77.41498607733686, 34.735921154879726], [-77.41570908058151, 34.73519602652188], [-77.41602501585672, 34.73485923620449], [-77.41684913736859, 34.73406725282854], [-77.41696541825696, 34.73395798992459], [-77.41744740492662, 34.7331201808359], [-77.4171867108557, 34.732751031362355]], [[-77.3800707177461, 34.642910673017894], [-77.38151425476569, 34.64330096347732], [-77.38022946162513, 34.641931707212265], [-77.38012592976416, 34.641887416624414], [-77.38007097145581, 34.64176001978291], [-77.37951637154825, 34.6414372023863], [-77.37928232944975, 34.64182258074931], [-77.37920782299713, 34.641310097211594], [-77.37893668229404, 34.64126880328314], [-77.37849385183202, 34.641194445773294], [-77.37772680626405, 34.64141977644281], [-77.37766633939135, 34.641409963719795], [-77.37691653927263, 34.641451105627674], [-77.37666856005069, 34.64101348848648], [-77.37643621481388, 34.64111168059799], [-77.37644185756221, 34.6412901539212], [-77.37686922242828, 34.64156658534627], [-77.37690334264714, 34.641575845355604], [-77.37691650528144, 34.641582173482625], [-77.37696813245437, 34.641607934433424], [-77.37768524912107, 34.64147049359913], [-77.37765792433515, 34.6418775523308], [-77.37770505431915, 34.64189390043748], [-77.3780236839038, 34.641906358477804], [-77.37821848562233, 34.64192507476866], [-77.378493773572, 34.64152012039875], [-77.3786960881667, 34.64193464122684], [-77.37921712976251, 34.642077531585564], [-77.37928226462421, 34.64210373440997], [-77.37991069567715, 34.64215010162133]], [[-77.48382684535042, 34.68875602233106], [-77.48396943779997, 34.68904120016097], [-77.48447323085054, 34.69004881327645], [-77.48485449744466, 34.69081134952628], [-77.48511962888662, 34.691341590328506], [-77.48521001612771, 34.69195148826104], [-77.48506015684029, 34.69299268602681], [-77.4850533625934, 34.69301463693417], [-77.48501382319415, 34.69305090950235], [-77.48429592273808, 34.69386800185117], [-77.48343579570607, 34.69427691158373], [-77.48294263007344, 34.69339546989642], [-77.48212346740456, 34.692472762273255], [-77.48202798962421, 34.69103059692078], [-77.48201838355126, 34.690837031354675], [-77.48227481053665, 34.69067594785247], [-77.48236021416625, 34.69020129881663], [-77.48301241512235, 34.68898835391048], [-77.4832949610473, 34.6882758228051]], [[-77.39978675360815, 34.588261576552476], [-77.39941950329647, 34.58867043426899], [-77.39899861971534, 34.58889460614551], [-77.39894281585029, 34.58907477232075], [-77.39871914286442, 34.58916716088764], [-77.39847864333106, 34.589490789543916], [-77.3982104715895, 34.58958075814386], [-77.39803932834194, 34.589449638486585], [-77.39800234581875, 34.589470902323946], [-77.39781640494115, 34.58965512597639], [-77.39778375805875, 34.5896915090098], [-77.39774740133092, 34.58973192674336], [-77.39757464056092, 34.589920954323915], [-77.39752391670395, 34.58997645386801], [-77.39746992405168, 34.59003553006445], [-77.39742231806545, 34.59011681405268], [-77.39738979334358, 34.59017304946381], [-77.39737282771897, 34.590210536522385], [-77.3973704662218, 34.59026673489611], [-77.39737609543707, 34.590422351486446], [-77.39742229706883, 34.5905374318515], [-77.39755744546896, 34.59046286950691], [-77.39763232548722, 34.5903993806601], [-77.39781637467198, 34.59032145414325], [-77.39808604361681, 34.59024167610733], [-77.39821044659728, 34.59019359292246], [-77.39831604081013, 34.59018823227969], [-77.39894010871677, 34.590047429847], [-77.39899858252129, 34.590069894022555], [-77.39921801597875, 34.59018075690413], [-77.40016737859077, 34.59024636331468], [-77.400237998677, 34.59064631686463], [-77.40004679830761, 34.59095414277031], [-77.39978668274406, 34.59149977751573], [-77.39976099213774, 34.59153661055917], [-77.39972884559835, 34.59156892695027], [-77.39976152288104, 34.591591317381386], [-77.39978668053156, 34.59160665141418], [-77.40014078088267, 34.59197712590961], [-77.4001807458463, 34.59205940084339], [-77.40041026526889, 34.59231975868988], [-77.4005253694466, 34.59235642552559], [-77.40057481622658, 34.59244451489047], [-77.40078378621993, 34.59269043941856], [-77.4009083290787, 34.59273771766982], [-77.40123111977907, 34.59305046873298], [-77.40122993510425, 34.5931939666394], [-77.40125198641505, 34.59377703844346], [-77.40120772002662, 34.59390299421799], [-77.40123135062876, 34.59404138487326], [-77.40120836908548, 34.594327475413436], [-77.4011872160337, 34.594565752804364], [-77.40119879859455, 34.594753430888275], [-77.40120682978917, 34.594920489334285], [-77.40120609536628, 34.59496466547436], [-77.40125666582526, 34.59505513017484], [-77.40129417857614, 34.59516424338423], [-77.40118804839585, 34.5953680075841], [-77.40136296832641, 34.595182203301825], [-77.40137480925597, 34.59516536632517], [-77.4013847939342, 34.595151168734624], [-77.40146495223614, 34.595037188866186], [-77.40147644788662, 34.59501568564248], [-77.40152980160187, 34.5949179583279], [-77.40153605821826, 34.59489124873923], [-77.4015600118052, 34.5948477255752], [-77.40162717047356, 34.594691621495755], [-77.40165293259486, 34.59457572723642], [-77.40175705314809, 34.59438966686007], [-77.40180044322652, 34.59428879225088], [-77.40183114510069, 34.594237614596764], [-77.40196590738974, 34.59401861022468], [-77.40201439132035, 34.593933921170645], [-77.40206385524564, 34.593779460748785], [-77.40204126754598, 34.593664354747546], [-77.40215113151888, 34.59367057430544], [-77.40233687725775, 34.59331548918915], [-77.40240137182984, 34.59315121780367], [-77.40245222537692, 34.59297444292514], [-77.4024449400798, 34.592875320577456], [-77.40248050841834, 34.59280048851241], [-77.40254519673466, 34.59245020335391], [-77.40254728368743, 34.59243822575445], [-77.4025470092397, 34.59243601672387], [-77.4025467102975, 34.5924344289229], [-77.40254519642744, 34.59242675207921], [-77.40242566439217, 34.592157731347214], [-77.4022875134636, 34.59204888681244], [-77.40223215809152, 34.59196956032877], [-77.40215111603833, 34.5918627886597], [-77.4017688858543, 34.5916863852017], [-77.40115212292466, 34.59136356668223], [-77.40111668067638, 34.590784888234126], [-77.40113766187037, 34.59051650601606], [-77.40122688171348, 34.59035700538481], [-77.4011447479441, 34.59009090930991], [-77.40112173839083, 34.58992956710859], [-77.40108681029963, 34.58967469470972], [-77.40115478545019, 34.58944057574644], [-77.4013629759505, 34.58922782524655], [-77.40137265235343, 34.589219300396785], [-77.40151534247097, 34.58918828491991], [-77.40173941993308, 34.589136970068296], [-77.40178798601265, 34.589115596914866], [-77.40215109644424, 34.58901586926321], [-77.40250360556061, 34.58900090910207], [-77.40254515555948, 34.58896301668649], [-77.40269653831258, 34.58875636894474], [-77.40261305321187, 34.5886053078695], [-77.40254515000348, 34.58842521191613], [-77.40238832414695, 34.58838213275344], [-77.4023250602819, 34.58798515976359], [-77.4022888265703, 34.587802944816865], [-77.40242597588687, 34.587486972985886], [-77.40249979171821, 34.58729906601255], [-77.40273919245013, 34.587104290187455], [-77.40293918567885, 34.58694795283498], [-77.40300638143745, 34.58692264613758], [-77.4030509465044, 34.58684381320614], [-77.40333322687664, 34.58647926731787], [-77.40334646705121, 34.5863908572833], [-77.40335432291018, 34.586375455902484], [-77.40349831001502, 34.58617679674943], [-77.40345991555185, 34.58607215344338], [-77.40334398126733, 34.585952372532994], [-77.4033332166099, 34.58590835023574], [-77.40319641025185, 34.58569649543489], [-77.40293916633058, 34.58548534811907], [-77.40277257871841, 34.585365174982286], [-77.4021510800738, 34.58541539220323], [-77.40143556165432, 34.585378623487756], [-77.40137522150015, 34.58537415640345], [-77.40136299461051, 34.58537985448597], [-77.40134798949994, 34.58537509246733], [-77.4005749084255, 34.58541688659998], [-77.39989399005624, 34.58560106371364], [-77.39982655543176, 34.58565361170725], [-77.40036032964791, 34.586382924006706], [-77.40043133309467, 34.58652735808511], [-77.40057488488517, 34.586976882008685], [-77.40065518423351, 34.587189527970274], [-77.40057487908464, 34.58737935989322], [-77.40037230966709, 34.58786124012434], [-77.39991293799287, 34.58814577396278]], [[-77.36424466977142, 34.77937343876368], [-77.36559063984389, 34.778985442516884], [-77.36563342855044, 34.77855350690954], [-77.36516970208612, 34.77746024681077], [-77.36484875554318, 34.77709511124538], [-77.36511448137345, 34.77632249560962], [-77.36497553885994, 34.77565968875476], [-77.36444996821028, 34.77608996718422], [-77.36404164488417, 34.776452151646815], [-77.3639777311948, 34.77656518447148], [-77.36370026804013, 34.776946066394274], [-77.36362989310395, 34.77727624082886], [-77.36311416700413, 34.777650294268895], [-77.3629784164019, 34.77770827071382], [-77.36286360669342, 34.77777173507106], [-77.36284826415942, 34.777927855056795], [-77.36255258051591, 34.77850934900747], [-77.36246593932594, 34.77875102277724], [-77.36195418199512, 34.77902820993178], [-77.36190194939516, 34.77911288828589], [-77.36192638343027, 34.779204095955436], [-77.36164468741921, 34.77958208776432], [-77.36148548507595, 34.77975921102135], [-77.36117480659811, 34.779909056315546], [-77.36111606040217, 34.779956327150806], [-77.36098123592748, 34.7800437518314], [-77.360835991638, 34.780137933148126], [-77.36081295296678, 34.780156844441066], [-77.36065002653216, 34.7803524694572], [-77.36056377241722, 34.780498096198116], [-77.36047297277386, 34.78070155415344], [-77.36052564202154, 34.78086816992064], [-77.36074963571372, 34.781372734606386], [-77.36087903398666, 34.781425044987046], [-77.36175407456633, 34.781696062459446], [-77.36193202641417, 34.78172020722906], [-77.3622692993944, 34.781738882609595], [-77.36285705712211, 34.782953737506666], [-77.36433429007414, 34.78292070497419], [-77.36522846300926, 34.78050711662775]], [[-77.44511937616986, 34.6811423273798], [-77.44505717885988, 34.68127653127997], [-77.44494591313898, 34.68127594508159], [-77.44490096102325, 34.681279539709585], [-77.44476464925611, 34.68129043941805], [-77.44440027569647, 34.681046870769265], [-77.44482570294745, 34.681079475039695]], [[-77.43814580793233, 34.677263804821536], [-77.43829346099078, 34.677234499837546], [-77.43834974965007, 34.67722332814353], [-77.43838726625367, 34.67721588210111], [-77.43848229445422, 34.677300532737064], [-77.43865964764603, 34.67758962755944], [-77.43862460650021, 34.6776726395285], [-77.43852295786502, 34.677873798265935], [-77.43851282338817, 34.67788946589355], [-77.43839340862422, 34.67804242600772], [-77.4381663892741, 34.677979607278246], [-77.43811810226312, 34.67796624561366], [-77.4379391541953, 34.6778904209049], [-77.43788839914475, 34.6778330917454], [-77.437714770388, 34.67759118316121], [-77.43772673838984, 34.67753269967655], [-77.43794186618001, 34.67730428111976], [-77.43804739594802, 34.67728333667732]], [[-77.42746039276027, 34.67961102823228], [-77.42744261501595, 34.679610704443604], [-77.42743867582121, 34.679595192440466], [-77.42744459101957, 34.6795851909548], [-77.42748014658677, 34.67948099497139], [-77.42777620783711, 34.6786316432507], [-77.42842423707339, 34.67918385001067], [-77.42870789525274, 34.67966683145987], [-77.42879612295944, 34.67992139750824], [-77.4289432661487, 34.680114106964545], [-77.4289162538551, 34.680495700562], [-77.42844666760843, 34.68056966961225]], [[-77.45583594309828, 34.74321454113579], [-77.45579405702995, 34.743203899423776], [-77.45527931436446, 34.74300613622802], [-77.45525744333301, 34.742997733399015], [-77.45517243007755, 34.74301690640089], [-77.45487164071679, 34.74308798966541], [-77.45463408715811, 34.743241590354195], [-77.45455533917665, 34.74329111965372], [-77.45459615500795, 34.74338565146087], [-77.4547204113407, 34.743652001035464], [-77.45487440530964, 34.7438399149143], [-77.45497724097169, 34.743966700511706], [-77.45499455791034, 34.74398402271048], [-77.4550242755557, 34.74401386363058], [-77.45548081601757, 34.74444262991887], [-77.45566172011739, 34.74459845503227], [-77.45586134529381, 34.74470372144895], [-77.45602202040325, 34.74478844862983], [-77.45612244531648, 34.74485260557959], [-77.45645112532218, 34.74507109668282], [-77.4565354796188, 34.74512666024128], [-77.45656035623801, 34.74514420049728], [-77.45661191605585, 34.74518162418209], [-77.45682623857877, 34.745333443699025], [-77.45692645071452, 34.745409922996885], [-77.45708173124603, 34.745558620826756], [-77.45732551393426, 34.745599152464294], [-77.45738754777025, 34.74560976491366], [-77.45770553482402, 34.745509109052605], [-77.45771683283914, 34.74549057776025], [-77.45779482268559, 34.7453100212333], [-77.45792898495847, 34.74502815184127], [-77.45791311147646, 34.74490092419904], [-77.4578326527797, 34.744585248208104], [-77.45753523144751, 34.743990239520656], [-77.45746244234608, 34.74384687935526], [-77.45699925848393, 34.7436263354455], [-77.456537318557, 34.743424245070244], [-77.45643932433761, 34.74338102333093], [-77.45643110210676, 34.74337374351018], [-77.45640708105725, 34.74335246086564], [-77.45630044142948, 34.74334152906218]], [[-77.38565321460793, 34.665487765575534], [-77.38630550976288, 34.665067579292426], [-77.3862729750106, 34.66496641053925], [-77.38615025104012, 34.66460154187774], [-77.38605279369916, 34.664518343437614], [-77.38593215243718, 34.664525389611335], [-77.38551522113274, 34.66414384214408], [-77.38525411940235, 34.66406347859652], [-77.38482265811328, 34.664224608425364], [-77.3843107029661, 34.66428310098127], [-77.3841412529841, 34.66435331952873], [-77.38343412643154, 34.66488647681339], [-77.38336185383454, 34.664938697303626], [-77.38337698537448, 34.664983157094895], [-77.38339052395565, 34.664991915469066], [-77.38340194974664, 34.6649974803375], [-77.38351769830675, 34.665076815218626], [-77.38417849566586, 34.66517354083638], [-77.38413355494285, 34.66536645739894], [-77.38432410840244, 34.66545567681446], [-77.38431999829255, 34.66558450402429], [-77.38437098546018, 34.66561671811116], [-77.38440002831302, 34.665682669730465], [-77.38441366897787, 34.665693465413135], [-77.38448342684731, 34.66572725510918], [-77.38453208768902, 34.66574313875857], [-77.38464160559434, 34.66575383819688], [-77.38468595189093, 34.665728382694404], [-77.38497293185951, 34.66572844032774], [-77.38498680836516, 34.665722577632124], [-77.38547377795352, 34.66553424712252]], [[-77.40430357447289, 34.679855354840754], [-77.40427108084153, 34.67983455870004], [-77.4040314751216, 34.679688589939005], [-77.4038690041077, 34.679609596916464], [-77.40375491109485, 34.679537241525], [-77.40357663743357, 34.67944665379892], [-77.40315333250308, 34.67940182004544], [-77.40308562500563, 34.67939157142949], [-77.40284450148188, 34.6793618727771], [-77.40283328664798, 34.67936491662409], [-77.40272522071547, 34.67955017467921], [-77.40271668335417, 34.67964391457808], [-77.40288735253702, 34.67994297982775], [-77.40290977491459, 34.6800097041229], [-77.40296491988701, 34.68005227224778], [-77.4031428981775, 34.680358796528296], [-77.40318501492925, 34.68039857051207], [-77.40326812752804, 34.6805297275262], [-77.40335280177446, 34.68057695043449], [-77.40345556686674, 34.680570682181894], [-77.40359091713762, 34.68061825390154], [-77.40389249277636, 34.68071166057808], [-77.4040579701551, 34.680703285339376], [-77.40423721145375, 34.680795006862496], [-77.40433835583994, 34.68084145454344], [-77.40441692761596, 34.680821406839655], [-77.40465967856547, 34.680618787395375], [-77.40468789753399, 34.68057318914096], [-77.40470595825434, 34.6805460281239], [-77.40477173719434, 34.68045140951782], [-77.40483487285822, 34.68034506356324], [-77.4048694498866, 34.68030812001359], [-77.40481117540295, 34.68031524857878], [-77.40466730408114, 34.680169273315755], [-77.40440115751997, 34.67991369450264]], [[-77.47447261588792, 34.56805316982146], [-77.47448486850219, 34.56794290633457], [-77.47496596572749, 34.56720356759508], [-77.4745807441412, 34.567080084878995], [-77.47460510603645, 34.56686084915198], [-77.47482124016184, 34.5665063260157], [-77.47501626089988, 34.56604629867472], [-77.47567182060742, 34.56626344269832], [-77.47563578891021, 34.56670341456108], [-77.4760363237211, 34.56689792316637], [-77.47553767191383, 34.56718712321536], [-77.47550092601597, 34.56781553898538], [-77.47488216026463, 34.56819645499206], [-77.47446311038499, 34.56813870476462]], [[-77.39306373801156, 34.54115718951185], [-77.39247109202691, 34.5410760919377], [-77.39133513110251, 34.5409206447022], [-77.39090356033307, 34.54086158340945], [-77.39090522952492, 34.54059135385768], [-77.39111385735595, 34.54041616918347], [-77.39089009112828, 34.539906010913604], [-77.39101552931398, 34.539596106977385], [-77.39108348542368, 34.53940812155541], [-77.39114891957095, 34.53922710862128], [-77.39114687761791, 34.539087490252655], [-77.39100733441387, 34.538851446780626], [-77.39078001340087, 34.53865075086511], [-77.39060468072867, 34.538492410145395], [-77.39036293831091, 34.53856111309829], [-77.39000857898279, 34.53876204232267], [-77.38987628743536, 34.5388211177809], [-77.38981088253615, 34.53887818158188], [-77.38947231145052, 34.539329070290734], [-77.38936434650941, 34.53956546949982], [-77.38907760498626, 34.53987567515718], [-77.3889964923652, 34.54017730737917], [-77.3889740483512, 34.540368975662666], [-77.38897269682114, 34.54038047443737], [-77.3889658781359, 34.540397457034985], [-77.38893340487542, 34.54063097524369], [-77.3888831154647, 34.54070157098127], [-77.38887008504486, 34.5408150692204], [-77.38892605350885, 34.54087686857998], [-77.38893548432867, 34.54090335214832], [-77.38897792989509, 34.5410009546189], [-77.38920943712284, 34.541178770623276], [-77.38923143536812, 34.541322482131946], [-77.38925871363159, 34.54150068715262], [-77.38945077441747, 34.54178050775883], [-77.3895559066498, 34.541882157390816], [-77.3896330945037, 34.54199904082926], [-77.38973920256612, 34.542060064063264], [-77.38989650346954, 34.54210711142841], [-77.39000555795755, 34.54211215931333], [-77.39013074589928, 34.5421056755524], [-77.39046709573925, 34.542088254441246], [-77.39052512332029, 34.54202544185823], [-77.39071136762252, 34.541972904854845], [-77.39131789295448, 34.541686492387086], [-77.39281413896751, 34.5413462215002], [-77.39310792185611, 34.541385728701485]], [[-77.41176861779589, 34.62226701662373], [-77.4118886027117, 34.62208196612694], [-77.4121653998083, 34.62178800651156], [-77.41240121252658, 34.6216209725793], [-77.41245098828745, 34.62157620833551], [-77.41260215796083, 34.62134627811348], [-77.41260109445606, 34.621339213711224], [-77.41255837259627, 34.62130544675305], [-77.41240114451264, 34.621175139578234], [-77.41238625924142, 34.621177004353186], [-77.41236617677458, 34.62116387090544], [-77.41200691515189, 34.62104333727481], [-77.41175715610291, 34.62109620958345], [-77.41161271394816, 34.62110035758787], [-77.41126666733658, 34.62084608782227], [-77.41121846750637, 34.62083457090777], [-77.41104191782674, 34.62069599180609], [-77.41099713788591, 34.62069854179667], [-77.41082426892903, 34.6209093819589], [-77.41076839216854, 34.62096991975066], [-77.41072764695332, 34.62129625856189], [-77.41066088605567, 34.62141001536175], [-77.4100360034008, 34.62213656097913], [-77.40995388874956, 34.62227275665759], [-77.40976034903937, 34.622389146386354], [-77.40882772836027, 34.62382527542819], [-77.41003611288627, 34.623010815268245], [-77.4105469631739, 34.622825827201446], [-77.41161295984602, 34.62281260347015]], [[-77.33360426573273, 34.56389121731182], [-77.33331319098284, 34.56430861166152], [-77.33341135821382, 34.564607796275126], [-77.33343708197414, 34.564783458327454], [-77.3334363406399, 34.564816474946426], [-77.33347641858866, 34.56488610594999], [-77.33355163731468, 34.56501217053266], [-77.33360328785035, 34.565064451148885], [-77.33378280565633, 34.56520989649644], [-77.33399694393228, 34.56537269557944], [-77.33399699245774, 34.56537273217235], [-77.33399724414707, 34.56537292381708], [-77.33422047728905, 34.56552413494639], [-77.33423175477229, 34.56555120983041], [-77.33439070970869, 34.565669190302], [-77.3344274290622, 34.56569575709507], [-77.33447598156724, 34.56572837010397], [-77.33458758093875, 34.56580333200938], [-77.33475166733116, 34.56572425533532], [-77.3347846173356, 34.56573641822936], [-77.33487027548163, 34.56576401631564], [-77.33486909593964, 34.5655809564524], [-77.33502320490305, 34.56522515959817], [-77.33510678198915, 34.56513524540468], [-77.3351791674489, 34.56501499162054], [-77.33527613372785, 34.56476425648565], [-77.3352037565836, 34.564376058723724], [-77.33519979446706, 34.56435069109622], [-77.33519401932304, 34.5643361122647], [-77.33517974116005, 34.56431057753814], [-77.33484776829656, 34.56404331936353], [-77.3347860465104, 34.56399146961359], [-77.33478095015013, 34.563991857938454], [-77.33477979349964, 34.563986532570354], [-77.33475472138872, 34.563956348725895], [-77.33447347869229, 34.56360602893364], [-77.33445184765068, 34.563545139595334], [-77.33439246118968, 34.563543463947546], [-77.33431093405682, 34.56354153768868], [-77.33399850343741, 34.56354956160901], [-77.33373605835668, 34.563712039951184], [-77.33366323812521, 34.5637859644701]], [[-77.34825478653595, 34.727321285609015], [-77.34954777378397, 34.72803024304338], [-77.35042800867384, 34.72821298747285], [-77.35073946973229, 34.728050932042436], [-77.35093105014468, 34.7280951502583], [-77.35173360857793, 34.72799703683172], [-77.35181684129203, 34.728294585812776], [-77.35186335739085, 34.72830505878545], [-77.3518977854323, 34.728313488418515], [-77.35211117352992, 34.72825418746772], [-77.3523983644818, 34.72811877563368], [-77.35263111242594, 34.72769544060616], [-77.35263732358771, 34.72769225456757], [-77.3526555466319, 34.727639383099806], [-77.3528003246129, 34.72719843122834], [-77.35280227660041, 34.72718456434141], [-77.35280402891215, 34.7271735833702], [-77.35282126745652, 34.727068791884726], [-77.35287171159867, 34.726727313868395], [-77.35283485638779, 34.726692709974124], [-77.35286461526043, 34.72633857053748], [-77.35287902382636, 34.72619926502914], [-77.35298824467202, 34.72608843869493], [-77.3530696367894, 34.72578664557478], [-77.35294043587896, 34.72570345302472], [-77.35279233137716, 34.72560577649752], [-77.35265819952835, 34.725568394107434], [-77.35185602740113, 34.72553767152967], [-77.35051404886867, 34.725172577353234], [-77.35034978403924, 34.72526918001366]], [[-77.42575568057211, 34.68322600933906], [-77.4258240579529, 34.68339368900912], [-77.42589650498586, 34.68352102356798], [-77.42595894569192, 34.68363077099058], [-77.42598686924892, 34.68355263124512], [-77.42599215221102, 34.68354672673698], [-77.42607693590392, 34.683332142053146], [-77.42609038393522, 34.68330929987778], [-77.42615978470667, 34.68328062960186], [-77.42616974971193, 34.6832494214389], [-77.42612950389797, 34.683183213950905], [-77.42615623630009, 34.683087850883055], [-77.42615350692219, 34.68305184043695], [-77.42614732163497, 34.682979809964785], [-77.4258405950964, 34.682940411599866], [-77.4258651941486, 34.68284757163003], [-77.42572849411786, 34.68276240583293], [-77.42582701075563, 34.68293763800098], [-77.42582955304292, 34.682945019774195], [-77.42574101415853, 34.68318709683007]], [[-77.43761520961226, 34.58680504726124], [-77.43755850820112, 34.58689277023916], [-77.43682721659445, 34.58702354099436], [-77.43669814263387, 34.586939275250565], [-77.43643310828762, 34.586867698655965], [-77.43633194490513, 34.58681565887599], [-77.43603909618112, 34.586942563111656], [-77.43577842184504, 34.58664286999142], [-77.43564488374099, 34.58652604409261], [-77.43558324331528, 34.586456728359536], [-77.43550302411921, 34.586401937915824], [-77.43544780628807, 34.58638539528461], [-77.43532278147674, 34.58635040564833], [-77.43525076807029, 34.58634093654395], [-77.4351624542555, 34.58633404170863], [-77.43514215399475, 34.58633708104796], [-77.43507455960491, 34.58644150563853], [-77.43505780042574, 34.58646631105093], [-77.43506772336508, 34.58647987583953], [-77.43514206217519, 34.58657136171228], [-77.43521857078144, 34.58665536233829], [-77.43525090865695, 34.58669150268849], [-77.43535920626357, 34.5867306475426], [-77.43547980557292, 34.586829887540745], [-77.43557726868538, 34.58688881107477], [-77.43564508146096, 34.587013097480714], [-77.43587766597587, 34.587196954183824], [-77.43595007377976, 34.587282558938426], [-77.43593914911358, 34.58740036086729], [-77.4360393273685, 34.587505163299845], [-77.43613343718741, 34.58748314970493], [-77.43635104831489, 34.587553099952686], [-77.43641653636867, 34.58756179826228], [-77.43647158534912, 34.58757681311167], [-77.43682725514664, 34.587115242023756], [-77.43713463485719, 34.587533369467565], [-77.43753311264692, 34.58780676847715], [-77.4375817661933, 34.58783624668638], [-77.43761569260339, 34.587928215695854], [-77.43790465400528, 34.588064339411744], [-77.43804113875042, 34.588124158441275], [-77.43840382637048, 34.588016007599464], [-77.43874139735455, 34.58811753780386], [-77.43883686618294, 34.5880848101214], [-77.43919191530145, 34.58800123363116], [-77.43954233382212, 34.58798781038398], [-77.43963573667216, 34.58798093996239], [-77.43967603700747, 34.5878243256072], [-77.43933765412837, 34.58754581156331], [-77.43919163372647, 34.58737425825758], [-77.43901557111198, 34.586932701002766], [-77.4389610029219, 34.58675109280241], [-77.43895337073394, 34.58649588330474], [-77.43885384607039, 34.58628085284153], [-77.43879695878519, 34.58595396786571], [-77.43879090998037, 34.585933010610624], [-77.43879079860248, 34.585926518878075], [-77.43876142997209, 34.58589251134631], [-77.43861101915404, 34.58572817475238], [-77.43856991494016, 34.585713925631644], [-77.43840280346944, 34.58568657026868], [-77.43821136137723, 34.585792057181905], [-77.43820100412427, 34.58579431197739], [-77.43815581986527, 34.58585996945652], [-77.43803623350885, 34.58603563878167], [-77.4380089418975, 34.58609093062331], [-77.43788718315348, 34.586350465037654]], [[-77.44323959781451, 34.622756015507775], [-77.44322851208993, 34.62277509608019], [-77.44319576892522, 34.622795884341954], [-77.44322691328026, 34.622805409782174], [-77.44327463662572, 34.62314265081547], [-77.44337032234064, 34.62323351943063], [-77.44349248163147, 34.623395066201915], [-77.44376848131978, 34.6232737401832], [-77.4438957110503, 34.62323202460943], [-77.44405450744003, 34.62316519855523], [-77.44418566237994, 34.62311000469715], [-77.44427474546802, 34.6228959804987], [-77.44429192793444, 34.62285262411869], [-77.44426935946595, 34.6228295840621], [-77.44410703532864, 34.62264384391842], [-77.44376327351034, 34.6226340917129], [-77.44373099028397, 34.62263035436913], [-77.4432604491998, 34.62276441634801]], [[-77.35484553625099, 34.551174088123844], [-77.35491320240644, 34.55111973603023], [-77.3549852131037, 34.55109938212302], [-77.3551500509352, 34.55102848120271], [-77.35519734241024, 34.55100961355451], [-77.35538240215507, 34.55090026594515], [-77.35542930203036, 34.55087410168545], [-77.35549508440133, 34.55083576124654], [-77.35565628647714, 34.5507361691938], [-77.35577135395044, 34.55067357905508], [-77.35577593959253, 34.550670200618924], [-77.3557803334357, 34.55066869472752], [-77.35584534970582, 34.55060172102393], [-77.35586170114742, 34.550587741708604], [-77.35588096188394, 34.55056082245316], [-77.35590670839245, 34.550531682166806], [-77.35590597037606, 34.550485094331215], [-77.35591139829594, 34.55045237284916], [-77.35589304333911, 34.550411237941674], [-77.35588182443314, 34.55034915882284], [-77.35586566659599, 34.55029276761846], [-77.35588723031694, 34.550229289025054], [-77.35586598738453, 34.55009307907997], [-77.35600804250346, 34.55002744823812], [-77.35619163828333, 34.549853678511695], [-77.35638273280742, 34.54985433706596], [-77.35638868373567, 34.54985065532619], [-77.3565875886954, 34.549708211618714], [-77.35659640047514, 34.5497033484328], [-77.35662632013499, 34.54969361573521], [-77.35678736928102, 34.549556680780626], [-77.35682869277235, 34.549567998958466], [-77.35688200769292, 34.549534393363274], [-77.35683089501269, 34.54951520334362], [-77.35667110365358, 34.54949132285395], [-77.35659245345076, 34.549495971596876], [-77.35655836281346, 34.54948006151566], [-77.35652143775982, 34.54946389205446], [-77.35617646981534, 34.549286302206184], [-77.3561575781896, 34.54927145219776], [-77.35581149078651, 34.549309912644425], [-77.35575568006887, 34.54932931008622], [-77.35558100155757, 34.54945766588078], [-77.35541485309034, 34.54948535842423], [-77.35532579503527, 34.549447274158574], [-77.35531288007068, 34.549451392998414], [-77.35529358123658, 34.549457038588386], [-77.35521806536536, 34.54950630068381], [-77.3551973871721, 34.54951938474943], [-77.35519373708307, 34.54953261733472], [-77.35519080328538, 34.54954942264927], [-77.35531557861094, 34.54963748880847], [-77.35521148073332, 34.54977461720361], [-77.3550139548897, 34.549846453567], [-77.35491034914646, 34.5497616413396], [-77.35462227810933, 34.54980549487843], [-77.35448156821732, 34.54975754638665], [-77.35433286725382, 34.549715878481635], [-77.35423266974988, 34.54967441823088], [-77.35400676832379, 34.54958106992195], [-77.3539095180461, 34.549553483795485], [-77.35384325555849, 34.54953493183344], [-77.35369511643857, 34.54953353536045], [-77.35344986868371, 34.54956853460324], [-77.35317065099788, 34.54962983257637], [-77.35297531903312, 34.54968004256542], [-77.35266018832841, 34.54976223526041], [-77.35257968050675, 34.54978648304148], [-77.35232473939874, 34.54986022864516], [-77.35226485803041, 34.549880354321736], [-77.35208070569243, 34.54998986065171], [-77.35206579805295, 34.550000104601864], [-77.35187220964663, 34.5501331306217], [-77.35186928490015, 34.55013536222137], [-77.35186633976724, 34.550137164157285], [-77.35183155512665, 34.55016034007124], [-77.35165156789229, 34.55027779999377], [-77.35161960762464, 34.550291897098894], [-77.35153079195142, 34.5503432197611], [-77.35154092046702, 34.55038024646184], [-77.3515698843483, 34.550421464190634], [-77.3516541625362, 34.55052744321892], [-77.35165829699315, 34.55053279769311], [-77.35175272859138, 34.55063997000043], [-77.35176542374575, 34.55069310420221], [-77.35184994138808, 34.55085084138479], [-77.35209802444989, 34.55092417085128], [-77.35218282822424, 34.55106771020709], [-77.35233087741678, 34.55123071382613], [-77.3524013593194, 34.55138778854507], [-77.35232898495298, 34.55153631811893], [-77.3522223248085, 34.55173183395003], [-77.35220299632576, 34.551788025820514], [-77.35219892600416, 34.551799858989405], [-77.35220981361037, 34.55180504460549], [-77.35218955001584, 34.55192361927945], [-77.35221708465298, 34.55195994058248], [-77.3522572364738, 34.552010527054215], [-77.352259814485, 34.55203591719663], [-77.35231288178518, 34.55206266307522], [-77.35234693475012, 34.552063340304606], [-77.35241059947089, 34.55208178449239], [-77.35248697805514, 34.552078060506965], [-77.35260665188869, 34.552093166478706], [-77.35270242602634, 34.55215640898662], [-77.3528008848893, 34.5521837742441], [-77.35281811783237, 34.552189554485295], [-77.35297419294751, 34.55216327982849], [-77.35299801243352, 34.552148346621955], [-77.35315713703591, 34.55205371981764], [-77.35320442200634, 34.55202692659048], [-77.35339687247986, 34.55187688661212], [-77.35340109263277, 34.55187424451421], [-77.35341261641763, 34.551869992151055], [-77.35367952328126, 34.5517613449603], [-77.35379287798338, 34.551729672776034], [-77.35396967595912, 34.55168027373158], [-77.35399831770432, 34.55166808522955], [-77.35418957516418, 34.55155225425647], [-77.3542610230506, 34.55150304962643], [-77.35443887023098, 34.551385692593236], [-77.35458770718337, 34.55131222282388]], [[-77.33968933119759, 34.647758569638235], [-77.33973308016127, 34.64779694822929], [-77.33970370615772, 34.64775348036006], [-77.33971281036092, 34.64770784841748], [-77.33963257776108, 34.64770312273184], [-77.33968769467069, 34.64775757020637]], [[-77.34277737358143, 34.65276870557542], [-77.34290680485444, 34.65286598221639], [-77.34305377149627, 34.652898529464615], [-77.34312675694754, 34.65291399103013], [-77.34317177604821, 34.65291549259883], [-77.34343889149909, 34.652924401647425], [-77.34344579726212, 34.65290832195587], [-77.34362275038997, 34.65276240972743], [-77.34349494577248, 34.65227567874532], [-77.34330606714028, 34.65221319984701], [-77.34324876527634, 34.65218897127427], [-77.34298358804607, 34.65216579214463], [-77.34297621312396, 34.65216505870956], [-77.34297032536684, 34.65216613095185], [-77.34268267276032, 34.652218516291605], [-77.34267171635298, 34.65224306657077], [-77.34252864203397, 34.65240834971279], [-77.34268879750954, 34.65272349407499]], [[-77.38690339309778, 34.58887842462748], [-77.38717678582962, 34.58892201883421], [-77.3873195044105, 34.5889592230512], [-77.38753736877919, 34.58904553707273], [-77.3875708247743, 34.58905960352205], [-77.38760121380304, 34.589072380385424], [-77.38778585198423, 34.589238621258104], [-77.38795579333217, 34.58944582446198], [-77.38796482180753, 34.58946023276065], [-77.38812209416236, 34.58967692967373], [-77.38851881222025, 34.58953696349295], [-77.38875293844256, 34.58954124678809], [-77.38889506066133, 34.589581832958324], [-77.38900287002137, 34.58956413165504], [-77.3891470033828, 34.58954046611342], [-77.38930185223238, 34.58950947684755], [-77.38936642722746, 34.58947882676928], [-77.38939747753136, 34.58945023455725], [-77.38946730331259, 34.5893606629623], [-77.38945527655302, 34.58932208292893], [-77.38944258566451, 34.589310035748056], [-77.38941743205604, 34.589262181333005], [-77.38937022528441, 34.58924187996222], [-77.38935319227073, 34.589234519312335], [-77.38934408146496, 34.58923066216918], [-77.38931494240694, 34.589218454696734], [-77.38924557178088, 34.58918939269097], [-77.38921297073705, 34.58919353703569], [-77.38914705779717, 34.589177430572526], [-77.38899372600343, 34.589083884271055], [-77.38896503714206, 34.58907186532172], [-77.38890221741264, 34.58904554737041], [-77.38875299846592, 34.58915304446004], [-77.38864735132063, 34.589035389003016], [-77.38861675721628, 34.58892595526383], [-77.38855600679383, 34.58889943438308], [-77.3884875464656, 34.588870820860265], [-77.3884414896979, 34.588862331406176], [-77.38843089972809, 34.58884661163939], [-77.38835898930962, 34.588815109414654], [-77.3883162169484, 34.58880309098791], [-77.3882384643162, 34.58876821614696], [-77.3881872951689, 34.58874830750662], [-77.38808701844991, 34.588709292074896], [-77.38796491859873, 34.58887085283483], [-77.387774945958, 34.588622763848385], [-77.38762827762133, 34.58858209699672], [-77.38757091204513, 34.58854380609811], [-77.38752557036975, 34.58849529610983], [-77.3874441251071, 34.58845817806625], [-77.38739802250556, 34.58843883486126], [-77.38737390087017, 34.58843301229671], [-77.38733123363615, 34.5884284832971], [-77.38727538729222, 34.58842490647704], [-77.38722210000005, 34.588441456983446], [-77.38717686846968, 34.588447010291674], [-77.38699140451766, 34.58851097637036], [-77.38695990124097, 34.588506522619845], [-77.3867827652639, 34.588688392226736], [-77.38674090651463, 34.58872675692042], [-77.38666584098121, 34.58878267116907], [-77.38668081459116, 34.58889031583408]], [[-77.41870887202845, 34.62283336783803], [-77.41869372766735, 34.62281412643515], [-77.41848361019836, 34.623010087311336], [-77.41842516309984, 34.62304889240184], [-77.41837364410897, 34.623119794603355], [-77.41840719939374, 34.62316418579475], [-77.4184380684218, 34.62317986391279], [-77.4185118234414, 34.623096137514366], [-77.41865959228628, 34.623227332624225], [-77.41869697752092, 34.62323484409623], [-77.41870896732758, 34.62324860314787], [-77.41880080499102, 34.623206941349224]], [[-77.43943583422744, 34.60208219170083], [-77.43939120446828, 34.60192029962814], [-77.43938668673064, 34.60190104808319], [-77.43937030282171, 34.60191298311431], [-77.43937100419839, 34.60191605273723], [-77.43937068516313, 34.60192061084549], [-77.43941511541385, 34.6020835273883], [-77.43941796901034, 34.602087285401474], [-77.43942623256079, 34.60210037112182]], [[-77.39545224965863, 34.58662162557384], [-77.3954149160657, 34.58663160051569], [-77.39536526220613, 34.58667898749438], [-77.3951665461732, 34.58682440757324], [-77.39514877873745, 34.5870371556055], [-77.39511269211238, 34.58713999161976], [-77.39511118120822, 34.58719734428221], [-77.39505814981996, 34.587241410990494], [-77.39493349892888, 34.58745612472015], [-77.39486109738425, 34.58755594658273], [-77.39483161798829, 34.58760510634929], [-77.39477859211274, 34.58773616191723], [-77.39478063574427, 34.587911406552415], [-77.3948610650223, 34.58794818065977], [-77.3949070757899, 34.5879692178237], [-77.3950044578191, 34.58800474680055], [-77.39504021068697, 34.588018850727295], [-77.39505808691386, 34.58802537235041], [-77.3950851651539, 34.58802228009305], [-77.39512421487089, 34.58798747249671], [-77.395317872922, 34.58781485258454], [-77.39545217673142, 34.58758260916594], [-77.39548182766467, 34.587543260523496], [-77.39551989115517, 34.5875058259345], [-77.39584625861934, 34.58719343444587], [-77.39602192090106, 34.58719810312601], [-77.39624030888567, 34.58722484098485], [-77.3963810624816, 34.58722994391677], [-77.39657246964248, 34.58735398827089], [-77.39663435282512, 34.587362374142266], [-77.39665181856643, 34.587361359992975], [-77.39683138000822, 34.58735093373776], [-77.39696486413213, 34.58729738176899], [-77.39701805477621, 34.58727855056836], [-77.39702841098831, 34.587271388400964], [-77.39705588697908, 34.58725464759212], [-77.3972882695361, 34.587106129317846], [-77.39742247746497, 34.58700383885823], [-77.397562236071, 34.58693720958246], [-77.39816777439215, 34.58674540204091], [-77.39821058874738, 34.58679257706633], [-77.39827326607569, 34.586751580022096], [-77.39839393876014, 34.58666663954129], [-77.39875177123409, 34.5863489516002], [-77.39899871201055, 34.586103697455876], [-77.3992187497789, 34.585935569083276], [-77.39975563598202, 34.585621026656796], [-77.39977175307136, 34.58560246963001], [-77.39955199957416, 34.58505428770526], [-77.39912218298954, 34.584996273072605], [-77.3989987447083, 34.58515364620724], [-77.39889996791784, 34.585001773490845], [-77.39866958807804, 34.58492857640149], [-77.39821067090014, 34.58491348851435], [-77.39815811353053, 34.584945742198784], [-77.39805720033303, 34.58501692930119], [-77.39769068644655, 34.58535870207132], [-77.3974225579802, 34.58548114914352], [-77.39734691304409, 34.58554397548407], [-77.3971568753378, 34.58570971146919], [-77.39702849110851, 34.58587504757559], [-77.39679812184553, 34.58604771868497], [-77.39672974603963, 34.586160285296216], [-77.39663442274232, 34.58623365368363], [-77.39650987329394, 34.58622349908681], [-77.39606126135038, 34.58638561123715], [-77.39584631081993, 34.58646195085658], [-77.39550410744938, 34.586603085924835]], [[-77.36353076569755, 34.674048224922196], [-77.36349810442044, 34.67400282824517], [-77.36358101086589, 34.673797625811545], [-77.36351234596951, 34.673742644366236], [-77.3632511562548, 34.67379872590368], [-77.36301553427555, 34.673705667350006], [-77.3628164146239, 34.67407863015329], [-77.36275376953348, 34.67415499309134], [-77.36277071737378, 34.67423611939174], [-77.36283649245397, 34.674512202994585], [-77.36368195363569, 34.67429645082139]], [[-77.3161178983224, 34.641176812453764], [-77.31627948933384, 34.641244438511265], [-77.3162562554794, 34.64105250101028], [-77.31615047390065, 34.64096912804273], [-77.31590429963025, 34.64089397773088], [-77.3160494783499, 34.641168951846694]], [[-77.40102164606257, 34.61467721577181], [-77.40065295270922, 34.614446818249505], [-77.40074516712005, 34.61501489936376], [-77.40114313920354, 34.61490408037115]], [[-77.42475603720885, 34.56900950377943], [-77.42473107555656, 34.569143431129675], [-77.42489716961386, 34.569141174036126], [-77.42500102274695, 34.56917414888109], [-77.42510315980681, 34.569113226766696], [-77.42527098499234, 34.56906545960474], [-77.42524735963582, 34.56893692595367], [-77.42512688548129, 34.56893102199395], [-77.425000950466, 34.568901576020814], [-77.42487348556187, 34.56896931998154]], [[-77.3404367445332, 34.645901798795535], [-77.34025198976359, 34.64606636247033], [-77.34010250078734, 34.64614007012892], [-77.34009230384692, 34.646382502821226], [-77.34006340819758, 34.64664912098646], [-77.34028198585683, 34.64672482834902], [-77.340428131063, 34.64686575444219], [-77.34053313143329, 34.646875717961215], [-77.340634394873, 34.646885326885965], [-77.34068035323303, 34.64677544300191], [-77.34072825723558, 34.64672425581285], [-77.3407520335456, 34.646674150102236], [-77.3407722494839, 34.646551831354344], [-77.34073369084257, 34.64639570514978], [-77.34081959665627, 34.646213799365796], [-77.3408283459473, 34.64615044842927], [-77.34083738714799, 34.64612089379933], [-77.34092607645547, 34.64590806338038], [-77.3409260882822, 34.64587990447386], [-77.34081815140355, 34.645807308179485], [-77.34074308415532, 34.64583306900918], [-77.34051065978392, 34.64585386672031]], [[-77.39747154717455, 34.56891591573832], [-77.39742354428506, 34.56889206255463], [-77.39731826928377, 34.568876310670646], [-77.39733632839163, 34.56898716015625], [-77.39738098516237, 34.56902657269652], [-77.39742352927784, 34.569121445944546], [-77.39751639858711, 34.569285655952456], [-77.39779204776218, 34.569318566155246], [-77.39772699443134, 34.56902833019427], [-77.39756416746232, 34.56895428586737]], [[-77.39703074393735, 34.59450560966046], [-77.39703000016989, 34.594503582216205], [-77.39702801864186, 34.59450508798075], [-77.39702335187725, 34.59450667598096], [-77.39702801857659, 34.594506350678074]], [[-77.44062913405271, 34.59005738371505], [-77.44062477060731, 34.58990723498648], [-77.44037489596938, 34.589806226594774], [-77.44020368758976, 34.58972797702671], [-77.44014687230995, 34.58973069333628], [-77.43998079900103, 34.58971723760845], [-77.43978644120715, 34.5898133501039], [-77.43978269155731, 34.58981551016242], [-77.43978049875885, 34.58982061605987], [-77.43971260740697, 34.590039154823764], [-77.43978398964731, 34.59019427899986], [-77.4398038763093, 34.59021683633937], [-77.43985653081725, 34.59030874403214], [-77.43993443353699, 34.590431669202744], [-77.43998116191607, 34.59050540306709], [-77.44021801217968, 34.59056007539955], [-77.44036224972564, 34.59079439262949], [-77.44036724694938, 34.59080241106515], [-77.44037535698114, 34.590797004530074], [-77.44040607597557, 34.590788054286335], [-77.44061959522966, 34.59059584346464]], [[-77.44596852559465, 34.602054473663074], [-77.44596114634068, 34.602067762665925], [-77.44590737696413, 34.60215693507458], [-77.44585462435361, 34.60228276695449], [-77.44582073149805, 34.602312454709214], [-77.44580682161887, 34.60236577221494], [-77.44577115876145, 34.602491195918155], [-77.44577859738675, 34.602607414770645], [-77.44576227414717, 34.60279150309019], [-77.44599469552787, 34.602683044611105], [-77.44608578264649, 34.602424692919264], [-77.44610881896887, 34.602394903154355], [-77.44634760903394, 34.6021871448993], [-77.44635873114885, 34.60206220403373], [-77.44610918603725, 34.60202554475764], [-77.44602495425958, 34.60201317079528], [-77.44597891639908, 34.60203426453889]], [[-77.43301262354952, 34.62353600472665], [-77.4329801204091, 34.62349232512187], [-77.43290505777709, 34.62341841727147], [-77.43287492133037, 34.623487808584315], [-77.43286277291234, 34.62352576876922], [-77.4327216873862, 34.623743898790494], [-77.43272872383193, 34.623751883477254], [-77.43287800385917, 34.623798609972035], [-77.43300500196995, 34.62378365994175]], [[-77.44253667260497, 34.60098093915279], [-77.44265939374719, 34.60089627705447], [-77.44266695772095, 34.600791638062674], [-77.44277877460695, 34.60049657195419], [-77.44282751385421, 34.60037660571152], [-77.4428175862076, 34.60033222570182], [-77.44292763432468, 34.599978804861706], [-77.44289368780059, 34.59944181202245], [-77.44215091838376, 34.59957133284414], [-77.44191060987123, 34.59972953267658], [-77.44167612087072, 34.59993268257801], [-77.44163384713757, 34.60006791405681], [-77.44152229134497, 34.60037953776005], [-77.44152830481961, 34.60050036728358], [-77.4416701714975, 34.60093774524547], [-77.44211383946612, 34.600949358429034]], [[-77.36912920227361, 34.55067555674002], [-77.36894307073565, 34.551487623580016], [-77.36896738718573, 34.5515886564656], [-77.36898626873591, 34.551661072124745], [-77.36903266632534, 34.551824078835416], [-77.36909805122184, 34.55204361987646], [-77.3691024521744, 34.55205593260692], [-77.36910965328987, 34.55205781425062], [-77.36913712943476, 34.552078721979115], [-77.36941608815164, 34.552301343394134], [-77.36984098861781, 34.55244210290851], [-77.36987397639614, 34.55245313282658], [-77.36991041668593, 34.55243210003046], [-77.37006812215972, 34.55203485012759], [-77.37016884187584, 34.55173158273684], [-77.37016126881943, 34.55141664916763], [-77.36990371224057, 34.5511466772392], [-77.36976339083216, 34.551072868421855]], [[-77.42251686146994, 34.62388456909428], [-77.42251596209256, 34.62388942475156], [-77.42251849607594, 34.623890545563036], [-77.4227768898672, 34.624029559896755], [-77.42286644801956, 34.62401081773511], [-77.4230374490489, 34.623865573367794], [-77.42313152860663, 34.62379388473169], [-77.4234255020686, 34.62336202276165], [-77.42349293213715, 34.623300938002956], [-77.42384260977882, 34.623142224918105], [-77.4235550262774, 34.62307880096238], [-77.42327186562629, 34.62280031034324], [-77.42313166271431, 34.6226820687287], [-77.4227366767814, 34.622765897395716], [-77.42271317192595, 34.623027943827815], [-77.4226183642305, 34.6233092370061], [-77.42304414006455, 34.62336971557603], [-77.42271509332978, 34.623648090933116]], [[-77.38922435096357, 34.54599627967376], [-77.38935085820339, 34.54601529499837], [-77.38931814637017, 34.54592525361987], [-77.38926361439842, 34.545744551437174], [-77.38916813635772, 34.54592645171425]], [[-77.44582028542044, 34.60317772130439], [-77.44575867602694, 34.60315012595339], [-77.44576100193976, 34.603220669327435], [-77.4457619766138, 34.60324901570828], [-77.44581238202476, 34.60334633614677], [-77.44582160608986, 34.60324187933174]], [[-77.35780907238376, 34.67838250571755], [-77.35795240405565, 34.67846606311461], [-77.3580816481658, 34.678266729466955], [-77.35807427201497, 34.67820960438758], [-77.3580720290011, 34.67818008635139], [-77.35816694351354, 34.677953181451876], [-77.35815432402774, 34.677919630459286], [-77.35816643321088, 34.677831404977795], [-77.35814422477677, 34.677805142729], [-77.35804527758171, 34.67780646765489], [-77.35791011970227, 34.677744766545395], [-77.35786785200398, 34.6777263541693], [-77.35777546207336, 34.67776326339482], [-77.35773381306487, 34.677958355426895], [-77.35771274046995, 34.678062450794954], [-77.35783938428386, 34.67824186896639]], [[-77.44228174007844, 34.597666972127406], [-77.44216828884667, 34.59758598604132], [-77.44210612327475, 34.59748680237409], [-77.44195683782456, 34.597301637419605], [-77.44173792616226, 34.59719793677838], [-77.44171968815562, 34.59717930139381], [-77.44156058771377, 34.597119740141636], [-77.44147827703355, 34.59709058467091], [-77.4413635218587, 34.59707683782952], [-77.44132005407255, 34.59707163066327], [-77.44117411458114, 34.59705414792661], [-77.44116646890768, 34.597060446371856], [-77.44105369063465, 34.597275620787926], [-77.44112190222965, 34.59742984627975], [-77.4411406174282, 34.597475346978726], [-77.44116668499774, 34.59751060398018], [-77.44134754617839, 34.597675241328], [-77.44153259109567, 34.59779186100588], [-77.44169583236284, 34.597908306883646], [-77.44206141563451, 34.59771665730438]], [[-77.36005017567365, 34.78310877870999], [-77.36024565713008, 34.783107651700746], [-77.36052832891741, 34.78310602094703], [-77.36030699105578, 34.78289651673326], [-77.3602076492275, 34.782910857791826], [-77.3599927368236, 34.782873855674694], [-77.35996409316454, 34.782908576291995], [-77.35995054319947, 34.78301910034919]], [[-77.39381397496551, 34.62420139805775], [-77.39370902070971, 34.62428008382968], [-77.39373197727664, 34.624428617973805], [-77.39371508696978, 34.62449149432562], [-77.39387296121527, 34.624561358590526], [-77.39397674428184, 34.62455428137042], [-77.39419239577138, 34.624554404669645], [-77.3942672020481, 34.624381872281084], [-77.39447345785888, 34.62416985896753], [-77.39426721910517, 34.62411177066971], [-77.39396506081522, 34.624144007541815]], [[-77.3754409666987, 34.641032512215496], [-77.37544891537998, 34.6409220139462], [-77.37536635735364, 34.64090492022133], [-77.37533944451366, 34.64088583892478], [-77.3752723285973, 34.640875176571775], [-77.37524714374982, 34.640951071436206], [-77.37525905909241, 34.6410358622818], [-77.37533940776653, 34.64101782512955]], [[-77.40099671422729, 34.581196202262554], [-77.40109472867975, 34.58104658737554], [-77.4011560413837, 34.58096092345891], [-77.40096900936946, 34.58082573301421], [-77.40094306114644, 34.58080733044214], [-77.40089793014816, 34.58078588235937], [-77.40077200062092, 34.58071154240382], [-77.40060604817825, 34.58082800124991], [-77.4005871724108, 34.58084385456667], [-77.40057498667926, 34.58089732511154], [-77.40053404426124, 34.58105067861206], [-77.40057498258359, 34.5811142169176], [-77.40062543346633, 34.58119541410743], [-77.40073591362854, 34.58123383620121], [-77.40077199180911, 34.581244057592215], [-77.40095635149677, 34.58121566008277], [-77.40096900387901, 34.58121371119962]], [[-77.33894513072858, 34.6352918534301], [-77.33875712965008, 34.635434502571194], [-77.33899142122075, 34.63552226167607], [-77.33921400384641, 34.63537179533321]], [[-77.41772783471059, 34.56986439397685], [-77.41771284043661, 34.569843257911714], [-77.41769135422602, 34.56984650720009], [-77.41769381983752, 34.56986930769212], [-77.4177128470786, 34.56988048586289]], [[-77.36158662110795, 34.67285319702594], [-77.36166481678259, 34.672891357498436], [-77.36179923539898, 34.672823983701136], [-77.36194728890375, 34.6727586365072], [-77.36189638697141, 34.67267351707126], [-77.36189796654696, 34.67260345575268], [-77.36188323038732, 34.67256874834942], [-77.3618271390617, 34.67252971867029], [-77.36177434672057, 34.67251389018815], [-77.36169030777566, 34.67247340905649], [-77.36165135173383, 34.672467944429336], [-77.361605382522, 34.672455519653255], [-77.36151862280701, 34.67257013122253], [-77.36150956976259, 34.672620089573414], [-77.36147711215841, 34.67279920098707]], [[-77.39727820954995, 34.620368820352326], [-77.39722403101368, 34.620367831830826], [-77.39721311675233, 34.62036645325695], [-77.39720440654999, 34.62037946440864], [-77.3972240293062, 34.62042397004099]], [[-77.38186176056708, 34.58820149237156], [-77.38185711055993, 34.588198055009954], [-77.38179707625268, 34.58814612041311], [-77.38175861415078, 34.58812051051303], [-77.38166486025199, 34.58822471533229], [-77.38166007284694, 34.58823034253318], [-77.38165994135014, 34.58823043919686], [-77.38165984135712, 34.58823059525988], [-77.38165967522528, 34.58823104742236], [-77.381660072652, 34.58823115323003], [-77.38166187554374, 34.58823224480671], [-77.38175857157951, 34.58829838463106], [-77.38182133459793, 34.58824585214198], [-77.38185710344645, 34.58822793049944]], [[-77.44389822001256, 34.60211449859019], [-77.44390303523434, 34.60210079229299], [-77.44389112376854, 34.60208857035664], [-77.44387978387911, 34.60210742261041]], [[-77.32404330376126, 34.74219607586297], [-77.32954263223216, 34.7391638352473], [-77.33186246680339, 34.73928334545595], [-77.33190511944746, 34.739304888535884], [-77.33191419844931, 34.73932919490227], [-77.33223361405732, 34.74121554227463], [-77.33242035912443, 34.74206177024134], [-77.33324807232059, 34.742900346255425], [-77.33326544963238, 34.74302359087328], [-77.33442024872639, 34.743677244771035], [-77.33524052685647, 34.74428829595023], [-77.33578919882981, 34.74462709649956], [-77.33655475481831, 34.74518921343319], [-77.33638934092801, 34.745848606064285], [-77.33587741569173, 34.74656448906628], [-77.33603506620838, 34.747165378901705], [-77.33580825867487, 34.74754871952016], [-77.33643718231689, 34.74841402342661], [-77.33644288462894, 34.74842841643055], [-77.33644309316472, 34.74843643161597], [-77.33652066201621, 34.74851840583357], [-77.33642427544366, 34.74845842224282], [-77.33641742452937, 34.74844799172346], [-77.3364028580311, 34.74844194767518], [-77.33540419376358, 34.747846274009284], [-77.3347187468223, 34.74819843114714], [-77.3346969022523, 34.748194234469075], [-77.33415304845263, 34.748028941538394], [-77.33387187264181, 34.74781417053352], [-77.33367131602311, 34.74740617790245], [-77.33327344959693, 34.74693366253013], [-77.33326690037642, 34.7469288291878], [-77.3332390980959, 34.74692616820255], [-77.33270648616916, 34.74682342115477], [-77.332436658303, 34.74677886548236], [-77.33242042688556, 34.74677716731326], [-77.33233536685341, 34.7467247508844], [-77.3321698197652, 34.746608981140795], [-77.33214878808853, 34.74658824547632], [-77.33204060349621, 34.746463532996856], [-77.33196862847575, 34.74636925393195], [-77.33197671591785, 34.74634420901896], [-77.3318793962819, 34.74613779914992], [-77.33174689373513, 34.74600336156976], [-77.3316987616263, 34.745769639314645], [-77.33155401025607, 34.745695027294985], [-77.33143491674778, 34.74557835599766], [-77.33127505120302, 34.7455659989631], [-77.33109516997867, 34.74551423087977], [-77.33107658855221, 34.7454597117987], [-77.33074932664135, 34.74531918096261], [-77.33074803850047, 34.74531839116183], [-77.33074761374189, 34.7453181808097], [-77.33068362785579, 34.74497356411242], [-77.33035974155536, 34.744593729831074], [-77.32942213050474, 34.7447813544174], [-77.32911078930184, 34.74476892100975], [-77.3287275035296, 34.74490090894311], [-77.3278604730586, 34.74494876929529], [-77.32756763048232, 34.74500434404703], [-77.32733348762217, 34.74481131436943], [-77.32711804009064, 34.744561732681476], [-77.32581070260191, 34.74413423152508], [-77.32571998959372, 34.74407002846706], [-77.32569973141432, 34.74407560197035], [-77.32559274940496, 34.744075095276024], [-77.32380985641504, 34.74239940828048], [-77.32350303718877, 34.7426113991655], [-77.32374837528417, 34.74237832176538], [-77.32376805411101, 34.74232369701137], [-77.32385800559298, 34.742233855300825]], [[-77.48567369211877, 34.68249083703693], [-77.48563401972997, 34.682331700262516], [-77.48376802273188, 34.68233165768989], [-77.48321376395552, 34.68302219061023], [-77.48251286618151, 34.68357829649559], [-77.4822035170015, 34.6843000934587], [-77.48196548064915, 34.68485547771662], [-77.48158941119124, 34.68573293525659], [-77.48124416550735, 34.68653840220621], [-77.48001276022649, 34.689411728126885], [-77.47981948219325, 34.68989914131712], [-77.47974252323102, 34.690042267420104], [-77.47976309826727, 34.69032098740627], [-77.48001125940485, 34.69335535129132], [-77.48090519530308, 34.69491971227014], [-77.48201321439936, 34.69920449784528], [-77.48621243971496, 34.69677280332273], [-77.48710891068015, 34.69633705600579], [-77.4879892243398, 34.69359344604499], [-77.48811801256727, 34.69296681091937], [-77.48782883616494, 34.69083446490167], [-77.48779104493269, 34.69057946437134], [-77.48766754114183, 34.69033246707575], [-77.48674887182244, 34.6884952817033], [-77.48649818277772, 34.68799391604205], [-77.48551046159358, 34.687102174658385], [-77.48660075012278, 34.68501027288301], [-77.48659235531288, 34.68500289007951]], [[-77.39215828762609, 34.74458123769823], [-77.39196657086852, 34.74454332936759], [-77.39184720205989, 34.744428733559296], [-77.39156939986239, 34.744198502224855], [-77.39035194560657, 34.74326656685961], [-77.38992818605738, 34.7427264517093], [-77.38922217580631, 34.74195209511516], [-77.3897020150389, 34.74056478637221], [-77.39069065095693, 34.73941784001473], [-77.39091271345448, 34.73933147544443], [-77.39116001634547, 34.7395820450736], [-77.39252301764908, 34.74057661079841], [-77.39293675359124, 34.741197567242054], [-77.39484574652838, 34.74298863542408], [-77.3950812202994, 34.743081036566025], [-77.39501808707911, 34.74327041301739], [-77.39250803259593, 34.744526841360994]], [[-77.30623531498304, 34.66172915759438], [-77.3093089583757, 34.66352548943119], [-77.30958083462396, 34.66429109596419], [-77.31018589508554, 34.66427025239168], [-77.31091654172899, 34.66330528577258], [-77.31278050830178, 34.660669635289395], [-77.31278053037913, 34.65967408197064], [-77.31227780654196, 34.658956955373114], [-77.31132176661717, 34.65716440395401], [-77.31111488194756, 34.656667743947054], [-77.31099058402769, 34.656543444201084], [-77.3095737669091, 34.6551266121648], [-77.30812964785875, 34.65402050219184], [-77.30635703798094, 34.6546700959712], [-77.30575575109619, 34.65495523004722], [-77.30417135642057, 34.65747742072444], [-77.30440867613297, 34.65819027790771]], [[-77.44832688105349, 34.530191216498565], [-77.44832725074167, 34.530334180471414], [-77.44934479757669, 34.53097554698383], [-77.44807627103107, 34.53116980180336], [-77.44799168966169, 34.53044539080728], [-77.44796470659982, 34.53038666642688], [-77.44785684374331, 34.53025290180609], [-77.44810162654109, 34.53000850743926]], [[-77.44379236289733, 34.682589220264454], [-77.44372738522253, 34.68248871170407], [-77.44354348587876, 34.682246718717636], [-77.44357296882868, 34.68202256857432], [-77.44359143769668, 34.681882151588354], [-77.44379792167479, 34.68177037584569], [-77.44386358259598, 34.68174990472429], [-77.4441257994103, 34.68174442305534], [-77.44431524724997, 34.681740462235794], [-77.44475864528454, 34.681731190987236], [-77.44477064937703, 34.68173023112066], [-77.44520273339671, 34.68169567921383], [-77.44592333252326, 34.68169947565752], [-77.44561618166145, 34.68237138941971], [-77.4453658985885, 34.6825025146976], [-77.44524008182216, 34.682504340737545], [-77.44518443149795, 34.68251520794907], [-77.44480340047143, 34.682538279248426], [-77.44451297515286, 34.68262140013482], [-77.44440278841239, 34.6826311699381], [-77.44415654869599, 34.6826387514929], [-77.44397060499172, 34.682672459593135]], [[-77.45176720417054, 34.68195739925769], [-77.45169898447492, 34.68248027153878], [-77.45127996577861, 34.6826562633062], [-77.45129990373059, 34.682899790206044], [-77.45122949434129, 34.68305517050047], [-77.451129233852, 34.68315748681824], [-77.45074342387439, 34.68326429070191], [-77.45073809600166, 34.683265869774836], [-77.4507340941794, 34.68326606784215], [-77.45072804481097, 34.68326457044395], [-77.45042849493328, 34.68321495898764], [-77.45028690592326, 34.68310471777512], [-77.45021109179754, 34.68303401571315], [-77.45017459579805, 34.68298500326385], [-77.44996601364723, 34.682713043470336], [-77.44997570756206, 34.68268588260481], [-77.45003860610454, 34.68245891065575], [-77.45002087769711, 34.682093852054905], [-77.45009155893356, 34.68191840621205], [-77.45021134906148, 34.68169463164493], [-77.45045607244951, 34.681309931707354], [-77.45122708143734, 34.68119730218769], [-77.45129625275644, 34.681187821170724], [-77.45134141253783, 34.68116505847067], [-77.45145533858988, 34.68117514802103], [-77.45156960285522, 34.68131702867223], [-77.45177187445243, 34.681892504937686], [-77.45204794247688, 34.68166862564841], [-77.45222282560661, 34.68174749866638], [-77.45245132891085, 34.68175854118836], [-77.45266054663078, 34.68197785700255], [-77.45268501575808, 34.682000913421675], [-77.45270035541084, 34.68200535740992], [-77.45276194016643, 34.68215304870006], [-77.45273970436457, 34.682201289959366], [-77.452727263421, 34.68228067997707], [-77.45257742607066, 34.6824306594469], [-77.45249937435776, 34.682406288606174], [-77.45229580467978, 34.682296607096745]], [[-77.3573193004247, 34.769494680621186], [-77.3578121394948, 34.769689599923595], [-77.35804269004362, 34.769661469612075], [-77.35845420367323, 34.76954181534829], [-77.3588393666102, 34.7695642632271], [-77.35903441965921, 34.769606939067835], [-77.35912498994244, 34.769660164206385], [-77.35931854262633, 34.76982033159035], [-77.3594654024485, 34.769964713110156], [-77.35950707302214, 34.7701884863327], [-77.35954727590348, 34.770376880440395], [-77.35959654303562, 34.77067905853559], [-77.35951326478971, 34.771006950182446], [-77.35962144297298, 34.771238504012615], [-77.35977733740879, 34.771466822385776], [-77.35986580291512, 34.77168957060615], [-77.36004096090463, 34.77195637603016], [-77.36017165228336, 34.7723181210746], [-77.36017253192745, 34.77235615404482], [-77.36015544277072, 34.77237392593826], [-77.35982614849014, 34.77255229304636], [-77.35961440347796, 34.772580179608745], [-77.35946673552331, 34.77253611566073], [-77.35916330246536, 34.77256216495217], [-77.35890418778803, 34.772541822043365], [-77.35834059059545, 34.772664144568594], [-77.35815285224076, 34.772641754209964], [-77.35798862193838, 34.77264011504807], [-77.35612240953196, 34.77271502578578], [-77.35624938834032, 34.7711001045973], [-77.3562730867388, 34.771060012328576], [-77.35630211372262, 34.770999962913976]], [[-77.4256416067798, 34.731981096776174], [-77.42575769645899, 34.73193703503681], [-77.42582561193501, 34.73190783037702], [-77.42593992340547, 34.731895940734574], [-77.42603610280953, 34.731877841339895], [-77.42618614603442, 34.73189784376236], [-77.4262649276368, 34.732009543695916], [-77.4263178162856, 34.732066112308615], [-77.42628224800559, 34.73228003903193], [-77.42627842408666, 34.73229379414562], [-77.42626295119136, 34.73231218767136], [-77.4261565710594, 34.7324486139988], [-77.4259629569764, 34.732463058468916], [-77.42593771780592, 34.73246494143152], [-77.42585259856564, 34.732483350717594], [-77.42558027070234, 34.73254986044355], [-77.42546450364867, 34.73243957557774], [-77.4251337245903, 34.732336818726054], [-77.42531133066592, 34.7321892895183], [-77.42550920938413, 34.73202491932775]], [[-77.35219896749396, 34.55036506594292], [-77.35216366689085, 34.550336003535406], [-77.35203934037987, 34.550244483721805], [-77.35204320991735, 34.55023092991707], [-77.35205316480659, 34.55022483916564], [-77.35206076805724, 34.550219037838346], [-77.35214667881925, 34.55014615345784], [-77.35224337107451, 34.55007971021431], [-77.3522524835581, 34.55007344846994], [-77.3522605320865, 34.550068662406304], [-77.35228064020565, 34.550061904219014], [-77.35245833428075, 34.55000366251497], [-77.35261053732007, 34.549999298330725], [-77.35265488493162, 34.54999313898051], [-77.35273197347016, 34.54996176468728], [-77.35280667141998, 34.54999863329289], [-77.35292106419247, 34.55015039964836], [-77.35294295620835, 34.5502238391392], [-77.3526445006019, 34.550445261679265], [-77.35250075128131, 34.55044263489886]], [[-77.46066887934477, 34.50336195997567], [-77.46078756863459, 34.50316997790738], [-77.46080677481457, 34.503131924732415], [-77.46082542192677, 34.503118018067305], [-77.46104201581616, 34.502949170030305], [-77.46133963115345, 34.50272634099449], [-77.46153656767656, 34.502595353907395], [-77.4619611739414, 34.50250016030206], [-77.46219012732827, 34.502318768735705], [-77.46217144401886, 34.502173078554804], [-77.46248989222335, 34.50200780907908], [-77.46264789566567, 34.501947087403124], [-77.46298512548873, 34.50195933128883], [-77.46298807658174, 34.50211231299317], [-77.46305824251506, 34.50221809023151], [-77.4630042244157, 34.50234081315316], [-77.4629859951669, 34.502408311845926], [-77.46285074541406, 34.50254531508031], [-77.46280807599823, 34.502618906565694], [-77.4626923466996, 34.5027480045405], [-77.46240912020673, 34.50301915549072], [-77.46229382187539, 34.503192560740615], [-77.4621763749825, 34.50332357276125], [-77.46206610599764, 34.50344657695695], [-77.46199938729106, 34.503515371970174], [-77.46163416292259, 34.50380322416706], [-77.46148458304602, 34.50375815412702], [-77.46058425004009, 34.503605213166665]], [[-77.35190412693156, 34.78620789073807], [-77.35188321840644, 34.785970796892755], [-77.35194098875377, 34.785391135736184], [-77.35177779933566, 34.78532350131018], [-77.35228644135141, 34.784583271416274], [-77.35222280055086, 34.785174481966294], [-77.35342458513179, 34.784790986849565], [-77.35366470957464, 34.78485435807797], [-77.35396916528238, 34.78497913041509], [-77.35401066815172, 34.78501716747933], [-77.35413976939878, 34.78527755158585], [-77.35439676130652, 34.78545157505573], [-77.3544163601324, 34.785502421574996], [-77.3545020766133, 34.7855603662167], [-77.3546955580169, 34.78578345972855], [-77.3547389750086, 34.785833521160086], [-77.35478706784959, 34.78602651952601], [-77.35478969267321, 34.78613089182245], [-77.35436170055605, 34.78607964424364], [-77.35423100585714, 34.78614029623767], [-77.35364168294507, 34.78666110436123], [-77.35339175864007, 34.787051606708374], [-77.35334272782386, 34.7871348768691], [-77.35313450135209, 34.78748851139772], [-77.3530795591823, 34.787581819627], [-77.35291384851807, 34.787796894175], [-77.35285421140357, 34.787878579573416], [-77.35278054786981, 34.787899372992094], [-77.35271188862441, 34.7878759511304], [-77.35256726243702, 34.78786623663264], [-77.35254467508214, 34.78781890928396], [-77.35249844259198, 34.78772203840353], [-77.35247134520148, 34.78766526050657], [-77.35249585139955, 34.78732981960745], [-77.35244077936072, 34.78718207235291], [-77.35214586468418, 34.78681046398614], [-77.35187028444095, 34.786369227893346], [-77.35191050081322, 34.78628005929826]], [[-77.35441834041444, 34.77458443212502], [-77.35536016808449, 34.77400494953683], [-77.355351199984, 34.77488491848146], [-77.3563443288009, 34.77474218068225], [-77.35732997154896, 34.77460970376245], [-77.35759243564829, 34.774570892652704], [-77.35769486305804, 34.77471789380355], [-77.35787065938382, 34.77490591993816], [-77.35805046248015, 34.77501613196169], [-77.35808077207432, 34.77509853041615], [-77.35819160825044, 34.77540362915573], [-77.3583195096779, 34.7756222496508], [-77.35834072193967, 34.775787811372794], [-77.3584832256673, 34.77592182602546], [-77.35850172154939, 34.7759656391029], [-77.358515027446, 34.77602384488664], [-77.35843912875838, 34.77607362250488], [-77.35835879942766, 34.776142715555636], [-77.358324847954, 34.77618335309603], [-77.35794052629434, 34.77640062433569], [-77.35769754414424, 34.77652304020479], [-77.3576808511952, 34.77653145018827], [-77.3570114941007, 34.77684216475066], [-77.35696701997631, 34.776861494842166], [-77.3569219203908, 34.7768789199817], [-77.35688068818027, 34.776862615162685], [-77.35680656238686, 34.77683539630679], [-77.3561761409862, 34.77661591747042], [-77.35587335723676, 34.77636326365271], [-77.3554223022562, 34.77640711619583], [-77.35491745278622, 34.77552872592273], [-77.35437861687636, 34.775632740942505]], [[-77.32341568186683, 34.756111598734506], [-77.32337531556485, 34.756109079401696], [-77.32320763340331, 34.75609861417778], [-77.32287041556359, 34.75592654475815], [-77.32270667017391, 34.75606734808385], [-77.32245880779095, 34.75602529311976], [-77.32229787505183, 34.755835253112885], [-77.32223092491768, 34.75574503345244], [-77.32237758985727, 34.755561228847995], [-77.32265435659193, 34.75538253296011], [-77.32279279944521, 34.75537449003045], [-77.32300146715022, 34.75547603587842], [-77.32308690090139, 34.75554254671223], [-77.32345363248773, 34.7559811350808], [-77.32357736502632, 34.756047968304905]], [[-77.48603654003432, 34.68233170582542], [-77.48661452282445, 34.68500000939435], [-77.48662662537555, 34.68500289016323], [-77.48937677758339, 34.68528210770529], [-77.49081615893127, 34.68500284386732], [-77.49212970521376, 34.68445924517276], [-77.49270494386147, 34.684215796723294], [-77.49305502565088, 34.683168586415874], [-77.49229123918091, 34.68270943072799], [-77.4916879065429, 34.6824560955698], [-77.49060045185271, 34.682391818030844], [-77.49008262069701, 34.68233169069906], [-77.48879675726451, 34.68233170823625]], [[-77.32162580847582, 34.744054407951644], [-77.3222422473554, 34.7436701193432], [-77.32237716059356, 34.744515624811974], [-77.3226889119847, 34.74481362151023], [-77.32266839687469, 34.74517969942414], [-77.32262802899925, 34.74545598957866], [-77.32272386205341, 34.745574956785816], [-77.32265514067556, 34.74580640721253], [-77.32234200437182, 34.74586847983876], [-77.32222278486591, 34.7457963978061], [-77.32175915367839, 34.745650680473986], [-77.32167817118386, 34.745609338507464], [-77.3216592272154, 34.74560511064455], [-77.32161052116597, 34.7455953687798], [-77.3207131531644, 34.74480824613096], [-77.32068573798823, 34.74477700972386], [-77.3206624706297, 34.74475049884319], [-77.3204835069477, 34.74451993375727], [-77.32081204185016, 34.74446829328414]], [[-77.31266503049375, 34.69416763349158], [-77.31364835643771, 34.69307611535484], [-77.31409345018088, 34.69288066688003], [-77.31426586891527, 34.692855832299244], [-77.31442742725308, 34.6928413156279], [-77.31443833162206, 34.69296791144374], [-77.31424917542952, 34.69301882148273], [-77.3141214498137, 34.69398604014555], [-77.31401609332474, 34.694089131426416], [-77.31390970154456, 34.6940804754682], [-77.31268311510212, 34.69418367768852], [-77.3126823833938, 34.694183528950624], [-77.31268207805329, 34.69418345494298], [-77.31268135693364, 34.69418328761558]], [[-77.35386584233265, 34.78327246913417], [-77.35323148565274, 34.783174546212955], [-77.35340382388672, 34.78268965811411], [-77.3534365163666, 34.78265015319054], [-77.35346386924165, 34.782643493499386], [-77.35411213950971, 34.78242485418869], [-77.35448260103028, 34.7822999081977], [-77.35505592906958, 34.78220787208373], [-77.35534618068317, 34.78230240984877], [-77.35540900195019, 34.78243294561833], [-77.35540706159861, 34.78254735199606], [-77.35545185340654, 34.78272756353692], [-77.35540257606212, 34.782811796663054], [-77.35528905764687, 34.78295020831412], [-77.35522563442714, 34.78299946737939], [-77.35512762836208, 34.78305458617497], [-77.35481672177617, 34.78323393924083], [-77.35471112925875, 34.78326140859857], [-77.35446735987622, 34.78326462855789], [-77.3541003255097, 34.78323787707994]], [[-77.43096925434253, 34.57904992733132], [-77.4310359539422, 34.57898051871098], [-77.43130771334587, 34.57880211228086], [-77.43149358288258, 34.578690112769216], [-77.43151514863975, 34.57868766492788], [-77.43170172746879, 34.57882595927665], [-77.43173024417264, 34.578849429027954], [-77.43209585094972, 34.57915511802216], [-77.4321699048711, 34.579241180967834], [-77.43229310734043, 34.57943582834649], [-77.43238646623702, 34.57963446404931], [-77.43209609843862, 34.57984648372749], [-77.43193015501262, 34.57994616143404], [-77.43138649834923, 34.58011921047271], [-77.43130816544354, 34.58009938222123], [-77.43105714201732, 34.5799807660809], [-77.43086223303472, 34.57991069207691], [-77.43052000456008, 34.57969572767916], [-77.43032950402267, 34.57971252157958], [-77.43014692673506, 34.57953362191189], [-77.4304189971466, 34.5793855599145], [-77.43051990328611, 34.57939717317087], [-77.43079568212768, 34.57914256397934]], [[-77.42451999009425, 34.732890149787586], [-77.42433124815993, 34.73283143775875], [-77.42421469745173, 34.73283732730677], [-77.42396568718348, 34.73298198081303], [-77.423846430265, 34.73300200044778], [-77.42375802811871, 34.73301660001529], [-77.42363909326721, 34.73304842121872], [-77.42356322853104, 34.73307223198526], [-77.4234997368747, 34.73309215922761], [-77.42345903988573, 34.73303531797633], [-77.42346206041319, 34.73298653724815], [-77.42342467749148, 34.73293805626767], [-77.42343725117756, 34.732866376146], [-77.42344192516862, 34.73283973049974], [-77.42344579772005, 34.732817653678595], [-77.42346274221475, 34.73272105608652], [-77.42348682758367, 34.73271565856394], [-77.42352156603263, 34.7326302044911], [-77.42362445476324, 34.732661428446036], [-77.42377453140038, 34.73268054361995], [-77.42377923638796, 34.732680464085234], [-77.42378200604921, 34.73268183520899], [-77.42393480234992, 34.732696790533105], [-77.42410108450795, 34.732650843229436], [-77.4242134541122, 34.73263895699422], [-77.42427328086353, 34.73263499512492], [-77.42446005733473, 34.73261780465968], [-77.42458399976589, 34.732669073521805], [-77.42465629937071, 34.732614701982115], [-77.424708355288, 34.732583583318615], [-77.42495865460636, 34.732482326071775], [-77.42504963249065, 34.732702877257886], [-77.4248651574906, 34.73280525140838], [-77.42478661055625, 34.73282763414097], [-77.42467191945084, 34.73285038186596]], [[-77.33254535587386, 34.57520298843744], [-77.33260984969895, 34.5752120017038], [-77.33271439174872, 34.57532146269796], [-77.33274667646049, 34.57538150988497], [-77.33276119128969, 34.57547804447751], [-77.33273464512897, 34.57553082113169], [-77.33270205954462, 34.57563524118397], [-77.33249857475948, 34.57568422223072], [-77.3324124370383, 34.57569838478157], [-77.33232000304642, 34.57570309573559], [-77.33212269728205, 34.575718677544344], [-77.33201842535755, 34.575699835632705], [-77.33188995387991, 34.575726095158366], [-77.33136161515405, 34.575798962710564], [-77.33123031336291, 34.57580617731398], [-77.33103538761061, 34.57577726145366], [-77.33066276484482, 34.57580331503966], [-77.33047475053763, 34.575253273399866], [-77.33056526728424, 34.575205804418275], [-77.33049532168579, 34.57515931867049], [-77.33057217304955, 34.57449446217135], [-77.33083741448374, 34.57451155361363], [-77.3309187785704, 34.574642670175336], [-77.33123103770957, 34.574958329451725], [-77.33151318457442, 34.57506957047828], [-77.33189868202288, 34.57514369308052], [-77.33201890344037, 34.575133948782664], [-77.3321539748892, 34.575123000400076], [-77.33241291931303, 34.57512434337167]], [[-77.33533925677851, 34.68181772024337], [-77.33547527201938, 34.68167075055236], [-77.33550859232072, 34.68174887878737], [-77.33555778876976, 34.681787744657655], [-77.33553964215132, 34.68189591416329], [-77.33542607937511, 34.68184007131317], [-77.33540131624764, 34.68183141839691]], [[-77.36225724735849, 34.78060056210799], [-77.36268047000246, 34.781062983323444], [-77.36213175536872, 34.78103260005769], [-77.3618980724228, 34.781000893610354], [-77.36150829370781, 34.78096995941682], [-77.3612775437925, 34.78091669850986], [-77.36114960704042, 34.78086617487788], [-77.36106356480455, 34.78077679680109], [-77.36097204018485, 34.78071695691332], [-77.36097513869342, 34.78059643220774], [-77.36097061260261, 34.78049442526181], [-77.36098521766212, 34.78046976687631], [-77.36099620956854, 34.780456568945134], [-77.36102188933232, 34.78043548971141], [-77.36114320358155, 34.78032258588077], [-77.36122203221134, 34.78027302401536], [-77.36130811896128, 34.78021791412364], [-77.36169188813365, 34.78015783044065], [-77.36172071023131, 34.78014392907312], [-77.36176137389991, 34.78009868802153], [-77.36183198097415, 34.78013589673992]], [[-77.43861197828056, 34.67839972025325], [-77.43874702941469, 34.678187377987726], [-77.43886885647078, 34.67799475308425], [-77.43903808277827, 34.67760082400575], [-77.43907586470243, 34.67750809540465], [-77.43911694171524, 34.67739871166286], [-77.43876800738171, 34.67715933231281], [-77.43847826520103, 34.67690123145734], [-77.4381879617328, 34.67695884893158], [-77.43813839636766, 34.676968686243384], [-77.43789071229553, 34.677017844038346], [-77.43779882771564, 34.67703509963354], [-77.43776082884752, 34.677008331526295], [-77.43774922310529, 34.67704418321123], [-77.43752664338567, 34.677169834610275], [-77.43713686663602, 34.67738909135194], [-77.43753572431855, 34.67794480683386], [-77.43759870244858, 34.678032551177076], [-77.43796634093655, 34.67823820254143], [-77.43807305702259, 34.67830231773926], [-77.4382167029723, 34.67832575098026]], [[-77.32426145219267, 34.69551508728814], [-77.32361966719084, 34.695229873285264], [-77.3233468662034, 34.695158862293674], [-77.32326674608635, 34.69510721609707], [-77.32343524204569, 34.694782277823165], [-77.32373983346722, 34.69474335629913], [-77.32389660246986, 34.6947352966567], [-77.32413519318985, 34.69476463105517], [-77.3242461376864, 34.694748041065694], [-77.32429263707934, 34.69490427581836], [-77.32427966781951, 34.695031017537744]], [[-77.44701141365239, 34.68166119076757], [-77.44737140756763, 34.681599534192614], [-77.44742200746144, 34.681584620671124], [-77.4475115367911, 34.68157553371718], [-77.44770437436544, 34.68155596126781], [-77.4478527065651, 34.681540905687896], [-77.44803442835752, 34.681522460876025], [-77.44863036827589, 34.68146197069547], [-77.44851872419343, 34.68192762082248], [-77.44851580891546, 34.68195622946118], [-77.44822542005416, 34.68215000419704], [-77.44799704397006, 34.68217284780142], [-77.44784288127823, 34.682185027564906], [-77.44779701653258, 34.68219747673411], [-77.44773600821102, 34.682213024688345], [-77.44749326335346, 34.68228618810736], [-77.44739050856327, 34.68228073093476], [-77.44715672185455, 34.682342114185985], [-77.44666673074184, 34.68239824844413], [-77.44655127399213, 34.68240439180377], [-77.44649133391835, 34.68242734410484], [-77.44629538107446, 34.68243696302901], [-77.44629613740184, 34.68198742489761], [-77.44630422763875, 34.681712497189984]], [[-77.35322501928528, 34.55091770569497], [-77.35320534130737, 34.550785483234414], [-77.35324426932027, 34.55053959267346], [-77.35327685837485, 34.55042060044207], [-77.35317984653985, 34.550276321347056], [-77.35343825930858, 34.550074200322605], [-77.35351362375212, 34.5499419782252], [-77.35397118791954, 34.54998955460218], [-77.35422254678045, 34.55011552206906], [-77.35446416656504, 34.55009926310586], [-77.3545051193515, 34.550243800566975], [-77.35458755334186, 34.55046453331841], [-77.35459805539438, 34.55047524558501], [-77.3545977347677, 34.550480932331034], [-77.3546865169266, 34.55070733345627], [-77.35458153890127, 34.55095835887715], [-77.35457888115775, 34.550967650504546], [-77.35457512542393, 34.55098077857248], [-77.35447676602632, 34.55115575542641], [-77.35446345510447, 34.55122908814798], [-77.35439260908673, 34.5512593318774], [-77.35431418790252, 34.551325025825676], [-77.35419971403, 34.551389463657046], [-77.35419321302243, 34.551393734488414], [-77.35416806836558, 34.55140947268419], [-77.35409367770575, 34.551453835121876], [-77.35407352132765, 34.551456300552026], [-77.35399508832282, 34.551472714485286], [-77.35387920231895, 34.551507364075526], [-77.35379933353757, 34.55144842931385], [-77.3535692829598, 34.551357797612326], [-77.35351137062277, 34.5513029537787], [-77.35341356002807, 34.55115002439709], [-77.35329632822213, 34.55098293395839]], [[-77.43131476397062, 34.574260423268534], [-77.43131408870279, 34.574269814451974], [-77.43131209191209, 34.57427651091385], [-77.43130617179669, 34.57435134220291], [-77.4312591909388, 34.574328372090015], [-77.43051845112895, 34.57509326852616], [-77.43046062596504, 34.57518002660197], [-77.42990038392168, 34.575140270487026], [-77.42973050156954, 34.575177219755574], [-77.42948456513214, 34.57511845093229], [-77.4291629389331, 34.575192429602616], [-77.42915153447635, 34.5748078003364], [-77.42959452245283, 34.57451839467914], [-77.42970962349206, 34.574479502014114], [-77.42973026267084, 34.574444732069956], [-77.43001340231812, 34.5741526036914], [-77.43051798047144, 34.57368949112515], [-77.43062966797658, 34.573639958816784], [-77.4311350920159, 34.57363061322142], [-77.43130613570759, 34.5742466778727]], [[-77.4605488643562, 34.59381370050782], [-77.46016746851609, 34.594015895928976], [-77.46009507700731, 34.59407602014841], [-77.46002208829685, 34.594039132281196], [-77.4595613409117, 34.594046406621786], [-77.45937499611577, 34.59391617496516], [-77.45918029445234, 34.59386587090056], [-77.45905852445341, 34.59384604319154], [-77.45897150330245, 34.59381192652893], [-77.45890185702322, 34.59376068175162], [-77.4588327393313, 34.59366498589336], [-77.45879531206133, 34.59360644750702], [-77.45877772380956, 34.59352963705105], [-77.4588263593355, 34.5932818984911], [-77.45887876850837, 34.59325530427993], [-77.45919182527965, 34.59322576050889], [-77.45933615734329, 34.59322411800411], [-77.45965398477135, 34.593216860649434], [-77.45994428258824, 34.593219828836496], [-77.46040516956978, 34.59328900300562], [-77.46070847906451, 34.59342983251644], [-77.46081099458793, 34.59362168115614]], [[-77.34290186958548, 34.748980272284435], [-77.34287643966616, 34.74901637940697], [-77.3428648150464, 34.74903288471738], [-77.34283428295166, 34.749074882760674], [-77.34279368942795, 34.74906345817992], [-77.34282239625192, 34.749023791560155], [-77.34283771607018, 34.749008875592025], [-77.34287278247012, 34.74894241048856]], [[-77.32655819082589, 34.746174459096416], [-77.3265574644187, 34.746072966210235], [-77.32677607172164, 34.746006966977916], [-77.32673870522328, 34.7462335996093], [-77.32664894193141, 34.74636721474534], [-77.32654125027334, 34.7463953923049], [-77.32651889929966, 34.74638503293865]], [[-77.31717558963604, 34.694337819367014], [-77.31686182252707, 34.69412178924103], [-77.31680258958245, 34.69400693665872], [-77.31742370741124, 34.69368968268063]], [[-77.33709234324806, 34.768827778003285], [-77.33708109312141, 34.76881860253477], [-77.33709740705753, 34.76881036182822], [-77.33710230745018, 34.7688156944965]], [[-77.32710509027166, 34.562703640013446], [-77.32695310021653, 34.56256425120469], [-77.32710536200317, 34.56240591036544], [-77.32721413765502, 34.562526739794265]], [[-77.42657879410959, 34.575892308844274], [-77.42640617728871, 34.57606692386779], [-77.42630421169152, 34.576139128159035], [-77.42618488984404, 34.5762041115211], [-77.42606929153042, 34.57617712024987], [-77.42593176718611, 34.57616974057739], [-77.42592913438469, 34.57604637520522], [-77.4261818894404, 34.57586395491833], [-77.42618479243048, 34.57586177369841], [-77.42618523754051, 34.575860821934356], [-77.42618577634842, 34.57586026409809], [-77.42618701917212, 34.575857683563406], [-77.42634277318481, 34.57558332082135], [-77.42654489727123, 34.57538377438707], [-77.42657861043786, 34.57525659432563], [-77.42665715377862, 34.57536755031889], [-77.42676180140492, 34.57557969668872], [-77.42685360814929, 34.575763745073495], [-77.42664165715277, 34.57586213208385]], [[-77.44628241076268, 34.59828360683222], [-77.44672997648793, 34.59840818938291], [-77.44668371814917, 34.59858831153399], [-77.44652350403152, 34.598660660958345], [-77.44605552098652, 34.59847315000739], [-77.44595449963727, 34.5983771244364], [-77.44600462729161, 34.59828720307177]], [[-77.4254827740374, 34.57374565190496], [-77.4254554311823, 34.57390663081041], [-77.42539628395001, 34.573956356531184], [-77.42533339209727, 34.5739282800117], [-77.42505834680685, 34.57353619483651], [-77.42502454452287, 34.573480557604306], [-77.42539611468271, 34.57333707022926], [-77.425568444822, 34.57340195429412]], [[-77.34346193529193, 34.74815543063944], [-77.34341826761631, 34.7482466119058], [-77.34326742076578, 34.748305006364646], [-77.34336547339053, 34.748199837446826]], [[-77.33761738056968, 34.769232459481955], [-77.33782421561314, 34.76943898286165], [-77.33785650167658, 34.7694433659386], [-77.33794354573858, 34.76954433132345], [-77.33808963152491, 34.7695192547542], [-77.33809285675954, 34.769532808035585], [-77.33808319233911, 34.769541402174625], [-77.33793382548845, 34.76955915308248], [-77.3379226800508, 34.76956037090295], [-77.33780486407561, 34.769468293253276], [-77.33779090778613, 34.769464586709205], [-77.33755737112942, 34.769289130149964], [-77.33750299045721, 34.76924814041288], [-77.33758042405344, 34.76920984190834]], [[-77.42094937644985, 34.57406940969996], [-77.42095232754707, 34.5739503038227], [-77.42106243071592, 34.57384725531854], [-77.4211493571147, 34.573709642142], [-77.42145115204112, 34.573572326796274], [-77.4214550080408, 34.5735703208726], [-77.42145944068413, 34.57356780042301], [-77.42151103423367, 34.57362259089454], [-77.42182107541333, 34.573943463544346], [-77.4217248089947, 34.57409277799751], [-77.42146885381612, 34.57441894024711], [-77.42147073983489, 34.574433961864116], [-77.42151363526861, 34.57477561821611], [-77.42152121154997, 34.574835960928155], [-77.42153808116996, 34.57492126935936], [-77.42153904813169, 34.57493953025047], [-77.42145667478331, 34.574993219988556], [-77.42138587753041, 34.574961660850065], [-77.42138728119828, 34.57493007867512], [-77.42127254145431, 34.574871889536325], [-77.42125964871396, 34.57485432542887], [-77.42122360018034, 34.574705479863056], [-77.42108509150641, 34.574498652133414], [-77.4211886274932, 34.574459428021264], [-77.4210712211206, 34.574467066146596], [-77.4210625628161, 34.57444305832938], [-77.4209610466292, 34.574177060241134]], [[-77.42463138151003, 34.57398681088382], [-77.4246083226883, 34.57398274494295], [-77.42460378794006, 34.573970833381594], [-77.42459501173619, 34.57395288161985], [-77.42486951026808, 34.57364597646853]], [[-77.42215242818588, 34.573372022769654], [-77.42224425017524, 34.573281134929054], [-77.42250210826425, 34.57314254968975], [-77.42263819639751, 34.57313441316525], [-77.42273774976961, 34.573386425509845], [-77.42263827660835, 34.57346864413216], [-77.42252087437446, 34.57371576362794], [-77.42232786143016, 34.573780258949554], [-77.42224432177329, 34.57358532420829], [-77.42190514018989, 34.573872330366626]], [[-77.32226545123514, 34.69508913202187], [-77.32211004687937, 34.695084680087014], [-77.32226759814918, 34.695023570800245], [-77.32236608108688, 34.69501173773915], [-77.32234624851559, 34.69509333217857]], [[-77.45669184081052, 34.74468948973371], [-77.45660683585335, 34.744650435515645], [-77.45639535783826, 34.744606079719475], [-77.45617049069865, 34.74446100721212], [-77.45612509251556, 34.74443200435956], [-77.45609656964365, 34.74441696368191], [-77.45602693033746, 34.74436398905363], [-77.45590831324006, 34.74427231519952], [-77.45586995043858, 34.744205633203585], [-77.45578556206205, 34.74410032681165], [-77.45580242236605, 34.74386013223785], [-77.45615880755794, 34.74394454563971], [-77.45625917411427, 34.743968318315574], [-77.45635598935576, 34.74401644250801], [-77.45669332799831, 34.744167893106166], [-77.45678493445368, 34.744367542707096], [-77.45694172682816, 34.744683424119515], [-77.45697329880443, 34.74494392650316], [-77.4570043299849, 34.74498477518824], [-77.45694974610076, 34.74498573543456], [-77.45693057721937, 34.744972608351986], [-77.4569207323892, 34.74496586646562]], [[-77.3609603810815, 34.61203472794451], [-77.36093429900707, 34.612019035646014], [-77.36096040282429, 34.611988653243685], [-77.36098858471983, 34.61201122252406], [-77.3610753776919, 34.61208712212671], [-77.36107408146738, 34.612121423710015], [-77.3610482247831, 34.61212025874087]], [[-77.40087050103645, 34.581020863181706], [-77.40084878369103, 34.581028662817204], [-77.40082124791736, 34.58104216031667], [-77.4007727500785, 34.581017046452736], [-77.40077199554239, 34.581016781691176], [-77.40077175796289, 34.58101663257266], [-77.40077161508468, 34.58101639718631], [-77.40077165609867, 34.58101602549024], [-77.40077199556217, 34.58101558471786], [-77.40080911511336, 34.58094483879433], [-77.40082951864288, 34.5809460594038], [-77.40087050162298, 34.58098263802038], [-77.40089392011686, 34.58099874838161]]]]}, "type": "Feature", "id": "demo13", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.21163943593564, 34.66321343727479], [-77.20975523560644, 34.66033038088443], [-77.20945450711379, 34.65976831281712], [-77.2095027096556, 34.658424996049014], [-77.209229211185, 34.65831177098198], [-77.20639641817989, 34.65797242556882], [-77.20552945414678, 34.657779248117535], [-77.20593885758383, 34.65814341697946], [-77.20826536283766, 34.660212716191175]], [[-77.22740119510517, 34.677227164937], [-77.22812411197542, 34.676300799059376], [-77.2272286166309, 34.676080653111825], [-77.2266467006502, 34.67391418790389], [-77.22459225164008, 34.67281396826381], [-77.22376029265216, 34.67205422043961], [-77.22264751818585, 34.671797549765614], [-77.21917078926155, 34.66991039080176], [-77.22222683445429, 34.67262747175226], [-77.22455415318815, 34.67469642429957], [-77.22688158818295, 34.676765327282816]], [[-77.24740768829969, 34.69500473332242], [-77.25078814318768, 34.6938719570036], [-77.24849744835339, 34.693082305584554], [-77.24911670182682, 34.69141078282379], [-77.24889578014816, 34.69023154519471], [-77.24816573548016, 34.689576617427875], [-77.2465593721821, 34.68826934899711], [-77.24641060654771, 34.68667197698266], [-77.24585217385278, 34.68566194260592], [-77.24507722864173, 34.68374353326179], [-77.24477152763743, 34.683341296552754], [-77.24481919828482, 34.68248061807213], [-77.24567839355271, 34.67897471396713], [-77.24612249743703, 34.67696949180862], [-77.2476009244377, 34.674547151960596], [-77.24878228631555, 34.67180003572755], [-77.24924985816412, 34.670745319560694], [-77.24987655899683, 34.670118622336474], [-77.25133567569634, 34.66931791161268], [-77.25257835847411, 34.66851382698902], [-77.25420759668818, 34.666156076580556], [-77.25603524080698, 34.66920519708807], [-77.25743496284667, 34.66948509994147], [-77.25815504661625, 34.66960293513281], [-77.25952494833345, 34.66966477592995], [-77.2600107684524, 34.669555621838], [-77.26092517628275, 34.668716295681236], [-77.2628119636208, 34.667394518684986], [-77.26324180432248, 34.664140891203466], [-77.26307740002679, 34.66309727930835], [-77.26363062873385, 34.66204078083289], [-77.26408749630214, 34.662470510537325], [-77.265127643266, 34.66281723208293], [-77.26805917442411, 34.6637943538484], [-77.26923017259652, 34.664421979979004], [-77.27209799369052, 34.66538895165732], [-77.27463493618274, 34.66582853251599], [-77.2763377365251, 34.66577997788831], [-77.27951011138771, 34.664589634663855], [-77.2817123112997, 34.66433196448225], [-77.28222531375346, 34.664169547023654], [-77.28466748541591, 34.66476005984176], [-77.28615610767613, 34.66472280288559], [-77.28847189936593, 34.66466480131009], [-77.28972818460186, 34.66444778877363], [-77.2910672207795, 34.66418984029251], [-77.29323363504321, 34.663772543830326], [-77.29462165568881, 34.66330126041197], [-77.2965034999563, 34.662618305002574], [-77.29701881473484, 34.662481020410894], [-77.29738465088639, 34.66230971257427], [-77.29928414877392, 34.66100326260576], [-77.30130763918046, 34.66229602040737], [-77.30288908696174, 34.66440462517695], [-77.30402014860687, 34.666109551398925], [-77.30622501491055, 34.67006546843731], [-77.30647188875955, 34.670439197849014], [-77.30687358561829, 34.670610716088355], [-77.30819173848849, 34.672417428514336], [-77.30886076789987, 34.678020710814074], [-77.30884231221852, 34.67813884201585], [-77.30885731089136, 34.678210304114224], [-77.30887736546248, 34.6784517886194], [-77.30874625577131, 34.682050852338776], [-77.30869535079353, 34.68298262023178], [-77.30733790623182, 34.68374424549497], [-77.30563247293189, 34.685373447909406], [-77.30330333963106, 34.68669485590804], [-77.29898712897399, 34.689694295987664], [-77.29596016759577, 34.689928581878526], [-77.29357728841974, 34.69000247470301], [-77.29354298653845, 34.690005862855735], [-77.29352026272662, 34.69000246035347], [-77.29346016346067, 34.68999137734404], [-77.29121500454963, 34.68977661501168], [-77.29006103465736, 34.69045633830595], [-77.28983603123518, 34.69179146858775], [-77.29000239067007, 34.69241374598698], [-77.28973978531806, 34.69290831211621], [-77.29000234867218, 34.69394193013619], [-77.29015023706515, 34.69574468706402], [-77.29046512618086, 34.69624922524882], [-77.28867253103218, 34.70003221158417], [-77.28905985049494, 34.70132203671073], [-77.28971702622013, 34.70414908534742], [-77.28661658476636, 34.70556963721442], [-77.28608595705681, 34.70517177188386], [-77.28497793088073, 34.70479709031129], [-77.28721445346636, 34.70115276294006], [-77.28261176463205, 34.70287233036968], [-77.27955425122694, 34.70310505991704], [-77.27309948095964, 34.7064204326544], [-77.27229352088365, 34.70688095031424], [-77.27123064630447, 34.71343362609651], [-77.27151778249966, 34.71443385881423], [-77.27103610812996, 34.715986059462104], [-77.2771981530775, 34.72145533096695], [-77.28481273053896, 34.72821219643995], [-77.29242855289979, 34.734968529843314], [-77.30004562059206, 34.741724330822414], [-77.3038546215725, 34.74510203154202], [-77.30710142740406, 34.74798084651542], [-77.30669217697397, 34.74471371594805], [-77.30567542130967, 34.74370288582274], [-77.304920875596, 34.74143915176055], [-77.30479952384275, 34.741073899582766], [-77.30596569585687, 34.73717518077758], [-77.30585888914243, 34.73666190791381], [-77.30656539669505, 34.73671430719811], [-77.30646592225972, 34.736947014146935], [-77.30888574857205, 34.7380834590174], [-77.31008421608502, 34.74016373346879], [-77.31024579217515, 34.74019065922865], [-77.31017899574908, 34.740337650345296], [-77.31024553337855, 34.74055163265941], [-77.31069844348215, 34.7422159715922], [-77.3104572979336, 34.7431805532152], [-77.31019384729808, 34.74423445921767], [-77.30814472986643, 34.748110113573944], [-77.307902649574, 34.74844692440022], [-77.30796998421744, 34.748750928765936], [-77.31147355807201, 34.7518570332196], [-77.31211591595341, 34.75242646583507], [-77.31381099090528, 34.75205946327932], [-77.31443887830437, 34.75193161242709], [-77.3147324760632, 34.75141088963693], [-77.31570247441307, 34.75049768588225], [-77.31671295289067, 34.75032171471392], [-77.31687857135049, 34.750263216422724], [-77.31770578179433, 34.75002905295603], [-77.31677454873132, 34.750110017354714], [-77.31560703957821, 34.7502567766838], [-77.31537880739874, 34.750210773299486], [-77.31410181059064, 34.75106008296444], [-77.31235817315775, 34.7511772213517], [-77.31202661717083, 34.74995661047685], [-77.31158072442453, 34.74794348120808], [-77.31331436885688, 34.74553142937229], [-77.31418780032598, 34.74404684242696], [-77.31712758130712, 34.74328514790679], [-77.31525932954133, 34.7426424905032], [-77.3147301909981, 34.74066565595279], [-77.31473524957556, 34.73989273200691], [-77.31468190361026, 34.73972117354894], [-77.31557999645236, 34.73774484521111], [-77.31714497635312, 34.73645237941026], [-77.32232917330396, 34.73101521584717], [-77.32244383000878, 34.73093446968894], [-77.3277878990138, 34.73301143803684], [-77.3315060499595, 34.732410761148884], [-77.33237436971203, 34.73263795917977], [-77.3338631008714, 34.73254357106386], [-77.33507449892326, 34.733028153655], [-77.33476545843514, 34.733952424591955], [-77.33587182980952, 34.73387465645006], [-77.33736160283202, 34.73394303590454], [-77.33840620744792, 34.73430592687689], [-77.33870396638028, 34.7344799760329], [-77.3403015272614, 34.735118975264356], [-77.34192502918503, 34.734753078227435], [-77.34324387121588, 34.73404921922034], [-77.34544295238004, 34.73391400457227], [-77.34645187616995, 34.73442489244786], [-77.34661770175157, 34.734485611827004], [-77.34766201508401, 34.734521657824565], [-77.34812439575771, 34.73454407598475], [-77.34849880925697, 34.734427228985986], [-77.34891703762948, 34.73432468764844], [-77.34933802694397, 34.73434285624657], [-77.34926005330166, 34.734006661875696], [-77.34912730357375, 34.73394380781403], [-77.34950920061216, 34.73299771251913], [-77.34938146501011, 34.73272597112498], [-77.34861996663483, 34.73275728279975], [-77.34832727278493, 34.73223171910422], [-77.34621337243584, 34.73150042943705], [-77.34616005415802, 34.73149590824074], [-77.34615056547472, 34.73147850500609], [-77.34493371039608, 34.72928572528768], [-77.34415572479253, 34.72788368070946], [-77.34565901895755, 34.72557434725209], [-77.34668391981083, 34.721778347225026], [-77.35093966429918, 34.719154633435735], [-77.35194729649552, 34.71623037885072], [-77.35551207621437, 34.715741003238485], [-77.35687320027972, 34.716947135504746], [-77.35850858951657, 34.716938741498396], [-77.36020662773757, 34.71606978118666], [-77.36087883044728, 34.717018673214106], [-77.36215031505247, 34.7176154439978], [-77.36390093496712, 34.71784696332086], [-77.36445924973646, 34.71792106004998], [-77.36509027633352, 34.71766470647501], [-77.36695810879547, 34.71756324167756], [-77.3693614532815, 34.71662478113817], [-77.36938129849372, 34.71636101036463], [-77.36850202429699, 34.71430599554068], [-77.36834664534419, 34.712865070455365], [-77.3693946386299, 34.71126770627556], [-77.3696993341292, 34.71023041830037], [-77.37014332446385, 34.7087190571074], [-77.37056684263305, 34.70720114065858], [-77.37067398561456, 34.70669655612936], [-77.37061340552741, 34.70637277687707], [-77.37020711696894, 34.70636719346971], [-77.36858432466732, 34.70503416768704], [-77.36854953221479, 34.7048073721609], [-77.36855921989329, 34.70379373815973], [-77.3682179526567, 34.703134947076165], [-77.36777477686182, 34.70224972204005], [-77.36670572120553, 34.70192914046871], [-77.3654801024561, 34.701561588318114], [-77.3648414638857, 34.70135357421902], [-77.36450507030075, 34.701261007822836], [-77.36354847868142, 34.70098228698631], [-77.36146919947717, 34.70079524332681], [-77.36102190856552, 34.70022450331661], [-77.36008630789995, 34.6999851156501], [-77.35927297095989, 34.69974604165775], [-77.35897573718626, 34.69968644717554], [-77.35884376907708, 34.6996621070939], [-77.35782821667645, 34.699742028552045], [-77.35767810383321, 34.70003217333928], [-77.35728584275064, 34.70053778411292], [-77.35722502825195, 34.700745995251914], [-77.35722502005318, 34.700907892370594], [-77.35722501301338, 34.70159291540256], [-77.35721793813315, 34.70249019651107], [-77.35718387724313, 34.70270118757785], [-77.35713066932848, 34.70413419008601], [-77.35722497091558, 34.70558967802859], [-77.35359578298602, 34.707092936959796], [-77.35347590846328, 34.70737297728482], [-77.35306130104729, 34.70726562273549], [-77.34818716446614, 34.707976484449055], [-77.34712350454454, 34.70552722425256], [-77.34438724880314, 34.704569297248966], [-77.34428471654986, 34.70455801516392], [-77.33995860892136, 34.70560393940679], [-77.33923203071208, 34.70582772152187], [-77.33872649459343, 34.70568071067851], [-77.33493813486109, 34.70625983716647], [-77.33430956277321, 34.706284507943195], [-77.3338460441611, 34.70628172478023], [-77.32952940942114, 34.7065713524298], [-77.329423835273, 34.706614460572766], [-77.329368648686, 34.70657250305433], [-77.32925939362438, 34.7065326294352], [-77.32593993287612, 34.706056563974784], [-77.32489327350225, 34.70572239379985], [-77.32170877909428, 34.70615758560617], [-77.32042922821329, 34.70460176154768], [-77.31750836283953, 34.70612625654957], [-77.31321494701858, 34.706383519864815], [-77.31045867835047, 34.705944628792366], [-77.30948822269829, 34.70534244231096], [-77.30867757925301, 34.70356727675824], [-77.30663818655324, 34.70261215927872], [-77.30519294086348, 34.70203163048191], [-77.30346896501094, 34.70126699523589], [-77.3022680021644, 34.70116957515665], [-77.29906597625613, 34.69897137409945], [-77.30119715945993, 34.69676466617406], [-77.30123695240849, 34.696724876792416], [-77.30124709503558, 34.6966707436459], [-77.30113857588417, 34.694788902187426], [-77.3022814152821, 34.692617678019786], [-77.30527039375778, 34.69085115572896], [-77.30579047893636, 34.69062253849492], [-77.30917448686245, 34.6905757631483], [-77.30954864831192, 34.691688153530464], [-77.30967603189535, 34.691766313472606], [-77.30977260808098, 34.69183802806959], [-77.3105822565206, 34.69264567742932], [-77.3106050176799, 34.6930925695915], [-77.31158842755792, 34.693212494398686], [-77.3116792019346, 34.69180217728409], [-77.31106076938794, 34.691481072404386], [-77.31201691565371, 34.691038400516845], [-77.31400333075266, 34.68912858844916], [-77.31391364814365, 34.686931336113076], [-77.31466073845638, 34.68513963980703], [-77.3149992336383, 34.68346757981206], [-77.31519858185824, 34.683116533247066], [-77.3175232632604, 34.68165412072957], [-77.31817208867177, 34.68117438636845], [-77.3195525011697, 34.68057050395852], [-77.32185349836236, 34.67933242674765], [-77.3230071270274, 34.67926225714183], [-77.32565393524456, 34.67790119866552], [-77.326073048098, 34.67796796720577], [-77.32819160470945, 34.67789924793569], [-77.32956967366646, 34.67596215801732], [-77.32984040500304, 34.67526128284467], [-77.32976061988688, 34.67474172091088], [-77.32929130688731, 34.67411499778686], [-77.32874481343313, 34.672370400508335], [-77.32835264470566, 34.671566322574144], [-77.32759463234649, 34.6701024884856], [-77.32663681821242, 34.66825265735447], [-77.32652526970928, 34.66791795137064], [-77.32633544699577, 34.667869731266435], [-77.32627115725842, 34.66783015860421], [-77.32480820123321, 34.66630044058525], [-77.32440270578284, 34.666182753718], [-77.32348243756618, 34.66670038401041], [-77.322352750613, 34.66656756683818], [-77.32085353259093, 34.6663660873373], [-77.3162142810506, 34.66257945973356], [-77.31786059916766, 34.66007423769187], [-77.31786055827004, 34.658977990511744], [-77.31751914039178, 34.65776859864893], [-77.31738452899049, 34.65735529198368], [-77.31667849854477, 34.656300661072116], [-77.3163548873645, 34.65580845500924], [-77.31609708502536, 34.655432167540866], [-77.31449779801665, 34.65456566077861], [-77.31303662324477, 34.65294495148268], [-77.31140145265778, 34.65151149584046], [-77.31058756309828, 34.649846938478454], [-77.30972070360126, 34.649183481962666], [-77.30836705904339, 34.648335195353525], [-77.30806868113496, 34.648258940789106], [-77.30694721752486, 34.648125073450274], [-77.30427808676025, 34.64738787284489], [-77.30420610535923, 34.647387352503586], [-77.30412699376402, 34.64735600625182], [-77.30158575987029, 34.64693242474319], [-77.29985675016873, 34.646812071187256], [-77.29812599365279, 34.64698043864117], [-77.29660839191547, 34.64765527938004], [-77.29523909275463, 34.64857281267918], [-77.29484245089094, 34.6492531465336], [-77.29366251599845, 34.65216436161954], [-77.29417078605695, 34.65396639369812], [-77.29417080132974, 34.65547060577413], [-77.29355486696834, 34.65797891488138], [-77.29346370892013, 34.658646654508324], [-77.2929301262451, 34.6590161733182], [-77.29133211586775, 34.65966909569556], [-77.28936735136519, 34.66016032147252], [-77.28888757653475, 34.66025274406039], [-77.28837272001118, 34.66034168112412], [-77.28643699454294, 34.66080643028397], [-77.28455151617146, 34.66100172170564], [-77.28391778590814, 34.661017582586716], [-77.28344702256788, 34.66090375283798], [-77.28220011544141, 34.66048393581742], [-77.28145659747818, 34.660251066916906], [-77.28113353038731, 34.65990540293164], [-77.27975071949174, 34.65903604852715], [-77.27766786669467, 34.65538944777196], [-77.27666237265481, 34.65596722718218], [-77.27584117931836, 34.654601857414946], [-77.27643915941351, 34.65342029122737], [-77.27723879249399, 34.65324628183508], [-77.28027388461742, 34.651662472949056], [-77.28193852796952, 34.651135028440564], [-77.28361124318096, 34.65140632580479], [-77.28665809759114, 34.65228749911037], [-77.28477306449163, 34.649109891189994], [-77.28358874972875, 34.646791021766816], [-77.28193645640454, 34.645544020961516], [-77.28039162347528, 34.641089141631056], [-77.28031405766953, 34.640487408364244], [-77.28174498021777, 34.637378236131], [-77.28189519880864, 34.63715291681425], [-77.28372617306636, 34.63448356852955], [-77.28413636747725, 34.633906266864464], [-77.28544458767288, 34.63303414394049], [-77.28747183772578, 34.63168265146505], [-77.28824709756435, 34.63148536751706], [-77.28914462795188, 34.631294128375906], [-77.29064338613327, 34.630665010063154], [-77.29234543720979, 34.63089678757376], [-77.29326681929875, 34.630978648059646], [-77.29407700667826, 34.63071508648137], [-77.29655703230709, 34.63151338641836], [-77.29861381779031, 34.63210525726411], [-77.2995050785618, 34.631109770140796], [-77.30192511610858, 34.629168227129675], [-77.30283761338283, 34.627627515622265], [-77.3049022443241, 34.626609960356326], [-77.3063890081477, 34.62341530147438], [-77.30601517693545, 34.622309648184434], [-77.30674603535134, 34.621578818849116], [-77.30877564315004, 34.6195492219592], [-77.30923241235257, 34.619089284271794], [-77.31100888952744, 34.61730049791781], [-77.31126185761947, 34.61653253429923], [-77.31188687063266, 34.615910280094155], [-77.3131855240359, 34.615387610567915], [-77.31493786553986, 34.61462778234241], [-77.31550764435819, 34.61420047313151], [-77.3165317040544, 34.6138235448011], [-77.31795821334907, 34.61365415738399], [-77.32021390064055, 34.61421812012531], [-77.32058918522685, 34.61400716961104], [-77.32376240318732, 34.60753032992895], [-77.32394190054858, 34.60702279411064], [-77.32473614731714, 34.606763645801784], [-77.32587631958998, 34.60724036160473], [-77.32850541004625, 34.60848270778244], [-77.33001704126974, 34.60995746935497], [-77.33229101420737, 34.610169454223545], [-77.33501203705494, 34.60933411862029], [-77.33717524910651, 34.6096809994365], [-77.33796042193511, 34.609441694626], [-77.34066203936109, 34.609441658490105], [-77.34285270997958, 34.6092888038723], [-77.34650294530523, 34.61112334873869], [-77.34681822588406, 34.6112388625904], [-77.34696742766761, 34.611462216553456], [-77.34742786648425, 34.611486260176655], [-77.3495156408754, 34.61069007458025], [-77.35012143518878, 34.610472153796856], [-77.35045062981135, 34.607511852100764], [-77.35327790740484, 34.60500501743908], [-77.35609077262804, 34.6067133192563], [-77.35643018215026, 34.606662451701396], [-77.35749740529727, 34.60729525006921], [-77.35868167223904, 34.606946051460184], [-77.35958338796371, 34.60668016562454], [-77.3600714290037, 34.606300408188645], [-77.3599377038775, 34.605794175533816], [-77.359782302231, 34.60560284967002], [-77.36007646222008, 34.60290689985844], [-77.36024006619118, 34.60235422926701], [-77.36008369696515, 34.60184037640942], [-77.36002386656887, 34.600687140644176], [-77.36020429767362, 34.599628052180876], [-77.36049435550878, 34.59892120212096], [-77.35958792703289, 34.59751980606295], [-77.35871389722566, 34.59672302507168], [-77.35816811476104, 34.59585959647214], [-77.35643742409967, 34.593121545145095], [-77.35620945767101, 34.59299072740634], [-77.35620030459363, 34.59274639163175], [-77.35623399949384, 34.59252203750212], [-77.3564378062534, 34.5924134182526], [-77.35717731097472, 34.59000466398202], [-77.35801561744854, 34.58959254608773], [-77.35921854883289, 34.58891557784541], [-77.35943150789274, 34.588711644260385], [-77.35959237316762, 34.58865698607276], [-77.35977320276614, 34.588640930121386], [-77.36009489625096, 34.58848163474633], [-77.36038066275705, 34.588340127982605], [-77.36040434565828, 34.588320336874844], [-77.36058320814283, 34.58808811774493], [-77.36070879482844, 34.587851956728734], [-77.36079132841435, 34.58743292814629], [-77.36080074090029, 34.58741416779078], [-77.36079678247873, 34.58739147789555], [-77.36053002465167, 34.58702858472068], [-77.36038139494886, 34.586864539761585], [-77.36006072137194, 34.5865926689631], [-77.35995048250315, 34.58626290386897], [-77.35962518678765, 34.58549425336111], [-77.35960821121243, 34.585463067871565], [-77.35960453189695, 34.585452244609236], [-77.35959401578923, 34.58541081631492], [-77.35938367359296, 34.584873202049195], [-77.35894804052387, 34.58470899037628], [-77.35887557114336, 34.584644797628], [-77.35867369142318, 34.58460557322688], [-77.35801810019083, 34.584861763985714], [-77.35706763702873, 34.58515439773405], [-77.35644159159492, 34.58543628420431], [-77.35595542615798, 34.58546502353006], [-77.35328938749915, 34.58507668510681], [-77.35154630478563, 34.58510480504984], [-77.35013687187784, 34.585246176262814], [-77.34773690677338, 34.58458512542727], [-77.34698495779328, 34.58447976538052], [-77.34653576734566, 34.58443167009532], [-77.34583294232226, 34.58404878928222], [-77.34383316019328, 34.58362169252479], [-77.34266166928555, 34.58324243004999], [-77.34195308661941, 34.58323631069129], [-77.34068110916792, 34.583191617417405], [-77.33794167793134, 34.58178721602423], [-77.33763454627754, 34.581718617156916], [-77.33752994847679, 34.581645566936054], [-77.33699914916087, 34.581350577032154], [-77.33546660636239, 34.580970346697924], [-77.33437814706207, 34.581028649593065], [-77.33369596097342, 34.5816631001866], [-77.33217880607303, 34.581588369322944], [-77.33122566734366, 34.58125841278708], [-77.33080928326812, 34.581114264990795], [-77.32995797139768, 34.58090459922998], [-77.32964974461265, 34.58099895770763], [-77.32833678945991, 34.57977141381366], [-77.32860655944492, 34.57916017474238], [-77.32876201929406, 34.57705196779753], [-77.32888688088683, 34.57629607297143], [-77.32910391540132, 34.57516033016033], [-77.32908488957699, 34.57456947089841], [-77.32841035602425, 34.57430996726241], [-77.32807977391911, 34.57406673321981], [-77.32785020516208, 34.57389782133256], [-77.32808068303143, 34.57304904445245], [-77.32808372595936, 34.57301844229575], [-77.32808570899655, 34.57301490802097], [-77.32810092349416, 34.5729909680861], [-77.3287068478165, 34.571901102709276], [-77.3288700129444, 34.57154297949886], [-77.32900386097839, 34.571184820166245], [-77.32904669265127, 34.57098881446127], [-77.32903296155276, 34.570506158313236], [-77.32895951234413, 34.570342119204724], [-77.32892587836785, 34.57028795274458], [-77.32887122765206, 34.57017156961699], [-77.32866926549707, 34.56975277945624], [-77.32858574202793, 34.569546757894344], [-77.32887244826429, 34.568794966435355], [-77.3289309564713, 34.568711040518146], [-77.32913576970611, 34.568618640267644], [-77.32910197414026, 34.56837656476462], [-77.32936169988054, 34.56773709555466], [-77.32869497854463, 34.56717662278566], [-77.32818720568706, 34.5663160216712], [-77.32812498191169, 34.56621667709775], [-77.32811191273046, 34.566191523319254], [-77.32808747106867, 34.56547554031003], [-77.32808009707821, 34.565374053842596], [-77.32808421947396, 34.56536985514653], [-77.32796252823425, 34.564677288817514], [-77.32786445358803, 34.564555969443894], [-77.32769445104122, 34.56443233221957], [-77.3275039562433, 34.564388560531555], [-77.32730065562195, 34.56425334866344], [-77.32680315198385, 34.56439538352073], [-77.3265126099212, 34.56439575061614], [-77.32618220949482, 34.564441703397655], [-77.32558289919366, 34.564883816047065], [-77.3251539053271, 34.565180227358105], [-77.32493584635652, 34.56538854347174], [-77.32420626231439, 34.56599416045262], [-77.32300015890678, 34.56695301872888], [-77.32239766709282, 34.56770311948481], [-77.32177986936216, 34.56977666060772], [-77.32146761088015, 34.570569448484406], [-77.32044114546042, 34.57267367457371], [-77.31909923623115, 34.574305843683206], [-77.31835051747858, 34.577519092711164], [-77.31546623651116, 34.579235756296825], [-77.30947636968128, 34.58213744253568], [-77.30915827774744, 34.58233784684991], [-77.30901789318489, 34.58239455580402], [-77.30871756730149, 34.58258599234144], [-77.30543985727323, 34.58438950623875], [-77.30453193428254, 34.58498244727397], [-77.3020081259416, 34.586521231161235], [-77.30012042456401, 34.58851224909642], [-77.29830931661687, 34.590763698969276], [-77.29741923999978, 34.59291213801832], [-77.29646538019011, 34.59582145523613], [-77.29605299492732, 34.59697561553314], [-77.29371543480266, 34.59814439876], [-77.2927542071247, 34.59923218422233], [-77.29208412719406, 34.59950668633343], [-77.29118785263859, 34.5997318874872], [-77.2873222786954, 34.601292225993], [-77.28566778078877, 34.601476590453444], [-77.28431342545471, 34.602022057849254], [-77.28246187978064, 34.602586198095764], [-77.28086440434316, 34.60413836570835], [-77.28037111939204, 34.604930028471834], [-77.27963710051934, 34.606822584861604], [-77.27938272980896, 34.608094635494936], [-77.27884689900588, 34.610105795828204], [-77.27666225779032, 34.613980904424], [-77.27589652218387, 34.615518493829065], [-77.27496699334814, 34.61630419778146], [-77.27238284641149, 34.61857129918876], [-77.27067595778936, 34.620449886681925], [-77.27004110250509, 34.62072734811906], [-77.26805789931782, 34.620160672317894], [-77.26709747204268, 34.619848146154915], [-77.26530121053143, 34.619177976008636], [-77.26482656109667, 34.61897456735223], [-77.26329776946827, 34.61818857334332], [-77.26057197665729, 34.617136063309275], [-77.26048507029682, 34.61708091973195], [-77.26006749896987, 34.61686654207628], [-77.25915411478334, 34.61637813346931], [-77.25881490859351, 34.616324222275225], [-77.25805128094864, 34.61638856808382], [-77.25769219656272, 34.61674452296151], [-77.2576515334797, 34.616970559632044], [-77.25746470649683, 34.61718158826584], [-77.25693978933495, 34.61849581352514], [-77.25696642357575, 34.61880201886045], [-77.25670916955478, 34.619138923132674], [-77.2553618074109, 34.62202573298677], [-77.25535992285592, 34.62244634323704], [-77.25495632277367, 34.62283874268847], [-77.25317889813965, 34.625782016181745], [-77.25313753366073, 34.626042225760045], [-77.2529966873747, 34.626354824685706], [-77.25241309714103, 34.62636345256875], [-77.24759851946135, 34.627870352022896], [-77.24437638308618, 34.62890931252699], [-77.2441342592993, 34.628992523682356], [-77.24370896770765, 34.6290707790709], [-77.2391499515306, 34.629819499532026], [-77.23612107568171, 34.63188520420436], [-77.23580740784548, 34.632106380227604], [-77.23566603061126, 34.632207910464786], [-77.23550504830479, 34.632395119937264], [-77.23563167534331, 34.632851417398506], [-77.2353280939345, 34.63540031122531], [-77.23565562078772, 34.63597787514712], [-77.23637216962575, 34.637948701520926], [-77.23788065053469, 34.63992401804985], [-77.23804895398243, 34.64026059412352], [-77.23784556105134, 34.64180454522388], [-77.23797099572433, 34.643228793417556], [-77.2379407704778, 34.643699543956146], [-77.23751418058032, 34.64414239976441], [-77.23609958852754, 34.64525131416647], [-77.23415667806448, 34.64717217895352], [-77.2334497173594, 34.64785886838446], [-77.23222541073498, 34.64890538444932], [-77.23173589211197, 34.64952352105133], [-77.23156236608234, 34.650738506946254], [-77.231446841725, 34.651546871086374], [-77.23106917075602, 34.654190215978716], [-77.23108471191077, 34.65447170076265], [-77.23109225070797, 34.65461845348167], [-77.23110800278928, 34.655103727498414], [-77.23124987109463, 34.65749846270372], [-77.23111436303478, 34.658244852296406], [-77.23209768906807, 34.65981186862403], [-77.23237937912087, 34.660015091609395], [-77.23428229581121, 34.66216201937328], [-77.23436662688438, 34.662210984586544], [-77.23448810351739, 34.66228151303587], [-77.23953691257631, 34.66511530484794], [-77.24133531374602, 34.66583354538095], [-77.24183899356417, 34.665996090042704], [-77.24303908809844, 34.66736637375238], [-77.24313652445308, 34.66770099594534], [-77.24302271976545, 34.66921021040875], [-77.24291872569944, 34.67016929686169], [-77.2427386279852, 34.67262452492794], [-77.24174768370219, 34.67907956351721], [-77.24164918678744, 34.67952429774041], [-77.24162108559554, 34.67963896327428], [-77.24126695694125, 34.68603264426485], [-77.24219032380906, 34.687247596276436], [-77.24303206655924, 34.69075451044117], [-77.24305151378192, 34.69096332512738], [-77.24312035180775, 34.69101934594042], [-77.24307414487699, 34.69115497173724], [-77.24675228358566, 34.6944225554686]], [[-77.37955996598114, 34.7781103677483], [-77.37999663908735, 34.77259669137336], [-77.38040441735605, 34.77160620081947], [-77.38403355661055, 34.76910657582645], [-77.38443754747341, 34.768543546015145], [-77.38328472514786, 34.76599673926409], [-77.38505628408213, 34.7683668131491], [-77.38536351970644, 34.7685526298158], [-77.38630601906624, 34.770935972514636], [-77.38796300370645, 34.7742498329621], [-77.3879047803339, 34.77463496180107], [-77.3884339838049, 34.774414548130125], [-77.40010913494261, 34.769550592754506], [-77.40594617728954, 34.76711821452283], [-77.40599298841354, 34.767098704335424], [-77.40600988406415, 34.766898426705374], [-77.40377739111221, 34.761887084119174], [-77.4038097411161, 34.76086711260704], [-77.40283693012047, 34.76014175900829], [-77.40202801662863, 34.758038994098804], [-77.40008213459572, 34.75753491910898], [-77.39823795956528, 34.758305427883066], [-77.39593088475354, 34.759143480154094], [-77.39450196711662, 34.76038604585279], [-77.39256515801414, 34.76017225545523], [-77.39023817018497, 34.759381048893935], [-77.3855978297088, 34.75780322540848], [-77.38319248794099, 34.7571029293741], [-77.37853666344925, 34.758232926412575], [-77.37735003612653, 34.75955280014056], [-77.37558730769277, 34.76097400849712], [-77.37432456871551, 34.76243929161748], [-77.37403219733335, 34.76284386906368], [-77.37353275855203, 34.762769033581016], [-77.37151349485042, 34.76198075222711], [-77.37132022264308, 34.76190529883698], [-77.36993147443884, 34.762126332312235], [-77.36993243308605, 34.762350500861054], [-77.36928073054797, 34.76275454881874], [-77.3692695512322, 34.763236942353466], [-77.36880699036996, 34.7632818745481], [-77.36859826796085, 34.763183667616886], [-77.36747534858898, 34.7637274887152], [-77.36728907522897, 34.76379394724797], [-77.36724368178136, 34.7647648427218], [-77.36672279943834, 34.76560465930865], [-77.36677819772815, 34.765720373905175], [-77.36747836022246, 34.7661826046045], [-77.36768955373894, 34.766313441457605], [-77.36816880984371, 34.76678765930531], [-77.36818594607956, 34.766813328507105], [-77.36841287480306, 34.76741084203815], [-77.36836860337533, 34.7675970035205], [-77.36818847428887, 34.76825982484178], [-77.36797381969357, 34.76837562358496], [-77.36790525580408, 34.76868245117587], [-77.36826102039166, 34.76876429987132], [-77.36876943948813, 34.76920998628495], [-77.36937320595659, 34.769352971404935], [-77.3700137873576, 34.769089445020526], [-77.37040625341841, 34.76889220160915], [-77.3715996241254, 34.76852591898513], [-77.37191502690149, 34.768365025120985], [-77.37229493117151, 34.768128328056605], [-77.3734578018989, 34.76917606213168], [-77.37345777161964, 34.769940669979704], [-77.37345771988105, 34.77296274207713], [-77.37341856009925, 34.77352721435996], [-77.37339474058413, 34.773779267061144], [-77.37369217831503, 34.77820516083543], [-77.37302898118118, 34.780829798426446], [-77.37675741085044, 34.7792774348736]], [[-77.49577654161212, 34.7296322245749], [-77.49749753324006, 34.7275383869666], [-77.49749758281955, 34.72534093582555], [-77.49751075861748, 34.72526082327244], [-77.49856029644052, 34.723438138074016], [-77.50092551002413, 34.72249762049031], [-77.50319133880103, 34.722578783811976], [-77.50622621772754, 34.721897503624646], [-77.50954268549401, 34.72387897700779], [-77.51095213297022, 34.72328983685686], [-77.51302813186287, 34.72242193491638], [-77.51197664680274, 34.719737388412696], [-77.51178433930836, 34.71936952135924], [-77.5116999281268, 34.71907989090923], [-77.51017732142626, 34.717087260888064], [-77.5098704128599, 34.716597241629486], [-77.50905655989791, 34.71592250151215], [-77.50816503917878, 34.71517586070638], [-77.50585001284355, 34.71470554267442], [-77.505632963863, 34.714614453304584], [-77.50476664571872, 34.715158389720045], [-77.50329512167332, 34.71614809146489], [-77.50306509100247, 34.71639928359788], [-77.502634313422, 34.71657491113449], [-77.50018732904564, 34.71767863162961], [-77.49681216113824, 34.718982763573706], [-77.49432247762468, 34.72005941253338], [-77.49361800111897, 34.7217137187388], [-77.49328666449833, 34.723528362888416], [-77.49318883663746, 34.7241847768833], [-77.49286752220945, 34.72592300432974], [-77.49206846902311, 34.72653555164002], [-77.49104334859099, 34.7266594124847], [-77.48946576840703, 34.72666954115624], [-77.48475193949325, 34.7275621914842], [-77.48442864866918, 34.727817737035615], [-77.48375616780893, 34.72868335665512], [-77.4836486266496, 34.72755500027458], [-77.48305167515298, 34.726968781500105], [-77.48047692452496, 34.725307936001784], [-77.47965125688039, 34.725140116682724], [-77.47899034215946, 34.72491933684007], [-77.47740983390085, 34.72402313350351], [-77.47595789185581, 34.72362359296608], [-77.47503580276138, 34.72336534741328], [-77.47429572548569, 34.72323395854121], [-77.4710070253143, 34.72276419164126], [-77.47029371624518, 34.72267875178677], [-77.47010128697909, 34.722695377114704], [-77.46985674645596, 34.722599873351605], [-77.46626971343903, 34.722087392566515], [-77.46519329309683, 34.7219336432607], [-77.46335142249393, 34.72232677772744], [-77.46309255830504, 34.72287851796936], [-77.46279471101903, 34.72436822091031], [-77.46182266701493, 34.72678363701194], [-77.46178590218253, 34.72848770237321], [-77.46189428791021, 34.72949626077558], [-77.46236016886141, 34.7317361240071], [-77.46248015142808, 34.73282332009455], [-77.46268122807402, 34.73327213587556], [-77.46400418422078, 34.73492044332289], [-77.46454762385025, 34.73553181303677], [-77.46593941849795, 34.73709753710473], [-77.46730053387739, 34.73795414695256], [-77.46951450988566, 34.73933963040967], [-77.47035782088606, 34.739556656423716], [-77.47154034353706, 34.739755614140186], [-77.47596295161975, 34.737908877599246], [-77.4817953711751, 34.735473035354765], [-77.4847114475621, 34.73425501450716], [-77.48762743501939, 34.73303692718884], [-77.49345914313683, 34.730600553178775]], [[-77.52646761638321, 34.71680243334426], [-77.52588702838261, 34.71508595286603], [-77.52609919653186, 34.712157260296365], [-77.5307085374404, 34.70788326370066], [-77.53069958053625, 34.7078230697295], [-77.5270795159265, 34.703000404725344], [-77.52326531325177, 34.702402960842804], [-77.520291476137, 34.70033150442357], [-77.51962568179151, 34.699532879467455], [-77.51942742087245, 34.69927647835608], [-77.515424714055, 34.697946507242655], [-77.5150029538105, 34.69786555775517], [-77.51468839005587, 34.69767505707193], [-77.51078131416932, 34.696372719459546], [-77.51035405357348, 34.69623028933549], [-77.50985620631185, 34.69610008584036], [-77.50621715797705, 34.695086441909744], [-77.50415832754973, 34.69648680348875], [-77.50239600540083, 34.69650318115096], [-77.50124914325966, 34.697550302452285], [-77.50188362986329, 34.69850218800194], [-77.50160539882522, 34.699910148265545], [-77.50131855987135, 34.7005245383409], [-77.5009524090712, 34.70100477354497], [-77.49945214766421, 34.7013942318192], [-77.49931340582046, 34.70142997070364], [-77.49755169598097, 34.701430006308016], [-77.49675019434473, 34.70143001777423], [-77.49487931932, 34.701430013491986], [-77.49420415464307, 34.70137054507638], [-77.49389040512848, 34.70143000829854], [-77.49314923204896, 34.701429988357056], [-77.49163685029687, 34.701384678339664], [-77.4897173090166, 34.70059456062132], [-77.48903300310195, 34.70030129837578], [-77.48916072525002, 34.699686134671104], [-77.48977162565635, 34.69896620753166], [-77.49022434183382, 34.698434408491025], [-77.4904047893475, 34.69823640765834], [-77.49065937420634, 34.69615676541927], [-77.49076370019353, 34.69600595032308], [-77.4922933766658, 34.694424446362085], [-77.49198071665165, 34.692338474388514], [-77.49177145887779, 34.69176524663241], [-77.49244347578457, 34.69092800147838], [-77.4934941412838, 34.6898895995656], [-77.49466441498724, 34.68861815477459], [-77.49745192508169, 34.68631722873671], [-77.49864499667173, 34.68452768305736], [-77.4987915206617, 34.68430791668634], [-77.4988535455798, 34.68361070577956], [-77.49908819978405, 34.68317300702236], [-77.49886861151288, 34.682986614512984], [-77.49864634213426, 34.68285646269713], [-77.4976949729537, 34.682429758906935], [-77.49719650455646, 34.68198661272476], [-77.49435670384825, 34.680282726050216], [-77.49402497804131, 34.67993732219594], [-77.49387602180354, 34.679780240967496], [-77.49176934168194, 34.679379340423466], [-77.48907679654384, 34.67866866070279], [-77.48879954248912, 34.678668661299284], [-77.48811761777942, 34.67866865816015], [-77.48486725580202, 34.6786686407226], [-77.48237650058383, 34.679203394154094], [-77.48092243874385, 34.67963296662227], [-77.48032446902057, 34.68033682805814], [-77.48030843845109, 34.680896647491714], [-77.48008135001763, 34.682009453782406], [-77.47970584257112, 34.68402287311208], [-77.47931357126214, 34.68493811407256], [-77.47861571686694, 34.68656621457171], [-77.47824877641818, 34.6873928215849], [-77.47743113860756, 34.68923501079455], [-77.47778062014473, 34.693060846853825], [-77.47652464753442, 34.69338995172438], [-77.47335899320976, 34.693668640564496], [-77.47083169263506, 34.69366867008955], [-77.47073526661039, 34.693659006737846], [-77.46827245700331, 34.69353098877819], [-77.46671700182183, 34.69292683657264], [-77.4657552271554, 34.69216758245027], [-77.4640962463051, 34.690242363086135], [-77.4632654468471, 34.68875828945233], [-77.46226210761544, 34.6864833858001], [-77.4624086521688, 34.6858896304729], [-77.46284088308468, 34.68413813024179], [-77.46273274103626, 34.68295463430174], [-77.46234460978377, 34.68173710948583], [-77.46135107088465, 34.680394363249576], [-77.46003404832689, 34.678202503783794], [-77.45991907134041, 34.67738496071969], [-77.45899185625382, 34.6764117842583], [-77.45848930962408, 34.675474177221844], [-77.45850424141396, 34.67529764644599], [-77.45829345626628, 34.67511677271478], [-77.4574650021341, 34.67306793384875], [-77.45729395045453, 34.672688522511805], [-77.45327199638822, 34.67090068029712], [-77.45319208933665, 34.67097384856725], [-77.44909392859721, 34.67437851276088], [-77.44869996837694, 34.675138092144294], [-77.44811296125746, 34.676513127210725], [-77.44671711269139, 34.677699136805586], [-77.44589378149442, 34.67821483255564], [-77.44337333665857, 34.67870565995943], [-77.44185425165205, 34.67903863799356], [-77.44175555023067, 34.679052046407904], [-77.4416855577624, 34.67910416546768], [-77.44074656840532, 34.67976941124833], [-77.4405687045477, 34.680102817977506], [-77.44051263810607, 34.680246657534816], [-77.44007397003648, 34.68024570553522], [-77.43965159855867, 34.68009912854099], [-77.43945985848963, 34.680153617508815], [-77.43921371394224, 34.68003672675189], [-77.43889085385605, 34.6799055641306], [-77.43866403471065, 34.67960026544877], [-77.43851852125566, 34.679434151460825], [-77.43841486887705, 34.67933589030569], [-77.43819908269036, 34.679220218203824], [-77.43786456385908, 34.67902320436318], [-77.43741976023665, 34.6790000525734], [-77.43728633533019, 34.678807078315224], [-77.43727824158132, 34.67855662804374], [-77.43737762895663, 34.67849142942989], [-77.43776135038053, 34.67850465739868], [-77.43797705583836, 34.67863425358811], [-77.43820637440902, 34.6786716627691], [-77.43858139377254, 34.67876010037129], [-77.43887461730955, 34.6788290480163], [-77.43892521908879, 34.67857350623308], [-77.43909876421868, 34.67829910550195], [-77.43921475607486, 34.678115706831576], [-77.43927181084683, 34.67798289335782], [-77.43941670415606, 34.67762728008041], [-77.439574234098, 34.67720779450155], [-77.43932308420092, 34.677035498188594], [-77.43924491416129, 34.67645247583309], [-77.43861995952699, 34.676411283596906], [-77.43829520325437, 34.676386427998885], [-77.43821106336087, 34.67664663903295], [-77.43801903745694, 34.67668270141779], [-77.4378939521269, 34.676706191995024], [-77.43741347853769, 34.67636772484566], [-77.43742428747248, 34.67631976806649], [-77.4373874897358, 34.67624198217253], [-77.4371431598273, 34.67554433304475], [-77.43679986078197, 34.67503503006548], [-77.43594207538521, 34.67376248511623], [-77.43455221437577, 34.673261185938415], [-77.4339084586376, 34.672589673540145], [-77.4330867156645, 34.67072472299809], [-77.43201359202345, 34.67011795059676], [-77.43004335826271, 34.67159160235849], [-77.42902227298137, 34.67231474115009], [-77.42864863106354, 34.672579348829906], [-77.42788662470356, 34.67364718625754], [-77.42588722632046, 34.67404693938161], [-77.42490243396298, 34.67510322402795], [-77.42413137105933, 34.673833499723564], [-77.4233322205406, 34.67167284938557], [-77.4234287203359, 34.670357913996405], [-77.42345055418227, 34.669585616972974], [-77.42397020855576, 34.667413535881835], [-77.42344996619792, 34.66708095391454], [-77.42247114374396, 34.66600711808993], [-77.42195827168285, 34.66524653372195], [-77.4216607627089, 34.665117384093556], [-77.42129732576905, 34.664656427048364], [-77.42043394128169, 34.66251285992311], [-77.41920424098794, 34.66129774228639], [-77.41605971773556, 34.65786768706817], [-77.41605762313289, 34.65785150968699], [-77.41634992619286, 34.65747174429427], [-77.41897720530183, 34.6539329371806], [-77.41912209469051, 34.653767953183134], [-77.41966467029678, 34.65091673457114], [-77.41996574817502, 34.6493230834147], [-77.42058423449285, 34.64770102850275], [-77.4212289076266, 34.64608927453641], [-77.42178337828312, 34.645003482683], [-77.42191768783762, 34.64436740728907], [-77.4225475050025, 34.64279306777946], [-77.42258450504256, 34.64270056988823], [-77.42270619223626, 34.64239632491005], [-77.42325119951292, 34.641033733381555], [-77.42341688958874, 34.64061947366669], [-77.42384578081355, 34.64027622655682], [-77.42440194095, 34.64032477218641], [-77.42499629897205, 34.64053662276679], [-77.42569286400492, 34.64057581343268], [-77.42613127851254, 34.640941166944245], [-77.4265824491624, 34.64131715305258], [-77.42743116230729, 34.64202443303839], [-77.42812186430069, 34.6426000641081], [-77.4283183603628, 34.642852726579505], [-77.42885634000945, 34.643212149402366], [-77.43014083670353, 34.644282587315494], [-77.43076338432114, 34.64480135975597], [-77.43174100642928, 34.64598406698259], [-77.43392113220361, 34.64634470790683], [-77.43545634884109, 34.64483259206244], [-77.43730862924086, 34.64334961733335], [-77.43827138448367, 34.64266194354447], [-77.43966270775925, 34.641348837227234], [-77.44196866541247, 34.638654141331564], [-77.44230673470666, 34.637318504417934], [-77.44321560551072, 34.63534476000977], [-77.44324296461886, 34.63516841645551], [-77.44343317318157, 34.634986434351276], [-77.4438462939392, 34.63484834223698], [-77.44666260595652, 34.63388709025695], [-77.44735889444516, 34.633959370426126], [-77.4475842886436, 34.6339367159499], [-77.45121761476918, 34.632687949052276], [-77.4540431276669, 34.63151357414924], [-77.45724442423752, 34.62944241954997], [-77.45859164992616, 34.62889272472539], [-77.46070170275269, 34.62888732436064], [-77.46045797962296, 34.62747405737677], [-77.46155089090414, 34.62433996806106], [-77.4615394416558, 34.62422543112795], [-77.46154795355083, 34.62420900275108], [-77.46171868564748, 34.623971560610784], [-77.46407908874512, 34.62053273962748], [-77.46424023938296, 34.62021508144443], [-77.46456989052697, 34.62000631519134], [-77.46530429524393, 34.61958665108448], [-77.46780947750261, 34.61946843420412], [-77.46859925072327, 34.61936040930202], [-77.46875532452658, 34.61919856156869], [-77.46958785688759, 34.61713033844227], [-77.46868891541075, 34.61544700630139], [-77.4672964717164, 34.61370638827288], [-77.46692801483545, 34.613262056564196], [-77.4656252224134, 34.61187762404083], [-77.4652074786168, 34.61134823348105], [-77.46470491172747, 34.61046792115265], [-77.46440438115658, 34.61010029465653], [-77.46432543824614, 34.609809211978295], [-77.46425596129161, 34.608665535429175], [-77.46502088001867, 34.60630165888486], [-77.46550814431542, 34.6057940265729], [-77.46795790411463, 34.60465499158236], [-77.4686683349662, 34.60426444323185], [-77.47101194627118, 34.60276421328632], [-77.47167856433208, 34.60063883641479], [-77.47237419902335, 34.59828595038195], [-77.4718675497319, 34.59692470075132], [-77.47113205904672, 34.594886334084066], [-77.470941743439, 34.5928302165661], [-77.47073954356406, 34.59204418757818], [-77.47151877123684, 34.59003440719379], [-77.47171688269869, 34.588810950322], [-77.47187304017916, 34.58820125452726], [-77.47258275994976, 34.587855831162415], [-77.47331805006856, 34.587832853498135], [-77.47968189982826, 34.58597789166326], [-77.48024782650813, 34.58513926798548], [-77.48112542546602, 34.583170505835284], [-77.48159485540592, 34.58169238045286], [-77.48144973719536, 34.58012352004409], [-77.48083816902623, 34.57862983215597], [-77.48088697303362, 34.5773299497696], [-77.48068471667754, 34.57641953675376], [-77.48032809892851, 34.574535229386775], [-77.48023418899265, 34.57378469750506], [-77.48066506789836, 34.57152390625236], [-77.48067297169288, 34.57148243715939], [-77.48067123306461, 34.5714603016342], [-77.4806959804324, 34.57143308559163], [-77.48075546328847, 34.57141325735319], [-77.48454811149102, 34.57014904355158], [-77.48626029170102, 34.568460692579556], [-77.48652539631897, 34.56685651582791], [-77.48666527660666, 34.56612515062087], [-77.48666518364685, 34.56417880019533], [-77.48663422335724, 34.563871068993635], [-77.48651982046852, 34.563597058075494], [-77.48667903407954, 34.56258577060992], [-77.48679769455741, 34.560869997923774], [-77.48710406106497, 34.55884697211002], [-77.4864412510437, 34.557134563219456], [-77.48489099309563, 34.5555059698487], [-77.484677411546, 34.55528158959506], [-77.48263502771185, 34.55447653951428], [-77.4802543550141, 34.554478971147866], [-77.47817046415898, 34.555721606858384], [-77.47602759131254, 34.558037514521985], [-77.47542461395784, 34.559715506903316], [-77.47335576282607, 34.559984015259694], [-77.47074166053682, 34.56303162554228], [-77.47055655734991, 34.56511146890454], [-77.47055657211364, 34.56550831742943], [-77.47042067414064, 34.56787410104209], [-77.46798598628416, 34.571074819326334], [-77.46474007642794, 34.57084114283196], [-77.4637535178659, 34.57097047152484], [-77.46319535918319, 34.573518066871515], [-77.4634541622294, 34.574294069970705], [-77.46366808849135, 34.57486023837362], [-77.46369730752821, 34.575431176883185], [-77.46358087268855, 34.576362204897784], [-77.46345817860103, 34.57794714819704], [-77.46329597008963, 34.57939769252065], [-77.46320473011895, 34.580213731541036], [-77.46317384109045, 34.582386728910926], [-77.46314918630398, 34.58267178426628], [-77.46283915565279, 34.58298453539205], [-77.4618574745146, 34.58469727355355], [-77.46053443154301, 34.58609410559515], [-77.45972122161979, 34.58695268081116], [-77.45795978971759, 34.58828836818195], [-77.45631970961644, 34.589886106890674], [-77.45600912228066, 34.59008331695561], [-77.45527655886691, 34.590548445941906], [-77.45349356521768, 34.591680551168025], [-77.45287286847282, 34.592654720754844], [-77.45172938649142, 34.5935407357237], [-77.45056160299369, 34.59372259796423], [-77.44970612568797, 34.59361455687384], [-77.4491921504103, 34.59356866726067], [-77.44890508610949, 34.59352095128097], [-77.4478868066943, 34.593336310681636], [-77.4475947153856, 34.59273976602995], [-77.44798313269453, 34.59222959238154], [-77.4477650354795, 34.59121416806241], [-77.44775661084823, 34.589838272848525], [-77.44748682572651, 34.589763787490945], [-77.44763200241675, 34.589495200842194], [-77.44786164342648, 34.58926107770453], [-77.4505190064635, 34.585928231656986], [-77.45079124834662, 34.58565103667336], [-77.45101157084673, 34.58505220764818], [-77.45199634349524, 34.58231761483245], [-77.45161191562337, 34.579626825405064], [-77.45153376378886, 34.57898775853293], [-77.45153374007889, 34.57842082177394], [-77.45110944823969, 34.5756523670362], [-77.45100598625554, 34.57551282059387], [-77.44992999615378, 34.57358467080227], [-77.44906846708854, 34.572550938264875], [-77.44785169611964, 34.571090828553764], [-77.44696266559026, 34.57041661740732], [-77.44624217853274, 34.56956311274111], [-77.44427059175132, 34.566912132671355], [-77.44339301700512, 34.56517310209381], [-77.44253687454851, 34.56330567208745], [-77.44222105913639, 34.5626219193315], [-77.44154382503768, 34.56154705173011], [-77.44023817861475, 34.56024146296036], [-77.43934257574824, 34.55934588039444], [-77.43839062717312, 34.557206571366265], [-77.43833004954, 34.55712073021826], [-77.43839053986173, 34.55699702729616], [-77.44028737803686, 34.55548615234636], [-77.44154120829847, 34.55580331289933], [-77.44417317772026, 34.55343699816299], [-77.44469097332852, 34.552964282268874], [-77.44478041091473, 34.5528871847987], [-77.44784174869662, 34.552449851300054], [-77.45065788069721, 34.552300973411505], [-77.45099267704876, 34.552283336183095], [-77.4514883887178, 34.552354162307154], [-77.45414358639277, 34.55211451291874], [-77.45678967832899, 34.55159619577595], [-77.45729421784426, 34.551539257749], [-77.45782002042468, 34.55146993939946], [-77.45886956767852, 34.55133142590814], [-77.46023335466136, 34.55078135246451], [-77.4604446466511, 34.55073598886914], [-77.46099765540012, 34.55044283308285], [-77.46044402690679, 34.5498183487373], [-77.45969843547283, 34.54803666887376], [-77.45917971027393, 34.54730929479956], [-77.4572901228995, 34.545106772542375], [-77.45683314546514, 34.54474471269185], [-77.45597720459264, 34.54296219147027], [-77.45499675428735, 34.541121407848095], [-77.45731974077667, 34.539300229397355], [-77.46008520750081, 34.54038444917871], [-77.46031089643911, 34.54048853561385], [-77.46043783566078, 34.54060594879888], [-77.46120107173728, 34.541045366879175], [-77.4640604979348, 34.542697984716945], [-77.46674239611244, 34.545237169832916], [-77.46982284371572, 34.54229698734082], [-77.47303836858735, 34.538582041015225], [-77.47306488665349, 34.53853222436439], [-77.47311259680856, 34.538496670761084], [-77.47629716677608, 34.53611798992445], [-77.47940327967416, 34.53457014556835], [-77.48043750770921, 34.534156454152395], [-77.48396881458396, 34.53300457668202], [-77.4852352101315, 34.53251381361234], [-77.48731126952994, 34.531919817288625], [-77.49074372836311, 34.531407062314216], [-77.49043666746107, 34.530286402253374], [-77.48945686519528, 34.526709941209816], [-77.48536797308327, 34.52782680127433], [-77.48083305793725, 34.529801019043084], [-77.48008574996018, 34.5300148367168], [-77.47949612174241, 34.53024333385159], [-77.47672795222994, 34.53184241900772], [-77.47314532189841, 34.533537384514126], [-77.47255319865698, 34.53430090112864], [-77.47201972295053, 34.53473734477655], [-77.46675391629977, 34.538686673273176], [-77.46332504075022, 34.53776371615491], [-77.46051266879881, 34.53687353704146], [-77.4601134682899, 34.536713855482155], [-77.45965243212463, 34.53652945398443], [-77.45677663867994, 34.53537907413834], [-77.45428640625452, 34.53438301266077], [-77.45293567914865, 34.53442655398028], [-77.4524619078381, 34.533653180577076], [-77.45119529358476, 34.53213351243554], [-77.45093172553284, 34.53208105934446], [-77.44830795324106, 34.532457853104276], [-77.4488094060517, 34.53369033707372], [-77.44935433635821, 34.53410310353659], [-77.44889166678121, 34.53472716610298], [-77.44889159442607, 34.5374930067977], [-77.44895738261637, 34.53807817248584], [-77.44889159803107, 34.53869878689779], [-77.44943043657989, 34.541927300345804], [-77.44957856854269, 34.54378322907692], [-77.44883114252964, 34.54773835339173], [-77.44883144844532, 34.548807636967595], [-77.44824705058612, 34.5493309251034], [-77.4478400915137, 34.549294914304156], [-77.44752187904328, 34.54934024611735], [-77.44229266969934, 34.55056653813865], [-77.4415391490506, 34.55124400308201], [-77.44060313941604, 34.551007236318306], [-77.43806598205737, 34.55036537195218], [-77.43617183102737, 34.54963105036863], [-77.43523663863995, 34.549849568248575], [-77.43405248929591, 34.54966942922942], [-77.42990211791741, 34.55050339879628], [-77.42893488895956, 34.5503656228486], [-77.42797151491861, 34.54946667943891], [-77.42652453459948, 34.54943629047739], [-77.42578369577913, 34.54954338387273], [-77.4248415123601, 34.54989667965421], [-77.42379497808113, 34.54903218638303], [-77.42263256159265, 34.54872297151901], [-77.42011133352895, 34.548885742242746], [-77.4178875180782, 34.54816749907329], [-77.41633061074144, 34.54806836798159], [-77.41517690615053, 34.548124470807444], [-77.41358046215456, 34.5471114047851], [-77.41361867638486, 34.54539638033706], [-77.41161994621041, 34.54347716309525], [-77.41168620054492, 34.54250495473171], [-77.41097910607321, 34.53965230385079], [-77.41024843412066, 34.537765417388286], [-77.4094121856783, 34.539878616364014], [-77.40800346799699, 34.541431279271215], [-77.40751539228698, 34.54243024248], [-77.40857064457592, 34.54391756068227], [-77.40812687995775, 34.54520138356389], [-77.40806657625319, 34.54790776615575], [-77.4062336213502, 34.55087452190737], [-77.40540761146477, 34.553273290865036], [-77.40464107847859, 34.55519563239475], [-77.40444715617961, 34.55599993725111], [-77.40527232783435, 34.55850111739059], [-77.40646584044455, 34.55877331921773], [-77.40687825456254, 34.55887910036269], [-77.40759390889546, 34.55909290947076], [-77.40781875980025, 34.55914717734294], [-77.40845394500087, 34.55930315178476], [-77.4087902244292, 34.55932906825456], [-77.40997538260524, 34.559461916817874], [-77.41002962814898, 34.55944368289119], [-77.4102304019032, 34.55948355912067], [-77.41132736343849, 34.55962472905953], [-77.41197681762728, 34.55963175894139], [-77.41318095502758, 34.559272340250374], [-77.41396274688942, 34.55980025519866], [-77.41576272661396, 34.5597688606156], [-77.41633236973738, 34.55979822577991], [-77.41693187778483, 34.55956773728229], [-77.41719055997676, 34.559403317762374], [-77.41790791460068, 34.55904469749403], [-77.41874323351826, 34.55915425491577], [-77.41948326011435, 34.557396841222314], [-77.42088453495357, 34.5581326236395], [-77.42105902880941, 34.558074419493494], [-77.42118144409906, 34.55803358485813], [-77.4213062897723, 34.55761696083047], [-77.42063860994458, 34.55628171746166], [-77.42177090225825, 34.55365137529886], [-77.41948261166361, 34.55396981762542], [-77.41919777328792, 34.55340015330735], [-77.41900753644418, 34.553120722722255], [-77.41948217934161, 34.55165807328644], [-77.4213260388555, 34.55137664966491], [-77.42263303131026, 34.55083070908914], [-77.42339747864654, 34.551662485123295], [-77.42500781662122, 34.55225358696313], [-77.42578445439344, 34.552446981728295], [-77.42783341957197, 34.55303328899206], [-77.4284850070558, 34.55514765639134], [-77.4287039280452, 34.55536658257474], [-77.42893642856579, 34.555492346444936], [-77.43112219718105, 34.5558070761975], [-77.43157797157384, 34.5580972026176], [-77.43208851505587, 34.55818946638338], [-77.43263624457272, 34.5585344451277], [-77.43402998533884, 34.55904700892664], [-77.43524060527875, 34.5603597801913], [-77.4356836436037, 34.56090023867177], [-77.43741813702964, 34.56169957594241], [-77.43952580104293, 34.56374124803605], [-77.44038614815082, 34.56486619680723], [-77.44154667801598, 34.56773988657446], [-77.44232797624747, 34.56928813248812], [-77.44289288820713, 34.57004770866316], [-77.44511354400477, 34.57267834590442], [-77.4456061848005, 34.57305194827767], [-77.44683474278943, 34.57517259195983], [-77.44748714461029, 34.57617656960721], [-77.44758823532102, 34.576448995106155], [-77.44785499656089, 34.577167772900275], [-77.44919111508595, 34.58128613417334], [-77.44939689845702, 34.582693808052255], [-77.44894288646645, 34.58392779712551], [-77.44785930583213, 34.585031092153955], [-77.44614346954413, 34.58656135179265], [-77.4453566320604, 34.58737384438567], [-77.44470855706875, 34.587965973752105], [-77.44405658083167, 34.58856165557834], [-77.44367439534632, 34.589200319344215], [-77.44370935282598, 34.5894610800572], [-77.44386308569918, 34.58950150546592], [-77.44392136342285, 34.58974092594413], [-77.44418728476771, 34.59024113871068], [-77.44460801009176, 34.59028990879403], [-77.44470984789996, 34.59046530848829], [-77.44538307378835, 34.59079336055318], [-77.44668228836044, 34.591152062550414], [-77.44668455559642, 34.591522343342874], [-77.44674324989873, 34.59179561424155], [-77.44643959607569, 34.59219445377621], [-77.44559317177789, 34.593310625890666], [-77.44523938272593, 34.59374688239686], [-77.44488246496643, 34.594186983148134], [-77.44477991944058, 34.59428107004128], [-77.4444373022667, 34.59470496669595], [-77.44440110651388, 34.59475835464539], [-77.44446924945552, 34.594772533324715], [-77.4449964682373, 34.594900690670464], [-77.44505863702469, 34.59483072096904], [-77.44509721277491, 34.59491894815031], [-77.44512128920793, 34.59492221920041], [-77.44641582100982, 34.59513511416986], [-77.44727721787791, 34.59525491961794], [-77.44838649211894, 34.59546797904328], [-77.44893720044574, 34.59570910682641], [-77.44966012623736, 34.59627930635248], [-77.45149441066506, 34.59623926816287], [-77.4517155720434, 34.59610734151091], [-77.4518390032408, 34.59605669149947], [-77.45180575158732, 34.59596972398767], [-77.45341920448482, 34.59465034264565], [-77.45437339717417, 34.5945470674863], [-77.45446839116096, 34.59464281184031], [-77.45454890539622, 34.594527434654566], [-77.45456624894541, 34.59444373196794], [-77.45447500045766, 34.594422802382205], [-77.45406370452747, 34.59384856812308], [-77.4549677384304, 34.59262705903332], [-77.45533424642854, 34.59232469999559], [-77.45666499851669, 34.591744234687425], [-77.45681019679526, 34.59167751485594], [-77.45701417552459, 34.59167379043149], [-77.45728013283104, 34.59145388624009], [-77.45812122638661, 34.590822404264756], [-77.45928145746075, 34.58940578235787], [-77.45977606764238, 34.588923941359745], [-77.46017763166226, 34.588619436831785], [-77.46332334294574, 34.58529824058515], [-77.4633859816259, 34.585232108405485], [-77.46343245873373, 34.585151019839046], [-77.46410208743066, 34.584475515246154], [-77.46506974658294, 34.58345319810395], [-77.46514758030251, 34.58337102171867], [-77.46522018978524, 34.58327979574408], [-77.46520672193328, 34.58312405628972], [-77.46532356066638, 34.58177318242938], [-77.46533513171404, 34.58095917637771], [-77.46558269034068, 34.57874504261946], [-77.46566961783991, 34.57796769629234], [-77.46625252655738, 34.57632530984668], [-77.46617202505786, 34.575622633659435], [-77.46608253517098, 34.57502711420451], [-77.46678344826611, 34.574359182077444], [-77.46704140142683, 34.5741239149972], [-77.46863410796857, 34.573441357409], [-77.47022385373728, 34.572760018091934], [-77.47201993800357, 34.570998991256296], [-77.47212716381146, 34.570845838252374], [-77.47238122275174, 34.568560108804164], [-77.47245221267801, 34.567921321841226], [-77.47254356620743, 34.56682949432197], [-77.47259162249695, 34.5661563546822], [-77.47328734486162, 34.56472860411387], [-77.47335692928301, 34.563946744550066], [-77.47417873128487, 34.562988659535044], [-77.47585985687381, 34.562770472609074], [-77.47761560081207, 34.56349263832994], [-77.47817106208706, 34.563600189358965], [-77.47859641336785, 34.5637703330524], [-77.48050872413697, 34.56266637218636], [-77.48166378556391, 34.561898397537924], [-77.48166382523625, 34.55962367595636], [-77.48201532611293, 34.55954411726935], [-77.48170038778674, 34.559371706587136], [-77.481997399513, 34.5589161651957], [-77.48301666944259, 34.55741716205], [-77.48322433965576, 34.557414079937345], [-77.48332170209324, 34.557523874133324], [-77.48413079229513, 34.55867747899224], [-77.48407467209648, 34.560032061102156], [-77.48405048403579, 34.56025607387544], [-77.48282021893137, 34.56200617280275], [-77.48277593409975, 34.56228745965279], [-77.48377777237775, 34.56468700243915], [-77.48382242034586, 34.565130782941665], [-77.48404881827784, 34.56608676322463], [-77.48374023528315, 34.567201312683515], [-77.48342770469885, 34.56746996302023], [-77.48007468241764, 34.56858767090395], [-77.47991087848918, 34.56856790385499], [-77.47980142502502, 34.56867875594967], [-77.47980134426732, 34.56877704255222], [-77.47816020496248, 34.57058189378201], [-77.47828451030443, 34.572164500075395], [-77.47811687039871, 34.57304406176097], [-77.47818639807932, 34.57366967965784], [-77.47829033034293, 34.574430531040335], [-77.47837327865768, 34.575093457217136], [-77.47847817975259, 34.57564773671236], [-77.47897330262542, 34.57787642468334], [-77.47888704187753, 34.58017395787353], [-77.47865359984024, 34.580663690772354], [-77.47863011556801, 34.58092872873397], [-77.47831395160757, 34.58171923421018], [-77.47785093460664, 34.582860243179624], [-77.47675847156097, 34.58441742151519], [-77.47646473934817, 34.5848526913078], [-77.47553108187662, 34.585124837735194], [-77.47412692796492, 34.585168717254795], [-77.47244765596326, 34.58523936471944], [-77.47184493919096, 34.58516286978619], [-77.46900973419085, 34.58662947528667], [-77.46832815381671, 34.58696120309813], [-77.46754975700017, 34.590000348352504], [-77.46729792148196, 34.59155558343298], [-77.46814910599261, 34.59278355156183], [-77.46776454149308, 34.59462759003782], [-77.46787455064543, 34.59581609868408], [-77.46824454984333, 34.59684152843744], [-77.46791875162478, 34.598757732982506], [-77.46749282711436, 34.59997414406811], [-77.46700061049253, 34.60136122289591], [-77.4654159994301, 34.60242614802908], [-77.46417644977416, 34.60321935568181], [-77.46279788852408, 34.60484598393422], [-77.4620274254151, 34.606347206147845], [-77.46198990862413, 34.609007615830855], [-77.46188136470982, 34.60934305592923], [-77.46188988427078, 34.609483298433], [-77.46194293145395, 34.610418378245186], [-77.46203326906317, 34.612010903975836], [-77.46204682615891, 34.612250013939956], [-77.46206518282605, 34.6125736187055], [-77.46274955890507, 34.61336269120867], [-77.46356554111844, 34.614396753914626], [-77.4638431005622, 34.61469170675177], [-77.46453054704958, 34.61536177680306], [-77.46435619913602, 34.617087952433174], [-77.46439981963061, 34.617487066178896], [-77.46406718207227, 34.617677148270865], [-77.46395001100636, 34.61774410384671], [-77.46153963899934, 34.619270579157366], [-77.4603613237002, 34.621593259985744], [-77.45913244582555, 34.62338358597941], [-77.45869972941307, 34.62502142263263], [-77.45787239020498, 34.62626746655692], [-77.45673803654348, 34.627501110218816], [-77.45347861774624, 34.629464535346166], [-77.45162098645258, 34.630666373886505], [-77.45076172758789, 34.6310235097703], [-77.4496568068904, 34.631403268796554], [-77.4467392041773, 34.631696518408845], [-77.44644952799354, 34.63166644776441], [-77.44537448938031, 34.63177529431393], [-77.44318691017295, 34.631997094577216], [-77.44234439131081, 34.6310098852651], [-77.44124112074851, 34.630718232845666], [-77.43996184177121, 34.631542774867725], [-77.43933858787875, 34.63304346755867], [-77.4392875709552, 34.63351041921353], [-77.43917088586403, 34.63374371733406], [-77.43900175003074, 34.63416652806331], [-77.43830142012098, 34.63591717673215], [-77.43792747623556, 34.63685201999451], [-77.43669684875925, 34.639928700651836], [-77.43663464939607, 34.64017443656126], [-77.43655891439992, 34.640262938959815], [-77.43648317751729, 34.64033441809108], [-77.43517568528456, 34.64225668880064], [-77.43387994630105, 34.64337072469524], [-77.43322443529148, 34.643799558966776], [-77.43217244718147, 34.64292294263654], [-77.431626218037, 34.642467779929746], [-77.43085165242229, 34.64182230507874], [-77.4300720794503, 34.64071006632247], [-77.42830578695046, 34.639593779625685], [-77.4277742363343, 34.63925784873136], [-77.42628863602897, 34.63801981281933], [-77.42450644368849, 34.63772230759808], [-77.42302473476289, 34.63727510463043], [-77.42126451227323, 34.63864580536702], [-77.42020372910784, 34.639494763645104], [-77.4197412319524, 34.64065110290568], [-77.41902910868816, 34.64223632946918], [-77.41832909034034, 34.64379437919394], [-77.41627566900299, 34.64597422928658], [-77.41599822736747, 34.647934349481545], [-77.41396122363689, 34.65028322700914], [-77.40870195749022, 34.6540382122163], [-77.40773146169431, 34.6549523825836], [-77.40715918213093, 34.65618255738836], [-77.40702079064738, 34.65747055132365], [-77.40715151222032, 34.65773711420701], [-77.40751533302362, 34.658806631894166], [-77.40789806075784, 34.65888458119216], [-77.40912859952869, 34.65897850675353], [-77.41011858923576, 34.659542402799424], [-77.41263536554862, 34.66162505163175], [-77.41278797064432, 34.661736211679646], [-77.41280774612346, 34.66179724777431], [-77.41291078216823, 34.66182670306392], [-77.41617253340507, 34.66372633505813], [-77.4169475463701, 34.66405363074214], [-77.41814314866257, 34.66557005576044], [-77.41849663524285, 34.666018392491516], [-77.42058416153674, 34.66692459455167], [-77.42140621354962, 34.66814368983503], [-77.42136403815161, 34.66963549910274], [-77.42116761610036, 34.67231200536429], [-77.4193860969164, 34.67341619639323], [-77.41960735682389, 34.67572150155804], [-77.42184185519235, 34.67682268012729], [-77.42322744128523, 34.67778171724281], [-77.4240001616661, 34.67822113031792], [-77.42485495388408, 34.67834229985617], [-77.42541303926195, 34.67776111195589], [-77.42684183096817, 34.67725813572085], [-77.42752574955854, 34.67777333125247], [-77.42799513755855, 34.67770115541321], [-77.42826603586292, 34.67793679562336], [-77.42915055402325, 34.6781369018094], [-77.42939048662886, 34.678780556835], [-77.42928739680272, 34.67911633388355], [-77.42940774420585, 34.67946260189367], [-77.42947012405354, 34.679640084226975], [-77.42963431162121, 34.67979674182365], [-77.42986749797748, 34.680088210778315], [-77.43028766128081, 34.68019162348887], [-77.43048235139885, 34.680177755395334], [-77.43052595589289, 34.68013614130224], [-77.43054179447859, 34.68011414060374], [-77.43061930023238, 34.68005320068809], [-77.43084906088865, 34.67966254130641], [-77.43108353679436, 34.679552087507666], [-77.43125333116183, 34.67952440245435], [-77.43128062049699, 34.67950039423839], [-77.4313150409724, 34.67951434063146], [-77.43143560325696, 34.679448385570666], [-77.43136437274865, 34.67934382142593], [-77.43129837926813, 34.67932336861995], [-77.43110358001009, 34.67921093969689], [-77.43108205910616, 34.67921225643374], [-77.4308589843273, 34.6791849507113], [-77.43076099010072, 34.67921465132767], [-77.43065628008331, 34.67914499420645], [-77.43018116485989, 34.679004060421036], [-77.43008407964021, 34.678937442972966], [-77.42996915784894, 34.678795721987434], [-77.42983259635801, 34.67859602539484], [-77.4293499759493, 34.678020082317566], [-77.42930174178302, 34.67792483232563], [-77.42923403996923, 34.67784834974538], [-77.4283167941087, 34.67744316925659], [-77.42798745452485, 34.67642534448271], [-77.42800710033444, 34.67578689993975], [-77.4294088893537, 34.673822503237815], [-77.43065382698853, 34.672940856818215], [-77.4306854522275, 34.67291846045363], [-77.4327529808445, 34.67380591289318], [-77.43292291023882, 34.67395627846766], [-77.43322838031261, 34.674904080367924], [-77.43303470866883, 34.675263959609886], [-77.43305203547483, 34.67546663611474], [-77.43306907442641, 34.67566593216954], [-77.4331009037769, 34.67597761785439], [-77.43310903195535, 34.67613328683422], [-77.4331257347815, 34.676328652070794], [-77.43317683758283, 34.67656323538341], [-77.43331498218288, 34.6770308039415], [-77.43337436263194, 34.67711764747672], [-77.43336934781914, 34.677189624200906], [-77.43342088314871, 34.67739095005224], [-77.43342201286505, 34.677544147703586], [-77.43352566879369, 34.677562265613], [-77.4337067150455, 34.677425303088924], [-77.43381699973311, 34.67734618424387], [-77.43383395324767, 34.677318482249326], [-77.43389498465093, 34.67724074321904], [-77.43406713120598, 34.676951909020964], [-77.4341460546415, 34.6769022075016], [-77.43428785791275, 34.676736317525766], [-77.43444931181108, 34.676449209060834], [-77.43448283391771, 34.676135958689606], [-77.43450697911325, 34.67591032053848], [-77.4345712746763, 34.67572521943148], [-77.43464165596542, 34.675398363816214], [-77.43521382443934, 34.67489636477275], [-77.43583305729541, 34.675815030481616], [-77.4359783664068, 34.676030605203266], [-77.43608422800317, 34.676317436664775], [-77.4362188185141, 34.6768230174145], [-77.43628603314676, 34.67709154959756], [-77.4364484772972, 34.67727332560291], [-77.43692580936938, 34.677420666979685], [-77.43686086304625, 34.67806281018116], [-77.43688629381299, 34.67832995974395], [-77.43679719628986, 34.67838840816346], [-77.43679841094024, 34.678425993901236], [-77.43674298155764, 34.678470381316565], [-77.43655994113558, 34.67878390634778], [-77.43647729533691, 34.678835588985386], [-77.43627870548168, 34.67903000174701], [-77.4362671798978, 34.67904163729782], [-77.43626267163629, 34.67904569836851], [-77.43625634063741, 34.67904524747711], [-77.43624424802393, 34.6790443862158], [-77.43594243645326, 34.67902289061249], [-77.43578570638269, 34.6790137293935], [-77.43562814184322, 34.6790018842299], [-77.43538282163546, 34.67901189820554], [-77.43532788891181, 34.6790130618099], [-77.43525363378457, 34.679234719986894], [-77.43526167795203, 34.6792490599974], [-77.4353735502379, 34.6793282660541], [-77.43547886092757, 34.67936389754891], [-77.43551921344714, 34.67937847491284], [-77.43555864095342, 34.67939029379106], [-77.43581402408167, 34.67946684811426], [-77.43609780773637, 34.67955191495953], [-77.43612127836971, 34.67956231339814], [-77.43639725236991, 34.679665701073084], [-77.43666303730416, 34.67976235478193], [-77.43671018892128, 34.679777276052654], [-77.4370247560126, 34.67971148093934], [-77.43727350519626, 34.6796730688643], [-77.4374746136318, 34.67953140212631], [-77.43771397905152, 34.67954386096792], [-77.4379387011928, 34.67967621038443], [-77.43823755021629, 34.67994899378783], [-77.43829688126254, 34.68003092617986], [-77.43850888083304, 34.68033097919023], [-77.43855917910471, 34.68040216793534], [-77.43870569595148, 34.68054578279857], [-77.43878952394076, 34.680660220002885], [-77.43887745423118, 34.68070298313203], [-77.4389808574992, 34.68070211325963], [-77.43910024647047, 34.680693305061546], [-77.43930538811232, 34.68068774052123], [-77.43981225398315, 34.68067965373895], [-77.43994945419657, 34.68067626466294], [-77.44002325874722, 34.68070664121144], [-77.44098423783308, 34.681083173035795], [-77.4410477564405, 34.68130973141683], [-77.44121301255431, 34.681155967139006], [-77.44130956665808, 34.681084340671674], [-77.44171679675199, 34.68077732741692], [-77.44208663309382, 34.6802379607826], [-77.4423576354674, 34.680036162085486], [-77.44403905953573, 34.67980774358556], [-77.44404524556315, 34.67980703594528], [-77.44404726158159, 34.67980719045069], [-77.44406052165559, 34.67981002838965], [-77.44657849967494, 34.6799096357546], [-77.44731692491548, 34.67917010988291], [-77.4480752842686, 34.67897749974355], [-77.44900746041915, 34.67837690535402], [-77.44927754839475, 34.67815902782106], [-77.449530023869, 34.67785561554971], [-77.45005165379894, 34.67719086850313], [-77.45034214570062, 34.67614712852661], [-77.45044216105957, 34.67593266764547], [-77.45076050624412, 34.674961147299165], [-77.45130080396652, 34.67439684517693], [-77.45364255239332, 34.67225258283571], [-77.45566674677748, 34.67315237933042], [-77.45622669356526, 34.67439440255919], [-77.45629441944651, 34.67445053543487], [-77.45631778857549, 34.67446990392613], [-77.456366053532, 34.67451067279105], [-77.45758766972503, 34.675558935827404], [-77.45749172168256, 34.676693279568454], [-77.45790110696078, 34.67745707439816], [-77.45836240482058, 34.678292225949505], [-77.45869055134543, 34.67888630268364], [-77.45959696964684, 34.6805271740471], [-77.4599325623361, 34.680798772526515], [-77.45999216918699, 34.68095379105866], [-77.46050962485391, 34.6819469342925], [-77.46129946309091, 34.683014383509544], [-77.46140141448346, 34.68333419375325], [-77.46142982042181, 34.68364506554827], [-77.461316285262, 34.684105136430134], [-77.46055313795031, 34.68719718435271], [-77.46087296635812, 34.68792234169738], [-77.46344111250488, 34.69250987235528], [-77.46383668976588, 34.69296893311102], [-77.46488366562268, 34.69379544763987], [-77.46657915751913, 34.69539508791308], [-77.46741139378975, 34.69651163433258], [-77.46908262411733, 34.69679021418101], [-77.47118055788523, 34.69704472357432], [-77.47236302651291, 34.69711707067085], [-77.47307392664291, 34.697330116063355], [-77.47704708003026, 34.698165713309976], [-77.47716374725428, 34.69824511094974], [-77.48126621616305, 34.69997478411085], [-77.48175361413192, 34.70010365907672], [-77.48216749888662, 34.70022292351422], [-77.48633530912446, 34.70199101783584], [-77.48973658436354, 34.7035792844577], [-77.49094859616135, 34.70376943066975], [-77.4917457865911, 34.70390512207085], [-77.49400444496209, 34.703964041832876], [-77.49549377026219, 34.70404648928667], [-77.49599524180067, 34.704046490434486], [-77.49716584439763, 34.704046473687946], [-77.49912714703586, 34.70400072267902], [-77.50128004715347, 34.70349782208295], [-77.5022306862156, 34.70309040739498], [-77.50281925525226, 34.702569202095255], [-77.50380767825945, 34.70127010378213], [-77.504181446187, 34.700809068612244], [-77.5042615351155, 34.700430051994914], [-77.50491580472891, 34.698829822874934], [-77.50683068777275, 34.69731854135069], [-77.50903940775763, 34.697838281552684], [-77.50907947062102, 34.69784039862675], [-77.51130565188798, 34.69858251038737], [-77.51139724501186, 34.69861304355641], [-77.51139998795522, 34.698613957856104], [-77.51340061770591, 34.69982554478818], [-77.5158549576605, 34.70029661232955], [-77.51615531212192, 34.70060324720765], [-77.51741693974058, 34.70223484825681], [-77.51854098149815, 34.703583144176406], [-77.51977791144141, 34.705309713740405], [-77.52070430918944, 34.70724803443764], [-77.52265753988331, 34.71125056828241], [-77.5224888699824, 34.71390109682452], [-77.52283002725552, 34.71475106403425], [-77.52339695123831, 34.7156925980422], [-77.52419267323305, 34.717753823120376], [-77.52552717846086, 34.7171957476144]], [[-77.32385800559298, 34.742233855300825], [-77.32376805411101, 34.74232369701137], [-77.32374837528417, 34.74237832176538], [-77.32350303718877, 34.7426113991655], [-77.32380985641504, 34.74239940828048], [-77.32559274940495, 34.74407509527602], [-77.32569973141432, 34.74407560197035], [-77.32571998959372, 34.74407002846706], [-77.32581070260191, 34.74413423152508], [-77.32711804009064, 34.744561732681476], [-77.32733348762217, 34.74481131436943], [-77.32756763048233, 34.74500434404703], [-77.32786047305859, 34.74494876929529], [-77.3287275035296, 34.74490090894311], [-77.32911078930184, 34.744768921009744], [-77.32942213050474, 34.7447813544174], [-77.33035974155536, 34.744593729831074], [-77.33068362785579, 34.74497356411242], [-77.33074761374189, 34.7453181808097], [-77.33074803850047, 34.74531839116183], [-77.33074932664135, 34.74531918096262], [-77.33107658855221, 34.7454597117987], [-77.33109516997867, 34.74551423087977], [-77.33127505120302, 34.7455659989631], [-77.3314349167478, 34.745578355997665], [-77.33155401025607, 34.745695027294985], [-77.33169876162631, 34.74576963931465], [-77.33174689373513, 34.74600336156976], [-77.3318793962819, 34.74613779914992], [-77.33197671591785, 34.74634420901896], [-77.33196862847575, 34.74636925393195], [-77.33204060349621, 34.746463532996856], [-77.33214878808853, 34.74658824547632], [-77.33216981976518, 34.74660898114079], [-77.33233536685341, 34.7467247508844], [-77.33242042688555, 34.74677716731326], [-77.332436658303, 34.74677886548236], [-77.33270648616916, 34.74682342115477], [-77.3332390980959, 34.74692616820255], [-77.33326690037642, 34.7469288291878], [-77.33327344959693, 34.74693366253013], [-77.33367131602311, 34.74740617790245], [-77.3338718726418, 34.74781417053352], [-77.33415304845265, 34.748028941538394], [-77.3346969022523, 34.74819423446908], [-77.3347187468223, 34.74819843114714], [-77.33540419376357, 34.747846274009284], [-77.3364028580311, 34.748441947675175], [-77.33641742452936, 34.74844799172345], [-77.33642427544366, 34.74845842224282], [-77.33652066201621, 34.74851840583357], [-77.33644309316472, 34.74843643161597], [-77.33644288462894, 34.74842841643055], [-77.33643718231689, 34.74841402342661], [-77.33580825867487, 34.74754871952016], [-77.33603506620837, 34.747165378901705], [-77.33587741569173, 34.74656448906628], [-77.33638934092802, 34.745848606064285], [-77.33655475481831, 34.74518921343319], [-77.33578919882981, 34.74462709649956], [-77.33524052685648, 34.74428829595023], [-77.33442024872639, 34.743677244771035], [-77.33326544963238, 34.74302359087328], [-77.33324807232059, 34.742900346255425], [-77.33242035912443, 34.74206177024135], [-77.33223361405732, 34.74121554227463], [-77.33191419844931, 34.73932919490227], [-77.33190511944746, 34.739304888535884], [-77.33186246680339, 34.73928334545595], [-77.32954263223216, 34.7391638352473], [-77.32404330376126, 34.74219607586297]], [[-77.48659235531288, 34.68500289007951], [-77.48660075012278, 34.68501027288301], [-77.48551046159358, 34.687102174658385], [-77.48649818277772, 34.68799391604205], [-77.48674887182246, 34.6884952817033], [-77.48766754114183, 34.69033246707575], [-77.48779104493269, 34.69057946437134], [-77.48782883616494, 34.69083446490167], [-77.48811801256727, 34.69296681091937], [-77.4879892243398, 34.69359344604499], [-77.48710891068015, 34.69633705600578], [-77.48621243971496, 34.69677280332274], [-77.48201321439936, 34.69920449784528], [-77.48090519530308, 34.694919712270135], [-77.48001125940483, 34.693355351291316], [-77.47976309826727, 34.69032098740627], [-77.47974252323102, 34.690042267420104], [-77.47981948219325, 34.68989914131712], [-77.48001276022649, 34.689411728126885], [-77.48124416550735, 34.68653840220621], [-77.48158941119124, 34.68573293525659], [-77.48196548064917, 34.68485547771662], [-77.48220351700151, 34.6843000934587], [-77.48251286618151, 34.68357829649559], [-77.48321376395552, 34.68302219061023], [-77.48376802273188, 34.68233165768989], [-77.48563401972997, 34.682331700262516], [-77.48567369211877, 34.68249083703693]], [[-77.39250803259593, 34.744526841360994], [-77.39501808707911, 34.74327041301739], [-77.3950812202994, 34.743081036566025], [-77.39484574652838, 34.74298863542408], [-77.39293675359124, 34.741197567242054], [-77.39252301764908, 34.74057661079841], [-77.39116001634547, 34.7395820450736], [-77.39091271345448, 34.73933147544443], [-77.39069065095693, 34.73941784001473], [-77.3897020150389, 34.74056478637221], [-77.38922217580631, 34.74195209511515], [-77.38992818605738, 34.7427264517093], [-77.39035194560657, 34.74326656685961], [-77.39156939986239, 34.744198502224855], [-77.39184720205989, 34.744428733559296], [-77.39196657086852, 34.74454332936759], [-77.39215828762609, 34.74458123769823]], [[-77.30440867613297, 34.65819027790771], [-77.30417135642057, 34.65747742072444], [-77.30575575109619, 34.65495523004722], [-77.30635703798094, 34.6546700959712], [-77.30812964785875, 34.65402050219184], [-77.3095737669091, 34.65512661216479], [-77.31099058402769, 34.65654344420108], [-77.31111488194757, 34.656667743947054], [-77.31132176661717, 34.65716440395401], [-77.31227780654196, 34.658956955373114], [-77.31278053037913, 34.65967408197064], [-77.31278050830178, 34.660669635289395], [-77.31091654172899, 34.66330528577258], [-77.31018589508554, 34.66427025239168], [-77.30958083462396, 34.66429109596419], [-77.3093089583757, 34.66352548943119], [-77.30623531498304, 34.66172915759438]], [[-77.44810162654109, 34.53000850743926], [-77.44785684374331, 34.530252901806094], [-77.44796470659982, 34.53038666642688], [-77.4479916896617, 34.53044539080728], [-77.44807627103107, 34.53116980180336], [-77.44934479757669, 34.53097554698383], [-77.44832725074167, 34.530334180471414], [-77.44832688105349, 34.530191216498565]], [[-77.44397060499172, 34.682672459593135], [-77.44415654869599, 34.682638751492895], [-77.44440278841239, 34.6826311699381], [-77.44451297515285, 34.68262140013482], [-77.44480340047141, 34.682538279248426], [-77.44518443149795, 34.68251520794907], [-77.44524008182216, 34.682504340737545], [-77.4453658985885, 34.6825025146976], [-77.44561618166145, 34.68237138941971], [-77.44592333252326, 34.68169947565752], [-77.44520273339671, 34.68169567921383], [-77.44477064937703, 34.68173023112066], [-77.44475864528454, 34.681731190987236], [-77.44431524724997, 34.681740462235794], [-77.44412579941027, 34.68174442305534], [-77.44386358259598, 34.68174990472429], [-77.44379792167479, 34.68177037584569], [-77.44359143769668, 34.681882151588354], [-77.44357296882868, 34.68202256857432], [-77.44354348587876, 34.682246718717636], [-77.44372738522254, 34.68248871170407], [-77.44379236289733, 34.682589220264454]], [[-77.45229580467978, 34.682296607096745], [-77.45249937435776, 34.682406288606174], [-77.45257742607066, 34.6824306594469], [-77.452727263421, 34.68228067997707], [-77.45273970436457, 34.682201289959366], [-77.45276194016643, 34.68215304870006], [-77.45270035541084, 34.68200535740992], [-77.45268501575808, 34.682000913421675], [-77.45266054663078, 34.68197785700255], [-77.45245132891085, 34.68175854118836], [-77.45222282560661, 34.68174749866638], [-77.45204794247688, 34.68166862564842], [-77.45177187445243, 34.681892504937686], [-77.45156960285522, 34.68131702867223], [-77.45145533858988, 34.68117514802103], [-77.45134141253783, 34.68116505847067], [-77.45129625275644, 34.681187821170724], [-77.45122708143734, 34.68119730218769], [-77.45045607244951, 34.681309931707354], [-77.45021134906148, 34.68169463164493], [-77.45009155893356, 34.68191840621205], [-77.45002087769711, 34.682093852054905], [-77.45003860610454, 34.68245891065575], [-77.44997570756206, 34.68268588260481], [-77.44996601364723, 34.682713043470336], [-77.45017459579805, 34.68298500326385], [-77.45021109179756, 34.68303401571315], [-77.45028690592326, 34.68310471777512], [-77.45042849493326, 34.68321495898764], [-77.45072804481097, 34.68326457044395], [-77.45073409417938, 34.68326606784215], [-77.45073809600166, 34.683265869774836], [-77.45074342387439, 34.683264290701906], [-77.451129233852, 34.68315748681824], [-77.45122949434129, 34.68305517050047], [-77.45129990373059, 34.682899790206044], [-77.45127996577861, 34.68265626330619], [-77.45169898447492, 34.68248027153878], [-77.45176720417054, 34.68195739925769]], [[-77.35630211372262, 34.770999962913976], [-77.3562730867388, 34.771060012328576], [-77.35624938834032, 34.7711001045973], [-77.35612240953196, 34.77271502578578], [-77.35798862193838, 34.77264011504807], [-77.35815285224076, 34.772641754209964], [-77.35834059059545, 34.772664144568594], [-77.35890418778804, 34.77254182204337], [-77.35916330246536, 34.77256216495217], [-77.35946673552331, 34.77253611566073], [-77.35961440347796, 34.77258017960875], [-77.35982614849016, 34.77255229304636], [-77.36015544277073, 34.77237392593827], [-77.36017253192745, 34.77235615404482], [-77.36017165228334, 34.77231812107459], [-77.36004096090463, 34.77195637603016], [-77.35986580291514, 34.771689570606156], [-77.35977733740879, 34.771466822385776], [-77.35962144297298, 34.771238504012615], [-77.35951326478971, 34.771006950182446], [-77.35959654303562, 34.77067905853559], [-77.35954727590348, 34.770376880440395], [-77.35950707302216, 34.7701884863327], [-77.3594654024485, 34.769964713110156], [-77.35931854262633, 34.76982033159035], [-77.35912498994244, 34.76966016420639], [-77.35903441965921, 34.769606939067835], [-77.3588393666102, 34.76956426322711], [-77.35845420367323, 34.76954181534829], [-77.35804269004362, 34.769661469612075], [-77.3578121394948, 34.769689599923595], [-77.3573193004247, 34.769494680621186]], [[-77.42550920938413, 34.73202491932775], [-77.42531133066592, 34.7321892895183], [-77.4251337245903, 34.732336818726054], [-77.42546450364867, 34.73243957557774], [-77.42558027070234, 34.732549860443555], [-77.42585259856564, 34.732483350717594], [-77.42593771780592, 34.73246494143152], [-77.4259629569764, 34.732463058468916], [-77.42615657105941, 34.7324486139988], [-77.42626295119138, 34.73231218767136], [-77.42627842408665, 34.73229379414562], [-77.42628224800559, 34.732280039031934], [-77.4263178162856, 34.732066112308615], [-77.4262649276368, 34.732009543695916], [-77.42618614603442, 34.731897843762354], [-77.42603610280953, 34.731877841339895], [-77.42593992340545, 34.731895940734574], [-77.42582561193501, 34.73190783037702], [-77.42575769645899, 34.73193703503681], [-77.4256416067798, 34.731981096776174]], [[-77.35250075128131, 34.55044263489886], [-77.3526445006019, 34.550445261679265], [-77.35294295620835, 34.55022383913919], [-77.35292106419247, 34.55015039964836], [-77.35280667141998, 34.54999863329289], [-77.35273197347016, 34.54996176468728], [-77.35265488493164, 34.54999313898052], [-77.35261053732007, 34.549999298330725], [-77.35245833428075, 34.55000366251497], [-77.35228064020565, 34.550061904219014], [-77.3522605320865, 34.550068662406304], [-77.35225248355812, 34.55007344846994], [-77.35224337107451, 34.55007971021431], [-77.35214667881925, 34.55014615345783], [-77.35206076805724, 34.550219037838346], [-77.3520531648066, 34.55022483916564], [-77.35204320991735, 34.55023092991707], [-77.35203934037987, 34.550244483721805], [-77.35216366689085, 34.550336003535406], [-77.35219896749396, 34.55036506594292]], [[-77.46058425004009, 34.503605213166665], [-77.46148458304602, 34.50375815412702], [-77.4616341629226, 34.50380322416706], [-77.46199938729106, 34.503515371970174], [-77.46206610599764, 34.50344657695695], [-77.4621763749825, 34.50332357276125], [-77.46229382187538, 34.503192560740615], [-77.46240912020673, 34.50301915549072], [-77.4626923466996, 34.5027480045405], [-77.46280807599823, 34.502618906565694], [-77.46285074541406, 34.50254531508031], [-77.4629859951669, 34.502408311845926], [-77.4630042244157, 34.50234081315316], [-77.46305824251506, 34.50221809023151], [-77.46298807658174, 34.50211231299317], [-77.46298512548871, 34.50195933128883], [-77.46264789566567, 34.501947087403124], [-77.46248989222335, 34.50200780907908], [-77.46217144401886, 34.502173078554804], [-77.46219012732826, 34.5023187687357], [-77.4619611739414, 34.50250016030206], [-77.46153656767656, 34.502595353907395], [-77.46133963115345, 34.5027263409945], [-77.46104201581616, 34.502949170030305], [-77.46082542192677, 34.503118018067305], [-77.46080677481457, 34.503131924732415], [-77.46078756863457, 34.50316997790738], [-77.46066887934477, 34.50336195997567]], [[-77.35191050081322, 34.78628005929826], [-77.35187028444095, 34.786369227893346], [-77.35214586468419, 34.78681046398614], [-77.35244077936072, 34.78718207235291], [-77.35249585139955, 34.78732981960744], [-77.35247134520148, 34.78766526050658], [-77.352498442592, 34.78772203840353], [-77.35254467508214, 34.78781890928396], [-77.35256726243702, 34.78786623663264], [-77.35271188862441, 34.7878759511304], [-77.35278054786981, 34.787899372992094], [-77.35285421140357, 34.787878579573416], [-77.35291384851807, 34.787796894175], [-77.3530795591823, 34.787581819627], [-77.35313450135209, 34.78748851139772], [-77.35334272782387, 34.7871348768691], [-77.35339175864007, 34.787051606708374], [-77.35364168294507, 34.78666110436123], [-77.35423100585714, 34.78614029623767], [-77.35436170055605, 34.78607964424364], [-77.35478969267321, 34.78613089182245], [-77.3547870678496, 34.78602651952602], [-77.3547389750086, 34.785833521160086], [-77.3546955580169, 34.78578345972855], [-77.3545020766133, 34.7855603662167], [-77.3544163601324, 34.785502421574996], [-77.35439676130652, 34.78545157505573], [-77.3541397693988, 34.78527755158585], [-77.35401066815173, 34.78501716747933], [-77.35396916528236, 34.78497913041509], [-77.35366470957463, 34.78485435807797], [-77.35342458513179, 34.784790986849565], [-77.35222280055086, 34.785174481966294], [-77.35228644135141, 34.784583271416274], [-77.35177779933566, 34.78532350131018], [-77.35194098875377, 34.785391135736184], [-77.35188321840644, 34.785970796892755], [-77.35190412693156, 34.78620789073807]], [[-77.35437861687636, 34.775632740942505], [-77.35491745278624, 34.77552872592273], [-77.3554223022562, 34.77640711619583], [-77.35587335723676, 34.77636326365271], [-77.3561761409862, 34.77661591747042], [-77.35680656238686, 34.77683539630679], [-77.35688068818027, 34.776862615162685], [-77.3569219203908, 34.7768789199817], [-77.35696701997631, 34.776861494842166], [-77.35701149410072, 34.77684216475067], [-77.35768085119521, 34.77653145018828], [-77.35769754414424, 34.7765230402048], [-77.35794052629434, 34.77640062433569], [-77.358324847954, 34.77618335309603], [-77.35835879942766, 34.776142715555636], [-77.35843912875838, 34.77607362250488], [-77.358515027446, 34.77602384488664], [-77.35850172154939, 34.7759656391029], [-77.3584832256673, 34.77592182602546], [-77.35834072193967, 34.775787811372794], [-77.3583195096779, 34.7756222496508], [-77.35819160825044, 34.77540362915573], [-77.35808077207432, 34.77509853041615], [-77.35805046248015, 34.77501613196169], [-77.35787065938382, 34.77490591993816], [-77.35769486305804, 34.77471789380355], [-77.35759243564829, 34.774570892652704], [-77.35732997154896, 34.77460970376245], [-77.35634432880092, 34.77474218068225], [-77.355351199984, 34.77488491848146], [-77.35536016808449, 34.77400494953683], [-77.35441834041444, 34.77458443212502]], [[-77.32357736502632, 34.756047968304905], [-77.32345363248771, 34.7559811350808], [-77.32308690090139, 34.75554254671223], [-77.32300146715022, 34.75547603587842], [-77.32279279944521, 34.75537449003045], [-77.32265435659193, 34.75538253296011], [-77.32237758985727, 34.755561228847995], [-77.32223092491768, 34.75574503345244], [-77.32229787505183, 34.755835253112885], [-77.32245880779095, 34.75602529311976], [-77.32270667017391, 34.75606734808385], [-77.32287041556359, 34.75592654475815], [-77.32320763340331, 34.75609861417778], [-77.32337531556483, 34.756109079401696], [-77.32341568186683, 34.756111598734506]], [[-77.48879675726451, 34.68233170823625], [-77.49008262069701, 34.68233169069906], [-77.49060045185271, 34.682391818030844], [-77.4916879065429, 34.6824560955698], [-77.49229123918093, 34.68270943072799], [-77.49305502565088, 34.683168586415874], [-77.49270494386147, 34.684215796723294], [-77.49212970521376, 34.68445924517277], [-77.49081615893127, 34.68500284386732], [-77.48937677758339, 34.68528210770529], [-77.48662662537555, 34.68500289016323], [-77.48661452282445, 34.68500000939435], [-77.48603654003432, 34.68233170582542]], [[-77.32081204185016, 34.74446829328414], [-77.3204835069477, 34.74451993375727], [-77.3206624706297, 34.74475049884318], [-77.32068573798823, 34.74477700972386], [-77.3207131531644, 34.744808246130965], [-77.32161052116597, 34.7455953687798], [-77.3216592272154, 34.74560511064455], [-77.32167817118386, 34.745609338507464], [-77.32175915367839, 34.745650680473986], [-77.32222278486591, 34.7457963978061], [-77.32234200437182, 34.74586847983876], [-77.32265514067556, 34.74580640721253], [-77.32272386205341, 34.74557495678581], [-77.32262802899925, 34.74545598957866], [-77.32266839687469, 34.74517969942414], [-77.3226889119847, 34.74481362151023], [-77.32237716059356, 34.744515624811974], [-77.3222422473554, 34.7436701193432], [-77.32162580847582, 34.744054407951644]], [[-77.31268135693364, 34.69418328761558], [-77.31268207805329, 34.69418345494298], [-77.3126823833938, 34.694183528950624], [-77.3126831151021, 34.69418367768852], [-77.31390970154456, 34.6940804754682], [-77.31401609332474, 34.694089131426416], [-77.3141214498137, 34.69398604014555], [-77.31424917542954, 34.69301882148273], [-77.31443833162206, 34.69296791144374], [-77.31442742725308, 34.6928413156279], [-77.31426586891527, 34.692855832299244], [-77.31409345018088, 34.69288066688003], [-77.31364835643771, 34.69307611535484], [-77.31266503049375, 34.69416763349158]], [[-77.3541003255097, 34.78323787707994], [-77.35446735987622, 34.78326462855789], [-77.35471112925875, 34.78326140859857], [-77.35481672177616, 34.78323393924083], [-77.35512762836208, 34.78305458617497], [-77.35522563442714, 34.78299946737939], [-77.35528905764687, 34.78295020831412], [-77.35540257606212, 34.782811796663054], [-77.35545185340654, 34.78272756353692], [-77.35540706159861, 34.78254735199606], [-77.35540900195019, 34.78243294561833], [-77.35534618068317, 34.78230240984877], [-77.35505592906958, 34.78220787208374], [-77.35448260103028, 34.7822999081977], [-77.35411213950971, 34.78242485418868], [-77.35346386924165, 34.782643493499386], [-77.3534365163666, 34.78265015319054], [-77.35340382388672, 34.78268965811411], [-77.35323148565274, 34.783174546212955], [-77.35386584233265, 34.78327246913417]], [[-77.43079568212768, 34.57914256397934], [-77.43051990328611, 34.57939717317086], [-77.4304189971466, 34.5793855599145], [-77.43014692673506, 34.57953362191189], [-77.43032950402265, 34.57971252157958], [-77.43052000456007, 34.57969572767916], [-77.4308622330347, 34.57991069207691], [-77.43105714201732, 34.5799807660809], [-77.43130816544354, 34.58009938222123], [-77.43138649834923, 34.58011921047271], [-77.43193015501262, 34.57994616143404], [-77.43209609843862, 34.57984648372749], [-77.432386466237, 34.57963446404931], [-77.43229310734043, 34.57943582834649], [-77.4321699048711, 34.579241180967834], [-77.43209585094971, 34.57915511802215], [-77.43173024417264, 34.578849429027954], [-77.43170172746879, 34.57882595927664], [-77.43151514863975, 34.57868766492788], [-77.43149358288258, 34.578690112769216], [-77.43130771334589, 34.57880211228086], [-77.4310359539422, 34.57898051871098], [-77.43096925434253, 34.57904992733132]], [[-77.42467191945084, 34.73285038186596], [-77.42478661055625, 34.73282763414097], [-77.42486515749061, 34.73280525140838], [-77.42504963249065, 34.732702877257886], [-77.42495865460636, 34.73248232607178], [-77.424708355288, 34.732583583318615], [-77.42465629937071, 34.732614701982115], [-77.4245839997659, 34.732669073521805], [-77.42446005733473, 34.73261780465968], [-77.42427328086353, 34.73263499512492], [-77.4242134541122, 34.73263895699422], [-77.42410108450795, 34.732650843229436], [-77.42393480234992, 34.73269679053311], [-77.42378200604921, 34.732681835209], [-77.42377923638796, 34.73268046408523], [-77.42377453140038, 34.73268054361995], [-77.42362445476324, 34.732661428446036], [-77.42352156603263, 34.7326302044911], [-77.42348682758367, 34.73271565856394], [-77.42346274221475, 34.73272105608652], [-77.42344579772003, 34.73281765367859], [-77.42344192516862, 34.732839730499734], [-77.42343725117756, 34.732866376146], [-77.42342467749148, 34.73293805626767], [-77.42346206041319, 34.73298653724815], [-77.42345903988574, 34.73303531797634], [-77.4234997368747, 34.73309215922761], [-77.42356322853104, 34.73307223198527], [-77.42363909326721, 34.73304842121872], [-77.42375802811871, 34.73301660001529], [-77.423846430265, 34.73300200044778], [-77.4239656871835, 34.73298198081303], [-77.42421469745173, 34.73283732730677], [-77.42433124815992, 34.73283143775874], [-77.42451999009425, 34.732890149787586]], [[-77.33241291931303, 34.57512434337167], [-77.3321539748892, 34.575123000400076], [-77.33201890344037, 34.575133948782664], [-77.33189868202288, 34.57514369308052], [-77.33151318457442, 34.57506957047828], [-77.33123103770957, 34.574958329451725], [-77.3309187785704, 34.574642670175336], [-77.33083741448374, 34.57451155361363], [-77.33057217304955, 34.57449446217135], [-77.33049532168579, 34.57515931867049], [-77.33056526728424, 34.575205804418275], [-77.33047475053763, 34.575253273399866], [-77.3306627648448, 34.57580331503965], [-77.3310353876106, 34.57577726145366], [-77.33123031336291, 34.575806177313986], [-77.33136161515405, 34.575798962710564], [-77.33188995387991, 34.575726095158366], [-77.33201842535755, 34.575699835632705], [-77.33212269728205, 34.575718677544344], [-77.33232000304642, 34.57570309573559], [-77.3324124370383, 34.57569838478157], [-77.33249857475948, 34.57568422223072], [-77.33270205954463, 34.57563524118397], [-77.33273464512897, 34.57553082113169], [-77.33276119128969, 34.57547804447751], [-77.33274667646049, 34.57538150988497], [-77.33271439174872, 34.57532146269796], [-77.33260984969895, 34.5752120017038], [-77.33254535587386, 34.57520298843744]], [[-77.33540131624764, 34.68183141839691], [-77.33542607937511, 34.68184007131317], [-77.33553964215132, 34.68189591416329], [-77.33555778876976, 34.681787744657655], [-77.3355085923207, 34.68174887878737], [-77.33547527201938, 34.68167075055235], [-77.33533925677851, 34.68181772024337]], [[-77.36183198097415, 34.78013589673992], [-77.36176137389991, 34.780098688021525], [-77.36172071023131, 34.78014392907312], [-77.36169188813363, 34.78015783044065], [-77.36130811896129, 34.78021791412364], [-77.36122203221134, 34.78027302401536], [-77.36114320358155, 34.78032258588077], [-77.36102188933232, 34.780435489711415], [-77.36099620956854, 34.78045656894513], [-77.36098521766212, 34.78046976687631], [-77.36097061260261, 34.78049442526181], [-77.36097513869342, 34.78059643220774], [-77.36097204018485, 34.78071695691332], [-77.36106356480455, 34.78077679680109], [-77.3611496070404, 34.78086617487788], [-77.3612775437925, 34.78091669850986], [-77.36150829370783, 34.78096995941682], [-77.3618980724228, 34.781000893610354], [-77.36213175536871, 34.781032600057685], [-77.36268047000246, 34.781062983323444], [-77.36225724735849, 34.78060056210799]], [[-77.4382167029723, 34.67832575098026], [-77.43807305702259, 34.67830231773926], [-77.43796634093655, 34.67823820254143], [-77.43759870244857, 34.678032551177076], [-77.43753572431855, 34.67794480683386], [-77.43713686663602, 34.67738909135194], [-77.43752664338567, 34.677169834610275], [-77.43774922310529, 34.67704418321123], [-77.43776082884753, 34.677008331526295], [-77.43779882771564, 34.67703509963354], [-77.43789071229553, 34.677017844038346], [-77.43813839636766, 34.676968686243384], [-77.43818796173281, 34.67695884893158], [-77.43847826520101, 34.676901231457336], [-77.43876800738173, 34.67715933231281], [-77.43911694171523, 34.67739871166286], [-77.43907586470243, 34.67750809540465], [-77.43903808277827, 34.67760082400575], [-77.43886885647076, 34.67799475308424], [-77.43874702941469, 34.678187377987726], [-77.43861197828056, 34.67839972025325]], [[-77.32427966781951, 34.695031017537744], [-77.32429263707934, 34.69490427581836], [-77.3242461376864, 34.694748041065694], [-77.32413519318985, 34.69476463105517], [-77.32389660246987, 34.6947352966567], [-77.32373983346722, 34.69474335629913], [-77.32343524204569, 34.694782277823165], [-77.32326674608635, 34.69510721609707], [-77.3233468662034, 34.695158862293674], [-77.32361966719085, 34.695229873285264], [-77.32426145219267, 34.69551508728814]], [[-77.44630422763875, 34.681712497189984], [-77.44629613740184, 34.68198742489761], [-77.44629538107446, 34.68243696302901], [-77.44649133391835, 34.68242734410484], [-77.44655127399213, 34.68240439180377], [-77.44666673074184, 34.68239824844413], [-77.44715672185454, 34.682342114185985], [-77.44739050856329, 34.68228073093476], [-77.44749326335346, 34.68228618810736], [-77.44773600821102, 34.68221302468835], [-77.44779701653258, 34.68219747673411], [-77.44784288127823, 34.6821850275649], [-77.44799704397006, 34.68217284780142], [-77.44822542005417, 34.68215000419704], [-77.44851580891546, 34.68195622946118], [-77.44851872419342, 34.68192762082248], [-77.44863036827589, 34.68146197069547], [-77.44803442835752, 34.681522460876025], [-77.4478527065651, 34.681540905687896], [-77.44770437436544, 34.68155596126781], [-77.4475115367911, 34.68157553371718], [-77.44742200746144, 34.681584620671124], [-77.44737140756763, 34.681599534192614], [-77.44701141365239, 34.68166119076757]], [[-77.35329632822213, 34.55098293395839], [-77.35341356002807, 34.55115002439708], [-77.35351137062277, 34.5513029537787], [-77.3535692829598, 34.551357797612326], [-77.35379933353757, 34.55144842931385], [-77.35387920231895, 34.55150736407552], [-77.35399508832282, 34.55147271448529], [-77.35407352132765, 34.551456300552026], [-77.35409367770575, 34.551453835121876], [-77.35416806836558, 34.55140947268419], [-77.35419321302244, 34.551393734488414], [-77.35419971403, 34.551389463657046], [-77.35431418790252, 34.551325025825676], [-77.35439260908673, 34.5512593318774], [-77.35446345510447, 34.55122908814798], [-77.35447676602632, 34.55115575542641], [-77.35457512542393, 34.55098077857248], [-77.35457888115775, 34.550967650504546], [-77.35458153890127, 34.55095835887715], [-77.3546865169266, 34.550707333456266], [-77.3545977347677, 34.550480932331034], [-77.35459805539438, 34.55047524558501], [-77.35458755334186, 34.55046453331842], [-77.3545051193515, 34.550243800566975], [-77.35446416656504, 34.55009926310586], [-77.35422254678045, 34.55011552206906], [-77.35397118791956, 34.549989554602185], [-77.35351362375212, 34.5499419782252], [-77.35343825930858, 34.550074200322605], [-77.35317984653985, 34.550276321347056], [-77.35327685837485, 34.55042060044207], [-77.35324426932027, 34.55053959267345], [-77.35320534130737, 34.550785483234414], [-77.35322501928528, 34.55091770569497]], [[-77.43130613570759, 34.5742466778727], [-77.4311350920159, 34.57363061322142], [-77.43062966797658, 34.573639958816784], [-77.43051798047144, 34.57368949112515], [-77.43001340231812, 34.5741526036914], [-77.42973026267086, 34.574444732069956], [-77.42970962349206, 34.574479502014114], [-77.42959452245283, 34.57451839467914], [-77.42915153447635, 34.57480780033641], [-77.42916293893312, 34.57519242960262], [-77.42948456513214, 34.57511845093229], [-77.42973050156954, 34.575177219755574], [-77.42990038392168, 34.575140270487026], [-77.43046062596504, 34.57518002660197], [-77.43051845112895, 34.57509326852616], [-77.4312591909388, 34.574328372090015], [-77.43130617179669, 34.57435134220291], [-77.43131209191209, 34.57427651091385], [-77.43131408870278, 34.57426981445197], [-77.43131476397062, 34.574260423268534]], [[-77.46081099458793, 34.59362168115614], [-77.4607084790645, 34.593429832516435], [-77.46040516956978, 34.59328900300562], [-77.45994428258824, 34.593219828836496], [-77.45965398477136, 34.593216860649434], [-77.45933615734329, 34.59322411800411], [-77.45919182527965, 34.59322576050889], [-77.45887876850837, 34.59325530427993], [-77.45882635933552, 34.5932818984911], [-77.45877772380955, 34.59352963705105], [-77.45879531206133, 34.59360644750703], [-77.4588327393313, 34.59366498589336], [-77.45890185702322, 34.59376068175162], [-77.45897150330245, 34.59381192652893], [-77.45905852445341, 34.59384604319154], [-77.45918029445234, 34.59386587090056], [-77.45937499611576, 34.59391617496516], [-77.4595613409117, 34.594046406621786], [-77.46002208829685, 34.594039132281196], [-77.46009507700732, 34.59407602014841], [-77.46016746851609, 34.594015895928976], [-77.4605488643562, 34.59381370050782]], [[-77.34287278247012, 34.74894241048856], [-77.34283771607018, 34.749008875592025], [-77.34282239625193, 34.749023791560155], [-77.34279368942796, 34.74906345817992], [-77.34283428295167, 34.749074882760674], [-77.3428648150464, 34.74903288471738], [-77.34287643966616, 34.74901637940697], [-77.34290186958548, 34.748980272284435]], [[-77.32651889929966, 34.74638503293865], [-77.32654125027334, 34.7463953923049], [-77.32664894193141, 34.74636721474534], [-77.32673870522328, 34.74623359960929], [-77.32677607172164, 34.746006966977916], [-77.3265574644187, 34.746072966210235], [-77.32655819082589, 34.746174459096416]], [[-77.31742370741124, 34.69368968268063], [-77.31680258958245, 34.69400693665872], [-77.31686182252707, 34.69412178924103], [-77.31717558963604, 34.694337819367014]], [[-77.33710230745018, 34.7688156944965], [-77.33709740705753, 34.76881036182823], [-77.33708109312143, 34.76881860253477], [-77.33709234324806, 34.768827778003285]], [[-77.32721413765502, 34.562526739794265], [-77.32710536200318, 34.56240591036544], [-77.32695310021653, 34.56256425120469], [-77.32710509027166, 34.562703640013446]], [[-77.42664165715277, 34.57586213208385], [-77.42685360814929, 34.575763745073495], [-77.42676180140492, 34.57557969668872], [-77.4266571537786, 34.57536755031889], [-77.42657861043787, 34.57525659432563], [-77.42654489727123, 34.57538377438707], [-77.42634277318481, 34.57558332082135], [-77.42618701917212, 34.5758576835634], [-77.42618577634842, 34.57586026409809], [-77.42618523754051, 34.575860821934356], [-77.42618479243048, 34.57586177369841], [-77.4261818894404, 34.57586395491833], [-77.42592913438469, 34.57604637520522], [-77.42593176718611, 34.57616974057739], [-77.42606929153042, 34.57617712024987], [-77.42618488984404, 34.5762041115211], [-77.42630421169152, 34.576139128159035], [-77.4264061772887, 34.57606692386779], [-77.42657879410959, 34.575892308844274]], [[-77.44600462729161, 34.59828720307177], [-77.44595449963727, 34.5983771244364], [-77.44605552098652, 34.5984731500074], [-77.44652350403152, 34.598660660958345], [-77.44668371814919, 34.59858831153399], [-77.44672997648793, 34.59840818938291], [-77.44628241076268, 34.59828360683222]], [[-77.425568444822, 34.57340195429412], [-77.42539611468271, 34.57333707022925], [-77.42502454452287, 34.573480557604306], [-77.42505834680685, 34.57353619483651], [-77.42533339209729, 34.5739282800117], [-77.42539628395, 34.57395635653118], [-77.4254554311823, 34.57390663081041], [-77.4254827740374, 34.57374565190496]], [[-77.34336547339053, 34.748199837446826], [-77.34326742076578, 34.748305006364646], [-77.34341826761631, 34.748246611905806], [-77.34346193529193, 34.74815543063944]], [[-77.33758042405344, 34.76920984190834], [-77.33750299045722, 34.769248140412884], [-77.33755737112942, 34.769289130149964], [-77.33779090778613, 34.769464586709205], [-77.33780486407561, 34.769468293253276], [-77.3379226800508, 34.76956037090295], [-77.33793382548843, 34.76955915308248], [-77.33808319233911, 34.769541402174625], [-77.33809285675953, 34.769532808035585], [-77.33808963152491, 34.7695192547542], [-77.33794354573857, 34.76954433132345], [-77.33785650167657, 34.7694433659386], [-77.33782421561314, 34.76943898286165], [-77.33761738056968, 34.769232459481955]], [[-77.4209610466292, 34.574177060241134], [-77.4210625628161, 34.57444305832938], [-77.4210712211206, 34.574467066146596], [-77.4211886274932, 34.574459428021264], [-77.4210850915064, 34.57449865213341], [-77.42122360018034, 34.574705479863056], [-77.42125964871396, 34.57485432542887], [-77.42127254145433, 34.574871889536325], [-77.42138728119828, 34.57493007867512], [-77.42138587753041, 34.574961660850065], [-77.42145667478331, 34.574993219988556], [-77.42153904813169, 34.57493953025047], [-77.42153808116994, 34.57492126935935], [-77.42152121154997, 34.574835960928155], [-77.42151363526861, 34.57477561821611], [-77.42147073983489, 34.574433961864116], [-77.42146885381612, 34.57441894024711], [-77.42172480899468, 34.57409277799751], [-77.42182107541333, 34.573943463544346], [-77.42151103423367, 34.57362259089454], [-77.42145944068413, 34.573567800423], [-77.4214550080408, 34.5735703208726], [-77.42145115204112, 34.573572326796274], [-77.4211493571147, 34.573709642142], [-77.42106243071592, 34.57384725531854], [-77.42095232754707, 34.5739503038227], [-77.42094937644985, 34.57406940969996]], [[-77.42486951026808, 34.57364597646853], [-77.42459501173619, 34.57395288161986], [-77.42460378794006, 34.573970833381594], [-77.4246083226883, 34.57398274494295], [-77.42463138151003, 34.57398681088382]], [[-77.42190514018989, 34.573872330366626], [-77.42224432177329, 34.57358532420829], [-77.42232786143016, 34.57378025894956], [-77.42252087437447, 34.573715763627945], [-77.42263827660835, 34.57346864413216], [-77.42273774976961, 34.573386425509845], [-77.4226381963975, 34.57313441316525], [-77.42250210826425, 34.57314254968975], [-77.42224425017524, 34.573281134929054], [-77.42215242818588, 34.573372022769654]], [[-77.32234624851559, 34.69509333217857], [-77.32236608108688, 34.69501173773915], [-77.32226759814918, 34.695023570800245], [-77.32211004687937, 34.695084680087014], [-77.32226545123514, 34.69508913202187]], [[-77.4569207323892, 34.74496586646562], [-77.45693057721937, 34.744972608351986], [-77.45694974610076, 34.74498573543456], [-77.4570043299849, 34.74498477518824], [-77.45697329880443, 34.74494392650316], [-77.45694172682816, 34.744683424119515], [-77.45678493445368, 34.744367542707096], [-77.45669332799831, 34.74416789310615], [-77.45635598935577, 34.74401644250801], [-77.45625917411427, 34.743968318315574], [-77.45615880755794, 34.74394454563971], [-77.45580242236603, 34.74386013223784], [-77.45578556206205, 34.74410032681165], [-77.45586995043858, 34.744205633203585], [-77.45590831324006, 34.74427231519951], [-77.45602693033746, 34.74436398905363], [-77.45609656964365, 34.74441696368191], [-77.45612509251556, 34.74443200435956], [-77.45617049069865, 34.74446100721212], [-77.45639535783826, 34.744606079719475], [-77.45660683585335, 34.744650435515645], [-77.45669184081052, 34.74468948973371]], [[-77.3610482247831, 34.61212025874087], [-77.36107408146738, 34.612121423710015], [-77.36107537769189, 34.61208712212671], [-77.36098858471983, 34.61201122252406], [-77.36096040282429, 34.611988653243685], [-77.36093429900707, 34.612019035646014], [-77.3609603810815, 34.61203472794451]], [[-77.40089392011686, 34.58099874838161], [-77.40087050162296, 34.58098263802038], [-77.40082951864288, 34.5809460594038], [-77.40080911511336, 34.58094483879433], [-77.40077199556217, 34.58101558471786], [-77.40077165609867, 34.58101602549024], [-77.40077161508468, 34.58101639718631], [-77.40077175796289, 34.58101663257266], [-77.40077199554239, 34.581016781691176], [-77.40077275007849, 34.581017046452736], [-77.40082124791736, 34.58104216031667], [-77.40084878369103, 34.581028662817204], [-77.40087050103645, 34.581020863181706]], [[-77.28647298520747, 34.627403104086184], [-77.28485313614411, 34.62732331975122], [-77.28316302266435, 34.62765474757916], [-77.28242911942314, 34.62800488154739], [-77.2792030725275, 34.62713636789894], [-77.27798080458702, 34.625847433823886], [-77.27788453101044, 34.62271961434584], [-77.27931606992931, 34.62036944106166], [-77.2802447053205, 34.6195844923122], [-77.28060064151242, 34.61886977601462], [-77.28136925392826, 34.61529416790117], [-77.28291788096882, 34.61312526737585], [-77.2831463821612, 34.6116141298496], [-77.28319019451396, 34.60971227510019], [-77.28324606092798, 34.60903650510076], [-77.28364508511577, 34.608498726481514], [-77.28553150449248, 34.60850273729147], [-77.28674314659733, 34.60852275344654], [-77.28923641485483, 34.61085393940115], [-77.2906881047043, 34.60798284203742], [-77.29180120788403, 34.60769271817657], [-77.29321162611706, 34.6103421634293], [-77.29246502375612, 34.61181876538461], [-77.29376549409477, 34.61298180173679], [-77.29491161539167, 34.61823544295065], [-77.2960661685705, 34.61939000082726], [-77.29854827785289, 34.62187206685023], [-77.29926793482639, 34.62259170595362], [-77.30011331580033, 34.62427486037645], [-77.29972799267803, 34.624887623084085], [-77.29830977506576, 34.6257894906641], [-77.29740872391673, 34.62609120707164], [-77.29655415822486, 34.62581612937484], [-77.29249706650707, 34.627135939487175], [-77.29130125530997, 34.62702969725956], [-77.28817863863267, 34.62700199071026], [-77.28738321530216, 34.6271714736344]], [[-77.29987846953154, 34.651191790853346], [-77.29993206050294, 34.65125131141285], [-77.29995123021965, 34.65130359543938], [-77.29991247086825, 34.651361395696874], [-77.299879051806, 34.65131347726197], [-77.2998740445137, 34.65128397317938]], [[-77.27310855923051, 34.641472531563416], [-77.27100282833352, 34.63963872830763], [-77.26940744089524, 34.639708630486325], [-77.26693574491492, 34.63919358721559], [-77.26404705719547, 34.63851467855319], [-77.26222652849255, 34.63864128419589], [-77.2589380830924, 34.6385773244041], [-77.25674161766759, 34.640346877465845], [-77.25769713676405, 34.643578097140846], [-77.25617292847494, 34.65036499858814], [-77.2561454744669, 34.65047588304554], [-77.25611430931359, 34.65054554154065], [-77.2561143109592, 34.65071502647189], [-77.25611426787813, 34.657296808527505], [-77.25538973519149, 34.660455719291086], [-77.25351966873846, 34.662715529661234], [-77.25290778204052, 34.663478426421776], [-77.25122295996611, 34.6640400284187], [-77.24995504555369, 34.66488879635213], [-77.2491743346638, 34.66533112764556], [-77.24904255296039, 34.66594659114182], [-77.24856631502155, 34.665619786894354], [-77.24822815450341, 34.66512444212047], [-77.24453931137474, 34.6644048494764], [-77.24357374010013, 34.664216461963385], [-77.24140333022268, 34.66340812888606], [-77.240812660177, 34.66321751123708], [-77.24055127293578, 34.66311311911666], [-77.23981745764829, 34.66270124381518], [-77.2371683975209, 34.66116321877846], [-77.23532937648598, 34.66009542663711], [-77.23454152927542, 34.65920655375129], [-77.23346531584949, 34.658430128374775], [-77.23339320043695, 34.6572550722086], [-77.23350189964957, 34.65665634796211], [-77.23348293122173, 34.6563361611393], [-77.23416407274397, 34.65471434990956], [-77.23432463813364, 34.65182510322305], [-77.23553707221748, 34.65105173692285], [-77.23763824687143, 34.64951185622636], [-77.23821761036358, 34.6490146417138], [-77.23984252394891, 34.647620118670474], [-77.24068399730376, 34.646960478373245], [-77.24341019558891, 34.64413032990466], [-77.24341050652689, 34.64412548712464], [-77.2425734549836, 34.64150709634065], [-77.24202589372481, 34.640250514490404], [-77.24021860187011, 34.637119408396856], [-77.23985656198693, 34.63664532658304], [-77.23973063584964, 34.636298973983834], [-77.23892530672119, 34.63487884905306], [-77.23859235019003, 34.634323917666876], [-77.23852145630207, 34.6342057618213], [-77.23885481477724, 34.6331497821102], [-77.23903044309776, 34.632473039474014], [-77.23927530194366, 34.63231955046212], [-77.24101075379475, 34.63147412214106], [-77.24325767762602, 34.63111848342265], [-77.24616238264919, 34.63079576076116], [-77.25005841294251, 34.629889059496755], [-77.2507043126285, 34.62973874218652], [-77.25095040358156, 34.62979401817374], [-77.25234015068449, 34.62975019142394], [-77.25674292222244, 34.629685100208064], [-77.2582046928003, 34.626440798032334], [-77.25830418575786, 34.625814922372825], [-77.25969808950494, 34.623341795817055], [-77.26022551064155, 34.62282901156904], [-77.26022802807603, 34.62226715014342], [-77.2612989344303, 34.62213829494115], [-77.2631470934212, 34.62120895411238], [-77.26561178513006, 34.6219275413224], [-77.2658734155677, 34.62203966174622], [-77.2659702636142, 34.622075794942354], [-77.26622601208592, 34.6221590163279], [-77.26795069468493, 34.622746491838], [-77.26862204539641, 34.622981532232664], [-77.26994868825034, 34.623382479661515], [-77.27165607044165, 34.6253496473836], [-77.27401586037047, 34.62451392260356], [-77.27622640284464, 34.62754342333546], [-77.27669097697137, 34.628397033031476], [-77.27783241656101, 34.63335485889114], [-77.2778428495029, 34.63407386434148], [-77.27656499006768, 34.63708614389077], [-77.27636000803301, 34.63732032936752], [-77.27610086770069, 34.6387344521346], [-77.27539943054647, 34.641159383120005], [-77.2750527637603, 34.64232541245794]], [[-77.36587311046583, 34.713204957735755], [-77.36587883243742, 34.71325802111554], [-77.36580194829618, 34.71329500479101], [-77.36572822679622, 34.71328680992234], [-77.36569122589148, 34.713229944615726], [-77.36556740914884, 34.71298209570602], [-77.36442187211406, 34.711454772060925], [-77.36427135893072, 34.71125409460052], [-77.36407531508385, 34.710992702683285], [-77.36309629896454, 34.70968731327138], [-77.36288876668138, 34.7091642370278], [-77.36262536766336, 34.70773744375441], [-77.36178158727586, 34.70686242182552], [-77.36207369288347, 34.70592866750084], [-77.36208079463772, 34.704787173958174], [-77.36345765107298, 34.7048699592612], [-77.36420354218242, 34.704998463298054], [-77.36584995422722, 34.704878048792025], [-77.36618961921431, 34.705363225040216], [-77.36714424659678, 34.705889032780114], [-77.36775052017049, 34.706580639887015], [-77.36831314907323, 34.707020996928804], [-77.36833000867114, 34.70777188311461], [-77.3684137402349, 34.70798196202813], [-77.36838478804862, 34.7080881980593], [-77.36827423504383, 34.70897590909244], [-77.36797140565088, 34.71000675248547], [-77.36746666167285, 34.71103644200497], [-77.36591240489808, 34.71314506468166]], [[-77.32449965715088, 34.707076293178964], [-77.32458045199527, 34.707102088798784], [-77.32483669134243, 34.707138837750506], [-77.32741076204441, 34.70807826804559], [-77.32871096886916, 34.70906679541745], [-77.33119831652681, 34.70805115910572], [-77.33157875131039, 34.708025633565846], [-77.33254650390114, 34.70803144436415], [-77.3336846099282, 34.7084349177189], [-77.33485808027646, 34.70865635454656], [-77.33773814807682, 34.70874228766876], [-77.33833476913162, 34.70891578618094], [-77.33881055596801, 34.70876924643722], [-77.340853704265, 34.7084889863616], [-77.342074655159, 34.70867412521514], [-77.34179872775474, 34.70962381443867], [-77.34250479753462, 34.71104927475826], [-77.34250478372874, 34.712514125933716], [-77.34248190808789, 34.71540481467105], [-77.34248699601503, 34.71805864723242], [-77.34250489746768, 34.720312071437064], [-77.3425048910168, 34.72169374890045], [-77.34118472278286, 34.72711774634703], [-77.34060914764709, 34.728370174427596], [-77.33699081168058, 34.73002482828924], [-77.33617907961785, 34.72971223234428], [-77.33477245545157, 34.729170570241585], [-77.33503541201132, 34.72743851919475], [-77.33267094393986, 34.728403683185235], [-77.32983011001994, 34.72726738860818], [-77.32763736147822, 34.72682137495115], [-77.32401936738201, 34.7252031759262], [-77.32216073078447, 34.724726510234944], [-77.3185694797363, 34.723593105976036], [-77.3167253783688, 34.72259991730757], [-77.31551715944357, 34.72149085920793], [-77.31199736905337, 34.72167154853085], [-77.30862481808882, 34.722521960663], [-77.30555861338954, 34.72278488253312], [-77.30256828364968, 34.720872533038765], [-77.3043975992979, 34.71773586008807], [-77.30292250833291, 34.71538092991241], [-77.30235943291635, 34.71472870495177], [-77.3015043600148, 34.71423298056163], [-77.30021322242801, 34.71121885318284], [-77.30009650744039, 34.71052680943356], [-77.30073833055835, 34.709670351799765], [-77.3023516256711, 34.706319373843456], [-77.30481798578913, 34.70508617445364], [-77.30580319293703, 34.70548191417059], [-77.30604176975348, 34.705593647868376], [-77.30613660226538, 34.70580131427136], [-77.3098330701677, 34.708095044020624], [-77.31079055741407, 34.70824750833199], [-77.31932355211808, 34.70773620763387], [-77.3195525005363, 34.70761671197946], [-77.31965279654888, 34.7077386633232]], [[-77.30520677861017, 34.58835109834428], [-77.30671118046395, 34.58736861238267], [-77.30746571603187, 34.586851983670336], [-77.30841542813391, 34.58717151166158], [-77.31008155438161, 34.587134070920605], [-77.31141390789782, 34.58723815349979], [-77.31500201627559, 34.588476251098136], [-77.31534243587691, 34.58864012576802], [-77.31563065871934, 34.58928155081149], [-77.31739220386842, 34.590222946634015], [-77.31655664636821, 34.58825596943479], [-77.31606611282093, 34.58767071318154], [-77.31606436259429, 34.584930428615095], [-77.31599032318621, 34.58437068452377], [-77.31681448718811, 34.58288311913199], [-77.31754430206328, 34.58247545703454], [-77.31861484428481, 34.58286039048642], [-77.32078167993703, 34.580856756038386], [-77.32152396851531, 34.58048560100012], [-77.32177065762116, 34.57929247130109], [-77.32249717142639, 34.57459571382563], [-77.32261302711495, 34.57380117646057], [-77.32304297257728, 34.57237565127443], [-77.32390367581087, 34.570219491724444], [-77.32412868345966, 34.56932137263992], [-77.32434497160482, 34.56845796020403], [-77.32493365588854, 34.5677290762377], [-77.32541256120889, 34.56712187959646], [-77.32619725678367, 34.5664936840781], [-77.32637929388468, 34.56632577637443], [-77.32651093665878, 34.56621871046833], [-77.3266400961236, 34.56629079950983], [-77.32665925491875, 34.56642729998675], [-77.32737220282695, 34.56709404668694], [-77.32755317678787, 34.56742313158293], [-77.32789475335167, 34.56794790817992], [-77.32784744532486, 34.56821070208068], [-77.32777393786971, 34.56932929180601], [-77.32770695525257, 34.56967303945015], [-77.32742875322147, 34.570418033212114], [-77.3274755814252, 34.570555361283056], [-77.32744162141127, 34.570718454173196], [-77.32751378801554, 34.57139894192827], [-77.3270308398055, 34.572034272492054], [-77.32692895854653, 34.57318112130805], [-77.32677324831978, 34.57349330564466], [-77.32668937345429, 34.574713058110255], [-77.32691709468052, 34.57488096996448], [-77.32692762657099, 34.57533740619782], [-77.32688698299367, 34.576583432279186], [-77.32672706532263, 34.57854952068767], [-77.32236950304113, 34.58062868828965], [-77.32670846981023, 34.58147565560681], [-77.32807277167058, 34.581932719129554], [-77.32866275863314, 34.582484685439496], [-77.32996138487242, 34.582934254459154], [-77.3304983260777, 34.583638508571994], [-77.33416729816567, 34.5857261094843], [-77.33427282993331, 34.58582021709868], [-77.33437414500406, 34.58596425965374], [-77.33819541868208, 34.58782113429679], [-77.34067758304099, 34.58800046189531], [-77.34317373142684, 34.587119766939075], [-77.34383070187711, 34.58715250947518], [-77.3441594013314, 34.58733157639814], [-77.34698288523447, 34.58763388973604], [-77.34921747446161, 34.58794699133158], [-77.35013525011937, 34.58786255870481], [-77.35130843423487, 34.58792144685831], [-77.35328775012307, 34.58788951592952], [-77.3546626760025, 34.58808978930002], [-77.3564398222541, 34.5886900541142], [-77.35702348812708, 34.5886027359918], [-77.35693309868172, 34.58924452246636], [-77.35655987194802, 34.58942800359216], [-77.35643920885194, 34.58982103387262], [-77.35446729960836, 34.590871967132415], [-77.35414128841356, 34.593042680130495], [-77.35422984797825, 34.595406723273726], [-77.35565043510135, 34.596221922232004], [-77.35643418914502, 34.599140483907085], [-77.3564988063422, 34.59942648019588], [-77.35801064216935, 34.59916427085508], [-77.35811975728318, 34.59926298142788], [-77.35810569381994, 34.59936750995077], [-77.35816250545756, 34.60010593325907], [-77.35800990167927, 34.600599584447735], [-77.35749520104193, 34.600201967647976], [-77.35760113566542, 34.59977840190818], [-77.35674152564474, 34.59979276728039], [-77.35643386493471, 34.59974583897626], [-77.3563358682161, 34.59962533153269], [-77.3563052726557, 34.59952410279889], [-77.35328172837322, 34.59831471591366], [-77.35210612468072, 34.59799844429531], [-77.3498636586445, 34.597054464173674], [-77.3479265066033, 34.59631048247955], [-77.34697747705798, 34.59589907348959], [-77.34433592667658, 34.59500327539512], [-77.3438252669548, 34.595003272935], [-77.34339799524156, 34.59504828332588], [-77.34067228711291, 34.59525808208552], [-77.33827080509222, 34.5961351737204], [-77.33436490853578, 34.59743715488362], [-77.32866056193927, 34.599452787961305], [-77.32805891639748, 34.597640588343694], [-77.32500989656214, 34.59734227900394], [-77.32533512404319, 34.600562690243585], [-77.31917837119326, 34.60257152698329], [-77.31861494663829, 34.604164631977056], [-77.31694564099365, 34.60846508264631], [-77.31558906087308, 34.60989658311816], [-77.31470947577581, 34.610220334305126], [-77.31310707803314, 34.611422062577454], [-77.31248406345148, 34.61188930829555], [-77.31221873102191, 34.6120868177824], [-77.31013615920799, 34.612947490986016], [-77.30771444530367, 34.61321735881818], [-77.30753039134555, 34.61327927172683], [-77.3048797877525, 34.61226799224653], [-77.30293625726004, 34.61319171193763], [-77.30010938259497, 34.610772105846024], [-77.299768029625, 34.605789638657406], [-77.29892171968399, 34.604183115677856], [-77.29916180347654, 34.60230714002534], [-77.29965449859618, 34.60034288074618], [-77.3016402047374, 34.59705913178758], [-77.30167863073328, 34.59689457900791], [-77.3017563157638, 34.59667947078058], [-77.30264225819897, 34.59245486905594], [-77.30324303661507, 34.590087861239816], [-77.30445522983682, 34.58880932297416]], [[-77.25583844187516, 34.696117891427974], [-77.25441570323629, 34.69727556917576], [-77.25520247202275, 34.69829891815758], [-77.25635042018729, 34.69965427542581], [-77.25689051143668, 34.70072425915934], [-77.25702402767969, 34.700818234133536], [-77.25831549252753, 34.70129592458805], [-77.25893202933746, 34.70193749674216], [-77.26140307210724, 34.70022045699942], [-77.25973979705276, 34.69916692273594], [-77.2585773966467, 34.697943796479755], [-77.25703809009534, 34.696917668228714]], [[-77.2999241756921, 34.72568194204075], [-77.30021748659024, 34.726105547213045], [-77.29971706949758, 34.726393392154705], [-77.29952409286243, 34.72620041773364]], [[-77.47763252693946, 34.73212929058481], [-77.47841800084952, 34.73331170394259], [-77.4797688895846, 34.734765767584264], [-77.4761257003315, 34.7373455037205], [-77.47570379717209, 34.737485943529705], [-77.4752845696041, 34.73767208337503], [-77.4711055665764, 34.736968972192486], [-77.47021126922061, 34.736738824844224], [-77.46865586710624, 34.73657179263999], [-77.46748611158034, 34.736028979842054], [-77.46643875641625, 34.735369833114824], [-77.46603189348227, 34.73491212544284], [-77.46542602803822, 34.73423052667255], [-77.46489326649362, 34.733601680565926], [-77.46464182416386, 34.73271432470646], [-77.46434234106299, 34.73204585949911], [-77.46418772594188, 34.73064484800743], [-77.46455012370505, 34.72945298202801], [-77.46506183204868, 34.72817378891785], [-77.46556186851613, 34.726909923862216], [-77.46611578926839, 34.72552798102933], [-77.46624795476183, 34.72504093407525], [-77.46682597520129, 34.72515674003999], [-77.46859202415342, 34.72587857153498], [-77.46912175776363, 34.72608545566431], [-77.47030860528096, 34.7259829154968], [-77.47320522644276, 34.727431198875806], [-77.4737784636909, 34.72771780856268], [-77.47399794140748, 34.72801399396954], [-77.47423701780336, 34.72836342047264], [-77.47594745704001, 34.73077160172891]], [[-77.29507177937259, 34.706657094200345], [-77.29611893938338, 34.706916783833364], [-77.29732495335966, 34.70700721721269], [-77.29757680912113, 34.708879760074126], [-77.29519524470888, 34.70762671561098], [-77.2905524887559, 34.70850426345597], [-77.2902640906513, 34.7079730634866], [-77.29105052222755, 34.70679380196555]], [[-77.5309629480541, 34.70763189087749], [-77.53455477622141, 34.70421406409257], [-77.53478474984021, 34.703754115832425], [-77.53560914852538, 34.702105155714044], [-77.53581350929669, 34.70169649197173], [-77.53650845179713, 34.70030682207292], [-77.53485588445083, 34.69969972960668], [-77.53463934495895, 34.69947127426134], [-77.53446651363757, 34.69941283171321], [-77.5325853132947, 34.69909986181072], [-77.53124581116165, 34.69996196300681], [-77.53037044545768, 34.70027864048276], [-77.5304640364313, 34.700918575624385], [-77.5309518786786, 34.701894306448644], [-77.53264838303795, 34.703549412288965]], [[-77.43361904906098, 34.67597964418078], [-77.43360302062288, 34.67612941475793], [-77.43360056393965, 34.676152371311176], [-77.43359315914586, 34.67617700400898], [-77.43355752976808, 34.676192319695026], [-77.4335572301278, 34.676148529678436], [-77.43355662838601, 34.6761370052601], [-77.43355421011921, 34.676113324627835]], [[-77.31920710630617, 34.6734023816953], [-77.31760021778204, 34.67555879242519], [-77.31640367995956, 34.675558791099775], [-77.31609072891527, 34.67421939577889]], [[-77.42570947555659, 34.732091995083366], [-77.42571324698994, 34.732090563639034], [-77.42589073482951, 34.73201424124134], [-77.42591252602635, 34.732011974718674], [-77.42605892362192, 34.7320038868546], [-77.42614281400643, 34.732106626448505], [-77.42614377972698, 34.73213870567603], [-77.42612427270646, 34.73220887485932], [-77.42611253428599, 34.7322358089187], [-77.42606073910957, 34.73229202649539], [-77.42597362084067, 34.732298525900106], [-77.42595164775207, 34.732300737727265], [-77.42592216800331, 34.732309034413674], [-77.4258511762194, 34.73232353347213], [-77.42569467661667, 34.73236928281585], [-77.4256278249526, 34.732385609774845], [-77.42556200708884, 34.732322908738226], [-77.42569297589205, 34.73210355152774], [-77.42570517433052, 34.732093418757145]], [[-77.32280256937307, 34.67506651275676], [-77.32132877539662, 34.67492294826175], [-77.32083833179837, 34.67332376930965], [-77.3225921837134, 34.67395105230867], [-77.32455235399235, 34.673946094641764], [-77.32458769684095, 34.674032007569686], [-77.32484444394824, 34.67432412815629], [-77.32444807271783, 34.67430488014283]], [[-77.41549900617024, 34.55782468517823], [-77.41559850677582, 34.5578005856684], [-77.41633201573023, 34.55749519487303], [-77.41653121686278, 34.557724336756166], [-77.41688331186617, 34.55792848455135], [-77.41684493734415, 34.558231754129494], [-77.41658549832695, 34.55829257323784], [-77.41633208376108, 34.55794003298581], [-77.41558024504042, 34.55790050296418], [-77.41553309004787, 34.55788055906242]], [[-77.4509168589616, 34.68276590126686], [-77.45090526067207, 34.68279149651291], [-77.45081407287336, 34.68300947936466], [-77.45080775724053, 34.68301123682875], [-77.45077381381415, 34.68302224468506], [-77.4506313293749, 34.68306742354822], [-77.45061575155363, 34.683065947892274], [-77.45051536389482, 34.68301856324685], [-77.45049566737416, 34.6829825848518], [-77.45046096546633, 34.68292967269307], [-77.4504160588584, 34.682870356006845], [-77.45044576493277, 34.68278817206002], [-77.45050575538288, 34.68262220253691], [-77.45065776314462, 34.68240106659083], [-77.45066106231427, 34.682392452329395], [-77.45067180739088, 34.682395201866036], [-77.45090843111072, 34.6826629614863]]]]}, "type": "Feature", "id": "demo14", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.27103610812996, 34.715986059462104], [-77.27151778249966, 34.71443385881423], [-77.27123064630447, 34.71343362609651], [-77.27229352088365, 34.70688095031424], [-77.27309948095964, 34.7064204326544], [-77.27955425122695, 34.70310505991705], [-77.28261176463205, 34.702872330369686], [-77.28721445346636, 34.70115276294006], [-77.28497793088073, 34.70479709031129], [-77.28608595705681, 34.70517177188386], [-77.28661658476636, 34.70556963721442], [-77.28971702622013, 34.70414908534742], [-77.28905985049494, 34.70132203671073], [-77.28867253103218, 34.70003221158417], [-77.29046512618086, 34.69624922524882], [-77.29015023706515, 34.69574468706402], [-77.29000234867218, 34.69394193013619], [-77.28973978531806, 34.69290831211621], [-77.29000239067007, 34.69241374598698], [-77.28983603123518, 34.691791468587745], [-77.29006103465736, 34.69045633830595], [-77.29121500454963, 34.68977661501168], [-77.29346016346067, 34.689991377344036], [-77.2935202627266, 34.69000246035347], [-77.29354298653845, 34.690005862855735], [-77.29357728841974, 34.69000247470301], [-77.29596016759577, 34.689928581878526], [-77.29898712897399, 34.689694295987664], [-77.30330333963107, 34.68669485590804], [-77.30563247293189, 34.685373447909406], [-77.30733790623182, 34.68374424549497], [-77.30869535079351, 34.68298262023178], [-77.30874625577131, 34.68205085233877], [-77.30887736546248, 34.6784517886194], [-77.30885731089137, 34.678210304114224], [-77.3088423122185, 34.67813884201585], [-77.30886076789987, 34.678020710814074], [-77.30819173848849, 34.672417428514336], [-77.30687358561829, 34.670610716088355], [-77.30647188875955, 34.670439197849014], [-77.30622501491057, 34.67006546843731], [-77.30402014860687, 34.666109551398925], [-77.30288908696174, 34.66440462517695], [-77.30130763918048, 34.66229602040737], [-77.29928414877392, 34.66100326260576], [-77.29738465088639, 34.66230971257427], [-77.29701881473484, 34.662481020410894], [-77.2965034999563, 34.662618305002574], [-77.2946216556888, 34.66330126041197], [-77.29323363504321, 34.66377254383032], [-77.29106722077948, 34.66418984029251], [-77.28972818460186, 34.66444778877363], [-77.28847189936593, 34.66466480131008], [-77.28615610767613, 34.66472280288559], [-77.28466748541591, 34.664760059841754], [-77.28222531375346, 34.664169547023654], [-77.2817123112997, 34.66433196448225], [-77.27951011138771, 34.664589634663855], [-77.2763377365251, 34.66577997788831], [-77.27463493618274, 34.66582853251599], [-77.27209799369052, 34.66538895165732], [-77.26923017259652, 34.664421979979004], [-77.26805917442411, 34.6637943538484], [-77.265127643266, 34.66281723208293], [-77.26408749630214, 34.662470510537325], [-77.26363062873385, 34.66204078083289], [-77.26307740002677, 34.66309727930835], [-77.26324180432249, 34.664140891203466], [-77.2628119636208, 34.667394518684986], [-77.26092517628275, 34.668716295681236], [-77.2600107684524, 34.669555621838], [-77.25952494833345, 34.66966477592995], [-77.25815504661625, 34.66960293513281], [-77.25743496284669, 34.66948509994147], [-77.25603524080697, 34.66920519708807], [-77.25420759668818, 34.666156076580556], [-77.2525783584741, 34.66851382698902], [-77.25133567569634, 34.66931791161267], [-77.24987655899683, 34.670118622336474], [-77.24924985816412, 34.670745319560694], [-77.24878228631555, 34.67180003572755], [-77.2476009244377, 34.6745471519606], [-77.24612249743703, 34.67696949180862], [-77.24567839355272, 34.67897471396713], [-77.24481919828482, 34.68248061807213], [-77.24477152763741, 34.68334129655275], [-77.24507722864173, 34.68374353326179], [-77.24585217385277, 34.68566194260591], [-77.2464106065477, 34.68667197698266], [-77.2465593721821, 34.68826934899711], [-77.24816573548017, 34.689576617427875], [-77.24889578014816, 34.69023154519471], [-77.24911670182682, 34.69141078282379], [-77.24849744835339, 34.693082305584554], [-77.25078814318768, 34.69387195700361], [-77.24740768829969, 34.69500473332242], [-77.25055692930812, 34.69780211688129], [-77.25436188576947, 34.70118154567532], [-77.25626448054408, 34.70287121032649], [-77.25816715302366, 34.70456084180638], [-77.26197273112473, 34.70794000523018], [-77.26577862012665, 34.71131903590245], [-77.26958482008342, 34.714697933778865]], [[-77.30796998421744, 34.748750928765936], [-77.307902649574, 34.74844692440022], [-77.30814472986643, 34.74811011357395], [-77.3101938472981, 34.74423445921768], [-77.3104572979336, 34.7431805532152], [-77.31069844348215, 34.7422159715922], [-77.31024553337855, 34.74055163265942], [-77.31017899574907, 34.7403376503453], [-77.31024579217515, 34.74019065922865], [-77.31008421608502, 34.74016373346879], [-77.30888574857205, 34.7380834590174], [-77.3064659222597, 34.736947014146935], [-77.30656539669505, 34.73671430719811], [-77.30585888914243, 34.73666190791381], [-77.30596569585686, 34.73717518077758], [-77.30479952384275, 34.741073899582766], [-77.304920875596, 34.74143915176055], [-77.30567542130967, 34.74370288582274], [-77.30669217697395, 34.74471371594805], [-77.30710142740406, 34.74798084651542], [-77.3076639340478, 34.748479599022524]], [[-77.3879047803339, 34.77463496180107], [-77.38796300370645, 34.7742498329621], [-77.38630601906624, 34.770935972514636], [-77.38536351970644, 34.7685526298158], [-77.38505628408213, 34.7683668131491], [-77.38328472514786, 34.76599673926409], [-77.38443754747341, 34.76854354601515], [-77.38403355661055, 34.76910657582644], [-77.38040441735605, 34.77160620081947], [-77.37999663908735, 34.77259669137336], [-77.37955996598114, 34.7781103677483], [-77.38259587504663, 34.77684612511951]], [[-77.50954268549401, 34.72387897700779], [-77.50622621772754, 34.721897503624646], [-77.50319133880103, 34.722578783811976], [-77.50092551002413, 34.72249762049031], [-77.49856029644052, 34.72343813807402], [-77.49751075861747, 34.72526082327245], [-77.49749758281955, 34.72534093582555], [-77.49749753324006, 34.7275383869666], [-77.49577654161212, 34.7296322245749], [-77.49929049551162, 34.72816391340189], [-77.5022060382906, 34.72694549387504], [-77.505121492128, 34.72572700793548]], [[-77.53041425669, 34.71515174620955], [-77.5331663376498, 34.71173748022372], [-77.53480311372294, 34.711691829927105], [-77.53919987884883, 34.710786247812024], [-77.5397748212877, 34.70991896828104], [-77.53859152709562, 34.705621307277], [-77.53783737353496, 34.70288194898774], [-77.53708327522848, 34.70014258274434], [-77.53632923216598, 34.69740320854824], [-77.53629499526672, 34.69727881933787], [-77.53388701877205, 34.69672983575746], [-77.52825002118871, 34.69706265480275], [-77.52785122721832, 34.697198417978186], [-77.52734703912729, 34.697408982212636], [-77.52700319363746, 34.69711274994267], [-77.51943641687826, 34.697222714686376], [-77.51636528666971, 34.69619900186875], [-77.51480078617546, 34.69567749942866], [-77.51320239872985, 34.69514471229097], [-77.5116614484196, 34.69463106206412], [-77.51016541774028, 34.69413238795985], [-77.50825098822816, 34.69360376214331], [-77.50685191661651, 34.69319244482688], [-77.50559208958246, 34.69281222872878], [-77.50276764136717, 34.69221449035836], [-77.50228083955375, 34.69146215694951], [-77.50101318397279, 34.691471122936], [-77.50028101869827, 34.69144699422712], [-77.50083395947973, 34.69081886439146], [-77.50145972903721, 34.690193091878676], [-77.50224308748327, 34.689409686561085], [-77.50331208719165, 34.68836266910715], [-77.50294398680398, 34.68625508980703], [-77.50328041496147, 34.68587474084887], [-77.50231835081846, 34.68409555135936], [-77.50218157755084, 34.68351820224396], [-77.50203352240462, 34.68296262932516], [-77.50179721578188, 34.68107263004814], [-77.50133539153187, 34.68080522085856], [-77.501324924735, 34.67799001271296], [-77.50122906834628, 34.67788106233494], [-77.50132141995924, 34.67776023024416], [-77.50132226838211, 34.67727336030247], [-77.50123264340392, 34.67640278600255], [-77.50118650046666, 34.67523620142146], [-77.50112445821524, 34.6749564053914], [-77.50099795487455, 34.67472968628457], [-77.50043062597287, 34.67367722470365], [-77.50025482084973, 34.67338762103147], [-77.49925890380466, 34.67319665404148], [-77.49729919052959, 34.67387908633885], [-77.49632524285065, 34.67440627146881], [-77.49316079726633, 34.67491114015433], [-77.49186798352355, 34.674916283222075], [-77.48799480491142, 34.67472775018166], [-77.48598468211944, 34.67479156457871], [-77.48165664113219, 34.67584778342005], [-77.48001653588322, 34.676332318561904], [-77.47746345127123, 34.679337517204736], [-77.47739500733728, 34.68172771578122], [-77.47734926832834, 34.68195185162158], [-77.47703777268472, 34.684143248414586], [-77.47636431858129, 34.68497598734281], [-77.47545408854288, 34.68766609684915], [-77.47518785773087, 34.688265835191025], [-77.47511649943279, 34.688426609907005], [-77.47514699998864, 34.68876050487424], [-77.47474609230242, 34.688865555470954], [-77.4733315022329, 34.68900257889417], [-77.4694146766498, 34.68957671887745], [-77.46833445452305, 34.68959030858154], [-77.46684772166192, 34.689590271031385], [-77.46613372028898, 34.68843781418508], [-77.46491664549356, 34.6874026891537], [-77.46420283048383, 34.685672734642665], [-77.46443645642171, 34.68469563681216], [-77.46441985777611, 34.68395074287608], [-77.46412316915726, 34.68322187659878], [-77.46406406758906, 34.682575074850234], [-77.46338975647663, 34.68045983546211], [-77.4629946021164, 34.67992579292948], [-77.46247079051052, 34.679054037605454], [-77.4618962275558, 34.674968611704834], [-77.4614181908504, 34.674466879069], [-77.46090444941369, 34.67355187017199], [-77.45981325312526, 34.670198024945975], [-77.45878415636977, 34.66930948442273], [-77.45622092348123, 34.667272421425324], [-77.45261966602595, 34.66852059889371], [-77.45010959155275, 34.66977851823399], [-77.44936300760263, 34.671995001406984], [-77.44726405876185, 34.67373876316177], [-77.44619610219057, 34.67579784870443], [-77.44617607925166, 34.6758359778824], [-77.44609132725483, 34.67588151251867], [-77.44362981285326, 34.6774232888054], [-77.44269959995933, 34.67760443697941], [-77.44207995009225, 34.67774026202784], [-77.4411217122223, 34.67801599047398], [-77.44067590627846, 34.67816423150256], [-77.44033308207327, 34.678222280268315], [-77.44000219076204, 34.678278307440685], [-77.43991860086582, 34.67829246090162], [-77.43979880303056, 34.67831993323589], [-77.43964569858409, 34.67840323392029], [-77.43965482429627, 34.6782695880328], [-77.43964090653824, 34.678072766367706], [-77.43969898357173, 34.6779334651355], [-77.43993781033633, 34.67780949773967], [-77.4399983011888, 34.67767503716346], [-77.44042715680466, 34.677421565056235], [-77.44042695647578, 34.676880328960934], [-77.44100091488495, 34.67650410419412], [-77.44038229456905, 34.676031225356304], [-77.4401544529972, 34.67593084759149], [-77.43985953857259, 34.67571403390529], [-77.4389198983393, 34.675776421642205], [-77.43880573860405, 34.67576889710439], [-77.43875337702175, 34.67576488954996], [-77.43872690633484, 34.675708933834315], [-77.43835723633373, 34.67513117918996], [-77.43811252052728, 34.67476815725126], [-77.43707391333346, 34.67322734913013], [-77.43676063822487, 34.67276259808789], [-77.4365584448768, 34.672689670393346], [-77.43508492693866, 34.671152619139484], [-77.43469456590061, 34.67026669245274], [-77.43157067473858, 34.6685003620232], [-77.43079230961972, 34.669082546305866], [-77.42958257997948, 34.66755517130174], [-77.42838297249641, 34.66615671086739], [-77.42784969950458, 34.66536367544835], [-77.42628615566181, 34.66380010173707], [-77.42599604736426, 34.663509980010986], [-77.4247555850563, 34.6618301163763], [-77.42455758691744, 34.66133853666004], [-77.42377882313818, 34.66056900801324], [-77.42261584433308, 34.65893771603128], [-77.42298466938124, 34.656680656111355], [-77.42288454242183, 34.655907339044965], [-77.42325258679284, 34.6554291691787], [-77.4233277156012, 34.653760043695655], [-77.42344921410647, 34.65279269751983], [-77.42332772918158, 34.65260550802599], [-77.42332778542362, 34.650499767569926], [-77.42341622432443, 34.64984825378001], [-77.4239660192287, 34.64840425623113], [-77.42415569145204, 34.648311651586404], [-77.42479598462151, 34.647155812399745], [-77.42536623621773, 34.64633895320235], [-77.42540154523503, 34.64626980933895], [-77.4254382026258, 34.64609620393641], [-77.42563144410163, 34.64613523448166], [-77.42568569518966, 34.64624795042015], [-77.4270642078265, 34.64685164352842], [-77.4295581135507, 34.6480986526904], [-77.42991683035541, 34.64821275266669], [-77.43027625010009, 34.648400245726414], [-77.43181596233099, 34.649549118606565], [-77.43277040771383, 34.649826317091346], [-77.43326906857565, 34.649022816718826], [-77.43457940601309, 34.648749329692976], [-77.43761366300643, 34.6458033570597], [-77.43777546533315, 34.64564398941353], [-77.43790778287708, 34.64553805319896], [-77.43835031405719, 34.6452219634185], [-77.44379785148911, 34.642795422941084], [-77.4451504409051, 34.641257379019045], [-77.44844697491199, 34.639466444681474], [-77.4513768578127, 34.6359720726435], [-77.45179985138004, 34.635684051756044], [-77.45201471064844, 34.63559794360291], [-77.45236732788025, 34.635404943611725], [-77.45562383449379, 34.633415339747714], [-77.45754219775844, 34.63273733217767], [-77.45943361146394, 34.63196559783961], [-77.46116789935635, 34.63196115918903], [-77.46363350950894, 34.63193989388802], [-77.46504753015736, 34.630406989995926], [-77.46463006080106, 34.6292381303875], [-77.46431069015286, 34.62811818864452], [-77.46391043320747, 34.626489229594696], [-77.46361566208735, 34.62530995899158], [-77.46357853276929, 34.62493852166304], [-77.46437426213184, 34.62340272478272], [-77.46518980808055, 34.62226852108361], [-77.46867596194262, 34.62217542589699], [-77.46919356917027, 34.622146673692825], [-77.46937730402024, 34.622199172219354], [-77.47068545808385, 34.62246882800876], [-77.47332771973608, 34.621264819218254], [-77.47347383860466, 34.618489082485], [-77.4734616973895, 34.61785551577498], [-77.47344427880984, 34.61694730071366], [-77.47171549882307, 34.61538328905715], [-77.47054023753033, 34.6131825283191], [-77.47027856543555, 34.61285542628433], [-77.46976671230809, 34.61223816932296], [-77.46933099398757, 34.61017159761806], [-77.46774481869447, 34.609285071167996], [-77.4676330038636, 34.609179040340976], [-77.467278122606, 34.608890500163156], [-77.46775217217535, 34.60859522967689], [-77.46836188535416, 34.60853026369516], [-77.46980588967665, 34.608415701924834], [-77.47078130765182, 34.60763826554309], [-77.47115465295967, 34.606696881896106], [-77.47499735778084, 34.60415795987897], [-77.47613057474064, 34.600802098379305], [-77.47644871828703, 34.59971090372799], [-77.47637987209184, 34.59929695348534], [-77.47622521419238, 34.59891034891144], [-77.47442226795178, 34.594047601854975], [-77.47445176446665, 34.59393880610645], [-77.47436790916112, 34.59386549747984], [-77.47371956373173, 34.59132449879614], [-77.4771142982615, 34.590224420712524], [-77.47738607357704, 34.59012954719115], [-77.47743228110531, 34.59011581987048], [-77.4812528768132, 34.5888060437651], [-77.48356358084649, 34.587335349070784], [-77.4840898856784, 34.585278237776265], [-77.48474664046532, 34.58279462398033], [-77.4845393229873, 34.5821955950943], [-77.4843304551508, 34.58167347018978], [-77.48411663701305, 34.579361900816636], [-77.48328418049795, 34.57732871747463], [-77.48329081804158, 34.57664345652893], [-77.4828051157373, 34.57622235865999], [-77.48251403071995, 34.574582126839914], [-77.48490930580824, 34.573226863367054], [-77.4851121496007, 34.57301359023222], [-77.48531469617754, 34.57294607482761], [-77.48617297892122, 34.57209973721893], [-77.48900212287674, 34.56941963656703], [-77.48899952671583, 34.5686394084435], [-77.4893557259587, 34.566047984226365], [-77.4893734743719, 34.564595130992885], [-77.48999255251718, 34.560104911928164], [-77.49000296889088, 34.559954296240456], [-77.49001639177526, 34.55986566108964], [-77.48814964354592, 34.55504280663401], [-77.48779955565742, 34.55467502860384], [-77.48703009858602, 34.55386666770775], [-77.48585304791034, 34.550536469364665], [-77.48101050819712, 34.550705744977094], [-77.48015062824477, 34.55020042608817], [-77.47934889380977, 34.549290158802016], [-77.47853384450858, 34.55041854873415], [-77.47619998281127, 34.55154530677401], [-77.47616758433543, 34.55160644690758], [-77.47337035159285, 34.55170065890236], [-77.4730480953797, 34.55040832290724], [-77.47196586645993, 34.54885359004567], [-77.47304540395422, 34.547148734106045], [-77.4739581287572, 34.54615280152499], [-77.47500000080419, 34.54501683741201], [-77.47445253017301, 34.54357590763947], [-77.47578653134067, 34.54106986251359], [-77.47760829846939, 34.53971228181207], [-77.4793391366417, 34.538420103549484], [-77.47983762426854, 34.53805940472333], [-77.48194704844155, 34.537215645440355], [-77.48249136633963, 34.536997920947066], [-77.48277782166906, 34.53709514878005], [-77.48489075804339, 34.53759567571977], [-77.4856396533691, 34.53804503756888], [-77.48836675183895, 34.53968131620844], [-77.48855977584431, 34.539903630007046], [-77.48892862835817, 34.54011955755787], [-77.49080333129098, 34.540815287781776], [-77.4913851972225, 34.5414162315684], [-77.49172672941532, 34.54064650944537], [-77.49269886150402, 34.53854226592972], [-77.49268890858527, 34.53850594828268], [-77.49193810691251, 34.535766107470685], [-77.49074372836311, 34.531407062314216], [-77.48731126952993, 34.53191981728862], [-77.4852352101315, 34.53251381361234], [-77.48396881458396, 34.53300457668202], [-77.48043750770921, 34.534156454152395], [-77.47940327967416, 34.53457014556835], [-77.47629716677608, 34.53611798992444], [-77.47311259680856, 34.538496670761084], [-77.47306488665349, 34.53853222436439], [-77.47303836858735, 34.538582041015225], [-77.46982284371572, 34.54229698734082], [-77.46674239611244, 34.545237169832916], [-77.4640604979348, 34.542697984716945], [-77.46120107173728, 34.541045366879175], [-77.46043783566078, 34.54060594879888], [-77.46031089643911, 34.54048853561385], [-77.46008520750081, 34.54038444917871], [-77.45731974077667, 34.539300229397355], [-77.45499675428735, 34.541121407848095], [-77.45597720459264, 34.54296219147027], [-77.45683314546514, 34.54474471269185], [-77.4572901228995, 34.545106772542375], [-77.45917971027393, 34.54730929479956], [-77.45969843547283, 34.54803666887376], [-77.46044402690679, 34.5498183487373], [-77.46099765540012, 34.55044283308285], [-77.4604446466511, 34.550735988869135], [-77.46023335466136, 34.55078135246451], [-77.45886956767852, 34.55133142590814], [-77.45782002042468, 34.55146993939946], [-77.45729421784428, 34.551539257749], [-77.45678967832897, 34.55159619577594], [-77.45414358639277, 34.55211451291874], [-77.4514883887178, 34.552354162307154], [-77.45099267704876, 34.552283336183095], [-77.45065788069721, 34.552300973411505], [-77.44784174869662, 34.552449851300054], [-77.44478041091473, 34.5528871847987], [-77.44469097332852, 34.552964282268874], [-77.44417317772026, 34.55343699816299], [-77.44154120829847, 34.55580331289933], [-77.44028737803686, 34.55548615234636], [-77.43839053986173, 34.55699702729616], [-77.43833004954, 34.557120730218266], [-77.43839062717312, 34.557206571366265], [-77.43934257574824, 34.55934588039444], [-77.44023817861475, 34.56024146296036], [-77.44154382503768, 34.56154705173011], [-77.44222105913639, 34.5626219193315], [-77.44253687454852, 34.56330567208745], [-77.44339301700512, 34.56517310209381], [-77.44427059175132, 34.56691213267136], [-77.44624217853274, 34.56956311274111], [-77.44696266559026, 34.57041661740732], [-77.44785169611964, 34.571090828553764], [-77.44906846708854, 34.572550938264875], [-77.44992999615378, 34.57358467080227], [-77.45100598625554, 34.57551282059387], [-77.45110944823969, 34.5756523670362], [-77.4515337400789, 34.57842082177394], [-77.45153376378886, 34.57898775853293], [-77.45161191562337, 34.57962682540506], [-77.45199634349524, 34.58231761483245], [-77.45101157084673, 34.58505220764818], [-77.45079124834662, 34.58565103667336], [-77.4505190064635, 34.585928231656986], [-77.44786164342648, 34.58926107770453], [-77.44763200241675, 34.589495200842194], [-77.44748682572651, 34.589763787490945], [-77.44775661084823, 34.589838272848525], [-77.4477650354795, 34.59121416806241], [-77.44798313269453, 34.59222959238154], [-77.44759471538559, 34.59273976602995], [-77.4478868066943, 34.593336310681636], [-77.4489050861095, 34.59352095128097], [-77.4491921504103, 34.59356866726067], [-77.44970612568797, 34.59361455687384], [-77.45056160299369, 34.593722597964224], [-77.45172938649142, 34.5935407357237], [-77.45287286847284, 34.592654720754844], [-77.45349356521768, 34.591680551168025], [-77.45527655886691, 34.590548445941906], [-77.45600912228066, 34.59008331695561], [-77.45631970961645, 34.589886106890674], [-77.45795978971758, 34.58828836818195], [-77.45972122161979, 34.58695268081116], [-77.46053443154301, 34.58609410559515], [-77.4618574745146, 34.58469727355355], [-77.46283915565279, 34.58298453539205], [-77.46314918630398, 34.58267178426628], [-77.46317384109045, 34.582386728910926], [-77.46320473011895, 34.580213731541036], [-77.46329597008963, 34.57939769252065], [-77.46345817860103, 34.57794714819704], [-77.46358087268855, 34.576362204897784], [-77.46369730752821, 34.575431176883185], [-77.46366808849135, 34.57486023837362], [-77.4634541622294, 34.574294069970705], [-77.46319535918319, 34.573518066871515], [-77.4637535178659, 34.57097047152484], [-77.46474007642794, 34.57084114283196], [-77.46798598628416, 34.571074819326334], [-77.47042067414063, 34.56787410104209], [-77.47055657211362, 34.56550831742943], [-77.47055655734991, 34.56511146890454], [-77.47074166053682, 34.56303162554228], [-77.47335576282607, 34.559984015259694], [-77.47542461395784, 34.559715506903316], [-77.47602759131254, 34.558037514521985], [-77.47817046415898, 34.55572160685839], [-77.4802543550141, 34.554478971147866], [-77.48263502771185, 34.55447653951428], [-77.484677411546, 34.55528158959506], [-77.48489099309563, 34.5555059698487], [-77.4864412510437, 34.557134563219456], [-77.48710406106498, 34.55884697211002], [-77.48679769455741, 34.56086999792378], [-77.48667903407954, 34.56258577060992], [-77.48651982046852, 34.5635970580755], [-77.48663422335724, 34.563871068993635], [-77.48666518364685, 34.564178800195336], [-77.48666527660666, 34.56612515062087], [-77.48652539631897, 34.56685651582791], [-77.48626029170102, 34.56846069257956], [-77.48454811149102, 34.57014904355158], [-77.48075546328847, 34.57141325735319], [-77.48069598043242, 34.57143308559163], [-77.48067123306461, 34.5714603016342], [-77.48067297169287, 34.57148243715938], [-77.48066506789834, 34.57152390625236], [-77.48023418899265, 34.57378469750506], [-77.48032809892851, 34.574535229386775], [-77.48068471667754, 34.57641953675377], [-77.48088697303362, 34.5773299497696], [-77.48083816902623, 34.57862983215597], [-77.48144973719536, 34.58012352004409], [-77.48159485540592, 34.58169238045286], [-77.481125425466, 34.583170505835284], [-77.48024782650813, 34.58513926798548], [-77.47968189982826, 34.58597789166326], [-77.47331805006856, 34.587832853498135], [-77.47258275994974, 34.587855831162415], [-77.47187304017916, 34.58820125452726], [-77.47171688269869, 34.588810950322], [-77.47151877123684, 34.59003440719379], [-77.47073954356406, 34.59204418757818], [-77.470941743439, 34.5928302165661], [-77.47113205904672, 34.594886334084066], [-77.47186754973191, 34.59692470075132], [-77.47237419902336, 34.59828595038195], [-77.47167856433208, 34.60063883641479], [-77.47101194627118, 34.60276421328632], [-77.46866833496618, 34.60426444323184], [-77.46795790411464, 34.604654991582365], [-77.46550814431544, 34.60579402657291], [-77.46502088001867, 34.60630165888486], [-77.46425596129163, 34.608665535429175], [-77.46432543824614, 34.609809211978295], [-77.46440438115658, 34.61010029465653], [-77.46470491172747, 34.61046792115265], [-77.4652074786168, 34.61134823348105], [-77.4656252224134, 34.61187762404083], [-77.46692801483545, 34.613262056564196], [-77.4672964717164, 34.61370638827288], [-77.46868891541075, 34.615447006301395], [-77.46958785688759, 34.61713033844227], [-77.46875532452658, 34.619198561568695], [-77.46859925072327, 34.61936040930202], [-77.46780947750261, 34.61946843420412], [-77.46530429524393, 34.61958665108448], [-77.46456989052696, 34.62000631519134], [-77.46424023938296, 34.62021508144443], [-77.46407908874512, 34.62053273962747], [-77.46171868564748, 34.623971560610784], [-77.46154795355083, 34.62420900275108], [-77.4615394416558, 34.62422543112794], [-77.46155089090414, 34.62433996806105], [-77.46045797962296, 34.62747405737677], [-77.46070170275269, 34.62888732436064], [-77.45859164992616, 34.62889272472539], [-77.45724442423752, 34.62944241954996], [-77.45404312766689, 34.63151357414924], [-77.45121761476918, 34.632687949052276], [-77.4475842886436, 34.6339367159499], [-77.44735889444516, 34.633959370426126], [-77.44666260595652, 34.63388709025695], [-77.44384629393922, 34.63484834223698], [-77.44343317318157, 34.634986434351276], [-77.44324296461886, 34.63516841645551], [-77.44321560551072, 34.63534476000977], [-77.44230673470666, 34.637318504417934], [-77.44196866541247, 34.638654141331564], [-77.43966270775925, 34.64134883722724], [-77.43827138448367, 34.64266194354447], [-77.43730862924086, 34.64334961733334], [-77.43545634884109, 34.64483259206244], [-77.43392113220361, 34.64634470790683], [-77.43174100642928, 34.64598406698259], [-77.43076338432115, 34.64480135975597], [-77.43014083670353, 34.6442825873155], [-77.42885634000945, 34.643212149402366], [-77.4283183603628, 34.642852726579505], [-77.42812186430069, 34.6426000641081], [-77.42743116230729, 34.64202443303839], [-77.4265824491624, 34.64131715305258], [-77.42613127851254, 34.640941166944245], [-77.42569286400492, 34.64057581343268], [-77.42499629897205, 34.640536622766795], [-77.42440194095, 34.64032477218641], [-77.42384578081355, 34.64027622655682], [-77.42341688958872, 34.64061947366669], [-77.42325119951292, 34.641033733381555], [-77.42270619223626, 34.64239632491005], [-77.42258450504255, 34.64270056988822], [-77.4225475050025, 34.64279306777946], [-77.4219176878376, 34.64436740728907], [-77.42178337828312, 34.645003482683], [-77.4212289076266, 34.64608927453641], [-77.42058423449285, 34.64770102850275], [-77.41996574817502, 34.6493230834147], [-77.41966467029678, 34.65091673457114], [-77.4191220946905, 34.65376795318313], [-77.41897720530183, 34.6539329371806], [-77.41634992619286, 34.65747174429427], [-77.4160576231329, 34.65785150968699], [-77.41605971773556, 34.65786768706817], [-77.41920424098794, 34.66129774228639], [-77.42043394128169, 34.66251285992311], [-77.42129732576905, 34.664656427048364], [-77.42166076270888, 34.665117384093556], [-77.42195827168285, 34.66524653372195], [-77.42247114374396, 34.66600711808993], [-77.42344996619792, 34.66708095391454], [-77.42397020855576, 34.667413535881835], [-77.42345055418227, 34.66958561697297], [-77.4234287203359, 34.670357913996405], [-77.4233322205406, 34.67167284938557], [-77.42413137105933, 34.673833499723564], [-77.42490243396298, 34.67510322402795], [-77.42588722632046, 34.67404693938161], [-77.42788662470356, 34.67364718625755], [-77.42864863106354, 34.6725793488299], [-77.42902227298137, 34.67231474115009], [-77.43004335826271, 34.67159160235849], [-77.43201359202345, 34.67011795059676], [-77.4330867156645, 34.67072472299809], [-77.4339084586376, 34.67258967354014], [-77.43455221437577, 34.673261185938415], [-77.43594207538521, 34.67376248511623], [-77.43679986078197, 34.67503503006548], [-77.4371431598273, 34.67554433304475], [-77.4373874897358, 34.67624198217253], [-77.43742428747248, 34.6763197680665], [-77.4374134785377, 34.67636772484566], [-77.4378939521269, 34.676706191995024], [-77.43801903745694, 34.67668270141779], [-77.43821106336085, 34.67664663903295], [-77.43829520325437, 34.67638642799888], [-77.43861995952699, 34.6764112835969], [-77.43924491416129, 34.67645247583309], [-77.43932308420092, 34.677035498188594], [-77.439574234098, 34.67720779450155], [-77.43941670415606, 34.6776272800804], [-77.43927181084683, 34.67798289335782], [-77.43921475607486, 34.678115706831576], [-77.43909876421868, 34.67829910550195], [-77.43892521908879, 34.67857350623308], [-77.43887461730955, 34.6788290480163], [-77.43858139377255, 34.67876010037129], [-77.43820637440902, 34.6786716627691], [-77.43797705583836, 34.67863425358811], [-77.43776135038053, 34.67850465739869], [-77.43737762895663, 34.67849142942988], [-77.43727824158132, 34.67855662804374], [-77.43728633533019, 34.678807078315224], [-77.43741976023665, 34.6790000525734], [-77.43786456385908, 34.67902320436318], [-77.43819908269035, 34.679220218203824], [-77.43841486887703, 34.67933589030568], [-77.43851852125566, 34.679434151460825], [-77.43866403471065, 34.67960026544877], [-77.43889085385605, 34.6799055641306], [-77.43921371394224, 34.68003672675189], [-77.43945985848963, 34.680153617508815], [-77.43965159855867, 34.68009912854099], [-77.44007397003648, 34.68024570553522], [-77.44051263810607, 34.680246657534816], [-77.4405687045477, 34.680102817977506], [-77.4407465684053, 34.67976941124833], [-77.44168555776238, 34.67910416546768], [-77.44175555023067, 34.679052046407904], [-77.44185425165205, 34.67903863799356], [-77.44337333665857, 34.678705659959434], [-77.44589378149443, 34.67821483255564], [-77.44671711269137, 34.677699136805586], [-77.44811296125745, 34.676513127210725], [-77.44869996837696, 34.675138092144294], [-77.44909392859721, 34.67437851276088], [-77.45319208933665, 34.67097384856725], [-77.45327199638822, 34.67090068029712], [-77.45729395045451, 34.672688522511805], [-77.45746500213411, 34.67306793384875], [-77.45829345626626, 34.67511677271478], [-77.45850424141396, 34.67529764644599], [-77.45848930962408, 34.675474177221844], [-77.45899185625382, 34.6764117842583], [-77.45991907134041, 34.67738496071969], [-77.46003404832689, 34.67820250378379], [-77.46135107088466, 34.68039436324958], [-77.46234460978377, 34.68173710948583], [-77.46273274103626, 34.68295463430174], [-77.46284088308468, 34.684138130241784], [-77.4624086521688, 34.6858896304729], [-77.46226210761544, 34.6864833858001], [-77.4632654468471, 34.68875828945233], [-77.4640962463051, 34.690242363086135], [-77.46575522715538, 34.69216758245027], [-77.46671700182183, 34.69292683657264], [-77.46827245700331, 34.69353098877819], [-77.47073526661039, 34.693659006737846], [-77.47083169263507, 34.69366867008955], [-77.47335899320976, 34.693668640564496], [-77.4765246475344, 34.69338995172438], [-77.47778062014473, 34.693060846853825], [-77.47743113860756, 34.68923501079454], [-77.47824877641817, 34.68739282158489], [-77.47861571686694, 34.68656621457171], [-77.47931357126214, 34.68493811407255], [-77.47970584257112, 34.68402287311208], [-77.48008135001763, 34.682009453782406], [-77.4803084384511, 34.68089664749172], [-77.48032446902057, 34.68033682805814], [-77.48092243874386, 34.67963296662228], [-77.48237650058383, 34.679203394154094], [-77.48486725580202, 34.6786686407226], [-77.48811761777942, 34.67866865816015], [-77.48879954248912, 34.678668661299284], [-77.48907679654384, 34.67866866070279], [-77.49176934168194, 34.679379340423466], [-77.49387602180354, 34.679780240967496], [-77.49402497804131, 34.67993732219594], [-77.49435670384825, 34.680282726050216], [-77.49719650455646, 34.68198661272475], [-77.4976949729537, 34.682429758906935], [-77.49864634213428, 34.68285646269713], [-77.49886861151288, 34.682986614512984], [-77.49908819978405, 34.68317300702237], [-77.4988535455798, 34.68361070577955], [-77.4987915206617, 34.68430791668634], [-77.49864499667174, 34.68452768305737], [-77.49745192508169, 34.68631722873671], [-77.49466441498724, 34.688618154774595], [-77.4934941412838, 34.6898895995656], [-77.49244347578457, 34.69092800147838], [-77.49177145887779, 34.69176524663241], [-77.49198071665165, 34.69233847438851], [-77.4922933766658, 34.694424446362085], [-77.49076370019353, 34.69600595032308], [-77.49065937420634, 34.69615676541927], [-77.4904047893475, 34.69823640765834], [-77.49022434183382, 34.698434408491025], [-77.48977162565635, 34.698966207531655], [-77.48916072525002, 34.699686134671104], [-77.48903300310195, 34.700301298375784], [-77.4897173090166, 34.70059456062132], [-77.49163685029687, 34.701384678339664], [-77.49314923204896, 34.701429988357056], [-77.4938904051285, 34.70143000829854], [-77.49420415464307, 34.70137054507638], [-77.49487931932002, 34.701430013491986], [-77.49675019434473, 34.701430017774236], [-77.49755169598099, 34.701430006308016], [-77.49931340582046, 34.70142997070364], [-77.49945214766421, 34.7013942318192], [-77.5009524090712, 34.70100477354498], [-77.50131855987135, 34.7005245383409], [-77.50160539882522, 34.699910148265545], [-77.50188362986329, 34.69850218800194], [-77.50124914325966, 34.697550302452285], [-77.50239600540081, 34.69650318115096], [-77.50415832754975, 34.69648680348876], [-77.50621715797705, 34.695086441909744], [-77.50985620631185, 34.69610008584035], [-77.51035405357348, 34.69623028933549], [-77.51078131416932, 34.696372719459546], [-77.51468839005587, 34.69767505707193], [-77.51500295381048, 34.69786555775517], [-77.515424714055, 34.697946507242655], [-77.51942742087245, 34.69927647835608], [-77.51962568179151, 34.699532879467455], [-77.520291476137, 34.70033150442357], [-77.52326531325178, 34.702402960842804], [-77.52707951592652, 34.703000404725344], [-77.53069958053625, 34.7078230697295], [-77.5307085374404, 34.70788326370066], [-77.52609919653186, 34.712157260296365], [-77.52588702838261, 34.71508595286604], [-77.52646761638321, 34.71680243334426], [-77.52844192069507, 34.71597673072107]], [[-77.28738321530216, 34.6271714736344], [-77.28817863863267, 34.62700199071026], [-77.29130125530997, 34.62702969725956], [-77.29249706650707, 34.627135939487175], [-77.29655415822486, 34.62581612937484], [-77.29740872391673, 34.62609120707164], [-77.29830977506577, 34.6257894906641], [-77.29972799267803, 34.624887623084085], [-77.30011331580033, 34.62427486037645], [-77.29926793482637, 34.62259170595361], [-77.29854827785289, 34.62187206685023], [-77.2960661685705, 34.61939000082726], [-77.29491161539167, 34.61823544295065], [-77.29376549409477, 34.61298180173679], [-77.29246502375611, 34.611818765384605], [-77.29321162611704, 34.6103421634293], [-77.29180120788403, 34.60769271817657], [-77.29068810470429, 34.607982842037416], [-77.28923641485483, 34.61085393940115], [-77.28674314659733, 34.60852275344654], [-77.28553150449248, 34.60850273729147], [-77.28364508511575, 34.60849872648151], [-77.28324606092798, 34.60903650510076], [-77.28319019451395, 34.60971227510019], [-77.2831463821612, 34.6116141298496], [-77.28291788096882, 34.61312526737585], [-77.28136925392826, 34.61529416790117], [-77.28060064151242, 34.61886977601462], [-77.2802447053205, 34.6195844923122], [-77.27931606992932, 34.62036944106166], [-77.27788453101044, 34.62271961434584], [-77.27798080458702, 34.625847433823886], [-77.2792030725275, 34.62713636789894], [-77.28242911942314, 34.62800488154738], [-77.28316302266435, 34.62765474757916], [-77.28485313614411, 34.62732331975123], [-77.28647298520747, 34.627403104086184]], [[-77.2998740445137, 34.65128397317938], [-77.299879051806, 34.651313477261965], [-77.29991247086825, 34.65136139569688], [-77.29995123021965, 34.65130359543939], [-77.29993206050294, 34.65125131141285], [-77.29987846953154, 34.651191790853346]], [[-77.2750527637603, 34.64232541245794], [-77.27539943054647, 34.641159383120005], [-77.27610086770068, 34.6387344521346], [-77.27636000803301, 34.63732032936752], [-77.27656499006767, 34.63708614389077], [-77.2778428495029, 34.63407386434148], [-77.27783241656101, 34.63335485889114], [-77.27669097697137, 34.628397033031476], [-77.27622640284464, 34.62754342333546], [-77.27401586037047, 34.62451392260356], [-77.27165607044165, 34.6253496473836], [-77.26994868825034, 34.623382479661515], [-77.26862204539641, 34.622981532232664], [-77.26795069468494, 34.622746491838], [-77.26622601208592, 34.6221590163279], [-77.2659702636142, 34.622075794942354], [-77.2658734155677, 34.62203966174622], [-77.26561178513006, 34.6219275413224], [-77.26314709342121, 34.62120895411238], [-77.2612989344303, 34.62213829494115], [-77.26022802807603, 34.62226715014342], [-77.26022551064155, 34.62282901156904], [-77.25969808950494, 34.623341795817055], [-77.25830418575785, 34.625814922372825], [-77.2582046928003, 34.626440798032334], [-77.25674292222244, 34.629685100208064], [-77.25234015068447, 34.62975019142394], [-77.25095040358156, 34.62979401817374], [-77.2507043126285, 34.62973874218652], [-77.25005841294251, 34.629889059496755], [-77.24616238264919, 34.63079576076116], [-77.24325767762602, 34.63111848342265], [-77.24101075379477, 34.63147412214106], [-77.23927530194366, 34.63231955046212], [-77.23903044309776, 34.632473039474014], [-77.23885481477723, 34.633149782110195], [-77.23852145630207, 34.6342057618213], [-77.23859235019002, 34.634323917666876], [-77.23892530672119, 34.63487884905306], [-77.23973063584963, 34.636298973983834], [-77.23985656198693, 34.63664532658304], [-77.24021860187011, 34.637119408396856], [-77.24202589372481, 34.640250514490404], [-77.24257345498361, 34.64150709634066], [-77.24341050652687, 34.64412548712463], [-77.24341019558891, 34.64413032990466], [-77.24068399730376, 34.646960478373245], [-77.23984252394891, 34.647620118670474], [-77.23821761036358, 34.6490146417138], [-77.23763824687143, 34.64951185622636], [-77.2355370722175, 34.65105173692285], [-77.23432463813364, 34.65182510322305], [-77.23416407274397, 34.65471434990956], [-77.23348293122173, 34.6563361611393], [-77.23350189964958, 34.65665634796211], [-77.23339320043695, 34.6572550722086], [-77.23346531584949, 34.658430128374775], [-77.23454152927542, 34.65920655375129], [-77.23532937648596, 34.66009542663711], [-77.2371683975209, 34.66116321877846], [-77.23981745764829, 34.66270124381518], [-77.24055127293578, 34.66311311911666], [-77.240812660177, 34.66321751123708], [-77.24140333022267, 34.66340812888606], [-77.24357374010013, 34.664216461963385], [-77.24453931137474, 34.6644048494764], [-77.24822815450341, 34.66512444212047], [-77.24856631502155, 34.665619786894354], [-77.24904255296039, 34.66594659114182], [-77.2491743346638, 34.665331127645565], [-77.24995504555368, 34.66488879635213], [-77.25122295996613, 34.6640400284187], [-77.25290778204052, 34.663478426421776], [-77.25351966873846, 34.662715529661234], [-77.25538973519147, 34.660455719291086], [-77.25611426787813, 34.657296808527505], [-77.2561143109592, 34.650715026471886], [-77.25611430931359, 34.65054554154065], [-77.2561454744669, 34.65047588304554], [-77.25617292847495, 34.65036499858814], [-77.25769713676405, 34.64357809714084], [-77.25674161766759, 34.640346877465845], [-77.2589380830924, 34.6385773244041], [-77.26222652849255, 34.63864128419589], [-77.26404705719547, 34.63851467855319], [-77.26693574491492, 34.63919358721559], [-77.26940744089524, 34.639708630486325], [-77.27100282833352, 34.63963872830763], [-77.27310855923051, 34.641472531563416]], [[-77.36591240489808, 34.71314506468166], [-77.36746666167285, 34.71103644200497], [-77.36797140565088, 34.71000675248547], [-77.36827423504383, 34.708975909092445], [-77.36838478804862, 34.7080881980593], [-77.3684137402349, 34.70798196202813], [-77.36833000867114, 34.70777188311461], [-77.36831314907323, 34.707020996928804], [-77.36775052017049, 34.706580639887015], [-77.36714424659678, 34.705889032780114], [-77.36618961921431, 34.705363225040216], [-77.36584995422722, 34.704878048792025], [-77.36420354218242, 34.70499846329805], [-77.36345765107298, 34.704869959261195], [-77.36208079463772, 34.704787173958174], [-77.36207369288347, 34.70592866750084], [-77.36178158727586, 34.70686242182552], [-77.36262536766336, 34.70773744375441], [-77.36288876668138, 34.70916423702779], [-77.36309629896454, 34.70968731327138], [-77.36407531508385, 34.710992702683285], [-77.36427135893072, 34.71125409460052], [-77.36442187211405, 34.711454772060925], [-77.36556740914882, 34.71298209570602], [-77.36569122589148, 34.713229944615726], [-77.36572822679622, 34.71328680992234], [-77.36580194829618, 34.71329500479101], [-77.3658788324374, 34.71325802111554], [-77.36587311046583, 34.713204957735755]], [[-77.31965279654888, 34.7077386633232], [-77.3195525005363, 34.70761671197946], [-77.31932355211808, 34.70773620763387], [-77.31079055741407, 34.70824750833199], [-77.3098330701677, 34.708095044020624], [-77.30613660226538, 34.70580131427136], [-77.30604176975348, 34.70559364786838], [-77.30580319293703, 34.70548191417059], [-77.30481798578911, 34.70508617445364], [-77.30235162567111, 34.70631937384346], [-77.30073833055835, 34.709670351799765], [-77.30009650744039, 34.71052680943356], [-77.300213222428, 34.71121885318284], [-77.3015043600148, 34.71423298056163], [-77.30235943291633, 34.71472870495177], [-77.30292250833291, 34.71538092991241], [-77.3043975992979, 34.71773586008807], [-77.30256828364968, 34.720872533038765], [-77.30555861338954, 34.72278488253312], [-77.30862481808883, 34.72252196066301], [-77.31199736905337, 34.72167154853085], [-77.31551715944356, 34.72149085920793], [-77.3167253783688, 34.72259991730756], [-77.3185694797363, 34.723593105976036], [-77.32216073078447, 34.724726510234944], [-77.32401936738202, 34.725203175926204], [-77.32763736147822, 34.72682137495115], [-77.32983011001994, 34.72726738860818], [-77.33267094393986, 34.728403683185235], [-77.33503541201132, 34.72743851919475], [-77.33477245545157, 34.72917057024159], [-77.33617907961785, 34.72971223234429], [-77.33699081168058, 34.73002482828924], [-77.34060914764709, 34.728370174427596], [-77.34118472278286, 34.72711774634702], [-77.3425048910168, 34.72169374890045], [-77.34250489746768, 34.720312071437064], [-77.34248699601503, 34.718058647232425], [-77.34248190808789, 34.71540481467105], [-77.34250478372874, 34.712514125933716], [-77.34250479753462, 34.71104927475826], [-77.34179872775474, 34.70962381443867], [-77.342074655159, 34.70867412521514], [-77.340853704265, 34.7084889863616], [-77.33881055596801, 34.70876924643722], [-77.33833476913162, 34.70891578618094], [-77.33773814807682, 34.708742287668755], [-77.33485808027646, 34.70865635454656], [-77.3336846099282, 34.7084349177189], [-77.33254650390114, 34.70803144436415], [-77.33157875131039, 34.708025633565846], [-77.33119831652681, 34.70805115910572], [-77.32871096886915, 34.70906679541744], [-77.32741076204442, 34.70807826804559], [-77.32483669134243, 34.707138837750506], [-77.32458045199527, 34.707102088798784], [-77.32449965715088, 34.707076293178964]], [[-77.30445522983682, 34.58880932297416], [-77.30324303661507, 34.590087861239816], [-77.30264225819897, 34.59245486905594], [-77.3017563157638, 34.59667947078058], [-77.30167863073328, 34.59689457900791], [-77.3016402047374, 34.59705913178758], [-77.2996544985962, 34.60034288074619], [-77.29916180347654, 34.60230714002534], [-77.29892171968399, 34.604183115677856], [-77.299768029625, 34.605789638657406], [-77.30010938259497, 34.610772105846024], [-77.30293625726004, 34.61319171193763], [-77.3048797877525, 34.61226799224653], [-77.30753039134555, 34.61327927172683], [-77.30771444530367, 34.61321735881818], [-77.31013615920799, 34.612947490986016], [-77.31221873102191, 34.6120868177824], [-77.31248406345148, 34.611889308295545], [-77.31310707803314, 34.611422062577454], [-77.31470947577581, 34.610220334305126], [-77.3155890608731, 34.60989658311816], [-77.31694564099365, 34.60846508264632], [-77.31861494663829, 34.604164631977056], [-77.31917837119326, 34.60257152698329], [-77.32533512404319, 34.600562690243585], [-77.32500989656211, 34.59734227900394], [-77.32805891639748, 34.5976405883437], [-77.32866056193927, 34.599452787961305], [-77.33436490853578, 34.59743715488362], [-77.33827080509222, 34.5961351737204], [-77.34067228711291, 34.59525808208553], [-77.34339799524156, 34.59504828332588], [-77.3438252669548, 34.595003272935], [-77.34433592667658, 34.59500327539512], [-77.34697747705798, 34.59589907348959], [-77.3479265066033, 34.59631048247955], [-77.3498636586445, 34.597054464173674], [-77.35210612468072, 34.59799844429531], [-77.35328172837322, 34.59831471591366], [-77.35630527265572, 34.59952410279889], [-77.3563358682161, 34.59962533153269], [-77.35643386493471, 34.59974583897626], [-77.35674152564474, 34.59979276728039], [-77.35760113566542, 34.59977840190818], [-77.35749520104193, 34.600201967647976], [-77.35800990167927, 34.600599584447735], [-77.35816250545756, 34.60010593325907], [-77.35810569381994, 34.59936750995077], [-77.35811975728316, 34.59926298142788], [-77.35801064216935, 34.59916427085507], [-77.3564988063422, 34.59942648019589], [-77.35643418914502, 34.599140483907085], [-77.35565043510135, 34.596221922232004], [-77.35422984797825, 34.595406723273726], [-77.35414128841354, 34.59304268013049], [-77.35446729960836, 34.590871967132415], [-77.35643920885194, 34.58982103387262], [-77.35655987194802, 34.58942800359216], [-77.35693309868172, 34.58924452246636], [-77.35702348812708, 34.5886027359918], [-77.3564398222541, 34.5886900541142], [-77.3546626760025, 34.58808978930002], [-77.35328775012307, 34.58788951592952], [-77.35130843423487, 34.58792144685831], [-77.35013525011937, 34.587862558704806], [-77.34921747446161, 34.58794699133158], [-77.34698288523447, 34.58763388973604], [-77.3441594013314, 34.58733157639814], [-77.34383070187711, 34.58715250947518], [-77.34317373142684, 34.587119766939075], [-77.34067758304097, 34.58800046189531], [-77.33819541868208, 34.58782113429679], [-77.33437414500408, 34.58596425965374], [-77.33427282993331, 34.58582021709868], [-77.33416729816567, 34.5857261094843], [-77.3304983260777, 34.583638508571994], [-77.32996138487243, 34.582934254459154], [-77.32866275863314, 34.582484685439496], [-77.32807277167058, 34.581932719129554], [-77.32670846981023, 34.58147565560681], [-77.32236950304113, 34.58062868828965], [-77.32672706532263, 34.57854952068767], [-77.32688698299367, 34.576583432279186], [-77.32692762657099, 34.575337406197825], [-77.32691709468051, 34.57488096996448], [-77.32668937345427, 34.574713058110255], [-77.32677324831978, 34.57349330564466], [-77.32692895854653, 34.57318112130805], [-77.32703083980552, 34.57203427249206], [-77.32751378801554, 34.57139894192827], [-77.32744162141127, 34.570718454173196], [-77.3274755814252, 34.570555361283056], [-77.32742875322147, 34.570418033212114], [-77.32770695525257, 34.56967303945015], [-77.3277739378697, 34.56932929180601], [-77.32784744532486, 34.56821070208068], [-77.32789475335167, 34.56794790817992], [-77.32755317678787, 34.56742313158293], [-77.32737220282695, 34.56709404668694], [-77.32665925491877, 34.56642729998675], [-77.3266400961236, 34.56629079950983], [-77.32651093665879, 34.56621871046833], [-77.32637929388468, 34.56632577637443], [-77.32619725678367, 34.5664936840781], [-77.32541256120889, 34.56712187959646], [-77.32493365588854, 34.5677290762377], [-77.32434497160482, 34.56845796020403], [-77.32412868345966, 34.56932137263992], [-77.32390367581087, 34.570219491724444], [-77.32304297257728, 34.57237565127443], [-77.32261302711494, 34.57380117646057], [-77.32249717142639, 34.57459571382563], [-77.32177065762116, 34.57929247130109], [-77.32152396851531, 34.58048560100012], [-77.32078167993703, 34.580856756038386], [-77.31861484428481, 34.58286039048642], [-77.31754430206328, 34.58247545703454], [-77.31681448718811, 34.58288311913199], [-77.31599032318621, 34.58437068452377], [-77.31606436259428, 34.58493042861509], [-77.31606611282093, 34.58767071318154], [-77.31655664636821, 34.58825596943479], [-77.31739220386842, 34.590222946634015], [-77.31563065871934, 34.58928155081149], [-77.31534243587691, 34.58864012576802], [-77.31500201627559, 34.588476251098136], [-77.31141390789782, 34.58723815349979], [-77.31008155438161, 34.587134070920605], [-77.30841542813391, 34.58717151166157], [-77.30746571603187, 34.586851983670336], [-77.30671118046395, 34.58736861238267], [-77.30520677861017, 34.58835109834428]], [[-77.25703809009534, 34.696917668228714], [-77.2585773966467, 34.69794379647975], [-77.25973979705276, 34.69916692273594], [-77.26140307210724, 34.700220456999425], [-77.25893202933746, 34.70193749674216], [-77.25831549252753, 34.70129592458805], [-77.25702402767969, 34.700818234133536], [-77.25689051143668, 34.70072425915934], [-77.25635042018729, 34.69965427542581], [-77.25520247202275, 34.69829891815758], [-77.25441570323629, 34.69727556917576], [-77.25583844187516, 34.696117891427974]], [[-77.29952409286243, 34.72620041773364], [-77.29971706949758, 34.726393392154705], [-77.30021748659024, 34.726105547213045], [-77.2999241756921, 34.72568194204075]], [[-77.47594745704001, 34.73077160172891], [-77.47423701780336, 34.72836342047264], [-77.47399794140748, 34.72801399396954], [-77.4737784636909, 34.72771780856268], [-77.47320522644276, 34.727431198875806], [-77.47030860528096, 34.7259829154968], [-77.46912175776363, 34.72608545566431], [-77.46859202415342, 34.725878571534984], [-77.46682597520129, 34.72515674003999], [-77.46624795476183, 34.72504093407525], [-77.46611578926839, 34.72552798102933], [-77.46556186851613, 34.72690992386222], [-77.46506183204868, 34.72817378891785], [-77.46455012370505, 34.72945298202801], [-77.46418772594188, 34.73064484800743], [-77.46434234106299, 34.73204585949911], [-77.46464182416386, 34.73271432470646], [-77.46489326649362, 34.733601680565926], [-77.46542602803822, 34.73423052667255], [-77.46603189348227, 34.73491212544284], [-77.46643875641625, 34.73536983311483], [-77.46748611158033, 34.736028979842054], [-77.46865586710624, 34.73657179263999], [-77.47021126922061, 34.736738824844224], [-77.4711055665764, 34.736968972192486], [-77.4752845696041, 34.73767208337503], [-77.47570379717209, 34.737485943529705], [-77.4761257003315, 34.7373455037205], [-77.4797688895846, 34.734765767584264], [-77.47841800084952, 34.73331170394258], [-77.47763252693946, 34.73212929058481]], [[-77.29105052222755, 34.70679380196555], [-77.2902640906513, 34.7079730634866], [-77.2905524887559, 34.70850426345597], [-77.29519524470888, 34.70762671561098], [-77.29757680912113, 34.708879760074126], [-77.29732495335968, 34.7070072172127], [-77.29611893938338, 34.706916783833364], [-77.29507177937259, 34.706657094200345]], [[-77.53264838303795, 34.703549412288965], [-77.5309518786786, 34.701894306448644], [-77.5304640364313, 34.700918575624385], [-77.53037044545769, 34.70027864048276], [-77.53124581116165, 34.69996196300681], [-77.5325853132947, 34.69909986181072], [-77.53446651363757, 34.69941283171321], [-77.53463934495895, 34.69947127426135], [-77.53485588445085, 34.699699729606685], [-77.53650845179715, 34.70030682207292], [-77.53581350929667, 34.701696491971724], [-77.53560914852538, 34.702105155714044], [-77.53478474984023, 34.703754115832425], [-77.53455477622143, 34.70421406409257], [-77.5309629480541, 34.70763189087749]], [[-77.43355421011921, 34.676113324627835], [-77.43355662838601, 34.6761370052601], [-77.4335572301278, 34.676148529678436], [-77.4335575297681, 34.676192319695026], [-77.43359315914586, 34.67617700400898], [-77.43360056393965, 34.676152371311176], [-77.43360302062288, 34.67612941475793], [-77.43361904906098, 34.67597964418078]], [[-77.31609072891527, 34.67421939577889], [-77.31640367995955, 34.67555879109977], [-77.31760021778203, 34.675558792425186], [-77.31920710630617, 34.6734023816953]], [[-77.42570517433052, 34.732093418757145], [-77.42569297589205, 34.73210355152774], [-77.42556200708884, 34.732322908738226], [-77.4256278249526, 34.732385609774845], [-77.42569467661666, 34.73236928281585], [-77.4258511762194, 34.73232353347213], [-77.42592216800331, 34.732309034413674], [-77.42595164775207, 34.732300737727265], [-77.42597362084068, 34.73229852590011], [-77.42606073910959, 34.73229202649539], [-77.42611253428599, 34.7322358089187], [-77.42612427270646, 34.73220887485931], [-77.42614377972698, 34.73213870567603], [-77.42614281400643, 34.73210662644851], [-77.42605892362192, 34.7320038868546], [-77.42591252602635, 34.73201197471867], [-77.42589073482951, 34.73201424124134], [-77.42571324698993, 34.732090563639034], [-77.42570947555659, 34.732091995083366]], [[-77.32444807271783, 34.67430488014283], [-77.32484444394824, 34.67432412815629], [-77.32458769684095, 34.674032007569686], [-77.32455235399233, 34.67394609464176], [-77.3225921837134, 34.67395105230867], [-77.32083833179837, 34.67332376930965], [-77.32132877539662, 34.67492294826175], [-77.32280256937307, 34.67506651275676]], [[-77.41553309004787, 34.55788055906242], [-77.41558024504042, 34.55790050296418], [-77.41633208376108, 34.55794003298581], [-77.41658549832695, 34.55829257323784], [-77.41684493734417, 34.558231754129494], [-77.41688331186617, 34.55792848455135], [-77.41653121686278, 34.557724336756166], [-77.41633201573023, 34.55749519487303], [-77.41559850677582, 34.5578005856684], [-77.41549900617024, 34.55782468517823]], [[-77.45090843111072, 34.6826629614863], [-77.45067180739088, 34.682395201866036], [-77.45066106231427, 34.682392452329395], [-77.45065776314462, 34.68240106659083], [-77.45050575538289, 34.68262220253691], [-77.45044576493277, 34.68278817206002], [-77.4504160588584, 34.682870356006845], [-77.45046096546633, 34.68292967269307], [-77.45049566737416, 34.68298258485181], [-77.45051536389484, 34.68301856324685], [-77.45061575155363, 34.683065947892274], [-77.4506313293749, 34.68306742354822], [-77.45077381381415, 34.68302224468506], [-77.45080775724053, 34.68301123682875], [-77.45081407287336, 34.68300947936466], [-77.45090526067207, 34.68279149651291], [-77.4509168589616, 34.68276590126686]], [[-77.25517363142882, 34.68197003564303], [-77.25888767508728, 34.68475467200884], [-77.25609552656931, 34.6814518270893], [-77.25560879121493, 34.68131864122967], [-77.25550756601002, 34.68082464427458], [-77.25486091768951, 34.67874228753688], [-77.25455691107679, 34.67776320718036], [-77.25503438632356, 34.67615316067806], [-77.25479816734338, 34.67435466559916], [-77.2557097637114, 34.67366785317172], [-77.25756298782588, 34.67317374708931], [-77.25819815970125, 34.67330076140274], [-77.25859176474914, 34.67332434816717], [-77.26076539753558, 34.67332785026844], [-77.2623189652008, 34.67332785791548], [-77.26312975588417, 34.6735308510117], [-77.26356799597173, 34.673443926361145], [-77.26578825697031, 34.67282397764312], [-77.26765993206746, 34.671925839098385], [-77.26864425836767, 34.671808354146336], [-77.27100654667949, 34.67329667705876], [-77.27220731549941, 34.67394019896955], [-77.27810219391208, 34.674547042193126], [-77.27502768864136, 34.67864438360828], [-77.26970670266785, 34.683491791199856], [-77.27581487109317, 34.68470042786167], [-77.27836860777822, 34.684550674614286], [-77.27904828886791, 34.68536711350071], [-77.28022672715147, 34.68595289070031], [-77.28088061847279, 34.68711040244269], [-77.28243398344723, 34.68703652120327], [-77.28350341763377, 34.689403680267084], [-77.28479346221731, 34.690406518549715], [-77.28541848981537, 34.69298021780712], [-77.28523721600504, 34.693065397123476], [-77.28235928110655, 34.69537466819949], [-77.27789981638838, 34.695704118439096], [-77.27511067086712, 34.69573476219135], [-77.27302641632943, 34.69473433477822], [-77.27167461972255, 34.69418463080585], [-77.2709478966738, 34.69358213707526], [-77.26671100716263, 34.69170270153108], [-77.26670615500741, 34.6917010921169], [-77.26670473402402, 34.69170051965303], [-77.26668303452935, 34.69170219052666], [-77.26285580964127, 34.688477680295605], [-77.25988977449377, 34.69075622046794], [-77.2598042706831, 34.69069945703176], [-77.25922173603257, 34.69077166621021], [-77.25741947740111, 34.69069536545842], [-77.25770247984867, 34.689163016838876], [-77.25749075549119, 34.68905863913494], [-77.25906193395198, 34.68496776042893], [-77.25355492302637, 34.68752168639105], [-77.25180202099111, 34.685936401463934], [-77.25049519688898, 34.685246563002856], [-77.24944400302618, 34.68519374054152], [-77.24895325304546, 34.68437582813498], [-77.24850326012184, 34.683625837923096], [-77.24841804614314, 34.68312197099598], [-77.24871412151998, 34.682459157841016], [-77.24912421061342, 34.68119328272639], [-77.25105219428877, 34.67967896720813], [-77.2526206299395, 34.68046323418652], [-77.25314219238248, 34.68072402476935], [-77.2549189994673, 34.681612427317916], [-77.25507130478405, 34.681731533604264]], [[-77.33121669076628, 34.58954858011761], [-77.33113859328387, 34.589471390736676], [-77.33122026440049, 34.58954422069223], [-77.33122742819457, 34.589554405664664]], [[-77.29901787723496, 34.67950313814266], [-77.29891199380053, 34.68339716669508], [-77.29764883965856, 34.68412634364364], [-77.29406102118023, 34.68532224782315], [-77.29249689672389, 34.68537299433353], [-77.29095531532826, 34.685670273383664], [-77.29060511556462, 34.684533727015456], [-77.28915409995145, 34.68390309233997], [-77.28843533916327, 34.68287369279503], [-77.28701657493693, 34.68239439021305], [-77.28642284165602, 34.68120696767464], [-77.28497480340705, 34.67831093415403], [-77.28368866413925, 34.67864897930525], [-77.28359616034673, 34.67603212868823], [-77.2875116902205, 34.67571025015957], [-77.29070865001808, 34.675064376495214], [-77.29514694335067, 34.67606717247306], [-77.29520451868382, 34.6760703026877], [-77.29525619812665, 34.67606016434882], [-77.29902311670881, 34.67940379979404], [-77.2990156159111, 34.67947372316635], [-77.29901394639481, 34.679484409413234]], [[-77.25064791326767, 34.63260762924874], [-77.25243028353754, 34.63299382680094], [-77.2538724300986, 34.6336414806113], [-77.25354668236139, 34.63446201989327], [-77.25224626682324, 34.63620434538936], [-77.25112232079198, 34.63719581124029], [-77.25237024337437, 34.637841502395275], [-77.25279355503218, 34.638940676795606], [-77.25327178809393, 34.64244511554343], [-77.25327793283425, 34.644181509362205], [-77.25272468168637, 34.64592671454121], [-77.25212504849006, 34.64671613947755], [-77.25087732278543, 34.649497198785866], [-77.24721358215322, 34.64996005103942], [-77.24625183452862, 34.64600911757605], [-77.24757203075426, 34.644457900284706], [-77.24703049747704, 34.64277873191374], [-77.24655843391992, 34.64166516189369], [-77.24599905596128, 34.64056338056563], [-77.2461261992951, 34.640177923228975], [-77.24577303127438, 34.63947765968333], [-77.24459504956351, 34.636682057366784], [-77.24375513736689, 34.6351867976597], [-77.24310036745608, 34.6346790086336], [-77.24286190327554, 34.63405145490879], [-77.2419186645492, 34.63376262640401], [-77.24184348828511, 34.633637336933745], [-77.2420332266925, 34.63353641118893], [-77.24319613009722, 34.63341724412338], [-77.24508811293708, 34.63295015433386], [-77.24574099509356, 34.6328776197483], [-77.24819704794776, 34.63260469586885], [-77.24939433777858, 34.6323260560261]], [[-77.30778468360428, 34.59442121561631], [-77.30698882564111, 34.59295048461672], [-77.30675497836668, 34.59187048401829], [-77.30685589823986, 34.59105383398286], [-77.3073422158337, 34.59070829612203], [-77.30812091765974, 34.59012190196441], [-77.30925798504066, 34.59062932995673], [-77.3096286845192, 34.59077171365569], [-77.31109493390703, 34.59219068041174], [-77.31134903676252, 34.59235291496839], [-77.3118795340716, 34.59549467733176], [-77.3119214413852, 34.59565032561162], [-77.31194767945132, 34.59581365297575], [-77.31183522572114, 34.595884072776315], [-77.31170138883869, 34.59584727070573], [-77.31155257982807, 34.595700883142804]], [[-77.3092101934652, 34.60952536836829], [-77.30724606507037, 34.60925314314396], [-77.30656053771604, 34.6078809692225], [-77.30601424694672, 34.60710191408162], [-77.30554616830837, 34.60585047824627], [-77.30713060389634, 34.60489290908245], [-77.3084505562403, 34.604538755354824], [-77.30962638175515, 34.606092472097686], [-77.31050004115862, 34.60740296179246], [-77.31058926166013, 34.607894006856526], [-77.30958355505496, 34.60947420611518], [-77.30949428024554, 34.609540660946294], [-77.30945630883613, 34.6095563535502], [-77.30940920242956, 34.60956160293321]], [[-77.44784312942195, 34.55506611102007], [-77.44842281324199, 34.55503546540291], [-77.4509941558658, 34.55490000587062], [-77.45234370695454, 34.55509282657429], [-77.45376597715448, 34.55529603777468], [-77.4541455374469, 34.555350263874104], [-77.4548014258994, 34.55544395386434], [-77.45729653580712, 34.555158163371814], [-77.45956428550765, 34.554999387629636], [-77.4604479573983, 34.55561402253794], [-77.46159974490132, 34.55499451944128], [-77.46632404125016, 34.553068065743666], [-77.46666465329403, 34.55292869207432], [-77.46674810190837, 34.55284306668559], [-77.46705917711517, 34.55262601654018], [-77.4678553879893, 34.55284616547198], [-77.46707065888471, 34.55330723029152], [-77.46913353985694, 34.55605785344884], [-77.4693465435434, 34.55662585206659], [-77.4703950192141, 34.55927190283101], [-77.46852150735, 34.56144796529256], [-77.46852151211883, 34.56443508713639], [-77.46852157365922, 34.5660892909442], [-77.46845849012294, 34.56718748242613], [-77.46732831344457, 34.56867324872234], [-77.4651843465442, 34.56851890227049], [-77.46103281465584, 34.567421989774076], [-77.46045567419911, 34.566894585220965], [-77.45972131626885, 34.56682045095991], [-77.45979510559111, 34.56760123517748], [-77.46017259887002, 34.567852380480105], [-77.45979985822208, 34.57099740085333], [-77.46009274024088, 34.571349459289586], [-77.46045942572034, 34.572327248256585], [-77.46131453143789, 34.57325396232669], [-77.46112735297915, 34.574108298172874], [-77.46128726245959, 34.57458777573017], [-77.46120680415765, 34.577023273243356], [-77.46120715660665, 34.577037245983796], [-77.46120416176089, 34.57704054112475], [-77.46062445983483, 34.579310803323246], [-77.46100277919521, 34.58005215180188], [-77.4611140970623, 34.580815048988754], [-77.46111415061768, 34.58195968143155], [-77.46111418027215, 34.58297452518257], [-77.46085431174937, 34.5834132411042], [-77.4603289823827, 34.58416242258613], [-77.4596627822422, 34.584865773464806], [-77.4592648278117, 34.5852859224624], [-77.458425163615, 34.58597372072032], [-77.4567900601034, 34.5871625197843], [-77.45614351179279, 34.587652795004146], [-77.45579990478296, 34.587987531228194], [-77.45465791832683, 34.58871264522101], [-77.45182966869149, 34.58862065420219], [-77.45312711591771, 34.58968461934716], [-77.45221783332829, 34.59026194948393], [-77.45154852613169, 34.59068689614835], [-77.45122488416514, 34.590227268870194], [-77.4517228727789, 34.588644936908295], [-77.45174266606818, 34.588602531919214], [-77.45175824897728, 34.5885830328337], [-77.45458632871026, 34.587107830434675], [-77.45376477152881, 34.585071558820076], [-77.45438485152899, 34.58281858182214], [-77.45458936613669, 34.58215377899843], [-77.4545843593645, 34.58188363868011], [-77.45457373433847, 34.58150040680918], [-77.45416186387865, 34.57860736294173], [-77.45416186395737, 34.578605131655145], [-77.45416203933368, 34.57521520469797], [-77.45416177450058, 34.57521055546832], [-77.45415996850868, 34.575208356454716], [-77.45415768378801, 34.575205574381364], [-77.45179251281357, 34.57215668534242], [-77.45188549701201, 34.5711925875183], [-77.45100349074987, 34.571209825617544], [-77.44926649792959, 34.56912547784521], [-77.44863640965497, 34.56836932106008], [-77.44784962265851, 34.56724525641906], [-77.44691844304545, 34.56606848783097], [-77.44639574687051, 34.56431264359129], [-77.44572275005214, 34.56284469343518], [-77.44439285416014, 34.55996541666036], [-77.44420516943583, 34.5596675340968], [-77.44401169745854, 34.55896015281844], [-77.44469364939985, 34.55841031760787], [-77.44626588457837, 34.555972546433864], [-77.4472129714679, 34.55515613348814]], [[-77.23741632107196, 34.654573654256474], [-77.2384661025976, 34.653904037932335], [-77.24154613582763, 34.65364768891942], [-77.24549754218575, 34.65334841189941], [-77.24669184342059, 34.65418464894038], [-77.24994018858274, 34.65813957467681], [-77.24885040633414, 34.659684561198404], [-77.2479353814246, 34.660407217582055], [-77.24598946779773, 34.66235299602486], [-77.24561562381453, 34.66228006926409], [-77.24308830718442, 34.66178697786104], [-77.24151913799494, 34.66120256688275], [-77.23981528508705, 34.66017330662964], [-77.23889124493658, 34.659727257046], [-77.23729912530493, 34.65873215731815], [-77.23708739669975, 34.65825447622085], [-77.23726208207529, 34.65628069053579], [-77.2372788778593, 34.65524383182866], [-77.23739435741918, 34.65496887274761]], [[-77.32737211929123, 34.71367229553603], [-77.32795639931453, 34.71396441064618], [-77.32881140561847, 34.714391925186206], [-77.33044092361365, 34.71520668216124], [-77.33134099813444, 34.716498137511216], [-77.3318099008379, 34.717306835692696], [-77.33252773610691, 34.717781421109756], [-77.33270771551926, 34.71960383299751], [-77.32972554253605, 34.71890976207589], [-77.32557898153848, 34.719839737743136], [-77.32420299329445, 34.718922457279014], [-77.32275990108464, 34.717960372959354], [-77.32194783504275, 34.715852393275746], [-77.32145255254035, 34.71540041266064], [-77.32237109586711, 34.714396841308776], [-77.32578725711194, 34.71346813400321]], [[-77.351039413244, 34.59179078595169], [-77.35013183822882, 34.59339162448164], [-77.34970480524663, 34.59322082032364], [-77.34817766378701, 34.592610002437866], [-77.34725566430966, 34.59093309628568], [-77.34955191795645, 34.59093296684515], [-77.35013358521613, 34.59055571917313]], [[-77.3265076117673, 34.56984840218251], [-77.32650512763502, 34.569845734901264], [-77.32650546970744, 34.56984337261704], [-77.32650019977811, 34.56899737123436], [-77.32650842056344, 34.56896455186894], [-77.32666070391443, 34.56881036548023], [-77.32651362885987, 34.56899544164218], [-77.3265089846594, 34.569843705962704], [-77.32650868901347, 34.56984522318617], [-77.32650836825567, 34.569846082139435]], [[-77.45019193085474, 34.591260443606835], [-77.45033676232303, 34.591070465361845], [-77.45082203639774, 34.59108070486127], [-77.4504012156117, 34.59130593305846], [-77.45006221498659, 34.591590290212416]], [[-77.32690284184245, 34.56847976535313], [-77.32674368497491, 34.56811331286334], [-77.32690328075549, 34.56799805890835], [-77.32696221653293, 34.56808191162569]]]]}, "type": "Feature", "id": "demo15", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5397748212877, 34.70991896828104], [-77.53919987884883, 34.710786247812024], [-77.53480311372294, 34.711691829927105], [-77.5331663376498, 34.71173748022372], [-77.53041425669, 34.71515174620955], [-77.5342711382839, 34.713538497966894], [-77.54010000002032, 34.711099999987155]], [[-77.53549704160116, 34.69437967925123], [-77.53459440921435, 34.694321818571616], [-77.53014171687715, 34.69398926146026], [-77.52700058961042, 34.69410656373873], [-77.52214668247758, 34.69493396052047], [-77.5188202375056, 34.69498230232841], [-77.51767257308444, 34.694599746494404], [-77.51649065776456, 34.694205773002196], [-77.51532074043885, 34.6938157614926], [-77.514184769456, 34.69343712750825], [-77.51296883489856, 34.6930318158917], [-77.51171646302579, 34.692614360935394], [-77.50941417312781, 34.69139954740028], [-77.50851872989544, 34.69115369331781], [-77.50750040202463, 34.6908634653319], [-77.50783455847073, 34.68994092499592], [-77.5058466433411, 34.687100829832985], [-77.50546954551632, 34.68553411189585], [-77.50496307315305, 34.68452110819863], [-77.50464387093174, 34.68387372239519], [-77.50431617200759, 34.68290882911305], [-77.50425419096898, 34.68172768863151], [-77.50405521133517, 34.68002878284315], [-77.50389474210874, 34.6786584532653], [-77.50387642844586, 34.677125282621375], [-77.50380292299057, 34.67614953121929], [-77.50359522655954, 34.675212947503546], [-77.50339462846269, 34.674308297045954], [-77.50285538622819, 34.67334186788209], [-77.5025579702103, 34.67282142519749], [-77.50193516907558, 34.67177043060347], [-77.50167084959796, 34.67024626175779], [-77.50000346440913, 34.669367395145144], [-77.4996748941821, 34.669027645117666], [-77.49900617171691, 34.668841719296914], [-77.49546401939087, 34.670518217515756], [-77.49528207923964, 34.67060791546553], [-77.49510737313113, 34.67063681609187], [-77.48905788443729, 34.67103343707073], [-77.48686872506589, 34.67062587736416], [-77.48089770369334, 34.66891112521178], [-77.47941652039158, 34.66818559524347], [-77.47761130417481, 34.66756724542848], [-77.46919950965045, 34.66604161260525], [-77.46777246016882, 34.66083810465854], [-77.46766375039186, 34.66060202871482], [-77.46691497379138, 34.65812845361201], [-77.46648794964786, 34.65770161443938], [-77.4642830896914, 34.65741802835545], [-77.4623867478646, 34.65646558651296], [-77.4590589891276, 34.65648766954895], [-77.45766209038415, 34.65620827417626], [-77.45638279611263, 34.65710670000643], [-77.45649545314461, 34.65814549575997], [-77.45604346461946, 34.66017347716533], [-77.45603845041438, 34.66194126348326], [-77.45359372949876, 34.663167448908425], [-77.45148463460946, 34.66437893843515], [-77.44922821495967, 34.66451528012974], [-77.44769850285832, 34.665920629888575], [-77.44754633056252, 34.66660471319541], [-77.44671888823846, 34.66859301791638], [-77.44679677782753, 34.66977236997022], [-77.44544272247155, 34.67304838390048], [-77.44542648065172, 34.67309631734466], [-77.44542444226536, 34.67311751509488], [-77.44537663154934, 34.6732082699124], [-77.44433479972136, 34.67519220400568], [-77.44329583451689, 34.67575040799463], [-77.4421724542495, 34.67647466995445], [-77.44126378314209, 34.67578007372767], [-77.44053919359982, 34.67546084893444], [-77.43961308400525, 34.674779996394626], [-77.43961094939178, 34.674773997935766], [-77.43959722696367, 34.674756473527076], [-77.43893106181764, 34.673768255535265], [-77.4385204229444, 34.673159059186055], [-77.43858909715232, 34.67211113174609], [-77.43652360190131, 34.669983040132564], [-77.43651373984365, 34.66974844758349], [-77.43647259024412, 34.669457547153314], [-77.4346798719787, 34.6643827676188], [-77.43468103221335, 34.66436268093987], [-77.43466670711366, 34.664349936936], [-77.4346198144589, 34.66426621984872], [-77.43197198300578, 34.66032832244234], [-77.43111455101729, 34.65947080650491], [-77.43017913244756, 34.65785277169662], [-77.43247197221845, 34.65642145785155], [-77.43409662209203, 34.65426780422918], [-77.4358905889349, 34.65353850955614], [-77.43634894279222, 34.652071661190895], [-77.43664740434683, 34.65020472871695], [-77.43762802277902, 34.64875321931741], [-77.4385432004674, 34.64785878175088], [-77.44066497984004, 34.6466548103469], [-77.44424673582449, 34.645330503311115], [-77.4464326024188, 34.64593890010098], [-77.44913545492622, 34.64466238434721], [-77.4501494385741, 34.64414749635998], [-77.45177291510474, 34.64176731796842], [-77.45226653617006, 34.64080233771938], [-77.45314860895937, 34.63973703053953], [-77.45558723481174, 34.637008635439415], [-77.45645550081778, 34.63645088370783], [-77.45792918951935, 34.63592098192996], [-77.46035394247073, 34.63532422401185], [-77.46440103185505, 34.63532422933182], [-77.46478019845367, 34.63526833452293], [-77.4673175624243, 34.63437986556947], [-77.46836015368966, 34.63404260195527], [-77.46824168245291, 34.633403424676715], [-77.46788357866158, 34.63139861909402], [-77.46829266793185, 34.6311474503184], [-77.46791773774304, 34.6310238631024], [-77.4672753015846, 34.62987790490078], [-77.46682333141422, 34.628612447524375], [-77.46606916611772, 34.62596780500182], [-77.46604748837893, 34.62587958130157], [-77.46602620636877, 34.62579443982311], [-77.466033611315, 34.62534753409624], [-77.46609427669301, 34.62457954718045], [-77.46745940722161, 34.624267599572136], [-77.46788230894458, 34.62441850356626], [-77.46953738243087, 34.62488387563328], [-77.46983761749514, 34.62501744524361], [-77.47018802292746, 34.625156877099144], [-77.4721336727367, 34.62586773428302], [-77.47485757753137, 34.62684499570372], [-77.47750399921188, 34.624852621741695], [-77.47762503625665, 34.62257584039168], [-77.47776126708882, 34.6199879410416], [-77.47769723670524, 34.616646634672406], [-77.47760537453776, 34.61185688685112], [-77.47668729956527, 34.61102631270662], [-77.47727611121633, 34.609909347948026], [-77.47816720085865, 34.608231830731754], [-77.47886974130785, 34.605512012033536], [-77.47946438729774, 34.60432496369307], [-77.47988227282892, 34.601753342386935], [-77.48010499624462, 34.60098942747276], [-77.4796693758702, 34.59837018091569], [-77.47966776848386, 34.59835929661628], [-77.47966892182684, 34.598358000392004], [-77.47966339610171, 34.59834836684511], [-77.47868444154278, 34.595901234746194], [-77.47852977416817, 34.59548407959003], [-77.478703066017, 34.594844905216696], [-77.48014202843656, 34.59411756567117], [-77.4823948470405, 34.59297202063985], [-77.48407492100296, 34.592468535309465], [-77.48988981965154, 34.58963425197998], [-77.49005210315477, 34.5894842662087], [-77.48990609944015, 34.58948596336576], [-77.48944663954158, 34.58670279885137], [-77.48930354653069, 34.58656409405816], [-77.48883569783357, 34.584224486827154], [-77.4887786445668, 34.58393920073746], [-77.48867690035335, 34.583671770166866], [-77.48789080744243, 34.581416920210835], [-77.48797763624871, 34.58121359596927], [-77.48708348742545, 34.579398801821554], [-77.48678939739777, 34.578663639672136], [-77.48678353683071, 34.578600281589175], [-77.48676071992998, 34.578544553822425], [-77.48676374314769, 34.57823243639821], [-77.4887263424243, 34.575090953508266], [-77.4895811346868, 34.57457647112723], [-77.49125896100443, 34.57141303231954], [-77.49218737583747, 34.57053352769256], [-77.49217663620824, 34.56730593083624], [-77.49236155499854, 34.5656401558046], [-77.49238033191631, 34.56518386049658], [-77.49242080944695, 34.5644504608498], [-77.49365061728534, 34.55891200973107], [-77.49215281264877, 34.55565844797621], [-77.49535319193812, 34.54822663681411], [-77.49494164151278, 34.54672542351464], [-77.49419067587529, 34.54398560630612], [-77.49343976490282, 34.54124578122832], [-77.49269886150402, 34.53854226592972], [-77.49172672941532, 34.54064650944537], [-77.4913851972225, 34.5414162315684], [-77.49080333129098, 34.54081528778177], [-77.48892862835817, 34.54011955755787], [-77.48855977584431, 34.539903630007046], [-77.48836675183895, 34.53968131620844], [-77.4856396533691, 34.53804503756888], [-77.4848907580434, 34.53759567571977], [-77.48277782166907, 34.537095148780054], [-77.48249136633963, 34.53699792094707], [-77.48194704844154, 34.537215645440355], [-77.47983762426853, 34.53805940472333], [-77.4793391366417, 34.538420103549484], [-77.47760829846939, 34.53971228181207], [-77.47578653134067, 34.54106986251359], [-77.47445253017301, 34.54357590763947], [-77.47500000080419, 34.54501683741201], [-77.47395812875719, 34.54615280152499], [-77.47304540395422, 34.547148734106045], [-77.47196586645991, 34.54885359004567], [-77.4730480953797, 34.55040832290724], [-77.47337035159285, 34.55170065890236], [-77.47616758433543, 34.55160644690758], [-77.47619998281127, 34.55154530677401], [-77.47853384450858, 34.55041854873415], [-77.47934889380977, 34.549290158802016], [-77.48015062824477, 34.55020042608816], [-77.48101050819712, 34.550705744977094], [-77.48585304791035, 34.55053646936467], [-77.48703009858602, 34.553866667707744], [-77.4877995556574, 34.55467502860383], [-77.48814964354592, 34.555042806634006], [-77.49001639177527, 34.55986566108964], [-77.49000296889088, 34.559954296240456], [-77.48999255251718, 34.560104911928164], [-77.4893734743719, 34.564595130992885], [-77.4893557259587, 34.566047984226365], [-77.48899952671583, 34.5686394084435], [-77.48900212287673, 34.56941963656703], [-77.48617297892122, 34.57209973721893], [-77.48531469617754, 34.57294607482761], [-77.4851121496007, 34.57301359023222], [-77.48490930580824, 34.573226863367054], [-77.48251403071995, 34.574582126839914], [-77.48280511573729, 34.57622235865998], [-77.48329081804158, 34.57664345652893], [-77.48328418049795, 34.57732871747463], [-77.48411663701303, 34.57936190081663], [-77.4843304551508, 34.58167347018978], [-77.4845393229873, 34.5821955950943], [-77.48474664046532, 34.58279462398033], [-77.4840898856784, 34.585278237776265], [-77.48356358084649, 34.587335349070784], [-77.4812528768132, 34.5888060437651], [-77.47743228110531, 34.59011581987048], [-77.47738607357704, 34.59012954719115], [-77.47711429826148, 34.590224420712524], [-77.47371956373173, 34.59132449879614], [-77.4743679091611, 34.59386549747984], [-77.47445176446665, 34.59393880610645], [-77.47442226795178, 34.594047601854975], [-77.47622521419238, 34.59891034891144], [-77.47637987209185, 34.59929695348534], [-77.47644871828705, 34.599710903727996], [-77.47613057474064, 34.600802098379305], [-77.47499735778084, 34.60415795987897], [-77.47115465295965, 34.606696881896106], [-77.47078130765182, 34.60763826554309], [-77.46980588967665, 34.608415701924834], [-77.46836188535416, 34.60853026369516], [-77.46775217217535, 34.60859522967689], [-77.467278122606, 34.608890500163156], [-77.4676330038636, 34.609179040340976], [-77.46774481869447, 34.609285071167996], [-77.46933099398757, 34.61017159761806], [-77.46976671230809, 34.612238169322964], [-77.47027856543555, 34.61285542628433], [-77.47054023753033, 34.6131825283191], [-77.47171549882307, 34.61538328905715], [-77.47344427880984, 34.61694730071366], [-77.4734616973895, 34.61785551577498], [-77.47347383860465, 34.618489082485], [-77.47332771973608, 34.621264819218254], [-77.47068545808386, 34.62246882800876], [-77.46937730402024, 34.622199172219354], [-77.46919356917029, 34.622146673692825], [-77.46867596194262, 34.62217542589699], [-77.46518980808055, 34.62226852108361], [-77.46437426213184, 34.62340272478272], [-77.46357853276929, 34.62493852166304], [-77.46361566208735, 34.62530995899158], [-77.46391043320747, 34.626489229594696], [-77.46431069015286, 34.62811818864452], [-77.46463006080106, 34.6292381303875], [-77.46504753015736, 34.630406989995926], [-77.46363350950894, 34.63193989388802], [-77.46116789935635, 34.631961159189025], [-77.45943361146394, 34.63196559783961], [-77.45754219775844, 34.63273733217767], [-77.45562383449379, 34.633415339747714], [-77.45236732788025, 34.63540494361173], [-77.45201471064846, 34.63559794360291], [-77.45179985138003, 34.635684051756044], [-77.4513768578127, 34.6359720726435], [-77.44844697491199, 34.639466444681474], [-77.44515044090508, 34.641257379019045], [-77.44379785148912, 34.642795422941084], [-77.43835031405719, 34.64522196341851], [-77.43790778287708, 34.64553805319896], [-77.43777546533315, 34.64564398941353], [-77.43761366300643, 34.6458033570597], [-77.43457940601309, 34.648749329692976], [-77.43326906857565, 34.649022816718826], [-77.43277040771383, 34.649826317091346], [-77.431815962331, 34.649549118606565], [-77.43027625010009, 34.648400245726414], [-77.42991683035541, 34.64821275266669], [-77.4295581135507, 34.6480986526904], [-77.4270642078265, 34.64685164352842], [-77.42568569518966, 34.64624795042015], [-77.42563144410163, 34.64613523448166], [-77.4254382026258, 34.6460962039364], [-77.42540154523503, 34.64626980933895], [-77.42536623621773, 34.64633895320235], [-77.42479598462151, 34.64715581239975], [-77.42415569145204, 34.648311651586404], [-77.4239660192287, 34.64840425623113], [-77.42341622432443, 34.64984825378001], [-77.42332778542362, 34.650499767569926], [-77.42332772918158, 34.652605508026], [-77.42344921410647, 34.65279269751983], [-77.4233277156012, 34.653760043695655], [-77.42325258679284, 34.6554291691787], [-77.42288454242183, 34.655907339044965], [-77.42298466938124, 34.656680656111355], [-77.42261584433308, 34.65893771603129], [-77.42377882313818, 34.66056900801324], [-77.42455758691744, 34.66133853666004], [-77.4247555850563, 34.6618301163763], [-77.42599604736426, 34.663509980010986], [-77.42628615566181, 34.66380010173707], [-77.42784969950458, 34.66536367544835], [-77.42838297249641, 34.66615671086739], [-77.42958257997947, 34.66755517130174], [-77.43079230961972, 34.669082546305866], [-77.43157067473858, 34.668500362023195], [-77.43469456590063, 34.67026669245275], [-77.43508492693866, 34.671152619139484], [-77.4365584448768, 34.672689670393346], [-77.43676063822487, 34.67276259808789], [-77.43707391333345, 34.67322734913013], [-77.43811252052728, 34.67476815725126], [-77.43835723633373, 34.67513117918996], [-77.43872690633484, 34.675708933834315], [-77.43875337702175, 34.67576488954996], [-77.43880573860405, 34.67576889710438], [-77.43891989833931, 34.675776421642205], [-77.43985953857259, 34.67571403390529], [-77.44015445299719, 34.67593084759149], [-77.44038229456906, 34.67603122535631], [-77.44100091488495, 34.67650410419412], [-77.44042695647578, 34.676880328960934], [-77.44042715680466, 34.677421565056235], [-77.4399983011888, 34.67767503716346], [-77.43993781033633, 34.677809497739666], [-77.43969898357173, 34.6779334651355], [-77.43964090653824, 34.678072766367706], [-77.43965482429627, 34.6782695880328], [-77.43964569858409, 34.67840323392029], [-77.43979880303056, 34.67831993323589], [-77.43991860086582, 34.67829246090162], [-77.44000219076204, 34.678278307440685], [-77.44033308207325, 34.678222280268315], [-77.44067590627846, 34.67816423150256], [-77.4411217122223, 34.67801599047398], [-77.44207995009225, 34.67774026202784], [-77.44269959995933, 34.67760443697941], [-77.44362981285326, 34.6774232888054], [-77.44609132725483, 34.67588151251867], [-77.44617607925166, 34.67583597788239], [-77.44619610219057, 34.675797848704434], [-77.44726405876185, 34.67373876316177], [-77.44936300760263, 34.67199500140698], [-77.45010959155276, 34.66977851823399], [-77.45261966602595, 34.66852059889371], [-77.45622092348123, 34.66727242142532], [-77.45878415636977, 34.66930948442273], [-77.45981325312526, 34.670198024945975], [-77.46090444941369, 34.67355187017199], [-77.46141819085041, 34.674466879069], [-77.4618962275558, 34.674968611704834], [-77.46247079051052, 34.679054037605454], [-77.46299460211638, 34.67992579292948], [-77.46338975647663, 34.68045983546211], [-77.46406406758906, 34.682575074850234], [-77.46412316915725, 34.68322187659877], [-77.46441985777611, 34.68395074287608], [-77.46443645642171, 34.68469563681216], [-77.46420283048383, 34.68567273464267], [-77.46491664549356, 34.6874026891537], [-77.46613372028898, 34.68843781418508], [-77.46684772166192, 34.68959027103138], [-77.46833445452305, 34.68959030858154], [-77.4694146766498, 34.68957671887745], [-77.4733315022329, 34.68900257889417], [-77.47474609230244, 34.68886555547096], [-77.47514699998864, 34.68876050487424], [-77.47511649943279, 34.688426609907], [-77.47518785773089, 34.688265835191025], [-77.47545408854288, 34.687666096849156], [-77.47636431858129, 34.68497598734281], [-77.47703777268472, 34.684143248414586], [-77.47734926832834, 34.68195185162158], [-77.47739500733728, 34.68172771578122], [-77.47746345127123, 34.67933751720473], [-77.48001653588322, 34.67633231856191], [-77.48165664113219, 34.67584778342005], [-77.48598468211944, 34.67479156457871], [-77.48799480491142, 34.67472775018167], [-77.49186798352355, 34.674916283222075], [-77.49316079726633, 34.67491114015433], [-77.49632524285065, 34.67440627146881], [-77.49729919052959, 34.67387908633885], [-77.49925890380464, 34.673196654041476], [-77.50025482084973, 34.67338762103147], [-77.50043062597285, 34.67367722470365], [-77.50099795487455, 34.67472968628457], [-77.50112445821523, 34.67495640539139], [-77.50118650046666, 34.67523620142146], [-77.50123264340391, 34.676402786002555], [-77.50132226838211, 34.67727336030247], [-77.50132141995924, 34.67776023024416], [-77.50122906834626, 34.67788106233494], [-77.50132492473499, 34.67799001271296], [-77.50133539153187, 34.68080522085856], [-77.50179721578188, 34.68107263004814], [-77.50203352240462, 34.68296262932516], [-77.50218157755084, 34.68351820224396], [-77.50231835081846, 34.68409555135936], [-77.50328041496147, 34.68587474084887], [-77.50294398680398, 34.68625508980703], [-77.50331208719165, 34.68836266910715], [-77.50224308748327, 34.689409686561085], [-77.50145972903721, 34.690193091878676], [-77.50083395947973, 34.69081886439146], [-77.50028101869827, 34.69144699422712], [-77.50101318397279, 34.691471122936], [-77.50228083955375, 34.69146215694951], [-77.50276764136717, 34.69221449035836], [-77.50559208958245, 34.692812228728776], [-77.50685191661651, 34.69319244482688], [-77.50825098822816, 34.69360376214331], [-77.51016541774028, 34.69413238795985], [-77.51166144841959, 34.69463106206412], [-77.51320239872985, 34.695144712290976], [-77.51480078617544, 34.69567749942866], [-77.51636528666971, 34.69619900186874], [-77.51943641687826, 34.697222714686376], [-77.52700319363746, 34.697112749942676], [-77.52734703912729, 34.697408982212636], [-77.5278512272183, 34.69719841797819], [-77.52825002118871, 34.69706265480276], [-77.53388701877206, 34.696729835757466], [-77.53629499526672, 34.69727881933787], [-77.53557524433725, 34.69466382640092]], [[-77.50487503875539, 34.5829467482578], [-77.50169180019711, 34.58237689025903], [-77.49930314219858, 34.582929729424905], [-77.50006390925506, 34.58437009235065], [-77.50282759772578, 34.5858344637224], [-77.50604728353369, 34.587218862814424], [-77.50546090592917, 34.585082037341905]], [[-77.25507130478405, 34.681731533604264], [-77.2549189994673, 34.68161242731792], [-77.25314219238248, 34.68072402476935], [-77.2526206299395, 34.68046323418652], [-77.25105219428877, 34.67967896720813], [-77.24912421061342, 34.68119328272639], [-77.24871412151998, 34.682459157841016], [-77.24841804614314, 34.68312197099598], [-77.24850326012184, 34.683625837923096], [-77.24895325304546, 34.68437582813498], [-77.24944400302618, 34.68519374054152], [-77.25049519688898, 34.685246563002856], [-77.25180202099111, 34.685936401463934], [-77.25355492302637, 34.68752168639105], [-77.25906193395197, 34.68496776042893], [-77.25749075549119, 34.68905863913494], [-77.25770247984867, 34.689163016838876], [-77.25741947740111, 34.690695365458424], [-77.25922173603257, 34.69077166621021], [-77.2598042706831, 34.69069945703176], [-77.25988977449376, 34.69075622046794], [-77.26285580964125, 34.688477680295605], [-77.26668303452935, 34.69170219052666], [-77.26670473402402, 34.69170051965303], [-77.26670615500741, 34.6917010921169], [-77.26671100716263, 34.69170270153108], [-77.2709478966738, 34.69358213707527], [-77.27167461972255, 34.69418463080585], [-77.27302641632942, 34.69473433477822], [-77.27511067086712, 34.69573476219135], [-77.27789981638838, 34.695704118439096], [-77.28235928110655, 34.69537466819949], [-77.28523721600504, 34.693065397123476], [-77.28541848981538, 34.69298021780712], [-77.28479346221731, 34.690406518549715], [-77.28350341763377, 34.689403680267084], [-77.28243398344723, 34.68703652120327], [-77.28088061847279, 34.68711040244269], [-77.28022672715147, 34.68595289070031], [-77.27904828886791, 34.68536711350071], [-77.27836860777822, 34.68455067461428], [-77.27581487109317, 34.68470042786167], [-77.26970670266785, 34.683491791199856], [-77.27502768864136, 34.67864438360828], [-77.27810219391208, 34.67454704219312], [-77.27220731549941, 34.67394019896955], [-77.27100654667949, 34.67329667705876], [-77.26864425836769, 34.671808354146336], [-77.26765993206746, 34.671925839098385], [-77.26578825697031, 34.67282397764312], [-77.26356799597173, 34.673443926361145], [-77.26312975588417, 34.6735308510117], [-77.2623189652008, 34.67332785791548], [-77.26076539753558, 34.67332785026845], [-77.25859176474916, 34.67332434816717], [-77.25819815970125, 34.67330076140274], [-77.25756298782588, 34.67317374708931], [-77.25570976371141, 34.67366785317173], [-77.25479816734338, 34.67435466559916], [-77.25503438632357, 34.67615316067807], [-77.25455691107679, 34.67776320718036], [-77.25486091768951, 34.67874228753687], [-77.25550756601002, 34.68082464427458], [-77.25560879121491, 34.68131864122967], [-77.25609552656931, 34.6814518270893], [-77.25888767508728, 34.68475467200884], [-77.25517363142882, 34.68197003564303]], [[-77.33122742819457, 34.589554405664664], [-77.33122026440049, 34.589544220692225], [-77.33113859328387, 34.589471390736676], [-77.33121669076628, 34.58954858011761]], [[-77.29901394639481, 34.679484409413234], [-77.2990156159111, 34.67947372316635], [-77.29902311670881, 34.67940379979404], [-77.29525619812665, 34.67606016434882], [-77.29520451868382, 34.6760703026877], [-77.29514694335067, 34.67606717247306], [-77.29070865001808, 34.675064376495214], [-77.2875116902205, 34.67571025015957], [-77.28359616034673, 34.67603212868823], [-77.28368866413925, 34.67864897930525], [-77.28497480340705, 34.67831093415403], [-77.28642284165602, 34.68120696767464], [-77.28701657493693, 34.68239439021305], [-77.28843533916327, 34.682873692795035], [-77.28915409995145, 34.68390309233997], [-77.29060511556462, 34.684533727015456], [-77.29095531532826, 34.685670273383664], [-77.29249689672389, 34.68537299433353], [-77.29406102118023, 34.68532224782315], [-77.29764883965856, 34.68412634364364], [-77.29891199380053, 34.68339716669508], [-77.29901787723496, 34.67950313814266]], [[-77.24939433777858, 34.6323260560261], [-77.24819704794776, 34.63260469586885], [-77.24574099509354, 34.63287761974829], [-77.24508811293708, 34.63295015433386], [-77.24319613009722, 34.63341724412338], [-77.2420332266925, 34.63353641118893], [-77.24184348828511, 34.633637336933745], [-77.2419186645492, 34.63376262640401], [-77.24286190327554, 34.63405145490879], [-77.24310036745608, 34.6346790086336], [-77.24375513736689, 34.6351867976597], [-77.24459504956351, 34.636682057366784], [-77.24577303127438, 34.63947765968333], [-77.2461261992951, 34.640177923228975], [-77.24599905596126, 34.64056338056563], [-77.24655843391992, 34.64166516189369], [-77.24703049747706, 34.64277873191374], [-77.24757203075424, 34.644457900284706], [-77.24625183452864, 34.64600911757605], [-77.24721358215322, 34.64996005103942], [-77.25087732278543, 34.649497198785866], [-77.25212504849006, 34.64671613947755], [-77.25272468168637, 34.64592671454121], [-77.25327793283425, 34.644181509362205], [-77.25327178809393, 34.64244511554343], [-77.25279355503218, 34.638940676795606], [-77.25237024337437, 34.637841502395275], [-77.25112232079198, 34.63719581124029], [-77.25224626682325, 34.63620434538936], [-77.25354668236139, 34.63446201989327], [-77.2538724300986, 34.6336414806113], [-77.25243028353754, 34.63299382680094], [-77.25064791326767, 34.63260762924874]], [[-77.31155257982807, 34.595700883142804], [-77.31170138883869, 34.59584727070573], [-77.31183522572114, 34.595884072776315], [-77.31194767945132, 34.59581365297575], [-77.31192144138521, 34.59565032561162], [-77.3118795340716, 34.59549467733176], [-77.31134903676251, 34.59235291496839], [-77.31109493390703, 34.59219068041174], [-77.3096286845192, 34.59077171365569], [-77.30925798504066, 34.59062932995673], [-77.30812091765974, 34.59012190196441], [-77.3073422158337, 34.59070829612203], [-77.30685589823986, 34.59105383398286], [-77.30675497836668, 34.59187048401829], [-77.3069888256411, 34.59295048461672], [-77.30778468360428, 34.59442121561631]], [[-77.30940920242956, 34.60956160293321], [-77.30945630883613, 34.6095563535502], [-77.30949428024554, 34.609540660946294], [-77.30958355505496, 34.60947420611518], [-77.31058926166013, 34.607894006856526], [-77.31050004115862, 34.60740296179246], [-77.30962638175515, 34.606092472097686], [-77.3084505562403, 34.604538755354824], [-77.30713060389635, 34.60489290908245], [-77.30554616830835, 34.60585047824627], [-77.30601424694672, 34.60710191408162], [-77.30656053771604, 34.6078809692225], [-77.30724606507037, 34.60925314314396], [-77.3092101934652, 34.60952536836829]], [[-77.4472129714679, 34.55515613348814], [-77.44626588457838, 34.555972546433864], [-77.44469364939985, 34.55841031760787], [-77.44401169745854, 34.55896015281844], [-77.44420516943583, 34.5596675340968], [-77.44439285416016, 34.55996541666036], [-77.44572275005214, 34.56284469343518], [-77.44639574687051, 34.56431264359129], [-77.44691844304546, 34.56606848783097], [-77.44784962265851, 34.56724525641907], [-77.44863640965497, 34.56836932106008], [-77.44926649792959, 34.56912547784521], [-77.45100349074987, 34.571209825617544], [-77.45188549701201, 34.5711925875183], [-77.45179251281357, 34.57215668534242], [-77.45415768378801, 34.575205574381364], [-77.45415996850868, 34.57520835645472], [-77.45416177450058, 34.575210555468324], [-77.45416203933368, 34.57521520469796], [-77.45416186395737, 34.578605131655145], [-77.45416186387865, 34.57860736294173], [-77.45457373433845, 34.58150040680918], [-77.4545843593645, 34.58188363868011], [-77.45458936613669, 34.58215377899843], [-77.45438485152899, 34.58281858182213], [-77.4537647715288, 34.585071558820076], [-77.45458632871026, 34.587107830434675], [-77.45175824897728, 34.5885830328337], [-77.45174266606818, 34.588602531919214], [-77.4517228727789, 34.588644936908295], [-77.45122488416514, 34.590227268870194], [-77.45154852613169, 34.59068689614835], [-77.45221783332829, 34.59026194948393], [-77.45312711591771, 34.58968461934716], [-77.45182966869149, 34.58862065420219], [-77.45465791832683, 34.58871264522101], [-77.45579990478296, 34.58798753122819], [-77.45614351179279, 34.587652795004146], [-77.4567900601034, 34.5871625197843], [-77.45842516361499, 34.58597372072032], [-77.4592648278117, 34.585285922462404], [-77.4596627822422, 34.584865773464806], [-77.4603289823827, 34.58416242258613], [-77.46085431174937, 34.5834132411042], [-77.46111418027215, 34.58297452518257], [-77.46111415061766, 34.58195968143155], [-77.4611140970623, 34.58081504898876], [-77.46100277919521, 34.58005215180187], [-77.46062445983483, 34.579310803323246], [-77.46120416176089, 34.57704054112475], [-77.46120715660665, 34.577037245983796], [-77.46120680415765, 34.577023273243356], [-77.46128726245959, 34.57458777573017], [-77.46112735297913, 34.574108298172874], [-77.46131453143789, 34.57325396232669], [-77.46045942572033, 34.572327248256585], [-77.46009274024088, 34.571349459289586], [-77.45979985822208, 34.57099740085333], [-77.46017259887002, 34.567852380480105], [-77.45979510559111, 34.56760123517748], [-77.45972131626884, 34.5668204509599], [-77.46045567419911, 34.566894585220965], [-77.46103281465584, 34.56742198977407], [-77.4651843465442, 34.56851890227049], [-77.46732831344457, 34.56867324872234], [-77.46845849012294, 34.56718748242613], [-77.46852157365925, 34.5660892909442], [-77.46852151211883, 34.56443508713639], [-77.46852150735, 34.56144796529256], [-77.4703950192141, 34.55927190283101], [-77.4693465435434, 34.55662585206659], [-77.46913353985694, 34.55605785344884], [-77.46707065888471, 34.55330723029152], [-77.46785538798929, 34.55284616547198], [-77.46705917711517, 34.55262601654018], [-77.46674810190837, 34.55284306668559], [-77.46666465329403, 34.55292869207432], [-77.46632404125016, 34.553068065743666], [-77.46159974490132, 34.55499451944128], [-77.4604479573983, 34.55561402253794], [-77.45956428550765, 34.554999387629636], [-77.45729653580712, 34.555158163371814], [-77.4548014258994, 34.55544395386434], [-77.4541455374469, 34.555350263874104], [-77.45376597715448, 34.55529603777468], [-77.45234370695454, 34.55509282657429], [-77.4509941558658, 34.55490000587063], [-77.44842281324199, 34.55503546540291], [-77.44784312942195, 34.55506611102007]], [[-77.23739435741918, 34.65496887274761], [-77.2372788778593, 34.65524383182867], [-77.23726208207529, 34.65628069053579], [-77.23708739669974, 34.65825447622085], [-77.23729912530493, 34.65873215731815], [-77.23889124493658, 34.659727257046], [-77.23981528508705, 34.66017330662964], [-77.24151913799494, 34.66120256688275], [-77.24308830718441, 34.661786977861034], [-77.24561562381453, 34.66228006926409], [-77.24598946779773, 34.66235299602486], [-77.2479353814246, 34.66040721758206], [-77.24885040633414, 34.659684561198404], [-77.24994018858274, 34.65813957467681], [-77.24669184342059, 34.65418464894038], [-77.24549754218576, 34.65334841189941], [-77.24154613582763, 34.65364768891942], [-77.2384661025976, 34.653904037932335], [-77.23741632107196, 34.654573654256474]], [[-77.32578725711194, 34.71346813400321], [-77.32237109586711, 34.714396841308776], [-77.32145255254035, 34.71540041266064], [-77.32194783504275, 34.715852393275746], [-77.32275990108464, 34.717960372959354], [-77.32420299329445, 34.71892245727902], [-77.32557898153848, 34.719839737743136], [-77.32972554253605, 34.71890976207589], [-77.33270771551926, 34.71960383299751], [-77.33252773610693, 34.717781421109756], [-77.3318099008379, 34.717306835692696], [-77.33134099813444, 34.716498137511216], [-77.33044092361365, 34.71520668216124], [-77.32881140561847, 34.714391925186206], [-77.32795639931453, 34.71396441064618], [-77.32737211929123, 34.71367229553603]], [[-77.35013358521613, 34.59055571917313], [-77.34955191795645, 34.59093296684515], [-77.34725566430966, 34.59093309628568], [-77.34817766378701, 34.592610002437866], [-77.34970480524663, 34.59322082032364], [-77.35013183822882, 34.59339162448164], [-77.351039413244, 34.59179078595169]], [[-77.32650836825567, 34.569846082139435], [-77.32650868901347, 34.56984522318617], [-77.3265089846594, 34.569843705962704], [-77.32651362885987, 34.56899544164218], [-77.32666070391443, 34.56881036548023], [-77.32650842056344, 34.56896455186894], [-77.32650019977811, 34.56899737123436], [-77.32650546970744, 34.56984337261704], [-77.32650512763502, 34.569845734901264], [-77.3265076117673, 34.56984840218251]], [[-77.45006221498659, 34.591590290212416], [-77.4504012156117, 34.59130593305846], [-77.45082203639774, 34.59108070486127], [-77.45033676232303, 34.591070465361845], [-77.45019193085474, 34.591260443606835]], [[-77.32696221653293, 34.56808191162569], [-77.32690328075549, 34.56799805890835], [-77.32674368497491, 34.56811331286334], [-77.32690284184245, 34.56847976535313]], [[-77.45099879446822, 34.563048159885945], [-77.45031627508659, 34.56291551163944], [-77.45056682878662, 34.562143670948686], [-77.44901549266086, 34.56110798443758], [-77.4487299866189, 34.55996587081921], [-77.44850002789568, 34.55904601534117], [-77.44942015511512, 34.557737787741644], [-77.44966266471282, 34.557440923734156], [-77.45060729156238, 34.557461184910906], [-77.45099574888357, 34.55770884477207], [-77.45165980387954, 34.5578729353958], [-77.45381602266798, 34.5579196256378], [-77.45414712087499, 34.55796692817352], [-77.45505673511308, 34.55809686147051], [-77.4541479251281, 34.55929145448872], [-77.45274613655276, 34.560316508331496], [-77.45160972586267, 34.56199271030553]], [[-77.46833473224629, 34.671193730479764], [-77.47030092021876, 34.671933945085705], [-77.47033636140256, 34.67196913652572], [-77.47047537425246, 34.67224059739719], [-77.47295688150813, 34.67608305619199], [-77.47276218237492, 34.677140480495], [-77.4723867454797, 34.6775640792882], [-77.47285890165102, 34.68006719525004], [-77.4733790393819, 34.68038799595172], [-77.47337910498734, 34.68282455003259], [-77.47337910678432, 34.6828652737814], [-77.4733667929703, 34.68287662593348], [-77.47043604599818, 34.684314417853145], [-77.46965008518833, 34.68457639665628], [-77.46893393605177, 34.68465927012466], [-77.46766458572314, 34.68501148646758], [-77.4670531912724, 34.68467703206569], [-77.46616523172787, 34.684384622637964], [-77.46616691844221, 34.68406158736903], [-77.46606857855647, 34.68348066684666], [-77.46582023155288, 34.68297703721966], [-77.46569210536838, 34.6826570239071], [-77.46588656038551, 34.68205545358677], [-77.46575959138589, 34.681221915129406], [-77.46532409139101, 34.680051090858385], [-77.46617068317471, 34.679020211266035], [-77.46566560611365, 34.67767830707823], [-77.4656562822825, 34.67521245850472], [-77.46544030020173, 34.673320056315916], [-77.46569791178817, 34.67032202855136], [-77.46567775158569, 34.67026529301627], [-77.46594957165341, 34.67001440352588]], [[-77.48176638272085, 34.54233726304076], [-77.48249186926552, 34.54087857435177], [-77.48258707679533, 34.54062267397481], [-77.4838052915195, 34.54062512519316], [-77.48406710881386, 34.54085106100208], [-77.48465421757633, 34.54128580431851], [-77.48564438383855, 34.54292125137451], [-77.48587691232379, 34.543189064130424], [-77.48612694315668, 34.54333543305391], [-77.48624254200557, 34.543682243305874], [-77.48582901261153, 34.54414504817524], [-77.48529776592748, 34.54389824045637], [-77.48445056259501, 34.54364640478207], [-77.48304336911897, 34.54325829196167], [-77.48249391048279, 34.543064778748715]], [[-77.45588565704595, 34.573262579480094], [-77.4573075045287, 34.57207870354804], [-77.4579553900497, 34.57296291078482], [-77.45845750532641, 34.573350113299504], [-77.45888483222555, 34.57423320572771], [-77.45898924312654, 34.5745116325481], [-77.45907943155034, 34.575988544849814], [-77.45908716960126, 34.576295317684924], [-77.45743132080263, 34.57811719955633], [-77.45741347604122, 34.57818708424266], [-77.45870051649322, 34.580709147824265], [-77.45876292918646, 34.58113688210739], [-77.45907914789149, 34.58207817647293], [-77.45907915688522, 34.582486310961464], [-77.4590791585039, 34.58281671056989], [-77.4588058174131, 34.58360952181965], [-77.4587997079172, 34.58362727860435], [-77.4587836733763, 34.58363956254522], [-77.45796649524652, 34.58438308810893], [-77.45689685918397, 34.58417794499847], [-77.45692257724015, 34.58411372796138], [-77.45734358229281, 34.58311769907387], [-77.45745459752621, 34.58254173807256], [-77.45731914329154, 34.58179974884297], [-77.4573063036183, 34.58110698446526], [-77.45722721867692, 34.57825448604007], [-77.45721454021276, 34.57816543048371], [-77.45721454389667, 34.57806101157281], [-77.45721456564543, 34.576467010945656], [-77.45704460631869, 34.57507864643804], [-77.45702847943946, 34.574795533929944], [-77.4559685321335, 34.573504919868924]], [[-77.51363860286537, 34.63252296141802], [-77.51023599228938, 34.63311917433301], [-77.50862769393613, 34.63245052370796], [-77.50752818845723, 34.63286603355785], [-77.50781199309623, 34.63344889735046], [-77.50980261528852, 34.63406901185997], [-77.5107400168889, 34.634954253060485], [-77.51362766482315, 34.633651781368215], [-77.51546605919606, 34.63316104441439], [-77.5145498519584, 34.632522962172054]], [[-77.24247747575399, 34.65931079116654], [-77.24234131413075, 34.65922853890983], [-77.24209543220374, 34.659109847604995], [-77.24066604632125, 34.65838559003799], [-77.24052360138143, 34.65733579946774], [-77.24275807119328, 34.65760310389441], [-77.24289924210505, 34.65847817196838], [-77.24317475941368, 34.6590627114993], [-77.24283471589763, 34.65940272715474], [-77.2426028742687, 34.659357493758684]]]]}, "type": "Feature", "id": "demo16", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5337985596612, 34.68820790472248], [-77.5335657114758, 34.689010071587944], [-77.53246959971966, 34.689641564479935], [-77.53173822266143, 34.69084934986216], [-77.53027368546991, 34.69069937615816], [-77.5282420639731, 34.69084936202683], [-77.52673997545237, 34.69082846011471], [-77.52610622434021, 34.6908556487002], [-77.52519428120264, 34.69104372401583], [-77.52000231043752, 34.69174947901162], [-77.51806774843774, 34.692246111690544], [-77.51691094981402, 34.691870369468816], [-77.51586267504729, 34.691883016975886], [-77.51512957074331, 34.69163980825368], [-77.51454242484886, 34.69110686430069], [-77.51331069638822, 34.690258005407294], [-77.51214100002161, 34.68953853710086], [-77.51071404036165, 34.688468293344044], [-77.5077900733289, 34.685490753802576], [-77.50750081426469, 34.68507749507895], [-77.50747304958894, 34.68496214194606], [-77.50741185937798, 34.6848397543995], [-77.50682668357177, 34.683669395059006], [-77.50660600659239, 34.68251145947538], [-77.5065266410498, 34.682277771558745], [-77.50643685504544, 34.68056676627705], [-77.50654518746971, 34.679583568015914], [-77.50698311318291, 34.67919285514461], [-77.5065100557129, 34.6789682531343], [-77.5066661426413, 34.67632880254219], [-77.5063104845686, 34.67454789816781], [-77.50651931280996, 34.67341616017114], [-77.5069350486034, 34.671127207432015], [-77.50571415295241, 34.67069149669611], [-77.50597914268792, 34.66947848996086], [-77.51034522776189, 34.66695494760676], [-77.51121944437091, 34.66733433749207], [-77.51176139565652, 34.66601003966368], [-77.51201406194662, 34.661677593133305], [-77.51051603465075, 34.66045650551758], [-77.51594603456891, 34.653903140149986], [-77.51702606935758, 34.653519932197405], [-77.51876430696956, 34.652191079036534], [-77.52192122097803, 34.650274994451195], [-77.52230593798976, 34.64641968297589], [-77.52201289677018, 34.64535358976321], [-77.51900146561383, 34.63439541047068], [-77.51749608007339, 34.628916273313585], [-77.5159909144497, 34.62343710449821], [-77.51508883563247, 34.62015281963501], [-77.51062037351745, 34.619062390139106], [-77.51173622004615, 34.61699750591345], [-77.51018525076907, 34.61590172271332], [-77.50809198342415, 34.61572459999236], [-77.50598071803374, 34.61762251743791], [-77.50536022550966, 34.619724165644854], [-77.49843085084534, 34.620767750967275], [-77.49710624444191, 34.62179459045201], [-77.49197229149425, 34.6235526586107], [-77.49076434110611, 34.62348957129119], [-77.4825865602439, 34.62115970017173], [-77.48231599265954, 34.620729910905574], [-77.48287921981326, 34.616822649093464], [-77.48228395254958, 34.615337405136145], [-77.48209303861313, 34.61368442831967], [-77.4820991444181, 34.611595543779494], [-77.48206733350948, 34.60949057286257], [-77.48237712605142, 34.608246638283056], [-77.48338506797684, 34.6070906638617], [-77.4843110539385, 34.603652166737675], [-77.48472661127387, 34.60282261999269], [-77.48476002989989, 34.60261696546701], [-77.48486954468883, 34.60199820399231], [-77.48562707753219, 34.60204171559722], [-77.48774938623576, 34.60195942062438], [-77.49318112512874, 34.60163476177348], [-77.49818197277503, 34.60131357051064], [-77.50153025032975, 34.60140798373421], [-77.50472703730875, 34.60301887504523], [-77.50811458818139, 34.603794760638], [-77.51084698332753, 34.6047055621196], [-77.50997244949734, 34.60152011288805], [-77.50696453440979, 34.590561427437564], [-77.50604728353369, 34.587218862814424], [-77.50282759772578, 34.5858344637224], [-77.50006390925506, 34.58437009235065], [-77.49930314219858, 34.582929729424905], [-77.50169180019711, 34.58237689025903], [-77.50487503875539, 34.5829467482578], [-77.50395749671586, 34.57960261568153], [-77.50320587430913, 34.57686289301823], [-77.50258135155855, 34.57458628607995], [-77.50127399550087, 34.57618757950389], [-77.50062210953602, 34.576366734947406], [-77.49871930042386, 34.57583420864361], [-77.49804337301502, 34.57538360129014], [-77.49814521576656, 34.57374101313324], [-77.49817087529688, 34.57262569313083], [-77.49853465809417, 34.57228874681565], [-77.49816077437542, 34.57206081722499], [-77.49761961764456, 34.5695956839894], [-77.49702294096492, 34.56727016164034], [-77.49675743929308, 34.56688765331684], [-77.49674553604339, 34.5664742268017], [-77.49685120655434, 34.563906342179834], [-77.49714012631702, 34.558671495871764], [-77.49731950895463, 34.557863644483135], [-77.4971010356794, 34.55738907238251], [-77.49756785046168, 34.55630505108512], [-77.49535319193812, 34.54822663681411], [-77.49215281264875, 34.5556584479762], [-77.49365061728534, 34.55891200973107], [-77.49242080944695, 34.5644504608498], [-77.49238033191631, 34.56518386049658], [-77.49236155499854, 34.5656401558046], [-77.49217663620824, 34.56730593083624], [-77.49218737583747, 34.570533527692554], [-77.49125896100443, 34.57141303231955], [-77.4895811346868, 34.57457647112723], [-77.4887263424243, 34.575090953508266], [-77.48676374314768, 34.57823243639822], [-77.48676071992998, 34.578544553822425], [-77.48678353683071, 34.578600281589175], [-77.48678939739776, 34.578663639672136], [-77.48708348742545, 34.57939880182155], [-77.48797763624871, 34.58121359596927], [-77.48789080744243, 34.581416920210835], [-77.48867690035335, 34.58367177016687], [-77.4887786445668, 34.58393920073746], [-77.48883569783357, 34.58422448682715], [-77.48930354653069, 34.58656409405816], [-77.48944663954158, 34.58670279885137], [-77.48990609944015, 34.58948596336576], [-77.49005210315477, 34.5894842662087], [-77.48988981965154, 34.58963425197998], [-77.48407492100296, 34.59246853530946], [-77.4823948470405, 34.59297202063985], [-77.48014202843656, 34.59411756567116], [-77.478703066017, 34.594844905216696], [-77.47852977416817, 34.59548407959003], [-77.47868444154278, 34.5959012347462], [-77.47966339610171, 34.59834836684511], [-77.47966892182684, 34.598358000392004], [-77.47966776848386, 34.59835929661628], [-77.4796693758702, 34.59837018091569], [-77.48010499624463, 34.60098942747276], [-77.4798822728289, 34.601753342386935], [-77.47946438729772, 34.60432496369306], [-77.47886974130785, 34.605512012033536], [-77.47816720085865, 34.608231830731754], [-77.47727611121633, 34.609909347948026], [-77.47668729956527, 34.61102631270662], [-77.47760537453776, 34.61185688685112], [-77.47769723670524, 34.616646634672406], [-77.47776126708882, 34.6199879410416], [-77.47762503625665, 34.62257584039168], [-77.47750399921188, 34.624852621741695], [-77.47485757753137, 34.62684499570372], [-77.47213367273672, 34.62586773428302], [-77.47018802292746, 34.625156877099144], [-77.46983761749516, 34.62501744524361], [-77.46953738243087, 34.62488387563328], [-77.46788230894458, 34.62441850356626], [-77.46745940722161, 34.624267599572136], [-77.46609427669301, 34.624579547180446], [-77.46603361131498, 34.625347534096235], [-77.46602620636877, 34.62579443982311], [-77.46604748837893, 34.62587958130157], [-77.46606916611772, 34.62596780500182], [-77.46682333141422, 34.62861244752437], [-77.4672753015846, 34.62987790490078], [-77.46791773774304, 34.631023863102406], [-77.46829266793185, 34.6311474503184], [-77.46788357866158, 34.63139861909402], [-77.46824168245291, 34.633403424676715], [-77.46836015368966, 34.63404260195527], [-77.46731756242431, 34.63437986556948], [-77.46478019845367, 34.63526833452293], [-77.46440103185503, 34.63532422933182], [-77.46035394247073, 34.63532422401185], [-77.45792918951935, 34.63592098192996], [-77.45645550081778, 34.63645088370783], [-77.45558723481176, 34.637008635439415], [-77.45314860895937, 34.63973703053953], [-77.45226653617006, 34.64080233771938], [-77.45177291510474, 34.641767317968416], [-77.4501494385741, 34.64414749635998], [-77.44913545492622, 34.64466238434721], [-77.44643260241881, 34.64593890010098], [-77.44424673582449, 34.645330503311115], [-77.44066497984005, 34.6466548103469], [-77.4385432004674, 34.647858781750884], [-77.43762802277902, 34.64875321931741], [-77.43664740434683, 34.65020472871695], [-77.43634894279222, 34.652071661190895], [-77.4358905889349, 34.65353850955614], [-77.43409662209203, 34.65426780422918], [-77.43247197221845, 34.65642145785155], [-77.43017913244756, 34.657852771696625], [-77.43111455101729, 34.65947080650491], [-77.43197198300578, 34.66032832244234], [-77.4346198144589, 34.66426621984872], [-77.43466670711366, 34.664349936936], [-77.43468103221335, 34.66436268093986], [-77.4346798719787, 34.6643827676188], [-77.43647259024411, 34.669457547153314], [-77.43651373984365, 34.66974844758349], [-77.43652360190131, 34.66998304013256], [-77.43858909715232, 34.67211113174609], [-77.43852042294439, 34.673159059186055], [-77.43893106181764, 34.673768255535265], [-77.43959722696367, 34.674756473527076], [-77.43961094939178, 34.674773997935766], [-77.43961308400525, 34.67477999639462], [-77.44053919359982, 34.67546084893444], [-77.44126378314209, 34.67578007372767], [-77.4421724542495, 34.67647466995445], [-77.44329583451689, 34.67575040799463], [-77.44433479972136, 34.67519220400568], [-77.44537663154934, 34.6732082699124], [-77.44542444226536, 34.67311751509489], [-77.44542648065172, 34.67309631734466], [-77.44544272247155, 34.67304838390048], [-77.44679677782753, 34.66977236997022], [-77.44671888823846, 34.66859301791638], [-77.44754633056252, 34.66660471319541], [-77.44769850285832, 34.665920629888575], [-77.44922821495967, 34.66451528012974], [-77.45148463460946, 34.664378938435156], [-77.45359372949876, 34.663167448908425], [-77.45603845041437, 34.66194126348326], [-77.45604346461946, 34.66017347716533], [-77.45649545314461, 34.65814549575997], [-77.45638279611263, 34.65710670000643], [-77.45766209038415, 34.65620827417626], [-77.4590589891276, 34.65648766954895], [-77.4623867478646, 34.65646558651296], [-77.4642830896914, 34.65741802835545], [-77.46648794964786, 34.65770161443938], [-77.46691497379139, 34.65812845361201], [-77.46766375039186, 34.66060202871482], [-77.46777246016882, 34.66083810465854], [-77.46919950965045, 34.66604161260524], [-77.47761130417481, 34.667567245428486], [-77.47941652039158, 34.66818559524347], [-77.48089770369334, 34.66891112521178], [-77.4868687250659, 34.67062587736416], [-77.4890578844373, 34.67103343707073], [-77.49510737313113, 34.67063681609187], [-77.49528207923964, 34.67060791546553], [-77.49546401939087, 34.670518217515756], [-77.49900617171691, 34.668841719296914], [-77.4996748941821, 34.669027645117666], [-77.50000346440913, 34.669367395145144], [-77.50167084959797, 34.67024626175779], [-77.50193516907557, 34.67177043060347], [-77.5025579702103, 34.67282142519748], [-77.50285538622819, 34.67334186788209], [-77.50339462846269, 34.674308297045954], [-77.50359522655954, 34.675212947503546], [-77.50380292299057, 34.67614953121929], [-77.50387642844586, 34.677125282621375], [-77.50389474210874, 34.6786584532653], [-77.50405521133517, 34.68002878284315], [-77.50425419096898, 34.68172768863151], [-77.50431617200759, 34.682908829113046], [-77.50464387093174, 34.6838737223952], [-77.50496307315305, 34.68452110819863], [-77.50546954551632, 34.68553411189585], [-77.5058466433411, 34.687100829832985], [-77.50783455847073, 34.68994092499592], [-77.50750040202463, 34.6908634653319], [-77.50851872989544, 34.691153693317816], [-77.50941417312781, 34.69139954740028], [-77.5117164630258, 34.692614360935394], [-77.51296883489857, 34.6930318158917], [-77.514184769456, 34.69343712750825], [-77.51532074043885, 34.6938157614926], [-77.51649065776456, 34.694205773002196], [-77.51767257308444, 34.694599746494404], [-77.5188202375056, 34.69498230232841], [-77.52214668247758, 34.69493396052047], [-77.52700058961042, 34.69410656373873], [-77.53014171687715, 34.69398926146026], [-77.53459440921435, 34.694321818571616], [-77.53549704160116, 34.69437967925123], [-77.5348213117321, 34.691924436303836], [-77.5340674343403, 34.68918503825847]], [[-77.52744936180878, 34.66512759961611], [-77.52312641036269, 34.66555566024434], [-77.51994506761854, 34.66845209071114], [-77.51768846015445, 34.67022638875201], [-77.51570577391826, 34.672873172686906], [-77.51991240800714, 34.67550048507125], [-77.5210599347557, 34.675810194348855], [-77.52205492782971, 34.67612564343237], [-77.52548775834191, 34.67771445328202], [-77.52940140877062, 34.67869907674015], [-77.53025161717366, 34.679207518283526], [-77.53169066722481, 34.680547006007416], [-77.53105247670271, 34.67822736662353], [-77.52954532889896, 34.67274848315449], [-77.52803840166318, 34.66726956793342]], [[-77.45160972586267, 34.56199271030553], [-77.45274613655276, 34.560316508331496], [-77.4541479251281, 34.55929145448872], [-77.45505673511308, 34.55809686147052], [-77.45414712087499, 34.55796692817352], [-77.45381602266798, 34.5579196256378], [-77.45165980387954, 34.5578729353958], [-77.45099574888357, 34.55770884477207], [-77.45060729156238, 34.557461184910906], [-77.44966266471282, 34.557440923734156], [-77.44942015511512, 34.557737787741644], [-77.44850002789569, 34.55904601534117], [-77.4487299866189, 34.55996587081921], [-77.44901549266086, 34.56110798443758], [-77.45056682878662, 34.562143670948686], [-77.45031627508659, 34.56291551163944], [-77.45099879446822, 34.563048159885945]], [[-77.46594957165341, 34.67001440352588], [-77.46567775158567, 34.67026529301627], [-77.46569791178817, 34.67032202855136], [-77.46544030020173, 34.673320056315916], [-77.46565628228251, 34.67521245850472], [-77.46566560611365, 34.67767830707823], [-77.46617068317471, 34.679020211266035], [-77.46532409139101, 34.680051090858385], [-77.46575959138589, 34.681221915129406], [-77.46588656038551, 34.68205545358677], [-77.46569210536838, 34.6826570239071], [-77.46582023155288, 34.68297703721965], [-77.46606857855647, 34.68348066684666], [-77.46616691844221, 34.68406158736903], [-77.46616523172787, 34.684384622637964], [-77.4670531912724, 34.684677032065686], [-77.46766458572314, 34.68501148646758], [-77.46893393605177, 34.684659270124655], [-77.46965008518832, 34.68457639665628], [-77.47043604599818, 34.684314417853145], [-77.4733667929703, 34.68287662593348], [-77.47337910678432, 34.6828652737814], [-77.47337910498734, 34.68282455003259], [-77.4733790393819, 34.68038799595172], [-77.47285890165102, 34.68006719525004], [-77.4723867454797, 34.6775640792882], [-77.47276218237494, 34.677140480495], [-77.47295688150811, 34.67608305619199], [-77.47047537425246, 34.67224059739719], [-77.47033636140256, 34.67196913652572], [-77.47030092021876, 34.6719339450857], [-77.46833473224629, 34.671193730479764]], [[-77.48249391048279, 34.543064778748715], [-77.48304336911897, 34.54325829196167], [-77.48445056259501, 34.54364640478207], [-77.48529776592748, 34.54389824045637], [-77.48582901261153, 34.54414504817524], [-77.48624254200557, 34.543682243305874], [-77.48612694315668, 34.54333543305392], [-77.48587691232379, 34.543189064130424], [-77.48564438383855, 34.54292125137451], [-77.48465421757633, 34.54128580431851], [-77.48406710881386, 34.54085106100208], [-77.4838052915195, 34.54062512519316], [-77.48258707679533, 34.54062267397481], [-77.48249186926552, 34.54087857435177], [-77.48176638272085, 34.54233726304076]], [[-77.4559685321335, 34.573504919868924], [-77.45702847943946, 34.574795533929944], [-77.45704460631869, 34.57507864643804], [-77.45721456564543, 34.57646701094565], [-77.45721454389667, 34.57806101157281], [-77.45721454021276, 34.5781654304837], [-77.45722721867692, 34.57825448604007], [-77.4573063036183, 34.58110698446526], [-77.45731914329154, 34.58179974884297], [-77.45745459752622, 34.582541738072564], [-77.45734358229281, 34.58311769907387], [-77.45692257724015, 34.58411372796138], [-77.45689685918397, 34.58417794499847], [-77.45796649524652, 34.58438308810893], [-77.4587836733763, 34.58363956254522], [-77.4587997079172, 34.58362727860435], [-77.4588058174131, 34.58360952181965], [-77.4590791585039, 34.58281671056989], [-77.45907915688522, 34.582486310961464], [-77.45907914789149, 34.58207817647293], [-77.45876292918646, 34.58113688210739], [-77.45870051649324, 34.580709147824265], [-77.45741347604122, 34.57818708424266], [-77.45743132080263, 34.57811719955633], [-77.45908716960126, 34.576295317684924], [-77.45907943155034, 34.57598854484981], [-77.45898924312654, 34.5745116325481], [-77.45888483222555, 34.57423320572771], [-77.45845750532641, 34.573350113299504], [-77.4579553900497, 34.57296291078482], [-77.4573075045287, 34.57207870354804], [-77.45588565704595, 34.573262579480094]], [[-77.5145498519584, 34.632522962172054], [-77.51546605919606, 34.6331610444144], [-77.51362766482315, 34.633651781368215], [-77.5107400168889, 34.634954253060485], [-77.50980261528852, 34.63406901185997], [-77.50781199309623, 34.63344889735046], [-77.50752818845723, 34.63286603355786], [-77.50862769393613, 34.63245052370796], [-77.51023599228938, 34.63311917433301], [-77.51363860286537, 34.63252296141802]], [[-77.2426028742687, 34.659357493758684], [-77.24283471589763, 34.65940272715474], [-77.24317475941368, 34.65906271149931], [-77.24289924210505, 34.65847817196838], [-77.24275807119328, 34.65760310389441], [-77.24052360138143, 34.65733579946774], [-77.24066604632125, 34.65838559003799], [-77.24209543220374, 34.659109847605], [-77.24234131413075, 34.65922853890983], [-77.24247747575399, 34.65931079116654]], [[-77.47009080948087, 34.65426831445872], [-77.4687026039311, 34.65201493806064], [-77.46822908680026, 34.651845184689], [-77.46848190181065, 34.65142657424157], [-77.46777776336955, 34.64948722164287], [-77.46487946533394, 34.65016736379994], [-77.46451578965932, 34.650508539094204], [-77.46339717121553, 34.651184527268676], [-77.46099841656508, 34.65302781019446], [-77.45730266277293, 34.65247337919839], [-77.45659992693784, 34.65233282417143], [-77.45630142337879, 34.65254245796234], [-77.45175772374418, 34.655489591996606], [-77.45217329522325, 34.65642361170445], [-77.45246019985046, 34.6572373629061], [-77.4526028366081, 34.65826263212821], [-77.45180946112825, 34.659481418065226], [-77.45149589244544, 34.66035309772797], [-77.4505330081656, 34.66090619006458], [-77.44940218424051, 34.66097451886603], [-77.44644059958006, 34.66101176481504], [-77.44637780951493, 34.66101285532692], [-77.44635378126023, 34.66101254132618], [-77.4462943999255, 34.661053433534164], [-77.44393405576561, 34.662664040097084], [-77.44339065134623, 34.66483500200182], [-77.44331397510602, 34.665278364290955], [-77.44289955077072, 34.66725752174168], [-77.44040065944102, 34.668315870772695], [-77.44019500076521, 34.666311714215055], [-77.44249445745095, 34.665090380246355], [-77.44031956777957, 34.66475781939599], [-77.44043712578598, 34.66272258459495], [-77.43806340622163, 34.66061085818497], [-77.4379210021259, 34.66048561251666], [-77.43792881692904, 34.66036471223484], [-77.43774749602771, 34.65758101184929], [-77.43899831186901, 34.65598248906784], [-77.43915531195591, 34.65422593762923], [-77.43942364440842, 34.65122437375168], [-77.43943354639148, 34.65119268489944], [-77.43943555600801, 34.65118011437467], [-77.43944771704587, 34.65116211363129], [-77.44040488696183, 34.649041516510096], [-77.44173754406354, 34.64839689932469], [-77.44285976453419, 34.64825659287221], [-77.44398769212714, 34.64841774809561], [-77.444628197078, 34.64852161204576], [-77.44689072199179, 34.64883248081917], [-77.4472377302184, 34.648878281059005], [-77.4473761131465, 34.648820701945276], [-77.44846935528933, 34.64861725390252], [-77.4537413701927, 34.64835601480506], [-77.45525380432045, 34.647420608637724], [-77.45607068990358, 34.64708766996913], [-77.45721258963735, 34.64612445291027], [-77.4556516304101, 34.64602102491679], [-77.45565381129894, 34.643614856630386], [-77.45565386231455, 34.64236050434701], [-77.45567661312676, 34.64199490764579], [-77.45663115839918, 34.640382042740406], [-77.45731746065356, 34.63959673335489], [-77.46129190767371, 34.639003500695424], [-77.46135776835828, 34.638987291668855], [-77.4614051543834, 34.63898729173115], [-77.46164655082194, 34.6389517062976], [-77.46786967859225, 34.63839944895577], [-77.46951385389312, 34.638043932800755], [-77.47033574585326, 34.63721057283203], [-77.47077334996786, 34.63634818182487], [-77.47195450922601, 34.63340414161014], [-77.47216185410436, 34.63299777958605], [-77.47214214215681, 34.63288742436659], [-77.47261378861919, 34.63259784731558], [-77.4759019441552, 34.630653916245514], [-77.47992672916277, 34.63065396027399], [-77.47966337514902, 34.62790270250906], [-77.4817345187119, 34.626331358602776], [-77.48199800865703, 34.622202799753296], [-77.48885292180317, 34.62527948203759], [-77.489842381624, 34.62615871624783], [-77.49197025269177, 34.627884511980085], [-77.49346203275338, 34.62904915744731], [-77.49422269528617, 34.62965514962872], [-77.49828595009468, 34.63046604390982], [-77.49911504977462, 34.63121258281849], [-77.50037271255742, 34.63157248159256], [-77.50159861122087, 34.633271983106326], [-77.50139539640054, 34.63351585249612], [-77.50086006997802, 34.63463616935051], [-77.49982551959693, 34.63760659383816], [-77.49737216037256, 34.64057369936392], [-77.49673042627032, 34.64522787450337], [-77.49673039398645, 34.64643351845512], [-77.49677790572987, 34.646652367544135], [-77.49689487522689, 34.646808081556806], [-77.49912698518912, 34.65189033782569], [-77.5035351087139, 34.653324126511436], [-77.50527649217176, 34.65604366101016], [-77.50793477680128, 34.66025364698193], [-77.50407527964327, 34.66229575956548], [-77.50710097595126, 34.66360310198746], [-77.50876396143076, 34.665496852688435], [-77.50582615918469, 34.665162830218804], [-77.50584099041339, 34.664746181182124], [-77.5017122433336, 34.663369897350776], [-77.50130120867732, 34.66337796082531], [-77.49470631395273, 34.66554273697841], [-77.49401032773497, 34.66597664497946], [-77.49281401229658, 34.66735897261799], [-77.49191674415457, 34.66753710737706], [-77.49016306586722, 34.66729400167928], [-77.48801116555958, 34.66688141581638], [-77.48694194725354, 34.666301976174836], [-77.48558414095379, 34.665946094955565], [-77.48248816069284, 34.66442958686508], [-77.47615531991869, 34.66226036697628], [-77.47279133158528, 34.661650246150856], [-77.4722206355473, 34.6595692942238], [-77.47118809017608, 34.65732700167388], [-77.4710261063601, 34.65649125418509]], [[-77.44045747497255, 34.671358797283276], [-77.44040064454086, 34.670006950002495], [-77.4416949983379, 34.67039167209757], [-77.4415271492131, 34.67127402469772], [-77.44236336098133, 34.67202526326393], [-77.4428998480006, 34.67257693763847], [-77.44253893627388, 34.67393974206946], [-77.4423468982572, 34.67449713068943], [-77.4424133201348, 34.67471404097439], [-77.44183926035345, 34.67525849310828], [-77.44136344648606, 34.67501318045097], [-77.44125439387963, 34.674587144825146], [-77.4411634752378, 34.67433165513641], [-77.4408956914854, 34.67398967834613], [-77.44061278909038, 34.67171382309793], [-77.44062476013211, 34.67153115214343]]]]}, "type": "Feature", "id": "demo17", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.53169066722481, 34.680547006007416], [-77.53025161717366, 34.67920751828353], [-77.52940140877062, 34.678699076740145], [-77.52548775834191, 34.67771445328202], [-77.52205492782971, 34.67612564343237], [-77.5210599347557, 34.675810194348855], [-77.51991240800716, 34.675500485071254], [-77.51570577391826, 34.67287317268691], [-77.51768846015443, 34.67022638875201], [-77.51994506761854, 34.66845209071114], [-77.52312641036269, 34.66555566024434], [-77.52744936180878, 34.66512759961611], [-77.52653169491388, 34.66179062097201], [-77.5258141636274, 34.65918111230192], [-77.52548534999359, 34.65913487468377], [-77.52308367565949, 34.65868813173765], [-77.52267756751621, 34.6579690856769], [-77.52455273707321, 34.65688996630065], [-77.5254892617493, 34.65799943331637], [-77.52502520856956, 34.65631164228204], [-77.5235189425488, 34.6508326318752], [-77.52230593798976, 34.64641968297589], [-77.52192122097803, 34.650274994451195], [-77.51876430696956, 34.652191079036534], [-77.51702606935758, 34.653519932197405], [-77.51594603456891, 34.653903140149986], [-77.51051603465075, 34.66045650551758], [-77.51201406194662, 34.661677593133305], [-77.51176139565652, 34.66601003966368], [-77.51121944437091, 34.66733433749207], [-77.51034522776189, 34.66695494760676], [-77.50597914268792, 34.66947848996086], [-77.50571415295241, 34.67069149669611], [-77.5069350486034, 34.671127207432015], [-77.50651931280996, 34.67341616017114], [-77.5063104845686, 34.67454789816781], [-77.5066661426413, 34.67632880254219], [-77.50651005571291, 34.6789682531343], [-77.50698311318291, 34.67919285514461], [-77.50654518746971, 34.679583568015914], [-77.50643685504544, 34.68056676627705], [-77.5065266410498, 34.682277771558745], [-77.50660600659239, 34.68251145947538], [-77.50682668357177, 34.683669395059006], [-77.50741185937798, 34.6848397543995], [-77.50747304958894, 34.68496214194606], [-77.50750081426469, 34.68507749507895], [-77.50779007332892, 34.685490753802576], [-77.51071404036165, 34.688468293344044], [-77.51214100002161, 34.68953853710086], [-77.51331069638823, 34.6902580054073], [-77.51454242484887, 34.69110686430069], [-77.51512957074331, 34.69163980825368], [-77.51586267504729, 34.691883016975886], [-77.51691094981402, 34.691870369468816], [-77.51806774843773, 34.69224611169054], [-77.52000231043752, 34.69174947901162], [-77.52519428120264, 34.69104372401583], [-77.52610622434021, 34.6908556487002], [-77.52673997545237, 34.69082846011471], [-77.5282420639731, 34.69084936202683], [-77.53027368546992, 34.69069937615816], [-77.53173822266145, 34.69084934986216], [-77.53246959971966, 34.68964156447993], [-77.5335657114758, 34.689010071587944], [-77.5337985596612, 34.68820790472248], [-77.53255984515597, 34.68370621832876]], [[-77.51084698332753, 34.6047055621196], [-77.50811458818137, 34.603794760638], [-77.50472703730875, 34.60301887504524], [-77.50153025032975, 34.60140798373421], [-77.49818197277503, 34.60131357051064], [-77.49318112512874, 34.60163476177348], [-77.48774938623576, 34.60195942062438], [-77.48562707753219, 34.60204171559722], [-77.48486954468883, 34.60199820399231], [-77.48476002989989, 34.602616965467], [-77.48472661127387, 34.60282261999269], [-77.4843110539385, 34.603652166737675], [-77.48338506797684, 34.6070906638617], [-77.48237712605142, 34.608246638283056], [-77.48206733350948, 34.60949057286257], [-77.48209914441811, 34.6115955437795], [-77.48209303861313, 34.61368442831967], [-77.48228395254958, 34.615337405136145], [-77.48287921981326, 34.616822649093464], [-77.48231599265954, 34.620729910905574], [-77.4825865602439, 34.62115970017173], [-77.49076434110611, 34.62348957129119], [-77.49197229149425, 34.6235526586107], [-77.49710624444191, 34.62179459045201], [-77.49843085084534, 34.620767750967275], [-77.50536022550966, 34.619724165644854], [-77.50598071803374, 34.61762251743791], [-77.50809198342415, 34.61572459999236], [-77.51018525076907, 34.61590172271332], [-77.51173622004615, 34.61699750591345], [-77.51062037351747, 34.619062390139106], [-77.51508883563247, 34.62015281963501], [-77.51448596866149, 34.61795790403627], [-77.5129812426275, 34.612478671939456], [-77.51147673626652, 34.60699940821949]], [[-77.49756785046168, 34.55630505108512], [-77.4971010356794, 34.55738907238251], [-77.49731950895463, 34.557863644483135], [-77.497140126317, 34.55867149587176], [-77.49685120655434, 34.563906342179834], [-77.49674553604339, 34.5664742268017], [-77.49675743929308, 34.56688765331684], [-77.49702294096492, 34.56727016164034], [-77.49761961764456, 34.5695956839894], [-77.49816077437542, 34.57206081722499], [-77.49853465809417, 34.57228874681566], [-77.49817087529688, 34.57262569313083], [-77.49814521576656, 34.57374101313324], [-77.49804337301502, 34.57538360129014], [-77.49871930042386, 34.57583420864361], [-77.50062210953601, 34.576366734947406], [-77.50127399550087, 34.57618757950389], [-77.50258135155855, 34.57458628607995], [-77.50245430668883, 34.57412316246815], [-77.50170279384484, 34.57138342403272], [-77.50095133576704, 34.568643677713425], [-77.5001999324453, 34.56590392351171], [-77.4994485838695, 34.56316416142903], [-77.49794605091523, 34.55768461362666]], [[-77.4710261063601, 34.65649125418509], [-77.47118809017607, 34.65732700167388], [-77.4722206355473, 34.6595692942238], [-77.47279133158528, 34.66165024615086], [-77.47615531991869, 34.66226036697628], [-77.48248816069284, 34.66442958686508], [-77.48558414095379, 34.665946094955565], [-77.48694194725354, 34.666301976174836], [-77.48801116555958, 34.66688141581638], [-77.49016306586722, 34.66729400167928], [-77.49191674415457, 34.667537107377065], [-77.49281401229656, 34.66735897261799], [-77.49401032773497, 34.66597664497946], [-77.49470631395273, 34.66554273697841], [-77.50130120867732, 34.66337796082531], [-77.50171224333361, 34.66336989735078], [-77.5058409904134, 34.664746181182124], [-77.50582615918469, 34.665162830218804], [-77.50876396143077, 34.665496852688435], [-77.50710097595126, 34.66360310198746], [-77.50407527964327, 34.66229575956548], [-77.50793477680126, 34.66025364698193], [-77.50527649217176, 34.65604366101016], [-77.50353510871392, 34.653324126511436], [-77.49912698518912, 34.65189033782569], [-77.49689487522689, 34.646808081556806], [-77.49677790572987, 34.646652367544135], [-77.49673039398645, 34.64643351845512], [-77.49673042627032, 34.64522787450337], [-77.49737216037256, 34.64057369936391], [-77.49982551959694, 34.63760659383816], [-77.50086006997802, 34.63463616935051], [-77.50139539640054, 34.63351585249612], [-77.50159861122087, 34.633271983106326], [-77.50037271255741, 34.63157248159256], [-77.49911504977462, 34.63121258281849], [-77.49828595009468, 34.63046604390982], [-77.49422269528617, 34.62965514962872], [-77.49346203275337, 34.62904915744731], [-77.49197025269177, 34.627884511980085], [-77.489842381624, 34.62615871624783], [-77.48885292180316, 34.625279482037584], [-77.48199800865703, 34.622202799753296], [-77.4817345187119, 34.626331358602776], [-77.47966337514902, 34.62790270250906], [-77.47992672916276, 34.63065396027399], [-77.4759019441552, 34.630653916245514], [-77.47261378861919, 34.63259784731558], [-77.47214214215681, 34.63288742436659], [-77.47216185410436, 34.63299777958605], [-77.47195450922601, 34.633404141610136], [-77.47077334996786, 34.63634818182487], [-77.47033574585326, 34.63721057283203], [-77.46951385389312, 34.638043932800755], [-77.46786967859224, 34.63839944895577], [-77.46164655082194, 34.6389517062976], [-77.4614051543834, 34.63898729173115], [-77.46135776835828, 34.638987291668855], [-77.46129190767371, 34.639003500695424], [-77.45731746065356, 34.63959673335489], [-77.45663115839918, 34.640382042740406], [-77.45567661312676, 34.64199490764579], [-77.45565386231455, 34.64236050434701], [-77.45565381129896, 34.64361485663039], [-77.4556516304101, 34.64602102491679], [-77.45721258963734, 34.646124452910264], [-77.45607068990358, 34.64708766996913], [-77.45525380432045, 34.647420608637724], [-77.4537413701927, 34.64835601480506], [-77.44846935528935, 34.64861725390252], [-77.4473761131465, 34.648820701945276], [-77.4472377302184, 34.648878281059005], [-77.44689072199179, 34.64883248081917], [-77.444628197078, 34.64852161204576], [-77.44398769212714, 34.64841774809561], [-77.44285976453419, 34.64825659287221], [-77.44173754406354, 34.64839689932469], [-77.44040488696183, 34.649041516510096], [-77.43944771704587, 34.65116211363129], [-77.43943555600801, 34.65118011437467], [-77.43943354639148, 34.65119268489944], [-77.43942364440842, 34.65122437375168], [-77.43915531195591, 34.65422593762923], [-77.43899831186901, 34.65598248906784], [-77.43774749602771, 34.65758101184929], [-77.43792881692904, 34.66036471223484], [-77.4379210021259, 34.66048561251666], [-77.43806340622163, 34.66061085818497], [-77.44043712578598, 34.66272258459495], [-77.44031956777957, 34.66475781939599], [-77.44249445745095, 34.665090380246355], [-77.44019500076521, 34.66631171421505], [-77.44040065944102, 34.668315870772695], [-77.44289955077072, 34.66725752174168], [-77.44331397510602, 34.665278364290955], [-77.44339065134623, 34.66483500200182], [-77.44393405576561, 34.662664040097084], [-77.4462943999255, 34.661053433534164], [-77.44635378126023, 34.66101254132618], [-77.44637780951493, 34.66101285532692], [-77.44644059958006, 34.66101176481504], [-77.44940218424051, 34.66097451886603], [-77.4505330081656, 34.66090619006458], [-77.45149589244544, 34.66035309772797], [-77.45180946112825, 34.659481418065226], [-77.4526028366081, 34.65826263212821], [-77.45246019985046, 34.6572373629061], [-77.45217329522325, 34.65642361170445], [-77.45175772374418, 34.655489591996606], [-77.45630142337879, 34.65254245796234], [-77.45659992693783, 34.65233282417143], [-77.45730266277295, 34.65247337919839], [-77.46099841656508, 34.65302781019446], [-77.46339717121553, 34.651184527268676], [-77.46451578965932, 34.650508539094204], [-77.46487946533394, 34.65016736379994], [-77.46777776336955, 34.64948722164287], [-77.46848190181065, 34.65142657424157], [-77.46822908680025, 34.651845184688995], [-77.4687026039311, 34.65201493806064], [-77.47009080948087, 34.65426831445872]], [[-77.44062476013211, 34.67153115214343], [-77.44061278909038, 34.67171382309793], [-77.4408956914854, 34.67398967834613], [-77.4411634752378, 34.67433165513641], [-77.44125439387963, 34.67458714482515], [-77.44136344648606, 34.67501318045097], [-77.44183926035345, 34.67525849310828], [-77.4424133201348, 34.6747140409744], [-77.4423468982572, 34.67449713068943], [-77.44253893627388, 34.67393974206945], [-77.44289984800061, 34.67257693763847], [-77.44236336098133, 34.67202526326393], [-77.4415271492131, 34.67127402469772], [-77.4416949983379, 34.67039167209757], [-77.44040064454086, 34.670006950002495], [-77.44045747497255, 34.671358797283276]], [[-77.47387497094358, 34.638604767442295], [-77.47509219644772, 34.63887317808686], [-77.47811743628242, 34.63873252194144], [-77.47958902706723, 34.63870199327636], [-77.47981504017741, 34.640523746677076], [-77.48291938637104, 34.644699458778554], [-77.48340766533661, 34.64673355134391], [-77.48286069724662, 34.64933709935957], [-77.48407825740524, 34.65027750032348], [-77.48587300289664, 34.651664315039575], [-77.48627853744148, 34.652475509743674], [-77.48640901155832, 34.65273644919896], [-77.48531612967209, 34.655832923424214], [-77.48348105487064, 34.658283133728716], [-77.48037862981505, 34.6572418781502], [-77.48019930222885, 34.65259191102804], [-77.48014469183416, 34.651399989662], [-77.47957959802001, 34.650350296945426], [-77.47622670336573, 34.646609279659536], [-77.47358151440531, 34.6460491808994], [-77.47102903627116, 34.64357015811423], [-77.4702566129484, 34.642797703300346], [-77.46950849894323, 34.642617497611994], [-77.46994226461835, 34.642027689331], [-77.47056893218698, 34.64189218647778], [-77.47307499251767, 34.63935115862978]], [[-77.52708861369752, 34.68231464753845], [-77.52741128525733, 34.68268367915494], [-77.52844473987021, 34.68474759326109], [-77.52744853063126, 34.6851665634035], [-77.5257637329165, 34.68628908107598], [-77.52486072226256, 34.68632782117741], [-77.52434673517851, 34.68643382371098], [-77.51714220618523, 34.688234952638524], [-77.51697615803525, 34.688276463901516], [-77.51688046634852, 34.68824654518159], [-77.51682397434094, 34.68820129739584], [-77.5166012900976, 34.68804623611407], [-77.51370944070605, 34.6861360523952], [-77.51312080510898, 34.68552405386636], [-77.51177964671356, 34.684688691413214], [-77.51097739277606, 34.683961574352104], [-77.51025333012039, 34.68335451855087], [-77.50997263736926, 34.68205374560411], [-77.51025051184052, 34.681214527368155], [-77.51028635508897, 34.68088922291955], [-77.51264346174793, 34.67878623631036], [-77.51407357699112, 34.67771879812607], [-77.51819154749552, 34.67869414111107], [-77.51861069334802, 34.67880726558452], [-77.52319174620753, 34.68025962637352], [-77.5233486455424, 34.68033224376834], [-77.52352752100596, 34.680377246504456], [-77.52424386870929, 34.680805636685704]], [[-77.49158257119456, 34.617387422084285], [-77.49103309023114, 34.61738274720877], [-77.49061808260589, 34.61705036052045], [-77.49259554458425, 34.61547072361297]]]]}, "type": "Feature", "id": "demo18", "properties": {}}, {"geometry": {"type": "MultiPolygon", "coordinates": [[[[-77.5254892617493, 34.65799943331637], [-77.52455273707321, 34.65688996630065], [-77.52267756751621, 34.6579690856769], [-77.52308367565949, 34.65868813173765], [-77.52548534999359, 34.65913487468377], [-77.5258141636274, 34.65918111230192], [-77.52577842419619, 34.65905113559237]], [[-77.47307499251767, 34.63935115862978], [-77.47056893218698, 34.641892186477776], [-77.46994226461835, 34.642027689331], [-77.46950849894323, 34.642617497611994], [-77.4702566129484, 34.642797703300346], [-77.47102903627116, 34.64357015811423], [-77.47358151440531, 34.6460491808994], [-77.47622670336573, 34.646609279659536], [-77.47957959802001, 34.650350296945426], [-77.48014469183416, 34.651399989662], [-77.48019930222885, 34.65259191102804], [-77.48037862981505, 34.6572418781502], [-77.48348105487064, 34.658283133728716], [-77.48531612967209, 34.655832923424214], [-77.48640901155832, 34.65273644919896], [-77.48627853744148, 34.652475509743674], [-77.48587300289664, 34.651664315039575], [-77.48407825740526, 34.65027750032348], [-77.48286069724662, 34.64933709935957], [-77.48340766533661, 34.64673355134391], [-77.48291938637104, 34.644699458778554], [-77.47981504017743, 34.640523746677076], [-77.47958902706723, 34.63870199327636], [-77.47811743628242, 34.63873252194144], [-77.47509219644772, 34.63887317808686], [-77.47387497094358, 34.638604767442295]], [[-77.52424386870929, 34.680805636685704], [-77.52352752100596, 34.680377246504456], [-77.52334864554241, 34.68033224376834], [-77.52319174620753, 34.68025962637352], [-77.51861069334801, 34.67880726558452], [-77.51819154749553, 34.67869414111107], [-77.51407357699112, 34.677718798126065], [-77.51264346174793, 34.67878623631036], [-77.51028635508897, 34.680889222919554], [-77.51025051184052, 34.68121452736815], [-77.50997263736926, 34.68205374560411], [-77.51025333012039, 34.68335451855087], [-77.51097739277604, 34.683961574352104], [-77.51177964671356, 34.684688691413214], [-77.51312080510898, 34.68552405386636], [-77.51370944070604, 34.68613605239519], [-77.5166012900976, 34.68804623611407], [-77.51682397434094, 34.68820129739584], [-77.51688046634852, 34.68824654518159], [-77.51697615803525, 34.688276463901516], [-77.51714220618523, 34.688234952638524], [-77.52434673517851, 34.68643382371098], [-77.52486072226256, 34.6863278211774], [-77.5257637329165, 34.68628908107598], [-77.52744853063126, 34.6851665634035], [-77.52844473987021, 34.68474759326109], [-77.52741128525733, 34.68268367915494], [-77.52708861369752, 34.68231464753845]], [[-77.49259554458425, 34.61547072361297], [-77.49061808260589, 34.61705036052045], [-77.49103309023114, 34.61738274720877], [-77.49158257119456, 34.617387422084285]], [[-77.51776780855306, 34.68349976238658]]]]}, "type": "Feature", "id": "demo19", "properties": {}}]} \ No newline at end of file